From 1184b98cb8bb60520216ea043db8ca13364fe7d7 Mon Sep 17 00:00:00 2001 From: Packit Date: Sep 16 2020 07:08:56 +0000 Subject: mythes-1.2.4 base --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..274fd9a --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Kevin Hendricks +Németh László +Caolán McNamara diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..b6bf70a --- /dev/null +++ b/COPYING @@ -0,0 +1,34 @@ +/* + * Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada + * And Contributors. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * 3. All modifications to the source code must be clearly marked as + * such. Binary redistributions based on modified source code + * must be clearly marked as modified versions in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL + * KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + */ diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..bde2974 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,11 @@ +2014-06-27 Caolán McNamara : + * fix some clang scan-build warnings +2012-06-28 Caolán McNamara : + * fix some cppcheck warnings + * fix some parfait warnings +2011-12-21 Caolán McNamara : + * fix some coverity warnings +2011-02-15 Caolán McNamara : + * rhbz#675806 crash in es thesaurus +2010-03-04 Caolán McNamara : + * hun#2005643 tidy string functions diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..7d1c323 --- /dev/null +++ b/INSTALL @@ -0,0 +1,365 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, +2006, 2007, 2008, 2009 Free Software Foundation, Inc. + + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. + +Basic Installation +================== + + Briefly, the shell commands `./configure; make; make install' should +configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + + The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package, generally using the just-built uninstalled binaries. + + 4. Type `make install' to install the programs and any data files and + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. + + 6. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. + +Compilers and Options +===================== + + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + + You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + + On MacOS X 10.5 and later systems, you can create libraries and +executables that work on multiple system types--known as "fat" or +"universal" binaries--by specifying multiple `-arch' options to the +compiler but only a single `-arch' option to the preprocessor. Like +this: + + ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CPP="gcc -E" CXXCPP="g++ -E" + + This is not guaranteed to produce working output in all cases, you +may have to build one architecture at a time and combine the results +using the `lipo' tool if you have problems. + +Installation Names +================== + + By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + + Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + +Particular systems +================== + + On HP-UX, the default C compiler is not ANSI C compatible. If GNU +CC is not installed, it is recommended to use the following options in +order to use an ANSI C compiler: + + ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" + +and if that doesn't work, install pre-built binaries of GCC for HP-UX. + + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot +parse its `' header file. The option `-nodtk' can be used as +a workaround. If GNU CC is not installed, it is therefore recommended +to try + + ./configure CC="cc" + +and if that doesn't work, try + + ./configure CC="cc -nodtk" + + On Solaris, don't put `/usr/ucb' early in your `PATH'. This +directory contains several dysfunctional programs; working variants of +these programs are available in `/usr/bin'. So, if you need `/usr/ucb' +in your `PATH', put it _after_ `/usr/bin'. + + On Haiku, software installed for all users goes in `/boot/common', +not `/usr/local'. It is recommended to use the following options: + + ./configure --prefix=/boot/common + +Specifying the System Type +========================== + + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS + KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + + Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf bug. Until the bug is fixed you can use this workaround: + + CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + + `configure' recognizes the following options to control how it +operates. + +`--help' +`-h' + Print a summary of all of the options to `configure', and exit. + +`--help=short' +`--help=recursive' + Print a summary of the options unique to this package's + `configure', and exit. The `short' variant lists options used + only in the top level, while the `recursive' variant lists options + also present in any nested packages. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: + for more details, including other options available for fine-tuning + the installation locations. + +`--no-create' +`-n' + Run the configure checks, but stop before creating any output + files. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..c623df9 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,27 @@ +ACLOCAL_AMFLAGS = -I m4 + +noinst_PROGRAMS = example + +dist_bin_SCRIPTS = th_gen_idx.pl + +INCLUDES = @HUNSPELL_CFLAGS@ + +example_SOURCES = example.cxx + +lib_LTLIBRARIES = libmythes-1.2.la + +libmythes_1_2_includedir = $(includedir) + +libmythes_1_2_la_SOURCES = mythes.cxx + +libmythes_1_2_include_HEADERS = mythes.hxx + +example_LDADD = libmythes-1.2.la @HUNSPELL_LIBS@ + +pkgconfdir = $(libdir)/pkgconfig +pkgconf_DATA = mythes.pc + +EXTRA_DIST = th_en_US_new.idx th_en_US_new.dat checkme.lst \ + morph.idx morph.dat morph.lst morph.aff morph.dic \ + mythes.pc.in data_layout.txt makefile.mk \ + WordNet_license.txt WordNet_readme.txt diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..d8040fe --- /dev/null +++ b/Makefile.in @@ -0,0 +1,845 @@ +# Makefile.in generated by automake 1.11.3 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + + + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +target_triplet = @target@ +noinst_PROGRAMS = example$(EXEEXT) +subdir = . +DIST_COMMON = README $(am__configure_deps) $(dist_bin_SCRIPTS) \ + $(libmythes_1_2_include_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(srcdir)/mythes.pc.in $(top_srcdir)/configure AUTHORS COPYING \ + ChangeLog INSTALL config.guess config.rpath config.sub depcomp \ + install-sh ltmain.sh missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = mythes.pc +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ + "$(DESTDIR)$(pkgconfdir)" \ + "$(DESTDIR)$(libmythes_1_2_includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libmythes_1_2_la_LIBADD = +am_libmythes_1_2_la_OBJECTS = mythes.lo +libmythes_1_2_la_OBJECTS = $(am_libmythes_1_2_la_OBJECTS) +PROGRAMS = $(noinst_PROGRAMS) +am_example_OBJECTS = example.$(OBJEXT) +example_OBJECTS = $(am_example_OBJECTS) +example_DEPENDENCIES = libmythes-1.2.la +SCRIPTS = $(dist_bin_SCRIPTS) +DEFAULT_INCLUDES = -I.@am__isrc@ +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(libmythes_1_2_la_SOURCES) $(example_SOURCES) +DIST_SOURCES = $(libmythes_1_2_la_SOURCES) $(example_SOURCES) +DATA = $(pkgconf_DATA) +HEADERS = $(libmythes_1_2_include_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +HUNSPELL_CFLAGS = @HUNSPELL_CFLAGS@ +HUNSPELL_LIBS = @HUNSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +MYTHES_VERSION_MAJOR = @MYTHES_VERSION_MAJOR@ +MYTHES_VERSION_MINOR = @MYTHES_VERSION_MINOR@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +XFAILED = @XFAILED@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +ACLOCAL_AMFLAGS = -I m4 +dist_bin_SCRIPTS = th_gen_idx.pl +INCLUDES = @HUNSPELL_CFLAGS@ +example_SOURCES = example.cxx +lib_LTLIBRARIES = libmythes-1.2.la +libmythes_1_2_includedir = $(includedir) +libmythes_1_2_la_SOURCES = mythes.cxx +libmythes_1_2_include_HEADERS = mythes.hxx +example_LDADD = libmythes-1.2.la @HUNSPELL_LIBS@ +pkgconfdir = $(libdir)/pkgconfig +pkgconf_DATA = mythes.pc +EXTRA_DIST = th_en_US_new.idx th_en_US_new.dat checkme.lst \ + morph.idx morph.dat morph.lst morph.aff morph.dic \ + mythes.pc.in data_layout.txt makefile.mk \ + WordNet_license.txt WordNet_readme.txt + +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .cxx .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @if test ! -f $@; then rm -f stamp-h1; else :; fi + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +mythes.pc: $(top_builddir)/config.status $(srcdir)/mythes.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libmythes-1.2.la: $(libmythes_1_2_la_OBJECTS) $(libmythes_1_2_la_DEPENDENCIES) $(EXTRA_libmythes_1_2_la_DEPENDENCIES) + $(CXXLINK) -rpath $(libdir) $(libmythes_1_2_la_OBJECTS) $(libmythes_1_2_la_LIBADD) $(LIBS) + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +example$(EXEEXT): $(example_OBJECTS) $(example_DEPENDENCIES) $(EXTRA_example_DEPENDENCIES) + @rm -f example$(EXEEXT) + $(CXXLINK) $(example_OBJECTS) $(example_LDADD) $(LIBS) +install-dist_binSCRIPTS: $(dist_bin_SCRIPTS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-dist_binSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mythes.Plo@am__quote@ + +.cxx.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cxx.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cxx.lo: +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt +install-pkgconfDATA: $(pkgconf_DATA) + @$(NORMAL_INSTALL) + test -z "$(pkgconfdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfdir)" + @list='$(pkgconf_DATA)'; test -n "$(pkgconfdir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfdir)" || exit $$?; \ + done + +uninstall-pkgconfDATA: + @$(NORMAL_UNINSTALL) + @list='$(pkgconf_DATA)'; test -n "$(pkgconfdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgconfdir)'; $(am__uninstall_files_from_dir) +install-libmythes_1_2_includeHEADERS: $(libmythes_1_2_include_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(libmythes_1_2_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libmythes_1_2_includedir)" + @list='$(libmythes_1_2_include_HEADERS)'; test -n "$(libmythes_1_2_includedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libmythes_1_2_includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(libmythes_1_2_includedir)" || exit $$?; \ + done + +uninstall-libmythes_1_2_includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(libmythes_1_2_include_HEADERS)'; test -n "$(libmythes_1_2_includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(libmythes_1_2_includedir)'; $(am__uninstall_files_from_dir) + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \ + $(HEADERS) config.h +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfdir)" "$(DESTDIR)$(libmythes_1_2_includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-noinstPROGRAMS mostlyclean-am + +distclean: distclean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-libmythes_1_2_includeHEADERS \ + install-pkgconfDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-dist_binSCRIPTS install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_binSCRIPTS uninstall-libLTLIBRARIES \ + uninstall-libmythes_1_2_includeHEADERS uninstall-pkgconfDATA + +.MAKE: all install-am install-strip + +.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ + clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-noinstPROGRAMS ctags dist dist-all dist-bzip2 dist-gzip \ + dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ + distcheck distclean distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags distcleancheck \ + distdir distuninstallcheck dvi dvi-am html html-am info \ + info-am install install-am install-data install-data-am \ + install-dist_binSCRIPTS install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-libLTLIBRARIES \ + install-libmythes_1_2_includeHEADERS install-man install-pdf \ + install-pdf-am install-pkgconfDATA install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-dist_binSCRIPTS uninstall-libLTLIBRARIES \ + uninstall-libmythes_1_2_includeHEADERS uninstall-pkgconfDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/README b/README new file mode 100644 index 0000000..35ee094 --- /dev/null +++ b/README @@ -0,0 +1,63 @@ +MyThes is a simple thesaurus that uses a structured +text data file and an index file with binary search +to lookup words and phrases and return information +on part of speech, meanings, and synonyms + +MyThes was originall written to provide a thesaurus +for the OpenOffice.org project + +The Main features of MyThes are: + +1. written in C++ to make it easier to interface with + LibreOffice, OpenOffice, AbiWord, Pspell, etc + +2. it is stateless, uses no static variables and + should be completely reentrant with no ifdefs + +3. it compiles with -ansi and -pedantic and -Wall + with no warnigns so it shouldbe quite portable + +4. it uses a simple perl program to read the structured + text file and create the index needed for binary + searching + +5. it is very simple with *lots* of comments. + The main "smarts" are in the structure of the + text file that makes up the thesaurus data + +6. It comes with a ready-to-go structured thesaurus + data file for en_US extracted from the WordNet-2.0 data. + + Please see WordNet_license.txt and WordNet_readme.txt + for more information on the very useful project! + + See http://www.danielnaber.de/wn2ooo/ for utilities to + regenerate an up to date English thesaurus from the most + recent WordNet data. + +7. The source code has a BSD license (and no advertising clause) + + +MyThes comes with a simple example program that looks up some words and returns +meanings and synonyms. + +To build it simply do the following: + +unzip mythes.zip +cd mythes +./configure +make + +To run the example program: +./example th_en_US_new.idx th_en_US_new.dat checkme.lst + +To run the example program with stemming and morphological generation: +e.g. to check mouse, mice, rodents, eats, eaten, ate, eating etc. words +./example morph.idx morph.dat morph.lst morph.aff morph.dic + +NOTE: this is only an example and test environment for dictionary developers, +full English stemming and morphological generation needs an improved +English Hunspell dictionary. + +László Németh +Kevin Hendricks diff --git a/WordNet_license.txt b/WordNet_license.txt new file mode 100644 index 0000000..739e599 --- /dev/null +++ b/WordNet_license.txt @@ -0,0 +1,31 @@ +WordNet Release 2.0 + +This software and database is being provided to you, the LICENSEE, by +Princeton University under the following license. By obtaining, using +and/or copying this software and database, you agree that you have +read, understood, and will comply with these terms and conditions.: + +Permission to use, copy, modify and distribute this software and +database and its documentation for any purpose and without fee or +royalty is hereby granted, provided that you agree to comply with +the following copyright notice and statements, including the disclaimer, +and that the same appear on ALL copies of the software, database and +documentation, including modifications that you make for internal +use or for distribution. + +WordNet 2.0 Copyright 2003 by Princeton University. All rights reserved. + +THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON +UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON +UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- +ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE +OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT +INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR +OTHER RIGHTS. + +The name of Princeton University or Princeton may not be used in +advertising or publicity pertaining to distribution of the software +and/or database. Title to copyright in this software, database and +any associated documentation shall at all times remain with +Princeton University and LICENSEE agrees to preserve same. diff --git a/WordNet_readme.txt b/WordNet_readme.txt new file mode 100644 index 0000000..77597d5 --- /dev/null +++ b/WordNet_readme.txt @@ -0,0 +1,151 @@ + + This is the README file for WordNet 2.0 + +1. About WordNet + +WordNet was developed at Princeton University's Cognitive Science +Laboratory under the direction of George Miller, James S. McDonnell +Distinguished University Professor of Psychology, Emeritus. Over the +years many linguists, lexicographers, students, and software engineers +have contributed to the project. + +WordNet is an online lexical reference system. Word forms in WordNet +are represented in their familiar orthography; word meanings are +represented by synonym sets (synsets) - lists of synonymous word forms +that are interchangeable in some context. Two kinds of relations are +recognized: lexical and semantic. Lexical relations hold between word +forms; semantic relations hold between word meanings. + +To learn more about WordNet, the book "WordNet: An Electronic Lexical +Database," containing an updated version of "Five Papers on WordNet" +and additional papers by WordNet users, is available from MIT Press: + + http://mitpress.mit.edu/book-home.tcl?isbn=026206197X + +Information about WordNet, access to our online interface, and the +various WordNet packages that you can download are available from our +web site. All of the software documentation is available online, as +well as a FAQ. On this site we also have information about other +applications that use WordNet. + + http://www.cogsci.princeton.edu/~wn/ + +2. Contacting Us + +Ongoing deveopment work and WordNet related projects are done by a +small group of researchers, lexicographers, and systems programmers. +Since our resources are VERY limited, we request that you please +confine correspondence to WordNet topics only. Please check the +documentation, FAQ, and other resources for the answer to your +question or problem before contacting us. + +When reporting a problem, please be as specific as possible, stating +the computer platform you are using, which interface you are using, +and the exact error. The more details you can provide, the more +likely it is that you will get an answer. + +Please address all e-mail concerning WordNet to 'wordnet@princeton.edu'. + +We maintain a database of "registered" WordNet users. We use this +database to send mail to users when necessary (such as announcing a +new release), and also to help keep track of the number of users we +have, which in turn helps us with important items such as funding. If +you download WordNet, you are encouraged to send e-mail to the address +above, stating which platform you're using and which package(s) you've +downloaded. + +In addition to the user database, there is a WordNet user discussion +group mailing list. Information on joining the user mailing list +is in the file README.list. + +3. The WordNet Web Site + +We maintain a Web site at http://www.cogsci.princeton.edu/~wn/ + +From this site users can download WordNet, run a web interface to +WordNet, and download "Five Papers on WordNet." We also maintain +links to other related projects and online interfaces to WordNet, and +an extensive (but by no means complete) bibliography. If you have an +application or paper that you would like included, please send e-mail +to the above address. + +If you have trouble installing or downloading WordNet, have a bug to +report, or any other problem, please refer to the online FAQ file +first. If you can heal thyself, please do so. The FAQ will be +updated over time. And if you do find a previously unreported +problem, please report it to 'wordnet@princeton.edu'. + +4. Current Release + +WordNet Version 2.0 is the latest version available for download. See +the file CHANGES for information about changes from version 1.7.1. +Precompiled binaries for the WordNet browsers and library are included +in the database package for the following platforms. + +(Note that these are the platforms that the binaries were compiled on. +Most should work on newer versions of the operating system.) + + Sun SPARC Solaris 8 + Red Hat Linux 7.2 + Windows 2000 + Windows XP + Silicon Graphics Irix 6.5.8 + +5. WordNet Packages + +WordNet packages can either be downloaded from our web site, or via +anonymous FTP. The "Download WordNet" link describes each package. + +In order to facilitate downloading, some of the packages are available +as both a single file or a series of smaller files. If you download a +package that has been split into smaller files you must make sure that +you download all of the individual files in the package. + +6. Downloading WordNet + + ***** IF YOU USE FTP, REMEMBER TO FTP IN "binary" MODE!!! ***** + +**************************************************************************** +* IF YOU DONWLOAD WordNet, PLEASE SEND MAIL TO wordnet@princeton.edu SO WE * +* CAN UPDATE OUR RECORDS AND KEEP TRACK OF OUR USERS FOR FUTURE MAILINGS * +* AND RELEASES. EVEN IF YOU ARE A CURRENT USER WHO IS UPGRADING, IT IS * +* USEFUL TO US TO KNOW THAT YOU HAVE UPGRADED TO 2.0. * +**************************************************************************** + +6.1 Princeton FTP Site + + Host: ftp.cogsci.princeton.edu [128.112.144.11] + Login: ftp + Password: Your e-mail address + Directory: pub/wordnet + +6.2 Stuttgart Mirror FTP Site + + Host: ftp.ims.uni-stuttgart.de [141.58.127.61] + Login: ftp + Password: Your e-mail address + Directory: /pub/WordNet/2.0 + +Note: 'ls' sometimes doesn't work properly, 'dir' shows everything. + +Due to the size of the WordNet distribution, please restrict +downloading to time frames outside office hours (i.e. outside 9am - +6pm EST). + +All queries regarding the installation of the system, its use and +maintenance should be made to wordnet@princeton.edu only. + +7. Installing WordNet Packages + +WordNet packages are generally very easy to install. See the UNBUNDLE +file (on the FTP site and on the web site under "Download WordNet") +for instructions on unbundling downloaded packages. Once unbundled, +each package contains an INSTALL file with package-specific +installation and compilation instructions. + +8. Bugs + +Before reporting download or installation problems, or bugs, please +check the FAQ and BUGS files on our web site to see if your situation is +already addressed there. If not, then report WordNet related +problems to 'wordnet@princeton.edu'. diff --git a/aclocal.m4 b/aclocal.m4 new file mode 100644 index 0000000..2a1f420 --- /dev/null +++ b/aclocal.m4 @@ -0,0 +1,1134 @@ +# generated automatically by aclocal 1.11.3 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, +# Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, +[m4_warning([this file was generated for autoconf 2.68. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT]) + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .]) + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES + +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.11' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.11.3], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.11.3])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 9 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, +# 2010, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 12 + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +#serial 5 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 16 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.62])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 6 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +m4_include([m4/libtool.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4]) diff --git a/checkme.lst b/checkme.lst new file mode 100644 index 0000000..120d343 --- /dev/null +++ b/checkme.lst @@ -0,0 +1,4 @@ +simple +complex +junk +jhjhjh diff --git a/config.guess b/config.guess new file mode 100755 index 0000000..1804e9f --- /dev/null +++ b/config.guess @@ -0,0 +1,1535 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012, 2013 Free Software Foundation, Inc. + +timestamp='2012-12-29' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# +# Please send patches with a ChangeLog entry to config-patches@gnu.org. + + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, +2012, 2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..423fcf8 --- /dev/null +++ b/config.h.in @@ -0,0 +1,62 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION diff --git a/config.rpath b/config.rpath new file mode 100755 index 0000000..c547c68 --- /dev/null +++ b/config.rpath @@ -0,0 +1,666 @@ +#! /bin/sh +# Output a system dependent set of variables, describing how to set the +# run time search path of shared libraries in an executable. +# +# Copyright 1996-2007 Free Software Foundation, Inc. +# Taken from GNU libtool, 2001 +# Originally by Gordon Matzigkeit , 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# The first argument passed to this file is the canonical host specification, +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld +# should be set by the caller. +# +# The set of defined variables is at the end of this script. + +# Known limitations: +# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer +# than 256 bytes, otherwise the compiler driver will dump core. The only +# known workaround is to choose shorter directory names for the build +# directory and/or the installation directory. + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a +shrext=.so + +host="$1" +host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + +# Code taken from libtool.m4's _LT_CC_BASENAME. + +for cc_temp in $CC""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. + +wl= +if test "$GCC" = yes; then + wl='-Wl,' +else + case "$host_os" in + aix*) + wl='-Wl,' + ;; + darwin*) + case $cc_basename in + xlc*) + wl='-Wl,' + ;; + esac + ;; + mingw* | cygwin* | pw32* | os2*) + ;; + hpux9* | hpux10* | hpux11*) + wl='-Wl,' + ;; + irix5* | irix6* | nonstopux*) + wl='-Wl,' + ;; + newsos6) + ;; + linux* | k*bsd*-gnu) + case $cc_basename in + icc* | ecc*) + wl='-Wl,' + ;; + pgcc | pgf77 | pgf90) + wl='-Wl,' + ;; + ccc*) + wl='-Wl,' + ;; + como) + wl='-lopt=' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + wl='-Wl,' + ;; + esac + ;; + esac + ;; + osf3* | osf4* | osf5*) + wl='-Wl,' + ;; + rdos*) + ;; + solaris*) + wl='-Wl,' + ;; + sunos4*) + wl='-Qoption ld ' + ;; + sysv4 | sysv4.2uw2* | sysv4.3*) + wl='-Wl,' + ;; + sysv4*MP*) + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + wl='-Wl,' + ;; + unicos*) + wl='-Wl,' + ;; + uts4*) + ;; + esac +fi + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. + +hardcode_libdir_flag_spec= +hardcode_libdir_separator= +hardcode_direct=no +hardcode_minus_L=no + +case "$host_os" in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; +esac + +ld_shlibs=yes +if test "$with_gnu_ld" = yes; then + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + # Unlike libtool, we use -rpath here, not --rpath, since the documented + # option of GNU ld is called -rpath, not --rpath. + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + case "$host_os" in + aix3* | aix4* | aix5*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # Samuel A. Falvo II reports + # that the semantics of dynamic libraries on AmigaOS, at least up + # to version 4, is to share data among multiple programs linked + # with the same dynamic library. Since this doesn't match the + # behavior of shared libraries on other platforms, we cannot use + # them. + ld_shlibs=no + ;; + beos*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + cygwin* | mingw* | pw32*) + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + interix[3-9]*) + hardcode_direct=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + gnu* | linux* | k*bsd*-gnu) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + netbsd*) + ;; + solaris*) + if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + ;; + *) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' + else + ld_shlibs=no + fi + ;; + esac + ;; + sunos4*) + hardcode_direct=yes + ;; + *) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + esac + if test "$ld_shlibs" = no; then + hardcode_libdir_flag_spec= + fi +else + case "$host_os" in + aix3*) + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + aix4* | aix5*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + else + aix_use_runtimelinking=no + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix5*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + fi + hardcode_direct=yes + hardcode_libdir_separator=':' + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && \ + strings "$collect2name" | grep resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + fi + # Begin _LT_AC_SYS_LIBPATH_AIX. + echo 'int main () { return 0; }' > conftest.c + ${CC} ${LDFLAGS} conftest.c -o conftest + aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + fi + if test -z "$aix_libpath"; then + aix_libpath="/usr/lib:/lib" + fi + rm -f conftest.c conftest + # End _LT_AC_SYS_LIBPATH_AIX. + if test "$aix_use_runtimelinking" = yes; then + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + else + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + fi + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # see comment about different semantics on the GNU ld section + ld_shlibs=no + ;; + bsdi[45]*) + ;; + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + libext=lib + ;; + darwin* | rhapsody*) + hardcode_direct=no + if test "$GCC" = yes ; then + : + else + case $cc_basename in + xlc*) + ;; + *) + ld_shlibs=no + ;; + esac + fi + ;; + dgux*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + freebsd1*) + ld_shlibs=no + ;; + freebsd2.2*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + freebsd2*) + hardcode_direct=yes + hardcode_minus_L=yes + ;; + freebsd* | dragonfly*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + hpux9*) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + hpux10*) + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + hpux11*) + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + ;; + *) + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + irix5* | irix6* | nonstopux*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + netbsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + newsos6) + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + else + case "$host_os" in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + osf3*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + osf4* | osf5*) + if test "$GCC" = yes; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + # Both cc and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + hardcode_libdir_separator=: + ;; + solaris*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + sunos4*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + ;; + sysv4) + case $host_vendor in + sni) + hardcode_direct=yes # is this really true??? + ;; + siemens) + hardcode_direct=no + ;; + motorola) + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + ;; + sysv4.3*) + ;; + sysv4*MP*) + if test -d /usr/nec; then + ld_shlibs=yes + fi + ;; + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + ;; + sysv5* | sco3.2v5* | sco5v6*) + hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' + hardcode_libdir_separator=':' + ;; + uts4*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + *) + ld_shlibs=no + ;; + esac +fi + +# Check dynamic linker characteristics +# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. +# Unlike libtool.m4, here we don't care about _all_ names of the library, but +# only about the one the linker finds when passed -lNAME. This is the last +# element of library_names_spec in libtool.m4, or possibly two of them if the +# linker has special search rules. +library_names_spec= # the last element of library_names_spec in libtool.m4 +libname_spec='lib$name' +case "$host_os" in + aix3*) + library_names_spec='$libname.a' + ;; + aix4* | aix5*) + library_names_spec='$libname$shrext' + ;; + amigaos*) + library_names_spec='$libname.a' + ;; + beos*) + library_names_spec='$libname$shrext' + ;; + bsdi[45]*) + library_names_spec='$libname$shrext' + ;; + cygwin* | mingw* | pw32*) + shrext=.dll + library_names_spec='$libname.dll.a $libname.lib' + ;; + darwin* | rhapsody*) + shrext=.dylib + library_names_spec='$libname$shrext' + ;; + dgux*) + library_names_spec='$libname$shrext' + ;; + freebsd1*) + ;; + freebsd* | dragonfly*) + case "$host_os" in + freebsd[123]*) + library_names_spec='$libname$shrext$versuffix' ;; + *) + library_names_spec='$libname$shrext' ;; + esac + ;; + gnu*) + library_names_spec='$libname$shrext' + ;; + hpux9* | hpux10* | hpux11*) + case $host_cpu in + ia64*) + shrext=.so + ;; + hppa*64*) + shrext=.sl + ;; + *) + shrext=.sl + ;; + esac + library_names_spec='$libname$shrext' + ;; + interix[3-9]*) + library_names_spec='$libname$shrext' + ;; + irix5* | irix6* | nonstopux*) + library_names_spec='$libname$shrext' + case "$host_os" in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; + *) libsuff= shlibsuff= ;; + esac + ;; + esac + ;; + linux*oldld* | linux*aout* | linux*coff*) + ;; + linux* | k*bsd*-gnu) + library_names_spec='$libname$shrext' + ;; + knetbsd*-gnu) + library_names_spec='$libname$shrext' + ;; + netbsd*) + library_names_spec='$libname$shrext' + ;; + newsos6) + library_names_spec='$libname$shrext' + ;; + nto-qnx*) + library_names_spec='$libname$shrext' + ;; + openbsd*) + library_names_spec='$libname$shrext$versuffix' + ;; + os2*) + libname_spec='$name' + shrext=.dll + library_names_spec='$libname.a' + ;; + osf3* | osf4* | osf5*) + library_names_spec='$libname$shrext' + ;; + rdos*) + ;; + solaris*) + library_names_spec='$libname$shrext' + ;; + sunos4*) + library_names_spec='$libname$shrext$versuffix' + ;; + sysv4 | sysv4.3*) + library_names_spec='$libname$shrext' + ;; + sysv4*MP*) + library_names_spec='$libname$shrext' + ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + library_names_spec='$libname$shrext' + ;; + uts4*) + library_names_spec='$libname$shrext' + ;; +esac + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` +shlibext=`echo "$shrext" | sed -e 's,^\.,,'` +escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` +escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` +escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` + +LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). + + +# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, +2012, 2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i386-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/configure b/configure new file mode 100755 index 0000000..3dc9735 --- /dev/null +++ b/configure @@ -0,0 +1,18130 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for mythes 1.2.4. +# +# Report bugs to . +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: nemeth@openoffice.org about your system, including any +$0: error possibly output before this message. Then install +$0: a modern shell, or manually run the script under such a +$0: shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='mythes' +PACKAGE_TARNAME='mythes' +PACKAGE_VERSION='1.2.4' +PACKAGE_STRING='mythes 1.2.4' +PACKAGE_BUGREPORT='nemeth@openoffice.org' +PACKAGE_URL='' + +ac_unique_file="config.h.in" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +HUNSPELL_LIBS +HUNSPELL_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH +PKG_CONFIG +AS +CXXCPP +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +LIBTOOL +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +ac_ct_CC +CFLAGS +CC +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CXX +CPPFLAGS +LDFLAGS +CXXFLAGS +CXX +MYTHES_VERSION_MINOR +MYTHES_VERSION_MAJOR +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +XFAILED +target_os +target_vendor +target_cpu +target +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +enable_shared +enable_static +with_pic +enable_fast_install +with_gnu_ld +with_sysroot +enable_libtool_lock +' + ac_precious_vars='build_alias +host_alias +target_alias +CXX +CXXFLAGS +LDFLAGS +LIBS +CPPFLAGS +CCC +CC +CFLAGS +CPP +CXXCPP +PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR +HUNSPELL_CFLAGS +HUNSPELL_LIBS' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures mythes 1.2.4 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/mythes] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] + --target=TARGET configure for building compilers for TARGET [HOST] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of mythes 1.2.4:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot=DIR Search for dependent libraries within DIR + (or the compiler's sysroot if not specified). + +Some influential environment variables: + CXX C++ compiler command + CXXFLAGS C++ compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CC C compiler command + CFLAGS C compiler flags + CPP C preprocessor + CXXCPP C++ preprocessor + PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path + HUNSPELL_CFLAGS + C compiler flags for HUNSPELL, overriding pkg-config + HUNSPELL_LIBS + linker flags for HUNSPELL, overriding pkg-config + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +mythes configure 1.2.4 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_link +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by mythes $as_me 1.2.4, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 +$as_echo_n "checking target system type... " >&6; } +if ${ac_cv_target+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$target_alias" = x; then + ac_cv_target=$ac_cv_host +else + ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 +$as_echo "$ac_cv_target" >&6; } +case $ac_cv_target in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; +esac +target=$ac_cv_target +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_target +shift +target_cpu=$1 +target_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +target_os=$* +IFS=$ac_save_IFS +case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac + + +# The aliases save the names the user supplied, while $host etc. +# will get canonicalized. +test -n "$target_alias" && + test "$program_prefix$program_suffix$program_transform_name" = \ + NONENONEs,x,x, && + program_prefix=${target_alias}- + + + +am__api_version='1.11' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE=mythes + VERSION=1.2.4 + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + +MYTHES_VERSION_MAJOR=`echo $VERSION | cut -d"." -f1` +MYTHES_VERSION_MINOR=`echo $VERSION | cut -d"." -f2` + + + + +ac_config_headers="$ac_config_headers config.h" + + +# Checks for programs. +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 +$as_echo_n "checking whether the C++ compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C++ compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 +$as_echo_n "checking for C++ compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if ${ac_cv_cxx_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if ${ac_cv_prog_cxx_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CXX_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.2' +macro_revision='1.3337' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case "$ECHO" in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_GREP" || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_EGREP" || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_FGREP" || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test "$GCC" != yes; then + reload_cmds=false + fi + ;; + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 +$as_echo "${with_sysroot}" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + + +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='${wl}--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test x"$lt_cv_prog_compiler__b" = xyes; then + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test "$lt_cv_irix_exported_symbol" = yes; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([A-Za-z]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC="$lt_save_CC" + + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 +$as_echo_n "checking how to run the C++ preprocessor... " >&6; } +if test -z "$CXXCPP"; then + if ${ac_cv_prog_CXXCPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +else + _lt_caught_CXX_error=yes +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +reload_flag_CXX=$reload_flag +reload_cmds_CXX=$reload_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + compiler_CXX=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_CXX=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_CXX='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + always_export_symbols_CXX=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_CXX=' ${wl}-bernotok' + allow_undefined_flag_CXX=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + fi + archive_cmds_need_lc_CXX=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_CXX=' ' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=yes + file_list_spec_CXX='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' + enable_shared_with_static_runtimes_CXX=yes + # Don't use ranlib + old_postinstall_cmds_CXX='chmod 644 $oldlib' + postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec_CXX='' + fi + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi + + else + ld_shlibs_CXX=no + fi + + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + gnu*) + ;; + + haiku*) + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs_CXX=yes + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5].* | *pgcpp\ [1-5].*) + prelink_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + old_archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_CXX=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + ld_shlibs_CXX=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + ld_shlibs_CXX=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='${wl}-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_CXX='${wl}-z,text' + allow_undefined_flag_CXX='${wl}-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ + '"$old_archive_cmds_CXX" + reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ + '"$reload_cmds_CXX" + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF + + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX="${prev}${p}" + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_CXX"; then + postdeps_CXX="${prev}${p}" + else + postdeps_CXX="${postdeps_CXX} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$predep_objects_CXX"; then + predep_objects_CXX="$p" + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX="$p" + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +case $host_os in +interix[3-9]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static_CXX= + ;; + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_CXX=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + else + case $host_os in + aix[4-9]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + lt_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd*) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } +lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +else + lt_prog_compiler_static_CXX= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + case $host_os in + aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + ;; + esac + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test "$ld_shlibs_CXX" = no && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_CXX in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc_CXX=no + else + lt_cv_archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } + archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test "X$hardcode_automatic_CXX" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_CXX" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && + test "$hardcode_minus_L_CXX" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test "$hardcode_action_CXX" = relink || + test "$inherit_rpath_CXX" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + +enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. +set dummy ${ac_tool_prefix}as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AS="${ac_tool_prefix}as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AS=$ac_cv_prog_AS +if test -n "$AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 +$as_echo "$AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_AS"; then + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. +set dummy as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AS"; then + ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AS="as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AS=$ac_cv_prog_ac_ct_AS +if test -n "$ac_ct_AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 +$as_echo "$ac_ct_AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_AS" = x; then + AS="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AS=$ac_ct_AS + fi +else + AS="$ac_cv_prog_AS" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + + ;; +esac + +test -z "$AS" && AS=as + + + + + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + + + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 +$as_echo "$PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG +if test -n "$ac_pt_PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 +$as_echo "$ac_pt_PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_PKG_CONFIG" = x; then + PKG_CONFIG="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + PKG_CONFIG=$ac_pt_PKG_CONFIG + fi +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi + +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 +$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + PKG_CONFIG="" + fi +fi + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HUNSPELL" >&5 +$as_echo_n "checking for HUNSPELL... " >&6; } + +if test -n "$HUNSPELL_CFLAGS"; then + pkg_cv_HUNSPELL_CFLAGS="$HUNSPELL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hunspell\""; } >&5 + ($PKG_CONFIG --exists --print-errors "hunspell") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_HUNSPELL_CFLAGS=`$PKG_CONFIG --cflags "hunspell" 2>/dev/null` +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$HUNSPELL_LIBS"; then + pkg_cv_HUNSPELL_LIBS="$HUNSPELL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hunspell\""; } >&5 + ($PKG_CONFIG --exists --print-errors "hunspell") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_HUNSPELL_LIBS=`$PKG_CONFIG --libs "hunspell" 2>/dev/null` +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + HUNSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "hunspell" 2>&1` + else + HUNSPELL_PKG_ERRORS=`$PKG_CONFIG --print-errors "hunspell" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$HUNSPELL_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (hunspell) were not met: + +$HUNSPELL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables HUNSPELL_CFLAGS +and HUNSPELL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 + +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables HUNSPELL_CFLAGS +and HUNSPELL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } + +else + HUNSPELL_CFLAGS=$pkg_cv_HUNSPELL_CFLAGS + HUNSPELL_LIBS=$pkg_cv_HUNSPELL_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + +ac_config_files="$ac_config_files Makefile mythes.pc" + + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by mythes $as_me 1.2.4, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +mythes config.status 1.2.4 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' +predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' +predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' +postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' +AS='`$ECHO "$AS" | $SED "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' +reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' +reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +nm_file_list_spec \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +AS \ +LD_CXX \ +reload_flag_CXX \ +compiler_CXX \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_static_CXX \ +lt_cv_prog_compiler_c_o_CXX \ +export_dynamic_flag_spec_CXX \ +whole_archive_flag_spec_CXX \ +compiler_needs_object_CXX \ +with_gnu_ld_CXX \ +allow_undefined_flag_CXX \ +no_undefined_flag_CXX \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_separator_CXX \ +exclude_expsyms_CXX \ +include_expsyms_CXX \ +file_list_spec_CXX \ +compiler_lib_search_dirs_CXX \ +predep_objects_CXX \ +postdep_objects_CXX \ +predeps_CXX \ +postdeps_CXX \ +compiler_lib_search_path_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec \ +reload_cmds_CXX \ +old_archive_cmds_CXX \ +old_archive_from_new_cmds_CXX \ +old_archive_from_expsyms_cmds_CXX \ +archive_cmds_CXX \ +archive_expsym_cmds_CXX \ +module_cmds_CXX \ +module_expsym_cmds_CXX \ +export_symbols_cmds_CXX \ +prelink_cmds_CXX \ +postlink_cmds_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "mythes.pc") CONFIG_FILES="$CONFIG_FILES mythes.pc" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="CXX " + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + +# Assembler program. +AS=$lt_AS + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..e204624 --- /dev/null +++ b/configure.ac @@ -0,0 +1,31 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +m4_pattern_allow + +AC_PREREQ(2.59) +AC_INIT([mythes],[1.2.4],[nemeth@openoffice.org]) + +AC_CANONICAL_SYSTEM +AC_SUBST(XFAILED) + +AM_INIT_AUTOMAKE(mythes, 1.2.4) +MYTHES_VERSION_MAJOR=`echo $VERSION | cut -d"." -f1` +MYTHES_VERSION_MINOR=`echo $VERSION | cut -d"." -f2` +AC_SUBST(MYTHES_VERSION_MAJOR) +AC_SUBST(MYTHES_VERSION_MINOR) + +AC_CONFIG_SRCDIR([config.h.in]) +AC_CONFIG_HEADER([config.h]) + +# Checks for programs. +AC_PROG_CXX +AC_PROG_CC +AC_PROG_LIBTOOL +AC_LIBTOOL_WIN32_DLL + +PKG_CHECK_MODULES(HUNSPELL, [hunspell]) + +AC_CONFIG_FILES([Makefile mythes.pc]) + +AC_OUTPUT diff --git a/data_layout.txt b/data_layout.txt new file mode 100644 index 0000000..ef4bc25 --- /dev/null +++ b/data_layout.txt @@ -0,0 +1,131 @@ +Description of the Structure of the Data needed by MyThes +-------------------------------------------------------- + +MyThes is very simple. Almost all of the "smarts" are really +in the thesaurus data file itself. + +The format for this file is at follows: + +- no binary data + +- line ending is a newline '\n' and not carriage return/linefeeds + +- Line 1 is a character string that describes the encoding +used for the file. It is up to the calling program to convert +to and from this encoding if necessary. + + ISO8859-1 is used by the th_en_US_new.dat file. + + Strings currently recognized by OpenOffice.org are: + + UTF-8 + ISO8859-1 + ISO8859-2 + ISO8859-3 + ISO8859-4 + ISO8859-5 + ISO8859-6 + ISO8859-7 + ISO8859-8 + ISO8859-9 + ISO8859-10 + KOI8-R + CP-1251 + ISO8859-14 + ISCII-DEVANAGARI + + +- All of the remaning lines of the file follow this structure + +entry|num_mean +pos|syn1_mean|syn2|... +. +. +. +pos|mean_syn1|syn2|... + + +where: + + entry - all lowercase version of the word or phrase being described + num_mean - number of meanings for this entry + + There is one meaning per line and each meaning is comprised of + + pos - part of speech or other meaning specific description + syn1_mean - synonym 1 also used to describe the meaning itself + syn2 - synonym 2 for that meaning etc. + + +To make this even more clearer, here is actual data for the +entry "simple". + +simple|9 +(adj)|simple |elemental|ultimate|oversimplified|simplistic|simplex|simplified|unanalyzable| +undecomposable|uncomplicated|unsophisticated|easy|plain|unsubdivided +(adj)|elementary|uncomplicated|unproblematic|easy +(adj)|bare|mere|plain +(adj)|childlike|wide-eyed|dewy-eyed|naive |naif +(adj)|dim-witted|half-witted|simple-minded|retarded +(adj)|simple |unsubdivided|unlobed|smooth +(adj)|plain +(noun)|herb|herbaceous plant +(noun)|simpleton|person|individual|someone|somebody|mortal|human|soul + + +It says that "simple" has 9 different meanings and each +meaning will have its part of speech and at least 1 synonym +with other if presetn following on the same line. + + + +Once you ahve created your own structured text file you can use +the perl program "th_gen_idx.pl" which can be found in this +directory to create an index file that is used to seek into +your data file by the MyThes code. + +The correct way to run the perl program is as follows: + +cat th_en_US_new.dat | ./th_gen_idx.pl > th_en_US_new.idx + + + +Then if you head the resulting index file you should see the +following: + +ISO8859-1 +142689 +'hood|10 +'s gravenhage|88 +'tween|173 +'tween decks|196 +.22|231 +.22 caliber|319 +.22 calibre|365 +.38 caliber|411 +.38 calibre|457 +.45 caliber|503 +.45 calibre|549 +0|595 +1|666 +1 chronicles|6283 +1 esdras|6336 + + +Line 1 is the same encoding string taken from the +structured thesaurus data file. + +Line 2 is a count of the total number of entries +in your thesaurus. + +All of the remaining lines are of the form + +entry|byte_offset_into_data_file_where_entry_is_found + + +That's all there is too it. + + +Kevin +kevin.hendricks@sympatico.ca + diff --git a/depcomp b/depcomp new file mode 100755 index 0000000..df8eea7 --- /dev/null +++ b/depcomp @@ -0,0 +1,630 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2009-04-28.21; # UTC + +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free +# Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputing dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u="sed s,\\\\\\\\,/,g" + depmode=msvisualcpp +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> "$depfile" + echo >> "$depfile" + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts `$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +icc) + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # ICC 7.0 will fill foo.d with something like + # foo.o: sub/foo.c + # foo.o: sub/foo.h + # which is wrong. We want: + # sub/foo.o: sub/foo.c + # sub/foo.o: sub/foo.h + # sub/foo.c: + # sub/foo.h: + # ICC 7.1 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using \ : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" + # Add `dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a + # static library. This mechanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two + # compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 + tmpdepfile2=$dir$base.o.d # libtool 1.5 + tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 + tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.o.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + tmpdepfile4=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for `:' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. + "$@" $dashmflag | + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/example.cxx b/example.cxx new file mode 100644 index 0000000..502c3f2 --- /dev/null +++ b/example.cxx @@ -0,0 +1,117 @@ +#include +#include +#include + +#include "mythes.hxx" + +#include + +extern char * mystrdup(const char * s); + +void myfreelist(char *** list, int n) +{ + if (list && (n > 0)) { + for (int i = 0; i < n; i++) if ((*list)[i]) free((*list)[i]); + free(*list); + *list = NULL; + } +} + +int main(int argc, char** argv) +{ + FILE* wtclst; + + /* first parse the command line options + * arg1 - index file, arg2 thesaurus data file, arg3 - file of words to check, + * arg4, arg5 - opt. Hunspell affix and dic file for stemming and + * morphological generation + */ + + if (argc < 3) { + fprintf(stderr,"correct syntax is:\n"); + fprintf(stderr,"example index_file thesaurus_file file_of_words_to_check [affix_file dic_file]\n"); + exit(1); + } + + /* open the words to check list */ + wtclst = fopen(argv[3], "r"); + if (!wtclst) { + fprintf(stderr,"Error - could not open file of words to check\n"); + exit(1); + } + + // Hunspell for stemming and morphological generation of affixes synonyms + Hunspell * pH = NULL; + if (argc >= 5) pH = new Hunspell(argv[4], argv[5], (const char *) NULL); + + // open a new thesaurus object + MyThes * pMT = new MyThes(argv[1], argv[2]); + + // get the encoding used for the thesaurus data + char * encoding = pMT->get_th_encoding(); + printf("Thesaurus uses encoding %s\n\n", encoding); + + int k; + char buf[101]; + char oldbuf[101]; + mentry * pmean; + + while(fgets(buf,100,wtclst)) { + oldbuf[0] = '\0'; + k = strlen(buf); + *(buf + k - 1) = '\0'; + int len = strlen(buf); + int count = pMT->Lookup(buf,len,&pmean); + // don't change value of pmean + // or count since needed for CleanUpAfterLookup routine + if (!count) { + int stemcount = 0; + char **stem; + if (pH) stemcount = pH->stem(&stem, buf); else stemcount = 0; + if (stemcount) { + printf("stem: %s\n", stem[0]); + strncpy(oldbuf,buf, sizeof(oldbuf)-1); + oldbuf[sizeof(oldbuf)-1] = 0; + strncpy(buf, stem[0], sizeof(buf)-1); + buf[sizeof(buf)-1] = 0; + len = strlen(buf); + count = pMT->Lookup(buf, len, &pmean); + myfreelist(&stem, stemcount); + } else oldbuf[0] = '\0'; + } + + mentry* pm = pmean; + if (count) { + printf("%s has %d meanings\n",buf,count); + for (int i=0; i < count; i++) { + printf(" meaning %d: %s\n",i,pm->defn); + for (int j=0; j < pm->count; j++) { + char ** gen; + int l = 0; + if (pH && oldbuf[0]) l = pH->generate(&gen, pm->psyns[j], oldbuf); + if (l) { + int k; + printf(" %s",gen[0]); + for (k = 1; k < l; k++) printf(", %s",gen[k]); + printf("\n"); + myfreelist(&gen, l); + } else printf(" %s\n",pm->psyns[j]); + + } + printf("\n"); + pm++; + } + printf("\n\n"); + // now clean up all allocated memory + pMT->CleanUpAfterLookup(&pmean,count); + } else { + printf("\"%s\" is not in thesaurus!\n",buf); + } + } + + fclose(wtclst); + delete pMT; + if (pH) delete pH; + return 0; +} + diff --git a/install-sh b/install-sh new file mode 100755 index 0000000..6781b98 --- /dev/null +++ b/install-sh @@ -0,0 +1,520 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2009-04-28.21; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + trap '(exit $?); exit' 1 2 13 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names starting with `-'. + case $src in + -*) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + + dst=$dst_arg + # Protect names starting with `-'. + case $dst in + -*) dst=./$dst;; + esac + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + -*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test -z "$d" && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/ltmain.sh b/ltmain.sh new file mode 100644 index 0000000..63ae69d --- /dev/null +++ b/ltmain.sh @@ -0,0 +1,9655 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION=2.4.2 +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/m4/libtool.m4 b/m4/libtool.m4 new file mode 100644 index 0000000..f12cfdf --- /dev/null +++ b/m4/libtool.m4 @@ -0,0 +1,7992 @@ +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd*) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/m4/ltoptions.m4 b/m4/ltoptions.m4 new file mode 100644 index 0000000..5d9acd8 --- /dev/null +++ b/m4/ltoptions.m4 @@ -0,0 +1,384 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff --git a/m4/ltsugar.m4 b/m4/ltsugar.m4 new file mode 100644 index 0000000..9000a05 --- /dev/null +++ b/m4/ltsugar.m4 @@ -0,0 +1,123 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff --git a/m4/ltversion.m4 b/m4/ltversion.m4 new file mode 100644 index 0000000..07a8602 --- /dev/null +++ b/m4/ltversion.m4 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff --git a/m4/lt~obsolete.m4 b/m4/lt~obsolete.m4 new file mode 100644 index 0000000..c573da9 --- /dev/null +++ b/m4/lt~obsolete.m4 @@ -0,0 +1,98 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff --git a/makefile.mk b/makefile.mk new file mode 100644 index 0000000..021ec8c --- /dev/null +++ b/makefile.mk @@ -0,0 +1,60 @@ +#************************************************************************ +# Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada +# And Contributors. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# 3. All modifications to the source code must be clearly marked as +# such. Binary redistributions based on modified source code +# must be clearly marked as modified versions in the documentation +# and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS +# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL +# KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# +#************************************************************************* + +PRJ = ../../../.. + +PRJNAME=mythes +TARGET=mythes +LIBTARGET=YES +EXTERNAL_WARNINGS_NOT_ERRORS := TRUE + +#----- Settings --------------------------------------------------------- + +.INCLUDE : settings.mk + +# --- Files -------------------------------------------------------- + +all_target: ALLTAR + +SLOFILES=\ + $(SLO)$/mythes.obj + +LIB1TARGET= $(SLB)$/lib$(TARGET).lib +LIB1ARCHIV= $(LB)/lib$(TARGET).a +LIB1OBJFILES= $(SLOFILES) + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk diff --git a/missing b/missing new file mode 100755 index 0000000..28055d2 --- /dev/null +++ b/missing @@ -0,0 +1,376 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2009-04-28.21; # UTC + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: +sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' +sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case $1 in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). This is about non-GNU programs, so use $1 not +# $program. +case $1 in + lex*|yacc*) + # Not GNU programs, they don't have --version. + ;; + + tar*) + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + exit 1 + fi + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case $program in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te*) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison*|yacc*) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if test $# -ne 1; then + eval LASTARG="\${$#}" + case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if test ! -f y.tab.h; then + echo >y.tab.h + fi + if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex*|flex*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if test $# -ne 1; then + eval LASTARG="\${$#}" + case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit $? + fi + ;; + + makeinfo*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n ' + /^@setfilename/{ + s/.* \([^ ]*\) *$/\1/ + p + q + }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + # If the file does not exist, the user really needs makeinfo; + # let's fail without touching anything. + test -f $file || exit 1 + touch $file + ;; + + tar*) + shift + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case $firstarg in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case $firstarg in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/morph.aff b/morph.aff new file mode 100644 index 0000000..079dc70 --- /dev/null +++ b/morph.aff @@ -0,0 +1,16 @@ +# example for morphological analysis, stemming and generation +SFX D Y 4 +SFX D 0 ed [^e] is:past_1 +SFX D 0 d e is:past_1 +SFX D 0 ed [^e] is:past_2 +SFX D 0 d e is:past_2 + +SFX S Y 1 +SFX S 0 s . is:plur + +SFX Q Y 1 +SFX Q 0 s . is:sg_3 + +SFX T Y 2 +SFX T 0 ing [^e] is:pr_part +SFX T e ing e is:pr_part diff --git a/morph.dat b/morph.dat new file mode 100644 index 0000000..bb4ff7f --- /dev/null +++ b/morph.dat @@ -0,0 +1,11 @@ +ISO8859-1 +mouse|1 +(n)|rodent +rodent|1 +(n)|mouse +eat|1 +(v)|consume|ingest +consume|1 +(v)|eat|ingest +ingest|1 +(v)|eat|consume diff --git a/morph.dic b/morph.dic new file mode 100644 index 0000000..d8da5b4 --- /dev/null +++ b/morph.dic @@ -0,0 +1,9 @@ +8 +rodent/S po:n ts:nom +mouse po:n al:mice ts:nom +mice po:n st:mouse is:plur +consume/TQD po:v ts:present +ingest/TQD po:v ts:present +eat/QT po:v al:ate al:eaten ts:present +ate po:v st:eat is:past_1 +eaten po:v st:eat is:past_2 diff --git a/morph.idx b/morph.idx new file mode 100644 index 0000000..6a4f7e1 --- /dev/null +++ b/morph.idx @@ -0,0 +1,7 @@ +ISO8859-1 +5 +consume|73 +eat|48 +ingest|98 +mouse|10 +rodent|29 diff --git a/morph.lst b/morph.lst new file mode 100644 index 0000000..f40e4cb --- /dev/null +++ b/morph.lst @@ -0,0 +1,7 @@ +mouse +mice +rodents +eats +eaten +ate +eating diff --git a/mythes.cxx b/mythes.cxx new file mode 100644 index 0000000..675bbfe --- /dev/null +++ b/mythes.cxx @@ -0,0 +1,375 @@ +#include "COPYING" +#include +#include +#include +#include +#include +#include + +#include "mythes.hxx" + +MyThes::MyThes(const char* idxpath, const char * datpath) +{ + nw = 0; + encoding = NULL; + list = NULL; + offst = NULL; + pdfile = NULL; + + if (thInitialize(idxpath, datpath) != 1) { + fprintf(stderr,"Error - can't open %s or %s\n",idxpath, datpath); + fflush(stderr); + thCleanup(); + // did not initialize properly - throw exception? + } +} + + +MyThes::~MyThes() +{ + thCleanup(); +} + + +int MyThes::thInitialize(const char* idxpath, const char* datpath) +{ + + // open the index file + FILE * pifile = fopen(idxpath,"r"); + if (!pifile) { + return 0; + } + + // parse in encoding and index size */ + std::vector buffer(MAX_WD_LEN); + char * wrd = &buffer[0]; + readLine(pifile,wrd,MAX_WD_LEN); + encoding = mystrdup(wrd); + readLine(pifile,wrd,MAX_WD_LEN); + int idxsz = atoi(wrd); + + if (idxsz <= 0 || idxsz > std::numeric_limits::max() / sizeof(sizeof(char*))) { + fprintf(stderr,"Error - bad index %d\n", idxsz); + fclose(pifile); + return 0; + } + + // now allocate list, offst for the given size + list = (char**) calloc(idxsz,sizeof(char*)); + offst = (unsigned int*) calloc(idxsz,sizeof(unsigned int)); + + if ( (!(list)) || (!(offst)) ) { + fprintf(stderr,"Error - bad memory allocation\n"); + fclose(pifile); + return 0; + } + + // now parse the remaining lines of the index + int len = readLine(pifile,wrd,MAX_WD_LEN); + while (len > 0) + { + int np = mystr_indexOfChar(wrd,'|'); + if (nw < idxsz) { + if (np >= 0) { + *(wrd+np) = '\0'; + list[nw] = (char *)calloc(1,(np+1)); + if (!list[nw]) { + fprintf(stderr,"Error - bad memory allocation\n"); + fflush(stderr); + fclose(pifile); + return 0; + } + memcpy((list[nw]),wrd,np); + offst[nw] = atoi(wrd+np+1); + nw++; + } + } + len = readLine(pifile,wrd,MAX_WD_LEN); + } + + fclose(pifile); + + /* next open the data file */ + pdfile = fopen(datpath,"r"); + if (!pdfile) { + return 0; + } + + return 1; +} + + +void MyThes::thCleanup() +{ + /* first close the data file */ + if (pdfile) { + fclose(pdfile); + pdfile=NULL; + } + + if (list) + { + /* now free up all the allocated strings on the list */ + for (int i=0; i < nw; i++) + { + if (list[i]) { + free(list[i]); + list[i] = 0; + } + } + free((void*)list); + } + + if (encoding) free((void*)encoding); + if (offst) free((void*)offst); + + encoding = NULL; + list = NULL; + offst = NULL; + nw = 0; +} + + + +// lookup text in index and count of meanings and a list of meaning entries +// with each entry having a synonym count and pointer to an +// array of char * (i.e the synonyms) +// +// note: calling routine should call CleanUpAfterLookup with the original +// meaning point and count to properly deallocate memory + +int MyThes::Lookup(const char * pText, int len, mentry** pme) +{ + + *pme = NULL; + + // handle the case of missing file or file related errors + if (! pdfile) return 0; + + long offset = 0; + + /* copy search word and make sure null terminated */ + std::vector buffer(len+1); + char * wrd = &buffer[0]; + memcpy(wrd,pText,len); + + /* find it in the list */ + int idx = nw > 0 ? binsearch(wrd,list,nw) : -1; + if (idx < 0) return 0; + + // now seek to the offset + offset = (long) offst[idx]; + int rc = fseek(pdfile,offset,SEEK_SET); + if (rc) { + return 0; + } + + // grab the count of the number of meanings + // and allocate a list of meaning entries + char * buf = NULL; + buf = (char *) malloc( MAX_LN_LEN ); + if (!buf) return 0; + readLine(pdfile, buf, (MAX_LN_LEN-1)); + int np = mystr_indexOfChar(buf,'|'); + if (np < 0) { + free(buf); + return 0; + } + int nmeanings = atoi(buf+np+1); + if (nmeanings < 0 || nmeanings > std::numeric_limits::max() / sizeof(mentry)) + nmeanings = 0; + *pme = (mentry*)(nmeanings ? malloc(nmeanings * sizeof(mentry)) : NULL); + if (!(*pme)) { + free(buf); + return 0; + } + + // now read in each meaning and parse it to get defn, count and synonym lists + mentry* pm = *(pme); + char dfn[MAX_WD_LEN]; + + for (int j = 0; j < nmeanings; j++) { + readLine(pdfile, buf, (MAX_LN_LEN-1)); + + pm->count = 0; + pm->psyns = NULL; + pm->defn = NULL; + + // store away the part of speech for later use + char * p = buf; + char * pos = NULL; + np = mystr_indexOfChar(p,'|'); + if (np >= 0) { + *(buf+np) = '\0'; + pos = mystrdup(p); + p = p + np + 1; + } else { + pos = mystrdup(""); + } + + // count the number of fields in the remaining line + int nf = 1; + char * d = p; + np = mystr_indexOfChar(d,'|'); + while ( np >= 0 ) { + nf++; + d = d + np + 1; + np = mystr_indexOfChar(d,'|'); + } + pm->count = nf; + pm->psyns = (char **) malloc(nf*sizeof(char*)); + + // fill in the synonym list + d = p; + for (int jj = 0; jj < nf; jj++) + { + np = mystr_indexOfChar(d,'|'); + if (np > 0) + { + *(d+np) = '\0'; + pm->psyns[jj] = mystrdup(d); + d = d + np + 1; + } + else + { + pm->psyns[jj] = mystrdup(d); + } + } + + // add pos to first synonym to create the definition + if (pm->psyns[0]) + { + int k = strlen(pos); + int m = strlen(pm->psyns[0]); + if ((k+m) < (MAX_WD_LEN - 1)) { + strncpy(dfn,pos,k); + *(dfn+k) = ' '; + strncpy((dfn+k+1),(pm->psyns[0]),m+1); + pm->defn = mystrdup(dfn); + } else { + pm->defn = mystrdup(pm->psyns[0]); + } + } + free(pos); + pm++; + + } + free(buf); + + return nmeanings; +} + + + +void MyThes::CleanUpAfterLookup(mentry ** pme, int nmeanings) +{ + + if (nmeanings == 0) return; + if ((*pme) == NULL) return; + + mentry * pm = *pme; + + for (int i = 0; i < nmeanings; i++) { + int count = pm->count; + for (int j = 0; j < count; j++) { + if (pm->psyns[j]) free(pm->psyns[j]); + pm->psyns[j] = NULL; + } + if (pm->psyns) free(pm->psyns); + pm->psyns = NULL; + if (pm->defn) free(pm->defn); + pm->defn = NULL; + pm->count = 0; + pm++; + } + pm = *pme; + free(pm); + *pme = NULL; + return; +} + + +// read a line of text from a text file stripping +// off the line terminator and replacing it with +// a null string terminator. +// returns: -1 on error or the number of characters in +// in the returning string + +// A maximum of nc characters will be returned + +int MyThes::readLine(FILE * pf, char * buf, int nc) +{ + + if (fgets(buf,nc,pf)) { + mychomp(buf); + return strlen(buf); + } + return -1; +} + + + +// performs a binary search on null terminated character +// strings +// +// returns: -1 on not found +// index of wrd in the list[] + +int MyThes::binsearch(char * sw, char* _list[], int nlst) +{ + int lp, up, mp, j, indx; + lp = 0; + up = nlst-1; + indx = -1; + if (strcmp(sw,_list[lp]) < 0) return -1; + if (strcmp(sw,_list[up]) > 0) return -1; + while (indx < 0 ) { + mp = (int)((lp+up) >> 1); + j = strcmp(sw,_list[mp]); + if ( j > 0) { + lp = mp + 1; + } else if (j < 0 ) { + up = mp - 1; + } else { + indx = mp; + } + if (lp > up) return -1; + } + return indx; +} + +char * MyThes::get_th_encoding() +{ + return encoding; +} + + +// string duplication routine +char * MyThes::mystrdup(const char * s) +{ + char * d = NULL; + if (s) { + int sl = strlen(s)+1; + d = (char *) malloc(sl); + if (d) memcpy(d,s,sl); + } + return d; +} + +// remove cross-platform text line end characters +void MyThes::mychomp(char * s) +{ + int k = strlen(s); + if ((k > 0) && ((*(s+k-1)=='\r') || (*(s+k-1)=='\n'))) *(s+k-1) = '\0'; + if ((k > 1) && (*(s+k-2) == '\r')) *(s+k-2) = '\0'; +} + + +// return index of char in string +int MyThes::mystr_indexOfChar(const char * d, int c) +{ + char * p = strchr((char *)d,c); + if (p) return (int)(p-d); + return -1; +} + diff --git a/mythes.hxx b/mythes.hxx new file mode 100644 index 0000000..eff8aea --- /dev/null +++ b/mythes.hxx @@ -0,0 +1,76 @@ +#ifndef _MYTHES_HXX_ +#define _MYTHES_HXX_ + +// some maximum sizes for buffers +#define MAX_WD_LEN 200 +#define MAX_LN_LEN 16384 + + +// a meaning with definition, count of synonyms and synonym list +struct mentry { + char* defn; + int count; + char** psyns; +}; + + +class MyThes +{ + + int nw; /* number of entries in thesaurus */ + char** list; /* stores word list */ + unsigned int* offst; /* stores offset list */ + char * encoding; /* stores text encoding; */ + + FILE *pdfile; + + // disallow copy-constructor and assignment-operator for now + MyThes(); + MyThes(const MyThes &); + MyThes & operator = (const MyThes &); + +public: + MyThes(const char* idxpath, const char* datpath); + ~MyThes(); + + // lookup text in index and return number of meanings + // each meaning entry has a defintion, synonym count and pointer + // when complete return the *original* meaning entry and count via + // CleanUpAfterLookup to properly handle memory deallocation + + int Lookup(const char * pText, int len, mentry** pme); + + void CleanUpAfterLookup(mentry** pme, int nmean); + + char* get_th_encoding(); + +private: + // Open index and dat files and load list array + int thInitialize (const char* indxpath, const char* datpath); + + // internal close and cleanup dat and idx files + void thCleanup (); + + // read a text line (\n terminated) stripping off line terminator + int readLine(FILE * pf, char * buf, int nc); + + // binary search on null terminated character strings + int binsearch(char * wrd, char* list[], int nlst); + + // string duplication routine + char * mystrdup(const char * p); + + // remove cross-platform text line end characters + void mychomp(char * s); + + // return index of char in string + int mystr_indexOfChar(const char * d, int c); + +}; + +#endif + + + + + diff --git a/mythes.pc.in b/mythes.pc.in new file mode 100644 index 0000000..a6245d4 --- /dev/null +++ b/mythes.pc.in @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=${prefix} +libdir=@libdir@ +includedir=@includedir@ + +Name: mythes +Description: MyThes spellchecking library +Version: @VERSION@ +Libs: -L${libdir} -lmythes-@MYTHES_VERSION_MAJOR@.@MYTHES_VERSION_MINOR@ +Cflags: -I${includedir} diff --git a/th_en_US_new.dat b/th_en_US_new.dat new file mode 100644 index 0000000..efa8cee --- /dev/null +++ b/th_en_US_new.dat @@ -0,0 +1,347243 @@ +ISO8859-1 +'hood|1 +(noun)|vicinity|locality|neighborhood|neighbourhood|neck of the woods +'s gravenhage|1 +(noun)|The Hague|'s Gravenhage|Den Haag|city|metropolis|urban center +'tween|1 +(adv)|between +'tween decks|1 +(adv)|between decks +.22|2 +(noun)|twenty-two|firearm|piece|small-arm +(noun)|twenty-two|22|XXII|large integer +.22 caliber|1 +(adj)|.22 calibre|diameter|diam +.22 calibre|1 +(adj)|.22 caliber|diameter|diam +.38 caliber|1 +(adj)|.38 calibre|diameter|diam +.38 calibre|1 +(adj)|.38 caliber|diameter|diam +.45 caliber|1 +(adj)|.45 calibre|diameter|diam +.45 calibre|1 +(adj)|.45 caliber|diameter|diam +0|2 +(adj)|zero|cardinal +(noun)|zero|nought|cipher|cypher|digit|figure +1|2 +(adj)|one|i|ane|cardinal +(noun)|one|I|ace|single|unity|digit|figure +1-dodecanol|1 +(noun)|lauryl alcohol|alcohol +1-hitter|1 +(noun)|one-hitter|baseball|baseball game|ball +10|2 +(adj)|ten|x|cardinal +(noun)|ten|X|tenner|decade|large integer +100|2 +(adj)|hundred|a hundred|one hundred|c|cardinal +(noun)|hundred|C|century|one C|centred|large integer +1000|2 +(adj)|thousand|a thousand|one thousand|m|k|cardinal +(noun)|thousand|one thousand|M|K|chiliad|G|grand|thou|yard|large integer +10000|1 +(noun)|ten thousand|myriad|large integer +100000|1 +(noun)|hundred thousand|lakh|large integer +1000000|1 +(noun)|million|one thousand thousand|meg|large integer +1000000000|1 +(noun)|billion|one thousand million|large integer +1000000000000|2 +(noun)|trillion|one million million|large integer +(noun)|billion|one million million|large integer +1000th|1 +(adj)|thousandth|ordinal +100th|1 +(adj)|hundredth|centesimal|ordinal +101|1 +(adj)|hundred and one|a hundred and one|one hundred one|ci|cardinal +101st|1 +(adj)|hundred-and-first|ordinal +105|1 +(adj)|one hundred five|cv|cardinal +105th|1 +(adj)|hundred-and-fifth|ordinal +10th|1 +(adj)|tenth|ordinal +11|2 +(adj)|eleven|xi|cardinal +(noun)|eleven|XI|large integer +11-plus|1 +(noun)|eleven-plus|examination|testing +110|1 +(adj)|one hundred ten|cx|cardinal +110th|1 +(adj)|hundred-and-tenth|ordinal +115|1 +(adj)|one hundred fifteen|cxv|cardinal +115th|1 +(adj)|hundred-and-fifteenth|ordinal +11 november|1 +(noun)|Martinmas|St Martin's Day|11 November|quarter day +11th|1 +(adj)|eleventh|ordinal +12|2 +(adj)|twelve|xii|dozen|cardinal +(noun)|twelve|XII|dozen|large integer +12-tone music|1 +(noun)|twelve-tone music|twelve-tone system|12-tone system|serialism|serial music +12-tone system|1 +(noun)|twelve-tone music|12-tone music|twelve-tone system|serialism|serial music +120|2 +(adj)|one hundred twenty|cxx|cardinal +(noun)|long hundred|great hundred|large integer +120th|1 +(adj)|hundred-and-twentieth|ordinal +125|1 +(adj)|one hundred twenty-five|cxxv|cardinal +125th|1 +(adj)|hundred-and-twenty-fifth|ordinal +12th|1 +(adj)|twelfth|ordinal +13|2 +(adj)|thirteen|xiii|cardinal +(noun)|thirteen|XIII|baker's dozen|long dozen|large integer +130|1 +(adj)|one hundred thirty|cxxx|cardinal +130th|1 +(adj)|hundred-and-thirtieth|ordinal +135|1 +(adj)|one hundred thirty-five|cxxxv|cardinal +135th|1 +(adj)|hundred-and-thirty-fifth|ordinal +13th|1 +(adj)|thirteenth|ordinal +14|2 +(adj)|fourteen|xiv|cardinal +(noun)|fourteen|XIV|large integer +140|1 +(adj)|one hundred forty|cxl|cardinal +140th|1 +(adj)|hundred-and-fortieth|ordinal +144|1 +(noun)|gross|large integer +145|1 +(adj)|one hundred forty-five|cxlv|cardinal +145th|1 +(adj)|hundred-and-forty-fifth|ordinal +14 july|1 +(noun)|Bastille Day|14 July|legal holiday|national holiday +14th|1 +(adj)|fourteenth|ordinal +15|2 +(adj)|fifteen|xv|cardinal +(noun)|fifteen|XV|large integer +150|1 +(adj)|one hundred fifty|cl|cardinal +150th|1 +(adj)|hundred-and-fiftieth|ordinal +1530s|1 +(noun)|decade|decennary|decennium +155|1 +(adj)|one hundred fifty-five|clv|cardinal +155th|1 +(adj)|hundred-and-fifty-fifth|ordinal +15 august 1945|1 +(noun)|V-J Day|15 August 1945|V-day|Victory Day +15 may organization|1 +(noun)|15 May Organization|terrorist organization|terrorist group|foreign terrorist organization|FTO +15 minutes|1 +(noun)|quarter-hour|time unit|unit of time +15th|1 +(adj)|fifteenth|ordinal +16|2 +(adj)|sixteen|xvi|cardinal +(noun)|sixteen|XVI|large integer +160|1 +(adj)|one hundred sixty|clx|cardinal +160th|1 +(adj)|hundred-and-sixtieth|ordinal +165|1 +(adj)|one hundred sixty-five|clxv|cardinal +165th|1 +(adj)|hundred-and-sixty-fifth|ordinal +16 pf|1 +(noun)|Sixteen Personality Factor Questionnaire|16 PF|self-report personality inventory|self-report inventory +16th|1 +(adj)|sixteenth|ordinal +17|2 +(adj)|seventeen|xvii|cardinal +(noun)|seventeen|XVII|large integer +170|1 +(adj)|one hundred seventy|clxx|cardinal +170th|1 +(adj)|hundred-and-seventieth|ordinal +1728|1 +(noun)|great gross|large integer +175|1 +(adj)|one hundred seventy-five|clxxv|cardinal +1750s|1 +(noun)|decade|decennary|decennium +175th|1 +(adj)|hundred-and-seventy-fifth|ordinal +1760s|1 +(noun)|decade|decennary|decennium +1770s|1 +(noun)|decade|decennary|decennium +1780s|1 +(noun)|decade|decennary|decennium +1790s|1 +(noun)|decade|decennary|decennium +17 november|1 +(noun)|Revolutionary Organization 17 November|17 November|terrorist organization|terrorist group|foreign terrorist organization|FTO +17th|1 +(adj)|seventeenth|ordinal +18|2 +(adj)|eighteen|xviii|cardinal +(noun)|eighteen|XVIII|large integer +180|1 +(adj)|one hundred eighty|clxxx|cardinal +180th|1 +(adj)|hundred-and-eightieth|ordinal +1820s|1 +(noun)|decade|decennary|decennium +1830s|1 +(noun)|decade|decennary|decennium +1840s|1 +(noun)|decade|decennary|decennium +1850s|1 +(noun)|decade|decennary|decennium +1860s|1 +(noun)|decade|decennary|decennium +1870s|1 +(noun)|decade|decennary|decennium +1880s|1 +(noun)|eighties|decade|decennary|decennium +1890s|1 +(noun)|nineties|decade|decennary|decennium +18th|1 +(adj)|eighteenth|ordinal +19|2 +(adj)|nineteen|xix|cardinal +(noun)|nineteen|XIX|large integer +190|1 +(adj)|one hundred ninety|xcl|cardinal +1900s|1 +(noun)|decade|decennary|decennium +190th|1 +(adj)|hundred-and-ninetieth|ordinal +1920s|1 +(noun)|twenties|decade|decennary|decennium +1930s|1 +(noun)|thirties|decade|decennary|decennium +1940s|1 +(noun)|forties|decade|decennary|decennium +1950s|1 +(noun)|fifties|decade|decennary|decennium +1960s|1 +(noun)|sixties|decade|decennary|decennium +1970s|1 +(noun)|seventies|decade|decennary|decennium +1980s|1 +(noun)|eighties|decade|decennary|decennium +1990s|1 +(noun)|nineties|decade|decennary|decennium +19th|1 +(adj)|nineteenth|ordinal +1 chronicles|1 +(noun)|I Chronicles|1 Chronicles|book +1 esdras|1 +(noun)|I Esdra|1 Esdras|book +1 kings|1 +(noun)|I Kings|1 Kings|book +1 maccabees|1 +(noun)|I Maccabees|1 Maccabees|book +1 samuel|1 +(noun)|I Samuel|1 Samuel|book +1st|1 +(adj)|first|ordinal +1st-class mail|1 +(noun)|first class|1st class|first-class mail|priority mail|mail +1st baron beaverbrook|1 +(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher|newspaper publisher|politician|politico|pol|political leader +1st baron verulam|1 +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +1st class|1 +(noun)|first class|first-class mail|1st-class mail|priority mail|mail +1st earl attlee|1 +(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman|solon|national leader +1st earl baldwin of bewdley|1 +(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman|solon|national leader +1st earl of balfour|1 +(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman|solon|national leader +1st viscount montgomery of alamein|1 +(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general|full general +2|2 +(adj)|two|ii|cardinal +(noun)|two|II|deuce|digit|figure +2-hitter|1 +(noun)|two-hitter|baseball|baseball game|ball +2-hydroxybenzoic acid|1 +(noun)|salicylic acid|hydroxy acid +2-methylpropenoic acid|1 +(noun)|methacrylic acid|acid +2.718282...|1 +(noun)|e|irrational number +20|2 +(adj)|twenty|xx|cardinal +(noun)|twenty|XX|large integer +200|1 +(adj)|two hundred|cc|cardinal +200th|1 +(adj)|two-hundredth|ordinal +20th|1 +(adj)|twentieth|ordinal +21|2 +(adj)|twenty-one|xxi|cardinal +(noun)|twenty-one|XXI|large integer +21st|1 +(adj)|twenty-first|ordinal +22|2 +(adj)|twenty-two|xxii|cardinal +(noun)|twenty-two|XXII|large integer +22nd|1 +(adj)|twenty-second|ordinal +23|2 +(adj)|twenty-three|xxiii|cardinal +(noun)|twenty-three|XXIII|large integer +23rd|1 +(adj)|twenty-third|ordinal +24|2 +(adj)|twenty-four|xxiv|cardinal +(noun)|twenty-four|XXIV|two dozen|large integer +24/7|1 +(noun)|uptime +24th|1 +(adj)|twenty-fourth|ordinal +25|2 +(adj)|twenty-five|xxv|cardinal +(noun)|twenty-five|XXV|large integer +25th|1 +(adj)|twenty-fifth|ordinal +26|2 +(adj)|twenty-six|xxvi|cardinal +(noun)|twenty-six|XXVI|large integer +26th|1 +(adj)|twenty-sixth|ordinal +27|2 +(adj)|twenty-seven|xxvii|cardinal +(noun)|twenty-seven|XXVII|large integer +27th|1 +(adj)|twenty-seventh|ordinal +28|2 +(adj)|twenty-eight|xxviii|cardinal +(noun)|twenty-eight|XXVIII|large integer +28th|1 +(adj)|twenty-eighth|ordinal +29|2 +(adj)|twenty-nine|xxix|cardinal +(noun)|twenty-nine|XXIX|large integer +29th|1 +(adj)|twenty-ninth|ordinal +2 chronicles|1 +(noun)|II Chronicles|2 Chronicles|book +2 esdras|1 +(noun)|II Esdras|2 Esdras|book +2 kings|1 +(noun)|II Kings|2 Kings|book +2 maccabees|1 +(noun)|II Maccabees|2 Maccabees|book +2 samuel|1 +(noun)|II Samuel|2 Samuel|book +2d|1 +(adj)|second|2nd|ordinal +2nd|1 +(adj)|second|2d|ordinal +3|2 +(adj)|three|iii|cardinal +(noun)|three|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +3-d|3 +(noun)|three-D|3-D|3D|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +(noun)|three-D|3-D|3D|appearance +(noun)| +3-hitter|1 +(noun)|three-hitter|baseball|baseball game|ball +3-membered|1 +(adj)|three-membered|membered +3.14159265358979323846...|1 +(noun)|pi|irrational number +30|2 +(adj)|thirty|xxx|cardinal +(noun)|thirty|XXX|large integer +300|1 +(adj)|three hundred|ccc|cardinal +300th|1 +(adj)|three-hundredth|ordinal +30 minutes|1 +(noun)|half-hour|time unit|unit of time +30th|1 +(adj)|thirtieth|ordinal +31|1 +(adj)|thirty-one|xxxi|cardinal +31st|1 +(adj)|thirty-first|ordinal +32|1 +(adj)|thirty-two|xxxii|cardinal +32nd|1 +(adj)|thirty-second|ordinal +33|1 +(adj)|thirty-three|xxxiii|cardinal +33rd|1 +(adj)|thirty-third|ordinal +34|1 +(adj)|thirty-four|xxxiv|cardinal +34th|1 +(adj)|thirty-fourth|ordinal +35|1 +(adj)|thirty-five|xxxv|cardinal +35th|1 +(adj)|thirty-fifth|ordinal +36|1 +(adj)|thirty-six|xxxvi|cardinal +365 days|1 +(noun)|common year|year|twelvemonth|yr +366 days|1 +(noun)|leap year|intercalary year|bissextile year|year|twelvemonth|yr +36th|1 +(adj)|thirty-sixth|ordinal +37|1 +(adj)|thirty-seven|xxxvii|cardinal +37th|1 +(adj)|thirty-seventh|ordinal +38|1 +(adj)|thirty-eight|xxxviii|cardinal +38th|1 +(adj)|thirty-eighth|ordinal +39|1 +(adj)|thirty-nine|ixl|cardinal +39th|1 +(adj)|thirty-ninth|ordinal +3d|2 +(noun)|three-D|3-D|3D|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +(noun)|three-D|3-D|3D|appearance +3d radar|1 +(noun)|three-dimensional radar|radar|microwave radar|radio detection and ranging|radiolocation +3rd|1 +(adj)|third|tertiary|ordinal +3rd october organization|1 +(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization|terrorist group|foreign terrorist organization|FTO +3tc|1 +(noun)|lamivudine|3TC|nucleoside reverse transcriptase inhibitor|NRTI +4|2 +(adj)|four|iv|cardinal +(noun)|four|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +4-hitter|1 +(noun)|four-hitter|baseball|baseball game|ball +4-membered|1 +(adj)|four-membered|membered +40|2 +(adj)|forty|xl|twoscore|cardinal +(noun)|forty|XL|large integer +400|1 +(adj)|four hundred|cd|cardinal +400th|1 +(adj)|four-hundredth|ordinal +401-k|1 +(noun)|401-k plan|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program +401-k plan|1 +(noun)|401-k|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program +40th|1 +(adj)|fortieth|ordinal +41|1 +(adj)|forty-one|xli|cardinal +41st|1 +(adj)|forty-first|ordinal +42|1 +(adj)|forty-two|xlii|cardinal +42nd|1 +(adj)|forty-second|ordinal +43|1 +(adj)|forty-three|xliii|cardinal +43rd|1 +(adj)|forty-third|ordinal +44|1 +(adj)|forty-four|xliv|cardinal +440 yards|1 +(noun)|quarter mile|linear unit +44th|1 +(adj)|forty-fourth|ordinal +45|1 +(adj)|forty-five|xlv|cardinal +45th|1 +(adj)|forty-fifth|ordinal +46|1 +(adj)|forty-six|xlvi|cardinal +46th|1 +(adj)|forty-sixth|ordinal +47|1 +(adj)|forty-seven|xlvii|cardinal +47th|1 +(adj)|forty-seventh|ordinal +48|1 +(adj)|forty-eight|xlviii|cardinal +48th|1 +(adj)|forty-eighth|ordinal +49|1 +(adj)|forty-nine|il|cardinal +49th|1 +(adj)|forty-ninth|ordinal +4th|1 +(adj)|fourth|quaternary|ordinal +4to|1 +(noun)|quarto|size +4wd|2 +(noun)|four-wheel drive|4WD|motor vehicle|automotive vehicle +(noun)|four-wheel drive|4WD|transmission|transmission system +5|2 +(adj)|five|v|cardinal +(noun)|five|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +5-hitter|1 +(noun)|five-hitter|baseball|baseball game|ball +5-hydroxy-3-methylglutaryl-coenzyme a reductase|1 +(noun)|HMG-CoA reductase|5-hydroxy-3-methylglutaryl-coenzyme A reductase|reductase +5-hydroxytryptamine|1 +(noun)|serotonin|monoamine neurotransmitter +5-membered|1 +(adj)|five-membered|membered +50|2 +(adj)|fifty|l|cardinal +(noun)|fifty|L|large integer +500|2 +(adj)|five hundred|d|cardinal +(noun)|five hundred|D|large integer +500th|1 +(adj)|five-hundredth|ordinal +50th|1 +(adj)|fiftieth|ordinal +51|1 +(adj)|fifty-one|li|cardinal +52|1 +(adj)|fifty-two|lii|cardinal +53|1 +(adj)|fifty-three|liii|cardinal +54|1 +(adj)|fifty-four|liv|cardinal +55|1 +(adj)|fifty-five|lv|cardinal +55th|1 +(adj)|fifty-fifth|ordinal +56|1 +(adj)|fifty-six|lvi|cardinal +57|1 +(adj)|fifty-seven|lvii|cardinal +58|1 +(adj)|fifty-eight|lviii|cardinal +59|1 +(adj)|fifty-nine|ilx|cardinal +5th|1 +(adj)|fifth|ordinal +6|2 +(adj)|six|vi|half dozen|half a dozen|cardinal +(noun)|six|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +6-membered|1 +(adj)|six-membered|membered +60|2 +(adj)|sixty|lx|threescore|cardinal +(noun)|sixty|LX|large integer +60 minutes|1 +(noun)|hour|hr|time unit|unit of time +60th|1 +(adj)|sixtieth|ordinal +61|1 +(adj)|sixty-one|lxi|cardinal +62|1 +(adj)|sixty-two|lxii|cardinal +63|1 +(adj)|sixty-three|lxiii|cardinal +64|1 +(adj)|sixty-four|lxiv|cardinal +65|1 +(adj)|sixty-five|lxv|cardinal +65th|1 +(adj)|sixty-fifth|ordinal +66|1 +(adj)|sixty-six|lxvi|cardinal +67|1 +(adj)|sixty-seven|lxvii|cardinal +68|1 +(adj)|sixty-eight|lxviii|cardinal +69|1 +(adj)|sixty-nine|ilxx|cardinal +6 june 1944|1 +(noun)|D-day|6 June 1944|date|day of the month +6th|1 +(adj)|sixth|ordinal +7|2 +(adj)|seven|vii|cardinal +(noun)|seven|VII|sevener|heptad|septet|digit|figure +7-membered|1 +(adj)|seven-membered|membered +70|2 +(adj)|seventy|lxx|cardinal +(noun)|seventy|LXX|large integer +70th|1 +(adj)|seventieth|ordinal +71|1 +(adj)|seventy-one|lxxi|cardinal +72|1 +(adj)|seventy-two|lxxii|cardinal +73|1 +(adj)|seventy-three|lxxiii|cardinal +74|1 +(adj)|seventy-four|lxxiv|cardinal +75|1 +(adj)|seventy-five|lxxv|cardinal +75th|1 +(adj)|seventy-fifth|ordinal +76|1 +(adj)|seventy-six|lxxvi|cardinal +77|1 +(adj)|seventy-seven|lxxvii|cardinal +78|1 +(adj)|seventy-eight|lxxviii|cardinal +79|1 +(adj)|seventy-nine|ilxxx|cardinal +7th|1 +(adj)|seventh|ordinal +8|2 +(adj)|eight|viii|cardinal +(noun)|eight|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit|figure +8-membered|1 +(adj)|eight-membered|membered +80|2 +(adj)|eighty|lxxx|fourscore|cardinal +(noun)|eighty|LXXX|fourscore|large integer +80th|1 +(adj)|eightieth|ordinal +81|1 +(adj)|eighty-one|lxxxi|cardinal +82|1 +(adj)|eighty-two|lxxxii|cardinal +83|1 +(adj)|eighty-three|lxxxiii|cardinal +84|1 +(adj)|eighty-four|lxxxiv|cardinal +85|1 +(adj)|eighty-five|lxxxv|cardinal +85th|1 +(adj)|eighty-fifth|ordinal +86|1 +(adj)|eighty-six|lxxxvi|cardinal +87|1 +(adj)|eighty-seven|lxxxvii|cardinal +88|1 +(adj)|eighty-eight|lxxxviii|cardinal +880 yards|1 +(noun)|half mile|linear unit +89|1 +(adj)|eighty-nine|ixc|cardinal +8 may 1945|1 +(noun)|V-E Day|8 May 1945|V-day|Victory Day +8th|1 +(adj)|eighth|ordinal +8vo|1 +(noun)|octavo|eightvo|size +9|2 +(adj)|nine|ix|cardinal +(noun)|nine|IX|niner|Nina from Carolina|ennead|digit|figure +9-11|1 +(noun)|9/11|September 11|Sept. 11|Sep 11|terrorist attack +9-membered|1 +(adj)|nine-membered|membered +9/11|1 +(noun)|9-11|September 11|Sept. 11|Sep 11|terrorist attack +90|2 +(adj)|ninety|xc|cardinal +(noun)|ninety|XC|large integer +90th|1 +(adj)|ninetieth|ordinal +91|1 +(adj)|ninety-one|xci|cardinal +92|1 +(adj)|ninety-two|xcii|cardinal +93|1 +(adj)|ninety-three|xciii|cardinal +94|1 +(adj)|ninety-four|xciv|cardinal +95|1 +(adj)|ninety-five|xcv|cardinal +95th|1 +(adj)|ninety-fifth|ordinal +96|1 +(adj)|ninety-six|xcvi|cardinal +97|1 +(adj)|ninety-seven|xcvii|cardinal +98|1 +(adj)|ninety-eight|xcviii|cardinal +99|1 +(adj)|ninety-nine|ic|cardinal +9th|1 +(adj)|ninth|ordinal +a|7 +(noun)|A|type A|group A|blood group|blood type +(noun)|angstrom|angstrom unit|A|metric linear unit +(noun)|vitamin A|antiophthalmic factor|axerophthol|A|fat-soluble vitamin +(noun)|deoxyadenosine monophosphate|A|nucleotide +(noun)|adenine|A|purine +(noun)|ampere|amp|A|current unit +(noun)|A|letter|letter of the alphabet|alphabetic character +a'man|1 +(noun)|A'man|international intelligence agency +a-bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon|bomb +a-horizon|2 +(noun)|A-horizon|A horizon|soil horizon +(noun)| +a-list|1 +(noun)|A-list|list|listing +a-ok|1 +(adj)|a-okay|go +a-okay|1 +(adj)|a-ok|go +a-one|1 +(adj)|ace|A-one|crack|first-rate|super|tiptop|topnotch|tops|superior +a-team|1 +(noun)|A-team|team|squad +a. a. michelson|1 +(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist +a. a. milne|1 +(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer|author +a. conan doyle|1 +(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer|author +a. e. burnside|1 +(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general|full general +a. e. housman|1 +(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet +a. e. kennelly|1 +(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer +a. e. w. mason|1 +(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer|author +a. noam chomsky|1 +(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist|linguistic scientist +a. testudineus|1 +(noun)|climbing perch|Anabas testudineus|A. testudineus|fish +a.d.|2 +(adv)|AD|A.D.|anno Domini +(adv)| +a.e.|1 +(noun)|Russell|George William Russell|A.E.|writer|author +a.k.a.|1 +(adv)|alias|also known as +a.m.|2 +(adj)|ante meridiem|antemeridian +(adv)|ante meridiem|A.M. +a battery|1 +(noun)|A battery|battery|electric battery +a billion|2 +(adj)|billion|cardinal +(adj)|billion|cardinal +a bit|1 +(adv)|a little|a trifle +a bit much|1 +(adj)|de trop|too much|immoderate +a capella singing|1 +(noun)|a cappella singing|singing|vocalizing +a cappella singing|1 +(noun)|a capella singing|singing|vocalizing +a couple of|1 +(adj)|a few|few +a few|1 +(adj)|a couple of|few +a fortiori|1 +(adv)|with greater reason|with more reason +a good deal|1 +(adv)|a lot|a great deal|much|very much +a great deal|2 +(adv)|a lot|a good deal|much|very much +(adv)|much|often +a horizon|2 +(noun)|A-horizon|A horizon|soil horizon +(noun)| +a hundred|1 +(adj)|hundred|one hundred|100|c|cardinal +a hundred and one|1 +(adj)|hundred and one|one hundred one|101|ci|cardinal +a hundred thousand|1 +(adj)|hundred thousand|cardinal +a hundred times|1 +(adv)|hundredfold +a kempis|1 +(noun)|a Kempis|Thomas a Kempis|cleric|churchman|divine|ecclesiastic +a la carte|2 +(adj)|a la carte +(noun)|menu|bill of fare|card|carte du jour|carte +a la mode|1 +(adj)|in style|in vogue|modish|fashionable |stylish +a level|1 +(noun)|A level|grade|level|tier +a little|1 +(adv)|a bit|a trifle +a lot|1 +(adv)|a good deal|a great deal|much|very much +a million|1 +(adj)|million|cardinal +a million times|1 +(adv)|millionfold +a people|1 +(noun)|nation|land|country|people +a posteriori|2 +(adj)|a posteriori |inductive|synthetic|synthetical +(adj)|empirical |empiric +a priori|2 +(adj)|a priori |analytic|analytical|deductive +(adj)|theoretical |theoretic +a thousand|1 +(adj)|thousand|one thousand|1000|m|k|cardinal +a trifle|1 +(adv)|a bit|a little +a trillion|2 +(adj)|trillion|cardinal +(adj)|trillion|cardinal +a zillion|1 +(adj)|zillion|cardinal +aa|3 +(noun)|lava +(noun)|Alcoholics Anonymous|AA|nongovernmental organization|NGO +(noun)|Associate in Arts|AA|associate degree|associate +aaa|1 +(noun)|abdominal aortic aneurysm|AAA|aortic aneurysm +aachen|1 +(noun)|Aachen|Aken|Aix-la-Chapelle|city|metropolis|urban center +aaland islands|1 +(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago +aalborg|1 +(noun)|Aalborg|Alborg|city|metropolis|urban center|port +aalii|1 +(noun)|tree +aalost|1 +(noun)|Alost|Aalost|town +aalto|1 +(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect|designer +aar|1 +(noun)|Aare|Aar|Aare River|river +aardvark|1 +(noun)|ant bear|anteater|Orycteropus afer|placental|placental mammal|eutherian|eutherian mammal +aardwolf|1 +(noun)|Proteles cristata|hyena|hyaena +aare|1 +(noun)|Aare|Aar|Aare River|river +aare river|1 +(noun)|Aare|Aar|Aare River|river +aarhus|1 +(noun)|Arhus|Aarhus|city|metropolis|urban center|port +aaron|2 +(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer|baseball player +(noun)|Aaron|priest +aaron's rod|1 +(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +aaron burr|1 +(noun)|Burr|Aaron Burr|politician|politico|pol|political leader +aaron copland|1 +(noun)|Copland|Aaron Copland|composer +aarp|1 +(noun)|Association for the Advancement of Retired Persons|AARP|association +aas|4 +(noun)|Associate in Applied Science|AAS|associate degree|associate +(noun)|aa|lava +(noun)|Alcoholics Anonymous|AA|nongovernmental organization|NGO +(noun)|Associate in Arts|AA|associate degree|associate +ab|4 +(noun)|AB|type AB|group AB|blood group|blood type +(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree|baccalaureate +(noun)|Ab|Av|Jewish calendar month +(noun)|abdominal|abdominal muscle|skeletal muscle|striated muscle +ab initio|1 +(adv)|initially|at first|at the start +aba|2 +(noun)|overgarment|outer garment +(noun)|aba cloth|fabric|cloth|material|textile +aba cloth|1 +(noun)|aba|fabric|cloth|material|textile +aba transit number|1 +(noun)|bank identification number|BIN|ABA transit number|number|identification number +abaca|2 +(noun)|Manila hemp|Manilla hemp|hemp +(noun)|Manila hemp|Musa textilis|banana|banana tree +abactinal|1 +(adj)|abactinal +abacus|2 +(noun)|tablet +(noun)|calculator|calculating machine +abadan|1 +(noun)|Abadan|city|metropolis|urban center|port +abaft|1 +(adv)|aft|astern +abalone|1 +(noun)|ear-shell|gastropod|univalve +abamp|1 +(noun)|abampere|current unit +abampere|1 +(noun)|abamp|current unit +abandon|7 +(noun)|wantonness|unconstraint|unrestraint +(noun)|wildness|passion|passionateness +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|give up +(verb)|give up +(verb)|vacate|empty|leave|go forth|go away +(verb)|forsake|desolate|desert|leave +abandoned|3 +(adj)|uninhabited +(adj)|deserted|forsaken +(adj)|uninhibited +abandoned infant|1 +(noun)|foundling|baby|babe|infant +abandoned person|1 +(noun)|unfortunate|unfortunate person +abandoned ship|1 +(noun)|derelict|ship +abandonment|3 +(noun)|forsaking|desertion|rejection +(noun)|desertion|defection|withdrawal +(noun)|disposal|disposition +abarticulation|1 +(noun)|dislocation +abase|1 +(verb)|humiliate|mortify|chagrin|humble|hurt|wound|injure|bruise|offend|spite +abasement|2 +(noun)|degradation|abjection|humiliation +(noun)|humiliation|degradation|debasement +abash|1 +(verb)|embarrass|upset|discompose|untune|disconcert|discomfit +abashed|1 +(adj)|chagrined|embarrassed|discomposed +abashment|1 +(noun)|bashfulness|embarrassment +abasia|1 +(noun)|disability of walking +abasia trepidans|1 +(noun)|abasia +abasic|1 +(adj)|abatic|disability of walking +abatable|1 +(adj)|stoppable +abatable nuisance|1 +(noun)|nuisance +abate|2 +(verb)|slake|slack|decrease|lessen|minify +(verb)|let up|slack off|slack|die away|decrease|diminish|lessen|fall +abatement|2 +(noun)|suspension|respite|reprieve|hiatus|interruption|break +(noun)|moderation +abatement of a nuisance|1 +(noun)|nuisance abatement|abatement +abatic|1 +(adj)|abasic|disability of walking +abating|1 +(adj)|subsiding|decreasing +abatis|1 +(noun)|abattis|line of defense|line of defence +abattis|1 +(noun)|abatis|line of defense|line of defence +abattoir|1 +(noun)|butchery|shambles|slaughterhouse|building|edifice +abaxial|1 +(adj)|abaxial |dorsal +abaya|1 +(noun)|robe +abb|1 +(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization|terrorist group|foreign terrorist organization|FTO +abbacy|1 +(noun)|jurisdiction +abbatial|1 +(adj)|monastery +abbe|1 +(noun)|abbot|archimandrite +abbe condenser|1 +(noun)|Abbe condenser|condenser|optical condenser +abbess|1 +(noun)|mother superior|prioress|superior +abbey|3 +(noun)|church|church building +(noun)|convent +(noun)|monastery +abbot|1 +(noun)|archimandrite|superior +abbott lawrence lowell|1 +(noun)|Lowell|Abbott Lawrence Lowell|educator|pedagogue +abbreviate|2 +(verb)|reduce +(verb)|abridge|foreshorten|shorten|cut|contract|reduce|decrease|lessen|minify +abbreviated|2 +(adj)|brief|short +(adj)|shortened|truncated|short +abbreviation|2 +(noun)|form|word form|signifier|descriptor +(noun)|shortening +abbreviator|1 +(noun)|abridger|redact|redactor|reviser|rewriter|rewrite man +abc|1 +(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +abc's|1 +(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +abcoulomb|1 +(noun)|charge unit|quantity unit +abcs|2 +(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +abdias|2 +(noun)|Obadiah|Abdias|prophet +(noun)|Obadiah|Abdias|Book of Obadiah|book +abdicable|1 +(adj)|unwanted +abdicate|1 +(verb)|renounce|vacate|resign|renounce|give up +abdication|2 +(noun)|stepping down|resignation +(noun)|stepping down|resignation +abdicator|1 +(noun)|quitter +abdomen|2 +(noun)|venter|stomach|belly|body part +(noun)|abdominal cavity|cavity|bodily cavity|cavum +abdominal|2 +(adj)|body part +(noun)|abdominal muscle|ab|skeletal muscle|striated muscle +abdominal actinomycosis|1 +(noun)|actinomycosis +abdominal aorta|1 +(noun)|aorta +abdominal aortic aneurysm|1 +(noun)|AAA|aortic aneurysm +abdominal breathing|1 +(noun)|breathing|external respiration|respiration|ventilation +abdominal cavity|1 +(noun)|abdomen|cavity|bodily cavity|cavum +abdominal delivery|1 +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|delivery|obstetrical delivery +abdominal external oblique muscle|1 +(noun)|external oblique muscle|musculus obliquus externus abdominis|oblique|abdominal|abdominal muscle|ab +abdominal muscle|1 +(noun)|abdominal|ab|skeletal muscle|striated muscle +abdominal nerve plexus|1 +(noun)|solar plexus|coeliac plexus|plexus celiacus|nerve plexus +abdominal pregnancy|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis +abdominal wall|1 +(noun)|wall|paries +abdominocentesis|1 +(noun)|paracentesis|centesis +abdominoplasty|1 +(noun)|tummy tuck|plastic surgery|reconstructive surgery|anaplasty +abdominous|1 +(adj)|paunchy|potbellied|fat +abdominousness|1 +(noun)|paunchiness|fatness|fat|blubber|avoirdupois +abdominovesical|1 +(adj)|body part|bladder|vesica +abduce|1 +(verb)|adduce|cite|testify|bear witness|prove|evidence|show +abducens|1 +(noun)|abducent|abducent nerve|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve +abducens muscle|1 +(noun)|lateral rectus muscle|lateral rectus|rectus lateralis|ocular muscle|eye muscle +abducens nerve|1 +(noun)|abducent|abducent nerve|abducens|nervus abducens|sixth cranial nerve|cranial nerve +abducent|2 +(adj)|abducent |abducting +(noun)|abducent nerve|abducens|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve +abducent nerve|1 +(noun)|abducent|abducens|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve +abduct|2 +(verb)|kidnap|nobble|snatch|seize +(verb)|pull|draw|force +abducted|1 +(adj)|kidnapped|kidnaped|seize +abducting|1 +(adj)|abducent +abduction|2 +(noun)|capture|seizure +(noun)|motion|movement|move|motility +abductor|2 +(noun)|kidnapper|snatcher|criminal|felon|crook|outlaw|malefactor|captor|capturer +(noun)|abductor muscle|skeletal muscle|striated muscle +abductor muscle|1 +(noun)|abductor|skeletal muscle|striated muscle +abecedarian|3 +(adj)|alphabetic |alphabetical +(noun)|novice|beginner|tyro|tiro|initiate +(noun)|Abecedarian|sect|religious sect|religious order +abecedarius|1 +(noun)|poem|verse form +abel|2 +(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician +(noun)|Abel|man|adult male +abel janszoon tasman|1 +(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator +abel tasman|1 +(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator +abelard|1 +(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher|theologian|theologist|theologizer|theologiser +abele|1 +(noun)|white poplar|white aspen|aspen poplar|silver-leaved poplar|Populus alba|poplar|poplar tree +abelia|1 +(noun)|shrub|bush +abelian group|1 +(noun)|Abelian group|commutative group|group|mathematical group +abelmoschus|1 +(noun)|Abelmoschus|genus Abelmoschus|dilleniid dicot genus +abelmoschus esculentus|1 +(noun)|okra|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +abelmoschus moschatus|1 +(noun)|abelmosk|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow +abelmosk|1 +(noun)|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow +aberdare|1 +(noun)|Aberdare|town +aberdeen|4 +(noun)|Aberdeen|town|port of entry|point of entry +(noun)|Aberdeen|town +(noun)|Aberdeen|town +(noun)|Aberdeen|city|metropolis|urban center +aberdeen angus|1 +(noun)|Aberdeen Angus|Angus|black Angus|beef|beef cattle +aberdonian|1 +(adj)|Aberdonian|city|metropolis|urban center +aberrance|1 +(noun)|aberrancy|aberration|deviance|abnormality|abnormalcy|abnormal condition +aberrancy|1 +(noun)|aberrance|aberration|deviance|abnormality|abnormalcy|abnormal condition +aberrant|2 +(adj)|deviant|abnormal +(noun)|anomaly|unusual person +aberrate|2 +(verb)|deviate|vary|diverge|depart +(verb)|deviate|vary|diverge|depart +aberration|3 +(noun)|aberrance|aberrancy|deviance|abnormality|abnormalcy|abnormal condition +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +(noun)|distortion|optical aberration|optical phenomenon +abet|1 +(verb)|assist +abetalipoproteinemia|1 +(noun)|hypobetalipoproteinemia|lipidosis|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +abetment|1 +(noun)|instigation|encouragement +abetter|1 +(noun)|abettor|accessory|accessary +abettor|1 +(noun)|abetter|accessory|accessary +abeyance|1 +(noun)|suspension|inaction|inactivity|inactiveness +abeyant|1 +(adj)|inactive|in abeyance|suspended|delayed +abfarad|1 +(noun)|capacitance unit +abhenry|1 +(noun)|inductance unit +abhor|1 +(verb)|loathe|abominate|execrate|hate|detest +abhorrence|1 +(noun)|abomination|detestation|execration|loathing|odium|hate|hatred|disgust +abhorrent|1 +(adj)|detestable|obscene|repugnant|repulsive|offensive +abhorrer|1 +(noun)|signer|signatory +abidance|3 +(noun)|conformity|conformation|compliance|cooperation +(noun)|residency|residence|act|human action|human activity +(noun)|continuance|continuation +abide|2 +(verb)|bide|stay|stay|stay on|continue|remain +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|suffer|put up|permit|allow|let|countenance +abide by|2 +(verb)|comply|follow|obey +(verb)|respect|honor|honour|observe|accept +abiding|1 +(adj)|enduring|imperishable|permanent |lasting +abidjan|1 +(noun)|Abidjan|city|metropolis|urban center +abience|1 +(noun)|urge|impulse +abient|1 +(adj)|abient |urge|impulse +abies|1 +(noun)|Abies|genus Abies|gymnosperm genus +abies alba|1 +(noun)|European silver fir|Christmas tree|Abies alba|silver fir +abies amabilis|1 +(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir +abies balsamea|1 +(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir +abies bracteata|1 +(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir|fir tree|true fir +abies concolor|1 +(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir +abies fraseri|1 +(noun)|Fraser fir|Abies fraseri|silver fir +abies grandis|1 +(noun)|lowland fir|lowland white fir|giant fir|grand fir|Abies grandis|silver fir +abies lasiocarpa|1 +(noun)|Alpine fir|subalpine fir|Abies lasiocarpa|silver fir +abies lowiana|1 +(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir +abies venusta|1 +(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir|fir tree|true fir +abila|1 +(noun)|Jebel Musa|Abila|Abyla|promontory|headland|foreland +abilene|2 +(noun)|Abilene|city|metropolis|urban center +(noun)|Abilene|town +ability|2 +(noun)|quality +(noun)|power|cognition|knowledge|noesis +abiogenesis|1 +(noun)|autogenesis|autogeny|spontaneous generation|organic phenomenon +abiogenetic|1 +(adj)|organic phenomenon +abiogenist|1 +(noun)|believer|truster +abiotrophy|1 +(noun)|degeneration|retrogression +abject|4 +(adj)|low|low-down|miserable|scummy|scurvy|contemptible +(adj)|unfortunate +(adj)|resigned|unhopeful|hopeless +(adj)|submissive +abjection|1 +(noun)|abasement|degradation|humiliation +abjectly|1 +(adv)|resignedly +abjuration|1 +(noun)|retraction|recantation|disavowal|disclaimer +abjure|1 +(verb)|recant|forswear|retract|resile|renounce|repudiate +abkhas|1 +(noun)|Abkhaz|Abkhas|Circassian +abkhasian|1 +(noun)|Abkhazian|Abkhasian|Circassian +abkhaz|2 +(noun)|Abkhaz|Abkhas|Circassian +(noun)|Abkhaz|Abkhazia|state|province +abkhazia|1 +(noun)|Abkhaz|Abkhazia|state|province +abkhazian|1 +(noun)|Abkhazian|Abkhasian|Circassian +ablactate|1 +(verb)|wean|deprive +ablactation|2 +(noun)|bodily process|body process|bodily function|activity +(noun)|weaning|substitution|exchange|commutation +ablate|2 +(verb)|wear|wear off|wear out|wear thin +(verb)|remove|take|take away|withdraw +ablated|2 +(adj)|decreased |reduced +(adj)|subtracted +ablation|2 +(noun)|extirpation|cutting out|excision|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|erosion|eroding|eating away|wearing|wearing away +ablative|3 +(adj)|oblique|oblique case +(adj)|subtractive +(noun)|ablative case|oblique|oblique case +ablative absolute|1 +(noun)|constituent|grammatical constituent +ablative case|1 +(noun)|ablative|oblique|oblique case +ablaut|1 +(noun)|vowel|vowel sound +ablaze|4 +(adj)|aflame|aroused|turned on|passionate +(adj)|afire|aflame|aflare|alight|blazing|burning|flaming|on fire|lighted |lit +(adj)|flaming|colorful |colourful +(adj)|inflamed|reddened|light +able|4 +(adj)|able +(adj)|capable|competent +(adj)|capable +(adj)|able-bodied|fit |healthy +able-bodied|1 +(adj)|able|fit |healthy +able-bodied seaman|1 +(noun)|able seaman|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +able-bodiedism|1 +(noun)|ableism|ablism|able-bodism|discrimination|favoritism|favouritism +able-bodism|1 +(noun)|ableism|ablism|able-bodiedism|discrimination|favoritism|favouritism +able seaman|1 +(noun)|able-bodied seaman|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +ableism|1 +(noun)|ablism|able-bodiedism|able-bodism|discrimination|favoritism|favouritism +ablepharia|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +ablism|1 +(noun)|ableism|able-bodiedism|able-bodism|discrimination|favoritism|favouritism +abloom|1 +(adj)|efflorescent|flowering|mature +abls|1 +(noun)|Bachelor of Arts in Library Science|ABLS|bachelor's degree|baccalaureate +ablution|1 +(noun)|ritual|wash|washing|lavation +ablutionary|1 +(adj)|cleansing|purifying +ably|1 +(adv)|competently|aptly|capably|with competence +abm|1 +(noun)|antiballistic missile|ABM|guided missile +abnaki|2 +(noun)|Abnaki|Algonquian|Algonquin +(noun)|Abnaki|Algonquian|Algonquin|Algonquian language +abnegate|3 +(verb)|deny|control|hold in|hold|contain|check|curb|moderate +(verb)|surrender|relinquish +(verb)|deny +abnegation|2 +(noun)|denial +(noun)|self-abnegation|denial|self-denial|self-renunciation|selflessness|self-sacrifice|renunciation|forgoing|forswearing +abnegator|1 +(noun)|donor|giver|presenter +abney level|1 +(noun)|Abney level|surveyor's level +abnormal|3 +(adj)|abnormal |aberrant|deviant|anomalous|antidromic|atypical|irregular|brachydactylic|brachydactylous|defective|freakish|kinky|perverted|subnormal|supernormal|vicarious|insane +(adj)|abnormal |exceptional +(adj)|immoderate +abnormal condition|1 +(noun)|abnormality|abnormalcy|condition|status +abnormal psychology|1 +(noun)|psychopathology|psychology|psychological science +abnormalcy|1 +(noun)|abnormality|abnormal condition|condition|status +abnormality|4 +(noun)|abnormalcy|abnormal condition|condition|status +(noun)|mental defectiveness|retardation|mental retardation|backwardness|slowness|subnormality +(noun)|freakishness|unfamiliarity|strangeness +(noun)|irregularity|misbehavior|misbehaviour|misdeed +abo|1 +(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian|Aussie|ethnic group|ethnos +abo antibodies|1 +(noun)|ABO antibodies|antibody +abo blood group system|1 +(noun)|ABO blood group system|ABO system|ABO group|classification system +abo group|1 +(noun)|ABO blood group system|ABO system|ABO group|classification system +abo system|1 +(noun)|ABO blood group system|ABO system|ABO group|classification system +aboard|3 +(adv)|onboard +(adv)|on base +(adv)|alongside +abocclusion|1 +(noun)|disorder|upset +abode|2 +(noun)|residence|address +(noun)|dwelling|home|domicile|habitation|dwelling house|housing|lodging|living accommodations +abohm|1 +(noun)|resistance unit +abolish|1 +(verb)|get rid of +abolishable|1 +(adj)|destructible +abolishment|1 +(noun)|abolition|termination|ending|conclusion +abolition|1 +(noun)|abolishment|termination|ending|conclusion +abolitionary|1 +(adj)|termination|ending|conclusion +abolitionism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +abolitionist|1 +(noun)|emancipationist|reformer|reformist|crusader|meliorist +abomasal|1 +(adj)|stomach|tummy|tum|breadbasket +abomasum|1 +(noun)|fourth stomach|stomach|tummy|tum|breadbasket +abominable|2 +(adj)|detestable|execrable|odious|hateful +(adj)|atrocious|awful|dreadful|painful|terrible|unspeakable|bad +abominable snowman|1 +(noun)|yeti|legendary creature +abominably|2 +(adv)|detestably|repulsively|odiously +(adv)|terribly|atrociously|awfully|abysmally|rottenly +abominate|1 +(verb)|abhor|loathe|execrate|hate|detest +abomination|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|abhorrence|detestation|execration|loathing|odium|hate|hatred|disgust +(noun)|transgression|evildoing +abominator|1 +(noun)|loather|hater +abor|1 +(noun)|Miri|Mirish|Abor|Dafla|Kamarupan +aboral|1 +(adj)|aboral +aboriginal|3 +(adj)|native +(adj)|primal|primeval|primaeval|primordial|early +(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian|Aussie|ethnic group|ethnos +aboriginal australian|1 +(noun)|Australian|Aboriginal Australian|Austronesian|Austronesian language +aborigine|2 +(noun)|primitive|primitive person +(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian|Aussie|ethnic group|ethnos +aborning|1 +(adj)|aborning |emergent|emerging|nascent|parturient|in labor +abort|2 +(verb)|end|terminate +(verb)|discharge|expel|eject|release +aborticide|2 +(noun)|abortifacient|abortion-inducing drug|drug +(noun)|feticide|induced abortion +abortifacient|2 +(adj)|causative +(noun)|aborticide|abortion-inducing drug|drug +abortion|2 +(noun)|termination|ending|conclusion +(noun)|miscarriage|failure +abortion-inducing drug|1 +(noun)|abortifacient|aborticide|drug +abortion pill|1 +(noun)|RU 486|Mifepristone|abortifacient|aborticide|abortion-inducing drug +abortionist|1 +(noun)|doctor|doc|physician|MD|Dr.|medico +abortive|1 +(adj)|stillborn|unsuccessful|unfruitful +abortus|1 +(noun)|fetus|foetus +aboulia|1 +(noun)|abulia|psychological state|mental state +aboulic|1 +(adj)|abulic|neurotic |psychoneurotic +abound|2 +(verb)|be|abound in +(verb)|burst|bristle|have|feature +abound in|1 +(verb)|teem in|pullulate with|occur +abounding|1 +(adj)|galore|abundant +about|7 +(adj)|astir|active +(adv)|approximately|close to|just about|some|roughly|more or less|around|or so +(adv)|around +(adv)|around +(adv)|around +(adv)|around +(adv)|just about|almost|most|all but|nearly|near|nigh|virtually|well-nigh +about-face|4 +(noun)|about turn|reversion|reverse|reversal|turnabout|turnaround +(noun)|volte-face|reversal|policy change|change +(verb)|turn +(verb)|rethink +about turn|1 +(noun)|about-face|reversion|reverse|reversal|turnabout|turnaround +above|3 +(adj)|preceding +(adv)|supra +(adv)|higher up|in a higher place|to a higher place +above-mentioned|1 +(adj)|above-named|preceding +above-named|1 +(adj)|above-mentioned|preceding +above all|2 +(adv)|most importantly|most especially +(adv)|first and last +aboveboard|2 +(adj)|straightforward|straight +(adv)|honestly +aboveground|1 +(adj)|surface +abracadabra|1 +(noun)|gibberish|gibber +abrachia|1 +(noun)|abnormality|abnormalcy|abnormal condition +abradant|2 +(noun)|abrasive|abrasive material|material|stuff +(noun)|abrader|tool +abrade|3 +(verb)|corrade|abrase|rub down|rub off|wear away|wear off +(verb)|scour|rub +(verb)|stub|scrape|skin|injure|wound +abraded|1 +(adj)|scraped|skinned|injured +abrader|1 +(noun)|abradant|tool +abrading stone|1 +(noun)|abrader|abradant +abraham|1 +(noun)|Abraham|Ibrahim|patriarch +abraham's bosom|1 +(noun)|Abraham's bosom|bosom of Abraham|Heaven +abraham lincoln|1 +(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer|attorney|President of the United States|United States President|President|Chief Executive +abraham stoker|1 +(noun)|Stoker|Bram Stoker|Abraham Stoker|writer|author +abramis|1 +(noun)|Abramis|genus Abramis|fish genus +abramis brama|1 +(noun)|European bream|Abramis brama|freshwater bream|bream +abranchial|1 +(adj)|abranchiate |abranchious|gill-less +abranchiate|1 +(adj)|abranchiate |abranchial|abranchious|gill-less +abranchious|1 +(adj)|abranchiate |abranchial|gill-less +abrase|1 +(verb)|abrade|corrade|rub down|rub off|wear away|wear off +abrasion|3 +(noun)|scratch|scrape|excoriation|wound|lesion +(noun)|attrition|corrasion|detrition|erosion|eroding|eating away|wearing|wearing away +(noun)|grinding|attrition|detrition|friction|rubbing +abrasive|3 +(adj)|scratchy|rough |unsmooth +(adj)|harsh|disagreeable +(noun)|abradant|abrasive material|material|stuff +abrasive material|1 +(noun)|abrasive|abradant|material|stuff +abrasiveness|2 +(noun)|harshness|scratchiness|roughness +(noun)|disagreeableness +abreact|1 +(verb)|still|allay|relieve|ease +abreaction|1 +(noun)|catharsis|katharsis|purge|purging +abreast of|1 +(adj)|au courant|au fait|up on|informed +abridge|1 +(verb)|foreshorten|abbreviate|shorten|cut|contract|reduce|decrease|lessen|minify +abridged|1 +(adj)|abridged |cut|shortened|half-length|potted|short +abridgement|1 +(noun)|condensation|abridgment|capsule|summary +abridger|1 +(noun)|abbreviator|redact|redactor|reviser|rewriter|rewrite man +abridgment|1 +(noun)|condensation|abridgement|capsule|summary +abroach|1 +(adj)|broached|tapped +abroad|3 +(adj)|overseas|foreign +(adv)|afield +(adv)|overseas|beyond the sea|over the sea +abrocoma|1 +(noun)|Abrocoma|genus Abrocoma|mammal genus +abrocome|1 +(noun)|chinchilla rat|rat chinchilla|rodent|gnawer|gnawing animal +abrogate|1 +(verb)|abolish|get rid of +abrogation|1 +(noun)|repeal|annulment|cancellation +abrogator|1 +(noun)|authority +abronia|1 +(noun)|Abronia|genus Abronia|caryophylloid dicot genus +abronia elliptica|1 +(noun)|snowball|sweet sand verbena|Abronia elliptica|sand verbena +abronia fragrans|1 +(noun)|sweet sand verbena|Abronia fragrans|sand verbena +abronia latifolia|1 +(noun)|yellow sand verbena|Abronia latifolia|sand verbena +abronia maritima|1 +(noun)|beach pancake|Abronia maritima|sand verbena +abronia umbellata|1 +(noun)|beach sand verbena|pink sand verbena|Abronia umbellata|sand verbena +abronia villosa|1 +(noun)|desert sand verbena|Abronia villosa|sand verbena +abrupt|4 +(adj)|disconnected|staccato |disconnected +(adj)|sudden +(adj)|precipitous|sharp|steep +(adj)|discourteous +abruptio placentae|1 +(noun)|disorder|upset +abruption|1 +(noun)|breaking off|break|interruption|disruption|gap +abruptly|1 +(adv)|suddenly|short|dead +abruptly-pinnate|1 +(adj)|even-pinnate|paripinnate|compound +abruptly-pinnate leaf|1 +(noun)|even-pinnate leaf|pinnate leaf +abruptness|3 +(noun)|brusqueness|curtness|gruffness|shortness|discourtesy|rudeness +(noun)|precipitousness|steepness|gradient|slope +(noun)|precipitateness|precipitance|precipitancy|suddenness|haste|hastiness|hurry|hurriedness|precipitation +abruzzi|1 +(noun)|Abruzzi|Abruzzi e Molise|Italian region +abruzzi e molise|1 +(noun)|Abruzzi|Abruzzi e Molise|Italian region +abs plastic|1 +(noun)|ABS plastic|plastic +abscess|1 +(noun)|symptom +abscessed|1 +(adj)|septic +abscessed tooth|1 +(noun)|abscess +abscise|2 +(verb)|shed|cast|cast off|shake off|throw|throw off|throw away|drop +(verb)|cut off|chop off|lop off +abscissa|1 +(noun)|cartesian coordinate +abscission|2 +(noun)|shedding|sloughing +(noun)|cutting off|removal|remotion +abscond|1 +(verb)|bolt|absquatulate|decamp|run off|go off|flee|fly|take flight +absconder|1 +(noun)|fugitive|fugitive from justice +abscondment|1 +(noun)|decampment|desertion|abandonment|defection +abseil|2 +(noun)|descent +(verb)|rappel|rope down|descend|fall|go down|come down +abseiler|1 +(noun)|descender +absence|4 +(noun)|lack|deficiency|want +(noun)|nonattendance +(noun)|time interval|interval +(noun)|petit mal epilepsy|epilepsy +absence without leave|1 +(noun)|unauthorized absence|desertion|abandonment|defection +absent|3 +(adj)|absent |away|gone|departed|introuvable|lacking|missing|nonexistent|wanting|truant|awol|devoid +(adj)|absentminded|abstracted|scatty|inattentive +(verb)|remove|disappear|vanish|go away +absentee|1 +(noun)|traveler|traveller +absentee ballot|1 +(noun)|ballot +absentee rate|1 +(noun)|percentage|percent|per centum|pct +absenteeism|1 +(noun)|absence +absently|1 +(adv)|abstractedly|inattentively|absentmindedly +absentminded|1 +(adj)|absent|abstracted|scatty|inattentive +absentmindedly|1 +(adv)|absently|abstractedly|inattentively +absentmindedness|1 +(noun)|preoccupation|preoccupancy|absorption|engrossment +absinth|1 +(noun)|absinthe|liqueur|cordial +absinthe|2 +(noun)|common wormwood|old man|lad's love|Artemisia absinthium|wormwood +(noun)|absinth|liqueur|cordial +absinthe oil|1 +(noun)|wormwood oil|essential oil|volatile oil +absolute|7 +(adj)|absolute |implicit|unquestioning|independent|infinite|pure|unmixed|undiluted|syntactically independent|very|dead|utter|direct|living +(adj)|downright|out-and-out|rank|right-down|sheer|complete +(adj)|arbitrary +(adj)|conclusive|unequivocal |univocal|unambiguous +(adj)|total|unconditioned|unconditional +(adj)|infrangible|inviolable|inalienable |unalienable +(noun)|abstraction|abstract +absolute alcohol|1 +(noun)|ethyl alcohol|ethanol|fermentation alcohol|grain alcohol +absolute ceiling|1 +(noun)|ceiling +absolute frequency|1 +(noun)|frequency|cardinal number|cardinal +absolute magnitude|1 +(noun)|magnitude +absolute majority|1 +(noun)|majority|relative quantity +absolute scale|1 +(noun)|Kelvin scale|temperature scale +absolute space|1 +(noun)|space +absolute temperature|1 +(noun)|temperature +absolute threshold|1 +(noun)|threshold|limen +absolute value|1 +(noun)|definite quantity +absolute viscosity|1 +(noun)|coefficient of viscosity|dynamic viscosity|coefficient +absolute zero|1 +(noun)|temperature +absolutely|1 +(adv)|perfectly|utterly|dead +absoluteness|1 +(noun)|changelessness|unchangeability|unchangeableness|unchangingness +absolution|2 +(noun)|condition|status +(noun)|remission|remittal|remission of sin|redemption|salvation +absolutism|4 +(noun)|tyranny|despotism|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|dictatorship|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +(noun)|totalitarianism|totalism|political orientation|ideology|political theory +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +absolutist|2 +(adj)|absolutistic|political orientation|ideology|political theory +(noun)|disciple|adherent +absolutistic|1 +(adj)|absolutist|political orientation|ideology|political theory +absolve|2 +(verb)|forgive +(verb)|justify|free|forgive +absolved|1 +(adj)|clear|cleared|exculpated|exonerated|vindicated|innocent |guiltless|clean-handed +absolver|1 +(noun)|pardoner +absolvitory|1 +(adj)|exonerative|forgiving|exculpatory +absorb|9 +(verb)|sorb|take up +(verb)|assimilate|ingest|take in|learn|larn|acquire +(verb)|take over|fund +(verb)|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|take in +(verb)|steep|immerse|engulf|plunge|engross|soak up|concentrate|focus|center|centre|pore|rivet +(verb)|receive|take in|invite +(verb)|engross|engage|occupy|interest +absorbable|1 +(adj)|absorbable |absorbed +absorbate|1 +(noun)|sorbate +absorbed|3 +(adj)|engrossed|enwrapped|intent|rapt|wrapped|attentive +(adj)|unreflected +(adj)|absorbable +absorbefacient|1 +(adj)|sorbefacient|absorbent |absorptive +absorbency|1 +(noun)|permeability|permeableness +absorbent|2 +(adj)|absorbent |absorptive|absorbefacient|sorbefacient|assimilating|assimilative|assimilatory|spongy|spongelike|thirsty|hygroscopic +(noun)|absorbent material|sorbent|sorbent material +absorbent cotton|1 +(noun)|cotton|cotton wool|absorbent material|absorbent +absorbent material|1 +(noun)|absorbent|sorbent|sorbent material +absorber|1 +(noun)|absorbent material|absorbent +absorbing|1 +(adj)|engrossing|fascinating|gripping|riveting|interesting +absorptance|1 +(noun)|absorption coefficient|coefficient of absorption|coefficient +absorption|6 +(noun)|soaking up|sorption +(noun)|natural process|natural action|action|activity +(noun)|assimilation|social process +(noun)|assimilation|organic process|biological process +(noun)|concentration|engrossment|immersion|attention +(noun)|preoccupation|preoccupancy|engrossment|cognitive state|state of mind +absorption band|1 +(noun)|optical phenomenon +absorption coefficient|1 +(noun)|coefficient of absorption|absorptance|coefficient +absorption factor|1 +(noun)|absorptivity|physical property +absorption indicator|1 +(noun)|indicator +absorption spectrum|1 +(noun)|spectrum +absorption unit|1 +(noun)|unit of measurement|unit +absorptive|1 +(adj)|absorbent |absorbefacient|sorbefacient|assimilating|assimilative|assimilatory|spongy|spongelike|thirsty|hygroscopic +absorptivity|1 +(noun)|absorption factor|physical property +absquatulate|1 +(verb)|abscond|bolt|decamp|run off|go off|flee|fly|take flight +abstain|2 +(verb)|refrain|forbear +(verb)|refrain|desist +abstainer|2 +(noun)|ascetic|religionist|religious person +(noun)|abstinent|nondrinker|person|individual|someone|somebody|mortal|human|soul +abstemious|2 +(adj)|abstemious |abstinent|abstentious|ascetic|ascetical|austere|spartan|nonindulgent +(adj)|light|temperate +abstemiously|1 +(adv)|temperately +abstemiousness|2 +(noun)|meagerness|meagreness|poorness|scantiness|scantness|exiguity +(noun)|temperance|moderation +abstention|1 +(noun)|abstinence|self-discipline|self-denial +abstentious|1 +(adj)|abstinent|abstemious +abstinence|2 +(noun)|abstention|self-discipline|self-denial +(noun)|self-denial|self-discipline|self-control +abstinent|2 +(adj)|abstentious|abstemious +(noun)|abstainer|nondrinker|person|individual|someone|somebody|mortal|human|soul +abstract|10 +(adj)|abstract |conceptual|ideal|conceptional|ideational|notional|intangible|impalpable|nonrepresentational +(adj)|abstractionist|nonfigurative|nonobjective|nonrepresentational +(adj)|theoretical|technical +(adj)|theoretical +(noun)|abstraction|concept|conception|construct +(noun)|outline|synopsis|precis|summary +(verb)|see|consider|reckon|view|regard +(verb)|pilfer|cabbage|purloin|pinch|snarf|swipe|hook|sneak|filch|nobble|lift|steal +(verb)|consider|take|deal|look at +(verb)|sum up|summarize|summarise|resume +abstract art|1 +(noun)|abstractionism|genre +abstract artist|1 +(noun)|abstractionist|painter +abstract expressionism|1 +(noun)|Abstract Expressionism|action painting|artistic movement|art movement +abstract thought|1 +(noun)|reasoning|logical thinking|thinking|thought|cerebration|intellection|mentation +abstracted|2 +(adj)|removed|separate +(adj)|absent|absentminded|scatty|inattentive +abstractedly|1 +(adv)|absently|inattentively|absentmindedly +abstractedness|1 +(noun)|abstraction|preoccupation|preoccupancy|absorption|engrossment +abstracter|1 +(noun)|abstractor|writer|author +abstraction|5 +(noun)|abstract|concept|conception|construct +(noun)|removal|remotion +(noun)|generalization|generalisation|theorization|theorisation +(noun)|painting|picture +(noun)|abstractedness|preoccupation|preoccupancy|absorption|engrossment +abstractionism|2 +(noun)|abstract art|genre +(noun)|unrealism|representation|mental representation|internal representation +abstractionist|2 +(adj)|abstract|nonfigurative|nonobjective|nonrepresentational +(noun)|abstract artist|painter +abstractive|1 +(adj)|theoretical |theoretic +abstractness|1 +(noun)|immateriality|incorporeality +abstractor|1 +(noun)|abstracter|writer|author +abstruse|1 +(adj)|deep|recondite|esoteric +abstruseness|2 +(noun)|obscureness|obscurity|reconditeness|incomprehensibility +(noun)|reconditeness|abstrusity|profoundness|profundity|wisdom +abstrusity|1 +(noun)|reconditeness|abstruseness|profoundness|profundity|wisdom +absurd|2 +(adj)|unreasonable|illogical |unlogical +(adj)|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish +absurdity|2 +(noun)|absurdness|ridiculousness|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|fatuity|fatuousness|silliness|folly|foolishness|unwiseness +absurdness|1 +(noun)|absurdity|ridiculousness|nonsense|bunk|nonsensicality|meaninglessness|hokum +abu ali al-husain ibn abdallah ibn sina|1 +(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher|doctor|doc|physician|MD|Dr.|medico +abu dhabi|1 +(noun)|Abu Dhabi|United Arab Emirates's capital|national capital +abu nidal organization|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +abu sayyaf|1 +(noun)|Abu Sayyaf|Bearer of the Sword|terrorist organization|terrorist group|foreign terrorist organization|FTO +abudefduf|1 +(noun)|Abudefduf|genus Abudefduf|fish genus +abudefduf saxatilis|1 +(noun)|sergeant major|Abudefduf saxatilis|damselfish|demoiselle +abuja|1 +(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital +abukir|1 +(noun)|Abukir|Abukir Bay|bay +abukir bay|1 +(noun)|Abukir|Abukir Bay|bay +abul-walid mohammed ibn-ahmad ibn-mohammed ibn-roshd|1 +(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher|lawyer|attorney|doctor|doc|physician|MD|Dr.|medico +abulia|1 +(noun)|aboulia|psychological state|mental state +abulic|1 +(adj)|aboulic|neurotic |psychoneurotic +abundance|3 +(noun)|copiousness|teemingness|quantity +(noun)|ratio +(noun)|ratio +abundant|1 +(adj)|abundant |abounding|galore|ample|copious|plenteous|plentiful|rich|bumper|copious|extensive|voluminous|easy|thick|long|overabundant|plethoric|rife|plentiful|superabundant|teeming|swarming|torrential|verdant|well endowed|exuberant|lush|luxuriant|profuse|riotous|rank|ample|rich +abundantly|1 +(adv)|copiously|profusely|extravagantly +abuse|6 +(noun)|maltreatment|ill-treatment|ill-usage|mistreatment +(noun)|insult|revilement|contumely|vilification|disrespect|discourtesy +(noun)|misuse|use|usage|utilization|utilisation|employment|exercise +(verb)|mistreat|maltreat|ill-use|step|ill-treat|treat|handle|do by +(verb)|pervert|misuse|use|expend +(verb)|clapperclaw|blackguard|shout|attack|round|assail|lash out|snipe|assault +abused|3 +(adj)|misused +(adj)|abused |affronted|insulted|maligned|reviled +(adj)|abused |ill-treated|maltreated|mistreated|assaulted|molested|raped|battered|beaten|misunderstood|cuffed|slapped +abuser|1 +(noun)|maltreater|wrongdoer|offender +abusive|2 +(adj)|insulting|opprobrious|scornful|scurrilous|offensive +(adj)|harmful +abut|1 +(verb)|border|adjoin|edge|march|butt|butt against|butt on|touch|adjoin|meet|contact +abutilon|1 +(noun)|Abutilon|genus Abutilon|dilleniid dicot genus +abutilon theophrasti|1 +(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +abutment|2 +(noun)|point +(noun)|support +abutment arch|1 +(noun)|arch +abutter|1 +(noun)|landowner|landholder|property owner +abutting|1 +(adj)|adjacent|adjoining|conterminous|contiguous|neighboring|connected +abuzz|1 +(adj)|buzzing|droning|noisy +abvolt|1 +(noun)|potential unit +abwatt|1 +(noun)|power unit +aby|1 +(verb)|expiate|abye|atone|right|compensate|redress|correct +aby moritz warburg|1 +(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian +aby warburg|1 +(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian +abydos|1 +(noun)|Abydos|town +abye|2 +(verb)|expiate|aby|atone|right|compensate|redress|correct +(verb)|expiate|aby|atone|right|compensate|redress|correct +abyla|1 +(noun)|Jebel Musa|Abila|Abyla|promontory|headland|foreland +abysm|1 +(noun)|abyss|chasm +abysmal|2 +(adj)|immeasurable |unmeasurable|immensurable +(adj)|abyssal|unfathomable|deep +abysmally|1 +(adv)|terribly|atrociously|awfully|abominably|rottenly +abyss|1 +(noun)|abysm|chasm +abyssal|2 +(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +(adj)|abysmal|unfathomable|deep +abyssal zone|1 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +abyssinia|1 +(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country|African nation +abyssinian|1 +(noun)|Abyssinian|Abyssinian cat|domestic cat|house cat|Felis domesticus|Felis catus +abyssinian banana|1 +(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb|herbaceous plant +abyssinian cat|1 +(noun)|Abyssinian|Abyssinian cat|domestic cat|house cat|Felis domesticus|Felis catus +ac|2 +(noun)|actinium|Ac|atomic number 89|chemical element|element +(noun)|alternating current|AC|electricity|electrical energy +acacia|1 +(noun)|tree +acacia auriculiformis|1 +(noun)|black wattle|Acacia auriculiformis|acacia +acacia cambegei|1 +(noun)|gidgee|stinking wattle|Acacia cambegei|acacia +acacia catechu|1 +(noun)|catechu|Jerusalem thorn|Acacia catechu|acacia +acacia dealbata|1 +(noun)|silver wattle|mimosa|Acacia dealbata|acacia +acacia farnesiana|1 +(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia +acacia melanoxylon|1 +(noun)|lightwood|Acacia melanoxylon|blackwood|blackwood tree +acacia pycnantha|1 +(noun)|golden wattle|Acacia pycnantha|acacia +acacia xanthophloea|1 +(noun)|fever tree|Acacia xanthophloea|acacia +academe|1 +(noun)|academia|world|domain +academia|1 +(noun)|academe|world|domain +academic|4 +(adj)|world|domain +(adj)|theoretical +(adj)|donnish|pedantic|scholarly +(noun)|academician|faculty member|educator|pedagogue +academic administrator|1 +(noun)|administrator|decision maker +academic costume|1 +(noun)|costume +academic degree|1 +(noun)|degree|award|accolade|honor|honour|laurels|qualification|makings +academic department|1 +(noun)|department|section +academic freedom|1 +(noun)|freedom +academic gown|1 +(noun)|academic robe|judge's robe|gown|robe +academic program|1 +(noun)|educational program +academic relation|1 +(noun)|professional relation +academic requirement|1 +(noun)|prerequisite|requirement +academic robe|1 +(noun)|academic gown|judge's robe|gown|robe +academic session|1 +(noun)|school term|academic term|session|term +academic term|1 +(noun)|school term|academic session|session|term +academic year|1 +(noun)|school year|year +academician|3 +(noun)|honoree +(noun)|schoolman|scholar|scholarly person|student +(noun)|academic|faculty member|educator|pedagogue +academicianship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +academicism|1 +(noun)|scholasticism|academism|traditionalism|traditionality +academism|1 +(noun)|scholasticism|academicism|traditionalism|traditionality +academy|4 +(noun)|secondary school|lyceum|lycee|Gymnasium|middle school +(noun)|honorary society|institution|establishment +(noun)|school +(noun)|establishment +academy award|1 +(noun)|Academy Award|Oscar|award|accolade|honor|honour|laurels +academy of motion picture arts and sciences|1 +(noun)|Academy of Motion Picture Arts and Sciences|academy|honorary society +academy of television arts and sciences|1 +(noun)|Academy of Television Arts and Sciences|academy|honorary society +acadia|1 +(noun)|Acadia|district|territory|territorial dominion|dominion +acadia national park|1 +(noun)|Acadia National Park|national park +acadian|1 +(noun)|Acadian|French Canadian +acalypha|1 +(noun)|Acalypha|genus Acalypha|rosid dicot genus +acalypha virginica|1 +(noun)|three-seeded mercury|Acalypha virginica|shrub|bush +acanthaceae|1 +(noun)|Acanthaceae|family Acanthaceae|acanthus family|asterid dicot family +acanthion|1 +(noun)|craniometric point +acanthisitta|1 +(noun)|Acanthisitta|genus Acanthisitta|bird genus +acanthisitta chloris|1 +(noun)|rifleman bird|Acanthisitta chloris|New Zealand wren +acanthisittidae|1 +(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family +acanthocephala|1 +(noun)|Acanthocephala|phylum Acanthocephala|phylum +acanthocephalan|1 +(noun)|spiny-headed worm|worm +acanthocereus|1 +(noun)|Acanthocereus|genus Acanthocereus|caryophylloid dicot genus +acanthocereus pentagonus|1 +(noun)|pitahaya cactus|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus +acanthocereus tetragonus|1 +(noun)|pitahaya cactus|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus +acanthocybium|1 +(noun)|Acanthocybium|genus Acanthocybium|fish genus +acanthocybium solandri|1 +(noun)|wahoo|Acanthocybium solandri|mackerel +acanthocyte|1 +(noun)|red blood cell|RBC|erythrocyte +acanthocytosis|1 +(noun)|blood disease|blood disorder +acanthoid|1 +(adj)|acanthous|spinous|pointed +acantholysis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +acanthoma|1 +(noun)|skin tumor|tumor|tumour|neoplasm +acanthophis|1 +(noun)|Acanthophis|genus Acanthophis|reptile genus +acanthophis antarcticus|1 +(noun)|death adder|Acanthophis antarcticus|elapid|elapid snake +acanthopterygian|1 +(noun)|spiny-finned fish|teleost fish|teleost|teleostan +acanthopterygii|1 +(noun)|Acanthopterygii|superorder Acanthopterygii|animal order +acanthoscelides|1 +(noun)|Acanthoscelides|genus Acanthoscelides|arthropod genus +acanthoscelides obtectus|1 +(noun)|bean weevil|Acanthoscelides obtectus|seed beetle|seed weevil +acanthosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +acanthosis nigricans|1 +(noun)|keratosis nigricans|skin disease|disease of the skin|skin disorder|skin problem|skin condition +acanthotic|1 +(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +acanthous|1 +(adj)|acanthoid|spinous|pointed +acanthuridae|1 +(noun)|Acanthuridae|family Acanthuridae|fish family +acanthurus|1 +(noun)|Acanthurus|genus Acanthurus|fish genus +acanthurus chirurgus|1 +(noun)|doctorfish|doctor-fish|Acanthurus chirurgus|surgeonfish +acanthus|1 +(noun)|herb|herbaceous plant +acanthus family|1 +(noun)|Acanthaceae|family Acanthaceae|asterid dicot family +acanthus mollis|1 +(noun)|bear's breech|bear's breeches|sea holly|Acanthus mollis|acanthus +acapnia|1 +(noun)|hypocapnia|physiological state|physiological condition +acapnial|1 +(adj)|acapnic|acapnotic|physiological state|physiological condition +acapnic|1 +(adj)|acapnial|acapnotic|physiological state|physiological condition +acapnotic|1 +(adj)|acapnic|acapnial|physiological state|physiological condition +acapulco|1 +(noun)|Acapulco|Acapulco de Juarez|city|metropolis|urban center|port +acapulco de juarez|1 +(noun)|Acapulco|Acapulco de Juarez|city|metropolis|urban center|port +acapulco gold|1 +(noun)|Acapulco gold|Mexican green|cannabis|marijuana|marihuana|ganja +acaracide|1 +(noun)|acaricide|pesticide +acardia|1 +(noun)|abnormality|abnormalcy|abnormal condition +acariasis|1 +(noun)|acariosis|acaridiasis|infestation +acaricide|1 +(noun)|acaracide|pesticide +acarid|1 +(noun)|mite +acaridae|1 +(noun)|Acaridae|family Acaridae|arthropod family +acaridiasis|1 +(noun)|acariasis|acariosis|infestation +acarina|1 +(noun)|Acarina|order Acarina|animal order +acarine|1 +(noun)|arachnid|arachnoid +acariosis|1 +(noun)|acariasis|acaridiasis|infestation +acaroid resin|1 +(noun)|accaroid resin|accroides|accroides resin|accroides gum|gum accroides|natural resin +acarophobia|1 +(noun)|zoophobia +acarpellous|1 +(adj)|acarpelous +acarpelous|1 +(adj)|acarpelous |acarpellous +acarpous|1 +(adj)|unfruitful +acarus|1 +(noun)|mite +acaryote|1 +(noun)|akaryocyte|akaryote|cell +acatalectic|1 +(adj)|acatalectic +acataphasia|1 +(noun)|brain disorder|encephalopathy|brain disease +acathexia|1 +(noun)|physiological state|physiological condition +acathexis|1 +(noun)|libidinal energy +acaudal|1 +(adj)|acaudate |anurous|tailless +acaudate|1 +(adj)|acaudate |acaudal|anurous|tailless +acaulescent|1 +(adj)|acaulescent |stemless +acc|1 +(noun)|Air Combat Command|ACC|command +accaroid resin|1 +(noun)|acaroid resin|accroides|accroides resin|accroides gum|gum accroides|natural resin +accede|3 +(verb)|submit|bow|defer|give in|yield|give in|succumb|knuckle under|buckle under +(verb)|enter|succeed|come after|follow|take office +(verb)|assent|acquiesce|agree +accelerando|2 +(adj)|increasing +(noun)|tempo|pacing +accelerate|2 +(verb)|speed up|speed|quicken|intensify|deepen +(verb)|speed|speed up|modify|qualify +accelerated|2 +(adj)|speeded up|expedited +(adj)|fast +accelerating|1 +(adj)|fast +acceleration|3 +(noun)|speed|swiftness|fastness +(noun)|quickening|speedup|speed|speeding|hurrying +(noun)|rate +acceleration unit|1 +(noun)|unit of measurement|unit +accelerative|1 +(adj)|acceleratory|increasing +accelerator|4 +(noun)|accelerator pedal|gas pedal|gas|throttle|gun|pedal|treadle|foot pedal|foot lever +(noun)|throttle|throttle valve|valve +(noun)|catalyst|activator +(noun)|particle accelerator|atom smasher|scientific instrument +accelerator factor|1 +(noun)|proaccelerin|prothrombin accelerator|factor V|coagulation factor|clotting factor +accelerator pedal|1 +(noun)|accelerator|gas pedal|gas|throttle|gun|pedal|treadle|foot pedal|foot lever +acceleratory|1 +(adj)|accelerative|increasing +accelerometer|1 +(noun)|measuring instrument|measuring system|measuring device +accent|7 +(noun)|speech pattern|pronunciation +(noun)|emphasis|importance|grandness +(noun)|dialect|idiom|non-standard speech +(noun)|stress|emphasis|prosody|inflection +(noun)|accent mark|diacritical mark|diacritic +(verb)|stress|emphasize|emphasise|punctuate|accentuate|express|show|evince +(verb)|stress|accentuate|pronounce|articulate|enounce|sound out|enunciate|say +accent mark|1 +(noun)|accent|diacritical mark|diacritic +accented|2 +(adj)|tonic +(adj)|heavy|strong|stressed +accenting|1 +(noun)|emphasizing|accentuation|action +accentor|1 +(noun)|oscine|oscine bird +accentual|2 +(adj)|prosody|inflection +(adj)|accentual +accentual system|1 +(noun)|prosodic system|language system +accentuate|2 +(verb)|stress|emphasize|emphasise|punctuate|accent|express|show|evince +(verb)|stress|accent|pronounce|articulate|enounce|sound out|enunciate|say +accentuation|2 +(noun)|stress|emphasis|accent +(noun)|emphasizing|accenting|action +accept|11 +(verb)|judge +(verb)|take|have|get|acquire +(verb)|consent|go for|react|respond +(verb)|react|respond +(verb)|admit|take|take on|take|have +(verb)|bear|take over|assume|take +(verb)|live with|swallow|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +(verb)|take|be +(verb)|receive|have +(verb)|take +(verb)|react|respond +acceptability|1 +(noun)|acceptableness|satisfactoriness +acceptable|4 +(adj)|acceptable |bankable|unexceptionable|unimpeachable|unobjectionable|satisfactory +(adj)|accepted|standard |received +(adj)|satisfactory|good +(adj)|fit +acceptableness|1 +(noun)|acceptability|satisfactoriness +acceptably|1 +(adv)|tolerably|so-so +acceptance|7 +(noun)|credence|attitude|mental attitude +(noun)|adoption|acceptation|espousal|blessing|approval|approving +(noun)|situation|state of affairs +(noun)|assent|acquiescence +(noun)|banker's acceptance|draft|bill of exchange|order of payment +(noun)|toleration|sufferance|permissiveness|tolerance +(noun)|acquisition +acceptance sampling|1 +(noun)|quality control|sample distribution|sample|sampling +acceptant|1 +(adj)|acceptive|receptive +acceptation|3 +(noun)|acceptance +(noun)|word meaning|word sense|sense|signified +(noun)|adoption|acceptance|espousal|blessing|approval|approving +accepted|6 +(adj)|recognized|recognised|acknowledged +(adj)|undisputed|uncontroversial |noncontroversial +(adj)|standard +(adj)|acceptable|standard |received +(adj)|established |constituted +(adj)|received|conventional +accepting|1 +(adj)|acceptive +acceptive|2 +(adj)|acceptive |accepting +(adj)|acceptant|receptive +acceptor|2 +(noun)|compound|chemical compound +(noun)|drawee +acceptor rna|1 +(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid|RNA +access|7 +(noun)|entree|accession|admittance|right +(noun)|right +(noun)|approach|way +(noun)|memory access|operation +(noun)|approach|approaching|coming +(verb)|recover|retrieve|find|regain +(verb)|get at|reach|make|attain|hit|arrive at|gain +access road|1 +(noun)|slip road|road|route +access time|1 +(noun)|time interval|interval +accessary|1 +(noun)|accessory|criminal|felon|crook|outlaw|malefactor +accessibility|2 +(noun)|handiness|availability|availableness|convenience +(noun)|approachability|friendliness +accessible|4 +(adj)|accessible |approachable|reachable|come-at-able|get-at-able|getatable|convenient|handy|ready to hand|in hand|convenient +(adj)|approachable|comprehensible |comprehendible +(adj)|available +(adj)|approachable +accession|7 +(noun)|increase|increment|growth +(noun)|property right +(noun)|addition|acquisition +(noun)|assenting|agreement +(noun)|entree|access|admittance|right +(noun)|rise to power|attainment +(verb)|record|enter|put down +accessional|1 +(adj)|acquisition +accessorial|1 +(adj)|added +accessory|4 +(adj)|adjunct|ancillary|adjuvant|appurtenant|auxiliary|subsidiary|supportive +(noun)|accoutrement|accouterment|clothing|article of clothing|vesture|wear +(noun)|appurtenance|supplement|add-on|component|constituent|element +(noun)|accessary|criminal|felon|crook|outlaw|malefactor +accessory after the fact|1 +(noun)|accessory|accessary +accessory before the fact|1 +(noun)|accessory|accessary +accessory cephalic vein|1 +(noun)|vena cephalica accessoria|vein|vena|venous blood vessel +accessory during the fact|1 +(noun)|accessory|accessary +accessory fruit|1 +(noun)|pseudocarp|fruit +accessory hemiazygos vein|1 +(noun)|accessory hemiazygous vein|vena hemiazygos accessoria|vein|vena|venous blood vessel +accessory hemiazygous vein|1 +(noun)|accessory hemiazygos vein|vena hemiazygos accessoria|vein|vena|venous blood vessel +accessory nerve|1 +(noun)|spinal accessory|nervus accessorius|eleventh cranial nerve|cranial nerve +accessory vertebral vein|1 +(noun)|vena vertebralis accessoria|vein|vena|venous blood vessel +accho|1 +(noun)|Acre|Akko|Akka|Accho|town|port +acciaccatura|1 +(noun)|grace note|appoggiatura|note|musical note|tone +accidence|1 +(noun)|inflectional morphology|morphology +accident|2 +(noun)|mishap|misadventure|mischance +(noun)|fortuity|chance event|happening|occurrence|natural event +accident-prone|1 +(adj)|inclined +accident surgery|1 +(noun)|traumatology|medicine|medical specialty +accidental|4 +(adj)|adventitious|extrinsic +(adj)|casual|chance|unplanned +(adj)|inadvertent|unintended +(noun)|musical notation +accidental injury|1 +(noun)|injury|accident +accidentally|3 +(adv)|by chance|circumstantially|unexpectedly +(adv)|incidentally|by chance +(adv)|unintentionally +accipiter|1 +(noun)|Accipiter|genus Accipiter|bird genus +accipiter cooperii|1 +(noun)|Cooper's hawk|blue darter|Accipiter cooperii|hawk +accipiter gentilis|1 +(noun)|goshawk|Accipiter gentilis|hawk +accipiter nisus|1 +(noun)|sparrow hawk|Accipiter nisus|hawk +accipitridae|1 +(noun)|Accipitridae|family Accipitridae|bird family +accipitriformes|1 +(noun)|Accipitriformes|order Accipitriformes|bird of prey|raptor|raptorial bird +accipitrine|1 +(adj)|bird genus +acclaim|3 +(noun)|acclamation|plaudits|plaudit|eclat|approval|commendation +(verb)|hail|herald|applaud +(verb)|applaud|clap|spat|gesticulate|gesture|motion +acclamation|1 +(noun)|acclaim|plaudits|plaudit|eclat|approval|commendation +acclimate|1 +(verb)|acclimatize|acclimatise|adjust|conform|adapt +acclimation|1 +(noun)|acclimatization|acclimatisation|adaptation|adjustment +acclimatisation|1 +(noun)|acclimatization|acclimation|adaptation|adjustment +acclimatise|1 +(verb)|acclimatize|acclimate|adjust|conform|adapt +acclimatization|1 +(noun)|acclimatisation|acclimation|adaptation|adjustment +acclimatize|1 +(verb)|acclimatise|acclimate|adjust|conform|adapt +acclivitous|1 +(adj)|rising|uphill|ascending +acclivity|1 +(noun)|ascent|rise|raise|climb|upgrade|slope|incline|side +accolade|1 +(noun)|award|honor|honour|laurels|symbol +accommodate|7 +(verb)|suit|fit|meet|fit|conform to +(verb)|adapt|change|alter|vary +(verb)|provide|supply|ply|cater +(verb)|hold|admit +(verb)|lodge|house|put up|domiciliate +(verb)|oblige|comply|follow|abide by +(verb)|reconcile|conciliate|harmonize|harmonise +accommodating|2 +(adj)|accommodating |accommodative|complaisant|obliging|good-natured|helpful|kind +(adj)|helpful +accommodatingly|1 +(adv)|obligingly +accommodation|6 +(noun)|adjustment|fitting|improvement|betterment|advance +(noun)|settlement +(noun)|developmental learning +(noun)|living quarters|quarters +(noun)|aid|assist|assistance|help +(noun)|alteration|modification|adjustment +accommodation endorser|1 +(noun)|endorser|indorser +accommodation ladder|1 +(noun)|sea ladder|sea steps +accommodation reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +accommodational|1 +(adj)|alteration|modification|adjustment +accommodative|3 +(adj)|accommodating |complaisant|obliging|good-natured|helpful|kind +(adj)|cooperative|noncompetitive +(adj)|reconciling|adaptive |adaptative +accommodator|1 +(noun)|obliger|benefactor|helper +accompanied|1 +(adj)|accompanied |attended +accompaniment|3 +(noun)|concomitant|co-occurrence|happening|occurrence|natural event +(noun)|musical accompaniment|backup|support|part|voice +(noun)|escort|protection +accompanist|1 +(noun)|accompanyist|musician|instrumentalist|player +accompany|4 +(verb)|attach to|come with|go with +(verb)|travel|go|move|locomote +(verb)|play along|follow|play +(verb)|company|companion|keep company|consort|associate|affiliate|assort +accompanying|1 +(adj)|attendant|concomitant|incidental|incidental to|related |related to +accompanying vein|1 +(noun)|vena comitans|vein|vena|venous blood vessel +accompanyist|1 +(noun)|accompanist|musician|instrumentalist|player +accomplice|1 +(noun)|confederate|assistant|helper|help|supporter +accomplish|2 +(verb)|carry through|execute|carry out|action|fulfill|fulfil|complete|finish|effect|effectuate|bring about|set up +(verb)|achieve|attain|reach|succeed|win|come through|bring home the bacon|deliver the goods +accomplishable|1 +(adj)|achievable|doable|realizable|possible +accomplished|3 +(adj)|complete|skilled +(adj)|completed|realized|realised|complete +(adj)|effected|established|settled +accomplished fact|1 +(noun)|fait accompli|accomplishment|achievement +accomplishment|2 +(noun)|achievement|action +(noun)|skill|acquirement|acquisition|attainment|ability|power +accord|6 +(noun)|agreement|harmony|concord|concordance +(noun)|conformity|accordance|agreement +(noun)|treaty|pact|written agreement +(noun)|rapport|compatibility +(verb)|harmonize|harmonise|consort|concord|fit in|agree|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|allot|grant|give +accord and satisfaction|1 +(noun)|settlement +accordance|2 +(noun)|accord|conformity|agreement +(noun)|accordance of rights|giving|gift +accordance of rights|1 +(noun)|accordance|giving|gift +accordant|2 +(adj)|accordant |agreeable|consensual|consentaneous|consentient|unanimous|according|concordant|concurring +(adj)|agreeable|conformable|consonant|concordant|consistent +according|2 +(adj)|reported +(adj)|accordant +accordingly|1 +(adv)|consequently +accordion|2 +(adj)|plicate|folded +(noun)|piano accordion|squeeze box|free-reed instrument +accordion door|1 +(noun)|folding door|interior door +accordionist|1 +(noun)|musician|instrumentalist|player +accost|2 +(verb)|address|come up to|come|come up +(verb)|hook|solicit|offer +accouchement|1 +(noun)|childbirth|childbearing|vaginal birth|parturition|birth|giving birth|birthing +accoucheur|1 +(noun)|obstetrician|specialist|medical specialist +accoucheuse|1 +(noun)|midwife|nurse +account|14 +(noun)|business relationship|relationship +(noun)|report|informing|making known +(noun)|history|chronicle|story|record +(noun)|report|news report|story|write up|news +(noun)|accounting|account statement|statement|financial statement +(noun)|explanation|statement +(noun)|bill|invoice|statement|financial statement +(noun)|score|reason|ground +(noun)|importance +(noun)|profit|gain +(verb)|be +(verb)|calculate +(verb)|report|describe|inform +(verb)|answer for|declare +account book|1 +(noun)|ledger|leger|book of account|book|record +account executive|1 +(noun)|account representative|registered representative|customer's broker|customer's man|businessperson|bourgeois +account for|2 +(verb)|be +(verb)|explain|explicate +account payable|1 +(noun)|indebtedness|liability|financial obligation +account representative|1 +(noun)|account executive|registered representative|customer's broker|customer's man|businessperson|bourgeois +account statement|1 +(noun)|account|accounting|statement|financial statement +accountability|1 +(noun)|answerability|answerableness|responsibility|responsibleness +accountable|1 +(adj)|responsible +accountancy|1 +(noun)|accounting|occupation|business|job|line of work|line +accountant|1 +(noun)|comptroller|controller|businessperson|bourgeois +accountantship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +accounting|5 +(noun)|explanation|account +(noun)|system|system of rules +(noun)|accountancy|occupation|business|job|line of work|line +(noun)|accounting system|method of accounting|register +(noun)|account|account statement|statement|financial statement +accounting data|1 +(noun)|data|information +accounting entry|1 +(noun)|entry|ledger entry|accounting|accounting system|method of accounting +accounting firm|1 +(noun)|firm|house|business firm +accounting principle|1 +(noun)|accounting standard|principle +accounting standard|1 +(noun)|accounting principle|principle +accounting system|1 +(noun)|accounting|method of accounting|register +accounts payable|2 +(noun)|liabilities +(noun)|account payable|indebtedness|liability|financial obligation +accounts receivable|1 +(noun)|assets +accouter|1 +(verb)|accoutre|equip|fit|fit out|outfit +accoutered|1 +(adj)|accoutred|equipped |equipt +accouterment|1 +(noun)|accessory|accoutrement|clothing|article of clothing|vesture|wear +accoutre|1 +(verb)|accouter|equip|fit|fit out|outfit +accoutred|1 +(adj)|accoutered|equipped |equipt +accoutrement|1 +(noun)|accessory|accouterment|clothing|article of clothing|vesture|wear +accra|1 +(noun)|Accra|capital of Ghana|national capital +accredit|3 +(verb)|recognize|recognise|license|licence|certify +(verb)|appoint|charge +(verb)|credit|impute|ascribe|assign|attribute +accreditation|1 +(noun)|certification|enfranchisement +accredited|1 +(adj)|commissioned|licensed|licenced|authorized |authorised +accrete|2 +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|accumulate|cumulate|conglomerate|pile up|gather|amass +accretion|6 +(noun)|accumulation|increase|increment|growth +(noun)|addition|increase|gain +(noun)|increase|increment|growth +(noun)|increase|increment|growth +(noun)|increase|increment|growth +(noun)|inheritance|heritage +accretionary|1 +(adj)|increasing +accretive|1 +(adj)|increasing +accroides|1 +(noun)|acaroid resin|accaroid resin|accroides resin|accroides gum|gum accroides|natural resin +accroides gum|1 +(noun)|acaroid resin|accaroid resin|accroides|accroides resin|gum accroides|natural resin +accroides resin|1 +(noun)|acaroid resin|accaroid resin|accroides|accroides gum|gum accroides|natural resin +accrual|1 +(noun)|accumulation|accruement|increase|step-up +accrual basis|1 +(noun)|accounting|accounting system|method of accounting +accrue|2 +(verb)|increase +(verb)|fall|change hands +accrued|1 +(adj)|accumulated|increased +accruement|1 +(noun)|accumulation|accrual|increase|step-up +acculturate|1 +(verb)|assimilate +acculturation|3 +(noun)|socialization|socialisation|enculturation|social control +(noun)|culture|content|cognitive content|mental object +(noun)|assimilation|education +acculturational|1 +(adj)|acculturative|education +acculturative|1 +(adj)|acculturational|education +accumbent|1 +(adj)|decumbent|recumbent|reclining|unerect +accumulate|2 +(verb)|roll up|collect|pile up|amass|compile|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|cumulate|conglomerate|pile up|gather|amass|increase +accumulated|2 +(adj)|amassed|assembled|collected|congregate|massed|concentrated +(adj)|accrued|increased +accumulation|4 +(noun)|accretion|increase|increment|growth +(noun)|collection|aggregation|assemblage|group|grouping +(noun)|accrual|accruement|increase|step-up +(noun)|net income|net|net profit|lucre|profit|profits|earnings +accumulative|2 +(adj)|cumulative|additive +(adj)|acquisitive +accumulator|3 +(noun)|collector|gatherer|holder|bearer +(noun)|storage battery|voltaic battery|galvanic battery +(noun)|accumulator register|register +accumulator register|1 +(noun)|accumulator|register +accuracy|2 +(noun)|truth|quality +(noun)|quality +accurate|2 +(adj)|accurate |close|faithful|dead-on|high-fidelity|hi-fi|straight|surgical|true|dead on target|veracious|correct|right|exact|precise +(adj)|exact|precise|correct +accursed|1 +(adj)|accurst|maledict|cursed |curst +accurst|1 +(adj)|accursed|maledict|cursed |curst +accusal|1 +(noun)|accusation|charge|complaint +accusation|2 +(noun)|accusal|charge|complaint +(noun)|charge|assertion|averment|asseveration +accusative|3 +(adj)|accusatory|accusing|accusive|inculpatory |inculpative +(adj)|objective|oblique|oblique case +(noun)|accusative case|objective case|oblique|oblique case +accusative case|1 +(noun)|accusative|objective case|oblique|oblique case +accusatorial|1 +(adj)|accusatorial |disputant|controversialist|eristic +accusatory|1 +(adj)|accusative|accusing|accusive|inculpatory |inculpative +accuse|2 +(verb)|impeach|incriminate|criminate|charge +(verb)|charge +accused|1 +(noun)|defendant|suspect +accuser|1 +(noun)|disputant|controversialist|eristic +accusing|1 +(adj)|accusative|accusatory|accusive|inculpatory |inculpative +accusive|1 +(adj)|accusative|accusatory|accusing|inculpatory |inculpative +accustom|1 +(verb)|habituate|change|alter|modify +accustomed|2 +(adj)|accustomed |used to|wont to +(adj)|customary|habitual|wonted|usual +ace|10 +(adj)|A-one|crack|first-rate|super|tiptop|topnotch|tops|superior +(noun)|one|1|I|single|unity|digit|figure +(noun)|playing card +(noun)|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +(noun)|Allied Command Europe|ACE|headquarters +(noun)|serve|service +(verb)|breeze through|pass with flying colors|sweep through|sail through|nail|pass|make it +(verb)|score|hit|tally|rack up +(verb)|play +(verb)|serve +ace inhibitor|1 +(noun)|ACE inhibitor|angiotensin converting enzyme inhibitor|antihypertensive|antihypertensive drug +ace of clubs|1 +(noun)|ace +ace of diamonds|1 +(noun)|ace +ace of hearts|1 +(noun)|ace +ace of spades|1 +(noun)|ace +acebutolol|1 +(noun)|Sectral|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +acedia|1 +(noun)|sloth|laziness|mortal sin|deadly sin +acellular|1 +(adj)|noncellular |cell-free|single-celled|one-celled +acellular slime mold|1 +(noun)|true slime mold|plasmodial slime mold|myxomycete|slime mold|slime mould +acentric|2 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +(adj)|eccentric |nonconcentric +acentric chromosome|1 +(noun)|chromosome +acephalia|1 +(noun)|acephaly|acephalism|abnormality|abnormalcy|abnormal condition +acephalism|1 +(noun)|acephalia|acephaly|abnormality|abnormalcy|abnormal condition +acephalous|1 +(adj)|headless +acephaly|1 +(noun)|acephalia|acephalism|abnormality|abnormalcy|abnormal condition +acer|1 +(noun)|Acer|genus Acer|dicot genus|magnoliopsid genus +acer argutum|1 +(noun)|pointed-leaf maple|Acer argutum|maple +acer campestre|1 +(noun)|hedge maple|field maple|Acer campestre|maple +acer circinatum|1 +(noun)|vine maple|Acer circinatum|maple +acer glabrum|1 +(noun)|dwarf maple|Rocky-mountain maple|Acer glabrum|maple +acer japonicum|1 +(noun)|Japanese maple|full moon maple|Acer japonicum|maple +acer macrophyllum|1 +(noun)|Oregon maple|big-leaf maple|Acer macrophyllum|maple +acer negundo|1 +(noun)|box elder|ash-leaved maple|Acer negundo|maple +acer negundo californicum|1 +(noun)|California box elder|Acer negundo Californicum|box elder|ash-leaved maple|Acer negundo +acer palmatum|1 +(noun)|Japanese maple|Acer palmatum|maple +acer pennsylvanicum|1 +(noun)|moosewood|moose-wood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple +acer platanoides|1 +(noun)|Norway maple|Acer platanoides|maple +acer pseudoplatanus|1 +(noun)|sycamore|great maple|scottish maple|Acer pseudoplatanus|maple +acer rubrum|1 +(noun)|red maple|scarlet maple|swamp maple|Acer rubrum|maple +acer saccharinum|1 +(noun)|silver maple|Acer saccharinum|maple +acer saccharum|1 +(noun)|sugar maple|rock maple|Acer saccharum|maple +acer spicatum|1 +(noun)|mountain maple|mountain alder|Acer spicatum|maple +aceraceae|1 +(noun)|Aceraceae|family Aceraceae|maple family|dicot family|magnoliopsid family +acerate|1 +(adj)|acerose|acicular|needle-shaped|simple |unsubdivided|pointed +acerate leaf|1 +(noun)|needle|simple leaf +acerb|2 +(adj)|acerbic|astringent|sharp|sour +(adj)|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +acerbate|2 +(verb)|embitter|envenom +(verb)|change|alter|modify +acerbic|2 +(adj)|acerb|astringent|sharp|sour +(adj)|acerb|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +acerbity|3 +(noun)|bitterness|bitter +(noun)|tartness|sourness|sour|acidity +(noun)|bitterness|acrimony|jaundice|disagreeableness +acerola|2 +(noun)|barbados cherry|Surinam cherry|West Indian cherry|Malpighia glabra|dicot|dicotyledon|magnoliopsid|exogen +(noun)|barbados cherry|surinam cherry|West Indian cherry|berry +acerose|1 +(adj)|acerate|acicular|needle-shaped|simple |unsubdivided|pointed +acervate|1 +(adj)|fruiting body +acervulus|1 +(noun)|fruiting body +acetabular|1 +(adj)|cotyloid|cotyloidal|concave +acetabulum|1 +(noun)|cotyloid cavity|socket +acetal|1 +(noun)|organic compound +acetaldehyde|1 +(noun)|ethanal|aldehyde +acetaldol|1 +(noun)|aldol|aldehyde-alcohol +acetamide|1 +(noun)|ethanamide|amide +acetaminophen|1 +(noun)|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +acetanilid|1 +(noun)|acetanilide|phenylacetamide|analgesic|anodyne|painkiller|pain pill +acetanilide|1 +(noun)|acetanilid|phenylacetamide|analgesic|anodyne|painkiller|pain pill +acetate|2 +(noun)|ethanoate|salt +(noun)|acetate rayon|rayon +acetate disk|1 +(noun)|phonograph recording disk|disk|disc +acetate rayon|1 +(noun)|acetate|rayon +acetic|1 +(adj)|carboxylic acid +acetic acid|1 +(noun)|ethanoic acid|carboxylic acid +acetic anhydride|1 +(noun)|anhydride +acetify|2 +(verb)|sour|acidify|acidulate|change taste +(verb)|acidify|change state|turn +acetoacetic acid|1 +(noun)|ketone body|acetone body +acetone|1 +(noun)|propanone|dimethyl ketone|ketone|solvent|dissolvent|dissolver|dissolving agent|resolvent +acetone body|1 +(noun)|ketone body|ketone +acetonemia|1 +(noun)|ketonemia|ketosis|symptom +acetonic|1 +(adj)|ketone|solvent|dissolvent|dissolver|dissolving agent|resolvent +acetonuria|1 +(noun)|ketonuria|ketoaciduria|symptom +acetophenetidin|1 +(noun)|acetphenetidin|phenacetin|analgesic|anodyne|painkiller|pain pill +acetose|1 +(adj)|acetous|vinegary|sour +acetous|1 +(adj)|acetose|vinegary|sour +acetphenetidin|1 +(noun)|acetophenetidin|phenacetin|analgesic|anodyne|painkiller|pain pill +acetum|2 +(noun)|acetic acid|ethanoic acid +(noun)|vinegar|condiment +acetyl|1 +(noun)|acetyl group|acetyl radical|ethanoyl group|ethanoyl radical|acyl|acyl group +acetyl chloride|1 +(noun)|ethanoyl chloride|acyl halide|acid halide +acetyl group|1 +(noun)|acetyl|acetyl radical|ethanoyl group|ethanoyl radical|acyl|acyl group +acetyl radical|1 +(noun)|acetyl|acetyl group|ethanoyl group|ethanoyl radical|acyl|acyl group +acetylate|2 +(verb)|acetylize|acetylise|change +(verb)|acetylize|acetylise|change|alter|modify +acetylation|1 +(noun)|acylation +acetylcholine|1 +(noun)|neurotransmitter +acetylene|1 +(noun)|ethyne|alkyne|aliphatic compound +acetylenic|1 +(adj)|aliphatic compound +acetylic|1 +(adj)|carboxylic acid +acetylise|2 +(verb)|acetylate|acetylize|change +(verb)|acetylate|acetylize|change|alter|modify +acetylize|2 +(verb)|acetylate|acetylise|change +(verb)|acetylate|acetylise|change|alter|modify +acetylsalicylic acid|1 +(noun)|aspirin|Bayer|Empirin|salicylate|analgesic|anodyne|painkiller|pain pill +achaean|1 +(noun)|Achaean|Achaian|Greek|Hellene +achaian|1 +(noun)|Achaean|Achaian|Greek|Hellene +ache|4 +(noun)|aching|pain|hurting +(verb)|hurt|suffer|perceive|comprehend +(verb)|yearn|yen|pine|languish|hanker|long|yearn +(verb)|smart|hurt|cause to be perceived +achene|1 +(noun)|fruit +achenial|1 +(adj)|fruit +acheron|1 +(noun)|Acheron|River Acheron|river +acheronian|1 +(adj)|Acheronian|Acherontic|Stygian|dark +acherontia|1 +(noun)|Acherontia|genus Acherontia|arthropod genus +acherontia atropos|1 +(noun)|death's-head moth|Acherontia atropos|hawkmoth|hawk moth|sphingid|sphinx moth|hummingbird moth +acherontic|1 +(adj)|Acheronian|Acherontic|Stygian|dark +acheson|1 +(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman|solon|national leader +acheson process|1 +(noun)|Acheson process|industrial process +acheta|1 +(noun)|Acheta|genus Acheta|arthropod genus +acheta assimilis|1 +(noun)|field cricket|Acheta assimilis|cricket +acheta domestica|1 +(noun)|European house cricket|Acheta domestica|cricket +achievability|1 +(noun)|attainability|attainableness|possibility|possibleness +achievable|1 +(adj)|accomplishable|doable|realizable|possible +achieve|1 +(verb)|accomplish|attain|reach|succeed|win|come through|bring home the bacon|deliver the goods +achievement|1 +(noun)|accomplishment|action +achiever|1 +(noun)|winner|success|succeeder|person|individual|someone|somebody|mortal|human|soul +achille ratti|1 +(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +achillea|1 +(noun)|herb|herbaceous plant +achillea millefolium|1 +(noun)|yarrow|milfoil|Achillea millefolium|achillea +achillea ptarmica|1 +(noun)|sneezeweed yarrow|sneezewort|Achillea ptarmica|achillea +achilles|1 +(noun)|Achilles|mythical being +achilles' heel|1 +(noun)|Achilles' heel|weak part|weak spot|soft spot +achilles tendon|1 +(noun)|Achilles tendon|tendon of Achilles|tendon|sinew +achimenes|1 +(noun)|hot water plant|flower +aching|2 +(adj)|achy|painful +(noun)|ache|pain|hurting +achira|1 +(noun)|indian shot|arrowroot|Canna indica|Canna edulis|canna +achlamydeous|1 +(adj)|achlamydeous +achlorhydria|1 +(noun)|disorder|upset +achlorhydric|1 +(adj)|acid +achmad sukarno|1 +(noun)|Sukarno|Achmad Sukarno|statesman|solon|national leader +achoerodus|1 +(noun)|Achoerodus|genus Achoerodus|fish genus +achoerodus gouldii|1 +(noun)|pigfish|giant pigfish|Achoerodus gouldii|wrasse +acholia|1 +(noun)|cholestasis|disorder|upset +achomawi|2 +(noun)|Achomawi|Hokan|Hoka +(noun)|Achomawi|Shastan +achondrite|1 +(noun)|rock|stone +achondritic|2 +(adj)|rock|stone +(adj)|achondritic +achondroplasia|1 +(noun)|achondroplasty|osteosclerosis congenita|chondrodystrophy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +achondroplastic|1 +(adj)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +achondroplasty|1 +(noun)|achondroplasia|osteosclerosis congenita|chondrodystrophy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +achras|1 +(noun)|Achras|genus Achras|dicot genus|magnoliopsid genus +achras zapota|1 +(noun)|sapodilla|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree +achromasia|1 +(noun)|lividness|lividity|luridness|paleness|pallidness|pallor|wanness|complexion|skin color|skin colour +achromatic|3 +(adj)|white |albescent|light|light-colored +(adj)|black |dark +(adj)|achromatic |argent|silver|silvery|silverish|ash-gray|ash-grey|ashy|auburn|reddish-brown|canescent|chalky|charcoal|charcoal-gray|charcoal-grey|coal-black|jet|jet-black|pitchy|sooty|ebon|ebony|gray|grey|grayish|greyish|hueless|ink-black|inky|inky-black|iron-gray|iron-grey|lily-white|milk-white|neutral|oxford-gray|oxford-grey|pearly|pearly-white|sable|slate-gray|slaty|slatey|stone-gray|snow-white|snowy|whitish|off-white|blackish|colorless|colourless +achromatic color|1 +(noun)|achromatic colour|color|colour|coloring|colouring +achromatic colour|1 +(noun)|achromatic color|color|colour|coloring|colouring +achromatic lens|1 +(noun)|compound lens +achromatic vision|1 +(noun)|sight|vision|visual sense|visual modality +achromatin|1 +(noun)|body substance +achromatinic|1 +(adj)|achromatinic |body substance +achromatise|1 +(verb)|achromatize|change|alter|modify +achromatism|1 +(noun)|colorlessness|colourlessness|visual property +achromatize|1 +(verb)|achromatise|change|alter|modify +achromatous|1 +(adj)|uncolored |uncoloured +achromia|1 +(noun)|colorlessness|colourlessness|achromatism +achromic|1 +(adj)|achromous|uncolored |uncoloured +achromous|1 +(adj)|achromic|uncolored |uncoloured +achromycin|1 +(noun)|tetracycline|Achromycin|antibacterial|antibacterial drug|bactericide +achy|1 +(adj)|aching|painful +achylia|1 +(noun)|achylia gastrica|disorder|upset +achylia gastrica|1 +(noun)|achylia|disorder|upset +acicula|1 +(noun)|part|piece +acicular|1 +(adj)|acerate|acerose|needle-shaped|simple |unsubdivided|pointed +aciculate|1 +(adj)|part|piece +acid|4 +(adj)|acerb|acerbic|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +(adj)|acidic +(noun)|compound|chemical compound +(noun)|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +acid-base balance|1 +(noun)|acid-base equilibrium|chemical equilibrium|equilibrium +acid-base equilibrium|1 +(noun)|acid-base balance|chemical equilibrium|equilibrium +acid-base indicator|1 +(noun)|indicator +acid-fast|1 +(adj)|impervious |imperviable +acid-forming|1 +(adj)|acidic +acid-loving|1 +(adj)|acid-loving |acidophilic|acidophilous|aciduric +acid-wash|1 +(verb)|wash|launder +acid anhydrides|1 +(noun)|acyl anhydrides|organic compound +acid dye|1 +(noun)|dye|dyestuff +acid halide|1 +(noun)|acyl halide|organic compound +acid head|1 +(noun)|head +acid hydrogen|1 +(noun)|acidic hydrogen|hydrogen atom +acid precipitation|1 +(noun)|acid rain|air pollution +acid rain|1 +(noun)|acid precipitation|air pollution +acid rock|1 +(noun)|psychedelic rock|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +acid test|1 +(noun)|appraisal|assessment +acid value|1 +(noun)|definite quantity +acidemia|1 +(noun)|blood disease|blood disorder +acidic|2 +(adj)|acidic |acid|acid-forming +(adj)|acidulent|acidulous|sour +acidic hydrogen|1 +(noun)|acid hydrogen|hydrogen atom +acidification|1 +(noun)|natural process|natural action|action|activity +acidify|2 +(verb)|sour|acidulate|acetify|change taste +(verb)|acetify|change state|turn +acidimetric|1 +(adj)|volumetric analysis +acidimetry|1 +(noun)|volumetric analysis +acidity|3 +(noun)|sourness|sour|taste property +(noun)|acidulousness|sour|sourness|tartness +(noun)|pH|pH scale +acidophil|1 +(noun)|acidophile|bacteria|bacterium +acidophile|1 +(noun)|acidophil|bacteria|bacterium +acidophilic|1 +(adj)|acidophilous|aciduric|acid-loving +acidophilous|1 +(adj)|acidophilic|aciduric|acid-loving +acidophilus milk|1 +(noun)|milk +acidosis|1 +(noun)|pathology +acidotic|1 +(adj)|pathology +acidulate|1 +(verb)|sour|acidify|acetify|change taste +acidulated|1 +(adj)|sour +acidulent|1 +(adj)|acidic|acidulous|sour +acidulous|1 +(adj)|acidic|acidulent|sour +acidulousness|1 +(noun)|acidity|sour|sourness|tartness +aciduric|1 +(adj)|acidophilic|acidophilous|acid-loving +acinar|2 +(adj)|acinous|acinose|acinic|sac +(adj)|drupelet +acinic|1 +(adj)|acinar|acinous|acinose|sac +acinonyx|1 +(noun)|Acinonyx|genus Acinonyx|mammal genus +acinonyx jubatus|1 +(noun)|cheetah|chetah|Acinonyx jubatus|big cat|cat +acinos|1 +(noun)|Acinos|genus Acinos|asterid dicot genus +acinos arvensis|1 +(noun)|basil thyme|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb|herbaceous plant +acinose|1 +(adj)|acinar|acinous|acinic|sac +acinous|1 +(adj)|acinar|acinose|acinic|sac +acinus|2 +(noun)|drupelet +(noun)|sac +acipenser|1 +(noun)|Acipenser|genus Acipenser|fish genus +acipenser huso|1 +(noun)|beluga|hausen|white sturgeon|Acipenser huso|sturgeon +acipenser transmontanus|1 +(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon +acipenseridae|1 +(noun)|Acipenseridae|family Acipenseridae|fish family +ack-ack|1 +(noun)|antiaircraft|antiaircraft gun|flak|flack|pom-pom|ack-ack gun|gun +ack-ack gun|1 +(noun)|antiaircraft|antiaircraft gun|flak|flack|pom-pom|ack-ack|gun +ackee|1 +(noun)|akee|edible fruit +acknowledge|6 +(verb)|admit|declare|adjudge|hold +(verb)|receipt|communicate|pass on|pass|put across +(verb)|notice|react|respond +(verb)|recognize|recognise|thank|give thanks +(verb)|accept +(verb)|recognize|recognise|know|accept +acknowledgeable|1 +(adj)|identifiable +acknowledged|2 +(adj)|acknowledged |accepted|recognized|recognised|self-confessed|assumed|assumptive|taken for granted|declarable|given|granted|putative|purported|reputed|supposed|known +(adj)|unquestionable +acknowledgement|2 +(noun)|recognition|acknowledgment|acceptance +(noun)|acknowledgment|message|content|subject matter|substance +acknowledgment|3 +(noun)|recognition|acknowledgement|acceptance +(noun)|citation|credit|reference|mention|quotation|note|annotation|notation +(noun)|acknowledgement|message|content|subject matter|substance +aclant|1 +(noun)|Allied Command Atlantic|ACLANT|headquarters +aclinic line|1 +(noun)|magnetic equator|line +acme|2 +(noun)|height|elevation|peak|pinnacle|summit|superlative|top|degree|level|stage|point +(noun)|vertex|peak|apex|extreme point|extreme|extremum +acne|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition|inflammatory disease +acne rosacea|1 +(noun)|rosacea|acne +acne vulgaris|1 +(noun)|acne +acned|1 +(adj)|pimpled|pimply|pustulate|blemished +acneiform|1 +(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition|inflammatory disease +acnidosporidia|1 +(noun)|Acnidosporidia|subclass Acnidosporidia|class +acocanthera|1 +(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus|magnoliopsid genus +acocanthera oblongifolia|1 +(noun)|winter sweet|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub|bush +acocanthera oppositifolia|1 +(noun)|bushman's poison|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub|bush +acocanthera spectabilis|1 +(noun)|winter sweet|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub|bush +acocanthera venenata|1 +(noun)|bushman's poison|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub|bush +acokanthera|1 +(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus|magnoliopsid genus +acold|1 +(adj)|cold +acolyte|1 +(noun)|clergyman|reverend|man of the cloth|holy order|order +aconcagua|1 +(noun)|Aconcagua|mountain peak +aconite|1 +(noun)|poisonous plant +aconitum|1 +(noun)|Aconitum|genus Aconitum|magnoliid dicot genus +aconitum lycoctonum|1 +(noun)|wolfsbane|wolfbane|wolf's bane|Aconitum lycoctonum|aconite +aconitum napellus|1 +(noun)|monkshood|helmetflower|helmet flower|Aconitum napellus|aconite +acoraceae|1 +(noun)|Acoraceae|subfamily Acoraceae|monocot family|liliopsid family +acorea|1 +(noun)|abnormality|abnormalcy|abnormal condition +acores|1 +(noun)|Azores|Acores|island +acorn|1 +(noun)|fruit +acorn barnacle|1 +(noun)|rock barnacle|Balanus balanoides|barnacle|cerriped|cerripede +acorn cup|1 +(noun)|cupule|cup +acorn squash|2 +(noun)|winter squash|winter squash plant +(noun)|winter squash +acorn tube|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +acorus|1 +(noun)|Acorus|genus Acorus|monocot genus|liliopsid genus +acorus calamus|1 +(noun)|sweet flag|calamus|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant|bog plant|swamp plant +acousma|1 +(noun)|auditory hallucination|hallucination +acoustic|2 +(adj)|acoustical|physics|physical science|natural philosophy +(noun)|remedy|curative|cure +acoustic aphasia|1 +(noun)|auditory aphasia|word deafness|aphasia +acoustic buoy|1 +(noun)|buoy +acoustic delay line|1 +(noun)|sonic delay line|delay line +acoustic device|1 +(noun)|device +acoustic gramophone|1 +(noun)|gramophone|record player|phonograph +acoustic guitar|1 +(noun)|guitar +acoustic impedance|1 +(noun)|acoustic resistance|acoustic reactance|resistance +acoustic meatus|1 +(noun)|auditory meatus|ear canal|auditory canal|external auditory canal|meatus +acoustic modem|1 +(noun)|modem +acoustic nerve|1 +(noun)|auditory nerve|vestibulocochlear nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve +acoustic phenomenon|1 +(noun)|physical phenomenon +acoustic power|1 +(noun)|sound pressure level|intensity|strength|intensity level +acoustic projection|1 +(noun)|projection|sound projection|acoustic phenomenon +acoustic radiation pressure|1 +(noun)|radiation pressure|corpuscular-radiation pressure +acoustic reactance|1 +(noun)|acoustic resistance|acoustic impedance|resistance +acoustic resistance|1 +(noun)|acoustic impedance|acoustic reactance|resistance +acoustic spectrum|1 +(noun)|sound spectrum|spectrum +acoustic storage|1 +(noun)|memory device|storage device +acoustic wave|1 +(noun)|sound wave|wave|undulation +acoustical|1 +(adj)|acoustic|physics|physical science|natural philosophy +acoustician|1 +(noun)|physicist +acousticophobia|1 +(noun)|phonophobia|simple phobia +acoustics|2 +(noun)|physics|physical science|natural philosophy +(noun)|acoustic|remedy|curative|cure +acquaint|3 +(verb)|introduce|present|inform +(verb)|familiarize|familiarise|inform +(verb)|inform +acquaintance|3 +(noun)|familiarity|conversance|conversancy|information +(noun)|acquaintanceship|relationship +(noun)|friend|person|individual|someone|somebody|mortal|human|soul +acquaintanceship|1 +(noun)|acquaintance|relationship +acquainted|1 +(adj)|acquainted with|familiar with|familiar +acquainted with|1 +(adj)|acquainted|familiar with|familiar +acquiesce|1 +(verb)|assent|accede|agree +acquiescence|2 +(noun)|acceptance +(noun)|assent|agreement +acquiescent|1 +(adj)|biddable|compliant|obedient +acquirable|1 +(adj)|available +acquire|7 +(verb)|get +(verb)|assume|adopt|take on|take|change +(verb)|grow|develop|produce|get|change +(verb)|situate|locate +(verb)|win|gain|get +(verb)|learn|larn +(verb)|develop|evolve|change +acquired|1 +(adj)|noninheritable |nonheritable +acquired hemochromatosis|1 +(noun)|hemochromatosis|iron-storage disease|iron overload|bronzed diabetes +acquired immune deficiency syndrome|1 +(noun)|AIDS|immunodeficiency|infectious disease +acquired immunity|1 +(noun)|immunity|resistance +acquired reflex|1 +(noun)|conditional reflex|conditioned reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction|learned response +acquired taste|1 +(noun)|preference|penchant|predilection|taste +acquirement|1 +(noun)|skill|accomplishment|acquisition|attainment|ability|power +acquirer|4 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|depository financial institution|bank|banking concern|banking company +(noun)|financial institution|financial organization|financial organisation +(noun)|merchant bank|depository financial institution|bank|banking concern|banking company +acquiring|1 +(noun)|getting|deed|feat|effort|exploit +acquisition|4 +(noun)|acquiring|getting +(noun)|transferred property|transferred possession +(noun)|learning|basic cognitive process +(noun)|skill|accomplishment|acquirement|attainment|ability|power +acquisition agreement|1 +(noun)|merger agreement|contract +acquisitive|1 +(adj)|acquisitive |accumulative|avaricious|covetous|grabby|grasping|greedy|prehensile|possessive|plundering|predaceous|predacious|predatory|rapacious|ravening|voracious|sordid +acquisitiveness|1 +(noun)|greed +acquit|2 +(verb)|assoil|clear|discharge|exonerate|exculpate|pronounce|label|judge +(verb)|behave|bear|deport|conduct|comport|carry|hold|carry|bear|act|move +acquittal|1 +(noun)|final judgment|final decision +acquittance|1 +(noun)|release|legal document|legal instrument|official document|instrument +acquitted|1 +(adj)|not guilty|innocent |guiltless|clean-handed +acragas|1 +(noun)|Agrigento|Acragas|Girgenti|town +acrasiomycetes|1 +(noun)|Acrasiomycetes|class Acrasiomycetes|class +acre|3 +(noun)|area unit|square measure +(noun)|Acre|district|territory|territorial dominion|dominion +(noun)|Acre|Akko|Akka|Accho|town|port +acre-foot|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +acre inch|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +acreage|1 +(noun)|land area|area|expanse|surface area +acres|4 +(noun)|estate|land|landed estate|demesne|real property|real estate|realty +(noun)|acre|area unit|square measure +(noun)|Acre|district|territory|territorial dominion|dominion +(noun)|Acre|Akko|Akka|Accho|town|port +acrid|2 +(adj)|pungent +(adj)|acerb|acerbic|acid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +acridid|1 +(noun)|short-horned grasshopper|grasshopper|hopper +acrididae|1 +(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family +acridity|3 +(noun)|smell|odor|odour|olfactory sensation|olfactory perception +(noun)|acridness|bitterness|bitter +(noun)|acridness|disagreeableness +acridness|2 +(noun)|acridity|bitterness|bitter +(noun)|acridity|disagreeableness +acridotheres|1 +(noun)|Acridotheres|genus Acridotheres|bird genus +acridotheres tristis|1 +(noun)|crested myna|Acridotheres tristis|myna|mynah|mina|minah|myna bird|mynah bird +acrilan|1 +(noun)|polypropenonitrile|Acrilan|acrylic|acrylic resin|acrylate resin +acrimonious|1 +(adj)|bitter|resentful +acrimony|1 +(noun)|bitterness|acerbity|jaundice|disagreeableness +acris|1 +(noun)|Acris|genus Acris|amphibian genus +acris crepitans|1 +(noun)|northern cricket frog|Acris crepitans|cricket frog +acris gryllus|1 +(noun)|eastern cricket frog|Acris gryllus|cricket frog +acritical|1 +(adj)|noncritical |noncrucial +acroanaesthesia|1 +(noun)|acroanesthesia|regional anesthesia|regional anaesthesia +acroanesthesia|1 +(noun)|acroanaesthesia|regional anesthesia|regional anaesthesia +acrobat|1 +(noun)|athlete|jock +acrobates|1 +(noun)|Acrobates|genus Acrobates|mammal genus +acrobatic|1 +(adj)|athletic|gymnastic|active +acrobatic feat|1 +(noun)|acrobatic stunt|stunt +acrobatic stunt|1 +(noun)|acrobatic feat|stunt +acrobatics|2 +(noun)|tumbling|gymnastics|gymanstic exercise +(noun)|aerobatics|stunting|stunt flying|flight|flying +acrocarp|1 +(noun)|acrocarpous moss|moss +acrocarpous|1 +(adj)|acrocarpous +acrocarpous moss|1 +(noun)|acrocarp|moss +acrocarpus|1 +(noun)|Acrocarpus|genus Acrocarpus|rosid dicot genus +acrocarpus fraxinifolius|1 +(noun)|shingle tree|Acrocarpus fraxinifolius|tree +acrocentric|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +acrocentric chromosome|1 +(noun)|chromosome +acrocephalus|1 +(noun)|Acrocephalus|genus Acrocephalus|bird genus +acrocephalus schoenobaenus|1 +(noun)|sedge warbler|sedge bird|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler|true warbler +acrocephaly|1 +(noun)|oxycephaly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +acroclinium|1 +(noun)|Acroclinium|genus Acroclinium|asterid dicot genus +acroclinium roseum|1 +(noun)|pink-and-white everlasting|pink paper daisy|Acroclinium roseum|everlasting|everlasting flower +acrocomia|1 +(noun)|Acrocomia|genus Acrocomia|monocot genus|liliopsid genus +acrocomia aculeata|1 +(noun)|grugru|gri-gri|grugru palm|macamba|Acrocomia aculeata|feather palm +acrocomia vinifera|1 +(noun)|coyol|coyol palm|Acrocomia vinifera|feather palm +acrocyanosis|1 +(noun)|Raynaud's sign|cyanosis +acrodont|1 +(noun)|animal|animate being|beast|brute|creature|fauna +acrogen|1 +(noun)|plant|flora|plant life +acrogenic|1 +(adj)|acrogenous|plant|flora|plant life +acrogenous|1 +(adj)|acrogenic|plant|flora|plant life +acrolein|1 +(noun)|propenal|aldehyde +acromegalia|1 +(noun)|acromegaly|hypertrophy +acromegalic|1 +(adj)|pituitary|unshapely +acromegaly|1 +(noun)|acromegalia|hypertrophy +acromial process|1 +(noun)|acromion|process|outgrowth|appendage +acromicria|1 +(noun)|acromikria|abnormality|abnormalcy|abnormal condition +acromikria|1 +(noun)|acromicria|abnormality|abnormalcy|abnormal condition +acromion|1 +(noun)|acromial process|process|outgrowth|appendage +acromphalus|1 +(noun)|abnormality|abnormalcy|abnormal condition +acromyotonia|1 +(noun)|myotonia +acronym|1 +(noun)|form|word form|signifier|descriptor +acronymic|1 +(adj)|acronymous|form|word form|signifier|descriptor +acronymous|1 +(adj)|acronymic|form|word form|signifier|descriptor +acropetal|1 +(adj)|acropetal +acrophobia|1 +(noun)|simple phobia +acrophobic|1 +(adj)|afraid +acrophony|1 +(noun)|naming +acropolis|1 +(noun)|bastion|citadel +acropora|1 +(noun)|Acropora|genus Acropora|coelenterate genus +acroscopic|1 +(adj)|acroscopic +acrosome|1 +(noun)|process|outgrowth|appendage +across|3 +(adj)|crossed |crosstown|cross-town|decussate|intersectant|intersecting +(adv)|over +(adv)|crosswise|crossways +across-the-board|1 +(adj)|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|panoptic|wide|comprehensive +across the country|1 +(adv)|nationally|nationwide|across the nation +across the nation|1 +(adv)|nationally|nationwide|across the country +acrostic|2 +(noun)|word square|problem +(noun)|literary composition|literary work +acrostichum|1 +(noun)|Acrostichum|genus Acrostichum|fern genus +acrostichum aureum|1 +(noun)|golden fern|leather fern|Acrostichum aureum|fern +acrylamide|1 +(noun)|amide +acrylate|1 +(noun)|propenoate|salt +acrylate resin|1 +(noun)|acrylic|acrylic resin|synthetic resin +acrylic|4 +(noun)|acrylic fiber|man-made fiber|synthetic fiber +(noun)|acrylic resin|acrylate resin|synthetic resin +(noun)|acrylic paint|paint +(noun)|fabric|cloth|material|textile +acrylic acid|1 +(noun)|propenoic acid|carboxylic acid +acrylic fiber|1 +(noun)|acrylic|man-made fiber|synthetic fiber +acrylic paint|1 +(noun)|acrylic|paint +acrylic resin|1 +(noun)|acrylic|acrylate resin|synthetic resin +acrylonitrile|1 +(noun)|propenonitrile|vinyl cyanide|nitrile|nitril|cyanide +act|14 +(noun)|enactment|legal document|legal instrument|official document|instrument +(noun)|human action|human activity +(noun)|dramatic composition|dramatic work +(noun)|routine|number|turn|bit|performance|public presentation +(noun)|expression|manifestation|reflection|reflexion +(verb)|move|act on|act up|act upon +(verb)|behave|do|act up +(verb)|play|represent|re-create +(verb)|serve +(verb)|play|act as|behave|do +(verb)|be +(verb)|work|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|dissemble|pretend +(verb)|play|roleplay|playact|perform +act as|2 +(verb)|serve|function +(verb)|act|play|act|behave|do +act involuntarily|1 +(verb)|act reflexively|act|behave|do +act of god|1 +(noun)|act of God|force majeure|vis major|inevitable accident|unavoidable casualty|calamity|catastrophe|disaster|tragedy|cataclysm +act of terrorism|1 +(noun)|terrorism|terrorist act|coercion +act on|2 +(verb)|pursue|follow up on|react|oppose +(verb)|act|move +act out|2 +(verb)|act|play|represent +(verb)|enact|reenact|act|play|represent +act reflexively|1 +(verb)|act involuntarily|act|behave|do +act superior|1 +(verb)|lord it over|queen it over|put on airs|act|move +act up|2 +(verb)|carry on|misbehave|misconduct|misdemean +(verb)|ache|smart|hurt +act upon|1 +(verb)|influence|work|affect|impact|bear upon|bear on|touch on|touch +actable|1 +(adj)|actable +actaea|1 +(noun)|Actaea|genus Actaea|magnoliid dicot genus +actaea alba|1 +(noun)|white baneberry|white cohosh|white bead|doll's eyes|Actaea alba|baneberry|cohosh|herb Christopher +actaea rubra|1 +(noun)|red baneberry|redberry|red-berry|snakeberry|Actaea rubra|baneberry|cohosh|herb Christopher +acth|1 +(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone|endocrine|internal secretion +actias|1 +(noun)|Actias|genus Actias|arthropod genus +actias luna|1 +(noun)|luna moth|Actias luna|saturniid|saturniid moth +actifed|1 +(noun)|Actifed|antihistamine|nasal decongestant +actin|1 +(noun)|simple protein +actinal|1 +(adj)|actinal +actinaria|1 +(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order +acting|2 +(adj)|impermanent |temporary +(noun)|playing|playacting|performing|activity|performing arts +acting out|2 +(noun)|effusion|gush|outburst|blowup|ebullition +(noun)|display +actinia|2 +(noun)|Actinia|genus Actinia|coelenterate genus +(noun)|actinian|actiniarian|sea anemone|anemone +actinian|1 +(noun)|actinia|actiniarian|sea anemone|anemone +actiniaria|1 +(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order +actiniarian|1 +(noun)|actinia|actinian|sea anemone|anemone +actinic|1 +(adj)|property +actinic dermatitis|1 +(noun)|dermatitis +actinic keratosis|1 +(noun)|keratosis +actinic radiation|1 +(noun)|actinic ray|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +actinic ray|1 +(noun)|actinic radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +actinide|1 +(noun)|actinoid|actinon|group|grouping +actinide series|2 +(noun)|series +(noun)|series +actinidia|1 +(noun)|Actinidia|genus Actinidia|dilleniid dicot genus +actinidia arguta|1 +(noun)|bower actinidia|tara vine|Actinidia arguta|vine +actinidia chinensis|1 +(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine +actinidia deliciosa|1 +(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine +actinidia polygama|1 +(noun)|silvervine|silver vine|Actinidia polygama|vine +actinidiaceae|1 +(noun)|Actinidiaceae|family Actinidiaceae|dilleniid dicot family +actiniopteris|1 +(noun)|Actiniopteris|genus Actiniopteris|fern genus +actinism|1 +(noun)|property +actinium|1 +(noun)|Ac|atomic number 89|chemical element|element +actinoid|2 +(adj)|actinomorphic |actinomorphous +(noun)|actinide|actinon|group|grouping +actinolite|1 +(noun)|amphibole +actinomeris|1 +(noun)|Actinomeris|genus Actinomeris|asterid dicot genus +actinomeris alternifolia|1 +(noun)|wingstem|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +actinometer|1 +(noun)|measuring instrument|measuring system|measuring device +actinometric|1 +(adj)|actinometrical|measurement|measuring|measure|mensuration +actinometrical|1 +(adj)|actinometric|measurement|measuring|measure|mensuration +actinometry|1 +(noun)|measurement|measuring|measure|mensuration +actinomorphic|1 +(adj)|actinomorphic |actinomorphous|actinoid +actinomorphous|1 +(adj)|actinomorphic |actinoid +actinomyces|1 +(noun)|eubacteria|eubacterium|true bacteria +actinomycetaceae|1 +(noun)|Actinomycetaceae|family Actinomycetaceae|bacteria family +actinomycetal|1 +(adj)|actinomycetous|eubacteria|eubacterium|true bacteria +actinomycetales|1 +(noun)|Actinomycetales|order Actinomycetales|animal order +actinomycete|1 +(noun)|eubacteria|eubacterium|true bacteria +actinomycetous|1 +(adj)|actinomycetal|eubacteria|eubacterium|true bacteria +actinomycin|1 +(noun)|antibiotic|antibiotic drug +actinomycosis|1 +(noun)|zoonosis|zoonotic disease +actinomycotic|1 +(adj)|zoonosis|zoonotic disease +actinomyxidia|1 +(noun)|Actinomyxidia|order Actinomyxidia|animal order +actinomyxidian|1 +(noun)|sporozoan +actinon|1 +(noun)|actinoid|actinide|group|grouping +actinopod|1 +(noun)|sarcodinian|sarcodine +actinopoda|1 +(noun)|Actinopoda|subclass Actinopoda|class +actinotherapy|1 +(noun)|radiotherapy|radiation therapy|radiation|irradiation|therapy +actinozoa|2 +(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class +(noun)|anthozoan|actinozoan|coelenterate|cnidarian +actinozoan|1 +(noun)|anthozoan|coelenterate|cnidarian +action|12 +(noun)|act|human action|human activity +(noun)|activity|activeness|state +(noun)|legal action|action at law|proceeding|legal proceeding|proceedings +(noun)|group action +(noun)|military action|group action +(noun)|natural process|natural action|activity|process +(noun)|plot +(noun)|action mechanism|mechanism +(noun)|drive +(noun)|work +(verb)|sue|litigate|process|challenge +(verb)|carry through|accomplish|execute|carry out|fulfill|fulfil|complete|finish|effect|effectuate|bring about|set up +action at law|1 +(noun)|legal action|action|proceeding|legal proceeding|proceedings +action mechanism|1 +(noun)|action|mechanism +action officer|1 +(noun)|case officer +action painting|1 +(noun)|Abstract Expressionism|artistic movement|art movement +action plant|1 +(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|humble plant|Mimosa pudica|mimosa +action potential|1 +(noun)|nerve impulse|impulse +action replay|1 +(noun)|replay|reproduction|replication +action spectrum|1 +(noun)|spectrum +actionable|1 +(adj)|unjust +actitis|1 +(noun)|Actitis|genus Actitis|bird genus +actitis hypoleucos|1 +(noun)|European sandpiper|Actitis hypoleucos|sandpiper +actitis macularia|1 +(noun)|spotted sandpiper|Actitis macularia|sandpiper +actium|2 +(noun)|Actium|town +(noun)|Actium|town|naval battle +activase|1 +(noun)|tissue plasminogen activator|Activase|thrombolytic|thrombolytic agent|clot buster +activate|5 +(verb)|trip|actuate|trigger|set off|spark off|spark|trigger off|touch off|initiate|pioneer +(verb)|change|alter|modify +(verb)|change|alter|modify +(verb)|aerate|change|alter|modify +(verb)|change|alter|modify +activated|4 +(adj)|treated +(adj)|excited|reactive +(adj)|active +(adj)|active +activated carbon|1 +(noun)|activated charcoal|carbon|C|atomic number 6 +activated charcoal|1 +(noun)|activated carbon|carbon|C|atomic number 6 +activating|2 +(adj)|actuating|causative +(noun)|energizing|activation|activity +activating agent|1 +(noun)|activator +activation|3 +(noun)|stimulation +(noun)|energizing|activating|activity +(noun)|beginning|start|commencement +activation energy|1 +(noun)|energy of activation|energy +activator|1 +(noun)|substance|matter +active|19 +(adj)|active |progressive +(adj)|combat-ready|fighting|operational +(adj)|active |activist|activistic|hands-on|proactive +(adj)|participating|involved +(adj)|active |about|astir|acrobatic|athletic|gymnastic|agile|nimble|quick|spry|hot|hyperactive|overactive|lively|on the go|energetic|lively +(adj)|active |activated +(adj)|active |brisk|bustling|busy|going|in full swing|open +(adj)|alive|existent |existing +(adj)|active +(adj)|active +(adj)|active |dynamic +(adj)|active |alive|live|eruptive +(adj)|active |surface-active +(adj)|active |activated|on|on duty|on-duty|practicing +(adj)|moving +(adj)|physical|energetic +(noun)|active agent|chemical agent +(noun)|active voice|voice +(noun)|person|individual|someone|somebody|mortal|human|soul +active agent|1 +(noun)|active|chemical agent +active air defense|1 +(noun)|air defense +active application|1 +(noun)|application|application program|applications programme +active birth|1 +(noun)|childbirth|childbearing|accouchement|vaginal birth +active citizen|1 +(noun)|citizen +active immunity|1 +(noun)|acquired immunity +active matrix screen|1 +(noun)|liquid crystal display|LCD +active placebo|1 +(noun)|placebo +active site|1 +(noun)|site|situation +active transport|1 +(noun)|transport +active trust|1 +(noun)|trust +active voice|1 +(noun)|active|voice +activeness|2 +(noun)|action|activity|state +(noun)|activity|trait +activewear|1 +(noun)|sportswear|athletic wear|attire|garb|dress +activism|1 +(noun)|policy +activist|2 +(adj)|activistic|active +(noun)|militant|reformer|reformist|crusader|meliorist +activistic|1 +(adj)|activist|active +activity|6 +(noun)|act|human action|human activity +(noun)|action|activeness|state +(noun)|bodily process|body process|bodily function|organic process|biological process +(noun)|capability|capacity +(noun)|natural process|natural action|action|process +(noun)|activeness|trait +actomyosin|1 +(noun)|protein +actor|2 +(noun)|histrion|player|thespian|role player|performer|performing artist +(noun)|doer|worker|person|individual|someone|somebody|mortal|human|soul +actor's agent|1 +(noun)|theatrical agent|business agent +actor's assistant|1 +(noun)|dresser|assistant|helper|help|supporter +actor's line|1 +(noun)|speech|words|line +actress|1 +(noun)|actor|histrion|player|thespian|role player +acts|6 +(noun)|Acts of the Apostles|Acts|book +(noun)|act|enactment|legal document|legal instrument|official document|instrument +(noun)|act|human action|human activity +(noun)|act|dramatic composition|dramatic work +(noun)|act|routine|number|turn|bit|performance|public presentation +(noun)|act|expression|manifestation|reflection|reflexion +acts of the apostles|1 +(noun)|Acts of the Apostles|Acts|book +actual|6 +(adj)|actual |existent|actualized|actualised|very|effective +(adj)|real |existent +(adj)|genuine|literal|real|true +(adj)|factual|real |existent +(adj)|de facto |factual +(adj)|current +actual damages|1 +(noun)|compensatory damages|general damages|damages|amends|indemnity|indemnification|restitution|redress +actual eviction|1 +(noun)|eviction|dispossession|legal ouster +actual possession|1 +(noun)|possession|ownership +actual sin|1 +(noun)|sin|sinning +actualisation|1 +(noun)|realization|realisation|actualization|creating by mental acts +actualise|2 +(verb)|realize|realise|actualize|substantiate|make|create +(verb)|actualize|represent +actualised|1 +(adj)|actualized|actual |existent +actuality|1 +(noun)|being|beingness|existence +actualization|1 +(noun)|realization|realisation|actualisation|creating by mental acts +actualize|2 +(verb)|realize|realise|actualise|substantiate|make|create +(verb)|actualise|represent +actualized|1 +(adj)|actualised|actual |existent +actually|2 +(adv)|really +(adv)|in reality +actuarial|1 +(adj)|calculator|reckoner|figurer|estimator|computer +actuarial table|1 +(noun)|statistical table|table|tabular array +actuary|1 +(noun)|statistician|calculator|reckoner|figurer|estimator|computer +actuate|2 +(verb)|trip|trigger|activate|set off|spark off|spark|trigger off|touch off|initiate|pioneer +(verb)|motivate|propel|move|prompt|incite|cause|do|make +actuated|1 +(adj)|motivated +actuating|1 +(adj)|activating|causative +actuation|1 +(noun)|propulsion|deed|feat|effort|exploit +actuator|1 +(noun)|mechanism +actus reus|1 +(noun)|wrongdoing|wrongful conduct|misconduct|activity +acuate|1 +(adj)|acute|sharp|needlelike|pointed +acuity|2 +(noun)|visual acuity|sharp-sightedness|sight|vision|visual sense|visual modality +(noun)|acuteness|sharpness|keenness|intelligence +acular|1 +(noun)|ketorolac tromethamine|Acular|Toradol|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +aculea|1 +(noun)|process|outgrowth|appendage +aculeate|1 +(adj)|aculeated|stinger +aculeated|1 +(adj)|aculeate|stinger +aculeus|2 +(noun)|plant process|enation +(noun)|stinger +acumen|2 +(noun)|plant process|enation +(noun)|insightfulness|shrewdness|astuteness|perspicacity|perspicaciousness +acuminate|2 +(adj)|simple |unsubdivided|pointed +(verb)|sharpen|taper|point +acuminate leaf|1 +(noun)|simple leaf +acupressure|1 +(noun)|G-Jo|shiatsu|treatment +acupuncture|1 +(noun)|stylostixis|treatment +acute|7 +(adj)|acute |subacute +(adj)|intense|sharp +(adj)|discriminating|incisive|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive +(adj)|acute +(adj)|acuate|sharp|needlelike|pointed +(adj)|critical +(noun)|acute accent|ague|accent|accent mark +acute-angled triangle|1 +(noun)|acute triangle|triangle|trigon|trilateral +acute accent|1 +(noun)|acute|ague|accent|accent mark +acute angle|1 +(noun)|oblique angle +acute anterior poliomyelitis|1 +(noun)|poliomyelitis|polio|infantile paralysis|infectious disease +acute brain disorder|1 +(noun)|acute organic brain syndrome|disorder|upset +acute gastritis|1 +(noun)|gastritis +acute glaucoma|1 +(noun)|angle-closure glaucoma|glaucoma +acute glossitis|1 +(noun)|glossitis +acute hemorrhagic encephalitis|1 +(noun)|encephalitis|cephalitis|phrenitis +acute inclusion body encephalitis|1 +(noun)|herpes simplex encephalitis|herpes encephalitis|encephalitis|cephalitis|phrenitis +acute kidney failure|1 +(noun)|acute renal failure|renal failure|kidney failure +acute leukemia|1 +(noun)|leukemia|leukaemia|leucaemia|cancer of the blood +acute lymphoblastic leukemia|1 +(noun)|acute lymphocytic leukemia|acute leukemia +acute lymphocytic leukemia|1 +(noun)|acute lymphoblastic leukemia|acute leukemia +acute myelocytic leukemia|1 +(noun)|acute myeloid leukemia|myelocytic leukemia|granulocytic leukemia|acute leukemia +acute myeloid leukemia|1 +(noun)|acute myelocytic leukemia|myelocytic leukemia|granulocytic leukemia|acute leukemia +acute organic brain syndrome|1 +(noun)|acute brain disorder|disorder|upset +acute pyelonephritis|1 +(noun)|pyelonephritis +acute renal failure|1 +(noun)|acute kidney failure|renal failure|kidney failure +acute schizophrenic episode|1 +(noun)|reactive schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +acute triangle|1 +(noun)|acute-angled triangle|triangle|trigon|trilateral +acuteness|2 +(noun)|acuity|sharpness|keenness|intelligence +(noun)|sharpness|keenness +acyclic|2 +(adj)|acyclic +(adj)|acyclic |open-chain|aliphatic +acyclovir|1 +(noun)|Zovirax|medicine|medication|medicament|medicinal drug +acyl|1 +(noun)|acyl group|group|radical|chemical group +acyl anhydrides|1 +(noun)|acid anhydrides|organic compound +acyl group|1 +(noun)|acyl|group|radical|chemical group +acyl halide|1 +(noun)|acid halide|organic compound +acylation|1 +(noun)|chemical process|chemical change|chemical action +acylglycerol|1 +(noun)|glyceride|glyceryl ester|animal oil +ad|2 +(noun)|advertisement|advertizement|advertising|advertizing|advert|promotion|publicity|promotional material|packaging +(adv)|AD|A.D.|anno Domini +ad-lib|4 +(adj)|spontaneous|unwritten|unscripted +(adj)|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared +(noun)|remark|comment +(verb)|improvise|improvize|extemporize|extemporise|perform|execute|do +ad agency|1 +(noun)|advertising agency|agency +ad blitz|1 +(noun)|advertising campaign|ad campaign|campaign|cause|crusade|drive|movement|effort +ad campaign|1 +(noun)|advertising campaign|ad blitz|campaign|cause|crusade|drive|movement|effort +ad hoc|2 +(adj)|unplanned +(adj)|specific +ad hominem|1 +(adj)|personal +ad lib|1 +(adv)|ad libitum|spontaneously|impromptu +ad libitum|1 +(adv)|ad lib|spontaneously|impromptu +ad val|1 +(adv)|ad valorem +ad valorem|1 +(adv)|ad val +ad valorem tax|1 +(noun)|VAT|value-added tax|excise|excise tax +ada|1 +(noun)|adenosine deaminase|ADA|enzyme +ada-scid|1 +(noun)|ADA-SCID|severe combined immunodeficiency|severe combined immunodeficiency disease|SCID +adactylia|1 +(noun)|adactyly|adactylism|meromelia +adactylism|1 +(noun)|adactylia|adactyly|meromelia +adactylous|1 +(adj)|meromelia +adactyly|1 +(noun)|adactylia|adactylism|meromelia +adad|1 +(noun)|Adad|Semitic deity +adage|1 +(noun)|proverb|saw|byword|saying|expression|locution +adagio|3 +(adj)|slow +(noun)|musical composition|opus|composition|piece|piece of music|passage|musical passage +(noun)|dancing|dance|terpsichore|saltation +adalia|2 +(noun)|Antalya|Adalia|city|metropolis|urban center|port +(noun)|Adalia|genus Adalia|arthropod genus +adalia bipunctata|1 +(noun)|two-spotted ladybug|Adalia bipunctata|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +adam|3 +(noun)|Adam|man|adult male +(noun)|Adam|Robert Adam|architect|designer +(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +adam's apple|2 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +(noun)|thyroid cartilage|Adam's apple|cartilage|gristle +adam's needle|1 +(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca +adam's needle-and-thread|1 +(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca +adam's peak|1 +(noun)|Adam's Peak|Samanala|mountain peak +adam-and-eve|1 +(noun)|puttyroot|Aplectrum hyemale|orchid|orchidaceous plant +adam smith|1 +(noun)|Smith|Adam Smith|economist|economic expert +adamance|1 +(noun)|obduracy|unyieldingness|resoluteness|firmness|resolve|resolution +adamant|2 +(adj)|adamantine|inexorable|intransigent|inflexible +(noun)|diamond|carbon|C|atomic number 6|transparent gem +adamantine|3 +(adj)|carbon|C|atomic number 6|transparent gem +(adj)|hard +(adj)|adamant|inexorable|intransigent|inflexible +adams|7 +(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader +(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States|United States President|President|Chief Executive +(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States|United States President|President|Chief Executive +(noun)|Adams|Mount Adams|mountain peak +(noun)|Adam|man|adult male +(noun)|Adam|Robert Adam|architect|designer +(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +adams-stokes syndrome|1 +(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia|arrhythmia +adana|1 +(noun)|Adana|Seyhan|city|metropolis|urban center +adansonia|1 +(noun)|Adansonia|genus Adansonia|dilleniid dicot genus +adansonia digitata|1 +(noun)|baobab|monkey-bread tree|Adansonia digitata|angiospermous tree|flowering tree +adansonia gregorii|1 +(noun)|cream-of-tartar tree|sour gourd|Adansonia gregorii|angiospermous tree|flowering tree +adapa|1 +(noun)|Adapa|Semitic deity +adapid|1 +(noun)|Adapid|Adapid group|taxonomic group|taxonomic category|taxon +adapid group|1 +(noun)|Adapid|Adapid group|taxonomic group|taxonomic category|taxon +adapin|1 +(noun)|doxepin|doxepin hydrochloride|Adapin|Sinequan|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +adapt|2 +(verb)|accommodate|change|alter|vary +(verb)|adjust|conform|change +adaptability|1 +(noun)|ability +adaptable|1 +(adj)|adaptable |adjustable|all-mains|convertible|elastic|flexible|pliable|pliant|filmable|labile|variable +adaptation|3 +(noun)|version|writing|written material|piece of writing +(noun)|adjustment|organic process|biological process +(noun)|alteration|modification|adjustment +adaptational|1 +(adj)|adaptive |adaptative +adaptative|1 +(adj)|adaptive |accommodative|reconciling|adaptational|adjustive +adapted|1 +(adj)|altered|modified +adapter|2 +(noun)|arranger|transcriber|musician +(noun)|adaptor|device +adaptive|1 +(adj)|adaptive |adaptative|accommodative|reconciling|adaptational|adjustive +adaptive radiation|1 +(noun)|radiation +adaptor|1 +(noun)|adapter|device +adar|1 +(noun)|Adar|Jewish calendar month +adar sheni|1 +(noun)|Veadar|Adar Sheni|Jewish calendar month +adaxial|1 +(adj)|adaxial |ventral +add|7 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome +(verb)|increase +(verb)|append|supply|state|say|tell +(verb)|lend|impart|bestow|contribute|bring|change|alter|modify +(verb)|add together|calculate|cipher|cypher|compute|work out|reckon|figure|add up +(verb)|total|tot|tot up|sum|sum up|summate|tote up|add together|tally|add up|count|number|enumerate|numerate +(verb)|form|constitute|make +add-on|2 +(noun)|addition|improver|component|constituent|element +(noun)|accessory|appurtenance|supplement|component|constituent|element +add on|2 +(verb)|add +(verb)|append|supplement|affix|attach +add to|1 +(verb)|increase +add together|2 +(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|tally|add up|count|number|enumerate|numerate +(verb)|add|calculate|cipher|cypher|compute|work out|reckon|figure +add up|4 +(verb)|come|amount|become|turn +(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|add together|tally|count|number|enumerate|numerate +(verb)|total|number|come|amount|be +(verb)|make sense|be +addable|1 +(adj)|addible|additive +addax|1 +(noun)|Addax nasomaculatus|antelope +addax nasomaculatus|1 +(noun)|addax|Addax nasomaculatus|antelope +added|1 +(adj)|added |accessorial|additional|further|more|adscititious|another|additional|else|additional|extra|other|additional|intercalary|side|superimposed|supplementary|supplemental|additional|value-added +addend|1 +(noun)|number +addendum|1 +(noun)|supplement|postscript|matter +adder|3 +(noun)|calculator|reckoner|figurer|estimator|computer +(noun)|calculator|calculating machine +(noun)|common viper|Vipera berus|viper +adder's fern|1 +(noun)|common polypody|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody +adder's tongue|1 +(noun)|adder's tongue fern|fern +adder's tongue fern|1 +(noun)|adder's tongue|fern +addible|1 +(adj)|addable|additive +addict|3 +(noun)|nut|freak|junkie|junky|enthusiast|partisan|partizan +(noun)|drug user|substance abuser|user +(verb)|hook|habituate|accustom +addicted|1 +(adj)|addicted |alcoholic|alcohol-dependent|chronic|confirmed|habitual|inveterate|dependent|dependant|drug-addicted|hooked|strung-out +addiction|3 +(noun)|dependence|dependency|habituation|physiological state|physiological condition +(noun)|craving +(noun)|award|awarding +addictive|1 +(adj)|addictive |habit-forming +adding machine|1 +(noun)|totalizer|totaliser|calculator|calculating machine +addis ababa|1 +(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital +addison's disease|1 +(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|hypoadrenocorticism|glandular disease|gland disease|glandular disorder|adenosis +addison's syndrome|1 +(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|hypoadrenocorticism|glandular disease|gland disease|glandular disorder|adenosis +addition|6 +(noun)|add-on|improver|component|constituent|element +(noun)|increase|step-up +(noun)|increase|gain|indefinite quantity +(noun)|accession|acquisition +(noun)|suburb|suburbia|suburban area +(noun)|summation|plus|arithmetic operation +addition reaction|1 +(noun)|chemical reaction|reaction +additional|5 +(adj)|further|more|added +(adj)|supplementary|supplemental|added +(adj)|extra|other|added +(adj)|else|added +(adj)|another|added +additionally|1 +(adv)|in addition|to boot +additions to esther|1 +(noun)|Additions to Esther|book +additive|3 +(adj)|additive |accumulative|cumulative|summational|summative|addable|addible +(adj)|linear |bilinear +(noun)|addition|add-on|improver +additive inverse|1 +(noun)|inverse|opposite +addle|2 +(verb)|muddle|puddle|jumble|confuse|mix up +(verb)|spoil|go bad +addle-head|2 +(noun)|addlehead|loon|birdbrain|misfit +(noun)| +addlebrained|1 +(adj)|addlepated|potty|puddingheaded|muddleheaded|confused +addled|2 +(adj)|stale +(adj)|befuddled|muddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused +addlehead|1 +(noun)|addle-head|loon|birdbrain|misfit +addlepated|1 +(adj)|addlebrained|potty|puddingheaded|muddleheaded|confused +address|18 +(noun)|computer address|code|computer code +(noun)|geographic point|geographical point +(noun)|speech|speech act +(noun)|manner of speaking|speech|delivery +(noun)|street sign +(noun)|destination|name and address|direction|instruction +(noun)|stance +(noun)|savoir-faire|tact|tactfulness +(verb)|turn to|communicate|intercommunicate +(verb)|speak +(verb)|direct|label +(verb)|target|aim|place|direct|point +(verb)|use|utilize|utilise|apply|employ +(verb)|call|turn to +(verb)|access +(verb)|cover|treat|handle|plow|deal|broach|initiate +(verb)|accost|come up to|come|come up +(verb)|align|aline|line up|adjust +addressable|1 +(adj)|available +addressed|1 +(adj)|addressed |self-addressed +addressee|1 +(noun)|recipient|receiver +addressing machine|1 +(noun)|Addressograph|printer|printing machine +addressograph|1 +(noun)|addressing machine|Addressograph|printer|printing machine +adduce|1 +(verb)|abduce|cite|testify|bear witness|prove|evidence|show +adducent|1 +(adj)|adducent |adductive|adducting +adducer|1 +(noun)|discussant +adducing|1 +(noun)|argument|statement +adduct|2 +(noun)|compound|chemical compound +(verb)|pull|draw|force +adducting|1 +(adj)|adducent |adductive +adduction|1 +(noun)|motion|movement|move|motility +adductive|1 +(adj)|adducent |adducting +adductor|1 +(noun)|adductor muscle|skeletal muscle|striated muscle +adductor muscle|1 +(noun)|adductor|skeletal muscle|striated muscle +ade|1 +(noun)|fruit drink|beverage|drink|drinkable|potable +adelaide|1 +(noun)|Adelaide|state capital +adelges|1 +(noun)|Adelges|genus Adelges|arthropod genus +adelges abietis|1 +(noun)|spruce gall aphid|Adelges abietis|adelgid +adelges piceae|1 +(noun)|balsam woolly aphid|Adelges piceae|adelgid +adelgid|1 +(noun)|plant louse|louse +adelgidae|1 +(noun)|Adelgidae|family Adelgidae|arthropod family +adelie|1 +(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin +adelie penguin|1 +(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin +adeline virginia stephen woolf|1 +(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer|author +aden|1 +(noun)|Aden|city|metropolis|urban center|port +aden-abyan islamic army|1 +(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +adenanthera|1 +(noun)|Adenanthera|genus Adenanthera|rosid dicot genus +adenanthera pavonina|1 +(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree +adenauer|1 +(noun)|Adenauer|Konrad Adenauer|statesman|solon|national leader +adenine|1 +(noun)|A|purine +adenitis|1 +(noun)|inflammation|redness|rubor +adenium|1 +(noun)|Adenium|genus Adenium|dicot genus|magnoliopsid genus +adenium multiflorum|1 +(noun)|impala lily|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub|bush +adenium obesum|1 +(noun)|impala lily|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub|bush +adenocarcinoma|1 +(noun)|glandular cancer|glandular carcinoma|carcinoma +adenocarcinomatous|1 +(adj)|carcinoma +adenohypophysis|1 +(noun)|anterior pituitary|anterior pituitary gland|endocrine gland|endocrine|ductless gland +adenoid|2 +(adj)|lymphatic tissue|lymphoid tissue +(noun)|pharyngeal tonsil|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue|lymphoid tissue +adenoidal|2 +(adj)|lymphatic tissue|lymphoid tissue +(adj)|pinched|nasal|high |high-pitched +adenoidectomy|1 +(noun)|ablation|extirpation|cutting out|excision +adenoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +adenomatous polyp|1 +(noun)|polyp|polypus +adenomegaly|1 +(noun)|hypertrophy +adenomyosarcoma|1 +(noun)|Wilms' tumor|Wilms tumour|nephroblastoma|embryoma of the kidney|sarcoma +adenomyosis|1 +(noun)|endometriosis|pathology +adenopathy|1 +(noun)|glandular disease|gland disease|glandular disorder|adenosis +adenosine|1 +(noun)|nucleoside +adenosine deaminase|1 +(noun)|ADA|enzyme +adenosine diphosphate|1 +(noun)|ADP|nucleotide +adenosine monophosphate|1 +(noun)|AMP|adenylic acid|nucleotide +adenosine triphosphate|1 +(noun)|ATP|nucleotide +adenosis|1 +(noun)|glandular disease|gland disease|glandular disorder|disorder|upset +adenota|1 +(noun)|Adenota|genus Adenota|mammal genus +adenota vardoni|1 +(noun)|puku|Adenota vardoni|antelope +adenovirus|1 +(noun)|animal virus +adenylic acid|1 +(noun)|adenosine monophosphate|AMP|nucleotide +adept|2 +(adj)|expert|good|practiced|proficient|skillful|skilful|skilled +(noun)|ace|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +adeptness|1 +(noun)|adroitness|deftness|facility|quickness|skillfulness +adequacy|2 +(noun)|adequateness|satisfactoriness +(noun)|sufficiency|quality +adequate|3 +(adj)|adequate |adequate to|capable|equal to|up to|competent|satisfactory +(adj)|decent|enough|sufficient +(adj)|passable|fair to middling|satisfactory +adequate to|1 +(adj)|capable|equal to|up to|adequate +adequateness|1 +(noun)|adequacy|satisfactoriness +ader wax|1 +(noun)|earth wax|mineral wax|ozokerite|ozocerite|mineral +adermin|1 +(noun)|vitamin B6|pyridoxine|pyridoxal|pyridoxamine|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +adh|1 +(noun)|vasopressin|antidiuretic hormone|ADH|Pitressin|hormone|endocrine|internal secretion|vasoconstrictor|vasoconstrictive +adhd|1 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome +adhere|6 +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|follow through|follow up|follow out|carry out|implement|put through|go through +(verb)|cling|cleave|stick|cohere|touch|adjoin|meet|contact +(verb)|stick|adopt|follow|espouse +(verb)|stand by|stick by|stick|be +(verb)|hold fast|bond|bind|stick|stick to|attach +adherence|2 +(noun)|attachment|adhesion|support +(noun)|adhesiveness|adhesion|bond|stickiness +adherent|2 +(adj)|adhesive +(noun)|disciple|follower +adhesion|4 +(noun)|pathology +(noun)|scar tissue +(noun)|adhesiveness|adherence|bond|stickiness +(noun)|attachment|adherence|support +adhesion contract|1 +(noun)|contract of adhesion|contract +adhesive|2 +(adj)|adhesive |adherent|agglutinate|agglutinative|bondable|coherent|tenacious|cohesive|gluey|glutinous|gummy|mucilaginous|pasty|sticky|viscid|viscous|gooey|icky|gummed|pitchy|resinous|resiny|tarry|self-sealing|stick-on +(noun)|adhesive material|material|stuff +adhesive bandage|1 +(noun)|bandage|patch +adhesive friction|1 +(noun)|grip|traction|friction|rubbing +adhesive material|1 +(noun)|adhesive|material|stuff +adhesive plaster|1 +(noun)|plaster|sticking plaster|adhesive tape +adhesive tape|1 +(noun)|tape +adhesiveness|1 +(noun)|adhesion|adherence|bond|stickiness +adi granth|1 +(noun)|Adi Granth|Granth|Granth Sahib|sacred text|sacred writing|religious writing|religious text +adiabatic|1 +(adj)|adiabatic +adiabatic process|1 +(noun)|natural process|natural action|action|activity +adiantaceae|1 +(noun)|Adiantaceae|family Adiantaceae|fern family +adiantum|1 +(noun)|Adiantum|genus Adiantum|fern genus +adiantum bellum|1 +(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair|maidenhair fern +adiantum capillus-veneris|1 +(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +adiantum pedatum|1 +(noun)|American maidenhair fern|five-fingered maidenhair fern|Adiantum pedatum|maidenhair|maidenhair fern +adiantum tenerum|1 +(noun)|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum|maidenhair|maidenhair fern +adiantum tenerum farleyense|1 +(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum +adience|1 +(noun)|urge|impulse +adient|1 +(adj)|adient |urge|impulse +adieu|1 +(noun)|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +adige|1 +(noun)|Adige|River Adige|river +adios|1 +(noun)|adieu|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +adipic acid|1 +(noun)|hexanedioic acid|carboxylic acid +adipose|1 +(adj)|fatty |fat +adipose cell|1 +(noun)|fat cell|somatic cell|vegetative cell +adipose tissue|1 +(noun)|fat|fatty tissue|animal tissue +adipose tumor|1 +(noun)|lipoma|tumor|tumour|neoplasm +adiposeness|1 +(noun)|adiposity|fattiness|fatness|fat|blubber|avoirdupois +adiposis|1 +(noun)|corpulence|overweight|stoutness|fleshiness|obesity +adiposity|1 +(noun)|adiposeness|fattiness|fatness|fat|blubber|avoirdupois +adirondack mountains|1 +(noun)|Adirondacks|Adirondack Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +adirondacks|1 +(noun)|Adirondacks|Adirondack Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +adit|1 +(noun)|passage +aditi|1 +(noun)|Aditi|Hindu deity +aditya|1 +(noun)|Aditya|Hindu deity +adjacency|1 +(noun)|contiguity|contiguousness|nearness|closeness +adjacent|3 +(adj)|next|side by side|close +(adj)|abutting|adjoining|conterminous|contiguous|neighboring|connected +(adj)|near |close +adjectival|1 +(adj)|adjective|major form class +adjective|4 +(adj)|adjectival|major form class +(adj)|adjective |procedural +(noun)|modifier|qualifier +(noun)|major form class +adjoin|3 +(verb)|border|edge|abut|march|butt|butt against|butt on|touch|meet|contact +(verb)|touch|meet|contact +(verb)|add +adjoining|1 +(adj)|abutting|adjacent|conterminous|contiguous|neighboring|connected +adjoining room|1 +(noun)|hotel room +adjourn|2 +(verb)|recess|break up|end|stop|finish|terminate|cease +(verb)|withdraw|retire|close|fold|shut down|close down +adjournment|2 +(noun)|dissolution|termination|ending|conclusion +(noun)|postponement|deferment|deferral +adjudge|1 +(verb)|declare|hold|judge +adjudicate|2 +(verb)|judge|try|decide|make up one's mind|determine +(verb)|decide|settle|resolve|end|terminate +adjudication|1 +(noun)|judgment|judgement|assessment +adjudicative|1 +(adj)|adjudicatory|judgment|judgement|assessment +adjudicator|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +adjudicatory|1 +(adj)|adjudicative|judgment|judgement|assessment +adjunct|5 +(adj)|accessory|ancillary|adjuvant|appurtenant|auxiliary|subsidiary|supportive +(adj)|assistant|subordinate |low-level +(noun)|inessential|nonessential +(noun)|associate +(noun)|construction|grammatical construction|expression +adjunction|1 +(noun)|junction|joining|connection|connexion +adjunctive|1 +(adj)|connected +adjuration|1 +(noun)|entreaty|prayer|appeal +adjuratory|2 +(adj)|beseeching +(adj)|imperative +adjure|2 +(verb)|bid|beseech|entreat|press|conjure|plead +(verb)|charge|saddle|burden +adjust|5 +(verb)|set|correct|change|alter|modify +(verb)|align|aline|line up|reorient +(verb)|conform|adapt|change +(verb)|adapt|accommodate +(verb)|decide|settle|resolve|adjudicate +adjustable|2 +(adj)|adaptable +(adj)|changeable |changeful +adjustable spanner|1 +(noun)|adjustable wrench|wrench|spanner +adjustable wrench|1 +(noun)|adjustable spanner|wrench|spanner +adjusted|4 +(adj)|adjusted |attuned|keyed|tuned|attuned|tuned|focused|weighted +(adj)|adjusted |well-adjusted|well-balanced +(adj)|familiarized|familiarised|oriented |orientated +(adj)|altered +adjuster|1 +(noun)|adjustor|claims adjuster|claims adjustor|claim agent|investigator +adjusting entry|1 +(noun)|entry|accounting entry|ledger entry +adjustive|1 +(adj)|adaptive |adaptative +adjustment|5 +(noun)|accommodation|fitting|improvement|betterment|advance +(noun)|alteration|modification|change +(noun)|registration|readjustment|calibration|standardization|standardisation +(noun)|adaptation|organic process|biological process +(noun)|allowance|recompense +adjustor|1 +(noun)|adjuster|claims adjuster|claims adjustor|claim agent|investigator +adjutant|2 +(noun)|aide|aide-de-camp|military officer|officer +(noun)|adjutant bird|adjutant stork|Leptoptilus dubius|stork +adjutant bird|1 +(noun)|adjutant|adjutant stork|Leptoptilus dubius|stork +adjutant general|1 +(noun)|adjutant|aide|aide-de-camp +adjutant stork|1 +(noun)|adjutant bird|adjutant|Leptoptilus dubius|stork +adjuvant|3 +(adj)|accessory|adjunct|ancillary|appurtenant|auxiliary|subsidiary|supportive +(adj)|helpful +(noun)|additive +adlai ewing stevenson|1 +(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat|diplomatist +adlai stevenson|1 +(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat|diplomatist +adlumia|1 +(noun)|Adlumia|genus Adlumia|dilleniid dicot genus +adlumia fungosa|1 +(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine +adman|1 +(noun)|advertiser|advertizer|publicist|publicizer|publiciser +admass|1 +(noun)|populace|public|world +admeasure|1 +(verb)|determine|find|find out|ascertain +administer|4 +(verb)|administrate|manage|deal|care|handle +(verb)|give|apply +(verb)|distribute|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give +(verb)|dispense|treat|care for +administrable|1 +(adj)|manageable +administrate|1 +(verb)|administer|manage|deal|care|handle +administration|4 +(noun)|disposal|management|direction +(noun)|governance|governing body|establishment|brass|organization|organisation|body +(noun)|giving medication|medication +(noun)|presidency|presidential term|tenure|term of office|incumbency +administrative|1 +(adj)|body +administrative body|1 +(noun)|administrative unit|unit|social unit +administrative data processing|1 +(noun)|business data processing|data processing +administrative district|1 +(noun)|administrative division|territorial division|district|territory|territorial dominion|dominion +administrative division|1 +(noun)|administrative district|territorial division|district|territory|territorial dominion|dominion +administrative hearing|1 +(noun)|hearing +administrative law|1 +(noun)|law|jurisprudence +administrative official|1 +(noun)|bureaucrat|official|functionary +administrative unit|1 +(noun)|administrative body|unit|social unit +administrator|3 +(noun)|decision maker|head|chief|top dog +(noun)|fiduciary +(noun)|executive|head|chief|top dog +administrivia|1 +(noun)|running +admirability|1 +(noun)|admirableness|wonderfulness|excellence +admirable|2 +(adj)|estimable +(adj)|pleasing +admirableness|1 +(noun)|admirability|wonderfulness|excellence +admirably|1 +(adv)|laudably|praiseworthily|commendable +admiral|2 +(noun)|full admiral|flag officer +(noun)|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +admiral byrd|1 +(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer|adventurer|naval officer +admiral dewey|1 +(noun)|Dewey|George Dewey|Admiral Dewey|naval officer +admiral nelson|1 +(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral|full admiral +admiral nimitz|1 +(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer +admiralty|2 +(noun)|government department +(noun)|position|post|berth|office|spot|billet|place|situation +admiralty brass|1 +(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass|Muntz metal|yellow metal +admiralty island|1 +(noun)|Admiralty Island|island +admiralty islands|2 +(noun)|Admiralty Islands|archipelago +(noun)|Admiralty Island|island +admiralty law|1 +(noun)|maritime law|law|jurisprudence +admiralty metal|1 +(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass|Muntz metal|yellow metal +admiralty mile|1 +(noun)|nautical mile|naut mi|mile|mi|geographical mile|Admiralty mile|nautical linear unit +admiralty range|1 +(noun)|Admiralty Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +admiration|3 +(noun)|esteem|liking +(noun)|wonder|wonderment|astonishment|amazement +(noun)|appreciation|blessing|approval|approving +admire|2 +(verb)|look up to|respect|esteem|value|prize|prise +(verb)|look +admired|1 +(adj)|loved +admirer|3 +(noun)|supporter|protagonist|champion|booster|friend|advocate|advocator|proponent|exponent +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|adorer|lover +admiring|1 +(adj)|loving +admissibility|1 +(noun)|acceptability|acceptableness +admissible|1 +(adj)|admissible |allowable|permissible|admittable|admittible +admission|3 +(noun)|admittance|entrance|entering|entry|ingress|incoming +(noun)|acknowledgment|acknowledgement +(noun)|entrance fee|admission charge|admission fee|admission price|price of admission|entrance money|fee +admission charge|1 +(noun)|entrance fee|admission|admission fee|admission price|price of admission|entrance money|fee +admission day|1 +(noun)|Admission Day|day +admission fee|1 +(noun)|entrance fee|admission|admission charge|admission price|price of admission|entrance money|fee +admission price|1 +(noun)|entrance fee|admission|admission charge|admission fee|price of admission|entrance money|fee +admissive|1 +(adj)|receptive +admit|7 +(verb)|acknowledge|declare|adjudge|hold +(verb)|allow in|let in|intromit|permit|allow|let|countenance +(verb)|let in|include|permit|allow|let|countenance +(verb)|accept|take|take on|accept|take|have +(verb)|allow +(verb)|accommodate|hold +(verb)|serve|do +admittable|1 +(adj)|admittible|admissible +admittance|2 +(noun)|entree|access|accession|right +(noun)|admission|entrance|entering|entry|ingress|incoming +admittedly|1 +(adv)|true|avowedly|confessedly +admittible|1 +(adj)|admittable|admissible +admitting of|1 +(adj)|allowing of|permitting of|permissive +admix|1 +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +admixture|3 +(noun)|alloy|impurity|impureness +(noun)|intermixture|ingredient +(noun)|mix|commixture|mixture|intermixture|mixing|combination|combining|compounding +admonish|3 +(verb)|warn|discourage|monish|advise|counsel +(verb)|caution|monish|warn +(verb)|reprove|knock|criticize|criticise|pick apart +admonished|1 +(adj)|chastened|rebuked|reprimanded|reproved|punished +admonisher|1 +(noun)|monitor|reminder|defender|guardian|protector|shielder +admonishing|1 +(adj)|admonitory|reproachful|reproving|unfavorable |unfavourable +admonishment|1 +(noun)|admonition|monition|rebuke|reproof|reproval|reprehension|reprimand +admonition|2 +(noun)|monition|warning|word of advice|advice +(noun)|admonishment|monition|rebuke|reproof|reproval|reprehension|reprimand +admonitory|2 +(adj)|cautionary|exemplary|monitory|warning|dissuasive +(adj)|admonishing|reproachful|reproving|unfavorable |unfavourable +adnate|1 +(adj)|adnate +adnexa|1 +(noun)|annexa|body part +adnexal|1 +(adj)|annexal|body part +adnoun|1 +(noun)|common noun +ado|1 +(noun)|bustle|hustle|flurry|fuss|stir|commotion|din|ruction|ruckus|rumpus|tumult +adobe|2 +(noun)|clay +(noun)|adobe brick|brick +adobe brick|1 +(noun)|adobe|brick +adobe house|1 +(noun)|sod house|soddy|house +adobe lily|1 +(noun)|pink fritillary|Fritillaria pluriflora|fritillary|checkered lily +adobo|1 +(noun)|dish +adolesce|1 +(verb)|develop +adolescence|2 +(noun)|time of life +(noun)|immaturity|immatureness +adolescent|5 +(adj)|time of life +(adj)|teen|teenage|teenaged|young |immature +(adj)|jejune|juvenile|puerile|immature +(adj)|immature +(noun)|stripling|teenager|juvenile|juvenile person +adolf eichmann|1 +(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi|German Nazi +adolf hitler|1 +(noun)|Hitler|Adolf Hitler|Der Fuhrer|dictator|potentate|Nazi|German Nazi +adolf loos|1 +(noun)|Loos|Adolf Loos|architect|designer +adolf windaus|1 +(noun)|Windaus|Adolf Windaus|chemist +adolph simon ochs|1 +(noun)|Ochs|Adolph Simon Ochs|publisher +adolphe sax|1 +(noun)|Sax|Adolphe Sax|maker|shaper +adonic|1 +(noun)|Adonic|Adonic line|verse|verse line +adonic line|1 +(noun)|Adonic|Adonic line|verse|verse line +adonis|3 +(noun)|man|adult male +(noun)|Adonis|genus Adonis|magnoliid dicot genus +(noun)|Adonis|daemon|demigod +adonis annua|1 +(noun)|pheasant's-eye|Adonis annua|flower +adopt|7 +(verb)|follow|espouse|choose|take|select|pick out +(verb)|borrow|take over|take up|accept|take|have +(verb)|assume|take on|take over|take office +(verb)|assume|acquire|take on|take|change +(verb)|take in|take +(verb)|dramatize|dramatise|write|compose|pen|indite +(verb)|espouse|embrace|sweep up|accept +adoptable|1 +(adj)|adoptable +adopted|2 +(adj)|adopted |adoptive +(adj)|adoptive +adoptee|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +adopter|1 +(noun)|adoptive parent|parent +adoption|3 +(noun)|acceptance|acceptation|espousal|blessing|approval|approving +(noun)|proceeding|legal proceeding|proceedings +(noun)|borrowing|appropriation +adoptive|2 +(adj)|adoptive |adopted|foster|surrogate +(adj)|adopted +adoptive parent|1 +(noun)|adopter|parent +adorability|1 +(noun)|adorableness|attractiveness +adorable|1 +(adj)|endearing|lovely|lovable |loveable +adorableness|1 +(noun)|adorability|attractiveness +adorably|1 +(adv)|endearingly +adoration|3 +(noun)|worship|love +(noun)|idolization|idolisation|admiration|appreciation +(noun)|latria|worship +adore|1 +(verb)|love +adored|1 +(adj)|idolized|idolised|worshipped|loved +adorer|1 +(noun)|admirer|lover +adoring|2 +(adj)|worshipful|reverent +(adj)|doting|fond|loving +adorn|3 +(verb)|decorate|grace|ornament|embellish|beautify|change|alter|modify +(verb)|deck|decorate|grace|embellish|beautify|be +(verb)|invest|clothe|equip|fit|fit out|outfit +adorned|2 +(adj)|adorned |decorated|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|bedaubed|bespectacled|monocled|spectacled|braided|brocaded|embossed|raised|buttony|carbuncled|champleve|cloisonne|crested|plumed|crested|topknotted|tufted|crested|embellished|ornamented|ornate|embroidered|encircled|ringed|wreathed|fancied up|gussied|gussied up|tricked out|feathery|feathered|plumy|frilled|frilly|ruffled|fringed|gilt-edged|hung|inflamed|inlaid|inwrought|laced|mosaic|tessellated|paneled|wainscoted|studded|tapestried|tasseled|tasselled|tufted|enameled|clinquant|tinseled|tinselly|crocketed|mounted|tricked-out|clothed|clad|fancy +(adj)|bedecked|decked|decked out|clothed |clad +adornment|2 +(noun)|decoration|ornament|ornamentation +(noun)|decoration +adp|2 +(noun)|adenosine diphosphate|ADP|nucleotide +(noun)|automatic data processing|ADP|data processing +adp system|1 +(noun)|computer system|computing system|automatic data processing system|ADP system|ADPS|system +adpressed|1 +(adj)|appressed|close +adps|3 +(noun)|computer system|computing system|automatic data processing system|ADP system|ADPS|system +(noun)|adenosine diphosphate|ADP|nucleotide +(noun)|automatic data processing|ADP|data processing +adrenal|3 +(adj)|endocrine gland|endocrine|ductless gland +(adj)|excretory organ|urinary organ +(noun)|adrenal gland|suprarenal gland|endocrine gland|endocrine|ductless gland +adrenal cortex|1 +(noun)|cortex|endocrine gland|endocrine|ductless gland +adrenal cortical steroid|1 +(noun)|corticosteroid|corticoid|steroid hormone|steroid|sex hormone +adrenal gland|1 +(noun)|adrenal|suprarenal gland|endocrine gland|endocrine|ductless gland +adrenal medulla|1 +(noun)|medulla|endocrine gland|endocrine|ductless gland +adrenalectomy|1 +(noun)|suprarenalectomy|ablation|extirpation|cutting out|excision +adrenalin|1 +(noun)|epinephrine|epinephrin|adrenaline|Adrenalin|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +adrenaline|1 +(noun)|epinephrine|epinephrin|Adrenalin|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +adrenarche|1 +(noun)|start +adrenergic|2 +(adj)|sympathomimetic|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +(noun)|adrenergic drug|vasoconstrictor|vasoconstrictive +adrenergic drug|1 +(noun)|adrenergic|vasoconstrictor|vasoconstrictive +adrenocortical|1 +(adj)|cortex|endocrine gland|endocrine|ductless gland +adrenocorticotrophic|1 +(adj)|adrenocorticotropic|stimulative +adrenocorticotrophic hormone|1 +(noun)|adrenocorticotropic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone|endocrine|internal secretion +adrenocorticotrophin|1 +(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|corticotropin|corticotrophin|hormone|endocrine|internal secretion +adrenocorticotropic|1 +(adj)|adrenocorticotrophic|stimulative +adrenocorticotropic hormone|1 +(noun)|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone|endocrine|internal secretion +adrenocorticotropin|1 +(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotrophin|corticotropin|corticotrophin|hormone|endocrine|internal secretion +adrenosterone|1 +(noun)|hormone|endocrine|internal secretion +adrian|2 +(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor|Emperor of Rome +(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist +adrianople|1 +(noun)|Edirne|Adrianople|Adrianopolis|city|metropolis|urban center +adrianopolis|1 +(noun)|Edirne|Adrianople|Adrianopolis|city|metropolis|urban center +adriatic|1 +(noun)|Adriatic|Adriatic Sea|sea +adriatic sea|1 +(noun)|Adriatic|Adriatic Sea|sea +adrift|2 +(adj)|afloat|aimless|directionless|planless|rudderless|undirected|purposeless +(adj)|drifting|afloat +adroit|2 +(adj)|clever|ingenious|artful +(adj)|adroit |clean|neat|coordinated|deft|dexterous|dextrous|handy|light-fingered|nimble-fingered|clever|cunning|ingenious|quick-witted|artful +adroitly|1 +(adv)|with adroitness +adroitness|1 +(noun)|adeptness|deftness|facility|quickness|skillfulness +adscititious|2 +(adj)|extrinsic +(adj)|added +adscript|2 +(adj)|adscript +(adj)|adscripted|unfree +adscripted|1 +(adj)|adscript|unfree +adsorb|1 +(verb)|sorb|take up +adsorbable|1 +(adj)|adsorbable |adsorbate|adsorbed +adsorbate|2 +(adj)|adsorbable |adsorbed +(noun)|sorbate +adsorbed|1 +(adj)|adsorbable |adsorbate +adsorbent|2 +(adj)|adsorbent |adsorptive|surface-assimilative|chemisorptive|chemosorptive +(noun)|adsorbent material|sorbent|sorbent material +adsorbent material|1 +(noun)|adsorbent|sorbent|sorbent material +adsorbing|1 +(adj)|sorb|take up +adsorption|1 +(noun)|surface assimilation|sorption +adsorptive|1 +(adj)|adsorbent |surface-assimilative|chemisorptive|chemosorptive +adsuki bean|1 +(noun)|adzuki bean|Vigna angularis|Phaseolus angularis|legume|leguminous plant +adulate|1 +(verb)|flatter|blandish +adulation|1 +(noun)|flattery +adulator|1 +(noun)|flatterer|follower +adulatory|1 +(adj)|flattering +adult|3 +(adj)|big|full-grown|fully grown|grown|grownup|mature +(noun)|grownup|person|individual|someone|somebody|mortal|human|soul +(noun)|animal|animate being|beast|brute|creature|fauna +adult-onset diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +adult-onset diabetes mellitus|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +adult body|1 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh +adult education|1 +(noun)|course|course of study|course of instruction|class +adult female|1 +(noun)|woman|female|female person +adult female body|1 +(noun)|woman's body|adult body|female body +adult intelligence|1 +(noun)|intelligence quotient|IQ|I.Q. +adult male|1 +(noun)|man|male|male person +adult male body|1 +(noun)|man's body|adult body|male body +adult respiratory distress syndrome|1 +(noun)|ARDS|wet lung|white lung|respiratory disease|respiratory illness|respiratory disorder +adult tooth|1 +(noun)|permanent tooth|tooth +adulterant|2 +(adj)|adulterating |extraneous|foreign +(noun)|adulterator|substance|matter +adulterate|2 +(adj)|adulterated|debased|impure +(verb)|stretch|dilute|debase|corrupt|spoil +adulterated|1 +(adj)|adulterate|debased|impure +adulterating|1 +(adj)|adulterating |adulterant|extraneous|foreign +adulteration|2 +(noun)|debasement|impurity|impureness +(noun)|change +adulterator|2 +(noun)|adulterant|substance|matter +(noun)|changer|modifier +adulterer|1 +(noun)|fornicator|libertine|debauchee|rounder +adulteress|1 +(noun)|fornicatress|hussy|jade|loose woman|slut|strumpet|trollop|adulterer|fornicator +adulterine|1 +(adj)|illegitimate +adulterous|2 +(adj)|extramarital|extracurricular|illicit +(adj)|cheating|two-timing|unfaithful +adultery|1 +(noun)|criminal conversation|fornication|extramarital sex|free love +adulthood|2 +(noun)|maturity|time of life +(noun)|maturity|matureness +adumbrate|2 +(verb)|sketch|outline|describe|depict|draw +(verb)|intimate|insinuate|hint|suggest +adumbration|2 +(noun)|prefiguration|foreshadowing|prediction|anticipation|prevision +(noun)|representation +adumbrative|1 +(adj)|foreshadowing|prefigurative|prophetic |prophetical +adust|2 +(adj)|baked|parched|scorched|sunbaked|dry +(adj)|brunet |brunette +advance|20 +(adj)|beforehand|early +(adj)|advanced|in advance|front +(noun)|progress|progression|change of location|travel +(noun)|improvement|betterment|transformation|transmutation|shift +(noun)|overture|approach|feeler|suggestion|proposition|proffer +(noun)|progress|progression|procession|advancement|forward motion|onward motion|motion|movement|move +(noun)|cash advance|sum|sum of money|amount|amount of money +(noun)|rise|increase|step-up +(verb)|progress|pass on|move on|march on|go on|travel|go|move|locomote +(verb)|throw out|propose|suggest|advise +(verb)|boost|supercharge|increase +(verb)|promote|boost|further|encourage|support|back up +(verb)|bring forward|move|displace +(verb)|gain|win|pull ahead|make headway|get ahead|gain ground +(verb)|progress|come on|come along|get on|get along|shape up|develop +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|promote|upgrade|kick upstairs|raise|elevate|delegate|designate|depute|assign +(verb)|lend|loan +(verb)|set ahead|set +(verb)|gain|wax|mount|climb|rise +advance death benefit|1 +(noun)|death benefit +advanced|8 +(adj)|precocious +(adj)|late +(adj)|forward-looking|innovative|modern|progressive +(adj)|high +(adj)|sophisticated|high-tech |hi-tech +(adj)|ripe|late +(adj)|civilized |civilised +(adj)|advance|in advance|front +advanced research and development activity|1 +(noun)|Advanced Research and Development Activity|ARDA|agency|federal agency|government agency|bureau|office|authority +advancement|3 +(noun)|promotion|furtherance|encouragement +(noun)|progress|progression|procession|advance|forward motion|onward motion|motion|movement|move +(noun)|progress|development +advancer|1 +(noun)|mover +advancing|2 +(adj)|advancing |forward|onward +(adj)|forward|forward-moving|progressive +advantage|4 +(noun)|vantage|asset|plus +(noun)|point +(noun)|reward|benefit|welfare +(verb)|prefer|favor|favour +advantaged|1 +(adj)|favored|privileged +advantageous|2 +(adj)|advantageous |beneficial|good|plus|positive|profitable|discriminatory|preferential|expedient|opportune|profitable +(adj)|appropriate|expedient +advantageously|1 +(adv)|well +advantageousness|1 +(noun)|favorableness|favourableness|advantage|vantage +advect|1 +(verb)|transport +advection|1 +(noun)|temperature change +advective|1 +(adj)|temperature change +advent|3 +(noun)|coming|arrival|reaching +(noun)|Advent|season +(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation +advent sunday|1 +(noun)|Advent Sunday|Christian holy day +adventism|1 +(noun)|Adventism|Second Adventism|Christianity|Christian religion +adventist|1 +(noun)|Adventist|Second Adventist|Christian +adventitia|1 +(noun)|tunic|tunica|membrane|tissue layer +adventitial|1 +(adj)|membrane|tissue layer +adventitious|1 +(adj)|accidental|extrinsic +adventitious root|1 +(noun)|root +adventive|1 +(adj)|foreign +adventure|3 +(noun)|escapade|risky venture|dangerous undertaking|undertaking|project|task|labor +(verb)|gamble|chance|risk|hazard|take chances|run a risk|take a chance|try|seek|attempt|essay|assay +(verb)|venture|hazard|stake|jeopardize|risk|put on the line|lay on the line +adventure story|1 +(noun)|heroic tale|story +adventurer|2 +(noun)|venturer|person|individual|someone|somebody|mortal|human|soul +(noun)|explorer|person|individual|someone|somebody|mortal|human|soul +adventuresome|1 +(adj)|adventurous |audacious|daring|venturesome|venturous|sporting|swaggering|swashbuckling|bold|brave|courageous|fearless|incautious +adventuress|1 +(noun)|adventurer|venturer +adventurism|1 +(noun)|recklessness|foolhardiness|rashness +adventuristic|1 +(adj)|recklessness|foolhardiness|rashness +adventurous|1 +(adj)|adventurous |adventuresome|audacious|daring|venturesome|venturous|sporting|swaggering|swashbuckling|bold|brave|courageous|fearless|incautious +adventurousness|1 +(noun)|venturesomeness|boldness|daring|hardihood +adverb|2 +(noun)|major form class +(noun)|modifier|qualifier +adverbial|2 +(adj)|major form class +(noun)|adverb +adversary|1 +(noun)|antagonist|opponent|opposer|resister|person|individual|someone|somebody|mortal|human|soul +adversative|1 +(adj)|oppositive|disjunctive +adversative conjunction|1 +(noun)|conjunction +adverse|2 +(adj)|harmful|inauspicious|untoward|unfavorable |unfavourable +(adj)|contrary|unfavorable |unfavourable +adverse opinion|1 +(noun)|opinion|view +adverse witness|1 +(noun)|hostile witness|witness +adversity|2 +(noun)|hardship|hard knocks|misfortune|bad luck|tough luck|ill luck +(noun)|misfortune|bad luck +advert|4 +(noun)|ad|advertisement|advertizement|advertising|advertizing|promotion|publicity|promotional material|packaging +(verb)|attend|hang|pay heed|give ear|listen +(verb)|allude|touch|hint|suggest +(verb)|mention|bring up|cite|name|refer|think of|have in mind|mean +advertence|1 +(noun)|advertency|attentiveness|heed|regard|paying attention +advertency|1 +(noun)|advertence|attentiveness|heed|regard|paying attention +advertent|1 +(adj)|heedful|attentive +advertently|1 +(adv)|mindfully|heedfully +advertise|2 +(verb)|publicize|advertize|publicise|announce|denote +(verb)|advertize|promote|push|praise +advertised|1 +(adj)|publicized |publicised +advertisement|1 +(noun)|ad|advertizement|advertising|advertizing|advert|promotion|publicity|promotional material|packaging +advertiser|1 +(noun)|advertizer|adman|publicist|publicizer|publiciser +advertising|2 +(noun)|ad|advertisement|advertizement|advertizing|advert|promotion|publicity|promotional material|packaging +(noun)|publicizing|commercial enterprise|business enterprise|business +advertising agency|1 +(noun)|ad agency|agency +advertising campaign|1 +(noun)|ad campaign|ad blitz|campaign|cause|crusade|drive|movement|effort +advertising department|1 +(noun)|advertising division|business department +advertising division|1 +(noun)|advertising department|business department +advertize|2 +(verb)|advertise|promote|push|praise +(verb)|advertise|publicize|publicise|announce|denote +advertizement|1 +(noun)|ad|advertisement|advertising|advertizing|advert|promotion|publicity|promotional material|packaging +advertizer|1 +(noun)|advertiser|adman|publicist|publicizer|publiciser +advertizing|1 +(noun)|ad|advertisement|advertizement|advertising|advert|promotion|publicity|promotional material|packaging +advertorial|1 +(noun)|ad|advertisement|advertizement|advertising|advertizing|advert +advice|1 +(noun)|proposal +advice and consent|1 +(noun)|saying|expression|locution +advil|1 +(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +advisability|1 +(noun)|wisdom|wiseness|soundness +advisable|1 +(adj)|advisable |better|best|judicious|sensible|recommended|suggested|well|wise +advise|3 +(verb)|counsel|hash out|discuss|talk over +(verb)|notify|give notice|send word|apprise|apprize|inform +(verb)|propose|suggest|declare +advised|2 +(adj)|well-advised |considered|wise|wise +(adj)|informed +advisedly|1 +(adv)|intentionally|deliberately|designedly|on purpose|purposely|by choice|by design +advisee|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +advisement|1 +(noun)|deliberation|weighing|consideration +adviser|1 +(noun)|advisor|consultant|authority +advisor|1 +(noun)|adviser|consultant|authority +advisory|1 +(adj)|consultative|consultatory|consultive|informative |informatory +advisory board|1 +(noun)|planning board|board +advisory service|1 +(noun)|consulting service +advocacy|1 +(noun)|support +advocate|4 +(noun)|advocator|proponent|exponent|person|individual|someone|somebody|mortal|human|soul +(noun)|counsel|counselor|counsellor|counselor-at-law|pleader|lawyer|attorney +(verb)|recommend|urge|propose|suggest|advise +(verb)|preach|urge|urge on|press|exhort +advocator|1 +(noun)|advocate|proponent|exponent|person|individual|someone|somebody|mortal|human|soul +advowson|1 +(noun)|right +adynamia|1 +(noun)|weakness +adynamic|2 +(adj)|undynamic |stagnant|moribund|static|unchanging +(adj)|asthenic|debilitated|enervated|weak +adz|1 +(noun)|adze|edge tool +adze|1 +(noun)|adz|edge tool +adzhar|1 +(noun)|Adzhar|Adzharia|state|province +adzharia|1 +(noun)|Adzhar|Adzharia|state|province +adzuki bean|1 +(noun)|adsuki bean|Vigna angularis|Phaseolus angularis|legume|leguminous plant +aec|1 +(noun)|Atomic Energy Commission|AEC|executive agency +aecial|1 +(adj)|fruiting body +aeciospore|1 +(noun)|spore +aecium|1 +(noun)|fruiting body +aedes|1 +(noun)|Aedes|genus Aedes|arthropod genus +aedes aegypti|1 +(noun)|yellow-fever mosquito|Aedes aegypti|mosquito +aedes albopictus|1 +(noun)|Asian tiger mosquito|Aedes albopictus|mosquito +aegadean islands|1 +(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island +aegadean isles|2 +(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island +(noun)|Aegates Isles|Aegadean Isles|naval battle +aegates|1 +(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island +aegates isles|1 +(noun)|Aegates Isles|Aegadean Isles|naval battle +aegean|3 +(adj)|Aegean|culture|civilization|civilisation +(adj)|Aegean|sea +(noun)|Aegean|Aegean Sea|sea +aegean civilisation|1 +(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture|civilization|civilisation +aegean civilization|1 +(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture|civilization|civilisation +aegean culture|1 +(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture|civilization|civilisation +aegean island|1 +(noun)|Aegean island|island +aegean sea|1 +(noun)|Aegean|Aegean Sea|sea +aegiceras|1 +(noun)|Aegiceras|genus Aegiceras|asterid dicot genus +aegiceras majus|1 +(noun)|black mangrove|Aegiceras majus|tree +aegilops|1 +(noun)|Aegilops|genus Aegilops|monocot genus|liliopsid genus +aegilops triuncalis|1 +(noun)|goat grass|Aegilops triuncalis|grass +aegina|2 +(noun)|Aegina|Aigina|Aegean island +(noun)|Aegina|jellyfish|medusa|medusan +aegir|1 +(noun)|tidal bore|bore|eagre|eager|tidal flow|tidal current +aegis|2 +(noun)|auspices|protection|endorsement|indorsement +(noun)|breastplate|egis|armor plate|armour plate|armor plating|plate armor|plate armour +aegisthus|1 +(noun)|Aegisthus|mythical being +aegospotami|2 +(noun)|Aegospotami|Aegospotamos|brook|creek +(noun)|Aegospotami|Aegospotamos|naval battle +aegospotamos|2 +(noun)|Aegospotami|Aegospotamos|brook|creek +(noun)|Aegospotami|Aegospotamos|naval battle +aegypiidae|1 +(noun)|Aegypiidae|family Aegypiidae|vulture +aegypius|1 +(noun)|Aegypius|genus Aegypius|bird genus +aegypius monachus|1 +(noun)|black vulture|Aegypius monachus|Old World vulture +aegyptopithecus|1 +(noun)|Aegyptopithecus|hominoid +aelfred|1 +(noun)|Alfred|AElfred|Alfred the Great|king|male monarch +aelius donatus|1 +(noun)|Donatus|Aelius Donatus|grammarian|syntactician +aeneas|1 +(noun)|Aeneas|mythical being +aeneas silvius|1 +(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +aeneid|1 +(noun)|Aeneid|epic poem|heroic poem|epic|epos +aengus|1 +(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity +aeolia|1 +(noun)|Aeolis|Aeolia|seashore|coast|seacoast|sea-coast +aeolian|3 +(adj)|weather|weather condition|atmospheric condition +(adj)|Aeolian|Greek deity +(noun)|Aeolian|Eolian|Greek|Hellene +aeolian harp|1 +(noun)|aeolian lyre|wind harp|harp +aeolian lyre|1 +(noun)|aeolian harp|wind harp|harp +aeolic|1 +(noun)|Aeolic|Eolic|Ancient Greek +aeolis|1 +(noun)|Aeolis|Aeolia|seashore|coast|seacoast|sea-coast +aeolotropic|1 +(adj)|eolotropic|anisotropic +aeolus|1 +(noun)|Aeolus|Greek deity +aeon|3 +(noun)|eon|spiritual being|supernatural being +(noun)|eon|geological time|geologic time +(noun)|eon|long time|age|years +aeonian|2 +(adj)|eonian|geological time|geologic time +(adj)|everlasting|eternal|lasting|eonian|immortal +aeonium|1 +(noun)|Aeonium|genus Aeonium|plant genus +aeonium haworthii|1 +(noun)|pinwheel|Aeonium haworthii|subshrub|suffrutex +aepyceros|1 +(noun)|Aepyceros|genus Aepyceros|mammal genus +aepyceros melampus|1 +(noun)|impala|Aepyceros melampus|antelope +aepyornidae|1 +(noun)|Aepyornidae|family Aepyornidae|bird family +aepyorniformes|1 +(noun)|Aepyorniformes|order Aepyorniformes|animal order +aepyornis|1 +(noun)|elephant bird|ratite|ratite bird|flightless bird +aerate|3 +(verb)|air out|air|expose +(verb)|activate|change|alter|modify +(verb)|oxygenate|oxygenize|oxygenise|process|treat +aerated|3 +(adj)|treated +(adj)|oxygenated|ventilated +(adj)|charged|effervescent +aeration|2 +(noun)|natural process|natural action|action|activity +(noun)|change of state +aerator|1 +(noun)|apparatus|setup +aerial|5 +(adj)|air +(adj)|air +(adj)|aeriform|airy|aery|ethereal|insubstantial |unsubstantial|unreal +(noun)|forward pass|pass|passing play|passing game|passing +(noun)|antenna|transmitting aerial|electrical device +aerial ladder|1 +(noun)|extension ladder +aerial ladder truck|1 +(noun)|ladder truck|fire engine|fire truck +aerial torpedo|1 +(noun)|torpedo +aerial tramway|1 +(noun)|tramway|tram|cable tramway|ropeway|conveyance|transport +aerialist|1 +(noun)|acrobat +aerially|1 +(adv)|via aircraft +aerides|1 +(noun)|orchid|orchidaceous plant +aerie|2 +(noun)|aery|eyrie|eyry|bird's nest +(noun)|aery|eyrie|eyry|habitation +aeriferous|1 +(adj)|gas +aeriform|2 +(adj)|airlike|gaseous +(adj)|aerial|airy|aery|ethereal|insubstantial |unsubstantial|unreal +aerify|1 +(verb)|gasify|vaporize|vaporise|change integrity +aerobacter|1 +(noun)|Aerobacter|genus Aerobacter|bacteria genus +aerobacter aerogenes|1 +(noun)|Aerobacter aerogenes|bacteria species +aerobatics|1 +(noun)|acrobatics|stunting|stunt flying|flight|flying +aerobe|1 +(noun)|organism|being +aerobic|2 +(adj)|aerobic |aerophilic|aerophilous|aerobiotic|oxidative +(adj)|aerobic +aerobic exercise|1 +(noun)|aerobics|cardiopulmonary exercise +aerobics|1 +(noun)|aerobic exercise|cardiopulmonary exercise +aerobiosis|1 +(noun)|life +aerobiotic|1 +(adj)|aerobic |aerophilic|aerophilous +aerodontalgia|1 +(noun)|toothache|odontalgia +aerodrome|1 +(noun)|airport|airdrome|airfield|landing field|flying field|field +aerodynamic|1 +(adj)|mechanics +aerodynamic force|1 +(noun)|force +aerodynamic lift|1 +(noun)|lift|aerodynamic force +aerodynamics|1 +(noun)|aeromechanics|mechanics +aeroembolism|2 +(noun)|air embolism|gas embolism|embolism +(noun)|decompression sickness|air embolism|gas embolism|caisson disease|bends|illness|unwellness|malady|sickness +aerofoil|1 +(noun)|airfoil|control surface|surface|device +aerogenerator|1 +(noun)|windmill|wind generator|generator +aerogram|1 +(noun)|airmail letter|air letter|aerogramme|letter|missive +aerogramme|1 +(noun)|airmail letter|air letter|aerogram|letter|missive +aerolite|1 +(noun)|meteorite +aerolitic|1 +(adj)|meteorite +aerological|1 +(adj)|meteorology +aerology|1 +(noun)|meteorology +aeromechanic|1 +(adj)|mechanics +aeromechanics|1 +(noun)|aerodynamics|mechanics +aeromedical|1 +(adj)|biomedicine +aeromedicine|1 +(noun)|aerospace medicine|aviation medicine|biomedicine +aeronaut|1 +(noun)|aviator|airman|flier|flyer|skilled worker|trained worker +aeronautic|1 +(adj)|aeronautical|physics|physical science|natural philosophy +aeronautical|1 +(adj)|aeronautic|physics|physical science|natural philosophy +aeronautical engineer|1 +(noun)|engineer|applied scientist|technologist +aeronautical engineering|2 +(noun)|engineering|engineering science|applied science|technology +(noun)|technology|engineering +aeronautics|1 +(noun)|astronautics|physics|physical science|natural philosophy +aerophagia|1 +(noun)|swallow|drink|deglutition +aerophilatelic|1 +(adj)|philately|stamp collecting|stamp collection +aerophilately|1 +(noun)|philately|stamp collecting|stamp collection +aerophile|1 +(noun)|fan|buff|devotee|lover +aerophilic|1 +(adj)|aerobic |aerophilous|aerobiotic|oxidative +aerophilous|1 +(adj)|aerobic |aerophilic|aerobiotic|oxidative +aerophyte|1 +(noun)|air plant|epiphyte|epiphytic plant|plant|flora|plant life +aeroplane|1 +(noun)|airplane|plane|heavier-than-air craft +aerosol|2 +(noun)|cloud +(noun)|aerosol container|aerosol can|aerosol bomb|spray can|dispenser +aerosol bomb|2 +(noun)|thermobaric bomb|fuel-air bomb|vacuum bomb|volume-detonation bomb|bomb|fuel-air explosive|FAE +(noun)|aerosol|aerosol container|aerosol can|spray can|dispenser +aerosol can|1 +(noun)|aerosol|aerosol container|aerosol bomb|spray can|dispenser +aerosol container|1 +(noun)|aerosol|aerosol can|aerosol bomb|spray can|dispenser +aerosolise|2 +(verb)|aerosolize|disperse|dissipate|scatter|spread out +(verb)|aerosolize|scatter|sprinkle|dot|dust|disperse +aerosolised|1 +(adj)|aerosolized|gaseous +aerosolize|2 +(verb)|aerosolise|scatter|sprinkle|dot|dust|disperse +(verb)|aerosolise|disperse|dissipate|scatter|spread out +aerosolized|1 +(adj)|aerosolised|gaseous +aerospace|1 +(noun)|region|part +aerospace engineer|1 +(noun)|engineer|applied scientist|technologist +aerospace medicine|1 +(noun)|aeromedicine|aviation medicine|biomedicine +aertex|1 +(noun)|Aertex|fabric|cloth|material|textile +aery|3 +(adj)|aeriform|aerial|airy|ethereal|insubstantial |unsubstantial|unreal +(noun)|aerie|eyrie|eyry|bird's nest +(noun)|aerie|eyrie|eyry|habitation +aeschylean|1 +(adj)|Aeschylean|dramatist|playwright +aeschylus|1 +(noun)|Aeschylus|dramatist|playwright +aeschynanthus|1 +(noun)|air plant|epiphyte|aerophyte|epiphytic plant +aeschynanthus radicans|1 +(noun)|lipstick plant|Aeschynanthus radicans|aeschynanthus +aesculapian|1 +(adj)|medical|Greco-Roman deity|Graeco-Roman deity +aesculapius|1 +(noun)|Aesculapius|Greco-Roman deity|Graeco-Roman deity +aesculus|1 +(noun)|Aesculus|genus Aesculus|dicot genus|magnoliopsid genus +aesculus hippocastanum|1 +(noun)|horse chestnut|buckeye|Aesculus hippocastanum|angiospermous tree|flowering tree +aesir|1 +(noun)|Aesir|Norse deity +aesop|1 +(noun)|Aesop|fabulist +aesop's fables|1 +(noun)|Aesop's fables|fable|parable|allegory|apologue +aesthete|1 +(noun)|esthete|connoisseur|cognoscenti +aesthetic|4 +(adj)|esthetic|philosophy +(adj)|aesthetic |esthetic|aesthetical|esthetical|artistic|beautiful|cosmetic|enhancive|painterly|sensuous +(adj)|esthetic|artistic|pleasing|tasteful +(noun)|esthetic|philosophical doctrine|philosophical theory +aesthetical|1 +(adj)|aesthetic |esthetic|esthetical|artistic|beautiful|cosmetic|enhancive|painterly|sensuous +aesthetically|1 +(adv)|esthetically +aesthetician|2 +(noun)|esthetician|skilled worker|trained worker +(noun)|esthetician|philosopher +aesthetics|2 +(noun)|esthetics|philosophy +(noun)|aesthetic|esthetic|philosophical doctrine|philosophical theory +aestival|1 +(adj)|estival|summery +aestivate|1 +(verb)|estivate|sleep|kip|slumber|log Z's|catch some Z's +aestivation|2 +(noun)|estivation|dormancy|quiescence|quiescency +(noun)|estivation|arrangement +aether|2 +(noun)|Aether|Greek deity +(noun)|ether|medium +aethionema|1 +(noun)|Aethionema|genus Aethionema|dilleniid dicot genus +aethusa|1 +(noun)|Aethusa|genus Aethusa|rosid dicot genus +aethusa cynapium|1 +(noun)|fool's parsley|lesser hemlock|Aethusa cynapium|poisonous plant +aetiologic|2 +(adj)|etiological|etiologic|aetiological|philosophy +(adj)|etiological|etiologic|aetiological|cause +aetiological|2 +(adj)|etiological|etiologic|aetiologic|philosophy +(adj)|etiological|etiologic|aetiologic|cause +aetiologist|1 +(noun)|etiologist|diagnostician|pathologist +aetiology|2 +(noun)|etiology|cause +(noun)|etiology|philosophy +aetobatus|1 +(noun)|Aetobatus|genus Aetobatus|fish genus +aetobatus narinari|1 +(noun)|spotted eagle ray|spotted ray|Aetobatus narinari|eagle ray +afars and issas|1 +(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country|African nation +afeard|1 +(adj)|afeared|afraid +afeared|1 +(adj)|afeard|afraid +afebrile|1 +(adj)|afebrile |symptom +affability|1 +(noun)|affableness|amiability|amiableness|bonhomie|geniality|friendliness +affable|1 +(adj)|amiable|cordial|genial|friendly +affableness|1 +(noun)|affability|amiability|amiableness|bonhomie|geniality|friendliness +affably|1 +(adv)|amiably|genially +affair|3 +(noun)|matter|thing|concern +(noun)|affaire|intimacy|liaison|involvement|amour|sexual relationship +(noun)|occasion|social occasion|function|social function|social event +affaire|1 +(noun)|affair|intimacy|liaison|involvement|amour|sexual relationship +affaire d'honneur|1 +(noun)|duel|fight|fighting|combat|scrap +affairs|5 +(noun)|personal business|personal matters|concern +(noun)|transaction|dealing|dealings +(noun)|matter|affair|thing|concern +(noun)|affair|affaire|intimacy|liaison|involvement|amour|sexual relationship +(noun)|affair|occasion|social occasion|function|social function|social event +affect|6 +(noun)|feeling +(verb)|impact|bear upon|bear on|touch on|touch|change|alter|modify +(verb)|change|alter|modify +(verb)|involve|regard|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|feign|sham|pretend|dissemble|misrepresent|belie +(verb)|impress|move|strike +affectation|1 +(noun)|mannerism|pose|affectedness|pretense|pretence|pretending|simulation|feigning +affected|3 +(adj)|affected |impressed|smitten|stricken|struck|stage-struck|taken|wonder-struck|moved +(adj)|affected |unnatural|agonistic|strained|artificial|contrived|hokey|stilted|constrained|forced|strained|elocutionary|mannered|plummy|studied|deliberate +(adj)|stirred|touched|moved +affected role|1 +(noun)|patient role|patient|semantic role|participant role +affectedness|2 +(noun)|unnaturalness +(noun)|affectation|mannerism|pose|pretense|pretence|pretending|simulation|feigning +affecting|1 +(adj)|poignant|touching|moving +affectingly|1 +(adv)|poignantly|touchingly +affection|1 +(noun)|affectionateness|fondness|tenderness|heart|warmheartedness|feeling +affectional|1 +(adj)|affective|emotive|emotional +affectionate|1 +(adj)|caring|fond|lovesome|tender|warm|loving +affectionately|1 +(adv)|dearly|dear +affectionateness|2 +(noun)|affection|fondness|tenderness|heart|warmheartedness|feeling +(noun)|fondness|lovingness|warmth|emotionality|emotionalism +affectioned|1 +(adj)|loving +affective|1 +(adj)|affectional|emotive|emotional +affective disorder|1 +(noun)|major affective disorder|emotional disorder|emotional disturbance|mental disorder|mental disturbance|disturbance|psychological disorder|folie +affenpinscher|1 +(noun)|monkey pinscher|monkey dog|pinscher +afferent|1 +(adj)|afferent |centripetal|receptive|sensory|corticoafferent|corticipetal +afferent neuron|1 +(noun)|sensory neuron|nerve cell|neuron +affiance|1 +(verb)|betroth|engage|plight|vow +affianced|1 +(adj)|bespoken|betrothed|engaged|pledged|attached |committed +affiant|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +affidavit|1 +(noun)|testimony|legal document|legal instrument|official document|instrument +affiliate|5 +(noun)|associate +(noun)|organization|organisation +(verb)|join|fall in|get together +(verb)|consort|associate|assort|interact +(verb)|join|fall in|get together +affiliated|1 +(adj)|attached|connected|related |related to +affiliation|2 +(noun)|association|tie|tie-up|relationship +(noun)|association +affinal|1 +(adj)|affine|related +affine|2 +(adj)|affinal|related +(noun)|kin|kinsperson|family +affine geometry|1 +(noun)|geometry +affine transformation|1 +(noun)|transformation +affined|1 +(adj)|connected +affinity|7 +(noun)|chemical attraction|force +(noun)|attraction|attractive force +(noun)|kinship by marriage|kinship|family relationship|relationship +(noun)|phylogenetic relation|kinship|family relationship|relationship +(noun)|kinship|relation +(noun)|resemblance +(noun)|attraction|attractiveness +affirm|2 +(verb)|confirm|corroborate|sustain|substantiate|support +(verb)|verify|assert|avow|aver|swan|swear|declare +affirmable|1 +(adj)|assertable|possible +affirmation|4 +(noun)|avowal|avouchment|assertion|averment|asseveration +(noun)|assertion|statement|speech act +(noun)|commitment|dedication +(noun)|judgment|judgement|judicial decision +affirmative|4 +(adj)|affirmative |affirmatory|assentient|favorable|positive|favorable|favourable|positive +(adj)|optimistic|positive +(adj)|favoring|pro +(noun)|avowal|avouchment|affirmation +affirmative action|1 +(noun)|social action +affirmative pleading|1 +(noun)|pleading +affirmativeness|1 +(noun)|agreeableness|agreeability +affirmatory|1 +(adj)|affirmative |assentient|favorable|positive|favorable|favourable|positive +affirmed|1 +(noun)|Affirmed|thoroughbred +affirmer|1 +(noun)|asserter|declarer|asseverator|avower|communicator +affix|4 +(noun)|bound morpheme|bound form +(verb)|stick on|attach +(verb)|append|add on|supplement|attach +(verb)|attach +affixal|1 +(adj)|affixial|bound morpheme|bound form +affixation|3 +(noun)|morphology|sound structure|syllable structure|word structure +(noun)|formation +(noun)|attachment|combination|combining|compounding +affixed|1 +(adj)|affixed |appendant|basifixed|glued|pasted|mounted +affixial|1 +(adj)|affixal|bound morpheme|bound form +afflatus|1 +(noun)|inspiration +afflict|3 +(verb)|upset|discompose|untune|disconcert|discomfit +(verb)|smite|damage +(verb)|trouble|ail|pain|hurt +afflicted|2 +(adj)|stricken|ill |sick +(adj)|impaired|unfit +affliction|3 +(noun)|adversity|hardship|hard knocks +(noun)|ill health|unhealthiness|health problem +(noun)|trouble +afflictive|1 +(adj)|painful|sore|unpleasant +affluence|1 +(noun)|richness|wealth|wealthiness +affluent|3 +(adj)|flush|loaded|moneyed|wealthy|rich +(noun)|rich person|wealthy person|have +(noun)|feeder|tributary|branch +afford|3 +(verb)|spend|expend|drop +(verb)|yield|give|supply|provide|render|furnish +(verb)|open|give +affordable|1 +(adj)|low-cost|low-priced|cheap |inexpensive +afforest|1 +(verb)|forest|plant|set +afforestation|1 +(noun)|conversion +affranchise|1 +(verb)|enfranchise|liberate|set free +affray|2 +(noun)|altercation|fracas|quarrel|wrangle|row|words|run-in|dustup +(noun)|disturbance|fray|ruffle|fight|fighting|combat|scrap +affricate|1 +(noun)|affricate consonant|affricative|consonant +affricate consonant|1 +(noun)|affricate|affricative|consonant +affrication|1 +(noun)|articulation +affricative|1 +(noun)|affricate|affricate consonant|consonant +affright|1 +(verb)|frighten|fright|scare|stimulate|shake|shake up|excite|stir +affront|2 +(noun)|insult|discourtesy|offense|offence|offensive activity +(verb)|diss|insult|hurt|wound|injure|bruise|offend|spite +affronted|1 +(adj)|insulted|abused +affusion|1 +(noun)|baptism +afghan|6 +(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation +(noun)|blanket|cover +(noun)|Afghan|Afghanistani|Asian|Asiatic +(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian|Iranian language +(noun)|sheepskin coat|coat +(noun)|Afghan hound|Afghan|hound|hound dog +afghan hound|1 +(noun)|Afghan hound|Afghan|hound|hound dog +afghan monetary unit|1 +(noun)|Afghan monetary unit|monetary unit +afghani|3 +(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation +(noun)|Afghan monetary unit +(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian|Iranian language +afghanistan|1 +(noun)|Afghanistan|Islamic State of Afghanistan|Asian country|Asian nation +afghanistani|2 +(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation +(noun)|Afghan|Afghanistani|Asian|Asiatic +afibrinogenemia|1 +(noun)|blood disease|blood disorder +aficionado|2 +(noun)|sports fan|fan +(noun)|fan|buff|devotee|lover +afield|1 +(adv)|abroad +afire|1 +(adj)|ablaze|aflame|aflare|alight|blazing|burning|flaming|on fire|lighted |lit +afisr|1 +(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency|federal agency|government agency|bureau|office|authority +afl|1 +(noun)|American Federation of Labor|AFL|federation +afl-cio|1 +(noun)|American Federation of Labor and Congress of Industrial Organizations|AFL-CIO|federation +aflame|2 +(adj)|ablaze|aroused|turned on|passionate +(adj)|ablaze|afire|aflare|alight|blazing|burning|flaming|on fire|lighted |lit +aflare|2 +(adj)|flaring|flying|waving|moving +(adj)|ablaze|afire|aflame|alight|blazing|burning|flaming|on fire|lighted |lit +aflatoxin|1 +(noun)|mycotoxin|bioweapon|biological weapon|bioarm +aflaxen|1 +(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +aflicker|1 +(adj)|flickering|unsteady +afloat|3 +(adj)|adrift|aimless|directionless|planless|rudderless|undirected|purposeless +(adj)|afloat |adrift|drifting|at sea|sailing|floating|waterborne +(adj)|awash|flooded|inundated|overflowing|full +aflutter|1 +(adj)|nervous|excited +afoot|2 +(adj)|moving +(adj)|underway|current +aforementioned|1 +(adj)|aforesaid|said|same +aforesaid|1 +(adj)|aforementioned|said|same +aforethought|1 +(adj)|planned|plotted|premeditated +afoul|1 +(adj)|foul|fouled|tangled +afp|1 +(noun)|alpha fetoprotein|alpha foetoprotein|AFP|fetoprotein|foetoprotein +afraid|4 +(adj)|afraid |acrophobic|afeard|afeared|aghast|appalled|dismayed|shocked|agoraphobic|alarmed|algophobic|apprehensive|browbeaten|bullied|cowed|hangdog|intimidated|claustrophobic|fearful|frightened|scared|horrified|horror-stricken|horror-struck|hunted|hydrophobic|aquaphobic|mysophobic|panicky|panicked|panic-stricken|panic-struck|terrified|frightened|petrified|numb|terror-stricken|terror-struck|triskaidekaphobic|unnerved|white-lipped|xenophobic|shitless|cowardly|fearful|timid +(adj)|concerned +(adj)|concerned +(adj)|disinclined +aframomum|1 +(noun)|Aframomum|genus Aframomum|plant genus +aframomum melegueta|1 +(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb|herbaceous plant +afrasian|1 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +afrasian language|1 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +afresh|1 +(adv)|anew +africa|1 +(noun)|Africa|continent +african|2 +(adj)|African|continent +(noun)|African|person|individual|someone|somebody|mortal|human|soul +african-american|2 +(adj)|African-American|Afro-American|black +(noun)|African-American|Afro-American|Black American|American +african-american music|1 +(noun)|black music|African-American music|music genre|musical genre|genre|musical style +african bowstring hemp|1 +(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria|bowstring hemp +african chameleon|1 +(noun)|African chameleon|Chamaeleo chamaeleon|chameleon|chamaeleon +african clawed frog|1 +(noun)|African clawed frog|Xenopus laevis|tongueless frog +african coral snake|1 +(noun)|African coral snake|Aspidelaps lubricus|coral snake|Old World coral snake +african country|1 +(noun)|African country|African nation|country|state|land +african crocodile|1 +(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile +african daisy|3 +(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower +(noun)|African daisy|flower +(noun)|African daisy|flower +african elephant|1 +(noun)|African elephant|Loxodonta africana|elephant +african gray|1 +(noun)|African gray|Psittacus erithacus|parrot +african green monkey|1 +(noun)|green monkey|African green monkey|Cercopithecus aethiops sabaeus|guenon|guenon monkey +african hemp|2 +(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria|bowstring hemp +(noun)|African hemp|Sparmannia africana|shrub|bush +african holly|1 +(noun)|African holly|Solanum giganteum|nightshade +african hunting dog|1 +(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog +african lily|1 +(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus|lily of the Nile +african love grass|1 +(noun)|weeping love grass|African love grass|Eragrostis curvula|love grass|bay grass +african mahogany|1 +(noun)|African mahogany|mahogany|mahogany tree +african marigold|1 +(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold +african millet|1 +(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet +african monitor|1 +(noun)|African monitor|Varanus niloticus|monitor|monitor lizard|varan +african nation|1 +(noun)|African country|African nation|country|state|land +african oil palm|1 +(noun)|African oil palm|Elaeis guineensis|oil palm +african sandalwood|1 +(noun)|camwood|African sandalwood|Baphia nitida|tree +african scented mahogany|1 +(noun)|African scented mahogany|cedar mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany|mahogany tree +african tea|1 +(noun)|kat|khat|qat|quat|cat|Arabian tea|African tea|stimulant|stimulant drug +african tulip|1 +(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus|lily of the Nile +african violet|1 +(noun)|African violet|Saintpaulia ionantha|flower +african walnut|1 +(noun)|African walnut|Lovoa klaineana|tree +african wild ass|1 +(noun)|African wild ass|Equus asinus|wild ass +african yellowwood|1 +(noun)|cape yellowwood|African yellowwood|Podocarpus elongatus|conifer|coniferous tree +africander|1 +(noun)|Africander|cattle|cows|kine|oxen|Bos taurus +africanized bee|1 +(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee|Apis mellifera +africanized honey bee|1 +(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee|Apis mellifera +afrikaans|2 +(adj)|Afrikaans|Afrikaner|African country|African nation +(noun)|Afrikaans|Taal|the Taal|South African Dutch|Dutch +afrikander|1 +(noun)|Afrikaner|Afrikander|Boer|South African +afrikaner|2 +(adj)|Afrikaans|Afrikaner|African country|African nation +(noun)|Afrikaner|Afrikander|Boer|South African +afrl|1 +(noun)|Air Force Research Laboratory|AFRL|agency|federal agency|government agency|bureau|office|authority +afro|1 +(noun)|Afro|Afro hairdo|hairdo|hair style|coiffure +afro-american|2 +(adj)|African-American|Afro-American|black +(noun)|African-American|Afro-American|Black American|American +afro-asian|1 +(adj)|Afro-Asian|continent +afro-asiatic|2 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +(noun)| +afro-wig|1 +(noun)|hairpiece|false hair|postiche +afro hairdo|1 +(noun)|Afro|Afro hairdo|hairdo|hair style|coiffure +afroasiatic|1 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +afroasiatic language|1 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +afrocarpus|1 +(noun)|Afrocarpus|genus Afrocarpus|gymnosperm genus +afrocarpus falcata|1 +(noun)|common yellowwood|bastard yellowwood|Afrocarpus falcata|gymnospermous yellowwood +afropavo|1 +(noun)|Congo peafowl|Afropavo congensis|pheasant +afropavo congensis|1 +(noun)|afropavo|Congo peafowl|Afropavo congensis|pheasant +afspc|1 +(noun)|Air Force Space Command|AFSPC|command +aft|2 +(adj)|aft |after|aftermost|back +(adv)|abaft|astern +after|2 +(adj)|aft +(adv)|subsequently|later|afterwards|afterward|later on +after-hours|1 +(adj)|late +after-school|1 +(adj)|outside +after-shave|1 +(noun)|after-shave lotion|lotion +after-shave lotion|1 +(noun)|after-shave|lotion +after part|1 +(noun)|stern|quarter|poop|tail|rear|back +afterbirth|1 +(noun)|placenta +afterburner|1 +(noun)|device +aftercare|1 +(noun)|medical care|medical aid +afterdamp|1 +(noun)|gas +afterdeck|1 +(noun)|deck +aftereffect|2 +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|effect +afterglow|2 +(noun)|atmospheric phenomenon +(noun)|pleasantness +afterimage|1 +(noun)|aftersensation|memory image +afterlife|1 +(noun)|hereafter|life|lifetime|lifespan +aftermath|2 +(noun)|wake|backwash|consequence|effect|outcome|result|event|issue|upshot +(noun)|consequence|result|resultant|final result|outcome|termination +aftermost|1 +(adj)|aft +afternoon|2 +(noun)|day|daytime|daylight +(noun)|good afternoon|greeting|salutation|farewell|word of farewell +afternoon tea|1 +(noun)|tea|teatime|meal|repast +afterpains|1 +(noun)|pang +afterpiece|1 +(noun)|piece +afters|1 +(noun)|dessert|sweet|course +aftersensation|1 +(noun)|afterimage|memory image +aftershaft|1 +(noun)|feather|plume|plumage +aftershafted|1 +(adj)|feathered +aftershock|1 +(noun)|tremor|earth tremor|microseism +aftertaste|1 +(noun)|afterimage|aftersensation +afterthought|2 +(noun)|reconsideration|second thought|rethink|reversal|change of mind|flip-flop|turnabout|turnaround +(noun)|addition|add-on|improver +afterward|1 +(adv)|subsequently|later|afterwards|after|later on +afterwards|1 +(adv)|subsequently|later|afterward|after|later on +afterworld|1 +(noun)|imaginary place|mythical place +ag|1 +(noun)|silver|Ag|atomic number 47|noble metal|conductor +aga|1 +(noun)|Aga|Agha|title|title of respect +again|1 +(adv)|once again|once more|over again +again and again|1 +(adv)|over and over|over and over again|time and again|time and time again +against the clock|1 +(adv)|against time +against the wind|1 +(adv)|upwind|into the wind +against time|1 +(adv)|against the clock +agal|1 +(noun)|cord +agalactia|1 +(noun)|agalactosis|physiological state|physiological condition +agalactosis|1 +(noun)|agalactia|physiological state|physiological condition +agalinis|1 +(noun)|Agalinis|genus Agalinis|asterid dicot genus +agama|1 +(noun)|agamid|agamid lizard +agamemnon|1 +(noun)|Agamemnon|mythical being +agamic|1 +(adj)|agamous|agamogenetic|apomictic|parthenogenetic|asexual |nonsexual +agamid|1 +(noun)|agamid lizard|lizard +agamid lizard|1 +(noun)|agamid|lizard +agamidae|1 +(noun)|Agamidae|family Agamidae|reptile family +agammaglobulinemia|1 +(noun)|immunodeficiency +agamogenesis|1 +(noun)|asexual reproduction|reproduction +agamogenetic|1 +(adj)|agamic|agamous|apomictic|parthenogenetic|asexual |nonsexual +agamous|1 +(adj)|agamic|agamogenetic|apomictic|parthenogenetic|asexual |nonsexual +agapanthus|1 +(noun)|lily of the Nile|liliaceous plant +agapanthus africanus|1 +(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus|lily of the Nile +agape|3 +(adj)|gaping|open |opened +(noun)|love +(noun)|love feast|religious ceremony|religious ritual +agapornis|1 +(noun)|Agapornis|genus Agapornis|bird genus +agar|2 +(noun)|nutrient agar|culture medium|medium +(noun)|agar-agar|gum +agar-agar|1 +(noun)|agar|gum +agaric|2 +(noun)|Fomes igniarius|fungus +(noun)|basidiomycete|basidiomycetous fungi +agaricaceae|1 +(noun)|Agaricaceae|family Agaricaceae|fungus family +agaricales|1 +(noun)|Agaricales|order Agaricales|fungus order +agaricus|1 +(noun)|Agaricus|genus Agaricus|fungus genus +agaricus arvensis|1 +(noun)|horse mushroom|Agaricus arvensis|agaric +agaricus campestris|1 +(noun)|meadow mushroom|field mushroom|Agaricus campestris|agaric +agassiz|1 +(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist|natural scientist +agastache|1 +(noun)|Agastache|genus Agastache|asterid dicot genus +agastache foeniculum|1 +(noun)|anise hyssop|Agastache foeniculum|giant hyssop +agastache mexicana|1 +(noun)|Mexican hyssop|Agastache mexicana|giant hyssop +agastache nepetoides|1 +(noun)|yellow giant hyssop|Agastache nepetoides|giant hyssop +agate|1 +(noun)|chalcedony|calcedony +agate line|1 +(noun)|line|area unit|square measure +agateware|1 +(noun)|pottery|clayware +agatha christie|1 +(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer|author +agathis|1 +(noun)|Agathis|genus Agathis|gymnosperm genus +agathis alba|1 +(noun)|amboina pine|amboyna pine|Agathis dammara|Agathis alba|kauri pine|dammar pine +agathis australis|1 +(noun)|kauri|kaury|Agathis australis|kauri pine|dammar pine +agathis dammara|1 +(noun)|amboina pine|amboyna pine|Agathis dammara|Agathis alba|kauri pine|dammar pine +agathis lanceolata|1 +(noun)|red kauri|Agathis lanceolata|kauri pine|dammar pine +agathis robusta|1 +(noun)|dundathu pine|queensland kauri|smooth bark kauri|Agathis robusta|kauri pine|dammar pine +agavaceae|1 +(noun)|Agavaceae|family Agavaceae|agave family|sisal family|liliid monocot family +agave|1 +(noun)|century plant|American aloe|desert plant|xerophyte|xerophytic plant|xerophile|xerophilous plant +agave americana|1 +(noun)|American agave|Agave americana|agave|century plant|American aloe +agave atrovirens|1 +(noun)|maguey|Agave atrovirens|agave|century plant|American aloe +agave cantala|1 +(noun)|maguey|cantala|Agave cantala|agave|century plant|American aloe +agave family|1 +(noun)|Agavaceae|family Agavaceae|sisal family|liliid monocot family +agave sisalana|1 +(noun)|sisal|Agave sisalana|agave|century plant|American aloe +agave tequilana|1 +(noun)|Agave tequilana|agave|century plant|American aloe +agaze|1 +(adj)|staring|open |opened +agdestis|1 +(noun)|Agdestis|genus Agdestis|caryophylloid dicot genus +agdistis|1 +(noun)|Agdistis|Rhea +age|8 +(noun)|property +(noun)|historic period|era|epoch +(noun)|eld|time of life +(noun)|old age|years|eld|geezerhood|time of life +(noun)|long time|years|time period|period of time|period +(verb)|develop +(verb)|senesce|get on|mature|maturate|develop +(verb)|change|alter|modify +age-old|1 +(adj)|antique|old +age bracket|1 +(noun)|age group|cohort|people +age class|1 +(noun)|class|social class|socio-economic class +age group|1 +(noun)|age bracket|cohort|people +age limit|1 +(noun)|regulation|ordinance +age norm|1 +(noun)|average|norm +age of consent|1 +(noun)|age|eld +age of fishes|1 +(noun)|Devonian|Devonian period|Age of Fishes|period|geological period +age of mammals|1 +(noun)|Cenozoic|Cenozoic era|Age of Mammals|era|geological era +age of man|1 +(noun)|Quaternary|Quaternary period|Age of Man|period|geological period +age of reason|1 +(noun)|Enlightenment|Age of Reason|reform movement +age of reptiles|1 +(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era|geological era +aged|6 +(adj)|elderly|older|senior|old +(adj)|worn +(adj)|of age|old +(adj)|ripened|ripe |mature +(adj)|cured|preserved +(noun)|age group|age bracket|cohort +agedness|1 +(noun)|senescence|oldness +agee|1 +(noun)|Agee|James Agee|novelist +ageing|3 +(adj)|aging|senescent|old +(noun)|ripening|aging|organic process|biological process +(noun)|aging|senescence|organic process|biological process +ageism|1 +(noun)|agism|discrimination|favoritism|favouritism +agelaius|1 +(noun)|Agelaius|genus Agelaius|bird genus +agelaius phoeniceus|1 +(noun)|red-winged blackbird|redwing|Agelaius phoeniceus|New World blackbird|blackbird +ageless|1 +(adj)|eternal|everlasting|perpetual|unending|unceasing|permanent |lasting +agelessness|1 +(noun)|immutability|immutableness|fixity +agelong|1 +(adj)|long +agency|5 +(noun)|federal agency|government agency|bureau|office|authority|administrative unit|administrative body +(noun)|business|concern|business concern|business organization|business organisation +(noun)|action|activity|activeness +(noun)|representation|delegacy|state +(noun)|means|way|implementation|effectuation +agency security|1 +(noun)|government security|security|certificate +agenda|2 +(noun)|docket|schedule|plan|program|programme +(noun)|agendum|order of business|list|listing +agenda item|1 +(noun)|item|point +agendum|1 +(noun)|agenda|order of business|list|listing +agene|1 +(noun)|nitrogen trichloride|Agene|trichloride +agenesia|1 +(noun)|agenesis|nondevelopment +agenesis|1 +(noun)|agenesia|nondevelopment +agenise|1 +(verb)|Agenize|Agenise|process|treat +agenize|1 +(verb)|Agenize|Agenise|process|treat +agent|6 +(noun)|causal agent|cause|causal agency +(noun)|causal agent|cause|causal agency +(noun)|representative +(noun)|factor|broker|businessperson|bourgeois +(noun)|federal agent|official|functionary +(noun)|agentive role|semantic role|participant role +agent-in-place|1 +(noun)|secret agent|intelligence officer|intelligence agent|operative +agent bank|2 +(noun)|lead bank|depository financial institution|bank|banking concern|banking company +(noun)|depository financial institution|bank|banking concern|banking company +agent orange|1 +(noun)|Agent Orange|herbicide|weedkiller|weed killer +agent provocateur|1 +(noun)|provocateur|secret agent|intelligence officer|intelligence agent|operative +agential|1 +(adj)|representative +agentive role|1 +(noun)|agent|semantic role|participant role +agerasia|1 +(noun)|appearance|visual aspect +ageratina|1 +(noun)|Ageratina|genus Ageratina|asterid dicot genus +ageratina altissima|1 +(noun)|white snakeroot|white sanicle|Ageratina altissima|Eupatorium rugosum|herb|herbaceous plant +ageratum|2 +(noun)|mistflower|mist-flower|Conoclinium coelestinum|Eupatorium coelestinum|flower +(noun)|flower +ageratum houstonianum|1 +(noun)|common ageratum|Ageratum houstonianum|ageratum +aggeus|2 +(noun)|Haggai|Aggeus|prophet +(noun)|Haggai|Aggeus|Book of Haggai|book +agglomerate|2 +(adj)|agglomerated|agglomerative|clustered|collective +(verb)|bunch|bunch up|bundle|cluster|clump +agglomerated|1 +(adj)|agglomerate|agglomerative|clustered|collective +agglomeration|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|collection|collecting|assembling|aggregation +agglomerative|1 +(adj)|agglomerate|agglomerated|clustered|collective +agglomerator|1 +(noun)|device +agglutinate|3 +(adj)|agglutinative|adhesive +(verb)|attach +(verb)|cling|cleave|adhere|stick|cohere +agglutinating activity|1 +(noun)|agglutination|chemical process|chemical change|chemical action +agglutination|3 +(noun)|organic process|biological process +(noun)|linguistic process +(noun)|agglutinating activity|chemical process|chemical change|chemical action +agglutination test|1 +(noun)|blood test +agglutinative|2 +(adj)|polysynthetic|synthetic +(adj)|agglutinate|adhesive +agglutinin|1 +(noun)|antibody +agglutinogen|1 +(noun)|antigen +aggrade|1 +(verb)|grade +aggrandise|1 +(verb)|embroider|pad|lard|embellish|aggrandize|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +aggrandisement|1 +(noun)|aggrandizement|elevation|increase|step-up +aggrandize|1 +(verb)|embroider|pad|lard|embellish|aggrandise|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +aggrandizement|1 +(noun)|aggrandisement|elevation|increase|step-up +aggravate|2 +(verb)|worsen|exacerbate|exasperate|change|alter|modify +(verb)|exacerbate|exasperate|anger +aggravated|2 +(adj)|intense +(adj)|provoked|angry +aggravated assault|1 +(noun)|assault +aggravating|1 +(adj)|exacerbating|exasperating|intensifying +aggravation|3 +(noun)|exasperation|annoyance|chafe|vexation +(noun)|irritation|provocation|aggression +(noun)|exacerbation|intensification +aggravator|1 +(noun)|annoyance|unpleasant person|disagreeable person +aggregate|6 +(adj)|aggregated|aggregative|mass|collective +(adj)|multiple +(noun)|congeries|conglomeration|sum|summation|sum total +(noun)|sum|total|totality|whole|whole thing|unit +(verb)|come|add up|amount +(verb)|combine|mix|mingle|commix|unify|amalgamate +aggregate fruit|1 +(noun)|multiple fruit|syncarp|fruit +aggregated|1 +(adj)|aggregate|aggregative|mass|collective +aggregation|2 +(noun)|collection|accumulation|assemblage|group|grouping +(noun)|collection|collecting|assembling|grouping +aggregative|1 +(adj)|aggregate|aggregated|mass|collective +aggregator|1 +(noun)|collector|person|individual|someone|somebody|mortal|human|soul +aggress|1 +(verb)|attack|act|move +aggression|5 +(noun)|unfriendliness +(noun)|aggressiveness|hostility|enmity|ill will +(noun)|hostility|action +(noun)|combat|armed combat +(noun)|behavior|behaviour|conduct|doings +aggressive|4 +(adj)|aggressive |assertive|self-asserting|self-assertive|battleful|bellicose|combative|contentious|competitive|militant|hard-hitting|high-pressure|hostile|in-your-face|obstreperous|predatory|rapacious|raptorial|ravening|vulturine|vulturous|scrappy|truculent|pugnacious|rough|assertive|hostile|offensive +(adj)|enterprising|pushful|pushing|pushy|ambitious +(adj)|fast-growing|invasive +(adj)|belligerent|hostile +aggressively|1 +(adv)|sharply +aggressiveness|3 +(noun)|drive +(noun)|aggression|hostility|enmity|ill will +(noun)|contentiousness|belligerence|pugnacity|quarrelsomeness|disagreeableness +aggressor|2 +(noun)|attacker|assailant|assaulter|wrongdoer|offender +(noun)|instigator|initiator +aggrieve|2 +(verb)|wrong +(verb)|grieve|afflict +aggro|1 +(noun)|aggravation|irritation|provocation +aggroup|1 +(verb)|group|meet|gather|assemble|forgather|foregather +agha|1 +(noun)|Aga|Agha|title|title of respect +aghan|1 +(noun)|Aghan|Margasivsa|Hindu calendar month +aghast|1 +(adj)|appalled|dismayed|shocked|afraid +agile|2 +(adj)|nimble|quick|spry|active +(adj)|nimble|intelligent +agilely|1 +(adv)|nimbly +agility|1 +(noun)|legerity|lightness|lightsomeness|nimbleness|gracefulness +agincourt|1 +(noun)|Agincourt|pitched battle +aging|3 +(adj)|ageing|senescent|old +(noun)|ageing|senescence|organic process|biological process +(noun)|ripening|ageing|organic process|biological process +agio|1 +(noun)|agiotage|premium|exchange premium|charge +agiotage|1 +(noun)|agio|premium|exchange premium|charge +agism|1 +(noun)|ageism|discrimination|favoritism|favouritism +agitate|6 +(verb)|foment|stir up|provoke|stimulate +(verb)|rouse|turn on|charge|commove|excite|charge up|disturb|upset|trouble +(verb)|crusade|fight|press|campaign|push|advertise|advertize|promote|push +(verb)|stir|shift|budge|move +(verb)|shake|move +(verb)|vex|disturb|commove|shake up|stir up|raise up|move|displace +agitated|3 +(adj)|agitated |aroused|emotional|excited|worked up|demoniac|demoniacal|distraught|overwrought|jolted|shaken|feverish|hectic|frantic|frenetic|phrenetic|frenzied|hysterical|psychedelic|wild-eyed|discomposed|excited|impatient|tense|unquiet|unsteady +(adj)|agitated |bubbling|foaming|foamy|frothing|spumous|spumy|sudsy|churning|roiling|roiled|roily|turbulent|churning|churned-up|jolted|rippled|ruffled|seething|stirred +(adj)|tossing|moving +agitated depression|1 +(noun)|depressive disorder|clinical depression|depression +agitating|1 +(adj)|agitative|provoking|provocative +agitation|5 +(noun)|psychological state|mental state +(noun)|ferment|fermentation|unrest|turbulence|upheaval|Sturm und Drang +(noun)|feeling +(noun)|excitement|turmoil|upheaval|hullabaloo|disturbance +(noun)|motion|movement|move|motility +agitative|1 +(adj)|agitating|provoking|provocative +agitator|1 +(noun)|fomenter|troublemaker|trouble maker|troubler|mischief-maker|bad hat +agitprop|1 +(noun)|propaganda +agkistrodon|1 +(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus +agkistrodon contortrix|1 +(noun)|copperhead|Agkistrodon contortrix|pit viper +agkistrodon piscivorus|1 +(noun)|water moccasin|cottonmouth|cottonmouth moccasin|Agkistrodon piscivorus|pit viper +aglaia|1 +(noun)|Aglaia|Grace +aglaomorpha|1 +(noun)|Aglaomorpha|genus Aglaomorpha|fern genus +aglaomorpha meyeniana|1 +(noun)|bear's-paw fern|Aglaomorpha meyeniana|fern +aglaonema|1 +(noun)|Aglaonema|genus Aglaonema|monocot genus|liliopsid genus +aglaonema modestum|1 +(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant +agleam|1 +(adj)|gleaming|nitid|bright +aglet|2 +(noun)|aiglet|sheath +(noun)|aiglet|aiguilette|braid|gold braid|braiding +aglitter|1 +(adj)|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkling|sparkly|bright +aglow|1 +(adj)|glowing|lambent|lucent|luminous|bright +agnail|1 +(noun)|hangnail|skin|tegument|cutis +agnate|2 +(adj)|agnatic|paternal|related +(noun)|patrikin|patrilineal kin|patrisib|patrilineal sib|relative|relation +agnatha|1 +(noun)|Agnatha|superclass Agnatha|class +agnathan|1 +(noun)|jawless vertebrate|jawless fish|aquatic vertebrate +agnatic|1 +(adj)|agnate|paternal|related +agnation|1 +(noun)|patrilineage|unilateral descent +agnes de mille|1 +(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer|professional dancer|choreographer +agnes george de mille|1 +(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer|professional dancer|choreographer +agnes gonxha bojaxhiu|1 +(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun|missionary|missioner +agni|1 +(noun)|Agni|Hindu deity +agnise|1 +(verb)|recognize|recognise|realize|realise|agnize|know|cognize|cognise +agnize|1 +(verb)|recognize|recognise|realize|realise|agnise|know|cognize|cognise +agnosia|1 +(noun)|brain disorder|encephalopathy|brain disease +agnostic|2 +(adj)|agnostic |agnostical|nescient|unbelieving|noncommital|undogmatic|undogmatical +(noun)|doubter|nonreligious person +agnostical|1 +(adj)|agnostic |nescient|unbelieving|noncommital|undogmatic|undogmatical +agnosticism|2 +(noun)|religious orientation +(noun)|skepticism|scepticism|unbelief|disbelief +agnus dei|2 +(noun)|Agnus Dei|Paschal Lamb|emblem|allegory +(noun)|Agnus Dei|prayer +ago|1 +(adj)|agone|past +agog|1 +(adj)|excited +agon|1 +(noun)|celebration|festivity +agonadal|1 +(adj)|endocrine gland|endocrine|ductless gland +agonal|1 +(adj)|suffering|hurt +agone|1 +(adj)|ago|past +agonic line|1 +(noun)|line +agonidae|1 +(noun)|Agonidae|family Agonidae|fish family +agonise|2 +(verb)|agonize|pain|anguish|hurt +(verb)|agonize|suffer +agonised|1 +(adj)|agonized|painful +agonising|1 +(adj)|agonizing|excruciating|harrowing|torturing|torturous|torturesome|painful +agonist|4 +(noun)|protagonist|fictional character|fictitious character|character +(noun)|contestant +(noun)|antagonistic muscle +(noun)|drug +agonistic|3 +(adj)|celebration|festivity +(adj)|agonistical|combative|competitive |competitory +(adj)|strained|affected |unnatural +agonistical|1 +(adj)|agonistic|combative|competitive |competitory +agonize|2 +(verb)|agonise|pain|anguish|hurt +(verb)|agonise|suffer +agonized|1 +(adj)|agonised|painful +agonizing|1 +(adj)|agonising|excruciating|harrowing|torturing|torturous|torturesome|painful +agonizingly|1 +(adv)|excruciatingly|torturously +agonus|1 +(noun)|Agonus|genus Agonus|fish genus +agonus cataphractus|1 +(noun)|pogge|armed bullhead|Agonus cataphractus|poacher|sea poacher|sea poker +agony|2 +(noun)|torment|torture|suffering|hurt +(noun)|suffering|excruciation|pain|hurting +agony aunt|1 +(noun)|newspaper columnist +agony column|1 +(noun)|column|editorial|newspaper column +agora|3 +(noun)|Israeli monetary unit +(noun)|marketplace|mart +(noun)|forum|public square|marketplace|mart +agoraphobia|1 +(noun)|phobia|phobic disorder|phobic neurosis +agoraphobic|1 +(adj)|afraid +agouti|1 +(noun)|Dasyprocta aguti|rodent|gnawer|gnawing animal +agra|1 +(noun)|Agra|city|metropolis|urban center +agranulocytic|1 +(adj)|blood disease|blood disorder +agranulocytosis|1 +(noun)|agranulosis|granulocytopenia|blood disease|blood disorder +agranulosis|1 +(noun)|agranulocytosis|granulocytopenia|blood disease|blood disorder +agrapha|1 +(noun)|saying|expression|locution +agraphia|1 +(noun)|anorthography|logagraphia|brain disorder|encephalopathy|brain disease +agraphic|1 +(adj)|brain disorder|encephalopathy|brain disease +agrarian|1 +(adj)|agricultural|farming|rural +agree|5 +(verb)|hold|concur|concord +(verb)|accept|consent|go for +(verb)|match|fit|correspond|check|jibe|gibe|tally|equal|be +(verb)|harmonize|harmonise|consort|accord|concord|fit in|match|fit|correspond|check|jibe|gibe|tally +(verb)|suit +agreeability|1 +(noun)|agreeableness|disposition|temperament +agreeable|4 +(adj)|congenial |compatible|sympathetic|sociable|compatible|friendly|sympathetic +(adj)|agreeable |good-natured +(adj)|accordant|conformable|consonant|concordant|consistent +(adj)|accordant +agreeableness|2 +(noun)|amenity|pleasantness|sweetness +(noun)|agreeability|disposition|temperament +agreeably|1 +(adv)|pleasantly|enjoyably +agreed|1 +(adj)|in agreement|united +agreed upon|1 +(adj)|stipulatory|uncontroversial |noncontroversial +agreement|6 +(noun)|understanding|statement +(noun)|correspondence|compatibility +(noun)|accord|harmony|concord|concordance +(noun)|arrangement|planning|preparation|provision +(noun)|concord|grammatical relation +(noun)|speech act +agrestic|2 +(adj)|rustic|rural +(adj)|unrefined +agribusiness|1 +(noun)|agriculture|factory farm|commercial enterprise|business enterprise|business +agricola|1 +(noun)|Agricola|Gnaeus Julius Agricola|general|full general +agricultural|2 +(adj)|cultivation +(adj)|agrarian|farming|rural +agricultural agent|1 +(noun)|county agent|extension agent|adviser|advisor|consultant +agricultural laborer|1 +(noun)|agricultural labourer|laborer|manual laborer|labourer|jack +agricultural labourer|1 +(noun)|agricultural laborer|laborer|manual laborer|labourer|jack +agriculture|4 +(noun)|agribusiness|factory farm|commercial enterprise|business enterprise|business +(noun)|farming|husbandry|cultivation +(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department +(noun)|class|social class|socio-economic class +agriculture department|1 +(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department +agriculture secretary|2 +(noun)|Secretary of Agriculture|Agriculture Secretary|secretary +(noun)|Secretary of Agriculture|Agriculture Secretary|secretaryship +agriculturist|1 +(noun)|cultivator|grower|raiser|farmer|husbandman|granger|sodbuster +agrigento|1 +(noun)|Agrigento|Acragas|Girgenti|town +agrimonia|1 +(noun)|agrimony|herb|herbaceous plant +agrimonia eupatoria|1 +(noun)|harvest-lice|Agrimonia eupatoria|agrimonia|agrimony +agrimonia procera|1 +(noun)|fragrant agrimony|Agrimonia procera|agrimonia|agrimony +agrimony|1 +(noun)|agrimonia|herb|herbaceous plant +agriocharis|1 +(noun)|Agriocharis|genus Agriocharis|bird genus +agriocharis ocellata|1 +(noun)|ocellated turkey|Agriocharis ocellata|turkey|gallinaceous bird|gallinacean +agrippa|1 +(noun)|Agrippa|Marcus Vipsanius Agrippa|statesman|solon|national leader +agrippina|2 +(noun)|Agrippina|Agrippina the Younger|Roman +(noun)|Agrippina|Agrippina the Elder|Roman +agrippina the elder|1 +(noun)|Agrippina|Agrippina the Elder|Roman +agrippina the younger|1 +(noun)|Agrippina|Agrippina the Younger|Roman +agrobacterium|1 +(noun)|Agrobacterium|genus Agrobacterium|bacteria genus +agrobacterium tumefaciens|1 +(noun)|Agrobacterium tumefaciens|bacteria species +agrobiologic|1 +(adj)|agrobiological|science|scientific discipline +agrobiological|1 +(adj)|agrobiologic|science|scientific discipline +agrobiology|1 +(noun)|science|scientific discipline +agrologic|1 +(adj)|agrological|science|scientific discipline +agrological|1 +(adj)|agrologic|science|scientific discipline +agrology|1 +(noun)|science|scientific discipline +agromania|1 +(noun)|mania|passion|cacoethes +agronomic|1 +(adj)|agronomical|science|scientific discipline +agronomical|1 +(adj)|agronomic|science|scientific discipline +agronomist|1 +(noun)|expert +agronomy|1 +(noun)|scientific agriculture|science|scientific discipline +agropyron|1 +(noun)|Agropyron|genus Agropyron|monocot genus|liliopsid genus +agropyron cristatum|1 +(noun)|crested wheatgrass|crested wheat grass|fairway crested wheat grass|Agropyron cristatum|wheatgrass|wheat-grass +agropyron intermedium|1 +(noun)|intermediate wheatgrass|Agropyron intermedium|Elymus hispidus|wheatgrass|wheat-grass +agropyron pauciflorum|1 +(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass|wheat-grass +agropyron repens|1 +(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +agropyron smithii|1 +(noun)|western wheatgrass|bluestem wheatgrass|Agropyron smithii|wheatgrass|wheat-grass +agropyron subsecundum|1 +(noun)|bearded wheatgrass|Agropyron subsecundum|wheatgrass|wheat-grass +agropyron trachycaulum|1 +(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass|wheat-grass +agrostemma|1 +(noun)|Agrostemma|genus Agrostemma|caryophylloid dicot genus +agrostemma githago|1 +(noun)|corn cockle|corn campion|crown-of-the-field|Agrostemma githago|weed +agrostis|1 +(noun)|Agrostis|genus Agrostis|plant genus +agrostis alba|1 +(noun)|wood meadowgrass|Poa nemoralis|Agrostis alba|meadowgrass|meadow grass +agrostis canina|1 +(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent|bent grass|bent-grass +agrostis nebulosa|1 +(noun)|cloud grass|Agrostis nebulosa|bent|bent grass|bent-grass +agrostis palustris|1 +(noun)|creeping bent|creeping bentgrass|Agrostis palustris|bent|bent grass|bent-grass +aground|1 +(adj)|aground |beached|high-and-dry|shipwrecked|stranded +agrypnia|1 +(noun)|vigil|watch +agrypnotic|1 +(adj)|vigil|watch +agua|1 +(noun)|agua toad|Bufo marinus|true toad +agua toad|1 +(noun)|agua|Bufo marinus|true toad +aguacate|1 +(noun)|avocado|alligator pear|avocado pear|edible fruit +ague|3 +(noun)|illness|unwellness|malady|sickness +(noun)|chills and fever|symptom +(noun)|acute accent|acute|accent|accent mark +ague grass|1 +(noun)|ague root|Aletris farinosa|colicroot|colic root|crow corn|star grass|unicorn root +ague root|1 +(noun)|ague grass|Aletris farinosa|colicroot|colic root|crow corn|star grass|unicorn root +ague weed|2 +(noun)|agueweed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +(noun)|boneset|agueweed|thoroughwort|Eupatorium perfoliatum|herb|herbaceous plant +agueweed|2 +(noun)|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +(noun)|boneset|thoroughwort|Eupatorium perfoliatum|herb|herbaceous plant +aguish|1 +(adj)|ill |sick +agust von wassermann|1 +(noun)|Wassermann|Agust von Wassermann|bacteriologist +ahab|1 +(noun)|Ahab|king|male monarch +ahead|6 +(adj)|in the lead|leading|up +(adv)|in front|before +(adv)|forward +(adv)|onward|onwards|forward|forwards|forrader +(adv)|in advance|beforehand +(adv)|out front|in the lead +ahead of time|1 +(adv)|early|too soon +ahimsa|1 +(noun)|religious doctrine|church doctrine|gospel|creed +ahistorical|1 +(adj)|ahistorical +ahmad shah masoud|1 +(noun)|Masoud|Ahmad Shah Masoud|leader +ahmed salman rushdie|1 +(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer|author +ahmed zoki yamani|1 +(noun)|Yamani|Ahmed Zoki Yamani|minister|government minister +ahorse|2 +(adj)|ahorseback|moving +(adv)|horseback|ahorseback +ahorseback|2 +(adj)|ahorse|moving +(adv)|horseback|ahorse +ahpcrc|1 +(noun)|Army High Performance Computing Research Center|AHPCRC|agency|federal agency|government agency|bureau|office|authority +ahriman|1 +(noun)|Ahriman|Persian deity +ahuehuete|1 +(noun)|Ahuehuete|Tule tree|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum +ahura|1 +(noun)|Ahura|Hindu deity +ahura mazda|1 +(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity +ahvenanmaa|1 +(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago +ai|4 +(noun)|Army Intelligence|AI|agency|federal agency|government agency|bureau|office|authority +(noun)|artificial intelligence|AI|computer science|computing +(noun)|three-toed sloth|Bradypus tridactylus|sloth|tree sloth +(noun)|artificial insemination|AI|insemination +aiai|1 +(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization|terrorist group|foreign terrorist organization|FTO +aid|6 +(noun)|assistance|help|resource +(noun)|assist|assistance|help|activity +(noun)|economic aid|gift +(noun)|care|attention|tending|work +(verb)|help|assist|support|back up +(verb)|help|better|improve|amend|ameliorate|meliorate +aid station|1 +(noun)|dressing station|first-aid station +aide|2 +(noun)|adjutant|aide-de-camp|military officer|officer +(noun)|auxiliary|assistant|helper|help|supporter +aide-de-camp|1 +(noun)|adjutant|aide|military officer|officer +aide-memoire|1 +(noun)|position paper|memo|memorandum|memoranda +aided|1 +(adj)|assisted |motor-assisted|power-assisted +aides|3 +(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity +(noun)|adjutant|aide|aide-de-camp|military officer|officer +(noun)|aide|auxiliary|assistant|helper|help|supporter +aidoneus|1 +(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity +aids|5 +(noun)|AIDS|acquired immune deficiency syndrome|immunodeficiency|infectious disease +(noun)|aid|assistance|help|resource +(noun)|aid|assist|assistance|help|activity +(noun)|aid|economic aid|gift +(noun)|care|attention|aid|tending|work +aigina|1 +(noun)|Aegina|Aigina|Aegean island +aiglet|2 +(noun)|aglet|sheath +(noun)|aglet|aiguilette|braid|gold braid|braiding +aigret|1 +(noun)|aigrette|plume +aigrette|1 +(noun)|aigret|plume +aiguilette|1 +(noun)|aglet|aiglet|braid|gold braid|braiding +aiken|1 +(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer|author +aikido|1 +(noun)|martial art +ail|3 +(noun)|garlic|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(verb)|suffer|hurt +(verb)|afflict|trouble|pain|hurt +ailanthus|1 +(noun)|angiospermous tree|flowering tree +ailanthus altissima|1 +(noun)|tree of heaven|tree of the gods|Ailanthus altissima|ailanthus +ailanthus silkworm|1 +(noun)|Samia cynthia|silkworm|giant silkworm|wild wilkworm +aileron|1 +(noun)|airfoil|aerofoil|control surface|surface +ailey|1 +(noun)|Ailey|Alvin Ailey|choreographer +ailing|1 +(adj)|indisposed|peaked|poorly|sickly|unwell|under the weather|ill |sick +ailment|1 +(noun)|complaint|ill|disorder|upset +ailurophobia|1 +(noun)|zoophobia +ailuropoda|1 +(noun)|Ailuropoda|genus Ailuropoda|mammal genus +ailuropoda melanoleuca|1 +(noun)|giant panda|panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid +ailuropodidae|1 +(noun)|Ailuropodidae|family Ailuropodidae|mammal family +ailurus|1 +(noun)|Ailurus|genus Ailurus|mammal genus +ailurus fulgens|1 +(noun)|lesser panda|red panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid +aim|11 +(noun)|purpose|intent|intention|design|goal|end +(noun)|object|objective|target|goal|end +(noun)|steering|guidance|direction +(noun)|bearing|heading|direction|way +(verb)|take|train|take aim|direct|position +(verb)|purpose|purport|propose|intend|mean|think +(verb)|drive|get|mean|intend +(verb)|calculate|direct|intend|destine|designate|specify +(verb)|target|place|direct|point|take|train|take aim|direct +(verb)|mean|intend +(verb)|draw a bead on|aspire|shoot for|plan|be after +aimee semple mcpherson|1 +(noun)|McPherson|Aimee Semple McPherson|evangelist|revivalist|gospeler|gospeller +aimless|2 +(adj)|adrift|afloat|directionless|planless|rudderless|undirected|purposeless +(adj)|drifting|floating|vagabond|vagrant|unsettled +aimlessly|1 +(adv)|without aim +aimlessness|1 +(noun)|purposelessness|meaninglessness +ain|1 +(adj)|own|personal +aioli|1 +(noun)|aioli sauce|garlic sauce|sauce +aioli sauce|1 +(noun)|aioli|garlic sauce|sauce +air|15 +(adj)|air |aerial|aerial|flying +(noun)|gas +(noun)|air travel|aviation|travel|traveling|travelling +(noun)|region|part +(noun)|airwave|medium +(noun)|breeze|zephyr|gentle wind|wind|air current|current of air +(noun)|aura|atmosphere|quality +(noun)|atmosphere|region|part +(noun)|tune|melody|strain|melodic line|line|melodic phrase|music +(noun)|element +(verb)|air out|aerate|expose +(verb)|send|broadcast|beam|transmit|publicize|publicise|bare +(verb)|publicize|publicise|bare|tell +(verb)|dry|dry out +(verb)|vent|ventilate|air out|refresh|freshen +air-breathing|1 +(adj)|bodily process|body process|bodily function|activity +air-condition|2 +(verb)|process|treat +(verb)|supply|provide|render|furnish +air-conditioned|1 +(adj)|cool +air-cooled|1 +(adj)|cool +air-dried|1 +(adj)|dry +air-drop|1 +(verb)|drop|set down|put down|unload|discharge +air-dry|1 +(adj)|dry +air-filled|1 +(adj)|full +air-intake|1 +(noun)|duct +air-raid shelter|1 +(noun)|bomb shelter|bombproof|chamber +air-slake|1 +(verb)|slack|slake +air-tight|3 +(adj)|airtight|invulnerable +(adj)|airtight|gas-tight|tight +(adj)| +air-to-air|1 +(adj)|air-to-air +air-to-air missile|1 +(noun)|missile +air-to-ground|1 +(adj)|air-to-surface +air-to-ground missile|1 +(noun)|air-to-surface missile|missile +air-to-surface|1 +(adj)|air-to-surface |air-to-ground +air-to-surface missile|1 +(noun)|air-to-ground missile|missile +air alert|3 +(noun)|time period|period of time|period +(noun)|alert|qui vive +(noun)|alarm|alert|warning signal|alarum +air attache|1 +(noun)|military attache +air attack|1 +(noun)|air raid|foray|raid|maraud +air bag|1 +(noun)|bag|restraint|constraint +air base|1 +(noun)|air station|base|base of operations +air bladder|1 +(noun)|swim bladder|sac +air bubble|1 +(noun)|bubble +air castle|1 +(noun)|reverie|revery|daydream|daydreaming|oneirism|castle in the air|castle in Spain|dream|dreaming +air cell|1 +(noun)|alveolus|air sac|sac +air cleaner|1 +(noun)|air filter|filter +air combat command|1 +(noun)|Air Combat Command|ACC|command +air compressor|1 +(noun)|compressor +air conditioner|1 +(noun)|air conditioning|cooling system|cooling +air conditioning|1 +(noun)|air conditioner|cooling system|cooling +air corps|1 +(noun)|Air Corps|air force|airforce +air cover|1 +(noun)|protection +air crew|2 +(noun)|aircrew|crew +(noun)| +air current|1 +(noun)|wind|current of air|weather|weather condition|atmospheric condition +air cushion|3 +(noun)|compressed air +(noun)|air spring|shock absorber|shock|cushion +(noun)|inflatable cushion|cushion +air defense|1 +(noun)|defense|defence|defensive measure +air division|1 +(noun)|division|air unit +air duct|1 +(noun)|air passage|airway|duct +air embolism|2 +(noun)|aeroembolism|gas embolism|embolism +(noun)|decompression sickness|aeroembolism|gas embolism|caisson disease|bends|illness|unwellness|malady|sickness +air filter|1 +(noun)|air cleaner|filter +air flow|2 +(noun)|airflow|flow of air|flow|flowing +(noun)| +air force|2 +(noun)|airforce|military service|armed service|service +(noun)| +air force academy|1 +(noun)|academy +air force intelligence surveillance and reconnaissance|1 +(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency|federal agency|government agency|bureau|office|authority +air force isr|1 +(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency|federal agency|government agency|bureau|office|authority +air force officer|1 +(noun)|commander|serviceman|military man|man|military personnel +air force research laboratory|1 +(noun)|Air Force Research Laboratory|AFRL|agency|federal agency|government agency|bureau|office|authority +air force space command|1 +(noun)|Air Force Space Command|AFSPC|command +air gas|1 +(noun)|producer gas|gas +air group|1 +(noun)|air unit +air gun|2 +(noun)|airgun|air rifle|gun +(noun)| +air hammer|1 +(noun)|jackhammer|pneumatic hammer|hammer|power hammer +air hole|2 +(noun)|air pocket|pocket|atmospheric phenomenon +(noun)|hole +air horn|2 +(noun)|horn +(noun)|intake +air hose|1 +(noun)|airline|hose|hosepipe +air hostess|1 +(noun)|stewardess|hostess|steward|flight attendant +air jacket|1 +(noun)|Mae West|life jacket|life vest|cork jacket +air lane|1 +(noun)|flight path|airway|skyway|path|route|itinerary +air letter|1 +(noun)|airmail letter|aerogram|aerogramme|letter|missive +air lock|2 +(noun)|airlock|chamber +(noun)| +air mail|3 +(noun)|mail +(noun)|airmail|mail +(noun)|airmail|airpost|mail|mail service|postal service|post +air marshal|1 +(noun)|sky marshal|marshal|marshall +air mass|1 +(noun)|atmosphere|atmospheric state +air mattress|1 +(noun)|mattress +air medal|1 +(noun)|Air Medal|decoration|laurel wreath|medal|medallion|palm|ribbon +air mile|1 +(noun)|nautical mile|mile|mi|naut mi|knot|international nautical mile|nautical linear unit +air national guard|1 +(noun)|Air National Guard|ANG|National Guard|home reserve +air out|2 +(verb)|air|aerate|expose +(verb)|vent|ventilate|air|refresh|freshen +air passage|1 +(noun)|air duct|airway|duct +air plant|1 +(noun)|epiphyte|aerophyte|epiphytic plant|plant|flora|plant life +air pocket|1 +(noun)|pocket|air hole|atmospheric phenomenon +air pollution|1 +(noun)|pollution +air potato|1 +(noun)|Dioscorea bulbifera|yam|yam plant +air power|1 +(noun)|aviation|collection|aggregation|accumulation|assemblage +air pressure|1 +(noun)|atmospheric pressure|gas pressure +air pump|1 +(noun)|vacuum pump|pump +air raid|1 +(noun)|air attack|foray|raid|maraud +air reconnaissance|1 +(noun)|reconnaissance|reconnaissance mission +air rifle|1 +(noun)|air gun|airgun|gun +air sac|3 +(noun)|alveolus|air cell|sac +(noun)|sac +(noun)|sac +air search radar|1 +(noun)|naval radar +air shaft|1 +(noun)|air well|shaft +air sick|2 +(adj)|airsick|carsick|seasick|ill |sick +(adj)| +air sickness|2 +(noun)|airsickness|motion sickness|kinetosis +(noun)| +air sleeve|1 +(noun)|air sock|wind sock|wind sleeve|indicator +air sock|2 +(noun)|windsock|sock|wind sleeve|wind cone|drogue|visual signal +(noun)|air sleeve|wind sock|wind sleeve|indicator +air space|2 +(noun)|airspace|space +(noun)|airspace|atmosphere|air +air spring|1 +(noun)|air cushion|shock absorber|shock|cushion +air station|1 +(noun)|air base|base|base of operations +air terminal|1 +(noun)|airport terminal|terminal|terminus|depot +air thermometer|1 +(noun)|gas thermometer|thermometer +air traffic|1 +(noun)|traffic +air transport|1 +(noun)|air transportation|transportation|shipping|transport +air transportation|1 +(noun)|air transport|transportation|shipping|transport +air transportation system|1 +(noun)|transportation system|transportation|transit +air travel|1 +(noun)|aviation|air|travel|traveling|travelling +air traveler|1 +(noun)|air traveller|traveler|traveller +air traveller|1 +(noun)|air traveler|traveler|traveller +air unit|1 +(noun)|military unit|military force|military group|force +air wave|2 +(noun)|sound wave|acoustic wave +(noun)|air|airwave|medium +air well|1 +(noun)|air shaft|shaft +airborne|1 +(adj)|mobile +airborne patrol|1 +(noun)|patrol +airborne transmission|1 +(noun)|transmission mechanism +airbrake|2 +(noun)|dive brake|restraint|constraint +(noun)|brake +airbrush|2 +(noun)|atomizer|atomiser|spray|sprayer +(verb)|paint +airburst|1 +(noun)|explosion|detonation|blowup +airbus|1 +(noun)|airliner +aircraft|1 +(noun)|craft +aircraft carrier|1 +(noun)|carrier|flattop|attack aircraft carrier|warship|war vessel|combat ship +aircraft engine|1 +(noun)|engine +aircraft landing|1 +(noun)|airplane landing|landing +aircraftman|1 +(noun)|aircraftsman|noncommissioned officer|noncom +aircraftsman|1 +(noun)|aircraftman|noncommissioned officer|noncom +aircrew|1 +(noun)|air crew|crew +aircrewman|1 +(noun)|crewman|crew member +airdock|1 +(noun)|hangar|repair shed|structure|construction +airdrome|1 +(noun)|airport|aerodrome|airfield|landing field|flying field|field +airdrop|1 +(noun)|delivery|bringing +aire|1 +(noun)|Aire|River Aire|Aire River|river +aire river|1 +(noun)|Aire|River Aire|Aire River|river +aired|1 +(adj)|airy|ventilated +airedale|1 +(noun)|Airedale|Airedale terrier|terrier +airedale terrier|1 +(noun)|Airedale|Airedale terrier|terrier +airfare|1 +(noun)|fare|transportation +airfield|1 +(noun)|landing field|flying field|field|facility|installation +airflow|1 +(noun)|air flow|flow of air|flow|flowing +airfoil|1 +(noun)|aerofoil|control surface|surface|device +airforce|1 +(noun)|air force|military service|armed service|service +airframe|1 +(noun)|framework|frame|framing +airgun|1 +(noun)|air gun|air rifle|gun +airhead|2 +(noun)|simpleton|simple +(noun)|bridgehead|foothold +airheaded|1 +(adj)|dizzy|empty-headed|featherbrained|giddy|light-headed|lightheaded|silly|frivolous +airily|1 +(adv)|flippantly +airiness|3 +(noun)|capaciousness|roominess|spaciousness|commodiousness +(noun)|buoyancy|lightness|weightlessness +(noun)|delicacy|liveliness|life|spirit|sprightliness +airing|3 +(noun)|dissemination|public exposure|spreading|transmission +(noun)|excursion|jaunt|outing|junket|pleasure trip|expedition|sashay +(noun)|ventilation|improvement +airing cupboard|1 +(noun)|cupboard|closet +airless|1 +(adj)|close|stuffy|unaired|unventilated +airlift|2 +(noun)|lift|transportation|transfer|transferral|conveyance +(verb)|lift|fly +airlike|1 +(adj)|aeriform|gaseous +airline|2 +(noun)|air hose|hose|hosepipe +(noun)|airline business|airway|line +airline business|1 +(noun)|airline|airway|line +airliner|1 +(noun)|airplane|aeroplane|plane +airlock|1 +(noun)|air lock|chamber +airmail|3 +(noun)|mail +(noun)|airpost|mail|mail service|postal service|post +(verb)|mail|post|send +airmail letter|1 +(noun)|air letter|aerogram|aerogramme|letter|missive +airmailer|1 +(noun)|mailer +airman|1 +(noun)|aviator|aeronaut|flier|flyer|skilled worker|trained worker +airmanship|1 +(noun)|aviation|art|artistry|prowess +airplane|1 +(noun)|aeroplane|plane|heavier-than-air craft +airplane landing|1 +(noun)|aircraft landing|landing +airplane maneuver|1 +(noun)|flight maneuver|maneuver|manoeuvre|evasive action +airplane mechanics|1 +(noun)|trade|craft +airplane pilot|1 +(noun)|pilot|aviator|aeronaut|airman|flier|flyer +airplane propeller|1 +(noun)|airscrew|prop|propeller|propellor +airplane ticket|1 +(noun)|plane ticket|ticket +airport|1 +(noun)|airdrome|aerodrome|airfield|landing field|flying field|field +airport terminal|1 +(noun)|air terminal|terminal|terminus|depot +airpost|1 +(noun)|airmail|mail|mail service|postal service|post +airs|10 +(noun)|pose|affectedness +(noun)|air|gas +(noun)|air travel|aviation|air|travel|traveling|travelling +(noun)|air|region|part +(noun)|air|airwave|medium +(noun)|breeze|zephyr|gentle wind|air|wind|air current|current of air +(noun)|air|aura|atmosphere|quality +(noun)|atmosphere|air|region|part +(noun)|tune|melody|air|strain|melodic line|line|melodic phrase|music +(noun)|air|element +airscrew|1 +(noun)|airplane propeller|prop|propeller|propellor +airship|1 +(noun)|dirigible|lighter-than-air craft +airsick|1 +(adj)|air sick|carsick|seasick|ill |sick +airsickness|1 +(noun)|air sickness|motion sickness|kinetosis +airspace|2 +(noun)|air space|space +(noun)|atmosphere|air +airspeed|1 +(noun)|speed|velocity +airstream|2 +(noun)|wind|air current|current of air +(noun)|slipstream|race|backwash|wash|flow +airstrip|1 +(noun)|flight strip|landing strip|strip|airfield|landing field|flying field|field +airt|1 +(verb)|redirect|send|direct +airtight|2 +(adj)|air-tight|invulnerable +(adj)|air-tight|gas-tight|tight +airwave|1 +(noun)|air|medium +airway|3 +(noun)|air passage|air duct|duct +(noun)|air lane|flight path|skyway|path|route|itinerary +(noun)|airline|airline business|line +airwoman|1 +(noun)|aviatrix|aviatress|aviator|aeronaut|airman|flier|flyer +airworthiness|1 +(noun)|soundness +airworthy|1 +(adj)|airworthy +airy|4 +(adj)|aired|ventilated +(adj)|impractical|visionary|Laputan|utopian +(adj)|light +(adj)|aeriform|aerial|aery|ethereal|insubstantial |unsubstantial|unreal +aisle|3 +(noun)|passage +(noun)|gangway|passageway +(noun)|area +aitchbone|1 +(noun)|cut of beef +aix|1 +(noun)|Aix|genus Aix|bird genus +aix-la-chapelle|1 +(noun)|Aachen|Aken|Aix-la-Chapelle|city|metropolis|urban center +aix galericulata|1 +(noun)|mandarin duck|Aix galericulata|duck +aix sponsa|1 +(noun)|wood duck|summer duck|wood widgeon|Aix sponsa|duck +aizoaceae|1 +(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family +ajaia|1 +(noun)|Ajaia|genus Ajaia|bird genus +ajaia ajaja|1 +(noun)|roseate spoonbill|Ajaia ajaja|spoonbill +ajar|1 +(adj)|open |unfastened +ajax|1 +(noun)|Ajax|mythical being +ajuga|1 +(noun)|Ajuga|genus Ajuga|asterid dicot genus +ajuga chamaepitys|1 +(noun)|ground pine|yellow bugle|Ajuga chamaepitys|bugle|bugleweed +ajuga genevensis|1 +(noun)|erect bugle|blue bugle|Ajuga genevensis|bugle|bugleweed +ajuga pyramidalis|1 +(noun)|pyramid bugle|Ajuga pyramidalis|bugle|bugleweed +ajuga reptans|1 +(noun)|creeping bugle|Ajuga reptans|bugle|bugleweed +ak|1 +(noun)|Alaska|Last Frontier|AK|American state +akaba|1 +(noun)|Aqaba|Akaba|city|metropolis|urban center +akan|1 +(noun)|Akan|Kwa +akaryocyte|1 +(noun)|akaryote|acaryote|cell +akaryote|1 +(noun)|akaryocyte|acaryote|cell +akee|2 +(noun)|akee tree|Blighia sapida|fruit tree +(noun)|ackee|edible fruit +akee tree|1 +(noun)|akee|Blighia sapida|fruit tree +aken|1 +(noun)|Aachen|Aken|Aix-la-Chapelle|city|metropolis|urban center +akeridae|1 +(noun)|Akeridae|family Akeridae|mollusk family +akha|1 +(noun)|Hani|Akha|Loloish +akhbari|1 +(noun)|Akhbari|religious movement +akhenaten|1 +(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king|male monarch +akhenaton|1 +(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king|male monarch +akimbo|1 +(adj)|crooked +akin|2 +(adj)|kindred|related|similar +(adj)|blood-related|cognate|consanguine|consanguineous|kin|related +akinesia|1 +(noun)|akinesis|paralysis|palsy +akinesis|1 +(noun)|akinesia|paralysis|palsy +akinetic epilepsy|1 +(noun)|epilepsy +akira kurosawa|1 +(noun)|Kurosawa|Akira Kurosawa|film maker|filmmaker|film producer|movie maker +akka|1 +(noun)|Acre|Akko|Akka|Accho|town|port +akkadian|1 +(noun)|Akkadian|Semitic +akko|1 +(noun)|Acre|Akko|Akka|Accho|town|port +akmola|1 +(noun)|Astana|Akmola|capital of Kazakhstan|capital +akron|1 +(noun)|Akron|city|metropolis|urban center +aksa martyrs brigades|1 +(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization|terrorist group|foreign terrorist organization|FTO +aku|1 +(noun)|Yoruba|Aku|Kwa +akvavit|1 +(noun)|aquavit|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +akwa'ala|2 +(noun)|Akwa'ala|Hokan|Hoka +(noun)|Akwa'ala|Yuman +al|2 +(noun)|aluminum|aluminium|Al|atomic number 13|metallic element|metal +(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state +al-aksa martyrs brigades|1 +(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-asifa|1 +(noun)|al-Fatah|Fatah|al-Asifa|political movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-fatah|1 +(noun)|al-Fatah|Fatah|al-Asifa|political movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-gama'a al-islamiyya|1 +(noun)|al-Gama'a al-Islamiyya|Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-hakim|1 +(noun)|Al-hakim|religious leader +al-hasan ibn al-haytham|1 +(noun)|Alhazen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician|physicist|astronomer|uranologist|stargazer +al-haytham|1 +(noun)|Alhazen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician|physicist|astronomer|uranologist|stargazer +al-hudaydah|1 +(noun)|Hodeida|Al-Hudaydah|city|metropolis|urban center|port +al-iraq|1 +(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country|Asian nation +al-itihaad al-islamiya|2 +(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)| +al-jama'a al-islamiyyah al-muqatilah bi-libya|1 +(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-jihad|1 +(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-ma'unah|1 +(noun)|al-Ma'unah|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-magrib|1 +(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country|African nation +al-muhajiroun|1 +(noun)|al-Muhajiroun|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-mukalla|1 +(noun)|Mukalla|Al-Mukalla|city|metropolis|urban center|port +al-qa'ida|1 +(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-qaeda|1 +(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-qaida|1 +(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-qur'an|1 +(noun)|Koran|Quran|al-Qur'an|Book|sacred text|sacred writing|religious writing|religious text +al-rashid trust|1 +(noun)|al-Rashid Trust|terrorist organization|terrorist group|foreign terrorist organization|FTO +al-tawhid|2 +(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)| +al-ummah|1 +(noun)|al-Ummah|terrorist organization|terrorist group|foreign terrorist organization|FTO +al alamayn|1 +(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle +al capone|1 +(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster|mobster +al dente|1 +(adj)|hard +al faran|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +al gore|1 +(noun)|Gore|Al Gore|Albert Gore Jr.|vice president|V.P. +al itihaad al islamiya|1 +(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization|terrorist group|foreign terrorist organization|FTO +al jolson|1 +(noun)|Jolson|Al Jolson|Asa Yoelson|singer|vocalist|vocalizer|vocaliser|actor|histrion|player|thespian|role player +al madinah|1 +(noun)|Medina|Al Madinah|city|metropolis|urban center +al nathir|1 +(noun)|Al Nathir|terrorist organization|terrorist group|foreign terrorist organization|FTO +al qahira|1 +(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital|port +al qanoon|1 +(noun)|Lashkar-e-Omar|Al Qanoon|terrorist organization|terrorist group|foreign terrorist organization|FTO +al tawhid|2 +(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)| +ala|2 +(noun)|process|outgrowth|appendage +(noun)|wing +alabama|4 +(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state +(noun)|Alabama|Muskhogean|Muskogean +(noun)|Alabama|Alabama River|river +(noun)|Alabama|Muskhogean|Muskhogean language|Muskogean|Muskogean language +alabama lip fern|1 +(noun)|smooth lip fern|Alabama lip fern|Cheilanthes alabamensis|lip fern|lipfern +alabama river|1 +(noun)|Alabama|Alabama River|river +alabaman|1 +(noun)|Alabaman|Alabamian|American +alabamian|1 +(noun)|Alabaman|Alabamian|American +alabaster|3 +(noun)|gypsum +(noun)|oriental alabaster|onyx marble|Mexican onyx|calcite +(noun)|white|whiteness +alabastrine|1 +(adj)|gypsum +alacritous|1 +(adj)|fast +alacrity|1 +(noun)|briskness|liveliness|life|spirit|sprightliness +aladdin|1 +(noun)|Aladdin|fictional character|fictitious character|character +aladdin's lamp|1 +(noun)|Aladdin's lamp|lamp +alalia|1 +(noun)|paralysis|palsy +alamo|1 +(noun)|Alamo|siege|besieging|beleaguering|military blockade|slaughter|massacre|mass murder|carnage|butchery +alan alexander milne|1 +(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer|author +alan bartlett shepard jr.|1 +(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut|spaceman|cosmonaut +alan hodgkin|1 +(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist +alan jay lerner|1 +(noun)|Lerner|Alan Jay Lerner|lyricist +alan mathison turing|1 +(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician +alan paton|1 +(noun)|Paton|Alan Paton|Alan Stewart Paton|writer|author +alan seeger|1 +(noun)|Seeger|Alan Seeger|poet +alan shepard|1 +(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut|spaceman|cosmonaut +alan stewart paton|1 +(noun)|Paton|Alan Paton|Alan Stewart Paton|writer|author +alan turing|1 +(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician +aland islands|1 +(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago +alanine|1 +(noun)|amino acid|aminoalkanoic acid +alar|3 +(adj)|axillary +(adj)|alary|aliform|wing-shaped|winged +(noun)|Alar|daminozide|chemical +alaric|1 +(noun)|Alaric|king|male monarch +alarm|6 +(noun)|dismay|consternation|fear|fearfulness|fright +(noun)|warning device|alarm system|device +(noun)|alert|warning signal|alarum|signal|signaling|sign +(noun)|alarm clock|clock +(verb)|dismay|appal|appall|horrify|frighten|fright|scare|affright +(verb)|alert|warn +alarm bell|1 +(noun)|tocsin|alarm|alert|warning signal|alarum +alarm clock|1 +(noun)|alarm|clock +alarm system|1 +(noun)|alarm|warning device|device +alarmed|1 +(adj)|afraid +alarming|1 +(adj)|alarming |appalling|dismaying|atrocious|frightful|horrifying|horrible|ugly|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|baleful|forbidding|menacing|minacious|minatory|ominous|sinister|threatening|ugly|bloodcurdling|hair-raising|nightmarish|chilling|scarey|scary|shivery|shuddery|creepy|creepy-crawly|formidable|redoubtable|unnerving|ghastly|grim|grisly|gruesome|macabre|hairy|petrifying|stupefying|terrific|terrifying +alarmism|1 +(noun)|warning +alarmist|1 +(noun)|communicator +alarum|1 +(noun)|alarm|alert|warning signal|signal|signaling|sign +alary|1 +(adj)|alar|aliform|wing-shaped|winged +alas|1 +(adv)|unfortunately|unluckily|regrettably +alaska|1 +(noun)|Alaska|Last Frontier|AK|American state +alaska cedar|1 +(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar|cedar tree +alaska cod|1 +(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod|codfish +alaska crab|2 +(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab|crabmeat +(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab +alaska fur seal|1 +(noun)|Alaska fur seal|Callorhinus ursinus|fur seal +alaska king crab|2 +(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab|crabmeat +(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab +alaska native|1 +(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan +alaska peninsula|2 +(noun)|Alaska Peninsula|peninsula +(noun)|Alaska Peninsula|peninsula +alaska range|1 +(noun)|Alaska Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +alaska rein orchid|1 +(noun)|Alaska rein orchid|Habenaria unalascensis|rein orchid|rein orchis +alaska standard time|1 +(noun)|Alaska Standard Time|Yukon Time|civil time|standard time|local time +alaskan|2 +(adj)|Alaskan|American state|American +(noun)|Alaskan|American +alaskan brown bear|1 +(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear|bruin|Ursus arctos +alaskan king crab|2 +(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab|crabmeat +(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab +alaskan malamute|1 +(noun)|malamute|malemute|Alaskan malamute|sled dog|sledge dog +alaskan native|1 +(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan +alaskan pipeline|1 +(noun)|Alaskan pipeline|trans-Alaska pipeline|pipeline|line +alastrim|1 +(noun)|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +alate|1 +(adj)|alated|winged +alated|1 +(adj)|alate|winged +alauda|1 +(noun)|Alauda|genus Alauda|bird genus +alauda arvensis|1 +(noun)|skylark|Alauda arvensis|lark +alaudidae|1 +(noun)|Alaudidae|family Alaudidae|bird family +alb|1 +(noun)|vestment +albacore|2 +(noun)|tuna|tuna fish|tunny +(noun)|long-fin tunny|Thunnus alalunga|tuna|tunny +alban berg|1 +(noun)|Berg|Alban Berg|composer +albania|1 +(noun)|Albania|Republic of Albania|Balkan country|Balkan nation|Balkan state +albanian|3 +(adj)|Albanian|Balkan country|Balkan nation|Balkan state +(noun)|Albanian|European +(noun)|Albanian|Indo-European|Indo-European language|Indo-Hittite +albanian capital|1 +(noun)|Tirana|Albanian capital|national capital +albanian monetary unit|1 +(noun)|Albanian monetary unit|monetary unit +albany|2 +(noun)|Albany|capital of New York|state capital +(noun)|Albany|town +albatrellus|1 +(noun)|Albatrellus|genus Albatrellus|fungus genus +albatrellus dispansus|1 +(noun)|Albatrellus dispansus|polypore|pore fungus|pore mushroom +albatrellus ovinus|1 +(noun)|Albatrellus ovinus|sheep polypore|polypore|pore fungus|pore mushroom +albatross|2 +(noun)|millstone|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|mollymawk|pelagic bird|oceanic bird +albedo|1 +(noun)|reflective power|ratio +albee|1 +(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist|playwright +alben barkley|1 +(noun)|Barkley|Alben Barkley|Alben William Barkley|politician|politico|pol|political leader +alben william barkley|1 +(noun)|Barkley|Alben Barkley|Alben William Barkley|politician|politico|pol|political leader +albers|1 +(noun)|Albers|Josef Albers|abstractionist|abstract artist +albers-schonberg disease|1 +(noun)|osteopetrosis|Albers-Schonberg disease|marble bones disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +albert|1 +(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort +albert abraham michelson|1 +(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist +albert bruce sabin|1 +(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist +albert camus|1 +(noun)|Camus|Albert Camus|writer|author +albert edward|1 +(noun)|Edward VII|Albert Edward|King of England|King of Great Britain +albert einstein|1 +(noun)|Einstein|Albert Einstein|physicist +albert francis charles augustus emmanuel|1 +(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort +albert gore jr.|1 +(noun)|Gore|Al Gore|Albert Gore Jr.|vice president|V.P. +albert michelson|1 +(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist +albert sabin|1 +(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist +albert schweitzer|1 +(noun)|Schweitzer|Albert Schweitzer|missionary|missioner|philosopher|doctor|doc|physician|MD|Dr.|medico|organist +albert speer|1 +(noun)|Speer|Albert Speer|architect|designer +albert szent-gyorgyi|1 +(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist +albert von szent-gyorgyi|1 +(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist +alberta|1 +(noun)|Alberta|Canadian province +alberti|1 +(noun)|Alberti|Leon Battista Alberti|architect|designer|painter +alberto giacometti|1 +(noun)|Giacometti|Alberto Giacometti|sculptor|sculpturer|carver|statue maker|painter +albescent|1 +(adj)|white |achromatic +albigenses|1 +(noun)|Albigenses|Cathars|Cathari|sect|religious sect|religious order +albigensian|1 +(adj)|Albigensian|Christianity|Christian religion|heresy|unorthodoxy|sect|religious sect|religious order +albigensianism|1 +(noun)|Albigensianism|Catharism|Christianity|Christian religion|heresy|unorthodoxy +albinal|1 +(adj)|albinotic|albinic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +albinic|1 +(adj)|albinal|albinotic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +albinism|1 +(noun)|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +albinistic|1 +(adj)|albinal|albinotic|albinic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +albino|1 +(noun)|anomaly|unusual person +albino luciano|1 +(noun)|John Paul I|Albino Luciano|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +albinotic|1 +(adj)|albinal|albinic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +albion|1 +(noun)|Albion|England|Great Britain +albite|1 +(noun)|white feldspar|plagioclase|oligoclase +albitic|1 +(adj)|plagioclase|oligoclase +albizia|1 +(noun)|albizzia|tree +albizia julibrissin|1 +(noun)|silk tree|Albizia julibrissin|Albizzia julibrissin|albizzia|albizia +albizia lebbeck|1 +(noun)|siris|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia|albizia +albizia saman|1 +(noun)|rain tree|saman|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia|albizia +albizzia|1 +(noun)|albizia|tree +albizzia julibrissin|1 +(noun)|silk tree|Albizia julibrissin|Albizzia julibrissin|albizzia|albizia +albizzia lebbeck|1 +(noun)|siris|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia|albizia +alborg|1 +(noun)|Aalborg|Alborg|city|metropolis|urban center|port +albrecht durer|1 +(noun)|Durer|Albrecht Durer|old master|engraver +albrecht eusebius wenzel von wallenstein|1 +(noun)|Wallenstein|Albrecht Eusebius Wenzel von Wallenstein|general|full general +albright's disease|1 +(noun)|Albright's disease|polyostotic fibrous dysplasia|fibrous dysplasia of bone +albuca|1 +(noun)|liliaceous plant +albuginaceae|1 +(noun)|Albuginaceae|family Albuginaceae|fungus family +albuginea|1 +(noun)|tunic|tunica|adventitia +albugo|1 +(noun)|Albugo|genus Albugo|fungus genus +albula|1 +(noun)|Albula|genus Albula|fish genus +albula vulpes|1 +(noun)|bonefish|Albula vulpes|soft-finned fish|malacopterygian +albulidae|1 +(noun)|Albulidae|family Albulidae|fish family +album|2 +(noun)|record album|medium +(noun)|book|volume +albumen|2 +(noun)|albumin|simple protein +(noun)|egg white|ovalbumin|ingredient|fixings +albumin|1 +(noun)|albumen|simple protein +albuminoid|1 +(noun)|scleroprotein|simple protein +albuminous|1 +(adj)|simple protein +albuminuria|1 +(noun)|proteinuria|symptom +albuminuric|1 +(adj)|symptom +albuquerque|1 +(noun)|Albuquerque|city|metropolis|urban center +albuterol|1 +(noun)|Ventolin|Proventil|bronchodilator +alca|1 +(noun)|Alca|genus Alca|bird genus +alca torda|1 +(noun)|razorbill|razor-billed auk|Alca torda|auk +alcaeus|1 +(noun)|Alcaeus|poet|Lesbian +alcahest|1 +(noun)|alkahest|universal solvent|solvent|dissolvent|dissolver|dissolving agent|resolvent +alcaic|1 +(noun)|Alcaic|Alcaic verse|poem|verse form +alcaic verse|1 +(noun)|Alcaic|Alcaic verse|poem|verse form +alcalescent|1 +(adj)|alkalescent|alkaline |alkalic +alcapton|1 +(noun)|alkapton|homogentisic acid|acid +alcaptonuria|1 +(noun)|alkaptonuria|metabolic disorder +alcazar|1 +(noun)|palace|fortress|fort +alcea|1 +(noun)|Alcea|genus Alcea|dilleniid dicot genus +alcea rosea|1 +(noun)|rose mallow|Alcea rosea|Althea rosea|hollyhock +alcedinidae|1 +(noun)|Alcedinidae|family Alcedinidae|bird family +alcedo|1 +(noun)|Alcedo|genus Alcedo|bird genus +alcedo atthis|1 +(noun)|Eurasian kingfisher|Alcedo atthis|kingfisher +alcelaphus|1 +(noun)|Alcelaphus|genus Alcelaphus|mammal genus +alces|1 +(noun)|Alces|genus Alces|mammal genus +alces alces|1 +(noun)|elk|European elk|moose|Alces alces|deer|cervid +alchemic|1 +(adj)|alchemical|pseudoscience +alchemical|1 +(adj)|alchemic|pseudoscience +alchemise|1 +(verb)|alchemize|change|alter|modify +alchemist|1 +(noun)|intellectual|intellect +alchemistic|1 +(adj)|alchemistical|intellectual|intellect +alchemistical|1 +(adj)|alchemistic|intellectual|intellect +alchemize|1 +(verb)|alchemise|change|alter|modify +alchemy|2 +(noun)|pseudoscience +(noun)|chemistry|interpersonal chemistry|social relation +alcibiades|1 +(noun)|Alcibiades|general|full general|statesman|solon|national leader|Athenian +alcidae|1 +(noun)|Alcidae|family Alcidae|bird family +alcides|1 +(noun)|Hercules|Heracles|Herakles|Alcides|mythical being +alcohol|2 +(noun)|alcoholic beverage|intoxicant|inebriant|beverage|drink|drinkable|potable|drug of abuse|street drug +(noun)|liquid +alcohol-dependent|1 +(adj)|alcoholic|addicted +alcohol-in-glass thermometer|1 +(noun)|alcohol thermometer|thermometer +alcohol abuse|1 +(noun)|alcoholic abuse|alcoholism abuse|substance abuse|drug abuse|habit +alcohol addiction|1 +(noun)|alcoholism|inebriation|drunkenness|drug addiction|white plague +alcohol amnestic disorder|1 +(noun)|alcoholic dementia|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +alcohol group|1 +(noun)|alcohol radical|group|radical|chemical group +alcohol radical|1 +(noun)|alcohol group|group|radical|chemical group +alcohol thermometer|1 +(noun)|alcohol-in-glass thermometer|thermometer +alcoholic|3 +(adj)|alcoholic |hard|strong|intoxicant|intoxicating|laced|spiked|spirituous|spiritous|dry|wet +(adj)|alcohol-dependent|addicted +(noun)|alky|dipsomaniac|boozer|lush|soaker|souse|drunkard|drunk|rummy|sot|inebriate +alcoholic abuse|1 +(noun)|alcohol abuse|alcoholism abuse|substance abuse|drug abuse|habit +alcoholic beverage|1 +(noun)|alcohol|intoxicant|inebriant|beverage|drink|drinkable|potable|drug of abuse|street drug +alcoholic dementia|1 +(noun)|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +alcoholics anonymous|1 +(noun)|Alcoholics Anonymous|AA|nongovernmental organization|NGO +alcoholise|2 +(verb)|alcoholize|impregnate|saturate +(verb)|alcoholize|change|alter|modify +alcoholism|2 +(noun)|alcohol addiction|inebriation|drunkenness|drug addiction|white plague +(noun)|dipsomania|potomania|mania|passion|cacoethes +alcoholism abuse|1 +(noun)|alcohol abuse|alcoholic abuse|substance abuse|drug abuse|habit +alcoholize|3 +(verb)|regale|treat +(verb)|alcoholise|impregnate|saturate +(verb)|alcoholise|change|alter|modify +alcott|1 +(noun)|Alcott|Louisa May Alcott|novelist +alcove|1 +(noun)|bay|recess|niche +alcyonacea|1 +(noun)|Alcyonacea|suborder Alcyonacea|animal order +alcyonaria|1 +(noun)|Alcyonaria|order Alcyonaria|animal order +alcyone|1 +(noun)|Alcyone|Halcyon|mythical being +aldactone|1 +(noun)|spironolactone|Aldactone|corticosteroid|corticoid|adrenal cortical steroid|antihypertensive|antihypertensive drug +aldebaran|1 +(noun)|Aldebaran|binary star|binary|double star +aldehyde|1 +(noun)|organic compound +aldehyde-alcohol|1 +(noun)|aldol|organic compound +aldehyde group|1 +(noun)|aldehyde radical|group|radical|chemical group +aldehyde radical|1 +(noun)|aldehyde group|group|radical|chemical group +aldehydic|1 +(adj)|organic compound +alder|2 +(noun)|wood +(noun)|alder tree|tree +alder-leaved serviceberry|1 +(noun)|alderleaf Juneberry|Amelanchier alnifolia|Juneberry|serviceberry|service tree|shadbush|shadblow +alder blight|1 +(noun)|blight +alder buckthorn|1 +(noun)|alder dogwood|Rhamnus frangula|buckthorn +alder dogwood|1 +(noun)|alder buckthorn|Rhamnus frangula|buckthorn +alder fly|2 +(noun)|alderfly|Sialis lutaria|neuropteron|neuropteran|neuropterous insect +(noun)| +alder tree|1 +(noun)|alder|tree +alderfly|1 +(noun)|alder fly|Sialis lutaria|neuropteron|neuropteran|neuropterous insect +alderleaf juneberry|1 +(noun)|alderleaf Juneberry|alder-leaved serviceberry|Amelanchier alnifolia|Juneberry|serviceberry|service tree|shadbush|shadblow +alderman|1 +(noun)|representative +aldermanic|1 +(adj)|aldermanly|representative +aldermanly|1 +(adj)|aldermanic|representative +aldohexose|1 +(noun)|aldose|hexose +aldol|1 +(noun)|aldehyde-alcohol|organic compound +aldol reaction|1 +(noun)|chemical reaction|reaction +aldomet|1 +(noun)|methyldopa|alpha methyl dopa|Aldomet|antihypertensive|antihypertensive drug +aldose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +aldosterone|1 +(noun)|mineralocorticoid +aldosteronism|1 +(noun)|hyperaldosteronism|glandular disease|gland disease|glandular disorder|adenosis +aldous huxley|1 +(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer|author +aldous leonard huxley|1 +(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer|author +aldrovanda|1 +(noun)|Aldrovanda|genus Aldrovanda|dicot genus|magnoliopsid genus +aldrovanda vesiculosa|1 +(noun)|waterwheel plant|Aldrovanda vesiculosa|carnivorous plant +ale|1 +(noun)|beer +ale drinker|1 +(noun)|beer drinker|drinker|imbiber|toper|juicer +aleatory|1 +(adj)|unpredictable +aleatory contract|1 +(noun)|contract +alec guinness|1 +(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor|histrion|player|thespian|role player +alecost|1 +(noun)|costmary|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +alectis|1 +(noun)|Alectis|genus Alectis|fish genus +alectis ciliaris|1 +(noun)|threadfish|thread-fish|Alectis ciliaris|jack +alecto|1 +(noun)|Alecto|Fury|Eumenides|Erinyes +alectoria|1 +(noun)|Alectoria|genus Alectoria|fungus genus +alectoris|1 +(noun)|Alectoris|genus Alectoris|bird genus +alectoris graeca|1 +(noun)|Greek partridge|rock partridge|Alectoris graeca|partridge +alectoris ruffa|1 +(noun)|red-legged partridge|Alectoris ruffa|partridge +alectura|1 +(noun)|Alectura|genus Alectura|bird genus +alectura lathami|1 +(noun)|brush turkey|Alectura lathami|megapode|mound bird|mound-bird|mound builder|scrub fowl +alehoof|1 +(noun)|ground ivy|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +alehouse|1 +(noun)|public house|pub|saloon|pothouse|gin mill|taphouse +aleksandr aleksandrovich blok|1 +(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet +aleksandr borodin|1 +(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer +aleksandr feodorovich kerensky|1 +(noun)|Kerensky|Aleksandr Feodorovich Kerensky|statesman|solon|national leader +aleksandr i. solzhenitsyn|1 +(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer|author|political dissident +aleksandr mikjailovich prokhorov|1 +(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist +aleksandr nikolayevich scriabin|1 +(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer +aleksandr pavlovich|1 +(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar|tsar|tzar +aleksandr porfirevich borodin|1 +(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer +aleksandr prokhorov|1 +(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist +aleksandr scriabin|1 +(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer +aleksandr sergeyevich pushkin|1 +(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet +aleksey maksimovich peshkov|1 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +aleksey maximovich peshkov|1 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +alembic|1 +(noun)|retort +alendronate|1 +(noun)|Fosamax|medicine|medication|medicament|medicinal drug +alep|1 +(noun)|Aleppo|Alep|city|metropolis|urban center +aleph|1 +(noun)|letter|letter of the alphabet|alphabetic character +aleph-nought|1 +(noun)|aleph-null|aleph-zero|large integer +aleph-null|1 +(noun)|aleph-nought|aleph-zero|large integer +aleph-zero|1 +(noun)|aleph-null|aleph-nought|large integer +alepisaurus|1 +(noun)|Alepisaurus|genus Alepisaurus|fish genus +aleppa grass|1 +(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum +aleppo|1 +(noun)|Aleppo|Alep|city|metropolis|urban center +aleppo boil|1 +(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +alert|8 +(adj)|alert |argus-eyed|open-eyed|vigilant|wakeful|watchful|fly|heads-up|wide-awake|lidless|sleepless|on the alert|on the job|perched|perked|perked up|awake|lively|wary +(adj)|intelligent +(adj)|awake|conscious +(adj)|alive|awake|aware +(noun)|qui vive|readiness|preparedness|preparation +(noun)|alerting|warning +(noun)|alarm|warning signal|alarum|signal|signaling|sign +(verb)|alarm|warn +alerting|2 +(noun)|alertness|arousal +(noun)|alert|warning +alertness|3 +(noun)|watchfulness|vigilance|attention +(noun)|alerting|arousal +(noun)|on the qui vive|attentiveness +alessandro di mariano dei filipepi|1 +(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master +alessandro manzoni|1 +(noun)|Manzoni|Alessandro Manzoni|writer|author +alethic logic|1 +(noun)|modal logic +aletris|1 +(noun)|Aletris|genus Aletris|liliid monocot genus +aletris aurea|1 +(noun)|yellow colicroot|Aletris aurea|colicroot|colic root|crow corn|star grass|unicorn root +aletris farinosa|1 +(noun)|ague root|ague grass|Aletris farinosa|colicroot|colic root|crow corn|star grass|unicorn root +aletta jacobs|1 +(noun)|Jacobs|Aletta Jacobs|doctor|doc|physician|MD|Dr.|medico +aleuria aurantia|1 +(noun)|Aleuria aurantia|orange peel fungus|discomycete|cup fungus +aleurites|1 +(noun)|Aleurites|genus Aleurites|rosid dicot genus +aleurites fordii|1 +(noun)|tung tree|tung|tung-oil tree|Aleurites fordii|angiospermous tree|flowering tree +aleurites moluccana|1 +(noun)|candlenut|varnish tree|Aleurites moluccana|angiospermous tree|flowering tree +aleurone|1 +(noun)|protein +aleuronic|1 +(adj)|protein +aleut|2 +(noun)|Aleut|Aleutian|Indian|North American Indian|American Indian|Red Indian +(noun)|Aleut|Eskimo-Aleut|Eskimo-Aleut language +aleutian|1 +(noun)|Aleut|Aleutian|Indian|North American Indian|American Indian|Red Indian +aleutian islands|1 +(noun)|Aleutian Islands|Aleutians|archipelago +aleutians|2 +(noun)|Aleutian Islands|Aleutians|archipelago +(noun)|Aleut|Aleutian|Indian|North American Indian|American Indian|Red Indian +aleve|1 +(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +alewife|2 +(noun)|fish +(noun)|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish|clupeid +alex boncayao brigade|1 +(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization|terrorist group|foreign terrorist organization|FTO +alex haley|1 +(noun)|Haley|Alex Haley|writer|author +alexander|2 +(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb|herbaceous plant +(noun)|Alexander|Alexander the Great|conqueror|vanquisher +alexander alexandrovich blok|1 +(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet +alexander archipelago|1 +(noun)|Alexander Archipelago|archipelago +alexander bell|1 +(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor|discoverer|artificer +alexander calder|1 +(noun)|Calder|Alexander Calder|sculptor|sculpturer|carver|statue maker +alexander fleming|1 +(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist +alexander graham bell|1 +(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor|discoverer|artificer +alexander hamilton|1 +(noun)|Hamilton|Alexander Hamilton|statesman|solon|national leader +alexander i|1 +(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar|tsar|tzar +alexander ii|1 +(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar|tsar|tzar +alexander iii|1 +(noun)|Alexander III|Czar Alexander III|czar|tsar|tzar +alexander isayevich solzhenitsyn|1 +(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer|author|political dissident +alexander melville bell|1 +(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician +alexander pope|1 +(noun)|Pope|Alexander Pope|poet +alexander pushkin|1 +(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet +alexander selcraig|1 +(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor|crewman +alexander selkirk|1 +(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor|crewman +alexander the great|1 +(noun)|Alexander|Alexander the Great|conqueror|vanquisher +alexander the liberator|1 +(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar|tsar|tzar +alexander vi|1 +(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +alexander wilson|1 +(noun)|Wilson|Alexander Wilson|ornithologist|bird watcher +alexander woollcott|1 +(noun)|Woollcott|Alexander Woollcott|drama critic|theater critic|journalist +alexanders|3 +(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb|herbaceous plant +(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb|herbaceous plant +(noun)|Alexander|Alexander the Great|conqueror|vanquisher +alexandre dumas|1 +(noun)|Dumas|Alexandre Dumas|writer|author +alexandre emile jean yersin|1 +(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist +alexandre gustave eiffel|1 +(noun)|Eiffel|Alexandre Gustave Eiffel|engineer|applied scientist|technologist +alexandre yersin|1 +(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist +alexandria|2 +(noun)|Alexandria|town +(noun)|Alexandria|El Iskandriyah|city|metropolis|urban center|port +alexandria senna|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +alexandrian|1 +(adj)|Alexandrian|conqueror|vanquisher +alexandrian laurel|1 +(noun)|Alexandrian laurel|Calophyllum inophyllum|poon +alexandrian senna|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +alexandrine|1 +(noun)|Alexandrine|line of poetry|line of verse +alexandrite|1 +(noun)|chrysoberyl +alexia|1 +(noun)|visual aphasia|word blindness|aphasia +alexic|2 +(adj)|word-blind|aphasia +(noun)|patient +alexis carrel|1 +(noun)|Carrel|Alexis Carrel|surgeon|operating surgeon|sawbones|biologist|life scientist +alexis charles henri maurice de tocqueville|1 +(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer|author +alexis de tocqueville|1 +(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer|author +aleyrodes|1 +(noun)|Aleyrodes|genus Aleyrodes|arthropod genus +aleyrodidae|1 +(noun)|Aleyrodidae|family Aleyrodidae|arthropod family +alfalfa|2 +(noun)|lucerne|Medicago sativa|medic|medick|trefoil +(noun)|fodder +alfalfa sprout|1 +(noun)|sprout +alfilaria|1 +(noun)|redstem storksbill|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +alfileria|1 +(noun)|redstem storksbill|alfilaria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +alfonso borgia|1 +(noun)|Calixtus III|Borgia|Alfonso Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +alfred|1 +(noun)|Alfred|AElfred|Alfred the Great|king|male monarch +alfred alistair cooke|1 +(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist +alfred bernhard nobel|1 +(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist|philanthropist|altruist +alfred binet|1 +(noun)|Binet|Alfred Binet|psychologist +alfred charles kinsey|1 +(noun)|Kinsey|Alfred Charles Kinsey|zoologist|animal scientist +alfred charles william harmsworth|1 +(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher|newspaper publisher +alfred damon runyon|1 +(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer|author +alfred de musset|1 +(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer|author|poet +alfred dreyfus|1 +(noun)|Dreyfus|Alfred Dreyfus|army officer +alfred edward housman|1 +(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet +alfred edward woodley mason|1 +(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer|author +alfred eisenstaedt|1 +(noun)|Eisenstaedt|Alfred Eisenstaedt|photographer|lensman +alfred habdank skarbek korzybski|1 +(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist|semiotician +alfred hawthorne|1 +(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian|comic +alfred hitchcock|1 +(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director +alfred joseph hitchcock|1 +(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director +alfred kastler|1 +(noun)|Kastler|Alfred Kastler|physicist +alfred korzybski|1 +(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist|semiotician +alfred kroeber|1 +(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist +alfred krupp|1 +(noun)|Krupp|Alfred Krupp|arms manufacturer +alfred lord tennyson|1 +(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet +alfred lothar wegener|1 +(noun)|Wegener|Alfred Lothar Wegener|geophysicist +alfred louis kroeber|1 +(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist +alfred lunt|1 +(noun)|Lunt|Alfred Lunt|actor|histrion|player|thespian|role player +alfred nobel|1 +(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist|philanthropist|altruist +alfred north whitehead|1 +(noun)|Whitehead|Alfred North Whitehead|philosopher|mathematician +alfred noyes|1 +(noun)|Noyes|Alfred Noyes|poet +alfred russel wallace|1 +(noun)|Wallace|Alfred Russel Wallace|naturalist|natural scientist +alfred stieglitz|1 +(noun)|Stieglitz|Alfred Stieglitz|photographer|lensman +alfred tennyson|1 +(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet +alfred thayer mahan|1 +(noun)|Mahan|Alfred Thayer Mahan|naval officer|historian|historiographer +alfred the great|1 +(noun)|Alfred|AElfred|Alfred the Great|king|male monarch +alfresco|2 +(adj)|open-air|outdoor |out-of-door|outside +(adv)|outside|outdoors|out of doors +alga|1 +(noun)|algae|protoctist +algae|1 +(noun)|alga|protoctist +algal|1 +(adj)|protoctist +algarobilla|1 +(noun)|algarroba|algarrobilla|bean +algarroba|4 +(noun)|carob|carob bean|algarroba bean|locust bean|locust pod|bean|bean plant +(noun)|carob|carob tree|carob bean tree|Ceratonia siliqua|bean tree +(noun)|algarrobilla|algarobilla|bean +(noun)|Prosopis juliflora|Prosopis juliiflora|mesquite|mesquit +algarroba bean|1 +(noun)|carob|carob bean|algarroba|locust bean|locust pod|bean|bean plant +algarrobilla|1 +(noun)|algarroba|algarobilla|bean +algebra|1 +(noun)|pure mathematics +algebraic|1 +(adj)|algebraical|pure mathematics +algebraic language|1 +(noun)|algorithmic language +algebraic number|1 +(noun)|irrational number +algebraical|1 +(adj)|algebraic|pure mathematics +algebraist|1 +(noun)|mathematician +alger|1 +(noun)|Alger|Horatio Alger|writer|author +algeria|1 +(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country|African nation +algerian|2 +(adj)|Algerian|African country|African nation +(noun)|Algerian|African +algerian capital|1 +(noun)|Algiers|Algerian capital|national capital|port +algerian centime|1 +(noun)|Algerian centime|centime +algerian dinar|1 +(noun)|Algerian dinar|dinar|Algerian monetary unit +algerian monetary unit|1 +(noun)|Algerian monetary unit|monetary unit +algerie|1 +(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country|African nation +algeripithecus|1 +(noun)|Algeripithecus|genus Algeripithecus|mammal genus +algeripithecus minutus|1 +(noun)|Algeripithecus minutus|hominoid +algernon charles swinburne|1 +(noun)|Swinburne|Algernon Charles Swinburne|poet +algid|1 +(adj)|cold +algiers|1 +(noun)|Algiers|Algerian capital|national capital|port +algin|1 +(noun)|alginic acid|gum +alginic acid|1 +(noun)|algin|gum +algoid|1 +(adj)|protoctist +algol|2 +(noun)|Algol|binary star|binary|double star +(noun)|ALGOL|algebraic language +algolagnia|1 +(noun)|sexual pleasure +algolagnic|1 +(adj)|sexual pleasure +algometer|1 +(noun)|measuring instrument|measuring system|measuring device +algometric|1 +(adj)|algometrical|measurement|measuring|measure|mensuration +algometrical|1 +(adj)|algometric|measurement|measuring|measure|mensuration +algometry|1 +(noun)|measurement|measuring|measure|mensuration +algonkian|3 +(adj)|Algonquian|Algonkian|Algonquin|Indian|North American Indian|American Indian|Red Indian +(noun)|Algonkian|Algonkin|Algonquian|Algonquin +(noun)|Algonkian|Algonkin|Algonquian|Algonquin|Algonquian language +algonkin|2 +(noun)|Algonkian|Algonkin|Algonquian|Algonquin +(noun)|Algonkian|Algonkin|Algonquian|Algonquin|Algonquian language +algonquian|3 +(adj)|Algonquian|Algonkian|Algonquin|Indian|North American Indian|American Indian|Red Indian +(noun)|Algonquian|Algonquin|Indian|North American Indian|American Indian|Red Indian +(noun)|Algonquian|Algonquin|Algonquian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +algonquian language|1 +(noun)|Algonquian|Algonquin|Algonquian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +algonquin|3 +(adj)|Algonquian|Algonkian|Algonquin|Indian|North American Indian|American Indian|Red Indian +(noun)|Algonquian|Algonquin|Indian|North American Indian|American Indian|Red Indian +(noun)|Algonquian|Algonquin|Algonquian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +algophobia|1 +(noun)|simple phobia +algophobic|1 +(adj)|afraid +algorism|2 +(noun)|decimal numeration system|decimal number system|decimal system +(noun)|arithmetic +algorithm|1 +(noun)|algorithmic rule|algorithmic program|rule|formula +algorithm error|1 +(noun)|error|computer error +algorithmic|1 +(adj)|algorithmic |recursive +algorithmic language|1 +(noun)|programming language|programing language +algorithmic program|1 +(noun)|algorithm|algorithmic rule|rule|formula +algorithmic rule|1 +(noun)|algorithm|algorithmic program|rule|formula +algren|1 +(noun)|Algren|Nelson Algren|writer|author +alhambra|1 +(noun)|Alhambra|palace|fortress|fort +alhazen|1 +(noun)|Alhazen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician|physicist|astronomer|uranologist|stargazer +ali|2 +(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter|gladiator +(noun)|Ali|caliph|calif|kaliph|kalif|khalif|khalifah +ali baba|1 +(noun)|Ali Baba|fictional character|fictitious character|character|woodcutter +alias|2 +(noun)|assumed name|false name|name +(adv)|a.k.a.|also known as +alibi|3 +(noun)|defense|defence|vindication +(noun)|excuse|exculpation|self-justification|defense|defence|vindication +(verb)|excuse|explain +alice b. toklas|1 +(noun)|Toklas|Alice B. Toklas|writer|author +alice hamilton|1 +(noun)|Hamilton|Alice Hamilton|toxicologist +alice malsenior walker|1 +(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer|author +alice paul|1 +(noun)|Paul|Alice Paul|feminist|women's rightist|women's liberationist|libber +alice walker|1 +(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer|author +alicia alonso|1 +(noun)|Alonso|Alicia Alonso|dancer|professional dancer|choreographer +alicyclic compound|1 +(noun)|aliphatic compound +alidad|2 +(noun)|alidade|surveying instrument|surveyor's instrument +(noun)|alidade|surveying instrument|surveyor's instrument +alidade|2 +(noun)|alidad|surveying instrument|surveyor's instrument +(noun)|alidad|surveying instrument|surveyor's instrument +alien|7 +(adj)|foreign|extrinsic +(adj)|exotic|foreign +(noun)|foreigner|noncitizen|outlander|traveler|traveller +(noun)|stranger|unknown|intruder|interloper|trespasser +(noun)|extraterrestrial being|extraterrestrial|hypothetical creature +(verb)|alienate|transfer +(verb)|estrange|alienate|disaffect|change|alter|modify +alien absconder|1 +(noun)|absconder +alienable|1 +(adj)|alienable |appropriable|assignable|conveyable|negotiable|transferable|transferrable +alienage|1 +(noun)|alienism|foreignness|strangeness|curiousness +alienate|2 +(verb)|estrange|alien|disaffect|change|alter|modify +(verb)|alien|transfer +alienated|2 +(adj)|anomic|disoriented|unoriented +(adj)|estranged|unloved +alienating|1 +(adj)|antagonistic +alienation|4 +(noun)|disaffection|estrangement|dislike +(noun)|estrangement|isolation +(noun)|transfer|transference +(noun)|action +alienation of affection|1 +(noun)|tort|civil wrong +alienator|1 +(noun)|unpleasant person|disagreeable person +alienism|1 +(noun)|alienage|foreignness|strangeness|curiousness +alienist|1 +(noun)|psychiatrist|head-shrinker|shrink +aliform|1 +(adj)|alar|alary|wing-shaped|winged +alight|3 +(adj)|ablaze|afire|aflame|aflare|blazing|burning|flaming|on fire|lighted |lit +(verb)|light|perch|land|set down +(verb)|climb down|descend|fall|go down|come down +align|4 +(verb)|aline|line up|adjust|reorient +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|array|stand +(verb)|ordinate|coordinate|adjust|set|correct +aligned|2 +(adj)|aligned |allied +(adj)|straight +aligning|1 +(adj)|positioning|orienting |orientating +alignment|4 +(noun)|alliance|coalition|alinement|organization|organisation +(noun)|placement|arrangement +(noun)|conjunction|meeting|encounter +(noun)|adjustment|registration|readjustment +alike|2 +(adj)|alike |similar|like +(adv)|likewise +alikeness|1 +(noun)|likeness|similitude|similarity +aliment|2 +(noun)|nutriment|nourishment|nutrition|sustenance|alimentation|victuals|food|nutrient +(verb)|nutrify|nourish|feed|give +alimental|1 +(adj)|alimentary|nourishing|nutrient|nutritious|nutritive|wholesome +alimentary|1 +(adj)|alimental|nourishing|nutrient|nutritious|nutritive|wholesome +alimentary canal|1 +(noun)|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct|epithelial duct|canal|channel +alimentary paste|1 +(noun)|pasta|food +alimentary tract|1 +(noun)|alimentary canal|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct|epithelial duct|canal|channel +alimentary tract smear|1 +(noun)|smear|cytologic smear|cytosmear +alimentation|2 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|victuals|food|nutrient +(noun)|feeding|provision|supply|supplying +alimentative|1 +(adj)|provision|supply|supplying +alimony|1 +(noun)|maintenance|support payment +aline|1 +(verb)|align|line up|adjust|reorient +alinement|1 +(noun)|alliance|coalition|alignment|organization|organisation +aliphatic|1 +(adj)|acyclic |open-chain +aliphatic compound|1 +(noun)|organic compound +aliquant|1 +(noun)|aliquant part|divisor +aliquant part|1 +(noun)|aliquant|divisor +aliquot|2 +(adj)|fractional +(noun)|aliquot part|divisor +aliquot part|1 +(noun)|aliquot|divisor +alir|1 +(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization|terrorist group|foreign terrorist organization|FTO +alisma|1 +(noun)|Alisma|genus Alisma|monocot genus|liliopsid genus +alisma plantago-aquatica|1 +(noun)|water plantain|Alisma plantago-aquatica|marsh plant|bog plant|swamp plant +alismales|1 +(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order +alismataceae|1 +(noun)|Alismataceae|family Alismataceae|water-plantain family|monocot family|liliopsid family +alismatidae|1 +(noun)|Alismatidae|subclass Alismatidae|class +alistair cooke|1 +(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist +aliterate|1 +(noun)|aliterate person|ignoramus|know nothing|uneducated person +aliterate person|1 +(noun)|aliterate|ignoramus|know nothing|uneducated person +alive|7 +(adj)|alive |live|liveborn|viable|vital|animate +(adj)|lively +(adj)|animated |enlivened|spirited|full of life|lively|vital|reanimated|revived +(adj)|sensitive +(adj)|active|existent |existing +(adj)|alert|awake|aware +(adj)|live|active +aliveness|2 +(noun)|animation|life|living|being|beingness|existence +(noun)|animateness|liveness|physiological property +aliyah|2 +(noun)|award|accolade|honor|honour|laurels +(noun)|immigration|in-migration +alizarin|1 +(noun)|alizarine|pigment +alizarin carmine|1 +(noun)|alizarin crimson|alizarin red|alizarin|alizarine +alizarin crimson|1 +(noun)|alizarin carmine|alizarin red|alizarin|alizarine +alizarin red|1 +(noun)|alizarin carmine|alizarin crimson|alizarin|alizarine +alizarin yellow|1 +(noun)|dye|dyestuff +alizarine|1 +(noun)|alizarin|pigment +alizarine red|1 +(noun)|Turkey red|red|redness +alka-seltzer|1 +(noun)|Alka-seltzer|antacid|gastric antacid|alkalizer|alkaliser|antiacid +alkahest|1 +(noun)|alcahest|universal solvent|solvent|dissolvent|dissolver|dissolving agent|resolvent +alkahestic|1 +(adj)|solvent|dissolvent|dissolver|dissolving agent|resolvent +alkalating agent|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +alkalemia|1 +(noun)|blood disease|blood disorder +alkalescent|1 +(adj)|alcalescent|alkaline |alkalic +alkali|2 +(noun)|base|compound|chemical compound +(noun)|salt +alkali bee|1 +(noun)|Nomia melanderi|bee +alkali grass|1 +(noun)|Zigadenus elegans|death camas|zigadene +alkali metal|1 +(noun)|alkaline metal|metallic element|metal +alkali poisoning|1 +(noun)|poisoning|toxic condition|intoxication +alkalic|1 +(adj)|alkaline |alkalescent|alcalescent|basic|base-forming +alkalify|1 +(verb)|alkalize|alkalise|basify|change state|turn +alkalimetry|1 +(noun)|volumetric analysis +alkaline|1 +(adj)|alkaline |alkalic|alkalescent|alcalescent|basic|base-forming +alkaline-earth metal|1 +(noun)|alkaline earth|metallic element|metal +alkaline-loving|1 +(adj)|alkaline-loving +alkaline earth|1 +(noun)|alkaline-earth metal|metallic element|metal +alkaline metal|1 +(noun)|alkali metal|metallic element|metal +alkalinise|2 +(verb)|alkalinize|change +(verb)|alkalinize|change|alter|modify +alkalinity|1 +(noun)|pH|pH scale +alkalinize|2 +(verb)|alkalinise|change +(verb)|alkalinise|change|alter|modify +alkalinuria|1 +(noun)|alkaluria|symptom +alkalise|1 +(verb)|alkalize|alkalify|basify|change state|turn +alkaliser|1 +(noun)|antacid|gastric antacid|alkalizer|antiacid|agent +alkalize|1 +(verb)|alkalise|alkalify|basify|change state|turn +alkalizer|1 +(noun)|antacid|gastric antacid|alkaliser|antiacid|agent +alkaloid|1 +(noun)|organic compound +alkaloidal|1 +(adj)|organic compound +alkalosis|1 +(noun)|pathology +alkalotic|1 +(adj)|pathology +alkaluria|1 +(noun)|alkalinuria|symptom +alkane|1 +(noun)|methane series|alkane series|paraffin|aliphatic compound +alkane series|1 +(noun)|methane series|alkane|paraffin|aliphatic compound +alkanet|1 +(noun)|bugloss|Anchusa officinalis|anchusa +alkapton|1 +(noun)|alcapton|homogentisic acid|acid +alkaptonuria|1 +(noun)|alcaptonuria|metabolic disorder +alkene|1 +(noun)|olefine|olefin|aliphatic compound +alkeran|1 +(noun)|melphalan|Alkeran|antineoplastic|antineoplastic drug|cancer drug +alky|1 +(noun)|alcoholic|dipsomaniac|boozer|lush|soaker|souse|drunkard|drunk|rummy|sot|inebriate +alkyd|1 +(noun)|alkyd resin|synthetic resin +alkyd resin|1 +(noun)|alkyd|synthetic resin +alkyl|1 +(noun)|alkyl group|alkyl radical|group|radical|chemical group +alkyl group|1 +(noun)|alkyl|alkyl radical|group|radical|chemical group +alkyl halide|1 +(noun)|haloalkane|organic compound +alkyl radical|1 +(noun)|alkyl|alkyl group|group|radical|chemical group +alkylbenzene|1 +(noun)|organic compound +alkylbenzenesulfonate|1 +(noun)|sulfonate +alkylic|1 +(adj)|group|radical|chemical group +alkyne|1 +(noun)|acetylene|ethyne|aliphatic compound +all|3 +(adj)|all |each|every|every|every last +(adj)|complete +(adv)|wholly|entirely|completely|totally|altogether|whole +all-around|1 +(adj)|all-round|well-rounded|comprehensive +all-day sucker|1 +(noun)|lollipop|sucker|candy +all-devouring|1 +(adj)|omnivorous +all-embracing|1 +(adj)|across-the-board|all-encompassing|all-inclusive|blanket|broad|encompassing|panoptic|wide|comprehensive +all-encompassing|1 +(adj)|across-the-board|all-embracing|all-inclusive|blanket|broad|encompassing|panoptic|wide|comprehensive +all-fired|2 +(adj)|immoderate +(adv)|bloody|damn +all-important|2 +(adj)|all important|crucial|essential|of the essence|important |of import +(adj)| +all-inclusive|1 +(adj)|across-the-board|all-embracing|all-encompassing|blanket|broad|encompassing|panoptic|wide|comprehensive +all-knowing|1 +(adj)|omniscient|wise +all-mains|1 +(adj)|adaptable +all-or-none law|1 +(noun)|law|law of nature +all-out|1 +(adj)|full-scale|complete +all-powerful|1 +(adj)|almighty|omnipotent|powerful +all-purpose|1 +(adj)|general-purpose|general +all-round|1 +(adj)|all-around|well-rounded|comprehensive +all-rounder|1 +(noun)|all arounder|expert +all-terrain bike|1 +(noun)|mountain bike|off-roader|bicycle|bike|wheel|cycle +all-time|1 +(adj)|incomparable |uncomparable +all-victorious|1 +(adj)|unconquerable +all-weather|1 +(adj)|unrestricted +all along|1 +(adv)|right along +all arounder|1 +(noun)|all-rounder|expert +all at once|2 +(adv)|all together +(adv)|all of a sudden +all but|1 +(adv)|about|just about|almost|most|nearly|near|nigh|virtually|well-nigh +all clear|2 +(noun)|signal|signaling|sign +(noun)|permission +all day long|1 +(adv)|daylong +all fools' day|1 +(noun)|April Fools'|April Fools' day|All Fools' day|day +all fours|1 +(noun)|high-low-jack|card game|cards +all get out|1 +(noun)|billyo|billyoh|billy-ho|large indefinite quantity|large indefinite amount +all important|2 +(adj)|all-important|crucial|essential|of the essence|important |of import +(adj)| +all in|1 +(adj)|beat|bushed|dead|tired +all in all|1 +(adv)|on the whole|altogether|tout ensemble +all of a sudden|2 +(adv)|all at once +(adv)|suddenly|of a sudden +all over|3 +(adj)|complete|concluded|ended|over|terminated|finished +(adj)|allover|complete +(adv)|everywhere|everyplace +all right|5 +(adj)|fine|ok|o.k.|okay|hunky-dory|satisfactory +(adj)|fine|well +(adv)|very well|fine|alright|OK +(adv)|alright|without doubt +(adv)|okay|O.K.|alright +all saints' day|1 +(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation +all souls' day|1 +(noun)|All Souls' Day|November 2|Christian holy day +all the same|1 +(adv)|however|nevertheless|withal|still|yet|even so|nonetheless|notwithstanding +all the time|1 +(adv)|day in and day out +all the way|2 +(adv)|the whole way +(adv)|clear +all together|1 +(adv)|all at once +all told|1 +(adv)|altogether|in all +all too|1 +(adv)|only too +alla breve|1 +(noun)|time signature|musical time signature +alla nazimova|1 +(noun)|Nazimova|Alla Nazimova|actress +allah|1 +(noun)|Allah|God|Supreme Being +allamanda|1 +(noun)|vine +allamanda cathartica|1 +(noun)|common allamanda|golden trumpet|Allamanda cathartica|allamanda +allantoic|1 +(adj)|fetal membrane +allantoid|1 +(adj)|sausage-shaped|rounded +allantois|1 +(noun)|fetal membrane +allargando|1 +(adj)|decreasing +allay|2 +(verb)|still|relieve|ease|comfort|soothe|console|solace +(verb)|quench|slake|assuage|meet|satisfy|fill|fulfill|fulfil +allayer|1 +(noun)|reliever|comforter|person|individual|someone|somebody|mortal|human|soul +allegation|2 +(noun)|accusation|accusal +(noun)|allegement|claim +allege|1 +(verb)|aver|say|assert|asseverate|maintain +allegeable|1 +(adj)|possible +alleged|2 +(adj)|declared +(adj)|so-called|supposed|questionable +allegement|1 +(noun)|allegation|claim +alleghany plum|1 +(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum|wild plum tree +alleghenies|2 +(noun)|Alleghenies|Allegheny Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Allegheny|Allegheny River|river +allegheny|1 +(noun)|Allegheny|Allegheny River|river +allegheny chinkapin|1 +(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut|chestnut tree +allegheny mountain spurge|1 +(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra +allegheny mountains|1 +(noun)|Alleghenies|Allegheny Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +allegheny plum|1 +(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum|wild plum tree +allegheny river|1 +(noun)|Allegheny|Allegheny River|river +allegheny spurge|1 +(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra +allegheny vine|1 +(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine +allegiance|2 +(noun)|commitment|loyalty|dedication|cooperation +(noun)|fealty|loyalty +allegiant|1 +(adj)|loyal +allegoric|1 +(adj)|allegorical|representative +allegorical|1 +(adj)|allegoric|representative +allegorise|2 +(verb)|allegorize|interpret|construe|see +(verb)|allegorize|change|alter|modify +allegoriser|1 +(noun)|allegorizer|communicator +allegorize|2 +(verb)|allegorise|interpret|construe|see +(verb)|allegorise|change|alter|modify +allegorizer|1 +(noun)|allegoriser|communicator +allegory|3 +(noun)|fable|parable|apologue|story +(noun)|emblem|symbol|symbolization|symbolisation|symbolic representation +(noun)|expressive style|style +allegretto|2 +(adj)|fast +(noun)|tempo|pacing +allegro|3 +(adj)|fast +(noun)|tempo|pacing +(noun)|musical composition|opus|composition|piece|piece of music|passage|musical passage +allegro con spirito|1 +(noun)|allegro +allele|1 +(noun)|allelomorph|gene|cistron|factor +allelic|1 +(adj)|allelomorphic|gene|cistron|factor +allelomorph|1 +(noun)|allele|gene|cistron|factor +allelomorphic|1 +(adj)|allelic|gene|cistron|factor +allemande|1 +(noun)|allemande sauce|sauce +allemande sauce|1 +(noun)|allemande|sauce +allen|3 +(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne +(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker|filmmaker|film producer|movie maker|actor|histrion|player|thespian|role player +(noun)|Allen|Ethan Allen|soldier +allen ginsberg|1 +(noun)|Ginsberg|Allen Ginsberg|poet +allen screw|1 +(noun)|Allen screw|screw +allen stewart konigsberg|1 +(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker|filmmaker|film producer|movie maker|actor|histrion|player|thespian|role player +allen tate|1 +(noun)|Tate|Allen Tate|John Orley Allen Tate|critic|poet +allen wrench|1 +(noun)|Allen wrench|wrench|spanner +allentown|1 +(noun)|Allentown|city|metropolis|urban center +allergen|1 +(noun)|substance|matter +allergenic|1 +(adj)|substance|matter +allergic|2 +(adj)|hypersensitivity reaction +(adj)|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible +allergic eczema|1 +(noun)|eczema +allergic reaction|1 +(noun)|allergy|hypersensitivity reaction +allergic rhinitis|1 +(noun)|rhinitis|coryza|hypersensitivity reaction +allergist|1 +(noun)|doctor|doc|physician|MD|Dr.|medico +allergology|1 +(noun)|medicine|medical specialty +allergy|1 +(noun)|allergic reaction|hypersensitivity reaction +allergy diet|1 +(noun)|diet +alleviant|1 +(noun)|palliative|alleviator|remedy|curative|cure +alleviate|2 +(verb)|relieve|palliate|assuage|better|improve|amend|ameliorate|meliorate +(verb)|facilitate|ease|help|assist|aid +alleviated|1 +(adj)|eased|relieved|mitigated +alleviation|2 +(noun)|relief|assuagement|comfort +(noun)|easing|easement|relief|decrease|diminution|reduction|step-down +alleviative|1 +(adj)|alleviatory|lenitive|mitigative|mitigatory|palliative|moderating +alleviator|2 +(noun)|therapist|healer +(noun)|palliative|alleviant|remedy|curative|cure +alleviatory|1 +(adj)|alleviative|lenitive|mitigative|mitigatory|palliative|moderating +alley|2 +(noun)|alleyway|back street|street +(noun)|bowling alley|skittle alley|lane +alley cat|1 +(noun)|stray|domestic cat|house cat|Felis domesticus|Felis catus +alleyway|1 +(noun)|alley|back street|street +allgood|1 +(noun)|good-king-henry|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot +allhallows|1 +(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation +allhallows eve|1 +(noun)|Halloween|Hallowe'en|Allhallows Eve|day +allhallowtide|1 +(noun)|Allhallowtide|season +alliaceae|1 +(noun)|Alliaceae|family Alliaceae|liliid monocot family +alliaceous|2 +(adj)|liliid monocot genus +(adj)|odorous +alliaceous plant|1 +(noun)|liliaceous plant +alliance|5 +(noun)|confederation|coalition|fusion +(noun)|bond|connection|connexion|connectedness +(noun)|coalition|alignment|alinement|organization|organisation +(noun)|treaty|pact|accord +(noun)|confederation|group action +alliaria|1 +(noun)|Alliaria|genus Alliaria|dilleniid dicot genus +alliaria officinalis|1 +(noun)|garlic mustard|hedge garlic|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer|cruciferous plant +allice|1 +(noun)|allice shad|allis shad|allis|Alosa alosa|shad +allice shad|1 +(noun)|allis shad|allice|allis|Alosa alosa|shad +allied|3 +(adj)|related +(adj)|confederate|confederative|united +(adj)|aligned +allied command atlantic|1 +(noun)|Allied Command Atlantic|ACLANT|headquarters +allied command europe|1 +(noun)|Allied Command Europe|ACE|headquarters +allies|5 +(noun)|Allies|alliance|coalition|alignment|alinement +(noun)|Allies|alliance|coalition|alignment|alinement +(noun)|alliance|coalition|alignment|alinement +(noun)|ally|state|nation|country|land|commonwealth|res publica|body politic +(noun)|ally|friend|associate +alligator|3 +(noun)|leather +(noun)|gator|crocodilian reptile|crocodilian +(verb)|crack +alligator clip|1 +(noun)|bulldog clip|clip +alligator grass|1 +(noun)|alligator weed|Alternanthera philoxeroides|weed +alligator lizard|1 +(noun)|anguid lizard +alligator mississipiensis|1 +(noun)|American alligator|Alligator mississipiensis|alligator|gator +alligator pear|1 +(noun)|avocado|avocado pear|aguacate|edible fruit +alligator sinensis|1 +(noun)|Chinese alligator|Alligator sinensis|alligator|gator +alligator snapper|1 +(noun)|alligator snapping turtle|Macroclemys temmincki|snapping turtle +alligator snapping turtle|1 +(noun)|alligator snapper|Macroclemys temmincki|snapping turtle +alligator weed|1 +(noun)|alligator grass|Alternanthera philoxeroides|weed +alligator wrench|1 +(noun)|wrench|spanner +alligatored|1 +(adj)|cracked|rough |unsmooth +alligatorfish|1 +(noun)|Aspidophoroides monopterygius|poacher|sea poacher|sea poker +alligatoridae|1 +(noun)|Alligatoridae|family Alligatoridae|reptile family +allionia|1 +(noun)|Allionia|genus Allionia|caryophylloid dicot genus +allionia incarnata|1 +(noun)|trailing four o'clock|trailing windmills|Allionia incarnata|wildflower|wild flower +allioniaceae|1 +(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family +allis|1 +(noun)|allice shad|allis shad|allice|Alosa alosa|shad +allis shad|1 +(noun)|allice shad|allice|allis|Alosa alosa|shad +alliterate|1 +(verb)|rhyme|rime +alliteration|1 +(noun)|initial rhyme|beginning rhyme|head rhyme|rhyme|rime +alliterative|1 +(adj)|rhymed |rhyming|riming +alliterator|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser|writer|author +allium|1 +(noun)|Allium|genus Allium|liliid monocot genus +allium acuminatum|1 +(noun)|Hooker's onion|Allium acuminatum|wild onion +allium ampeloprasum|1 +(noun)|wild leek|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant +allium ascalonicum|1 +(noun)|shallot|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion|onion plant|Allium cepa +allium canadense|1 +(noun)|Canada garlic|meadow leek|rose leek|Allium canadense|alliaceous plant +allium carinatum|1 +(noun)|keeled garlic|Allium carinatum|alliaceous plant +allium cepa|1 +(noun)|onion|onion plant|Allium cepa|alliaceous plant +allium cepa aggregatum|1 +(noun)|shallot|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion|onion plant|Allium cepa +allium cepa viviparum|1 +(noun)|tree onion|Egyptian onion|top onion|Allium cepa viviparum|onion|onion plant|Allium cepa +allium cernuum|1 +(noun)|nodding onion|nodding wild onion|lady's leek|Allium cernuum|wild onion +allium fistulosum|1 +(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion|onion plant|Allium cepa +allium haematochiton|1 +(noun)|red-skinned onion|Allium haematochiton|onion|onion plant|Allium cepa +allium neopolitanum|1 +(noun)|daffodil garlic|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant +allium paradoxum|1 +(noun)|few-flowered leek|Allium paradoxum|alliaceous plant +allium porrum|1 +(noun)|leek|scallion|Allium porrum|alliaceous plant +allium sativum|1 +(noun)|garlic|Allium sativum|alliaceous plant +allium schoenoprasum|1 +(noun)|chives|chive|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant +allium scorodoprasum|1 +(noun)|sand leek|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant +allium sphaerocephalum|1 +(noun)|round-headed leek|Allium sphaerocephalum|alliaceous plant +allium tricoccum|1 +(noun)|ramp|wild leek|Allium tricoccum|alliaceous plant +allium triquetrum|1 +(noun)|three-cornered leek|triquetrous leek|Allium triquetrum|alliaceous plant +allium tuberosum|1 +(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant +allium ursinum|1 +(noun)|wild garlic|wood garlic|Ramsons|Allium ursinum|alliaceous plant +allium vineale|1 +(noun)|crow garlic|false garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion +allmouth|1 +(noun)|goosefish|angler|anglerfish|angler fish|monkfish|lotte|Lophius Americanus|spiny-finned fish|acanthopterygian +alloantibody|1 +(noun)|isoantibody|antibody +allocable|1 +(adj)|allocatable|apportionable|distributive +allocatable|1 +(adj)|allocable|apportionable|distributive +allocate|1 +(verb)|apportion|assign|allot|portion +allocation|3 +(noun)|allotment|share|portion|part|percentage +(noun)|allotment|apportionment|apportioning|parceling|parcelling|assignation|distribution +(noun)|assignment|assigning +allocation unit|1 +(noun)|computer memory unit +allocator|1 +(noun)|distributor|authority +allochronic|1 +(adj)|asynchronous +allochthonous|1 +(adj)|allochthonous +allocution|1 +(noun)|address|speech +allogamous|1 +(adj)|cross-fertilization|cross-fertilisation +allogamy|1 +(noun)|cross-fertilization|cross-fertilisation +allograft|1 +(noun)|homograft|graft|transplant +allograph|2 +(noun)|character|grapheme|graphic symbol +(noun)|signature +allographic|1 +(adj)|character|grapheme|graphic symbol +allomerism|1 +(noun)|variation|fluctuation +allomerous|1 +(adj)|variation|fluctuation +allometric|1 +(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +allometry|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +allomorph|2 +(noun)|compound|chemical compound +(noun)|morpheme +allomorphic|1 +(adj)|morpheme +allopathic|1 +(adj)|allopathic |medical care|medical aid +allopathy|1 +(noun)|medical care|medical aid +allopatric|1 +(adj)|allopatric +allopatry|1 +(noun)|occurrence +allophone|1 +(noun)|phoneme +allophonic|1 +(adj)|phoneme +allopurinol|1 +(noun)|Zyloprim|medicine|medication|medicament|medicinal drug +allosaur|1 +(noun)|allosaurus|theropod|theropod dinosaur|bird-footed dinosaur +allosaurus|1 +(noun)|allosaur|theropod|theropod dinosaur|bird-footed dinosaur +allot|3 +(verb)|assign|portion|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|dole out +(verb)|accord|grant|give +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|dole out|give +allotment|2 +(noun)|allocation|share|portion|part|percentage +(noun)|apportionment|apportioning|allocation|parceling|parcelling|assignation|distribution +allotrope|1 +(noun)|chemical element|element +allotropic|1 +(adj)|allotropical|chemical phenomenon +allotropical|1 +(adj)|allotropic|chemical phenomenon +allotropism|1 +(noun)|allotropy|chemical phenomenon +allotropy|1 +(noun)|allotropism|chemical phenomenon +allotted|1 +(adj)|assigned +allover|1 +(adj)|complete +allow|10 +(verb)|let|permit +(verb)|permit|let|countenance|accept|consent|go for +(verb)|grant|give +(verb)|appropriate|earmark|set aside|reserve|assign|allot|portion +(verb)|leave|allow for|provide|yield|give|afford +(verb)|take into account|calculate|estimate|reckon|count on|figure|forecast +(verb)|admit +(verb)|give up +(verb)|discount +(verb)|permit|tolerate|permit|let|countenance +allow for|1 +(verb)|leave|allow|provide|yield|give|afford +allow in|1 +(verb)|admit|let in|intromit|permit|allow|let|countenance +allowable|3 +(adj)|deductible +(adj)|admissible +(adj)|permitted|permissible +allowably|1 +(adv)|permissibly +allowance|7 +(noun)|share|portion|part|percentage +(noun)|reimbursement +(noun)|adjustment|recompense +(noun)|leeway|margin|tolerance|discrepancy|disagreement|divergence|variance +(noun)|valuation reserve|valuation account|allowance account|reserve account|reserve fund +(noun)|license|permission|permit +(verb)|allow|grant +allowance account|1 +(noun)|valuation reserve|valuation account|allowance|reserve account|reserve fund +allowing of|1 +(adj)|admitting of|permitting of|permissive +alloy|4 +(noun)|metal|mixture +(noun)|admixture|impurity|impureness +(verb)|debase|devalue +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +alloy cast iron|1 +(noun)|alloy iron|cast iron +alloy iron|1 +(noun)|alloy cast iron|cast iron +alloy steel|1 +(noun)|steel +alloyed|2 +(adj)|impure +(adj)|blended +allspice|3 +(noun)|allspice tree|pimento tree|Pimenta dioica|spice tree +(noun)|shrub|bush +(noun)|spice +allspice tree|2 +(noun)|Pimenta officinalis|spice tree +(noun)|allspice|pimento tree|Pimenta dioica|spice tree +allude|1 +(verb)|touch|advert|hint|suggest +allure|2 +(noun)|allurement|temptingness|attraction|attractiveness +(verb)|tempt|invite|bid +allurement|3 +(noun)|temptation|enticement +(noun)|allure|temptingness|attraction|attractiveness +(noun)|solicitation|enticement|temptation +alluring|1 +(adj)|beguiling|enticing|tempting|seductive +allusion|1 +(noun)|mention|reference +allusive|1 +(adj)|indirect +allusiveness|1 +(noun)|indirectness +alluvial|1 +(adj)|sediment|deposit +alluvial cone|1 +(noun)|alluvial fan|geological phenomenon +alluvial deposit|1 +(noun)|alluvial sediment|alluvium|alluvion|sediment|deposit +alluvial fan|1 +(noun)|alluvial cone|geological phenomenon +alluvial sediment|1 +(noun)|alluvial deposit|alluvium|alluvion|sediment|deposit +alluvial soil|1 +(noun)|soil|dirt +alluviation|1 +(noun)|deposit|sedimentation|geological phenomenon +alluvion|3 +(noun)|geological process|geologic process +(noun)|flood|inundation|deluge|geological phenomenon +(noun)|alluvial sediment|alluvial deposit|alluvium|sediment|deposit +alluvium|1 +(noun)|alluvial sediment|alluvial deposit|alluvion|sediment|deposit +ally|3 +(noun)|state|nation|country|land|commonwealth|res publica|body politic +(noun)|friend|associate +(verb)|consort|associate|affiliate|assort +ally with|1 +(verb)|unite|unify +allyl|1 +(noun)|allyl group|allyl radical|group|radical|chemical group +allyl alcohol|1 +(noun)|propenyl alcohol|alcohol +allyl group|1 +(noun)|allyl|allyl radical|group|radical|chemical group +allyl radical|1 +(noun)|allyl|allyl group|group|radical|chemical group +allyl resin|1 +(noun)|synthetic resin +allylic|1 +(adj)|group|radical|chemical group +alma-ata|1 +(noun)|Almaty|Alma-Ata|city|metropolis|urban center +alma mater|1 +(noun)|school +almanac|2 +(noun)|farmer's calendar|annual|yearbook +(noun)|annual|yearbook +almandine|2 +(noun)|spinel ruby|ruby spinel +(noun)|almandite|garnet +almandite|1 +(noun)|almandine|garnet +almaty|1 +(noun)|Almaty|Alma-Ata|city|metropolis|urban center +almighty|2 +(adj)|all-powerful|omnipotent|powerful +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +almond|2 +(noun)|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree +(noun)|edible nut|drupe|stone fruit +almond-eyed|1 +(adj)|eyed +almond-leaves willow|1 +(noun)|peachleaf willow|peach-leaved willow|Salix amygdaloides|willow|willow tree +almond-shaped|1 +(adj)|amygdaliform|amygdaloid|amygdaloidal|rounded +almond cookie|1 +(noun)|almond crescent|cookie|cooky|biscuit +almond crescent|1 +(noun)|almond cookie|cookie|cooky|biscuit +almond extract|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +almond moth|1 +(noun)|fig moth|Cadra cautella|pyralid|pyralid moth +almond oil|1 +(noun)|expressed almond oil|sweet almond oil|oil +almond tree|1 +(noun)|fruit tree +almond willow|1 +(noun)|black Hollander|Salix triandra|Salix amygdalina|osier +almoner|1 +(noun)|medical social worker|social worker|caseworker|welfare worker +almoravid|1 +(noun)|Almoravid|Berber +almost|1 +(adv)|about|just about|most|all but|nearly|near|nigh|virtually|well-nigh +alms|1 +(noun)|alms-giving|almsgiving|charity +alms-giving|2 +(noun)|alms|almsgiving|charity +(noun)| +alms box|1 +(noun)|poor box|mite box|box +alms dish|1 +(noun)|alms tray|tray +alms tray|1 +(noun)|alms dish|tray +almsgiver|1 +(noun)|donor|giver|presenter +almsgiving|1 +(noun)|alms|alms-giving|charity +alnico|1 +(noun)|Alnico|alloy|metal +alnus|1 +(noun)|Alnus|genus Alnus|hamamelid dicot genus +alnus crispa|1 +(noun)|green alder|Alnus veridis crispa|Alnus crispa|alder|alder tree +alnus glutinosa|1 +(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder|alder tree +alnus incana|1 +(noun)|gray alder|Alnus incana|alder|alder tree +alnus maritima|1 +(noun)|seaside alder|Alnus maritima|alder|alder tree +alnus rhombifolia|1 +(noun)|white alder|mountain alder|Alnus rhombifolia|alder|alder tree +alnus rubra|1 +(noun)|red alder|Oregon alder|Alnus rubra|alder|alder tree +alnus rugosa|1 +(noun)|speckled alder|Alnus rugosa|alder|alder tree +alnus serrulata|1 +(noun)|smooth alder|hazel alder|Alnus serrulata|alder|alder tree +alnus veridis|1 +(noun)|green alder|Alnus veridis|alder|alder tree +alnus veridis crispa|1 +(noun)|green alder|Alnus veridis crispa|Alnus crispa|alder|alder tree +alnus vulgaris|1 +(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder|alder tree +alocasia|1 +(noun)|elephant's ear|elephant ear|arum|aroid +alocasia macrorrhiza|1 +(noun)|giant taro|Alocasia macrorrhiza|alocasia|elephant's ear|elephant ear +aloe|1 +(noun)|succulent +aloe family|1 +(noun)|Aloeaceae|family Aloeaceae|liliid monocot family +aloe ferox|1 +(noun)|cape aloe|Aloe ferox|aloe +aloe vera|1 +(noun)|burn plant|Aloe vera|aloe +aloeaceae|1 +(noun)|Aloeaceae|family Aloeaceae|aloe family|liliid monocot family +aloes|2 +(noun)|bitter aloes|purgative|cathartic|physic|aperient +(noun)|aloe|succulent +aloha|1 +(noun)|ciao|acknowledgment|acknowledgement +aloha state|1 +(noun)|Hawaii|Aloha State|HI|American state +alois senefelder|1 +(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer +alone|6 +(adj)|unsocial +(adj)|lone|lonely|solitary|unaccompanied +(adj)|only|exclusive +(adj)|unique|unequaled|unequalled|unparalleled|incomparable |uncomparable +(adv)|entirely|exclusively|solely|only +(adv)|solo|unaccompanied +aloneness|1 +(noun)|loneliness|lonesomeness|solitude|disposition|temperament +along|1 +(adv)|on +alongside|1 +(adv)|aboard +alonso|1 +(noun)|Alonso|Alicia Alonso|dancer|professional dancer|choreographer +aloof|1 +(adj)|distant|upstage|reserved +aloofness|2 +(noun)|distance|indifference +(noun)|remoteness|standoffishness|withdrawnness|unsociability|unsociableness +alopecia|1 +(noun)|baldness|phalacrosis +alopecia areata|1 +(noun)|alopecia +alopecic|1 +(adj)|baldness|phalacrosis +alopecurus|1 +(noun)|Alopecurus|genus Alopecurus|monocot genus|liliopsid genus +alopecurus pratensis|1 +(noun)|meadow foxtail|Alopecurus pratensis|foxtail|foxtail grass +alopex|1 +(noun)|Alopex|genus Alopex|mammal genus +alopex lagopus|1 +(noun)|arctic fox|white fox|Alopex lagopus|fox +alopiidae|1 +(noun)|Alopiidae|family Alopiidae|fish family +alopius|1 +(noun)|Alopius|genus Alopius|fish genus +alopius vulpinus|1 +(noun)|thresher|thrasher|thresher shark|fox shark|Alopius vulpinus|shark +alosa|1 +(noun)|Alosa|genus Alosa|fish genus +alosa alosa|1 +(noun)|allice shad|allis shad|allice|allis|Alosa alosa|shad +alosa chrysocloris|1 +(noun)|river shad|Alosa chrysocloris|shad +alosa pseudoharengus|1 +(noun)|alewife|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish|clupeid +alosa sapidissima|1 +(noun)|common American shad|Alosa sapidissima|shad +alost|1 +(noun)|Alost|Aalost|town +alouatta|1 +(noun)|Alouatta|genus Alouatta|mammal genus +aloud|2 +(adv)|out loud +(adv)|loudly|loud +aloys senefelder|1 +(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer +alp|1 +(noun)|mountain|mount +alpaca|3 +(noun)|wool +(noun)|fabric|cloth|material|textile +(noun)|Lama pacos|llama +alpena|1 +(noun)|Alpena|town|port +alpenstock|1 +(noun)|staff +alpestrine|1 +(adj)|subalpine|upland +alpha|4 +(adj)|important |of import +(adj)|exploratory |explorative +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|start +alpha-adrenergic blocker|1 +(noun)|alpha blocker|alpha-blocker|alpha-adrenergic blocking agent|blocker|blocking agent +alpha-adrenergic blocking agent|1 +(noun)|alpha blocker|alpha-blocker|alpha-adrenergic blocker|blocker|blocking agent +alpha-adrenergic receptor|1 +(noun)|alpha receptor|alpha-adrenoceptor|receptor +alpha-adrenoceptor|1 +(noun)|alpha receptor|alpha-adrenergic receptor|receptor +alpha-beta brass|1 +(noun)|Muntz metal|yellow metal|brass +alpha-blocker|2 +(noun)|alpha blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent|blocker|blocking agent +(noun)| +alpha-interferon|1 +(noun)|interferon +alpha-linolenic acid|1 +(noun)|omega-3 fatty acid|omega-3 +alpha-lipoprotein|1 +(noun)|high-density lipoprotein|HDL|lipoprotein +alpha-naphthol|1 +(noun)|naphthol +alpha-naphthol test|1 +(noun)|Molisch's test|Molisch test|Molisch reaction|indicator +alpha-tocopheral|1 +(noun)|vitamin E|tocopherol|E +alpha and omega|2 +(noun)|eternity|infinity +(noun)|crux|crux of the matter +alpha blocker|2 +(noun)|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent|blocker|blocking agent +(noun)| +alpha brass|1 +(noun)|brass +alpha bronze|1 +(noun)|bronze +alpha centauri|1 +(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star|binary|double star +alpha crucis|1 +(noun)|Alpha Crucis|star +alpha decay|1 +(noun)|decay|radioactive decay|disintegration +alpha fetoprotein|1 +(noun)|alpha foetoprotein|AFP|fetoprotein|foetoprotein +alpha foetoprotein|1 +(noun)|alpha fetoprotein|AFP|fetoprotein|foetoprotein +alpha geminorum|1 +(noun)|Castor|Alpha Geminorum|multiple star +alpha globulin|1 +(noun)|globulin +alpha iron|1 +(noun)|iron|Fe|atomic number 26 +alpha methyl dopa|1 +(noun)|methyldopa|Aldomet|antihypertensive|antihypertensive drug +alpha orionis|1 +(noun)|Betelgeuse|Alpha Orionis|supergiant +alpha particle|1 +(noun)|particle +alpha privative|1 +(noun)|prefix +alpha radiation|1 +(noun)|alpha ray|corpuscular radiation|particulate radiation|ionizing radiation +alpha ray|1 +(noun)|alpha radiation|corpuscular radiation|particulate radiation|ionizing radiation +alpha receptor|1 +(noun)|alpha-adrenergic receptor|alpha-adrenoceptor|receptor +alpha rhythm|1 +(noun)|alpha wave|brainwave|brain wave|cortical potential +alpha software|1 +(noun)|software|software system|software package|package +alpha test|1 +(noun)|trial|trial run|test|tryout +alpha wave|1 +(noun)|alpha rhythm|brainwave|brain wave|cortical potential +alphabet|2 +(noun)|character set|script +(noun)|rudiment|first rudiment|first principle|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +alphabet soup|2 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|soup +alphabetic|2 +(adj)|alphabetic |alphabetical|character set|script +(adj)|alphabetic |alphabetical|abecedarian|alphabetized|alphabetised +alphabetic character|1 +(noun)|letter|letter of the alphabet|character|grapheme|graphic symbol +alphabetic script|1 +(noun)|alphabetic writing|orthography|writing system +alphabetic writing|1 +(noun)|alphabetic script|orthography|writing system +alphabetical|2 +(adj)|alphabetic |character set|script +(adj)|alphabetic |abecedarian|alphabetized|alphabetised +alphabetisation|1 +(noun)|alphabetization|order|ordering +alphabetise|1 +(verb)|alphabetize|arrange|set up +alphabetised|1 +(adj)|alphabetized|alphabetic |alphabetical +alphabetiser|1 +(noun)|alphabetizer|literate|literate person +alphabetization|1 +(noun)|alphabetisation|order|ordering +alphabetize|2 +(verb)|alphabetise|arrange|set up +(verb)|supply|provide|render|furnish +alphabetized|1 +(adj)|alphabetised|alphabetic |alphabetical +alphabetizer|1 +(noun)|alphabetiser|literate|literate person +alphameric|1 +(adj)|alphanumeric|alphanumerical|alphamerical|character set +alphamerical|1 +(adj)|alphanumeric|alphanumerical|alphameric|character set +alphanumeric|1 +(adj)|alphanumerical|alphameric|alphamerical|character set +alphanumeric display|1 +(noun)|digital display|display +alphanumerical|1 +(adj)|alphanumeric|alphameric|alphamerical|character set +alphanumerics|1 +(noun)|character set +alphavirus|1 +(noun)|animal virus +alphonse bertillon|1 +(noun)|Bertillon|Alphonse Bertillon|criminologist +alphonse capone|1 +(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster|mobster +alpine|3 +(adj)|mountain|mount +(adj)|Alpine|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(adj)|upland +alpine anemone|1 +(noun)|Alpine anemone|mountain anemone|Anemone tetonensis|anemone|windflower +alpine ash|1 +(noun)|mountain oak|Eucalyptus delegatensis|eucalyptus|eucalypt|eucalyptus tree +alpine azalea|1 +(noun)|mountain azalea|Loiseleuria procumbens|shrub|bush +alpine bearberry|1 +(noun)|black bearberry|Arctostaphylos alpina|bearberry +alpine besseya|1 +(noun)|Alpine besseya|Besseya alpina|kitten-tails +alpine celery pine|1 +(noun)|Alpine celery pine|Phyllocladus alpinus|celery pine +alpine clover|1 +(noun)|Trifolium alpinum|clover|trefoil +alpine clubmoss|1 +(noun)|Lycopodium alpinum|club moss|club-moss|lycopod +alpine coltsfoot|1 +(noun)|Homogyne alpina|Tussilago alpina|herb|herbaceous plant +alpine enchanter's nightshade|1 +(noun)|Alpine enchanter's nightshade|Circaea alpina|enchanter's nightshade +alpine fir|1 +(noun)|Alpine fir|subalpine fir|Abies lasiocarpa|silver fir +alpine glacier|1 +(noun)|Alpine glacier|Alpine type of glacier|glacier +alpine gold|1 +(noun)|alpine hulsea|Hulsea algida|wildflower|wild flower +alpine golden chain|1 +(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub +alpine goldenrod|1 +(noun)|Solidago multiradiata|goldenrod +alpine hulsea|1 +(noun)|alpine gold|Hulsea algida|wildflower|wild flower +alpine lady fern|1 +(noun)|Alpine lady fern|Athyrium distentifolium|lady fern|Athyrium filix-femina +alpine lift|1 +(noun)|T-bar lift|T-bar|Alpine lift|surface lift +alpine milk vetch|1 +(noun)|Astragalus alpinus|milk vetch|milk-vetch +alpine mouse-ear|1 +(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +alpine salamander|1 +(noun)|Salamandra atra|salamander +alpine scurvy|1 +(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +alpine sunflower|1 +(noun)|old man of the mountain|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower|wild flower +alpine totara|1 +(noun)|Podocarpus nivalis|shrub|bush +alpine type of glacier|1 +(noun)|Alpine glacier|Alpine type of glacier|glacier +alpine woodsia|1 +(noun)|Alpine woodsia|northern woodsia|flower-cup fern|Woodsia alpina|woodsia +alpinia|1 +(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus +alpinia galanga|1 +(noun)|galangal|Alpinia galanga|ginger +alpinia officinalis|1 +(noun)|lesser galangal|Alpinia officinarum|Alpinia officinalis|ginger +alpinia officinarum|1 +(noun)|lesser galangal|Alpinia officinarum|Alpinia officinalis|ginger +alpinia purpurata|1 +(noun)|red ginger|Alpinia purpurata|ginger +alpinia speciosa|1 +(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +alpinia zerumbet|1 +(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +alpinism|1 +(noun)|Alpinism|mountain climbing|mountaineering +alpinist|1 +(noun)|mountaineer|mountain climber +alprazolam|1 +(noun)|Xanax|benzodiazepine +alps|2 +(noun)|Alps|the Alps|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|alp|mountain|mount +alright|4 +(adj)|satisfactory +(adv)|all right|without doubt +(adv)|very well|fine|all right|OK +(adv)|okay|O.K.|all right +als|3 +(noun)|amyotrophic lateral sclerosis|ALS|Lou Gehrig's disease|nervous disorder|neurological disorder|neurological disease|sclerosis|induration +(noun)|aluminum|aluminium|Al|atomic number 13|metallic element|metal +(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state +alsace|1 +(noun)|Alsace|Alsatia|Elsass|French region +alsatia|1 +(noun)|Alsace|Alsatia|Elsass|French region +alsatian|3 +(adj)|Alsatian|French region +(noun)|Alsatian|inhabitant|dweller|denizen|indweller +(noun)|German shepherd|German shepherd dog|German police dog|shepherd dog|sheepdog|sheep dog +also|1 +(adv)|besides|too|likewise|as well +also-ran|1 +(noun)|loser|contestant +also known as|1 +(adv)|alias|a.k.a. +alsobia|1 +(noun)|Alsobia|genus Alsobia|asterid dicot genus +alsobia dianthiflora|1 +(noun)|lace-flower vine|Alsobia dianthiflora|Episcia dianthiflora|flower +alsophila|1 +(noun)|Alsophila|genus Alsophila|arthropod genus +alsophila pometaria|1 +(noun)|Alsophila pometaria|geometrid|geometrid moth +alstonia|1 +(noun)|Alstonia|genus Alstonia|dicot genus|magnoliopsid genus +alstonia scholaris|1 +(noun)|dita|dita bark|devil tree|Alstonia scholaris|tree +alstroemeria|1 +(noun)|liliaceous plant +alstroemeria pelegrina|1 +(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria +alstroemeriaceae|1 +(noun)|Alstroemeriaceae|family Alstroemeriaceae|liliid monocot family +alt|1 +(noun)|elevation|EL|altitude|ALT|angular position +altaic|3 +(adj)|Altaic|Ural-Altaic +(noun)|Altaic|Asian|Asiatic +(noun)|Altaic|Altaic language|Ural-Altaic +altaic language|1 +(noun)|Altaic|Altaic language|Ural-Altaic +altair|1 +(noun)|Altair|binary star|binary|double star +altar|2 +(noun)|communion table|Lord's table|table +(noun)|structure|construction +altar boy|1 +(noun)|male child|boy|acolyte +altar wine|1 +(noun)|sacramental wine|wine|vino +altarpiece|1 +(noun)|reredos|screen +altazimuth|1 +(noun)|measuring instrument|measuring system|measuring device +alter|5 +(verb)|change|modify +(verb)|change|vary +(verb)|change|modify +(verb)|interpolate|falsify|edit|redact +(verb)|neuter|spay|castrate|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +alter ego|1 +(noun)|friend +alterability|1 +(noun)|mutability|mutableness +alterable|2 +(adj)|alterable +(adj)|commutable +alteration|3 +(noun)|change|modification|happening|occurrence|natural event +(noun)|modification|adjustment|change +(noun)|revision|transformation|translation +alterative|1 +(adj)|curative|healing|remedial|sanative|therapeutic|healthful +altercate|1 +(verb)|quarrel|dispute|scrap|argufy|argue|contend|debate|fence +altercation|1 +(noun)|affray|fracas|quarrel|wrangle|row|words|run-in|dustup +altered|3 +(adj)|altered |adjusted|changed|emended|edited|paraphrastic|revised +(adj)|neutered|castrated |unsexed +(adj)|adapted|modified +altering|1 +(noun)|neutering|fixing|sterilization|sterilisation +alternanthera|1 +(noun)|Alternanthera|genus Alternanthera|caryophylloid dicot genus +alternanthera philoxeroides|1 +(noun)|alligator weed|alligator grass|Alternanthera philoxeroides|weed +alternate|10 +(adj)|cyclic |cyclical +(adj)|alternative|secondary +(adj)|alternating|cyclic |cyclical +(adj)|alternate +(noun)|surrogate|replacement|stand-in|substitute|relief|reliever|backup|backup man|fill-in +(verb)|jump|change|alter|vary +(verb)|exchange +(verb)|understudy|memorize|memorise|con|learn +(verb)|interchange|tack|switch|flip|flip-flop|change by reversal|turn|reverse +(verb)|take turns|act|move +alternating|2 +(adj)|alternating +(adj)|alternate|cyclic |cyclical +alternating current|1 +(noun)|AC|electricity|electrical energy +alternation|2 +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +(noun)|succession|sequence +alternation of generations|1 +(noun)|heterogenesis|xenogenesis|organic phenomenon +alternative|4 +(adj)|alternate|secondary +(adj)|mutually exclusive|disjunctive +(adj)|unconventional +(noun)|option|choice|decision making|deciding +alternative birth|1 +(noun)|alternative birthing|childbirth|childbearing|accouchement|vaginal birth +alternative birthing|1 +(noun)|alternative birth|childbirth|childbearing|accouchement|vaginal birth +alternative energy|1 +(noun)|energy +alternative medicine|1 +(noun)|medicine|practice of medicine +alternative pleading|1 +(noun)|pleading in the alternative|pleading +alternatively|1 +(adv)|as an alternative|instead|or else +alternator|1 +(noun)|generator +althaea|1 +(noun)|althea|hollyhock|mallow +althea|1 +(noun)|althaea|hollyhock|mallow +althea gibson|1 +(noun)|Gibson|Althea Gibson|tennis player +althea officinalis|1 +(noun)|marsh mallow|white mallow|Althea officinalis|althea|althaea|hollyhock +althea rosea|1 +(noun)|rose mallow|Alcea rosea|Althea rosea|hollyhock +although|1 +(adv)|though|tho' +altimeter|1 +(noun)|measuring instrument|measuring system|measuring device +altissimo|1 +(adj)|high |high-pitched +altitude|3 +(noun)|height|elevation +(noun)|distance|length +(noun)|elevation|EL|ALT|angular position +altitude sickness|1 +(noun)|hypoxia +altitudinal|1 +(adj)|elevation +altitudinous|1 +(adj)|high +alto|7 +(adj)|contralto|low |low-pitched +(adj)|countertenor|high |high-pitched +(adj)|high |high-pitched +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|contralto|singing voice +(noun)|countertenor|singing voice +(noun)|low pitch|low frequency +alto clef|1 +(noun)|viola clef|clef +alto relievo|1 +(noun)|alto rilievo|high relief|relief|relievo|rilievo|embossment|sculptural relief +alto rilievo|1 +(noun)|alto relievo|high relief|relief|relievo|rilievo|embossment|sculptural relief +alto saxophonist|1 +(noun)|altoist|saxophonist|saxist +altocumulus|1 +(noun)|altocumulus cloud|cumulus|cumulus cloud +altocumulus cloud|1 +(noun)|altocumulus|cumulus|cumulus cloud +altogether|4 +(noun)|raw|birthday suit|nakedness|nudity|nudeness +(adv)|wholly|entirely|completely|totally|all|whole +(adv)|all told|in all +(adv)|all in all|on the whole|tout ensemble +altoist|1 +(noun)|alto saxophonist|saxophonist|saxist +alton glenn miller|1 +(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader +altoona|1 +(noun)|Altoona|town +altostratus|1 +(noun)|altostratus cloud|stratus|stratus cloud +altostratus cloud|1 +(noun)|altostratus|stratus|stratus cloud +altricial|1 +(adj)|altricial +altruism|1 +(noun)|selflessness|unselfishness +altruist|1 +(noun)|philanthropist|donor|giver|presenter +altruistic|1 +(adj)|altruistic |selfless|unselfish +altruistically|1 +(adv)|selflessly +alula|2 +(noun)|calypter|squama +(noun)|bastard wing|spurious wing|feather|plume|plumage +alular|1 +(adj)|feather|plume|plumage +alum|4 +(noun)|ammonia alum|ammonium alum|aluminum|aluminium|Al|atomic number 13|double salt +(noun)|potassium alum|potash alum|aluminum|aluminium|Al|atomic number 13|double salt +(noun)|alumnus|alumna|graduate|grad|scholar|scholarly person|student +(noun)|astringent|astringent drug|styptic +alumbloom|1 +(noun)|alumroot|herb|herbaceous plant +alumina|1 +(noun)|aluminum oxide|aluminium oxide|corundom|corundum +aluminate|1 +(noun)|compound|chemical compound +aluminiferous|1 +(adj)|aluminous|metallic +aluminise|1 +(verb)|aluminize|cover +aluminium|1 +(noun)|aluminum|Al|atomic number 13|metallic element|metal +aluminium bronze|1 +(noun)|aluminum bronze|copper-base alloy +aluminium chloride|1 +(noun)|aluminum chloride|chloride +aluminium foil|1 +(noun)|aluminum foil|tin foil|foil +aluminium hydroxide|1 +(noun)|aluminum hydroxide|hydrated aluminum oxide|hydrated aluminium oxide|hydroxide|hydrated oxide +aluminium oxide|1 +(noun)|alumina|aluminum oxide|corundom|corundum +aluminize|1 +(verb)|aluminise|cover +aluminous|2 +(adj)|metallic element|metal +(adj)|aluminiferous|metallic +aluminum|1 +(noun)|aluminium|Al|atomic number 13|metallic element|metal +aluminum bronze|1 +(noun)|aluminium bronze|copper-base alloy +aluminum business|1 +(noun)|aluminum industry|industry +aluminum chloride|1 +(noun)|aluminium chloride|chloride +aluminum foil|1 +(noun)|aluminium foil|tin foil|foil +aluminum hydroxide|1 +(noun)|aluminium hydroxide|hydrated aluminum oxide|hydrated aluminium oxide|hydroxide|hydrated oxide +aluminum industry|1 +(noun)|aluminum business|industry +aluminum oxide|1 +(noun)|alumina|aluminium oxide|corundom|corundum +alumna|1 +(noun)|alumnus|alum|graduate|grad|scholar|scholarly person|student +alumnus|1 +(noun)|alumna|alum|graduate|grad|scholar|scholarly person|student +alumroot|1 +(noun)|alumbloom|herb|herbaceous plant +alundum|1 +(noun)|alumina|aluminum oxide|aluminium oxide +alupent|1 +(noun)|metaproterenol|Alupent|bronchodilator +alvar aalto|1 +(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect|designer +alveolar|3 +(adj)|sac +(adj)|process|outgrowth|appendage +(noun)|alveolar consonant|dental consonant|consonant +alveolar arch|1 +(noun)|process|outgrowth|appendage +alveolar artery|1 +(noun)|arteria alveolaris|artery|arteria|arterial blood vessel +alveolar bed|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +alveolar consonant|1 +(noun)|dental consonant|alveolar|consonant +alveolar ectasia|1 +(noun)|ectasia|ectasis +alveolar point|1 +(noun)|prosthion|prostheon|craniometric point +alveolar process|1 +(noun)|alveolar ridge|gum ridge|process|outgrowth|appendage +alveolar resorption|1 +(noun)|periodontal disease|periodontitis +alveolar rhabdomyosarcoma|1 +(noun)|alveolar rhabdosarcoma|rhabdomyosarcoma|rhabdosarcoma +alveolar rhabdosarcoma|1 +(noun)|alveolar rhabdomyosarcoma|rhabdomyosarcoma|rhabdosarcoma +alveolar ridge|1 +(noun)|gum ridge|alveolar process|process|outgrowth|appendage +alveolate|1 +(adj)|faveolate|cavitied|honeycombed|pitted|cellular +alveolitis|2 +(noun)|dry socket|inflammation|redness|rubor +(noun)|inflammation|redness|rubor +alveolus|2 +(noun)|air sac|air cell|sac +(noun)|tooth socket|socket +alvin ailey|1 +(noun)|Ailey|Alvin Ailey|choreographer +alvine|1 +(adj)|internal organ|viscus +always|2 +(adv)|ever|e'er +(adv)|forever +alyssum|2 +(noun)|madwort|crucifer|cruciferous plant +(noun)|Alyssum|genus Alyssum|dilleniid dicot genus +alytes|1 +(noun)|Alytes|genus Alytes|amphibian genus +alytes cisternasi|1 +(noun)|midwife toad|Alytes cisternasi|frog|toad|toad frog|anuran|batrachian|salientian +alytes obstetricans|1 +(noun)|obstetrical toad|midwife toad|Alytes obstetricans|frog|toad|toad frog|anuran|batrachian|salientian +alzheimer's|1 +(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia +alzheimer's disease|1 +(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia +alzheimers|1 +(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia +am|3 +(noun)|americium|Am|atomic number 95|metallic element|metal +(noun)|Master of Arts|MA|Artium Magister|AM|master's degree +(noun)|amplitude modulation|AM|modulation +amabilis fir|1 +(noun)|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir +amadavat|1 +(noun)|avadavat|weaver|weaverbird|weaver finch +amaethon|1 +(noun)|Amaethon|Celtic deity +amah|2 +(noun)|wet nurse|wet-nurse|wetnurse|nanny|nursemaid|nurse +(noun)|maid|maidservant|housemaid|domestic|domestic help|house servant +amain|1 +(adv)|with full force +amalgam|2 +(noun)|dental amalgam|alloy|metal +(noun)|combination +amalgamate|2 +(adj)|amalgamated|coalesced|consolidated|fused|united +(verb)|mix|mingle|commix|unify|change|alter|modify +amalgamated|2 +(adj)|amalgamate|coalesced|consolidated|fused|united +(adj)|intermingled|mixed|integrated|blended +amalgamation|1 +(noun)|merger|uniting|consolidation|integration +amalgamative|1 +(adj)|consolidation|integration +amalgamator|1 +(noun)|businessman|man of affairs +amandine aurore lucie dupin|1 +(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer|author +amanita|1 +(noun)|Amanita|genus Amanita|fungus genus +amanita caesarea|1 +(noun)|royal agaric|Caesar's agaric|Amanita caesarea|agaric +amanita mappa|1 +(noun)|false deathcap|Amanita mappa|agaric +amanita muscaria|1 +(noun)|fly agaric|Amanita muscaria|agaric +amanita phalloides|1 +(noun)|death cap|death cup|death angel|destroying angel|Amanita phalloides|agaric +amanita rubescens|1 +(noun)|blushing mushroom|blusher|Amanita rubescens|agaric +amanita verna|1 +(noun)|destroying angel|Amanita verna|agaric +amanuensis|1 +(noun)|stenographer|shorthand typist|secretary|secretarial assistant +amaranth|2 +(noun)|grain|caryopsis +(noun)|herb|herbaceous plant +amaranth family|1 +(noun)|Amaranthaceae|family Amaranthaceae|caryophylloid dicot family +amaranthaceae|1 +(noun)|Amaranthaceae|family Amaranthaceae|amaranth family|caryophylloid dicot family +amaranthine|2 +(adj)|herb|herbaceous plant +(adj)|unfading|immortal +amaranthus|1 +(noun)|Amaranthus|genus Amaranthus|caryophylloid dicot genus +amaranthus albus|1 +(noun)|tumbleweed|Amaranthus albus|Amaranthus graecizans|amaranth +amaranthus caudatus|1 +(noun)|love-lies-bleeding|velvet flower|tassel flower|Amaranthus caudatus|amaranth +amaranthus cruentus|1 +(noun)|prince's-feather|gentleman's-cane|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +amaranthus graecizans|1 +(noun)|tumbleweed|Amaranthus albus|Amaranthus graecizans|amaranth +amaranthus hybridus erythrostachys|1 +(noun)|prince's-feather|gentleman's-cane|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +amaranthus hybridus hypochondriacus|1 +(noun)|prince's-feather|gentleman's-cane|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +amaranthus hypochondriacus|1 +(noun)|pigweed|Amaranthus hypochondriacus|amaranth +amaranthus spinosus|1 +(noun)|thorny amaranth|Amaranthus spinosus|herb|herbaceous plant +amarelle|2 +(noun)|Prunus cerasus caproniana|sour cherry|sour cherry tree|Prunus cerasus +(noun)|sour cherry +amarillo|1 +(noun)|Amarillo|city|metropolis|urban center +amaryllidaceae|1 +(noun)|Amaryllidaceae|family Amaryllidaceae|amaryllis family|liliid monocot family +amaryllis|1 +(noun)|bulbous plant +amaryllis belladonna|1 +(noun)|belladonna lily|naked lady|Amaryllis belladonna|amaryllis +amaryllis family|1 +(noun)|Amaryllidaceae|family Amaryllidaceae|liliid monocot family +amass|2 +(verb)|accumulate|cumulate|conglomerate|pile up|gather|increase +(verb)|roll up|collect|accumulate|pile up|compile|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +amassed|1 +(adj)|accumulated|assembled|collected|congregate|massed|concentrated +amastia|1 +(noun)|abnormality|abnormalcy|abnormal condition +amaterasu|1 +(noun)|Amaterasu|Amaterasu Omikami|Japanese deity +amaterasu omikami|1 +(noun)|Amaterasu|Amaterasu Omikami|Japanese deity +amateur|4 +(adj)|recreational|unpaid|nonprofessional +(adj)|amateurish|inexpert|unskilled|unprofessional +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|athlete|jock +amateurish|1 +(adj)|amateur|inexpert|unskilled|unprofessional +amateurishly|1 +(adv)|like an amateur +amateurishness|1 +(noun)|unskillfulness +amateurism|1 +(noun)|conviction|strong belief|article of faith +amati|2 +(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker +(noun)|Amati|violin|fiddle +amative|1 +(adj)|amorous|loving +amativeness|1 +(noun)|amorousness|eroticism|erotism|sexiness|sexual desire|concupiscence|physical attraction +amatory|1 +(adj)|amorous|romantic|loving +amatungulu|1 +(noun)|natal plum|Carissa macrocarpa|Carissa grandiflora|carissa +amauropelta|1 +(noun)|Amauropelta|genus Amauropelta|fern genus +amaurosis|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +amaurotic|1 +(adj)|visual impairment|visual defect|vision defect|visual disorder +amaze|2 +(verb)|astonish|astound|surprise +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +amazed|1 +(adj)|astonied|astonished|astounded|stunned|surprised +amazement|1 +(noun)|astonishment|feeling +amazing|2 +(adj)|astonishing|surprising +(adj)|awe-inspiring|awesome|awful|awing|impressive +amazingly|1 +(adv)|surprisingly|astonishingly +amazon|4 +(noun)|virago|woman|adult female +(noun)|Amazon|mythical being +(noun)|Amazon|Amazon River|river +(noun)|parrot +amazon ant|1 +(noun)|Amazon ant|Polyergus rufescens|slave-making ant|slave-maker +amazon river|1 +(noun)|Amazon|Amazon River|river +amazona|1 +(noun)|Amazona|genus Amazona|bird genus +ambage|1 +(noun)|circumlocution|periphrasis|verboseness|verbosity +ambages|2 +(noun)|way|path|way of life +(noun)|circumlocution|periphrasis|ambage|verboseness|verbosity +ambagious|1 +(adj)|circumlocutious|circumlocutory|periphrastic|indirect +ambassador|2 +(noun)|embassador|diplomat|diplomatist +(noun)|spokesperson|interpreter|representative|voice +ambassadorial|1 +(adj)|diplomat|diplomatist +ambassadorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +ambassadress|1 +(noun)|ambassador|embassador +amber|3 +(adj)|brownish-yellow|yellow-brown|chromatic +(noun)|gold|yellow|yellowness +(noun)|natural resin +amber lily|1 +(noun)|Anthericum torreyi|liliaceous plant +amberbell|1 +(noun)|yellow adder's tongue|trout lily|Erythronium americanum|dogtooth violet|dogtooth|dog's-tooth violet +amberboa|1 +(noun)|Amberboa|genus Amberboa|asterid dicot genus +amberboa moschata|1 +(noun)|sweet sultan|Amberboa moschata|Centaurea moschata|flower +amberfish|1 +(noun)|amberjack|jack +ambergris|1 +(noun)|animal product +amberjack|1 +(noun)|amberfish|jack +ambiance|2 +(noun)|atmosphere|ambience|condition|status +(noun)|ambience|environment|environs|surroundings|surround +ambidexterity|1 +(noun)|ambidextrousness|handedness|laterality +ambidextrous|2 +(adj)|ambidextrous |two-handed|equipoised +(adj)|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest |dishonorable +ambidextrousness|1 +(noun)|ambidexterity|handedness|laterality +ambience|2 +(noun)|atmosphere|ambiance|condition|status +(noun)|ambiance|environment|environs|surroundings|surround +ambient|1 +(adj)|close +ambiguity|2 +(noun)|saying|expression|locution +(noun)|equivocalness|unclearness +ambiguous|3 +(adj)|equivocal |ambivalent|double|forked|evasive|indeterminate +(adj)|ambiguous |double-barreled|double-barrelled|double-edged|enigmatic|oracular|left-handed|multivalent|multi-valued|polysemous|polysemantic|uncertain|equivocal|unclear +(adj)|unstructured +ambiguously|1 +(adv)|equivocally +ambit|1 +(noun)|scope|range|reach|orbit|compass|extent +ambition|3 +(noun)|aspiration|dream|desire +(noun)|ambitiousness|drive +(verb)|desire|want +ambitionless|1 +(adj)|unambitious |shiftless|unenterprising|nonenterprising +ambitious|2 +(adj)|ambitious |aggressive|enterprising|pushful|pushing|pushy|aspirant|aspiring|compulsive|determined|driven|manque|would-be|overambitious|enterprising +(adj)|challenging|difficult |hard +ambitiously|1 +(adv)|determinedly|with ambition +ambitiousness|1 +(noun)|ambition|drive +ambivalence|1 +(noun)|ambivalency|feeling +ambivalency|1 +(noun)|ambivalence|feeling +ambivalent|2 +(adj)|equivocal |ambiguous +(adj)|uncertain |incertain +ambiversion|1 +(noun)|sociability|sociableness +ambiversive|1 +(adj)|ambiversive +amble|2 +(noun)|promenade|ramble|saunter|stroll|perambulation|walk +(verb)|mosey|walk +ambler|1 +(noun)|saunterer|stroller|pedestrian|walker|footer +ambloplites|1 +(noun)|Ambloplites|genus Ambloplites|fish genus +ambloplites rupestris|1 +(noun)|rock bass|rock sunfish|Ambloplites rupestris|sunfish|centrarchid +amblygonite|1 +(noun)|mineral +amblyopia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +amblyopic|1 +(adj)|visual impairment|visual defect|vision defect|visual disorder +amblyrhynchus|1 +(noun)|Amblyrhynchus|genus Amblyrhynchus|reptile genus +amblyrhynchus cristatus|1 +(noun)|marine iguana|Amblyrhynchus cristatus|iguanid|iguanid lizard +ambo|1 +(noun)|dais|podium|pulpit|rostrum|stump|soapbox|platform +amboina pine|1 +(noun)|amboyna pine|Agathis dammara|Agathis alba|kauri pine|dammar pine +amboyna|2 +(noun)|Andaman redwood|rosewood +(noun)|padauk|padouk|Pterocarpus indicus|tree +amboyna pine|1 +(noun)|amboina pine|Agathis dammara|Agathis alba|kauri pine|dammar pine +ambrogio damiano achille ratti|1 +(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +ambrose|1 +(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop|theologian|theologist|theologizer|theologiser|composer|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +ambrose bierce|1 +(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer|author +ambrose everett burnside|1 +(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general|full general +ambrose gwinett bierce|1 +(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer|author +ambrosia|4 +(noun)|beebread|composition +(noun)|ragweed|bitterweed|weed +(noun)|dessert|sweet|afters +(noun)|nectar|dainty|delicacy|goody|kickshaw|treat +ambrosia artemisiifolia|1 +(noun)|common ragweed|Ambrosia artemisiifolia|ragweed|ambrosia|bitterweed +ambrosia psilostachya|1 +(noun)|western ragweed|perennial ragweed|Ambrosia psilostachya|ragweed|ambrosia|bitterweed +ambrosia trifida|1 +(noun)|great ragweed|Ambrosia trifida|ragweed|ambrosia|bitterweed +ambrosiaceae|1 +(noun)|Ambrosiaceae|family Ambrosiaceae|asterid dicot family +ambrosial|2 +(adj)|ambrosian|nectarous|tasteful +(adj)|ambrosian|heavenly +ambrosian|3 +(adj)|Ambrosian|bishop|theologian|theologist|theologizer|theologiser|composer|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +(adj)|ambrosial|nectarous|tasteful +(adj)|ambrosial|heavenly +ambulacral|1 +(adj)|body part +ambulacrum|1 +(noun)|body part +ambulance|1 +(noun)|car|auto|automobile|machine|motorcar +ambulance chaser|1 +(noun)|lawyer|attorney +ambulant|1 +(adj)|ambulatory|mobile +ambulate|1 +(verb)|walk +ambulation|1 +(noun)|walk|walking +ambulatory|1 +(adj)|ambulant|mobile +ambuscade|2 +(noun)|ambush|lying in wait|trap|surprise attack|coup de main +(verb)|ambush|scupper|bushwhack|waylay|lurk|lie in wait|wait +ambush|3 +(noun)|ambuscade|lying in wait|trap|surprise attack|coup de main +(verb)|scupper|bushwhack|waylay|lurk|ambuscade|lie in wait|wait +(verb)|still-hunt|hunt|run|hunt down|track down +ambusher|1 +(noun)|attacker|aggressor|assailant|assaulter +ambystoma|1 +(noun)|Ambystoma|genus Ambystoma|amphibian genus +ambystoma maculatum|1 +(noun)|spotted salamander|Ambystoma maculatum|ambystomid|ambystomid salamander +ambystoma mexicanum|1 +(noun)|axolotl|mud puppy|Ambystoma mexicanum|ambystomid|ambystomid salamander +ambystoma talpoideum|1 +(noun)|mole salamander|Ambystoma talpoideum|ambystomid|ambystomid salamander +ambystoma tigrinum|1 +(noun)|tiger salamander|Ambystoma tigrinum|ambystomid|ambystomid salamander +ambystomatidae|1 +(noun)|Ambystomatidae|family Ambystomatidae|amphibian family +ambystomid|1 +(noun)|ambystomid salamander|salamander +ambystomid salamander|1 +(noun)|ambystomid|salamander +ameba|1 +(noun)|amoeba|rhizopod|rhizopodan +ameban|1 +(adj)|amoebic|amebic|amoeban|amoebous|amebous|rhizopod|rhizopodan +amebiasis|1 +(noun)|amoebiasis|amebiosis|amoebiosis|protozoal infection +amebic|1 +(adj)|amoebic|amoeban|ameban|amoebous|amebous|rhizopod|rhizopodan +amebic dysentery|1 +(noun)|amoebic dysentery|amebiasis|amoebiasis|amebiosis|amoebiosis|dysentery +amebiosis|1 +(noun)|amebiasis|amoebiasis|amoebiosis|protozoal infection +ameboid|1 +(adj)|amoeboid|rhizopod|rhizopodan +amebous|1 +(adj)|amoebic|amebic|amoeban|ameban|amoebous|rhizopod|rhizopodan +amedeo avogadro|1 +(noun)|Avogadro|Amedeo Avogadro|physicist +amedeo modigliano|1 +(noun)|Modigliani|Amedeo Modigliano|painter|sculptor|sculpturer|carver|statue maker +ameer|1 +(noun)|emir|amir|emeer|ruler|swayer +ameiuridae|1 +(noun)|Ameiuridae|family Ameiuridae|fish family +ameiurus|1 +(noun)|Ameiurus|genus Ameiurus|fish genus +ameiurus melas|1 +(noun)|horned pout|hornpout|pout|Ameiurus Melas|bullhead +amelanchier|1 +(noun)|Amelanchier|genus Amelanchier|rosid dicot genus +amelanchier alnifolia|1 +(noun)|alderleaf Juneberry|alder-leaved serviceberry|Amelanchier alnifolia|Juneberry|serviceberry|service tree|shadbush|shadblow +amelanchier bartramiana|1 +(noun)|Bartram Juneberry|Amelanchier bartramiana|Juneberry|serviceberry|service tree|shadbush|shadblow +amelia|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +amelia earhart|1 +(noun)|Earhart|Amelia Earhart|aviator|aeronaut|airman|flier|flyer +ameliorate|2 +(verb)|better|improve|amend|meliorate|change|alter|modify +(verb)|better|improve|meliorate|change state|turn +ameliorating|1 +(adj)|ameliorative|amelioratory|meliorative|bettering +amelioration|1 +(noun)|melioration|betterment|improvement +ameliorative|1 +(adj)|ameliorating|amelioratory|meliorative|bettering +amelioratory|1 +(adj)|ameliorating|ameliorative|meliorative|bettering +ameloblast|1 +(noun)|embryonic cell|formative cell +amelogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +amen|1 +(noun)|Amen|Amon|Egyptian deity +amen-ra|1 +(noun)|Amen-Ra|Amon-Ra|Egyptian deity +amen cadence|1 +(noun)|plagal cadence|cadence +amen corner|1 +(noun)|corner|nook +amenability|1 +(noun)|amenableness|cooperativeness|tractability|tractableness|flexibility +amenable|3 +(adj)|conformable|willing|compliant +(adj)|responsive|tractable|susceptible +(adj)|responsible +amenableness|1 +(noun)|amenability|cooperativeness|tractability|tractableness|flexibility +amend|3 +(verb)|revise +(verb)|better|improve|ameliorate|meliorate|change|alter|modify +(verb)|rectify|remediate|remedy|repair|correct|rectify|right +amendable|1 +(adj)|correctable|corrigible +amendatory|1 +(adj)|bettering +amended|2 +(adj)|amended |revised +(adj)|better +amended return|1 +(noun)|tax return|income tax return|return +amendment|2 +(noun)|correction|rectification +(noun)|statement +amends|2 +(noun)|damages|indemnity|indemnification|restitution|redress|compensation +(noun)|reparation|expiation|atonement|propitiation +amenhotep iv|1 +(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king|male monarch +amenia|1 +(noun)|amenorrhea|amenorrhoea|symptom +amenities|2 +(noun)|comforts|creature comforts|conveniences|support|keep|livelihood|living|bread and butter|sustenance +(noun)|agreeableness|amenity|pleasantness|sweetness +amenity|1 +(noun)|agreeableness|pleasantness|sweetness +amenorrhea|1 +(noun)|amenorrhoea|amenia|symptom +amenorrheal|1 +(adj)|amenorrheic|amenorrhoeic|amenorrhoeal|symptom +amenorrheic|1 +(adj)|amenorrhoeic|amenorrheal|amenorrhoeal|symptom +amenorrhoea|1 +(noun)|amenorrhea|amenia|symptom +amenorrhoeal|1 +(adj)|amenorrheic|amenorrhoeic|amenorrheal|symptom +amenorrhoeic|1 +(adj)|amenorrheic|amenorrheal|amenorrhoeal|symptom +ament|1 +(noun)|catkin|inflorescence +amentaceous|1 +(adj)|amentiferous|productive +amentia|1 +(noun)|idiocy|retardation|mental retardation|backwardness|slowness|subnormality +amentiferae|1 +(noun)|Amentiferae|group Amentiferae|taxonomic group|taxonomic category|taxon +amentiferous|1 +(adj)|amentaceous|productive +amerce|2 +(verb)|punish|penalize|penalise +(verb)|ticket|fine +amercement|1 +(noun)|fine|mulct|penalty +amerciable|1 +(adj)|illegal +america|2 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +(noun)|America|the Americas|land|dry land|earth|ground|solid ground|terra firma +american|5 +(adj)|American|North American country|North American nation +(adj)|American|land|dry land|earth|ground|solid ground|terra firma +(noun)|American|inhabitant|dweller|denizen|indweller +(noun)|American English|American language|American|English|English language +(noun)|American|inhabitant|dweller|denizen|indweller +american-indian language|1 +(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language|tongue +american agave|1 +(noun)|American agave|Agave americana|agave|century plant|American aloe +american alligator|1 +(noun)|American alligator|Alligator mississipiensis|alligator|gator +american aloe|1 +(noun)|agave|century plant|American aloe|desert plant|xerophyte|xerophytic plant|xerophile|xerophilous plant +american angelica tree|1 +(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub|bush +american antelope|1 +(noun)|pronghorn|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant +american arborvitae|1 +(noun)|American arborvitae|northern white cedar|white cedar|Thuja occidentalis|arborvitae +american arrowroot|1 +(noun)|arrowroot|American arrowroot|obedience plant|Maranta arundinaceae|maranta +american aspen|1 +(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen +american badger|1 +(noun)|American badger|Taxidea taxus|badger +american baptist convention|1 +(noun)|American Baptist Convention|Northern Baptist Convention|association +american barberry|1 +(noun)|American barberry|Berberis canadensis|barberry +american basswood|1 +(noun)|American basswood|American lime|Tilia americana|linden|linden tree|basswood|lime|lime tree +american beech|1 +(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech|beech tree +american bison|1 +(noun)|American bison|American buffalo|buffalo|Bison bison|bison +american bittern|1 +(noun)|American bittern|stake driver|Botaurus lentiginosus|bittern +american bittersweet|1 +(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|Celastrus scandens|vine +american black bear|1 +(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear +american blight|1 +(noun)|woolly apple aphid|American blight|Eriosoma lanigerum|woolly aphid|woolly plant louse +american bog asphodel|1 +(noun)|American bog asphodel|Narthecium americanum|bog asphodel +american brooklime|1 +(noun)|brooklime|American brooklime|Veronica americana|marsh plant|bog plant|swamp plant +american buffalo|1 +(noun)|American bison|American buffalo|buffalo|Bison bison|bison +american bugbane|1 +(noun)|American bugbane|summer cohosh|Cimicifuga americana|bugbane +american capital|1 +(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital +american centaury|2 +(noun)|marsh pink|American centaury|Sabbatia stellaris|sabbatia +(noun)|rose pink|bitter floom|American centaury|Sabbatia Angularis|sabbatia +american chameleon|1 +(noun)|American chameleon|anole|Anolis carolinensis|iguanid|iguanid lizard +american cheese|1 +(noun)|American cheese|cheese +american chestnut|1 +(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut|chestnut tree +american civil war|1 +(noun)|American Civil War|United States Civil War|War between the States|civil war +american cockroach|1 +(noun)|American cockroach|Periplaneta americana|cockroach|roach +american columbo|1 +(noun)|columbo|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb|herbaceous plant +american coot|1 +(noun)|American coot|marsh hen|mud hen|water hen|Fulica americana|coot +american copper|1 +(noun)|American copper|Lycaena hypophlaeas|copper +american crab apple|1 +(noun)|American crab apple|garland crab|Malus coronaria|wild apple|crab apple|crabapple +american cranberry|1 +(noun)|American cranberry|large cranberry|Vaccinium macrocarpon|cranberry +american cranberry bush|1 +(noun)|cranberry bush|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub|bush +american crayfish|1 +(noun)|American crayfish|crayfish|crawfish|crawdad|crawdaddy +american creeper|1 +(noun)|brown creeper|American creeper|Certhia americana|creeper|tree creeper +american cress|1 +(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +american crow|1 +(noun)|American crow|Corvus brachyrhyncos|crow +american dewberry|2 +(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry|dewberry bush|running blackberry +(noun)|American dewberry|Rubus canadensis|dewberry|dewberry bush|running blackberry +american dog tick|1 +(noun)|wood tick|American dog tick|Dermacentor variabilis|hard tick|ixodid +american dog violet|1 +(noun)|American dog violet|Viola conspersa|violet +american dogwood|1 +(noun)|red osier|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood|dogwood tree|cornel +american dream|1 +(noun)|American Dream|ambition|aspiration|dream +american dwarf birch|1 +(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch|birch tree +american eagle|1 +(noun)|bald eagle|American eagle|Haliaeetus leucocephalus|eagle|bird of Jove +american egret|1 +(noun)|American egret|great white heron|Egretta albus|egret +american elder|1 +(noun)|American elder|black elderberry|sweet elder|Sambucus canadensis|elder|elderberry bush +american elk|1 +(noun)|wapiti|American elk|Cervus canadensis|deer|cervid +american elm|1 +(noun)|American elm|white elm|water elm|rock elm|Ulmus americana|elm|elm tree +american english|1 +(noun)|American English|American language|American|English|English language +american falls|1 +(noun)|American Falls|waterfall|falls +american featherfoil|1 +(noun)|water gillyflower|American featherfoil|Hottonia inflata|featherfoil|feather-foil +american federalist party|1 +(noun)|Federalist Party|American Federalist Party|Federal Party|party|political party +american federation of labor|1 +(noun)|American Federation of Labor|AFL|federation +american federation of labor and congress of industrial organizations|1 +(noun)|American Federation of Labor and Congress of Industrial Organizations|AFL-CIO|federation +american feverfew|1 +(noun)|American feverfew|wild quinine|prairie dock|Parthenium integrifolium|subshrub|suffrutex +american flag|1 +(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag +american flagfish|1 +(noun)|flagfish|American flagfish|Jordanella floridae|killifish +american fly honeysuckle|1 +(noun)|American fly honeysuckle|fly honeysuckle|Lonicera canadensis|honeysuckle +american flying squirrel|1 +(noun)|American flying squirrel|squirrel +american football|1 +(noun)|American football|American football game|football|football game +american football game|1 +(noun)|American football|American football game|football|football game +american foxhound|1 +(noun)|American foxhound|foxhound +american frogbit|1 +(noun)|American frogbit|Limnodium spongia|aquatic plant|water plant|hydrophyte|hydrophytic plant +american gallinule|1 +(noun)|American gallinule|Porphyrula martinica|purple gallinule +american gentian|1 +(noun)|columbo|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb|herbaceous plant +american germander|1 +(noun)|American germander|wood sage|Teucrium canadense|germander +american ginseng|1 +(noun)|American ginseng|sang|Panax quinquefolius|herb|herbaceous plant +american gray birch|1 +(noun)|gray birch|American gray birch|Betula populifolia|birch|birch tree +american green toad|1 +(noun)|American green toad|Bufo debilis|true toad +american hackberry|1 +(noun)|American hackberry|Celtis occidentalis|hackberry|nettle tree +american harvest mouse|1 +(noun)|American harvest mouse|harvest mouse|New World mouse +american hazel|1 +(noun)|American hazel|Corylus americana|hazelnut|hazel|hazelnut tree +american hellebore|1 +(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore|false hellebore +american holly|1 +(noun)|American holly|Christmas holly|poisonous plant|holly +american hop|1 +(noun)|American hop|Humulus americanus|hop|hops +american hornbeam|1 +(noun)|American hornbeam|Carpinus caroliniana|hornbeam +american indian|2 +(noun)|Indian|North American Indian|American Indian|Red Indian|Amerindian|Native American +(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language|tongue +american indian day|1 +(noun)|American Indian Day|day +american ivy|1 +(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine +american kestrel|1 +(noun)|sparrow hawk|American kestrel|kestrel|Falco sparverius|falcon +american labor party|1 +(noun)|American Labor Party|party|political party +american lady crab|1 +(noun)|American lady crab|lady crab|calico crab|Ovalipes ocellatus|swimming crab +american language|1 +(noun)|American English|American language|American|English|English language +american larch|1 +(noun)|American larch|tamarack|black larch|Larix laricina|larch|larch tree +american laurel|1 +(noun)|mountain laurel|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia +american legion|1 +(noun)|American Legion|association +american leishmaniasis|1 +(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis|leishmaniosis|kala azar +american licorice|1 +(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb|herbaceous plant +american lime|1 +(noun)|American basswood|American lime|Tilia americana|linden|linden tree|basswood|lime|lime tree +american liquorice|1 +(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb|herbaceous plant +american lobster|2 +(noun)|American lobster|Northern lobster|Maine lobster|lobster +(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster +american lotus|1 +(noun)|water chinquapin|American lotus|yanquapin|Nelumbo lutea|water lily +american magpie|1 +(noun)|American magpie|Pica pica hudsonia|magpie +american maidenhair fern|1 +(noun)|American maidenhair fern|five-fingered maidenhair fern|Adiantum pedatum|maidenhair|maidenhair fern +american marten|1 +(noun)|American marten|American sable|Martes americana|marten|marten cat +american mastodon|1 +(noun)|American mastodon|American mastodont|Mammut americanum|mastodon|mastodont +american mastodont|1 +(noun)|American mastodon|American mastodont|Mammut americanum|mastodon|mastodont +american merganser|1 +(noun)|American merganser|Mergus merganser americanus|merganser|fish duck|sawbill|sheldrake +american mink|1 +(noun)|American mink|Mustela vison|mink +american mistletoe|2 +(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe|false mistletoe +(noun)|American mistletoe|Arceuthobium pusillum|parasitic plant +american mountain ash|1 +(noun)|American mountain ash|Sorbus americana|mountain ash +american oil palm|1 +(noun)|American oil palm|Elaeis oleifera|oil palm +american olive|1 +(noun)|devilwood|American olive|Osmanthus americanus|tree +american organ|1 +(noun)|American organ|free-reed instrument +american oriole|1 +(noun)|New World oriole|American oriole|oriole|oscine|oscine bird +american parasol|1 +(noun)|American parasol|Lepiota americana|lepiota +american parsley fern|1 +(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake +american party|1 +(noun)|American Party|Know-Nothing Party|party|political party +american pasqueflower|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +american pennyroyal|1 +(noun)|pennyroyal|American pennyroyal|Hedeoma pulegioides|herb|herbaceous plant +american persimmon|1 +(noun)|American persimmon|possumwood|Diospyros virginiana|persimmon|persimmon tree +american pit bull terrier|1 +(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier|bull terrier +american plaice|1 +(noun)|American plaice|Hippoglossoides platessoides|righteye flounder|righteyed flounder +american plan|1 +(noun)|American plan|hotel plan|meal plan +american plane|1 +(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree|sycamore|platan +american pulsatilla|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +american quaking aspen|1 +(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen +american raspberry|1 +(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry +american rattlebox|1 +(noun)|American rattlebox|Crotalaria sagitallis|crotalaria|rattlebox +american red elder|1 +(noun)|American red elder|red-berried elder|stinking elder|Sambucus pubens|elder|elderberry bush +american red plum|1 +(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum|wild plum tree +american red squirrel|1 +(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel +american redstart|1 +(noun)|American redstart|redstart|Setophaga ruticilla|flycatching warbler +american revised version|1 +(noun)|American Standard Version|American Revised Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +american revolution|1 +(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution +american revolutionary leader|1 +(noun)|American Revolutionary leader|nationalist leader +american revolutionary war|1 +(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution +american robin|1 +(noun)|robin|American robin|Turdus migratorius|thrush +american rock brake|1 +(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake +american sable|1 +(noun)|American marten|American sable|Martes americana|marten|marten cat +american saddle horse|1 +(noun)|American saddle horse|saddle horse|riding horse|mount +american samoa|1 +(noun)|American Samoa|Eastern Samoa|AS|district|territory|territorial dominion|dominion +american shrew mole|1 +(noun)|American shrew mole|Neurotrichus gibbsii|shrew mole +american sign language|1 +(noun)|ASL|American sign language|sign language|signing +american smelt|1 +(noun)|American smelt|rainbow smelt|smelt +american smokewood|1 +(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree|smoke bush +american smooth dogfish|1 +(noun)|American smooth dogfish|Mustelus canis|smooth dogfish +american spicebush|1 +(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +american spikenard|1 +(noun)|American spikenard|petty morel|life-of-man|Aralia racemosa|subshrub|suffrutex +american staffordshire terrier|1 +(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier|bull terrier +american standard code for information interchange|1 +(noun)|American Standard Code for Information Interchange|ASCII|code|computer code +american standard version|1 +(noun)|American Standard Version|American Revised Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +american star grass|1 +(noun)|American star grass|Hypoxis hirsuta|star grass +american state|1 +(noun)|American state|state|province +american stock exchange|1 +(noun)|American Stock Exchange|AMEX|Curb|stock exchange|stock market|securities market +american sweet chestnut|1 +(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut|chestnut tree +american sweet gum|1 +(noun)|sweet gum|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar +american sycamore|1 +(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree|sycamore|platan +american toad|1 +(noun)|American toad|Bufo americanus|true toad +american turkey oak|1 +(noun)|American turkey oak|turkey oak|Quercus laevis|oak|oak tree +american twinflower|1 +(noun)|American twinflower|Linnaea borealis americana|twinflower|Linnaea borealis +american virgin islands|1 +(noun)|United States Virgin Islands|American Virgin Islands|VI|possession +american wall fern|1 +(noun)|rock polypody|rock brake|American wall fern|Polypodium virgianum|polypody +american war of independence|1 +(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution +american water ouzel|1 +(noun)|American water ouzel|Cinclus mexicanus|water ouzel|dipper +american water shrew|1 +(noun)|American water shrew|Sorex palustris|water shrew +american water spaniel|1 +(noun)|American water spaniel|water spaniel +american watercress|2 +(noun)|American watercress|mountain watercress|Cardamine rotundifolia|watercress +(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +american white birch|1 +(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch|birch tree +american white oak|1 +(noun)|American white oak|Quercus alba|white oak +american white pine|1 +(noun)|American white pine|eastern white pine|weymouth pine|Pinus strobus|white pine +american widgeon|1 +(noun)|American widgeon|baldpate|Anas americana|widgeon|wigeon|Anas penelope +american wistaria|1 +(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria|wistaria +american wisteria|1 +(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria|wistaria +american woodcock|1 +(noun)|American woodcock|woodcock snipe|Philohela minor|woodcock +american wormseed|1 +(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot +americana|1 +(noun)|Americana|artifact|artefact +americanisation|1 +(noun)|Americanization|Americanisation|assimilation|absorption +americanise|2 +(verb)|Americanize|Americanise|change|alter|modify +(verb)|Americanize|Americanise|change +americanism|3 +(noun)|Americanism|patriotism|nationalism +(noun)|Americanism|formulation|expression +(noun)|Americanism|custom|usage|usance +americanization|1 +(noun)|Americanization|Americanisation|assimilation|absorption +americanize|2 +(verb)|Americanize|Americanise|change|alter|modify +(verb)|Americanize|Americanise|change +americium|1 +(noun)|Am|atomic number 95|metallic element|metal +americus vespucius|1 +(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator +amerigo vespucci|1 +(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator +amerind|2 +(adj)|Indian|Amerind|Amerindic|native American|Amerindian|Native American +(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language|tongue +amerindian|1 +(noun)|Amerindian|Native American|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +amerindian language|1 +(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language|tongue +amerindian race|1 +(noun)|Indian race|Amerindian race|race +amerindic|1 +(adj)|Indian|Amerind|Amerindic|native American|Amerindian|Native American +ametabolic|2 +(adj)|ametabolic |ametabolous +(adj)|nonmetamorphic +ametabolous|1 +(adj)|ametabolic +amethopterin|1 +(noun)|methotrexate|methotrexate sodium|antimetabolite|immunosuppressant|immunosuppressive drug|immune suppressant drug +amethyst|2 +(adj)|chromatic +(noun)|quartz|transparent gem +amethystine|1 +(adj)|quartz|transparent gem +amethystine python|1 +(noun)|python +ametria|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +ametropia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +ametropic|1 +(adj)|ametropic +amex|1 +(noun)|American Stock Exchange|AMEX|Curb|stock exchange|stock market|securities market +amhara|1 +(noun)|Amhara|Ethiopian +amharic|2 +(adj)|Amharic|Semitic +(noun)|Amharic|Ethiopian language|Semitic +amia|1 +(noun)|Amia|genus Amia|fish genus +amia calva|1 +(noun)|bowfin|grindle|dogfish|Amia calva|ganoid|ganoid fish +amiability|2 +(noun)|good humor|good humour|good temper|temper|mood|humor|humour +(noun)|affability|affableness|amiableness|bonhomie|geniality|friendliness +amiable|2 +(adj)|good-humored|good-humoured|good-natured +(adj)|affable|cordial|genial|friendly +amiableness|1 +(noun)|affability|affableness|amiability|bonhomie|geniality|friendliness +amiably|1 +(adv)|affably|genially +amianthum|1 +(noun)|Amianthum|genus Amianthum|liliid monocot genus +amianthum muscaetoxicum|1 +(noun)|fly poison|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant +amianthum muscitoxicum|1 +(noun)|fly poison|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant +amicability|2 +(noun)|amicableness|friendliness +(noun)|amicableness|friendliness +amicable|1 +(adj)|amicable |friendly|unhostile|well-meaning|unthreatening|friendly|lovable|loveable|peaceful +amicableness|2 +(noun)|amicability|friendliness +(noun)|amicability|friendliness +amicus curiae|1 +(noun)|friend of the court|adviser|advisor|consultant +amicus curiae brief|1 +(noun)|brief|legal brief +amide|1 +(noun)|organic compound +amidopyrine|1 +(noun)|aminopyrine|analgesic|anodyne|painkiller|pain pill +amidship|2 +(adj)|central +(adv)|amidships|midships +amidships|1 +(adv)|amidship|midships +amigo|1 +(noun)|friend +amiidae|1 +(noun)|Amiidae|family Amiidae|fish family +amine|1 +(noun)|aminoalkane|methane series|alkane series|alkane|paraffin +aminic|1 +(adj)|amino|methane series|alkane series|alkane|paraffin +amino|2 +(adj)|aminic|methane series|alkane series|alkane|paraffin +(noun)|amino group|group|radical|chemical group +amino acid|1 +(noun)|aminoalkanoic acid|organic compound +amino group|1 +(noun)|amino|group|radical|chemical group +amino plastic|1 +(noun)|aminoplast|amino resin|plastic +amino resin|1 +(noun)|amino plastic|aminoplast|plastic +aminoaciduria|1 +(noun)|symptom +aminoalkane|1 +(noun)|amine|methane series|alkane series|alkane|paraffin +aminoalkanoic acid|1 +(noun)|amino acid|organic compound +aminobenzine|1 +(noun)|aniline|aniline oil|phenylamine|amine|aminoalkane +aminobenzoic acid|1 +(noun)|acid +aminomethane|1 +(noun)|methyl|methyl group|methyl radical +aminopherase|1 +(noun)|transaminase|aminotransferase|transferase +aminophylline|1 +(noun)|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator +aminoplast|1 +(noun)|amino plastic|amino resin|plastic +aminopyrine|1 +(noun)|amidopyrine|analgesic|anodyne|painkiller|pain pill +aminotransferase|1 +(noun)|transaminase|aminopherase|transferase +amiodarone|1 +(noun)|Cordarone|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +amir|1 +(noun)|emir|emeer|ameer|ruler|swayer +amish|1 +(noun)|Amish|Mennonite +amish sect|1 +(noun)|Amish sect|sect|religious sect|religious order +amiss|3 +(adj)|awry|haywire|wrong|malfunctioning |nonfunctional +(adv)|awry +(adv)|imperfectly +amitosis|1 +(noun)|cell division|cellular division +amitotic|1 +(adj)|cell division|cellular division +amitriptyline|1 +(noun)|amitriptyline hydrochloride|Elavil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +amitriptyline hydrochloride|1 +(noun)|amitriptyline|Elavil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +amity|2 +(noun)|cordiality|friendliness +(noun)|peace +amlodipine besylate|1 +(noun)|Norvasc|vasodilator|vasodilative +amman|1 +(noun)|Amman|capital of Jordan|national capital +ammeter|1 +(noun)|meter +ammine|1 +(noun)|compound|chemical compound +ammino|1 +(adj)|compound|chemical compound +ammo|1 +(noun)|ammunition|weaponry|arms|implements of war|weapons system|munition +ammobium|1 +(noun)|flower +ammobium alatum|1 +(noun)|winged everlasting|Ammobium alatum|ammobium +ammodytes|1 +(noun)|Ammodytes|genus Ammodytes|fish genus +ammodytidae|1 +(noun)|Ammodytidae|family Ammodytidae|fish family +ammonia|2 +(noun)|binary compound +(noun)|ammonia water|ammonium hydroxide|liquid +ammonia alum|1 +(noun)|alum|ammonium alum|aluminum|aluminium|Al|atomic number 13|double salt +ammonia clock|1 +(noun)|atomic clock +ammonia water|1 +(noun)|ammonia|ammonium hydroxide|liquid +ammoniac|2 +(adj)|ammoniacal|binary compound +(noun)|gum ammoniac|gum +ammoniacal|1 +(adj)|ammoniac|binary compound +ammoniate|1 +(verb)|process|treat +ammoniated|1 +(adj)|ammonia +ammonification|1 +(noun)|permeation|pervasion|suffusion +ammonify|1 +(verb)|impregnate|saturate +ammonite|1 +(noun)|ammonoid|fossil +ammonitic|1 +(adj)|fossil +ammonium|1 +(noun)|ammonium ion|ammonia +ammonium alum|1 +(noun)|alum|ammonia alum|aluminum|aluminium|Al|atomic number 13|double salt +ammonium carbamate|1 +(noun)|carbamate +ammonium carbonate|1 +(noun)|carbonate +ammonium chloride|1 +(noun)|sal ammoniac|salt +ammonium hydroxide|1 +(noun)|ammonia water|ammonia|liquid +ammonium ion|1 +(noun)|ammonium|ammonia +ammonium nitrate|1 +(noun)|nitrate +ammoniuria|1 +(noun)|symptom +ammonoid|1 +(noun)|ammonite|fossil +ammotragus|1 +(noun)|Ammotragus|genus Ammotragus|mammal genus +ammotragus lervia|1 +(noun)|aoudad|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep +ammunition|3 +(noun)|ammo|weaponry|arms|implements of war|weapons system|munition +(noun)|material|stuff +(noun)|information|info +ammunition chest|1 +(noun)|caisson|chest +amnesia|1 +(noun)|memory loss|blackout|cognitive state|state of mind +amnesiac|2 +(adj)|amnesic|unmindful |forgetful|mindless +(noun)|amnesic|handicapped person +amnesic|3 +(adj)|amnestic|cognitive state|state of mind +(adj)|amnesiac|unmindful |forgetful|mindless +(noun)|amnesiac|handicapped person +amnesic aphasia|1 +(noun)|nominal aphasia|anomic aphasia|anomia|amnestic aphasia|aphasia +amnestic|1 +(adj)|amnesic|cognitive state|state of mind +amnestic aphasia|1 +(noun)|nominal aphasia|anomic aphasia|anomia|amnesic aphasia|aphasia +amnesty|4 +(noun)|exemption|freedom +(noun)|pardon|warrant +(noun)|pardon|free pardon|clemency|mercifulness|mercy +(verb)|pardon +amnic|1 +(adj)|amniotic|amnionic|sac +amnio|1 +(noun)|amniocentesis|centesis|prenatal diagnosis +amniocentesis|1 +(noun)|amnio|centesis|prenatal diagnosis +amnion|1 +(noun)|amniotic sac|amnios|sac +amnionic|1 +(adj)|amniotic|amnic|sac +amnionic fluid|1 +(noun)|amniotic fluid|waters|liquid body substance|bodily fluid|body fluid|humor|humour +amnios|2 +(noun)|amnion|amniotic sac|sac +(noun)|amniocentesis|amnio|centesis|prenatal diagnosis +amniota|1 +(noun)|Amniota|vertebrate|craniate +amniote|1 +(noun)|vertebrate|craniate +amniotic|1 +(adj)|amnionic|amnic|sac +amniotic cavity|1 +(noun)|cavity|bodily cavity|cavum +amniotic fluid|1 +(noun)|amnionic fluid|waters|liquid body substance|bodily fluid|body fluid|humor|humour +amniotic sac|1 +(noun)|amnion|amnios|sac +amobarbital|1 +(noun)|barbiturate|truth serum|truth drug +amobarbital sodium|1 +(noun)|blue|blue angel|blue devil|Amytal|amobarbital +amoeba|1 +(noun)|ameba|rhizopod|rhizopodan +amoeban|1 +(adj)|amoebic|amebic|ameban|amoebous|amebous|rhizopod|rhizopodan +amoebiasis|1 +(noun)|amebiasis|amebiosis|amoebiosis|protozoal infection +amoebic|1 +(adj)|amebic|amoeban|ameban|amoebous|amebous|rhizopod|rhizopodan +amoebic dysentery|1 +(noun)|amebic dysentery|amebiasis|amoebiasis|amebiosis|amoebiosis|dysentery +amoebida|1 +(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order +amoebina|1 +(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order +amoebiosis|1 +(noun)|amebiasis|amoebiasis|amebiosis|protozoal infection +amoeboid|1 +(adj)|ameboid|rhizopod|rhizopodan +amoebous|1 +(adj)|amoebic|amebic|amoeban|ameban|amebous|rhizopod|rhizopodan +amok|3 +(adj)|amuck|berserk|demoniac|demoniacal|possessed|insane +(adv)|amuck +(adv)|amuck|murderously +amon|1 +(noun)|Amen|Amon|Egyptian deity +amon-ra|1 +(noun)|Amen-Ra|Amon-Ra|Egyptian deity +amontillado|1 +(noun)|Amontillado|sherry +amor|1 +(noun)|Cupid|Amor|Roman deity +amora|1 +(noun)|rabbi +amoral|1 +(adj)|amoral |unmoral|neutral|nonmoral +amoralism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +amoralist|1 +(noun)|disciple|adherent +amorality|1 +(noun)|quality +amorally|1 +(adv)|immorally +amorist|1 +(noun)|fan|buff|devotee|lover +amoristic|1 +(adj)|fan|buff|devotee|lover +amorous|2 +(adj)|amative|loving +(adj)|amatory|romantic|loving +amorously|1 +(adv)|with love +amorousness|2 +(noun)|enamoredness|love +(noun)|eroticism|erotism|sexiness|amativeness|sexual desire|concupiscence|physical attraction +amorpha|1 +(noun)|shrub|bush +amorpha californica|1 +(noun)|false indigo|bastard indigo|Amorpha californica|amorpha +amorpha canescens|1 +(noun)|leadplant|lead plant|Amorpha canescens|amorpha +amorpha fruticosa|1 +(noun)|false indigo|bastard indigo|Amorpha fruticosa|amorpha +amorphophallus|1 +(noun)|arum|aroid +amorphophallus campanulatus|1 +(noun)|pungapung|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum|aroid +amorphophallus paeonifolius|1 +(noun)|pungapung|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum|aroid +amorphophallus rivieri|1 +(noun)|devil's tongue|snake palm|umbrella arum|Amorphophallus rivieri|arum|aroid +amorphophallus titanum|1 +(noun)|krubi|titan arum|Amorphophallus titanum|arum|aroid +amorphous|3 +(adj)|formless|shapeless|unformed +(adj)|unstructured|inorganic +(adj)|uncrystallized|uncrystallised|noncrystalline +amorphous shape|1 +(noun)|shape|form +amort|1 +(adj)|dejected +amortisation|2 +(noun)|amortization|decrease|diminution|reduction|step-down +(noun)|amortization|payment|defrayal|defrayment +amortise|1 +(verb)|amortize|liquidate|pay off +amortization|2 +(noun)|amortisation|decrease|diminution|reduction|step-down +(noun)|amortisation|payment|defrayal|defrayment +amortize|1 +(verb)|amortise|liquidate|pay off +amos|2 +(noun)|Amos|prophet +(noun)|Amos|Book of Amos|book +amount|6 +(noun)|magnitude +(noun)|sum|sum of money|amount of money|assets +(noun)|measure|quantity|abstraction +(noun)|sum|total|quantity +(verb)|total|number|add up|come|be +(verb)|come|add up|become|turn +amount of money|1 +(noun)|sum|sum of money|amount|assets +amour|1 +(noun)|affair|affaire|intimacy|liaison|involvement|sexual relationship +amour propre|1 +(noun)|conceit|self-love|vanity|pride|pridefulness +amoxicillin|1 +(noun)|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +amoxil|1 +(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +amoy|1 +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +amp|2 +(noun)|ampere|A|current unit +(noun)|adenosine monophosphate|AMP|adenylic acid|nucleotide +amperage|1 +(noun)|electrical phenomenon +ampere|2 +(noun)|international ampere|current unit +(noun)|amp|A|current unit +ampere-hour|1 +(noun)|charge unit|quantity unit +ampere-minute|1 +(noun)|charge unit|quantity unit +ampere-second|1 +(noun)|coulomb|C|charge unit|quantity unit +ampere-turn|1 +(noun)|magnetomotive force unit +ampersand|1 +(noun)|punctuation|punctuation mark +amphetamine|1 +(noun)|pep pill|upper|speed|stimulant|stimulant drug|drug of abuse|street drug +amphetamine sulfate|1 +(noun)|amphetamine sulphate|amphetamine|pep pill|upper|speed +amphetamine sulphate|1 +(noun)|amphetamine sulfate|amphetamine|pep pill|upper|speed +amphibia|1 +(noun)|Amphibia|class Amphibia|class +amphibian|4 +(adj)|amphibious|class +(noun)|amphibious vehicle|motor vehicle|automotive vehicle +(noun)|amphibious aircraft|airplane|aeroplane|plane +(noun)|vertebrate|craniate +amphibian family|1 +(noun)|family +amphibian genus|1 +(noun)|genus +amphibiotic|1 +(adj)|semiaquatic|amphibious +amphibious|2 +(adj)|amphibian|class +(adj)|amphibious |amphibiotic|semiaquatic +amphibious aircraft|1 +(noun)|amphibian|airplane|aeroplane|plane +amphibious assault|1 +(noun)|amphibious operation +amphibious demonstration|1 +(noun)|amphibious operation +amphibious landing|1 +(noun)|landing|military action|action +amphibious operation|1 +(noun)|operation|military operation +amphibious vehicle|1 +(noun)|amphibian|motor vehicle|automotive vehicle +amphibole|1 +(noun)|mineral +amphibole group|1 +(noun)|mineral +amphibolips|1 +(noun)|Amphibolips|genus Amphibolips|arthropod genus +amphibolite|1 +(noun)|metamorphic rock +amphibology|1 +(noun)|amphiboly|ambiguity +amphiboly|1 +(noun)|amphibology|ambiguity +amphibrach|1 +(noun)|metrical foot|foot|metrical unit +amphicarpa|1 +(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus +amphicarpa bracteata|1 +(noun)|hog peanut|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine +amphicarpaea|1 +(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus +amphicarpaea bracteata|1 +(noun)|hog peanut|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine +amphictyony|1 +(noun)|political unit +amphidiploid|1 +(noun)|organism|being +amphidiploidy|1 +(noun)|condition +amphigory|1 +(noun)|nonsense verse|nonsense|bunk|nonsensicality|meaninglessness|hokum +amphimixis|2 +(noun)|sexual reproduction|reproduction +(noun)|union +amphineura|1 +(noun)|Amphineura|subclass Amphineura|class +amphioxidae|1 +(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family +amphioxus|1 +(noun)|lancelet|cephalochordate +amphipod|1 +(noun)|malacostracan crustacean +amphipoda|1 +(noun)|Amphipoda|order Amphipoda|animal order +amphiprion|1 +(noun)|Amphiprion|genus Amphiprion|fish genus +amphiprion percula|1 +(noun)|clown anemone fish|Amphiprion percula|anemone fish +amphiprostylar|1 +(adj)|amphiprostyle|amphistylar|porticoed|apteral +amphiprostyle|1 +(adj)|amphiprostylar|amphistylar|porticoed|apteral +amphiprotic|1 +(adj)|amphoteric +amphisbaena|2 +(noun)|mythical monster|mythical creature +(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus +amphisbaenia|1 +(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus +amphisbaenidae|1 +(noun)|Amphisbaenidae|family Amphisbaenidae|reptile family +amphistylar|2 +(adj)|columned +(adj)|amphiprostylar|amphiprostyle|porticoed|apteral +amphitheater|2 +(noun)|amphitheatre|gallery +(noun)|amphitheatre|coliseum|stadium|bowl|arena|sports stadium +amphitheatre|2 +(noun)|amphitheater|gallery +(noun)|amphitheater|coliseum|stadium|bowl|arena|sports stadium +amphitheatric|1 +(adj)|amphitheatrical|stadium|bowl|arena|sports stadium +amphitheatrical|1 +(adj)|amphitheatric|stadium|bowl|arena|sports stadium +amphitropous|1 +(adj)|amphitropous +amphitropous ovule|1 +(noun)|ovule +amphiuma|1 +(noun)|congo snake|congo eel|blind eel|salamander +amphiumidae|1 +(noun)|Amphiumidae|family Amphiumidae|amphibian family +amphora|1 +(noun)|jar +amphoric|1 +(adj)|listening|hearing|diagnostic procedure|diagnostic technique +amphoteric|1 +(adj)|amphoteric |amphiprotic +amphotericin|1 +(noun)|antibiotic|antibiotic drug +ampicillin|1 +(noun)|Principen|Polycillin|SK-Ampicillin|penicillin +ample|3 +(adj)|ample |full|good|generous|wide|wide-cut|full|abundant|sufficient +(adj)|copious|plenteous|plentiful|rich|abundant +(adj)|sizable|sizeable|large +ampleness|2 +(noun)|sufficiency|adequacy +(noun)|largeness|bigness +amplexicaul leaf|1 +(noun)|leaf|leafage|foliage +amplification|3 +(noun)|elaboration|expansion|expanding upon +(noun)|gain|increase|increment +(noun)|increase|step-up +amplifier|1 +(noun)|electronic equipment +amplify|4 +(verb)|magnify|enlarge +(verb)|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|misinform|mislead +(verb)|inflate|blow up|expand|increase +(verb)|intensify|compound|heighten|deepen +amplitude|3 +(noun)|shift|displacement +(noun)|bountifulness|bounty|abundance|copiousness|teemingness +(noun)|magnitude +amplitude distortion|1 +(noun)|nonlinear distortion|distortion +amplitude level|1 +(noun)|degree|grade|level +amplitude modulation|1 +(noun)|AM|modulation +amply|2 +(adv)|richly +(adv)|fully +ampoule|1 +(noun)|phial|vial|ampule|ampul|bottle +ampul|1 +(noun)|phial|vial|ampule|ampoule|bottle +ampule|1 +(noun)|phial|vial|ampul|ampoule|bottle +ampulla|2 +(noun)|body part +(noun)|flask +ampullar|1 +(adj)|ampullary|body part +ampullary|1 +(adj)|ampullar|body part +amputate|1 +(verb)|cut off|remove|take|take away|withdraw +amputation|2 +(noun)|disability|disablement|handicap|impairment +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +amputator|1 +(noun)|surgeon|operating surgeon|sawbones +amputee|1 +(noun)|unfortunate|unfortunate person +amrinone|1 +(noun)|Inocor|medicine|medication|medicament|medicinal drug +amsinckia|1 +(noun)|Amsinckia|genus Amsinckia|plant genus +amsinckia grandiflora|1 +(noun)|large-flowered fiddleneck|Amsinckia grandiflora|herb|herbaceous plant +amsinckia intermedia|1 +(noun)|common amsinckia|Amsinckia intermedia|herb|herbaceous plant +amsonia|1 +(noun)|Amsonia|genus Amsonia|dicot genus|magnoliopsid genus +amsonia tabernaemontana|1 +(noun)|blue star|Amsonia tabernaemontana|subshrub|suffrutex +amsterdam|1 +(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital +amuck|3 +(adj)|amok|berserk|demoniac|demoniacal|possessed|insane +(adv)|amok +(adv)|amok|murderously +amulet|1 +(noun)|talisman|charm|good luck charm +amundsen|1 +(noun)|Amundsen|Roald Amundsen|explorer|adventurer +amur|1 +(noun)|Amur|Amur River|Heilong Jiang|river +amur privet|1 +(noun)|Amur privet|Ligustrum amurense|privet +amur river|1 +(noun)|Amur|Amur River|Heilong Jiang|river +amusd|1 +(noun)|Doctor of Musical Arts|AMusD|doctor's degree|doctorate +amuse|2 +(verb)|divert|disport|entertain +(verb)|cheer|cheer up|jolly along|jolly up +amused|1 +(adj)|diverted|entertained|pleased +amusement|2 +(noun)|delight|delectation +(noun)|entertainment|diversion|recreation +amusement arcade|1 +(noun)|arcade +amusement park|1 +(noun)|funfair|pleasure ground|park|commons|common|green +amusing|2 +(adj)|amusive|diverting|fun|entertaining +(adj)|comic|comical|funny|laughable|mirthful|risible|humorous |humourous +amusingly|1 +(adv)|divertingly +amusive|1 +(adj)|amusing|diverting|fun|entertaining +amy lowell|1 +(noun)|Lowell|Amy Lowell|poet +amy lyon|1 +(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady|noblewoman|peeress +amygdala|1 +(noun)|amygdaloid nucleus|corpus amygdaloideum|basal ganglion +amygdalaceae|1 +(noun)|Amygdalaceae|family Amygdalaceae|dicot family|magnoliopsid family +amygdaliform|1 +(adj)|almond-shaped|amygdaloid|amygdaloidal|rounded +amygdalin|1 +(noun)|glucoside +amygdaline|1 +(adj)|edible nut|drupe|stone fruit +amygdaloid|1 +(adj)|almond-shaped|amygdaliform|amygdaloidal|rounded +amygdaloid nucleus|1 +(noun)|amygdala|corpus amygdaloideum|basal ganglion +amygdaloidal|1 +(adj)|almond-shaped|amygdaliform|amygdaloid|rounded +amygdalotomy|1 +(noun)|psychosurgery +amygdalus|1 +(noun)|Amygdalus|genus Amygdalus|rosid dicot genus +amygdalus communis|1 +(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree +amygdalus communis amara|1 +(noun)|bitter almond|Prunus dulcis amara|Amygdalus communis amara|almond tree +amyl alcohol|1 +(noun)|alcohol +amyl nitrate|1 +(noun)|vasodilator|vasodilative +amylaceous|1 +(adj)|starchlike|amyloid|amyloidal|farinaceous|starchy +amylase|1 +(noun)|enzyme +amyloid|3 +(adj)|starchlike|amylaceous|amyloidal|farinaceous|starchy +(noun)|starch|amylum +(noun)|protein +amyloid plaque|1 +(noun)|amyloid protein plaque|plaque +amyloid protein plaque|1 +(noun)|amyloid plaque|plaque +amyloidal|1 +(adj)|starchlike|amylaceous|amyloid|farinaceous|starchy +amyloidosis|1 +(noun)|illness|unwellness|malady|sickness +amylolysis|1 +(noun)|chemical process|chemical change|chemical action +amylolytic|1 +(adj)|chemical process|chemical change|chemical action +amylum|1 +(noun)|starch|polysaccharide|polyose +amyotonia|1 +(noun)|atonicity|atony|atonia|condition|status +amyotrophia|1 +(noun)|amyotrophy|atrophy|wasting|wasting away +amyotrophic lateral sclerosis|1 +(noun)|ALS|Lou Gehrig's disease|nervous disorder|neurological disorder|neurological disease|sclerosis|induration +amyotrophy|1 +(noun)|amyotrophia|atrophy|wasting|wasting away +amytal|1 +(noun)|amobarbital sodium|blue|blue angel|blue devil|Amytal|amobarbital +amyxia|1 +(noun)|physiological state|physiological condition +an|1 +(noun)|Associate in Nursing|AN|associate degree|associate +ana|2 +(noun)|Ana|Celtic deity +(noun)|collection|aggregation|accumulation|assemblage +anabantidae|1 +(noun)|Anabantidae|family Anabantidae|fish family +anabaptism|1 +(noun)|Anabaptism|Protestantism +anabaptist|1 +(noun)|Anabaptist|Protestant +anabaptist denomination|1 +(noun)|Anabaptist denomination|Protestant denomination +anabas|1 +(noun)|Anabas|genus Anabas|fish genus +anabas testudineus|1 +(noun)|climbing perch|Anabas testudineus|A. testudineus|fish +anabatic|1 +(adj)|anabatic +anabiosis|1 +(noun)|suspended animation +anabiotic|1 +(adj)|suspended animation +anabolic|2 +(adj)|organic process|biological process +(adj)|anabolic |constructive-metabolic|energy-storing +anabolic steroid|1 +(noun)|steroid hormone|steroid|sex hormone +anabolism|1 +(noun)|constructive metabolism|organic process|biological process +anabrus|1 +(noun)|Anabrus|genus Anabrus|arthropod genus +anabrus simplex|1 +(noun)|mormon cricket|Anabrus simplex|katydid +anacanthini|1 +(noun)|Anacanthini|order Anacanthini|animal order +anacardiaceae|1 +(noun)|Anacardiaceae|family Anacardiaceae|sumac family|dicot family|magnoliopsid family +anacardium|1 +(noun)|Anacardium|genus Anacardium|dicot genus|magnoliopsid genus +anacardium occidentale|1 +(noun)|cashew|cashew tree|Anacardium occidentale|nut tree +anachronic|1 +(adj)|anachronous|anachronistic|asynchronous +anachronism|3 +(noun)|mistiming|misdating|timekeeping +(noun)|artifact|artefact +(noun)|anomaly|unusual person +anachronistic|1 +(adj)|anachronic|anachronous|asynchronous +anachronous|1 +(adj)|anachronic|anachronistic|asynchronous +anacin iii|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +anaclinal|1 +(adj)|anaclinal +anaclisis|1 +(noun)|relationship +anaclitic|1 +(adj)|relationship +anaclitic depression|1 +(noun)|depressive disorder|clinical depression|depression +anacoluthia|1 +(noun)|anacoluthon|rhetorical device +anacoluthic|1 +(adj)|rhetorical device +anacoluthon|1 +(noun)|anacoluthia|rhetorical device +anaconda|1 +(noun)|Eunectes murinus|boa +anacyclus|1 +(noun)|Anacyclus|genus Anacyclus|asterid dicot genus +anacyclus pyrethrum|1 +(noun)|pellitory|pellitory-of-Spain|Anacyclus pyrethrum|herb|herbaceous plant +anadama bread|1 +(noun)|bread|breadstuff|staff of life +anadenanthera|1 +(noun)|Anadenanthera|genus Anadenanthera|rosid dicot genus +anadenanthera colubrina|1 +(noun)|Anadenanthera colubrina|Piptadenia macrocarpa|shrub|bush +anadiplosis|1 +(noun)|reduplication|repetition +anadromous|1 +(adj)|anadromous +anaemia|2 +(noun)|anemia|symptom +(noun)|anemia|blood disease|blood disorder +anaemic|2 +(adj)|anemic|blood disease|blood disorder +(adj)|anemic|weak +anaerobe|1 +(noun)|organism|being +anaerobic|2 +(adj)|anaerobic |anaerobiotic +(adj)|anaerobic +anaerobic exercise|1 +(noun)|bodybuilding|muscle building|musclebuilding|exercise|exercising|physical exercise|physical exertion|workout +anaerobiotic|1 +(adj)|anaerobic +anaesthesia|1 +(noun)|anesthesia|physiological state|physiological condition +anaesthetic|2 +(adj)|anesthetic|insensible +(noun)|anesthetic|anesthetic agent|anaesthetic agent|drug +anaesthetic agent|1 +(noun)|anesthetic|anaesthetic|anesthetic agent|drug +anaesthetise|1 +(verb)|anesthetize|anaesthetize|anesthetise|put to sleep|put under|put out|drug|dose +anaesthetised|1 +(adj)|anesthetized|anesthetised|anaesthetized|insensible +anaesthetist|1 +(noun)|anesthesiologist|anesthetist|specialist|medical specialist +anaesthetize|1 +(verb)|anesthetize|anesthetise|anaesthetise|put to sleep|put under|put out|drug|dose +anaesthetized|1 +(adj)|anesthetized|anesthetised|anaesthetised|insensible +anagallis|1 +(noun)|Anagallis|genus Anagallis|dicot genus|magnoliopsid genus +anagallis arvensis|1 +(noun)|scarlet pimpernel|red pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel +anagallis tenella|1 +(noun)|bog pimpernel|Anagallis tenella|pimpernel +anagasta|1 +(noun)|Anagasta|genus Anagasta|arthropod genus +anagasta kuehniella|1 +(noun)|Mediterranean flour moth|Anagasta kuehniella|pyralid|pyralid moth +anaglyph|2 +(noun)|stereo|stereoscopic picture|stereoscopic photograph +(noun)|glyptic art|glyptography +anaglyphic|1 +(adj)|anaglyphical|anaglyptic|anaglyptical|glyptic art|glyptography +anaglyphical|1 +(adj)|anaglyphic|anaglyptic|anaglyptical|glyptic art|glyptography +anaglyphy|1 +(noun)|photography +anaglyptic|1 +(adj)|anaglyphic|anaglyphical|anaglyptical|glyptic art|glyptography +anaglyptical|1 +(adj)|anaglyphic|anaglyphical|anaglyptic|glyptic art|glyptography +anagnost|1 +(noun)|clergyman|reverend|man of the cloth|holy order|order +anagoge|2 +(noun)|interpretation +(noun)|interpretation|reading|version +anagogic|1 +(adj)|anagogical|interpretation|reading|version +anagogical|1 +(adj)|anagogic|interpretation|reading|version +anagram|2 +(noun)|word +(verb)|anagrammatize|anagrammatise|read +anagrammatic|1 +(adj)|anagrammatical|word +anagrammatical|1 +(adj)|anagrammatic|word +anagrammatise|1 +(verb)|anagram|anagrammatize|read +anagrammatize|1 +(verb)|anagram|anagrammatise|read +anagrams|2 +(noun)|word game +(noun)|anagram|word +anagyris|1 +(noun)|Anagyris|genus Anagyris|rosid dicot genus +anagyris foetida|1 +(noun)|bean trefoil|stinking bean trefoil|Anagyris foetida|shrub|bush +anaheim|1 +(noun)|Anaheim|city|metropolis|urban center +anal|2 +(adj)|orifice|opening|porta +(adj)|anal +anal intercourse|1 +(noun)|sodomy|buggery|anal sex|perversion|sexual perversion +anal personality|1 +(noun)|anal retentive personality|personality +anal phase|1 +(noun)|anal stage|phase|stage +anal retentive personality|1 +(noun)|anal personality|personality +anal sex|1 +(noun)|sodomy|buggery|anal intercourse|perversion|sexual perversion +anal sphincter|1 +(noun)|sphincter ani|musculus sphincter ani|sphincter|anatomical sphincter|sphincter muscle +anal stage|1 +(noun)|anal phase|phase|stage +analbuminemia|1 +(noun)|blood disease|blood disorder +analecta|1 +(noun)|analects|excerpt|extract|selection +analects|1 +(noun)|analecta|excerpt|extract|selection +analeptic|2 +(adj)|stimulative +(noun)|stimulant|stimulant drug +analgesia|1 +(noun)|physiological state|physiological condition +analgesic|2 +(adj)|analgetic|anodyne|moderating +(noun)|anodyne|painkiller|pain pill|medicine|medication|medicament|medicinal drug +analgetic|1 +(adj)|analgesic|anodyne|moderating +analog|2 +(adj)|analogue |linear +(noun)|analogue|parallel|similarity +analog-digital converter|1 +(noun)|digitizer|digitiser|analog-to-digital converter|data converter +analog-to-digital converter|1 +(noun)|digitizer|digitiser|analog-digital converter|data converter +analog computer|1 +(noun)|analogue computer|computer|computing machine|computing device|data processor|electronic computer|information processing system +analog watch|1 +(noun)|watch|ticker +analogical|1 +(adj)|figurative |nonliteral +analogise|1 +(verb)|analogize|compare +analogist|1 +(noun)|reasoner|ratiocinator +analogize|1 +(verb)|analogise|compare +analogous|2 +(adj)|correspondent|similar +(adj)|analogous +analogue|2 +(adj)|analogue |analog|linear +(noun)|analog|parallel|similarity +analogue computer|1 +(noun)|analog computer|computer|computing machine|computing device|data processor|electronic computer|information processing system +analogy|3 +(noun)|inference|illation +(noun)|comparison|comparing +(noun)|doctrine of analogy|religion|faith|religious belief +analphabet|1 +(noun)|analphabetic|illiterate|illiterate person|nonreader +analphabetic|4 +(adj)|analphabetic |character set|script +(adj)|analphabetic +(adj)|unlettered|illiterate +(noun)|analphabet|illiterate|illiterate person|nonreader +analphabetism|1 +(noun)|illiteracy|inability +analysand|1 +(noun)|patient +analyse|4 +(verb)|analyze|study|examine|canvass|canvas +(verb)|analyze +(verb)|analyze|break down|dissect|take apart +(verb)|analyze|psychoanalyze|psychoanalyse|treat|care for +analyser|1 +(noun)|analyzer|instrument +analysis|6 +(noun)|investigation|investigating +(noun)|analytic thinking|reasoning|logical thinking|abstract thought +(noun)|criticism|literary criticism +(noun)|expressive style|style +(noun)|calculus|the calculus|infinitesimal calculus +(noun)|psychoanalysis|depth psychology|psychotherapy +analysis of variance|1 +(noun)|ANOVA|multivariate analysis +analysis situs|1 +(noun)|topology|pure mathematics +analyst|3 +(noun)|expert +(noun)|expert +(noun)|psychoanalyst|psychiatrist|head-shrinker|shrink +analytic|4 +(adj)|calculus|the calculus|infinitesimal calculus +(adj)|analytic |analytical +(adj)|analytic |uninflected|isolating +(adj)|analytic |analytical|a priori|deductive|logical +analytic geometry|1 +(noun)|analytical geometry|coordinate geometry|geometry +analytic thinking|1 +(noun)|analysis|reasoning|logical thinking|abstract thought +analytical|2 +(adj)|analytic +(adj)|analytic |a priori|deductive|logical +analytical balance|1 +(noun)|chemical balance|beam balance +analytical cubism|1 +(noun)|cubism +analytical geometry|1 +(noun)|analytic geometry|coordinate geometry|geometry +analytical review|1 +(noun)|review|limited review +analyticity|1 +(noun)|property +analyzable|1 +(adj)|decomposable|complex +analyze|4 +(verb)|analyse|study|examine|canvass|canvas +(verb)|analyse|break down|dissect|take apart +(verb)|analyse +(verb)|analyse|psychoanalyze|psychoanalyse|treat|care for +analyzed|1 +(adj)|analyzed +analyzer|1 +(noun)|analyser|instrument +anamnesis|2 +(noun)|medical history|medical record|case history +(noun)|remembrance|recollection|memory|retention|retentiveness +anamnestic|1 +(adj)|memory|retention|retentiveness +anamnestic reaction|1 +(noun)|anamnestic response|immune response|immune reaction|immunologic response +anamnestic response|1 +(noun)|anamnestic reaction|immune response|immune reaction|immunologic response +anamorphic|2 +(adj)|evolution|phylogeny|phylogenesis +(adj)|copy +anamorphism|3 +(noun)|anamorphosis|evolution|phylogeny|phylogenesis +(noun)|metamorphism +(noun)|anamorphosis|copy +anamorphosis|2 +(noun)|anamorphism|evolution|phylogeny|phylogenesis +(noun)|anamorphism|copy +ananas|2 +(noun)|Ananas|genus Ananas|monocot genus|liliopsid genus +(noun)|pineapple|edible fruit +ananas comosus|1 +(noun)|pineapple|pineapple plant|Ananas comosus|herb|herbaceous plant +ananias|1 +(noun)|Ananias|liar|prevaricator +anapaest|1 +(noun)|anapest|metrical foot|foot|metrical unit +anapaestic|1 +(adj)|anapestic|rhetorical +anapest|1 +(noun)|anapaest|metrical foot|foot|metrical unit +anapestic|1 +(adj)|anapaestic|rhetorical +anaphalis|1 +(noun)|Anaphalis|genus Anaphalis|asterid dicot genus +anaphalis margaritacea|1 +(noun)|pearly everlasting|cottonweed|Anaphalis margaritacea|everlasting|everlasting flower +anaphase|1 +(noun)|phase of cell division +anaphasic|1 +(adj)|phase of cell division +anaphor|1 +(noun)|word +anaphora|2 +(noun)|repetition +(noun)|epanaphora|repetition +anaphoric|1 +(adj)|repetition +anaphoric pronoun|1 +(noun)|pronoun +anaphoric relation|1 +(noun)|grammatical relation +anaphrodisia|1 +(noun)|sexual desire|concupiscence|physical attraction +anaphrodisiac|1 +(adj)|anaphrodisiac +anaphylactic|1 +(adj)|hypersensitivity reaction +anaphylactic shock|1 +(noun)|anaphylaxis +anaphylaxis|1 +(noun)|hypersensitivity reaction +anaplasia|1 +(noun)|dysplasia +anaplasmosis|1 +(noun)|animal disease +anaplastic|1 +(adj)|dysplasia +anaplasty|1 +(noun)|plastic surgery|reconstructive surgery|operation|surgery|surgical operation|surgical procedure|surgical process +anaprox|1 +(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +anapsid|1 +(noun)|anapsid reptile|reptile|reptilian +anapsid reptile|1 +(noun)|anapsid|reptile|reptilian +anapsida|1 +(noun)|Anapsida|subclass Anapsida|class +anapurna|2 +(noun)|Parvati|Anapurna|Annapurna|Hindu deity +(noun)|Annapurna|Anapurna|mountain peak +anarchic|1 +(adj)|anarchical|lawless|uncontrolled +anarchical|1 +(adj)|anarchic|lawless|uncontrolled +anarchism|1 +(noun)|political orientation|ideology|political theory +anarchist|1 +(noun)|nihilist|syndicalist|radical +anarchistic|1 +(adj)|political orientation|ideology|political theory +anarchy|1 +(noun)|lawlessness|disorder +anarhichadidae|1 +(noun)|Anarhichadidae|family Anarhichadidae|fish family +anarhichas|1 +(noun)|Anarhichas|genus Anarhichas|fish genus +anarthria|1 +(noun)|speech disorder|speech defect|defect of speech +anas|3 +(noun)|Anas|genus Anas|bird genus +(noun)|Ana|Celtic deity +(noun)|ana|collection|aggregation|accumulation|assemblage +anas acuta|1 +(noun)|pintail|pin-tailed duck|Anas acuta|duck +anas americana|1 +(noun)|American widgeon|baldpate|Anas americana|widgeon|wigeon|Anas penelope +anas clypeata|1 +(noun)|shoveler|shoveller|broadbill|Anas clypeata|duck +anas crecca|1 +(noun)|greenwing|green-winged teal|Anas crecca|teal +anas discors|1 +(noun)|bluewing|blue-winged teal|Anas discors|teal +anas penelope|1 +(noun)|widgeon|wigeon|Anas penelope|duck +anas platyrhynchos|1 +(noun)|mallard|Anas platyrhynchos|duck +anas querquedula|1 +(noun)|garganey|Anas querquedula|teal +anas rubripes|1 +(noun)|black duck|Anas rubripes|duck +anasa|1 +(noun)|Anasa|genus Anasa|arthropod genus +anasa tristis|1 +(noun)|squash bug|Anasa tristis|coreid bug|coreid +anasarca|1 +(noun)|edema|oedema|hydrops|dropsy +anasarcous|1 +(adj)|edema|oedema|hydrops|dropsy +anasazi|1 +(noun)|Anasazi|Indian|North American Indian|American Indian|Red Indian +anaspid|1 +(noun)|jawless vertebrate|jawless fish|agnathan +anaspida|1 +(noun)|Anaspida|order Anaspida|animal order +anastalsis|1 +(noun)|bodily process|body process|bodily function|activity +anastatica|1 +(noun)|Anastatica|genus Anastatica|dilleniid dicot genus +anastatica hierochuntica|1 +(noun)|rose of Jericho|resurrection plant|Anastatica hierochuntica|crucifer|cruciferous plant +anastigmat|1 +(noun)|lens|lense|lens system +anastigmatic|2 +(adj)|stigmatic|lens|lense|lens system +(adj)|anastigmatic |stigmatic +anastigmatic lens|1 +(noun)|lens|lense|lens system +anastomose|2 +(verb)|inosculate|join|conjoin +(verb)|inosculate|join|bring together +anastomosis|1 +(noun)|inosculation|junction|conjunction|conjugation|colligation +anastomotic|1 +(adj)|junction|conjunction|conjugation|colligation +anastomotic vein|1 +(noun)|vena anastomotica|vein|vena|venous blood vessel +anastomus|1 +(noun)|Anastomus|genus Anastomus|bird genus +anastrophe|1 +(noun)|inversion|rhetorical device +anastylosis|1 +(noun)|reassembly|refabrication +anathema|2 +(noun)|bete noire|unpleasant person|disagreeable person +(noun)|execration|condemnation|curse +anathematisation|1 +(noun)|anathematization|banishment|proscription +anathematise|1 +(verb)|execrate|anathemize|comminate|anathemise|anathematize|deplore +anathematization|1 +(noun)|anathematisation|banishment|proscription +anathematize|1 +(verb)|execrate|anathemize|comminate|anathemise|anathematise|deplore +anathemise|2 +(verb)|curse|beshrew|damn|bedamn|anathemize|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(verb)|execrate|anathemize|comminate|anathematize|anathematise|deplore +anathemize|2 +(verb)|curse|beshrew|damn|bedamn|anathemise|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(verb)|execrate|comminate|anathemise|anathematize|anathematise|deplore +anatidae|1 +(noun)|Anatidae|family Anatidae|bird family +anatole france|1 +(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer|author +anatoli karpov|1 +(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master +anatoli yevgenevich karpov|1 +(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master +anatolia|1 +(noun)|Asia Minor|Anatolia|peninsula +anatolian|1 +(noun)|Anatolian|Anatolian language|Indo-European|Indo-European language|Indo-Hittite +anatolian language|1 +(noun)|Anatolian|Anatolian language|Indo-European|Indo-European language|Indo-Hittite +anatomic|2 +(adj)|anatomical|body|organic structure|physical structure +(adj)|anatomical|morphology +anatomical|3 +(adj)|anatomic|body|organic structure|physical structure +(adj)|anatomic|morphology +(noun)|anatomical reference|saying|expression|locution +anatomical reference|1 +(noun)|anatomical|saying|expression|locution +anatomical sphincter|1 +(noun)|sphincter|sphincter muscle|muscle|musculus +anatomical structure|1 +(noun)|structure|complex body part|bodily structure|body structure|body part +anatomise|1 +(verb)|anatomize|dissect +anatomist|1 +(noun)|expert +anatomize|2 +(verb)|anatomise|dissect +(verb)|analyze|analyse|study|examine|canvass|canvas +anatomy|3 +(noun)|general anatomy|morphology +(noun)|human body|physical body|material body|soma|build|figure|physique|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +(noun)|analysis +anatotitan|1 +(noun)|hadrosaur|hadrosaurus|duck-billed dinosaur +anatoxin|1 +(noun)|toxoid|bacterial toxin|antigen +anatropous|1 +(adj)|anatropous |inverted +anatropous ovule|1 +(noun)|ovule +anaxagoras|1 +(noun)|Anaxagoras|philosopher +anaximander|1 +(noun)|Anaximander|philosopher|astronomer|uranologist|stargazer +anaximenes|1 +(noun)|Anaximenes|philosopher +ancestor|1 +(noun)|ascendant|ascendent|antecedent|root|relative|relation +ancestor worship|1 +(noun)|worship +ancestral|2 +(adj)|hereditary|patrimonial|transmissible|inheritable |heritable +(adj)|relative|relation +ancestress|1 +(noun)|ancestor|ascendant|ascendent|antecedent|root +ancestry|2 +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|origin|parentage|stemma|stock|genealogy|family tree +(noun)|lineage|derivation|filiation|inheritance|hereditary pattern +anchor|5 +(noun)|ground tackle|hook|claw +(noun)|mainstay|keystone|backbone|linchpin|lynchpin|support +(noun)|anchorman|anchorperson|television reporter|television newscaster|TV reporter|TV newsman +(verb)|ground|fasten|fix|secure +(verb)|cast anchor|drop anchor|fasten|fix|secure +anchor chain|1 +(noun)|chain +anchor light|1 +(noun)|riding light|riding lamp|light|light source +anchor ring|1 +(noun)|ring|halo|annulus|anulus|doughnut|toroid +anchorage|4 +(noun)|fee +(noun)|Anchorage|city|metropolis|urban center +(noun)|anchorage ground|area|country +(noun)|arrival +anchorage ground|1 +(noun)|anchorage|area|country +anchorite|1 +(noun)|hermit|eremite +anchoritic|1 +(adj)|eremitic|eremitical|hermitic|hermitical|unworldly +anchorman|1 +(noun)|anchor|anchorperson|television reporter|television newscaster|TV reporter|TV newsman +anchorperson|1 +(noun)|anchor|anchorman|television reporter|television newscaster|TV reporter|TV newsman +anchovy|2 +(noun)|fish +(noun)|soft-finned fish|malacopterygian +anchovy butter|1 +(noun)|spread|paste +anchovy dressing|1 +(noun)|dressing|salad dressing +anchovy paste|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +anchovy pear|2 +(noun)|anchovy pear tree|Grias cauliflora|fruit tree +(noun)|river pear|edible fruit +anchovy pear tree|1 +(noun)|anchovy pear|Grias cauliflora|fruit tree +anchovy pizza|1 +(noun)|pizza|pizza pie +anchovy sauce|1 +(noun)|sauce +anchusa|1 +(noun)|herb|herbaceous plant +anchusa capensis|1 +(noun)|cape forget-me-not|Anchusa capensis|anchusa +anchusa officinalis|1 +(noun)|bugloss|alkanet|Anchusa officinalis|anchusa +anchusa riparia|1 +(noun)|cape forget-me-not|Anchusa riparia|anchusa +anchylosis|1 +(noun)|ankylosis|pathology +ancien regime|1 +(noun)|government|authorities|regime +ancient|2 +(adj)|past +(adj)|old +ancient greek|1 +(noun)|Ancient Greek|Greek|Hellenic|Hellenic language +ancient history|2 +(noun)|history|account|chronicle|story +(noun)|common knowledge +ancient pine|1 +(noun)|Pinus longaeva|pine|pine tree|true pine +ancientness|1 +(noun)|antiquity|oldness +ancients|1 +(noun)|people +ancillary|1 +(adj)|accessory|adjunct|adjuvant|appurtenant|auxiliary|subsidiary|supportive +ancistrodon|1 +(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus +ancohuma|1 +(noun)|Ancohuma|mountain peak +anconeous muscle|1 +(noun)|musculus anconeus|skeletal muscle|striated muscle +ancylidae|1 +(noun)|Ancylidae|family Ancylidae|mollusk family +ancylose|2 +(verb)|ankylose|join|bring together +(verb)|ankylose|grow +ancylostomatidae|1 +(noun)|Ancylostomatidae|family Ancylostomatidae|worm family +ancylus|1 +(noun)|Ancylus|genus Ancylus|mollusk genus +ancylus fluviatilis|1 +(noun)|river limpet|freshwater limpet|Ancylus fluviatilis|gastropod|univalve +and circuit|1 +(noun)|AND circuit|AND gate|gate|logic gate +and elsewhere|1 +(adv)|et al.|et al +and gate|1 +(noun)|AND circuit|AND gate|gate|logic gate +and how|1 +(adv)|you bet|you said it +and others|1 +(adv)|et al.|et al +and so|1 +(adv)|then|so|and then +and so forth|1 +(adv)|and so on|etcetera|etc. +and so on|1 +(adv)|and so forth|etcetera|etc. +and then|1 +(adv)|then|so|and so +andalucia|1 +(noun)|Andalusia|Andalucia|geographical area|geographic area|geographical region|geographic region +andalusia|1 +(noun)|Andalusia|Andalucia|geographical area|geographic area|geographical region|geographic region +andalusian|1 +(adj)|Andalusian|geographical area|geographic area|geographical region|geographic region +andaman marble|1 +(noun)|marblewood|marble-wood|Andaman marble|Diospyros kurzii|tree +andaman redwood|1 +(noun)|amboyna|Andaman redwood|rosewood +andaman sea|1 +(noun)|Andaman Sea|bay +andante|2 +(adj)|slow +(noun)|tempo|pacing +andantino|1 +(adj)|fast +andean|1 +(adj)|Andean|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +andean condor|1 +(noun)|Andean condor|Vultur gryphus|condor +andelmin|1 +(noun)|angelim|tree +anders celsius|1 +(noun)|Celsius|Anders Celsius|astronomer|uranologist|stargazer +andersen|1 +(noun)|Andersen|Hans Christian Andersen|writer|author +anderson|5 +(noun)|Anderson|Sherwood Anderson|writer|author +(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist +(noun)|Anderson|Maxwell Anderson|dramatist|playwright +(noun)|Anderson|Marian Anderson|contralto +(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist +andes|1 +(noun)|Andes|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +andesite|1 +(noun)|igneous rock +andhra pradesh|1 +(noun)|Andhra Pradesh|state|province +andira|1 +(noun)|Andira|genus Andira|rosid dicot genus +andira inermis|1 +(noun)|cabbage bark|cabbage-bark tree|cabbage tree|Andira inermis|angelim|andelmin +andiron|1 +(noun)|firedog|dog|dog-iron|support +andorra|1 +(noun)|Andorra|Principality of Andorra|European country|European nation +andorran|2 +(adj)|Andorran|European country|European nation +(noun)|Andorran|European +andosite|1 +(noun)|igneous rock +andradite|1 +(noun)|garnet +andre derain|1 +(noun)|Derain|Andre Derain|painter +andre gide|1 +(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer|author|dramatist|playwright +andre le notre|1 +(noun)|Le Notre|Andre Le Notre|landscape architect|landscape gardener|landscaper|landscapist +andre maginot|1 +(noun)|Maginot|Andre Maginot|politician|politico|pol|political leader +andre malraux|1 +(noun)|Malraux|Andre Malraux|writer|author +andre markoff|1 +(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician +andre maurois|1 +(noun)|Maurois|Andre Maurois|Emile Herzog|writer|author +andre paul guillaume gide|1 +(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer|author|dramatist|playwright +andre weil|1 +(noun)|Weil|Andre Weil|mathematician +andrea guarneri|1 +(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker +andrea mantegna|1 +(noun)|Mantegna|Andrea Mantegna|painter|engraver +andrea palladio|1 +(noun)|Palladio|Andrea Palladio|architect|designer +andreaea|1 +(noun)|Andreaea|genus Andreaea|moss genus +andreaeales|1 +(noun)|Andreaeales|order Andreaeales|plant order +andreas vesalius|1 +(noun)|Vesalius|Andreas Vesalius|anatomist +andrei andreyevich gromyko|1 +(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador|embassador +andrei arsenevich tarkovsky|1 +(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker|filmmaker|film producer|movie maker +andrei dimitrievich sakharov|1 +(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist +andrei gromyko|1 +(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador|embassador +andrei markov|1 +(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician +andrei sakharov|1 +(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist +andrei tarkovsky|1 +(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker|filmmaker|film producer|movie maker +andrei voznesenski|1 +(noun)|Voznesenski|Andrei Voznesenski|poet +andrena|1 +(noun)|andrenid|mining bee|bee +andrenid|1 +(noun)|andrena|mining bee|bee +andrenidae|1 +(noun)|Andrenidae|family Andrenidae|arthropod family +andres martinez|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +andres segovia|1 +(noun)|Segovia|Andres Segovia|guitarist|guitar player|composer +andrew|1 +(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle|saint +andrew's clintonia|1 +(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia|Clinton's lily +andrew carnegie|1 +(noun)|Carnegie|Andrew Carnegie|industrialist|philanthropist|altruist +andrew d. white|1 +(noun)|White|Andrew D. White|Andrew Dickson White|educator|pedagogue +andrew dickson white|1 +(noun)|White|Andrew D. White|Andrew Dickson White|educator|pedagogue +andrew fielding huxley|1 +(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist +andrew huxley|1 +(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist +andrew jackson|1 +(noun)|Jackson|Andrew Jackson|Old Hickory|general|full general|President of the United States|United States President|President|Chief Executive +andrew jackson downing|1 +(noun)|Downing|Andrew Jackson Downing|landscape architect|landscape gardener|landscaper|landscapist +andrew johnson|1 +(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States|United States President|President|Chief Executive +andrew lloyd webber|1 +(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer +andrew marvell|1 +(noun)|Marvell|Andrew Marvell|poet +andrew mellon|1 +(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier|moneyman|philanthropist|altruist +andrew w. mellon|1 +(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier|moneyman|philanthropist|altruist +andrew william mellon|1 +(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier|moneyman|philanthropist|altruist +andrew wyeth|1 +(noun)|Wyeth|Andrew Wyeth|painter +andrews|2 +(noun)|Andrews|Roy Chapman Andrews|naturalist|natural scientist +(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle|saint +andricus|1 +(noun)|Andricus|genus Andricus|arthropod genus +androecium|1 +(noun)|gametoecium +androgen|1 +(noun)|androgenic hormone|steroid hormone|steroid|sex hormone +androgenesis|1 +(noun)|androgeny|parthenogenesis|parthenogeny|virgin birth +androgenetic|1 +(adj)|androgenous|parthenogenesis|parthenogeny|virgin birth +androgenic|1 +(adj)|steroid hormone|steroid|sex hormone +androgenic hormone|1 +(noun)|androgen|steroid hormone|steroid|sex hormone +androgenous|2 +(adj)|bisexual|bisexual person +(adj)|androgenetic|parthenogenesis|parthenogeny|virgin birth +androgeny|1 +(noun)|androgenesis|parthenogenesis|parthenogeny|virgin birth +androglossia|1 +(noun)|voice +androgyne|1 +(noun)|hermaphrodite|intersex|gynandromorph|epicine|epicine person|bisexual|bisexual person +androgynous|1 +(adj)|androgynous |bisexual|epicene|gynandromorphic|gynandromorphous|hermaphroditic|hermaphrodite|intersexual|pseudohermaphroditic|pseudohermaphrodite|unisex +androgyny|1 +(noun)|hermaphroditism|bisexuality|sex|gender|sexuality +android|1 +(noun)|humanoid|mechanical man|automaton|robot|golem +andromeda|3 +(noun)|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub|bush +(noun)|shrub|bush +(noun)|Andromeda|constellation +andromeda galaxy|1 +(noun)|Andromeda galaxy|spiral galaxy|spiral nebula +andromeda glaucophylla|1 +(noun)|bog rosemary|moorwort|Andromeda glaucophylla|andromeda +andromeda polifolia|1 +(noun)|marsh andromeda|common bog rosemary|Andromeda polifolia|andromeda +androphobia|1 +(noun)|social phobia +andropogon|1 +(noun)|Andropogon|genus Andropogon|monocot genus|liliopsid genus +andropogon furcatus|1 +(noun)|bluestem|blue stem|Andropogon furcatus|Andropogon gerardii|grass +andropogon gerardii|1 +(noun)|bluestem|blue stem|Andropogon furcatus|Andropogon gerardii|grass +andropogon scoparius|1 +(noun)|broom beard grass|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass +andropogon virginicus|1 +(noun)|broom sedge|Andropogon virginicus|broom grass +androsterone|1 +(noun)|androgen|androgenic hormone|ketosteroid +andryala|1 +(noun)|herb|herbaceous plant +andrzej wajda|1 +(noun)|Wajda|Andrzej Wajda|film maker|filmmaker|film producer|movie maker +andvari|1 +(noun)|Andvari|gnome|dwarf +andy warhol|1 +(noun)|Warhol|Andy Warhol|painter +ane|1 +(adj)|one|1|i|cardinal +anecdotal|2 +(adj)|report|account +(adj)|anecdotic|anecdotical|communicative |communicatory +anecdote|1 +(noun)|report|account +anecdotic|1 +(adj)|anecdotal|anecdotical|communicative |communicatory +anecdotical|1 +(adj)|anecdotic|anecdotal|communicative |communicatory +anecdotist|1 +(noun)|raconteur|narrator|storyteller|teller +anechoic|1 +(adj)|unreverberant |nonresonant +anechoic chamber|1 +(noun)|room +aneides|1 +(noun)|Aneides|genus Aneides|amphibian genus +aneides lugubris|1 +(noun)|arboreal salamander|Aneides lugubris|climbing salamander +anele|1 +(verb)|anoint|inunct|oil|embrocate|bless +anemia|3 +(noun)|anaemia|blood disease|blood disorder +(noun)|anaemia|symptom +(noun)|Anemia|genus Anemia|fern genus +anemia adiantifolia|1 +(noun)|pine fern|Anemia adiantifolia|fern +anemic|2 +(adj)|anaemic|weak +(adj)|anaemic|blood disease|blood disorder +anemic anoxia|1 +(noun)|anoxia +anemic hypoxia|1 +(noun)|hypoxia +anemographic|1 +(adj)|measurement|measuring|measure|mensuration +anemography|1 +(noun)|measurement|measuring|measure|mensuration +anemometer|1 +(noun)|wind gauge|wind gage|gauge|gage +anemometric|1 +(adj)|anemometrical|measurement|measuring|measure|mensuration +anemometrical|1 +(adj)|anemometric|measurement|measuring|measure|mensuration +anemometry|1 +(noun)|measurement|measuring|measure|mensuration +anemone|2 +(noun)|windflower|flower +(noun)|sea anemone|anthozoan|actinozoan +anemone canadensis|1 +(noun)|Canada anemone|Anemone Canadensis|anemone|windflower +anemone cylindrica|1 +(noun)|thimbleweed|Anemone cylindrica|anemone|windflower +anemone fish|1 +(noun)|damselfish|demoiselle +anemone ludoviciana|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +anemone nemorosa|1 +(noun)|wood anemone|Anemone nemorosa|anemone|windflower +anemone occidentalis|1 +(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower|pasque flower +anemone pulsatilla|1 +(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower|pasque flower +anemone quinquefolia|1 +(noun)|wood anemone|snowdrop|Anemone quinquefolia|anemone|windflower +anemone riparia|1 +(noun)|longheaded thimbleweed|Anemone riparia|thimbleweed|Anemone cylindrica +anemone sylvestris|1 +(noun)|snowdrop anemone|snowdrop windflower|Anemone sylvestris|anemone|windflower +anemone tetonensis|1 +(noun)|Alpine anemone|mountain anemone|Anemone tetonensis|anemone|windflower +anemone virginiana|1 +(noun)|Virginia thimbleweed|Anemone virginiana|thimbleweed|Anemone cylindrica +anemonella|1 +(noun)|Anemonella|genus Anemonella|magnoliid dicot genus +anemonella thalictroides|1 +(noun)|rue anemone|Anemonella thalictroides|flower +anemophilous|1 +(adj)|anemophilous +anemopsis|1 +(noun)|Anemopsis|genus Anemopsis|dicot genus|magnoliopsid genus +anemopsis californica|1 +(noun)|yerba mansa|Anemopsis californica|herb|herbaceous plant +anencephalia|1 +(noun)|anencephaly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +anencephalic|1 +(adj)|anencephalous|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +anencephalous|1 +(adj)|anencephalic|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +anencephaly|1 +(noun)|anencephalia|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +anergy|2 +(noun)|immunological disorder +(noun)|inaction|inactivity|inactiveness +aneroid|2 +(adj)|barometer +(noun)|aneroid barometer|barometer +aneroid barometer|1 +(noun)|aneroid|barometer +anesthesia|1 +(noun)|anaesthesia|physiological state|physiological condition +anesthesiologist|1 +(noun)|anesthetist|anaesthetist|specialist|medical specialist +anesthesiology|1 +(noun)|medicine|medical specialty +anesthetic|2 +(adj)|anaesthetic|insensible +(noun)|anaesthetic|anesthetic agent|anaesthetic agent|drug +anesthetic agent|1 +(noun)|anesthetic|anaesthetic|anaesthetic agent|drug +anesthetise|1 +(verb)|anesthetize|anaesthetize|anaesthetise|put to sleep|put under|put out|drug|dose +anesthetised|1 +(adj)|anesthetized|anaesthetized|anaesthetised|insensible +anesthetist|1 +(noun)|anesthesiologist|anaesthetist|specialist|medical specialist +anesthetize|1 +(verb)|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out|drug|dose +anesthetized|1 +(adj)|anesthetised|anaesthetized|anaesthetised|insensible +anesthyl|1 +(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +anestric|1 +(adj)|anestrous|anoestrous|physiological state|physiological condition +anestrous|2 +(adj)|anestric|anoestrous|physiological state|physiological condition +(adj)|anestrous |diestrous|dioestrous|diestrual|dioestrual +anestrum|1 +(noun)|anestrus|anoestrus|anoestrum|physiological state|physiological condition +anestrus|1 +(noun)|anestrum|anoestrus|anoestrum|physiological state|physiological condition +anethum|1 +(noun)|Anethum|genus Anethum|rosid dicot genus +anethum graveolens|1 +(noun)|dill|Anethum graveolens|herb|herbaceous plant +aneuploid|1 +(adj)|abnormality|abnormalcy|abnormal condition +aneuploidy|1 +(noun)|abnormality|abnormalcy|abnormal condition +aneurin|1 +(noun)|vitamin B1|thiamine|thiamin|antiberiberi factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +aneurism|1 +(noun)|aneurysm|cardiovascular disease +aneurismal|1 +(adj)|aneurysmal|aneurysmatic|aneurismatic|cardiovascular disease +aneurismatic|1 +(adj)|aneurysmal|aneurismal|aneurysmatic|cardiovascular disease +aneurysm|1 +(noun)|aneurism|cardiovascular disease +aneurysmal|1 +(adj)|aneurismal|aneurysmatic|aneurismatic|cardiovascular disease +aneurysmatic|1 +(adj)|aneurysmal|aneurismal|aneurismatic|cardiovascular disease +anew|1 +(adv)|afresh +anfractuous|1 +(adj)|crooked +ang|1 +(noun)|Air National Guard|ANG|National Guard|home reserve +angas|1 +(noun)|Angas|West Chadic +angel|4 +(noun)|spiritual being|supernatural being +(noun)|saint|holy man|holy person|good person +(noun)|backer|patron|sponsor|supporter +(noun)|Angel|Angel Falls|waterfall|falls +angel's trumpet|2 +(noun)|Brugmansia suaveolens|Datura suaveolens|shrub|bush +(noun)|maikoa|Brugmansia arborea|Datura arborea|shrub|bush +angel-wing begonia|1 +(noun)|Begonia cocchinea|begonia +angel cake|1 +(noun)|angel food cake|sponge cake +angel dust|1 +(noun)|phencyclidine|phencyclidine hydrochloride|PCP|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +angel falls|1 +(noun)|Angel|Angel Falls|waterfall|falls +angel food cake|1 +(noun)|angel cake|sponge cake +angel shark|1 +(noun)|angelfish|Squatina squatina|monkfish|shark +angelfish|3 +(noun)|butterfly fish +(noun)|spadefish|Chaetodipterus faber|percoid fish|percoid|percoidean +(noun)|angel shark|Squatina squatina|monkfish|shark +angelic|3 +(adj)|angelical|beatific|saintlike|saintly|sainted|good +(adj)|angelical|spiritual being|supernatural being +(adj)|angelical|cherubic|seraphic|sweet|lovable |loveable +angelica|3 +(noun)|angelique|herb|herbaceous plant +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|herb +angelica archangelica|1 +(noun)|garden angelica|archangel|Angelica Archangelica|angelica|angelique +angelica sylvestris|1 +(noun)|wild angelica|Angelica sylvestris|angelica|angelique +angelical|3 +(adj)|angelic|spiritual being|supernatural being +(adj)|angelic|cherubic|seraphic|sweet|lovable |loveable +(adj)|angelic|beatific|saintlike|saintly|sainted|good +angelim|1 +(noun)|andelmin|tree +angelique|1 +(noun)|angelica|herb|herbaceous plant +angelology|1 +(noun)|theology|divinity +angelus|2 +(noun)|angelus bell|bell|toll +(noun)|Angelus|prayer +angelus bell|1 +(noun)|angelus|bell|toll +anger|5 +(noun)|choler|ire|emotion +(noun)|angriness|emotional arousal +(noun)|wrath|ire|ira|mortal sin|deadly sin +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|see red|feel|experience +angered|1 +(adj)|enraged|furious|infuriated|maddened|angry +angevin|1 +(noun)|Angevin|Angevine|Frenchman|Frenchwoman|French person +angevine|1 +(noun)|Angevin|Angevine|Frenchman|Frenchwoman|French person +angiitis|1 +(noun)|inflammation|redness|rubor|angiopathy +angina|2 +(noun)|inflammatory disease +(noun)|angina pectoris|heart disease|heart condition|cardiopathy +angina pectoris|1 +(noun)|angina|heart disease|heart condition|cardiopathy +anginal|1 +(adj)|anginose|anginous|heart disease|heart condition|cardiopathy +anginose|1 +(adj)|anginal|anginous|heart disease|heart condition|cardiopathy +anginous|1 +(adj)|anginal|anginose|heart disease|heart condition|cardiopathy +angiocardiogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +angiocarp|1 +(noun)|angiosperm|flowering plant +angiocarpic|1 +(adj)|angiocarpous|angiosperm|flowering plant +angiocarpous|1 +(adj)|angiocarpic|angiosperm|flowering plant +angiogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +angiogenesis inhibitor|1 +(noun)|medicine|medication|medicament|medicinal drug +angiogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +angiography|1 +(noun)|roentgenography|X-ray photography +angiohemophilia|1 +(noun)|von Willebrand's disease|vascular hemophilia|hemophilia|haemophilia|bleeder's disease +angiologist|1 +(noun)|doctor|doc|physician|MD|Dr.|medico +angiology|1 +(noun)|medicine|medical specialty +angioma|1 +(noun)|tumor|tumour|neoplasm|angiopathy +angiomatous|1 +(adj)|tumor|tumour|neoplasm|angiopathy +angiopathy|1 +(noun)|pathology +angioplasty|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +angiopteris|1 +(noun)|giant fern|Angiopteris evecta|tree fern +angiopteris evecta|1 +(noun)|angiopteris|giant fern|Angiopteris evecta|tree fern +angiosarcoma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +angioscope|1 +(noun)|microscope +angiosperm|1 +(noun)|flowering plant|spermatophyte|phanerogam|seed plant +angiospermae|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +angiospermous|1 +(adj)|spermatophyte|phanerogam|seed plant +angiospermous tree|1 +(noun)|flowering tree|tree +angiospermous yellowwood|1 +(noun)|yellowwood|yellowwood tree +angiotelectasia|1 +(noun)|physiological state|physiological condition +angiotensin|1 +(noun)|angiotonin|Hypertensin|vasoconstrictor|vasoconstrictive +angiotensin converting enzyme|1 +(noun)|protease|peptidase|proteinase|proteolytic enzyme +angiotensin converting enzyme inhibitor|1 +(noun)|ACE inhibitor|antihypertensive|antihypertensive drug +angiotensin i|1 +(noun)|angiotensin I|angiotensin|angiotonin|Hypertensin +angiotensin ii|1 +(noun)|angiotensin II|angiotensin|angiotonin|Hypertensin +angiotonin|1 +(noun)|angiotensin|Hypertensin|vasoconstrictor|vasoconstrictive +angle|8 +(noun)|space +(noun)|slant|point of view|viewpoint|stand|standpoint +(noun)|Angle|European +(verb)|travel|go|move|locomote +(verb)|lean|tilt|tip|slant|bend|flex +(verb)|fish|search|seek|look for +(verb)|fish +(verb)|slant|weight|bias|predetermine +angle-closure glaucoma|1 +(noun)|acute glaucoma|glaucoma +angle-park|1 +(verb)|park +angle bracket|2 +(noun)|bracket|punctuation|punctuation mark +(noun)|angle iron|bracket +angle iron|1 +(noun)|angle bracket|bracket +angle of attack|1 +(noun)|angle of incidence|incidence angle +angle of dip|1 +(noun)|dip|magnetic dip|magnetic inclination|inclination|angle +angle of extinction|1 +(noun)|extinction angle|angle +angle of incidence|1 +(noun)|incidence angle|angle +angle of inclination|1 +(noun)|inclination|angle +angle of reflection|1 +(noun)|angle +angle of refraction|1 +(noun)|angle +angle of view|1 +(noun)|view angle|angle +angled|1 +(adj)|angular |angulate +angled loofah|1 +(noun)|sing-kwa|Luffa acutangula|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +angledozer|1 +(noun)|bulldozer|dozer +angler|3 +(noun)|schemer|plotter +(noun)|troller|fisherman|fisher +(noun)|goosefish|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +angler fish|2 +(noun)|goosefish|angler|anglerfish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +(noun)| +anglerfish|1 +(noun)|goosefish|angler|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +anglesea|1 +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +anglesea island|1 +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +anglesey|1 +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +anglesey island|1 +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +anglewing|1 +(noun)|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +angleworm|1 +(noun)|earthworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +anglia|1 +(noun)|Anglia|England +anglian|1 +(noun)|Anglian|Old English|Anglo-Saxon +anglican|2 +(adj)|Anglican|Protestant denomination +(noun)|Anglican|Protestant +anglican catholic|1 +(noun)|Anglican Catholic|Catholic +anglican church|1 +(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination +anglican communion|1 +(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination +anglicanism|1 +(noun)|Anglicanism|Protestantism +anglicise|2 +(verb)|anglicize|change|alter|modify +(verb)|anglicize|adapt|accommodate +anglicism|2 +(noun)|Anglicism|Briticism|Britishism|formulation|expression +(noun)|Anglicism|Britishism|custom|usage|usance +anglicize|2 +(verb)|anglicise|change|alter|modify +(verb)|anglicise|adapt|accommodate +angling|1 +(noun)|fishing|sportfishing +anglo-american|1 +(noun)|Anglo-American|American +anglo-catholic|1 +(adj)|Anglo-catholic|Protestant denomination +anglo-catholicism|1 +(noun)|Anglo-Catholicism|High Anglicanism|Anglicanism +anglo-french|1 +(noun)|Anglo-French|Anglo-Norman|French +anglo-indian|2 +(adj)|Anglo-Indian|Asian country|Asian nation +(noun)|Anglo-Indian|English person +anglo-jewish|1 +(adj)|Anglo-Jewish|person|individual|someone|somebody|mortal|human|soul +anglo-norman|1 +(noun)|Anglo-French|Anglo-Norman|French +anglo-saxon|4 +(adj)|Anglo-Saxon|English person +(noun)|Anglo-Saxon|English person +(noun)|Anglo-Saxon|English person +(noun)|Old English|Anglo-Saxon|English|English language +anglo-saxon deity|1 +(noun)|Anglo-Saxon deity|deity|divinity|god|immortal +anglomania|1 +(noun)|Anglomania|enthusiasm +anglophil|1 +(noun)|anglophile|supporter|protagonist|champion|admirer|booster|friend +anglophile|1 +(noun)|anglophil|supporter|protagonist|champion|admirer|booster|friend +anglophilia|1 +(noun)|Anglophilia|admiration|esteem +anglophilic|1 +(adj)|Anglophilic|admiration|esteem +anglophobe|1 +(noun)|hater +anglophobia|1 +(noun)|Anglophobia|dislike +anglophobic|1 +(adj)|Anglophobic|dislike +angola|1 +(noun)|Angola|Republic of Angola|African country|African nation +angolan|2 +(adj)|Angolan|African country|African nation +(noun)|Angolan|African +angolan capital|1 +(noun)|Luanda|Angolan capital|national capital|port +angolan monetary unit|1 +(noun)|Angolan monetary unit|monetary unit +angolese|1 +(noun)|Angolese|Angolan +angora|3 +(noun)|Angora|Angora goat|domestic goat|Capra hircus +(noun)|Angora|Angora rabbit|rabbit|coney|cony +(noun)|Angora|Angora cat|domestic cat|house cat|Felis domesticus|Felis catus +angora cat|1 +(noun)|Angora|Angora cat|domestic cat|house cat|Felis domesticus|Felis catus +angora goat|1 +(noun)|Angora|Angora goat|domestic goat|Capra hircus +angora rabbit|1 +(noun)|Angora|Angora rabbit|rabbit|coney|cony +angostura|1 +(noun)|angostura bark|bark +angostura bark|1 +(noun)|angostura|bark +angostura bridge|1 +(noun)|Angostura Bridge|suspension bridge +angoumois grain moth|1 +(noun)|angoumois moth|Sitotroga cerealella|grain moth +angoumois moth|1 +(noun)|angoumois grain moth|Sitotroga cerealella|grain moth +angraecum|1 +(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus|liliopsid genus +angrecum|1 +(noun)|orchid|orchidaceous plant +angriness|1 +(noun)|anger|emotional arousal +angry|3 +(adj)|angry |aggravated|provoked|angered|enraged|furious|infuriated|maddened|choleric|irascible|hot under the collar|huffy|mad|sore|indignant|incensed|outraged|umbrageous|irate|ireful|smoldering|smouldering|wrathful|wroth|wrothful|black|livid +(adj)|furious|raging|tempestuous|wild|stormy +(adj)|unhealthy +angry walk|1 +(noun)|stalk|gait +angst|1 +(noun)|Angst|anxiety +angstrom|1 +(noun)|angstrom unit|A|metric linear unit +angstrom unit|1 +(noun)|angstrom|A|metric linear unit +anguid lizard|1 +(noun)|lizard +anguidae|1 +(noun)|Anguidae|family Anguidae|reptile family +anguilla|2 +(noun)|Anguilla|island +(noun)|Anguilla|genus Anguilla|fish genus +anguilla sucklandii|1 +(noun)|tuna|Anguilla sucklandii|eel +anguillan|2 +(adj)|Anguillan|island +(noun)|Anguillan|West Indian +anguillidae|1 +(noun)|Anguillidae|family Anguillidae|fish family +anguilliformes|1 +(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order +anguillula|1 +(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus +anguillula aceti|1 +(noun)|vinegar eel|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm +anguine|1 +(adj)|diapsid|diapsid reptile +anguis|1 +(noun)|Anguis|genus Anguis|reptile genus +anguis fragilis|1 +(noun)|blindworm|slowworm|Anguis fragilis|anguid lizard +anguish|4 +(noun)|torment|torture|distress|hurt|suffering +(noun)|distress +(verb)|suffer +(verb)|pain|hurt|upset|discompose|untune|disconcert|discomfit +anguished|1 +(adj)|tormented|tortured|sorrowful +angular|2 +(adj)|space +(adj)|angular |angulate|angled|asteroid|star-shaped|cuspate|cuspated|cusped|cuspidal|cuspidate|cuspidated|equiangular|isogonic|rectangular|sharp-cornered|three-cornered|triangular|tricuspid|tricuspidate|unicuspid|bicuspid|bicuspidate|pointed|square +angular artery|1 +(noun)|arteria angularis|artery|arteria|arterial blood vessel +angular distance|1 +(noun)|angle +angular momentum|1 +(noun)|momentum +angular position|1 +(noun)|position|spatial relation +angular shape|1 +(noun)|angularity|shape|form +angular unit|1 +(noun)|unit of measurement|unit +angular vein|1 +(noun)|vena angularis|vein|vena|venous blood vessel +angularity|2 +(noun)|angular shape|shape|form +(noun)|shape|form|configuration|contour|conformation +angulate|3 +(adj)|angular |angled|asteroid|star-shaped|cuspate|cuspated|cusped|cuspidal|cuspidate|cuspidated|equiangular|isogonic|rectangular|sharp-cornered|three-cornered|triangular|tricuspid|tricuspidate|unicuspid|bicuspid|bicuspidate|pointed|square +(adj)|rough +(verb)|change|alter|modify +angulation|2 +(noun)|measurement|measuring|measure|mensuration +(noun)|change of shape +angus|2 +(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity +(noun)|Aberdeen Angus|Angus|black Angus|beef|beef cattle +angus frank johnstone wilson|1 +(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer|author +angus og|1 +(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity +angwantibo|1 +(noun)|golden potto|Arctocebus calabarensis|lemur +anhedonia|1 +(noun)|psychological state|mental state +anhidrosis|1 +(noun)|anhydrosis|physiological state|physiological condition +anhima|1 +(noun)|Anhima|genus Anhima|bird genus +anhima cornuta|1 +(noun)|horned screamer|Anhima cornuta|screamer +anhimidae|1 +(noun)|Anhimidae|family Anhimidae|bird family +anhinga|1 +(noun)|snakebird|darter|pelecaniform seabird +anhinga anhinga|1 +(noun)|water turkey|Anhinga anhinga|snakebird|anhinga|darter +anhingidae|1 +(noun)|Anhingidae|family Anhingidae|bird family +anhydride|1 +(noun)|compound|chemical compound +anhydrosis|1 +(noun)|anhidrosis|physiological state|physiological condition +anhydrous|1 +(adj)|anhydrous +ani|1 +(noun)|cuckoo +anicius manlius severinus boethius|1 +(noun)|Boethius|Anicius Manlius Severinus Boethius|philosopher|statesman|solon|national leader +anicteric|2 +(adj)|symptom +(adj)|healthy +anigozanthus|1 +(noun)|Anigozanthus|genus Anigozanthus|monocot genus|liliopsid genus +anigozanthus manglesii|1 +(noun)|kangaroo paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb|herbaceous plant +anil|2 +(noun)|indigo|indigotin|dye|dyestuff +(noun)|Indigofera suffruticosa|Indigofera anil|indigo|indigo plant|Indigofera tinctoria +anile|1 +(adj)|old +aniline|1 +(noun)|aniline oil|aminobenzine|phenylamine|amine|aminoalkane +aniline dye|1 +(noun)|dye|dyestuff +aniline oil|1 +(noun)|aniline|aminobenzine|phenylamine|amine|aminoalkane +anima|1 +(noun)|self|ego +animadversion|1 +(noun)|censure|disapprobation|condemnation +animadvert|2 +(verb)|opine|speak up|sound off|declare +(verb)|reprimand|censure|criminate +animal|3 +(adj)|carnal|fleshly|sensual|physical +(adj)|animal |animallike|birdlike|cranelike|fishlike|horselike|insectlike +(noun)|animate being|beast|brute|creature|fauna|organism|being +animal-worship|1 +(noun)|zoolatry|worship +animal black|1 +(noun)|bone black|bone char|animal charcoal|char +animal charcoal|1 +(noun)|bone black|bone char|animal black|char +animal communication|1 +(noun)|signal|signaling|sign +animal disease|1 +(noun)|disease +animal fancier|1 +(noun)|fancier|enthusiast +animal fat|1 +(noun)|fat|animal material +animal fiber|1 +(noun)|animal fibre|natural fiber|natural fibre|animal product +animal fibre|1 +(noun)|animal fiber|natural fiber|natural fibre|animal product +animal foot|1 +(noun)|foot|vertebrate foot|pedal extremity +animal glue|1 +(noun)|glue|gum|mucilage|animal product +animal group|1 +(noun)|biological group +animal husbandry|1 +(noun)|farming|agriculture|husbandry +animal kingdom|1 +(noun)|Animalia|kingdom Animalia|kingdom +animal leg|1 +(noun)|leg +animal magnetism|1 +(noun)|bewitchery|beguilement|attractiveness +animal material|1 +(noun)|material|stuff +animal nature|1 +(noun)|animality|nature +animal oil|1 +(noun)|oil|animal material +animal order|1 +(noun)|order +animal pigment|1 +(noun)|pigment +animal product|1 +(noun)|animal material +animal psychology|1 +(noun)|comparative psychology|psychology|psychological science +animal scientist|1 +(noun)|zoologist|biologist|life scientist +animal skin|1 +(noun)|animal product +animal starch|1 +(noun)|glycogen|polysaccharide|polyose +animal stuffer|1 +(noun)|taxidermist|stuffer|craftsman|artisan|journeyman|artificer +animal tissue|1 +(noun)|tissue +animal toxin|1 +(noun)|zootoxin|toxin +animal trainer|1 +(noun)|handler|trainer +animal virus|1 +(noun)|virus +animalcule|1 +(noun)|animalculum|organism|being +animalculum|1 +(noun)|animalcule|organism|being +animalia|1 +(noun)|Animalia|kingdom Animalia|animal kingdom|kingdom +animalisation|1 +(noun)|brutalization|brutalisation|animalization|degradation|debasement +animalise|3 +(verb)|animalize|represent|interpret +(verb)|brutalize|brutalise|animalize|change|alter|modify +(verb)|brutalize|brutalise|animalize|change +animalism|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|physicality|disposition|temperament +animalistic|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +animality|1 +(noun)|animal nature|nature +animalization|2 +(noun)|delineation|depiction|limning|line drawing +(noun)|brutalization|brutalisation|animalisation|degradation|debasement +animalize|3 +(verb)|animalise|represent|interpret +(verb)|brutalize|brutalise|animalise|change|alter|modify +(verb)|brutalize|brutalise|animalise|change +animallike|1 +(adj)|animal +animate|7 +(adj)|animate +(adj)|animate +(adj)|sentient |sensate +(verb)|inspire|invigorate|enliven|exalt|stimulate|shake|shake up|excite|stir +(verb)|animize|animise|change|alter|modify +(verb)|enliven|liven|liven up|invigorate|stimulate|arouse|brace|energize|energise|perk up +(verb)|recreate|reanimate|revive|renovate|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +animate being|1 +(noun)|animal|beast|brute|creature|fauna|organism|being +animate thing|1 +(noun)|living thing|object|physical object +animated|2 +(adj)|animated |alive|enlivened|spirited|full of life|lively|vital|reanimated|revived +(adj)|moving +animated cartoon|1 +(noun)|cartoon|short subject +animated oat|1 +(noun)|wild red oat|Avene sterilis|oat +animateness|1 +(noun)|aliveness|liveness|physiological property +animating|1 +(adj)|enlivening|invigorating +animation|6 +(noun)|life|living|aliveness|being|beingness|existence +(noun)|vitality|animateness|aliveness|liveness +(noun)|spiritedness|invigoration|brio|vivification|activeness|activity +(noun)|vivification|invigoration|energizing|activating|activation +(noun)|filming|cinematography|motion-picture photography +(noun)|liveliness|activity +animatism|1 +(noun)|attribution|ascription +animatistic|1 +(adj)|attribution|ascription +animator|2 +(noun)|energizer|energiser|vitalizer|vitaliser|actor|doer|worker +(noun)|technician +animatronics|1 +(noun)|robotics +anime|2 +(noun)|Zanzibar copal|copal +(noun)|gum anime|natural resin +animise|1 +(verb)|animize|animate|change|alter|modify +animism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +animist|2 +(adj)|animistic|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|disciple|adherent +animistic|1 +(adj)|animist|doctrine|philosophy|philosophical system|school of thought|ism +animize|1 +(verb)|animise|animate|change|alter|modify +animosity|1 +(noun)|animus|bad blood|hostility|enmity|ill will +animus|1 +(noun)|animosity|bad blood|hostility|enmity|ill will +anion|1 +(noun)|ion +anionic|2 +(adj)|anionic |ion +(noun)|anionic detergent|non-ionic detergent|detergent +anionic compound|1 +(noun)|compound|chemical compound +anionic detergent|1 +(noun)|anionic|non-ionic detergent|detergent +anise|2 +(noun)|anise plant|Pimpinella anisum|herb|herbaceous plant +(noun)|aniseed|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +anise cookie|1 +(noun)|cookie|cooky|biscuit +anise hyssop|1 +(noun)|Agastache foeniculum|giant hyssop +anise plant|1 +(noun)|anise|Pimpinella anisum|herb|herbaceous plant +anise tree|1 +(noun)|tree +aniseed|1 +(noun)|anise|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +aniseikonia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +aniseikonic|1 +(adj)|visual impairment|visual defect|vision defect|visual disorder +anisette|1 +(noun)|anisette de Bordeaux|liqueur|cordial +anisette de bordeaux|1 +(noun)|anisette|anisette de Bordeaux|liqueur|cordial +anisogamete|1 +(noun)|gamete +anisogametic|1 +(adj)|gamete +anisogamic|1 +(adj)|anisogamous|sexual reproduction|amphimixis +anisogamous|1 +(adj)|anisogamic|sexual reproduction|amphimixis +anisogamy|1 +(noun)|sexual reproduction|amphimixis +anisometric|1 +(adj)|unsymmetrical|unequal +anisometropia|1 +(noun)|eye condition +anisometropic|1 +(adj)|eye condition +anisoptera|1 +(noun)|Anisoptera|suborder Anisoptera|animal order +anisotremus|1 +(noun)|Anisotremus|genus Anisotremus|fish genus +anisotremus surinamensis|1 +(noun)|pompon|black margate|Anisotremus surinamensis|grunt +anisotremus virginicus|1 +(noun)|porkfish|pork-fish|Anisotremus virginicus|grunt +anisotropic|1 +(adj)|anisotropic |aeolotropic|eolotropic +anisotropy|1 +(noun)|property +anit-impotence drug|1 +(noun)|virility drug|drug +anjou|2 +(noun)|Anjou|French region +(noun)|pear +ankara|1 +(noun)|Ankara|Turkish capital|capital of Turkey|national capital +ankle|1 +(noun)|ankle joint|mortise joint|articulatio talocruralis|gliding joint|articulatio plana +ankle-deep|1 +(adj)|knee-deep|shallow +ankle brace|1 +(noun)|brace +ankle bracelet|1 +(noun)|anklet|bracelet|bangle +ankle joint|1 +(noun)|ankle|mortise joint|articulatio talocruralis|gliding joint|articulatio plana +anklebone|1 +(noun)|astragal|astragalus|talus|bone|os +anklet|3 +(noun)|shoe +(noun)|anklets|bobbysock|bobbysocks|sock +(noun)|ankle bracelet|bracelet|bangle +anklets|4 +(noun)|anklet|bobbysock|bobbysocks|sock +(noun)|anklet|shoe +(noun)|anklet|bobbysock|bobbysocks|sock +(noun)|anklet|ankle bracelet|bracelet|bangle +ankyloglossia|1 +(noun)|tongue tie|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +ankylosaur|1 +(noun)|ankylosaurus|armored dinosaur +ankylosaurus|1 +(noun)|ankylosaur|armored dinosaur +ankylose|2 +(verb)|ancylose|join|bring together +(verb)|ancylose|grow +ankylosing spondylitis|1 +(noun)|Marie-Strumpell disease|rheumatoid spondylitis|spondylitis|autoimmune disease|autoimmune disorder +ankylosis|1 +(noun)|anchylosis|pathology +ankylotic|1 +(adj)|pathology +anlage|1 +(noun)|primordium|organ +ann arbor|1 +(noun)|Ann Arbor|city|metropolis|urban center +anna|1 +(noun)|Pakistani monetary unit +anna amalia mercouri|1 +(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress +anna eleanor roosevelt|1 +(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat|diplomatist|writer|author +anna howard shaw|1 +(noun)|Shaw|Anna Howard Shaw|suffragist|doctor|doc|physician|MD|Dr.|medico +anna pavlova|1 +(noun)|Pavlova|Anna Pavlova|dancer|professional dancer +annaba|1 +(noun)|Annaba|city|metropolis|urban center|port +annalist|1 +(noun)|historian|historiographer +annalistic|1 +(adj)|history|account|chronicle|story +annals|2 +(noun)|journal +(noun)|chronological record|history|account|chronicle|story +annam|1 +(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country|Asian nation +annamese|2 +(noun)|Vietnamese|Annamese|Asian|Asiatic +(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer +annamite|1 +(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer +annapolis|1 +(noun)|Annapolis|capital of Maryland|state capital +annapurna|2 +(noun)|Parvati|Anapurna|Annapurna|Hindu deity +(noun)|Annapurna|Anapurna|mountain peak +anne boleyn|1 +(noun)|Boleyn|Anne Boleyn|queen +anne bradstreet|1 +(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet +anne bronte|1 +(noun)|Bronte|Anne Bronte|writer|author +anne dudley bradstreet|1 +(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet +anne hathaway|1 +(noun)|Hathaway|Anne Hathaway|wife|married woman +anne hutchinson|1 +(noun)|Hutchinson|Anne Hutchinson|settler|colonist +anne mansfield sullivan|1 +(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator|pedagogue +anne mary robertson moses|1 +(noun)|Moses|Grandma Moses|Anne Mary Robertson Moses|painter +anne robert jacques turgot|1 +(noun)|Turgot|Anne Robert Jacques Turgot|economist|economic expert +anne sexton|1 +(noun)|Sexton|Anne Sexton|poet +anne sullivan|1 +(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator|pedagogue +anneal|1 +(verb)|temper|normalize|toughen +annealed|1 +(adj)|tempered |treated|hardened|toughened +annealing|1 +(noun)|tempering|hardening +annelid|2 +(adj)|annelidan|phylum +(noun)|annelid worm|segmented worm|worm +annelid worm|1 +(noun)|annelid|segmented worm|worm +annelida|1 +(noun)|Annelida|phylum Annelida|phylum +annelidan|1 +(adj)|annelid|phylum +annex|4 +(noun)|annexe|extension|wing|addition|add-on|improver +(verb)|appropriate|capture|seize|conquer +(verb)|assume|usurp|seize|take over|arrogate +(verb)|append|add on|supplement|affix +annexa|1 +(noun)|adnexa|body part +annexal|1 +(adj)|adnexal|body part +annexation|2 +(noun)|appropriation|incorporation +(noun)|acquisition +annexational|1 +(adj)|acquisition +annexe|1 +(noun)|annex|extension|wing|addition|add-on|improver +annie oakley|1 +(noun)|Oakley|Annie Oakley|marksman|sharpshooter|crack shot +anniellidae|1 +(noun)|Anniellidae|family Anniellidae|reptile family +annihilate|1 +(verb)|eliminate|extinguish|eradicate|wipe out|decimate|carry off|kill +annihilated|1 +(adj)|exterminated|wiped out|destroyed +annihilating|2 +(adj)|annihilative|devastating|withering|destructive +(adj)|devastating|withering|disrespectful +annihilation|2 +(noun)|obliteration|destruction|devastation +(noun)|disintegration|destruction|demolition|wipeout +annihilative|1 +(adj)|annihilating|devastating|withering|destructive +annihilator|1 +(noun)|destroyer|ruiner|undoer|waster|uprooter +anniversary|1 +(noun)|day of remembrance|day +anno domini|1 +(adv)|AD|A.D.|anno Domini +annona|1 +(noun)|Annona|genus Annona|magnoliid dicot genus +annona cherimola|1 +(noun)|cherimoya|cherimoya tree|Annona cherimola|custard apple|custard apple tree +annona diversifolia|1 +(noun)|ilama|ilama tree|Annona diversifolia|custard apple|custard apple tree +annona glabra|1 +(noun)|pond apple|pond-apple tree|Annona glabra|custard apple|custard apple tree +annona muricata|1 +(noun)|soursop|prickly custard apple|soursop tree|Annona muricata|custard apple|custard apple tree +annona reticulata|1 +(noun)|bullock's heart|bullock's heart tree|bullock heart|Annona reticulata|custard apple|custard apple tree +annona squamosa|1 +(noun)|sweetsop|sweetsop tree|Annona squamosa|custard apple|custard apple tree +annonaceae|1 +(noun)|Annonaceae|family Annonaceae|custard-apple family|magnoliid dicot family +annotate|2 +(verb)|footnote|write|compose|pen|indite +(verb)|gloss|comment|interpret +annotating|1 +(noun)|annotation|expansion|expanding upon +annotation|2 +(noun)|note|notation|comment|commentary +(noun)|annotating|expansion|expanding upon +annotator|1 +(noun)|observer|commentator +announce|4 +(verb)|denote|inform +(verb)|declare|state|say|tell +(verb)|name|identify +(verb)|annunciate|harbinger|foretell|herald|tell +announced|1 +(adj)|proclaimed|declared +announcement|2 +(noun)|proclamation|annunciation|declaration|statement +(noun)|promulgation|statement +announcer|2 +(noun)|communicator +(noun)|broadcaster +annoy|1 +(verb)|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease +annoyance|5 +(noun)|irritation|vexation|botheration|psychological state|mental state +(noun)|chafe|vexation|anger|choler|ire +(noun)|aggravator|unpleasant person|disagreeable person +(noun)|bother|botheration|pain|infliction|pain in the neck|pain in the ass|negative stimulus +(noun)|annoying|irritation|vexation|mistreatment +annoyed|2 +(adj)|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stunng|displeased +(adj)|harassed|harried|pestered|vexed|troubled +annoyer|1 +(noun)|tease|teaser|vexer|unwelcome person|persona non grata +annoying|2 +(adj)|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +(noun)|annoyance|irritation|vexation|mistreatment +annual|4 +(adj)|yearly|time period|period of time|period +(adj)|annual |one-year +(noun)|plant|flora|plant life +(noun)|yearbook|reference book|reference|reference work|book of facts +annual fern|1 +(noun)|Jersey fern|Anogramma leptophylla|fern +annual parallax|1 +(noun)|heliocentric parallax|parallax +annual ring|1 +(noun)|growth ring|organic phenomenon +annual salt-marsh aster|1 +(noun)|aster +annually|2 +(adv)|yearly|every year|each year +(adv)|per annum|p.a.|per year|each year +annualry|1 +(noun)|ring finger|finger +annuitant|1 +(noun)|recipient|receiver +annuity|1 +(noun)|rente|regular payment +annuity in advance|1 +(noun)|annuity|rente +annul|2 +(verb)|invalidate|quash|void|avoid|nullify|cancel|strike down +(verb)|revoke|lift|countermand|reverse|repeal|overturn|rescind|vacate|cancel|strike down +annular|1 +(adj)|annulate|annulated|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded +annular eclipse|1 +(noun)|solar eclipse +annular scotoma|1 +(noun)|scotoma +annulate|1 +(adj)|annular|annulated|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded +annulated|1 +(adj)|annular|annulate|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded +annulet|3 +(noun)|roundel|charge|bearing|heraldic bearing|armorial bearing +(noun)|bandelet|bandelette|bandlet|square and rabbet|molding|moulding +(noun)|ring|band +annulment|3 +(noun)|revocation|state +(noun)|invalidation|dissolution|breakup +(noun)|abrogation|repeal|cancellation +annulus|2 +(noun)|ring|halo|anulus|doughnut|anchor ring|toroid +(noun)|plant part|plant structure +annum|1 +(noun)|year|twelvemonth|yr +annunciate|1 +(verb)|announce|harbinger|foretell|herald|tell +annunciation|3 +(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day +(noun)|Annunciation|announcement|promulgation +(noun)|announcement|proclamation|declaration|statement +annunciation day|1 +(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day +annunciation lily|1 +(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily +annunciator|1 +(noun)|indicator +annunciatory|1 +(adj)|statement +annwfn|1 +(noun)|Annwfn|Annwn|imaginary place|mythical place +annwn|1 +(noun)|Annwfn|Annwn|imaginary place|mythical place +ano|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +anoa|1 +(noun)|dwarf buffalo|Anoa depressicornis|Old World buffalo|buffalo +anoa depressicornis|1 +(noun)|anoa|dwarf buffalo|Anoa depressicornis|Old World buffalo|buffalo +anoa mindorensis|1 +(noun)|tamarau|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo|buffalo +anobiidae|1 +(noun)|Anobiidae|family Anobiidae|arthropod family +anodal|1 +(adj)|anodic |electrode +anode|2 +(noun)|electrode +(noun)|terminal|pole +anodic|1 +(adj)|anodic |anodal|electrode +anodise|1 +(verb)|anodize|coat|surface +anodize|1 +(verb)|anodise|coat|surface +anodonta|1 +(noun)|Anodonta|genus Anodonta|mollusk genus +anodyne|2 +(adj)|analgesic|analgetic|moderating +(noun)|analgesic|painkiller|pain pill|medicine|medication|medicament|medicinal drug +anoectochilus|1 +(noun)|Anoectochilus|genus Anoectochilus|monocot genus|liliopsid genus +anoestrous|1 +(adj)|anestrous|anestric|physiological state|physiological condition +anoestrum|1 +(noun)|anestrus|anestrum|anoestrus|physiological state|physiological condition +anoestrus|1 +(noun)|anestrus|anestrum|anoestrum|physiological state|physiological condition +anogramma|1 +(noun)|Anogramma|genus Anogramma|fern genus +anogramma leptophylla|1 +(noun)|annual fern|Jersey fern|Anogramma leptophylla|fern +anoint|1 +(verb)|inunct|oil|anele|embrocate|bless +anointer|1 +(noun)|religionist|religious person +anointing|1 +(noun)|anointment|application|coating|covering +anointing of the sick|1 +(noun)|extreme unction|last rites|sacrament +anointment|1 +(noun)|anointing|application|coating|covering +anole|1 +(noun)|American chameleon|Anolis carolinensis|iguanid|iguanid lizard +anolis|1 +(noun)|Anolis|genus Anolis|reptile genus +anolis carolinensis|1 +(noun)|American chameleon|anole|Anolis carolinensis|iguanid|iguanid lizard +anomala|1 +(noun)|Anomala|genus Anomala|arthropod genus +anomala orientalis|1 +(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle|scarabaeid|scarabaean +anomalist|1 +(noun)|intellectual|intellect +anomalistic month|1 +(noun)|month +anomalistic year|1 +(noun)|year +anomalopidae|1 +(noun)|Anomalopidae|family Anomalopidae|fish family +anomalops|1 +(noun)|flashlight fish|spiny-finned fish|acanthopterygian +anomalopteryx|1 +(noun)|Anomalopteryx oweni|moa +anomalopteryx oweni|1 +(noun)|anomalopteryx|Anomalopteryx oweni|moa +anomalous|1 +(adj)|abnormal +anomalous communication|1 +(noun)|psychic communication|psychical communication|communication +anomalousness|1 +(noun)|anomaly|abnormality|abnormalcy|abnormal condition +anomaly|3 +(noun)|anomalousness|abnormality|abnormalcy|abnormal condition +(noun)|unusual person|person|individual|someone|somebody|mortal|human|soul +(noun)|position|place +anomia|2 +(noun)|nominal aphasia|anomic aphasia|amnesic aphasia|amnestic aphasia|aphasia +(noun)|Anomia|genus Anomia|mollusk genus +anomia ephippium|1 +(noun)|saddle oyster|Anomia ephippium|oyster +anomic|1 +(adj)|alienated|disoriented|unoriented +anomic aphasia|1 +(noun)|nominal aphasia|anomia|amnesic aphasia|amnestic aphasia|aphasia +anomie|2 +(noun)|anomy|isolation +(noun)|anomy|immorality +anomiidae|1 +(noun)|Anomiidae|family Anomiidae|mollusk family +anomy|2 +(noun)|anomie|isolation +(noun)|anomie|immorality +anon|1 +(noun)|sweetsop|sugar apple|custard apple +anon.|1 +(adj)|anonymous |nameless|unidentified|unknown|unnamed +anonym|1 +(noun)|pseudonym|nom de guerre|name +anonymity|1 +(noun)|namelessness|obscurity +anonymous|2 +(adj)|anonymous |anon.|nameless|unidentified|unknown|unnamed +(adj)|faceless +anonymous file transfer protocol|1 +(noun)|anonymous ftp|file transfer protocol|FTP +anonymous ftp|1 +(noun)|anonymous file transfer protocol|file transfer protocol|FTP +anoperineal|1 +(adj)|orifice|opening|porta|area|region +anopheles|1 +(noun)|Anopheles|genus Anopheles|arthropod genus +anopheline|2 +(adj)|arthropod genus +(noun)|mosquito +anopia|1 +(noun)|blindness|sightlessness|cecity +anoplophora glabripennis|1 +(noun)|Asian longhorned beetle|Anoplophora glabripennis|beetle +anoplura|1 +(noun)|Anoplura|order Anoplura|animal order +anorak|1 +(noun)|parka|windbreaker|windcheater|jacket +anorchia|1 +(noun)|anorchism|anorchidism|abnormality|abnormalcy|abnormal condition +anorchidism|1 +(noun)|anorchism|anorchia|abnormality|abnormalcy|abnormal condition +anorchism|1 +(noun)|anorchidism|anorchia|abnormality|abnormalcy|abnormal condition +anorectal|1 +(adj)|orifice|opening|porta|body part +anorectic|3 +(adj)|anorexic|thin |lean +(adj)|anorexigenic|causative +(noun)|anorexic|sick person|diseased person|sufferer +anorexia|1 +(noun)|eating disorder +anorexia nervosa|1 +(noun)|anorexia +anorexic|2 +(adj)|anorectic|thin |lean +(noun)|anorectic|sick person|diseased person|sufferer +anorexigenic|1 +(adj)|anorectic|causative +anorgasmia|1 +(noun)|disability|disablement|handicap|impairment +anorthic|1 +(adj)|triclinic +anorthite|1 +(noun)|plagioclase|oligoclase +anorthitic|1 +(adj)|plagioclase|oligoclase +anorthography|1 +(noun)|agraphia|logagraphia|brain disorder|encephalopathy|brain disease +anorthopia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +anosmatic|1 +(adj)|anosmic|dysomia +anosmia|1 +(noun)|dysomia +anosmic|2 +(adj)|anosmatic|dysomia +(adj)|impaired +anostraca|1 +(noun)|Anostraca|order Anostraca|animal order +another|3 +(adj)|different|other +(adj)|additional|added +(adj)|some other|other +anouilh|1 +(noun)|Anouilh|Jean Anouilh|dramatist|playwright +anova|1 +(noun)|analysis of variance|ANOVA|multivariate analysis +anovulant|1 +(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +anovulation|1 +(noun)|organic process|biological process +anovulatory drug|1 +(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +anoxemia|1 +(noun)|pathology +anoxemic|1 +(adj)|pathology +anoxia|1 +(noun)|hypoxia +anoxic|1 +(adj)|hypoxia +anoxic anoxia|1 +(noun)|anoxia +ans|2 +(noun)|autonomic nervous system|ANS|neural structure +(noun)|Associate in Nursing|AN|associate degree|associate +ansaid|1 +(noun)|flurbiprofen|Ansaid|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ansar al-islam|2 +(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)| +ansar al islam|1 +(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization|terrorist group|foreign terrorist organization|FTO +anselm|1 +(noun)|Anselm|Saint Anselm|St. Anselm|archbishop|saint +anser|1 +(noun)|Anser|genus Anser|bird genus +anser anser|1 +(noun)|graylag|greylag|greylag goose|Anser anser|goose +anser cygnoides|1 +(noun)|Chinese goose|Anser cygnoides|goose +anseres|1 +(noun)|Anseres|suborder Anseres|animal order +anseriform bird|1 +(noun)|waterfowl|water bird|waterbird +anseriformes|1 +(noun)|Anseriformes|order Anseriformes|animal order +anserinae|1 +(noun)|Anserinae|subfamily Anserinae|bird family +anserine|2 +(adj)|bird family +(adj)|dopy|dopey|foolish|goosey|goosy|gooselike|stupid +anshar|1 +(noun)|Anshar|Semitic deity +answer|15 +(noun)|reply|response|statement +(noun)|solution|result|resolution|solvent|statement +(noun)|reply|response +(noun)|pleading +(noun)|reaction|response +(verb)|reply|respond|state|say|tell +(verb)|solve|work out|figure out|puzzle out|lick|work +(verb)|react|respond +(verb)|resolve|solve|work out|figure out|puzzle out|lick|work +(verb)|refute|rebut +(verb)|be +(verb)|suffice|do|serve|satisfy|fulfill|fulfil|live up to +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|meet|satisfy|fill|fulfill|fulfil +(verb)|react|respond +answer for|1 +(verb)|account|declare +answerability|1 +(noun)|accountability|answerableness|responsibility|responsibleness +answerable|2 +(adj)|soluble +(adj)|responsible +answerableness|1 +(noun)|accountability|answerability|responsibility|responsibleness +answerer|1 +(noun)|respondent|responder|communicator +answering|1 +(adj)|respondent|responsive +answering machine|1 +(noun)|electronic device +ant|1 +(noun)|emmet|pismire|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +ant bear|2 +(noun)|giant anteater|great anteater|tamanoir|Myrmecophaga jubata|anteater|New World anteater +(noun)|aardvark|anteater|Orycteropus afer|placental|placental mammal|eutherian|eutherian mammal +ant bird|2 +(noun)|antbird|tyrannid +(noun)| +ant cow|1 +(noun)|aphid +ant lion|3 +(noun)|doodlebug|antlion|larva +(noun)|antlion|antlion fly|neuropteron|neuropteran|neuropterous insect +(noun)| +ant shrike|1 +(noun)|antbird|ant bird +ant thrush|1 +(noun)|antbird|ant bird +antabuse|1 +(noun)|disulfiram|Antabuse|medicine|medication|medicament|medicinal drug +antacid|2 +(adj)|counteractive |antagonistic +(noun)|gastric antacid|alkalizer|alkaliser|antiacid|agent +antagonise|2 +(verb)|antagonize|counteract|act|move +(verb)|antagonize|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +antagonism|4 +(noun)|hostility|enmity|state +(noun)|opposition|oppositeness +(noun)|hostility|enmity|ill will|dislike +(noun)|hindrance|interference +antagonist|3 +(noun)|adversary|opponent|opposer|resister|person|individual|someone|somebody|mortal|human|soul +(noun)|antagonistic muscle +(noun)|drug +antagonistic|6 +(adj)|counter|negative +(adj)|antipathetic|antipathetical|hostile +(adj)|antagonistic |alienating +(adj)|antagonistic |incompatible +(adj)|counteractive |antacid|antidotal|antiphlogistic|countervailing|countervailing|offsetting|compensatory|compensative|opposing +(adj)|incompatible +antagonistic muscle|1 +(noun)|muscle|musculus +antagonize|2 +(verb)|antagonise|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|antagonise|counteract|act|move +antakiya|1 +(noun)|Antioch|Antakya|Antakiya|town +antakya|1 +(noun)|Antioch|Antakya|Antakiya|town +antalya|1 +(noun)|Antalya|Adalia|city|metropolis|urban center|port +antananarivo|1 +(noun)|Antananarivo|capital of Madagascar|national capital +antapex|1 +(noun)|celestial point +antarctic|3 +(adj)|continent +(adj)|south-polar|Antarctic|polar +(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone|polar zone +antarctic circle|1 +(noun)|Antarctic Circle|polar circle +antarctic continent|1 +(noun)|Antarctica|Antarctic continent|continent +antarctic ocean|1 +(noun)|Antarctic Ocean|ocean +antarctic peninsula|1 +(noun)|Antarctic Peninsula|Palmer Peninsula|peninsula +antarctic zone|1 +(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone|polar zone +antarctica|1 +(noun)|Antarctica|Antarctic continent|continent +antares|1 +(noun)|Antares|binary star|binary|double star +antbird|1 +(noun)|ant bird|tyrannid +ante|2 +(noun)|stake|stakes|bet|wager +(verb)|bet on|back|gage|stake|game|punt +ante meridiem|2 +(adj)|a.m.|antemeridian +(adv)|A.M. +ante up|1 +(verb)|pay up|pay|pay +anteater|6 +(noun)|pangolin|scaly anteater|placental|placental mammal|eutherian|eutherian mammal +(noun)|New World anteater|edentate +(noun)|aardvark|ant bear|Orycteropus afer|placental|placental mammal|eutherian|eutherian mammal +(noun)|numbat|banded anteater|Myrmecobius fasciatus|dasyurid marsupial|dasyurid +(noun)|echidna|spiny anteater|monotreme|egg-laying mammal +(noun)|echidna|spiny anteater|monotreme|egg-laying mammal +antebellum|1 +(adj)|nonmodern +antecede|1 +(verb)|predate|precede|forego|antedate +antecedence|1 +(noun)|priority|antecedency|anteriority|precedence|precedency|earliness +antecedency|1 +(noun)|priority|antecedence|anteriority|precedence|precedency|earliness +antecedent|5 +(adj)|antecedent |preceding|anterior|prior|anticipatory|prevenient|preexistent|pre-existent|preexisting|pre-existing|preceding +(noun)|ancestor|ascendant|ascendent|root|relative|relation +(noun)|cause +(noun)|forerunner|temporal relation +(noun)|referent +antecedently|1 +(adv)|previously +antechamber|1 +(noun)|anteroom|entrance hall|hall|foyer|lobby|vestibule|room +antecubital|1 +(adj)|hinge joint|ginglymus|ginglymoid joint +antedate|2 +(verb)|predate|precede|forego|antecede +(verb)|predate|foredate|chronologize|chronologise +antediluvial|1 +(adj)|antediluvian +antediluvian|4 +(adj)|antediluvial +(adj)|antiquated|archaic|old +(noun)|antediluvian patriarch|patriarch +(noun)|oldster|old person|senior citizen|golden ager +antediluvian patriarch|1 +(noun)|antediluvian|patriarch +antedon|1 +(noun)|Antedon|genus Antedon|echinoderm genus +antedonidae|1 +(noun)|Antedonidae|family Antedonidae|echinoderm family +antefix|1 +(noun)|architectural ornament +antelope|1 +(noun)|bovid +antelope chipmunk|1 +(noun)|antelope squirrel|whitetail antelope squirrel|Citellus leucurus|ground squirrel|gopher|spermophile +antelope squirrel|1 +(noun)|whitetail antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel|gopher|spermophile +antemeridian|1 +(adj)|antemeridian |ante meridiem|a.m.|morning +antemortem|1 +(adj)|antemortem +antenatal|1 +(adj)|prenatal |antepartum +antenna|3 +(noun)|aerial|transmitting aerial|electrical device +(noun)|feeler|sensitivity|sensitiveness +(noun)|feeler|tentacle +antennal|1 +(adj)|antennary|tentacle +antennaria|1 +(noun)|Antennaria|genus Antennaria|asterid dicot genus +antennaria dioica|1 +(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica|herb|herbaceous plant +antennaria plantaginifolia|1 +(noun)|ladies' tobacco|lady's tobacco|Antennaria plantaginifolia|herb|herbaceous plant +antennariidae|1 +(noun)|Antennariidae|family Antennariidae|fish family +antennary|1 +(adj)|antennal|tentacle +antenuptial|1 +(adj)|prenuptial |premarital|ceremony|ceremonial|ceremonial occasion|observance +antepartum|1 +(adj)|prenatal |antenatal +antepenult|1 +(noun)|antepenultimate|syllable +antepenultimate|2 +(adj)|last +(noun)|antepenult|syllable +anterior|3 +(adj)|anterior |fore|front|frontal|frontal|prefrontal|front +(adj)|prior|antecedent |preceding +(noun)|front tooth|tooth +anterior cardinal vein|1 +(noun)|cardinal vein +anterior cerebral artery|1 +(noun)|cerebral artery|arteria cerebri +anterior cerebral vein|1 +(noun)|vena cerebri anterior|cerebral vein|vena cerebri +anterior crural nerve|1 +(noun)|femoral nerve|nervus femoralis|spinal nerve|nervus spinalis +anterior facial vein|1 +(noun)|vena facialis anterior|facial vein|vena facialis +anterior fontanelle|1 +(noun)|fontanelle|fontanel|soft spot +anterior jugular vein|1 +(noun)|jugular vein|vena jugularis|jugular +anterior labial veins|1 +(noun)|venae labiales anteriores|labial vein|vena labialis +anterior meningeal artery|1 +(noun)|meningeal artery|arteria meningea +anterior naris|1 +(noun)|nostril|naris +anterior pituitary|1 +(noun)|anterior pituitary gland|adenohypophysis|endocrine gland|endocrine|ductless gland +anterior pituitary gland|1 +(noun)|anterior pituitary|adenohypophysis|endocrine gland|endocrine|ductless gland +anterior serratus muscle|1 +(noun)|serratus anterior|musculus serratus anterior|serratus magnus|serratus|serratus muscles +anterior synechia|1 +(noun)|synechia +anterior temporal artery|1 +(noun)|arteria temporalis anterior|temporal artery +anterior vertebral vein|1 +(noun)|vena vertebralis anterior|vein|vena|venous blood vessel +anteriority|2 +(noun)|position|spatial relation +(noun)|priority|antecedence|antecedency|precedence|precedency|earliness +anterograde|1 +(adj)|anterograde +anterograde amnesia|1 +(noun)|posttraumatic amnesia|amnesia|memory loss|blackout +anteroom|1 +(noun)|antechamber|entrance hall|hall|foyer|lobby|vestibule|room +anthelminthic|2 +(adj)|anthelmintic|helminthic|parasiticidal|healthful +(noun)|vermifuge|anthelmintic|helminthic|medicine|medication|medicament|medicinal drug +anthelmintic|2 +(adj)|anthelminthic|helminthic|parasiticidal|healthful +(noun)|vermifuge|anthelminthic|helminthic|medicine|medication|medicament|medicinal drug +anthem|2 +(noun)|song +(noun)|hymn|religious song +anthemis|1 +(noun)|Anthemis|genus Anthemis|asterid dicot genus +anthemis arvensis|1 +(noun)|corn chamomile|field chamomile|corn mayweed|Anthemis arvensis|composite|composite plant +anthemis cotula|1 +(noun)|mayweed|dog fennel|stinking mayweed|stinking chamomile|Anthemis cotula|composite|composite plant +anthemis nobilis|1 +(noun)|chamomile|camomile|Chamaemelum nobilis|Anthemis nobilis|herb|herbaceous plant +anthemis tinctoria|1 +(noun)|yellow chamomile|golden marguerite|dyers' chamomile|Anthemis tinctoria|composite|composite plant +anther|1 +(noun)|reproductive structure +antheraea|1 +(noun)|Antheraea|genus Antheraea|arthropod genus +antheraea mylitta|1 +(noun)|tussah|tusseh|tussur|tussore|tusser|Antheraea mylitta|saturniid|saturniid moth +antheraea pernyi|1 +(noun)|pernyi moth|Antheraea pernyi|saturniid|saturniid moth +antheraea polyphemus|1 +(noun)|polyphemus moth|Antheraea polyphemus|saturniid|saturniid moth +antheral|1 +(adj)|staminate|male +anthericum|1 +(noun)|Anthericum|genus Anthericum|liliid monocot genus +anthericum liliago|1 +(noun)|Saint-Bernard's-lily|Anthericum liliago|liliaceous plant +anthericum torreyi|1 +(noun)|amber lily|Anthericum torreyi|liliaceous plant +antheridial|1 +(adj)|reproductive structure +antheridiophore|1 +(noun)|gametophore +antheridium|1 +(noun)|reproductive structure +antheropeas|1 +(noun)|Antheropeas|genus Antheropeas|asterid dicot genus +antheropeas wallacei|1 +(noun)|woolly daisy|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower|wild flower +antherozoid|1 +(noun)|spermatozoid|gamete +anthesis|1 +(noun)|blossoming|flowering|florescence|inflorescence|efflorescence|growth|growing|maturation|development|ontogeny|ontogenesis +anthidium|1 +(noun)|Anthidium|genus Anthidium|arthropod genus +anthill|1 +(noun)|formicary|knoll|mound|hillock|hummock|hammock +anthoceropsida|1 +(noun)|Anthoceropsida|class Anthoceropsida|class +anthoceros|1 +(noun)|Anthoceros|genus Anthoceros|moss genus +anthocerotaceae|1 +(noun)|Anthocerotaceae|family Anthocerotaceae|moss family +anthocerotales|1 +(noun)|Anthocerotales|order Anthocerotales|plant order +anthologise|1 +(verb)|anthologize|compose|compile +anthologist|1 +(noun)|editor|editor in chief +anthologize|1 +(verb)|anthologise|compose|compile +anthology|1 +(noun)|collection|compendium +anthonomus|1 +(noun)|Anthonomus|genus Anthonomus|arthropod genus +anthonomus grandis|1 +(noun)|boll weevil|Anthonomus grandis|weevil +anthony|2 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist +anthony burgess|1 +(noun)|Burgess|Anthony Burgess|writer|author +anthony charles lynton blair|1 +(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman|solon|national leader +anthony comstock|1 +(noun)|Comstock|Anthony Comstock|reformer|reformist|crusader|meliorist +anthony hopkins|1 +(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor|histrion|player|thespian|role player +anthony trollope|1 +(noun)|Trollope|Anthony Trollope|writer|author +anthony vandyke|1 +(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master +anthony wayne|1 +(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general|full general +anthophagous|1 +(adj)|anthophilous|herbivorous +anthophilous|1 +(adj)|anthophagous|herbivorous +anthophyllite|1 +(noun)|amphibole +anthophyta|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +anthozoa|2 +(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class +(noun)|anthozoan|actinozoan|coelenterate|cnidarian +anthozoan|1 +(noun)|actinozoan|coelenterate|cnidarian +anthracite|1 +(noun)|anthracite coal|hard coal|coal +anthracite coal|1 +(noun)|anthracite|hard coal|coal +anthracitic|1 +(adj)|coal +anthracosis|1 +(noun)|black lung|black lung disease|coal miner's lung|pneumoconiosis|pneumonoconiosis +anthrax|3 +(noun)|splenic fever|zoonosis|zoonotic disease +(noun)|disease +(noun)|Bacillus anthracis|Bacillus|Bacilli|B|bioweapon|biological weapon|bioarm +anthrax pneumonia|1 +(noun)|pulmonary anthrax|inhalation anthrax|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax +anthrenus scrophulariae|1 +(noun)|buffalo carpet beetle|Anthrenus scrophulariae|carpet beetle|carpet bug +anthriscus|1 +(noun)|Anthriscus|genus Anthriscus|rosid dicot genus +anthriscus cereifolium|1 +(noun)|chervil|beaked parsley|Anthriscus cereifolium|herb|herbaceous plant +anthriscus sylvestris|1 +(noun)|cow parsley|wild chervil|Anthriscus sylvestris|herb|herbaceous plant +anthropic|1 +(adj)|anthropical|hominid +anthropical|1 +(adj)|anthropic|hominid +anthropocentric|1 +(adj)|partiality|partisanship +anthropocentricity|1 +(noun)|anthropocentrism|partiality|partisanship +anthropocentrism|1 +(noun)|anthropocentricity|partiality|partisanship +anthropogenesis|1 +(noun)|anthropogeny|evolution|phylogeny|phylogenesis +anthropogenetic|1 +(adj)|anthropogenic|evolution|phylogeny|phylogenesis +anthropogenic|1 +(adj)|anthropogenetic|evolution|phylogeny|phylogenesis +anthropogeny|1 +(noun)|anthropogenesis|evolution|phylogeny|phylogenesis +anthropoid|4 +(adj)|anthropoidal|apelike|nonhuman +(adj)|manlike|human +(noun)|ape|misfit +(noun)|primate +anthropoid ape|1 +(noun)|ape +anthropoidal|1 +(adj)|anthropoid|apelike|nonhuman +anthropoidea|1 +(noun)|Anthropoidea|suborder Anthropoidea|animal order +anthropolatry|1 +(noun)|worship of man|idolatry|devotion|veneration|cultism +anthropological|1 +(adj)|social science +anthropologist|1 +(noun)|social scientist +anthropology|1 +(noun)|social science +anthropology department|1 +(noun)|department of anthropology|academic department +anthropometric|1 +(adj)|anthropometrical|measurement|measuring|measure|mensuration +anthropometrical|1 +(adj)|anthropometric|measurement|measuring|measure|mensuration +anthropometry|1 +(noun)|measurement|measuring|measure|mensuration +anthropomorphic|1 +(adj)|anthropomorphous|humanlike|human +anthropomorphise|1 +(verb)|anthropomorphize|impute|ascribe|assign|attribute +anthropomorphism|1 +(noun)|theanthropism|representational process +anthropomorphize|1 +(verb)|anthropomorphise|impute|ascribe|assign|attribute +anthropomorphous|1 +(adj)|anthropomorphic|humanlike|human +anthropophagite|1 +(noun)|cannibal|man-eater|anthropophagus|savage|barbarian +anthropophagous|1 +(adj)|savage|barbarian +anthropophagus|1 +(noun)|cannibal|man-eater|anthropophagite|savage|barbarian +anthurium|1 +(noun)|tailflower|tail-flower|houseplant +anthurium andraeanum|1 +(noun)|flamingo flower|flamingo plant|Anthurium andraeanum|anthurium|tailflower|tail-flower +anthurium scherzerianum|1 +(noun)|flamingo flower|flamingo plant|Anthurium scherzerianum|anthurium|tailflower|tail-flower +anthus|1 +(noun)|Anthus|genus Anthus|bird genus +anthus pratensis|1 +(noun)|meadow pipit|Anthus pratensis|pipit|titlark|lark +anthyllis|1 +(noun)|Anthyllis|genus Anthyllis|rosid dicot genus +anthyllis barba-jovis|1 +(noun)|Jupiter's beard|silverbush|silver-bush|Anthyllis barba-jovis|shrub|bush +anthyllis vulneraria|1 +(noun)|kidney vetch|Anthyllis vulneraria|herb|herbaceous plant +anti|1 +(adj)|anti |opposed|opposing +anti-american|1 +(adj)|anti-American |North American country|North American nation +anti-catholicism|1 +(noun)|anti-Catholicism|religious orientation +anti-drug law|1 +(noun)|law +anti-dumping duty|1 +(noun)|protective tariff +anti-g suit|1 +(noun)|anti-G suit|G suit|pressure suit +anti-imperialist international brigade|1 +(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization|terrorist group|foreign terrorist organization|FTO +anti-inflammatory|1 +(noun)|anti-inflammatory drug|medicine|medication|medicament|medicinal drug +anti-inflammatory drug|1 +(noun)|anti-inflammatory|medicine|medication|medicament|medicinal drug +anti-intellectual|1 +(adj)|philistine|nonintellectual +anti-masonic party|1 +(noun)|Anti-Masonic Party|party|political party +anti-personnel bomb|1 +(noun)|fragmentation bomb|antipersonnel bomb|daisy cutter|bomb +anti-racketeering law|1 +(noun)|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law +anti-semite|2 +(adj)|racist|antiblack|anti-Semitic|anti-Semite|prejudiced |discriminatory +(noun)|anti-Semite|Jew-baiter|hater +anti-semitic|2 +(adj)|racism +(adj)|racist|antiblack|anti-Semitic|anti-Semite|prejudiced |discriminatory +anti-semitism|1 +(noun)|anti-Semitism|racism +anti-submarine rocket|1 +(noun)|shipboard system +anti-sway bar|1 +(noun)|stabilizer bar|bar|stabilizer|stabiliser +anti-takeover defense|1 +(noun)|resistance|opposition +anti-tnf compound|1 +(noun)|anti-TNF compound|drug +anti-torque rotor|1 +(noun)|tail rotor|rotor +anti-virus program|1 +(noun)|program|programme|computer program|computer programme +anti-war movement|1 +(noun)|campaign|cause|crusade|drive|movement|effort +antiacid|1 +(noun)|antacid|gastric antacid|alkalizer|alkaliser|agent +antiadrenergic|1 +(adj)|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +antiaircraft|2 +(adj)|defensive +(noun)|antiaircraft gun|flak|flack|pom-pom|ack-ack|ack-ack gun|gun +antiaircraft fire|1 +(noun)|fire|firing +antiaircraft gun|1 +(noun)|antiaircraft|flak|flack|pom-pom|ack-ack|ack-ack gun|gun +antialiasing|1 +(noun)|technique +antianxiety agent|1 +(noun)|tranquilizer|tranquillizer|tranquilliser|ataractic drug|ataractic agent|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +antianxiety drug|1 +(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|anxiolytic|anxiolytic drug|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +antiapartheid|1 +(adj)|social policy +antiarrhythmic|1 +(noun)|antiarrhythmic drug|antiarrhythmic medication|medicine|medication|medicament|medicinal drug +antiarrhythmic drug|1 +(noun)|antiarrhythmic|antiarrhythmic medication|medicine|medication|medicament|medicinal drug +antiarrhythmic medication|1 +(noun)|antiarrhythmic|antiarrhythmic drug|medicine|medication|medicament|medicinal drug +antiauthoritarian|1 +(adj)|democratic +antibacterial|1 +(noun)|antibacterial drug|bactericide|medicine|medication|medicament|medicinal drug +antibacterial drug|1 +(noun)|antibacterial|bactericide|medicine|medication|medicament|medicinal drug +antiballistic missile|1 +(noun)|ABM|guided missile +antibaryon|1 +(noun)|hadron +antiberiberi factor|1 +(noun)|vitamin B1|thiamine|thiamin|aneurin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +antibiosis|1 +(noun)|association +antibiotic|2 +(adj)|antibacterial|antibacterial drug|bactericide +(noun)|antibiotic drug|antibacterial|antibacterial drug|bactericide +antibiotic drug|1 +(noun)|antibiotic|antibacterial|antibacterial drug|bactericide +antiblack|1 +(adj)|racist|anti-Semitic|anti-Semite|prejudiced |discriminatory +antibody|1 +(noun)|protein +antic|3 +(adj)|fantastic|fantastical|grotesque|strange |unusual +(noun)|joke|prank|trick|caper|put-on|diversion|recreation +(verb)|clown|clown around|joke|jest +anticancer|1 +(adj)|antineoplastic|antitumor|antitumour|malignant tumor|malignant neoplasm|metastatic tumor +anticatalyst|1 +(noun)|inhibitor +anticholinergic|2 +(adj)|anticholinergic +(noun)|anticholinergic drug|medicine|medication|medicament|medicinal drug +anticholinergic drug|1 +(noun)|anticholinergic|medicine|medication|medicament|medicinal drug +anticholinesterase|1 +(noun)|medicine|medication|medicament|medicinal drug +antichrist|1 +(noun)|Antichrist|adversary|antagonist|opponent|opposer|resister +anticipant|2 +(adj)|anticipative|expectant|hopeful +(noun)|anticipator|visionary|illusionist|seer +anticipate|6 +(verb)|expect|judge +(verb)|foresee|forestall|counter|act|move +(verb)|previse|foreknow|foresee|know +(verb)|predict|foretell|prognosticate|call|forebode|promise|guess|venture|pretend|hazard +(verb)|look for|look to|expect|look|await|wait +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +anticipated|2 +(adj)|awaited|hoped-for|expected +(adj)|looked-for|due +anticipation|5 +(noun)|expectancy|expectation +(noun)|expectancy|expectation|outlook|prospect +(noun)|prediction|prevision|reasoning|logical thinking|abstract thought +(noun)|entity +(noun)|expectation|hopefulness +anticipative|1 +(adj)|anticipant|expectant|hopeful +anticipator|1 +(noun)|anticipant|visionary|illusionist|seer +anticipatory|1 +(adj)|prevenient|antecedent |preceding +anticipatory breach|1 +(noun)|constructive breach|breach of contract +anticlimactic|2 +(adj)|anticlimactical|conclusion|end|close|closing|ending +(adj)|anticlimactic +anticlimactical|1 +(adj)|anticlimactic|conclusion|end|close|closing|ending +anticlimax|2 +(noun)|fall|downfall +(noun)|bathos|conclusion|end|close|closing|ending +anticlinal|1 +(adj)|anticlinal +anticlockwise|2 +(adj)|counterclockwise |contraclockwise|levorotary|levorotatory|left-handed|sinistral +(adv)|counterclockwise +anticoagulant|1 +(noun)|anticoagulant medication|decoagulant|medicine|medication|medicament|medicinal drug +anticoagulant medication|1 +(noun)|anticoagulant|decoagulant|medicine|medication|medicament|medicinal drug +anticoagulation|1 +(noun)|medical care|medical aid +anticoagulative|1 +(adj)|medicine|medication|medicament|medicinal drug +anticonvulsant|1 +(noun)|anticonvulsant drug|antiepileptic|antiepileptic drug|medicine|medication|medicament|medicinal drug +anticonvulsant drug|1 +(noun)|anticonvulsant|antiepileptic|antiepileptic drug|medicine|medication|medicament|medicinal drug +anticyclone|1 +(noun)|atmosphere|atmospheric state +anticyclonic|1 +(adj)|atmosphere|atmospheric state +antidepressant|1 +(noun)|antidepressant drug|medicine|medication|medicament|medicinal drug +antidepressant drug|1 +(noun)|antidepressant|medicine|medication|medicament|medicinal drug +antidiabetic|1 +(noun)|antidiabetic drug|medicine|medication|medicament|medicinal drug +antidiabetic drug|1 +(noun)|antidiabetic|medicine|medication|medicament|medicinal drug +antidiarrheal|1 +(noun)|antidiarrheal drug|medicine|medication|medicament|medicinal drug +antidiarrheal drug|1 +(noun)|antidiarrheal|medicine|medication|medicament|medicinal drug +antidiuretic|1 +(noun)|antidiuretic drug|medicine|medication|medicament|medicinal drug +antidiuretic drug|1 +(noun)|antidiuretic|medicine|medication|medicament|medicinal drug +antidiuretic hormone|1 +(noun)|vasopressin|ADH|Pitressin|hormone|endocrine|internal secretion|vasoconstrictor|vasoconstrictive +antido|1 +(noun)|Antido|artificial language +antidorcas|1 +(noun)|Antidorcas|genus Antidorcas|mammal genus +antidorcas euchore|1 +(noun)|springbok|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle +antidorcas marsupialis|1 +(noun)|springbok|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle +antidotal|1 +(adj)|counteractive |antagonistic +antidote|1 +(noun)|counterpoison|remedy|curative|cure +antidromic|1 +(adj)|abnormal +antielectron|1 +(noun)|positron|antilepton +antiemetic|1 +(noun)|antiemetic drug|medicine|medication|medicament|medicinal drug +antiemetic drug|1 +(noun)|antiemetic|medicine|medication|medicament|medicinal drug +antiepileptic|1 +(noun)|anticonvulsant|anticonvulsant drug|antiepileptic drug|medicine|medication|medicament|medicinal drug +antiepileptic drug|1 +(noun)|anticonvulsant|anticonvulsant drug|antiepileptic|medicine|medication|medicament|medicinal drug +antiestablishmentarianism|1 +(noun)|antiestablishmentism|doctrine|philosophy|philosophical system|school of thought|ism +antiestablishmentism|1 +(noun)|antiestablishmentarianism|doctrine|philosophy|philosophical system|school of thought|ism +antifeminism|1 +(noun)|male chauvinism|chauvinism|sexism +antifeminist|1 +(noun)|bigot +antiferromagnetic|1 +(adj)|magnetism|magnetic attraction|magnetic force +antiferromagnetism|1 +(noun)|magnetism|magnetic attraction|magnetic force +antifertility|1 +(adj)|contraceptive|prophylactic|protective +antiflatulent|1 +(noun)|agent +antifouling|1 +(adj)|protective +antifreeze|1 +(noun)|liquid +antifungal|2 +(adj)|fungicidal|agent +(noun)|antifungal agent|fungicide|antimycotic|antimycotic agent|agent +antifungal agent|1 +(noun)|antifungal|fungicide|antimycotic|antimycotic agent|agent +antigen|1 +(noun)|substance|matter +antigenic|1 +(adj)|substance|matter +antigone|1 +(noun)|Antigone|mythical being +antigonia|1 +(noun)|Antigonia|genus Antigonia|fish genus +antigonus|1 +(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general|full general|Macedonian +antigonus cyclops|1 +(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general|full general|Macedonian +antigram|1 +(noun)|anagram +antigua|1 +(noun)|Antigua|island +antigua and barbuda|1 +(noun)|Antigua and Barbuda|country|state|land +antiguan|2 +(adj)|Antiguan|island +(noun)|Antiguan|West Indian +antihaemophilic factor|1 +(noun)|antihemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +antihaemophilic globulin|1 +(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +antihemophilic factor|1 +(noun)|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +antihemophilic globulin|1 +(noun)|antihemophilic factor|antihaemophilic factor|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +antihemorrhagic factor|1 +(noun)|vitamin K|naphthoquinone|fat-soluble vitamin +antihero|1 +(noun)|protagonist|agonist +antihistamine|1 +(noun)|medicine|medication|medicament|medicinal drug +antihypertensive|1 +(noun)|antihypertensive drug|medicine|medication|medicament|medicinal drug +antihypertensive drug|1 +(noun)|antihypertensive|medicine|medication|medicament|medicinal drug +antiknock|2 +(adj)|leaded +(noun)|compound|chemical compound +antilepton|1 +(noun)|elementary particle|fundamental particle|subatomic particle +antilles|1 +(noun)|Antilles|archipelago +antilocapra|1 +(noun)|Antilocapra|genus Antilocapra|mammal genus +antilocapra americana|1 +(noun)|pronghorn|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant +antilocapridae|1 +(noun)|Antilocapridae|family Antilocapridae|mammal family +antilog|1 +(noun)|antilogarithm|numeral|number +antilogarithm|1 +(noun)|antilog|numeral|number +antilope|1 +(noun)|Antilope|genus Antilope|mammal genus +antilope cervicapra|1 +(noun)|blackbuck|black buck|Antilope cervicapra|antelope +antimacassar|1 +(noun)|cloth covering +antimagnetic|1 +(adj)|antimagnetic +antimalarial|1 +(noun)|antimalarial drug|antiprotozoal|antiprotozoal drug +antimalarial drug|1 +(noun)|antimalarial|antiprotozoal|antiprotozoal drug +antimatter|1 +(noun)|substance|matter +antimeson|1 +(noun)|hadron +antimetabolite|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +antimicrobial|2 +(adj)|antimicrobic|healthful +(noun)|disinfectant|germicide|antimicrobic|agent +antimicrobic|2 +(adj)|antimicrobial|healthful +(noun)|disinfectant|germicide|antimicrobial|agent +antimonial|2 +(adj)|metallic element|metal +(adj)|metallic +antimonial lead|1 +(noun)|hard lead|lead|Pb|atomic number 82 +antimonic|1 +(adj)|antimonious|metallic element|metal +antimonious|1 +(adj)|antimonic|metallic element|metal +antimonopoly|1 +(adj)|antitrust|fair |just +antimony|1 +(noun)|Sb|atomic number 51|metallic element|metal +antimony potassium tartrate|1 +(noun)|tartar emetic|mordant|tartrate +antimuon|1 +(noun)|positive muon|antilepton +antimycin|1 +(noun)|antibiotic|antibiotic drug +antimycotic|1 +(noun)|antifungal|antifungal agent|fungicide|antimycotic agent|agent +antimycotic agent|1 +(noun)|antifungal|antifungal agent|fungicide|antimycotic|agent +antineoplastic|2 +(adj)|anticancer|antitumor|antitumour|growth +(noun)|antineoplastic drug|cancer drug|cytotoxic drug +antineoplastic antibiotic|1 +(noun)|antibiotic|antibiotic drug|antineoplastic|antineoplastic drug|cancer drug +antineoplastic drug|1 +(noun)|antineoplastic|cancer drug|cytotoxic drug +antineutrino|1 +(noun)|antilepton +antineutron|1 +(noun)|nucleon +antinode|1 +(noun)|point +antinomasia|1 +(noun)|rhetorical device +antinomian|2 +(adj)|theological doctrine|religious doctrine +(noun)|disciple|adherent +antinomianism|1 +(noun)|theological doctrine|religious doctrine +antinomy|1 +(noun)|contradiction|contradiction in terms +antioch|1 +(noun)|Antioch|Antakya|Antakiya|town +antiophthalmic factor|1 +(noun)|vitamin A|axerophthol|A|fat-soluble vitamin +antioxidant|1 +(noun)|inhibitor +antiparallel|1 +(adj)|parallel +antiparticle|1 +(noun)|elementary particle|fundamental particle|subatomic particle +antipasto|1 +(noun)|appetizer|appetiser|starter +antipathetic|2 +(adj)|antipathetical|averse|indisposed|loath|loth|disinclined +(adj)|antagonistic|antipathetical|hostile +antipathetical|2 +(adj)|antipathetic|averse|indisposed|loath|loth|disinclined +(adj)|antagonistic|antipathetic|hostile +antipathy|2 +(noun)|aversion|distaste|dislike +(noun)|object +antipernicious anemia factor|1 +(noun)|vitamin B12|cobalamin|cyanocobalamin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +antipersonnel|1 +(adj)|offensive +antipersonnel bomb|1 +(noun)|fragmentation bomb|anti-personnel bomb|daisy cutter|bomb +antiperspirant|1 +(noun)|toiletry|toilet article|toiletries +antiphlogistic|1 +(adj)|counteractive |antagonistic +antiphon|1 +(noun)|antiphony|religious music|church music +antiphonal|3 +(adj)|responsive|religious music|church music +(adj)|antiphonary|religious music|church music +(noun)|antiphonary|religious music|church music +antiphonary|2 +(adj)|antiphonal|religious music|church music +(noun)|antiphonal|religious music|church music +antiphony|2 +(noun)|music +(noun)|antiphon|religious music|church music +antiphrasis|1 +(noun)|rhetorical device +antipodal|2 +(adj)|antipodean|region +(noun)|antipodal opposition|diametrical opposition|opposition +antipodal opposition|1 +(noun)|antipodal|diametrical opposition|opposition +antipode|1 +(noun)|opposition|oppositeness +antipodean|1 +(adj)|antipodal|region +antipodes|2 +(noun)|region +(noun)|antipode|opposition|oppositeness +antipollution|1 +(adj)|environmental condition|impurity|impureness +antiproton|1 +(noun)|nucleon +antiprotozoal|1 +(noun)|antiprotozoal drug|medicine|medication|medicament|medicinal drug +antiprotozoal drug|1 +(noun)|antiprotozoal|medicine|medication|medicament|medicinal drug +antipruritic|1 +(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +antipsychotic|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +antipsychotic agent|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +antipsychotic drug|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +antipyresis|1 +(noun)|medication +antipyretic|2 +(adj)|antipyretic +(noun)|febrifuge|medicine|medication|medicament|medicinal drug +antiquarian|3 +(adj)|expert +(adj)|antiquity +(noun)|antiquary|expert +antiquark|1 +(noun)|elementary particle|fundamental particle|subatomic particle +antiquary|1 +(noun)|antiquarian|expert +antiquate|2 +(verb)|change|alter|modify +(verb)|antique|change|alter|modify +antiquated|1 +(adj)|antediluvian|archaic|old +antique|7 +(adj)|old +(adj)|demode|ex|old-fashioned|old-hat|outmoded|passe|passee|unfashionable |unstylish +(adj)|age-old|old +(noun)|old-timer|oldtimer|gaffer|old geezer|old man|greybeard|graybeard|Methuselah +(noun)|antiquity +(verb)|shop|browse +(verb)|antiquate|change|alter|modify +antiquity|3 +(noun)|historic period|age +(noun)|ancientness|oldness +(noun)|artifact|artefact +antiredeposition|1 +(noun)|natural process|natural action|action|activity +antirrhinum|1 +(noun)|Antirrhinum|genus Antirrhinum|asterid dicot genus +antirrhinum coulterianum|1 +(noun)|white snapdragon|Antirrhinum coulterianum|snapdragon +antirrhinum filipes|1 +(noun)|yellow twining snapdragon|Antirrhinum filipes|snapdragon +antirrhinum majus|1 +(noun)|Mediterranean snapdragon|Antirrhinum majus|snapdragon +antisatellite|1 +(adj)|asat|equipment +antisepsis|2 +(noun)|asepsis|sterility|sterileness|sanitariness +(noun)|asepsis|organic process|biological process +antiseptic|6 +(adj)|antiseptic |aseptic|sterile|bactericidal|disinfectant|germicidal|cleansing|purifying|uninfected|clean|nonpurulent|clean|germfree|healthful +(adj)|incorrupt +(adj)|purifying +(adj)|sterilized|sterilised|germfree +(adj)|clean |unobjectionable +(noun)|medicine|medication|medicament|medicinal drug +antisepticize|1 +(verb)|disinfect +antiserum|1 +(noun)|serum|blood serum +antisocial|2 +(adj)|unsociable +(adj)|asocial|unsocial +antisocial personality disorder|1 +(noun)|sociopathic personality|psychopathic personality|personality disorder +antispasmodic|1 +(noun)|spasmolytic|antispasmodic agent|medicine|medication|medicament|medicinal drug +antispasmodic agent|1 +(noun)|antispasmodic|spasmolytic|medicine|medication|medicament|medicinal drug +antistrophe|1 +(noun)|stanza +antistrophic|1 +(adj)|stanza +antisubmarine|1 +(adj)|defensive +antisyphilitic|1 +(noun)|drug +antitank|1 +(adj)|defensive +antitauon|1 +(noun)|tau-plus particle|antilepton +antithesis|2 +(noun)|opposition|oppositeness +(noun)|rhetorical device +antithetic|1 +(adj)|antithetical|different +antithetical|1 +(adj)|antithetic|different +antitoxic|1 +(adj)|nontoxic |atoxic +antitoxin|1 +(noun)|antibody +antitrade|1 +(noun)|antitrade wind|prevailing wind +antitrade wind|1 +(noun)|antitrade|prevailing wind +antitrades|2 +(noun)|prevailing wind +(noun)|antitrade wind|antitrade|prevailing wind +antitrust|1 +(adj)|antimonopoly|fair |just +antitrust case|1 +(noun)|legal action|action|action at law +antitrust law|1 +(noun)|antitrust legislation|law +antitrust legislation|1 +(noun)|antitrust law|law +antitumor|1 +(adj)|anticancer|antineoplastic|antitumour|growth +antitumour|1 +(adj)|anticancer|antineoplastic|antitumor|growth +antitussive|1 +(noun)|medicine|medication|medicament|medicinal drug +antitype|2 +(noun)|representation|mental representation|internal representation +(noun)|kind|sort|form|variety +antitypic|1 +(adj)|antitypical|representation|mental representation|internal representation +antitypical|1 +(adj)|antitypic|representation|mental representation|internal representation +antivenene|1 +(noun)|antivenin|antitoxin +antivenin|1 +(noun)|antivenene|antitoxin +antivert|1 +(noun)|meclizine|meclizine hydrochloride|Antivert|antihistamine +antiviral|2 +(adj)|medicine|medication|medicament|medicinal drug +(noun)|antiviral agent|antiviral drug|medicine|medication|medicament|medicinal drug +antiviral agent|1 +(noun)|antiviral|antiviral drug|medicine|medication|medicament|medicinal drug +antiviral drug|1 +(noun)|antiviral|antiviral agent|medicine|medication|medicament|medicinal drug +antler|1 +(noun)|horn +antler moth|1 +(noun)|Cerapteryx graminis|noctuid moth|noctuid|owlet moth +antlered|1 +(adj)|horned +antlia|1 +(noun)|Antlia|constellation +antlion|2 +(noun)|doodlebug|ant lion|larva +(noun)|ant lion|antlion fly|neuropteron|neuropteran|neuropterous insect +antlion fly|1 +(noun)|ant lion|antlion|neuropteron|neuropteran|neuropterous insect +antofagasta|1 +(noun)|Antofagasta|city|metropolis|urban center|port +antoine domino|1 +(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician|songwriter|songster|ballad maker +antoine henri becquerel|1 +(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist +antoine laurent de jussieu|1 +(noun)|Jussieu|Antoine Laurent de Jussieu|botanist|phytologist|plant scientist +antoine laurent lavoisier|1 +(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist +antoine lavoisier|1 +(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist +anton bruckner|1 +(noun)|Bruckner|Anton Bruckner|composer|organist +anton chekhov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +anton chekov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +anton gregor rubinstein|1 +(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer|pianist|piano player +anton grigorevich rubinstein|1 +(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer|pianist|piano player +anton pavlovich chekhov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +anton pavlovich chekov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +anton rubenstein|1 +(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer|pianist|piano player +anton van leeuwenhoek|1 +(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist +anton van leuwenhoek|1 +(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist +antonin dvorak|1 +(noun)|Dvorak|Antonin Dvorak|composer +antonine wall|1 +(noun)|Antonine Wall|rampart|bulwark|wall +antoninus|1 +(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor|Emperor of Rome +antonio allegri da correggio|1 +(noun)|Correggio|Antonio Allegri da Correggio|old master +antonio gaudi|1 +(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect|designer +antonio gaudi i cornet|1 +(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect|designer +antonio ghislieri|1 +(noun)|Pius V|Antonio Ghislieri|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +antonio lopez de santa ana|1 +(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general|full general +antonio lopez de santa anna|1 +(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general|full general +antonio lucio vivaldi|1 +(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer|violinist|fiddler +antonio stradivari|1 +(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker +antonio vivaldi|1 +(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer|violinist|fiddler +antonius|1 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +antonius pius|1 +(noun)|Antonius Pius|Roman Emperor|Emperor of Rome +antonius stradivarius|1 +(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker +antony|1 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +antony tudor|1 +(noun)|Tudor|Antony Tudor|dancer|professional dancer|choreographer +antonym|1 +(noun)|opposite word|opposite|word +antonymous|1 +(adj)|antonymous |complementary|contradictory|contrary|contrastive|incompatible|converse +antonymy|1 +(noun)|semantic relation +antrorse|1 +(adj)|antrorse +antrozous|1 +(noun)|Antrozous|genus Antrozous|mammal genus +antrozous pallidus|1 +(noun)|pallid bat|cave bat|Antrozous pallidus|vespertilian bat|vespertilionid +antrum|1 +(noun)|cavity|bodily cavity|cavum +antum|1 +(noun)|Antum|Semitic deity +antwerp|1 +(noun)|Antwerpen|Antwerp|Anvers|city|metropolis|urban center|port +antwerpen|1 +(noun)|Antwerpen|Antwerp|Anvers|city|metropolis|urban center|port +anu|1 +(noun)|Anu|Semitic deity +anubis|1 +(noun)|Anubis|Egyptian deity +anulus|1 +(noun)|ring|halo|annulus|doughnut|anchor ring|toroid +anunnaki|1 +(noun)|Anunnaki|Enuki|Semitic deity +anura|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +anuran|2 +(adj)|batrachian|salientian|animal order +(noun)|frog|toad|toad frog|batrachian|salientian|amphibian +anuresis|1 +(noun)|anuria|illness|unwellness|malady|sickness +anuretic|1 +(adj)|anuric|illness|unwellness|malady|sickness +anuria|1 +(noun)|anuresis|illness|unwellness|malady|sickness +anuric|1 +(adj)|anuretic|illness|unwellness|malady|sickness +anurous|1 +(adj)|tailless|acaudate |acaudal +anus|1 +(noun)|arse|arsehole|asshole|orifice|opening|porta +anvers|1 +(noun)|Antwerpen|Antwerp|Anvers|city|metropolis|urban center|port +anvil|2 +(noun)|block +(noun)|incus|auditory ossicle +anwar el-sadat|1 +(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman|solon|national leader +anwar sadat|1 +(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman|solon|national leader +anxiety|2 +(noun)|anxiousness|psychological state|mental state +(noun)|emotion +anxiety attack|1 +(noun)|attack +anxiety disorder|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +anxiety hysteria|1 +(noun)|hysteria|hysterical neurosis +anxiety neurosis|1 +(noun)|neurosis|neuroticism|psychoneurosis +anxiety reaction|1 +(noun)|generalized anxiety disorder|GAD|anxiety disorder +anxiolytic|2 +(adj)|psychological state|mental state +(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic drug|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +anxiolytic drug|1 +(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +anxious|3 +(adj)|apprehensive|uneasy +(adj)|dying|eager +(adj)|nervous|uneasy|unquiet|troubled +anxiously|1 +(adv)|uneasily|apprehensively +anxiousness|2 +(noun)|anxiety|psychological state|mental state +(noun)|disquiet|anxiety +any|2 +(adj)|immoderate +(adj)|whatever|whatsoever|some +any-and-all bid|1 +(noun)|takeover bid +any longer|1 +(adv)|anymore +any old|1 +(adj)|unspecified +anyhow|2 +(adv)|anyway|in any case|at any rate|in any event +(adv)|anyway +anymore|1 +(adv)|any longer +anyplace|1 +(adv)|anywhere +anything|1 +(noun)|thing +anyway|2 +(adv)|anyhow|in any case|at any rate|in any event +(adv)|anyhow +anywhere|1 +(adv)|anyplace +anzio|1 +(noun)|Anzio|town +ao dai|1 +(noun)|attire|garb|dress +aorist|1 +(noun)|tense +aoristic|1 +(adj)|tense +aorta|1 +(noun)|artery|arteria|arterial blood vessel +aortal|1 +(adj)|aortic|artery|arteria|arterial blood vessel +aortic|1 +(adj)|aortal|artery|arteria|arterial blood vessel +aortic aneurysm|1 +(noun)|aneurysm|aneurism +aortic arch|1 +(noun)|aorta +aortic orifice|1 +(noun)|orifice|opening|porta +aortic plexus|1 +(noun)|plexus|rete +aortic stenosis|1 +(noun)|stenosis|stricture|valvular heart disease +aortic valve|1 +(noun)|semilunar valve +aortitis|1 +(noun)|inflammation|redness|rubor +aotus|1 +(noun)|Aotus|genus Aotus|mammal genus +aotus trivirgatus|1 +(noun)|douroucouli|Aotus trivirgatus|New World monkey|platyrrhine +aoudad|1 +(noun)|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep +apace|1 +(adv)|quickly|rapidly|speedily|chop-chop +apache|3 +(noun)|Apache|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|gangster|mobster +(noun)|Apache|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +apache dance|1 +(noun)|stage dancing|choreography +apache devil dance|1 +(noun)|ritual dancing|ritual dance|ceremonial dance +apadana|1 +(noun)|great hall +apalachicola|1 +(noun)|Apalachicola|Apalachicola River|river +apalachicola river|1 +(noun)|Apalachicola|Apalachicola River|river +apalachicola rosemary|1 +(noun)|Apalachicola rosemary|Conradina glabra|shrub|bush +apanage|2 +(noun)|appanage|fringe benefit|perquisite|perk +(noun)|appanage|grant|assignment +apar|1 +(noun)|three-banded armadillo|Tolypeutes tricinctus|armadillo +apart|6 +(adj)|isolated|obscure|unconnected +(adj)|separate|separated|divided +(adj)|separate +(adv)|aside +(adv)|aside +(adv)|asunder +apartheid|1 +(noun)|social policy +apartment|1 +(noun)|flat|housing|lodging|living accommodations +apartment building|1 +(noun)|apartment house|building|edifice +apartment house|1 +(noun)|apartment building|building|edifice +apatetic coloration|1 +(noun)|protective coloration +apathetic|2 +(adj)|spiritless +(adj)|indifferent|uninterested +apathy|2 +(noun)|feeling +(noun)|indifference|spiritlessness|passivity|passiveness +apatite|1 +(noun)|mineral +apatosaur|1 +(noun)|apatosaurus|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod|sauropod dinosaur +apatosaurus|1 +(noun)|apatosaur|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod|sauropod dinosaur +apatosaurus excelsus|1 +(noun)|apatosaur|apatosaurus|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod|sauropod dinosaur +apatura|1 +(noun)|Apatura|genus Apatura|arthropod genus +apatura iris|1 +(noun)|purple emperor|Apatura iris|emperor butterfly|emperor +apc|2 +(noun)|armored personnel carrier|armoured personnel carrier|APC|armored vehicle|armoured vehicle +(noun)|APC|medicine|medication|medicament|medicinal drug +ape|5 +(noun)|primate +(noun)|copycat|imitator|emulator|aper|person|individual|someone|somebody|mortal|human|soul +(noun)|anthropoid|misfit +(verb)|imitate +(verb)|caricature|mock +ape-man|2 +(noun)|missing link|primitive|primitive person +(noun)|wild man|feral man +apeldoorn|1 +(noun)|Apeldoorn|city|metropolis|urban center +apelike|2 +(adj)|anthropoid|anthropoidal|nonhuman +(adj)|apish|imitative +apennines|1 +(noun)|Apennines|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +aper|1 +(noun)|copycat|imitator|emulator|ape|person|individual|someone|somebody|mortal|human|soul +apercu|1 +(noun)|outline|synopsis|abstract|precis +aperea|1 +(noun)|wild cavy|Cavia porcellus|cavy +aperient|2 +(adj)|laxative +(noun)|purgative|cathartic|physic|medicine|medication|medicament|medicinal drug +aperiodic|1 +(adj)|aperiodic |nonperiodic|noncyclic|nonoscillatory +aperitif|1 +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +apertif|1 +(noun)|appetizer|appetiser|starter +aperture|3 +(noun)|regulator +(noun)|hole +(noun)|opening +apery|1 +(noun)|mimicry|impersonation|personation +apetalous|1 +(adj)|apetalous |petalless +apetalous flower|1 +(noun)|flower|bloom|blossom +apex|2 +(noun)|vertex|peak|acme|extreme point|extreme|extremum +(noun)|solar apex|apex of the sun's way|celestial point +apex of the sun's way|1 +(noun)|apex|solar apex|celestial point +apgar score|1 +(noun)|Apgar score|assay|check +aphaeresis|1 +(noun)|apheresis|omission|deletion +aphaeretic|1 +(adj)|apheretic|omission|deletion +aphagia|1 +(noun)|pathology +aphakia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +aphakic|2 +(adj)|visual impairment|visual defect|vision defect|visual disorder +(noun)|visually handicapped person +aphanite|1 +(noun)|rock|stone +aphanitic|1 +(adj)|rock|stone +aphasia|1 +(noun)|brain disorder|encephalopathy|brain disease +aphasic|3 +(adj)|brain disorder|encephalopathy|brain disease +(adj)|inarticulate |unarticulate +(noun)|handicapped person +aphasmidia|1 +(noun)|Aphasmidia|class Aphasmidia|class +aphelion|1 +(noun)|apoapsis|point of apoapsis +apheresis|2 +(noun)|aphaeresis|omission|deletion +(noun)|pheresis|dialysis +apheretic|1 +(adj)|aphaeretic|omission|deletion +aphesis|1 +(noun)|omission|deletion +aphetic|1 +(adj)|omission|deletion +aphid|1 +(noun)|plant louse|louse +aphid lion|1 +(noun)|aphis lion|larva +aphididae|1 +(noun)|Aphididae|family Aphididae|arthropod family +aphidoidea|1 +(noun)|Aphidoidea|superfamily Aphidoidea|arthropod family +aphis|1 +(noun)|Aphis|genus Aphis|arthropod genus +aphis fabae|1 +(noun)|blackfly|bean aphid|Aphis fabae|aphid +aphis lion|1 +(noun)|aphid lion|larva +aphis pomi|1 +(noun)|apple aphid|green apple aphid|Aphis pomi|aphid +aphonia|1 +(noun)|voicelessness|speech disorder|speech defect|defect of speech +aphonic|1 +(adj)|voiceless|inarticulate |unarticulate +aphorise|1 +(verb)|aphorize|communicate|intercommunicate +aphorism|1 +(noun)|apothegm|apophthegm|maxim|axiom +aphorist|1 +(noun)|intellectual|intellect +aphoristic|2 +(adj)|axiomatic +(adj)|apothegmatic|epigrammatic|concise +aphorize|1 +(verb)|aphorise|communicate|intercommunicate +aphotic|1 +(adj)|dark +aphriza|1 +(noun)|Aphriza|genus Aphriza|bird genus +aphriza virgata|1 +(noun)|surfbird|Aphriza virgata|shorebird|shore bird|limicoline bird +aphrodisia|1 +(noun)|sexual desire|concupiscence|physical attraction +aphrodisiac|2 +(adj)|aphrodisiac |aphrodisiacal|sexy +(noun)|stimulant|stimulant drug +aphrodisiacal|1 +(adj)|aphrodisiac |sexy +aphrodite|1 +(noun)|Aphrodite|Cytherea|Greek deity +aphrophora|1 +(noun)|Aphrophora|genus Aphrophora|arthropod genus +aphrophora saratogensis|1 +(noun)|Saratoga spittlebug|Aphrophora saratogensis|spittle insect|spittlebug +aphthous ulcer|1 +(noun)|ulcer|ulceration +aphyllanthaceae|1 +(noun)|Aphyllanthaceae|family Aphyllanthaceae|liliid monocot family +aphyllanthes|1 +(noun)|Aphyllanthes|genus Aphyllanthes|liliid monocot genus +aphyllophorales|1 +(noun)|Aphyllophorales|order Aphyllophorales|fungus order +aphyllous|1 +(adj)|leafless +apia|1 +(noun)|Apia|capital of Western Samoa|national capital +apiaceae|1 +(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family +apian|1 +(adj)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +apiarian|1 +(adj)|farmer|husbandman|granger|sodbuster +apiarist|1 +(noun)|beekeeper|apiculturist|farmer|husbandman|granger|sodbuster +apiary|1 +(noun)|bee house|shed +apical|1 +(adj)|top +apical placentation|1 +(noun)|placentation +apiculate|1 +(adj)|simple |unsubdivided|pointed +apicultural|1 +(adj)|cultivation +apiculture|1 +(noun)|beekeeping|cultivation +apiculturist|1 +(noun)|beekeeper|apiarist|farmer|husbandman|granger|sodbuster +apidae|1 +(noun)|Apidae|family Apidae|arthropod family +apiece|1 +(adv)|each|to each one|for each one|from each one +apios|1 +(noun)|Apios|genus Apios|rosid dicot genus +apios americana|1 +(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine +apios tuberosa|1 +(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine +apis|1 +(noun)|Apis|genus Apis|arthropod genus +apis mellifera|1 +(noun)|honeybee|Apis mellifera|bee +apis mellifera adansonii|1 +(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee|Apis mellifera +apis mellifera scutellata|1 +(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee|Apis mellifera +apish|1 +(adj)|apelike|imitative +apishamore|1 +(noun)|saddle blanket|saddlecloth|horse blanket +apium|1 +(noun)|Apium|genus Apium|rosid dicot genus +apium graveolens|1 +(noun)|wild celery|Apium graveolens|herb|herbaceous plant +apium graveolens dulce|1 +(noun)|celery|cultivated celery|Apium graveolens dulce|herb|herbaceous plant +apium graveolens rapaceum|1 +(noun)|celeriac|celery root|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb|herbaceous plant +apivorous|1 +(adj)|insectivorous +aplacental|1 +(adj)|aplacental +aplacophora|1 +(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order +aplacophoran|1 +(noun)|solenogaster|gastropod|univalve +aplanatic|1 +(adj)|corrected +aplasia|1 +(noun)|dysplasia +aplastic anaemia|1 +(noun)|aplastic anemia|anemia|anaemia +aplastic anemia|1 +(noun)|aplastic anaemia|anemia|anaemia +aplectrum|1 +(noun)|Aplectrum|genus Aplectrum|monocot genus|liliopsid genus +aplectrum hyemale|1 +(noun)|puttyroot|adam-and-eve|Aplectrum hyemale|orchid|orchidaceous plant +aplite|1 +(noun)|igneous rock +aplitic|1 +(adj)|igneous rock +aplodontia|1 +(noun)|Aplodontia|genus Aplodontia|mammal genus +aplodontia rufa|1 +(noun)|mountain beaver|sewellel|Aplodontia rufa|rodent|gnawer|gnawing animal +aplodontiidae|1 +(noun)|Aplodontiidae|family Aplodontiidae|mammal family +aplomb|1 +(noun)|assuredness|cool|poise|sang-froid|composure|calm|calmness|equanimity +aplysia|1 +(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus +aplysia punctata|1 +(noun)|sea hare|Aplysia punctata|gastropod|univalve +aplysiidae|1 +(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family +apnea|1 +(noun)|symptom +apneic|1 +(adj)|apnoeic|symptom +apnoeic|1 +(adj)|apneic|symptom +apoapsis|1 +(noun)|point of apoapsis|celestial point +apocalypse|2 +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book +apocalyptic|2 +(adj)|apocalyptical|revelatory|prophetic |prophetical +(adj)|calamity|catastrophe|disaster|tragedy|cataclysm +apocalyptical|1 +(adj)|apocalyptic|revelatory|prophetic |prophetical +apocarpous|1 +(adj)|apocarpous +apochromatic|1 +(adj)|corrected +apocope|1 +(noun)|abbreviation +apocrine|1 +(adj)|apocrine +apocrine gland|1 +(noun)|sweat gland|sudoriferous gland +apocrypha|1 +(noun)|Apocrypha|sacred text|sacred writing|religious writing|religious text +apocryphal|2 +(adj)|questionable +(adj)|Apocryphal|sacred text|sacred writing|religious writing|religious text +apocynaceae|1 +(noun)|Apocynaceae|family Apocynaceae|dogbane family|dicot family|magnoliopsid family +apocynaceous|1 +(adj)|dicot family|magnoliopsid family +apocynum|1 +(noun)|Apocynum|genus Apocynum|dicot genus|magnoliopsid genus +apocynum androsaemifolium|1 +(noun)|common dogbane|spreading dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane +apocynum cannabinum|1 +(noun)|Indian hemp|rheumatism weed|Apocynum cannabinum|dogbane +apocynum pumilum|1 +(noun)|Rocky Mountain dogbane|Apocynum pumilum|dogbane +apodal|1 +(adj)|apodous|footless +apodeictic|1 +(adj)|apodictic|true +apodeme|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +apodemus|1 +(noun)|Apodemus|genus Apodemus|mammal genus +apodemus sylvaticus|1 +(noun)|European wood mouse|Apodemus sylvaticus|field mouse|fieldmouse +apodictic|1 +(adj)|apodeictic|true +apodidae|1 +(noun)|Apodidae|family Apodidae|bird family +apodiform bird|1 +(noun)|bird +apodiformes|1 +(noun)|Apodiformes|order Apodiformes|animal order +apodous|1 +(adj)|apodal|footless +apoenzyme|1 +(noun)|protein +apogametic|1 +(adj)|apogamic|apogamous|apomixis +apogamic|1 +(adj)|apogametic|apogamous|apomixis +apogamous|1 +(adj)|apogamic|apogametic|apomixis +apogamy|1 +(noun)|apomixis +apogean|1 +(adj)|apoapsis|point of apoapsis +apogee|2 +(noun)|culmination|phase|stage +(noun)|apoapsis|point of apoapsis +apogon|1 +(noun)|Apogon|genus Apogon|fish genus +apogon maculatus|1 +(noun)|flame fish|flamefish|Apogon maculatus|cardinalfish +apogonidae|1 +(noun)|Apogonidae|family Apogonidae|fish family +apoidea|1 +(noun)|Apoidea|superfamily Apoidea|arthropod family +apojove|1 +(noun)|apoapsis|point of apoapsis +apolemia|1 +(noun)|siphonophore +apolitical|1 +(adj)|unpolitical|nonpolitical +apollinaire|1 +(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet +apollo|1 +(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity +apollo asteroid|1 +(noun)|Apollo asteroid|asteroid|minor planet|planetoid +apollo program|1 +(noun)|Apollo program|space program +apologetic|1 +(adj)|apologetic |excusatory|contrite|defensive|justificative|justificatory|self-deprecating +apologetics|1 +(noun)|theology|divinity +apologia|1 +(noun)|apology|defense|defence|vindication +apologise|2 +(verb)|apologize|excuse|justify|rationalize|rationalise|defend|support|fend for +(verb)|apologize +apologist|1 +(noun)|vindicator|justifier|advocate|advocator|proponent|exponent +apologize|2 +(verb)|apologise +(verb)|apologise|excuse|justify|rationalize|rationalise|defend|support|fend for +apologue|1 +(noun)|fable|parable|allegory|story +apology|3 +(noun)|acknowledgment|acknowledgement +(noun)|apologia|defense|defence|vindication +(noun)|excuse|example|illustration|instance|representative +apolune|1 +(noun)|aposelene|apoapsis|point of apoapsis +apomict|1 +(noun)|plant|flora|plant life +apomictic|2 +(adj)|apomictical|plant|flora|plant life +(adj)|agamic|agamous|agamogenetic|parthenogenetic|asexual |nonsexual +apomictical|1 +(adj)|apomictic|plant|flora|plant life +apomixis|1 +(noun)|asexual reproduction|agamogenesis +apomorphine|1 +(noun)|morphine|morphia +aponeurosis|1 +(noun)|fascia|facia +aponeurotic|1 +(adj)|fascia|facia +apopemptic|1 +(adj)|departure|going|going away|leaving +apophasis|1 +(noun)|rhetorical device +apophatic|1 +(adj)|religion|faith|religious belief +apophatism|1 +(noun)|religion|faith|religious belief +apophthegm|1 +(noun)|aphorism|apothegm|maxim|axiom +apophyseal|1 +(adj)|process|outgrowth|appendage|plant process|enation +apophysis|2 +(noun)|plant process|enation +(noun)|process|outgrowth|appendage +apoplectic|1 +(adj)|attack +apoplectiform|1 +(adj)|apoplectoid|attack +apoplectoid|1 +(adj)|apoplectiform|attack +apoplexy|1 +(noun)|stroke|cerebrovascular accident|CVA|attack +apoptosis|1 +(noun)|programmed cell death|caspase-mediated cell death|necrobiosis|cell death +aporocactus|1 +(noun)|Aporocactus|genus Aporocactus|caryophylloid dicot genus +aporocactus flagelliformis|1 +(noun)|rattail cactus|rat's-tail cactus|Aporocactus flagelliformis|cactus +aposelene|1 +(noun)|apolune|apoapsis|point of apoapsis +aposematic coloration|1 +(noun)|warning coloration|protective coloration +aposiopesis|1 +(noun)|rhetorical device +aposiopetic|1 +(adj)|rhetorical device +apostasy|2 +(noun)|renunciation|defection|rejection +(noun)|tergiversation|abandonment|forsaking|desertion +apostate|2 +(adj)|unfaithful +(noun)|deserter|renegade|turncoat|recreant|ratter|quitter +apostatise|1 +(verb)|apostatize|tergiversate|renounce|repudiate +apostatize|1 +(verb)|apostatise|tergiversate|renounce|repudiate +apostle|3 +(noun)|believer|truster +(noun)|Apostle|Christian +(noun)|Apostle|Christian|disciple|adherent +apostle of germany|1 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +apostle of the gentiles|1 +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +apostle paul|1 +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +apostleship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +apostolic|2 +(adj)|apostolical|Christian|disciple|adherent +(adj)|papal|apostolical|pontifical|spiritual leader|Catholic +apostolic delegate|1 +(noun)|delegate +apostolical|2 +(adj)|papal|apostolic|pontifical|spiritual leader|Catholic +(adj)|apostolic|Christian|disciple|adherent +apostrophe|2 +(noun)|rhetorical device +(noun)|punctuation|punctuation mark +apostrophic|1 +(adj)|rhetorical device +apostrophise|1 +(verb)|apostrophize|write +apostrophize|1 +(verb)|apostrophise|write +apothecaries' ounce|1 +(noun)|ounce|troy ounce|apothecaries' unit|apothecaries' weight|troy unit +apothecaries' pound|1 +(noun)|troy pound|apothecaries' unit|apothecaries' weight|troy unit +apothecaries' unit|1 +(noun)|apothecaries' weight|weight unit|weight +apothecaries' weight|1 +(noun)|apothecaries' unit|weight unit|weight +apothecary|1 +(noun)|pharmacist|druggist|chemist|pill pusher|pill roller|health professional|health care provider|caregiver +apothecary's shop|1 +(noun)|drugstore|chemist's|chemist's shop|pharmacy|shop|store +apothecial|1 +(adj)|ascocarp +apothecium|1 +(noun)|ascocarp +apothegm|1 +(noun)|aphorism|apophthegm|maxim|axiom +apothegmatic|2 +(adj)|apothegmatical|maxim|axiom +(adj)|aphoristic|epigrammatic|concise +apothegmatical|1 +(adj)|apothegmatic|maxim|axiom +apotheose|1 +(verb)|apotheosize|apotheosise|deify +apotheosis|2 +(noun)|ideal|paragon|nonpareil|saint|nonesuch|nonsuch|model|role model +(noun)|deification|exaltation|worship +apotheosise|1 +(verb)|apotheosize|apotheose|deify +apotheosize|1 +(verb)|apotheosise|apotheose|deify +apotropaic|1 +(adj)|lucky +appal|2 +(verb)|shock|offend|scandalize|scandalise|appall|outrage|disgust|revolt|nauseate|sicken|churn up +(verb)|dismay|alarm|appall|horrify|frighten|fright|scare|affright +appalachia|1 +(noun)|Appalachia|geographical area|geographic area|geographical region|geographic region +appalachian|1 +(adj)|Appalachian|geographical area|geographic area|geographical region|geographic region +appalachian mountains|1 +(noun)|Appalachians|Appalachian Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +appalachians|1 +(noun)|Appalachians|Appalachian Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +appall|2 +(verb)|shock|offend|scandalize|scandalise|appal|outrage|disgust|revolt|nauseate|sicken|churn up +(verb)|dismay|alarm|appal|horrify|frighten|fright|scare|affright +appalled|1 +(adj)|aghast|dismayed|shocked|afraid +appalling|2 +(adj)|dismaying|alarming +(noun)|experience +appaloosa|1 +(noun)|Appaloosa|saddle horse|riding horse|mount +appanage|2 +(noun)|apanage|fringe benefit|perquisite|perk +(noun)|apanage|grant|assignment +apparatus|2 +(noun)|setup|equipment +(noun)|body part +apparatus urogenitalis|1 +(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|system +apparel|2 +(noun)|wearing apparel|dress|clothes|clothing|article of clothing|vesture|wear +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|change state|turn +apparel chain|1 +(noun)|chain +apparel industry|1 +(noun)|garment industry|fashion industry|fashion business|rag trade|industry +appareled|1 +(adj)|attired|dressed|garbed|garmented|habilimented|robed|clothed |clad +apparency|1 +(noun)|apparentness|obviousness|noticeability|noticeableness|patency +apparent|3 +(adj)|evident|manifest|patent|plain|obvious +(adj)|ostensible|seeming|superficial +(adj)|visible |seeable +apparent horizon|1 +(noun)|horizon|visible horizon|sensible horizon|skyline|line +apparent motion|1 +(noun)|motion|apparent movement|movement|optical illusion +apparent movement|1 +(noun)|apparent motion|motion|movement|optical illusion +apparently|2 +(adv)|seemingly|ostensibly|on the face of it +(adv)|obviously|evidently|manifestly|patently|plainly|plain +apparentness|1 +(noun)|apparency|obviousness|noticeability|noticeableness|patency +apparition|4 +(noun)|phantom|phantasm|phantasma|specter|spectre|spirit|disembodied spirit +(noun)|appearance +(noun)|phantom|phantasm|phantasma|shadow|illusion|semblance +(noun)|appearance +apparitional|1 +(adj)|ghostlike|ghostly|phantasmal|spectral|spiritual|supernatural +appeal|9 +(noun)|entreaty|prayer|request|asking +(noun)|appealingness|charm|attractiveness +(noun)|proceeding|legal proceeding|proceedings +(noun)|solicitation|collection|ingathering|request|petition|postulation +(verb)|challenge +(verb)|invoke|request|bespeak|call for|quest +(verb)|attract +(verb)|challenge|take exception +(verb)|invoke|mention|advert|bring up|cite|name|refer +appeal board|1 +(noun)|appeals board|board of appeals|board +appealable|1 +(adj)|appealable +appealing|3 +(adj)|appealing |attention-getting|catchy|attractive +(adj)|sympathetic |likeable|likable +(adj)|imploring|importunate|pleading|beseeching +appealingness|1 +(noun)|appeal|charm|attractiveness +appeals board|2 +(noun)|appeal board|board of appeals|board +(noun)|appeal board|board of appeals|board +appeals court|1 +(noun)|appellate court|court of appeals|court|tribunal|judicature +appear|5 +(verb)|look|seem|be +(verb)|come out|happen|materialize|materialise +(verb)|seem|be +(verb)|come along +(verb)|perform|execute|do +appearance|6 +(noun)|visual aspect|quality +(noun)|happening|occurrence|natural event +(noun)|appearing|coming into court|attendance|attending +(noun)|representation|mental representation|internal representation +(noun)|arrival +(noun)|show|pretense|pretence|pretending|simulation|feigning +appearing|1 +(noun)|appearance|coming into court|attendance|attending +appeasable|1 +(adj)|conciliable|placable +appease|3 +(verb)|pacify|lenify|conciliate|assuage|mollify|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|quell|stay|meet|satisfy|fill|fulfill|fulfil +(verb)|propitiate|reconcile|patch up|make up|conciliate|settle +appeasement|1 +(noun)|calming|social control +appeaser|1 +(noun)|conciliator|make-peace|pacifier|peacemaker|reconciler +appeasing|1 +(adj)|placating|placative|placatory|conciliatory |conciliative +appellant|2 +(adj)|appellate|proceeding|legal proceeding|proceedings +(noun)|plaintiff in error|litigant|litigator +appellate|1 +(adj)|appellant|proceeding|legal proceeding|proceedings +appellate court|1 +(noun)|appeals court|court of appeals|court|tribunal|judicature +appellation|1 +(noun)|denomination|designation|appellative|name +appellative|3 +(adj)|content word|open-class word|substantive +(adj)|naming|denotative |denotive +(noun)|appellation|denomination|designation|name +append|3 +(verb)|add on|supplement|affix|attach +(verb)|tag on|tack on|tack|hang on|attach +(verb)|add|supply|state|say|tell +appendage|3 +(noun)|extremity|member|external body part +(noun)|process|outgrowth|body part +(noun)|part|portion +appendaged|1 +(adj)|appendaged +appendant|1 +(adj)|affixed +appendectomy|1 +(noun)|appendicectomy|ablation|extirpation|cutting out|excision +appendicectomy|1 +(noun)|appendectomy|ablation|extirpation|cutting out|excision +appendicitis|1 +(noun)|inflammation|redness|rubor +appendicle|1 +(noun)|appendage +appendicular|1 +(adj)|external body part +appendicular artery|1 +(noun)|arteria appendicularis|artery|arteria|arterial blood vessel +appendicular skeleton|1 +(noun)|skeletal structure +appendicular vein|1 +(noun)|vena appendicularis|vein|vena|venous blood vessel +appendicularia|1 +(noun)|tunicate|urochordate|urochord +appendix|2 +(noun)|addendum|supplement|postscript +(noun)|vermiform appendix|vermiform process|cecal appendage|process|outgrowth|appendage +apperceive|1 +(verb)|perceive|comprehend +apperception|1 +(noun)|basic cognitive process +apperceptive|1 +(adj)|perceptive +appertain|1 +(verb)|pertain|dwell|consist|lie|belong|lie in +appetence|1 +(noun)|appetite|appetency|craving +appetency|1 +(noun)|appetite|appetence|craving +appetent|1 +(adj)|desirous +appetiser|1 +(noun)|appetizer|starter|course +appetising|1 +(adj)|appetizing |mouth-watering|savory|savoury|tasty|palatable|tasteful +appetisingness|1 +(noun)|appetizingness|palatability|palatableness +appetite|1 +(noun)|appetency|appetence|craving +appetite suppressant|1 +(noun)|suppressant|drug +appetitive|1 +(adj)|craving +appetizer|1 +(noun)|appetiser|starter|course +appetizing|1 +(adj)|appetizing |appetising|mouth-watering|savory|savoury|tasty|palatable|tasteful +appetizingness|1 +(noun)|appetisingness|palatability|palatableness +appian way|1 +(noun)|Appian Way|highway|main road +applaud|2 +(verb)|clap|spat|acclaim|gesticulate|gesture|motion +(verb)|praise +applaudable|1 +(adj)|commendable|laudable|praiseworthy|worthy +applauder|1 +(noun)|clapper|laudator|lauder|extoller +applause|1 +(noun)|hand clapping|clapping|approval|commendation +apple|2 +(noun)|edible fruit|pome|false fruit +(noun)|orchard apple tree|Malus pumila|apple tree +apple aphid|1 +(noun)|green apple aphid|Aphis pomi|aphid +apple blight|1 +(noun)|apple canker|blight +apple butter|1 +(noun)|conserve|preserve|conserves|preserves +apple canker|1 +(noun)|apple blight|blight +apple dumpling|1 +(noun)|dumpling +apple fritter|1 +(noun)|fritter +apple geranium|1 +(noun)|nutmeg geranium|Pelargonium odoratissimum|geranium +apple jelly|1 +(noun)|jelly +apple juice|1 +(noun)|fruit juice|fruit crush +apple maggot|1 +(noun)|railroad worm|Rhagoletis pomonella|fruit fly|pomace fly +apple mint|2 +(noun)|applemint|Mentha rotundifolia|Mentha suaveolens|mint +(noun)| +apple nut|1 +(noun)|ivory nut|vegetable ivory|seed +apple of discord|1 +(noun)|trophy|prize +apple of peru|2 +(noun)|apple of Peru|shoo fly|Nicandra physaloides|herb|herbaceous plant +(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple +apple orchard|1 +(noun)|grove|woodlet|orchard|plantation +apple pie|1 +(noun)|pie +apple polisher|1 +(noun)|bootlicker|fawner|groveller|groveler|truckler|ass-kisser|sycophant|toady|crawler|lackey +apple rust|1 +(noun)|cedar-apple rust|Gymnosporangium juniperi-virginianae|rust|rust fungus +apple sauce|2 +(noun)|applesauce|dish +(noun)|folderol|rubbish|tripe|trumpery|trash|wish-wash|applesauce|codswallop|drivel|garbage +apple tart|2 +(noun)|tart +(noun)|tart +apple tree|1 +(noun)|fruit tree +apple turnover|1 +(noun)|turnover +applecart|2 +(noun)|planning|preparation|provision +(noun)|handcart|pushcart|cart|go-cart +applejack|1 +(noun)|brandy +applemint|1 +(noun)|apple mint|Mentha rotundifolia|Mentha suaveolens|mint +applesauce|2 +(noun)|apple sauce|dish +(noun)|folderol|rubbish|tripe|trumpery|trash|wish-wash|codswallop|drivel|garbage +applesauce cake|1 +(noun)|cake +applet|1 +(noun)|application|application program|applications programme +appleton|2 +(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist +(noun)|Appleton|town +appleton layer|1 +(noun)|Appleton layer|F layer|F region|region|part +applewood|1 +(noun)|fruitwood +appliance|2 +(noun)|contraption|contrivance|convenience|gadget|gizmo|gismo|widget|device +(noun)|durables|durable goods|consumer durables +applicability|1 +(noun)|pertinence|pertinency|relevance|relevancy +applicable|2 +(adj)|relevant +(adj)|applicative|applicatory|practical +applicant|1 +(noun)|applier|person|individual|someone|somebody|mortal|human|soul +application|6 +(noun)|request|petition|postulation +(noun)|practical application|use|usage|utilization|utilisation|employment|exercise +(noun)|application program|applications programme|program|programme|computer program|computer programme +(noun)|coating|covering|manual labor|manual labour +(noun)|lotion|remedy|curative|cure +(noun)|diligence|effort|elbow grease|exertion|travail|sweat +application-oriented language|1 +(noun)|problem-oriented language|source language +application form|1 +(noun)|form +application program|1 +(noun)|application|applications programme|program|programme|computer program|computer programme +applications programme|1 +(noun)|application|application program|program|programme|computer program|computer programme +applicative|1 +(adj)|applicable|applicatory|practical +applicator|1 +(noun)|applier|device +applicatory|1 +(adj)|applicable|applicative|practical +applied|2 +(adj)|applied |practical +(adj)|practical +applied anatomy|1 +(noun)|clinical anatomy|anatomy|general anatomy +applied math|1 +(noun)|applied mathematics|mathematics|math|maths +applied mathematics|1 +(noun)|applied math|mathematics|math|maths +applied psychology|1 +(noun)|industrial psychology|psychology|psychological science +applied science|1 +(noun)|engineering|engineering science|technology|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +applied scientist|1 +(noun)|engineer|technologist|person|individual|someone|somebody|mortal|human|soul +applier|2 +(noun)|applicant|person|individual|someone|somebody|mortal|human|soul +(noun)|applicator|device +applique|2 +(noun)|sewing|stitchery +(verb)|decorate|adorn|grace|ornament|embellish|beautify +apply|10 +(verb)|use|utilize|utilise|employ +(verb)|hold|go for|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|request|bespeak|call for|quest +(verb)|put on|cover +(verb)|lend oneself +(verb)|give|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +(verb)|practice|use +(verb)|enforce|implement|compel|oblige|obligate +(verb)|denote|refer +(verb)|give|dedicate|consecrate|commit|devote +appoggiatura|1 +(noun)|grace note|acciaccatura|note|musical note|tone +appoint|3 +(verb)|name|nominate|constitute|establish|found|plant|constitute|institute +(verb)|charge +(verb)|equip|fit|fit out|outfit +appointed|4 +(adj)|appointive |nominated|nominative|nonelective +(adj)|assigned +(adj)|decreed|ordained|prescribed|settled +(adj)|furnished |equipped +appointee|2 +(noun)|official|functionary +(noun)|appointment|person|individual|someone|somebody|mortal|human|soul +appointive|2 +(adj)|decision|determination|conclusion +(adj)|appointive |appointed|nominated|nominative|nonelective +appointment|6 +(noun)|assignment|designation|naming|decision|determination|conclusion +(noun)|date|engagement|meeting|get together +(noun)|fitting|furnishings +(noun)|appointee|person|individual|someone|somebody|mortal|human|soul +(noun)|occupation|business|job|line of work|line +(noun)|disposal|disposition +appointment book|1 +(noun)|appointment calendar|book +appointment calendar|1 +(noun)|appointment book|book +apportion|2 +(verb)|allocate|assign|allot|portion +(verb)|share|divvy up|portion out|deal|distribute|give out|hand out +apportionable|1 +(adj)|allocable|allocatable|distributive +apportioned|1 +(adj)|dealt out|doled out|meted out|parceled out|distributed +apportioning|1 +(noun)|allotment|apportionment|allocation|parceling|parcelling|assignation|distribution +apportionment|1 +(noun)|allotment|apportioning|allocation|parceling|parcelling|assignation|distribution +apposable|1 +(adj)|opposable +appose|1 +(verb)|put|set|place|pose|position|lay +apposite|1 +(adj)|appropriate|apt|pertinent|apropos +appositeness|1 +(noun)|aptness|appropriateness +apposition|3 +(noun)|modification|qualifying|limiting +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|juxtaposition|collocation|placement|location|locating|position|positioning|emplacement +appositional|1 +(adj)|appositive|modification|qualifying|limiting +appositive|1 +(adj)|appositional|modification|qualifying|limiting +appositively|1 +(adv)|in apposition +appraisal|2 +(noun)|assessment|classification|categorization|categorisation|sorting +(noun)|estimate|estimation|commercial document|commercial instrument +appraise|2 +(verb)|measure|evaluate|valuate|assess|value|judge +(verb)|survey|analyze|analyse|study|examine|canvass|canvas +appraiser|2 +(noun)|valuator|evaluator|judge +(noun)|authenticator|critic +appraising|1 +(adj)|evaluative|critical +appreciable|1 +(adj)|considerable +appreciate|5 +(verb)|acknowledge|recognize|recognise +(verb)|take account|understand|realize|realise|see +(verb)|prize|value|treasure|see|consider|reckon|view|regard +(verb)|apprize|apprise|revalue|increase +(verb)|apprize|apprise|revalue +appreciated|2 +(adj)|gratifying|pleasing|satisfying|rewarding +(adj)|apprehended|comprehended|understood +appreciation|5 +(noun)|grasp|hold|understanding|apprehension|discernment|savvy +(noun)|taste|discernment|perceptiveness|discrimination|secernment +(noun)|thanks +(noun)|admiration|blessing|approval|approving +(noun)|increase|step-up +appreciative|2 +(adj)|grateful |thankful +(adj)|discriminating +appreciatively|1 +(adv)|gratefully +appreciativeness|1 +(noun)|gratefulness|thankfulness|gratitude +appreciator|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +apprehend|3 +(verb)|get the picture|comprehend|savvy|dig|grasp|compass|understand +(verb)|collar|nail|arrest|pick up|nab|cop|seize|prehend|clutch +(verb)|quail at|anticipate|look for|look to +apprehended|1 +(adj)|appreciated|comprehended|understood +apprehender|2 +(noun)|knower|person|individual|someone|somebody|mortal|human|soul +(noun)|person|individual|someone|somebody|mortal|human|soul +apprehensible|1 +(adj)|intelligible|graspable|perceivable|understandable|comprehensible |comprehendible +apprehension|4 +(noun)|apprehensiveness|dread|fear|fearfulness|fright +(noun)|understanding|discernment|savvy|knowing +(noun)|misgiving|expectation|outlook|prospect +(noun)|arrest|catch|collar|pinch|taking into custody|capture|gaining control|seizure +apprehensive|3 +(adj)|discerning|perceptive +(adj)|anxious|uneasy +(adj)|afraid +apprehensively|1 +(adv)|anxiously|uneasily +apprehensiveness|1 +(noun)|apprehension|dread|fear|fearfulness|fright +apprentice|3 +(adj)|inexperienced +(noun)|learner|prentice|novice|beginner|tyro|tiro|initiate +(verb)|train|prepare +apprenticed|1 +(adj)|articled|bound|indentured|unfree +apprenticeship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +appressed|1 +(adj)|adpressed|close +apprisal|1 +(noun)|telling|notification|informing|making known +apprise|4 +(verb)|advise|notify|give notice|send word|apprize|inform +(verb)|instruct|apprize|inform +(verb)|appreciate|apprize|revalue|increase +(verb)|appreciate|apprize|revalue +apprize|4 +(verb)|advise|notify|give notice|send word|apprise|inform +(verb)|instruct|apprise|inform +(verb)|appreciate|apprise|revalue|increase +(verb)|appreciate|apprise|revalue +appro|1 +(noun)|approval|favorable reception|favourable reception +approach|14 +(noun)|attack|plan of attack|conceptualization|conceptualisation|formulation +(noun)|approaching|coming|motion|movement|move +(noun)|access|way +(noun)|approach path|glide path|glide slope|air lane|flight path|airway|skyway +(noun)|approaching|movement|motion +(noun)|overture|advance|feeler|suggestion|proposition|proffer +(noun)|approaching|coming|timing +(noun)|similarity +(noun)|approach shot|golf stroke|golf shot|swing +(verb)|near|come on|go up|draw near|draw close|come near|come|come up +(verb)|border on|approximate|come close +(verb)|set about|go about|act|move +(verb)|come near|come|come up +(verb)|address|accost|come up to +approach path|1 +(noun)|approach|glide path|glide slope|air lane|flight path|airway|skyway +approach pattern|1 +(noun)|traffic pattern|pattern|path|route|itinerary +approach shot|1 +(noun)|approach|golf stroke|golf shot|swing +approach trench|1 +(noun)|communication trench|trench +approachability|1 +(noun)|accessibility|friendliness +approachable|3 +(adj)|accessible|comprehensible |comprehendible +(adj)|approachable |accessible +(adj)|reachable|accessible +approaching|4 +(adj)|coming|forthcoming|upcoming|future +(noun)|approach|movement|motion +(noun)|approach|coming|timing +(noun)|approach|coming|motion|movement|move +approbate|2 +(verb)|authorize|authorise|pass|clear +(verb)|accept +approbation|2 +(noun)|approval +(noun)|approval|commendation +approbative|1 +(adj)|approving|approbatory|plausive|favorable |favourable +approbatory|1 +(adj)|approving|approbative|plausive|favorable |favourable +appropriable|1 +(adj)|alienable +appropriate|7 +(adj)|appropriate |befitting|due|in order|called for|pat|proper|right|suitable|apropos|proper +(adj)|advantageous|expedient +(adj)|suitable|suited|fit +(adj)|harmonious|congruous |congruent +(adj)|apposite|apt|pertinent|apropos +(verb)|allow|earmark|set aside|reserve|assign|allot|portion +(verb)|capture|seize|conquer|assume|usurp|seize|take over|arrogate +appropriated|1 +(adj)|condemned|confiscate|confiscated|seized|taken over|taken +appropriately|1 +(adv)|suitably|fittingly|befittingly|fitly +appropriateness|2 +(noun)|rightness|propriety|properness|correctitude +(noun)|suitability|suitableness +appropriation|3 +(noun)|money +(noun)|annexation|incorporation +(noun)|acquiring|getting +appropriation bill|1 +(noun)|bill|measure +appropriative|1 +(adj)|acquiring|getting +appropriator|1 +(noun)|acquirer +approval|4 +(noun)|blessing|approving|support +(noun)|liking +(noun)|favorable reception|favourable reception|acceptance +(noun)|commendation|message|content|subject matter|substance +approve|2 +(verb)|O.K.|okay|sanction|authorize|authorise|pass|clear +(verb)|judge +approved|2 +(adj)|sanctioned|authorized |authorised +(adj)|approved +approver|1 +(noun)|authority +approving|2 +(adj)|approbative|approbatory|plausive|favorable |favourable +(noun)|blessing|approval|support +approvingly|1 +(adv)|with approval +approximate|5 +(adj)|approximative|rough|inexact +(adj)|near|close +(adj)|close together|close +(verb)|come close|resemble +(verb)|estimate|gauge|guess|judge|calculate|cipher|cypher|compute|work out|reckon|figure +approximate range|1 +(noun)|ballpark|scope|range|reach|orbit|compass|ambit +approximately|1 +(adv)|about|close to|just about|some|roughly|more or less|around|or so +approximation|4 +(noun)|estimate|estimation|idea|calculation|computation|figuring|reckoning +(noun)|similarity +(noun)|version +(noun)|bringing close together|joining|connection|connexion +approximative|1 +(adj)|approximate|rough|inexact +appurtenance|1 +(noun)|accessory|supplement|add-on|component|constituent|element +appurtenances|2 +(noun)|gear|paraphernalia|equipment +(noun)|accessory|appurtenance|supplement|add-on|component|constituent|element +appurtenant|1 +(adj)|accessory|adjunct|ancillary|adjuvant|auxiliary|subsidiary|supportive +apr|1 +(noun)|April|Apr|Gregorian calendar month +apractic|1 +(adj)|apraxic|unfit +apraxia|1 +(noun)|brain disorder|encephalopathy|brain disease +apraxic|1 +(adj)|apractic|unfit +apres-ski|1 +(adj)|succeeding +apresoline|1 +(noun)|hydralazine|Apresoline|antihypertensive|antihypertensive drug|vasodilator|vasodilative +apricot|3 +(noun)|apricot tree|fruit tree +(noun)|edible fruit +(noun)|yellowish pink|peach|salmon pink|pink +apricot bar|1 +(noun)|fruit bar +apricot sauce|1 +(noun)|sauce +apricot tree|1 +(noun)|apricot|fruit tree +april|1 +(noun)|April|Apr|Gregorian calendar month +april 14|1 +(noun)|Pan American Day|April 14|day +april fool|2 +(noun)|April fool|butt|goat|laughingstock|stooge +(noun)|April fool|practical joke +april fools'|1 +(noun)|April Fools'|April Fools' day|All Fools' day|day +april fools' day|1 +(noun)|April Fools'|April Fools' day|All Fools' day|day +apron|4 +(noun)|protective garment +(noun)|site|land site +(noun)|proscenium|forestage|stage +(noun)|paved surface +apron string|1 +(noun)|apron strings|cord +apron strings|2 +(noun)|apron string|cord +(noun)|apron string|cord +apropos|3 +(adj)|apropos |apposite|appropriate|apt|pertinent|appropriate +(adv)|incidentally +(adv)|seasonably|timely|well-timed +apse|1 +(noun)|apsis|recess|niche +apsidal|1 +(adj)|recess|niche +apsis|1 +(noun)|apse|recess|niche +apsu|1 +(noun)|Apsu|Semitic deity +apt|4 +(adj)|liable|likely +(adj)|clever|intelligent +(adj)|disposed|given|minded|tending|inclined +(adj)|apposite|appropriate|pertinent|apropos +aptenodytes|1 +(noun)|Aptenodytes|genus Aptenodytes|bird genus +aptenodytes forsteri|1 +(noun)|emperor penguin|Aptenodytes forsteri|penguin +aptenodytes patagonica|1 +(noun)|king penguin|Aptenodytes patagonica|penguin +apteral|2 +(adj)|apteral |amphiprostylar|amphiprostyle|amphistylar|porticoed|prostyle|pseudoprostyle +(adj)|apterous|wingless +apterous|1 +(adj)|apteral|wingless +apterygidae|1 +(noun)|Apterygidae|family Apterygidae|bird family +apterygiformes|1 +(noun)|Apterygiformes|order Apterygiformes|animal order +apteryx|1 +(noun)|kiwi|ratite|ratite bird|flightless bird +aptitude|1 +(noun)|ability|power +aptitudinal|1 +(adj)|ability|power +aptly|1 +(adv)|competently|ably|capably|with competence +aptness|2 +(noun)|propensity|disposition +(noun)|appositeness|appropriateness +apulia|1 +(noun)|Puglia|Apulia|Italian region +apus|2 +(noun)|Apus|constellation +(noun)|Apus|genus Apus|bird genus +apus apus|1 +(noun)|European swift|Apus apus|swift +apyretic tetanus|1 +(noun)|tetany|tetanilla|intermittent tetanus|intermittent cramp|syndrome +aqaba|1 +(noun)|Aqaba|Akaba|city|metropolis|urban center +aqua|1 +(noun)|greenish blue|aquamarine|turquoise|cobalt blue|peacock blue|blue|blueness +aqua-lung|2 +(noun)|aqualung|Aqua-Lung|scuba|breathing device|breathing apparatus|breathing machine|ventilator +(noun)| +aqua fortis|1 +(noun)|nitric acid|acid +aqua regia|1 +(noun)|nitrohydrochloric acid|acid +aqua vitae|1 +(noun)|ardent spirits|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +aquacultural|1 +(adj)|aquicultural|hydroponic|farming|agriculture|husbandry +aquaculture|1 +(noun)|cultivation +aqualung|1 +(noun)|Aqua-Lung|scuba|breathing device|breathing apparatus|breathing machine|ventilator +aquamarine|2 +(noun)|transparent gem|beryl +(noun)|greenish blue|aqua|turquoise|cobalt blue|peacock blue|blue|blueness +aquanaut|2 +(noun)|skin-diver|swimmer|natator|bather +(noun)|oceanaut|skilled worker|trained worker +aquaphobia|1 +(noun)|simple phobia +aquaphobic|1 +(adj)|hydrophobic|afraid +aquaplane|3 +(noun)|board +(verb)|plane|skim +(verb)|plane|skim +aquarium|1 +(noun)|fish tank|marine museum|vivarium|tank|storage tank +aquarius|3 +(noun)|Aquarius|Water Bearer|person|individual|someone|somebody|mortal|human|soul +(noun)|Aquarius|constellation +(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac|star sign|sign|mansion|house|planetary house +aquarius the water bearer|1 +(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac|star sign|sign|mansion|house|planetary house +aquatic|3 +(adj)|binary compound|liquid +(adj)|aquatic |semiaquatic|subaquatic|subaqueous|subaquatic|submerged|submersed|underwater|marine +(noun)|plant|flora|plant life +aquatic bird|1 +(noun)|bird +aquatic fern|1 +(noun)|water fern|fern +aquatic mammal|1 +(noun)|placental|placental mammal|eutherian|eutherian mammal +aquatic plant|1 +(noun)|water plant|hydrophyte|hydrophytic plant|vascular plant|tracheophyte +aquatic vertebrate|1 +(noun)|vertebrate|craniate +aquatics|2 +(noun)|water sport|sport|athletics +(noun)|aquatic|plant|flora|plant life +aquatint|3 +(noun)|etching +(noun)|engraving|etching +(verb)|etch +aquavit|1 +(noun)|akvavit|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +aqueduct|1 +(noun)|conduit +aqueductus cerebri|1 +(noun)|cerebral aqueduct|Sylvian aqueduct|duct|epithelial duct|canal|channel +aqueous|1 +(adj)|binary compound|liquid +aqueous humor|1 +(noun)|aqueous humour|liquid body substance|bodily fluid|body fluid|humor|humour +aqueous humour|1 +(noun)|aqueous humor|liquid body substance|bodily fluid|body fluid|humor|humour +aqueous solution|1 +(noun)|solution +aquicultural|1 +(adj)|aquacultural|hydroponic|farming|agriculture|husbandry +aquiculture|1 +(noun)|hydroponics|tank farming|farming|agriculture|husbandry +aquifer|1 +(noun)|geological formation|formation +aquiferous|1 +(adj)|geological formation|formation +aquifoliaceae|1 +(noun)|Aquifoliaceae|family Aquifoliaceae|holly family|dicot family|magnoliopsid family +aquila|3 +(noun)|Aquila|constellation +(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city|metropolis|urban center +(noun)|Aquila|genus Aquila|bird genus +aquila chrysaetos|1 +(noun)|golden eagle|Aquila chrysaetos|eagle|bird of Jove +aquila degli abruzzi|1 +(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city|metropolis|urban center +aquila rapax|1 +(noun)|tawny eagle|Aquila rapax|eagle|bird of Jove +aquilege|1 +(noun)|columbine|aquilegia|flower +aquilegia|1 +(noun)|columbine|aquilege|flower +aquilegia canadensis|1 +(noun)|meeting house|honeysuckle|Aquilegia canadensis|columbine|aquilegia|aquilege +aquilegia coerulia|1 +(noun)|blue columbine|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine|aquilegia|aquilege +aquilegia scopulorum calcarea|1 +(noun)|blue columbine|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine|aquilegia|aquilege +aquilegia vulgaris|1 +(noun)|granny's bonnets|Aquilegia vulgaris|columbine|aquilegia|aquilege +aquiline|1 +(adj)|hooked|crooked +aquinas|1 +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +aquitaine|1 +(noun)|Aquitaine|Aquitania|French region +aquitania|1 +(noun)|Aquitaine|Aquitania|French region +ar|3 +(noun)|argon|Ar|atomic number 18|chemical element|element|noble gas|inert gas|argonon +(noun)|are|area unit|square measure +(noun)|Arkansas|Land of Opportunity|AR|American state +ara|2 +(noun)|Ara|constellation +(noun)|Ara|genus Ara|bird genus +arab|2 +(noun)|Arab|Arabian|Semite +(noun)|Arabian|Arab|saddle horse|riding horse|mount +arab-berber|1 +(noun)|Berber|Arab-Berber|ethnic minority +arab-israeli war|2 +(noun)|Arab-Israeli War|Yom Kippur War|war|warfare +(noun)|Arab-Israeli War|Six-Day War|Six Day War|war|warfare +arab chief|1 +(noun)|sheik|tribal sheik|sheikh|tribal sheikh|Arab chief|ruler|swayer +arab league|1 +(noun)|Arab League|world organization|world organisation|international organization|international organisation|global organization +arab republic of egypt|1 +(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country|African nation +arab revolutionary brigades|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +arabesque|2 +(noun)|ballet position +(noun)|decoration|ornament|ornamentation +arabia|1 +(noun)|Arabian Peninsula|Arabia|peninsula +arabian|4 +(adj)|Arabian|peninsula +(adj)|Arabian|saddle horse|riding horse|mount +(noun)|Arab|Arabian|Semite +(noun)|Arabian|Arab|saddle horse|riding horse|mount +arabian camel|1 +(noun)|Arabian camel|dromedary|Camelus dromedarius|camel +arabian coffee|1 +(noun)|Arabian coffee|Coffea arabica|coffee|coffee tree +arabian desert|1 +(noun)|Arabian Desert|desert +arabian jasmine|1 +(noun)|Arabian jasmine|Jasminum sambac|jasmine +arabian nights|1 +(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale|folk tale +arabian nights' entertainment|1 +(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale|folk tale +arabian peninsula|1 +(noun)|Arabian Peninsula|Arabia|peninsula +arabian sea|1 +(noun)|Arabian Sea|sea +arabian tea|1 +(noun)|kat|khat|qat|quat|cat|Arabian tea|African tea|stimulant|stimulant drug +arabic|2 +(adj)|Arabic|Semite +(noun)|Arabic|Arabic language|Semitic +arabic alphabet|1 +(noun)|Arabic alphabet|alphabet +arabic language|1 +(noun)|Arabic|Arabic language|Semitic +arabic numeral|1 +(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral|number +arabidopsis|1 +(noun)|Arabidopsis|genus Arabidopsis|dilleniid dicot genus +arabidopsis lyrata|1 +(noun)|Arabidopsis lyrata|cress|cress plant +arabidopsis thaliana|1 +(noun)|Arabidopsis thaliana|mouse-ear cress|cress|cress plant +arability|1 +(noun)|suitability|suitableness +arabis|1 +(noun)|Arabis|genus Arabis|dilleniid dicot genus +arabis canadensis|1 +(noun)|sicklepod|Arabis Canadensis|rock cress|rockcress +arabis glabra|1 +(noun)|tower mustard|tower cress|Turritis glabra|Arabis glabra|cress|cress plant +arabis turrita|1 +(noun)|tower cress|tower mustard|Arabis turrita|rock cress|rockcress +arabist|1 +(noun)|Arabist|scholar|scholarly person|student +arable|1 +(adj)|cultivable|cultivatable|tillable|productive +araceae|1 +(noun)|Araceae|family Araceae|arum family|monocot family|liliopsid family +araceous|1 +(adj)|aroid|monocot family|liliopsid family +arachis|1 +(noun)|Arachis|genus Arachis|rosid dicot genus +arachis hypogaea|1 +(noun)|peanut|peanut vine|Arachis hypogaea|legume|leguminous plant +arachnid|1 +(noun)|arachnoid|arthropod +arachnida|1 +(noun)|Arachnida|class Arachnida|class +arachnidian|1 +(adj)|arachnoid|spidery|spiderlike|spiderly|class +arachnoid|3 +(adj)|arachnidian|spidery|spiderlike|spiderly|class +(noun)|arachnoid membrane|meninx|meninges +(noun)|arachnid|arthropod +arachnoid membrane|1 +(noun)|arachnoid|meninx|meninges +arafat|1 +(noun)|Arafat|Yasser Arafat|statesman|solon|national leader +arafura sea|1 +(noun)|Arafura Sea|sea +aragon|2 +(noun)|Aragon|Louis Aragon|writer|author +(noun)|Aragon|district|territory|territorial dominion|dominion +aragonite|1 +(noun)|mineral +araguaia|1 +(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river +araguaia river|1 +(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river +araguaya|1 +(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river +araguaya river|1 +(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river +arak|1 +(noun)|arrack|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +aral sea|1 +(noun)|Lake Aral|Aral Sea|lake +arales|1 +(noun)|Arales|order Arales|plant order +aralia|1 +(noun)|woody plant|ligneous plant +aralia elata|1 +(noun)|Japanese angelica tree|Aralia elata|shrub|bush +aralia hispida|1 +(noun)|bristly sarsaparilla|bristly sarsparilla|dwarf elder|Aralia hispida|subshrub|suffrutex +aralia nudicaulis|1 +(noun)|wild sarsaparilla|false sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub|suffrutex +aralia racemosa|1 +(noun)|American spikenard|petty morel|life-of-man|Aralia racemosa|subshrub|suffrutex +aralia spinosa|1 +(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub|bush +aralia stipulata|1 +(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub|bush +araliaceae|1 +(noun)|Araliaceae|family Araliaceae|ivy family|rosid dicot family +aram|1 +(noun)|Aram|Syria|Syrian Arab Republic +aram ilich khachaturian|1 +(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer +aram kachaturian|1 +(noun)|Kachaturian|Aram Kachaturian|composer +aram khachaturian|1 +(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer +aramaean|2 +(adj)|Aramean|Aramaean|Syria|Syrian Arab Republic +(noun)|Aramean|Aramaean|Semite +aramaic|3 +(adj)|Aramaic|Semitic +(noun)|Aramaic|Semitic +(noun)|Aramaic|Aramaic script|script +aramaic script|1 +(noun)|Aramaic|Aramaic script|script +arame|1 +(noun)|seaweed +aramean|2 +(adj)|Aramean|Aramaean|Syria|Syrian Arab Republic +(noun)|Aramean|Aramaean|Semite +aramus|1 +(noun)|Aramus|genus Aramus|bird genus +aramus guarauna|1 +(noun)|courlan|Aramus guarauna|wading bird|wader +aramus pictus|1 +(noun)|limpkin|Aramus pictus|wading bird|wader +aran islands|1 +(noun)|Aran Islands|island +aranea|1 +(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus +aranea diademata|1 +(noun)|garden spider|Aranea diademata|spider +araneae|1 +(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order +araneida|1 +(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order +araneidal|1 +(adj)|araneidan|animal order +araneidan|1 +(adj)|araneidal|animal order +araneus|1 +(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus +araneus cavaticus|1 +(noun)|barn spider|Araneus cavaticus|spider +aranyaka|1 +(noun)|Aranyaka|Vedic literature|Veda +arapaho|2 +(noun)|Arapaho|Arapahoe|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Arapaho|Arapahoe|Algonquian|Algonquin|Algonquian language +arapahoe|2 +(noun)|Arapaho|Arapahoe|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Arapaho|Arapahoe|Algonquian|Algonquin|Algonquian language +ararat|1 +(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak +arariba|1 +(noun)|Centrolobium robustum|zebrawood|zebrawood tree +araroba|1 +(noun)|Goa powder|chrysarobin|powder +aras|3 +(noun)|Aras|Araxes|river +(noun)|Ara|constellation +(noun)|Ara|genus Ara|bird genus +arauca|1 +(noun)|Arauca|river +araucaria|1 +(noun)|conifer|coniferous tree +araucaria araucana|1 +(noun)|monkey puzzle|chile pine|Araucaria araucana|araucaria +araucaria bidwillii|1 +(noun)|bunya bunya|bunya bunya tree|Araucaria bidwillii|araucaria +araucaria columnaris|1 +(noun)|new caledonian pine|Araucaria columnaris|araucaria +araucaria cunninghamii|1 +(noun)|hoop pine|Moreton Bay pine|Araucaria cunninghamii|araucaria +araucaria excelsa|1 +(noun)|norfolk island pine|Araucaria heterophylla|Araucaria excelsa|araucaria +araucaria family|1 +(noun)|Araucariaceae|family Araucariaceae|gymnosperm family +araucaria heterophylla|1 +(noun)|norfolk island pine|Araucaria heterophylla|Araucaria excelsa|araucaria +araucariaceae|1 +(noun)|Araucariaceae|family Araucariaceae|araucaria family|gymnosperm family +araujia|1 +(noun)|Araujia|genus Araujia|dicot genus|magnoliopsid genus +araujia sericofera|1 +(noun)|cruel plant|Araujia sericofera|vine +arava|1 +(noun)|leflunomide|Arava|anti-TNF compound +arawak|2 +(noun)|Arawak|Arawakan|Amerindian|Native American +(noun)|Arawak|Arawakan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +arawakan|3 +(adj)|Arawakan|Amerindian|Native American|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Arawak|Arawakan|Amerindian|Native American +(noun)|Arawak|Arawakan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +arawn|1 +(noun)|Arawn|Celtic deity +araxes|1 +(noun)|Aras|Araxes|river +arb|1 +(noun)|arbitrageur|arbitrager|businessman|man of affairs +arbalest|1 +(noun)|catapult|arbalist|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +arbalist|1 +(noun)|catapult|arbalest|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +arbiter|2 +(noun)|supreme authority|expert +(noun)|arbitrator|mediator|go-between|intermediator|intermediary|intercessor +arbitrable|1 +(adj)|arbitrable +arbitrage|2 +(noun)|investing|investment +(verb)|trade|merchandise +arbitrager|1 +(noun)|arbitrageur|arb|businessman|man of affairs +arbitrageur|1 +(noun)|arbitrager|arb|businessman|man of affairs +arbitral|1 +(adj)|arbitrational|mediation +arbitrament|1 +(noun)|arbitration|arbitrement|judgment|judgement|judicial decision +arbitrarily|1 +(adv)|randomly|indiscriminately|haphazardly|willy-nilly|at random|every which way +arbitrariness|1 +(noun)|flightiness|whimsicality|whimsy|whimsey|capriciousness|irresponsibility|irresponsibleness +arbitrary|1 +(adj)|arbitrary |absolute|capricious|impulsive|whimsical|discretionary|discretional +arbitrate|1 +(verb)|intercede|mediate|intermediate|liaise|negociate|negotiate|talk terms +arbitration|2 +(noun)|mediation +(noun)|arbitrament|arbitrement|judgment|judgement|judicial decision +arbitration clause|1 +(noun)|article|clause +arbitrational|1 +(adj)|arbitral|mediation +arbitrative|1 +(adj)|mediation +arbitrator|1 +(noun)|arbiter|mediator|go-between|intermediator|intermediary|intercessor +arbitrement|1 +(noun)|arbitration|arbitrament|judgment|judgement|judicial decision +arbor|3 +(noun)|tree +(noun)|spindle|mandrel|mandril|rotating shaft|shaft +(noun)|arbour|bower|pergola|framework|frame|framing +arbor day|1 +(noun)|Arbor Day|day +arboraceous|1 +(adj)|arboreous|woodsy|woody|wooded +arborary|1 +(adj)|arborical|arboreal|arborous|woody plant|ligneous plant +arboreal|3 +(adj)|arborical|arborary|arborous|woody plant|ligneous plant +(adj)|arboreal |arboreous|tree-living +(adj)|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy +arboreal salamander|1 +(noun)|Aneides lugubris|climbing salamander +arboreous|3 +(adj)|arboreal |tree-living +(adj)|arboraceous|woodsy|woody|wooded +(adj)|arboreal|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy +arborescent|1 +(adj)|arboreal|arboreous|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy +arborescent plant|1 +(noun)|woody plant|ligneous plant +arboresque|1 +(adj)|arboreal|arboreous|arborescent|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy +arboretum|1 +(noun)|botanical garden|facility|installation +arborical|1 +(adj)|arboreal|arborary|arborous|woody plant|ligneous plant +arboriculture|1 +(noun)|tree farming|farming|agriculture|husbandry +arboriculturist|1 +(noun)|forester|tree farmer|farmer|husbandman|granger|sodbuster +arboriform|1 +(adj)|arboreal|arboreous|arborescent|arboresque|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy +arborise|1 +(verb)|arborize|branch|ramify|fork|furcate|separate +arborist|1 +(noun)|tree surgeon|specialist|specializer|specialiser +arborize|1 +(verb)|arborise|branch|ramify|fork|furcate|separate +arborolatry|1 +(noun)|tree-worship|worship +arborous|1 +(adj)|arborical|arboreal|arborary|woody plant|ligneous plant +arborvirus|1 +(noun)|arbovirus|virus +arborvitae|1 +(noun)|conifer|coniferous tree +arbour|1 +(noun)|arbor|bower|pergola|framework|frame|framing +arbovirus|1 +(noun)|arborvirus|virus +arbutus|1 +(noun)|shrub|bush +arbutus menziesii|1 +(noun)|madrona|madrono|manzanita|Arbutus menziesii|arbutus +arbutus unedo|1 +(noun)|strawberry tree|Irish strawberry|Arbutus unedo|arbutus +arc|4 +(noun)|discharge|spark|electric arc|electric discharge|electrical conduction +(noun)|curve|curved shape +(noun)|bow|curve|curved shape +(verb)|arch|curve|bend|flex +arc-boutant|1 +(noun)|flying buttress|buttress|buttressing +arc lamp|1 +(noun)|arc light|electric lamp +arc light|1 +(noun)|arc lamp|electric lamp +arca|1 +(noun)|Arca|genus Arca|mollusk genus +arcade|2 +(noun)|passageway +(noun)|colonnade|structure|construction +arcadia|1 +(noun)|Arcadia|geographical area|geographic area|geographical region|geographic region +arcadian|2 +(adj)|bucolic|pastoral|rustic|rural +(noun)|Arcadian|Greek|Hellene +arcadic|1 +(noun)|Arcadic|Ancient Greek +arcane|1 +(adj)|esoteric +arcanum|1 +(noun)|secret|information|info +arcdegree|1 +(noun)|degree|angular unit +arced|1 +(adj)|arched|arching|arciform|arcuate|bowed|curved |curving +arcella|1 +(noun)|protozoan|protozoon +arcellidae|1 +(noun)|Arcellidae|family Arcellidae|protoctist family +arceuthobium|1 +(noun)|Arceuthobium|genus Arceuthobium|dilleniid dicot genus +arceuthobium pusillum|1 +(noun)|American mistletoe|Arceuthobium pusillum|parasitic plant +arch|8 +(adj)|important |of import +(adj)|condescending|patronizing|patronising|superior +(adj)|skilled +(noun)|curve|curved shape +(noun)|skeletal structure +(noun)|archway|entrance|entranceway|entryway|entry|entree +(noun)|structure|construction +(verb)|curve|arc|bend|flex +arch over|1 +(verb)|overarch +arch support|1 +(noun)|support +archaean|1 +(adj)|archean|early +archaebacteria|1 +(noun)|archaebacterium|archaeobacteria|archeobacteria|moneran|moneron +archaebacterium|1 +(noun)|archaebacteria|archaeobacteria|archeobacteria|moneran|moneron +archaeobacteria|1 +(noun)|archaebacteria|archaebacterium|archeobacteria|moneran|moneron +archaeologic|1 +(adj)|archaeological|archeological|archeologic|anthropology +archaeological|1 +(adj)|archeological|archaeologic|archeologic|anthropology +archaeologist|1 +(noun)|archeologist|anthropologist +archaeology|1 +(noun)|archeology|anthropology +archaeopteryx|1 +(noun)|archeopteryx|Archaeopteryx lithographica|bird +archaeopteryx lithographica|1 +(noun)|archaeopteryx|archeopteryx|Archaeopteryx lithographica|bird +archaeornis|1 +(noun)|bird +archaeornithes|1 +(noun)|Archaeornithes|subclass Archaeornithes|class +archaeozoic|2 +(adj)|archeozoic|early +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archaeozoic aeon|1 +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archaic|2 +(adj)|antediluvian|antiquated|old +(adj)|primitive|early +archaicism|1 +(noun)|archaism|formulation|expression +archaise|1 +(verb)|archaize|change|alter|modify +archaism|1 +(noun)|archaicism|formulation|expression +archaistic|1 +(adj)|formulation|expression +archaize|1 +(verb)|archaise|change|alter|modify +archangel|2 +(noun)|angel +(noun)|garden angelica|Angelica Archangelica|angelica|angelique +archangelic|1 +(adj)|archangelical|angel +archangelical|1 +(adj)|archangelic|angel +archbishop|1 +(noun)|bishop +archbishopric|1 +(noun)|jurisdiction +archdeacon|1 +(noun)|clergyman|reverend|man of the cloth +archdeaconry|1 +(noun)|jurisdiction +archdiocesan|1 +(adj)|diocese|bishopric +archdiocese|1 +(noun)|diocese|bishopric +archducal|1 +(adj)|prince +archduchess|1 +(noun)|princess +archduchy|1 +(noun)|domain|demesne|land +archduke|1 +(noun)|prince +archean|2 +(adj)|archaean|early +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archean aeon|1 +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archean eon|1 +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +arched|2 +(adj)|structure|construction +(adj)|arced|arching|arciform|arcuate|bowed|curved |curving +archegonial|1 +(adj)|archegoniate|plant organ +archegoniate|1 +(adj)|archegonial|plant organ +archegonium|1 +(noun)|plant organ +archenteron|1 +(noun)|cavity|bodily cavity|cavum +archeobacteria|1 +(noun)|archaebacteria|archaebacterium|archaeobacteria|moneran|moneron +archeologic|1 +(adj)|archaeological|archeological|archaeologic|anthropology +archeological|1 +(adj)|archaeological|archaeologic|archeologic|anthropology +archeological remains|1 +(noun)|remains|relic +archeological site|1 +(noun)|dig|excavation|site|land site +archeologist|1 +(noun)|archaeologist|anthropologist +archeology|1 +(noun)|archaeology|anthropology +archeopteryx|1 +(noun)|archaeopteryx|Archaeopteryx lithographica|bird +archeozoic|2 +(adj)|archaeozoic|early +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archeozoic eon|1 +(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon|aeon +archepiscopal|1 +(adj)|archiepiscopal|bishop +archer|3 +(noun)|bowman|expert +(noun)|Sagittarius|Archer|person|individual|someone|somebody|mortal|human|soul +(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac|star sign|sign|mansion|house|planetary house +archerfish|1 +(noun)|Toxotes jaculatrix|percoid fish|percoid|percoidean +archery|1 +(noun)|sport|athletics +arches national park|1 +(noun)|Arches National Park|national park +archespore|1 +(noun)|archesporium|cell +archesporial|1 +(adj)|cell +archesporium|1 +(noun)|archespore|cell +archetypal|1 +(adj)|archetypical|prototypal|prototypic|prototypical|first +archetype|1 +(noun)|original|pilot|model|example +archetypical|1 +(adj)|archetypal|prototypal|prototypic|prototypical|first +archiannelid|1 +(noun)|annelid|annelid worm|segmented worm +archiannelida|1 +(noun)|Archiannelida|class Archiannelida|class +archibald macleish|1 +(noun)|MacLeish|Archibald MacLeish|poet +archibald percival wavell|1 +(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general|full general|field marshal +archidiaconal|1 +(adj)|clergyman|reverend|man of the cloth +archidiaconate|1 +(noun)|rank +archidiskidon|1 +(noun)|Archidiskidon|genus Archidiskidon|mammal genus +archidiskidon imperator|1 +(noun)|imperial mammoth|imperial elephant|Archidiskidon imperator|mammoth +archiepiscopal|1 +(adj)|archepiscopal|bishop +archil|2 +(noun)|orchil|cudbear|dye|dyestuff +(noun)|orchil|lecanora +archilochus|1 +(noun)|Archilochus|genus Archilochus|bird genus +archilochus colubris|1 +(noun)|Archilochus colubris|hummingbird +archimandrite|1 +(noun)|abbot|superior +archimedes|1 +(noun)|Archimedes|mathematician|physicist +archimedes' principle|1 +(noun)|Archimedes' principle|law of Archimedes|law|law of nature +archine|1 +(noun)|linear unit +arching|1 +(adj)|arced|arched|arciform|arcuate|bowed|curved |curving +archipallium|1 +(noun)|paleocortex|cerebral cortex|cerebral mantle|pallium|cortex +archipelagic|1 +(adj)|land|dry land|earth|ground|solid ground|terra firma +archipelago|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +architect|1 +(noun)|designer|creator +architectonic|1 +(adj)|tectonic|science|scientific discipline +architectonics|1 +(noun)|tectonics|science|scientific discipline +architectural|1 +(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|fine arts|beaux arts +architectural engineering|1 +(noun)|engineering|engineering science|applied science|technology +architectural ornament|1 +(noun)|decoration|ornament|ornamentation +architectural plan|1 +(noun)|plan|drawing +architectural style|1 +(noun)|style of architecture|type of architecture|art form +architecture|4 +(noun)|building|edifice +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|fine arts|beaux arts +(noun)|profession +(noun)|computer architecture|structure +architeuthis|1 +(noun)|giant squid|squid +architrave|2 +(noun)|molding|moulding +(noun)|support +archival|1 +(adj)|depository|deposit|repository +archive|2 +(noun)|archives|depository|deposit|repository +(verb)|file away|collect|pull in +archives|3 +(noun)|collection|compendium +(noun)|archive|depository|deposit|repository +(noun)|archive|depository|deposit|repository +archivist|1 +(noun)|collector|aggregator +archly|1 +(adv)|in an arch manner +archness|1 +(noun)|impertinence|perkiness|pertness|sauciness|playfulness|fun +archosargus|1 +(noun)|Archosargus|genus Archosargus|fish genus +archosargus probatocephalus|1 +(noun)|sheepshead|Archosargus probatocephalus|sparid|sparid fish +archosargus rhomboidalis|1 +(noun)|Atlantic sea bream|Archosargus rhomboidalis|sea bream|bream +archosaur|1 +(noun)|archosaurian|archosaurian reptile|diapsid|diapsid reptile +archosauria|1 +(noun)|Archosauria|subclass Archosauria|class +archosaurian|2 +(adj)|class +(noun)|archosaur|archosaurian reptile|diapsid|diapsid reptile +archosaurian reptile|1 +(noun)|archosaur|archosaurian|diapsid|diapsid reptile +archpriest|1 +(noun)|hierarch|high priest|prelate|primate|priest +archway|1 +(noun)|arch|entrance|entranceway|entryway|entry|entree +arcidae|1 +(noun)|Arcidae|family Arcidae|mollusk family +arciform|1 +(adj)|arced|arched|arching|arcuate|bowed|curved |curving +arcminute|1 +(noun)|minute|minute of arc|angular unit +arcsecond|1 +(noun)|second|angular unit +arctic|5 +(adj)|north-polar|Arctic|polar +(adj)|Frigid Zone|polar zone +(adj)|frigid|gelid|glacial|icy|polar|cold +(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone|polar zone +(noun)|galosh|golosh|rubber|gumshoe|overshoe +arctic archipelago|1 +(noun)|Arctic Archipelago|archipelago +arctic char|1 +(noun)|Arctic char|Salvelinus alpinus|char +arctic circle|1 +(noun)|Arctic Circle|polar circle +arctic fox|1 +(noun)|white fox|Alopex lagopus|fox +arctic ground squirrel|1 +(noun)|Arctic ground squirrel|parka squirrel|Citellus parryi|ground squirrel|gopher|spermophile +arctic hare|1 +(noun)|polar hare|Arctic hare|Lepus arcticus|hare +arctic moss|1 +(noun)|reindeer moss|reindeer lichen|Cladonia rangiferina|lichen +arctic mouse-ear|1 +(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +arctic ocean|1 +(noun)|Arctic Ocean|ocean +arctic poppy|1 +(noun)|Iceland poppy|Papaver nudicaule|poppy +arctic skua|1 +(noun)|parasitic jaeger|Stercorarius parasiticus|jaeger +arctic willow|1 +(noun)|Salix arctica|willow|willow tree +arctic wolf|1 +(noun)|white wolf|Arctic wolf|Canis lupus tundrarum|wolf +arctic zone|1 +(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone|polar zone +arctictis|1 +(noun)|Arctictis|genus Arctictis|mammal genus +arctictis bintourong|1 +(noun)|binturong|bearcat|Arctictis bintourong|civet|civet cat +arctiid|1 +(noun)|arctiid moth|moth +arctiid moth|1 +(noun)|arctiid|moth +arctiidae|1 +(noun)|Arctiidae|family Arctiidae|arthropod family +arctium|1 +(noun)|Arctium|genus Arctium|asterid dicot genus +arctium lappa|1 +(noun)|great burdock|greater burdock|cocklebur|Arctium lappa|burdock|clotbur +arctium minus|1 +(noun)|common burdock|lesser burdock|Arctium minus|burdock|clotbur +arctocebus|1 +(noun)|Arctocebus|genus Arctocebus|mammal genus +arctocebus calabarensis|1 +(noun)|angwantibo|golden potto|Arctocebus calabarensis|lemur +arctocephalus|1 +(noun)|Arctocephalus|genus Arctocephalus|mammal genus +arctocephalus philippi|1 +(noun)|guadalupe fur seal|Arctocephalus philippi|fur seal +arctonyx|1 +(noun)|Arctonyx|genus Arctonyx|mammal genus +arctonyx collaris|1 +(noun)|hog badger|hog-nosed badger|sand badger|Arctonyx collaris|badger +arctostaphylos|1 +(noun)|Arctostaphylos|genus Arctostaphylos|dilleniid dicot genus +arctostaphylos alpina|1 +(noun)|alpine bearberry|black bearberry|Arctostaphylos alpina|bearberry +arctostaphylos andersonii|1 +(noun)|heartleaf manzanita|Arctostaphylos andersonii|manzanita +arctostaphylos manzanita|1 +(noun)|Parry manzanita|Arctostaphylos manzanita|manzanita +arctostaphylos tomentosa|1 +(noun)|downy manzanita|woolly manzanita|Arctostaphylos tomentosa|manzanita +arctostaphylos uva-ursi|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +arctotis|1 +(noun)|Arctotis|genus Arctotis|asterid dicot genus +arctotis stoechadifolia|1 +(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower +arctotis venusta|1 +(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower +arcturus|1 +(noun)|Arcturus|giant star|giant +arcuate|1 +(adj)|arced|arched|arching|arciform|bowed|curved |curving +arcuate artery|1 +(noun)|arteria arcuata|artery|arteria|arterial blood vessel +arcuate artery of the kidney|1 +(noun)|artery|arteria|arterial blood vessel +arcuate vein of the kidney|1 +(noun)|vena arcuata renis|vein|vena|venous blood vessel +arcus|1 +(noun)|arcus senilis|cornea +arcus senilis|1 +(noun)|arcus|cornea +arcus zygomaticus|1 +(noun)|zygoma|zygomatic arch|bone|os +arda|1 +(noun)|Advanced Research and Development Activity|ARDA|agency|federal agency|government agency|bureau|office|authority +ardea|1 +(noun)|Ardea|genus Ardea|bird genus +ardea herodius|1 +(noun)|great blue heron|Ardea herodius|heron +ardea occidentalis|1 +(noun)|great white heron|Ardea occidentalis|heron +ardeb|1 +(noun)|dry unit|dry measure +ardeidae|1 +(noun)|Ardeidae|family Ardeidae|bird family +ardennes|1 +(noun)|Ardennes|tableland|plateau +ardennes counteroffensive|1 +(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle +ardent|3 +(adj)|burning|fervent|fervid|fiery|impassioned|perfervid|torrid|passionate +(adj)|warm|enthusiastic +(adj)|bright +ardent spirits|1 +(noun)|aqua vitae|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +ardisia|1 +(noun)|Ardisia|genus Ardisia|dicot genus|magnoliopsid genus +ardisia crenata|1 +(noun)|coralberry|spiceberry|Ardisia crenata|shrub|bush +ardisia escallonoides|1 +(noun)|marlberry|Ardisia escallonoides|Ardisia paniculata|shrub|bush +ardisia paniculata|1 +(noun)|marlberry|Ardisia escallonoides|Ardisia paniculata|shrub|bush +ardor|3 +(noun)|ardour|elan|zeal|eagerness|avidity|avidness|keenness +(noun)|ardour|love +(noun)|ardour|fervor|fervour|fervency|fire|fervidness|passion|passionateness +ardour|3 +(noun)|ardor|elan|zeal|eagerness|avidity|avidness|keenness +(noun)|ardor|love +(noun)|ardor|fervor|fervour|fervency|fire|fervidness|passion|passionateness +ards|1 +(noun)|adult respiratory distress syndrome|ARDS|wet lung|white lung|respiratory disease|respiratory illness|respiratory disorder +arduous|3 +(adj)|backbreaking|grueling|gruelling|hard|heavy|laborious|punishing|toilsome|effortful +(adj)|straining|strenuous|effortful +(adj)|difficult |hard +arduousness|1 +(noun)|strenuousness|effortfulness +are|1 +(noun)|ar|area unit|square measure +area|6 +(noun)|country|region +(noun)|sphere|domain|orbit|field|arena|environment +(noun)|topic|subject|issue|matter +(noun)|structure|construction +(noun)|region|body part +(noun)|expanse|surface area|extent +area bombing|1 +(noun)|carpet bombing|saturation bombing|bombing|bombardment +area code|1 +(noun)|code +area of cardiac dullness|1 +(noun)|area|region +area unit|1 +(noun)|square measure|unit of measurement|unit +areal|1 +(adj)|region +areaway|1 +(noun)|passageway +areca|1 +(noun)|feather palm +areca catechu|1 +(noun)|betel palm|Areca catechu|areca +areca nut|1 +(noun)|betel nut|edible seed +arecaceae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +arecidae|1 +(noun)|Arecidae|subclass Arecidae|class +areflexia|1 +(noun)|symptom +arena|4 +(noun)|sphere|domain|area|orbit|field|environment +(noun)|area|country +(noun)|stadium|bowl|sports stadium|structure|construction +(noun)|scene of action|playing field|athletic field|playing area|field +arena theater|1 +(noun)|theater in the round|theater|theatre|house +arenaceous|1 +(adj)|arenaceous |sandy|sandlike +arenaceous rock|1 +(noun)|sedimentary rock +arenaria|2 +(noun)|Arenaria|genus Arenaria|caryophylloid dicot genus +(noun)|Arenaria|genus Arenaria|bird genus +arenaria-melanocephala|1 +(noun)|black turnstone|Arenaria-Melanocephala|turnstone +arenaria caroliniana|1 +(noun)|pine-barren sandwort|longroot|Arenaria caroliniana|sandwort +arenaria groenlandica|1 +(noun)|mountain sandwort|mountain starwort|mountain daisy|Arenaria groenlandica|sandwort +arenaria interpres|1 +(noun)|ruddy turnstone|Arenaria interpres|turnstone +arenaria peploides|1 +(noun)|seabeach sandwort|Arenaria peploides|sandwort +arenaria serpyllifolia|1 +(noun)|thyme-leaved sandwort|Arenaria serpyllifolia|sandwort +arenaria stricta|1 +(noun)|rock sandwort|Arenaria stricta|sandwort +arenaviridae|1 +(noun)|Arenaviridae|arbovirus|arborvirus +arenavirus|1 +(noun)|animal virus +arendt|1 +(noun)|Arendt|Hannah Arendt|historian|historiographer|philosopher +arenga|1 +(noun)|Arenga|genus Arenga|plant genus +arenga pinnata|1 +(noun)|sugar palm|gomuti|gomuti palm|Arenga pinnata|sago palm +arenicolous|1 +(adj)|soil|dirt +areola|2 +(noun)|interstice +(noun)|ring of color|area|region +areolar|1 +(adj)|areolate|interstice +areolar tissue|1 +(noun)|connective tissue +areolate|1 +(adj)|areolar|interstice +areopagite|1 +(noun)|Areopagite|member +areopagus|2 +(noun)|Areopagus|hill +(noun)|Areopagus|assembly +arequipa|1 +(noun)|Arequipa|city|metropolis|urban center +arere|1 +(noun)|obeche|obechi|samba|Triplochiton scleroxcylon|tree +ares|2 +(noun)|Ares|Greek deity +(noun)|are|ar|area unit|square measure +arete|1 +(noun)|ridge +areteria cervicalis|1 +(noun)|cervical artery|artery|arteria|arterial blood vessel +arethusa|1 +(noun)|orchid|orchidaceous plant +arethusa bulbosa|1 +(noun)|bog rose|wild pink|dragon's mouth|Arethusa bulbosa|arethusa +argal|1 +(noun)|argali|Ovis ammon|wild sheep +argali|1 +(noun)|argal|Ovis ammon|wild sheep +argasid|1 +(noun)|soft tick|tick +argasidae|1 +(noun)|Argasidae|family Argasidae|arthropod family +argemone|1 +(noun)|prickly poppy|white thistle|devil's fig|herb|herbaceous plant +argemone mexicana|1 +(noun)|Mexican poppy|Argemone mexicana|prickly poppy|argemone|white thistle|devil's fig +argent|2 +(adj)|silver|silvery|silverish|achromatic +(noun)|tincture +argentic|1 +(adj)|noble metal|conductor +argentiferous|1 +(adj)|metallic +argentina|2 +(noun)|Argentina|Argentine Republic|the Argentine|South American country|South American nation +(noun)|Argentina|genus Argentina|fish genus +argentine|2 +(adj)|Argentine|Argentinian|South American country|South American nation +(noun)|soft-finned fish|malacopterygian +argentine hemorrhagic fever|1 +(noun)|Argentine hemorrhagic fever|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +argentine monetary unit|1 +(noun)|Argentine monetary unit|monetary unit +argentine republic|1 +(noun)|Argentina|Argentine Republic|the Argentine|South American country|South American nation +argentinian|2 +(adj)|Argentine|Argentinian|South American country|South American nation +(noun)|Argentinian|South American +argentinidae|1 +(noun)|Argentinidae|family Argentinidae|fish family +argentinosaur|1 +(noun)|dinosaur +argentite|1 +(noun)|mineral +argentous|1 +(adj)|noble metal|conductor +argil|1 +(noun)|clay +argillaceous|1 +(adj)|argillaceous |clayey +argillaceous rock|1 +(noun)|sedimentary rock +argillite|1 +(noun)|sedimentary rock +arginine|1 +(noun)|essential amino acid +argiope|1 +(noun)|Argiope|genus Argiope|arthropod genus +argiope aurantia|1 +(noun)|black and gold garden spider|Argiope aurantia|spider +argiopidae|1 +(noun)|Argiopidae|family Argiopidae|arthropod family +argive|1 +(adj)|Argive|city|metropolis|urban center +argle-bargle|1 +(noun)|argy-bargy|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +argo|1 +(noun)|Argo|constellation +argon|1 +(noun)|Ar|atomic number 18|chemical element|element|noble gas|inert gas|argonon +argonaut|3 +(noun)|adventurer|venturer +(noun)|Argonaut|fictional character|fictitious character|character +(noun)|paper nautilus|nautilus|Argonaut|Argonauta argo|octopod +argonauta|1 +(noun)|Argonauta|genus Argonauta|mollusk genus +argonauta argo|1 +(noun)|paper nautilus|nautilus|Argonaut|Argonauta argo|octopod +argonautidae|1 +(noun)|Argonautidae|family Argonautidae|mollusk family +argonne|1 +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +argonne forest|1 +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +argonon|1 +(noun)|noble gas|inert gas|chemical element|element|gas +argos|2 +(noun)|Argos|city|metropolis|urban center +(noun)|Argo|constellation +argosy|1 +(noun)|fleet +argot|1 +(noun)|cant|jargon|slang|lingo|patois|vernacular|non-standard speech +arguable|2 +(adj)|plausible +(adj)|debatable|disputable|moot|controversial +argue|3 +(verb)|reason|present|represent|lay out +(verb)|contend|debate|fence|converse|discourse +(verb)|indicate|present|represent|lay out +arguer|1 +(noun)|debater|disputant|controversialist|eristic +argufy|1 +(verb)|quarrel|dispute|scrap|altercate|argue|contend|debate|fence +arguing|1 +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|dispute|difference|difference of opinion|conflict +argument|5 +(noun)|statement|evidence +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|arguing|dispute|difference|difference of opinion|conflict +(noun)|argumentation|debate|discussion|give-and-take|word +(noun)|literary argument|summary +(noun)|variable|variable quantity +argumentation|2 +(noun)|argument|debate|discussion|give-and-take|word +(noun)|logical argument|line of reasoning|line|reasoning|logical thinking|abstract thought +argumentative|1 +(adj)|argumentative |quarrelsome|contentious|disputatious|disputative|litigious|eristic|eristical +argumentatively|1 +(adv)|disputatiously +argus|2 +(noun)|Argus|giant +(noun)|argus pheasant|pheasant +argus-eyed|2 +(adj)|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted +(adj)|open-eyed|vigilant|wakeful|watchful|alert +argus pheasant|1 +(noun)|argus|pheasant +argusianus|1 +(noun)|Argusianus|genus Argusianus|bird genus +argy-bargy|1 +(noun)|argle-bargle|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +argyle|3 +(noun)|argyll|gravy boat|gravy holder|sauceboat|boat +(noun)|argyll|design|pattern|figure +(noun)|argyles|argyll|argylls|sock +argyles|4 +(noun)|argyle|argyll|argylls|sock +(noun)|argyll|argyle|gravy boat|gravy holder|sauceboat|boat +(noun)|argyle|argyll|design|pattern|figure +(noun)|argyle|argyll|argylls|sock +argyll|3 +(noun)|argyle|gravy boat|gravy holder|sauceboat|boat +(noun)|argyle|design|pattern|figure +(noun)|argyle|argyles|argylls|sock +argylls|4 +(noun)|argyle|argyles|argyll|sock +(noun)|argyll|argyle|gravy boat|gravy holder|sauceboat|boat +(noun)|argyle|argyll|design|pattern|figure +(noun)|argyle|argyles|argyll|sock +argynnis|1 +(noun)|Argynnis|genus Argynnis|arthropod genus +argyranthemum|1 +(noun)|Argyranthemum|genus Argyranthemum|asterid dicot genus +argyranthemum frutescens|1 +(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub|suffrutex +argyreia|1 +(noun)|Argyreia|genus Argyreia|dicot genus|magnoliopsid genus +argyrodite|1 +(noun)|mineral +argyrol|1 +(noun)|mild silver protein|Argyrol|antiseptic +argyrotaenia|1 +(noun)|Argyrotaenia|genus Argyrotaenia|arthropod genus +argyrotaenia citrana|1 +(noun)|orange tortrix|tortrix|Argyrotaenia citrana|tortricid|tortricid moth +argyroxiphium|1 +(noun)|Argyroxiphium|genus Argyroxiphium|asterid dicot genus +argyroxiphium sandwicense|1 +(noun)|silversword|Argyroxiphium sandwicense|shrub|bush +arhant|1 +(noun)|Arhat|Arhant|lohan|deity|divinity|god|immortal +arhat|1 +(noun)|Arhat|Arhant|lohan|deity|divinity|god|immortal +arhus|1 +(noun)|Arhus|Aarhus|city|metropolis|urban center|port +aria|2 +(noun)|song +(noun)|song|strain +ariadne|1 +(noun)|Ariadne|Greek deity +ariana|1 +(noun)|Ariana|city|metropolis|urban center +arianism|1 +(noun)|Arianism|theological doctrine|religious doctrine|heresy|unorthodoxy +arianist|1 +(noun)|Christian +arianrhod|1 +(noun)|Arianrhod|Arianrod|Celtic deity +arianrod|1 +(noun)|Arianrhod|Arianrod|Celtic deity +aricara|2 +(noun)|Arikara|Aricara|Caddo +(noun)|Arikara|Aricara|Caddo|Caddoan|Caddoan language +arid|2 +(adj)|waterless|dry +(adj)|desiccate|desiccated|dull +aridity|2 +(noun)|fruitlessness|barrenness|quality +(noun)|aridness|dryness|waterlessness|xerotes +aridness|1 +(noun)|aridity|dryness|waterlessness|xerotes +aries|3 +(noun)|Aries|Ram|person|individual|someone|somebody|mortal|human|soul +(noun)|Aries|constellation +(noun)|Aries|Aries the Ram|Ram|sign of the zodiac|star sign|sign|mansion|house|planetary house +aries the ram|1 +(noun)|Aries|Aries the Ram|Ram|sign of the zodiac|star sign|sign|mansion|house|planetary house +arietta|1 +(noun)|short aria|aria +aright|1 +(adv)|correctly|right +ariidae|1 +(noun)|Ariidae|family Ariidae|fish family +arikara|2 +(noun)|Arikara|Aricara|Caddo +(noun)|Arikara|Aricara|Caddo|Caddoan|Caddoan language +aril|1 +(noun)|plant part|plant structure +ariled|1 +(adj)|arillate|covered +arillate|1 +(adj)|ariled|covered +arilus|1 +(noun)|Arilus|genus Arilus|arthropod genus +arilus cristatus|1 +(noun)|wheel bug|Arilus cristatus|assassin bug|reduviid +ariocarpus|1 +(noun)|Ariocarpus|genus Ariocarpus|caryophylloid dicot genus +ariocarpus fissuratus|1 +(noun)|living rock|Ariocarpus fissuratus|cactus +ariomma|1 +(noun)|Ariomma|genus Ariomma|fish genus +ariose|1 +(adj)|songlike|melodious |melodic|musical +arioso|1 +(noun)|recitative +arisaema|1 +(noun)|Arisaema|genus Arisaema|monocot genus|liliopsid genus +arisaema atrorubens|1 +(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum|aroid +arisaema dracontium|1 +(noun)|green dragon|Arisaema dracontium|arum|aroid +arisaema triphyllum|1 +(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum|aroid +arisarum|1 +(noun)|Arisarum|genus Arisarum|monocot genus|liliopsid genus +arisarum vulgare|1 +(noun)|friar's-cowl|Arisarum vulgare|arum|aroid +arise|7 +(verb)|originate|rise|develop|uprise|spring up|grow|become +(verb)|come up|bob up|become +(verb)|rise|uprise|get up|stand up|change posture +(verb)|come up|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|rise|lift|move up|go up|come up|uprise|travel|go|move|locomote +(verb)|rebel|rise|rise up|protest|resist|dissent +(verb)|get up|turn out|uprise|rise +arishth|1 +(noun)|neem|neem tree|nim tree|margosa|Azadirachta indica|Melia Azadirachta|tree +arista|1 +(noun)|process|outgrowth|appendage +aristarchus|2 +(noun)|Aristarchus|grammarian|syntactician +(noun)|Aristarchus|lunar crater +aristarchus of samos|1 +(noun)|Aristarchus of Samos|astronomer|uranologist|stargazer +aristide maillol|1 +(noun)|Maillol|Aristide Maillol|sculptor|sculpturer|carver|statue maker +aristocort|1 +(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid|corticoid|adrenal cortical steroid +aristocracy|2 +(noun)|nobility|elite|elite group +(noun)|gentry|upper class|upper crust +aristocrat|1 +(noun)|blue blood|patrician|leader +aristocratic|1 +(adj)|aristocratical|blue|blue-blooded|gentle|patrician|noble +aristocratical|1 +(adj)|aristocratic|blue|blue-blooded|gentle|patrician|noble +aristolochia|1 +(noun)|Aristolochia|genus Aristolochia|dicot genus|magnoliopsid genus +aristolochia clematitis|1 +(noun)|birthwort|Aristolochia clematitis|vine +aristolochia durior|1 +(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort|Aristolochia clematitis +aristolochia macrophylla|1 +(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort|Aristolochia clematitis +aristolochia serpentaria|1 +(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort|Aristolochia clematitis +aristolochiaceae|1 +(noun)|Aristolochiaceae|family Aristolochiaceae|birthwort family|dicot family|magnoliopsid family +aristolochiales|1 +(noun)|Aristolochiales|order Aristolochiales|plant order +aristopak|1 +(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid|corticoid|adrenal cortical steroid +aristophanes|1 +(noun)|Aristophanes|dramatist|playwright +aristotelean|2 +(adj)|Aristotelian|Aristotelean|Aristotelic|philosopher +(noun)|Aristotelian|Aristotelean|Peripatetic|disciple|adherent +aristotelia|1 +(noun)|Aristotelia|genus Aristotelia|dilleniid dicot genus +aristotelia racemosa|1 +(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub|bush +aristotelia serrata|1 +(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub|bush +aristotelian|2 +(adj)|Aristotelian|Aristotelean|Aristotelic|philosopher +(noun)|Aristotelian|Aristotelean|Peripatetic|disciple|adherent +aristotelian logic|1 +(noun)|Aristotelian logic|logic|logical system|system of logic +aristotelianism|1 +(noun)|Aristotelianism|philosophical doctrine|philosophical theory +aristotelic|1 +(adj)|Aristotelian|Aristotelean|Aristotelic|philosopher +aristotle|1 +(noun)|Aristotle|philosopher +arithmetic|2 +(adj)|arithmetical|pure mathematics +(noun)|pure mathematics +arithmetic mean|1 +(noun)|first moment|expectation|expected value|mean|mean value +arithmetic operation|1 +(noun)|mathematical process|mathematical operation|operation +arithmetic progression|1 +(noun)|progression|patterned advance +arithmetical|1 +(adj)|arithmetic|pure mathematics +arithmetician|1 +(noun)|mathematician +arius|2 +(noun)|Arius|theologian|theologist|theologizer|theologiser +(noun)|Arius|genus Arius|fish genus +arizona|2 +(noun)|Arizona|Grand Canyon State|AZ|American state +(noun)|Arizona|genus Arizona|reptile genus +arizona ash|1 +(noun)|Arizona ash|Fraxinus velutina|ash|ash tree +arizona cypress|1 +(noun)|Arizona cypress|Cupressus arizonica|cypress|cypress tree +arizona elegans|1 +(noun)|glossy snake|Arizona elegans|colubrid snake|colubrid +arizona sycamore|1 +(noun)|Arizona sycamore|Platanus wrightii|plane tree|sycamore|platan +arizona white oak|1 +(noun)|Arizona white oak|Quercus arizonica|white oak +arizona wild cotton|1 +(noun)|wild cotton|Arizona wild cotton|Gossypium thurberi|cotton|cotton plant +arizonan|1 +(noun)|Arizonan|Arizonian|American +arizonian|1 +(noun)|Arizonan|Arizonian|American +arjuna|1 +(noun)|Arjuna|mythical being +ark|2 +(noun)|Ark|Ark of the Covenant|chest +(noun)|boat +ark of the covenant|1 +(noun)|Ark|Ark of the Covenant|chest +ark shell|1 +(noun)|bivalve|pelecypod|lamellibranch +arkansan|1 +(noun)|Arkansan|Arkansawyer|American +arkansas|2 +(noun)|Arkansas|Land of Opportunity|AR|American state +(noun)|Arkansas|Arkansas River|river +arkansas kingbird|1 +(noun)|Arkansas kingbird|western kingbird|kingbird|Tyrannus tyrannus +arkansas river|1 +(noun)|Arkansas|Arkansas River|river +arkansawyer|1 +(noun)|Arkansan|Arkansawyer|American +arlington|1 +(noun)|Arlington|city|metropolis|urban center +arm|8 +(noun)|limb +(noun)|weapon|weapon system|instrument +(noun)|branch|subdivision|division +(noun)|branch|limb|projection +(noun)|armrest +(noun)|sleeve|cloth covering +(verb)|build up|fortify|gird +(verb)|supply|provide|render|furnish +arm's length|1 +(noun)|distance|length +arm-twisting|1 +(noun)|persuasion|suasion +arm band|3 +(noun)|armlet|band +(noun)|armband|visual signal +(noun)|armband|band +arm bone|1 +(noun)|long bone|os longum +arm exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +arm guard|2 +(noun)|arm pad|protective garment +(noun)|bracer|armguard|protective covering|protective cover|protection +arm pad|1 +(noun)|arm guard|protective garment +armada|1 +(noun)|fleet +armadillidiidae|1 +(noun)|Armadillidiidae|family Armadillidiidae|arthropod family +armadillidium|1 +(noun)|Armadillidium|genus Armadillidium|arthropod genus +armadillo|1 +(noun)|edentate +armageddon|2 +(noun)|Armageddon|battlefield|battleground|field of battle|field of honor|field +(noun)|Armageddon|battle|conflict|fight|engagement +armagnac|1 +(noun)|Armagnac|brandy +armament|2 +(noun)|weaponry|arms|implements of war|weapons system|munition +(noun)|arming|equipping|mobilization|mobilisation|militarization|militarisation +armamentarium|1 +(noun)|collection|aggregation|accumulation|assemblage +armand jean du plessis|1 +(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +armata corsa|1 +(noun)|Armata Corsa|Corsican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +armature|1 +(noun)|coil +armband|2 +(noun)|visual signal +(noun)|band +armchair|2 +(adj)|impractical +(noun)|chair +armchair liberal|1 +(noun)|liberal|progressive +armed|3 +(adj)|armed |equipped|weaponed|light-armed|militarized|militarised +(adj)|armed |armlike|brachiate|one-armed +(adj)|armed |barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|bristlelike|brushlike|thistlelike|clawed|taloned +armed bullhead|1 +(noun)|pogge|Agonus cataphractus|poacher|sea poacher|sea poker +armed combat|1 +(noun)|combat|battle|conflict|fight|engagement +armed forces|1 +(noun)|military|armed services|military machine|war machine|force|personnel +armed forces censorship|1 +(noun)|military censorship +armed forces day|1 +(noun)|Armed Forces Day|day +armed islamic group|1 +(noun)|Armed Islamic Group|GIA|terrorist organization|terrorist group|foreign terrorist organization|FTO +armed robbery|1 +(noun)|heist|holdup|stickup|robbery +armed service|1 +(noun)|military service|service|force|personnel +armed services|2 +(noun)|military|armed forces|military machine|war machine|force|personnel +(noun)|military service|armed service|service|force|personnel +armenia|1 +(noun)|Armenia|Republic of Armenia|Hayastan|Asian country|Asian nation +armenian|5 +(adj)|Armenian|Asian country|Asian nation +(noun)|Armenian|Asian|Asiatic +(noun)|Armenian|ethnic group|ethnos +(noun)|Armenian|Armenian language|Indo-European|Indo-European language|Indo-Hittite +(noun)|Armenian|Armenian alphabet|alphabet +armenian alphabet|1 +(noun)|Armenian|Armenian alphabet|alphabet +armenian apostolic orthodox church|1 +(noun)|Armenian Church|Armenian Apostolic Orthodox Church|church|Christian church +armenian church|1 +(noun)|Armenian Church|Armenian Apostolic Orthodox Church|church|Christian church +armenian language|1 +(noun)|Armenian|Armenian language|Indo-European|Indo-European language|Indo-Hittite +armenian monetary unit|1 +(noun)|Armenian monetary unit|monetary unit +armenian secret army for the liberation of armenia|1 +(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization|terrorist group|foreign terrorist organization|FTO +armeria|1 +(noun)|Armeria|genus Armeria|dicot genus|magnoliopsid genus +armeria maritima|1 +(noun)|cliff rose|sea pink|Armeria maritima|thrift +armet|1 +(noun)|helmet +armful|1 +(noun)|containerful +armguard|1 +(noun)|bracer|protective covering|protective cover|protection +armhole|1 +(noun)|hole +armiger|2 +(noun)|armor-bearer|squire +(noun)|Lord|noble|nobleman +armilla|2 +(noun)|armillary sphere|celestial globe +(noun)|bracelet|bangle +armillaria|1 +(noun)|Armillaria|genus Armillaria|fungus genus +armillaria caligata|1 +(noun)|Armillaria caligata|booted armillaria|agaric +armillaria ponderosa|1 +(noun)|Armillaria ponderosa|white matsutake|agaric +armillaria zelleri|1 +(noun)|Armillaria zelleri|agaric +armillariella|1 +(noun)|Armillariella|genus Armillariella|fungus genus +armillariella mellea|1 +(noun)|honey mushroom|honey fungus|Armillariella mellea|agaric +armillary|1 +(adj)|jewelry|jewellery +armillary sphere|1 +(noun)|armilla|celestial globe +armin|1 +(noun)|Arminius|Armin|Hermann|hero|German +arming|1 +(noun)|armament|equipping|mobilization|mobilisation|militarization|militarisation +arminian|2 +(adj)|Arminian|Protestantism +(noun)|Arminian|disciple|adherent +arminian baptist|1 +(noun)|Arminian Baptist|General Baptist|Baptist denomination +arminian church|1 +(noun)|Arminian Church|Protestant denomination +arminianism|1 +(noun)|Arminianism|Protestantism +arminius|2 +(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian|theologist|theologizer|theologiser +(noun)|Arminius|Armin|Hermann|hero|German +armistice|1 +(noun)|cease-fire|truce|peace +armistice day|1 +(noun)|Veterans' Day|Armistice Day|November 11|legal holiday|national holiday +armless|1 +(adj)|armless +armlet|1 +(noun)|arm band|band +armlike|1 +(adj)|armed +armoire|1 +(noun)|wardrobe|closet|press +armor|4 +(noun)|armour|protective covering|protective cover|protection +(noun)|armour|military unit|military force|military group|force +(noun)|armour|protective covering +(verb)|armour|equip|fit|fit out|outfit +armor-bearer|1 +(noun)|armiger|squire +armor-clad|1 +(adj)|armour-clad|armor-plated|armour-plated|steel-plated|armored |armoured +armor-plated|1 +(adj)|armor-clad|armour-clad|armour-plated|steel-plated|armored |armoured +armor plate|1 +(noun)|armour plate|armor plating|plate armor|plate armour|plate|scale|shell +armor plating|1 +(noun)|armor plate|armour plate|plate armor|plate armour|plate|scale|shell +armoracia|1 +(noun)|Armoracia|genus Armoracia|dilleniid dicot genus +armoracia rusticana|1 +(noun)|horseradish|horse radish|red cole|Armoracia rusticana|herb|herbaceous plant +armored|3 +(adj)|armored |armoured|armor-clad|armour-clad|armor-plated|armour-plated|steel-plated|bulletproof|lightly armored|lightly armoured|mail-clad|mailed|panzer|scaled +(adj)|armored |armoured|bone-covered|scaly|scaley|scaled +(adj)|panoplied|equipped |equipt +armored car|2 +(noun)|armoured car|armored vehicle|armoured vehicle +(noun)|armoured car|armored vehicle|armoured vehicle +armored catfish|1 +(noun)|catfish|siluriform fish +armored combat vehicle|1 +(noun)|tank|army tank|armoured combat vehicle|military vehicle|armored vehicle|armoured vehicle|tracked vehicle +armored dinosaur|1 +(noun)|ornithischian|ornithischian dinosaur +armored personnel carrier|1 +(noun)|armoured personnel carrier|APC|armored vehicle|armoured vehicle +armored scale|1 +(noun)|scale insect +armored sea robin|1 +(noun)|armored searobin|Peristedion miniatum|sea robin|searobin +armored searobin|1 +(noun)|armored sea robin|Peristedion miniatum|sea robin|searobin +armored vehicle|1 +(noun)|armoured vehicle|self-propelled vehicle +armorer|2 +(noun)|armourer|artificer|enlisted man +(noun)|armourer|manufacturer|maker|manufacturing business +armorial|1 +(adj)|heraldry +armorial bearing|1 +(noun)|charge|bearing|heraldic bearing|heraldry +armory|4 +(noun)|armoury|inventory|resource|resourcefulness|imagination +(noun)|arsenal|armoury|armament +(noun)|arsenal|armoury|military installation +(noun)|armoury|arsenal|foundry|metalworks +armour|4 +(noun)|armor|military unit|military force|military group|force +(noun)|armor|protective covering|protective cover|protection +(noun)|armor|protective covering +(verb)|armor|equip|fit|fit out|outfit +armour-clad|1 +(adj)|armor-clad|armor-plated|armour-plated|steel-plated|armored |armoured +armour-plated|1 +(adj)|armor-clad|armour-clad|armor-plated|steel-plated|armored |armoured +armour plate|1 +(noun)|armor plate|armor plating|plate armor|plate armour|plate|scale|shell +armoured|2 +(adj)|armored |bone-covered|scaly|scaley|scaled +(adj)|armored |armor-clad|armour-clad|armor-plated|armour-plated|steel-plated|bulletproof|lightly armored|lightly armoured|mail-clad|mailed|panzer|scaled +armoured car|2 +(noun)|armored car|armored vehicle|armoured vehicle +(noun)|armored car|armored vehicle|armoured vehicle +armoured combat vehicle|1 +(noun)|tank|army tank|armored combat vehicle|military vehicle|armored vehicle|armoured vehicle|tracked vehicle +armoured personnel carrier|1 +(noun)|armored personnel carrier|APC|armored vehicle|armoured vehicle +armoured vehicle|1 +(noun)|armored vehicle|self-propelled vehicle +armourer|2 +(noun)|armorer|artificer|enlisted man +(noun)|armorer|manufacturer|maker|manufacturing business +armoury|4 +(noun)|armory|inventory|resource|resourcefulness|imagination +(noun)|arsenal|armory|armament +(noun)|arsenal|armory|military installation +(noun)|armory|arsenal|foundry|metalworks +armpit|1 +(noun)|axilla|axillary cavity|axillary fossa|cavity|bodily cavity|cavum +armrest|1 +(noun)|rest +arms|8 +(noun)|weaponry|implements of war|weapons system|munition|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +(noun)|coat of arms|blazon|blazonry|heraldry +(noun)|arm|limb +(noun)|weapon|arm|weapon system|instrument +(noun)|branch|subdivision|arm|division +(noun)|arm|branch|limb|projection +(noun)|arm|armrest +(noun)|sleeve|arm|cloth covering +arms-runner|1 +(noun)|gunrunner|smuggler|runner|contrabandist|moon curser|moon-curser +arms control|1 +(noun)|limitation|restriction +arms deal|1 +(noun)|deal|trade|business deal +arms industry|1 +(noun)|munitions industry|industry +arms manufacturer|1 +(noun)|manufacturer|producer +arms race|1 +(noun)|race +armstrong|2 +(noun)|Armstrong|Neil Armstrong|astronaut|spaceman|cosmonaut +(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician|jazzman|trumpeter|cornetist +army|2 +(noun)|regular army|ground forces|military service|armed service|service +(noun)|crowd +army ant|1 +(noun)|driver ant|legionary ant|ant|emmet|pismire +army attache|1 +(noun)|military attache +army base|1 +(noun)|base|base of operations +army brat|1 +(noun)|child|kid +army cutworm|2 +(noun)|Chorizagrotis auxiliaris|cutworm +(noun)|Chorizagrotis auxiliaris|noctuid moth|noctuid|owlet moth +army engineer|1 +(noun)|military engineer|engineer|applied scientist|technologist +army for the liberation of rwanda|1 +(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization|terrorist group|foreign terrorist organization|FTO +army high performance computing research center|1 +(noun)|Army High Performance Computing Research Center|AHPCRC|agency|federal agency|government agency|bureau|office|authority +army hut|1 +(noun)|hut|field hut|shelter +army intelligence|1 +(noun)|Army Intelligence|AI|agency|federal agency|government agency|bureau|office|authority +army national guard|1 +(noun)|Army National Guard|ARNG|National Guard|home reserve +army of muhammad|1 +(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization|terrorist group|foreign terrorist organization|FTO +army of the confederacy|1 +(noun)|Confederate Army|Army of the Confederacy|army|regular army|ground forces|gray|grey +army of the pure|1 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +army of the righteous|1 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +army officer|1 +(noun)|military officer|officer +army tank|1 +(noun)|tank|armored combat vehicle|armoured combat vehicle|military vehicle|armored vehicle|armoured vehicle|tracked vehicle +army unit|1 +(noun)|military unit|military force|military group|force +army worm|3 +(noun)|armyworm|Pseudaletia unipuncta|caterpillar +(noun)|armyworm|Pseudaletia unipuncta|noctuid moth|noctuid|owlet moth +(noun)|armyworm|fungus gnat|sciara|sciarid +armyworm|3 +(noun)|army worm|Pseudaletia unipuncta|caterpillar +(noun)|Pseudaletia unipuncta|noctuid moth|noctuid|owlet moth +(noun)|fungus gnat|sciara|sciarid +arna wendell bontemps|1 +(noun)|Bontemps|Arna Wendell Bontemps|writer|author +arng|1 +(noun)|Army National Guard|ARNG|National Guard|home reserve +arnhem|1 +(noun)|Arnhem|city|metropolis|urban center +arnica|3 +(noun)|tincture +(noun)|herb|herbaceous plant +(noun)|ointment|unction|unguent|balm|salve +arnica bud|1 +(noun)|fall dandelion|Leontodon autumnalis|hawkbit +arnica cordifolia|1 +(noun)|heartleaf arnica|Arnica cordifolia|wildflower|wild flower +arnica montana|1 +(noun)|Arnica montana|wildflower|wild flower +arno|1 +(noun)|Arno|Arno River|River Arno|river +arno river|1 +(noun)|Arno|Arno River|River Arno|river +arnold|2 +(noun)|Arnold|Matthew Arnold|poet|literary critic +(noun)|Arnold|Benedict Arnold|general|full general|traitor|treasonist +arnold-chiari deformity|1 +(noun)|Arnold-Chiari deformity|deformity|malformation|misshapenness +arnold daniel palmer|1 +(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer|golf player|linksman +arnold gesell|1 +(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist +arnold joseph toynbee|1 +(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian|historiographer +arnold lucius gesell|1 +(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist +arnold palmer|1 +(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer|golf player|linksman +arnold schoenberg|1 +(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer +arnold schonberg|1 +(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer +arnold toynbee|1 +(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian|historiographer +arnoseris|1 +(noun)|Arnoseris|genus Arnoseris|asterid dicot genus +arnoseris minima|1 +(noun)|lamb succory|dwarf nipplewort|Arnoseris minima|herb|herbaceous plant +aroeira blanca|1 +(noun)|Schinus chichita|tree +aroid|2 +(adj)|araceous|monocot family|liliopsid family +(noun)|arum|herb|herbaceous plant +arolla pine|1 +(noun)|Swiss pine|Swiss stone pine|cembra nut tree|Pinus cembra|pine|pine tree|true pine +aroma|2 +(noun)|olfactory property|smell|odor|odour|scent|property +(noun)|fragrance|perfume|scent|smell|odor|odour|olfactory sensation|olfactory perception +aromatic|2 +(adj)|hydrocarbon +(adj)|redolent|fragrant +aromatic aster|1 +(noun)|aster +aromatic compound|1 +(noun)|hydrocarbon +aromatic hydrocarbon|1 +(noun)|hydrocarbon +aromatise|1 +(verb)|perfume|aromatize|odorize|odourise|scent +aromatize|1 +(verb)|perfume|aromatise|odorize|odourise|scent +arouet|1 +(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer|author +around|6 +(adv)|about +(adv)|about +(adv)|approximately|about|close to|just about|some|roughly|more or less|or so +(adv)|about +(adv)|about +(adv)|round +around-the-clock|1 +(adj)|day-and-night|nonstop|round-the-clock|continuous |uninterrupted +around the bend|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|wacky|whacky|insane +around the clock|1 +(adv)|for 24 hours|round the clock +arousal|4 +(noun)|rousing|change of state +(noun)|physiological state|physiological condition +(noun)|wakefulness +(noun)|foreplay|stimulation|sexual activity|sexual practice|sex|sex activity +arouse|7 +(verb)|elicit|enkindle|kindle|evoke|fire|raise|provoke|make|create +(verb)|wake up|awake|awaken|wake|come alive|waken|change state|turn +(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|bring up|put forward|call forth|make|create +(verb)|stimulate|brace|energize|energise|perk up|affect +(verb)|awaken|wake|waken|rouse|wake up|change|alter|modify +(verb)|stir|move +(verb)|sex|excite|turn on|wind up|stimulate|shake|shake up|excite|stir +aroused|6 +(adj)|awakened +(adj)|stimulated|stirred|stirred up|excited +(adj)|wound up|tense +(adj)|horny|randy|ruttish|turned on|sexy +(adj)|ablaze|aflame|turned on|passionate +(adj)|emotional|excited|worked up|agitated +arouser|1 +(noun)|waker|rouser|attendant|attender|tender +arp|1 +(noun)|Arp|Jean Arp|Hans Arp|artist|creative person|poet +arpeggio|1 +(noun)|chord +arpent|1 +(noun)|area unit|square measure +arquebus|1 +(noun)|harquebus|hackbut|hagbut|muzzle loader +arrack|1 +(noun)|arak|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +arraign|1 +(verb)|accuse|impeach|incriminate|criminate +arraignment|1 +(noun)|legal document|legal instrument|official document|instrument +arrange|7 +(verb)|set up|put|set|place|pose|position|lay +(verb)|fix up|agree|hold|concur|concord +(verb)|stage|bring about|initiate|pioneer +(verb)|format|change +(verb)|dress|set|do|coif|coiffe|coiffure|groom|neaten +(verb)|set|compose|write +(verb)|set up|put|order|organize|organise +arranged|3 +(adj)|arranged |ordered|laid|set|placed +(adj)|organized +(adj)|staged|artificial |unreal +arrangement|6 +(noun)|agreement|planning|preparation|provision +(noun)|group|grouping +(noun)|organization|organisation|system|structure +(noun)|placement|position|spatial relation +(noun)|musical arrangement|musical composition|opus|composition|piece|piece of music +(noun)|arranging|transcription|composing|composition +arranger|2 +(noun)|organizer|organiser|thinker +(noun)|adapter|transcriber|musician +arranging|1 +(noun)|arrangement|transcription|composing|composition +arrant|1 +(adj)|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +arras|1 +(noun)|tapestry|hanging|wall hanging +array|6 +(noun)|arrangement +(noun)|display +(noun)|raiment|regalia|clothing|article of clothing|vesture|wear +(noun)|directional antenna +(verb)|range|lay out|set out|arrange|set up +(verb)|align|stand +arrayed|1 +(adj)|panoplied|clothed |clad +arrears|2 +(noun)|indebtedness|liability|financial obligation +(noun)|debt +arrest|6 +(noun)|apprehension|catch|collar|pinch|taking into custody|capture|gaining control|seizure +(noun)|check|halt|hitch|stay|stop|stoppage|inaction|inactivity|inactiveness +(verb)|collar|nail|apprehend|pick up|nab|cop|seize|prehend|clutch +(verb)|check|turn back|stop|contain|hold back|defend +(verb)|catch|get|attract|pull|pull in|draw|draw in +(verb)|halt|hold|stop +arrest warrant|1 +(noun)|bench warrant|warrant +arrested|1 +(adj)|in remission|inactive +arrested development|1 +(noun)|fixation|infantile fixation|regression|abnormality|abnormalcy|abnormal condition +arrester|1 +(noun)|arrester hook|restraint|constraint +arrester hook|1 +(noun)|arrester|restraint|constraint +arresting|1 +(adj)|sensational|stunning|impressive +arrhenatherum|1 +(noun)|Arrhenatherum|genus Arrhenatherum|plant genus +arrhenatherum elatius|1 +(noun)|tall oat grass|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass +arrhenius|1 +(noun)|Arrhenius|Svante August Arrhenius|chemist|physicist +arrhenius theory of dissociation|1 +(noun)|theory of dissociation|theory of electrolytic dissociation|Arrhenius theory of dissociation|scientific theory +arrhythmia|1 +(noun)|cardiac arrhythmia|heart disease|heart condition|cardiopathy +arrhythmic|2 +(adj)|arrhythmical|unrhythmical |unrhythmic +(adj)|jerking|jerky|unsteady|irregular +arrhythmical|1 +(adj)|arrhythmic|unrhythmical |unrhythmic +arriere pensee|1 +(noun)|mental reservation|reservation|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +arrival|3 +(noun)|reaching|accomplishment|achievement +(noun)|action +(noun)|arriver|comer|traveler|traveller +arrival gate|1 +(noun)|gate +arrival time|1 +(noun)|time of arrival|point|point in time +arrive|2 +(verb)|get|come +(verb)|make it|get in|go far|succeed|win|come through|bring home the bacon|deliver the goods +arrive at|1 +(verb)|reach|make|attain|hit|gain +arrivederci|1 +(noun)|adieu|adios|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +arriver|1 +(noun)|arrival|comer|traveler|traveller +arriving|1 +(adj)|inbound|inward|incoming +arriviste|1 +(noun)|upstart|parvenu|nouveau-riche|unpleasant person|disagreeable person +arroba|2 +(noun)|weight unit|weight +(noun)|liquid unit|liquid measure +arrogance|1 +(noun)|haughtiness|hauteur|highhandedness|lordliness|pride +arrogant|1 +(adj)|chesty|self-important|proud +arrogate|3 +(verb)|claim|lay claim|request|bespeak|call for|quest +(verb)|assign|claim|lay claim +(verb)|assume|usurp|seize|take over|take +arrogated|1 +(adj)|assumed|taken +arrogation|1 +(noun)|confiscation|seizure +arrogator|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +arrow|2 +(noun)|pointer|mark +(noun)|projectile|missile +arrow-grass family|1 +(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|monocot family|liliopsid family +arrow-shaped|1 +(adj)|sagittate|sagittiform|simple |unsubdivided|pointed +arrow arum|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +arrow grass|1 +(noun)|Triglochin maritima|marsh plant|bog plant|swamp plant +arrow leaved aster|1 +(noun)|aster +arrow wood|2 +(noun)|Viburnum recognitum|shrub|bush +(noun)|southern arrow wood|Viburnum dentatum|shrub|bush +arrowhead|1 +(noun)|point +arrowleaf groundsel|1 +(noun)|Senecio triangularis|wildflower|wild flower +arrowroot|3 +(noun)|starch|amylum +(noun)|American arrowroot|obedience plant|Maranta arundinaceae|maranta +(noun)|achira|indian shot|Canna indica|Canna edulis|canna +arrowroot family|1 +(noun)|Marantaceae|family Marantaceae|monocot family|liliopsid family +arrowsmith|1 +(noun)|smith +arrowworm|1 +(noun)|chaetognath|worm +arroyo|1 +(noun)|gully +arroyo willow|1 +(noun)|Salix lasiolepis|willow|willow tree +arroz con pollo|1 +(noun)|chicken and rice +arse|2 +(noun)|buttocks|nates|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|anus|arsehole|asshole|orifice|opening|porta +arse about|1 +(verb)|bum|bum around|bum about|arse around|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +arse around|2 +(verb)|bum|bum around|bum about|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +(verb)|horse around|fool around|fool|play|joke|jest +arsehole|1 +(noun)|anus|arse|asshole|orifice|opening|porta +arsenal|3 +(noun)|armory|armoury|armament +(noun)|armory|armoury|military installation +(noun)|armory|armoury|foundry|metalworks +arsenate|1 +(noun)|salt +arsenic|2 +(noun)|As|atomic number 33|chemical element|element +(noun)|arsenic trioxide|arsenous anhydride|arsenous oxide|trioxide +arsenic acid|1 +(noun)|acid +arsenic group|1 +(noun)|cacodyl|cacodyl group|cacodyl radical|group|radical|chemical group +arsenic trioxide|1 +(noun)|arsenic|arsenous anhydride|arsenous oxide|trioxide +arsenical|1 +(adj)|chemical element|element +arsenide|1 +(noun)|compound|chemical compound +arsenious|1 +(adj)|chemical element|element +arsenopyrite|1 +(noun)|mispickel|mineral +arsenous anhydride|1 +(noun)|arsenic|arsenic trioxide|arsenous oxide|trioxide +arsenous oxide|1 +(noun)|arsenic|arsenic trioxide|arsenous anhydride|trioxide +arsine|1 +(noun)|gas +arson|1 +(noun)|incendiarism|fire-raising|burning|combustion +arsonist|1 +(noun)|incendiary|firebug|criminal|felon|crook|outlaw|malefactor +art|4 +(noun)|fine art|creation +(noun)|artistic creation|artistic production|creation|creative activity +(noun)|artistry|prowess|superior skill +(noun)|artwork|graphics|nontextual matter|visual communication +art class|1 +(noun)|course|course of study|course of instruction|class +art collection|1 +(noun)|collection|aggregation|accumulation|assemblage +art critic|1 +(noun)|critic +art dealer|1 +(noun)|trader|bargainer|dealer|monger +art deco|1 +(noun)|artistic movement|art movement +art department|1 +(noun)|academic department +art director|1 +(noun)|stage director +art editor|1 +(noun)|editor|editor in chief +art exhibition|1 +(noun)|exhibition|exposition|expo +art form|1 +(noun)|kind|sort|form|variety +art gallery|1 +(noun)|gallery|picture gallery|room +art historian|1 +(noun)|historian|historiographer +art history|1 +(noun)|humanistic discipline|humanities|liberal arts|arts +art movement|1 +(noun)|artistic movement|movement|social movement|front +art nouveau|1 +(noun)|school|artistic movement|art movement +art object|1 +(noun)|objet d'art|piece|work of art +art paper|1 +(noun)|paper +art rock|1 +(noun)|progressive rock|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +art school|1 +(noun)|conservatory|conservatoire +art student|1 +(noun)|student|pupil|educatee +art tatum|1 +(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician|jazzman +art teacher|1 +(noun)|teacher|instructor +artamidae|1 +(noun)|Artamidae|family Artamidae|bird family +artamus|1 +(noun)|Artamus|genus Artamus|bird genus +artaxerxes|2 +(noun)|Artaxerxes II|Artaxerxes|king|male monarch|Irani|Iranian|Persian +(noun)|Artaxerxes I|Artaxerxes|king|male monarch|Irani|Iranian|Persian +artaxerxes i|1 +(noun)|Artaxerxes I|Artaxerxes|king|male monarch|Irani|Iranian|Persian +artaxerxes ii|1 +(noun)|Artaxerxes II|Artaxerxes|king|male monarch|Irani|Iranian|Persian +artefact|1 +(noun)|artifact|object|physical object|whole|whole thing|unit +artefactual|1 +(adj)|artifactual|object|physical object|whole|whole thing|unit +artemia|1 +(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus +artemia salina|1 +(noun)|brine shrimp|Artemia salina|branchiopod crustacean|branchiopod|branchiopodan +artemis|1 +(noun)|Artemis|Cynthia|Greek deity +artemis pontica|1 +(noun)|Roman wormwood|Artemis pontica|wormwood +artemis spinescens|1 +(noun)|bud brush|bud sagebrush|Artemis spinescens|sagebrush|sage brush +artemisia|1 +(noun)|shrub|bush +artemisia abrotanum|1 +(noun)|southernwood|Artemisia abrotanum|wormwood +artemisia absinthium|1 +(noun)|common wormwood|absinthe|old man|lad's love|Artemisia absinthium|wormwood +artemisia annua|1 +(noun)|sweet wormwood|Artemisia annua|wormwood +artemisia californica|1 +(noun)|California sagebrush|California sage|Artemisia californica|sagebrush|sage brush +artemisia campestris|1 +(noun)|field wormwood|Artemisia campestris|wormwood +artemisia cana|1 +(noun)|silver sage|silver sagebrush|gray sage|Seriphidium canum|Artemisia cana|sagebrush|sage brush +artemisia dracunculus|1 +(noun)|tarragon|estragon|Artemisia dracunculus|artemisia +artemisia filifolia|1 +(noun)|sand sage|silvery wormwood|Artemisia filifolia|sagebrush|sage brush +artemisia frigida|1 +(noun)|wormwood sage|prairie sagewort|Artemisia frigida|wormwood +artemisia gnaphalodes|1 +(noun)|western mugwort|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +artemisia ludoviciana|1 +(noun)|western mugwort|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +artemisia maritima|1 +(noun)|sea wormwood|Seriphidium maritimum|Artemisia maritima|wormwood +artemisia stelleriana|1 +(noun)|dusty miller|beach wormwood|old woman|Artemisia stelleriana|wormwood +artemisia tridentata|1 +(noun)|big sagebrush|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush|sage brush +artemisia vulgaris|1 +(noun)|common mugwort|Artemisia vulgaris|mugwort +artemus ward|1 +(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer|author +arteria|1 +(noun)|artery|arterial blood vessel|blood vessel +arteria alveolaris|1 +(noun)|alveolar artery|artery|arteria|arterial blood vessel +arteria alveolaris inferior|1 +(noun)|inferior alveolar artery|alveolar artery|arteria alveolaris +arteria alveolaris superior|1 +(noun)|superior alveolar artery|alveolar artery|arteria alveolaris +arteria angularis|1 +(noun)|angular artery|artery|arteria|arterial blood vessel +arteria appendicularis|1 +(noun)|appendicular artery|artery|arteria|arterial blood vessel +arteria arcuata|1 +(noun)|arcuate artery|artery|arteria|arterial blood vessel +arteria ascendens|1 +(noun)|ascending artery|artery|arteria|arterial blood vessel +arteria auricularis|1 +(noun)|auricular artery|artery|arteria|arterial blood vessel +arteria axillaris|1 +(noun)|axillary artery|artery|arteria|arterial blood vessel +arteria basilaris|1 +(noun)|basilar artery|artery|arteria|arterial blood vessel +arteria brachialis|1 +(noun)|brachial artery|artery|arteria|arterial blood vessel +arteria buccalis|1 +(noun)|buccal artery|artery|arteria|arterial blood vessel +arteria bulbi penis|1 +(noun)|artery of the penis bulb|artery|arteria|arterial blood vessel +arteria bulbi vestibuli|1 +(noun)|artery of the vestibule bulb|artery|arteria|arterial blood vessel +arteria carotis|1 +(noun)|carotid artery|artery|arteria|arterial blood vessel +arteria celiaca|1 +(noun)|celiac trunk|celiac artery|truncus celiacus|artery|arteria|arterial blood vessel +arteria centralis retinae|1 +(noun)|central artery of the retina|artery|arteria|arterial blood vessel +arteria cerebelli|1 +(noun)|cerebellar artery|artery|arteria|arterial blood vessel +arteria cerebri|1 +(noun)|cerebral artery|artery|arteria|arterial blood vessel +arteria choroidea|1 +(noun)|choroidal artery|artery|arteria|arterial blood vessel +arteria ciliaris|1 +(noun)|ciliary artery|artery|arteria|arterial blood vessel +arteria circumflexa femoris|1 +(noun)|circumflex artery of the thigh|circumflex artery +arteria circumflexa humeri|1 +(noun)|circumflex humeral artery|circumflex artery +arteria circumflexa ilium|1 +(noun)|circumflex iliac artery|circumflex artery +arteria circumflexa scapulae|1 +(noun)|circumflex scapular artery|circumflex artery +arteria colica|1 +(noun)|colic artery|artery|arteria|arterial blood vessel +arteria communicans|1 +(noun)|communicating artery|artery|arteria|arterial blood vessel +arteria coronaria|1 +(noun)|coronary artery|artery|arteria|arterial blood vessel +arteria cystica|1 +(noun)|cystic artery|artery|arteria|arterial blood vessel +arteria digitalis|1 +(noun)|digital arteries|artery|arteria|arterial blood vessel +arteria epigastrica|1 +(noun)|epigastric artery|artery|arteria|arterial blood vessel +arteria ethmoidalis|1 +(noun)|ethmoidal artery|artery|arteria|arterial blood vessel +arteria facialis|1 +(noun)|facial artery|external maxillary artery|maxillary artery|arteria maxillaris +arteria femoralis|1 +(noun)|femoral artery|artery|arteria|arterial blood vessel +arteria gastrica|1 +(noun)|gastric artery|artery|arteria|arterial blood vessel +arteria gastrica breves|1 +(noun)|short gastric artery|vasa brevis|gastric artery|arteria gastrica +arteria gastrica sinistra|1 +(noun)|left gastric artery|gastric artery|arteria gastrica +arteria glutes|1 +(noun)|gluteal artery|artery|arteria|arterial blood vessel +arteria hepatica|1 +(noun)|hepatic artery|artery|arteria|arterial blood vessel +arteria ileocolica|1 +(noun)|ileocolic artery|artery|arteria|arterial blood vessel +arteria ileum|1 +(noun)|ileal artery|intestinal artery|artery|arteria|arterial blood vessel +arteria iliaca|1 +(noun)|iliac artery|artery|arteria|arterial blood vessel +arteria iliolumbalis|1 +(noun)|iliolumbar artery|artery|arteria|arterial blood vessel +arteria infraorbitalis|1 +(noun)|infraorbital artery|artery|arteria|arterial blood vessel +arteria intercostalis|1 +(noun)|intercostal artery|artery|arteria|arterial blood vessel +arteria labialis|1 +(noun)|labial artery|artery|arteria|arterial blood vessel +arteria labialis inferior|1 +(noun)|inferior labial artery|labial artery|arteria labialis +arteria labialis superior|1 +(noun)|superior labial artery|labial artery|arteria labialis +arteria lacrimalis|1 +(noun)|lacrimal artery|artery|arteria|arterial blood vessel +arteria laryngea|1 +(noun)|laryngeal artery|artery|arteria|arterial blood vessel +arteria lienalis|1 +(noun)|lienal artery|splenic artery|artery|arteria|arterial blood vessel +arteria lingualis|1 +(noun)|lingual artery|artery|arteria|arterial blood vessel +arteria lumbalis|1 +(noun)|lumbar artery|artery|arteria|arterial blood vessel +arteria maxillaris|1 +(noun)|maxillary artery|artery|arteria|arterial blood vessel +arteria meningea|1 +(noun)|meningeal artery|artery|arteria|arterial blood vessel +arteria mesenterica|1 +(noun)|mesenteric artery|artery|arteria|arterial blood vessel +arteria metacarpea|1 +(noun)|metacarpal artery|artery|arteria|arterial blood vessel +arteria metatarsea|1 +(noun)|metatarsal artery|artery|arteria|arterial blood vessel +arteria musculophrenica|1 +(noun)|musculophrenic artery|artery|arteria|arterial blood vessel +arteria nutricia|1 +(noun)|nutrient artery|artery|arteria|arterial blood vessel +arteria ophthalmica|1 +(noun)|ophthalmic artery|artery|arteria|arterial blood vessel +arteria ovarica|1 +(noun)|ovarian artery|artery|arteria|arterial blood vessel +arteria palatina|1 +(noun)|palatine artery|artery|arteria|arterial blood vessel +arteria pancreatica|1 +(noun)|pancreatic artery|artery|arteria|arterial blood vessel +arteria perinealis|1 +(noun)|perineal artery|artery|arteria|arterial blood vessel +arteria poplitea|1 +(noun)|popliteal artery|artery|arteria|arterial blood vessel +arteria pudenda|1 +(noun)|pudendal artery|artery|arteria|arterial blood vessel +arteria pulmonalis|1 +(noun)|pulmonary artery|artery|arteria|arterial blood vessel +arteria radialis|1 +(noun)|radial artery|artery|arteria|arterial blood vessel +arteria rectalis|1 +(noun)|rectal artery|artery|arteria|arterial blood vessel +arteria renalis|1 +(noun)|renal artery|artery|arteria|arterial blood vessel +arteria subclavia|1 +(noun)|subclavian artery|artery|arteria|arterial blood vessel +arteria temporalis anterior|1 +(noun)|anterior temporal artery|temporal artery +arteria temporalis intermedia|1 +(noun)|intermediate temporal artery|temporal artery +arteria temporalis posterior|1 +(noun)|posterior temporal artery|temporal artery +arteria testicularis|1 +(noun)|testicular artery|internal spermatic artery|artery|arteria|arterial blood vessel +arteria ulnaris|1 +(noun)|ulnar artery|artery|arteria|arterial blood vessel +arteria uterina|1 +(noun)|uterine artery|artery|arteria|arterial blood vessel +arteria vaginalis|1 +(noun)|vaginal artery|artery|arteria|arterial blood vessel +arteria vertebralis|1 +(noun)|vertebral artery|artery|arteria|arterial blood vessel +arterial|1 +(adj)|blood vessel +arterial blood|1 +(noun)|blood +arterial blood gases|1 +(noun)|measurement|measuring|measure|mensuration +arterial blood vessel|1 +(noun)|artery|arteria|blood vessel +arterial plaque|1 +(noun)|plaque +arterial pressure|1 +(noun)|blood pressure +arterial road|1 +(noun)|highway|main road +arterial sclerosis|1 +(noun)|arteriosclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease|sclerosis|induration +arterialise|1 +(verb)|arterialize|change|alter|modify +arterialize|1 +(verb)|arterialise|change|alter|modify +arteriectasia|1 +(noun)|arteriectasis|pathology +arteriectasis|1 +(noun)|arteriectasia|pathology +arteriogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +arteriography|1 +(noun)|arthrography +arteriola|1 +(noun)|arteriole|capillary artery|artery|arteria|arterial blood vessel +arteriolar|1 +(adj)|artery|arteria|arterial blood vessel +arteriole|1 +(noun)|arteriola|capillary artery|artery|arteria|arterial blood vessel +arteriolosclerosis|1 +(noun)|sclerosis|induration +arteriosclerosis|1 +(noun)|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease|sclerosis|induration +arteriosclerosis obliterans|1 +(noun)|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease +arteriosclerotic|1 +(adj)|sclerosis|induration +arteriovenous|1 +(adj)|blood vessel|blood vessel +arteritis|1 +(noun)|inflammation|redness|rubor +artery|2 +(noun)|arteria|arterial blood vessel|blood vessel +(noun)|thoroughfare +artery of the labyrinth|1 +(noun)|labyrinthine artery|internal auditory artery|artery|arteria|arterial blood vessel +artery of the penis bulb|1 +(noun)|arteria bulbi penis|artery|arteria|arterial blood vessel +artery of the vestibule bulb|1 +(noun)|arteria bulbi vestibuli|artery|arteria|arterial blood vessel +artesian|1 +(adj)|artesian |flowing +artesian well|1 +(noun)|well +artful|2 +(adj)|disingenuous |distorted|misrepresented|perverted|twisted|insincere +(adj)|artful |adroit|clever|ingenious|Byzantine|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|cute|precious|deep|designing|scheming|manipulative|pawky|elusive|evasive|adroit +artfully|2 +(adv)|disingenuously +(adv)|craftily|cunningly|foxily|knavishly|slyly|trickily +artfulness|1 +(noun)|disingenuousness +arthralgia|1 +(noun)|pain|hurting +arthralgic|1 +(adj)|pain|hurting +arthritic|1 +(adj)|creaky|rheumatic|rheumatoid|rheumy|unhealthy +arthritis|1 +(noun)|inflammatory disease +arthrocentesis|1 +(noun)|centesis +arthrogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +arthrography|1 +(noun)|roentgenography|X-ray photography +arthromere|1 +(noun)|external body part +arthromeric|1 +(adj)|external body part +arthroplasty|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +arthropod|1 +(noun)|invertebrate +arthropod family|1 +(noun)|family +arthropod genus|1 +(noun)|genus +arthropoda|1 +(noun)|Arthropoda|phylum Arthropoda|phylum +arthropodal|1 +(adj)|arthropodan|arthropodous|phylum +arthropodan|1 +(adj)|arthropodal|arthropodous|phylum +arthropodous|1 +(adj)|arthropodal|arthropodan|phylum +arthropteris|1 +(noun)|Arthropteris|genus Arthropteris|fern genus +arthroscope|1 +(noun)|endoscope +arthroscopy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +arthrospore|2 +(noun)|cell +(noun)|cell +arthrosporic|1 +(adj)|arthrosporous|cell +arthrosporous|1 +(adj)|arthrosporic|cell +arthur|2 +(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States|United States President|President|Chief Executive +(noun)|Arthur|King Arthur|fictional character|fictitious character|character +arthur ashe|1 +(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player +arthur compton|1 +(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist +arthur conan doyle|1 +(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer|author +arthur edwin kennelly|1 +(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer +arthur evans|1 +(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist|archaeologist +arthur fiedler|1 +(noun)|Fiedler|Arthur Fiedler|conductor|music director|director +arthur garfield hays|1 +(noun)|Hays|Arthur Garfield Hays|lawyer|attorney +arthur holly compton|1 +(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist +arthur holmes|1 +(noun)|Holmes|Arthur Holmes|geologist +arthur honegger|1 +(noun)|Honegger|Arthur Honegger|composer +arthur jacob arshawsky|1 +(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist|clarinettist|bandleader +arthur james balfour|1 +(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman|solon|national leader +arthur john gielgud|1 +(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor|histrion|player|thespian|role player +arthur koestler|1 +(noun)|Koestler|Arthur Koestler|writer|author +arthur laffer|1 +(noun)|Laffer|Arthur Laffer|economist|economic expert +arthur marx|1 +(noun)|Marx|Arthur Marx|Harpo|comedian|comic +arthur meier schlesinger|1 +(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian|historiographer +arthur meier schlesinger jr.|1 +(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian|historiographer +arthur miller|1 +(noun)|Miller|Arthur Miller|dramatist|playwright +arthur mitchell|1 +(noun)|Mitchell|Arthur Mitchell|dancer|professional dancer +arthur neville chamberlain|1 +(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman|solon|national leader +arthur rimbaud|1 +(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet +arthur robert ashe|1 +(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player +arthur rubinstein|1 +(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist|piano player +arthur schlesinger|2 +(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian|historiographer +(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian|historiographer +arthur schlesinger jr.|1 +(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian|historiographer +arthur schopenhauer|1 +(noun)|Schopenhauer|Arthur Schopenhauer|philosopher +arthur seymour sullivan|1 +(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer +arthur stanley jefferson laurel|1 +(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian|comic +arthur sullivan|1 +(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer +arthur symons|1 +(noun)|Symons|Arthur Symons|poet +arthur tappan|1 +(noun)|Tappan|Arthur Tappan|abolitionist|emancipationist +arthur tatum|1 +(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician|jazzman +arthur wellesley|1 +(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|the Iron Duke|general|full general|statesman|solon|national leader +arthurian|1 +(adj)|Arthurian|fictional character|fictitious character|character +arthurian legend|1 +(noun)|Arthurian legend|legend|fable +artichoke|2 +(noun)|globe artichoke|artichoke plant|Cynara scolymus|vegetable +(noun)|globe artichoke|vegetable|veggie +artichoke heart|1 +(noun)|vegetable|veggie +artichoke plant|1 +(noun)|artichoke|globe artichoke|Cynara scolymus|vegetable +article|5 +(noun)|nonfiction|nonfictional prose|piece +(noun)|artifact|artefact +(noun)|clause|section|subdivision +(noun)|determiner|determinative +(verb)|oblige|bind|hold|obligate +article of clothing|1 +(noun)|clothing|vesture|wear|covering|consumer goods +article of commerce|1 +(noun)|ware|article +article of faith|2 +(noun)|credendum|dogma|tenet +(noun)|conviction|strong belief|belief +article of furniture|1 +(noun)|furniture|piece of furniture|furnishings +articled|1 +(adj)|apprenticed|bound|indentured|unfree +articles of agreement|1 +(noun)|shipping articles|contract +articles of confederation|1 +(noun)|Articles of Confederation|written agreement +articles of incorporation|1 +(noun)|document|written document|papers +articular|1 +(adj)|articulary|body part +articular muscle|1 +(noun)|skeletal muscle|striated muscle +articulary|1 +(adj)|articular|body part +articulate|6 +(adj)|articulate |articulated|eloquent|facile|fluent|silver|silver-tongued|smooth-spoken|pronounced|speaking|speech-endowed|well-spoken|communicative|communicatory|spoken +(adj)|articulated |jointed +(verb)|joint|supply|provide|render|furnish +(verb)|give voice|formulate|word|phrase|express|show|evince +(verb)|pronounce|enounce|sound out|enunciate|say +(verb)|enunciate|vocalize|vocalise|state|say|tell +articulated|2 +(adj)|articulated |articulate|jointed +(adj)|articulate +articulated lorry|1 +(noun)|trailer truck|tractor trailer|trucking rig|rig|semi|truck|motortruck +articulately|2 +(adv)|eloquently +(adv)|eloquently +articulateness|1 +(noun)|fluency|volubility|communicativeness +articulatio|1 +(noun)|joint|articulation|body part +articulatio coxae|1 +(noun)|hip|hip joint|coxa|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +articulatio cubiti|1 +(noun)|elbow|elbow joint|cubitus|cubital joint|hinge joint|ginglymus|ginglymoid joint +articulatio genus|1 +(noun)|knee|knee joint|genu|hinge joint|ginglymus|ginglymoid joint +articulatio humeri|1 +(noun)|shoulder|shoulder joint|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +articulatio plana|1 +(noun)|gliding joint|synovial joint|articulatio synovialis|diarthrosis +articulatio radiocarpea|1 +(noun)|wrist|carpus|wrist joint|radiocarpal joint|gliding joint|articulatio plana +articulatio spheroidea|1 +(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|synovial joint|articulatio synovialis|diarthrosis +articulatio synovialis|1 +(noun)|synovial joint|diarthrosis|joint|articulation|articulatio +articulatio talocruralis|1 +(noun)|ankle|ankle joint|mortise joint|gliding joint|articulatio plana +articulatio temporomandibularis|1 +(noun)|mandibular joint|temporomandibular joint|synovial joint|articulatio synovialis|diarthrosis +articulatio trochoidea|1 +(noun)|pivot joint|rotary joint|rotatory joint|synovial joint|articulatio synovialis|diarthrosis +articulation|5 +(noun)|pronunciation +(noun)|join|joint|juncture|junction|connection|connexion|link +(noun)|voice|expression +(noun)|joint|articulatio|body part +(noun)|joining|connection|connexion +articulative|1 +(adj)|articulatory|pronunciation +articulator|2 +(noun)|communicator +(noun)|speech organ|vocal organ +articulatory|1 +(adj)|articulative|pronunciation +articulatory system|1 +(noun)|system +artie shaw|1 +(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist|clarinettist|bandleader +artifact|1 +(noun)|artefact|object|physical object|whole|whole thing|unit +artifactual|1 +(adj)|artefactual|object|physical object|whole|whole thing|unit +artifice|1 +(noun)|ruse|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +artificer|3 +(noun)|inventor|discoverer|creator +(noun)|craftsman|artisan|journeyman|skilled worker|trained worker +(noun)|armorer|armourer|enlisted man +artificial|3 +(adj)|artificial |unreal|arranged|staged|bionic|bleached|colored|coloured|dyed|celluloid|synthetic|conventionalized|conventionalised|stylized|stylised|dummy|ersatz|substitute|factitious|fake|false|faux|imitation|simulated|man-made|semisynthetic|synthetic|near|painted|cardboard|unlifelike|counterfeit|imitative|unreal +(adj)|contrived|hokey|stilted|affected |unnatural +(adj)|inorganic +artificial additive|1 +(noun)|food additive|additive +artificial blood|1 +(noun)|liquid +artificial flower|1 +(noun)|art|fine art +artificial heart|1 +(noun)|implant +artificial horizon|1 +(noun)|gyro horizon|flight indicator|navigational instrument +artificial insemination|1 +(noun)|AI|insemination +artificial intelligence|1 +(noun)|AI|computer science|computing +artificial joint|1 +(noun)|implant +artificial kidney|1 +(noun)|hemodialyzer|dialyzer|dialysis machine +artificial lake|1 +(noun)|reservoir|lake +artificial language|1 +(noun)|language|linguistic communication +artificial pacemaker|1 +(noun)|pacemaker|electronic device +artificial respiration|1 +(noun)|emergency procedure|breathing|external respiration|respiration|ventilation +artificial satellite|1 +(noun)|satellite|orbiter|equipment +artificial skin|1 +(noun)|covering +artificiality|1 +(noun)|unnaturalness +artificially|1 +(adv)|unnaturally|by artificial means +artillery|3 +(noun)|heavy weapon|gun|ordnance|armament +(noun)|artillery unit|army unit +(noun)|weapon|persuasion|suasion +artillery fire|1 +(noun)|cannon fire|fire|firing +artillery plant|1 +(noun)|Pilea microphylla|nettle +artillery shell|1 +(noun)|shell +artillery unit|1 +(noun)|artillery|army unit +artilleryman|1 +(noun)|cannoneer|gunner|machine gunner|serviceman|military man|man|military personnel +artiodactyl|2 +(adj)|artiodactylous|even-toed|animal order +(noun)|even-toed ungulate|artiodactyl mammal|ungulate|hoofed mammal +artiodactyl mammal|1 +(noun)|even-toed ungulate|artiodactyl|ungulate|hoofed mammal +artiodactyla|1 +(noun)|Artiodactyla|order Artiodactyla|animal order +artiodactylous|1 +(adj)|artiodactyl|even-toed|animal order +artisan|1 +(noun)|craftsman|journeyman|artificer|skilled worker|trained worker +artisan's lien|1 +(noun)|lien +artist|1 +(noun)|creative person|creator +artist's loft|1 +(noun)|loft|artist's workroom|atelier +artist's model|1 +(noun)|sitter|model|poser +artist's workroom|1 +(noun)|atelier|studio +artiste|1 +(noun)|performer|performing artist +artistic|3 +(adj)|creator +(adj)|aesthetic |esthetic|aesthetical|esthetical +(adj)|aesthetic|esthetic|pleasing|tasteful +artistic creation|1 +(noun)|art|artistic production|creation|creative activity +artistic movement|1 +(noun)|art movement|movement|social movement|front +artistic production|1 +(noun)|art|artistic creation|creation|creative activity +artistic style|1 +(noun)|idiom|manner|mode|style|way|fashion +artistry|1 +(noun)|art|prowess|superior skill +artium baccalaurens|1 +(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree|baccalaureate +artium magister|1 +(noun)|Master of Arts|MA|Artium Magister|AM|master's degree +artless|4 +(adj)|ingenuous |candid|open|heart-to-heart|undistorted|naive|naif|sincere +(adj)|artless |careless|guileless|honest|naive|unsophisticated|natural +(adj)|unskilled +(adj)|uncultivated|uncultured|unrefined +artlessly|2 +(adv)|crudely|inexpertly +(adv)|ingenuously +artlessness|2 +(noun)|innocence|ingenuousness|naturalness|naivete|naivety|naiveness +(noun)|ingenuousness +artocarpus|1 +(noun)|Artocarpus|genus Artocarpus|dicot genus|magnoliopsid genus +artocarpus altilis|1 +(noun)|breadfruit|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree +artocarpus communis|1 +(noun)|breadfruit|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree +artocarpus heterophyllus|1 +(noun)|jackfruit|jackfruit tree|Artocarpus heterophyllus|fruit tree +artocarpus odoratissima|1 +(noun)|marang|marang tree|Artocarpus odoratissima|fruit tree +artois|1 +(noun)|Artois|French region +arts|5 +(noun)|humanistic discipline|humanities|liberal arts|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|art|fine art|creation +(noun)|art|artistic creation|artistic production|creation|creative activity +(noun)|art|artistry|prowess|superior skill +(noun)|artwork|art|graphics|nontextual matter|visual communication +arts and crafts|1 +(noun)|art|artistic creation|artistic production +artsd|1 +(noun)|Doctor of Arts|ArtsD|honorary degree +artsy-craftsy|1 +(adj)|arty-crafty|pretentious +artur rubinstein|1 +(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist|piano player +artur schnabel|1 +(noun)|Schnabel|Artur Schnabel|composer|pianist|piano player +arturo toscanini|1 +(noun)|Toscanini|Arturo Toscanini|conductor|music director|director +artwork|1 +(noun)|art|graphics|nontextual matter|visual communication +arty|1 +(adj)|pretentious +arty-crafty|1 +(adj)|artsy-craftsy|pretentious +aruba|1 +(noun)|Aruba|island +arugula|1 +(noun)|rocket|roquette|garden rocket|rocket salad|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +arui|1 +(noun)|aoudad|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep +arulo|1 +(noun)|Arulo|artificial language +arum|2 +(noun)|starch|amylum +(noun)|aroid|herb|herbaceous plant +arum family|1 +(noun)|Araceae|family Araceae|monocot family|liliopsid family +arum lily|1 +(noun)|calla lily|calla|Zantedeschia aethiopica|flower +arum maculatum|1 +(noun)|cuckoopint|lords-and-ladies|jack-in-the-pulpit|Arum maculatum|arum|aroid +arum palaestinum|1 +(noun)|black calla|Arum palaestinum|arum|aroid +arundinaceous|1 +(adj)|monocot genus|liliopsid genus +arundinaria|1 +(noun)|Arundinaria|genus Arundinaria|monocot genus|liliopsid genus +arundinaria gigantea|1 +(noun)|giant cane|cane reed|Arundinaria gigantea|bamboo +arundinaria tecta|1 +(noun)|small cane|switch cane|Arundinaria tecta|bamboo +arundo|1 +(noun)|Arundo|genus Arundo|monocot genus|liliopsid genus +arundo conspicua|1 +(noun)|toetoe|toitoi|Arundo conspicua|Chionochloa conspicua|reed +arundo donax|1 +(noun)|giant reed|Arundo donax|reed +arundo richardii|1 +(noun)|plumed tussock|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass +aruru|1 +(noun)|Aruru|Semitic deity +arvicola|1 +(noun)|Arvicola|genus Arvicola|mammal genus +arvicola amphibius|1 +(noun)|water vole|water rat|Arvicola amphibius|vole|field mouse +aryan|3 +(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person +(noun)|Aryan|White|white person|Caucasian +(noun)|Aryan|Indo-European|primitive|primitive person +arytaenoid|1 +(noun)|arytenoid|arytenoid cartilage|cartilage|gristle +arytenoid|1 +(noun)|arytaenoid|arytenoid cartilage|cartilage|gristle +arytenoid cartilage|1 +(noun)|arytenoid|arytaenoid|cartilage|gristle +as|3 +(noun)|arsenic|As|atomic number 33|chemical element|element +(noun)|American Samoa|Eastern Samoa|AS|district|territory|territorial dominion|dominion +(adv)|equally|every bit +as a formality|1 +(adv)|perfunctorily|pro forma +as a group|1 +(adv)|en masse|en bloc +as a matter of fact|1 +(adv)|in fact|in point of fact +as a whole|1 +(adj)|at large|in general|general +as an alternative|1 +(adv)|alternatively|instead|or else +as far as possible|1 +(adv)|as much as possible +as if by magic|1 +(adv)|magically +as it were|1 +(adv)|so to speak +as luck would have it|1 +(adv)|fortunately|fortuitously|luckily +as much as possible|1 +(adv)|as far as possible +as needed|1 +(adv)|as required|pro re nata|PRN +as required|1 +(adv)|as needed|pro re nata|PRN +as such|1 +(adv)|intrinsically|per se|in and of itself +as usual|1 +(adv)|as was common +as was common|1 +(adv)|as usual +as we say|1 +(adv)|so to speak +as well|1 +(adv)|besides|too|also|likewise +as yet|1 +(adv)|so far|thus far|up to now|hitherto|heretofore|yet|til now|until now +asa dulcis|1 +(noun)|benzoin|gum benzoin|benjamin|gum benjamin|gum resin +asa gray|1 +(noun)|Gray|Asa Gray|botanist|phytologist|plant scientist +asa yoelson|1 +(noun)|Jolson|Al Jolson|Asa Yoelson|singer|vocalist|vocalizer|vocaliser|actor|histrion|player|thespian|role player +asadha|1 +(noun)|Asarh|Asadha|Hindu calendar month +asafetida|1 +(noun)|asafoetida|natural resin +asafoetida|1 +(noun)|asafetida|natural resin +asahikawa|1 +(noun)|Asahikawa|city|metropolis|urban center +asala|1 +(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization|terrorist group|foreign terrorist organization|FTO +asama|1 +(noun)|Asama|Mount Asama|volcano +asamiya|1 +(noun)|Assamese|Asamiya|Magadhan +asana|1 +(noun)|position|posture|attitude +asanga|1 +(noun)|Asanga|religious leader +asap|1 +(adv)|ASAP +asaph hall|1 +(noun)|Hall|Asaph Hall|astronomer|uranologist|stargazer +asarabacca|1 +(noun)|Asarum europaeum|wild ginger +asarh|1 +(noun)|Asarh|Asadha|Hindu calendar month +asarum|1 +(noun)|Asarum|genus Asarum|dicot genus|magnoliopsid genus +asarum canadense|1 +(noun)|Canada ginger|black snakeroot|Asarum canadense|wild ginger +asarum europaeum|1 +(noun)|asarabacca|Asarum europaeum|wild ginger +asarum shuttleworthii|1 +(noun)|heartleaf|heart-leaf|Asarum shuttleworthii|herb|herbaceous plant +asarum virginicum|1 +(noun)|heartleaf|heart-leaf|Asarum virginicum|wild ginger +asat|1 +(adj)|antisatellite|equipment +asbat al-ansar|1 +(noun)|Asbat al-Ansar|Band of Partisans|terrorist organization|terrorist group|foreign terrorist organization|FTO +asbestos|1 +(noun)|amphibole +asbestos abatement|1 +(noun)|abatement of a nuisance|nuisance abatement +asbestosis|1 +(noun)|pneumoconiosis|pneumonoconiosis +ascaphidae|1 +(noun)|Ascaphidae|family Ascaphidae|amphibian family +ascaphus|1 +(noun)|Ascaphus|genus Ascaphus|amphibian genus +ascaphus trui|1 +(noun)|tailed frog|bell toad|ribbed toad|tailed toad|Ascaphus trui|frog|toad|toad frog|anuran|batrachian|salientian +ascariasis|1 +(noun)|infestation +ascaridae|1 +(noun)|Ascaridae|family Ascaridae|worm family +ascaridia|1 +(noun)|Ascaridia|genus Ascaridia|worm genus +ascaridia galli|1 +(noun)|chicken roundworm|Ascaridia galli|nematode|nematode worm|roundworm +ascaris|1 +(noun)|Ascaris|genus Ascaris|worm genus +ascaris lumbricoides|1 +(noun)|common roundworm|Ascaris lumbricoides|nematode|nematode worm|roundworm +ascend|6 +(verb)|go up|travel|go|move|locomote +(verb)|go back|date back|date from +(verb)|accede|enter +(verb)|follow|travel along +(verb)|slope|incline|pitch +(verb)|rise|come up|uprise|rise|lift|arise|move up|go up|come up|uprise +ascendable|1 +(adj)|ascendible|scalable +ascendance|1 +(noun)|dominance|ascendence|ascendancy|ascendency|control|condition|status +ascendancy|1 +(noun)|dominance|ascendance|ascendence|ascendency|control|condition|status +ascendant|4 +(adj)|ascendent|ascensive|ascending +(adj)|ascendent|dominating|dominant +(noun)|ascendent|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|ancestor|ascendent|antecedent|root|relative|relation +ascendence|1 +(noun)|dominance|ascendance|ascendancy|ascendency|control|condition|status +ascendency|1 +(noun)|dominance|ascendance|ascendence|ascendancy|control|condition|status +ascendent|4 +(adj)|ascendant|ascensive|ascending +(adj)|ascendant|dominating|dominant +(noun)|ascendant|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|ancestor|ascendant|antecedent|root|relative|relation +ascender|3 +(noun)|mover +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|line +ascendible|1 +(adj)|ascendable|scalable +ascending|2 +(adj)|ascending |acclivitous|rising|uphill|ascendant|ascendent|ascensive|assurgent|assurgent|highflying|up|upward|scandent|up +(noun)|rise|ascent|ascension|motion|movement|move +ascending aorta|1 +(noun)|aorta +ascending artery|1 +(noun)|arteria ascendens|artery|arteria|arterial blood vessel +ascending colon|1 +(noun)|colon +ascending node|1 +(noun)|node +ascension|5 +(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation +(noun)|rise|rising|ascent|change of location|travel +(noun)|Ascension|Ascension of Christ|miracle +(noun)|change of location|travel +(noun)|rise|ascent|ascending|motion|movement|move +ascension day|1 +(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation +ascension of christ|1 +(noun)|Ascension|Ascension of Christ|miracle +ascension of the lord|1 +(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation +ascensional|1 +(adj)|motion|movement|move +ascensive|1 +(adj)|ascendant|ascendent|ascending +ascent|3 +(noun)|acclivity|rise|raise|climb|upgrade|slope|incline|side +(noun)|rise|rising|ascension|change of location|travel +(noun)|rise|ascension|ascending|motion|movement|move +ascertain|4 +(verb)|determine|find|find out +(verb)|see|check|insure|see to it|ensure|control|assure|verify +(verb)|determine|check|find out|see|watch|learn +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +ascertainable|1 +(adj)|discoverable|determinable +ascertained|1 +(adj)|discovered|observed|determined +ascesis|1 +(noun)|asceticism|self-denial|self-discipline|self-control +ascetic|3 +(adj)|ascetical|religionist|religious person +(adj)|ascetical|austere|spartan|abstemious +(noun)|abstainer|religionist|religious person +ascetical|2 +(adj)|ascetic|religionist|religious person +(adj)|ascetic|austere|spartan|abstemious +asceticism|3 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|austerity|nonindulgence|self-discipline|self-denial +(noun)|ascesis|self-denial|self-discipline|self-control +asch|1 +(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer|author +aschelminthes|1 +(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum +ascidiaceae|1 +(noun)|Ascidiaceae|class Ascidiaceae|class +ascidian|1 +(noun)|tunicate|urochordate|urochord +ascidian tadpole|1 +(noun)|larva +ascii|1 +(noun)|American Standard Code for Information Interchange|ASCII|code|computer code +ascii character|1 +(noun)|ASCII character|character|grapheme|graphic symbol +ascii character set|1 +(noun)|ASCII character set|character set +ascii control character|1 +(noun)|control character|ASCII control character|ASCII character +ascii text file|1 +(noun)|ASCII text file|text file|document +ascites|1 +(noun)|pathology +ascitic|1 +(adj)|pathology +asclepia meadii|1 +(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed|silkweed +asclepiad|1 +(noun)|herb|herbaceous plant +asclepiadaceae|1 +(noun)|Asclepiadaceae|family Asclepiadaceae|milkweed family|dicot family|magnoliopsid family +asclepiadaceous|1 +(adj)|dicot family|magnoliopsid family +asclepias|1 +(noun)|Asclepias|genus Asclepias|dicot genus|magnoliopsid genus +asclepias albicans|1 +(noun)|white milkweed|Asclepias albicans|milkweed|silkweed +asclepias curassavica|1 +(noun)|blood flower|swallowwort|Asclepias curassavica|milkweed|silkweed +asclepias exaltata|1 +(noun)|poke milkweed|Asclepias exaltata|milkweed|silkweed +asclepias incarnata|1 +(noun)|swamp milkweed|Asclepias incarnata|milkweed|silkweed +asclepias meadii|1 +(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed|silkweed +asclepias purpurascens|1 +(noun)|purple silkweed|Asclepias purpurascens|milkweed|silkweed +asclepias speciosa|1 +(noun)|showy milkweed|Asclepias speciosa|milkweed|silkweed +asclepias subverticillata|1 +(noun)|poison milkweed|horsetail milkweed|Asclepias subverticillata|milkweed|silkweed +asclepias tuberosa|1 +(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +asclepias verticillata|1 +(noun)|whorled milkweed|Asclepias verticillata|milkweed|silkweed +ascocarp|1 +(noun)|fruiting body +ascocarpous|1 +(adj)|fruiting body +ascolichen|1 +(noun)|lichen +ascoma|1 +(noun)|ascocarp +ascomycete|1 +(noun)|ascomycetous fungus|fungus +ascomycetes|2 +(noun)|Ascomycetes|class Ascomycetes|class +(noun)|ascomycete|ascomycetous fungus|fungus +ascomycetous|1 +(adj)|fungus +ascomycetous fungus|1 +(noun)|ascomycete|fungus +ascomycota|1 +(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division +ascomycotina|1 +(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division +ascophyllum|1 +(noun)|Ascophyllum|genus Ascophyllum|protoctist genus +ascophyllum nodosum|1 +(noun)|bladderwrack|Ascophyllum nodosum|rockweed +ascorbic acid|1 +(noun)|vitamin C|water-soluble vitamin|antioxidant +ascospore|1 +(noun)|spore +ascosporic|1 +(adj)|ascosporous|spore +ascosporous|1 +(adj)|ascosporic|spore +ascot|1 +(noun)|cravat +ascribable|1 +(adj)|due to|imputable|referable|attributable +ascribe|1 +(verb)|impute|assign|attribute|judge +ascription|2 +(noun)|attribution|classification|categorization|categorisation|sorting +(noun)|attribution|classification|categorization|categorisation|sorting +ascus|1 +(noun)|reproductive structure +asdic|1 +(noun)|sonar|echo sounder|measuring instrument|measuring system|measuring device|navigational instrument +asea|1 +(adv)|seaward|seawards|toward the sea +asean|1 +(noun)|Association of Southeast Asian Nations|ASEAN|association +asepsis|2 +(noun)|antisepsis|sterility|sterileness|sanitariness +(noun)|antisepsis|organic process|biological process +aseptic|1 +(adj)|sterile|antiseptic +asexual|1 +(adj)|asexual |nonsexual|agamic|agamous|agamogenetic|apomictic|parthenogenetic|neuter|sexless|vegetal|vegetative|fissiparous +asexual reproduction|1 +(noun)|agamogenesis|reproduction +asexuality|1 +(noun)|sexlessness|physiological property +asgard|1 +(noun)|Asgard|imaginary place|mythical place +ash|4 +(noun)|residue +(noun)|ash tree|tree +(noun)|wood +(verb)|change|alter|modify +ash-bin|3 +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ashbin|dustbin|trash barrel|trash bin|bin +(noun)| +(noun)| +ash-blonde|1 +(adj)|platinum-blonde|towheaded|blond |blonde|light-haired +ash-gray|1 +(adj)|ash-grey|ashy|achromatic +ash-grey|1 +(adj)|ash-gray|ashy|achromatic +ash-key|1 +(noun)|seed +ash-leaved maple|1 +(noun)|box elder|Acer negundo|maple +ash-pan|1 +(noun)|receptacle +ash bin|3 +(noun)|ashcan|trash can|garbage can|wastebin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +(noun)| +(noun)| +ash cake|2 +(noun)|ashcake|corn tash|cornbread +(noun)| +ash can|2 +(noun)|Ash Can|Ashcan school|artistic movement|art movement +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +ash gray|1 +(noun)|ash grey|silver|silver gray|silver grey|gray|grayness|grey|greyness +ash grey|1 +(noun)|ash gray|silver|silver gray|silver grey|gray|grayness|grey|greyness +ash tree|1 +(noun)|ash|tree +ash wednesday|1 +(noun)|Ash Wednesday|Christian holy day +ashamed|1 +(adj)|ashamed |discredited|disgraced|dishonored|shamed|guilty|hangdog|shamefaced|shamed|embarrassed|humiliated|mortified|shamefaced|sheepish|penitent|repentant +ashbin|1 +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|dustbin|trash barrel|trash bin|bin +ashcake|1 +(noun)|ash cake|corn tash|cornbread +ashcan|1 +(noun)|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +ashcan school|2 +(noun)|Ashcan School|Eight|school|artistic movement|art movement +(noun)|Ash Can|Ashcan school|artistic movement|art movement +ashe|1 +(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player +ashen|2 +(adj)|blanched|bloodless|livid|white|colorless |colourless +(adj)|woody +asheville|1 +(noun)|Asheville|town +ashir|1 +(noun)|Ashur|Ashir|Semitic deity +ashkenazi|1 +(noun)|Ashkenazi|Jew|Hebrew|Israelite +ashkhabad|1 +(noun)|Ashkhabad|capital of Turkmenistan|capital +ashlar|1 +(noun)|stone|building block +ashley montagu|1 +(noun)|Montagu|Ashley Montagu|anthropologist +ashore|1 +(adv)|on land|toward land|onto land +ashton|1 +(noun)|Ashton|Sir Frederick Ashton|choreographer +ashtoreth|1 +(noun)|Ashtoreth|Semitic deity +ashtray|1 +(noun)|receptacle +ashur|2 +(noun)|Ashur|Ashir|Semitic deity +(noun)|Assur|Asur|Ashur|city|metropolis|urban center +ashurbanipal|1 +(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king|male monarch +ashy|1 +(adj)|ash-gray|ash-grey|achromatic +asia|2 +(noun)|Asia|continent +(noun)|Asia|collection|aggregation|accumulation|assemblage +asia minor|1 +(noun)|Asia Minor|Anatolia|peninsula +asian|3 +(adj)|Asian|Asiatic|continent +(adj)|Asian|oriental|eastern +(noun)|Asian|Asiatic|inhabitant|dweller|denizen|indweller|person of color|person of colour +asian black grouse|1 +(noun)|Asian black grouse|Lyrurus mlokosiewiczi|black grouse +asian coral snake|1 +(noun)|Asian coral snake|coral snake|Old World coral snake +asian country|1 +(noun)|Asian country|Asian nation|country|state|land +asian crocodile|1 +(noun)|Asian crocodile|Crocodylus porosus|crocodile +asian horseshoe crab|1 +(noun)|Asian horseshoe crab|arthropod +asian influenza|1 +(noun)|Asian influenza|Asiatic flu|influenza|flu|grippe +asian longhorned beetle|1 +(noun)|Asian longhorned beetle|Anoplophora glabripennis|beetle +asian nation|1 +(noun)|Asian country|Asian nation|country|state|land +asian russia|1 +(noun)|Asian Russia|Russia|Russian Federation +asian shamanism|1 +(noun)|shamanism|Asian shamanism|religion|faith|religious belief +asian tiger mosquito|1 +(noun)|Asian tiger mosquito|Aedes albopictus|mosquito +asian wild ox|1 +(noun)|Asian wild ox|ox|wild ox +asiatic|2 +(adj)|Asian|Asiatic|continent +(noun)|Asian|Asiatic|inhabitant|dweller|denizen|indweller|person of color|person of colour +asiatic beetle|1 +(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle|scarabaeid|scarabaean +asiatic black bear|1 +(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear +asiatic buffalo|1 +(noun)|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo|buffalo +asiatic cholera|1 +(noun)|cholera|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease +asiatic cockroach|1 +(noun)|oriental cockroach|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach|roach +asiatic flu|1 +(noun)|Asian influenza|Asiatic flu|influenza|flu|grippe +asiatic flying squirrel|1 +(noun)|Asiatic flying squirrel|squirrel +asiatic shrew mole|1 +(noun)|Asiatic shrew mole|Uropsilus soricipes|shrew mole +asiatic sweetleaf|1 +(noun)|Asiatic sweetleaf|sapphire berry|Symplocus paniculata|flowering shrub +aside|7 +(noun)|actor's line|speech|words +(noun)|digression|excursus|divagation|parenthesis|message|content|subject matter|substance +(adv)|away +(adv)|apart +(adv)|away +(adv)|apart +(adv)|by|away +asilidae|1 +(noun)|Asilidae|family Asilidae|arthropod family +asimina|1 +(noun)|Asimina|genus Asimina|magnoliid dicot genus +asimina triloba|1 +(noun)|pawpaw|papaw|papaw tree|Asimina triloba|custard apple|custard apple tree +asimov|1 +(noun)|Asimov|Isaac Asimov|writer|author +asin|1 +(noun)|Asin|Asvina|Hindu calendar month +asinine|1 +(adj)|fatuous|inane|mindless|vacuous|foolish +asio|1 +(noun)|Asio|genus Asio|bird genus +asio otus|1 +(noun)|long-eared owl|Asio otus|owl|bird of Minerva|bird of night|hooter +ask|7 +(verb)|inquire|enquire|communicate|intercommunicate +(verb)|request|bespeak|call for|quest|ask in|ask over|ask round|ask out +(verb)|give voice|formulate|word|phrase|articulate +(verb)|require|expect|demand +(verb)|demand +(verb)|address|turn to +(verb)|necessitate|postulate|need|require|take|involve|call for|demand +ask for|1 +(verb)|invite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +ask for it|1 +(verb)|ask for trouble|persevere|persist|hang in|hang on|hold on +ask for trouble|1 +(verb)|ask for it|persevere|persist|hang in|hang on|hold on +ask in|1 +(verb)|invite|request|bespeak|call for|quest +ask out|1 +(verb)|invite out|take out|request|bespeak|call for|quest +ask over|1 +(verb)|invite|ask round|request|bespeak|call for|quest +ask round|1 +(verb)|invite|ask over|request|bespeak|call for|quest +askance|1 +(adj)|askant|asquint|squint|squint-eyed|squinty|sidelong|indirect +askant|1 +(adj)|askance|asquint|squint|squint-eyed|squinty|sidelong|indirect +asker|1 +(noun)|inquirer|enquirer|questioner|querier|speaker|talker|utterer|verbalizer|verbaliser +askew|2 +(adj)|awry|cockeyed|lopsided|wonky|skew-whiff|crooked +(adv)|awry|skew-whiff +asking|2 +(adj)|interrogative +(noun)|request|speech act +asking price|1 +(noun)|selling price|price|terms|damage +asl|1 +(noun)|ASL|American sign language|sign language|signing +aslant|2 +(adj)|aslope|diagonal|slanted|slanting|sloped|sloping|inclined +(adv)|obliquely|athwart +asleep|3 +(adj)|asleep |at rest|dormant|hibernating|torpid|drowsy|drowsing|dozy|fast asleep|sound asleep|hypnoid|sleepy|sleepy-eyed|sleepyheaded|slumberous|slumbery|slumbrous|somnolent|unawakened|unaware|unconscious +(adj)|benumbed|numb|insensible +(adj)|at peace|at rest|deceased|departed|gone|dead +aslope|1 +(adj)|aslant|diagonal|slanted|slanting|sloped|sloping|inclined +asmara|1 +(noun)|Asmara|Asmera|national capital +asmera|1 +(noun)|Asmara|Asmera|national capital +asocial|2 +(adj)|unsocial +(adj)|antisocial|unsocial +asp|2 +(noun)|asp viper|Vipera aspis|viper +(noun)|Egyptian cobra|Naja haje|cobra +asp viper|1 +(noun)|asp|Vipera aspis|viper +aspadana|1 +(noun)|Isfahan|Esfahan|Aspadana|city|metropolis|urban center +aspalathus|1 +(noun)|Aspalathus|genus Aspalathus|rosid dicot genus +aspalathus cedcarbergensis|1 +(noun)|rooibos|Aspalathus linearis|Aspalathus cedcarbergensis|shrub|bush +aspalathus linearis|1 +(noun)|rooibos|Aspalathus linearis|Aspalathus cedcarbergensis|shrub|bush +asparagaceae|1 +(noun)|Asparagaceae|family Asparagaceae|liliid monocot family +asparaginase|1 +(noun)|Elspar|antineoplastic|antineoplastic drug|cancer drug +asparagine|1 +(noun)|amino acid|aminoalkanoic acid +asparagus|2 +(noun)|edible asparagus|Asparagus officinales|herb|herbaceous plant +(noun)|vegetable|veggie +asparagus asparagoides|1 +(noun)|smilax|Asparagus asparagoides|vine +asparagus bean|1 +(noun)|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume|leguminous plant +asparagus bed|1 +(noun)|bed +asparagus fern|1 +(noun)|Asparagus setaceous|Asparagus plumosus|herb|herbaceous plant +asparagus officinales|1 +(noun)|asparagus|edible asparagus|Asparagus officinales|herb|herbaceous plant +asparagus pea|1 +(noun)|winged pea|Lotus tetragonolobus|herb|herbaceous plant +asparagus plumosus|1 +(noun)|asparagus fern|Asparagus setaceous|Asparagus plumosus|herb|herbaceous plant +asparagus setaceous|1 +(noun)|asparagus fern|Asparagus setaceous|Asparagus plumosus|herb|herbaceous plant +aspartame|1 +(noun)|sweetening|sweetener +aspartic acid|1 +(noun)|amino acid|aminoalkanoic acid +aspect|5 +(noun)|facet|feature|characteristic +(noun)|characteristic +(noun)|view|prospect|scene|vista|panorama|visual percept|visual image +(noun)|grammatical relation +(noun)|expression|look|facial expression|face|countenance|visage +aspect ratio|1 +(noun)|ratio +aspectual|1 +(adj)|grammatical relation +aspen|1 +(noun)|poplar|poplar tree +aspen poplar|1 +(noun)|white poplar|white aspen|abele|silver-leaved poplar|Populus alba|poplar|poplar tree +asper|1 +(noun)|Turkish monetary unit +aspergill|1 +(noun)|device +aspergillaceae|1 +(noun)|Aspergillaceae|family Aspergillaceae|fungus family +aspergillales|1 +(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order +aspergillosis|3 +(noun)|brooder pneumonia|animal disease +(noun)|opportunistic infection +(noun)|disease +aspergillus|1 +(noun)|Aspergillus|genus Aspergillus|fungus genus +aspergillus fumigatus|1 +(noun)|Aspergillus fumigatus|fungus +asperity|2 +(noun)|grimness|hardship|rigor|rigour|severity|rigorousness|difficulty|difficultness +(noun)|sharpness|ill nature +asperse|1 +(verb)|defame|slander|smirch|denigrate|calumniate|smear|sully|besmirch|charge|accuse +aspersion|3 +(noun)|slur|disparagement|depreciation|derogation +(noun)|calumny|slander|defamation|denigration|attack +(noun)|sprinkling|baptism +asperula|1 +(noun)|Asperula|genus Asperula|asterid dicot genus +asperula odorata|1 +(noun)|sweet woodruff|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw +asperula tinctoria|1 +(noun)|dyer's woodruff|Asperula tinctoria|woodruff +asphalt|3 +(noun)|paving material +(noun)|mineral pitch|mineral +(verb)|pave +asphaltic|1 +(adj)|mineral +aspheric|1 +(adj)|aspherical|rounded +aspherical|1 +(adj)|aspheric|rounded +asphodel|1 +(noun)|liliaceous plant +asphodelaceae|1 +(noun)|Asphodelaceae|family Asphodelaceae|liliid monocot family +asphodeline|1 +(noun)|Asphodeline|genus Asphodeline|liliid monocot genus +asphodeline lutea|1 +(noun)|king's spear|yellow asphodel|Asphodeline lutea|asphodel +asphodelus|1 +(noun)|Asphodelus|genus Asphodelus|liliid monocot genus +asphyxia|1 +(noun)|physiological state|physiological condition +asphyxiate|3 +(verb)|smother|suffocate|kill +(verb)|suffocate|stifle|choke|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|suffocate|stifle|die|decease|perish|go|exit|pass away|expire|pass +asphyxiated|1 +(adj)|physiological state|physiological condition +asphyxiating|1 +(adj)|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +asphyxiation|2 +(noun)|suffocation|hypoxia +(noun)|suffocation|killing|kill|putting to death +asphyxiator|1 +(noun)|fire extinguisher|extinguisher|device +aspic|1 +(noun)|gelatin|jelly +aspidelaps|1 +(noun)|Aspidelaps|genus Aspidelaps|reptile genus +aspidelaps lubricus|1 +(noun)|African coral snake|Aspidelaps lubricus|coral snake|Old World coral snake +aspidiotus|1 +(noun)|Aspidiotus|genus Aspidiotus|arthropod genus +aspidiotus perniciosus|1 +(noun)|San Jose scale|Aspidiotus perniciosus|armored scale +aspidistra|1 +(noun)|cast-iron plant|bar-room plant|Aspidistra elatio|herb|herbaceous plant +aspidistra elatio|1 +(noun)|aspidistra|cast-iron plant|bar-room plant|Aspidistra elatio|herb|herbaceous plant +aspidophoroides|1 +(noun)|Aspidophoroides|genus Aspidophoroides|fish genus +aspidophoroides monopterygius|1 +(noun)|alligatorfish|Aspidophoroides monopterygius|poacher|sea poacher|sea poker +aspinwall|1 +(noun)|Colon|Aspinwall|city|metropolis|urban center|port +aspirant|3 +(adj)|aspiring|wishful|would-be|hopeful +(adj)|aspiring|ambitious +(noun)|aspirer|hopeful|wannabe|wannabee|applicant|applier +aspirate|4 +(noun)|consonant +(verb)|draw in|suck in|remove|take|take away|withdraw +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|inhale|inspire|breathe in +aspiration|4 +(noun)|ambition|ambitiousness +(noun)|ambition|dream|desire +(noun)|articulation +(noun)|inhalation|inspiration|breathing in|breath +aspiration pneumonia|1 +(noun)|bronchopneumonia|bronchial pneumonia +aspirator|1 +(noun)|pump +aspire|1 +(verb)|draw a bead on|aim|shoot for|plan|be after +aspirer|1 +(noun)|aspirant|hopeful|wannabe|wannabee|applicant|applier +aspirin|1 +(noun)|acetylsalicylic acid|Bayer|Empirin|salicylate|analgesic|anodyne|painkiller|pain pill +aspirin powder|1 +(noun)|headache powder|aspirin|acetylsalicylic acid|Bayer|Empirin|powder +aspiring|2 +(adj)|aspirant|wishful|would-be|hopeful +(adj)|aspirant|ambitious +aspis|1 +(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus +aspleniaceae|1 +(noun)|Aspleniaceae|family Aspleniaceae|fern family +asplenium|1 +(noun)|Asplenium|genus Asplenium|fern genus +asplenium adiantum-nigrum|1 +(noun)|black spleenwort|Asplenium adiantum-nigrum|spleenwort +asplenium billotii|1 +(noun)|lanceolate spleenwort|Asplenium billotii|spleenwort +asplenium bradleyi|1 +(noun)|Bradley's spleenwort|Asplenium bradleyi|spleenwort +asplenium ceterach|1 +(noun)|scale fern|scaly fern|Asplenium ceterach|Ceterach officinarum|fern +asplenium montanum|1 +(noun)|mountain spleenwort|Asplenium montanum|spleenwort +asplenium nidus|1 +(noun)|bird's nest fern|Asplenium nidus|fern +asplenium nigripes|1 +(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern +asplenium pinnatifidum|1 +(noun)|lobed spleenwort|Asplenium pinnatifidum|spleenwort +asplenium platyneuron|1 +(noun)|ebony spleenwort|Scott's Spleenwort|Asplenium platyneuron|spleenwort +asplenium rhizophyllum|1 +(noun)|walking fern|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort +asplenium ruta-muraria|1 +(noun)|wall rue|wall rue spleenwort|Asplenium ruta-muraria|spleenwort +asplenium scolopendrium|1 +(noun)|hart's-tongue|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern +asplenium trichomanes|1 +(noun)|maidenhair spleenwort|Asplenium trichomanes|spleenwort +asplenium viride|1 +(noun)|green spleenwort|Asplenium viride|spleenwort +asquint|1 +(adj)|askance|askant|squint|squint-eyed|squinty|sidelong|indirect +asron montgomery ward|1 +(noun)|Ward|Montgomery Ward|Asron Montgomery Ward|businessman|man of affairs +ass|4 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|body part +(noun)|fool|sap|saphead|muggins|tomfool +(noun)|equine|equid +(noun)|fuck|fucking|screw|screwing|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +ass-kisser|1 +(noun)|apple polisher|bootlicker|fawner|groveller|groveler|truckler|sycophant|toady|crawler|lackey +assagai|1 +(noun)|assegai|spear|lance|shaft +assail|3 +(verb)|assault|set on|attack +(verb)|attack|fight|struggle +(verb)|attack|round|lash out|snipe|assault|knock|criticize|criticise|pick apart +assailability|1 +(noun)|vulnerability +assailable|1 +(adj)|undefendable|undefended|open|vulnerable +assailant|1 +(noun)|attacker|aggressor|assaulter|wrongdoer|offender +assam|1 +(noun)|Assam|state|province +assam fever|1 +(noun)|visceral leishmaniasis|kala-azar|Assam fever|dumdum fever|leishmaniasis|leishmaniosis|kala azar +assam rubber|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree +assamese|3 +(adj)|Assamese|state|province +(noun)|Assamese|Indian +(noun)|Assamese|Asamiya|Magadhan +assassin|2 +(noun)|assassinator|bravo|murderer|liquidator|manslayer +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +assassin bug|1 +(noun)|reduviid|heteropterous insect +assassinate|2 +(verb)|kill +(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +assassinated|1 +(adj)|dead +assassination|2 +(noun)|character assassination|blackwash|defamation|calumny|obloquy|traducement|hatchet job +(noun)|murder|slaying|execution +assassinator|1 +(noun)|assassin|bravo|murderer|liquidator|manslayer +assault|7 +(noun)|battle|conflict|fight|engagement +(noun)|attack|attempt +(noun)|Assault|thoroughbred +(noun)|rape|violation|ravishment|sexual assault|sexual abuse|sex crime|sex offense +(verb)|assail|set on|attack +(verb)|rape|ravish|violate|dishonor|dishonour|outrage|assail|set on|attack +(verb)|attack|round|assail|lash out|snipe|knock|criticize|criticise|pick apart +assault and battery|1 +(noun)|battery|assault +assault gun|2 +(noun)|assault rifle|automatic rifle|automatic|machine rifle +(noun)|armored vehicle|armoured vehicle +assault rifle|1 +(noun)|assault gun|automatic rifle|automatic|machine rifle +assaulted|1 +(adj)|molested|raped|abused |ill-treated|maltreated|mistreated +assaulter|1 +(noun)|attacker|aggressor|assailant|wrongdoer|offender +assaultive|1 +(adj)|attacking|offensive +assay|6 +(noun)|check|appraisal|assessment +(noun)|substance|matter +(noun)|report|study|written report +(noun)|test|trial|run +(verb)|analyze|analyse|study|examine|canvass|canvas +(verb)|try|seek|attempt|essay|act|move +assay-mark|1 +(noun)|authentication|hallmark|marker|marking|mark +assayer|1 +(noun)|analyst +assegai|1 +(noun)|assagai|spear|lance|shaft +assemblage|4 +(noun)|gathering|social group +(noun)|hookup|system +(noun)|assembly|gathering|group action +(noun)|collection|aggregation|accumulation|group|grouping +assemble|3 +(verb)|piece|put together|set up|tack|tack together|join|bring together|make|create +(verb)|meet|gather|forgather|foregather|interact +(verb)|gather|get together +assembled|2 +(adj)|accumulated|amassed|collected|congregate|massed|concentrated +(adj)|built|made-up|collective +assembler|1 +(noun)|assembly program|program|programme|computer program|computer programme +assemblies of god|1 +(noun)|Assemblies of God|Protestant denomination +assembling|1 +(noun)|collection|collecting|aggregation|grouping +assembly|5 +(noun)|machine +(noun)|fabrication|construction|building +(noun)|forum|meeting place|facility|installation +(noun)|gathering|assemblage +(noun)|assemblage|gathering|group action +assembly hall|1 +(noun)|auditorium +assembly language|1 +(noun)|programming language|programing language +assembly line|1 +(noun)|production line|line|mechanical system +assembly plant|1 +(noun)|factory|mill|manufacturing plant|manufactory +assembly program|1 +(noun)|assembler|program|programme|computer program|computer programme +assemblyman|1 +(noun)|representative +assemblywoman|1 +(noun)|representative +assent|2 +(noun)|acquiescence|agreement +(verb)|accede|acquiesce|agree +assentient|1 +(adj)|affirmative |affirmatory +assenting|1 +(noun)|accession|agreement +assert|4 +(verb)|asseverate|maintain|insist|take a firm stand +(verb)|affirm|verify|avow|aver|swan|swear|declare +(verb)|put forward|behave|acquit|bear|deport|conduct|comport|carry +(verb)|insist|postulate|posit +assert oneself|1 +(verb)|behave|comport +assertable|1 +(adj)|affirmable|possible +asserted|1 +(adj)|declared +asserter|1 +(noun)|declarer|affirmer|asseverator|avower|communicator +asserting|1 +(adj)|declarative +assertion|2 +(noun)|averment|asseveration|declaration +(noun)|affirmation|statement|speech act +assertive|2 +(adj)|assertive |cocky|emphatic|forceful|aggressive|imperative +(adj)|self-asserting|self-assertive|aggressive +assertiveness|1 +(noun)|self-assertiveness|positiveness +assertiveness training|1 +(noun)|behavior therapy|behavior modification +assess|4 +(verb)|measure|evaluate|valuate|appraise|value|judge +(verb)|charge|bill +(verb)|tax|determine|set +(verb)|estimate|gauge|approximate|guess|judge +assessable|2 +(adj)|taxable |nonexempt +(adj)|ponderable +assessment|4 +(noun)|appraisal|classification|categorization|categorisation|sorting +(noun)|charge +(noun)|monetary value|price|cost +(noun)|judgment|judgement|act|human action|human activity +assessor|1 +(noun)|tax assessor|bureaucrat|administrative official +asset|1 +(noun)|plus|quality +assets|2 +(noun)|possession +(noun)|asset|plus|quality +asseverate|1 +(verb)|assert|maintain|insist|take a firm stand +asseveration|1 +(noun)|assertion|averment|declaration +asseverator|1 +(noun)|asserter|declarer|affirmer|avower|communicator +asshole|2 +(noun)|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)|anus|arse|arsehole|orifice|opening|porta +assibilate|2 +(verb)|sibilate +(verb)|change +assibilation|2 +(noun)|development|evolution +(noun)|sibilation|pronunciation +assiduity|1 +(noun)|assiduousness|concentration|diligence|industriousness|industry +assiduous|1 +(adj)|sedulous|diligent +assiduousness|1 +(noun)|assiduity|concentration|diligence|industriousness|industry +assign|8 +(verb)|delegate|designate|depute|appoint|charge +(verb)|allot|portion|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +(verb)|impute|ascribe|attribute|judge +(verb)|specify|set apart|choose|take|select|pick out +(verb)|put|use|utilize|utilise|apply|employ +(verb)|arrogate|claim|lay claim|arrogate +(verb)|transfer +(verb)|attribute|judge +assignable|1 +(adj)|conveyable|negotiable|transferable|transferrable|alienable +assignation|2 +(noun)|tryst|rendezvous +(noun)|allotment|apportionment|apportioning|allocation|parceling|parcelling|distribution +assigned|1 +(adj)|assigned |allotted|appointed +assignee|1 +(noun)|party|recipient|receiver +assigning|1 +(noun)|assignment|distribution +assignment|6 +(noun)|duty assignment|duty +(noun)|legal document|legal instrument|official document|instrument +(noun)|assigning|distribution +(noun)|grant|transferred property|transferred possession +(noun)|undertaking|project|task|labor +(noun)|appointment|designation|naming|decision|determination|conclusion +assignor|1 +(noun)|party +assimilable|1 +(adj)|digestible +assimilate|5 +(verb)|absorb|ingest|take in|learn|larn|acquire +(verb)|adjust|conform|adapt +(verb)|change|alter|modify +(verb)|imbibe|absorb +(verb)|change +assimilating|1 +(adj)|assimilative|assimilatory|absorbent |absorptive +assimilation|6 +(noun)|relationship +(noun)|absorption|social process +(noun)|absorption|organic process|biological process +(noun)|linguistic process +(noun)|acculturation|education +(noun)|developmental learning +assimilative|1 +(adj)|assimilating|assimilatory|absorbent |absorptive +assimilator|1 +(noun)|learner|scholar|person|individual|someone|somebody|mortal|human|soul +assimilatory|1 +(adj)|assimilating|assimilative|absorbent |absorptive +assist|5 +(noun)|aid|assistance|help|activity +(noun)|maneuver|manoeuvre|play +(verb)|help|aid|support|back up +(verb)|work +(verb)|serve|attend to|wait on|attend|help|aid +assistance|2 +(noun)|aid|assist|help|activity +(noun)|aid|help|resource +assistant|2 +(adj)|adjunct|subordinate |low-level +(noun)|helper|help|supporter|worker +assistant foreman|1 +(noun)|straw boss|foreman|chief|gaffer|honcho|boss +assistant professor|1 +(noun)|professor|prof +assisted|1 +(adj)|assisted |aided|motor-assisted|power-assisted +assisted suicide|1 +(noun)|suicide|self-destruction|self-annihilation +assistive|1 +(adj)|helpful +assize|2 +(noun)|regulation|ordinance +(noun)|writ|judicial writ +assizes|3 +(noun)|court of assize|court of assize and nisi prius|court|tribunal|judicature +(noun)|assize|regulation|ordinance +(noun)|assize|writ|judicial writ +associability|1 +(noun)|associableness|capability|capableness +associable|1 +(adj)|associative |associatory +associableness|1 +(noun)|associability|capability|capableness +associate|8 +(adj)|subordinate |low-level +(noun)|peer|equal|match|compeer +(noun)|companion|comrade|fellow|familiar|friend +(noun)|accompaniment|concomitant|co-occurrence +(noun)|associate degree|academic degree|degree +(verb)|tie in|relate|link|colligate|link up|connect|think|cogitate|cerebrate +(verb)|consort|affiliate|assort|interact +(verb)|consociate|unite|unify +associate degree|1 +(noun)|associate|academic degree|degree +associate in applied science|1 +(noun)|Associate in Applied Science|AAS|associate degree|associate +associate in arts|1 +(noun)|Associate in Arts|AA|associate degree|associate +associate in nursing|1 +(noun)|Associate in Nursing|AN|associate degree|associate +associate professor|1 +(noun)|professor|prof +associated|2 +(adj)|connected|related |related to +(adj)|joint +associated state|1 +(noun)|protectorate|district|territory|territorial dominion|dominion +association|8 +(noun)|organization|organisation +(noun)|social activity +(noun)|union|unification +(noun)|affiliation|tie|tie-up|relationship +(noun)|connection|connexion|memory|remembering +(noun)|relation +(noun)|chemical process|chemical change|chemical action +(noun)|group|grouping +association area|1 +(noun)|association cortex|cortical area|cortical region +association cortex|1 +(noun)|association area|cortical area|cortical region +association football|1 +(noun)|soccer|football|football game +association for the advancement of retired persons|1 +(noun)|Association for the Advancement of Retired Persons|AARP|association +association of islamic groups and communities|1 +(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization|terrorist group|foreign terrorist organization|FTO +association of orangemen|1 +(noun)|Orange Order|Association of Orangemen|organization|organisation +association of southeast asian nations|1 +(noun)|Association of Southeast Asian Nations|ASEAN|association +association theory|1 +(noun)|associationism|scientific theory +associational|1 +(adj)|memory|remembering|scientific theory +associationism|1 +(noun)|association theory|scientific theory +associative|2 +(adj)|memory|remembering +(adj)|associative |associatory|associable +associative aphasia|1 +(noun)|conduction aphasia|aphasia +associatory|1 +(adj)|associative |associable +assoil|1 +(verb)|acquit|clear|discharge|exonerate|exculpate|pronounce|label|judge +assonance|1 +(noun)|vowel rhyme|rhyme|rime +assonant|2 +(adj)|same +(adj)|rhymed |rhyming|riming +assonate|1 +(verb)|rhyme|rime +assort|2 +(verb)|consort|associate|affiliate|interact +(verb)|classify|class|sort|sort out|separate|categorize|categorise +assortative mating|1 +(noun)|coupling|mating|pairing|conjugation|union|sexual union +assorted|2 +(adj)|miscellaneous|mixed|motley|sundry|heterogeneous |heterogenous +(adj)|various|different +assortment|2 +(noun)|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|grouping +assouan|1 +(noun)|Aswan|Assuan|Assouan|city|metropolis|urban center +assuage|3 +(verb)|pacify|lenify|conciliate|appease|mollify|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|quench|slake|allay|meet|satisfy|fill|fulfill|fulfil +(verb)|relieve|alleviate|palliate|better|improve|amend|ameliorate|meliorate +assuagement|1 +(noun)|relief|alleviation|comfort +assuan|1 +(noun)|Aswan|Assuan|Assouan|city|metropolis|urban center +assuasive|1 +(adj)|calming|pacifying|soothing|reassuring +assume|9 +(verb)|presume|take for granted|expect|anticipate +(verb)|adopt|take on|take over|take office +(verb)|acquire|adopt|take on|take|change +(verb)|bear|take over|accept|take +(verb)|take|strike|take up|move +(verb)|usurp|seize|take over|arrogate|take +(verb)|simulate|sham|feign|dissemble|pretend|act +(verb)|receive|take in|invite +(verb)|wear|put on|get into|don|dress|get dressed +assumed|3 +(adj)|assumptive|taken for granted|acknowledged +(adj)|arrogated|taken +(adj)|false|fictitious|fictive|pretended|put on|sham|counterfeit |imitative +assumed name|1 +(noun)|alias|false name|name +assuming|1 +(adj)|assumptive|presumptuous|forward +assumption|7 +(noun)|premise|premiss|postulate|posit +(noun)|supposition|supposal|hypothesis|possibility|theory +(noun)|laying claim|acquisition +(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation +(noun)|presumption|presumptuousness|effrontery|audacity|audaciousness +(noun)|Assumption|miracle +(noun)|act|human action|human activity +assumption of mary|1 +(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation +assumptive|2 +(adj)|assuming|presumptuous|forward +(adj)|assumed|taken for granted|acknowledged +assur|1 +(noun)|Assur|Asur|Ashur|city|metropolis|urban center +assurance|4 +(noun)|self-assurance|confidence|self-confidence|authority|sureness|certainty +(noun)|pledge|commitment|dedication +(noun)|statement +(noun)|insurance +assurbanipal|1 +(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king|male monarch +assure|6 +(verb)|guarantee|ensure|insure|secure +(verb)|tell|affirm|verify|assert|avow|aver|swan|swear +(verb)|persuade +(verb)|see|check|insure|see to it|ensure|control|ascertain|verify +(verb)|reassure|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|promise|declare +assured|2 +(adj)|confident +(adj)|secure +assuredness|1 +(noun)|aplomb|cool|poise|sang-froid|composure|calm|calmness|equanimity +assurgent|2 +(adj)|ascending +(adj)|ascending +assuring|1 +(adj)|reassuring +assyria|1 +(noun)|Assyria|geographical area|geographic area|geographical region|geographic region +assyrian|2 +(noun)|Assyrian|Semite +(noun)|Assyrian|Akkadian +assyriology|1 +(noun)|Assyriology|archeology|archaeology +astacidae|1 +(noun)|Astacidae|family Astacidae|Astacura|arthropod family +astacura|1 +(noun)|Astacidae|family Astacidae|Astacura|arthropod family +astacus|1 +(noun)|Astacus|genus Astacus|arthropod genus +astaire|1 +(noun)|Astaire|Fred Astaire|dancer|professional dancer|actor|histrion|player|thespian|role player +astana|1 +(noun)|Astana|Akmola|capital of Kazakhstan|capital +astarte|1 +(noun)|Astarte|Semitic deity +astasia|1 +(noun)|disability|disablement|handicap|impairment +astatic|1 +(adj)|changeable |changeful +astatic coils|1 +(noun)|coil +astatic galvanometer|1 +(noun)|galvanometer +astatine|1 +(noun)|At|atomic number 85|chemical element|element|halogen +aster|2 +(noun)|flower +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +aster acuminatus|1 +(noun)|whorled aster|Aster acuminatus|aster +aster arenosus|1 +(noun)|heath aster|Aster arenosus|aster +aster cordifolius|1 +(noun)|heart-leaved aster|Aster cordifolius|wood aster +aster divaricatus|1 +(noun)|white wood aster|Aster divaricatus|wood aster +aster dumosus|1 +(noun)|bushy aster|Aster dumosus|aster +aster ericoides|1 +(noun)|heath aster|Aster ericoides|aster +aster falcatus|1 +(noun)|white prairie aster|Aster falcatus|aster +aster family|1 +(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|asterid dicot family +aster linarifolius|1 +(noun)|stiff aster|Aster linarifolius|aster +aster linosyris|1 +(noun)|goldilocks|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster +aster macrophyllus|1 +(noun)|large-leaved aster|Aster macrophyllus|wood aster +aster novae-angliae|1 +(noun)|New England aster|Aster novae-angliae|aster +aster novi-belgii|1 +(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster +aster ptarmicoides|1 +(noun)|upland white aster|Aster ptarmicoides|aster +aster shortii|1 +(noun)|Short's aster|Aster shortii|aster +aster tripolium|1 +(noun)|sea aster|sea starwort|Aster tripolium|aster +aster turbinellis|1 +(noun)|prairie aster|Aster turbinellis|aster +asteraceae|1 +(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family +astereognosis|1 +(noun)|tactile agnosia|agnosia +asteriated|1 +(adj)|star +asterid dicot family|1 +(noun)|dicot family|magnoliopsid family +asterid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +asteridae|1 +(noun)|Asteridae|subclass Asteridae|class +asterion|1 +(noun)|craniometric point +asterisk|2 +(noun)|star|character|grapheme|graphic symbol +(verb)|star|mark +asterisked|1 +(adj)|starred|marked +asterism|2 +(noun)|star +(noun)|natural object +asterismal|1 +(adj)|natural object +astern|1 +(adv)|aft|abaft +asternal|1 +(adj)|unconnected +asteroid|2 +(adj)|star-shaped|angular |angulate +(noun)|minor planet|planetoid|planet +asteroid belt|1 +(noun)|belt +asteroidal|1 +(adj)|planet +asteroidea|1 +(noun)|Asteroidea|class Asteroidea|class +asterope|2 +(noun)|Sterope|Asterope|nymph +(noun)|Sterope|Asterope|star +asthenia|1 +(noun)|astheny|infirmity|frailty|debility|feebleness|frailness +asthenic|2 +(adj)|adynamic|debilitated|enervated|weak +(adj)|ectomorphic +asthenic type|1 +(noun)|ectomorphy|body type|somatotype +asthenopia|1 +(noun)|eyestrain|fatigue|weariness|tiredness +asthenosphere|1 +(noun)|layer +astheny|1 +(noun)|asthenia|infirmity|frailty|debility|feebleness|frailness +asthma|1 +(noun)|asthma attack|bronchial asthma|respiratory disease|respiratory illness|respiratory disorder +asthma attack|1 +(noun)|asthma|bronchial asthma|respiratory disease|respiratory illness|respiratory disorder +asthmatic|1 +(adj)|wheezing|wheezy|unhealthy +astigmatic|1 +(adj)|astigmatic +astigmatism|2 +(noun)|astigmia|ametropia +(noun)|astigmia|condition|status +astigmia|2 +(noun)|astigmatism|ametropia +(noun)|astigmatism|condition|status +astilbe|1 +(noun)|herb|herbaceous plant +astilbe biternata|1 +(noun)|false goatsbeard|Astilbe biternata|astilbe +astilbe chinensis pumila|1 +(noun)|dwarf astilbe|Astilbe chinensis pumila|astilbe +astilbe japonica|1 +(noun)|spirea|spiraea|Astilbe japonica|astilbe +astir|2 +(adj)|up|awake +(adj)|about|active +astomatous|1 +(adj)|astomatous |mouthless +astonied|1 +(adj)|amazed|astonished|astounded|stunned|surprised +astonish|1 +(verb)|amaze|astound|surprise +astonished|1 +(adj)|amazed|astonied|astounded|stunned|surprised +astonishing|2 +(adj)|amazing|surprising +(adj)|astounding|staggering|stupefying|impressive +astonishingly|1 +(adv)|amazingly|surprisingly +astonishment|1 +(noun)|amazement|feeling +astor|2 +(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess|politician|politico|pol|political leader +(noun)|Astor|John Jacob Astor|capitalist +astound|1 +(verb)|amaze|astonish|surprise +astounded|1 +(adj)|amazed|astonied|astonished|stunned|surprised +astounding|2 +(adj)|dumbfounding|dumfounding|incredible |unbelievable +(adj)|astonishing|staggering|stupefying|impressive +astraddle|1 +(adv)|astride +astragal|2 +(noun)|anklebone|astragalus|talus|bone|os +(noun)|beading|bead|beadwork|molding|moulding +astragalar|1 +(adj)|bone|os +astragalus|2 +(noun)|Astragalus|genus Astragalus|rosid dicot genus +(noun)|anklebone|astragal|talus|bone|os +astragalus alpinus|1 +(noun)|alpine milk vetch|Astragalus alpinus|milk vetch|milk-vetch +astragalus danicus|1 +(noun)|purple milk vetch|Astragalus danicus|milk vetch|milk-vetch +astragalus glycyphyllos|1 +(noun)|wild licorice|wild liquorice|Astragalus glycyphyllos|milk vetch|milk-vetch +astrakhan|2 +(noun)|fur|pelt +(noun)|Astrakhan|city|metropolis|urban center +astral|1 +(adj)|stellar|celestial body|heavenly body +astrantia|1 +(noun)|masterwort|herb|herbaceous plant +astrantia major|1 +(noun)|greater masterwort|Astrantia major|astrantia|masterwort +astraphobia|1 +(noun)|simple phobia +astray|1 +(adv)|wide +astreus|1 +(noun)|Astreus|genus Astreus|fungus genus +astreus hygrometricus|1 +(noun)|Astreus hygrometricus|earthstar +astreus pteridis|1 +(noun)|Astreus pteridis|earthstar +astride|1 +(adv)|astraddle +astringe|2 +(verb)|compress|constrict|squeeze|compact|contract|press +(verb)|constrict|constringe|narrow +astringence|1 +(noun)|astringency|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +astringency|2 +(noun)|astringence|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|stypsis|contractility +astringent|3 +(adj)|acerb|acerbic|sharp|sour +(adj)|astringent |styptic|hemostatic +(noun)|astringent drug|styptic|medicine|medication|medicament|medicinal drug +astringent drug|1 +(noun)|astringent|styptic|medicine|medication|medicament|medicinal drug +astrobiology|1 +(noun)|exobiology|space biology|biology|biological science +astrocyte|1 +(noun)|neurogliacyte|neuroglial cell|glial cell +astrocytic|1 +(adj)|neurogliacyte|neuroglial cell|glial cell +astrodome|1 +(noun)|dome +astrodynamics|1 +(noun)|astronomy|uranology +astrogate|2 +(verb)|navigate|pilot +(verb)|voyage|sail|navigate +astrogator|1 +(noun)|navigator +astroglia|1 +(noun)|macroglia|neuroglia|glia +astrolabe|1 +(noun)|sextant +astrolatry|1 +(noun)|worship of heavenly bodies|worship +astrologer|1 +(noun)|astrologist|forecaster|predictor|prognosticator|soothsayer +astrological|1 +(adj)|pseudoscience +astrologist|1 +(noun)|astrologer|forecaster|predictor|prognosticator|soothsayer +astrology|1 +(noun)|star divination|pseudoscience +astroloma|1 +(noun)|Astroloma|genus Astroloma|dilleniid dicot genus +astroloma humifusum|1 +(noun)|native cranberry|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub|bush +astrometry|1 +(noun)|astronomy|uranology +astronaut|1 +(noun)|spaceman|cosmonaut|traveler|traveller +astronautic|1 +(adj)|astronautical|physics|physical science|natural philosophy|traveler|traveller +astronautical|1 +(adj)|astronautic|physics|physical science|natural philosophy|traveler|traveller +astronautics|1 +(noun)|aeronautics|physics|physical science|natural philosophy +astronavigation|1 +(noun)|celestial navigation|navigation|pilotage|piloting +astronium|1 +(noun)|Astronium|genus Astronium|dicot genus|magnoliopsid genus +astronium fraxinifolium|1 +(noun)|goncalo alves|Astronium fraxinifolium|zebrawood|zebrawood tree +astronomer|1 +(noun)|uranologist|stargazer|physicist +astronomic|2 +(adj)|astronomical|physics|physical science|natural philosophy +(adj)|astronomical|galactic|large +astronomical|2 +(adj)|astronomic|physics|physical science|natural philosophy +(adj)|astronomic|galactic|large +astronomical telescope|1 +(noun)|telescope|scope +astronomical unit|1 +(noun)|Astronomical Unit|AU|astronomy unit +astronomical year|1 +(noun)|solar year|tropical year|equinoctial year|year +astronomy|1 +(noun)|uranology|physics|physical science|natural philosophy +astronomy satellite|1 +(noun)|satellite|artificial satellite|orbiter +astronomy unit|1 +(noun)|linear unit +astrophysical|1 +(adj)|astronomy|uranology +astrophysicist|1 +(noun)|astronomer|uranologist|stargazer +astrophysics|1 +(noun)|astronomy|uranology +astrophyton|1 +(noun)|Astrophyton|genus Astrophyton|echinoderm genus +astrophyton muricatum|1 +(noun)|Astrophyton muricatum|basket star|basket fish +astropogon|1 +(noun)|Astropogon|genus Astropogon|fish genus +astropogon stellatus|1 +(noun)|conchfish|Astropogon stellatus|cardinalfish +astute|1 +(adj)|sharp|shrewd|smart +astutely|1 +(adv)|shrewdly|sagaciously|sapiently +astuteness|2 +(noun)|shrewdness|perspicacity|perspicaciousness|intelligence +(noun)|profundity|profoundness|depth|wisdom|sapience +astylar|1 +(adj)|noncolumned |uncolumned +asuncion|1 +(noun)|Asuncion|capital of Paraguay|national capital|port +asunder|2 +(adj)|separate +(adv)|apart +asur|1 +(noun)|Assur|Asur|Ashur|city|metropolis|urban center +asura|1 +(noun)|Asura|Hindu deity +asurbanipal|1 +(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king|male monarch +asvina|1 +(noun)|Asin|Asvina|Hindu calendar month +asvins|1 +(noun)|Asvins|Hindu deity +aswan|1 +(noun)|Aswan|Assuan|Assouan|city|metropolis|urban center +aswan dam|1 +(noun)|Aswan High Dam|Aswan Dam|High Dam|dam|dike|dyke|levee +aswan high dam|1 +(noun)|Aswan High Dam|Aswan Dam|High Dam|dam|dike|dyke|levee +asylum|2 +(noun)|refuge|sanctuary|shelter +(noun)|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|hospital|infirmary +asymmetric|1 +(adj)|asymmetrical |ill-proportioned|lopsided|one-sided|noninterchangeable|unsymmetric|unsymmetrical|irregular +asymmetrical|2 +(adj)|asymmetrical |asymmetric|ill-proportioned|lopsided|one-sided|noninterchangeable|unsymmetric|unsymmetrical|irregular +(adj)|crooked|irregular +asymmetrically|1 +(adv)|unsymmetrically +asymmetry|1 +(noun)|imbalance|spatial property|spatiality +asymptomatic|1 +(adj)|symptomless|well +asymptote|1 +(noun)|straight line +asymptotic|1 +(adj)|straight line +asynchronism|1 +(noun)|asynchrony|desynchronization|desynchronisation|desynchronizing|temporal relation +asynchronous|2 +(adj)|asynchronous +(adj)|asynchronous |allochronic|anachronic|anachronous|anachronistic|nonsynchronous|unsynchronized|unsynchronised|unsynchronous|serial|in series|nonparallel +asynchronous operation|1 +(noun)|operation +asynchronous transfer mode|1 +(noun)|ATM|digital communication|data communication +asynchrony|1 +(noun)|asynchronism|desynchronization|desynchronisation|desynchronizing|temporal relation +asynclitism|1 +(noun)|obliquity|abnormality|abnormalcy|abnormal condition +asyndetic|1 +(adj)|asyndetic +asynergia|1 +(noun)|asynergy|pathology +asynergic|1 +(adj)|pathology +asynergy|1 +(noun)|asynergia|pathology +asystole|1 +(noun)|cardiac arrest|cardiopulmonary arrest|pathology +at|2 +(noun)|astatine|At|atomic number 85|chemical element|element|halogen +(noun)|Laotian monetary unit +at-bat|1 +(noun)|bat|turn|play +at-large|3 +(adj)|general +(adj)|as a whole|at large|in general|general +(adj)|at large|at liberty|escaped|loose|on the loose|free +at a loss|1 +(adj)|nonplused|nonplussed|puzzled|perplexed +at a low price|1 +(adv)|for a song|for a bargain price +at a lower place|1 +(adv)|below|to a lower place|beneath +at a time|1 +(adv)|at once|at one time +at all|1 +(adv)|in the least|the least bit +at all costs|1 +(adv)|at any cost|at any expense +at an equal rate|1 +(adv)|pari passu +at any cost|1 +(adv)|at all costs|at any expense +at any expense|1 +(adv)|at all costs|at any cost +at any rate|2 +(adv)|anyhow|anyway|in any case|in any event +(adv)|at least|leastways|leastwise +at bay|1 +(adj)|cornered|trapped|treed|unfree +at best|1 +(adv)|at the best +at bottom|1 +(adv)|at heart|deep down|inside|in spite of appearance +at close range|1 +(adv)|close up +at ease|4 +(adj)|relaxed |degage|easygoing|laid-back|mellow|unstrained|easy|unagitated +(adj)|easy |comfortable|relaxed +(adj)|comfortable +(adv)|at rest +at fault|1 +(adj)|guilty +at first|1 +(adv)|initially|ab initio|at the start +at first blush|1 +(adv)|when first seen +at first glance|1 +(adv)|at first sight +at first sight|1 +(adv)|at first glance +at full speed|1 +(adv)|lickety split|lickety cut|with a rush +at hand|2 +(adj)|close at hand|close +(adj)|close at hand|imminent|impending|close +at heart|1 +(adv)|at bottom|deep down|inside|in spite of appearance +at home|1 +(noun)|reception +at issue|1 +(adj)|in dispute|in hand|in question|under consideration|relevant +at large|4 +(adj)|as a whole|in general|general +(adj)|at liberty|escaped|loose|on the loose|free +(adj)|at-large|general +(adv)|in a broad way +at last|1 +(adv)|ultimately|finally|in the end|at long last +at least|2 +(adv)|leastways|leastwise|at any rate +(adv)|at the least +at leisure|2 +(adj)|unemployed +(adv)|leisurely +at length|2 +(adv)|finally|eventually +(adv)|lengthily +at liberty|2 +(adj)|unconstrained|free +(adj)|at large|escaped|loose|on the loose|free +at loggerheads|1 +(adj)|hostile +at long last|1 +(adv)|ultimately|finally|in the end|at last +at most|1 +(adv)|at the most +at odds|2 +(adj)|conflicting|contradictory|self-contradictory|inconsistent +(adj)|conflicting|opposed +at once|2 +(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|forthwith|in real time|like a shot +(adv)|at a time|at one time +at one time|2 +(adv)|at a time|at once +(adv)|once|formerly|erstwhile|erst +at peace|1 +(adj)|asleep|at rest|deceased|departed|gone|dead +at present|1 +(adv)|now +at random|1 +(adv)|randomly|indiscriminately|haphazardly|willy-nilly|arbitrarily|every which way +at rest|3 +(adj)|asleep +(adj)|asleep|at peace|deceased|departed|gone|dead +(adv)|at ease +at sea|2 +(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|perplexed +(adj)|sailing|afloat +at that place|1 +(adv)|there|in that location +at the best|1 +(adv)|at best +at the least|1 +(adv)|at least +at the most|1 +(adv)|at most +at the ready|1 +(adj)|ready +at the same time|2 +(adv)|simultaneously +(adv)|concurrently +at the start|1 +(adv)|initially|ab initio|at first +at the worst|1 +(adv)|at worst +at times|1 +(adv)|occasionally|on occasion|once in a while|now and then|now and again|from time to time +at variance|1 +(adj)|discrepant|discordant +at work|2 +(adj)|busy +(adj)|operant|operative +at worst|1 +(adv)|at the worst +atabrine|1 +(noun)|quinacrine|quinacrine hydrochloride|mepacrine|Atabrine|antimalarial|antimalarial drug|vermifuge|anthelmintic|anthelminthic|helminthic +atacama desert|1 +(noun)|Atacama Desert|desert +atacama trench|1 +(noun)|Atacama Trench|trench|deep|oceanic abyss +atactic|1 +(adj)|ataxic|nervous disorder|neurological disorder|neurological disease +atactic abasia|1 +(noun)|ataxic abasia|abasia +atakapa|2 +(noun)|Atakapa|Attacapan|Plains Indian|Buffalo Indian +(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +atakapan|1 +(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +atar|1 +(noun)|attar|athar|ottar|essential oil|volatile oil +ataractic|2 +(adj)|ataraxic|sedative|tranquilizing|tranquilising|depressant +(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +ataractic agent|1 +(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +ataractic drug|1 +(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic agent|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +atarax|1 +(noun)|hydroxyzine hydrochloride|hydroxyzine|Atarax|Vistaril|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +ataraxia|1 +(noun)|repose|quiet|placidity|serenity|tranquillity|tranquility +ataraxic|1 +(adj)|ataractic|sedative|tranquilizing|tranquilising|depressant +ataraxis|1 +(noun)|peace|peacefulness|peace of mind|repose|serenity|heartsease|tranquillity|tranquility|quietness|quietude +ataturk|1 +(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman|solon|national leader +atavism|1 +(noun)|reversion|throwback|recurrence|return +atavist|1 +(noun)|throwback|organism|being +atavistic|1 +(adj)|throwback|regressive +ataxia|1 +(noun)|ataxy|dyssynergia|motor ataxia|nervous disorder|neurological disorder|neurological disease +ataxic|1 +(adj)|atactic|nervous disorder|neurological disorder|neurological disease +ataxic abasia|1 +(noun)|atactic abasia|abasia +ataxic aphasia|1 +(noun)|motor aphasia|Broca's aphasia|expressive aphasia|nonfluent aphasia|aphasia +ataxy|1 +(noun)|ataxia|dyssynergia|motor ataxia|nervous disorder|neurological disorder|neurological disease +atayalic|1 +(noun)|Tayalic|Atayalic|Formosan +ate|1 +(noun)|Ate|Greek deity +atelectasis|1 +(noun)|pathology +ateleiosis|1 +(noun)|ateliosis|infantilism +ateleiotic|1 +(adj)|infantilism +ateles|1 +(noun)|Ateles|genus Ateles|mammal genus +ateles geoffroyi|1 +(noun)|spider monkey|Ateles geoffroyi|New World monkey|platyrrhine +atelier|1 +(noun)|artist's workroom|studio +ateliosis|1 +(noun)|ateleiosis|infantilism +atenolol|1 +(noun)|Tenormin|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +ateria gastrica dextra|1 +(noun)|right gastric artery|gastric artery|arteria gastrica +atf|1 +(noun)|Bureau of Alcohol Tobacco and Firearms|ATF|law enforcement agency +athabascan|2 +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian|North American Indian|American Indian|Red Indian +athabaskan|2 +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian|North American Indian|American Indian|Red Indian +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +athanasian creed|1 +(noun)|Athanasian Creed|creed|credo +athanasianism|1 +(noun)|Athanasianism|theological doctrine|religious doctrine +athanasius|1 +(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian|theologist|theologizer|theologiser|saint|Church Father|Father of the Church|Father|Doctor of the Church|Doctor +athanasius the great|1 +(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian|theologist|theologizer|theologiser|saint|Church Father|Father of the Church|Father|Doctor of the Church|Doctor +athanor|1 +(noun)|furnace +athapascan|2 +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian|North American Indian|American Indian|Red Indian +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +athapaskan|2 +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian|North American Indian|American Indian|Red Indian +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +athapaskan language|1 +(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +athar|1 +(noun)|attar|atar|ottar|essential oil|volatile oil +atharva-veda|1 +(noun)|Atharva-Veda|Samhita +atheism|2 +(noun)|godlessness|religious orientation +(noun)|unbelief|disbelief +atheist|2 +(adj)|atheistic|atheistical|religious orientation +(noun)|disbeliever|nonbeliever|unbeliever +atheistic|2 +(adj)|atheistical|unbelieving|irreligious +(adj)|atheist|atheistical|religious orientation +atheistical|2 +(adj)|atheist|atheistic +(adj)|atheistic|unbelieving|irreligious +athelstan|1 +(noun)|Athelstan|king|male monarch|Saxon +athena|1 +(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity +athenaeum|2 +(noun)|atheneum|club|society|guild|gild|lodge|order +(noun)|atheneum|library|depository library +athene|2 +(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity +(noun)|Athene|genus Athene|bird genus +athene noctua|1 +(noun)|little owl|Athene noctua|owl|bird of Minerva|bird of night|hooter +atheneum|2 +(noun)|athenaeum|club|society|guild|gild|lodge|order +(noun)|athenaeum|library|depository library +athenian|2 +(adj)|Athenian|national capital +(noun)|Athenian|Greek|Hellene +athens|3 +(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital +(noun)|Athens|town +(noun)|Athens|town +atherinidae|1 +(noun)|Atherinidae|family Atherinidae|fish family +atherinopsis|1 +(noun)|Atherinopsis|genus Atherinopsis|fish genus +atherinopsis californiensis|1 +(noun)|jacksmelt|Atherinopsis californiensis|silverside|silversides +atherodyde|1 +(noun)|ramjet|ramjet engine|athodyd|flying drainpipe|jet engine +atherogenesis|1 +(noun)|pathology +atheroma|1 +(noun)|adipose tissue|fat|fatty tissue +atheromatic|1 +(adj)|atheromatous|adipose tissue|fat|fatty tissue +atheromatous|1 +(adj)|atheromatic|adipose tissue|fat|fatty tissue +atherosclerosis|1 +(noun)|coronary artery disease|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease +atherosclerotic|1 +(adj)|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease +atherurus|1 +(noun)|Atherurus|genus Atherurus|mammal genus +athetosis|1 +(noun)|nervous disorder|neurological disorder|neurological disease +athinai|1 +(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital +athiorhodaceae|1 +(noun)|Athiorhodaceae|family Athiorhodaceae|bacteria family +athirst|1 +(adj)|hungry|thirsty|desirous +athlete|1 +(noun)|jock|contestant +athlete's foot|1 +(noun)|tinea pedis|tinea|ringworm|roundworm +athlete's heart|1 +(noun)|heart|pump|ticker +athletic|3 +(adj)|diversion|recreation +(adj)|acrobatic|gymnastic|active +(adj)|mesomorphic |muscular +athletic competition|1 +(noun)|athletic contest|athletics|contest|competition +athletic contest|1 +(noun)|athletic competition|athletics|contest|competition +athletic facility|1 +(noun)|facility|installation +athletic field|1 +(noun)|playing field|playing area|field|tract|piece of land|piece of ground|parcel of land|parcel +athletic game|1 +(noun)|sport|athletics|game +athletic sock|1 +(noun)|sweat sock|varsity sock|sock +athletic supporter|1 +(noun)|supporter|suspensor|jockstrap|jock|protective garment +athletic training|1 +(noun)|training|preparation|grooming +athletic type|1 +(noun)|mesomorphy|body type|somatotype +athletic wear|1 +(noun)|sportswear|activewear|attire|garb|dress +athleticism|1 +(noun)|strenuosity|energy|vigor|vigour +athletics|3 +(noun)|sport|diversion|recreation +(noun)|athletic contest|athletic competition|contest|competition +(noun)|extracurricular activity +athodyd|1 +(noun)|ramjet|ramjet engine|atherodyde|flying drainpipe|jet engine +athol fugard|1 +(noun)|Fugard|Athol Fugard|dramatist|playwright +athos|1 +(noun)|Athos|Mount Athos|district|territory|territorial dominion|dominion +athrotaxis|1 +(noun)|Athrotaxis|genus Athrotaxis|gymnosperm genus +athrotaxis selaginoides|1 +(noun)|King William pine|Athrotaxis selaginoides|conifer|coniferous tree +athwart|1 +(adv)|obliquely|aslant +athyriaceae|1 +(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family +athyrium|1 +(noun)|Athyrium|genus Athyrium|fern genus +athyrium distentifolium|1 +(noun)|Alpine lady fern|Athyrium distentifolium|lady fern|Athyrium filix-femina +athyrium filix-femina|1 +(noun)|lady fern|Athyrium filix-femina|fern +athyrium pycnocarpon|1 +(noun)|silvery spleenwort|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern +athyrium thelypteroides|1 +(noun)|silvery spleenwort|Deparia acrostichoides|Athyrium thelypteroides|fern +atilt|1 +(adj)|canted|leaning|tilted|tipped|inclined +ativan|1 +(noun)|lorazepam|Ativan|benzodiazepine +atlanta|2 +(noun)|Atlanta|capital of Georgia|state capital +(noun)|Atlanta|battle of Atlanta|siege|besieging|beleaguering|military blockade +atlantic|2 +(adj)|Atlantic|ocean +(noun)|Atlantic|Atlantic Ocean|ocean +atlantic bonito|1 +(noun)|skipjack|Atlantic bonito|Sarda sarda|bonito +atlantic bottlenose dolphin|1 +(noun)|Atlantic bottlenose dolphin|Tursiops truncatus|bottlenose dolphin|bottle-nosed dolphin|bottlenose +atlantic city|1 +(noun)|Atlantic City|city|metropolis|urban center +atlantic coast|1 +(noun)|Atlantic Coast|seashore|coast|seacoast|sea-coast +atlantic cod|1 +(noun)|Atlantic cod|Gadus morhua|cod|codfish +atlantic croaker|1 +(noun)|Atlantic croaker|Micropogonias undulatus|croaker +atlantic halibut|1 +(noun)|Atlantic halibut|Hippoglossus hippoglossus|righteye flounder|righteyed flounder +atlantic herring|1 +(noun)|Atlantic herring|Clupea harengus harengus|herring|Clupea harangus +atlantic manta|1 +(noun)|Atlantic manta|Manta birostris|manta|manta ray|devilfish +atlantic moonfish|1 +(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish|carangid +atlantic ocean|1 +(noun)|Atlantic|Atlantic Ocean|ocean +atlantic puffin|1 +(noun)|Atlantic puffin|Fratercula arctica|puffin +atlantic ridley|1 +(noun)|Atlantic ridley|bastard ridley|bastard turtle|Lepidochelys kempii|ridley +atlantic sailfish|1 +(noun)|Atlantic sailfish|Istiophorus albicans|sailfish +atlantic salmon|2 +(noun)|Atlantic salmon|salmon +(noun)|Atlantic salmon|Salmo salar|salmon +atlantic sea bream|1 +(noun)|Atlantic sea bream|Archosargus rhomboidalis|sea bream|bream +atlantic spiny dogfish|1 +(noun)|Atlantic spiny dogfish|Squalus acanthias|spiny dogfish +atlantic standard time|1 +(noun)|Atlantic Time|Atlantic Standard Time|civil time|standard time|local time +atlantic time|1 +(noun)|Atlantic Time|Atlantic Standard Time|civil time|standard time|local time +atlantic tripletail|1 +(noun)|Atlantic tripletail|Lobotes surinamensis|tripletail +atlantic walrus|1 +(noun)|Atlantic walrus|Odobenus rosmarus|walrus|seahorse|sea horse +atlantic white cedar|1 +(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar|cedar tree +atlantides|1 +(noun)|Hesperides|Atlantides|nymph +atlantis|1 +(noun)|Atlantis|imaginary place|mythical place +atlas|4 +(noun)|Atlas|Titan +(noun)|book of maps|map collection|reference book|reference|reference work|book of facts +(noun)|atlas vertebra|cervical vertebra|neck bone +(noun)|telamon|column|pillar +atlas cedar|1 +(noun)|Atlas cedar|Cedrus atlantica|cedar|cedar tree|true cedar +atlas moth|1 +(noun)|Atticus atlas|giant silkworm moth|silkworm moth +atlas mountains|1 +(noun)|Atlas Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +atlas vertebra|1 +(noun)|atlas|cervical vertebra|neck bone +atm|3 +(noun)|standard atmosphere|atmosphere|standard pressure|pressure unit +(noun)|asynchronous transfer mode|ATM|digital communication|data communication +(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine +atmometer|1 +(noun)|evaporometer|measuring instrument|measuring system|measuring device +atmosphere|6 +(noun)|ambiance|ambience|condition|status +(noun)|standard atmosphere|atm|standard pressure|pressure unit +(noun)|air|region|part +(noun)|atmospheric state|weather|weather condition|atmospheric condition +(noun)|gas +(noun)|air|aura|quality +atmospheric|1 +(adj)|atmospherical|region|part +atmospheric condition|1 +(noun)|weather|weather condition|atmospheric phenomenon +atmospheric electricity|1 +(noun)|electrical discharge|atmospheric phenomenon +atmospheric phenomenon|1 +(noun)|physical phenomenon +atmospheric pressure|1 +(noun)|air pressure|gas pressure +atmospheric state|1 +(noun)|atmosphere|weather|weather condition|atmospheric condition +atmospheric static|1 +(noun)|static|atmospherics|noise|interference|disturbance +atmospherical|1 +(adj)|atmospheric|region|part +atmospherics|1 +(noun)|static|atmospheric static|noise|interference|disturbance +atole|1 +(noun)|mush|cornmeal mush +atoll|1 +(noun)|coral reef +atom|2 +(noun)|substance|matter +(noun)|molecule|particle|corpuscle|mote|speck|material|stuff +atom-bomb|1 +(verb)|nuke|bombard|bomb +atom bomb|1 +(noun)|atomic bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon|bomb +atom smasher|1 +(noun)|accelerator|particle accelerator|scientific instrument +atomic|3 +(adj)|substance|matter +(adj)|nuclear |thermonuclear +(adj)|atomlike|minute|microscopic |microscopical|small +atomic bomb|1 +(noun)|atom bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon|bomb +atomic clock|1 +(noun)|timepiece|timekeeper +atomic cocktail|1 +(noun)|medicine|medication|medicament|medicinal drug +atomic energy|1 +(noun)|nuclear energy|energy +atomic energy commission|1 +(noun)|Atomic Energy Commission|AEC|executive agency +atomic explosion|1 +(noun)|nuclear explosion|bomb blast +atomic mass|1 +(noun)|mass +atomic mass unit|1 +(noun)|mass unit +atomic number|1 +(noun)|number +atomic number 1|1 +(noun)|hydrogen|H|chemical element|element|gas +atomic number 10|1 +(noun)|neon|Ne|chemical element|element|noble gas|inert gas|argonon +atomic number 100|1 +(noun)|fermium|Fm|metallic element|metal +atomic number 101|1 +(noun)|mendelevium|Md|Mv|chemical element|element +atomic number 102|1 +(noun)|nobelium|No|chemical element|element +atomic number 103|1 +(noun)|lawrencium|Lw|chemical element|element +atomic number 104|1 +(noun)|rutherfordium|Rf|kurchatovium|Ku|unnilquadium|Unq|element 104|chemical element|element +atomic number 105|1 +(noun)|unnilquintium|unnilpentium|Unp|hahnium|element 105|chemical element|element +atomic number 106|1 +(noun)|unnilhexium|Unh|element 106|chemical element|element +atomic number 107|1 +(noun)|unnilseptium|Uns|element 107|chemical element|element +atomic number 11|1 +(noun)|sodium|Na|metallic element|metal +atomic number 12|1 +(noun)|magnesium|Mg|metallic element|metal +atomic number 13|1 +(noun)|aluminum|aluminium|Al|metallic element|metal +atomic number 14|1 +(noun)|silicon|Si|chemical element|element|semiconductor|semiconducting material +atomic number 15|1 +(noun)|phosphorus|P|chemical element|element +atomic number 16|1 +(noun)|sulfur|S|sulphur|chemical element|element +atomic number 17|1 +(noun)|chlorine|Cl|chemical element|element|gas|halogen +atomic number 18|1 +(noun)|argon|Ar|chemical element|element|noble gas|inert gas|argonon +atomic number 19|1 +(noun)|potassium|K|metallic element|metal +atomic number 2|1 +(noun)|helium|He|chemical element|element|noble gas|inert gas|argonon +atomic number 20|1 +(noun)|calcium|Ca|metallic element|metal +atomic number 21|1 +(noun)|scandium|Sc|metallic element|metal +atomic number 22|1 +(noun)|titanium|Ti|metallic element|metal +atomic number 23|1 +(noun)|vanadium|V|metallic element|metal +atomic number 24|1 +(noun)|chromium|Cr|metallic element|metal +atomic number 25|1 +(noun)|manganese|Mn|metallic element|metal +atomic number 26|1 +(noun)|iron|Fe|metallic element|metal +atomic number 27|1 +(noun)|cobalt|Co|metallic element|metal +atomic number 28|1 +(noun)|nickel|Ni|metallic element|metal +atomic number 29|1 +(noun)|copper|Cu|metallic element|metal|conductor +atomic number 3|1 +(noun)|lithium|Li|metallic element|metal +atomic number 30|1 +(noun)|zinc|Zn|metallic element|metal +atomic number 31|1 +(noun)|gallium|Ga|metallic element|metal +atomic number 32|1 +(noun)|germanium|Ge|chemical element|element|semiconductor|semiconducting material +atomic number 33|1 +(noun)|arsenic|As|chemical element|element +atomic number 34|1 +(noun)|selenium|Se|chemical element|element|antioxidant +atomic number 35|1 +(noun)|bromine|Br|chemical element|element|halogen +atomic number 36|1 +(noun)|krypton|Kr|chemical element|element|noble gas|inert gas|argonon +atomic number 37|1 +(noun)|rubidium|Rb|metallic element|metal +atomic number 38|1 +(noun)|strontium|Sr|metallic element|metal +atomic number 39|1 +(noun)|yttrium|Y|metallic element|metal +atomic number 4|1 +(noun)|beryllium|Be|glucinium|metallic element|metal +atomic number 40|1 +(noun)|zirconium|Zr|metallic element|metal +atomic number 41|1 +(noun)|niobium|Nb|metallic element|metal +atomic number 42|1 +(noun)|molybdenum|Mo|metallic element|metal +atomic number 43|1 +(noun)|technetium|Tc|metallic element|metal +atomic number 44|1 +(noun)|ruthenium|Ru|metallic element|metal +atomic number 45|1 +(noun)|rhodium|Rh|metallic element|metal +atomic number 46|1 +(noun)|palladium|Pd|metallic element|metal +atomic number 47|1 +(noun)|silver|Ag|noble metal|conductor +atomic number 48|1 +(noun)|cadmium|Cd|metallic element|metal +atomic number 49|1 +(noun)|indium|In|metallic element|metal +atomic number 5|1 +(noun)|boron|B|chemical element|element +atomic number 50|1 +(noun)|tin|Sn|metallic element|metal +atomic number 51|1 +(noun)|antimony|Sb|metallic element|metal +atomic number 52|1 +(noun)|tellurium|Te|chemical element|element +atomic number 53|1 +(noun)|iodine|iodin|I|chemical element|element|halogen +atomic number 54|1 +(noun)|xenon|Xe|chemical element|element|noble gas|inert gas|argonon +atomic number 55|1 +(noun)|cesium|caesium|Cs|metallic element|metal +atomic number 56|1 +(noun)|barium|Ba|metallic element|metal +atomic number 57|1 +(noun)|lanthanum|La|metallic element|metal +atomic number 58|1 +(noun)|cerium|Ce|metallic element|metal +atomic number 59|1 +(noun)|praseodymium|Pr|metallic element|metal +atomic number 6|1 +(noun)|carbon|C|chemical element|element +atomic number 60|1 +(noun)|neodymium|Nd|metallic element|metal +atomic number 61|1 +(noun)|promethium|Pm|metallic element|metal +atomic number 62|1 +(noun)|samarium|Sm|metallic element|metal +atomic number 63|1 +(noun)|europium|Eu|metallic element|metal +atomic number 64|1 +(noun)|gadolinium|Gd|metallic element|metal +atomic number 65|1 +(noun)|terbium|Tb|metallic element|metal +atomic number 66|1 +(noun)|dysprosium|Dy|metallic element|metal +atomic number 67|1 +(noun)|holmium|Ho|metallic element|metal +atomic number 68|1 +(noun)|erbium|Er|metallic element|metal +atomic number 69|1 +(noun)|thulium|Tm|metallic element|metal +atomic number 7|1 +(noun)|nitrogen|N|chemical element|element|gas +atomic number 70|1 +(noun)|ytterbium|Yb|metallic element|metal +atomic number 71|1 +(noun)|lutetium|lutecium|Lu|metallic element|metal +atomic number 72|1 +(noun)|hafnium|Hf|metallic element|metal +atomic number 73|1 +(noun)|tantalum|Ta|metallic element|metal +atomic number 74|1 +(noun)|tungsten|wolfram|W|metallic element|metal +atomic number 75|1 +(noun)|rhenium|Re|metallic element|metal +atomic number 76|1 +(noun)|osmium|Os|metallic element|metal +atomic number 77|1 +(noun)|iridium|Ir|metallic element|metal +atomic number 78|1 +(noun)|platinum|Pt|noble metal +atomic number 79|1 +(noun)|gold|Au|noble metal +atomic number 8|1 +(noun)|oxygen|O|chemical element|element|gas +atomic number 80|1 +(noun)|mercury|quicksilver|hydrargyrum|Hg|metallic element|metal +atomic number 81|1 +(noun)|thallium|Tl|metallic element|metal +atomic number 82|1 +(noun)|lead|Pb|metallic element|metal +atomic number 83|1 +(noun)|bismuth|Bi|metallic element|metal +atomic number 84|1 +(noun)|polonium|Po|metallic element|metal +atomic number 85|1 +(noun)|astatine|At|chemical element|element|halogen +atomic number 86|1 +(noun)|radon|Rn|chemical element|element|noble gas|inert gas|argonon +atomic number 87|1 +(noun)|francium|Fr|metallic element|metal +atomic number 88|1 +(noun)|radium|Ra|metallic element|metal +atomic number 89|1 +(noun)|actinium|Ac|chemical element|element +atomic number 9|1 +(noun)|fluorine|F|chemical element|element|gas|halogen +atomic number 90|1 +(noun)|thorium|Th|metallic element|metal +atomic number 91|1 +(noun)|protactinium|protoactinium|Pa|metallic element|metal +atomic number 92|1 +(noun)|uranium|U|metallic element|metal +atomic number 93|1 +(noun)|neptunium|Np|metallic element|metal +atomic number 94|1 +(noun)|plutonium|Pu|chemical element|element +atomic number 95|1 +(noun)|americium|Am|metallic element|metal +atomic number 96|1 +(noun)|curium|Cm|metallic element|metal +atomic number 97|1 +(noun)|berkelium|Bk|metallic element|metal +atomic number 98|1 +(noun)|californium|Cf|metallic element|metal +atomic number 99|1 +(noun)|einsteinium|Es|E|metallic element|metal +atomic physics|1 +(noun)|nuclear physics|nucleonics|physics|physical science|natural philosophy +atomic pile|1 +(noun)|atomic reactor|pile|chain reactor|nuclear reactor|reactor +atomic power|1 +(noun)|nuclear power|atomic energy|nuclear energy +atomic reactor|1 +(noun)|atomic pile|pile|chain reactor|nuclear reactor|reactor +atomic spectrum|1 +(noun)|spectrum +atomic theory|2 +(noun)|scientific theory +(noun)|atomism|atomist theory|atomistic theory|theory +atomic warhead|1 +(noun)|nuclear warhead|thermonuclear warhead|nuke|warhead|payload|load +atomic weight|1 +(noun)|relative atomic mass|mass +atomisation|2 +(noun)|atomization|fragmentation|division +(noun)|atomization|annihilation|obliteration +atomise|3 +(verb)|atomize|spray +(verb)|nuke|atomize|zap|bombard|bomb +(verb)|atomize|break up|fragment|fragmentize|fragmentise +atomiser|1 +(noun)|atomizer|spray|sprayer|dispenser +atomism|2 +(noun)|scientific theory +(noun)|atomic theory|atomist theory|atomistic theory|theory +atomist theory|1 +(noun)|atomism|atomic theory|atomistic theory|theory +atomistic|1 +(adj)|atomistic |atomistical +atomistic theory|1 +(noun)|atomism|atomic theory|atomist theory|theory +atomistical|1 +(adj)|atomistic +atomization|2 +(noun)|atomisation|fragmentation|division +(noun)|atomisation|annihilation|obliteration +atomize|3 +(verb)|atomise|spray +(verb)|nuke|atomise|zap|bombard|bomb +(verb)|atomise|break up|fragment|fragmentize|fragmentise +atomizer|1 +(noun)|atomiser|spray|sprayer|dispenser +atomlike|1 +(adj)|atomic|minute|microscopic |microscopical|small +atonal|1 +(adj)|atonal |unkeyed +atonalism|1 +(noun)|atonality|musical notation +atonalistic|1 +(adj)|musical notation +atonality|1 +(noun)|atonalism|musical notation +atone|2 +(verb)|expiate|aby|abye|right|compensate|redress|correct +(verb)|repent +atonement|2 +(noun)|expiation|satisfaction|damages|amends|indemnity|indemnification|restitution|redress +(noun)|expiation|propitiation|redemption|salvation +atonia|1 +(noun)|atonicity|atony|amyotonia|condition|status +atonic|2 +(adj)|condition|status +(adj)|atonic |unaccented +atonicity|1 +(noun)|atony|atonia|amyotonia|condition|status +atony|1 +(noun)|atonicity|atonia|amyotonia|condition|status +atopic allergy|1 +(noun)|immediate allergy|atopy|type I allergic reaction|allergy|allergic reaction +atopic dermatitis|1 +(noun)|atopic eczema|dermatitis +atopic eczema|1 +(noun)|atopic dermatitis|dermatitis +atopognosia|1 +(noun)|atopognosis|nervous disorder|neurological disorder|neurological disease +atopognosis|1 +(noun)|atopognosia|nervous disorder|neurological disorder|neurological disease +atopy|1 +(noun)|immediate allergy|atopic allergy|type I allergic reaction|allergy|allergic reaction +atorvastatin|1 +(noun)|Lipitor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +atoxic|1 +(adj)|nontoxic |antitoxic|harmless|nonpoisonous|nonvenomous|harmless +atp|1 +(noun)|adenosine triphosphate|ATP|nucleotide +atrabilious|1 +(adj)|bilious|dyspeptic|liverish|ill-natured +atrazine|1 +(noun)|herbicide|weedkiller|weed killer +atresia|1 +(noun)|abnormality|abnormalcy|abnormal condition +atrial|1 +(adj)|chamber +atrial artery|1 +(noun)|coronary artery|arteria coronaria +atrial auricle|1 +(noun)|auricle|auricula atrii|pouch|pocket +atrial fibrillation|1 +(noun)|fibrillation|cardiac arrhythmia|arrhythmia +atrial septal defect|1 +(noun)|septal defect +atrichornis|1 +(noun)|Atrichornis|genus Atrichornis|bird genus +atrichornithidae|1 +(noun)|Atrichornithidae|family Atrichornithidae|bird family +atrioventricular|1 +(adj)|auriculoventricular|chamber|chamber +atrioventricular block|1 +(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|cardiac arrhythmia|arrhythmia +atrioventricular bundle|1 +(noun)|bundle of His|atrioventricular trunk|truncus atrioventricularis|cardiac muscle|heart muscle +atrioventricular nodal rhythm|1 +(noun)|nodal rhythm|cardiac rhythm|heart rhythm +atrioventricular node|1 +(noun)|cardiac muscle|heart muscle +atrioventricular trunk|1 +(noun)|atrioventricular bundle|bundle of His|truncus atrioventricularis|cardiac muscle|heart muscle +atrioventricular valve|1 +(noun)|heart valve|cardiac valve +atrip|1 +(adj)|aweigh|free +atriplex|1 +(noun)|Atriplex|genus Atriplex|caryophylloid dicot genus +atriplex hortensis|1 +(noun)|garden orache|mountain spinach|Atriplex hortensis|orach|orache +atriplex hymenelytra|1 +(noun)|desert holly|Atriplex hymenelytra|saltbush +atriplex lentiformis|1 +(noun)|quail bush|quail brush|white thistle|Atriplex lentiformis|saltbush +atriplex mexicana|1 +(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot +atrium|2 +(noun)|chamber +(noun)|court|courtyard +atrium cordis|1 +(noun)|atrium of the heart|atrium +atrium dextrum|1 +(noun)|right atrium|right atrium of the heart|atrium cordis|atrium of the heart +atrium of the heart|1 +(noun)|atrium cordis|atrium +atrium sinistrum|1 +(noun)|left atrium|left atrium of the heart|atrium cordis|atrium of the heart +atrocious|3 +(adj)|flagitious|grievous|heinous|monstrous|evil |wicked +(adj)|abominable|awful|dreadful|painful|terrible|unspeakable|bad +(adj)|frightful|horrifying|horrible|ugly|alarming +atrociously|2 +(adv)|terribly|awfully|abominably|abysmally|rottenly +(adv)|outrageously +atrociousness|1 +(noun)|atrocity|barbarity|barbarousness|heinousness|inhumaneness|inhumanity +atrocity|2 +(noun)|atrociousness|barbarity|barbarousness|heinousness|inhumaneness|inhumanity +(noun)|inhumanity|cruelty|inhuman treatment +atromid-s|1 +(noun)|clofibrate|Atromid-S|medicine|medication|medicament|medicinal drug +atropa|1 +(noun)|Atropa|genus Atropa|asterid dicot genus +atropa belladonna|1 +(noun)|belladonna|deadly nightshade|Atropa belladonna|herb|herbaceous plant +atrophic|1 +(adj)|symptom +atrophic arthritis|1 +(noun)|rheumatoid arthritis|rheumatism|arthritis|autoimmune disease|autoimmune disorder +atrophied|1 +(adj)|atrophied |wasted|diminished +atrophy|3 +(noun)|wasting|wasting away|symptom +(noun)|withering|weakening +(verb)|shrivel|shrivel up|shrink|wither +atropidae|1 +(noun)|Atropidae|family Atropidae|arthropod family +atropine|1 +(noun)|alkaloid|antispasmodic|spasmolytic|antispasmodic agent|poison|poisonous substance|mydriatic|mydriatic drug|antidote|counterpoison +atropos|1 +(noun)|Atropos|Greek deity +atrovent|1 +(noun)|ipratropium bromide|Atrovent|bronchodilator +atsugewi|2 +(noun)|Atsugewi|Hokan|Hoka +(noun)|Atsugewi|Shastan +attacapa|1 +(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +attacapan|2 +(noun)|Atakapa|Attacapan|Plains Indian|Buffalo Indian +(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +attach|5 +(verb)|connect|link|tie|link up +(verb)|touch|adjoin|meet|contact|attach to +(verb)|join|conjoin|attach to +(verb)|bind|tie|bond|relate +(verb)|impound|sequester|confiscate|seize|take +attach to|2 +(verb)|accompany|come with|go with +(verb)|inhere in|include +attachable|1 +(adj)|attachable |bindable|bondable|clip-on|tie-on +attache|2 +(noun)|specialist|specializer|specialiser +(noun)|attache case|briefcase +attache case|1 +(noun)|attache|briefcase +attached|5 +(adj)|connected +(adj)|affiliated|connected|related |related to +(adj)|attached +(adj)|sessile +(adj)|attached |committed|affianced|bespoken|betrothed|engaged|pledged|involved|involved with|intended|loving +attachment|7 +(noun)|fond regard|affection|affectionateness|fondness|tenderness|heart|warmheartedness +(noun)|addition|add-on|improver +(noun)|writ|judicial writ +(noun)|bond|connection|connexion|connector|connecter|connective +(noun)|adherence|adhesion|support +(noun)|affixation|combination|combining|compounding +(noun)|fastening|joining|connection|connexion +attack|15 +(noun)|onslaught|onset|onrush|operation|military operation +(noun)|affliction +(noun)|fire|flak|flack|blast|criticism|unfavorable judgment +(noun)|attempt|crime|law-breaking +(noun)|turn|play +(noun)|degeneration|devolution +(noun)|approach|plan of attack|conceptualization|conceptualisation|formulation +(noun)|tone-beginning|beginning|start|commencement +(noun)|criticism|unfavorable judgment +(verb)|assail|fight|struggle +(verb)|round|assail|lash out|snipe|assault|knock|criticize|criticise|pick apart +(verb)|aggress|act|move +(verb)|assail|assault|set on +(verb)|get down|begin|get|start out|start|set about|set out|commence +(verb)|affect +attack aircraft|1 +(noun)|fighter|fighter aircraft|airplane|aeroplane|plane|warplane|military plane +attack aircraft carrier|1 +(noun)|aircraft carrier|carrier|flattop|warship|war vessel|combat ship +attack dog|1 +(noun)|watchdog|guard dog +attack submarine|1 +(noun)|submarine|pigboat|sub|U-boat +attacker|1 +(noun)|aggressor|assailant|assaulter|wrongdoer|offender +attacking|1 +(adj)|assaultive|offensive +attain|4 +(verb)|achieve|accomplish|reach|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|reach|hit|arrive|get|come +(verb)|fall upon|strike|come upon|light upon|chance upon|come across|chance on|happen upon|discover|find|regain +(verb)|reach|make|hit|arrive at|gain +attainability|1 +(noun)|achievability|attainableness|possibility|possibleness +attainable|1 +(adj)|come-at-able|gettable|getable|possible +attainableness|1 +(noun)|achievability|attainability|possibility|possibleness +attainder|1 +(noun)|civil death|cancellation +attained|1 +(adj)|earned +attainment|3 +(noun)|accomplishment|achievement +(noun)|arrival|reaching +(noun)|skill|accomplishment|acquirement|acquisition|ability|power +attaint|2 +(verb)|dishonor|disgrace|dishonour|shame +(verb)|condemn +attalea|1 +(noun)|Attalea|genus Attalea|monocot genus|liliopsid genus +attalea funifera|1 +(noun)|piassava palm|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm +attar|1 +(noun)|atar|athar|ottar|essential oil|volatile oil +attar of roses|1 +(noun)|rose oil|attar|atar|athar|ottar +attemper|1 +(verb)|modify +attempt|4 +(noun)|effort|endeavor|endeavour|try|activity +(noun)|attack|crime|law-breaking +(verb)|try|seek|essay|assay|act|move +(verb)|undertake|set about|initiate|pioneer +attemptable|1 +(adj)|possible +attempted|1 +(adj)|unsuccessful +attempter|1 +(noun)|trier|essayer|person|individual|someone|somebody|mortal|human|soul +attend|5 +(verb)|go to|be +(verb)|take care|look|see|care|give care +(verb)|attach to|accompany|come with|go with +(verb)|serve|attend to|wait on|assist|help|assist|aid +(verb)|hang|advert|pay heed|give ear|listen +attend to|2 +(verb)|take to heart|mind|bear in mind +(verb)|serve|wait on|attend|assist|help|assist|aid +attendance|1 +(noun)|attending|group action +attendance check|1 +(noun)|roll call +attendant|3 +(adj)|accompanying|concomitant|incidental|incidental to|related |related to +(noun)|attender|tender|assistant|helper|help|supporter +(noun)|attender|attendee|meeter|participant +attended|2 +(adj)|accompanied +(adj)|tended to|cared-for +attendee|1 +(noun)|attendant|attender|meeter|participant +attender|3 +(noun)|hearer|listener|auditor|perceiver|observer|beholder +(noun)|attendant|tender|assistant|helper|help|supporter +(noun)|attendant|attendee|meeter|participant +attending|4 +(adj)|in attendance|present +(adj)|ministering|ministrant|helpful +(noun)|attention|basic cognitive process +(noun)|attendance|group action +attention|6 +(noun)|attending|basic cognitive process +(noun)|care|aid|tending|work +(noun)|attraction|attractor|attracter|attractive feature|magnet +(noun)|courtesy +(noun)|faculty|mental faculty|module +(noun)|stance +attention-getting|2 +(adj)|eye-catching|conspicuous |obvious +(adj)|catchy|appealing +attention deficit disorder|1 +(noun)|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome +attention deficit hyperactivity disorder|1 +(noun)|attention deficit disorder|ADD|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome +attention span|1 +(noun)|span +attentional|1 +(adj)|basic cognitive process +attentive|2 +(adj)|attentive |absorbed|engrossed|enwrapped|intent|rapt|wrapped|advertent|heedful|listening|observant|solicitous|oversolicitous|concerned +(adj)|heedful |thoughtful +attentively|1 +(adv)|with attention|paying attention +attentiveness|3 +(noun)|heed|regard|paying attention|attention|attending +(noun)|consideration|considerateness|thoughtfulness +(noun)|trait +attenuate|3 +(adj)|attenuated|faded|weakened|decreased |reduced +(verb)|rarefy|weaken +(verb)|weaken +attenuated|2 +(adj)|decreased |reduced +(adj)|attenuate|faded|weakened|decreased |reduced +attenuation|2 +(noun)|fading|weakening +(noun)|weakness +attenuator|1 +(noun)|electrical device +attest|4 +(verb)|certify|manifest|demonstrate|evidence|testify|bear witness|prove|evidence|show +(verb)|affirm|verify|assert|avow|aver|swan|swear +(verb)|testify|take the stand|bear witness|declare +(verb)|show +attestant|2 +(noun)|witness|attestor|attestator|signer|signatory +(noun)|attester|witness|witnesser|informant +attestation|2 +(noun)|testimony +(noun)|evidence +attestation report|1 +(noun)|attestation service|consulting service +attestation service|1 +(noun)|attestation report|consulting service +attestator|1 +(noun)|witness|attestant|attestor|signer|signatory +attested|1 +(adj)|authenticated|documented|genuine |echt +attester|1 +(noun)|attestant|witness|witnesser|informant +attestor|1 +(noun)|witness|attestant|attestator|signer|signatory +attic|5 +(adj)|Attic|district|territory|territorial dominion|dominion +(noun)|loft|garret|floor|level|storey|story +(noun)|Attic|Classical Greek|Ancient Greek +(noun)|bean|bonce|noodle|noggin|dome|human head +(noun)|wall +attic fan|1 +(noun)|exhaust fan +attica|1 +(noun)|Attica|district|territory|territorial dominion|dominion +atticus|1 +(noun)|Atticus|genus Atticus|arthropod genus +atticus atlas|1 +(noun)|atlas moth|Atticus atlas|giant silkworm moth|silkworm moth +attila|1 +(noun)|Attila|Scourge of God|Scourge of the Gods|king|male monarch +attire|2 +(noun)|garb|dress|clothing|article of clothing|vesture|wear +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|get up|rig out|tog up|tog out|overdress|dress|get dressed +attired|1 +(adj)|appareled|dressed|garbed|garmented|habilimented|robed|clothed |clad +attitude|4 +(noun)|mental attitude|cognition|knowledge|noesis +(noun)|position|posture|bodily property +(noun)|affectation|mannerism|pose|affectedness +(noun)|orientation +attitudinise|1 +(verb)|attitudinize|pose|posture +attitudinize|1 +(verb)|attitudinise|pose|posture +attlee|1 +(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman|solon|national leader +attorn|1 +(verb)|admit|acknowledge +attorney|1 +(noun)|lawyer|professional|professional person +attorney-client privilege|1 +(noun)|privilege +attorney-client relation|1 +(noun)|lawyer-client relation|fiduciary relation +attorney general|3 +(noun)|lawman|law officer|peace officer +(noun)|Attorney General|United States Attorney General|US Attorney General|secretary +(noun)|Attorney General|Attorney General of the United States|secretaryship +attorney general of the united states|1 +(noun)|Attorney General|Attorney General of the United States|secretaryship +attorneyship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +attosecond|1 +(noun)|time unit|unit of time +attract|3 +(verb)|pull|pull in|draw|draw in|pull|draw|force +(verb)|pull +(verb)|appeal +attractable|1 +(adj)|magnetic |magnetized|magnetised +attracter|3 +(noun)|drawing card|draw|attraction|attractor|entertainer +(noun)|attractor|point +(noun)|attraction|attractor|attractive feature|magnet|feature|characteristic +attraction|5 +(noun)|attractive force|force +(noun)|show +(noun)|attractiveness|quality +(noun)|attractor|attracter|attractive feature|magnet|feature|characteristic +(noun)|drawing card|draw|attractor|attracter|entertainer +attractive|3 +(adj)|attractive |bewitching|captivating|enchanting|enthralling|entrancing|fascinating|charismatic|magnetic|cunning|cute|dinky|engaging|piquant|fetching|taking|winning|hypnotic|mesmeric|mesmerizing|spellbinding|irresistible|personable|photogenic|prepossessing|winsome|beautiful|inviting|pleasing|seductive +(adj)|appealing +(adj)|attractive |magnetic +attractive feature|1 +(noun)|attraction|attractor|attracter|magnet|feature|characteristic +attractive force|1 +(noun)|attraction|force +attractive nuisance|1 +(noun)|nuisance +attractively|1 +(adv)|beautifully +attractiveness|2 +(noun)|attraction|quality +(noun)|beauty +attractor|3 +(noun)|drawing card|draw|attraction|attracter|entertainer +(noun)|attracter|point +(noun)|attraction|attracter|attractive feature|magnet|feature|characteristic +attributable|1 +(adj)|attributable |ascribable|due to|imputable|referable|credited|traceable +attribute|4 +(noun)|property|dimension|concept|conception|construct +(noun)|abstraction +(verb)|impute|ascribe|assign|judge +(verb)|assign|judge +attribution|2 +(noun)|ascription|classification|categorization|categorisation|sorting +(noun)|ascription|classification|categorization|categorisation|sorting +attributive|1 +(adj)|attributive |prenominal|attributive genitive +attributive genitive|1 +(adj)|attributive |prenominal +attrited|1 +(adj)|worn +attrition|5 +(noun)|abrasion|corrasion|detrition|erosion|eroding|eating away|wearing|wearing away +(noun)|grinding|abrasion|detrition|friction|rubbing +(noun)|contrition|contriteness|sorrow|regret|rue|ruefulness +(noun)|decrease|lessening|drop-off +(noun)|friction|detrition|rubbing +attrition rate|1 +(noun)|rate of attrition|rate +attritional|1 +(adj)|decrease|lessening|drop-off +attune|1 +(verb)|adjust|set|correct +attuned|2 +(adj)|tuned|adjusted +(adj)|keyed|tuned|adjusted +atypical|3 +(adj)|atypical |untypical|unrepresentative|abnormal|uncharacteristic|uncharacteristic of +(adj)|irregular|abnormal +(adj)|uncharacteristic |uncharacteristic of +atypical pneumonia|1 +(noun)|primary atypical pneumonia|mycoplasmal pneumonia|respiratory disease|respiratory illness|respiratory disorder +atypicality|1 +(noun)|untypicality|abnormality|abnormalcy|abnormal condition +atypically|1 +(adv)|untypically +au|2 +(noun)|gold|Au|atomic number 79|noble metal +(noun)|Astronomical Unit|AU|astronomy unit +au courant|1 +(adj)|abreast of|au fait|up on|informed +au fait|1 +(adj)|abreast of|au courant|up on|informed +au fond|1 +(adv)|basically|fundamentally|essentially|in essence +au gratin|1 +(adj)|cooked +au jus|1 +(adj)|juicy +au naturel|1 +(adj)|bare|naked|nude|unclothed +au pair|1 +(noun)|foreigner|alien|noncitizen|outlander +au pair girl|1 +(noun)|au pair +au revoir|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +aubergine|2 +(noun)|eggplant|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb|herbaceous plant +(noun)|eggplant|mad apple|solanaceous vegetable +auburn|1 +(adj)|reddish-brown|chromatic |achromatic +auc|1 +(noun)|United Self-Defense Force of Colombia|United Self-Defense Group of Colombia|Autodefensas Unidas de Colombia|AUC|terrorist organization|terrorist group|foreign terrorist organization|FTO +auchincloss|1 +(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer|author +auckland|1 +(noun)|Auckland|city|metropolis|urban center|port +auction|3 +(noun)|auction bridge|bridge +(noun)|auction sale|vendue|sale +(verb)|auction off|auctioneer|sell +auction block|1 +(noun)|block|platform +auction bridge|1 +(noun)|auction|bridge +auction house|1 +(noun)|firm|house|business firm +auction off|1 +(verb)|auction|auctioneer|sell +auction pitch|1 +(noun)|pitch|all fours|high-low-jack +auction sale|1 +(noun)|auction|vendue|sale +auctioneer|2 +(noun)|agent|factor|broker +(verb)|auction|auction off|sell +auctorial|1 +(adj)|authorial|communicator +aucuba|1 +(noun)|Aucuba|genus Aucuba|rosid dicot genus +audacious|3 +(adj)|brave|dauntless|fearless|intrepid|unfearing|bold +(adj)|barefaced|bodacious|bold-faced|brassy|brazen|brazen-faced|insolent|unashamed +(adj)|daring|venturesome|venturous|adventurous |adventuresome +audaciousness|2 +(noun)|audacity|temerity|boldness|daring|hardihood +(noun)|audacity|boldness|nerve|brass|face|cheek +audacity|2 +(noun)|audaciousness|temerity|boldness|daring|hardihood +(noun)|audaciousness|boldness|nerve|brass|face|cheek +audad|1 +(noun)|aoudad|arui|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep +auden|1 +(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet +audenesque|1 +(adj)|Audenesque|poet +audibility|1 +(noun)|audibleness|perceptibility +audible|1 +(adj)|audible |hearable|sonic|sounding|loud|perceptible +audibleness|1 +(noun)|audibility|perceptibility +audience|4 +(noun)|gathering|assemblage +(noun)|multitude|masses|mass|hoi polloi|people +(noun)|hearing|opportunity|chance +(noun)|consultation|interview|conference|group discussion +audile|2 +(adj)|auditory|auditive|modality|sense modality|sensory system|exteroception +(noun)|perceiver|observer|beholder +audio|3 +(noun)|sound|auditory communication +(noun)|audio frequency|frequency|frequence|oftenness +(noun)|component|constituent|element +audio-lingual|1 +(adj)|communication +audio amplifier|1 +(noun)|amplifier +audio cd|1 +(noun)|audio CD|audio compact disc|compact disk|compact disc|CD +audio compact disc|1 +(noun)|audio CD|compact disk|compact disc|CD +audio frequency|1 +(noun)|audio|frequency|frequence|oftenness +audio lingual acquisition|1 +(noun)|language learning +audio recording|1 +(noun)|sound recording|recording +audio system|1 +(noun)|sound system|electronic equipment|system +audiocassette|1 +(noun)|cassette +audiogram|1 +(noun)|representation +audiology|1 +(noun)|audiometry|otology|otolaryngology +audiometer|1 +(noun)|sonometer|measuring instrument|measuring system|measuring device +audiometric|1 +(adj)|measurement|measuring|measure|mensuration +audiometry|2 +(noun)|audiology|otology|otolaryngology +(noun)|measurement|measuring|measure|mensuration +audiotape|2 +(noun)|tape|tape recording|taping|sound recording|audio recording +(noun)|magnetic tape|mag tape|tape +audiovisual|2 +(adj)|teaching aid +(noun)|audiovisual aid|teaching aid +audiovisual aid|1 +(noun)|audiovisual|teaching aid +audit|4 +(noun)|audited account|accounting|accounting system|method of accounting +(noun)|examination|scrutiny +(verb)|scrutinize|scrutinise|inspect|analyze|analyse|study|examine|canvass|canvas +(verb)|learn|study|read|take +audit program|1 +(noun)|audit programme|plan|program|programme +audit programme|1 +(noun)|audit program|plan|program|programme +audited account|1 +(noun)|audit|accounting|accounting system|method of accounting +audition|2 +(noun)|tryout|test|trial|run +(verb)|try out|perform +auditive|1 +(adj)|auditory|audile|modality|sense modality|sensory system|exteroception +auditor|3 +(noun)|hearer|listener|attender|perceiver|observer|beholder +(noun)|student|pupil|educatee +(noun)|accountant|comptroller|controller +auditorium|1 +(noun)|area +auditory|1 +(adj)|audile|auditive|modality|sense modality|sensory system|exteroception +auditory agnosia|1 +(noun)|agnosia +auditory aphasia|1 +(noun)|acoustic aphasia|word deafness|aphasia +auditory apparatus|1 +(noun)|apparatus +auditory area|1 +(noun)|auditory cortex|cortical area|cortical region +auditory canal|1 +(noun)|auditory meatus|acoustic meatus|ear canal|external auditory canal|meatus +auditory center|1 +(noun)|center|centre|nerve center|nerve centre +auditory communication|1 +(noun)|communication +auditory cortex|1 +(noun)|auditory area|cortical area|cortical region +auditory hallucination|1 +(noun)|acousma|hallucination +auditory hyperesthesia|1 +(noun)|hyperacusis|hyperacusia|hearing impairment|hearing disorder +auditory image|1 +(noun)|image|mental image +auditory meatus|1 +(noun)|acoustic meatus|ear canal|auditory canal|external auditory canal|meatus +auditory nerve|1 +(noun)|acoustic nerve|vestibulocochlear nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve +auditory ossicle|1 +(noun)|ossicle|bonelet|ossiculum +auditory perception|1 +(noun)|sound perception|perception +auditory sensation|1 +(noun)|sound|sensation|sense experience|sense impression|sense datum +auditory system|1 +(noun)|sensory system +auditory tube|1 +(noun)|Eustachian tube|salpinx +audubon|1 +(noun)|Audubon|John James Audubon|ornithologist|bird watcher|artist|creative person +audubon's caracara|1 +(noun)|Audubon's caracara|Polyborus cheriway audubonii|caracara +audubon's warbler|1 +(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler|wood warbler +audubon warbler|1 +(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler|wood warbler +auf wiedersehen|1 +(noun)|adieu|adios|arrivederci|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +aug|1 +(noun)|August|Aug|Gregorian calendar month +augean|1 +(adj)|Augean|corrupt +augean stables|1 +(noun)|Augean stables|stable|stalls|horse barn +augeas|1 +(noun)|Augeas|mythical being +augend|1 +(noun)|number +auger|2 +(noun)|plumber's snake|snake|hand tool +(noun)|gimlet|screw auger|wimble|drill +aught|1 +(noun)|nothing|nil|nix|nada|null|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +augite|1 +(noun)|mineral +augitic|1 +(adj)|mineral +augment|2 +(verb)|increase +(verb)|grow +augmentation|3 +(noun)|increase +(noun)|statement +(noun)|increase|step-up +augmentative|2 +(adj)|increasing +(adj)|enhancive|intensifying +augmented|1 +(adj)|increased +augmentin|1 +(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +augsburg confession|1 +(noun)|Augsburg Confession|confession +augur|3 +(noun)|auspex|prophet|oracle|seer|vaticinator +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +(verb)|predict|foretell|prognosticate|call|forebode|anticipate|promise +augury|1 +(noun)|sign|foretoken|preindication|experience +august|3 +(adj)|grand|lordly|noble +(adj)|revered|venerable|honorable |honourable +(noun)|August|Aug|Gregorian calendar month +august 1|1 +(noun)|Lammas|Lammas Day|August 1|quarter day +august 15|1 +(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation +august 6|1 +(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day +august f. mobius|1 +(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician +august ferdinand mobius|1 +(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician +august friedrich leopold weismann|1 +(noun)|Weismann|August Friedrich Leopold Weismann|geneticist +august plum|1 +(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum|wild plum tree +august strindberg|1 +(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist|playwright|writer|author +august wilhelm von hoffmann|1 +(noun)|Hoffmann|August Wilhelm von Hoffmann|chemist +augusta|2 +(noun)|Augusta|capital of Maine|state capital +(noun)|Augusta|city|metropolis|urban center +augustan|1 +(adj)|Augustan|statesman|solon|national leader|Roman Emperor|Emperor of Rome +auguste comte|1 +(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher +auguste rodin|1 +(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor|sculpturer|carver|statue maker +augustin eugene scribe|1 +(noun)|Scribe|Augustin Eugene Scribe|dramatist|playwright +augustin jean fresnel|1 +(noun)|Fresnel|Augustin Jean Fresnel|physicist +augustine|1 +(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +augustine of hippo|1 +(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +augustinian|1 +(noun)|Augustinian|friar|mendicant +augustinian canons|1 +(noun)|Augustinian Canons|Augustinian order +augustinian hermits|1 +(noun)|Augustinian Hermits|Augustinian order +augustinian order|1 +(noun)|Augustinian order|order|monastic order +augustus|1 +(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman|solon|national leader|Roman Emperor|Emperor of Rome +augustus welby northmore pugin|1 +(noun)|Pugin|Augustus Welby Northmore Pugin|architect|designer +auk|1 +(noun)|seabird|sea bird|seafowl +auklet|1 +(noun)|auk +aulacorhyncus|1 +(noun)|Aulacorhyncus|genus Aulacorhyncus|bird genus +auld|1 +(adj)|old +auld langsyne|1 +(noun)|langsyne|old times|the good old days|past|past times|yesteryear|yore +aulostomidae|1 +(noun)|Aulostomidae|family Aulostomidae|fish family +aulostomus|1 +(noun)|Aulostomus|genus Aulostomus|fish genus +aulostomus maculatus|1 +(noun)|trumpetfish|Aulostomus maculatus|teleost fish|teleost|teleostan +aum|1 +(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization|terrorist group|foreign terrorist organization|FTO +aum shinrikyo|1 +(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization|terrorist group|foreign terrorist organization|FTO +aunt|1 +(noun)|auntie|aunty|kinswoman +auntie|1 +(noun)|aunt|aunty|kinswoman +aunty|1 +(noun)|aunt|auntie|kinswoman +aura|3 +(noun)|symptom +(noun)|aureole|halo|nimbus|glory|gloriole|light|lightness +(noun)|air|atmosphere|quality +aural|2 +(adj)|sense organ|sensory receptor|receptor +(adj)|quality +aurar|2 +(noun)|eyrir|Icelandic monetary unit +(noun)|eyrir|Icelandic monetary unit +aureate|2 +(adj)|florid|flamboyant|showy|fancy +(adj)|gilded|gilt|gold|golden|chromatic +aurelius|1 +(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor|Emperor of Rome +aureolaria|1 +(noun)|Aureolaria|genus Aureolaria|asterid dicot genus +aureolaria pedicularia|1 +(noun)|false foxglove|Aureolaria pedicularia|Gerardia pedicularia|herb|herbaceous plant +aureolaria virginica|1 +(noun)|false foxglove|Aureolaria virginica|Gerardia virginica|herb|herbaceous plant +aureole|2 +(noun)|corona|radiance|glow|glowing +(noun)|aura|halo|nimbus|glory|gloriole|light|lightness +aureomycin|1 +(noun)|chlortetracycline|Aureomycin|antibiotic|antibiotic drug +auric|1 +(adj)|aurous|noble metal +auricle|2 +(noun)|atrial auricle|auricula atrii|pouch|pocket +(noun)|pinna|ear|cartilaginous structure +auricula|2 +(noun)|bear's ear|Primula auricula|primrose|primula +(noun)|auricular appendage|auricular appendix|pouch|pocket +auricula atrii|1 +(noun)|auricle|atrial auricle|pouch|pocket +auricular|3 +(adj)|otic|cartilaginous structure +(adj)|cartilaginous structure +(adj)|pouch|pocket +auricular appendage|1 +(noun)|auricula|auricular appendix|pouch|pocket +auricular appendix|1 +(noun)|auricula|auricular appendage|pouch|pocket +auricular artery|1 +(noun)|arteria auricularis|artery|arteria|arterial blood vessel +auricular point|1 +(noun)|auriculare|craniometric point +auricular vein|1 +(noun)|vena auricularis|vein|vena|venous blood vessel +auriculare|1 +(noun)|auricular point|craniometric point +auricularia|1 +(noun)|Auricularia|genus Auricularia|fungus genus +auricularia auricula|1 +(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus +auriculariaceae|1 +(noun)|Auriculariaceae|family Auriculariaceae|fungus family +auriculariales|1 +(noun)|Auriculariales|order Auriculariales|fungus order +auriculate|1 +(adj)|auriculated|eared +auriculated|1 +(adj)|auriculate|eared +auriculoventricular|1 +(adj)|atrioventricular|pouch|pocket|chamber +auriferous|1 +(adj)|gold-bearing|metallic +auriform|1 +(adj)|ear-shaped|rounded +aurify|2 +(verb)|transform|transmute|metamorphose +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +auriga|1 +(noun)|Auriga|Charioteer|constellation +auriparus|1 +(noun)|Auriparus|genus Auriparus|bird genus +auriparus flaviceps|1 +(noun)|verdin|Auriparus flaviceps|titmouse|tit +aurochs|2 +(noun)|wisent|Bison bonasus|bison +(noun)|urus|Bos primigenius|ox|wild ox +aurora|3 +(noun)|dawn|dawning|morning|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +(noun)|atmospheric phenomenon +(noun)|Aurora|Roman deity +aurora australis|1 +(noun)|southern lights|aurora +aurora borealis|1 +(noun)|northern lights|aurora +auroral|2 +(adj)|atmospheric phenomenon +(adj)|aurorean|hour|time of day +aurorean|1 +(adj)|auroral|hour|time of day +aurous|1 +(adj)|auric|noble metal +auschwitz|1 +(noun)|Auschwitz|concentration camp|stockade +auscultate|1 +(verb)|examine|see +auscultation|1 +(noun)|listening|hearing|diagnostic procedure|diagnostic technique +auscultatory|1 +(adj)|listening|hearing|diagnostic procedure|diagnostic technique +auspex|1 +(noun)|augur|prophet|oracle|seer|vaticinator +auspicate|2 +(verb)|bode|portend|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +(verb)|get down|begin|get|start out|start|set about|set out|commence +auspice|1 +(noun)|omen|portent|presage|prognostic|prognostication|prodigy +auspices|3 +(noun)|protection|aegis|endorsement|indorsement +(noun)|augur|auspex|prophet|oracle|seer|vaticinator +(noun)|auspice|omen|portent|presage|prognostic|prognostication|prodigy +auspicious|2 +(adj)|auspicious |bright|promising|favorable|golden|fortunate|hopeful|rosy|propitious +(adj)|encouraging|favorable|favourable|lucky|prosperous|propitious +auspiciously|1 +(adv)|propitiously +auspiciousness|1 +(noun)|propitiousness|favorableness|favourableness|advantageousness +aussie|1 +(noun)|Australian|Aussie|inhabitant|dweller|denizen|indweller +austen|1 +(noun)|Austen|Jane Austen|writer|author +austenite|1 +(noun)|solid solution|primary solid solution +austenitic|1 +(adj)|solid solution|primary solid solution +austenitic manganese steel|1 +(noun)|manganese steel|alloy steel +austenitic steel|1 +(noun)|steel +austere|3 +(adj)|severe|stark|plain +(adj)|stern|nonindulgent +(adj)|ascetic|ascetical|spartan|abstemious +austereness|1 +(noun)|severeness|plainness +austerity|1 +(noun)|asceticism|nonindulgence|self-discipline|self-denial +austerlitz|2 +(noun)|Austerlitz|town +(noun)|Austerlitz|battle of Austerlitz|pitched battle +austin|1 +(noun)|Austin|capital of Texas|state capital +austin friar|1 +(noun)|Austin Friar|Augustinian +austin friars|2 +(noun)|Austin Friars|Augustinian order +(noun)|Austin Friar|Augustinian +austral|3 +(adj)|cardinal compass point +(adj)|southern +(noun)|Argentine monetary unit +austral islands|1 +(noun)|Tubuai Islands|Austral Islands|archipelago +australasia|1 +(noun)|Australasia|archipelago +australasian|1 +(adj)|Australasian|archipelago +australia|2 +(noun)|Australia|Commonwealth of Australia|country|state|land +(noun)|Australia|continent +australian|3 +(adj)|Australian|continent +(noun)|Australian|Aussie|inhabitant|dweller|denizen|indweller +(noun)|Australian|Aboriginal Australian|Austronesian|Austronesian language +australian aborigine|1 +(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian|Aussie|ethnic group|ethnos +australian alps|1 +(noun)|Australian Alps|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +australian blacksnake|1 +(noun)|Australian blacksnake|Pseudechis porphyriacus|elapid|elapid snake +australian capital|1 +(noun)|Canberra|Australian capital|capital of Australia|national capital +australian chestnut|1 +(noun)|Moreton Bay chestnut|Australian chestnut|bean tree +australian cockroach|1 +(noun)|Australian cockroach|Periplaneta australasiae|cockroach|roach +australian coral snake|1 +(noun)|Australian coral snake|Rhynchoelaps australis|coral snake|Old World coral snake +australian crawl|1 +(noun)|crawl|front crawl|Australian crawl|swimming stroke +australian desert|1 +(noun)|Australian Desert|desert +australian dollar|1 +(noun)|Australian dollar|dollar +australian grass tree|2 +(noun)|grass tree|Australian grass tree|arborescent plant +(noun)|Australian grass tree|Richea dracophylla|Australian heath +australian hare's foot|1 +(noun)|Australian hare's foot|Davallia pyxidata|hare's-foot fern +australian heath|1 +(noun)|Australian heath|shrub|bush +australian honeysuckle|1 +(noun)|honeysuckle|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia +australian magpie|1 +(noun)|Australian magpie|oscine|oscine bird +australian nettle|1 +(noun)|Australian nettle|Australian nettle tree|tree +australian nettle tree|1 +(noun)|Australian nettle|Australian nettle tree|tree +australian pea|1 +(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine +australian pine|1 +(noun)|Australian pine|Casuarina equisetfolia|beefwood +australian pitcher plant|1 +(noun)|Australian pitcher plant|Cephalotus follicularis|herb|herbaceous plant +australian reed grass|1 +(noun)|Australian reed grass|Calamagrostic quadriseta|reed grass +australian sea lion|1 +(noun)|Australian sea lion|Zalophus lobatus|sea lion +australian state|1 +(noun)|Australian state|state|province +australian stilt|1 +(noun)|stilt|Australian stilt|shorebird|shore bird|limicoline bird +australian sumac|1 +(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood +australian sword lily|1 +(noun)|kangaroo paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb|herbaceous plant +australian terrier|1 +(noun)|Australian terrier|terrier +australian turtledove|1 +(noun)|Australian turtledove|turtledove|Stictopelia cuneata|dove +australopithecine|2 +(adj)|mammal genus +(noun)|hominid +australopithecus|1 +(noun)|genus Australopithecus|Australopithecus|mammal genus +australopithecus afarensis|1 +(noun)|Australopithecus afarensis|australopithecine +australopithecus africanus|1 +(noun)|Australopithecus africanus|australopithecine +australopithecus boisei|1 +(noun)|Australopithecus boisei|australopithecine +australopithecus robustus|1 +(noun)|Australopithecus robustus|australopithecine +austria|1 +(noun)|Austria|Republic of Austria|Oesterreich|European country|European nation +austria-hungary|1 +(noun)|Austria-Hungary|geographical area|geographic area|geographical region|geographic region +austrian|2 +(adj)|Austrian|European country|European nation +(noun)|Austrian|European +austrian capital|1 +(noun)|Vienna|Austrian capital|capital of Austria|national capital +austrian monetary unit|1 +(noun)|Austrian monetary unit|monetary unit +austrian schilling|1 +(noun)|schilling|Austrian schilling|Austrian monetary unit +austrian winter pea|1 +(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea|pea plant +austro-asiatic|1 +(noun)|Austro-Asiatic|Munda-Mon-Khmer|natural language|tongue +austrocedrus|1 +(noun)|Austrocedrus|genus Austrocedrus|gymnosperm genus +austrocedrus chilensis|1 +(noun)|Chilean cedar|Austrocedrus chilensis|cedar|cedar tree +austronesia|1 +(noun)|Austronesia|archipelago +austronesian|3 +(adj)|Austronesian|archipelago +(noun)|Austronesian|inhabitant|dweller|denizen|indweller +(noun)|Austronesian|Austronesian language|natural language|tongue +austronesian language|1 +(noun)|Austronesian|Austronesian language|natural language|tongue +austrotaxus|1 +(noun)|Austrotaxus|genus Austrotaxus|gymnosperm genus +austrotaxus spicata|1 +(noun)|New Caledonian yew|Austrotaxus spicata|yew +autacoid|1 +(noun)|autocoid|secretion +autacoidal|1 +(adj)|secretion +autarchic|1 +(adj)|autarchical|autarkical|political system|form of government +autarchical|1 +(adj)|autarchic|autarkical|political system|form of government +autarchy|2 +(noun)|autarky|independence|independency +(noun)|autocracy|political system|form of government +autarkic|1 +(adj)|autarkical|independent +autarkical|2 +(adj)|autarchic|autarchical|political system|form of government +(adj)|autarkic|independent +autarky|1 +(noun)|autarchy|independence|independency +auteur|1 +(noun)|film maker|filmmaker|film producer|movie maker +authentic|2 +(adj)|reliable|trustworthy |trusty +(adj)|bona fide|unquestionable|veritable|genuine |echt +authentically|1 +(adv)|genuinely +authenticate|1 +(verb)|attest|certify|manifest|demonstrate|evidence +authenticated|1 +(adj)|attested|documented|genuine |echt +authentication|2 +(noun)|hallmark|assay-mark|marker|marking|mark +(noun)|certification|validation|proof|substantiation +authenticator|1 +(noun)|appraiser|critic +authenticity|1 +(noun)|genuineness|legitimacy|credibility|credibleness|believability +author|3 +(noun)|writer|communicator +(noun)|generator|source|maker|shaper +(verb)|write|compose|pen|indite +author's name|1 +(noun)|writer's name|name +authoress|1 +(noun)|writer|author +authorial|1 +(adj)|auctorial|communicator +authoring language|1 +(noun)|software|software system|software package|package +authorisation|4 +(noun)|mandate|authorization|legal document|legal instrument|official document|instrument +(noun)|authority|authorization|dominance|say-so|control +(noun)|authority|authorization|sanction|permission +(noun)|authorization|empowerment|management|direction +authorise|2 +(verb)|empower|authorize|appoint|charge +(verb)|authorize|pass|clear|permit|allow|let|countenance +authorised|2 +(adj)|authorized |accredited|commissioned|licensed|licenced|approved|sanctioned|canonized|canonised|glorified|empowered|sceptered|sceptred|lawful|legitimate|official +(adj)|authoritative|authorized|official +authoriser|1 +(noun)|authorizer|authority +authoritarian|4 +(adj)|autocratic|dictatorial|despotic|tyrannical|undemocratic +(adj)|dictatorial|unpermissive +(adj)|dictatorial|overbearing|domineering +(noun)|dictator|oppressor +authoritarianism|1 +(noun)|dictatorship|absolutism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +authoritative|3 +(adj)|important|influential +(adj)|classical|definitive|standard +(adj)|authorized|authorised|official +authoritatively|1 +(adv)|with authority|magisterially +authorities|8 +(noun)|government|regime|polity +(noun)|authority|authorization|authorisation|dominance|say-so|control +(noun)|authority|person|individual|someone|somebody|mortal|human|soul +(noun)|authority|expert +(noun)|assurance|self-assurance|confidence|self-confidence|authority|sureness|certainty +(noun)|agency|federal agency|government agency|bureau|office|authority|administrative unit|administrative body +(noun)|authority|authorization|authorisation|sanction|permission +(noun)|authority|book +authority|7 +(noun)|authorization|authorisation|dominance|say-so|control +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|expert +(noun)|assurance|self-assurance|confidence|self-confidence|sureness|certainty +(noun)|agency|federal agency|government agency|bureau|office|administrative unit|administrative body +(noun)|authorization|authorisation|sanction|permission +(noun)|book +authority figure|1 +(noun)|authority +authorization|4 +(noun)|mandate|authorisation|legal document|legal instrument|official document|instrument +(noun)|authority|authorisation|dominance|say-so|control +(noun)|authority|authorisation|sanction|permission +(noun)|authorisation|empowerment|management|direction +authorize|2 +(verb)|authorise|pass|clear|permit|allow|let|countenance +(verb)|empower|authorise|appoint|charge +authorized|2 +(adj)|authorized |authorised|accredited|commissioned|licensed|licenced|approved|sanctioned|canonized|canonised|glorified|empowered|sceptered|sceptred|lawful|legitimate|official +(adj)|authoritative|authorised|official +authorized shares|1 +(noun)|authorized stock|capital stock|stock +authorized stock|1 +(noun)|authorized shares|capital stock|stock +authorized version|1 +(noun)|Authorized Version|King James Version|King James Bible|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +authorizer|1 +(noun)|authoriser|authority +authorship|2 +(noun)|writing|composition|penning|verbal creation +(noun)|paternity|initiation|founding|foundation|institution|origination|creation|innovation|introduction|instauration +autism|1 +(noun)|syndrome +autistic|1 +(adj)|unfit +auto|1 +(noun)|car|automobile|machine|motorcar|motor vehicle|automotive vehicle +auto-changer|1 +(noun)|record changer|changer|mechanical device +auto-da-fe|1 +(noun)|burning|burning at the stake +auto-mechanic|1 +(noun)|automobile mechanic|car-mechanic|mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +auto accessory|1 +(noun)|accessory|appurtenance|supplement|add-on +auto company|1 +(noun)|car company|company +auto factory|1 +(noun)|automobile factory|car factory|factory|mill|manufacturing plant|manufactory +auto limitation|1 +(noun)|social control +auto loan|1 +(noun)|automobile loan|car loan|personal loan|consumer loan +auto maker|2 +(noun)|car manufacturer|car maker|carmaker|auto manufacturer|automaker|manufacturer|maker|manufacturing business +(noun)| +auto manufacturer|1 +(noun)|car manufacturer|car maker|carmaker|auto maker|automaker|manufacturer|maker|manufacturing business +auto mechanics|2 +(noun)|trade|craft +(noun)|automobile mechanic|auto-mechanic|car-mechanic|mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +auto part|1 +(noun)|car part|component|constituent|element +auto race|1 +(noun)|automobile race|car race|race +auto racing|1 +(noun)|car racing|racing +auto tire|1 +(noun)|car tire|automobile tire|rubber tire|tire|tyre +autoantibody|1 +(noun)|antibody +autobahn|1 +(noun)|expressway|freeway|motorway|pike|state highway|superhighway|throughway|thruway +autobiographer|1 +(noun)|biographer +autobiographic|2 +(adj)|autobiographical|biographer +(adj)|autobiographical|biography|life|life story|life history +autobiographical|2 +(adj)|autobiographic|biographer +(adj)|autobiographic|biography|life|life story|life history +autobiography|1 +(noun)|biography|life|life story|life history +autobus|1 +(noun)|bus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|public transport +autocatalysis|1 +(noun)|catalysis|contact action +autocatalytic|1 +(adj)|catalysis|contact action +autochthonal|1 +(adj)|autochthonic|autochthonous|endemic|indigenous|native +autochthonic|1 +(adj)|autochthonal|autochthonous|endemic|indigenous|native +autochthonous|2 +(adj)|autochthonous +(adj)|autochthonal|autochthonic|endemic|indigenous|native +autochthony|1 +(noun)|indigenousness|endemism|nativeness +autoclave|2 +(noun)|sterilizer|steriliser|vessel +(verb)|sterilize|sterilise +autocoid|1 +(noun)|autacoid|secretion +autocracy|2 +(noun)|autarchy|political system|form of government +(noun)|political orientation|ideology|political theory +autocrat|1 +(noun)|tyrant|despot|dictator|potentate +autocratic|4 +(adj)|autocratical|dictator|potentate +(adj)|autocratical|political system|form of government +(adj)|bossy|dominating|high-and-mighty|magisterial|peremptory|domineering +(adj)|authoritarian|dictatorial|despotic|tyrannical|undemocratic +autocratical|2 +(adj)|autocratic|dictator|potentate +(adj)|autocratic|political system|form of government +autocratically|1 +(adv)|dictatorially|magisterially +autocue|1 +(noun)|prompter|device +autodefensas unidas de colombia|1 +(noun)|United Self-Defense Force of Colombia|United Self-Defense Group of Colombia|Autodefensas Unidas de Colombia|AUC|terrorist organization|terrorist group|foreign terrorist organization|FTO +autodidact|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +autodidactic|1 +(adj)|person|individual|someone|somebody|mortal|human|soul +autoecious|1 +(adj)|autoecious |homoecious +autoerotic|1 +(adj)|sexy +autoeroticism|1 +(noun)|autoerotism|sexual activity|sexual practice|sex|sex activity +autoerotism|1 +(noun)|autoeroticism|sexual activity|sexual practice|sex|sex activity +autofluorescence|1 +(noun)|fluorescence +autofocus|1 +(noun)|optical device +autogamic|1 +(adj)|autogamous |self-fertilized|self-fertilised|self-pollinated +autogamous|1 +(adj)|autogamous |autogamic|self-fertilized|self-fertilised|self-pollinated +autogamy|1 +(noun)|self-fertilization|self-fertilisation +autogenesis|1 +(noun)|abiogenesis|autogeny|spontaneous generation|organic phenomenon +autogenetic|1 +(adj)|organic phenomenon +autogenic|1 +(adj)|autogenous |self-generated|self-produced +autogenic therapy|1 +(noun)|autogenic training|autogenics|treatment +autogenic training|1 +(noun)|autogenic therapy|autogenics|treatment +autogenics|1 +(noun)|autogenic therapy|autogenic training|treatment +autogenous|1 +(adj)|autogenous |autogenic|self-generated|self-produced +autogeny|1 +(noun)|abiogenesis|autogenesis|spontaneous generation|organic phenomenon +autogiro|1 +(noun)|autogyro|gyroplane|heavier-than-air craft +autograft|1 +(noun)|autoplasty|graft|transplant +autograph|3 +(noun)|writing|written material|piece of writing +(noun)|John Hancock|signature +(verb)|inscribe|sign +autograph album|1 +(noun)|album +autographed|1 +(adj)|signed +autographic|1 +(adj)|writing|written material|piece of writing +autogyro|1 +(noun)|autogiro|gyroplane|heavier-than-air craft +autoicous|1 +(adj)|monoecious |monecious|monoicous +autoimmune|1 +(adj)|reaction|response +autoimmune diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +autoimmune disease|1 +(noun)|autoimmune disorder|disease +autoimmune disorder|1 +(noun)|autoimmune disease|disease +autoimmunity|1 +(noun)|pathology +autoinjector|1 +(noun)|hypodermic syringe|hypodermic|hypo +autolatry|1 +(noun)|idiolatry|self-worship|worship +autoloader|1 +(noun)|self-loader|firearm|piece|small-arm +autoloading|1 +(adj)|self-loading|semiautomatic|automatic +autologous|1 +(adj)|autologous +autolysis|1 +(noun)|lysis +autolytic|1 +(adj)|lysis +automaker|1 +(noun)|car manufacturer|car maker|carmaker|auto manufacturer|auto maker|manufacturer|maker|manufacturing business +automat|2 +(noun)|vending machine +(noun)|cafeteria +automate|1 +(verb)|automatize|automatise|change|alter|modify +automated|1 +(adj)|machine-controlled|machine-driven|automatic +automated teller|1 +(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automatic teller|ATM|machine +automated teller machine|1 +(noun)|cash machine|cash dispenser|automatic teller machine|automated teller|automatic teller|ATM|machine +automatic|5 +(adj)|automatic |autoloading|self-loading|semiautomatic|automated|machine-controlled|machine-driven|self-acting|self-activating|self-moving|self-regulating|self-locking|self-winding|semiautomatic|mechanical +(adj)|automatonlike|machinelike|robotlike|mechanical +(adj)|reflex|reflexive|involuntary +(noun)|automatic rifle|machine rifle|automatic firearm|machine gun +(noun)|automatic pistol|pistol|handgun|side arm|shooting iron|automatic firearm +automatic choke|1 +(noun)|choke +automatic data processing|1 +(noun)|ADP|data processing +automatic data processing system|1 +(noun)|computer system|computing system|ADP system|ADPS|system +automatic drive|1 +(noun)|automatic transmission|transmission|transmission system +automatic face recognition|1 +(noun)|face recognition|facial recognition|biometric identification|biometric authentication|identity verification +automatic firearm|1 +(noun)|autoloader|self-loader +automatic pilot|2 +(noun)|autopilot|unconsciousness +(noun)|autopilot|robot pilot|device +automatic pistol|1 +(noun)|automatic|pistol|handgun|side arm|shooting iron|automatic firearm +automatic rifle|1 +(noun)|automatic|machine rifle|automatic firearm|machine gun +automatic teller|1 +(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automated teller|ATM|machine +automatic teller machine|1 +(noun)|cash machine|cash dispenser|automated teller machine|automated teller|automatic teller|ATM|machine +automatic transmission|1 +(noun)|automatic drive|transmission|transmission system +automatic washer|1 +(noun)|washer|washing machine|white goods +automatically|1 +(adv)|mechanically +automation|3 +(noun)|mechanization|mechanisation|high technology +(noun)|condition|status +(noun)|equipment +automatise|2 +(verb)|automatize|change|alter|modify +(verb)|automatize|automate|change|alter|modify +automatism|1 +(noun)|reaction|response +automatize|2 +(verb)|automatise|change|alter|modify +(verb)|automatise|automate|change|alter|modify +automaton|2 +(noun)|zombi|zombie|anomaly|unusual person +(noun)|robot|golem|mechanism +automatonlike|1 +(adj)|automatic|machinelike|robotlike|mechanical +automeris|1 +(noun)|Automeris|genus Automeris|arthropod genus +automeris io|1 +(noun)|io moth|Automeris io|saturniid|saturniid moth +automobile|2 +(noun)|car|auto|machine|motorcar|motor vehicle|automotive vehicle +(verb)|travel|go|move|locomote +automobile battery|1 +(noun)|car battery|lead-acid battery|lead-acid accumulator +automobile driver|1 +(noun)|racer|race driver|driver +automobile engine|1 +(noun)|engine +automobile factory|1 +(noun)|auto factory|car factory|factory|mill|manufacturing plant|manufactory +automobile horn|1 +(noun)|car horn|motor horn|horn|hooter|alarm|warning device|alarm system +automobile industry|1 +(noun)|industry +automobile insurance|1 +(noun)|car insurance|insurance +automobile loan|1 +(noun)|auto loan|car loan|personal loan|consumer loan +automobile mechanic|1 +(noun)|auto-mechanic|car-mechanic|mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +automobile race|1 +(noun)|auto race|car race|race +automobile tire|1 +(noun)|car tire|auto tire|rubber tire|tire|tyre +automobile traffic|1 +(noun)|car traffic|vehicular traffic|vehicle traffic +automobile trunk|1 +(noun)|luggage compartment|trunk|compartment +automobilist|1 +(noun)|motorist|driver +automotive|2 +(adj)|motor vehicle|automotive vehicle +(adj)|self-propelled|self-propelling|moving +automotive engineer|1 +(noun)|engineer|applied scientist|technologist +automotive engineering|1 +(noun)|automotive technology|technology|engineering +automotive technology|1 +(noun)|automotive engineering|technology|engineering +automotive vehicle|1 +(noun)|motor vehicle|self-propelled vehicle +automysophobia|1 +(noun)|simple phobia +autonomic|1 +(adj)|involuntary +autonomic ganglion|1 +(noun)|ganglion +autonomic nervous system|1 +(noun)|ANS|neural structure +autonomic plexus|1 +(noun)|plexus autonomici|nerve plexus +autonomous|3 +(adj)|independent|self-governing|sovereign|free +(adj)|independent +(adj)|self-directed|self-reliant|independent +autonomy|2 +(noun)|liberty|independence|independency +(noun)|self-direction|self-reliance|self-sufficiency|independence|independency +autophyte|1 +(noun)|autophytic plant|autotroph|autotrophic organism|plant|flora|plant life +autophytic|1 +(adj)|autotrophic |plant|flora|plant life +autophytic plant|1 +(noun)|autophyte|autotroph|autotrophic organism|plant|flora|plant life +autopilot|2 +(noun)|automatic pilot|unconsciousness +(noun)|automatic pilot|robot pilot|device +autoplastic|1 +(adj)|plastic surgery|reconstructive surgery|anaplasty +autoplasty|2 +(noun)|autograft|graft|transplant +(noun)|plastic surgery|reconstructive surgery|anaplasty +autopsy|2 +(noun)|necropsy|postmortem|PM|postmortem examination|examination|scrutiny +(verb)|examine|see +autoradiograph|1 +(noun)|radiogram|radiograph|shadowgraph|skiagraph|skiagram +autoradiographic|1 +(adj)|radiography|skiagraphy +autoradiography|1 +(noun)|radiography|skiagraphy +autoregulation|1 +(noun)|organic process|biological process +autosemantic|1 +(adj)|categorematic +autosexing|1 +(noun)|breeding +autosomal|1 +(adj)|chromosome +autosomal dominant disease|1 +(noun)|autosomal dominant disorder|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +autosomal dominant disorder|1 +(noun)|autosomal dominant disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +autosomal recessive defect|1 +(noun)|autosomal recessive disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +autosomal recessive disease|1 +(noun)|autosomal recessive defect|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +autosome|1 +(noun)|somatic chromosome|chromosome +autostrada|1 +(noun)|expressway|freeway|motorway|pike|state highway|superhighway|throughway|thruway +autosuggestion|1 +(noun)|self-hypnosis|self-suggestion|hypnosis +autotelic|1 +(adj)|belief +autotelism|1 +(noun)|belief +autotomic|1 +(adj)|removal|remotion +autotomise|1 +(verb)|autotomize|shed|cast|cast off|shake off|throw|throw off|throw away|drop +autotomize|1 +(verb)|autotomise|shed|cast|cast off|shake off|throw|throw off|throw away|drop +autotomy|1 +(noun)|removal|remotion +autotroph|1 +(noun)|autophyte|autophytic plant|autotrophic organism|plant|flora|plant life +autotrophic|1 +(adj)|autotrophic |autophytic|plant|flora|plant life +autotrophic organism|1 +(noun)|autophyte|autophytic plant|autotroph|plant|flora|plant life +autotype|2 +(noun)|autotypy|photography +(noun)|facsimile|copy +autotypic|1 +(adj)|photography +autotypy|1 +(noun)|autotype|photography +autumn|1 +(noun)|fall|season|time of year +autumn crocus|1 +(noun)|meadow saffron|naked lady|Colchicum autumnale|bulbous plant +autumn pumpkin|1 +(noun)|pumpkin|pumpkin vine|Cucurbita pepo|squash|squash vine +autumn sneezeweed|1 +(noun)|Helenium autumnale|sneezeweed +autumnal|2 +(adj)|autumnal +(adj)|mature +autumnal equinox|2 +(noun)|September equinox|fall equinox|equinox +(noun)|equinoctial point|equinox +auvergne|1 +(noun)|Auvergne|French region +auxesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +auxetic|1 +(adj)|growth|growing|maturation|development|ontogeny|ontogenesis +auxiliary|3 +(adj)|subsidiary|supplemental|supplementary|secondary +(adj)|accessory|adjunct|ancillary|adjuvant|appurtenant|subsidiary|supportive +(noun)|aide|assistant|helper|help|supporter +auxiliary airfield|1 +(noun)|airfield|landing field|flying field|field +auxiliary boiler|1 +(noun)|donkey boiler|boiler|steam boiler +auxiliary cell|1 +(noun)|terrorist cell|radical cell +auxiliary engine|1 +(noun)|donkey engine|engine +auxiliary equipment|1 +(noun)|off-line equipment|electronic equipment +auxiliary operation|1 +(noun)|off-line operation|operation +auxiliary pump|1 +(noun)|donkey pump|pump +auxiliary research submarine|1 +(noun)|submarine|pigboat|sub|U-boat +auxiliary storage|1 +(noun)|external storage|secondary storage|memory device|storage device +auxin|1 +(noun)|phytohormone|plant hormone|growth regulator +auxinic|1 +(adj)|phytohormone|plant hormone|growth regulator +av|1 +(noun)|Ab|Av|Jewish calendar month +avadavat|1 +(noun)|amadavat|weaver|weaverbird|weaver finch +avahi|1 +(noun)|Avahi|genus Avahi|mammal genus +avahi laniger|1 +(noun)|woolly indris|Avahi laniger|lemur +avail|4 +(noun)|help|service|helpfulness +(verb)|use|utilize|utilise|apply|employ +(verb)|help|assist|aid +(verb)|help|exploit|work +availability|1 +(noun)|handiness|accessibility|availableness|convenience +available|3 +(adj)|available |accessible|acquirable|easy|forthcoming|gettable|getable|obtainable|procurable|in stock|lendable|on hand|visible|on tap|on tap|open|purchasable|for sale|ready|addressable +(adj)|uncommitted|free +(adj)|usable|useable|disposable +availableness|1 +(noun)|handiness|accessibility|availability|convenience +avalanche|3 +(noun)|slide +(noun)|happening|occurrence|natural event +(verb)|roll down|descend|fall|go down|come down +avalanche lily|1 +(noun)|Erythronium montanum|liliaceous plant +avalokiteshvara|1 +(noun)|Avalokitesvara|Avalokiteshvara|Bodhisattva|Boddhisatva +avalokitesvara|1 +(noun)|Avalokitesvara|Avalokiteshvara|Bodhisattva|Boddhisatva +avant-garde|2 +(adj)|daring|original +(noun)|vanguard|van|new wave|artistic movement|art movement +avaram|1 +(noun)|tanner's cassia|Senna auriculata|Cassia auriculata|senna +avarice|2 +(noun)|greed|covetousness|rapacity|avaritia|mortal sin|deadly sin +(noun)|avariciousness|covetousness|cupidity|greed +avaricious|1 +(adj)|covetous|grabby|grasping|greedy|prehensile|acquisitive +avariciously|1 +(adv)|covetously|greedily +avariciousness|1 +(noun)|avarice|covetousness|cupidity|greed +avaritia|1 +(noun)|avarice|greed|covetousness|rapacity|mortal sin|deadly sin +avascular|1 +(adj)|avascular +avatar|2 +(noun)|embodiment|incarnation|personification +(noun)|Hindu deity +ave maria|1 +(noun)|Ave Maria|Hail Mary|prayer +avellan|1 +(adj)|avellane|hazelnut|hazel|hazelnut tree +avellane|1 +(adj)|avellan|hazelnut|hazel|hazelnut tree +avena|1 +(noun)|Avena|genus Avena|plant genus +avena barbata|1 +(noun)|slender wild oat|Avena barbata|oat +avena fatua|1 +(noun)|wild oat|wild oat grass|Avena fatua|oat +avena sativa|1 +(noun)|cereal oat|Avena sativa|oat +avene sterilis|1 +(noun)|wild red oat|animated oat|Avene sterilis|oat +avenge|1 +(verb)|revenge|retaliate|punish|penalize|penalise +avenged|1 +(adj)|avenged |punish|penalize|penalise +avenger|1 +(noun)|retaliator|attacker|aggressor|assailant|assaulter +avens|1 +(noun)|subshrub|suffrutex +aventail|1 +(noun)|camail|ventail|hood +aventurine|1 +(noun)|sunstone|quartz|transparent gem +avenue|2 +(noun)|approach|attack|plan of attack +(noun)|boulevard|street +aver|2 +(verb)|allege|say|assert|asseverate|maintain +(verb)|affirm|verify|assert|avow|swan|swear|declare +average|10 +(adj)|mean|normal +(adj)|ordinary|common +(adj)|fair|mediocre|middling|ordinary +(adj)|intermediate|medium|moderate +(adj)|modal|normal +(adj)|median|normal +(noun)|norm|statistic +(verb)|average out|total|number|add up|come|amount +(verb)|achieve|accomplish|attain|reach +(verb)|average out|calculate|cipher|cypher|compute|work out|reckon|figure +average cost|1 +(noun)|monetary value|price|cost +average out|2 +(verb)|average|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|average|total|number|add up|come|amount +averageness|2 +(noun)|normality|normalcy +(noun)|mediocrity|ordinariness +averell harriman|1 +(noun)|Harriman|Averell Harriman|William Averell Harriman|financier|moneyman|diplomat|diplomatist +averment|1 +(noun)|assertion|asseveration|declaration +averrhoa|1 +(noun)|Averrhoa|genus Averrhoa|rosid dicot genus +averrhoa bilimbi|1 +(noun)|bilimbi|Averrhoa bilimbi|fruit tree +averrhoa carambola|1 +(noun)|carambola|carambola tree|Averrhoa carambola|fruit tree +averroes|1 +(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher|lawyer|attorney|doctor|doc|physician|MD|Dr.|medico +averse|1 +(adj)|antipathetic|antipathetical|indisposed|loath|loth|disinclined +aversion|2 +(noun)|antipathy|distaste|dislike +(noun)|averting|avoidance|turning away|shunning|dodging +aversion therapy|1 +(noun)|behavior therapy|behavior modification +aversive|1 +(adj)|dislike +aversive conditioning|1 +(noun)|conditioning +aversive stimulus|1 +(noun)|negative stimulus +avert|2 +(verb)|debar|obviate|deflect|head off|stave off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +(verb)|turn away|turn +avertable|1 +(adj)|evitable |avoidable|avertible +avertible|1 +(adj)|evitable |avoidable|avertable +averting|2 +(noun)|prevention|bar +(noun)|aversion|avoidance|turning away|shunning|dodging +aves|1 +(noun)|Aves|class Aves|class +avesta|1 +(noun)|Avesta|Zend-Avesta|sacred text|sacred writing|religious writing|religious text +avestan|3 +(adj)|Avestan|sacred text|sacred writing|religious writing|religious text +(noun)|Avestan|Zend|Iranian|Iranian language +(noun)|Avestan|script +avian|1 +(adj)|vertebrate|craniate +avianise|1 +(verb)|avianize|change|alter|vary +avianize|1 +(verb)|avianise|change|alter|vary +aviary|1 +(noun)|bird sanctuary|volary|building|edifice +aviate|1 +(verb)|fly|pilot|operate|control +aviation|4 +(noun)|air power|collection|aggregation|accumulation|assemblage +(noun)|industry +(noun)|airmanship|art|artistry|prowess +(noun)|air travel|air|travel|traveling|travelling +aviation medicine|1 +(noun)|aeromedicine|aerospace medicine|biomedicine +aviator|1 +(noun)|aeronaut|airman|flier|flyer|skilled worker|trained worker +aviatress|1 +(noun)|aviatrix|airwoman|aviator|aeronaut|airman|flier|flyer +aviatrix|1 +(noun)|airwoman|aviatress|aviator|aeronaut|airman|flier|flyer +avicenna|1 +(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher|doctor|doc|physician|MD|Dr.|medico +avicennia|1 +(noun)|Avicennia|genus Avicennia|asterid dicot genus +avicennia marina|1 +(noun)|black mangrove|Avicennia marina|blackwood|blackwood tree +avicennia officinalis|1 +(noun)|white mangrove|Avicennia officinalis|tree +avicenniaceae|1 +(noun)|Avicenniaceae|family Avicenniaceae|asterid dicot family +avid|2 +(adj)|devouring|esurient|greedy|desirous +(adj)|great|eager|zealous|enthusiastic +avidity|1 +(noun)|eagerness|avidness|keenness|enthusiasm +avidness|1 +(noun)|eagerness|avidity|keenness|enthusiasm +avifauna|1 +(noun)|fauna +avifaunal|1 +(adj)|avifaunistic|fauna +avifaunistic|1 +(adj)|avifaunal|fauna +avionic|1 +(adj)|aeronautics|astronautics +avionics|1 +(noun)|aeronautics|astronautics +avirulent|1 +(adj)|avirulent +avitaminosis|1 +(noun)|hypovitaminosis|malnutrition +avitaminotic|1 +(adj)|malnutrition +avo|1 +(noun)|Macao monetary unit +avocado|3 +(adj)|chromatic +(noun)|alligator pear|avocado pear|aguacate|edible fruit +(noun)|avocado tree|Persea Americana|fruit tree +avocado pear|1 +(noun)|avocado|alligator pear|aguacate|edible fruit +avocado tree|1 +(noun)|avocado|Persea Americana|fruit tree +avocation|1 +(noun)|by-line|hobby|sideline|spare-time activity|pastime|interest|pursuit +avocational|1 +(adj)|pastime|interest|pursuit +avocet|1 +(noun)|shorebird|shore bird|limicoline bird +avogadro|1 +(noun)|Avogadro|Amedeo Avogadro|physicist +avogadro's hypothesis|1 +(noun)|Avogadro's law|Avogadro's hypothesis|law|law of nature +avogadro's law|1 +(noun)|Avogadro's law|Avogadro's hypothesis|law|law of nature +avogadro's number|1 +(noun)|Avogadro's number|Avogadro number|constant +avogadro number|1 +(noun)|Avogadro's number|Avogadro number|constant +avoid|3 +(verb)|debar|obviate|deflect|avert|head off|stave off|fend off|ward off|prevent|forestall|foreclose|preclude|forbid +(verb)|keep off|abstain|refrain|desist +(verb)|invalidate|annul|quash|void|nullify|cancel|strike down +avoidable|1 +(adj)|evitable |avertible|avertable +avoidance|1 +(noun)|turning away|shunning|dodging|rejection +avoirdupois|2 +(noun)|avoirdupois weight|system of weights|weight +(noun)|fatness|fat|blubber|bodily property +avoirdupois unit|1 +(noun)|mass unit +avoirdupois weight|1 +(noun)|avoirdupois|system of weights|weight +avon|3 +(noun)|Avon|River Avon|river +(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river +(noun)|Avon|county +avouch|1 +(verb)|avow|admit|acknowledge +avouchment|1 +(noun)|avowal|affirmation|assertion|averment|asseveration +avow|2 +(verb)|affirm|verify|assert|aver|swan|swear|declare +(verb)|avouch|admit|acknowledge +avowal|1 +(noun)|avouchment|affirmation|assertion|averment|asseveration +avowed|1 +(adj)|professed|declared +avowedly|2 +(adv)|professedly +(adv)|true|admittedly|confessedly +avower|2 +(noun)|communicator +(noun)|asserter|declarer|affirmer|asseverator|communicator +avulse|1 +(verb)|separate +avulsion|2 +(noun)|change|alteration|modification +(noun)|separation +avuncular|2 +(adj)|kinsman +(adj)|cousinly +await|1 +(verb)|expect|look|wait +awaited|1 +(adj)|anticipated|hoped-for|expected +awake|4 +(adj)|awake |astir|up|awakened|insomniac|sleepless|watchful|unsleeping|wide-awake|waking|alert|aware|conscious +(adj)|alert|conscious +(adj)|alert|alive|aware +(verb)|wake up|arouse|awaken|wake|come alive|waken|change state|turn +awaken|3 +(verb)|wake|waken|rouse|wake up|arouse|change|alter|modify +(verb)|wake up|awake|arouse|wake|come alive|waken|change state|turn +(verb)|affect|impress|move|strike +awakened|2 +(adj)|awakened |aroused +(adj)|awake +awakening|1 +(noun)|wakening|waking up|arousal|rousing +award|6 +(noun)|awarding|grant|subsidization|subsidisation +(noun)|accolade|honor|honour|laurels|symbol +(noun)|prize|gift +(verb)|present|allocate|apportion +(verb)|grant|allocate|apportion +(verb)|honor|honour|reward +award-winning|1 +(adj)|victory|triumph +awarding|1 +(noun)|award|grant|subsidization|subsidisation +aware|5 +(adj)|aware |alert|alive|awake|conscious|sensible|awake|conscious|sensible|sensitive +(adj)|mindful |careful|heedful|evocative|redolent|redolent of|remindful|reminiscent|reminiscent of +(adj)|witting +(adj)|cognizant +(adj)|knowing|knowledgeable|informed +awareness|2 +(noun)|consciousness|cognizance|cognisance|knowingness|knowing +(noun)|sentience|consciousness +awash|1 +(adj)|afloat|flooded|inundated|overflowing|full +away|10 +(adj)|distant +(adj)|gone|departed|absent +(adj)|away +(adj)|outside|inaccurate +(adv)|off|forth +(adv)|out +(adv)|aside +(adv)|off +(adv)|aside +(adv)|aside|by +away game|1 +(noun)|road game|game +awayness|1 +(noun)|absence +awe|3 +(noun)|wonder|wonderment|admiration +(noun)|fear|reverence|veneration|emotion +(verb)|frighten|fright|scare|affright +awe-inspiring|1 +(adj)|amazing|awesome|awful|awing|impressive +aweary|1 +(adj)|weary|tired +awed|2 +(adj)|awful|reverent +(adj)|awed |awestruck|awestricken|in awe of|overawed +aweigh|2 +(adj)|up +(adj)|atrip|free +aweless|2 +(adj)|awless|unawed +(adj)|awless|disrespectful|irreverent +awesome|1 +(adj)|amazing|awe-inspiring|awful|awing|impressive +awestricken|1 +(adj)|awed |awestruck|in awe of|overawed +awestruck|1 +(adj)|awed |awestricken|in awe of|overawed +awful|6 +(adj)|atrocious|abominable|dreadful|painful|terrible|unspeakable|bad +(adj)|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +(adj)|nasty |dirty|filthy|lousy|grotty|hateful|mean|unpleasant|unpleasant +(adj)|awed|reverent +(adj)|amazing|awe-inspiring|awesome|awing|impressive +(adv)|terribly|awfully|frightfully +awfully|3 +(adv)|terribly|awful|frightfully +(adv)|dreadfully|horribly +(adv)|terribly|atrociously|abominably|abysmally|rottenly +awfulness|1 +(noun)|dreadfulness|horridness|terribleness|unpleasantness +awheel|1 +(adj)|riding|moving +awhile|1 +(adv)|for a while +awing|1 +(adj)|amazing|awe-inspiring|awesome|awful|impressive +awkward|6 +(adj)|inconvenient +(adj)|awkward |gawky|clumsy|clunky|ungainly|unwieldy|graceless|ungraceful|labored|laboured|strained|wooden|maladroit|ugly +(adj)|bunglesome|clumsy|ungainly|unwieldy |unmanageable +(adj)|clumsy|cumbersome|inapt|inept|ill-chosen|infelicitous +(adj)|embarrassing|sticky|unenviable|difficult |hard +(adj)|ill at ease|uneasy|uncomfortable +awkwardness|5 +(noun)|clumsiness|ineptness|ineptitude|maladroitness|slowness|unskillfulness +(noun)|nuisance value|disadvantage +(noun)|clumsiness|carriage|bearing|posture +(noun)|clumsiness|gracelessness|stiffness|inelegance +(noun)|cumbersomeness|unwieldiness|troublesomeness|inconvenience|worriment +awl|1 +(noun)|hand tool +awless|2 +(adj)|aweless|unawed +(adj)|aweless|disrespectful|irreverent +awlwort|1 +(noun)|Subularia aquatica|aquatic plant|water plant|hydrophyte|hydrophytic plant +awn|1 +(noun)|beard +awned|1 +(adj)|awned |awny|bearded +awning|1 +(noun)|sunshade|sunblind|canopy +awning deck|1 +(noun)|hurricane deck|hurricane roof|promenade deck|deck +awninged|1 +(adj)|covered +awnless|1 +(adj)|awnless +awnless bromegrass|1 +(noun)|Bromus inermis|brome|bromegrass +awny|1 +(adj)|awned |bearded +awol|3 +(adj)|truant|absent +(adj)|disloyal +(noun)|AWOL|absentee +awry|4 +(adj)|askew|cockeyed|lopsided|wonky|skew-whiff|crooked +(adj)|amiss|haywire|wrong|malfunctioning |nonfunctional +(adv)|amiss +(adv)|askew|skew-whiff +ax|3 +(noun)|axe|edge tool +(verb)|axe|chop|hack +(verb)|axe|end|terminate +ax handle|1 +(noun)|axe handle|handle|grip|handgrip|hold +ax head|1 +(noun)|axe head|wedge +axe|3 +(noun)|ax|edge tool +(verb)|ax|chop|hack +(verb)|ax|end|terminate +axe handle|1 +(noun)|ax handle|handle|grip|handgrip|hold +axe head|1 +(noun)|ax head|wedge +axenic|2 +(adj)|germfree +(adj)|pure +axerophthol|1 +(noun)|vitamin A|antiophthalmic factor|A|fat-soluble vitamin +axial|3 +(adj)|mechanism +(adj)|axile|stalk|stem +(adj)|lengthwise |lengthways +axial motion|1 +(noun)|axial rotation|roll|rotation|revolution|gyration +axial muscle|1 +(noun)|skeletal muscle|striated muscle +axial rotation|1 +(noun)|axial motion|roll|rotation|revolution|gyration +axial skeleton|1 +(noun)|skeletal structure +axil|1 +(noun)|angle +axile|1 +(adj)|axial|stalk|stem +axile placentation|1 +(noun)|placentation +axilla|1 +(noun)|armpit|axillary cavity|axillary fossa|cavity|bodily cavity|cavum +axillary|2 +(adj)|alar|angle +(adj)|cavity|bodily cavity|cavum +axillary artery|1 +(noun)|arteria axillaris|artery|arteria|arterial blood vessel +axillary cavity|1 +(noun)|armpit|axilla|axillary fossa|cavity|bodily cavity|cavum +axillary fossa|1 +(noun)|armpit|axilla|axillary cavity|cavity|bodily cavity|cavum +axillary node|1 +(noun)|lymph node|lymph gland|node +axillary vein|1 +(noun)|vena axillaris|vein|vena|venous blood vessel +axiological|1 +(adj)|philosophy +axiology|1 +(noun)|philosophy +axiom|2 +(noun)|maxim|saying|expression|locution +(noun)|proposition +axiomatic|3 +(adj)|self-evident|taken for granted|obvious +(adj)|aphoristic|saying|expression|locution +(adj)|axiomatical|postulational|proposition +axiomatical|1 +(adj)|axiomatic|postulational|proposition +axis|6 +(noun)|line +(noun)|axis of rotation|mechanism +(noun)|stalk|stem +(noun)|Axis|alliance|coalition|alignment|alinement +(noun)|bloc|alliance|coalition|alignment|alinement +(noun)|axis vertebra|cervical vertebra|neck bone +axis of rotation|1 +(noun)|axis|mechanism +axis vertebra|1 +(noun)|axis|cervical vertebra|neck bone +axle|1 +(noun)|shaft +axle bar|1 +(noun)|axletree +axle grease|1 +(noun)|grease|lubricating oil +axletree|1 +(noun)|dead axle +axolemma|1 +(noun)|membrane|tissue layer +axolotl|1 +(noun)|mud puppy|Ambystoma mexicanum|ambystomid|ambystomid salamander +axon|1 +(noun)|axone|nerve fiber|nerve fibre +axonal|1 +(adj)|nerve fiber|nerve fibre +axone|1 +(noun)|axon|nerve fiber|nerve fibre +axseed|1 +(noun)|crown vetch|Coronilla varia|coronilla +ayah|1 +(noun)|domestic|domestic help|house servant +ayapana|1 +(noun)|Ayapana triplinervis|Eupatorium aya-pana|herb|herbaceous plant +ayapana triplinervis|1 +(noun)|ayapana|Ayapana triplinervis|Eupatorium aya-pana|herb|herbaceous plant +ayatollah|1 +(noun)|religious leader +ayatollah khomeini|1 +(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader +ayatollah ruholla khomeini|1 +(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader +aye-aye|1 +(noun)|Daubentonia madagascariensis|lemur +ayin|1 +(noun)|letter|letter of the alphabet|alphabetic character +ayn rand|1 +(noun)|Rand|Ayn Rand|writer|author +ayr|1 +(noun)|Ayr|town|port +ayrshire|1 +(noun)|Ayrshire|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +aythya|1 +(noun)|Aythya|genus Aythya|bird genus +aythya affinis|1 +(noun)|lesser scaup|lesser scaup duck|lake duck|Aythya affinis|scaup|scaup duck|bluebill|broadbill +aythya americana|1 +(noun)|redhead|Aythya americana|duck +aythya ferina|1 +(noun)|pochard|Aythya ferina|duck +aythya marila|1 +(noun)|greater scaup|Aythya marila|scaup|scaup duck|bluebill|broadbill +aythya valisineria|1 +(noun)|canvasback|canvasback duck|Aythya valisineria|duck +ayurveda|1 +(noun)|Ayurveda|writing|written material|piece of writing +az|2 +(noun)|azimuth|AZ|angle +(noun)|Arizona|Grand Canyon State|AZ|American state +az zarqa|1 +(noun)|Zarqa|Az Zarqa|city|metropolis|urban center +azactam|1 +(noun)|aztreonam|Azactam|antibiotic|antibiotic drug +azadirachta|1 +(noun)|Azadirachta|genus Azadirachta|rosid dicot genus +azadirachta indica|1 +(noun)|neem|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree +azadirachtin|1 +(noun)|organic compound +azalea|1 +(noun)|rhododendron +azaleastrum|1 +(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus +azathioprine|1 +(noun)|Imuran|medicine|medication|medicament|medicinal drug +azedarach|1 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|Melia azederach|Melia azedarach|tree +azederach|1 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azedarach|Melia azederach|Melia azedarach|tree +azerbaijan|1 +(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country|Asian nation +azerbaijani|3 +(adj)|Azerbaijani|Asian country|Asian nation +(noun)|Azerbaijani|Turki +(noun)|Azerbaijani|Turki|Turkic|Turko-Tatar|Turkic language +azerbaijani monetary unit|1 +(noun)|Azerbaijani monetary unit|monetary unit +azerbaijani republic|1 +(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country|Asian nation +azerbajdzhan|1 +(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country|Asian nation +azerbajdzhan republic|1 +(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country|Asian nation +azeri|1 +(noun)|Azeri|ethnic group|ethnos +azide|1 +(noun)|compound|chemical compound +azido|1 +(adj)|group|radical|chemical group +azido group|1 +(noun)|azido radical|group|radical|chemical group +azido radical|1 +(noun)|azido group|group|radical|chemical group +azimuth|1 +(noun)|AZ|angle +azimuthal|1 +(adj)|angle +azo|1 +(adj)|group|radical|chemical group +azo dye|1 +(noun)|dye|dyestuff +azo group|1 +(noun)|azo radical|group|radical|chemical group +azo radical|1 +(noun)|azo group|group|radical|chemical group +azoic|1 +(adj)|early +azoimide|1 +(noun)|hydrazoic acid|hydrogen azide|HN|hydride|explosive +azolla|1 +(noun)|Azolla|genus Azolla|fern genus +azolla caroliniana|1 +(noun)|mosquito fern|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern|water fern +azollaceae|1 +(noun)|Azollaceae|family Azollaceae|fern family +azonal|1 +(adj)|azonal |azonic +azonic|1 +(adj)|azonal +azores|1 +(noun)|Azores|Acores|island +azotaemia|1 +(noun)|uremia|uraemia|azotemia|pathology +azote|1 +(noun)|nitrogen|N|atomic number 7 +azotemia|1 +(noun)|uremia|uraemia|azotaemia|pathology +azotemic|1 +(adj)|uremic|pathology +azotic|1 +(adj)|nitric|nitrous|nitrogen|N|atomic number 7 +azoturia|1 +(noun)|pathology +azt|1 +(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor|NRTI +aztec|1 +(noun)|Aztec|Nahuatl +aztec lily|1 +(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis +aztec marigold|1 +(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold +aztecan|1 +(noun)|Aztecan|Uto-Aztecan|Uto-Aztecan language +aztreonam|1 +(noun)|Azactam|antibiotic|antibiotic drug +azure|3 +(adj)|cerulean|sky-blue|bright blue|chromatic +(noun)|cerulean|sapphire|lazuline|sky-blue|blue|blueness +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +azure aster|1 +(noun)|aster +azygos|1 +(adj)|azygous|single +azygos vein|1 +(noun)|azygous vein|vena azygos|vein|vena|venous blood vessel +azygous|1 +(adj)|azygos|single +azygous vein|1 +(noun)|azygos vein|vena azygos|vein|vena|venous blood vessel +azymia|1 +(noun)|pathology +b|7 +(noun)|B|type B|group B|blood group|blood type +(noun)|Bacillus|Bacilli|B|eubacteria|eubacterium|true bacteria +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +(noun)|boron|B|atomic number 5|chemical element|element +(noun)|bel|B|sound unit +(noun)|barn|area unit|square measure +(noun)|B|letter|letter of the alphabet|alphabetic character +b-52|1 +(noun)|B-52|bomber +b-complex vitamin|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +b-flat clarinet|1 +(noun)|B-flat clarinet|licorice stick|clarinet +b-girl|1 +(noun)|B-girl|bar girl|woman|adult female +b-horizon|2 +(noun)|B-horizon|B horizon|soil horizon +(noun)| +b-meson|1 +(noun)|meson|mesotron +b. b. king|1 +(noun)|King|B. B. King|Riley B King|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player +b. f. skinner|1 +(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist +b.c.|2 +(adv)|BC|B.C.|before Christ +(adv)| +b.o.|1 +(noun)|body odor|body odour|B.O.|malodorousness|stinkiness|foulness|rankness +b.t.u.|2 +(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit|heat unit|energy unit +(noun)|British thermal unit|BTU|B.Th.U.|work unit|heat unit|energy unit +b.th.u.|1 +(noun)|British thermal unit|BTU|B.Th.U.|work unit|heat unit|energy unit +b battery|1 +(noun)|B battery|battery|electric battery +b cell|1 +(noun)|B cell|B lymphocyte|lymphocyte|lymph cell +b complex|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +b horizon|2 +(noun)|B-horizon|B horizon|soil horizon +(noun)| +b lymphocyte|1 +(noun)|B cell|B lymphocyte|lymphocyte|lymph cell +b vitamin|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +ba|2 +(noun)|barium|Ba|atomic number 56|metallic element|metal +(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree|baccalaureate +baa|2 +(noun)|cry +(verb)|bleat|blate|blat|utter|emit|let out|let loose +baa-lamb|1 +(noun)|lamb +baader meinhof gang|1 +(noun)|Baader Meinhof Gang|terrorist organization|terrorist group|foreign terrorist organization|FTO +baal|1 +(noun)|Baal|Semitic deity +baal merodach|1 +(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity +baas|2 +(noun)|foreman|chief|gaffer|honcho|boss +(noun)|baa|cry +baba|1 +(noun)|cake +baba au rhum|1 +(noun)|rum baba|baba +babacu oil|1 +(noun)|babassu oil|oil +babar|1 +(noun)|Babar|fictional character|fictitious character|character +babassu|1 +(noun)|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +babassu nut|1 +(noun)|seed +babassu oil|1 +(noun)|babacu oil|oil +babassu palm|1 +(noun)|babassu|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +babbitt|2 +(noun)|Babbitt metal|alloy|metal +(verb)|line +babbitt metal|1 +(noun)|Babbitt metal|babbitt|alloy|metal +babbitting|1 +(noun)|lining|facing +babble|5 +(noun)|babbling|lallation|gibberish|gibber +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|blather|smatter|blether|blither|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble +(verb)|ripple|guggle|burble|bubble|gurgle|sound|go +(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +babble out|1 +(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +babbler|2 +(noun)|chatterer|prater|chatterbox|magpie|spouter|speaker|talker|utterer|verbalizer|verbaliser +(noun)|cackler|oscine|oscine bird +babbling|3 +(adj)|blathering|blithering|jabbering|voluble +(adj)|sound|go +(noun)|babble|lallation|gibberish|gibber +babe|1 +(noun)|baby|infant|child|kid +babe didrikson|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +babe ruth|1 +(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer|baseball player +babe zaharias|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +babel|2 +(noun)|confusion +(noun)|Tower of Babel|Babel|ziggurat|zikkurat|zikurat +babelike|1 +(adj)|dependent +babesiidae|1 +(noun)|Babesiidae|family Babesiidae|protoctist family +babies'-breath|1 +(noun)|baby's breath|Gypsophila paniculata|flower +babies' slippers|1 +(noun)|bird's foot trefoil|bird's foot clover|bacon and eggs|Lotus corniculatus|subshrub|suffrutex +babinski|1 +(noun)|Babinski|Babinski reflex|Babinski sign|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +babinski reflex|1 +(noun)|Babinski|Babinski reflex|Babinski sign|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +babinski sign|1 +(noun)|Babinski|Babinski reflex|Babinski sign|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +babiroussa|1 +(noun)|babirusa|babirussa|Babyrousa Babyrussa|swine +babirusa|1 +(noun)|babiroussa|babirussa|Babyrousa Babyrussa|swine +babirussa|1 +(noun)|babirusa|babiroussa|Babyrousa Babyrussa|swine +babka|1 +(noun)|coffeecake|coffee cake +baboo|1 +(noun)|babu|man|adult male +baboon|1 +(noun)|Old World monkey|catarrhine +baboonish|1 +(adj)|Old World monkey|catarrhine +babu|1 +(noun)|baboo|man|adult male +babushka|1 +(noun)|headscarf +baby|7 +(noun)|babe|infant|child|kid +(noun)|sister|girl|miss|missy|young lady|young woman|fille +(noun)|young mammal +(noun)|offspring|progeny|issue +(noun)|child|person|individual|someone|somebody|mortal|human|soul +(noun)|undertaking|project|task|labor +(verb)|pamper|featherbed|cosset|cocker|coddle|mollycoddle|spoil|indulge|treat|handle|do by +baby's bed|1 +(noun)|baby bed|furniture|piece of furniture|article of furniture +baby's breath|1 +(noun)|babies'-breath|Gypsophila paniculata|flower +baby's dummy|1 +(noun)|comforter|pacifier|teething ring|device +baby's room|1 +(noun)|nursery|child's room +baby's tears|1 +(noun)|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover|ground cover +baby-boom generation|1 +(noun)|baby boom|generation +baby-faced|1 +(adj)|faced +baby-like|1 +(adv)|baby-wise +baby-sit|1 +(verb)|sit|guard +baby-sitter|2 +(noun)|babysitter|sitter|keeper +(noun)| +baby-walker|1 +(noun)|walker|go-cart|framework|frame|framing +baby-wise|1 +(adv)|baby-like +baby bed|1 +(noun)|baby's bed|furniture|piece of furniture|article of furniture +baby bird|1 +(noun)|nestling|young bird +baby blue-eyes|1 +(noun)|Nemophila menziesii|herb|herbaceous plant +baby boom|1 +(noun)|baby-boom generation|generation +baby boomer|1 +(noun)|boomer|person|individual|someone|somebody|mortal|human|soul +baby buggy|1 +(noun)|baby carriage|carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle +baby buster|1 +(noun)|buster|person|individual|someone|somebody|mortal|human|soul +baby carriage|1 +(noun)|baby buggy|carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle +baby doc|1 +(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator|potentate +baby doctor|1 +(noun)|pediatrician|pediatrist|paediatrician|specialist|medical specialist +baby farmer|1 +(noun)|keeper +baby grand|1 +(noun)|baby grand piano|parlor grand|parlor grand piano|parlour grand|parlour grand piano|grand piano|grand +baby grand piano|1 +(noun)|baby grand|parlor grand|parlor grand piano|parlour grand|parlour grand piano|grand piano|grand +baby minder|2 +(noun)|babyminder|minder|keeper +(noun)| +baby oil|1 +(noun)|ointment|unction|unguent|balm|salve +baby powder|1 +(noun)|powder +baby rose|1 +(noun)|multiflora|multiflora rose|Japanese rose|Rosa multiflora|rose +baby shoe|1 +(noun)|shoe +baby sitting|2 +(noun)|babysitting|care|attention|aid|tending +(noun)| +baby talk|3 +(noun)|babytalk|motherese|non-standard speech +(noun)|babytalk|non-standard speech +(noun)| +baby tears|1 +(noun)|baby's tears|Helxine soleirolia|Soleirolia soleirolii|groundcover|ground cover +baby tooth|1 +(noun)|primary tooth|deciduous tooth|milk tooth|tooth +babyhood|2 +(noun)|infancy|early childhood|time of life +(noun)|infancy|immaturity|immatureness +babyish|1 +(adj)|immature +babylon|1 +(noun)|Babylon|city|metropolis|urban center +babylonia|1 +(noun)|Babylonia|Chaldaea|Chaldea|geographical area|geographic area|geographical region|geographic region +babylonian|3 +(adj)|Babylonian|city|metropolis|urban center +(noun)|Babylonian|Semite +(noun)|Babylonian|cuneiform +babylonian captivity|1 +(noun)|Babylonian Captivity|exile|deportation|expatriation|transportation +babylonian weeping willow|1 +(noun)|weeping willow|Babylonian weeping willow|Salix babylonica|willow|willow tree +babyminder|1 +(noun)|baby minder|minder|keeper +babyrousa|1 +(noun)|Babyrousa|genus Babyrousa|mammal genus +babyrousa babyrussa|1 +(noun)|babirusa|babiroussa|babirussa|Babyrousa Babyrussa|swine +babysitter|1 +(noun)|baby-sitter|sitter|keeper +babysitting|1 +(noun)|baby sitting|care|attention|aid|tending +babytalk|2 +(noun)|baby talk|motherese|non-standard speech +(noun)|baby talk|non-standard speech +bacca|1 +(noun)|simple fruit|berry +baccalaureate|2 +(noun)|sermon|discourse|preaching +(noun)|bachelor's degree|academic degree|degree +baccarat|1 +(noun)|chemin de fer|card game|cards +baccate|2 +(adj)|berrylike|berry +(adj)|berried|bacciferous|fruitful +bacchanal|4 +(adj)|bacchanalian|bacchic|carousing|orgiastic|intoxicated |drunk|inebriated +(noun)|drunken reveler|drunken reveller|bacchant|drinker|imbiber|toper|juicer +(noun)|bacchant|fan|buff|devotee|lover +(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanalia|drunken revelry|revel|revelry +bacchanalia|2 +(noun)|Dionysia|Bacchanalia|festival|fete +(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanal|drunken revelry|revel|revelry +bacchanalian|1 +(adj)|bacchanal|bacchic|carousing|orgiastic|intoxicated |drunk|inebriated +bacchant|3 +(noun)|drunken reveler|drunken reveller|bacchanal|drinker|imbiber|toper|juicer +(noun)|bacchanal|fan|buff|devotee|lover +(noun)|votary +bacchante|1 +(noun)|votary +bacchantic|1 +(adj)|fan|buff|devotee|lover +baccharis|1 +(noun)|Baccharis|genus Baccharis|asterid dicot genus +baccharis halimifolia|1 +(noun)|groundsel tree|groundsel bush|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub|bush +baccharis pilularis|1 +(noun)|coyote brush|coyote bush|chaparral broom|kidney wort|Baccharis pilularis|shrub|bush +baccharis viminea|1 +(noun)|mule fat|Baccharis viminea|shrub|bush +bacchic|1 +(adj)|bacchanalian|bacchanal|carousing|orgiastic|intoxicated |drunk|inebriated +bacchus|1 +(noun)|Bacchus|Greco-Roman deity|Graeco-Roman deity +bacciferous|1 +(adj)|berried|baccate|fruitful +baccilar|1 +(adj)|bacillary|bacilliform|baculiform|rod-shaped|formed +baccivorous|1 +(adj)|herbivorous +baccy|1 +(noun)|tobacco|plant product|drug of abuse|street drug +bach|3 +(noun)|Bach|Johann Sebastian Bach|organist|composer +(noun)|Bach|music +(verb)|bachelor|live +bachelor|3 +(noun)|unmarried man|man|adult male +(noun)|knight bachelor|bachelor-at-arms|knight +(verb)|bach|live +bachelor's button|2 +(noun)|cornflower|bluebottle|Centaurea cyanus|flower +(noun)|globe amaranth|Gomphrena globosa|flower +bachelor's degree|1 +(noun)|baccalaureate|academic degree|degree +bachelor-at-arms|1 +(noun)|knight bachelor|bachelor|knight +bachelor girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille +bachelor of arts|1 +(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree|baccalaureate +bachelor of arts in library science|1 +(noun)|Bachelor of Arts in Library Science|ABLS|bachelor's degree|baccalaureate +bachelor of arts in nursing|1 +(noun)|Bachelor of Arts in Nursing|BAN|bachelor's degree|baccalaureate +bachelor of divinity|1 +(noun)|Bachelor of Divinity|BD|bachelor's degree|baccalaureate +bachelor of laws|1 +(noun)|Bachelor of Laws|LLB|law degree +bachelor of literature|1 +(noun)|Bachelor of Literature|BLitt|bachelor's degree|baccalaureate +bachelor of medicine|1 +(noun)|Bachelor of Medicine|MB|bachelor's degree|baccalaureate +bachelor of music|1 +(noun)|Bachelor of Music|BMus|bachelor's degree|baccalaureate +bachelor of naval science|1 +(noun)|Bachelor of Naval Science|BNS|bachelor's degree|baccalaureate +bachelor of science|1 +(noun)|Bachelor of Science|BS|SB|bachelor's degree|baccalaureate +bachelor of science in architecture|1 +(noun)|Bachelor of Science in Architecture|BSArch|bachelor's degree|baccalaureate +bachelor of science in engineering|1 +(noun)|Bachelor of Science in Engineering|bachelor's degree|baccalaureate +bachelor of theology|1 +(noun)|Bachelor of Theology|ThB|bachelor's degree|baccalaureate +bachelor party|1 +(noun)|stag party|smoker +bachelorhood|2 +(noun)|time of life +(noun)|marital status +bacillaceae|1 +(noun)|Bacillaceae|family Bacillaceae|bacteria family +bacillar|1 +(adj)|bacillary|eubacteria|eubacterium|true bacteria +bacillariophyceae|1 +(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class +bacillary|2 +(adj)|bacillar|eubacteria|eubacterium|true bacteria +(adj)|baccilar|bacilliform|baculiform|rod-shaped|formed +bacillary dysentery|1 +(noun)|shigellosis|dysentery +bacillary white diarrhea|1 +(noun)|pullorum disease|bacillary white diarrhoea|animal disease +bacillary white diarrhoea|1 +(noun)|pullorum disease|bacillary white diarrhea|animal disease +bacilli|2 +(noun)|Bacillus|Bacilli|B|eubacteria|eubacterium|true bacteria +(noun)|Bacillus|Bacilli|B|eubacteria|eubacterium|true bacteria +bacilliform|1 +(adj)|baccilar|bacillary|baculiform|rod-shaped|formed +bacillus|1 +(noun)|Bacillus|Bacilli|B|eubacteria|eubacterium|true bacteria +bacillus anthracis|1 +(noun)|Bacillus anthracis|anthrax|Bacillus|Bacilli|B|bioweapon|biological weapon|bioarm +bacillus globigii|1 +(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|hay bacillus|Bacillus|Bacilli|B +bacillus subtilis|1 +(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|hay bacillus|Bacillus|Bacilli|B +bacitracin|1 +(noun)|antibiotic|antibiotic drug +back|24 +(adj)|back |backmost|hindermost|hindmost|rearmost|rear|rearward|aft|posterior +(adj)|hind|hinder|posterior +(adj)|noncurrent +(noun)|dorsum|body part +(noun)|rear|side +(noun)|rear|position|place +(noun)|football player|footballer +(noun)|spinal column|vertebral column|spine|backbone|rachis|skeletal structure +(noun)|binding|book binding|cover|protective covering|protective cover|protection +(noun)|cloth covering +(noun)|backrest|support +(noun)|position +(verb)|endorse|indorse|plump for|plunk for|support|approve|O.K.|okay|sanction +(verb)|travel|go|move|locomote|back up|back off|back down|back out +(verb)|second|endorse|indorse|support|back up +(verb)|finance +(verb)|lie +(verb)|bet on|gage|stake|game|punt|bet|wager|play +(verb)|switch|change over|shift +(verb)|back up|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|strengthen +(adv)|backward|backwards|rearward|rearwards +(adv)|backward +(adv)|in reply +back-blast|2 +(noun)|backblast|backfire +(noun)| +back-channel|1 +(adj)|channel|communication channel|line +back-formation|1 +(noun)|word +back-geared|1 +(adj)|double-geared|geared +back-number|1 +(noun)|has-been|oldster|old person|senior citizen|golden ager +back-to-back|1 +(adj)|consecutive|succeeding +back and forth|1 +(adv)|backward and forward|to and fro +back away|1 +(verb)|retreat|pull back|back out|crawfish|crawfish out|pull in one's horns|withdraw +back brace|1 +(noun)|brace +back breaker|1 +(noun)|acid|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +back burner|1 +(noun)|precedence|precedency|priority +back channel|1 +(noun)|channel|communication channel|line +back circle|1 +(noun)|acrobatic stunt|acrobatic feat +back country|1 +(noun)|backwoods|boondocks|hinterland|country|rural area +back door|2 +(noun)|access +(noun)|back entrance|exterior door|outside door +back down|2 +(verb)|back up|back off|withdraw|retreat|pull away|draw back|recede|pull back|retire|move back +(verb)|chicken out|back off|pull out|bow out|retire|withdraw +back end|1 +(noun)|rear|backside|side|face +back entrance|1 +(noun)|back door|exterior door|outside door +back exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +back judge|1 +(noun)|football official +back matter|1 +(noun)|end matter|matter +back of beyond|1 +(noun)|depth +back off|2 +(verb)|back up|back down|withdraw|retreat|pull away|draw back|recede|pull back|retire|move back +(verb)|chicken out|pull out|back down|bow out|retire|withdraw +back out|2 +(verb)|back +(verb)|retreat|pull back|back away|crawfish|crawfish out|pull in one's horns|withdraw +back pack|2 +(noun)|backpack|knapsack|packsack|rucksack|haversack|bag +(noun)| +back porch|1 +(noun)|porch +back room|2 +(noun)|room +(noun)|backroom|facility|installation +back street|1 +(noun)|alley|alleyway|street +back talk|2 +(noun)|sass|sassing|backtalk|lip|mouth|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +(noun)| +back tooth|1 +(noun)|posterior|tooth +back up|5 +(verb)|support +(verb)|back off|back down|withdraw|retreat|pull away|draw back|recede|pull back|retire|move back +(verb)|back|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|copy|re-create +(verb)|clog|choke off|clog up|congest|choke|foul|obstruct|obturate|impede|occlude|jam|block|close up +backache|1 +(noun)|ache|aching +backband|1 +(noun)|band +backbeat|1 +(noun)|rhythm|beat|musical rhythm +backbench|1 +(noun)|seat +backbencher|1 +(noun)|legislator +backbend|1 +(noun)|acrobatic stunt|acrobatic feat +backbite|1 +(verb)|bitch|complain|kick|plain|sound off|quetch|kvetch +backbiter|1 +(noun)|defamer|maligner|slanderer|vilifier|libeler|traducer|detractor|disparager|depreciator|knocker +backblast|1 +(noun)|back-blast|backfire +backboard|2 +(noun)|basketball backboard|game equipment +(noun)|support +backbone|4 +(noun)|anchor|mainstay|keystone|linchpin|lynchpin|support +(noun)|grit|guts|moxie|sand|gumption|fortitude +(noun)|spinal column|vertebral column|spine|back|rachis|skeletal structure +(noun)|connection|connexion|connector|connecter|connective +backbreaking|1 +(adj)|arduous|grueling|gruelling|hard|heavy|laborious|punishing|toilsome|effortful +backchat|1 +(noun)|banter|raillery|give-and-take|repartee +backcloth|1 +(noun)|backdrop|background|scenery|scene +backcross|1 +(verb)|copulate|mate|pair|couple +backdate|1 +(verb)|effect +backdown|1 +(noun)|withdrawal|climb-down|retraction|abjuration|recantation +backdrop|1 +(noun)|background|backcloth|scenery|scene +backed|3 +(adj)|backed |hardbacked|hardback|hardbound|hardcover|high-backed|low-backed|razorback|razor-backed|straight-backed|stiff-backed +(adj)|backed up|supported +(adj)|coated +backed up|1 +(adj)|backed|supported +backer|1 +(noun)|angel|patron|sponsor|supporter +backfield|1 +(noun)|formation +backfire|5 +(noun)|explosion|detonation|blowup +(noun)|boomerang|miscalculation|misreckoning|misestimation +(verb)|backlash|react|oppose +(verb)|make noise|resound|noise +(verb)|burn|fire|burn down +backflow|1 +(noun)|backflowing|flow|flowing +backflowing|1 +(noun)|backflow|flow|flowing +backgammon|1 +(noun)|board game +backgammon board|1 +(noun)|board|gameboard +background|9 +(noun)|inheritance|heritage +(noun)|ground|view|aspect|prospect|scene|vista|panorama +(noun)|background knowledge|information +(noun)|background signal|noise|interference|disturbance +(noun)|accompaniment|concomitant|co-occurrence +(noun)|setting|scope|environment +(noun)|desktop|screen background|screen|CRT screen +(noun)|backdrop|backcloth|scenery|scene +(verb)|play down|downplay|stress|emphasize|emphasise|punctuate|accent|accentuate +background knowledge|1 +(noun)|background|information +background level|1 +(noun)|noise level|amplitude +background noise|1 +(noun)|ground noise|background|background signal +background processing|1 +(noun)|backgrounding|priority processing +background radiation|1 +(noun)|background|background signal +background signal|1 +(noun)|background|noise|interference|disturbance +backgrounder|1 +(noun)|press conference|news conference +backgrounding|1 +(noun)|background processing|priority processing +backhand|4 +(adj)|backhand |backhanded +(adj)|left-slanting|written +(noun)|backhand stroke|backhand shot|return +(verb)|hit +backhand drive|1 +(noun)|drive +backhand shot|1 +(noun)|backhand|backhand stroke|return +backhand stroke|1 +(noun)|backhand|backhand shot|return +backhanded|2 +(adj)|backhand +(adj)|indirect +backhoe|1 +(noun)|power shovel|excavator|digger|shovel +backing|3 +(noun)|backup|championship|patronage|blessing|approval|approving +(noun)|mount|layer|bed|strengthener|reinforcement +(noun)|support|financial support|funding|financial backing|resource +backlash|3 +(noun)|recoil|repercussion|rebound|movement|motion +(noun)|reaction +(verb)|backfire|react|oppose +backless|1 +(adj)|backless |low-cut +backlog|4 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|log|firewood +(noun)|reserve|stockpile|accumulation +(verb)|accumulate|cumulate|conglomerate|pile up|gather|amass +backmost|1 +(adj)|hindermost|hindmost|rearmost|back +backpack|2 +(noun)|back pack|knapsack|packsack|rucksack|haversack|bag +(verb)|pack|hike +backpacker|1 +(noun)|packer|hiker|tramp|tramper +backpacking|1 +(noun)|packing|carry +backpacking tent|1 +(noun)|pack tent|tent|collapsible shelter +backpedal|3 +(verb)|bicycle|cycle|bike|pedal|wheel +(verb)|step +(verb)|rethink +backplate|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +backrest|1 +(noun)|back|support +backroom|1 +(noun)|facility|installation +backroom boy|1 +(noun)|brain truster|adviser|advisor|consultant +backsaw|1 +(noun)|handsaw|carpenter's saw +backscatter|1 +(verb)|break up|disperse|scatter +backscratcher|2 +(noun)|opportunist|self-seeker +(noun)|scratcher +backseat|2 +(noun)|inferiority|lower status|lower rank +(noun)|seat +backseat driver|1 +(noun)|meddler +backsheesh|1 +(noun)|gratuity|tip|pourboire|baksheesh|bakshish|bakshis|fringe benefit|perquisite|perk +backside|2 +(noun)|rear|back end|side|face +(noun)|buttocks|nates|arse|butt|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +backslap|1 +(verb)|act|behave|do +backslapper|1 +(noun)|enthusiast|partisan|partizan +backslide|1 +(verb)|lapse|slip|drop off|drop away|fall away +backslider|1 +(noun)|recidivist|reversionist|wrongdoer|offender +backsliding|1 +(noun)|lapse|lapsing|relapse|relapsing|reversion|reverting|failure +backspace|1 +(verb)|type|typewrite +backspace character|1 +(noun)|control character|ASCII control character +backspace key|1 +(noun)|backspacer|key +backspacer|1 +(noun)|backspace key|key +backspin|1 +(noun)|spin +backstage|2 +(adj)|private +(noun)|wing|offstage|stage +backstair|1 +(adj)|backstairs|furtive|covert +backstairs|2 +(adj)|backstair|furtive|covert +(noun)|stairway|staircase|stairs|steps +backstay|1 +(noun)|stay +backstitch|2 +(noun)|stitch +(verb)|sew|run up|sew together|stitch +backstop|2 +(noun)|fence|fencing +(verb)|play +backstroke|2 +(noun)|swimming stroke +(verb)|swim +backstroker|1 +(noun)|swimmer +backswept|1 +(adj)|sweptback|backward +backswimmer|1 +(noun)|Notonecta undulata|hemipterous insect|bug|hemipteran|hemipteron +backsword|2 +(noun)|singlestick|fencing stick|stick +(noun)|sword|blade|brand|steel +backtalk|1 +(noun)|sass|sassing|back talk|lip|mouth|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +backtrack|1 +(verb)|turn back|double back|return|go back|get back|come back +backup|5 +(noun)|accretion|accumulation +(noun)|stand-in|substitute|relief|reliever|backup man|fill-in|peer|equal|match|compeer +(noun)|accompaniment|musical accompaniment|support|part|voice +(noun)|computer backup|duplicate|duplication +(noun)|backing|championship|patronage|blessing|approval|approving +backup file|1 +(noun)|computer file +backup man|1 +(noun)|stand-in|substitute|relief|reliever|backup|fill-in|peer|equal|match|compeer +backward|6 +(adj)|backward |backswept|sweptback|cacuminal|retroflex|converse|reversed|transposed|inverse|reverse|negative|rearward|reverse|receding|reflexive|self-referent|retracted|retral|retrograde|retroflex|retroflexed|returning|reversive|regardant|regressive|retrospective +(adj)|backward |bashful|blate|timid +(adj)|feebleminded|retarded +(adv)|back|backwards|rearward|rearwards +(adv)|backwards +(adv)|back +backward and forward|1 +(adv)|back and forth|to and fro +backwardness|1 +(noun)|retardation|mental retardation|slowness|subnormality|stupidity +backwards|2 +(adv)|back|backward|rearward|rearwards +(adv)|backward +backwash|3 +(noun)|slipstream|airstream|race|wash|flow +(noun)|aftermath|wake|consequence|effect|outcome|result|event|issue|upshot +(noun)|wake|wave|moving ridge +backwater|2 +(noun)|body of water|water +(noun)|region +backwoods|2 +(adj)|outback|remote|inaccessible |unaccessible +(noun)|back country|boondocks|hinterland|country|rural area +backwoodsman|1 +(noun)|frontiersman|mountain man|pioneer +backyard|1 +(noun)|yard|grounds|curtilage +bacon|3 +(noun)|cut of pork +(noun)|Bacon|Roger Bacon|monk|monastic|scientist|man of science +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +bacon-lettuce-tomato sandwich|1 +(noun)|BLT|sandwich +bacon and eggs|2 +(noun)|bird's foot trefoil|bird's foot clover|babies' slippers|Lotus corniculatus|subshrub|suffrutex +(noun)|dish +bacon rind|1 +(noun)|rind +bacon strip|1 +(noun)|bacon +bacteremia|1 +(noun)|bacteriemia|bacteriaemia|pathology +bacteremic|1 +(adj)|pathology +bacteria|1 +(noun)|bacterium|microorganism +bacteria bed|1 +(noun)|filter +bacteria family|1 +(noun)|family +bacteria genus|1 +(noun)|genus +bacteria order|1 +(noun)|ordering|order|ordination +bacteria species|1 +(noun)|species +bacteriacide|1 +(noun)|bactericide|chemical +bacteriaemia|1 +(noun)|bacteremia|bacteriemia|pathology +bacterial|1 +(adj)|microorganism +bacterial plaque|1 +(noun)|dental plaque|plaque +bacterial toxin|1 +(noun)|toxin +bactericidal|1 +(adj)|disinfectant|germicidal|antiseptic +bactericide|2 +(noun)|bacteriacide|chemical +(noun)|antibacterial|antibacterial drug|medicine|medication|medicament|medicinal drug +bacteriemia|1 +(noun)|bacteremia|bacteriaemia|pathology +bacteriochlorophyll|1 +(noun)|pigment +bacterioid|1 +(adj)|bacteroidal|bacteroid|bacterioidal|microorganism +bacterioidal|1 +(adj)|bacteroidal|bacteroid|bacterioid|microorganism +bacteriologic|1 +(adj)|bacteriological|medicine|medical specialty +bacteriological|1 +(adj)|bacteriologic|medicine|medical specialty +bacteriological warfare|1 +(noun)|germ warfare|biological warfare|BW|biological attack|biologic attack|bioattack +bacteriologist|1 +(noun)|biologist|life scientist +bacteriology|1 +(noun)|medicine|medical specialty +bacteriolysis|1 +(noun)|lysis +bacteriolytic|1 +(adj)|lysis +bacteriophage|1 +(noun)|phage|virus +bacteriophagic|1 +(adj)|bacteriophagous|virus +bacteriophagous|1 +(adj)|bacteriophagic|virus +bacteriostasis|1 +(noun)|organic process|biological process +bacteriostat|1 +(noun)|agent +bacteriostatic|1 +(adj)|organic process|biological process +bacterise|1 +(verb)|bacterize|subject +bacterium|1 +(noun)|bacteria|microorganism +bacterize|1 +(verb)|bacterise|subject +bacteroid|2 +(adj)|bacteroidal|bacterioidal|bacterioid|microorganism +(noun)|bacteria|bacterium +bacteroidaceae|1 +(noun)|Bacteroidaceae|family Bacteroidaceae|bacteria family +bacteroidal|1 +(adj)|bacteroid|bacterioidal|bacterioid|microorganism +bacteroides|1 +(noun)|Bacteroides|genus Bacteroides|bacteria genus +bactrian camel|1 +(noun)|Bactrian camel|Camelus bactrianus|camel +baculiform|1 +(adj)|baccilar|bacillary|bacilliform|rod-shaped|formed +bad|17 +(adj)|bad |atrocious|abominable|awful|dreadful|painful|terrible|unspeakable|corked|corky|deplorable|distressing|lamentable|pitiful|sad|sorry|fearful|frightful|terrible|hard|tough|hopeless|horrid|icky|crappy|lousy|rotten|shitty|stinking|stinky|incompetent|unskilled|mediocre|mischievous|naughty|negative|poor|pretty|rubber|no-good|severe|swingeing|unfavorable|unsuitable|ill|uncool|disobedient|evil|wicked|unfavorable|unfavourable|worse|worst +(adj)|big|intense +(adj)|tough|uncomfortable +(adj)|spoiled|spoilt|stale +(adj)|uncollectible|invalid +(adj)|inferior +(adj)|nonstandard +(adj)|insecure|risky|high-risk|speculative|unsound +(adj)|unfit|unsound|unhealthy +(adj)|harmful +(adj)|sorry|unhappy +(adj)|immoral|evil |wicked +(adj)|forged|counterfeit |imitative +(adj)|defective|malfunctioning |nonfunctional +(noun)|badness|quality +(adv)|badly +(adv)|badly +bad-tempered|1 +(adj)|crabbed|crabby|cross|fussy|grouchy|grumpy|ill-tempered|ill-natured +bad block|1 +(noun)|block +bad blood|1 +(noun)|animosity|animus|hostility|enmity|ill will +bad check|1 +(noun)|bad cheque|check|bank check|cheque +bad cheque|1 +(noun)|bad check|check|bank check|cheque +bad condition|1 +(noun)|unfitness|poor shape|ill health|unhealthiness|health problem +bad debt|1 +(noun)|debt +bad egg|1 +(noun)|bad person +bad fairy|1 +(noun)|evil spirit +bad guy|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +bad hat|1 +(noun)|troublemaker|trouble maker|troubler|mischief-maker|unwelcome person|persona non grata +bad lands|2 +(noun)|Bad Lands|Badlands|geographical area|geographic area|geographical region|geographic region +(noun)|badlands|land|ground|soil +bad luck|3 +(noun)|misfortune|tough luck|ill luck|fortune|destiny|fate|luck|lot|circumstances|portion +(noun)|mischance|mishap|luck|fortune|chance|hazard +(noun)|misfortune|trouble +bad manners|1 +(noun)|ill-breeding|impoliteness +bad person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +bad temper|1 +(noun)|ill temper|anger|choler|ire +bad weather|1 +(noun)|inclemency|inclementness|weather|weather condition|atmospheric condition +badaga|2 +(noun)|Badaga|Dravidian +(noun)|Badaga|Kannada|Kanarese +baddeleyite|1 +(noun)|mineral +baddie|1 +(noun)|villain|character|role|theatrical role|part|persona +bade|1 +(noun)|Bade|West Chadic +badge|3 +(noun)|emblem|allegory +(noun)|feature|characteristic +(verb)|tag|label|mark +badger|3 +(noun)|musteline mammal|mustelid|musteline +(verb)|tease|pester|bug|beleaguer|torment|rag|bedevil|crucify|dun|frustrate +(verb)|persuade +badger dog|1 +(noun)|dachshund|dachsie|hunting dog +badger skunk|1 +(noun)|hog-nosed skunk|hognosed skunk|rooter skunk|Conepatus leuconotus|skunk|polecat|wood pussy +badger state|1 +(noun)|Wisconsin|Badger State|WI|American state +badgerer|1 +(noun)|heckler|troublemaker|trouble maker|troubler|mischief-maker|bad hat +badgering|1 +(noun)|worrying|torment|bedevilment|harassment|molestation +badinage|1 +(noun)|banter|raillery|give-and-take|backchat +badlands|2 +(noun)|land|ground|soil +(noun)|Bad Lands|Badlands|geographical area|geographic area|geographical region|geographic region +badlands national park|1 +(noun)|Badlands National Park|national park +badly|7 +(adv)|severely|gravely|seriously +(adv)|ill|poorly +(adv)|mischievously|naughtily +(adv)|bad +(adv)|bad +(adv)|disadvantageously +(adv)|ill +badminton|1 +(noun)|court game +badminton court|1 +(noun)|court +badminton equipment|1 +(noun)|sports equipment|sporting goods +badminton racket|1 +(noun)|badminton racquet|battledore|racket|racquet +badminton racquet|1 +(noun)|badminton racket|battledore|racket|racquet +badmouth|1 +(verb)|malign|traduce|drag through the mud|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +badness|3 +(noun)|bad|quality +(noun)|severity|intensity|intensiveness +(noun)|naughtiness|mischievousness|disobedience +baeda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +baedeker|2 +(noun)|Baedeker|Karl Baedeker|publisher +(noun)|travel guidebook|itinerary +baffin bay|1 +(noun)|Baffin Bay|sea +baffin island|1 +(noun)|Baffin Island|island +baffle|4 +(noun)|baffle board|plate +(verb)|perplex|vex|stick|get|puzzle|mystify|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|regulate|restrict|restrain|trammel|limit|bound|confine|throttle +baffle board|1 +(noun)|baffle|plate +baffled|2 +(adj)|befuddled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed +(noun)|people +bafflement|1 +(noun)|bewilderment|obfuscation|puzzlement|befuddlement|mystification|bemusement|confusion|mental confusion|confusedness|disarray +baffling|1 +(adj)|knotty|problematic|problematical|difficult |hard +bag|14 +(noun)|container +(noun)|indefinite quantity +(noun)|base|baseball equipment +(noun)|handbag|pocketbook|purse|container +(noun)|bagful|containerful +(noun)|traveling bag|grip|suitcase|baggage|luggage +(noun)|old bag|unpleasant woman|disagreeable woman +(noun)|udder|mammary gland|mamma +(noun)|cup of tea|dish|activity +(verb)|capture|catch +(verb)|sag|droop|swag|flag +(verb)|bulge|stick out|protrude|jut out|jut|project +(verb)|pocket|steal +(verb)|pack +bag lady|1 +(noun)|homeless|homeless person +bag of tricks|1 +(noun)|know-how +bagascosis|1 +(noun)|bagassosis|alveolitis +bagasse|1 +(noun)|pulp +bagassosis|1 +(noun)|bagascosis|alveolitis +bagatelle|3 +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|fluff|frippery|frivolity|triviality|trivia|trifle|small beer +(noun)|bar billiards|table game +bagdad|1 +(noun)|Baghdad|Bagdad|capital of Iraq|national capital +bagel|1 +(noun)|beigel|bun|roll +bagful|1 +(noun)|bag|containerful +baggage|2 +(noun)|luggage|case +(noun)|woman|adult female +baggage car|1 +(noun)|luggage van|car|railcar|railway car|railroad car +baggageman|1 +(noun)|attendant|attender|tender +bagger|2 +(noun)|packer|boxer|workman|working man|working person +(noun)|machine +bagging|1 +(noun)|sacking|fabric|cloth|material|textile +baggy|1 +(adj)|loose-fitting|loose +baghdad|1 +(noun)|Baghdad|Bagdad|capital of Iraq|national capital +bagman|2 +(noun)|traveling salesman|travelling salesman|commercial traveler|commercial traveller|roadman|salesman|spokesperson|interpreter|representative|voice +(noun)|racketeer +bagnio|2 +(noun)|whorehouse|brothel|bordello|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building|edifice +(noun)|bathhouse|house +bagpipe|1 +(noun)|pipes|wind instrument|wind +bagpiper|1 +(noun)|piper|musician|instrumentalist|player +baguet|1 +(noun)|baguette|French bread +baguette|1 +(noun)|baguet|French bread +bahai|2 +(adj)|Bahai|religion|faith|religious belief +(noun)|Bahai|disciple|adherent|teacher|instructor +bahaism|1 +(noun)|Bahaism|religion|faith|religious belief +bahama grass|1 +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass +bahama islands|1 +(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country|state|land +bahamas|1 +(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country|state|land +bahamian|2 +(adj)|Bahamian|country|state|land +(noun)|Bahamian|West Indian +bahamian dollar|1 +(noun)|Bahamian dollar|dollar +bahasa|1 +(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay +bahasa indonesia|1 +(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay +bahasa kebangsaan|1 +(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay +bahasa malaysia|1 +(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay +bahasa melayu|1 +(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay +bahia coquilla|1 +(noun)|piassava palm|pissaba palm|Bahia piassava|Attalea funifera|feather palm +bahia grass|1 +(noun)|Bahia grass|Paspalum notatum|grass +bahia piassava|1 +(noun)|piassava palm|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm +bahrain|2 +(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island +(noun)|Bahrain|State of Bahrain|Bahrein|Asian country|Asian nation +bahrain dinar|1 +(noun)|Bahrain dinar|dinar|Bahrainian monetary unit +bahrain island|1 +(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island +bahraini|2 +(adj)|Bahraini|island +(noun)|Bahraini|Bahreini|Arab|Arabian +bahrainian monetary unit|1 +(noun)|Bahrainian monetary unit|monetary unit +bahrein|2 +(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island +(noun)|Bahrain|State of Bahrain|Bahrein|Asian country|Asian nation +bahrein island|1 +(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island +bahreini|1 +(noun)|Bahraini|Bahreini|Arab|Arabian +baht|1 +(noun)|tical|Thai monetary unit +bai|1 +(noun)|Bai|Baic|Tibeto-Burman|Tibeto-Burman language +baic|1 +(noun)|Bai|Baic|Tibeto-Burman|Tibeto-Burman language +bail|7 +(noun)|bail bond|bond|recognizance|recognisance +(noun)|legal system +(verb)|free|liberate|release|unloose|unloosen|loose +(verb)|hand over|fork over|fork out|fork up|turn in|get in|deliver|render +(verb)|guarantee|vouch +(verb)|empty +(verb)|remove|take|take away|withdraw +bail bond|1 +(noun)|bail|bond|recognizance|recognisance +bail out|2 +(verb)|free|liberate|release|unloose|unloosen|loose +(verb)|bale out|remove|take|take away|withdraw +bailable|2 +(adj)|permissive +(adj)|eligible +bailee|1 +(noun)|agent +bailey|4 +(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer|vocalist|vocalizer|vocaliser +(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer|lexicologist +(noun)|court|courtyard +(noun)|rampart|bulwark|wall +bailey bridge|1 +(noun)|Bailey bridge|bridge|span +bailiff|1 +(noun)|official|functionary +bailiffship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +bailiwick|2 +(noun)|jurisdiction +(noun)|discipline|subject|subject area|subject field|field|field of study|study|branch of knowledge|knowledge domain|knowledge base +bailment|1 +(noun)|delivery|livery|legal transfer +bailor|1 +(noun)|deliverer +bain-marie|1 +(noun)|pan +baiomys|1 +(noun)|Baiomys|genus Baiomys|mammal genus +baiomys taylori|1 +(noun)|pygmy mouse|Baiomys taylori|wood mouse +bairava|1 +(noun)|Bairava|Siva|Shiva +bairdiella|1 +(noun)|Bairdiella|genus Bairdiella|fish genus +bairdiella chrysoura|1 +(noun)|silver perch|mademoiselle|Bairdiella chrysoura|drum|drumfish +bairiki|1 +(noun)|Tarawa|Bairiki|national capital +bairn|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +baisa|1 +(noun)|baiza|Omani monetary unit +baisakh|1 +(noun)|Baisakh|Vaisakha|Hindu calendar month +bait|5 +(noun)|come-on|hook|lure|sweetener|temptation|enticement +(noun)|decoy|lure|device +(verb)|tease|razz|rag|cod|tantalize|tantalise|taunt|twit|rally|ride|mock|bemock +(verb)|entice|lure|tempt +(verb)|assail|assault|set on|attack +bait and switch|1 +(noun)|selling|merchandising|marketing +bait casting|1 +(noun)|casting|cast +baiting|1 +(noun)|harassment|molestation +baiza|1 +(noun)|baisa|Omani monetary unit +baize|1 +(noun)|fabric|cloth|material|textile +baja california|1 +(noun)|Lower California|Baja California|peninsula +bake|3 +(verb)|cook +(verb)|create from raw material|create from raw stuff +(verb)|broil|heat|heat up +bakeapple|1 +(noun)|cloudberry|dwarf mulberry|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +baked|3 +(adj)|adust|parched|scorched|sunbaked|dry +(adj)|cooked +(adj)|burned|burnt|tempered |treated|hardened|toughened +baked-apple berry|1 +(noun)|cloudberry|dwarf mulberry|bakeapple|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +baked alaska|1 +(noun)|baked Alaska|dessert|sweet|afters +baked egg|1 +(noun)|shirred egg|egg en cocotte|dish +baked goods|1 +(noun)|food +baked potato|1 +(noun)|potato|white potato|Irish potato|murphy|spud|tater +bakehouse|1 +(noun)|bakery|bakeshop|workplace|work|shop|store +bakelite|1 +(noun)|Bakelite|plastic +baker|2 +(noun)|merchant|merchandiser +(noun)|bread maker|skilled worker|trained worker +baker's dozen|1 +(noun)|thirteen|13|XIII|long dozen|large integer +baker's eczema|1 +(noun)|allergic eczema +baker's yeast|1 +(noun)|brewer's yeast|Saccharomyces cerevisiae|yeast +bakersfield|1 +(noun)|Bakersfield|city|metropolis|urban center +bakery|1 +(noun)|bakeshop|bakehouse|workplace|work|shop|store +bakeshop|1 +(noun)|bakery|bakehouse|workplace|work|shop|store +baking|3 +(adj)|baking hot|hot +(noun)|creating from raw materials +(noun)|cooking|cookery|preparation +baking-powder biscuit|1 +(noun)|biscuit +baking chocolate|1 +(noun)|bitter chocolate|cooking chocolate|chocolate +baking hot|1 +(adj)|baking|hot +baking powder|1 +(noun)|leaven|leavening +baking soda|1 +(noun)|bicarbonate of soda|sodium hydrogen carbonate|sodium bicarbonate|saleratus|bicarbonate|hydrogen carbonate +bakke decision|1 +(noun)|Bakke decision|opinion|ruling +baklava|1 +(noun)|pastry +baksheesh|1 +(noun)|gratuity|tip|pourboire|bakshish|bakshis|backsheesh|fringe benefit|perquisite|perk +bakshis|1 +(noun)|gratuity|tip|pourboire|baksheesh|bakshish|backsheesh|fringe benefit|perquisite|perk +bakshish|1 +(noun)|gratuity|tip|pourboire|baksheesh|bakshis|backsheesh|fringe benefit|perquisite|perk +baku|1 +(noun)|Baku|capital of Azerbaijan|capital|port +bakunin|1 +(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist|nihilist|syndicalist +balaclava|1 +(noun)|balaclava helmet|cap +balaclava helmet|1 +(noun)|balaclava|cap +balaena|1 +(noun)|Balaena|genus Balaena|mammal genus +balaena mysticetus|1 +(noun)|bowhead|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale|whalebone whale +balaeniceps|1 +(noun)|Balaeniceps|genus Balaeniceps|bird genus +balaeniceps rex|1 +(noun)|shoebill|shoebird|Balaeniceps rex|wading bird|wader +balaenicipitidae|1 +(noun)|Balaenicipitidae|family Balaenicipitidae|bird family +balaenidae|1 +(noun)|Balaenidae|family Balaenidae|mammal family +balaenoptera|1 +(noun)|Balaenoptera|genus Balaenoptera|mammal genus +balaenoptera acutorostrata|1 +(noun)|lesser rorqual|piked whale|minke whale|Balaenoptera acutorostrata|rorqual|razorback +balaenoptera borealis|1 +(noun)|sei whale|Balaenoptera borealis|rorqual|razorback +balaenoptera musculus|1 +(noun)|blue whale|sulfur bottom|Balaenoptera musculus|baleen whale|whalebone whale +balaenoptera physalus|1 +(noun)|finback|finback whale|fin whale|common rorqual|Balaenoptera physalus|rorqual|razorback +balaenopteridae|1 +(noun)|Balaenopteridae|family Balaenopteridae|mammal family +balagan|1 +(noun)|chaos|pandemonium|bedlam|topsy-turvydom|topsy-turvyness +balalaika|1 +(noun)|chordophone +balance|16 +(noun)|equilibrium +(noun)|scale|weighing machine +(noun)|equality +(noun)|proportion|placement|arrangement +(noun)|equilibrium|equipoise|counterbalance|structure|construction +(noun)|remainder|residual|residue|residuum|rest|part|portion|component part|component +(noun)|remainder|difference +(noun)|Libra|Balance|person|individual|someone|somebody|mortal|human|soul +(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|symmetry|symmetricalness|correspondence|spatial property|spatiality +(noun)|counterweight|counterbalance|counterpoise|equalizer|equaliser|weight +(noun)|balance wheel|wheel +(verb)|equilibrate|equilibrize|equilibrise|match|fit +(verb)|account|calculate +(verb)|poise|hold|carry|bear +(verb)|be +balance-of-payments problem|1 +(noun)|problem|job +balance beam|1 +(noun)|beam|gymnastic apparatus|exerciser +balance of international payments|1 +(noun)|balance of payments|accounting +balance of payments|1 +(noun)|balance of international payments|accounting +balance of power|1 +(noun)|equilibrium +balance of trade|1 +(noun)|trade balance|visible balance|trade gap|balance +balance sheet|1 +(noun)|record +balance wheel|1 +(noun)|balance|wheel +balanced|2 +(adj)|balanced |counterbalanced|counterpoised|harmonious|proportionate|symmetrical|stable|well-balanced|poised +(adj)|equal +balanced budget|1 +(noun)|budget +balanced diet|1 +(noun)|diet +balancer|2 +(noun)|acrobat +(noun)|halter|haltere|wing +balanchine|1 +(noun)|Balanchine|George Balanchine|dancer|professional dancer|choreographer +balancing|1 +(noun)|reconciliation|equalization|equalisation|leveling +balanidae|1 +(noun)|Balanidae|family Balanidae|arthropod family +balanitis|1 +(noun)|inflammation|redness|rubor +balanoposthitis|1 +(noun)|inflammation|redness|rubor +balanus|1 +(noun)|Balanus|genus Balanus|arthropod genus +balanus balanoides|1 +(noun)|acorn barnacle|rock barnacle|Balanus balanoides|barnacle|cerriped|cerripede +balarama|1 +(noun)|Balarama|Rama +balas|1 +(noun)|balas ruby|spinel ruby|ruby spinel +balas ruby|1 +(noun)|balas|spinel ruby|ruby spinel +balata|2 +(noun)|gutta balata|gum +(noun)|balata tree|beefwood|bully tree|Manilkara bidentata|tree +balata tree|1 +(noun)|balata|beefwood|bully tree|Manilkara bidentata|tree +balaton|1 +(noun)|Balaton|Lake Balaton|Plattensee|lake +balboa|2 +(noun)|Panamanian monetary unit +(noun)|Balboa|Vasco Nunez de Balboa|navigator +balbriggan|1 +(noun)|knit|knitted fabric +balconied|1 +(adj)|balconied +balcony|2 +(noun)|structure|construction +(noun)|structure|construction +bald|4 +(adj)|barefaced|overt |open +(adj)|bare|denuded|denudate|uncovered +(adj)|bald-headed|bald-pated|hairless +(verb)|turn|grow +bald-faced hornet|1 +(noun)|white-faced hornet|Vespula maculata|hornet +bald-headed|1 +(adj)|bald|bald-pated|hairless +bald-pated|1 +(adj)|bald|bald-headed|hairless +bald cypress|2 +(noun)|pond cypress|Taxodium ascendens|cypress +(noun)|swamp cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress +bald eagle|1 +(noun)|American eagle|Haliaeetus leucocephalus|eagle|bird of Jove +baldachin|1 +(noun)|canopy +balder|1 +(noun)|Balder|Baldr|Norse deity +balderdash|1 +(noun)|fiddle-faddle|piffle|nonsense|bunk|nonsensicality|meaninglessness|hokum +baldhead|1 +(noun)|baldpate|baldy|person|individual|someone|somebody|mortal|human|soul +balding|1 +(adj)|hairless +baldness|1 +(noun)|phalacrosis|hairlessness|depilation +baldpate|2 +(noun)|baldhead|baldy|person|individual|someone|somebody|mortal|human|soul +(noun)|American widgeon|Anas americana|widgeon|wigeon|Anas penelope +baldr|1 +(noun)|Balder|Baldr|Norse deity +baldric|1 +(noun)|baldrick|belt +baldrick|1 +(noun)|baldric|belt +baldwin|3 +(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer|author +(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman|solon|national leader +(noun)|Baldwin|eating apple|dessert apple +baldy|1 +(noun)|baldhead|baldpate|person|individual|someone|somebody|mortal|human|soul +bale|3 +(noun)|bundle|sheaf +(noun)|Basel|Basle|Bale|city|metropolis|urban center +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +bale out|1 +(verb)|bail out|remove|take|take away|withdraw +balearic islands|1 +(noun)|Balearic Islands|archipelago +baleen|1 +(noun)|whalebone|horn +baleen whale|1 +(noun)|whalebone whale|whale +balefire|1 +(noun)|bonfire|fire +baleful|2 +(adj)|baneful|maleficent +(adj)|forbidding|menacing|minacious|minatory|ominous|sinister|threatening|ugly|alarming +balefulness|1 +(noun)|maleficence|mischief|evil|evilness +balenciaga|1 +(noun)|Balenciaga|Cristobal Balenciaga|couturier|fashion designer|clothes designer|designer +balfour|1 +(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman|solon|national leader +bali|1 +(noun)|Bali|island +balibago|1 +(noun)|mahoe|majagua|mahagua|purau|Hibiscus tiliaceus|hibiscus +balinese|1 +(noun)|Balinese|Indonesian|Bahasa Indonesia|Bahasa +baling wire|1 +(noun)|wire +balistes|1 +(noun)|Balistes|genus Balistes|fish genus +balistes vetula|1 +(noun)|queen triggerfish|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish +balistidae|1 +(noun)|Balistidae|family Balistidae|fish family +balk|5 +(noun)|baulk|area|expanse|surface area +(noun)|hindrance|deterrent|impediment|baulk|check|handicap|difficulty +(noun)|rafter|baulk|beam +(noun)|pitch|delivery +(verb)|resist|baulk|jib|disobey +balkan|2 +(adj)|Balkan|European country|European nation|European|peninsula|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Balkan|European +balkan country|1 +(noun)|Balkan country|Balkan nation|Balkan state|European country|European nation +balkan mountain range|1 +(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +balkan mountains|1 +(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +balkan nation|1 +(noun)|Balkan country|Balkan nation|Balkan state|European country|European nation +balkan peninsula|1 +(noun)|Balkan Peninsula|Balkans|peninsula +balkan state|1 +(noun)|Balkan country|Balkan nation|Balkan state|European country|European nation +balkan wars|1 +(noun)|Balkan Wars|war|warfare +balkanise|1 +(verb)|Balkanize|Balkanise|divide|split|split up|separate|dissever|carve up +balkanize|1 +(verb)|Balkanize|Balkanise|divide|split|split up|separate|dissever|carve up +balkans|4 +(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Balkan Peninsula|Balkans|peninsula +(noun)|Balkans|European country|European nation +(noun)|Balkan|European +balker|1 +(noun)|baulker|noncompliant|person|individual|someone|somebody|mortal|human|soul +balkiness|1 +(noun)|intractability|intractableness +balking|1 +(adj)|balky|intractable +balkline|1 +(noun)|baulk-line|string line|line +balky|1 +(adj)|balking|intractable +ball|13 +(noun)|game equipment +(noun)|musket ball|shot|pellet +(noun)|globe|orb|sphere +(noun)|dance +(noun)|testis|testicle|orchis|ballock|bollock|nut|egg|male reproductive gland|gonad|sex gland +(noun)|plaything|toy +(noun)|Ball|Lucille Ball|actress|comedienne +(noun)|clod|glob|lump|clump|chunk|agglomeration +(noun)|dance +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|baseball|baseball game|ball game|ballgame +(noun)|pitch|delivery +(verb)|wind|wrap|roll|twine +ball-and-socket joint|2 +(noun)|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint|articulatio synovialis|diarthrosis +(noun)|joint +ball-breaker|2 +(noun)|ball-buster|woman|adult female +(noun)|ball-buster|job|task|chore +ball-buster|2 +(noun)|ball-breaker|woman|adult female +(noun)|ball-breaker|job|task|chore +ball-hawking|1 +(adj)|skilled +ball-peen hammer|1 +(noun)|hammer +ball-shaped|1 +(adj)|global|globose|globular|orbicular|spheric|spherical|round |circular +ball and chain|1 +(noun)|shackle|bond|hamper|trammel|trammels +ball bearing|1 +(noun)|needle bearing|roller bearing|bearing +ball boy|1 +(noun)|male child|boy +ball carrier|1 +(noun)|football player|footballer +ball cartridge|1 +(noun)|cartridge +ball club|1 +(noun)|baseball club|club|nine|baseball team +ball cock|2 +(noun)|ballcock|regulator +(noun)| +ball fern|1 +(noun)|squirrel's-foot fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia +ball field|1 +(noun)|baseball field|diamond|playing field|athletic field|playing area|field +ball game|2 +(noun)|ballgame|field game +(noun)|ballgame|new ballgame|situation|state of affairs +ball gown|1 +(noun)|gown +ball hawk|1 +(noun)|athlete|jock +ball hawking|1 +(noun)|maneuver|manoeuvre|play +ball nettle|1 +(noun)|horse nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade +ball nightshade|1 +(noun)|horse nettle|ball nettle|bull nettle|Solanum carolinense|nightshade +ball of fire|2 +(noun)|powerhouse|human dynamo|fireball|actor|doer|worker +(noun)|go-getter|whizz-kid|whiz-kid|actor|doer|worker +ball over|1 +(verb)|shock|stun|floor|blow out of the water|take aback|surprise +ball up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +ball valve|1 +(noun)|valve +ballad|2 +(noun)|lay|song +(noun)|lay|poem|verse form +ballad maker|1 +(noun)|songwriter|songster|composer +ballade|1 +(noun)|poem|verse form +balladeer|1 +(noun)|crooner|singer|vocalist|vocalizer|vocaliser +ballast|6 +(noun)|substance|matter +(noun)|gravel|crushed rock +(noun)|attribute +(noun)|ballast resistor|barretter|resistor|resistance +(noun)|light ballast|electrical device +(verb)|brace|steady|stabilize|stabilise +ballast resistor|1 +(noun)|ballast|barretter|resistor|resistance +ballcock|1 +(noun)|ball cock|regulator +balldress|1 +(noun)|formalwear|eveningwear|evening dress|evening clothes +baller mistress|1 +(noun)|dancer|professional dancer +ballerina|1 +(noun)|danseuse|ballet dancer +ballet|2 +(noun)|concert dance|stage dancing|choreography +(noun)|music +ballet company|1 +(noun)|company|troupe +ballet dancer|1 +(noun)|dancer|professional dancer +ballet master|1 +(noun)|dancer|professional dancer +ballet position|1 +(noun)|position|posture|attitude +ballet skirt|1 +(noun)|tutu|skirt +balletic|1 +(adj)|music +balletomane|1 +(noun)|enthusiast|partisan|partizan +balletomania|1 +(noun)|enthusiasm +ballgame|2 +(noun)|new ballgame|situation|state of affairs +(noun)|ball game|field game +ballista|1 +(noun)|catapult|arbalest|arbalist|bricole|mangonel|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +ballistic|1 +(adj)|trajectory|flight +ballistic capsule|1 +(noun)|spacecraft|space vehicle|craft|satellite|artificial satellite|orbiter +ballistic fingerprinting|1 +(noun)|ballistic identification|bullet fingerprinting|identification +ballistic galvanometer|1 +(noun)|moving-coil galvanometer +ballistic identification|1 +(noun)|ballistic fingerprinting|bullet fingerprinting|identification +ballistic missile|1 +(noun)|missile +ballistic missile defense organization|1 +(noun)|Ballistic Missile Defense Organization|BMDO|agency|federal agency|government agency|bureau|office|authority +ballistic pendulum|1 +(noun)|physical pendulum|compound pendulum +ballistic trajectory|1 +(noun)|ballistics|trajectory|flight +ballistics|2 +(noun)|ballistic trajectory|trajectory|flight +(noun)|dynamics|kinetics +ballistite|1 +(noun)|smokeless powder|Ballistite|explosive +ballistocardiogram|1 +(noun)|graph|graphical record +ballistocardiograph|1 +(noun)|cardiograph|medical instrument +ballock|1 +(noun)|testis|testicle|orchis|ball|bollock|nut|egg|male reproductive gland|gonad|sex gland +balloon|4 +(noun)|plaything|toy +(noun)|lighter-than-air craft +(verb)|fly|aviate|pilot +(verb)|inflate|billow|expand +balloon bomb|1 +(noun)|Fugo|bomb +balloon flower|1 +(noun)|scented penstemon|Penstemon palmeri|wildflower|wild flower +balloon sail|1 +(noun)|sail|canvas|canvass|sheet +balloon seat|1 +(noun)|bell seat|seat +balloon vine|1 +(noun)|heart pea|Cardiospermum halicacabum|soapberry vine +balloonfish|1 +(noun)|Diodon holocanthus|spiny puffer +ballooning|1 +(noun)|flight|flying +balloonist|1 +(noun)|skilled worker|trained worker +ballot|3 +(noun)|document|written document|papers +(noun)|vote|voting|balloting|choice|selection|option|pick +(verb)|vote +ballot box|1 +(noun)|box +ballota|1 +(noun)|Ballota|genus Ballota|asterid dicot genus +ballota nigra|1 +(noun)|black horehound|black archangel|fetid horehound|stinking horehound|Ballota nigra|herb|herbaceous plant +balloting|1 +(noun)|vote|ballot|voting|choice|selection|option|pick +ballottement|1 +(noun)|palpation|tactual exploration +ballpark|2 +(noun)|park|stadium|bowl|arena|sports stadium +(noun)|approximate range|scope|range|reach|orbit|compass|ambit +ballpen|1 +(noun)|ballpoint|ballpoint pen|Biro|pen +ballplayer|1 +(noun)|baseball player|athlete|jock|player|participant +ballpoint|1 +(noun)|ballpoint pen|ballpen|Biro|pen +ballpoint pen|1 +(noun)|ballpoint|ballpen|Biro|pen +ballroom|1 +(noun)|dance hall|dance palace|room +ballroom dance|1 +(noun)|ballroom dancing|social dancing +ballroom dancing|1 +(noun)|ballroom dance|social dancing +ballroom music|1 +(noun)|dance music|danceroom music|popular music|popular music genre +balls-up|2 +(noun)|ballup|cockup|mess-up|mistake|error|fault +(noun)|ballup|cockup|mess-up|mistake|error|fault +ballup|1 +(noun)|balls-up|cockup|mess-up|mistake|error|fault +bally|1 +(adj)|blinking|bloody|blooming|crashing|flaming|fucking|unmitigated +ballyhoo|2 +(noun)|hoopla|hype|plug|promotion|publicity|promotional material|packaging +(verb)|advertise|publicize|advertize|publicise +ballyhoo artist|1 +(noun)|sensationalist|publicist|publicizer|publiciser +ballyrag|1 +(verb)|strong-arm|bully|browbeat|bullyrag|boss around|hector|push around|intimidate +balm|2 +(noun)|balsam +(noun)|ointment|unction|unguent|salve|remedy|curative|cure +balm of gilead|3 +(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir +(noun)|balm of Gilead|balm +(noun)|Commiphora meccanensis|incense tree +balmily|1 +(adv)|daftly|dottily|nuttily|wackily +balmoral|2 +(noun)|shoe +(noun)|Balmoral|bluebonnet|cap +balmoral castle|1 +(noun)|Balmoral Castle|castle +balmy|2 +(adj)|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +(adj)|mild|clement +balochi|1 +(noun)|Balochi|Baluchi|Iranian|Iranian language +baloney|1 +(noun)|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +balsa|2 +(noun)|balsa wood|wood +(noun)|Ochroma lagopus|angiospermous tree|flowering tree +balsa raft|1 +(noun)|Kon Tiki|raft +balsa wood|1 +(noun)|balsa|wood +balsam|3 +(noun)|spermatophyte|phanerogam|seed plant +(noun)|oleoresin +(noun)|ointment|unction|unguent|balm|salve +balsam apple|1 +(noun)|Momordica balsamina|gourd|gourd vine +balsam capivi|1 +(noun)|copaiba|copaiba balsam|oleoresin +balsam family|1 +(noun)|Balsaminaceae|family Balsaminaceae|rosid dicot family +balsam fir|1 +(noun)|balm of Gilead|Canada balsam|Abies balsamea|silver fir +balsam herb|1 +(noun)|costmary|alecost|bible leaf|mint geranium|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +balsam of peru|1 +(noun)|balsam of Peru|tolu|balsam of tolu|tolu balsam +balsam of tolu|1 +(noun)|tolu|tolu balsam|balsam +balsam pear|1 +(noun)|Momordica charantia|gourd|gourd vine +balsam poplar|1 +(noun)|hackmatack|tacamahac|Populus balsamifera|poplar|poplar tree +balsam willow|1 +(noun)|Salix pyrifolia|willow|willow tree +balsam woolly aphid|1 +(noun)|Adelges piceae|adelgid +balsamic|1 +(adj)|balsamy|oleoresin +balsaminaceae|1 +(noun)|Balsaminaceae|family Balsaminaceae|balsam family|rosid dicot family +balsamorhiza|1 +(noun)|Balsamorhiza|genus Balsamorhiza|asterid dicot genus +balsamroot|1 +(noun)|herb|herbaceous plant +balsamy|1 +(adj)|balsamic|oleoresin +balthasar|1 +(noun)|Balthazar|Balthasar|sage +balthazar|1 +(noun)|Balthazar|Balthasar|sage +baltic|4 +(adj)|Baltic|geographical area|geographic area|geographical region|geographic region +(adj)|Baltic|sea +(noun)|Baltic|Baltic Sea|sea +(noun)|Baltic|Baltic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +baltic-finnic|1 +(noun)|Baltic-Finnic|Fennic|Finnic|Non-Ugric +baltic language|1 +(noun)|Baltic|Baltic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +baltic republic|1 +(noun)|Baltic State|Baltic Republic|geographical area|geographic area|geographical region|geographic region +baltic sea|1 +(noun)|Baltic|Baltic Sea|sea +baltic state|1 +(noun)|Baltic State|Baltic Republic|geographical area|geographic area|geographical region|geographic region +baltimore|1 +(noun)|Baltimore|city|metropolis|urban center|port +baltimore bird|1 +(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole|Icterus galbula +baltimore oriole|1 +(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole|Icterus galbula +balto-slavic|1 +(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European|Indo-European language|Indo-Hittite +balto-slavic language|1 +(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European|Indo-European language|Indo-Hittite +balto-slavonic|1 +(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European|Indo-European language|Indo-Hittite +baluchi|1 +(noun)|Balochi|Baluchi|Iranian|Iranian language +baluster|1 +(noun)|support +balusters|2 +(noun)|bannister|banister|balustrade|handrail|barrier +(noun)|baluster|support +balustrade|1 +(noun)|bannister|banister|balusters|handrail|barrier +balzac|1 +(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist +balzacian|1 +(adj)|Balzacian|novelist +bamako|1 +(noun)|Bamako|national capital +bambino|1 +(noun)|toddler|yearling|tot|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +bamboo|2 +(noun)|wood +(noun)|gramineous plant|graminaceous plant +bamboo curtain|1 +(noun)|ideological barrier +bamboo fern|1 +(noun)|Coniogramme japonica|fern +bamboo palm|2 +(noun)|miniature fan palm|fern rhapis|Rhapis excelsa|lady palm +(noun)|Raffia vinifera|raffia palm|Raffia farinifera|Raffia ruffia +bamboo shoot|1 +(noun)|vegetable|veggie +bamboozle|1 +(verb)|snow|hoodwink|pull the wool over someone's eyes|lead by the nose|play false|deceive|betray|lead astray +bambusa|1 +(noun)|Bambusa|genus Bambusa|monocot genus|liliopsid genus +bambusa vulgaris|1 +(noun)|common bamboo|Bambusa vulgaris|bamboo +bambuseae|1 +(noun)|Bambuseae|tribe Bambuseae|tribe +ban|9 +(noun)|prohibition|proscription|decree|edict|fiat|order|rescript +(noun)|Moldovan monetary unit +(noun)|Romanian monetary unit +(noun)|banning|forbiddance|forbidding|prohibition +(noun)|Bachelor of Arts in Nursing|BAN|bachelor's degree|baccalaureate +(verb)|forbid|prohibit|interdict|proscribe|veto|disallow +(verb)|censor|outlaw|criminalize|criminalise|illegalize|illegalise +(verb)|banish|expel|throw out|kick out +(verb)|banish|ostracize|ostracise|shun|cast out|blackball|expel|throw out|kick out +banal|2 +(adj)|commonplace|trivial|ordinary +(adj)|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal +banality|1 +(noun)|platitude|cliche|commonplace|bromide|remark|comment|truism +banana|2 +(noun)|banana tree|herb|herbaceous plant +(noun)|edible fruit +banana boat|1 +(noun)|cargo ship|cargo vessel +banana bread|1 +(noun)|quick bread +banana family|1 +(noun)|Musaceae|family Musaceae|monocot family|liliopsid family +banana oil|1 +(noun)|ester +banana passion fruit|1 +(noun)|Passiflora mollissima|passionflower|passionflower vine +banana peel|1 +(noun)|banana skin|peel|skin +banana quit|1 +(noun)|honeycreeper +banana republic|1 +(noun)|country|state|land +banana skin|1 +(noun)|banana peel|peel|skin +banana split|1 +(noun)|split +banana tree|1 +(noun)|banana|herb|herbaceous plant +banausic|1 +(adj)|ordinary +banch|1 +(noun)|seat +band|12 +(noun)|set|circle|lot|social group +(noun)|musical organization|musical organisation|musical group +(noun)|stria|striation|stripe|streak +(noun)|banding|stripe|adornment +(noun)|dance band|dance orchestra|musical organization|musical organisation|musical group +(noun)|range +(noun)|strip|slip +(noun)|ring|jewelry|jewellery +(noun)|ring|strip|slip +(noun)|restraint|constraint +(verb)|tie|bind +(verb)|ring|attach +band-tail pigeon|1 +(noun)|band-tailed pigeon|bandtail|Columba fasciata|pigeon +band-tailed pigeon|1 +(noun)|band-tail pigeon|bandtail|Columba fasciata|pigeon +band aid|2 +(noun)|Band Aid|adhesive bandage +(noun)|quick fix|quickie|quicky|repair|fix|fixing|fixture|mend|mending|reparation +band of partisans|1 +(noun)|Asbat al-Ansar|Band of Partisans|terrorist organization|terrorist group|foreign terrorist organization|FTO +band oneself|1 +(verb)|league together|join|fall in|get together +band together|1 +(verb)|confederate|unite|unify +bandage|3 +(noun)|patch|dressing|medical dressing +(verb)|bind|fasten|fix|secure +(verb)|dress +bandaged|1 +(adj)|bound|treated +bandaging|1 +(noun)|dressing|binding|medical care|medical aid +bandana|1 +(noun)|bandanna|handkerchief|hankie|hanky|hankey +bandanna|1 +(noun)|bandana|handkerchief|hankie|hanky|hankey +bandbox|1 +(noun)|box +bandeau|1 +(noun)|brassiere|bra|undergarment +banded|3 +(adj)|banded +(adj)|patterned +(adj)|belted +banded adder|1 +(noun)|banded krait|Bungarus fasciatus|krait +banded anteater|1 +(noun)|numbat|anteater|Myrmecobius fasciatus|dasyurid marsupial|dasyurid +banded gecko|1 +(noun)|gecko +banded krait|1 +(noun)|banded adder|Bungarus fasciatus|krait +banded palm civet|1 +(noun)|Hemigalus hardwickii|civet|civet cat +banded purple|1 +(noun)|white admiral|Limenitis arthemis|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +banded rattlesnake|1 +(noun)|timber rattlesnake|Crotalus horridus horridus|rattlesnake|rattler +banded rudderfish|1 +(noun)|rudderfish|Seriola zonata|jack +banded sand snake|1 +(noun)|Chilomeniscus cinctus|sand snake +banded stilt|1 +(noun)|Cladorhyncus leucocephalum|stilt|Australian stilt +banded water snake|1 +(noun)|common water snake|Natrix sipedon|Nerodia sipedon|water snake +bandelet|1 +(noun)|annulet|bandelette|bandlet|square and rabbet|molding|moulding +bandelette|1 +(noun)|annulet|bandelet|bandlet|square and rabbet|molding|moulding +banderilla|1 +(noun)|dart +banderillero|1 +(noun)|bullfighter|toreador +bandicoot|1 +(noun)|marsupial|pouched mammal +bandicoot rat|1 +(noun)|mole rat|rat +banding|1 +(noun)|band|stripe|adornment +bandit|1 +(noun)|brigand|thief|stealer +banditry|1 +(noun)|plundering|pillage|pillaging +bandleader|1 +(noun)|conductor|music director|director +bandlet|1 +(noun)|annulet|bandelet|bandelette|square and rabbet|molding|moulding +bandmaster|1 +(noun)|conductor|music director|director +bandoleer|1 +(noun)|bandolier|cartridge belt +bandolier|1 +(noun)|bandoleer|cartridge belt +bandsaw|1 +(noun)|power saw|saw|sawing machine +bandsman|1 +(noun)|musician|instrumentalist|player +bandstand|1 +(noun)|outdoor stage|stand|platform +bandtail|1 +(noun)|band-tailed pigeon|band-tail pigeon|Columba fasciata|pigeon +bandung|1 +(noun)|Bandung|city|metropolis|urban center +bandwagon|2 +(noun)|vogue|trend|style +(noun)|wagon|waggon +bandwagon effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +bandwidth|1 +(noun)|information measure +bandy|4 +(adj)|bandy-legged|bowed|bowleg|bowlegged|unfit +(verb)|play +(verb)|fight|struggle +(verb)|kick around|hash out|discuss|talk over +bandy-legged|1 +(adj)|bandy|bowed|bowleg|bowlegged|unfit +bandy about|1 +(verb)|hash out|discuss|talk over +bandy legs|1 +(noun)|bow leg|bow legs|disability|disablement|handicap|impairment +bane|1 +(noun)|curse|scourge|nemesis|affliction +baneberry|2 +(noun)|berry +(noun)|cohosh|herb Christopher|poisonous plant +baneful|2 +(adj)|deadly|pernicious|pestilent|noxious |harmful +(adj)|baleful|maleficent +banefully|1 +(adv)|perniciously +banff|1 +(noun)|Banff|city|metropolis|urban center +bang|12 +(noun)|knock|bash|smash|belt|bump|blow +(noun)|clap|eruption|blast|loud noise|noise +(noun)|hairdo|hair style|coiffure +(noun)|boot|charge|rush|flush|thrill|kick|exhilaration|excitement +(noun)|hit|smash|smasher|strike|success +(verb)|slam|hit +(verb)|sound|go +(verb)|slam|close|shut +(verb)|travel|go|move|locomote +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|get it on|bonk|copulate|mate|pair|couple +(verb)|spang|hit|strike|impinge on|run into|collide with +(adv)|slap|slapdash|smack|bolt +bang's disease|1 +(noun)|brucellosis|contagious abortion|Bang's disease|zoonosis|zoonotic disease +bang-up|1 +(adj)|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +bang out|1 +(verb)|play|spiel +bang up|2 +(verb)|smash up|smash|damage +(verb)|impregnate|knock up|prang up|inseminate|fecundate|fertilize|fertilise +bangalore|1 +(noun)|Bangalore|city|metropolis|urban center +bangalore torpedo|1 +(noun)|torpedo +banger|2 +(noun)|pork sausage +(noun)|firecracker|cracker|firework|pyrotechnic +bangiaceae|1 +(noun)|Bangiaceae|family Bangiaceae|protoctist family +banging|3 +(adj)|humongous|thumping|whopping|walloping|large +(noun)|noise +(noun)|battering|fight|fighting|combat|scrap +bangkok|1 +(noun)|Bangkok|capital of Thailand|Krung Thep|national capital|port +bangla desh|2 +(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country|Asian nation +(noun)| +bangladesh|1 +(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country|Asian nation +bangladeshi|2 +(adj)|Bangladeshi|East Pakistani|Asian country|Asian nation +(noun)|Bangladeshi|Asian|Asiatic +bangladeshi monetary unit|1 +(noun)|Bangladeshi monetary unit|monetary unit +bangle|2 +(noun)|bracelet|jewelry|jewellery +(noun)|bauble|gaud|gewgaw|novelty|fallal|trinket|adornment +bangor|3 +(noun)|Bangor|town +(noun)|Bangor|town +(noun)|Bangor|town +bangtail|1 +(noun)|racehorse|race horse|horse|Equus caballus +bangui|1 +(noun)|Bangui|capital of Central Africa|national capital +banian|2 +(noun)|banyan|banyan tree|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +(noun)|banyan|jacket +banian tree|1 +(noun)|banyan|banyan tree|banian|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +banish|4 +(verb)|ban|ostracize|ostracise|shun|cast out|blackball|expel|throw out|kick out +(verb)|ban|expel|throw out|kick out +(verb)|relegate|bar|expel|throw out|kick out +(verb)|chase away|drive out|turn back|drive away|dispel|drive off|run off +banishment|2 +(noun)|ostracism|Coventry|exclusion +(noun)|proscription|rejection +banister|1 +(noun)|bannister|balustrade|balusters|handrail|barrier +banjo|1 +(noun)|stringed instrument +banjul|1 +(noun)|Banjul|capital of Gambia|national capital|port +bank|18 +(noun)|depository financial institution|banking concern|banking company|financial institution|financial organization|financial organisation +(noun)|slope|incline|side +(noun)|reserve|backlog|stockpile +(noun)|bank building|depository|deposit|repository +(noun)|array +(noun)|savings bank|coin bank|money box|container +(noun)|ridge +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|cant|camber|slope|incline|side +(noun)|flight maneuver|airplane maneuver +(verb)|tip +(verb)|enclose|inclose|shut in +(verb)|transact +(verb)|act +(verb)|work|do work +(verb)|deposit|give +(verb)|cover +(verb)|trust|swear|rely|believe +bank-depositor relation|1 +(noun)|fiduciary relation +bank account|1 +(noun)|account|business relationship +bank bill|1 +(noun)|bill|note|government note|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +bank building|1 +(noun)|bank|depository|deposit|repository +bank card|1 +(noun)|credit card|charge card|charge plate +bank charter|1 +(noun)|charter +bank check|1 +(noun)|check|cheque|draft|bill of exchange|order of payment +bank clerk|1 +(noun)|teller|cashier|banker +bank closing|1 +(noun)|closure|closedown|closing|shutdown +bank commissioner|1 +(noun)|commissioner +bank deposit|1 +(noun)|deposit|fund|monetary fund +bank discount|1 +(noun)|discount rate|discount|interest rate|rate of interest +bank draft|1 +(noun)|banker's draft|draft|bill of exchange|order of payment +bank examination|1 +(noun)|examination|scrutiny +bank examiner|1 +(noun)|examiner|inspector +bank failure|1 +(noun)|failure +bank gravel|1 +(noun)|pit-run gravel|pit run|gravel|crushed rock +bank guard|1 +(noun)|watchman|watcher|security guard +bank holding company|1 +(noun)|holding company +bank holiday|1 +(noun)|legal holiday|national holiday +bank identification number|1 +(noun)|BIN|ABA transit number|number|identification number +bank line|1 +(noun)|credit line|line of credit|line|personal credit line|personal line of credit|credit +bank loan|1 +(noun)|loan +bank manager|1 +(noun)|director|manager|managing director +bank martin|1 +(noun)|bank swallow|sand martin|Riparia riparia|martin +bank note|2 +(noun)|bill|note|government note|bank bill|banker's bill|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +(noun)| +bank of england|1 +(noun)|Bank of England|central bank +bank of japan|1 +(noun)|Bank of Japan|central bank +bank rate|1 +(noun)|discount rate|discount|bank discount +bank robber|1 +(noun)|robber +bank run|1 +(noun)|bank withdrawal +bank shot|1 +(noun)|basketball shot +bank statement|1 +(noun)|statement|financial statement +bank swallow|1 +(noun)|bank martin|sand martin|Riparia riparia|martin +bank vault|1 +(noun)|vault|strongroom +bank withdrawal|1 +(noun)|withdrawal +bankable|2 +(adj)|profitable +(adj)|acceptable +bankbook|1 +(noun)|passbook|record +banker|2 +(noun)|financier|moneyman +(noun)|money handler|money dealer +banker's acceptance|1 +(noun)|acceptance|draft|bill of exchange|order of payment +banker's bill|1 +(noun)|bill|note|government note|bank bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +banker's check|1 +(noun)|traveler's check|traveller's check|traveler's letter of credit|traveller's letter of credit +banker's draft|1 +(noun)|bank draft|draft|bill of exchange|order of payment +bankhead|1 +(noun)|Bankhead|Tallulah Bankhead|actress +bankia|1 +(noun)|Bankia|genus Bankia|mollusk genus +bankia setaceae|1 +(noun)|giant northwest shipworm|Bankia setaceae|shipworm|teredinid +banking|2 +(noun)|finance +(noun)|finance +banking company|1 +(noun)|depository financial institution|bank|banking concern|financial institution|financial organization|financial organisation +banking concern|1 +(noun)|depository financial institution|bank|banking company|financial institution|financial organization|financial organisation +banking game|1 +(noun)|game of chance|gambling game +banking industry|1 +(noun)|banking system|industry +banking system|1 +(noun)|banking industry|industry +banknote|1 +(noun)|bill|note|government note|bank bill|banker's bill|bank note|Federal Reserve note|greenback|paper money|folding money|paper currency +bankroll|2 +(noun)|roll|funds|finances|monetary resource|cash in hand|pecuniary resource +(verb)|fund +bankrupt|3 +(adj)|belly-up|insolvent +(noun)|insolvent|failure|loser|nonstarter|unsuccessful person +(verb)|ruin|break|smash|impoverish +bankruptcy|3 +(noun)|failure +(noun)|failure|insolvency +(noun)|proceeding|legal proceeding|proceedings +banks|11 +(noun)|Banks|Sir Joseph Banks|botanist|phytologist|plant scientist +(noun)|depository financial institution|bank|banking concern|banking company|financial institution|financial organization|financial organisation +(noun)|bank|slope|incline|side +(noun)|bank|reserve|backlog|stockpile +(noun)|bank|bank building|depository|deposit|repository +(noun)|bank|array +(noun)|savings bank|coin bank|money box|bank|container +(noun)|bank|ridge +(noun)|bank|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|bank|cant|camber|slope|incline|side +(noun)|bank|flight maneuver|airplane maneuver +banksia|1 +(noun)|shrub|bush +banksia integrifolia|1 +(noun)|honeysuckle|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia +banksia rose|1 +(noun)|Rosa banksia|rose +banned|1 +(adj)|prohibited|illegal +banner|3 +(adj)|superior +(noun)|streamer|flag +(noun)|streamer|headline|newspaper headline +banneret|1 +(noun)|knight banneret|knight of the square flag|knight +banning|1 +(noun)|ban|forbiddance|forbidding|prohibition +banning-order|1 +(noun)|prohibition|ban|proscription +bannister|2 +(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man +(noun)|banister|balustrade|balusters|handrail|barrier +bannock|1 +(noun)|flatbread +bannockburn|1 +(noun)|Bannockburn|pitched battle +banns|1 +(noun)|announcement|promulgation +banquet|4 +(noun)|feast|dinner|dinner party +(noun)|feast|spread|meal|repast +(verb)|feast|junket|host +(verb)|feast|junket|eat +banquet song|1 +(noun)|scolion|song +banqueting|1 +(noun)|feasting|eating|feeding +banquette|1 +(noun)|bench +banshee|1 +(noun)|spirit|disembodied spirit +bantam|2 +(adj)|diminutive|lilliputian|midget|petite|tiny|flyspeck|small +(noun)|chicken|Gallus gallus +bantamweight|2 +(noun)|wrestler|grappler|matman +(noun)|boxer|pugilist +banteng|1 +(noun)|banting|tsine|Bos banteng|ox|wild ox +banter|2 +(noun)|raillery|give-and-take|backchat|repartee +(verb)|kid|chaff|jolly|josh|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +bantering|1 +(adj)|facetious|tongue-in-cheek|humorous |humourous +banteringly|1 +(adv)|tongue-in-cheek +banti's disease|1 +(noun)|Banti's disease|Banti's syndrome|blood disease|blood disorder +banti's syndrome|1 +(noun)|Banti's disease|Banti's syndrome|blood disease|blood disorder +banting|2 +(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist +(noun)|banteng|tsine|Bos banteng|ox|wild ox +bantoid|1 +(adj)|Bantoid|Niger-Congo +bantoid language|1 +(noun)|Bantu|Bantoid language|Niger-Congo +bantu|3 +(adj)|Bantu|African +(noun)|Bantu|African +(noun)|Bantu|Bantoid language|Niger-Congo +bantu-speaking|2 +(adj)|Bantu-speaking|Niger-Congo +(adj)|Bantu-speaking|communicative |communicatory +banyan|2 +(noun)|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +(noun)|banian|jacket +banyan tree|1 +(noun)|banyan|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +banzai|1 +(noun)|cheer +banzai attack|1 +(noun)|banzai charge|attack|onslaught|onset|onrush +banzai charge|1 +(noun)|banzai attack|attack|onslaught|onset|onrush +baobab|1 +(noun)|monkey-bread tree|Adansonia digitata|angiospermous tree|flowering tree +bap|1 +(noun)|bread|breadstuff|staff of life +baphia|1 +(noun)|Baphia|genus Baphia|rosid dicot genus +baphia nitida|1 +(noun)|camwood|African sandalwood|Baphia nitida|tree +baptise|1 +(verb)|baptize|christen|name|call +baptised|1 +(adj)|baptized +baptisia|1 +(noun)|Baptisia|genus Baptisia|rosid dicot genus +baptisia australis|1 +(noun)|blue false indigo|Baptisia australis|wild indigo|false indigo +baptisia lactea|1 +(noun)|white false indigo|Baptisia lactea|wild indigo|false indigo +baptisia tinctoria|1 +(noun)|indigo broom|horsefly weed|rattle weed|Baptisia tinctoria|wild indigo|false indigo +baptism|1 +(noun)|sacrament +baptismal|1 +(adj)|sacrament +baptismal font|1 +(noun)|baptistry|baptistery|font|basin +baptismal name|1 +(noun)|Christian name|first name|given name|forename +baptist|2 +(adj)|Baptist|Baptistic|Protestant denomination +(noun)|Baptist|Protestant +baptist church|1 +(noun)|Baptist Church|Baptists|Protestant denomination +baptist denomination|1 +(noun)|Baptist denomination|Protestant denomination +baptistery|1 +(noun)|baptismal font|baptistry|font|basin +baptistic|1 +(adj)|Baptist|Baptistic|Protestant denomination +baptistic doctrine|1 +(noun)|Baptistic doctrine|Protestantism +baptistry|1 +(noun)|baptismal font|baptistery|font|basin +baptists|2 +(noun)|Baptist Church|Baptists|Protestant denomination +(noun)|Baptist|Protestant +baptize|1 +(verb)|baptise|christen|name|call +baptized|1 +(adj)|baptized |baptised +bar|18 +(noun)|barroom|saloon|ginmill|taproom|room +(noun)|counter +(noun)|implement +(noun)|measure|musical notation +(noun)|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|prevention|hindrance|interference +(noun)|pressure unit +(noun)|ridge|barrier +(noun)|legal profession|legal community|profession|community +(noun)|cake|block +(noun)|Browning automatic rifle|BAR|automatic rifle|automatic|machine rifle +(noun)|support +(noun)|heating element +(noun)|railing|rail +(verb)|debar|exclude|forbid|prohibit|interdict|proscribe|veto|disallow +(verb)|barricade|block|blockade|stop|block off|block up|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|banish|relegate|expel|throw out|kick out +(verb)|fasten|fix|secure +bar-room plant|1 +(noun)|aspidistra|cast-iron plant|Aspidistra elatio|herb|herbaceous plant +bar absolute|1 +(noun)|barye|microbar|pressure unit +bar billiards|1 +(noun)|bagatelle|table game +bar bit|1 +(noun)|bit +bar chart|1 +(noun)|bar graph|chart +bar code|1 +(noun)|Universal Product Code|code +bar exam|1 +(noun)|bar examination|examination|exam|test +bar examination|1 +(noun)|bar exam|examination|exam|test +bar fly|1 +(noun)|drinker|imbiber|toper|juicer +bar girl|1 +(noun)|B-girl|woman|adult female +bar graph|1 +(noun)|bar chart|chart +bar hop|1 +(verb)|pub-crawl|drink|booze|fuddle +bar line|1 +(noun)|line|musical notation +bar magnet|1 +(noun)|magnet +bar mask|1 +(noun)|catcher's mask +bar mitzvah|2 +(noun)|initiation|induction|installation +(verb)|covenant +bar printer|1 +(noun)|impact printer +bar sinister|2 +(noun)|bastardy|illegitimacy|status|position +(noun)|bend sinister|mark|stigma|brand|stain|ordinary +bar soap|1 +(noun)|soap +baraka|1 +(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer|author +baranduki|1 +(noun)|baronduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +barany|1 +(noun)|Barany|Robert Barany|doctor|doc|physician|MD|Dr.|medico +barb|6 +(noun)|shot|shaft|slam|dig|jibe|gibe|remark|comment +(noun)|point +(noun)|point +(noun)|fibril|filament|strand +(verb)|change|alter|modify +(verb)|change|alter|modify +barbacan|1 +(noun)|barbican|tower +barbadian|2 +(adj)|Barbadian|island +(noun)|Barbadian|West Indian +barbados|2 +(noun)|Barbados|country|state|land +(noun)|Barbados|island +barbados-gooseberry vine|1 +(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine +barbados cherry|2 +(noun)|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot|dicotyledon|magnoliopsid|exogen +(noun)|acerola|surinam cherry|West Indian cherry|berry +barbados dollar|1 +(noun)|Barbados dollar|dollar +barbados gooseberry|2 +(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine +(noun)|Barbados gooseberry|blade apple|edible fruit +barbados maidenhair|1 +(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum +barbados pride|1 +(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree +barbara hepworth|1 +(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor|sculpturer|carver|statue maker +barbara tuchman|1 +(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian|historiographer +barbara ward|1 +(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist|economic expert|environmentalist|conservationist +barbara wertheim tuchman|1 +(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian|historiographer +barbarea|1 +(noun)|Barbarea|genus Barbarea|dilleniid dicot genus +barbarea praecox|1 +(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +barbarea verna|1 +(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +barbarea vulgaris|1 +(noun)|yellow rocket|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed +barbarian|3 +(adj)|barbaric|savage|uncivilized|uncivilised|wild|noncivilized |noncivilised +(noun)|savage|primitive|primitive person +(noun)|peasant|boor|churl|Goth|tyke|tike|unpleasant person|disagreeable person +barbaric|2 +(adj)|barbarian|savage|uncivilized|uncivilised|wild|noncivilized |noncivilised +(adj)|tasteless +barbarisation|1 +(noun)|barbarization|degradation|debasement +barbarise|2 +(verb)|barbarize|change +(verb)|barbarize|change|alter|modify +barbarism|1 +(noun)|brutality|barbarity|savagery|atrocity|inhumanity +barbarity|2 +(noun)|atrocity|atrociousness|barbarousness|heinousness|inhumaneness|inhumanity +(noun)|brutality|barbarism|savagery|atrocity|inhumanity +barbarization|1 +(noun)|barbarisation|degradation|debasement +barbarize|2 +(verb)|barbarise|change +(verb)|barbarise|change|alter|modify +barbarossa|2 +(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor +(noun)|Barbarossa|Khayr ad-Din|corsair|Barbary pirate +barbarous|2 +(adj)|brutal|cruel|fell|roughshod|savage|vicious|inhumane +(adj)|noncivilized |noncivilised +barbarousness|1 +(noun)|atrocity|atrociousness|barbarity|heinousness|inhumaneness|inhumanity +barbary|1 +(noun)|Barbary|geographical area|geographic area|geographical region|geographic region +barbary ape|1 +(noun)|Barbary ape|Macaca sylvana|macaque +barbary coast|2 +(noun)|Barbary Coast|city district +(noun)|Barbary Coast|seashore|coast|seacoast|sea-coast +barbary pirate|1 +(noun)|corsair|Barbary pirate|pirate|buccaneer|sea robber|sea rover +barbary sheep|1 +(noun)|aoudad|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep +barbasco|1 +(noun)|joewood|Jacquinia keyensis|shrub|bush +barbate|1 +(adj)|bearded|bewhiskered|whiskered|whiskery|unshaven |unshaved +barbecue|4 +(noun)|barbeque|dish +(noun)|barbeque|cookout +(noun)|barbeque|rack +(verb)|cook out|grill +barbecue pit|1 +(noun)|pit|cavity +barbecue sauce|1 +(noun)|sauce +barbecued|1 +(adj)|grilled|cooked +barbecued spareribs|1 +(noun)|spareribs|dish +barbecued wing|1 +(noun)|dish +barbecuing|1 +(noun)|roasting +barbed|2 +(adj)|biting|nipping|pungent|mordacious|sarcastic +(adj)|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +barbed wire|1 +(noun)|wire +barbel|1 +(noun)|feeler|tentacle +barbell|1 +(noun)|weight|free weight|exercising weight +barbellate|1 +(adj)|barbed|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +barbeque|3 +(noun)|barbecue|dish +(noun)|barbecue|cookout +(noun)|barbecue|rack +barber|3 +(noun)|Barber|Samuel Barber|composer +(noun)|hairdresser|hairstylist|stylist|styler +(verb)|groom|neaten +barber's itch|1 +(noun)|tinea barbae|tinea|ringworm|roundworm +barber's pole|1 +(noun)|visual signal +barber chair|1 +(noun)|chair +barberry|1 +(noun)|shrub|bush +barberry family|1 +(noun)|Berberidaceae|family Berberidaceae|magnoliid dicot family +barbershop|1 +(noun)|shop|store +barbershop quartet|1 +(noun)|quartet|quartette +barberton daisy|1 +(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy +barbet|1 +(noun)|piciform bird +barbette|1 +(noun)|mound|hill +barbette carriage|1 +(noun)|gun carriage +barbican|1 +(noun)|barbacan|tower +barbital|1 +(noun)|veronal|barbitone|diethylbarbituric acid|diethylmalonylurea|barbiturate +barbitone|1 +(noun)|barbital|veronal|diethylbarbituric acid|diethylmalonylurea|barbiturate +barbiturate|1 +(noun)|sedative-hypnotic|sedative-hypnotic drug|drug of abuse|street drug +barbituric acid|1 +(noun)|malonylurea|acid +barbra joan streisand|1 +(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer|vocalist|vocalizer|vocaliser|actress +barbra streisand|1 +(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer|vocalist|vocalizer|vocaliser|actress +barbu|1 +(noun)|Polydactylus virginicus|threadfin +barbuda|1 +(noun)|Barbuda|island +barcarole|1 +(noun)|barcarolle|song +barcarolle|1 +(noun)|barcarole|song +barcelona|1 +(noun)|Barcelona|city|metropolis|urban center|port +bard|3 +(noun)|poet +(noun)|caparison|trapping|trappings|housing|housings +(verb)|caparison|dress up|decorate|adorn|grace|ornament|embellish|beautify +bardeen|1 +(noun)|Bardeen|John Bardeen|physicist +bardic|1 +(adj)|poet +bardolatry|1 +(noun)|idolization|idolisation +bare|14 +(adj)|leafless +(adj)|au naturel|naked|nude|unclothed +(adj)|scanty|spare|meager |meagre|meagerly +(adj)|bald|denuded|denudate|uncovered +(adj)|unsheathed +(adj)|marginal|narrow +(adj)|mere|simple|plain +(adj)|unfinished|unpainted +(adj)|barren|bleak|desolate|stark|inhospitable +(adj)|stripped|empty +(adj)|grassless +(verb)|uncover|expose +(verb)|publicize|publicise|air|tell +(verb)|denude|denudate|strip|clear +bare-ass|1 +(adj)|bare-assed|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed +bare-assed|1 +(adj)|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed +bare-breasted|1 +(adj)|braless|topless|unclothed +bare-knuckle|1 +(adj)|rough-and-tumble|bare-knuckled|disorderly +bare-knuckled|1 +(adj)|rough-and-tumble|bare-knuckle|disorderly +bare bone|1 +(noun)|bone|os +bare bones|2 +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +(noun)|bare bone|bone|os +bareback|2 +(adj)|barebacked|unsaddled +(adv)|barebacked +barebacked|2 +(adj)|bareback|unsaddled +(adv)|bareback +bareboat|1 +(noun)|vessel|watercraft +bareboating|1 +(noun)|boating|yachting +bared|1 +(adj)|bareheaded|unclothed +barefaced|2 +(adj)|bald|overt |open +(adj)|audacious|bodacious|bold-faced|brassy|brazen|brazen-faced|insolent|unashamed +barefacedly|1 +(adv)|unashamedly|shamelessly +barefoot|2 +(adj)|barefooted|shoeless|unshod |unshoed +(adv)|barefooted +barefooted|2 +(adj)|barefoot|shoeless|unshod |unshoed +(adv)|barefoot +barehanded|1 +(adj)|unarmed +bareheaded|1 +(adj)|bared|unclothed +barelegged|1 +(adj)|unclothed +barely|2 +(adv)|hardly|just|scarcely|scarce +(adv)|scantily +bareness|2 +(noun)|nakedness|nudity|nudeness +(noun)|starkness|plainness +barents sea|1 +(noun)|Barents Sea|sea +barf|1 +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +bargain|4 +(noun)|deal|agreement|understanding +(noun)|buy|steal|purchase +(verb)|dicker|negociate|negotiate|talk terms +(verb)|agree +bargain-priced|1 +(adj)|cut-rate|cut-price|cheap |inexpensive +bargain down|1 +(verb)|beat down|haggle|higgle|chaffer|huckster +bargain hunter|1 +(noun)|shopper +bargain rate|1 +(noun)|cheapness|cut rate|cut price|inexpensiveness +bargainer|2 +(noun)|trader|dealer|monger|merchant|merchandiser +(noun)|negotiator|negotiant|treater +bargaining|1 +(noun)|negotiation|dialogue|talks +bargaining chip|1 +(noun)|leverage +barge|3 +(noun)|flatboat|hoy|lighter|boat +(verb)|thrust ahead|push forward|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|barge in +(verb)|transport|send|ship +barge in|2 +(verb)|crash|gate-crash|intrude|irrupt +(verb)|chime in|cut in|put in|butt in|chisel in|break in|interrupt|disrupt|break up|cut off +barge pole|1 +(noun)|pole +bargee|1 +(noun)|lighterman|bargeman|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bargello|1 +(noun)|stitch +bargeman|1 +(noun)|lighterman|bargee|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bari|1 +(noun)|Bari|city|metropolis|urban center +baric|1 +(adj)|metallic element|metal +barilla|2 +(noun)|saltwort|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub|bush +(noun)|Halogeton souda|herb|herbaceous plant +baring|1 +(noun)|denudation|stripping|uncovering|husking|removal|remotion +barish|1 +(noun)|Bodo-Garo|Barish|Kamarupan +barite|1 +(noun)|heavy spar|barytes|barium sulphate|mineral +baritone|4 +(adj)|low |low-pitched +(noun)|barytone|singer|vocalist|vocalizer|vocaliser +(noun)|baritone voice|singing voice +(noun)|baritone horn|brass +baritone horn|1 +(noun)|baritone|brass +baritone voice|1 +(noun)|baritone|singing voice +barium|1 +(noun)|Ba|atomic number 56|metallic element|metal +barium dioxide|1 +(noun)|barium peroxide|baryta +barium enema|1 +(noun)|enema|clyster +barium hydroxide|1 +(noun)|baryta +barium monoxide|1 +(noun)|barium oxide|barium protoxide|baryta +barium oxide|1 +(noun)|barium monoxide|barium protoxide|baryta +barium peroxide|1 +(noun)|barium dioxide|baryta +barium protoxide|1 +(noun)|barium monoxide|barium oxide|baryta +barium sulfate|1 +(noun)|barium sulphate|blanc fixe|sulfate|sulphate +barium sulphate|2 +(noun)|barium sulfate|blanc fixe|sulfate|sulphate +(noun)|heavy spar|barite|barytes|mineral +bark|9 +(noun)|covering|natural covering|cover +(noun)|noise +(noun)|barque|sailing vessel|sailing ship +(noun)|cry +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|cover +(verb)|skin|strip +(verb)|utter|emit|let out|let loose +(verb)|tan +bark-louse|2 +(noun)|bark louse|psocid +(noun)| +bark beetle|1 +(noun)|beetle +bark louse|2 +(noun)|bark-louse|psocid +(noun)| +barkeep|1 +(noun)|bartender|barman|barkeeper|mixologist|employee +barkeeper|1 +(noun)|bartender|barman|barkeep|mixologist|employee +barker|2 +(noun)|promoter|booster|plugger +(noun)|pooch|doggie|doggy|bow-wow|dog|domestic dog|Canis familiaris +barking deer|1 +(noun)|muntjac|deer|cervid +barking frog|1 +(noun)|robber frog|Hylactophryne augusti|frog|toad|toad frog|anuran|batrachian|salientian +barkley|1 +(noun)|Barkley|Alben Barkley|Alben William Barkley|politician|politico|pol|political leader +barky|1 +(adj)|rough |unsmooth +barley|2 +(noun)|barleycorn|grain|food grain|cereal +(noun)|cereal|cereal grass +barley-sugar|1 +(noun)|barley candy|hard candy +barley candy|1 +(noun)|barley-sugar|hard candy +barley grass|1 +(noun)|wall barley|Hordeum murinum|barley +barley water|1 +(noun)|broth +barleycorn|2 +(noun)|grain|caryopsis +(noun)|barley|grain|food grain|cereal +barm|1 +(noun)|yeast|leaven|leavening +barmaid|1 +(noun)|bartender|barman|barkeep|barkeeper|mixologist +barman|1 +(noun)|bartender|barkeep|barkeeper|mixologist|employee +barmbrack|1 +(noun)|bread|breadstuff|staff of life +barmy|2 +(adj)|zestful|yeasty|zesty|spirited +(adj)|balmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +barn|2 +(noun)|farm building +(noun)|b|area unit|square measure +barn dance|1 +(noun)|dance +barn door|2 +(noun)|sliding door +(noun)|barndoor|flap +barn grass|1 +(noun)|barnyard grass|barn millet|Echinochloa crusgalli|millet +barn millet|1 +(noun)|barnyard grass|barn grass|Echinochloa crusgalli|millet +barn owl|1 +(noun)|Tyto alba|owl|bird of Minerva|bird of night|hooter +barn spider|1 +(noun)|Araneus cavaticus|spider +barn swallow|1 +(noun)|chimney swallow|Hirundo rustica|swallow +barnaby's thistle|1 +(noun)|Barnaby's thistle|yellow star-thistle|Centaurea solstitialis|weed +barnacle|2 +(noun)|cerriped|cerripede|crustacean +(noun)|barnacle goose|Branta leucopsis|goose +barnacle goose|1 +(noun)|barnacle|Branta leucopsis|goose +barnacled|1 +(adj)|covered +barnburner|2 +(noun)|arsonist|incendiary|firebug +(noun)|success +barndoor|1 +(noun)|flap +barndoor skate|1 +(noun)|Raja laevis|skate +barney oldfield|1 +(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer|race driver|automobile driver +barnful|1 +(noun)|containerful +barnstorm|2 +(verb)|perform +(verb)|perform +barnstormer|2 +(noun)|playactor|play-actor|trouper|actor|histrion|player|thespian|role player +(noun)|stunt flier|stunt pilot|pilot|airplane pilot +barnum|1 +(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman|promoter|impresario +barnyard|1 +(noun)|yard +barnyard grass|1 +(noun)|barn grass|barn millet|Echinochloa crusgalli|millet +barograph|1 +(noun)|barometer +barographic|1 +(adj)|barometer +barometer|1 +(noun)|measuring instrument|measuring system|measuring device +barometric|1 +(adj)|barometrical|measuring instrument|measuring system|measuring device +barometric pressure|1 +(noun)|atmospheric pressure|air pressure +barometrical|1 +(adj)|barometric|measuring instrument|measuring system|measuring device +baron|3 +(noun)|Baron|Lord|noble|nobleman +(noun)|Baron|peer +(noun)|big businessman|business leader|king|magnate|mogul|power|top executive|tycoon|businessman|man of affairs +baron adrian|1 +(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist +baron alexander von humboldt|1 +(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist|natural scientist +baron clive|1 +(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general|full general|statesman|solon|national leader +baron clive of plassey|1 +(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general|full general|statesman|solon|national leader +baron de la brede et de montesquieu|1 +(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher +baron friedrich heinrich alexander von humboldt|1 +(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist|natural scientist +baron friedrich wilhelm ludolf gerhard augustin von steuben|1 +(noun)|Steuben|Baron Friedrich Wilhelm Ludolf Gerhard Augustin von Steuben|American Revolutionary leader +baron georges cuvier|1 +(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist|natural scientist +baron hermann ludwig ferdinand von helmholtz|1 +(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist|physicist +baron hugh caswall tremenheere dowding|1 +(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general|full general|marshal|marshall +baron jean baptiste joseph fourier|1 +(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician|physicist +baron karl maria friedrich ernst von weber|1 +(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor|music director|director|composer +baron karl wilhelm von humboldt|1 +(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist|philologue +baron lister|1 +(noun)|Lister|Joseph Lister|Baron Lister|surgeon|operating surgeon|sawbones +baron lloyd webber of sydmonton|1 +(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer +baron munchausen|1 +(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist|raconteur +baron olivier of birghton|1 +(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor|histrion|player|thespian|role player +baron richard von krafft-ebing|1 +(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist|brain doctor +baron snow of leicester|1 +(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer|author +baron verulam|1 +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +baron wilhelm von humboldt|1 +(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist|philologue +baronage|1 +(noun)|peerage|nobility|aristocracy +baronduki|1 +(noun)|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +baroness|1 +(noun)|Lady|noblewoman|peeress +baroness dudevant|1 +(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer|author +baroness emmusca orczy|1 +(noun)|Orczy|Baroness Emmusca Orczy|writer|author +baroness jackson of lodsworth|1 +(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist|economic expert|environmentalist|conservationist +baroness karen blixen|1 +(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer|author +baroness thatcher of kesteven|1 +(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman +baronet|1 +(noun)|Baronet|Bart|aristocrat|blue blood|patrician +baronetcy|2 +(noun)|barony|rank +(noun)|title +baronetise|1 +(verb)|baronetize|ennoble|gentle|entitle +baronetize|1 +(verb)|baronetise|ennoble|gentle|entitle +barong|1 +(noun)|knife +baronial|1 +(adj)|imposing|noble|stately|impressive +baronne anne louise germaine necker de steal-holstein|1 +(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer|author +barony|3 +(noun)|estate|land|landed estate|acres|demesne +(noun)|baronetcy|rank +(noun)|domain|demesne|land +baroque|2 +(adj)|churrigueresque|churrigueresco|fancy +(noun)|baroqueness|artistic style|idiom +baroqueness|1 +(noun)|baroque|artistic style|idiom +baroreceptor|1 +(noun)|sense organ|sensory receptor|receptor +barosaur|1 +(noun)|barosaurus|sauropod|sauropod dinosaur +barosaurus|1 +(noun)|barosaur|sauropod|sauropod dinosaur +barouche|1 +(noun)|carriage|equipage|rig +barque|1 +(noun)|bark|sailing vessel|sailing ship +barrack|4 +(noun)|military quarters +(verb)|lodge|accommodate +(verb)|cheer|inspire|urge|urge on|exhort|pep up|encourage +(verb)|jeer|scoff|flout|gibe|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +barracking|1 +(noun)|heckling|break|interruption|disruption|gap +barracuda|1 +(noun)|spiny-finned fish|acanthopterygian +barrage|3 +(noun)|outpouring|onslaught|language|linguistic communication +(noun)|barrage fire|battery|bombardment|shelling|fire|firing +(verb)|attack|round|assail|lash out|snipe|assault +barrage balloon|1 +(noun)|airship|dirigible +barrage fire|1 +(noun)|barrage|battery|bombardment|shelling|fire|firing +barrage jam|1 +(verb)|jam|block +barrage jamming|1 +(noun)|jamming|electronic jamming|jam +barramunda|1 +(noun)|barramundi|Neoceratodus forsteri|lungfish +barramundi|1 +(noun)|barramunda|Neoceratodus forsteri|lungfish +barranquilla|1 +(noun)|Barranquilla|city|metropolis|urban center|port +barred|2 +(adj)|bolted|fast|latched|locked|secured|fastened +(adj)|barricaded|blockaded|obstructed +barred owl|1 +(noun)|Strix varia|owl|bird of Minerva|bird of night|hooter +barred pickerel|1 +(noun)|redfin pickerel|Esox americanus|pickerel +barrel|6 +(noun)|gun barrel|tube|tubing +(noun)|cask|vessel +(noun)|drum|cylinder +(noun)|barrelful|containerful +(noun)|bbl|United States liquid unit|British capacity unit|Imperial capacity unit +(verb)|put|set|place|pose|position|lay +barrel cactus|2 +(noun)|cactus +(noun)|echinocactus|cactus +barrel knot|1 +(noun)|blood knot|knot +barrel maker|1 +(noun)|cooper|craftsman|artisan|journeyman|artificer +barrel organ|1 +(noun)|grind organ|hand organ|hurdy gurdy|street organ|musical instrument|instrument +barrel roll|1 +(noun)|roll +barrel vault|1 +(noun)|vault +barreled|2 +(adj)|barreled |barrelled +(adj)|barrelled|pointed +barrelfish|1 +(noun)|black rudderfish|Hyperglyphe perciformis|butterfish|stromateid fish|stromateid +barrelful|1 +(noun)|barrel|containerful +barrelhouse|1 +(noun)|honky-tonk|barroom|bar|saloon|ginmill|taproom +barrelled|2 +(adj)|barreled +(adj)|barreled|pointed +barrels|6 +(noun)|large indefinite quantity|large indefinite amount +(noun)|barrel|gun barrel|tube|tubing +(noun)|barrel|cask|vessel +(noun)|barrel|drum|cylinder +(noun)|barrel|barrelful|containerful +(noun)|barrel|bbl|United States liquid unit|British capacity unit|Imperial capacity unit +barren|4 +(adj)|bare|bleak|desolate|stark|inhospitable +(adj)|sterile |unfertile|infertile +(adj)|dead +(noun)|waste|wasteland|wilderness|wild +barren ground caribou|1 +(noun)|Rangifer arcticus|caribou|reindeer|Greenland caribou|Rangifer tarandus +barren of|1 +(adj)|destitute of|devoid of|empty of|innocent of|void of|empty +barrenness|2 +(noun)|sterility|infertility +(noun)|fruitlessness|aridity|quality +barrenwort|1 +(noun)|bishop's hat|Epimedium grandiflorum|herb|herbaceous plant +barrette|1 +(noun)|pin +barretter|1 +(noun)|ballast resistor|ballast|resistor|resistance +barricade|5 +(noun)|roadblock|barrier +(noun)|barrier +(verb)|block|blockade|stop|block off|block up|bar|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|barricado|obstruct|obturate|impede|occlude|jam|block|close up +barricaded|1 +(adj)|barred|blockaded|obstructed +barricado|1 +(verb)|barricade|obstruct|obturate|impede|occlude|jam|block|close up +barrie|1 +(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist|playwright +barrier|3 +(noun)|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|roadblock|obstacle|obstruction +(noun)|mechanism +barrier island|1 +(noun)|island +barrier reef|1 +(noun)|coral reef +barrier strip|1 +(noun)|junction barrier|junction|conjunction +barring|1 +(noun)|blackball|ejection|exclusion|expulsion|riddance +barrio|2 +(noun)|quarter +(noun)|urban area|populated area +barrister|1 +(noun)|lawyer|attorney +barroom|1 +(noun)|bar|saloon|ginmill|taproom|room +barrow|3 +(noun)|barrowful|containerful +(noun)|burial mound|grave mound|tumulus|mound|hill +(noun)|garden cart|lawn cart|wheelbarrow|handcart|pushcart|cart|go-cart +barrow's goldeneye|1 +(noun)|Barrow's goldeneye|Bucephala islandica|goldeneye|whistler|Bucephela clangula +barrow-boy|1 +(noun)|costermonger|barrow-man|trader|bargainer|dealer|monger +barrow-man|1 +(noun)|costermonger|barrow-boy|trader|bargainer|dealer|monger +barrowful|1 +(noun)|barrow|containerful +barrymore|5 +(noun)|Barrymore|John Barrymore|actor|histrion|player|thespian|role player +(noun)|Barrymore|Ethel Barrymore|actress +(noun)|Barrymore|Lionel Barrymore|actor|histrion|player|thespian|role player +(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress +(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor|histrion|player|thespian|role player +bars|15 +(noun)|parallel bars|gymnastic apparatus|exerciser +(noun)|barroom|bar|saloon|ginmill|taproom|room +(noun)|bar|counter +(noun)|bar|implement +(noun)|measure|bar|musical notation +(noun)|bar|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|prevention|bar|hindrance|interference +(noun)|bar|pressure unit +(noun)|bar|ridge|barrier +(noun)|legal profession|bar|legal community|profession|community +(noun)|cake|bar|block +(noun)|Browning automatic rifle|BAR|automatic rifle|automatic|machine rifle +(noun)|bar|support +(noun)|bar|heating element +(noun)|bar|railing|rail +barstow|1 +(noun)|Barstow|town +bart|1 +(noun)|Baronet|Bart|aristocrat|blue blood|patrician +bartender|1 +(noun)|barman|barkeep|barkeeper|mixologist|employee +barter|2 +(noun)|swap|swop|trade|exchange|interchange +(verb)|exchange|change|interchange +barter away|1 +(verb)|trade|trade in +barterer|1 +(noun)|trader|bargainer|dealer|monger +barth|2 +(noun)|Barth|Karl Barth|theologian|theologist|theologizer|theologiser +(noun)|Barth|John Barth|John Simmons Barth|writer|author +barthelme|1 +(noun)|Barthelme|Donald Barthelme|writer|author +barthold george niebuhr|1 +(noun)|Niebuhr|Barthold George Niebuhr|historian|historiographer +bartholdi|1 +(noun)|Bartholdi|Frederic Auguste Bartholdi|sculptor|sculpturer|carver|statue maker +bartholin|1 +(noun)|Bartholin|Caspar Bartholin|doctor|doc|physician|MD|Dr.|medico +bartholin's gland|1 +(noun)|Bartholin's gland|vestibular gland +bartholomeu dias|1 +(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator +bartholomeu diaz|1 +(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator +bartholomew roberts|1 +(noun)|Roberts|Bartholomew Roberts|pirate|buccaneer|sea robber|sea rover +bartle frere|1 +(noun)|Bartle Frere|genus Bartle-Frere|green dinosaur|dicot genus|magnoliopsid genus +bartlesville|1 +(noun)|Bartlesville|town +bartlett|3 +(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer|adventurer +(noun)|Bartlett|John Bartlett|publisher +(noun)|bartlett pear|pear +bartlett pear|1 +(noun)|bartlett|pear +bartok|1 +(noun)|Bartok|Bela Bartok|composer|pianist|piano player +bartolome esteban murillo|1 +(noun)|Murillo|Bartolome Esteban Murillo|painter +bartolomeo prignano|1 +(noun)|Urban VI|Bartolomeo Prignano|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +bartolomeo vanzetti|1 +(noun)|Vanzetti|Bartolomeo Vanzetti|anarchist|nihilist|syndicalist +bartolommeo eustachio|1 +(noun)|Eustachio|Bartolommeo Eustachio|anatomist +bartonia|1 +(noun)|Mentzelia lindleyi|flower +bartram juneberry|1 +(noun)|Bartram Juneberry|Amelanchier bartramiana|Juneberry|serviceberry|service tree|shadbush|shadblow +bartramia|1 +(noun)|Bartramia|genus Bartramia|bird genus +bartramia longicauda|1 +(noun)|upland sandpiper|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper +bartramian sandpiper|1 +(noun)|upland sandpiper|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper +baruch|3 +(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier|moneyman|statesman|solon|national leader +(noun)|Baruch|disciple|adherent +(noun)|Baruch|Book of Baruch|book +baruch de spinoza|1 +(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher +barunduki|1 +(noun)|baronduki|baranduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +barycenter|1 +(noun)|center of mass|centre of mass +barye|1 +(noun)|bar absolute|microbar|pressure unit +baryon|1 +(noun)|heavy particle|hadron|fermion +baryon number|1 +(noun)|number +baryshnikov|1 +(noun)|Baryshnikov|Mikhail Baryshnikov|dancer|professional dancer|choreographer +baryta|1 +(noun)|barium|Ba|atomic number 56 +barytes|1 +(noun)|heavy spar|barite|barium sulphate|mineral +barytic|1 +(adj)|barium|Ba|atomic number 56 +barytone|1 +(noun)|baritone|singer|vocalist|vocalizer|vocaliser +bas bleu|1 +(noun)|bluestocking|woman|adult female +bas mitzvah|1 +(noun)|bat mitzvah|bath mitzvah|initiation|induction|installation +bas relief|1 +(noun)|low relief|basso relievo|basso rilievo|relief|relievo|rilievo|embossment|sculptural relief +basal|3 +(adj)|radical +(adj)|base|basic +(adj)|basic|primary|essential +basal body temperature|1 +(noun)|body temperature|blood heat +basal body temperature method|1 +(noun)|basal body temperature method of family planning|natural family planning +basal body temperature method of family planning|1 +(noun)|basal body temperature method|natural family planning +basal ganglion|1 +(noun)|ganglion +basal metabolic rate|1 +(noun)|BMR|metabolism|metabolic process|metastasis|metabolic rate +basal metabolism|1 +(noun)|metabolism|metabolic process|metastasis +basal placentation|1 +(noun)|placentation +basal vein|1 +(noun)|vena basalis|vein|vena|venous blood vessel +basalt|1 +(noun)|volcanic rock +basaltic|1 +(adj)|volcanic rock +bascule|1 +(noun)|structure|construction +base|29 +(adj)|basal|basic +(adj)|inferior +(adj)|baseborn|humble|lowly|lowborn +(adj)|dishonorable|dishonourable|immoral|unethical|wrong +(adj)|mean|meanspirited|ignoble +(adj)|baseborn|illegitimate +(adj)|counterfeit |imitative +(noun)|alkali|compound|chemical compound +(noun)|base of operations|military installation +(noun)|foundation|fundament|foot|groundwork|substructure|understructure|support +(noun)|bag|baseball equipment +(noun)|radix|number +(noun)|part|piece +(noun)|bottom +(noun)|floor|control +(noun)|basis|foundation|fundament|groundwork|cornerstone|assumption|supposition|supposal +(noun)|pedestal|stand|support +(noun)|flank +(noun)|basis|part|portion|component part|component +(noun)|home|location +(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|root|root word|stem|theme|radical|form|word form|signifier|descriptor +(noun)|infrastructure|store|stock|fund +(noun)|ingredient +(noun)|bottom|underside|undersurface +(noun)|electrode +(verb)|establish|ground|found +(verb)|free-base|drug|do drugs +(verb)|station|post|send|place|move|displace +base-forming|1 +(adj)|alkaline |alkalic +base hit|1 +(noun)|safety|bingle|hit +base of operations|1 +(noun)|base|military installation +base on balls|1 +(noun)|walk|pass|accomplishment|achievement +base pair|1 +(noun)|nucleotide +base rate|1 +(noun)|interest rate|rate of interest +base runner|1 +(noun)|runner|ballplayer|baseball player +baseball|2 +(noun)|baseball game|ball|ball game|ballgame +(noun)|ball|baseball equipment +baseball bat|1 +(noun)|lumber|bat|baseball equipment +baseball cap|1 +(noun)|jockey cap|golf cap|cap +baseball card|1 +(noun)|trading card +baseball clinic|1 +(noun)|clinic +baseball club|1 +(noun)|ball club|club|nine|baseball team +baseball coach|1 +(noun)|baseball manager|coach|manager|handler +baseball diamond|1 +(noun)|diamond|infield|tract|piece of land|piece of ground|parcel of land|parcel +baseball equipment|1 +(noun)|sports equipment|sporting goods +baseball field|1 +(noun)|ball field|diamond|playing field|athletic field|playing area|field +baseball game|1 +(noun)|baseball|ball|ball game|ballgame +baseball glove|1 +(noun)|glove|baseball mitt|mitt|baseball equipment +baseball league|1 +(noun)|league|conference +baseball manager|1 +(noun)|baseball coach|coach|manager|handler +baseball mitt|1 +(noun)|baseball glove|glove|mitt|baseball equipment +baseball play|1 +(noun)|play +baseball player|1 +(noun)|ballplayer|athlete|jock|player|participant +baseball score|1 +(noun)|score +baseball season|1 +(noun)|season +baseball swing|1 +(noun)|swing|cut|stroke|shot +baseball team|1 +(noun)|team|squad +baseboard|1 +(noun)|mopboard|skirting board|molding|moulding +baseborn|2 +(adj)|base|humble|lowly|lowborn +(adj)|base|illegitimate +based|3 +(adj)|supported +(adj)|founded|supported +(adj)|settled +based on|1 +(adj)|supported +basel|1 +(noun)|Basel|Basle|Bale|city|metropolis|urban center +baseless|1 +(adj)|groundless|idle|unfounded|unwarranted|unsupported +baseline|3 +(noun)|standard|criterion|measure|touchstone +(noun)|service line|line +(noun)|line +basely|1 +(adv)|meanly|scurvily +basement|2 +(noun)|cellar|floor|level|storey|story +(noun)|support +baseness|1 +(noun)|contemptibility|despicableness|despicability|unworthiness +basenji|1 +(noun)|dog|domestic dog|Canis familiaris +bash|3 +(noun)|knock|bang|smash|belt|bump|blow +(noun)|do|brawl|party +(verb)|sock|bop|whop|whap|bonk|hit +bashful|2 +(adj)|timid +(adj)|blate|backward +bashfully|1 +(adv)|shyly|timidly +bashfulness|1 +(noun)|abashment|embarrassment +basia|1 +(noun)|Basra|Basia|city|metropolis|urban center|port +basic|7 +(adj)|basic |basal|base|elementary|primary|fundamental|rudimentary|underlying|grassroots|radical +(adj)|canonic|canonical|standard +(adj)|basal|primary|essential +(adj)|introductory|first +(adj)|alkaline |alkalic +(noun)|BASIC|programming language|programing language +(noun)|staple|commodity|trade goods|goods +basic assumption|1 +(noun)|constatation|self-evident truth|assumption|supposition|supposal +basic cognitive process|1 +(noun)|process|cognitive process|mental process|operation|cognitive operation +basic dye|1 +(noun)|dye|dyestuff +basic english|1 +(noun)|Basic English|artificial language +basic iron|1 +(noun)|pig iron +basic point defense missile system|1 +(noun)|shipboard system +basic principle|1 +(noun)|fundamentals|basics|fundamental principle|bedrock|principle +basic slag|1 +(noun)|slag|scoria|dross +basic training|1 +(noun)|military training +basically|1 +(adv)|fundamentally|essentially|in essence|au fond +basics|4 +(noun)|rudiments|fact +(noun)|fundamentals|fundamental principle|basic principle|bedrock|principle +(noun)|BASIC|programming language|programing language +(noun)|basic|staple|commodity|trade goods|goods +basidial|1 +(adj)|reproductive structure +basidiocarp|1 +(noun)|fruiting body +basidiolichen|1 +(noun)|lichen +basidiomycete|1 +(noun)|basidiomycetous fungi|fungus +basidiomycetes|2 +(noun)|Basidiomycetes|class Basidiomycetes|class +(noun)|basidiomycete|basidiomycetous fungi|fungus +basidiomycetous|1 +(adj)|fungus +basidiomycetous fungi|1 +(noun)|basidiomycete|fungus +basidiomycota|1 +(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division +basidiomycotina|1 +(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division +basidiospore|1 +(noun)|spore +basidiosporous|1 +(adj)|spore +basidium|1 +(noun)|reproductive structure +basifixed|1 +(adj)|affixed +basify|1 +(verb)|alkalize|alkalise|alkalify|change state|turn +basil|3 +(noun)|herb|herbaceous plant +(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +(noun)|sweet basil|herb +basil balm|2 +(noun)|Monarda clinopodia|monarda|wild bergamot +(noun)|basil thyme|mother of thyme|Acinos arvensis|Satureja acinos|herb|herbaceous plant +basil mint|1 +(noun)|Pycnanthemum virginianum|mountain mint +basil of caesarea|1 +(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +basil the great|1 +(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +basil thyme|1 +(noun)|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb|herbaceous plant +basilar|1 +(adj)|basilary|bottom +basilar artery|1 +(noun)|arteria basilaris|artery|arteria|arterial blood vessel +basilar membrane|1 +(noun)|membrane|tissue layer +basilary|1 +(adj)|basilar|bottom +basileus|1 +(noun)|ruler|swayer +basilic vein|1 +(noun)|vena basilica|vein|vena|venous blood vessel +basilica|2 +(noun)|church|church building +(noun)|Roman building +basilican|1 +(adj)|Roman building +basilicata|1 +(noun)|Basilicata|Lucania|Italian region +basiliscus|1 +(noun)|Basiliscus|genus Basiliscus|reptile genus +basilisk|3 +(noun)|mythical monster|mythical creature +(noun)|cannon +(noun)|iguanid|iguanid lizard +basin|5 +(noun)|vessel +(noun)|basinful|containerful +(noun)|natural depression|depression +(noun)|river basin|geographical area|geographic area|geographical region|geographic region +(noun)|washbasin|washbowl|washstand|lavatory|sink +basinal|1 +(adj)|natural depression|depression +basined|1 +(adj)|enclosed +basinet|1 +(noun)|helmet +basinful|1 +(noun)|basin|containerful +basipetal|1 +(adj)|basipetal +basis|3 +(noun)|footing|ground|foundation +(noun)|base|foundation|fundament|groundwork|cornerstone|assumption|supposition|supposal +(noun)|base|part|portion|component part|component +basiscopic|1 +(adj)|basiscopic +basivertebral vein|1 +(noun)|vena basivertebralis|vein|vena|venous blood vessel +bask|2 +(verb)|enjoy|relish|savor|savour +(verb)|lie +basket|4 +(noun)|handbasket|container +(noun)|basketful|containerful +(noun)|basketball hoop|hoop|goal|basketball equipment +(noun)|field goal|score +basket-handle arch|1 +(noun)|three-centered arch|round arch +basket ash|1 +(noun)|black ash|brown ash|hoop ash|Fraxinus nigra|ash|ash tree +basket fern|2 +(noun)|toothed sword fern|Nephrolepis pectinata|sword fern +(noun)|Drynaria rigidula|fern +basket fish|1 +(noun)|basket star|echinoderm +basket flower|1 +(noun)|Centaurea americana|centaury +basket hilt|1 +(noun)|hilt +basket maker|2 +(noun)|Basket Maker|primitive|primitive person +(noun)|basketweaver|basketmaker|maker|shaper +basket oak|1 +(noun)|cow oak|Quercus prinus|Quercus montana|chestnut oak +basket rummy|1 +(noun)|canasta|meld|rummy|rum +basket spikemoss|1 +(noun)|meadow spikemoss|Selaginella apoda|spikemoss|spike moss|little club moss +basket star|1 +(noun)|basket fish|echinoderm +basket weave|1 +(noun)|fabric|cloth|material|textile +basket willow|1 +(noun)|purple willow|red willow|red osier|purple osier|Salix purpurea|osier +basketball|2 +(noun)|basketball game|hoops|court game +(noun)|ball|basketball equipment +basketball backboard|1 +(noun)|backboard|game equipment +basketball clinic|1 +(noun)|clinic +basketball coach|1 +(noun)|coach|manager|handler +basketball court|1 +(noun)|court +basketball equipment|1 +(noun)|sports equipment|sporting goods +basketball game|1 +(noun)|basketball|hoops|court game +basketball hoop|1 +(noun)|basket|hoop|goal|basketball equipment +basketball league|1 +(noun)|league|conference +basketball play|1 +(noun)|play +basketball player|1 +(noun)|basketeer|cager|athlete|jock +basketball score|1 +(noun)|score +basketball season|1 +(noun)|season +basketball shot|1 +(noun)|shot +basketball team|1 +(noun)|five|team|squad +basketeer|1 +(noun)|basketball player|cager|athlete|jock +basketful|1 +(noun)|basket|containerful +basketmaker|1 +(noun)|basketweaver|maker|shaper +basketry|1 +(noun)|trade|craft +basketweaver|1 +(noun)|basketmaker|maker|shaper +basking shark|1 +(noun)|Cetorhinus maximus|mackerel shark +basle|1 +(noun)|Basel|Basle|Bale|city|metropolis|urban center +basophil|1 +(noun)|basophile|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +basophile|1 +(noun)|basophil|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +basophilia|1 +(noun)|stainability +basophilic|1 +(adj)|stainability +basotho|1 +(noun)|Basotho|African +basque|2 +(noun)|Basque|European +(noun)|Basque|natural language|tongue +basque fatherland and liberty|1 +(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization|terrorist group|foreign terrorist organization|FTO +basque homeland and freedom|1 +(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization|terrorist group|foreign terrorist organization|FTO +basra|1 +(noun)|Basra|Basia|city|metropolis|urban center|port +bass|9 +(adj)|deep|low |low-pitched +(noun)|low pitch|low frequency +(noun)|bass part|part|voice +(noun)|basso|singer|vocalist|vocalizer|vocaliser +(noun)|sea bass|saltwater fish +(noun)|freshwater bass|freshwater fish +(noun)|bass voice|basso|singing voice +(noun)|musical instrument|instrument +(noun)|percoid fish|percoid|percoidean +bass clarinet|1 +(noun)|clarinet +bass clef|1 +(noun)|F clef|clef +bass drum|1 +(noun)|gran casa|drum|membranophone|tympan +bass fiddle|1 +(noun)|bass viol|bull fiddle|double bass|contrabass|string bass|bowed stringed instrument|string|bass +bass guitar|1 +(noun)|guitar|bass +bass horn|1 +(noun)|sousaphone|tuba|brass|bass +bass part|1 +(noun)|bass|part|voice +bass viol|2 +(noun)|viola da gamba|viol +(noun)|bass fiddle|bull fiddle|double bass|contrabass|string bass|bowed stringed instrument|string|bass +bass voice|1 +(noun)|bass|basso|singing voice +bassariscidae|1 +(noun)|Bassariscidae|subfamily Bassariscidae|mammal family +bassariscus|1 +(noun)|Bassariscus|genus Bassariscus|mammal genus +bassariscus astutus|1 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +bassarisk|1 +(noun)|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +basse-normandie|1 +(noun)|Basse-Normandie|Lower-Normandy|French region +basset|2 +(noun)|basset hound|hound|hound dog +(verb)|crop out|appear +basset horn|1 +(noun)|clarinet +basset hound|1 +(noun)|basset|hound|hound dog +basset oboe|1 +(noun)|heckelphone|oboe|hautboy|hautbois +basseterre|1 +(noun)|Basseterre|national capital +bassia|1 +(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus +bassia scoparia|1 +(noun)|summer cypress|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +bassine|1 +(noun)|fiber|fibre +bassinet|2 +(noun)|baby bed|baby's bed +(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|go-cart|pushchair|pusher +bassist|1 +(noun)|musician|instrumentalist|player +basso|2 +(noun)|bass|singer|vocalist|vocalizer|vocaliser +(noun)|bass|bass voice|singing voice +basso continuo|1 +(noun)|figured bass|continuo|thorough bass|bass|bass part +basso profundo|1 +(noun)|bass|bass voice|basso +basso relievo|1 +(noun)|bas relief|low relief|basso rilievo|relief|relievo|rilievo|embossment|sculptural relief +basso rilievo|1 +(noun)|bas relief|low relief|basso relievo|relief|relievo|rilievo|embossment|sculptural relief +bassoon|1 +(noun)|double-reed instrument|double reed +bassoonist|1 +(noun)|musician|instrumentalist|player +basswood|2 +(noun)|linden|wood +(noun)|linden|linden tree|lime|lime tree|tree +bast|3 +(noun)|bast fiber|natural fiber|natural fibre +(noun)|phloem|vascular tissue +(noun)|Bast|Egyptian deity +bast fiber|1 +(noun)|bast|natural fiber|natural fibre +bastard|5 +(adj)|bastardly|misbegot|misbegotten|spurious|illegitimate +(adj)|bogus|fake|phony|phoney|counterfeit |imitative +(noun)|asshole|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)|by-blow|love child|illegitimate child|illegitimate|whoreson|offspring|progeny|issue +(noun)|mongrel|variation +bastard feverfew|1 +(noun)|Parthenium hysterophorus|weed +bastard indigo|3 +(noun)|Tephrosia purpurea|hoary pea +(noun)|false indigo|Amorpha fruticosa|amorpha +(noun)|false indigo|Amorpha californica|amorpha +bastard lignum vitae|1 +(noun)|Guaiacum sanctum|angiospermous tree|flowering tree +bastard pennyroyal|1 +(noun)|Trichostema dichotomum|blue curls +bastard pimpernel|1 +(noun)|chaffweed|false pimpernel|subshrub|suffrutex +bastard ridley|1 +(noun)|Atlantic ridley|bastard turtle|Lepidochelys kempii|ridley +bastard title|1 +(noun)|half title|page +bastard toadflax|1 +(noun)|Comandra pallida|parasitic plant +bastard turtle|1 +(noun)|Atlantic ridley|bastard ridley|Lepidochelys kempii|ridley +bastard wing|1 +(noun)|alula|spurious wing|feather|plume|plumage +bastard yellowwood|1 +(noun)|common yellowwood|Afrocarpus falcata|gymnospermous yellowwood +bastardisation|1 +(noun)|bastardization|degradation|debasement +bastardise|2 +(verb)|bastardize|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|bastardize|declare|adjudge|hold +bastardised|1 +(adj)|bastardized|impure +bastardization|2 +(noun)|declaration +(noun)|bastardisation|degradation|debasement +bastardize|2 +(verb)|bastardise|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|bastardise|declare|adjudge|hold +bastardized|1 +(adj)|bastardised|impure +bastardly|1 +(adj)|bastard|misbegot|misbegotten|spurious|illegitimate +bastardy|1 +(noun)|illegitimacy|bar sinister|status|position +bastardy proceeding|1 +(noun)|paternity suit|lawsuit|suit|case|cause|causa +baste|4 +(noun)|basting|tacking|stitch +(verb)|moisten|wash|dampen +(verb)|clobber|batter|beat|beat up|work over +(verb)|tack|sew|run up|sew together|stitch +baster|3 +(noun)|roaster +(noun)|tacker|sewer +(noun)|cooking utensil|cookware +bastille|1 +(noun)|jail|jailhouse|gaol|clink|slammer +bastille day|1 +(noun)|Bastille Day|14 July|legal holiday|national holiday +bastinado|2 +(noun)|cudgel +(verb)|beat +basting|2 +(noun)|baste|tacking|stitch +(noun)|moistening|dampening +bastion|3 +(noun)|defense|defence|defense force|defence force +(noun)|citadel|stronghold|fastness +(noun)|fortification|munition +bastioned|1 +(adj)|fortified|protected |secure +bastnaesite|1 +(noun)|bastnasite|mineral +bastnasite|1 +(noun)|bastnaesite|mineral +basuto|1 +(noun)|Sesotho|Basuto|Sotho +basutoland|1 +(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country|African nation +bat|10 +(noun)|chiropteran|placental|placental mammal|eutherian|eutherian mammal +(noun)|at-bat|turn|play +(noun)|squash racket|squash racquet|racket|racquet +(noun)|cricket bat|cricket equipment +(noun)|club +(verb)|hit +(verb)|flutter|blink|wink|nictitate|nictate +(verb)|hit +(verb)|hit +(verb)|clobber|drub|thrash|lick|beat|beat out|crush|shell|trounce|vanquish +bat boy|1 +(noun)|male child|boy +bat mitzvah|2 +(noun)|bath mitzvah|bas mitzvah|initiation|induction|installation +(verb)|covenant +bata|1 +(noun)|Bata|Biu-Mandara +bataan|1 +(noun)|Bataan|Corregidor|siege|besieging|beleaguering|military blockade +batch|4 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|clutch|collection|aggregation|accumulation|assemblage +(verb)|group +batch processing|1 +(noun)|execution|instruction execution +bate|3 +(verb)|control|hold in|hold|contain|check|curb|moderate +(verb)|beat|flap +(verb)|drench|douse|dowse|soak|sop|souse +bateau bridge|1 +(noun)|pontoon bridge|floating bridge|bridge|span +bated|2 +(adj)|restrained +(adj)|decreased |reduced +batfish|1 +(noun)|spiny-finned fish|acanthopterygian +batfowl|1 +(verb)|capture|catch +bath|7 +(noun)|vessel +(noun)|ablution +(noun)|bathtub|bathing tub|tub|vessel +(noun)|liquid unit|liquid measure +(noun)|Bath|town +(noun)|bathroom|room +(verb)|bathe|cleanse|clean +bath asparagus|1 +(noun)|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem +bath chair|1 +(noun)|wheelchair +bath linen|1 +(noun)|linen +bath mat|1 +(noun)|bath linen +bath mitzvah|1 +(noun)|bat mitzvah|bas mitzvah|initiation|induction|installation +bath oil|1 +(noun)|toiletry|toilet article|toiletries +bath powder|1 +(noun)|toilet powder|dusting powder|powder +bath salts|1 +(noun)|toiletry|toilet article|toiletries +bath soap|1 +(noun)|toilet soap|face soap|soap +bath towel|1 +(noun)|towel|bath linen +bath water|1 +(noun)|water|H2O +bathe|4 +(noun)|swimming|swim +(verb)|cleanse|clean +(verb)|envelop|enfold|enwrap|wrap|enclose +(verb)|bath|cleanse|clean +bather|2 +(noun)|swimmer|natator|traveler|traveller +(noun)|person|individual|someone|somebody|mortal|human|soul +bathetic|1 +(adj)|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|slushy|emotional +bathhouse|2 +(noun)|bathing machine|building|edifice +(noun)|bagnio|house +bathing|2 +(noun)|diversion|recreation +(noun)|washup|wash|washing|lavation|cleaning|cleansing|cleanup +bathing cap|1 +(noun)|swimming cap|cap +bathing costume|1 +(noun)|swimsuit|bathing suit|swimming costume|garment +bathing machine|1 +(noun)|bathhouse|building|edifice +bathing suit|1 +(noun)|swimsuit|swimming costume|bathing costume|garment +bathing trunks|1 +(noun)|swimming trunks|swimsuit|bathing suit|swimming costume|bathing costume +bathing tub|1 +(noun)|bathtub|bath|tub|vessel +batholite|1 +(noun)|batholith|pluton|plutonic rock|igneous rock +batholith|1 +(noun)|batholite|pluton|plutonic rock|igneous rock +batholithic|1 +(adj)|batholitic|igneous rock +batholitic|1 +(adj)|batholithic|igneous rock +bathos|3 +(noun)|expressive style|style +(noun)|mawkishness|sentimentality +(noun)|anticlimax|conclusion|end|close|closing|ending +bathrobe|1 +(noun)|robe +bathroom|2 +(noun)|bath|room +(noun)|toilet|lavatory|lav|can|john|privy|room +bathroom cleaner|1 +(noun)|cleansing agent|cleanser|cleaner +bathroom fixture|1 +(noun)|fixture +bathroom tissue|1 +(noun)|toilet tissue|toilet paper|tissue|tissue paper +bathtub|1 +(noun)|bathing tub|bath|tub|vessel +bathtub gin|1 +(noun)|gin +bathyal|1 +(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +bathyal district|1 +(noun)|continental slope|bathyal zone|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +bathyal zone|1 +(noun)|continental slope|bathyal district|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +bathyergidae|1 +(noun)|Bathyergidae|family Bathyergidae|mammal family +bathyergus|1 +(noun)|Bathyergus|genus Bathyergus|mammal genus +bathymetric|1 +(adj)|bathymetrical|measurement|measuring|measure|mensuration +bathymetrical|1 +(adj)|bathymetric|measurement|measuring|measure|mensuration +bathymetry|1 +(noun)|plumbing|measurement|measuring|measure|mensuration +bathyscape|1 +(noun)|bathyscaphe|bathyscaph|submersible +bathyscaph|1 +(noun)|bathyscaphe|bathyscape|submersible +bathyscaphe|1 +(noun)|bathyscaph|bathyscape|submersible +bathysphere|1 +(noun)|submersible +batidaceae|1 +(noun)|Batidaceae|family Batidaceae|saltwort family|caryophylloid dicot family +batik|2 +(noun)|fabric|cloth|material|textile +(verb)|hand dye +batis|1 +(noun)|Batis|genus Batis|caryophylloid dicot genus +batis maritima|1 +(noun)|saltwort|Batis maritima|shrub|bush +batiste|1 +(noun)|fabric|cloth|material|textile +batman|1 +(noun)|attendant|attender|tender +batna|1 +(noun)|Batna|town +batoidei|1 +(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order +batoko palm|1 +(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|Flacourtia indica|shrub|bush +baton|2 +(noun)|rod +(noun)|sports implement +baton rouge|1 +(noun)|Baton Rouge|capital of Louisiana|state capital +baton rouge bridge|1 +(noun)|Baton Rouge Bridge|cantilever bridge +baton twirler|1 +(noun)|twirler|performer|performing artist +batrachia|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +batrachian|2 +(adj)|anuran|salientian|animal order +(noun)|frog|toad|toad frog|anuran|salientian|amphibian +batrachoididae|1 +(noun)|Batrachoididae|family Batrachoididae|fish family +batrachomyomachia|1 +(noun)|affray|altercation|fracas +batrachoseps|1 +(noun)|Batrachoseps|genus Batrachoseps|amphibian genus +bats|1 +(adj)|balmy|barmy|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +batsman|1 +(noun)|batter|hitter|slugger|ballplayer|baseball player +batswana|1 +(noun)|Tswana|Bechuana|Batswana|Bantu +battalion|2 +(noun)|army unit +(noun)|large number|multitude|plurality|pack|large indefinite quantity|large indefinite amount +batten|4 +(noun)|batting|stuffing +(noun)|strip +(verb)|batten down|secure|strengthen|beef up|fortify +(verb)|strengthen|beef up|fortify +batten down|1 +(verb)|batten|secure|strengthen|beef up|fortify +batter|5 +(noun)|hitter|slugger|batsman|ballplayer|baseball player +(noun)|concoction|mixture|intermixture +(verb)|buffet|knock about|strike +(verb)|clobber|baste|beat|beat up|work over +(verb)|dinge|change shape|change form|deform +batter's box|1 +(noun)|box +batter bread|1 +(noun)|spoon bread|cornbread +battercake|1 +(noun)|pancake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake +battered|3 +(adj)|beat-up|beaten-up|damaged +(adj)|worn +(adj)|beaten|abused |ill-treated|maltreated|mistreated +battering|1 +(noun)|banging|fight|fighting|combat|scrap +battering ram|1 +(noun)|ram +battery|7 +(noun)|artillery|artillery unit +(noun)|electric battery|electrical device +(noun)|collection|aggregation|accumulation|assemblage +(noun)|team|squad +(noun)|stamp battery|stamp mill|stamping mill +(noun)|barrage|barrage fire|bombardment|shelling|fire|firing +(noun)|assault and battery|assault +battery-acid|2 +(noun)|acid|back breaker|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +(noun)|battery acid|electrolyte acid|vitriol|oil of vitriol|sulfuric acid|sulphuric acid +battery-powered|1 +(adj)|powered +battery acid|2 +(noun)|electrolyte acid|vitriol|oil of vitriol|sulfuric acid|sulphuric acid +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +battery charger|1 +(noun)|charger|device +batting|2 +(noun)|attempt|effort|endeavor|endeavour|try +(noun)|batten|stuffing +batting average|2 +(noun)|percentage|percent|per centum|pct +(noun)|proportion|proportionality +batting cage|1 +(noun)|cage|baseball equipment +batting coach|1 +(noun)|baseball coach|baseball manager +batting glove|1 +(noun)|glove|gloves|baseball equipment +batting helmet|1 +(noun)|helmet|baseball equipment +batting order|1 +(noun)|card|lineup|roll|roster +battle|4 +(noun)|conflict|fight|engagement|military action|action +(noun)|struggle|attempt|effort|endeavor|endeavour|try +(noun)|conflict|struggle|group action +(verb)|combat|fight|struggle +battle-ax|2 +(noun)|battle-axe|broadax|broadaxe +(noun)|battle-axe|wife|married woman +battle-axe|2 +(noun)|battle-ax|wife|married woman +(noun)|battle-ax|broadax|broadaxe +battle-scarred|1 +(adj)|injured +battle born state|1 +(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state +battle cruiser|1 +(noun)|cruiser +battle cry|2 +(noun)|war cry|war whoop|rallying cry|cry|outcry|call|yell|shout|vociferation +(noun)|war cry|rallying cry|cry|watchword|motto|slogan|catchword|shibboleth +battle damage|1 +(noun)|combat casualty|damage|equipment casualty +battle dress|1 +(noun)|military uniform +battle fatigue|1 +(noun)|combat fatigue|combat neurosis|shell shock|posttraumatic stress disorder|PTSD +battle flag|1 +(noun)|flag +battle fleet|1 +(noun)|fleet +battle group|1 +(noun)|army unit +battle line|1 +(noun)|line +battle of atlanta|1 +(noun)|Atlanta|battle of Atlanta|siege|besieging|beleaguering|military blockade +battle of austerlitz|1 +(noun)|Austerlitz|battle of Austerlitz|pitched battle +battle of boyne|1 +(noun)|Boyne|battle of Boyne|pitched battle +battle of britain|1 +(noun)|Battle of Britain|battle|conflict|fight|engagement +battle of brunanburh|1 +(noun)|Brunanburh|battle of Brunanburh|pitched battle +battle of bull run|1 +(noun)|Bull Run|Battle of Bull Run|pitched battle +battle of bunker hill|1 +(noun)|Bunker Hill|battle of Bunker Hill|pitched battle +battle of caporetto|1 +(noun)|Caporetto|battle of Caporetto|pitched battle +battle of chattanooga|1 +(noun)|Chattanooga|battle of Chattanooga|pitched battle +battle of chickamauga|1 +(noun)|Chickamauga|battle of Chickamauga|pitched battle +battle of cowpens|1 +(noun)|Cowpens|battle of Cowpens|pitched battle +battle of crecy|1 +(noun)|Crecy|battle of Crecy|pitched battle +battle of cunaxa|1 +(noun)|Cunaxa|battle of Cunaxa|pitched battle +battle of cynoscephalae|1 +(noun)|Cynoscephalae|battle of Cynoscephalae|pitched battle +battle of el alamein|1 +(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle +battle of flodden field|1 +(noun)|Flodden|Flodden Field|Battle of Flodden Field|pitched battle +battle of fontenoy|1 +(noun)|Fontenoy|Battle of Fontenoy|pitched battle +battle of fredericksburg|1 +(noun)|Fredericksburg|Battle of Fredericksburg|pitched battle +battle of gettysburg|1 +(noun)|Gettysburg|Battle of Gettysburg|pitched battle +battle of granicus river|1 +(noun)|Granicus|Battle of Granicus River|pitched battle +battle of guadalcanal|1 +(noun)|Guadalcanal|Battle of Guadalcanal|pitched battle +battle of hastings|1 +(noun)|Hastings|battle of Hastings|pitched battle +battle of hohenlinden|1 +(noun)|Hohenlinden|battle of Hohenlinden|pitched battle +battle of ipsus|1 +(noun)|Ipsus|battle of Ipsus|pitched battle +battle of issus|1 +(noun)|Issus|battle of Issus|pitched battle +battle of ivry|1 +(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle +battle of jena|1 +(noun)|Jena|Battle of Jena|pitched battle +battle of jutland|1 +(noun)|Jutland|battle of Jutland|naval battle +battle of kerbala|1 +(noun)|Battle of Kerbala|pitched battle +battle of lake trasimenus|1 +(noun)|Lake Trasimenus|Battle of Lake Trasimenus|pitched battle +battle of langside|1 +(noun)|Langside|battle of Langside|pitched battle +battle of lepanto|1 +(noun)|Lepanto|Battle of Lepanto|naval battle +battle of leuctra|1 +(noun)|Leuctra|battle of Leuctra|pitched battle +battle of little bighorn|1 +(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter|massacre|mass murder|carnage|butchery +battle of lule burgas|1 +(noun)|Lule Burgas|battle of Lule Burgas|pitched battle +battle of lutzen|1 +(noun)|Lutzen|battle of Lutzen|pitched battle +battle of magenta|1 +(noun)|Magenta|Battle of Magenta|pitched battle +battle of maldon|1 +(noun)|Maldon|Battle of Maldon|pitched battle +battle of marathon|1 +(noun)|Marathon|battle of Marathon|pitched battle +battle of marston moor|1 +(noun)|Marston Moor|battle of Marston Moor|pitched battle +battle of midway|1 +(noun)|Midway|Battle of Midway|naval battle +battle of minden|1 +(noun)|Minden|battle of Minden|pitched battle +battle of monmouth|1 +(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle +battle of monmouth court house|1 +(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle +battle of naseby|1 +(noun)|Naseby|Battle of Naseby|pitched battle +battle of navarino|1 +(noun)|Navarino|battle of Navarino|naval battle +battle of omdurman|1 +(noun)|Omdurman|battle of Omdurman|pitched battle +battle of panipat|1 +(noun)|Panipat|battle of Panipat|pitched battle +battle of pharsalus|1 +(noun)|Pharsalus|battle of Pharsalus|pitched battle +battle of philippi|1 +(noun)|Philippi|battle of Philippi|pitched battle +battle of pittsburgh landing|1 +(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle +battle of plassey|1 +(noun)|Plassey|battle of Plassey|pitched battle +battle of plataea|1 +(noun)|Plataea|battle of Plataea|pitched battle +battle of poitiers|1 +(noun)|Poitiers|battle of Poitiers|pitched battle +battle of pydna|1 +(noun)|Pydna|Battle of Pydna|pitched battle +battle of ravenna|1 +(noun)|Ravenna|Battle of Ravenna|pitched battle +battle of rocroi|1 +(noun)|Rocroi|Battle of Rocroi|pitched battle +battle of rossbach|1 +(noun)|Rossbach|battle of Rossbach|pitched battle +battle of saratoga|1 +(noun)|Saratoga|battle of Saratoga|pitched battle +battle of sempatch|1 +(noun)|Sempatch|battle of Sempatch|pitched battle +battle of shiloh|1 +(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle +battle of soissons-reims|1 +(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle +battle of solferino|1 +(noun)|Solferino|battle of Solferino|pitched battle +battle of spotsylvania courthouse|1 +(noun)|Spotsylvania|battle of Spotsylvania Courthouse|pitched battle +battle of st mihiel|1 +(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle +battle of tannenberg|1 +(noun)|Tannenberg|battle of Tannenberg|pitched battle +battle of tertry|1 +(noun)|Tertry|battle of Tertry|pitched battle +battle of teutoburger wald|1 +(noun)|Teutoburger Wald|battle of Teutoburger Wald|pitched battle +battle of tewkesbury|1 +(noun)|Tewkesbury|battle of Tewkesbury|pitched battle +battle of the aisne|1 +(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle +battle of the ardennes bulge|1 +(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle +battle of the bismarck sea|1 +(noun)|Bismarck Sea|battle of the Bismarck Sea|naval battle +battle of the bulge|1 +(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle +battle of the chemin-des-dames|1 +(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle +battle of the coral sea|1 +(noun)|Coral Sea|battle of the Coral Sea|naval battle +battle of the little bighorn|1 +(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter|massacre|mass murder|carnage|butchery +battle of the marne|1 +(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle +battle of the philippine sea|1 +(noun)|Philippine Sea|battle of the Philippine Sea|naval battle +battle of the somme|2 +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +battle of the spanish armada|1 +(noun)|Battle of the Spanish Armada|naval battle +battle of thermopylae|1 +(noun)|Thermopylae|battle of Thermopylae|pitched battle +battle of trafalgar|1 +(noun)|Trafalgar|battle of Trafalgar|naval battle +battle of trasimeno|1 +(noun)|Trasimeno|battle of Trasimeno|pitched battle +battle of valmy|1 +(noun)|Valmy|battle of Valmy|pitched battle +battle of verdun|1 +(noun)|Verdun|battle of Verdun|pitched battle +battle of wagram|1 +(noun)|Wagram|battle of Wagram|pitched battle +battle of wake|1 +(noun)|Battle of Wake|Battle of Wake Island|amphibious assault +battle of wake island|1 +(noun)|Battle of Wake|Battle of Wake Island|amphibious assault +battle of waterloo|1 +(noun)|Waterloo|Battle of Waterloo|pitched battle +battle of wits|1 +(noun)|contest +battle of ypres|3 +(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle +(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle +(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle +battle of zama|1 +(noun)|Zama|battle of Zama|pitched battle +battle plan|1 +(noun)|plan of action +battle royal|1 +(noun)|melee|scrimmage|disturbance +battle sight|2 +(noun)|battlesight|gunsight|gun-sight +(noun)| +battledore|2 +(noun)|badminton racket|badminton racquet|racket|racquet +(noun)|battledore and shuttlecock|badminton +battledore and shuttlecock|1 +(noun)|battledore|badminton +battlefield|1 +(noun)|battleground|field of battle|field of honor|field|tract|piece of land|piece of ground|parcel of land|parcel +battlefront|1 +(noun)|front|front line|line +battleful|1 +(adj)|bellicose|combative|contentious|aggressive +battleground|1 +(noun)|battlefield|field of battle|field of honor|field|tract|piece of land|piece of ground|parcel of land|parcel +battlement|1 +(noun)|crenelation|crenellation|rampart|bulwark|wall +battlemented|2 +(adj)|protected |secure +(adj)|castellated|castled|crenelated|crenellated|fancy +battler|1 +(noun)|combatant|belligerent|fighter|scrapper|person|individual|someone|somebody|mortal|human|soul +battleship|1 +(noun)|battlewagon|warship|war vessel|combat ship +battlesight|1 +(noun)|battle sight|gunsight|gun-sight +battlewagon|1 +(noun)|battleship|warship|war vessel|combat ship +battue|2 +(noun)|hunt|hunting +(noun)|bloodbath|bloodletting|bloodshed|slaughter|massacre|mass murder|carnage|butchery +batty|1 +(adj)|balmy|barmy|bats|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +batwing|2 +(adj)|winged +(noun)|swing door|swinging door +bauble|2 +(noun)|scepter|sceptre|verge|wand +(noun)|bangle|gaud|gewgaw|novelty|fallal|trinket|adornment +baud|1 +(noun)|baud rate|information measure +baud rate|1 +(noun)|baud|information measure +baudelaire|1 +(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet +bauhaus|1 +(noun)|Bauhaus|architectural style|style of architecture|type of architecture +bauhinia|1 +(noun)|Bauhinia|genus Bauhinia|rosid dicot genus +bauhinia monandra|1 +(noun)|butterfly flower|Bauhinia monandra|shrub|bush +bauhinia variegata|1 +(noun)|mountain ebony|orchid tree|Bauhinia variegata|angiospermous tree|flowering tree +baulk|4 +(noun)|balk|area|expanse|surface area +(noun)|hindrance|deterrent|impediment|balk|check|handicap|difficulty +(noun)|rafter|balk|beam +(verb)|resist|balk|jib|disobey +baulk-line|1 +(noun)|balkline|string line|line +baulker|1 +(noun)|balker|noncompliant|person|individual|someone|somebody|mortal|human|soul +baum|1 +(noun)|Baum|Frank Baum|Lyman Frank Brown|writer|author +bauxite|1 +(noun)|mineral +bauxitic|1 +(adj)|mineral +bavaria|1 +(noun)|Bavaria|state|province +bavarian|1 +(adj)|Bavarian|state|province +bavarian blue|1 +(noun)|Bavarian blue|bleu|blue cheese +bavarian cream|1 +(noun)|Bavarian cream|custard +bawbee|1 +(noun)|coin +bawd|1 +(noun)|prostitute|cocotte|whore|harlot|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +bawdiness|1 +(noun)|obscenity|lewdness|salaciousness|salacity|indecency +bawdry|1 +(noun)|bawdy|obscenity|vulgarism|dirty word +bawdy|2 +(adj)|off-color|ribald|dirty +(noun)|bawdry|obscenity|vulgarism|dirty word +bawdyhouse|1 +(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|cathouse|sporting house|building|edifice +bawl|3 +(verb)|bellow|shout +(verb)|yawp|roar|howl +(verb)|cry|weep +bawl out|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +bawler|2 +(noun)|roarer|bellower|screamer|screecher|shouter|yeller|communicator +(noun)|weeper|crier +bawling|1 +(noun)|wailing|crying|weeping|tears +bawling out|1 +(noun)|castigation|earful|chewing out|upbraiding|going-over|dressing down|rebuke|reproof|reproval|reprehension|reprimand +bay|10 +(adj)|colored |coloured|colorful +(noun)|body of water|water +(noun)|cry +(noun)|true laurel|bay laurel|bay tree|Laurus nobilis|laurel +(noun)|compartment +(noun)|compartment +(noun)|alcove|recess|niche +(noun)|horse|Equus caballus +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|quest|bark +bay-leaved caper|1 +(noun)|caper tree|Capparis flexuosa|caper +bay-rum tree|1 +(noun)|bayberry|Jamaica bayberry|wild cinnamon|Pimenta acris|tree +bay grass|1 +(noun)|love grass|grass +bay laurel|1 +(noun)|true laurel|bay|bay tree|Laurus nobilis|laurel +bay leaf|1 +(noun)|herb +bay lynx|1 +(noun)|bobcat|Lynx rufus|lynx|catamount +bay myrtle|1 +(noun)|puckerbush|Myrica cerifera|wax myrtle +bay of bengal|1 +(noun)|Bay of Bengal|bay +bay of biscay|1 +(noun)|Bay of Biscay|bay +bay of campeche|1 +(noun)|Bay of Campeche|bay +bay of fundy|1 +(noun)|Bay of Fundy|bay +bay of naples|1 +(noun)|Bay of Naples|bay +bay of ob|1 +(noun)|Gulf of Ob|Bay of Ob|gulf +bay rum|1 +(noun)|after-shave|after-shave lotion +bay scallop|2 +(noun)|scallop|scollop|escallop +(noun)|Pecten irradians|scallop|scollop|escallop +bay state|1 +(noun)|Massachusetts|Bay State|Old Colony|MA|American state +bay stater|1 +(noun)|Bay Stater|American +bay tree|1 +(noun)|true laurel|bay|bay laurel|Laurus nobilis|laurel +bay willow|1 +(noun)|laurel willow|Salix pentandra|willow|willow tree +bay window|2 +(noun)|pot|potbelly|corporation|tummy|belly|paunch +(noun)|bow window|window +bay wreath|1 +(noun)|laurels|laurel wreath|wreath|garland|coronal|chaplet|lei +baya|1 +(noun)|Ploceus philippinus|weaver|weaverbird|weaver finch +bayard|1 +(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier +bayat|1 +(noun)|oath +bayberry|2 +(noun)|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree +(noun)|candleberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle +bayberry tallow|1 +(noun)|bayberry wax|wax +bayberry wax|1 +(noun)|bayberry tallow|wax +baycol|1 +(noun)|cerivastatin|Baycol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +bayer|1 +(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin|salicylate|analgesic|anodyne|painkiller|pain pill +bayes|1 +(noun)|Bayes|Thomas Bayes|mathematician +bayes' postulate|1 +(noun)|Bayes' postulate|postulate|posit +bayes' theorem|1 +(noun)|Bayes' theorem|theorem +bayesian|1 +(adj)|Bayesian|theorem +bayonet|2 +(noun)|knife +(verb)|knife|stab +bayonne|1 +(noun)|Bayonne|city|metropolis|urban center +bayonne bridge|1 +(noun)|Bayonne Bridge|steel arch bridge +bayou|1 +(noun)|lake +bayt lahm|1 +(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town +bazaar|3 +(noun)|bazar|shop|store +(noun)|bazar|marketplace|mart +(noun)|fair|sale|cut-rate sale|sales event +bazar|2 +(noun)|bazaar|marketplace|mart +(noun)|bazaar|shop|store +bazooka|1 +(noun)|launcher|rocket launcher +bb|1 +(noun)|BB|BB shot|shot|pellet +bb gun|1 +(noun)|BB gun|air gun|airgun|air rifle +bb shot|1 +(noun)|BB|BB shot|shot|pellet +bbl|1 +(noun)|barrel|United States liquid unit|British capacity unit|Imperial capacity unit +bbs|2 +(noun)|bulletin board system|bulletin board|electronic bulletin board|digital computer +(noun)|BB|BB shot|shot|pellet +bc|1 +(adv)|BC|B.C.|before Christ +bd|1 +(noun)|Bachelor of Divinity|BD|bachelor's degree|baccalaureate +bdellium|1 +(noun)|gum resin +be|10 +(noun)|beryllium|Be|glucinium|atomic number 4|metallic element|metal +(verb)|exist +(verb)|equal +(verb)|constitute|represent|make up|comprise +(verb)|follow +(verb)|embody|personify|typify|symbolize|symbolise|stand for|represent +(verb)|take|occupy|use up +(verb)|live +(verb)|stay|remain|rest +(verb)|cost +be-all and end-all|2 +(noun)|be all and end all|component|constituent|element|factor|ingredient +(noun)| +be active|1 +(verb)|move +be adrift|1 +(verb)|float|drift|blow|travel|go|move|locomote +be after|1 +(verb)|plan|intend|mean|think +be all and end all|1 +(noun)|be-all and end-all|component|constituent|element|factor|ingredient +be amiss|1 +(verb)|misconstrue|misinterpret|misconceive|misunderstand|misapprehend|interpret|construe|see +be at pains|1 +(verb)|take pains|endeavor|endeavour|strive +be born|1 +(verb)|change state|turn +be due|1 +(verb)|flow from|result|ensue +be given|1 +(verb)|tend|lean|incline|run|be +be intimate|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +be on|1 +(verb)|get on|air +be on cloud nine|1 +(verb)|exult|walk on air|jump for joy|rejoice|joy +be on the ball|1 +(verb)|know the score|be with it|know what's going on|know what's what|know +be quiet|1 +(verb)|close up|clam up|dummy up|shut up|belt up|button up|keep mum +be sick|1 +(verb)|vomit|vomit up|purge|cast|sick|cat|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +be well|1 +(verb)|be +be with it|1 +(verb)|know the score|be on the ball|know what's going on|know what's what|know +beach|2 +(noun)|geological formation|formation +(verb)|land|set down +beach aster|1 +(noun)|seaside daisy|Erigeron glaucous|fleabane +beach ball|1 +(noun)|ball +beach buggy|1 +(noun)|dune buggy|recreational vehicle|RV +beach chair|1 +(noun)|deck chair|folding chair +beach erosion|1 +(noun)|erosion|eroding|eating away|wearing|wearing away +beach flea|1 +(noun)|sand hopper|sandhopper|sand flea|amphipod +beach goldenrod|1 +(noun)|seaside goldenrod|Solidago sempervirens|goldenrod +beach grass|1 +(noun)|grass +beach heather|1 +(noun)|poverty grass|Hudsonia tomentosa|subshrub|suffrutex +beach house|1 +(noun)|house +beach morning glory|1 +(noun)|railroad vine|Ipomoea pes-caprae|morning glory +beach pancake|1 +(noun)|Abronia maritima|sand verbena +beach pea|1 +(noun)|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea +beach plum|2 +(noun)|beach plum bush|Prunus maritima|wild plum|wild plum tree +(noun)|plum +beach plum bush|1 +(noun)|beach plum|Prunus maritima|wild plum|wild plum tree +beach sand verbena|1 +(noun)|pink sand verbena|Abronia umbellata|sand verbena +beach strawberry|1 +(noun)|Chilean strawberry|Fragaria chiloensis|strawberry +beach towel|1 +(noun)|towel +beach waggon|1 +(noun)|beach wagon|station wagon|wagon|station waggon|waggon|car|auto|automobile|machine|motorcar +beach wagon|1 +(noun)|station wagon|wagon|beach waggon|station waggon|waggon|car|auto|automobile|machine|motorcar +beach wormwood|1 +(noun)|dusty miller|old woman|Artemisia stelleriana|wormwood +beachcomber|1 +(noun)|vagrant|drifter|floater|vagabond +beached|1 +(adj)|high-and-dry|aground +beachfront|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +beachhead|2 +(noun)|bridgehead|foothold +(noun)|foothold|accomplishment|achievement +beachlike|1 +(adj)|beachy |sandy|gravelly|pebbly|shingly +beachwear|1 +(noun)|clothing|article of clothing|vesture|wear +beachy|1 +(adj)|beachy |beachlike|sandy|gravelly|pebbly|shingly +beacon|5 +(noun)|beacon fire|visual signal +(noun)|radio beacon|radio station +(noun)|lighthouse|beacon light|pharos|tower +(verb)|shine|beam +(verb)|lead|take|direct|conduct|guide +beacon fire|1 +(noun)|beacon|visual signal +beacon hill|1 +(noun)|Beacon Hill|city district +beacon light|1 +(noun)|beacon|lighthouse|pharos|tower +bead|6 +(noun)|jewelry|jewellery +(noun)|drop|pearl|round shape +(noun)|beading|beadwork|astragal|molding|moulding +(verb)|form|take form|take shape|spring +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|string|thread|draw +bead and quirk|1 +(noun)|quirk bead|beading|bead|beadwork|astragal +bead fern|1 +(noun)|sensitive fern|Onoclea sensibilis|fern +bead tree|1 +(noun)|jumby bean|jumby tree|Ormosia monosperma|necklace tree +beaded|2 +(adj)|covered +(adj)|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +beaded lizard|1 +(noun)|Mexican beaded lizard|Heloderma horridum|venomous lizard +beading|2 +(noun)|beadwork|decoration|ornament|ornamentation +(noun)|bead|beadwork|astragal|molding|moulding +beading plane|1 +(noun)|plane|carpenter's plane|woodworking plane +beadle|2 +(noun)|official|functionary +(noun)|Beadle|George Beadle|George Wells Beadle|biologist|life scientist +beadlike|1 +(adj)|beady|buttony|buttonlike|bright +beads|4 +(noun)|string of beads|string +(noun)|bead|jewelry|jewellery +(noun)|drop|bead|pearl|round shape +(noun)|beading|bead|beadwork|astragal|molding|moulding +beadsman|1 +(noun)|bedesman|prayer|supplicant +beadwork|2 +(noun)|beading|decoration|ornament|ornamentation +(noun)|beading|bead|astragal|molding|moulding +beady|2 +(adj)|beadlike|buttony|buttonlike|bright +(adj)|beaded|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +beady-eyed|1 +(adj)|malevolent |malicious +beagle|1 +(noun)|hound|hound dog +beagling|1 +(noun)|hunt|hunting +beak|4 +(noun)|mouth +(noun)|bill|neb|nib|pecker|mouth +(noun)|honker|hooter|nozzle|snoot|snout|schnozzle|schnoz|nose|olfactory organ +(verb)|peck|pick|strike +beaked|1 +(adj)|beaked |beaklike|billed|duckbill|duck-billed|rostrate|hawklike|hawky +beaked hazelnut|1 +(noun)|Corylus cornuta|hazelnut|hazel|hazelnut tree +beaked parsley|1 +(noun)|chervil|Anthriscus cereifolium|herb|herbaceous plant +beaked salmon|1 +(noun)|sandfish|Gonorhynchus gonorhynchus|soft-finned fish|malacopterygian +beaked whale|1 +(noun)|toothed whale +beaker|2 +(noun)|jar +(noun)|cup +beakless|1 +(adj)|beakless +beaklike|1 +(adj)|beaked +beam|12 +(noun)|radio beam|signal|signaling|sign +(noun)|structural member +(noun)|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation|light|visible light|visible radiation +(noun)|ray|electron beam|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +(noun)|width|breadth +(noun)|balance beam|gymnastic apparatus|exerciser +(verb)|smile +(verb)|shine +(verb)|express|show|evince +(verb)|air|send|broadcast|transmit|publicize|publicise|air|bare +(verb)|glow|radiate|shine|look|appear|seem +(verb)|glow|radiate|shine|feel|experience +beam-ends|1 +(noun)|side|face +beam balance|1 +(noun)|balance +beam of light|1 +(noun)|beam|light beam|ray|ray of light|shaft|shaft of light|irradiation|light|visible light|visible radiation +beam scale|1 +(noun)|steelyard|lever scale|balance +beaming|3 +(adj)|glad|cheerful +(adj)|proud +(adj)|beamy|effulgent|radiant|refulgent|bright +beamish|1 +(adj)|smiling|twinkly|cheerful +beamy|2 +(adj)|wide |broad +(adj)|beaming|effulgent|radiant|refulgent|bright +bean|5 +(noun)|edible bean|legume +(noun)|seed +(noun)|bean plant|legume|leguminous plant +(noun)|attic|bonce|noodle|noggin|dome|human head +(verb)|hit +bean-caper family|1 +(noun)|Zygophyllaceae|family Zygophyllaceae|rosid dicot family +bean aphid|1 +(noun)|blackfly|Aphis fabae|aphid +bean beetle|1 +(noun)|Mexican bean beetle|Epilachna varivestis|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +bean blight|1 +(noun)|halo blight|halo spot|blight +bean caper|1 +(noun)|Syrian bean caper|Zygophyllum fabago|shrub|bush +bean counter|1 +(noun)|accountant|comptroller|controller|bureaucrat|administrative official +bean curd|1 +(noun)|tofu|curd +bean dip|1 +(noun)|dip +bean plant|1 +(noun)|bean|legume|leguminous plant +bean sprout|1 +(noun)|sprout +bean tostada|1 +(noun)|tostada +bean town|2 +(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital +(noun)| +bean tree|1 +(noun)|tree +bean trefoil|1 +(noun)|stinking bean trefoil|Anagyris foetida|shrub|bush +bean weevil|1 +(noun)|Acanthoscelides obtectus|seed beetle|seed weevil +beanbag|1 +(noun)|bag +beanball|1 +(noun)|beaner|pitch|delivery +beaner|1 +(noun)|beanball|pitch|delivery +beanfeast|1 +(noun)|dinner|dinner party +beanie|1 +(noun)|beany|skullcap +beano|1 +(noun)|lotto|bingo|keno|board game +beanstalk|1 +(noun)|stalk|stem +beantown|1 +(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital +beany|1 +(noun)|beanie|skullcap +bear|15 +(noun)|carnivore +(noun)|investor +(verb)|have|feature +(verb)|give birth|deliver|birth|have|produce|bring forth +(verb)|digest|endure|stick out|stomach|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|transport|carry +(verb)|turn out|make|create|bear out +(verb)|take over|accept|assume|take +(verb)|hold|carry|contain|include +(verb)|yield|pay|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|wear|have|feature +(verb)|behave|acquit|deport|conduct|comport|carry|hold|carry|act|move +(verb)|hold|have|have got|hold +(verb)|hold|carry +(verb)|have a bun in the oven|carry|gestate|expect|give birth|deliver|birth|have +bear's-paw fern|1 +(noun)|Aglaomorpha meyeniana|fern +bear's breech|1 +(noun)|bear's breeches|sea holly|Acanthus mollis|acanthus +bear's breeches|2 +(noun)|bear's breech|sea holly|Acanthus mollis|acanthus +(noun)|bear's breech|sea holly|Acanthus mollis|acanthus +bear's ear|1 +(noun)|auricula|Primula auricula|primrose|primula +bear's foot|1 +(noun)|stinking hellebore|setterwort|Helleborus foetidus|hellebore +bear's grape|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|creashak|Arctostaphylos uva-ursi|bearberry +bear away|1 +(verb)|take away|bear off|carry away|carry off|remove|take|take away|withdraw +bear cat|2 +(noun)|lesser panda|red panda|panda|cat bear|Ailurus fulgens|procyonid +(noun)|binturong|bearcat|Arctictis bintourong|civet|civet cat +bear claw|3 +(noun)|bear paw|sweet roll|coffee roll +(noun)|design|pattern|figure +(noun)|claw +bear cub|1 +(noun)|cub|young carnivore +bear down|6 +(verb)|drag down|bear down on|press down on|weigh down|press +(verb)|charge|rush +(verb)|overbear|compress|constrict|squeeze|compact|contract|press +(verb)|fight|struggle +(verb)|stress|emphasize|emphasise|punctuate|accent|accentuate +(verb)|charge|saddle|burden +bear down on|2 +(verb)|bear down upon|approach|near|come on|go up|draw near|draw close|come near +(verb)|drag down|bear down|press down on|weigh down|press +bear down upon|1 +(verb)|bear down on|approach|near|come on|go up|draw near|draw close|come near +bear grass|4 +(noun)|Yucca smalliana|yucca +(noun)|Yucca glauca|yucca +(noun)|Nolina microcarpa|agave|century plant|American aloe +(noun)|squaw grass|Xerophyllum tenax|liliaceous plant +bear hug|2 +(noun)|wrestling hold +(noun)|takeover attempt +bear in mind|1 +(verb)|mind|remember|think of +bear market|1 +(noun)|market|securities industry +bear oak|1 +(noun)|Quercus ilicifolia|scrub oak +bear off|1 +(verb)|take away|bear away|carry away|carry off|remove|take|take away|withdraw +bear on|4 +(verb)|refer|pertain|relate|concern|come to|touch|touch on +(verb)|affect|impact|bear upon|touch on|touch|change|alter|modify +(verb)|push|urge|urge on|press|exhort +(verb)|continue|uphold|carry on|preserve|keep|maintain|hold +bear out|1 +(verb)|corroborate|underpin|support|match|fit|correspond|check|jibe|gibe|tally|agree +bear paw|1 +(noun)|bear claw|sweet roll|coffee roll +bear up|1 +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +bear upon|1 +(verb)|affect|impact|bear on|touch on|touch|change|alter|modify +bear witness|2 +(verb)|testify|prove|evidence|show|inform +(verb)|testify|attest|take the stand|declare +bearable|1 +(adj)|endurable|sufferable|supportable|tolerable +bearberry|3 +(noun)|cascara buckthorn|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn +(noun)|possum haw|winterberry|Ilex decidua|holly +(noun)|shrub|bush +bearberry willow|1 +(noun)|Salix uva-ursi|willow|willow tree +bearcat|1 +(noun)|binturong|Arctictis bintourong|civet|civet cat +beard|6 +(noun)|face fungus|whiskers|hair +(noun)|hair|fuzz|tomentum +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|hair +(noun)|byssus|fiber|fibre +(verb)|rim +beard lichen|1 +(noun)|beard moss|Usnea barbata|lichen +beard moss|1 +(noun)|beard lichen|Usnea barbata|lichen +beard worm|1 +(noun)|pogonophoran|worm +bearded|2 +(adj)|barbate|bewhiskered|whiskered|whiskery|unshaven |unshaved +(adj)|awned |awny +bearded darnel|1 +(noun)|darnel|tare|cheat|Lolium temulentum|rye grass|ryegrass +bearded iris|1 +(noun)|iris|flag|fleur-de-lis|sword lily +bearded seal|1 +(noun)|squareflipper square flipper|Erignathus barbatus|earless seal|true seal|hair seal +bearded vulture|1 +(noun)|lammergeier|lammergeyer|Gypaetus barbatus|Old World vulture +bearded wheatgrass|1 +(noun)|Agropyron subsecundum|wheatgrass|wheat-grass +beardless|2 +(adj)|whiskerless|shaven |shaved +(adj)|smooth-faced|hairless +beardless iris|1 +(noun)|iris|flag|fleur-de-lis|sword lily +beardown|1 +(adj)|strong +bearer|4 +(noun)|carrier|toter|traveler|traveller +(noun)|messenger|courier +(noun)|pallbearer|mourner|griever|sorrower|lamenter +(noun)|holder|capitalist +bearer bond|1 +(noun)|coupon bond|bond|bond certificate +bearer of the sword|1 +(noun)|Abu Sayyaf|Bearer of the Sword|terrorist organization|terrorist group|foreign terrorist organization|FTO +bearing|8 +(adj)|bearing |load-bearing|supporting +(adj)|productive +(noun)|relatedness +(noun)|heading|aim|direction|way +(noun)|comportment|presence|mien|manner|personal manner +(noun)|carriage|posture|bodily property +(noun)|charge|heraldic bearing|armorial bearing|heraldry +(noun)|support +bearing brass|1 +(noun)|brass +bearing false witness|1 +(noun)|perjury|lying under oath|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +bearing metal|1 +(noun)|white metal|alloy|metal +bearing rein|1 +(noun)|checkrein|rein +bearing wall|1 +(noun)|wall|support +bearish|1 +(adj)|pessimistic +bearnaise|1 +(noun)|sauce +bearskin|2 +(noun)|fur|pelt +(noun)|busby|shako|hat|chapeau|lid +bearwood|1 +(noun)|cascara buckthorn|bearberry|chittamwood|chittimwood|Rhamnus purshianus|buckthorn +beast|2 +(noun)|animal|animate being|brute|creature|fauna|organism|being +(noun)|wolf|savage|brute|wildcat|attacker|aggressor|assailant|assaulter +beast of burden|1 +(noun)|jument|work animal +beastliness|2 +(noun)|meanness|malevolence|malevolency|malice +(noun)|nastiness +beastly|2 +(adj)|hellish|god-awful|unpleasant +(adj)|bestial|brute|brutish|inhumane +beat|32 +(adj)|all in|bushed|dead|tired +(noun)|round|path|route|itinerary +(noun)|pulse|pulsation|heartbeat|periodic event|recurrent event +(noun)|rhythm|musical rhythm|musical time +(noun)|oscillation|vibration +(noun)|beatnik|nonconformist|recusant +(noun)|sound +(noun)|meter|metre|measure|cadence|poetic rhythm|rhythmic pattern|prosody +(noun)|pace|rate +(noun)|stroke +(noun)|sailing +(verb)|beat out|crush|shell|trounce|vanquish|get the better of|overcome|defeat +(verb)|beat up|work over +(verb)|strike +(verb)|pound|thump|move +(verb)|shape|form|work|mold|mould|forge +(verb)|drum|thrum|sound|go +(verb)|glare +(verb)|flap|move|displace +(verb)|sail +(verb)|scramble|agitate|vex|disturb|commove|shake up|stir up|raise up +(verb)|strike +(verb)|be +(verb)|bunk|cheat|rip off|chisel +(verb)|tick|ticktock|ticktack|sound|go +(verb)|flap|move +(verb)|pulsate|quiver|move +(verb)|make|create +(verb)|play +(verb)|outwit|overreach|outsmart|outfox|circumvent|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|exhaust|wash up|tucker|tucker out|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +beat-up|1 +(adj)|battered|beaten-up|damaged +beat a retreat|1 +(verb)|depart|take leave|quit +beat about|1 +(verb)|cast about|cast around|research|search|explore +beat around the bush|1 +(verb)|equivocate|tergiversate|prevaricate|palter|misinform|mislead +beat back|1 +(verb)|repel|drive|repulse|force back|push back|push|force +beat down|3 +(verb)|bargain down|haggle|higgle|chaffer|huckster +(verb)|shine|beam +(verb)|shift|dislodge|reposition +beat generation|1 +(noun)|beats|beatniks|youth subculture +beat in|1 +(verb)|hammer in|drill in|ram down|drill +beat out|2 +(verb)|beat|crush|shell|trounce|vanquish|get the better of|overcome|defeat +(verb)|tap out|thump out|beat +beat up|2 +(verb)|beat|work over +(verb)|drum up|rally|collect|pull in +beatable|1 +(adj)|vanquishable|vincible|conquerable +beaten|3 +(adj)|battered|abused |ill-treated|maltreated|mistreated +(adj)|shape|form|work|mold|mould|forge +(adj)|familiar +beaten-up|1 +(adj)|battered|beat-up|damaged +beater|2 +(noun)|worker +(noun)|implement +beatific|2 +(adj)|joyful +(adj)|angelic|angelical|saintlike|saintly|sainted|good +beatification|3 +(noun)|blessedness|beatitude|happiness|felicity +(noun)|action +(noun)|sanctification +beatified|1 +(adj)|blessed|holy +beatify|3 +(verb)|exhilarate|inebriate|thrill|exalt|elate|lift up|uplift|pick up|intoxicate +(verb)|elate|lift up|uplift|pick up|intoxicate +(verb)|declare|adjudge|hold +beating|3 +(adj)|pulsating|pulsing|rhythmical |rhythmic +(noun)|whipping|fight|fighting|combat|scrap +(noun)|thrashing|licking|drubbing|lacing|trouncing|whacking|corporal punishment +beating-reed instrument|1 +(noun)|reed|woodwind|woodwind instrument|wood +beatitude|2 +(noun)|blessedness|beatification|happiness|felicity +(noun)|Beatitude|saying|expression|locution +beatles|1 +(noun)|Beatles|rock group|rock band +beatnik|1 +(noun)|beat|nonconformist|recusant +beatniks|2 +(noun)|beat generation|beats|youth subculture +(noun)|beatnik|beat|nonconformist|recusant +beatrice|1 +(noun)|Beatrice|fictional character|fictitious character|character +beatrice lillie|1 +(noun)|Lillie|Beatrice Lillie|Lady Peel|actress +beatrice webb|1 +(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer|author +beats|11 +(noun)|beat generation|beatniks|youth subculture +(noun)|beat|round|path|route|itinerary +(noun)|pulse|pulsation|heartbeat|beat|periodic event|recurrent event +(noun)|rhythm|beat|musical rhythm|musical time +(noun)|beat|oscillation|vibration +(noun)|beatnik|beat|nonconformist|recusant +(noun)|beat|sound +(noun)|meter|metre|measure|beat|cadence|poetic rhythm|rhythmic pattern|prosody +(noun)|beat|pace|rate +(noun)|beat|stroke +(noun)|beat|sailing +beats per minute|1 +(noun)|bpm|metronome marking|M.M.|pace|gait +beau|2 +(noun)|boyfriend|fellow|swain|young man|man|adult male|lover +(noun)|dandy|dude|fop|gallant|sheik|swell|fashion plate|clotheshorse|man|adult male +beau brummell|1 +(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +beau geste|1 +(noun)|gesture +beau ideal|1 +(noun)|paragon|idol|perfection|ideal +beau monde|1 +(noun)|society|high society|smart set|bon ton|elite|elite group +beaufort scale|2 +(noun)|Beaufort scale|wind scale|scale|scale of measurement|graduated table|ordered series +(noun)|Beaufort scale|system of measurement|metric +beaufort sea|1 +(noun)|Beaufort Sea|sea +beaugregory|1 +(noun)|Pomacentrus leucostictus|damselfish|demoiselle +beaujolais|1 +(noun)|Beaujolais|Burgundy|Burgundy wine|red wine +beaumont|3 +(noun)|Beaumont|William Beaumont|surgeon|operating surgeon|sawbones +(noun)|Beaumont|Francis Beaumont|dramatist|playwright +(noun)|Beaumont|city|metropolis|urban center +beaumontia|1 +(noun)|Beaumontia|genus Beaumontia|dicot genus|magnoliopsid genus +beaumontia grandiflora|1 +(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine +beaut|1 +(noun)|beauty|exemplar|example|model|good example +beauteous|1 +(adj)|beautiful +beauteousness|1 +(noun)|comeliness|fairness|loveliness|beauty +beautician|1 +(noun)|cosmetician|craftsman|artisan|journeyman|artificer +beautification|1 +(noun)|change of state +beautiful|3 +(adj)|beautiful |beauteous|bonny|bonnie|comely|fair|dishy|exquisite|fine-looking|good-looking|better-looking|handsome|well-favored|well-favoured|glorious|resplendent|splendid|splendiferous|gorgeous|lovely|picturesque|pretty|pretty-pretty|pulchritudinous|ravishing|scenic|stunning|fair|sightly|attractive|graceful|pleasing +(adj)|aesthetic |esthetic|aesthetical|esthetical +(adj)|pleasant +beautifully|1 +(adv)|attractively +beautify|3 +(verb)|embellish|prettify|better|improve|amend|ameliorate|meliorate +(verb)|deck|adorn|decorate|grace|embellish|be +(verb)|decorate|adorn|grace|ornament|embellish|change|alter|modify +beauty|3 +(noun)|appearance|visual aspect +(noun)|smasher|stunner|knockout|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman|adult female +(noun)|beaut|exemplar|example|model|good example +beauty bush|1 +(noun)|Kolkwitzia amabilis|shrub|bush +beauty consultant|1 +(noun)|adviser|advisor|consultant +beauty parlor|1 +(noun)|salon|beauty salon|beauty parlour|beauty shop|shop|store +beauty parlour|1 +(noun)|salon|beauty salon|beauty parlor|beauty shop|shop|store +beauty quark|1 +(noun)|bottom quark|quark +beauty salon|1 +(noun)|salon|beauty parlor|beauty parlour|beauty shop|shop|store +beauty shop|1 +(noun)|salon|beauty salon|beauty parlor|beauty parlour|shop|store +beauty sleep|1 +(noun)|sleep|nap +beauty spot|1 +(noun)|adornment +beauty treatment|1 +(noun)|beautification +beauvoir|1 +(noun)|Beauvoir|Simone de Beauvoir|feminist|women's rightist|women's liberationist|libber|existentialist +beaux arts|1 +(noun)|fine arts|humanistic discipline|humanities|liberal arts|arts +beaver|7 +(noun)|fur|pelt +(noun)|beard|face fungus|whiskers +(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|top hat|topper|hat|chapeau|lid +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|castor|fur hat +(noun)|rodent|gnawer|gnawing animal +(verb)|beaver away|work +beaver away|1 +(verb)|beaver|work +beaver board|1 +(noun)|wallboard +beaver rat|1 +(noun)|water rat +beaver state|1 +(noun)|Oregon|Beaver State|OR|American state +beaverbrook|1 +(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher|newspaper publisher|politician|politico|pol|political leader +bebop|2 +(noun)|bop|jazz +(verb)|bop|dance|trip the light fantastic|trip the light fantastic toe +becalm|1 +(verb)|steady|calm|stabilize|stabilise +becalmed|1 +(adj)|nonmoving |unmoving +bechamel|1 +(noun)|white sauce|bechamel sauce|sauce +bechamel sauce|1 +(noun)|white sauce|bechamel|sauce +bechance|2 +(verb)|befall|betide|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|happen|befall|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +becharm|2 +(verb)|charm|control|command +(verb)|capture|enamour|trance|catch|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +bechtel crab|1 +(noun)|Bechtel crab|flowering crab|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis +bechuana|1 +(noun)|Tswana|Bechuana|Batswana|Bantu +beck|1 +(noun)|gesture|motion +becker muscular dystrophy|1 +(noun)|Becker muscular dystrophy|muscular dystrophy|dystrophy +becket|2 +(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop|martyr|saint +(noun)|line +becket bend|1 +(noun)|sheet bend|weaver's knot|weaver's hitch|hitch +beckett|1 +(noun)|Beckett|Samuel Beckett|writer|author|dramatist|playwright +beckley|1 +(noun)|Beckley|city|metropolis|urban center|West Virginia|Mountain State|WV +beckman thermometer|1 +(noun)|Beckman thermometer|mercury thermometer|mercury-in-glass thermometer +beckon|3 +(verb)|wave|gesticulate|gesture|motion +(verb)|attract|appeal +(verb)|summon +becloud|1 +(verb)|obscure|befog|obnubilate|haze over|fog|cloud|mist|hide|conceal +become|3 +(verb)|go|get|change state|turn +(verb)|turn|transform|transmute|metamorphose +(verb)|suit|beautify|embellish|prettify +become flat|1 +(verb)|die|pall|change +becoming|2 +(adj)|comely|comme il faut|decent|decorous|seemly|proper +(adj)|flattering +becomingness|1 +(noun)|decorum|decorousness +becquerel|1 +(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist +bed|13 +(noun)|furniture|piece of furniture|article of furniture +(noun)|plot|plot of ground|patch +(noun)|bottom|natural depression|depression +(noun)|stratum +(noun)|seam|stratum +(noun)|layer|sheet|flat solid +(noun)|surface +(noun)|foundation|base|fundament|foot|groundwork|substructure|understructure +(verb)|supply|provide|render|furnish +(verb)|plant|set +(verb)|put|set|place|pose|position|lay +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +(verb)|go to bed|turn in|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +bed-and-breakfast|2 +(noun)|bed and breakfast|boarding house|boardinghouse +(noun)| +bed-ground|3 +(noun)|bed ground|bedground|area|country +(noun)| +(noun)| +bed-hop|2 +(verb)|bedhop|fornicate +(verb)| +bed-wetting|1 +(noun)|enuresis|urinary incontinence +bed and breakfast|2 +(noun)|bed-and-breakfast|boarding house|boardinghouse +(noun)| +bed bug|2 +(noun)|bedbug|chinch|Cimex lectularius|hemipterous insect|bug|hemipteran|hemipteron +(noun)| +bed check|1 +(noun)|confirmation|verification|check|substantiation +bed clothing|1 +(noun)|bedclothes|bedding|cloth covering +bed cover|2 +(noun)|bedspread|bedcover|bed covering|counterpane|spread|bedclothes|bed clothing|bedding +(noun)| +bed covering|1 +(noun)|bedspread|bedcover|bed cover|counterpane|spread|bedclothes|bed clothing|bedding +bed down|1 +(verb)|bunk down|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +bed ground|3 +(noun)|bed-ground|bedground|area|country +(noun)| +(noun)| +bed jacket|1 +(noun)|jacket +bed linen|1 +(noun)|linen +bed of flowers|1 +(noun)|flowerbed|flower bed|bed +bed of roses|1 +(noun)|rose bed|flowerbed|flower bed|bed of flowers +bed pillow|1 +(noun)|pillow +bed rest|2 +(noun)|bedrest|rest|ease|repose|relaxation +(noun)| +bed sheet|1 +(noun)|sheet|bed linen +bed wetter|2 +(noun)|bedwetter|wetter|pisser|urinator +(noun)| +beda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +bedamn|1 +(verb)|curse|beshrew|damn|anathemize|anathemise|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +bedaub|1 +(verb)|besmear|cover +bedaubed|1 +(adj)|adorned |decorated +bedaze|1 +(verb)|stun|daze|desensitize|desensitise +bedazzle|1 +(verb)|dazzle|daze|blind +bedbug|1 +(noun)|bed bug|chinch|Cimex lectularius|hemipterous insect|bug|hemipteran|hemipteron +bedchamber|1 +(noun)|bedroom|sleeping room|chamber|room +bedclothes|1 +(noun)|bed clothing|bedding|cloth covering +bedcover|1 +(noun)|bedspread|bed cover|bed covering|counterpane|spread|bedclothes|bed clothing|bedding +bedded|2 +(adj)|stratified |foliate|foliated|foliaceous|laminar|laminal|layered|superimposed|sheetlike +(adj)|bedded |double-bedded|single-bedded|twin-bedded +bedder|1 +(noun)|bedding plant|garden plant +bedding|2 +(noun)|bedclothes|bed clothing|cloth covering +(noun)|bedding material|litter|substance|matter +bedding geranium|1 +(noun)|fish geranium|zonal pelargonium|Pelargonium hortorum|geranium +bedding material|1 +(noun)|bedding|litter|substance|matter +bedding plant|1 +(noun)|bedder|garden plant +bede|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +bedeck|1 +(verb)|deck|bedight|decorate|adorn|grace|ornament|embellish|beautify +bedecked|1 +(adj)|adorned|decked|decked out|clothed |clad +bedesman|1 +(noun)|beadsman|prayer|supplicant +bedevil|2 +(verb)|torment|rag|crucify|dun|frustrate|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|confuse|throw|fox|befuddle|fuddle|confound|discombobulate|be +bedevilment|1 +(noun)|badgering|worrying|torment|harassment|molestation +bedew|1 +(verb)|wet +bedewed|1 +(adj)|dewy|wet +bedfast|1 +(adj)|bedridden|bedrid|infirm|sick-abed|ill |sick +bedfellow|2 +(noun)|associate +(noun)|person|individual|someone|somebody|mortal|human|soul +bedford cord|1 +(noun)|Bedford cord|cord|corduroy +bedframe|1 +(noun)|bedstead|furniture|piece of furniture|article of furniture +bedground|1 +(noun)|bed ground|bed-ground|area|country +bedhop|1 +(verb)|bed-hop|fornicate +bedight|1 +(verb)|deck|bedeck|decorate|adorn|grace|ornament|embellish|beautify +bedim|2 +(verb)|obscure|benight|darken +(verb)|obscure|overcloud|change|alter|modify +bedimmed|1 +(adj)|indistinct +bedizen|2 +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|dizen|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +bedlam|2 +(noun)|chaos|pandemonium|topsy-turvydom|topsy-turvyness|confusion +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +bedlamite|1 +(noun)|lunatic|madman|maniac +bedless|1 +(adj)|bedless +bedlington terrier|1 +(noun)|Bedlington terrier|terrier +bedloe's island|1 +(noun)|Liberty Island|Bedloe's Island|island +bedouin|1 +(noun)|Bedouin|Beduin|nomad|Arab|Arabian +bedpan|1 +(noun)|vessel +bedpost|1 +(noun)|support +bedraggle|1 +(verb)|drench|douse|dowse|soak|sop|souse +bedraggled|2 +(adj)|draggled|dirty |soiled|unclean +(adj)|broken-down|dilapidated|ramshackle|tatterdemalion|tumble-down|unsound|damaged +bedrest|1 +(noun)|bed rest|rest|ease|repose|relaxation +bedrich smetana|1 +(noun)|Smetana|Bedrich Smetana|composer +bedrid|1 +(adj)|bedfast|bedridden|infirm|sick-abed|ill |sick +bedridden|1 +(adj)|bedfast|bedrid|infirm|sick-abed|ill |sick +bedrock|2 +(noun)|rock|stone +(noun)|fundamentals|basics|fundamental principle|basic principle|principle +bedroll|1 +(noun)|bedclothes|bed clothing|bedding +bedroom|1 +(noun)|sleeping room|chamber|bedchamber|room +bedroom community|1 +(noun)|suburb|suburbia|suburban area +bedroom furniture|1 +(noun)|furniture|piece of furniture|article of furniture +bedroom set|1 +(noun)|bedroom suite|suite +bedroom suite|1 +(noun)|bedroom set|suite +bedside|1 +(noun)|side +bedside manner|1 +(noun)|manner|personal manner +bedsit|1 +(noun)|bedsitting room|bedsitter|apartment|flat +bedsitter|1 +(noun)|bedsitting room|bedsit|apartment|flat +bedsitting room|1 +(noun)|bedsitter|bedsit|apartment|flat +bedsore|1 +(noun)|pressure sore|decubitus ulcer|ulcer|ulceration +bedspread|1 +(noun)|bedcover|bed cover|bed covering|counterpane|spread|bedclothes|bed clothing|bedding +bedspring|1 +(noun)|spring +bedstead|1 +(noun)|bedframe|furniture|piece of furniture|article of furniture +bedstraw|1 +(noun)|herb|herbaceous plant +bedtime|1 +(noun)|hour|time of day +beduin|1 +(noun)|Bedouin|Beduin|nomad|Arab|Arabian +bedwetter|1 +(noun)|bed wetter|wetter|pisser|urinator +bee|2 +(noun)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +(noun)|social gathering|social affair +bee balm|4 +(noun)|beebalm|Monarda fistulosa|monarda|wild bergamot +(noun)|beebalm|bergamot mint|oswego tea|Monarda didyma|monarda|wild bergamot +(noun)|lemon balm|garden balm|sweet balm|beebalm|Melissa officinalis|herb|herbaceous plant +(noun)| +bee beetle|1 +(noun)|clerid beetle|clerid +bee eater|1 +(noun)|coraciiform bird +bee fly|1 +(noun)|fly +bee house|1 +(noun)|apiary|shed +bee killer|1 +(noun)|robber fly|dipterous insect|two-winged insects|dipteran|dipteron +bee moth|1 +(noun)|wax moth|Galleria mellonella|pyralid|pyralid moth +bee orchid|1 +(noun)|Ophrys apifera|orchid|orchidaceous plant +bee sting|1 +(noun)|sting|bite|insect bite +beebalm|3 +(noun)|bee balm|Monarda fistulosa|monarda|wild bergamot +(noun)|bee balm|bergamot mint|oswego tea|Monarda didyma|monarda|wild bergamot +(noun)|lemon balm|garden balm|sweet balm|bee balm|Melissa officinalis|herb|herbaceous plant +beebread|1 +(noun)|ambrosia|composition +beech|2 +(noun)|beech tree|tree +(noun)|beechwood|wood +beech family|1 +(noun)|Fagaceae|family Fagaceae|hamamelid dicot family +beech fern|1 +(noun)|fern +beech marten|1 +(noun)|stone marten|Martes foina|marten|marten cat +beech tree|1 +(noun)|beech|tree +beechen|1 +(adj)|woody +beecher|1 +(noun)|Beecher|Henry Ward Beecher|clergyman|reverend|man of the cloth|abolitionist|emancipationist +beechnut|1 +(noun)|edible nut +beechwood|1 +(noun)|beech|wood +beef|4 +(noun)|beef cattle|cattle|cows|kine|oxen|Bos taurus +(noun)|boeuf|meat +(noun)|gripe|kick|bitch|squawk|objection +(verb)|gripe|grouse|crab|squawk|bellyache|holler|complain|kick|plain|sound off|quetch|kvetch +beef bourguignonne|1 +(noun)|beef Bourguignonne|boeuf Bourguignonne|dish +beef broth|1 +(noun)|beef stock|broth|stock +beef burrito|1 +(noun)|burrito +beef cattle|1 +(noun)|beef|cattle|cows|kine|oxen|Bos taurus +beef fondue|1 +(noun)|boeuf fondu bourguignon|fondue|fondu +beef goulash|1 +(noun)|goulash|Hungarian goulash|gulyas +beef jerky|1 +(noun)|jerky|jerked meat +beef loin|1 +(noun)|cut of beef +beef man|1 +(noun)|cattleman|cow man|stockman|stock raiser|stock farmer +beef neck|1 +(noun)|cut of beef +beef patty|1 +(noun)|chopped steak|chop steak|chopsteak|hamburger steak|beefsteak +beef plant|1 +(noun)|beefsteak plant|Iresine herbstii|Iresine reticulata|bloodleaf +beef roast|1 +(noun)|roast beef|roast|joint +beef stew|1 +(noun)|stew +beef stock|1 +(noun)|beef broth|broth|stock +beef stroganoff|1 +(noun)|beef Stroganoff|dish +beef tallow|1 +(noun)|tallow +beef tea|1 +(noun)|Bovril|infusion|extract +beef tenderloin|1 +(noun)|tenderloin|undercut +beef tongue|1 +(noun)|tongue +beef up|1 +(verb)|strengthen|fortify|change|alter|modify +beef wellington|1 +(noun)|beef Wellington|filet de boeuf en croute|dish +beefalo|1 +(noun)|cattalo|beef|beef cattle +beefburger|1 +(noun)|hamburger|sandwich +beefcake|1 +(noun)|photograph|photo|exposure|pic +beefeater|1 +(noun)|yeoman|yeoman of the guard|bodyguard|escort +beefed-up|1 +(adj)|strong +beefsteak|1 +(noun)|steak +beefsteak begonia|1 +(noun)|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia +beefsteak fungus|1 +(noun)|Fistulina hepatica|polypore|pore fungus|pore mushroom +beefsteak geranium|1 +(noun)|rex begonia|king begonia|painted-leaf begonia|Begonia rex|begonia +beefsteak morel|1 +(noun)|Gyromitra esculenta|brain mushroom|gyromitra +beefsteak plant|2 +(noun)|Perilla frutescens crispa|herb|herbaceous plant +(noun)|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf +beefsteak tomato|1 +(noun)|tomato +beefwood|5 +(noun)|balata|balata tree|bully tree|Manilkara bidentata|tree +(noun)|wood +(noun)|casuarina +(noun)|scrub beefwood|Stenocarpus salignus|tree +(noun)|Grevillea striata|silk oak +beefy|1 +(adj)|burly|husky|strapping|buirdly|robust +beehive|4 +(noun)|workplace|work +(noun)|hive|nest +(noun)|hairdo|hair style|coiffure +(noun)|hive|receptacle +beehive state|1 +(noun)|Utah|Beehive State|Mormon State|UT|American state +beekeeper|1 +(noun)|apiarist|apiculturist|farmer|husbandman|granger|sodbuster +beekeeping|1 +(noun)|apiculture|cultivation +beeline|1 +(noun)|path|route|itinerary +beelzebub|1 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +beep|3 +(noun)|bleep|sound +(verb)|honk|blare|claxon|toot|sound|go +(verb)|call|send for +beeper|1 +(noun)|pager|electronic device +beer|1 +(noun)|brew|brewage +beer barrel|1 +(noun)|beer keg|barrel|cask +beer bottle|1 +(noun)|bottle +beer can|1 +(noun)|can|tin|tin can +beer drinker|1 +(noun)|ale drinker|drinker|imbiber|toper|juicer +beer garden|1 +(noun)|tavern|tap house +beer glass|1 +(noun)|glass|drinking glass +beer hall|1 +(noun)|hall +beer keg|1 +(noun)|beer barrel|barrel|cask +beer maker|1 +(noun)|brewer|maker|shaper +beer mat|1 +(noun)|drip mat +beer mug|1 +(noun)|stein|mug +beerbohm|1 +(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer|author|caricaturist +beery|1 +(adj)|intoxicated |drunk|inebriated +beeswax|2 +(noun)|wax|animal product +(verb)|wax +beet|2 +(noun)|common beet|Beta vulgaris|vegetable +(noun)|beetroot|root vegetable +beet armyworm|1 +(noun)|Spodoptera exigua|caterpillar +beet blight|1 +(noun)|blight +beet green|1 +(noun)|greens|green|leafy vegetable +beet sugar|2 +(noun)|carbohydrate|saccharide|sugar +(noun)|sugar|refined sugar +beethoven|2 +(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer +(noun)|Beethoven|music +beethovenian|1 +(adj)|Beethovenian|composer +beetle|6 +(adj)|beetling|protrusive +(noun)|insect +(noun)|mallet|hammer +(verb)|overhang|hang +(verb)|travel|go|move|locomote +(verb)|beat +beetle-browed|1 +(adj)|scowling|unfriendly +beetle off|1 +(verb)|run off|run out|bolt|bolt out|leave|go forth|go away +beetleweed|1 +(noun)|galax|galaxy|wandflower|coltsfoot|Galax urceolata|herb|herbaceous plant +beetling|1 +(adj)|beetle|protrusive +beetroot|2 +(noun)|Beta vulgaris rubra|beet|common beet|Beta vulgaris +(noun)|beet|root vegetable +befall|2 +(verb)|bechance|betide|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|happen|bechance|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +befit|1 +(verb)|suit|beseem|match|fit|correspond|check|jibe|gibe|tally|agree +befitting|1 +(adj)|appropriate +befittingly|1 +(adv)|appropriately|suitably|fittingly|fitly +befog|1 +(verb)|obscure|becloud|obnubilate|haze over|fog|cloud|mist|hide|conceal +befogged|1 +(adj)|befuddled|confused +befool|2 +(verb)|fool|gull|deceive|lead on|delude|cozen +(verb)|gull|dupe|slang|cod|fool|put on|take in|put one over|put one across|deceive|betray|lead astray +befooling|1 +(noun)|stultification|derision +before|2 +(adv)|earlier +(adv)|ahead|in front +before christ|1 +(adv)|BC|B.C.|before Christ +before long|1 +(adv)|soon|shortly|presently +beforehand|2 +(adj)|advance|early +(adv)|ahead|in advance +befoul|1 +(verb)|foul|defile|maculate|dishonor|disgrace|dishonour|attaint|shame +befouled|1 +(adj)|fouled|dirty |soiled|unclean +befoulment|1 +(noun)|defilement|pollution|dirtiness|uncleanness +befriend|1 +(verb)|bind|tie|attach|bond +befuddle|2 +(verb)|confuse|throw|fox|fuddle|bedevil|confound|discombobulate|be +(verb)|fuddle|intoxicate|soak|inebriate +befuddled|3 +(adj)|befogged|confused +(adj)|baffled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed +(adj)|addled|muddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused +befuddlement|1 +(noun)|bewilderment|obfuscation|puzzlement|mystification|bafflement|bemusement|confusion|mental confusion|confusedness|disarray +beg|3 +(verb)|implore|pray|plead|beg off +(verb)|solicit|tap|request|bespeak|call for|quest +(verb)|request|bespeak|call for|quest +beg off|1 +(verb)|excuse|request|bespeak|call for|quest +beget|1 +(verb)|get|engender|father|mother|sire|generate|bring forth|make|create +begetter|1 +(noun)|father|male parent|parent +beggar|3 +(noun)|mendicant|pauper|poor man +(verb)|defy|resist|refuse +(verb)|pauperize|pauperise|impoverish +beggar's-ticks|1 +(noun)|bur marigold|burr marigold|beggar-ticks|sticktight|subshrub|suffrutex +beggar's lice|2 +(noun)|beggar lice|stickweed +(noun)|tick trefoil|beggar lice|subshrub|suffrutex +beggar-my-neighbor|1 +(noun)|beggar-my-neighbour|strip-Jack-naked|card game|cards +beggar-my-neighbor policy|1 +(noun)|beggar-my-neighbour policy|beggar-my-neighbor strategy|beggar-my-neighbour strategy|policy +beggar-my-neighbor strategy|1 +(noun)|beggar-my-neighbor policy|beggar-my-neighbour policy|beggar-my-neighbour strategy|policy +beggar-my-neighbour|1 +(noun)|beggar-my-neighbor|strip-Jack-naked|card game|cards +beggar-my-neighbour policy|1 +(noun)|beggar-my-neighbor policy|beggar-my-neighbor strategy|beggar-my-neighbour strategy|policy +beggar-my-neighbour strategy|1 +(noun)|beggar-my-neighbor policy|beggar-my-neighbour policy|beggar-my-neighbor strategy|policy +beggar-ticks|2 +(noun)|spanish needles|bur|burr +(noun)|bur marigold|burr marigold|beggar's-ticks|sticktight|subshrub|suffrutex +beggar lice|2 +(noun)|beggar's lice|stickweed +(noun)|tick trefoil|beggar's lice|subshrub|suffrutex +beggarly|2 +(adj)|mean|poor +(adj)|mean|stingy |ungenerous +beggarman|1 +(noun)|beggar|mendicant +beggarweed|1 +(noun)|Desmodium tortuosum|Desmodium purpureum|tick trefoil|beggar lice|beggar's lice +beggarwoman|1 +(noun)|beggar|mendicant +beggary|2 +(noun)|begging|mendicancy|solicitation +(noun)|indigence|need|penury|pauperism|pauperization|poverty|poorness|impoverishment +begging|1 +(noun)|beggary|mendicancy|solicitation +begild|1 +(verb)|gild|engild|decorate|adorn|grace|ornament|embellish|beautify +begin|9 +(noun)|Begin|Menachem Begin|statesman|solon|national leader +(verb)|get down|get|start out|start|set about|set out|commence +(verb)|start +(verb)|lead off|start|commence +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|be +(verb)|start|be +(verb)|start|act|move +(verb)|achieve|accomplish|attain|reach +beginner|2 +(noun)|novice|tyro|tiro|initiate|unskilled person +(noun)|founder|founding father|father|originator|conceiver|mastermind +beginning|6 +(adj)|first|opening +(noun)|happening|occurrence|natural event +(noun)|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset|point|point in time +(noun)|part|section|division +(noun)|origin|root|rootage|source|point +(noun)|start|commencement|change of state +beginning rhyme|1 +(noun)|alliteration|initial rhyme|head rhyme|rhyme|rime +begird|1 +(verb)|girth|girt|gird|surround|environ|encircle|circle|round|ring +begonia|1 +(noun)|flower +begonia cheimantha|1 +(noun)|Christmas begonia|blooming-fool begonia|Begonia cheimantha|begonia +begonia cocchinea|1 +(noun)|angel-wing begonia|Begonia cocchinea|begonia +begonia dregei|1 +(noun)|grape-leaf begonia|maple-leaf begonia|Begonia dregei|begonia +begonia erythrophylla|1 +(noun)|beefsteak begonia|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia +begonia family|1 +(noun)|Begoniaceae|family Begoniaceae|dilleniid dicot family +begonia feastii|1 +(noun)|beefsteak begonia|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia +begonia heracleifolia|1 +(noun)|star begonia|star-leaf begonia|Begonia heracleifolia|begonia +begonia rex|1 +(noun)|rex begonia|king begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia +begonia semperflorens|1 +(noun)|wax begonia|Begonia semperflorens|begonia +begonia socotrana|1 +(noun)|Socotra begonia|Begonia socotrana|begonia +begonia tuberhybrida|1 +(noun)|hybrid tuberous begonia|Begonia tuberhybrida|tuberous begonia +begoniaceae|1 +(noun)|Begoniaceae|family Begoniaceae|begonia family|dilleniid dicot family +begotten|1 +(adj)|biological +begrime|1 +(verb)|dirty|soil|grime|colly|bemire|change|alter|modify +begrimed|1 +(adj)|dingy|grimy|grubby|grungy|raunchy|dirty |soiled|unclean +begrudge|2 +(verb)|envy|desire|want +(verb)|resent +beguile|2 +(verb)|juggle|hoodwink|cheat|rip off|chisel +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|charm|fascinate|bewitch|entrance|enchant|attract|appeal +beguiled|1 +(adj)|captivated|charmed|delighted|enthralled|entranced|enchanted +beguilement|2 +(noun)|bewitchery|animal magnetism|attractiveness +(noun)|distraction|entertainment|amusement +beguiler|2 +(noun)|deceiver|cheat|cheater|trickster|slicker|wrongdoer|offender +(noun)|charmer|person|individual|someone|somebody|mortal|human|soul +beguiling|2 +(adj)|alluring|enticing|tempting|seductive +(adj)|dishonest |dishonorable +beguine|3 +(noun)|Beguine|sister +(noun)|dance music|danceroom music|ballroom music +(noun)|ballroom dancing|ballroom dance +begum|1 +(noun)|lady|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +behalf|2 +(noun)|stead|position|place|lieu +(noun)|sake|interest +behave|3 +(verb)|act|do +(verb)|acquit|bear|deport|conduct|comport|carry|hold|carry|bear|act|move +(verb)|comport|act|move +behavior|4 +(noun)|behaviour|conduct|doings|activity +(noun)|behaviour|action|activity|activeness +(noun)|demeanor|demeanour|behaviour|conduct|deportment|trait +(noun)|behaviour|activity +behavior modification|1 +(noun)|behavior therapy|psychotherapy +behavior therapy|1 +(noun)|behavior modification|psychotherapy +behavioral|1 +(adj)|behavioural|activity +behaviorism|1 +(noun)|behaviourism|behavioristic psychology|behaviouristic psychology|experimental psychology|psychonomics +behaviorist|2 +(adj)|behavioristic|behaviouristic|behaviourist|experimental psychology|psychonomics +(noun)|behaviourist|psychologist +behavioristic|1 +(adj)|behaviorist|behaviouristic|behaviourist|experimental psychology|psychonomics +behavioristic psychology|1 +(noun)|behaviorism|behaviourism|behaviouristic psychology|experimental psychology|psychonomics +behaviour|4 +(noun)|behavior|action|activity|activeness +(noun)|demeanor|demeanour|behavior|conduct|deportment|trait +(noun)|behavior|activity +(noun)|behavior|conduct|doings|activity +behavioural|1 +(adj)|behavioral|activity +behaviourism|1 +(noun)|behaviorism|behavioristic psychology|behaviouristic psychology|experimental psychology|psychonomics +behaviourist|2 +(adj)|behavioristic|behaviorist|behaviouristic|experimental psychology|psychonomics +(noun)|behaviorist|psychologist +behaviouristic|1 +(adj)|behavioristic|behaviorist|behaviourist|experimental psychology|psychonomics +behaviouristic psychology|1 +(noun)|behaviorism|behaviourism|behavioristic psychology|experimental psychology|psychonomics +behead|1 +(verb)|decapitate|kill +beheaded|1 +(adj)|decapitated|headless +beheading|2 +(noun)|decapitation|execution|executing|capital punishment|death penalty +(noun)|decapitation|killing|kill|putting to death +behemoth|2 +(noun)|giant|goliath|monster|colossus|anomaly|unusual person +(noun)|colossus|giant|heavyweight|titan|important person|influential person|personage +behest|1 +(noun)|command|bid|bidding|dictation +behind|4 +(adj)|trailing|down +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|derriere|fanny|ass|body part +(adv)|slow +(adv)|behindhand|in arrears +behind-the-scenes|1 +(adj)|sub-rosa|under-the-table|covert +behindhand|2 +(adj)|unpunctual +(adv)|behind|in arrears +behmen|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +behmenism|1 +(noun)|Boehmenism|Behmenism|theological doctrine|religious doctrine +behold|1 +(verb)|lay eyes on|see +beholden|1 +(adj)|obligated +beholder|1 +(noun)|perceiver|observer|person|individual|someone|somebody|mortal|human|soul +beholding|1 +(noun)|visual perception|seeing|perception +behoove|1 +(verb)|behove|meet|fit|conform to +behove|1 +(verb)|behoove|meet|fit|conform to +behrens|1 +(noun)|Behrens|Peter Behrens|architect|designer +behring|1 +(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator +beige|2 +(adj)|chromatic +(noun)|ecru|light brown +beigel|1 +(noun)|bagel|bun|roll +beijing|1 +(noun)|Beijing|Peking|Peiping|capital of Red China|national capital +beijing dialect|1 +(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese +being|2 +(noun)|beingness|existence|state +(noun)|organism|living thing|animate thing +beingness|1 +(noun)|being|existence|state +beira|1 +(noun)|Beira|city|metropolis|urban center|port +beirut|1 +(noun)|Beirut|capital of Lebanon|national capital +bejewel|1 +(verb)|jewel|decorate|adorn|grace|ornament|embellish|beautify +bejeweled|1 +(adj)|beaded|beady|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +bejewelled|1 +(adj)|beaded|beady|bejeweled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +bel|2 +(noun)|B|sound unit +(noun)|Bel|Semitic deity +bel-merodach|1 +(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity +bel and the dragon|1 +(noun)|Bel and the Dragon|book +bel canto|1 +(noun)|singing|vocalizing +bel esprit|1 +(noun)|intellectual|intellect +bela bartok|1 +(noun)|Bartok|Bela Bartok|composer|pianist|piano player +bela ferenc blasko|1 +(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor|histrion|player|thespian|role player +bela lugosi|1 +(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor|histrion|player|thespian|role player +belabor|3 +(verb)|belabour|work at|work on +(verb)|belabour|knock|criticize|criticise|pick apart +(verb)|belabour|beat|beat up|work over +belabour|3 +(verb)|belabor|work at|work on +(verb)|belabor|beat|beat up|work over +(verb)|belabor|knock|criticize|criticise|pick apart +belamcanda|1 +(noun)|Belamcanda|genus Belamcanda|liliid monocot genus +belamcanda chinensis|1 +(noun)|blackberry-lily|leopard lily|Belamcanda chinensis|iridaceous plant +belarus|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +belarusian|2 +(adj)|Belarusian|European country|European nation +(noun)|Belarusian|Byelorussian|Slavic|Slavic language|Slavonic|Slavonic language +belarusian monetary unit|1 +(noun)|Belarusian monetary unit|monetary unit +belated|1 +(adj)|late|tardy|unpunctual +belatedly|1 +(adv)|late|tardily +belau|1 +(noun)|Palau|Palau Islands|Belau|Pelew|archipelago +belay|3 +(noun)|outcrop|outcropping|rock outcrop +(verb)|fasten|fix|secure +(verb)|fasten|fix|secure +belaying pin|1 +(noun)|bar +belch|3 +(noun)|belching|burp|burping|eructation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +(verb)|burp|bubble|eruct|emit|breathe|pass off +(verb)|erupt|extravasate|explode|burst +belching|2 +(noun)|expulsion|projection|ejection|forcing out +(noun)|belch|burp|burping|eructation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +beldam|2 +(noun)|hag|beldame|witch|crone|old woman +(noun)|beldame|old woman +beldame|2 +(noun)|hag|beldam|witch|crone|old woman +(noun)|beldam|old woman +beleaguer|2 +(verb)|tease|badger|pester|bug|torment|rag|bedevil|crucify|dun|frustrate +(verb)|besiege|surround|hem in|circumvent|attack|assail +beleaguering|1 +(noun)|siege|besieging|military blockade|blockade|encirclement +belem|1 +(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city|metropolis|urban center|port +belemnite|1 +(noun)|fossil +belemnitic|1 +(adj)|fossil +belemnitidae|1 +(noun)|Belemnitidae|family Belemnitidae|mollusk family +belemnoidea|1 +(noun)|Belemnoidea|order Belemnoidea|animal order +belfast|1 +(noun)|Belfast|capital of Northern Ireland|capital +belfry|2 +(noun)|campanile|bell tower +(noun)|room +belgian|2 +(adj)|Belgian|European country|European nation +(noun)|Belgian|European +belgian beef stew|1 +(noun)|carbonnade flamande|Belgian beef stew|dish +belgian capital|1 +(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital +belgian congo|1 +(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country|African nation +belgian endive|1 +(noun)|Belgian endive|French endive|witloof|chicory escarole|endive|escarole +belgian franc|1 +(noun)|Belgian franc|franc +belgian griffon|1 +(noun)|griffon|Brussels griffon|Belgian griffon|dog|domestic dog|Canis familiaris +belgian hare|1 +(noun)|Belgian hare|leporide|rabbit|coney|cony +belgian sheepdog|1 +(noun)|Belgian sheepdog|Belgian shepherd|shepherd dog|sheepdog|sheep dog +belgian shepherd|1 +(noun)|Belgian sheepdog|Belgian shepherd|shepherd dog|sheepdog|sheep dog +belgian waffle|1 +(noun)|Belgian waffle|waffle +belgique|1 +(noun)|Belgium|Kingdom of Belgium|Belgique|European country|European nation +belgium|1 +(noun)|Belgium|Kingdom of Belgium|Belgique|European country|European nation +belgrade|1 +(noun)|Belgrade|Beograd|capital of Yugoslavia|national capital +belie|2 +(verb)|contradict|negate|deviate|vary|diverge|depart +(verb)|misrepresent|represent +belief|2 +(noun)|content|cognitive content|mental object +(noun)|impression|feeling|notion|opinion|idea|thought +believability|1 +(noun)|credibility|credibleness|quality +believable|1 +(adj)|credible |likely|plausible|presumptive|plausible|thinkable +believably|1 +(adv)|credibly|plausibly|probably +believe|4 +(verb)|accept +(verb)|think|consider|conceive|judge +(verb)|trust|expect|anticipate +(verb)|credit +believe in|1 +(verb)|believe +believer|2 +(noun)|truster|supporter|protagonist|champion|admirer|booster|friend +(noun)|worshiper|worshipper|religionist|religious person +believing|1 +(noun)|basic cognitive process +believingly|1 +(adv)|credulously +belike|1 +(adv)|probably|likely|in all likelihood|in all probability +belisarius|1 +(noun)|Belisarius|general|full general +belittle|3 +(verb)|minimize|denigrate|derogate|disparage|pick at +(verb)|disparage|pick at|knock|criticize|criticise|pick apart +(verb)|diminish|decrease|lessen|minify +belittled|1 +(adj)|diminished|small|decreased |reduced +belittling|3 +(adj)|deprecating|deprecative|deprecatory|depreciative|depreciatory|slighting|uncomplimentary +(noun)|denigration|disparagement|depreciation|derogation +(noun)|disparagement|dispraise +belize|1 +(noun)|Belize|British Honduras|Central American country|Central American nation +belize dollar|1 +(noun)|Belize dollar|dollar +bell|11 +(noun)|acoustic device|signaling device +(noun)|doorbell|buzzer|push button|push|button +(noun)|toll|sound +(noun)|ship's bell|time unit|unit of time +(noun)|bell shape|campana|curve|curved shape +(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician +(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter +(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor|discoverer|artificer +(noun)|chime|gong|percussion instrument|percussive instrument +(noun)|opening +(verb)|attach +bell-bottom|1 +(adj)|bell-bottomed|bottomed +bell-bottomed|1 +(adj)|bell-bottom|bottomed +bell-bottoms|1 +(noun)|bellbottom trousers|trousers|pants +bell-shaped|1 +(adj)|convex |bulging +bell-shaped curve|1 +(noun)|normal curve|Gaussian curve|Gaussian shape|curve|curved shape +bell apple|1 +(noun)|sweet cup|water lemon|yellow granadilla|passion fruit +bell arch|1 +(noun)|round arch +bell book|1 +(noun)|logbook +bell buoy|1 +(noun)|gong buoy|acoustic buoy +bell captain|1 +(noun)|supervisor +bell cot|1 +(noun)|bell cote|shelter +bell cote|1 +(noun)|bell cot|shelter +bell deck|1 +(noun)|floor|flooring +bell founder|1 +(noun)|founder +bell foundry|1 +(noun)|foundry|metalworks +bell gable|1 +(noun)|gable|gable end|gable wall +bell glass|1 +(noun)|bell jar|protective covering|protective cover|protection +bell heather|2 +(noun)|cross-leaved heath|Erica tetralix|erica|true heath +(noun)|heather bell|fine-leaved heath|Erica cinerea|erica|true heath +bell jar|1 +(noun)|bell glass|protective covering|protective cover|protection +bell magpie|1 +(noun)|currawong|Australian magpie +bell metal|1 +(noun)|bronze +bell morel|1 +(noun)|Verpa|morel +bell pepper|2 +(noun)|sweet pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +(noun)|sweet pepper +bell push|1 +(noun)|push button|push|button +bell ringer|3 +(noun)|toller|ringer|signaler|signaller +(noun)|musician|instrumentalist|player +(noun)|bull's eye|mark|home run|success +bell ringing|3 +(noun)|ring|ringing|tintinnabulation +(noun)|electioneering|canvassing|persuasion|suasion +(noun)|carillon|carillon playing|music +bell seat|1 +(noun)|balloon seat|seat +bell shape|1 +(noun)|bell|campana|curve|curved shape +bell tent|1 +(noun)|tent|collapsible shelter +bell the cat|1 +(verb)|risk|put on the line|lay on the line +bell toad|1 +(noun)|tailed frog|ribbed toad|tailed toad|Ascaphus trui|frog|toad|toad frog|anuran|batrachian|salientian +bell tower|1 +(noun)|tower +bella sombra|1 +(noun)|ombu|Phytolacca dioica|pokeweed +belladonna|2 +(noun)|deadly nightshade|Atropa belladonna|herb|herbaceous plant +(noun)|atropine +belladonna lily|1 +(noun)|naked lady|Amaryllis belladonna|amaryllis +bellarmine|2 +(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal|theologian|theologist|theologizer|theologiser +(noun)|longbeard|long-beard|graybeard|jug +bellarmino|1 +(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal|theologian|theologist|theologizer|theologiser +bellbird|1 +(noun)|cotinga|chatterer +bellbottom trousers|1 +(noun)|bell-bottoms|trousers|pants +bellboy|1 +(noun)|bellman|bellhop|attendant|attender|tender +belle|1 +(noun)|girl|miss|missy|young lady|young woman|fille +belle de nuit|1 +(noun)|moonflower|Ipomoea alba|morning glory +belle isle cress|1 +(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +belle miriam silverman|1 +(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano +belleau wood|1 +(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle +bellerophon|1 +(noun)|Bellerophon|mythical being +belles-lettres|2 +(noun)|belles lettres|literary composition|literary work +(noun)| +belles lettres|2 +(noun)|belles-lettres|literary composition|literary work +(noun)| +belletristic|1 +(adj)|literate +bellflower|1 +(noun)|campanula|herb|herbaceous plant +bellflower family|1 +(noun)|Campanulaceae|family Campanulaceae|plant family +bellhop|1 +(noun)|bellboy|bellman|attendant|attender|tender +bellicose|1 +(adj)|battleful|combative|contentious|aggressive +bellied|2 +(adj)|bellied |big-bellied|great bellied +(adj)|bellying|bulbous|bulging|bulgy|protuberant|protrusive +belligerence|2 +(noun)|belligerency|hostility|enmity|ill will +(noun)|aggressiveness|contentiousness|pugnacity|quarrelsomeness|disagreeableness +belligerency|2 +(noun)|belligerence|hostility|enmity|ill will +(noun)|hostility|combat|armed combat +belligerent|3 +(adj)|aggressive|hostile +(adj)|fighting|militant|war-ridden|warring|unpeaceful +(noun)|combatant|battler|fighter|scrapper|person|individual|someone|somebody|mortal|human|soul +belligerently|1 +(adv)|hostilely|with hostility +belling|1 +(noun)|shivaree|chivaree|charivari|callithump|callathump|serenade +bellingham|1 +(noun)|Bellingham|town|port of entry|point of entry +bellini|1 +(noun)|Bellini|Vincenzo Bellini|composer +bellis|1 +(noun)|Bellis|genus Bellis|asterid dicot genus +bellis perennis|1 +(noun)|common daisy|English daisy|Bellis perennis|daisy +bellman|1 +(noun)|bellboy|bellhop|attendant|attender|tender +belloc|1 +(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer|author +bellow|4 +(noun)|bellowing|holla|holler|hollering|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +(noun)|Bellow|Saul Bellow|writer|author +(verb)|bawl|shout +(verb)|roar|utter|emit|let out|let loose +bellower|1 +(noun)|roarer|bawler|screamer|screecher|shouter|yeller|communicator +bellowing|1 +(noun)|bellow|holla|holler|hollering|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +bellows|3 +(noun)|blower|mechanical device +(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +(noun)|Bellow|Saul Bellow|writer|author +bellows fish|1 +(noun)|snipefish|teleost fish|teleost|teleostan +bellpull|1 +(noun)|pull +bells of ireland|1 +(noun)|molucca balm|bells of Ireland|Molucella laevis|herb|herbaceous plant +bellwether|2 +(noun)|leader +(noun)|wether +bellwort|1 +(noun)|merry bells|wild oats|flower +belly|6 +(noun)|abdomen|venter|stomach|body part +(noun)|paunch|adipose tissue|fat|fatty tissue +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|inside|interior +(noun)|underpart +(verb)|belly out|swell|swell up|intumesce|tumefy|tumesce +belly-flop|1 +(verb)|dive +belly-land|1 +(verb)|land|set down +belly-up|1 +(adj)|bankrupt|insolvent +belly dance|2 +(noun)|belly dancing|danse du ventre|stage dancing|choreography +(verb)|dance|trip the light fantastic|trip the light fantastic toe +belly dancer|1 +(noun)|exotic belly dancer|exotic dancer|dancer|professional dancer +belly dancing|1 +(noun)|belly dance|danse du ventre|stage dancing|choreography +belly flop|1 +(noun)|belly flopper|belly whop|belly whopper|dive|diving +belly flopper|1 +(noun)|belly flop|belly whop|belly whopper|dive|diving +belly laugh|2 +(noun)|guffaw|laugh|laughter +(noun)|sidesplitter|howler|thigh-slapper|scream|wow|riot|joke|gag|laugh|jest|jape +belly out|1 +(verb)|belly|swell|swell up|intumesce|tumefy|tumesce +belly whop|1 +(noun)|belly flop|belly flopper|belly whopper|dive|diving +belly whopper|1 +(noun)|belly flop|belly flopper|belly whop|dive|diving +bellyache|2 +(noun)|stomachache|stomach ache|gastralgia|ache|aching +(verb)|gripe|grouse|crab|beef|squawk|holler|complain|kick|plain|sound off|quetch|kvetch +bellyacher|1 +(noun)|whiner|complainer|moaner|sniveller|crybaby|grumbler|squawker|unpleasant person|disagreeable person +bellyband|2 +(noun)|band +(noun)|fastener|fastening|holdfast|fixing +bellybutton|1 +(noun)|navel|umbilicus|omphalos|omphalus|point +bellyful|1 +(noun)|overabundance|overmuch|overmuchness|superabundance +bellying|1 +(adj)|bellied|bulbous|bulging|bulgy|protuberant|protrusive +bellylaugh|1 +(verb)|laugh|express joy|express mirth +bellyless|1 +(adj)|bellyless |flat-bellied +belmont|1 +(noun)|Belmont Park|Belmont|dirt track +belmont park|1 +(noun)|Belmont Park|Belmont|dirt track +belmont stakes|1 +(noun)|Belmont Stakes|thoroughbred race +belo horizonte|1 +(noun)|Belo Horizonte|city|metropolis|urban center +belong|5 +(verb)|be +(verb)|dwell|consist|lie|lie in|exist|be +(verb)|be +(verb)|go|be +(verb)|be +belonging|1 +(noun)|happiness +belongings|2 +(noun)|property|holding|material possession|possession +(noun)|belonging|happiness +belonidae|1 +(noun)|Belonidae|family Belonidae|fish family +belorussia|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +belorussian|1 +(noun)|Byelorussian|Belorussian|White Russian|European +belostomatidae|1 +(noun)|Belostomatidae|family Belostomatidae|arthropod family +beloved|2 +(adj)|darling|dear|loved +(noun)|dear|dearest|loved one|honey|love|lover +below|4 +(adv)|at a lower place|to a lower place|beneath +(adv)|infra +(adv)|downstairs|down the stairs|on a lower floor +(adv)|under +below the belt|2 +(adj)|unfair |unjust +(adv)|unfairly +belowground|2 +(adj)|underground|subsurface +(adj)|buried |inhumed|interred +belsen|1 +(noun)|Belsen|concentration camp|stockade +belshazzar|1 +(noun)|Belshazzar|general|full general +belt|9 +(noun)|loop +(noun)|accessory|accoutrement|accouterment +(noun)|region|part +(noun)|knock|bash|bang|smash|bump|blow +(noun)|swath|path|track|course +(noun)|knock|rap|whack|whang|blow +(verb)|belt out|sing +(verb)|hit +(verb)|fasten|fix|secure +belt along|1 +(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|travel|go|move|locomote +belt bag|1 +(noun)|waist pack|pouch +belt buckle|1 +(noun)|buckle +belt down|1 +(verb)|toss off|pop|bolt down|pour down|down|drink down|kill|drink|imbibe +belt maker|1 +(noun)|maker|shaper +belt out|1 +(verb)|belt|sing +belt up|1 +(verb)|close up|clam up|dummy up|shut up|button up|be quiet|keep mum +belted|1 +(adj)|belted |banded|beltlike +belted kingfisher|1 +(noun)|Ceryle alcyon|kingfisher +belted sandfish|1 +(noun)|Serranus subligarius|sea bass +belting|1 +(noun)|fabric|cloth|material|textile +beltless|1 +(adj)|unbelted +beltlike|1 +(adj)|belted +beluga|2 +(noun)|hausen|white sturgeon|Acipenser huso|sturgeon +(noun)|white whale|Delphinapterus leucas|dolphin +beluga caviar|1 +(noun)|caviar|caviare +belvedere|2 +(noun)|summer cypress|burning bush|fire bush|fire-bush|Bassia scoparia|Kochia scoparia|shrub|bush +(noun)|gazebo|summerhouse +bema|1 +(noun)|chancel|sanctuary|area +bemidji|1 +(noun)|Bemidji|town +bemire|1 +(verb)|dirty|soil|begrime|grime|colly|change|alter|modify +bemisia|1 +(noun)|Bemisia|genus Bemisia|arthropod genus +bemisia tabaci|1 +(noun)|superbug|Bemisia tabaci|poinsettia strain|sweet-potato whitefly +bemoan|1 +(verb)|deplore|lament|bewail|complain|kick|plain|sound off|quetch|kvetch +bemock|1 +(verb)|mock|treat|handle|do by +bemuse|1 +(verb)|bewilder|discombobulate|throw|upset|discompose|untune|disconcert|discomfit +bemused|2 +(adj)|deep in thought|lost|preoccupied|thoughtful +(adj)|baffled|befuddled|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed +bemusement|1 +(noun)|bewilderment|obfuscation|puzzlement|befuddlement|mystification|bafflement|confusion|mental confusion|confusedness|disarray +ben|1 +(noun)|mountain|mount +ben gurion|1 +(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman|solon|national leader +ben hecht|1 +(noun)|Hecht|Ben Hecht|writer|author +ben hogan|1 +(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer|golf player|linksman +ben jonson|1 +(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist|playwright|poet +ben shahn|1 +(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter +ben sira|1 +(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book +benadryl|1 +(noun)|diphenhydramine|Benadryl|antihistamine +bench|8 +(noun)|seat +(noun)|subgroup +(noun)|terrace|tableland|plateau +(noun)|judiciary|administration|governance|governing body|establishment|brass|organization|organisation +(noun)|workbench|work bench|worktable|work table +(noun)|Bench|assembly +(verb)|remove +(verb)|expose|exhibit|display +bench clamp|1 +(noun)|clamp +bench lathe|1 +(noun)|lathe +bench mark|2 +(noun)|benchmark|reference point|point of reference|reference +(noun)|benchmark|standard|criterion|measure|touchstone +bench press|2 +(noun)|weightlifting +(noun)|punch press +bench vise|1 +(noun)|vise|holding device +bench warmer|1 +(noun)|substitute|reserve +bench warrant|1 +(noun)|arrest warrant|warrant +benchley|1 +(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist|humourist|writer|author +benchmark|2 +(noun)|standard|criterion|measure|touchstone +(noun)|bench mark|reference point|point of reference|reference +bend|12 +(noun)|crook|turn|curve|curved shape +(noun)|bending|movement|motion +(noun)|curve|section|segment +(noun)|fold|crease|plication|flexure|crimp|angular shape|angularity +(noun)|Bend|town +(noun)|bend dexter|ordinary +(verb)|flex|change shape|change form|deform +(verb)|turn +(verb)|flex|deform|twist|turn|change shape|change form|deform +(verb)|crouch|stoop|bow|flex +(verb)|deflect|turn away|turn +(verb)|flex|move +bend dexter|1 +(noun)|bend|ordinary +bend over backwards|1 +(verb)|fall over backwards|act|behave|do +bend sinister|1 +(noun)|bar sinister|mark|stigma|brand|stain|ordinary +bendability|1 +(noun)|pliability|flexibility|flexibleness +bendable|1 +(adj)|pliable|pliant|flexible |flexile +benday|1 +(verb)|engrave +benday process|1 +(noun)|Benday process|technique +bended|1 +(adj)|bent|unerect +bender|3 +(noun)|tool +(noun)|carouse|carousal|toot|booze-up|revel|revelry +(noun)|curve|curve ball|breaking ball|pitch|delivery +bending|4 +(adj)|crooked +(noun)|bend|movement|motion +(noun)|deflection|deflexion|physical property +(noun)|change of shape +bendopa|1 +(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa|dihydroxyphenylalanine +bends|7 +(noun)|decompression sickness|aeroembolism|air embolism|gas embolism|caisson disease|illness|unwellness|malady|sickness +(noun)|bend|crook|turn|curve|curved shape +(noun)|bending|bend|movement|motion +(noun)|bend|curve|section|segment +(noun)|fold|crease|plication|flexure|crimp|bend|angular shape|angularity +(noun)|Bend|town +(noun)|bend|bend dexter|ordinary +bendy tree|1 +(noun)|portia tree|seaside mahoe|Thespesia populnea|tulipwood tree +beneath|1 +(adv)|below|at a lower place|to a lower place +benedick|1 +(noun)|benedict|husband|hubby|married man +benedict|3 +(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist +(noun)|Benedict|Saint Benedict|St. Benedict|monk|monastic|saint +(noun)|benedick|husband|hubby|married man +benedict arnold|1 +(noun)|Arnold|Benedict Arnold|general|full general|traitor|treasonist +benedict de spinoza|1 +(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher +benedictine|4 +(adj)|Benedictine|monk|monastic|saint +(adj)|Benedictine|religious +(noun)|Benedictine|religious +(noun)|liqueur|cordial +benedictine order|1 +(noun)|Benedictine order|order of Saint Benedict|order|monastic order +benediction|2 +(noun)|blessing|prayer|supplication +(noun)|blessing|prayer|petition|orison +benedictive|1 +(adj)|benedictory|prayer|petition|orison +benedictory|1 +(adj)|benedictive|prayer|petition|orison +benefact|1 +(verb)|help|assist|aid +benefaction|2 +(noun)|contribution|donation +(noun)|benevolence|kindness|benignity +benefactive role|1 +(noun)|beneficiary|semantic role|participant role +benefactor|1 +(noun)|helper|good person +benefactress|1 +(noun)|benefactor|helper +benefic|1 +(adj)|beneficent +benefice|2 +(noun)|ecclesiastical benefice|spiritualty|spirituality|church property +(verb)|endow|dower +beneficed|1 +(adj)|beneficed +beneficence|2 +(noun)|benevolence +(noun)|good|goodness +beneficent|3 +(adj)|beneficent |benefic|benevolent|good2 +(adj)|benevolent|gracious|good +(adj)|benevolent|eleemosynary|philanthropic|charitable +beneficial|2 +(adj)|good|advantageous +(adj)|good|salutary|healthful +beneficiary|3 +(adj)|spiritualty|spirituality|church property +(noun)|donee|recipient|receiver +(noun)|benefactive role|semantic role|participant role +beneficiate|1 +(verb)|process|treat +beneficiation|1 +(noun)|mineral extraction|mineral processing|mineral dressing|ore processing|ore dressing|extraction +benefit|5 +(noun)|payment +(noun)|welfare|good|goodness +(noun)|performance|public presentation +(verb)|profit|gain|get|acquire +(verb)|do good|help|aid +benefit album|1 +(noun)|tribute album|concept album +benefit concert|1 +(noun)|benefit +benefit of clergy|1 +(noun)|sanction +benelux|1 +(noun)|Benelux|customs union +benet|2 +(noun)|Benet|Stephen Vincent Benet|poet +(noun)|Benet|William Rose Benet|writer|author +benevolence|3 +(noun)|love +(noun)|kindness +(noun)|benefaction|kindness|benignity +benevolent|5 +(adj)|beneficent|gracious|good +(adj)|kindness|benignity +(adj)|benevolent |good|good-hearted|kind|kindly|openhearted|beneficent|charitable|kind +(adj)|freehearted|generous +(adj)|beneficent|eleemosynary|philanthropic|charitable +benficiate|1 +(verb)|deoxidize|deoxidise|reduce +benford's law|1 +(noun)|Benford's law|law|law of nature +bengal|1 +(noun)|Bengal|geographical area|geographic area|geographical region|geographic region +bengal bean|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +bengal kino|1 +(noun)|gum butea|butea gum|butea kino|Bengal kino|gum +bengal light|1 +(noun)|Bengal light|flare|flash +bengal rose|1 +(noun)|China rose|Bengal rose|Rosa chinensis|rose +bengal tiger|1 +(noun)|Bengal tiger|tiger|Panthera tigris +bengali|4 +(adj)|Bengali|geographical area|geographic area|geographical region|geographic region +(noun)|Bengali|Asian|Asiatic +(noun)|Bengali|ethnic group|ethnos +(noun)|Bengali|Magadhan +benghal bean|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +benghazi|1 +(noun)|Benghazi|city|metropolis|urban center|port +benight|3 +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +(verb)|envelop|enfold|enwrap|wrap|enclose +(verb)|obscure|bedim|darken +benighted|2 +(adj)|nighted|unpunctual +(adj)|dark|unenlightened +benign|3 +(adj)|benign +(adj)|benign |benignant|harmless|nonmalignant|kindly|genial|kind|harmless|kind +(adj)|kind +benign prostatic hyperplasia|1 +(noun)|BPH|hyperplasia +benign tumor|1 +(noun)|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm|tumor|tumour|neoplasm +benign tumour|1 +(noun)|benign tumor|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm|tumor|tumour|neoplasm +benignancy|1 +(noun)|benignity|graciousness|good|goodness +benignant|2 +(adj)|benign |harmless|nonmalignant|kindly|genial|kind|harmless|kind +(adj)|gracious|kind +benignantly|1 +(adv)|benignly +benignity|2 +(noun)|benignancy|graciousness|good|goodness +(noun)|kindness|action +benignly|1 +(adv)|benignantly +benin|1 +(noun)|Benin|Republic of Benin|Dahomey|African country|African nation +benin franc|1 +(noun)|Benin franc|franc +beninese|2 +(adj)|Beninese|African country|African nation +(noun)|Beninese|African +benison|1 +(noun)|benediction|blessing +benito mussolini|1 +(noun)|Mussolini|Benito Mussolini|Il Duce|dictator|potentate +benjamin|2 +(noun)|benzoin|gum benzoin|gum benjamin|asa dulcis|gum resin +(noun)|Benjamin|patriarch +benjamin britten|1 +(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor|music director|director|composer +benjamin bush|1 +(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +benjamin david goodman|1 +(noun)|Goodman|Benny Goodman|Benjamin David Goodman|the King of Swing|clarinetist|clarinettist|bandleader +benjamin disraeli|1 +(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman|solon|national leader +benjamin franklin|1 +(noun)|Franklin|Benjamin Franklin|printer|pressman|writer|author|American Revolutionary leader|scientist|man of science +benjamin franklin bridge|1 +(noun)|Benjamin Franklin Bridge|suspension bridge +benjamin franklin norris jr.|1 +(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer|author +benjamin harris|1 +(noun)|Harris|Benjamin Harris|publisher|newspaper publisher +benjamin harrison|1 +(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States|United States President|President|Chief Executive +benjamin henry latrobe|1 +(noun)|Latrobe|Benjamin Henry Latrobe|architect|designer +benjamin jonson|1 +(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist|playwright|poet +benjamin jowett|1 +(noun)|Jowett|Benjamin Jowett|classicist|classical scholar|interpreter|translator +benjamin kubelsky|1 +(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian|comic +benjamin peirce|1 +(noun)|Peirce|Benjamin Peirce|mathematician|astronomer|uranologist|stargazer +benjamin ricketson tucker|1 +(noun)|Tucker|Benjamin Ricketson Tucker|anarchist|nihilist|syndicalist +benjamin rush|1 +(noun)|Rush|Benjamin Rush|doctor|doc|physician|MD|Dr.|medico|American Revolutionary leader +benjamin shahn|1 +(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter +benjamin spock|1 +(noun)|Spock|Benjamin Spock|baby doctor|pediatrician|pediatrist|paediatrician +benjamin thompson|1 +(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist +benjamin west|1 +(noun)|West|Benjamin West|painter +benne|1 +(noun)|sesame|benni|benny|Sesamum indicum|herb|herbaceous plant +bennet|2 +(noun)|white avens|Geum virginianum|avens +(noun)|white avens|Geum canadense|avens +bennett|1 +(noun)|Bennett|Floyd Bennett|aviator|aeronaut|airman|flier|flyer +bennettitaceae|1 +(noun)|Bennettitaceae|family Bennettitaceae|gymnosperm family +bennettitales|1 +(noun)|Bennettitales|order Bennettitales|plant order +bennettitis|1 +(noun)|Bennettitis|genus Bennettitis|gymnosperm genus +benni|1 +(noun)|sesame|benne|benny|Sesamum indicum|herb|herbaceous plant +bennie|1 +(noun)|Benzedrine|amphetamine|pep pill|upper|speed +bennington|1 +(noun)|Bennington|town +benniseed|1 +(noun)|sesame seed|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +benny|2 +(noun)|sesame|benne|benni|Sesamum indicum|herb|herbaceous plant +(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian|comic +benny goodman|1 +(noun)|Goodman|Benny Goodman|Benjamin David Goodman|the King of Swing|clarinetist|clarinettist|bandleader +benny hill|1 +(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian|comic +benoit mandelbrot|1 +(noun)|Mandelbrot|Benoit Mandelbrot|mathematician +bent|8 +(adj)|crooked +(adj)|bent on|dead set|intent on|out to|resolute +(adj)|bended|unerect +(adj)|bowed|inclined|unerect +(adj)|crumpled|dented|damaged +(noun)|set|inclination|disposition|tendency +(noun)|bent grass|bent-grass|grass +(noun)|knack|hang|endowment|gift|talent|natural endowment +bent-grass|2 +(noun)|bent|bent grass|grass +(noun)| +bent grass|2 +(noun)|bent|bent-grass|grass +(noun)| +bent hang|1 +(noun)|hang +bent on|1 +(adj)|bent|dead set|intent on|out to|resolute +benthal|1 +(adj)|benthic|benthonic|biogeographical region +bentham|1 +(noun)|Bentham|Jeremy Bentham|philosopher|jurist|legal expert +benthic|1 +(adj)|benthal|benthonic|biogeographical region +benthic division|1 +(noun)|benthos|benthonic zone|biogeographical region +benthonic|1 +(adj)|benthic|benthal|biogeographical region +benthonic zone|1 +(noun)|benthos|benthic division|biogeographical region +benthos|2 +(noun)|benthic division|benthonic zone|biogeographical region +(noun)|organism|being +benton|2 +(noun)|Benton|Thomas Hart Benton|painter +(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator +bentonite|1 +(noun)|clay +bentonitic|1 +(adj)|clay +bentwood|1 +(noun)|wood +benumb|1 +(verb)|numb|blunt|dull|desensitize|desensitise +benumbed|2 +(adj)|asleep|numb|insensible +(adj)|dulled|uninterested +benvenuto cellini|1 +(noun)|Cellini|Benvenuto Cellini|sculptor|sculpturer|carver|statue maker +benweed|1 +(noun)|ragwort|tansy ragwort|ragweed|Senecio jacobaea|weed +benzedrine|1 +(noun)|Benzedrine|bennie|amphetamine|pep pill|upper|speed +benzene|1 +(noun)|benzine|benzol|aromatic hydrocarbon +benzene formula|1 +(noun)|benzene ring|benzene nucleus|Kekule formula|benzene|benzine|benzol +benzene nucleus|1 +(noun)|benzene formula|benzene ring|Kekule formula|benzene|benzine|benzol +benzene ring|1 +(noun)|benzene formula|benzene nucleus|Kekule formula|benzene|benzine|benzol +benzenoid|1 +(adj)|aromatic hydrocarbon +benzine|1 +(noun)|benzene|benzol|aromatic hydrocarbon +benzoate|1 +(noun)|salt +benzoate of soda|1 +(noun)|sodium benzoate|benzoate +benzocaine|1 +(noun)|ethyl aminobenzoate|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +benzodiazepine|1 +(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug|sedative|sedative drug|depressant|downer|muscle relaxant +benzofuran|1 +(noun)|coumarone|cumarone|compound|chemical compound +benzoic|1 +(adj)|carboxylic acid|gum resin +benzoic acid|1 +(noun)|carboxylic acid +benzoin|2 +(noun)|gum benzoin|benjamin|gum benjamin|asa dulcis|gum resin +(noun)|Benzoin|genus Benzoin|magnoliid dicot genus +benzoin odoriferum|1 +(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +benzol|1 +(noun)|benzene|benzine|aromatic hydrocarbon +benzoquinone|1 +(noun)|quinone|compound|chemical compound +benzoyl group|1 +(noun)|benzoyl radical|group|radical|chemical group +benzoyl peroxide|1 +(noun)|peroxide|bleaching agent|bleach|blanching agent|whitener +benzoyl radical|1 +(noun)|benzoyl group|group|radical|chemical group +benzyl|1 +(noun)|benzyl group|benzyl radical|group|radical|chemical group +benzyl group|1 +(noun)|benzyl|benzyl radical|group|radical|chemical group +benzyl radical|1 +(noun)|benzyl|benzyl group|group|radical|chemical group +benzylic|1 +(adj)|group|radical|chemical group +benzylpenicillin|1 +(noun)|penicillin G|penicillin +beograd|1 +(noun)|Belgrade|Beograd|capital of Yugoslavia|national capital +beowulf|1 +(noun)|Beowulf|fictional character|fictitious character|character +bepaint|1 +(verb)|tint|tinct|tinge|touch|dye +beplastered|1 +(adj)|besmeared|daubed|covered +bequeath|1 +(verb)|will|leave|give|gift|present +bequest|1 +(noun)|legacy|gift|inheritance|heritage +berate|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +berating|1 +(noun)|blowing up|rebuke|reproof|reproval|reprehension|reprimand +berber|3 +(noun)|Berber|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +(noun)|Berber|Arab-Berber|ethnic minority +(noun)|Berber|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +berberidaceae|1 +(noun)|Berberidaceae|family Berberidaceae|barberry family|magnoliid dicot family +berberis|1 +(noun)|Berberis|genus Berberis|magnoliid dicot genus +berberis canadensis|1 +(noun)|American barberry|Berberis canadensis|barberry +berberis thunbergii|1 +(noun)|Japanese barberry|Berberis thunbergii|barberry +berberis vulgaris|1 +(noun)|common barberry|European barberry|Berberis vulgaris|barberry +berceuse|1 +(noun)|lullaby|cradlesong|song +bercy|1 +(noun)|Bercy|Bercy butter|sauce +bercy butter|1 +(noun)|Bercy|Bercy butter|sauce +bereave|1 +(verb)|deprive|strip|divest +bereaved|1 +(adj)|bereft|grief-stricken|grieving|mourning|sorrowing|sorrowful +bereavement|1 +(noun)|mourning|sadness|sorrow|sorrowfulness +bereft|2 +(adj)|lovelorn|unbeloved|unloved +(adj)|bereaved|grief-stricken|grieving|mourning|sorrowing|sorrowful +bereft of|1 +(adj)|deprived of|empty +beret|1 +(noun)|cap +berg|2 +(noun)|iceberg|ice mass|floater +(noun)|Berg|Alban Berg|composer +bergall|1 +(noun)|cunner|Tautogolabrus adspersus|wrasse +bergamot|1 +(noun)|bergamot orange|Citrus bergamia|orange|orange tree +bergamot mint|2 +(noun)|bee balm|beebalm|oswego tea|Monarda didyma|monarda|wild bergamot +(noun)|lemon mint|eau de cologne mint|Mentha citrata|mint +bergamot orange|1 +(noun)|bergamot|Citrus bergamia|orange|orange tree +bergen|1 +(noun)|Bergen|city|metropolis|urban center|port +bergenia|1 +(noun)|herb|herbaceous plant +bergman|2 +(noun)|Bergman|Ingrid Bergman|actress +(noun)|Bergman|Ingmar Bergman|film director +bergson|1 +(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher +beria|1 +(noun)|Beria|Lavrenti Pavlovich Beria|captain|police captain|police chief +beriberi|1 +(noun)|avitaminosis|hypovitaminosis +bering|1 +(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator +bering sea|1 +(noun)|Bering Sea|sea +bering standard time|1 +(noun)|Bering Time|Bering Standard Time|civil time|standard time|local time +bering strait|1 +(noun)|Bering Strait|strait|sound +bering time|1 +(noun)|Bering Time|Bering Standard Time|civil time|standard time|local time +berit|1 +(noun)|Berith|Berit|Brith|Bris|Briss|circumcision +berith|1 +(noun)|Berith|Berit|Brith|Bris|Briss|circumcision +berk|1 +(noun)|stupid|stupid person|dullard|dolt|pudding head|pudden-head|poor fish|pillock +berkeley|2 +(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher|bishop +(noun)|Berkeley|city|metropolis|urban center +berkelium|1 +(noun)|Bk|atomic number 97|metallic element|metal +berkshire|1 +(noun)|Berkshire|county +berkshire hills|1 +(noun)|Berkshires|Berkshire Hills|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +berkshires|2 +(noun)|Berkshires|Berkshire Hills|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Berkshire|county +berlage|1 +(noun)|Berlage|Hendrik Petrus Berlage|architect|designer +berlin|3 +(noun)|Berlin|German capital|national capital +(noun)|Berlin|Irving Berlin|Israel Baline|songwriter|songster|ballad maker +(noun)|limousine|limo +berlin airlift|1 +(noun)|Berlin airlift|airlift|lift +berlin doughnut|1 +(noun)|Berlin doughnut|bismark|jelly doughnut|raised doughnut +berliner|1 +(noun)|Berliner|German +berlioz|1 +(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer +berm|2 +(noun)|ledge|shelf +(noun)|shoulder|edge|margin +bermuda|1 +(noun)|Bermuda|Bermudas|island +bermuda buttercup|1 +(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis|sorrel|wood sorrel +bermuda cedar|1 +(noun)|Bermuda cedar|Juniperus bermudiana|pencil cedar|pencil cedar tree +bermuda chub|1 +(noun)|Bermuda chub|rudderfish|Kyphosus sectatrix|sea chub +bermuda dollar|1 +(noun)|Bermuda dollar|dollar +bermuda grass|1 +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass +bermuda lily|1 +(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily +bermuda maidenhair|1 +(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair|maidenhair fern +bermuda maidenhair fern|1 +(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair|maidenhair fern +bermuda onion|1 +(noun)|Bermuda onion|onion +bermuda plan|1 +(noun)|Bermuda plan|hotel plan|meal plan +bermuda rig|1 +(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig|rigging +bermuda shorts|1 +(noun)|Bermuda shorts|Jamaica shorts|short pants|shorts|trunks +bermuda triangle|1 +(noun)|Bermuda Triangle|area|country|Atlantic|Atlantic Ocean +bermudan|2 +(adj)|Bermudan|island +(noun)|Bermudan|Bermudian|North American +bermudan rig|1 +(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig|rigging +bermudas|2 +(noun)|Bermuda|Bermudas|island +(noun)|Bermuda|Bermudas|island +bermudian|1 +(noun)|Bermudan|Bermudian|North American +bermudian rig|1 +(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig|rigging +bern|1 +(noun)|Bern|Berne|capital of Switzerland|national capital +berna eli oldfield|1 +(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer|race driver|automobile driver +bernanrd arthur owen williams|1 +(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher +bernard|1 +(noun)|Bernard|Claude Bernard|physiologist +bernard baruch|1 +(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier|moneyman|statesman|solon|national leader +bernard hinault|1 +(noun)|Hinault|Bernard Hinault|cyclist|bicyclist|bicycler|wheeler +bernard law montgomery|1 +(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general|full general +bernard malamud|1 +(noun)|Malamud|Bernard Malamud|writer|author +bernard mannes baruch|1 +(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier|moneyman|statesman|solon|national leader +bernardo bertolucci|1 +(noun)|Bertolucci|Bernardo Bertolucci|film maker|filmmaker|film producer|movie maker +bernd heinrich wilhelm von kleist|1 +(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist|playwright +berne|1 +(noun)|Bern|Berne|capital of Switzerland|national capital +bernese mountain dog|1 +(noun)|Bernese mountain dog|working dog +bernhard riemann|1 +(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician +bernhardt|1 +(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress +bernini|1 +(noun)|Bernini|Giovanni Lorenzo Bernini|architect|designer|sculptor|sculpturer|carver|statue maker +bernoulli|3 +(noun)|Bernoulli|Daniel Bernoulli|physicist +(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician +(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician +bernoulli's law|1 +(noun)|Bernoulli's law|law of large numbers|law|law of nature +bernoulli distribution|1 +(noun)|binomial distribution|Bernoulli distribution|distribution|statistical distribution +bernstein|1 +(noun)|Bernstein|Leonard Bernstein|conductor|music director|director|composer +beroe|1 +(noun)|ctenophore|comb jelly +berra|1 +(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer|baseball player +berried|1 +(adj)|baccate|bacciferous|fruitful +berry|4 +(noun)|edible fruit +(noun)|fruit +(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star +(verb)|pick|pluck|cull +berry fern|1 +(noun)|bulblet fern|bulblet bladder fern|Cystopteris bulbifera|bladder fern +berrylike|1 +(adj)|baccate|berry +berserk|2 +(adj)|amuck|amok|demoniac|demoniacal|possessed|insane +(noun)|berserker|Scandinavian|Norse|Northman +berserker|1 +(noun)|berserk|Scandinavian|Norse|Northman +berteroa|1 +(noun)|Berteroa|genus Berteroa|dilleniid dicot genus +berteroa incana|1 +(noun)|hoary alison|hoary alyssum|Berteroa incana|herb|herbaceous plant +berth|6 +(noun)|position|post|office|spot|billet|place|situation|occupation|business|job|line of work|line +(noun)|mooring|moorage|slip|anchorage|anchorage ground +(noun)|bunk|built in bed|bed +(verb)|supply|provide|render|furnish +(verb)|moor|tie up|fasten|fix|secure +(verb)|moor|wharf|dock +bertholletia|1 +(noun)|Bertholletia|genus Bertholletia|dicot genus|magnoliopsid genus +bertholletia excelsa|1 +(noun)|brazil nut|brazil-nut tree|Bertholletia excelsa|nut tree +bertillon|1 +(noun)|Bertillon|Alphonse Bertillon|criminologist +bertillon system|1 +(noun)|Bertillon system|procedure|process +bertolt brecht|1 +(noun)|Brecht|Bertolt Brecht|dramatist|playwright|poet +bertolucci|1 +(noun)|Bertolucci|Bernardo Bertolucci|film maker|filmmaker|film producer|movie maker +bertrand arthur william russell|1 +(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician|logistician|philosopher +bertrand russell|1 +(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician|logistician|philosopher +berycomorphi|1 +(noun)|Berycomorphi|order Berycomorphi|animal order +beryl|1 +(noun)|mineral +beryllium|1 +(noun)|Be|glucinium|atomic number 4|metallic element|metal +beryllium bronze|1 +(noun)|bronze +berzelius|1 +(noun)|Berzelius|Jons Jakob Berzelius|chemist +beseech|1 +(verb)|bid|entreat|adjure|press|conjure|plead +beseeching|1 +(adj)|beseeching |adjuratory|appealing|imploring|importunate|pleading|mendicant|petitionary|precatory|precative|suppliant|supplicant|supplicatory +beseechingly|1 +(adv)|importunately|imploringly|pleadingly|entreatingly +beseem|1 +(verb)|befit|suit|match|fit|correspond|check|jibe|gibe|tally|agree +beset|3 +(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|set upon|assail|assault|set on|attack +(verb)|encrust|incrust|decorate|adorn|grace|ornament|embellish|beautify +beshrew|1 +(verb)|curse|damn|bedamn|anathemize|anathemise|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +besides|2 +(adv)|in any case +(adv)|too|also|likewise|as well +besiege|3 +(verb)|beleaguer|surround|hem in|circumvent|attack|assail +(verb)|distress +(verb)|importune|insist +besieged|1 +(adj)|enclosed +besieger|2 +(noun)|enemy|foe|foeman|opposition +(noun)|petitioner|suppliant|supplicant +besieging|1 +(noun)|siege|beleaguering|military blockade|blockade|encirclement +besmear|1 +(verb)|bedaub|cover +besmeared|1 +(adj)|beplastered|daubed|covered +besmirch|2 +(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|charge|accuse +(verb)|smirch|smear +besmirched|1 +(adj)|damaged|flyblown|spotted|stained|sullied|tainted|tarnished|blemished +besom|1 +(noun)|broom +besot|1 +(verb)|stupefy|desensitize|desensitise +besotted|1 +(adj)|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +bespangle|2 +(verb)|spangle|decorate|adorn|grace|ornament|embellish|beautify +(verb)|scatter|sprinkle|dot|dust|disperse +bespangled|1 +(adj)|beaded|beady|bejeweled|bejewelled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +bespatter|1 +(verb)|spatter|spot|fleck|blob|blot +bespattered|1 +(adj)|spattered|besplashed|splashed|dirty |soiled|unclean +bespeak|2 +(verb)|betoken|indicate|point|signal|tell +(verb)|request|call for|quest|communicate|pass on|pass|put across +bespeckle|1 +(verb)|speckle|spot|fleck|blob|blot +bespectacled|1 +(adj)|monocled|spectacled|adorned |decorated +besplashed|1 +(adj)|bespattered|spattered|splashed|dirty |soiled|unclean +bespoke|1 +(adj)|bespoken|made-to-order|tailored|tailor-made|custom-made |customized|custom|customised +bespoken|2 +(adj)|bespoke|made-to-order|tailored|tailor-made|custom-made |customized|custom|customised +(adj)|affianced|betrothed|engaged|pledged|attached |committed +bespot|1 +(verb)|mark +besprent|1 +(adj)|sprinkled|wet +besprinkle|1 +(verb)|sprinkle|sparge|wet +bessel|1 +(noun)|Bessel|Friedrich Wilhelm Bessel|mathematician|astronomer|uranologist|stargazer +bessemer|1 +(noun)|Bessemer|Sir Henry Bessemer|metallurgist|metallurgical engineer|inventor|discoverer|artificer +bessemer converter|1 +(noun)|Bessemer converter|converter|convertor +bessemer process|1 +(noun)|Bessemer process|industrial process|steel production +bessera|1 +(noun)|Bessera|genus Bessera|liliid monocot genus +bessera elegans|1 +(noun)|coral drops|Bessera elegans|flower +besseya|1 +(noun)|Besseya|genus Besseya|asterid dicot genus +besseya alpina|1 +(noun)|Alpine besseya|Besseya alpina|kitten-tails +bessie smith|1 +(noun)|Smith|Bessie Smith|singer|vocalist|vocalizer|vocaliser +bessy cerca|1 +(noun)|queen triggerfish|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish +best|44 +(adj)|best |champion|prizewinning|finest|high-grade|top-quality|top-grade|first|foremost|world-class|go-to-meeting|Sunday-go-to-meeting|optimum|optimal|primo|record-breaking|second-best|superfine|unexcelled|unexceeded|unsurpassed|unsurpassable|good|incomparable|uncomparable|superior|top +(adj)|better|advisable +(adj)|good |bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good enough|goodish|redeeming|satisfactory|acceptable|solid|suitable|superb|well-behaved|well behaved|hot|better|favorable|favourable|good|obedient|respectable +(adj)|full|good|ample +(adj)|good |angelic|angelical|beatific|saintlike|saintly|sainted|beneficent|benevolent|gracious|white|worthy|goody-goody|redemptive|redeeming|saving|good|moral|right|righteous|virtuous|worthy +(adj)|estimable|good|honorable|respectable|reputable +(adj)|beneficial|good|advantageous +(adj)|fine|good|superior +(adj)|good|nice +(adj)|good|just|upright|virtuous|righteous +(adj)|adept|expert|good|practiced|proficient|skillful|skilful|skilled +(adj)|good|complete +(adj)|dear|good|near|close +(adj)|benevolent |good|good-hearted|kind|kindly|openhearted|beneficent|charitable|kind +(adj)|dependable|good|safe|secure|sound +(adj)|good|right|ripe|opportune +(adj)|good|well|fortunate +(adj)|effective|good|in effect|in force|operative +(adj)|good|well +(adj)|good|pleasing +(adj)|good|serious|intellectual +(adj)|good|sound|healthy +(adj)|beneficial|good|salutary|healthful +(adj)|good|genuine |echt +(adj)|good|unspoiled|unspoilt|fresh +(adj)|good|discriminating +(noun)|attempt|effort|endeavor|endeavour|try +(noun)|topper|person|individual|someone|somebody|mortal|human|soul +(noun)|Best|C. H. Best|Charles Herbert Best|physiologist +(verb)|outdo|outflank|trump|scoop|beat|beat out|crush|shell|trounce|vanquish +(adv)|better +(adv)|well|good +(adv)|well +(adv)|well|easily +(adv)|well +(adv)|well +(adv)|well +(adv)|well|considerably|substantially +(adv)|well|intimately +(adv)|well +(adv)|well +(adv)|well|advantageously +(adv)|well|comfortably +(adv)|well +best-known|1 +(adj)|known +best-selling|1 +(adj)|popular +best and greatest|1 +(noun)|Jupiter Optimus Maximus|Best and Greatest|Jupiter|Jove +best evidence rule|1 +(noun)|rule of evidence +best friend|1 +(noun)|friend +best man|1 +(noun)|groomsman +best seller|1 +(noun)|trade book|trade edition +bestial|1 +(adj)|beastly|brute|brutish|inhumane +bestialise|1 +(verb)|bestialize|change|alter|modify +bestiality|1 +(noun)|zooerastia|zooerasty|sexual activity|sexual practice|sex|sex activity +bestialize|1 +(verb)|bestialise|change|alter|modify +bestially|1 +(adv)|brutishly|in a beastly manner +bestiary|1 +(noun)|book +bestir|1 +(verb)|rouse|be active|move +bestir oneself|1 +(verb)|get cracking|get going|get moving|get weaving|get started|get rolling|get down|begin|get|start out|start|set about|set out|commence +bestow|3 +(verb)|confer|award|present +(verb)|give +(verb)|lend|impart|contribute|add|bring|change|alter|modify +bestowal|2 +(noun)|bestowment|conferral|conferment|giving|gift +(noun)|bestowment|gift +bestowed|1 +(adj)|conferred|presented|given +bestowment|2 +(noun)|bestowal|gift +(noun)|bestowal|conferral|conferment|giving|gift +bestrew|1 +(verb)|strew|straw +bestride|1 +(verb)|hop on|mount|mount up|get on|jump on|climb on|move +bestubbled|1 +(adj)|stubbled|stubbly|unshaven |unshaved +bet|5 +(noun)|stake|stakes|wager|gamble +(noun)|wager|gambling|gaming|play +(verb)|wager|predict|foretell|prognosticate|call|forebode|anticipate|promise|bet on +(verb)|wager|play|gamble +(verb)|count|depend|look|calculate|reckon|trust|swear|rely|bank +bet on|1 +(verb)|back|gage|stake|game|punt|bet|wager|play +beta|4 +(adj)|important |of import +(adj)|exploratory |explorative +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|Beta|genus Beta|caryophylloid dicot genus|Chenopodiaceae|family Chenopodiaceae|goosefoot family +beta-adrenergic blocker|1 +(noun)|beta blocker|beta-adrenergic blocking agent|blocker|blocking agent +beta-adrenergic blocking agent|1 +(noun)|beta blocker|beta-adrenergic blocker|blocker|blocking agent +beta-adrenergic receptor|1 +(noun)|beta receptor|beta-adrenoceptor|receptor +beta-adrenoceptor|1 +(noun)|beta receptor|beta-adrenergic receptor|receptor +beta-carotene|1 +(noun)|provitamin A|carotene|carotin|carotenoid +beta-hydroxybutyric acid|1 +(noun)|ketone body|acetone body|hydroxybutyric acid|oxybutyric acid +beta-interferon|1 +(noun)|interferon +beta-lactamase|1 +(noun)|penicillinase|enzyme +beta-lipoprotein|1 +(noun)|low-density lipoprotein|LDL|lipoprotein +beta-naphthol|1 +(noun)|naphthol|antioxidant +beta blocker|1 +(noun)|beta-adrenergic blocker|beta-adrenergic blocking agent|blocker|blocking agent +beta cell|1 +(noun)|cell +beta centauri|1 +(noun)|Beta Centauri|star +beta crucis|1 +(noun)|Beta Crucis|star +beta decay|1 +(noun)|decay|radioactive decay|disintegration +beta endorphin|1 +(noun)|endorphin +beta globulin|1 +(noun)|transferrin|siderophilin|globulin +beta iron|1 +(noun)|iron|Fe|atomic number 26 +beta orionis|1 +(noun)|Rigel|Beta Orionis|binary star|binary|double star +beta particle|1 +(noun)|particle +beta radiation|1 +(noun)|beta ray|electron radiation|corpuscular radiation|particulate radiation|ionizing radiation +beta ray|1 +(noun)|beta radiation|electron radiation|corpuscular radiation|particulate radiation|ionizing radiation +beta receptor|1 +(noun)|beta-adrenergic receptor|beta-adrenoceptor|receptor +beta rhythm|1 +(noun)|beta wave|brainwave|brain wave|cortical potential +beta software|1 +(noun)|software|software system|software package|package +beta test|1 +(noun)|trial|trial run|test|tryout +beta vulgaris|1 +(noun)|beet|common beet|Beta vulgaris|vegetable +beta vulgaris cicla|1 +(noun)|chard|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet|common beet|Beta vulgaris +beta vulgaris rubra|1 +(noun)|beetroot|Beta vulgaris rubra|beet|common beet|Beta vulgaris +beta vulgaris vulgaris|1 +(noun)|mangel-wurzel|mangold-wurzel|mangold|Beta vulgaris vulgaris|beet|common beet|Beta vulgaris +beta wave|1 +(noun)|beta rhythm|brainwave|brain wave|cortical potential +betaine|1 +(noun)|alkaloid +betake oneself|1 +(verb)|travel|go|move|locomote +betatron|1 +(noun)|induction accelerator|accelerator|particle accelerator|atom smasher +bete noire|1 +(noun)|anathema|unpleasant person|disagreeable person +betel|1 +(noun)|betel pepper|Piper betel|true pepper|pepper vine +betel nut|1 +(noun)|areca nut|edible seed +betel palm|1 +(noun)|Areca catechu|areca +betel pepper|1 +(noun)|betel|Piper betel|true pepper|pepper vine +betelgeuse|1 +(noun)|Betelgeuse|Alpha Orionis|supergiant +beth|1 +(noun)|letter|letter of the alphabet|alphabetic character +bethe|1 +(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist +bethel|1 +(noun)|place of worship|house of prayer|house of God|house of worship +bethink|1 +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +bethlehem|2 +(noun)|Bethlehem|town +(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town +bethlehem-judah|1 +(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town +bethlehem ephrathah|1 +(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town +bethune|1 +(noun)|Bethune|Mary McLeod Bethune|educator|pedagogue +betide|1 +(verb)|befall|bechance|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +betimes|1 +(adv)|early +betise|1 +(noun)|stupidity|folly|foolishness|imbecility|mistake|error|fault +betoken|2 +(verb)|bespeak|indicate|point|signal|tell +(verb)|bode|portend|auspicate|prognosticate|omen|presage|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|indicate|point|signal +betray|6 +(verb)|bewray|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|sell|deceive|lead on|delude|cozen +(verb)|fail|disappoint|let down +(verb)|cheat on|cheat|cuckold|wander|deceive|lead on|delude|cozen +(verb)|denounce|tell on|give away|rat|grass|shit|shop|snitch|stag|inform +(verb)|deceive|lead astray|misinform|mislead +betrayal|2 +(noun)|treachery|treason|perfidy|dishonesty|knavery +(noun)|treason|subversiveness|traitorousness +betrayer|2 +(noun)|informer|rat|squealer|blabber|informant|source +(noun)|double-crosser|double-dealer|two-timer|traitor|deceiver|cheat|cheater|trickster|beguiler|slicker +betraying|1 +(adj)|revealing +betroth|1 +(verb)|engage|affiance|plight|vow +betrothal|2 +(noun)|troth|engagement|promise +(noun)|espousal|ritual|rite +betrothed|2 +(adj)|affianced|bespoken|engaged|pledged|attached |committed +(noun)|lover +betsy griscom ross|1 +(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker|modiste|needlewoman|seamstress|sempstress +betsy ross|1 +(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker|modiste|needlewoman|seamstress|sempstress +bette davis|1 +(noun)|Davis|Bette Davis|actress +better|51 +(adj)|better |amended|finer|improved +(adj)|better |fitter|healthier +(adj)|best|advisable +(adj)|major +(adj)|good |bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good enough|goodish|redeeming|satisfactory|acceptable|solid|suitable|superb|well-behaved|well behaved|hot|best|favorable|favourable|good|obedient|respectable +(adj)|full|good|ample +(adj)|good |angelic|angelical|beatific|saintlike|saintly|sainted|beneficent|benevolent|gracious|white|worthy|goody-goody|redemptive|redeeming|saving|good|moral|right|righteous|virtuous|worthy +(adj)|estimable|good|honorable|respectable|reputable +(adj)|beneficial|good|advantageous +(adj)|fine|good|superior +(adj)|good|nice +(adj)|good|just|upright|virtuous|righteous +(adj)|adept|expert|good|practiced|proficient|skillful|skilful|skilled +(adj)|good|complete +(adj)|dear|good|near|close +(adj)|benevolent |good|good-hearted|kind|kindly|openhearted|beneficent|charitable|kind +(adj)|dependable|good|safe|secure|sound +(adj)|good|right|ripe|opportune +(adj)|good|well|fortunate +(adj)|effective|good|in effect|in force|operative +(adj)|good|well +(adj)|good|pleasing +(adj)|good|serious|intellectual +(adj)|good|sound|healthy +(adj)|beneficial|good|salutary|healthful +(adj)|good|genuine |echt +(adj)|good|unspoiled|unspoilt|fresh +(adj)|good|discriminating +(adj)|well |all right|fine|asymptomatic|symptomless|cured|healed|recovered|good|fit|healthy|healthy +(adj)|good|well|fortunate +(adj)|well|advisable +(noun)|superior +(noun)|bettor|wagerer|punter|gambler +(noun)|good|goodness +(verb)|break|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|improve|amend|ameliorate|meliorate|change|alter|modify +(verb)|improve|ameliorate|meliorate|change state|turn +(adv)|best +(adv)|well|good +(adv)|well +(adv)|well|easily +(adv)|well +(adv)|well +(adv)|well +(adv)|well|considerably|substantially +(adv)|well|intimately +(adv)|well +(adv)|well +(adv)|well|advantageously +(adv)|well|comfortably +(adv)|well +better-known|1 +(adj)|known +better-looking|2 +(adj)|fine-looking|good-looking|handsome|well-favored|well-favoured|beautiful +(adj)|fine-looking|good-looking|handsome|well-favored|well-favoured|beautiful +better half|1 +(noun)|spouse|partner|married person|mate|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +better off|1 +(adj)|fortunate +bettering|1 +(adj)|bettering |ameliorating|ameliorative|amelioratory|meliorative|amendatory|corrective|remedial +betterment|3 +(noun)|improvement|advance|transformation|transmutation|shift +(noun)|improvement|melioration +(noun)|amelioration|melioration|improvement +betting|1 +(adj)|dissipated|card-playing|gambling|sporting|indulgent +betting odds|1 +(noun)|odds|ratio +betting shop|1 +(noun)|shop|store +bettong|1 +(noun)|rat kangaroo|kangaroo rat +bettongia|1 +(noun)|Bettongia|genus Bettongia|mammal genus +bettor|1 +(noun)|better|wagerer|punter|gambler +betty friedan|1 +(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist|women's rightist|women's liberationist|libber +betty naomi friedan|1 +(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist|women's rightist|women's liberationist|libber +betula|1 +(noun)|Betula|genus Betula|hamamelid dicot genus +betula alleghaniensis|1 +(noun)|yellow birch|Betula alleghaniensis|Betula leutea|birch|birch tree +betula cordifolia|1 +(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch|birch tree +betula fontinalis|1 +(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +betula glandulosa|1 +(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch|birch tree +betula lenta|1 +(noun)|sweet birch|cherry birch|black birch|Betula lenta|birch|birch tree +betula leutea|1 +(noun)|yellow birch|Betula alleghaniensis|Betula leutea|birch|birch tree +betula neoalaskana|1 +(noun)|Yukon white birch|Betula neoalaskana|birch|birch tree +betula nigra|1 +(noun)|black birch|river birch|red birch|Betula nigra|birch|birch tree +betula papyrifera|1 +(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch|birch tree +betula pendula|1 +(noun)|silver birch|common birch|European white birch|Betula pendula|birch|birch tree +betula populifolia|1 +(noun)|gray birch|American gray birch|Betula populifolia|birch|birch tree +betula pubescens|1 +(noun)|downy birch|white birch|Betula pubescens|birch|birch tree +betulaceae|1 +(noun)|Betulaceae|family Betulaceae|birch family|hamamelid dicot family +betulaceous|1 +(adj)|hamamelid dicot family +between|2 +(adv)|betwixt +(adv)|'tween +between decks|1 +(adv)|'tween decks +betweenbrain|1 +(noun)|diencephalon|interbrain|thalmencephalon|neural structure +betwixt|1 +(adv)|between +beurre noisette|1 +(noun)|brown butter|butter +bevatron|1 +(noun)|cyclotron +bevel|3 +(noun)|cant|chamfer|edge +(noun)|bevel square|hand tool +(verb)|chamfer|cut +bevel gear|1 +(noun)|pinion and crown wheel|pinion and ring gear|gear|gear wheel|cogwheel +bevel square|1 +(noun)|bevel|hand tool +beverage|1 +(noun)|drink|drinkable|potable|food|nutrient|liquid +beveridge|1 +(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist|economic expert +beverly hills|1 +(noun)|Beverly Hills|city|metropolis|urban center +beverly sills|1 +(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano +bevin|1 +(noun)|Bevin|Ernest Bevin|statesman|solon|national leader +bevy|2 +(noun)|gathering|assemblage +(noun)|flock +bewail|1 +(verb)|deplore|lament|bemoan|complain|kick|plain|sound off|quetch|kvetch +beware|1 +(verb)|mind|watch|look out|watch out +bewhisker|1 +(verb)|whisker|supply|provide|render|furnish +bewhiskered|1 +(adj)|bearded|barbate|whiskered|whiskery|unshaven |unshaved +bewick's swan|1 +(noun)|Bewick's swan|Cygnus columbianus bewickii|tundra swan|Cygnus columbianus +bewilder|2 +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|bemuse|discombobulate|throw|upset|discompose|untune|disconcert|discomfit +bewildered|1 +(adj)|baffled|befuddled|bemused|confounded|confused|lost|mazed|mixed-up|at sea|perplexed +bewildering|1 +(adj)|unclear +bewilderingly|1 +(adv)|confusingly +bewilderment|1 +(noun)|obfuscation|puzzlement|befuddlement|mystification|bafflement|bemusement|confusion|mental confusion|confusedness|disarray +bewitch|3 +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|entrance|enchant|attract|appeal +(verb)|magnetize|mesmerize|mesmerise|magnetise|spellbind|charm|influence|tempt +(verb)|hex|glamour|witch|enchant|jinx|charm|becharm +bewitched|1 +(adj)|ensorcelled|enchanted +bewitchery|1 +(noun)|beguilement|animal magnetism|attractiveness +bewitching|1 +(adj)|captivating|enchanting|enthralling|entrancing|fascinating|attractive +bewitchingly|1 +(adv)|captivatingly|enchantingly|enthrallingly +bewitchment|1 +(noun)|enchantment|sorcery|black magic|black art|necromancy +bewray|1 +(verb)|betray|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +bey|2 +(noun)|man|adult male +(noun)|governor +beyond|1 +(adv)|on the far side +beyond any doubt|1 +(adv)|undoubtedly|doubtless|beyond question|without doubt +beyond control|1 +(adv)|out of hand +beyond doubt|1 +(adj)|indubitable|unquestionable +beyond question|1 +(adv)|undoubtedly|doubtless|without doubt|beyond any doubt +beyond the sea|1 +(adv)|overseas|over the sea|abroad +bezant|1 +(noun)|bezzant|byzant|solidus|coin +bezel|1 +(noun)|edge +bezique|1 +(noun)|pinochle|pinocle|penuchle|card game|cards +bezoar goat|1 +(noun)|pasang|Capra aegagrus|wild goat +bezzant|1 +(noun)|bezant|byzant|solidus|coin +bhadon|1 +(noun)|Bhadon|Bhadrapada|Hindu calendar month +bhadrapada|1 +(noun)|Bhadon|Bhadrapada|Hindu calendar month +bhaga|1 +(noun)|Bhaga|Hindu deity +bhagavad-gita|2 +(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text|sacred writing|religious writing|religious text +(noun)| +bhagavadgita|1 +(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text|sacred writing|religious writing|religious text +bhakti|1 +(noun)|devotion +bhang|1 +(noun)|soft drug +bharat|1 +(noun)|India|Republic of India|Bharat|Asian country|Asian nation +bhumi devi|1 +(noun)|Bhumi Devi|Hindu deity +bhutan|1 +(noun)|Bhutan|Kingdom of Bhutan|Asian country|Asian nation +bhutanese|2 +(adj)|Bhutanese|Asian country|Asian nation +(noun)|Bhutanese|Bhutani|Asian|Asiatic +bhutanese monetary unit|1 +(noun)|Bhutanese monetary unit|monetary unit +bhutani|1 +(noun)|Bhutanese|Bhutani|Asian|Asiatic +bi|1 +(noun)|bismuth|Bi|atomic number 83|metallic element|metal +bi-fold door|1 +(noun)|interior door +bialy|1 +(noun)|bialystoker|onion roll +bialystoker|1 +(noun)|bialy|onion roll +biannual|1 +(adj)|semiannual|biyearly|time period|period of time|period +bias|5 +(adj)|oblique +(noun)|prejudice|preconception|partiality|partisanship +(noun)|diagonal|straight line +(verb)|prejudice|prepossess +(verb)|predetermine|prejudice|prepossess +biased|2 +(adj)|colored|coloured|one-sided|slanted|partial |unfair +(adj)|one-sided|partisan |partizan +biaural|1 +(adj)|binaural |two-eared|stereophonic|stereo|two-channel +biauriculate heart|1 +(noun)|heart|pump|ticker +biaxal|1 +(adj)|biaxial|biaxate|line +biaxate|1 +(adj)|biaxial|biaxal|line +biaxial|1 +(adj)|biaxal|biaxate|line +bib|3 +(noun)|piece of cloth|piece of material +(noun)|napkin|table napkin|serviette +(verb)|tipple|drink|booze|fuddle +bib-and-tucker|1 +(noun)|outfit|getup|rig|turnout +bibb lettuce|1 +(noun)|Bibb lettuce|butterhead lettuce +bibbed|1 +(adj)|bibbed +bible|2 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(noun)|handbook|enchiridion|vade mecum +bible-worship|1 +(noun)|bibliolatry|Bible-worship|idolatry|devotion|veneration|cultism +bible belt|1 +(noun)|Bible Belt|belt +bible leaf|1 +(noun)|costmary|alecost|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +bibless|1 +(adj)|bibless +biblical|2 +(adj)|scriptural|sacred text|sacred writing|religious writing|religious text +(adj)|sacred text|sacred writing|religious writing|religious text +biblical aramaic|1 +(noun)|Biblical Aramaic|Aramaic +biblical latin|1 +(noun)|Late Latin|Biblical Latin|Latin +bibliographer|1 +(noun)|scholar|scholarly person|student +bibliographic|1 +(adj)|bibliographical|list|listing +bibliographical|1 +(adj)|bibliographic|list|listing +bibliography|1 +(noun)|list|listing +bibliolatrous|1 +(adj)|idolatry|devotion|veneration|cultism +bibliolatry|1 +(noun)|Bible-worship|idolatry|devotion|veneration|cultism +bibliomania|1 +(noun)|acquisitiveness +bibliomaniacal|1 +(adj)|acquisitiveness +bibliophile|1 +(noun)|booklover|book lover|scholar|scholarly person|student +bibliophilic|1 +(adj)|scholar|scholarly person|student +bibliopole|1 +(noun)|bibliopolist|trader|bargainer|dealer|monger +bibliopolic|1 +(adj)|trader|bargainer|dealer|monger +bibliopolist|1 +(noun)|bibliopole|trader|bargainer|dealer|monger +bibliothec|1 +(noun)|librarian|professional|professional person +bibliotheca|1 +(noun)|library +bibliothecal|1 +(adj)|bibliothecarial|library +bibliothecarial|1 +(adj)|bibliothecal|library|professional|professional person +bibliotic|1 +(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +bibliotics|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +bibliotist|1 +(noun)|scientist|man of science +bibos|1 +(noun)|Bibos|genus Bibos|mammal genus +bibos frontalis|1 +(noun)|gayal|mithan|Bibos frontalis|Asian wild ox +bibos gaurus|1 +(noun)|gaur|Bibos gaurus|Asian wild ox +bibulous|1 +(adj)|boozy|drunken|sottish|intoxicated |drunk|inebriated +bicameral|2 +(adj)|bicameral +(adj)|two-chambered|divided +bicapsular|1 +(adj)|pericarp|seed vessel +bicarbonate|1 +(noun)|hydrogen carbonate|carbonate +bicarbonate of soda|1 +(noun)|sodium hydrogen carbonate|sodium bicarbonate|baking soda|saleratus|bicarbonate|hydrogen carbonate +bicentenary|2 +(adj)|bicentennial|anniversary|day of remembrance +(noun)|bicentennial|anniversary|day of remembrance +bicentennial|2 +(adj)|bicentenary|anniversary|day of remembrance +(noun)|bicentenary|anniversary|day of remembrance +bicentric|1 +(adj)|central +bicephalous|1 +(adj)|headed +biceps|1 +(noun)|skeletal muscle|striated muscle +biceps brachii|1 +(noun)|musculus biceps brachii|biceps humeri|biceps +biceps humeri|1 +(noun)|biceps brachii|musculus biceps brachii|biceps +bichloride|1 +(noun)|dichloride|chloride +bichloride of mercury|1 +(noun)|mercuric chloride|mercury chloride|corrosive sublimate|sublimate +bichromate|1 +(noun)|dichromate|salt +bichromated|1 +(adj)|salt +bichrome|1 +(adj)|bicolor|bicolour|bicolored|bicoloured|dichromatic|colored |coloured|colorful +bicipital|1 +(adj)|skeletal muscle|striated muscle +bicker|2 +(noun)|bickering|spat|tiff|squabble|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +(verb)|quibble|niggle|pettifog|squabble|brabble|argue|contend|debate|fence +bickering|1 +(noun)|bicker|spat|tiff|squabble|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +bicolor|1 +(adj)|bicolour|bicolored|bicoloured|bichrome|dichromatic|colored |coloured|colorful +bicolor lespediza|1 +(noun)|ezo-yama-hagi|Lespedeza bicolor|bush clover|lespedeza +bicolored|1 +(adj)|bicolor|bicolour|bicoloured|bichrome|dichromatic|colored |coloured|colorful +bicolour|1 +(adj)|bicolor|bicolored|bicoloured|bichrome|dichromatic|colored |coloured|colorful +bicoloured|1 +(adj)|bicolor|bicolour|bicolored|bichrome|dichromatic|colored |coloured|colorful +biconcave|1 +(adj)|concavo-concave|concave +biconvex|1 +(adj)|convexo-convex|lenticular|lentiform|convex |bulging +bicorn|2 +(adj)|bicorned|bicornate|bicornuate|bicornuous|horned +(noun)|bicorne|cocked hat +bicornate|1 +(adj)|bicorn|bicorned|bicornuate|bicornuous|horned +bicorne|1 +(noun)|bicorn|cocked hat +bicorned|1 +(adj)|bicorn|bicornate|bicornuate|bicornuous|horned +bicornuate|1 +(adj)|bicorn|bicorned|bicornate|bicornuous|horned +bicornuous|1 +(adj)|bicorn|bicorned|bicornate|bicornuate|horned +bicuspid|2 +(adj)|bicuspidate|angular |angulate +(noun)|premolar|tooth +bicuspid valve|1 +(noun)|mitral valve|left atrioventricular valve|atrioventricular valve +bicuspidate|1 +(adj)|bicuspid|angular |angulate +bicycle|2 +(noun)|bike|wheel|cycle|wheeled vehicle +(verb)|cycle|bike|pedal|wheel|ride +bicycle-built-for-two|1 +(noun)|tandem bicycle|tandem|bicycle|bike|wheel|cycle +bicycle chain|1 +(noun)|chain +bicycle clip|1 +(noun)|trouser clip|clip +bicycle pump|1 +(noun)|pump +bicycle race|1 +(noun)|race +bicycle rack|1 +(noun)|rack +bicycle seat|1 +(noun)|saddle|seat +bicycle traffic|1 +(noun)|vehicular traffic|vehicle traffic +bicycle wheel|1 +(noun)|wheel +bicycler|1 +(noun)|cyclist|bicyclist|wheeler|pedaler|pedaller +bicyclic|1 +(adj)|cyclic +bicycling|1 +(noun)|cycling +bicyclist|1 +(noun)|cyclist|bicycler|wheeler|pedaler|pedaller +bid|10 +(noun)|command|bidding|dictation|speech act +(noun)|play|attempt|effort|endeavor|endeavour|try +(noun)|tender|offer|offering +(noun)|bidding|statement +(verb)|offer|tender +(verb)|wish|greet|recognize|recognise +(verb)|beseech|entreat|adjure|press|conjure|plead +(verb)|call|play +(verb)|seek +(verb)|invite|request +bid price|1 +(noun)|price|terms|damage +bida|1 +(noun)|Doha|Bida|El Beda|capital of Qatar|national capital|port +biddable|1 +(adj)|acquiescent|compliant|obedient +bidder|2 +(noun)|applicant|applier +(noun)|bridge player|hand +bidding|3 +(noun)|command|bid|dictation|speech act +(noun)|summons|invitation +(noun)|bid|statement +bidding contest|1 +(noun)|contest +biddy|2 +(noun)|hen|chicken|Gallus gallus +(noun)|chick|chicken|Gallus gallus|young bird +bide|1 +(verb)|abide|stay|stay|stay on|continue|remain +bidens|1 +(noun)|Bidens|genus Bidens|asterid dicot genus +bidens bipinnata|1 +(noun)|spanish needles|Bidens bipinnata|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +bidens connata|1 +(noun)|swampy beggar-ticks|Bidens connata|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +bidens coronata|1 +(noun)|tickseed sunflower|Bidens coronata|Bidens trichosperma|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +bidens trichosperma|1 +(noun)|tickseed sunflower|Bidens coronata|Bidens trichosperma|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +bidens tripartita|1 +(noun)|European beggar-ticks|trifid beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +bidentate|1 +(adj)|rough +bidet|1 +(noun)|basin +bidirectional|1 +(adj)|bidirectional |biface|bifacial|duplex|two-way +biedermeier|1 +(adj)|Biedermeier|furnishings +biegnet|1 +(noun)|French fritter|friedcake +biennial|3 +(adj)|biyearly|time period|period of time|period +(adj)|biennial |two-year +(noun)|plant|flora|plant life +biennially|1 +(adv)|biyearly +bier|2 +(noun)|coffin|casket +(noun)|rack|stand +bierce|1 +(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer|author +biface|1 +(adj)|bifacial|bidirectional +bifacial|1 +(adj)|biface|bidirectional +biff|2 +(noun)|punch|clout|poke|lick|blow +(verb)|pummel|pommel|hit +bifid|1 +(adj)|divided +bifocal|1 +(adj)|central +bifold|1 +(adj)|folded +bifoliate|1 +(adj)|leafy +biform|1 +(adj)|formed +bifurcate|3 +(adj)|biramous|branched|forked|forficate|pronged|prongy|divided +(verb)|diverge +(verb)|branch|ramify|fork|furcate|separate +bifurcated|1 +(adj)|divided +bifurcation|3 +(noun)|branch|fork|leg|ramification +(noun)|furcation|forking +(noun)|branching|ramification|fork|forking +big|16 +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|bigger|larger|biggest|greatest|largest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|important |of import +(adj)|momentous|significant |important +(adj)|large|prominent|conspicuous |obvious +(adj)|bad|intense +(adj)|loud +(adj)|heavy|intemperate +(adj)|adult|full-grown|fully grown|grown|grownup|mature +(adj)|heavy +(adj)|swelled|vainglorious|proud +(adj)|big |elder|older +(adj)|boastful|braggart|bragging|braggy|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +(adj)|large|magnanimous|generous +(adj)|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous +(adj)|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +(adv)|boastfully|vauntingly|large +big-bang theory|2 +(noun)|big bang theory|scientific theory +(noun)| +big-bellied|1 +(adj)|great bellied|bellied +big-boned|1 +(adj)|robust +big-bud hickory|1 +(noun)|mockernut|mockernut hickory|black hickory|white-heart hickory|Carya tomentosa|hickory|hickory tree +big-chested|1 +(adj)|chesty|robust +big-cone douglas fir|1 +(noun)|big-cone spruce|Pseudotsuga macrocarpa|douglas fir +big-cone spruce|1 +(noun)|big-cone douglas fir|Pseudotsuga macrocarpa|douglas fir +big-eared bat|1 +(noun)|Megaderma lyra|false vampire|false vampire bat +big-eyed scad|1 +(noun)|bigeye scad|goggle-eye|Selar crumenophthalmus|scad +big-leaf maple|1 +(noun)|Oregon maple|Acer macrophyllum|maple +big-shouldered|1 +(adj)|broad-shouldered|square-shouldered|robust +big-ticket|1 +(adj)|high-ticket|expensive +big-toothed aspen|1 +(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen +big-tree plum|1 +(noun)|Prunus mexicana|plum|plum tree +big band|1 +(noun)|dance band|band|dance orchestra +big bang|1 +(noun)|explosion|detonation|blowup +big bang theory|1 +(noun)|big-bang theory|scientific theory +big bedbug|1 +(noun)|conenose|cone-nosed bug|conenose bug|kissing bug|assassin bug|reduviid +big ben|1 +(noun)|Big Ben|clock +big bend|1 +(noun)|Big Bend|geographical area|geographic area|geographical region|geographic region +big bend national park|1 +(noun)|Big Bend National Park|national park +big bill haywood|1 +(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader|socialist +big bill tilden|1 +(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player +big blue|1 +(noun)|Big Blue|BLU-82|fragmentation bomb|antipersonnel bomb|anti-personnel bomb|daisy cutter +big board|2 +(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|stock exchange|stock market|securities market +(noun)|display panel|display board|board +big brother|2 +(noun)|Big Brother|authoritarian|dictator +(noun)|brother|blood brother +big brown bat|1 +(noun)|Eptesicus fuscus|vespertilian bat|vespertilionid +big bucks|1 +(noun)|pile|bundle|megabucks|big money|money +big business|1 +(noun)|business|business sector +big businessman|1 +(noun)|baron|business leader|king|magnate|mogul|power|top executive|tycoon|businessman|man of affairs +big cat|1 +(noun)|cat|feline|felid +big cheese|1 +(noun)|big shot|big gun|big wheel|big deal|big enchilada|big fish|head honcho|important person|influential person|personage +big deal|2 +(noun)|big shot|big gun|big wheel|big cheese|big enchilada|big fish|head honcho|important person|influential person|personage +(noun)|importance +big dipper|2 +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|roller coaster|chute-the-chute|elevated railway|elevated railroad|el|overhead railway|ride +big enchilada|1 +(noun)|big shot|big gun|big wheel|big cheese|big deal|big fish|head honcho|important person|influential person|personage +big fish|1 +(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|head honcho|important person|influential person|personage +big game|1 +(noun)|game +big gun|1 +(noun)|big shot|big wheel|big cheese|big deal|big enchilada|big fish|head honcho|important person|influential person|personage +big h|1 +(noun)|big H|hell dust|nose drops|smack|thunder|heroin|diacetylmorphine +big hand|1 +(noun)|minute hand|hand +big league|1 +(noun)|major league|majors|league|conference +big leaguer|1 +(noun)|major leaguer|ballplayer|baseball player +big marigold|1 +(noun)|African marigold|Aztec marigold|Tagetes erecta|marigold +big money|1 +(noun)|pile|bundle|big bucks|megabucks|money +big sagebrush|1 +(noun)|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush|sage brush +big science|1 +(noun)|scientific research|research project +big shagbark|1 +(noun)|big shellbark|big shellbark hickory|king nut|king nut hickory|Carya laciniosa|hickory|hickory tree +big shellbark|1 +(noun)|big shellbark hickory|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory|hickory tree +big shellbark hickory|1 +(noun)|big shellbark|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory|hickory tree +big shot|1 +(noun)|big gun|big wheel|big cheese|big deal|big enchilada|big fish|head honcho|important person|influential person|personage +big sioux river|1 +(noun)|Big Sioux River|river +big sister|1 +(noun)|sister|sis +big spender|1 +(noun)|high roller|spendthrift|spend-all|spender|scattergood +big stick|1 +(noun)|display|show +big sur|1 +(noun)|Big Sur|geographical area|geographic area|geographical region|geographic region +big time|1 +(noun)|success +big toe|1 +(noun)|great toe|hallux|toe +big top|1 +(noun)|circus tent|round top|top|canvas tent|canvas|canvass +big tree|1 +(noun)|giant sequoia|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +big wheel|1 +(noun)|big shot|big gun|big cheese|big deal|big enchilada|big fish|head honcho|important person|influential person|personage +bigamist|1 +(noun)|spouse|partner|married person|mate|better half +bigamous|1 +(adj)|polygamous +bigamy|2 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +(noun)|statutory offense|statutory offence|regulatory offense|regulatory offence +bigarade|1 +(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|marmalade orange|Citrus aurantium|orange|orange tree +bigeminal|1 +(adj)|multiple +bigeneric|1 +(adj)|crossbred +bigeye|1 +(noun)|percoid fish|percoid|percoidean +bigeye scad|1 +(noun)|big-eyed scad|goggle-eye|Selar crumenophthalmus|scad +bigfoot|1 +(noun)|Bigfoot|Sasquatch|legendary creature +bigger|16 +(adj)|larger|large +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|larger|biggest|greatest|largest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|big|important |of import +(adj)|big|momentous|significant |important +(adj)|big|large|prominent|conspicuous |obvious +(adj)|bad|big|intense +(adj)|big|loud +(adj)|big|heavy|intemperate +(adj)|adult|big|full-grown|fully grown|grown|grownup|mature +(adj)|big|heavy +(adj)|big|swelled|vainglorious|proud +(adj)|big |elder|older +(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +(adj)|big|large|magnanimous|generous +(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +biggest|16 +(adj)|greatest|largest|large +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|bigger|larger|greatest|largest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|big|important |of import +(adj)|big|momentous|significant |important +(adj)|big|large|prominent|conspicuous |obvious +(adj)|bad|big|intense +(adj)|big|loud +(adj)|big|heavy|intemperate +(adj)|adult|big|full-grown|fully grown|grown|grownup|mature +(adj)|big|heavy +(adj)|big|swelled|vainglorious|proud +(adj)|big |elder|older +(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +(adj)|big|large|magnanimous|generous +(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +biggin|1 +(noun)|cap +biggish|1 +(adj)|largish|large +bighead|1 +(noun)|animal disease +bigheaded|1 +(adj)|persnickety|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud +bighearted|1 +(adj)|big|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous +bigheartedness|1 +(noun)|generosity|generousness +bighorn|2 +(noun)|Bighorn|Bighorn River|river +(noun)|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +bighorn river|1 +(noun)|Bighorn|Bighorn River|river +bighorn sheep|1 +(noun)|bighorn|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +bight|5 +(noun)|loop +(noun)|bend|crook|turn +(noun)|bay +(noun)|center|centre|midpoint +(verb)|fasten|fix|secure +bight of benin|1 +(noun)|Bight of Benin|bight +bigmouthed|1 +(adj)|blabbermouthed|blabby|talkative|indiscreet +bigness|1 +(noun)|largeness|size +bignonia|1 +(noun)|Bignonia|genus Bignonia|asterid dicot genus +bignonia capreolata|1 +(noun)|cross vine|trumpet flower|quartervine|quarter-vine|Bignonia capreolata|vine +bignoniaceae|1 +(noun)|Bignoniaceae|family Bignoniaceae|asterid dicot family +bignoniaceous|1 +(adj)|asterid dicot family +bignoniad|1 +(noun)|woody plant|ligneous plant +bigos|1 +(noun)|stew +bigot|1 +(noun)|partisan|zealot|drumbeater +bigoted|1 +(adj)|intolerant +bigotry|1 +(noun)|dogmatism|intolerance +bigram|1 +(noun)|written word +bigtooth aspen|1 +(noun)|Canadian aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen +bigtoothed aspen|1 +(noun)|Canadian aspen|bigtooth aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen +bigwig|1 +(noun)|kingpin|top banana|important person|influential person|personage +bihar|1 +(noun)|Bihar|state|province +bihari|1 +(noun)|Bihari|Sanskrit|Sanskritic language +bijou|1 +(noun)|jewelry|jewellery +bijugate leaf|1 +(noun)|bijugous leaf|pinnate leaf +bijugous leaf|1 +(noun)|bijugate leaf|pinnate leaf +bike|3 +(noun)|motorcycle|motor vehicle|automotive vehicle +(noun)|bicycle|wheel|cycle|wheeled vehicle +(verb)|bicycle|cycle|pedal|wheel|ride +bikers|1 +(noun)|rockers|youth subculture +bikini|1 +(noun)|two-piece|swimsuit|bathing suit|swimming costume|bathing costume +bikini pants|1 +(noun)|underpants +bilabial|1 +(noun)|labial consonant|labial +bilabiate|1 +(adj)|lipped +bilateral|3 +(adj)|isobilateral|bilaterally symmetrical|bilaterally symmetric|symmetrical |symmetric +(adj)|bilateral |two-sided|bipartite|two-party|two-way|joint +(adj)|reciprocal |mutual +bilateral contract|1 +(noun)|contract +bilateral descent|1 +(noun)|descent|line of descent|lineage|filiation +bilateral symmetry|1 +(noun)|bilaterality|bilateralism|symmetry|symmetricalness|correspondence|balance +bilateralism|1 +(noun)|bilaterality|bilateral symmetry|symmetry|symmetricalness|correspondence|balance +bilaterality|1 +(noun)|bilateralism|bilateral symmetry|symmetry|symmetricalness|correspondence|balance +bilaterally symmetric|1 +(adj)|bilateral|isobilateral|bilaterally symmetrical|symmetrical |symmetric +bilaterally symmetrical|2 +(adj)|zygomorphic |zygomorphous +(adj)|bilateral|isobilateral|bilaterally symmetric|symmetrical |symmetric +bilberry|3 +(noun)|whortleberry|whinberry|blaeberry|Viccinium myrtillus|blueberry|blueberry bush +(noun)|thin-leaved bilberry|mountain blue berry|Viccinium membranaceum|blueberry|blueberry bush +(noun)|whortleberry|European blueberry|berry +bilby|1 +(noun)|rabbit-eared bandicoot|rabbit bandicoot|Macrotis lagotis|bandicoot +bile|1 +(noun)|gall|digestive juice|digestive fluid +bile acid|1 +(noun)|steroid +bile duct|1 +(noun)|common bile duct|duct|epithelial duct|canal|channel +bile salt|1 +(noun)|salt +bilestone|1 +(noun)|gallstone|calculus|concretion +bilge|4 +(noun)|bilge water|water|H2O +(noun)|bottom|underside|undersurface +(verb)|damage +(verb)|take in water|leak +bilge keel|1 +(noun)|keel +bilge pump|1 +(noun)|pump +bilge water|2 +(noun)|bilge|water|H2O +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +bilge well|1 +(noun)|well +bilges|3 +(noun)|bilge +(noun)|bilge|bilge water|water|H2O +(noun)|bilge|bottom|underside|undersurface +bilgewater|1 +(noun)|baloney|boloney|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +bilgy|1 +(adj)|malodorous |malodourous +bilharzia|1 +(noun)|schistosomiasis|bilharziasis|infestation|infection +bilharziasis|1 +(noun)|schistosomiasis|bilharzia|infestation|infection +biliary|2 +(adj)|bilious|digestive juice|digestive fluid +(adj)|bladder|vesica +biliary ductule|1 +(noun)|ductule|ductulus +bilimbi|1 +(noun)|Averrhoa bilimbi|fruit tree +bilinear|1 +(adj)|linear |additive +bilingual|2 +(adj)|multilingual +(noun)|linguist|polyglot +bilingual dictionary|1 +(noun)|dictionary|lexicon +bilious|3 +(adj)|biliary|digestive juice|digestive fluid +(adj)|liverish|livery|ill |sick +(adj)|atrabilious|dyspeptic|liverish|ill-natured +biliousness|2 +(noun)|ill health|unhealthiness|health problem +(noun)|temper|irritability|peevishness|pettishness|snappishness|surliness|ill nature +bilirubin|1 +(noun)|hematoidin|haematoidin|animal pigment +bilk|4 +(verb)|cheat|rip off|chisel +(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|prevent|forestall|foreclose|preclude|forbid +(verb)|deprive +(verb)|elude|evade|escape|get away|break loose +bill|13 +(noun)|measure|legal document|legal instrument|official document|instrument +(noun)|account|invoice|statement|financial statement +(noun)|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +(noun)|program|programme +(noun)|list|listing +(noun)|circular|handbill|broadside|broadsheet|flier|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|beak|neb|nib|pecker|mouth +(noun)|poster|posting|placard|notice|card|sign +(noun)|billhook|saw +(noun)|peak|eyeshade|visor|vizor|brim +(verb)|charge|account|calculate +(verb)|advertise|advertize|promote|push +(verb)|placard|post +bill-me order|1 +(noun)|credit order|order|purchase order +bill clinton|1 +(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States|United States President|President|Chief Executive +bill gates|1 +(noun)|Gates|Bill Gates|William Henry Gates|computer scientist|entrepreneur|enterpriser +bill haley|1 +(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star +bill mauldin|1 +(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist +bill of attainder|1 +(noun)|bill|measure +bill of entry|1 +(noun)|bill +bill of exchange|1 +(noun)|draft|order of payment|negotiable instrument +bill of fare|1 +(noun)|menu|card|carte du jour|carte|bill +bill of goods|2 +(noun)|misrepresentation|deceit|deception +(noun)|bill +bill of health|1 +(noun)|certificate|certification|credential|credentials +bill of indictment|1 +(noun)|indictment|legal document|legal instrument|official document|instrument +bill of lading|1 +(noun)|waybill|receipt +bill of particulars|1 +(noun)|bill of Particulars|allegation|allegement +bill of review|1 +(noun)|review +bill of rights|1 +(noun)|Bill of Rights|statement +bill of sale|1 +(noun)|deed|deed of conveyance|title +bill poster|1 +(noun)|poster|bill sticker|worker +bill russell|1 +(noun)|Russell|Bill Russell|William Felton Russell|center +bill sticker|1 +(noun)|bill poster|poster|worker +billabong|2 +(noun)|pool|puddle +(noun)|branch +billboard|1 +(noun)|hoarding|signboard|sign +billed|1 +(adj)|beaked +billet|4 +(noun)|note|short letter|line|personal letter +(noun)|housing|lodging|living accommodations +(noun)|position|post|berth|office|spot|place|situation|occupation|business|job|line of work|line +(verb)|quarter|canton|lodge|accommodate +billet doux|1 +(noun)|love letter|personal letter +billfish|4 +(noun)|gar|garfish|garpike|Lepisosteus osseus|ganoid|ganoid fish +(noun)|scombroid|scombroid fish +(noun)|saury|Scomberesox saurus|teleost fish|teleost|teleostan +(noun)|needlefish|gar|teleost fish|teleost|teleostan +billfold|1 +(noun)|wallet|notecase|pocketbook|case +billhook|1 +(noun)|bill|saw +billiard|1 +(adj)|table game +billiard ball|1 +(noun)|ball +billiard hall|1 +(noun)|billiard room|billiard saloon|billiard parlor|billiard parlour|room +billiard marker|1 +(noun)|device +billiard parlor|1 +(noun)|billiard room|billiard saloon|billiard parlour|billiard hall|room +billiard parlour|1 +(noun)|billiard room|billiard saloon|billiard parlor|billiard hall|room +billiard player|1 +(noun)|player|participant +billiard room|1 +(noun)|billiard saloon|billiard parlor|billiard parlour|billiard hall|room +billiard saloon|1 +(noun)|billiard room|billiard parlor|billiard parlour|billiard hall|room +billiard table|1 +(noun)|pool table|snooker table|table|game equipment +billiards|1 +(noun)|table game +billie jean king|1 +(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player +billie jean moffitt king|1 +(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player +billie the kid|1 +(noun)|Bonney|William H. Bonney|Billie the Kid|criminal|felon|crook|outlaw|malefactor +billing|1 +(noun)|charge|request|asking +billings|2 +(noun)|Billings|city|metropolis|urban center +(noun)|charge|billing|request|asking +billingsgate|1 +(noun)|scurrility|abuse|insult|revilement|contumely|vilification +billion|4 +(adj)|a billion|cardinal +(adj)|a billion|cardinal +(noun)|one million million|1000000000000|large integer +(noun)|one thousand million|1000000000|large integer +billion-dollar grass|1 +(noun)|Japanese millet|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet +billionaire|1 +(noun)|rich person|wealthy person|have +billions|3 +(noun)|millions|trillions|zillions|jillions|large indefinite quantity|large indefinite amount +(noun)|billion|one million million|1000000000000|large integer +(noun)|billion|one thousand million|1000000000|large integer +billionth|3 +(adj)|ordinal +(noun)|rank +(noun)|one-billionth|common fraction|simple fraction +billow|5 +(noun)|surge|wave|moving ridge +(verb)|wallow|soar|soar up|soar upwards|surge|zoom +(verb)|travel|go|move|locomote +(verb)|surge|heave|inflate|blow up +(verb)|balloon|inflate|expand +billowing|2 +(adj)|rolling|tumbling|moving +(adj)|billowy|surging|stormy +billowy|1 +(adj)|billowing|surging|stormy +billy|2 +(noun)|truncheon|nightstick|billystick|billy club|club +(noun)|billy goat|he-goat|goat|caprine animal +billy-ho|1 +(noun)|billyo|billyoh|all get out|large indefinite quantity|large indefinite amount +billy buttons|1 +(noun)|flower +billy club|1 +(noun)|truncheon|nightstick|billy|billystick|club +billy goat|1 +(noun)|billy|he-goat|goat|caprine animal +billy graham|1 +(noun)|Graham|Billy Graham|William Franklin Graham|evangelist|revivalist|gospeler|gospeller +billy mitchell|1 +(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator|aeronaut|airman|flier|flyer|general|full general +billy wilder|1 +(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker|filmmaker|film producer|movie maker +billyo|1 +(noun)|billyoh|billy-ho|all get out|large indefinite quantity|large indefinite amount +billyoh|1 +(noun)|billyo|billy-ho|all get out|large indefinite quantity|large indefinite amount +billystick|1 +(noun)|truncheon|nightstick|billy|billy club|club +bilobate|2 +(adj)|bilobated|bilobed|body part +(adj)|bilobated|bilobed|compound +bilobated|2 +(adj)|bilobate|bilobed|body part +(adj)|bilobate|bilobed|compound +bilobed|2 +(adj)|bilobate|bilobated|body part +(adj)|bilobate|bilobated|compound +bilocation|1 +(noun)|location +bilocular|1 +(adj)|biloculate|divided +bilocular capsule|1 +(noun)|capsule +biloculate|1 +(adj)|bilocular|divided +biloxi|3 +(noun)|Biloxi|Sioux|Siouan +(noun)|Biloxi|town +(noun)|Biloxi|Siouan|Siouan language +bilsted|1 +(noun)|sweet gum|sweet gum tree|red gum|American sweet gum|Liquidambar styraciflua|liquidambar +biltong|1 +(noun)|jerky|jerked meat +bimanual|1 +(adj)|two-handed|handed +bimbo|1 +(noun)|girl|miss|missy|young lady|young woman|fille +bimester|1 +(noun)|time period|period of time|period +bimestrial|2 +(adj)|bimonthly|time period|period of time|period +(adj)|long +bimetal|2 +(adj)|bimetallic|metallic +(noun)|material|stuff +bimetallic|2 +(adj)|bimetallistic|standard|monetary standard +(adj)|bimetal|metallic +bimetallic strip|1 +(noun)|electrical device +bimetallism|1 +(noun)|standard|monetary standard +bimetallist|1 +(noun)|monetarist +bimetallistic|1 +(adj)|bimetallic|standard|monetary standard +bimillenary|1 +(noun)|bimillennium|time period|period of time|period +bimillenial|1 +(adj)|time period|period of time|period +bimillennium|1 +(noun)|bimillenary|time period|period of time|period +bimli|1 +(noun)|kenaf|kanaf|deccan hemp|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +bimli hemp|1 +(noun)|kenaf|kanaf|deccan hemp|bimli|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +bimodal|1 +(adj)|bimodal +bimolecular|1 +(adj)|unit|building block +bimonthly|4 +(adj)|semimonthly|time unit|unit of time +(adj)|bimestrial|time unit|unit of time +(noun)|series|serial|serial publication +(adv)|semimonthly +bimotored|1 +(adj)|motorized |motorised|motored +bin|4 +(noun)|container +(noun)|binful|containerful +(noun)|bank identification number|BIN|ABA transit number|number|identification number +(verb)|store|hive away|lay in|put in|salt away|stack away|stash away +bin laden|1 +(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist +bin liner|1 +(noun)|plastic bag +binary|3 +(adj)|positional notation|positional representation system +(adj)|multiple +(noun)|binary star|double star|star +binary arithmetic operation|1 +(noun)|boolean operation|binary operation|operation +binary code|1 +(noun)|code|computer code +binary compound|1 +(noun)|compound|chemical compound +binary digit|1 +(noun)|digit|figure +binary file|1 +(noun)|computer file +binary notation|1 +(noun)|mathematical notation +binary number system|1 +(noun)|binary numeration system|pure binary numeration system|binary system|positional notation|positional representation system +binary numeration system|1 +(noun)|pure binary numeration system|binary number system|binary system|positional notation|positional representation system +binary operation|1 +(noun)|boolean operation|binary arithmetic operation|operation +binary star|1 +(noun)|binary|double star|star +binary system|1 +(noun)|binary numeration system|pure binary numeration system|binary number system|positional notation|positional representation system +binate|1 +(adj)|compound +binaural|1 +(adj)|binaural |biaural|two-eared|stereophonic|stereo|two-channel +binaurally|1 +(adv)|to both ears|in both ears +bind|11 +(noun)|hindrance|deterrent|impediment|balk|baulk|check|handicap +(verb)|adhere|hold fast|bond|stick|stick to|attach +(verb)|tie|attach|bond|relate +(verb)|attach +(verb)|bandage|fasten|fix|secure +(verb)|tie down|tie up|truss|restrain|confine|hold +(verb)|oblige|hold|obligate|relate +(verb)|adhere|hold fast|bond|stick|stick to +(verb)|cover +(verb)|tie|fasten|fix|secure +(verb)|constipate|indispose +bind off|1 +(verb)|tie up|tie|bind +bind over|1 +(verb)|confine|detain +bindable|1 +(adj)|bondable|attachable +binder|4 +(noun)|reaper binder|harvester|reaper +(noun)|adhesive material|adhesive +(noun)|ring-binder|protective covering|protective cover|protection +(noun)|ligature|ligament +binder's board|1 +(noun)|binder board|cardboard|composition board +binder board|1 +(noun)|binder's board|cardboard|composition board +bindery|1 +(noun)|workshop|shop +binding|7 +(adj)|valid +(adj)|constricting|tight +(adj)|constipating|costive +(noun)|attraction|attractiveness +(noun)|sewing|stitchery +(noun)|dressing|bandaging|medical care|medical aid +(noun)|book binding|cover|back|protective covering|protective cover|protection +binding energy|1 +(noun)|separation energy|energy +bindweed|1 +(noun)|vine +bine|1 +(noun)|common hop|common hops|European hop|Humulus lupulus|hop|hops +binet|1 +(noun)|Binet|Alfred Binet|psychologist +binet-simon scale|1 +(noun)|Binet-Simon Scale|intelligence test|IQ test +binful|1 +(noun)|bin|containerful +bing cherry|1 +(noun)|sweet cherry|black cherry +bing crosby|1 +(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner|balladeer|actor|histrion|player|thespian|role player +binge|3 +(noun)|orgy|splurge|indulgence|indulging|pampering|humoring +(noun)|bust|tear|bout|revel|revelry +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|pig out|satiate|scarf out|eat +binge-eating syndrome|1 +(noun)|bulimia|eating disorder +binge-purge syndrome|1 +(noun)|bulimarexia|binge-vomit syndrome|bulima nervosa|eating disorder +binge-vomit syndrome|1 +(noun)|bulimarexia|binge-purge syndrome|bulima nervosa|eating disorder +binger|1 +(noun)|crack addict|drug addict|junkie|junky +binghamton|1 +(noun)|Binghamton|city|metropolis|urban center +bingle|1 +(noun)|base hit|safety|hit +bingo|1 +(noun)|lotto|beano|keno|board game +binnacle|1 +(noun)|housing +binocular|2 +(adj)|sense organ|sensory receptor|receptor +(noun)|binoculars|field glasses|opera glasses|optical instrument +binocular microscope|1 +(noun)|light microscope +binocular vision|1 +(noun)|sight|vision|visual sense|visual modality +binoculars|2 +(noun)|binocular|field glasses|opera glasses|optical instrument +(noun)|binocular|field glasses|opera glasses|optical instrument +binomial|3 +(adj)|quantity +(adj)|language unit|linguistic unit +(noun)|quantity +binomial distribution|1 +(noun)|Bernoulli distribution|distribution|statistical distribution +binomial theorem|1 +(noun)|theorem +binturong|1 +(noun)|bearcat|Arctictis bintourong|civet|civet cat +binuclear|1 +(adj)|binucleate |binucleated +binucleate|1 +(adj)|binucleate |binuclear|binucleated +binucleated|1 +(adj)|binucleate |binuclear +bio lab|1 +(noun)|biology lab|biology laboratory|lab|laboratory|research lab|research laboratory|science lab|science laboratory +bioarm|1 +(noun)|bioweapon|biological weapon|weapon of mass destruction|WMD|W.M.D. +bioassay|2 +(noun)|assay +(verb)|assay +bioattack|1 +(noun)|biological warfare|BW|biological attack|biologic attack|war|warfare +biocatalyst|1 +(noun)|catalyst|accelerator +biocatalytic|1 +(adj)|catalyst|accelerator +biochemical|1 +(adj)|organic chemistry +biochemical mechanism|1 +(noun)|mechanism|chemical mechanism +biochemist|1 +(noun)|chemist +biochemistry|1 +(noun)|organic chemistry +biochip|1 +(noun)|chip|microchip|micro chip|silicon chip +bioclimatic|1 +(adj)|climatology +bioclimatology|1 +(noun)|climatology +biodefence|1 +(noun)|biological defense|biological defence|biodefense|defense|defence|defensive measure +biodefense|1 +(noun)|biological defense|biological defence|biodefence|defense|defence|defensive measure +biodegradable|1 +(adj)|perishable +biodegradable pollution|1 +(noun)|pollution +biodiversity|1 +(noun)|diverseness|diversity|multifariousness|variety +bioelectricity|1 +(noun)|organic phenomenon +bioengineering|1 +(noun)|biotechnology|ergonomics|engineering|engineering science|applied science|technology +bioethics|1 +(noun)|ethics|moral philosophy +biofeedback|1 +(noun)|training program +bioflavinoid|1 +(noun)|vitamin P|citrin|water-soluble vitamin +biogenesis|2 +(noun)|biosynthesis|synthesis +(noun)|biogeny|generation|multiplication|propagation +biogenetic|1 +(adj)|generation|multiplication|propagation +biogenic|2 +(adj)|life +(adj)|essential +biogenous|1 +(adj)|generation|multiplication|propagation +biogeny|1 +(noun)|biogenesis|generation|multiplication|propagation +biogeographic|1 +(adj)|biogeographical|biology|biological science +biogeographical|1 +(adj)|biogeographic|biology|biological science +biogeographical region|1 +(noun)|region +biogeography|1 +(noun)|biology|biological science +biographer|1 +(noun)|writer|author +biographic|1 +(adj)|biographical|history|account|chronicle|story +biographical|1 +(adj)|biographic|history|account|chronicle|story +biography|1 +(noun)|life|life story|life history|history|account|chronicle|story +biohazard|2 +(noun)|health hazard +(noun)|biological agent|agent +biohazard suit|1 +(noun)|protective garment +bioko|1 +(noun)|Bioko|island +biologic|1 +(adj)|biological|life +biologic attack|1 +(noun)|biological warfare|BW|biological attack|bioattack|war|warfare +biological|2 +(adj)|biologic|life +(adj)|biological |begotten|natural +biological agent|1 +(noun)|biohazard|agent +biological attack|1 +(noun)|biological warfare|BW|biologic attack|bioattack|war|warfare +biological clock|1 +(noun)|mechanism +biological defence|1 +(noun)|biological defense|biodefense|biodefence|defense|defence|defensive measure +biological defense|1 +(noun)|biological defence|biodefense|biodefence|defense|defence|defensive measure +biological group|1 +(noun)|group|grouping +biological process|1 +(noun)|organic process|process +biological research|1 +(noun)|scientific research|research project +biological science|1 +(noun)|biology|life science|bioscience +biological terrorism|1 +(noun)|bioterrorism|terrorism|act of terrorism|terrorist act +biological time|1 +(noun)|time +biological warfare|1 +(noun)|BW|biological attack|biologic attack|bioattack|war|warfare +biological warfare defence|1 +(noun)|biological warfare defense|BW defense|BW defence|defense|defence|defensive measure +biological warfare defense|1 +(noun)|biological warfare defence|BW defense|BW defence|defense|defence|defensive measure +biological weapon|1 +(noun)|bioweapon|bioarm|weapon of mass destruction|WMD|W.M.D. +biologism|1 +(noun)|practice|pattern +biologist|1 +(noun)|life scientist|scientist|man of science +biologistic|1 +(adj)|practice|pattern +biology|3 +(noun)|biological science|life science|bioscience +(noun)|life +(noun)|biota|collection|aggregation|accumulation|assemblage +biology class|1 +(noun)|class|form|grade +biology department|1 +(noun)|department of biology|academic department +biology lab|1 +(noun)|biology laboratory|bio lab|lab|laboratory|research lab|research laboratory|science lab|science laboratory +biology laboratory|1 +(noun)|biology lab|bio lab|lab|laboratory|research lab|research laboratory|science lab|science laboratory +bioluminescence|1 +(noun)|luminescence +bioluminescent|1 +(adj)|light +biomass|2 +(noun)|fuel +(noun)|mass +biome|1 +(noun)|community|biotic community +biomedical|1 +(adj)|medicine|medical specialty +biomedical cloning|1 +(noun)|therapeutic cloning|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|nuclear transplantation|cloning +biomedical science|1 +(noun)|life science|bioscience +biomedicine|2 +(noun)|medicine|medical specialty +(noun)|medicine|medical specialty +biometric authentication|1 +(noun)|biometric identification|identity verification|identification +biometric identification|1 +(noun)|biometric authentication|identity verification|identification +biometrics|1 +(noun)|biometry|life science|bioscience|statistics +biometry|1 +(noun)|biometrics|life science|bioscience|statistics +bionic|2 +(adj)|engineering|engineering science|applied science|technology +(adj)|artificial |unreal +bionic man|1 +(noun)|cyborg|bionic woman|machine +bionic woman|1 +(noun)|cyborg|bionic man|machine +bionics|1 +(noun)|engineering|engineering science|applied science|technology +bionomic|1 +(adj)|ecological|ecologic|bionomical|biology|biological science +bionomical|1 +(adj)|ecological|ecologic|bionomic|biology|biological science +bionomics|1 +(noun)|ecology|environmental science|biology|biological science +biont|1 +(noun)|living thing|animate thing +biophysicist|1 +(noun)|physicist +biophysics|1 +(noun)|physics|physical science|natural philosophy +biopiracy|1 +(noun)|larceny|theft|thievery|thieving|stealing +biopsy|1 +(noun)|diagnostic test|diagnostic assay +bioremediation|2 +(noun)|biotechnology +(noun)|treatment|handling +biosafety|1 +(noun)|safety +biosafety level|1 +(noun)|grade|level|tier +biosafety level 1|1 +(noun)|biosafety level +biosafety level 2|1 +(noun)|biosafety level +biosafety level 3|1 +(noun)|biosafety level +biosafety level 4|1 +(noun)|biosafety level +bioscience|1 +(noun)|life science|natural science +bioscope|2 +(noun)|cinema|movie theater|movie theatre|movie house|picture palace +(noun)|movie projector|cine projector|film projector +biosphere|1 +(noun)|region|part +biosynthesis|1 +(noun)|biogenesis|synthesis +biosynthetic|1 +(adj)|synthesis +biosystematic|1 +(adj)|systematics +biosystematics|1 +(noun)|biosystematy|systematics +biosystematy|1 +(noun)|biosystematics|systematics +biota|1 +(noun)|biology|collection|aggregation|accumulation|assemblage +biotechnology|2 +(noun)|molecular biology +(noun)|bioengineering|ergonomics|engineering|engineering science|applied science|technology +bioterrorism|1 +(noun)|biological terrorism|terrorism|act of terrorism|terrorist act +biotic|1 +(adj)|organic phenomenon +biotic community|1 +(noun)|community|group|grouping +biotin|1 +(noun)|vitamin H|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +biotite|1 +(noun)|mica|isinglass +biotitic|1 +(adj)|mica|isinglass +biotype|1 +(noun)|genotype +biotypic|1 +(adj)|genotype +biovular|1 +(adj)|fraternal +bioweapon|1 +(noun)|biological weapon|bioarm|weapon of mass destruction|WMD|W.M.D. +biparous|1 +(adj)|twinning|multiparous +bipartisan|1 +(adj)|bipartizan|two-party|two-way|nonpartisan |nonpartizan +bipartite|2 +(adj)|compound +(adj)|two-party|two-way|bilateral |two-sided +bipartizan|1 +(adj)|bipartisan|two-party|two-way|nonpartisan |nonpartizan +biped|2 +(adj)|bipedal |two-footed +(noun)|animal|animate being|beast|brute|creature|fauna +bipedal|1 +(adj)|bipedal |two-footed +bipedalism|1 +(noun)|bodily property +bipinnate|1 +(adj)|compound +bipinnate leaf|1 +(noun)|pinnate leaf +bipinnatifid|1 +(adj)|compound +biplane|1 +(noun)|airplane|aeroplane|plane +biplane flying fish|1 +(noun)|four-wing flying fish|flying fish +bipolar|2 +(adj)|affective disorder|major affective disorder|emotional disorder|emotional disturbance +(adj)|bipolar |Janus-faced +bipolar disorder|1 +(noun)|manic depression|manic depressive illness|manic-depressive psychosis|affective disorder|major affective disorder|emotional disorder|emotional disturbance +biprism|1 +(noun)|optical device +biquadrate|1 +(noun)|biquadratic|quartic|fourth power|number +biquadratic|4 +(adj)|number +(noun)|biquadrate|quartic|fourth power|number +(noun)|biquadratic equation|equation +(noun)|biquadratic polynomial|quartic polynomial|polynomial|multinomial +biquadratic equation|1 +(noun)|biquadratic|equation +biquadratic polynomial|1 +(noun)|biquadratic|quartic polynomial|polynomial|multinomial +biracial|1 +(adj)|racial +biradial|1 +(adj)|symmetrical |symmetric +biramous|1 +(adj)|bifurcate|branched|forked|forficate|pronged|prongy|divided +birch|5 +(adj)|birchen|birken|woody +(noun)|wood +(noun)|birch tree|tree +(noun)|birch rod|switch +(verb)|flog|welt|whip|lather|lash|slash|strap|trounce +birch bark|2 +(noun)|birchbark canoe|birchbark|canoe +(noun)| +birch beer|1 +(noun)|soft drink +birch family|1 +(noun)|Betulaceae|family Betulaceae|hamamelid dicot family +birch leaf miner|1 +(noun)|Fenusa pusilla|sawfly +birch oil|1 +(noun)|methyl salicylate|sweet-birch oil|salicylate +birch rod|1 +(noun)|birch|switch +birch tree|1 +(noun)|birch|tree +birchbark|1 +(noun)|birchbark canoe|birch bark|canoe +birchbark canoe|1 +(noun)|birchbark|birch bark|canoe +birchen|1 +(adj)|birch|birken|woody +bird|6 +(noun)|vertebrate|craniate +(noun)|fowl|meat +(noun)|dame|doll|wench|skirt|chick|girl|miss|missy|young lady|young woman|fille +(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|snort|cry|outcry|call|yell|shout|vociferation +(noun)|shuttlecock|birdie|shuttle|badminton equipment +(verb)|birdwatch|observe +bird's-eye|1 +(adj)|panoramic|wide |broad +bird's-eye bush|1 +(noun)|Ochna serrulata|shrub|bush +bird's-eye maple|1 +(noun)|maple +bird's-foot fern|1 +(noun)|Pellaea mucronata|Pellaea ornithopus|cliff brake|cliff-brake|rock brake +bird's-foot violet|1 +(noun)|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet +bird's-nest fungus|1 +(noun)|fungus +bird's eye|1 +(noun)|germander speedwell|Veronica chamaedrys|veronica|speedwell +bird's eye view|1 +(noun)|panoramic view|position|view|perspective +bird's foot|1 +(noun)|animal foot|foot +bird's foot clover|1 +(noun)|bird's foot trefoil|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub|suffrutex +bird's foot trefoil|2 +(noun)|Trigonella ornithopodioides|herb|herbaceous plant +(noun)|bird's foot clover|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub|suffrutex +bird's nest|1 +(noun)|nest +bird's nest fern|1 +(noun)|Asplenium nidus|fern +bird-footed dinosaur|1 +(noun)|theropod|theropod dinosaur|saurischian|saurischian dinosaur +bird-nest|2 +(verb)|birdnest|gather|garner|collect|pull together +(verb)| +bird-on-the-wing|1 +(noun)|flowering wintergreen|gaywings|fringed polygala|Polygala paucifolia|milkwort +bird-scarer|1 +(noun)|scarecrow|straw man|strawman|scarer|effigy|image|simulacrum +bird cherry|1 +(noun)|bird cherry tree|wild cherry|wild cherry tree +bird cherry tree|1 +(noun)|bird cherry|wild cherry|wild cherry tree +bird dog|1 +(noun)|sporting dog|gun dog +bird family|1 +(noun)|family +bird fancier|1 +(noun)|fancier|enthusiast +bird food|1 +(noun)|birdseed|feed|provender +bird genus|1 +(noun)|genus +bird louse|1 +(noun)|biting louse|louse|insect +bird of jove|1 +(noun)|eagle|bird of Jove|bird of prey|raptor|raptorial bird +bird of juno|1 +(noun)|peafowl|bird of Juno|pheasant +bird of minerva|1 +(noun)|owl|bird of Minerva|bird of night|hooter|bird of prey|raptor|raptorial bird +bird of night|1 +(noun)|owl|bird of Minerva|hooter|bird of prey|raptor|raptorial bird +bird of paradise|3 +(noun)|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub +(noun)|Strelitzia reginae|herb|herbaceous plant +(noun)|oscine|oscine bird +bird of passage|2 +(noun)|wanderer|roamer|rover|traveler|traveller +(noun)|bird +bird of prey|1 +(noun)|raptor|raptorial bird|bird +bird parker|1 +(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist|saxist +bird pepper|1 +(noun)|Capsicum frutescens baccatum|Capsicum baccatum|capsicum|pepper|capsicum pepper plant +bird sanctuary|1 +(noun)|aviary|volary|building|edifice +bird shot|1 +(noun)|buckshot|duck shot|shot|pellet +bird vetch|1 +(noun)|tufted vetch|Calnada pea|Vicia cracca|vetch +bird watcher|2 +(noun)|ornithologist|zoologist|animal scientist +(noun)|birder|amateur +birdbath|1 +(noun)|basin +birdbrain|1 +(noun)|addle-head|addlehead|loon|misfit +birdcage|1 +(noun)|cage|coop +birdcage mask|1 +(noun)|catcher's mask +birdcall|2 +(noun)|call|birdsong|song|animal communication +(noun)|acoustic device +birder|1 +(noun)|bird watcher|amateur +birdhouse|1 +(noun)|shelter +birdie|3 +(noun)|score +(noun)|shuttlecock|bird|shuttle|badminton equipment +(verb)|shoot +birdlike|1 +(adj)|animal +birdlime|2 +(noun)|lime|adhesive material|adhesive +(verb)|lime|spread|scatter|spread out +birdnest|1 +(verb)|bird-nest|gather|garner|collect|pull together +birdnesting|1 +(noun)|hunt|hunting +birdseed|1 +(noun)|bird food|feed|provender +birdseed grass|1 +(noun)|canary grass|Phalaris canariensis|grass +birdsong|1 +(noun)|birdcall|call|song|animal communication +birdwatch|1 +(verb)|bird|observe +birefringence|1 +(noun)|double refraction|refraction +birefringent|1 +(adj)|refraction +biretta|1 +(noun)|cap +birken|1 +(adj)|birch|birchen|woody +birl|2 +(verb)|birle|rotate|circumvolve +(verb)|whirl|spin|twirl|rotate|circumvolve +birle|1 +(verb)|birl|rotate|circumvolve +birling|1 +(noun)|logrolling|spin|twirl|twist|twisting|whirl +birmingham|2 +(noun)|Birmingham|Pittsburgh of the South|city|metropolis|urban center +(noun)|Birmingham|Brummagem|city|metropolis|urban center +biro|1 +(noun)|ballpoint|ballpoint pen|ballpen|Biro|pen +birr|3 +(noun)|Ethiopian monetary unit +(noun)|whir|whirr|whirring|sound +(verb)|whizz|whiz|whirr|whir|purr|sound|go +birth|5 +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +(noun)|nativity|nascency|nascence|change|alteration|modification +(noun)|parturition|giving birth|birthing|organic process|biological process +(noun)|parentage|kinship|family relationship|relationship +(verb)|give birth|deliver|bear|have|produce|bring forth +birth-control campaigner|1 +(noun)|birth-control reformer|reformer|reformist|crusader|meliorist +birth-control reformer|1 +(noun)|birth-control campaigner|reformer|reformist|crusader|meliorist +birth canal|1 +(noun)|passage|passageway +birth certificate|1 +(noun)|certificate|certification|credential|credentials +birth control|1 +(noun)|birth prevention|family planning|planning +birth control device|1 +(noun)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|device +birth control pill|1 +(noun)|pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +birth defect|1 +(noun)|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|defect|anomaly|anomalousness +birth pangs|1 +(noun)|labor pains|labour pains|pang +birth prevention|1 +(noun)|birth control|family planning|planning +birth rate|2 +(noun)|birthrate|fertility|fertility rate|natality|rate +(noun)| +birth trauma|2 +(noun)|injury|hurt|harm|trauma +(noun)|trauma|psychic trauma +birthday|2 +(noun)|anniversary|day of remembrance +(noun)|natal day|date|day of the month +birthday cake|1 +(noun)|cake +birthday card|1 +(noun)|greeting card +birthday gift|1 +(noun)|birthday present|present +birthday party|1 +(noun)|party +birthday present|1 +(noun)|birthday gift|present +birthday suit|1 +(noun)|raw|altogether|nakedness|nudity|nudeness +birthing|1 +(noun)|parturition|birth|giving birth|organic process|biological process +birthmark|1 +(noun)|nevus|blemish|defect|mar +birthplace|2 +(noun)|place of birth|topographic point|place|spot +(noun)|cradle|place of origin|provenance|beginning|origin|root|rootage|source +birthrate|1 +(noun)|birth rate|fertility|fertility rate|natality|rate +birthright|3 +(noun)|inheritance|heritage +(noun)|patrimony|inheritance|heritage +(noun)|inheritance|heritage +birthroot|1 +(noun)|purple trillium|red trillium|Trillium erectum|trillium|wood lily|wake-robin +birthwort|1 +(noun)|Aristolochia clematitis|vine +birthwort family|1 +(noun)|Aristolochiaceae|family Aristolochiaceae|dicot family|magnoliopsid family +bisayan|1 +(noun)|Visayan|Bisayan|Filipino +bisayas|1 +(noun)|Visayan Islands|Bisayas|island +biscayne bay|1 +(noun)|Biscayne Bay|bay +biscayne national park|1 +(noun)|Biscayne National Park|national park +biscuit|2 +(noun)|quick bread +(noun)|cookie|cooky|cake +biscutalla laevigata|1 +(noun)|buckler mustard|Biscutalla laevigata|shrub|bush +biscutella|1 +(noun)|Biscutella|genus Biscutella|dilleniid dicot genus +bise|1 +(noun)|bize|north wind|norther|boreas +bisect|1 +(verb)|cut +bisection|1 +(noun)|division +bisectional|1 +(adj)|division +biserial correlation|1 +(noun)|biserial correlation coefficient|correlation coefficient|coefficient of correlation|correlation +biserial correlation coefficient|1 +(noun)|biserial correlation|correlation coefficient|coefficient of correlation|correlation +biserrate|1 +(adj)|rough +bisexual|3 +(adj)|bisexual +(adj)|epicene|androgynous +(noun)|bisexual person|sensualist +bisexual person|1 +(noun)|bisexual|sensualist +bisexuality|2 +(noun)|androgyny|hermaphroditism|sex|gender|sexuality +(noun)|sexual activity|sexual practice|sex|sex activity +bishkek|1 +(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital +bishop|3 +(noun)|priest +(noun)|mulled wine +(noun)|chessman|chess piece +bishop's cap|1 +(noun)|miterwort|mitrewort|herb|herbaceous plant +bishop's hat|1 +(noun)|barrenwort|Epimedium grandiflorum|herb|herbaceous plant +bishop's pine|1 +(noun)|bishop pine|Pinus muricata|pinon|pinyon +bishop's throne|1 +(noun)|cathedra|throne +bishop berkeley|1 +(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher|bishop +bishop of rome|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +bishop pine|1 +(noun)|bishop's pine|Pinus muricata|pinon|pinyon +bishop ulfila|1 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +bishop ulfilas|2 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +bishop wulfila|1 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +bishopric|1 +(noun)|diocese|jurisdiction +bishopry|1 +(noun)|position|post|berth|office|spot|billet|place|situation +biskek|1 +(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital +bismarck|2 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +(noun)|Bismarck|capital of North Dakota|state capital +bismarck archipelago|1 +(noun)|Bismarck Archipelago|archipelago +bismarck sea|2 +(noun)|Bismarck Sea|sea +(noun)|Bismarck Sea|battle of the Bismarck Sea|naval battle +bismarckian|1 +(adj)|Bismarckian|statesman|solon|national leader +bismark|1 +(noun)|Berlin doughnut|jelly doughnut|raised doughnut +bismuth|1 +(noun)|Bi|atomic number 83|metallic element|metal +bismuthal|1 +(adj)|metallic element|metal +bismuthic|1 +(adj)|metallic element|metal +bison|1 +(noun)|bovid +bison bison|1 +(noun)|American bison|American buffalo|buffalo|Bison bison|bison +bison bonasus|1 +(noun)|wisent|aurochs|Bison bonasus|bison +bisontine|1 +(adj)|bovid +bisque|1 +(noun)|soup +bissau|1 +(noun)|Bissau|capital of Guinea-Bissau|national capital +bissextile day|1 +(noun)|leap day|February 29|day +bissextile year|1 +(noun)|leap year|intercalary year|366 days|year|twelvemonth|yr +bister|1 +(noun)|bistre|pigment +bistered|1 +(adj)|bistred|pigment +bistre|1 +(noun)|bister|pigment +bistred|1 +(adj)|bistered|pigment +bistro|1 +(noun)|restaurant|eating house|eating place +bistroic|1 +(adj)|restaurant|eating house|eating place +bisulcate|1 +(adj)|cloven|cleft|divided +bit|10 +(noun)|spot|small indefinite quantity|small indefinite amount +(noun)|chip|flake|fleck|scrap|fragment +(noun)|moment|minute|second|time +(noun)|piece|case|instance|example +(noun)|stable gear|saddlery|tack +(noun)|unit of measurement|unit +(noun)|morsel|bite|taste|mouthful +(noun)|snatch|fragment +(noun)|act|routine|number|turn|performance|public presentation +(noun)|cutting implement +bit-by-bit|1 +(adj)|in small stages|piecemeal|step-by-step|stepwise|gradual +bit by bit|2 +(adv)|piecemeal|little by little|in stages +(adv)|gradually|step by step +bit field|1 +(noun)|field +bit part|1 +(noun)|minor role|character|role|theatrical role|part|persona +bitartrate|1 +(noun)|tartrate +bitch|5 +(noun)|difficulty +(noun)|cunt|unpleasant woman|disagreeable woman +(noun)|gripe|kick|beef|squawk|objection +(noun)|canine|canid +(verb)|backbite|complain|kick|plain|sound off|quetch|kvetch +bitchery|1 +(noun)|aggression +bitchiness|1 +(noun)|cattiness|spite|spitefulness|nastiness|malevolence|malevolency|malice +bitchy|1 +(adj)|catty|cattish|malevolent |malicious +bite|13 +(noun)|wound|lesion +(noun)|morsel|bit|taste|mouthful +(noun)|sting|insect bite|injury|hurt|harm|trauma +(noun)|collation|snack|meal|repast +(noun)|success +(noun)|pungency|wit|humor|humour|witticism|wittiness +(noun)|pungency|sharpness|spiciness|spice|spicery +(noun)|chomp|eating|feeding +(noun)|subtraction|deduction +(verb)|seize with teeth|grip|bite off +(verb)|sting|burn|ache|smart|hurt +(verb)|pierce +(verb)|sting|prick|pierce +bite off|1 +(verb)|snap at|bite|seize with teeth +bite out|1 +(verb)|utter|emit|let out|let loose +bite plate|2 +(noun)|biteplate|dental appliance +(noun)| +biteplate|1 +(noun)|bite plate|dental appliance +biter|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +bitewing|1 +(noun)|X-ray film +bithynia|1 +(noun)|Bithynia|geographical area|geographic area|geographical region|geographic region +biting|2 +(adj)|barbed|nipping|pungent|mordacious|sarcastic +(adj)|bitter|painful +biting louse|1 +(noun)|bird louse|louse|insect +biting midge|1 +(noun)|punkie|punky|punkey|no-see-um|gnat +bitingly|1 +(adv)|piercingly|bitterly|bitter +bitis|1 +(noun)|Bitis|genus Bitis|reptile genus +bitis arietans|1 +(noun)|puff adder|Bitis arietans|viper +bitis gabonica|1 +(noun)|gaboon viper|Bitis gabonica|viper +bitmap|1 +(noun)|electronic image|picture|image|icon|ikon +bitok|1 +(noun)|dish +bits per inch|1 +(noun)|bpi|concentration|density|denseness|compactness +bits per second|1 +(noun)|bps|rate +bitstock|1 +(noun)|brace|stock +bitt|2 +(noun)|bollard|post +(verb)|fasten|fix|secure +bitt pin|1 +(noun)|pin +bittacidae|1 +(noun)|Bittacidae|family Bittacidae|family +bitter|12 +(adj)|acrimonious|resentful +(adj)|intolerable +(adj)|acerb|acerbic|acid|acrid|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +(adj)|tasteful +(adj)|sorrowful +(adj)|hostile +(adj)|biting|painful +(noun)|ale +(noun)|bitterness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|bitterness|taste property +(verb)|change taste +(adv)|piercingly|bitterly|bitingly +bitter-bark|1 +(noun)|fever tree|Georgia bark|Pinckneya pubens|shrub|bush +bitter almond|1 +(noun)|Prunus dulcis amara|Amygdalus communis amara|almond tree +bitter almond oil|1 +(noun)|essential oil|volatile oil +bitter aloes|1 +(noun)|aloes|purgative|cathartic|physic|aperient +bitter betch|1 +(noun)|Vicia orobus|vetch +bitter cassava|1 +(noun)|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +bitter chocolate|1 +(noun)|baking chocolate|cooking chocolate|chocolate +bitter cress|2 +(noun)|bittercress|cress|cress plant +(noun)| +bitter dock|1 +(noun)|broad-leaved dock|yellow dock|Rumex obtusifolius|dock|sorrel|sour grass +bitter end|2 +(noun)|extremity +(noun)|end +bitter floom|1 +(noun)|rose pink|American centaury|Sabbatia Angularis|sabbatia +bitter hickory|1 +(noun)|bitternut|bitternut hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory|hickory tree +bitter lemon|1 +(noun)|soft drink +bitter orange|2 +(noun)|sour orange|Seville orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange|orange tree +(noun)|Seville orange|sour orange|orange +bitter orange tree|1 +(noun)|sour orange|Seville orange|bitter orange|bigarade|marmalade orange|Citrus aurantium|orange|orange tree +bitter pea|1 +(noun)|shrub|bush|Daviesia|genus Daviesia +bitter pecan|1 +(noun)|water hickory|water bitternut|Carya aquatica|hickory|hickory tree +bitter pignut|1 +(noun)|bitternut|bitternut hickory|bitter hickory|swamp hickory|Carya cordiformis|hickory|hickory tree +bitter principle|1 +(noun)|compound|chemical compound +bitter salts|1 +(noun)|Epsom salts|magnesium sulfate +bittercress|1 +(noun)|bitter cress|cress|cress plant +bitterish|1 +(adj)|tasteful +bitterly|2 +(adv)|with bitterness +(adv)|piercingly|bitingly|bitter +bittern|1 +(noun)|heron +bitterness|4 +(noun)|resentment|gall|rancor|rancour|hostility|enmity|ill will +(noun)|acrimony|acerbity|jaundice|disagreeableness +(noun)|bitter|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|bitter|taste property +bitternut|1 +(noun)|bitternut hickory|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory|hickory tree +bitternut hickory|1 +(noun)|bitternut|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory|hickory tree +bitterroot|1 +(noun)|Lewisia rediviva|wildflower|wild flower +bitters|4 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +(noun)|bitter|ale +(noun)|bitter|bitterness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|bitterness|bitter|taste property +bittersweet|4 +(adj)|sad +(adj)|semisweet|tasteful +(noun)|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade +(noun)|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|Celastrus scandens|vine +bittersweet chocolate|1 +(noun)|semi-sweet chocolate|dark chocolate|chocolate +bittersweet nightshade|1 +(noun)|bittersweet|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade +bitterweed|2 +(noun)|oxtongue|bristly oxtongue|bugloss|Picris echioides|weed +(noun)|ragweed|ambrosia|weed +bitterwood|3 +(noun)|quassia|Quassia amara|bitterwood tree +(noun)|Jamaica quassia|Picrasma excelsa|Picrasma excelsum|bitterwood tree +(noun)|paradise tree|Simarouba glauca|bitterwood tree +bitterwood tree|1 +(noun)|tree +bitthead|1 +(noun)|end +bittie|1 +(adj)|bitty|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +bitty|1 +(adj)|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +bitumastic|1 +(noun)|coating|coat +bitumen|1 +(noun)|hydrocarbon +bitumenoid|1 +(adj)|bituminoid|hydrocarbon +bituminise|1 +(verb)|bituminize|process|treat +bituminize|1 +(verb)|bituminise|process|treat +bituminoid|1 +(adj)|bitumenoid|hydrocarbon +bituminous|1 +(adj)|hydrocarbon +bituminous coal|1 +(noun)|soft coal|coal +biu-mandara|1 +(noun)|Biu-Mandara|Chad|Chadic|Chadic language +bivalent|2 +(adj)|divalent|power|powerfulness +(adj)|bivalent |double +bivalve|2 +(adj)|bivalve |bivalved|lamellibranch|pelecypod|pelecypodous +(noun)|pelecypod|lamellibranch|mollusk|mollusc|shellfish +bivalved|1 +(adj)|bivalve |lamellibranch|pelecypod|pelecypodous +bivalvia|1 +(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class +bivariate|1 +(adj)|quantity +bivouac|3 +(noun)|camp|encampment|cantonment|military quarters +(noun)|campsite|campground|camping site|camping ground|encampment|camping area|site|land site +(verb)|camp|encamp|camp out|tent|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +bivouacking|1 +(noun)|camping|encampment|tenting|inhabitancy|inhabitation|habitation +biweekly|5 +(adj)|semiweekly|time period|period of time|period +(adj)|fortnightly|time period|period of time|period +(noun)|series|serial|serial publication +(adv)|semiweekly +(adv)|fortnightly +biyearly|4 +(adj)|biennial|time period|period of time|period +(adj)|semiannual|biannual|time period|period of time|period +(adv)|biennially +(adv)|semiannually +biz|1 +(noun)|game|occupation|business|job|line of work|line +bizarre|1 +(adj)|eccentric|freakish|freaky|flaky|off-the-wall|outlandish|outre|unconventional +bizarreness|1 +(noun)|outlandishness|weirdness|unfamiliarity|strangeness +bize|1 +(noun)|bise|north wind|norther|boreas +bizet|1 +(noun)|Bizet|Georges Bizet|composer +bizonal|1 +(adj)|region|part +bja|1 +(noun)|Bureau of Justice Assistance|BJA|agency|federal agency|government agency|bureau|office|authority +bjs|1 +(noun)|Bureau of Justice Statistics|BJS|agency|federal agency|government agency|bureau|office|authority +bk|1 +(noun)|berkelium|Bk|atomic number 97|metallic element|metal +blab|2 +(verb)|spill the beans|let the cat out of the bag|talk|tattle|peach|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +blab out|1 +(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|babble out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +blabber|2 +(noun)|informer|betrayer|rat|squealer|informant|source +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|gabble|talk|speak|utter|mouth|verbalize|verbalise +blabbermouth|1 +(noun)|tattletale|tattler|taleteller|talebearer|telltale|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +blabbermouthed|2 +(adj)|bigmouthed|blabby|talkative|indiscreet +(adj)|leaky|talebearing|tattling|communicative |communicatory +blabby|1 +(adj)|bigmouthed|blabbermouthed|talkative|indiscreet +blaberus|1 +(noun)|Blaberus|genus Blaberus|arthropod genus +black|23 +(adj)|black |achromatic|dark +(adj)|black |African-American|Afro-American|colored|coloured|dark|dark-skinned|negro|negroid +(adj)|angry +(adj)|dark|sinister|evil |wicked +(adj)|bleak|dim|hopeless +(adj)|calamitous|disastrous|fatal|fateful|unfortunate +(adj)|blackened|colored |coloured|colorful +(adj)|pitch-black|pitch-dark|dark +(adj)|grim|mordant|sarcastic +(adj)|covert +(adj)|bootleg|black-market|contraband|smuggled|illegal +(adj)|disgraceful|ignominious|inglorious|opprobrious|shameful|dishonorable |dishonourable +(adj)|undiluted +(adj)|clothed |clad +(adj)|dirty |soiled|unclean +(noun)|blackness|achromatic color|achromatic colour +(noun)|total darkness|lightlessness|blackness|pitch blackness|dark|darkness +(noun)|Black|Joseph Black|chemist +(noun)|Black|Shirley Temple Black|Shirley Temple|actress +(noun)|Black|Black person|blackamoor|Negro|Negroid|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +(noun)|man|piece +(noun)|clothing|article of clothing|vesture|wear +(verb)|blacken|melanize|melanise|nigrify|discolor|discolour|colour|color +black-and-blue|1 +(adj)|livid|injured +black-and-tan coonhound|1 +(noun)|coonhound +black-and-tan terrier|1 +(noun)|Manchester terrier|rat terrier|ratter +black-and-white|3 +(adj)|black-and-white +(adj)|divided +(adj)| +black-backed gull|1 +(noun)|great black-backed gull|cob|Larus marinus|gull|seagull|sea gull +black-billed cuckoo|1 +(noun)|Coccyzus erythropthalmus|cuckoo +black-body radiation|1 +(noun)|blackbody radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +black-capped chickadee|1 +(noun)|blackcap|Parus atricapillus|chickadee +black-crowned night heron|1 +(noun)|Nycticorax nycticorax|night heron|night raven +black-eyed pea|3 +(noun)|cowpea|legume +(noun)|cowpea|cowpea plant|Vigna unguiculata|Vigna sinensis|legume|leguminous plant +(noun)|cowpea|legume +black-eyed susan|3 +(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine +(noun)|flower-of-an-hour|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus +(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower +black-eyed susan vine|1 +(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine +black-footed albatross|1 +(noun)|gooney|gooney bird|goonie|goony|Diomedea nigripes|albatross|mollymawk +black-footed ferret|1 +(noun)|ferret|Mustela nigripes|musteline mammal|mustelid|musteline +black-fronted bush shrike|1 +(noun)|Chlorophoneus nigrifrons|bush shrike +black-haired|1 +(adj)|dark-haired|brown-haired|brunet |brunette +black-headed snake|1 +(noun)|colubrid snake|colubrid +black-legged tick|1 +(noun)|Ixodes scapularis|hard tick|ixodid +black-market|1 +(adj)|bootleg|black|contraband|smuggled|illegal +black-necked cobra|1 +(noun)|spitting cobra|Naja nigricollis|cobra +black-necked grebe|1 +(noun)|eared grebe|Podiceps nigricollis|grebe +black-necked stilt|1 +(noun)|Himantopus mexicanus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +black-necked stork|1 +(noun)|policeman bird|jabiru|Xenorhyncus asiaticus|stork +black-stem spleenwort|1 +(noun)|black-stemmed spleenwort|little ebony spleenwort|spleenwort +black-stemmed spleenwort|1 +(noun)|black-stem spleenwort|little ebony spleenwort|spleenwort +black-tailed deer|1 +(noun)|blacktail deer|blacktail|Odocoileus hemionus columbianus|mule deer|burro deer|Odocoileus hemionus +black-tie|1 +(adj)|semiformal|semi-formal|formal +black-winged stilt|1 +(noun)|Himantopus himantopus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +black africa|1 +(noun)|Sub-Saharan Africa|Black Africa|geographical area|geographic area|geographical region|geographic region +black african|1 +(noun)|Black African|African +black american|1 +(noun)|African-American|Afro-American|Black American|American +black and gold garden spider|1 +(noun)|Argiope aurantia|spider +black and tan|1 +(noun)|Black and Tan|recruit +black and white|4 +(adj)|black-and-white +(adj)|black-and-white|divided +(noun)|print|written communication|written language +(noun)|monochrome|photograph|photo|exposure|pic +black angus|1 +(noun)|Aberdeen Angus|Angus|black Angus|beef|beef cattle +black apricot|1 +(noun)|purple apricot|Prunus dasycarpa|apricot|apricot tree +black archangel|1 +(noun)|black horehound|fetid horehound|stinking horehound|Ballota nigra|herb|herbaceous plant +black art|1 +(noun)|sorcery|black magic|necromancy|magic +black ash|1 +(noun)|basket ash|brown ash|hoop ash|Fraxinus nigra|ash|ash tree +black bamboo|1 +(noun)|kuri-chiku|Phyllostachys nigra|bamboo +black bass|2 +(noun)|black sea bass|Centropistes striata|sea bass +(noun)|sunfish|centrarchid +black bead|1 +(noun)|cat's-claw|catclaw|Pithecellodium unguis-cati|shrub|bush +black bean|1 +(noun)|turtle bean|common bean +black bear|2 +(noun)|Asiatic black bear|Ursus thibetanus|Selenarctos thibetanus|bear +(noun)|American black bear|Ursus americanus|Euarctos americanus|bear +black bearberry|1 +(noun)|alpine bearberry|Arctostaphylos alpina|bearberry +black bee|1 +(noun)|German bee|honeybee|Apis mellifera +black beech|1 +(noun)|Nothofagus solanderi|southern beech|evergreen beech +black belt|2 +(noun)|expert +(noun)|badge +black bile|1 +(noun)|melancholy|liquid body substance|bodily fluid|body fluid|humor|humour +black bindweed|1 +(noun)|black bryony|Tamus communis|vine +black birch|2 +(noun)|sweet birch|cherry birch|Betula lenta|birch|birch tree +(noun)|river birch|red birch|Betula nigra|birch|birch tree +black body|2 +(noun)|blackbody|full radiator|natural object +(noun)| +black book|1 +(noun)|blacklist|shitlist|list|listing +black box|1 +(noun)|recorder|recording equipment|recording machine +black bread|1 +(noun)|pumpernickel|rye bread +black bream|1 +(noun)|Chrysophrys australis|sea bream|bream +black bryony|1 +(noun)|black bindweed|Tamus communis|vine +black buck|2 +(noun)|blackbuck|Antilope cervicapra|antelope +(noun)| +black buffalo|1 +(noun)|Ictiobus niger|buffalo fish|buffalofish +black calla|1 +(noun)|Arum palaestinum|arum|aroid +black caraway|1 +(noun)|nutmeg flower|Roman coriander|Nigella sativa|nigella +black carpet beetle|1 +(noun)|carpet beetle|carpet bug +black cat|1 +(noun)|fisher|pekan|fisher cat|Martes pennanti|marten|marten cat +black catechu|1 +(noun)|catechu|infusion|extract +black cherry|2 +(noun)|black cherry tree|rum cherry|Prunus serotina|wild cherry|wild cherry tree +(noun)|sweet cherry|cherry +black cherry tree|1 +(noun)|black cherry|rum cherry|Prunus serotina|wild cherry|wild cherry tree +black cock|2 +(noun)|blackcock|black grouse +(noun)| +black cohosh|1 +(noun)|black snakeroot|rattle-top|Cimicifuga racemosa|bugbane +black comedy|1 +(noun)|comedy +black cottonwood|2 +(noun)|swamp cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood +(noun)|Western balsam poplar|Populus trichocarpa|cottonwood +black crappie|1 +(noun)|Pomoxis nigromaculatus|crappie +black currant|2 +(noun)|European black currant|Ribes nigrum|currant|currant bush +(noun)|currant +black cypress pine|1 +(noun)|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine +black death|1 +(noun)|Black Death|black plague|bubonic plague +black diamond|1 +(noun)|carbonado|diamond|adamant +black disease|1 +(noun)|sheep rot|liver rot|distomatosis|animal disease +black duck|1 +(noun)|Anas rubripes|duck +black economy|1 +(noun)|sector +black elder|1 +(noun)|bourtree|common elder|elderberry|European elder|Sambucus nigra|elder|elderberry bush +black elderberry|1 +(noun)|American elder|sweet elder|Sambucus canadensis|elder|elderberry bush +black english|1 +(noun)|Black English|Black English Vernacular|Ebonics|American English|American language|American +black english vernacular|1 +(noun)|Black English|Black English Vernacular|Ebonics|American English|American language|American +black eye|3 +(noun)|shiner|bruise|contusion +(noun)|repute|reputation +(noun)|reverse|reversal|setback|blow|happening|occurrence|natural event +black felt cup|1 +(noun)|Sarcosomataceae +black flag|1 +(noun)|pirate flag|Jolly Roger|flag +black fly|2 +(noun)|blackfly|buffalo gnat|gnat +(noun)|blackfly|bean aphid|Aphis fabae|aphid +black forest|1 +(noun)|Black Forest|Schwarzwald|forest|woodland|timberland|timber +black fox|1 +(noun)|red fox|Vulpes vulpes +black friar|2 +(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar|mendicant +(noun)| +black fritillary|1 +(noun)|mission bells|Fritillaria biflora|fritillary|checkered lily +black grama|1 +(noun)|Bouteloua eriopoda|grama|grama grass|gramma|gramma grass +black greasewood|1 +(noun)|greasewood|Sarcobatus vermiculatus|shrub|bush +black grouse|1 +(noun)|grouse +black guillemot|1 +(noun)|Cepphus grylle|guillemot +black gum|2 +(noun)|sour gum|pepperidge|Nyssa sylvatica|tupelo|tupelo tree +(noun)|black mallee|black sally|Eucalytus stellulata|mallee +black hand|1 +(noun)|Black Hand|organized crime|gangland|gangdom +black haw|2 +(noun)|false buckthorn|chittamwood|chittimwood|shittimwood|Bumelia lanuginosa|buckthorn +(noun)|Viburnum prunifolium|shrub|bush +black hawk|1 +(noun)|Black Hawk|Makataimeshekiakiak|Indian chief|Indian chieftain|Sauk|Sac +black hellebore|2 +(noun)|lenten rose|Helleborus orientalis|hellebore +(noun)|Christmas rose|winter rose|Helleborus niger|hellebore +black hemlock|1 +(noun)|mountain hemlock|Tsuga mertensiana|hemlock|hemlock tree +black henbane|1 +(noun)|henbane|stinking nightshade|Hyoscyamus niger|herb|herbaceous plant +black hickory|3 +(noun)|mockernut|mockernut hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory|hickory tree +(noun)|pignut|pignut hickory|brown hickory|Carya glabra|hickory|hickory tree +(noun)|black walnut|black walnut tree|Juglans nigra|walnut|walnut tree +black hills|2 +(noun)|Black Hills|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Black Hills|hills +black hole|1 +(noun)|region|part +black hole of calcutta|1 +(noun)|Black Hole of Calcutta|keep|donjon|dungeon +black hollander|1 +(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier +black horehound|1 +(noun)|black archangel|fetid horehound|stinking horehound|Ballota nigra|herb|herbaceous plant +black huckleberry|1 +(noun)|Gaylussacia baccata|huckleberry +black humor|1 +(noun)|black humour|expressive style|style +black humour|1 +(noun)|black humor|expressive style|style +black ice|1 +(noun)|ice|water ice +black jack pershing|1 +(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general|full general +black kite|1 +(noun)|Milvus migrans|kite +black knapweed|1 +(noun)|lesser knapweed|hardheads|Centaurea nigra|knapweed +black knot|1 +(noun)|plant disease +black larch|1 +(noun)|American larch|tamarack|Larix laricina|larch|larch tree +black lead|1 +(noun)|graphite|plumbago|carbon|C|atomic number 6 +black letter|1 +(noun)|Gothic|font|fount|typeface|face +black locust|2 +(noun)|wood +(noun)|yellow locust|Robinia pseudoacacia|locust tree|locust +black lotion|1 +(noun)|blackwash|lotion|application +black lovage|1 +(noun)|Alexander|Alexanders|horse parsley|Smyrnium olusatrum|herb|herbaceous plant +black lung|1 +(noun)|anthracosis|black lung disease|coal miner's lung|pneumoconiosis|pneumonoconiosis +black lung disease|1 +(noun)|anthracosis|black lung|coal miner's lung|pneumoconiosis|pneumonoconiosis +black magic|1 +(noun)|sorcery|black art|necromancy|magic +black maire|1 +(noun)|Olea cunninghamii|olive tree +black mallee|1 +(noun)|black sally|black gum|Eucalytus stellulata|mallee +black mamba|1 +(noun)|Dendroaspis augusticeps|mamba +black man|1 +(noun)|Black man|man|adult male|Black|Black person|blackamoor|Negro|Negroid +black mangrove|2 +(noun)|Aegiceras majus|tree +(noun)|Avicennia marina|blackwood|blackwood tree +black margate|1 +(noun)|pompon|Anisotremus surinamensis|grunt +black maria|2 +(noun)|police van|police wagon|paddy wagon|patrol wagon|wagon|black Maria|van +(noun)|hearts|Black Maria|whist|long whist|short whist +black market|3 +(noun)|market +(noun)|market|marketplace +(verb)|run|trade|merchandise +black marketeer|2 +(noun)|supplier|provider +(verb)|deal|sell|trade +black marlin|2 +(noun)|Makaira marlina|marlin|spearfish +(noun)|Makaira mazara|marlin|spearfish +black medick|1 +(noun)|hop clover|yellow trefoil|nonesuch clover|Medicago lupulina|medic|medick|trefoil +black morel|1 +(noun)|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel +black moss|1 +(noun)|Spanish moss|old man's beard|long moss|Tillandsia usneoides|air plant|epiphyte|aerophyte|epiphytic plant +black mulberry|1 +(noun)|Morus nigra|mulberry|mulberry tree +black music|1 +(noun)|African-American music|music genre|musical genre|genre|musical style +black muslim|1 +(noun)|Black Muslim|militant|activist +black mustard|1 +(noun)|Brassica nigra|mustard +black nightshade|1 +(noun)|common nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade +black oak|1 +(noun)|yellow oak|quercitron|quercitron oak|Quercus velutina|oak|oak tree +black olive|1 +(noun)|ripe olive|olive +black opal|1 +(noun)|opal +black operation|1 +(noun)|covert operation +black out|4 +(verb)|snuff out|blow out|extinguish|quench +(verb)|blacken out|darken +(verb)|edit|redact +(verb)|zonk out|pass out|change state|turn +black panther|1 +(noun)|Black Panther|militant|activist +black panthers|2 +(noun)|Black Panthers|party|political party +(noun)|Black Panther|militant|activist +black pea|1 +(noun)|Lathyrus niger|vetchling +black pepper|2 +(noun)|pepper|common pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +(noun)|pepper|peppercorn +black person|1 +(noun)|Black|Black person|blackamoor|Negro|Negroid|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +black pine|5 +(noun)|matai|Prumnopitys taxifolia|Podocarpus spicata|conifer|coniferous tree +(noun)|miro|Prumnopitys ferruginea|Podocarpus ferruginea|conifer|coniferous tree +(noun)|Japanese black pine|Pinus thunbergii|pine|pine tree|true pine +(noun)|Jeffrey pine|Jeffrey's pine|Pinus jeffreyi|pine|pine tree|true pine +(noun)|Pinus nigra|pine|pine tree|true pine +black plague|1 +(noun)|Black Death|bubonic plague +black poplar|1 +(noun)|Populus nigra|poplar|poplar tree +black prince|1 +(noun)|Edward|Black Prince|Prince of Wales +black pudding|1 +(noun)|blood sausage|blood pudding|sausage +black race|1 +(noun)|Black race|Negroid race|Negro race|race +black racer|1 +(noun)|blacksnake|Coluber constrictor|racer +black raspberry|1 +(noun)|blackcap|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry|raspberry bush +black rat|1 +(noun)|roof rat|Rattus rattus|rat +black rat snake|1 +(noun)|blacksnake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake +black rhinoceros|1 +(noun)|Diceros bicornis|rhinoceros|rhino +black rockweed|1 +(noun)|bladderwrack|bladder fucus|tang|Fucus vesiculosus|rockweed +black root rot fungus|1 +(noun)|Xylaria mali|fungus +black rot|1 +(noun)|plant disease +black rudderfish|1 +(noun)|barrelfish|Hyperglyphe perciformis|butterfish|stromateid fish|stromateid +black sage|1 +(noun)|wooly blue curls|California romero|Trichostema lanatum|blue curls +black sally|1 +(noun)|black mallee|black gum|Eucalytus stellulata|mallee +black salsify|2 +(noun)|viper's grass|scorzonera|Scorzonera hispanica|herb|herbaceous plant +(noun)|scorzonera|salsify +black saltwort|1 +(noun)|sea milkwort|sea trifoly|Glaux maritima|herb|herbaceous plant +black sea|1 +(noun)|Black Sea|Euxine Sea|sea +black sea bass|1 +(noun)|black bass|Centropistes striata|sea bass +black september|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +black september movement|1 +(noun)|Black September Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +black sheep|2 +(noun)|scapegrace|reprobate|miscreant +(noun)|sheep +black snakeroot|2 +(noun)|Canada ginger|Asarum canadense|wild ginger +(noun)|black cohosh|rattle-top|Cimicifuga racemosa|bugbane +black spleenwort|1 +(noun)|Asplenium adiantum-nigrum|spleenwort +black spot|1 +(noun)|plant disease +black spruce|1 +(noun)|Picea mariana|spruce pine|spruce +black squirrel|1 +(noun)|tree squirrel +black stork|1 +(noun)|Ciconia nigra|stork +black sumac|1 +(noun)|dwarf sumac|mountain sumac|shining sumac|Rhus copallina|sumac|sumach|shumac +black swan|1 +(noun)|Cygnus atratus|swan +black tai|1 +(noun)|Tai Dam|Black Tai|Tai +black tea|1 +(noun)|tea|tea leaf +black tie|2 +(noun)|dinner jacket|tux|tuxedo|formalwear|eveningwear|evening dress|evening clothes +(noun)|bow tie +black tongue|1 +(noun)|hairy tongue|furry tongue|side effect +black tree fern|1 +(noun)|silver tree fern|sago fern|Cyathea medullaris|tree fern +black turnstone|1 +(noun)|Arenaria-Melanocephala|turnstone +black vomit|1 +(noun)|yellow jack|yellow fever|infectious disease +black vulture|2 +(noun)|carrion crow|Coragyps atratus|New World vulture|cathartid +(noun)|Aegypius monachus|Old World vulture +black walnut|2 +(noun)|black walnut tree|black hickory|Juglans nigra|walnut|walnut tree +(noun)|walnut +black walnut tree|1 +(noun)|black walnut|black hickory|Juglans nigra|walnut|walnut tree +black wattle|1 +(noun)|Acacia auriculiformis|acacia +black weevil|1 +(noun)|rice weevil|Sitophylus oryzae|weevil +black whale|2 +(noun)|pilot whale|common blackfish|blackfish|Globicephala melaena|dolphin +(noun)|sperm whale|cachalot|Physeter catodon|toothed whale +black widow|1 +(noun)|Latrodectus mactans|spider +black willow|1 +(noun)|swamp willow|Salix nigra|willow|willow tree +black woman|1 +(noun)|Black woman|woman|adult female|Black|Black person|blackamoor|Negro|Negroid +blackamoor|1 +(noun)|Black|Black person|Negro|Negroid|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +blackback flounder|1 +(noun)|winter flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder|righteyed flounder +blackball|3 +(noun)|barring|ejection|exclusion|expulsion|riddance +(verb)|banish|ban|ostracize|ostracise|shun|cast out|expel|throw out|kick out +(verb)|veto|negative|oppose|controvert|contradict +blackbeard|1 +(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate|buccaneer|sea robber|sea rover +blackbeetle|1 +(noun)|oriental cockroach|oriental roach|Asiatic cockroach|Blatta orientalis|cockroach|roach +blackberry|3 +(noun)|berry|drupelet +(noun)|blackberry bush|bramble bush +(verb)|berry +blackberry-lily|1 +(noun)|leopard lily|Belamcanda chinensis|iridaceous plant +blackberry bush|1 +(noun)|blackberry|bramble bush +blackbird|2 +(noun)|New World blackbird|New World oriole|American oriole|oriole +(noun)|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush +blackboard|1 +(noun)|chalkboard|sheet|flat solid +blackboard eraser|1 +(noun)|eraser +blackbody|1 +(noun)|black body|full radiator|natural object +blackbody radiation|1 +(noun)|black-body radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +blackbuck|1 +(noun)|black buck|Antilope cervicapra|antelope +blackburn|1 +(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler|wood warbler +blackburnian warbler|1 +(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler|wood warbler +blackcap|4 +(noun)|black raspberry|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry|raspberry bush +(noun)|laughing gull|pewit|pewit gull|Larus ridibundus|gull|seagull|sea gull +(noun)|black-capped chickadee|Parus atricapillus|chickadee +(noun)|Silvia atricapilla|Old World warbler|true warbler +blackcap raspberry|1 +(noun)|black raspberry|blackcap|thimbleberry|Rubus occidentalis|raspberry|raspberry bush +blackcock|1 +(noun)|black cock|black grouse +blackdamp|1 +(noun)|chokedamp|carbon dioxide|CO2|carbonic acid gas +blacken|2 +(verb)|melanize|melanise|nigrify|black|discolor|discolour|colour|color +(verb)|char|scorch|burn +blacken out|1 +(verb)|black out|darken +blackened|2 +(adj)|smoky +(adj)|black|colored |coloured|colorful +blackening|1 +(noun)|darkening|change of color +blackface|1 +(noun)|makeup|make-up|war paint +blackfish|3 +(noun)|tautog|Tautoga onitis|wrasse +(noun)|salmon +(noun)|pilot whale|black whale|common blackfish|Globicephala melaena|dolphin +blackfly|2 +(noun)|bean aphid|Aphis fabae|aphid +(noun)|black fly|buffalo gnat|gnat +blackfoot|2 +(noun)|Blackfoot|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Blackfoot|Algonquian|Algonquin|Algonquian language +blackfoot daisy|1 +(noun)|Melampodium leucanthum|wildflower|wild flower +blackfriar|1 +(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar|mendicant +blackguard|3 +(noun)|cad|bounder|dog|hound|heel|villain|scoundrel +(verb)|ridicule|roast|guy|laugh at|jest at|rib|make fun|poke fun|mock|bemock +(verb)|abuse|clapperclaw|shout|attack|round|assail|lash out|snipe|assault +blackguardly|1 +(adj)|rascally|roguish|scoundrelly|dishonest |dishonorable +blackhead|1 +(noun)|comedo|blemish|defect|mar +blackheart|2 +(noun)|plant disease +(noun)|blackheart cherry|heart cherry|oxheart|oxheart cherry +blackheart cherry|1 +(noun)|blackheart|heart cherry|oxheart|oxheart cherry +blacking|1 +(noun)|shoe polish|polish +blackish|1 +(adj)|achromatic +blackjack|4 +(noun)|blackjack oak|jack oak|Quercus marilandica|scrub oak +(noun)|cosh|sap|bludgeon +(noun)|twenty-one|vingt-et-un|card game|cards +(verb)|blackmail|pressure|influence|act upon|work +blackjack oak|1 +(noun)|blackjack|jack oak|Quercus marilandica|scrub oak +blacklead|1 +(verb)|cover +blackleg|2 +(noun)|scab|strikebreaker|rat|worker +(verb)|scab|rat|work|do work +blacklist|2 +(noun)|black book|shitlist|list|listing +(verb)|list +blackmail|3 +(noun)|extortion +(verb)|blackjack|pressure|influence|act upon|work +(verb)|extort +blackmailer|1 +(noun)|extortioner|extortionist|criminal|felon|crook|outlaw|malefactor +blackmouth bass|1 +(noun)|Synagrops bellus|sea bass +blackness|2 +(noun)|black|achromatic color|achromatic colour +(noun)|total darkness|lightlessness|pitch blackness|black|dark|darkness +blackout|5 +(noun)|pause|intermission|break|interruption|suspension +(noun)|brownout|dimout|dark|darkness +(noun)|power outage|power failure +(noun)|unconsciousness +(noun)|amnesia|memory loss|cognitive state|state of mind +blackpoll|1 +(noun)|Dendroica striate|New World warbler|wood warbler +blackpool|1 +(noun)|Blackpool|town +blacksburg|1 +(noun)|Blacksburg|town +blackseed|1 +(noun)|smut grass|carpet grass|Sporobolus poiretii|dropseed|drop-seed +blackshirt|1 +(noun)|Blackshirt|fascist +blacksmith|1 +(noun)|smith|metalworker +blacksnake|2 +(noun)|black rat snake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake +(noun)|black racer|Coluber constrictor|racer +blacktail|1 +(noun)|black-tailed deer|blacktail deer|Odocoileus hemionus columbianus|mule deer|burro deer|Odocoileus hemionus +blacktail deer|1 +(noun)|black-tailed deer|blacktail|Odocoileus hemionus columbianus|mule deer|burro deer|Odocoileus hemionus +blacktail jackrabbit|1 +(noun)|Lepus californicus|jackrabbit +blacktail prairie dog|1 +(noun)|Cynomys ludovicianus|prairie dog|prairie marmot +blackthorn|2 +(noun)|sloe|Prunus spinosa|shrub|bush +(noun)|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn|haw +blacktip shark|1 +(noun)|sandbar shark|Carcharhinus limbatus|requiem shark +blacktop|2 +(noun)|blacktopping|paving material +(verb)|coat|surface +blacktopping|1 +(noun)|blacktop|paving material +blackwall hitch|1 +(noun)|Blackwall hitch|hitch +blackwash|5 +(noun)|character assassination|assassination|defamation|calumny|obloquy|traducement|hatchet job +(noun)|black lotion|lotion|application +(noun)|wash +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +blackwater|1 +(noun)|disease +blackwater fever|1 +(noun)|malaria +blackwood|2 +(noun)|wood +(noun)|blackwood tree|tree +blackwood tree|1 +(noun)|blackwood|tree +bladder|2 +(noun)|vesica|sac +(noun)|bag +bladder campion|2 +(noun)|Silene uniflora|Silene vulgaris|silene|campion|catchfly +(noun)|white campion|evening lychnis|white cockle|Silene latifolia|Lychnis alba|silene|campion|catchfly +bladder cherry|1 +(noun)|Chinese lantern plant|winter cherry|Physalis alkekengi|ground cherry|husk tomato +bladder disorder|1 +(noun)|disorder|upset +bladder fern|1 +(noun)|fern +bladder fucus|1 +(noun)|bladderwrack|black rockweed|tang|Fucus vesiculosus|rockweed +bladder ketmia|1 +(noun)|flower-of-an-hour|flowers-of-an-hour|black-eyed Susan|Hibiscus trionum|hibiscus +bladder senna|1 +(noun)|Colutea arborescens|shrub|bush +bladder sphincter|1 +(noun)|musculus sphincter vesicae|sphincter|anatomical sphincter|sphincter muscle +bladder stone|1 +(noun)|cystolith|calculus|concretion +bladder worm|1 +(noun)|larva +bladderlike|1 +(adj)|bladdery|bag +bladdernose|1 +(noun)|hooded seal|Cystophora cristata|earless seal|true seal|hair seal +bladdernut family|1 +(noun)|Staphylaceae|family Staphylaceae|dicot family|magnoliopsid family +bladderpod|4 +(noun)|Indian tobacco|Lobelia inflata|lobelia +(noun)|herb|herbaceous plant +(noun)|herb|herbaceous plant +(noun)|herb|herbaceous plant +bladderwort|1 +(noun)|carnivorous plant +bladderwort family|1 +(noun)|Lentibulariaceae|family Lentibulariaceae|plant family +bladderwrack|2 +(noun)|Ascophyllum nodosum|rockweed +(noun)|black rockweed|bladder fucus|tang|Fucus vesiculosus|rockweed +bladdery|1 +(adj)|bladderlike|bag +blade|9 +(noun)|leaf blade|leaf|leafage|foliage +(noun)|young person|youth|younker|spring chicken +(noun)|ribbon|thread +(noun)|sword|brand|steel|weapon|arm|weapon system +(noun)|cut of beef +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|runner +(noun)|vane|rotating mechanism +(noun)|cutting implement +blade apple|1 +(noun)|Barbados gooseberry|edible fruit +blade bit|1 +(noun)|fishtail bit|drilling bit|drill bit +blade roast|1 +(noun)|roast|joint +bladed|3 +(adj)|weapon|arm|weapon system +(adj)|leaf|leafage|foliage +(adj)|thin +bladelike|1 +(adj)|ensiform|sword-shaped|swordlike|simple |unsubdivided|pointed +blae|1 +(adj)|chromatic +blaeberry|1 +(noun)|bilberry|whortleberry|whinberry|Viccinium myrtillus|blueberry|blueberry bush +blah|1 +(noun)|bombast|fustian|rant|claptrap|grandiosity|magniloquence|grandiloquence|rhetoric +blahs|2 +(noun)|boredom|ennui|tedium +(noun)|bombast|fustian|rant|claptrap|blah|grandiosity|magniloquence|grandiloquence|rhetoric +blaia zimondal|1 +(noun)|Blaia Zimondal|artificial language +blain|1 +(noun)|sore +blair|1 +(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman|solon|national leader +blaise pascal|1 +(noun)|Pascal|Blaise Pascal|mathematician|philosopher +blake|1 +(noun)|Blake|William Blake|poet|painter +blamable|1 +(adj)|blameworthy|blameable|blameful|censurable|culpable|guilty +blame|6 +(adj)|blasted|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +(noun)|incrimination|inculpation|accusation|accusal +(noun)|rap|reproach +(verb)|fault|charge|accuse +(verb)|find fault|pick|knock|criticize|criticise|pick apart +(verb)|charge|impute|ascribe|assign|attribute +blameable|1 +(adj)|blameworthy|blamable|blameful|censurable|culpable|guilty +blamed|1 +(adj)|blasted|blame|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +blameful|1 +(adj)|blameworthy|blamable|blameable|censurable|culpable|guilty +blameless|1 +(adj)|inculpable|irreproachable|unimpeachable|innocent |guiltless|clean-handed +blamelessly|1 +(adv)|irreproachably +blamelessness|1 +(noun)|inculpability|inculpableness|guiltlessness|innocence +blameworthiness|1 +(noun)|culpability|culpableness|guilt|guiltiness +blameworthy|1 +(adj)|blamable|blameable|blameful|censurable|culpable|guilty +blanc fixe|1 +(noun)|barium sulphate|barium sulfate|sulfate|sulphate +blanch|2 +(verb)|pale|blench|discolor|discolour|colour|color +(verb)|parboil|cook +blanched|2 +(adj)|ashen|bloodless|livid|white|colorless |colourless +(adj)|etiolate|etiolated|colorless |colourless +blanching agent|1 +(noun)|bleaching agent|bleach|whitener|agent +blancmange|1 +(noun)|dessert|sweet|afters +blanco|1 +(verb)|whiten|white +bland|3 +(adj)|bland +(adj)|flat|flavorless|flavourless|insipid|savorless|savourless|vapid|tasteless +(adj)|flat|unstimulating |unexciting +bland diet|1 +(noun)|ulcer diet|diet +blandfordia|1 +(noun)|Blandfordia|genus Blandfordia|liliid monocot genus +blandish|1 +(verb)|flatter|praise +blandishment|2 +(noun)|cajolery|palaver|flattery +(noun)|wheedling|enticement|temptation +blandness|3 +(noun)|unemotionality|emotionlessness +(noun)|insipidity|insipidness|unappetizingness|unappetisingness +(noun)|suavity|suaveness|graciousness +blank|9 +(adj)|clean|white|empty +(adj)|uncommunicative |incommunicative +(adj)|unloaded +(noun)|space|character|grapheme|graphic symbol +(noun)|euphemism +(noun)|lacuna|gap|crack +(noun)|sheet|flat solid +(noun)|dummy|blank shell|cartridge +(verb)|prevent|keep +blank check|2 +(noun)|free hand|freedom +(noun)|blank cheque|check|bank check|cheque +blank cheque|1 +(noun)|blank check|check|bank check|cheque +blank endorsement|1 +(noun)|endorsement in blank|endorsement|indorsement +blank out|2 +(verb)|forget|block|draw a blank +(verb)|edit|redact +blank shell|1 +(noun)|blank|dummy|cartridge +blank space|1 +(noun)|space|place|area|expanse|surface area +blank verse|1 +(noun)|poem|verse form +blanket|6 +(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|broad|encompassing|panoptic|wide|comprehensive +(noun)|cover|bedclothes|bed clothing|bedding +(noun)|mantle|covering|natural covering|cover +(noun)|layer|bed +(verb)|cover +(verb)|cover|spread over +blanket flower|1 +(noun)|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia +blanket jam|1 +(verb)|jam|block +blanket stitch|1 +(noun)|stitch +blankly|1 +(adv)|without expression +blankness|1 +(noun)|emptiness +blanquillo|1 +(noun)|tilefish|percoid fish|percoid|percoidean +blantyre|1 +(noun)|Blantyre|city|metropolis|urban center +blare|3 +(noun)|blaring|cacophony|clamor|din|noise +(verb)|blast|make noise|resound|noise +(verb)|honk|beep|claxon|toot|sound|go +blare out|1 +(verb)|blat out|announce|denote +blarina|1 +(noun)|Blarina|genus Blarina|mammal genus +blarina brevicauda|1 +(noun)|short-tailed shrew|Blarina brevicauda|shrew|shrewmouse +blaring|2 +(adj)|blasting|loud +(noun)|blare|cacophony|clamor|din|noise +blarney|2 +(noun)|coaxing|soft soap|sweet talk|flattery +(verb)|wheedle|cajole|palaver|coax|sweet-talk|inveigle|persuade +blarney stone|1 +(noun)|Blarney Stone|stone +blase|3 +(adj)|worldly|sophisticated +(adj)|bored|uninterested +(adj)|unconcerned +blaspheme|2 +(verb)|curse|cuss|swear|imprecate|express|verbalize|verbalise|utter|give tongue to +(verb)|talk of|talk about +blasphemer|1 +(noun)|nonreligious person +blasphemous|2 +(adj)|profane|sacrilegious|irreverent +(adj)|blue|profane|dirty +blasphemy|2 +(noun)|profanity|disrespect|discourtesy +(noun)|profanation|desecration|sacrilege|irreverence|violation +blast|9 +(noun)|fly|fly ball +(noun)|bang|clap|eruption|loud noise|noise +(noun)|gust|blow|wind|air current|current of air +(noun)|explosion|detonation|blowup +(noun)|good time|experience +(noun)|fire|attack|flak|flack|criticism|unfavorable judgment +(verb)|blare|make noise|resound|noise +(verb)|smash|nail|boom|hit +(verb)|shell|bombard|bomb +blast furnace|1 +(noun)|furnace +blast off|1 +(verb)|launch +blast trauma|1 +(noun)|injury|hurt|harm|trauma +blast wave|1 +(noun)|shock wave|wave|undulation +blasted|2 +(adj)|desolate|desolated|devastated|ravaged|ruined|wasted|destroyed +(adj)|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +blastema|1 +(noun)|cell +blastemal|1 +(adj)|blastematic|blastemic|cell +blastematic|1 +(adj)|blastemal|blastemic|cell +blastemic|1 +(adj)|blastemal|blastematic|cell +blaster|1 +(noun)|chargeman|workman|working man|working person +blasting|2 +(adj)|ruinous|destructive +(adj)|blaring|loud +blasting cap|1 +(noun)|detonator|detonating device|cap +blasting gelatin|1 +(noun)|explosive mixture +blastocele|1 +(noun)|blastocoel|blastocoele|segmentation cavity|cleavage cavity|cavity|bodily cavity|cavum +blastocladia|1 +(noun)|Blastocladia|genus Blastocladia|fungus genus +blastocladiales|1 +(noun)|Blastocladiales|order Blastocladiales|fungus order +blastocoel|1 +(noun)|blastocoele|blastocele|segmentation cavity|cleavage cavity|cavity|bodily cavity|cavum +blastocoele|1 +(noun)|blastocoel|blastocele|segmentation cavity|cleavage cavity|cavity|bodily cavity|cavum +blastocoelic|1 +(adj)|cavity|bodily cavity|cavum +blastocyst|1 +(noun)|blastosphere|blastula|blastodermic vesicle +blastocyte|1 +(noun)|embryonic cell|formative cell +blastocytoma|1 +(noun)|blastoma|embryonal carcinosarcoma|tumor|tumour|neoplasm +blastoderm|1 +(noun)|germinal disc|blastodisc|germinal area|layer +blastodermatic|1 +(adj)|blastodermic|layer +blastodermic|1 +(adj)|blastodermatic|layer +blastodermic vesicle|1 +(noun)|blastula|embryo|conceptus|fertilized egg +blastodiaceae|1 +(noun)|Blastodiaceae|family Blastodiaceae|fungus family +blastodisc|1 +(noun)|blastoderm|germinal disc|germinal area|layer +blastoff|1 +(noun)|shot|rocket firing|rocket launching +blastogenesis|2 +(noun)|asexual reproduction|agamogenesis +(noun)|theory +blastogenetic|1 +(adj)|asexual reproduction|agamogenesis +blastoma|1 +(noun)|blastocytoma|embryonal carcinosarcoma|tumor|tumour|neoplasm +blastomere|1 +(noun)|cell +blastomeric|1 +(adj)|cell +blastomyces|1 +(noun)|Blastomyces|genus Blastomyces|fungus genus +blastomycete|1 +(noun)|fungus +blastomycosis|1 +(noun)|fungal infection|mycosis +blastomycotic|1 +(adj)|fungal infection|mycosis +blastoporal|1 +(adj)|blastoporic|orifice|opening|porta +blastopore|1 +(noun)|orifice|opening|porta +blastoporic|1 +(adj)|blastoporal|orifice|opening|porta +blastosphere|1 +(noun)|blastocyst|blastula|blastodermic vesicle +blastospheric|1 +(adj)|blastular|blastula|blastodermic vesicle +blastula|1 +(noun)|blastodermic vesicle|embryo|conceptus|fertilized egg +blastular|1 +(adj)|blastospheric|embryo|conceptus|fertilized egg +blat|1 +(verb)|bleat|blate|baa|utter|emit|let out|let loose +blat out|1 +(verb)|blare out|announce|denote +blatancy|1 +(noun)|obviousness|noticeability|noticeableness|patency|offensiveness|odiousness|distastefulness +blatant|2 +(adj)|blazing|conspicuous|open|unconcealed +(adj)|clamant|clamorous|strident|vociferous|noisy +blate|2 +(adj)|bashful|backward +(verb)|bleat|blat|baa|utter|emit|let out|let loose +blather|2 +(noun)|blatherskite|gibberish|gibber +(verb)|babble|smatter|blether|blither|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble +blathering|1 +(adj)|blithering|jabbering|babbling|voluble +blatherskite|1 +(noun)|blather|gibberish|gibber +blatta|1 +(noun)|Blatta|genus Blatta|arthropod genus +blatta orientalis|1 +(noun)|oriental cockroach|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach|roach +blattaria|1 +(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order +blattella|1 +(noun)|Blattella|genus Blattella|arthropod genus +blattella germanica|1 +(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach|roach +blattidae|1 +(noun)|Blattidae|family Blattidae|arthropod family +blattodea|1 +(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order +blaze|10 +(noun)|blazing|fire|flame|flaming +(noun)|hell|trouble +(noun)|hell|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan +(noun)|glare|brilliance|brightness +(noun)|marking +(verb)|shine|beam +(verb)|blaze away|shoot +(verb)|burn|combust|blaze up +(verb)|blaze out|depart|part|start|start out|set forth|set off|set out|take off +(verb)|mark +blaze away|3 +(verb)|perform|execute|do +(verb)|blaze|shoot +(verb)|address|speak +blaze out|1 +(verb)|blaze|depart|part|start|start out|set forth|set off|set out|take off +blaze up|1 +(verb)|flare|flame up|burn up|burn|combust +blazer|1 +(noun)|sport jacket|sport coat|sports jacket|sports coat|jacket +blazing|4 +(adj)|blinding|dazzling|fulgent|glaring|glary|bright +(adj)|ablaze|afire|aflame|aflare|alight|burning|flaming|on fire|lighted |lit +(adj)|blatant|conspicuous|open|unconcealed +(noun)|blaze|fire|flame|flaming +blazing star|2 +(noun)|Mentzelia livicaulis|Mentzelia laevicaulis|flower +(noun)|button snakeroot|gayfeather|gay-feather|snakeroot|wildflower|wild flower +blazon|2 +(noun)|coat of arms|arms|blazonry|heraldry +(verb)|emblazon|decorate|adorn|grace|ornament|embellish|beautify +blazon out|1 +(verb)|cry|announce|denote +blazonry|1 +(noun)|coat of arms|arms|blazon|heraldry +bleach|5 +(noun)|white|whiteness +(noun)|bleaching agent|blanching agent|whitener|agent +(noun)|whitening|lightening +(verb)|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +(verb)|whiten|white +bleach liquor|1 +(noun)|solution +bleach out|1 +(verb)|bleach|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +bleached|2 +(adj)|faded|washed-out|washy|colorless |colourless +(adj)|colored|coloured|dyed|artificial |unreal +bleacher|1 +(noun)|worker +bleachers|2 +(noun)|stand|stands +(noun)|bleacher|worker +bleaching agent|1 +(noun)|bleach|blanching agent|whitener|agent +bleaching clay|1 +(noun)|bleaching earth|mud|clay +bleaching earth|1 +(noun)|bleaching clay|mud|clay +bleaching powder|1 +(noun)|chlorinated lime|chloride of lime|bleaching agent|bleach|blanching agent|whitener +bleak|3 +(adj)|black|dim|hopeless +(adj)|bare|barren|desolate|stark|inhospitable +(adj)|cutting|raw|cold +bleakness|1 +(noun)|desolation|gloom|gloominess|glumness +blear|2 +(adj)|bleary|bleary-eyed|blear-eyed|tired +(verb)|blur|change|alter|modify +blear-eyed|1 +(adj)|bleary|blear|bleary-eyed|tired +bleary|2 +(adj)|blear|bleary-eyed|blear-eyed|tired +(adj)|blurred|blurry|foggy|fuzzy|hazy|muzzy|indistinct +bleary-eyed|1 +(adj)|bleary|blear|blear-eyed|tired +bleat|3 +(noun)|cry +(verb)|complain|kick|plain|sound off|quetch|kvetch +(verb)|blate|blat|baa|utter|emit|let out|let loose +bleb|1 +(noun)|blister|bulla|vesicle|cyst +blebbed|1 +(adj)|blebby|blemished +blebby|2 +(adj)|blistery|unhealthy +(adj)|blebbed|blemished +blechnaceae|1 +(noun)|Blechnaceae|family Blechnaceae|fern family +blechnum|1 +(noun)|Blechnum|genus Blechnum|fern genus +blechnum spicant|1 +(noun)|deer fern|Blechnum spicant|hard fern +bleed|5 +(verb)|shed blood|hemorrhage|discharge|expel|eject|release +(verb)|leech|phlebotomize|phlebotomise|treat|care for +(verb)|extort|squeeze|rack|gouge|wring +(verb)|run|diffuse|spread|spread out|fan out +(verb)|empty +bleeder|1 +(noun)|hemophiliac|haemophiliac|hemophile|haemophile|sick person|diseased person|sufferer +bleeder's disease|1 +(noun)|hemophilia|haemophilia|blood disease|blood disorder|sex-linked disorder +bleeding|1 +(noun)|hemorrhage|haemorrhage|injury|hurt|harm|trauma +bleeding heart|2 +(noun)|lyreflower|lyre-flower|Dicentra spectabilis|herb|herbaceous plant +(noun)|sympathizer|sympathiser|well-wisher +bleeding tooth|1 +(noun)|Nerita peloronta|neritid|neritid gastropod +bleep|2 +(noun)|beep|sound +(verb)|sound|go +blemish|4 +(noun)|defect|mar|appearance|visual aspect +(verb)|deface|disfigure|mar|impair|spoil|deflower|vitiate +(verb)|spot|dirty|soil|begrime|grime|colly|bemire +(verb)|flaw|damage +blemished|2 +(adj)|blemished |acned|pimpled|pimply|pustulate|besmirched|damaged|flyblown|spotted|stained|sullied|tainted|tarnished|marred|scarred|pocked|pockmarked|blebbed|blebby|blotchy|damaged|imperfect +(adj)|flawed|imperfect +blench|1 +(verb)|pale|blanch|discolor|discolour|colour|color +blend|6 +(noun)|mix|mixture +(noun)|portmanteau word|portmanteau|neologism|neology|coinage +(noun)|blending|combination|combining|compounding +(verb)|intermix|immingle|intermingle|mix|mingle|commix|unify|amalgamate +(verb)|go|blend in|harmonize|harmonise|consort|accord|concord|fit in|agree +(verb)|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity +blend in|2 +(verb)|blend|go|harmonize|harmonise|consort|accord|concord|fit in|agree +(verb)|mix in|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +blende|1 +(noun)|zinc blende|sphalerite|mineral +blended|1 +(adj)|blended |alloyed|amalgamated|intermingled|mixed|integrated|blending|merging|mingling|emulsified|homogenized|homogenised +blended whiskey|1 +(noun)|blended whisky|whiskey|whisky +blended whisky|1 +(noun)|blended whiskey|whiskey|whisky +blender|1 +(noun)|liquidizer|liquidiser|mixer +blending|3 +(adj)|merging|mingling|blended +(noun)|blend|combination|combining|compounding +(noun)|shading|gradation|graduation +blenheim|1 +(noun)|Blenheim|pitched battle +blenheim spaniel|1 +(noun)|Blenheim spaniel|English toy spaniel +blenniidae|1 +(noun)|Blenniidae|family Blenniidae|fish family +blennioid|1 +(noun)|blennioid fish|percoid fish|percoid|percoidean +blennioid fish|1 +(noun)|blennioid|percoid fish|percoid|percoidean +blennioidea|1 +(noun)|Blennioidea|suborder Blennioidea|animal order +blennius|1 +(noun)|Blennius|genus Blennius|fish genus +blennius pholis|1 +(noun)|shanny|Blennius pholis|blenny|combtooth blenny +blenny|1 +(noun)|combtooth blenny|blennioid fish|blennioid +blepharism|1 +(noun)|twitch|twitching|vellication +blepharitis|1 +(noun)|inflammation|redness|rubor +blepharospasm|1 +(noun)|spasm|cramp|muscle spasm +blephilia|1 +(noun)|Blephilia|genus Blephilia|asterid dicot genus +blephilia celiata|1 +(noun)|downy wood mint|Blephilia celiata|wood mint +blephilia hirsuta|1 +(noun)|hairy wood mint|Blephilia hirsuta|wood mint +bleriot|1 +(noun)|Bleriot|Louis Bleriot|aviator|aeronaut|airman|flier|flyer +bless|4 +(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(verb)|confer|bestow +(verb)|sign|gesticulate|gesture|motion +(verb)|consecrate|hallow|sanctify|declare +blessed|7 +(adj)|blessed |blest|favored|fortunate|golden|glorious +(adj)|Blessed|holy +(adj)|blasted|blame|blamed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +(adj)|beatified|holy +(adj)|saved +(adj)|happy +(adj)|blessed with|endued with|endowed +blessed event|1 +(noun)|happy event|live birth +blessed thistle|2 +(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|Silybum marianum|herb|herbaceous plant +(noun)|sweet sultan|Cnicus benedictus|thistle +blessed trinity|1 +(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah +blessed virgin|1 +(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess|mother|female parent +blessed with|1 +(adj)|blessed|endued with|endowed +blessedness|1 +(noun)|beatitude|beatification|happiness|felicity +blessing|5 +(noun)|approval|approving|support +(noun)|boon|good fortune|good luck +(noun)|grace|thanksgiving|prayer|petition|orison|thanks +(noun)|benediction|prayer|petition|orison +(noun)|benediction|prayer|supplication +blest|1 +(adj)|blessed |favored|fortunate|golden|glorious +blether|2 +(noun)|prate|prattle|idle talk|chin music|yak|yack|yakety-yak|chatter|cackle +(verb)|babble|blather|smatter|blither|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble +bletia|1 +(noun)|orchid|orchidaceous plant +bletia striata|1 +(noun)|Bletilla striata|Bletia striata|orchid|orchidaceous plant +bletilla|1 +(noun)|Bletilla|genus Bletilla|monocot genus|liliopsid genus +bletilla striata|1 +(noun)|Bletilla striata|Bletia striata|orchid|orchidaceous plant +bleu|1 +(noun)|blue cheese|cheese +bleu cheese dressing|1 +(noun)|blue cheese dressing|dressing|salad dressing +blewits|1 +(noun)|Clitocybe nuda|agaric +blida|1 +(noun)|Blida|city|metropolis|urban center +bligh|1 +(noun)|Bligh|William Bligh|Captain Bligh|admiral|full admiral +blighia|1 +(noun)|Blighia|genus Blighia|dicot genus|magnoliopsid genus +blighia sapida|1 +(noun)|akee|akee tree|Blighia sapida|fruit tree +blight|3 +(noun)|devastation|desolation +(noun)|plant disease +(verb)|plague|afflict|smite +blight canker|1 +(noun)|fire blight|pear blight +blighted|1 +(adj)|spoilt|destroyed +blighter|2 +(noun)|pest|cuss|pesterer|gadfly|tormentor|tormenter|persecutor +(noun)|chap|fellow|feller|lad|gent|fella|cuss|male|male person +blighty|1 +(noun)|Blighty|England +blighty wound|1 +(noun)|wound|injury|combat injury +blimp|2 +(noun)|Colonel Blimp|Blimp|reactionary|ultraconservative|extreme right-winger +(noun)|sausage balloon|sausage|airship|dirigible +blimpish|1 +(adj)|conservative +blind|9 +(adj)|blind |unsighted|blinded|blindfold|blindfolded|color-blind|colour-blind|deuteranopic|green-blind|dim-sighted|near-blind|purblind|sand-blind|visually impaired|visually challenged|eyeless|sightless|unseeing|protanopic|red-blind|snow-blind|snow-blinded|stone-blind|tritanopic|blue-blind|dazzled +(adj)|unperceptive |unperceiving +(adj)|unreasoning|irrational +(noun)|people +(noun)|screen|cover|covert|concealment +(noun)|screen|protective covering|protective cover|protection +(noun)|subterfuge|misrepresentation|deceit|deception +(verb)|change|alter|modify +(verb)|dim|darken +blind alley|2 +(noun)|cul de sac|dead-end street|impasse|thoroughfare +(noun)|course|course of action +blind bend|1 +(noun)|blind curve|bend|curve +blind corner|1 +(noun)|corner|street corner|turning point +blind curve|1 +(noun)|blind bend|bend|curve +blind date|2 +(noun)|date|escort +(noun)|date|appointment|engagement +blind drunk|1 +(adj)|besotted|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +blind eel|1 +(noun)|amphiuma|congo snake|congo eel|salamander +blind flying|1 +(noun)|blind landing|flight|flying +blind gentian|2 +(noun)|closed gentian|Gentiana clausa|gentian +(noun)|closed gentian|bottle gentian|Gentiana andrewsii|gentian +blind gut|1 +(noun)|cecum|caecum|cavity|bodily cavity|cavum +blind landing|1 +(noun)|blind flying|flight|flying +blind man|1 +(noun)|blind person|visually handicapped person +blind person|1 +(noun)|blind man|visually handicapped person +blind side|1 +(noun)|side +blind snake|1 +(noun)|worm snake|snake|serpent|ophidian +blind spot|2 +(noun)|topic|subject|issue|matter +(noun)|optic disc|optic disk|point +blind staggers|1 +(noun)|staggers|animal disease +blind stitching|1 +(noun)|sewing|stitching +blind trust|1 +(noun)|trust +blinded|1 +(adj)|blind |unsighted +blinder|1 +(noun)|winker|blinker|blind|screen +blindfold|3 +(adj)|blindfolded|blind |unsighted +(noun)|cloth covering +(verb)|cover +blindfolded|1 +(adj)|blindfold|blind |unsighted +blinding|1 +(adj)|blazing|dazzling|fulgent|glaring|glary|bright +blindman's bluff|1 +(noun)|blindman's buff|child's game +blindman's buff|1 +(noun)|blindman's bluff|child's game +blindness|1 +(noun)|sightlessness|cecity|visual impairment|visual defect|vision defect|visual disorder +blindside|2 +(verb)|surprise +(verb)|assail|assault|set on|attack +blindworm|2 +(noun)|slowworm|Anguis fragilis|anguid lizard +(noun)|caecilian|amphibian +blini|1 +(noun)|bliny|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +blink|4 +(noun)|eye blink|blinking|wink|winking|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|wink|nictitate|nictate|act involuntarily|act reflexively +(verb)|wink|blink away|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|flash|wink|twinkle|winkle|radiate +blink away|1 +(verb)|wink|blink|suppress|stamp down|inhibit|subdue|conquer|curb +blink of an eye|1 +(noun)|flash|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +blinker|4 +(noun)|flasher|light|light source +(noun)|turn signal|turn indicator|trafficator|visual signal +(noun)|winker|blinder|blind|screen +(verb)|cover +blinking|4 +(adj)|bright +(adj)|winking|closed |shut +(adj)|bally|bloody|blooming|crashing|flaming|fucking|unmitigated +(noun)|blink|eye blink|wink|winking|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +blinking chickweed|1 +(noun)|blinks|water chickweed|Montia lamprosperma|Indian lettuce +blinks|2 +(noun)|blinking chickweed|water chickweed|Montia lamprosperma|Indian lettuce +(noun)|blink|eye blink|blinking|wink|winking|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +blintz|1 +(noun)|blintze|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +blintze|1 +(noun)|blintz|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +bliny|1 +(noun)|blini|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +blip|2 +(noun)|shock|blow +(noun)|pip|radar target|radar echo +bliss|1 +(noun)|blissfulness|cloud nine|seventh heaven|walking on air|elation +blissful|1 +(adj)|happy +blissfulness|1 +(noun)|bliss|cloud nine|seventh heaven|walking on air|elation +blissus|1 +(noun)|Blissus|genus Blissus|arthropod genus +blissus leucopterus|1 +(noun)|chinch bug|Blissus leucopterus|lygaeid|lygaeid bug +blister|4 +(noun)|bulla|bleb|vesicle|cyst +(verb)|vesicate|swell|swell up|intumesce|tumefy|tumesce +(verb)|scald|whip|attack|round|assail|lash out|snipe|assault +(verb)|change|alter|modify +blister beetle|1 +(noun)|meloid|beetle +blister blight|2 +(noun)|blight +(noun)|blight +blister copper|1 +(noun)|copper|Cu|atomic number 29 +blister pack|1 +(noun)|bubble pack|packing material|packing|wadding +blister rust|2 +(noun)|white-pine rust|white pine blister rust|rust +(noun)|Cronartium ribicola|rust|rust fungus +blistered|1 +(adj)|injured +blistering|5 +(adj)|acerb|acerbic|acid|acrid|bitter|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +(adj)|blistery|hot +(adj)|hot|red-hot|fast +(adj)|scathing|scalding|vituperative|critical +(noun)|vesiculation|vesication|organic process|biological process +blistering agent|1 +(noun)|mustard gas|mustard agent|dichloroethyl sulfide|sulfur mustard|poison gas +blistery|2 +(adj)|blistering|hot +(adj)|blebby|unhealthy +blithe|2 +(adj)|unconcerned +(adj)|blithesome|lighthearted|lightsome|cheerful +blithely|1 +(adv)|happily|merrily|mirthfully|gayly|jubilantly|with happiness +blitheness|1 +(noun)|cheerfulness|happiness +blither|1 +(verb)|babble|blather|smatter|blether|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble +blithering|1 +(adj)|blathering|jabbering|babbling|voluble +blithesome|1 +(adj)|blithe|lighthearted|lightsome|cheerful +blitt|1 +(noun)|Bachelor of Literature|BLitt|bachelor's degree|baccalaureate +blitz|3 +(noun)|safety blitz|linebacker blitzing|maneuver|manoeuvre|play +(noun)|attack|onslaught|onset|onrush +(verb)|attack|assail +blitzkrieg|1 +(verb)|war +blitzstein|1 +(noun)|Blitzstein|Marc Blitzstein|pianist|piano player|composer +blixen|1 +(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer|author +blizzard|2 +(noun)|snowstorm|storm|violent storm +(noun)|rash|series +bloat|3 +(noun)|swelling|puffiness|lump +(verb)|swell|swell up|intumesce|tumefy|tumesce +(verb)|swell +bloated|1 +(adj)|distended|puffed|puffy|swollen|tumescent|tumid|turgid|unhealthy +bloater|1 +(noun)|herring +blob|2 +(noun)|amorphous shape +(verb)|spot|fleck|blot|change surface +bloc|1 +(noun)|axis|alliance|coalition|alignment|alinement +blocadren|1 +(noun)|timolol|Blocadren|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +bloch|1 +(noun)|Bloch|Ernest Bloch|composer +block|28 +(noun)|artifact|artefact +(noun)|city block|area|country +(noun)|cube|solid +(noun)|collection|aggregation|accumulation|assemblage +(noun)|housing|lodging|living accommodations +(noun)|computer memory unit +(noun)|mental block|inability +(noun)|pulley|pulley-block|machine|simple machine +(noun)|engine block|cylinder block|cast|casting +(noun)|blockage|closure|occlusion|stop|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|auction block|platform +(noun)|blocking|interference|obstruction +(verb)|barricade|blockade|stop|block off|block up|bar|obstruct|obturate|impede|occlude|jam|close up +(verb)|obstruct|blockade|hinder|stymie|stymy|embarrass|prevent|forestall|foreclose|preclude|forbid +(verb)|stop|halt|kibosh|prevent|forestall|foreclose|preclude|forbid +(verb)|jam|interrupt|disrupt|break up|cut off +(verb)|operate|run +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +(verb)|obstruct|hide|conceal +(verb)|emboss|boss|stamp +(verb)|stuff|lug|choke up|clog|choke off|clog up|back up|congest|choke|foul +(verb)|obstruct|obturate|impede|occlude|jam|close up|impede|hinder +(verb)|hold|support|sustain|hold up +(verb)|parry|deflect|fence +(verb)|forget|blank out|draw a blank +(verb)|shape|form +(verb)|shape|form +(verb)|freeze|immobilize|immobilise|withhold|keep back +block anaesthesia|1 +(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|anesthesia|anaesthesia +block and tackle|1 +(noun)|hoist +block anesthesia|1 +(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anaesthesia|anesthesia|anaesthesia +block capital|1 +(noun)|block letter|letter|letter of the alphabet|alphabetic character +block diagram|1 +(noun)|diagram +block grant|1 +(noun)|grant|subsidization|subsidisation +block letter|1 +(noun)|block capital|letter|letter of the alphabet|alphabetic character +block of metal|1 +(noun)|ingot|metal bar|block +block off|3 +(verb)|blockade|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|barricade|block|blockade|stop|block up|bar|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|shut off|close off|barricade|block|blockade|stop|block up|bar +block out|4 +(verb)|lay out +(verb)|screen|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|mask|cover +(verb)|sketch|outline|adumbrate +block plane|1 +(noun)|plane|carpenter's plane|woodworking plane +block up|1 +(verb)|barricade|block|blockade|stop|block off|bar|obstruct|obturate|impede|occlude|jam|block|close up +block vote|1 +(noun)|vote|ballot|voting|balloting +blockade|6 +(noun)|encirclement|military action|action +(noun)|obstruction|obstructor|obstructer|impediment|impedimenta +(verb)|obstruct|block|hinder|stymie|stymy|embarrass|prevent|forestall|foreclose|preclude|forbid +(verb)|barricade|block|stop|block off|block up|bar|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|block off|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|seal off|besiege|beleaguer|surround|hem in|circumvent +blockade-runner|1 +(noun)|ship +blockaded|1 +(adj)|barricaded|barred|obstructed +blockading|1 +(adj)|preventive |preventative +blockage|3 +(noun)|obstruction|physiological state|physiological condition +(noun)|block|closure|occlusion|stop|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|closure|occlusion|obstruction +blockbuster|2 +(noun)|general-purpose bomb|GP bomb +(noun)|megahit|smash hit|hit|smash|smasher|strike|bang +blocked|2 +(adj)|out of use|closed +(adj)|plugged|obstructed +blocker|2 +(noun)|football player|footballer +(noun)|blocking agent|medicine|medication|medicament|medicinal drug|agent +blockhead|1 +(noun)|dunce|dunderhead|numskull|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +blockheaded|1 +(adj)|boneheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid +blockhouse|1 +(noun)|stronghold|fastness +blocking|1 +(noun)|block|interference|obstruction +blocking agent|1 +(noun)|blocker|medicine|medication|medicament|medicinal drug|agent +blockish|1 +(adj)|blocky|cubic |three-dimensional +blocky|1 +(adj)|blockish|cubic |three-dimensional +bloemfontein|1 +(noun)|Bloemfontein|city|metropolis|urban center +blog|1 +(noun)|web log|diary|journal +blok|1 +(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet +bloke|1 +(noun)|geezer|man|adult male +blolly|1 +(noun)|West Indian snowberry|Chiococca alba|shrub|bush +blond|2 +(adj)|blond |blonde|light-haired|ash-blonde|platinum-blonde|towheaded|fair|fairish|flaxen|sandy|nordic|redheaded +(noun)|blonde|person|individual|someone|somebody|mortal|human|soul +blonde|2 +(adj)|blond |light-haired|ash-blonde|platinum-blonde|towheaded|fair|fairish|flaxen|sandy|nordic|redheaded +(noun)|blond|person|individual|someone|somebody|mortal|human|soul +blonde lilian|1 +(noun)|white dogtooth violet|white dog's-tooth violet|Erythronium albidum|dogtooth violet|dogtooth|dog's-tooth violet +blondness|1 +(noun)|paleness|fairness|complexion|skin color|skin colour +blood|7 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +(noun)|lineage|line|line of descent|descent|bloodline|blood line|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|bloodshed|gore|murder|slaying|execution +(noun)|disposition|temperament +(noun)|rake|profligate|rip|roue|libertine|debauchee|rounder +(noun)|people +(verb)|daub|smear +blood-and-guts|1 +(adj)|intense +blood-brain barrier|1 +(noun)|barrier +blood-filled|1 +(adj)|bloody +blood-red|1 +(adj)|red|reddish|ruddy|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +blood-related|1 +(adj)|akin|cognate|consanguine|consanguineous|kin|related +blood-twig|1 +(noun)|common European dogwood|red dogwood|pedwood|Cornus sanguinea|dogwood|dogwood tree|cornel +blood agar|1 +(noun)|agar|nutrient agar +blood bank|1 +(noun)|bank +blood berry|2 +(noun)|bloodberry|rougeberry|rouge plant|Rivina humilis|houseplant +(noun)| +blood blister|1 +(noun)|blister|bulla|bleb +blood brother|2 +(noun)|brother|male sibling +(noun)|ally|friend +blood brotherhood|1 +(noun)|friendship|friendly relationship +blood cell|1 +(noun)|blood corpuscle|corpuscle|somatic cell|vegetative cell +blood clam|1 +(noun)|bivalve|pelecypod|lamellibranch +blood clot|1 +(noun)|grume|blood +blood clotting|1 +(noun)|blood coagulation|curdling|clotting|coagulation +blood coagulation|1 +(noun)|blood clotting|curdling|clotting|coagulation +blood corpuscle|1 +(noun)|blood cell|corpuscle|somatic cell|vegetative cell +blood count|2 +(noun)|count +(noun)|count|counting|numeration|enumeration|reckoning|tally +blood cup|1 +(noun)|fairy cup|Peziza coccinea|discomycete|cup fungus +blood cyst|1 +(noun)|hemorrhagic cyst|hematocyst|cyst +blood disease|1 +(noun)|blood disorder|blood dyscrasia +blood disorder|1 +(noun)|blood disease|blood dyscrasia +blood donor|1 +(noun)|donor +blood dyscrasia|1 +(noun)|dyscrasia +blood extravasation|1 +(noun)|bleeding|hemorrhage|haemorrhage|extravasation +blood feud|1 +(noun)|vendetta|feud +blood flower|1 +(noun)|swallowwort|Asclepias curassavica|milkweed|silkweed +blood fluke|1 +(noun)|schistosome|fluke|trematode|trematode worm +blood glucose|1 +(noun)|blood sugar|glucose +blood group|1 +(noun)|blood type|people +blood heat|1 +(noun)|body temperature|vital sign|temperature +blood kinship|1 +(noun)|consanguinity|cognation|kinship|family relationship|relationship +blood knot|1 +(noun)|barrel knot|knot +blood lily|1 +(noun)|bulbous plant +blood line|2 +(noun)|lineage|line|line of descent|descent|bloodline|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|pedigree|bloodline|ancestry|lineage|derivation|filiation +blood meal|1 +(noun)|feed|provender +blood money|3 +(noun)|compensation +(noun)|reward +(noun)|payment +blood plasma|1 +(noun)|plasma|plasm +blood platelet|1 +(noun)|platelet|thrombocyte|protoplasm|living substance +blood poisoning|1 +(noun)|septicemia|septicaemia|sepsis|blood disease|blood disorder +blood pressure|1 +(noun)|vital sign|pressure|pressure level|force per unit area +blood profile|1 +(noun)|complete blood count|CBC|blood count +blood pudding|1 +(noun)|blood sausage|black pudding|sausage +blood relation|1 +(noun)|blood relative|cognate|sib|relative|relation +blood relative|1 +(noun)|blood relation|cognate|sib|relative|relation +blood sausage|1 +(noun)|blood pudding|black pudding|sausage +blood serum|1 +(noun)|serum|liquid body substance|bodily fluid|body fluid|humor|humour +blood spavin|1 +(noun)|spavin +blood sport|1 +(noun)|sport|athletics +blood sugar|1 +(noun)|blood glucose|glucose +blood test|1 +(noun)|biopsy +blood transfusion|1 +(noun)|transfusion|insertion|introduction|intromission +blood type|1 +(noun)|blood group|people +blood typing|1 +(noun)|diagnosis|diagnosing +blood vessel|1 +(noun)|vessel|vas +bloodbath|1 +(noun)|bloodletting|bloodshed|battue|slaughter|massacre|mass murder|carnage|butchery +bloodberry|1 +(noun)|blood berry|rougeberry|rouge plant|Rivina humilis|houseplant +bloodcurdling|1 +(adj)|hair-raising|nightmarish|alarming +blooded|1 +(adj)|full-blooded|full-blood|purebred +bloodguilt|1 +(noun)|guilt|guiltiness +bloodguilty|1 +(adj)|guilty +bloodhound|1 +(noun)|sleuthhound|hound|hound dog +bloodied|1 +(adj)|bloody +bloodleaf|1 +(noun)|subshrub|suffrutex +bloodless|5 +(adj)|exsanguine|exsanguinous|dead +(adj)|bloodless |unbloodied|nonviolent|unbloody +(adj)|spiritless +(adj)|nonhuman +(adj)|ashen|blanched|livid|white|colorless |colourless +bloodless revolution|1 +(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution +bloodlessly|1 +(adv)|without bloodshed +bloodletting|2 +(noun)|medical care|medical aid +(noun)|bloodbath|bloodshed|battue|slaughter|massacre|mass murder|carnage|butchery +bloodline|2 +(noun)|lineage|line|line of descent|descent|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|pedigree|ancestry|lineage|derivation|filiation +bloodlust|1 +(noun)|desire +bloodmobile|1 +(noun)|motor vehicle|automotive vehicle +bloodroot|1 +(noun)|puccoon|redroot|tetterwort|Sanguinaria canadensis|herb|herbaceous plant +bloodshed|2 +(noun)|blood|gore|murder|slaying|execution +(noun)|bloodbath|bloodletting|battue|slaughter|massacre|mass murder|carnage|butchery +bloodshot|1 +(adj)|unhealthy +bloodstain|1 +(noun)|stain|discoloration|discolouration +bloodstained|1 +(adj)|gory|bloody +bloodstock|1 +(noun)|breed|strain|stock +bloodstone|1 +(noun)|heliotrope|chalcedony|calcedony +bloodstream|1 +(noun)|blood +bloodsucker|1 +(noun)|leech|hirudinean|annelid|annelid worm|segmented worm +bloodsucking|2 +(adj)|bloody +(adj)|parasitic|parasitical|leechlike|dependent +bloodthirstiness|1 +(noun)|murderousness|cruelty|cruelness|harshness +bloodthirsty|1 +(adj)|bloody-minded|sanguinary|bloody +bloodwood tree|2 +(noun)|kiaat|Pterocarpus angolensis|tree +(noun)|logwood|logwood tree|campeachy|Haematoxylum campechianum|blackwood|blackwood tree +bloodworm|1 +(noun)|polychaete|polychete|polychaete worm|polychete worm +bloodwort|1 +(noun)|herb|herbaceous plant +bloodwort family|1 +(noun)|Haemodoraceae|family Haemodoraceae|monocot family|liliopsid family +bloody|4 +(adj)|bloody |blood-filled|bloodied|bloodstained|gory|bloodsucking|bloodthirsty|bloody-minded|sanguinary|gory|sanguinary|sanguineous|slaughterous|butcherly|internecine|mutually ruinous|red|crimson|red|violent|cutthroat|homicidal|murderous|merciless|unmerciful +(adj)|bally|blinking|blooming|crashing|flaming|fucking|unmitigated +(verb)|cover|spread over +(adv)|damn|all-fired +bloody-minded|2 +(adj)|cantankerous|stubborn +(adj)|bloodthirsty|sanguinary|bloody +bloody mary|2 +(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England +(noun)|Bloody Mary|cocktail +bloody shame|1 +(noun)|Virgin Mary|Bloody Mary +bloom|7 +(noun)|blooming|organic process|biological process +(noun)|flower|blossom|reproductive structure +(noun)|bloom of youth|salad days|time of life +(noun)|blush|flush|rosiness|good health|healthiness +(noun)|flower|prime|peak|heyday|blossom|efflorescence|flush|time period|period of time|period +(noun)|efflorescence|crystallization|crystallisation|crystallizing +(verb)|blossom|flower|develop +bloom of youth|1 +(noun)|bloom|salad days|time of life +bloomer|2 +(noun)|flower +(noun)|blunder|blooper|bungle|foul-up|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +bloomeria|1 +(noun)|Bloomeria|genus Bloomeria|liliid monocot genus +bloomeria crocea|1 +(noun)|golden star|golden stars|Bloomeria crocea|liliaceous plant +bloomers|3 +(noun)|pants|drawers|knickers|underpants +(noun)|bloomer|flower +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +bloomfield|1 +(noun)|Bloomfield|Leonard Bloomfield|linguist|linguistic scientist +blooming|2 +(adj)|bally|blinking|bloody|crashing|flaming|fucking|unmitigated +(noun)|bloom|organic process|biological process +blooming-fool begonia|1 +(noun)|Christmas begonia|Begonia cheimantha|begonia +bloomington|1 +(noun)|Bloomington|town +bloomsbury|1 +(noun)|Bloomsbury|city district +bloomsbury group|1 +(noun)|Bloomsbury Group|clique|coterie|ingroup|inner circle|pack|camp +blooper|1 +(noun)|blunder|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +blossom|4 +(noun)|flower|bloom|reproductive structure +(noun)|flower|prime|peak|heyday|bloom|efflorescence|flush|time period|period of time|period +(verb)|bloom|flower|develop +(verb)|blossom out|blossom forth|unfold|develop +blossom forth|1 +(verb)|blossom|blossom out|unfold|develop +blossom out|1 +(verb)|blossom|blossom forth|unfold|develop +blossoming|1 +(noun)|flowering|florescence|inflorescence|anthesis|efflorescence|growth|growing|maturation|development|ontogeny|ontogenesis +blot|4 +(noun)|smudge|spot|daub|smear|smirch|slur|blemish|defect|mar +(noun)|smear|smirch|spot|stain|mistake|error|fault +(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +(verb)|spot|fleck|blob|change surface +blot out|1 +(verb)|obscure|obliterate|veil|hide|change|alter|modify +blotch|2 +(noun)|splodge|splotch|smudge|spot|blot|daub|smear|smirch|slur +(verb)|mottle|streak|color|colorize|colorise|colourise|colourize|colour|color in|colour in +blotched|1 +(adj)|blotchy|splotched|patterned +blotchy|2 +(adj)|blotched|splotched|patterned +(adj)|blemished +blotted out|1 +(adj)|obliterate|obliterated|destroyed +blotter|2 +(noun)|blotting paper|paper +(noun)|day book|police blotter|rap sheet|charge sheet|written record|written account +blotting paper|1 +(noun)|blotter|paper +blotto|1 +(adj)|besotted|blind drunk|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +blouse|1 +(noun)|top +bloviate|1 +(verb)|orate +blow|28 +(noun)|stroke +(noun)|bump|impact +(noun)|reverse|reversal|setback|black eye|happening|occurrence|natural event +(noun)|shock|surprise +(noun)|gust|blast|wind|air current|current of air +(noun)|coke|nose candy|snow|C|cocaine|cocain +(noun)|puff|exhalation|expiration|breathing out +(verb)|exhale|expire|breathe out +(verb)|discharge|expel|eject|release +(verb)|float|drift|be adrift|travel|go|move|locomote +(verb)|sound|go +(verb)|shape|form +(verb)|botch|bumble|fumble|botch up|muff|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|waste|squander|use|expend +(verb)|spend|expend|drop +(verb)|sound|go +(verb)|sound +(verb)|fellate|go down on|stimulate|excite|stir +(verb)|send|direct +(verb)|move|displace +(verb)|spurt|spirt|gush|spout +(verb)|shove off|shove along|go|go away|depart +(verb)|lay|put down|repose +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|boast|tout|swash|shoot a line|brag|gas|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|rest +(verb)|blow out|burn out|fail|go bad|give way|die|give out|conk out|go|break|break down +(verb)|burst|split|break open +blow-by-blow|1 +(adj)|careful +blow-dry|1 +(verb)|dry|dry out +blow a fuse|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|go ballistic|rage +blow drier|1 +(noun)|hand blower|blow dryer|hair dryer|hair drier|blower|dryer|drier +blow dryer|1 +(noun)|hand blower|blow drier|hair dryer|hair drier|blower|dryer|drier +blow fly|2 +(noun)|blowfly|fly +(noun)| +blow gas|1 +(noun)|blowing gas|gas +blow off|1 +(verb)|detach|come off|come away +blow one's stack|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +blow out|3 +(verb)|burn out|blow|fail|go bad|give way|die|give out|conk out|go|break|break down +(verb)|snuff out|extinguish|quench +(verb)|erupt|ignite|catch fire|take fire|combust|conflagrate +blow out of the water|1 +(verb)|shock|stun|floor|ball over|take aback|surprise +blow over|1 +(verb)|evanesce|fade|pass off|fleet|pass|disappear|vanish|go away +blow tube|3 +(noun)|blowtube|blowpipe|tube|tubing +(noun)|blowgun|blowpipe|blowtube|tube|tubing +(noun)| +blow up|7 +(verb)|explode|detonate|set off|change integrity +(verb)|enlarge|magnify|increase +(verb)|flip one's lid|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|inflate|expand|amplify|increase +(verb)|inflate|expand +(verb)|puff|puff up|puff out|swell|swell up|intumesce|tumefy|tumesce +blowback|2 +(noun)|explosion|detonation|blowup +(noun)|misinformation +blowball|1 +(noun)|dandelion|herb|herbaceous plant +blower|4 +(noun)|device +(noun)|electric fan|fan +(noun)|bellows|mechanical device +(noun)|cetacean|cetacean mammal|aquatic mammal +blowfish|2 +(noun)|sea squab|puffer|saltwater fish +(noun)|puffer|globefish|plectognath|plectognath fish +blowfly|1 +(noun)|blow fly|fly +blowgun|1 +(noun)|blowpipe|blowtube|blow tube|tube|tubing +blowhard|1 +(noun)|bragger|braggart|boaster|line-shooter|vaunter|egotist|egoist|swellhead +blowhole|2 +(noun)|spiracle +(noun)|vent|venthole|vent-hole|hole +blowing|1 +(noun)|processing +blowing gas|1 +(noun)|blow gas|gas +blowing up|1 +(noun)|berating|rebuke|reproof|reproval|reprehension|reprimand +blowjob|1 +(noun)|cock sucking|fellatio|fellation +blowlamp|1 +(noun)|blowtorch|torch|burner +blown|3 +(adj)|moving +(adj)|formed +(adj)|gasping|out of breath|panting|pursy|short-winded|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +blown-up|3 +(adj)|blown up|inflated +(adj)|enlarged|large +(adj)| +blown up|2 +(adj)|blown-up|inflated +(adj)|blown-up|enlarged|large +blowout|3 +(noun)|runaway|romp|laugher|shoo-in|walkaway|victory|triumph +(noun)|malfunction +(noun)|gala|gala affair|jamboree|celebration|festivity +blowpipe|2 +(noun)|blowtube|blow tube|tube|tubing +(noun)|blowgun|blowtube|blow tube|tube|tubing +blowsy|1 +(adj)|blowzy|slatternly|sluttish|untidy +blowtorch|1 +(noun)|torch|blowlamp|burner +blowtube|2 +(noun)|blow tube|blowpipe|tube|tubing +(noun)|blowgun|blowpipe|blow tube|tube|tubing +blowup|3 +(noun)|explosion|detonation|discharge +(noun)|effusion|gush|outburst|ebullition|expression|manifestation|reflection|reflexion +(noun)|enlargement|magnification|photograph|photo|exposure|pic +blowy|1 +(adj)|breezy|windy|stormy +blowzy|1 +(adj)|blowsy|slatternly|sluttish|untidy +blt|1 +(noun)|bacon-lettuce-tomato sandwich|BLT|sandwich +blu-82|1 +(noun)|Big Blue|BLU-82|fragmentation bomb|antipersonnel bomb|anti-personnel bomb|daisy cutter +blub|1 +(verb)|snivel|sniffle|blubber|snuffle|cry|weep +blubber|4 +(noun)|animal oil +(noun)|fatness|fat|avoirdupois|bodily property +(verb)|snivel|sniffle|blub|snuffle|cry|weep +(verb)|blubber out|talk|speak|utter|mouth|verbalize|verbalise +blubber out|1 +(verb)|blubber|talk|speak|utter|mouth|verbalize|verbalise +blubberer|1 +(noun)|weeper|crier +blubbery|1 +(adj)|fat +blucher|1 +(noun)|bluchers|shoe +bluchers|2 +(noun)|blucher|shoe +(noun)|blucher|shoe +bludgeon|3 +(noun)|club +(verb)|coerce|hale|squeeze|pressure|force +(verb)|club|hit +bludgeoner|1 +(noun)|attacker|aggressor|assailant|assaulter +blue|16 +(adj)|bluish|blueish|light-blue|dark-blue|blue-black|chromatic +(adj)|northern +(adj)|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected +(adj)|blasphemous|profane|dirty +(adj)|gamy|gamey|juicy|naughty|racy|risque|spicy|sexy +(adj)|aristocratic|aristocratical|blue-blooded|gentle|patrician|noble +(adj)|puritan|puritanic|puritanical|nonindulgent +(adj)|dark|depressing|disconsolate|dismal|dispiriting|gloomy|grim|cheerless |uncheerful +(noun)|blueness|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|clothing|article of clothing|vesture|wear +(noun)|organization|organisation +(noun)|blue sky|blue air|wild blue yonder|sky +(noun)|bluing|blueing|dye|dyestuff +(noun)|amobarbital sodium|blue angel|blue devil|Amytal|amobarbital +(noun)|lycaenid|lycaenid butterfly +(verb)|discolor|discolour|colour|color +blue-belly|1 +(noun)|western fence lizard|swift|Sceloporus occidentalis|fence lizard +blue-black|1 +(adj)|blue|bluish|blueish|light-blue|dark-blue|chromatic +blue-blind|1 +(adj)|tritanopic|blind |unsighted +blue-blindness|1 +(noun)|tritanopia|yellow-blue dichromacy|yellow-blue color blindness +blue-blooded|1 +(adj)|aristocratic|aristocratical|blue|gentle|patrician|noble +blue-chip|1 +(adj)|valuable +blue-chip stock|1 +(noun)|blue chip|common stock|common shares|ordinary shares +blue-collar|2 +(adj)|blue-collar |industrial|manual|wage-earning|working-class|unskilled +(adj)|propertyless|wage-earning|working-class|lower-class |low-class +blue-eyed|2 +(adj)|fair-haired|white-haired|loved +(adj)|eyed +blue-eyed african daisy|1 +(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower +blue-eyed grass|1 +(noun)|iridaceous plant +blue-eyed mary|1 +(noun)|blue-eyed Mary|Collinsia verna|wildflower|wild flower +blue-green|2 +(adj)|bluish green|cyan|teal|chromatic +(noun)|bluish green|teal|green|greenness|viridity +blue-green algae|1 +(noun)|cyanobacteria|eubacteria|eubacterium|true bacteria +blue-headed vireo|1 +(noun)|Vireo solitarius solitarius|vireo +blue-pencil|1 +(verb)|edit|delete|censor +blue-ribbon|1 +(adj)|select|superior +blue-winged teal|1 +(noun)|bluewing|Anas discors|teal +blue african lily|1 +(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus|lily of the Nile +blue air|1 +(noun)|blue sky|blue|wild blue yonder|sky +blue angel|1 +(noun)|amobarbital sodium|blue|blue devil|Amytal|amobarbital +blue ash|1 +(noun)|Fraxinus quadrangulata|ash|ash tree +blue baby|1 +(noun)|baby|babe|infant +blue blood|1 +(noun)|aristocrat|patrician|leader +blue book|3 +(noun)|report|study|written report +(noun)|directory +(noun)|booklet|brochure|folder|leaflet|pamphlet +blue bugle|1 +(noun)|erect bugle|Ajuga genevensis|bugle|bugleweed +blue bull|1 +(noun)|nilgai|nylghai|nylghau|Boselaphus tragocamelus|antelope +blue cardinal flower|1 +(noun)|great lobelia|Lobelia siphilitica|lobelia +blue cat|1 +(noun)|blue catfish|blue channel catfish|blue channel cat|channel catfish|channel cat|Ictalurus punctatus +blue catfish|1 +(noun)|blue cat|blue channel catfish|blue channel cat|channel catfish|channel cat|Ictalurus punctatus +blue channel cat|1 +(noun)|blue catfish|blue cat|blue channel catfish|channel catfish|channel cat|Ictalurus punctatus +blue channel catfish|1 +(noun)|blue catfish|blue cat|blue channel cat|channel catfish|channel cat|Ictalurus punctatus +blue cheese|1 +(noun)|bleu|cheese +blue cheese dressing|2 +(noun)|Roquefort dressing|dressing|salad dressing +(noun)|bleu cheese dressing|dressing|salad dressing +blue chip|2 +(noun)|blue-chip stock|common stock|common shares|ordinary shares +(noun)|chip|poker chip +blue cohosh|1 +(noun)|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +blue columbine|1 +(noun)|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine|aquilegia|aquilege +blue copperas|1 +(noun)|blue vitriol|blue stone|chalcanthite|copper sulfate|copper sulphate|cupric sulfate|cupric sulphate +blue crab|2 +(noun)|crab|crabmeat +(noun)|Callinectes sapidus|swimming crab +blue curls|1 +(noun)|subshrub|suffrutex +blue daisy|1 +(noun)|blue marguerite|Felicia amelloides|flower +blue darter|1 +(noun)|Cooper's hawk|Accipiter cooperii|hawk +blue devil|2 +(noun)|blueweed|blue thistle|viper's bugloss|Echium vulgare|herb|herbaceous plant +(noun)|amobarbital sodium|blue|blue angel|Amytal|amobarbital +blue devils|3 +(noun)|blues|megrims|vapors|vapours|depression +(noun)|blueweed|blue devil|blue thistle|viper's bugloss|Echium vulgare|herb|herbaceous plant +(noun)|amobarbital sodium|blue|blue angel|blue devil|Amytal|amobarbital +blue elder|1 +(noun)|blue elderberry|Sambucus caerulea|elder|elderberry bush +blue elderberry|1 +(noun)|blue elder|Sambucus caerulea|elder|elderberry bush +blue false indigo|1 +(noun)|Baptisia australis|wild indigo|false indigo +blue fig|2 +(noun)|quandong|fruit +(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|Elaeocarpus grandis|tree +blue flag|1 +(noun)|Iris versicolor|iris|flag|fleur-de-lis|sword lily +blue fleabane|1 +(noun)|Erigeron acer|fleabane +blue fox|1 +(noun)|arctic fox|white fox|Alopex lagopus +blue funk|1 +(noun)|funk|depression +blue goose|1 +(noun)|Chen caerulescens|goose +blue grama|1 +(noun)|Bouteloua gracilis|grama|grama grass|gramma|gramma grass +blue grass|3 +(noun)|bluegrass|grass +(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area|geographic area|geographical region|geographic region +(noun)|bluegrass|country music|country and western|C and W +blue gum|1 +(noun)|fever tree|Eucalyptus globulus|eucalyptus|eucalypt|eucalyptus tree +blue jack|1 +(noun)|coho|cohoe|coho salmon|silver salmon|Onchorynchus kisutch|salmon +blue jasmine|1 +(noun)|blue jessamine|curly clematis|marsh clematis|Clematis crispa|clematis +blue jay|1 +(noun)|jaybird|Cyanocitta cristata|New World jay +blue jean|1 +(noun)|jean|denim|trousers|pants +blue jessamine|1 +(noun)|blue jasmine|curly clematis|marsh clematis|Clematis crispa|clematis +blue jets|1 +(noun)|jets|atmospheric electricity +blue joke|1 +(noun)|dirty joke|dirty story|blue story|joke|gag|laugh|jest|jape +blue law|1 +(noun)|law +blue lotus|2 +(noun)|Nymphaea stellata|water lily +(noun)|Nymphaea caerulea|water lily +blue mahoe|1 +(noun)|Cuban bast|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus +blue marguerite|1 +(noun)|blue daisy|Felicia amelloides|flower +blue marlin|1 +(noun)|Makaira nigricans|marlin|spearfish +blue mockingbird|1 +(noun)|Melanotis caerulescens|oscine|oscine bird +blue mold fungus|1 +(noun)|Peronospora tabacina|downy mildew|false mildew +blue moon|1 +(noun)|long time|age|years +blue mountain tea|1 +(noun)|Blue Mountain tea|sweet goldenrod|Solidago odora|goldenrod +blue murder|1 +(noun)|cry|outcry|call|yell|shout|vociferation +blue nile|1 +(noun)|Blue Nile|headstream +blue note|1 +(noun)|note|musical note|tone +blue orchid|1 +(noun)|Vanda coerulea|vanda +blue pea|1 +(noun)|butterfly pea|Clitoria turnatea|vine +blue peafowl|1 +(noun)|Pavo cristatus|peafowl|bird of Juno +blue peter|1 +(noun)|code flag|nautical signal flag +blue pickerel|1 +(noun)|blue pike|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye|walleyed pike|jack salmon|Stizostedion vitreum +blue pike|1 +(noun)|blue pickerel|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye|walleyed pike|jack salmon|Stizostedion vitreum +blue pikeperch|1 +(noun)|blue pike|blue pickerel|blue walleye|Strizostedion vitreum glaucum|walleye|walleyed pike|jack salmon|Stizostedion vitreum +blue pimpernel|1 +(noun)|blue skullcap|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb|herbaceous plant +blue point|3 +(noun)|bluepoint|huitre|oyster +(noun)|bluepoint|oyster +(noun)| +blue point siamese|1 +(noun)|blue point Siamese|Siamese cat|Siamese +blue pointed|1 +(noun)|bonito shark|Isurus glaucus|mako|mako shark +blue poppy|1 +(noun)|Meconopsis betonicifolia|poppy +blue racer|1 +(noun)|Coluber constrictor flaviventris|blacksnake|black racer|Coluber constrictor +blue ribbon|1 +(noun)|cordon bleu|badge +blue ribbon commission|1 +(noun)|blue ribbon committee|committee|commission +blue ribbon committee|1 +(noun)|blue ribbon commission|committee|commission +blue ribbon jury|1 +(noun)|special jury|jury +blue ridge|1 +(noun)|Blue Ridge Mountains|Blue Ridge|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +blue ridge mountains|1 +(noun)|Blue Ridge Mountains|Blue Ridge|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +blue runner|1 +(noun)|runner|Caranx crysos|jack +blue sage|4 +(noun)|Salvia reflexa|Salvia lancifolia|sage|salvia +(noun)|mealy sage|Salvia farinacea|sage|salvia +(noun)|Salvia azurea|sage|salvia +(noun)|big sagebrush|Seriphidium tridentatum|Artemisia tridentata|sagebrush|sage brush +blue shark|1 +(noun)|great blue shark|Prionace glauca|requiem shark +blue skullcap|1 +(noun)|blue pimpernel|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb|herbaceous plant +blue sky|1 +(noun)|blue|blue air|wild blue yonder|sky +blue sky law|1 +(noun)|law +blue star|1 +(noun)|Amsonia tabernaemontana|subshrub|suffrutex +blue stem|2 +(noun)|bluestem|Andropogon furcatus|Andropogon gerardii|grass +(noun)| +blue stone|2 +(noun)|blue vitriol|blue copperas|chalcanthite|copper sulfate|copper sulphate|cupric sulfate|cupric sulphate +(noun)|bluestone|sandstone +blue story|1 +(noun)|dirty joke|dirty story|blue joke|joke|gag|laugh|jest|jape +blue succory|1 +(noun)|cupid's dart|Catananche caerula|catananche +blue thistle|1 +(noun)|blueweed|blue devil|viper's bugloss|Echium vulgare|herb|herbaceous plant +blue tit|1 +(noun)|tomtit|Parus caeruleus|titmouse|tit +blue toadflax|1 +(noun)|old-field toadflax|Linaria canadensis|toadflax|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris +blue tulip|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +blue vitriol|1 +(noun)|blue copperas|blue stone|chalcanthite|copper sulfate|copper sulphate|cupric sulfate|cupric sulphate +blue wall|1 +(noun)|blue wall of silence|wall of silence|cover-up +blue wall of silence|1 +(noun)|blue wall|wall of silence|cover-up +blue walleye|1 +(noun)|blue pike|blue pickerel|blue pikeperch|Strizostedion vitreum glaucum|walleye|walleyed pike|jack salmon|Stizostedion vitreum +blue whale|1 +(noun)|sulfur bottom|Balaenoptera musculus|baleen whale|whalebone whale +blueback salmon|1 +(noun)|sockeye|sockeye salmon|red salmon|Onchorynchus nerka|salmon +bluebeard|1 +(noun)|Bluebeard|fictional character|fictitious character|character +bluebell|3 +(noun)|wild hyacinth|wood hyacinth|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +(noun)|prairie gentian|tulip gentian|Eustoma grandiflorum|wildflower|wild flower +(noun)|harebell|Campanula rotundifolia|campanula|bellflower +blueberry|2 +(noun)|blueberry bush|shrub|bush +(noun)|berry +blueberry bush|1 +(noun)|blueberry|shrub|bush +blueberry pie|1 +(noun)|pie +blueberry root|1 +(noun)|blue cohosh|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +blueberry yogurt|1 +(noun)|yogurt|yoghurt|yoghourt +bluebill|1 +(noun)|scaup|scaup duck|broadbill|duck +bluebird|2 +(noun)|fairy bluebird|oscine|oscine bird +(noun)|thrush +bluebonnet|2 +(noun)|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine|lupin +(noun)|Balmoral|cap +bluebottle|2 +(noun)|cornflower|bachelor's button|Centaurea cyanus|flower +(noun)|Calliphora vicina|blowfly|blow fly +bluefin|2 +(noun)|bluefin tuna|tuna|tuna fish|tunny +(noun)|bluefin tuna|horse mackerel|Thunnus thynnus|tuna|tunny +bluefin tuna|2 +(noun)|bluefin|tuna|tuna fish|tunny +(noun)|bluefin|horse mackerel|Thunnus thynnus|tuna|tunny +bluefish|2 +(noun)|Pomatomus saltatrix|percoid fish|percoid|percoidean +(noun)|saltwater fish +bluegill|1 +(noun)|Lepomis macrochirus|freshwater bream|bream +bluegrass|3 +(noun)|blue grass|grass +(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area|geographic area|geographical region|geographic region +(noun)|country music|country and western|C and W +bluegrass country|1 +(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area|geographic area|geographical region|geographic region +bluegrass region|1 +(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area|geographic area|geographical region|geographic region +bluegrass state|1 +(noun)|Kentucky|Bluegrass State|KY|American state +bluehead|1 +(noun)|Thalassoma bifasciatum|wrasse +blueing|2 +(noun)|bluing|blue|dye|dyestuff +(noun)|bluing|chemical process|chemical change|chemical action +blueish|1 +(adj)|blue|bluish|light-blue|dark-blue|blue-black|chromatic +bluejack oak|1 +(noun)|turkey oak|Quercus incana|oak|oak tree +bluejacket|1 +(noun)|navy man|sailor|sailor boy|serviceman|military man|man|military personnel +blueness|1 +(noun)|blue|chromatic color|chromatic colour|spectral color|spectral colour +bluepoint|2 +(noun)|blue point|huitre|oyster +(noun)|blue point|oyster +blueprint|3 +(noun)|design|pattern|plan|program|programme +(noun)|photograph|photo|exposure|pic +(verb)|draft|draught|design|plan +blueprint paper|1 +(noun)|paper +blues|9 +(noun)|black music|African-American music|folk song|folksong|folk ballad +(noun)|blue devils|megrims|vapors|vapours|depression +(noun)|blue|blueness|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|blue|clothing|article of clothing|vesture|wear +(noun)|blue|organization|organisation +(noun)|blue sky|blue|blue air|wild blue yonder|sky +(noun)|bluing|blueing|blue|dye|dyestuff +(noun)|amobarbital sodium|blue|blue angel|blue devil|Amytal|amobarbital +(noun)|blue|lycaenid|lycaenid butterfly +bluestem|1 +(noun)|blue stem|Andropogon furcatus|Andropogon gerardii|grass +bluestem wheatgrass|1 +(noun)|western wheatgrass|Agropyron smithii|wheatgrass|wheat-grass +bluestocking|1 +(noun)|bas bleu|woman|adult female +bluestone|1 +(noun)|sandstone +bluethroat|1 +(noun)|Erithacus svecicus|thrush +bluethroat pikeblenny|1 +(noun)|Chaenopsis ocellata|pikeblenny +bluetick|1 +(noun)|hound|hound dog +blueweed|1 +(noun)|blue devil|blue thistle|viper's bugloss|Echium vulgare|herb|herbaceous plant +bluewing|1 +(noun)|blue-winged teal|Anas discors|teal +bluff|7 +(adj)|bold|sheer|steep +(adj)|direct +(noun)|bank +(noun)|pretense|pretence|feigning|dissembling +(noun)|four flush|deception|deceit|dissembling|dissimulation +(verb)|bluff out|move|go +(verb)|frighten|fright|scare|affright +bluff out|1 +(verb)|bluff|move|go +bluffer|1 +(noun)|four-flusher|deceiver|cheat|cheater|trickster|beguiler|slicker +bluffly|1 +(adv)|bluntly|brusquely|flat out|roundly +bluffness|1 +(noun)|frankness|outspokenness +bluing|2 +(noun)|blueing|blue|dye|dyestuff +(noun)|blueing|chemical process|chemical change|chemical action +bluish|1 +(adj)|blue|blueish|light-blue|dark-blue|blue-black|chromatic +bluish green|2 +(adj)|blue-green|cyan|teal|chromatic +(noun)|blue-green|teal|green|greenness|viridity +blunder|4 +(noun)|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +(verb)|sin|boob|goof|transgress|offend|infract|violate|go against|breach|break +(verb)|fumble|pass|go through|go across +(verb)|blurt out|blurt|blunder out|ejaculate|talk|speak|utter|mouth|verbalize|verbalise +blunder out|1 +(verb)|blurt out|blurt|blunder|ejaculate|talk|speak|utter|mouth|verbalize|verbalise +blunderbuss|1 +(noun)|musket +blunderer|1 +(noun)|bungler|fumbler|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent|incompetent person +blunt|9 +(adj)|pointless |unpointed +(adj)|dull +(adj)|candid|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct +(adj)|crude|stark|unconditional +(verb)|weaken +(verb)|numb|benumb|dull|desensitize|desensitise +(verb)|dull|change|alter|modify +(verb)|change|alter|modify +(verb)|deaden|change|alter|modify +blunt-leaf heath|1 +(noun)|common heath|Epacris obtusifolia|epacris +blunt file|1 +(noun)|file +blunt trauma|1 +(noun)|injury|hurt|harm|trauma +blunted|1 +(adj)|dulled|dull +bluntly|1 +(adv)|bluffly|brusquely|flat out|roundly +bluntness|2 +(noun)|inconsideration|inconsiderateness|thoughtlessness +(noun)|dullness|dulness|shape|form|configuration|contour|conformation +blur|7 +(noun)|fuzz|representation|mental representation|internal representation +(verb)|film over|glaze over +(verb)|change|alter|modify +(verb)|confuse|obscure|obnubilate|change|alter|modify +(verb)|smear|smudge|smutch|rub +(verb)|blear|change|alter|modify +(verb)|dim|slur|weaken +blurb|1 +(noun)|endorsement|indorsement|promotion|publicity|promotional material|packaging +blurred|2 +(adj)|bleary|blurry|foggy|fuzzy|hazy|muzzy|indistinct +(adj)|clouded|unclear +blurriness|1 +(noun)|indistinctness|fogginess|fuzziness|opacity|opaqueness +blurry|1 +(adj)|bleary|blurred|foggy|fuzzy|hazy|muzzy|indistinct +blurt|1 +(verb)|blurt out|blunder out|blunder|ejaculate|talk|speak|utter|mouth|verbalize|verbalise +blurt out|1 +(verb)|blurt|blunder out|blunder|ejaculate|talk|speak|utter|mouth|verbalize|verbalise +blush|4 +(noun)|bloom|flush|rosiness|good health|healthiness +(noun)|flush|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|crimson|flush|redden|discolor|discolour|colour|color +(verb)|redden +blush wine|1 +(noun)|pink wine|rose|rose wine|wine|vino +blusher|2 +(noun)|blushing mushroom|Amanita rubescens|agaric +(noun)|rouge|paint|makeup|make-up|war paint +blushful|2 +(adj)|blushing|red-faced|discomposed +(adj)|rosy|chromatic +blushing|1 +(adj)|blushful|red-faced|discomposed +blushing mushroom|1 +(noun)|blusher|Amanita rubescens|agaric +bluster|7 +(noun)|confusion +(noun)|bravado|ostentation|fanfare +(noun)|gust|blast|blow +(noun)|braggadocio|rodomontade|rhodomontade|boast|boasting|self-praise|jactitation +(verb)|blow +(verb)|boast|tout|swash|shoot a line|brag|gas|blow|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|swagger|swash|act|behave|do +blusterer|1 +(noun)|loudmouth|troublemaker|trouble maker|troubler|mischief-maker|bad hat +blustering|1 +(adj)|blusterous|blustery|gusty|stormy +blusterous|1 +(adj)|blustering|blustery|gusty|stormy +blustery|2 +(adj)|blustering|blusterous|gusty|stormy +(adj)|bullying|domineering +bm|2 +(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +(noun)|bowel movement|movement|defecation|laxation|shitting +bmdo|1 +(noun)|Ballistic Missile Defense Organization|BMDO|agency|federal agency|government agency|bureau|office|authority +bmr|1 +(noun)|basal metabolic rate|BMR|metabolism|metabolic process|metastasis|metabolic rate +bmus|1 +(noun)|Bachelor of Music|BMus|bachelor's degree|baccalaureate +bns|1 +(noun)|Bachelor of Naval Science|BNS|bachelor's degree|baccalaureate +bo's'n|1 +(noun)|boatswain|bos'n|bosun|bo'sun|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bo'sun|1 +(noun)|boatswain|bos'n|bo's'n|bosun|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bo tree|1 +(noun)|pipal|pipal tree|pipul|peepul|sacred fig|Ficus religiosa|fig tree +boa|2 +(noun)|feather boa|scarf +(noun)|constrictor +boa constrictor|1 +(noun)|Constrictor constrictor|boa +boann|1 +(noun)|Boann|Celtic deity +boar|2 +(noun)|wild boar|Sus scrofa|swine +(noun)|swine +boar thistle|1 +(noun)|bull thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle|plumed thistle +board|13 +(noun)|committee|commission +(noun)|sheet|flat solid +(noun)|plank|lumber|timber +(noun)|display panel|display board|display +(noun)|gameboard|surface +(noun)|table|fare +(noun)|control panel|instrument panel|control board|panel|electrical device +(noun)|circuit board|circuit card|card|printed circuit +(noun)|dining table|table +(verb)|get on|enter|come in|get into|get in|go into|go in|move into +(verb)|room|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|use|habituate +(verb)|provide|supply|ply|cater +board foot|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +board game|1 +(noun)|parlor game|parlour game +board measure|1 +(noun)|system of measurement|metric +board meeting|1 +(noun)|committee meeting|meeting +board member|1 +(noun)|member +board of appeals|1 +(noun)|appeal board|appeals board|board +board of directors|1 +(noun)|directorate|board +board of education|1 +(noun)|school board|board +board of regents|1 +(noun)|governing board +board of selectmen|1 +(noun)|board +board of trade unit|1 +(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit|heat unit|energy unit +board of trustees|1 +(noun)|governing board +board rule|1 +(noun)|measuring stick|measure|measuring rod +board up|1 +(verb)|cover +boarder|3 +(noun)|lodger|roomer|tenant|renter +(noun)|intruder|interloper|trespasser +(noun)|schoolchild|school-age child|pupil +boarding|2 +(noun)|embarkation|embarkment|departure|going|going away|leaving +(noun)|structure|construction +boarding card|1 +(noun)|boarding pass|pass|laissez passer +boarding house|2 +(noun)|boardinghouse|house +(noun)| +boarding pass|1 +(noun)|boarding card|pass|laissez passer +boarding school|1 +(noun)|private school +boardinghouse|1 +(noun)|boarding house|house +boardroom|1 +(noun)|council chamber|room +boards|10 +(noun)|boarding +(noun)|board|committee|commission +(noun)|board|sheet|flat solid +(noun)|board|plank|lumber|timber +(noun)|display panel|display board|board|display +(noun)|board|gameboard|surface +(noun)|board|table|fare +(noun)|control panel|instrument panel|control board|board|panel|electrical device +(noun)|circuit board|circuit card|board|card|printed circuit +(noun)|dining table|board|table +boardwalk|1 +(noun)|walk|walkway|paseo +boarfish|2 +(noun)|spiny-finned fish|acanthopterygian +(noun)|Capros aper|spiny-finned fish|acanthopterygian +boarhound|1 +(noun)|hound|hound dog +boast|3 +(noun)|boasting|self-praise|jactitation|speech act +(verb)|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|sport|feature|have|feature +boaster|1 +(noun)|bragger|braggart|blowhard|line-shooter|vaunter|egotist|egoist|swellhead +boastful|1 +(adj)|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +boastfully|1 +(adv)|vauntingly|big|large +boastfulness|1 +(noun)|vainglory|conceit|vanity +boasting|1 +(noun)|boast|self-praise|jactitation|speech act +boat|3 +(noun)|vessel|watercraft +(noun)|gravy boat|gravy holder|sauceboat|dish +(verb)|ride +boat-billed heron|1 +(noun)|boatbill|broadbill|Cochlearius cochlearius|heron +boat-race|1 +(verb)|race|run +boat bug|1 +(noun)|water boatman|water bug +boat club|1 +(noun)|yacht club|club|society|guild|gild|lodge|order +boat deck|1 +(noun)|upper deck +boat hook|1 +(noun)|hook +boat paddle|1 +(noun)|paddle|oar +boat race|1 +(noun)|race +boat racing|1 +(noun)|racing +boat train|1 +(noun)|train|railroad train +boat whistle|1 +(noun)|whistle +boatbill|1 +(noun)|boat-billed heron|broadbill|Cochlearius cochlearius|heron +boatbuilder|1 +(noun)|builder|constructor +boater|2 +(noun)|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat|chapeau|lid +(noun)|boatman|waterman|worker +boathouse|1 +(noun)|house +boating|1 +(noun)|yachting|water travel|seafaring +boatload|1 +(noun)|shipload|carload|large indefinite quantity|large indefinite amount +boatman|1 +(noun)|boater|waterman|worker +boatmanship|1 +(noun)|seamanship +boatswain|1 +(noun)|bos'n|bo's'n|bosun|bo'sun|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +boatswain's chair|1 +(noun)|bosun's chair|seat +boatswain bird|1 +(noun)|tropic bird|tropicbird|pelecaniform seabird +bob|12 +(noun)|British shilling|shilling|British monetary unit +(noun)|hairdo|hair style|coiffure +(noun)|bobsled|bobsleigh|sled|sledge|sleigh +(noun)|weight +(noun)|bobber|cork|bobfloat|float +(noun)|bobtail|dock|tail +(noun)|inclination|inclining +(verb)|move +(verb)|bobsled|sled|sleigh +(verb)|dock|tail|cut +(verb)|curtsy|greet|recognize|recognise +(verb)|dress|arrange|set|do|coif|coiffe|coiffure +bob about|1 +(verb)|bob around|bob +bob around|1 +(verb)|bob about|bob +bob dylan|1 +(noun)|Dylan|Bob Dylan|songwriter|songster|ballad maker|singer|vocalist|vocalizer|vocaliser +bob hope|1 +(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian|comic +bob marley|1 +(noun)|Marley|Robert Nesta Marley|Bob Marley|singer|vocalist|vocalizer|vocaliser +bob mathias|1 +(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete|jock +bob under|1 +(verb)|vanish|disappear|go away +bob up|1 +(verb)|arise|come up|become +bobber|1 +(noun)|bob|cork|bobfloat|float +bobbin|1 +(noun)|spool|reel|winder +bobbin lace|1 +(noun)|pillow lace|lace +bobble|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +bobby|1 +(noun)|policeman|police officer|officer +bobby-socker|1 +(noun)|bobbysoxer|lass|lassie|young girl|jeune fille +bobby fischer|1 +(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master +bobby jones|1 +(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer|golf player|linksman +bobby orr|1 +(noun)|Orr|Bobby Orr|Robert Orr|hockey player|ice-hockey player +bobby pin|1 +(noun)|hairgrip|grip|hairpin +bobbysock|1 +(noun)|anklet|anklets|bobbysocks|sock +bobbysocks|2 +(noun)|anklet|anklets|bobbysock|sock +(noun)|anklet|anklets|bobbysock|sock +bobbysoxer|1 +(noun)|bobby-socker|lass|lassie|young girl|jeune fille +bobcat|1 +(noun)|bay lynx|Lynx rufus|lynx|catamount +bobfloat|1 +(noun)|bob|bobber|cork|float +bobolink|1 +(noun)|ricebird|reedbird|Dolichonyx oryzivorus|New World oriole|American oriole|oriole +bobsled|3 +(noun)|bobsleigh|sled|sledge|sleigh +(noun)|bobsleigh|bob|sled|sledge|sleigh +(verb)|bob|sled|sleigh +bobsledding|1 +(noun)|sledding +bobsleigh|2 +(noun)|bobsled|sled|sledge|sleigh +(noun)|bobsled|bob|sled|sledge|sleigh +bobtail|3 +(adj)|bobtailed|caudate |caudated +(noun)|bob|dock|tail +(noun)|Old English sheepdog|shepherd dog|sheepdog|sheep dog +bobtailed|1 +(adj)|bobtail|caudate |caudated +bobwhite|1 +(noun)|bobwhite quail|partridge|quail +bobwhite quail|1 +(noun)|bobwhite|partridge|quail +boccaccio|1 +(noun)|Boccaccio|Giovanni Boccaccio|poet +bocce|1 +(noun)|bocci|boccie|lawn bowling +bocce ball|1 +(noun)|bocci ball|boccie ball|ball +bocci|1 +(noun)|bocce|boccie|lawn bowling +bocci ball|1 +(noun)|bocce ball|boccie ball|ball +boccie|1 +(noun)|bocce|bocci|lawn bowling +boccie ball|1 +(noun)|bocce ball|bocci ball|ball +bocconia|2 +(noun)|plume poppy|Macleaya cordata|poppy +(noun)|tree celandine|Bocconia frutescens|angiospermous tree|flowering tree +bocconia frutescens|1 +(noun)|bocconia|tree celandine|Bocconia frutescens|angiospermous tree|flowering tree +boche|1 +(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German +bock|1 +(noun)|bock beer|lager|lager beer +bock beer|1 +(noun)|bock|lager|lager beer +bod|1 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|chassis|frame|form|flesh|body|organic structure|physical structure +bodacious|2 +(adj)|unmitigated +(adj)|audacious|barefaced|bold-faced|brassy|brazen|brazen-faced|insolent|unashamed +boddhisatva|1 +(noun)|Bodhisattva|Boddhisatva|deity|divinity|god|immortal +bode|1 +(verb)|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +bodega|1 +(noun)|shop|store +bodhisattva|1 +(noun)|Bodhisattva|Boddhisatva|deity|divinity|god|immortal +bodice|1 +(noun)|top +bodice ripper|1 +(noun)|romance +bodied|2 +(adj)|bodied |incarnate|corporeal|material +(adj)|corporal|corporate|embodied|incarnate|corporeal |material +bodiless|2 +(adj)|discorporate|unembodied|unbodied|disembodied|incorporeal |immaterial +(adj)|bodyless|unbodied +bodily|3 +(adj)|carnal|body|organic structure|physical structure +(adj)|corporal|corporeal|somatic|physical +(adj)|corporeal |material +bodily cavity|1 +(noun)|cavity|cavum|structure|anatomical structure|complex body part|bodily structure|body structure +bodily fluid|1 +(noun)|liquid body substance|body fluid|humor|humour|body substance +bodily function|1 +(noun)|bodily process|body process|activity|organic process|biological process +bodily process|1 +(noun)|body process|bodily function|activity|organic process|biological process +bodily property|1 +(noun)|property +bodily structure|1 +(noun)|structure|anatomical structure|complex body part|body structure|body part +boding|1 +(noun)|foreboding|premonition|presentiment|apprehension|apprehensiveness|dread +bodkin|4 +(noun)|poniard|dagger|sticker +(noun)|hairpin +(noun)|hand tool +(noun)|threader|hand tool +bodo-garo|1 +(noun)|Bodo-Garo|Barish|Kamarupan +bodoni|2 +(noun)|Bodoni|Gianbattista Bodoni|printer|pressman +(noun)|modern|modern font|Bodoni|Bodoni font|proportional font +bodoni font|1 +(noun)|modern|modern font|Bodoni|Bodoni font|proportional font +body|10 +(noun)|organic structure|physical structure|natural object +(noun)|dead body|natural object +(noun)|gathering|assemblage +(noun)|torso|trunk|body part +(noun)|natural object +(noun)|system|scheme +(noun)|structure|construction +(noun)|consistency|consistence|property +(noun)|message|content|subject matter|substance +(verb)|personify|embody|be|personify +body-build|1 +(noun)|physique|build|habitus|bodily property +body and soul|1 +(adv)|heart and soul +body armor|1 +(noun)|body armour|suit of armor|suit of armour|coat of mail|cataphract|armor|armour +body armour|1 +(noun)|body armor|suit of armor|suit of armour|coat of mail|cataphract|armor|armour +body bag|1 +(noun)|personnel pouch|human remains pouch|bag +body count|1 +(noun)|count +body covering|1 +(noun)|covering|natural covering|cover +body english|1 +(noun)|body English|motion|movement|move|motility +body fluid|1 +(noun)|liquid body substance|bodily fluid|humor|humour|body substance +body forth|1 +(verb)|incarnate|embody|substantiate|be +body guard|1 +(verb)|protect +body hair|1 +(noun)|hair +body language|1 +(noun)|visual communication +body length|1 +(noun)|linear unit +body lotion|1 +(noun)|lotion +body louse|1 +(noun)|cootie|Pediculus corporis|louse|sucking louse +body odor|1 +(noun)|body odour|B.O.|malodorousness|stinkiness|foulness|rankness +body odour|1 +(noun)|body odor|B.O.|malodorousness|stinkiness|foulness|rankness +body of water|1 +(noun)|water|thing +body of work|1 +(noun)|oeuvre|work|end product|output +body pad|1 +(noun)|protective garment +body part|1 +(noun)|part|piece +body plethysmograph|1 +(noun)|plethysmograph +body politic|1 +(noun)|state|nation|country|land|commonwealth|res publica|political unit +body process|1 +(noun)|bodily process|bodily function|activity|organic process|biological process +body servant|1 +(noun)|servant|retainer +body snatcher|1 +(noun)|graverobber|ghoul|thief|stealer +body stocking|1 +(noun)|undergarment +body structure|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body part +body substance|1 +(noun)|substance|matter +body suit|1 +(noun)|leotard|unitard|cat suit|garment +body temperature|1 +(noun)|blood heat|vital sign|temperature +body type|1 +(noun)|somatotype|physique|build|body-build|habitus +body waste|1 +(noun)|excretion|excreta|excrement|excretory product|waste|waste material|waste matter|waste product +body weight|1 +(noun)|weight +bodybuilder|1 +(noun)|muscle builder|muscle-builder|musclebuilder|muscleman|person|individual|someone|somebody|mortal|human|soul +bodybuilding|1 +(noun)|anaerobic exercise|muscle building|musclebuilding|exercise|exercising|physical exercise|physical exertion|workout +bodyguard|2 +(noun)|escort|defender|guardian|protector|shielder +(noun)|guard|detachment +bodyless|1 +(adj)|bodiless|unbodied +bodypaint|1 +(verb)|paint +bodywork|2 +(noun)|body +(noun)|manual labor|manual labour +boehm|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +boehme|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +boehmenism|1 +(noun)|Boehmenism|Behmenism|theological doctrine|religious doctrine +boehmeria|1 +(noun)|Boehmeria|genus Boehmeria|dicot genus|magnoliopsid genus +boehmeria nivea|1 +(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle|bog hemp +boeotia|1 +(noun)|Boeotia|district|territory|territorial dominion|dominion +boeotian|1 +(adj)|Boeotian|district|territory|territorial dominion|dominion +boer|1 +(noun)|Afrikaner|Afrikander|Boer|South African +boer war|1 +(noun)|Boer War|war|warfare +boethius|1 +(noun)|Boethius|Anicius Manlius Severinus Boethius|philosopher|statesman|solon|national leader +boeuf|1 +(noun)|beef|meat +boeuf bourguignonne|1 +(noun)|beef Bourguignonne|boeuf Bourguignonne|dish +boeuf fondu bourguignon|1 +(noun)|beef fondue|fondue|fondu +boffin|1 +(noun)|research worker|researcher|investigator +bofors gun|1 +(noun)|Bofors gun|antiaircraft|antiaircraft gun|flak|flack|pom-pom|ack-ack|ack-ack gun +bog|3 +(noun)|peat bog|wetland +(verb)|bog down|slow|slow down|slow up +(verb)|bog down|break|break off|discontinue|stop +bog asphodel|1 +(noun)|liliaceous plant +bog aster|1 +(noun)|aster +bog bilberry|1 +(noun)|bog whortleberry|moor berry|Vaccinium uliginosum alpinum|blueberry|blueberry bush +bog candles|1 +(noun)|bog rein orchid|Habenaria dilatata|rein orchid|rein orchis +bog down|4 +(verb)|bog|break|break off|discontinue|stop +(verb)|mire +(verb)|grind to a halt|get stuck|mire|stand still +(verb)|bog|slow|slow down|slow up +bog hemp|1 +(noun)|false nettle|herb|herbaceous plant +bog kalmia|1 +(noun)|swamp laurel|bog laurel|Kalmia polifolia|kalmia +bog laurel|1 +(noun)|swamp laurel|bog kalmia|Kalmia polifolia|kalmia +bog moss|1 +(noun)|sphagnum|sphagnum moss|peat moss|moss +bog myrtle|1 +(noun)|water shamrock|buckbean|bogbean|marsh trefoil|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +bog pimpernel|1 +(noun)|Anagallis tenella|pimpernel +bog plant|1 +(noun)|marsh plant|swamp plant|aquatic plant|water plant|hydrophyte|hydrophytic plant +bog rein orchid|1 +(noun)|bog candles|Habenaria dilatata|rein orchid|rein orchis +bog rhubarb|1 +(noun)|butterbur|Petasites hybridus|Petasites vulgaris|herb|herbaceous plant +bog rose|1 +(noun)|wild pink|dragon's mouth|Arethusa bulbosa|arethusa +bog rosemary|1 +(noun)|moorwort|Andromeda glaucophylla|andromeda +bog soil|1 +(noun)|soil|dirt +bog spavin|1 +(noun)|spavin +bog star|1 +(noun)|Parnassia palustris|parnassia|grass-of-Parnassus +bog whortleberry|1 +(noun)|bog bilberry|moor berry|Vaccinium uliginosum alpinum|blueberry|blueberry bush +bogart|1 +(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor|histrion|player|thespian|role player +bogartian|1 +(adj)|Bogartian|actor|histrion|player|thespian|role player +bogbean|1 +(noun)|water shamrock|buckbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +bogey|4 +(noun)|bogy|bogie|evil spirit +(noun)|score +(noun)|bogy|bogie|aircraft +(verb)|shoot +bogeyman|1 +(noun)|bugbear|bugaboo|boogeyman|booger|monster +boggle|3 +(verb)|startle|jump|start +(verb)|hesitate|waver|waffle +(verb)|flabbergast|bowl over|surprise +boggy|1 +(adj)|marshy|miry|mucky|muddy|quaggy|sloughy|swampy|wet +bogie|2 +(noun)|bogey|bogy|evil spirit +(noun)|bogy|bogey|aircraft +bogmat|1 +(noun)|mud midget|Wolffiella gladiata|duckweed +bogota|1 +(noun)|Bogota|capital of Colombia|national capital +bogus|1 +(adj)|fake|phony|phoney|bastard|counterfeit |imitative +bogy|2 +(noun)|bogie|bogey|aircraft +(noun)|bogey|bogie|evil spirit +bohemia|1 +(noun)|Bohemia|geographical area|geographic area|geographical region|geographic region +bohemian|5 +(adj)|Bohemian|geographical area|geographic area|geographical region|geographic region +(adj)|unconventional +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +(noun)|Bohemian|European +(noun)|nonconformist|recusant +bohemian waxwing|1 +(noun)|Bohemian waxwing|Bombycilla garrulus|waxwing +bohme|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +bohr|1 +(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist +bohr theory|1 +(noun)|Bohr theory|atomic theory +boidae|1 +(noun)|Boidae|family Boidae|reptile family +boil|7 +(noun)|furuncle|staphylococcal infection +(noun)|boiling point|temperature +(verb)|change state|turn +(verb)|cook +(verb)|change|alter|modify +(verb)|churn|moil|roil|move +(verb)|seethe|be +boil down|3 +(verb)|reduce|come down|become|turn +(verb)|reduce|decoct|concentrate|decrease|diminish|lessen|fall +(verb)|reduce|concentrate|decrease|lessen|minify +boil over|1 +(verb)|overboil|boil +boil smut|1 +(noun)|Ustilago maydis|cornsmut|corn smut +boiled|1 +(adj)|poached|stewed|cooked +boiled dinner|1 +(noun)|New England boiled dinner|dish +boiled egg|1 +(noun)|coddled egg|dish +boiler|2 +(noun)|steam boiler|vessel +(noun)|kettle|pot +boilerplate|2 +(noun)|formulation|expression +(noun)|plate iron +boilers suit|2 +(noun)|overall|boilersuit|coverall +(noun)|overall|boilersuit|coverall +boilersuit|1 +(noun)|overall|boilers suit|coverall +boiling|2 +(noun)|heating|warming|vaporization|vaporisation|vapor|vapour|evaporation +(noun)|stewing|simmering|cooking|cookery|preparation +boiling point|2 +(noun)|boil|temperature +(noun)|excitability|excitableness|volatility +boiling water reactor|1 +(noun)|BWR|water-cooled reactor +boise|1 +(noun)|Boise|capital of Idaho|state capital +boisterous|3 +(adj)|rambunctious|robustious|rumbustious|unruly|disorderly +(adj)|knockabout|spirited +(adj)|fierce|rough|stormy +boisterously|1 +(adv)|rollickingly +boisterousness|2 +(noun)|storminess +(noun)|noisiness|racketiness +bok choi|2 +(noun)|bok choy|pakchoi|Chinese white cabbage|Brassica rapa chinensis|crucifer|cruciferous plant +(noun)|bok choy|cabbage|chou +bok choy|2 +(noun)|bok choi|pakchoi|Chinese white cabbage|Brassica rapa chinensis|crucifer|cruciferous plant +(noun)|bok choi|cabbage|chou +bokkos|1 +(noun)|Ron|Bokkos|Daffo|West Chadic +bokmal|1 +(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian +bola|2 +(noun)|bolo tie|bolo|bola tie|necktie|tie +(noun)|rope +bola tie|1 +(noun)|bolo tie|bolo|bola|necktie|tie +bolanci|1 +(noun)|Bole|Bolanci|West Chadic +bolbitis|1 +(noun)|Bolbitis|genus Bolbitis|fern genus +bold|4 +(adj)|bold |audacious|brave|dauntless|fearless|intrepid|unfearing|brash|daredevil|temerarious|emboldened|foolhardy|rash|reckless|heroic|heroical|nervy|overreaching|vaulting|overvaliant|venturesome|adventurous|adventuresome|brave|courageous|fearless|forward|unafraid|fearless +(adj)|conspicuous |obvious +(adj)|bluff|sheer|steep +(noun)|boldface|bold face|font|fount|typeface|face +bold-faced|1 +(adj)|audacious|barefaced|bodacious|brassy|brazen|brazen-faced|insolent|unashamed +bold face|2 +(noun)|boldface|bold|font|fount|typeface|face +(noun)| +boldface|2 +(noun)|bold face|bold|font|fount|typeface|face +(verb)|print|impress +boldly|1 +(adv)|with boldness +boldness|3 +(noun)|daring|hardihood|fearlessness +(noun)|nerve|brass|face|cheek|aggressiveness +(noun)|strikingness|conspicuousness +bole|3 +(noun)|pigment|soil|dirt +(noun)|trunk|tree trunk|stalk|stem +(noun)|Bole|Bolanci|West Chadic +bolero|3 +(noun)|dance music|danceroom music|ballroom music +(noun)|jacket +(noun)|stage dancing|choreography +boletaceae|1 +(noun)|Boletaceae|family Boletaceae|fungus family +bolete|1 +(noun)|fungus +boletellus|1 +(noun)|Boletellus|genus Boletellus|fungus genus +boletellus russellii|1 +(noun)|Boletellus russellii|bolete +boletus|1 +(noun)|Boletus|genus Boletus|fungus genus +boletus chrysenteron|1 +(noun)|Boletus chrysenteron|bolete +boletus edulis|1 +(noun)|Boletus edulis|bolete +boletus frostii|1 +(noun)|Frost's bolete|Boletus frostii|bolete +boletus luridus|1 +(noun)|Boletus luridus|bolete +boletus mirabilis|1 +(noun)|Boletus mirabilis|bolete +boletus pallidus|1 +(noun)|Boletus pallidus|bolete +boletus pulcherrimus|1 +(noun)|Boletus pulcherrimus|bolete +boletus pulverulentus|1 +(noun)|Boletus pulverulentus|bolete +boletus roxanae|1 +(noun)|Boletus roxanae|bolete +boletus subvelutipes|1 +(noun)|Boletus subvelutipes|bolete +boletus variipes|1 +(noun)|Boletus variipes|bolete +boletus zelleri|1 +(noun)|Boletus zelleri|bolete +boleyn|1 +(noun)|Boleyn|Anne Boleyn|queen +bolide|1 +(noun)|fireball|meteor|shooting star +bolingbroke|1 +(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England|King of Great Britain +bolivar|2 +(noun)|Venezuelan monetary unit +(noun)|Bolivar|Simon Bolivar|El Libertador|general|full general|statesman|solon|national leader +bolivia|2 +(noun)|Bolivia|Republic of Bolivia|South American country|South American nation +(noun)|canasta|basket rummy|meld +bolivian|2 +(adj)|Bolivian|South American country|South American nation +(noun)|Bolivian|South American +bolivian monetary unit|1 +(noun)|Bolivian monetary unit|monetary unit +boliviano|1 +(noun)|Bolivian monetary unit +boll|2 +(noun)|capsule +(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer|author +boll weevil|1 +(noun)|Anthonomus grandis|weevil +bollard|1 +(noun)|bitt|post +bollix|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +bollix up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +bollock|2 +(noun)|testis|testicle|orchis|ball|ballock|nut|egg|male reproductive gland|gonad|sex gland +(noun)|bullock block|pulley|pulley-block|block +bollocks|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +bollocks up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +bollworm|1 +(noun)|caterpillar +bollywood|1 +(noun)|Bollywood|film industry|movie industry|screenland +bolo|2 +(noun)|bolo tie|bola tie|bola|necktie|tie +(noun)|bolo knife|knife +bolo knife|1 +(noun)|bolo|knife +bolo tie|1 +(noun)|bolo|bola tie|bola|necktie|tie +bologna|2 +(noun)|Bologna|city|metropolis|urban center +(noun)|Bologna sausage|sausage +bologna sausage|1 +(noun)|bologna|Bologna sausage|sausage +bolognese pasta sauce|1 +(noun)|spaghetti sauce|pasta sauce +bologram|1 +(noun)|bolograph|recording +bolograph|1 +(noun)|bologram|recording +bolographic|1 +(adj)|recording +bolometer|1 +(noun)|measuring instrument|measuring system|measuring device +bolometric|1 +(adj)|measuring instrument|measuring system|measuring device +boloney|1 +(noun)|baloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +bolshevik|3 +(adj)|Bolshevik|Bolshevist|Bolshevistic|communism +(noun)|Bolshevik|Marxist|pinko|red|bolshie|radical +(noun)|Bolshevik|Bolshevist|communist|commie +bolshevise|1 +(verb)|communize|communise|bolshevize|change|alter|modify +bolshevism|1 +(noun)|Bolshevism|collectivism|sovietism|communism +bolshevist|2 +(adj)|Bolshevik|Bolshevist|Bolshevistic|communism +(noun)|Bolshevik|Bolshevist|communist|commie +bolshevistic|1 +(adj)|Bolshevik|Bolshevist|Bolshevistic|communism +bolshevize|1 +(verb)|communize|communise|bolshevise|change|alter|modify +bolshie|1 +(noun)|Bolshevik|Marxist|pinko|red|radical +bolshy|1 +(adj)|stroppy|stubborn +bolster|4 +(noun)|long pillow|pillow +(verb)|bolster up|reinforce|reenforce +(verb)|prop up|prop|shore up|shore +(verb)|pad|fill|fill up|make full +bolster up|1 +(verb)|bolster|reinforce|reenforce +bolt|16 +(noun)|thunderbolt|bolt of lightning|lightning +(noun)|bar +(noun)|deadbolt|bar +(noun)|dash|haste|hurry|rush|rushing +(noun)|roll +(noun)|screw +(noun)|abandonment|forsaking|desertion +(verb)|move +(verb)|lock +(verb)|swallow|get down +(verb)|abscond|absquatulate|decamp|run off|go off|flee|fly|take flight +(verb)|run off|run out|bolt out|beetle off|leave|go forth|go away +(verb)|gobble|eat +(verb)|roll up|furl +(adv)|rigidly|stiffly +(adv)|bang|slap|slapdash|smack +bolt-hole|1 +(noun)|hole +bolt cutter|1 +(noun)|cutter|cutlery|cutting tool +bolt down|2 +(verb)|toss off|pop|belt down|pour down|down|drink down|kill|drink|imbibe +(verb)|garbage down|gobble up|shovel in|eat +bolt of lightning|1 +(noun)|thunderbolt|bolt|lightning +bolt out|1 +(verb)|run off|run out|bolt|beetle off|leave|go forth|go away +bolted|1 +(adj)|barred|fast|latched|locked|secured|fastened +bolti|1 +(noun)|Tilapia nilotica|cichlid|cichlid fish +boltonia|1 +(noun)|Boltonia|genus Boltonia|asterid dicot genus +boltzmann|1 +(noun)|Boltzmann|Ludwig Boltzmann|physicist +boltzmann's constant|1 +(noun)|Boltzmann's constant|constant +boltzmann distribution law|1 +(noun)|Maxwell-Boltzmann distribution law|Boltzmann distribution law|distribution law +bolus|2 +(noun)|ball|globe|orb +(noun)|pill|lozenge|tablet|tab +bolzano|1 +(noun)|Bolzano|city|metropolis|urban center +bomarea|1 +(noun)|Bomarea|genus Bomarea|liliid monocot genus +bomarea edulis|1 +(noun)|salsilla|Bomarea edulis|vine +bomarea salsilla|1 +(noun)|salsilla|Bomarea salsilla|vine +bomb|5 +(noun)|explosive device|weaponry|arms|implements of war|weapons system|munition +(noun)|bomb calorimeter|calorimeter +(noun)|turkey|dud|flop|bust +(verb)|bombard|attack|assail +(verb)|fail|flunk|flush it +bomb blast|1 +(noun)|blast +bomb calorimeter|1 +(noun)|bomb|calorimeter +bomb out|1 +(verb)|bombard|bomb +bomb rack|1 +(noun)|carrier +bomb shelter|1 +(noun)|air-raid shelter|bombproof|chamber +bomb site|1 +(noun)|site|land site +bomb up|1 +(verb)|load|lade|laden|load up +bombacaceae|1 +(noun)|Bombacaceae|family Bombacaceae|dilleniid dicot family +bombard|3 +(noun)|bombardon|shawm|bass +(verb)|pelt|throw +(verb)|bomb|attack|assail +bombardier|2 +(noun)|noncommissioned officer|noncom +(noun)|aircrewman +bombardier beetle|1 +(noun)|ground beetle|carabid beetle +bombardment|3 +(noun)|radiation +(noun)|barrage|barrage fire|battery|shelling|fire|firing +(noun)|bombing|attack|onslaught|onset|onrush +bombardon|2 +(noun)|helicon|bass horn|sousaphone|tuba +(noun)|bombard|shawm|bass +bombast|1 +(noun)|fustian|rant|claptrap|blah|grandiosity|magniloquence|grandiloquence|rhetoric +bombastic|1 +(adj)|declamatory|large|orotund|tumid|turgid|rhetorical +bombastically|2 +(adv)|turgidly +(adv)|grandiosely +bombax|1 +(noun)|Bombax|genus Bombax|dilleniid dicot genus +bombax ceiba|1 +(noun)|red silk-cotton tree|simal|Bombax ceiba|Bombax malabarica|tree +bombax malabarica|1 +(noun)|red silk-cotton tree|simal|Bombax ceiba|Bombax malabarica|tree +bombay|1 +(noun)|Mumbai|Bombay|city|metropolis|urban center +bombay ceiba|1 +(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +bombay hemp|1 +(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +bomber|3 +(noun)|airplane|aeroplane|plane|warplane|military plane +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +bomber aircrew|1 +(noun)|bomber crew|aircrew|air crew +bomber crew|1 +(noun)|bomber aircrew|aircrew|air crew +bomber harris|1 +(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general|full general|marshal|marshall +bomber jacket|1 +(noun)|jacket +bombie|1 +(noun)|bomblet|cluster bomblet +bombilate|1 +(verb)|buzz|bombinate|sound|go +bombilation|1 +(noun)|buzz|bombination|sound +bombina|1 +(noun)|Bombina|genus Bombina|amphibian genus +bombina bombina|1 +(noun)|fire-bellied toad|Bombina bombina|frog|toad|toad frog|anuran|batrachian|salientian +bombinate|1 +(verb)|buzz|bombilate|sound|go +bombination|1 +(noun)|buzz|bombilation|sound +bombing|2 +(noun)|bombardment|attack|onslaught|onset|onrush +(noun)|sabotage +bombing run|1 +(noun)|bombing|bombardment +bomblet|1 +(noun)|cluster bomblet|bomb +bombproof|2 +(adj)|shellproof|invulnerable +(noun)|bomb shelter|air-raid shelter|chamber +bombshell|3 +(noun)|entertainer +(noun)|thunderbolt|thunderclap|surprise +(noun)|bomb +bombsight|1 +(noun)|sight +bombus|1 +(noun)|Bombus|genus Bombus|arthropod genus +bombycid|1 +(noun)|bombycid moth|silkworm moth|moth +bombycid moth|1 +(noun)|bombycid|silkworm moth|moth +bombycidae|1 +(noun)|Bombycidae|family Bombycidae|arthropod family +bombycilla|1 +(noun)|Bombycilla|genus bombycilla|bird genus +bombycilla cedrorun|1 +(noun)|cedar waxwing|cedarbird|Bombycilla cedrorun|waxwing +bombycilla garrulus|1 +(noun)|Bohemian waxwing|Bombycilla garrulus|waxwing +bombycillidae|1 +(noun)|Bombycillidae|family Bombycillidae|bird family +bombyliidae|1 +(noun)|Bombyliidae|family Bombyliidae|arthropod family +bombyx|1 +(noun)|Bombyx|genus Bombyx|arthropod genus +bombyx mori|1 +(noun)|domestic silkworm moth|Bombyx mori|bombycid|bombycid moth|silkworm moth +bon mot|1 +(noun)|mot|wit|humor|humour|witticism|wittiness +bon ton|1 +(noun)|society|high society|beau monde|smart set|elite|elite group +bon vivant|1 +(noun)|epicure|gourmet|gastronome|epicurean|foodie|sensualist +bon voyage|1 +(noun)|send-off|farewell|word of farewell +bona fide|2 +(adj)|sincere +(adj)|authentic|unquestionable|veritable|genuine |echt +bonaire|1 +(noun)|Bonaire|island +bonanza|2 +(noun)|vein|mineral vein +(noun)|boom|gold rush|gravy|godsend|manna from heaven|windfall|bunce|happening|occurrence|natural event +bonaparte|1 +(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|the Little Corporal|general|full general|Emperor +bonasa|1 +(noun)|Bonasa|genus Bonasa|bird genus +bonasa umbellus|1 +(noun)|ruffed grouse|partridge|Bonasa umbellus|grouse +bonavist|1 +(noun)|hyacinth bean|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +bonbon|1 +(noun)|candy +bonce|1 +(noun)|attic|bean|noodle|noggin|dome|human head +bond|15 +(adj)|enslaved|enthralled|in bondage|slave +(noun)|chemical bond|attraction|attractive force +(noun)|bond certificate|debt instrument|certificate of indebtedness|security|certificate +(noun)|alliance|connection|connexion|connectedness +(noun)|bail|bail bond|recognizance|recognisance +(noun)|shackle|hamper|trammel|trammels|restraint|constraint +(noun)|attachment|connection|connexion|connector|connecter|connective +(noun)|bond paper|writing paper +(noun)|Bond|Julian Bond|civil rights leader|civil rights worker|civil rights activist +(noun)|Bond|James Bond|fictional character|fictitious character|character +(noun)|adhesiveness|adhesion|adherence|stickiness +(verb)|adhere|hold fast|bind|stick|stick to|attach +(verb)|bind|tie|attach|relate +(verb)|mortgage +(verb)|bring together|draw together|connect|link|tie|link up +bond-trading activity|1 +(noun)|bond trading|trading +bond certificate|1 +(noun)|bond|debt instrument|certificate of indebtedness|security|certificate +bond issue|1 +(noun)|bond|bond certificate +bond paper|1 +(noun)|bond|writing paper +bond rating|1 +(noun)|evaluation|valuation|rating +bond servant|1 +(noun)|slave +bond trading|1 +(noun)|bond-trading activity|trading +bondable|2 +(adj)|bindable|attachable +(adj)|adhesive +bondage|2 +(noun)|slavery|thrall|thralldom|thraldom|subjugation|subjection +(noun)|sexual activity|sexual practice|sex|sex activity +bonded|1 +(adj)|guaranteed|secured|warranted|secure +bonded labor|1 +(noun)|bondage|slavery|thrall|thralldom|thraldom +bonderise|1 +(verb)|bonderize|coat|surface +bonderize|1 +(verb)|bonderise|coat|surface +bondholder|1 +(noun)|investor +bonding|3 +(noun)|soldering|fastening|attachment +(noun)|personal relation|personal relationship +(noun)|technique +bondmaid|2 +(noun)|bondwoman|bondswoman|bond servant +(noun)|bondwoman|bondswoman|slave +bondman|2 +(noun)|bondsman|bond servant +(noun)|bondsman|slave +bondsman|3 +(noun)|bondman|slave +(noun)|bondswoman|benefactor|helper +(noun)|bondman|bond servant +bondswoman|3 +(noun)|bondsman|benefactor|helper +(noun)|bondwoman|bondmaid|bond servant +(noun)|bondwoman|bondmaid|slave +bonduc|2 +(noun)|Kentucky coffee tree|chicot|Gymnocladus dioica|tree +(noun)|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree +bonduc nut|1 +(noun)|nicker nut|nicker seed|seed +bonduc tree|1 +(noun)|bonduc|Caesalpinia bonduc|Caesalpinia bonducella|tree +bondwoman|2 +(noun)|bondswoman|bondmaid|bond servant +(noun)|bondswoman|bondmaid|slave +bone|6 +(adj)|bony |boney +(noun)|os|connective tissue +(noun)|osseous tissue|animal material +(noun)|ivory|pearl|off-white|white|whiteness +(verb)|cram|grind away|drum|bone up|swot|get up|mug up|swot up|study|hit the books +(verb)|debone|remove|take|take away|withdraw +bone-ash cup|1 +(noun)|cupel|refractory pot|vessel +bone-covered|1 +(adj)|armored |armoured +bone-dry|2 +(adj)|bone dry|dry +(adj)| +bone-forming cell|1 +(noun)|osteoblast|embryonic cell|formative cell +bone-headed dinosaur|1 +(noun)|ornithischian|ornithischian dinosaur +bone-idle|1 +(adj)|bone-lazy|idle +bone-lazy|1 +(adj)|bone-idle|idle +bone age|1 +(noun)|age +bone ash|1 +(noun)|ash +bone black|1 +(noun)|bone char|animal black|animal charcoal|char +bone cell|1 +(noun)|somatic cell|vegetative cell +bone char|1 +(noun)|bone black|animal black|animal charcoal|char +bone china|1 +(noun)|china +bone dry|2 +(adj)|bone-dry|dry +(adj)| +bone fat|1 +(noun)|animal fat +bone marrow|2 +(noun)|marrow|connective tissue +(noun)|marrow|dainty|delicacy|goody|kickshaw|treat +bone of contention|1 +(noun)|subject|topic|theme +bone oil|2 +(noun)|animal oil +(noun)|Dippel's oil|animal oil +bone spavin|1 +(noun)|spavin +bone up|1 +(verb)|cram|grind away|drum|swot|get up|mug up|swot up|bone|study|hit the books +boned|2 +(adj)|deboned|boneless +(adj)|bony |boney +bonefish|1 +(noun)|Albula vulpes|soft-finned fish|malacopterygian +bonehead|1 +(noun)|dunce|dunderhead|numskull|blockhead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +boneheaded|1 +(adj)|blockheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid +boneless|1 +(adj)|boneless |boned|deboned +bonelet|1 +(noun)|ossicle|ossiculum|bone|os +bonelike|1 +(adj)|bony |boney +bonemeal|1 +(noun)|organic|organic fertilizer|organic fertiliser +boner|1 +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boo-boo|mistake|error|fault +bones|4 +(noun)|castanets|clappers|finger cymbals|maraca|percussion instrument|percussive instrument +(noun)|bone|os|connective tissue +(noun)|bone|osseous tissue|animal material +(noun)|bone|ivory|pearl|off-white|white|whiteness +boneset|2 +(noun)|common comfrey|Symphytum officinale|comfrey|cumfrey +(noun)|agueweed|thoroughwort|Eupatorium perfoliatum|herb|herbaceous plant +bonesetter|1 +(noun)|health professional|health care provider|caregiver +boneshaker|1 +(noun)|wheeled vehicle +bonete|1 +(noun)|Bonete|mountain peak +boney|1 +(adj)|bony |bone|boned|bonelike|strong-boned +bonfire|1 +(noun)|balefire|fire +bonfire night|1 +(noun)|Bonfire Night|Guy Fawkes Night|November 5 +bong|1 +(verb)|resound|echo|ring|reverberate +bongo|2 +(noun)|bongo drum|drum|membranophone|tympan +(noun)|Tragelaphus eurycerus|Boocercus eurycerus|antelope +bongo drum|1 +(noun)|bongo|drum|membranophone|tympan +bonheur|1 +(noun)|happiness +bonhoeffer|1 +(noun)|Bonhoeffer|Dietrich Bonhoeffer|theologian|theologist|theologizer|theologiser +bonhomie|1 +(noun)|affability|affableness|amiability|amiableness|geniality|friendliness +boniface|2 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +(noun)|host|innkeeper|patron +bonito|3 +(noun)|tuna|tuna fish|tunny +(noun)|oceanic bonito|Katsuwonus pelamis|scombroid|scombroid fish +(noun)|scombroid|scombroid fish +bonito shark|1 +(noun)|blue pointed|Isurus glaucus|mako|mako shark +bonk|2 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|copulate|mate|pair|couple +(verb)|sock|bop|whop|whap|bash|hit +bonkers|1 +(adj)|balmy|barmy|bats|batty|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +bonn|1 +(noun)|Bonn|city|metropolis|urban center +bonnet|3 +(noun)|poke bonnet|hat|chapeau|lid +(noun)|hood|cowl|cowling|protective covering|protective cover|protection +(verb)|hat +bonnet macaque|1 +(noun)|bonnet monkey|capped macaque|crown monkey|Macaca radiata|macaque +bonnet monkey|1 +(noun)|bonnet macaque|capped macaque|crown monkey|Macaca radiata|macaque +bonnet shark|1 +(noun)|shovelhead|bonnethead|Sphyrna tiburo|hammerhead|hammerhead shark +bonnethead|1 +(noun)|shovelhead|bonnet shark|Sphyrna tiburo|hammerhead|hammerhead shark +bonney|1 +(noun)|Bonney|William H. Bonney|Billie the Kid|criminal|felon|crook|outlaw|malefactor +bonnie|1 +(adj)|bonny|comely|fair|beautiful +bonny|1 +(adj)|bonnie|comely|fair|beautiful +bonobo|1 +(noun)|pygmy chimpanzee|Pan paniscus|chimpanzee|chimp|Pan troglodytes +bonsai|1 +(noun)|tree +bontemps|1 +(noun)|Bontemps|Arna Wendell Bontemps|writer|author +bonus|2 +(noun)|fillip|positive stimulus +(noun)|incentive|payment +bonxie|1 +(noun)|skua|jaeger +bony|3 +(adj)|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|wasted|thin |lean +(adj)|osseous|osteal|animal material +(adj)|bony |boney|bone|boned|bonelike|strong-boned +bony fish|1 +(noun)|fish +bony labyrinth|1 +(noun)|osseous labyrinth|structure|anatomical structure|complex body part|bodily structure|body structure +bonyness|1 +(noun)|emaciation|gauntness|maceration|leanness|thinness +bonzer|1 +(adj)|extraordinary +boo|2 +(noun)|hoot|Bronx cheer|hiss|raspberry|razzing|snort|bird|cry|outcry|call|yell|shout|vociferation +(verb)|hiss|condemn +boo-boo|1 +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|mistake|error|fault +boob|3 +(noun)|dumbbell|dummy|dope|booby|pinhead|simpleton|simple +(noun)|breast|bosom|knocker|tit|titty|mammary gland|mamma +(verb)|sin|blunder|goof|transgress|offend|infract|violate|go against|breach|break +boob tube|1 +(noun)|television receiver|television|television set|tv|tv set|idiot box|telly|goggle box|receiver|receiving system +booboisie|1 +(noun)|class|social class|socio-economic class +booby|2 +(noun)|dumbbell|dummy|dope|boob|pinhead|simpleton|simple +(noun)|gannet +booby hatch|1 +(noun)|Bedlam|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +booby prize|1 +(noun)|trophy|prize +booby trap|2 +(noun)|land mine|ground-emplaced mine|mine +(noun)|pitfall|difficulty +boocercus eurycerus|1 +(noun)|bongo|Tragelaphus eurycerus|Boocercus eurycerus|antelope +boodle|2 +(noun)|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|Michigan|Chicago|Newmarket|stops|card game|cards +booger|2 +(noun)|bogeyman|bugbear|bugaboo|boogeyman|monster +(noun)|mucus|mucous secretion +boogeyman|1 +(noun)|bogeyman|bugbear|bugaboo|booger|monster +boogie|1 +(noun)|boogie-woogie|jazz|blues +boogie-woogie|1 +(noun)|boogie|jazz|blues +boojum tree|1 +(noun)|cirio|Fouquieria columnaris|Idria columnaris|candlewood +book|14 +(noun)|publication +(noun)|volume|product|production +(noun)|ledger|leger|account book|book of account|record +(noun)|product|production +(noun)|record|record book|fact +(noun)|section|subdivision +(noun)|script|playscript|dramatic composition|dramatic work +(noun)|rule book|collection|aggregation|accumulation|assemblage +(noun)|Koran|Quran|al-Qur'an|Book|sacred text|sacred writing|religious writing|religious text +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(verb)|record|enter|put down +(verb)|reserve|hold|request|bespeak|call for|quest +(verb)|schedule +(verb)|register +book agent|1 +(noun)|salesman +book bag|1 +(noun)|bag +book binding|2 +(noun)|binding|cover|back|protective covering|protective cover|protection +(noun)|bookbinding|handicraft +book fair|3 +(noun)|bookfair|fair +(noun)|bookfair|bazaar|fair +(noun)| +book jacket|1 +(noun)|dust cover|dust jacket|dust wrapper|promotion|publicity|promotional material|packaging|jacket +book louse|2 +(noun)|booklouse|deathwatch|Liposcelis divinatorius|psocopterous insect +(noun)| +book lover|2 +(noun)|bibliophile|booklover|scholar|scholarly person|student +(noun)| +book lung|1 +(noun)|respiratory organ +book matches|1 +(noun)|safety match|match|lucifer|friction match +book of account|1 +(noun)|ledger|leger|account book|book|record +book of amos|1 +(noun)|Amos|Book of Amos|book +book of baruch|1 +(noun)|Baruch|Book of Baruch|book +book of common prayer|1 +(noun)|Book of Common Prayer|service book +book of daniel|1 +(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book +book of deuteronomy|1 +(noun)|Deuteronomy|Book of Deuteronomy|book +book of ecclesiastes|1 +(noun)|Ecclesiastes|Book of Ecclesiastes|book +book of esther|1 +(noun)|Esther|Book of Esther|book +book of exodus|1 +(noun)|Exodus|Book of Exodus|book +book of ezekiel|1 +(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book +book of ezra|1 +(noun)|Ezra|Book of Ezra|book +book of facts|1 +(noun)|reference book|reference|reference work|book +book of genesis|1 +(noun)|Genesis|Book of Genesis|book +book of habakkuk|1 +(noun)|Habakkuk|Habacuc|Book of Habakkuk|book +book of haggai|1 +(noun)|Haggai|Aggeus|Book of Haggai|book +book of hosea|1 +(noun)|Hosea|Book of Hosea|book +book of instructions|1 +(noun)|instruction manual|instructions|operating instructions|manual +book of isaiah|1 +(noun)|Isaiah|Book of Isaiah|book +book of jeremiah|1 +(noun)|Jeremiah|Book of Jeremiah|book +book of job|1 +(noun)|Job|Book of Job|book +book of joel|1 +(noun)|Joel|Book of Joel|book +book of jonah|1 +(noun)|Jonah|Book of Jonah|book +book of joshua|1 +(noun)|Joshua|Josue|Book of Joshua|book +book of judges|1 +(noun)|Judges|Book of Judges|book +book of judith|1 +(noun)|Judith|Book of Judith|book +book of knowledge|1 +(noun)|encyclopedia|cyclopedia|encyclopaedia|cyclopaedia +book of lamentations|1 +(noun)|Lamentations|Book of Lamentations|book +book of leviticus|1 +(noun)|Leviticus|Book of Leviticus|book +book of malachi|1 +(noun)|Malachi|Malachias|Book of Malachi|book +book of maps|1 +(noun)|atlas|map collection|reference book|reference|reference work|book of facts +book of micah|1 +(noun)|Micah|Micheas|Book of Micah|book +book of mormon|1 +(noun)|Book of Mormon|The Book of Mormon|sacred text|sacred writing|religious writing|religious text +book of nahum|1 +(noun)|Nahum|Book of Nahum|book +book of nehemiah|1 +(noun)|Nehemiah|Book of Nehemiah|book +book of numbers|1 +(noun)|Numbers|Book of Numbers|book +book of obadiah|1 +(noun)|Obadiah|Abdias|Book of Obadiah|book +book of proverbs|1 +(noun)|Proverbs|Book of Proverbs|book +book of psalms|2 +(noun)|Psalms|Book of Psalms|book +(noun)|Psalter|Book of Psalms|prayer book|prayerbook +book of revelation|1 +(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book +book of ruth|1 +(noun)|Ruth|Book of Ruth|book +book of susanna|1 +(noun)|Susanna|Book of Susanna|book +book of the prophet daniel|1 +(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book +book of tobit|1 +(noun)|Tobit|Book of Tobit|book +book of zachariah|1 +(noun)|Zechariah|Zacharias|Book of Zachariah|book +book of zephaniah|1 +(noun)|Zephaniah|Sophonias|Book of Zephaniah|book +book review|1 +(noun)|review|critique|critical review|review article +book scorpion|1 +(noun)|Chelifer cancroides|false scorpion|pseudoscorpion +book seller|2 +(noun)|bookdealer|merchant|merchandiser +(noun)|bookseller|owner|proprietor +book token|1 +(noun)|coupon|voucher +book up|1 +(verb)|reserve +book value|1 +(noun)|value +bookable|1 +(adj)|reserved +bookbinder|1 +(noun)|craftsman|artisan|journeyman|artificer +bookbinding|1 +(noun)|handicraft +bookcase|1 +(noun)|furniture|piece of furniture|article of furniture +bookclub|1 +(noun)|club|society|guild|gild|lodge|order +bookdealer|1 +(noun)|book seller|merchant|merchandiser +booked|1 +(adj)|engaged|set-aside|reserved +bookend|1 +(noun)|support +booker|1 +(noun)|booking agent|agent +booker t. washington|1 +(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator|pedagogue +booker taliaferro washington|1 +(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator|pedagogue +bookfair|2 +(noun)|book fair|fair +(noun)|book fair|bazaar|fair +bookie|1 +(noun)|bookmaker|gambler +booking|2 +(noun)|engagement|employment|work +(noun)|reservation|employment|engagement +booking agent|1 +(noun)|booker|agent +booking clerk|1 +(noun)|ticket agent|seller|marketer|vender|vendor|trafficker +bookish|1 +(adj)|studious|scholarly +bookishness|1 +(noun)|studiousness +bookkeeper|1 +(noun)|accountant|comptroller|controller +bookkeeping|1 +(noun)|clerking|accountancy|accounting +booklet|1 +(noun)|brochure|folder|leaflet|pamphlet|book +booklouse|1 +(noun)|book louse|deathwatch|Liposcelis divinatorius|psocopterous insect +booklover|1 +(noun)|bibliophile|book lover|scholar|scholarly person|student +bookmaker|2 +(noun)|maker|shaper +(noun)|bookie|gambler +bookmark|1 +(noun)|bookmarker|marker +bookmarker|1 +(noun)|bookmark|marker +bookmobile|1 +(noun)|van +bookplate|1 +(noun)|ex libris|gummed label|sticker|paster +bookseller|1 +(noun)|owner|proprietor +bookshelf|1 +(noun)|shelf +bookshop|1 +(noun)|bookstore|bookstall|shop|store +bookstall|1 +(noun)|bookshop|bookstore|shop|store +bookstore|1 +(noun)|bookshop|bookstall|shop|store +bookworm|2 +(noun)|pedant|scholastic|scholar|scholarly person|student +(noun)|reader +boole|2 +(adj)|Boole|mathematician +(noun)|Boole|George Boole|mathematician +boolean|1 +(adj)|Boolean|mathematician +boolean algebra|1 +(noun)|Boolean logic|Boolean algebra|symbolic logic|mathematical logic|formal logic +boolean logic|1 +(noun)|Boolean logic|Boolean algebra|symbolic logic|mathematical logic|formal logic +boolean operation|1 +(noun)|binary operation|binary arithmetic operation|operation +boom|10 +(noun)|roar|roaring|thunder|noise +(noun)|prosperity +(noun)|bonanza|gold rush|gravy|godsend|manna from heaven|windfall|bunce|happening|occurrence|natural event +(noun)|microphone boom|pole +(noun)|spar +(verb)|din|sound|go +(verb)|smash|nail|blast|hit +(verb)|thunder +(verb)|boom out|sound|go +(verb)|prosper|thrive|get ahead|flourish|expand|grow +boom box|1 +(noun)|ghetto blaster|stereo|stereo system|stereophonic system +boom out|1 +(verb)|boom|sound|go +boom town|1 +(noun)|town +boomer|1 +(noun)|baby boomer|person|individual|someone|somebody|mortal|human|soul +boomerang|3 +(noun)|throwing stick|throw stick|projectile|missile +(noun)|backfire|miscalculation|misreckoning|misestimation +(verb)|return|go back|get back|come back +booming|2 +(adj)|flourishing|palmy|prospering|prosperous|roaring|thriving|successful +(adj)|stentorian|full +boon|2 +(adj)|close +(noun)|blessing|good fortune|good luck +boondocks|1 +(noun)|backwoods|back country|hinterland|country|rural area +boondoggle|2 +(noun)|waste|wastefulness|dissipation +(verb)|work +boone|1 +(noun)|Boone|Daniel Boone|frontiersman|backwoodsman|mountain man +boor|1 +(noun)|peasant|barbarian|churl|Goth|tyke|tike|unpleasant person|disagreeable person +boorish|1 +(adj)|loutish|neanderthal|neandertal|oafish|swinish|unrefined +boorishness|2 +(noun)|discourtesy|rudeness +(noun)|uncouthness|inelegance +boost|8 +(noun)|encouragement|aid|assist|assistance|help +(noun)|rise|hike|cost increase|increase|increment +(noun)|push|pushing +(verb)|hike|hike up|raise|lift|elevate|get up|bring up +(verb)|increase +(verb)|promote|advance|further|encourage|support|back up +(verb)|advance|supercharge|increase +(verb)|thrust +boost up|1 +(verb)|push up +booster|5 +(noun)|supporter|protagonist|champion|admirer|friend|advocate|advocator|proponent|exponent +(noun)|promoter|plugger|advertiser|advertizer|adman +(noun)|shoplifter|lifter|thief|stealer +(noun)|booster rocket|booster unit|multistage rocket|takeoff booster|takeoff rocket|rocket|rocket engine +(noun)|booster dose|booster shot|recall dose|dose +booster amplifier|1 +(noun)|boosters|booster stations|relay links|relay stations|relay transmitters|amplifier +booster dose|1 +(noun)|booster|booster shot|recall dose|dose +booster rocket|1 +(noun)|booster|booster unit|multistage rocket|takeoff booster|takeoff rocket|rocket|rocket engine +booster shot|1 +(noun)|booster|booster dose|recall dose|dose +booster stations|1 +(noun)|boosters|booster amplifier|relay links|relay stations|relay transmitters|amplifier +booster unit|1 +(noun)|booster|booster rocket|multistage rocket|takeoff booster|takeoff rocket|rocket|rocket engine +boosters|6 +(noun)|booster amplifier|booster stations|relay links|relay stations|relay transmitters|amplifier +(noun)|supporter|protagonist|champion|admirer|booster|friend|advocate|advocator|proponent|exponent +(noun)|promoter|booster|plugger|advertiser|advertizer|adman +(noun)|booster|shoplifter|lifter|thief|stealer +(noun)|booster|booster rocket|booster unit|multistage rocket|takeoff booster|takeoff rocket|rocket|rocket engine +(noun)|booster|booster dose|booster shot|recall dose|dose +boot|8 +(noun)|footwear|footgear +(noun)|luggage compartment|automobile trunk|trunk +(noun)|bang|charge|rush|flush|thrill|kick|exhilaration|excitement +(noun)|shell|case|casing +(noun)|iron boot|iron heel|instrument of torture +(noun)|kick|kicking|blow +(verb)|kick|boot out +(verb)|reboot|bring up|resuscitate|revive +boot camp|1 +(noun)|camp|encampment|cantonment|bivouac +boot maker|2 +(noun)|bootmaker|cobbler|shoemaker +(noun)| +boot out|2 +(verb)|oust|throw out|drum out|kick out|expel|remove +(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|turn out|move|displace +boot sale|1 +(noun)|car boot sale|sale|cut-rate sale|sales event +bootblack|1 +(noun)|shoeblack|unskilled person +bootboys|1 +(noun)|skinheads|youth subculture +booted|1 +(adj)|shod |shodden|shoed +booted armillaria|1 +(noun)|Armillaria caligata|agaric +bootee|1 +(noun)|bootees|bootie|booties|slipper|carpet slipper +bootees|2 +(noun)|bootee|bootie|booties|slipper|carpet slipper +(noun)|bootee|bootie|booties|slipper|carpet slipper +bootes|1 +(noun)|Bootes|constellation +booth|4 +(noun)|table +(noun)|cubicle|stall|kiosk|closet +(noun)|Booth|John Wilkes Booth|actor|histrion|player|thespian|role player|assassin|assassinator|bravo +(noun)|shop|store +boothose|1 +(noun)|stocking +bootie|1 +(noun)|bootee|bootees|booties|slipper|carpet slipper +booties|2 +(noun)|bootee|bootees|bootie|slipper|carpet slipper +(noun)|bootee|bootees|bootie|slipper|carpet slipper +bootjack|1 +(noun)|device +bootlace|1 +(noun)|lace|lacing +bootleg|5 +(adj)|black|black-market|contraband|smuggled|illegal +(noun)|moonshine|corn liquor|corn whiskey|corn whisky|corn +(noun)|covering +(verb)|sell +(verb)|produce|make|create +bootlegger|1 +(noun)|moonshiner|criminal|felon|crook|outlaw|malefactor +bootlegging|2 +(noun)|selling|merchandising|marketing +(noun)|selling|merchandising|marketing +bootless|1 +(adj)|fruitless|futile|sleeveless|vain|unproductive +bootlick|1 +(verb)|fawn|toady|truckle|kowtow|kotow|suck up|flatter|blandish +bootlicker|1 +(noun)|apple polisher|fawner|groveller|groveler|truckler|ass-kisser|sycophant|toady|crawler|lackey +bootlicking|1 +(adj)|fawning|obsequious|sycophantic|toadyish|insincere +bootmaker|1 +(noun)|boot maker|cobbler|shoemaker +bootstrap|2 +(noun)|strap +(verb)|help|assist|aid +boott's goldenrod|1 +(noun)|Boott's goldenrod|goldenrod +booty|1 +(noun)|loot|pillage|plunder|prize|swag|dirty money|stolen property +booyong|1 +(noun)|red beech|brown oak|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +booze|2 +(noun)|liquor|spirits|hard drink|hard liquor|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +(verb)|drink|fuddle|consume|ingest|take in|take|have +booze-up|1 +(noun)|carouse|carousal|bender|toot|revel|revelry +boozer|1 +(noun)|alcoholic|alky|dipsomaniac|lush|soaker|souse|drunkard|drunk|rummy|sot|inebriate +boozing|1 +(noun)|drink|drinking|drunkenness|crapulence|intemperance|intemperateness +boozy|1 +(adj)|bibulous|drunken|sottish|intoxicated |drunk|inebriated +bop|4 +(noun)|Federal Bureau of Prisons|BoP|law enforcement agency +(noun)|bebop|jazz +(verb)|bebop|dance|trip the light fantastic|trip the light fantastic toe +(verb)|sock|whop|whap|bonk|bash|hit +bopeep|1 +(noun)|peekaboo|child's game +boracic|1 +(adj)|boric|chemical element|element +boracic acid|1 +(noun)|boric acid|acid +borage|2 +(noun)|tailwort|Borago officinalis|herb|herbaceous plant +(noun)|herb +borage family|1 +(noun)|Boraginaceae|family Boraginaceae|plant family +boraginaceae|1 +(noun)|Boraginaceae|family Boraginaceae|borage family|plant family +borago|1 +(noun)|Borago|genus Borago|plant genus +borago officinalis|1 +(noun)|borage|tailwort|Borago officinalis|herb|herbaceous plant +borassus|1 +(noun)|Borassus|genus Borassus|monocot genus|liliopsid genus +borassus flabellifer|1 +(noun)|palmyra|palmyra palm|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm +borate|1 +(noun)|salt +borated|1 +(adj)|mineral +borax|1 +(noun)|mineral +bordeaux|2 +(noun)|Bordeaux|city|metropolis|urban center|port +(noun)|Bordeaux|Bordeaux wine|wine|vino +bordeaux mixture|1 +(noun)|Bordeaux mixture|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +bordeaux wine|1 +(noun)|Bordeaux|Bordeaux wine|wine|vino +bordelaise|1 +(noun)|sauce +bordello|1 +(noun)|whorehouse|brothel|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building|edifice +border|10 +(noun)|boundary line|borderline|delimitation|mete|boundary|bound|bounds +(noun)|margin|perimeter|boundary|edge|bound +(noun)|edge|boundary|bound|bounds +(noun)|molding|moulding|edge|margin +(noun)|edge|margin +(verb)|surround|skirt|touch|adjoin|meet|contact +(verb)|bound|enclose|hold in|confine|border on +(verb)|frame|frame in|enclose|inclose|shut in +(verb)|edge|supply|provide|render|furnish +(verb)|adjoin|edge|abut|march|butt|butt against|butt on|touch|adjoin|meet|contact +border collie|1 +(noun)|Border collie|shepherd dog|sheepdog|sheep dog +border district|1 +(noun)|borderland|march|marchland|district|territory|territorial dominion|dominion +border on|1 +(verb)|approach|approximate|come close +border patrol|1 +(noun)|patrol +border patrolman|1 +(noun)|lawman|law officer|peace officer +border terrier|1 +(noun)|Border terrier|terrier +bordered|1 +(adj)|bordered |boxed|deckled|deckle-edged|featheredged|edged|fringed|lined|seagirt|finite +borderer|1 +(noun)|inhabitant|dweller|denizen|indweller +borderland|1 +(noun)|border district|march|marchland|district|territory|territorial dominion|dominion +borderline|2 +(adj)|marginal|minimal +(noun)|boundary line|border|delimitation|mete|boundary|bound|bounds +borderline intelligence|1 +(noun)|intelligence quotient|IQ|I.Q. +borderline schizophrenia|1 +(noun)|latent schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +bore|19 +(noun)|dullard|unpleasant person|disagreeable person +(noun)|tidal bore|eagre|aegir|eager|tidal flow|tidal current +(noun)|gauge|caliber|calibre|diameter|diam +(noun)|bore-hole|drill hole|excavation|hole in the ground +(verb)|tire +(verb)|drill|cut +(verb)|bear|have|feature +(verb)|give birth|deliver|bear|birth|have|produce|bring forth +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|bear|transport|carry +(verb)|bear|turn out|make|create|bear out +(verb)|bear|take over|accept|assume|take +(verb)|hold|bear|carry|contain|include +(verb)|yield|pay|bear|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|wear|bear|have|feature +(verb)|behave|acquit|bear|deport|conduct|comport|carry|hold|carry|bear|act|move +(verb)|bear|hold|have|have got|hold +(verb)|hold|carry|bear +(verb)|have a bun in the oven|bear|carry|gestate|expect|give birth|deliver|bear|birth|have +bore-hole|1 +(noun)|bore|drill hole|excavation|hole in the ground +bore bit|1 +(noun)|borer|rock drill|stone drill|drill +boreal|3 +(adj)|wind|air current|current of air +(adj)|cardinal compass point +(adj)|circumboreal|northern +boreas|2 +(noun)|north wind|norther|wind|air current|current of air +(noun)|Boreas|Greek deity +borecole|1 +(noun)|kale|kail|cole|colewort|Brassica oleracea acephala|crucifer|cruciferous plant +bored|2 +(adj)|world-weary|tired +(adj)|blase|uninterested +boredom|1 +(noun)|ennui|tedium|dissatisfaction +borer|2 +(noun)|bore bit|rock drill|stone drill|drill +(noun)|woodborer|invertebrate +borges|1 +(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer|author +borgia|4 +(noun)|Calixtus III|Borgia|Alfonso Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady|noblewoman|peeress +(noun)|Borgia|Cesare Borgia|cardinal|soldier +(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +boric|1 +(adj)|boracic|chemical element|element +boric acid|2 +(noun)|orthoboric acid|acid +(noun)|boracic acid|acid +boring|3 +(adj)|deadening|dull|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting +(noun)|drilling|creating by removal +(noun)|drilling|oil production|production +boringly|1 +(adv)|tediously|tiresomely +boringness|1 +(noun)|dreariness|dullness|dulness +boris fyodorovich godunov|1 +(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar|tsar|tzar +boris godunov|1 +(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar|tsar|tzar +boris karloff|1 +(noun)|Karloff|Boris Karloff|William Henry Pratt|actor|histrion|player|thespian|role player +boris leonidovich pasternak|1 +(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer|author +boris pasternak|1 +(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer|author +boris spassky|1 +(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master +boris vasilevich spassky|1 +(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master +born|3 +(adj)|born |given birth|calved|dropped|foaled|hatched|whelped +(adj)|natural|innate|intelligent +(noun)|Born|Max Born|nuclear physicist +born-again|1 +(adj)|converted|reborn|regenerate +born-again christian|1 +(noun)|born-again Christian|Christian +borne in upon|1 +(adj)|causative +bornean|1 +(noun)|Bornean|Malaysian +borneo|1 +(noun)|Borneo|Kalimantan|island +bornholm disease|1 +(noun)|epidemic pleurodynia|epidemic myalgia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease +bornite|1 +(noun)|peacock ore|mineral +borodin|1 +(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer +borodino|1 +(noun)|Borodino|pitched battle +boron|1 +(noun)|B|atomic number 5|chemical element|element +boron chamber|1 +(noun)|ionization chamber|ionization tube +boron counter tube|1 +(noun)|proportional counter tube|proportional counter +boron trifluoride|1 +(noun)|fluoride +boronic|1 +(adj)|chemical element|element +borosilicate|1 +(noun)|salt +borough|2 +(noun)|administrative district|administrative division|territorial division +(noun)|town|townspeople|townsfolk +borough english|1 +(noun)|borough English|inheritance|heritage +borrelia|1 +(noun)|spirochete|spirochaete +borrelia burgdorferi|1 +(noun)|Borrelia burgdorferi|Lime disease spirochete|spirochete|spirochaete +borrow|2 +(verb)|get|acquire +(verb)|adopt|take over|take up|accept|take|have +borrow pit|1 +(noun)|pit|cavity +borrower|1 +(noun)|recipient|receiver +borrower's card|1 +(noun)|library card|card|identity card +borrowing|2 +(noun)|adoption|appropriation +(noun)|transaction|dealing|dealings +borrowing cost|1 +(noun)|cost +borsch|1 +(noun)|borsh|borscht|borsht|borshch|bortsch|soup +borscht|1 +(noun)|borsch|borsh|borsht|borshch|bortsch|soup +borscht belt|1 +(noun)|borscht circuit|borsht circuit|borsht belt|resort area|playground|vacation spot +borscht circuit|1 +(noun)|borsht circuit|borscht belt|borsht belt|resort area|playground|vacation spot +borsh|1 +(noun)|borsch|borscht|borsht|borshch|bortsch|soup +borshch|1 +(noun)|borsch|borsh|borscht|borsht|bortsch|soup +borsht|1 +(noun)|borsch|borsh|borscht|borshch|bortsch|soup +borsht belt|1 +(noun)|borscht circuit|borsht circuit|borscht belt|resort area|playground|vacation spot +borsht circuit|1 +(noun)|borscht circuit|borscht belt|borsht belt|resort area|playground|vacation spot +borstal|1 +(noun)|Borstal|reformatory|reform school|training school +bortsch|1 +(noun)|borsch|borsh|borscht|borsht|borshch|soup +borzoi|1 +(noun)|Russian wolfhound|wolfhound +bos|1 +(noun)|Bos|genus Bos|mammal genus +bos'n|1 +(noun)|boatswain|bo's'n|bosun|bo'sun|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bos banteng|1 +(noun)|banteng|banting|tsine|Bos banteng|ox|wild ox +bos grunniens|1 +(noun)|yak|Bos grunniens|ox|wild ox +bos indicus|1 +(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine +bos primigenius|1 +(noun)|aurochs|urus|Bos primigenius|ox|wild ox +bos taurus|1 +(noun)|cattle|cows|kine|oxen|Bos taurus|bovine +bosc|1 +(noun)|pear +bosch|1 +(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master +bose|1 +(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist +bose-einstein statistics|1 +(noun)|Bose-Einstein statistics|law|law of nature +boselaphus|1 +(noun)|Boselaphus|genus Boselaphus|mammal genus +boselaphus tragocamelus|1 +(noun)|nilgai|nylghai|nylghau|blue bull|Boselaphus tragocamelus|antelope +bosh|1 +(noun)|baloney|boloney|bilgewater|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +bosie|1 +(noun)|googly|wrong 'un|bosie ball|bowling +bosie ball|1 +(noun)|googly|wrong 'un|bosie|bowling +bosin's disease|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +bosk|1 +(noun)|forest|wood|woods +boskop man|1 +(noun)|Boskop man|Homo sapiens +boskopoid|1 +(adj)|Homo sapiens +bosky|1 +(adj)|brushy|wooded +bosna i hercegovina|1 +(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country|European nation +bosnia|1 +(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country|European nation +bosnia-herzegovina|1 +(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country|European nation +bosnia and herzegovina|1 +(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country|European nation +bosnian|1 +(adj)|Bosnian|European country|European nation +bosom|8 +(noun)|privacy|privateness|secrecy|concealment +(noun)|breast +(noun)|cloth covering +(noun)|embrace|adoption|acceptance|acceptation|espousal +(noun)|heart|intuition|hunch|suspicion +(noun)|breast|knocker|boob|tit|titty|mammary gland|mamma +(verb)|hide|conceal +(verb)|embrace|hug|squeeze|clasp +bosom of abraham|1 +(noun)|Abraham's bosom|bosom of Abraham|Heaven +bosomed|1 +(adj)|breasted +bosomy|1 +(adj)|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +boson|1 +(noun)|particle +bosporus|1 +(noun)|Bosporus|strait|sound +bosporus bridge|1 +(noun)|Bosporus Bridge|suspension bridge +boss|7 +(adj)|brag|superior +(noun)|foreman|chief|gaffer|honcho|supervisor +(noun)|hirer|employer +(noun)|leader +(noun)|party boss|political boss|politician|politico|pol|political leader +(noun)|knob|projection +(verb)|emboss|stamp|impress|imprint +boss-eyed|1 +(adj)|cross-eyed +boss around|1 +(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|hector|push around|intimidate +bossism|1 +(noun)|domination +bossy|1 +(adj)|autocratic|dominating|high-and-mighty|magisterial|peremptory|domineering +boston|1 +(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital +boston baked beans|1 +(noun)|Boston baked beans|dish +boston brown bread|1 +(noun)|brown bread|Boston brown bread|bread|breadstuff|staff of life +boston bull|1 +(noun)|Boston bull|Boston terrier|terrier +boston cream pie|1 +(noun)|Boston cream pie|cake +boston fern|1 +(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern +boston harbor|1 +(noun)|Boston Harbor|seaport|haven|harbor|harbour +boston ivy|1 +(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine +boston lettuce|1 +(noun)|Boston lettuce|butterhead lettuce +boston rocker|1 +(noun)|Boston rocker|rocking chair|rocker +boston tea party|1 +(noun)|Boston Tea Party|demonstration|manifestation +boston terrier|1 +(noun)|Boston bull|Boston terrier|terrier +bostonian|1 +(noun)|Bostonian|American +bosun|1 +(noun)|boatswain|bos'n|bo's'n|bo'sun|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +bosun's chair|1 +(noun)|boatswain's chair|seat +boswell|2 +(noun)|Boswell|James Boswell|writer|author +(noun)|Boswell|supporter|protagonist|champion|admirer|booster|friend +boswellia|1 +(noun)|Boswellia|genus Boswellia|rosid dicot genus +boswellia carteri|1 +(noun)|Boswellia carteri|incense tree +boswellia serrata|1 +(noun)|salai|Boswellia serrata|incense tree +bosworth field|1 +(noun)|Bosworth Field|pitched battle +bot|1 +(noun)|larva +bota|1 +(noun)|wine bottle +botanic|1 +(adj)|botanical|biology|biological science +botanical|1 +(adj)|botanic|biology|biological science +botanical garden|1 +(noun)|arboretum|facility|installation +botanical medicine|1 +(noun)|phytotherapy|herbal therapy|therapy +botanise|1 +(verb)|botanize|analyze|analyse|break down|dissect|take apart +botanist|1 +(noun)|phytologist|plant scientist|biologist|life scientist +botanize|1 +(verb)|botanise|analyze|analyse|break down|dissect|take apart +botany|1 +(noun)|phytology|biology|biological science +botany bay fig|1 +(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree +botaurus|1 +(noun)|Botaurus|genus Botaurus|bird genus +botaurus lentiginosus|1 +(noun)|American bittern|stake driver|Botaurus lentiginosus|bittern +botaurus stellaris|1 +(noun)|European bittern|Botaurus stellaris|bittern +botch|2 +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|boner|boo-boo|mistake|error|fault +(verb)|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +botch up|1 +(verb)|botch|bumble|fumble|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +botched|1 +(adj)|bungled|unskilled +botcher|1 +(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|butcher|fuckup|incompetent|incompetent person +botchy|1 +(adj)|butcherly|unskillful|unskilled +botfly|1 +(noun)|gadfly +both|1 +(adj)|some +bother|8 +(noun)|fuss|trouble|hassle|perturbation|disturbance +(noun)|annoyance|botheration|pain|infliction|pain in the neck|pain in the ass|negative stimulus +(verb)|trouble oneself|trouble|inconvenience oneself|strive|reach|strain +(verb)|annoy|rag|get to|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease +(verb)|trouble|put out|inconvenience|disoblige|discommode|incommode|affect|impact|bear upon|bear on|touch on|touch +(verb)|intrude|irrupt +(verb)|agitate|rouse|turn on|charge|commove|excite|charge up +(verb)|confuse|flurry|disconcert|put off +botheration|2 +(noun)|irritation|annoyance|vexation|psychological state|mental state +(noun)|annoyance|bother|pain|infliction|pain in the neck|pain in the ass|negative stimulus +bothered|1 +(adj)|daunted|fazed|discomposed +bothersome|1 +(adj)|annoying|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +bothidae|1 +(noun)|Bothidae|family Bothidae|fish family +bothrops|1 +(noun)|Bothrops|genus Bothrops|reptile genus +bothrops atrops|1 +(noun)|fer-de-lance|Bothrops atrops|pit viper +botonee|1 +(adj)|botonnee|buttoned |fastened +botonnee|1 +(adj)|botonee|buttoned |fastened +botox|1 +(noun)|botulinum toxin A|Botox|botulinum toxin +botrychium|1 +(noun)|Botrychium|genus Botrychium|fern genus +botrychium lunaria|1 +(noun)|moonwort|common moonwort|Botrychium lunaria|grape fern +botrychium matricariifolium|1 +(noun)|daisyleaf grape fern|daisy-leaved grape fern|Botrychium matricariifolium|grape fern +botrychium multifidum|1 +(noun)|leathery grape fern|Botrychium multifidum|grape fern +botrychium virginianum|1 +(noun)|rattlesnake fern|Botrychium virginianum|grape fern +botryoid|1 +(adj)|botryoidal|boytrose|vine +botryoidal|1 +(adj)|botryoid|boytrose|vine +botswana|1 +(noun)|Botswana|Republic of Botswana|African country|African nation +botswana monetary unit|1 +(noun)|Botswana monetary unit|monetary unit +botswanan|1 +(adj)|Botswanan|African country|African nation +botticelli|1 +(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master +bottle|4 +(noun)|vessel +(noun)|bottleful|containerful +(verb)|store +(verb)|put|set|place|pose|position|lay +bottle-cordk|1 +(noun)|bottlecap|cap +bottle-fed|1 +(adj)|bottle-fed +bottle-feed|2 +(verb)|breastfeed|suckle|suck|nurse|wet-nurse|lactate|give suck|feed|give +(verb)|bottlefeed|feed|give +bottle-grass|2 +(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle grass|Setaria viridis|foxtail|foxtail grass +(noun)| +bottle-green|1 +(adj)|chromatic +bottle-nosed dolphin|1 +(noun)|bottlenose dolphin|bottlenose|dolphin +bottle-nosed whale|1 +(noun)|bottlenose whale|bottlenose|Hyperoodon ampullatus|beaked whale +bottle-tree|2 +(noun)|bottle tree|tree +(noun)| +bottle bank|1 +(noun)|recycling bin +bottle bill|1 +(noun)|bill|measure +bottle collection|3 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|collection|collecting|assembling|aggregation +(noun)|recycling +bottle gentian|1 +(noun)|closed gentian|blind gentian|Gentiana andrewsii|gentian +bottle gourd|1 +(noun)|calabash|Lagenaria siceraria|gourd|gourd vine +bottle grass|2 +(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle-grass|Setaria viridis|foxtail|foxtail grass +(noun)| +bottle green|1 +(noun)|green|greenness|viridity +bottle opener|1 +(noun)|opener +bottle screw|1 +(noun)|corkscrew|bottle opener +bottle tree|2 +(noun)|bottle-tree|tree +(noun)| +bottle up|1 +(verb)|suppress|restrain|suppress|keep|keep back|hold back +bottlebrush|1 +(noun)|brush +bottlebrush buckeye|1 +(noun)|dwarf buckeye|horse chestnut|buckeye|Aesculus hippocastanum +bottlecap|1 +(noun)|bottle-cordk|cap +bottled gas|1 +(noun)|liquefied petroleum gas|gas|hydrocarbon +bottled water|1 +(noun)|drinking water +bottlefeed|1 +(verb)|feed|give +bottleful|1 +(noun)|bottle|containerful +bottleneck|3 +(noun)|constriction|chokepoint|narrowing +(verb)|obstruct|blockade|block|hinder|stymie|stymy|embarrass +(verb)|narrow|contract +bottlenose|2 +(noun)|bottlenose dolphin|bottle-nosed dolphin|dolphin +(noun)|bottle-nosed whale|bottlenose whale|Hyperoodon ampullatus|beaked whale +bottlenose dolphin|1 +(noun)|bottle-nosed dolphin|bottlenose|dolphin +bottlenose whale|1 +(noun)|bottle-nosed whale|bottlenose|Hyperoodon ampullatus|beaked whale +bottler|1 +(noun)|manufacturer|maker|manufacturing business +bottling plant|1 +(noun)|plant|works|industrial plant +bottom|13 +(adj)|bottom |bottommost|lowermost|nethermost|inferior|lower|nether +(adj)|lowest|minimal +(adj)|poorest|worst +(noun)|underside|undersurface|side|face +(noun)|region|part +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|behind|derriere|fanny|ass|body part +(noun)|bottom of the inning|turn|bout|round +(noun)|bed|natural depression|depression +(noun)|bottomland|land|ground|soil +(noun)|freighter|merchantman|merchant ship|cargo ship|cargo vessel +(verb)|supply|provide|render|furnish +(verb)|hit|strike|impinge on|run into|collide with +(verb)|penetrate|fathom|understand +bottom-up|1 +(adj)|bottom-up +bottom dog|1 +(noun)|subordinate|subsidiary|underling|foot soldier +bottom feeder|3 +(noun)|opportunist|self-seeker +(noun)|scavenger +(noun)|fish +bottom fermentation|1 +(noun)|zymosis|zymolysis|fermentation|fermenting|ferment +bottom fermenting yeast|1 +(noun)|brewer's yeast +bottom fish|1 +(noun)|groundfish|food fish +bottom line|2 +(noun)|line +(noun)|point +bottom of the inning|1 +(noun)|bottom|turn|bout|round +bottom out|2 +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|hit|strike|impinge on|run into|collide with +bottom quark|1 +(noun)|beauty quark|quark +bottom rot|1 +(noun)|plant disease +bottom rot fungus|1 +(noun)|Corticium solani|fungus +bottom round|1 +(noun)|pot roast +bottomed|1 +(adj)|bottomed |bell-bottomed|bell-bottom|copper-bottomed|flat-bottomed|flat-bottom|round-bottomed|round-bottom +bottomland|1 +(noun)|bottom|land|ground|soil +bottomless|4 +(adj)|deep +(adj)|bottomless +(adj)|unlimited |limitless +(adj)|unclothed +bottomlessness|1 +(noun)|deepness|profundity|profoundness +bottommost|1 +(adj)|lowermost|nethermost|bottom +botuliform|1 +(adj)|formed +botulin|1 +(noun)|botulinus toxin|botulismotoxin|bacterial toxin|bioweapon|biological weapon|bioarm +botulinal|1 +(adj)|eubacteria|eubacterium|true bacteria +botulinum|1 +(noun)|botulinus|Clostridium botulinum|eubacteria|eubacterium|true bacteria +botulinum toxin|1 +(noun)|neurotoxin|neurolysin +botulinum toxin a|1 +(noun)|botulinum toxin A|Botox|botulinum toxin +botulinus|1 +(noun)|botulinum|Clostridium botulinum|eubacteria|eubacterium|true bacteria +botulinus toxin|1 +(noun)|botulin|botulismotoxin|bacterial toxin|bioweapon|biological weapon|bioarm +botulism|1 +(noun)|food poisoning|gastrointestinal disorder +botulismotoxin|1 +(noun)|botulin|botulinus toxin|bacterial toxin|bioweapon|biological weapon|bioarm +bouchee|1 +(noun)|patty shell|pastry +boucle|1 +(noun)|fabric|cloth|material|textile +boudoir|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +bouffant|1 +(adj)|puffy|large +bouffe|1 +(noun)|comic opera|opera bouffe|opera comique|opera +bougainvillaea|1 +(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus +bougainville|2 +(noun)|Bougainville|Louis Antoine de Bougainville|explorer|adventurer +(noun)|Bougainville|island +bougainville trench|1 +(noun)|Bougainville Trench|trench|deep|oceanic abyss +bougainvillea|1 +(noun)|vine +bougainvillea glabra|1 +(noun)|paper flower|Bougainvillea glabra|bougainvillea +bough|1 +(noun)|limb|tree branch +boughed|2 +(adj)|boughed +(adj)|limbed +boughless|2 +(adj)|boughless +(adj)|limbless +boughten|1 +(adj)|store-bought|factory-made +bouillabaisse|1 +(noun)|fish stew +bouillon|1 +(noun)|broth +bouillon cube|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +boulder|2 +(noun)|bowlder|rock|stone +(noun)|Boulder|town +boulder clay|1 +(noun)|till|soil|dirt +boulder fern|1 +(noun)|hay-scented|hay-scented fern|scented fern|Dennstaedtia punctilobula|fern +bouldered|1 +(adj)|rocky|bouldery|stony|rough |unsmooth +bouldery|1 +(adj)|rocky|bouldered|stony|rough |unsmooth +boule|1 +(noun)|boulle|buhl|embellishment +boulevard|1 +(noun)|avenue|street +boulez|1 +(noun)|Boulez|Pierre Boulez|composer +boulle|1 +(noun)|boule|buhl|embellishment +bounce|10 +(noun)|bounciness|elasticity|snap +(noun)|leap|leaping|spring|saltation|bound|jump|jumping +(noun)|bouncing|recoil|repercussion|rebound|backlash +(verb)|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet|jump|leap|bound|spring +(verb)|hit +(verb)|jounce|travel|go|move|locomote +(verb)|return|go back|get back|come back +(verb)|jump|leap|bound|spring +(verb)|refuse|reject|pass up|turn down|decline +(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +bounce back|1 +(verb)|get well|get over|better|improve|ameliorate|meliorate +bounce out|1 +(verb)|bounce +bouncer|1 +(noun)|chucker-out|guard +bounciness|1 +(noun)|bounce|elasticity|snap +bouncing|3 +(adj)|healthy +(adj)|bouncy|peppy|spirited|zippy|lively +(noun)|bounce|recoil|repercussion|rebound|backlash +bouncing bess|1 +(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower +bouncing bet|1 +(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower +bouncing betty|1 +(noun)|land mine|ground-emplaced mine|booby trap +bouncing putty|1 +(noun)|silicone|silicone polymer +bouncy|2 +(adj)|live|lively|resilient|springy|whippy|elastic +(adj)|bouncing|peppy|spirited|zippy|lively +bound|26 +(adj)|bound |conjugate|conjugated|conjugate|conjugated +(adj)|bound |chained|enchained|in chains|fettered|in bonds|in fetters|shackled|furled|rolled|pinioned|tethered|trussed|tied|wired|unfree +(adj)|bound |brassbound|cased|half-bound|paperback|paperbacked|well-bound +(adj)|destined|certain |sure +(adj)|bandaged|treated +(adj)|destined|oriented |orientated +(adj)|sworn +(adj)|apprenticed|articled|indentured|unfree +(adj)|constipated +(noun)|boundary|edge|line +(noun)|boundary|bounds|extremity +(noun)|leap|leaping|spring|saltation|bounce|jump|jumping +(verb)|jump|leap|spring|move +(verb)|border|enclose|hold in|confine +(verb)|restrict|restrain|trammel|limit|confine|throttle|control|hold in|hold|contain|check|curb|moderate +(verb)|bounce|resile|take a hop|spring|rebound|recoil|reverberate|ricochet|jump|leap|spring +(verb)|adhere|hold fast|bond|bind|stick|stick to|attach +(verb)|bind|tie|attach|bond|relate +(verb)|bind|attach +(verb)|bind|bandage|fasten|fix|secure +(verb)|tie down|tie up|bind|truss|restrain|confine|hold +(verb)|oblige|bind|hold|obligate|relate +(verb)|bind|adhere|hold fast|bond|bind|stick|stick to +(verb)|bind|cover +(verb)|tie|bind|fasten|fix|secure +(verb)|constipate|bind|indispose +bound form|1 +(noun)|bound morpheme|morpheme +bound morpheme|1 +(noun)|bound form|morpheme +bound off|2 +(verb)|skip|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +(verb)|tie up|bind off|tie|bind +bound up|2 +(adj)|related |related to +(adj)|wrapped up|committed +boundary|3 +(noun)|bound|bounds|extremity +(noun)|edge|bound|line +(noun)|limit|bounds|extent +boundary condition|1 +(noun)|condition|precondition|stipulation +boundary layer|1 +(noun)|physical phenomenon +boundary line|1 +(noun)|border|borderline|delimitation|mete|boundary|bound|bounds +bounded|1 +(adj)|delimited|finite +bounded interval|1 +(noun)|closed interval|interval +boundedness|1 +(noun)|finiteness|finitude|quality +bounden|1 +(adj)|obligatory +bounder|2 +(noun)|cad|blackguard|dog|hound|heel|villain|scoundrel +(noun)|leaper|jumper|athlete|jock +bounderish|1 +(adj)|ill-bred|lowbred|rude|underbred|yokelish|unrefined +boundless|1 +(adj)|unbounded|limitless|infinite +boundlessly|1 +(adv)|immeasurably|infinitely +boundlessness|1 +(noun)|infiniteness|infinitude|unboundedness|limitlessness|quality +bounds|5 +(noun)|boundary|bound|extremity +(noun)|limit|boundary|extent +(noun)|boundary|edge|bound|line +(noun)|boundary|bound|extremity +(noun)|leap|leaping|spring|saltation|bound|bounce|jump|jumping +bounteous|1 +(adj)|big|bighearted|bountiful|freehanded|handsome|giving|liberal|openhanded|generous +bounteously|1 +(adv)|bountifully|plentifully|plenteously +bounteousness|1 +(noun)|bounty|generosity|generousness +bountied|1 +(adj)|rewarding +bountiful|2 +(adj)|big|bighearted|bounteous|freehanded|handsome|giving|liberal|openhanded|generous +(adj)|plentiful|fruitful +bountifully|1 +(adv)|bounteously|plentifully|plenteously +bountifulness|1 +(noun)|amplitude|bounty|abundance|copiousness|teemingness +bounty|4 +(noun)|premium|reward +(noun)|amplitude|bountifulness|abundance|copiousness|teemingness +(noun)|bounteousness|generosity|generousness +(noun)|Bounty|H.M.S. Bounty|ship +bounty hunter|2 +(noun)|pursuer|chaser +(noun)|hunter|huntsman +bouquet|2 +(noun)|corsage|posy|nosegay|flower arrangement +(noun)|fragrance|redolence|sweetness|olfactory property|smell|aroma|odor|odour|scent +bourbon|4 +(noun)|Bourbon|reactionary|ultraconservative|extreme right-winger +(noun)|whiskey|whisky +(noun)|Bourbon|ruler|swayer +(noun)|Bourbon|Bourbon dynasty|dynasty +bourbon dynasty|1 +(noun)|Bourbon|Bourbon dynasty|dynasty +bourdon|1 +(noun)|drone|drone pipe|pipe|tabor pipe +bourgeois|5 +(adj)|capitalistic |capitalist +(adj)|conservative|materialistic|middle-class +(adj)|middle-class +(noun)|businessperson|capitalist +(noun)|burgher|commoner|common man|common person +bourgeoisie|1 +(noun)|middle class|class|social class|socio-economic class +bourgeon|1 +(verb)|shoot|spud|germinate|pullulate|burgeon forth|sprout|grow +bourgogne|1 +(noun)|Bourgogne|Burgundy|French region +bourguignon|1 +(noun)|bourguignon sauce|Burgundy sauce|sauce +bourguignon sauce|1 +(noun)|bourguignon|Burgundy sauce|sauce +bourn|2 +(noun)|bourne|boundary|bound|bounds +(noun)|bourne|goal|end +bourne|2 +(noun)|bourn|boundary|bound|bounds +(noun)|bourn|goal|end +bourse|1 +(noun)|Bourse|stock exchange|stock market|securities market +bourtree|1 +(noun)|black elder|common elder|elderberry|European elder|Sambucus nigra|elder|elderberry bush +bouse|1 +(verb)|bowse|haul|hale|cart|drag +boustrophedon|1 +(noun)|orthography|writing system +boustrophedonic|1 +(adj)|orthography|writing system +bout|3 +(noun)|turn|round|playing period|period of play|play +(noun)|fight|boxing|pugilism|fisticuffs +(noun)|bust|tear|binge|revel|revelry +bouteloua|1 +(noun)|Bouteloua|genus Bouteloua|monocot genus|liliopsid genus +bouteloua eriopoda|1 +(noun)|black grama|Bouteloua eriopoda|grama|grama grass|gramma|gramma grass +bouteloua gracilis|1 +(noun)|blue grama|Bouteloua gracilis|grama|grama grass|gramma|gramma grass +boutique|1 +(noun)|dress shop|shop|store +boutonneuse fever|1 +(noun)|Marseilles fever|Kenya fever|Indian tick fever|disease +boutonniere|1 +(noun)|adornment +bouvier des flandres|1 +(noun)|Bouvier des Flandres|Bouviers des Flandres|shepherd dog|sheepdog|sheep dog +bouviers des flandres|1 +(noun)|Bouvier des Flandres|Bouviers des Flandres|shepherd dog|sheepdog|sheep dog +bouvines|1 +(noun)|Bouvines|pitched battle +bouyei|1 +(noun)|Bouyei|Buyi|Tai +bovid|2 +(adj)|bovine|mammal genus +(noun)|ruminant +bovidae|1 +(noun)|Bovidae|family Bovidae|mammal family +bovinae|1 +(noun)|Bovinae|subfamily Bovinae|mammal family +bovine|3 +(adj)|bovid|mammal genus +(adj)|dull +(noun)|bovid +bovine spongiform encephalitis|1 +(noun)|BSE|mad cow disease|animal disease +bovini|1 +(noun)|Bovini|tribe Bovini|tribe +bovril|1 +(noun)|beef tea|Bovril|infusion|extract +bow|14 +(noun)|bowknot|knot +(noun)|stick +(noun)|fore|prow|stem|front +(noun)|weapon|arm|weapon system +(noun)|arc|curve|curved shape +(noun)|bowing|obeisance|gesture|motion +(noun)|curtain call|thanks +(noun)|decoration|ornament|ornamentation +(noun)|stroke +(verb)|bow down|gesticulate|gesture|motion +(verb)|submit|defer|accede|give in|yield|give in|succumb|knuckle under|buckle under +(verb)|change posture|bow down +(verb)|crouch|stoop|bend|bend|flex +(verb)|play +bow-wow|2 +(noun)|bark +(noun)|pooch|doggie|doggy|barker|dog|domestic dog|Canis familiaris +bow and arrow|1 +(noun)|weapon|arm|weapon system +bow down|2 +(verb)|prostrate|lie down|lie +(verb)|bow|gesticulate|gesture|motion +bow leg|2 +(noun)|bow legs|bandy legs|disability|disablement|handicap|impairment +(noun)|bowleg|genu varum|tibia vara|leg|disability|disablement|handicap|impairment +bow legs|3 +(noun)|bow leg|bandy legs|disability|disablement|handicap|impairment +(noun)|bow leg|bandy legs|disability|disablement|handicap|impairment +(noun)|bowleg|genu varum|tibia vara|leg|disability|disablement|handicap|impairment +bow out|2 +(verb)|chicken out|back off|pull out|back down|retire|withdraw +(verb)|withdraw|retire +bow tie|1 +(noun)|necktie|tie +bow window|1 +(noun)|bay window|window +bow wood|1 +(noun)|osage orange|mock orange|Maclura pomifera|angiospermous yellowwood +bowditch|1 +(noun)|Bowditch|Nathaniel Bowditch|mathematician|astronomer|uranologist|stargazer +bowdler|1 +(noun)|Bowdler|Thomas Bowdler|editor|editor in chief +bowdlerisation|2 +(noun)|bowdlerization|writing|written material|piece of writing +(noun)|bowdlerization|expurgation|castration +bowdlerise|1 +(verb)|bowdlerize|expurgate|castrate|shorten|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +bowdlerism|1 +(noun)|Bowdlerism|censoring|censorship +bowdlerization|2 +(noun)|bowdlerisation|writing|written material|piece of writing +(noun)|bowdlerisation|expurgation|castration +bowdlerize|1 +(verb)|bowdlerise|expurgate|castrate|shorten|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +bowed|5 +(adj)|bent|inclined|unerect +(adj)|bowed +(adj)|arced|arched|arching|arciform|arcuate|curved |curving +(adj)|bandy|bandy-legged|bowleg|bowlegged|unfit +(adj)|bowing|submissive +bowed down|1 +(adj)|loaded down|overburdened|weighed down|burdened +bowed stringed instrument|1 +(noun)|string|stringed instrument +bowel|1 +(noun)|intestine|gut|internal organ|viscus +bowel movement|1 +(noun)|movement|bm|defecation|laxation|shitting +bowelless|1 +(adj)|cutthroat|fierce|merciless |unmerciful +bowels|2 +(noun)|center|centre|midpoint +(noun)|intestine|bowel|gut|internal organ|viscus +bower|2 +(noun)|arbor|arbour|pergola|framework|frame|framing +(verb)|embower|enclose|inclose|shut in +bower actinidia|1 +(noun)|tara vine|Actinidia arguta|vine +bowerbird|1 +(noun)|catbird|oscine|oscine bird +bowery|2 +(adj)|leafy +(noun)|Bowery|street +bowfin|1 +(noun)|grindle|dogfish|Amia calva|ganoid|ganoid fish +bowfront|1 +(adj)|rounded +bowhead|1 +(noun)|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale|whalebone whale +bowhead whale|1 +(noun)|bowhead|Greenland whale|Balaena mysticetus|baleen whale|whalebone whale +bowie|1 +(noun)|Bowie|Jim Bowie|James Bowie|pioneer +bowie knife|1 +(noun)|Bowie knife|knife +bowiea|1 +(noun)|Bowiea|genus Bowiea|liliid monocot genus +bowiea volubilis|1 +(noun)|climbing onion|Bowiea volubilis|herb|herbaceous plant +bowing|3 +(adj)|bowed|submissive +(noun)|bow|obeisance|gesture|motion +(noun)|playing +bowknot|1 +(noun)|bow|knot +bowl|9 +(noun)|vessel +(noun)|trough|concave shape|concavity|incurvation|incurvature +(noun)|dish +(noun)|bowlful|containerful +(noun)|stadium|arena|sports stadium|structure|construction +(noun)|ball +(noun)|pipe bowl|container +(verb)|wheel|roll +(verb)|play +bowl-shaped|1 +(adj)|concave +bowl over|2 +(verb)|overturn|tip over|turn over|upset|knock over|tump over|move|displace +(verb)|flabbergast|boggle|surprise +bowlder|1 +(noun)|boulder|rock|stone +bowleg|2 +(adj)|bandy|bandy-legged|bowed|bowlegged|unfit +(noun)|genu varum|tibia vara|leg|disability|disablement|handicap|impairment +bowlegged|1 +(adj)|bandy|bandy-legged|bowed|bowleg|unfit +bowler|3 +(noun)|cricketer +(noun)|player|participant +(noun)|bowler hat|derby|plug hat|hat|chapeau|lid +bowler hat|1 +(noun)|bowler|derby|plug hat|hat|chapeau|lid +bowlful|1 +(noun)|bowl|containerful +bowline|1 +(noun)|bowline knot|loop knot +bowline knot|1 +(noun)|bowline|loop knot +bowling|3 +(noun)|game +(noun)|throw +(noun)|playing +bowling alley|2 +(noun)|building|edifice +(noun)|alley|skittle alley|lane +bowling ball|1 +(noun)|ball +bowling equipment|1 +(noun)|game equipment +bowling green|2 +(noun)|Bowling Green|town +(noun)|playing field|athletic field|playing area|field +bowling league|1 +(noun)|league|conference +bowling pin|1 +(noun)|pin|bowling equipment +bowling score|1 +(noun)|score +bowling shoe|1 +(noun)|shoe +bowls|8 +(noun)|lawn bowling +(noun)|bowl|vessel +(noun)|bowl|trough|concave shape|concavity|incurvation|incurvature +(noun)|bowl|dish +(noun)|bowl|bowlful|containerful +(noun)|stadium|bowl|arena|sports stadium|structure|construction +(noun)|bowl|ball +(noun)|bowl|pipe bowl|container +bowman|1 +(noun)|archer|expert +bowman's capsule|1 +(noun)|Bowman's capsule|glomerular capsule|capsula glomeruli|membrane|tissue layer +bowse|1 +(verb)|bouse|haul|hale|cart|drag +bowsprit|1 +(noun)|spar +bowstring|1 +(noun)|cord +bowstring hemp|3 +(noun)|hemp +(noun)|natural fiber|natural fibre +(noun)|sansevieria|agave|century plant|American aloe +box|13 +(noun)|container +(noun)|loge|compartment +(noun)|boxful|containerful +(noun)|corner|predicament|quandary|plight +(noun)|rectangle +(noun)|boxwood|shrub|bush +(noun)|area +(noun)|box seat|seat +(noun)|compartment +(noun)|blow +(verb)|package|encase|incase|case +(verb)|hit +(verb)|fight|struggle +box-number|1 +(noun)|mailing address +box beam|1 +(noun)|box girder|beam +box calf|1 +(noun)|calf|calfskin +box camera|1 +(noun)|box Kodak|camera|photographic camera +box coat|1 +(noun)|coat +box elder|1 +(noun)|ash-leaved maple|Acer negundo|maple +box end wrench|1 +(noun)|box wrench|wrench|spanner +box family|1 +(noun)|Buxaceae|family Buxaceae|dicot family|magnoliopsid family +box girder|1 +(noun)|box beam|beam +box huckleberry|1 +(noun)|Gaylussacia brachycera|huckleberry +box in|1 +(verb)|box up|enclose|hold in|confine +box kite|1 +(noun)|kite +box kodak|1 +(noun)|box camera|box Kodak|camera|photographic camera +box office|2 +(noun)|gross|revenue|receipts +(noun)|ticket office|ticket booth|office|business office +box pleat|1 +(noun)|pleat|plait +box seat|2 +(noun)|seat +(noun)|box|seat +box spring|1 +(noun)|bedspring +box tortoise|1 +(noun)|box turtle|turtle +box turtle|1 +(noun)|box tortoise|turtle +box up|1 +(verb)|box in|enclose|hold in|confine +box white oak|1 +(noun)|post oak|brash oak|iron oak|Quercus stellata|oak|oak tree +box wrench|1 +(noun)|box end wrench|wrench|spanner +boxberry|2 +(noun)|partridgeberry|twinberry|Mitchella repens|vine +(noun)|wintergreen|checkerberry|teaberry|spiceberry|berry +boxcar|1 +(noun)|freight car +boxcars|2 +(noun)|twelve|12|XII|dozen +(noun)|boxcar|freight car +boxed|2 +(adj)|bordered +(adj)|boxed-in|boxed in|enclosed +boxed-in|2 +(adj)|boxed|boxed in|enclosed +(adj)| +boxed in|2 +(adj)|boxed|boxed-in|enclosed +(adj)| +boxer|4 +(noun)|pugilist|combatant|battler|belligerent|fighter|scrapper +(noun)|packer|bagger|workman|working man|working person +(noun)|Boxer|Chinese +(noun)|working dog +boxers|5 +(noun)|drawers|underdrawers|shorts|boxershorts|underpants +(noun)|boxer|pugilist|combatant|battler|belligerent|fighter|scrapper +(noun)|packer|bagger|boxer|workman|working man|working person +(noun)|Boxer|Chinese +(noun)|boxer|working dog +boxershorts|1 +(noun)|drawers|underdrawers|shorts|boxers|underpants +boxfish|1 +(noun)|trunkfish|plectognath|plectognath fish +boxful|1 +(noun)|box|containerful +boxing|2 +(noun)|pugilism|fisticuffs|contact sport +(noun)|packing|enclosure|enclosing|envelopment|inclosure +boxing day|1 +(noun)|Boxing Day|legal holiday|national holiday +boxing equipment|1 +(noun)|sports equipment|sporting goods +boxing glove|1 +(noun)|glove|boxing equipment +boxing match|1 +(noun)|match +boxing ring|1 +(noun)|prize ring|ring +boxlike|1 +(adj)|boxy|cubic |three-dimensional +boxthorn|1 +(noun)|matrimony vine|shrub|bush +boxwood|2 +(noun)|Turkish boxwood|wood +(noun)|box|shrub|bush +boxy|1 +(adj)|boxlike|cubic |three-dimensional +boy|4 +(noun)|male child|male|male person +(noun)|man|adult male +(noun)|son|male offspring|man-child +(noun)|Black man +boy scout|2 +(noun)|male child|boy +(noun)|innocent|inexperienced person +boy scouts|3 +(noun)|Boy Scouts|movement|social movement|front +(noun)|boy scout|male child|boy +(noun)|boy scout|innocent|inexperienced person +boy scouts of america|1 +(noun)|Boy Scouts of America|corporation|corp +boy wonder|1 +(noun)|prodigy|male|male person +boycott|2 +(noun)|protest|objection|dissent +(verb)|ostracize|ostracise +boyfriend|1 +(noun)|fellow|beau|swain|young man|man|adult male|lover +boyhood|1 +(noun)|childhood +boyish|1 +(adj)|boylike|schoolboyish|young |immature +boyishly|1 +(adv)|boylike +boyishness|1 +(noun)|masculinity +boykinia|1 +(noun)|Boykinia|genus Boykinia|rosid dicot genus +boykinia elata|1 +(noun)|coast boykinia|Boykinia elata|Boykinia occidentalis|wildflower|wild flower +boykinia occidentalis|1 +(noun)|coast boykinia|Boykinia elata|Boykinia occidentalis|wildflower|wild flower +boyle|2 +(noun)|Boyle|Robert Boyle|chemist +(noun)|Boyle|Kay Boyle|writer|author +boyle's law|1 +(noun)|Boyle's law|Mariotte's law|law|law of nature +boylike|2 +(adj)|boyish|schoolboyish|young |immature +(adv)|boyishly +boyne|1 +(noun)|Boyne|battle of Boyne|pitched battle +boys-and-girls|1 +(noun)|herb mercury|herbs mercury|Mercurialis annua|herb|herbaceous plant +boysenberry|2 +(noun)|boysenberry bush|western blackberry|western dewberry|Rubus ursinus +(noun)|berry +boysenberry bush|1 +(noun)|boysenberry|western blackberry|western dewberry|Rubus ursinus +boytrose|1 +(adj)|botryoid|botryoidal|vine +bozeman|1 +(noun)|Bozeman|town +bozo|2 +(noun)|fathead|goof|goofball|jackass|goose|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +(noun)|guy|cat|hombre|man|adult male +bph|1 +(noun)|benign prostatic hyperplasia|BPH|hyperplasia +bpi|1 +(noun)|bits per inch|concentration|density|denseness|compactness +bpm|1 +(noun)|beats per minute|metronome marking|M.M.|pace|gait +bps|1 +(noun)|bits per second|rate +br|2 +(noun)|bromine|Br|atomic number 35|chemical element|element|halogen +(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization|terrorist group|foreign terrorist organization|FTO +bra|1 +(noun)|brassiere|bandeau|undergarment +brabancon griffon|1 +(noun)|Brabancon griffon|griffon|Brussels griffon|Belgian griffon +brabble|1 +(verb)|quibble|niggle|pettifog|bicker|squabble|argue|contend|debate|fence +brace|13 +(noun)|support|strengthener|reinforcement +(noun)|couple|pair|twosome|twain|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|pair|set +(noun)|punctuation|punctuation mark +(noun)|rope +(noun)|suspender|gallus|clothing|article of clothing|vesture|wear +(noun)|braces|dental appliance +(noun)|bitstock|stock +(noun)|bracing|structural member|strengthener|reinforcement +(verb)|poise|fix|prepare|set up|ready|gear up|set +(verb)|steady|stabilize|stabilise|strengthen|beef up|fortify +(verb)|hold|support|sustain|hold up +(verb)|stimulate|arouse|energize|energise|perk up|affect +brace and bit|1 +(noun)|drill +brace oneself for|1 +(verb)|steel oneself against|steel onself for|prepare for|inure|harden|indurate +brace up|1 +(verb)|undergird|strengthen|beef up|fortify +brace wrench|1 +(noun)|wrench|spanner +braced|2 +(adj)|prepared +(adj)|buttressed|supported +bracelet|2 +(noun)|watchband|watchstrap|wristband|watch bracelet|band +(noun)|bangle|jewelry|jewellery +bracelet wood|1 +(noun)|Jacquinia armillaris|shrub|bush +bracer|2 +(noun)|armguard|protective covering|protective cover|protection +(noun)|pick-me-up|tonic|restorative +bracero|1 +(noun)|laborer|manual laborer|labourer|jack +braces|10 +(noun)|brace|dental appliance +(noun)|brace|support|strengthener|reinforcement +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|pair|brace|set +(noun)|brace|punctuation|punctuation mark +(noun)|brace|rope +(noun)|brace|suspender|gallus|clothing|article of clothing|vesture|wear +(noun)|brace|dental appliance +(noun)|brace|bitstock|stock +(noun)|brace|bracing|structural member|strengthener|reinforcement +brachial|1 +(adj)|limb +brachial artery|1 +(noun)|arteria brachialis|artery|arteria|arterial blood vessel +brachial plexus|1 +(noun)|plexus brachialis|nerve plexus +brachial vein|1 +(noun)|vena brachialis|vein|vena|venous blood vessel +brachiate|3 +(adj)|branchy +(adj)|armed +(verb)|swing|sway +brachiation|1 +(noun)|locomotion|travel +brachinus|1 +(noun)|Brachinus|genus Brachinus|arthropod genus +brachiocephalic vein|1 +(noun)|innominate vein|vena brachiocephalica|vein|vena|venous blood vessel +brachiopod|2 +(adj)|brachiopodous|phylum +(noun)|lamp shell|lampshell|invertebrate +brachiopoda|1 +(noun)|Brachiopoda|phylum Brachiopoda|phylum +brachiopodous|1 +(adj)|brachiopod|phylum +brachium|1 +(noun)|branch|fork|leg|ramification +brachycephalic|1 +(adj)|brachycephalic |brachycranial|brachycranic|broad-headed|roundheaded|short-headed|bullet-headed +brachychiton|1 +(noun)|Brachychiton|genus Brachychiton|dilleniid dicot genus +brachychiton acerifolius|1 +(noun)|flame tree|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree|bottle tree +brachychiton australis|1 +(noun)|flame tree|broad-leaved bottletree|Brachychiton australis|bottle-tree|bottle tree +brachychiton populneus|1 +(noun)|kurrajong|currajong|Brachychiton populneus|bottle-tree|bottle tree +brachychiton rupestris|1 +(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree|bottle tree +brachycome|1 +(noun)|Brachycome|genus Brachycome|asterid dicot genus +brachycome iberidifolia|1 +(noun)|Swan River daisy|Brachycome Iberidifolia|flower +brachycranial|1 +(adj)|brachycephalic |brachycranic|broad-headed|roundheaded|short-headed|bullet-headed +brachycranic|1 +(adj)|brachycephalic |brachycranial|broad-headed|roundheaded|short-headed|bullet-headed +brachydactylia|1 +(noun)|brachytactyly|abnormality|abnormalcy|abnormal condition +brachydactylic|1 +(adj)|brachydactylous|abnormal +brachydactylous|1 +(adj)|brachydactylic|abnormal +brachypterous|1 +(adj)|short-winged|winged +brachystegia|1 +(noun)|Brachystegia|genus Brachystegia|rosid dicot genus +brachystegia speciformis|1 +(noun)|msasa|Brachystegia speciformis|tree +brachytactyly|1 +(noun)|brachydactylia|abnormality|abnormalcy|abnormal condition +brachyura|1 +(noun)|Brachyura|suborder Brachyura|animal order +brachyuran|1 +(noun)|crustacean +brachyurous|1 +(adj)|animal order +bracing|2 +(adj)|brisk|energizing|energising|fresh|refreshing|refreshful|tonic|invigorating +(noun)|brace|structural member|strengthener|reinforcement +bracken|2 +(noun)|Pteridium esculentum|fern +(noun)|pasture brake|brake|Pteridium aquilinum|fern +bracket|7 +(noun)|set +(noun)|square bracket|punctuation|punctuation mark +(noun)|angle bracket|punctuation|punctuation mark +(noun)|support +(verb)|hold|support|sustain|hold up +(verb)|bracket out|edit|redact +(verb)|group +bracket fungus|1 +(noun)|shelf fungus|polypore|pore fungus|pore mushroom +bracket out|1 +(verb)|bracket|edit|redact +bracketed blenny|1 +(noun)|gunnel|blennioid fish|blennioid +brackish|1 +(adj)|briny|salt +brackishness|1 +(noun)|saltiness +bract|1 +(noun)|husk +bracteal|1 +(adj)|husk +bracteate|1 +(adj)|bracteate |bracted|husk +bracted|1 +(adj)|bracteate |husk +bracteolate|1 +(adj)|bract +bracteole|1 +(noun)|bractlet|bract +bractlet|1 +(noun)|bracteole|bract +brad|2 +(noun)|nail +(verb)|fasten|fix|secure +bradawl|1 +(noun)|pricker|awl +bradbury|1 +(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer|author +bradford|1 +(noun)|Bradford|William Bradford|printer|pressman +bradley|2 +(noun)|Bradley|Thomas Bradley|Tom Bradley|politician|politico|pol|political leader +(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general|full general +bradley's spleenwort|1 +(noun)|Bradley's spleenwort|Asplenium bradleyi|spleenwort +bradley method|1 +(noun)|Bradley method of childbirth|Bradley method|natural childbirth +bradley method of childbirth|1 +(noun)|Bradley method of childbirth|Bradley method|natural childbirth +bradstreet|1 +(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet +brady|2 +(noun)|Brady|Mathew B. Brady|photographer|lensman +(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier|moneyman +bradycardia|1 +(noun)|cardiac arrhythmia|arrhythmia +bradypodidae|1 +(noun)|Bradypodidae|family Bradypodidae|mammal family +bradypus|1 +(noun)|Bradypus|genus Bradypus|mammal genus +bradypus tridactylus|1 +(noun)|three-toed sloth|ai|Bradypus tridactylus|sloth|tree sloth +brae|1 +(noun)|hillside +brag|3 +(adj)|boss|superior +(noun)|bragging|crow|crowing|vaporing|line-shooting|gasconade|boast|boasting|self-praise|jactitation +(verb)|boast|tout|swash|shoot a line|gas|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +braga|1 +(noun)|Braga|city|metropolis|urban center +brage|1 +(noun)|Bragi|Brage|Norse deity +bragg|1 +(noun)|Bragg|Braxton Bragg|general|full general +braggadocio|1 +(noun)|bluster|rodomontade|rhodomontade|boast|boasting|self-praise|jactitation +braggart|2 +(adj)|boastful|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +(noun)|bragger|boaster|blowhard|line-shooter|vaunter|egotist|egoist|swellhead +bragger|1 +(noun)|braggart|boaster|blowhard|line-shooter|vaunter|egotist|egoist|swellhead +bragging|2 +(adj)|boastful|braggart|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +(noun)|brag|crow|crowing|vaporing|line-shooting|gasconade|boast|boasting|self-praise|jactitation +braggy|1 +(adj)|boastful|braggart|bragging|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud +bragi|1 +(noun)|Bragi|Brage|Norse deity +brahma|2 +(noun)|Brahma|Hindu deity +(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine +brahman|4 +(noun)|brahmin|aristocrat|blue blood|patrician +(noun)|brahmin|Hindu|Hindoo|Hindustani +(noun)|brahmin|varna +(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine +brahmana|1 +(noun)|Brahmana|Vedic literature|Veda +brahmanism|2 +(noun)|Brahmanism|Brahminism|Hinduism|Hindooism +(noun)|Brahmanism|Brahminism|religion|faith|religious belief +brahmaputra|1 +(noun)|Brahmaputra|Brahmaputra River|river +brahmaputra river|1 +(noun)|Brahmaputra|Brahmaputra River|river +brahmi|1 +(noun)|Brahmi|script +brahmin|4 +(noun)|brahman|aristocrat|blue blood|patrician +(noun)|brahman|Hindu|Hindoo|Hindustani +(noun)|brahman|varna +(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine +brahminic|1 +(adj)|brahminical|aristocrat|blue blood|patrician +brahminical|1 +(adj)|brahminic|aristocrat|blue blood|patrician +brahminism|2 +(noun)|Brahmanism|Brahminism|Hinduism|Hindooism +(noun)|Brahmanism|Brahminism|religion|faith|religious belief +brahms|2 +(noun)|Brahms|Johannes Brahms|composer +(noun)|Brahms|music +brahui|2 +(noun)|Brahui|Pakistani +(noun)|Brahui|North Dravidian +braid|5 +(noun)|plait|tress|twist|hairdo|hair style|coiffure +(noun)|gold braid|braiding|trimming|trim|passementerie +(verb)|lace|plait|weave|tissue +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|pleach|weave|interweave +braided|1 +(adj)|adorned |decorated +braiding|1 +(noun)|braid|gold braid|trimming|trim|passementerie +brail|4 +(noun)|net +(noun)|rope +(verb)|roll up|furl +(verb)|fish +braille|3 +(noun)|Braille|Louis Braille|educator|pedagogue +(noun)|Braille|point system +(verb)|transliterate|transcribe +brain|7 +(noun)|encephalon|neural structure +(noun)|brainpower|learning ability|mental capacity|mentality|wit|intelligence +(noun)|mind|head|psyche|nous|cognition|knowledge|noesis +(noun)|genius|mastermind|Einstein|intellectual|intellect +(noun)|variety meat|organs +(verb)|hit +(verb)|kill +brain-fag|1 +(noun)|mental exhaustion|exhaustion +brain-stem|3 +(noun)|brainstem|brain stem|neural structure +(noun)| +(noun)| +brain-teaser|1 +(noun)|riddle|conundrum|enigma|problem +brain-worker|2 +(noun)|brainworker|thinker +(noun)| +brain cell|1 +(noun)|nerve cell|neuron +brain coral|1 +(noun)|stony coral|madrepore|madriporian coral +brain dead|1 +(adj)|dead +brain death|1 +(noun)|cerebral death|death +brain disease|1 +(noun)|brain disorder|encephalopathy|nervous disorder|neurological disorder|neurological disease +brain disorder|1 +(noun)|encephalopathy|brain disease|nervous disorder|neurological disorder|neurological disease +brain doctor|1 +(noun)|neurologist|specialist|medical specialist +brain drain|1 +(noun)|drain +brain fever|1 +(noun)|cerebrospinal meningitis|epidemic meningitis|cerebrospinal fever|meningitis +brain mushroom|1 +(noun)|Gyromitra esculenta|beefsteak morel|gyromitra +brain science|1 +(noun)|neuroscience +brain stem|3 +(noun)|brainstem|brain-stem|neural structure +(noun)| +(noun)| +brain sugar|1 +(noun)|galactose|sucrose|saccharose +brain surgeon|1 +(noun)|neurosurgeon|surgeon|operating surgeon|sawbones +brain surgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +brain truster|1 +(noun)|backroom boy|adviser|advisor|consultant +brain tumor|1 +(noun)|brain tumour|tumor|tumour|neoplasm +brain tumour|1 +(noun)|brain tumor|tumor|tumour|neoplasm +brain wave|2 +(noun)|brainwave|cortical potential|bioelectricity +(noun)|insight|brainstorm|brainwave|understanding|apprehension|discernment|savvy +braincase|1 +(noun)|cranium|brainpan|bone|os +brainchild|1 +(noun)|inspiration|product|production +brainish|1 +(adj)|hotheaded|impulsive|impetuous|madcap|tearaway|incautious +brainless|1 +(adj)|headless|unintelligent |stupid +brainpan|1 +(noun)|cranium|braincase|bone|os +brainpower|1 +(noun)|brain|learning ability|mental capacity|mentality|wit|intelligence +brainsick|1 +(adj)|crazy|demented|distracted|disturbed|mad|sick|unbalanced|unhinged|insane +brainstem|1 +(noun)|brain-stem|brain stem|neural structure +brainstorm|2 +(noun)|insight|brainwave|understanding|apprehension|discernment|savvy +(verb)|think|cogitate|cerebrate +brainstorming|1 +(noun)|group action +brainwash|2 +(verb)|persuade +(verb)|indoctrinate +brainwashed|1 +(adj)|brainwashed +brainwashing|1 +(noun)|indoctrination +brainwave|2 +(noun)|brain wave|cortical potential|bioelectricity +(noun)|insight|brainstorm|understanding|apprehension|discernment|savvy +brainworker|1 +(noun)|brain-worker|thinker +brainy|1 +(adj)|brilliant|smart as a whip|intelligent +braise|1 +(verb)|cook +braised|1 +(adj)|cooked +braising|1 +(noun)|cooking|cookery|preparation +brake|6 +(noun)|restraint|constraint +(noun)|fern +(noun)|bracken|pasture brake|Pteridium aquilinum|fern +(noun)|brush|brushwood|coppice|copse|thicket +(verb)|stop|halt +(verb)|stop +brake band|1 +(noun)|band +brake cylinder|1 +(noun)|hydraulic brake cylinder|master cylinder|cylinder|piston chamber +brake disk|1 +(noun)|disk|disc +brake drum|1 +(noun)|drum|cylinder +brake failure|1 +(noun)|breakdown|equipment failure +brake light|1 +(noun)|stoplight|visual signal +brake lining|1 +(noun)|lining +brake pads|1 +(noun)|restraint|constraint +brake pedal|1 +(noun)|pedal|treadle|foot pedal|foot lever +brake shoe|1 +(noun)|shoe|skid|restraint|constraint +brake system|1 +(noun)|brakes|brake +brakeman|1 +(noun)|trainman|railroader|railroad man|railwayman|railway man +brakes|5 +(noun)|brake system|brake +(noun)|brake|restraint|constraint +(noun)|brake|fern +(noun)|bracken|pasture brake|brake|Pteridium aquilinum|fern +(noun)|brake|brush|brushwood|coppice|copse|thicket +braky|2 +(adj)|brambly|wooded +(adj)|ferned |ferny +braless|1 +(adj)|bare-breasted|topless|unclothed +bram stoker|1 +(noun)|Stoker|Bram Stoker|Abraham Stoker|writer|author +brama|1 +(noun)|Brama|genus Brama|fish genus +brama raii|1 +(noun)|pomfret|Brama raii|sea bream|bream +bramante|1 +(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect|designer +bramble|1 +(noun)|woody plant|ligneous plant +bramble bush|1 +(noun)|bramble +brambling|1 +(noun)|Fringilla montifringilla|finch +brambly|1 +(adj)|braky|wooded +bramidae|1 +(noun)|Bramidae|family Bramidae|fish family +bramley's seedling|1 +(noun)|Bramley's Seedling|cooking apple +bran|2 +(noun)|chaff|husk|shuck|stalk|straw|stubble +(noun)|roughage +bran-new|1 +(adj)|brand-new|spic-and-span|spick-and-span|new +bran flake|1 +(noun)|cold cereal|dry cereal +bran muffin|1 +(noun)|muffin|gem +branch|8 +(noun)|subdivision|arm|division +(noun)|stalk|stem +(noun)|fork|leg|ramification|subfigure +(noun)|outgrowth|offshoot|offset|consequence|effect|outcome|result|event|issue|upshot +(noun)|stream|watercourse +(noun)|arm|limb|projection +(verb)|ramify|grow +(verb)|ramify|fork|furcate|separate|diverge|branch out +branch line|1 +(noun)|spur track|spur|line|railway line|rail line +branch of knowledge|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|knowledge domain|knowledge base +branch out|1 +(verb)|diversify|broaden|change|alter|vary +branch water|1 +(noun)|water +branched|2 +(adj)|bifurcate|biramous|forked|forficate|pronged|prongy|divided +(adj)|branching|ramose|ramous|ramate|branchy +branched chain|1 +(noun)|open chain +branched chain ketoaciduria|1 +(noun)|maple syrup urine disease|ketonuria|ketoaciduria|acetonuria|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +branchia|1 +(noun)|gill|respiratory organ +branchial|1 +(adj)|respiratory organ +branchial arch|1 +(noun)|gill arch|gill bar|structure|anatomical structure|complex body part|bodily structure|body structure +branchial cleft|1 +(noun)|gill slit|gill cleft|structure|anatomical structure|complex body part|bodily structure|body structure +branchiate|1 +(adj)|branchiate |gilled +branching|3 +(adj)|branched|ramose|ramous|ramate|branchy +(adj)|divergent |diverging +(noun)|ramification|fork|forking|division +branchiobdella|1 +(noun)|Branchiobdella|genus Branchiobdella|worm genus +branchiobdellidae|1 +(noun)|Branchiobdellidae|family Branchiobdellidae|worm family +branchiopod|2 +(adj)|branchiopodan|branchiopodous|class +(noun)|branchiopod crustacean|branchiopodan|crustacean +branchiopod crustacean|1 +(noun)|branchiopod|branchiopodan|crustacean +branchiopoda|1 +(noun)|Branchiopoda|subclass Branchiopoda|class +branchiopodan|2 +(adj)|branchiopod|branchiopodous|class +(noun)|branchiopod crustacean|branchiopod|crustacean +branchiopodous|1 +(adj)|branchiopod|branchiopodan|class +branchiostegidae|1 +(noun)|Branchiostegidae|family Branchiostegidae|fish family +branchiostomidae|1 +(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family +branchiura|1 +(noun)|Branchiura|order Branchiura|animal order +branchless|1 +(adj)|branchless |palmlike|unbranched|unbranching +branchlet|1 +(noun)|twig|sprig|branch +branchy|1 +(adj)|branchy |arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|brachiate|branched|branching|ramose|ramous|ramate|bushy|maplelike|maple-like|mop-headed +brancusi|1 +(noun)|Brancusi|Constantin Brancusi|sculptor|sculpturer|carver|statue maker +brand|9 +(noun)|trade name|brand name|marque|name +(noun)|make|kind|sort|form|variety +(noun)|marker|marking|mark +(noun)|firebrand|firewood +(noun)|mark|stigma|stain|symbol +(noun)|sword|blade|steel|weapon|arm|weapon system +(verb)|mark +(verb)|stigmatize|stigmatise|denounce|mark|label +(verb)|post|call +brand-name drug|1 +(noun)|proprietary drug|drug +brand-new|1 +(adj)|bran-new|spic-and-span|spick-and-span|new +brand-newness|1 +(noun)|newness +brand name|1 +(noun)|trade name|brand|marque|name +branded|2 +(adj)|proprietary +(adj)|branded +brandenburg|1 +(noun)|Brandenburg|geographical area|geographic area|geographical region|geographic region +branding|1 +(noun)|stigmatization|stigmatisation|disapproval +branding iron|1 +(noun)|iron|implement +brandish|3 +(noun)|flourish|wave|waving|wafture +(verb)|flourish|wave|move|displace +(verb)|expose|exhibit|display +brandt|1 +(noun)|Brandt|Willy Brandt|statesman|solon|national leader +brandy|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +brandy glass|1 +(noun)|snifter|brandy snifter|glass|drinking glass +brandy nose|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy +brandy snifter|1 +(noun)|snifter|brandy glass|glass|drinking glass +brandyball|1 +(noun)|candy +brandysnap|1 +(noun)|gingersnap|ginger snap|snap|ginger nut +brant|1 +(noun)|brant goose|brent|brent goose|goose +brant goose|1 +(noun)|brant|brent|brent goose|goose +branta|1 +(noun)|Branta|genus Branta|bird genus +branta bernicla|1 +(noun)|common brant goose|Branta bernicla|brant|brant goose|brent|brent goose +branta canadensis|1 +(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose +branta leucopsis|1 +(noun)|barnacle goose|barnacle|Branta leucopsis|goose +braque|1 +(noun)|Braque|Georges Braque|painter +brasenia|1 +(noun)|Brasenia|genus Brasenia|magnoliid dicot genus +brasenia schreberi|1 +(noun)|water-shield|Brasenia schreberi|water-target|water lily +brash|2 +(adj)|cheeky|nervy|forward +(adj)|daredevil|temerarious|bold +brash oak|1 +(noun)|post oak|box white oak|iron oak|Quercus stellata|oak|oak tree +brashly|1 +(adv)|cheekily|nervily +brashness|2 +(noun)|flashiness|garishness|gaudiness|loudness|meretriciousness|tawdriness|glitz|tastelessness +(noun)|recklessness|foolhardiness|rashness +brasier|1 +(noun)|brazier|heater|warmer +brasil|1 +(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country|South American nation +brasilia|1 +(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital +brass|7 +(noun)|copper-base alloy +(noun)|wind instrument|wind +(noun)|administration|governance|governing body|establishment|organization|organisation|body +(noun)|boldness|nerve|face|cheek|aggressiveness +(noun)|decoration|ornament|ornamentation +(noun)|brass section|section +(noun)|memorial tablet|plaque|memorial|monument +brass band|1 +(noun)|band +brass buttons|1 +(noun)|Cotula coronopifolia|flower +brass hat|1 +(noun)|military officer|officer +brass knuckles|1 +(noun)|brass knucks|knucks|knuckles|knuckle duster|weapon|arm|weapon system +brass knucks|1 +(noun)|knucks|brass knuckles|knuckles|knuckle duster|weapon|arm|weapon system +brass monkey|1 +(noun)|base|pedestal|stand +brass ring|1 +(noun)|opportunity|chance +brass section|1 +(noun)|brass|section +brassaia actinophylla|1 +(noun)|umbrella tree|Schefflera actinophylla|Brassaia actinophylla|shrub|bush +brassard|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +brassavola|1 +(noun)|orchid|orchidaceous plant +brassbound|2 +(adj)|ironclad|inflexible +(adj)|bound +brasserie|1 +(noun)|restaurant|eating house|eating place +brassia|1 +(noun)|Brassia|genus Brassia|monocot genus|liliopsid genus +brassia lawrenceana|1 +(noun)|spider orchid|Brassia lawrenceana|orchid|orchidaceous plant +brassia verrucosa|1 +(noun)|spider orchid|Brassia verrucosa|orchid|orchidaceous plant +brassica|1 +(noun)|Brassica|genus Brassica|dilleniid dicot genus +brassica hirta|1 +(noun)|white mustard|Brassica hirta|Sinapis alba|mustard +brassica juncea|1 +(noun)|chinese mustard|indian mustard|leaf mustard|gai choi|Brassica juncea|mustard +brassica kaber|1 +(noun)|field mustard|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard +brassica napus|1 +(noun)|rape|colza|Brassica napus|mustard +brassica napus napobrassica|1 +(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant +brassica nigra|1 +(noun)|black mustard|Brassica nigra|mustard +brassica oleracea|2 +(noun)|cabbage|cultivated cabbage|Brassica oleracea|crucifer|cruciferous plant +(noun)|wild cabbage|Brassica oleracea|crucifer|cruciferous plant +brassica oleracea acephala|1 +(noun)|kale|kail|cole|borecole|colewort|Brassica oleracea acephala|crucifer|cruciferous plant +brassica oleracea botrytis|1 +(noun)|cauliflower|Brassica oleracea botrytis|crucifer|cruciferous plant +brassica oleracea capitata|1 +(noun)|head cabbage|head cabbage plant|Brassica oleracea capitata|cabbage|cultivated cabbage|Brassica oleracea +brassica oleracea gemmifera|1 +(noun)|brussels sprout|Brassica oleracea gemmifera|crucifer|cruciferous plant +brassica oleracea gongylodes|1 +(noun)|kohlrabi|Brassica oleracea gongylodes|crucifer|cruciferous plant +brassica oleracea italica|1 +(noun)|broccoli|Brassica oleracea italica|crucifer|cruciferous plant +brassica perviridis|1 +(noun)|tendergreen|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer|cruciferous plant +brassica rapa|1 +(noun)|turnip|white turnip|Brassica rapa|turnip plant +brassica rapa chinensis|1 +(noun)|bok choy|bok choi|pakchoi|Chinese white cabbage|Brassica rapa chinensis|crucifer|cruciferous plant +brassica rapa pekinensis|1 +(noun)|Chinese cabbage|celery cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer|cruciferous plant +brassica rapa perviridis|1 +(noun)|tendergreen|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer|cruciferous plant +brassica rapa ruvo|1 +(noun)|broccoli raab|broccoli rabe|Brassica rapa ruvo|crucifer|cruciferous plant +brassicaceae|1 +(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family +brassie|1 +(noun)|wood +brassiere|1 +(noun)|bra|bandeau|undergarment +brasslike|1 +(adj)|brassy|wind instrument|wind +brassy|3 +(adj)|brasslike|wind instrument|wind +(adj)|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +(adj)|audacious|barefaced|bodacious|bold-faced|brazen|brazen-faced|insolent|unashamed +brat|2 +(noun)|terror|little terror|holy terror|imp|scamp|monkey|rascal|rapscallion|scalawag|scallywag +(noun)|bratwurst|pork sausage +bratislava|1 +(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital +brattice|2 +(noun)|partition|divider +(verb)|supply|provide|render|furnish +brattish|1 +(adj)|bratty|impolite +brattle|1 +(verb)|clatter|clack|make noise|resound|noise +brattleboro|1 +(noun)|Brattleboro|town +bratty|1 +(adj)|brattish|impolite +bratwurst|1 +(noun)|brat|pork sausage +braun|2 +(noun)|Braun|Eva Braun|mistress|kept woman|fancy woman +(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer|rocket scientist +braun's holly fern|1 +(noun)|Braun's holly fern|prickly shield fern|Polystichum braunii|holly fern +braunschweig|1 +(noun)|Braunschweig|Brunswick|city|metropolis|urban center +bravado|1 +(noun)|bluster|ostentation|fanfare +bravais lattice|1 +(noun)|space lattice|crystal lattice|Bravais lattice|lattice +brave|6 +(adj)|brave |courageous|fearless|desperate|heroic|gallant|game|gamy|gamey|gritty|mettlesome|spirited|spunky|lionhearted|stalwart|stouthearted|valiant|valorous|undaunted|adventurous|adventuresome|bold|resolute|unafraid|fearless +(adj)|audacious|dauntless|fearless|intrepid|unfearing|bold +(adj)|braw|gay|colorful +(noun)|warrior +(noun)|people +(verb)|weather|endure|brave out|defy|withstand|hold|hold up +brave out|1 +(verb)|weather|endure|brave|defy|withstand|hold|hold up +bravely|1 +(adv)|courageously +bravery|2 +(noun)|courage|courageousness|spirit +(noun)|fearlessness|feeling +braving|1 +(noun)|confronting|coping with|grappling|tackling|attempt|effort|endeavor|endeavour|try +bravo|3 +(noun)|assassin|assassinator|murderer|liquidator|manslayer +(noun)|cheer +(verb)|applaud|clap|spat|acclaim +bravura|1 +(noun)|virtuosity +braw|1 +(adj)|brave|gay|colorful +brawl|3 +(noun)|bash|do|party +(noun)|free-for-all|fight|fighting|combat|scrap +(verb)|wrangle|quarrel|dispute|scrap|argufy|altercate +brawler|1 +(noun)|combatant|battler|belligerent|fighter|scrapper +brawling|1 +(adj)|fighting|disorderly +brawn|1 +(noun)|muscle|sinew|strength +brawny|1 +(adj)|hefty|muscular|powerful|sinewy|strong +braxton-hicks contraction|1 +(noun)|Braxton-Hicks contraction|false labor|contraction|muscular contraction|muscle contraction +braxton bragg|1 +(noun)|Bragg|Braxton Bragg|general|full general +bray|4 +(noun)|cry +(verb)|hee-haw|utter|emit|let out|let loose +(verb)|grind|mash|crunch|comminute|break up|fragment|fragmentize|fragmentise +(verb)|laugh|express joy|express mirth +braze|1 +(verb)|solder +brazen|3 +(adj)|audacious|barefaced|bodacious|bold-faced|brassy|brazen-faced|insolent|unashamed +(adj)|copper-base alloy +(verb)|defy|dare +brazen-faced|1 +(adj)|audacious|barefaced|bodacious|bold-faced|brassy|brazen|insolent|unashamed +brazenness|1 +(noun)|shamelessness|boldness|daring|hardihood +brazier|1 +(noun)|brasier|heater|warmer +brazil|2 +(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country|South American nation +(noun)|brazil nut|edible nut +brazil-nut tree|1 +(noun)|brazil nut|Bertholletia excelsa|nut tree +brazil nut|2 +(noun)|brazil-nut tree|Bertholletia excelsa|nut tree +(noun)|brazil|edible nut +brazilian|2 +(adj)|Brazilian|South American country|South American nation +(noun)|Brazilian|South American +brazilian capital|1 +(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital +brazilian guava|1 +(noun)|Brazilian guava|Psidium guineense|fruit tree +brazilian ironwood|1 +(noun)|Caesalpinia ferrea|tree +brazilian monetary unit|1 +(noun)|Brazilian monetary unit|monetary unit +brazilian pepper tree|1 +(noun)|Brazilian pepper tree|Schinus terebinthifolius|tree +brazilian potato tree|1 +(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub|bush +brazilian rosewood|1 +(noun)|Brazilian rosewood|caviuna wood|jacaranda|Dalbergia nigra|rosewood|rosewood tree +brazilian trumpeter|1 +(noun)|Brazilian trumpeter|Psophia crepitans|trumpeter +brazilwood|2 +(noun)|wood +(noun)|peachwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree +brazos|1 +(noun)|Brazos|Brazos River|river +brazos river|1 +(noun)|Brazos|Brazos River|river +brazzaville|1 +(noun)|Brazzaville|national capital +breach|5 +(noun)|failure +(noun)|opening|gap +(noun)|rupture|break|severance|rift|falling out|separation|breakup|detachment +(verb)|transgress|offend|infract|violate|go against|break|disrespect +(verb)|gap|open|open up +breach of contract|1 +(noun)|breach +breach of duty|1 +(noun)|breach +breach of promise|1 +(noun)|breach of contract +breach of the covenant of warranty|1 +(noun)|breach of contract +breach of the peace|1 +(noun)|disorderly conduct|disorderly behavior|disturbance of the peace|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +breach of trust|1 +(noun)|breach of contract +breach of trust with fraudulent intent|1 +(noun)|larceny|theft|thievery|thieving|stealing +breach of warranty|1 +(noun)|breach of contract +breached|1 +(adj)|broken +bread|3 +(noun)|breadstuff|staff of life|baked goods +(noun)|boodle|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(verb)|cover +bread-bin|1 +(noun)|breadbox|container +bread-stick|2 +(noun)|breadstick|bread|breadstuff|staff of life +(noun)| +bread and butter|1 +(noun)|support|keep|livelihood|living|sustenance|resource +bread and butter pickle|1 +(noun)|sweet pickle +bread board|2 +(noun)|breadboard|board +(noun)| +bread dough|1 +(noun)|dough +bread knife|1 +(noun)|knife +bread line|2 +(noun)|breadline|queue|waiting line +(noun)| +bread maker|1 +(noun)|baker|skilled worker|trained worker +bread mold|1 +(noun)|Rhizopus nigricans|rhizopus +bread sauce|1 +(noun)|sauce +breadbasket|3 +(noun)|region +(noun)|stomach|tummy|tum|internal organ|viscus +(noun)|basket|handbasket +breadboard|1 +(noun)|bread board|board +breadbox|1 +(noun)|bread-bin|container +breadcrumb|1 +(noun)|crumb +breadfruit|2 +(noun)|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree +(noun)|edible fruit +breadfruit tree|1 +(noun)|breadfruit|Artocarpus communis|Artocarpus altilis|fruit tree +breadline|1 +(noun)|bread line|queue|waiting line +breadroot|1 +(noun)|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb|herbaceous plant +breadstick|1 +(noun)|bread-stick|bread|breadstuff|staff of life +breadstuff|2 +(noun)|bread|staff of life|baked goods +(noun)|foodstuff|food product +breadth|2 +(noun)|comprehensiveness|intelligence +(noun)|width|dimension +breadth index|1 +(noun)|cephalic index|cranial index|ratio +breadthways|1 +(adv)|breadthwise|broadwise +breadthwise|1 +(adv)|breadthways|broadwise +breadwinner|1 +(noun)|earner|wage earner +break|72 +(noun)|interruption|happening|occurrence|natural event +(noun)|good luck|happy chance|accident|fortuity|chance event +(noun)|fault|geological fault|shift|fracture|crack|cleft|crevice|fissure|scissure +(noun)|rupture|breach|severance|rift|falling out|separation|breakup|detachment +(noun)|respite|recess|time out|pause +(noun)|breakage|breaking|change of integrity +(noun)|pause|intermission|interruption|suspension|time interval|interval +(noun)|fracture|injury|hurt|harm|trauma +(noun)|separation|breakup|detachment +(noun)|stroke|shot +(noun)|break of serve|score +(noun)|interruption|disruption|gap|delay|holdup +(noun)|dash|sprint +(noun)|open frame|score +(noun)|breakout|jailbreak|gaolbreak|prisonbreak|prison-breaking|escape|flight +(verb)|interrupt|end|terminate +(verb)|separate|split up|fall apart|come apart|change integrity|break up8 +(verb)|separate|divide +(verb)|damage +(verb)|bust|destroy|ruin|break up|break apart|break off|break up|break down +(verb)|transgress|offend|infract|violate|go against|breach|disrespect +(verb)|break out|break away|escape|get away|break loose +(verb)|disperse|dissipate|scatter|spread out +(verb)|burst|erupt|express emotion|express feelings +(verb)|break off|discontinue|stop|end|terminate +(verb)|break in|trespass|intrude +(verb)|break in|domesticate|domesticize|domesticise|reclaim|tame +(verb)|violate|go against +(verb)|better|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|give away|let out|tell +(verb)|become|go|get +(verb)|fail|go bad|give way|die|give out|conk out|go|break down|change +(verb)|break away|separate|part|split up|split|break up +(verb)|flee|fly|take flight +(verb)|collapse|fall in|cave in|give|give way|founder +(verb)|dampen|damp|soften|weaken|deaden|blunt +(verb)|change +(verb)|end|stop|finish|terminate|cease +(verb)|change|alter|vary +(verb)|discontinue|stop|cease|give up|quit|lay off +(verb)|come forth|emerge +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|ruin +(verb)|invalidate|annul|quash|void|avoid|nullify +(verb)|separate|part|split up|split|break up +(verb)|demote|bump|relegate|kick downstairs|delegate|designate|depute|assign +(verb)|bankrupt|ruin|smash|impoverish +(verb)|switch|shift|change +(verb)|appear +(verb)|collapse|fall in|cave in|give|give way|founder|change +(verb)|break dance|break-dance|dance|trip the light fantastic|trip the light fantastic toe +(verb)|change|exchange|commute|convert +(verb)|break up|change|alter|modify +(verb)|shoot +(verb)|separate|disunite|divide|part +(verb)|wear|wear out|bust|fall apart|decay|crumble|delapidate|break away|break off|break up|break apart +(verb)|break off|snap off|detach +(verb)|penetrate|perforate +(verb)|get out|get around +(verb)|pause|intermit|interrupt|disrupt|break up|cut off +(verb)|interrupt|disrupt|break up|cut off +(verb)|diphthongize|diphthongise +(verb)|destroy|ruin +(verb)|solve|work out|figure out|puzzle out|lick|work +(verb)|switch|shift|change +(verb)|recrudesce|develop|happen|hap|go on|pass off|occur|pass|fall out|come about|take place|break out|break through +(verb)|crack|check|change +(verb)|change state|turn +(verb)|decrease|diminish|lessen|fall +(verb)|fracture|injure|wound +(verb)|decrease|diminish|lessen|fall +(verb)|weaken +break-axe|2 +(noun)|breakax|breakaxe|Sloanea jamaicensis|tree +(noun)| +break-dance|2 +(verb)|break dance|break|dance|trip the light fantastic|trip the light fantastic toe +(verb)| +break-in|1 +(noun)|housebreaking|breaking and entering|burglary +break apart|3 +(verb)|disassemble|dismantle|take apart|break up|destroy|destruct +(verb)|crash|break up|disintegrate +(verb)|disunify|separate|part|split up|split|break|break up +break away|5 +(verb)|chip|chip off|come off|break off|separate|divide|part +(verb)|break|break out|escape|get away|break loose +(verb)|break|separate|part|split up|split|break|break up +(verb)|secede|splinter|separate|part|split up|split|break|break up +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|leave|go forth|go away +break bread|1 +(verb)|eat +break camp|1 +(verb)|decamp|depart|take leave|quit +break dance|3 +(noun)|break dancing|dancing|dance|terpsichore|saltation +(verb)|break-dance|break|dance|trip the light fantastic|trip the light fantastic toe +(verb)| +break dancing|1 +(noun)|break dance|dancing|dance|terpsichore|saltation +break down|8 +(verb)|analyze|analyse|dissect|take apart +(verb)|crush|change|alter|modify +(verb)|lose it|snap|act|behave|do +(verb)|fail|go bad|give way|die|give out|conk out|go|break|change +(verb)|decompose|break up|separate +(verb)|crumble|crumple|tumble|collapse|change integrity +(verb)|break|bust +(verb)|collapse|suffer|sustain|have|get +break even|1 +(verb)|reach|hit|attain +break in|6 +(verb)|break|trespass|intrude +(verb)|chime in|cut in|put in|butt in|chisel in|barge in|interrupt|disrupt|break up|cut off +(verb)|get down|begin|get|start out|start|set about|set out|commence +(verb)|intrude|irrupt +(verb)|break +(verb)|break|domesticate|domesticize|domesticise|reclaim|tame +break into|2 +(verb)|utter|emit|let out|let loose +(verb)|change +break loose|2 +(verb)|explode|burst forth|change state|turn +(verb)|escape|get away|flee|fly|take flight +break of day|1 +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +break of serve|1 +(noun)|break|score +break of the day|1 +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|dayspring|sunrise|sunup|cockcrow|hour|time of day +break off|5 +(verb)|cut short|break short|interrupt|break +(verb)|break|discontinue|stop|end|terminate +(verb)|chip|chip off|come off|break away|separate|divide|part +(verb)|break|snap off|detach +(verb)|chip|knap|cut off|cut +break one's back|1 +(verb)|slave|buckle down|knuckle down|work|do work +break open|3 +(verb)|open|open up +(verb)|burst|split|break|separate|split up|fall apart|come apart +(verb)|erupt|irrupt|flare up|flare|burst out|intensify|deepen +break out|5 +(verb)|erupt|begin|start +(verb)|begin|start +(verb)|break|break away|escape|get away|break loose +(verb)|unpack|take out +(verb)|erupt|recrudesce|afflict|trouble|ail|pain +break seal|1 +(noun)|seal +break short|1 +(verb)|cut short|break off|interrupt|break +break through|3 +(verb)|crack|pass|go through|go across +(verb)|come through|appear +(verb)|erupt|come out|push through|appear +break up|19 +(verb)|disperse|dissipate|dispel|scatter|separate|divide +(verb)|separate|part|split up|split|break +(verb)|separate|part|split +(verb)|crash|break apart|disintegrate +(verb)|interrupt|disrupt|cut off|break|break off|discontinue|stop +(verb)|dissolve|resolve|change integrity +(verb)|crack up|crack|crock up|collapse|suffer|sustain|have|get +(verb)|disassemble|dismantle|take apart|break apart|destroy|destruct +(verb)|break|change|alter|modify +(verb)|sever|separate|disunite|divide|part +(verb)|pick|pierce +(verb)|calve|separate|divide|part +(verb)|adjourn|recess|end|stop|finish|terminate|cease +(verb)|dissolve|end|terminate +(verb)|dissolve|end|terminate +(verb)|fragment|fragmentize|fragmentise|break|separate|split up|fall apart|come apart +(verb)|disperse|scatter|change integrity +(verb)|decompose|break down|separate +(verb)|crack up|laugh|express joy|express mirth +break water|1 +(verb)|fin|swim +break wind|1 +(verb)|fart|act involuntarily|act reflexively +break with|1 +(verb)|separate|part|split up|split|break|break up +breakability|1 +(noun)|fragility|vulnerability +breakable|2 +(adj)|breakable |brittle|brickle|brickly|crumbly|delicate|fragile|frail|frangible|splintery|friable +(noun)|article +breakableness|1 +(noun)|consistency|consistence|body +breakage|3 +(noun)|indefinite quantity +(noun)|reimbursement +(noun)|break|breaking|change of integrity +breakaway|2 +(adj)|fissiparous|separatist|independent +(noun)|breaking away|secession|withdrawal +breakax|1 +(noun)|breakaxe|break-axe|Sloanea jamaicensis|tree +breakaxe|1 +(noun)|breakax|break-axe|Sloanea jamaicensis|tree +breakbone fever|1 +(noun)|dengue|dengue fever|dandy fever|infectious disease +breakdown|4 +(noun)|dislocation|disruption|perturbation +(noun)|crack-up|collapse +(noun)|equipment failure|failure +(noun)|partitioning|analysis|analytic thinking +breaker|3 +(noun)|ledgeman|quarryman|quarrier +(noun)|surf|breakers|wave|moving ridge +(noun)|circuit breaker|fuse|electrical fuse +breaker point|1 +(noun)|distributor point|point|contact|tangency +breakers|4 +(noun)|surf|breaker|wave|moving ridge +(noun)|breaker|ledgeman|quarryman|quarrier +(noun)|surf|breaker|wave|moving ridge +(noun)|circuit breaker|breaker|fuse|electrical fuse +breakfast|3 +(noun)|meal|repast +(verb)|eat +(verb)|feed|give +breakfast area|1 +(noun)|breakfast nook|area +breakfast food|1 +(noun)|food +breakfast nook|1 +(noun)|breakfast area|area +breakfast table|1 +(noun)|table +breakfast time|1 +(noun)|mealtime +breaking|2 +(adj)|collapse|fall in|cave in|give|give way|break|founder +(noun)|breakage|break|change of integrity +breaking and entering|1 +(noun)|housebreaking|break-in|burglary +breaking away|2 +(noun)|breakaway|secession|withdrawal +(noun)|departure|going|going away|leaving +breaking ball|1 +(noun)|curve|curve ball|bender|pitch|delivery +breaking off|1 +(noun)|abruption|break|interruption|disruption|gap +breaking point|2 +(noun)|tension|tenseness|stress +(noun)|stress +breaking wind|1 +(noun)|fart|farting|flatus|wind|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +breakneck|1 +(adj)|dangerous |unsafe +breakout|1 +(noun)|break|jailbreak|gaolbreak|prisonbreak|prison-breaking|escape|flight +breakstone|1 +(noun)|saxifrage|rockfoil|herb|herbaceous plant +breakthrough|3 +(noun)|discovery|find|insight|brainstorm|brainwave +(noun)|discovery|find|uncovering +(noun)|penetration|incursion +breakup|2 +(noun)|dissolution|termination|ending|conclusion +(noun)|separation|detachment|change|alteration|modification +breakwater|1 +(noun)|groin|groyne|mole|bulwark|seawall|jetty|barrier +bream|5 +(noun)|freshwater bream|freshwater fish +(noun)|sea bream|saltwater fish +(noun)|sea bream|percoid fish|percoid|percoidean +(noun)|freshwater bream|sunfish|centrarchid +(verb)|clean|make clean +breast|6 +(noun)|body part +(noun)|bosom|knocker|boob|tit|titty|mammary gland|mamma +(noun)|white meat|helping|portion|serving +(verb)|converge|meet +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|front|confront|face +breast-deep|1 +(adv)|breast-high +breast-fed|1 +(adj)|breast-fed |nursed|suckled +breast-high|1 +(adv)|breast-deep +breast cancer|1 +(noun)|carcinoma +breast drill|1 +(noun)|drill +breast feeding|1 +(noun)|nursing|infant feeding +breast implant|1 +(noun)|implant +breast of lamb|1 +(noun)|poitrine d'agneau|cut of lamb +breast of veal|1 +(noun)|veal roast|roast veal +breast pocket|1 +(noun)|pocket +breastbone|1 +(noun)|sternum|bone|os +breasted|1 +(adj)|breasted |bosomed +breastfeed|1 +(verb)|bottle-feed|suckle|suck|nurse|wet-nurse|lactate|give suck|feed|give +breastless|1 +(adj)|breastless +breastpin|1 +(noun)|brooch|broach|pin +breastplate|1 +(noun)|aegis|egis|armor plate|armour plate|armor plating|plate armor|plate armour +breaststroke|2 +(noun)|swimming stroke +(verb)|swim +breaststroker|1 +(noun)|swimmer +breastwork|1 +(noun)|parapet|fortification|munition +breath|5 +(noun)|bodily process|body process|bodily function|activity +(noun)|air +(noun)|breather|breathing place|breathing space|breathing spell|breathing time|respite|rest|relief|rest period +(noun)|hint|intimation|suggestion|proposition|proffer +(noun)|breeze|zephyr|gentle wind|air +breath of fresh air|1 +(noun)|easing|moderation|relief +breathalyse|1 +(verb)|breathalyze|check +breathalyser|1 +(noun)|breathalyzer|device +breathalyze|1 +(verb)|breathalyse|check +breathalyzer|1 +(noun)|breathalyser|device +breathe|9 +(verb)|take a breath|respire|suspire|breathe out|breathe in +(verb)|exist|survive|live|subsist +(verb)|instill|transfuse +(verb)|be +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|convey|impart +(verb)|rest|catch one's breath|take a breather|pause|intermit|break +(verb)|oxidize|oxidise|oxidate +(verb)|emit|pass off|discharge|expel|eject|release +breathe in|1 +(verb)|inhale|inspire|breathe|take a breath|respire|suspire +breathe out|1 +(verb)|exhale|expire|breathe|take a breath|respire|suspire +breathed|2 +(adj)|breathing |eupneic|eupnoeic +(adj)|voiceless|inaudible |unhearable +breather|2 +(noun)|breath|breathing place|breathing space|breathing spell|breathing time|respite|rest|relief|rest period +(noun)|snorkel|schnorkel|schnorchel|snorkel breather|air passage|air duct|airway +breathing|2 +(adj)|breathing |eupneic|eupnoeic|breathed|exhaling|huffing|puffing|puffy|inhaling|snoring|snorting +(noun)|external respiration|respiration|ventilation|bodily process|body process|bodily function|activity +breathing apparatus|1 +(noun)|breathing device|breathing machine|ventilator|device +breathing device|1 +(noun)|breathing apparatus|breathing machine|ventilator|device +breathing in|1 +(noun)|inhalation|inspiration|aspiration|breath +breathing machine|1 +(noun)|breathing device|breathing apparatus|ventilator|device +breathing out|1 +(noun)|exhalation|expiration|breath +breathing place|1 +(noun)|breath|breather|breathing space|breathing spell|breathing time|respite|rest|relief|rest period +breathing room|1 +(noun)|breathing space|room|way|elbow room +breathing space|2 +(noun)|breath|breather|breathing place|breathing spell|breathing time|respite|rest|relief|rest period +(noun)|breathing room|room|way|elbow room +breathing spell|1 +(noun)|breath|breather|breathing place|breathing space|breathing time|respite|rest|relief|rest period +breathing time|1 +(noun)|breath|breather|breathing place|breathing space|breathing spell|respite|rest|relief|rest period +breathless|3 +(adj)|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal|asphyxiating|smothering|suffocating|suffocative|blown|gasping|out of breath|panting|pursy|short-winded|winded|unventilated +(adj)|breathtaking|exciting +(adj)|inanimate|pulseless|dead +breathlessly|1 +(adv)|gaspingly +breathlessness|1 +(noun)|shortness of breath|SOB|dyspnea|dyspnoea +breathtaking|1 +(adj)|breathless|exciting +breccia|1 +(noun)|rudaceous rock +brecciate|2 +(verb)|form +(verb)|break up|fragment|fragmentize|fragmentise +brecht|1 +(noun)|Brecht|Bertolt Brecht|dramatist|playwright|poet +breech|1 +(noun)|rear of barrel|rear of tube|opening +breech-loading|1 +(adj)|gun +breech birth|1 +(noun)|breech delivery|breech presentation|delivery|obstetrical delivery +breech closer|1 +(noun)|breechblock|blockage|block|closure|occlusion|stop|stoppage +breech delivery|1 +(noun)|breech birth|breech presentation|delivery|obstetrical delivery +breech presentation|1 +(noun)|breech delivery|breech birth|delivery|obstetrical delivery +breechblock|1 +(noun)|breech closer|blockage|block|closure|occlusion|stop|stoppage +breechcloth|1 +(noun)|breechclout|loincloth|G-string|garment +breechclout|1 +(noun)|breechcloth|loincloth|G-string|garment +breeched|1 +(adj)|pantalooned|trousered|clothed |clad +breeches|2 +(noun)|knee breeches|knee pants|knickerbockers|knickers|trousers|pants +(noun)|breech|rear of barrel|rear of tube|opening +breeches buoy|1 +(noun)|life buoy|lifesaver|life belt|life ring +breechloader|1 +(noun)|gun +breed|8 +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +(noun)|strain|stock|variety|animal group +(noun)|half-breed|half-caste +(noun)|strain|ancestry|lineage|derivation|filiation +(verb)|engender|spawn|cause|do|make +(verb)|cover|copulate|mate|pair|couple +(verb)|produce|make|create +(verb)|multiply|reproduce|procreate|multiply +breeder|1 +(noun)|stock breeder|stockman|stock raiser|stock farmer +breeder reactor|1 +(noun)|nuclear reactor|reactor +breeding|6 +(adj)|fruitful +(noun)|genteelness|gentility|elegance +(noun)|education|training|upbringing +(noun)|bringing up|fostering|fosterage|nurture|raising|rearing|upbringing|socialization|socialisation|acculturation|enculturation +(noun)|production +(noun)|reproduction|procreation|facts of life|sexual activity|sexual practice|sex|sex activity +breeding ground|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +breeze|4 +(noun)|zephyr|gentle wind|air|wind|air current|current of air +(noun)|cinch|picnic|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking|project|task|labor +(verb)|blow +(verb)|travel|go|move|locomote|breeze through +breeze block|1 +(noun)|cinder block|clinker block|building block +breeze through|1 +(verb)|ace|pass with flying colors|sweep through|sail through|nail|pass|make it +breeziness|2 +(noun)|windiness|storminess +(noun)|jauntiness|liveliness|life|spirit|sprightliness +breezy|2 +(adj)|lively +(adj)|blowy|windy|stormy +bregma|1 +(noun)|craniometric point +bregmatic|1 +(adj)|craniometric point +breiz|1 +(noun)|Bretagne|Brittany|Breiz|French region +bren|1 +(noun)|Bren|Bren gun|submachine gun +bren gun|1 +(noun)|Bren|Bren gun|submachine gun +brenner pass|1 +(noun)|Brenner Pass|pass|mountain pass|notch +brent|1 +(noun)|brant|brant goose|brent goose|goose +brent goose|1 +(noun)|brant|brant goose|brent|goose +brescia|1 +(noun)|Brescia|city|metropolis|urban center +breslau|1 +(noun)|Wroclaw|Breslau|city|metropolis|urban center +brest|1 +(noun)|Brest|city|metropolis|urban center|port +bret harte|1 +(noun)|Harte|Bret Harte|writer|author +bretagne|1 +(noun)|Bretagne|Brittany|Breiz|French region +brethren|6 +(noun)|sect|religious sect|religious order +(noun)|brother|blood brother|male sibling +(noun)|brother|member +(noun)|buddy|brother|chum|crony|pal|sidekick|friend +(noun)|brother|comrade|friend +(noun)|Brother|monk|monastic +breton|2 +(noun)|Breton|Frenchman|Frenchwoman|French person +(noun)|Breton|Brythonic|Brittanic +breuer|1 +(noun)|Breuer|Marcel Lajos Breuer|architect|designer +breughel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +breughel the elder|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +breve|1 +(noun)|diacritical mark|diacritic +brevet|2 +(noun)|document|written document|papers +(verb)|promote|upgrade|advance|kick upstairs|raise|elevate +breviary|1 +(noun)|prayer book|prayerbook +brevibloc|1 +(noun)|esmolol|Brevibloc|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +brevicipitidae|1 +(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family +brevity|2 +(noun)|terseness +(noun)|briefness|transience|duration|length +brevoortia|1 +(noun)|Brevoortia|genus Brevoortia|fish genus +brevoortia tyrannis|1 +(noun)|menhaden|Brevoortia tyrannis|clupeid fish|clupeid +brew|3 +(noun)|brewage|alcohol|alcoholic beverage|intoxicant|inebriant +(verb)|create from raw material|create from raw stuff +(verb)|soak|imbue +brewage|1 +(noun)|brew|alcohol|alcoholic beverage|intoxicant|inebriant +brewer|2 +(noun)|beer maker|maker|shaper +(noun)|manufacturer|producer +brewer's mole|1 +(noun)|hair-tailed mole|Parascalops breweri|mole +brewer's mountain heather|1 +(noun)|purple heather|Brewer's mountain heather|Phyllodoce breweri|heath +brewer's spruce|1 +(noun)|weeping spruce|Brewer's spruce|Picea breweriana|spruce +brewer's yeast|2 +(noun)|yeast|barm +(noun)|baker's yeast|Saccharomyces cerevisiae|yeast +brewery|1 +(noun)|distillery|still +brewing|1 +(noun)|production +brezhnev|1 +(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman|solon|national leader +briar|4 +(noun)|sweetbrier|sweetbriar|brier|eglantine|Rosa eglanteria|rose +(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|brier|Smilax rotundifolia|vine +(noun)|tree heath|brier|Erica arborea|erica|true heath +(noun)|briar pipe|pipe|tobacco pipe +briar pipe|1 +(noun)|briar|pipe|tobacco pipe +briard|1 +(noun)|shepherd dog|sheepdog|sheep dog +briarroot|1 +(noun)|root +briarwood|1 +(noun)|brierwood|brier-wood|wood +briary|1 +(adj)|barbed|barbellate|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +bribable|1 +(adj)|corruptible|dishonest|purchasable|venal|corrupt +bribe|2 +(noun)|payoff|payment +(verb)|corrupt|buy|grease one's palms|pay +briber|1 +(noun)|suborner|criminal|felon|crook|outlaw|malefactor +bribery|1 +(noun)|graft|felony +bric-a-brac|1 +(noun)|knickknack|nicknack|knickknackery|whatnot|curio|curiosity|oddity|oddment|peculiarity|rarity +brick|2 +(noun)|ceramic|building material +(noun)|good person +brick cheese|1 +(noun)|cheese +brick in|1 +(verb)|brick up|brick over|wall in|wall up +brick over|1 +(verb)|brick in|brick up|wall in|wall up +brick red|1 +(noun)|reddish brown|sepia|burnt sienna|Venetian red +brick trowel|1 +(noun)|mason's trowel|trowel +brick up|1 +(verb)|brick in|brick over|wall in|wall up +brickbat|2 +(noun)|fragment +(noun)|criticism|unfavorable judgment +brickellia|1 +(noun)|Brickellia|genus Brickelia|asterid dicot genus +brickfield|1 +(noun)|brickyard|workshop|shop +brickkiln|1 +(noun)|kiln +bricklayer|1 +(noun)|craftsman|artisan|journeyman|artificer +bricklayer's hammer|1 +(noun)|hammer +bricklaying|1 +(noun)|masonry +brickle|1 +(adj)|brittle|brickly|breakable +brickly|1 +(adj)|brittle|brickle|breakable +bricks and mortar|1 +(noun)|building material +brickwork|1 +(noun)|masonry +brickyard|1 +(noun)|brickfield|workshop|shop +bricole|1 +(noun)|catapult|arbalest|arbalist|ballista|mangonel|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +bridal|3 +(adj)|nuptial|spousal|ceremony|ceremonial|ceremonial occasion|observance +(adj)|participant +(noun)|espousal|marriage|wedding|marriage ceremony +bridal-wreath|3 +(noun)|bridal wreath|Francoa ramosa|shrub|bush +(noun)|bridal wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea|spiraea +(noun)| +bridal gown|1 +(noun)|wedding gown|wedding dress|gown +bridal wreath|3 +(noun)|bridal-wreath|Francoa ramosa|shrub|bush +(noun)|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea|spiraea +(noun)| +bride|3 +(noun)|newlywed|honeymooner +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +(noun)|participant +bride's bonnet|1 +(noun)|queen's cup|Clintonia uniflora|clintonia|Clinton's lily +bride-gift|1 +(noun)|wedding present|wedding gift +bride-to-be|1 +(noun)|fiancee|betrothed +bride price|1 +(noun)|gift +bridecake|1 +(noun)|wedding cake|cake +bridegroom|2 +(noun)|groom|newlywed|honeymooner +(noun)|groom|participant +bridesmaid|1 +(noun)|maid of honor|attendant|attender|tender|woman|adult female +bridge|12 +(noun)|span|structure|construction +(noun)|bridge circuit|circuit|electrical circuit|electric circuit +(noun)|connection|connexion|connectedness +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|card game|cards +(noun)|support +(noun)|bridgework|denture|dental plate|plate +(noun)|nosepiece|link|linkup|tie|tie-in +(noun)|bridge deck|upper deck +(verb)|bridge over|connect|link|tie|link up|bridge over +(verb)|join|bring together +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +bridge agent|1 +(noun)|secret agent|intelligence officer|intelligence agent|operative +bridge circuit|1 +(noun)|bridge|circuit|electrical circuit|electric circuit +bridge deck|1 +(noun)|bridge|upper deck +bridge hand|1 +(noun)|hand|deal +bridge over|2 +(verb)|tide over|keep going|suffice|do|answer|serve +(verb)|bridge|connect|link|tie|link up +bridge partner|1 +(noun)|bridge player|hand|collaborator|cooperator|partner|pardner +bridge player|1 +(noun)|hand|card player +bridge whist|1 +(noun)|bridge +bridgeable|1 +(adj)|bridgeable +bridged-t|1 +(noun)|bridged-T|circuit|electrical circuit|electric circuit +bridgehead|2 +(noun)|foothold|combat zone|combat area +(noun)|post|station +bridgeport|1 +(noun)|Bridgeport|city|metropolis|urban center|port +bridges|10 +(noun)|Bridges|Harry Bridges|labor leader +(noun)|bridge|span|structure|construction +(noun)|bridge|bridge circuit|circuit|electrical circuit|electric circuit +(noun)|bridge|connection|connexion|connectedness +(noun)|bridge|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|bridge|card game|cards +(noun)|bridge|support +(noun)|bridge|bridgework|denture|dental plate|plate +(noun)|bridge|nosepiece|link|linkup|tie|tie-in +(noun)|bridge|bridge deck|upper deck +bridget|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +bridgetown|1 +(noun)|Bridgetown|capital of Barbados|capital|port +bridgework|1 +(noun)|bridge|denture|dental plate|plate +bridle|4 +(noun)|headgear +(noun)|check|curb|restraint +(verb)|restrain|encumber|cumber|constrain +(verb)|answer|reply|respond +bridle at|1 +(verb)|bristle at|bridle up|bristle up|mind +bridle path|1 +(noun)|bridle road|path +bridle road|1 +(noun)|bridle path|path +bridle up|1 +(verb)|bristle at|bridle at|bristle up|mind +bridoon|1 +(noun)|bit +brie|1 +(noun)|Brie|cheese +brief|6 +(adj)|little|short +(adj)|concise +(adj)|abbreviated|short +(noun)|legal brief|legal document|legal instrument|official document|instrument +(noun)|outline|synopsis|abstract|precis +(verb)|instruct|apprise|apprize +briefcase|1 +(noun)|case +briefcase bomb|1 +(noun)|bomb +briefcase computer|1 +(noun)|portable computer +briefing|1 +(noun)|informing|making known +briefless|1 +(adj)|unpatronized |unpatronised|patronless +briefly|1 +(adv)|concisely|shortly|in brief|in short +briefness|2 +(noun)|shortness +(noun)|brevity|transience|duration|length +briefs|3 +(noun)|Jockey shorts|underpants +(noun)|brief|legal brief|legal document|legal instrument|official document|instrument +(noun)|brief|outline|synopsis|abstract|precis +brier|5 +(noun)|brierpatch|brier patch|vegetation|flora +(noun)|branchlet|twig|sprig +(noun)|sweetbrier|sweetbriar|briar|eglantine|Rosa eglanteria|rose +(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|briar|Smilax rotundifolia|vine +(noun)|tree heath|briar|Erica arborea|erica|true heath +brier-wood|2 +(noun)|briarwood|brierwood|wood +(noun)| +brier patch|2 +(noun)|brier|brierpatch|vegetation|flora +(noun)| +brierpatch|1 +(noun)|brier|brier patch|vegetation|flora +brierwood|1 +(noun)|briarwood|brier-wood|wood +briery|1 +(adj)|barbed|barbellate|briary|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +brig|2 +(noun)|sailing vessel|sailing ship +(noun)|penal institution|penal facility +brigade|2 +(noun)|army unit +(verb)|group|aggroup +brigadier|1 +(noun)|brigadier general|general officer +brigadier general|1 +(noun)|brigadier|general officer +brigand|1 +(noun)|bandit|thief|stealer +brigandine|1 +(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +brigantine|1 +(noun)|hermaphrodite brig|sailing vessel|sailing ship +brigate rosse|1 +(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization|terrorist group|foreign terrorist organization|FTO +brigham young|1 +(noun)|Young|Brigham Young|religious leader +bright|12 +(adj)|bright |agleam|gleaming|nitid|aglow|glowing|lambent|lucent|luminous|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkling|sparkly|beady|beadlike|buttony|buttonlike|beaming|beamy|effulgent|radiant|refulgent|blazing|blinding|dazzling|fulgent|glaring|glary|blinking|brilliant|flashing|glimmering|glimmery|glistening|glossy|lustrous|sheeny|shiny|shining|iridescent|nacreous|opalescent|opaline|pearlescent|lurid|noctilucent|shimmery|silver|silvern|silvery|bright as a new penny|ardent|twinkling +(adj)|brilliant|vivid|colorful |colourful +(adj)|smart|intelligent +(adj)|light +(adj)|burnished|lustrous|shining|shiny|polished +(adj)|glorious +(adj)|undimmed +(adj)|brilliant|reverberant |ringing +(adj)|happy +(adj)|shining|shiny|sunshiny|sunny|clear +(adj)|promising|auspicious +(adv)|brilliantly|brightly +bright's disease|1 +(noun)|nephritis|Bright's disease|kidney disease|renal disorder|nephropathy|nephrosis +bright as a new penny|1 +(adj)|bright +bright blue|1 +(adj)|azure|cerulean|sky-blue|chromatic +bright side|1 +(noun)|silver lining|consolation|solace|solacement +brighten|4 +(verb)|lighten up|lighten|change|alter|modify +(verb)|clear up|clear|light up +(verb)|change intensity +(verb)|lighten|change +brightly|1 +(adv)|brilliantly|bright +brightness|3 +(noun)|light|lightness +(noun)|cleverness|smartness|intelligence +(noun)|luminosity|brightness level|luminance|luminousness|light|physical property +brightness constancy|1 +(noun)|constancy +brightness level|1 +(noun)|luminosity|brightness|luminance|luminousness|light|physical property +brighton|1 +(noun)|Brighton|city|metropolis|urban center +brigid|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +brigit|1 +(noun)|Brigit|Celtic deity +brigit nilsson|1 +(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano +brihaspati|1 +(noun)|Brihaspati|Hindu deity +brill|1 +(noun)|Scophthalmus rhombus|lefteye flounder|lefteyed flounder +brilliance|3 +(noun)|glare|blaze|brightness +(noun)|magnificence|splendor|splendour|grandeur|grandness|elegance +(noun)|genius|intelligence +brilliancy|1 +(noun)|luster|lustre|splendor|splendour|brightness +brilliant|6 +(adj)|superb|superior +(adj)|brainy|smart as a whip|intelligent +(adj)|glorious|magnificent|splendid|impressive +(adj)|bright|vivid|colorful |colourful +(adj)|bright +(adj)|bright|reverberant |ringing +brilliant pebble|1 +(noun)|heat-seeking missile +brilliantine|1 +(noun)|pomade|pomatum +brilliantly|1 +(adv)|brightly|bright +brim|4 +(noun)|rim|lip|edge +(noun)|projection +(verb)|have|feature +(verb)|fill|fill up|make full +brim over|1 +(verb)|overflow|overrun|well over|run over|spill|run out +brimful|1 +(adj)|brimfull|brimming|full +brimfull|1 +(adj)|brimful|brimming|full +brimless|1 +(adj)|projection +brimming|1 +(adj)|brimful|brimfull|full +brimstone|1 +(noun)|native sulfur|native sulphur|sulfur|S|sulphur|atomic number 16 +brinded|1 +(adj)|brindled|brindle|tabby|patterned +brindisi|1 +(noun)|Brindisi|city|metropolis|urban center|port +brindle|1 +(adj)|brindled|brinded|tabby|patterned +brindled|1 +(adj)|brindle|brinded|tabby|patterned +brine|3 +(noun)|seawater|saltwater|water|H2O +(noun)|solution +(verb)|drench|douse|dowse|soak|sop|souse +brine shrimp|1 +(noun)|Artemia salina|branchiopod crustacean|branchiopod|branchiopodan +brinell number|1 +(noun)|Brinell number|unit of measurement|unit +bring|10 +(verb)|convey|take|transport|carry|bring forward|bring down|bring down|bring up|bring on|bring out +(verb)|change|alter|modify|bring together|bring out +(verb)|work|play|wreak|make for|make|create|bring about|bring about|bring on|bring about|bring off|bring up +(verb)|get|convey|fetch|transmit|transfer|transport|channel|channelize|channelise +(verb)|land|change|alter|modify|bring down|bring up +(verb)|lend|impart|bestow|contribute|add|change|alter|modify +(verb)|institute|make|create +(verb)|fetch|bring in +(verb)|attract|pull|pull in|draw|draw in +(verb)|induce|stimulate|cause|have|get|make +bring about|5 +(verb)|effect|effectuate|set up|cause|do|make +(verb)|make|create +(verb)|give|yield|make|create +(verb)|produce|give rise|make|create +(verb)|stage|arrange|initiate|pioneer +bring around|3 +(verb)|bring round|persuade +(verb)|cure|heal|help|aid +(verb)|bring to|bring back|bring round|awaken|wake|waken|rouse|wake up|arouse +bring back|2 +(verb)|return|take back|bring|convey|take +(verb)|bring to|bring round|bring around|awaken|wake|waken|rouse|wake up|arouse +bring down|6 +(verb)|lower|take down|let down|get down|move|displace +(verb)|overthrow|subvert|overturn|depose|force out +(verb)|inflict|visit|impose|communicate|intercommunicate +(verb)|land|put down|arrive|get|come +(verb)|enthuse +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|decrease|lessen|minify +bring forth|4 +(verb)|generate|make|create +(verb)|produce|expose|exhibit|display +(verb)|produce|make|create +(verb)|beget|get|engender|father|mother|sire|generate|make|create +bring forward|2 +(verb)|advance|move|displace +(verb)|call up|raise +bring home|2 +(verb)|show|demo|exhibit|present|demonstrate +(verb)|take home|gain|take in|clear|make|earn|realize|realise|pull in|bring in +bring home the bacon|2 +(verb)|succeed|win|come through|deliver the goods +(verb)|provide|support +bring in|5 +(verb)|introduce +(verb)|gain|take in|clear|make|earn|realize|realise|pull in|get|acquire +(verb)|fetch|bring +(verb)|present|submit +(verb)|conduct|transmit|convey|carry|channel +bring off|1 +(verb)|pull off|negociate|carry off|manage|succeed|win|come through|bring home the bacon|deliver the goods +bring on|2 +(verb)|induce|generate|bring forth +(verb)|produce|bring out +bring oneself|1 +(verb)|coerce|hale|squeeze|pressure|force +bring out|9 +(verb)|uncover|unveil|reveal|show +(verb)|let out|let go of|let go|release|relinquish +(verb)|publish|put out|issue|release|publicize|publicise|air|bare +(verb)|set off|stress|emphasize|emphasise|punctuate|accent|accentuate +(verb)|produce|bring on +(verb)|encourage +(verb)|get out|unpack|take out +(verb)|introduce|introduce|present|acquaint +(verb)|disclose|let on|reveal|discover|expose|divulge|impart|break|give away|let out|tell +bring outside|1 +(verb)|exteriorize|move|displace +bring round|2 +(verb)|bring around|persuade +(verb)|bring to|bring back|bring around|awaken|wake|waken|rouse|wake up|arouse +bring through|1 +(verb)|save|carry through|pull through +bring to|1 +(verb)|bring back|bring round|bring around|awaken|wake|waken|rouse|wake up|arouse +bring to bear|1 +(verb)|effect +bring together|2 +(verb)|join|connect|link|tie|link up +(verb)|bond|draw together|connect|link|tie|link up +bring up|8 +(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|put forward|call forth|make|create +(verb)|rear|raise|nurture|parent +(verb)|promote|upgrade|advance|kick upstairs|raise|elevate +(verb)|raise|lift|elevate|get up|move|displace +(verb)|stop +(verb)|raise|mention|advert|cite|name|refer +(verb)|mention|advert|cite|name|refer|think of|have in mind|mean +(verb)|boot|reboot|resuscitate|revive +bringing|1 +(noun)|delivery|transportation|transfer|transferral|conveyance +bringing close together|1 +(noun)|approximation|joining|connection|connexion +bringing up|1 +(noun)|breeding|fostering|fosterage|nurture|raising|rearing|upbringing|socialization|socialisation|acculturation|enculturation +brininess|1 +(noun)|salinity|saltiness +brinjal|1 +(noun)|eggplant|aubergine|eggplant bush|garden egg|mad apple|Solanum melongena|herb|herbaceous plant +brink|3 +(noun)|threshold|verge|boundary|edge|bound +(noun)|edge|border +(noun)|verge|limit|bounds|boundary +brinkmanship|1 +(noun)|foreign policy +brinton|1 +(noun)|Brinton|Daniel Garrison Brinton|anthropologist +briny|2 +(adj)|brackish|salt +(noun)|main|body of water|water +brio|1 +(noun)|animation|spiritedness|invigoration|vivification|activeness|activity +brioche|1 +(noun)|bun|roll +briony|1 +(noun)|bryony|vine +brioschi|1 +(noun)|Brioschi|antacid|gastric antacid|alkalizer|alkaliser|antiacid +briquet|1 +(noun)|briquette|block +briquette|1 +(noun)|briquet|block +bris|1 +(noun)|Berith|Berit|Brith|Bris|Briss|circumcision +brisance|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +brisant|1 +(adj)|consequence|effect|outcome|result|event|issue|upshot +brisbane|1 +(noun)|Brisbane|state capital +brisbane quandong|1 +(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree +brisk|4 +(adj)|lively|merry|rattling|snappy|spanking|zippy|energetic +(adj)|bracing|energizing|energising|fresh|refreshing|refreshful|tonic|invigorating +(adj)|active +(verb)|brisk up|brisken|accelerate|speed up|speed|quicken +brisk up|1 +(verb)|brisk|brisken|accelerate|speed up|speed|quicken +brisken|1 +(verb)|brisk|brisk up|accelerate|speed up|speed|quicken +brisket|1 +(noun)|cut|cut of meat +briskness|1 +(noun)|alacrity|liveliness|life|spirit|sprightliness +brisling|2 +(noun)|sprat|herring +(noun)|sprat|Clupea sprattus|sardine +briss|1 +(noun)|Berith|Berit|Brith|Bris|Briss|circumcision +bristle|4 +(noun)|fiber|fibre +(noun)|hair +(verb)|abound|burst|have|feature +(verb)|uprise|stand up +bristle at|1 +(verb)|bridle at|bridle up|bristle up|mind +bristle brush|1 +(noun)|brush +bristle fern|1 +(noun)|filmy fern|fern +bristle grass|2 +(noun)|bristlegrass|foxtail|foxtail grass +(noun)| +bristle up|1 +(verb)|bristle at|bridle at|bridle up|mind +bristlecone fir|1 +(noun)|Santa Lucia fir|Abies bracteata|Abies venusta|fir|fir tree|true fir +bristlecone pine|1 +(noun)|Rocky Mountain bristlecone pine|Pinus aristata|pine|pine tree|true pine +bristled|1 +(adj)|barbed|barbellate|briary|briery|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +bristlegrass|1 +(noun)|bristle grass|foxtail|foxtail grass +bristlelike|1 +(adj)|armed +bristletail|1 +(noun)|thysanuran insect|thysanuron +bristling with|1 +(adj)|covered +bristly|2 +(adj)|prickly|splenetic|waspish|ill-natured +(adj)|barbed|barbellate|briary|briery|bristled|burred|burry|prickly|setose|setaceous|spiny|thorny|armed +bristly locust|1 +(noun)|rose acacia|moss locust|Robinia hispida|shrub|bush +bristly oxtongue|1 +(noun)|oxtongue|bitterweed|bugloss|Picris echioides|weed +bristly sarsaparilla|1 +(noun)|bristly sarsparilla|dwarf elder|Aralia hispida|subshrub|suffrutex +bristly sarsparilla|1 +(noun)|bristly sarsaparilla|dwarf elder|Aralia hispida|subshrub|suffrutex +bristol|1 +(noun)|Bristol|city|metropolis|urban center|port +bristol channel|1 +(noun)|Bristol Channel|inlet|recess +brit|3 +(noun)|Britisher|Briton|Brit|European +(noun)|britt|young fish +(noun)|britt|copepod|copepod crustacean +britain|1 +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +britannia metal|1 +(noun)|Britannia metal|alloy|metal +britannic|1 +(adj)|Britannic|nation|land|country|a people +britches|1 +(noun)|breeches|knee breeches|knee pants|knickerbockers|knickers +brith|1 +(noun)|Berith|Berit|Brith|Bris|Briss|circumcision +briticism|1 +(noun)|Anglicism|Briticism|Britishism|formulation|expression +british|2 +(adj)|British|island +(noun)|British|British people|the British|Brits|nation|land|country|a people +british cabinet|1 +(noun)|British Cabinet|cabinet +british capacity unit|1 +(noun)|British capacity unit|Imperial capacity unit|liquid unit|liquid measure|dry unit|dry measure +british capital|1 +(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital +british columbia|1 +(noun)|British Columbia|Canadian province +british commonwealth|1 +(noun)|British Commonwealth|Commonwealth of Nations|commonwealth +british crown|1 +(noun)|British Crown|Crown +british empire|1 +(noun)|British Empire|geographical area|geographic area|geographical region|geographic region +british empiricism|1 +(noun)|British empiricism|empiricism|empiricist philosophy|sensationalism +british guiana|1 +(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country|South American nation +british honduras|1 +(noun)|Belize|British Honduras|Central American country|Central American nation +british house of commons|1 +(noun)|House of Commons|British House of Commons|house +british house of lords|1 +(noun)|House of Lords|British House of Lords|house +british imperial system|1 +(noun)|British Imperial System|English system|British system|system of weights and measures +british isles|1 +(noun)|British Isles|island +british monetary unit|1 +(noun)|British monetary unit|monetary unit +british parliament|1 +(noun)|British Parliament|parliament +british people|1 +(noun)|British|British people|the British|Brits|nation|land|country|a people +british pound|1 +(noun)|British pound|pound|pound sterling|quid|British monetary unit +british shilling|1 +(noun)|British shilling|shilling|bob|British monetary unit +british system|1 +(noun)|British Imperial System|English system|British system|system of weights and measures +british thermal unit|1 +(noun)|British thermal unit|BTU|B.Th.U.|work unit|heat unit|energy unit +british virgin islands|1 +(noun)|British Virgin Islands|possession +britisher|1 +(noun)|Britisher|Briton|Brit|European +britishism|2 +(noun)|Anglicism|Briticism|Britishism|formulation|expression +(noun)|Anglicism|Britishism|custom|usage|usance +briton|3 +(adj)|Briton|Celt|Kelt +(noun)|Britisher|Briton|Brit|European +(noun)|Briton|Celt|Kelt +brits|4 +(noun)|British|British people|the British|Brits|nation|land|country|a people +(noun)|Britisher|Briton|Brit|European +(noun)|brit|britt|young fish +(noun)|brit|britt|copepod|copepod crustacean +britt|2 +(noun)|brit|young fish +(noun)|brit|copepod|copepod crustacean +brittanic|1 +(noun)|Brythonic|Brittanic|Celtic|Celtic language +brittany|1 +(noun)|Bretagne|Brittany|Breiz|French region +brittany spaniel|1 +(noun)|Brittany spaniel|spaniel +britten|1 +(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor|music director|director|composer +brittle|4 +(adj)|brickle|brickly|breakable +(adj)|coldhearted +(adj)|unannealed|untempered |unhardened +(noun)|toffee|toffy|candy +brittle-star|2 +(noun)|brittle star|serpent star|echinoderm +(noun)| +brittle bladder fern|1 +(noun)|brittle fern|fragile fern|Cystopteris fragilis|bladder fern +brittle bush|2 +(noun)|brittlebush|incienso|Encelia farinosa|wildflower|wild flower +(noun)| +brittle fern|1 +(noun)|brittle bladder fern|fragile fern|Cystopteris fragilis|bladder fern +brittle maidenhair|1 +(noun)|brittle maidenhair fern|Adiantum tenerum|maidenhair|maidenhair fern +brittle maidenhair fern|1 +(noun)|brittle maidenhair|Adiantum tenerum|maidenhair|maidenhair fern +brittle star|2 +(noun)|brittle-star|serpent star|echinoderm +(noun)| +brittle willow|1 +(noun)|crack willow|snap willow|Salix fragilis|willow|willow tree +brittlebush|1 +(noun)|brittle bush|incienso|Encelia farinosa|wildflower|wild flower +brittleness|1 +(noun)|crispness|crispiness|breakableness +brix scale|1 +(noun)|Brix scale|system of measurement|metric +brno|1 +(noun)|Brno|Brunn|city|metropolis|urban center +broach|2 +(noun)|brooch|breastpin|pin +(verb)|initiate|hash out|discuss|talk over +broached|1 +(adj)|abroach|tapped +broad|9 +(adj)|wide |beamy|bird's-eye|panoramic|broad-brimmed|citywide|countywide|countrywide|nationwide|deep|heavy|thick|in width|in breadth|schoolwide|spreading|wide-spreading|statewide|stretching|wide-spreading|sweeping|wide-screen|fanlike|comprehensive|thick +(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|encompassing|panoptic|wide|comprehensive +(adj)|unspecific|general +(adj)|unsubtle|clear +(adj)|full|high +(adj)|spacious|wide|large +(adj)|noticeable +(adj)|large-minded|liberal|tolerant|broad-minded +(noun)|woman|adult female +broad-bean|4 +(noun)|broad bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +(noun)|broad bean|fava bean|horsebean|bean|bean plant +(noun)|broad bean|horse bean|fodder +(noun)|fava bean|broad bean|shell bean +broad-bean plant|1 +(noun)|broad bean|broad-bean|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +broad-brimmed|1 +(adj)|wide |broad +broad-headed|1 +(adj)|roundheaded|short-headed|brachycephalic |brachycranial|brachycranic +broad-leafed|1 +(adj)|broadleaf|broad-leaved|deciduous +broad-leaved|1 +(adj)|broadleaf|broad-leafed|deciduous +broad-leaved bottletree|1 +(noun)|flame tree|Brachychiton australis|bottle-tree|bottle tree +broad-leaved dock|1 +(noun)|bitter dock|yellow dock|Rumex obtusifolius|dock|sorrel|sour grass +broad-leaved everlasting pea|1 +(noun)|perennial pea|Lathyrus latifolius|everlasting pea +broad-leaved montia|1 +(noun)|Montia cordifolia|Indian lettuce +broad-leaved plantain|2 +(noun)|rugel's plantain|Plantago rugelii|plantain +(noun)|common plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain +broad-leaved twayblade|1 +(noun)|Listera convallarioides|orchid|orchidaceous plant +broad-minded|2 +(adj)|unshockable +(adj)|broad-minded |broad|large-minded|liberal|tolerant|catholic|free-thinking|latitudinarian|undogmatic|undogmatical|open-minded +broad-mindedness|1 +(noun)|tolerance +broad-shouldered|1 +(adj)|big-shouldered|square-shouldered|robust +broad arrow|3 +(noun)|marker|marking|mark +(noun)|mark +(noun)|arrow +broad bean|5 +(noun)|fava bean|horsebean|bean|bean plant +(noun)|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +(noun)|horse bean|fodder +(noun)|fava bean|shell bean +(noun)| +broad beech fern|1 +(noun)|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern +broad buckler-fern|1 +(noun)|Dryopteris dilatata|shield fern|buckler fern +broad gauge|1 +(noun)|railroad track|railroad|railway|gauge +broad hatchet|1 +(noun)|hatchet +broad interpretation|1 +(noun)|judicial activism|interpretation|interpreting|rendition|rendering +broad jump|2 +(noun)|long jump|field event +(noun)|long jump|jumping +broad leaved centaury|1 +(noun)|centaury +broad leaved goldenrod|1 +(noun)|zigzag goldenrod|goldenrod +broadax|1 +(noun)|broadaxe|ax|axe +broadaxe|1 +(noun)|broadax|ax|axe +broadband|2 +(adj)|system +(adj)|wideband|band +broadbill|4 +(noun)|boatbill|boat-billed heron|Cochlearius cochlearius|heron +(noun)|scaup|scaup duck|bluebill|duck +(noun)|shoveler|shoveller|Anas clypeata|duck +(noun)|passerine|passeriform bird +broadcast|5 +(noun)|message +(noun)|program|programme|show +(verb)|air|send|beam|transmit|publicize|publicise|air|bare +(verb)|sow|sough|seed +(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +broadcast area|1 +(noun)|area|country +broadcast journalist|1 +(noun)|broadcaster|journalist +broadcast medium|1 +(noun)|broadcasting|medium|mass medium +broadcaster|2 +(noun)|communicator +(noun)|spreader|mechanical device +broadcasting|2 +(noun)|broadcast medium|medium|mass medium +(noun)|telecommunication|telecom +broadcasting company|1 +(noun)|company +broadcasting studio|1 +(noun)|studio +broadcloth|2 +(noun)|fabric|cloth|material|textile +(noun)|fabric|cloth|material|textile +broaden|4 +(verb)|widen|extend +(verb)|widen|extend|increase +(verb)|diversify|branch out|change|alter|vary +(verb)|increase +broadening|3 +(noun)|widening|change of shape +(noun)|development +(noun)|widening|increase|increment|growth +broadleaf|1 +(adj)|broad-leafed|broad-leaved|deciduous +broadloom|2 +(adj)|seamless +(noun)|rug|carpet|carpeting +broadly|1 +(adv)|loosely|broadly speaking|generally +broadly speaking|1 +(adv)|broadly|loosely|generally +broadness|1 +(noun)|wideness|width|breadth +broadnosed|1 +(adj)|platyrrhine |platyrrhinian|platyrhine|platyrhinian|platyrrhinic +broadsheet|1 +(noun)|circular|handbill|bill|broadside|flier|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +broadside|7 +(adj)|side +(noun)|circular|handbill|bill|broadsheet|flier|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|tirade|philippic|denunciation|denouncement|declamation +(noun)|armament +(noun)|side +(noun)|fire|firing +(verb)|hit|strike|impinge on|run into|collide with +broadsword|1 +(noun)|sword|blade|brand|steel +broadtail|2 +(noun)|lambskin +(noun)|caracul|karakul|domestic sheep|Ovis aries +broadway|1 +(noun)|Broadway|Great White Way|street +broadwise|1 +(adv)|breadthwise|breadthways +brobdingnag|1 +(noun)|Brobdingnag|imaginary place|mythical place +brobdingnagian|2 +(adj)|Brobdingnagian|imaginary place|mythical place +(adj)|huge|immense|vast|Brobdingnagian|large +broca|1 +(noun)|Broca|Pierre-Paul Broca|anthropologist +broca's aphasia|1 +(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|expressive aphasia|nonfluent aphasia|aphasia +broca's area|1 +(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center|centre|nerve center|nerve centre +broca's center|1 +(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center|centre|nerve center|nerve centre +broca's convolution|1 +(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center|centre|nerve center|nerve centre +broca's gyrus|1 +(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center|centre|nerve center|nerve centre +brocade|2 +(noun)|fabric|cloth|material|textile +(verb)|weave|tissue +brocaded|1 +(adj)|embossed|raised|adorned |decorated +brocadopa|1 +(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa|dihydroxyphenylalanine +broccoli|2 +(noun)|Brassica oleracea italica|crucifer|cruciferous plant +(noun)|cruciferous vegetable +broccoli raab|2 +(noun)|broccoli rabe|Brassica rapa ruvo|crucifer|cruciferous plant +(noun)|broccoli rabe|cruciferous vegetable +broccoli rabe|2 +(noun)|broccoli raab|Brassica rapa ruvo|crucifer|cruciferous plant +(noun)|broccoli raab|cruciferous vegetable +brochure|1 +(noun)|booklet|folder|leaflet|pamphlet|book +brocket|2 +(noun)|deer|cervid +(noun)|red deer|Cervus elaphus +brodiaea|1 +(noun)|liliaceous plant +brodiaea elegans|1 +(noun)|elegant brodiaea|Brodiaea elegans|brodiaea +brodmann's area|1 +(noun)|Brodmann's area|cortical area|cortical region +brogan|1 +(noun)|brogue|clodhopper|work shoe|shoe +broglie|1 +(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist +brogue|1 +(noun)|brogan|clodhopper|work shoe|shoe +broider|1 +(verb)|embroider|decorate|adorn|grace|ornament|embellish|beautify +broil|3 +(noun)|broiling|grilling|cooking|cookery|preparation +(verb)|oven broil|grill +(verb)|bake|heat|heat up +broiled|1 +(adj)|grilled|cooked +broiler|2 +(noun)|oven +(noun)|chicken|poulet|volaille +broiling|1 +(noun)|broil|grilling|cooking|cookery|preparation +broke|1 +(adj)|bust|skint|stone-broke|stony-broke|poor +broken|13 +(adj)|broken |breached|busted|chipped|cracked|crumbled|fragmented|crushed|ground|dissolved|fractured|shattered|smashed|splintered|split|damaged|imperfect|injured|unsound +(adj)|broken |broken-field|dashed|dotted|fitful|interrupted|off-and-on|halting|discontinuous|noncontinuous +(adj)|crushed|humbled|humiliated|low|humble +(adj)|broken |unkept +(adj)|broken in|tame |tamed +(adj)|rugged|rough |unsmooth +(adj)|imperfect +(adj)|confused|disordered|upset|disorganized |disorganised +(adj)|impaired +(adj)|wiped out|impoverished|destroyed +(adj)|busted|damaged +(adj)|distributed +(adj)|incomplete |uncomplete +broken-backed|3 +(adj)|damaged +(adj)|unfit +(adj)|hogged|convex |bulging +broken-down|2 +(adj)|bedraggled|dilapidated|ramshackle|tatterdemalion|tumble-down|unsound|damaged +(adj)|unserviceable +broken-field|1 +(adj)|broken +broken arch|1 +(noun)|arch +broken in|1 +(adj)|broken|tame |tamed +broken wind|1 +(noun)|heaves|animal disease +brokenhearted|1 +(adj)|heartbroken|heartsick|sorrowful +brokenheartedness|1 +(noun)|grief|heartache|heartbreak|sorrow +broker|2 +(noun)|agent|factor|businessperson|bourgeois +(verb)|negociate|negotiate|talk terms +broker-dealer|1 +(noun)|principal|dealer +brokerage|3 +(noun)|brokerage firm|securities firm|nondepository financial institution +(noun)|business|concern|business concern|business organization|business organisation +(noun)|brokerage house|workplace|work +brokerage account|1 +(noun)|account|business relationship +brokerage firm|1 +(noun)|brokerage|securities firm|nondepository financial institution +brokerage house|1 +(noun)|brokerage|workplace|work +brolly|1 +(noun)|gamp|umbrella +bromate|2 +(verb)|brominate|react +(verb)|brominate|process|treat +bromberg|1 +(noun)|Bydgoszcz|Bromberg|city|metropolis|urban center +brome|1 +(noun)|bromegrass|grass +bromegrass|1 +(noun)|brome|grass +bromelia|1 +(noun)|Bromelia|monocot genus|liliopsid genus +bromeliaceae|1 +(noun)|Bromeliaceae|family Bromeliaceae|pineapple family|monocot family|liliopsid family +bromeosin|1 +(noun)|eosin|fluorescein|fluoresceine|fluorescent dye|resorcinolphthalein +bromic|1 +(adj)|chemical element|element|halogen +bromic acid|1 +(noun)|acid +bromide|3 +(noun)|halide +(noun)|platitude|cliche|banality|commonplace|remark|comment|truism +(noun)|sedative|sedative drug|depressant|downer +bromidic|2 +(adj)|remark|comment|truism +(adj)|corny|platitudinal|platitudinous|unoriginal +brominate|2 +(verb)|bromate|react +(verb)|bromate|process|treat +bromine|1 +(noun)|Br|atomic number 35|chemical element|element|halogen +bromo-seltzer|1 +(noun)|Bromo-seltzer|antacid|gastric antacid|alkalizer|alkaliser|antiacid +bromoform|1 +(noun)|tribromomethane|haloform +bromophenol blue|1 +(noun)|bromphenol blue|tetrabromo-phenolsulfonephthalein|dye|dyestuff|acid-base indicator +bromothymol blue|1 +(noun)|bromthymol blue|dye|dyestuff|acid-base indicator +brompheniramine maleate|1 +(noun)|Dimetane|antihistamine +bromphenol blue|1 +(noun)|bromophenol blue|tetrabromo-phenolsulfonephthalein|dye|dyestuff|acid-base indicator +brompton stock|1 +(noun)|Matthiola incana|stock|gillyflower +bromthymol blue|1 +(noun)|bromothymol blue|dye|dyestuff|acid-base indicator +bromus|1 +(noun)|Bromus|genus Bromus|monocot genus|liliopsid genus +bromus arvensis|1 +(noun)|field brome|Bromus arvensis|brome|bromegrass +bromus inermis|1 +(noun)|awnless bromegrass|Bromus inermis|brome|bromegrass +bromus japonicus|1 +(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome|bromegrass +bromus secalinus|1 +(noun)|chess|cheat|Bromus secalinus|brome|bromegrass +bromus tectorum|1 +(noun)|downy brome|downy bromegrass|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome|bromegrass +bronc|1 +(noun)|bronco|broncho|mustang +bronchial|1 +(adj)|cartilaginous tube +bronchial artery|1 +(noun)|artery|arteria|arterial blood vessel +bronchial asthma|1 +(noun)|asthma|asthma attack|respiratory disease|respiratory illness|respiratory disorder +bronchial pneumonia|1 +(noun)|bronchopneumonia|pneumonia +bronchial tube|1 +(noun)|bronchus|cartilaginous tube +bronchial vein|1 +(noun)|vena bronchialis|vein|vena|venous blood vessel +bronchiolar|1 +(adj)|duct|epithelial duct|canal|channel +bronchiole|1 +(noun)|duct|epithelial duct|canal|channel +bronchiolitis|1 +(noun)|bronchitis +bronchitic|1 +(adj)|ill |sick +bronchitis|1 +(noun)|respiratory disease|respiratory illness|respiratory disorder +broncho|1 +(noun)|bronco|bronc|mustang +bronchodilator|1 +(noun)|medicine|medication|medicament|medicinal drug +bronchopneumonia|1 +(noun)|bronchial pneumonia|pneumonia +bronchoscope|1 +(noun)|medical instrument +bronchoscopic|1 +(adj)|medical instrument +bronchoscopic smear|1 +(noun)|lower respiratory tract smear|sputum smear|smear|cytologic smear|cytosmear +bronchospasm|1 +(noun)|spasm +bronchus|1 +(noun)|bronchial tube|cartilaginous tube +bronco|1 +(noun)|bronc|broncho|mustang +bronco buster|2 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +(noun)|buster|broncobuster|horseman|equestrian|horseback rider +bronco busting|1 +(noun)|riding|horseback riding +broncobuster|1 +(noun)|buster|horseman|equestrian|horseback rider +bronislaw kasper malinowski|1 +(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist +bronislaw malinowski|1 +(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist +bronte|3 +(noun)|Bronte|Anne Bronte|writer|author +(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer|author +(noun)|Bronte|Charlotte Bronte|writer|author +brontosaur|1 +(noun)|apatosaur|apatosaurus|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod|sauropod dinosaur +brontosaurus|1 +(noun)|apatosaur|apatosaurus|brontosaur|thunder lizard|Apatosaurus excelsus|sauropod|sauropod dinosaur +bronx|1 +(noun)|Bronx|The Bronx|borough +bronx-whitestone bridge|1 +(noun)|Bronx-Whitestone Bridge|suspension bridge +bronx cheer|1 +(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|snort|bird|cry|outcry|call|yell|shout|vociferation +bronze|6 +(adj)|bronzy|chromatic +(adj)|metallic +(noun)|copper-base alloy +(noun)|sculpture +(verb)|dye +(verb)|tan|discolor|discolour|colour|color +bronze age|2 +(noun)|Bronze Age|time period|period of time|period +(noun)|time period|period of time|period +bronze medal|1 +(noun)|trophy|prize|decoration|laurel wreath|medal|medallion|palm|ribbon +bronze star|1 +(noun)|Bronze Star Medal|Bronze Star|decoration|laurel wreath|medal|medallion|palm|ribbon +bronze star medal|1 +(noun)|Bronze Star Medal|Bronze Star|decoration|laurel wreath|medal|medallion|palm|ribbon +bronzed|1 +(adj)|browned|suntanned|tanned|brunet |brunette +bronzed diabetes|1 +(noun)|hemochromatosis|iron-storage disease|iron overload|pathology +bronzy|1 +(adj)|bronze|chromatic +brooch|2 +(noun)|broach|breastpin|pin +(verb)|clasp|fasten|fix|secure +brood|6 +(noun)|animal group +(verb)|dwell|worry|care +(verb)|hover|loom|bulk large|hang +(verb)|sulk|pout +(verb)|grizzle|stew|sulk|pout +(verb)|hatch|cover|incubate|reproduce|procreate|multiply +brood bitch|1 +(noun)|bitch +brood hen|1 +(noun)|broody|broody hen|setting hen|sitter|hen|biddy +brooder|1 +(noun)|incubator|apparatus|setup +brooder pneumonia|1 +(noun)|aspergillosis|animal disease +brooding|3 +(adj)|broody|contemplative|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful +(noun)|incubation|parturition|birth|giving birth|birthing +(noun)|pensiveness|melancholy +broodmare|1 +(noun)|stud mare|mare|female horse +broody|3 +(adj)|oviparous +(adj)|brooding|contemplative|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful +(noun)|brood hen|broody hen|setting hen|sitter|hen|biddy +broody hen|1 +(noun)|brood hen|broody|setting hen|sitter|hen|biddy +brook|2 +(noun)|creek|stream|watercourse +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|abide|suffer|put up|permit|allow|let|countenance +brook thistle|1 +(noun)|Cirsium rivulare|plume thistle|plumed thistle +brook trout|2 +(noun)|speckled trout|freshwater fish +(noun)|speckled trout|Salvelinus fontinalis|trout +brooke|1 +(noun)|Brooke|Rupert Brooke|poet +brooklime|2 +(noun)|European brooklime|Veronica beccabunga|marsh plant|bog plant|swamp plant +(noun)|American brooklime|Veronica americana|marsh plant|bog plant|swamp plant +brooklyn|1 +(noun)|Brooklyn|borough +brooklyn bridge|1 +(noun)|Brooklyn Bridge|suspension bridge +brooks|2 +(noun)|Brooks|Van Wyck Brooks|literary critic +(noun)|brook|creek|stream|watercourse +brookweed|2 +(noun)|Samolus parviflorus|Samolus floribundus|water pimpernel +(noun)|Samolus valerandii|water pimpernel +broom|5 +(noun)|cleaning implement +(noun)|shrub|bush +(noun)|heather|ling|Scots heather|Calluna vulgaris|heath +(verb)|sweep|wipe|pass over +(verb)|finish +broom-weed|2 +(noun)|broomweed|Gutierrezia texana|matchweed|matchbush +(noun)| +broom beard grass|1 +(noun)|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass +broom closet|1 +(noun)|cupboard|closet +broom grass|1 +(noun)|grass +broom handle|1 +(noun)|broomstick|handle|grip|handgrip|hold +broom palm|1 +(noun)|thatch palm|thatch tree|silver thatch|Thrinax parviflora|fan palm +broom sedge|1 +(noun)|Andropogon virginicus|broom grass +broom snakeroot|1 +(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +broom snakeweed|1 +(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +broom tree|1 +(noun)|needle furze|petty whin|Genista anglica|broom +broomcorn|1 +(noun)|Sorghum vulgare technicum|sorghum +broomcorn millet|1 +(noun)|hog millet|Panicum miliaceum|panic grass +broomrape family|1 +(noun)|Orobanchaceae|family Orobanchaceae|dicot family|magnoliopsid family +broomstick|1 +(noun)|broom handle|handle|grip|handgrip|hold +broomweed|1 +(noun)|broom-weed|Gutierrezia texana|matchweed|matchbush +brosme brosme|1 +(noun)|cusk|torsk|Brosme brosme|gadoid|gadoid fish +brosmius|1 +(noun)|Brosmius|genus Browmius|fish genus +broth|2 +(noun)|stock|soup +(noun)|soup +broth of a boy|1 +(noun)|broth of a man|boy +broth of a man|1 +(noun)|broth of a boy|boy +brothel|1 +(noun)|whorehouse|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building|edifice +brothel keeper|1 +(noun)|madam|businesswoman +brother|5 +(noun)|blood brother|male sibling +(noun)|member +(noun)|buddy|chum|crony|pal|sidekick|friend +(noun)|comrade|friend +(noun)|Brother|monk|monastic +brother-in-law|1 +(noun)|in-law|relative-in-law +brotherhood|4 +(noun)|kinship|family relationship|relationship +(noun)|fraternity|sodality|class|social class|socio-economic class +(noun)|friendliness +(noun)|union|labor union|trade union|trades union|organization|organisation +brotherlike|1 +(adj)|brotherly |fraternal +brotherly|1 +(adj)|brotherly |brotherlike|fraternal +brotherly love|1 +(noun)|charity|benevolence|theological virtue|supernatural virtue +brotula|1 +(noun)|percoid fish|percoid|percoidean +brotulidae|1 +(noun)|Brotulidae|family Brotulidae|fish family +brougham|2 +(noun)|carriage|equipage|rig +(noun)|sedan +brought about|1 +(adj)|established |constituted +brouhaha|2 +(noun)|hubbub|uproar|katzenjammer|noise +(noun)|furor|furore +broussonetia|1 +(noun)|Broussonetia|genus Broussonetia|dicot genus|magnoliopsid genus +broussonetia papyrifera|1 +(noun)|paper mulberry|Broussonetia papyrifera|angiospermous tree|flowering tree +brow|3 +(noun)|forehead|feature|lineament +(noun)|eyebrow|supercilium|hair +(noun)|hilltop|peak|crown|crest|top|tip|summit +brow ptosis|1 +(noun)|ptosis +browallia|1 +(noun)|bush violet|flower +browbeat|2 +(verb)|strong-arm|bully|bullyrag|ballyrag|boss around|hector|push around|intimidate +(verb)|bully|swagger|wheedle|cajole|palaver|blarney|coax|sweet-talk|inveigle +browbeaten|1 +(adj)|bullied|cowed|hangdog|intimidated|afraid +brown|6 +(adj)|brownish|dark-brown|chromatic +(noun)|brownness|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|Brown|Robert Brown|botanist|phytologist|plant scientist +(noun)|Brown|John Brown|abolitionist|emancipationist +(noun)|Brown University|Brown|university +(verb)|cook +brown-haired|1 +(adj)|dark-haired|black-haired|brunet |brunette +brown-nose|1 +(verb)|butter up|flatter|blandish +brown-tail moth|1 +(noun)|browntail|Euproctis phaeorrhoea|lymantriid|tussock moth +brown algae|1 +(noun)|alga|algae +brown ash|1 +(noun)|black ash|basket ash|hoop ash|Fraxinus nigra|ash|ash tree +brown bat|1 +(noun)|carnivorous bat|microbat +brown bear|1 +(noun)|bruin|Ursus arctos|bear +brown bells|1 +(noun)|Fritillaria micrantha|Fritillaria parviflora|fritillary|checkered lily +brown bent|1 +(noun)|velvet bent|velvet bent grass|Rhode Island bent|dog bent|Agrostis canina|bent|bent grass|bent-grass +brown betty|1 +(noun)|brown Betty|pudding +brown bread|2 +(noun)|dark bread|whole wheat bread|whole meal bread|bread|breadstuff|staff of life +(noun)|Boston brown bread|bread|breadstuff|staff of life +brown bullhead|1 +(noun)|bullhead +brown butter|1 +(noun)|beurre noisette|butter +brown coal|1 +(noun)|lignite|wood coal|coal|humate +brown creeper|1 +(noun)|American creeper|Certhia americana|creeper|tree creeper +brown cup|1 +(noun)|sclerotinia +brown hickory|1 +(noun)|pignut|pignut hickory|black hickory|Carya glabra|hickory|hickory tree +brown hyena|1 +(noun)|strand wolf|Hyaena brunnea|hyena|hyaena +brown lacewing|1 +(noun)|hemerobiid|hemerobiid fly|lacewing|lacewing fly +brown lemming|1 +(noun)|Lemmus trimucronatus|lemming +brown oak|1 +(noun)|red beech|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +brown onion sauce|1 +(noun)|Lyonnaise sauce|sauce +brown pine|1 +(noun)|Rockingham podocarp|Podocarpus elatus|conifer|coniferous tree +brown rat|1 +(noun)|Norway rat|Rattus norvegicus|rat +brown rice|1 +(noun)|rice +brown root rot fungus|1 +(noun)|Thielavia basicola|fungus +brown rot|1 +(noun)|plant disease +brown rot gummosis|1 +(noun)|gummosis|brown rot +brown sauce|2 +(noun)|Chinese brown sauce|sauce +(noun)|sauce Espagnole|sauce +brown snail|1 +(noun)|Helix aspersa|garden snail +brown soft scale|1 +(noun)|Coccus hesperidum|soft scale +brown study|1 +(noun)|reverie|revery +brown sugar|1 +(noun)|sugar|refined sugar +brown swiss|1 +(noun)|Brown Swiss|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +brown thrasher|1 +(noun)|brown thrush|Toxostoma rufums|thrasher|mocking thrush +brown thrush|1 +(noun)|brown thrasher|Toxostoma rufums|thrasher|mocking thrush +brown trout|1 +(noun)|salmon trout|Salmo trutta|trout +brown university|1 +(noun)|Brown University|Brown|university +browne|2 +(noun)|Browne|Hablot Knight Browne|Phiz|illustrator +(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer|author +browned|1 +(adj)|bronzed|suntanned|tanned|brunet |brunette +browned off|1 +(adj)|exasperated|cheesed off|displeased +brownian motion|1 +(noun)|Brownian movement|Brownian motion|pedesis|movement|motion +brownian movement|1 +(noun)|Brownian movement|Brownian motion|pedesis|movement|motion +brownie|2 +(noun)|elf|hob|gremlin|pixie|pixy|imp|fairy|faery|faerie|sprite +(noun)|cookie|cooky|biscuit +brownie mix|1 +(noun)|ready-mix +browning|4 +(noun)|Browning|John M. Browning|John Moses Browning|inventor|discoverer|artificer +(noun)|Browning|Robert Browning|poet +(noun)|Browning|Elizabeth Barrett Browning|poet +(noun)|toasting|cooking|cookery|preparation +browning automatic rifle|1 +(noun)|Browning automatic rifle|BAR|automatic rifle|automatic|machine rifle +browning machine gun|1 +(noun)|Browning machine gun|Peacemaker|machine gun +brownish|1 +(adj)|brown|dark-brown|chromatic +brownish-orange|1 +(adj)|sorrel|chromatic +brownish-red|1 +(adj)|maroon|chromatic +brownish-yellow|1 +(adj)|amber|yellow-brown|chromatic +brownish yellow|1 +(noun)|yellow|yellowness +brownness|1 +(noun)|brown|chromatic color|chromatic colour|spectral color|spectral colour +brownout|1 +(noun)|blackout|dimout|dark|darkness +brownshirt|1 +(noun)|Brownshirt|Nazi|German Nazi +brownstone|2 +(noun)|sandstone +(noun)|row house|town house +brownsville|1 +(noun)|Brownsville|city|metropolis|urban center|port of entry|point of entry +browntail|1 +(noun)|brown-tail moth|Euproctis phaeorrhoea|lymantriid|tussock moth +browse|6 +(noun)|browsing|reading +(noun)|browsing|eating|feeding +(verb)|shop|search|seek|look for +(verb)|crop|graze|range|pasture|feed|eat +(verb)|surf|search|seek|look for +(verb)|graze|nosh|snack +browser|2 +(noun)|spectator|witness|viewer|watcher|looker +(noun)|web browser|application|application program|applications programme +browsing|2 +(noun)|browse|reading +(noun)|browse|eating|feeding +bruce|2 +(noun)|Bruce|David Bruce|Sir David Bruce|doctor|doc|physician|MD|Dr.|medico|bacteriologist +(noun)|Bruce|Robert the Bruce|Robert I|king|male monarch +bruce lee|1 +(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor|histrion|player|thespian|role player +brucella|1 +(noun)|Brucella|coccobacillus +brucellosis|2 +(noun)|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +(noun)|contagious abortion|Bang's disease|zoonosis|zoonotic disease +bruch|1 +(noun)|Bruch|Max Bruch|composer +bruchidae|1 +(noun)|Bruchidae|family Bruchidae|arthropod family +bruchus|1 +(noun)|Bruchus|genus Bruchus|arthropod genus +bruchus pisorum|1 +(noun)|pea weevil|Bruchus pisorum|seed beetle|seed weevil +brucine|1 +(noun)|plant toxin|phytotoxin|alkaloid +bruckenthalia|1 +(noun)|Bruckenthalia|genus Bruckenthalia|dilleniid dicot genus +bruckenthalia spiculifolia|1 +(noun)|spike heath|Bruckenthalia spiculifolia|heath +bruckner|1 +(noun)|Bruckner|Anton Bruckner|composer|organist +bruegel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +brueghel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +bruges|1 +(noun)|Bruges|City of Bridges|city|metropolis|urban center +brugmansia|1 +(noun)|Brugmansia|genus Brugmansia|asterid dicot genus +brugmansia arborea|1 +(noun)|angel's trumpet|maikoa|Brugmansia arborea|Datura arborea|shrub|bush +brugmansia sanguinea|1 +(noun)|red angel's trumpet|Brugmansia sanguinea|Datura sanguinea|shrub|bush +brugmansia suaveolens|1 +(noun)|angel's trumpet|Brugmansia suaveolens|Datura suaveolens|shrub|bush +bruin|2 +(noun)|bear +(noun)|brown bear|Ursus arctos|bear +bruise|5 +(noun)|contusion|injury|hurt|harm|trauma +(verb)|contuse|injure|wound +(verb)|hurt|wound|injure|offend|spite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|crush +(verb)|damage +bruised|1 +(adj)|contused|contusioned|injured +bruiser|1 +(noun)|bull|strapper|Samson|man|adult male +bruising|2 +(adj)|harmful +(adj)|forceful +bruit|1 +(verb)|rumor|rumour|dish the dirt|gossip +brumaire|1 +(noun)|Brumaire|Revolutionary calendar month +brumal|1 +(adj)|hibernal|hiemal|wintry |wintery +brummagem|2 +(adj)|Brummagem|tasteless +(noun)|Birmingham|Brummagem|city|metropolis|urban center +brummell|1 +(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +brummie|1 +(noun)|Brummie|Brummy|English person +brummy|1 +(noun)|Brummie|Brummy|English person +brumous|1 +(adj)|foggy|hazy|misty|cloudy +brunanburh|1 +(noun)|Brunanburh|battle of Brunanburh|pitched battle +brunch|2 +(noun)|meal|repast +(verb)|eat +brunch coat|1 +(noun)|negligee|neglige|peignoir|wrapper|housecoat +brunei|1 +(noun)|Brunei|Negara Brunei Darussalam|sultanate +brunei dollar|1 +(noun)|Brunei dollar|dollar +bruneian|2 +(adj)|Bruneian|sultanate +(noun)|Bruneian|Bornean +brunelleschi|1 +(noun)|Brunelleschi|Filippo Brunelleschi|architect|designer +brunet|2 +(adj)|brunet |brunette|adust|bronzed|browned|suntanned|tanned|dark|dark-haired|black-haired|brown-haired|dark-skinned|dusky|swart|swarthy|grizzled|nutbrown +(noun)|brunette|person|individual|someone|somebody|mortal|human|soul +brunette|2 +(adj)|brunet |adust|bronzed|browned|suntanned|tanned|dark|dark-haired|black-haired|brown-haired|dark-skinned|dusky|swart|swarthy|grizzled|nutbrown +(noun)|brunet|person|individual|someone|somebody|mortal|human|soul +brunfelsia|1 +(noun)|Brunfelsia|genus Brunfelsia|asterid dicot genus +brunfelsia americana|1 +(noun)|lady-of-the-night|Brunfelsia americana|shrub|bush +brunhild|1 +(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie +brunn|1 +(noun)|Brno|Brunn|city|metropolis|urban center +brunnhilde|1 +(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie +bruno|2 +(noun)|Bruno|Saint Bruno|St. Bruno|cleric|churchman|divine|ecclesiastic|saint +(noun)|Bruno|Giordano Bruno|philosopher +bruno walter|1 +(noun)|Walter|Bruno Walter|conductor|music director|director +brunswick|3 +(noun)|Brunswick|town +(noun)|Brunswick|town|port of entry|point of entry +(noun)|Braunschweig|Brunswick|city|metropolis|urban center +brunswick stew|1 +(noun)|Brunswick stew|stew +brunt|1 +(noun)|force|forcefulness|strength +brusa|1 +(noun)|Bursa|Brusa|city|metropolis|urban center +brush|14 +(noun)|brushwood|coppice|copse|thicket|vegetation|flora +(noun)|implement +(noun)|light touch|touch|touching +(noun)|electrical device +(noun)|clash|encounter|skirmish|fight|fighting|combat|scrap +(noun)|brushing|dental care +(noun)|brushing|hair care|haircare|hairdressing +(noun)|contact +(verb)|rub +(verb)|touch +(verb)|clean|make clean +(verb)|sweep|move +(verb)|remove|take|take away|withdraw +(verb)|cover +brush-footed butterfly|1 +(noun)|nymphalid|nymphalid butterfly|four-footed butterfly|butterfly +brush-off|1 +(noun)|rejection +brush-tail porcupine|1 +(noun)|brush-tailed porcupine|Old World porcupine +brush-tailed phalanger|1 +(noun)|Trichosurus vulpecula|phalanger|opossum|possum +brush-tailed porcupine|1 +(noun)|brush-tail porcupine|Old World porcupine +brush aside|1 +(verb)|dismiss|disregard|brush off|discount|push aside|ignore|reject +brush cut|1 +(noun)|haircut +brush discharge|1 +(noun)|discharge|spark|arc|electric arc|electric discharge +brush down|1 +(verb)|tell off|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +brush fire|1 +(noun)|fire +brush kangaroo|1 +(noun)|wallaby|kangaroo +brush off|1 +(verb)|dismiss|disregard|brush aside|discount|push aside|ignore|reject +brush on|1 +(verb)|coat|surface +brush turkey|1 +(noun)|Alectura lathami|megapode|mound bird|mound-bird|mound builder|scrub fowl +brush up|2 +(verb)|review|refresh|remember|retrieve|recall|call back|call up|recollect|think +(verb)|polish|round|round off|polish up|perfect|hone +brush wolf|1 +(noun)|coyote|prairie wolf|Canis latrans|wolf +brushed|3 +(adj)|touched +(adj)|groomed +(adj)|fleecy|napped|soft +brushing|2 +(noun)|brush|dental care +(noun)|brush|hair care|haircare|hairdressing +brushlike|1 +(adj)|armed +brushup|1 +(noun)|review|exercise|practice|drill|practice session|recitation +brushwood|2 +(noun)|wood +(noun)|brush|coppice|copse|thicket|vegetation|flora +brushwork|1 +(noun)|proficiency|technique +brushy|1 +(adj)|bosky|wooded +brusk|1 +(adj)|brusque|curt|short|discourteous +brusque|1 +(adj)|brusk|curt|short|discourteous +brusquely|1 +(adv)|bluffly|bluntly|flat out|roundly +brusqueness|1 +(noun)|abruptness|curtness|gruffness|shortness|discourtesy|rudeness +brussels|1 +(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital +brussels biscuit|1 +(noun)|zwieback|rusk|Brussels biscuit|twice-baked bread|toast +brussels carpet|1 +(noun)|Brussels carpet|rug|carpet|carpeting +brussels griffon|1 +(noun)|griffon|Brussels griffon|Belgian griffon|dog|domestic dog|Canis familiaris +brussels lace|1 +(noun)|Brussels lace|lace +brussels sprout|2 +(noun)|Brassica oleracea gemmifera|crucifer|cruciferous plant +(noun)|brussels sprouts|cruciferous vegetable +brussels sprouts|3 +(noun)|brussels sprout|cruciferous vegetable +(noun)|brussels sprout|Brassica oleracea gemmifera|crucifer|cruciferous plant +(noun)|brussels sprout|cruciferous vegetable +brut|1 +(adj)|dry +brutal|3 +(adj)|cruel|inhumane +(adj)|barbarous|cruel|fell|roughshod|savage|vicious|inhumane +(adj)|cruel|harsh|rigorous|unkind|hard +brutalisation|3 +(noun)|brutalization|condition|status +(noun)|brutalization|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|brutalization|animalization|animalisation|degradation|debasement +brutalise|3 +(verb)|brutalize|treat|handle|do by +(verb)|brutalize|animalize|animalise|change|alter|modify +(verb)|brutalize|animalize|animalise|change +brutality|2 +(noun)|ferociousness|viciousness|savageness|savagery|cruelty|cruelness|harshness +(noun)|barbarity|barbarism|savagery|atrocity|inhumanity +brutalization|3 +(noun)|brutalisation|condition|status +(noun)|brutalisation|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|brutalisation|animalization|animalisation|degradation|debasement +brutalize|3 +(verb)|brutalise|treat|handle|do by +(verb)|brutalise|animalize|animalise|change|alter|modify +(verb)|brutalise|animalize|animalise|change +brutally|1 +(adv)|viciously|savagely +brute|3 +(adj)|beastly|bestial|brutish|inhumane +(noun)|beast|wolf|savage|wildcat|attacker|aggressor|assailant|assaulter +(noun)|animal|animate being|beast|creature|fauna|organism|being +brutish|1 +(adj)|beastly|bestial|brute|inhumane +brutishly|1 +(adv)|bestially|in a beastly manner +brutus|1 +(noun)|Brutus|Marcus Junius Brutus|statesman|solon|national leader +bruxelles|1 +(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital +bruxism|1 +(noun)|action +brya|1 +(noun)|Brya|genus Brya|rosid dicot genus +brya ebenus|1 +(noun)|granadilla tree|granadillo|Brya ebenus|tree +bryaceae|1 +(noun)|Bryaceae|family Bryaceae|moss family +bryales|1 +(noun)|Bryales|order Bryales|plant order +bryan|2 +(noun)|Bryan|William Jennings Bryan|the Great Commoner|The Boy Orator of the Platte|politician|politico|pol|political leader|lawyer|attorney +(noun)|Bryan|town +bryan donkin|1 +(noun)|Donkin|Bryan Donkin|engineer|applied scientist|technologist +bryanthus|1 +(noun)|shrub|bush +bryanthus taxifolius|1 +(noun)|mountain heath|Phyllodoce caerulea|Bryanthus taxifolius|heath +bryce canyon national park|1 +(noun)|Bryce Canyon National Park|national park +brynhild|1 +(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie +bryonia alba|1 +(noun)|white bryony|devil's turnip|Bryonia alba|bryony|briony +bryonia dioica|1 +(noun)|red bryony|wild hop|Bryonia dioica|bryony|briony +bryony|1 +(noun)|briony|vine +bryophyta|1 +(noun)|Bryophyta|division Bryophyta|division +bryophyte|1 +(noun)|nonvascular plant|nonvascular organism +bryophytic|1 +(adj)|nonvascular organism +bryopsida|1 +(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class +bryozoa|2 +(noun)|Bryozoa|phylum Bryozoa|polyzoa|phylum +(noun)|bryozoan|polyzoan|sea mat|sea moss|moss animal|invertebrate +bryozoan|1 +(noun)|polyzoan|sea mat|sea moss|moss animal|invertebrate +brythonic|1 +(noun)|Brythonic|Brittanic|Celtic|Celtic language +bryum|1 +(noun)|Bryum|genus Bryum|moss genus +bs|1 +(noun)|Bachelor of Science|BS|SB|bachelor's degree|baccalaureate +bsarch|1 +(noun)|Bachelor of Science in Architecture|BSArch|bachelor's degree|baccalaureate +bse|1 +(noun)|bovine spongiform encephalitis|BSE|mad cow disease|animal disease +btu|1 +(noun)|British thermal unit|BTU|B.Th.U.|work unit|heat unit|energy unit +bubaline|1 +(adj)|bison +bubalus|1 +(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus +bubalus bubalis|1 +(noun)|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo|buffalo +bubalus mindorensis|1 +(noun)|tamarau|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo|buffalo +bubble|7 +(noun)|globule +(noun)|house of cards|scheme|strategy +(noun)|illusion|fantasy|phantasy|fancy +(noun)|covering +(verb)|emit|breathe|pass off|bubble over +(verb)|ripple|babble|guggle|burble|gurgle|sound|go +(verb)|burp|belch|eruct|emit|breathe|pass off +bubble-jet printer|2 +(noun)|bubble jet printer|bubblejet|ink-jet printer +(noun)| +bubble and squeak|1 +(noun)|dish +bubble bath|1 +(noun)|bath +bubble chamber|1 +(noun)|measuring instrument|measuring system|measuring device +bubble dance|1 +(noun)|nude dancing +bubble gum|1 +(noun)|chewing gum|gum +bubble gum dermatitis|1 +(noun)|contact dermatitis +bubble jet printer|1 +(noun)|bubble-jet printer|bubblejet|ink-jet printer +bubble over|1 +(verb)|overflow|spill over|seethe|boil +bubble pack|1 +(noun)|blister pack|packing material|packing|wadding +bubble shell|1 +(noun)|gastropod|univalve +bubble up|1 +(verb)|intumesce|surface|come up|rise up|rise +bubblejet|1 +(noun)|bubble jet printer|bubble-jet printer|ink-jet printer +bubbler|2 +(noun)|drinking fountain|water fountain|fountain +(noun)|device +bubbliness|1 +(noun)|effervescence|frothiness|gaseousness +bubbling|3 +(adj)|bubbly|foaming|foamy|frothy|effervescing|effervescent +(adj)|effervescent|scintillating|sparkling|sparkly|lively +(adj)|foaming|foamy|frothing|spumous|spumy|sudsy|agitated +bubbly|3 +(adj)|bubbling|foaming|foamy|frothy|effervescing|effervescent +(adj)|lively +(noun)|champagne|sparkling wine +buber|1 +(noun)|Buber|Martin Buber|philosopher +bubo|2 +(noun)|lymph node|lymph gland|node|symptom +(noun)|Bubo|genus Bubo|bird genus +bubo virginianus|1 +(noun)|great horned owl|Bubo virginianus|horned owl +bubonic|1 +(adj)|lymph node|lymph gland|node|symptom +bubonic plague|1 +(noun)|plague +bubulcus|1 +(noun)|Bubulcus|genus Bubulcus|bird genus +bubulcus ibis|1 +(noun)|cattle egret|Bubulcus ibis|egret +buccal|3 +(adj)|feature|lineament +(adj)|oral +(adj)|oral +buccal artery|1 +(noun)|arteria buccalis|artery|arteria|arterial blood vessel +buccal cavity|1 +(noun)|cavity|bodily cavity|cavum +buccaneer|2 +(noun)|pirate|sea robber|sea rover|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter +(verb)|live +buccaneering|1 +(noun)|piracy|robbery +buccinator muscle|1 +(noun)|cheek muscle|musculus buccinator|facial muscle +buccinidae|1 +(noun)|Buccinidae|family Buccinidae|mollusk family +bucconidae|1 +(noun)|Bucconidae|family Bucconidae|bird family +buccula|1 +(noun)|double chin|chin|mentum +bucephala|1 +(noun)|Bucephala|genus Bucephala|bird genus +bucephala islandica|1 +(noun)|Barrow's goldeneye|Bucephala islandica|goldeneye|whistler|Bucephela clangula +bucephela albeola|1 +(noun)|bufflehead|butterball|dipper|Bucephela albeola|duck +bucephela clangula|1 +(noun)|goldeneye|whistler|Bucephela clangula|duck +buceros|1 +(noun)|Buceros|genus Buceros|bird genus +bucerotidae|1 +(noun)|Bucerotidae|family Bucerotidae|bird family +buchanan|1 +(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States|United States President|President|Chief Executive +bucharest|1 +(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital +bucharesti|1 +(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital +buchloe|1 +(noun)|Buchloe|genus Buchloe|monocot genus|liliopsid genus +buchloe dactyloides|1 +(noun)|buffalo grass|Buchloe dactyloides|grass +buchner|1 +(noun)|Buchner|Eduard Buchner|chemist +buck|10 +(adj)|subordinate |low-level +(noun)|vaulting horse|long horse|horse +(noun)|dollar|dollar bill|one dollar bill|clam|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer|author|missionary|missioner +(noun)|sawhorse|horse|sawbuck|framework|frame|framing +(noun)|placental|placental mammal|eutherian|eutherian mammal +(verb)|endeavor|endeavour|strive +(verb)|go against|react|oppose +(verb)|tear|shoot|shoot down|charge|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|jerk|hitch|move +buck-and-wing|1 +(noun)|tap dancing|tap dance +buck-toothed|1 +(adj)|toothed +buck fever|1 +(noun)|fever +buck private|1 +(noun)|private|common soldier|enlisted man +buck up|1 +(verb)|take heart|cheer|hearten|recreate|embolden +buckaroo|1 +(noun)|vaquero|buckeroo|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +buckbean|1 +(noun)|water shamrock|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +buckbean family|1 +(noun)|Menyanthaceae|family Menyanthaceae|dicot family|magnoliopsid family +buckboard|1 +(noun)|carriage|equipage|rig +bucked up|1 +(adj)|encouraged|pleased +buckeroo|1 +(noun)|vaquero|buckaroo|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +bucket|4 +(noun)|pail|vessel +(noun)|bucketful|containerful +(verb)|put|set|place|pose|position|lay +(verb)|transport|carry +bucket along|1 +(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|belt along|travel|go|move|locomote +bucket seat|1 +(noun)|seat +bucket shop|2 +(noun)|brokerage|brokerage firm|securities firm +(noun)|tavern|tap house +bucketful|1 +(noun)|bucket|containerful +buckeye|3 +(noun)|horse chestnut|conker|seed +(noun)|horse chestnut|Aesculus hippocastanum|angiospermous tree|flowering tree +(noun)|Ohioan|Buckeye|American +buckeye state|1 +(noun)|Ohio|Buckeye State|OH|American state +bucking bronco|1 +(noun)|bronco|bronc|broncho +buckingham palace|1 +(noun)|Buckingham Palace|palace|castle +buckle|5 +(noun)|fastener|fastening|holdfast|fixing +(noun)|warp|distorted shape|distortion +(verb)|clasp|fasten|fix|secure +(verb)|crumple|collapse|fall in|cave in|give|give way|break|founder +(verb)|heave|warp|change surface +buckle down|1 +(verb)|slave|break one's back|knuckle down|work|do work +buckle under|1 +(verb)|yield|give in|succumb|knuckle under|accept|consent|go for +buckler|1 +(noun)|shield|armor|armour +buckler fern|1 +(noun)|shield fern|fern +buckler mustard|1 +(noun)|Biscutalla laevigata|shrub|bush +buckleya|1 +(noun)|Buckleya distichophylla|parasitic plant +buckleya distichophylla|1 +(noun)|buckleya|Buckleya distichophylla|parasitic plant +buckminster fuller|1 +(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect|designer|engineer|applied scientist|technologist +buckminsterfullerene|1 +(noun)|buckyball|fullerene +buckram|3 +(adj)|starchy|stiff|formal +(noun)|fabric|cloth|material|textile +(verb)|stiffen +buckshee|1 +(adj)|unpaid +buckshot|1 +(noun)|bird shot|duck shot|shot|pellet +buckskin|2 +(noun)|saddle horse|riding horse|mount +(noun)|leather +buckskins|3 +(noun)|breeches|knee breeches|knee pants|knickerbockers|knickers +(noun)|buckskin|saddle horse|riding horse|mount +(noun)|buckskin|leather +buckthorn|3 +(noun)|shrub|bush +(noun)|shrub|bush +(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|Plantago lanceolata|plantain +buckthorn berry|1 +(noun)|yellow berry|fruit +buckthorn family|1 +(noun)|Rhamnaceae|family Rhamnaceae|dicot family|magnoliopsid family +bucktooth|1 +(noun)|front tooth|anterior +buckwheat|2 +(noun)|Polygonum fagopyrum|Fagopyrum esculentum|herb|herbaceous plant +(noun)|grain|food grain|cereal +buckwheat cake|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +buckwheat family|1 +(noun)|Polygonaceae|family Polygonaceae|dicot family|magnoliopsid family +buckwheat tree|1 +(noun)|titi|Cliftonia monophylla|angiospermous tree|flowering tree +buckyball|1 +(noun)|buckminsterfullerene|fullerene +bucolic|4 +(adj)|arcadian|pastoral|rustic|rural +(adj)|pastoral|herder|herdsman|drover +(noun)|peasant|provincial|rustic +(noun)|eclogue|idyll|pastoral +bucuresti|1 +(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital +bud|4 +(noun)|flower|bloom|blossom +(noun)|sprout +(verb)|develop +(verb)|begin|start +bud brush|1 +(noun)|bud sagebrush|Artemis spinescens|sagebrush|sage brush +bud sagebrush|1 +(noun)|bud brush|Artemis spinescens|sagebrush|sage brush +budapest|1 +(noun)|Budapest|Hungarian capital|capital of Hungary|national capital +buddha|2 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +(noun)|Buddha|saint|holy man|holy person|angel +buddhism|2 +(noun)|Buddhism|religion|faith +(noun)|Buddhism|religion|faith|religious belief +buddhist|2 +(adj)|Buddhist|Buddhistic|religion|faith|religious belief +(noun)|Buddhist|religionist|religious person +buddhistic|1 +(adj)|Buddhist|Buddhistic|religion|faith|religious belief +budding|2 +(adj)|undeveloped +(noun)|asexual reproduction|agamogenesis +buddleia|1 +(noun)|butterfly bush|shrub|bush +buddy|1 +(noun)|brother|chum|crony|pal|sidekick|friend +buddy-buddy|1 +(adj)|chummy|thick|close +buddy holly|1 +(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star|songwriter|songster|ballad maker +buddy system|1 +(noun)|pairing +budge|2 +(noun)|Budge|Don Budge|John Donald Budge|tennis player +(verb)|stir|shift|agitate|move +budgereegah|1 +(noun)|budgerigar|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +budgerigar|1 +(noun)|budgereegah|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +budgerygah|1 +(noun)|budgerigar|budgereegah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +budget|3 +(noun)|fund|monetary fund +(noun)|plan|program|programme +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +budget cut|1 +(noun)|cut +budget deficit|1 +(noun)|deficit +budget for|1 +(verb)|allow|take into account +budget items|1 +(noun)|operating expense|operating cost|overhead|expense|disbursal|disbursement +budgetary|1 +(adj)|fund|monetary fund +budgie|1 +(noun)|budgerigar|budgereegah|budgerygah|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +budorcas|1 +(noun)|Budorcas|genus Budorcas|mammal genus +budorcas taxicolor|1 +(noun)|takin|gnu goat|Budorcas taxicolor|goat antelope +buena vista|1 +(noun)|Buena Vista|pitched battle +buenos aires|1 +(noun)|Buenos Aires|capital of Argentina|national capital|port +buff|8 +(adj)|chromatic +(noun)|fan|devotee|lover|follower +(noun)|leather +(noun)|skin|tegument|cutis +(noun)|yellowish brown|raw sienna|caramel|caramel brown|brown|brownness +(noun)|buffer|implement +(verb)|buffet|hit +(verb)|burnish|furbish|flush|polish|smooth|smoothen|shine +buffalo|5 +(noun)|American bison|American buffalo|Bison bison|bison +(noun)|Buffalo|city|metropolis|urban center +(noun)|game +(noun)|Old World buffalo|bovid +(verb)|overawe|cow +buffalo bill|1 +(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman|promoter|impresario +buffalo bill's wild west show|1 +(noun)|Wild West Show|Buffalo Bill's Wild West Show|show +buffalo bill cody|1 +(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman|promoter|impresario +buffalo bur|1 +(noun)|Solanum rostratum|nightshade +buffalo carpet beetle|1 +(noun)|Anthrenus scrophulariae|carpet beetle|carpet bug +buffalo chip|1 +(noun)|chip|cow chip|cow dung|droppings|dung|muck +buffalo clover|3 +(noun)|bluebonnet|Texas bluebonnet|Lupinus subcarnosus|lupine|lupin +(noun)|Trifolium stoloniferum|clover|trefoil +(noun)|Trifolium reflexum|clover|trefoil +buffalo fish|2 +(noun)|buffalofish|sucker +(noun)|buffalofish|freshwater fish +buffalo gnat|1 +(noun)|blackfly|black fly|gnat +buffalo gourd|1 +(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|calabazilla|Cucurbita foetidissima|gourd|gourd vine +buffalo grass|2 +(noun)|St. Augustine grass|Stenotaphrum secundatum|grass +(noun)|Buchloe dactyloides|grass +buffalo indian|1 +(noun)|Plains Indian|Buffalo Indian|Indian|North American Indian|American Indian|Red Indian +buffalo nut|2 +(noun)|elk nut|oil nut|fruit +(noun)|rabbitwood|Pyrularia pubera|parasitic plant +buffalo wing|1 +(noun)|dish +buffalofish|2 +(noun)|freshwater fish +(noun)|buffalo fish|sucker +buffel grass|1 +(noun)|Cenchrus ciliaris|Pennisetum cenchroides|burgrass|bur grass +buffer|8 +(noun)|compound|chemical compound +(noun)|fender|cowcatcher|pilot|framework|frame|framing +(noun)|buffer storage|buffer store|memory device|storage device +(noun)|polisher|power tool +(noun)|fender|device +(noun)|buff|implement +(verb)|modify +(verb)|cushion|soften|modify +buffer country|1 +(noun)|buffer state|country|state|land +buffer solution|1 +(noun)|solution +buffer state|1 +(noun)|buffer country|country|state|land +buffer storage|1 +(noun)|buffer|buffer store|memory device|storage device +buffer store|1 +(noun)|buffer|buffer storage|memory device|storage device +buffered aspirin|1 +(noun)|Bufferin|aspirin|acetylsalicylic acid|Bayer|Empirin +bufferin|1 +(noun)|buffered aspirin|Bufferin|aspirin|acetylsalicylic acid|Bayer|Empirin +buffet|5 +(noun)|counter|sideboard|furniture|piece of furniture|article of furniture +(noun)|meal|repast +(noun)|snack bar|snack counter|bar +(verb)|knock about|batter|strike +(verb)|buff|hit +buffet car|1 +(noun)|dining car|diner|dining compartment|passenger car|coach|carriage +buffeted|1 +(adj)|storm-tossed|tempest-tossed|tempest-tost|tempest-swept|troubled +buffeting|1 +(noun)|pounding|bump|blow +buffing wheel|1 +(noun)|wheel +bufflehead|1 +(noun)|butterball|dipper|Bucephela albeola|duck +buffoon|2 +(noun)|clown|fool|sap|saphead|muggins|tomfool +(noun)|clown|merry andrew|comedian|comic +buffoonery|1 +(noun)|clowning|frivolity|harlequinade|prank|folly|foolery|tomfoolery|craziness|lunacy|indulgence +buffoonish|1 +(adj)|clownish|clowlike|zany|humorous |humourous +bufo|1 +(noun)|true toad +bufo americanus|1 +(noun)|American toad|Bufo americanus|true toad +bufo boreas|1 +(noun)|western toad|Bufo boreas|true toad +bufo bufo|1 +(noun)|European toad|Bufo bufo|true toad +bufo calamita|1 +(noun)|natterjack|Bufo calamita|true toad +bufo canorus|1 +(noun)|Yosemite toad|Bufo canorus|true toad +bufo debilis|1 +(noun)|American green toad|Bufo debilis|true toad +bufo marinus|1 +(noun)|agua|agua toad|Bufo marinus|true toad +bufo microscaphus|1 +(noun)|southwestern toad|Bufo microscaphus|true toad +bufo speciosus|1 +(noun)|Texas toad|Bufo speciosus|true toad +bufo viridis|1 +(noun)|Eurasian green toad|Bufo viridis|true toad +bufonidae|1 +(noun)|Bufonidae|family Bufonidae|amphibian family +bug|7 +(noun)|insect +(noun)|glitch|defect|fault|flaw +(noun)|microphone|mike +(noun)|hemipterous insect|hemipteran|hemipteron|insect +(noun)|microbe|germ|microorganism +(verb)|tease|badger|pester|beleaguer|torment|rag|bedevil|crucify|dun|frustrate +(verb)|wiretap|tap|intercept|listen in|eavesdrop +bug-hunter|1 +(noun)|entomologist|bugologist|zoologist|animal scientist +bug out|1 +(verb)|protrude|pop|pop out|bulge|bulge out|come out|change shape|change form|deform +bugaboo|2 +(noun)|bogeyman|bugbear|boogeyman|booger|monster +(noun)|concern|worry|headache|vexation +buganda|1 +(noun)|Buganda|state|province +bugbane|2 +(noun)|white hellebore|American hellebore|Indian poke|Veratrum viride|hellebore|false hellebore +(noun)|woody plant|ligneous plant +bugbear|2 +(noun)|bogeyman|bugaboo|boogeyman|booger|monster +(noun)|hobgoblin|object +bugged|1 +(adj)|wired +bugger|2 +(noun)|sodomite|sodomist|sod|pervert|deviant|deviate|degenerate +(verb)|sodomize|sodomise|copulate|mate|pair|couple +bugger all|1 +(noun)|fuck all|Fanny Adams|sweet Fanny Adams|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip +bugger off|1 +(verb)|scram|buzz off|fuck off|get|leave|go forth|go away +buggery|1 +(noun)|sodomy|anal sex|anal intercourse|perversion|sexual perversion +bugginess|1 +(noun)|defectiveness|faultiness +buggy|3 +(adj)|balmy|barmy|bats|batty|bonkers|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +(adj)|dirty |soiled|unclean +(noun)|roadster|carriage|equipage|rig +buggy whip|1 +(noun)|horsewhip +bugle|4 +(noun)|brass +(noun)|bugleweed|herb|herbaceous plant +(noun)|bead +(verb)|play|spiel +bugle call|1 +(noun)|signal|signaling|sign +bugler|1 +(noun)|trumpeter|cornetist +bugleweed|2 +(noun)|Lycopus virginicus|herb|herbaceous plant +(noun)|bugle|herb|herbaceous plant +bugloss|2 +(noun)|alkanet|Anchusa officinalis|anchusa +(noun)|oxtongue|bristly oxtongue|bitterweed|Picris echioides|weed +bugologist|1 +(noun)|entomologist|bug-hunter|zoologist|animal scientist +bugology|1 +(noun)|entomology|zoology|zoological science +buhl|1 +(noun)|boulle|boule|embellishment +build|12 +(noun)|physique|body-build|habitus|bodily property +(noun)|human body|physical body|material body|soma|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +(verb)|construct|make|make|create +(verb)|build up|work up|progress|develop +(verb)|establish|make|create +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|oversee|supervise|superintend|manage +(verb)|develop +(verb)|create +(verb)|establish|base|ground|found +(verb)|build up|work up|ramp up|increase +(verb)|intensify|deepen +build in|1 +(verb)|integrate|incorporate +build on|1 +(verb)|repose on|rest on|build upon|depend on|devolve on|depend upon|ride|turn on|hinge on|hinge upon +build up|5 +(verb)|increase +(verb)|work up|build|progress|develop +(verb)|arm|fortify|gird +(verb)|work up|build|ramp up|increase +(verb)|develop|better|improve|amend|ameliorate|meliorate +build upon|1 +(verb)|repose on|rest on|build on|depend on|devolve on|depend upon|ride|turn on|hinge on|hinge upon +builder|2 +(noun)|detergent builder|material|stuff +(noun)|constructor|creator +building|4 +(noun)|edifice|structure|construction +(noun)|construction|creating from raw materials +(noun)|construction|commercial enterprise|business enterprise|business +(noun)|gathering|assemblage +building block|2 +(noun)|unit|thing +(noun)|building material +building code|1 +(noun)|code|codification +building complex|1 +(noun)|complex|structure|construction +building department|1 +(noun)|plant department|business department +building material|1 +(noun)|artifact|artefact +building permit|1 +(noun)|license|licence|permit +building site|1 +(noun)|vacant lot|lot +building society|1 +(noun)|savings and loan|savings and loan association +building supply house|1 +(noun)|building supply store|shop|store +building supply store|1 +(noun)|building supply house|shop|store +buildup|3 +(noun)|accumulation|accrual|accruement +(noun)|accretion|accumulation +(noun)|promotion|publicity|promotional material|packaging +built|3 +(adj)|reinforced|improved +(adj)|assembled|made-up|collective +(adj)|stacked|well-stacked|shapely +built-in|1 +(adj)|constitutional|inbuilt|inherent|integral|intrinsic |intrinsical +built-in bed|2 +(noun)|bed +(noun)|berth|bunk|built in bed|bed +built-soap powder|1 +(noun)|soap powder|washing powder|soap +built-up|1 +(adj)|settled +built in bed|1 +(noun)|berth|bunk|bed +buirdly|1 +(adj)|beefy|burly|husky|strapping|robust +bujumbura|1 +(noun)|Bujumbura|Usumbura|capital of Burundi|national capital +bukharin|1 +(noun)|Bukharin|Nikolai Ivanovich Bukharin|Bolshevik|Bolshevist +bulawayo|1 +(noun)|Bulawayo|city|metropolis|urban center +bulb|5 +(noun)|stalk|stem +(noun)|light bulb|lightbulb|incandescent lamp|electric light|electric-light bulb|electric lamp +(noun)|part|portion +(noun)|medulla oblongata|medulla|neural structure +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +bulbaceous|1 +(adj)|stalk|stem +bulbar|1 +(adj)|neural structure +bulbar conjunctiva|1 +(noun)|conjunctival layer of bulb|tunica conjunctiva bulbi|conjunctiva +bulbed|1 +(adj)|stalk|stem +bulbil|1 +(noun)|bulblet|bulb +bulblet|1 +(noun)|bulbil|bulb +bulblet bladder fern|1 +(noun)|bulblet fern|berry fern|Cystopteris bulbifera|bladder fern +bulblet fern|1 +(noun)|bulblet bladder fern|berry fern|Cystopteris bulbifera|bladder fern +bulblike|1 +(adj)|bulbous|round |circular +bulbourethral gland|1 +(noun)|Cowper's gland|exocrine gland|duct gland +bulbous|2 +(adj)|bulblike|round |circular +(adj)|bellied|bellying|bulging|bulgy|protuberant|protrusive +bulbous iris|1 +(noun)|iris|flag|fleur-de-lis|sword lily|genus Iris +bulbous plant|1 +(noun)|vascular plant|tracheophyte +bulbul|1 +(noun)|nightingale|Luscinia megarhynchos +bulgaria|1 +(noun)|Bulgaria|Republic of Bulgaria|Balkan country|Balkan nation|Balkan state +bulgarian|3 +(adj)|Bulgarian|Balkan country|Balkan nation|Balkan state +(noun)|Bulgarian|European +(noun)|Bulgarian|Slavic|Slavic language|Slavonic|Slavonic language +bulgarian capital|1 +(noun)|Sofia|Serdica|Bulgarian capital|national capital +bulgarian monetary unit|1 +(noun)|Bulgarian monetary unit|monetary unit +bulge|5 +(noun)|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection +(verb)|pouch|protrude|change shape|change form|deform +(verb)|bag|stick out|protrude|jut out|jut|project +(verb)|protrude|pop|pop out|bulge out|bug out|come out|change shape|change form|deform +(verb)|bulk|swell +bulge out|1 +(verb)|protrude|pop|pop out|bulge|bug out|come out|change shape|change form|deform +bulghur|1 +(noun)|bulgur|bulgur wheat|wheat|wheat berry +bulginess|1 +(noun)|roundedness|convexity|convexness +bulging|2 +(adj)|convex |bell-shaped|biconvex|convexo-convex|lenticular|lentiform|broken-backed|hogged|convexo-concave|gibbous|gibbose|planoconvex|umbellate|umbel-like|protrusive +(adj)|bellied|bellying|bulbous|bulgy|protuberant|protrusive +bulgur|1 +(noun)|bulghur|bulgur wheat|wheat|wheat berry +bulgur pilaf|1 +(noun)|pilaf|pilaff|pilau|pilaw +bulgur wheat|1 +(noun)|bulgur|bulghur|wheat|wheat berry +bulgy|1 +(adj)|bellied|bellying|bulbous|bulging|protuberant|protrusive +bulima nervosa|1 +(noun)|bulimarexia|binge-purge syndrome|binge-vomit syndrome|eating disorder +bulimarexia|1 +(noun)|binge-purge syndrome|binge-vomit syndrome|bulima nervosa|eating disorder +bulimia|2 +(noun)|binge-eating syndrome|eating disorder +(noun)|hunger|hungriness +bulimic|2 +(adj)|hunger|hungriness +(noun)|sick person|diseased person|sufferer +bulk|5 +(noun)|majority|number|figure +(noun)|mass|volume|magnitude +(noun)|mass +(verb)|bulge|pouch|protrude +(verb)|bulge|swell +bulk large|1 +(verb)|brood|hover|loom|hang +bulk mail|1 +(noun)|mail +bulk modulus|1 +(noun)|coefficient of elasticity|modulus of elasticity|elastic modulus +bulkhead|1 +(noun)|partition|divider +bulkiness|1 +(noun)|massiveness|largeness|bigness +bulky|1 +(adj)|large +bull|15 +(noun)|cattle|cows|kine|oxen|Bos taurus +(noun)|bruiser|strapper|Samson|man|adult male +(noun)|bullshit|Irish bull|horseshit|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(noun)|cop|copper|fuzz|pig|policeman|police officer|officer +(noun)|investor +(noun)|Taurus|Bull|person|individual|someone|somebody|mortal|human|soul +(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|bull's eye|center|centre|midpoint +(noun)|papal bull|decree|edict|fiat|order|rescript +(noun)|placental|placental mammal|eutherian|eutherian mammal +(verb)|bull through|push|bear on +(verb)|speculate|job +(verb)|bullshit|fake|feign|sham|pretend|affect|dissemble +(verb)|rise|go up|climb +bull's eye|3 +(noun)|score +(noun)|bull|center|centre|midpoint +(noun)|bell ringer|mark|home run|success +bull-snake|2 +(noun)|bull snake|colubrid snake|colubrid +(noun)| +bull bay|1 +(noun)|southern magnolia|evergreen magnolia|large-flowering magnolia|Magnolia grandiflora|magnolia +bull fiddle|1 +(noun)|bass fiddle|bass viol|double bass|contrabass|string bass|bowed stringed instrument|string|bass +bull market|1 +(noun)|market|securities industry +bull mastiff|1 +(noun)|working dog +bull moose party|1 +(noun)|Progressive Party|Bull Moose Party|party|political party +bull neck|1 +(noun)|neck|cervix +bull nettle|1 +(noun)|horse nettle|ball nettle|ball nightshade|Solanum carolinense|nightshade +bull nose|2 +(noun)|animal disease +(noun)|bullnose|bullnosed plane|plane|carpenter's plane|woodworking plane +bull pine|1 +(noun)|ponderosa|ponderosa pine|western yellow pine|Pinus ponderosa|yellow pine +bull run|1 +(noun)|Bull Run|Battle of Bull Run|pitched battle +bull session|1 +(noun)|conference|group discussion +bull shark|1 +(noun)|cub shark|Carcharhinus leucas|requiem shark +bull snake|2 +(noun)|bull-snake|colubrid snake|colubrid +(noun)| +bull terrier|2 +(noun)|bullterrier|terrier +(noun)| +bull thistle|1 +(noun)|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle|plumed thistle +bull through|1 +(verb)|bull|push|bear on +bull tongue|1 +(noun)|plow|plough +bulla|2 +(noun)|blister|bleb|vesicle|cyst +(noun)|seal|stamp +bullace|1 +(noun)|Prunus insititia|plum|plum tree +bullace grape|1 +(noun)|muscadine|grape +bullate|1 +(adj)|rough |unsmooth +bullbat|1 +(noun)|nighthawk|mosquito hawk|goatsucker|nightjar|caprimulgid +bullbrier|1 +(noun)|greenbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine +bulldog|4 +(adj)|dogged|dour|pertinacious|tenacious|unyielding|stubborn +(noun)|English bulldog|working dog +(verb)|assail|assault|set on|attack +(verb)|overcome|get over|subdue|surmount|master +bulldog ant|1 +(noun)|ant|emmet|pismire +bulldog clip|1 +(noun)|alligator clip|clip +bulldog wrench|1 +(noun)|wrench|spanner +bulldoze|1 +(verb)|level|raze|rase|dismantle|tear down|take down|pull down +bulldozer|1 +(noun)|dozer|tractor +bullet|3 +(noun)|slug|projectile|missile +(noun)|bullet train|passenger train +(noun)|fastball|heater|smoke|hummer|pitch|delivery +bullet-headed|2 +(adj)|bullheaded|pigheaded|stubborn +(adj)|brachycephalic |brachycranial|brachycranic +bullet fingerprinting|1 +(noun)|ballistic identification|ballistic fingerprinting|identification +bullet hole|1 +(noun)|hole +bullet train|1 +(noun)|bullet|passenger train +bullet vote|1 +(verb)|vote +bullethead|1 +(noun)|human head +bulletin|2 +(noun)|report|news report|story|account|write up +(verb)|publicize|publicise|air|bare +bulletin board|2 +(noun)|bulletin board system|electronic bulletin board|bbs|digital computer +(noun)|notice board|board +bulletin board system|1 +(noun)|bulletin board|electronic bulletin board|bbs|digital computer +bulletproof|2 +(adj)|ironclad|unassailable|unshakable|watertight|incontestable |incontestible +(adj)|armored |armoured +bulletproof vest|1 +(noun)|vest|waistcoat|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +bullfight|1 +(noun)|corrida|spectacle +bullfighter|1 +(noun)|toreador|person|individual|someone|somebody|mortal|human|soul +bullfighting|1 +(noun)|blood sport +bullfinch|2 +(noun)|Bullfinch|Charles Bullfinch|architect|designer +(noun)|Pyrrhula pyrrhula|finch +bullfrog|1 +(noun)|Rana catesbeiana|true frog|ranid +bullhead|2 +(noun)|sculpin +(noun)|catfish|siluriform fish +bullheaded|1 +(adj)|bullet-headed|pigheaded|stubborn +bullheadedness|1 +(noun)|stubbornness|obstinacy|obstinance|pigheadedness|self-will|resoluteness|firmness|resolve|resolution +bullhorn|1 +(noun)|loud-hailer|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +bullied|1 +(adj)|browbeaten|cowed|hangdog|intimidated|afraid +bullion|2 +(noun)|precious metal +(noun)|ingot|metal bar|block of metal +bullish|1 +(adj)|optimistic +bullnecked|1 +(adj)|strong +bullnose|1 +(noun)|bullnosed plane|plane|carpenter's plane|woodworking plane +bullnosed plane|1 +(noun)|bullnose|plane|carpenter's plane|woodworking plane +bullock|2 +(noun)|bull +(noun)|steer|cattle|cows|kine|oxen|Bos taurus +bullock's heart|2 +(noun)|bullock's heart tree|bullock heart|Annona reticulata|custard apple|custard apple tree +(noun)|Jamaica apple|custard apple +bullock's heart tree|1 +(noun)|bullock's heart|bullock heart|Annona reticulata|custard apple|custard apple tree +bullock's oriole|1 +(noun)|Bullock's oriole|Icterus galbula bullockii|northern oriole|Icterus galbula +bullock block|1 +(noun)|bollock|pulley|pulley-block|block +bullock heart|1 +(noun)|bullock's heart|bullock's heart tree|Annona reticulata|custard apple|custard apple tree +bullocky|1 +(adj)|strong +bullpen|2 +(noun)|area +(noun)|detention cell|detention centre|cell|jail cell|prison cell +bullring|1 +(noun)|stadium|bowl|arena|sports stadium +bullrush|2 +(noun)|cat's-tail|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail +(noun)|bulrush|common rush|soft rush|Juncus effusus|rush +bullshit|2 +(noun)|bull|Irish bull|horseshit|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +(verb)|bull|fake|feign|sham|pretend|affect|dissemble +bullshot|1 +(noun)|cocktail +bullterrier|1 +(noun)|bull terrier|terrier +bully|4 +(adj)|bang-up|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(noun)|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +(verb)|strong-arm|browbeat|bullyrag|ballyrag|boss around|hector|push around|intimidate +(verb)|browbeat|swagger|wheedle|cajole|palaver|blarney|coax|sweet-talk|inveigle +bully beef|1 +(noun)|corned beef|corn beef|beef|boeuf +bully off|1 +(verb)|face off|play +bully pulpit|1 +(noun)|public office +bully tree|1 +(noun)|balata|balata tree|beefwood|Manilkara bidentata|tree +bullyboy|1 +(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +bullying|2 +(adj)|blustery|domineering +(noun)|intimidation|aggression +bullyrag|1 +(verb)|strong-arm|bully|browbeat|ballyrag|boss around|hector|push around|intimidate +bulnesia|1 +(noun)|Bulnesia|genus Bulnesia|rosid dicot genus +bulnesia sarmienti|1 +(noun)|palo santo|Bulnesia sarmienti|angiospermous tree|flowering tree +bulrush|2 +(noun)|cat's-tail|bullrush|nailrod|reed mace|reedmace|Typha latifolia|cattail +(noun)|bullrush|common rush|soft rush|Juncus effusus|rush +bulrush millet|1 +(noun)|pearl millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal|cereal grass +bultmann|1 +(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian|theologist|theologizer|theologiser +bulwark|4 +(noun)|rampart|wall|embankment +(noun)|bulwarks|barrier +(noun)|breakwater|groin|groyne|mole|seawall|jetty|barrier +(verb)|defend +bulwarks|4 +(noun)|bulwark|barrier +(noun)|rampart|bulwark|wall|embankment +(noun)|bulwark|barrier +(noun)|breakwater|groin|groyne|mole|bulwark|seawall|jetty|barrier +bulwer-lytton|1 +(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer|author +bum|7 +(adj)|cheap|cheesy|chintzy|crummy|punk|sleazy|tinny|inferior +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|tramp|hobo|vagrant|drifter|floater|vagabond +(noun)|idler|loafer|do-nothing|layabout|nonworker +(noun)|buttocks|nates|arse|butt|backside|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(verb)|mooch|cadge|grub|sponge|obtain +(verb)|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +bum about|1 +(verb)|bum|bum around|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +bum around|1 +(verb)|bum|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +bumble|3 +(verb)|botch|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|stumble|falter|walk +(verb)|stutter|stammer|falter|talk|speak|utter|mouth|verbalize|verbalise +bumblebee|1 +(noun)|humblebee|bee +bumbler|1 +(noun)|bungler|blunderer|fumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent|incompetent person +bumbling|1 +(adj)|bungling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit +bumboat|1 +(noun)|boat +bumelia|1 +(noun)|Bumelia|genus Bumelia|dicot genus|magnoliopsid genus +bumelia lanuginosa|1 +(noun)|false buckthorn|chittamwood|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn +bumelia lycioides|1 +(noun)|southern buckthorn|shittimwood|shittim|mock orange|Bumelia lycioides|buckthorn +bumf|1 +(noun)|bumph|toilet tissue|toilet paper|bathroom tissue +bummer|2 +(noun)|irritation|annoyance|vexation|botheration +(noun)|effect +bump|8 +(noun)|injury|hurt|harm|trauma +(noun)|bulge|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection +(noun)|blow|impact +(verb)|knock|hit|strike|impinge on|run into|collide with|bump into +(verb)|find|happen|chance|encounter +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|demote|relegate|break|kick downstairs|delegate|designate|depute|assign|bump off +(verb)|dislodge|displace|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +bump around|1 +(verb)|jar|shake up|move|displace +bump into|1 +(verb)|run into|jar against|butt against|knock against|hit|strike|impinge on|run into|collide with +bump off|1 +(verb)|murder|slay|hit|dispatch|polish off|remove|kill +bump up|1 +(verb)|raise +bumper|3 +(adj)|abundant +(noun)|glass|drinking glass +(noun)|mechanical device +bumper-to-bumper|1 +(adj)|slow +bumper car|1 +(noun)|Dodgem|vehicle +bumper guard|1 +(noun)|mechanical device +bumper jack|1 +(noun)|jack +bumph|1 +(noun)|bumf|toilet tissue|toilet paper|bathroom tissue +bumpiness|1 +(noun)|roughness +bumpkin|1 +(noun)|yokel|rube|hick|yahoo|hayseed|chawbacon|rustic +bumpkinly|1 +(adj)|hick|rustic|unsophisticated|provincial +bumptious|1 +(adj)|self-assertive|forward +bumptiousness|1 +(noun)|cockiness|pushiness|forwardness|assertiveness|self-assertiveness +bumpy|1 +(adj)|jarring|jolting|jolty|rough |unsmooth +bun|1 +(noun)|roll|bread|breadstuff|staff of life +bun-fight|2 +(noun)|bunfight|party +(noun)| +buna rubber|1 +(noun)|synthetic rubber +bunce|1 +(noun)|boom|bonanza|gold rush|gravy|godsend|manna from heaven|windfall|happening|occurrence|natural event +bunch|5 +(noun)|clump|cluster|clustering|agglomeration +(noun)|crowd|crew|gang|gathering|assemblage +(noun)|lot|caboodle|collection|aggregation|accumulation|assemblage +(verb)|bunch together|bunch up|cluster|constellate|flock|clump +(verb)|bunch up|bundle|cluster|clump|form +bunch grass|2 +(noun)|bunchgrass|grass +(noun)| +bunch together|1 +(verb)|bunch|bunch up|cluster|constellate|flock|clump +bunch up|2 +(verb)|bunch together|bunch|cluster|constellate|flock|clump +(verb)|bunch|bundle|cluster|clump|form +bunchberry|1 +(noun)|dwarf cornel|crackerberry|pudding berry|Cornus canadensis|dogwood|dogwood tree|cornel +bunche|1 +(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat|diplomatist +bunched|1 +(adj)|bunchy|clustered|concentrated +bunchgrass|1 +(noun)|bunch grass|grass +bunchy|1 +(adj)|bunched|clustered|concentrated +bunco|2 +(noun)|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +bunco game|1 +(noun)|bunco|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +buncombe|1 +(noun)|bunk|bunkum|guff|rot|hogwash|drivel|garbage +bundesbank|1 +(noun)|Bundesbank|central bank +bundle|7 +(noun)|package|packet|parcel|collection|aggregation|accumulation|assemblage +(noun)|sheaf|package|parcel +(noun)|pile|big bucks|megabucks|big money|money +(verb)|bundle up|roll up|pack +(verb)|bunch|bunch up|cluster|clump|form +(verb)|pack|wad|compact|arrange|set up|bundle off +(verb)|practice bundling|sleep|kip|slumber|log Z's|catch some Z's +bundle of his|1 +(noun)|atrioventricular bundle|bundle of His|atrioventricular trunk|truncus atrioventricularis|cardiac muscle|heart muscle +bundle off|1 +(verb)|dispatch|despatch|send off +bundle up|2 +(verb)|bundle|roll up|pack +(verb)|dress|get dressed +bundled-up|1 +(adj)|clothed |clad +bundling|3 +(noun)|courtship|wooing|courting|suit +(noun)|packing|boxing +(noun)|shove +bunfight|1 +(noun)|bun-fight|party +bung|3 +(noun)|spile|plug|stopper|stopple +(verb)|tip|fee|give|gift|present +(verb)|close|shut +bungaloid|1 +(adj)|house +bungalow|1 +(noun)|cottage|house +bungarus|1 +(noun)|Bungarus|genus Bungarus|reptile genus +bungarus fasciatus|1 +(noun)|banded krait|banded adder|Bungarus fasciatus|krait +bungee|1 +(noun)|bungee cord|rope +bungee cord|1 +(noun)|bungee|rope +bunghole|1 +(noun)|hole +bungle|3 +(noun)|blunder|blooper|bloomer|foul-up|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|act|behave|do +bungled|1 +(adj)|botched|unskilled +bungler|1 +(noun)|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent|incompetent person +bunglesome|1 +(adj)|awkward|clumsy|ungainly|unwieldy |unmanageable +bungling|2 +(adj)|clumsy|fumbling|incompetent|unskilled +(adj)|bumbling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit +bunion|1 +(noun)|swelling|puffiness|lump +bunji-bunji|1 +(noun)|Flindersia schottiana|silver ash +bunk|9 +(noun)|feed bunk|manger|trough +(noun)|berth|built in bed|bed +(noun)|bed +(noun)|bunkum|buncombe|guff|rot|hogwash|drivel|garbage +(noun)|nonsense|nonsensicality|meaninglessness|hokum|message|content|subject matter|substance +(noun)|bunk bed|bed +(verb)|beat|cheat|rip off|chisel +(verb)|bed +(verb)|run|scarper|turn tail|lam|run away|hightail it|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +bunk bed|1 +(noun)|bunk|bed +bunk down|1 +(verb)|bed down|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +bunk off|1 +(verb)|play hooky|cut|skip +bunker|5 +(noun)|sand trap|trap|hazard +(noun)|dugout|fortification|munition +(verb)|hit +(verb)|fuel +(verb)|transfer|shift +bunker buster|1 +(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb|LGB +bunker hill|1 +(noun)|Bunker Hill|battle of Bunker Hill|pitched battle +bunker mentality|1 +(noun)|defensiveness +bunkmate|1 +(noun)|acquaintance|friend +bunko|1 +(noun)|bunco|bunco game|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +bunko game|1 +(noun)|bunco|bunco game|bunko|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +bunkum|1 +(noun)|bunk|buncombe|guff|rot|hogwash|drivel|garbage +bunny|2 +(noun)|bunny girl|waitress +(noun)|bunny rabbit|rabbit|coney|cony +bunny girl|1 +(noun)|bunny|waitress +bunny hug|1 +(noun)|ballroom dancing|ballroom dance +bunny rabbit|1 +(noun)|bunny|rabbit|coney|cony +buns|2 +(noun)|buttocks|nates|arse|butt|backside|bum|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|bun|roll|bread|breadstuff|staff of life +bunsen|2 +(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist +(noun)|bunsen burner|etna|gas burner|gas jet +bunsen burner|1 +(noun)|bunsen|etna|gas burner|gas jet +bunt|6 +(noun)|hit|hitting|striking +(noun)|stinking smut|smut +(noun)|stinking smut|Tilletia foetida|smut|smut fungus +(noun)|Tilletia caries|smut|smut fungus +(verb)|drag a bunt|hit +(verb)|butt|strike +buntal|1 +(noun)|plant fiber|plant fibre +bunter|1 +(noun)|batter|hitter|slugger|batsman +bunting|2 +(noun)|fabric|cloth|material|textile +(noun)|finch +bunuel|1 +(noun)|Bunuel|Luis Bunuel|film director +bunya bunya|2 +(noun)|bunya bunya tree|Araucaria bidwillii|araucaria +(noun)|edible nut +bunya bunya tree|1 +(noun)|bunya bunya|Araucaria bidwillii|araucaria +bunyan|2 +(noun)|Bunyan|John Bunyan|preacher|preacher man|sermonizer|sermoniser|writer|author +(noun)|Bunyan|Paul Bunyan|fictional character|fictitious character|character|lumberman|lumberjack|feller|faller +bunyaviridae|1 +(noun)|Bunyaviridae|arbovirus|arborvirus +bunyavirus|1 +(noun)|animal virus +buoy|4 +(noun)|reference point|point of reference|reference +(verb)|float|swim +(verb)|buoy up|hold|support|sustain|hold up +(verb)|mark +buoy up|3 +(verb)|lighten|cheer|cheer up|chirk up +(verb)|lighten|cheer +(verb)|buoy|hold|support|sustain|hold up +buoyancy|3 +(noun)|perkiness|cheerfulness|blitheness +(noun)|airiness|lightness|weightlessness +(noun)|irrepressibility|liveliness|life|spirit|sprightliness +buoyant|2 +(adj)|floaty|light +(adj)|chirpy|perky|cheerful +buoyantly|1 +(adv)|chirpily +buphthalmum|1 +(noun)|Buphthalmum|genus Buphthalmum|asterid dicot genus +buphthalmum salicifolium|1 +(noun)|woodland oxeye|Buphthalmum salicifolium|oxeye +bur|3 +(noun)|burr|pericarp|seed vessel +(noun)|burr|bit +(verb)|burr|remove|take|take away|withdraw +bur-reed family|1 +(noun)|Sparganiaceae|family Sparganiaceae|monocot family|liliopsid family +bur grass|2 +(noun)|burgrass|grass +(noun)| +bur marigold|1 +(noun)|burr marigold|beggar-ticks|beggar's-ticks|sticktight|subshrub|suffrutex +bur oak|1 +(noun)|burr oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak +bur reed|1 +(noun)|herb|herbaceous plant +bura|1 +(noun)|Bura|Pabir|Biu-Mandara +burbage|1 +(noun)|Burbage|Richard Burbage|actor|histrion|player|thespian|role player +burbank|1 +(noun)|Burbank|Luther Burbank|horticulturist|plantsman +burberry|1 +(noun)|Burberry|raincoat|waterproof +burble|1 +(verb)|ripple|babble|guggle|bubble|gurgle|sound|go +burbling|1 +(adj)|burbly|effusive|gushing|lively +burbly|1 +(adj)|burbling|effusive|gushing|lively +burbot|1 +(noun)|eelpout|ling|cusk|Lota lota|cod|codfish +burchell's zebra|1 +(noun)|common zebra|Burchell's zebra|Equus Burchelli|zebra +burden|6 +(noun)|load|encumbrance|incumbrance|onus|concern|worry|headache|vexation +(noun)|load|loading|weight +(noun)|effect|essence|core|gist|meaning|significance|signification|import +(noun)|idea|thought +(verb)|burthen|weight|weight down|charge +(verb)|charge|saddle|command|require|compel +burden of proof|1 +(noun)|duty|responsibility|obligation +burdened|2 +(adj)|burdened |bowed down|loaded down|overburdened|weighed down|laden|oppressed|saddled +(adj)|heavy-laden|loaded down|encumbered +burdenless|1 +(adj)|unburdened|unencumbered +burdensome|1 +(adj)|onerous|taxing|heavy +burdensomeness|1 +(noun)|onerousness|oppressiveness|difficulty|difficultness +burdock|1 +(noun)|clotbur|subshrub|suffrutex +bureau|2 +(noun)|agency|federal agency|government agency|office|authority|administrative unit|administrative body +(noun)|chest of drawers|chest|dresser|furniture|piece of furniture|article of furniture +bureau de change|1 +(noun)|company +bureau of alcohol tobacco and firearms|1 +(noun)|Bureau of Alcohol Tobacco and Firearms|ATF|law enforcement agency +bureau of customs|1 +(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency|federal agency|government agency|bureau|office|authority +bureau of diplomatic security|1 +(noun)|Bureau of Diplomatic Security|DS|agency|federal agency|government agency|bureau|office|authority +bureau of engraving and printing|1 +(noun)|Bureau of Engraving and Printing|agency|federal agency|government agency|bureau|office|authority +bureau of intelligence and research|1 +(noun)|Bureau of Intelligence and Research|INR|agency|federal agency|government agency|bureau|office|authority +bureau of justice assistance|1 +(noun)|Bureau of Justice Assistance|BJA|agency|federal agency|government agency|bureau|office|authority +bureau of justice statistics|1 +(noun)|Bureau of Justice Statistics|BJS|agency|federal agency|government agency|bureau|office|authority +bureau of the census|1 +(noun)|Bureau of the Census|Census Bureau|agency|federal agency|government agency|bureau|office|authority +bureaucracy|1 +(noun)|bureaucratism|government officials|officialdom +bureaucrat|1 +(noun)|administrative official|official|functionary +bureaucratic|1 +(adj)|official|functionary|government officials|officialdom +bureaucratic procedure|1 +(noun)|red tape|procedure +bureaucratism|1 +(noun)|bureaucracy|government officials|officialdom +buret|1 +(noun)|burette|measuring instrument|measuring system|measuring device +burette|1 +(noun)|buret|measuring instrument|measuring system|measuring device +burg|1 +(noun)|town +burgeon|1 +(verb)|grow +burgeon forth|1 +(verb)|shoot|spud|germinate|pullulate|bourgeon|sprout|grow +burgess|2 +(noun)|Burgess|Anthony Burgess|writer|author +(noun)|burgher|Englishman +burgh|1 +(noun)|borough +burgher|2 +(noun)|burgess|Englishman +(noun)|bourgeois|commoner|common man|common person +burglar|1 +(noun)|thief|stealer +burglar alarm|2 +(noun)|alarm|alert|warning signal|alarum +(noun)|alarm|warning device|alarm system +burglarious|1 +(adj)|felony +burglarise|1 +(verb)|burglarize|burgle|heist|steal +burglarize|1 +(verb)|burglarise|burgle|heist|steal +burglarproof|1 +(adj)|protected |secure +burglary|1 +(noun)|felony +burgle|1 +(verb)|burglarize|burglarise|heist|steal +burgomaster|1 +(noun)|mayor|city manager +burgoo|3 +(noun)|oatmeal|porridge +(noun)|cookout +(noun)|stew +burgoyne|1 +(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general|full general +burgrass|1 +(noun)|bur grass|grass +burgrave|2 +(noun)|Lord|noble|nobleman +(noun)|military governor +burgundy|3 +(noun)|Bourgogne|Burgundy|French region +(noun)|Burgundy|Burgundy wine|wine|vino +(noun)|dark red +burgundy sauce|1 +(noun)|bourguignon|bourguignon sauce|Burgundy sauce|sauce +burgundy wine|1 +(noun)|Burgundy|Burgundy wine|wine|vino +burhinidae|1 +(noun)|Burhinidae|family Burhinidae|bird family +burhinus|1 +(noun)|Burhinus|genus Burhinus|bird genus +burhinus oedicnemus|1 +(noun)|stone curlew|thick-knee|Burhinus oedicnemus|shorebird|shore bird|limicoline bird +burial|2 +(noun)|entombment|inhumation|interment|sepulture|funeral +(noun)|burying|concealment|concealing|hiding +burial chamber|1 +(noun)|sepulcher|sepulchre|sepulture|grave|tomb|chamber +burial garment|1 +(noun)|cloth covering +burial ground|1 +(noun)|cemetery|graveyard|burial site|burying ground|memorial park|necropolis|site|land site +burial mound|1 +(noun)|grave mound|barrow|tumulus|mound|hill +burial site|1 +(noun)|cemetery|graveyard|burial ground|burying ground|memorial park|necropolis|site|land site +burial vault|1 +(noun)|vault|burial chamber|sepulcher|sepulchre|sepulture +buried|2 +(adj)|hidden|concealed +(adj)|buried |inhumed|interred|belowground +burin|1 +(noun)|chisel +burk|1 +(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman +burka|1 +(noun)|burqa|garment +burke|4 +(noun)|Burke|Edmund Burke|statesman|solon|national leader|orator|speechmaker|rhetorician|public speaker|speechifier +(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman +(verb)|murder|slay|hit|dispatch|bump off|polish off|remove +(verb)|suppress|stamp down|inhibit|subdue|conquer|curb +burked|1 +(adj)|suppressed +burkina faso|1 +(noun)|Burkina Faso|Upper Volta|country|state|land +burkina faso franc|1 +(noun)|Burkina Faso franc|franc +burl|4 +(noun)|wood +(noun)|plant process|enation +(noun)|slub|knot|roughness +(verb)|remove|take|take away|withdraw +burlap|1 +(noun)|gunny|sacking|bagging +burlap bag|1 +(noun)|gunnysack|gunny sack|bag +burled|1 +(adj)|patterned +burlesque|4 +(adj)|show +(noun)|show +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(verb)|spoof|parody|mock +burlington|1 +(noun)|Burlington|city|metropolis|urban center +burly|1 +(adj)|beefy|husky|strapping|buirdly|robust +burma|1 +(noun)|Myanmar|Union of Burma|Burma|Asian country|Asian nation +burma padauk|1 +(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree +burmannia|1 +(noun)|Burmannia|genus Burmannia|monocot genus|liliopsid genus +burmanniaceae|1 +(noun)|Burmanniaceae|family Burmanniaceae|monocot family|liliopsid family +burmeisteria|1 +(noun)|Burmeisteria|genus Burmeisteria|mammal genus +burmeisteria retusa|1 +(noun)|greater pichiciego|Burmeisteria retusa|armadillo +burmese|3 +(adj)|Burmese|Asian country|Asian nation +(noun)|Burmese|Asian|Asiatic +(noun)|Burmese|Lolo-Burmese|Burmese-Yi +burmese-yi|1 +(noun)|Lolo-Burmese|Burmese-Yi|Tibeto-Burman|Tibeto-Burman language +burmese cat|1 +(noun)|Burmese cat|domestic cat|house cat|Felis domesticus|Felis catus +burmese rosewood|1 +(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree +burn|20 +(noun)|burning|pain|hurting +(noun)|tan|suntan|sunburn|hyperpigmentation +(noun)|injury|hurt|harm|trauma +(noun)|burn mark|blemish|defect|mar +(noun)|damage|harm|hurt|scathe +(verb)|fire|burn down|destroy|ruin +(verb)|glow|shine|beam +(verb)|combust|change state|turn +(verb)|bite|sting|ache|smart|hurt +(verb)|combust +(verb)|feel|experience +(verb)|incinerate|change integrity +(verb)|execute|put to death +(verb)|waste|blow|squander +(verb)|ache|smart|hurt +(verb)|cauterize|cauterise|treat|care for +(verb)|sunburn|discolor|discolour|colour|color +(verb)|cut|produce|make|create +(verb)|burn off|burn up|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|damage +burn bag|1 +(noun)|bag +burn center|1 +(noun)|center|centre +burn down|2 +(verb)|burn up|go up|burn|combust +(verb)|burn|fire|destroy|ruin +burn mark|1 +(noun)|burn|blemish|defect|mar +burn off|2 +(verb)|burn|burn up|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|denude|bare|denudate|strip +burn out|1 +(verb)|blow out|blow|fail|go bad|give way|die|give out|conk out|go|break|break down +burn plant|1 +(noun)|Aloe vera|aloe +burn up|3 +(verb)|flare|flame up|blaze up|burn|combust +(verb)|burn off|burn|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|burn down|go up|burn|combust +burnable|1 +(adj)|flammable|ignitable|ignitible|inflammable|combustible +burned|6 +(adj)|burned |burnt|change state|turn +(adj)|injured +(adj)|burnt|treated +(adj)|baked|burnt|tempered |treated|hardened|toughened +(adj)|burnt|burned-out|burnt-out|destroyed +(adj)|burnt|cooked +burned-out|3 +(adj)|burnt-out|tired +(adj)|burnt-out|unserviceable +(adj)|burned|burnt|burnt-out|destroyed +burner|2 +(noun)|apparatus|setup +(noun)|heating element +burnet bloodwort|1 +(noun)|salad burnet|pimpernel|Poterium sanguisorba|herb|herbaceous plant +burnett|1 +(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer|author +burnham|1 +(noun)|Burnham|Daniel Hudson Burnham|architect|designer +burning|11 +(adj)|painful +(adj)|hot +(adj)|ardent|fervent|fervid|fiery|impassioned|perfervid|torrid|passionate +(adj)|ablaze|afire|aflame|aflare|alight|blazing|flaming|on fire|lighted |lit +(adj)|important |of import +(adj)|fueled +(noun)|combustion|change of integrity +(noun)|burn|pain|hurting +(noun)|combustion|oxidation|oxidization|oxidisation +(noun)|electrocution|execution|executing|capital punishment|death penalty +(noun)|burning at the stake|execution|executing|capital punishment|death penalty +burning at the stake|1 +(noun)|burning|execution|executing|capital punishment|death penalty +burning bush|4 +(noun)|shrub|bush +(noun)|wahoo|Euonymus atropurpureus|shrub|bush +(noun)|fraxinella|dittany|gas plant|Dictamnus alba|herb|herbaceous plant +(noun)|summer cypress|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +burnish|2 +(noun)|polish|gloss|glossiness|radiance|radiancy|shine|effulgence|refulgence|refulgency|smoothness +(verb)|buff|furbish|flush|polish|smooth|smoothen|shine +burnished|1 +(adj)|bright|lustrous|shining|shiny|polished +burnoose|1 +(noun)|burnous|burnouse|cloak +burnous|1 +(noun)|burnoose|burnouse|cloak +burnouse|1 +(noun)|burnous|burnoose|cloak +burns|7 +(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian|comedian|comic +(noun)|Burns|Robert Burns|poet +(noun)|burn|burning|pain|hurting +(noun)|tan|suntan|sunburn|burn|hyperpigmentation +(noun)|burn|injury|hurt|harm|trauma +(noun)|burn|burn mark|blemish|defect|mar +(noun)|burn|damage|harm|hurt|scathe +burnside|2 +(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general|full general +(noun)|sideburn|mutton chop|side-whiskers|beard|face fungus|whiskers +burnt|5 +(adj)|burned|cooked +(adj)|burned |change state|turn +(adj)|burned|treated +(adj)|baked|burned|tempered |treated|hardened|toughened +(adj)|burned|burned-out|burnt-out|destroyed +burnt-out|3 +(adj)|burned-out|tired +(adj)|burned-out|unserviceable +(adj)|burned|burnt|burned-out|destroyed +burnt lime|1 +(noun)|calcium oxide|quicklime|lime|calx|calcined lime|fluxing lime|unslaked lime|oxide +burnt sienna|2 +(noun)|reddish brown|sepia|Venetian red|brown|brownness +(noun)|sienna +burnt umber|2 +(noun)|umber +(noun)|chocolate|coffee|deep brown|umber|brown|brownness +burnup|2 +(noun)|race +(noun)|consumption|using up|expenditure +burp|2 +(noun)|belch|belching|burping|eructation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +(verb)|bubble|belch|eruct|emit|breathe|pass off +burp gun|1 +(noun)|machine pistol|submachine gun +burping|1 +(noun)|belch|belching|burp|eructation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +burqa|1 +(noun)|burka|garment +burr|6 +(noun)|bur|pericarp|seed vessel +(noun)|projection +(noun)|Burr|Aaron Burr|politician|politico|pol|political leader +(noun)|power tool +(noun)|bur|bit +(verb)|bur|remove|take|take away|withdraw +burr-headed|1 +(adj)|headed +burr drill|1 +(noun)|dentist's drill|drill +burr marigold|1 +(noun)|bur marigold|beggar-ticks|beggar's-ticks|sticktight|subshrub|suffrutex +burr oak|1 +(noun)|bur oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak +burrawong|2 +(noun)|Macrozamia spiralis|cycad +(noun)|Macrozamia communis|cycad +burred|1 +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burry|prickly|setose|setaceous|spiny|thorny|armed +burrfish|1 +(noun)|spiny puffer +burrhus frederic skinner|1 +(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist +burrill bernard crohn|1 +(noun)|Crohn|Burrill Bernard Crohn|doctor|doc|physician|MD|Dr.|medico +burrito|1 +(noun)|dish +burrlike|1 +(adj)|pericarp|seed vessel +burro|1 +(noun)|domestic ass|donkey|Equus asinus +burro deer|1 +(noun)|mule deer|Odocoileus hemionus|deer|cervid +burroughs|3 +(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer|author +(noun)|Burroughs|William Seward Burroughs|inventor|discoverer|artificer +(noun)|Burroughs|Edgar Rice Burroughs|writer|author +burrow|2 +(noun)|tunnel|hole|hollow +(verb)|tunnel|dig|delve|cut into|turn over +burry|1 +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|prickly|setose|setaceous|spiny|thorny|armed +bursa|2 +(noun)|Bursa|Brusa|city|metropolis|urban center +(noun)|sac +bursa omentalis|1 +(noun)|omental bursa|lesser peritoneal cavity|cavity|bodily cavity|cavum +bursal|1 +(adj)|sac +bursar|1 +(noun)|treasurer|financial officer +bursary|1 +(noun)|treasury|exchequer +bursera|1 +(noun)|Bursera|genus Bursera|rosid dicot genus +bursera microphylla|1 +(noun)|elephant tree|Bursera microphylla|incense tree +bursera simaruba|1 +(noun)|gumbo-limbo|Bursera simaruba|incense tree +burseraceae|1 +(noun)|Burseraceae|family Burseraceae|torchwood family|rosid dicot family +bursiform|1 +(adj)|pouch-shaped|pouchlike|saclike|concave +bursitis|1 +(noun)|inflammation|redness|rubor +burst|13 +(adj)|ruptured|busted|damaged +(noun)|explosion|change of integrity +(noun)|fusillade|salvo|volley|fire|firing +(noun)|fit|activity +(noun)|outburst|flare-up|happening|occurrence|natural event +(verb)|split|break open|break|separate|split up|fall apart|come apart +(verb)|break|erupt|express emotion|express feelings +(verb)|explode|change integrity +(verb)|jump|leap|bound|spring +(verb)|abound|bristle|have|feature +(verb)|emerge +(verb)|collapse +(verb)|bust|break|separate|split up|fall apart|come apart +burst forth|3 +(verb)|leap out|rush out|sally out|appear +(verb)|explode|break loose|change state|turn +(verb)|effloresce|bloom|blossom|flower +burst in on|1 +(verb)|burst upon|interrupt|disrupt|break up|cut off +burst out|3 +(verb)|express|show|evince +(verb)|pop out|appear +(verb)|erupt|irrupt|flare up|flare|break open|intensify|deepen +burst upon|1 +(verb)|burst in on|interrupt|disrupt|break up|cut off +burster|1 +(noun)|charge|bursting charge|explosive charge|explosive +bursting|1 +(adj)|detonating|exploding|explosive +bursting charge|1 +(noun)|charge|burster|explosive charge|explosive +bursting explosive|1 +(noun)|disrupting explosive|high explosive +burt|1 +(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist +burthen|2 +(noun)|load|loading|burden +(verb)|burden|weight|weight down|charge +burton|3 +(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer|adventurer +(noun)|Burton|Richard Burton|actor|histrion|player|thespian|role player +(noun)|Burton|ale +burundi|2 +(adj)|Burundi|Burundian|African country|African nation +(noun)|Burundi|Republic of Burundi|African country|African nation +burundi franc|1 +(noun)|Burundi franc|franc +burundian|2 +(adj)|Burundi|Burundian|African country|African nation +(noun)|Burundian|African +burunduki|1 +(noun)|baronduki|baranduki|barunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +burweed marsh elder|1 +(noun)|false ragweed|Iva xanthifolia|marsh elder|iva +bury|6 +(verb)|hide|conceal +(verb)|entomb|inhume|inter|lay to rest|lay|put down|repose +(verb)|situate|fix|posit|deposit +(verb)|immerse|swallow|swallow up|eat up|enclose|inclose|shut in +(verb)|sink|implant|engraft|embed|imbed|plant +(verb)|forget +burying|1 +(noun)|burial|concealment|concealing|hiding +burying ground|1 +(noun)|cemetery|graveyard|burial site|burial ground|memorial park|necropolis|site|land site +bus|7 +(noun)|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|public transport +(noun)|bus topology|topology|network topology +(noun)|busbar|conductor +(noun)|jalopy|heap|car|auto|automobile|machine|motorcar|dysphemism +(verb)|transport +(verb)|ride +(verb)|take away|take out +bus company|1 +(noun)|bus service|utility|public utility|public-service corporation|transportation company +bus depot|1 +(noun)|bus terminal|bus station|coach station|terminal|terminus|depot +bus driver|1 +(noun)|busman|driver +bus fare|1 +(noun)|carfare|fare|transportation +bus lane|1 +(noun)|traffic lane +bus line|1 +(noun)|transit line +bus route|1 +(noun)|path|route|itinerary +bus service|1 +(noun)|bus company|utility|public utility|public-service corporation|transportation company +bus station|1 +(noun)|bus terminal|bus depot|coach station|terminal|terminus|depot +bus stop|1 +(noun)|stop +bus terminal|1 +(noun)|bus depot|bus station|coach station|terminal|terminus|depot +bus ticket|1 +(noun)|ticket +bus topology|1 +(noun)|bus|topology|network topology +bus traffic|1 +(noun)|vehicular traffic|vehicle traffic +busbar|1 +(noun)|bus|conductor +busboy|1 +(noun)|waiter's assistant|dining-room attendant|restaurant attendant +busby|1 +(noun)|bearskin|shako|hat|chapeau|lid +bush|9 +(adj)|bush-league|inferior +(noun)|shrub|woody plant|ligneous plant +(noun)|wilderness|wild +(noun)|scrub|chaparral|vegetation|flora +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +(noun)|Bush|Vannevar Bush|electrical engineer +(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States|United States President|President|Chief Executive +(noun)|pubic hair|crotch hair|hair +(verb)|supply|provide|render|furnish +bush-league|1 +(adj)|bush|inferior +bush administration|1 +(noun)|Bush administration|executive +bush baby|2 +(noun)|galago|bushbaby|lemur +(noun)| +bush clover|1 +(noun)|lespedeza|woody plant|ligneous plant +bush hibiscus|1 +(noun)|Radyera farragei|Hibiscus farragei|shrub|bush +bush honeysuckle|3 +(noun)|Tartarian honeysuckle|Lonicera tatarica|honeysuckle +(noun)|Diervilla sessilifolia|shrub|bush +(noun)|Diervilla lonicera|shrub|bush +bush jacket|1 +(noun)|jacket +bush lawyer|1 +(noun)|lawyerbush|lawyer bush|Rubus cissoides|Rubus australis|bramble bush +bush league|1 +(noun)|minor league|minors|league|conference +bush leaguer|1 +(noun)|minor leaguer|ballplayer|baseball player +bush nasturtium|1 +(noun)|Tropaeolum minus|nasturtium +bush out|1 +(verb)|expand|spread out +bush pea|1 +(noun)|herb|herbaceous plant +bush poppy|1 +(noun)|tree poppy|shrub|bush +bush shrike|1 +(noun)|shrike +bush tit|2 +(noun)|bushtit|titmouse|tit +(noun)| +bush vetch|1 +(noun)|Vicia sepium|vetch +bush violet|1 +(noun)|browallia|flower +bush willow|2 +(noun)|Combretum erythrophyllum|angiospermous tree|flowering tree +(noun)|Combretum appiculatum|angiospermous tree|flowering tree +bushbaby|1 +(noun)|galago|bush baby|lemur +bushbuck|1 +(noun)|guib|Tragelaphus scriptus|harnessed antelope +bushed|1 +(adj)|all in|beat|dead|tired +bushel|4 +(noun)|United States dry unit +(noun)|British capacity unit|Imperial capacity unit +(noun)|bushel basket|basket|handbasket +(verb)|repair|mend|fix|doctor|furbish up|restore|touch on|better|improve|amend|ameliorate|meliorate +bushel basket|1 +(noun)|bushel|basket|handbasket +bushido|1 +(noun)|Bushido|code|codification +bushing|2 +(noun)|insulator|dielectric|nonconductor +(noun)|cylindrical lining|lining +bushman|2 +(noun)|Bushman|nomad +(noun)|pioneer +bushman's poison|1 +(noun)|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub|bush +bushnell|1 +(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor|discoverer|artificer +bushtit|1 +(noun)|bush tit|titmouse|tit +bushwhack|3 +(verb)|ambush|scupper|waylay|lurk|ambuscade|lie in wait|wait +(verb)|live +(verb)|make|work +bushwhacker|2 +(noun)|hillbilly|rustic +(noun)|Confederate soldier +bushwhacking|1 +(adj)|concealed +bushy|2 +(adj)|shaggy|ungroomed +(adj)|branchy +bushy aster|1 +(noun)|Aster dumosus|aster +bushytail woodrat|1 +(noun)|packrat|pack rat|trade rat|Neotoma cinerea|wood rat|wood-rat +business|9 +(noun)|concern|business concern|business organization|business organisation|enterprise +(noun)|commercial enterprise|business enterprise|commerce|commercialism|mercantilism +(noun)|business sector|sector +(noun)|business activity|commercial activity +(noun)|concern|worry|headache|vexation +(noun)|occupation|job|line of work|line|activity +(noun)|aim|object|objective|target +(noun)|stage business|byplay|acting|playing|playacting|performing +(noun)|clientele|patronage|people +business activity|1 +(noun)|commercial activity|enterprise|endeavor|endeavour +business address|1 +(noun)|address +business agent|1 +(noun)|agent +business card|1 +(noun)|card|identity card +business college|1 +(noun)|college +business community|1 +(noun)|businessmen|profession|community +business concern|1 +(noun)|business|concern|business organization|business organisation|enterprise +business cycle|1 +(noun)|trade cycle|variation|fluctuation +business data processing|1 +(noun)|administrative data processing|data processing +business deal|1 +(noun)|deal|trade|transaction|dealing|dealings +business deduction|1 +(noun)|tax write-off|tax deduction|deduction +business department|1 +(noun)|department|section +business district|1 +(noun)|downtown|city district +business editor|1 +(noun)|newspaper editor +business enterprise|1 +(noun)|commercial enterprise|business|commerce|commercialism|mercantilism +business establishment|1 +(noun)|place of business|establishment +business executive|1 +(noun)|corporate executive|executive|executive director +business expense|1 +(noun)|trade expense|expense|disbursal|disbursement +business firm|1 +(noun)|firm|house|business|concern|business concern|business organization|business organisation +business index|1 +(noun)|index|index number|indicant|indicator +business interruption insurance|1 +(noun)|insurance +business leader|1 +(noun)|baron|big businessman|king|magnate|mogul|power|top executive|tycoon|businessman|man of affairs +business letter|1 +(noun)|letter|missive +business life|1 +(noun)|professional life|career|calling|vocation +business line|1 +(noun)|line|product line|line of products|line of merchandise|line of business|merchandise|wares|product +business loan|1 +(noun)|commercial loan|bank loan +business lunch|1 +(noun)|lunch|luncheon|tiffin|dejeuner +business news|1 +(noun)|news +business office|1 +(noun)|office|place of business|business establishment +business organisation|1 +(noun)|business|concern|business concern|business organization|enterprise +business organization|1 +(noun)|business|concern|business concern|business organisation|enterprise +business people|2 +(noun)|businesspeople|people +(noun)| +business relation|1 +(noun)|relation +business relationship|1 +(noun)|account|relationship +business school|1 +(noun)|graduate school|grad school +business sector|1 +(noun)|business|sector +business suit|1 +(noun)|suit|suit of clothes +business traveler|1 +(noun)|traveler|traveller +businesslike|2 +(adj)|efficient +(adj)|earnest|purposeful +businessman|1 +(noun)|man of affairs|businessperson|bourgeois +businessmen|2 +(noun)|business community|profession|community +(noun)|businessman|man of affairs|businessperson|bourgeois +businesspeople|1 +(noun)|business people|people +businessperson|1 +(noun)|bourgeois|capitalist +businesswoman|1 +(noun)|businessperson|bourgeois +busker|1 +(noun)|entertainer +buskin|1 +(noun)|chukka boot|combat boot|desert boot|half boot|top boot|boot +busload|1 +(noun)|large indefinite quantity|large indefinite amount +busman|1 +(noun)|bus driver|driver +busman's holiday|1 +(noun)|vacationing +buspar|1 +(noun)|buspirone|BuSpar|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +buspirone|1 +(noun)|BuSpar|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +buss|5 +(noun)|kiss|osculation|touch|touching +(verb)|kiss|osculate|touch +(verb)|bus|transport +(verb)|bus|ride +(verb)|bus|take away|take out +bust|9 +(adj)|broke|skint|stone-broke|stony-broke|poor +(noun)|flop|failure +(noun)|sculpture +(noun)|tear|binge|bout|revel|revelry +(verb)|break|destroy|ruin|bust up +(verb)|raid|attack|assail +(verb)|tear|rupture|snap|separate|disunite|divide|part +(verb)|break|wear|wear out|fall apart|decay|crumble|delapidate +(verb)|burst|break|separate|split up|fall apart|come apart +bust-up|1 +(noun)|quarrel|wrangle|row|words|run-in|dustup +bust-up takeover|1 +(noun)|leveraged buyout +bust up|1 +(verb)|wreck|wrack|destroy|ruin +bustard|1 +(noun)|wading bird|wader +bustard quail|1 +(noun)|button quail|button-quail|hemipode|wading bird|wader +busted|3 +(adj)|broken +(adj)|burst|ruptured|damaged +(adj)|broken|damaged +buster|5 +(noun)|fellow|man|adult male +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(noun)|broncobuster|horseman|equestrian|horseback rider +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|baby buster|person|individual|someone|somebody|mortal|human|soul +buster keaton|1 +(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian|comic|actor|histrion|player|thespian|role player +bustle|3 +(noun)|hustle|flurry|ado|fuss|stir|commotion|din|ruction|ruckus|rumpus|tumult +(noun)|framework|frame|framing +(verb)|bustle about|hustle|move +bustle about|1 +(verb)|bustle|hustle|move +bustling|1 +(adj)|active +busty|1 +(adj)|bosomy|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +busy|6 +(adj)|busy |at work|drudging|laboring|labouring|toiling|engaged|occupied|overbusy|tied up|up to|diligent|employed +(adj)|fussy|fancy +(adj)|interfering|meddlesome|meddling|officious|busybodied|intrusive +(adj)|active +(adj)|engaged|in use|occupied +(verb)|occupy|work +busy bee|1 +(noun)|eager beaver|live wire|sharpie|sharpy|actor|doer|worker +busybodied|1 +(adj)|interfering|meddlesome|meddling|officious|busy|intrusive +busybody|1 +(noun)|nosy-parker|nosey-parker|meddler +busyness|1 +(noun)|hum|action|activity|activeness +busywork|1 +(noun)|make-work|work +but|1 +(adv)|merely|simply|just|only +but then|1 +(adv)|on the other hand|then again +butacaine|1 +(noun)|butacaine sulfate|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +butacaine sulfate|1 +(noun)|butacaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +butadiene|1 +(noun)|hydrocarbon +butane|1 +(noun)|methane series|alkane series|alkane|paraffin|gas|fuel +butanoic acid|1 +(noun)|butyric acid|saturated fatty acid +butanol|1 +(noun)|butyl alcohol|alcohol +butanone|1 +(noun)|methyl ethyl ketone|ketone +butat|1 +(noun)|butut|Gambian monetary unit +butazolidin|1 +(noun)|phenylbutazone|Butazolidin|anti-inflammatory|anti-inflammatory drug +butch|3 +(adj)|macho|masculine +(adj)|homosexual +(noun)|dike|dyke|lesbian|tribade|gay woman +butcher|5 +(noun)|meatman|merchant|merchandiser +(noun)|murderer|liquidator|manslayer +(noun)|slaughterer|skilled worker|trained worker +(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|fuckup|incompetent|incompetent person +(verb)|slaughter|kill +butcher's broom|1 +(noun)|Ruscus aculeatus|shrub|bush +butcher block|1 +(noun)|butcher board|slab +butcher board|1 +(noun)|butcher block|slab +butcher cumberland|1 +(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general|full general +butcher knife|1 +(noun)|knife +butcher paper|1 +(noun)|wrapping paper +butcher shop|1 +(noun)|meat market|shop|store +butcherbird|2 +(noun)|shrike +(noun)|Australian magpie +butchering|1 +(noun)|butchery|commercial enterprise|business enterprise|business +butcherly|2 +(adj)|botchy|unskillful|unskilled +(adj)|gory|sanguinary|sanguineous|slaughterous|bloody +butchery|3 +(noun)|abattoir|shambles|slaughterhouse|building|edifice +(noun)|butchering|commercial enterprise|business enterprise|business +(noun)|slaughter|massacre|mass murder|carnage|murder|slaying|execution +butea|1 +(noun)|Butea|genus Butea|rosid dicot genus +butea frondosa|1 +(noun)|dhak|dak|palas|Butea frondosa|Butea monosperma|tree +butea gum|1 +(noun)|gum butea|butea kino|Bengal kino|gum +butea kino|1 +(noun)|gum butea|butea gum|Bengal kino|gum +butea monosperma|1 +(noun)|dhak|dak|palas|Butea frondosa|Butea monosperma|tree +butene|1 +(noun)|butylene|gas +buteo|1 +(noun)|Buteo|genus Buteo|bird genus +buteo buteo|1 +(noun)|buzzard|Buteo buteo|hawk +buteo jamaicensis|1 +(noun)|redtail|red-tailed hawk|Buteo jamaicensis|hawk +buteo lagopus|1 +(noun)|rough-legged hawk|roughleg|Buteo lagopus|hawk +buteo lineatus|1 +(noun)|red-shouldered hawk|Buteo lineatus|hawk +buteonine|2 +(adj)|bird genus +(noun)|hawk +butler|1 +(noun)|pantryman|manservant +butt|11 +(noun)|butt end|stock +(noun)|goat|laughingstock|stooge|victim|dupe +(noun)|buttocks|nates|arse|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|target|sports equipment|sporting goods +(noun)|cigarette|cigaret|coffin nail|fag|roll of tobacco|smoke +(noun)|butt joint|joint +(noun)|barrel|cask +(noun)|stub|part|portion +(verb)|border|adjoin|edge|abut|march|butt against|butt on|touch|adjoin|meet|contact +(verb)|bunt|strike|butt against +(verb)|put|set|place|pose|position|lay +butt-weld|4 +(noun)|butt weld|butt joint|butt +(noun)| +(verb)|buttweld|weld +(verb)| +butt-welding|2 +(noun)|butt welding|welding +(noun)| +butt against|2 +(verb)|border|adjoin|edge|abut|march|butt|butt on|touch|adjoin|meet|contact +(verb)|run into|bump into|jar against|knock against|hit|strike|impinge on|run into|collide with +butt end|1 +(noun)|butt|stock +butt hinge|1 +(noun)|hinge|flexible joint +butt in|1 +(verb)|chime in|cut in|put in|chisel in|barge in|break in|interrupt|disrupt|break up|cut off +butt joint|1 +(noun)|butt|joint +butt on|3 +(verb)|border|adjoin|edge|abut|march|butt|butt against|touch|adjoin|meet|contact +(verb)|button|add +(verb)|button|fasten|fix|secure +butt pack|1 +(noun)|fanny pack|waist pack|belt bag +butt shaft|1 +(noun)|arrow +butt weld|2 +(noun)|butt-weld|butt joint|butt +(noun)| +butt welding|2 +(noun)|butt-welding|welding +(noun)| +butte|2 +(noun)|hill +(noun)|Butte|town +butter|3 +(noun)|dairy product|food +(noun)|combatant|battler|belligerent|fighter|scrapper +(verb)|cover +butter-and-eggs|1 +(noun)|toadflax|wild snapdragon|devil's flax|Linaria vulgaris|flower +butter-bean plant|1 +(noun)|sieva bean|butter bean|lima bean|Phaseolus lunatus|shell bean|shell bean plant +butter-flower|2 +(noun)|buttercup|butterflower|crowfoot|goldcup|kingcup|herb|herbaceous plant +(noun)| +butter-print|1 +(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|China jute|Abutilon theophrasti|mallow +butter bean|3 +(noun)|sieva bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean|shell bean plant +(noun)|sieva bean|butterbean|civet bean|shell bean +(noun)| +butter churn|1 +(noun)|churn|vessel +butter cookie|1 +(noun)|cookie|cooky|biscuit +butter daisy|1 +(noun)|cowpen daisy|golden crownbeard|golden crown beard|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +butter dish|1 +(noun)|dish +butter knife|1 +(noun)|table knife +butter up|1 +(verb)|brown-nose|flatter|blandish +butterball|2 +(noun)|fatso|fatty|fat person|roly-poly|large person +(noun)|bufflehead|dipper|Bucephela albeola|duck +butterbean|1 +(noun)|sieva bean|butter bean|civet bean|shell bean +butterbur|1 +(noun)|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb|herbaceous plant +buttercrunch|1 +(noun)|butterhead lettuce +buttercup|1 +(noun)|butterflower|butter-flower|crowfoot|goldcup|kingcup|herb|herbaceous plant +buttercup family|1 +(noun)|Ranunculaceae|family Ranunculaceae|crowfoot family|magnoliid dicot family +buttercup squash|2 +(noun)|turban squash|Cucurbita maxima turbaniformis +(noun)|turban squash +butterfat|1 +(noun)|animal fat +butterfield|1 +(noun)|Butterfield|William Butterfield|architect|designer +butterfingered|1 +(adj)|bumbling|bungling|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit +butterfingers|1 +(noun)|clumsy person +butterfish|3 +(noun)|saltwater fish +(noun)|stromateid fish|stromateid|percoid fish|percoid|percoidean +(noun)|rock gunnel|Pholis gunnellus|gunnel|bracketed blenny +butterflower|1 +(noun)|buttercup|butter-flower|crowfoot|goldcup|kingcup|herb|herbaceous plant +butterfly|5 +(noun)|lepidopterous insect|lepidopteron|lepidopteran +(noun)|butterfly stroke|swimming stroke +(verb)|flit|flutter|fleet|dart +(verb)|unfold|spread|spread out|open +(verb)|chat up|flirt|dally|coquet|coquette|romance|philander|mash|talk|speak +butterfly bush|1 +(noun)|buddleia|shrub|bush +butterfly collector|1 +(noun)|lepidopterist|entomologist|bugologist|bug-hunter +butterfly effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +butterfly fish|2 +(noun)|percoid fish|percoid|percoidean +(noun)|flying gurnard|flying robin|butterflyfish|scorpaenoid|scorpaenoid fish +butterfly flower|2 +(noun)|poor man's orchid|schizanthus|flower +(noun)|Bauhinia monandra|shrub|bush +butterfly nut|1 +(noun)|wing nut|wing-nut|wing screw|thumbnut|nut +butterfly orchid|5 +(noun)|orchid|orchidaceous plant +(noun)|oncidium|dancing lady orchid|butterfly plant|orchid|orchidaceous plant +(noun)|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid|orchidaceous plant +(noun)|Encyclia tampensis|Epidendrum tampense|orchid|orchidaceous plant +(noun)|butterfly orchis|Orchis papilionaceae|orchis +butterfly orchis|2 +(noun)|butterfly orchid|Epidendrum venosum|Encyclia venosa|orchid|orchidaceous plant +(noun)|butterfly orchid|Orchis papilionaceae|orchis +butterfly pea|3 +(noun)|blue pea|Clitoria turnatea|vine +(noun)|Clitoria mariana|vine +(noun)|Centrosema virginianum|vine +butterfly plant|2 +(noun)|Phalaenopsis amabilis|moth orchid|moth plant +(noun)|oncidium|dancing lady orchid|butterfly orchid|orchid|orchidaceous plant +butterfly ray|1 +(noun)|stingray +butterfly stroke|1 +(noun)|butterfly|swimming stroke +butterfly valve|1 +(noun)|valve +butterfly weed|1 +(noun)|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +butterflyfish|1 +(noun)|flying gurnard|flying robin|scorpaenoid|scorpaenoid fish +butterhead lettuce|1 +(noun)|lettuce +buttermilk|1 +(noun)|milk +buttermilk biscuit|1 +(noun)|soda biscuit|biscuit +buttermilk pancake|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +butternut|2 +(noun)|butternut tree|white walnut|Juglans cinerea|walnut|walnut tree +(noun)|edible nut +butternut squash|2 +(noun)|Cucurbita maxima|winter squash|winter squash plant +(noun)|winter squash +butternut tree|1 +(noun)|butternut|white walnut|Juglans cinerea|walnut|walnut tree +butterscotch|1 +(noun)|candy +butterweed|2 +(noun)|ragwort|Senecio glabellus|wildflower|wild flower +(noun)|herb|herbaceous plant +butterwort|1 +(noun)|carnivorous plant +buttery|4 +(adj)|fulsome|oily|oleaginous|smarmy|unctuous|insincere +(adj)|fatty |fat +(noun)|pantry|larder|storeroom|storage room|stowage +(noun)|teashop|teahouse|tearoom|tea parlor|tea parlour +buttinsky|1 +(noun)|meddler +buttock|1 +(noun)|cheek|body part +buttocks|2 +(noun)|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|buttock|cheek|body part +button|6 +(noun)|fastener|fastening|holdfast|fixing +(noun)|push button|push|switch|electric switch|electrical switch +(noun)|plant part|plant structure +(noun)|clitoris|clit|erectile organ +(verb)|add +(verb)|fasten|fix|secure +button-down|2 +(adj)|buttoned-down|conservative|conventional +(adj)|buttoned |fastened +button-quail|2 +(noun)|button quail|bustard quail|hemipode|wading bird|wader +(noun)| +button fern|2 +(noun)|Pellaea rotundifolia|fern +(noun)|Tectaria cicutaria|fern +button hole|2 +(noun)|buttonhole|hole +(noun)| +button mangrove|1 +(noun)|button tree|Conocarpus erectus|tree +button pink|1 +(noun)|Dianthus latifolius|pink|garden pink +button quail|2 +(noun)|button-quail|bustard quail|hemipode|wading bird|wader +(noun)| +button snakeroot|3 +(noun)|rattlesnake master|rattlesnake's master|Eryngium yuccifolium|perennial +(noun)|Eryngium aquaticum|herb|herbaceous plant +(noun)|blazing star|gayfeather|gay-feather|snakeroot|wildflower|wild flower +button tree|1 +(noun)|button mangrove|Conocarpus erectus|tree +button up|1 +(verb)|close up|clam up|dummy up|shut up|belt up|be quiet|keep mum +buttoned|1 +(adj)|buttoned |fastened|botonee|botonnee|button-down +buttoned-down|1 +(adj)|button-down|conservative|conventional +buttoned-up|2 +(adj)|taciturn +(adj)|conservative +buttonhole|2 +(noun)|button hole|hole +(verb)|lobby|solicit|beg|tap +buttonhole stitch|1 +(noun)|stitch +buttonhook|1 +(noun)|hook +buttonlike|1 +(adj)|beady|beadlike|buttony|bright +buttonwood|1 +(noun)|American sycamore|American plane|Platanus occidentalis|plane tree|sycamore|platan +buttony|2 +(adj)|beady|beadlike|buttonlike|bright +(adj)|adorned |decorated +buttress|3 +(noun)|buttressing|support +(verb)|reinforce|reenforce +(verb)|strengthen|beef up|fortify +buttressed|1 +(adj)|braced|supported +buttressing|1 +(noun)|buttress|support +buttweld|1 +(verb)|butt-weld|weld +butty|1 +(noun)|sandwich +butut|1 +(noun)|butat|Gambian monetary unit +butyl|1 +(noun)|group|radical|chemical group +butyl alcohol|1 +(noun)|butanol|alcohol +butyl nitrite|1 +(noun)|isobutyl nitrite|vasodilator|vasodilative|stimulant|stimulant drug +butyl rubber|1 +(noun)|synthetic rubber +butylate|1 +(verb)|add +butylene|1 +(noun)|butene|gas +butyraceous|1 +(adj)|animal fat +butyric|1 +(adj)|saturated fatty acid +butyric acid|1 +(noun)|butanoic acid|saturated fatty acid +butyrin|1 +(noun)|glyceryl ester +buxaceae|1 +(noun)|Buxaceae|family Buxaceae|box family|dicot family|magnoliopsid family +buxom|2 +(adj)|bosomy|busty|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +(adj)|chubby|embonpoint|plump|zaftig|zoftig|fat +buxomly|1 +(adv)|curvaceously +buxomness|1 +(noun)|plumpness|embonpoint +buxus|1 +(noun)|Buxus|genus Buxus|dicot genus|magnoliopsid genus +buxus sempervirens|1 +(noun)|common box|European box|Buxus sempervirens|box|boxwood +buy|6 +(noun)|bargain|steal|purchase +(verb)|purchase|get|acquire|buy in|buy up|buy out +(verb)|bribe|corrupt|grease one's palms|pay +(verb)|get|acquire +(verb)|believe +(verb)|be +buy-and-bust operation|1 +(noun)|undercover operation +buy at|1 +(verb)|patronize|patronise|shop|shop at|frequent|sponsor|support|back up +buy back|1 +(verb)|repurchase|buy|purchase +buy food|1 +(verb)|take out|buy|purchase +buy in|1 +(verb)|stock|supply|provide|render|furnish +buy into|1 +(verb)|invest|put|commit|place +buy it|1 +(verb)|pip out|die|decease|perish|go|exit|pass away|expire|pass +buy off|1 +(verb)|pay off|bribe|corrupt|buy|grease one's palms +buy out|1 +(verb)|take over|buy up|buy|purchase +buy the farm|1 +(verb)|kick the bucket|cash in one's chips|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +buy time|1 +(verb)|delay|detain|hold up +buy up|1 +(verb)|take over|buy out|buy|purchase +buyback|1 +(noun)|redemption|repurchase|purchase +buyer|1 +(noun)|purchaser|emptor|vendee|customer|client +buyer's market|1 +(noun)|buyers' market|market|marketplace +buyers' market|1 +(noun)|buyer's market|market|marketplace +buyi|1 +(noun)|Bouyei|Buyi|Tai +buying|1 +(noun)|purchasing|purchase +buyout|1 +(noun)|acquisition +buyout bid|1 +(noun)|bid|tender +buzz|6 +(noun)|bombilation|bombination|sound +(noun)|activity +(verb)|bombinate|bombilate|sound|go +(verb)|fly|wing +(verb)|hum|seethe|be +(verb)|summon +buzz bomb|1 +(noun)|robot bomb|flying bomb|doodlebug|V-1|guided missile +buzz off|1 +(verb)|scram|fuck off|get|bugger off|leave|go forth|go away +buzz saw|1 +(noun)|circular saw|power saw|saw|sawing machine +buzzard|2 +(noun)|turkey buzzard|turkey vulture|Cathartes aura|New World vulture|cathartid +(noun)|Buteo buteo|hawk +buzzards bay|1 +(noun)|Buzzards Bay|bay +buzzer|2 +(noun)|doorbell|bell|push button|push|button +(noun)|signaling device +buzzing|1 +(adj)|abuzz|droning|noisy +buzzword|1 +(noun)|cant|nonsense|bunk|nonsensicality|meaninglessness|hokum +bvd's|1 +(noun)|BVD's|underwear|underclothes|underclothing +bw|1 +(noun)|biological warfare|BW|biological attack|biologic attack|bioattack|war|warfare +bw defence|1 +(noun)|biological warfare defense|biological warfare defence|BW defense|BW defence|defense|defence|defensive measure +bw defense|1 +(noun)|biological warfare defense|biological warfare defence|BW defense|BW defence|defense|defence|defensive measure +bwr|1 +(noun)|boiling water reactor|BWR|water-cooled reactor +by|2 +(adv)|past +(adv)|aside|away +by-and-by|1 +(noun)|future|hereafter|futurity|time to come +by-bid|1 +(verb)|offer|bid|tender +by-blow|1 +(noun)|bastard|love child|illegitimate child|illegitimate|whoreson|offspring|progeny|issue +by-catch|2 +(noun)|bycatch|marine animal|marine creature|sea animal|sea creature +(noun)| +by-line|2 +(noun)|credit line|line +(noun)|avocation|hobby|sideline|spare-time activity|pastime|interest|pursuit +by-product|3 +(noun)|byproduct|consequence|effect|outcome|result|event|issue|upshot +(noun)|byproduct|spin-off|product|production +(noun)| +by all odds|1 +(adv)|decidedly|unquestionably|emphatically|definitely|in spades +by and by|1 +(adv)|later +by and large|1 +(adv)|generally|more often than not|mostly +by any means|1 +(adv)|by hook or by crook +by artificial means|1 +(adv)|artificially|unnaturally +by chance|4 +(adv)|incidentally|accidentally +(adv)|perchance +(adv)|haply|by luck +(adv)|accidentally|circumstantially|unexpectedly +by choice|2 +(adj)|voluntary +(adv)|intentionally|deliberately|designedly|on purpose|purposely|advisedly|by design +by design|1 +(adv)|intentionally|deliberately|designedly|on purpose|purposely|advisedly|by choice +by election|1 +(noun)|bye election|election +by experimentation|1 +(adv)|experimentally|through an experiment +by far|1 +(adv)|far and away|out and away +by fits and starts|1 +(adv)|with many interruptions +by heart|1 +(adv)|by memory +by hook or by crook|1 +(adv)|by any means +by inches|1 +(adv)|little by little|by small degrees +by luck|1 +(adv)|haply|by chance +by memory|1 +(adv)|by heart +by mouth|1 +(adv)|orally +by nature|1 +(adv)|naturally +by no means|1 +(adv)|not by a long sight|not by a blame sight +by right of office|1 +(adv)|ex officio +by rights|1 +(adv)|properly +by selection|1 +(adv)|selectively +by small degrees|1 +(adv)|by inches|little by little +by the bye|1 +(adv)|by the way|incidentally +by the day|1 +(adv)|per diem +by the hour|1 +(adv)|hourly +by the piece|1 +(adv)|one by one +by the way|1 +(adv)|by the bye|incidentally +by trial and error|1 +(adv)|empirically|through empirical observation +by word of mouth|2 +(adv)|viva voce +(adv)|orally +byblos|1 +(noun)|Byblos|dig|excavation|archeological site +bycatch|1 +(noun)|by-catch|marine animal|marine creature|sea animal|sea creature +bydgoszcz|1 +(noun)|Bydgoszcz|Bromberg|city|metropolis|urban center +bye|2 +(noun)|pass|concession|conceding|yielding +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +bye-bye|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +bye election|1 +(noun)|by election|election +bye law|1 +(noun)|bylaw|rule|prescript +byelarus|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +byelorussia|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +byelorussian|2 +(noun)|Byelorussian|Belorussian|White Russian|European +(noun)|Belarusian|Byelorussian|Slavic|Slavic language|Slavonic|Slavonic language +bygone|2 +(adj)|bypast|departed|foregone|gone|past +(noun)|water under the bridge|past|past times|yesteryear|yore +bylaw|1 +(noun)|bye law|rule|prescript +bypass|4 +(noun)|circumferential|ring road|road|route +(noun)|shunt +(noun)|shunt|electrical shunt|conductor +(verb)|short-circuit|go around|get around|avoid +bypass capacitor|1 +(noun)|bypass condenser|capacitor|capacitance|condenser|electrical condenser +bypass condenser|1 +(noun)|bypass capacitor|capacitor|capacitance|condenser|electrical condenser +bypast|1 +(adj)|bygone|departed|foregone|gone|past +bypath|1 +(noun)|byway|byroad|road|route +byplay|1 +(noun)|business|stage business|acting|playing|playacting|performing +byproduct|2 +(noun)|by-product|consequence|effect|outcome|result|event|issue|upshot +(noun)|by-product|spin-off|product|production +byrd|2 +(noun)|Byrd|William Byrd|organist|composer +(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer|adventurer|naval officer +byrnie|1 +(noun)|hauberk|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +byroad|1 +(noun)|byway|bypath|road|route +byron|1 +(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet +byssus|1 +(noun)|beard|fiber|fibre +bystander|1 +(noun)|spectator|witness|viewer|watcher|looker +byte|1 +(noun)|computer memory unit +byway|1 +(noun)|bypath|byroad|road|route +byword|1 +(noun)|proverb|adage|saw|saying|expression|locution +byzant|1 +(noun)|bezant|bezzant|solidus|coin +byzantine|5 +(adj)|Byzantine|Catholic Church +(adj)|Byzantine|geographical area|geographic area|geographical region|geographic region +(adj)|Byzantine|convoluted|intricate|involved|knotty|labyrinthine|tangled|tortuous|complex +(adj)|Byzantine|artful +(noun)|Byzantine|Asian|Asiatic +byzantine architecture|1 +(noun)|Byzantine architecture|architectural style|style of architecture|type of architecture +byzantine church|1 +(noun)|Eastern Church|Byzantine Church|Catholic Church +byzantine empire|1 +(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area|geographic area|geographical region|geographic region +byzantine greek|1 +(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek|Hellenic|Hellenic language +byzantinism|1 +(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine|religious doctrine +byzantium|2 +(noun)|Byzantium|city|metropolis|urban center +(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area|geographic area|geographical region|geographic region +c|11 +(adj)|hundred|a hundred|one hundred|100|cardinal +(noun)|degree Centigrade|degree Celsius|C|degree +(noun)|speed of light|light speed|speed|velocity|constant +(noun)|deoxycytidine monophosphate|C|nucleotide +(noun)|cytosine|C|pyrimidine +(noun)|carbon|C|atomic number 6|chemical element|element +(noun)|hundred|100|C|century|one C|centred|large integer +(noun)|coulomb|C|ampere-second|charge unit|quantity unit +(noun)|C|programming language|programing language +(noun)|C|letter|letter of the alphabet|alphabetic character +(noun)|coke|blow|nose candy|snow|C|cocaine|cocain +c-clamp|1 +(noun)|C-clamp|clamp +c-horizon|2 +(noun)|C-horizon|C horizon|soil horizon +(noun)| +c-note|1 +(noun)|hundred dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +c-ration|1 +(noun)|C-ration|field ration +c-reactive protein|1 +(noun)|C-reactive protein|CRP|serum globulin +c-section|1 +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +c. d. gibson|1 +(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator +c. diphtheriae|1 +(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium +c. h. best|1 +(noun)|Best|C. H. Best|Charles Herbert Best|physiologist +c. k. ogden|1 +(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist|semanticist|semiotician +c. northcote parkinson|1 +(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian|historiographer +c. p. snow|1 +(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer|author +c. psittaci|1 +(noun)|Chlamydia psittaci|C. psittaci|chlamydia +c. s. forester|1 +(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer|author +c. s. lewis|1 +(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer|author +c. trachomatis|1 +(noun)|Chlamydia trachomatis|C. trachomatis|chlamydia +c. vann woodward|1 +(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian|historiographer +c. w. post|1 +(noun)|Post|C. W. Post|Charles William Post|food manufacturer +c.o.d.|2 +(adv)|C.O.D.|COD|cash on delivery +(adv)| +c.p.u.|2 +(noun)|central processing unit|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment|hardware|computer hardware +(noun)| +c2h6|1 +(noun)|ethane|C2H6|methane series|alkane series|alkane|paraffin|hydrocarbon +c and w|1 +(noun)|country music|country and western|C and W|folk music|ethnic music|folk +c battery|1 +(noun)|C battery|battery|electric battery +c clef|1 +(noun)|C clef|clef +c compiler|1 +(noun)|C compiler|compiler|compiling program +c horizon|2 +(noun)|C-horizon|C horizon|soil horizon +(noun)| +c program|1 +(noun)|C program|program|programme|computer program|computer programme +ca|2 +(noun)|calcium|Ca|atomic number 20|metallic element|metal +(noun)|California|Golden State|CA|Calif.|American state +ca-ca|1 +(verb)|stool|defecate|shit|take a shit|take a crap|crap|make|excrete|egest|eliminate|pass +caaba|1 +(noun)|Kaaba|Caaba|shrine +cab|3 +(noun)|compartment +(noun)|cabriolet|carriage|equipage|rig +(noun)|hack|taxi|taxicab|car|auto|automobile|machine|motorcar +cab fare|1 +(noun)|taxi fare|fare|transportation +cabal|3 +(noun)|faction|junto|camarilla|clique|coterie|ingroup|inner circle|pack|camp +(noun)|conspiracy|plot|secret plan|game +(verb)|conspire|complot|conjure|machinate|plot +cabala|2 +(noun)|cabbala|cabbalah|kabala|kabbala|kabbalah|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +cabalism|2 +(noun)|Kabbalism|Cabalism|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|kabbalism|attachment|adherence|adhesion +cabalist|3 +(noun)|member +(noun)|kabbalist|expert +(noun)|Cabalist|Kabbalist|scholar|scholarly person|student +cabalistic|1 +(adj)|kabbalistic|qabalistic|cryptic|cryptical|sibylline|esoteric +cabana|1 +(noun)|tent|collapsible shelter +cabaret|2 +(noun)|nightclub|club|nightspot|spot +(noun)|floorshow|floor show|show +cabasset|1 +(noun)|morion|helmet +cabassous|1 +(noun)|tatouay|Cabassous unicinctus|armadillo +cabassous unicinctus|1 +(noun)|tatouay|cabassous|Cabassous unicinctus|armadillo +cabbage|4 +(noun)|chou|cruciferous vegetable +(noun)|boodle|bread|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|cultivated cabbage|Brassica oleracea|crucifer|cruciferous plant +(verb)|pilfer|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal +cabbage-bark tree|1 +(noun)|cabbage bark|cabbage tree|Andira inermis|angelim|andelmin +cabbage bark|1 +(noun)|cabbage-bark tree|cabbage tree|Andira inermis|angelim|andelmin +cabbage butterfly|1 +(noun)|pierid|pierid butterfly +cabbage palm|4 +(noun)|cabbage palmetto|Sabal palmetto|palmetto +(noun)|Roystonea oleracea|palm|palm tree +(noun)|cabbage tree|Livistona australis|palm|palm tree +(noun)|Euterpe oleracea|palm|palm tree +cabbage palmetto|1 +(noun)|cabbage palm|Sabal palmetto|palmetto +cabbage tree|3 +(noun)|cabbage palm|Livistona australis|palm|palm tree +(noun)|cabbage bark|cabbage-bark tree|Andira inermis|angelim|andelmin +(noun)|grass tree|Cordyline australis|tree +cabbageworm|1 +(noun)|Pieris rapae|caterpillar +cabbala|2 +(noun)|cabala|cabbalah|kabala|kabbala|kabbalah|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +cabbalah|2 +(noun)|cabala|cabbala|kabala|kabbala|kabbalah|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +cabby|1 +(noun)|taxidriver|taximan|cabdriver|cabman|hack driver|hack-driver|livery driver|driver +cabdriver|1 +(noun)|taxidriver|taximan|cabman|cabby|hack driver|hack-driver|livery driver|driver +cabell|1 +(noun)|Cabell|James Branch Cabell|writer|author +caber|1 +(noun)|pole +cabernet|1 +(noun)|Cabernet|Cabernet Sauvignon|red wine +cabernet sauvignon|1 +(noun)|Cabernet|Cabernet Sauvignon|red wine +cabernet sauvignon grape|1 +(noun)|Cabernet Sauvignon grape|vinifera|vinifera grape|common grape vine|Vitis vinifera +cabg|1 +(noun)|coronary bypass|coronary bypass surgery|coronary artery bypass graft|CABG|open-heart surgery +cabin|4 +(noun)|compartment +(noun)|house +(noun)|compartment +(verb)|confine +cabin boy|1 +(noun)|servant|retainer +cabin car|1 +(noun)|caboose|car|railcar|railway car|railroad car +cabin class|1 +(noun)|Cabin class|second class|accommodation +cabin cruiser|1 +(noun)|cruiser|pleasure boat|pleasure craft|motorboat|powerboat +cabin liner|1 +(noun)|liner|ocean liner +cabinet|4 +(noun)|furniture|piece of furniture|article of furniture +(noun)|advisory board|planning board +(noun)|locker|storage locker|compartment +(noun)|console|housing +cabinet minister|2 +(noun)|minister|government minister +(noun)|minister +cabinet wood|1 +(noun)|wood +cabinetmaker|1 +(noun)|furniture maker|woodworker|woodsman|woodman +cabinetmaking|1 +(noun)|joinery|carpentry|woodworking|woodwork +cabinetry|1 +(noun)|cabinetwork|carpentry|woodworking|woodwork +cabinetwork|2 +(noun)|woodwork +(noun)|cabinetry|carpentry|woodworking|woodwork +cable|8 +(noun)|cablegram|overseas telegram|telegram|wire +(noun)|line|transmission line|conductor +(noun)|rope +(noun)|cable length|cable's length|linear unit +(noun)|cable television|television|telecasting|TV|video +(noun)|cable television|cable system|cable television service|television|television system +(verb)|telegraph|wire|telecommunicate +(verb)|fasten|fix|secure +cable's length|1 +(noun)|cable|cable length|linear unit +cable car|1 +(noun)|car|compartment +cable length|1 +(noun)|cable|cable's length|linear unit +cable railway|1 +(noun)|funicular|funicular railway|railway|railroad|railroad line|railway line|railway system +cable system|1 +(noun)|cable|cable television|cable television service|television|television system +cable television|2 +(noun)|cable|television|telecasting|TV|video +(noun)|cable|cable system|cable television service|television|television system +cable television service|1 +(noun)|cable|cable television|cable system|television|television system +cable tramway|1 +(noun)|tramway|tram|aerial tramway|ropeway|conveyance|transport +cablegram|1 +(noun)|cable|overseas telegram|telegram|wire +cabman|1 +(noun)|taxidriver|taximan|cabdriver|cabby|hack driver|hack-driver|livery driver|driver +cabochon|1 +(noun)|gem|gemstone|stone +cabomba|1 +(noun)|Cabomba|genus Cabomba|magnoliid dicot genus +cabomba caroliniana|1 +(noun)|water-shield|fanwort|Cabomba caroliniana|water lily +cabombaceae|1 +(noun)|Cabombaceae|subfamily Cabombaceae|water-shield family|magnoliid dicot family +caboodle|1 +(noun)|bunch|lot|collection|aggregation|accumulation|assemblage +caboose|2 +(noun)|galley|ship's galley|cookhouse|kitchen +(noun)|cabin car|car|railcar|railway car|railroad car +cabot|2 +(noun)|Cabot|Sebastian Cabot|explorer|adventurer|cartographer|map maker +(noun)|Cabot|John Cabot|Giovanni Cabato|navigator +cabotage|2 +(noun)|right +(noun)|seafaring|navigation|sailing +cabriolet|1 +(noun)|cab|carriage|equipage|rig +cabstand|1 +(noun)|taxistand|taxi rank|stand +cacajao|1 +(noun)|Cacajao|genus Cacajao|mammal genus +cacalia|1 +(noun)|Cacalia|genus Cacalia|asterid dicot genus +cacalia javanica|1 +(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +cacalia lutea|1 +(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +cacao|1 +(noun)|cacao tree|chocolate tree|Theobroma cacao|angiospermous tree|flowering tree +cacao bean|1 +(noun)|cocoa bean|cacao|cacao tree|chocolate tree|Theobroma cacao +cacao moth|1 +(noun)|tobacco moth|Ephestia elutella|pyralid|pyralid moth +cacao tree|1 +(noun)|cacao|chocolate tree|Theobroma cacao|angiospermous tree|flowering tree +cacatua|1 +(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus +cacatua galerita|1 +(noun)|sulphur-crested cockatoo|Kakatoe galerita|Cacatua galerita|cockatoo +cachalot|1 +(noun)|sperm whale|black whale|Physeter catodon|toothed whale +cache|4 +(noun)|storage space +(noun)|hoard|stash|store|stock|fund +(noun)|memory cache|buffer|buffer storage|buffer store +(verb)|hoard|stash|lay away|hive up|squirrel away|save|lay aside|save up +cachectic|1 +(adj)|infirmity|frailty|debility|feebleness|frailness +cachet|3 +(noun)|seal|seal of approval|award|accolade|honor|honour|laurels +(noun)|lettre de cachet|warrant +(noun)|seal|stamp +cachexia|1 +(noun)|cachexy|wasting|infirmity|frailty|debility|feebleness|frailness +cachexy|1 +(noun)|cachexia|wasting|infirmity|frailty|debility|feebleness|frailness +cachi|1 +(noun)|Cachi|mountain peak +cachinnate|1 +(verb)|laugh|express joy|express mirth +cachinnation|1 +(noun)|laugh|laughter +cachou|1 +(noun)|lozenge +cacicus|1 +(noun)|Cacicus|genus Cacicus|bird genus +cacique|1 +(noun)|cazique|New World oriole|American oriole|oriole +cackel|1 +(verb)|sound +cackle|6 +(noun)|cry +(noun)|yak|yack|yakety-yak|chatter|talk|talking +(noun)|laugh|laughter +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|utter|emit|let out|let loose +(verb)|laugh|express joy|express mirth +cackler|2 +(noun)|hen|biddy +(noun)|babbler|oscine|oscine bird +cackly|1 +(adj)|squawky|cacophonous |cacophonic +cacodaemon|1 +(noun)|cacodemon|evil spirit +cacodaemonic|1 +(adj)|cacodemonic|evil spirit +cacodemon|1 +(noun)|cacodaemon|evil spirit +cacodemonic|1 +(adj)|cacodaemonic|evil spirit +cacodyl|2 +(noun)|tetramethyldiarsine|organic compound +(noun)|cacodyl group|cacodyl radical|arsenic group|group|radical|chemical group +cacodyl group|1 +(noun)|cacodyl|cacodyl radical|arsenic group|group|radical|chemical group +cacodyl radical|1 +(noun)|cacodyl|cacodyl group|arsenic group|group|radical|chemical group +cacodylic|1 +(adj)|group|radical|chemical group +cacoethes|1 +(noun)|mania|passion|irrational motive +cacogenesis|1 +(noun)|sterility|infertility +cacogenic|1 +(adj)|dysgenic |life science|bioscience +cacogenics|1 +(noun)|dysgenics|life science|bioscience +cacography|1 +(noun)|scribble|scratch|scrawl|handwriting|hand|script +cacomistle|1 +(noun)|bassarisk|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +cacomixle|1 +(noun)|bassarisk|cacomistle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +cacophonic|1 +(adj)|cacophonous |cackly|squawky|croaking|croaky|guttural|jangling|jangly|jarring|grating|gravel|gravelly|rasping|raspy|rough|gruff|hoarse|husky|piercing|raucous|strident|rending|ripping|splitting|noisy +cacophonous|1 +(adj)|cacophonous |cacophonic|cackly|squawky|croaking|croaky|guttural|jangling|jangly|jarring|grating|gravel|gravelly|rasping|raspy|rough|gruff|hoarse|husky|piercing|raucous|strident|rending|ripping|splitting|noisy +cacophony|2 +(noun)|blare|blaring|clamor|din|noise +(noun)|dissonance +cactaceae|1 +(noun)|Cactaceae|family Cactaceae|cactus family|caryophylloid dicot family +cactus|1 +(noun)|succulent +cactus euphorbia|1 +(noun)|naboom|Euphorbia ingens|spurge +cactus family|1 +(noun)|Cactaceae|family Cactaceae|caryophylloid dicot family +cactus mouse|1 +(noun)|Peromyscus eremicus|wood mouse +cactus wren|1 +(noun)|wren|jenny wren +cacuminal|1 +(adj)|retroflex|backward +cad|2 +(noun)|bounder|blackguard|dog|hound|heel|villain|scoundrel +(noun)|computer-aided design|CAD|software|software system|software package|package +cadaster|1 +(noun)|cadastre|register|registry +cadastral|1 +(adj)|register|registry +cadastre|1 +(noun)|cadaster|register|registry +cadaver|1 +(noun)|corpse|stiff|clay|remains|body|dead body +cadaveric|1 +(adj)|body|dead body +cadaverine|1 +(noun)|ptomaine|ptomain +cadaverous|1 +(adj)|bony|emaciated|gaunt|haggard|pinched|skeletal|wasted|thin |lean +caddice-fly|2 +(noun)|caddis fly|caddis-fly|caddice fly|trichopterous insect|trichopteran|trichopteron +(noun)| +caddice fly|2 +(noun)|caddis fly|caddis-fly|caddice-fly|trichopterous insect|trichopteran|trichopteron +(noun)| +caddie|2 +(noun)|golf caddie|attendant|attender|tender +(verb)|caddy|serve +caddis-fly|2 +(noun)|caddis fly|caddice fly|caddice-fly|trichopterous insect|trichopteran|trichopteron +(noun)| +caddis fly|2 +(noun)|caddis-fly|caddice fly|caddice-fly|trichopterous insect|trichopteran|trichopteron +(noun)| +caddish|1 +(adj)|unchivalrous|ungallant|discourteous +caddisworm|1 +(noun)|strawworm|caseworm +caddo|2 +(noun)|Caddo|Plains Indian|Buffalo Indian +(noun)|Caddo|Caddoan|Caddoan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +caddoan|1 +(noun)|Caddo|Caddoan|Caddoan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +caddoan language|1 +(noun)|Caddo|Caddoan|Caddoan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +caddy|2 +(noun)|tea caddy|can|tin|tin can +(verb)|caddie|serve +cade|1 +(adj)|forsaken +cadence|3 +(noun)|meter|metre|measure|beat|poetic rhythm|rhythmic pattern|prosody +(noun)|passage|musical passage +(noun)|cadency|rhythmicity +cadenced|1 +(adj)|cadent|rhythmical |rhythmic +cadency|1 +(noun)|cadence|rhythmicity +cadent|1 +(adj)|cadenced|rhythmical |rhythmic +cadenza|1 +(noun)|passage|musical passage +cadet|1 +(noun)|plebe|trainee +cadetship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +cadge|2 +(verb)|mooch|bum|grub|sponge|obtain +(verb)|schnorr|shnorr|scrounge|beg +cadger|1 +(noun)|moocher|scrounger|beggar|mendicant +cadiz|1 +(noun)|Cadiz|city|metropolis|urban center|port +cadmium|1 +(noun)|Cd|atomic number 48|metallic element|metal +cadmium cell|1 +(noun)|Weston cell|standard cell +cadmium orange|1 +(noun)|cadmium yellow +cadmium sulfide|1 +(noun)|sulfide|sulphide +cadmium sulphide|1 +(noun)|greenockite|mineral +cadmium yellow|1 +(noun)|pigment +cadmium yellow pale|1 +(noun)|cadmium yellow +cadra|1 +(noun)|Cadra|genus Cadra|arthropod genus +cadra cautella|1 +(noun)|almond moth|fig moth|Cadra cautella|pyralid|pyralid moth +cadra figulilella|1 +(noun)|raisin moth|Cadra figulilella|pyralid|pyralid moth +cadre|2 +(noun)|cell|political unit +(noun)|core|nucleus|core group +caducean|1 +(adj)|insignia +caduceus|1 +(noun)|insignia +caducous|1 +(adj)|caducous |shed|deciduous +caecal|1 +(adj)|cecal|cavity|bodily cavity|cavum +caeciliadae|1 +(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family +caecilian|2 +(adj)|amphibian family +(noun)|blindworm|amphibian +caeciliidae|1 +(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family +caecum|1 +(noun)|cecum|blind gut|cavity|bodily cavity|cavum +caelum|1 +(noun)|Caelum|constellation +caenogenesis|1 +(noun)|cenogenesis|kenogenesis|cainogenesis|kainogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +caenolestes|1 +(noun)|Caenolestes|genus Caenolestes|mammal genus +caenolestidae|1 +(noun)|Caenolestidae|family Caenolestidae|mammal family +caesalpinia|1 +(noun)|Caesalpinia|genus Caesalpinia|rosid dicot genus +caesalpinia bonduc|1 +(noun)|bonduc|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree +caesalpinia bonducella|1 +(noun)|bonduc|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree +caesalpinia coriaria|1 +(noun)|divi-divi|Caesalpinia coriaria|tree +caesalpinia decapetala|1 +(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub|bush +caesalpinia echinata|1 +(noun)|brazilwood|peachwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree +caesalpinia ferrea|1 +(noun)|brazilian ironwood|Caesalpinia ferrea|tree +caesalpinia gilliesii|1 +(noun)|bird of paradise|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub +caesalpinia pulcherrima|1 +(noun)|pride of barbados|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub +caesalpinia sepiaria|1 +(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub|bush +caesalpiniaceae|1 +(noun)|Caesalpiniaceae|family Caesalpiniaceae|rosid dicot family +caesalpinioideae|1 +(noun)|Caesalpinioideae|subfamily Caesalpinioideae|rosid dicot family +caesar|2 +(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general|full general|statesman|solon|national leader +(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian|comic +caesar's agaric|1 +(noun)|royal agaric|Caesar's agaric|Amanita caesarea|agaric +caesar salad|1 +(noun)|Caesar salad|tossed salad +caesarea|1 +(noun)|Caesarea|seaport|haven|harbor|harbour +caesarean|3 +(adj)|cesarean|cesarian|caesarian|delivery|obstetrical delivery +(adj)|Caesarian|Caesarean|general|full general|statesman|solon|national leader +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|abdominal delivery|delivery|obstetrical delivery +caesarean delivery|1 +(noun)|cesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +caesarean section|1 +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +caesarian|2 +(adj)|cesarean|cesarian|caesarean|delivery|obstetrical delivery +(adj)|Caesarian|Caesarean|general|full general|statesman|solon|national leader +caesarism|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +caesaropapism|1 +(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine|religious doctrine +caesium|1 +(noun)|cesium|Cs|atomic number 55|metallic element|metal +caesium clock|1 +(noun)|atomic clock +caespitose|1 +(adj)|cespitose|tufted|gregarious +caesura|2 +(noun)|pause|intermission|break|interruption|suspension +(noun)|prosody|inflection +caesural|1 +(adj)|prosody|inflection +cafe|1 +(noun)|coffeehouse|coffee shop|coffee bar|restaurant|eating house|eating place +cafe au lait|1 +(noun)|coffee|java +cafe noir|1 +(noun)|demitasse|coffee|java +cafe royale|1 +(noun)|coffee royal|coffee|java +cafeteria|1 +(noun)|restaurant|eating house|eating place +cafeteria facility|1 +(noun)|facility|installation +cafeteria tray|1 +(noun)|tray +caff|1 +(noun)|cafe|coffeehouse|coffee shop|coffee bar +caffe latte|1 +(noun)|latte|espresso +caffein|1 +(noun)|caffeine|alkaloid +caffein addict|1 +(noun)|caffeine addict|addict +caffein addiction|1 +(noun)|drug addiction|white plague +caffeine|1 +(noun)|caffein|alkaloid +caffeine addict|1 +(noun)|caffein addict|addict +caffeinic|1 +(adj)|alkaloid +caffeinism|1 +(noun)|caffiene intoxication|poisoning|toxic condition|intoxication +caffer|1 +(noun)|kaffir|kafir|caffre|Black African +caffer cat|1 +(noun)|kaffir cat|Felis ocreata|wildcat +caffiene intoxication|1 +(noun)|caffeinism|poisoning|toxic condition|intoxication +caffre|1 +(noun)|kaffir|kafir|caffer|Black African +caftan|2 +(noun)|kaftan|dress|frock +(noun)|kaftan|cloak +cage|6 +(noun)|coop|enclosure +(noun)|constraint|restraint +(noun)|Cage|John Cage|John Milton Cage Jr.|composer +(noun)|net +(noun)|batting cage|baseball equipment +(verb)|cage in|confine|detain +cage in|1 +(verb)|cage|confine|detain +cager|1 +(noun)|basketball player|basketeer|athlete|jock +cagey|2 +(adj)|cagy|canny|clever|smart +(adj)|cagy|chary|cautious +cagily|1 +(adv)|circumspectly +cagliostro|1 +(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer|magician|wizard|necromancer +cagney|1 +(noun)|Cagney|Jimmy Cagney|James Cagney|actor|histrion|player|thespian|role player +cagoule|1 +(noun)|parka|windbreaker|windcheater|anorak +cagy|2 +(adj)|cagey|canny|clever|smart +(adj)|cagey|chary|cautious +cahita|2 +(noun)|Cahita|Taracahitian +(noun)|Cahita|Uto-Aztecan|Uto-Aztecan language +cahoots|1 +(noun)|connivance|collusion +caiman|1 +(noun)|cayman|crocodilian reptile|crocodilian +caiman lizard|1 +(noun)|teiid lizard|teiid +caiman sclerops|1 +(noun)|spectacled caiman|Caiman sclerops|cayman|caiman +caimitillo|1 +(noun)|satinleaf|satin leaf|damson plum|Chrysophyllum oliviforme|angiospermous tree|flowering tree +caimito|1 +(noun)|star apple|Chrysophyllum cainito|fruit tree +cain|1 +(noun)|Cain|man|adult male +cainogenesis|1 +(noun)|cenogenesis|kenogenesis|caenogenesis|kainogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +cairene|1 +(noun)|Cairene|Egyptian +cairina|1 +(noun)|Cairina|genus Cairina|bird genus +cairina moschata|1 +(noun)|muscovy duck|musk duck|Cairina moschata|duck +cairn|2 +(noun)|marker|marking|mark +(noun)|cairn terrier|terrier +cairn terrier|1 +(noun)|cairn|terrier +cairned|1 +(adj)|marker|marking|mark +cairngorm|1 +(noun)|smoky quartz|quartz +cairo|2 +(noun)|Cairo|town +(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital|port +caisson|4 +(noun)|coffer|lacuna|panel +(noun)|military vehicle +(noun)|ammunition chest|chest +(noun)|pneumatic caisson|cofferdam|chamber +caisson disease|1 +(noun)|decompression sickness|aeroembolism|air embolism|gas embolism|bends|illness|unwellness|malady|sickness +caitiff|2 +(adj)|cowardly |fearful +(noun)|cur +caitra|1 +(noun)|Chait|Caitra|Hindu calendar month +cajan pea|2 +(noun)|pigeon pea|pigeon-pea plant|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub|bush +(noun)|pigeon pea|dahl|pea +cajanus|1 +(noun)|Cajanus|genus Cajanus|rosid dicot genus +cajanus cajan|1 +(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub|bush +cajole|1 +(verb)|wheedle|palaver|blarney|coax|sweet-talk|inveigle|persuade +cajolery|1 +(noun)|blandishment|palaver|flattery +cajolingly|1 +(adv)|coaxingly +cajun|1 +(noun)|Cajun|Acadian +cakchiquel|2 +(noun)|Cakchiquel|Mayan|Maya +(noun)|Cakchiquel|Maya|Mayan|Mayan language +cake|4 +(noun)|bar|block +(noun)|patty|dish +(noun)|baked goods +(verb)|coat|cover|spread over +cake mix|1 +(noun)|ready-mix +cakehole|1 +(noun)|trap|hole|maw|yap|gob|mouth|oral cavity|oral fissure|rima oris +cakewalk|3 +(noun)|stage dancing|choreography +(noun)|accomplishment|achievement +(verb)|dance|trip the light fantastic|trip the light fantastic toe +cakile|1 +(noun)|Cakile|genus Cakile|dilleniid dicot genus +cakile maritima|1 +(noun)|sea-rocket|Cakile maritima|herb|herbaceous plant +calaba|1 +(noun)|Santa Maria tree|Calophyllum calaba|tree +calabar-bean vine|1 +(noun)|Physostigma venenosum|vine +calabar bean|1 +(noun)|ordeal bean|bean +calabash|5 +(noun)|gourd +(noun)|calabash tree|Crescentia cujete|tree +(noun)|bottle gourd|Lagenaria siceraria|gourd|gourd vine +(noun)|gourd|bottle +(noun)|calabash pipe|pipe|tobacco pipe +calabash pipe|1 +(noun)|calabash|pipe|tobacco pipe +calabash tree|1 +(noun)|calabash|Crescentia cujete|tree +calabazilla|1 +(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|Cucurbita foetidissima|gourd|gourd vine +calabria|1 +(noun)|Calabria|Italian region +calabur tree|1 +(noun)|Jamaican cherry|calabura|silk wood|silkwood|Muntingia calabura|tree +calabura|1 +(noun)|Jamaican cherry|calabur tree|silk wood|silkwood|Muntingia calabura|tree +caladenia|1 +(noun)|orchid|orchidaceous plant +caladenia cairnsiana|1 +(noun)|zebra orchid|Caladenia cairnsiana|caladenia +caladium|1 +(noun)|arum|aroid +caladium bicolor|1 +(noun)|Caladium bicolor|caladium +calais|1 +(noun)|Calais|town|port +calamagrostic quadriseta|1 +(noun)|Australian reed grass|Calamagrostic quadriseta|reed grass +calamagrostis|1 +(noun)|Calamagrostis|genus Calamagrostis|monocot genus|liliopsid genus|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family +calamagrostis acutiflora|1 +(noun)|feather reed grass|feathertop|Calamagrostis acutiflora|reed grass +calamari|1 +(noun)|squid|calamary|seafood +calamary|1 +(noun)|squid|calamari|seafood +calamine|1 +(noun)|hemimorphite|mineral +calamine lotion|1 +(noun)|lotion|application +calamint|1 +(noun)|herb|herbaceous plant +calamintha|1 +(noun)|Calamintha|genus Calamintha|asterid dicot genus +calamintha grandiflora|1 +(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint +calamintha nepeta|1 +(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +calamintha nepeta glantulosa|1 +(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +calamintha sylvatica|1 +(noun)|common calamint|Calamintha sylvatica|Satureja calamintha officinalis|calamint +calamitous|1 +(adj)|black|disastrous|fatal|fateful|unfortunate +calamity|1 +(noun)|catastrophe|disaster|tragedy|cataclysm|misfortune|bad luck +calamity jane|1 +(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman +calamus|5 +(noun)|palm|palm tree +(noun)|root +(noun)|sweet flag|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant|bog plant|swamp plant +(noun)|Calamus|genus Calamus|fish genus +(noun)|quill|shaft|rib +calamus australis|1 +(noun)|lawyer cane|Calamus australis|calamus +calamus oil|1 +(noun)|oil +calamus penna|1 +(noun)|sheepshead porgy|Calamus penna|porgy +calamus rotang|1 +(noun)|rattan|rattan palm|Calamus rotang|calamus +calan|1 +(noun)|verapamil|Calan|Isoptin|calcium blocker|calcium-channel blocker +calando|1 +(adj)|decreasing +calandrinia|1 +(noun)|Calandrinia|genus Calandrinia|caryophylloid dicot genus +calandrinia ciliata|1 +(noun)|red maids|redmaids|Calandrinia ciliata|wildflower|wild flower +calanthe|1 +(noun)|orchid|orchidaceous plant +calapooya|1 +(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian +calapuya|1 +(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian +calash|2 +(noun)|caleche|hood +(noun)|caleche|calash top|hood +calash top|1 +(noun)|calash|caleche|hood +calathian violet|1 +(noun)|marsh gentian|Gentiana pneumonanthe|gentian +calc-tufa|1 +(noun)|tufa|rock|stone +calcaneal|1 +(adj)|bone|os +calcaneus|1 +(noun)|heelbone|os tarsi fibulare|bone|os +calcareous|1 +(adj)|chalky|carbonate +calcarine fissure|1 +(noun)|calcarine sulcus|sulcus +calcarine sulcus|1 +(noun)|calcarine fissure|sulcus +calced|1 +(adj)|calced |shod +calcedony|1 +(noun)|chalcedony|quartz|transparent gem +calceiform|1 +(adj)|calceolate|shoe +calceolaria|1 +(noun)|slipperwort|flower +calceolate|1 +(adj)|calceiform|shoe +calceus|1 +(noun)|shoe +calcic|1 +(adj)|metallic element|metal +calcicolous|1 +(adj)|calcicolous +calciferol|1 +(noun)|vitamin D|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin +calciferous|1 +(adj)|metallic element|metal +calcific|1 +(adj)|hardening +calcification|3 +(noun)|chemical process|chemical change|chemical action +(noun)|hardening +(noun)|inaction|inactivity|inactiveness +calcifugous|1 +(adj)|calcifugous +calcify|4 +(verb)|harden|indurate +(verb)|change +(verb)|change state|turn +(verb)|change|alter|modify +calcimine|2 +(noun)|water-base paint|wash +(verb)|whitewash +calcination|1 +(noun)|oxidation|oxidization|oxidisation +calcine|1 +(verb)|heat|heat up +calcined lime|1 +(noun)|calcium oxide|quicklime|lime|calx|fluxing lime|unslaked lime|burnt lime|oxide +calcite|1 +(noun)|spar +calcitic|1 +(adj)|spar +calcitonin|1 +(noun)|thyrocalcitonin|thyroid hormone +calcium|1 +(noun)|Ca|atomic number 20|metallic element|metal +calcium-channel blocker|1 +(noun)|calcium blocker|medicine|medication|medicament|medicinal drug +calcium-cyanamide|1 +(noun)|cyanamide|compound|chemical compound +calcium bicarbonate|1 +(noun)|bicarbonate|hydrogen carbonate +calcium blocker|1 +(noun)|calcium-channel blocker|medicine|medication|medicament|medicinal drug +calcium carbide|1 +(noun)|binary compound|carbide +calcium carbonate|1 +(noun)|carbonate +calcium chloride|1 +(noun)|salt +calcium hydrate|1 +(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|caustic lime|lime hydrate|hydroxide|hydrated oxide +calcium hydride|1 +(noun)|hydrolith|hydride +calcium hydroxide|1 +(noun)|lime|slaked lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide|hydrated oxide +calcium hypochlorite|1 +(noun)|hypochlorite|bleaching agent|bleach|blanching agent|whitener +calcium ion|1 +(noun)|factor IV|calcium|Ca|atomic number 20|coagulation factor|clotting factor +calcium lactate|1 +(noun)|salt +calcium light|1 +(noun)|limelight|lamp +calcium nitrate|1 +(noun)|nitrate +calcium octadecanoate|1 +(noun)|calcium stearate|salt +calcium oxide|1 +(noun)|quicklime|lime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide +calcium phosphate|1 +(noun)|phosphate|orthophosphate|inorganic phosphate +calcium stearate|1 +(noun)|calcium octadecanoate|salt +calcium sulfate|1 +(noun)|calcium sulphate|salt +calcium sulphate|1 +(noun)|calcium sulfate|salt +calculable|1 +(adj)|calculable |calculated|derived|computable|estimable|countable|denumerable|enumerable|numerable|estimated|determinable +calculate|6 +(verb)|cipher|cypher|compute|work out|reckon|figure|reason +(verb)|estimate|reckon|count on|figure|forecast|judge +(verb)|account +(verb)|forecast|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|aim|direct|intend|destine|designate|specify +(verb)|count|bet|depend|look|reckon|trust|swear|rely|bank +calculated|2 +(adj)|deliberate|measured|premeditated +(adj)|derived|calculable +calculating|1 +(adj)|calculative|conniving|scheming|shrewd|hard +calculating machine|1 +(noun)|calculator|machine +calculation|3 +(noun)|computation|computing|procedure|process +(noun)|computation|figuring|reckoning|problem solving +(noun)|deliberation|planning|preparation|provision +calculative|1 +(adj)|calculating|conniving|scheming|shrewd|hard +calculator|2 +(noun)|calculating machine|machine +(noun)|reckoner|figurer|estimator|computer|expert +calculous|1 +(adj)|rock|stone +calculus|3 +(noun)|concretion|rock|stone +(noun)|tartar|tophus|crust|incrustation|encrustation +(noun)|the calculus|infinitesimal calculus|pure mathematics +calculus of variations|1 +(noun)|calculus|the calculus|infinitesimal calculus +calcutta|1 +(noun)|Kolkata|Calcutta|city|metropolis|urban center +calcuttan|1 +(adj)|Calcuttan|city|metropolis|urban center +calder|1 +(noun)|Calder|Alexander Calder|sculptor|sculpturer|carver|statue maker +caldera|1 +(noun)|volcanic crater|crater +calderon|1 +(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist|playwright|poet +calderon de la barca|1 +(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist|playwright|poet +caldron|1 +(noun)|cauldron|pot +caldwell|1 +(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer|author +calean|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +caleche|2 +(noun)|calash|hood +(noun)|calash|calash top|hood +caledonia|1 +(noun)|Caledonia|geographical area|geographic area|geographical region|geographic region +caledonian canal|1 +(noun)|Caledonian Canal|canal +calefacient|1 +(adj)|warming|hot +calefaction|1 +(noun)|incalescence|hotness|heat|high temperature +calefactive|1 +(adj)|calefactory|heating|hot +calefactory|1 +(adj)|calefactive|heating|hot +calendar|4 +(noun)|arrangement|organization|organisation|system +(noun)|list|listing +(noun)|table|tabular array +(verb)|schedule +calendar day|1 +(noun)|civil day|time period|period of time|period +calendar method|1 +(noun)|rhythm method of birth control|rhythm method|rhythm|calendar method of birth control|natural family planning +calendar method of birth control|1 +(noun)|rhythm method of birth control|rhythm method|rhythm|calendar method|natural family planning +calendar month|1 +(noun)|month|time period|period of time|period +calendar week|1 +(noun)|week|time period|period of time|period +calendar year|1 +(noun)|civil year|year|twelvemonth|yr +calender|2 +(noun)|machine +(verb)|press +calendered|1 +(adj)|glossy|glazed |shiny +calendric|1 +(adj)|calendrical|arrangement|organization|organisation|system +calendrical|1 +(adj)|calendric|arrangement|organization|organisation|system +calendula|1 +(noun)|flower +calendula officinalis|1 +(noun)|common marigold|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula +caley pea|1 +(noun)|singletary pea|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea +calf|4 +(noun)|young mammal +(noun)|sura|skeletal muscle|striated muscle +(noun)|calfskin|leather +(noun)|young mammal +calf's-foot jelly|1 +(noun)|gelatin|jelly +calf's brain|1 +(noun)|brain +calf's liver|1 +(noun)|calves' liver|liver +calf's tongue|1 +(noun)|tongue +calf bone|1 +(noun)|fibula|leg bone +calf love|1 +(noun)|puppy love|crush|infatuation|love +calf roping|1 +(noun)|roping +calfskin|1 +(noun)|calf|leather +calgary|1 +(noun)|Calgary|city|metropolis|urban center +cali|1 +(noun)|Cali|city|metropolis|urban center +cali cartel|1 +(noun)|Cali cartel|drug cartel +caliber|2 +(noun)|quality|calibre|degree|grade|level +(noun)|bore|gauge|calibre|diameter|diam +calibrate|3 +(verb)|graduate|fine-tune|adjust|set|correct +(verb)|tag|label|mark +(verb)|measure|mensurate|measure out +calibrated|1 +(adj)|graduated|tag|label|mark +calibration|1 +(noun)|standardization|standardisation|activity +calibre|2 +(noun)|quality|caliber|degree|grade|level +(noun)|bore|gauge|caliber|diameter|diam +caliche|2 +(noun)|hardpan|soil|dirt +(noun)|rock|stone +caliche-topped|1 +(adj)|unpaved +calico|3 +(adj)|fabric|cloth|material|textile +(adj)|motley|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +(noun)|fabric|cloth|material|textile +calico aster|1 +(noun)|starved aster|aster +calico bush|1 +(noun)|mountain laurel|wood laurel|American laurel|Kalmia latifolia|kalmia +calico cat|1 +(noun)|tortoiseshell|tortoiseshell-cat|domestic cat|house cat|Felis domesticus|Felis catus +calico crab|1 +(noun)|American lady crab|lady crab|Ovalipes ocellatus|swimming crab +calicular|1 +(adj)|calycular|structure|anatomical structure|complex body part|bodily structure|body structure +caliculus|1 +(noun)|calyculus|calycle|structure|anatomical structure|complex body part|bodily structure|body structure +calidris|1 +(noun)|Calidris|genus Calidris|bird genus +calidris canutus|1 +(noun)|knot|grayback|Calidris canutus|sandpiper +calidris ferruginea|1 +(noun)|curlew sandpiper|Calidris Ferruginea|sandpiper +calidris melanotos|1 +(noun)|pectoral sandpiper|jacksnipe|Calidris melanotos|sandpiper +calif|1 +(noun)|caliph|kaliph|kalif|khalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +calif.|2 +(noun)|California|Golden State|CA|Calif.|American state +(noun)|caliph|calif|kaliph|kalif|khalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +california|1 +(noun)|California|Golden State|CA|Calif.|American state +california allspice|1 +(noun)|spicebush|California allspice|Calycanthus occidentalis|allspice +california bay tree|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +california beauty|1 +(noun)|flannelbush|flannel bush|California beauty|shrub|bush +california black oak|1 +(noun)|California black oak|Quercus kelloggii|oak|oak tree +california black walnut|1 +(noun)|California black walnut|Juglans californica|walnut|walnut tree +california bluebell|2 +(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed|scorpion weed|phacelia +(noun)|California bluebell|Phacelia campanularia|scorpionweed|scorpion weed|phacelia +california box elder|1 +(noun)|California box elder|Acer negundo Californicum|box elder|ash-leaved maple|Acer negundo +california buckthorn|1 +(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn +california buckwheat|1 +(noun)|wild buckwheat|California buckwheat|Erigonum fasciculatum|eriogonum +california coffee|1 +(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn +california condor|1 +(noun)|California condor|Gymnogyps californianus|condor +california dandelion|1 +(noun)|cat's-ear|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed +california false morel|1 +(noun)|Gyromitra californica|California false morel|gyromitra +california fern|1 +(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +california four o'clock|1 +(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock +california fuchsia|1 +(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet +california lady's slipper|1 +(noun)|California lady's slipper|Cypripedium californicum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +california laurel|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +california live oak|1 +(noun)|coast live oak|California live oak|Quercus agrifolia|live oak +california newt|1 +(noun)|California newt|Taricha torosa|Pacific newt +california nutmeg|1 +(noun)|California nutmeg|nutmeg-yew|Torreya californica|yew +california olive|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +california personality inventory|1 +(noun)|California Personality Inventory|CPI|self-report personality inventory|self-report inventory +california pitcher plant|1 +(noun)|California pitcher plant|Darlingtonia californica|pitcher plant +california pompano|1 +(noun)|palometa|California pompano|Palometa simillima|butterfish|stromateid fish|stromateid +california poppy|1 +(noun)|California poppy|Eschscholtzia californica|poppy +california privet|1 +(noun)|California privet|Ligustrum ovalifolium|privet +california quail|1 +(noun)|California quail|Lofortyx californicus|quail +california redbud|1 +(noun)|western redbud|California redbud|Cercis occidentalis|shrub|bush +california redwood|1 +(noun)|California redwood|coast redwood|Sequoia sempervirens|sequoia|redwood +california romero|1 +(noun)|black sage|wooly blue curls|California romero|Trichostema lanatum|blue curls +california sage|1 +(noun)|California sagebrush|California sage|Artemisia californica|sagebrush|sage brush +california sagebrush|1 +(noun)|California sagebrush|California sage|Artemisia californica|sagebrush|sage brush +california sea lion|1 +(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion +california single-leaf pinyon|1 +(noun)|California single-leaf pinyon|Pinus californiarum|pinon|pinyon +california sycamore|1 +(noun)|California sycamore|Platanus racemosa|plane tree|sycamore|platan +california tree poppy|1 +(noun)|matilija poppy|California tree poppy|Romneya coulteri|subshrub|suffrutex +california whipsnake|1 +(noun)|California whipsnake|striped racer|Masticophis lateralis|whip-snake|whip snake +california white fir|1 +(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir +california white oak|1 +(noun)|California white oak|valley oak|valley white oak|roble|Quercus lobata|white oak +california wine|1 +(noun)|California wine|wine|vino +california yellow bells|1 +(noun)|yellow bells|California yellow bells|whispering bells|Emmanthe penduliflora|herb|herbaceous plant +california yew|1 +(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew +californian|2 +(adj)|Californian|American state +(noun)|Californian|American +californium|1 +(noun)|Cf|atomic number 98|metallic element|metal +caliginous|1 +(adj)|dark +caligula|1 +(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor|Emperor of Rome +caliper|2 +(noun)|calipers|calliper|callipers|measuring instrument|measuring system|measuring device +(verb)|calliper|measure|mensurate|measure out +calipers|2 +(noun)|caliper|calliper|callipers|measuring instrument|measuring system|measuring device +(noun)|caliper|calliper|callipers|measuring instrument|measuring system|measuring device +caliph|1 +(noun)|calif|kaliph|kalif|khalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +caliphate|3 +(noun)|Caliphate|era|epoch +(noun)|jurisdiction +(noun)|position|post|berth|office|spot|billet|place|situation +caliphate state|1 +(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization|terrorist group|foreign terrorist organization|FTO +calisaya|1 +(noun)|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona|chinchona +calisthenic|1 +(adj)|exercise|exercising|physical exercise|physical exertion|workout +calisthenic exercise|1 +(noun)|calisthenics|callisthenics|callisthenic exercise|exercise|exercising|physical exercise|physical exertion|workout +calisthenics|1 +(noun)|callisthenics|calisthenic exercise|callisthenic exercise|exercise|exercising|physical exercise|physical exertion|workout +calixtus iii|1 +(noun)|Calixtus III|Borgia|Alfonso Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +calk|4 +(noun)|calkin|cleat +(verb)|supply|provide|render|furnish +(verb)|caulk|seal|seal off +(verb)|injure|wound +calkin|1 +(noun)|calk|cleat +call|41 +(noun)|phone call|telephone call|telephone|telephony +(noun)|Call|inclination|disposition|tendency +(noun)|cry|outcry|yell|shout|vociferation|utterance|vocalization +(noun)|claim|demand +(noun)|birdcall|birdsong|song|animal communication +(noun)|visit +(noun)|margin call|demand +(noun)|demand +(noun)|request|asking +(noun)|instruction|command|statement|program line +(noun)|visit +(noun)|decision|determination|conclusion +(noun)|call option|option +(verb)|name|label +(verb)|telephone|call up|phone|ring|telecommunicate +(verb)|label +(verb)|send for|order|tell|enjoin|say|call forth|call forth|call up +(verb)|shout|shout out|cry|yell|scream|holler|hollo|squall|utter|emit|let out|let loose|call out +(verb)|visit|call in|meet|get together +(verb)|request|bespeak|call for|quest +(verb)|order +(verb)|request +(verb)|indicate +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +(verb)|read +(verb)|telecommunicate +(verb)|declare|adjudge|hold +(verb)|utter|emit|let out|let loose +(verb)|utter|emit|let out|let loose +(verb)|predict|foretell|prognosticate|forebode|anticipate|promise|guess|venture|pretend|hazard +(verb)|challenge|dispute|gainsay +(verb)|see|consider|reckon|view|regard +(verb)|call in|demand|exact +(verb)|call off +(verb)|address|address|turn to +(verb)|stop|stop over +(verb)|bid|play +(verb)|ask|require|expect +(verb)|entice|lure|tempt +(verb)|challenge|dispute|gainsay +(verb)|awaken|wake|waken|rouse|wake up|arouse +call-back|3 +(noun)|call|phone call|telephone call +(noun)|employment|engagement +(noun)|recall|callback|request|asking +call-board|1 +(noun)|bulletin board|notice board +call-in|1 +(noun)|call|phone call|telephone call +call-out|1 +(noun)|challenge +call at|1 +(verb)|out in|enter|come in|get into|get in|go into|go in|move into +call attention|1 +(verb)|signalize|signalise|point out|indicate|point|show +call back|4 +(verb)|recall|call in|withdraw|take +(verb)|remember|retrieve|recall|call up|recollect|think +(verb)|answer|reply|respond +(verb)|recall|call|send for +call box|2 +(noun)|telephone booth|phone booth|telephone box|telephone kiosk|booth|cubicle|stall|kiosk +(noun)|post-office box|POB|letter box|compartment +call center|1 +(noun)|call centre|center|centre +call centre|1 +(noun)|call center|center|centre +call down|2 +(verb)|raise|conjure|conjure up|invoke|evoke|stir|arouse|bring up|put forward|call forth|make|create +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +call fire|1 +(noun)|fire|firing +call for|4 +(verb)|request|bespeak|quest|communicate|pass on|pass|put across +(verb)|necessitate|ask|postulate|need|require|take|involve|demand +(verb)|invite|request|bespeak|quest +(verb)|collect|pick up|gather up|get|acquire +call forth|2 +(verb)|provoke|evoke|kick up|cause|do|make +(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|make|create +call forwarding|1 +(noun)|telephone|telephony +call girl|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +call in|7 +(verb)|invite|ask in +(verb)|call|send for +(verb)|visit|call|meet|get together +(verb)|take out|move out|remove +(verb)|call|telephone|call up|phone|ring +(verb)|call|demand|exact +(verb)|recall|call back|withdraw|take +call into question|1 +(verb)|question|oppugn|challenge +call it a day|1 +(verb)|call it quits|discontinue|stop|cease|give up|quit|lay off +call it quits|1 +(verb)|call it a day|discontinue|stop|cease|give up|quit|lay off +call loan|1 +(noun)|demand loan|loan +call mark|1 +(noun)|call number|pressmark|mark +call number|1 +(noun)|call mark|pressmark|mark +call off|2 +(verb)|cancel +(verb)|call +call on|1 +(verb)|turn|appeal|invoke +call on the carpet|1 +(verb)|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +call one's bluff|1 +(verb)|challenge +call option|2 +(noun)|stock option +(noun)|call|option +call out|3 +(verb)|exclaim|cry|cry out|outcry|shout|express|verbalize|verbalise|utter|give tongue to +(verb)|announce|denote +(verb)|challenge +call the shots|1 +(verb)|call the tune|wear the trousers|control|command +call the tune|1 +(verb)|call the shots|wear the trousers|control|command +call to order|1 +(verb)|open +call up|5 +(noun)|summons +(verb)|bring forward|raise +(verb)|call|telephone|phone|ring|telecommunicate +(verb)|remember|retrieve|recall|call back|recollect|think +(verb)|mobilize|mobilise|rally|call|send for +call waiting|1 +(noun)|telephone|telephony +calla|2 +(noun)|calla lily|arum lily|Zantedeschia aethiopica|flower +(noun)|Calla|genus Calla|monocot genus|liliopsid genus +calla lily|1 +(noun)|calla|arum lily|Zantedeschia aethiopica|flower +calla palustris|1 +(noun)|wild calla|water arum|Calla palustris|marsh plant|bog plant|swamp plant +callable|1 +(adj)|due |owed +callas|3 +(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura|coloratura soprano +(noun)|calla lily|calla|arum lily|Zantedeschia aethiopica|flower +(noun)|Calla|genus Calla|monocot genus|liliopsid genus +callathump|2 +(noun)|callithump|callithump parade|parade +(noun)|shivaree|chivaree|charivari|callithump|belling|serenade +callback|1 +(noun)|recall|request|asking +called|2 +(adj)|named|titled +(adj)|known as|titled +called for|1 +(adj)|in order|appropriate +caller|9 +(adj)|cool +(adj)|fresh +(noun)|company|visitor|visitant +(noun)|investor +(noun)|bettor|better|wagerer|punter +(noun)|caller-out|announcer +(noun)|announcer +(noun)|leader +(noun)|caller-up|phoner|telephoner|speaker|talker|utterer|verbalizer|verbaliser +caller-out|1 +(noun)|caller|announcer +caller-up|1 +(noun)|caller|phoner|telephoner|speaker|talker|utterer|verbalizer|verbaliser +caller id|1 +(noun)|caller ID|display +calliandra|1 +(noun)|shrub|bush +callicebus|1 +(noun)|Callicebus|genus Callicebus|mammal genus +calligraph|1 +(verb)|write +calligrapher|1 +(noun)|calligraphist|skilled worker|trained worker +calligraphic|1 +(adj)|calligraphical|handwriting|hand|script +calligraphical|1 +(adj)|calligraphic|handwriting|hand|script +calligraphist|1 +(noun)|calligrapher|skilled worker|trained worker +calligraphy|1 +(noun)|penmanship|handwriting|hand|script +callimorpha|1 +(noun)|Callimorpha|genus Callimorpha|arthropod genus +callimorpha jacobeae|1 +(noun)|cinnabar|cinnabar moth|Callimorpha jacobeae|arctiid|arctiid moth +callinectes|1 +(noun)|Callinectes|genus Callinectes|arthropod genus +callinectes sapidus|1 +(noun)|blue crab|Callinectes sapidus|swimming crab +calling|1 +(noun)|career|vocation|occupation|business|job|line of work|line +calling card|3 +(noun)|phone card|credit card|charge card|charge plate +(noun)|visiting card|card|greeting|salutation +(noun)|peculiarity|distinctive feature|distinguishing characteristic +calling into question|1 +(noun)|demand for explanation|challenge +calling together|1 +(noun)|convocation|assembly|assemblage|gathering +callionymidae|1 +(noun)|Callionymidae|family Callionymidae|fish family +calliope|2 +(noun)|Calliope|Muse +(noun)|steam organ|musical instrument|instrument +calliophis|1 +(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus +calliopsis|1 +(noun)|Coreopsis tinctoria|coreopsis|tickseed|tickweed|tick-weed +calliper|2 +(noun)|caliper|calipers|callipers|measuring instrument|measuring system|measuring device +(verb)|caliper|measure|mensurate|measure out +callipers|2 +(noun)|caliper|calipers|calliper|measuring instrument|measuring system|measuring device +(noun)|caliper|calipers|calliper|measuring instrument|measuring system|measuring device +calliphora|1 +(noun)|Calliphora|genus Calliphora|arthropod genus +calliphora vicina|1 +(noun)|bluebottle|Calliphora vicina|blowfly|blow fly +calliphoridae|1 +(noun)|Calliphoridae|family Calliphoridae|arthropod family +callipygian|1 +(adj)|callipygous|shapely +callipygous|1 +(adj)|callipygian|shapely +callirhoe|1 +(noun)|Callirhoe|genus Callirhoe|dilleniid dicot genus +callirhoe digitata|1 +(noun)|fringed poppy mallow|Callirhoe digitata|poppy mallow +callirhoe involucrata|1 +(noun)|purple poppy mallow|Callirhoe involucrata|poppy mallow +callirhoe triangulata|1 +(noun)|clustered poppy mallow|Callirhoe triangulata|poppy mallow +callisaurus|1 +(noun)|Callisaurus|genus Callisaurus|reptile genus +callisaurus draconoides|1 +(noun)|zebra-tailed lizard|gridiron-tailed lizard|Callisaurus draconoides|iguanid|iguanid lizard +callistephus|1 +(noun)|Callistephus|genus Callistephus|asterid dicot genus +callistephus chinensis|1 +(noun)|China aster|Callistephus chinensis|flower +callisthenic exercise|1 +(noun)|calisthenics|callisthenics|calisthenic exercise|exercise|exercising|physical exercise|physical exertion|workout +callisthenics|1 +(noun)|calisthenics|calisthenic exercise|callisthenic exercise|exercise|exercising|physical exercise|physical exertion|workout +callisto|1 +(noun)|Callisto|Galilean satellite|Galilean +callithricidae|1 +(noun)|Callithricidae|family Callithricidae|mammal family +callithrix|1 +(noun)|Callithrix|genus Callithrix|mammal genus +callithump|2 +(noun)|callathump|callithump parade|parade +(noun)|shivaree|chivaree|charivari|callathump|belling|serenade +callithump parade|1 +(noun)|callithump|callathump|parade +callithumpian|1 +(adj)|parade +callitrichaceae|1 +(noun)|Callitrichaceae|family Callitrichaceae|rosid dicot family +callitriche|1 +(noun)|Callitriche|genus Callitriche|rosid dicot genus +callitris|1 +(noun)|Callitris|genus Callitris|gymnosperm genus +callitris calcarata|1 +(noun)|black cypress pine|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine +callitris cupressiformis|1 +(noun)|Port Jackson pine|Callitris cupressiformis|cypress pine +callitris endlicheri|1 +(noun)|black cypress pine|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine +callitris glauca|1 +(noun)|white cypress pine|Callitris glaucophylla|Callitris glauca|cypress pine +callitris glaucophylla|1 +(noun)|white cypress pine|Callitris glaucophylla|Callitris glauca|cypress pine +callitris parlatorei|1 +(noun)|stringybark pine|Callitris parlatorei|cypress pine +callitris quadrivalvis|1 +(noun)|sandarac|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress +callophis|1 +(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus +callorhinus|1 +(noun)|Callorhinus|genus Callorhinus|mammal genus +callorhinus ursinus|1 +(noun)|Alaska fur seal|Callorhinus ursinus|fur seal +callosectomy|1 +(noun)|callosotomy|psychosurgery +callosity|1 +(noun)|callus|hardening +callosotomy|1 +(noun)|callosectomy|psychosurgery +callous|2 +(adj)|thick-skinned|indurate|pachydermatous|insensitive +(verb)|cauterize|cauterise|inure|harden|indurate +calloused|1 +(adj)|thickened|tough |toughened +callously|1 +(adv)|unfeelingly +callousness|1 +(noun)|unfeelingness|hardness|insensibility|insensitivity|insensitiveness +callow|1 +(adj)|inexperienced|naive|unsophisticated|immature +callowness|1 +(noun)|jejuneness|juvenility|immaturity|immatureness +calluna|1 +(noun)|Calluna|genus Calluna|dilleniid dicot genus +calluna vulgaris|1 +(noun)|heather|ling|Scots heather|broom|Calluna vulgaris|heath +callus|5 +(noun)|callosity|hardening +(noun)|scar|cicatrix|cicatrice +(noun)|plant process|enation +(verb)|harden|indurate +(verb)|harden|indurate +calm|9 +(adj)|unagitated|composed +(adj)|serene|tranquil|peaceful +(adj)|calm |placid|quiet|still|tranquil|unruffled|settled|windless|peaceful +(adj)|unagitated +(noun)|composure|calmness|equanimity|disposition|temperament +(verb)|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort|soothe|console|solace +(verb)|steady|becalm|stabilize|stabilise +(verb)|calm down|cool off|chill out|simmer down|settle down|cool it|change state|turn +(verb)|sedate|tranquilize|tranquillize|tranquillise|affect +calm air|1 +(noun)|wind|air current|current of air +calm down|3 +(verb)|calm|cool off|chill out|simmer down|settle down|cool it|change state|turn +(verb)|calm|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort|soothe|console|solace +(verb)|lull|hush|quieten|silence|still|shut up|hush up +calming|3 +(adj)|lulling|quietening|unalarming +(adj)|assuasive|pacifying|soothing|reassuring +(noun)|appeasement|social control +calmly|1 +(adv)|sedately +calmness|3 +(noun)|composure|calm|equanimity|disposition|temperament +(noun)|good weather +(noun)|feeling +calnada pea|1 +(noun)|tufted vetch|bird vetch|Calnada pea|Vicia cracca|vetch +calocarpum|1 +(noun)|Calocarpum|genus Calocarpum|dicot genus|magnoliopsid genus +calocarpum zapota|1 +(noun)|marmalade tree|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree +calocedrus|1 +(noun)|Calocedrus|genus Calocedrus|gymnosperm genus +calocedrus decurrens|1 +(noun)|incense cedar|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar|cedar tree +calochortus|1 +(noun)|Calochortus|genus Calochortus|liliid monocot genus +calochortus albus|1 +(noun)|white globe lily|white fairy lantern|Calochortus albus|globe lily|fairy lantern +calochortus amabilis|1 +(noun)|yellow globe lily|golden fairy lantern|Calochortus amabilis|globe lily|fairy lantern +calochortus amoenus|1 +(noun)|rose globe lily|Calochortus amoenus|globe lily|fairy lantern +calochortus elegans|1 +(noun)|star tulip|elegant cat's ears|Calochortus elegans|mariposa|mariposa tulip|mariposa lily +calochortus kennedyi|1 +(noun)|desert mariposa tulip|Calochortus kennedyi|mariposa|mariposa tulip|mariposa lily +calochortus luteus|1 +(noun)|yellow mariposa tulip|Calochortus luteus|mariposa|mariposa tulip|mariposa lily +calochortus macrocarpus|1 +(noun)|sagebrush mariposa tulip|Calochortus macrocarpus|mariposa|mariposa tulip|mariposa lily +calochortus nuttallii|1 +(noun)|sego lily|Calochortus nuttallii|liliaceous plant +calomel|1 +(noun)|mercurous chloride|chloride +calophyllum|1 +(noun)|Calophyllum|genus Calophyllum|dilleniid dicot genus +calophyllum calaba|1 +(noun)|calaba|Santa Maria tree|Calophyllum calaba|tree +calophyllum candidissimum|1 +(noun)|laurelwood|lancewood tree|Calophyllum candidissimum|tree +calophyllum inophyllum|1 +(noun)|Alexandrian laurel|Calophyllum inophyllum|poon +calophyllum longifolium|1 +(noun)|Maria|Calophyllum longifolium|tree +calopogon|1 +(noun)|Calopogon|genus Calopogon|monocot genus|liliopsid genus +calopogon pulchellum|1 +(noun)|grass pink|Calopogon pulchellum|Calopogon tuberosum|orchid|orchidaceous plant +calopogon tuberosum|1 +(noun)|grass pink|Calopogon pulchellum|Calopogon tuberosum|orchid|orchidaceous plant +caloric|2 +(adj)|thermal |thermic|energy +(adj)|work unit|heat unit|energy unit +calorie|2 +(noun)|gram calorie|small calorie|work unit|heat unit|energy unit +(noun)|Calorie|kilogram calorie|kilocalorie|large calorie|nutritionist's calorie|work unit|heat unit|energy unit +calorie chart|1 +(noun)|list|listing +calorifacient|1 +(adj)|hot +calorific|1 +(adj)|hot +calorimeter|1 +(noun)|measuring instrument|measuring system|measuring device +calorimetric|1 +(adj)|measurement|measuring|measure|mensuration +calorimetry|1 +(noun)|measurement|measuring|measure|mensuration +caloscypha fulgens|1 +(noun)|Caloscypha fulgens|discomycete|cup fungus +calosoma|1 +(noun)|ground beetle|carabid beetle +calosoma scrutator|1 +(noun)|searcher|searcher beetle|Calosoma scrutator|calosoma +calostoma cinnabarina|1 +(noun)|Calostoma cinnabarina|gasteromycete|gastromycete +calostoma lutescens|1 +(noun)|Calostoma lutescens|gasteromycete|gastromycete +calostoma ravenelii|1 +(noun)|Calostoma ravenelii|gasteromycete|gastromycete +calostomataceae|1 +(noun)|Calostomataceae|family Calostomataceae|fungus family +calpac|1 +(noun)|calpack|kalpac|cap +calpack|1 +(noun)|calpac|kalpac|cap +calpe|1 +(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony|settlement|promontory|headland|foreland +calque|1 +(noun)|loan translation|saying|expression|locution +caltha|1 +(noun)|Caltha|genus Caltha|magnoliid dicot genus +caltha palustris|1 +(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +caltrop|3 +(noun)|devil's weed|Tribulus terestris|subshrub|suffrutex +(noun)|water chestnut|water chestnut plant|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|star-thistle|Centauria calcitrapa|centaury +calumet|1 +(noun)|peace pipe|pipe of peace|pipe|tobacco pipe +calumniate|1 +(verb)|defame|slander|smirch|asperse|denigrate|smear|sully|besmirch|charge|accuse +calumniatory|1 +(adj)|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful +calumnious|1 +(adj)|calumniatory|defamatory|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful +calumniously|1 +(adv)|slanderously +calumny|2 +(noun)|defamation|obloquy|traducement|hatchet job|disparagement|depreciation|derogation +(noun)|aspersion|slander|defamation|denigration|attack +calvados|1 +(noun)|Calvados|brandy +calvaria|1 +(noun)|skullcap|bone|os +calvary|2 +(noun)|Calvary|Golgotha|hill +(noun)|martyrdom|affliction +calvary clover|1 +(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic|medick|trefoil +calvary cross|1 +(noun)|Calvary cross|cross of Calvary|cross +calvatia|1 +(noun)|Calvatia|genus Calvatia|fungus genus +calvatia gigantea|1 +(noun)|giant puffball|Calvatia gigantea|puffball|true puffball +calve|2 +(verb)|break up|separate|divide|part +(verb)|have young|litter +calved|1 +(adj)|born +calvert vaux|1 +(noun)|Vaux|Calvert Vaux|landscape architect|landscape gardener|landscaper|landscapist +calves' feet|1 +(noun)|veal|veau +calves' liver|1 +(noun)|calf's liver|liver +calvin|2 +(noun)|Calvin|Melvin Calvin|chemist +(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian|theologist|theologizer|theologiser +calvin coolidge|1 +(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States|United States President|President|Chief Executive +calvin klein|1 +(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier|fashion designer|clothes designer|designer +calvin richard klein|1 +(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier|fashion designer|clothes designer|designer +calving|1 +(noun)|parturition|birth|giving birth|birthing +calvinism|1 +(noun)|Calvinism|Protestantism +calvinist|2 +(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism +(noun)|Calvinist|necessitarian +calvinistic|1 +(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism +calvinistic baptist|1 +(noun)|Calvinistic Baptist|Particular Baptist|Baptist denomination +calvinistical|1 +(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism +calvino|1 +(noun)|Calvino|Italo Calvino|writer|author +calx|1 +(noun)|calcium oxide|quicklime|lime|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide +calycanthaceae|1 +(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|strawberry-shrub family|magnoliid dicot family +calycanthus|1 +(noun)|Calycanthus|genus Calycanthus|magnoliid dicot genus +calycanthus family|1 +(noun)|Calycanthaceae|family Calycanthaceae|strawberry-shrub family|magnoliid dicot family +calycanthus floridus|1 +(noun)|Carolina allspice|strawberry shrub|strawberry bush|sweet shrub|Calycanthus floridus|allspice +calycanthus occidentalis|1 +(noun)|spicebush|California allspice|Calycanthus occidentalis|allspice +calyceal|1 +(adj)|calycine|calycinal|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +calycinal|1 +(adj)|calyceal|calycine|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +calycine|1 +(adj)|calyceal|calycinal|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +calycle|2 +(noun)|epicalyx|false calyx|calyculus|bract +(noun)|calyculus|caliculus|structure|anatomical structure|complex body part|bodily structure|body structure +calycled|1 +(adj)|calyculate|structure|anatomical structure|complex body part|bodily structure|body structure +calycophyllum|1 +(noun)|Calycophyllum|genus Calycophyllum|asterid dicot genus +calycophyllum candidissimum|1 +(noun)|dagame|lemonwood tree|Calycophyllum candidissimum|tree +calycular|1 +(adj)|calicular|structure|anatomical structure|complex body part|bodily structure|body structure +calyculate|1 +(adj)|calycled|structure|anatomical structure|complex body part|bodily structure|body structure +calyculus|2 +(noun)|epicalyx|false calyx|calycle|bract +(noun)|caliculus|calycle|structure|anatomical structure|complex body part|bodily structure|body structure +calymmatobacterium|1 +(noun)|Calymmatobacterium|genus Calymmatobacterium|bacteria|bacterium +calymmatobacterium granulomatis|1 +(noun)|Calymmatobacterium granulomatis|bacteria species +calypso|2 +(noun)|fairy-slipper|Calypso bulbosa|orchid|orchidaceous plant +(noun)|Calypso|sea nymph +calypso bulbosa|1 +(noun)|calypso|fairy-slipper|Calypso bulbosa|orchid|orchidaceous plant +calypter|1 +(noun)|alula|squama +calyptra|1 +(noun)|plant part|plant structure +calyptrate|2 +(adj)|squama +(adj)|plant part|plant structure +calyptridium umbellatum|1 +(noun)|pussy-paw|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +calystegia|1 +(noun)|Calystegia|genus Calystegia|dicot genus|magnoliopsid genus +calystegia sepium|1 +(noun)|hedge bindweed|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed +calyx|1 +(noun)|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +calyx tube|1 +(noun)|hypanthium|floral cup|plant organ +cam|2 +(noun)|Cam|River Cam|Cam River|river +(noun)|rotating mechanism +cam river|1 +(noun)|Cam|River Cam|Cam River|river +cam stroke|1 +(noun)|throw|stroke|movement|motion +camachile|1 +(noun)|manila tamarind|huamachil|wild tamarind|Pithecellobium dulce|tree +camail|1 +(noun)|aventail|ventail|hood +camaraderie|1 +(noun)|chumminess|comradeliness|comradery|comradeship|sociability|sociableness +camarilla|1 +(noun)|cabal|faction|junto|clique|coterie|ingroup|inner circle|pack|camp +camas|1 +(noun)|camass|quamash|camosh|camash|liliaceous plant +camash|1 +(noun)|camas|camass|quamash|camosh|liliaceous plant +camass|1 +(noun)|camas|quamash|camosh|camash|liliaceous plant +camassia|1 +(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus +camassia leichtlinii|1 +(noun)|Leichtlin's camas|Camassia leichtlinii|camas|camass|quamash|camosh|camash +camassia quamash|1 +(noun)|common camas|Camassia quamash|camas|camass|quamash|camosh|camash +camassia scilloides|1 +(noun)|wild hyacinth|indigo squill|Camassia scilloides|camas|camass|quamash|camosh|camash +cambarus|1 +(noun)|Cambarus|genus Cambarus|arthropod genus +camber|4 +(noun)|convex shape|convexity +(noun)|bank|cant|slope|incline|side +(noun)|alignment +(verb)|arch|curve|arc +camber arch|1 +(noun)|arch +camberwell beauty|1 +(noun)|mourning cloak|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +cambial|1 +(adj)|vascular tissue +cambium|2 +(noun)|vascular tissue +(noun)|stratum +cambodia|1 +(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country|Asian nation +cambodian|2 +(adj)|Cambodian|Kampuchean|Asian country|Asian nation +(noun)|Cambodian|Kampuchean|Asian|Asiatic +cambodian capital|1 +(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital +cambodian monetary unit|1 +(noun)|Cambodian monetary unit|monetary unit +cambria|1 +(noun)|Wales|Cymru|Cambria|principality|princedom +cambrian|3 +(adj)|Welsh|Cambrian|principality|princedom +(noun)|Cambrian|Cambrian period|period|geological period +(noun)|Welshman|Welsh|Cambrian|European +cambrian period|1 +(noun)|Cambrian|Cambrian period|period|geological period +cambric|1 +(noun)|fabric|cloth|material|textile +cambric tea|1 +(noun)|tea +cambridge|3 +(noun)|Cambridge University|Cambridge|university +(noun)|Cambridge|city|metropolis|urban center +(noun)|Cambridge|city|metropolis|urban center +cambridge university|1 +(noun)|Cambridge University|Cambridge|university +camcorder|1 +(noun)|television camera|tv camera|camera +camden|1 +(noun)|Camden|city|metropolis|urban center +camel|1 +(noun)|even-toed ungulate|artiodactyl|artiodactyl mammal +camel's hair|1 +(noun)|camelhair|fabric|cloth|material|textile +camel racing|1 +(noun)|racing +camelhair|1 +(noun)|camel's hair|fabric|cloth|material|textile +camelia|1 +(noun)|camellia|shrub|bush +camelidae|1 +(noun)|Camelidae|family Camelidae|mammal family +camelina|1 +(noun)|Camelina|genus Camelina|dilleniid dicot genus +camelina sativa|1 +(noun)|gold of pleasure|Camelina sativa|crucifer|cruciferous plant +camellia|1 +(noun)|camelia|shrub|bush +camellia japonica|1 +(noun)|japonica|Camellia japonica|camellia|camelia +camellia sinensis|1 +(noun)|tea|Camellia sinensis|shrub|bush +camellia state|1 +(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state +camelopard|1 +(noun)|giraffe|Giraffa camelopardalis|ruminant +camelot|1 +(noun)|Camelot|capital +camelpox|1 +(noun)|animal disease +camelus|1 +(noun)|Camelus|genus Camelus|mammal genus +camelus bactrianus|1 +(noun)|Bactrian camel|Camelus bactrianus|camel +camelus dromedarius|1 +(noun)|Arabian camel|dromedary|Camelus dromedarius|camel +camembert|1 +(noun)|Camembert|cheese +cameo|1 +(noun)|anaglyph +camera|2 +(noun)|photographic camera|photographic equipment +(noun)|television camera|tv camera|television equipment|video equipment +camera angle|1 +(noun)|point of view +camera care|1 +(noun)|care|maintenance|upkeep +camera lens|1 +(noun)|optical lens|lens|lense|lens system +camera lucida|1 +(noun)|optical device +camera obscura|1 +(noun)|chamber +camera operator|1 +(noun)|cameraman|cinematographer|photographer|lensman +camera tripod|1 +(noun)|tripod +cameraman|1 +(noun)|camera operator|cinematographer|photographer|lensman +cameroon|2 +(noun)|Cameroon|volcano +(noun)|Cameroon|Republic of Cameroon|Cameroun|African country|African nation +cameroon franc|1 +(noun)|Cameroon franc|franc +cameroonian|2 +(adj)|Cameroonian|African country|African nation +(noun)|Cameroonian|African +cameroun|1 +(noun)|Cameroon|Republic of Cameroon|Cameroun|African country|African nation +camillo golgi|1 +(noun)|Golgi|Camillo Golgi|histologist +camion|2 +(noun)|lorry|truck|motortruck +(noun)|dray|horse cart|horse-cart +camise|1 +(noun)|shirt +camisole|2 +(noun)|underbodice|undergarment +(noun)|negligee|neglige|peignoir|wrapper|housecoat +camlan|1 +(noun)|Camlan|battlefield|battleground|field of battle|field of honor|field +camlet|2 +(noun)|garment +(noun)|fabric|cloth|material|textile +camo|1 +(noun)|camouflage|fabric|cloth|material|textile +camomile|1 +(noun)|chamomile|Chamaemelum nobilis|Anthemis nobilis|herb|herbaceous plant +camomile tea|1 +(noun)|tisane +camorra|1 +(noun)|Camorra|organized crime|gangland|gangdom +camosh|1 +(noun)|camas|camass|quamash|camash|liliaceous plant +camouflage|5 +(noun)|disguise|semblance|gloss|color|colour +(noun)|camo|fabric|cloth|material|textile +(noun)|screen|cover|covert|concealment +(noun)|disguise|concealment|concealing|hiding +(verb)|disguise +camouflaged|1 +(adj)|invisible |unseeable +camp|12 +(adj)|campy|tasteless +(noun)|encampment|cantonment|bivouac|military quarters +(noun)|gathering|assemblage +(noun)|housing|lodging|living accommodations +(noun)|clique|coterie|ingroup|inner circle|pack|set|circle|band|lot +(noun)|prison|prison house +(noun)|triteness|staleness +(noun)|refugee camp|shelter +(noun)|summer camp|site|land site +(verb)|encamp|camp out|bivouac|tent|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|camp down|pitch|set up +(verb)|change|alter|modify +camp-made|1 +(adj)|handmade |hand-crafted +camp bed|1 +(noun)|cot|bed +camp chair|1 +(noun)|folding chair +camp david|1 +(noun)|Camp David|retreat +camp down|1 +(verb)|camp|pitch|set up +camp follower|2 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +(noun)|follower +camp meeting|1 +(noun)|meeting +camp out|1 +(verb)|camp|encamp|bivouac|tent|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +camp robber|1 +(noun)|Canada jay|gray jay|whisker jack|Perisoreus canadensis|jay +campaign|7 +(noun)|political campaign|run|race +(noun)|cause|crusade|drive|movement|effort|venture +(noun)|military campaign|operation|military operation +(noun)|hunting expedition|safari|expedition +(verb)|run|race|run +(verb)|crusade|fight|press|push|agitate|advertise|advertize|promote|push +(verb)|take the field +campaign for governor|1 +(noun)|governor's race|political campaign|campaign|run +campaign hat|1 +(noun)|hat|chapeau|lid +campaigner|1 +(noun)|candidate|nominee|politician|politico|pol|political leader +campaigning|1 +(noun)|candidacy|candidature|electioneering|political campaign|campaign|cause|crusade|drive|movement|effort +campana|1 +(noun)|bell|bell shape|curve|curved shape +campania|1 +(noun)|Campania|Italian region +campanile|1 +(noun)|belfry|bell tower +campanula|1 +(noun)|bellflower|herb|herbaceous plant +campanula americana|1 +(noun)|tall bellflower|Campanula americana|campanula|bellflower +campanula aparinoides|1 +(noun)|marsh bellflower|Campanula aparinoides|campanula|bellflower +campanula carpatica|1 +(noun)|tussock bellflower|spreading bellflower|Campanula carpatica|campanula|bellflower +campanula divaricata|1 +(noun)|southern harebell|Campanula divaricata|campanula|bellflower +campanula glomerata|1 +(noun)|clustered bellflower|Campanula glomerata|campanula|bellflower +campanula medium|1 +(noun)|Canterbury bell|cup and saucer|Campanula medium|campanula|bellflower +campanula persicifolia|1 +(noun)|peach bells|peach bell|willow bell|Campanula persicifolia|campanula|bellflower +campanula pyramidalis|1 +(noun)|chimney plant|chimney bellflower|Campanula pyramidalis|campanula|bellflower +campanula rapunculoides|1 +(noun)|creeping bellflower|Campanula rapunculoides|campanula|bellflower +campanula rapunculus|1 +(noun)|rampion|rampion bellflower|Campanula rapunculus|campanula|bellflower +campanula rotundifolia|1 +(noun)|harebell|bluebell|Campanula rotundifolia|campanula|bellflower +campanula trachelium|1 +(noun)|throatwort|nettle-leaved bellflower|Campanula trachelium|campanula|bellflower +campanulaceae|1 +(noun)|Campanulaceae|family Campanulaceae|bellflower family|plant family +campanulales|1 +(noun)|Campanulales|order Campanulales|plant order +campanular|1 +(adj)|campanulate|campanulated|curve|curved shape +campanulate|1 +(adj)|campanular|campanulated|curve|curved shape +campanulated|1 +(adj)|campanulate|campanular|curve|curved shape +campbell|1 +(noun)|Campbell|Joseph Campbell|mythologist +campeachy|1 +(noun)|logwood|logwood tree|bloodwood tree|Haematoxylum campechianum|blackwood|blackwood tree +campeche|1 +(noun)|Campeche|city|metropolis|urban center +campephilus|1 +(noun)|Campephilus|genus Campephilus|bird genus +campephilus principalis|1 +(noun)|ivorybill|ivory-billed woodpecker|Campephilus principalis|woodpecker|peckerwood|pecker +camper|2 +(noun)|vacationer|vacationist +(noun)|camping bus|motor home|recreational vehicle|RV +camper trailer|1 +(noun)|trailer|house trailer +campestral|1 +(adj)|rural +campfire|1 +(noun)|fire +campfire girl|1 +(noun)|female child|girl|little girl +campground|1 +(noun)|campsite|camping site|camping ground|bivouac|encampment|camping area|site|land site +camphor|1 +(noun)|natural resin +camphor ball|1 +(noun)|mothball|ball|globe|orb +camphor daisy|1 +(noun)|Haplopappus phyllocephalus|goldenbush +camphor dune tansy|1 +(noun)|Tanacetum camphoratum|herb|herbaceous plant +camphor ice|1 +(noun)|cerate +camphor oil|1 +(noun)|oil +camphor tree|1 +(noun)|Cinnamomum camphora|laurel +camphoraceous|1 +(adj)|natural resin +camphorate|1 +(verb)|process|treat +camphorated|1 +(adj)|camphorated +camphorated tincture of opium|1 +(noun)|paregoric|medicine|medication|medicament|medicinal drug +camphoric|1 +(adj)|natural resin +camphorweed|1 +(noun)|turpentine camphor weed|vinegarweed|Trichostema lanceolatum|blue curls +camping|1 +(noun)|encampment|bivouacking|tenting|inhabitancy|inhabitation|habitation +camping area|1 +(noun)|campsite|campground|camping site|camping ground|bivouac|encampment|site|land site +camping bus|1 +(noun)|camper|motor home|recreational vehicle|RV +camping ground|1 +(noun)|campsite|campground|camping site|bivouac|encampment|camping area|site|land site +camping site|1 +(noun)|campsite|campground|camping ground|bivouac|encampment|camping area|site|land site +campion|1 +(noun)|silene|catchfly|flower +campmate|1 +(noun)|acquaintance|friend +campong|1 +(noun)|Kampong|village|hamlet +camponotus|1 +(noun)|Camponotus|genus Camponotus|arthropod genus +campsis radicans|1 +(noun)|trumpet creeper|trumpet vine|Campsis radicans|Bignoniaceae|family Bignoniaceae +campsite|1 +(noun)|campground|camping site|camping ground|bivouac|encampment|camping area|site|land site +campstool|1 +(noun)|stool +camptosorus|1 +(noun)|Camptosorus|genus Camptosorus|fern genus +camptosorus rhizophyllus|1 +(noun)|walking fern|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort +campus|1 +(noun)|field +campy|1 +(adj)|camp|tasteless +campyloneurum|1 +(noun)|Campyloneurum|genus Campyloneurum|fern genus +campyloneurum augustifolium|1 +(noun)|Central American strap fern|narrow-leaved strap fern|Campyloneurum augustifolium|strap fern +campylorhynchus|1 +(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus +campylotropous|1 +(adj)|campylotropous +campylotropous ovule|1 +(noun)|ovule +camshaft|1 +(noun)|rotating shaft|shaft +camus|1 +(noun)|Camus|Albert Camus|writer|author +camwood|1 +(noun)|African sandalwood|Baphia nitida|tree +can|8 +(noun)|tin|tin can|container +(noun)|canful|containerful +(noun)|can buoy|buoy +(noun)|buttocks|nates|arse|butt|backside|bum|buns|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|toilet|commode|crapper|pot|potty|stool|throne|plumbing fixture +(noun)|toilet|lavatory|lav|john|privy|bathroom|room +(verb)|tin|put up|preserve|keep +(verb)|fire|give notice|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove +can-do|1 +(adj)|dynamic |dynamical +can buoy|1 +(noun)|can|buoy +can of worms|1 +(noun)|trouble|problem +can opener|1 +(noun)|tin opener|opener +canaan|1 +(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area|geographic area|geographical region|geographic region +canaanite|2 +(noun)|Canaanite|Semite +(noun)|Canaanite|Canaanitic|Canaanitic language +canaanitic|1 +(noun)|Canaanitic|Canaanitic language|Semitic +canaanitic language|1 +(noun)|Canaanitic|Canaanitic language|Semitic +canachites|1 +(noun)|Canachites|genus Canachites|bird genus +canachites canadensis|1 +(noun)|spruce grouse|Canachites canadensis|grouse +canada|1 +(noun)|Canada|North American country|North American nation +canada anemone|1 +(noun)|Canada anemone|Anemone Canadensis|anemone|windflower +canada balsam|2 +(noun)|Canada balsam|oleoresin +(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir +canada garlic|1 +(noun)|Canada garlic|meadow leek|rose leek|Allium canadense|alliaceous plant +canada ginger|1 +(noun)|Canada ginger|black snakeroot|Asarum canadense|wild ginger +canada goose|1 +(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose +canada jay|1 +(noun)|Canada jay|gray jay|camp robber|whisker jack|Perisoreus canadensis|jay +canada lily|1 +(noun)|Canada lily|wild yellow lily|meadow lily|wild meadow lily|Lilium canadense|lily +canada lynx|1 +(noun)|Canada lynx|Lynx canadensis|lynx|catamount +canada moonseed|1 +(noun)|common moonseed|Canada moonseed|yellow parilla|Menispermum canadense|moonseed +canada plum|1 +(noun)|Canada plum|Prunus nigra|plum|plum tree +canada porcupine|1 +(noun)|Canada porcupine|Erethizon dorsatum|New World porcupine +canada thistle|1 +(noun)|Canada thistle|creeping thistle|Cirsium arvense|plume thistle|plumed thistle +canada violet|1 +(noun)|Canada violet|tall white violet|white violet|Viola canadensis|violet +canada wild rye|1 +(noun)|Canada wild rye|Elymus canadensis|wild rye +canadian|3 +(adj)|Canadian|North American country|North American nation +(noun)|Canadian|North American +(noun)|Canadian|Canadian River|river +canadian aspen|1 +(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen +canadian bacon|1 +(noun)|Canadian bacon|bacon +canadian capital|1 +(noun)|Ottawa|Canadian capital|capital of Canada|national capital +canadian dollar|1 +(noun)|Canadian dollar|dollar +canadian falls|1 +(noun)|Canadian Falls|Horseshoe Falls|waterfall|falls +canadian fleabane|1 +(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed +canadian french|1 +(noun)|Canadian French|French +canadian goldenrod|1 +(noun)|meadow goldenrod|Canadian goldenrod|Solidago canadensis|goldenrod +canadian goose|1 +(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose +canadian hemlock|1 +(noun)|eastern hemlock|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock|hemlock tree +canadian maritime provinces|1 +(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area|geographic area|geographical region|geographic region +canadian pondweed|1 +(noun)|Canadian pondweed|Elodea canadensis|waterweed +canadian province|1 +(noun)|Canadian province|state|province +canadian red pine|1 +(noun)|red pine|Canadian red pine|Pinus resinosa|pine|pine tree|true pine +canadian river|1 +(noun)|Canadian|Canadian River|river +canadian security intelligence service|1 +(noun)|Canadian Security Intelligence Service|CSIS|international intelligence agency +canafistola|1 +(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistula|Cassia fistula|cassia +canafistula|1 +(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistola|Cassia fistula|cassia +canal|4 +(noun)|channel +(noun)|duct|epithelial duct|channel|passage|passageway +(noun)|watercourse|waterway +(verb)|canalize|canalise|supply|provide|render|furnish +canal boat|1 +(noun)|narrow boat|narrowboat|boat +canal of schlemm|1 +(noun)|canal of Schlemm|Schlemm's canal|sinus venosus sclerae|duct|epithelial duct|canal|channel +canal zone|1 +(noun)|Panama Canal Zone|Canal Zone|zone +canalicular|1 +(adj)|duct|epithelial duct|canal|channel +canaliculate|1 +(adj)|furrowed +canaliculus|1 +(noun)|duct|epithelial duct|canal|channel +canalis cervicis uteri|1 +(noun)|cervical canal|duct|epithelial duct|canal|channel +canalis inguinalis|1 +(noun)|inguinal canal|duct|epithelial duct|canal|channel +canalis vertebralis|1 +(noun)|spinal canal|vertebral canal|duct|epithelial duct|canal|channel +canalisation|2 +(noun)|canalization|production +(noun)|channelization|channelisation|canalization|management|direction +canalise|2 +(verb)|canal|canalize|supply|provide|render|furnish +(verb)|channel|canalize|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +canalization|2 +(noun)|canalisation|production +(noun)|channelization|channelisation|canalisation|management|direction +canalize|2 +(verb)|canal|canalise|supply|provide|render|furnish +(verb)|channel|canalise|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +cananga|1 +(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus +cananga odorata|1 +(noun)|ilang-ilang|ylang-ylang|Cananga odorata|angiospermous tree|flowering tree +canangium|1 +(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus +canape|1 +(noun)|appetizer|appetiser|starter +canara|1 +(noun)|Kanara|Canara|geographical area|geographic area|geographical region|geographic region +canard|1 +(noun)|fabrication|fiction|fable +canarese|1 +(noun)|Kanarese|Canarese|Dravidian +canaries|5 +(noun)|Canary Islands|Canaries|island +(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +(noun)|canary|singer|vocalist|vocalizer|vocaliser +(noun)|canary yellow|canary|yellow|yellowness +(noun)|canary|canary bird|finch +canary|5 +(adj)|canary-yellow|chromatic +(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneak|sneaker|informer|betrayer|rat|squealer|blabber +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|canary yellow|yellow|yellowness +(noun)|canary bird|finch +canary-yellow|1 +(adj)|canary|chromatic +canary bird|1 +(noun)|canary|finch +canary creeper|1 +(noun)|canarybird flower|canarybird vine|Tropaeolum peregrinum|nasturtium +canary grass|1 +(noun)|birdseed grass|Phalaris canariensis|grass +canary island hare's foot fern|1 +(noun)|Canary Island hare's foot fern|Davallia canariensis|hare's-foot fern +canary islands|1 +(noun)|Canary Islands|Canaries|island +canary seed|1 +(noun)|bird food|birdseed +canary whitewood|1 +(noun)|tulip tree|tulip poplar|yellow poplar|Liriodendron tulipifera|angiospermous tree|flowering tree +canary wine|1 +(noun)|Canary wine|white wine +canary yellow|1 +(noun)|canary|yellow|yellowness +canarybird flower|1 +(noun)|canarybird vine|canary creeper|Tropaeolum peregrinum|nasturtium +canarybird vine|1 +(noun)|canarybird flower|canary creeper|Tropaeolum peregrinum|nasturtium +canasta|1 +(noun)|basket rummy|meld|rummy|rum +canavalia|1 +(noun)|Canavalia|genus Canavalia|rosid dicot genus +canavalia ensiformis|1 +(noun)|jack bean|wonder bean|giant stock bean|Canavalia ensiformis|vine +canavalia gladiata|1 +(noun)|sword bean|Canavalia gladiata|vine +canavanine|1 +(noun)|amino acid|aminoalkanoic acid +canberra|1 +(noun)|Canberra|Australian capital|capital of Australia|national capital +cancan|1 +(noun)|stage dancing|choreography +cancel|6 +(noun)|natural|musical notation +(verb)|call off +(verb)|offset|set off|balance|equilibrate|equilibrize|equilibrise +(verb)|strike down|declare|adjudge|hold +(verb)|delete|remove|take|take away|withdraw +(verb)|invalidate|score|mark +cancel out|1 +(verb)|wipe out|eliminate|get rid of|do away with +cancellate|2 +(adj)|cancellated|clathrate|reticulate |reticulated|reticular +(adj)|cancellated|cancellous|cellular +cancellated|2 +(adj)|cancellate|clathrate|reticulate |reticulated|reticular +(adj)|cancellate|cancellous|cellular +cancellation|2 +(noun)|nullification|override +(noun)|negation +cancelled|1 +(adj)|off +cancellous|1 +(adj)|cancellate|cancellated|cellular +cancer|5 +(noun)|malignant neoplastic disease|malignant tumor|malignant neoplasm|metastatic tumor +(noun)|Cancer|Crab|person|individual|someone|somebody|mortal|human|soul +(noun)|Cancer|constellation +(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|Cancer|genus Cancer|arthropod genus +cancer body|1 +(noun)|Russell's body|inclusion body|cellular inclusion|inclusion +cancer borealis|1 +(noun)|Jonah crab|Cancer borealis|crab +cancer cell|1 +(noun)|neoplastic cell +cancer drug|1 +(noun)|antineoplastic|antineoplastic drug|cytotoxic drug +cancer irroratus|1 +(noun)|rock crab|Cancer irroratus|crab +cancer juice|1 +(noun)|juice|succus +cancer magister|1 +(noun)|Dungeness crab|Cancer magister|crab +cancer of the blood|1 +(noun)|leukemia|leukaemia|leucaemia|cancer|malignant neoplastic disease +cancer of the liver|1 +(noun)|liver cancer|liver disease|carcinoma +cancer the crab|1 +(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac|star sign|sign|mansion|house|planetary house +cancer weed|2 +(noun)|cancerweed|Salvia lyrata|sage|salvia +(noun)| +cancerous|2 +(adj)|malignant +(adj)|malign +cancerweed|1 +(noun)|cancer weed|Salvia lyrata|sage|salvia +cancridae|1 +(noun)|Cancridae|family Cancridae|arthropod family +cancroid|2 +(adj)|skin cancer +(noun)|squamous cell carcinoma|skin cancer +cancun|1 +(noun)|Cancun|city|metropolis|urban center +candela|1 +(noun)|candle|cd|standard candle|luminous intensity unit|candlepower unit +candelabra|2 +(noun)|candelabrum|candlestick|candle holder +(noun)|candelabrum|candlestick|candle holder +candelabrum|1 +(noun)|candelabra|candlestick|candle holder +candelilla|2 +(noun)|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge|slipper plant +(noun)|Euphorbia antisyphilitica|spurge +candelilla wax|1 +(noun)|wax +candent|1 +(adj)|incandescent|light +candescent|1 +(adj)|light +candid|4 +(adj)|blunt|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct +(adj)|unstudied |uncontrived +(adj)|open|heart-to-heart|ingenuous |artless +(adj)|unflattering +candid camera|1 +(noun)|camera|photographic camera +candida|1 +(noun)|fungus +candida albicans|1 +(noun)|Candida albicans|Monilia albicans|candida +candidacy|1 +(noun)|campaigning|candidature|electioneering|political campaign|campaign|cause|crusade|drive|movement|effort +candidate|2 +(noun)|campaigner|nominee|politician|politico|pol|political leader +(noun)|prospect|person|individual|someone|somebody|mortal|human|soul +candidature|1 +(noun)|campaigning|candidacy|electioneering|political campaign|campaign|cause|crusade|drive|movement|effort +candidiasis|1 +(noun)|moniliasis|monilia disease|fungal infection|mycosis +candidly|1 +(adv)|honestly|frankly +candidness|1 +(noun)|candor|candour|frankness|forthrightness|honesty|honestness +candied|2 +(adj)|sugar-coated|sugary +(adj)|crystalized|crystalised|glace|preserved +candied apple|1 +(noun)|candy apple|taffy apple|caramel apple|toffee apple|sweet|confection|confectionery +candied citrus peel|1 +(noun)|candied fruit|crystallized fruit +candied fruit|1 +(noun)|crystallized fruit|confiture +candle|3 +(noun)|taper|wax light|lamp +(noun)|candela|cd|standard candle|luminous intensity unit|candlepower unit +(verb)|examine|see +candle flame|1 +(noun)|candlelight|light|visible light|visible radiation +candle holder|1 +(noun)|candlestick|holder +candleberry|1 +(noun)|bayberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle +candlelight|1 +(noun)|candle flame|light|visible light|visible radiation +candlemaker|1 +(noun)|chandler +candlemas|1 +(noun)|Candlemas|Candlemas Day|Feb 2|quarter day +candlemas day|1 +(noun)|Candlemas|Candlemas Day|Feb 2|quarter day +candlenut|2 +(noun)|varnish tree|Aleurites moluccana|angiospermous tree|flowering tree +(noun)|oilseed +candlepin bowling|1 +(noun)|candlepins|bowling +candlepins|1 +(noun)|candlepin bowling|bowling +candlepower|1 +(noun)|light intensity|intensity|strength|intensity level +candlepower unit|1 +(noun)|luminous intensity unit|light unit +candlesnuffer|1 +(noun)|implement +candlestick|1 +(noun)|candle holder|holder +candlestick tulip|1 +(noun)|lady tulip|Tulipa clusiana|tulip +candlewick|2 +(noun)|wick|taper +(noun)|embroidery|fancywork +candlewood|1 +(noun)|shrub|bush +candor|2 +(noun)|fairness|fair-mindedness|candour|impartiality|nonpartisanship +(noun)|candour|candidness|frankness|forthrightness|honesty|honestness +candour|2 +(noun)|candor|candidness|frankness|forthrightness|honesty|honestness +(noun)|fairness|fair-mindedness|candor|impartiality|nonpartisanship +candy|2 +(noun)|sweet|confection|confectionery +(verb)|sugarcoat|glaze|sweeten|dulcify|edulcorate|dulcorate +candy apple|1 +(noun)|candied apple|taffy apple|caramel apple|toffee apple|sweet|confection|confectionery +candy bar|1 +(noun)|candy +candy cane|1 +(noun)|candy +candy corn|1 +(noun)|candy +candy egg|1 +(noun)|Easter egg +candy kiss|1 +(noun)|molasses kiss|kiss +candy store|1 +(noun)|confectionery|shop|store +candy striper|1 +(noun)|volunteer|unpaid worker +candy thermometer|1 +(noun)|thermometer +candyfloss|1 +(noun)|cotton candy|spun sugar|candy +candymaker|1 +(noun)|confectioner|maker|shaper +candytuft|1 +(noun)|flower +candyweed|1 +(noun)|orange milkwort|yellow milkwort|yellow bachelor's button|Polygala lutea|milkwort +cane|4 +(noun)|walking stick +(noun)|stalk|stem +(noun)|switch +(verb)|flog|lambaste|lambast|beat|beat up|work over +cane blight|1 +(noun)|blight +cane reed|1 +(noun)|giant cane|Arundinaria gigantea|bamboo +cane sugar|2 +(noun)|carbohydrate|saccharide|sugar +(noun)|sugar|refined sugar +canebrake|1 +(noun)|brush|brushwood|coppice|copse|thicket +canebrake rattler|1 +(noun)|canebrake rattlesnake|Crotalus horridus atricaudatus|timber rattlesnake|banded rattlesnake|Crotalus horridus horridus +canebrake rattlesnake|1 +(noun)|canebrake rattler|Crotalus horridus atricaudatus|timber rattlesnake|banded rattlesnake|Crotalus horridus horridus +canecutter|1 +(noun)|swamp rabbit|swamp hare|Sylvilagus aquaticus|wood rabbit|cottontail|cottontail rabbit +canella|1 +(noun)|canella bark|white cinnamon|bark +canella-alba|1 +(noun)|wild cinnamon|white cinnamon tree|Canella winterana|Canella-alba|shrub|bush +canella bark|1 +(noun)|canella|white cinnamon|bark +canella family|1 +(noun)|Canellaceae|family Canellaceae|dilleniid dicot family +canella winterana|1 +(noun)|wild cinnamon|white cinnamon tree|Canella winterana|Canella-alba|shrub|bush +canellaceae|1 +(noun)|Canellaceae|family Canellaceae|canella family|dilleniid dicot family +canescent|2 +(adj)|achromatic +(adj)|hoary|hairy |hirsute +canetti|1 +(noun)|Canetti|Elias Canetti|writer|author +canfield|1 +(noun)|solitaire|patience +canful|1 +(noun)|can|containerful +cangue|1 +(noun)|instrument of punishment +canicola fever|1 +(noun)|swamp fever|leptospirosis +canicula|1 +(noun)|Sirius|Dog Star|Canicula|Sothis|binary star|binary|double star +canicular|2 +(adj)|time period|period of time|period +(adj)|binary star|binary|double star +canicular days|1 +(noun)|dog days|canicule|time period|period of time|period +canicule|1 +(noun)|dog days|canicular days|time period|period of time|period +canid|1 +(noun)|canine|carnivore +canidae|1 +(noun)|Canidae|family Canidae|mammal family +canine|4 +(adj)|laniary|tooth +(adj)|mammal family +(noun)|canine tooth|eyetooth|eye tooth|dogtooth|cuspid|tooth +(noun)|canid|carnivore +canine chorea|1 +(noun)|chorea|animal disease +canine distemper|1 +(noun)|distemper +canine tooth|1 +(noun)|canine|eyetooth|eye tooth|dogtooth|cuspid|tooth +caning|1 +(noun)|wicker|wickerwork|work|piece of work +canis|1 +(noun)|Canis|genus Canis|mammal genus +canis aureus|1 +(noun)|jackal|Canis aureus|canine|canid +canis dingo|1 +(noun)|dingo|warrigal|warragal|Canis dingo|wild dog +canis familiaris|1 +(noun)|dog|domestic dog|Canis familiaris|canine|canid +canis latrans|1 +(noun)|coyote|prairie wolf|brush wolf|Canis latrans|wolf +canis lupus|1 +(noun)|timber wolf|gray wolf|Canis lupus|wolf +canis lupus tundrarum|1 +(noun)|white wolf|Arctic wolf|Canis lupus tundrarum|wolf +canis major|1 +(noun)|Canis Major|Great Dog|constellation +canis minor|1 +(noun)|Canis Minor|Little Dog|constellation +canis niger|1 +(noun)|red wolf|maned wolf|Canis rufus|Canis niger|wolf +canis rufus|1 +(noun)|red wolf|maned wolf|Canis rufus|Canis niger|wolf +canistel|2 +(noun)|canistel tree|Pouteria campechiana nervosa|fruit tree +(noun)|eggfruit|edible fruit +canistel tree|1 +(noun)|canistel|Pouteria campechiana nervosa|fruit tree +canister|2 +(noun)|case shot|canister shot|ammunition|ammo +(noun)|cannister|tin|container +canister shot|1 +(noun)|case shot|canister|ammunition|ammo +canker|3 +(noun)|ulcer|ulceration +(verb)|sicken|come down +(verb)|infect +canker brake|1 +(noun)|Christmas fern|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern +cankerous|1 +(adj)|ulcerated|ulcerous|unhealthy +cankerweed|1 +(noun)|white lettuce|Nabalus alba|Prenanthes alba|rattlesnake root +cankerworm|1 +(noun)|caterpillar +canna|1 +(noun)|herb|herbaceous plant +canna edulis|1 +(noun)|achira|indian shot|arrowroot|Canna indica|Canna edulis|canna +canna generalis|1 +(noun)|canna lily|Canna generalis|canna +canna indica|1 +(noun)|achira|indian shot|arrowroot|Canna indica|Canna edulis|canna +canna lily|1 +(noun)|Canna generalis|canna +cannabidaceae|1 +(noun)|Cannabidaceae|family Cannabidaceae|hemp family|dicot family|magnoliopsid family +cannabin|1 +(noun)|cannabis resin|natural resin +cannabis|2 +(noun)|hemp|shrub|bush +(noun)|marijuana|marihuana|ganja|soft drug|controlled substance +cannabis indica|1 +(noun)|Indian hemp|Cannabis indica|cannabis|hemp +cannabis resin|1 +(noun)|cannabin|natural resin +cannabis sativa|1 +(noun)|marijuana|marihuana|ganja|Cannabis sativa|cannabis|hemp +cannaceae|1 +(noun)|Cannaceae|family Cannaceae|monocot family|liliopsid family +cannae|1 +(noun)|Cannae|pitched battle +canned|2 +(adj)|transcribed|recorded +(adj)|tinned|preserved +canned food|1 +(noun)|canned foods|canned goods|tinned goods|foodstuff|food product +canned foods|2 +(noun)|canned food|canned goods|tinned goods|foodstuff|food product +(noun)|canned food|canned goods|tinned goods|foodstuff|food product +canned goods|1 +(noun)|canned food|canned foods|tinned goods|foodstuff|food product +canned hunt|1 +(noun)|hunt|hunting +canned meat|1 +(noun)|tinned meat|canned food|canned foods|canned goods|tinned goods +cannel coal|1 +(noun)|bituminous coal|soft coal +cannelloni|1 +(noun)|dish +cannery|1 +(noun)|factory|mill|manufacturing plant|manufactory +cannes|1 +(noun)|Cannes|city|metropolis|urban center|port +cannibal|1 +(noun)|man-eater|anthropophagus|anthropophagite|savage|barbarian +cannibal mound|1 +(noun)|steak tartare|tartar steak|dish +cannibalic|1 +(adj)|inhumane +cannibalise|2 +(verb)|cannibalize|consume|ingest|take in|take|have +(verb)|cannibalize|use|utilize|utilise|apply|employ +cannibalism|1 +(noun)|practice|pattern +cannibalistic|1 +(adj)|savage|barbarian|practice|pattern +cannibalize|2 +(verb)|cannibalise|consume|ingest|take in|take|have +(verb)|cannibalise|use|utilize|utilise|apply|employ +cannikin|2 +(noun)|bucket|pail +(noun)|can|tin|tin can +cannily|1 +(adv)|presciently +cannister|1 +(noun)|canister|tin|container +cannon|8 +(noun)|artillery|heavy weapon|gun|ordnance +(noun)|gun +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|gun +(noun)|shank|body part +(noun)|carom|stroke|shot +(verb)|hit +(verb)|discharge|muster out +cannon ball|2 +(noun)|cannonball|round shot|projectile|missile +(noun)| +cannon bone|1 +(noun)|bone|os +cannon cracker|1 +(noun)|firecracker|cracker|banger +cannon fire|1 +(noun)|artillery fire|fire|firing +cannon fodder|1 +(noun)|fresh fish|soldier +cannonade|2 +(noun)|drumfire|artillery fire|cannon fire +(verb)|attack|assail +cannonball|1 +(noun)|cannon ball|round shot|projectile|missile +cannonball along|1 +(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|bucket along|belt along|travel|go|move|locomote +cannoneer|1 +(noun)|artilleryman|gunner|machine gunner|serviceman|military man|man|military personnel +cannula|1 +(noun)|tube|tubing +cannular|1 +(adj)|tubular|hollow +cannulate|1 +(verb)|cannulize|cannulise|intubate|canulate|insert|infix|enter|introduce +cannulation|1 +(noun)|canulation|cannulization|cannulisation|canulization|canulisation|intubation|insertion|introduction|intromission +cannulisation|1 +(noun)|cannulation|canulation|cannulization|canulization|canulisation|intubation|insertion|introduction|intromission +cannulise|1 +(verb)|cannulate|cannulize|intubate|canulate|insert|infix|enter|introduce +cannulization|1 +(noun)|cannulation|canulation|cannulisation|canulization|canulisation|intubation|insertion|introduction|intromission +cannulize|1 +(verb)|cannulate|cannulise|intubate|canulate|insert|infix|enter|introduce +canny|1 +(adj)|cagey|cagy|clever|smart +canoe|2 +(noun)|small boat +(verb)|boat +canoe birch|1 +(noun)|American white birch|paper birch|paperbark birch|Betula cordifolia|Betula papyrifera|birch|birch tree +canoe cedar|1 +(noun)|western red cedar|red cedar|Thuja plicata|arborvitae +canoeist|1 +(noun)|paddler|boatman|boater|waterman +canola oil|1 +(noun)|vegetable oil|oil +canon|6 +(noun)|rule|prescript +(noun)|priest +(noun)|canyon|ravine +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|list|listing +(noun)|scripture|sacred scripture +canon law|1 +(noun)|ecclesiastical law|law|jurisprudence +canonic|4 +(adj)|canonical|rule|prescript +(adj)|canonical|law|jurisprudence +(adj)|basic|canonical|standard +(adj)|canonical|sanctioned|orthodox +canonical|4 +(adj)|canonic|rule|prescript +(adj)|canonic|law|jurisprudence +(adj)|basic|canonic|standard +(adj)|canonic|sanctioned|orthodox +canonical hour|1 +(noun)|hour|time of day +canonisation|1 +(noun)|canonization|sanctification +canonise|3 +(verb)|canonize|laud|extol|exalt|glorify|proclaim +(verb)|canonize|saint|declare|adjudge|hold +(verb)|canonize|add +canonised|1 +(adj)|canonized|glorified|authorized |authorised +canonist|2 +(adj)|rule|prescript +(noun)|specialist|specializer|specialiser +canonization|1 +(noun)|canonisation|sanctification +canonize|3 +(verb)|canonise|saint|declare|adjudge|hold +(verb)|canonise|laud|extol|exalt|glorify|proclaim +(verb)|canonise|add +canonized|1 +(adj)|canonised|glorified|authorized |authorised +canoodle|1 +(verb)|pet +canopic jar|1 +(noun)|canopic vase|jar +canopic vase|1 +(noun)|canopic jar|jar +canopied|1 +(adj)|covered +canopus|1 +(noun)|Canopus|supergiant +canopy|4 +(noun)|covering +(noun)|fabric|cloth|material|textile +(noun)|shelter +(verb)|cover +canorous|1 +(adj)|songful|melodious |melodic|musical +cant|6 +(noun)|buzzword|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|bank|camber|slope|incline|side +(noun)|jargon|slang|lingo|argot|patois|vernacular|non-standard speech +(noun)|pious platitude|talk|talking +(noun)|bevel|chamfer|edge +(verb)|cant over|tilt|slant|pitch|move +cant dog|1 +(noun)|peavey|peavy|lever +cant hook|1 +(noun)|peavey|peavy|cant dog +cant over|1 +(verb)|cant|tilt|slant|pitch|move +cantabile|1 +(adj)|singing|melodious |melodic|musical +cantabrian mountains|1 +(noun)|Cantabrian Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +cantabrigian|1 +(noun)|Cantabrigian|English person +cantala|2 +(noun)|Cebu maguey|manila maguey|fiber|fibre +(noun)|maguey|Agave cantala|agave|century plant|American aloe +cantaloup|2 +(noun)|cantaloupe|cantaloupe vine|Cucumis melo cantalupensis|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|cantaloupe|muskmelon|sweet melon +cantaloupe|2 +(noun)|cantaloup|cantaloupe vine|Cucumis melo cantalupensis|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|cantaloup|muskmelon|sweet melon +cantaloupe vine|1 +(noun)|cantaloupe|cantaloup|Cucumis melo cantalupensis|sweet melon|muskmelon|sweet melon vine|Cucumis melo +cantankerous|2 +(adj)|bloody-minded|stubborn +(adj)|crotchety|ornery|ill-natured +cantata|1 +(noun)|oratorio|classical music|serious music +canted|1 +(adj)|atilt|leaning|tilted|tipped|inclined +canteen|5 +(noun)|flask +(noun)|shop|store +(noun)|mobile canteen|restaurant|eating house|eating place +(noun)|recreation room|rec room +(noun)|restaurant|eating house|eating place +canter|4 +(noun)|lope|gait +(verb)|ride horseback +(verb)|pace +(verb)|ride|sit +canterbury|1 +(noun)|Canterbury|town +canterbury bell|2 +(noun)|Canterbury bell|Gloxinia perennis|gloxinia +(noun)|Canterbury bell|cup and saucer|Campanula medium|campanula|bellflower +canterbury tales|1 +(noun)|Canterbury Tales|narrative|narration|story|tale +cantering|1 +(adj)|ride horseback +cantering rhythm|1 +(noun)|gallop rhythm|cardiac arrhythmia|arrhythmia +cantharellus|1 +(noun)|Cantharellus|genus Cantharellus|fungus genus +cantharellus cibarius|1 +(noun)|chanterelle|chantarelle|Cantharellus cibarius|agaric +cantharellus cinnabarinus|1 +(noun)|cinnabar chanterelle|Cantharellus cinnabarinus|agaric +cantharellus clavatus|1 +(noun)|pig's ears|Cantharellus clavatus|agaric +cantharellus floccosus|1 +(noun)|floccose chanterelle|Cantharellus floccosus|agaric +canthus|1 +(noun)|corner +canticle|1 +(noun)|hymn|anthem +canticle of canticles|1 +(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book +canticle of simeon|1 +(noun)|Canticle of Simeon|Nunc dimittis|prayer +canticles|2 +(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book +(noun)|canticle|hymn|anthem +cantilever|3 +(noun)|beam +(verb)|stick out|protrude|jut out|jut|project +(verb)|construct|build|make +cantilever bridge|1 +(noun)|bridge|span +cantillate|1 +(verb)|chant|intone|intonate|sing +cantillation|1 +(noun)|intonation|chanting +cantle|1 +(noun)|back|backrest +canto|2 +(noun)|voice part +(noun)|section|subdivision +canton|4 +(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city|metropolis|urban center|port +(noun)|administrative district|administrative division|territorial division +(verb)|quarter|billet|lodge|accommodate +(verb)|divide|split|split up|separate|dissever|carve up +canton crepe|1 +(noun)|Canton crepe|crepe|crape +canton flannel|1 +(noun)|cotton flannel|Canton flannel|fabric|cloth|material|textile +canton ginger|1 +(noun)|common ginger|Canton ginger|stem ginger|Zingiber officinale|ginger +canton river|1 +(noun)|Zhu Jiangi|Canton River|Chu Kiang|river +cantonal|1 +(adj)|city|metropolis|urban center|port +cantonese|1 +(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese +cantonese dialect|1 +(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese +cantonment|1 +(noun)|camp|encampment|bivouac|military quarters +cantor|2 +(noun)|choirmaster|precentor|musician +(noun)|hazan|spiritual leader +cantus firmus|1 +(noun)|plainsong|plainchant|Gregorian chant +canty|1 +(adj)|energetic +canuck|1 +(noun)|Canuck|French Canadian +canulate|1 +(verb)|cannulate|cannulize|cannulise|intubate|insert|infix|enter|introduce +canulation|1 +(noun)|cannulation|cannulization|cannulisation|canulization|canulisation|intubation|insertion|introduction|intromission +canulisation|1 +(noun)|cannulation|canulation|cannulization|cannulisation|canulization|intubation|insertion|introduction|intromission +canulization|1 +(noun)|cannulation|canulation|cannulization|cannulisation|canulisation|intubation|insertion|introduction|intromission +canute|1 +(noun)|Canute|Cnut|Knut|Canute the Great|King of England|King of Great Britain +canute the great|1 +(noun)|Canute|Cnut|Knut|Canute the Great|King of England|King of Great Britain +canvas|10 +(noun)|canvass|fabric|cloth|material|textile +(noun)|canvass|oil painting +(noun)|canvass|setting|background|scope +(noun)|canvas tent|canvass|tent|collapsible shelter +(noun)|sail|canvass|sheet|piece of cloth|piece of material +(noun)|canvass|mat|gym mat +(verb)|canvass|solicit|beg|tap +(verb)|poll|canvass|survey +(verb)|cover +(verb)|analyze|analyse|study|examine|canvass +canvas tent|1 +(noun)|canvas|canvass|tent|collapsible shelter +canvasback|1 +(noun)|canvasback duck|Aythya valisineria|duck +canvasback duck|1 +(noun)|canvasback|Aythya valisineria|duck +canvass|14 +(noun)|canvas|setting|background|scope +(noun)|poll|opinion poll|public opinion poll|inquiry|enquiry|research +(noun)|sail|canvas|sheet|piece of cloth|piece of material +(noun)|canvas tent|canvas|tent|collapsible shelter +(noun)|canvas|oil painting +(noun)|canvas|mat|gym mat +(noun)|canvas|fabric|cloth|material|textile +(verb)|poll|canvas|survey +(verb)|canvas|solicit|beg|tap +(verb)|analyze|analyse|study|examine|canvas +(verb)|canvas|solicit|beg|tap +(verb)|poll|canvas|survey +(verb)|canvas|cover +(verb)|analyze|analyse|study|examine|canvas +canvasser|4 +(noun)|solicitor|petitioner|suppliant|supplicant +(noun)|scrutineer|examiner|inspector +(noun)|pollster|poll taker|headcounter|inquirer|enquirer|questioner|querier|asker +(noun)|teller|vote counter +canvassing|1 +(noun)|electioneering|bell ringing|persuasion|suasion +canyon|1 +(noun)|canon|ravine +canyon live oak|1 +(noun)|canyon oak|maul oak|iron oak|Quercus chrysolepis|live oak +canyon oak|1 +(noun)|canyon live oak|maul oak|iron oak|Quercus chrysolepis|live oak +canyon treefrog|1 +(noun)|Hyla arenicolor|tree toad|tree frog|tree-frog +canyonlands national park|1 +(noun)|Canyonlands National Park|national park +canyonside|1 +(noun)|slope|incline|side +caoutchouc|1 +(noun)|rubber|India rubber|gum elastic|latex +caoutchouc tree|1 +(noun)|para rubber tree|Hevea brasiliensis|angiospermous tree|flowering tree +cap|10 +(noun)|headdress|headgear +(noun)|top|cover +(noun)|detonator|detonating device|explosive device +(noun)|protective covering|protective cover|protection +(noun)|pileus|plant part|plant structure +(noun)|ceiling|control +(noun)|crownwork|dental appliance +(noun)|capital|chapiter|top +(verb)|crest|lie +(verb)|limit|circumscribe|confine +cap-a-pie|1 +(adv)|from head to toe +cap off|1 +(verb)|get through|wrap up|finish off|mop up|polish off|clear up|finish up +cap opener|1 +(noun)|bottle opener +cap screw|1 +(noun)|screw +capability|3 +(noun)|capableness|ability +(noun)|capacity|susceptibility|susceptibleness +(noun)|capableness|potentiality|aptitude +capable|5 +(adj)|capable |able|confident|surefooted|resourceful|competent +(adj)|open|subject|susceptible +(adj)|capable +(adj)|adequate to|equal to|up to|adequate +(adj)|able|competent +capableness|2 +(noun)|capability|potentiality|aptitude +(noun)|capability|ability +capably|1 +(adv)|competently|aptly|ably|with competence +capacious|1 +(adj)|large +capaciousness|1 +(noun)|roominess|spaciousness|commodiousness|largeness|bigness +capacitance|2 +(noun)|electrical capacity|capacity|electrical phenomenon +(noun)|capacitor|condenser|electrical condenser|electrical device +capacitance unit|1 +(noun)|electromagnetic unit|emu +capacitate|3 +(verb)|qualify +(verb)|change +(verb)|qualify|dispose +capacitive|1 +(adj)|electrical phenomenon +capacitor|1 +(noun)|capacitance|condenser|electrical condenser|electrical device +capacitor microphone|1 +(noun)|condenser microphone|microphone|mike +capacity|9 +(noun)|capability|capableness +(noun)|capability|susceptibility|susceptibleness +(noun)|content|volume +(noun)|production +(noun)|function|office|part|role +(noun)|indefinite quantity +(noun)|capacitance|electrical capacity|electrical phenomenon +(noun)|mental ability|ability|power +(noun)|tolerance +capacity measure|1 +(noun)|volume unit|capacity unit|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement|unit +capacity unit|1 +(noun)|volume unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement|unit +caparison|2 +(noun)|trapping|trappings|housing|housings|stable gear|saddlery|tack +(verb)|bard|dress up|decorate|adorn|grace|ornament|embellish|beautify +caparisoned|1 +(adj)|clothed |clad +cape|2 +(noun)|ness|land|dry land|earth|ground|solid ground|terra firma +(noun)|mantle|cloak +cape aloe|1 +(noun)|Aloe ferox|aloe +cape ann|1 +(noun)|Cape Ann|peninsula +cape breton island|1 +(noun)|Cape Breton Island|island +cape buffalo|1 +(noun)|Cape buffalo|Synercus caffer|Old World buffalo|buffalo +cape canaveral|1 +(noun)|Cape Canaveral|Cape Kennedy|promontory|headland|foreland +cape cod|1 +(noun)|Cape Cod|peninsula +cape cod bay|1 +(noun)|Cape Cod Bay|bay +cape cod canal|1 +(noun)|Cape Cod Canal|canal +cape colony|1 +(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state|province +cape dagga|1 +(noun)|dagga|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb|herbaceous plant +cape fear|1 +(noun)|Cape Fear|cape|ness +cape fear river|1 +(noun)|Cape Fear River|river +cape flattery|1 +(noun)|Cape Flattery|cape|ness +cape forget-me-not|2 +(noun)|Anchusa riparia|anchusa +(noun)|Anchusa capensis|anchusa +cape girardeau|1 +(noun)|Cape Girardeau|town +cape gooseberry|1 +(noun)|purple ground cherry|Physalis peruviana|ground cherry|husk tomato +cape hatteras|1 +(noun)|Cape Hatteras|cape|ness|promontory|headland|foreland +cape horn|1 +(noun)|Cape Horn|cape|ness|promontory|headland|foreland +cape hunting dog|1 +(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog +cape hyacinth|1 +(noun)|summer hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth +cape jasmine|1 +(noun)|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia +cape jessamine|1 +(noun)|cape jasmine|Gardenia jasminoides|Gardenia augusta|gardenia +cape kafferboom|1 +(noun)|kaffir boom|Cape kafferboom|Erythrina caffra|coral tree|erythrina +cape kennedy|1 +(noun)|Cape Canaveral|Cape Kennedy|promontory|headland|foreland +cape lobster|1 +(noun)|Cape lobster|Homarus capensis|true lobster +cape marigold|1 +(noun)|sun marigold|star of the veldt|flower +cape may|1 +(noun)|Cape May|cape|ness +cape may warbler|1 +(noun)|Cape May warbler|Dendroica tigrina|New World warbler|wood warbler +cape of good hope|2 +(noun)|Cape of Good Hope|cape|ness +(noun)|Cape of Good Hope|state|province +cape of good hope province|1 +(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state|province +cape passero|1 +(noun)|Passero|Cape Passero|Passero Cape|naval battle +cape periwinkle|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +cape primrose|1 +(noun)|Cape primrose|streptocarpus +cape province|1 +(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state|province +cape sable|2 +(noun)|Cape Sable|cape|ness +(noun)|Cape Sable|promontory|headland|foreland +cape town|1 +(noun)|Cape Town|city|metropolis|urban center|port +cape trafalgar|1 +(noun)|Cape Trafalgar|cape|ness +cape tulip|1 +(noun)|Cape tulip|Haemanthus coccineus|blood lily +cape verde|1 +(noun)|Cape Verde|Republic of Cape Verde|country|state|land +cape verde escudo|1 +(noun)|Cape Verde escudo|escudo|Cape Verde monetary unit +cape verde islands|1 +(noun)|Cape Verde Islands|archipelago +cape verde monetary unit|1 +(noun)|Cape Verde monetary unit|monetary unit +cape yellowwood|1 +(noun)|African yellowwood|Podocarpus elongatus|conifer|coniferous tree +cape york|1 +(noun)|Cape York|cape|ness +cape york peninsula|1 +(noun)|Cape York Peninsula|peninsula +capek|1 +(noun)|Capek|Karel Capek|writer|author|dramatist|playwright +capelan|1 +(noun)|capelin|caplin|smelt +capelin|1 +(noun)|capelan|caplin|smelt +capeline bandage|1 +(noun)|bandage|patch +capella|2 +(noun)|Capella|giant star|giant +(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus +caper|7 +(noun)|shrub|bush +(noun)|pickle +(noun)|job|robbery +(noun)|antic|joke|prank|trick|put-on|diversion|recreation +(noun)|capriole|leap|leaping|spring|saltation|bound|bounce +(noun)|play|frolic|romp|gambol|diversion|recreation +(verb)|jump|leap|bound|spring +caper family|1 +(noun)|Capparidaceae|family Capparidaceae|dilleniid dicot family +caper sauce|1 +(noun)|sauce +caper spurge|1 +(noun)|myrtle spurge|mole plant|Euphorbia lathyris|spurge +caper tree|2 +(noun)|bay-leaved caper|Capparis flexuosa|caper +(noun)|Jamaica caper tree|Capparis cynophallophora|caper +capercaillie|1 +(noun)|capercailzie|horse of the wood|Tetrao urogallus|grouse +capercailzie|1 +(noun)|capercaillie|horse of the wood|Tetrao urogallus|grouse +capet|1 +(noun)|Capet|Hugh Capet|King of France +capetian|2 +(adj)|Capetian|dynasty +(noun)|Capetian|sovereign|crowned head|monarch +capetian dynasty|1 +(noun)|Capetian dynasty|dynasty +capeweed|1 +(noun)|cat's-ear|California dandelion|gosmore|Hypochaeris radicata|weed +capful|1 +(noun)|containerful +capibara|1 +(noun)|capybara|Hydrochoerus hydrochaeris|rodent|gnawer|gnawing animal +capillarity|1 +(noun)|capillary action|surface tension +capillary|4 +(adj)|body covering +(adj)|hairlike|thin +(noun)|capillary tube|capillary tubing|tube|tubing +(noun)|capillary vessel|blood vessel +capillary action|1 +(noun)|capillarity|surface tension +capillary artery|1 +(noun)|arteriole|arteriola|artery|arteria|arterial blood vessel +capillary bed|1 +(noun)|animal tissue +capillary fracture|1 +(noun)|hairline fracture|fracture|break +capillary tube|1 +(noun)|capillary|capillary tubing|tube|tubing +capillary tubing|1 +(noun)|capillary|capillary tube|tube|tubing +capillary vein|1 +(noun)|venule|venula|vein|vena|venous blood vessel +capillary vessel|1 +(noun)|capillary|blood vessel +capital|10 +(adj)|superior +(adj)|serious +(adj)|primary +(adj)|great|majuscule|uppercase +(noun)|working capital|assets +(noun)|assets +(noun)|seat +(noun)|capital letter|upper case|upper-case letter|majuscule|character|grapheme|graphic symbol +(noun)|Das Kapital|Capital|book +(noun)|chapiter|cap|top +capital account|2 +(noun)|account|accounting|account statement +(noun)|account|accounting|account statement +capital cost|1 +(noun)|cost of capital|opportunity cost +capital expenditure|1 +(noun)|cost +capital gain|1 +(noun)|financial gain +capital gains tax|1 +(noun)|tax|taxation|revenue enhancement +capital letter|1 +(noun)|capital|upper case|upper-case letter|majuscule|character|grapheme|graphic symbol +capital levy|1 +(noun)|tax|taxation|revenue enhancement +capital loss|1 +(noun)|financial loss +capital of afghanistan|1 +(noun)|Kabul|capital of Afghanistan|national capital +capital of alabama|1 +(noun)|Montgomery|capital of Alabama|state capital +capital of alaska|1 +(noun)|Juneau|capital of Alaska|state capital +capital of antigua and barbuda|1 +(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital +capital of argentina|1 +(noun)|Buenos Aires|capital of Argentina|national capital|port +capital of arizona|1 +(noun)|Phoenix|capital of Arizona|state capital +capital of arkansas|1 +(noun)|Little Rock|capital of Arkansas|state capital +capital of armenia|1 +(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital +capital of australia|1 +(noun)|Canberra|Australian capital|capital of Australia|national capital +capital of austria|1 +(noun)|Vienna|Austrian capital|capital of Austria|national capital +capital of azerbaijan|1 +(noun)|Baku|capital of Azerbaijan|capital|port +capital of bahrain|1 +(noun)|Manama|capital of Bahrain|national capital +capital of bangladesh|1 +(noun)|Dhaka|Dacca|capital of Bangladesh|national capital +capital of barbados|1 +(noun)|Bridgetown|capital of Barbados|capital|port +capital of belarus|1 +(noun)|Minsk|capital of Belarus|capital +capital of belgium|1 +(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital +capital of benin|1 +(noun)|Porto Novo|capital of Benin|national capital +capital of botswana|1 +(noun)|Gaborone|capital of Botswana|national capital +capital of brazil|1 +(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital +capital of burundi|1 +(noun)|Bujumbura|Usumbura|capital of Burundi|national capital +capital of california|1 +(noun)|Sacramento|capital of California|state capital +capital of cameroon|1 +(noun)|Yaounde|capital of Cameroon|national capital +capital of canada|1 +(noun)|Ottawa|Canadian capital|capital of Canada|national capital +capital of cape verde|1 +(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital +capital of central africa|1 +(noun)|Bangui|capital of Central Africa|national capital +capital of chad|1 +(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital +capital of chile|1 +(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital +capital of colombia|1 +(noun)|Bogota|capital of Colombia|national capital +capital of colorado|1 +(noun)|Denver|Mile-High City|capital of Colorado|state capital +capital of connecticut|1 +(noun)|Hartford|capital of Connecticut|state capital +capital of costa rica|1 +(noun)|San Jose|capital of Costa Rica|national capital +capital of cuba|1 +(noun)|Havana|capital of Cuba|Cuban capital|national capital +capital of cyprus|1 +(noun)|Nicosia|capital of Cyprus|national capital +capital of delaware|1 +(noun)|Dover|capital of Delaware|state capital +capital of djibouti|1 +(noun)|Djibouti|capital of Djibouti|national capital|port +capital of ecuador|1 +(noun)|Quito|capital of Ecuador|national capital +capital of egypt|1 +(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital|port +capital of estonia|1 +(noun)|Tallinn|Tallin|capital of Estonia|capital|port +capital of ethiopia|1 +(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital +capital of finland|1 +(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital|port +capital of florida|1 +(noun)|Tallahassee|capital of Florida|state capital +capital of france|1 +(noun)|Paris|City of Light|French capital|capital of France|national capital +capital of gabon|1 +(noun)|Libreville|capital of Gabon|national capital +capital of gambia|1 +(noun)|Banjul|capital of Gambia|national capital|port +capital of georgia|2 +(noun)|Atlanta|capital of Georgia|state capital +(noun)|Tbilisi|Tiflis|capital of Georgia|capital +capital of ghana|1 +(noun)|Accra|capital of Ghana|national capital +capital of greece|1 +(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital +capital of grenada|1 +(noun)|St. George's|capital of Grenada|national capital +capital of guatemala|1 +(noun)|Guatemala City|capital of Guatemala|national capital +capital of guinea|1 +(noun)|Conakry|Konakri|capital of Guinea|national capital|port +capital of guinea-bissau|1 +(noun)|Bissau|capital of Guinea-Bissau|national capital +capital of hawaii|1 +(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital|port +capital of hungary|1 +(noun)|Budapest|Hungarian capital|capital of Hungary|national capital +capital of iceland|1 +(noun)|Reykjavik|capital of Iceland|national capital|port +capital of idaho|1 +(noun)|Boise|capital of Idaho|state capital +capital of illinois|1 +(noun)|Springfield|capital of Illinois|state capital +capital of india|1 +(noun)|New Delhi|Indian capital|capital of India|national capital +capital of indiana|1 +(noun)|Indianapolis|capital of Indiana|state capital +capital of indonesia|1 +(noun)|Jakarta|Djakarta|capital of Indonesia|national capital +capital of iowa|1 +(noun)|Des Moines|capital of Iowa|state capital +capital of iran|1 +(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital +capital of iraq|1 +(noun)|Baghdad|Bagdad|capital of Iraq|national capital +capital of ireland|1 +(noun)|Dublin|Irish capital|capital of Ireland|national capital|port +capital of israel|1 +(noun)|Jerusalem|capital of Israel|national capital +capital of italy|1 +(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital +capital of jamaica|1 +(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital +capital of japan|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +capital of jordan|1 +(noun)|Amman|capital of Jordan|national capital +capital of kansas|1 +(noun)|Topeka|capital of Kansas|state capital +capital of kazakhstan|1 +(noun)|Astana|Akmola|capital of Kazakhstan|capital +capital of kentucky|1 +(noun)|Frankfort|capital of Kentucky|state capital +capital of kenya|1 +(noun)|Nairobi|capital of Kenya|national capital +capital of kuwait|1 +(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital +capital of kyrgyzstan|1 +(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital +capital of laos|1 +(noun)|Vientiane|Laotian capital|capital of Laos|national capital +capital of latvia|1 +(noun)|Riga|capital of Latvia|capital|port +capital of lebanon|1 +(noun)|Beirut|capital of Lebanon|national capital +capital of lesotho|1 +(noun)|Maseru|capital of Lesotho|national capital +capital of liberia|1 +(noun)|Monrovia|Liberian capital|capital of Liberia|national capital|port +capital of libya|1 +(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital +capital of liechtenstein|1 +(noun)|Vaduz|capital of Liechtenstein|national capital +capital of lithuania|1 +(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital +capital of louisiana|1 +(noun)|Baton Rouge|capital of Louisiana|state capital +capital of luxembourg|1 +(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital +capital of madagascar|1 +(noun)|Antananarivo|capital of Madagascar|national capital +capital of maine|1 +(noun)|Augusta|capital of Maine|state capital +capital of malawi|1 +(noun)|Lilongwe|capital of Malawi|national capital +capital of malaysia|1 +(noun)|Kuala Lumpur|Malaysian capital|capital of Malaysia|national capital +capital of malta|1 +(noun)|Valletta|Valetta|capital of Malta|national capital +capital of maryland|1 +(noun)|Annapolis|capital of Maryland|state capital +capital of massachusetts|1 +(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital +capital of mexico|1 +(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital +capital of michigan|1 +(noun)|Lansing|capital of Michigan|state capital +capital of minnesota|1 +(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital +capital of mississippi|1 +(noun)|Jackson|capital of Mississippi|state capital +capital of missouri|1 +(noun)|Jefferson City|capital of Missouri|state capital +capital of moldova|1 +(noun)|Kishinev|Chisinau|capital of Moldova|capital +capital of mongolia|1 +(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital +capital of montana|1 +(noun)|Helena|capital of Montana|state capital +capital of morocco|1 +(noun)|Rabat|capital of Morocco|national capital +capital of mozambique|1 +(noun)|Maputo|capital of Mozambique|national capital +capital of nebraska|1 +(noun)|Lincoln|capital of Nebraska|state capital +capital of nepal|1 +(noun)|Kathmandu|Katmandu|capital of Nepal|national capital +capital of nevada|1 +(noun)|Carson City|capital of Nevada|state capital +capital of new hampshire|1 +(noun)|Concord|capital of New Hampshire|state capital +capital of new jersey|1 +(noun)|Trenton|capital of New Jersey|state capital +capital of new mexico|1 +(noun)|Santa Fe|capital of New Mexico|state capital +capital of new york|1 +(noun)|Albany|capital of New York|state capital +capital of new zealand|1 +(noun)|Wellington|capital of New Zealand|national capital +capital of nicaragua|1 +(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital +capital of niger|1 +(noun)|Niamey|capital of Niger|national capital +capital of nigeria|1 +(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital +capital of north carolina|1 +(noun)|Raleigh|capital of North Carolina|state capital +capital of north dakota|1 +(noun)|Bismarck|capital of North Dakota|state capital +capital of north korea|1 +(noun)|Pyongyang|capital of North Korea|national capital +capital of northern ireland|1 +(noun)|Belfast|capital of Northern Ireland|capital +capital of norway|1 +(noun)|Oslo|Christiania|capital of Norway|national capital|port +capital of ohio|1 +(noun)|Columbus|capital of Ohio|state capital +capital of oklahoma|1 +(noun)|Oklahoma City|capital of Oklahoma|state capital +capital of oman|1 +(noun)|Muscat|Masqat|capital of Oman|national capital|port +capital of oregon|1 +(noun)|Salem|capital of Oregon|state capital +capital of pakistan|1 +(noun)|Islamabad|capital of Pakistan|national capital +capital of panama|1 +(noun)|Panama City|capital of Panama|Panamanian capital|national capital +capital of papua new guinea|1 +(noun)|Port Moresby|capital of Papua New Guinea|national capital +capital of paraguay|1 +(noun)|Asuncion|capital of Paraguay|national capital|port +capital of pennsylvania|1 +(noun)|Harrisburg|capital of Pennsylvania|state capital +capital of peru|1 +(noun)|Lima|capital of Peru|national capital +capital of poland|1 +(noun)|Warszawa|Warsaw|capital of Poland|national capital +capital of portugal|1 +(noun)|Lisbon|Lisboa|capital of Portugal|national capital|port +capital of qatar|1 +(noun)|Doha|Bida|El Beda|capital of Qatar|national capital|port +capital of red china|1 +(noun)|Beijing|Peking|Peiping|capital of Red China|national capital +capital of rhode island|1 +(noun)|Providence|capital of Rhode Island|state capital +capital of romania|1 +(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital +capital of rwanda|1 +(noun)|Kigali|capital of Rwanda|national capital +capital of san marino|1 +(noun)|San Marino|capital of San Marino|national capital +capital of saudi arabia|1 +(noun)|Riyadh|capital of Saudi Arabia|national capital +capital of senegal|1 +(noun)|Dakar|capital of Senegal|national capital|port +capital of seychelles|1 +(noun)|Victoria|capital of Seychelles|national capital|port +capital of sierra leone|1 +(noun)|Freetown|capital of Sierra Leone|national capital|port +capital of singapore|1 +(noun)|Singapore|capital of Singapore|national capital +capital of slovakia|1 +(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital +capital of somalia|1 +(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital|port +capital of south africa|1 +(noun)|Pretoria|capital of South Africa|national capital +capital of south carolina|1 +(noun)|Columbia|capital of South Carolina|state capital +capital of south dakota|1 +(noun)|Pierre|capital of South Dakota|state capital +capital of south korea|1 +(noun)|Seoul|capital of South Korea|national capital +capital of spain|1 +(noun)|Madrid|capital of Spain|Spanish capital|national capital +capital of sri lanka|1 +(noun)|Colombo|capital of Sri Lanka|national capital +capital of sudan|1 +(noun)|Khartoum|capital of Sudan|national capital +capital of suriname|1 +(noun)|Paramaribo|capital of Suriname|national capital|port +capital of swaziland|1 +(noun)|Mbabane|capital of Swaziland|national capital +capital of sweden|1 +(noun)|Stockholm|capital of Sweden|national capital +capital of switzerland|1 +(noun)|Bern|Berne|capital of Switzerland|national capital +capital of syria|1 +(noun)|Damascus|capital of Syria|national capital +capital of taiwan|1 +(noun)|Taipei|Taipeh|capital of Taiwan|national capital +capital of tajikistan|1 +(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital +capital of tanzania|1 +(noun)|Dar es Salaam|capital of Tanzania|national capital +capital of tennessee|1 +(noun)|Nashville|capital of Tennessee|state capital +capital of texas|1 +(noun)|Austin|capital of Texas|state capital +capital of thailand|1 +(noun)|Bangkok|capital of Thailand|Krung Thep|national capital|port +capital of the bahamas|1 +(noun)|Nassau|capital of the Bahamas|national capital +capital of the dominican republic|1 +(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital +capital of the netherlands|1 +(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital +capital of the philippines|1 +(noun)|Manila|capital of the Philippines|national capital +capital of the russian federation|1 +(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital +capital of the ukraine|1 +(noun)|Kyyiv|Kiev|capital of the Ukraine|capital +capital of the united kingdom|1 +(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital +capital of the united states|1 +(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital +capital of tibet|1 +(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital +capital of togo|1 +(noun)|Lome|capital of Togo|national capital +capital of trinidad and tobago|1 +(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital +capital of tunisia|1 +(noun)|Tunis|capital of Tunisia|national capital|port +capital of turkey|1 +(noun)|Ankara|Turkish capital|capital of Turkey|national capital +capital of turkmenistan|1 +(noun)|Ashkhabad|capital of Turkmenistan|capital +capital of uganda|1 +(noun)|Kampala|capital of Uganda|national capital +capital of uruguay|1 +(noun)|Montevideo|capital of Uruguay|national capital +capital of utah|1 +(noun)|Salt Lake City|capital of Utah|state capital +capital of uzbek|1 +(noun)|Tashkent|Taskent|capital of Uzbek|capital +capital of vanuatu|1 +(noun)|Port Vila|Vila|capital of Vanuatu|national capital +capital of venezuela|1 +(noun)|Caracas|capital of Venezuela|national capital +capital of vermont|1 +(noun)|Montpelier|capital of Vermont|state capital +capital of vietnam|1 +(noun)|Hanoi|capital of Vietnam|national capital +capital of virginia|1 +(noun)|Richmond|capital of Virginia|state capital +capital of washington|1 +(noun)|Olympia|capital of Washington|state capital +capital of west virginia|1 +(noun)|Charleston|capital of West Virginia|state capital +capital of western samoa|1 +(noun)|Apia|capital of Western Samoa|national capital +capital of wisconsin|1 +(noun)|Madison|capital of Wisconsin|state capital +capital of wyoming|1 +(noun)|Cheyenne|capital of Wyoming|state capital +capital of yugoslavia|1 +(noun)|Belgrade|Beograd|capital of Yugoslavia|national capital +capital of zambia|1 +(noun)|Lusaka|capital of Zambia|national capital +capital of zimbabwe|1 +(noun)|Harare|Salisbury|capital of Zimbabwe|national capital +capital offense|1 +(noun)|crime|law-breaking +capital punishment|1 +(noun)|execution|executing|death penalty|corporal punishment +capital ship|1 +(noun)|warship|war vessel|combat ship +capital stock|2 +(noun)|authorized shares|authorized stock|stock +(noun)|book value +capitalisation|4 +(noun)|capitalization|writing +(noun)|capitalization|estimate|estimation +(noun)|capitalization|exploitation|development +(noun)|capitalization|selling|merchandising|marketing +capitalise|6 +(verb)|capitalize|supply|provide|render|furnish +(verb)|capitalize|take advantage|profit|gain|benefit +(verb)|capitalize|write +(verb)|capitalize|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|capitalize|see|consider|reckon|view|regard +(verb)|capitalize|change|exchange|commute|convert +capitalism|1 +(noun)|capitalist economy|market economy|free enterprise|laissez-faire economy +capitalist|4 +(adj)|capitalistic|market economy|free enterprise|laissez-faire economy +(adj)|capitalistic |bourgeois|competitive|free-enterprise|private-enterprise|individualistic|laissez-faire +(noun)|conservative|conservativist +(noun)|person|individual|someone|somebody|mortal|human|soul +capitalist economy|1 +(noun)|capitalism|market economy|free enterprise|laissez-faire economy +capitalistic|2 +(adj)|capitalistic |capitalist|bourgeois|competitive|free-enterprise|private-enterprise|individualistic|laissez-faire +(adj)|capitalist|market economy|free enterprise|laissez-faire economy +capitalization|4 +(noun)|capitalisation|writing +(noun)|capitalisation|estimate|estimation +(noun)|capitalisation|exploitation|development +(noun)|capitalisation|selling|merchandising|marketing +capitalize|6 +(verb)|capitalise|take advantage|profit|gain|benefit +(verb)|capitalise|supply|provide|render|furnish +(verb)|capitalise|write +(verb)|capitalise|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|capitalise|see|consider|reckon|view|regard +(verb)|capitalise|change|exchange|commute|convert +capitate|2 +(adj)|round |circular +(noun)|capitate bone|os capitatum|carpal bone|carpal|wrist bone +capitate bone|1 +(noun)|capitate|os capitatum|carpal bone|carpal|wrist bone +capitation|1 +(noun)|tax|taxation|revenue enhancement +capitol|2 +(noun)|Capitol|Washington|federal government +(noun)|Capitol|Capitol Building|government building +capitol building|1 +(noun)|Capitol|Capitol Building|government building +capitol hill|1 +(noun)|Capitol Hill|the Hill|hill +capitol reef national park|1 +(noun)|Capitol Reef National Park|national park +capitonidae|1 +(noun)|Capitonidae|family Capitonidae|bird family +capitualtion|1 +(noun)|document|written document|papers +capitular|1 +(adj)|capitulary|assembly +capitulary|1 +(adj)|capitular|assembly +capitulate|1 +(verb)|surrender|give up +capitulation|2 +(noun)|summary +(noun)|fall|surrender|loss +capitulum|3 +(noun)|head|plant organ +(noun)|ear|spike|fruit +(noun)|crown|treetop|top +capiz|1 +(noun)|window oyster|windowpane oyster|Placuna placenta|oyster +caplin|1 +(noun)|capelin|capelan|smelt +capo|1 +(noun)|head|chief|top dog +capon|2 +(noun)|chicken|poulet|volaille +(noun)|chicken|Gallus gallus +capone|1 +(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster|mobster +caponise|1 +(verb)|caponize|emasculate|castrate|demasculinize|demasculinise +caponize|1 +(verb)|caponise|emasculate|castrate|demasculinize|demasculinise +caporetto|1 +(noun)|Caporetto|battle of Caporetto|pitched battle +capote|2 +(noun)|hooded coat|greatcoat|overcoat|topcoat +(noun)|hooded cloak|cloak +capoten|1 +(noun)|captopril|Capoten|ACE inhibitor|angiotensin converting enzyme inhibitor +cappadocia|1 +(noun)|Cappadocia|geographical area|geographic area|geographical region|geographic region +cappadocian|1 +(adj)|Cappadocian|geographical area|geographic area|geographical region|geographic region +capparidaceae|1 +(noun)|Capparidaceae|family Capparidaceae|caper family|dilleniid dicot family +capparis|1 +(noun)|Capparis|genus Capparis|dilleniid dicot genus +capparis arborea|1 +(noun)|native pomegranate|Capparis arborea|caper +capparis cynophallophora|1 +(noun)|caper tree|Jamaica caper tree|Capparis cynophallophora|caper +capparis flexuosa|1 +(noun)|caper tree|bay-leaved caper|Capparis flexuosa|caper +capparis mitchellii|1 +(noun)|native orange|Capparis mitchellii|caper +capparis spinosa|1 +(noun)|common caper|Capparis spinosa|caper +capped|2 +(adj)|crowned +(adj)|crowned +capped macaque|1 +(noun)|bonnet macaque|bonnet monkey|crown monkey|Macaca radiata|macaque +cappelletti|1 +(noun)|ravioli|pasta|alimentary paste +capra|2 +(noun)|Capra|Frank Capra|film maker|filmmaker|film producer|movie maker +(noun)|Capra|genus Capra|mammal genus +capra aegagrus|1 +(noun)|bezoar goat|pasang|Capra aegagrus|wild goat +capra falconeri|1 +(noun)|markhor|markhoor|Capra falconeri|wild goat +capra hircus|1 +(noun)|domestic goat|Capra hircus|goat|caprine animal +capra ibex|1 +(noun)|ibex|Capra ibex|wild goat +caprella|1 +(noun)|Caprella|genus Caprella|arthropod genus +capreolus|1 +(noun)|Capreolus|genus Capreolus|mammal genus +capreolus capreolus|1 +(noun)|roe deer|Capreolus capreolus|deer|cervid +capri|1 +(noun)|Capri|island +capric acid|1 +(noun)|decanoic acid|saturated fatty acid +capriccio|1 +(noun)|musical composition|opus|composition|piece|piece of music +caprice|1 +(noun)|impulse|whim|desire +capricious|2 +(adj)|freakish|unpredictable +(adj)|impulsive|whimsical|arbitrary +capriciously|1 +(adv)|freakishly +capriciousness|2 +(noun)|unpredictability|inconstancy|changefulness +(noun)|flightiness|arbitrariness|whimsicality|whimsy|whimsey|irresponsibility|irresponsibleness +capricorn|3 +(noun)|Capricorn|Goat|person|individual|someone|somebody|mortal|human|soul +(noun)|Capricornus|Capricorn|constellation +(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac|star sign|sign|mansion|house|planetary house +capricorn the goat|1 +(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac|star sign|sign|mansion|house|planetary house +capricornis|1 +(noun)|Capricornis|genus Capricornis|mammal genus +capricornus|1 +(noun)|Capricornus|Capricorn|constellation +caprifig|1 +(noun)|Ficus carica sylvestris|fig|common fig|common fig tree|Ficus carica +caprifoliaceae|1 +(noun)|Caprifoliaceae|family Caprifoliaceae|honeysuckle family|asterid dicot family +caprimulgid|1 +(noun)|goatsucker|nightjar|caprimulgiform bird +caprimulgidae|1 +(noun)|Caprimulgidae|family Caprimulgidae|bird family +caprimulgiform bird|1 +(noun)|bird +caprimulgiformes|1 +(noun)|Caprimulgiformes|order Caprimulgiformes|animal order +caprimulgus|1 +(noun)|Caprimulgus|genus Caprimulgus|bird genus +caprimulgus carolinensis|1 +(noun)|chuck-will's-widow|Caprimulgus carolinensis|goatsucker|nightjar|caprimulgid +caprimulgus europaeus|1 +(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker|nightjar|caprimulgid +caprimulgus vociferus|1 +(noun)|whippoorwill|Caprimulgus vociferus|goatsucker|nightjar|caprimulgid +caprine|1 +(adj)|bovid +caprine animal|1 +(noun)|goat|bovid +capriole|4 +(noun)|jump|jumping +(noun)|caper|leap|leaping|spring|saltation|bound|bounce +(verb)|jump|leap|bound|spring +(verb)|dance +caproic acid|1 +(noun)|hexanoic acid|saturated fatty acid +caproidae|1 +(noun)|Caproidae|family Caproidae|fish family +capromyidae|1 +(noun)|Capromyidae|family Capromyidae|mammal family +capros|1 +(noun)|Capros|genus Capros|fish genus +capros aper|1 +(noun)|boarfish|Capros aper|spiny-finned fish|acanthopterygian +caprylic acid|1 +(noun)|saturated fatty acid +capsaicin|1 +(noun)|chemical irritant +capsella|1 +(noun)|Capsella|genus Capsella|dilleniid dicot genus +capsella bursa-pastoris|1 +(noun)|shepherd's purse|shepherd's pouch|Capsella bursa-pastoris|crucifer|cruciferous plant +capsicum|1 +(noun)|pepper|capsicum pepper plant|shrub|bush +capsicum annuum cerasiforme|1 +(noun)|cherry pepper|Capsicum annuum cerasiforme|capsicum|pepper|capsicum pepper plant +capsicum annuum conoides|1 +(noun)|cone pepper|Capsicum annuum conoides|capsicum|pepper|capsicum pepper plant +capsicum annuum grossum|1 +(noun)|sweet pepper|bell pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +capsicum annuum longum|1 +(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +capsicum baccatum|1 +(noun)|bird pepper|Capsicum frutescens baccatum|Capsicum baccatum|capsicum|pepper|capsicum pepper plant +capsicum frutescens|1 +(noun)|tabasco pepper|hot pepper|tabasco plant|Capsicum frutescens|capsicum|pepper|capsicum pepper plant +capsicum frutescens baccatum|1 +(noun)|bird pepper|Capsicum frutescens baccatum|Capsicum baccatum|capsicum|pepper|capsicum pepper plant +capsicum pepper plant|1 +(noun)|capsicum|pepper|shrub|bush +capsid|2 +(noun)|mirid bug|mirid|leaf bug|plant bug +(noun)|protein +capsidae|1 +(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family +capsize|1 +(verb)|turtle|turn turtle|overturn|turn over|tip over|tump over +capsizing|1 +(noun)|shipwreck|wreck +capstan|1 +(noun)|winch|windlass +capstone|2 +(noun)|finishing touch|copestone|touch +(noun)|copestone|coping stone|stretcher|stone +capsula glomeruli|1 +(noun)|Bowman's capsule|glomerular capsule|membrane|tissue layer +capsular|2 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +(adj)|pericarp|seed vessel +capsulate|2 +(adj)|capsulated|enclosed +(verb)|capsule|capsulize|capsulise|envelop|enfold|enwrap|wrap|enclose +capsulated|1 +(adj)|capsulate|enclosed +capsule|9 +(noun)|container +(noun)|pill|lozenge|tablet|tab +(noun)|pericarp|seed vessel +(noun)|condensation|abridgement|abridgment|summary +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|space capsule|spacecraft|ballistic capsule|space vehicle +(noun)|ejection seat|ejector seat|seat +(verb)|capsulate|capsulize|capsulise|envelop|enfold|enwrap|wrap|enclose +(verb)|encapsulate|capsulize|capsulise|digest|condense|concentrate +capsulise|2 +(verb)|capsule|capsulate|capsulize|envelop|enfold|enwrap|wrap|enclose +(verb)|encapsulate|capsule|capsulize|digest|condense|concentrate +capsulize|2 +(verb)|capsule|capsulate|capsulise|envelop|enfold|enwrap|wrap|enclose +(verb)|encapsulate|capsule|capsulise|digest|condense|concentrate +captain|8 +(noun)|commissioned military officer +(noun)|skipper|commissioned naval officer +(noun)|police captain|police chief|policeman|police officer|officer +(noun)|master|sea captain|skipper|officer|ship's officer +(noun)|chieftain|leader +(noun)|senior pilot|pilot|airplane pilot +(noun)|headwaiter|maitre d'hotel|maitre d'|dining-room attendant|restaurant attendant +(verb)|head|lead +captain's chair|1 +(noun)|armchair +captain bligh|1 +(noun)|Bligh|William Bligh|Captain Bligh|admiral|full admiral +captain bob|1 +(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer|adventurer +captain cook|1 +(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator +captain hicks|1 +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +captain horatio hornblower|1 +(noun)|Horatio Hornblower|Captain Horatio Hornblower|fictional character|fictitious character|character +captain james cook|1 +(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator +captain john smith|1 +(noun)|Smith|John Smith|Captain John Smith|explorer|adventurer +captain kidd|1 +(noun)|Kidd|William Kidd|Captain Kidd|master|captain|sea captain|skipper +captaincy|1 +(noun)|captainship|position|post|berth|office|spot|billet|place|situation +captainship|1 +(noun)|captaincy|position|post|berth|office|spot|billet|place|situation +caption|4 +(noun)|exception +(noun)|subtitle|translation|interlingual rendition|rendering|version +(noun)|legend|title +(verb)|supply|provide|render|furnish +captious|1 +(adj)|faultfinding|critical +captivate|1 +(verb)|capture|enamour|trance|catch|becharm|enamor|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +captivated|2 +(adj)|charmed|loving +(adj)|beguiled|charmed|delighted|enthralled|entranced|enchanted +captivating|1 +(adj)|bewitching|enchanting|enthralling|entrancing|fascinating|attractive +captivatingly|1 +(adv)|bewitchingly|enchantingly|enthrallingly +captivation|2 +(noun)|fascination|enchantment|spell|trance +(noun)|enchantment|enthrallment|fascination|liking +captive|5 +(adj)|confined|imprisoned|jailed|unfree +(adj)|enraptured|rapt|moved +(noun)|prisoner|unfortunate|unfortunate person +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|emotional person +captive finance company|1 +(noun)|finance company +captivity|2 +(noun)|imprisonment|incarceration|immurement|confinement +(noun)|enslavement|subjugation|subjection +captopril|1 +(noun)|Capoten|ACE inhibitor|angiotensin converting enzyme inhibitor +captor|1 +(noun)|capturer|person|individual|someone|somebody|mortal|human|soul +capture|11 +(noun)|gaining control|seizure|acquiring|getting +(noun)|natural process|natural action|action|activity +(noun)|natural process|natural action|action|activity +(noun)|seizure|felony +(noun)|chess move +(verb)|represent|interpret +(verb)|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +(verb)|get|catch|seize|prehend|clutch +(verb)|change|alter|modify +(verb)|appropriate|seize|conquer|assume|usurp|seize|take over|arrogate +(verb)|catch|get|acquire +capturer|1 +(noun)|captor|person|individual|someone|somebody|mortal|human|soul +capuccino|1 +(noun)|capuccino coffee|coffee capuccino|coffee|java +capuccino coffee|1 +(noun)|capuccino|coffee capuccino|coffee|java +capuchin|2 +(noun)|cloak +(noun)|ringtail|Cebus capucinus|New World monkey|platyrrhine +capulin|2 +(noun)|capulin tree|Prunus capuli|cherry|cherry tree +(noun)|Mexican black cherry|cherry +capulin tree|1 +(noun)|capulin|Prunus capuli|cherry|cherry tree +caput|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|head|external body part +capybara|1 +(noun)|capibara|Hydrochoerus hydrochaeris|rodent|gnawer|gnawing animal +car|5 +(noun)|auto|automobile|machine|motorcar|motor vehicle|automotive vehicle +(noun)|railcar|railway car|railroad car|wheeled vehicle +(noun)|cable car|compartment +(noun)|gondola|compartment +(noun)|elevator car|compartment +car-ferry|1 +(noun)|ferry|ferryboat +car-mechanic|1 +(noun)|automobile mechanic|auto-mechanic|mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +car battery|1 +(noun)|automobile battery|lead-acid battery|lead-acid accumulator +car bomb|1 +(noun)|bomb +car boot sale|1 +(noun)|boot sale|sale|cut-rate sale|sales event +car care|1 +(noun)|care|maintenance|upkeep +car carrier|1 +(noun)|trailer +car company|1 +(noun)|auto company|company +car dealer|1 +(noun)|dealer +car door|1 +(noun)|door +car factory|1 +(noun)|automobile factory|auto factory|factory|mill|manufacturing plant|manufactory +car horn|1 +(noun)|automobile horn|motor horn|horn|hooter|alarm|warning device|alarm system +car insurance|1 +(noun)|automobile insurance|insurance +car loan|1 +(noun)|automobile loan|auto loan|personal loan|consumer loan +car maker|2 +(noun)|car manufacturer|carmaker|auto manufacturer|auto maker|automaker|manufacturer|maker|manufacturing business +(noun)| +car manufacturer|1 +(noun)|car maker|carmaker|auto manufacturer|auto maker|automaker|manufacturer|maker|manufacturing business +car mirror|1 +(noun)|mirror +car park|1 +(noun)|parking lot|park|parking area|lot +car part|1 +(noun)|auto part|component|constituent|element +car pool|1 +(noun)|set|circle|band|lot +car port|2 +(noun)|carport|garage +(noun)| +car race|1 +(noun)|automobile race|auto race|race +car racing|1 +(noun)|auto racing|racing +car rental|1 +(noun)|hire car|rent-a-car|self-drive|u-drive|you-drive|lease|rental|letting +car seat|1 +(noun)|seat +car sickness|1 +(noun)|motion sickness|kinetosis +car tire|1 +(noun)|automobile tire|auto tire|rubber tire|tire|tyre +car traffic|1 +(noun)|automobile traffic|vehicular traffic|vehicle traffic +car train|1 +(noun)|train|railroad train +car transporter|1 +(noun)|transporter|truck|motortruck +car wheel|1 +(noun)|wheel +car window|1 +(noun)|window +carabao|1 +(noun)|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis +carabid beetle|1 +(noun)|ground beetle|beetle +carabidae|1 +(noun)|Carabidae|family Carabidae|arthropod family +carabineer|1 +(noun)|carabinier|rifleman +carabiner|1 +(noun)|karabiner|snap ring|hoop|ring|fastener|fastening|holdfast|fixing +carabinier|1 +(noun)|carabineer|rifleman +caracal|1 +(noun)|desert lynx|Lynx caracal|lynx|catamount +caracara|1 +(noun)|falcon +caracas|1 +(noun)|Caracas|capital of Venezuela|national capital +carack|1 +(noun)|carrack|galleon +caracole|1 +(verb)|turn +caracolito|1 +(noun)|Ruptiliocarpon caracolito|tree +caracul|1 +(noun)|broadtail|karakul|domestic sheep|Ovis aries +carafate|1 +(noun)|sucralfate|Carafate|medicine|medication|medicament|medicinal drug +carafe|1 +(noun)|decanter|bottle +caragana|1 +(noun)|pea tree|shrub|bush +caragana arborescens|1 +(noun)|Siberian pea tree|Caragana arborescens|pea tree|caragana +caragana sinica|1 +(noun)|Chinese pea tree|Caragana sinica|pea tree|caragana +carageen|1 +(noun)|Irish moss|carrageen|carragheen|Chondrus crispus|red algae +carambola|2 +(noun)|carambola tree|Averrhoa carambola|fruit tree +(noun)|star fruit|edible fruit +carambola tree|1 +(noun)|carambola|Averrhoa carambola|fruit tree +caramel|4 +(adj)|caramel brown|chromatic +(noun)|candy +(noun)|caramelized sugar|sugar|refined sugar +(noun)|yellowish brown|raw sienna|buff|caramel brown|brown|brownness +caramel apple|1 +(noun)|candied apple|candy apple|taffy apple|toffee apple|sweet|confection|confectionery +caramel brown|2 +(adj)|caramel|chromatic +(noun)|yellowish brown|raw sienna|buff|caramel|brown|brownness +caramel bun|1 +(noun)|honey bun|sticky bun|schnecken|sweet roll|coffee roll +caramelise|2 +(verb)|caramelize|convert +(verb)|caramelize|convert +caramelize|2 +(verb)|caramelise|convert +(verb)|caramelise|convert +caramelized sugar|1 +(noun)|caramel|sugar|refined sugar +carancha|1 +(noun)|Polyborus plancus|caracara +caranda|1 +(noun)|caranday|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm +caranda palm|1 +(noun)|caranday|caranda|wax palm|Copernicia australis|Copernicia alba|fan palm +caranday|1 +(noun)|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm +carangid|2 +(adj)|fish family +(noun)|carangid fish|percoid fish|percoid|percoidean +carangid fish|1 +(noun)|carangid|percoid fish|percoid|percoidean +carangidae|1 +(noun)|Carangidae|family Carangidae|fish family +caranx|1 +(noun)|Caranx|genus Caranx|fish genus +caranx bartholomaei|1 +(noun)|yellow jack|Caranx bartholomaei|jack +caranx crysos|1 +(noun)|runner|blue runner|Caranx crysos|jack +caranx hippos|1 +(noun)|crevalle jack|jack crevalle|Caranx hippos|jack +carapace|1 +(noun)|shell|cuticle|exoskeleton +carapidae|1 +(noun)|Carapidae|family Carapidae|fish family +carassius|1 +(noun)|Carassius|genus Carassius|fish genus +carassius auratus|1 +(noun)|goldfish|Carassius auratus|cyprinid|cyprinid fish +carassius carassius|1 +(noun)|crucian carp|Carassius carassius|Carassius vulgaris|cyprinid|cyprinid fish +carassius vulgaris|1 +(noun)|crucian carp|Carassius carassius|Carassius vulgaris|cyprinid|cyprinid fish +carat|2 +(noun)|metric weight unit|weight unit +(noun)|Karat|unit of measurement|unit +caravaggio|1 +(noun)|Caravaggio|Michelangelo Merisi da Caravaggio|old master +caravan|2 +(noun)|train|wagon train|procession +(noun)|van|camper|camping bus|motor home +caravan inn|1 +(noun)|caravansary|caravanserai|khan|hostel|hostelry|inn|lodge +caravanning|1 +(noun)|vacationing +caravansary|1 +(noun)|caravanserai|khan|caravan inn|hostel|hostelry|inn|lodge +caravanserai|1 +(noun)|caravansary|khan|caravan inn|hostel|hostelry|inn|lodge +caraway|2 +(noun)|Carum carvi|herb|herbaceous plant +(noun)|herb +caraway seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +caraway seed bread|1 +(noun)|bread|breadstuff|staff of life +carbamate|1 +(noun)|salt +carbamic acid|1 +(noun)|acid +carbamide|1 +(noun)|urea|organic compound +carbide|1 +(noun)|inorganic compound +carbine|1 +(noun)|rifle +carbo loading|1 +(noun)|carbohydrate loading|diet +carbocyclic|1 +(adj)|chemical element|element +carbohydrate|1 +(noun)|saccharide|sugar|macromolecule|supermolecule +carbohydrate loading|1 +(noun)|carbo loading|diet +carbolated|1 +(adj)|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +carbolic acid|1 +(noun)|phenol|hydroxybenzene|oxybenzene|phenylic acid|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +carboloy|1 +(noun)|Carboloy|alloy|metal +carbomycin|1 +(noun)|antibiotic|antibiotic drug +carbon|3 +(noun)|C|atomic number 6|chemical element|element +(noun)|carbon paper|paper +(noun)|carbon copy|copy +carbon-14 dating|1 +(noun)|radiocarbon dating|carbon dating|dating|geological dating +carbon 14|1 +(noun)|radiocarbon|carbon|C|atomic number 6 +carbon arc|1 +(noun)|carbon arc lamp|arc lamp|arc light +carbon arc lamp|1 +(noun)|carbon arc|arc lamp|arc light +carbon atom|1 +(noun)|atom +carbon black|1 +(noun)|lampblack|soot|smut|carbon|C|atomic number 6 +carbon copy|1 +(noun)|carbon|copy +carbon cycle|2 +(noun)|organic process|biological process +(noun)|thermonuclear reaction +carbon dating|1 +(noun)|radiocarbon dating|carbon-14 dating|dating|geological dating +carbon dichloride|1 +(noun)|tetrachlorethylene|tetrachloroethylene|ethylene tetrachloride|vermifuge|anthelmintic|anthelminthic|helminthic +carbon dioxide|1 +(noun)|CO2|carbonic acid gas|dioxide|greenhouse gas|greenhouse emission +carbon dioxide acidosis|1 +(noun)|respiratory acidosis|acidosis +carbon disulfide|1 +(noun)|compound|chemical compound +carbon monoxide|1 +(noun)|carbon monoxide gas|CO|monoxide +carbon monoxide gas|1 +(noun)|carbon monoxide|CO|monoxide +carbon monoxide poisoning|1 +(noun)|poisoning|toxic condition|intoxication +carbon nanotube|1 +(noun)|nanotube|fullerene +carbon paper|1 +(noun)|carbon|paper +carbon process|1 +(noun)|printing|printing process +carbon steel|1 +(noun)|steel +carbon tet|1 +(noun)|carbon tetrachloride|tetrachloromethane|perchloromethane|solvent|dissolvent|dissolver|dissolving agent|resolvent|tetrachloride +carbon tetrachloride|1 +(noun)|carbon tet|tetrachloromethane|perchloromethane|solvent|dissolvent|dissolver|dissolving agent|resolvent|tetrachloride +carbon tetrahalide|1 +(noun)|chemical +carbonaceous|1 +(adj)|carbonous|carbonic|carboniferous|chemical element|element +carbonado|2 +(noun)|black diamond|diamond|adamant +(noun)|meat +carbonara|1 +(noun)|spaghetti sauce|pasta sauce +carbonate|3 +(noun)|salt +(verb)|process|treat +(verb)|change +carbonated|1 +(adj)|effervescent +carbonated water|1 +(noun)|soda water|club soda|seltzer|sparkling water|drinking water +carbonation|1 +(noun)|permeation|pervasion|suffusion +carbondale|1 +(noun)|Carbondale|town +carbonic|1 +(adj)|carbonaceous|carbonous|carboniferous|chemical element|element +carbonic acid|1 +(noun)|acid +carbonic acid gas|1 +(noun)|carbon dioxide|CO2|dioxide|greenhouse gas|greenhouse emission +carboniferous|3 +(adj)|period|geological period +(adj)|carbonaceous|carbonous|carbonic|chemical element|element +(noun)|Carboniferous|Carboniferous period|period|geological period +carboniferous period|1 +(noun)|Carboniferous|Carboniferous period|period|geological period +carbonisation|1 +(noun)|carbonization|destructive distillation +carbonise|2 +(verb)|carbonize|carburize|carburise|change state|turn +(verb)|carbonize|change state|turn +carbonization|1 +(noun)|carbonisation|destructive distillation +carbonize|2 +(verb)|carbonise|carburize|carburise|change state|turn +(verb)|carbonise|change state|turn +carbonized|1 +(adj)|change state|turn +carbonnade flamande|1 +(noun)|Belgian beef stew|dish +carbonous|1 +(adj)|carbonaceous|carbonic|carboniferous|chemical element|element +carbonyl|2 +(adj)|carbonylic|group|radical|chemical group +(noun)|compound|chemical compound +carbonyl group|1 +(noun)|group|radical|chemical group +carbonylic|1 +(adj)|carbonyl|group|radical|chemical group +carborundum|1 +(noun)|abrasive|abradant|abrasive material +carboxyl|2 +(adj)|carboxylic|group|radical|chemical group +(noun)|carboxyl group|group|radical|chemical group +carboxyl group|1 +(noun)|carboxyl|group|radical|chemical group +carboxylate|1 +(verb)|process|treat +carboxylic|1 +(adj)|carboxyl|group|radical|chemical group +carboxylic acid|1 +(noun)|acid +carboxymethyl cellulose|1 +(noun)|cellulose +carboy|1 +(noun)|bottle +carbuncle|2 +(noun)|garnet +(noun)|staphylococcal infection +carbuncled|2 +(adj)|carbuncular|unhealthy +(adj)|adorned |decorated +carbuncular|1 +(adj)|carbuncled|unhealthy +carburet|1 +(verb)|compound|combine +carburetor|1 +(noun)|carburettor|mechanical device +carburettor|1 +(noun)|carburetor|mechanical device +carburise|1 +(verb)|carbonize|carbonise|carburize|change state|turn +carburize|1 +(verb)|carbonize|carbonise|carburise|change state|turn +carcajou|1 +(noun)|wolverine|skunk bear|Gulo luscus|musteline mammal|mustelid|musteline +carcase|1 +(noun)|carcass|body|dead body +carcass|1 +(noun)|carcase|body|dead body +carcharhinidae|1 +(noun)|Carcharhinidae|family Carcharhinidae|fish family +carcharhinus|1 +(noun)|Carcharhinus|genus Carcharhinus|fish genus +carcharhinus leucas|1 +(noun)|bull shark|cub shark|Carcharhinus leucas|requiem shark +carcharhinus limbatus|1 +(noun)|blacktip shark|sandbar shark|Carcharhinus limbatus|requiem shark +carcharhinus obscurus|1 +(noun)|dusky shark|Carcharhinus obscurus|requiem shark +carcharhinus plumbeus|1 +(noun)|sandbar shark|Carcharhinus plumbeus|requiem shark +carcharias|1 +(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus +carcharias taurus|1 +(noun)|sand tiger|sand shark|Carcharias taurus|Odontaspis taurus|shark +carchariidae|1 +(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family +carcharinus longimanus|1 +(noun)|whitetip shark|oceanic whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark +carcharodon|1 +(noun)|Carcharodon|genus Carcharodon|fish genus +carcharodon carcharias|1 +(noun)|great white shark|white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark +carcinogen|1 +(noun)|substance|matter +carcinogenic|1 +(adj)|cancer|malignant neoplastic disease +carcinoid|1 +(noun)|tumor|tumour|neoplasm +carcinoma|1 +(noun)|cancer|malignant neoplastic disease +carcinoma in situ|1 +(noun)|preinvasive cancer|carcinoma +carcinomatous|1 +(adj)|cancer|malignant neoplastic disease +carcinomatous myopathy|1 +(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|disease of the neuromuscular junction +carcinosarcoma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +card|13 +(noun)|paper +(noun)|identity card|positive identification +(noun)|correspondence +(noun)|cardboard|composition board +(noun)|wag|wit|humorist|humourist +(noun)|poster|posting|placard|notice|bill|sign +(noun)|calling card|visiting card|greeting|salutation +(noun)|scorecard|record|record book|book +(noun)|menu|bill of fare|carte du jour|carte|bill +(noun)|batting order|lineup|roll|roster +(noun)|circuit board|circuit card|board|printed circuit +(verb)|tease|separate +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +card-house|2 +(noun)|house of cards|cardhouse|cardcastle|structure|construction +(noun)| +card-playing|1 +(adj)|dissipated|betting|gambling|sporting|indulgent +card catalog|1 +(noun)|card catalogue|library catalog|library catalogue +card catalogue|1 +(noun)|card catalog|library catalog|library catalogue +card game|1 +(noun)|cards|game +card player|1 +(noun)|player|participant +card shark|1 +(noun)|cardsharp|card sharp|cardsharper|card sharper|card player|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +card sharp|2 +(noun)|cardsharp|cardsharper|card sharper|card shark|card player|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +(noun)| +card sharper|2 +(noun)|cardsharp|card sharp|cardsharper|card shark|card player|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +(noun)| +card table|2 +(noun)|table +(noun)|table +card trick|1 +(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|illusion|deception +cardamine|1 +(noun)|Cardamine|genus Cardamine|dilleniid dicot genus +cardamine bulbifera|1 +(noun)|coral-root bittercress|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +cardamine bulbosa|1 +(noun)|spring cress|Cardamine bulbosa|bittercress|bitter cress +cardamine diphylla|1 +(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +cardamine douglasii|1 +(noun)|purple cress|Cardamine douglasii|bittercress|bitter cress +cardamine pratensis|1 +(noun)|lady's smock|cuckooflower|cuckoo flower|meadow cress|Cardamine pratensis|bittercress|bitter cress +cardamine rotundifolia|1 +(noun)|American watercress|mountain watercress|Cardamine rotundifolia|watercress +cardamom|2 +(noun)|cardamon|Elettaria cardamomum|herb|herbaceous plant +(noun)|cardamon|cardamum|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +cardamon|2 +(noun)|cardamom|Elettaria cardamomum|herb|herbaceous plant +(noun)|cardamom|cardamum|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +cardamum|1 +(noun)|cardamom|cardamon|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +cardboard|3 +(adj)|flimsy|inferior +(adj)|unlifelike|artificial |unreal +(noun)|composition board|paper|packing material|packing|wadding +cardcase|1 +(noun)|case +cardcastle|1 +(noun)|house of cards|cardhouse|card-house|structure|construction +cardhouse|1 +(noun)|house of cards|card-house|cardcastle|structure|construction +cardia|1 +(noun)|orifice|opening|porta +cardiac|1 +(adj)|internal organ|viscus +cardiac arrest|1 +(noun)|asystole|cardiopulmonary arrest|pathology +cardiac arrhythmia|1 +(noun)|arrhythmia|heart disease|heart condition|cardiopathy +cardiac cycle|1 +(noun)|cycle|oscillation +cardiac glucoside|1 +(noun)|cardiac glycoside|steroid +cardiac glycoside|1 +(noun)|cardiac glucoside|steroid +cardiac insufficiency|1 +(noun)|coronary insufficiency|insufficiency +cardiac massage|1 +(noun)|heart massage|emergency procedure|massage +cardiac monitor|1 +(noun)|heart monitor|monitor +cardiac murmur|1 +(noun)|heart murmur|murmur|symptom +cardiac muscle|1 +(noun)|heart muscle|muscle|muscular tissue +cardiac output|1 +(noun)|flow|flow rate|rate of flow +cardiac pacemaker|1 +(noun)|pacemaker|sinoatrial node|SA node|cardiac muscle|heart muscle +cardiac plexus|1 +(noun)|plexus cardiacus|nerve plexus +cardiac resuscitation|1 +(noun)|cardiopulmonary resuscitation|CPR|mouth-to-mouth resuscitation|kiss of life|resuscitation|emergency procedure +cardiac rhythm|1 +(noun)|heart rhythm|rhythm|regular recurrence +cardiac sphincter|1 +(noun)|physiological sphincter +cardiac tamponade|1 +(noun)|tamponade|tamponage +cardiac valve|1 +(noun)|heart valve|valve +cardiff|1 +(noun)|Cardiff|capital +cardigan|2 +(noun)|sweater +(noun)|Cardigan|Cardigan Welsh corgi|corgi|Welsh corgi +cardigan welsh corgi|1 +(noun)|Cardigan|Cardigan Welsh corgi|corgi|Welsh corgi +cardiidae|1 +(noun)|Cardiidae|family Cardiidae|mollusk family +cardinal|6 +(adj)|central|fundamental|key|primal|important |of import +(adj)|cardinal |zero|0|one|1|i|ane|two|2|ii|three|3|iii|four|4|iv|five|5|v|six|6|vi|half dozen|half a dozen|seven|7|vii|eight|8|viii|nine|9|ix|ten|10|x|eleven|11|xi|twelve|12|xii|dozen|thirteen|13|xiii|fourteen|14|xiv|fifteen|15|xv|sixteen|16|xvi|seventeen|17|xvii|eighteen|18|xviii|nineteen|19|xix|twenty|20|xx|twenty-one|21|xxi|twenty-two|22|xxii|twenty-three|23|xxiii|twenty-four|24|xxiv|twenty-five|25|xxv|twenty-six|26|xxvi|twenty-seven|27|xxvii|twenty-eight|28|xxviii|twenty-nine|29|xxix|thirty|30|xxx|thirty-one|31|xxxi|thirty-two|32|xxxii|thirty-three|33|xxxiii|thirty-four|34|xxxiv|thirty-five|35|xxxv|thirty-six|36|xxxvi|thirty-seven|37|xxxvii|thirty-eight|38|xxxviii|thirty-nine|39|ixl|forty|40|xl|twoscore|forty-one|41|xli|forty-two|42|xlii|forty-three|43|xliii|forty-four|44|xliv|forty-five|45|xlv|forty-six|46|xlvi|forty-seven|47|xlvii|forty-eight|48|xlviii|forty-nine|49|il|fifty|50|l|fifty-one|51|li|fifty-two|52|lii|fifty-three|53|liii|fifty-four|54|liv|fifty-five|55|lv|fifty-six|56|lvi|fifty-seven|57|lvii|fifty-eight|58|lviii|fifty-nine|59|ilx|sixty|60|lx|threescore|sixty-one|61|lxi|sixty-two|62|lxii|sixty-three|63|lxiii|sixty-four|64|lxiv|sixty-five|65|lxv|sixty-six|66|lxvi|sixty-seven|67|lxvii|sixty-eight|68|lxviii|sixty-nine|69|ilxx|seventy|70|lxx|seventy-one|71|lxxi|seventy-two|72|lxxii|seventy-three|73|lxxiii|seventy-four|74|lxxiv|seventy-five|75|lxxv|seventy-six|76|lxxvi|seventy-seven|77|lxxvii|seventy-eight|78|lxxviii|seventy-nine|79|ilxxx|eighty|80|lxxx|fourscore|eighty-one|81|lxxxi|eighty-two|82|lxxxii|eighty-three|83|lxxxiii|eighty-four|84|lxxxiv|eighty-five|85|lxxxv|eighty-six|86|lxxxvi|eighty-seven|87|lxxxvii|eighty-eight|88|lxxxviii|eighty-nine|89|ixc|ninety|90|xc|ninety-one|91|xci|ninety-two|92|xcii|ninety-three|93|xciii|ninety-four|94|xciv|ninety-five|95|xcv|ninety-six|96|xcvi|ninety-seven|97|xcvii|ninety-eight|98|xcviii|ninety-nine|99|ic|hundred|a hundred|one hundred|100|c|hundred and one|a hundred and one|one hundred one|101|ci|one hundred five|105|cv|one hundred ten|110|cx|one hundred fifteen|115|cxv|one hundred twenty|120|cxx|one hundred twenty-five|125|cxxv|one hundred thirty|130|cxxx|one hundred thirty-five|135|cxxxv|one hundred forty|140|cxl|one hundred forty-five|145|cxlv|one hundred fifty|150|cl|one hundred fifty-five|155|clv|one hundred sixty|160|clx|one hundred sixty-five|165|clxv|one hundred seventy|170|clxx|one hundred seventy-five|175|clxxv|one hundred eighty|180|clxxx|one hundred ninety|190|xcl|two hundred|200|cc|three hundred|300|ccc|four hundred|400|cd|five hundred|500|d|thousand|a thousand|one thousand|1000|m|k|ten thousand|hundred thousand|a hundred thousand|million|a million|billion|a billion|billion|a billion|trillion|a trillion|trillion|a trillion|zillion|a zillion +(noun)|bishop +(noun)|cardinal number|number +(noun)|carmine|red|redness +(noun)|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch +cardinal bellarmine|1 +(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal|theologian|theologist|theologizer|theologiser +cardinal compass point|1 +(noun)|compass point|point +cardinal flower|1 +(noun)|Indian pink|Lobelia cardinalis|lobelia +cardinal grosbeak|1 +(noun)|cardinal|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch +cardinal newman|1 +(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest|hierarch|high priest|prelate|primate|theologian|theologist|theologizer|theologiser +cardinal number|1 +(noun)|cardinal|number +cardinal richelieu|1 +(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +cardinal tetra|1 +(noun)|Paracheirodon axelrodi|characin|characin fish|characid +cardinal vein|1 +(noun)|vein|vena|venous blood vessel +cardinal virtue|1 +(noun)|virtue +cardinalate|1 +(noun)|clergy +cardinalfish|1 +(noun)|percoid fish|percoid|percoidean +cardinalis cardinalis|1 +(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch +cardinalship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +cardiogenic shock|1 +(noun)|shock +cardiogram|1 +(noun)|electrocardiogram|EKG|ECG|graph|graphical record +cardiograph|2 +(noun)|electrocardiograph|medical instrument +(noun)|ballistocardiograph|medical instrument +cardiographic|1 +(adj)|medical instrument +cardiography|1 +(noun)|electrocardiography|diagnostic procedure|diagnostic technique +cardioid|1 +(noun)|epicycloid +cardiologic|1 +(adj)|medicine|medical specialty +cardiologist|1 +(noun)|heart specialist|heart surgeon|specialist|medical specialist +cardiology|1 +(noun)|medicine|medical specialty +cardiomegaly|1 +(noun)|megalocardia|megacardia|enlarged heart|symptom +cardiomyopathy|1 +(noun)|myocardiopathy|heart disease|heart condition|cardiopathy +cardiopathy|1 +(noun)|heart disease|heart condition|cardiovascular disease +cardiopulmonary|1 +(adj)|cardiorespiratory|internal organ|viscus|respiratory organ +cardiopulmonary arrest|1 +(noun)|asystole|cardiac arrest|pathology +cardiopulmonary exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +cardiopulmonary resuscitation|1 +(noun)|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|kiss of life|resuscitation|emergency procedure +cardiorespiratory|1 +(adj)|cardiopulmonary|internal organ|viscus|metabolism|metabolic process|metastasis +cardiospasm|1 +(noun)|spasm +cardiospermum|1 +(noun)|Cardiospermum|genus Cardiospermum|dicot genus|magnoliopsid genus +cardiospermum grandiflorum|1 +(noun)|heartseed|Cardiospermum grandiflorum|soapberry vine +cardiospermum halicacabum|1 +(noun)|balloon vine|heart pea|Cardiospermum halicacabum|soapberry vine +cardiovascular|1 +(adj)|vessel|vas +cardiovascular disease|1 +(noun)|disorder|upset +cardiovascular system|1 +(noun)|circulatory system|vascular system +carditis|1 +(noun)|inflammation|redness|rubor +cardium|1 +(noun)|Cardium|genus Cardium|mollusk genus +cardium edule|1 +(noun)|edible cockle|Cardium edule|cockle +cardizem|1 +(noun)|diltiazem|Cardizem|calcium blocker|calcium-channel blocker +cardoon|2 +(noun)|Cynara cardunculus|vegetable +(noun)|vegetable|veggie +cardroom|1 +(noun)|room +cards|12 +(noun)|card game|game +(noun)|card|paper +(noun)|card|identity card|positive identification +(noun)|card|correspondence +(noun)|card|cardboard|composition board +(noun)|wag|wit|card|humorist|humourist +(noun)|poster|posting|placard|notice|bill|card|sign +(noun)|calling card|visiting card|card|greeting|salutation +(noun)|card|scorecard|record|record book|book +(noun)|menu|bill of fare|card|carte du jour|carte|bill +(noun)|batting order|card|lineup|roll|roster +(noun)|circuit board|circuit card|board|card|printed circuit +cardsharp|1 +(noun)|card sharp|cardsharper|card sharper|card shark|card player|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +cardsharper|1 +(noun)|cardsharp|card sharp|card sharper|card shark|card player|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +carducci|1 +(noun)|Carducci|Giosue Carducci|poet +carduelinae|1 +(noun)|Carduelinae|subfamily Carduelinae|bird family +carduelis|1 +(noun)|Carduelis|genus Carduelis|bird genus +carduelis cannabina|1 +(noun)|linnet|lintwhite|Carduelis cannabina|finch +carduelis carduelis|1 +(noun)|goldfinch|Carduelis carduelis|finch +carduelis cucullata|1 +(noun)|red siskin|Carduelis cucullata|finch +carduelis flammea|1 +(noun)|redpoll|Carduelis flammea|finch +carduelis hornemanni|1 +(noun)|redpoll|Carduelis hornemanni|finch +carduelis spinus|1 +(noun)|siskin|Carduelis spinus|finch +carduus|1 +(noun)|Carduus|genus Carduus|asterid dicot genus +carduus crispus|1 +(noun)|welted thistle|Carduus crispus|thistle +carduus nutans|1 +(noun)|musk thistle|nodding thistle|Carduus nutans|thistle +care|11 +(noun)|attention|aid|tending|work +(noun)|caution|precaution|forethought|judiciousness +(noun)|concern|fear|anxiety +(noun)|predicament|quandary|plight +(noun)|charge|tutelage|guardianship|protection +(noun)|maintenance|upkeep|repair|fix|fixing|fixture|mend|mending|reparation +(verb)|feel for|pity|compassionate|condole with|sympathize with|care for +(verb)|give care|help|assist|aid +(verb)|wish|like|desire|want +(verb)|manage|deal|handle|control|command +(verb)|worry|mind +care-laden|1 +(adj)|heavy-laden|troubled +care a hang|1 +(verb)|give a hoot|give a hang|give a damn +care delivery|1 +(noun)|healthcare delivery|health care delivery|provision|supply|supplying +care for|3 +(verb)|like +(verb)|cherish|hold dear|treasure|love +(verb)|treat +cared-for|1 +(adj)|cared-for |attended|tended to +careen|3 +(noun)|rock|sway|tilt|lurch|pitch|pitching +(verb)|stagger|reel|keel|lurch|swag|walk +(verb)|wobble|shift|tilt|move +career|3 +(noun)|calling|vocation|occupation|business|job|line of work|line +(noun)|life history|progress|progression|procession|advance|advancement|forward motion|onward motion +(verb)|travel|go|move|locomote +career counseling|1 +(noun)|guidance|counsel|counseling|counselling|direction +career girl|1 +(noun)|careerist +career man|1 +(noun)|careerist +careerism|1 +(noun)|practice|pattern +careerist|1 +(noun)|professional|professional person +carefree|2 +(adj)|unworried|untroubled +(adj)|devil-may-care|freewheeling|happy-go-lucky|harum-scarum|slaphappy|irresponsible +carefreeness|2 +(noun)|insouciance|lightheartedness|lightsomeness|cheerfulness|blitheness +(noun)|irresponsibility|irresponsibleness +careful|5 +(adj)|careful |blow-by-blow|cautious|certain|sure|close|conscientious|painstaking|scrupulous|detailed|elaborate|elaborated|minute|narrow|overcareful|too-careful|particular|protective|studious|thorough|cautious|diligent|prudent +(adj)|heedful|mindful |aware +(adj)|deliberate|measured|unhurried +(adj)|troubled +(adj)|thrifty|provident +carefully|1 +(adv)|cautiously|with kid gloves +carefulness|2 +(noun)|caution|cautiousness|attentiveness +(noun)|attentiveness +caregiver|2 +(noun)|health professional|health care provider|professional|professional person +(noun)|adult|grownup +careless|4 +(adj)|careless |casual|cursory|passing|perfunctory|haphazard|slapdash|slipshod|sloppy|heedless|reckless|negligent|offhand|offhanded|incautious|imprudent|inattentive|incautious|negligent|superficial|unconcerned +(adj)|artless +(adj)|thoughtless|regardless|heedless |thoughtless|unheeding +(adj)|inconsiderate +carelessly|3 +(adv)|heedlessly +(adv)|incautiously +(adv)|rakishly|raffishly +carelessness|2 +(noun)|attentiveness +(noun)|negligence|neglect|nonperformance|nonaccomplishment|nonachievement +carelian|2 +(noun)|Karelian|Carelian|Russian +(noun)|Karelian|Carelian|Baltic-Finnic +caress|2 +(noun)|stroke|stroking +(verb)|touch +caressing|2 +(adj)|caressive|loving +(noun)|cuddling|fondling|hugging|kissing|necking|petting|smooching|snuggling|foreplay|arousal|stimulation +caressive|1 +(adj)|caressing|loving +caret|1 +(noun)|mark +caretaker|2 +(noun)|custodian|keeper|steward +(noun)|official|functionary +caretta|1 +(noun)|Caretta|genus Caretta|reptile genus +caretta caretta|1 +(noun)|loggerhead|loggerhead turtle|Caretta caretta|sea turtle|marine turtle +carew|1 +(noun)|Carew|Thomas Carew|poet +careworn|1 +(adj)|drawn|haggard|raddled|worn|tired +carex|1 +(noun)|Carex|genus Carex|monocot genus|liliopsid genus +carex arenaria|1 +(noun)|sand sedge|sand reed|Carex arenaria|sedge +carex pseudocyperus|1 +(noun)|cypress sedge|Carex pseudocyperus|sedge +carfare|1 +(noun)|bus fare|fare|transportation +carful|1 +(noun)|containerful +cargo|1 +(noun)|lading|freight|load|loading|payload|shipment|consignment|merchandise|wares|product +cargo area|1 +(noun)|cargo deck|cargo hold|hold|storage area|enclosure +cargo container|1 +(noun)|container +cargo cult|1 +(noun)|cult +cargo deck|1 +(noun)|cargo area|cargo hold|hold|storage area|enclosure +cargo door|1 +(noun)|door +cargo hatch|1 +(noun)|hatch +cargo helicopter|1 +(noun)|helicopter|chopper|whirlybird|eggbeater +cargo hold|1 +(noun)|cargo area|cargo deck|hold|storage area|enclosure +cargo liner|1 +(noun)|liner|ocean liner +cargo ship|1 +(noun)|cargo vessel|ship +cargo ships|2 +(noun)|shipping|merchant marine|merchant vessels|conveyance|transport +(noun)|cargo ship|cargo vessel|ship +cargo vessel|1 +(noun)|cargo ship|ship +carhop|1 +(noun)|waiter|server +cariama|1 +(noun)|Cariama|genus Cariama|bird genus +cariama cristata|1 +(noun)|crested cariama|seriema|Cariama cristata|wading bird|wader +cariamidae|1 +(noun)|Cariamidae|family Cariamidae|bird family +carib|2 +(noun)|Carib|Carib Indian|Amerindian|Native American +(noun)|Carib|Caribbean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +carib indian|1 +(noun)|Carib|Carib Indian|Amerindian|Native American +carib wood|1 +(noun)|Sabinea carinalis|tree +caribbean|2 +(noun)|Caribbean|Caribbean Sea|sea +(noun)|Caribbean|geographical area|geographic area|geographical region|geographic region +caribbean island|1 +(noun)|Caribbean Island|island +caribbean language|1 +(noun)|Carib|Caribbean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +caribbean sea|1 +(noun)|Caribbean|Caribbean Sea|sea +caribe|1 +(noun)|piranha|pirana|characin|characin fish|characid +caribees|1 +(noun)|Lesser Antilles|Caribees|archipelago +caribou|1 +(noun)|reindeer|Greenland caribou|Rangifer tarandus|deer|cervid +carica|1 +(noun)|Carica|genus Carica|dilleniid dicot genus +carica papaya|1 +(noun)|papaya|papaia|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree +caricaceae|1 +(noun)|Caricaceae|family Caricaceae|papaya family|dilleniid dicot family +caricature|2 +(noun)|imitation|impersonation|wit|humor|humour|witticism|wittiness +(verb)|ape|mock +caricature plant|1 +(noun)|Graptophyllum pictum|shrub|bush +caricaturist|1 +(noun)|parodist|lampooner +caries|1 +(noun)|cavity|dental caries|tooth decay|decay +carillon|2 +(noun)|chime|bell|gong +(noun)|bell ringing|carillon playing|music +carillon playing|1 +(noun)|bell ringing|carillon|music +carillonneur|1 +(noun)|musician|instrumentalist|player +carina|2 +(noun)|Carina|constellation +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +carina fornicis|1 +(noun)|carina +carinal|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +carinate|3 +(adj)|ridged|carinated|keeled +(adj)|carinated|ridged|keeled|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|carinate bird|flying bird|bird +carinate bird|1 +(noun)|carinate|flying bird|bird +carinated|2 +(adj)|ridged|carinate|keeled +(adj)|carinate|ridged|keeled|structure|anatomical structure|complex body part|bodily structure|body structure +caring|4 +(adj)|protective|tender +(adj)|affectionate|fond|lovesome|tender|warm|loving +(adj)|compassionate +(noun)|lovingness|love +carioca|3 +(noun)|Carioca|Brazilian +(noun)|dance music|danceroom music|ballroom music +(noun)|ballroom dancing|ballroom dance +carious|1 +(adj)|unhealthy +carissa|1 +(noun)|shrub|bush +carissa bispinosa|1 +(noun)|hedge thorn|natal plum|Carissa bispinosa|carissa +carissa grandiflora|1 +(noun)|natal plum|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa +carissa macrocarpa|1 +(noun)|natal plum|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa +carissa plum|1 +(noun)|natal plum|edible fruit +carjack|1 +(verb)|commandeer|hijack|highjack|pirate +carjacking|1 +(noun)|hijack|highjack +cark|1 +(verb)|perturb|unhinge|disquiet|trouble|distract|disorder|disturb|upset|trouble +carl anderson|1 +(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist +carl august nielson|1 +(noun)|Nielson|Carl Nielson|Carl August Nielson|composer +carl clinton van doren|1 +(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer|author|literary critic +carl david anderson|1 +(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist +carl gustaf mossander|1 +(noun)|Mosander|Carl Gustaf Mossander|chemist +carl gustav jung|1 +(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist +carl jung|1 +(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist +carl lewis|1 +(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter|jumper +carl maria von weber|1 +(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor|music director|director|composer +carl nielson|1 +(noun)|Nielson|Carl Nielson|Carl August Nielson|composer +carl orff|1 +(noun)|Orff|Carl Orff|musician|educator|pedagogue +carl rogers|1 +(noun)|Rogers|Carl Rogers|psychologist +carl sandburg|1 +(noun)|Sandburg|Carl Sandburg|writer|author +carl van doren|1 +(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer|author|literary critic +carl von linne|1 +(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist|phytologist|plant scientist +carl xvi gustaf|1 +(noun)|Carl XVI Gustav|Carl XVI Gustaf|king|male monarch +carl xvi gustav|1 +(noun)|Carl XVI Gustav|Carl XVI Gustaf|king|male monarch +carl yastrzemski|1 +(noun)|Yastrzemski|Carl Yastrzemski|ballplayer|baseball player +carlina|1 +(noun)|Carlina|genus Carlina|asterid dicot genus +carlina acaulis|1 +(noun)|stemless carline thistle|Carlina acaulis|carline thistle +carlina vulgaris|1 +(noun)|common carline thistle|Carlina vulgaris|carline thistle +carline thistle|1 +(noun)|thistle +carling float|1 +(noun)|life raft|Carling float|raft +carlo goldoni|1 +(noun)|Goldoni|Carlo Goldoni|dramatist|playwright +carload|2 +(noun)|gathering|assemblage +(noun)|boatload|shipload|large indefinite quantity|large indefinite amount +carlos|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +carlos chavez|1 +(noun)|Chavez|Carlos Chavez|composer +carlos fuentes|1 +(noun)|Fuentes|Carlos Fuentes|writer|author +carlos the jackal|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +carlovingian|1 +(noun)|Carolingian|Carlovingian|sovereign|crowned head|monarch +carlovingian dynasty|1 +(noun)|Carolingian dynasty|Carlovingian dynasty|dynasty +carlsbad|1 +(noun)|Carlsbad|town +carlsbad caverns|1 +(noun)|Carlsbad Caverns|cavern +carlsbad caverns national park|1 +(noun)|Carlsbad Caverns National Park|national park +carlyle|1 +(noun)|Carlyle|Thomas Carlyle|historian|historiographer +carmaker|1 +(noun)|car manufacturer|car maker|auto manufacturer|auto maker|automaker|manufacturer|maker|manufacturing business +carmelite|2 +(adj)|Carmelite|friar|mendicant +(noun)|Carmelite|White Friar|friar|mendicant +carmelite order|1 +(noun)|Carmelite order|Order of Our Lady of Mount Carmel|order|monastic order +carmichael|1 +(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter|songster|ballad maker +carminative|2 +(adj)|flatus-relieving|healthful +(noun)|medicine|medication|medicament|medicinal drug +carmine|3 +(adj)|red|reddish|ruddy|blood-red|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +(noun)|cardinal|red|redness +(verb)|redden +carnage|1 +(noun)|slaughter|massacre|mass murder|butchery|murder|slaying|execution +carnal|3 +(adj)|animal|fleshly|sensual|physical +(adj)|animal tissue +(adj)|bodily|body|organic structure|physical structure +carnal abuse|2 +(noun)|sexual activity|sexual practice|sex|sex activity +(noun)|statutory rape|rape|violation|assault|ravishment +carnal knowledge|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|sexual activity|sexual practice|sex|sex activity +carnalise|1 +(verb)|sensualize|sensualise|carnalize|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +carnality|1 +(noun)|prurience|pruriency|lasciviousness|amorousness|eroticism|erotism|sexiness|amativeness +carnalize|3 +(verb)|sensualize|represent|interpret +(verb)|sensualize|impute|ascribe|assign|attribute +(verb)|sensualize|sensualise|carnalise|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +carnallite|1 +(noun)|mineral +carnassial|1 +(adj)|sharp +carnassial tooth|1 +(noun)|tooth +carnation|3 +(adj)|chromatic +(noun)|clove pink|gillyflower|Dianthus caryophyllus|pink|garden pink +(noun)|pink +carnation family|1 +(noun)|Caryophyllaceae|family Caryophyllaceae|pink family|caryophylloid dicot family +carnauba|2 +(noun)|carnauba wax|wax +(noun)|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm +carnauba palm|1 +(noun)|carnauba|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm +carnauba wax|1 +(noun)|carnauba|wax +carnegie|2 +(noun)|Carnegie|Dale Carnegie|educator|pedagogue +(noun)|Carnegie|Andrew Carnegie|industrialist|philanthropist|altruist +carnegie-mellon university|1 +(noun)|Carnegie-Mellon University|university +carnegiea|1 +(noun)|Carnegiea|genus Carnegiea|caryophylloid dicot genus +carnegiea gigantea|1 +(noun)|saguaro|sahuaro|Carnegiea gigantea|cactus +carnelian|1 +(noun)|cornelian|chalcedony|calcedony +carnify|1 +(verb)|change state|turn +carniolan bee|1 +(noun)|Carniolan bee|honeybee|Apis mellifera +carnival|3 +(noun)|festival|fete +(noun)|circus|disturbance +(noun)|fair|funfair|show +carnivora|1 +(noun)|Carnivora|order Carnivora|animal order +carnivore|2 +(noun)|placental|placental mammal|eutherian|eutherian mammal +(noun)|predator|predatory animal +carnivorous|2 +(adj)|placental|placental mammal|eutherian|eutherian mammal +(adj)|carnivorous |flesh-eating|meat-eating|zoophagous|predacious|predaceous|piscivorous +carnivorous bat|1 +(noun)|microbat|bat|chiropteran +carnivorous plant|1 +(noun)|herb|herbaceous plant +carnosaur|1 +(noun)|theropod|theropod dinosaur|bird-footed dinosaur +carnosaura|1 +(noun)|Carnosaura|suborder Carnosaura|animal order +carnot|1 +(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist +carnot's ideal cycle|1 +(noun)|Carnot cycle|Carnot's ideal cycle|cycle|oscillation +carnot cycle|1 +(noun)|Carnot cycle|Carnot's ideal cycle|cycle|oscillation +carnotite|1 +(noun)|mineral|uranium ore +carob|3 +(noun)|carob bean|algarroba bean|algarroba|locust bean|locust pod|bean|bean plant +(noun)|carob tree|carob bean tree|algarroba|Ceratonia siliqua|bean tree +(noun)|carob powder|Saint-John's-bread|foodstuff|food product +carob bar|1 +(noun)|candy +carob bean|1 +(noun)|carob|algarroba bean|algarroba|locust bean|locust pod|bean|bean plant +carob bean tree|1 +(noun)|carob|carob tree|algarroba|Ceratonia siliqua|bean tree +carob powder|1 +(noun)|carob|Saint-John's-bread|foodstuff|food product +carob tree|1 +(noun)|carob|carob bean tree|algarroba|Ceratonia siliqua|bean tree +caroche|1 +(noun)|carriage|equipage|rig +carol|3 +(noun)|Christmas carol|religious song +(noun)|song|strain +(verb)|sing +carolean|1 +(adj)|Caroline|Carolean|King of England|King of Great Britain|King of England|King of Great Britain +caroler|1 +(noun)|caroller|singer|vocalist|vocalizer|vocaliser +carolina|1 +(noun)|Carolina|geographical area|geographic area|geographical region|geographic region +carolina allspice|1 +(noun)|Carolina allspice|strawberry shrub|strawberry bush|sweet shrub|Calycanthus floridus|allspice +carolina buckthorn|1 +(noun)|Carolina buckthorn|indian cherry|Rhamnus carolinianus|buckthorn +carolina chickadee|1 +(noun)|Carolina chickadee|Parus carolinensis|chickadee +carolina hemlock|1 +(noun)|Carolina hemlock|Tsuga caroliniana|hemlock|hemlock tree +carolina jasmine|1 +(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine +carolina lupine|1 +(noun)|Carolina lupine|Thermopsis villosa|bush pea +carolina moonseed|1 +(noun)|Carolina moonseed|Cocculus carolinus|moonseed +carolina parakeet|1 +(noun)|Carolina parakeet|Conuropsis carolinensis|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +carolina pond fern|1 +(noun)|mosquito fern|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern|water fern +carolina spring beauty|1 +(noun)|Carolina spring beauty|Claytonia caroliniana|flower +carolina wren|1 +(noun)|Carolina wren|Thryothorus ludovicianus|wren|jenny wren +caroline|1 +(adj)|Caroline|Carolean|King of England|King of Great Britain|King of England|King of Great Britain|Holy Roman Emperor|Carolingian|Carlovingian +caroline islands|1 +(noun)|Caroline Islands|archipelago +caroling|1 +(noun)|singing|vocalizing +carolingian|2 +(adj)|Carolingian|dynasty|dynasty +(noun)|Carolingian|Carlovingian|sovereign|crowned head|monarch +carolingian dynasty|1 +(noun)|Carolingian dynasty|Carlovingian dynasty|dynasty +carolinian|1 +(noun)|Carolinian|American +caroller|1 +(noun)|caroler|singer|vocalist|vocalizer|vocaliser +carolus linnaeus|1 +(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist|phytologist|plant scientist +carom|4 +(noun)|ricochet|recoil|repercussion|rebound|backlash +(noun)|cannon|stroke|shot +(verb)|glance|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +(verb)|shoot +carotene|2 +(noun)|provitamin A|carotin|provitamin +(noun)|carotenoid +carotenemia|1 +(noun)|xanthemia|pathology +carotenoid|1 +(noun)|pigment|antioxidant +carothers|1 +(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist +carotid|1 +(adj)|artery|arteria|arterial blood vessel +carotid artery|1 +(noun)|arteria carotis|artery|arteria|arterial blood vessel +carotid body|1 +(noun)|chemoreceptor +carotid plexus|1 +(noun)|plexus caroticus|nerve plexus +carotin|1 +(noun)|provitamin A|carotene|provitamin +carousal|1 +(noun)|carouse|bender|toot|booze-up|revel|revelry +carouse|2 +(noun)|carousal|bender|toot|booze-up|revel|revelry +(verb)|roister|riot|revel|racket|make whoopie|make merry|make happy|whoop it up|jollify|wassail +carousel|2 +(noun)|carrousel|luggage carousel|luggage carrousel|conveyer belt|conveyor belt|conveyer|conveyor|transporter +(noun)|carrousel|merry-go-round|roundabout|whirligig|ride +carouser|1 +(noun)|wassailer|drinker|imbiber|toper|juicer +carousing|1 +(adj)|bacchanalian|bacchanal|bacchic|orgiastic|intoxicated |drunk|inebriated +carp|3 +(noun)|freshwater fish +(noun)|cyprinid|cyprinid fish +(verb)|cavil|chicane|object +carpal|2 +(adj)|gliding joint|articulatio plana +(noun)|carpal bone|wrist bone|bone|os +carpal bone|1 +(noun)|carpal|wrist bone|bone|os +carpal tunnel syndrome|1 +(noun)|nerve entrapment +carpathian mountains|1 +(noun)|Carpathians|Carpathian Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +carpathians|1 +(noun)|Carpathians|Carpathian Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +carpel|1 +(noun)|pistil +carpellary|1 +(adj)|pistil +carpellate|1 +(adj)|carpellate |pistillate +carpenter|2 +(noun)|woodworker|woodsman|woodman +(verb)|work +carpenter's hammer|1 +(noun)|claw hammer|clawhammer|hammer +carpenter's kit|1 +(noun)|tool kit|kit|outfit +carpenter's level|1 +(noun)|bar +carpenter's mallet|1 +(noun)|mallet|beetle +carpenter's plane|1 +(noun)|plane|woodworking plane|edge tool|hand tool +carpenter's rule|1 +(noun)|rule|ruler +carpenter's saw|1 +(noun)|handsaw|saw +carpenter's square|1 +(noun)|square +carpenter ant|1 +(noun)|ant|emmet|pismire +carpenter bee|1 +(noun)|bee +carpenteria|2 +(noun)|Carpenteria californica|hydrangea +(noun)|Gulf of Carpenteria|Carpenteria|gulf|Australia +carpenteria californica|1 +(noun)|carpenteria|Carpenteria californica|hydrangea +carpentry|1 +(noun)|woodworking|woodwork|trade|craft +carper|1 +(noun)|niggler|critic +carpet|4 +(noun)|rug|carpeting|floor cover|floor covering|furnishings +(verb)|cover|spread over +(verb)|cover +(verb)|cover +carpet beater|1 +(noun)|rug beater|beater +carpet beetle|1 +(noun)|carpet bug|beetle +carpet bomb|1 +(verb)|bombard|bomb +carpet bombing|1 +(noun)|area bombing|saturation bombing|bombing|bombardment +carpet bug|1 +(noun)|carpet beetle|beetle +carpet grass|1 +(noun)|smut grass|blackseed|Sporobolus poiretii|dropseed|drop-seed +carpet knight|1 +(noun)|knight +carpet loom|1 +(noun)|loom +carpet moth|1 +(noun)|tapestry moth|Trichophaga tapetzella|tineid|tineid moth +carpet pad|1 +(noun)|rug pad|underlay|underlayment|pad +carpet shark|1 +(noun)|Orectolobus barbatus|shark +carpet slipper|1 +(noun)|slipper|footwear|footgear +carpet snake|1 +(noun)|Python variegatus|Morelia spilotes variegatus|python +carpet sweeper|1 +(noun)|sweeper|cleaning implement +carpet tack|1 +(noun)|tack +carpetbag|2 +(adj)|opportunist|self-seeker +(noun)|bag|traveling bag|grip|suitcase +carpetbagger|1 +(noun)|opportunist|self-seeker +carpeted|1 +(adj)|carpeted +carpeting|1 +(noun)|rug|carpet|floor cover|floor covering|furnishings +carpetweed|1 +(noun)|Indian chickweed|Molluga verticillata|weed +carpetweed family|1 +(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|caryophylloid dicot family +carphophis|1 +(noun)|Carphophis|genus Carphophis|reptile genus +carphophis amoenus|1 +(noun)|thunder snake|worm snake|Carphophis amoenus|colubrid snake|colubrid +carpinaceae|1 +(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family +carping|2 +(adj)|caviling|nitpicking|pettifogging|quibbling|critical +(noun)|faultfinding|criticism|unfavorable judgment +carpinus|1 +(noun)|Carpinus|genus Carpinus|hamamelid dicot genus +carpinus betulus|1 +(noun)|European hornbeam|Carpinus betulus|hornbeam +carpinus caroliniana|1 +(noun)|American hornbeam|Carpinus caroliniana|hornbeam +carpobrotus|1 +(noun)|Carpobrotus|genus Carpobrotus|caryophylloid dicot genus +carpobrotus edulis|1 +(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent +carpocapsa|1 +(noun)|Carpocapsa|genus Carpocapsa|arthropod genus +carpocapsa pomonella|1 +(noun)|codling moth|codlin moth|Carpocapsa pomonella|tortricid|tortricid moth +carpodacus|1 +(noun)|Carpodacus|genus Carpodacus|bird genus +carpodacus mexicanus|1 +(noun)|house finch|linnet|Carpodacus mexicanus|finch +carpodacus purpureus|1 +(noun)|purple finch|Carpodacus purpureus|finch +carpophagous|1 +(adj)|fruit-eating|herbivorous +carpophore|1 +(noun)|stalk|stem +carport|1 +(noun)|car port|garage +carpospore|1 +(noun)|spore +carposporic|1 +(adj)|spore +carposporous|1 +(adj)|spore +carpus|1 +(noun)|wrist|wrist joint|radiocarpal joint|articulatio radiocarpea|gliding joint|articulatio plana +carrack|1 +(noun)|carack|galleon +carrageen|1 +(noun)|Irish moss|carageen|carragheen|Chondrus crispus|red algae +carrageenan|1 +(noun)|carrageenin|gum +carrageenin|1 +(noun)|carrageenan|gum +carragheen|1 +(noun)|Irish moss|carrageen|carageen|Chondrus crispus|red algae +carrefour|1 +(noun)|intersection|crossroad|crossway|crossing|junction +carrel|2 +(noun)|Carrel|Alexis Carrel|surgeon|operating surgeon|sawbones|biologist|life scientist +(noun)|carrell|cubicle|stall|alcove|bay +carrell|1 +(noun)|carrel|cubicle|stall|alcove|bay +carrere|1 +(noun)|Carrere|John Merven Carrere|architect|designer +carriage|5 +(noun)|passenger car|coach|car|railcar|railway car|railroad car +(noun)|equipage|rig|horse-drawn vehicle +(noun)|bearing|posture|bodily property +(noun)|mechanism +(noun)|baby buggy|baby carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle +carriage bolt|1 +(noun)|bolt +carriage dog|1 +(noun)|dalmatian|coach dog|dog|domestic dog|Canis familiaris +carriage house|1 +(noun)|coach house|outbuilding +carriage return|1 +(noun)|printing operation +carriage trade|1 +(noun)|commerce|commercialism|mercantilism +carriage wrench|1 +(noun)|wrench|spanner +carriageway|1 +(noun)|roadway +carrick bend|1 +(noun)|knot +carrick bitt|1 +(noun)|post +carrier|10 +(noun)|bearer|toter|traveler|traveller +(noun)|self-propelled vehicle +(noun)|aircraft carrier|flattop|attack aircraft carrier|warship|war vessel|combat ship +(noun)|chemical +(noun)|common carrier|business|concern|business concern|business organization|business organisation +(noun)|carrier wave|radio wave|radio emission|radio radiation +(noun)|mailman|postman|mail carrier|letter carrier|deliveryman|delivery boy|deliverer +(noun)|newsboy|deliveryman|delivery boy|deliverer +(noun)|immune carrier|immune|vector|transmitter +(noun)|rack +carrier bag|1 +(noun)|sack|poke|paper bag|bag +carrier electrophoresis|1 +(noun)|paper electrophoresis|electrophoresis|cataphoresis|dielectrolysis|ionophoresis +carrier pigeon|1 +(noun)|homing pigeon|homer +carrier wave|1 +(noun)|carrier|radio wave|radio emission|radio radiation +carrion|2 +(noun)|raw meat +(noun)|body|dead body +carrion crow|1 +(noun)|black vulture|Coragyps atratus|New World vulture|cathartid +carrion flower|1 +(noun)|stapelia|starfish flower|herb|herbaceous plant +carrion fungus|1 +(noun)|stinkhorn|fungus +carrizo|1 +(noun)|ditch reed|common reed|Phragmites communis|reed|Phragmites|genus Phragmites +carroll|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +carron oil|1 +(noun)|ointment|unction|unguent|balm|salve +carrot|4 +(noun)|root +(noun)|cultivated carrot|Daucus carota sativa|herb|herbaceous plant +(noun)|root vegetable +(noun)|reward|reinforcement +carrot family|1 +(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|rosid dicot family +carrot juice|1 +(noun)|juice +carrot pudding|1 +(noun)|pudding +carrot stick|1 +(noun)|crudites +carrottop|1 +(noun)|redhead|redheader|red-header|person|individual|someone|somebody|mortal|human|soul +carroty|1 +(adj)|root vegetable +carrousel|2 +(noun)|carousel|luggage carousel|luggage carrousel|conveyer belt|conveyor belt|conveyer|conveyor|transporter +(noun)|carousel|merry-go-round|roundabout|whirligig|ride +carry|40 +(noun)|transportation|transfer|transferral|conveyance +(verb)|transport|move|displace +(verb)|pack|take|have|feature +(verb)|conduct|transmit|convey|channel|bring|convey|take +(verb)|convey|express|communicate|intercommunicate +(verb)|hold|support|sustain|hold up +(verb)|hold|bear +(verb)|hold|bear|contain|include +(verb)|effect +(verb)|extend|continue +(verb)|imply|involve +(verb)|win +(verb)|include +(verb)|behave|acquit|bear|deport|conduct|comport|hold|bear|act|move +(verb)|stock|stockpile|have|have got|hold +(verb)|run|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|dribble|hit +(verb)|communicate|pass on|pass|put across +(verb)|have|feature +(verb)|range +(verb)|sustain|keep|maintain +(verb)|have|have got|hold +(verb)|persuade|sway|influence|act upon|work +(verb)|compensate|counterbalance|correct|even out|even off|even up +(verb)|promote|advance|boost|further|encourage +(verb)|bear +(verb)|appropriate|capture|seize|conquer +(verb)|post|transfer +(verb)|transfer|shift +(verb)|follow +(verb)|grow|raise|farm|produce +(verb)|propel|impel +(verb)|hold|drink|booze|fuddle +(verb)|nourish|nurture|sustain +(verb)|have|feature +(verb)|travel|go|move|locomote +(verb)|obtain +(verb)|win +(verb)|perform|execute|do +(verb)|have a bun in the oven|bear|gestate|expect|give birth|deliver|bear|birth|have +carry-forward|1 +(noun)|carry-over|balance +carry-over|2 +(noun)|transfer|transfer of training|learning|acquisition +(noun)|carry-forward|balance +carry-the can|1 +(verb)|face the music|bear|take over|accept|assume +carry amelia moore nation|1 +(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry|prohibitionist +carry away|1 +(verb)|take away|bear off|bear away|carry off|remove|take|take away|withdraw +carry back|1 +(verb)|deduce|infer|deduct|derive +carry forward|1 +(verb)|carry over|transfer|shift +carry nation|1 +(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry|prohibitionist +carry off|3 +(verb)|pull off|negociate|bring off|manage|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|take away|bear off|bear away|carry away|remove|take|take away|withdraw +(verb)|eliminate|annihilate|extinguish|eradicate|wipe out|decimate|kill +carry on|4 +(verb)|conduct|deal|manage|deal|care|handle +(verb)|continue|uphold|bear on|preserve|keep|maintain|hold +(verb)|continue|go on|proceed|talk|speak +(verb)|act up|misbehave|misconduct|misdemean +carry out|2 +(verb)|carry through|accomplish|execute|action|fulfill|fulfil|complete|finish|effect|effectuate|bring about|set up +(verb)|follow through|follow up|follow out|implement|put through|go through|complete|finish +carry over|4 +(verb)|prevail|persist|die hard|run|endure +(verb)|transport +(verb)|hold over|keep|hold on +(verb)|carry forward|transfer|shift +carry through|2 +(verb)|accomplish|execute|carry out|action|fulfill|fulfil|complete|finish|effect|effectuate|bring about|set up +(verb)|save|pull through|bring through +carry weight|1 +(verb)|determine|shape|mold|influence|regulate +carryall|1 +(noun)|holdall|tote|tote bag|bag +carrycot|1 +(noun)|baby bed|baby's bed +carrying charge|2 +(noun)|charge +(noun)|carrying cost|opportunity cost +carrying cost|1 +(noun)|carrying charge|opportunity cost +carrying into action|1 +(noun)|performance|execution|carrying out|action +carrying out|2 +(noun)|execution|implementation|enforcement +(noun)|performance|execution|carrying into action|action +carsick|1 +(adj)|airsick|air sick|seasick|ill |sick +carson|2 +(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist|life scientist|environmentalist|conservationist +(noun)|Carson|Kit Carson|Christopher Carson|frontiersman|backwoodsman|mountain man +carson city|1 +(noun)|Carson City|capital of Nevada|state capital +carson mccullers|1 +(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer|author +carson smith mccullers|1 +(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer|author +cart|4 +(noun)|wagon|waggon +(noun)|handcart|pushcart|go-cart|wheeled vehicle +(verb)|haul|hale|drag|pull|draw|force +(verb)|transport|carry +cart-track plant|1 +(noun)|broad-leaved plantain|common plantain|white-man's foot|whiteman's foot|Plantago major|plantain +cart away|1 +(verb)|cart off|haul off|haul away|take away|take out +cart horse|2 +(noun)|carthorse|drayhorse|draft horse|draught horse|dray horse +(noun)| +cart off|1 +(verb)|cart away|haul off|haul away|take away|take out +cart track|1 +(noun)|track|cartroad|road|route +cartage|1 +(noun)|carting|hauling|trucking|truckage +cartagena|2 +(noun)|Cartagena|city|metropolis|urban center|port +(noun)|Cartagena|city|metropolis|urban center|port +cartagena bark|1 +(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona|chinchona +carte|1 +(noun)|menu|bill of fare|card|carte du jour|bill +carte blanche|1 +(noun)|authority|authorization|authorisation|dominance|say-so +carte du jour|1 +(noun)|menu|bill of fare|card|carte|bill +cartel|1 +(noun)|trust|corporate trust|combine|consortium|pool|syndicate +carter|4 +(noun)|Carter|Howard Carter|Egyptologist +(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States|United States President|President|Chief Executive +(noun)|garbage carter|garbage hauler|hauler|haulier +(noun)|worker +carter administration|1 +(noun)|Carter administration|executive +cartesian|1 +(adj)|Cartesian|mathematician|philosopher +cartesian coordinate|1 +(noun)|coordinate|co-ordinate +cartesian coordinate system|1 +(noun)|coordinate system|frame of reference|reference system|reference frame +cartesian plane|1 +(noun)|plane|sheet +cartesian product|1 +(noun)|intersection|product|set +carthage|1 +(noun)|Carthage|city state +carthaginian|2 +(adj)|Carthaginian|Punic|city state +(noun)|Carthaginian|African +carthamus|1 +(noun)|Carthamus|genus Carthamus|asterid dicot genus +carthamus tinctorius|1 +(noun)|safflower|false saffron|Carthamus tinctorius|herb|herbaceous plant +carthorse|1 +(noun)|cart horse|drayhorse|draft horse|draught horse|dray horse +carthusian|2 +(adj)|Carthusian|order|monastic order +(noun)|Carthusian|monk|monastic +carthusian order|1 +(noun)|Carthusian order|order|monastic order +cartier|1 +(noun)|Cartier|Jacques Cartier|navigator +cartilage|1 +(noun)|gristle|animal tissue +cartilage bone|1 +(noun)|bone|os +cartilaginification|1 +(noun)|pathology +cartilaginous|1 +(adj)|gristly|rubbery|tough +cartilaginous fish|1 +(noun)|chondrichthian|fish +cartilaginous structure|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +cartilaginous tube|1 +(noun)|duct|epithelial duct|canal|channel +carting|1 +(noun)|cartage|hauling|trucking|truckage +cartload|1 +(noun)|containerful +cartographer|1 +(noun)|map maker|geographer +cartographic|1 +(adj)|cartographical|devising|fashioning|making +cartographical|1 +(adj)|cartographic|devising|fashioning|making +cartography|1 +(noun)|mapmaking|devising|fashioning|making +carton|2 +(noun)|cartonful|containerful +(noun)|box +cartonful|1 +(noun)|carton|containerful +cartoon|3 +(noun)|sketch|wit|humor|humour|witticism|wittiness +(noun)|animated cartoon|short subject +(verb)|draw +cartoon strip|1 +(noun)|comic strip|strip|cartoon|sketch +cartoonist|1 +(noun)|draftsman|drawer +cartouch|1 +(noun)|cartouche|cartridge +cartouche|1 +(noun)|cartouch|cartridge +cartridge|4 +(noun)|ammunition|ammo +(noun)|magazine|supply chamber +(noun)|module +(noun)|pickup|electro-acoustic transducer +cartridge belt|1 +(noun)|belt +cartridge brass|1 +(noun)|brass +cartridge clip|1 +(noun)|cartridge holder|clip|magazine|supply chamber +cartridge ejector|1 +(noun)|ejector|mechanism +cartridge extractor|1 +(noun)|cartridge remover|extractor|mechanism +cartridge font|1 +(noun)|font cartridge|font|fount|typeface|face +cartridge fuse|1 +(noun)|fuse|electrical fuse +cartridge holder|1 +(noun)|cartridge clip|clip|magazine|supply chamber +cartridge paper|2 +(noun)|drawing paper +(noun)|paper +cartridge remover|1 +(noun)|cartridge extractor|extractor|mechanism +cartroad|1 +(noun)|track|cart track|road|route +cartwheel|4 +(noun)|wheel +(noun)|acrobatic stunt|acrobatic feat +(noun)|silver dollar|dollar +(verb)|wheel|wheel around +cartwright|2 +(noun)|Cartwright|Edmund Cartwright|inventor|discoverer|artificer +(noun)|wright +carum|1 +(noun)|Carum|genus Carum|rosid dicot genus +carum carvi|1 +(noun)|caraway|Carum carvi|herb|herbaceous plant +caruncle|1 +(noun)|caruncula|process|outgrowth|appendage +caruncula|1 +(noun)|caruncle|process|outgrowth|appendage +caruncular|1 +(adj)|carunculous|process|outgrowth|appendage +carunculate|1 +(adj)|carunculated|process|outgrowth|appendage +carunculated|1 +(adj)|carunculate|process|outgrowth|appendage +carunculous|1 +(adj)|caruncular|process|outgrowth|appendage +caruso|1 +(noun)|Caruso|Enrico Caruso|tenor +carve|3 +(verb)|cut|shape|form|work|mold|mould|forge +(verb)|chip at|cut +(verb)|cut up|cut|carve up +carve up|1 +(verb)|divide|split|split up|separate|dissever|change integrity +carved|1 +(adj)|carved |carven|engraved|etched|graven|incised|inscribed|lapidarian|graven|sculpted|sculptured|sliced +carved in stone|1 +(adj)|set in stone|unchangeable +carvedilol|1 +(noun)|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +carvel-built|1 +(adj)|carvel-built |flush-seamed +carven|1 +(adj)|carved |engraved|etched|graven|incised|inscribed|lapidarian|graven|sculpted|sculptured|sliced +carver|4 +(noun)|Carver|George Washington Carver|botanist|phytologist|plant scientist|chemist +(noun)|woodcarver|woodworker|woodsman|woodman +(noun)|sculptor|sculpturer|statue maker|artist|creative person +(noun)|cutter|diner +carving|3 +(noun)|sculpture +(noun)|cutting|creating by removal +(noun)|sculpture|art|artistic creation|artistic production|fine arts|beaux arts +carving fork|1 +(noun)|fork +carving knife|1 +(noun)|knife +cary grant|1 +(noun)|Grant|Cary Grant|actor|histrion|player|thespian|role player +carya|1 +(noun)|Carya|genus Carya|dicot genus|magnoliopsid genus +carya aquatica|1 +(noun)|water hickory|bitter pecan|water bitternut|Carya aquatica|hickory|hickory tree +carya cordiformis|1 +(noun)|bitternut|bitternut hickory|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory|hickory tree +carya glabra|1 +(noun)|pignut|pignut hickory|brown hickory|black hickory|Carya glabra|hickory|hickory tree +carya illinoensis|1 +(noun)|pecan|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree +carya illinoinsis|1 +(noun)|pecan|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree +carya laciniosa|1 +(noun)|big shellbark|big shellbark hickory|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory|hickory tree +carya myristicaeformis|1 +(noun)|nutmeg hickory|Carya myristicaeformis|Carya myristiciformis|hickory|hickory tree +carya myristiciformis|1 +(noun)|nutmeg hickory|Carya myristicaeformis|Carya myristiciformis|hickory|hickory tree +carya ovata|1 +(noun)|shagbark|shagbark hickory|shellbark|shellbark hickory|Carya ovata|hickory|hickory tree +carya tomentosa|1 +(noun)|mockernut|mockernut hickory|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory|hickory tree +caryatid|1 +(noun)|column|pillar +caryocar|1 +(noun)|Caryocar|genus Caryocar|dilleniid dicot genus +caryocar nuciferum|1 +(noun)|souari|souari nut|souari tree|Caryocar nuciferum|tree +caryocaraceae|1 +(noun)|Caryocaraceae|family Caryocaraceae|dilleniid dicot family +caryophyllaceae|1 +(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|pink family|caryophylloid dicot family +caryophyllaceous|1 +(adj)|caryophylloid dicot family +caryophyllaceous plant|1 +(noun)|herb|herbaceous plant +caryophyllales|1 +(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order +caryophyllidae|1 +(noun)|Caryophyllidae|subclass Caryophyllidae|class +caryophylloid dicot family|1 +(noun)|dicot family|magnoliopsid family +caryophylloid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +caryopsis|1 +(noun)|grain|seed +caryota|1 +(noun)|Caryota|genus Caryota|monocot genus|liliopsid genus +caryota urens|1 +(noun)|wine palm|jaggery palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm +casaba|1 +(noun)|casaba melon|winter melon +casaba melon|1 +(noun)|casaba|winter melon +casablanca|1 +(noun)|Casablanca|city|metropolis|urban center|port +casals|1 +(noun)|Casals|Pablo Casals|cellist +casanova|2 +(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer|venturer +(noun)|Casanova|womanizer|womaniser|philanderer +casanova de seingalt|1 +(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer|venturer +casava|1 +(noun)|cassava|shrub|bush +casbah|1 +(noun)|kasbah|quarter +cascabel|1 +(noun)|sleigh bell|bell +cascade|5 +(noun)|waterfall|falls +(noun)|succession +(noun)|shower|descent +(verb)|cascade down|descend|fall|go down|come down +(verb)|arrange|set up +cascade down|1 +(verb)|cascade|descend|fall|go down|come down +cascade everlasting|1 +(noun)|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting|everlasting flower +cascade liquefier|1 +(noun)|apparatus|setup +cascade mountains|1 +(noun)|Cascades|Cascade Range|Cascade Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +cascade penstemon|1 +(noun)|Penstemon serrulatus|wildflower|wild flower +cascade range|1 +(noun)|Cascades|Cascade Range|Cascade Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +cascade transformer|1 +(noun)|step-up transformer +cascades|4 +(noun)|Cascades|Cascade Range|Cascade Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|cascade|waterfall|falls +(noun)|cascade|succession +(noun)|shower|cascade|descent +cascades frog|1 +(noun)|Rana cascadae|true frog|ranid +cascading menu|1 +(noun)|hierarchical menu|submenu|menu|computer menu +cascara|1 +(noun)|cascara sagrada|chittam bark|chittem bark|bark +cascara buckthorn|1 +(noun)|bearberry|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn +cascara sagrada|1 +(noun)|cascara|chittam bark|chittem bark|bark +cascarilla|1 +(noun)|Croton eluteria|croton|Croton tiglium +cascarilla bark|1 +(noun)|eleuthra bark|sweetwood bark|bark +case|20 +(noun)|lawsuit|suit|cause|causa|proceeding|legal proceeding|proceedings +(noun)|instance|example|happening|occurrence|natural event +(noun)|event|circumstance +(noun)|problem +(noun)|fact +(noun)|argument|statement +(noun)|container +(noun)|subject|guinea pig|person|individual|someone|somebody|mortal|human|soul +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|caseful|containerful +(noun)|display case|showcase|container +(noun)|state of mind|frame of mind +(noun)|grammatical case|grammatical category|syntactic category +(noun)|shell|casing|housing +(noun)|character|eccentric|type|adult|grownup +(noun)|sheath|covering|natural covering|cover +(noun)|casing|framework|frame|framing +(noun)|pillowcase|slip|pillow slip|bed linen +(verb)|inspect +(verb)|encase|incase|enclose|inclose|shut in +case-by-case|1 +(adj)|individual|item-by-item|independent +case-fatality proportion|1 +(noun)|proportion|proportionality +case-hardened|1 +(adj)|hardened|hard-boiled|hard +case-hardened steel|1 +(noun)|steel +case-to-infection proportion|1 +(noun)|case-to-infection ratio|proportion|proportionality +case-to-infection ratio|1 +(noun)|case-to-infection proportion|proportion|proportionality +case agreement|1 +(noun)|agreement|concord +case history|1 +(noun)|history|account|chronicle|story +case in point|1 +(noun)|precedent|example|illustration|instance|representative +case knife|2 +(noun)|table knife +(noun)|sheath knife|knife +case law|2 +(noun)|common law|precedent|law|jurisprudence +(noun)|precedent|common law|civil law +case load|1 +(noun)|workload +case officer|1 +(noun)|secret agent|intelligence officer|intelligence agent|operative +case shot|1 +(noun)|canister|canister shot|ammunition|ammo +case study|2 +(noun)|report|study|written report +(noun)|analysis +caseate|2 +(verb)|change +(verb)|change +casebook|2 +(adj)|textbook|standard +(noun)|written record|written account +cased|2 +(adj)|encased|incased|sheathed +(adj)|bound +caseful|1 +(noun)|case|containerful +casein|2 +(noun)|phosphoprotein +(noun)|casein paint|water-base paint +casein glue|1 +(noun)|glue|gum|mucilage +casein paint|1 +(noun)|casein|water-base paint +casemaking clothes moth|1 +(noun)|Tinea pellionella|clothes moth +casement|1 +(noun)|sash|window sash +casement window|1 +(noun)|window +caseous|1 +(adj)|unhealthy +casern|1 +(noun)|barrack +casework|1 +(noun)|welfare work|social service +caseworker|1 +(noun)|social worker|welfare worker|public servant +caseworm|1 +(noun)|larva +casey jones|1 +(noun)|Jones|Casey Jones|John Luther Jones|engineer|locomotive engineer|railroad engineer|engine driver +casey stengel|1 +(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach|baseball manager +cash|3 +(noun)|hard cash|hard currency|currency +(noun)|immediate payment|payment +(verb)|cash in|exchange|change|interchange|cash in on +cash-and-carry|1 +(adj)|payment +cash account|1 +(noun)|brokerage account +cash advance|1 +(noun)|advance|sum|sum of money|amount|amount of money +cash bar|1 +(noun)|bar +cash basis|1 +(noun)|accounting|accounting system|method of accounting +cash card|2 +(noun)|cashcard|credit card|charge card|charge plate +(noun)| +cash cow|1 +(noun)|moneymaker|money-spinner|project|projection +cash crop|1 +(noun)|crop|harvest +cash dispenser|1 +(noun)|cash machine|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine +cash equivalent|1 +(noun)|debt instrument|certificate of indebtedness +cash flow|1 +(noun)|income +cash in|1 +(verb)|cash|exchange|change|interchange +cash in hand|1 +(noun)|funds|finances|monetary resource|pecuniary resource|assets +cash in on|1 +(verb)|profit|gain|benefit +cash in one's chips|1 +(verb)|kick the bucket|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +cash machine|1 +(noun)|cash dispenser|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine +cash on delivery|1 +(adv)|C.O.D.|COD +cash out|1 +(verb)|live +cash price|1 +(noun)|spot price|price|terms|damage +cash register|1 +(noun)|register|cashbox|money box|till +cash surrender value|1 +(noun)|sum|sum of money|amount|amount of money +cashable|1 +(adj)|redeemable|convertible |exchangeable +cashbox|1 +(noun)|money box|till|strongbox|deedbox +cashcard|1 +(noun)|cash card|credit card|charge card|charge plate +cashed|1 +(adj)|paid +cashew|2 +(noun)|cashew tree|Anacardium occidentale|nut tree +(noun)|cashew nut|edible nut +cashew nut|1 +(noun)|cashew|edible nut +cashew tree|1 +(noun)|cashew|Anacardium occidentale|nut tree +cashier|4 +(noun)|teller|bank clerk|banker +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|abolish|get rid of +(verb)|free|discharge +cashier's check|1 +(noun)|treasurer's check|cashier's cheque|treasurer's cheque|check|bank check|cheque +cashier's cheque|1 +(noun)|cashier's check|treasurer's check|treasurer's cheque|check|bank check|cheque +cashmere|3 +(noun)|fabric|cloth|material|textile +(noun)|wool +(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area|geographic area|geographical region|geographic region +cashmere goat|1 +(noun)|Cashmere goat|Kashmir goat|domestic goat|Capra hircus +casimir funk|1 +(noun)|Funk|Casimir Funk|biochemist +casing|3 +(noun)|shell|case|housing +(noun)|covering +(noun)|case|framework|frame|framing +casino|2 +(noun)|gambling casino|gambling house|gambling den|gambling hell|gaming house +(noun)|cassino|card game|cards +casino-hotel|2 +(noun)|hotel-casino|place of business|business establishment +(noun)|hotel-casino|building|edifice +cask|2 +(noun)|caskful|containerful +(noun)|barrel|vessel +casket|3 +(noun)|coffin|box +(noun)|jewel casket|box +(verb)|enclose|inclose|shut in +caskful|1 +(noun)|cask|containerful +casmerodius|1 +(noun)|Casmerodius|genus Casmerodius|bird genus +casmerodius albus|1 +(noun)|great white heron|Casmerodius albus|egret +caspar|1 +(noun)|Caspar|Gaspar|sage +caspar bartholin|1 +(noun)|Bartholin|Caspar Bartholin|doctor|doc|physician|MD|Dr.|medico +caspase|1 +(noun)|protease|peptidase|proteinase|proteolytic enzyme +caspase-mediated cell death|1 +(noun)|apoptosis|programmed cell death|necrobiosis|cell death +casper|1 +(noun)|Casper|city|metropolis|urban center +caspian|2 +(adj)|Caspian|lake +(noun)|Caspian|Caspian Sea|lake +caspian sea|1 +(noun)|Caspian|Caspian Sea|lake +casque|1 +(noun)|helmet +casquet|1 +(noun)|casquetel|casque +casquetel|1 +(noun)|casquet|casque +cass gilbert|1 +(noun)|Gilbert|Cass Gilbert|architect|designer +cassandra|1 +(noun)|Cassandra|prophetess +cassareep|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +cassava|3 +(noun)|cassava starch|manioc|manioca|starch|amylum +(noun)|manioc|root +(noun)|casava|shrub|bush +cassava starch|1 +(noun)|cassava|manioc|manioca|starch|amylum +cassegrainian telescope|1 +(noun)|Cassegrainian telescope|Gregorian telescope|reflecting telescope|reflector +casserole|2 +(noun)|dish +(noun)|dish +cassette|1 +(noun)|container +cassette deck|1 +(noun)|tape deck +cassette player|1 +(noun)|electronic equipment +cassette recorder|1 +(noun)|recorder|recording equipment|recording machine +cassette tape|1 +(noun)|magnetic tape|mag tape|tape +cassia|2 +(noun)|tree +(noun)|cassia-bark tree|Cinnamomum cassia|laurel +cassia-bark tree|1 +(noun)|cassia|Cinnamomum cassia|laurel +cassia acutifolia|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +cassia alata|1 +(noun)|ringworm bush|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna +cassia augustifolia|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +cassia auriculata|1 +(noun)|avaram|tanner's cassia|Senna auriculata|Cassia auriculata|senna +cassia bark|1 +(noun)|Chinese cinnamon|bark +cassia fasciculata|1 +(noun)|partridge pea|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub|suffrutex +cassia fistula|1 +(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia +cassia grandis|1 +(noun)|pink shower|pink shower tree|horse cassia|Cassia grandis|cassia +cassia javonica|1 +(noun)|rainbow shower|Cassia javonica|cassia +cassia marginata|1 +(noun)|horse cassia|Cassia roxburghii|Cassia marginata|cassia +cassia marilandica|1 +(noun)|wild senna|Senna marilandica|Cassia marilandica|herb|herbaceous plant +cassia occidentalis|1 +(noun)|coffee senna|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna +cassia roxburghii|1 +(noun)|horse cassia|Cassia roxburghii|Cassia marginata|cassia +cassia tora|1 +(noun)|sicklepod|Senna obtusifolia|Cassia tora|subshrub|suffrutex +cassie|1 +(noun)|huisache|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia +cassin's kingbird|1 +(noun)|Cassin's kingbird|Tyrannus vociferans|kingbird|Tyrannus tyrannus +cassino|1 +(noun)|casino|card game|cards +cassiope|1 +(noun)|Cassiope|genus Cassiope|dilleniid dicot genus +cassiope mertensiana|1 +(noun)|white heather|Cassiope mertensiana|heath +cassiopeia|1 +(noun)|Cassiopeia|constellation +cassirer|1 +(noun)|Cassirer|Ernst Cassirer|philosopher +cassiri|1 +(noun)|brew|brewage +cassite|2 +(noun)|Kassite|Cassite|natural language|tongue +(noun)|Kassite|Cassite|White|white person|Caucasian +cassiterite|1 +(noun)|mineral +cassius|1 +(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman|solon|national leader +cassius clay|1 +(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter|gladiator +cassius longinus|1 +(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman|solon|national leader +cassius marcellus clay|1 +(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter|gladiator +cassock|1 +(noun)|vestment +cassocked|1 +(adj)|clothed |clad +cassowary|1 +(noun)|ratite|ratite bird|flightless bird +cast|21 +(adj)|formed +(noun)|cast of characters|dramatis personae|gathering|assemblage +(noun)|mold|mould|container +(noun)|mold|stamp|solid +(noun)|form|shape|appearance|visual aspect +(noun)|plaster cast|plaster bandage|bandage|patch +(noun)|casting|copy +(noun)|roll|throw +(noun)|casting|fishing|sportfishing +(noun)|hurl|throw +(verb)|project|contrive|throw|send|direct +(verb)|give +(verb)|delegate|designate|depute|assign +(verb)|hurl|hurtle|throw|cast anchor +(verb)|delegate|designate|depute|assign +(verb)|roll|wander|swan|stray|tramp|roam|ramble|rove|range|drift|vagabond|travel|go|move|locomote +(verb)|mold|mould|shape|form|work|mold|mould|forge +(verb)|shed|cast off|shake off|throw|throw off|throw away|drop|remove|take|take away|withdraw +(verb)|draw|move|go +(verb)|frame|redact|put|couch|give voice|formulate|word|phrase|articulate +(verb)|vomit|vomit up|purge|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +cast-iron|1 +(adj)|iron|robust +cast-iron plant|1 +(noun)|aspidistra|bar-room plant|Aspidistra elatio|herb|herbaceous plant +cast-off|2 +(adj)|discarded|throwaway|thrown-away|unwanted +(adj)|discarded|junked|scrap|waste|useless +cast about|1 +(verb)|beat about|cast around|research|search|explore +cast anchor|1 +(verb)|anchor|drop anchor|fasten|fix|secure +cast around|1 +(verb)|cast about|beat about|research|search|explore +cast aside|1 +(verb)|discard|fling|toss|toss out|toss away|chuck out|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +cast away|1 +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|put away|get rid of|remove +cast down|1 +(verb)|depress|deject|get down|dismay|dispirit|demoralize|demoralise|discourage +cast iron|1 +(noun)|iron|Fe|atomic number 26 +cast of characters|1 +(noun)|cast|dramatis personae|gathering|assemblage +cast off|2 +(verb)|shed|cast|shake off|throw|throw off|throw away|drop|remove|take|take away|withdraw +(verb)|sew|run up|sew together|stitch +cast on|1 +(verb)|sew|run up|sew together|stitch +cast out|2 +(verb)|banish|ban|ostracize|ostracise|shun|blackball|expel|throw out|kick out +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|throw away|cast away|put away|get rid of|remove +castanea|1 +(noun)|Castanea|genus Castanea|hamamelid dicot genus +castanea chrysophylla|1 +(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree +castanea crenata|1 +(noun)|Japanese chestnut|Castanea crenata|chestnut|chestnut tree +castanea dentata|1 +(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut|chestnut tree +castanea mollissima|1 +(noun)|Chinese chestnut|Castanea mollissima|chestnut|chestnut tree +castanea ozarkensis|1 +(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut|chestnut tree +castanea pumila|1 +(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut|chestnut tree +castanea sativa|1 +(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut|chestnut tree +castanets|1 +(noun)|bones|clappers|finger cymbals|maraca|percussion instrument|percussive instrument +castanopsis|1 +(noun)|Castanopsis|genus Castanopsis|hamamelid dicot genus +castanopsis chrysophylla|1 +(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree +castanospermum|1 +(noun)|Castanospermum|genus Castanospermum|rosid dicot genus +castaway|4 +(adj)|shipwrecked|unfortunate +(adj)|rejected|forsaken +(noun)|outcast|pariah|Ishmael|unfortunate|unfortunate person +(noun)|shipwreck survivor|abandoned person +caste|3 +(noun)|status|position +(noun)|class|social class|socio-economic class +(noun)|class|social class|socio-economic class +caste system|1 +(noun)|class structure +casteless|1 +(adj)|outcaste|unwanted +castellated|1 +(adj)|battlemented|castled|crenelated|crenellated|fancy +caster|3 +(noun)|worker +(noun)|castor|shaker +(noun)|castor|roller +caster sugar|1 +(noun)|castor sugar|powdered sugar +castigate|2 +(verb)|chastise|objurgate|chasten|correct|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +(verb)|punish|penalize|penalise +castigation|2 +(noun)|earful|bawling out|chewing out|upbraiding|going-over|dressing down|rebuke|reproof|reproval|reprehension|reprimand +(noun)|chastisement|punishment|penalty|penalization|penalisation +castile|1 +(noun)|Castile|Castilla|district|territory|territorial dominion|dominion +castile soap|1 +(noun)|soap +castilla|1 +(noun)|Castile|Castilla|district|territory|territorial dominion|dominion +castilleia|1 +(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus +castilleja|1 +(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus +castilleja chromosa|1 +(noun)|desert paintbrush|Castilleja chromosa|Indian paintbrush|painted cup +castilleja miniata|1 +(noun)|giant red paintbrush|Castilleja miniata|Indian paintbrush|painted cup +castilleja sessiliflora|1 +(noun)|great plains paintbrush|Castilleja sessiliflora|Indian paintbrush|painted cup +castilleja sulphurea|1 +(noun)|sulfur paintbrush|Castilleja sulphurea|Indian paintbrush|painted cup +casting|4 +(noun)|cast|copy +(noun)|molding|creating from raw materials +(noun)|cast|fishing|sportfishing +(noun)|choice|selection|option|pick +casting lots|1 +(noun)|drawing lots|sortition|decision|determination|conclusion +casting vote|1 +(noun)|vote|ballot|voting|balloting +castle|5 +(noun)|palace|mansion|mansion house|manse|hall|residence +(noun)|fortification|munition +(noun)|rook|chessman|chess piece +(noun)|castling|chess move +(verb)|move|go +castle in spain|1 +(noun)|reverie|revery|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream|dreaming +castle in the air|1 +(noun)|reverie|revery|daydream|daydreaming|oneirism|air castle|castle in Spain|dream|dreaming +castled|1 +(adj)|battlemented|castellated|crenelated|crenellated|fancy +castling|1 +(noun)|castle|chess move +castor|5 +(noun)|Castor|Alpha Geminorum|multiple star +(noun)|caster|shaker +(noun)|caster|roller +(noun)|beaver|fur hat +(noun)|Castor|genus Castor|mammal genus +castor-oil plant|1 +(noun)|castor bean plant|palma christi|palma christ|Ricinus communis|shrub|bush +castor bean|1 +(noun)|oilseed +castor bean plant|1 +(noun)|castor-oil plant|palma christi|palma christ|Ricinus communis|shrub|bush +castor canadensis|1 +(noun)|New World beaver|Castor canadensis|beaver +castor fiber|1 +(noun)|Old World beaver|Castor fiber|beaver +castor oil|1 +(noun)|purgative|cathartic|physic|aperient +castor sugar|1 +(noun)|caster sugar|powdered sugar +castoridae|1 +(noun)|Castoridae|family Castoridae|mammal family +castoroides|1 +(noun)|Castoroides|genus Castoroides|mammal genus +castrate|5 +(noun)|eunuch|man|adult male +(verb)|emasculate|weaken +(verb)|bowdlerize|bowdlerise|expurgate|shorten|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +(verb)|emasculate|demasculinize|demasculinise|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +(verb)|alter|neuter|spay|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +castrated|1 +(adj)|castrated |unsexed|altered|neutered|cut|emasculated|gelded|spayed +castration|3 +(noun)|emasculation|neutering|fixing|altering +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|expurgation|deletion +castration anxiety|1 +(noun)|anxiety|anxiousness +castrato|1 +(noun)|singer|vocalist|vocalizer|vocaliser +castries|1 +(noun)|Castries|national capital|port +castro|1 +(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist +castroism|1 +(noun)|Castroism|communism +casual|9 +(adj)|insouciant|nonchalant|unconcerned +(adj)|unplanned +(adj)|everyday|informal +(adj)|accidental|chance|unplanned +(adj)|cursory|passing|perfunctory|careless +(adj)|occasional|irregular +(adj)|fooling|light +(adj)|free-and-easy|informal +(adj)|effortless|easy +casually|1 +(adv)|nonchalantly +casualness|1 +(noun)|familiarity|informality +casualty|4 +(noun)|victim +(noun)|injured party|victim +(noun)|fatal accident|fatality|human death|accident +(noun)|decrease|lessening|drop-off +casualty care research center|1 +(noun)|Casualty Care Research Center|CCRC|agency|federal agency|government agency|bureau|office|authority +casuaridae|1 +(noun)|Casuaridae|family Casuaridae|bird family +casuariiformes|1 +(noun)|Casuariiformes|order Casuariiformes|animal order +casuarina|1 +(noun)|tree +casuarina equisetfolia|1 +(noun)|Australian pine|Casuarina equisetfolia|beefwood +casuarinaceae|1 +(noun)|Casuarinaceae|family Casuarinaceae|dicot family|magnoliopsid family +casuarinales|1 +(noun)|Casuarinales|order Casuarinales|plant order +casuarius|1 +(noun)|Casuarius|genus Casuarius|bird genus +casuist|1 +(noun)|sophist|reasoner|ratiocinator +casuistic|2 +(adj)|casuistical|argumentation|logical argument|line of reasoning|line +(adj)|casuistical|ethics|moral philosophy +casuistical|2 +(adj)|casuistic|argumentation|logical argument|line of reasoning|line +(adj)|casuistic|ethics|moral philosophy +casuistry|2 +(noun)|argumentation|logical argument|line of reasoning|line +(noun)|ethics|moral philosophy +casus belli|1 +(noun)|beginning +cat|10 +(noun)|true cat|feline|felid +(noun)|guy|hombre|bozo|man|adult male +(noun)|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger|woman|adult female +(noun)|kat|khat|qat|quat|Arabian tea|African tea|stimulant|stimulant drug +(noun)|cat-o'-nine-tails|whip +(noun)|Caterpillar|tracked vehicle +(noun)|big cat|feline|felid +(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying|X-radiation +(verb)|flog|welt|whip|lather|lash|slash|strap|trounce +(verb)|vomit|vomit up|purge|cast|sick|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +cat's-claw|1 +(noun)|catclaw|black bead|Pithecellodium unguis-cati|shrub|bush +cat's-ear|2 +(noun)|liliaceous plant +(noun)|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed +cat's-paw|2 +(noun)|instrument|pawn|assistant|helper|help|supporter +(noun)|hitch +cat's-tail|1 +(noun)|bullrush|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail +cat's cradle|1 +(noun)|child's game +cat's eye|1 +(noun)|opaque gem +cat's feet|2 +(noun)|cat's foot|pussytoes|Antennaria dioica|herb|herbaceous plant +(noun)|cat's foot|pussytoes|Antennaria dioica|herb|herbaceous plant +cat's foot|1 +(noun)|cat's feet|pussytoes|Antennaria dioica|herb|herbaceous plant +cat-o'-nine-tails|1 +(noun)|cat|whip +cat and mouse|1 +(noun)|cat and rat|child's game +cat and rat|1 +(noun)|cat and mouse|child's game +cat bear|1 +(noun)|lesser panda|red panda|panda|bear cat|Ailurus fulgens|procyonid +cat box|1 +(noun)|receptacle +cat burglar|1 +(noun)|housebreaker|burglar +cat chow|1 +(noun)|cat food|petfood|pet-food|pet food +cat cracker|1 +(noun)|catalytic cracker|chemical reactor +cat fancier|1 +(noun)|animal fancier +cat flea|1 +(noun)|Ctenocephalides felis|flea +cat food|1 +(noun)|cat chow|petfood|pet-food|pet food +cat rig|1 +(noun)|rig|rigging +cat scan|1 +(noun)|scan|CAT scan|picture|image|icon|ikon +cat scanner|1 +(noun)|computerized axial tomography scanner|CAT scanner|tomograph +cat scratch disease|1 +(noun)|disease +cat shark|1 +(noun)|shark +cat sleep|1 +(noun)|nap|catnap|forty winks|short sleep|snooze|sleeping +cat squirrel|2 +(noun)|red squirrel|Sciurus vulgaris|tree squirrel +(noun)|eastern gray squirrel|Sciurus carolinensis|tree squirrel +cat suit|1 +(noun)|leotard|unitard|body suit|garment +cat thyme|1 +(noun)|marum|Teucrium marum|germander +cat valium|1 +(noun)|K|jet|super acid|special K|honey oil|green|super C|ketamine|ketamine hydrochloride|Ketalar +cata-cornered|1 +(adj)|catacorner|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique +catabatic|1 +(adj)|katabatic +catabatic wind|1 +(noun)|katabatic wind|wind|air current|current of air +catabiosis|1 +(noun)|aging|ageing|senescence +catabolic|2 +(adj)|katabolic|organic process|biological process +(adj)|catabolic |katabolic|destructive-metabolic|energy-releasing +catabolise|1 +(verb)|catabolize|oxidize|oxidise|oxidate +catabolism|1 +(noun)|katabolism|dissimilation|destructive metabolism|organic process|biological process +catabolize|1 +(verb)|catabolise|oxidize|oxidise|oxidate +catacala|1 +(noun)|Catacala|genus Catacala|arthropod genus +catachresis|1 +(noun)|rhetorical device +catachrestic|1 +(adj)|catachrestical|rhetorical device +catachrestical|1 +(adj)|catachrestic|rhetorical device +cataclinal|1 +(adj)|cataclinal +cataclysm|2 +(noun)|catastrophe|geological phenomenon +(noun)|calamity|catastrophe|disaster|tragedy|misfortune|bad luck +cataclysmal|1 +(adj)|cataclysmic|destructive +cataclysmic|1 +(adj)|cataclysmal|destructive +catacomb|1 +(noun)|tunnel +catacorner|1 +(adj)|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique +catadromous|1 +(adj)|catadromous +catafalque|1 +(noun)|bier +cataflam|1 +(noun)|diclofenac potassium|Cataflam|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +catalan|4 +(adj)|Catalan|district|territory|territorial dominion|dominion +(adj)|Catalan|Romance|Romance language|Latinian language +(noun)|Catalan|Spaniard +(noun)|Catalan|Romance|Romance language|Latinian language +catalase|1 +(noun)|enzyme +catalatic|1 +(adj)|enzyme +catalectic|1 +(adj)|catalectic +catalepsy|1 +(noun)|hypersomnia +cataleptic|2 +(adj)|hypersomnia +(noun)|psychotic|psychotic person|psycho +catalexis|1 +(noun)|meter|metre|measure|beat|cadence +catalina cherry|1 +(noun)|Catalina cherry|Prunus lyonii|cherry|cherry tree +catalina island|1 +(noun)|Santa Catalina|Catalina Island|island +catalog|4 +(noun)|catalogue|book +(noun)|catalogue|list|listing +(verb)|catalogue|compose|compile +(verb)|catalogue|classify|class|sort|assort|sort out|separate +catalog buying|1 +(noun)|mail-order buying|buying|purchasing +cataloged procedure|1 +(noun)|routine|subroutine|subprogram|procedure|function +cataloger|1 +(noun)|cataloguer|librarian|bibliothec +catalogue|4 +(noun)|catalog|list|listing +(noun)|catalog|book +(verb)|catalog|classify|class|sort|assort|sort out|separate +(verb)|catalog|compose|compile +catalogued|1 +(adj)|listed +cataloguer|1 +(noun)|cataloger|librarian|bibliothec +catalonia|1 +(noun)|Catalonia|district|territory|territorial dominion|dominion +catalpa|1 +(noun)|Indian bean|bean tree +catalpa bignioides|1 +(noun)|Catalpa bignioides|catalpa|Indian bean +catalpa speciosa|1 +(noun)|Catalpa speciosa|catalpa|Indian bean +catalufa|1 +(noun)|Priacanthus arenatus|percoid fish|percoid|percoidean +catalyse|1 +(verb)|catalyze|change state|turn +catalysis|1 +(noun)|contact action|chemical process|chemical change|chemical action +catalyst|2 +(noun)|accelerator|activator +(noun)|causal agent|cause|causal agency +catalytic|1 +(adj)|chemical process|chemical change|chemical action +catalytic converter|1 +(noun)|converter|convertor +catalytic cracker|1 +(noun)|cat cracker|chemical reactor +catalyze|1 +(verb)|catalyse|change state|turn +catamaran|1 +(noun)|sailboat|sailing boat +catamenia|1 +(noun)|menstruation|menses|menstruum|period|flow|discharge|emission|expelling +catamenial|1 +(adj)|menstrual +catamount|2 +(noun)|lynx|wildcat +(noun)|cougar|puma|mountain lion|painter|panther|Felis concolor|wildcat +catamountain|1 +(noun)|European wildcat|Felis silvestris|wildcat +catananche|1 +(noun)|flower +catananche caerula|1 +(noun)|blue succory|cupid's dart|Catananche caerula|catananche +cataphasia|1 +(noun)|speech disorder|speech defect|defect of speech +cataphatic|1 +(adj)|religion|faith|religious belief +cataphatism|1 +(noun)|religion|faith|religious belief +cataphoresis|1 +(noun)|electrophoresis|dielectrolysis|ionophoresis|natural process|natural action|action|activity +cataphoretic|1 +(adj)|electrophoretic|natural process|natural action|action|activity +cataphract|1 +(noun)|body armor|body armour|suit of armor|suit of armour|coat of mail|armor|armour +cataphyll|1 +(noun)|leaf|leafage|foliage +cataplasia|1 +(noun)|degeneration|retrogression +cataplasm|1 +(noun)|poultice|plaster|dressing|medical dressing +cataplastic|1 +(adj)|degeneration|retrogression +catapres|1 +(noun)|clonidine|Catapres|antihypertensive|antihypertensive drug +catapult|5 +(noun)|slingshot|sling|plaything|toy +(noun)|launcher|device +(noun)|arbalest|arbalist|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +(verb)|propel|impel +(verb)|sling|hurl|hurtle|cast +catapultian|1 +(adj)|catapultic|artillery|heavy weapon|gun|ordnance +catapultic|1 +(adj)|catapultian|artillery|heavy weapon|gun|ordnance +cataract|2 +(noun)|eye disease +(noun)|waterfall|falls +cataract canyon|1 +(noun)|Cataract Canyon|gorge +catarrh|1 +(noun)|inflammation|redness|rubor +catarrhal|1 +(adj)|inflammation|redness|rubor +catarrhine|2 +(adj)|catarrhine |catarrhinian +(noun)|Old World monkey|monkey +catarrhinian|1 +(adj)|catarrhine +catasetum|1 +(noun)|Catasetum|genus Catasetum|monocot genus|liliopsid genus +catasetum macrocarpum|1 +(noun)|jumping orchid|Catasetum macrocarpum|orchid|orchidaceous plant +catastrophe|3 +(noun)|calamity|disaster|tragedy|cataclysm|misfortune|bad luck +(noun)|disaster|adversity|hardship|hard knocks +(noun)|cataclysm|geological phenomenon +catastrophic|1 +(adj)|ruinous|harmful +catastrophic illness|1 +(noun)|illness|unwellness|malady|sickness +catatonia|2 +(noun)|tonicity|tonus|tone +(noun)|catatonic schizophrenia|catatonic type schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +catatonic|1 +(adj)|tonicity|tonus|tone +catatonic schizophrenia|1 +(noun)|catatonic type schizophrenia|catatonia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +catatonic type schizophrenia|1 +(noun)|catatonic schizophrenia|catatonia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +catawba|3 +(noun)|Catawba|Sioux|Siouan +(noun)|Catawba|fox grape|slip-skin grape +(noun)|Catawba|Siouan|Siouan language +catbird|2 +(noun)|bowerbird|oscine|oscine bird +(noun)|gray catbird|Dumetella carolinensis|oscine|oscine bird +catboat|1 +(noun)|sailboat|sailing boat +catbrier|1 +(noun)|bullbrier|greenbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine +catcall|2 +(noun)|cry|outcry|call|yell|shout|vociferation +(verb)|deride +catch|38 +(noun)|drawback +(noun)|haul|indefinite quantity +(noun)|match|adult|grownup +(noun)|object|physical object +(noun)|manner of speaking|speech|delivery +(noun)|stop|restraint|constraint +(noun)|fastener|fastening|holdfast|fixing +(noun)|game +(noun)|grab|snatch|snap|touch|touching +(noun)|apprehension|arrest|collar|pinch|taking into custody|capture|gaining control|seizure +(verb)|surprise +(verb)|pick up|perceive|comprehend +(verb)|get|hit +(verb)|grab|take hold of|seize|prehend|clutch|catch up +(verb)|get|capture|seize|prehend|clutch +(verb)|hitch|attach +(verb)|arrest|get|attract|pull|pull in|draw|draw in +(verb)|capture|get|acquire +(verb)|board|get on +(verb)|get|acquire +(verb)|overtake|catch up with +(verb)|change +(verb)|control|hold in|hold|contain|check|curb|moderate +(verb)|take in|overhear|hear +(verb)|watch|view|see|take in|watch +(verb)|trip up|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +(verb)|get|understand +(verb)|contract|take|get +(verb)|erupt|ignite|catch fire|take fire|combust|conflagrate +(verb)|get|hear +(verb)|get|hurt|ache|suffer +(verb)|capture|enamour|trance|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +(verb)|get|reproduce +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|spread|propagate +(verb)|play +(verb)|witness|find|see +(verb)|delay|detain|hold up +catch a glimpse|1 +(verb)|get a look|see +catch a wink|1 +(verb)|nap|catnap|sleep|kip|slumber|log Z's|catch some Z's +catch cold|1 +(verb)|catch +catch crop|1 +(noun)|crop|harvest +catch fire|1 +(verb)|erupt|ignite|take fire|combust|conflagrate|change state|turn +catch on|2 +(verb)|get wise|get onto|tumble|latch on|cotton on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +(verb)|change +catch one's breath|1 +(verb)|rest|breathe|take a breather|pause|intermit|break +catch out|1 +(verb)|find out|detect|observe|find|discover|notice +catch phrase|2 +(noun)|catchphrase|phrase|motto|slogan|catchword|shibboleth +(noun)| +catch some z's|1 +(verb)|sleep|kip|slumber|log Z's|catch some Z's|rest +catch up|2 +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|learn|larn|acquire +catch up with|2 +(verb)|overtake|catch +(verb)|make up|recover|recoup|recuperate +catchall|1 +(noun)|enclosure|receptacle +catcher|2 +(noun)|infielder +(noun)|plate|position +catcher's mask|1 +(noun)|face mask|baseball equipment +catchfly|2 +(noun)|silene|campion|flower +(noun)|lychnis|flower +catching|4 +(adj)|communicable|contagious|contractable|transmissible|transmittable|infectious +(noun)|playing +(noun)|detection|espial|spying|spotting|discovery|find|uncovering +(noun)|contracting|acquiring|getting +catchment|1 +(noun)|structure|construction +catchment area|1 +(noun)|catchment basin|drainage area|drainage basin|geographical area|geographic area|geographical region|geographic region +catchment basin|1 +(noun)|catchment area|drainage area|drainage basin|geographical area|geographic area|geographical region|geographic region +catchpenny|1 +(adj)|cheap |inexpensive +catchphrase|1 +(noun)|catch phrase|phrase|motto|slogan|catchword|shibboleth +catchweed|1 +(noun)|cleavers|clivers|goose grass|spring cleavers|Galium aparine|bedstraw +catchword|1 +(noun)|motto|slogan|shibboleth|saying|expression|locution +catchy|2 +(adj)|tricky|difficult |hard +(adj)|attention-getting|appealing +catclaw|1 +(noun)|cat's-claw|black bead|Pithecellodium unguis-cati|shrub|bush +catechesis|1 +(noun)|teaching|instruction|pedagogy +catechetic|2 +(adj)|catechistic|interrogation|examination|interrogatory +(adj)|catechetical|teaching|instruction|pedagogy +catechetical|1 +(adj)|catechetic|teaching|instruction|pedagogy +catechetical instruction|1 +(noun)|teaching|instruction|pedagogy +catechise|2 +(verb)|catechize|teach|learn|instruct +(verb)|catechize|examine +catechism|2 +(noun)|interrogation|examination|interrogatory +(noun)|book +catechismal|1 +(adj)|book +catechist|1 +(noun)|teacher|instructor +catechistic|1 +(adj)|catechetic|interrogation|examination|interrogatory +catechize|2 +(verb)|catechise|examine +(verb)|catechise|teach|learn|instruct +catecholamine|1 +(noun)|hormone|endocrine|internal secretion +catechu|2 +(noun)|black catechu|infusion|extract +(noun)|Jerusalem thorn|Acacia catechu|acacia +catechumen|1 +(noun)|neophyte|student|pupil|educatee +categorem|1 +(noun)|categoreme|term +categorematic|1 +(adj)|categorematic |autosemantic +categoreme|1 +(noun)|categorem|term +categorial|1 +(adj)|concept|conception|construct +categoric|1 +(adj)|categorical|flat|unconditional|unqualified +categorical|2 +(adj)|collection|aggregation|accumulation|assemblage +(adj)|categoric|flat|unconditional|unqualified +categorical imperative|1 +(noun)|moral principle +categorically|1 +(adv)|flatly|unconditionally +categorisation|3 +(noun)|classification|categorization|arrangement +(noun)|classification|categorization|sorting|basic cognitive process +(noun)|categorization|classification|compartmentalization|compartmentalisation|assortment|grouping +categorise|1 +(verb)|categorize|reason +categorised|1 +(adj)|categorized|classified +categorization|3 +(noun)|classification|categorisation|arrangement +(noun)|classification|categorisation|sorting|basic cognitive process +(noun)|categorisation|classification|compartmentalization|compartmentalisation|assortment|grouping +categorize|1 +(verb)|categorise|reason +categorized|1 +(adj)|categorised|classified +category|2 +(noun)|class|family|collection|aggregation|accumulation|assemblage +(noun)|concept|conception|construct +catena|1 +(noun)|chain|concatenation +catenary|1 +(noun)|curve|curved shape +catenate|1 +(verb)|catenulate|arrange|set up +catenulate|2 +(adj)|chainlike|formed +(verb)|catenate|arrange|set up +cater|2 +(verb)|provide|supply|ply|give +(verb)|provide|supply|ply +cater-cornered|1 +(adj)|catacorner|cata-cornered|catercorner|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique +catercorner|1 +(adj)|catacorner|cata-cornered|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique +caterer|1 +(noun)|supplier|provider +catering|1 +(noun)|occupation|business|job|line of work|line +caterpillar|2 +(noun)|larva +(noun)|Caterpillar|cat|tracked vehicle +caterpillar-tracked|1 +(adj)|tracked +caterpillar track|1 +(noun)|track|caterpillar tread|belt +caterpillar tread|1 +(noun)|track|caterpillar track|belt +caterwaul|2 +(noun)|cry +(verb)|yowl|shriek|shrill|pipe up|pipe +catfish|3 +(noun)|mudcat|freshwater fish +(noun)|wolffish|wolf fish|blennioid fish|blennioid +(noun)|siluriform fish|soft-finned fish|malacopterygian +catgut|2 +(noun)|goat's rue|wild sweet pea|Tephrosia virginiana|hoary pea +(noun)|gut|cord +catha|1 +(noun)|Catha|genus Catha|gymnosperm genus +catha edulis|1 +(noun)|Catha edulis|shrub|bush +catharacta|1 +(noun)|Catharacta|genus Catharacta|bird genus +catharacta skua|1 +(noun)|great skua|Catharacta skua|skua|bonxie +catharanthus|1 +(noun)|Catharanthus|genus Catharanthus|dicot genus|magnoliopsid genus +catharanthus roseus|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +cathari|1 +(noun)|Albigenses|Cathars|Cathari|sect|religious sect|religious order +catharism|1 +(noun)|Albigensianism|Catharism|Christianity|Christian religion|heresy|unorthodoxy +cathars|1 +(noun)|Albigenses|Cathars|Cathari|sect|religious sect|religious order +catharsis|2 +(noun)|katharsis|abreaction|purge|purging +(noun)|katharsis|purgation|purge|purging +cathartes|1 +(noun)|Cathartes|genus Cathartes|bird genus +cathartes aura|1 +(noun)|buzzard|turkey buzzard|turkey vulture|Cathartes aura|New World vulture|cathartid +cathartic|4 +(adj)|psychotherapeutic|healthful +(adj)|releasing|emotional +(adj)|evacuant|purgative|laxative +(noun)|purgative|physic|aperient|medicine|medication|medicament|medicinal drug +cathartid|1 +(noun)|New World vulture|vulture +cathartidae|1 +(noun)|Cathartidae|family Cathartidae|bird family +cathay|1 +(noun)|Cathay|China|People's Republic of China|mainland China|Communist China|Red China|PRC +cathaya|1 +(noun)|Cathaya|conifer|coniferous tree +cathect|1 +(verb)|stimulate|arouse|brace|energize|energise|perk up +cathectic|1 +(adj)|libidinal energy +cathedra|1 +(noun)|bishop's throne|throne +cathedral|3 +(adj)|throne +(noun)|church|church building +(noun)|church|church building +cather|1 +(noun)|Cather|Willa Cather|Willa Sibert Cather|writer|author +catherine|2 +(noun)|Catherine of Aragon|Catherine|wife|married woman +(noun)|Catherine II|Catherine|Catherine the Great|Empress +catherine de medicis|1 +(noun)|Catherine de Medicis|queen|regent +catherine howard|1 +(noun)|Howard|Catherine Howard|queen +catherine i|1 +(noun)|Catherine I|Empress +catherine ii|1 +(noun)|Catherine II|Catherine|Catherine the Great|Empress +catherine of aragon|1 +(noun)|Catherine of Aragon|Catherine|wife|married woman +catherine parr|1 +(noun)|Parr|Catherine Parr|queen +catherine the great|1 +(noun)|Catherine II|Catherine|Catherine the Great|Empress +catherine wheel|1 +(noun)|pinwheel|firework|pyrotechnic +catheter|1 +(noun)|tube|tubing +catheterise|1 +(verb)|catheterize|insert|enclose|inclose|stick in|put in|introduce +catheterize|1 +(verb)|catheterise|insert|enclose|inclose|stick in|put in|introduce +cathexis|1 +(noun)|charge|libidinal energy +cathode|2 +(noun)|electrode +(noun)|terminal|terminus|depot +cathode-ray oscilloscope|1 +(noun)|oscilloscope|scope|CRO|electronic equipment +cathode-ray tube|1 +(noun)|CRT|gas-discharge tube +cathode ray|1 +(noun)|beam|ray|electron beam +cathodic|1 +(adj)|cathodic |electrode +catholic|3 +(adj)|Catholic|Christianity|Christian religion +(adj)|broad-minded +(noun)|Catholic|Christian +catholic church|1 +(noun)|Catholic Church|church|Christian church +catholic pope|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +catholic reaction force|1 +(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +catholic school|1 +(noun)|Catholic school|church school|parochial school +catholicise|1 +(verb)|catholicize|latinize|latinise|convert +catholicism|1 +(noun)|Catholicism|Catholicity|Christianity|Christian religion +catholicity|2 +(noun)|Catholicism|Catholicity|Christianity|Christian religion +(noun)|universality|generality +catholicize|1 +(verb)|catholicise|latinize|latinise|convert +catholicos|1 +(noun)|Catholicos|spiritual leader +cathouse|1 +(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|sporting house|building|edifice +cation|1 +(noun)|ion +cationic|1 +(adj)|cationic |ion +cationic detergent|1 +(noun)|invert soap|detergent +catjang pea|1 +(noun)|pigeon pea|pigeon-pea plant|cajan pea|red gram|dhal|dahl|Cajanus cajan|shrub|bush +catkin|1 +(noun)|ament|inflorescence +catkinate|1 +(adj)|inflorescence +catling|1 +(noun)|surgical knife +catmint|1 +(noun)|catnip|Nepeta cataria|herb|herbaceous plant +catnap|2 +(noun)|nap|cat sleep|forty winks|short sleep|snooze|sleeping +(verb)|nap|catch a wink|sleep|kip|slumber|log Z's|catch some Z's +catnip|1 +(noun)|catmint|Nepeta cataria|herb|herbaceous plant +catocala nupta|1 +(noun)|red underwing|Catocala nupta|underwing +catoptric|1 +(adj)|catoptrical|optics +catoptrical|1 +(adj)|catoptric|optics +catoptrics|1 +(noun)|optics +catoptrophorus|1 +(noun)|Catoptrophorus|genus Catoptrophorus|bird genus +catoptrophorus semipalmatus|1 +(noun)|willet|Catoptrophorus semipalmatus|tattler +catostomid|1 +(noun)|cypriniform fish +catostomidae|1 +(noun)|Catostomidae|family Catostomidae|fish family +catostomus|1 +(noun)|Catostomus|genus Catostomus|fish genus +catskill mountains|1 +(noun)|Catskills|Catskill Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +catskills|1 +(noun)|Catskills|Catskill Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +catsup|1 +(noun)|ketchup|cetchup|tomato ketchup|condiment +catsup bottle|1 +(noun)|ketchup bottle|bottle +cattail|1 +(noun)|marsh plant|bog plant|swamp plant +cattail family|1 +(noun)|Typhaceae|family Typhaceae|monocot family|liliopsid family +cattail millet|1 +(noun)|pearl millet|bulrush millet|Pennisetum glaucum|Pennisetum Americanum|cereal|cereal grass +cattalo|1 +(noun)|beefalo|beef|beef cattle +cattell|2 +(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist +(noun)|Cattell|James McKeen Cattell|psychologist|editor|editor in chief +cattie|1 +(noun)|catty|weight unit|weight +cattiness|1 +(noun)|bitchiness|spite|spitefulness|nastiness|malevolence|malevolency|malice +cattish|1 +(adj)|bitchy|catty|malevolent |malicious +cattle|1 +(noun)|cows|kine|oxen|Bos taurus|bovine +cattle boat|1 +(noun)|cattleship|cargo ship|cargo vessel +cattle breeding|1 +(noun)|breeding +cattle cake|1 +(noun)|feed|provender +cattle car|1 +(noun)|freight car +cattle drive|1 +(noun)|drive +cattle egret|1 +(noun)|Bubulcus ibis|egret +cattle farm|1 +(noun)|ranch|spread|cattle ranch|farm +cattle grid|1 +(noun)|cattle guard|bridge|span +cattle guard|1 +(noun)|cattle grid|bridge|span +cattle pen|1 +(noun)|cow pen|corral|pen +cattle plague|1 +(noun)|rinderpest|animal disease +cattle ranch|1 +(noun)|ranch|spread|cattle farm|farm +cattle thief|1 +(noun)|rustler|thief|stealer +cattle trail|1 +(noun)|trail +cattleman|2 +(noun)|cow man|beef man|stockman|stock raiser|stock farmer +(noun)|cowboy|cowpuncher|puncher|cowman|cowpoke|cowhand|cowherd|ranch hand +cattleship|1 +(noun)|cattle boat|cargo ship|cargo vessel +cattley guava|1 +(noun)|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree +cattleya|1 +(noun)|orchid|orchidaceous plant +cattleya citrina|1 +(noun)|tulip orchid|Encyclia citrina|Cattleya citrina|orchid|orchidaceous plant +catty|2 +(adj)|bitchy|cattish|malevolent |malicious +(noun)|cattie|weight unit|weight +catty-corner|1 +(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-cornered|kitty-corner|kitty-cornered|oblique +catty-cornered|1 +(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|kitty-corner|kitty-cornered|oblique +catullus|1 +(noun)|Catullus|Gaius Valerius Catullus|poet +catwalk|2 +(noun)|platform +(noun)|walk|walkway|paseo +caucasia|1 +(noun)|Caucasia|Caucasus|geographical area|geographic area|geographical region|geographic region +caucasian|4 +(adj)|Caucasian|Caucasic|geographical area|geographic area|geographical region|geographic region +(adj)|white |caucasoid|light-skinned +(noun)|White|white person|Caucasian|person|individual|someone|somebody|mortal|human|soul +(noun)|Caucasian|Caucasian language|natural language|tongue +caucasian language|1 +(noun)|Caucasian|Caucasian language|natural language|tongue +caucasian race|1 +(noun)|White race|White people|Caucasoid race|Caucasian race|race +caucasian walnut|1 +(noun)|Caucasian walnut|Pterocarya fraxinifolia|wing nut|wing-nut +caucasic|1 +(adj)|Caucasian|Caucasic|geographical area|geographic area|geographical region|geographic region +caucasoid|1 +(adj)|white |caucasian +caucasoid race|1 +(noun)|White race|White people|Caucasoid race|Caucasian race|race +caucasus|2 +(noun)|Caucasus|Caucasus Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Caucasia|Caucasus|geographical area|geographic area|geographical region|geographic region +caucasus mountains|1 +(noun)|Caucasus|Caucasus Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +caucus|2 +(noun)|meeting +(verb)|meet|gather|assemble|forgather|foregather +cauda|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +caudal|4 +(adj)|caudal |process|outgrowth|appendage +(adj)|taillike|caudate |caudated +(adj)|posterior +(adv)|caudally +caudal anaesthesia|1 +(noun)|caudal anesthesia|caudal block|regional anesthesia|regional anaesthesia +caudal anesthesia|1 +(noun)|caudal anaesthesia|caudal block|regional anesthesia|regional anaesthesia +caudal appendage|1 +(noun)|tail +caudal block|1 +(noun)|caudal anesthesia|caudal anaesthesia|regional anesthesia|regional anaesthesia +caudal fin|1 +(noun)|tail fin|fin +caudal vertebra|1 +(noun)|coccygeal vertebra|vertebra +caudally|1 +(adv)|caudal +caudata|1 +(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order +caudate|4 +(adj)|caudate |caudated|bobtail|bobtailed|caudal|taillike|tailed|scissor-tailed|swallow-tailed +(adj)|simple |unsubdivided +(noun)|caudate nucleus|basal ganglion +(noun)|urodele|amphibian +caudate nucleus|1 +(noun)|caudate|basal ganglion +caudated|1 +(adj)|caudate |bobtail|bobtailed|caudal|taillike|tailed|scissor-tailed|swallow-tailed +caudex|2 +(noun)|stock|stalk|stem +(noun)|stalk|stem +caudine forks|1 +(noun)|Caudine Forks|pitched battle +caught up|1 +(adj)|involved +caul|2 +(noun)|greater omentum|gastrocolic omentum|omentum +(noun)|veil|embryonic membrane|fetal membrane +cauldron|1 +(noun)|caldron|pot +caulescent|1 +(adj)|caulescent |cauline|stemmed +cauliflower|2 +(noun)|Brassica oleracea botrytis|crucifer|cruciferous plant +(noun)|cruciferous vegetable +cauliflower ear|1 +(noun)|auricle|pinna|ear +cauline|2 +(adj)|caulescent |stemmed +(adj)|cauline +caulk|1 +(verb)|calk|seal|seal off +caulked|2 +(adj)|caulked |chinked|stopped-up|weather-stripped +(adj)|seaworthy +caulophyllum|1 +(noun)|Caulophyllum|genus Caulophyllum|magnoliid dicot genus +caulophyllum thalictrioides|1 +(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +caulophyllum thalictroides|1 +(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +causa|1 +(noun)|lawsuit|suit|case|cause|proceeding|legal proceeding|proceedings +causal|1 +(adj)|causative +causal agency|1 +(noun)|causal agent|cause|entity +causal agent|1 +(noun)|cause|causal agency|entity +causal factor|1 +(noun)|determinant|determiner|determinative|determining factor|cognitive factor +causalgia|1 +(noun)|pain|hurting +causality|1 +(noun)|relation +causation|1 +(noun)|causing|deed|feat|effort|exploit +causative|1 +(adj)|causative |abortifacient|anorectic|anorexigenic|activating|actuating|borne in upon|causal|conducive|contributing|contributive|contributory|tributary|errhine|inductive|inducive|motivative|motive|motivating|motive|motor|precipitating|responsible|responsible for|sternutatory|sternutative +cause|7 +(noun)|origin|origination|inception +(noun)|reason|grounds|justification +(noun)|campaign|crusade|drive|movement|effort|venture +(noun)|causal agent|causal agency|entity +(noun)|lawsuit|suit|case|causa|proceeding|legal proceeding|proceedings +(verb)|do|make|make|create +(verb)|induce|stimulate|have|get|make +cause celebre|1 +(noun)|incident +cause of death|1 +(noun)|killer|causal agent|cause|causal agency +cause to sleep|1 +(verb)|change|alter|modify +causeless|2 +(adj)|reasonless|unmotivated +(adj)|fortuitous|uncaused|unintended +causerie|1 +(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|chat|confab|confabulation|schmooze|schmoose +causeway|3 +(noun)|road|route +(verb)|supply|provide|render|furnish +(verb)|pave +causing|1 +(noun)|causation|deed|feat|effort|exploit +caustic|3 +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant +(adj)|corrosive|erosive|vitriolic|destructive +(noun)|compound|chemical compound +caustic lime|1 +(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|calcium hydrate|lime hydrate|hydroxide|hydrated oxide +caustic potash|1 +(noun)|potash|potassium hydroxide|hydroxide|hydrated oxide +caustic remark|1 +(noun)|sarcasm|irony|satire|wit|humor|humour|witticism|wittiness +caustic soda|1 +(noun)|sodium hydroxide|hydroxide|hydrated oxide +caustically|1 +(adv)|vitriolically +cauterant|1 +(noun)|cautery|instrument +cauterisation|1 +(noun)|cautery|cauterization|operation|surgery|surgical operation|surgical procedure|surgical process +cauterise|2 +(verb)|cauterize|burn|treat|care for +(verb)|callous|cauterize|inure|harden|indurate +cauterization|1 +(noun)|cautery|cauterisation|operation|surgery|surgical operation|surgical procedure|surgical process +cauterize|2 +(verb)|cauterise|burn|treat|care for +(verb)|callous|cauterise|inure|harden|indurate +cautery|2 +(noun)|cauterant|instrument +(noun)|cauterization|cauterisation|operation|surgery|surgical operation|surgical procedure|surgical process +caution|5 +(noun)|cautiousness|carefulness|attentiveness +(noun)|caveat|warning +(noun)|precaution|care|forethought|judiciousness +(noun)|circumspection|discretion|discernment +(verb)|admonish|monish|warn +cautionary|2 +(adj)|preventive|prophylactic|protective +(adj)|admonitory|exemplary|monitory|warning|dissuasive +cautious|5 +(adj)|cautious |cagey|cagy|chary|fabian|dilatory|gingerly|guarded|restrained|overcautious|careful|unadventurous +(adj)|conservative|moderate +(adj)|careful +(adj)|unadventurous +(noun)|timid|people +cautious statement|1 +(noun)|statement +cautiously|2 +(adv)|carefully|with kid gloves +(adv)|conservatively|guardedly +cautiousness|1 +(noun)|caution|carefulness|attentiveness +cavalcade|1 +(noun)|procession +cavalier|3 +(adj)|high-handed|domineering +(noun)|chevalier|male aristocrat +(noun)|Cavalier|monarchist|royalist +cavalier hat|1 +(noun)|slouch hat|hat|chapeau|lid +cavalierly|1 +(adv)|disdainfully +cavalla|1 +(noun)|king mackerel|cero|Scomberomorus cavalla|Spanish mackerel +cavalry|2 +(noun)|horse cavalry|horse|military personnel|soldiery|troops +(noun)|army unit +cavalry horse|1 +(noun)|warhorse +cavalry sword|1 +(noun)|saber|sabre|sword|blade|brand|steel +cavalryman|2 +(noun)|trooper|soldier +(noun)|trooper|soldier +cave|3 +(noun)|enclosure|natural enclosure +(verb)|undermine|hollow|hollow out|core out +(verb)|spelunk|explore +cave bat|1 +(noun)|pallid bat|Antrozous pallidus|vespertilian bat|vespertilionid +cave dweller|1 +(noun)|caveman|cave man|troglodyte|primitive|primitive person +cave in|2 +(noun)|subsidence|collapse +(verb)|collapse|fall in|give|give way|break|founder|change +cave man|2 +(noun)|caveman|cave dweller|troglodyte|primitive|primitive person +(noun)| +cave myotis|1 +(noun)|Myotis velifer|vespertilian bat|vespertilionid +caveat|2 +(noun)|caution|warning +(noun)|notice +caveat emptor|1 +(noun)|principle|precept +cavell|1 +(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse +caveman|1 +(noun)|cave man|cave dweller|troglodyte|primitive|primitive person +cavendish|1 +(noun)|Cavendish|Henry Cavendish|chemist|physicist +cavern|3 +(noun)|enclosure|natural enclosure +(noun)|cave +(verb)|cavern out|hollow|hollow out|core out +cavern out|1 +(verb)|cavern|hollow|hollow out|core out +cavernous|2 +(adj)|hollow +(adj)|erectile|expansive +cavernous sinus|1 +(noun)|sinus cavernosus|venous sinus|sinus +cavetto|1 +(noun)|molding|moulding +cavia|1 +(noun)|Cavia|genus Cavia|mammal genus +cavia cobaya|1 +(noun)|guinea pig|Cavia cobaya|cavy +cavia porcellus|1 +(noun)|aperea|wild cavy|Cavia porcellus|cavy +caviar|1 +(noun)|caviare|roe|hard roe +caviare|1 +(noun)|caviar|roe|hard roe +caviidae|1 +(noun)|Caviidae|family Caviidae|mammal family +cavil|2 +(noun)|quibble|quiddity|evasion|equivocation +(verb)|carp|chicane|object +caviler|1 +(noun)|quibbler|caviller|pettifogger|disputant|controversialist|eristic +caviling|1 +(adj)|carping|nitpicking|pettifogging|quibbling|critical +caviller|1 +(noun)|quibbler|caviler|pettifogger|disputant|controversialist|eristic +cavitied|1 +(adj)|alveolate|faveolate|honeycombed|pitted|cellular +cavity|4 +(noun)|pit|hole|hollow +(noun)|enclosed space|space +(noun)|caries|dental caries|tooth decay|decay +(noun)|bodily cavity|cavum|structure|anatomical structure|complex body part|bodily structure|body structure +cavity resonator|1 +(noun)|resonator|resonating chamber|chamber +cavity wall|1 +(noun)|wall +caviuna wood|1 +(noun)|Brazilian rosewood|jacaranda|Dalbergia nigra|rosewood|rosewood tree +cavort|1 +(verb)|frolic|lark|rollick|skylark|disport|sport|gambol|frisk|romp|run around|lark about|play +cavum|1 +(noun)|cavity|bodily cavity|structure|anatomical structure|complex body part|bodily structure|body structure +cavy|1 +(noun)|rodent|gnawer|gnawing animal +caw|2 +(noun)|cry +(verb)|utter|emit|let out|let loose +caxton|1 +(noun)|Caxton|William Caxton|printer|pressman +cay|1 +(noun)|key|Florida keys|coral reef +cayenne|3 +(noun)|cayenne pepper|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +(noun)|cayenne pepper|red pepper|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|cayenne pepper|chili|chili pepper|chilli|chilly|chile +cayenne jasmine|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +cayenne pepper|3 +(noun)|cayenne|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +(noun)|cayenne|red pepper|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|cayenne|chili|chili pepper|chilli|chilly|chile +cayman|1 +(noun)|caiman|crocodilian reptile|crocodilian +cayman islands|1 +(noun)|Cayman Islands|island +cayman islands dollar|1 +(noun)|Cayman Islands dollar|dollar +cayuga|2 +(noun)|Cayuga|Iroquois +(noun)|Cayuga|Iroquoian|Iroquois|Iroquoian language +cayuga lake|1 +(noun)|Cayuga Lake|Lake Cayuga|lake +cayuse|1 +(noun)|Indian pony|pony +cazique|1 +(noun)|cacique|New World oriole|American oriole|oriole +cbc|1 +(noun)|complete blood count|CBC|blood profile|blood count +cbr|1 +(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation +cc|2 +(adj)|two hundred|200|cardinal +(noun)|milliliter|millilitre|mil|ml|cubic centimeter|cubic centimetre|metric capacity unit +ccc|1 +(adj)|three hundred|300|cardinal +ccrc|1 +(noun)|Casualty Care Research Center|CCRC|agency|federal agency|government agency|bureau|office|authority +cd|5 +(adj)|four hundred|400|cardinal +(noun)|cadmium|Cd|atomic number 48|metallic element|metal +(noun)|candle|candela|standard candle|luminous intensity unit|candlepower unit +(noun)|certificate of deposit|CD|debt instrument|certificate of indebtedness +(noun)|compact disk|compact disc|CD|optical disk|optical disc|recording +cd-r|1 +(noun)|CD-R|compact disc recordable|CD-WO|compact disc write-once|compact disk|compact disc|CD +cd-rom|1 +(noun)|CD-ROM|compact disc read-only memory|compact disk|compact disc|CD|read-only memory|ROM|read-only storage|fixed storage +cd-rom drive|1 +(noun)|CD-ROM drive|drive +cd-wo|1 +(noun)|CD-R|compact disc recordable|CD-WO|compact disc write-once|compact disk|compact disc|CD +cd4 cell|1 +(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell|T lymphocyte +cd4 t cell|1 +(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell|T lymphocyte +cd8 cell|1 +(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell|T lymphocyte +cd8 t cell|1 +(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell|T lymphocyte +cd burner|1 +(noun)|compact-disk burner|CD burner|recorder|recording equipment|recording machine +cd drive|1 +(noun)|CD drive|drive +cd player|1 +(noun)|CD player|electronic equipment +cdc|1 +(noun)|Center for Disease Control and Prevention|CDC|agency|federal agency|government agency|bureau|office|authority +cdna|1 +(noun)|complementary DNA|cDNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +ce|1 +(noun)|cerium|Ce|atomic number 58|metallic element|metal +cease|3 +(noun)|end|ending +(verb)|discontinue|stop|give up|quit|lay off +(verb)|end|stop|finish|terminate +cease-fire|1 +(noun)|armistice|truce|peace +cease and desist order|1 +(noun)|injunction|enjoining|enjoinment|prohibition|ban|proscription +ceaseless|1 +(adj)|constant|incessant|never-ending|perpetual|unceasing|unremitting|continuous |uninterrupted +ceaselessly|1 +(adv)|endlessly|incessantly|unceasingly|unendingly|continuously +ceaselessness|1 +(noun)|continuousness|incessancy|incessantness|endlessness +cebidae|1 +(noun)|Cebidae|family Cebidae|mammal family +cebu|2 +(noun)|Cebu|Cebu City|city|metropolis|urban center +(noun)|Cebu|island +cebu city|1 +(noun)|Cebu|Cebu City|city|metropolis|urban center +cebu maguey|1 +(noun)|cantala|Cebu maguey|manila maguey|fiber|fibre +cebuan|2 +(noun)|Cebuan|Visayan|Bisayan +(noun)|Cebuan|Cebuano|Philippine|Filipino +cebuano|1 +(noun)|Cebuan|Cebuano|Philippine|Filipino +cebuella|1 +(noun)|Cebuella|genus Cebuella|mammal genus +cebuella pygmaea|1 +(noun)|pygmy marmoset|Cebuella pygmaea|marmoset +cebus|3 +(noun)|Cebus|genus Cebus|mammal genus +(noun)|Cebu|Cebu City|city|metropolis|urban center +(noun)|Cebu|island +cebus capucinus|1 +(noun)|capuchin|ringtail|Cebus capucinus|New World monkey|platyrrhine +cecal|1 +(adj)|caecal|cavity|bodily cavity|cavum +cecal appendage|1 +(noun)|appendix|vermiform appendix|vermiform process|process|outgrowth|appendage +cecidomyidae|1 +(noun)|Cecidomyidae|family Cecidomyidae|arthropod family +cecil b. demille|1 +(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker|filmmaker|film producer|movie maker +cecil blount demille|1 +(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker|filmmaker|film producer|movie maker +cecil frank powell|1 +(noun)|Powell|Cecil Frank Powell|physicist +cecil j. rhodes|1 +(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier|moneyman|colonizer|coloniser +cecil john rhodes|1 +(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier|moneyman|colonizer|coloniser +cecil rhodes|1 +(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier|moneyman|colonizer|coloniser +cecil scott forester|1 +(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer|author +cecity|1 +(noun)|blindness|sightlessness|visual impairment|visual defect|vision defect|visual disorder +cecropia|2 +(noun)|Cecropia|genus Cecropia|dicot genus|magnoliopsid genus +(noun)|cecropia moth|Hyalophora cecropia|saturniid|saturniid moth +cecropia moth|1 +(noun)|cecropia|Hyalophora cecropia|saturniid|saturniid moth +cecropia peltata|1 +(noun)|trumpetwood|trumpet-wood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree|flowering tree +cecropiaceae|1 +(noun)|Cecropiaceae|family Cecropiaceae|dicot family|magnoliopsid family +cecum|1 +(noun)|caecum|blind gut|cavity|bodily cavity|cavum +cedar|3 +(noun)|cedar tree|conifer|coniferous tree +(noun)|cedarwood|wood +(noun)|cedar tree|true cedar|conifer|coniferous tree +cedar-apple rust|1 +(noun)|apple rust|Gymnosporangium juniperi-virginianae|rust|rust fungus +cedar chest|1 +(noun)|chest +cedar elm|1 +(noun)|Ulmus crassifolia|elm|elm tree +cedar mahogany|1 +(noun)|African scented mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany|mahogany tree +cedar nut|1 +(noun)|cembra nut|nut +cedar of goa|1 +(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress|cypress tree +cedar of lebanon|1 +(noun)|cedar of Lebanon|Cedrus libani|cedar|cedar tree|true cedar +cedar rapids|1 +(noun)|Cedar Rapids|city|metropolis|urban center +cedar tree|2 +(noun)|cedar|conifer|coniferous tree +(noun)|cedar|true cedar|conifer|coniferous tree +cedar waxwing|1 +(noun)|cedarbird|Bombycilla cedrorun|waxwing +cedarbird|1 +(noun)|cedar waxwing|Bombycilla cedrorun|waxwing +cedarn|1 +(adj)|woody +cedarwood|1 +(noun)|cedar|wood +cede|2 +(verb)|concede|yield|grant|give +(verb)|surrender|deliver|give up|give|gift|present +cedi|1 +(noun)|Ghanian monetary unit +cedilla|1 +(noun)|diacritical mark|diacritic +ceding|1 +(noun)|cession|relinquishment|relinquishing +ceding back|1 +(noun)|recession|cession|ceding +cedrela|1 +(noun)|Cedrela|genus Cedrela|rosid dicot genus +cedrela calantas|1 +(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany|mahogany tree +cedrela odorata|1 +(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany|mahogany tree +cedrus|1 +(noun)|Cedrus|genus Cedrus|gymnosperm genus +cedrus atlantica|1 +(noun)|Atlas cedar|Cedrus atlantica|cedar|cedar tree|true cedar +cedrus deodara|1 +(noun)|deodar|deodar cedar|Himalayan cedar|Cedrus deodara|cedar|cedar tree|true cedar +cedrus libani|1 +(noun)|cedar of Lebanon|Cedrus libani|cedar|cedar tree|true cedar +cefadroxil|1 +(noun)|Ultracef|cephalosporin|Mefoxin +cefobid|1 +(noun)|cefoperazone|Cefobid|cephalosporin|Mefoxin +cefoperazone|1 +(noun)|Cefobid|cephalosporin|Mefoxin +cefotaxime|1 +(noun)|Claforan|cephalosporin|Mefoxin +ceftazidime|1 +(noun)|Fortaz|Tazicef|cephalosporin|Mefoxin +ceftin|1 +(noun)|cefuroxime|Ceftin|Zinacef|cephalosporin|Mefoxin +ceftriaxone|1 +(noun)|Rocephin|cephalosporin|Mefoxin +cefuroxime|1 +(noun)|Ceftin|Zinacef|cephalosporin|Mefoxin +ceiba|1 +(noun)|Ceiba|genus Ceiba|dilleniid dicot genus +ceiba pentandra|1 +(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +ceiba tree|1 +(noun)|kapok|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +ceibo|1 +(noun)|crybaby tree|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree|erythrina +ceilidh|1 +(noun)|party +ceiling|4 +(noun)|upper surface +(noun)|altitude|height +(noun)|cap|control +(noun)|altitude|height +ceilinged|1 +(adj)|ceilinged |high-ceilinged|low-ceilinged|raftered +celandine|2 +(noun)|jewelweed|lady's earrings|orange balsam|touch-me-not|Impatiens capensis|herb|herbaceous plant +(noun)|greater celandine|swallowwort|swallow wort|Chelidonium majus|poppy +celandine poppy|1 +(noun)|wood poppy|Stylophorum diphyllum|poppy +celastraceae|1 +(noun)|Celastraceae|family Celastraceae|spindle-tree family|staff-tree family|dicot family|magnoliopsid family +celastric articulatus|1 +(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine +celastrus|1 +(noun)|Celastrus|genus Celastrus|dicot genus|magnoliopsid genus +celastrus orbiculatus|1 +(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine +celastrus scandens|1 +(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|Celastrus scandens|vine +celebes|1 +(noun)|Celebes|Sulawesi|island +celebrant|2 +(noun)|celebrator|celebrater|person|individual|someone|somebody|mortal|human|soul +(noun)|priest +celebrate|3 +(verb)|observe|keep +(verb)|fete|meet|get together +(verb)|lionize|lionise|respect|honor|honour|abide by|observe +celebrated|2 +(adj)|famed|far-famed|famous|illustrious|notable|noted|renowned|known +(adj)|historied|storied|glorious +celebrater|1 +(noun)|celebrant|celebrator|person|individual|someone|somebody|mortal|human|soul +celebration|3 +(noun)|jubilation|affair|occasion|social occasion|function|social function +(noun)|festivity|diversion|recreation +(noun)|solemnization|solemnisation|ritual +celebrator|1 +(noun)|celebrant|celebrater|person|individual|someone|somebody|mortal|human|soul +celebratory|1 +(adj)|affair|occasion|social occasion|function|social function +celebrex|1 +(noun)|celecoxib|Celebrex|Cox-2 inhibitor +celebrity|2 +(noun)|famous person|important person|influential person|personage +(noun)|fame|renown|honor|honour|laurels +celecoxib|1 +(noun)|Celebrex|Cox-2 inhibitor +celeriac|2 +(noun)|celery root|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb|herbaceous plant +(noun)|celery root|root vegetable +celerity|1 +(noun)|quickness|rapidity|pace|rate +celery|2 +(noun)|cultivated celery|Apium graveolens dulce|herb|herbaceous plant +(noun)|vegetable|veggie +celery-leaved buttercup|1 +(noun)|cursed crowfoot|Ranunculus sceleratus|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +celery-topped pine|1 +(noun)|celery top pine|Phyllocladus asplenifolius|celery pine +celery blight|1 +(noun)|late blight +celery cabbage|2 +(noun)|Chinese cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer|cruciferous plant +(noun)|Chinese cabbage|Chinese celery|cabbage|chou +celery pine|1 +(noun)|conifer|coniferous tree +celery root|2 +(noun)|celeriac|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb|herbaceous plant +(noun)|celeriac|root vegetable +celery salt|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +celery seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +celery stick|1 +(noun)|crudites +celery top pine|1 +(noun)|celery-topped pine|Phyllocladus asplenifolius|celery pine +celesta|1 +(noun)|musical instrument|instrument +celestial|3 +(adj)|heavenly|entity +(adj)|heavenly|imaginary place|mythical place +(adj)|ethereal|supernal|heavenly +celestial body|1 +(noun)|heavenly body|natural object +celestial city|1 +(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven +celestial equator|1 +(noun)|equinoctial circle|equinoctial line|equinoctial|great circle +celestial globe|1 +(noun)|globe +celestial guidance|1 +(noun)|steering|guidance|direction +celestial hierarchy|1 +(noun)|hierarchy +celestial horizon|1 +(noun)|horizon|great circle +celestial latitude|1 +(noun)|declination|DEC|angular distance +celestial longitude|1 +(noun)|right ascension|RA|angular distance +celestial mechanics|1 +(noun)|astronomy|uranology +celestial navigation|1 +(noun)|astronavigation|navigation|pilotage|piloting +celestial orbit|1 +(noun)|orbit|path|route|itinerary +celestial point|1 +(noun)|point +celestial pole|1 +(noun)|pole|celestial point +celestial sphere|1 +(noun)|sphere|empyrean|firmament|heavens|vault of heaven|welkin|surface +celestite|1 +(noun)|mineral +celiac|2 +(adj)|disorder|upset +(adj)|coeliac|cavity|bodily cavity|cavum +celiac artery|1 +(noun)|celiac trunk|truncus celiacus|arteria celiaca|artery|arteria|arterial blood vessel +celiac disease|1 +(noun)|disorder|upset +celiac trunk|1 +(noun)|celiac artery|truncus celiacus|arteria celiaca|artery|arteria|arterial blood vessel +celibacy|2 +(noun)|condition|status +(noun)|chastity|sexual abstention|abstinence +celibate|2 +(adj)|continent|chaste +(noun)|religionist|religious person +celiocentesis|1 +(noun)|centesis +celioma|1 +(noun)|tumor|tumour|neoplasm +celioscopy|1 +(noun)|endoscopy +cell|7 +(noun)|compartment +(noun)|living thing|animate thing +(noun)|electric cell|electrical device +(noun)|cadre|political unit +(noun)|cellular telephone|cellular phone|cellphone|mobile phone|radiotelephone|radiophone|wireless telephone +(noun)|cubicle|room +(noun)|jail cell|prison cell|room +cell-free|1 +(adj)|noncellular |acellular +cell-like|1 +(adj)|cellular +cell-mediated immune response|1 +(noun)|immune response|immune reaction|immunologic response +cell death|1 +(noun)|necrobiosis|death +cell division|1 +(noun)|cellular division|organic process|biological process +cell doctrine|1 +(noun)|cell theory|scientific theory +cell membrane|1 +(noun)|cell wall|cytomembrane|plasma membrane|semipermeable membrane +cell nucleus|1 +(noun)|nucleus|karyon|organelle|cell organ +cell organ|1 +(noun)|organelle|organ +cell phone|1 +(verb)|call|telephone|call up|phone|ring +cell theory|1 +(noun)|cell doctrine|scientific theory +cell wall|1 +(noun)|cell membrane|cytomembrane|plasma membrane|semipermeable membrane +cellar|3 +(noun)|basement|floor|level|storey|story +(noun)|root cellar|excavation|hole in the ground|storage space +(noun)|wine cellar|storage space +cellarage|2 +(noun)|fee +(noun)|basement|cellar +cellaret|1 +(noun)|minibar|buffet|counter|sideboard +cellblock|1 +(noun)|ward|block +cellini|1 +(noun)|Cellini|Benvenuto Cellini|sculptor|sculpturer|carver|statue maker +cellist|1 +(noun)|musician|instrumentalist|player +cello|1 +(noun)|violoncello|bowed stringed instrument|string +cellophane|1 +(noun)|plastic wrap +cellphone|1 +(noun)|cellular telephone|cellular phone|cell|mobile phone|radiotelephone|radiophone|wireless telephone +cellular|2 +(adj)|living thing|animate thing +(adj)|cellular |cancellate|cancellated|cancellous|alveolate|faveolate|cavitied|honeycombed|pitted|cell-like|multicellular +cellular division|1 +(noun)|cell division|organic process|biological process +cellular inclusion|1 +(noun)|inclusion body|inclusion|body +cellular phone|1 +(noun)|cellular telephone|cellphone|cell|mobile phone|radiotelephone|radiophone|wireless telephone +cellular respiration|1 +(noun)|respiration|internal respiration|metabolism|metabolic process|metastasis +cellular slime mold|1 +(noun)|slime mold|slime mould +cellular telephone|1 +(noun)|cellular phone|cellphone|cell|mobile phone|radiotelephone|radiophone|wireless telephone +cellularity|1 +(noun)|physiological state|physiological condition +cellulite|1 +(noun)|adipose tissue|fat|fatty tissue +cellulitis|1 +(noun)|inflammation|redness|rubor +celluloid|3 +(adj)|synthetic|artificial |unreal +(noun)|thermoplastic|thermoplastic resin +(noun)|film|cinema|medium +cellulose|1 +(noun)|polysaccharide|polyose +cellulose acetate|1 +(noun)|cellulose ester +cellulose ester|1 +(noun)|ester +cellulose nitrate|1 +(noun)|nitrocellulose|guncotton|nitrocotton|cellulose ester|nitrate +cellulose tape|1 +(noun)|Scotch Tape|Sellotape|adhesive tape +cellulose triacetate|1 +(noun)|triacetate|cellulose acetate +cellulose xanthate|1 +(noun)|viscose|cellulose ester|xanthate +cellulosic|1 +(noun)|plastic +cellulosid|1 +(adj)|polysaccharide|polyose +celom|1 +(noun)|coelom|celoma|cavity|bodily cavity|cavum +celoma|1 +(noun)|celom|coelom|cavity|bodily cavity|cavum +celosia|1 +(noun)|Celosia|genus Celosia|caryophylloid dicot genus +celosia argentea|1 +(noun)|red fox|Celosia argentea|herb|herbaceous plant +celosia argentea cristata|1 +(noun)|cockscomb|common cockscomb|Celosia cristata|Celosia argentea cristata|herb|herbaceous plant +celosia cristata|1 +(noun)|cockscomb|common cockscomb|Celosia cristata|Celosia argentea cristata|herb|herbaceous plant +celsius|1 +(noun)|Celsius|Anders Celsius|astronomer|uranologist|stargazer +celsius scale|1 +(noun)|Celsius scale|international scale|centigrade scale|temperature scale +celt|1 +(noun)|Celt|Kelt|European +celtic|2 +(adj)|Celtic|Gaelic|European +(noun)|Celtic|Celtic language|Indo-European|Indo-European language|Indo-Hittite +celtic cross|1 +(noun)|Celtic cross|cross +celtic deity|1 +(noun)|Celtic deity|deity|divinity|god|immortal +celtic language|1 +(noun)|Celtic|Celtic language|Indo-European|Indo-European language|Indo-Hittite +celtis|1 +(noun)|Celtis|genus Celtis|dicot genus|magnoliopsid genus +celtis australis|1 +(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry|nettle tree +celtis laevigata|1 +(noun)|sugarberry|Celtis laevigata|hackberry|nettle tree +celtis occidentalis|1 +(noun)|American hackberry|Celtis occidentalis|hackberry|nettle tree +celtuce|2 +(noun)|stem lettuce|Lactuca sativa asparagina|lettuce +(noun)|salad green|salad greens +cembalo|1 +(noun)|harpsichord|clavier|Klavier +cembra nut|1 +(noun)|cedar nut|nut +cembra nut tree|1 +(noun)|Swiss pine|Swiss stone pine|arolla pine|Pinus cembra|pine|pine tree|true pine +cement|8 +(noun)|concrete +(noun)|building material +(noun)|adhesive material|adhesive +(noun)|filling|fill +(noun)|cementum|solid body substance +(verb)|bind +(verb)|coat|surface +(verb)|fasten|fix|secure +cement mixer|1 +(noun)|concrete mixer|machine +cementite|1 +(noun)|iron carbide|compound|chemical compound +cementitious|1 +(adj)|building material +cementum|1 +(noun)|cement|solid body substance +cemetery|1 +(noun)|graveyard|burial site|burial ground|burying ground|memorial park|necropolis|site|land site +cenchrus|1 +(noun)|Cenchrus|genus Cenchrus|monocot genus|liliopsid genus +cenchrus ciliaris|1 +(noun)|buffel grass|Cenchrus ciliaris|Pennisetum cenchroides|burgrass|bur grass +cenchrus tribuloides|1 +(noun)|sandbur|sandspur|field sandbur|Cenchrus tribuloides|grass +cenobite|1 +(noun)|coenobite|religious +cenobitic|1 +(adj)|cenobitic |coenobitic|cenobitical|coenobitical|religious +cenobitical|1 +(adj)|cenobitic |coenobitic|coenobitical|religious +cenogenesis|1 +(noun)|kenogenesis|caenogenesis|cainogenesis|kainogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +cenogenetic|1 +(adj)|cenogenetic |growth|growing|maturation|development|ontogeny|ontogenesis +cenotaph|1 +(noun)|memorial|monument +cenozoic|1 +(noun)|Cenozoic|Cenozoic era|Age of Mammals|era|geological era +cenozoic era|1 +(noun)|Cenozoic|Cenozoic era|Age of Mammals|era|geological era +cense|1 +(verb)|incense|thurify|odorize|odourise|scent +censer|1 +(noun)|thurible|vessel +censor|3 +(noun)|official|functionary +(verb)|ban|outlaw|criminalize|criminalise|illegalize|illegalise +(verb)|measure|evaluate|valuate|assess|appraise|value +censored|1 +(adj)|censored |expurgated +censorial|1 +(adj)|official|functionary +censoring|2 +(noun)|censorship|security review|counterintelligence +(noun)|censorship|deletion +censorious|1 +(adj)|critical +censorship|2 +(noun)|censoring|security review|counterintelligence +(noun)|censoring|deletion +censurable|1 +(adj)|blameworthy|blamable|blameable|blameful|culpable|guilty +censure|3 +(noun)|animadversion|disapprobation|condemnation +(noun)|excommunication|exclusion|rejection +(verb)|reprimand|criminate|knock|criticize|criticise|pick apart +censured|2 +(adj)|punished +(adj)|condemned|disapproved +census|2 +(noun)|nose count|nosecount|count|counting|numeration|enumeration|reckoning|tally +(verb)|count|number|enumerate|numerate +census bureau|1 +(noun)|Bureau of the Census|Census Bureau|agency|federal agency|government agency|bureau|office|authority +census taker|1 +(noun)|enumerator|official|functionary +cent|2 +(noun)|fractional monetary unit|subunit|Sri Lanka rupee|rupee +(noun)|penny|centime|coin +cental|1 +(noun)|hundredweight|cwt|short hundredweight|centner|quintal|avoirdupois unit +centare|1 +(noun)|square meter|square metre|area unit|square measure +centas|1 +(noun)|Lithuanian monetary unit +centaur|2 +(noun)|mythical monster|mythical creature +(noun)|Centaurus|Centaur|The Centaur|constellation +centaurea|1 +(noun)|Centaurea|genus Centaurea|asterid dicot genus +centaurea americana|1 +(noun)|basket flower|Centaurea americana|centaury +centaurea cineraria|1 +(noun)|dusty miller|Centaurea cineraria|Centaurea gymnocarpa|centaury +centaurea cyanus|1 +(noun)|cornflower|bachelor's button|bluebottle|Centaurea cyanus|flower +centaurea gymnocarpa|1 +(noun)|dusty miller|Centaurea cineraria|Centaurea gymnocarpa|centaury +centaurea imperialis|1 +(noun)|sweet sultan|Centaurea imperialis|flower +centaurea moschata|1 +(noun)|sweet sultan|Amberboa moschata|Centaurea moschata|flower +centaurea nigra|1 +(noun)|lesser knapweed|black knapweed|hardheads|Centaurea nigra|knapweed +centaurea scabiosa|1 +(noun)|great knapweed|greater knapweed|Centaurea scabiosa|knapweed +centaurea solstitialis|1 +(noun)|Barnaby's thistle|yellow star-thistle|Centaurea solstitialis|weed +centauria calcitrapa|1 +(noun)|star-thistle|caltrop|Centauria calcitrapa|centaury +centaurium|1 +(noun)|Centaurium|genus Centaurium|dicot genus|magnoliopsid genus +centaurium calycosum|1 +(noun)|rosita|Centaurium calycosum|centaury +centaurium minus|1 +(noun)|lesser centaury|Centaurium minus|centaury +centaurium scilloides|1 +(noun)|tufted centaury|Centaurium scilloides|centaury +centaurus|1 +(noun)|Centaurus|Centaur|The Centaur|constellation +centaury|2 +(noun)|flower +(noun)|subshrub|suffrutex +centavo|1 +(noun)|fractional monetary unit|subunit +centenarian|2 +(adj)|old +(noun)|oldster|old person|senior citizen|golden ager +centenary|2 +(adj)|centennial|time period|period of time|period +(noun)|centennial|anniversary|day of remembrance +centennial|2 +(adj)|centenary|time period|period of time|period +(noun)|centenary|anniversary|day of remembrance +centennial state|1 +(noun)|Colorado|Centennial State|CO|American state +center|23 +(adj)|halfway|middle|midway|central +(adj)|center |centrist|middle-of-the-road +(noun)|centre|middle|heart|eye|area|country +(noun)|center field|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|centre|building|edifice +(noun)|centre|midpoint|point +(noun)|kernel|substance|core|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|center of attention|object +(noun)|centre|nerve center|nerve centre|neural structure +(noun)|formation +(noun)|basketball player|basketeer|cager +(noun)|snapper|lineman +(noun)|centre|place|property +(noun)|class|social class|socio-economic class +(noun)|hockey player|ice-hockey player +(noun)|centre|sweet|confection|confectionery +(noun)|plaza|mall|shopping mall|shopping center|shopping centre|mercantile establishment|retail store|sales outlet|outlet +(noun)|position +(noun)|lineman +(noun)|position +(verb)|focus on|center on|revolve around|revolve about|concentrate on|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|concentrate|focus|centre|pore|rivet|think|cogitate|cerebrate +(verb)|centre|move|displace|center on +center bit|1 +(noun)|centre bit|bit +center field|2 +(noun)|center|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|position +center fielder|2 +(noun)|centerfielder|outfielder +(noun)| +center for disease control and prevention|1 +(noun)|Center for Disease Control and Prevention|CDC|agency|federal agency|government agency|bureau|office|authority +center line|2 +(noun)|centerline|line +(noun)| +center of attention|1 +(noun)|center|object +center of buoyancy|1 +(noun)|centre of buoyancy|center of immersion|centre of immersion|center of mass|centre of mass +center of curvature|1 +(noun)|centre of curvature|center|centre|midpoint +center of flotation|1 +(noun)|centre of flotation|center of gravity|centre of gravity +center of gravity|1 +(noun)|centre of gravity|center|centre|midpoint +center of immersion|1 +(noun)|center of buoyancy|centre of buoyancy|centre of immersion|center of mass|centre of mass +center of mass|1 +(noun)|centre of mass|center|centre|midpoint +center on|2 +(verb)|focus on|revolve around|revolve about|concentrate on|center|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|be +center punch|1 +(verb)|pierce|thrust +center spread|1 +(noun)|centre spread|spread|spread head|spreadhead|facing pages +center stage|2 +(noun)|centre stage|high status +(noun)|centre stage|center|centre|middle|heart|eye +centerboard|1 +(noun)|centreboard|drop keel|sliding keel|fin keel +centered|2 +(adj)|central +(adj)|centred|centralized|centralised|focused|concentrated +centerfielder|1 +(noun)|center fielder|outfielder +centerfold|1 +(noun)|centrefold|spread|spread head|spreadhead|facing pages|foldout|gatefold +centering|2 +(noun)|focus|focusing|focussing|direction|concentration|engrossment|absorption|immersion +(noun)|snap|pass|toss|flip +centerline|1 +(noun)|center line|line +centerpiece|2 +(noun)|centrepiece|feature|characteristic +(noun)|centrepiece|decoration|ornament|ornamentation +centesimal|2 +(adj)|common fraction|simple fraction +(adj)|hundredth|100th|ordinal +centesimo|1 +(noun)|fractional monetary unit|subunit +centesis|1 +(noun)|puncture +centigrade scale|1 +(noun)|Celsius scale|international scale|temperature scale +centigrade thermometer|1 +(noun)|Centigrade thermometer|thermometer +centile|1 +(noun)|percentile|mark|grade|score +centiliter|1 +(noun)|centilitre|cl|metric capacity unit +centilitre|1 +(noun)|centiliter|cl|metric capacity unit +centime|2 +(noun)|fractional monetary unit|subunit +(noun)|penny|cent|coin +centimeter|1 +(noun)|centimetre|cm|metric linear unit +centimetre|1 +(noun)|centimeter|cm|metric linear unit +centimo|1 +(noun)|fractional monetary unit|subunit +centipede|1 +(noun)|arthropod +centner|3 +(noun)|hundredweight|metric hundredweight|doppelzentner|metric weight unit|weight unit +(noun)|metric weight unit|weight unit +(noun)|hundredweight|cwt|short hundredweight|cental|quintal|avoirdupois unit +central|5 +(adj)|cardinal|fundamental|key|primal|important |of import +(adj)|central |amidship|bicentric|center|halfway|middle|midway|centric|centrical|focal|median|medial|middlemost|midmost|nuclear|bifocal|centered +(adj)|point +(adj)|inner +(noun)|telephone exchange|exchange|workplace|work +central africa|1 +(noun)|Central African Republic|Central Africa|African country|African nation +central african republic|1 +(noun)|Central African Republic|Central Africa|African country|African nation +central african republic franc|1 +(noun)|Central African Republic franc|franc +central america|2 +(noun)|Central America|isthmus +(noun)|Central America|collection|aggregation|accumulation|assemblage +central american|2 +(adj)|Central American|isthmus +(noun)|Central American|North American +central american country|1 +(noun)|Central American country|Central American nation|North American country|North American nation +central american nation|1 +(noun)|Central American country|Central American nation|North American country|North American nation +central american strap fern|1 +(noun)|Central American strap fern|narrow-leaved strap fern|Campyloneurum augustifolium|strap fern +central artery of the retina|1 +(noun)|arteria centralis retinae|artery|arteria|arterial blood vessel +central bank|1 +(noun)|financial institution|financial organization|financial organisation +central body|1 +(noun)|centrosome|cytoplasm +central chimpanzee|1 +(noun)|Pan troglodytes troglodytes|chimpanzee|chimp|Pan troglodytes +central city|1 +(noun)|city center|city centre|center|centre|middle|heart|eye +central dravidian|1 +(noun)|Central Dravidian|Dravidian|Dravidic|Dravidian language +central gyrus|1 +(noun)|gyrus|convolution +central heating|1 +(noun)|heating system|heating plant|heating|heat +central intelligence agency|1 +(noun)|Central Intelligence Agency|CIA|United States intelligence agency|independent agency +central intelligence machinery|1 +(noun)|Central Intelligence Machinery|CIM|international intelligence agency +central nervous system|1 +(noun)|CNS|systema nervosum centrale|system +central office|1 +(noun)|headquarters|main office|home office|home base|office|business office +central park|1 +(noun)|Central Park|park|commons|common|green +central powers|1 +(noun)|Central Powers|alliance|coalition|alignment|alinement +central processing unit|1 +(noun)|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment|hardware|computer hardware +central processor|1 +(noun)|central processing unit|CPU|C.P.U.|processor|mainframe|electronic equipment|hardware|computer hardware +central scotoma|1 +(noun)|scotoma +central standard time|1 +(noun)|Central Time|Central Standard Time|CST|civil time|standard time|local time +central sulcus|1 +(noun)|fissure of Rolando|Rolando's fissure|sulcus centralis|sulcus +central thai|1 +(noun)|Thai|Siamese|Central Thai|Tai +central time|1 +(noun)|Central Time|Central Standard Time|CST|civil time|standard time|local time +central vein of retina|1 +(noun)|vena centrales retinae|vein|vena|venous blood vessel +central vein of suprarenal gland|1 +(noun)|vena centralis glandulae suprarenalis|vein|vena|venous blood vessel +central veins of liver|1 +(noun)|venae centrales hepatis|vein|vena|venous blood vessel +central vision|1 +(noun)|sight|vision|visual sense|visual modality +centralisation|2 +(noun)|centralization|consolidation|integration +(noun)|centralization|gather|gathering +centralise|1 +(verb)|centralize|concentrate|change|alter|modify +centralised|2 +(adj)|centralized +(adj)|centered|centred|centralized|focused|concentrated +centralising|1 +(adj)|centralizing |centripetal|unifying|consolidative|integrative +centralism|1 +(noun)|policy +centralist|1 +(adj)|centralistic|consolidation|integration +centralistic|1 +(adj)|centralist|consolidation|integration +centrality|1 +(noun)|position|spatial relation +centralization|2 +(noun)|centralisation|consolidation|integration +(noun)|centralisation|gather|gathering +centralize|1 +(verb)|centralise|concentrate|change|alter|modify +centralized|2 +(adj)|centralized |centralised +(adj)|centered|centred|centralised|focused|concentrated +centralizing|1 +(adj)|centralizing |centripetal|unifying|consolidative|integrative +centranthus|1 +(noun)|Centranthus|genus Centranthus|asterid dicot genus +centranthus ruber|1 +(noun)|red valerian|French honeysuckle|Centranthus ruber|flower +centrarchid|1 +(noun)|sunfish|percoid fish|percoid|percoidean +centrarchidae|1 +(noun)|Centrarchidae|family Centrarchidae|fish family +centre|9 +(noun)|Centre|French region +(noun)|center|middle|heart|eye|area|country +(noun)|center|midpoint|point +(noun)|center|place|property +(noun)|center|sweet|confection|confectionery +(noun)|center|nerve center|nerve centre|neural structure +(noun)|center|building|edifice +(verb)|center|move|displace +(verb)|concentrate|focus|center|pore|rivet|think|cogitate|cerebrate +centre bit|1 +(noun)|center bit|bit +centre for international crime prevention|1 +(noun)|United Nations Crime Prevention and Criminal Justice|Centre for International Crime Prevention|United Nations agency|UN agency +centre of buoyancy|1 +(noun)|center of buoyancy|center of immersion|centre of immersion|center of mass|centre of mass +centre of curvature|1 +(noun)|center of curvature|center|centre|midpoint +centre of flotation|1 +(noun)|center of flotation|center of gravity|centre of gravity +centre of gravity|1 +(noun)|center of gravity|center|centre|midpoint +centre of immersion|1 +(noun)|center of buoyancy|centre of buoyancy|center of immersion|center of mass|centre of mass +centre of mass|1 +(noun)|center of mass|center|centre|midpoint +centre spread|1 +(noun)|center spread|spread|spread head|spreadhead|facing pages +centre stage|2 +(noun)|center stage|high status +(noun)|center stage|center|centre|middle|heart|eye +centreboard|1 +(noun)|centerboard|drop keel|sliding keel|fin keel +centred|2 +(adj)|centered|centralized|centralised|focused|concentrated +(noun)|hundred|100|C|century|one C|large integer +centrefold|1 +(noun)|centerfold|spread|spread head|spreadhead|facing pages|foldout|gatefold +centrepiece|2 +(noun)|centerpiece|feature|characteristic +(noun)|centerpiece|decoration|ornament|ornamentation +centrex|1 +(noun)|central|telephone exchange|exchange +centric|1 +(adj)|centrical|central +centrical|1 +(adj)|centric|central +centrifugal|3 +(adj)|centrifugal |outward-moving|outward-developing +(adj)|decentralizing +(adj)|motor|efferent |motorial +centrifugal force|1 +(noun)|force +centrifugal pump|1 +(noun)|pump +centrifugate|1 +(verb)|centrifuge|spin +centrifugation|1 +(noun)|natural process|natural action|action|activity +centrifuge|2 +(noun)|extractor|separator|apparatus|setup +(verb)|centrifugate|spin +centriole|1 +(noun)|organelle|cell organ +centripetal|3 +(adj)|centripetal |inward-moving|inward-developing +(adj)|unifying|centralizing +(adj)|receptive|sensory|afferent +centripetal acceleration|1 +(noun)|acceleration +centripetal force|1 +(noun)|force +centriscidae|1 +(noun)|Centriscidae|family Centriscidae|fish family +centrism|1 +(noun)|moderatism|political orientation|ideology|political theory +centrist|2 +(adj)|middle-of-the-road|center +(noun)|middle of the roader|moderate|moderationist|adult|grownup +centrocercus|1 +(noun)|Centrocercus|genus Centrocercus|bird genus +centrocercus urophasianus|1 +(noun)|sage grouse|sage hen|Centrocercus urophasianus|grouse +centroid|1 +(noun)|center of mass|centre of mass +centroidal|1 +(adj)|center of mass|centre of mass +centrolobium|1 +(noun)|Centrolobium|genus Centrolobium|rosid dicot genus +centrolobium robustum|1 +(noun)|arariba|Centrolobium robustum|zebrawood|zebrawood tree +centromere|1 +(noun)|kinetochore|structure|anatomical structure|complex body part|bodily structure|body structure +centromeric|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +centropistes striata|1 +(noun)|black sea bass|black bass|Centropistes striata|sea bass +centropomidae|1 +(noun)|Centropomidae|family Centropomidae|fish family +centropomus|1 +(noun)|Centropomus|genus Centropomus|fish genus +centropristis|1 +(noun)|Centropristis|genus Centropristis|fish genus +centropristis philadelphica|1 +(noun)|rock sea bass|rock bass|Centropristis philadelphica|sea bass +centropus|1 +(noun)|Centropus|genus Centropus|bird genus +centropus phasianinus|1 +(noun)|pheasant coucal|pheasant cuckoo|Centropus phasianinus|coucal +centropus sinensis|1 +(noun)|crow pheasant|Centropus sinensis|coucal +centrosema|1 +(noun)|Centrosema|genus Centrosema|rosid dicot genus +centrosema virginianum|1 +(noun)|butterfly pea|Centrosema virginianum|vine +centrosome|1 +(noun)|central body|cytoplasm +centrosomic|1 +(adj)|cytoplasm +centrospermae|1 +(noun)|Centrospermae|group Centrospermae|taxonomic group|taxonomic category|taxon +centrosymmetric|1 +(adj)|radially symmetrical|symmetrical |symmetric +centrum|1 +(noun)|bone|os +centunculus|1 +(noun)|Centunculus|genus Centunculus|dicot genus|magnoliopsid genus +centurion|1 +(noun)|warrior +century|2 +(noun)|time period|period of time|period +(noun)|hundred|100|C|one C|centred|large integer +century plant|1 +(noun)|agave|American aloe|desert plant|xerophyte|xerophytic plant|xerophile|xerophilous plant +ceo|1 +(noun)|chief executive officer|CEO|chief operating officer|corporate executive|business executive +cephalalgia|1 +(noun)|headache|head ache|ache|aching +cephalanthera|1 +(noun)|Cephalanthera|genus Cephalanthera|monocot genus|liliopsid genus +cephalanthera rubra|1 +(noun)|red helleborine|Cephalanthera rubra|helleborine +cephalaspid|1 +(noun)|osteostracan|jawless vertebrate|jawless fish|agnathan +cephalaspida|1 +(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order +cephalexin|1 +(noun)|Keflex|Keflin|Keftab|cephalosporin|Mefoxin +cephalhematoma|1 +(noun)|cephalohematoma|hemorrhagic cyst|blood cyst|hematocyst +cephalic|1 +(adj)|cephalic |external body part +cephalic index|1 +(noun)|breadth index|cranial index|ratio +cephalic vein|1 +(noun)|vena cephalica|vein|vena|venous blood vessel +cephalitis|1 +(noun)|encephalitis|phrenitis|inflammation|redness|rubor +cephalobidae|1 +(noun)|Cephalobidae|family Cephalobidae|worm family +cephalochordata|1 +(noun)|Cephalochordata|subphylum Cephalochordata|phylum +cephalochordate|1 +(noun)|chordate +cephaloglycin|1 +(noun)|Kafocin|antibiotic|antibiotic drug +cephalohematoma|1 +(noun)|cephalhematoma|hemorrhagic cyst|blood cyst|hematocyst +cephalopod|2 +(adj)|cephalopodan|class +(noun)|cephalopod mollusk|mollusk|mollusc|shellfish +cephalopod mollusk|1 +(noun)|cephalopod|mollusk|mollusc|shellfish +cephalopoda|1 +(noun)|Cephalopoda|class Cephalopoda|class +cephalopodan|1 +(adj)|cephalopod|class +cephalopterus|1 +(noun)|Cephalopterus|genus Cephalopterus|bird genus +cephalopterus ornatus|1 +(noun)|umbrella bird|Cephalopterus ornatus|cotinga|chatterer +cephaloridine|1 +(noun)|antibiotic|antibiotic drug +cephalosporin|1 +(noun)|Mefoxin|antibiotic|antibiotic drug +cephalotaceae|1 +(noun)|Cephalotaceae|family Cephalotaceae|rosid dicot family +cephalotaxaceae|1 +(noun)|Cephalotaxaceae|family Cephalotaxaceae|plum-yew family|gymnosperm family +cephalotaxus|1 +(noun)|Cephalotaxus|genus Cephalotaxus|gymnosperm genus +cephalothin|1 +(noun)|cephalosporin|Mefoxin +cephalotus|1 +(noun)|Cephalotus|genus Cephalotus|rosid dicot genus +cephalotus follicularis|1 +(noun)|Australian pitcher plant|Cephalotus follicularis|herb|herbaceous plant +cepheus|1 +(noun)|Cepheus|constellation +cepphus|1 +(noun)|Cepphus|genus Cepphus|bird genus +cepphus columba|1 +(noun)|pigeon guillemot|Cepphus columba|guillemot +cepphus grylle|1 +(noun)|black guillemot|Cepphus grylle|guillemot +cer|1 +(noun)|conditioned emotional response|CER|conditioned emotion|emotion +ceraceous|1 +(adj)|waxlike|waxy|smooth +cerambycidae|1 +(noun)|Cerambycidae|family Cerambycidae|arthropod family +ceramic|2 +(adj)|instrumentality|instrumentation +(noun)|instrumentality|instrumentation +ceramic ware|1 +(noun)|utensil +ceramicist|1 +(noun)|potter|thrower|ceramist|craftsman|artisan|journeyman|artificer +ceramics|2 +(noun)|art|artistic creation|artistic production +(noun)|ceramic|instrumentality|instrumentation +ceramist|1 +(noun)|potter|thrower|ceramicist|craftsman|artisan|journeyman|artificer +cerapteryx|1 +(noun)|Cerapteryx|genus Cerapteryx|arthropod genus +cerapteryx graminis|1 +(noun)|antler moth|Cerapteryx graminis|noctuid moth|noctuid|owlet moth +ceras|1 +(noun)|gill|branchia +cerastes|1 +(noun)|horned viper|sand viper|horned asp|Cerastes cornutus|viper +cerastes cornutus|1 +(noun)|horned viper|cerastes|sand viper|horned asp|Cerastes cornutus|viper +cerastium|1 +(noun)|Cerastium|genus Cerastium|caryophylloid dicot genus +cerastium alpinum|1 +(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +cerastium arvense|1 +(noun)|field chickweed|field mouse-ear|Cerastium arvense|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +cerastium tomentosum|1 +(noun)|snow-in-summer|love-in-a-mist|Cerastium tomentosum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +cerate|1 +(noun)|ointment|unction|unguent|balm|salve +ceratin|1 +(noun)|keratin|scleroprotein|albuminoid +ceratitis|1 +(noun)|Ceratitis|genus Ceratitis|arthropod genus +ceratitis capitata|1 +(noun)|Mediterranean fruit fly|medfly|Ceratitis capitata|fruit fly|pomace fly +ceratodontidae|1 +(noun)|Ceratodontidae|family Ceratodontidae|fish family +ceratodus|1 +(noun)|lungfish +ceratonia|1 +(noun)|Ceratonia|genus Ceratonia|rosid dicot genus +ceratonia siliqua|1 +(noun)|carob|carob tree|carob bean tree|algarroba|Ceratonia siliqua|bean tree +ceratopetalum|1 +(noun)|Ceratopetalum|genus Ceratopetalum|rosid dicot genus +ceratopetalum gummiferum|1 +(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree +ceratophyllaceae|1 +(noun)|Ceratophyllaceae|family Ceratophyllaceae|magnoliid dicot family +ceratophyllum|1 +(noun)|Ceratophyllum|genus Ceratophyllum|magnoliid dicot genus +ceratopogon|1 +(noun)|Ceratopogon|genus Ceratopogon|arthropod genus +ceratopogonidae|1 +(noun)|Ceratopogonidae|family Ceratopogonidae|arthropod family +ceratopsia|1 +(noun)|Ceratopsia|suborder Ceratopsia|animal order +ceratopsian|1 +(noun)|horned dinosaur|ornithischian|ornithischian dinosaur +ceratopsidae|1 +(noun)|Ceratopsidae|family Ceratopsidae|reptile family +ceratopteris|1 +(noun)|Ceratopteris|genus Ceratopteris|fern genus +ceratopteris pteridioides|1 +(noun)|floating fern|water sprite|Ceratopteris pteridioides|aquatic fern|water fern +ceratopteris thalictroides|1 +(noun)|floating fern|Ceratopteris thalictroides|aquatic fern|water fern +ceratosaur|1 +(noun)|ceratosaurus|theropod|theropod dinosaur|bird-footed dinosaur +ceratosaurus|1 +(noun)|ceratosaur|theropod|theropod dinosaur|bird-footed dinosaur +ceratostomataceae|1 +(noun)|Ceratostomataceae|family Ceratostomataceae|fungus family +ceratostomella|1 +(noun)|Ceratostomella|genus Ceratostomella|fungus genus +ceratostomella ulmi|1 +(noun)|Dutch elm fungus|Ceratostomella ulmi|fungus +ceratotherium|1 +(noun)|Ceratotherium|genus Ceratotherium|mammal genus +ceratotherium simum|1 +(noun)|white rhinoceros|Ceratotherium simum|Diceros simus|rhinoceros|rhino +ceratozamia|1 +(noun)|cycad +cerberus|1 +(noun)|Cerberus|hellhound|mythical monster|mythical creature +cercaria|1 +(noun)|larva +cercarial|1 +(adj)|larva +cercidiphyllaceae|1 +(noun)|Cercidiphyllaceae|family Cercidiphyllaceae|magnoliid dicot family +cercidiphyllum|1 +(noun)|Cercidiphyllum|genus Cercidiphyllum|magnoliid dicot genus +cercidiphyllum japonicum|1 +(noun)|katsura tree|Cercidiphyllum japonicum|angiospermous tree|flowering tree +cercidium|1 +(noun)|Cercidium|genus Cercidium|rosid dicot genus +cercidium floridum|1 +(noun)|palo verde|Parkinsonia florida|Cercidium floridum|tree +cercis|1 +(noun)|Cercis|genus Cercis|rosid dicot genus +cercis canadenis|1 +(noun)|redbud|Cercis canadenis|angiospermous tree|flowering tree +cercis occidentalis|1 +(noun)|western redbud|California redbud|Cercis occidentalis|shrub|bush +cercocebus|1 +(noun)|Cercocebus|genus Cercocebus|mammal genus +cercopidae|1 +(noun)|Cercopidae|family Cercopidae|arthropod family +cercopithecidae|1 +(noun)|Cercopithecidae|family Cercopithecidae|mammal family +cercopithecus|1 +(noun)|Cercopithecus|genus Cercopithecus|mammal genus +cercopithecus aethiops|1 +(noun)|grivet|Cercopithecus aethiops|guenon|guenon monkey +cercopithecus aethiops pygerythrus|1 +(noun)|vervet|vervet monkey|Cercopithecus aethiops pygerythrus|guenon|guenon monkey +cercopithecus aethiops sabaeus|1 +(noun)|green monkey|African green monkey|Cercopithecus aethiops sabaeus|guenon|guenon monkey +cercopithecus talapoin|1 +(noun)|talapoin|Cercopithecus talapoin|guenon|guenon monkey +cercospora|1 +(noun)|Cercospora|genus Cercospora|fungus genus +cercospora kopkei|1 +(noun)|yellow spot fungus|Cercospora kopkei|fungus +cercosporella|1 +(noun)|Cercosporella|genus Cercosporella|fungus genus +cere|1 +(verb)|wrap|wrap up +cereal|4 +(adj)|seed +(noun)|cereal grass|grass +(noun)|grain|food grain|foodstuff|food product +(noun)|breakfast food +cereal bowl|1 +(noun)|bowl +cereal box|1 +(noun)|box +cereal grass|1 +(noun)|cereal|grass +cereal oat|1 +(noun)|Avena sativa|oat +cerebellar|1 +(adj)|neural structure +cerebellar artery|1 +(noun)|arteria cerebelli|artery|arteria|arterial blood vessel +cerebellar hemisphere|1 +(noun)|neural structure +cerebellar vein|1 +(noun)|vena cerebellum|vein|vena|venous blood vessel +cerebellum|1 +(noun)|neural structure +cerebral|2 +(adj)|cerebral |intellectual +(adj)|neural structure +cerebral aneurysm|1 +(noun)|aneurysm|aneurism +cerebral aqueduct|1 +(noun)|Sylvian aqueduct|aqueductus cerebri|duct|epithelial duct|canal|channel +cerebral artery|1 +(noun)|arteria cerebri|artery|arteria|arterial blood vessel +cerebral cortex|1 +(noun)|cerebral mantle|pallium|cortex|neural structure +cerebral death|1 +(noun)|brain death|death +cerebral hemisphere|1 +(noun)|hemisphere|neural structure +cerebral hemorrhage|1 +(noun)|bleeding|hemorrhage|haemorrhage +cerebral mantle|1 +(noun)|cerebral cortex|pallium|cortex|neural structure +cerebral palsy|1 +(noun)|spastic paralysis|brain disorder|encephalopathy|brain disease +cerebral peduncle|1 +(noun)|peduncle|nerve pathway|tract|nerve tract|pathway +cerebral thrombosis|1 +(noun)|thrombosis +cerebral vein|1 +(noun)|vena cerebri|vein|vena|venous blood vessel +cerebrate|1 +(verb)|think|cogitate +cerebration|1 +(noun)|thinking|thought|intellection|mentation|higher cognitive process +cerebromeningitis|1 +(noun)|meningoencephalitis|encephalomeningitis|meningitis|encephalitis|cephalitis|phrenitis +cerebrospinal|1 +(adj)|neural structure|funiculus|neural structure +cerebrospinal fever|1 +(noun)|cerebrospinal meningitis|epidemic meningitis|brain fever|meningitis +cerebrospinal fluid|1 +(noun)|spinal fluid|liquid body substance|bodily fluid|body fluid|humor|humour +cerebrospinal meningitis|1 +(noun)|epidemic meningitis|brain fever|cerebrospinal fever|meningitis +cerebrovascular|1 +(adj)|vessel|vas|neural structure +cerebrovascular accident|1 +(noun)|stroke|apoplexy|CVA|attack +cerebrum|1 +(noun)|neural structure +cerecloth|1 +(noun)|fabric|cloth|material|textile +cerement|1 +(noun)|pall|shroud|winding-sheet|winding-clothes|burial garment +ceremonial|2 +(adj)|formal +(noun)|ceremony|ceremonial occasion|observance|affair|occasion|social occasion|function|social function +ceremonial dance|1 +(noun)|ritual dancing|ritual dance|dancing|dance|terpsichore|saltation +ceremonial occasion|1 +(noun)|ceremony|ceremonial|observance|affair|occasion|social occasion|function|social function +ceremonially|2 +(adv)|ceremoniously +(adv)|ritually +ceremonious|1 +(adj)|conventional|formal +ceremoniously|1 +(adv)|ceremonially +ceremoniousness|1 +(noun)|formality|formalness +ceremony|3 +(noun)|ceremonial|ceremonial occasion|observance|affair|occasion|social occasion|function|social function +(noun)|activity +(noun)|activity +ceres|2 +(noun)|Ceres|Roman deity +(noun)|Ceres|asteroid|minor planet|planetoid +ceresin|1 +(noun)|wax +cereus|1 +(noun)|Cereus|genus Cereus|caryophylloid dicot genus +ceric|1 +(adj)|metallic element|metal +ceriman|2 +(noun)|Monstera deliciosa|monstera +(noun)|monstera|edible fruit +cerise|2 +(adj)|red|reddish|ruddy|blood-red|carmine|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +(noun)|cherry|cherry red|red|redness +cerium|1 +(noun)|Ce|atomic number 58|metallic element|metal +cerivastatin|1 +(noun)|Baycol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +cernuous|1 +(adj)|drooping|nodding|pendulous|unerect +cero|2 +(noun)|pintado|kingfish|Scomberomorus regalis|Spanish mackerel +(noun)|king mackerel|cavalla|Scomberomorus cavalla|Spanish mackerel +cerotic acid|1 +(noun)|hexacosanoic acid|acid +cerous|1 +(adj)|metallic element|metal +ceroxylon|1 +(noun)|Ceroxylon|genus ceroxylon|monocot genus|liliopsid genus +ceroxylon alpinum|1 +(noun)|wax palm|Ceroxylon andicola|Ceroxylon alpinum|feather palm +ceroxylon andicola|1 +(noun)|wax palm|Ceroxylon andicola|Ceroxylon alpinum|feather palm +cerriped|1 +(noun)|barnacle|cerripede|crustacean +cerripede|1 +(noun)|barnacle|cerriped|crustacean +cert|1 +(noun)|certainty|sure thing|foregone conclusion +certain|7 +(adj)|definite +(adj)|certain |convinced|positive|confident +(adj)|certain |definite|indisputable|sure|sure as shooting +(adj)|certain |sure|bound|destined|doomed|fated|foreordained|predestinate|predestined|in for|predictable +(adj)|sealed +(adj)|sure|reliable +(adj)|sure|careful +certainly|1 +(adv)|surely|sure|for sure|for certain|sure enough|sure as shooting +certainty|2 +(noun)|cognitive state|state of mind +(noun)|sure thing|foregone conclusion|quality +certhia|1 +(noun)|Certhia|genus Certhia|bird genus +certhia americana|1 +(noun)|brown creeper|American creeper|Certhia americana|creeper|tree creeper +certhia familiaris|1 +(noun)|European creeper|Certhia familiaris|creeper|tree creeper +certhiidae|1 +(noun)|Certhiidae|family Certhiidae|bird family +certifiable|2 +(adj)|certified|insane +(adj)|certified +certificate|4 +(noun)|certification|credential|credentials|document|written document|papers +(noun)|security|legal document|legal instrument|official document|instrument +(verb)|award|present +(verb)|authorize|authorise|pass|clear +certificate of deposit|1 +(noun)|CD|debt instrument|certificate of indebtedness +certificate of incorporation|1 +(noun)|certificate|certification|credential|credentials +certificate of indebtedness|1 +(noun)|debt instrument|document +certificated|1 +(adj)|credentialed|documented|certified +certification|4 +(noun)|enfranchisement|authorization|authorisation|empowerment +(noun)|documentation|corroboration|confirmation +(noun)|certificate|credential|credentials|document|written document|papers +(noun)|authentication|validation|proof|substantiation +certificatory|1 +(adj)|supportive +certified|4 +(adj)|certified |certifiable|certificated|credentialed|documented +(adj)|secure +(adj)|certifiable|insane +(adj)|qualified|registered +certified check|1 +(noun)|certified cheque|check|bank check|cheque +certified cheque|1 +(noun)|certified check|check|bank check|cheque +certified milk|1 +(noun)|milk +certified public accountant|1 +(noun)|CPA|accountant|comptroller|controller +certify|5 +(verb)|attest|manifest|demonstrate|evidence|testify|bear witness|prove|evidence|show +(verb)|secure +(verb)|license|licence|authorize|authorise|pass|clear +(verb)|endorse|indorse|guarantee|warrant +(verb)|declare|adjudge|hold +certiorari|1 +(noun)|writ of certiorari|writ|judicial writ +certitude|1 +(noun)|cocksureness|overconfidence|certainty +cerulean|2 +(adj)|azure|sky-blue|bright blue|chromatic +(noun)|azure|sapphire|lazuline|sky-blue|blue|blueness +cerulean blue|1 +(noun)|pigment +cerumen|1 +(noun)|earwax|wax +ceruminous|1 +(adj)|wax +cerussite|1 +(noun)|white lead ore|mineral +cervantes|1 +(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer|author|dramatist|playwright +cervantes saavedra|1 +(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer|author|dramatist|playwright +cervical|2 +(adj)|orifice|opening|porta +(adj)|external body part +cervical artery|1 +(noun)|areteria cervicalis|artery|arteria|arterial blood vessel +cervical canal|1 +(noun)|canalis cervicis uteri|duct|epithelial duct|canal|channel +cervical cap|1 +(noun)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +cervical disc syndrome|1 +(noun)|cervical root syndrome|syndrome +cervical glands|1 +(noun)|cervical glands of the uterus|glandulae cervicales uteri|exocrine gland|duct gland +cervical glands of the uterus|1 +(noun)|cervical glands|glandulae cervicales uteri|exocrine gland|duct gland +cervical nerve|1 +(noun)|spinal nerve|nervus spinalis +cervical plexus|1 +(noun)|plexus cervicalis|nerve plexus +cervical root syndrome|1 +(noun)|cervical disc syndrome|syndrome +cervical smear|1 +(noun)|Pap smear|Papanicolaou smear|smear|cytologic smear|cytosmear +cervical vein|1 +(noun)|deep cervical vein|vena cervicalis profunda|vein|vena|venous blood vessel +cervical vertebra|1 +(noun)|neck bone|vertebra +cervicitis|1 +(noun)|inflammation|redness|rubor +cervicofacial actinomycosis|1 +(noun)|lumpy jaw|actinomycosis +cervid|1 +(noun)|deer|ruminant +cervidae|1 +(noun)|Cervidae|family Cervidae|mammal family +cervine|1 +(adj)|ruminant +cervix|2 +(noun)|neck|external body part +(noun)|uterine cervix|cervix uteri|orifice|opening|porta +cervix uteri|1 +(noun)|cervix|uterine cervix|orifice|opening|porta +cervus|1 +(noun)|Cervus|genus Cervus|mammal genus +cervus canadensis|1 +(noun)|wapiti|American elk|Cervus canadensis|deer|cervid +cervus elaphus|1 +(noun)|red deer|Cervus elaphus|deer|cervid +cervus nipon|1 +(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer|cervid +cervus sika|1 +(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer|cervid +cervus unicolor|1 +(noun)|sambar|sambur|Cervus unicolor|deer|cervid +ceryle|1 +(noun)|Ceryle|genus Ceryle|bird genus +ceryle alcyon|1 +(noun)|belted kingfisher|Ceryle alcyon|kingfisher +cesar chavez|1 +(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader +cesar estrada chavez|1 +(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader +cesar franck|1 +(noun)|Franck|Cesar Franck|composer +cesar ritz|1 +(noun)|Ritz|Cesar Ritz|hotelier|hotelkeeper|hotel manager|hotelman|hosteller +cesare borgia|1 +(noun)|Borgia|Cesare Borgia|cardinal|soldier +cesarean|2 +(adj)|cesarian|caesarean|caesarian|delivery|obstetrical delivery +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +cesarean delivery|1 +(noun)|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +cesarean section|1 +(noun)|cesarean delivery|caesarean delivery|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +cesarian|2 +(adj)|cesarean|caesarean|caesarian|delivery|obstetrical delivery +(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|caesarean|abdominal delivery|delivery|obstetrical delivery +cesarian section|1 +(noun)|cesarean delivery|caesarean delivery|cesarean section|caesarean section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery|obstetrical delivery +cesium|1 +(noun)|caesium|Cs|atomic number 55|metallic element|metal +cesium 137|1 +(noun)|cesium|caesium|Cs|atomic number 55 +cespitose|1 +(adj)|caespitose|tufted|gregarious +cessation|1 +(noun)|surcease|stop|halt +cession|1 +(noun)|ceding|relinquishment|relinquishing +cesspit|1 +(noun)|cesspool|sink|sump|cistern +cesspool|1 +(noun)|cesspit|sink|sump|cistern +cestida|1 +(noun)|Cestida|order Cestida|animal order +cestidae|1 +(noun)|Cestidae|family Cestidae|ctenophore family +cestoda|1 +(noun)|Cestoda|class Cestoda|class +cestode|1 +(noun)|tapeworm|flatworm|platyhelminth +cestrum|1 +(noun)|Cestrum|genus Cestrum|asterid dicot genus +cestrum diurnum|1 +(noun)|day jessamine|Cestrum diurnum|shrub|bush +cestrum nocturnum|1 +(noun)|night jasmine|night jessamine|Cestrum nocturnum|shrub|bush +cestum|1 +(noun)|Cestum|genus Cestum|ctenophore genus +cestum veneris|1 +(noun)|Venus's girdle|Cestum veneris|ctenophore|comb jelly +cetacea|1 +(noun)|Cetacea|order Cetacea|animal order +cetacean|2 +(adj)|cetaceous|animal order +(noun)|cetacean mammal|blower|aquatic mammal +cetacean mammal|1 +(noun)|cetacean|blower|aquatic mammal +cetaceous|1 +(adj)|cetacean|animal order +cetchup|1 +(noun)|catsup|ketchup|tomato ketchup|condiment +ceterach|1 +(noun)|Ceterach|genus Ceterach|fern genus +ceterach officinarum|1 +(noun)|scale fern|scaly fern|Asplenium ceterach|Ceterach officinarum|fern +cetonia|1 +(noun)|Cetonia|genus Cetonia|arthropod genus +cetonia aurata|1 +(noun)|rose chafer|rose beetle|Cetonia aurata|scarabaeid beetle|scarabaeid|scarabaean +cetoniidae|1 +(noun)|Cetoniidae|subfamily Cetoniidae|arthropod family +cetorhinidae|1 +(noun)|Cetorhinidae|family Cetorhinidae|fish family +cetorhinus|1 +(noun)|Cetorhinus|genus Cetorhinus|fish genus +cetorhinus maximus|1 +(noun)|basking shark|Cetorhinus maximus|mackerel shark +cetraria|1 +(noun)|Cetraria|genus Cetraria|fungus genus +cetraria islandica|1 +(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen +cetrimide|1 +(noun)|cationic detergent|invert soap|disinfectant|germicide|antimicrobic|antimicrobial +cetus|1 +(noun)|Cetus|constellation +ceylon|2 +(noun)|Ceylon|island +(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country|state|land +ceylon bowstring hemp|1 +(noun)|Ceylon bowstring hemp|Sansevieria zeylanica|sansevieria|bowstring hemp +ceylon cinnamon|1 +(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel +ceylon cinnamon tree|1 +(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel +ceylon gooseberry|1 +(noun)|ketembilla|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree +ceylonese|1 +(adj)|Sri Lankan|Ceylonese|island +ceylonite|1 +(noun)|Ceylonite|pleonaste|spinel +cezanne|1 +(noun)|Cezanne|Paul Cezanne|painter +cf|3 +(noun)|californium|Cf|atomic number 98|metallic element|metal +(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|mucoviscidosis|fibrosis|monogenic disorder|monogenic disease +(adv)|cf.|confer|see|see also +cf.|2 +(adv)|cf|confer|see|see also +(adv)| +cfc|1 +(noun)|chlorofluorocarbon|CFC|fluorocarbon|pollutant|greenhouse gas|greenhouse emission +cfo|1 +(noun)|chief financial officer|CFO|corporate executive|business executive +cgs|1 +(noun)|cgs system|metric system +cgs system|1 +(noun)|cgs|metric system +ch'i|1 +(noun)|qi|chi|ki|energy|vim|vitality +ch'ing|1 +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +ch'ing dynasty|1 +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +cha-cha|1 +(noun)|cha-cha-cha|ballroom dancing|ballroom dance +cha-cha-cha|1 +(noun)|cha-cha|ballroom dancing|ballroom dance +chabad|2 +(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement +(noun)|Chabad|Chabad Hasidism|Hasidism|Hassidism|Chasidism|Chassidism +chabad-lubavitch|1 +(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement +chabad hasidism|1 +(noun)|Chabad|Chabad Hasidism|Hasidism|Hassidism|Chasidism|Chassidism +chabasite|1 +(noun)|chabazite|zeolite +chabazite|1 +(noun)|chabasite|zeolite +chablis|2 +(noun)|Chablis|town +(noun)|Chablis|white Burgundy|Burgundy|Burgundy wine|white wine +chachalaca|1 +(noun)|gallinaceous bird|gallinacean +chachka|2 +(noun)|tchotchke|mistress|kept woman|fancy woman +(noun)|tchotchke|collectible|collectable +chacma|1 +(noun)|chacma baboon|Papio ursinus|baboon +chacma baboon|1 +(noun)|chacma|Papio ursinus|baboon +chad|4 +(noun)|paper +(noun)|Lake Chad|Chad|lake +(noun)|Chad|Republic of Chad|Tchad|African country|African nation +(noun)|Chad|Chadic|Chadic language|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +chadar|1 +(noun)|chador|chaddar|chuddar|head covering|veil +chaddar|1 +(noun)|chador|chadar|chuddar|head covering|veil +chadian|2 +(adj)|Chadian|African country|African nation +(noun)|Chadian|African +chadian franc|1 +(noun)|Chadian franc|franc +chadic|1 +(noun)|Chad|Chadic|Chadic language|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +chadic language|1 +(noun)|Chad|Chadic|Chadic language|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +chadlock|1 +(noun)|field mustard|wild mustard|charlock|Brassica kaber|Sinapis arvensis|mustard +chador|1 +(noun)|chadar|chaddar|chuddar|head covering|veil +chaenactis|1 +(noun)|herb|herbaceous plant +chaenomeles|1 +(noun)|Chaenomeles|genus Chaenomeles|rosid dicot genus +chaenomeles japonica|1 +(noun)|japonica|maule's quince|Chaenomeles japonica|flowering quince +chaenomeles speciosa|1 +(noun)|Japanese quince|Chaenomeles speciosa|flowering quince +chaenopsis|1 +(noun)|Chaenopsis|genus Chaenopsis|fish genus +chaenopsis ocellata|1 +(noun)|bluethroat pikeblenny|Chaenopsis ocellata|pikeblenny +chaeronea|1 +(noun)|Chaeronea|pitched battle +chaeta|1 +(noun)|seta +chaetal|1 +(adj)|seta +chaetodipterus|1 +(noun)|Chaetodipterus|genus Chaetodipterus|fish genus +chaetodipterus faber|1 +(noun)|spadefish|angelfish|Chaetodipterus faber|percoid fish|percoid|percoidean +chaetodon|1 +(noun)|butterfly fish +chaetodontidae|1 +(noun)|Chaetodontidae|family Chaetodontidae|fish family +chaetognath|1 +(noun)|arrowworm|worm +chaetognatha|1 +(noun)|Chaetognatha|phylum Chaetognatha|phylum +chaetognathan|1 +(adj)|chaetognathous|phylum +chaetognathous|1 +(adj)|chaetognathan|phylum +chafe|8 +(noun)|tenderness|soreness +(noun)|annoyance|vexation|anger|choler|ire +(verb)|gall|fret|irritate +(verb)|feel|experience +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|devil|displease +(verb)|excoriate|abrade|corrade|abrase|rub down|rub off +(verb)|rub|fray|fret|scratch|touch|adjoin|meet|contact +(verb)|warm +chafed|1 +(adj)|galled|painful +chafeweed|1 +(noun)|wood cudweed|Gnaphalium sylvaticum|cudweed +chaff|3 +(noun)|husk|shuck|stalk|straw|stubble|plant material +(noun)|foil +(verb)|kid|jolly|josh|banter|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +chaffer|2 +(verb)|haggle|higgle|huckster|dicker|bargain +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|natter|gossip|jaw|claver|visit|converse|discourse +chaffinch|1 +(noun)|Fringilla coelebs|finch +chafflike|1 +(adj)|chaffy|plant material +chaffweed|1 +(noun)|bastard pimpernel|false pimpernel|subshrub|suffrutex +chaffy|2 +(adj)|chafflike|plant material +(adj)|worthless +chafing|1 +(noun)|tenderness|soreness +chafing dish|1 +(noun)|cooking utensil|cookware +chafing gear|1 +(noun)|covering +chaga|1 +(noun)|Kichaga|Chaga|Chagga|Bantu|Bantoid language +chagall|1 +(noun)|Chagall|Marc Chagall|painter +chagatai|1 +(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki|Turkic|Turko-Tatar|Turkic language +chagga|1 +(noun)|Kichaga|Chaga|Chagga|Bantu|Bantoid language +chagrin|2 +(noun)|humiliation|mortification|embarrassment +(verb)|humiliate|mortify|humble|abase|hurt|wound|injure|bruise|offend|spite +chagrined|1 +(adj)|abashed|embarrassed|discomposed +chahta|1 +(noun)|Choctaw|Chahta|Muskhogean|Muskhogean language|Muskogean|Muskogean language +chaim azriel weizmann|1 +(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman|solon|national leader +chaim soutine|1 +(noun)|Soutine|Chaim Soutine|painter +chaim weizmann|1 +(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman|solon|national leader +chain|12 +(noun)|concatenation|series +(noun)|chemical chain|unit|building block +(noun)|ligament +(noun)|business|concern|business concern|business organization|business organisation +(noun)|restraint|constraint +(noun)|linear unit +(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist +(noun)|range|mountain range|range of mountains|mountain chain|chain of mountains|geological formation|formation +(noun)|iron|irons|chains|shackle|bond|hamper|trammel|trammels +(noun)|string|strand|necklace +(verb)|arrange|set up +(verb)|fasten|fix|secure +chain-smoke|1 +(verb)|smoke +chain-smoker|1 +(noun)|smoker|tobacco user +chain armor|1 +(noun)|chain mail|ring mail|mail|chain armour|ring armor|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +chain armour|1 +(noun)|chain mail|ring mail|mail|chain armor|ring armor|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +chain fern|1 +(noun)|fern +chain gang|1 +(noun)|gang|crew|work party +chain letter|1 +(noun)|letter|missive +chain lightning|1 +(noun)|forked lightning|lightning +chain mail|1 +(noun)|ring mail|mail|chain armor|chain armour|ring armor|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +chain of mountains|1 +(noun)|range|mountain range|range of mountains|chain|mountain chain|geological formation|formation +chain pickerel|1 +(noun)|chain pike|Esox niger|pickerel +chain pike|1 +(noun)|chain pickerel|Esox niger|pickerel +chain printer|1 +(noun)|impact printer +chain reaction|2 +(noun)|chemical reaction|reaction +(noun)|nuclear reaction +chain reactor|1 +(noun)|atomic pile|atomic reactor|pile|nuclear reactor|reactor +chain saw|2 +(noun)|chainsaw|power saw|saw|sawing machine +(noun)| +chain stitch|2 +(noun)|crochet stitch +(noun)|machine stitch|sewing-machine stitch +chain store|1 +(noun)|shop|store +chain tongs|1 +(noun)|chain wrench|pipe wrench|tube wrench +chain up|1 +(verb)|tie down|tie up|bind|truss +chain wrench|1 +(noun)|chain tongs|pipe wrench|tube wrench +chained|1 +(adj)|enchained|in chains|bound +chainlike|1 +(adj)|catenulate|formed +chainlink fence|1 +(noun)|fence|fencing +chains|11 +(noun)|iron|irons|chain|shackle|bond|hamper|trammel|trammels +(noun)|chain|concatenation|series +(noun)|chain|chemical chain|unit|building block +(noun)|chain|ligament +(noun)|chain|business|concern|business concern|business organization|business organisation +(noun)|chain|restraint|constraint +(noun)|chain|linear unit +(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist +(noun)|range|mountain range|range of mountains|chain|mountain chain|chain of mountains|geological formation|formation +(noun)|iron|irons|chain|shackle|bond|hamper|trammel|trammels +(noun)|chain|string|strand|necklace +chainsaw|1 +(noun)|chain saw|power saw|saw|sawing machine +chair|6 +(noun)|seat +(noun)|professorship|position|post|berth|office|spot|billet|place|situation +(noun)|president|chairman|chairwoman|chairperson|presiding officer +(noun)|electric chair|death chair|hot seat|instrument of execution +(verb)|chairman|head|lead +(verb)|moderate|lead|hash out|discuss|talk over +chair car|1 +(noun)|parlor car|parlour car|drawing-room car|palace car|passenger car|coach|carriage +chair lift|2 +(noun)|chairlift|ski tow|ski lift|lift +(noun)| +chairlift|1 +(noun)|chair lift|ski tow|ski lift|lift +chairman|2 +(noun)|president|chairwoman|chair|chairperson|presiding officer +(verb)|chair|head|lead +chairman of the board|1 +(noun)|corporate executive|business executive +chairmanship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +chairperson|1 +(noun)|president|chairman|chairwoman|chair|presiding officer +chairwoman|1 +(noun)|president|chairman|chair|chairperson|presiding officer +chaise|2 +(noun)|chaise longue|daybed|chair +(noun)|shay|carriage|equipage|rig +chaise longue|1 +(noun)|chaise|daybed|chair +chait|1 +(noun)|Chait|Caitra|Hindu calendar month +chaja|1 +(noun)|Chauna torquata|crested screamer +chalaza|2 +(noun)|plant part|plant structure +(noun)|animal tissue +chalazion|1 +(noun)|Meibomian cyst|sebaceous cyst|pilar cyst|wen|steatocystoma +chalcanthite|1 +(noun)|blue vitriol|blue copperas|blue stone|copper sulfate|copper sulphate|cupric sulfate|cupric sulphate +chalcedon|1 +(noun)|Chalcedon|Kadikoy|town +chalcedony|1 +(noun)|calcedony|quartz|transparent gem +chalcid|1 +(noun)|chalcid fly|chalcidfly|chalcid wasp|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +chalcid fly|2 +(noun)|chalcidfly|chalcid|chalcid wasp|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +(noun)| +chalcid wasp|1 +(noun)|chalcid fly|chalcidfly|chalcid|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +chalcidae|1 +(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family +chalcidfly|1 +(noun)|chalcid fly|chalcid|chalcid wasp|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +chalcididae|1 +(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family +chalcis|1 +(noun)|Chalcis|genus Chalcis|arthropod genus +chalcis fly|1 +(noun)|chalcid fly|chalcidfly|chalcid|chalcid wasp +chalcocite|1 +(noun)|copper glance|mineral +chalcopyrite|1 +(noun)|copper pyrites|mineral +chalcostigma|1 +(noun)|Chalcostigma|genus Chalcostigma|bird genus +chaldaea|2 +(noun)|Chaldea|Chaldaea|geographical area|geographic area|geographical region|geographic region +(noun)|Babylonia|Chaldaea|Chaldea|geographical area|geographic area|geographical region|geographic region +chaldaean|3 +(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region +(noun)|Chaldean|Chaldaean|Chaldee|occultist +(noun)|Chaldean|Chaldaean|Chaldee|Semite +chaldea|2 +(noun)|Chaldea|Chaldaea|geographical area|geographic area|geographical region|geographic region +(noun)|Babylonia|Chaldaea|Chaldea|geographical area|geographic area|geographical region|geographic region +chaldean|3 +(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region +(noun)|Chaldean|Chaldaean|Chaldee|occultist +(noun)|Chaldean|Chaldaean|Chaldee|Semite +chaldee|3 +(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region +(noun)|Chaldean|Chaldaean|Chaldee|occultist +(noun)|Chaldean|Chaldaean|Chaldee|Semite +chaldron|1 +(noun)|British capacity unit|Imperial capacity unit +chalet|1 +(noun)|house +chalice|1 +(noun)|goblet|cup +chalice vine|1 +(noun)|trumpet flower|cupflower|Solandra guttata|shrub|bush +chalk|5 +(noun)|calcite +(noun)|white|whiteness +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|writing implement +(verb)|draw +chalk dust|1 +(noun)|dust +chalk line|1 +(noun)|snap line|snapline|string|twine +chalk out|1 +(verb)|sketch|draw +chalk pit|2 +(noun)|chalkpit|pit|quarry|stone pit +(noun)| +chalk talk|1 +(noun)|talk +chalk up|2 +(verb)|run up|owe +(verb)|tally|record|enter|put down +chalkboard|1 +(noun)|blackboard|sheet|flat solid +chalkpit|1 +(noun)|chalk pit|pit|quarry|stone pit +chalkstone|1 +(noun)|tophus|urate +chalky|2 +(adj)|calcareous|carbonate +(adj)|achromatic +challah|1 +(noun)|hallah|bread|breadstuff|staff of life +challenge|9 +(noun)|situation|state of affairs +(noun)|speech act +(noun)|questioning|inquiring +(noun)|objection +(noun)|demand +(verb)|dispute|gainsay|contest|contend|repugn +(verb)|invite|bid +(verb)|request|bespeak|call for|quest +(verb)|take exception|object +challengeable|1 +(adj)|contestable +challenger|1 +(noun)|rival|competitor|competition|contender|contestant +challenging|3 +(adj)|ambitious|difficult |hard +(adj)|thought-provoking|stimulating +(adj)|intriguing|provocative +challis|1 +(noun)|fabric|cloth|material|textile +chalons|1 +(noun)|Chalons|Chalons-sur-Marne|pitched battle +chalons-sur-marne|1 +(noun)|Chalons|Chalons-sur-Marne|pitched battle +chalybeate|1 +(adj)|metallic element|metal +chalybite|1 +(noun)|siderite|iron ore +chamaea|1 +(noun)|Chamaea|genus Chamaea|bird genus +chamaea fasciata|1 +(noun)|wren-tit|Chamaea fasciata|titmouse|tit +chamaecrista|1 +(noun)|Chamaecrista|genus Chamaecrista|rosid dicot genus +chamaecrista fasciculata|1 +(noun)|partridge pea|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub|suffrutex +chamaecyparis|1 +(noun)|Chamaecyparis|genus Chamaecyparis|gymnosperm genus +chamaecyparis lawsoniana|1 +(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar|cedar tree +chamaecyparis nootkatensis|1 +(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar|cedar tree +chamaecyparis thyoides|1 +(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar|cedar tree +chamaecytisus|1 +(noun)|Chamaecytisus|genus Chamaecytisus|rosid dicot genus +chamaecytisus palmensis|1 +(noun)|tagasaste|Chamaecytisus palmensis|Cytesis proliferus|shrub|bush +chamaedaphne|1 +(noun)|Chamaedaphne|genus Chamaedaphne|dilleniid dicot genus +chamaedaphne calyculata|1 +(noun)|leatherleaf|Chamaedaphne calyculata|shrub|bush +chamaeleo|1 +(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus +chamaeleo chamaeleon|1 +(noun)|African chameleon|Chamaeleo chamaeleon|chameleon|chamaeleon +chamaeleo oweni|1 +(noun)|horned chameleon|Chamaeleo oweni|chameleon|chamaeleon +chamaeleon|2 +(noun)|Chamaeleon|Chameleon|constellation +(noun)|chameleon|lizard +chamaeleonidae|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +chamaeleontidae|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +chamaemelum|1 +(noun)|Chamaemelum|genus Chamaemelum|asterid dicot genus +chamaemelum nobilis|1 +(noun)|chamomile|camomile|Chamaemelum nobilis|Anthemis nobilis|herb|herbaceous plant +chamber|6 +(noun)|enclosure +(noun)|cavity|bodily cavity|cavum +(noun)|room +(noun)|assembly +(noun)|bedroom|sleeping room|bedchamber|room +(verb)|house|put up|domiciliate +chamber music|1 +(noun)|classical music|serious music +chamber of commerce|1 +(noun)|association +chamber orchestra|1 +(noun)|orchestra +chambered|1 +(adj)|divided +chambered nautilus|1 +(noun)|pearly nautilus|nautilus|cephalopod|cephalopod mollusk +chamberlain|3 +(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman|solon|national leader +(noun)|treasurer|financial officer +(noun)|steward +chambermaid|1 +(noun)|fille de chambre|maid|maidservant|housemaid|amah +chamberpot|1 +(noun)|potty|thunder mug|receptacle +chambers|6 +(noun)|Chambers|William Chambers|Sir William Chambers|architect|designer +(noun)|chamber|enclosure +(noun)|chamber|cavity|bodily cavity|cavum +(noun)|chamber|room +(noun)|chamber|assembly +(noun)|bedroom|sleeping room|chamber|bedchamber|room +chambray|1 +(noun)|fabric|cloth|material|textile +chameleon|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Chamaeleon|Chameleon|constellation +(noun)|chamaeleon|lizard +chameleon tree frog|1 +(noun)|tree toad|tree frog|tree-frog +chamfer|3 +(noun)|bevel|cant|edge +(verb)|bevel|cut +(verb)|furrow|chase|cut +chamfer bit|1 +(noun)|bit +chamfer plane|1 +(noun)|plane|carpenter's plane|woodworking plane +chamfron|1 +(noun)|chanfron|testiere|frontstall|front-stall|armor plate|armour plate|armor plating|plate armor|plate armour +chammy|1 +(noun)|chamois|chamois leather|chammy leather|shammy|shammy leather|leather +chammy leather|1 +(noun)|chamois|chamois leather|chammy|shammy|shammy leather|leather +chamois|2 +(noun)|chamois leather|chammy|chammy leather|shammy|shammy leather|leather +(noun)|Rupicapra rupicapra|goat antelope +chamois cloth|1 +(noun)|piece of cloth|piece of material +chamois cress|1 +(noun)|Pritzelago alpina|Lepidium alpina|herb|herbaceous plant +chamois leather|1 +(noun)|chamois|chammy|chammy leather|shammy|shammy leather|leather +chamomile|1 +(noun)|camomile|Chamaemelum nobilis|Anthemis nobilis|herb|herbaceous plant +chamosite|1 +(noun)|iron ore +champ|3 +(noun)|champion|title-holder|rival|challenger|competitor|competition|contender +(verb)|chew|masticate|manducate|jaw +(verb)|chomp|chew|masticate|manducate|jaw +champagne|2 +(noun)|bubbly|sparkling wine +(noun)|Champagne|Champagne-Ardenne|French region +champagne-ardenne|1 +(noun)|Champagne|Champagne-Ardenne|French region +champagne cup|1 +(noun)|cup +champagne flute|1 +(noun)|flute|flute glass|wineglass +champaign|2 +(noun)|plain|field|land|dry land|earth|ground|solid ground|terra firma +(noun)|Champaign|town +champion|6 +(adj)|prizewinning|best +(noun)|champ|title-holder|rival|challenger|competitor|competition|contender +(noun)|fighter|hero|paladin|defender|guardian|protector|shielder +(noun)|supporter|protagonist|admirer|booster|friend|advocate|advocator|proponent|exponent +(noun)|ace|adept|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +(verb)|defend|back|endorse|indorse|plump for|plunk for|support +champion lode|1 +(noun)|mother lode|lode|load +championship|2 +(noun)|title|high status +(noun)|backing|backup|patronage|blessing|approval|approving +champlain|2 +(noun)|Champlain|Samuel de Champlain|explorer|adventurer +(noun)|Lake Champlain|Champlain|lake +champleve|1 +(adj)|cloisonne|adorned |decorated +champollion|1 +(noun)|Champollion|Jean Francois Champollion|Egyptologist +champs elysees|1 +(noun)|Champs Elysees|street +chanal|1 +(noun)|chanar|Geoffroea decorticans|shrub|bush +chanar|1 +(noun)|chanal|Geoffroea decorticans|shrub|bush +chance|8 +(adj)|accidental|casual|unplanned +(noun)|opportunity|possibility|possibleness +(noun)|luck|fortune|hazard|phenomenon +(noun)|risk|peril|danger +(noun)|probability|measure|quantity|amount +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|gamble|risk|hazard|take chances|adventure|run a risk|take a chance|try|seek|attempt|essay|assay +(verb)|find|happen|bump|encounter +chance-half correlation|1 +(noun)|split-half correlation|correlation coefficient|coefficient of correlation|correlation +chance-medley|1 +(noun)|manslaughter +chance event|1 +(noun)|accident|fortuity|happening|occurrence|natural event +chance on|1 +(verb)|fall upon|strike|come upon|light upon|chance upon|come across|happen upon|attain|discover|find|regain +chance upon|1 +(verb)|fall upon|strike|come upon|light upon|come across|chance on|happen upon|attain|discover|find|regain +chance variable|1 +(noun)|random variable|variate|variant|stochastic variable|variable|variable quantity +chanceful|1 +(adj)|chancy|dicey|dodgy|dangerous |unsafe +chancel|1 +(noun)|sanctuary|bema|area +chancellery|1 +(noun)|government building +chancellor|2 +(noun)|premier|prime minister|head of state|chief of state +(noun)|principal|school principal|head teacher|head +chancellor of the exchequer|1 +(noun)|Chancellor of the Exchequer|cabinet minister +chancellorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +chancellorsville|1 +(noun)|Chancellorsville|pitched battle +chancery|2 +(noun)|court of chancery|court|tribunal|judicature +(noun)|archive|archives +chancre|1 +(noun)|sore +chancroid|1 +(noun)|ulcer|ulceration +chancroidal|1 +(adj)|ulcer|ulceration +chancrous|1 +(adj)|sore +chancy|2 +(adj)|chanceful|dicey|dodgy|dangerous |unsafe +(adj)|fluky|flukey|iffy|uncertain +chandelier|1 +(noun)|pendant|lighting fixture +chandelle|2 +(noun)|flight maneuver|airplane maneuver +(verb)|rise|lift|arise|move up|go up|come up|uprise +chandi|1 +(noun)|Chandi|Hindu deity +chandler|3 +(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer|author +(noun)|retailer|retail merchant +(noun)|maker|shaper +chandlery|2 +(noun)|candle|taper|wax light +(noun)|storeroom|storage room|stowage +chanfron|1 +(noun)|chamfron|testiere|frontstall|front-stall|armor plate|armour plate|armor plating|plate armor|plate armour +chang|1 +(noun)|Chang Jiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river +chang jiang|1 +(noun)|Chang Jiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river +chang kuo|1 +(noun)|Chang Kuo|Chang Kuo-lao|Chinese deity +chang kuo-lao|1 +(noun)|Chang Kuo|Chang Kuo-lao|Chinese deity +changan|1 +(noun)|Xian|Sian|Singan|Changan|Hsian|city|metropolis|urban center +change|19 +(noun)|alteration|modification|happening|occurrence|natural event +(noun)|relation +(noun)|action +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|cash|hard cash|hard currency +(noun)|thing +(noun)|clothing|article of clothing|vesture|wear +(noun)|coin +(noun)|cash|hard cash|hard currency +(noun)|variety|difference +(verb)|alter|modify +(verb)|alter|vary +(verb)|switch|shift +(verb)|dress|get dressed +(verb)|exchange|commute|convert|replace +(verb)|exchange|interchange|transfer +(verb)|transfer|travel|go|move|locomote +(verb)|deepen +(verb)|replace +change-of-pace|1 +(noun)|change-up|change-of-pace ball|off-speed pitch|pitch|delivery +change-of-pace ball|1 +(noun)|change-up|change-of-pace|off-speed pitch|pitch|delivery +change-up|1 +(noun)|change-of-pace|change-of-pace ball|off-speed pitch|pitch|delivery +change by reversal|1 +(verb)|turn|reverse|change +change course|1 +(verb)|jibe|gybe|jib|sail +change form|1 +(verb)|change shape|deform|change +change hands|1 +(verb)|move|displace +change integrity|1 +(verb)|change +change intensity|1 +(verb)|change|alter|modify +change magnitude|1 +(verb)|change +change of color|1 +(noun)|change of state +change of course|1 +(noun)|change of direction|reorientation +change of direction|1 +(noun)|reorientation|change +change of integrity|1 +(noun)|change +change of life|1 +(noun)|menopause|climacteric|biological time +change of location|1 +(noun)|travel|movement|motion +change of magnitude|1 +(noun)|change +change of mind|1 +(noun)|reversal|flip-flop|turnabout|turnaround|decision making|deciding +change of shape|1 +(noun)|change +change of state|1 +(noun)|change +change over|2 +(verb)|switch|shift|change|alter|modify +(verb)|convert|change|alter|modify +change posture|1 +(verb)|change +change ringing|1 +(noun)|bell ringing|carillon|carillon playing +change shape|1 +(verb)|change form|deform|change +change state|1 +(verb)|turn|change +change surface|1 +(verb)|change +change taste|1 +(verb)|change|alter|modify +changeability|1 +(noun)|changeableness|quality +changeable|4 +(adj)|mutable +(adj)|changeable |changeful|adjustable|astatic|checkered|distortable|erratic|fickle|mercurial|quicksilver|fluid|unstable|fluid|mobile|jittering|kaleidoscopic|kaleidoscopical|open-ended|quick-change|reversible|volatile|mobile|exchangeable|inconstant +(adj)|uncertain|unsettled|variable +(adj)|chatoyant|iridescent|shot|colorful |colourful +changeableness|1 +(noun)|changeability|quality +changed|3 +(adj)|changed |denatured|denaturized|denaturised|exchanged|transformed|varied +(adj)|altered +(adj)|metamorphic +changeful|1 +(adj)|changeable |adjustable|astatic|checkered|distortable|erratic|fickle|mercurial|quicksilver|fluid|unstable|fluid|mobile|jittering|kaleidoscopic|kaleidoscopical|open-ended|quick-change|reversible|volatile|mobile|exchangeable|inconstant +changefulness|1 +(noun)|inconstancy|changeableness|changeability +changeless|3 +(adj)|immutable +(adj)|constant|invariant|steady|unvarying|invariable +(adj)|unalterable|unchangeable +changelessness|2 +(noun)|lastingness|durability|enduringness|strength +(noun)|unchangeability|unchangeableness|unchangingness|quality +changeling|2 +(noun)|idiot|imbecile|cretin|moron|half-wit|retard|simpleton|simple +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +changeover|1 +(noun)|conversion|transition|transformation|transmutation|shift +changer|2 +(noun)|modifier|person|individual|someone|somebody|mortal|human|soul +(noun)|record changer|auto-changer|mechanical device +changing|1 +(adj)|ever-changing|dynamic |dynamical +changtzu|1 +(noun)|Changtzu|mountain peak +channel|11 +(noun)|transmission channel|transmission +(noun)|passage +(noun)|groove|depression|impression|imprint +(noun)|body of water|water +(noun)|communication channel|line|communication|communicating +(noun)|duct|epithelial duct|canal|passage|passageway +(noun)|television channel|TV channel|television station|TV station +(noun)|distribution channel|marketing +(verb)|conduct|transmit|convey|carry|bring|convey|take +(verb)|canalize|canalise|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(verb)|transmit|transfer|transport|channelize|channelise|move|displace +channel-surf|1 +(verb)|surf|switch|shift|change +channel bass|1 +(noun)|red drum|redfish|Sciaenops ocellatus|drum|drumfish +channel capacity|1 +(noun)|data rate +channel cat|1 +(noun)|channel catfish|Ictalurus punctatus|catfish|siluriform fish +channel catfish|1 +(noun)|channel cat|Ictalurus punctatus|catfish|siluriform fish +channel islands|1 +(noun)|Channel Islands|island +channel islands national park|1 +(noun)|Channel Islands National Park|national park +channel tunnel|1 +(noun)|chunnel|Channel Tunnel|railroad tunnel +channelisation|1 +(noun)|channelization|canalization|canalisation|management|direction +channelise|4 +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|control|command +(verb)|channelize|construct|build|make +(verb)|transmit|transfer|transport|channel|channelize|move|displace +(verb)|channelize|straighten|straighten out +channelization|1 +(noun)|channelisation|canalization|canalisation|management|direction +channelize|4 +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelise|control|command +(verb)|channelise|construct|build|make +(verb)|transmit|transfer|transport|channel|channelise|move|displace +(verb)|channelise|straighten|straighten out +channels|9 +(noun)|transmission +(noun)|channel|transmission channel|transmission +(noun)|channel|passage +(noun)|groove|channel|depression|impression|imprint +(noun)|channel|body of water|water +(noun)|channel|communication channel|line|communication|communicating +(noun)|duct|epithelial duct|canal|channel|passage|passageway +(noun)|channel|television channel|TV channel|television station|TV station +(noun)|distribution channel|channel|marketing +channidae|1 +(noun)|Channidae|class Channidae|class +channukah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +channukkah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +chanoyu|1 +(noun)|tea ceremony|ceremony +chanson de geste|1 +(noun)|epic poem|heroic poem|epic|epos +chant|3 +(noun)|religious song +(verb)|intone|intonate|cantillate|sing +(verb)|tone|intone|talk|speak|utter|mouth|verbalize|verbalise +chantarelle|1 +(noun)|chanterelle|Cantharellus cibarius|agaric +chanted|1 +(adj)|musical +chanter|1 +(noun)|melody pipe|pipe|tabor pipe +chanterelle|1 +(noun)|chantarelle|Cantharellus cibarius|agaric +chantey|1 +(noun)|chanty|sea chantey|shanty|work song +chanting|1 +(noun)|intonation|singing|vocalizing +chantlike|1 +(adj)|intoned|singsong|rhythmical |rhythmic +chantry|2 +(noun)|endowment|endowment fund +(noun)|chapel +chanty|1 +(noun)|chantey|sea chantey|shanty|work song +chanukah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +chanukkah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +chao phraya|1 +(noun)|Chao Phraya|river +chaos|4 +(noun)|pandemonium|bedlam|topsy-turvydom|topsy-turvyness|confusion +(noun)|physical phenomenon +(noun)|Chaos|Greek deity +(noun)|dynamical system +chaotic|3 +(adj)|helter-skelter|disorganized |disorganised +(adj)|disorderly|wild +(adj)|dynamical system +chaotic attractor|1 +(noun)|strange attractor|attractor|attracter +chap|5 +(noun)|fellow|feller|lad|gent|fella|blighter|cuss|male|male person +(noun)|crevice|cranny|crack|fissure|depression|impression|imprint +(noun)|crack|cleft|crevice|fissure|scissure +(noun)|legging|legin|leg covering +(verb)|crack +chaparral|1 +(noun)|scrub|bush|vegetation|flora +chaparral broom|1 +(noun)|coyote brush|coyote bush|kidney wort|Baccharis pilularis|shrub|bush +chaparral cock|1 +(noun)|roadrunner|Geococcyx californianus|cuckoo +chaparral mallow|1 +(noun)|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow +chaparral pea|1 +(noun)|stingaree-bush|Pickeringia montana|shrub|bush +chaparral sage|1 +(noun)|purple sage|Salvia leucophylla|sage|salvia +chapati|1 +(noun)|chapatti|flatbread +chapatti|1 +(noun)|chapati|flatbread +chapeau|1 +(noun)|hat|lid|headdress|headgear +chapel|2 +(noun)|place of worship|house of prayer|house of God|house of worship +(noun)|chapel service|service|religious service|divine service +chapel hill|1 +(noun)|Chapel Hill|town +chapel service|1 +(noun)|chapel|service|religious service|divine service +chapelgoer|1 +(noun)|Nonconformist|Protestant +chaperon|2 +(noun)|chaperone|defender|guardian|protector|shielder +(verb)|chaperone|escort +chaperone|2 +(noun)|chaperon|defender|guardian|protector|shielder +(verb)|chaperon|escort +chapfallen|1 +(adj)|chopfallen|crestfallen|deflated|dejected +chapiter|1 +(noun)|capital|cap|top +chaplain|1 +(noun)|clergyman|reverend|man of the cloth +chaplaincy|1 +(noun)|chaplainship|position|post|berth|office|spot|billet|place|situation +chaplainship|1 +(noun)|chaplaincy|position|post|berth|office|spot|billet|place|situation +chaplet|1 +(noun)|wreath|garland|coronal|lei|flower arrangement +chapleted|1 +(adj)|crowned +chaplin|1 +(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian|comic|film maker|filmmaker|film producer|movie maker +chapman|2 +(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer +(noun)|peddler|pedlar|packman|hawker|pitchman +chapped|1 +(adj)|cracked|roughened|rough |unsmooth +chapter|5 +(noun)|section|subdivision +(noun)|phase|stage +(noun)|club|society|guild|gild|lodge|order +(noun)|assembly +(noun)|episode +chapterhouse|2 +(noun)|building|edifice +(noun)|fraternity house|frat house|house +chapultepec|1 +(noun)|Chapultepec|pitched battle +char|5 +(noun)|carbon|C|atomic number 6 +(noun)|charwoman|cleaning woman|cleaning lady|woman|cleaner +(noun)|salmonid +(verb)|coal|burn|combust +(verb)|blacken|scorch|burn +chara|1 +(noun)|Chara|genus Chara|protoctist genus +charabanc|1 +(noun)|bus|autobus|coach|double-decker|jitney|motorbus|motorcoach|omnibus|public transport +characeae|1 +(noun)|Characeae|family Characeae|protoctist family +characid|1 +(noun)|characin|characin fish|cypriniform fish +characidae|1 +(noun)|Characidae|family Characidae|fish family +characin|1 +(noun)|characin fish|characid|cypriniform fish +characin fish|1 +(noun)|characin|characid|cypriniform fish +characinidae|1 +(noun)|Characinidae|family Characinidae|fish family +character|9 +(noun)|fictional character|fictitious character|imaginary being|imaginary creature +(noun)|quality|lineament|property|attribute|dimension +(noun)|fiber|fibre|trait +(noun)|role|theatrical role|part|persona|portrayal|characterization|enactment|personation +(noun)|eccentric|type|case|adult|grownup +(noun)|repute|reputation +(noun)|reference|character reference|recommendation|testimonial|good word +(noun)|grapheme|graphic symbol|written symbol|printed symbol +(verb)|engrave|grave|inscribe +character-at-a-time printer|1 +(noun)|character printer|serial printer|printer|printing machine +character actor|1 +(noun)|actor|histrion|player|thespian|role player +character assassination|1 +(noun)|assassination|blackwash|defamation|calumny|obloquy|traducement|hatchet job +character printer|1 +(noun)|character-at-a-time printer|serial printer|printer|printing machine +character reference|1 +(noun)|character|reference|recommendation|testimonial|good word +character set|1 +(noun)|list|listing +character witness|1 +(noun)|witness +characterisation|2 +(noun)|word picture|word-painting|delineation|depiction|picture|characterization|description|verbal description +(noun)|characterization|description +characterise|2 +(verb)|characterize|distinguish|mark|differentiate +(verb)|qualify|characterize|remember|think of +characterised|1 +(adj)|characterized|defined +characterisic function|1 +(noun)|characteristic curve|graph|graphical record +characteristic|5 +(adj)|characteristic |diagnostic|symptomatic|symptomatic of|distinctive|typical|distinguishing|distinctive|identifying|peculiar|typical +(noun)|feature|property|attribute|dimension +(noun)|quality +(noun)|integer|whole number +(noun)|device characteristic|property +characteristic curve|1 +(noun)|characterisic function|graph|graphical record +characterization|3 +(noun)|word picture|word-painting|delineation|depiction|picture|characterisation|description|verbal description +(noun)|characterisation|description +(noun)|portrayal|enactment|personation|acting|playing|playacting|performing +characterize|2 +(verb)|qualify|characterise|remember|think of +(verb)|characterise|distinguish|mark|differentiate +characterized|1 +(adj)|characterised|defined +characterless|1 +(adj)|nondescript|ordinary +charade|2 +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|pasquinade|put-on|caricature|imitation|impersonation +(noun)|word +charades|3 +(noun)|guessing game +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(noun)|charade|word +charadrii|1 +(noun)|Charadrii|suborder Charadrii|animal order +charadriidae|1 +(noun)|Charadriidae|family Charadriidae|bird family +charadriiformes|1 +(noun)|Charadriiformes|order Charadriiformes|animal order +charadrius|1 +(noun)|Charadrius|genus Charadrius|bird genus +charadrius melodus|1 +(noun)|piping plover|Charadrius melodus|plover +charadrius morinellus|1 +(noun)|dotterel|dotrel|Charadrius morinellus|Eudromias morinellus|plover +charadrius vociferus|1 +(noun)|killdeer|kildeer|killdeer plover|Charadrius vociferus|plover +charales|1 +(noun)|Charales|order Charales|protoctist order +charcoal|6 +(adj)|charcoal-gray|charcoal-grey|achromatic +(noun)|wood coal|fuel|carbon|C|atomic number 6 +(noun)|fusain|writing implement +(noun)|charcoal gray|charcoal grey|oxford gray|oxford grey|gray|grayness|grey|greyness +(noun)|drawing +(verb)|draw +charcoal-gray|1 +(adj)|charcoal|charcoal-grey|achromatic +charcoal-grey|1 +(adj)|charcoal|charcoal-gray|achromatic +charcoal burner|2 +(noun)|worker +(noun)|stove|kitchen stove|range|kitchen range|cooking stove +charcoal gray|1 +(noun)|charcoal|charcoal grey|oxford gray|oxford grey|gray|grayness|grey|greyness +charcoal grey|1 +(noun)|charcoal|charcoal gray|oxford gray|oxford grey|gray|grayness|grey|greyness +charcot|1 +(noun)|Charcot|Jean Martin Charcot|neurologist|brain doctor +charcot-marie-tooth disease|1 +(noun)|Charcot-Marie-Tooth disease|hereditary motor and sensory neuropathy|neuropathy +charcuterie|1 +(noun)|delicatessen|deli|food shop +chard|2 +(noun)|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet|common beet|Beta vulgaris +(noun)|Swiss chard|spinach beet|leaf beet|greens|green|leafy vegetable +chard plant|1 +(noun)|chard|Swiss chard|spinach beet|leaf beet|Beta vulgaris cicla|beet|common beet|Beta vulgaris +chardonnay|2 +(noun)|Chardonnay|chardonnay grape|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Chardonnay|Pinot Chardonnay|white wine +chardonnay grape|1 +(noun)|Chardonnay|vinifera|vinifera grape|common grape vine|Vitis vinifera +charge|40 +(noun)|complaint|pleading +(noun)|cost +(noun)|accusation|assertion|averment|asseveration +(noun)|billing|request|asking +(noun)|attack|onslaught|onset|onrush +(noun)|electric charge|electrical phenomenon +(noun)|liabilities +(noun)|dependant|dependent +(noun)|care|tutelage|guardianship|protection +(noun)|mission|commission|assignment|duty assignment +(noun)|commission|direction|command|bid|bidding|dictation +(noun)|burster|bursting charge|explosive charge|explosive +(noun)|bang|boot|rush|flush|thrill|kick|exhilaration|excitement +(noun)|cathexis|libidinal energy +(noun)|bearing|heraldic bearing|armorial bearing|heraldry +(verb)|bear down|rush +(verb)|accuse +(verb)|bill|account|calculate +(verb)|tear|shoot|shoot down|buck|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|appoint +(verb)|lodge|file|accuse|impeach|incriminate|criminate +(verb)|claim +(verb)|change|alter|modify +(verb)|debit +(verb)|commit|institutionalize|institutionalise|send|transfer +(verb)|consign|entrust|intrust|trust|confide|commit +(verb)|pay +(verb)|lie down|lie +(verb)|agitate|rouse|turn on|commove|excite|charge up|disturb|upset|trouble +(verb)|paint +(verb)|load|fill|fill up|make full +(verb)|level|point|aim|take|train|take aim|direct +(verb)|saddle|burden|command|require|compel +(verb)|instruct +(verb)|instruct +(verb)|blame|impute|ascribe|assign|attribute +(verb)|determine|set +(verb)|change|alter|modify +(verb)|supply|provide|render|furnish +(verb)|impregnate|saturate +charge-exchange accelerator|1 +(noun)|accelerator|particle accelerator|atom smasher +charge account|1 +(noun)|credit account|open account|open-end credit|revolving credit|charge account credit +charge account credit|1 +(noun)|open-end credit|revolving credit|consumer credit +charge card|1 +(noun)|credit card|charge plate|open-end credit|revolving credit|charge account credit|positive identification +charge d'affaires|1 +(noun)|diplomat|diplomatist +charge of quarters|1 +(noun)|enlisted man +charge per unit|1 +(noun)|rate|charge +charge plate|1 +(noun)|credit card|charge card|open-end credit|revolving credit|charge account credit|positive identification +charge sheet|1 +(noun)|blotter|day book|police blotter|rap sheet|written record|written account +charge unit|1 +(noun)|quantity unit|electromagnetic unit|emu +charge up|1 +(verb)|agitate|rouse|turn on|charge|commove|excite|disturb|upset|trouble +chargeable|1 +(adj)|indictable|guilty +charged|4 +(adj)|charged |hot|live|polar|negatively charged|positively charged +(adj)|supercharged|emotional +(adj)|aerated|effervescent +(adj)|provocative +chargeman|1 +(noun)|blaster|workman|working man|working person +charger|2 +(noun)|warhorse +(noun)|battery charger|device +chari|1 +(noun)|Shari|Shari River|Chari|Chari River|river +chari-nile|1 +(noun)|Chari-Nile|Nilo-Saharan|Nilo-Saharan language +chari river|1 +(noun)|Shari|Shari River|Chari|Chari River|river +charina|1 +(noun)|Charina|genus Charina|reptile genus +charina bottae|1 +(noun)|rubber boa|tow-headed snake|Charina bottae|boa +chariness|1 +(noun)|wariness|circumspection|caution +chariot|4 +(noun)|carriage|equipage|rig +(noun)|horse-drawn vehicle +(verb)|transport|carry +(verb)|ride +chariot race|1 +(noun)|race +charioteer|2 +(noun)|driver +(noun)|Auriga|Charioteer|constellation +charisma|1 +(noun)|personal appeal|personal magnetism|attractiveness +charismatic|1 +(adj)|magnetic|attractive +charitable|3 +(adj)|giving|gift +(adj)|charitable |beneficent|benevolent|eleemosynary|philanthropic|benevolent|good|generous +(adj)|kindly|sympathetic|large-hearted|kind +charitable trust|1 +(noun)|public trust|trust +charitableness|1 +(noun)|generosity|generousness +charity|5 +(noun)|foundation +(noun)|brotherly love|benevolence|theological virtue|supernatural virtue +(noun)|giving|gift +(noun)|Jacob's ladder|Greek valerian|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +(noun)|institution|establishment +charity case|1 +(noun)|welfare case|case +charity shot|1 +(noun)|foul shot|free throw|penalty free throw|charity toss|charity throw|basketball shot +charity throw|1 +(noun)|foul shot|free throw|penalty free throw|charity toss|charity shot|basketball shot +charity toss|1 +(noun)|foul shot|free throw|penalty free throw|charity throw|charity shot|basketball shot +charivari|1 +(noun)|shivaree|chivaree|callithump|callathump|belling|serenade +charlatan|1 +(noun)|mountebank|deceiver|cheat|cheater|trickster|beguiler|slicker +charlatanism|1 +(noun)|quackery|dishonesty|knavery +charlemagne|1 +(noun)|Charlemagne|Charles I|Charles the Great|Holy Roman Emperor|Carolingian|Carlovingian +charleroi|1 +(noun)|Charleroi|city|metropolis|urban center +charles|3 +(noun)|Charles|Prince Charles|Prince of Wales +(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist +(noun)|Charles|Charles River|river +charles's law|1 +(noun)|Gay-Lussac's law|Charles's law|law of volumes|law|law of nature +charles's wain|1 +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +charles a. lindbergh|1 +(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator|aeronaut|airman|flier|flyer +charles andre joseph marie de gaulle|1 +(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general|full general|statesman|solon|national leader +charles augustin de coulomb|1 +(noun)|Coulomb|Charles Augustin de Coulomb|physicist +charles augustus lindbergh|1 +(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator|aeronaut|airman|flier|flyer +charles baudelaire|1 +(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet +charles bullfinch|1 +(noun)|Bullfinch|Charles Bullfinch|architect|designer +charles camille saint-saens|1 +(noun)|Saint-Saens|Charles Camille Saint-Saens|pianist|piano player|composer +charles christopher parker|1 +(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist|saxist +charles cornwallis|1 +(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer|general|full general +charles dana gibson|1 +(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator +charles darwin|1 +(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist|natural scientist +charles de gaulle|1 +(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general|full general|statesman|solon|national leader +charles dickens|1 +(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer|author +charles digby harrod|1 +(noun)|Harrod|Charles Digby Harrod|merchant|merchandiser +charles dillon stengel|1 +(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach|baseball manager +charles dodgson|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +charles dudley warner|1 +(noun)|Warner|Charles Dudley Warner|film maker|filmmaker|film producer|movie maker +charles eames|1 +(noun)|Eames|Charles Eames|interior designer|designer|interior decorator|house decorator|room decorator|decorator +charles edouard jeanneret|1 +(noun)|Le Corbusier|Charles Edouard Jeanneret|architect|designer +charles edward berry|1 +(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star +charles edward ives|1 +(noun)|Ives|Charles Edward Ives|composer +charles evans hughes|1 +(noun)|Hughes|Charles Evans Hughes|jurist|legal expert +charles farrar browne|1 +(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer|author +charles follen mckim|1 +(noun)|McKim|Charles Follen McKim|architect|designer +charles fourier|1 +(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist +charles francis hall|1 +(noun)|Hall|Charles Francis Hall|explorer|adventurer +charles francois gounod|1 +(noun)|Gounod|Charles Francois Gounod|composer +charles franklin kettering|1 +(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer|applied scientist|technologist +charles franklin peirce|1 +(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher|logician|logistician +charles frederick menninger|1 +(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist|head-shrinker|shrink +charles frederick worth|1 +(noun)|Worth|Charles Frederick Worth|couturier|fashion designer|clothes designer|designer +charles goodyear|1 +(noun)|Goodyear|Charles Goodyear|inventor|discoverer|artificer +charles grey|1 +(noun)|Grey|Charles Grey|Second Earl Grey|statesman|solon|national leader +charles hardin holley|1 +(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star|songwriter|songster|ballad maker +charles henry harrod|1 +(noun)|Harrod|Charles Henry Harrod|merchant|merchandiser +charles herbert best|1 +(noun)|Best|C. H. Best|Charles Herbert Best|physiologist +charles i|3 +(noun)|Charles II|Charles I|Charles the Bald|Holy Roman Emperor|King of France +(noun)|Charles I|Charles Stuart|King of England|King of Great Britain +(noun)|Charlemagne|Charles I|Charles the Great|Holy Roman Emperor|Carolingian|Carlovingian +charles ii|2 +(noun)|Charles II|Charles I|Charles the Bald|Holy Roman Emperor|King of France +(noun)|Charles II|King of England|King of Great Britain +charles ix|1 +(noun)|Charles IX|King of France +charles james fox|1 +(noun)|Fox|Charles James Fox|statesman|solon|national leader +charles john huffam dickens|1 +(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer|author +charles joseph clark|1 +(noun)|Clark|Joe Clark|Charles Joseph Clark|politician|politico|pol|political leader +charles kay ogden|1 +(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist|semanticist|semiotician +charles kettering|1 +(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer|applied scientist|technologist +charles l'enfant|1 +(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect|designer +charles lamb|1 +(noun)|Lamb|Charles Lamb|Elia|essayist|litterateur +charles laughton|1 +(noun)|Laughton|Charles Laughton|actor|histrion|player|thespian|role player +charles lindbergh|1 +(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator|aeronaut|airman|flier|flyer +charles liston|1 +(noun)|Liston|Sonny Liston|Charles Liston|prizefighter|gladiator +charles louis de secondat|1 +(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher +charles louis napoleon bonaparte|1 +(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|Emperor +charles lutwidge dodgson|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +charles m. schulz|1 +(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist +charles martin hall|1 +(noun)|Hall|Charles Martin Hall|chemist +charles maurice de talleyrand|1 +(noun)|Talleyrand|Charles Maurice de Talleyrand|statesman|solon|national leader +charles menninger|1 +(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist|head-shrinker|shrink +charles munroe schulz|1 +(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist +charles peirce|1 +(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher|logician|logistician +charles percy snow|1 +(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer|author +charles pierre baudelaire|1 +(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet +charles proteus steinmetz|1 +(noun)|Steinmetz|Charles Proteus Steinmetz|electrical engineer|inventor|discoverer|artificer +charles ringling|1 +(noun)|Ringling|Charles Ringling|showman|promoter|impresario +charles river|1 +(noun)|Charles|Charles River|river +charles robert darwin|1 +(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist|natural scientist +charles robert redford|1 +(noun)|Redford|Robert Redford|Charles Robert Redford|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +charles schulz|1 +(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist +charles stewart parnell|1 +(noun)|Parnell|Charles Stewart Parnell|nationalist leader +charles stuart|1 +(noun)|Charles I|Charles Stuart|King of England|King of Great Britain +charles taze russell|1 +(noun)|Russell|Charles Taze Russell|religious leader +charles the bald|1 +(noun)|Charles II|Charles I|Charles the Bald|Holy Roman Emperor|King of France +charles the great|1 +(noun)|Charlemagne|Charles I|Charles the Great|Holy Roman Emperor|Carolingian|Carlovingian +charles thomson rees wilson|1 +(noun)|Wilson|Charles Thomson Rees Wilson|nuclear physicist +charles vii|1 +(noun)|Charles VII|King of France +charles watson-wentworth|1 +(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman|solon|national leader +charles wesley|1 +(noun)|Wesley|Charles Wesley|clergyman|reverend|man of the cloth +charles wilkes|1 +(noun)|Wilkes|Charles Wilkes|explorer|adventurer +charles william post|1 +(noun)|Post|C. W. Post|Charles William Post|food manufacturer +charleston|3 +(noun)|Charleston|capital of West Virginia|state capital +(noun)|Charleston|city|metropolis|urban center|port +(noun)|ballroom dancing|ballroom dance +charlestown navy yard|1 +(noun)|Charlestown Navy Yard|navy yard|naval shipyard|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts +charley-horse|2 +(noun)|charley horse|spasm|cramp|muscle spasm +(noun)| +charley horse|2 +(noun)|charley-horse|spasm|cramp|muscle spasm +(noun)| +charlie chaplin|1 +(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian|comic|film maker|filmmaker|film producer|movie maker +charlie parker|1 +(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist|saxist +charlock|1 +(noun)|field mustard|wild mustard|chadlock|Brassica kaber|Sinapis arvensis|mustard +charlotte|2 +(noun)|Charlotte|The Queen City|city|metropolis|urban center +(noun)|dessert|sweet|afters +charlotte anna perkins gilman|1 +(noun)|Gilman|Charlotte Anna Perkins Gilman|feminist|women's rightist|women's liberationist|libber +charlotte bronte|1 +(noun)|Bronte|Charlotte Bronte|writer|author +charlotte corday|1 +(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist|revolutionary|subversive|subverter +charlotte russe|1 +(noun)|charlotte +charlottetown|1 +(noun)|Charlottetown|provincial capital +charm|7 +(noun)|appeal|appealingness|attractiveness +(noun)|spell|magic spell|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|good luck charm|object|physical object +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|fascinate|bewitch|entrance|enchant|attract|appeal +(verb)|becharm|control|command +(verb)|protect +(verb)|influence|tempt|persuade +charm quark|1 +(noun)|quark +charmed|2 +(adj)|captivated|loving +(adj)|beguiled|captivated|delighted|enthralled|entranced|enchanted +charmer|2 +(noun)|smoothie|smoothy|sweet talker|hypocrite|dissembler|phony|phoney|pretender +(noun)|beguiler|person|individual|someone|somebody|mortal|human|soul +charming|2 +(adj)|pleasing +(adj)|magic|magical|sorcerous|witching|wizard|wizardly|supernatural +charnel|2 +(adj)|ghastly|sepulchral|offensive +(noun)|charnel house|vault|burial vault +charnel house|1 +(noun)|charnel|vault|burial vault +charolais|1 +(noun)|Charolais|beef|beef cattle +charon|1 +(noun)|Charon|ferryman +charophyceae|1 +(noun)|Charophyceae|class Charophyceae|class +charred|1 +(adj)|burn +charred pancake cup|1 +(noun)|Sarcosomataceae +charronia|1 +(noun)|Charronia|genus Charronia|mammal genus +charronia flavigula|1 +(noun)|yellow-throated marten|Charronia flavigula|marten|marten cat +chart|5 +(noun)|illustration +(noun)|map +(verb)|map +(verb)|plan +(verb)|graph|represent|interpret +chartaceous|1 +(adj)|papery|paperlike|material|stuff +charter|5 +(noun)|document|written document|papers +(noun)|contract +(verb)|rent|hire|lease|contract|undertake +(verb)|license|licence|certify +(verb)|lease|rent|hire|engage|take|get|acquire +charter member|1 +(noun)|member +charter school|1 +(noun)|public school +chartered|1 +(adj)|chartered |hired|leased +chartered accountant|1 +(noun)|accountant|comptroller|controller +charterhouse|1 +(noun)|monastery +chartism|1 +(noun)|Chartism|ethic|moral principle|value-system|value orientation +chartist|2 +(noun)|Chartist|reformer|reformist|crusader|meliorist +(noun)|market analyst +chartless|1 +(adj)|uncharted|unmapped|unknown +chartreuse|3 +(adj)|chromatic +(noun)|Chartreuse|liqueur|cordial +(noun)|yellow green|yellowish green|Paris green|pea green|green|greenness|viridity +charwoman|1 +(noun)|char|cleaning woman|cleaning lady|woman|cleaner +chary|1 +(adj)|cagey|cagy|cautious +charybdis|1 +(noun)|Charybdis|whirlpool|vortex|maelstrom +chase|5 +(noun)|pursuit|following|motion|movement|move +(verb)|chase after|trail|tail|tag|give chase|dog|go after|track|pursue|follow|chase away +(verb)|chase after|woo|court|romance|solicit +(verb)|cut +(verb)|furrow|chamfer|cut +chase after|2 +(verb)|chase|woo|court|romance|solicit +(verb)|chase|trail|tail|tag|give chase|dog|go after|track|pursue|follow +chase away|1 +(verb)|drive out|turn back|drive away|dispel|drive off|run off|move|displace +chased|1 +(noun)|pursued|hunted person +chaser|2 +(noun)|pursuer|follower +(noun)|drink +chasid|1 +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +chasidic|1 +(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism|Orthodox Judaism|Jewish Orthodoxy +chasidim|2 +(noun)|Hasidim|Hassidim|Chasidim|Chassidim|Orthodox Judaism|Jewish Orthodoxy +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +chasidism|1 +(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism +chasm|1 +(noun)|opening|gap +chasse|2 +(noun)|sashay|dance step|step +(verb)|sashay|dance +chassid|1 +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +chassidic|1 +(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism|Orthodox Judaism|Jewish Orthodoxy +chassidim|2 +(noun)|Hasidim|Hassidim|Chasidim|Chassidim|Orthodox Judaism|Jewish Orthodoxy +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +chassidism|1 +(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism +chassis|3 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|frame|form|flesh|body|organic structure|physical structure +(noun)|mounting +(noun)|skeleton|skeletal frame|frame|underframe +chaste|3 +(adj)|chaste |celibate|continent|pure|vestal|virgin|virginal|virtuous|moral|pure|virtuous +(adj)|plain +(adj)|moral +chastely|1 +(adv)|virtuously +chasten|3 +(verb)|chastise|castigate|objurgate|correct|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +(verb)|moderate|temper|change|alter|modify +(verb)|tame|subdue|change|alter|modify +chastened|1 +(adj)|admonished|rebuked|reprimanded|reproved|punished +chasteness|1 +(noun)|restraint|simplicity|plainness +chastening|1 +(noun)|correction|chastisement|rebuke|reproof|reproval|reprehension|reprimand +chastise|1 +(verb)|castigate|objurgate|chasten|correct|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +chastised|1 +(adj)|corrected|disciplined|punished +chastisement|2 +(noun)|castigation|punishment|penalty|penalization|penalisation +(noun)|correction|chastening|rebuke|reproof|reproval|reprehension|reprimand +chastity|2 +(noun)|celibacy|sexual abstention|abstinence +(noun)|virtue|sexual morality|morality +chasuble|1 +(noun)|vestment +chat|4 +(noun)|confab|confabulation|schmooze|schmoose|conversation +(noun)|New World chat|New World warbler|wood warbler +(noun)|Old World chat|thrush +(verb)|chew the fat|shoot the breeze|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +chat room|2 +(noun)|chatroom|web site|internet site|site +(noun)| +chat show|1 +(noun)|talk show|broadcast|program|programme +chat up|2 +(verb)|flirt|dally|butterfly|coquet|coquette|romance|philander|mash|talk|speak +(verb)|persuade +chateau|1 +(noun)|country house +chateau-thierry|1 +(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle +chateaubriand|2 +(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman|solon|national leader|writer|author +(noun)|Chateaubriand|fillet|filet +chatelaine|2 +(noun)|mistress +(noun)|chain +chateura|1 +(noun)|Chateura|genus Chateura|bird genus +chateura pelagica|1 +(noun)|chimney swift|chimney swallow|Chateura pelagica|swift +chatoyant|1 +(adj)|changeable|iridescent|shot|colorful |colourful +chatroom|1 +(noun)|chat room|web site|internet site|site +chattahoochee|1 +(noun)|Chattahoochee|Chattahoochee River|river +chattahoochee river|1 +(noun)|Chattahoochee|Chattahoochee River|river +chattanooga|2 +(noun)|Chattanooga|city|metropolis|urban center +(noun)|Chattanooga|battle of Chattanooga|pitched battle +chattel|1 +(noun)|personal chattel|personal property|personal estate|personalty|private property +chattel mortgage|1 +(noun)|mortgage +chatter|8 +(noun)|yak|yack|yakety-yak|cackle|talk|talking +(noun)|chattering|noise +(noun)|chattering|noise +(verb)|click|sound|go +(verb)|cut +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +(verb)|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +(verb)|talk|speak|utter|mouth|verbalize|verbalise +chatter mark|2 +(noun)|erosion|eroding|eating away|wearing|wearing away +(noun)|blemish|defect|mar +chatterbox|2 +(noun)|stream orchid|giant helleborine|Epipactis gigantea|helleborine +(noun)|chatterer|babbler|prater|magpie|spouter|speaker|talker|utterer|verbalizer|verbaliser +chatterer|2 +(noun)|babbler|prater|chatterbox|magpie|spouter|speaker|talker|utterer|verbalizer|verbaliser +(noun)|cotinga|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +chattering|3 +(adj)|talk|speak|utter|mouth|verbalize|verbalise +(noun)|chatter|noise +(noun)|chatter|noise +chattily|1 +(adv)|volubly +chatty|2 +(adj)|gabby|garrulous|loquacious|talkative|talky|voluble +(adj)|gossipy|newsy|communicative |communicatory +chaucer|1 +(noun)|Chaucer|Geoffrey Chaucer|poet +chauffeur|2 +(noun)|driver +(verb)|drive around|drive +chauffeuse|1 +(noun)|chauffeur +chaulmoogra|1 +(noun)|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +chaulmoogra oil|1 +(noun)|oil +chaulmoogra tree|1 +(noun)|chaulmoogra|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +chaulmugra|1 +(noun)|chaulmoogra|chaulmoogra tree|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +chauna|1 +(noun)|Chauna|genus Chauna|bird genus +chauna torquata|1 +(noun)|chaja|Chauna torquata|crested screamer +chauvinism|2 +(noun)|jingoism|superpatriotism|ultranationalism|patriotism|nationalism +(noun)|male chauvinism|antifeminism|sexism +chauvinist|2 +(noun)|bigot +(noun)|jingoist|jingo|flag-waver|hundred-percenter|patrioteer|patriot|nationalist +chauvinistic|1 +(adj)|flag-waving|jingoistic|nationalistic|ultranationalistic|superpatriotic|patriotic |loyal +chavez|2 +(noun)|Chavez|Carlos Chavez|composer +(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader +chaw|2 +(noun)|chew|cud|quid|plug|wad|morsel|bit|bite +(verb)|chew|masticate|manducate|jaw +chawbacon|1 +(noun)|yokel|rube|hick|yahoo|hayseed|bumpkin|rustic +che guevara|1 +(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist|revolutionary|subversive|subverter +cheap|4 +(adj)|cheap |inexpensive|bargain-priced|cut-rate|cut-price|catchpenny|dirt cheap|low-budget|low-cost|low-priced|affordable|nickel-and-dime|sixpenny|threepenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny +(adj)|brassy|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +(adj)|bum|cheesy|chintzy|crummy|punk|sleazy|tinny|inferior +(adj)|chinchy|chintzy|stingy |ungenerous +cheap-jack|1 +(noun)|huckster|seller|marketer|vender|vendor|trafficker +cheap money|1 +(noun)|credit +cheap shot|2 +(noun)|shot|shaft|slam|dig|barb|jibe|gibe +(noun)|shot +cheapen|1 +(verb)|degrade|worsen|aggravate|exacerbate|exasperate +cheapjack|1 +(adj)|shoddy|tawdry|inferior +cheaply|3 +(adv)|stingily|chintzily +(adv)|tattily|inexpensively +(adv)|inexpensively +cheapness|2 +(noun)|bargain rate|cut rate|cut price|inexpensiveness +(noun)|tackiness|tat|sleaze|tastelessness +cheapskate|1 +(noun)|tightwad|miser +cheat|9 +(noun)|darnel|tare|bearded darnel|Lolium temulentum|rye grass|ryegrass +(noun)|chess|Bromus secalinus|brome|bromegrass +(noun)|deceiver|cheater|trickster|beguiler|slicker|wrongdoer|offender +(noun)|swindle|rig|fraud +(noun)|cheating|deception|deceit|dissembling|dissimulation +(verb)|rip off|chisel|victimize|victimise +(verb)|chouse|shaft|screw|chicane|jockey|beat|beat out|crush|shell|trounce|vanquish +(verb)|chisel|deceive|lead on|delude|cozen +(verb)|cheat on|cuckold|betray|wander|deceive|lead on|delude|cozen +cheat on|1 +(verb)|cheat|cuckold|betray|wander|deceive|lead on|delude|cozen +cheater|1 +(noun)|deceiver|cheat|trickster|beguiler|slicker|wrongdoer|offender +cheatgrass|1 +(noun)|downy brome|downy bromegrass|downy cheat|downy chess|drooping brome|Bromus tectorum|brome|bromegrass +cheating|3 +(adj)|adulterous|two-timing|unfaithful +(adj)|dirty|foul|unsporting|unsportsmanlike|unfair |unjust +(noun)|cheat|deception|deceit|dissembling|dissimulation +chebab|1 +(noun)|adolescent|stripling|teenager +chechen|3 +(adj)|Chechen|geographical area|geographic area|geographical region|geographic region +(noun)|Chechen|Russian +(noun)|Chechen|Caucasian|Caucasian language +chechen republic|1 +(noun)|Chechnya|Chechenia|Chechen Republic|geographical area|geographic area|geographical region|geographic region +chechenia|1 +(noun)|Chechnya|Chechenia|Chechen Republic|geographical area|geographic area|geographical region|geographic region +chechnya|1 +(noun)|Chechnya|Chechenia|Chechen Republic|geographical area|geographic area|geographical region|geographic region +check|38 +(noun)|bank check|cheque|draft|bill of exchange|order of payment +(noun)|assay|appraisal|assessment +(noun)|chit|tab|bill|account|invoice +(noun)|arrest|halt|hitch|stay|stop|stoppage|inaction|inactivity|inactiveness +(noun)|confirmation|verification|substantiation|proof|cogent evidence +(noun)|checkout|check-out procedure|inspection|review +(noun)|check mark|tick|mark +(noun)|hindrance|deterrent|impediment|balk|baulk|handicap|difficulty +(noun)|chip|blemish|defect|mar +(noun)|weave +(noun)|bridle|curb|restraint +(noun)|obstruction +(noun)|chess move +(verb)|check up on|look into|check out|suss out|check over|go over|check into|analyze|analyse|study|examine|canvass|canvas +(verb)|examine|see +(verb)|see|insure|see to it|ensure|control|ascertain|assure|verify +(verb)|control|hold in|hold|contain|curb|moderate|restrain|suppress|keep|keep back|hold back +(verb)|stop|halt +(verb)|check off|mark|mark off|tick off|tick|verify +(verb)|retard|delay|change|alter|modify +(verb)|check out +(verb)|match|fit|correspond|jibe|gibe|tally|agree|equal|be +(verb)|obstruct|blockade|block|hinder|stymie|stymy|embarrass +(verb)|discipline|train|condition|develop|make grow +(verb)|consign|charge +(verb)|consign|charge +(verb)|stop|halt +(verb)|stop|halt +(verb)|checker|chequer|draw +(verb)|move|go +(verb)|turn back|arrest|stop|contain|hold back|defend +(verb)|attack|aggress +(verb)|write out|issue|make out|cut +(verb)|determine|find out|see|ascertain|watch|learn +(verb)|verify +(verb)|stop +(verb)|chink|crack +(verb)|crack|break|change +check-in|1 +(noun)|arrival +check-out procedure|1 +(noun)|check|checkout|inspection|review +check bit|1 +(noun)|parity bit|parity|bit +check character|1 +(noun)|character|grapheme|graphic symbol +check girl|1 +(noun)|hatcheck girl|checker +check in|1 +(verb)|sign in|report +check into|1 +(verb)|check|check up on|look into|check out|suss out|check over|go over|analyze|analyse|study|examine|canvass|canvas +check mark|1 +(noun)|check|tick|mark +check off|1 +(verb)|check|mark|mark off|tick off|tick|verify +check out|6 +(verb)|check|check up on|look into|suss out|check over|go over|check into|analyze|analyse|study|examine|canvass|canvas +(verb)|report +(verb)|check +(verb)|run down|pursue|follow up on|act on +(verb)|cheque|withdraw|draw|take out|draw off +(verb)|sound out|feel out|question|query +check over|1 +(verb)|check|check up on|look into|check out|suss out|go over|check into|analyze|analyse|study|examine|canvass|canvas +check overdraft credit|1 +(noun)|overdraft credit|open-end credit|revolving credit|charge account credit +check register|1 +(noun)|register|registry +check stub|1 +(noun)|stub|counterfoil|record +check up on|1 +(verb)|check|look into|check out|suss out|check over|go over|check into|analyze|analyse|study|examine|canvass|canvas +checkbook|1 +(noun)|chequebook|record +checked|2 +(adj)|curbed|restrained +(adj)|checkered|chequered|patterned +checker|5 +(noun)|attendant|attender|tender +(noun)|examiner|inspector +(noun)|man|piece +(verb)|check|chequer|draw +(verb)|chequer|vary|variegate|motley +checkerberry|2 +(noun)|teaberry|wintergreen|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +(noun)|wintergreen|boxberry|teaberry|spiceberry|berry +checkerbloom|1 +(noun)|wild hollyhock|Sidalcea malviflora|mallow +checkerboard|1 +(noun)|board|gameboard +checkered|2 +(adj)|checked|chequered|patterned +(adj)|changeable |changeful +checkered adder|1 +(noun)|milk snake|house snake|milk adder|Lampropeltis triangulum|king snake|kingsnake +checkered daffodil|1 +(noun)|snake's head fritillary|guinea-hen flower|leper lily|Fritillaria meleagris|fritillary|checkered lily +checkered lily|1 +(noun)|fritillary|bulbous plant +checkered whiptail|1 +(noun)|Cnemidophorus tesselatus|whiptail|whiptail lizard +checkers|4 +(noun)|draughts|board game +(noun)|checker|attendant|attender|tender +(noun)|checker|examiner|inspector +(noun)|checker|man|piece +checking account|1 +(noun)|bank account +checking program|1 +(noun)|program|programme|computer program|computer programme +checklist|1 +(noun)|list|listing +checkmate|3 +(noun)|victory|triumph +(noun)|mate|chess move +(verb)|mate|beat|beat out|crush|shell|trounce|vanquish +checkout|3 +(noun)|check|check-out procedure|inspection|review +(noun)|checkout time|departure time|time of departure +(noun)|checkout counter|counter +checkout counter|1 +(noun)|checkout|counter +checkout line|1 +(noun)|queue|waiting line +checkout time|1 +(noun)|checkout|departure time|time of departure +checkpoint|1 +(noun)|stop +checkrein|1 +(noun)|bearing rein|rein +checkroom|1 +(noun)|left-luggage office|room +checkrow|1 +(verb)|plant|set +checksum|1 +(noun)|confirmation|verification|check|substantiation +checkup|1 +(noun)|medical checkup|medical examination|medical exam|medical|health check|examination|scrutiny +cheddar|1 +(noun)|cheddar cheese|store cheese|cheese +cheddar cheese|1 +(noun)|cheddar|store cheese|cheese +cheddar pink|1 +(noun)|Diangus gratianopolitanus|pink|garden pink +cheek|5 +(noun)|feature|lineament +(noun)|impudence|impertinence|disrespect|discourtesy +(noun)|buttock|body part +(noun)|boldness|nerve|brass|face|aggressiveness +(verb)|talk|speak +cheek muscle|1 +(noun)|buccinator muscle|musculus buccinator|facial muscle +cheek pouch|1 +(noun)|pouch|pocket +cheekbone|1 +(noun)|zygomatic bone|mala|malar bone|jugal bone|os zygomaticum|bone|os +cheekily|1 +(adv)|nervily|brashly +cheekiness|1 +(noun)|crust|gall|impertinence|impudence|insolence|freshness|discourtesy|rudeness +cheekpiece|1 +(noun)|strap +cheeky|1 +(adj)|brash|nervy|forward +cheep|2 +(noun)|peep|cry +(verb)|peep|twirp|chirp|chirrup|utter|emit|let out|let loose +cheer|7 +(noun)|approval|commendation +(noun)|cheerfulness|attribute +(verb)|hearten|recreate|embolden|encourage +(verb)|applaud +(verb)|cheer up|jolly along|jolly up +(verb)|cheer up|chirk up|rejoice|joy +(verb)|inspire|urge|barrack|urge on|exhort|pep up|encourage +cheer up|2 +(verb)|cheer|jolly along|jolly up +(verb)|cheer|chirk up|rejoice|joy +cheerer|1 +(noun)|spectator|witness|viewer|watcher|looker +cheerful|2 +(adj)|cheerful |beaming|glad|beamish|smiling|twinkly|blithe|blithesome|lighthearted|lightsome|buoyant|chirpy|perky|cheering|cheery|gay|sunny|chipper|debonair|debonaire|jaunty|glad |glad|happy +(adj)|pollyannaish|upbeat|optimistic +cheerfulness|2 +(noun)|cheer|attribute +(noun)|blitheness|happiness +cheerily|1 +(adv)|pleasantly|sunnily +cheering|3 +(adj)|comforting|satisfying|satisfactory +(adj)|cheerful +(noun)|shouting|encouragement +cheerio|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +cheerlead|1 +(verb)|cheer|inspire|urge|barrack|urge on|exhort|pep up +cheerleader|2 +(noun)|supporter|protagonist|champion|admirer|booster|friend +(noun)|leader +cheerless|1 +(adj)|cheerless |uncheerful|blue|dark|depressing|disconsolate|dismal|dispiriting|gloomy|grim|dingy|dismal|drab|drear|dreary|gloomy|sorry|somber|sombre|joyless|unhappy +cheerlessness|1 +(noun)|uncheerfulness|sadness|unhappiness +cheery|1 +(adj)|gay|sunny|cheerful +cheese|4 +(noun)|dairy product|food +(noun)|tall mallow|high mallow|cheeseflower|Malva sylvestris|mallow +(verb)|discontinue|stop|cease|give up|quit|lay off +(verb)|spool +cheese cutter|1 +(noun)|kitchen utensil +cheese dip|1 +(noun)|dip +cheese fondue|1 +(noun)|fondue|fondu +cheese pizza|1 +(noun)|pizza|pizza pie +cheese press|1 +(noun)|press|mechanical press +cheese rind|1 +(noun)|rind +cheese sauce|1 +(noun)|white sauce|bechamel sauce|bechamel +cheese souffle|1 +(noun)|souffle +cheese spread|1 +(noun)|spread|paste +cheese tray|1 +(noun)|cheeseboard|tray +cheeseboard|1 +(noun)|cheese tray|tray +cheeseburger|1 +(noun)|hamburger|beefburger +cheesecake|2 +(noun)|cake +(noun)|photograph|photo|exposure|pic +cheesecloth|1 +(noun)|gauze|netting|veiling +cheesed off|1 +(adj)|exasperated|browned off|displeased +cheeseflower|1 +(noun)|tall mallow|high mallow|cheese|Malva sylvestris|mallow +cheeselike|1 +(adj)|soft +cheesemonger|1 +(noun)|trader|bargainer|dealer|monger +cheeseparing|1 +(adj)|close|near|penny-pinching|stingy |ungenerous +cheesy|1 +(adj)|bum|cheap|chintzy|crummy|punk|sleazy|tinny|inferior +cheetah|1 +(noun)|chetah|Acinonyx jubatus|big cat|cat +cheever|1 +(noun)|Cheever|John Cheever|writer|author +cheewink|1 +(noun)|chewink|Pipilo erythrophthalmus|towhee +chef|1 +(noun)|cook +chef's salad|1 +(noun)|combination salad +chef-d'oeuvre|1 +(noun)|masterpiece|work|piece of work +cheilanthes|1 +(noun)|Cheilanthes|genus Cheilanthes|fern genus +cheilanthes alabamensis|1 +(noun)|smooth lip fern|Alabama lip fern|Cheilanthes alabamensis|lip fern|lipfern +cheilanthes eatonii|1 +(noun)|southwestern lip fern|Cheilanthes eatonii|lip fern|lipfern +cheilanthes gracillima|1 +(noun)|lace fern|Cheilanthes gracillima|fern +cheilanthes lanosa|1 +(noun)|wooly lip fern|hairy lip fern|Cheilanthes lanosa|lip fern|lipfern +cheilitis|1 +(noun)|inflammation|redness|rubor +cheiloschisis|1 +(noun)|cleft lip|harelip|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +cheilosis|1 +(noun)|perleche|disorder|upset +cheiranthus|1 +(noun)|Cheiranthus|genus Cheiranthus|dilleniid dicot genus +cheiranthus allionii|1 +(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower +cheiranthus asperus|1 +(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower +cheiranthus cheiri|1 +(noun)|wallflower|Cheiranthus cheiri|Erysimum cheiri|flower +chekhov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +chekov|1 +(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist|playwright +chela|2 +(noun)|Hindu|Hindoo +(noun)|claw|nipper|pincer|extremity|appendage|member +chelate|4 +(adj)|chelated|chemical process|chemical change|chemical action +(adj)|extremity|appendage|member +(noun)|chelate compound|heterocyclic compound|heterocyclic|heterocycle +(verb)|form|constitute|make +chelate compound|1 +(noun)|chelate|heterocyclic compound|heterocyclic|heterocycle +chelated|1 +(adj)|chelate|chemical process|chemical change|chemical action +chelation|2 +(noun)|process +(noun)|chemical process|chemical change|chemical action +chelicera|1 +(noun)|extremity|appendage|member +cheliceral|1 +(adj)|chelicerate|extremity|appendage|member +chelicerata|1 +(noun)|Chelicerata|superclass Chelicerata|class +chelicerate|1 +(adj)|cheliceral|extremity|appendage|member +chelicerous|1 +(adj)|extremity|appendage|member +chelidonium|1 +(noun)|Chelidonium|genus Chelidonium|dilleniid dicot genus +chelidonium majus|1 +(noun)|celandine|greater celandine|swallowwort|swallow wort|Chelidonium majus|poppy +chelifer|1 +(noun)|Chelifer|genus Chelifer|arthropod genus +chelifer cancroides|1 +(noun)|book scorpion|Chelifer cancroides|false scorpion|pseudoscorpion +cheliferous|1 +(adj)|extremity|appendage|member +cheloid|1 +(noun)|keloid|scar|cicatrix|cicatrice +chelone|1 +(noun)|Chelone|genus Chelone|asterid dicot genus +chelone glabra|1 +(noun)|shellflower|shell-flower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant|bog plant|swamp plant +chelonethida|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +chelonia|2 +(noun)|Chelonia|genus Chelonia|reptile genus +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +chelonia mydas|1 +(noun)|green turtle|Chelonia mydas|sea turtle|marine turtle +chelonian|2 +(adj)|animal order +(noun)|chelonian reptile|anapsid|anapsid reptile +chelonian reptile|1 +(noun)|chelonian|anapsid|anapsid reptile +chelonidae|1 +(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family +cheloniidae|1 +(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family +chelyabinsk|1 +(noun)|Chelyabinsk|city|metropolis|urban center +chelydra|1 +(noun)|Chelydra|genus Chelydra|reptile genus +chelydra serpentina|1 +(noun)|common snapping turtle|snapper|Chelydra serpentina|snapping turtle +chelydridae|1 +(noun)|Chelydridae|family Chelydridae|reptile family +chem lab|1 +(noun)|chemistry lab|chemistry laboratory|lab|laboratory|research lab|research laboratory|science lab|science laboratory +chemakuan|1 +(noun)|Chemakuan|Mosan +chemakum|1 +(noun)|Chemakum|Chemakuan +chemic|1 +(adj)|chemical|natural science +chemical|3 +(adj)|chemic|natural science +(adj)|material|stuff +(noun)|material|stuff +chemical action|1 +(noun)|chemical process|chemical change|natural process|natural action|action|activity +chemical agent|1 +(noun)|agent +chemical analysis|1 +(noun)|qualitative analysis|analysis +chemical attraction|1 +(noun)|affinity|force +chemical balance|1 +(noun)|analytical balance|beam balance +chemical bomb|1 +(noun)|gas bomb|bomb|chemical weapon +chemical bond|1 +(noun)|bond|attraction|attractive force +chemical chain|1 +(noun)|chain|unit|building block +chemical change|1 +(noun)|chemical process|chemical action|natural process|natural action|action|activity +chemical compound|1 +(noun)|compound|substance|matter +chemical defence|1 +(noun)|chemical defense|defense|defence|defensive measure +chemical defense|1 +(noun)|chemical defence|defense|defence|defensive measure +chemical diabetes|1 +(noun)|latent diabetes|diabetes mellitus|DM +chemical element|1 +(noun)|element|substance|matter +chemical energy|1 +(noun)|energy +chemical engineering|2 +(noun)|engineering|engineering science|applied science|technology +(noun)|technology|engineering +chemical equilibrium|1 +(noun)|equilibrium|chemical reaction|reaction +chemical formula|1 +(noun)|formula|statement +chemical group|1 +(noun)|group|radical|unit|building block +chemical industry|1 +(noun)|industry +chemical irritant|1 +(noun)|substance|matter +chemical mace|1 +(noun)|Mace|Chemical Mace|chloroacetophenone|CN gas +chemical mechanism|1 +(noun)|mechanism|chemical process|chemical change|chemical action +chemical notation|1 +(noun)|notation|notational system +chemical operations|1 +(noun)|chemical warfare|war|warfare +chemical phenomenon|1 +(noun)|natural phenomenon +chemical plant|1 +(noun)|factory|mill|manufacturing plant|manufactory +chemical process|1 +(noun)|chemical change|chemical action|natural process|natural action|action|activity +chemical property|1 +(noun)|property +chemical reaction|1 +(noun)|reaction|chemical process|chemical change|chemical action +chemical reactor|1 +(noun)|apparatus|setup +chemical science|1 +(noun)|chemistry|natural science +chemical terrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +chemical warfare|1 +(noun)|chemical operations|war|warfare +chemical weapon|1 +(noun)|weapon of mass destruction|WMD|W.M.D. +chemical weapons convention|1 +(noun)|Chemical Weapons Convention|convention +chemically|1 +(adv)|with chemicals +chemiluminescence|1 +(noun)|luminescence +chemiluminescent|1 +(adj)|luminescence +chemin de fer|1 +(noun)|baccarat|card game|cards +chemise|2 +(noun)|shimmy|shift|slip|teddies|teddy|undergarment +(noun)|sack|shift|dress|frock +chemisorb|1 +(verb)|sorb|take up +chemisorption|1 +(noun)|chemosorption|adsorption|surface assimilation +chemisorptive|1 +(adj)|chemosorptive|adsorbent |adsorptive|surface-assimilative +chemist|2 +(noun)|scientist|man of science +(noun)|pharmacist|druggist|apothecary|pill pusher|pill roller|health professional|health care provider|caregiver +chemist's|1 +(noun)|drugstore|apothecary's shop|chemist's shop|pharmacy|shop|store +chemist's shop|1 +(noun)|drugstore|apothecary's shop|chemist's|pharmacy|shop|store +chemistry|2 +(noun)|chemical science|natural science +(noun)|interpersonal chemistry|alchemy|social relation +chemistry class|1 +(noun)|class|form|grade +chemistry department|1 +(noun)|department of chemistry|academic department +chemistry lab|1 +(noun)|chemistry laboratory|chem lab|lab|laboratory|research lab|research laboratory|science lab|science laboratory +chemistry laboratory|1 +(noun)|chemistry lab|chem lab|lab|laboratory|research lab|research laboratory|science lab|science laboratory +chemnitz|1 +(noun)|Chemnitz|Karl-Marx Stadt|city|metropolis|urban center +chemoimmunology|1 +(noun)|immunochemistry|chemistry|chemical science|immunology +chemoreceptive|1 +(adj)|sense organ|sensory receptor|receptor +chemoreceptor|1 +(noun)|sense organ|sensory receptor|receptor +chemosis|1 +(noun)|edema|oedema|hydrops|dropsy +chemosorption|1 +(noun)|chemisorption|adsorption|surface assimilation +chemosorptive|1 +(adj)|chemisorptive|adsorbent |adsorptive|surface-assimilative +chemosurgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +chemosynthesis|1 +(noun)|synthesis +chemotaxis|1 +(noun)|taxis +chemotherapeutic|1 +(adj)|chemotherapeutical|therapy +chemotherapeutical|1 +(adj)|chemotherapeutic|therapy +chemotherapy|1 +(noun)|therapy +chemulpo|1 +(noun)|Inchon|Incheon|Chemulpo|city|metropolis|urban center|port +chen|1 +(noun)|Chen|subgenus Chen|bird genus +chen caerulescens|1 +(noun)|blue goose|Chen caerulescens|goose +chen n. yang|1 +(noun)|Yang Chen Ning|Chen N. Yang|physicist +chenfish|1 +(noun)|white croaker|kingfish|Genyonemus lineatus|croaker +chenille|2 +(noun)|cord +(noun)|fabric|cloth|material|textile +chenin blanc|2 +(noun)|Chenin blanc|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Chenin blanc|white wine +chennai|1 +(noun)|Chennai|Madras|city|metropolis|urban center +chenopodiaceae|1 +(noun)|Chenopodiaceae|family Chenopodiaceae|goosefoot family|caryophylloid dicot family +chenopodiales|1 +(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order +chenopodium|1 +(noun)|Chenopodium|genus Chenopodium|caryophylloid dicot genus +chenopodium album|1 +(noun)|lamb's-quarters|pigweed|wild spinach|Chenopodium album|goosefoot +chenopodium ambrosioides|1 +(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot +chenopodium bonus-henricus|1 +(noun)|good-king-henry|allgood|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot +chenopodium botrys|1 +(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot +chenopodium capitatum|1 +(noun)|strawberry blite|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot +chenopodium glaucum|1 +(noun)|oak-leaved goosefoot|oakleaf goosefoot|Chenopodium glaucum|goosefoot +chenopodium hybridum|1 +(noun)|sowbane|red goosefoot|Chenopodium hybridum|goosefoot +chenopodium murale|1 +(noun)|nettle-leaved goosefoot|nettleleaf goosefoot|Chenopodium murale|goosefoot +chenopodium rubrum|1 +(noun)|red goosefoot|French spinach|Chenopodium rubrum|goosefoot +chenopodium vulvaria|1 +(noun)|stinking goosefoot|Chenopodium vulvaria|goosefoot +cheoplastic metal|1 +(noun)|alloy|metal +cheoplasty|1 +(noun)|modeling|modelling|molding|moulding +cheque|2 +(noun)|check|bank check|draft|bill of exchange|order of payment +(verb)|check out|withdraw|draw|take out|draw off +chequebook|1 +(noun)|checkbook|record +chequer|2 +(verb)|check|checker|draw +(verb)|checker|vary|variegate|motley +chequered|1 +(adj)|checked|checkered|patterned +cherbourg|1 +(noun)|Cherbourg|town|port +cheremis|2 +(noun)|Cheremis|Cheremiss|Mari|Russian +(noun)|Cheremis|Cheremiss|Mari|Volgaic +cheremiss|2 +(noun)|Cheremis|Cheremiss|Mari|Russian +(noun)|Cheremis|Cheremiss|Mari|Volgaic +cherepovets|1 +(noun)|Cherepovets|city|metropolis|urban center +cherimolla|1 +(noun)|cherimoya|custard apple +cherimoya|2 +(noun)|cherimoya tree|Annona cherimola|custard apple|custard apple tree +(noun)|cherimolla|custard apple +cherimoya tree|1 +(noun)|cherimoya|Annona cherimola|custard apple|custard apple tree +cherish|1 +(verb)|care for|hold dear|treasure|love +cherished|2 +(adj)|precious|treasured|wanted|loved +(adj)|held dear|unforsaken +chermidae|1 +(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family +chernobyl|1 +(noun)|Chernobyl|city|metropolis|urban center +chernozemic soil|1 +(noun)|loam +cherokee|2 +(noun)|Cherokee|Iroquoian|Iroquois|Iroquoian language +(noun)|Cherokee|Iroquois +cherokee rose|1 +(noun)|Cherokee rose|Rosa laevigata|rose +cheroot|1 +(noun)|cigar +cherry|5 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +(noun)|wood +(noun)|cherry tree|fruit tree +(noun)|edible fruit|drupe|stone fruit +(noun)|cerise|cherry red|red|redness +cherry-red|1 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|crimson|ruby|ruby-red|scarlet|chromatic +cherry-tree gum|1 +(noun)|gum +cherry apple|1 +(noun)|Siberian crab|Siberian crab apple|cherry crab|Malus baccata|crab apple|crabapple|cultivated crab apple +cherry birch|1 +(noun)|sweet birch|black birch|Betula lenta|birch|birch tree +cherry bomb|1 +(noun)|firecracker|cracker|banger +cherry crab|1 +(noun)|Siberian crab|Siberian crab apple|cherry apple|Malus baccata|crab apple|crabapple|cultivated crab apple +cherry laurel|2 +(noun)|laurel cherry|Prunus laurocerasus|shrub|bush +(noun)|laurel cherry|mock orange|wild orange|Prunus caroliniana|angiospermous tree|flowering tree +cherry pepper|1 +(noun)|Capsicum annuum cerasiforme|capsicum|pepper|capsicum pepper plant +cherry plum|1 +(noun)|myrobalan|myrobalan plum|Prunus cerasifera|plum|plum tree +cherry red|1 +(noun)|cerise|cherry|red|redness +cherry stone|3 +(noun)|stone|pit|endocarp +(noun)|cherrystone|cherrystone clam|quahaug|quahog|hard-shell clam|round clam +(noun)|cherrystone|cherrystone clam|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria +cherry tomato|2 +(noun)|Lycopersicon esculentum cerasiforme|tomato|love apple|tomato plant|Lycopersicon esculentum +(noun)|tomato +cherry tree|1 +(noun)|cherry|fruit tree +cherrystone|2 +(noun)|cherrystone clam|quahaug|quahog|hard-shell clam|round clam +(noun)|cherrystone clam|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria +cherrystone clam|2 +(noun)|cherrystone|quahaug|quahog|hard-shell clam|round clam +(noun)|cherrystone|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria +chert|1 +(noun)|silica|silicon oxide|silicon dioxide +cherty|1 +(adj)|silica|silicon oxide|silicon dioxide +cherub|2 +(noun)|baby|babe|infant +(noun)|angel +cherubic|1 +(adj)|angelic|angelical|seraphic|sweet|lovable |loveable +cherubini|1 +(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer +chervil|2 +(noun)|beaked parsley|Anthriscus cereifolium|herb|herbaceous plant +(noun)|herb +chesapeake bay|1 +(noun)|Chesapeake Bay|bay +chesapeake bay retriever|1 +(noun)|Chesapeake Bay retriever|retriever +cheshire cat|1 +(noun)|Cheshire cat|fictional character|fictitious character|character +cheshire cheese|1 +(noun)|Cheshire cheese|cheese +chess|2 +(noun)|cheat|Bromus secalinus|brome|bromegrass +(noun)|chess game|board game +chess club|1 +(noun)|club|society|guild|gild|lodge|order +chess game|1 +(noun)|chess|board game +chess master|1 +(noun)|chess player +chess match|1 +(noun)|match +chess move|1 +(noun)|move +chess piece|1 +(noun)|chessman|man|piece +chess player|1 +(noun)|player|participant +chess set|1 +(noun)|set +chessboard|1 +(noun)|checkerboard +chessman|1 +(noun)|chess piece|man|piece +chest|3 +(noun)|thorax|pectus|body part +(noun)|box +(noun)|chest of drawers|bureau|dresser|furniture|piece of furniture|article of furniture +chest cavity|1 +(noun)|thoracic cavity|cavity|bodily cavity|cavum +chest of drawers|1 +(noun)|chest|bureau|dresser|furniture|piece of furniture|article of furniture +chest pain|1 +(noun)|pain|hurting +chest protector|1 +(noun)|protective garment +chest register|1 +(noun)|chest voice|chest tone|register +chest tone|1 +(noun)|chest register|chest voice|register +chest voice|1 +(noun)|chest register|chest tone|register +chester|1 +(noun)|Chester|city|metropolis|urban center +chester a. arthur|1 +(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States|United States President|President|Chief Executive +chester alan arthur|1 +(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States|United States President|President|Chief Executive +chester nimitz|1 +(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer +chester william nimitz|1 +(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer +chesterfield|3 +(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman|solon|national leader +(noun)|davenport +(noun)|greatcoat|overcoat|topcoat +chesterton|1 +(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer|author +chestnut|6 +(adj)|chromatic +(noun)|wood +(noun)|chestnut tree|tree +(noun)|edible nut +(noun)|callus +(noun)|horse|Equus caballus +chestnut-bark disease|1 +(noun)|chestnut blight|chestnut canker|blight +chestnut blight|1 +(noun)|chestnut canker|chestnut-bark disease|blight +chestnut canker|1 +(noun)|chestnut blight|chestnut-bark disease|blight +chestnut oak|1 +(noun)|oak|oak tree +chestnut tree|1 +(noun)|chestnut|tree +chesty|2 +(adj)|big-chested|robust +(adj)|arrogant|self-important|proud +chetah|1 +(noun)|cheetah|Acinonyx jubatus|big cat|cat +chetrum|1 +(noun)|Bhutanese monetary unit +cheval-de-frise|1 +(noun)|chevaux-de-frise|defensive structure|defense|defence +cheval glass|1 +(noun)|mirror +chevalier|2 +(noun)|Chevalier|Maurice Chevalier|actor|histrion|player|thespian|role player|singer|vocalist|vocalizer|vocaliser +(noun)|cavalier|male aristocrat +chevalier de bayard|1 +(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier +chevalier de lamarck|1 +(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist|natural scientist +chevaux-de-frise|2 +(noun)|cheval-de-frise|defensive structure|defense|defence +(noun)|cheval-de-frise|defensive structure|defense|defence +cheviot|1 +(noun)|Cheviot|domestic sheep|Ovis aries +chevre|1 +(noun)|goat cheese|cheese +chevron|2 +(noun)|stripe|stripes|grade insignia|badge +(noun)|charge|bearing|heraldic bearing|armorial bearing +chevrotain|1 +(noun)|mouse deer|ruminant +chevvy|1 +(verb)|harass|hassle|harry|chivy|chivvy|chevy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +chevy|1 +(verb)|harass|hassle|harry|chivy|chivvy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +chew|3 +(noun)|chaw|cud|quid|plug|wad|morsel|bit|bite +(noun)|chewing|mastication|manduction|change of state +(verb)|masticate|manducate|jaw|grate|grind +chew out|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +chew over|1 +(verb)|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +chew the fat|1 +(verb)|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +chew up|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|have words|lambaste|lambast|knock|criticize|criticise|pick apart +chewa|1 +(noun)|Chewa|African +chewable|1 +(adj)|cuttable|tender +chewer|1 +(noun)|consumer +chewing|1 +(noun)|chew|mastication|manduction|change of state +chewing gum|2 +(noun)|gum +(noun)|gum|sweet|confection|confectionery +chewing out|1 +(noun)|castigation|earful|bawling out|upbraiding|going-over|dressing down|rebuke|reproof|reproval|reprehension|reprimand +chewink|1 +(noun)|cheewink|Pipilo erythrophthalmus|towhee +chewy|2 +(adj)|tough +(adj)|elastic +cheyenne|3 +(noun)|Cheyenne|capital of Wyoming|state capital +(noun)|Cheyenne|Algonquian|Algonquin|Algonquian language +(noun)|Cheyenne|Algonquian|Algonquin|Plains Indian|Buffalo Indian +cheyne-stokes respiration|1 +(noun)|periodic breathing|Cheyne-Stokes respiration|breathing|external respiration|respiration|ventilation +chi|2 +(noun)|qi|ch'i|ki|energy|vim|vitality +(noun)|khi|letter|letter of the alphabet|alphabetic character +chiacoan peccary|1 +(noun)|Chiacoan peccary|peccary|musk hog +chian|1 +(adj)|Chian|Aegean island +chian turpentine|1 +(noun)|Chian turpentine|turpentine|gum terpentine +chiang chung-cheng|1 +(noun)|Chiang Kai-shek|Chiang Chung-cheng|general|full general|statesman|solon|national leader +chiang kai-shek|1 +(noun)|Chiang Kai-shek|Chiang Chung-cheng|general|full general|statesman|solon|national leader +chianti|1 +(noun)|Chianti|red wine +chiaroscuro|1 +(noun)|picture|image|icon|ikon +chiasm|1 +(noun)|chiasma|decussation|structure|anatomical structure|complex body part|bodily structure|body structure +chiasma|1 +(noun)|chiasm|decussation|structure|anatomical structure|complex body part|bodily structure|body structure +chiasma opticum|1 +(noun)|optic chiasma|optic chiasm|chiasma|chiasm|decussation +chiasmal|1 +(adj)|chiasmic|chiasmatic|structure|anatomical structure|complex body part|bodily structure|body structure +chiasmatic|1 +(adj)|chiasmal|chiasmic|structure|anatomical structure|complex body part|bodily structure|body structure +chiasmic|1 +(adj)|chiasmal|chiasmatic|structure|anatomical structure|complex body part|bodily structure|body structure +chiasmus|1 +(noun)|rhetorical device +chic|2 +(adj)|smart|voguish|stylish |fashionable +(noun)|chicness|modishness|smartness|stylishness|swank|last word|elegance +chicago|2 +(noun)|Chicago|Windy City|city|metropolis|urban center|port +(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game|cards +chicane|5 +(noun)|bridge hand +(noun)|movable barrier +(noun)|trickery|chicanery|guile|wile|shenanigan|deception|deceit|dissembling|dissimulation +(verb)|cheat|chouse|shaft|screw|jockey|beat|beat out|crush|shell|trounce|vanquish +(verb)|cavil|carp|object +chicanery|1 +(noun)|trickery|chicane|guile|wile|shenanigan|deception|deceit|dissembling|dissimulation +chicha|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +chichewa|1 +(noun)|Chichewa|Bantu|Bantoid language +chichi|1 +(adj)|stylish |fashionable +chichipe|1 +(noun)|Lemaireocereus chichipe|cactus +chick|2 +(noun)|biddy|chicken|Gallus gallus|young bird +(noun)|dame|doll|wench|skirt|bird|girl|miss|missy|young lady|young woman|fille +chickadee|1 +(noun)|titmouse|tit +chickamauga|1 +(noun)|Chickamauga|battle of Chickamauga|pitched battle +chickasaw|2 +(noun)|Chickasaw|Indian|North American Indian|American Indian|Red Indian +(noun)|Chickasaw|Muskhogean|Muskhogean language|Muskogean|Muskogean language +chickasaw plum|1 +(noun)|hog plum|hog plum bush|Prunus angustifolia|wild plum|wild plum tree +chicken|5 +(adj)|chickenhearted|lily-livered|white-livered|yellow|yellow-bellied|cowardly |fearful +(noun)|poulet|volaille|poultry +(noun)|Gallus gallus|domestic fowl|fowl|poultry +(noun)|wimp|crybaby|weakling|doormat|wuss +(noun)|contest|competition +chicken-breasted|1 +(adj)|pigeon-breasted|unshapely +chicken-fight|2 +(verb)|chickenfight|fight|struggle +(verb)| +chicken and rice|1 +(noun)|dish +chicken breast|1 +(noun)|pigeon breast|deformity|malformation|misshapenness +chicken broth|1 +(noun)|chicken stock|broth|stock +chicken cacciatora|1 +(noun)|chicken cacciatore|hunter's chicken|chicken casserole +chicken cacciatore|1 +(noun)|chicken cacciatora|hunter's chicken|chicken casserole +chicken casserole|1 +(noun)|casserole +chicken coop|1 +(noun)|coop|hencoop|henhouse|farm building +chicken cordon bleu|1 +(noun)|dish +chicken drumstick|1 +(noun)|chicken leg|drumstick +chicken farm|1 +(noun)|farm +chicken feed|3 +(noun)|scratch|mash +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|small change|chickenfeed|chump change|cash|hard cash|hard currency +chicken hawk|1 +(noun)|hen hawk|hawk +chicken kiev|1 +(noun)|chicken Kiev|dish +chicken leg|1 +(noun)|chicken drumstick|drumstick +chicken little|1 +(noun)|Chicken Little|fictional character|fictitious character|character +chicken liver|1 +(noun)|liver +chicken louse|1 +(noun)|shaft louse|Menopon palladum|Menopon gallinae|bird louse|biting louse|louse +chicken manure|1 +(noun)|manure +chicken marengo|1 +(noun)|chicken Marengo|dish +chicken mousse|1 +(noun)|mousse +chicken out|1 +(verb)|back off|pull out|back down|bow out|retire|withdraw +chicken paprika|1 +(noun)|chicken paprikash|dish +chicken paprikash|1 +(noun)|chicken paprika|dish +chicken purloo|1 +(noun)|purloo|poilu|stew +chicken roundworm|1 +(noun)|Ascaridia galli|nematode|nematode worm|roundworm +chicken run|1 +(noun)|chicken yard|hen yard|fowl run|yard +chicken salad|1 +(noun)|salad +chicken sandwich|1 +(noun)|sandwich +chicken scratch|1 +(noun)|scribble|scratch|scrawl|cacography +chicken snake|1 +(noun)|rat snake +chicken soup|1 +(noun)|soup +chicken stew|1 +(noun)|fricassee +chicken stock|1 +(noun)|chicken broth|broth|stock +chicken taco|1 +(noun)|taco +chicken tetrazzini|1 +(noun)|chicken Tetrazzini|dish +chicken wing|1 +(noun)|wing +chicken wire|1 +(noun)|net|network|mesh|meshing|meshwork +chicken yard|1 +(noun)|hen yard|chicken run|fowl run|yard +chickenfeed|1 +(noun)|small change|chump change|cash|hard cash|hard currency +chickenfight|1 +(verb)|chicken-fight|fight|struggle +chickenhearted|1 +(adj)|chicken|lily-livered|white-livered|yellow|yellow-bellied|cowardly |fearful +chickenpox|1 +(noun)|varicella|pox +chickenshit|1 +(noun)|drivel|garbage +chickeree|1 +(noun)|Douglas squirrel|Tamiasciurus douglasi|tree squirrel +chickpea|3 +(noun)|garbanzo|legume +(noun)|chickpea plant|Egyptian pea|Cicer arietinum|legume|leguminous plant +(noun)|garbanzo|legume +chickpea plant|1 +(noun)|chickpea|Egyptian pea|Cicer arietinum|legume|leguminous plant +chickweed|2 +(noun)|herb|herbaceous plant +(noun)|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|herb|herbaceous plant +chickweed phlox|1 +(noun)|sand phlox|Phlox bifida|Phlox stellaria|phlox +chicle|1 +(noun)|chicle gum|gum +chicle gum|1 +(noun)|chicle|gum +chicness|1 +(noun)|chic|modishness|smartness|stylishness|swank|last word|elegance +chico|1 +(noun)|Marx|Leonard Marx|Chico|comedian|comic +chicory|4 +(noun)|chicory root|root +(noun)|succory|chicory plant|Cichorium intybus|herb|herbaceous plant +(noun)|chicory root|coffee substitute +(noun)|curly endive|salad green|salad greens +chicory escarole|1 +(noun)|endive|escarole|salad green|salad greens +chicory plant|1 +(noun)|chicory|succory|Cichorium intybus|herb|herbaceous plant +chicory root|2 +(noun)|chicory|root +(noun)|chicory|coffee substitute +chicot|1 +(noun)|Kentucky coffee tree|bonduc|Gymnocladus dioica|tree +chide|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +chiding|1 +(noun)|scolding|objurgation|tongue-lashing|rebuke|reproof|reproval|reprehension|reprimand +chief|3 +(adj)|main|primary|principal|important |of import +(noun)|head|top dog|leader +(noun)|foreman|gaffer|honcho|boss|supervisor +chief assistant|1 +(noun)|right-hand man|man Friday|assistant|helper|help|supporter +chief constable|1 +(noun)|Chief Constable|captain|police captain|police chief +chief executive|2 +(noun)|President of the United States|United States President|President|Chief Executive|head of state|chief of state +(noun)|President of the United States|President|Chief Executive|presidency|presidentship +chief executive officer|1 +(noun)|CEO|chief operating officer|corporate executive|business executive +chief financial officer|1 +(noun)|CFO|corporate executive|business executive +chief joseph|1 +(noun)|Joseph|Chief Joseph|Indian chief|Indian chieftain|Nez Perce +chief justice|1 +(noun)|judge|justice|jurist|magistrate +chief of staff|1 +(noun)|military officer|officer +chief of state|1 +(noun)|head of state|representative +chief operating officer|1 +(noun)|chief executive officer|CEO|corporate executive|business executive +chief petty officer|1 +(noun)|noncommissioned officer|noncom +chief secretary|1 +(noun)|Chief Secretary|cabinet minister +chiefly|1 +(adv)|principally|primarily|mainly|in the main +chieftain|2 +(noun)|captain|leader +(noun)|headman|tribal chief|leader +chieftaincy|1 +(noun)|chieftainship|position|post|berth|office|spot|billet|place|situation +chieftainship|1 +(noun)|chieftaincy|position|post|berth|office|spot|billet|place|situation +chiffon|2 +(adj)|thin +(noun)|fabric|cloth|material|textile +chiffon cake|1 +(noun)|cake +chiffonier|1 +(noun)|commode|chest of drawers|chest|bureau|dresser +chigetai|1 +(noun)|dziggetai|Equus hemionus hemionus|onager|Equus hemionus +chigger|2 +(noun)|chigoe|chigoe flea|Tunga penetrans|flea +(noun)|harvest mite|jigger|redbug|trombiculiid +chigger flower|2 +(noun)|butterfly weed|orange milkweed|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +(noun)| +chiggerflower|1 +(noun)|butterfly weed|orange milkweed|chigger flower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +chignon|1 +(noun)|hairdo|hair style|coiffure +chigoe|1 +(noun)|chigger|chigoe flea|Tunga penetrans|flea +chigoe flea|1 +(noun)|chigoe|chigger|Tunga penetrans|flea +chihuahua|3 +(noun)|city|metropolis|urban center +(noun)|Chihuahua|state|province +(noun)|Chihuahua|toy dog|toy +chihuahuan spotted whiptail|1 +(noun)|Chihuahuan spotted whiptail|Cnemidophorus exsanguis|whiptail|whiptail lizard +chilblain|1 +(noun)|chilblains|pernio|blain +chilblained|1 +(adj)|unhealthy +chilblains|2 +(noun)|chilblain|pernio|blain +(noun)|chilblain|pernio|blain +child|4 +(noun)|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +(noun)|kid|offspring|progeny|issue +(noun)|baby|person|individual|someone|somebody|mortal|human|soul +(noun)|descendant|descendent +child's body|1 +(noun)|juvenile body +child's game|1 +(noun)|game +child's play|2 +(noun)|cinch|breeze|picnic|snap|duck soup|pushover|walkover|piece of cake|undertaking|project|task|labor +(noun)|play|diversion|recreation +child's room|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +child abuse|1 +(noun)|maltreatment|ill-treatment|ill-usage|abuse +child care|2 +(noun)|childcare|service +(noun)| +child molester|1 +(noun)|pederast|paederast|pervert|deviant|deviate|degenerate +child neglect|1 +(noun)|maltreatment|ill-treatment|ill-usage|abuse +child pornography|1 +(noun)|kiddie porn|kiddy porn|pornography|porno|porn|erotica|smut +child prodigy|1 +(noun)|infant prodigy|wonder child|prodigy|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +child psychology|1 +(noun)|developmental psychology|genetic psychology|psychology|psychological science +child support|1 +(noun)|support payment +child welfare agency|1 +(noun)|child welfare service|administrative unit|administrative body +child welfare service|1 +(noun)|child welfare agency|administrative unit|administrative body +childbearing|2 +(adj)|parturition|birth|giving birth|birthing +(noun)|childbirth|accouchement|vaginal birth|parturition|birth|giving birth|birthing +childbed|1 +(noun)|parturiency|labor|labour|confinement|lying-in|travail|parturition|birth|giving birth|birthing +childbed fever|1 +(noun)|puerperal fever|blood poisoning|septicemia|septicaemia +childbirth|1 +(noun)|childbearing|accouchement|vaginal birth|parturition|birth|giving birth|birthing +childbirth-preparation class|1 +(noun)|course|course of study|course of instruction|class +childcare|1 +(noun)|child care|service +childe hassam|1 +(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter +childhood|2 +(noun)|time of life +(noun)|puerility|immaturity|immatureness +childish|1 +(adj)|infantile|immature +childishness|1 +(noun)|puerility|youngness +childless|1 +(adj)|unfruitful +childlessness|1 +(noun)|situation|state of affairs +childlike|2 +(adj)|childly|young |immature +(adj)|wide-eyed|dewy-eyed|simple|naive |naif +childly|1 +(adj)|childlike|young |immature +chile|2 +(noun)|Chile|Republic of Chile|South American country|South American nation +(noun)|chili|chili pepper|chilli|chilly|hot pepper +chile bonito|1 +(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito +chile hazel|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +chile nut|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +chile pine|1 +(noun)|monkey puzzle|Araucaria araucana|araucaria +chile tarweed|1 +(noun)|melosa|Chile tarweed|madia oil plant|Madia sativa|tarweed +chilean|2 +(adj)|Chilean|South American country|South American nation +(noun)|Chilean|South American +chilean bonito|1 +(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito +chilean cedar|1 +(noun)|Chilean cedar|Austrocedrus chilensis|cedar|cedar tree +chilean firebush|1 +(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub|bush +chilean flameflower|1 +(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub|bush +chilean hazelnut|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +chilean jasmine|1 +(noun)|Chilean jasmine|Mandevilla laxa|liana +chilean monetary unit|1 +(noun)|Chilean monetary unit|monetary unit +chilean nut|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +chilean peso|1 +(noun)|Chilean peso|peso|Chilean monetary unit +chilean rimu|1 +(noun)|Chilean rimu|Lepidothamnus fonkii|shrub|bush +chilean strawberry|1 +(noun)|beach strawberry|Chilean strawberry|Fragaria chiloensis|strawberry +chili|2 +(noun)|chili con carne|dish +(noun)|chili pepper|chilli|chilly|chile|hot pepper +chili con carne|1 +(noun)|chili|dish +chili dog|1 +(noun)|hotdog|hot dog|red hot +chili pepper|2 +(noun)|cayenne|cayenne pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +(noun)|chili|chilli|chilly|chile|hot pepper +chili powder|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +chili sauce|1 +(noun)|condiment +chili vinegar|1 +(noun)|vinegar|acetum +chiliad|1 +(noun)|thousand|one thousand|1000|M|K|G|grand|thou|yard|large integer +chiliasm|1 +(noun)|millenarianism|millenniumism|theological doctrine|religious doctrine +chiliast|1 +(noun)|millenarian|millenarist|optimist +chiliastic|1 +(adj)|millenarian +chill|8 +(adj)|chilly|cool +(noun)|iciness|gelidity|coldness|cold|low temperature +(noun)|frisson|shiver|quiver|shudder|thrill|tingle|fear|fearfulness|fright +(noun)|shivering|symptom +(noun)|pall|apprehension|apprehensiveness|dread +(verb)|depress|deject|cast down|get down|dismay|dispirit|demoralize|demoralise +(verb)|cool|cool down|change|alter|modify +(verb)|cool|cool down|change state|turn +chill out|1 +(verb)|calm|calm down|cool off|simmer down|settle down|cool it|change state|turn +chiller|1 +(noun)|hair-raiser|excitation|excitement +chilli|1 +(noun)|chili|chili pepper|chilly|chile|hot pepper +chilli pepper|1 +(noun)|cayenne|cayenne pepper|chili pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +chilliness|1 +(noun)|coolness|coldness|cold|low temperature +chilling|2 +(adj)|scarey|scary|shivery|shuddery|alarming +(noun)|cooling|temperature reduction|temperature change +chills and fever|1 +(noun)|ague|symptom +chilly|4 +(adj)|chill|cool +(adj)|unemotional +(adj)|unfriendly|cool +(noun)|chili|chili pepper|chilli|chile|hot pepper +chiloe|1 +(noun)|Chiloe|island +chilomastix|1 +(noun)|Chilomastix|genus Chilomastix|protoctist genus +chilomeniscus|1 +(noun)|Chilomeniscus|genus Chilomeniscus|reptile genus +chilomeniscus cinctus|1 +(noun)|banded sand snake|Chilomeniscus cinctus|sand snake +chilomycterus|1 +(noun)|Chilomycterus|genus Chilomycterus|fish genus +chilopoda|1 +(noun)|Chilopoda|class Chilopoda|class +chilopsis|1 +(noun)|Chilopsis|genus Chilopsis|asterid dicot genus +chilopsis linearis|1 +(noun)|desert willow|Chilopsis linearis|shrub|bush +chimaera|3 +(noun)|Chimera|Chimaera|mythical monster|mythical creature +(noun)|chimera|imagination|imaging|imagery|mental imagery +(noun)|holocephalan +chimaera monstrosa|1 +(noun)|rabbitfish|Chimaera monstrosa|chimaera +chimaeridae|1 +(noun)|Chimaeridae|family Chimaeridae|fish family +chimakum|1 +(noun)|Chimakum|Salish +chimaphila|1 +(noun)|Chimaphila|genus Chimaphila|dilleniid dicot genus +chimaphila corymbosa|1 +(noun)|love-in-winter|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa|prince's pine +chimaphila umbellata|1 +(noun)|love-in-winter|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa|prince's pine +chimariko|2 +(noun)|Chimariko|Hokan|Hoka +(noun)|Chimariko|Hokan|Hoka +chimborazo|1 +(noun)|Chimborazo|mountain peak +chime|2 +(noun)|bell|gong|percussion instrument|percussive instrument +(verb)|sound|go|chime in +chime in|1 +(verb)|cut in|put in|butt in|chisel in|barge in|break in|interrupt|disrupt|break up|cut off +chimera|2 +(noun)|Chimera|Chimaera|mythical monster|mythical creature +(noun)|chimaera|imagination|imaging|imagery|mental imagery +chimeral|1 +(adj)|chimeric|chimerical|mythical monster|mythical creature +chimeric|1 +(adj)|chimerical|chimeral|mythical monster|mythical creature +chimerical|2 +(adj)|chimeric|chimeral|mythical monster|mythical creature +(adj)|unrealistic +chimney|2 +(noun)|flue +(noun)|lamp chimney|flue +chimney bellflower|1 +(noun)|chimney plant|Campanula pyramidalis|campanula|bellflower +chimney breast|1 +(noun)|wall +chimney corner|1 +(noun)|inglenook|corner|nook +chimney plant|1 +(noun)|chimney bellflower|Campanula pyramidalis|campanula|bellflower +chimney swallow|2 +(noun)|chimney swift|Chateura pelagica|swift +(noun)|barn swallow|Hirundo rustica|swallow +chimney swift|1 +(noun)|chimney swallow|Chateura pelagica|swift +chimneypiece|1 +(noun)|mantel|mantelpiece|mantle|mantlepiece|shelf +chimneypot|1 +(noun)|pipe|pipage|piping +chimneystack|1 +(noun)|flue +chimneysweep|1 +(noun)|chimneysweeper|sweep|cleaner +chimneysweeper|1 +(noun)|chimneysweep|sweep|cleaner +chimonanthus|1 +(noun)|Chimonanthus|genus Chimonanthus|magnoliid dicot genus +chimonanthus praecox|1 +(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub|bush +chimp|1 +(noun)|chimpanzee|Pan troglodytes|great ape|pongid +chimpanzee|1 +(noun)|chimp|Pan troglodytes|great ape|pongid +chimwini|1 +(noun)|ChiMwini|Bantu|Bantoid language +chin|3 +(noun)|mentum|feature|lineament +(noun)|Kuki|Chin|Kuki-Chin|Kamarupan +(verb)|chin up|raise|lift|elevate|get up|bring up +chin-up|1 +(noun)|pull-up|arm exercise +chin-wag|1 +(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +chin-wagging|1 +(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|causerie|chat|confab|confabulation|schmooze|schmoose +chin music|1 +(noun)|prate|prattle|idle talk|blether|yak|yack|yakety-yak|chatter|cackle +chin rest|1 +(noun)|rest +chin strap|1 +(noun)|strap +chin up|1 +(verb)|chin|raise|lift|elevate|get up|bring up +china|4 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +(noun)|porcelain +(noun)|Taiwan|China|Nationalist China|Republic of China|island +(noun)|chinaware|crockery|dishware +china aster|1 +(noun)|China aster|Callistephus chinensis|flower +china cabinet|1 +(noun)|china closet|cabinet +china clay|1 +(noun)|china stone|kaolin|kaoline|porcelain clay|terra alba|clay +china closet|1 +(noun)|china cabinet|cabinet +china fleece vine|1 +(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine +china grass|1 +(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle|bog hemp +china jute|1 +(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +china pink|1 +(noun)|rainbow pink|Dianthus chinensis|pink|garden pink +china rose|2 +(noun)|China rose|Bengal rose|Rosa chinensis|rose +(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus +china stone|1 +(noun)|china clay|kaolin|kaoline|porcelain clay|terra alba|clay +china tree|2 +(noun)|China tree|false dogwood|jaboncillo|chinaberry|Sapindus saponaria|soapberry|soapberry tree +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +chinaberry|2 +(noun)|China tree|false dogwood|jaboncillo|Sapindus saponaria|soapberry|soapberry tree +(noun)|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +chinaberry tree|1 +(noun)|chinaberry|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +chinaman|2 +(noun)|chink|Chinaman|Chinese +(noun)|Chinaman|bowling +chinaware|1 +(noun)|china|crockery|dishware +chincapin|1 +(noun)|chinkapin|chinquapin|edible nut +chinch|1 +(noun)|bedbug|bed bug|Cimex lectularius|hemipterous insect|bug|hemipteran|hemipteron +chinch bug|1 +(noun)|Blissus leucopterus|lygaeid|lygaeid bug +chincherinchee|1 +(noun)|wonder flower|Ornithogalum thyrsoides|star-of-Bethlehem +chinchilla|3 +(noun)|fur|pelt +(noun)|coating +(noun)|Chinchilla laniger|rodent|gnawer|gnawing animal +chinchilla laniger|1 +(noun)|chinchilla|Chinchilla laniger|rodent|gnawer|gnawing animal +chinchilla rat|1 +(noun)|abrocome|rat chinchilla|rodent|gnawer|gnawing animal +chinchillidae|1 +(noun)|Chinchillidae|family Chinchillidae|mammal family +chinchillon|1 +(noun)|viscacha|Lagostomus maximus|rodent|gnawer|gnawing animal +chinchona|1 +(noun)|cinchona|tree +chinchy|1 +(adj)|cheap|chintzy|stingy |ungenerous +chine|3 +(noun)|cut|cut of meat +(noun)|spinal column|vertebral column|spine|backbone|back|rachis +(verb)|butcher|slaughter +chinese|4 +(adj)|Chinese|island +(adj)|Taiwanese|Chinese|Formosan +(noun)|Chinese|Sinitic|Sinitic language +(noun)|Chinese|Asian|Asiatic +chinese-red|1 +(adj)|vermilion|vermillion|cinnabar|Chinese-red|chromatic +chinese alligator|1 +(noun)|Chinese alligator|Alligator sinensis|alligator|gator +chinese angelica|1 +(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub|bush +chinese angelica tree|1 +(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub|bush +chinese anise|2 +(noun)|star anise|Chinese anise|Illicium verum|anise tree +(noun)|Chinese anise|star anise|star aniseed|spice +chinese black mushroom|1 +(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus +chinese brown sauce|1 +(noun)|Chinese brown sauce|brown sauce|sauce +chinese cabbage|2 +(noun)|Chinese cabbage|celery cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer|cruciferous plant +(noun)|Chinese cabbage|celery cabbage|Chinese celery|cabbage|chou +chinese celery|1 +(noun)|Chinese cabbage|celery cabbage|Chinese celery|cabbage|chou +chinese checkers|1 +(noun)|Chinese checkers|Chinese chequers|board game +chinese chequers|1 +(noun)|Chinese checkers|Chinese chequers|board game +chinese chestnut|1 +(noun)|Chinese chestnut|Castanea mollissima|chestnut|chestnut tree +chinese chive|1 +(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant +chinese cinnamon|1 +(noun)|cassia bark|Chinese cinnamon|bark +chinese cork oak|1 +(noun)|Chinese cork oak|Quercus variabilis|oak|oak tree +chinese date|1 +(noun)|jujube|Chinese date|Chinese jujube|edible fruit|drupe|stone fruit +chinese deity|1 +(noun)|Chinese deity|deity|divinity|god|immortal +chinese elm|2 +(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm|elm tree +(noun)|Chinese elm|Ulmus parvifolia|elm|elm tree +chinese evergreen|1 +(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant +chinese forget-me-not|1 +(noun)|Chinese forget-me-not|Cynoglossum amabile|herb|herbaceous plant +chinese fried rice|1 +(noun)|fried rice|Chinese fried rice|dish +chinese goose|1 +(noun)|Chinese goose|Anser cygnoides|goose +chinese gooseberry|2 +(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine +(noun)|kiwi|kiwi fruit|Chinese gooseberry|edible fruit +chinese hibiscus|1 +(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus +chinese holly|1 +(noun)|Chinese holly|Ilex cornuta|shrub|bush +chinese jujube|1 +(noun)|jujube|Chinese date|Chinese jujube|edible fruit|drupe|stone fruit +chinese lacquer tree|1 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +chinese lantern|1 +(noun)|Chinese lantern|lantern +chinese lantern plant|1 +(noun)|Chinese lantern plant|winter cherry|bladder cherry|Physalis alkekengi|ground cherry|husk tomato +chinese magnolia|1 +(noun)|saucer magnolia|Chinese magnolia|Magnolia soulangiana|magnolia +chinese monetary unit|1 +(noun)|Chinese monetary unit|monetary unit +chinese mushroom|1 +(noun)|straw mushroom|Chinese mushroom|Volvariella volvacea|agaric +chinese mustard|2 +(noun)|indian mustard|leaf mustard|gai choi|Brassica juncea|mustard +(noun)|Chinese mustard|mustard|table mustard +chinese paddlefish|1 +(noun)|Chinese paddlefish|Psephurus gladis|ganoid|ganoid fish +chinese parasol|1 +(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree +chinese parasol tree|1 +(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree +chinese parsley|2 +(noun)|coriander|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb|herbaceous plant +(noun)|coriander|Chinese parsley|cilantro|herb +chinese pea tree|1 +(noun)|Chinese pea tree|Caragana sinica|pea tree|caragana +chinese primrose|1 +(noun)|Chinese primrose|Primula sinensis|primrose|primula +chinese privet|1 +(noun)|Chinese privet|white wax tree|Ligustrum lucidum|privet +chinese puzzle|1 +(noun)|Chinese puzzle|puzzle +chinese restaurant syndrome|1 +(noun)|Chinese restaurant syndrome|syndrome +chinese revolution|1 +(noun)|Chinese Revolution|revolution +chinese rhubarb|1 +(noun)|Chinese rhubarb|Rheum palmatum|rhubarb|rhubarb plant +chinese scholar tree|1 +(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree +chinese scholartree|1 +(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree +chinese shan|1 +(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai +chinese silk plant|1 +(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle|bog hemp +chinese wall|1 +(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart|bulwark|wall +chinese water chestnut|1 +(noun)|water chestnut|Chinese water chestnut|Eleocharis dulcis|spike rush +chinese white cabbage|1 +(noun)|bok choy|bok choi|pakchoi|Chinese white cabbage|Brassica rapa chinensis|crucifer|cruciferous plant +chinese wistaria|1 +(noun)|Chinese wistaria|Wisteria chinensis|wisteria|wistaria +chinese wood oil|1 +(noun)|tung oil|Chinese wood oil|oil +chinese yam|1 +(noun)|cinnamon vine|Chinese yam|Dioscorea batata|yam|yam plant +chingpo|1 +(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin|Kachinic +chink|6 +(noun)|Chinaman|Chinese +(noun)|crack|cleft|crevice|fissure|scissure +(noun)|click|clink|sound +(verb)|tinkle|tink|clink|sound|go +(verb)|plug|stop up|secure +(verb)|check|crack +chinkapin|1 +(noun)|chincapin|chinquapin|edible nut +chinkapin oak|1 +(noun)|chinquapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak +chinked|1 +(adj)|stopped-up|caulked +chinless|1 +(adj)|opisthognathous +chinning bar|1 +(noun)|bar +chino|1 +(noun)|chino cloth|fabric|cloth|material|textile +chino-japanese war|1 +(noun)|Chino-Japanese War|Sino-Japanese War|war|warfare +chino cloth|1 +(noun)|chino|fabric|cloth|material|textile +chinoiserie|1 +(noun)|genre +chinook|5 +(noun)|chinook wind|snow eater|wind|air current|current of air +(noun)|Chinook|Penutian +(noun)|chinook salmon|king salmon|salmon +(noun)|Chinookan|Chinook|Penutian +(noun)|chinook salmon|king salmon|quinnat salmon|Onchorynchus tshawtscha|salmon +chinook jargon|1 +(noun)|Chinook Jargon|Oregon Jargon|pidgin +chinook salmon|2 +(noun)|chinook|king salmon|salmon +(noun)|chinook|king salmon|quinnat salmon|Onchorynchus tshawtscha|salmon +chinook wind|1 +(noun)|chinook|snow eater|wind|air current|current of air +chinookan|1 +(noun)|Chinookan|Chinook|Penutian +chinos|2 +(noun)|trousers|pants +(noun)|chino|chino cloth|fabric|cloth|material|textile +chinquapin|3 +(noun)|Ozark chinkapin|Ozark chinquapin|Castanea ozarkensis|chestnut|chestnut tree +(noun)|Allegheny chinkapin|eastern chinquapin|dwarf chestnut|Castanea pumila|chestnut|chestnut tree +(noun)|chincapin|chinkapin|edible nut +chinquapin oak|1 +(noun)|chinkapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak +chintz|1 +(noun)|fabric|cloth|material|textile +chintzily|1 +(adv)|stingily|cheaply +chintzy|2 +(adj)|bum|cheap|cheesy|crummy|punk|sleazy|tinny|inferior +(adj)|cheap|chinchy|stingy |ungenerous +chiococca|1 +(noun)|Chiococca|genus Chiococca|asterid dicot genus +chiococca alba|1 +(noun)|blolly|West Indian snowberry|Chiococca alba|shrub|bush +chionanthus|1 +(noun)|Chionanthus|genus Chionanthus|dicot genus|magnoliopsid genus +chionanthus virginicus|1 +(noun)|fringe bush|Chionanthus virginicus|fringe tree +chionochloa conspicua|1 +(noun)|toetoe|toitoi|Arundo conspicua|Chionochloa conspicua|reed +chios|1 +(noun)|Chios|Khios|Aegean island +chip|14 +(noun)|bit|flake|fleck|scrap|fragment +(noun)|float +(noun)|cow chip|cow dung|buffalo chip|droppings|dung|muck +(noun)|crisp|potato chip|Saratoga chip|snack food +(noun)|check|blemish|defect|mar +(noun)|poker chip|counter +(noun)|microchip|micro chip|silicon chip|semiconductor device|semiconductor unit|semiconductor +(noun)|chip shot|approach|approach shot +(noun)|chipping|splintering|breakage|break|breaking +(verb)|chip off|come off|break away|break off|separate|divide|part +(verb)|nick|cut +(verb)|shoot +(verb)|shape|form|work|mold|mould|forge +(verb)|knap|cut off|break off|cut|chip at +chip at|1 +(verb)|carve|cut|chip +chip away|1 +(verb)|chip away at|remove|take|take away|withdraw +chip away at|1 +(verb)|chip away|remove|take|take away|withdraw +chip in|1 +(verb)|contribute|give|kick in|give +chip off|1 +(verb)|chip|come off|break away|break off|separate|divide|part +chip shot|1 +(noun)|chip|approach|approach shot +chipboard|1 +(noun)|hardboard|board|plank +chipewyan|2 +(noun)|Chipewyan|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +chipmunk|1 +(noun)|squirrel +chipolata|1 +(noun)|sausage +chipotle|1 +(noun)|jalapeno|jalapeno pepper +chipped|1 +(adj)|broken +chippendale|2 +(adj)|Chippendale|cabinetmaker|furniture maker +(noun)|Chippendale|Thomas Chippendale|cabinetmaker|furniture maker +chipper|1 +(adj)|debonair|debonaire|jaunty|cheerful +chippewa|2 +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Algonquian language +chippewaian|1 +(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +chippewyan|1 +(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +chipping|1 +(noun)|chip|splintering|breakage|break|breaking +chipping sparrow|1 +(noun)|Spizella passerina|New World sparrow +chiralgia|1 +(noun)|pain|hurting +chiricahua apache|1 +(noun)|Chiricahua Apache|Apache +chirico|1 +(noun)|Chirico|Giorgio de Chirico|painter +chirk|1 +(verb)|voice|sound|vocalize|vocalise +chirk up|1 +(verb)|cheer|cheer up|rejoice|joy +chirocephalus|1 +(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus +chirology|1 +(noun)|palmistry|palm reading|chiromancy|divination|foretelling|soothsaying|fortune telling +chiromance|1 +(verb)|divine +chiromancer|1 +(noun)|palmist|palmister|fortuneteller|fortune teller +chiromancy|1 +(noun)|palmistry|palm reading|chirology|divination|foretelling|soothsaying|fortune telling +chiromantic|1 +(adj)|divination|foretelling|soothsaying|fortune telling +chironomidae|1 +(noun)|Chironomidae|family Chironomidae|arthropod family +chironomus|1 +(noun)|Chironomus|genus Chironomus|arthropod genus +chiropodist|1 +(noun)|foot doctor|podiatrist|specialist|medical specialist +chiropody|1 +(noun)|podiatry|medicine|medical specialty +chiropractic|1 +(noun)|treatment +chiropractor|1 +(noun)|therapist|healer +chiroptera|1 +(noun)|Chiroptera|order Chiroptera|animal order +chiropteran|1 +(noun)|bat|placental|placental mammal|eutherian|eutherian mammal +chirp|3 +(noun)|sound +(verb)|peep|twirp|cheep|chirrup|utter|emit|let out|let loose +(verb)|tweedle|sing +chirpily|1 +(adv)|buoyantly +chirpiness|1 +(noun)|animation|spiritedness|invigoration|brio|vivification +chirpy|1 +(adj)|buoyant|perky|cheerful +chirr|1 +(verb)|utter|emit|let out|let loose +chirrup|2 +(noun)|twitter|sound +(verb)|peep|twirp|cheep|chirp|utter|emit|let out|let loose +chisel|4 +(noun)|edge tool +(verb)|cheat|deceive|lead on|delude|cozen +(verb)|cheat|rip off|victimize|victimise +(verb)|carve|cut up +chisel in|1 +(verb)|chime in|cut in|put in|butt in|barge in|break in|interrupt|disrupt|break up|cut off +chisel steel|1 +(noun)|steel +chiseled|1 +(adj)|well-defined|distinct +chiseler|1 +(noun)|swindler|chiseller|gouger|scammer|grifter|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +chiseller|1 +(noun)|swindler|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +chisholm trail|1 +(noun)|Chisholm Trail|cattle trail +chishona|1 +(noun)|Chishona|Bantu|Bantoid language +chisinau|1 +(noun)|Kishinev|Chisinau|capital of Moldova|capital +chislev|1 +(noun)|Kislev|Chislev|Jewish calendar month +chit|1 +(noun)|check|tab|bill|account|invoice +chitchat|2 +(noun)|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +chitin|1 +(noun)|polysaccharide|polyose +chitinous|1 +(adj)|polysaccharide|polyose +chitlings|1 +(noun)|chitterlings|chitlins|variety meat|organs +chitlins|1 +(noun)|chitterlings|chitlings|variety meat|organs +chiton|2 +(noun)|tunic +(noun)|coat-of-mail shell|sea cradle|polyplacophore|mollusk|mollusc|shellfish +chittagong|1 +(noun)|Chittagong|city|metropolis|urban center|port +chittam bark|1 +(noun)|cascara|cascara sagrada|chittem bark|bark +chittamwood|3 +(noun)|cascara buckthorn|bearberry|bearwood|chittimwood|Rhamnus purshianus|buckthorn +(noun)|false buckthorn|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn +(noun)|American smokewood|Cotinus americanus|Cotinus obovatus|smoke tree|smoke bush +chittem bark|1 +(noun)|cascara|cascara sagrada|chittam bark|bark +chitter|1 +(verb)|twitter|peep|twirp|cheep|chirp|chirrup +chitterlings|1 +(noun)|chitlins|chitlings|variety meat|organs +chittimwood|2 +(noun)|cascara buckthorn|bearberry|bearwood|chittamwood|Rhamnus purshianus|buckthorn +(noun)|false buckthorn|chittamwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn +chivalric|1 +(adj)|knightly|medieval|past +chivalrous|1 +(adj)|gallant|knightly|courteous +chivalrously|1 +(adv)|gallantly +chivalry|2 +(noun)|gallantry|politesse|courtesy|good manners +(noun)|principle +chivaree|1 +(noun)|shivaree|charivari|callithump|callathump|belling|serenade +chive|1 +(noun)|chives|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant +chives|3 +(noun)|chive|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant +(noun)|herb +(noun)|chive|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant +chivvy|1 +(verb)|harass|hassle|harry|chivy|chevy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +chivy|1 +(verb)|harass|hassle|harry|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +chiwere|1 +(noun)|Chiwere|Siouan|Siouan language +chlamydeous|1 +(adj)|chlamydeous +chlamydera|1 +(noun)|Chlamydera|genus Chlamydera|bird genus +chlamydera nuchalis|1 +(noun)|great bowerbird|Chlamydera nuchalis|bowerbird|catbird +chlamydia|2 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +(noun)|eubacteria|eubacterium|true bacteria +chlamydia psittaci|1 +(noun)|Chlamydia psittaci|C. psittaci|chlamydia +chlamydia trachomatis|1 +(noun)|Chlamydia trachomatis|C. trachomatis|chlamydia +chlamydiaceae|1 +(noun)|Chlamydiaceae|family Chlamydiaceae|bacteria family +chlamydial|1 +(adj)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|eubacteria|eubacterium|true bacteria +chlamydomonadaceae|1 +(noun)|Chlamydomonadaceae|family Chlamydomonadaceae|protoctist family +chlamydomonas|1 +(noun)|Chlamydomonas|genus Chlamydomonas|protoctist genus +chlamydosaurus|1 +(noun)|Chlamydosaurus|genus Chlamydosaurus|reptile genus +chlamydosaurus kingi|1 +(noun)|frilled lizard|Chlamydosaurus kingi|agamid|agamid lizard +chlamydospore|1 +(noun)|spore +chlamyphore|1 +(noun)|pichiciago|pichiciego|fairy armadillo|Chlamyphorus truncatus|armadillo +chlamyphorus|1 +(noun)|Chlamyphorus|genus Chlamyphorus|mammal genus +chlamyphorus truncatus|1 +(noun)|pichiciago|pichiciego|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo +chlamys|2 +(noun)|perianth|floral envelope|perigone|perigonium|plant organ|covering|natural covering|cover +(noun)|cape|mantle +chloasma|1 +(noun)|melasma|mask of pregnancy|symptom +chloe anthony wofford|1 +(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer|author +chlor-trimeton|1 +(noun)|chlorpheniramine maleate|Coricidin|Chlor-Trimeton|antihistamine +chloral hydrate|1 +(noun)|sedative|sedative drug|depressant|downer +chlorambucil|1 +(noun)|Leukeran|alkalating agent +chloramine|1 +(noun)|chloramine-T|antiseptic +chloramine-t|1 +(noun)|chloramine|chloramine-T|antiseptic +chloramphenicol|1 +(noun)|Chloromycetin|antibiotic|antibiotic drug +chloranthaceae|1 +(noun)|Chloranthaceae|family Chloranthaceae|dicot family|magnoliopsid family +chloranthus|1 +(noun)|Chloranthus|genus Chloranthus|dicot genus|magnoliopsid genus +chlorate|1 +(noun)|salt +chlordiazepoxide|1 +(noun)|Librium|Libritabs|benzodiazepine +chlorella|1 +(noun)|alga|algae +chlorenchyma|1 +(noun)|parenchyma +chlorhexidine|1 +(noun)|antiseptic +chloric acid|1 +(noun)|acid +chloride|2 +(noun)|compound|chemical compound +(noun)|halide +chloride of lime|1 +(noun)|bleaching powder|chlorinated lime|bleaching agent|bleach|blanching agent|whitener +chlorinate|2 +(verb)|process|treat +(verb)|disinfect +chlorinated lime|1 +(noun)|bleaching powder|chloride of lime|bleaching agent|bleach|blanching agent|whitener +chlorination|2 +(noun)|chemical process|chemical change|chemical action +(noun)|disinfection +chlorine|1 +(noun)|Cl|atomic number 17|chemical element|element|gas|halogen +chlorine dioxide|1 +(noun)|dioxide|bleaching agent|bleach|blanching agent|whitener +chlorine water|1 +(noun)|solution|bleaching agent|bleach|blanching agent|whitener +chlorinity|1 +(noun)|definite quantity +chloris|1 +(noun)|Chloris|genus Chloris|monocot genus|liliopsid genus +chloris gayana|1 +(noun)|Rhodes grass|Chloris gayana|finger grass +chloris truncata|1 +(noun)|windmill grass|creeping windmill grass|star grass|Chloris truncata|finger grass +chlorite|1 +(noun)|mineral +chloroacetophenone|1 +(noun)|CN gas|tear gas|teargas|lacrimator|lachrymator +chlorobenzene|1 +(noun)|hydrocarbon|solvent|dissolvent|dissolver|dissolving agent|resolvent +chlorobenzylidenemalononitrile|1 +(noun)|CS gas|tear gas|teargas|lacrimator|lachrymator +chlorococcales|1 +(noun)|Chlorococcales|order Chlorococcales|protoctist order +chlorococcum|1 +(noun)|Chlorococcum|genus Chlorococcum|protoctist genus +chlorofluorocarbon|1 +(noun)|CFC|fluorocarbon|pollutant|greenhouse gas|greenhouse emission +chloroform|2 +(noun)|trichloromethane|haloform|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +chloromycetin|1 +(noun)|chloramphenicol|Chloromycetin|antibiotic|antibiotic drug +chlorophis|1 +(noun)|Chlorophis|genus Chlorophis|reptile genus +chlorophoneus|1 +(noun)|Chlorophoneus|genus Chlorophoneus|bird genus +chlorophoneus nigrifrons|1 +(noun)|black-fronted bush shrike|Chlorophoneus nigrifrons|bush shrike +chlorophthalmidae|1 +(noun)|Chlorophthalmidae|family Chlorophthalmidae|fish family +chlorophyceae|1 +(noun)|Chlorophyceae|class Chlorophyceae|class +chlorophyl|1 +(noun)|chlorophyll|pigment +chlorophyll|1 +(noun)|chlorophyl|pigment +chlorophyll a|1 +(noun)|chlorophyll|chlorophyl +chlorophyll b|1 +(noun)|chlorophyll|chlorophyl +chlorophyllose|1 +(adj)|chlorophyllous|pigment +chlorophyllous|1 +(adj)|chlorophyllose|pigment +chlorophyllum molybdites|1 +(noun)|Chlorophyllum molybdites|agaric +chlorophyta|1 +(noun)|Chlorophyta|division Chlorophyta|division +chlorophyte|1 +(noun)|green algae|alga|algae +chloropicrin|1 +(noun)|nitrochloroform|compound|chemical compound +chloroplast|1 +(noun)|plastid +chloroprene|1 +(noun)|butadiene +chloroquine|1 +(noun)|antimalarial|antimalarial drug +chlorosis|1 +(noun)|greensickness|iron deficiency anemia|iron deficiency anaemia +chlorothiazide|1 +(noun)|Diuril|thiazide|antihypertensive|antihypertensive drug +chlorotic|1 +(adj)|iron deficiency anemia|iron deficiency anaemia +chlorous acid|1 +(noun)|acid +chloroxylon|1 +(noun)|Chloroxylon|genus Chloroxylon|rosid dicot genus +chloroxylon swietenia|1 +(noun)|satinwood|satinwood tree|Chloroxylon swietenia|tree +chlorpheniramine maleate|1 +(noun)|Coricidin|Chlor-Trimeton|antihistamine +chlorpromazine|1 +(noun)|Thorazine|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|phenothiazine|thiodiphenylamine +chlorpyrifos|1 +(noun)|organophosphate +chlortetracycline|1 +(noun)|Aureomycin|antibiotic|antibiotic drug +chlorthalidone|1 +(noun)|Hygroton|Thalidone|diuretic drug|diuretic|water pill +chlorura|1 +(noun)|Chlorura|genus Chlorura|bird genus +chlorura chlorura|1 +(noun)|green-tailed towhee|Chlorura chlorura|towhee +choanocyte|1 +(noun)|collar cell|flagellated cell +choc|1 +(noun)|chocolate candy +choc-ice|1 +(noun)|chocolate ice cream +chock|4 +(noun)|wedge|block +(verb)|fasten|fix|secure +(verb)|hold|support|sustain|hold up +(adv)|chock-a-block +chock-a-block|1 +(adv)|chock +chock-full|1 +(adj)|chockablock|chockful|choke-full|chuck-full|cram full|full +chock up|1 +(verb)|jam|jampack|ram|cram|wad|stuff +chockablock|1 +(adj)|chock-full|chockful|choke-full|chuck-full|cram full|full +chockful|1 +(adj)|chockablock|chock-full|choke-full|chuck-full|cram full|full +chocolate|3 +(noun)|cocoa|hot chocolate|drinking chocolate|beverage|drink|drinkable|potable +(noun)|food +(noun)|coffee|deep brown|umber|burnt umber|brown|brownness +chocolate bar|1 +(noun)|chocolate candy +chocolate cake|1 +(noun)|cake +chocolate candy|1 +(noun)|chocolate +chocolate chip cookie|1 +(noun)|Toll House cookie|cookie|cooky|biscuit +chocolate eclair|1 +(noun)|eclair +chocolate egg|1 +(noun)|Easter egg +chocolate fondue|1 +(noun)|fondue|fondu +chocolate fudge|1 +(noun)|fudge +chocolate ice cream|1 +(noun)|ice cream +chocolate kiss|1 +(noun)|kiss|chocolate candy +chocolate liquor|1 +(noun)|chocolate +chocolate milk|1 +(noun)|milk +chocolate mousse|1 +(noun)|mousse +chocolate pudding|1 +(noun)|pudding +chocolate root|1 +(noun)|water avens|Indian chocolate|purple avens|Geum rivale|avens +chocolate sauce|1 +(noun)|chocolate syrup|sauce +chocolate syrup|1 +(noun)|chocolate sauce|sauce +chocolate tree|1 +(noun)|cacao|cacao tree|Theobroma cacao|angiospermous tree|flowering tree +chocolate truffle|1 +(noun)|truffle|candy +choctaw|2 +(noun)|Choctaw|Muskhogean|Muskogean +(noun)|Choctaw|Chahta|Muskhogean|Muskhogean language|Muskogean|Muskogean language +choeronycteris|1 +(noun)|Choeronycteris|genus Choeronycteris|mammal genus +choeronycteris mexicana|1 +(noun)|hognose bat|Choeronycteris mexicana|leafnose bat|leaf-nosed bat +choice|5 +(adj)|prime|prize|quality|select|superior +(adj)|tasteful +(noun)|pick|selection|decision making|deciding +(noun)|selection|option|pick|action +(noun)|option|alternative|decision making|deciding +choice morsel|1 +(noun)|tidbit|titbit|dainty|delicacy|goody|kickshaw|treat +choice of words|1 +(noun)|wording|diction|phrasing|phraseology|verbiage|formulation|expression +choiceness|1 +(noun)|fineness|superiority|high quality +choir|4 +(noun)|chorus +(noun)|consort|set +(noun)|area +(verb)|chorus|sing +choir loft|1 +(noun)|gallery +choir school|1 +(noun)|schola cantorum|preparatory school|prep school +choirboy|1 +(noun)|chorister +choirmaster|1 +(noun)|precentor|cantor|musician +choke|16 +(noun)|choke coil|choking coil|coil +(noun)|valve +(verb)|breathe|take a breath|respire|suspire +(verb)|gag|fret|compress|constrict|squeeze|compact|contract|press +(verb)|scrag|compress|constrict|squeeze|compact|contract|press +(verb)|strangle|compress|constrict|squeeze|compact|contract|press +(verb)|gag|strangle|suffocate|suffer|hurt +(verb)|fail|neglect +(verb)|bottle up|suppress +(verb)|clog|choke off|clog up|back up|congest|foul|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|suffocate|stifle|asphyxiate|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|suffocate|become|turn +(verb)|suffocate|stifle|dampen +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +(verb)|throttle|enrich +(verb)|gag|sicken +choke-full|1 +(adj)|chockablock|chock-full|chockful|chuck-full|cram full|full +choke back|1 +(verb)|choke off|choke down|suppress|stamp down|inhibit|subdue|conquer|curb +choke coil|1 +(noun)|choke|choking coil|coil +choke down|1 +(verb)|choke off|choke back|suppress|stamp down|inhibit|subdue|conquer|curb +choke hold|2 +(noun)|chokehold|clasp|clench|clutch|clutches|grasp|grip|hold +(noun)|stranglehold|chokehold|throttlehold|power|powerfulness +choke off|2 +(verb)|choke down|choke back|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|clog|clog up|back up|congest|choke|foul|obstruct|obturate|impede|occlude|jam|block|close up +choke up|1 +(verb)|stuff|lug|block|clog|choke off|clog up|back up|congest|choke|foul +chokecherry|2 +(noun)|fruit +(noun)|chokecherry tree|Prunus virginiana|cherry|cherry tree +chokecherry tree|1 +(noun)|chokecherry|Prunus virginiana|cherry|cherry tree +choked|1 +(adj)|clogged|obstructed +chokedamp|1 +(noun)|blackdamp|carbon dioxide|CO2|carbonic acid gas +chokehold|2 +(noun)|stranglehold|throttlehold|power|powerfulness +(noun)|choke hold|clasp|clench|clutch|clutches|grasp|grip|hold +chokepoint|2 +(noun)|constriction|bottleneck|narrowing +(noun)|point +choker|4 +(noun)|garroter|garrotter|strangler|throttler|killer|slayer +(noun)|unfortunate|unfortunate person +(noun)|collar|dog collar|neckband|necklace +(noun)|ruff|ruffle|neck ruff|collar|neckband +chokey|1 +(noun)|choky|prison|prison house +choking|2 +(noun)|disorder|upset +(noun)|strangling|strangulation|throttling|suffocation|asphyxiation +choking coil|1 +(noun)|choke|choke coil|coil +choky|2 +(adj)|tight +(noun)|chokey|prison|prison house +cholangiography|1 +(noun)|roentgenography|X-ray photography +cholangitis|1 +(noun)|inflammation|redness|rubor +cholecarciferol|1 +(noun)|vitamin D|calciferol|viosterol|ergocalciferol|D|fat-soluble vitamin +cholecystectomy|1 +(noun)|ablation|extirpation|cutting out|excision +cholecystitis|1 +(noun)|inflammation|redness|rubor +cholelithiasis|1 +(noun)|lithiasis +cholelithotomy|1 +(noun)|lithotomy +choler|3 +(noun)|irritability|crossness|fretfulness|fussiness|peevishness|petulance|ill humor|ill humour|distemper +(noun)|anger|ire|emotion +(noun)|yellow bile|liquid body substance|bodily fluid|body fluid|humor|humour +cholera|1 +(noun)|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease +cholera infantum|1 +(noun)|gastroenteritis|stomach flu|intestinal flu +cholera morbus|1 +(noun)|collywobbles|gastroenteritis|stomach flu|intestinal flu +choleraic|1 +(adj)|infectious disease +choleric|3 +(adj)|passionate +(adj)|irascible|hotheaded|hot-tempered|quick-tempered|short|short-tempered|ill-natured +(adj)|irascible|angry +cholestasis|1 +(noun)|acholia|disorder|upset +cholesterin|1 +(noun)|cholesterol|sterol|steroid alcohol +cholesterol|1 +(noun)|cholesterin|sterol|steroid alcohol +cholesterosis cutis|1 +(noun)|xanthomatosis|xanthoma multiplex|lipid granulomatosis|lipoid granulomatosis|xanthoma +cholic acid|1 +(noun)|bile acid +choline|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +cholinergic|1 +(adj)|cholinergic +cholinesterase|1 +(noun)|enzyme +cholla|1 +(noun)|Opuntia cholla|cactus +choloepus|1 +(noun)|Choloepus|genus Choloepus|mammal genus +choloepus didactylus|1 +(noun)|two-toed sloth|unau|Choloepus didactylus|sloth|tree sloth +choloepus hoffmanni|1 +(noun)|two-toed sloth|unau|Choloepus hoffmanni|sloth|tree sloth +chomp|2 +(noun)|bite|eating|feeding +(verb)|champ|chew|masticate|manducate|jaw +chomping|1 +(noun)|chew|chewing|mastication|manduction +chomsky|1 +(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist|linguistic scientist +chon|2 +(noun)|South Korean monetary unit +(noun)|North Korean monetary unit +chondrichthian|1 +(noun)|cartilaginous fish|fish +chondrichthyes|1 +(noun)|Chondrichthyes|class Chondrichthyes|class +chondrify|1 +(verb)|change state|turn +chondrin|1 +(noun)|scleroprotein|albuminoid +chondriosome|1 +(noun)|mitochondrion|organelle|cell organ +chondrite|1 +(noun)|rock|stone +chondritic|1 +(adj)|chondritic |granular +chondrodystrophy|1 +(noun)|achondroplasia|achondroplasty|osteosclerosis congenita|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +chondroma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +chondrosarcoma|1 +(noun)|sarcoma +chondrule|1 +(noun)|granule +chondrus|1 +(noun)|Chondrus|genus Chondrus|protoctist genus +chondrus crispus|1 +(noun)|Irish moss|carrageen|carageen|carragheen|Chondrus crispus|red algae +chongqing|1 +(noun)|Chongqing|Chungking|city|metropolis|urban center +choo-choo|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +choose|3 +(verb)|take|select|pick out|decide|make up one's mind|determine +(verb)|prefer|opt +(verb)|judge +choose up|1 +(verb)|form|organize|organise +chooser|1 +(noun)|picker|selector|person|individual|someone|somebody|mortal|human|soul +choosey|1 +(adj)|choosy|fastidious +choosy|1 +(adj)|choosey|fastidious +chop|8 +(noun)|cut|cut of meat +(noun)|chop shot|return +(noun)|chopper|grounder|ground ball|groundball|hopper +(verb)|chop up|cut +(verb)|move +(verb)|strike +(verb)|hack|cut|chop down|chop up|chop off +(verb)|strike|hit +chop-chop|1 +(adv)|quickly|rapidly|speedily|apace +chop-suey greens|2 +(noun)|tong ho|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum +(noun)|greens|green|leafy vegetable +chop down|1 +(verb)|fell|drop|strike down|cut down +chop off|1 +(verb)|cut off|lop off|detach|come off|come away +chop shop|1 +(noun)|workshop|shop +chop shot|1 +(noun)|chop|return +chop steak|2 +(noun)|chopped steak|chopsteak|hamburger steak|beef patty|beefsteak +(noun)| +chop suey|1 +(noun)|dish +chop up|1 +(verb)|chop|cut +chopfallen|1 +(adj)|chapfallen|crestfallen|deflated|dejected +chophouse|1 +(noun)|steakhouse|restaurant|eating house|eating place +chopin|3 +(noun)|Chopin|music +(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer|author +(noun)|Chopin|Frederic Francois Chopin|composer|pianist|piano player +chopine|1 +(noun)|chopines|platform|platforms|shoe +chopines|2 +(noun)|chopine|platform|platforms|shoe +(noun)|chopine|platform|platforms|shoe +chopped|1 +(adj)|shredded|sliced|cut +chopped steak|1 +(noun)|chop steak|chopsteak|hamburger steak|beef patty|beefsteak +chopper|4 +(noun)|chop|grounder|ground ball|groundball|hopper +(noun)|pearly|tooth +(noun)|helicopter|whirlybird|eggbeater|heavier-than-air craft +(noun)|cleaver|meat cleaver|knife +choppiness|1 +(noun)|roughness|rough water|storminess +chopping block|1 +(noun)|block +chopping board|1 +(noun)|cutting board|board +choppy|1 +(adj)|stormy +chopsteak|1 +(noun)|chopped steak|chop steak|hamburger steak|beef patty|beefsteak +chopstick|1 +(noun)|chopsticks|tableware +chopsticks|2 +(noun)|chopstick|tableware +(noun)|chopstick|tableware +choragic|1 +(adj)|leader +choragus|1 +(noun)|leader +choral|2 +(adj)|musical organization|musical organisation|musical group +(noun)|chorale|hymn|anthem +choral ode|1 +(noun)|ode +chorale|1 +(noun)|choral|hymn|anthem +chorale prelude|1 +(noun)|prelude +chord|4 +(noun)|straight line +(noun)|note|musical note|tone +(verb)|play +(verb)|harmonize|harmonise|change|alter|modify +chordal|1 +(adj)|note|musical note|tone +chordamesoderm|1 +(noun)|chordomesoderm|mesoderm|mesoblast +chordata|1 +(noun)|Chordata|phylum Chordata|phylum +chordate|2 +(adj)|phylum +(noun)|animal|animate being|beast|brute|creature|fauna +chordate family|1 +(noun)|family +chordate genus|1 +(noun)|genus +chordeiles|1 +(noun)|Chordeiles|genus Chordeiles|bird genus +chorditis|2 +(noun)|inflammation|redness|rubor +(noun)|inflammation|redness|rubor +chordomesoderm|1 +(noun)|chordamesoderm|mesoderm|mesoblast +chordophone|1 +(noun)|stringed instrument +chordospartium|1 +(noun)|Chordospartium|genus Chordospartium|rosid dicot genus +chore|1 +(noun)|job|task|duty +chorea|2 +(noun)|canine chorea|animal disease +(noun)|nervous disorder|neurological disorder|neurological disease|degenerative disorder +choreic abasia|1 +(noun)|abasia +choreograph|2 +(verb)|make|create +(verb)|mastermind|engineer|direct|organize|organise|orchestrate +choreographer|1 +(noun)|creator +choreographic|1 +(adj)|dance +choreography|3 +(noun)|stage dancing|dancing|dance|terpsichore|saltation|show +(noun)|dance +(noun)|notation|notational system +choric|1 +(adj)|company|troupe +chorine|1 +(noun)|chorus girl|showgirl|dancer|professional dancer +chorioallantoic membrane|1 +(noun)|chorioallantois|membrane|tissue layer +chorioallantois|1 +(noun)|chorioallantoic membrane|membrane|tissue layer +choriomeningitis|1 +(noun)|meningitis +chorion|1 +(noun)|sac +chorionic|1 +(adj)|sac +chorionic villus|1 +(noun)|villus +chorionic villus biopsy|1 +(noun)|chorionic villus sampling|biopsy +chorionic villus sampling|1 +(noun)|chorionic villus biopsy|biopsy +chorioretinitis|1 +(noun)|retinitis +choriotis|1 +(noun)|Choriotis|genus Choriotis|bird genus +choriotis australis|1 +(noun)|plain turkey|Choriotis australis|bustard +chorister|1 +(noun)|singer|vocalist|vocalizer|vocaliser +chorizagrotis|1 +(noun)|Chorizagrotis|genus Chorizagrotis|arthropod genus +chorizagrotis auxiliaris|2 +(noun)|army cutworm|Chorizagrotis auxiliaris|cutworm +(noun)|army cutworm|Chorizagrotis auxiliaris|noctuid moth|noctuid|owlet moth +chorizema|1 +(noun)|Chorizema|genus Chorizema|rosid dicot genus +choroid|1 +(noun)|choroid coat|membrane|tissue layer +choroid coat|1 +(noun)|choroid|membrane|tissue layer +choroid plexus|1 +(noun)|plexus choroideus|plexus|rete +choroid vein|1 +(noun)|vena choroidea|vein|vena|venous blood vessel +choroidal artery|1 +(noun)|arteria choroidea|artery|arteria|arterial blood vessel +chortle|2 +(noun)|chuckle|laugh|laughter +(verb)|chuckle|laugh softly|laugh|express joy|express mirth +chorus|7 +(noun)|sound +(noun)|musical organization|musical organisation|musical group +(noun)|refrain|music +(noun)|chorus line|line +(noun)|Greek chorus|company|troupe +(verb)|utter|emit|let out|let loose +(verb)|choir|sing +chorus frog|1 +(noun)|tree toad|tree frog|tree-frog +chorus girl|1 +(noun)|showgirl|chorine|dancer|professional dancer +chorus line|1 +(noun)|chorus|line +chosen|4 +(adj)|selected +(noun)|darling|favorite|favourite|pet|dearie|deary|ducky +(noun)|Chosen|Korea|Korean Peninsula|Choson +(noun)|elect|elite|elite group +chosen people|1 +(noun)|people +choson|1 +(noun)|Korea|Korean Peninsula|Choson|peninsula +chou|3 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +(noun)|cabbage|cruciferous vegetable +(noun)|cream puff|puff +chou dynasty|1 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +chou en-lai|1 +(noun)|Zhou En-lai|Chou En-lai|revolutionist|revolutionary|subversive|subverter|communist|commie +chough|1 +(noun)|corvine bird +chouse|1 +(verb)|cheat|shaft|screw|chicane|jockey|beat|beat out|crush|shell|trounce|vanquish +chow|3 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +(noun)|chuck|eats|grub|fare +(noun)|chow chow|spitz +chow chow|3 +(noun)|chow|spitz +(noun)|chowchow|relish +(noun)|chowchow|conserve|preserve|conserves|preserves +chow dynasty|1 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +chow line|1 +(noun)|queue|waiting line +chow mein|1 +(noun)|dish +chowchow|2 +(noun)|relish +(noun)|conserve|preserve|conserves|preserves +chowder|1 +(noun)|soup +chris evert|1 +(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player +chrism|1 +(noun)|chrisom|sacramental oil|holy oil|ointment|unction|unguent|balm|salve +chrisom|1 +(noun)|chrism|sacramental oil|holy oil|ointment|unction|unguent|balm|salve +chrissie evert|1 +(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player +christ|2 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(noun)|messiah|savior|saviour|rescuer|deliverer +christ's-thorn|2 +(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub|bush +(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub|bush +christ's resurrection|1 +(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle +christ plant|1 +(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge +christ thorn|1 +(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge +christ within|1 +(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive|ethics|morals|morality +christchurch|1 +(noun)|Christchurch|city|metropolis|urban center +christella|1 +(noun)|fern +christen|1 +(verb)|baptize|baptise|name|call +christendom|1 +(noun)|Christendom|Christianity|body +christening|1 +(noun)|baptism +christiaan eijkman|1 +(noun)|Eijkman|Christiaan Eijkman|doctor|doc|physician|MD|Dr.|medico +christiaan huygens|1 +(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist +christian|3 +(adj)|Christian|religion|faith|religious belief +(adj)|christian |christianly|christlike|christly +(noun)|Christian|religionist|religious person +christian bible|1 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +christian church|2 +(noun)|church|Christian church|religion|faith +(noun)|Christian Church|Disciples of Christ|Protestant denomination +christian dior|1 +(noun)|Dior|Christian Dior|couturier|fashion designer|clothes designer|designer +christian era|1 +(noun)|Christian era|Common era|era|epoch +christian friedrich hebbel|1 +(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist|playwright +christian friedrich schonbein|1 +(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist +christian holy day|1 +(noun)|Christian holy day|religious holiday|holy day +christian huygens|1 +(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist +christian johann doppler|1 +(noun)|Doppler|Christian Johann Doppler|physicist +christian liturgy|1 +(noun)|Christian liturgy|liturgy +christian name|1 +(noun)|Christian name|baptismal name|first name|given name|forename +christian religion|1 +(noun)|Christianity|Christian religion|religion|faith|religious belief +christian schonbein|1 +(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist +christian science|2 +(noun)|Christian Science|Church of Christ Scientist|Protestant denomination +(noun)|Christian Science|Protestantism +christian scientist|1 +(noun)|Christian Scientist|Protestant +christian theology|1 +(noun)|Christian theology|theology|theological system +christian year|1 +(noun)|church year|Christian year|year|twelvemonth|yr +christiania|1 +(noun)|Oslo|Christiania|capital of Norway|national capital|port +christianisation|1 +(noun)|Christianization|Christianisation|conversion +christianise|1 +(verb)|Christianize|Christianise|convert +christianity|2 +(noun)|Christianity|Christian religion|religion|faith|religious belief +(noun)|Christendom|Christianity|body +christianization|1 +(noun)|Christianization|Christianisation|conversion +christianize|2 +(verb)|Christianize|adapt|accommodate +(verb)|Christianize|Christianise|convert +christianly|1 +(adj)|christian +christie|1 +(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer|author +christine marie evert|1 +(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player +christless|1 +(adj)|nonchristian|unchristian +christlike|1 +(adj)|christly|christian +christly|1 +(adj)|christlike|christian +christmas|3 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday|national holiday|holy day of obligation|quarter day|feast day|fete day +(verb)|spend|pass +christmas begonia|1 +(noun)|Christmas begonia|blooming-fool begonia|Begonia cheimantha|begonia +christmas bells|1 +(noun)|Christmas bells|flower +christmas berry|3 +(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub|bush +(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +(noun)| +christmas box|1 +(noun)|Christmas box|gratuity|tip|pourboire|baksheesh|bakshish|bakshis|backsheesh +christmas bush|1 +(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree +christmas cactus|1 +(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus +christmas cake|1 +(noun)|Christmas cake|fruitcake +christmas card|1 +(noun)|Christmas card|greeting card +christmas carol|1 +(noun)|carol|Christmas carol|religious song +christmas day|1 +(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday|national holiday|holy day of obligation|quarter day|feast day|fete day +christmas disease|1 +(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia|haemophilia|bleeder's disease +christmas eve|1 +(noun)|Christmas Eve|Dec 24|holiday +christmas factor|1 +(noun)|Christmas factor|factor IX|coagulation factor|clotting factor +christmas fern|1 +(noun)|Christmas fern|canker brake|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern +christmas flower|1 +(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +christmas gift|1 +(noun)|Christmas present|Christmas gift|present +christmas green|1 +(noun)|ground pine|Christmas green|club moss|club-moss|lycopod +christmas holly|1 +(noun)|American holly|Christmas holly|poisonous plant|holly +christmas present|1 +(noun)|Christmas present|Christmas gift|present +christmas pudding|1 +(noun)|plum pudding|Christmas pudding|pudding +christmas rose|1 +(noun)|Christmas rose|winter rose|black hellebore|Helleborus niger|hellebore +christmas star|1 +(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +christmas stocking|1 +(noun)|Christmas stocking|stocking +christmas tree|5 +(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree +(noun)|flame tree|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant +(noun)|European silver fir|Christmas tree|Abies alba|silver fir +(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir +(noun)|Christmas tree|decoration|ornament|ornamentation +christmasberry|2 +(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub|bush +(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +christmastide|1 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +christmastime|1 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +christological|1 +(adj)|Christological|Christian theology|theological doctrine|religious doctrine +christology|2 +(noun)|Christology|theological doctrine|religious doctrine +(noun)|Christology|Christian theology +christoph willibald von gluck|1 +(noun)|Gluck|Christoph Willibald von Gluck|composer +christopher|1 +(noun)|Christopher|Saint Christopher|St. Christopher|patron saint +christopher carson|1 +(noun)|Carson|Kit Carson|Christopher Carson|frontiersman|backwoodsman|mountain man +christopher columbus|1 +(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator +christopher fry|1 +(noun)|Fry|Christopher Fry|dramatist|playwright +christopher isherwood|1 +(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer|author +christopher marlowe|1 +(noun)|Marlowe|Christopher Marlowe|dramatist|playwright|poet +christopher william bradshaw isherwood|1 +(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer|author +chroma|1 +(noun)|saturation|intensity|vividness|color property +chromaesthesia|1 +(noun)|chromesthesia|synesthesia|synaesthesia +chromate|1 +(noun)|salt +chromatic|3 +(adj)|visual property +(adj)|chromatic +(adj)|chromatic |amber|brownish-yellow|yellow-brown|amethyst|aureate|gilded|gilt|gold|golden|azure|cerulean|sky-blue|bright blue|blue|bluish|blueish|light-blue|dark-blue|blue-black|bluish green|blue-green|cyan|teal|blushful|rosy|bottle-green|bronze|bronzy|brown|brownish|dark-brown|buff|canary|canary-yellow|caramel|caramel brown|carnation|chartreuse|dun|earthlike|fuscous|taupe|green|greenish|light-green|dark-green|jade|jade-green|khaki|lavender|lilac|mauve|moss green|mosstone|mousy|mouse-colored|mouselike|ocher|ochre|olive-brown|olive-drab|olive|orange|orangish|peacock-blue|pink|pinkish|purple|violet|purplish|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|rose|roseate|rosaceous|rose-red|rust|rusty|sapphire|snuff|snuff-brown|mummy-brown|chukker-brown|sorrel|brownish-orange|stone|straw|tan|tannish|tangerine|tawny|ultramarine|umber|vermilion|vermillion|cinnabar|Chinese-red|vinaceous|yellow|yellowish|xanthous|yellow-green|auburn|reddish-brown|avocado|beige|blae|chestnut|coppery|copper colored|coral|creamy|cress green|cresson|watercress|hazel|honey|magenta|maroon|brownish-red|pea-green|powder blue|russet|sage|sage-green|sea-green|chestnut|colored|coloured|colorful +chromatic aberration|1 +(noun)|aberration|distortion|optical aberration +chromatic color|1 +(noun)|chromatic colour|spectral color|spectral colour|color|colour|coloring|colouring +chromatic colour|1 +(noun)|chromatic color|spectral color|spectral colour|color|colour|coloring|colouring +chromatic scale|1 +(noun)|scale|musical scale +chromatic vision|1 +(noun)|color vision|trichromacy|sight|vision|visual sense|visual modality +chromaticity|1 +(noun)|hue|color property +chromatid|1 +(noun)|fibril|filament|strand +chromatin|1 +(noun)|chromatin granule|body substance +chromatin granule|1 +(noun)|chromatin|body substance +chromatinic|1 +(adj)|chromatinic |body substance +chromatism|2 +(noun)|visual hallucination +(noun)|pigmentation +chromatogram|1 +(noun)|recording +chromatographic|1 +(adj)|chromatographical|natural process|natural action|action|activity +chromatographical|1 +(adj)|chromatographic|natural process|natural action|action|activity +chromatography|1 +(noun)|natural process|natural action|action|activity +chromatography column|1 +(noun)|column|tube|tubing +chrome|3 +(noun)|chromium|Cr|atomic number 24 +(verb)|chromium-plate|plate +(verb)|process|treat +chrome-nickel steel|1 +(noun)|Elinvar|alloy steel +chrome-tungsten steel|1 +(noun)|alloy steel +chrome alum|1 +(noun)|mordant|salt +chrome green|2 +(noun)|pigment +(noun)|green|greenness|viridity +chrome red|1 +(noun)|red|redness +chrome yellow|2 +(noun)|pigment +(noun)|yellow|yellowness +chromesthesia|1 +(noun)|chromaesthesia|synesthesia|synaesthesia +chromic acid|1 +(noun)|acid +chromite|1 +(noun)|mineral +chromium|1 +(noun)|Cr|atomic number 24|metallic element|metal +chromium-plate|1 +(verb)|chrome|plate +chromium steel|1 +(noun)|stainless steel|alloy steel +chromoblastomycosis|1 +(noun)|blastomycosis +chromogen|1 +(noun)|compound|chemical compound +chromolithography|1 +(noun)|lithography +chromophore|1 +(noun)|group|radical|chemical group +chromoplast|1 +(noun)|plastid +chromosomal|1 +(adj)|body +chromosomal aberration|1 +(noun)|chromosomal anomaly|chrosomal abnormality|chromosonal disorder|aberrance|aberrancy|aberration|deviance +chromosomal anomaly|1 +(noun)|chromosomal aberration|chrosomal abnormality|chromosonal disorder|aberrance|aberrancy|aberration|deviance +chromosomal mutation|1 +(noun)|mutation|genetic mutation|change|alteration|modification +chromosome|1 +(noun)|body +chromosome mapping|1 +(noun)|mapping|procedure|process +chromosonal disorder|1 +(noun)|chromosomal aberration|chromosomal anomaly|chrosomal abnormality|aberrance|aberrancy|aberration|deviance +chromosphere|1 +(noun)|layer +chronic|2 +(adj)|chronic |degenerative|prolonged +(adj)|confirmed|habitual|inveterate|addicted +chronic bronchitis|1 +(noun)|bronchitis +chronic eczema|1 +(noun)|lichtenoid eczema|eczema hypertrophicum|eczema +chronic gastritis|1 +(noun)|gastritis +chronic glaucoma|1 +(noun)|open-angle glaucoma|glaucoma +chronic glossitis|1 +(noun)|glossitis +chronic kidney failure|1 +(noun)|chronic renal failure|renal failure|kidney failure +chronic leukemia|1 +(noun)|leukemia|leukaemia|leucaemia|cancer of the blood +chronic lymphocytic leukemia|1 +(noun)|chronic leukemia +chronic myelocytic leukemia|1 +(noun)|myeloid leukemia|myelocytic leukemia|granulocytic leukemia|chronic leukemia +chronic obstructive pulmonary disease|1 +(noun)|emphysema|pulmonary emphysema|chronic bronchitis +chronic pyelonephritis|1 +(noun)|pyelonephritis +chronic renal failure|1 +(noun)|chronic kidney failure|renal failure|kidney failure +chronic wasting disease|1 +(noun)|animal disease +chronically|1 +(adv)|inveterately +chronicle|2 +(noun)|history|account|story|record +(verb)|record|enter|put down +chronicler|1 +(noun)|historian|historiographer +chronograph|1 +(noun)|timer +chronological|1 +(adj)|written record|written account +chronological age|1 +(noun)|age +chronological record|1 +(noun)|annals|history|account|chronicle|story +chronological sequence|1 +(noun)|sequence|succession|successiveness|chronological succession|temporal arrangement|temporal order +chronological succession|1 +(noun)|sequence|chronological sequence|succession|successiveness|temporal arrangement|temporal order +chronologise|1 +(verb)|chronologize|date +chronologize|1 +(verb)|chronologise|date +chronology|3 +(noun)|temporal relation +(noun)|written record|written account +(noun)|humanistic discipline|humanities|liberal arts|arts +chronometer|1 +(noun)|clock +chronoperates|1 +(noun)|Chronoperates|genus Chronoperates|reptile genus +chronoperates paradoxus|1 +(noun)|Chronoperates paradoxus|therapsid|protomammal +chronoscope|1 +(noun)|measuring instrument|measuring system|measuring device +chrosomal abnormality|1 +(noun)|chromosomal aberration|chromosomal anomaly|chromosonal disorder|aberrance|aberrancy|aberration|deviance +chrysalis|1 +(noun)|pupa +chrysanthemum|2 +(noun)|flower|bloom|blossom +(noun)|flower +chrysanthemum balsamita|1 +(noun)|costmary|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +chrysanthemum cinerariifolium|1 +(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb|herbaceous plant +chrysanthemum coccineum|1 +(noun)|painted daisy|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower +chrysanthemum coronarium|1 +(noun)|crown daisy|Chrysanthemum coronarium|chrysanthemum +chrysanthemum coronarium spatiosum|1 +(noun)|chop-suey greens|tong ho|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum +chrysanthemum dog|1 +(noun)|Tibetan terrier|terrier +chrysanthemum frutescens|1 +(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub|suffrutex +chrysanthemum lacustre|1 +(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite|composite plant +chrysanthemum leucanthemum|1 +(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +chrysanthemum maximum|1 +(noun)|oxeye daisy|Leucanthemum maximum|Chrysanthemum maximum|composite|composite plant +chrysanthemum maximum maximum|1 +(noun)|shasta daisy|Leucanthemum superbum|Chrysanthemum maximum maximum|composite|composite plant +chrysanthemum morifolium|1 +(noun)|florist's chrysanthemum|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum +chrysanthemum parthenium|1 +(noun)|feverfew|Tanacetum parthenium|Chrysanthemum parthenium|herb|herbaceous plant +chrysanthemum ptarmiciflorum|1 +(noun)|dusty miller|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite|composite plant +chrysanthemum segetum|1 +(noun)|corn marigold|field marigold|Chrysanthemum segetum|chrysanthemum +chrysaora|1 +(noun)|Chrysaora|genus Chrysaora|coelenterate genus +chrysaora quinquecirrha|1 +(noun)|Chrysaora quinquecirrha|jellyfish|medusa|medusan +chrysarobin|1 +(noun)|araroba|Goa powder|powder +chrysemys|1 +(noun)|Chrysemys|genus Chrysemys|reptile genus +chrysemys picta|1 +(noun)|painted turtle|painted terrapin|painted tortoise|Chrysemys picta|turtle +chrysobalanus|1 +(noun)|Chrysobalanus|genus Chrysobalanus|rosid dicot genus +chrysobalanus icaco|1 +(noun)|coco plum|coco plum tree|cocoa plum|icaco|Chrysobalanus icaco|fruit tree +chrysoberyl|1 +(noun)|mineral|opaque gem +chrysochloridae|1 +(noun)|Chrysochloridae|family Chrysochloridae|mammal family +chrysochloris|1 +(noun)|Chrysochloris|genus Chrysochloris|mammal genus +chrysolepis|1 +(noun)|Chrysolepis|genus Chrysolepis|hamamelid dicot genus +chrysolepis chrysophylla|1 +(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree +chrysolepis sempervirens|1 +(noun)|dwarf golden chinkapin|Chrysolepis sempervirens|shrub|bush +chrysolite|1 +(noun)|olivine|transparent gem +chrysolophus|1 +(noun)|Chrysolophus|genus Chrysolophus|bird genus +chrysolophus pictus|1 +(noun)|golden pheasant|Chrysolophus pictus|pheasant +chrysomelid|1 +(noun)|leaf beetle|beetle +chrysomelidae|1 +(noun)|Chrysomelidae|family Chrysomelidae|arthropod family +chrysophrys|1 +(noun)|Chrysophrys|genus Chrysophrys|fish genus +chrysophrys auratus|1 +(noun)|snapper|Chrysophrys auratus|sparid|sparid fish +chrysophrys australis|1 +(noun)|black bream|Chrysophrys australis|sea bream|bream +chrysophyceae|1 +(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class +chrysophyllum|1 +(noun)|Chrysophyllum|genus Chrysophyllum|dicot genus|magnoliopsid genus +chrysophyllum cainito|1 +(noun)|star apple|caimito|Chrysophyllum cainito|fruit tree +chrysophyllum oliviforme|1 +(noun)|satinleaf|satin leaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree|flowering tree +chrysophyta|1 +(noun)|Chrysophyta|division Chrysophyta|division +chrysopid|1 +(noun)|green lacewing|stink fly|lacewing|lacewing fly +chrysopidae|1 +(noun)|Chrysopidae|family Chrysopidae|arthropod family +chrysoprase|1 +(noun)|transparent gem|chalcedony|calcedony +chrysopsis|1 +(noun)|Chrysopsis|genus Chrysopsis|asterid dicot genus +chrysopsis mariana|1 +(noun)|Maryland golden aster|Chrysopsis mariana|golden aster +chrysopsis villosa|1 +(noun)|hairy golden aster|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower|wild flower +chrysosplenium|1 +(noun)|Chrysosplenium|genus Chrysosplenium|rosid dicot genus +chrysosplenium americanum|1 +(noun)|water carpet|water mat|Chrysosplenium americanum|golden saxifrage|golden spleen +chrysothamnus|1 +(noun)|Chrysothamnus|genus Chrysothamnus|asterid dicot genus +chrysothamnus nauseosus|1 +(noun)|rabbit brush|rabbit bush|Chrysothamnus nauseosus|goldenbush +chrysotherapy|1 +(noun)|chemotherapy +chrysotile|1 +(noun)|asbestos +chthonian|1 +(adj)|chthonic|lower|nether|infernal +chthonic|1 +(adj)|chthonian|lower|nether|infernal +chu kiang|1 +(noun)|Zhu Jiangi|Canton River|Chu Kiang|river +chuang-tzu|1 +(noun)|Chuang-tzu|mystic|religious mystic +chub|1 +(noun)|Leuciscus cephalus|cyprinid|cyprinid fish +chub mackerel|1 +(noun)|tinker|Scomber japonicus|mackerel +chubbiness|1 +(noun)|pudginess|tubbiness|rolypoliness|plumpness|embonpoint +chubby|1 +(adj)|buxom|embonpoint|plump|zaftig|zoftig|fat +chuck|7 +(noun)|chow|eats|grub|fare +(noun)|cut of beef +(noun)|holding device +(verb)|toss|throw +(verb)|ditch|abandon +(verb)|pat|caress +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +chuck-full|1 +(adj)|chockablock|chock-full|chockful|choke-full|cram full|full +chuck-will's-widow|1 +(noun)|Caprimulgus carolinensis|goatsucker|nightjar|caprimulgid +chuck berry|1 +(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star +chuck out|2 +(verb)|discard|fling|toss|toss out|toss away|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +(verb)|expel|eject|exclude|throw out|kick out|turf out|boot out|turn out|move|displace +chuck short ribs|1 +(noun)|cut of beef +chuck up the sponge|1 +(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in|throw in the towel|quit +chuck wagon|1 +(noun)|wagon|waggon +chucker-out|1 +(noun)|bouncer|guard +chuckhole|1 +(noun)|pothole|hole|hollow +chuckle|2 +(noun)|chortle|laugh|laughter +(verb)|chortle|laugh softly|laugh|express joy|express mirth +chuckwalla|1 +(noun)|Sauromalus obesus|iguanid|iguanid lizard +chuddar|1 +(noun)|chador|chadar|chaddar|head covering|veil +chufa|1 +(noun)|yellow nutgrass|earth almond|ground almond|rush nut|Cyperus esculentus|sedge +chuff|1 +(verb)|puff|huff|blow +chuffed|1 +(adj)|pleased +chug|2 +(noun)|noise +(verb)|sound|go +chukaku-ha|1 +(noun)|Chukaku-Ha|terrorist organization|terrorist group|foreign terrorist organization|FTO +chukka|1 +(noun)|chukker|playing period|period of play|play +chukka boot|1 +(noun)|buskin|combat boot|desert boot|half boot|top boot|boot +chukker|1 +(noun)|chukka|playing period|period of play|play +chukker-brown|1 +(adj)|snuff|snuff-brown|mummy-brown|chromatic +chum|1 +(noun)|buddy|brother|crony|pal|sidekick|friend +chum up|1 +(verb)|pal|pal up|befriend +chumminess|1 +(noun)|camaraderie|comradeliness|comradery|comradeship|sociability|sociableness +chummy|2 +(adj)|matey|pally|palsy-walsy|friendly +(adj)|buddy-buddy|thick|close +chump|1 +(noun)|fool|gull|mark|patsy|fall guy|sucker|soft touch|mug|victim|dupe +chump change|1 +(noun)|small change|chickenfeed|cash|hard cash|hard currency +chunga|1 +(noun)|seriema|Chunga burmeisteri|wading bird|wader +chunga burmeisteri|1 +(noun)|chunga|seriema|Chunga burmeisteri|wading bird|wader +chungking|1 +(noun)|Chongqing|Chungking|city|metropolis|urban center +chunk|3 +(noun)|ball|clod|glob|lump|clump|agglomeration +(verb)|lump|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|collocate|lump|group +chunking|1 +(noun)|unitization|unitisation|configuration|constellation +chunky|2 +(adj)|lumpy|unshapely +(adj)|dumpy|low-set|squat|squatty|stumpy|short +chunnel|1 +(noun)|Channel Tunnel|railroad tunnel +church|5 +(noun)|Christian church|religion|faith +(noun)|church building|place of worship|house of prayer|house of God|house of worship +(noun)|church service|service|religious service|divine service +(noun)|body +(verb)|perform +church-state|1 +(noun)|theocracy +church bell|1 +(noun)|bell +church bench|1 +(noun)|pew|bench +church building|1 +(noun)|church|place of worship|house of prayer|house of God|house of worship +church calendar|1 +(noun)|ecclesiastical calendar|Gregorian calendar|New Style calendar +church doctrine|1 +(noun)|religious doctrine|gospel|creed|doctrine|philosophy|philosophical system|school of thought|ism +church father|1 +(noun)|Church Father|Father of the Church|Father|theologian|theologist|theologizer|theologiser +church festival|1 +(noun)|religious festival|festival +church hat|1 +(noun)|millinery|woman's hat +church key|1 +(noun)|can opener|tin opener +church member|1 +(noun)|churchgoer|religionist|religious person +church mode|1 +(noun)|ecclesiastical mode|Gregorian mode|medieval mode|mode|musical mode +church mouse|1 +(noun)|fictional animal +church music|1 +(noun)|religious music|music genre|musical genre|genre|musical style +church of christ scientist|1 +(noun)|Christian Science|Church of Christ Scientist|Protestant denomination +church of england|1 +(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination +church of ireland|1 +(noun)|Church of Ireland|Anglican Church|Anglican Communion|Church of England +church of jesus christ of latter-day saints|1 +(noun)|Mormon Church|Mormons|Church of Jesus Christ of Latter-day Saints|Protestant denomination +church of rome|1 +(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church +church of scientology|1 +(noun)|Scientology|Church of Scientology|religion|faith +church of the brethren|1 +(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination +church officer|1 +(noun)|official|functionary +church property|1 +(noun)|spiritualty|spirituality|property|belongings|holding|material possession +church roll|1 +(noun)|roll|roster +church school|1 +(noun)|parochial school|religious school +church service|1 +(noun)|church|service|religious service|divine service +church slavic|1 +(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic|Slavic language|Slavonic|Slavonic language +church tower|1 +(noun)|tower +church year|1 +(noun)|Christian year|year|twelvemonth|yr +churchgoer|1 +(noun)|church member|religionist|religious person +churchgoing|1 +(adj)|religious +churchill|3 +(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general|full general +(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman|solon|national leader|writer|author +(noun)|Churchill|town +churchill downs|1 +(noun)|Churchill Downs|dirt track +churchillian|1 +(adj)|Churchillian|statesman|solon|national leader|writer|author +churchlike|1 +(adj)|churchly|religious +churchly|1 +(adj)|churchlike|religious +churchman|1 +(noun)|cleric|divine|ecclesiastic|clergyman|reverend|man of the cloth +churchwarden|1 +(noun)|church officer +churchyard|1 +(noun)|God's acre|yard +churidars|1 +(noun)|trousers|pants +churl|3 +(noun)|peasant|barbarian|boor|Goth|tyke|tike|unpleasant person|disagreeable person +(noun)|niggard|skinflint|scrooge|hoarder +(noun)|grouch|grump|crank|crosspatch|unpleasant person|disagreeable person +churlish|2 +(adj)|ungracious +(adj)|ill-natured +churlishly|1 +(adv)|surlily +churn|3 +(noun)|butter churn|vessel +(verb)|stir +(verb)|boil|moil|roil|move +churn out|2 +(verb)|perform|execute|do +(verb)|produce|make|create +churn up|1 +(verb)|disgust|revolt|nauseate|sicken|repel|repulse +churned-up|1 +(adj)|churning|agitated +churning|2 +(adj)|churned-up|agitated +(adj)|roiling|roiled|roily|turbulent|agitated +churr|1 +(verb)|whirr|utter|emit|let out|let loose +churrigueresco|1 +(adj)|baroque|churrigueresque|fancy +churrigueresque|1 +(adj)|baroque|churrigueresco|fancy +chute|2 +(noun)|parachute|rescue equipment +(noun)|slide|slideway|sloping trough|gutter|trough +chute-the-chute|1 +(noun)|roller coaster|big dipper|elevated railway|elevated railroad|el|overhead railway|ride +chutney|1 +(noun)|Indian relish|condiment +chutzpa|1 +(noun)|chutzpah|hutzpah|crust|gall|impertinence|impudence|insolence|cheekiness|freshness +chutzpah|1 +(noun)|chutzpa|hutzpah|crust|gall|impertinence|impudence|insolence|cheekiness|freshness +chutzpanik|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +chuvash|2 +(noun)|Chuvash|Turki +(noun)|Chuvash|Turki|Turkic|Turko-Tatar|Turkic language +chylaceous|1 +(adj)|chylous|liquid body substance|bodily fluid|body fluid|humor|humour +chyle|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +chylifactive|1 +(adj)|chylific|chylifactory|liquid body substance|bodily fluid|body fluid|humor|humour +chylifactory|1 +(adj)|chylific|chylifactive|liquid body substance|bodily fluid|body fluid|humor|humour +chyliferous|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +chylific|1 +(adj)|chylifactive|chylifactory|liquid body substance|bodily fluid|body fluid|humor|humour +chyloderma|1 +(noun)|elephantiasis scroti|elephantiasis +chylomicron|1 +(noun)|atom|molecule|particle|corpuscle|mote|speck +chylous|1 +(adj)|chylaceous|liquid body substance|bodily fluid|body fluid|humor|humour +chyme|1 +(noun)|food|nutrient +chymosin|1 +(noun)|rennin|enzyme|coagulase +chytridiaceae|1 +(noun)|Chytridiaceae|family Chytridiaceae|fungus family +chytridiales|1 +(noun)|Chytridiales|order Chytridiales|fungus order +chytridiomycetes|1 +(noun)|Chytridiomycetes|class Chytridiomycetes|class +ci|2 +(adj)|hundred and one|a hundred and one|one hundred one|101|cardinal +(noun)|curie|Ci|radioactivity unit +cia|1 +(noun)|Central Intelligence Agency|CIA|United States intelligence agency|independent agency +ciao|1 +(noun)|aloha|acknowledgment|acknowledgement +ciardi|1 +(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet|literary critic +cibotium|1 +(noun)|Cibotium|genus Cibotium|fern genus +cibotium barometz|1 +(noun)|Scythian lamb|Cibotium barometz|tree fern +cicada|1 +(noun)|cicala|homopterous insect|homopteran +cicada killer|1 +(noun)|Sphecius speciosis|digger wasp +cicadellidae|1 +(noun)|Cicadellidae|family Cicadellidae|arthropod family +cicadidae|1 +(noun)|Cicadidae|family Cicadidae|arthropod family +cicala|1 +(noun)|cicada|homopterous insect|homopteran +cicatrice|1 +(noun)|scar|cicatrix|symptom +cicatrise|1 +(verb)|cicatrize|scar|mark|pock|pit +cicatrix|1 +(noun)|scar|cicatrice|symptom +cicatrize|1 +(verb)|cicatrise|scar|mark|pock|pit +cicer|1 +(noun)|Cicer|genus Cicer|rosid dicot genus +cicer arietinum|1 +(noun)|chickpea|chickpea plant|Egyptian pea|Cicer arietinum|legume|leguminous plant +cicero|2 +(noun)|linear unit +(noun)|Cicero|Marcus Tullius Cicero|Tully|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader +cicerone|1 +(noun)|guide +cichlid|1 +(noun)|cichlid fish|percoid fish|percoid|percoidean +cichlid fish|1 +(noun)|cichlid|percoid fish|percoid|percoidean +cichlidae|1 +(noun)|Cichlidae|family Cichlidae|fish family +cichorium|1 +(noun)|Cichorium|genus Cichorium|asterid dicot genus +cichorium endivia|1 +(noun)|endive|witloof|Cichorium endivia|herb|herbaceous plant +cichorium intybus|1 +(noun)|chicory|succory|chicory plant|Cichorium intybus|herb|herbaceous plant +cicily isabel fairfield|1 +(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer|author +cicindelidae|1 +(noun)|Cicindelidae|family Cicindelidae|arthropod family +ciconia|1 +(noun)|Ciconia|genus Ciconia|bird genus +ciconia ciconia|1 +(noun)|white stork|Ciconia ciconia|stork +ciconia nigra|1 +(noun)|black stork|Ciconia nigra|stork +ciconiidae|1 +(noun)|Ciconiidae|family Ciconiidae|bird family +ciconiiformes|1 +(noun)|Ciconiiformes|order Ciconiiformes|animal order +cicuta|1 +(noun)|Cicuta|genus Cicuta|rosid dicot genus +cicuta verosa|1 +(noun)|water hemlock|Cicuta verosa|poisonous plant +cid|1 +(noun)|Criminal Investigation Command|CID|law enforcement agency +cidade de praia|1 +(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital +cider|1 +(noun)|cyder|beverage|drink|drinkable|potable +cider gum|1 +(noun)|Eucalypt gunnii|flooded gum +cider mill|1 +(noun)|mill|grinder +cider vinegar|1 +(noun)|vinegar|acetum +ciderpress|1 +(noun)|press|mechanical press +cigar|1 +(noun)|roll of tobacco|smoke +cigar-box cedar|1 +(noun)|mahogany +cigar-shaped|1 +(adj)|fusiform|spindle-shaped|pointed +cigar band|1 +(noun)|band|banding|stripe +cigar box|1 +(noun)|box +cigar butt|1 +(noun)|butt|stub +cigar cutter|1 +(noun)|cutter|cutlery|cutting tool +cigar lighter|1 +(noun)|cigarette lighter|pocket lighter|lighter|light|igniter|ignitor +cigar smoker|1 +(noun)|smoker|tobacco user +cigaret|1 +(noun)|cigarette|coffin nail|butt|fag|roll of tobacco|smoke +cigarette|1 +(noun)|cigaret|coffin nail|butt|fag|roll of tobacco|smoke +cigarette burn|1 +(noun)|burn|burn mark +cigarette butt|1 +(noun)|butt|stub +cigarette case|1 +(noun)|case +cigarette holder|1 +(noun)|tube|tubing +cigarette lighter|1 +(noun)|cigar lighter|pocket lighter|lighter|light|igniter|ignitor +cigarette paper|1 +(noun)|rolling paper|tissue|tissue paper +cigarette smoker|1 +(noun)|smoker|tobacco user +cigarfish|1 +(noun)|round scad|quiaquia|Decapterus punctatus|scad +cigarillo|1 +(noun)|cigar +cilantro|2 +(noun)|coriander|coriander plant|Chinese parsley|Coriandrum sativum|herb|herbaceous plant +(noun)|coriander|Chinese parsley|herb +cilial|1 +(adj)|ciliary|ciliate|organelle|cell organ +ciliary|3 +(adj)|membrane|tissue layer +(adj)|ciliate|cilial|organelle|cell organ +(adj)|ciliate|hair +ciliary artery|1 +(noun)|arteria ciliaris|artery|arteria|arterial blood vessel +ciliary body|1 +(noun)|membrane|tissue layer +ciliary veins|1 +(noun)|venae ciliares|vein|vena|venous blood vessel +ciliata|1 +(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class +ciliate|4 +(adj)|ciliary|cilial|organelle|cell organ +(adj)|ciliary|hair +(adj)|ciliated|rough +(noun)|ciliated protozoan|ciliophoran|protozoan|protozoon +ciliated|1 +(adj)|ciliate|rough +ciliated protozoan|1 +(noun)|ciliate|ciliophoran|protozoan|protozoon +cilioflagellata|1 +(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order +ciliophora|1 +(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class +ciliophoran|1 +(noun)|ciliate|ciliated protozoan|protozoan|protozoon +cilium|2 +(noun)|organelle|cell organ +(noun)|eyelash|lash|hair +cim|1 +(noun)|Central Intelligence Machinery|CIM|international intelligence agency +cimabue|1 +(noun)|Cimabue|Giovanni Cimabue|old master +cimarron|2 +(noun)|Cimarron|Cimarron River|river +(noun)|bighorn|bighorn sheep|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +cimarron river|1 +(noun)|Cimarron|Cimarron River|river +cimetidine|1 +(noun)|Tagamet|histamine blocker|antacid|gastric antacid|alkalizer|alkaliser|antiacid +cimex|1 +(noun)|Cimex|genus Cimex|arthropod genus +cimex lectularius|1 +(noun)|bedbug|bed bug|chinch|Cimex lectularius|hemipterous insect|bug|hemipteran|hemipteron +cimicidae|1 +(noun)|Cimicidae|family Cimicidae|arthropod family +cimicifuga|1 +(noun)|Cimicifuga|genus Cimicifuga|magnoliid dicot genus +cimicifuga americana|1 +(noun)|American bugbane|summer cohosh|Cimicifuga americana|bugbane +cimicifuga foetida|1 +(noun)|fetid bugbane|foetid bugbane|Cimicifuga foetida|bugbane +cimicifuga racemosa|1 +(noun)|black cohosh|black snakeroot|rattle-top|Cimicifuga racemosa|bugbane +cimmerian|1 +(adj)|Cimmerian|dark +cinch|6 +(noun)|breeze|picnic|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking|project|task|labor +(noun)|girth|stable gear|saddlery|tack +(noun)|all fours|high-low-jack +(verb)|girth|fasten|fix|secure +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +(verb)|master|control +cinchona|1 +(noun)|chinchona|tree +cinchona bark|1 +(noun)|Peruvian bark|Jesuit's bark|bark +cinchona calisaya|1 +(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona|chinchona +cinchona cordifolia|1 +(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona|chinchona +cinchona lancifolia|1 +(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona|chinchona +cinchona ledgeriana|1 +(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona|chinchona +cinchona officinalis|1 +(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona|chinchona +cinchona pubescens|1 +(noun)|cinchona tree|Cinchona pubescens|cinchona|chinchona +cinchona tree|1 +(noun)|Cinchona pubescens|cinchona|chinchona +cincinnati|1 +(noun)|Cincinnati|city|metropolis|urban center +cincinnatus|1 +(noun)|Cincinnatus|Lucius Quinctius Cincinnatus|statesman|solon|national leader +cinclidae|1 +(noun)|Cinclidae|family Cinclidae|bird family +cinclus|1 +(noun)|Cinclus|genus Cinclus|bird genus +cinclus aquaticus|1 +(noun)|European water ouzel|Cinclus aquaticus|water ouzel|dipper +cinclus mexicanus|1 +(noun)|American water ouzel|Cinclus mexicanus|water ouzel|dipper +cincture|1 +(noun)|girdle|sash|waistband|waistcloth|band +cinder|1 +(noun)|clinker|fragment +cinder block|1 +(noun)|clinker block|breeze block|building block +cinder pig|1 +(noun)|pig iron +cinder track|1 +(noun)|racetrack|racecourse|raceway|track +cinderella|2 +(noun)|Cinderella|woman|adult female +(noun)|Cinderella|fictional character|fictitious character|character +cine-camera|1 +(noun)|motion-picture camera|movie camera|camera|photographic camera +cine-film|1 +(noun)|motion-picture film|movie film|film|photographic film +cine projector|1 +(noun)|movie projector|film projector|projector +cinema|2 +(noun)|film|celluloid|medium +(noun)|movie theater|movie theatre|movie house|picture palace|theater|theatre|house +cinema verite|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +cinematic|1 +(adj)|medium +cinematise|1 +(verb)|cinematize|film +cinematize|1 +(verb)|cinematise|film +cinematographer|1 +(noun)|cameraman|camera operator|photographer|lensman +cinematography|1 +(noun)|filming|motion-picture photography|photography|picture taking +cineraria|2 +(noun)|Pericallis cruenta|Senecio cruentus|flower +(noun)|columbarium|cinerarium|recess|niche +cineraria maritima|1 +(noun)|dusty miller|Senecio cineraria|Cineraria maritima|shrub|bush +cinerarium|1 +(noun)|columbarium|recess|niche +cinerary|1 +(adj)|recess|niche +cingulate gyrus|1 +(noun)|gyrus cinguli|neural structure +cingulum|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +cinnabar|3 +(adj)|vermilion|vermillion|Chinese-red|chromatic +(noun)|mineral +(noun)|cinnabar moth|Callimorpha jacobeae|arctiid|arctiid moth +cinnabar chanterelle|1 +(noun)|Cantharellus cinnabarinus|agaric +cinnabar moth|1 +(noun)|cinnabar|Callimorpha jacobeae|arctiid|arctiid moth +cinnamene|1 +(noun)|styrene|phenylethylene|vinylbenzene|vinyl polymer|vinyl resin|polyvinyl resin +cinnamomum|1 +(noun)|Cinnamomum|genus Cinnamomum|magnoliid dicot genus +cinnamomum camphora|1 +(noun)|camphor tree|Cinnamomum camphora|laurel +cinnamomum cassia|1 +(noun)|cassia|cassia-bark tree|Cinnamomum cassia|laurel +cinnamomum loureirii|1 +(noun)|Saigon cinnamon|Cinnamomum loureirii|laurel +cinnamomum zeylanicum|1 +(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel +cinnamon|3 +(noun)|cinnamon bark|bark +(noun)|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel +(noun)|spice +cinnamon bark|2 +(noun)|bark +(noun)|cinnamon|bark +cinnamon bear|1 +(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus +cinnamon bread|1 +(noun)|bread|breadstuff|staff of life +cinnamon bun|1 +(noun)|cinnamon roll|cinnamon snail|sweet roll|coffee roll +cinnamon fern|1 +(noun)|fiddlehead|fiddlehead fern|Osmunda cinnamonea|flowering fern|osmund +cinnamon roll|1 +(noun)|cinnamon bun|cinnamon snail|sweet roll|coffee roll +cinnamon snail|1 +(noun)|cinnamon roll|cinnamon bun|sweet roll|coffee roll +cinnamon stone|1 +(noun)|essonite|hessonite|garnet +cinnamon toast|1 +(noun)|toast +cinnamon vine|1 +(noun)|Chinese yam|Dioscorea batata|yam|yam plant +cinque|1 +(noun)|five|5|V|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +cinquefoil|2 +(noun)|five-finger|shrub|bush +(noun)|carving +cio|1 +(noun)|Congress of Industrial Organizations|CIO|federation +cipher|7 +(noun)|cypher|message +(noun)|zero|0|nought|cypher|digit|figure +(noun)|nothing|nil|nix|nada|null|aught|cypher|goose egg|naught|zero|zilch|zip|relative quantity +(noun)|cypher|nobody|nonentity|commoner|common man|common person +(noun)|cypher|cryptograph|secret code|code +(verb)|encode|code|encipher|cypher|encrypt|inscribe|write in code|write +(verb)|calculate|cypher|compute|work out|reckon|figure|reason +cipro|1 +(noun)|ciprofloxacin|Cipro|antibiotic|antibiotic drug +ciprofloxacin|1 +(noun)|Cipro|antibiotic|antibiotic drug +cira|1 +(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization|terrorist group|foreign terrorist organization|FTO +circadian|1 +(adj)|time unit|unit of time +circadian rhythm|1 +(noun)|biological time +circaea|1 +(noun)|Circaea|genus Circaea|rosid dicot genus +circaea alpina|1 +(noun)|Alpine enchanter's nightshade|Circaea alpina|enchanter's nightshade +circaea lutetiana|1 +(noun)|Circaea lutetiana|enchanter's nightshade +circaetus|1 +(noun)|Circaetus|genus Circaetus|bird genus +circassian|2 +(noun)|Circassian|White|white person|Caucasian +(noun)|Circassian|Caucasian|Caucasian language +circassian walnut|1 +(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut|walnut tree +circe|1 +(noun)|Circe|sorceress +circinate|1 +(adj)|annular|annulate|annulated|circular|ringed|ring-shaped|doughnut-shaped|rounded +circinus|1 +(noun)|Circinus|constellation +circis siliquastrum|1 +(noun)|Judas tree|love tree|Circis siliquastrum|angiospermous tree|flowering tree +circle|12 +(noun)|ellipse|oval +(noun)|set|band|lot|social group +(noun)|shape|form +(noun)|lap|circuit|locomotion|travel +(noun)|traffic circle|rotary|roundabout|junction +(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|flunitrazepan|Rohypnol +(noun)|dress circle|seating|seats|seating room|seating area +(noun)|round|rotating mechanism +(verb)|travel|go|move|locomote +(verb)|circulate|travel|go|move|locomote +(verb)|surround|environ|encircle|round|ring|hold|bear|carry|contain +(verb)|encircle|shape|form +circle around|1 +(verb)|revolve around|circle round|circle +circle of curvature|1 +(noun)|osculating circle|circle +circle of willis|1 +(noun)|circle of Willis|artery|arteria|arterial blood vessel +circle round|1 +(verb)|revolve around|circle around|circle +circlet|2 +(noun)|circle +(noun)|adornment +circuit|7 +(noun)|electrical circuit|electric circuit|electrical device +(noun)|tour|journey|journeying +(noun)|path|route|itinerary +(noun)|group|grouping +(noun)|racing circuit|racetrack|racecourse|raceway|track +(noun)|lap|circle|locomotion|travel +(verb)|travel|go|move|locomote +circuit board|1 +(noun)|circuit card|board|card|printed circuit +circuit breaker|1 +(noun)|breaker|fuse|electrical fuse +circuit card|1 +(noun)|circuit board|board|card|printed circuit +circuit court of appeals|1 +(noun)|appellate court|appeals court|court of appeals +circuitous|2 +(adj)|roundabout|indirect +(adj)|devious|roundabout|indirect +circuitry|1 +(noun)|electronic equipment +circular|4 +(adj)|round |ball-shaped|global|globose|globular|orbicular|spheric|spherical|bulblike|bulbous|capitate|coccoid|cumuliform|discoid|discoidal|disklike|moonlike|moon-round|nutlike|pear-shaped|ringlike|roundish|orbiculate|orbicular|rounded +(adj)|annular|annulate|annulated|circinate|ringed|ring-shaped|doughnut-shaped|rounded +(adj)|rotary|cyclic |cyclical +(noun)|handbill|bill|broadside|broadsheet|flier|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +circular-knit|1 +(adj)|seamless +circular file|1 +(noun)|wastepaper basket|waste-paper basket|wastebasket|waste basket|container +circular function|1 +(noun)|trigonometric function|function|mathematical function +circular measure|1 +(noun)|system of measurement|metric +circular plane|1 +(noun)|compass plane|plane|carpenter's plane|woodworking plane +circular saw|1 +(noun)|buzz saw|power saw|saw|sawing machine +circularisation|1 +(noun)|circularization|advertising|publicizing +circularise|3 +(verb)|circularize|poll|canvass|canvas +(verb)|circularize|send around +(verb)|circulate|circularize|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +circularity|1 +(noun)|disk shape|roundness +circularization|1 +(noun)|circularisation|advertising|publicizing +circularize|5 +(verb)|circularise|poll|canvass|canvas +(verb)|canvass|canvas +(verb)|circularise|send around +(verb)|circulate|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +(verb)|change|alter|modify +circulate|8 +(verb)|go around|spread|travel|go|move|locomote +(verb)|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +(verb)|pass around|pass on|distribute|move|displace +(verb)|run|flow|feed|course +(verb)|circle|travel|go|move|locomote +(verb)|move|displace +(verb)|travel|go|move|locomote +(verb)|mobilize|mobilise|move|displace +circulating|1 +(adj)|current +circulating decimal|1 +(noun)|recurring decimal|repeating decimal|decimal fraction|decimal +circulating library|1 +(noun)|lending library|library|depository library +circulation|6 +(noun)|dissemination|airing|public exposure|spreading +(noun)|organic phenomenon +(noun)|count +(noun)|count +(noun)|change of location|travel +(noun)|spread|spreading +circulative|1 +(adj)|circulatory|change of location|travel +circulatory|2 +(adj)|circulative|change of location|travel +(adj)|vascular system +circulatory failure|1 +(noun)|cardiovascular disease +circulatory system|1 +(noun)|cardiovascular system|vascular system +circumambulate|1 +(verb)|walk around|circle +circumboreal|1 +(adj)|boreal|northern +circumcise|2 +(verb)|cut +(verb)|remove|take|take away|withdraw +circumcision|3 +(noun)|Circumcision|Feast of the Circumcision|January 1|feast day|fete day +(noun)|rite|religious rite +(noun)|abscission|cutting off +circumduction|1 +(noun)|motion|movement|move|motility +circumference|2 +(noun)|perimeter|size +(noun)|length +circumferential|2 +(adj)|peripheral +(noun)|bypass|ring road|road|route +circumflex|1 +(noun)|diacritical mark|diacritic +circumflex artery|1 +(noun)|artery|arteria|arterial blood vessel +circumflex artery of the thigh|1 +(noun)|arteria circumflexa femoris|circumflex artery +circumflex femoral vein|1 +(noun)|vena circumflexus femoris|circumflex vein|vena circumflexa +circumflex humeral artery|1 +(noun)|arteria circumflexa humeri|circumflex artery +circumflex iliac artery|1 +(noun)|arteria circumflexa ilium|circumflex artery +circumflex iliac vein|1 +(noun)|vena circumflexa ilium|circumflex vein|vena circumflexa +circumflex scapular artery|1 +(noun)|arteria circumflexa scapulae|circumflex artery +circumflex vein|1 +(noun)|vena circumflexa|vein|vena|venous blood vessel +circumfuse|1 +(verb)|spread|scatter|spread out +circumlocution|2 +(noun)|periphrasis|ambage|verboseness|verbosity +(noun)|indirect expression|evasion|equivocation +circumlocutious|1 +(adj)|circumlocutory|periphrastic|ambagious|indirect +circumlocutory|1 +(adj)|circumlocutious|periphrastic|ambagious|indirect +circumnavigate|1 +(verb)|compass|circle +circumnavigation|1 +(noun)|travel|traveling|travelling +circumpolar|2 +(adj)|visible |seeable +(adj)|polar +circumscribe|3 +(verb)|trace|draw|line|describe|delineate +(verb)|limit|confine|decrease|lessen|minify +(verb)|trace|draw|line|describe|delineate +circumscribed|2 +(adj)|limited|restricted +(adj)|delimited|defined +circumscription|1 +(noun)|restriction +circumspect|1 +(adj)|discreet|prudent +circumspection|2 +(noun)|discretion|discreetness|prudence|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|caution|discretion|discernment +circumspectly|1 +(adv)|cagily +circumstance|4 +(noun)|condition|status +(noun)|context|environment +(noun)|condition|consideration|information +(noun)|ceremony|ceremonial|ceremonial occasion|observance +circumstances|7 +(noun)|fortune|destiny|fate|luck|lot|portion|condition +(noun)|wealth|wealthiness +(noun)|possession +(noun)|circumstance|condition|status +(noun)|context|circumstance|environment +(noun)|circumstance|condition|consideration|information +(noun)|circumstance|ceremony|ceremonial|ceremonial occasion|observance +circumstantial|1 +(adj)|specific +circumstantial evidence|1 +(noun)|indirect evidence|evidence +circumstantially|2 +(adv)|minutely +(adv)|by chance|accidentally|unexpectedly +circumstantiate|1 +(verb)|validate|corroborate +circumvallate|1 +(verb)|wall|palisade|fence|fence in|surround +circumvent|3 +(verb)|besiege|beleaguer|surround|hem in|attack|assail +(verb)|outwit|overreach|outsmart|outfox|beat|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|hedge|fudge|evade|put off|parry|elude|skirt|dodge|duck|sidestep|avoid +circumvention|1 +(noun)|evasion|escape|dodging +circumvolute|1 +(verb)|wind|curve +circumvolution|1 +(noun)|rotation|rotary motion +circumvolve|1 +(verb)|rotate|turn +circus|6 +(noun)|company|troupe +(noun)|show +(noun)|carnival|disturbance +(noun)|stadium|bowl|arena|sports stadium +(noun)|arena|scene of action +(noun)|Circus|genus Circus|bird genus +circus acrobat|1 +(noun)|acrobat +circus aeruginosus|1 +(noun)|marsh harrier|Circus Aeruginosus|harrier +circus cyaneus|1 +(noun)|marsh hawk|northern harrier|hen harrier|Circus cyaneus|harrier +circus pygargus|1 +(noun)|Montagu's harrier|Circus pygargus|harrier +circus tent|1 +(noun)|big top|round top|top|canvas tent|canvas|canvass +cirio|1 +(noun)|boojum tree|Fouquieria columnaris|Idria columnaris|candlewood +cirque|1 +(noun)|corrie|cwm|basin +cirrhosis|1 +(noun)|cirrhosis of the liver|liver disease +cirrhosis of the liver|1 +(noun)|cirrhosis|liver disease +cirrhus|1 +(noun)|cirrus|tendril +cirripedia|1 +(noun)|Cirripedia|subclass Cirripedia|class +cirrocumulus|1 +(noun)|cirrocumulus cloud|cloud +cirrocumulus cloud|1 +(noun)|cirrocumulus|cloud +cirrostratus|1 +(noun)|cirrostratus cloud|cloud +cirrostratus cloud|1 +(noun)|cirrostratus|cloud +cirrus|3 +(noun)|cirrhus|tendril +(noun)|cirrus cloud|cloud +(noun)|process|outgrowth|appendage +cirrus cloud|1 +(noun)|cirrus|cloud +cirsium|1 +(noun)|Cirsium|genus Cirsium|asterid dicot genus +cirsium arvense|1 +(noun)|Canada thistle|creeping thistle|Cirsium arvense|plume thistle|plumed thistle +cirsium discolor|1 +(noun)|field thistle|Cirsium discolor|thistle +cirsium eriophorum|1 +(noun)|European woolly thistle|Cirsium eriophorum|woolly thistle|Cirsium flodmanii +cirsium flodmanii|1 +(noun)|woolly thistle|Cirsium flodmanii|plume thistle|plumed thistle +cirsium helenioides|1 +(noun)|melancholy thistle|Cirsium heterophylum|Cirsium helenioides|thistle +cirsium heterophylum|1 +(noun)|melancholy thistle|Cirsium heterophylum|Cirsium helenioides|thistle +cirsium lanceolatum|1 +(noun)|bull thistle|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle|plumed thistle +cirsium rivulare|1 +(noun)|brook thistle|Cirsium rivulare|plume thistle|plumed thistle +cirsium vulgare|1 +(noun)|bull thistle|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle|plumed thistle +cis|2 +(noun)|Commonwealth of Independent States|CIS|world organization|world organisation|international organization|international organisation|global organization +(noun)|curie|Ci|radioactivity unit +cisalpine|1 +(adj)|ultramontane|cismontane +cisc|2 +(noun)|Criminal Intelligence Services of Canada|CISC|international intelligence agency +(noun)|complex instruction set computing|complex instruction set computer|CISC|computer architecture|architecture +cisco|2 +(noun)|lake herring|whitefish +(noun)|lake herring|Coregonus artedi|whitefish +cislunar|1 +(adj)|sublunar|sublunary|satellite +cismontane|1 +(adj)|cismontane |cisalpine|ultramontane +cissy|1 +(adj)|effeminate|emasculate|epicene|sissified|sissyish|sissy|unmanly |unmanful|unmanlike +cistaceae|1 +(noun)|Cistaceae|family Cistaceae|rockrose family|dilleniid dicot family +cistercian|1 +(noun)|Trappist|Cistercian|monk|monastic +cistern|3 +(noun)|cisterna|sac +(noun)|water tank|tank|storage tank +(noun)|reservoir|pool +cisterna|1 +(noun)|cistern|sac +cistothorus|1 +(noun)|Cistothorus|genus Cistothorus|bird genus +cistothorus palustris|1 +(noun)|long-billed marsh wren|Cistothorus palustris|marsh wren +cistothorus platensis|1 +(noun)|sedge wren|short-billed marsh wren|Cistothorus platensis|marsh wren +cistron|1 +(noun)|gene|factor|sequence +cistus|1 +(noun)|Cistus|genus Cistus|dilleniid dicot genus +cistus albidus|1 +(noun)|white-leaved rockrose|Cistus albidus|rockrose|rock rose +cistus ladanifer|1 +(noun)|common gum cistus|Cistus ladanifer|Cistus ladanum|rockrose|rock rose +cistus ladanum|1 +(noun)|common gum cistus|Cistus ladanifer|Cistus ladanum|rockrose|rock rose +citadel|1 +(noun)|bastion|stronghold|fastness +citation|6 +(noun)|commendation|award|accolade|honor|honour|laurels +(noun)|speech act +(noun)|acknowledgment|credit|reference|mention|quotation|note|annotation|notation +(noun)|quotation|quote|excerpt|extract|selection +(noun)|summons|process +(noun)|Citation|thoroughbred +citation form|1 +(noun)|main entry word|entry word|form|word form|signifier|descriptor +cite|7 +(verb)|mention|advert|bring up|name|refer|think of|have in mind|mean +(verb)|mention|notice|acknowledge +(verb)|reference|write|compose|pen|indite +(verb)|quote|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|quote|mention|advert|bring up|name|refer +(verb)|adduce|abduce|testify|bear witness|prove|evidence|show +(verb)|summon|summons|call|send for +citellus|1 +(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus +citellus citellus|1 +(noun)|suslik|souslik|Citellus citellus|ground squirrel|gopher|spermophile +citellus lateralis|1 +(noun)|mantled ground squirrel|Citellus lateralis|ground squirrel|gopher|spermophile +citellus leucurus|1 +(noun)|antelope squirrel|whitetail antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel|gopher|spermophile +citellus parryi|1 +(noun)|Arctic ground squirrel|parka squirrel|Citellus parryi|ground squirrel|gopher|spermophile +citellus richardsoni|1 +(noun)|flickertail|Richardson ground squirrel|Citellus richardsoni|ground squirrel|gopher|spermophile +citellus variegatus|1 +(noun)|rock squirrel|Citellus variegatus|ground squirrel|gopher|spermophile +citharichthys|1 +(noun)|Citharichthys|genus Citharichthys|fish genus +citharichthys cornutus|1 +(noun)|horned whiff|Citharichthys cornutus|whiff +cither|2 +(noun)|zither|zithern|stringed instrument +(noun)|cittern|cithern|citole|gittern|guitar +cithern|1 +(noun)|cittern|cither|citole|gittern|guitar +citified|1 +(adj)|cityfied|city-bred|city-born|urban +citify|1 +(verb)|adjust|set|correct +citizen|1 +(noun)|national|subject +citizen genet|1 +(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat|diplomatist +citizenry|1 +(noun)|people|group|grouping +citizens committee|1 +(noun)|committee|nongovernmental organization|NGO +citizenship|2 +(noun)|legal status +(noun)|demeanor|demeanour|behavior|behaviour|conduct|deportment +citizenship day|1 +(noun)|Citizenship Day|September 17|day +citlaltepetl|1 +(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano +citole|1 +(noun)|cittern|cithern|cither|gittern|guitar +citrange|2 +(noun)|citrange tree|Citroncirus webberi|citrus|citrus tree +(noun)|citrus|citrus fruit|citrous fruit +citrange tree|1 +(noun)|citrange|Citroncirus webberi|citrus|citrus tree +citrate|1 +(verb)|change state|turn +citric|1 +(adj)|acid +citric acid|1 +(noun)|acid +citric acid cycle|1 +(noun)|Krebs cycle|Krebs citric acid cycle|tricarboxylic acid cycle|organic process|biological process +citrin|1 +(noun)|vitamin P|bioflavinoid|water-soluble vitamin +citrine|1 +(noun)|quartz|transparent gem +citron|2 +(noun)|citrus|citrus fruit|citrous fruit +(noun)|citron tree|Citrus medica|citrus|citrus tree +citron tree|1 +(noun)|citron|Citrus medica|citrus|citrus tree +citroncirus|1 +(noun)|Citroncirus|genus Citroncirus|rosid dicot genus +citroncirus webberi|1 +(noun)|citrange|citrange tree|Citroncirus webberi|citrus|citrus tree +citronwood|2 +(noun)|wood +(noun)|sandarac|wood +citrophilous mealybug|1 +(noun)|citrophilus mealybug|Pseudococcus fragilis|mealybug|mealy bug +citrophilus mealybug|1 +(noun)|citrophilous mealybug|Pseudococcus fragilis|mealybug|mealy bug +citrous|2 +(adj)|fruit tree +(adj)|edible fruit +citrous fruit|1 +(noun)|citrus|citrus fruit|edible fruit +citrulline|1 +(noun)|amino acid|aminoalkanoic acid +citrullus|1 +(noun)|Citrullus|genus Citrullus|dicot genus|magnoliopsid genus +citrullus vulgaris|1 +(noun)|watermelon|watermelon vine|Citrullus vulgaris|melon|melon vine +citrus|2 +(noun)|citrus fruit|citrous fruit|edible fruit +(noun)|citrus tree|fruit tree +citrus aurantifolia|1 +(noun)|lime|lime tree|Citrus aurantifolia|citrus|citrus tree +citrus aurantium|1 +(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange|orange tree +citrus bergamia|1 +(noun)|bergamot|bergamot orange|Citrus bergamia|orange|orange tree +citrus decumana|1 +(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +citrus fruit|1 +(noun)|citrus|citrous fruit|edible fruit +citrus grandis|1 +(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +citrus limetta|1 +(noun)|sweet lemon|sweet lime|Citrus limetta|lemon|lemon tree|Citrus limon|genus Citrus +citrus limon|1 +(noun)|lemon|lemon tree|Citrus limon|citrus|citrus tree +citrus limonia|1 +(noun)|rangpur|rangpur lime|lemanderin|Citrus limonia|citrus|citrus tree +citrus maxima|1 +(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +citrus mealybug|1 +(noun)|Planococcus citri|mealybug|mealy bug +citrus medica|1 +(noun)|citron|citron tree|Citrus medica|citrus|citrus tree +citrus nobilis|1 +(noun)|temple orange|temple orange tree|tangor|king orange|Citrus nobilis|orange|orange tree +citrus paradisi|1 +(noun)|grapefruit|Citrus paradisi|citrus|citrus tree +citrus reticulata|1 +(noun)|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata|citrus|citrus tree +citrus sinensis|1 +(noun)|sweet orange|sweet orange tree|Citrus sinensis|orange|orange tree +citrus tangelo|1 +(noun)|tangelo|tangelo tree|ugli fruit|Citrus tangelo|citrus|citrus tree +citrus tree|1 +(noun)|citrus|fruit tree +citrus whitefly|1 +(noun)|Dialeurodes citri|whitefly +citta del vaticano|1 +(noun)|Vatican City|Citta del Vaticano|city|metropolis|urban center +cittern|1 +(noun)|cithern|cither|citole|gittern|guitar +city|3 +(noun)|metropolis|urban center|municipality +(noun)|administrative district|administrative division|territorial division +(noun)|metropolis|municipality +city-born|1 +(adj)|citified|cityfied|city-bred|urban +city-bred|1 +(adj)|citified|cityfied|city-born|urban +city block|1 +(noun)|block|area|country +city boy|1 +(noun)|city slicker|slicker +city center|1 +(noun)|city centre|central city|center|centre|middle|heart|eye +city centre|1 +(noun)|city center|central city|center|centre|middle|heart|eye +city council|1 +(noun)|council +city desk|1 +(noun)|city room|editorial department +city district|1 +(noun)|district|territory|territorial dominion|dominion +city editor|1 +(noun)|newspaper editor +city father|1 +(noun)|official|functionary +city hall|1 +(noun)|hall +city limit|1 +(noun)|city limits|limit|demarcation|demarcation line +city limits|2 +(noun)|city limit|limit|demarcation|demarcation line +(noun)|city limit|limit|demarcation|demarcation line +city line|1 +(noun)|boundary|bound|bounds +city man|1 +(noun)|financier|moneyman +city manager|1 +(noun)|mayor|civil authority|politician +city of bridges|1 +(noun)|Bruges|City of Bridges|city|metropolis|urban center +city of brotherly love|1 +(noun)|Philadelphia|City of Brotherly Love|city|metropolis|urban center +city of god|1 +(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven +city of light|1 +(noun)|Paris|City of Light|French capital|capital of France|national capital +city of london|1 +(noun)|City of London|the City|center|centre|middle|heart|eye +city of the angels|1 +(noun)|Los Angeles|City of the Angels|city|metropolis|urban center|port of entry|point of entry +city of westminster|1 +(noun)|Westminster|City of Westminster|borough +city planning|1 +(noun)|town planning|urban planning|planning +city room|1 +(noun)|city desk|editorial department +city slicker|1 +(noun)|city boy|slicker +city state|1 +(noun)|state|nation|country|land|commonwealth|res publica|body politic +city university|1 +(noun)|university +cityfied|1 +(adj)|citified|city-bred|city-born|urban +cityscape|2 +(noun)|point of view|viewpoint|stand|standpoint +(noun)|painting|picture +citywide|1 +(adj)|wide |broad +ciudad de mexico|1 +(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital +ciudad juarez|1 +(noun)|Ciudad Juarez|Juarez|city|metropolis|urban center +ciudad trujillo|1 +(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital +ciudad victoria|1 +(noun)|Ciudad Victoria|city|metropolis|urban center +cive|1 +(noun)|chives|chive|schnittlaugh|Allium schoenoprasum|alliaceous plant +civet|1 +(noun)|civet cat|viverrine|viverrine mammal +civet bean|1 +(noun)|sieva bean|butter bean|butterbean|shell bean +civet cat|2 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|miner's cat|Bassariscus astutus|procyonid +(noun)|civet|viverrine|viverrine mammal +civic|2 +(adj)|administrative district|administrative division|territorial division +(adj)|civil|national|subject +civic center|2 +(noun)|community center|center|centre +(noun)|municipal center|down town|hub +civic duty|1 +(noun)|civic responsibility|duty|responsibility|obligation +civic leader|1 +(noun)|civil leader|leader +civic pride|1 +(noun)|civic spirit|pride +civic responsibility|1 +(noun)|civic duty|duty|responsibility|obligation +civic spirit|1 +(noun)|civic pride|pride +civics|1 +(noun)|social science +civies|1 +(noun)|civvies|civilian clothing|civilian dress|civilian garb|plain clothes +civil|6 +(adj)|civilian +(adj)|civil |polite +(adj)|political unit +(adj)|civic|national|subject +(adj)|civil +(adj)|civilized |civilised +civil-libertarian|1 +(adj)|liberal +civil action|1 +(noun)|legal action|action|action at law +civil authority|1 +(noun)|authority +civil censorship|1 +(noun)|military censorship +civil contempt|1 +(noun)|contempt of court +civil day|1 +(noun)|calendar day|time period|period of time|period +civil death|2 +(noun)|legal status +(noun)|attainder|cancellation +civil defense|1 +(noun)|protection +civil disobedience|1 +(noun)|direct action +civil engineer|1 +(noun)|engineer|applied scientist|technologist +civil engineering|1 +(noun)|engineering|engineering science|applied science|technology +civil law|2 +(noun)|law|jurisprudence +(noun)|Roman law|Justinian code|jus civile|legal code +civil leader|1 +(noun)|civic leader|leader +civil liberty|2 +(noun)|political liberty|freedom +(noun)|civil right|civil rights +civil list|1 +(noun)|Civil List|budget +civil marriage|1 +(noun)|marriage|wedding|marriage ceremony +civil order|1 +(noun)|polity|order +civil right|1 +(noun)|civil rights|human right +civil rights|2 +(noun)|civil right|human right +(noun)|civil right|human right +civil rights activist|1 +(noun)|civil rights leader|civil rights worker|reformer|reformist|crusader|meliorist +civil rights leader|1 +(noun)|civil rights worker|civil rights activist|reformer|reformist|crusader|meliorist +civil rights movement|1 +(noun)|Civil Rights movement|movement|social movement|front +civil rights worker|1 +(noun)|civil rights leader|civil rights activist|reformer|reformist|crusader|meliorist +civil servant|1 +(noun)|official|functionary +civil service|1 +(noun)|government officials|officialdom +civil suit|1 +(noun)|lawsuit|suit|case|cause|causa +civil time|1 +(noun)|standard time|local time|time +civil union|1 +(noun)|marital status +civil war|1 +(noun)|war|warfare +civil wrong|1 +(noun)|tort|wrongdoing|wrongful conduct|misconduct|actus reus +civil year|1 +(noun)|calendar year|year|twelvemonth|yr +civilian|2 +(adj)|civilian |civil|noncombatant +(noun)|citizen +civilian clothing|1 +(noun)|civilian dress|civilian garb|plain clothes|clothing|article of clothing|vesture|wear +civilian dress|1 +(noun)|civilian clothing|civilian garb|plain clothes|clothing|article of clothing|vesture|wear +civilian garb|1 +(noun)|civilian clothing|civilian dress|plain clothes|clothing|article of clothing|vesture|wear +civilisation|4 +(noun)|civilization|social process +(noun)|culture|civilization|society +(noun)|civilization|society +(noun)|refinement|civilization|excellence +civilise|2 +(verb)|educate|school|train|cultivate|civilize|polish|refine|fine-tune|down +(verb)|civilize|change|alter|modify +civilised|2 +(adj)|civilized |civil|humane|advanced|educated|humane|industrial|refined +(adj)|civilized|cultivated|cultured|genteel|polite|refined +civility|2 +(noun)|courtesy|good manners +(noun)|politeness|formality +civilization|4 +(noun)|civilisation|society +(noun)|civilisation|social process +(noun)|culture|civilisation|society +(noun)|refinement|civilisation|excellence +civilize|2 +(verb)|educate|school|train|cultivate|civilise|polish|refine|fine-tune|down +(verb)|civilise|change|alter|modify +civilized|2 +(adj)|civilized |civilised|civil|humane|advanced|educated|humane|industrial|refined +(adj)|civilised|cultivated|cultured|genteel|polite|refined +civvies|1 +(noun)|civies|civilian clothing|civilian dress|civilian garb|plain clothes +cjd|1 +(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder|encephalopathy|brain disease +cl|3 +(adj)|one hundred fifty|150|cardinal +(noun)|chlorine|Cl|atomic number 17|chemical element|element|gas|halogen +(noun)|centiliter|centilitre|metric capacity unit +clabber|2 +(noun)|dairy product +(verb)|curdle|clot|change state|turn +clack|5 +(noun)|clap|noise +(noun)|clack valve|clapper valve|valve +(verb)|clatter|brattle|make noise|resound|noise +(verb)|cluck|click|utter|emit|let out|let loose +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +clack valve|1 +(noun)|clack|clapper valve|valve +clad|2 +(adj)|clothed |adorned|bedecked|decked|decked out|appareled|attired|dressed|garbed|garmented|habilimented|robed|arrayed|panoplied|black|breeched|pantalooned|trousered|bundled-up|caparisoned|cassocked|coated|costumed|dighted|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|gowned|habited|heavy-coated|overdressed|petticoated|red-coated|lobster-backed|suited|surpliced|togged|turned out|tuxedoed|underdressed|uniformed|vestmented|white|cowled|adorned|decorated +(adj)|sheathed +cladding|1 +(noun)|facing|protective covering|protective cover|protection +clade|1 +(noun)|biological group +cladisitic analysis|1 +(noun)|cladistics|taxonomy +cladistics|1 +(noun)|cladisitic analysis|taxonomy +cladode|1 +(noun)|cladophyll|phylloclad|phylloclade|stalk|stem +cladogram|1 +(noun)|tree|tree diagram +cladonia|1 +(noun)|Cladonia|genus Cladonia|fungus genus +cladonia rangiferina|1 +(noun)|reindeer moss|reindeer lichen|arctic moss|Cladonia rangiferina|lichen +cladoniaceae|1 +(noun)|Cladoniaceae|family Cladoniaceae|fungus family +cladophyll|1 +(noun)|cladode|phylloclad|phylloclade|stalk|stem +cladorhyncus|1 +(noun)|Cladorhyncus|genus Cladorhyncus|bird genus +cladorhyncus leucocephalum|1 +(noun)|banded stilt|Cladorhyncus leucocephalum|stilt|Australian stilt +cladrastis|1 +(noun)|Cladrastis|genus Cladrastis|rosid dicot genus +cladrastis kentukea|1 +(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood +cladrastis lutea|1 +(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood +claes oldenberg|1 +(noun)|Oldenberg|Claes Oldenberg|sculptor|sculpturer|carver|statue maker +claforan|1 +(noun)|cefotaxime|Claforan|cephalosporin|Mefoxin +claim|11 +(noun)|assertion|averment|asseveration +(noun)|assertion|averment|asseveration +(noun)|demand +(noun)|title|right +(noun)|title|legal right +(noun)|call|demand +(verb)|affirm +(verb)|lay claim|arrogate|request|bespeak|call for|quest +(verb)|request|bespeak|call for|quest +(verb)|take|affirm|verify|assert|avow|aver|swan|swear +(verb)|take|exact|necessitate|ask|postulate|need|require|take|involve|call for|demand +claim agent|1 +(noun)|adjuster|adjustor|claims adjuster|claims adjustor|investigator +claim form|1 +(noun)|form +claim jumper|1 +(noun)|usurper|supplanter +claimant|1 +(noun)|applicant|applier +claiming race|1 +(noun)|horse race +claims adjuster|1 +(noun)|adjuster|adjustor|claims adjustor|claim agent|investigator +claims adjustor|1 +(noun)|adjuster|adjustor|claims adjuster|claim agent|investigator +clairvoyance|1 +(noun)|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena|psychic phenomenon|parapsychology +clairvoyant|3 +(adj)|extrasensory |paranormal +(adj)|precognitive|second-sighted|prophetic |prophetical +(noun)|psychic +clam|4 +(noun)|bivalve|pelecypod|lamellibranch +(noun)|dollar|dollar bill|one dollar bill|buck|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +(noun)|shellfish +(verb)|gather|garner|collect|pull together +clam chowder|1 +(noun)|chowder +clam dip|1 +(noun)|dip +clam up|1 +(verb)|close up|dummy up|shut up|belt up|button up|be quiet|keep mum +clamant|2 +(adj)|blatant|clamorous|strident|vociferous|noisy +(adj)|crying|exigent|insistent|instant|imperative +clamatores|1 +(noun)|Clamatores|suborder Clamatores|animal order +clamatorial|1 +(adj)|animal order +clambake|1 +(noun)|cookout +clamber|2 +(noun)|climb|mount +(verb)|scramble|shin|shinny|skin|struggle|sputter|climb +clamminess|1 +(noun)|dankness|damp|dampness|moistness +clammy|1 +(adj)|dank|wet +clammy chickweed|1 +(noun)|mouse-ear chickweed|mouse eared chickweed|mouse ear|chickweed|herb|herbaceous plant +clammy locust|1 +(noun)|Robinia viscosa|locust tree|locust +clammyweed|1 +(noun)|Polanisia graveolens|Polanisia dodecandra|herb|herbaceous plant +clamor|5 +(noun)|blare|blaring|cacophony|din|noise +(noun)|clamoring|clamour|clamouring|hue and cry|cry|outcry|call|yell|shout|vociferation +(verb)|clamour|demand +(verb)|clamour|express|verbalize|verbalise|utter|give tongue to +(verb)|compel|oblige|obligate +clamoring|1 +(noun)|clamor|clamour|clamouring|hue and cry|cry|outcry|call|yell|shout|vociferation +clamorous|1 +(adj)|blatant|clamant|strident|vociferous|noisy +clamorously|1 +(adv)|obstreperously|loudly +clamour|3 +(noun)|clamor|clamoring|clamouring|hue and cry|cry|outcry|call|yell|shout|vociferation +(verb)|clamor|express|verbalize|verbalise|utter|give tongue to +(verb)|clamor|demand +clamouring|1 +(noun)|clamor|clamoring|clamour|hue and cry|cry|outcry|call|yell|shout|vociferation +clamp|3 +(noun)|holding device +(verb)|fasten|fix|secure +(verb)|inflict|bring down|visit|impose +clamp down|1 +(verb)|crack down|restrict|restrain|trammel|limit|bound|confine|throttle +clampdown|1 +(noun)|limitation|restriction +clams|4 +(noun)|boodle|bread|cabbage|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|clam|bivalve|pelecypod|lamellibranch +(noun)|dollar|dollar bill|one dollar bill|buck|clam|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +(noun)|clam|shellfish +clamshell|2 +(noun)|shell +(noun)|grapple|dredging bucket +clan|1 +(noun)|kin|kin group|kinship group|kindred|tribe|social group +clan member|1 +(noun)|clansman|clanswoman|member +clandestine|1 +(adj)|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|undercover|underground|covert +clandestine operation|1 +(noun)|intelligence|intelligence activity|intelligence operation +clang|2 +(noun)|clangor|clangour|clangoring|clank|clash|crash|noise +(verb)|clangor|sound|go +clanger|1 +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +clanging|1 +(adj)|clangorous|noisy +clangor|3 +(noun)|clang|clangour|clangoring|clank|clash|crash|noise +(verb)|clangour|sound|go +(verb)|clang|sound|go +clangoring|1 +(noun)|clang|clangor|clangour|clank|clash|crash|noise +clangorous|1 +(adj)|clanging|noisy +clangour|2 +(noun)|clang|clangor|clangoring|clank|clash|crash|noise +(verb)|clangor|sound|go +clangula|1 +(noun)|Clangula|genus Clangula|bird genus +clangula hyemalis|1 +(noun)|old squaw|oldwife|Clangula hyemalis|sea duck +clank|2 +(noun)|clang|clangor|clangour|clangoring|clash|crash|noise +(verb)|sound|go +clanking|1 +(adj)|noisy +clannish|2 +(adj)|joint +(adj)|cliquish|clubby|snobbish|snobby|private +clannishly|1 +(adv)|cliquishly +clannishness|1 +(noun)|cliquishness|exclusiveness|snobbery|snobbishness +clansman|1 +(noun)|clanswoman|clan member|member +clanswoman|1 +(noun)|clansman|clan member|member +clap|10 +(noun)|bang|eruption|blast|loud noise|noise +(noun)|gonorrhea|gonorrhoea|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +(noun)|clack|noise +(verb)|put|set|place|pose|position|lay +(verb)|beat|flap +(verb)|applaud|spat|acclaim|gesticulate|gesture|motion +(verb)|spat|gesticulate|gesture|motion +(verb)|beat|flap +(verb)|hit +(verb)|hit +clap on|1 +(verb)|slap on|slam on|put on|apply +clap together|1 +(verb)|clap up|slap together|produce|make|create +clap up|1 +(verb)|clap together|slap together|produce|make|create +clapboard|2 +(noun)|weatherboard|weatherboarding|siding +(verb)|cover +clapped out|1 +(adj)|worn +clapper|3 +(noun)|applauder|laudator|lauder|extoller +(noun)|tongue|lingua|glossa|organ|articulator +(noun)|tongue|striker +clapper valve|1 +(noun)|clack valve|clack|valve +clapperboard|1 +(noun)|photographic equipment +clapperclaw|2 +(verb)|claw +(verb)|abuse|blackguard|shout|attack|round|assail|lash out|snipe|assault +clappers|4 +(noun)|bones|castanets|finger cymbals|maraca|percussion instrument|percussive instrument +(noun)|clapper|applauder|laudator|lauder|extoller +(noun)|tongue|lingua|glossa|clapper|organ|articulator +(noun)|clapper|tongue|striker +clapping|1 +(noun)|applause|hand clapping|approval|commendation +claptrap|1 +(noun)|bombast|fustian|rant|blah|grandiosity|magniloquence|grandiloquence|rhetoric +claque|1 +(noun)|following|followers +clara josephine schumann|1 +(noun)|Schumann|Clara Josephine Schumann|pianist|piano player|composer +clare booth luce|1 +(noun)|Luce|Clare Booth Luce|dramatist|playwright +clarence|1 +(noun)|carriage|equipage|rig +clarence darrow|1 +(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer|attorney +clarence day|1 +(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer|author +clarence malcolm lowry|1 +(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer|author +clarence seward darrow|1 +(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer|attorney +clarence shepard day jr.|1 +(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer|author +claret|3 +(noun)|dark red +(noun)|red Bordeaux|Bordeaux|Bordeaux wine|red wine +(verb)|drink|booze|fuddle +claret cup|1 +(noun)|cup +clarification|2 +(noun)|elucidation|illumination|interpretation +(noun)|clearing|improvement +clarified|1 +(adj)|processed +clarified butter|1 +(noun)|drawn butter|butter +clarify|2 +(verb)|clear up|elucidate|explain|explicate +(verb)|change|alter|modify +clarifying|1 +(adj)|elucidative|instructive |informative +clarinet|1 +(noun)|single-reed instrument|single-reed woodwind +clarinet section|1 +(noun)|reed section +clarinetist|1 +(noun)|clarinettist|musician|instrumentalist|player +clarinettist|1 +(noun)|clarinetist|musician|instrumentalist|player +clarion|4 +(adj)|loud +(noun)|brass +(verb)|play +(verb)|proclaim|exclaim|promulgate +clarity|2 +(noun)|lucidity|pellucidity|clearness|limpidity|comprehensibility|understandability +(noun)|clearness|uncloudedness|quality +clark|4 +(noun)|Clark|William Clark|explorer|adventurer +(noun)|Clark|Mark Clark|Mark Wayne Clark|general|full general +(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist +(noun)|Clark|Joe Clark|Charles Joseph Clark|politician|politico|pol|political leader +clark's nutcracker|1 +(noun)|Clark's nutcracker|Nucifraga columbiana|nutcracker +clark cell|1 +(noun)|Clark cell|Clark standard cell|standard cell +clark gable|1 +(noun)|Gable|Clark Gable|William Clark Gable|actor|histrion|player|thespian|role player +clark standard cell|1 +(noun)|Clark cell|Clark standard cell|standard cell +clarksburg|1 +(noun)|Clarksburg|city|metropolis|urban center +claro|1 +(noun)|cigar +clary|1 +(noun)|Salvia sclarea|sage|salvia +clary sage|2 +(noun)|Salvia clarea|sage|salvia +(noun)|sage +clash|7 +(noun)|clang|clangor|clangour|clangoring|clank|crash|noise +(noun)|friction|conflict +(noun)|conflict +(noun)|brush|encounter|skirmish|fight|fighting|combat|scrap +(verb)|collide|hit|strike|impinge on|run into|collide with +(verb)|jar|collide|conflict +(verb)|disagree|differ|dissent|take issue +clashing|1 +(adj)|incompatible +clasp|6 +(noun)|fastener|fastening|holdfast|fixing +(noun)|clench|clutch|clutches|grasp|grip|hold|grasping|taking hold|seizing|prehension +(verb)|grasp|hold on +(verb)|brooch|fasten|fix|secure +(verb)|buckle|fasten|fix|secure +(verb)|seize|prehend|clutch +clasp knife|1 +(noun)|jackknife|pocketknife|pocket knife +class|9 +(noun)|social class|socio-economic class|people +(noun)|form|grade|gathering|assemblage +(noun)|course|course of study|course of instruction|education|instruction|teaching|pedagogy|educational activity +(noun)|category|family|collection|aggregation|accumulation|assemblage +(noun)|year|gathering|assemblage +(noun)|division|league|conference +(noun)|elegance +(noun)|taxonomic group|taxonomic category|taxon +(verb)|classify|sort|assort|sort out|separate|categorize|categorise +class-action suit|1 +(noun)|class action|lawsuit|suit|case|cause|causa +class-conscious|1 +(adj)|stratified|hierarchical |hierarchal|hierarchic +class acrasiomycetes|1 +(noun)|Acrasiomycetes|class Acrasiomycetes|class +class act|1 +(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch +class actinozoa|1 +(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class +class action|1 +(noun)|class-action suit|lawsuit|suit|case|cause|causa +class amphibia|1 +(noun)|Amphibia|class Amphibia|class +class angiospermae|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +class anthoceropsida|1 +(noun)|Anthoceropsida|class Anthoceropsida|class +class anthozoa|1 +(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class +class aphasmidia|1 +(noun)|Aphasmidia|class Aphasmidia|class +class arachnida|1 +(noun)|Arachnida|class Arachnida|class +class archiannelida|1 +(noun)|Archiannelida|class Archiannelida|class +class ascidiaceae|1 +(noun)|Ascidiaceae|class Ascidiaceae|class +class ascomycetes|1 +(noun)|Ascomycetes|class Ascomycetes|class +class asteroidea|1 +(noun)|Asteroidea|class Asteroidea|class +class aves|1 +(noun)|Aves|class Aves|class +class bacillariophyceae|1 +(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class +class basidiomycetes|1 +(noun)|Basidiomycetes|class Basidiomycetes|class +class bivalvia|1 +(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class +class bryopsida|1 +(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class +class cephalopoda|1 +(noun)|Cephalopoda|class Cephalopoda|class +class cestoda|1 +(noun)|Cestoda|class Cestoda|class +class channidae|1 +(noun)|Channidae|class Channidae|class +class charophyceae|1 +(noun)|Charophyceae|class Charophyceae|class +class chilopoda|1 +(noun)|Chilopoda|class Chilopoda|class +class chlorophyceae|1 +(noun)|Chlorophyceae|class Chlorophyceae|class +class chondrichthyes|1 +(noun)|Chondrichthyes|class Chondrichthyes|class +class chrysophyceae|1 +(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class +class chytridiomycetes|1 +(noun)|Chytridiomycetes|class Chytridiomycetes|class +class ciliata|1 +(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class +class ciliophora|1 +(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class +class coniferopsida|1 +(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class +class crinoidea|1 +(noun)|Crinoidea|class Crinoidea|class +class crustacea|1 +(noun)|Crustacea|class Crustacea|class +class cryptophyceae|1 +(noun)|Cryptophyceae|class Cryptophyceae|class +class cyanobacteria|1 +(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class +class cyanophyceae|1 +(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class +class cycadopsida|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +class cyclosporeae|1 +(noun)|Cyclosporeae|class Cyclosporeae|class +class deuteromycetes|1 +(noun)|Deuteromycetes|class Deuteromycetes|class +class diatomophyceae|1 +(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class +class dicotyledonae|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +class dicotyledones|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +class diplopoda|1 +(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class|category|family +class echinoidea|1 +(noun)|Echinoidea|class Echinoidea|class +class equisetatae|1 +(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class +class euglenophyceae|1 +(noun)|Euglenophyceae|class Euglenophyceae|class +class eumycetes|1 +(noun)|Eumycetes|class Eumycetes|class +class feeling|1 +(noun)|hostility|enmity|ill will +class fellow|1 +(noun)|schoolmate|classmate|schoolfellow|acquaintance|friend +class filicinae|1 +(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class +class filicopsida|1 +(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class +class flagellata|1 +(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class +class gasteromycetes|1 +(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class +class gasteropoda|1 +(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class +class gastromycetes|1 +(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class +class gastropoda|1 +(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class +class ginkgopsida|1 +(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|subdivision Ginkgophytina|Ginkgophyta|class +class gnetopsida|1 +(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class +class gymnospermae|1 +(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class +class hemiascomycetes|1 +(noun)|Hemiascomycetes|class Hemiascomycetes|class +class hepaticae|1 +(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class +class hepaticopsida|1 +(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class +class heterokontae|1 +(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class +class hexapoda|1 +(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class +class hirudinea|1 +(noun)|Hirudinea|class Hirudinea|class +class holothuroidea|1 +(noun)|Holothuroidea|class Holothuroidea|class +class hyalospongiae|1 +(noun)|Hyalospongiae|class Hyalospongiae|class +class hydrozoa|1 +(noun)|Hydrozoa|class Hydrozoa|class +class hymenomycetes|1 +(noun)|Hymenomycetes|class Hymenomycetes|class +class insecta|1 +(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class +class lamellibranchia|1 +(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class +class larvacea|1 +(noun)|Larvacea|class Larvacea|class|category|family +class liliopsida|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +class list|1 +(noun)|honours list|list|listing +class lycopodiate|1 +(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class +class lycopodineae|1 +(noun)|Lycopodineae|class Lycopodineae|class +class lycopsida|1 +(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class +class magnoliopsida|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +class mammalia|1 +(noun)|Mammalia|class Mammalia|class +class mastigophora|1 +(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class +class merostomata|1 +(noun)|Merostomata|class Merostomata|arthropod +class monocotyledonae|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +class monocotyledones|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +class musci|1 +(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class +class myriapoda|1 +(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class|category|family +class myxomycetes|1 +(noun)|Myxomycetes|class Myxomycetes|class +class nuda|1 +(noun)|Nuda|class Nuda|class +class oligochaeta|1 +(noun)|Oligochaeta|class Oligochaeta|class +class onychophora|1 +(noun)|Onychophora|class Onychophora|class +class oomycetes|1 +(noun)|Oomycetes|class Oomycetes|class +class ophiuroidea|1 +(noun)|Ophiuroidea|class Ophiuroidea|class +class osteichthyes|1 +(noun)|Osteichthyes|class Osteichthyes|class +class pauropoda|1 +(noun)|Pauropoda|class Pauropoda|class +class pelecypoda|1 +(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class +class period|1 +(noun)|course session|recitation|session +class phaeophyceae|1 +(noun)|Phaeophyceae|class Phaeophyceae|class +class phasmidia|1 +(noun)|Phasmidia|class Phasmidia|class +class pinopsida|1 +(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class +class placodermi|1 +(noun)|Placodermi|class Placodermi|class +class plectomycetes|1 +(noun)|Plectomycetes|class Plectomycetes|class +class polychaeta|1 +(noun)|Polychaeta|class Polychaeta|class +class polyplacophora|1 +(noun)|Polyplacophora|class Polyplacophora|class +class psilopsida|1 +(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class +class psilotatae|1 +(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class +class pteridospermopsida|1 +(noun)|Pteridospermopsida|class Pteridospermopsida|class +class pyrenomycetes|1 +(noun)|Pyrenomycetes|class Pyrenomycetes|class +class reptilia|1 +(noun)|Reptilia|class Reptilia|class +class rhodophyceae|1 +(noun)|Rhodophyceae|class Rhodophyceae|class +class sarcodina|1 +(noun)|Sarcodina|class Sarcodina|class +class scaphopoda|1 +(noun)|Scaphopoda|class Scaphopoda|class +class schizomycetes|1 +(noun)|Schizomycetes|class Schizomycetes|class +class scyphozoa|1 +(noun)|Scyphozoa|class Scyphozoa|class +class sphenopsida|1 +(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class +class sporozoa|1 +(noun)|Sporozoa|class Sporozoa|class +class structure|1 +(noun)|social organization|social organisation|social structure|social system|structure +class struggle|1 +(noun)|class war|class warfare|conflict|struggle|battle +class symphyla|1 +(noun)|Symphyla|class Symphyla|class +class tardigrada|1 +(noun)|Tardigrada|class Tardigrada|class +class taxopsida|1 +(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class +class tentaculata|1 +(noun)|Tentaculata|class Tentaculata|class +class thaliacea|1 +(noun)|Thaliacea|class Thaliacea|class +class tiliomycetes|1 +(noun)|Tiliomycetes|class Tiliomycetes|class +class trematoda|1 +(noun)|Trematoda|class Trematoda|class +class turbellaria|1 +(noun)|Turbellaria|class Turbellaria|class +class ulvophyceae|1 +(noun)|Ulvophyceae|class Ulvophyceae|class +class war|1 +(noun)|class struggle|class warfare|conflict|struggle|battle +class warfare|1 +(noun)|class struggle|class war|conflict|struggle|battle +class xanthophyceae|1 +(noun)|Xanthophyceae|class Xanthophyceae|class +class zygomycetes|1 +(noun)|Zygomycetes|class Zygomycetes|class +classic|4 +(adj)|classical +(adj)|standard +(noun)|creation +(noun)|artist|creative person +classic hemochromatosis|1 +(noun)|idiopathic hemochromatosis|hemochromatosis|iron-storage disease|iron overload|bronzed diabetes +classical|2 +(adj)|classical |classic|Greco-Roman|Graeco-Roman|Hellenic|neoclassic|neoclassical +(adj)|authoritative|definitive|standard +classical architecture|1 +(noun)|Greco-Roman architecture|architectural style|style of architecture|type of architecture +classical ballet|1 +(noun)|ballet|concert dance +classical conditioning|1 +(noun)|conditioning +classical greek|1 +(noun)|Attic|Classical Greek|Ancient Greek +classical haemophilia|1 +(noun)|hemophilia A|haemophilia A|classical hemophilia|hemophilia|haemophilia|bleeder's disease +classical hemophilia|1 +(noun)|hemophilia A|haemophilia A|classical haemophilia|hemophilia|haemophilia|bleeder's disease +classical latin|1 +(noun)|classical Latin|Latin +classical mechanics|1 +(noun)|Newtonian mechanics|mechanics +classical music|1 +(noun)|serious music|music genre|musical genre|genre|musical style +classical mythology|1 +(noun)|mythology +classical scholar|1 +(noun)|classicist|humanist +classical style|1 +(noun)|artistic style|idiom +classicise|1 +(verb)|classicize|change|alter|modify +classicism|1 +(noun)|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +classicist|2 +(noun)|artist|creative person +(noun)|classical scholar|humanist +classicistic|1 +(adj)|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +classicize|1 +(verb)|classicise|change|alter|modify +classics|3 +(noun)|literary study +(noun)|classic|creation +(noun)|classic|artist|creative person +classifiable|1 +(adj)|distinctive|identifiable +classification|4 +(noun)|categorization|categorisation|compartmentalization|compartmentalisation|assortment|grouping +(noun)|categorization|categorisation|arrangement +(noun)|categorization|categorisation|sorting|basic cognitive process +(noun)|restriction +classification system|1 +(noun)|arrangement|organization|organisation|system +classificatory|1 +(adj)|grouping +classified|2 +(adj)|classified |categorized|categorised|grouped|sorted +(adj)|classified |eyes-only|confidential|restricted|secret|sensitive|top-secret +classified ad|1 +(noun)|classified advertisement|newspaper ad|newspaper advertisement +classified advertisement|1 +(noun)|classified ad|newspaper ad|newspaper advertisement +classified stock|1 +(noun)|common stock|common shares|ordinary shares +classifier|2 +(noun)|thinker +(noun)|word|morpheme +classify|3 +(verb)|class|sort|assort|sort out|separate|categorize|categorise +(verb)|restrict +(verb)|relegate|assign|attribute +classifying adjective|1 +(noun)|relational adjective|adjective +classless|1 +(adj)|egalitarian|democratic +classmate|1 +(noun)|schoolmate|schoolfellow|class fellow|acquaintance|friend +classroom|1 +(noun)|schoolroom|room +classroom project|1 +(noun)|school assignment|schoolwork +classy|1 +(adj)|posh|swish|stylish |fashionable +clast|1 +(noun)|fragment +clastic|2 +(adj)|disintegrative +(adj)|detachable +clastic rock|1 +(noun)|rock|stone +clathraceae|1 +(noun)|Clathraceae|family Clathraceae|fungus family +clathrate|2 +(adj)|cancellate|cancellated|reticulate |reticulated|reticular +(adj)|enclosed +clathrus|1 +(noun)|Clathrus|genus Clathrus|fungus genus +clatonia lanceolata|1 +(noun)|spring beauty|Clatonia lanceolata|flower +clatter|2 +(noun)|noise +(verb)|clack|brattle|make noise|resound|noise +clattering|1 +(adj)|clattery|noisy +clattery|1 +(adj)|clattering|noisy +claude achille debussy|1 +(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer +claude bernard|1 +(noun)|Bernard|Claude Bernard|physiologist +claude debussey|1 +(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer +claude e. shannon|1 +(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer|applied scientist|technologist +claude elwood shannon|1 +(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer|applied scientist|technologist +claude levi-strauss|1 +(noun)|Levi-Strauss|Claude Levi-Strauss|anthropologist +claude monet|1 +(noun)|Monet|Claude Monet|painter +claude shannon|1 +(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer|applied scientist|technologist +claudication|1 +(noun)|lameness|limping|gimp|gimpiness|gameness|disability of walking +claudio monteverdi|1 +(noun)|Monteverdi|Claudio Monteverdi|composer +claudius|1 +(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor|Emperor of Rome +claudius i|1 +(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor|Emperor of Rome +claudius ptolemaeus|1 +(noun)|Ptolemy|Claudius Ptolemaeus|astronomer|uranologist|stargazer +clausal|1 +(adj)|construction|grammatical construction|expression +clause|2 +(noun)|construction|grammatical construction|expression +(noun)|article|section|subdivision +clausewitz|1 +(noun)|Clausewitz|Karl von Clausewitz|general|full general +claustrophobe|1 +(noun)|neurotic|psychoneurotic|mental case +claustrophobia|1 +(noun)|simple phobia +claustrophobic|2 +(adj)|confined +(adj)|afraid +claustrum|1 +(noun)|basal ganglion +clavariaceae|1 +(noun)|Clavariaceae|family Clavariaceae|fungus family +claver|1 +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|visit|converse|discourse +claviceps|1 +(noun)|Claviceps|genus Claviceps|fungus genus +claviceps purpurea|1 +(noun)|ergot|Claviceps purpurea|fungus +clavichord|1 +(noun)|stringed instrument +clavicipitaceae|1 +(noun)|Clavicipitaceae|grainy club mushrooms|ascomycete|ascomycetous fungus +clavicle|1 +(noun)|collarbone|bone|os +clavier|2 +(noun)|piano keyboard|fingerboard|keyboard +(noun)|Klavier|stringed instrument +clavus|1 +(noun)|corn|callosity|callus +claw|8 +(noun)|horny structure|unguis +(noun)|hook|mechanical device +(noun)|chela|nipper|pincer|extremity|appendage|member +(noun)|bird's foot +(verb)|make|work +(verb)|seize|prehend|clutch +(verb)|scratch|scrape|scratch up +(verb)|attack|round|assail|lash out|snipe|assault +claw hammer|2 +(noun)|carpenter's hammer|clawhammer|hammer +(noun)| +claw hatchet|1 +(noun)|hatchet +clawback|1 +(noun)|restitution|return|restoration|regaining +clawed|2 +(adj)|unguiculate |unguiculated +(adj)|taloned|armed +clawfoot|1 +(noun)|pes cavus|deformity|malformation|misshapenness +clawhammer|1 +(noun)|carpenter's hammer|claw hammer|hammer +clawlike|1 +(adj)|unguiculate |unguiculated +claxon|3 +(noun)|klaxon|horn +(verb)|honk|blare|beep|toot|sound|go +(verb)|honk|make noise|resound|noise +clay|5 +(noun)|soil|dirt +(noun)|mud|soil|dirt +(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general|full general +(noun)|Clay|Henry Clay|the Great Compromiser|politician|politico|pol|political leader +(noun)|cadaver|corpse|stiff|remains|body|dead body +clay-colored robin|1 +(noun)|Turdus grayi|thrush +clay pigeon|1 +(noun)|target|butt +clay pipe|1 +(noun)|pipe|tobacco pipe +clay sculpture|1 +(noun)|mold|mould|molding|moulding|modeling|sculpture +clayey|2 +(adj)|argillaceous +(adj)|cloggy|heavy|compact +claymore|2 +(noun)|broadsword +(noun)|claymore mine|land mine|ground-emplaced mine|booby trap +claymore mine|1 +(noun)|claymore|land mine|ground-emplaced mine|booby trap +claystone|1 +(noun)|rock|stone +claytonia|1 +(noun)|Claytonia|genus Claytonia|caryophylloid dicot genus +claytonia caroliniana|1 +(noun)|Carolina spring beauty|Claytonia caroliniana|flower +claytonia virginica|1 +(noun)|Virginia spring beauty|Claytonia virginica|flower +clayware|1 +(noun)|pottery|ceramic ware +clean|31 +(adj)|clean |cleanable|cleaned|cleansed|cleanly|dry-cleaned|fresh|unused|immaculate|speckless|spick-and-span|spic-and-span|spic|spick|spotless|pristine|unsoiled|unspotted|unstained|unsullied|washed|water-washed|scrubbed|antiseptic|tidy +(adj)|clear|unqualified +(adj)|clear|light|unclouded|pure +(adj)|fresh|pure +(adj)|perfect +(adj)|clean |halal|kosher|cosher|pure +(adj)|clean |uncontaminating +(adj)|clean |unobjectionable|antiseptic|decent +(adj)|uninfected|antiseptic +(adj)|clean-living|moral +(adj)|fair|legible +(adj)|blank|white|empty +(adj)|sporting|sportsmanlike|fair |just +(adj)|complete +(adj)|unblemished +(adj)|unarmed +(adj)|neat|adroit +(adj)|unaddicted +(noun)|clean and jerk|weightlifting +(verb)|make clean|change|alter|modify +(verb)|pick|remove|take|take away|withdraw +(verb)|houseclean|clean house|tidy|tidy up|clean up|neaten|straighten|straighten out|square away +(verb)|cleanse|groom|neaten +(verb)|be +(verb)|deprive|strip|divest +(verb)|strip|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +(verb)|scavenge|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +(adv)|plumb|plum +(adv)|fairly|fair +clean-cut|2 +(adj)|trig|trim|tidy +(adj)|clear|clear-cut|distinct +clean-handed|1 +(adj)|innocent |guiltless|absolved|clear|cleared|exculpated|exonerated|vindicated|acquitted|not guilty|blameless|inculpable|irreproachable|unimpeachable|exculpatory|righteous +clean-limbed|1 +(adj)|shapely +clean-living|1 +(adj)|clean|moral +clean-shaven|1 +(adj)|smooth-shaven|well-shaven|shaven |shaved +clean and jerk|1 +(noun)|clean|weightlifting +clean bill of health|1 +(noun)|assurance +clean bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|plutonium bomb +clean house|1 +(verb)|houseclean|clean|tidy|tidy up|clean up|neaten|straighten|straighten out|square away +clean out|3 +(verb)|clear out|empty +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|deprive|strip|divest +clean room|1 +(noun)|white room|room +clean slate|1 +(noun)|fresh start|tabula rasa|opportunity|chance +clean up|4 +(verb)|tidy|tidy up|neaten|straighten|straighten out|square away|order +(verb)|profit|turn a profit +(verb)|settle +(verb)|groom|neaten +cleanable|1 +(adj)|clean +cleaned|1 +(adj)|cleansed|clean +cleaner|3 +(noun)|cleansing agent|cleanser|formulation|preparation +(noun)|dry cleaner|shopkeeper|tradesman|storekeeper|market keeper +(noun)|laborer|manual laborer|labourer|jack +cleaners|4 +(noun)|dry cleaners|shop|store +(noun)|cleansing agent|cleanser|cleaner|formulation|preparation +(noun)|cleaner|dry cleaner|shopkeeper|tradesman|storekeeper|market keeper +(noun)|cleaner|laborer|manual laborer|labourer|jack +cleaning|1 +(noun)|cleansing|cleanup|improvement +cleaning implement|1 +(noun)|implement +cleaning lady|1 +(noun)|charwoman|char|cleaning woman|woman|cleaner +cleaning pad|1 +(noun)|pad|cleaning implement +cleaning woman|1 +(noun)|charwoman|char|cleaning lady|woman|cleaner +cleanliness|2 +(noun)|habit|use|wont +(noun)|trait +cleanly|2 +(adj)|clean +(adv)|flawlessly +cleanness|2 +(noun)|sanitary condition +(noun)|purity|sinlessness|innocence +cleanse|2 +(verb)|clean|groom|neaten +(verb)|rid|free|disembarrass +cleansed|1 +(adj)|cleaned|clean +cleanser|1 +(noun)|cleansing agent|cleaner|formulation|preparation +cleansing|3 +(adj)|ablutionary|purifying +(adj)|purifying|antiseptic +(noun)|cleaning|cleanup|improvement +cleansing agent|1 +(noun)|cleanser|cleaner|formulation|preparation +cleanthes|1 +(noun)|Cleanthes|philosopher +cleanup|3 +(noun)|killing|net income|net|net profit|lucre|profit|profits|earnings +(noun)|cleanup position|cleanup spot|position +(noun)|cleaning|cleansing|improvement +cleanup position|1 +(noun)|cleanup|cleanup spot|position +cleanup spot|1 +(noun)|cleanup|cleanup position|position +clear|45 +(adj)|clear |broad|unsubtle|clear-cut|distinct|trenchant|limpid|lucid|luculent|pellucid|crystal clear|perspicuous|prima facie|unmistakable|vivid|comprehensible|comprehendible|definite|distinct|unambiguous +(adj)|clearheaded |clear-thinking +(adj)|open|unobstructed +(adj)|clear |crystalline|crystal clear|limpid|lucid|pellucid|transparent|hyaline|hyaloid|liquid|limpid|unfrosted|translucent|semitransparent|unclouded +(adj)|free +(adj)|untroubled +(adj)|clean|light|unclouded|pure +(adj)|unmortgaged|unencumbered +(adj)|clean-cut|clear-cut|distinct +(adj)|well-defined +(adj)|clear |bright|shining|shiny|sunshiny|sunny|cloudless|unclouded|fair|serene +(adj)|clean|unqualified +(adj)|perfect +(adj)|net |nett +(adj)|decipherable|readable|legible +(adj)|absolved|cleared|exculpated|exonerated|vindicated|innocent |guiltless|clean-handed +(adj)|percipient|discerning +(adj)|unblemished +(noun)|innocence +(noun)|open|area|country +(verb)|unclutter|change|alter|modify|clear off|clear away +(verb)|make|create +(verb)|clear up|light up|brighten +(verb)|authorize|authorise|pass|permit|allow|let|countenance +(verb)|remove|take|take away|withdraw +(verb)|pass|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|vanish|disappear|go away +(verb)|top|pass|overtake|overhaul +(verb)|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|free|discharge +(verb)|rid|free|disembarrass +(verb)|net|yield|pay|bear +(verb)|net|sack|sack up|profit|gain|benefit +(verb)|gain|take in|make|earn|realize|realise|pull in|bring in|get|acquire +(verb)|sell +(verb)|pass +(verb)|acquit|assoil|discharge|exonerate|exculpate|pronounce|label|judge +(verb)|solve|settle|square off|square up|determine +(verb)|change|alter|modify +(verb)|empty +(verb)|take out|move out|remove +(verb)|empty +(verb)|clear up|remove|take|take away|withdraw +(adv)|all the way +(adv)|clearly +clear-air turbulence|1 +(noun)|turbulence +clear-cut|3 +(adj)|distinct|trenchant|clear +(adj)|cleared +(adj)|clear|clean-cut|distinct +clear-eyed|1 +(adj)|clear-sighted|perspicacious|discerning +clear-sighted|2 +(adj)|sighted +(adj)|clear-eyed|perspicacious|discerning +clear-thinking|1 +(adj)|clearheaded |clear|unclouded +clear and present danger|1 +(noun)|danger +clear away|1 +(verb)|clear off|remove|take|take away|withdraw +clear liquid diet|1 +(noun)|liquid diet +clear off|1 +(verb)|clear away|remove|take|take away|withdraw +clear out|3 +(verb)|move out +(verb)|expectorate|drive out|remove|take|take away|withdraw +(verb)|clean out|empty +clear sailing|1 +(noun)|plain sailing|easy going|progress|progression|procession|advance|advancement|forward motion|onward motion +clear the air|1 +(verb)|chase away|drive out|turn back|drive away|dispel|drive off|run off +clear the throat|1 +(verb)|hawk|cough +clear up|5 +(verb)|clarify|elucidate|explain|explicate +(verb)|get through|wrap up|finish off|mop up|polish off|finish up|complete|finish +(verb)|clear|remove|take|take away|withdraw +(verb)|clear|light up|brighten +(verb)|clear|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|elucidate +clearance|3 +(noun)|interval|separation +(noun)|headroom|headway|room|way|elbow room +(noun)|license|permission|permit +clearance sale|1 +(noun)|inventory-clearance sale|sale|cut-rate sale|sales event +clearcutness|1 +(noun)|preciseness|clarity|lucidity|pellucidity|clearness|limpidity +cleared|2 +(adj)|cleared |clear-cut|improved|unwooded|treeless +(adj)|absolved|clear|exculpated|exonerated|vindicated|innocent |guiltless|clean-handed +clearheaded|1 +(adj)|clearheaded |clear-thinking|clear|unclouded +clearing|3 +(noun)|glade|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|liberation|release|freeing +(noun)|clarification|improvement +clearing house|1 +(noun)|financial institution|financial organization|financial organisation +clearly|3 +(adv)|intelligibly|understandably +(adv)|distinctly +(adv)|clear +clearness|2 +(noun)|clarity|lucidity|pellucidity|limpidity|comprehensibility|understandability +(noun)|clarity|uncloudedness|quality +clearstory|1 +(noun)|clerestory|window +clearway|1 +(noun)|road|route +clearweed|1 +(noun)|richweed|dead nettle|Pilea pumilla|nettle +cleat|5 +(noun)|projection +(noun)|fastener|fastening|holdfast|fixing +(noun)|strip +(verb)|supply|provide|render|furnish +(verb)|fasten|fix|secure +cleats|4 +(noun)|shoe +(noun)|cleat|projection +(noun)|cleat|fastener|fastening|holdfast|fixing +(noun)|cleat|strip +cleavable|1 +(adj)|divisible +cleavage|5 +(noun)|state +(noun)|chemical process|chemical change|chemical action +(noun)|segmentation|cell division|cellular division +(noun)|area|region +(noun)|division +cleavage cavity|1 +(noun)|blastocoel|blastocoele|blastocele|segmentation cavity|cavity|bodily cavity|cavum +cleave|3 +(verb)|split|rive|tear +(verb)|make|create +(verb)|cling|adhere|stick|cohere|touch|adjoin|meet|contact +cleaver|1 +(noun)|meat cleaver|chopper|knife +cleavers|2 +(noun)|clivers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw +(noun)|cleaver|meat cleaver|chopper|knife +clef|1 +(noun)|musical notation +cleft|4 +(adj)|cloven|bisulcate|divided +(adj)|dissected|compound +(noun)|indentation|indenture +(noun)|crack|crevice|fissure|scissure|opening|gap +cleft foot|1 +(noun)|deformity|malformation|misshapenness +cleft lip|1 +(noun)|harelip|cheiloschisis|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +cleft palate|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +cleg|1 +(noun)|horsefly|clegg|horse fly|gadfly +clegg|1 +(noun)|horsefly|cleg|horse fly|gadfly +cleistes|1 +(noun)|Cleistes|genus Cleistes|monocot genus|liliopsid genus +cleistes divaricata|1 +(noun)|spreading pogonia|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid|orchidaceous plant +cleistes rosea|1 +(noun)|rosebud orchid|Cleistes rosea|Pogonia rosea|orchid|orchidaceous plant +cleistocarp|1 +(noun)|cleistothecium|ascocarp +cleistogamic|1 +(adj)|cleistogamous|self-pollination +cleistogamous|1 +(adj)|cleistogamic|self-pollination +cleistogamy|1 +(noun)|self-pollination +cleistothecium|1 +(noun)|cleistocarp|ascocarp +clematis|1 +(noun)|vine +clematis baldwinii|1 +(noun)|pine hyacinth|Clematis baldwinii|Viorna baldwinii|clematis +clematis crispa|1 +(noun)|blue jasmine|blue jessamine|curly clematis|marsh clematis|Clematis crispa|clematis +clematis lasiantha|1 +(noun)|pipestem clematis|Clematis lasiantha|clematis +clematis ochreleuca|1 +(noun)|curly-heads|Clematis ochreleuca|clematis +clematis tangutica|1 +(noun)|golden clematis|Clematis tangutica|clematis +clematis texensis|1 +(noun)|scarlet clematis|Clematis texensis|clematis +clematis versicolor|1 +(noun)|leather flower|Clematis versicolor|clematis +clematis verticillaris|1 +(noun)|purple clematis|purple virgin's bower|mountain clematis|Clematis verticillaris|clematis +clematis viorna|1 +(noun)|leather flower|vase-fine|vase vine|Clematis viorna|clematis +clematis virginiana|1 +(noun)|virgin's bower|old man's beard|devil's darning needle|Clematis virginiana|clematis +clematis vitalba|1 +(noun)|traveler's joy|traveller's joy|old man's beard|Clematis vitalba|clematis +clemence sophia harned lozier|1 +(noun)|Lozier|Clemence Sophia Harned Lozier|doctor|doc|physician|MD|Dr.|medico +clemenceau|1 +(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman|solon|national leader +clemency|2 +(noun)|mildness|good weather +(noun)|mercifulness|mercy|lenience|leniency +clemens|1 +(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer|author|humorist|humourist +clement|2 +(adj)|clement |balmy|mild|temperate +(adj)|clement |lenient|merciful +clement attlee|1 +(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman|solon|national leader +clement philibert leo delibes|1 +(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer +clement richard attlee|1 +(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman|solon|national leader +clementine|2 +(noun)|clementine tree|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +(noun)|mandarin|mandarin orange +clementine tree|1 +(noun)|clementine|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +clench|4 +(noun)|clinch|noose|running noose|slip noose +(noun)|clasp|clutch|clutches|grasp|grip|hold|grasping|taking hold|seizing|prehension +(verb)|clinch|seize|prehend|clutch +(verb)|squeeze +clenched|1 +(adj)|clinched|tight +clenched fist|1 +(noun)|fist|hand|manus|mitt|paw +cleome|1 +(noun)|spiderflower|herb|herbaceous plant +cleome hassleriana|1 +(noun)|spider flower|spider plant|Cleome hassleriana|spiderflower|cleome +cleome pinnata|1 +(noun)|desert plume|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub|suffrutex +cleome serrulata|1 +(noun)|Rocky Mountain bee plant|stinking clover|Cleome serrulata|spiderflower|cleome +cleopatra|1 +(noun)|Cleopatra|queen|queen regnant|female monarch|Egyptian +clepsydra|1 +(noun)|water clock|water glass|clock +clerestory|1 +(noun)|clearstory|window +clergy|1 +(noun)|priesthood +clergyman|1 +(noun)|reverend|man of the cloth|spiritual leader +cleric|1 +(noun)|churchman|divine|ecclesiastic|clergyman|reverend|man of the cloth +clerical|3 +(adj)|employee +(adj)|priesthood +(adj)|white-collar +clerical collar|1 +(noun)|Roman collar|dog collar|collar|neckband +clericalism|1 +(noun)|policy +clericalist|1 +(noun)|disciple|adherent +clerid|1 +(noun)|clerid beetle|beetle +clerid beetle|1 +(noun)|clerid|beetle +cleridae|1 +(noun)|Cleridae|family Cleridae|arthropod family +clerihew|1 +(noun)|verse|rhyme +clerisy|1 +(noun)|intelligentsia|elite|elite group +clerk|3 +(noun)|employee +(noun)|salesclerk|shop clerk|salesperson +(verb)|work +clerking|1 +(noun)|bookkeeping|accountancy|accounting +clerkship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +clethra|1 +(noun)|Clethra|genus Clethra|dicot genus|magnoliopsid genus +clethra alnifolia|1 +(noun)|sweet pepperbush|pepper bush|summer sweet|white alder|Clethra alnifolia|shrub|bush +clethraceae|1 +(noun)|Clethraceae|family Clethraceae|white-alder family|dilleniid dicot family +clethrionomys|1 +(noun)|Clethrionomys|genus Clethrionomys|mammal genus +cleveland|2 +(noun)|Cleveland|city|metropolis|urban center +(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States|United States President|President|Chief Executive +clever|4 +(adj)|adroit|ingenious|artful +(adj)|cagey|cagy|canny|smart +(adj)|apt|intelligent +(adj)|cunning|ingenious|adroit +clever clogs|1 +(noun)|clever Dick|intellectual|intellect +clever dick|1 +(noun)|clever Dick|clever clogs|intellectual|intellect +cleverly|1 +(adv)|smartly +cleverness|3 +(noun)|inventiveness|ingeniousness|ingenuity|creativity|creativeness|creative thinking +(noun)|brightness|smartness|intelligence +(noun)|ingenuity|ingeniousness|superiority|high quality +clevis|1 +(noun)|coupling|coupler +clew|3 +(noun)|ball|clod|glob|lump|clump|chunk +(noun)|clue|cue|evidence +(verb)|clue|wind|wrap|roll|twine +clews|3 +(noun)|cord +(noun)|clew|ball|clod|glob|lump|clump|chunk +(noun)|clue|clew|cue|evidence +cli|1 +(noun)|command line interface|CLI|interface|user interface +clianthus|1 +(noun)|glory pea|shrub|bush +clianthus formosus|1 +(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea|clianthus +clianthus puniceus|1 +(noun)|parrot's beak|parrot's bill|Clianthus puniceus|glory pea|clianthus +clianthus speciosus|1 +(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea|clianthus +cliche|1 +(noun)|platitude|banality|commonplace|bromide|remark|comment|truism +cliched|1 +(adj)|ready-made|unoriginal +clichy|1 +(noun)|Clichy|Clichy-la-Garenne|suburb|suburbia|suburban area +clichy-la-garenne|1 +(noun)|Clichy|Clichy-la-Garenne|suburb|suburbia|suburban area +click|11 +(noun)|chink|clink|sound +(noun)|mouse click|depression +(noun)|suction stop|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive +(noun)|pawl|detent|dog|catch|stop +(verb)|snap|move +(verb)|tick|sound|go +(verb)|chatter|sound|go +(verb)|snap|flick|move +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|cluck|clack|utter|emit|let out|let loose +(verb)|get through|dawn|come home|get across|sink in|penetrate|fall into place +click-clack|1 +(noun)|sound +click beetle|1 +(noun)|skipjack|snapping beetle|elaterid beetle|elater|elaterid +click off|1 +(verb)|perform|execute|do +click open|1 +(verb)|open|open up +clickety-clack|1 +(noun)|clickety-click|click-clack +clickety-click|1 +(noun)|clickety-clack|click-clack +client|3 +(noun)|case +(noun)|customer|consumer +(noun)|node|guest|computer|computing machine|computing device|data processor|electronic computer|information processing system +client-centered therapy|1 +(noun)|psychotherapy +clientage|1 +(noun)|business relation +clientele|1 +(noun)|patronage|business|people +cliff|1 +(noun)|drop|drop-off|geological formation|formation +cliff-brake|2 +(noun)|cliff brake|rock brake|fern +(noun)| +cliff-hanging|1 +(adj)|suspenseful|suspensive|nail-biting|tense +cliff brake|2 +(noun)|cliff-brake|rock brake|fern +(noun)| +cliff diving|1 +(noun)|dive|diving +cliff dweller|1 +(noun)|Anasazi +cliff dwelling|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +cliff penstemon|1 +(noun)|rock penstemon|Penstemon rupicola|wildflower|wild flower +cliff rose|1 +(noun)|sea pink|Armeria maritima|thrift +cliff swallow|1 +(noun)|Hirundo pyrrhonota|swallow +cliffhanger|2 +(noun)|contest|competition +(noun)|episode|installment|instalment +clifflike|1 +(adj)|cliffy |craggy|rugged|precipitous|rock-ribbed|rockbound +clifford odets|1 +(noun)|Odets|Clifford Odets|dramatist|playwright +clifford trust|1 +(noun)|Clifford trust|grantor trust|trust +cliffy|1 +(adj)|cliffy |clifflike|craggy|rugged|precipitous|rock-ribbed|rockbound +cliftonia|1 +(noun)|Cliftonia|genus Cliftonia|dicot genus|magnoliopsid genus +cliftonia monophylla|1 +(noun)|titi|buckwheat tree|Cliftonia monophylla|angiospermous tree|flowering tree +climacteric|2 +(noun)|biological time +(noun)|menopause|change of life|biological time +climactic|1 +(adj)|climactic +climate|2 +(noun)|clime|environmental condition +(noun)|mood|condition|status +climate change|1 +(noun)|global climate change|temperature change +climatic|1 +(adj)|climatical|environmental condition +climatic zone|1 +(noun)|zone|geographical zone +climatical|1 +(adj)|climatic|environmental condition +climatology|1 +(noun)|meteorology +climax|6 +(noun)|flood tide|juncture|occasion +(noun)|culmination|moment|minute|second|instant +(noun)|orgasm|sexual climax|coming|consummation +(noun)|degree|level|stage|point +(noun)|rhetorical device +(verb)|culminate|end|stop|finish|terminate|cease +climb|9 +(noun)|ascent|acclivity|rise|raise|upgrade|slope|incline|side +(noun)|climbing|mounting|rise|rising|ascent|ascension +(noun)|mount|rise|ascent|ascension|ascending +(verb)|climb up|mount|go up|rise|lift|arise|move up|go up|come up|uprise|climb on|climb down +(verb)|move +(verb)|wax|mount|rise|increase +(verb)|slope|incline|pitch +(verb)|progress|come on|come along|advance|get on|get along|shape up +(verb)|rise|go up|grow +climb-down|1 +(noun)|withdrawal|backdown|retraction|abjuration|recantation +climb down|1 +(verb)|alight|descend|fall|go down|come down +climb on|1 +(verb)|hop on|mount|mount up|get on|jump on|bestride|move +climb up|2 +(verb)|climb|mount|go up|rise|lift|arise|move up|go up|come up|uprise +(verb)|rise|jump|change +climbable|2 +(adj)|scalable +(adj)|surmountable|passable +climber|5 +(noun)|vine +(noun)|social climber|upstart|parvenu|nouveau-riche|arriviste +(noun)|mounter|ascender +(noun)|athlete|jock +(noun)|crampon|crampoon|climbing iron|spike +climbing|1 +(noun)|climb|mounting|rise|rising|ascent|ascension +climbing bird's nest fern|1 +(noun)|Microsorium punctatum|fern +climbing bittersweet|1 +(noun)|bittersweet|American bittersweet|false bittersweet|staff vine|waxwork|Celastrus scandens|vine +climbing boneset|1 +(noun)|climbing hempweed|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine +climbing corydalis|1 +(noun)|Corydalis claviculata|Fumaria claviculata|vine|Corydalis|genus Corydalis +climbing fern|1 +(noun)|fern +climbing frame|1 +(noun)|framework|frame|framing +climbing fumitory|1 +(noun)|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine +climbing hemp-vine|1 +(noun)|climbing hempweed|climbing boneset|wild climbing hempweed|Mikania scandens|vine +climbing hempweed|1 +(noun)|climbing boneset|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine +climbing hydrangea|3 +(noun)|Schizophragma hydrangeoides|shrub|bush +(noun)|Hydrangea petiolaris|hydrangea +(noun)|Hydrangea anomala|hydrangea +climbing iron|1 +(noun)|crampon|crampoon|climber|spike +climbing lily|1 +(noun)|gloriosa|glory lily|creeping lily|Gloriosa superba|poisonous plant +climbing maidenhair|1 +(noun)|climbing maidenhair fern|snake fern|Lygodium microphyllum|climbing fern +climbing maidenhair fern|1 +(noun)|climbing maidenhair|snake fern|Lygodium microphyllum|climbing fern +climbing nightshade|1 +(noun)|bittersweet|bittersweet nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade +climbing onion|1 +(noun)|Bowiea volubilis|herb|herbaceous plant +climbing perch|1 +(noun)|Anabas testudineus|A. testudineus|fish +climbing salamander|1 +(noun)|salamander +clime|1 +(noun)|climate|environmental condition +clinch|10 +(noun)|maneuver|manoeuvre|evasive action +(noun)|clench|noose|running noose|slip noose +(noun)|fastener|fastening|holdfast|fixing +(noun)|hug|squeeze|embrace|embracing +(verb)|fasten|fix|secure +(verb)|hold|take hold +(verb)|clench|seize|prehend|clutch +(verb)|embrace|hug|bosom|squeeze +(verb)|fasten|fix|secure +(verb)|settle|square off|square up|determine +clinch river|1 +(noun)|Clinch River|river +clinched|1 +(adj)|clenched|tight +clincher|3 +(noun)|determiner|determining factor|argument|statement +(noun)|decisive factor|determinant|determiner|determinative|determining factor|causal factor +(noun)|tool +clincher-built|1 +(adj)|clinker-built |lap-jointed|lap-strake|lap-straked|lap-streak|lap-streaked|overlapping +cline|1 +(noun)|Cline|Martin Cline|geneticist +cling|3 +(noun)|clingstone|edible fruit +(verb)|cleave|adhere|stick|cohere|touch|adjoin|meet|contact +(verb)|hang|grasp|hold on +cling film|2 +(noun)|clingfilm|Saran Wrap|plastic wrap +(noun)| +cling to|1 +(verb)|hold close|hold tight|clutch|hold|take hold +clingfilm|1 +(noun)|cling film|Saran Wrap|plastic wrap +clingfish|1 +(noun)|percoid fish|percoid|percoidean +clingstone|1 +(noun)|cling|edible fruit +clinic|3 +(noun)|medical institution +(noun)|session +(noun)|medical building|health facility|healthcare facility +clinical|2 +(adj)|medical institution +(adj)|objective |nonsubjective +clinical anatomy|1 +(noun)|applied anatomy|anatomy|general anatomy +clinical depression|1 +(noun)|depressive disorder|depression|affective disorder|major affective disorder|emotional disorder|emotional disturbance +clinical neurology|1 +(noun)|neurology|medicine|medical specialty +clinical psychologist|1 +(noun)|psychotherapist|therapist|healer +clinical psychology|1 +(noun)|psychotherapy|psychotherapeutics|mental hygiene +clinical test|1 +(noun)|clinical trial|test|trial|run +clinical thermometer|1 +(noun)|mercury-in-glass clinical thermometer|mercury thermometer|mercury-in-glass thermometer +clinical trial|1 +(noun)|clinical test|test|trial|run +clinician|1 +(noun)|practitioner|practician +clinid|1 +(noun)|clinid fish|blennioid fish|blennioid +clinid fish|1 +(noun)|clinid|blennioid fish|blennioid +clinidae|1 +(noun)|Clinidae|family Clinidae|fish family +clink|4 +(noun)|chink|click|sound +(noun)|jail|jailhouse|gaol|slammer|correctional institution +(verb)|sound +(verb)|tinkle|tink|chink|sound|go +clinker|4 +(noun)|cinder|fragment +(noun)|clinker brick|brick +(verb)|clean out|clear out +(verb)|change +clinker-built|1 +(adj)|clinker-built |clincher-built|lap-jointed|lap-strake|lap-straked|lap-streak|lap-streaked|overlapping +clinker block|1 +(noun)|cinder block|breeze block|building block +clinker brick|1 +(noun)|clinker|brick +clinking|1 +(adj)|reverberant |ringing +clinocephalism|1 +(noun)|clinocephaly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +clinocephaly|1 +(noun)|clinocephalism|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +clinodactyly|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +clinometer|1 +(noun)|inclinometer|surveying instrument|surveyor's instrument +clinopodium|1 +(noun)|Clinopodium|genus Clinopodium|asterid dicot genus +clinopodium grandiflorum|1 +(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint +clinopodium vulgare|1 +(noun)|wild basil|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb|herbaceous plant +clinoril|1 +(noun)|sulindac|Clinoril|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +clinquant|1 +(adj)|tinseled|tinselly|adorned |decorated +clinton|3 +(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States|United States President|President|Chief Executive +(noun)|Clinton|DeWitt Clinton|politician|politico|pol|political leader +(noun)|Clinton|town +clinton's lily|1 +(noun)|clintonia|Clinton's lily|liliaceous plant +clinton administration|1 +(noun)|Clinton administration|executive +clintonia|1 +(noun)|Clinton's lily|liliaceous plant +clintonia andrewsiana|1 +(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia|Clinton's lily +clintonia borealis|1 +(noun)|yellow clintonia|heal all|Clintonia borealis|clintonia|Clinton's lily +clintonia uniflora|1 +(noun)|queen's cup|bride's bonnet|Clintonia uniflora|clintonia|Clinton's lily +clio|1 +(noun)|Clio|Muse +clioquinol|1 +(noun)|iodochlorhydroxyquin|Clioquinol|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +clip|11 +(noun)|cartridge holder|cartridge clip|magazine|supply chamber +(noun)|time|case|instance|example +(noun)|fastener|fastening|holdfast|fixing +(noun)|jewelry|jewellery +(noun)|clipping|snip|cut|cutting|cutting off +(noun)|blow +(verb)|nip|nip off|snip|snip off|cut +(verb)|trot|jog|run +(verb)|attach +(verb)|snip|crop|trim|lop|dress|prune|cut back|thin out +(verb)|curtail|cut short|shorten +clip-on|1 +(adj)|attachable +clip art|1 +(noun)|computer graphics +clip artist|1 +(noun)|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +clip joint|1 +(noun)|spot +clip lead|1 +(noun)|jumper cable|jumper lead|lead +clipboard|1 +(noun)|writing board +clipped|4 +(adj)|clipped +(adj)|docked|cropped +(adj)|trimmed |cut +(adj)|short +clipper|4 +(noun)|limiter|circuit|electrical circuit|electric circuit +(noun)|clipper ship|sailing vessel|sailing ship +(noun)|clippers|shear|shears +(noun)|clippers|scissors|pair of scissors +clipper ship|1 +(noun)|clipper|sailing vessel|sailing ship +clippers|6 +(noun)|clipper|shear|shears +(noun)|clipper|scissors|pair of scissors +(noun)|limiter|clipper|circuit|electrical circuit|electric circuit +(noun)|clipper|clipper ship|sailing vessel|sailing ship +(noun)|clipper|shear|shears +(noun)|clipper|scissors|pair of scissors +clipping|3 +(noun)|newspaper clipping|press clipping|cutting|press cutting|excerpt|extract|selection +(noun)|trim|trimming|cut|cutting|cutting off +(noun)|clip|snip|cut|cutting|cutting off +clique|1 +(noun)|coterie|ingroup|inner circle|pack|camp|set|circle|band|lot +cliquish|1 +(adj)|clannish|clubby|snobbish|snobby|private +cliquishly|1 +(adv)|clannishly +cliquishness|1 +(noun)|clannishness|exclusiveness|snobbery|snobbishness +clit|1 +(noun)|clitoris|button|erectile organ +clitocybe|1 +(noun)|Clitocybe|genus Clitocybe|fungus genus +clitocybe clavipes|1 +(noun)|Clitocybe clavipes|agaric +clitocybe dealbata|1 +(noun)|Clitocybe dealbata|agaric +clitocybe inornata|1 +(noun)|Clitocybe inornata|agaric +clitocybe irina|1 +(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric +clitocybe nuda|1 +(noun)|blewits|Clitocybe nuda|agaric +clitocybe robusta|1 +(noun)|Clitocybe robusta|Clytocybe alba|agaric +clitocybe subconnexa|1 +(noun)|Clitocybe subconnexa|agaric +clitoral|1 +(adj)|clitoric|erectile organ +clitoral vein|1 +(noun)|vena clitoridis|vein|vena|venous blood vessel +clitoria|1 +(noun)|Clitoria|genus Clitoria|rosid dicot genus +clitoria mariana|1 +(noun)|butterfly pea|Clitoria mariana|vine +clitoria turnatea|1 +(noun)|blue pea|butterfly pea|Clitoria turnatea|vine +clitoric|1 +(adj)|clitoral|erectile organ +clitoridectomy|1 +(noun)|female circumcision|ablation|extirpation|cutting out|excision +clitoris|1 +(noun)|clit|button|erectile organ +clitter|1 +(verb)|stridulate|make noise|resound|noise +clive|1 +(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general|full general|statesman|solon|national leader +clive sinclair|1 +(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer|entrepreneur|enterpriser +clive staples lewis|1 +(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer|author +clivers|1 +(noun)|cleavers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw +cloaca|1 +(noun)|sewer|sewerage|drain|drainpipe|waste pipe +cloak|3 +(noun)|covering +(noun)|overgarment|outer garment +(verb)|dissemble|mask|disguise +cloak-and-dagger|1 +(adj)|clandestine|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|undercover|underground|covert +cloaked|2 +(adj)|disguised|masked|covert +(adj)|clothed|draped|mantled|wrapped|covered +cloakmaker|1 +(noun)|furrier|garmentmaker|garment-worker|garment worker +cloakroom|2 +(noun)|lounge|waiting room|waiting area +(noun)|coatroom|room +clobber|3 +(noun)|stuff|personal property|personal estate|personalty|private property +(verb)|baste|batter|beat|beat up|work over +(verb)|bat|drub|thrash|lick|beat|beat out|crush|shell|trounce|vanquish +cloche|2 +(noun)|protective covering|protective cover|protection +(noun)|millinery|woman's hat +clock|2 +(noun)|timepiece|timekeeper +(verb)|time|quantify|measure +clock-watching|1 +(noun)|attention|attending +clock dial|1 +(noun)|clock face|face +clock face|1 +(noun)|clock dial|face +clock golf|1 +(noun)|golf|golf game +clock in|1 +(verb)|punch in|clock on|record|enter|put down +clock off|1 +(verb)|clock out|punch out|report +clock on|1 +(verb)|clock in|punch in|record|enter|put down +clock out|1 +(verb)|punch out|clock off|report +clock pendulum|1 +(noun)|physical pendulum|compound pendulum +clock radio|1 +(noun)|radio receiver|receiving set|radio set|radio|tuner|wireless +clock time|1 +(noun)|time|reading|meter reading|indication +clock tower|1 +(noun)|tower +clock up|1 +(verb)|log up|record|enter|put down +clock watcher|1 +(noun)|idler|loafer|do-nothing|layabout|bum +clocking|1 +(noun)|duration|continuance +clockmaker|1 +(noun)|clocksmith|craftsman|artisan|journeyman|artificer +clocks|2 +(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +(noun)|clock|timepiece|timekeeper +clocksmith|1 +(noun)|clockmaker|craftsman|artisan|journeyman|artificer +clockwise|1 +(adj)|clockwise |dextrorotary|dextrorotatory|right-handed|dextral +clockwise rotation|1 +(noun)|dextrorotation|rotation|revolution|gyration +clockwork|1 +(noun)|mechanism +clockwork universe|1 +(noun)|Weltanschauung|world view +clod|2 +(noun)|ball|glob|lump|clump|chunk|agglomeration +(noun)|lout|stumblebum|goon|oaf|lubber|lummox|lump|gawk|clumsy person +cloddish|1 +(adj)|doltish|stupid +clodhopper|1 +(noun)|brogan|brogue|work shoe|shoe +clofibrate|1 +(noun)|Atromid-S|medicine|medication|medicament|medicinal drug +clog|9 +(noun)|geta|patten|sabot|footwear|footgear +(noun)|hindrance|hitch|preventive|preventative|encumbrance|incumbrance|interference +(noun)|clog dance|clog dancing|tap dancing|tap dance +(verb)|choke off|clog up|back up|congest|choke|foul|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|restrain|encumber|cumber|constrain +(verb)|constipate|slow|slow down|slow up +(verb)|clot|coalesce +(verb)|overload|fill|fill up|make full +clog dance|1 +(noun)|clog dancing|clog|tap dancing|tap dance +clog dancer|1 +(noun)|dancer|social dancer +clog dancing|1 +(noun)|clog dance|clog|tap dancing|tap dance +clog up|1 +(verb)|clog|choke off|back up|congest|choke|foul|obstruct|obturate|impede|occlude|jam|block|close up +clogged|3 +(adj)|clotted|thick +(adj)|choked|obstructed +(adj)|encumbered +clogging|1 +(adj)|hindering|impeding|obstructive|preventive |preventative +cloggy|1 +(adj)|clayey|heavy|compact +cloisonne|2 +(adj)|champleve|adorned |decorated +(noun)|enamelware +cloister|4 +(noun)|religious residence|residence +(noun)|court|courtyard +(verb)|surround|environ|encircle|circle|round|ring +(verb)|isolate|insulate +cloistered|2 +(adj)|cloistral|conventual|monastic|monastical|unworldly +(adj)|reclusive|secluded|sequestered|private +cloistral|1 +(adj)|cloistered|conventual|monastic|monastical|unworldly +clomid|1 +(noun)|clomiphene|clomiphene citrate|Clomid|fertility drug +clomiphene|1 +(noun)|clomiphene citrate|Clomid|fertility drug +clomiphene citrate|1 +(noun)|clomiphene|Clomid|fertility drug +clomipramine|1 +(noun)|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +clomp|1 +(verb)|clump|walk +clon|1 +(noun)|clone|organism|being +clonal|1 +(adj)|organism|being +clone|4 +(noun)|ringer|dead ringer|double|image|look-alike +(noun)|clon|organism|being +(noun)|knockoff|copy +(verb)|copy|re-create +clonic|1 +(adj)|convulsion +clonidine|1 +(noun)|Catapres|antihypertensive|antihypertensive drug +cloning|1 +(noun)|biological research +clonus|1 +(noun)|convulsion +clop|1 +(verb)|clump|clunk|plunk|sound|go +clopidogrel bisulfate|1 +(noun)|Plavix|medicine|medication|medicament|medicinal drug +clorox|1 +(noun)|Clorox|bleaching agent|bleach|blanching agent|whitener +close|37 +(adj)|close |adjacent|next|side by side|ambient|appressed|adpressed|approximate|close together|at hand|close at hand|imminent|impending|at hand|close at hand|close-hauled|close-set|close set|contiguous|immediate|encompassing|surrounding|enveloping|hand-to-hand|juxtaposed|proximate|walk-to|walking|nestled|snuggled|scalelike +(adj)|close |approximate|near|boon|chummy|buddy-buddy|thick|close-knit|closely knit|confidential|cozy|dear|good|near|familiar|intimate|intimate +(adj)|near |adjacent|moral|nearby|nearer|neighbor|neighbour|neighboring|neighbouring|nigh|warm|hot|nighest|nearest +(adj)|careful +(adj)|faithful|accurate +(adj)|tight|equal +(adj)|confining|confined +(adj)|airless|stuffy|unaired|unventilated +(adj)|tight|fine +(adj)|restrained +(adj)|private +(adj)|snug|close-fitting|tight +(adj)|short +(adj)|cheeseparing|near|penny-pinching|stingy |ungenerous +(adj)|closelipped|closemouthed|secretive|tightlipped|uncommunicative |incommunicative +(noun)|stopping point|finale|finis|finish|last|conclusion|end|ending +(noun)|conclusion|end|closing|ending|section|subdivision +(noun)|finale|closing curtain|finis|finish|finishing +(verb)|fold|shut down|close down +(verb)|end|terminate +(verb)|shut +(verb)|barricade|block|blockade|stop|block off|block up|bar +(verb)|end|terminate +(verb)|approach|near|come on|go up|draw near|draw close|come near +(verb)|conclude|end|stop|finish|terminate|cease +(verb)|shut|change state|turn +(verb)|come together|move +(verb)|join|bring together +(verb)|join|bring together +(verb)|prosecute|engage|pursue +(verb)|trade +(verb)|end|terminate +(verb)|move +(verb)|fill up|fill +(verb)|complete|finish +(adv)|near|nigh +(adv)|closely|tight +close-cropped|1 +(adj)|cropped +close-fitting|1 +(adj)|close|snug|tight +close-grained|1 +(adj)|fine-grained|fine +close-hauled|1 +(adj)|close +close-knit|1 +(adj)|closely knit|close +close-minded|1 +(adj)|closed-minded|narrow-minded |narrow +close-order drill|1 +(noun)|military drill +close-packed|1 +(adj)|compact +close-set|2 +(adj)|close set|close +(adj)| +close at hand|2 +(adj)|at hand|close +(adj)|at hand|imminent|impending|close +close call|1 +(noun)|close shave|squeak|squeaker|narrow escape|accomplishment|achievement +close corporation|1 +(noun)|closed corporation|private corporation|privately held corporation|corporation|corp +close down|1 +(verb)|close|fold|shut down +close in|1 +(verb)|draw in|advance|progress|pass on|move on|march on|go on +close off|3 +(verb)|shut off|discontinue|stop|cease|give up|quit|lay off +(verb)|shut off|separate|divide +(verb)|shut off|block off|barricade|block|blockade|stop|block off|block up|bar +close order|1 +(noun)|military formation +close out|3 +(verb)|preclude|rule out|obviate|rid of|eliminate +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|end|terminate +close set|2 +(adj)|close-set|close +(adj)| +close shave|1 +(noun)|close call|squeak|squeaker|narrow escape|accomplishment|achievement +close support|1 +(noun)|support|reinforcement|reenforcement +close supporting fire|1 +(noun)|supporting fire +close to|1 +(adv)|approximately|about|just about|some|roughly|more or less|around|or so +close together|1 +(adj)|approximate|close +close up|3 +(verb)|obstruct|obturate|impede|occlude|jam|block|impede|hinder +(verb)|clam up|dummy up|shut up|belt up|button up|be quiet|keep mum +(adv)|at close range +closed|11 +(adj)|closed |blocked|out of use|nonopening|drawn|stoppered|obstructed|sealed|shut|unopen +(adj)|closed +(adj)|shut |unopen +(adj)|closed |shut|blinking|winking|compressed|tight|squinched|squinting +(adj)|union +(adj)|shuttered +(adj)|restricted +(adj)|unsympathetic|unreceptive +(adj)|closed in|enclosed +(adj)|folded +(adj)|inactive +closed-captioned|1 +(adj)|supply|provide|render|furnish +closed-chain|1 +(adj)|closed-ring|cyclic +closed-circuit|1 +(adj)|circuit|electrical circuit|electric circuit +closed-circuit television|1 +(noun)|television|television system +closed-class word|1 +(noun)|function word|word +closed-door|1 +(adj)|private +closed-end fund|1 +(noun)|closed-end investment company|investment company|investment trust|investment firm|fund +closed-end investment company|1 +(noun)|closed-end fund|investment company|investment trust|investment firm|fund +closed-heart surgery|1 +(noun)|heart surgery +closed-loop system|1 +(noun)|closed loop|control system +closed-minded|1 +(adj)|close-minded|narrow-minded |narrow +closed-ring|1 +(adj)|closed-chain|cyclic +closed book|1 +(noun)|mystery|enigma|secret|perplexity +closed chain|1 +(noun)|ring|chain|chemical chain +closed circuit|1 +(noun)|loop|circuit|electrical circuit|electric circuit +closed corporation|1 +(noun)|close corporation|private corporation|privately held corporation|corporation|corp +closed couplet|1 +(noun)|couplet +closed curve|1 +(noun)|curve|curved shape +closed fracture|1 +(noun)|simple fracture|fracture|break +closed gentian|2 +(noun)|blind gentian|Gentiana clausa|gentian +(noun)|blind gentian|bottle gentian|Gentiana andrewsii|gentian +closed in|1 +(adj)|closed|enclosed +closed interval|1 +(noun)|bounded interval|interval +closed loop|1 +(noun)|closed-loop system|control system +closed primary|1 +(noun)|direct primary +closed session|1 +(noun)|executive session|session +closed shop|1 +(noun)|company +closed universe|1 +(noun)|universe|existence|creation|world|cosmos|macrocosm +closedown|1 +(noun)|closure|closing|shutdown|termination|ending|conclusion +closefisted|1 +(adj)|hardfisted|tightfisted|stingy |ungenerous +closelipped|1 +(adj)|close|closemouthed|secretive|tightlipped|uncommunicative |incommunicative +closely|2 +(adv)|intimately|nearly +(adv)|close|tight +closely-held|1 +(adj)|owned +closely held corporation|1 +(noun)|corporation|corp +closely knit|1 +(adj)|close-knit|close +closemouthed|1 +(adj)|close|closelipped|secretive|tightlipped|uncommunicative |incommunicative +closeness|5 +(noun)|intimacy|belonging +(noun)|nearness|distance +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|stinginess +(noun)|secretiveness|unsociability|unsociableness +(noun)|familiarity|intimacy|friendliness +closeout|1 +(noun)|sale|cut-rate sale|sales event +closer|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|finisher|reliever|relief pitcher|fireman +(adv)|nearer|nigher +closest|1 +(adv)|nearest|nighest +closet|7 +(adj)|confidential|secret|private +(adj)|secret|covert +(noun)|cupboard|storage space +(noun)|water closet|W.C.|loo|toilet|lavatory|lav|can|john|privy|bathroom +(noun)|wardrobe|press|furniture|piece of furniture|article of furniture +(noun)|room +(verb)|confine +closet auger|1 +(noun)|snake +closet drama|1 +(noun)|drama +closet queen|1 +(noun)|gay man|shirtlifter +closeup|1 +(noun)|photograph|photo|exposure|pic +closeup lens|1 +(noun)|camera lens|optical lens +closing|6 +(adj)|closing |concluding|final|last|terminal|terminative|year-end +(noun)|shutting|motion|movement|move|motility +(noun)|conclusion|end|close|ending|section|subdivision +(noun)|closure|approach|approaching|coming +(noun)|closure|closedown|shutdown|termination|ending|conclusion +(noun)|completion|culmination|windup|mop up|termination|ending|conclusion +closing curtain|1 +(noun)|finale|close|finis|finish|finishing +closing off|1 +(noun)|isolation|separation +closing price|1 +(noun)|price|terms|damage +closing time|1 +(noun)|hour|time of day +clostridia|2 +(noun)|clostridium|eubacteria|eubacterium|true bacteria +(noun)|clostridium|eubacteria|eubacterium|true bacteria +clostridial myonecrosis|1 +(noun)|gas gangrene|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene|sphacelus|slough +clostridium|1 +(noun)|clostridia|eubacteria|eubacterium|true bacteria +clostridium botulinum|1 +(noun)|botulinus|botulinum|Clostridium botulinum|eubacteria|eubacterium|true bacteria +clostridium perfringens|1 +(noun)|eubacteria|eubacterium|true bacteria|bioweapon|biological weapon|bioarm +clostridium perfringens epsilon toxin|1 +(noun)|epsilon toxin|Clostridium perfringens epsilon toxin|bacterial toxin +closure|8 +(noun)|closing|approach|approaching|coming +(noun)|cloture|gag rule|gag law|order|rules of order|parliamentary law|parliamentary procedure +(noun)|law of closure|Gestalt law of organization|Gestalt principle of organization +(noun)|settlement|resolution|decision making|deciding +(noun)|blockage|block|occlusion|stop|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|blockage|occlusion|obstruction +(noun)|closedown|closing|shutdown|termination|ending|conclusion +(verb)|cloture|end|terminate +closure by compartment|1 +(noun)|guillotine|closure|cloture|gag rule|gag law +clot|5 +(noun)|coagulum|ball|clod|glob|lump|clump|chunk +(verb)|coagulate|change state|turn +(verb)|coagulate|change|alter|modify +(verb)|curdle|clabber|change state|turn +(verb)|clog|coalesce +clot buster|1 +(noun)|thrombolytic|thrombolytic agent|pharmaceutical +clotbur|1 +(noun)|burdock|subshrub|suffrutex +cloth|1 +(noun)|fabric|material|textile|artifact|artefact +cloth cap|1 +(noun)|flat cap|cap +cloth covering|1 +(noun)|covering +clothe|2 +(verb)|dress|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state|turn +(verb)|invest|adorn|equip|fit|fit out|outfit +clothed|2 +(adj)|clothed |clad|adorned|bedecked|decked|decked out|appareled|attired|dressed|garbed|garmented|habilimented|robed|arrayed|panoplied|black|breeched|pantalooned|trousered|bundled-up|caparisoned|cassocked|coated|costumed|dighted|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|gowned|habited|heavy-coated|overdressed|petticoated|red-coated|lobster-backed|suited|surpliced|togged|turned out|tuxedoed|underdressed|uniformed|vestmented|white|cowled|adorned|decorated +(adj)|cloaked|draped|mantled|wrapped|covered +clothes|1 +(noun)|apparel|wearing apparel|dress|clothing|article of clothing|vesture|wear +clothes basket|1 +(noun)|clothes hamper|laundry basket|voider|hamper +clothes closet|1 +(noun)|clothespress|wardrobe|closet|press +clothes designer|1 +(noun)|couturier|fashion designer|designer|creator +clothes drier|1 +(noun)|clothes dryer|dryer|drier|white goods +clothes dryer|1 +(noun)|clothes drier|dryer|drier|white goods +clothes hamper|1 +(noun)|laundry basket|clothes basket|voider|hamper +clothes hanger|1 +(noun)|coat hanger|dress hanger|hanger +clothes moth|1 +(noun)|tineid|tineid moth +clothes peg|1 +(noun)|clothespin|clothes pin|fastener|fastening|holdfast|fixing +clothes pin|2 +(noun)|clothespin|clothes peg|fastener|fastening|holdfast|fixing +(noun)| +clothes tree|1 +(noun)|coat tree|coat stand|pole +clothesbrush|1 +(noun)|brush +clotheshorse|2 +(noun)|framework|frame|framing +(noun)|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|man|adult male +clothesless|1 +(adj)|garmentless|raimentless|unclothed +clothesline|1 +(noun)|cord +clothespin|1 +(noun)|clothes pin|clothes peg|fastener|fastening|holdfast|fixing +clothespress|1 +(noun)|clothes closet|wardrobe|closet|press +clothier|1 +(noun)|haberdasher|merchant|merchandiser +clothing|1 +(noun)|article of clothing|vesture|wear|covering|consumer goods +clothing store|1 +(noun)|haberdashery|haberdashery store|mens store|shop|store +clotho|1 +(noun)|Clotho|Greek deity +clotted|1 +(adj)|clogged|thick +clotted cream|1 +(noun)|Devonshire cream|cream +clotting|1 +(noun)|curdling|coagulation|natural process|natural action|action|activity +clotting factor|1 +(noun)|coagulation factor|plasma protein +clotting time|1 +(noun)|time period|period of time|period +cloture|2 +(noun)|closure|gag rule|gag law|order|rules of order|parliamentary law|parliamentary procedure +(verb)|closure|end|terminate +cloud|13 +(noun)|physical phenomenon +(noun)|atmospheric phenomenon +(noun)|unreality|irreality +(noun)|gloom|gloominess|glumness +(noun)|suspicion +(noun)|swarm|animal group +(verb)|overcast|darken|cloud over|cloud up +(verb)|obscure|befog|becloud|obnubilate|haze over|fog|mist|hide|conceal +(verb)|billow|wallow +(verb)|affect|impress|move|strike +(verb)|defile|sully|corrupt|taint|mar|impair|spoil|deflower|vitiate +(verb)|mottle|dapple|spot +(verb)|dull +cloud-covered|1 +(adj)|clouded|overcast|sunless|cloudy +cloud-cuckoo-land|1 +(noun)|imaginary place|mythical place +cloud bank|1 +(noun)|cloud +cloud chamber|1 +(noun)|Wilson cloud chamber|apparatus|setup +cloud cover|1 +(noun)|cloudiness|overcast|bad weather|inclemency|inclementness +cloud grass|1 +(noun)|Agrostis nebulosa|bent|bent grass|bent-grass +cloud nine|1 +(noun)|bliss|blissfulness|seventh heaven|walking on air|elation +cloud over|2 +(verb)|overcloud|cloud up|darken +(verb)|change state|turn +cloud seeder|1 +(noun)|seeder|person|individual|someone|somebody|mortal|human|soul +cloud up|1 +(verb)|overcloud|cloud over|darken +cloudberry|1 +(noun)|dwarf mulberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +cloudburst|1 +(noun)|downpour|deluge|waterspout|torrent|pelter|soaker|rain|rainfall +clouded|4 +(adj)|troubled +(adj)|cloud-covered|overcast|sunless|cloudy +(adj)|confused +(adj)|blurred|unclear +cloudiness|3 +(noun)|murkiness|muddiness|opacity|opaqueness +(noun)|cloud cover|overcast|bad weather|inclemency|inclementness +(noun)|overcast|semidarkness +clouding|1 +(noun)|clouding up|vaporization|vaporisation|vapor|vapour|evaporation +clouding up|1 +(noun)|clouding|vaporization|vaporisation|vapor|vapour|evaporation +cloudless|1 +(adj)|unclouded|clear +cloudlessness|1 +(noun)|sunniness +cloudlike|1 +(adj)|nebular|cloudy +cloudy|3 +(adj)|nebulose|nebulous|indistinct +(adj)|muddy|mirky|murky|turbid|opaque +(adj)|cloudy |brumous|foggy|hazy|misty|cloud-covered|clouded|overcast|sunless|cloudlike|nebular|dull|gray|grey|leaden|heavy|lowering|sullen|threatening|miasmal|miasmic|vaporous|smoggy +clout|5 +(noun)|target|mark +(noun)|pull|advantage|vantage +(noun)|clout nail|nail +(noun)|punch|poke|lick|biff|blow +(verb)|strike +clout nail|1 +(noun)|clout|nail +clove|4 +(noun)|flower bud +(noun)|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree +(noun)|garlic clove|garlic|ail +(noun)|spice +clove hitch|1 +(noun)|knot +clove oil|1 +(noun)|oil of cloves|essential oil|volatile oil +clove pink|1 +(noun)|carnation|gillyflower|Dianthus caryophyllus|pink|garden pink +clove tree|1 +(noun)|clove|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree +cloven|1 +(adj)|cleft|bisulcate|divided +cloven foot|2 +(noun)|cloven hoof|mark|stigma|brand|stain +(noun)|cloven hoof|hoof +cloven hoof|2 +(noun)|cloven foot|mark|stigma|brand|stain +(noun)|cloven foot|hoof +clover|1 +(noun)|trefoil|herb|herbaceous plant +clover-leaf roll|1 +(noun)|bun|roll +clover-root|1 +(noun)|herb bennet|cloveroot|wood avens|Geum urbanum|avens +clover fern|1 +(noun)|pepperwort|aquatic fern|water fern +cloverleaf|1 +(noun)|interchange +cloveroot|1 +(noun)|herb bennet|clover-root|wood avens|Geum urbanum|avens +clovis|1 +(noun)|Clovis|Clovis I|king|male monarch|Frank +clovis culture|1 +(noun)|Clovis culture|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture +clovis i|1 +(noun)|Clovis|Clovis I|king|male monarch|Frank +clowder|1 +(noun)|animal group +clowlike|1 +(adj)|buffoonish|clownish|zany|humorous |humourous +clown|3 +(noun)|buffoon|fool|sap|saphead|muggins|tomfool +(noun)|buffoon|merry andrew|comedian|comic +(verb)|clown around|antic|joke|jest +clown anemone fish|1 +(noun)|Amphiprion percula|anemone fish +clown around|1 +(verb)|clown|antic|joke|jest +clowning|2 +(noun)|buffoonery|frivolity|harlequinade|prank|folly|foolery|tomfoolery|craziness|lunacy|indulgence +(noun)|drollery|comedy|funniness|fun|play|sport +clownish|1 +(adj)|buffoonish|clowlike|zany|humorous |humourous +cloy|2 +(verb)|surfeit|supply|provide|render|furnish +(verb)|pall|satiate|sate|replete|fill +cloying|1 +(adj)|saccharine|syrupy|treacly|sweet +clozapine|1 +(noun)|Clozaril|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +clozaril|1 +(noun)|clozapine|Clozaril|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +cloze|1 +(adj)|diagnostic test|diagnostic assay +cloze procedure|1 +(noun)|cloze test|diagnostic test|diagnostic assay +cloze test|1 +(noun)|cloze procedure|diagnostic test|diagnostic assay +club|10 +(noun)|baseball club|ball club|nine|baseball team +(noun)|society|guild|gild|lodge|order|association +(noun)|stick +(noun)|clubhouse|building|edifice +(noun)|golf club|golf-club|golf equipment +(noun)|playing card +(noun)|cabaret|nightclub|nightspot|spot +(verb)|unite|unify +(verb)|meet|gather|assemble|forgather|foregather +(verb)|bludgeon|hit +club-head|3 +(noun)|golf-club head|club head|clubhead|head +(noun)| +(noun)| +club-moss|2 +(noun)|club moss|lycopod|fern ally +(noun)| +club car|1 +(noun)|lounge car|car|railcar|railway car|railroad car +club drug|1 +(noun)|controlled substance +club fungus|1 +(noun)|coral fungus +club head|3 +(noun)|golf-club head|club-head|clubhead|head +(noun)| +(noun)| +club member|1 +(noun)|member +club moss|2 +(noun)|club-moss|lycopod|fern ally +(noun)| +club sandwich|1 +(noun)|three-decker|triple-decker|sandwich +club soda|1 +(noun)|soda water|carbonated water|seltzer|sparkling water|drinking water +club steak|1 +(noun)|Delmonico steak|beefsteak +clubable|1 +(adj)|clubbable|sociable +clubbable|1 +(adj)|clubable|sociable +clubbing|1 +(noun)|symptom +clubbish|1 +(adj)|clubby|sociable +clubby|2 +(adj)|clubbish|sociable +(adj)|clannish|cliquish|snobbish|snobby|private +clubfoot|1 +(noun)|talipes|deformity|malformation|misshapenness +clubfooted|1 +(adj)|unshapely +clubhead|1 +(noun)|golf-club head|club head|club-head|head +clubhouse|1 +(noun)|club|building|edifice +clubmoss family|1 +(noun)|Lycopodiaceae|family Lycopodiaceae|fern family +clubroom|1 +(noun)|room +clubroot fungus|1 +(noun)|Plasmodiophora brassicae|fungus +cluck|2 +(noun)|cry +(verb)|click|clack|utter|emit|let out|let loose +clue|3 +(noun)|hint|indication|indicant +(noun)|clew|cue|evidence +(verb)|clew|wind|wrap|roll|twine +clue in|1 +(verb)|hint|suggest +clueless|1 +(adj)|uninformed +clumber|1 +(noun)|clumber spaniel|spaniel +clumber spaniel|1 +(noun)|clumber|spaniel +clump|7 +(noun)|bunch|cluster|clustering|agglomeration +(noun)|ball|clod|glob|lump|chunk|agglomeration +(noun)|thump|thumping|clunk|thud|sound +(verb)|clop|clunk|plunk|sound|go +(verb)|cluster|constellate|flock|meet|gather|assemble|forgather|foregather +(verb)|clomp|walk +(verb)|bunch|bunch up|bundle|cluster|form +clumsiness|3 +(noun)|awkwardness|ineptness|ineptitude|maladroitness|slowness|unskillfulness +(noun)|awkwardness|carriage|bearing|posture +(noun)|awkwardness|gracelessness|stiffness|inelegance +clumsy|4 +(adj)|gawky|clunky|ungainly|unwieldy|awkward +(adj)|awkward|cumbersome|inapt|inept|ill-chosen|infelicitous +(adj)|awkward|bunglesome|ungainly|unwieldy |unmanageable +(adj)|bungling|fumbling|incompetent|unskilled +clumsy person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +clunch|1 +(noun)|soil|dirt +clunk|2 +(noun)|thump|thumping|clump|thud|sound +(verb)|clop|clump|plunk|sound|go +clunky|1 +(adj)|gawky|clumsy|ungainly|unwieldy|awkward +clupea|1 +(noun)|Clupea|genus Clupea|fish genus +clupea harangus|1 +(noun)|herring|Clupea harangus|clupeid fish|clupeid|food fish +clupea harengus harengus|1 +(noun)|Atlantic herring|Clupea harengus harengus|herring|Clupea harangus +clupea harengus pallasii|1 +(noun)|Pacific herring|Clupea harengus pallasii|herring|Clupea harangus +clupea sprattus|1 +(noun)|brisling|sprat|Clupea sprattus|sardine +clupeid|1 +(noun)|clupeid fish|soft-finned fish|malacopterygian +clupeid fish|1 +(noun)|clupeid|soft-finned fish|malacopterygian +clupeidae|1 +(noun)|Clupeidae|family Clupeidae|fish family +clusia|1 +(noun)|tree +clusia flava|1 +(noun)|wild fig|Clusia flava|tree +clusia insignis|1 +(noun)|waxflower|Clusia insignis|air plant|epiphyte|aerophyte|epiphytic plant +clusia major|1 +(noun)|pitch apple|strangler fig|Clusia rosea|Clusia major|strangler|strangler tree +clusia rosea|1 +(noun)|pitch apple|strangler fig|Clusia rosea|Clusia major|strangler|strangler tree +clusiaceae|1 +(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family +cluster|3 +(noun)|bunch|clump|clustering|agglomeration +(verb)|constellate|flock|clump|meet|gather|assemble|forgather|foregather +(verb)|bunch|bunch up|bundle|clump|form +cluster bean|1 +(noun)|guar|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume|leguminous plant +cluster bomb|1 +(noun)|bomb +cluster bomblet|1 +(noun)|bomblet|bomb +cluster headache|1 +(noun)|histamine headache|headache|head ache|cephalalgia +clustered|3 +(adj)|gregarious +(adj)|bunched|bunchy|concentrated +(adj)|agglomerate|agglomerated|agglomerative|collective +clustered bellflower|1 +(noun)|Campanula glomerata|campanula|bellflower +clustered lady's slipper|1 +(noun)|Cypripedium fasciculatum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +clustered poppy mallow|1 +(noun)|Callirhoe triangulata|poppy mallow +clustering|1 +(noun)|bunch|clump|cluster|agglomeration +clutch|9 +(noun)|clasp|clench|clutches|grasp|grip|hold|grasping|taking hold|seizing|prehension +(noun)|temporary state +(noun)|brood +(noun)|batch|collection|aggregation|accumulation|assemblage +(noun)|clutch pedal|pedal|treadle|foot pedal|foot lever +(noun)|coupling|coupler +(verb)|seize|prehend|take|get hold of +(verb)|cling to|hold close|hold tight|hold|take hold +(verb)|seize|get hold of|overwhelm|overpower|sweep over|whelm|overcome|overtake +clutch bag|1 +(noun)|bag|handbag|pocketbook|purse +clutch pedal|1 +(noun)|clutch|pedal|treadle|foot pedal|foot lever +clutches|7 +(noun)|clasp|clench|clutch|grasp|grip|hold|grasping|taking hold|seizing|prehension +(noun)|clasp|clench|clutch|grasp|grip|hold|grasping|taking hold|seizing|prehension +(noun)|clutch|temporary state +(noun)|clutch|brood +(noun)|batch|clutch|collection|aggregation|accumulation|assemblage +(noun)|clutch|clutch pedal|pedal|treadle|foot pedal|foot lever +(noun)|clutch|coupling|coupler +clutter|3 +(noun)|jumble|muddle|mare's nest|welter|smother|disorderliness|disorder +(noun)|radar echo|noise|interference|disturbance +(verb)|clutter up|fill|fill up|make full +clutter up|1 +(verb)|clutter|fill|fill up|make full +cluttered|1 +(adj)|littered|untidy +clv|1 +(adj)|one hundred fifty-five|155|cardinal +clx|1 +(adj)|one hundred sixty|160|cardinal +clxv|1 +(adj)|one hundred sixty-five|165|cardinal +clxx|1 +(adj)|one hundred seventy|170|cardinal +clxxv|1 +(adj)|one hundred seventy-five|175|cardinal +clxxx|1 +(adj)|one hundred eighty|180|cardinal +clyde william tombaugh|1 +(noun)|Tombaugh|Clyde William Tombaugh|astronomer|uranologist|stargazer +clydesdale|1 +(noun)|Clydesdale|draft horse|draught horse|dray horse +clydesdale terrier|1 +(noun)|Clydesdale terrier|Skye terrier +clypeus|1 +(noun)|protective covering +clyster|1 +(noun)|enema|irrigation +clytemnestra|1 +(noun)|Clytemnestra|mythical being +clytocybe alba|1 +(noun)|Clitocybe robusta|Clytocybe alba|agaric +cm|2 +(noun)|centimeter|centimetre|metric linear unit +(noun)|curium|Cm|atomic number 96|metallic element|metal +cmb|1 +(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation +cmbr|1 +(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation +cmv|1 +(noun)|cytomegalovirus|CMV|herpes|herpes virus +cn gas|1 +(noun)|chloroacetophenone|CN gas|tear gas|teargas|lacrimator|lachrymator +cnemidophorus|1 +(noun)|Cnemidophorus|genus Cnemidophorus|reptile genus +cnemidophorus exsanguis|1 +(noun)|Chihuahuan spotted whiptail|Cnemidophorus exsanguis|whiptail|whiptail lizard +cnemidophorus sexlineatus|1 +(noun)|racerunner|race runner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail|whiptail lizard +cnemidophorus tesselatus|1 +(noun)|checkered whiptail|Cnemidophorus tesselatus|whiptail|whiptail lizard +cnemidophorus tigris|1 +(noun)|western whiptail|Cnemidophorus tigris|whiptail|whiptail lizard +cnemidophorus velox|1 +(noun)|plateau striped whiptail|Cnemidophorus velox|whiptail|whiptail lizard +cnicus|1 +(noun)|Cnicus|genus Cnicus|asterid dicot genus +cnicus benedictus|1 +(noun)|blessed thistle|sweet sultan|Cnicus benedictus|thistle +cnidaria|1 +(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum +cnidarian|1 +(noun)|coelenterate|invertebrate +cnidoscolus|1 +(noun)|Cnidoscolus|genus Cnidoscolus|rosid dicot genus +cnidoscolus urens|1 +(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +cnidosporidia|1 +(noun)|Cnidosporidia|subclass Cnidosporidia|class +cnossos|1 +(noun)|Knossos|Cnossos|Cnossus|town +cnossus|1 +(noun)|Knossos|Cnossos|Cnossus|town +cnpz|1 +(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization|terrorist group|foreign terrorist organization|FTO +cns|1 +(noun)|central nervous system|CNS|systema nervosum centrale|system +cnut|1 +(noun)|Canute|Cnut|Knut|Canute the Great|King of England|King of Great Britain +co|4 +(noun)|carbon monoxide|carbon monoxide gas|CO|monoxide +(noun)|cobalt|Co|atomic number 27|metallic element|metal +(noun)|conscientious objector|CO|dissenter|dissident|protester|objector|contestant +(noun)|Colorado|Centennial State|CO|American state +co-author|1 +(verb)|author +co-defendant|2 +(noun)|codefendant|defendant|suspect +(noun)| +co-ed|2 +(adj)|coeducational|integrated +(noun)|college girl|undergraduate|undergrad +co-educate|2 +(verb)|coeducate|educate +(verb)| +co-occur|2 +(verb)|coincide|cooccur|coexist +(verb)| +co-occur with|1 +(verb)|collocate with|construe with|cooccur with|go with|attach to|accompany|come with|go with +co-occurrence|2 +(noun)|accompaniment|concomitant|happening|occurrence|natural event +(noun)|concurrence|coincidence|conjunction|simultaneity|simultaneousness +co-op|3 +(noun)|cooperative|commercial enterprise +(noun)|chicken coop|coop|hencoop|henhouse|farm building +(noun)|cage|coop|enclosure +co-operative republic of guyana|1 +(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country|South American nation +co-opt|4 +(verb)|elect +(verb)|neutralize +(verb)|appoint|name|nominate|constitute +(verb)|take|accept +co-optation|2 +(noun)|co-option|election +(noun)|co-option|appointment|assignment|designation|naming +co-option|2 +(noun)|co-optation|election +(noun)|co-optation|appointment|assignment|designation|naming +co-ordinate|2 +(noun)|coordinate|number +(noun)| +co-respondent|2 +(noun)|corespondent|codefendant|co-defendant +(noun)| +co-sign|3 +(verb)|cosign|validate|formalize|formalise +(verb)|cosign|endorse|indorse +(verb)| +co-star|3 +(noun)|star|principal|lead +(verb)|star +(verb)|star +co-worker|1 +(noun)|colleague|fellow worker|workfellow|associate +co2|1 +(noun)|carbon dioxide|CO2|carbonic acid gas|dioxide|greenhouse gas|greenhouse emission +coach|7 +(noun)|manager|handler|trainer +(noun)|private instructor|tutor|teacher|instructor +(noun)|passenger car|carriage|car|railcar|railway car|railroad car +(noun)|four-in-hand|coach-and-four|carriage|equipage|rig +(noun)|bus|autobus|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|public transport +(verb)|train|teach|learn|instruct +(verb)|drive +coach-and-four|1 +(noun)|coach|four-in-hand|carriage|equipage|rig +coach dog|1 +(noun)|dalmatian|carriage dog|dog|domestic dog|Canis familiaris +coach horse|1 +(noun)|draft horse|draught horse|dray horse +coach house|1 +(noun)|carriage house|outbuilding +coach station|1 +(noun)|bus terminal|bus depot|bus station|terminal|terminus|depot +coachbuilder|1 +(noun)|craftsman|artisan|journeyman|artificer +coaching|1 +(noun)|coaching job|employment|work +coaching job|1 +(noun)|coaching|employment|work +coachman|1 +(noun)|driver +coachwhip|2 +(noun)|ocotillo|Jacob's staff|vine cactus|Fouquieria splendens|candlewood +(noun)|coachwhip snake|Masticophis flagellum|whip-snake|whip snake +coachwhip snake|1 +(noun)|coachwhip|Masticophis flagellum|whip-snake|whip snake +coact|1 +(verb)|act|move +coaction|1 +(noun)|collaboration|cooperation +coadjutor|1 +(noun)|assistant|helper|help|supporter +coagulable|1 +(adj)|thick +coagulant|1 +(noun)|coagulator|agent +coagulase|1 +(noun)|enzyme +coagulate|3 +(adj)|coagulated|curdled|grumous|grumose|thick +(verb)|clot|change state|turn +(verb)|clot|change|alter|modify +coagulated|2 +(adj)|coagulate|curdled|grumous|grumose|thick +(adj)|solidified|solid +coagulation|1 +(noun)|curdling|clotting|natural process|natural action|action|activity +coagulation factor|1 +(noun)|clotting factor|plasma protein +coagulator|1 +(noun)|coagulant|agent +coagulum|1 +(noun)|clot|ball|clod|glob|lump|clump|chunk +coal|5 +(noun)|fossil fuel|vegetable matter +(noun)|ember|fragment +(verb)|char|burn|combust +(verb)|supply|provide|render|furnish +(verb)|take in|gather in +coal-black|1 +(adj)|jet|jet-black|pitchy|sooty|achromatic +coal-tar creosote|1 +(noun)|creosote|organic compound +coal black|1 +(noun)|ebony|jet black|pitch black|sable|soot black|black|blackness +coal car|1 +(noun)|freight car +coal chute|1 +(noun)|chute|slide|slideway|sloping trough +coal gas|1 +(noun)|fuel +coal house|1 +(noun)|shed +coal industry|1 +(noun)|industry +coal mine|1 +(noun)|coalpit|mine +coal miner|1 +(noun)|collier|pitman|miner|mineworker +coal miner's lung|1 +(noun)|anthracosis|black lung|black lung disease|pneumoconiosis|pneumonoconiosis +coal oil|1 +(noun)|kerosene|kerosine|lamp oil|fuel|hydrocarbon +coal scuttle|1 +(noun)|scuttle|container +coal seam|1 +(noun)|seam|bed +coal shovel|1 +(noun)|hand shovel +coal tar|1 +(noun)|pitch|tar +coal tongs|1 +(noun)|fire tongs|tongs|pair of tongs|fire iron +coalbin|1 +(noun)|coalhole|bin +coalesce|2 +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|meld|combine|merge|change integrity +(verb)|unify|unite|merge +coalesced|1 +(adj)|amalgamate|amalgamated|consolidated|fused|united +coalescence|1 +(noun)|coalescency|coalition|concretion|conglutination|union|unification|uniting|conjugation|jointure +coalescency|1 +(noun)|coalescence|coalition|concretion|conglutination|union|unification|uniting|conjugation|jointure +coalface|1 +(noun)|face +coalfield|1 +(noun)|field +coalhole|1 +(noun)|coalbin|bin +coaling station|1 +(noun)|seaport|haven|harbor|harbour +coalition|3 +(noun)|alliance|alignment|alinement|organization|organisation +(noun)|fusion|union|unification +(noun)|coalescence|coalescency|concretion|conglutination|union|unification|uniting|conjugation|jointure +coalman|1 +(noun)|deliveryman|delivery boy|deliverer +coalpit|1 +(noun)|coal mine|mine +coaming|1 +(noun)|framework|frame|framing +coapt|2 +(verb)|conglutinate|close|fill up +(verb)|fasten|fix|secure +coarctate|1 +(adj)|enclosed +coarctation|2 +(noun)|constriction|compression|condensation|contraction +(noun)|narrowing +coarse|4 +(adj)|coarse |coarse-grained|farinaceous|coarse-grained|grainy|granular|granulose|gritty|mealy|sandy|granulated|loose|open|rough|unsmooth +(adj)|common|rough-cut|uncouth|vulgar|unrefined +(adj)|common|inferior +(adj)|crude|earthy|gross|vulgar|indecent +coarse-grained|2 +(adj)|farinaceous|grainy|granular|granulose|gritty|mealy|sandy|coarse +(adj)|coarse +coarsen|2 +(verb)|change|alter|modify +(verb)|change|alter|modify +coarsened|1 +(adj)|inferior +coarseness|3 +(noun)|graininess|granularity|roughness +(noun)|nubbiness|tweediness|roughness +(noun)|commonness|grossness|vulgarity|vulgarism|raunch|inelegance +coast|5 +(noun)|seashore|seacoast|sea-coast|shore +(noun)|slope|incline|side +(noun)|view|aspect|prospect|scene|vista|panorama +(noun)|slide|glide|motion|movement|move +(verb)|glide +coast banksia|1 +(noun)|honeysuckle|Australian honeysuckle|Banksia integrifolia|banksia +coast boykinia|1 +(noun)|Boykinia elata|Boykinia occidentalis|wildflower|wild flower +coast lily|1 +(noun)|Lilium maritinum|lily +coast live oak|1 +(noun)|California live oak|Quercus agrifolia|live oak +coast mountains|1 +(noun)|Coast Range|Coast Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +coast polypody|1 +(noun)|leatherleaf|leathery polypody|Polypodium scouleri|polypody +coast range|1 +(noun)|Coast Range|Coast Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +coast redwood|1 +(noun)|California redwood|Sequoia sempervirens|sequoia|redwood +coast rhododendron|1 +(noun)|Rhododendron californicum|rhododendron +coast white cedar|1 +(noun)|southern white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar|cedar tree +coastal|2 +(adj)|shore +(adj)|coastal |coastwise|inshore|seaward|maritime +coastal diving bird|1 +(noun)|seabird|sea bird|seafowl +coastal plain|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +coastal rein orchid|1 +(noun)|Habenaria greenei|rein orchid|rein orchis +coaster|3 +(noun)|resident|occupant|occupier +(noun)|mover +(noun)|protective covering|protective cover|protection +coaster brake|1 +(noun)|brake +coaster wagon|1 +(noun)|wagon|wheeled vehicle +coastguard|1 +(noun)|military service|armed service|service +coastguardsman|1 +(noun)|bluejacket|navy man|sailor|sailor boy +coastland|1 +(noun)|land|ground|soil +coastline|1 +(noun)|outline|lineation +coastwise|1 +(adj)|coastal +coat|6 +(noun)|overgarment|outer garment +(noun)|coating|covering +(noun)|pelage|hair +(verb)|surface|cover +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +(verb)|cake|cover|spread over +coat-of-mail shell|1 +(noun)|chiton|sea cradle|polyplacophore|mollusk|mollusc|shellfish +coat button|1 +(noun)|button +coat closet|1 +(noun)|wardrobe|closet|press +coat hanger|1 +(noun)|clothes hanger|dress hanger|hanger +coat of arms|1 +(noun)|arms|blazon|blazonry|heraldry +coat of mail|1 +(noun)|body armor|body armour|suit of armor|suit of armour|cataphract|armor|armour +coat of paint|1 +(noun)|paint|coating|coat +coat rack|2 +(noun)|coatrack|hatrack|rack +(noun)| +coat stand|1 +(noun)|clothes tree|coat tree|pole +coat tree|1 +(noun)|clothes tree|coat stand|pole +coatdress|1 +(noun)|dress|frock +coated|2 +(adj)|coated |backed|glazed|oily +(adj)|clothed |clad +coatee|1 +(noun)|coat +coati|1 +(noun)|coati-mondi|coati-mundi|coon cat|Nasua narica|procyonid +coati-mondi|1 +(noun)|coati|coati-mundi|coon cat|Nasua narica|procyonid +coati-mundi|1 +(noun)|coati|coati-mondi|coon cat|Nasua narica|procyonid +coating|4 +(noun)|coat|covering +(noun)|finish|finishing|decorativeness +(noun)|fabric|cloth|material|textile +(noun)|application|covering|manual labor|manual labour +coatrack|1 +(noun)|coat rack|hatrack|rack +coatroom|1 +(noun)|cloakroom|room +coats land|1 +(noun)|Coats Land|geographical area|geographic area|geographical region|geographic region +coattail|1 +(noun)|flap +coattails effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +coauthor|1 +(noun)|joint author|writer|author +coax|2 +(noun)|coaxial cable|coax cable|cable|line|transmission line +(verb)|wheedle|cajole|palaver|blarney|sweet-talk|inveigle|persuade +coax cable|1 +(noun)|coaxial cable|coax|cable|line|transmission line +coaxal|1 +(adj)|coaxial|concentric |concentrical|homocentric +coaxer|1 +(noun)|wheedler|persuader|inducer +coaxial|1 +(adj)|coaxal|concentric |concentrical|homocentric +coaxial cable|1 +(noun)|coax|coax cable|cable|line|transmission line +coaxing|2 +(adj)|ingratiatory|persuasive +(noun)|blarney|soft soap|sweet talk|flattery +coaxingly|1 +(adv)|cajolingly +cob|4 +(noun)|hazelnut|filbert|cobnut|edible nut +(noun)|harness horse +(noun)|black-backed gull|great black-backed gull|Larus marinus|gull|seagull|sea gull +(noun)|swan +cobalamin|1 +(noun)|vitamin B12|cyanocobalamin|antipernicious anemia factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +cobalt|1 +(noun)|Co|atomic number 27|metallic element|metal +cobalt 60|1 +(noun)|cobalt|Co|atomic number 27 +cobalt bloom|1 +(noun)|erythrite|mineral +cobalt blue|2 +(noun)|greenish blue|aqua|aquamarine|turquoise|peacock blue|blue|blueness +(noun)|cobalt ultramarine|pigment +cobalt ultramarine|1 +(noun)|cobalt blue|pigment +cobaltite|1 +(noun)|mineral +cobber|1 +(noun)|buddy|brother|chum|crony|pal|sidekick +cobble|3 +(noun)|cobblestone|sett|paving stone +(verb)|pave +(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +cobble together|1 +(verb)|cobble up|compose|compile +cobble up|1 +(verb)|cobble together|compose|compile +cobbler|3 +(noun)|shoemaker|maker|shaper +(noun)|highball +(noun)|deep-dish pie|pie +cobbler's last|1 +(noun)|last|shoemaker's last|holding device +cobblers|5 +(noun)|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|testis|testicle|orchis|ball|ballock|bollock|nut|egg +(noun)|cobbler|shoemaker|maker|shaper +(noun)|cobbler|highball +(noun)|deep-dish pie|cobbler|pie +cobblestone|1 +(noun)|cobble|sett|paving stone +cobbling|1 +(noun)|shoemaking|shoe repairing|trade|craft +cobia|1 +(noun)|Rachycentron canadum|sergeant fish|percoid fish|percoid|percoidean +cobitidae|1 +(noun)|Cobitidae|family Cobitidae|fish family +cobnut|2 +(noun)|filbert|Corylus avellana|Corylus avellana grandis|hazelnut|hazel|hazelnut tree +(noun)|hazelnut|filbert|cob|edible nut +cobol|1 +(noun)|COBOL|programming language|programing language +cobra|1 +(noun)|elapid|elapid snake +cobweb|2 +(noun)|gossamer|fibril|filament|strand +(noun)|spider web|spider's web +cobwebby|1 +(adj)|diaphanous|filmy|gauzy|gossamer|see-through|sheer|transparent|vaporous|thin +coca|3 +(noun)|Erythroxylon coca|shrub|bush +(noun)|Coca|Imogene Coca|comedienne +(noun)|plant product +coca cola|1 +(noun)|Coca Cola|Coke|cola|dope +cocain|1 +(noun)|cocaine|hard drug +cocaine|1 +(noun)|cocain|hard drug +cocaine addict|1 +(noun)|drug addict|junkie|junky +cocaine addiction|1 +(noun)|drug addiction|white plague +cocainise|1 +(verb)|cocainize|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +cocainize|1 +(verb)|cocainise|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +cocarboxylase|1 +(noun)|thiamine pyrophosphate|coenzyme +coccal|1 +(adj)|eubacteria|eubacterium|true bacteria +cocci|2 +(noun)|coccus|eubacteria|eubacterium|true bacteria +(noun)|coccus|eubacteria|eubacterium|true bacteria +coccid insect|1 +(noun)|homopterous insect|homopteran +coccidae|1 +(noun)|Coccidae|family Coccidae|arthropod family +coccidia|1 +(noun)|Coccidia|order Coccidia|animal order +coccidioidomycosis|1 +(noun)|coccidiomycosis|valley fever|desert rheumatism|fungal infection|mycosis +coccidiomycosis|1 +(noun)|coccidioidomycosis|valley fever|desert rheumatism|fungal infection|mycosis +coccidiosis|1 +(noun)|infestation +coccidium|1 +(noun)|eimeria|sporozoan +coccinellidae|1 +(noun)|Coccinellidae|family Coccinellidae|arthropod family +coccobacillus|1 +(noun)|eubacteria|eubacterium|true bacteria +coccoid|1 +(adj)|round |circular +coccoidea|1 +(noun)|Coccoidea|superfamily Coccoidea|arthropod family +coccothraustes|1 +(noun)|Coccothraustes|genus Coccothraustes|bird genus +coccothraustes coccothraustes|1 +(noun)|hawfinch|Coccothraustes coccothraustes|grosbeak|grossbeak +cocculus|1 +(noun)|Cocculus|genus Cocculus|magnoliid dicot genus +cocculus carolinus|1 +(noun)|Carolina moonseed|Cocculus carolinus|moonseed +coccus|1 +(noun)|cocci|eubacteria|eubacterium|true bacteria +coccus hesperidum|1 +(noun)|brown soft scale|Coccus hesperidum|soft scale +coccygeal|1 +(adj)|bone|os +coccygeal nerve|1 +(noun)|nervus coccygeus|spinal nerve|nervus spinalis +coccygeal plexus|1 +(noun)|plexus coccygeus|nerve plexus +coccygeal vertebra|1 +(noun)|caudal vertebra|vertebra +coccyx|1 +(noun)|tail bone|bone|os +coccyzus|1 +(noun)|Coccyzus|genus Coccyzus|bird genus +coccyzus erythropthalmus|1 +(noun)|black-billed cuckoo|Coccyzus erythropthalmus|cuckoo +cochimi|2 +(noun)|Cochimi|Hokan|Hoka +(noun)|Cochimi|Yuman +cochin|1 +(noun)|cochin china|domestic fowl|fowl|poultry +cochin china|1 +(noun)|cochin|domestic fowl|fowl|poultry +cochineal|2 +(noun)|dye|dyestuff +(noun)|cochineal insect|Dactylopius coccus|scale insect +cochineal insect|1 +(noun)|cochineal|Dactylopius coccus|scale insect +cochise|1 +(noun)|Cochise|Indian chief|Indian chieftain|Apache +cochlea|1 +(noun)|tube|tube-shaped structure +cochlear|1 +(adj)|tube|tube-shaped structure +cochlearia|1 +(noun)|Cochlearia|genus Cochlearia|dilleniid dicot genus +cochlearia officinalis|1 +(noun)|scurvy grass|common scurvy grass|Cochlearia officinalis|cress|cress plant +cochlearius|1 +(noun)|Cochlearius|genus Cochlearius|bird genus +cochlearius cochlearius|1 +(noun)|boatbill|boat-billed heron|broadbill|Cochlearius cochlearius|heron +cochon de lait|1 +(noun)|suckling pig|pork|porc +cochran|1 +(noun)|Cochran|Jacqueline Cochran|aviator|aeronaut|airman|flier|flyer +cock|8 +(noun)|prick|dick|shaft|pecker|peter|tool|putz|penis|phallus|member +(noun)|stopcock|turncock|faucet +(noun)|hammer|striker +(noun)|rooster|chicken|Gallus gallus +(noun)|bird +(verb)|cant|cant over|tilt|slant|pitch +(verb)|put|set|place|pose|position|lay +(verb)|swagger|ruffle|prance|strut|sashay|walk +cock's eggs|1 +(noun)|Salpichroa organifolia|Salpichroa rhomboidea|vine +cock-a-doodle-doo|1 +(noun)|crow +cock-a-hoop|1 +(adj)|boastful|braggart|bragging|braggy|big|crowing|self-aggrandizing|self-aggrandising|proud +cock-a-leekie|1 +(noun)|cocky-leeky|soup +cock-and-bull story|1 +(noun)|fairytale|fairy tale|fairy story|song and dance|fib|story|tale|tarradiddle|taradiddle +cock of the rock|2 +(noun)|Rupicola peruviana|cotinga|chatterer +(noun)|Rupicola rupicola|cotinga|chatterer +cock sucking|1 +(noun)|blowjob|fellatio|fellation +cock up|1 +(verb)|prick up|prick|rear|erect +cockade|1 +(noun)|decoration|ornament|ornamentation +cockaigne|1 +(noun)|Cockaigne|imaginary place|mythical place +cockamamie|1 +(adj)|cockamamy|goofy|sappy|silly|wacky|whacky|zany|unreasonable|foolish +cockamamy|1 +(adj)|cockamamie|goofy|sappy|silly|wacky|whacky|zany|unreasonable|foolish +cockateel|1 +(noun)|cockatiel|cockatoo parrot|Nymphicus hollandicus|parrot +cockatiel|1 +(noun)|cockateel|cockatoo parrot|Nymphicus hollandicus|parrot +cockatoo|1 +(noun)|parrot +cockatoo parrot|1 +(noun)|cockateel|cockatiel|Nymphicus hollandicus|parrot +cockatrice|1 +(noun)|mythical monster|mythical creature +cockchafer|1 +(noun)|May bug|May beetle|Melolontha melolontha|melolonthid beetle +cockcroft|1 +(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist +cockcroft-walton accelerator|1 +(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator|particle accelerator|atom smasher +cockcroft-walton voltage multiplier|1 +(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator|particle accelerator|atom smasher +cockcroft and walton accelerator|1 +(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator|particle accelerator|atom smasher +cockcroft and walton voltage multiplier|1 +(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator|particle accelerator|atom smasher +cockcrow|1 +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|hour|time of day +cocked hat|1 +(noun)|hat|chapeau|lid +cocker|2 +(noun)|cocker spaniel|English cocker spaniel|spaniel +(verb)|pamper|featherbed|cosset|baby|coddle|mollycoddle|spoil|indulge|treat|handle|do by +cocker spaniel|1 +(noun)|English cocker spaniel|cocker|spaniel +cockerel|1 +(noun)|cock|rooster +cockeyed|3 +(adj)|askew|awry|lopsided|wonky|skew-whiff|crooked +(adj)|absurd|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish +(adj)|besotted|blind drunk|blotto|crocked|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +cockfight|1 +(noun)|match +cockfighting|1 +(noun)|blood sport +cockhorse|1 +(noun)|plaything|toy +cockiness|1 +(noun)|bumptiousness|pushiness|forwardness|assertiveness|self-assertiveness +cockle|4 +(noun)|shellfish +(noun)|bivalve|pelecypod|lamellibranch +(verb)|ripple|ruffle|riffle|undulate|flow|flux +(verb)|pucker|rumple|crumple|knit|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +cockle-bur|2 +(noun)|cocklebur|cockleburr|cockle-burr|weed +(noun)|great burdock|greater burdock|cocklebur|Arctium lappa|burdock|clotbur +cockle-burr|2 +(noun)|cocklebur|cockle-bur|cockleburr|weed +(noun)| +cocklebur|2 +(noun)|cockle-bur|cockleburr|cockle-burr|weed +(noun)|great burdock|greater burdock|Arctium lappa|burdock|clotbur +cockleburr|1 +(noun)|cocklebur|cockle-bur|cockle-burr|weed +cockleshell|1 +(noun)|small boat +cockloft|1 +(noun)|loft|attic|garret +cockney|4 +(adj)|English|English language +(adj)|Cockney|Londoner +(noun)|Cockney|Londoner +(noun)|English|English language +cockpit|3 +(noun)|compartment +(noun)|enclosure +(noun)|seat +cockroach|1 +(noun)|roach|dictyopterous insect +cockscomb|4 +(noun)|common cockscomb|Celosia cristata|Celosia argentea cristata|herb|herbaceous plant +(noun)|coxcomb|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +(noun)|coxcomb|cap +(noun)|comb|coxcomb|crest +cocksfoot|1 +(noun)|orchard grass|cockspur|Dactylis glomerata|grass +cockspur|2 +(noun)|orchard grass|cocksfoot|Dactylis glomerata|grass +(noun)|Pisonia aculeata|tree +cockspur hawthorn|1 +(noun)|cockspur thorn|Crataegus crus-galli|hawthorn|haw +cockspur thorn|1 +(noun)|cockspur hawthorn|Crataegus crus-galli|hawthorn|haw +cocksucker|2 +(noun)|sensualist +(noun)|asshole|bastard|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +cocksure|1 +(adj)|overconfident|positive|confident +cocksureness|1 +(noun)|certitude|overconfidence|certainty +cocktail|2 +(noun)|mixed drink +(noun)|appetizer|appetiser|starter +cocktail dress|1 +(noun)|sheath|dress|frock +cocktail lounge|1 +(noun)|barroom|bar|saloon|ginmill|taproom +cocktail party|1 +(noun)|party +cocktail sauce|1 +(noun)|seafood sauce|sauce +cocktail shaker|1 +(noun)|shaker +cocktail table|1 +(noun)|coffee table|table +cockup|1 +(noun)|ballup|balls-up|mess-up|mistake|error|fault +cocky|1 +(adj)|assertive +cocky-leeky|1 +(noun)|cock-a-leekie|soup +coco|1 +(noun)|coconut|coconut palm|coco palm|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +coco de macao|1 +(noun)|babassu|babassu palm|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +coco palm|1 +(noun)|coconut|coconut palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +coco plum|2 +(noun)|coco plum tree|cocoa plum|icaco|Chrysobalanus icaco|fruit tree +(noun)|cocoa plum|icaco|edible fruit +coco plum tree|1 +(noun)|coco plum|cocoa plum|icaco|Chrysobalanus icaco|fruit tree +cocoa|2 +(noun)|chocolate|hot chocolate|drinking chocolate|beverage|drink|drinkable|potable +(noun)|foodstuff|food product +cocoa bean|1 +(noun)|cacao bean|cacao|cacao tree|chocolate tree|Theobroma cacao +cocoa butter|2 +(noun)|fat +(noun)|chocolate +cocoa palm|1 +(noun)|coconut|coconut palm|coco palm|coco|coconut tree|Cocos nucifera|palm|palm tree +cocoa plum|2 +(noun)|coco plum|coco plum tree|icaco|Chrysobalanus icaco|fruit tree +(noun)|coco plum|icaco|edible fruit +cocoa powder|1 +(noun)|chocolate +cocoanut|1 +(noun)|coconut|edible nut +cocobolo|1 +(noun)|Dalbergia retusa|tree +coconspirator|1 +(noun)|conspirator|plotter|machinator|criminal|felon|crook|outlaw|malefactor +coconspire|1 +(verb)|conspire|cabal|complot|conjure|machinate +coconut|3 +(noun)|coconut meat|food +(noun)|cocoanut|edible nut +(noun)|coconut palm|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +coconut cake|1 +(noun)|cake +coconut cream|1 +(noun)|coconut milk|milk +coconut macaroon|1 +(noun)|macaroon +coconut meat|1 +(noun)|coconut|food +coconut milk|2 +(noun)|coconut cream|milk +(noun)|coconut water|milk +coconut oil|1 +(noun)|copra oil|vegetable oil|oil +coconut palm|1 +(noun)|coconut|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +coconut tree|1 +(noun)|coconut|coconut palm|coco palm|coco|cocoa palm|Cocos nucifera|palm|palm tree +coconut water|1 +(noun)|coconut milk|milk +cocoon|3 +(noun)|natural object +(verb)|retreat +(verb)|envelop|enfold|enwrap|wrap|enclose +cocooning|1 +(noun)|seclusion +cocopa|2 +(noun)|Cocopa|Cocopah|Hokan|Hoka +(noun)|Cocopa|Cocopah|Yuman +cocopah|2 +(noun)|Cocopa|Cocopah|Hokan|Hoka +(noun)|Cocopa|Cocopah|Yuman +cocos|2 +(noun)|Cocos|genus Cocos|monocot genus|liliopsid genus +(noun)|coconut|coconut palm|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +cocos nucifera|1 +(noun)|coconut|coconut palm|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm|palm tree +cocoswood|1 +(noun)|cocuswood|granadilla wood|wood +cocotte|1 +(noun)|prostitute|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +cocoyam|2 +(noun)|taro|dasheen|eddo|root +(noun)|taro|taro root|dasheen|edda|root vegetable +cocozelle|2 +(noun)|Italian vegetable marrow|marrow|marrow squash|vegetable marrow +(noun)|summer squash +cocteau|1 +(noun)|Cocteau|Jean Cocteau|writer|author|film maker|filmmaker|film producer|movie maker +cocus|1 +(noun)|Cocus|Titan +cocuswood|1 +(noun)|cocoswood|granadilla wood|wood +cocytus|1 +(noun)|Cocytus|River Cocytus|river +cod|7 +(adj)|collect|due |owed +(noun)|pod|seedcase|husk +(noun)|codfish|saltwater fish +(noun)|codfish|gadoid|gadoid fish +(verb)|gull|dupe|slang|befool|fool|put on|take in|put one over|put one across|deceive|betray|lead astray +(verb)|tease|razz|rag|tantalize|tantalise|bait|taunt|twit|rally|ride|mock|bemock +(adv)|C.O.D.|COD|cash on delivery +cod-liver oil|2 +(noun)|cod liver oil|animal oil +(noun)| +cod liver oil|1 +(noun)|cod-liver oil|animal oil +cod oil|1 +(noun)|cod-liver oil|cod liver oil +coda|1 +(noun)|finale|conclusion|end|close|closing|ending +codariocalyx|1 +(noun)|Codariocalyx|genus Codariocalyx|rosid dicot genus +codariocalyx motorius|1 +(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub|bush +coddle|2 +(verb)|pamper|featherbed|cosset|cocker|baby|mollycoddle|spoil|indulge|treat|handle|do by +(verb)|cook +coddled|1 +(adj)|pampered|spoiled|soft +coddled egg|1 +(noun)|boiled egg|dish +coddler|1 +(noun)|pamperer|spoiler|mollycoddler|person|individual|someone|somebody|mortal|human|soul +code|5 +(noun)|codification|written communication|written language +(noun)|coding system +(noun)|computer code|coding system +(verb)|tag|label|mark +(verb)|encode|encipher|cipher|cypher|encrypt|inscribe|write in code|write +code flag|1 +(noun)|nautical signal flag|flag|signal flag +code of behavior|1 +(noun)|code of conduct|convention|normal|pattern|rule|formula +code of conduct|1 +(noun)|code of behavior|convention|normal|pattern|rule|formula +codefendant|1 +(noun)|co-defendant|defendant|suspect +codeine|1 +(noun)|opiate|analgesic|anodyne|painkiller|pain pill|antitussive +coder|1 +(noun)|programmer|computer programmer|software engineer|engineer|applied scientist|technologist|computer user +codetalker|1 +(noun)|windtalker|secret agent|intelligence officer|intelligence agent|operative +codex|2 +(noun)|list|listing +(noun)|leaf-book|manuscript|holograph +codfish|2 +(noun)|cod|saltwater fish +(noun)|cod|gadoid|gadoid fish +codfish ball|1 +(noun)|codfish cake|fish cake|fish ball +codfish cake|1 +(noun)|codfish ball|fish cake|fish ball +codger|1 +(noun)|old codger|old man|greybeard|graybeard|Methuselah +codiaeum|1 +(noun)|Codiaeum|genus Codiaeum|rosid dicot genus +codiaeum variegatum|1 +(noun)|croton|Codiaeum variegatum|shrub|bush +codicil|1 +(noun)|appendix +codification|2 +(noun)|systematization|systematisation|rationalization|rationalisation +(noun)|code|written communication|written language +codified|1 +(adj)|statute|written +codify|1 +(verb)|systematize|systematise|systemize|systemise +coding|1 +(noun)|cryptography|secret writing|writing|committal to writing +coding dna|1 +(noun)|exon|coding DNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +coding system|1 +(noun)|writing +codlin moth|1 +(noun)|codling moth|Carpocapsa pomonella|tortricid|tortricid moth +codling|1 +(noun)|cod|codfish +codling moth|1 +(noun)|codlin moth|Carpocapsa pomonella|tortricid|tortricid moth +codlins-and-cream|1 +(noun)|hairy willowherb|Epilobium hirsutum|willowherb +codon|1 +(noun)|sequence +codpiece|1 +(noun)|flap +codswallop|1 +(noun)|folderol|rubbish|tripe|trumpery|trash|wish-wash|applesauce|drivel|garbage +cody|1 +(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman|promoter|impresario +coeducate|1 +(verb)|co-educate|educate +coeducation|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +coeducational|1 +(adj)|co-ed|integrated +coefficient|1 +(noun)|constant +coefficient of absorption|1 +(noun)|absorption coefficient|absorptance|coefficient +coefficient of concordance|1 +(noun)|Kendall test +coefficient of correlation|1 +(noun)|correlation coefficient|correlation|parametric statistic +coefficient of drag|1 +(noun)|drag coefficient|coefficient +coefficient of elasticity|1 +(noun)|modulus of elasticity|elastic modulus|modulus +coefficient of expansion|1 +(noun)|expansivity|coefficient +coefficient of friction|1 +(noun)|coefficient +coefficient of mutual induction|1 +(noun)|mutual inductance|coefficient +coefficient of reflection|1 +(noun)|reflection factor|reflectance|reflectivity|coefficient +coefficient of self induction|1 +(noun)|self-inductance|coefficient +coefficient of viscosity|1 +(noun)|absolute viscosity|dynamic viscosity|coefficient +coelacanth|1 +(noun)|Latimeria chalumnae|crossopterygian|lobefin|lobe-finned fish +coelenterata|1 +(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum +coelenterate|1 +(noun)|cnidarian|invertebrate +coelenterate family|1 +(noun)|family +coelenterate genus|1 +(noun)|genus +coelenteron|1 +(noun)|sac +coeliac|1 +(adj)|celiac|cavity|bodily cavity|cavum +coeliac plexus|1 +(noun)|solar plexus|plexus celiacus|abdominal nerve plexus|nerve plexus +coeloglossum|1 +(noun)|Coeloglossum|genus Coeloglossum|monocot genus|liliopsid genus +coeloglossum bracteatum|1 +(noun)|satyr orchid|Coeloglossum bracteatum|orchid|orchidaceous plant +coeloglossum viride|1 +(noun)|frog orchid|Coeloglossum viride|orchid|orchidaceous plant +coelogyne|1 +(noun)|orchid|orchidaceous plant +coelom|1 +(noun)|celom|celoma|cavity|bodily cavity|cavum +coelophysis|1 +(noun)|ceratosaur|ceratosaurus +coelostat|1 +(noun)|optical device +coenobite|1 +(noun)|cenobite|religious +coenobitic|1 +(adj)|cenobitic |cenobitical|coenobitical|religious +coenobitical|1 +(adj)|cenobitic |coenobitic|cenobitical|religious +coenzyme|1 +(noun)|molecule +coenzyme a|1 +(noun)|coenzyme A|coenzyme +coenzyme q|1 +(noun)|ubiquinone|coenzyme Q|quinone|benzoquinone|coenzyme +coequal|1 +(adj)|equal +coerce|1 +(verb)|hale|squeeze|pressure|force|compel|oblige|obligate +coercion|2 +(noun)|enforcement +(noun)|compulsion|causing|causation +coercive|1 +(adj)|powerful +coereba|1 +(noun)|Coereba|genus Coereba|bird genus +coerebidae|1 +(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family +coetaneous|1 +(adj)|coeval|contemporaneous|synchronous |synchronal|synchronic +coeur d'alene|1 +(noun)|Coeur d'Alene|town +coeval|2 +(adj)|coetaneous|contemporaneous|synchronous |synchronal|synchronic +(noun)|contemporary|peer|equal|match|compeer +coevals|2 +(noun)|contemporaries|generation|people +(noun)|contemporary|coeval|peer|equal|match|compeer +coexist|1 +(verb)|exist|be +coexistence|1 +(noun)|being|beingness|existence +coexistent|1 +(adj)|coexisting|synchronous |synchronal|synchronic +coexisting|1 +(adj)|coexistent|synchronous |synchronal|synchronic +coextensive|1 +(adj)|coterminous|conterminous|commensurate +cofactor|1 +(noun)|compound|chemical compound +coffea|1 +(noun)|Coffea|genus Coffea|asterid dicot genus +coffea arabica|1 +(noun)|Arabian coffee|Coffea arabica|coffee|coffee tree +coffea canephora|1 +(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee|coffee tree +coffea liberica|1 +(noun)|Liberian coffee|Coffea liberica|coffee|coffee tree +coffea robusta|1 +(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee|coffee tree +coffee|4 +(noun)|java|beverage|drink|drinkable|potable +(noun)|coffee tree|tree +(noun)|coffee bean|coffee berry|seed +(noun)|chocolate|deep brown|umber|burnt umber|brown|brownness +coffee-table book|1 +(noun)|book|volume +coffee bar|1 +(noun)|cafe|coffeehouse|coffee shop|restaurant|eating house|eating place +coffee bean|1 +(noun)|coffee berry|coffee|seed +coffee berry|2 +(noun)|coffee bean|coffee|seed +(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn +coffee blight|1 +(noun)|blight +coffee break|1 +(noun)|tea break|bite|collation|snack +coffee cake|2 +(noun)|coffeecake|cake +(noun)| +coffee can|1 +(noun)|can|tin|tin can +coffee capuccino|1 +(noun)|capuccino|capuccino coffee|coffee|java +coffee cream|1 +(noun)|light cream|single cream|cream +coffee cup|1 +(noun)|cup +coffee fern|1 +(noun)|Pellaea andromedifolia|cliff brake|cliff-brake|rock brake +coffee filter|1 +(noun)|filter +coffee fungus|1 +(noun)|Pellicularia koleroga|fungus +coffee grinder|1 +(noun)|coffee mill|mill|grinder +coffee grounds|1 +(noun)|dregs|grounds|settlings +coffee liqueur|1 +(noun)|liqueur|cordial +coffee maker|1 +(noun)|kitchen appliance +coffee mill|1 +(noun)|coffee grinder|mill|grinder +coffee mug|1 +(noun)|mug +coffee ring|1 +(noun)|coffeecake|coffee cake +coffee roll|1 +(noun)|sweet roll|bun|roll +coffee rose|1 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|Tabernaemontana divaricate|shrub|bush +coffee royal|1 +(noun)|cafe royale|coffee|java +coffee senna|1 +(noun)|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna +coffee shop|1 +(noun)|cafe|coffeehouse|coffee bar|restaurant|eating house|eating place +coffee stall|1 +(noun)|stall|stand|sales booth +coffee substitute|1 +(noun)|coffee|java +coffee table|1 +(noun)|cocktail table|table +coffee tree|1 +(noun)|coffee|tree +coffee urn|1 +(noun)|urn +coffeeberry|1 +(noun)|California buckthorn|California coffee|Rhamnus californicus|buckthorn +coffeecake|1 +(noun)|coffee cake|cake +coffeehouse|1 +(noun)|cafe|coffee shop|coffee bar|restaurant|eating house|eating place +coffeepot|1 +(noun)|pot +coffer|2 +(noun)|caisson|lacuna|panel +(noun)|chest +cofferdam|1 +(noun)|caisson|pneumatic caisson|chamber +coffey still|1 +(noun)|Coffey still|still +coffin|2 +(noun)|casket|box +(verb)|put|set|place|pose|position|lay +coffin nail|1 +(noun)|cigarette|cigaret|butt|fag|roll of tobacco|smoke +cofounder|1 +(noun)|founder|beginner|founding father|father +cog|3 +(noun)|sprocket|tooth +(verb)|roll out|roll +(verb)|join|bring together +cog railway|1 +(noun)|rack railway|railway|railroad|railroad line|railway line|railway system +cogency|2 +(noun)|relevance|relevancy +(noun)|validity|rigor|rigour|credibility|credibleness|believability +cogent|2 +(adj)|potent|powerful|influential +(adj)|telling|weighty|forceful +cogent evidence|1 +(noun)|proof|evidence|grounds +cogged|1 +(adj)|toothed +coggle|2 +(verb)|toddle|totter|dodder|paddle|waddle|walk +(verb)|wobble|move +cogitable|1 +(adj)|ponderable|thinkable +cogitate|2 +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +(verb)|think|cerebrate +cogitation|2 +(noun)|idea|thought +(noun)|study|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +cogitative|2 +(adj)|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +(adj)|thoughtful +cognac|1 +(noun)|Cognac|brandy +cognate|5 +(adj)|connate|related |related to +(adj)|related |related to +(adj)|akin|blood-related|consanguine|consanguineous|kin|related +(noun)|blood relation|blood relative|sib|relative|relation +(noun)|cognate word|word +cognate word|1 +(noun)|cognate|word +cognation|2 +(noun)|matrilineage|enation|unilateral descent +(noun)|consanguinity|blood kinship|kinship|family relationship|relationship +cognisable|1 +(adj)|knowable |cognizable|cognoscible +cognisance|1 +(noun)|awareness|consciousness|cognizance|knowingness|knowing +cognisant|1 +(adj)|cognizant +cognise|1 +(verb)|know|cognize +cognition|1 +(noun)|knowledge|noesis|psychological feature +cognitive|1 +(adj)|psychological feature +cognitive content|1 +(noun)|content|mental object|cognition|knowledge|noesis +cognitive factor|1 +(noun)|cognition|knowledge|noesis +cognitive neuroscience|1 +(noun)|neuroscience +cognitive neuroscientist|1 +(noun)|cognitive scientist +cognitive operation|1 +(noun)|process|cognitive process|mental process|operation|cognition|knowledge|noesis +cognitive process|1 +(noun)|process|mental process|operation|cognitive operation|cognition|knowledge|noesis +cognitive psychology|1 +(noun)|psychology|psychological science +cognitive science|1 +(noun)|science|scientific discipline +cognitive scientist|1 +(noun)|scientist|man of science +cognitive state|1 +(noun)|state of mind|state +cognizable|1 +(adj)|knowable |cognisable|cognoscible +cognizance|3 +(noun)|awareness|consciousness|cognisance|knowingness|knowing +(noun)|ken|knowing +(noun)|perception +cognizant|1 +(adj)|cognizant +cognize|1 +(verb)|know|cognise +cognomen|2 +(noun)|nickname|moniker|sobriquet|soubriquet|appellation|denomination|designation|appellative +(noun)|surname|family name|last name|name +cognoscenti|1 +(noun)|connoisseur|authority +cognoscible|1 +(adj)|knowable |cognizable|cognisable +cognovit judgement|1 +(noun)|confession of judgment|confession of judgement|cognovit judgment|judgment|judgement|judicial decision +cognovit judgment|1 +(noun)|confession of judgment|confession of judgement|cognovit judgement|judgment|judgement|judicial decision +cogwheel|1 +(noun)|gear|gear wheel|wheel +cohabit|1 +(verb)|shack up|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +cohabitation|1 +(noun)|living together|inhabitancy|inhabitation|habitation +cohan|1 +(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter|songster|ballad maker +cohere|3 +(verb)|cling|cleave|adhere|stick|touch|adjoin|meet|contact +(verb)|change|alter|modify +(verb)|be +coherence|2 +(noun)|coherency|cohesion|cohesiveness|connection|link|connectedness +(noun)|coherency|comprehensibility|understandability +coherency|2 +(noun)|coherence|cohesion|cohesiveness|connection|link|connectedness +(noun)|coherence|comprehensibility|understandability +coherent|3 +(adj)|coherent |consistent|logical|ordered|orderly|seamless|logical|rational +(adj)|logical|lucid|rational +(adj)|tenacious|adhesive +cohesion|3 +(noun)|coherence|coherency|cohesiveness|connection|link|connectedness +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|force +cohesive|2 +(adj)|adhesive +(adj)|united +cohesiveness|2 +(noun)|coherence|coherency|cohesion|connection|link|connectedness +(noun)|glueyness|gluiness|gumminess|ropiness|viscidity|viscidness|viscosity|viscousness +cohn|1 +(noun)|Cohn|Ferdinand Julius Cohn|botanist|phytologist|plant scientist +coho|2 +(noun)|silver salmon|coho salmon|cohoe|salmon +(noun)|cohoe|coho salmon|blue jack|silver salmon|Onchorynchus kisutch|salmon +coho salmon|2 +(noun)|silver salmon|coho|cohoe|salmon +(noun)|coho|cohoe|blue jack|silver salmon|Onchorynchus kisutch|salmon +cohoe|2 +(noun)|silver salmon|coho salmon|coho|salmon +(noun)|coho|coho salmon|blue jack|silver salmon|Onchorynchus kisutch|salmon +cohort|3 +(noun)|company +(noun)|set|circle|band|lot +(noun)|age group|age bracket|people +cohosh|1 +(noun)|baneberry|herb Christopher|poisonous plant +cohune|1 +(noun)|cohune palm|Orbignya cohune|feather palm +cohune-nut oil|1 +(noun)|cohune oil|cohune fat|oil +cohune fat|1 +(noun)|cohune-nut oil|cohune oil|oil +cohune nut|1 +(noun)|seed +cohune oil|1 +(noun)|cohune-nut oil|cohune fat|oil +cohune palm|1 +(noun)|Orbignya cohune|cohune|feather palm +coif|3 +(noun)|skullcap +(verb)|cover +(verb)|dress|arrange|set|do|coiffe|coiffure|groom|neaten +coiffe|1 +(verb)|dress|arrange|set|do|coif|coiffure|groom|neaten +coiffeur|1 +(noun)|hairdresser|hairstylist|stylist|styler +coiffeuse|1 +(noun)|hairdresser|hairstylist|stylist|styler +coiffure|2 +(noun)|hairdo|hair style|hair +(verb)|dress|arrange|set|do|coif|coiffe|groom|neaten +coign|2 +(noun)|quoin|coigne|wedge +(noun)|quoin|coigne|keystone|key|headstone +coigne|2 +(noun)|quoin|coign|wedge +(noun)|quoin|coign|keystone|key|headstone +coigue|1 +(noun)|Coigue|Nothofagus dombeyi|southern beech|evergreen beech +coil|9 +(noun)|spiral|volute|whorl|helix|structure|construction +(noun)|whorl|roll|curl|curlicue|ringlet|gyre|scroll|round shape +(noun)|transformer +(noun)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +(noun)|tube|tubing +(noun)|reactor +(verb)|gyrate|spiral|turn +(verb)|handbuild|hand-build|shape|form|work|mold|mould|forge +(verb)|loop|curl|wind|wrap|roll|twine +coil spring|1 +(noun)|volute spring|spring +coiled|1 +(adj)|coiled |coiling|helical|spiral|spiraling|volute|voluted|whorled|turbinate|convolute|curled|curled up|involute|looped|whorled|twined|twisted|convoluted|involute|rolled|wound +coiling|1 +(adj)|helical|spiral|spiraling|volute|voluted|whorled|turbinate|coiled +coin|3 +(noun)|coinage|mintage|specie|metal money +(verb)|create verbally +(verb)|mint|strike|create from raw material|create from raw stuff +coin-operated|1 +(adj)|machine +coin bank|1 +(noun)|savings bank|money box|bank|container +coin blank|1 +(noun)|planchet|disk|disc +coin box|1 +(noun)|receptacle +coin collecting|1 +(noun)|numismatics|numismatology|coin collection|collection|collecting|assembling|aggregation +coin collection|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|numismatics|numismatology|coin collecting|collection|collecting|assembling|aggregation +coin collector|1 +(noun)|numismatist|numismatologist|collector|aggregator +coin machine|1 +(noun)|slot machine|machine +coin silver|1 +(noun)|silver|Ag|atomic number 47 +coin slot|1 +(noun)|slot +coinage|3 +(noun)|mintage|specie|metal money|currency +(noun)|neologism|neology|word +(noun)|neologism|neology|invention +coincide|3 +(verb)|co-occur|cooccur|coexist +(verb)|concur|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +coincidence|3 +(noun)|happenstance|accident|fortuity|chance event +(noun)|position|spatial relation +(noun)|concurrence|conjunction|co-occurrence|simultaneity|simultaneousness +coincident|2 +(adj)|coincidental|coinciding|concurrent|cooccurring|simultaneous|synchronous |synchronal|synchronic +(adj)|coinciding|congruent +coincidental|1 +(adj)|coincident|coinciding|concurrent|cooccurring|simultaneous|synchronous |synchronal|synchronic +coincidentally|1 +(adv)|coincidently +coincidently|1 +(adv)|coincidentally +coinciding|2 +(adj)|coincident|coincidental|concurrent|cooccurring|simultaneous|synchronous |synchronal|synchronic +(adj)|coincident|congruent +coiner|3 +(noun)|forger|counterfeiter +(noun)|generator|source|author +(noun)|minter|moneyer|skilled worker|trained worker +coinsurance|1 +(noun)|insurance +coinsure|1 +(verb)|insure +coir|1 +(noun)|fiber|fibre +coital|1 +(adj)|copulatory|sexual activity|sexual practice|sex|sex activity +coition|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +coitus|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +coitus interruptus|1 +(noun)|withdrawal method|pulling out|onanism|birth control|birth prevention|family planning +coke|4 +(noun)|fuel +(noun)|Coca Cola|Coke|cola|dope +(noun)|blow|nose candy|snow|C|cocaine|cocain +(verb)|change state|turn +col|1 +(noun)|gap|pass|mountain pass|notch +cola|7 +(noun)|Cola|genus Cola|dilleniid dicot genus +(noun)|dope|soft drink +(noun)|colon|large intestine +(noun)|colon|El Salvadoran colon|El Salvadoran monetary unit +(noun)|colon|Costa Rican colon|Costa Rican monetary unit +(noun)|Colon|Aspinwall|city|metropolis|urban center|port +(noun)|colon|punctuation|punctuation mark +cola acuminata|1 +(noun)|kola|kola nut|kola nut tree|goora nut|Cola acuminata|nut tree +cola extract|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +cola nut|1 +(noun)|kola nut|nut +colander|1 +(noun)|cullender|strainer +colaptes|1 +(noun)|Colaptes|genus Colaptes|bird genus +colaptes auratus|1 +(noun)|yellow-shafted flicker|Colaptes auratus|yellowhammer|flicker +colaptes caper collaris|1 +(noun)|red-shafted flicker|Colaptes caper collaris|flicker +colaptes chrysoides|1 +(noun)|gilded flicker|Colaptes chrysoides|flicker +colbert|1 +(noun)|Colbert|Colbert butter|sauce +colbert butter|1 +(noun)|Colbert|Colbert butter|sauce +colchicaceae|1 +(noun)|Colchicaceae|family Colchicaceae|liliid monocot family +colchicum|1 +(noun)|Colchicum|genus Colchicum|liliid monocot genus +colchicum autumnale|1 +(noun)|autumn crocus|meadow saffron|naked lady|Colchicum autumnale|bulbous plant +colchine|1 +(noun)|analgesic|anodyne|painkiller|pain pill +colchis|1 +(noun)|Colchis|geographical area|geographic area|geographical region|geographic region +cold|16 +(adj)|cold |acold|algid|arctic|frigid|gelid|glacial|icy|polar|bleak|cutting|raw|crisp|frosty|nipping|nippy|snappy|parky|frigorific|frore|frosty|rimed|rimy|ice-cold|refrigerant|refrigerating|shivery|stone-cold|unheated|unwarmed|heatless|refrigerated|cool|frozen +(adj)|cold |emotionless|passionless|frigid|frosty|frozen|glacial|icy|wintry|cool|passionless +(adj)|stale +(adj)|cool +(adj)|perfect +(adj)|stale|old +(adj)|intense +(adj)|frigid|unloving +(adj)|cold-blooded|inhuman|insensate|inhumane +(adj)|unenthusiastic +(adj)|unconscious +(adj)|far +(adj)|dead +(noun)|common cold|respiratory disease|respiratory illness|respiratory disorder|communicable disease +(noun)|coldness|low temperature|temperature|vasoconstrictor|vasoconstrictive +(noun)|coldness|temperature +cold-blooded|2 +(adj)|cold|inhuman|insensate|inhumane +(adj)|cold-blooded |poikilothermic|poikilothermous|heterothermic|ectothermic +cold-bloodedly|1 +(adv)|in cold blood +cold-cream|1 +(verb)|put on|apply +cold-eyed|1 +(adj)|dispassionate|impartial |fair +cold-shoulder|1 +(verb)|slight|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +cold-water flat|1 +(noun)|apartment|flat +cold cash|1 +(noun)|ready cash|ready money|cash|hard cash|hard currency +cold cereal|1 +(noun)|dry cereal|cereal +cold chisel|1 +(noun)|set chisel|chisel +cold comfort|1 +(noun)|consolation|solace|solacement +cold cream|2 +(noun)|coldcream|face cream|vanishing cream|cream|ointment|emollient +(noun)| +cold cuts|1 +(noun)|meat +cold duck|1 +(noun)|sparkling wine +cold feet|1 +(noun)|timidity|timidness|timorousness +cold fish|1 +(noun)|unpleasant person|disagreeable person +cold frame|1 +(noun)|protective covering|protective cover|protection +cold front|1 +(noun)|polar front|front +cold fusion|1 +(noun)|fusion|nuclear fusion|nuclear fusion reaction +cold gangrene|1 +(noun)|dry gangrene|mumification necrosis|mummification|gangrene|sphacelus|slough +cold medicine|1 +(noun)|medicine|medication|medicament|medicinal drug +cold rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc +cold shoulder|1 +(noun)|snub|cut|rebuff|slight +cold snap|1 +(noun)|cold spell|while|piece|spell|patch +cold sober|1 +(adj)|stone-sober|sober +cold sore|1 +(noun)|oral herpes|herpes labialis|fever blister|herpes simplex +cold spell|1 +(noun)|cold snap|while|piece|spell|patch +cold storage|2 +(noun)|abeyance|suspension +(noun)|storage +cold stuffed tomato|1 +(noun)|stuffed tomato|dish +cold sweat|1 +(noun)|physiological state|physiological condition +cold turkey|2 +(noun)|expression +(noun)|withdrawal|drug withdrawal +cold war|1 +(noun)|conflict +cold wave|1 +(noun)|wave +cold weather|1 +(noun)|weather|weather condition|atmospheric condition +cold work|2 +(verb)|coldwork|work|work on|process +(verb)| +coldcock|1 +(verb)|deck|dump|knock down|floor|beat +coldcream|1 +(noun)|cold cream|face cream|vanishing cream|cream|ointment|emollient +coldhearted|1 +(adj)|coldhearted |brittle|unloving +coldheartedness|1 +(noun)|heartlessness|hardheartedness|unconcern +coldly|1 +(adv)|in cold blood|without emotion +coldness|3 +(noun)|cold|temperature +(noun)|coolness|frigidity|unemotionality|emotionlessness +(noun)|cold|low temperature|temperature|vasoconstrictor|vasoconstrictive +coldwork|1 +(verb)|cold work|work|work on|process +cole|2 +(noun)|kale|kail|borecole|colewort|Brassica oleracea acephala|crucifer|cruciferous plant +(noun)|kale|kail|cabbage|chou +cole albert porter|1 +(noun)|Porter|Cole Porter|Cole Albert Porter|composer +cole porter|1 +(noun)|Porter|Cole Porter|Cole Albert Porter|composer +coleman hawkins|1 +(noun)|Hawkins|Coleman Hawkins|saxophonist|saxist +coleonyx|1 +(noun)|Coleonyx|genus Coleonyx|reptile genus +coleoptera|1 +(noun)|Coleoptera|order Coleoptera|animal order +coleridge|1 +(noun)|Coleridge|Samuel Taylor Coleridge|poet +coleridgean|1 +(adj)|Coleridgian|Coleridgean|poet +coleridgian|1 +(adj)|Coleridgian|Coleridgean|poet +coleslaw|1 +(noun)|slaw|salad +colette|1 +(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer|author +coleus|1 +(noun)|flame nettle|herb|herbaceous plant +coleus amboinicus|1 +(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus|flame nettle +coleus aromaticus|1 +(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus|flame nettle +coleus blumei|1 +(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus|flame nettle +colewort|1 +(noun)|kale|kail|cole|borecole|Brassica oleracea acephala|crucifer|cruciferous plant +colic|1 +(noun)|intestinal colic|pain|hurting +colic artery|1 +(noun)|arteria colica|artery|arteria|arterial blood vessel +colic root|2 +(noun)|colicroot|crow corn|star grass|unicorn root|liliaceous plant +(noun)| +colic vein|1 +(noun)|vena colica|vein|vena|venous blood vessel +colicky|1 +(adj)|flatulent|gassy|unhealthy +colicroot|1 +(noun)|colic root|crow corn|star grass|unicorn root|liliaceous plant +colima|1 +(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano +colin luther powell|1 +(noun)|Powell|Colin Powell|Colin luther Powell|general|full general|statesman|solon|national leader +colin powell|1 +(noun)|Powell|Colin Powell|Colin luther Powell|general|full general|statesman|solon|national leader +colinus|1 +(noun)|Colinus|genus Colinus|bird genus +colinus virginianus|1 +(noun)|northern bobwhite|Colinus virginianus|bobwhite|bobwhite quail|partridge +coliphage|1 +(noun)|bacteriophage|phage +coliseum|1 +(noun)|amphitheater|amphitheatre|stadium|bowl|arena|sports stadium +colitis|1 +(noun)|inflammatory bowel disease|inflammation|redness|rubor +collaborate|2 +(verb)|join forces|cooperate|get together|work +(verb)|join forces|cooperate|get together +collaboration|2 +(noun)|coaction|cooperation +(noun)|collaborationism|quislingism|cooperation +collaborationism|1 +(noun)|collaboration|quislingism|cooperation +collaborationist|1 +(noun)|collaborator|quisling|traitor|treasonist +collaborative|1 +(adj)|cooperative +collaborator|3 +(noun)|confederate|henchman|partner in crime|accessory|accessary +(noun)|collaborationist|quisling|traitor|treasonist +(noun)|cooperator|partner|pardner|associate +collage|2 +(noun)|montage|paste-up|picture|image|icon|ikon +(noun)|collection|aggregation|accumulation|assemblage +collage film|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +collagen|1 +(noun)|scleroprotein|albuminoid +collagenase|1 +(noun)|enzyme +collagenic|1 +(adj)|collagenous|scleroprotein|albuminoid +collagenous|1 +(adj)|collagenic|scleroprotein|albuminoid +collapsable|1 +(adj)|collapsible |foldable|foldaway|folding|telescopic|tip-up|folded +collapse|11 +(noun)|illness|unwellness|malady|sickness +(noun)|mishap|misadventure|mischance +(noun)|flop|descent +(noun)|crash|happening|occurrence|natural event +(verb)|fall in|cave in|give|give way|break|founder|change +(verb)|break down|suffer|sustain|have|get +(verb)|fold|fold up|turn up +(verb)|crumble|crumple|tumble|break down|change integrity +(verb)|burst +(verb)|crack up|crack|crock up|break up|suffer|sustain|have|get +(verb)|weaken +collapsed|1 +(adj)|folded +collapsible|1 +(adj)|collapsible |collapsable|foldable|foldaway|folding|telescopic|tip-up|folded +collapsible shelter|1 +(noun)|tent|shelter +collar|8 +(noun)|neckband|band +(noun)|band +(noun)|choker|dog collar|neckband|necklace +(noun)|leash|restraint +(noun)|apprehension|arrest|catch|pinch|taking into custody|capture|gaining control|seizure +(verb)|nail|apprehend|arrest|pick up|nab|cop|seize|prehend|clutch +(verb)|seize|prehend|clutch +(verb)|equip|fit|fit out|outfit +collar blight|1 +(noun)|blight +collar cell|1 +(noun)|choanocyte|flagellated cell +collarbone|1 +(noun)|clavicle|bone|os +collard|1 +(noun)|kale|kail|cole|borecole|colewort|Brassica oleracea acephala +collard greens|1 +(noun)|collards|kale|kail|cole +collards|2 +(noun)|collard greens|kale|kail|cole +(noun)|collard|kale|kail|cole|borecole|colewort|Brassica oleracea acephala +collared lizard|1 +(noun)|iguanid|iguanid lizard +collared peccary|1 +(noun)|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary|musk hog +collared pika|1 +(noun)|Ochotona collaris|pika|mouse hare|rock rabbit|coney|cony +collarless|1 +(adj)|band +collate|2 +(verb)|compare +(verb)|order +collateral|5 +(adj)|collateral |indirect|related +(adj)|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +(adj)|secondary +(adj)|parallel +(noun)|security interest +collateral damage|1 +(noun)|fatal accident|casualty +collateral fraud|1 +(noun)|extrinsic fraud|fraud +collateralize|1 +(verb)|pledge +collation|3 +(noun)|bite|snack|meal|repast +(noun)|collection|collecting|assembling|aggregation +(noun)|comparison|comparing +colleague|2 +(noun)|co-worker|fellow worker|workfellow|associate +(noun)|confrere|fellow|associate +collect|7 +(adj)|cod|due |owed +(noun)|prayer|petition|orison +(verb)|roll up|accumulate|pile up|amass|compile|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|take in|take +(verb)|gather|garner|pull together +(verb)|pull in|roll up|accumulate|pile up|amass|compile|hoard +(verb)|pick up|gather up|call for|get|acquire +collect call|1 +(noun)|call|phone call|telephone call +collectable|2 +(adj)|collectible|payable|due |owed +(noun)|collectible|curio|curiosity|oddity|oddment|peculiarity|rarity +collected|3 +(adj)|collected +(adj)|accumulated|amassed|assembled|congregate|massed|concentrated +(adj)|equanimous|poised|self-collected|self-contained|self-possessed|composed +collectedly|1 +(adv)|composedly +collectible|2 +(adj)|collectable|payable|due |owed +(noun)|collectable|curio|curiosity|oddity|oddment|peculiarity|rarity +collecting|1 +(noun)|collection|assembling|aggregation|grouping +collection|4 +(noun)|aggregation|accumulation|assemblage|group|grouping +(noun)|compendium|publication +(noun)|solicitation|appeal|ingathering|request|petition|postulation +(noun)|collecting|assembling|aggregation|grouping +collection plate|1 +(noun)|plate|receptacle +collective|4 +(adj)|corporate|joint +(adj)|collective |agglomerate|agglomerated|agglomerative|clustered|aggregate|aggregated|aggregative|mass|assembled|built|made-up|collectivized|collectivised|knockdown|integrative|joint|united +(adj)|socialistic |socialist +(noun)|enterprise +collective agreement|1 +(noun)|labor contract|labor agreement|contract +collective bargaining|1 +(noun)|negotiation|dialogue|talks +collective farm|1 +(noun)|collective +collective noun|1 +(noun)|noun +collective security|1 +(noun)|peace +collectively|1 +(adv)|jointly|conjointly|together|put together +collectivisation|1 +(noun)|collectivization|constitution|establishment|formation|organization|organisation +collectivise|1 +(verb)|collectivize|organize|organise +collectivised|2 +(adj)|collectivized|collective +(adj)|collectivist|collectivistic|collectivized|state-controlled|socialistic |socialist +collectivism|2 +(noun)|Bolshevism|sovietism|communism +(noun)|political orientation|ideology|political theory +collectivist|2 +(adj)|collectivistic|collectivized|collectivised|state-controlled|socialistic |socialist +(noun)|leftist|left-winger|socialist +collectivistic|1 +(adj)|collectivist|collectivized|collectivised|state-controlled|socialistic |socialist +collectivization|1 +(noun)|collectivisation|constitution|establishment|formation|organization|organisation +collectivize|1 +(verb)|collectivise|organize|organise +collectivized|2 +(adj)|collectivised|collective +(adj)|collectivist|collectivistic|collectivised|state-controlled|socialistic |socialist +collector|4 +(noun)|aggregator|person|individual|someone|somebody|mortal|human|soul +(noun)|gatherer|accumulator|holder|bearer +(noun)|crater +(noun)|electrode +collector's item|1 +(noun)|showpiece|piece de resistance|curio|curiosity|oddity|oddment|peculiarity|rarity +collector of internal revenue|1 +(noun)|tax collector|taxman|exciseman|internal revenue agent|bureaucrat|administrative official +colleen|1 +(noun)|girl|miss|missy|young lady|young woman|fille +college|4 +(noun)|body +(noun)|educational institution +(noun)|prison|prison house +(noun)|building complex|complex +college boy|1 +(noun)|collegian|college man|student|pupil|educatee +college girl|1 +(noun)|co-ed|undergraduate|undergrad +college level|1 +(noun)|grade|level|tier +college man|1 +(noun)|collegian|college boy|student|pupil|educatee +college of cardinals|1 +(noun)|Sacred College|College of Cardinals|body +college student|1 +(noun)|university student|collegian|college man|college boy +collegial|2 +(adj)|associate +(adj)|collegiate|body +collegian|1 +(noun)|college man|college boy|student|pupil|educatee +collegiate|1 +(adj)|collegial|body +collegiate dictionary|1 +(noun)|desk dictionary|dictionary|lexicon +collembola|1 +(noun)|Collembola|order Collembola|animal order +collembolan|1 +(noun)|springtail|insect +collet|3 +(noun)|ferrule|cap +(noun)|collet chuck|chuck +(noun)|band +collet chuck|1 +(noun)|collet|chuck +collide|2 +(verb)|clash|hit|strike|impinge on|run into|collide with +(verb)|clash|jar|conflict +collide with|1 +(verb)|hit|strike|impinge on|run into|touch +collider|1 +(noun)|accelerator|particle accelerator|atom smasher +collie|1 +(noun)|shepherd dog|sheepdog|sheep dog +collier|1 +(noun)|coal miner|pitman|miner|mineworker +colliery|1 +(noun)|pit|workplace|work +colligate|2 +(verb)|associate|tie in|relate|link|link up|connect|think|cogitate|cerebrate +(verb)|subsume|include +colligation|2 +(noun)|junction|conjunction|conjugation|union|unification +(noun)|association|connection|connexion +collimate|2 +(verb)|parallel|change|alter|modify +(verb)|align|aline|line up|adjust +collimation|1 +(noun)|adjustment|registration|readjustment +collimator|2 +(noun)|telescope|scope +(noun)|optical device +collinear|1 +(adj)|linear |one-dimensional +collins|2 +(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer|author +(noun)|Tom Collins|highball +collinsia|1 +(noun)|Collinsia|genus Collinsia|asterid dicot genus +collinsia bicolor|1 +(noun)|purple chinese houses|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower|wild flower +collinsia heterophylla|1 +(noun)|purple chinese houses|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower|wild flower +collinsia parviflora|1 +(noun)|maiden blue-eyed Mary|Collinsia parviflora|wildflower|wild flower +collinsia verna|1 +(noun)|blue-eyed Mary|Collinsia verna|wildflower|wild flower +collinsonia|1 +(noun)|Collinsonia|genus Collinsonia|asterid dicot genus +collinsonia canadensis|1 +(noun)|horse balm|horseweed|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb|herbaceous plant +collis potter huntington|1 +(noun)|Huntington|Collis Potter Huntington|businessman|man of affairs +collision|3 +(noun)|hit|contact|impinging|striking +(noun)|accident +(noun)|dispute|difference|difference of opinion|conflict +collision course|2 +(noun)|path|track|course +(noun)|course|course of action +collocalia|1 +(noun)|Collocalia|genus Collocalia|bird genus +collocalia inexpectata|1 +(noun)|swiftlet|Collocalia inexpectata|swift +collocate|2 +(verb)|occur +(verb)|lump|chunk|group +collocate with|1 +(verb)|construe with|cooccur with|co-occur with|go with|attach to|accompany|come with|go with +collocation|2 +(noun)|language unit|linguistic unit +(noun)|juxtaposition|apposition|placement|location|locating|position|positioning|emplacement +collodion|1 +(noun)|solution +collogue|1 +(verb)|confer|confabulate|confab|consult +colloid|1 +(noun)|mixture +colloidal|1 +(adj)|mixture +colloidal gel|1 +(noun)|gel|colloid +colloidal solution|1 +(noun)|sol|colloidal suspension|colloid +colloidal suspension|1 +(noun)|sol|colloidal solution|colloid +colloquial|1 +(adj)|conversational|informal +colloquialism|1 +(noun)|formulation|expression +colloquially|1 +(adv)|conversationally|informally +colloquium|2 +(noun)|conference +(noun)|address|speech +colloquy|2 +(noun)|conference|group discussion +(noun)|conversation +collotype|1 +(noun)|collotype printing|photogelatin process|planographic printing|planography +collotype printing|1 +(noun)|collotype|photogelatin process|planographic printing|planography +collude|1 +(verb)|conspire|interact +collusion|2 +(noun)|agreement|arrangement +(noun)|connivance|agreement +collusive|1 +(adj)|conniving|covert +colly|1 +(verb)|dirty|soil|begrime|grime|bemire|change|alter|modify +collyrium|1 +(noun)|eye-lotion|eyewash|lotion|application +collywobbles|1 +(noun)|cholera morbus|gastroenteritis|stomach flu|intestinal flu +colobus|1 +(noun)|colobus monkey|Old World monkey|catarrhine +colobus guereza|1 +(noun)|guereza|Colobus guereza|colobus|colobus monkey +colobus monkey|1 +(noun)|colobus|Old World monkey|catarrhine +colocasia|1 +(noun)|Colocasia|genus Colocasia|monocot genus|liliopsid genus +colocasia esculenta|1 +(noun)|taro|taro plant|dalo|dasheen|Colocasia esculenta|arum|aroid +cologne|2 +(noun)|Cologne|Koln|city|metropolis|urban center +(noun)|cologne water|eau de cologne|perfume|essence +cologne water|1 +(noun)|cologne|eau de cologne|perfume|essence +colombia|1 +(noun)|Colombia|Republic of Colombia|South American country|South American nation +colombian|2 +(adj)|Colombian|South American country|South American nation +(noun)|Colombian|South American +colombian monetary unit|1 +(noun)|Colombian monetary unit|monetary unit +colombian peso|1 +(noun)|Colombian peso|peso|Colombian monetary unit +colombo|1 +(noun)|Colombo|capital of Sri Lanka|national capital +colon|5 +(noun)|large intestine +(noun)|El Salvadoran colon|El Salvadoran monetary unit +(noun)|Costa Rican colon|Costa Rican monetary unit +(noun)|Colon|Aspinwall|city|metropolis|urban center|port +(noun)|punctuation|punctuation mark +colon cancer|1 +(noun)|carcinoma +colonel|1 +(noun)|commissioned military officer +colonel blimp|2 +(noun)|Colonel Blimp|Blimp|reactionary|ultraconservative|extreme right-winger +(noun)|Colonel Blimp|fictional character|fictitious character|character +colonial|4 +(adj)|body +(adj)|animal group +(adj)|compound|complex +(noun)|resident|occupant|occupier +colonialism|1 +(noun)|exploitation|victimization|victimisation|using +colonialist|1 +(noun)|believer|truster +colonic|2 +(adj)|large intestine +(noun)|colonic irrigation|high colonic|purge|purging +colonic irrigation|1 +(noun)|colonic|high colonic|purge|purging +colonisation|1 +(noun)|colonization|settlement|constitution|establishment|formation|organization|organisation +colonise|2 +(verb)|colonize|annex +(verb)|colonize|settle|locate +colonised|1 +(adj)|colonized|settled|inhabited +coloniser|1 +(noun)|colonizer|founder|beginner|founding father|father +colonist|1 +(noun)|settler|migrant|migrator +colonization|1 +(noun)|colonisation|settlement|constitution|establishment|formation|organization|organisation +colonize|2 +(verb)|colonise|annex +(verb)|colonise|settle|locate +colonized|1 +(adj)|colonised|settled|inhabited +colonizer|1 +(noun)|coloniser|founder|beginner|founding father|father +colonnade|2 +(noun)|structure|construction +(noun)|arcade|structure|construction +colonnaded|1 +(adj)|columned +colonoscope|1 +(noun)|endoscope +colonoscopy|1 +(noun)|endoscopy +colony|5 +(noun)|settlement|body +(noun)|animal group +(noun)|Colony|geographical area|geographic area|geographical region|geographic region +(noun)|dependency|geographical area|geographic area|geographical region|geographic region +(noun)|animal group +colophon|1 +(noun)|emblem +colophony|1 +(noun)|natural resin +color|15 +(adj)|color |colour +(noun)|colour|coloring|colouring|visual property +(noun)|colour|vividness|interest|interestingness +(noun)|colour|coloration|colouration|timbre|timber|quality|tone +(noun)|colour|people of color|people of colour|race +(noun)|semblance|gloss|colour|appearance|visual aspect +(noun)|coloring material|colouring material|colour|material|stuff +(noun)|colour|kind|sort|form|variety +(noun)|colour|appearance|visual aspect +(verb)|colorize|colorise|colourise|colourize|colour|color in|colour in|change|alter|modify +(verb)|tinge|colour|distort|affect|impact|bear upon|bear on|touch on|touch +(verb)|colour|influence|act upon|work +(verb)|colour|emblazon|decorate|adorn|grace|ornament|embellish|beautify +(verb)|colour|gloss|apologize|apologise|excuse|justify|rationalize|rationalise +(verb)|discolor|discolour|colour|change +color-blind|2 +(adj)|colour-blind|blind |unsighted +(adj)|colour-blind|nonracist|unprejudiced |impartial +color-blind person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +color bar|1 +(noun)|colour bar|color line|colour line|Jim Crow|ideological barrier +color bearer|1 +(noun)|standard-bearer|soldier +color blindness|1 +(noun)|colour blindness|color vision deficiency|colour vision deficiency|visual impairment|visual defect|vision defect|visual disorder|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +color chart|1 +(noun)|chart +color circle|1 +(noun)|color wheel|color chart +color code|1 +(noun)|code +color constancy|1 +(noun)|colour constancy|constancy +color force|1 +(noun)|strong interaction|strong force|interaction|fundamental interaction +color guard|1 +(noun)|escort +color in|1 +(verb)|color|colorize|colorise|colourise|colourize|colour|colour in|change|alter|modify +color line|1 +(noun)|color bar|colour bar|colour line|Jim Crow|ideological barrier +color of law|1 +(noun)|colour of law|semblance|gloss|color|colour +color property|1 +(noun)|visual property +color scheme|1 +(noun)|colour scheme|combination +color sergeant|1 +(noun)|sergeant +color spectrum|1 +(noun)|visible spectrum|spectrum +color television|1 +(noun)|colour television|color television system|colour television system|color TV|colour TV|television|television system +color television system|1 +(noun)|color television|colour television|colour television system|color TV|colour TV|television|television system +color television tube|1 +(noun)|color tube|colour tube|colour television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +color tube|1 +(noun)|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +color tv|1 +(noun)|color television|colour television|color television system|colour television system|color TV|colour TV|television|television system +color tv tube|1 +(noun)|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +color vision|1 +(noun)|chromatic vision|trichromacy|sight|vision|visual sense|visual modality +color vision deficiency|1 +(noun)|color blindness|colour blindness|colour vision deficiency|visual impairment|visual defect|vision defect|visual disorder|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +color wash|1 +(noun)|colour wash|wash +color wheel|1 +(noun)|color circle|color chart +coloradan|1 +(noun)|Coloradan|American +coloradillo|1 +(noun)|scarlet bush|scarlet hamelia|Hamelia patens|Hamelia erecta|hamelia +colorado|3 +(noun)|Colorado|Centennial State|CO|American state +(noun)|Colorado|Colorado River|river +(noun)|Colorado|Colorado River|river +colorado beetle|1 +(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle|chrysomelid +colorado blue spruce|1 +(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce +colorado desert|1 +(noun)|Colorado Desert|desert|California|Golden State|CA|Calif. +colorado fir|1 +(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir +colorado four o'clock|1 +(noun)|desert four o'clock|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock +colorado plateau|1 +(noun)|Colorado Plateau|tableland|plateau +colorado potato beetle|1 +(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle|chrysomelid +colorado river|2 +(noun)|Colorado|Colorado River|river +(noun)|Colorado|Colorado River|river +colorado river hemp|1 +(noun)|Colorado River hemp|Sesbania exaltata|sesbania +colorado springs|1 +(noun)|Colorado Springs|city|metropolis|urban center +colorado spruce|1 +(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce +coloration|3 +(noun)|color|colour|colouration|timbre|timber|quality|tone +(noun)|colouration|color|colour|coloring|colouring +(noun)|colouration|choice|selection|option|pick +coloratura|2 +(noun)|coloratura soprano|soprano +(noun)|singing|vocalizing +coloratura soprano|1 +(noun)|coloratura|soprano +colorcast|1 +(verb)|telecast|televise +colorectal|1 +(adj)|large intestine|body part +colored|5 +(adj)|colored |coloured|colorful|crimson|red|reddened|red-faced|flushed|bay|bicolor|bicolour|bicolored|bicoloured|bichrome|dichromatic|black|blackened|ginger|gingery|monochromatic|monochrome|monochromic|monochromous|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|polychromatic|polychrome|polychromic|roan|touched|tinged|trichromatic|trichrome|tricolor +(adj)|coloured|dark|dark-skinned|black +(adj)|biased|coloured|one-sided|slanted|partial |unfair +(adj)|bleached|coloured|dyed|artificial |unreal +(noun)|colored person|Black|Black person|blackamoor|Negro|Negroid +colored audition|1 +(noun)|colored hearing|chromesthesia|chromaesthesia +colored hearing|1 +(noun)|colored audition|chromesthesia|chromaesthesia +colored person|1 +(noun)|colored|Black|Black person|blackamoor|Negro|Negroid +colorfast|1 +(adj)|impervious |imperviable +colorful|3 +(adj)|colorful |colourful|ablaze|flaming|bright|brilliant|vivid|changeable|chatoyant|iridescent|shot|deep|rich|fluorescent|prismatic|psychedelic|chromatic +(adj)|colorful |brave|braw|gay|flamboyant|resplendent|unrestrained|flashy|gaudy|jazzy|showy|sporty|many-sided|picturesque +(adj)|colored |coloured|crimson|red|reddened|red-faced|flushed|bay|bicolor|bicolour|bicolored|bicoloured|bichrome|dichromatic|black|blackened|ginger|gingery|monochromatic|monochrome|monochromic|monochromous|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|polychromatic|polychrome|polychromic|roan|touched|tinged|trichromatic|trichrome|tricolor +colorimeter|1 +(noun)|tintometer|measuring instrument|measuring system|measuring device +colorimetric|1 +(adj)|colorimetrical|quantitative analysis|quantitative chemical analysis +colorimetric analysis|1 +(noun)|colorimetry|quantitative analysis|quantitative chemical analysis +colorimetrical|1 +(adj)|colorimetric|quantitative analysis|quantitative chemical analysis +colorimetry|1 +(noun)|colorimetric analysis|quantitative analysis|quantitative chemical analysis +coloring|3 +(noun)|colouring|food coloring|food colouring|food color|food colour|foodstuff|food product +(noun)|color|colour|colouring|visual property +(noun)|colouring|change of color +coloring book|1 +(noun)|picture book +coloring material|1 +(noun)|colouring material|color|colour|material|stuff +colorise|1 +(verb)|color|colorize|colourise|colourize|colour|color in|colour in|change|alter|modify +colorist|1 +(noun)|painter +colorize|1 +(verb)|color|colorise|colourise|colourize|colour|color in|colour in|change|alter|modify +colorless|2 +(adj)|colorless |colourless|neutral|pale|pallid|dull +(adj)|colorless |colourless|ashen|blanched|bloodless|livid|white|bleached|faded|washed-out|washy|drab|sober|somber|sombre|dulled|grayed|etiolate|etiolated|blanched|lurid|pale|pallid|wan|pasty|pastelike|prefaded|waxen|waxlike|waxy|white|whitened|achromatic +colorlessness|1 +(noun)|colourlessness|achromatism|visual property +colors|10 +(noun)|colours|flag +(noun)|colours|emblem +(noun)|color|colour|coloring|colouring|visual property +(noun)|color|colour|vividness|interest|interestingness +(noun)|color|colour|coloration|colouration|timbre|timber|quality|tone +(noun)|color|colour|people of color|people of colour|race +(noun)|semblance|gloss|color|colour|appearance|visual aspect +(noun)|coloring material|colouring material|color|colour|material|stuff +(noun)|color|colour|kind|sort|form|variety +(noun)|color|colour|appearance|visual aspect +colossae|1 +(noun)|Colossae|city|metropolis|urban center +colossal|1 +(adj)|prodigious|stupendous|large +colosseum|1 +(noun)|Colosseum|amphitheater|amphitheatre|coliseum +colossian|1 +(noun)|Colossian|Phrygian +colossians|2 +(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|book +(noun)|Colossian|Phrygian +colossus|2 +(noun)|giant|goliath|behemoth|monster|anomaly|unusual person +(noun)|behemoth|giant|heavyweight|titan|important person|influential person|personage +colostomy|1 +(noun)|ostomy +colostrum|1 +(noun)|foremilk|milk +colour|15 +(adj)|color +(noun)|coloring material|colouring material|color|material|stuff +(noun)|color|people of color|people of colour|race +(noun)|color|kind|sort|form|variety +(noun)|color|vividness|interest|interestingness +(noun)|color|coloration|colouration|timbre|timber|quality|tone +(noun)|color|coloring|colouring|visual property +(noun)|semblance|gloss|color|appearance|visual aspect +(noun)|color|appearance|visual aspect +(verb)|color|influence|act upon|work +(verb)|color|emblazon|decorate|adorn|grace|ornament|embellish|beautify +(verb)|color|gloss|apologize|apologise|excuse|justify|rationalize|rationalise +(verb)|tinge|color|distort|affect|impact|bear upon|bear on|touch on|touch +(verb)|color|colorize|colorise|colourise|colourize|color in|colour in|change|alter|modify +(verb)|discolor|discolour|color|change +colour-blind|2 +(adj)|color-blind|blind |unsighted +(adj)|color-blind|nonracist|unprejudiced |impartial +colour bar|1 +(noun)|color bar|color line|colour line|Jim Crow|ideological barrier +colour blindness|1 +(noun)|color blindness|color vision deficiency|colour vision deficiency|visual impairment|visual defect|vision defect|visual disorder|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +colour constancy|1 +(noun)|color constancy|constancy +colour in|1 +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|change|alter|modify +colour line|1 +(noun)|color bar|colour bar|color line|Jim Crow|ideological barrier +colour of law|1 +(noun)|color of law|semblance|gloss|color|colour +colour scheme|1 +(noun)|color scheme|combination +colour supplement|1 +(noun)|magazine|mag +colour television|1 +(noun)|color television|color television system|colour television system|color TV|colour TV|television|television system +colour television system|1 +(noun)|color television|colour television|color television system|color TV|colour TV|television|television system +colour television tube|1 +(noun)|color tube|colour tube|color television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +colour tube|1 +(noun)|color tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +colour tv|1 +(noun)|color television|colour television|color television system|colour television system|color TV|colour TV|television|television system +colour tv tube|1 +(noun)|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope|picture tube|television tube +colour vision deficiency|1 +(noun)|color blindness|colour blindness|color vision deficiency|visual impairment|visual defect|vision defect|visual disorder|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +colour wash|1 +(noun)|color wash|wash +colouration|3 +(noun)|color|colour|coloration|timbre|timber|quality|tone +(noun)|coloration|color|colour|coloring|colouring +(noun)|coloration|choice|selection|option|pick +coloured|4 +(adj)|colored |colorful|crimson|red|reddened|red-faced|flushed|bay|bicolor|bicolour|bicolored|bicoloured|bichrome|dichromatic|black|blackened|ginger|gingery|monochromatic|monochrome|monochromic|monochromous|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|polychromatic|polychrome|polychromic|roan|touched|tinged|trichromatic|trichrome|tricolor +(adj)|biased|colored|one-sided|slanted|partial |unfair +(adj)|bleached|colored|dyed|artificial |unreal +(adj)|colored|dark|dark-skinned|black +colourful|1 +(adj)|colorful |ablaze|flaming|bright|brilliant|vivid|changeable|chatoyant|iridescent|shot|deep|rich|fluorescent|prismatic|psychedelic|chromatic +colouring|3 +(noun)|coloring|food coloring|food colouring|food color|food colour|foodstuff|food product +(noun)|color|colour|coloring|visual property +(noun)|coloring|change of color +colouring material|1 +(noun)|coloring material|color|colour|material|stuff +colourise|1 +(verb)|color|colorize|colorise|colourize|colour|color in|colour in|change|alter|modify +colourize|1 +(verb)|color|colorize|colorise|colourise|colour|color in|colour in|change|alter|modify +colourless|2 +(adj)|colorless |neutral|pale|pallid|dull +(adj)|colorless |ashen|blanched|bloodless|livid|white|bleached|faded|washed-out|washy|drab|sober|somber|sombre|dulled|grayed|etiolate|etiolated|blanched|lurid|pale|pallid|wan|pasty|pastelike|prefaded|waxen|waxlike|waxy|white|whitened|achromatic +colourlessness|1 +(noun)|colorlessness|achromatism|visual property +colours|10 +(noun)|colors|emblem +(noun)|colors|flag +(noun)|coloring material|colouring material|color|colour|material|stuff +(noun)|color|colour|people of color|people of colour|race +(noun)|color|colour|kind|sort|form|variety +(noun)|color|colour|vividness|interest|interestingness +(noun)|color|colour|coloration|colouration|timbre|timber|quality|tone +(noun)|color|colour|coloring|colouring|visual property +(noun)|semblance|gloss|color|colour|appearance|visual aspect +(noun)|color|colour|appearance|visual aspect +colpitis|1 +(noun)|inflammation|redness|rubor +colpocele|1 +(noun)|vaginocele|hernia|herniation +colpocystitis|1 +(noun)|inflammation|redness|rubor +colpocystocele|1 +(noun)|cystocele|colpocele|vaginocele +colpoxerosis|1 +(noun)|disorder|upset +colt|2 +(noun)|foal +(noun)|Colt|revolver|six-gun|six-shooter +coltan|1 +(noun)|columbite-tantalite|mineral +colter|1 +(noun)|coulter|wedge +coltish|1 +(adj)|frolicsome|frolicky|rollicking|sportive|playful +coltsfoot|2 +(noun)|galax|galaxy|wandflower|beetleweed|Galax urceolata|herb|herbaceous plant +(noun)|Tussilago farfara|herb|herbaceous plant +coluber|1 +(noun)|Coluber|genus Coluber|reptile genus +coluber constrictor|1 +(noun)|blacksnake|black racer|Coluber constrictor|racer +coluber constrictor flaviventris|1 +(noun)|blue racer|Coluber constrictor flaviventris|blacksnake|black racer|Coluber constrictor +coluber hippocrepis|1 +(noun)|horseshoe whipsnake|Coluber hippocrepis|racer +colubrid|1 +(noun)|colubrid snake|snake|serpent|ophidian +colubrid snake|1 +(noun)|colubrid|snake|serpent|ophidian +colubridae|1 +(noun)|Colubridae|family Colubridae|reptile family +colubrina|1 +(noun)|Colubrina|genus Colubrina|dicot genus|magnoliopsid genus +colugo|1 +(noun)|flying lemur|flying cat|placental|placental mammal|eutherian|eutherian mammal +columba|2 +(noun)|Columba|Dove|constellation +(noun)|Columba|genus Columba|bird genus +columba fasciata|1 +(noun)|band-tailed pigeon|band-tail pigeon|bandtail|Columba fasciata|pigeon +columba livia|1 +(noun)|rock dove|rock pigeon|Columba livia|pigeon +columba palumbus|1 +(noun)|wood pigeon|ringdove|cushat|Columba palumbus|pigeon +columbarium|2 +(noun)|cinerarium|recess|niche +(noun)|vault|burial vault +columbary|1 +(noun)|dovecote|birdhouse +columbia|5 +(noun)|Columbia|Columbia River|river +(noun)|Columbia|town +(noun)|Columbia|capital of South Carolina|state capital +(noun)|Columbia|town +(noun)|Columbia University|Columbia|university +columbia river|1 +(noun)|Columbia|Columbia River|river +columbia tiger lily|1 +(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily +columbia university|1 +(noun)|Columbia University|Columbia|university +columbian|1 +(adj)|Columbian|navigator +columbian mammoth|1 +(noun)|Mammuthus columbi|mammoth +columbidae|1 +(noun)|Columbidae|family Columbidae|bird family +columbiform bird|1 +(noun)|gallinaceous bird|gallinacean +columbiformes|1 +(noun)|Columbiformes|order Columbiformes|animal order +columbine|1 +(noun)|aquilegia|aquilege|flower +columbite|1 +(noun)|niobite|mineral +columbite-tantalite|1 +(noun)|coltan|mineral +columbium|1 +(noun)|niobium|Nb|atomic number 41 +columbo|1 +(noun)|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb|herbaceous plant +columbus|4 +(noun)|Columbus|capital of Ohio|state capital +(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator +(noun)|Columbus|town +(noun)|Columbus|city|metropolis|urban center|port of entry|point of entry +columbus day|1 +(noun)|Columbus Day|Discovery Day|October 12|legal holiday|national holiday +columella|1 +(noun)|column|tower|pillar +column|7 +(noun)|file|single file|Indian file +(noun)|chromatography column|tube|tubing +(noun)|array +(noun)|tower|pillar|shape|form +(noun)|editorial|newspaper column|article +(noun)|pillar|structure|construction +(noun)|pillar|upright|vertical +column chromatography|1 +(noun)|chromatography +column inch|1 +(noun)|inch|area unit|square measure +columnar|2 +(adj)|columniform|columnlike|columned +(adj)|columned +columnar cell|1 +(noun)|columnar epithelial cell|epithelial cell +columnar epithelial cell|1 +(noun)|columnar cell|epithelial cell +columnea|1 +(noun)|shrub|bush +columned|1 +(adj)|columned |amphistylar|columnar|columniform|columnar|columnlike|colonnaded|pillared +columniation|1 +(noun)|placement|arrangement +columniform|1 +(adj)|columnar|columnlike|columned +columnist|1 +(noun)|editorialist|journalist +columnlike|1 +(adj)|columniform|columnar|columned +colutea|1 +(noun)|Colutea|genus Colutea|rosid dicot genus +colutea arborescens|1 +(noun)|bladder senna|Colutea arborescens|shrub|bush +colymbiformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +colza|1 +(noun)|rape|Brassica napus|mustard +colza oil|1 +(noun)|rape oil|rapeseed oil|oil +coma|3 +(noun)|comatoseness|unconsciousness +(noun)|hair|fuzz|tomentum +(noun)|cloud +coma berenices|1 +(noun)|Coma Berenices|constellation +comal|1 +(adj)|comate|comose|hairy |hirsute +comanche|2 +(noun)|Comanche|Shoshone|Shoshoni +(noun)|Comanche|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language +comandra|1 +(noun)|Comandra|genus Comandra|dilleniid dicot genus +comandra pallida|1 +(noun)|bastard toadflax|Comandra pallida|parasitic plant +comate|2 +(adj)|comose|crowned +(adj)|comose|comal|hairy |hirsute +comatose|2 +(adj)|unconsciousness +(adj)|unconscious +comatoseness|1 +(noun)|coma|unconsciousness +comatula|1 +(noun)|Comatula|genus Comatula|Antedon|genus Antedon +comatulid|1 +(noun)|feather star|crinoid +comatulidae|1 +(noun)|Comatulidae|family Comatulidae|Antedonidae|family Antedonidae +comb|9 +(noun)|device +(noun)|cockscomb|coxcomb|crest +(noun)|caruncle|caruncula +(noun)|tool +(noun)|plate +(noun)|combing|hair care|haircare|hairdressing +(verb)|straighten|straighten out +(verb)|ransack|search +(verb)|comb out|disentangle|groom|neaten +comb-footed spider|1 +(noun)|theridiid|spider +comb-out|2 +(noun)|teasing|comb|combing +(noun)|disposal|disposition +comb jelly|1 +(noun)|ctenophore|invertebrate +comb out|2 +(verb)|weed out|get rid of|remove +(verb)|comb|disentangle|groom|neaten +combat|3 +(noun)|armed combat|battle|conflict|fight|engagement +(noun)|fight|fighting|scrap|conflict|struggle|battle +(verb)|battle|fight|struggle +combat-ready|1 +(adj)|active|fighting|operational +combat area|1 +(noun)|combat zone|zone +combat boot|1 +(noun)|buskin|chukka boot|desert boot|half boot|top boot|boot +combat casualty|1 +(noun)|battle damage|damage|equipment casualty +combat ceiling|1 +(noun)|service ceiling|ceiling +combat fatigue|1 +(noun)|battle fatigue|combat neurosis|shell shock|posttraumatic stress disorder|PTSD +combat injury|1 +(noun)|wound|injury|personnel casualty|loss +combat intelligence|1 +(noun)|tactical intelligence|intelligence|intelligence activity|intelligence operation +combat mission|1 +(noun)|mission|military mission +combat neurosis|1 +(noun)|battle fatigue|combat fatigue|shell shock|posttraumatic stress disorder|PTSD +combat pay|1 +(noun)|wage|pay|earnings|remuneration|salary +combat pilot|1 +(noun)|pilot|airplane pilot +combat ship|1 +(noun)|warship|war vessel|ship|military vehicle +combat zone|2 +(noun)|tenderloin|city district +(noun)|combat area|zone +combatant|2 +(adj)|military +(noun)|battler|belligerent|fighter|scrapper|person|individual|someone|somebody|mortal|human|soul +combative|2 +(adj)|agonistic|agonistical|competitive |competitory +(adj)|battleful|bellicose|contentious|aggressive +combatively|1 +(adv)|scrappily +combativeness|1 +(noun)|militance|militancy|aggressiveness +combed|1 +(adj)|combed +combinable|1 +(adj)|combinational|combinatory|combinative |combinatory +combination|7 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|sequence +(noun)|sequence +(noun)|unit|social unit +(noun)|alliance|coalition|alignment|alinement +(noun)|mathematical process|mathematical operation|operation +(noun)|combining|compounding|change of integrity +combination in restraint of trade|1 +(noun)|combination +combination lock|1 +(noun)|lock +combination plane|1 +(noun)|plane|carpenter's plane|woodworking plane +combination salad|1 +(noun)|tossed salad +combinational|1 +(adj)|combinable|combinatory|combinative |combinatory +combinative|2 +(adj)|combinative |combinatory|combinatorial|combinable|combinational|combinatory|integrative +(adj)|combinatory|combinatorial|integrative +combinatorial|2 +(adj)|combinative|combinatory|integrative +(adj)|combinative |combinatory +combinatory|3 +(adj)|combinative |combinatorial|combinable|combinational|integrative +(adj)|combinative|combinatorial|integrative +(adj)|combinable|combinational|combinative +combine|10 +(noun)|harvester|reaper +(noun)|trust|corporate trust|cartel|consortium|pool|syndicate +(noun)|combining|union +(verb)|compound|add +(verb)|unite|have|feature +(verb)|compound|mix|mingle|commix|unify|amalgamate +(verb)|contribute|give|chip in|kick in +(verb)|interact +(verb)|aggregate|mix|mingle|commix|unify|amalgamate +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|merge|change integrity +combined|2 +(adj)|concerted|conjunct|conjunctive|cooperative|united|joint +(adj)|combined |composed|compounded|conglomerate|hyphenated|occluded|sorbed|one|rolled into one +combined operation|1 +(noun)|operation|military operation +combing|1 +(noun)|comb|hair care|haircare|hairdressing +combining|2 +(noun)|combine|union +(noun)|combination|compounding|change of integrity +combining form|1 +(noun)|bound morpheme|bound form +combining weight|1 +(noun)|equivalent|equivalent weight|eq|atomic weight|relative atomic mass +combo|1 +(noun)|jazz band|jazz group|dance band|band|dance orchestra +combretaceae|1 +(noun)|Combretaceae|family Combretaceae|combretum family|dicot family|magnoliopsid family +combretum|1 +(noun)|woody plant|ligneous plant +combretum appiculatum|1 +(noun)|bush willow|Combretum appiculatum|angiospermous tree|flowering tree +combretum bracteosum|1 +(noun)|hiccup nut|hiccough nut|Combretum bracteosum|shrub|bush +combretum erythrophyllum|1 +(noun)|bush willow|Combretum erythrophyllum|angiospermous tree|flowering tree +combretum family|1 +(noun)|Combretaceae|family Combretaceae|dicot family|magnoliopsid family +combtooth blenny|1 +(noun)|blenny|blennioid fish|blennioid +comburant|1 +(adj)|comburent|combustive|combustible +comburent|1 +(adj)|comburant|combustive|combustible +combust|5 +(verb)|burn +(verb)|erupt|ignite|catch fire|take fire|conflagrate|change state|turn +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +(verb)|anger +(verb)|burn|change state|turn +combustible|2 +(adj)|combustible |burnable|flammable|ignitable|ignitible|inflammable|comburent|comburant|combustive|ignescent|incendiary +(noun)|combustible material|fuel +combustible material|1 +(noun)|combustible|fuel +combustion|3 +(noun)|burning|oxidation|oxidization|oxidisation +(noun)|tumult|tumultuousness|uproar|garboil +(noun)|burning|change of integrity +combustive|1 +(adj)|comburent|comburant|combustible +come|22 +(verb)|come up|travel|go|move|locomote|come with|come through|come in|come through|come up|come up +(verb)|arrive|get +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|change +(verb)|follow|originate|arise|rise|develop|uprise|spring up|grow +(verb)|become|go|get +(verb)|exist|be +(verb)|issue forth +(verb)|hail|be +(verb)|run|go|pass|lead|extend +(verb)|be +(verb)|derive|descend +(verb)|travel|go|move|locomote +(verb)|fall|be +(verb)|result|ensue +(verb)|total|number|add up|amount|be +(verb)|add up|amount|become|turn +(verb)|come in|arrive|get +(verb)|occur|become +(verb)|do|fare|make out|get along|proceed|go +(verb)|experience|undergo|see|go through +(verb)|rank +come-at-able|2 +(adj)|attainable|gettable|getable|possible +(adj)|get-at-able|getatable|accessible +come-on|2 +(noun)|bait|hook|lure|sweetener|temptation|enticement +(noun)|lure|enticement|attraction|attractiveness +come about|1 +(verb)|happen|hap|go on|pass off|occur|pass|fall out|take place +come across|5 +(verb)|fall upon|strike|come upon|light upon|chance upon|chance on|happen upon|attain|discover|find|regain +(verb)|look|appear|seem +(verb)|meet|ran into|encounter|run across|see +(verb)|come over|communicate|intercommunicate +(verb)|resonate +come after|2 +(verb)|follow|result|ensue +(verb)|succeed|follow +come alive|1 +(verb)|wake up|awake|arouse|awaken|wake|waken|change state|turn +come along|2 +(verb)|appear +(verb)|progress|come on|advance|get on|get along|shape up|develop +come apart|1 +(verb)|break|separate|split up|fall apart|change integrity +come around|2 +(verb)|come round|change +(verb)|roll around|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +come away|2 +(verb)|detach|come off|separate|divide|part +(verb)|leave|go forth|go away +come back|5 +(verb)|return|go back|get back|travel|go|move|locomote +(verb)|return|reappear|re-emerge +(verb)|hark back|return|recall|denote|refer +(verb)|catch up +(verb)|retort|repay|return|riposte|rejoin|answer|reply|respond +come before|1 +(verb)|precede +come by|2 +(verb)|drop by|drop in|visit|call in|call +(verb)|get|acquire +come close|2 +(verb)|act|move +(verb)|approximate|resemble +come down|5 +(verb)|descend|fall|go down|travel|go|move|locomote +(verb)|reduce|boil down|become|turn +(verb)|precipitate|fall +(verb)|sicken|worsen|decline +(verb)|knock|criticize|criticise|pick apart +come forth|2 +(verb)|issue|emerge|come out|go forth|egress +(verb)|emerge|originate|arise|rise|develop|uprise|spring up|grow +come forward|1 +(verb)|come to the fore|step forward|step up|step to the fore|come out|act|move +come hell or high water|1 +(adv)|no matter what happens|whatever may come +come home|1 +(verb)|click|get through|dawn|get across|sink in|penetrate|fall into place +come in|5 +(verb)|enter|get into|get in|go into|go in|move into +(verb)|come|arrive|get|come +(verb)|change +(verb)|interject|interpose|put in|throw in|inject|interrupt|disrupt|break up|cut off +(verb)|place|come out|rank +come in for|1 +(verb)|be +come in handy|1 +(verb)|be +come into|1 +(verb)|inherit|get|acquire +come into being|1 +(verb)|come to life|be born +come near|2 +(verb)|approach|near|come on|go up|draw near|draw close|come|come up +(verb)|approach|come|come up +come of age|1 +(verb)|grow up +come off|3 +(verb)|detach|come away|separate|divide|part +(verb)|go off|go over|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|chip|chip off|break away|break off|separate|divide|part +come on|5 +(verb)|come out|turn up|surface|show up|appear +(verb)|approach|near|go up|draw near|draw close|come near|come|come up +(verb)|progress|come along|advance|get on|get along|shape up|develop +(verb)|go on|come up|start|go|get going +(verb)|get down|begin|get|start out|start|set about|set out|commence +come out|11 +(verb)|come on|turn up|surface|show up|appear +(verb)|issue|emerge|come forth|go forth|egress +(verb)|appear|happen|materialize|materialise +(verb)|turn out|end|stop|finish|terminate|cease +(verb)|pop out|fall out|issue|emerge|come forth|go forth|egress +(verb)|place|come in|rank +(verb)|come to the fore|step forward|come forward|step up|step to the fore|act|move +(verb)|protrude|pop|pop out|bulge|bulge out|bug out|change shape|change form|deform +(verb)|come out of the closet|out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|out +(verb)|erupt|break through|push through|appear +come out of the closet|1 +(verb)|out|come out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +come over|1 +(verb)|come across|communicate|intercommunicate +come round|1 +(verb)|come around|change +come short|1 +(verb)|fall short|disappoint|let down +come through|4 +(verb)|break through|appear +(verb)|get through|reach|make|attain|hit|arrive at|gain +(verb)|survive|pull through|pull round|make it|get the better of|overcome|defeat +(verb)|succeed|win|bring home the bacon|deliver the goods +come to|4 +(verb)|hit|strike +(verb)|refer|pertain|relate|concern|bear on|touch|touch on +(verb)|strike|achieve|accomplish|attain|reach +(verb)|revive|resuscitate|change state|turn +come to grips|1 +(verb)|get to grips|manage|deal|care|handle +come to hand|1 +(verb)|come to light|appear +come to life|2 +(verb)|come into being|be born +(verb)|resemble +come to light|1 +(verb)|come to hand|appear +come to mind|1 +(verb)|spring to mind|appear +come to the fore|1 +(verb)|step forward|come forward|step up|step to the fore|come out|act|move +come together|1 +(verb)|close|move +come up|12 +(verb)|generate|bring forth +(verb)|arise|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|come|travel|go|move|locomote +(verb)|surface|rise up|rise|ascend|go up +(verb)|arise|bob up|become +(verb)|rise|lift|arise|move up|go up|uprise|travel|go|move|locomote +(verb)|arise +(verb)|go on|come on|start|go|get going +(verb)|line up|get hold|find|get|acquire +(verb)|rise|uprise|ascend|rise|lift|arise|move up|go up|uprise +(verb)|scrape|scrape up|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|muster|rally|summon|muster up|gather|garner|collect|pull together +come up to|1 +(verb)|address|accost|come|come up +come upon|2 +(verb)|fall upon|strike|light upon|chance upon|come across|chance on|happen upon|attain|discover|find|regain +(verb)|enter upon|luck into|get|acquire +come with|1 +(verb)|attach to|accompany|go with +comeback|2 +(noun)|rejoinder|retort|return|riposte|replication|counter|reply|response +(noun)|reappearance|return +comedian|2 +(noun)|comic|performer|performing artist +(noun)|actor|histrion|player|thespian|role player +comedienne|2 +(noun)|comedian +(noun)|comedian|comic +comedo|1 +(noun)|blackhead|blemish|defect|mar +comedown|1 +(noun)|humiliation|abasement +comedy|2 +(noun)|drama +(noun)|drollery|clowning|funniness|fun|play|sport +comedy ballet|1 +(noun)|ballet|concert dance +comeliness|1 +(noun)|fairness|loveliness|beauteousness|beauty +comely|2 +(adj)|becoming|comme il faut|decent|decorous|seemly|proper +(adj)|bonny|bonnie|fair|beautiful +comenius|1 +(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator|pedagogue +comer|2 +(noun)|rival|challenger|competitor|competition|contender +(noun)|arrival|arriver|traveler|traveller +comer vann woodward|1 +(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian|historiographer +comestible|2 +(adj)|edible |eatable|nonpoisonous|nontoxic|pareve|parve|killable|digestible|palatable|tender +(noun)|edible|eatable|pabulum|victual|victuals|food|nutrient +comet|1 +(noun)|extraterrestrial object|estraterrestrial body +cometary|1 +(adj)|cometic|extraterrestrial object|estraterrestrial body +cometic|1 +(adj)|cometary|extraterrestrial object|estraterrestrial body +comeupance|1 +(noun)|deserts|comeuppance|consequence|aftermath +comeuppance|1 +(noun)|deserts|comeupance|consequence|aftermath +comfit|2 +(noun)|sweet|confection|confectionery +(verb)|confect|confection|assemble|piece|put together|set up|tack|tack together +comfort|6 +(noun)|comfortableness|condition|status +(noun)|pleasure|pleasance +(noun)|consolation|solace|relief|succor|succour|ministration +(noun)|ease|affluence|richness +(verb)|soothe|console|solace +(verb)|ease|relieve|alleviate|palliate|assuage +comfort food|1 +(noun)|food|nutrient +comfort station|1 +(noun)|public toilet|public convenience|convenience|public lavatory|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +comfort woman|1 +(noun)|ianfu|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +comfort zone|1 +(noun)|temperature +comfortable|5 +(adj)|comfortable |comfy|cozy|cosy|snug|easy|homelike|homely|homey|homy|soothing +(adj)|comfortable |comforted|at ease|easy|at ease +(adj)|wide +(adj)|sufficient +(adj)|easy|prosperous|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich +comfortableness|2 +(noun)|comfort|condition|status +(noun)|belonging +comfortably|1 +(adv)|well +comforted|1 +(adj)|comfortable +comforter|4 +(noun)|sympathizer|sympathiser|communicator +(noun)|reliever|allayer|person|individual|someone|somebody|mortal|human|soul +(noun)|quilt|puff|bedclothes|bed clothing|bedding +(noun)|pacifier|baby's dummy|teething ring|device +comforting|2 +(adj)|cheering|satisfying|satisfactory +(adj)|consolatory|consoling|reassuring +comfortingly|1 +(adv)|consolingly +comfortless|1 +(adj)|uncomfortable +comforts|5 +(noun)|creature comforts|amenities|conveniences|support|keep|livelihood|living|bread and butter|sustenance +(noun)|comfort|comfortableness|condition|status +(noun)|comfort|pleasure|pleasance +(noun)|consolation|comfort|solace|relief|succor|succour|ministration +(noun)|ease|comfort|affluence|richness +comfrey|2 +(noun)|cumfrey|herb|herbaceous plant +(noun)|healing herb|herb +comfy|1 +(adj)|comfortable |cozy|cosy|snug|easy|homelike|homely|homey|homy|soothing +comic|3 +(adj)|amusing|comical|funny|laughable|mirthful|risible|humorous |humourous +(adj)|drama +(noun)|comedian|performer|performing artist +comic book|1 +(noun)|magazine|mag +comic opera|1 +(noun)|opera bouffe|bouffe|opera comique|opera +comic strip|1 +(noun)|cartoon strip|strip|cartoon|sketch +comical|1 +(adj)|amusing|comic|funny|laughable|mirthful|risible|humorous |humourous +comically|1 +(adv)|funny +coming|6 +(adj)|approaching|forthcoming|upcoming|future +(adj)|future day|future +(noun)|approach|approaching|motion|movement|move +(noun)|advent|arrival|reaching +(noun)|approach|approaching|timing +(noun)|orgasm|climax|sexual climax|consummation +coming attraction|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +coming back|1 +(noun)|return|turning|turn +coming into court|1 +(noun)|appearance|appearing|attendance|attending +coming together|2 +(noun)|meeting|assembly|assemblage|gathering +(noun)|merging|meeting|convergence|converging|convergency +coming upon|1 +(noun)|encounter|joining|connection|connexion +comint|1 +(noun)|communications intelligence|COMINT|signals intelligence|SIGINT +comity|1 +(noun)|harmony|concord|concordance +comity of nations|1 +(noun)|comity +comma|2 +(noun)|punctuation|punctuation mark +(noun)|comma butterfly|Polygonia comma|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +comma bacillus|1 +(noun)|Vibrio comma|vibrio|vibrion +comma butterfly|1 +(noun)|comma|Polygonia comma|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +command|12 +(noun)|bid|bidding|dictation|speech act +(noun)|military unit|military force|military group|force +(noun)|authority|authorization|authorisation|dominance|say-so +(noun)|handiness|accessibility|availability|availableness +(noun)|status|position +(noun)|control|mastery|skillfulness +(noun)|instruction|statement|program line|code|computer code +(verb)|dominate|master +(verb)|require|compel|order|tell|enjoin|say +(verb)|demand|exact +(verb)|dominate|overlook|overtop|lie +(verb)|control +command guidance|1 +(noun)|steering|guidance|direction +command key|1 +(noun)|control key|key +command language|1 +(noun)|query language|search language|source language +command line|1 +(noun)|instruction|command|statement|program line +command line interface|1 +(noun)|CLI|interface|user interface +command module|1 +(noun)|module +command overhead|1 +(noun)|command processing overhead time|command processing overhead|overhead|processing time +command post|1 +(noun)|general headquarters|GHQ|headquarters|HQ|military headquarters +command processing overhead|1 +(noun)|command processing overhead time|command overhead|overhead|processing time +command processing overhead time|1 +(noun)|command processing overhead|command overhead|overhead|processing time +command prompt|1 +(noun)|prompt|electronic communication +commandant|1 +(noun)|commanding officer|commander|military officer|officer +commandeer|1 +(verb)|hijack|highjack|pirate|seize +commander|4 +(noun)|commanding officer|commandant|military officer|officer +(noun)|leader +(noun)|commissioned naval officer +(noun)|air force officer|serviceman|military man|man|military personnel +commander in chief|1 +(noun)|generalissimo|commanding officer|commandant|commander +commandership|1 +(noun)|commandery|position|post|berth|office|spot|billet|place|situation +commandery|1 +(noun)|commandership|position|post|berth|office|spot|billet|place|situation +commanding|2 +(adj)|ranking|top-level|top-ranking|superior +(adj)|dominating|overlooking|high +commanding officer|1 +(noun)|commandant|commander|military officer|officer +commandment|2 +(noun)|command|bid|bidding|dictation +(noun)|teaching|precept|doctrine|philosophy|philosophical system|school of thought|ism +commando|2 +(noun)|ranger|serviceman|military man|man|military personnel +(noun)|military unit|military force|military group|force +comme il faut|1 +(adj)|becoming|comely|decent|decorous|seemly|proper +commedia dell'arte|1 +(noun)|comedy +commelina|1 +(noun)|flower +commelinaceae|1 +(noun)|Commelinaceae|family Commelinaceae|spiderwort family|monocot family|liliopsid family +commelinales|1 +(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order +commelinidae|1 +(noun)|Commelinidae|subclass Commelinidae|class +commemorate|3 +(verb)|mark|observe|celebrate|keep +(verb)|remember +(verb)|memorialize|memorialise|immortalize|immortalise|record|remind +commemorating|1 +(adj)|commemorative|ceremony|ceremonial|ceremonial occasion|observance +commemoration|2 +(noun)|memorialization|memorialisation|ceremony|ceremonial|ceremonial occasion|observance +(noun)|memorial|remembrance|recognition|credit +commemorative|1 +(adj)|commemorating|ceremony|ceremonial|ceremonial occasion|observance +commence|3 +(verb)|get down|begin|get|start out|start|set about|set out +(verb)|begin|lead off|start +(verb)|start|start up|embark on|begin|lead off|start +commencement|3 +(noun)|beginning|first|outset|get-go|start|kickoff|starting time|showtime|offset|point|point in time +(noun)|commencement exercise|commencement ceremony|graduation|graduation exercise|exercise +(noun)|beginning|start|change of state +commencement ceremony|1 +(noun)|commencement|commencement exercise|graduation|graduation exercise|exercise +commencement day|1 +(noun)|degree day|day +commencement exercise|1 +(noun)|commencement|commencement ceremony|graduation|graduation exercise|exercise +commend|5 +(verb)|praise +(verb)|portray|present +(verb)|entrust|intrust|trust|confide|commit +(verb)|recommend|praise +(verb)|remember|mention|advert|bring up|cite|name|refer +commendable|2 +(adj)|applaudable|laudable|praiseworthy|worthy +(adv)|admirably|laudably|praiseworthily +commendation|2 +(noun)|citation|award|accolade|honor|honour|laurels +(noun)|approval|message|content|subject matter|substance +commensal|2 +(adj)|mutuality|interdependence|interdependency +(noun)|organism|being +commensalism|1 +(noun)|mutuality|interdependence|interdependency +commensurable|1 +(adj)|commensurate +commensurate|1 +(adj)|commensurate |coextensive|coterminous|conterminous|commensurable|corresponding|proportionate|in proportion to|equal +commensurateness|1 +(noun)|correspondence|proportionateness|proportion|proportionality +comment|6 +(noun)|remark|statement +(noun)|commentary|statement +(noun)|gossip|scuttlebutt|report|account +(verb)|notice|remark|point out|note|observe|mention|remark +(verb)|explain|explicate +(verb)|gloss|annotate|interpret +commentary|1 +(noun)|comment|statement +commentate|2 +(verb)|interpret +(verb)|interpret +commentator|2 +(noun)|observer|expert +(noun)|reviewer|writer|author +commerce|3 +(noun)|commercialism|mercantilism|transaction|dealing|dealings +(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department +(noun)|conversation +commerce department|1 +(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department +commerce secretary|2 +(noun)|Secretary of Commerce|Commerce Secretary|secretary +(noun)|Secretary of Commerce|Commerce Secretary|secretaryship +commercial|4 +(adj)|commercial |commercialized|commercialised|mercantile|mercantile|mercenary|moneymaking|technical|technical|trade +(adj)|transaction|dealing|dealings +(adj)|inferior +(noun)|commercial message|ad|advertisement|advertizement|advertising|advertizing|advert +commercial activity|1 +(noun)|business activity|enterprise|endeavor|endeavour +commercial agency|1 +(noun)|mercantile agency|agency +commercial art|1 +(noun)|art|fine art +commercial artist|1 +(noun)|illustrator +commercial bank|1 +(noun)|full service bank|depository financial institution|bank|banking concern|banking company +commercial bribery|1 +(noun)|bribery|graft +commercial credit|1 +(noun)|credit +commercial credit company|1 +(noun)|commercial finance company|finance company +commercial document|1 +(noun)|commercial instrument|document|written document|papers +commercial enterprise|2 +(noun)|enterprise +(noun)|business enterprise|business|commerce|commercialism|mercantilism +commercial finance company|1 +(noun)|commercial credit company|finance company +commercial instrument|1 +(noun)|commercial document|document|written document|papers +commercial law|1 +(noun)|mercantile law|law merchant|law|jurisprudence +commercial letter of credit|1 +(noun)|letter of credit +commercial loan|1 +(noun)|business loan|bank loan +commercial message|1 +(noun)|commercial|ad|advertisement|advertizement|advertising|advertizing|advert +commercial paper|1 +(noun)|cash equivalent +commercial traveler|1 +(noun)|traveling salesman|travelling salesman|commercial traveller|roadman|bagman|salesman|spokesperson|interpreter|representative|voice +commercial traveller|1 +(noun)|traveling salesman|travelling salesman|commercial traveler|roadman|bagman|salesman|spokesperson|interpreter|representative|voice +commercial treaty|1 +(noun)|treaty|pact|accord +commercialisation|1 +(noun)|commercialization|exploitation|development +commercialise|1 +(verb)|commercialize|market|change|alter|modify +commercialised|1 +(adj)|commercialized|commercial +commercialism|1 +(noun)|commerce|mercantilism|transaction|dealing|dealings +commercialization|1 +(noun)|commercialisation|exploitation|development +commercialize|2 +(verb)|exploit|tap +(verb)|commercialise|market|change|alter|modify +commercialized|1 +(adj)|commercialised|commercial +commie|1 +(noun)|communist|socialist +comminate|1 +(verb)|execrate|anathemize|anathemise|anathematize|anathematise|deplore +commination|2 +(noun)|prayer|petition|orison +(noun)|threat +comminatory|1 +(adj)|denunciative|denunciatory|inculpatory |inculpative +commingle|2 +(verb)|blend|intermix|immingle|intermingle +(verb)|blend|flux|mix|conflate|immix|fuse|coalesce|meld|combine|merge|change integrity +comminute|1 +(verb)|grind|mash|crunch|bray|break up|fragment|fragmentize|fragmentise +comminuted fracture|1 +(noun)|fracture|break +commiphora|1 +(noun)|Commiphora|genus Commiphora|rosid dicot genus +commiphora meccanensis|1 +(noun)|balm of gilead|Commiphora meccanensis|incense tree +commiphora myrrha|1 +(noun)|myrrh tree|Commiphora myrrha|incense tree +commiserate|1 +(verb)|sympathize|sympathise|feel for|pity|compassionate|condole with|sympathize with +commiseration|2 +(noun)|pity|ruth|pathos|sympathy|fellow feeling +(noun)|condolence|acknowledgment|acknowledgement +commiserative|1 +(adj)|sympathetic +commissaire maigret|1 +(noun)|Inspector Maigret|Commissaire Maigret|fictional character|fictitious character|character +commissar|1 +(noun)|political commissar|official|functionary +commissariat|1 +(noun)|provisions|provender|viands|victuals|food|nutrient +commissary|2 +(noun)|shop|store +(noun)|snack bar|snack counter|buffet +commission|12 +(noun)|committee|administrative unit|administrative body +(noun)|fee +(noun)|commissioning|authorization|authorisation|empowerment +(noun)|operation +(noun)|deputation|delegation|delegacy|mission|organization|organisation +(noun)|charge|direction|command|bid|bidding|dictation +(noun)|military commission|certificate|certification|credential|credentials +(noun)|perpetration|committal|crime|law-breaking +(noun)|mission|charge|assignment|duty assignment +(verb)|equip|fit|fit out|outfit +(verb)|order +(verb)|authorize|authorise|pass|clear +commission on human rights|1 +(noun)|Commission on Human Rights|Economic and Social Council commission|ECOSOC commission +commission on narcotic drugs|1 +(noun)|Commission on Narcotic Drugs|Economic and Social Council commission|ECOSOC commission +commission on the status of women|1 +(noun)|Commission on the Status of Women|Economic and Social Council commission|ECOSOC commission +commission plan|1 +(noun)|municipal government +commissionaire|1 +(noun)|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|ostiary +commissioned|2 +(adj)|commissioned +(adj)|accredited|licensed|licenced|authorized |authorised +commissioned military officer|1 +(noun)|commissioned officer +commissioned naval officer|1 +(noun)|commissioned officer +commissioned officer|1 +(noun)|military officer|officer +commissioner|2 +(noun)|administrator|executive +(noun)|member +commissioning|1 +(noun)|commission|authorization|authorisation|empowerment +commit|5 +(verb)|perpetrate|pull|act|move +(verb)|give|dedicate|consecrate|devote|use|utilize|utilise|apply|employ +(verb)|institutionalize|institutionalise|send|charge|transfer +(verb)|entrust|intrust|trust|confide|pass|hand|reach|pass on|turn over|give +(verb)|invest|put|place|spend|expend|drop +commit suicide|1 +(verb)|kill +commitment|5 +(noun)|committedness|seriousness|earnestness|serious-mindedness|sincerity +(noun)|allegiance|loyalty|dedication|cooperation +(noun)|engagement|participation|involvement|involution +(noun)|dedication|message|content|subject matter|substance +(noun)|committal|consignment|confinement +committal|2 +(noun)|commitment|consignment|confinement +(noun)|perpetration|commission|crime|law-breaking +committal service|1 +(noun)|service|religious service|divine service +committal to memory|1 +(noun)|memorization|memorisation|learning|acquisition +committal to writing|1 +(noun)|writing|activity +committed|2 +(adj)|committed |bound up|wrapped up|pledged|sworn +(adj)|attached |affianced|bespoken|betrothed|engaged|pledged|involved|involved with|intended|loving +committedness|1 +(noun)|commitment|seriousness|earnestness|serious-mindedness|sincerity +committee|2 +(noun)|commission|administrative unit|administrative body +(noun)|citizens committee|nongovernmental organization|NGO +committee for state security|1 +(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency +committee meeting|1 +(noun)|board meeting|meeting +committee member|1 +(noun)|member +committeeman|1 +(noun)|committee member +committeewoman|1 +(noun)|committee member +commix|1 +(verb)|mix|mingle|unify|amalgamate|change|alter|modify +commixture|1 +(noun)|mix|admixture|mixture|intermixture|mixing|combination|combining|compounding +commode|2 +(noun)|toilet|can|crapper|pot|potty|stool|throne|plumbing fixture +(noun)|chiffonier|chest of drawers|chest|bureau|dresser +commodious|1 +(adj)|commodious |convenient|roomy|spacious +commodiousness|1 +(noun)|capaciousness|roominess|spaciousness|largeness|bigness +commodities exchange|2 +(noun)|commodity exchange|commodities market|exchange +(noun)|commodity exchange|commodities market|exchange +commodities market|1 +(noun)|commodity exchange|commodities exchange|exchange +commodity|1 +(noun)|trade goods|goods|artifact|artefact +commodity brokerage|1 +(noun)|brokerage +commodity exchange|1 +(noun)|commodities exchange|commodities market|exchange +commodore|1 +(noun)|commissioned naval officer +commodore john barry bridge|1 +(noun)|Commodore John Barry Bridge|cantilever bridge +commodore perry|1 +(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore +commodore vanderbilt|1 +(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier|moneyman|philanthropist|altruist +common|10 +(adj)|common |communal|public|joint +(adj)|common |average|ordinary|democratic|popular|demotic|frequent|general|grassroots|standard|usual|ordinary +(adj)|mutual|shared +(adj)|usual|familiar +(adj)|vernacular|vulgar|informal +(adj)|plebeian|vulgar|unwashed|lowborn +(adj)|coarse|inferior +(adj)|coarse|rough-cut|uncouth|vulgar|unrefined +(adj)|ordinary +(noun)|park|commons|green|tract|piece of land|piece of ground|parcel of land|parcel +common-law|1 +(adj)|unwritten +common-law marriage|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +common ageratum|1 +(noun)|Ageratum houstonianum|ageratum +common alder|1 +(noun)|European black alder|Alnus glutinosa|Alnus vulgaris|alder|alder tree +common allamanda|1 +(noun)|golden trumpet|Allamanda cathartica|allamanda +common american shad|1 +(noun)|common American shad|Alosa sapidissima|shad +common amsinckia|1 +(noun)|Amsinckia intermedia|herb|herbaceous plant +common apricot|1 +(noun)|Prunus armeniaca|apricot|apricot tree +common arrowhead|1 +(noun)|Sagittaria|genus Sagittaria +common ax|1 +(noun)|common axe|Dayton ax|Dayton axe|ax|axe +common axe|1 +(noun)|common ax|Dayton ax|Dayton axe|ax|axe +common bamboo|1 +(noun)|Bambusa vulgaris|bamboo +common barberry|1 +(noun)|European barberry|Berberis vulgaris|barberry +common barley|1 +(noun)|Hordeum vulgare|barley +common basil|1 +(noun)|sweet basil|Ocimum basilicum|basil +common bean|2 +(noun)|common bean plant|Phaseolus vulgaris|bean|bean plant +(noun)|bean|edible bean +common bean plant|1 +(noun)|common bean|Phaseolus vulgaris|bean|bean plant +common bearberry|1 +(noun)|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +common beech|1 +(noun)|European beech|Fagus sylvatica|beech|beech tree +common beet|1 +(noun)|beet|Beta vulgaris|vegetable +common bile duct|1 +(noun)|bile duct|duct|epithelial duct|canal|channel +common birch|1 +(noun)|silver birch|European white birch|Betula pendula|birch|birch tree +common bird cherry|1 +(noun)|hagberry tree|European bird cherry|Prunus padus|bird cherry|bird cherry tree +common blackfish|1 +(noun)|pilot whale|black whale|blackfish|Globicephala melaena|dolphin +common bog rosemary|1 +(noun)|marsh andromeda|Andromeda polifolia|andromeda +common booklouse|1 +(noun)|Trogium pulsatorium|booklouse|book louse|deathwatch|Liposcelis divinatorius +common box|1 +(noun)|European box|Buxus sempervirens|box|boxwood +common brant goose|1 +(noun)|Branta bernicla|brant|brant goose|brent|brent goose +common broom|1 +(noun)|Scotch broom|green broom|Cytisus scoparius|broom|Cytisus|genus Cytisus +common burdock|1 +(noun)|lesser burdock|Arctium minus|burdock|clotbur +common buttercup|1 +(noun)|Ranunculus bulbosus|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +common calamint|1 +(noun)|Calamintha sylvatica|Satureja calamintha officinalis|calamint +common camas|1 +(noun)|Camassia quamash|camas|camass|quamash|camosh|camash +common canary|1 +(noun)|Serinus canaria|canary|canary bird +common caper|1 +(noun)|Capparis spinosa|caper +common cardinal vein|1 +(noun)|cardinal vein +common carline thistle|1 +(noun)|Carlina vulgaris|carline thistle +common carotid|1 +(noun)|common carotid artery|carotid artery|arteria carotis +common carotid artery|1 +(noun)|common carotid|carotid artery|arteria carotis +common carrier|1 +(noun)|carrier|business|concern|business concern|business organization|business organisation +common chickweed|1 +(noun)|Stellaria media|chickweed +common chord|1 +(noun)|triad|chord +common cockscomb|1 +(noun)|cockscomb|Celosia cristata|Celosia argentea cristata|herb|herbaceous plant +common cold|1 +(noun)|cold|respiratory disease|respiratory illness|respiratory disorder|communicable disease +common comfrey|1 +(noun)|boneset|Symphytum officinale|comfrey|cumfrey +common coral tree|1 +(noun)|ceibo|crybaby tree|cry-baby tree|Erythrina crista-galli|coral tree|erythrina +common corn salad|1 +(noun)|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad +common cotton grass|1 +(noun)|Eriophorum angustifolium|cotton grass|cotton rush +common daisy|1 +(noun)|English daisy|Bellis perennis|daisy +common dandelion|1 +(noun)|Taraxacum ruderalia|Taraxacum officinale|dandelion|blowball +common denominator|2 +(noun)|denominator +(noun)|attribute +common devil's claw|1 +(noun)|common unicorn plant|devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb|herbaceous plant +common divisor|1 +(noun)|common factor|common measure|divisor|factor +common dogbane|1 +(noun)|spreading dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane +common dolphin|1 +(noun)|Delphinus delphis|dolphin +common duckweed|1 +(noun)|lesser duckweed|Lemna minor|duckweed +common eel|1 +(noun)|freshwater eel|eel +common eland|1 +(noun)|Taurotragus oryx|eland +common elder|1 +(noun)|bourtree|black elder|elderberry|European elder|Sambucus nigra|elder|elderberry bush +common era|1 +(noun)|Christian era|Common era|era|epoch +common european ash|1 +(noun)|European ash|common European ash|Fraxinus excelsior|ash|ash tree +common european dogwood|1 +(noun)|common European dogwood|red dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood|dogwood tree|cornel +common european earwig|1 +(noun)|common European earwig|Forficula auricularia|earwig +common european jay|1 +(noun)|common European jay|Garullus garullus|Old World jay +common evening primrose|1 +(noun)|German rampion|Oenothera biennis|evening primrose +common facial vein|1 +(noun)|vein|vena|venous blood vessel +common factor|1 +(noun)|common divisor|common measure|divisor|factor +common fate|1 +(noun)|law of common fate|Gestalt law of organization|Gestalt principle of organization +common fault|1 +(noun)|normal fault|gravity fault|inclined fault +common fennel|2 +(noun)|Foeniculum vulgare|fennel +(noun)|fennel|herb +common fig|1 +(noun)|fig|common fig tree|Ficus carica|fig tree +common fig tree|1 +(noun)|fig|common fig|Ficus carica|fig tree +common flat pea|1 +(noun)|native holly|Playlobium obtusangulum|shrub|bush +common four-o'clock|1 +(noun)|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock +common foxglove|1 +(noun)|fairy bell|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove|digitalis +common fraction|1 +(noun)|simple fraction|fraction +common front|1 +(noun)|movement|social movement|front +common garden cress|1 +(noun)|garden pepper cress|pepper grass|pepperwort|Lepidium sativum|cress|cress plant +common garter snake|1 +(noun)|Thamnophis sirtalis|garter snake|grass snake +common ginger|1 +(noun)|Canton ginger|stem ginger|Zingiber officinale|ginger +common good|1 +(noun)|commonweal|good +common grape hyacinth|1 +(noun)|Muscari neglectum|grape hyacinth +common grape vine|1 +(noun)|vinifera|vinifera grape|Vitis vinifera|grape|grapevine +common ground|1 +(noun)|footing|basis|ground +common gum cistus|1 +(noun)|Cistus ladanifer|Cistus ladanum|rockrose|rock rose +common heath|2 +(noun)|blunt-leaf heath|Epacris obtusifolia|epacris +(noun)|Epacris impressa|epacris +common hop|1 +(noun)|common hops|bine|European hop|Humulus lupulus|hop|hops +common hops|2 +(noun)|common hop|bine|European hop|Humulus lupulus|hop|hops +(noun)|common hop|bine|European hop|Humulus lupulus|hop|hops +common horehound|1 +(noun)|white horehound|Marrubium vulgare|horehound +common horsetail|1 +(noun)|field horsetail|Equisetum arvense|horsetail +common hyacinth|1 +(noun)|Hyacinthus orientalis|hyacinth +common iguana|1 +(noun)|iguana|Iguana iguana|iguanid|iguanid lizard +common iliac artery|1 +(noun)|iliac artery|arteria iliaca +common iliac vein|1 +(noun)|iliac vein|vena iliaca +common ivy|1 +(noun)|ivy|English ivy|Hedera helix|vine +common jasmine|1 +(noun)|true jasmine|jessamine|Jasminum officinale|jasmine +common juniper|1 +(noun)|Juniperus communis|juniper +common kingsnake|1 +(noun)|Lampropeltis getulus|king snake|kingsnake +common knowledge|1 +(noun)|public knowledge|general knowledge +common laburnum|1 +(noun)|golden chain|golden rain|Laburnum anagyroides|flowering shrub +common lady's-slipper|1 +(noun)|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +common land|1 +(noun)|commons|pasture|pastureland|grazing land|lea|ley +common law|2 +(noun)|case law|precedent|civil law +(noun)|case law|precedent|law|jurisprudence +common lettuce|1 +(noun)|garden lettuce|Lactuca sativa|lettuce +common lilac|1 +(noun)|Syringa vulgaris|lilac +common limpet|1 +(noun)|Patella vulgata|limpet +common logarithm|1 +(noun)|logarithm|log +common louse|1 +(noun)|Pediculus humanus|louse|sucking louse +common lynx|1 +(noun)|Lynx lynx|lynx|catamount +common mackerel|1 +(noun)|shiner|Scomber scombrus|mackerel +common madia|1 +(noun)|common tarweed|Madia elegans|wildflower|wild flower +common maidenhair|1 +(noun)|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +common mallow|1 +(noun)|Malva neglecta|mallow +common man|1 +(noun)|commoner|common person|person|individual|someone|somebody|mortal|human|soul +common marigold|1 +(noun)|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula +common market|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +common matrimony vine|1 +(noun)|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine|boxthorn +common measure|3 +(noun)|common time|four-four time|quadruple time|musical time +(noun)|common divisor|common factor|divisor|factor +(noun)|common meter|meter|metre|measure|beat|cadence +common meter|1 +(noun)|common measure|meter|metre|measure|beat|cadence +common milkwort|1 +(noun)|gand flower|Polygala vulgaris|milkwort +common mood|1 +(noun)|indicative mood|indicative|declarative mood|declarative|fact mood|mood|mode|modality +common moonseed|1 +(noun)|Canada moonseed|yellow parilla|Menispermum canadense|moonseed +common moonwort|1 +(noun)|moonwort|Botrychium lunaria|grape fern +common morel|1 +(noun)|Morchella esculenta|sponge mushroom|sponge morel|morel +common morning glory|2 +(noun)|Ipomoea tricolor|morning glory +(noun)|Ipomoea purpurea|morning glory +common mosquito|1 +(noun)|Culex pipiens|mosquito +common mugwort|1 +(noun)|Artemisia vulgaris|mugwort +common mullein|1 +(noun)|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +common multiple|1 +(noun)|integer|whole number +common murre|1 +(noun)|Uria aalge|murre +common myrtle|1 +(noun)|Myrtus communis|myrtle +common nardoo|1 +(noun)|nardoo|nardo|Marsilea drummondii|clover fern|pepperwort +common newt|1 +(noun)|Triturus vulgaris|newt|triton +common nightshade|1 +(noun)|black nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade +common noun|1 +(noun)|noun +common nuisance|1 +(noun)|public nuisance|nuisance +common nutcracker|1 +(noun)|Nucifraga caryocatactes|nutcracker +common oak|1 +(noun)|English oak|pedunculate oak|Quercus robur|white oak +common opossum|1 +(noun)|Didelphis virginiana|Didelphis marsupialis|opossum|possum +common or garden|1 +(adj)|familiar +common osier|1 +(noun)|hemp willow|velvet osier|Salix viminalis|osier +common pea|1 +(noun)|garden pea|garden pea plant|Pisum sativum|pea|pea plant +common people|1 +(noun)|folk|people +common pepper|1 +(noun)|pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +common person|1 +(noun)|commoner|common man|person|individual|someone|somebody|mortal|human|soul +common pitcher plant|1 +(noun)|huntsman's cup|huntsman's cups|Sarracenia purpurea|pitcher plant +common plantain|1 +(noun)|broad-leaved plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain +common plum|1 +(noun)|Prunus domestica|plum|plum tree +common polypody|1 +(noun)|adder's fern|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody +common pond-skater|1 +(noun)|Gerris lacustris|water strider|pond-skater|water skater +common privet|1 +(noun)|Ligustrum vulgare|privet +common purslane|1 +(noun)|pussley|pusly|verdolagas|Portulaca oleracea|purslane +common raccoon|1 +(noun)|common racoon|coon|ringtail|Procyon lotor|raccoon|racoon +common racoon|1 +(noun)|common raccoon|coon|ringtail|Procyon lotor|raccoon|racoon +common ragweed|1 +(noun)|Ambrosia artemisiifolia|ragweed|ambrosia|bitterweed +common reed|1 +(noun)|ditch reed|carrizo|Phragmites communis|reed|Phragmites|genus Phragmites +common room|1 +(noun)|living room|living-room|sitting room|front room|parlor|parlour +common rorqual|1 +(noun)|finback|finback whale|fin whale|Balaenoptera physalus|rorqual|razorback +common rose mallow|1 +(noun)|rose mallow|swamp mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus +common roundworm|1 +(noun)|Ascaris lumbricoides|nematode|nematode worm|roundworm +common rush|1 +(noun)|bulrush|bullrush|soft rush|Juncus effusus|rush +common sage|1 +(noun)|ramona|Salvia officinalis|sage|salvia +common salt|2 +(noun)|sodium chloride|binary compound +(noun)|salt|table salt|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +common scold|1 +(noun)|scold|scolder|nag|nagger|unpleasant person|disagreeable person +common scoter|1 +(noun)|Melanitta nigra|scoter|scooter +common scurvy grass|1 +(noun)|scurvy grass|Cochlearia officinalis|cress|cress plant +common seal|1 +(noun)|harbor seal|Phoca vitulina|earless seal|true seal|hair seal +common sense|1 +(noun)|good sense|gumption|horse sense|sense|mother wit|sagacity|sagaciousness|judgment|judgement|discernment +common shares|1 +(noun)|common stock|ordinary shares|stock +common shiner|1 +(noun)|silversides|Notropis cornutus|shiner +common shrew|1 +(noun)|Sorex araneus|shrew|shrewmouse +common sickle pine|1 +(noun)|Falcatifolium falciforme|conifer|coniferous tree +common snapping turtle|1 +(noun)|snapper|Chelydra serpentina|snapping turtle +common snipe|1 +(noun)|whole snipe|Gallinago gallinago|snipe +common snowberry|1 +(noun)|snowberry|waxberry|Symphoricarpos alba|poisonous plant|Caprifoliaceae|family Caprifoliaceae|honeysuckle family +common soldier|1 +(noun)|private|buck private|enlisted man +common sorrel|1 +(noun)|sorrel|greens|green|leafy vegetable +common speedwell|1 +(noun)|gypsyweed|Veronica officinalis|veronica|speedwell +common spindle tree|1 +(noun)|Euonymus europaeus|spindle tree|spindleberry|spindleberry tree +common spoonbill|1 +(noun)|Platalea leucorodia|spoonbill +common spotted orchid|1 +(noun)|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid|orchidaceous plant +common st john's wort|1 +(noun)|common St John's wort|tutsan|Hypericum androsaemum|St John's wort +common staghorn fern|1 +(noun)|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern +common starling|1 +(noun)|Sturnus vulgaris|starling +common stinkhorn|1 +(noun)|Phallus impudicus|stinkhorn|carrion fungus +common stock|1 +(noun)|common shares|ordinary shares|stock +common stock equivalent|1 +(noun)|stock +common sunflower|1 +(noun)|mirasol|Helianthus annuus|sunflower|helianthus +common tarweed|1 +(noun)|common madia|Madia elegans|wildflower|wild flower +common teasel|1 +(noun)|Dipsacus fullonum|teasel|teazel|teasle +common thorn apple|1 +(noun)|jimsonweed|jimson weed|Jamestown weed|apple of Peru|Datura stramonium|thorn apple +common thyme|1 +(noun)|Thymus vulgaris|thyme +common time|1 +(noun)|four-four time|quadruple time|common measure|musical time +common tobacco|1 +(noun)|Nicotiana tabacum|tobacco +common topaz|1 +(noun)|topaz|false topaz|quartz +common touch|1 +(noun)|touch|signature +common unicorn plant|1 +(noun)|devil's claw|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb|herbaceous plant +common valerian|1 +(noun)|garden heliotrope|Valeriana officinalis|valerian +common vetchling|1 +(noun)|meadow pea|yellow vetchling|Lathyrus pratensis|wild pea +common viper|1 +(noun)|adder|Vipera berus|viper +common wallaby|1 +(noun)|Macropus agiles|wallaby|brush kangaroo +common wart|1 +(noun)|wart|verruca +common wasp|1 +(noun)|Vespula vulgaris|vespid|vespid wasp +common water snake|1 +(noun)|banded water snake|Natrix sipedon|Nerodia sipedon|water snake +common watercress|1 +(noun)|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress +common wheat|1 +(noun)|Triticum aestivum|wheat|corn +common white dogwood|1 +(noun)|eastern flowering dogwood|Cornus florida|dogwood|dogwood tree|cornel +common winterberry holly|1 +(noun)|holly +common wolffia|1 +(noun)|Wolffia columbiana|watermeal +common wood sorrel|1 +(noun)|cuckoo bread|shamrock|Oxalis acetosella|oxalis|sorrel|wood sorrel +common wormwood|1 +(noun)|absinthe|old man|lad's love|Artemisia absinthium|wormwood +common year|1 +(noun)|365 days|year|twelvemonth|yr +common yellowthroat|1 +(noun)|Maryland yellowthroat|Geothlypis trichas|yellowthroat +common yellowwood|1 +(noun)|bastard yellowwood|Afrocarpus falcata|gymnospermous yellowwood +common zebra|1 +(noun)|Burchell's zebra|Equus Burchelli|zebra +commonage|1 +(noun)|property|belongings|holding|material possession +commonality|2 +(noun)|commonalty|commons|class|social class|socio-economic class +(noun)|commonness|generality +commonalty|1 +(noun)|commonality|commons|class|social class|socio-economic class +commoner|1 +(noun)|common man|common person|person|individual|someone|somebody|mortal|human|soul +commonly|1 +(adv)|normally|usually|unremarkably|ordinarily +commonness|4 +(noun)|expectedness|normality|normalcy +(noun)|coarseness|grossness|vulgarity|vulgarism|raunch|inelegance +(noun)|commonplaceness|everydayness|ordinariness +(noun)|commonality|generality +commonplace|5 +(adj)|banal|trivial|ordinary +(adj)|ordinary +(adj)|humdrum|prosaic|unglamorous|unglamourous|unexciting +(adj)|banal|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal +(noun)|platitude|cliche|banality|bromide|remark|comment|truism +commonplace book|1 +(noun)|notebook +commonplaceness|1 +(noun)|commonness|everydayness|ordinariness +commons|4 +(noun)|park|common|green|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|common land|pasture|pastureland|grazing land|lea|ley +(noun)|commonalty|commonality|class|social class|socio-economic class +(noun)|park|common|green|tract|piece of land|piece of ground|parcel of land|parcel +commonsense|1 +(adj)|commonsensible|commonsensical|reasonable |sensible +commonsensible|1 +(adj)|commonsense|commonsensical|reasonable |sensible +commonsensical|1 +(adj)|commonsense|commonsensible|reasonable |sensible +commonweal|1 +(noun)|common good|good +commonwealth|4 +(noun)|state|province +(noun)|state|nation|country|land|res publica|body politic|political unit +(noun)|world organization|world organisation|international organization|international organisation|global organization +(noun)|democracy|republic|political system|form of government +commonwealth day|1 +(noun)|Commonwealth Day|Empire day|May 24|legal holiday|national holiday +commonwealth of australia|1 +(noun)|Australia|Commonwealth of Australia|country|state|land +commonwealth of dominica|1 +(noun)|Dominica|Commonwealth of Dominica|country|state|land +commonwealth of independent states|1 +(noun)|Commonwealth of Independent States|CIS|world organization|world organisation|international organization|international organisation|global organization +commonwealth of nations|1 +(noun)|British Commonwealth|Commonwealth of Nations|commonwealth +commonwealth of puerto rico|1 +(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth +commonwealth of the bahamas|1 +(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country|state|land +commotion|3 +(noun)|disturbance|disruption|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +(noun)|din|ruction|ruckus|rumpus|tumult|disturbance +(noun)|whirl|movement|motion +commove|2 +(verb)|agitate|rouse|turn on|charge|excite|charge up|disturb|upset|trouble +(verb)|agitate|vex|disturb|shake up|stir up|raise up|move|displace +communal|2 +(adj)|common +(adj)|administrative district|administrative division|territorial division +communalise|1 +(verb)|communalize|share +communalism|2 +(noun)|group action +(noun)|commitment|allegiance|loyalty|dedication +communalize|1 +(verb)|communalise|share +commune|4 +(noun)|administrative district|administrative division|territorial division +(noun)|gathering|assemblage +(verb)|communicate|intercommunicate +(verb)|communicate|covenant +communicable|2 +(adj)|catching|contagious|contractable|transmissible|transmittable|infectious +(adj)|communicative |communicatory +communicable disease|1 +(noun)|disease +communicant|1 +(noun)|Christian +communicate|7 +(verb)|pass on|pass|put across|convey|transmit +(verb)|intercommunicate|interact +(verb)|convey|transmit|transfer +(verb)|intercommunicate +(verb)|interact +(verb)|covenant +(verb)|commune|covenant +communicating|1 +(noun)|communication|act|human action|human activity +communicating artery|1 +(noun)|arteria communicans|artery|arteria|arterial blood vessel +communication|3 +(noun)|communicating|act|human action|human activity +(noun)|social relation +(noun)|connection|connexion|connectedness +communication channel|1 +(noun)|channel|line|communication|communicating +communication equipment|1 +(noun)|communication system|facility|installation +communication system|2 +(noun)|system +(noun)|communication equipment|facility|installation +communication theory|1 +(noun)|communications|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +communication trench|1 +(noun)|approach trench|trench +communicational|1 +(adj)|communicative |communicatory +communications|4 +(noun)|communication theory|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|communication|communicating|act|human action|human activity +(noun)|communication|social relation +(noun)|communication|connection|connexion|connectedness +communications intelligence|1 +(noun)|COMINT|signals intelligence|SIGINT +communications protocol|1 +(noun)|protocol|rule|prescript +communications satellite|1 +(noun)|satellite|artificial satellite|orbiter +communications security establishment|1 +(noun)|Communications Security Establishment|CSE|international intelligence agency +communications technology|1 +(noun)|technology|engineering +communicative|2 +(adj)|social relation +(adj)|communicative |communicatory|anecdotic|anecdotal|anecdotical|Bantu-speaking|blabbermouthed|leaky|talebearing|tattling|chatty|gossipy|newsy|English-speaking|expansive|talkative|expressive|Finno-Ugric-speaking|Flemish-speaking|French-speaking|Gaelic-speaking|German-speaking|gesticulating|gestural|nonverbal|gestural|sign|signed|sign-language|heraldic|Icelandic-speaking|Italian-speaking|Japanese-speaking|Kannada-speaking|Livonian-speaking|narrative|nonverbal|nonverbal|Oscan-speaking|outspoken|vocal|Russian-speaking|Samoyedic-speaking|Semitic-speaking|Siouan-speaking|Spanish-speaking|Turkic-speaking|verbal|yarn-spinning|communicable|communicational|openhearted|articulate|voluble +communicativeness|1 +(noun)|trait +communicator|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +communicatory|1 +(adj)|communicative |anecdotic|anecdotal|anecdotical|Bantu-speaking|blabbermouthed|leaky|talebearing|tattling|chatty|gossipy|newsy|English-speaking|expansive|talkative|expressive|Finno-Ugric-speaking|Flemish-speaking|French-speaking|Gaelic-speaking|German-speaking|gesticulating|gestural|nonverbal|gestural|sign|signed|sign-language|heraldic|Icelandic-speaking|Italian-speaking|Japanese-speaking|Kannada-speaking|Livonian-speaking|narrative|nonverbal|nonverbal|Oscan-speaking|outspoken|vocal|Russian-speaking|Samoyedic-speaking|Semitic-speaking|Siouan-speaking|Spanish-speaking|Turkic-speaking|verbal|yarn-spinning|communicable|communicational|openhearted|articulate|voluble +communion|3 +(noun)|Communion|Holy Communion|sacramental manduction|manduction|ritual +(noun)|sharing|intercourse|social intercourse +(noun)|denomination +communion table|1 +(noun)|altar|Lord's table|table +communique|1 +(noun)|dispatch|despatch|report|news report|story|account|write up +communisation|3 +(noun)|communization|change +(noun)|communization|constitution|establishment|formation|organization|organisation +(noun)|nationalization|nationalisation|communization|social control +communise|2 +(verb)|communize|bolshevize|bolshevise|change|alter|modify +(verb)|communize|nationalize|nationalise +communism|2 +(noun)|socialism|socialist economy +(noun)|political orientation|ideology|political theory +communist|3 +(adj)|communistic|political orientation|ideology|political theory +(noun)|Communist|politician|politico|pol|political leader +(noun)|commie|socialist +communist china|1 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +communist economy|1 +(noun)|managed economy +communist manifesto|1 +(noun)|Communist Manifesto|manifesto|pronunciamento +communist party|1 +(noun)|Communist Party|party|political party +communist party of kampuchea|1 +(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization|terrorist group|foreign terrorist organization|FTO +communistic|1 +(adj)|communist|political orientation|ideology|political theory +community|8 +(noun)|gathering|assemblage +(noun)|people +(noun)|ownership +(noun)|world organization|world organisation|international organization|international organisation|global organization +(noun)|profession|occupational group|vocation +(noun)|community of interests|agreement|accord +(noun)|residential district|residential area|district|territory|territorial dominion|dominion +(noun)|biotic community|group|grouping +community center|1 +(noun)|civic center|center|centre +community chest|1 +(noun)|charity +community college|1 +(noun)|junior college +community of interests|1 +(noun)|community|agreement|accord +community of scholars|1 +(noun)|profession|community +community property|1 +(noun)|property|belongings|holding|material possession +community service|2 +(noun)|public service|service +(noun)|service +communization|3 +(noun)|communisation|change +(noun)|communisation|constitution|establishment|formation|organization|organisation +(noun)|nationalization|nationalisation|communisation|social control +communize|2 +(verb)|communise|bolshevize|bolshevise|change|alter|modify +(verb)|communise|nationalize|nationalise +commutability|2 +(noun)|replaceability|substitutability|exchangeability|interchangeability|interchangeableness|fungibility +(noun)|transmutability|changeableness|changeability +commutable|2 +(adj)|commutable |alterable|convertible|transformable|translatable|transmutable +(adj)|substitutable|exchangeable +commutate|1 +(verb)|change by reversal|turn|reverse +commutation|4 +(noun)|commuting|travel|traveling|travelling +(noun)|warrant +(noun)|re-sentencing|clemency|mercifulness|mercy +(noun)|substitution|exchange|change +commutation ticket|1 +(noun)|season ticket|ticket +commutative|1 +(adj)|independent +commutative group|1 +(noun)|Abelian group|group|mathematical group +commutator|1 +(noun)|switch|electric switch|electrical switch +commute|5 +(verb)|transpose|change +(verb)|travel back and forth|travel|trip|jaunt +(verb)|permute|transpose|change by reversal|turn|reverse +(verb)|convert|exchange|change|alter|modify +(verb)|change|exchange|convert|replace +commuter|2 +(noun)|commuter train|passenger train +(noun)|passenger|rider +commuter traffic|1 +(noun)|traffic +commuter train|1 +(noun)|commuter|passenger train +commuting|1 +(noun)|commutation|travel|traveling|travelling +comoro islands|1 +(noun)|Comoro Islands|Iles Comores|archipelago +comoros|1 +(noun)|Comoros|Federal Islamic Republic of the Comoros|country|state|land +comose|2 +(adj)|comate|crowned +(adj)|comate|comal|hairy |hirsute +compact|11 +(adj)|compact |clayey|cloggy|heavy|close-packed|impacted|wedged|serried|consolidated|packed|tight|concentrated +(adj)|dense|thick|concentrated +(adj)|heavyset|stocky|thick|thickset|fat +(adj)|compendious|succinct|summary|concise +(noun)|powder compact|case +(noun)|covenant|concordat|written agreement +(noun)|compact car|car|auto|automobile|machine|motorcar +(verb)|pack|be +(verb)|pack|bundle|wad|arrange|set up +(verb)|compress|pack together|wedge|squeeze|force +(verb)|compress|constrict|squeeze|contract|press|tighten +compact-disk burner|1 +(noun)|CD burner|recorder|recording equipment|recording machine +compact car|1 +(noun)|compact|car|auto|automobile|machine|motorcar +compact disc|1 +(noun)|compact disk|CD|optical disk|optical disc|recording +compact disc read-only memory|1 +(noun)|CD-ROM|compact disk|compact disc|CD|read-only memory|ROM|read-only storage|fixed storage +compact disc recordable|1 +(noun)|CD-R|CD-WO|compact disc write-once|compact disk|compact disc|CD +compact disc write-once|1 +(noun)|CD-R|compact disc recordable|CD-WO|compact disk|compact disc|CD +compact disk|1 +(noun)|compact disc|CD|optical disk|optical disc|recording +compaction|2 +(noun)|compression|concretion|densification|concentration +(noun)|crush|crunch|compression|compressing +compactly|1 +(adv)|succinctly +compactness|2 +(noun)|concentration|density|denseness|spacing|spatial arrangement +(noun)|solidity|solidness +companion|4 +(noun)|comrade|fellow|familiar|associate|friend +(noun)|fellow traveler|fellow traveller|traveler|traveller +(noun)|attendant|attender|tender +(verb)|company|accompany|keep company|consort|associate|affiliate|assort +companionability|1 +(noun)|companionableness|sociability|sociableness +companionable|1 +(adj)|sociable +companionableness|1 +(noun)|companionability|sociability|sociableness +companionate|1 +(adj)|friendly +companionship|1 +(noun)|company|fellowship|society|friendship|friendly relationship +companionway|1 +(noun)|stairway|staircase|stairs|steps +company|10 +(noun)|institution|establishment +(noun)|troupe|organization|organisation +(noun)|companionship|fellowship|society|friendship|friendly relationship +(noun)|army unit +(noun)|party|set|circle|band|lot +(noun)|social gathering|social affair +(noun)|caller|visitor|visitant +(noun)|unit|social unit +(noun)|ship's company|complement|full complement +(verb)|companion|accompany|keep company|consort|associate|affiliate|assort +company man|1 +(noun)|employee +company name|1 +(noun)|name +company operator|1 +(noun)|operator|manipulator +company union|1 +(noun)|union|labor union|trade union|trades union|brotherhood +comparability|1 +(noun)|comparison|compare|equivalence|likeness|alikeness|similitude +comparable|2 +(adj)|comparable |comparable with|comparable to|equal|parallel +(adj)|corresponding|like|same +comparable to|1 +(adj)|comparable +comparable with|1 +(adj)|comparable +comparative|3 +(adj)|relation +(adj)|relative +(noun)|adjective +comparative anatomist|1 +(noun)|anatomist +comparative anatomy|1 +(noun)|anatomy|general anatomy +comparative literature|1 +(noun)|literary study +comparative negligence|1 +(noun)|negligence|carelessness|neglect|nonperformance +comparative psychology|1 +(noun)|animal psychology|psychology|psychological science +comparatively|1 +(adv)|relatively +compare|5 +(noun)|comparison|equivalence|comparability|likeness|alikeness|similitude +(verb)|analyze|analyse|study|examine|canvass|canvas +(verb)|be +(verb)|liken|equate|study|consider +(verb)|inflect +comparing|1 +(noun)|comparison|examination|scrutiny +comparison|3 +(noun)|comparing|examination|scrutiny +(noun)|relation +(noun)|compare|equivalence|comparability|likeness|alikeness|similitude +comparison-shop|1 +(verb)|shop|browse +compart|1 +(verb)|range|array|lay out|set out +compartment|2 +(noun)|storage space +(noun)|room +compartment pressure|1 +(noun)|atmospheric pressure|air pressure +compartmental|1 +(adj)|compartmentalized|compartmentalised|compartmented +compartmentalisation|2 +(noun)|compartmentalization|dissociation|disassociation +(noun)|categorization|categorisation|classification|compartmentalization|assortment|grouping +compartmentalise|1 +(verb)|compartmentalize|cut up|separate|disunite|divide|part +compartmentalised|1 +(adj)|compartmental|compartmentalized|compartmented +compartmentalization|2 +(noun)|compartmentalisation|dissociation|disassociation +(noun)|categorization|categorisation|classification|compartmentalisation|assortment|grouping +compartmentalize|1 +(verb)|compartmentalise|cut up|separate|disunite|divide|part +compartmentalized|1 +(adj)|compartmental|compartmentalised|compartmented +compartmented|1 +(adj)|compartmented |compartmental|compartmentalized|compartmentalised +compass|7 +(noun)|navigational instrument +(noun)|scope|range|reach|orbit|ambit|extent +(noun)|range|reach|grasp|capability|capableness|potentiality +(noun)|drafting instrument +(verb)|achieve|accomplish|attain|reach +(verb)|circumnavigate|circle +(verb)|get the picture|comprehend|savvy|dig|grasp|apprehend|understand +compass card|1 +(noun)|mariner's compass|magnetic compass +compass flower|1 +(noun)|compass plant|composite|composite plant +compass north|1 +(noun)|north|magnetic north|direction +compass plane|1 +(noun)|circular plane|plane|carpenter's plane|woodworking plane +compass plant|2 +(noun)|prairie bird's-foot trefoil|prairie lotus|prairie trefoil|Lotus americanus|subshrub|suffrutex +(noun)|compass flower|composite|composite plant +compass point|1 +(noun)|point|direction +compass saw|1 +(noun)|handsaw|carpenter's saw +compassion|2 +(noun)|compassionateness|sympathy|fellow feeling +(noun)|pity|mercifulness|mercy +compassionate|4 +(adj)|merciful +(adj)|compassionate |caring|nurturant|tenderhearted|pitying|sorry|sorry for|merciful|sympathetic +(adj)|humane +(verb)|feel for|pity|condole with|sympathize with|grieve|sorrow +compassionate leave|1 +(noun)|leave|leave of absence +compassionately|1 +(adv)|pityingly|with compassion|with pity +compassionateness|1 +(noun)|compassion|sympathy|fellow feeling +compatibility|2 +(noun)|rapport|sympathy|fellow feeling +(noun)|characteristic +compatible|5 +(adj)|compatible |congenial|congruous|harmonious|congenial|agreeable|harmonious|matched +(adj)|sympathetic|congenial |agreeable +(adj)|compatible +(adj)|well-matched|matched +(adj)|miscible |mixable +compatible software|2 +(noun)|software|software system|software package|package +(noun)|software|software system|software package|package +compatriot|1 +(noun)|national|subject +compeer|1 +(noun)|peer|equal|match|person|individual|someone|somebody|mortal|human|soul +compel|2 +(verb)|oblige|obligate|induce|stimulate|cause|have|get|make +(verb)|command|require|order|tell|enjoin|say +compelling|2 +(adj)|powerful +(adj)|persuasive +compendious|1 +(adj)|compact|succinct|summary|concise +compendium|2 +(noun)|collection|publication +(noun)|summary +compensable|1 +(adj)|paying|remunerative|salaried|stipendiary|paid +compensate|6 +(verb)|counterbalance|correct|even out|even off|even up|balance|equilibrate|equilibrize|equilibrise +(verb)|recompense|repair|indemnify|pay +(verb)|cover|overcompensate|counterbalance|correct|even out|even off|even up +(verb)|right|redress|correct|change|alter|modify +(verb)|pay|pay off|make up|settle +(verb)|recompense|remunerate|pay +compensated|1 +(adj)|remunerated|salaried|stipendiary|paid +compensating balance|1 +(noun)|offsetting balance|balance +compensation|3 +(noun)|recompense +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|recompense|correction|rectification +compensative|1 +(adj)|countervailing|offsetting|compensatory|counteractive |antagonistic +compensatory|1 +(adj)|countervailing|offsetting|compensative|counteractive |antagonistic +compensatory damages|1 +(noun)|actual damages|general damages|damages|amends|indemnity|indemnification|restitution|redress +compensatory spending|1 +(noun)|deficit spending|pump priming|spending|disbursement|disbursal|outlay +compensatory time|1 +(noun)|time off +compere|2 +(noun)|master of ceremonies|emcee|host +(verb)|emcee|host +compete|1 +(verb)|vie|contend +competence|1 +(noun)|competency|ability +competence hearing|1 +(noun)|hearing +competency|1 +(noun)|competence|ability +competent|2 +(adj)|competent |able|capable|effective|efficient|qualified|workmanlike|capable|efficient|qualified|skilled +(adj)|adequate +competently|1 +(adv)|aptly|ably|capably|with competence +competing|1 +(adj)|competitive |competitory +competition|4 +(noun)|business relation +(noun)|contest|social event +(noun)|contention|rivalry|group action +(noun)|rival|challenger|competitor|contender|contestant +competitive|3 +(adj)|competitive |competitory|agonistic|agonistical|combative|competing|contending|emulous|rivalrous|matched +(adj)|free-enterprise|private-enterprise|capitalistic |capitalist +(adj)|militant|aggressive +competitiveness|1 +(noun)|fight|aggressiveness +competitor|1 +(noun)|rival|challenger|competition|contender|contestant +competitory|1 +(adj)|competitive |agonistic|agonistical|combative|competing|contending|emulous|rivalrous|matched +compilation|2 +(noun)|digest|collection|compendium +(noun)|compiling|collection|collecting|assembling|aggregation +compile|3 +(verb)|roll up|collect|accumulate|pile up|amass|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|compose|make +(verb)|make +compiler|2 +(noun)|encyclopedist|encyclopaedist|writer|author +(noun)|compiling program|program|programme|computer program|computer programme +compiling|1 +(noun)|compilation|collection|collecting|assembling|aggregation +compiling program|1 +(noun)|compiler|program|programme|computer program|computer programme +complacence|1 +(noun)|complacency|self-complacency|self-satisfaction|satisfaction +complacency|1 +(noun)|complacence|self-complacency|self-satisfaction|satisfaction +complacent|1 +(adj)|self-satisfied|contented |content +complain|2 +(verb)|kick|plain|sound off|quetch|kvetch +(verb)|charge +complainant|1 +(noun)|plaintiff|litigant|litigator +complainer|1 +(noun)|whiner|moaner|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person|disagreeable person +complaining|1 +(adj)|complaining |complaintive|fretful|querulous|whiney|whining|whiny|grumbling|protesting|protestant|repining +complaint|5 +(noun)|ailment|ill|disorder|upset +(noun)|cry|yell +(noun)|objection +(noun)|pleading +(noun)|charge|pleading +complaintive|1 +(adj)|complaining |fretful|querulous|whiney|whining|whiny|grumbling|protesting|protestant|repining +complaisance|1 +(noun)|compliance|compliancy|obligingness|deference|agreeableness|agreeability +complaisant|1 +(adj)|obliging|accommodating |accommodative +complect|1 +(verb)|interconnect|interlink|connect|link|link up|join|unite +complement|7 +(noun)|construction|grammatical construction|expression +(noun)|count +(noun)|full complement|work force|workforce|manpower|hands|men +(noun)|increase|increment +(noun)|enzyme +(noun)|counterpart|opposite number|vis-a-vis +(verb)|balance|equilibrate|equilibrize|equilibrise +complement fixation|1 +(noun)|immune response|immune reaction|immunologic response +complement fixation test|1 +(noun)|blood test +complemental|1 +(adj)|complementary|completing|inessential |unessential +complementarity|2 +(noun)|ungradable opposition +(noun)|reciprocality|reciprocity +complementary|4 +(adj)|complemental|completing|inessential |unessential +(adj)|antonymous +(adj)|interchangeable|reciprocal|reciprocal |mutual +(noun)|complementary color|chromatic color|chromatic colour|spectral color|spectral colour +complementary angles|1 +(noun)|angle +complementary color|1 +(noun)|complementary|chromatic color|chromatic colour|spectral color|spectral colour +complementary distribution|1 +(noun)|complementation|distribution|dispersion +complementary dna|1 +(noun)|complementary DNA|cDNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +complementary medicine|1 +(noun)|medicine|practice of medicine +complementation|2 +(noun)|grammatical relation +(noun)|complementary distribution|distribution|dispersion +complete|11 +(adj)|complete |absolute|downright|out-and-out|rank|right-down|sheer|accomplished|completed|realized|realised|all|all-out|full-scale|allover|clean|completed|dead|exhaustive|thorough|thoroughgoing|fleshed out|full-clad|full|total|full-blown|full-dress|good|hearty|self-contained|sound|stand-alone|comprehensive|whole +(adj)|consummate|perfect +(adj)|complete +(adj)|accomplished|skilled +(adj)|arrant|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +(adj)|concluded|ended|over|all over|terminated|finished +(verb)|finish|end|terminate +(verb)|fill|fill up|make full +(verb)|dispatch|discharge|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|nail|play +(verb)|fill out|fill in|make out +complete blood count|1 +(noun)|CBC|blood profile|blood count +complete fracture|1 +(noun)|fracture|break +completed|3 +(adj)|accomplished|realized|realised|complete +(adj)|consummated +(adj)|complete +completely|1 +(adv)|wholly|entirely|totally|all|altogether|whole +completeness|2 +(noun)|integrity|unity|wholeness +(noun)|logicality|logicalness +completing|1 +(adj)|complemental|complementary|inessential |unessential +completion|2 +(noun)|pass completion|maneuver|manoeuvre|play +(noun)|culmination|closing|windup|mop up|termination|ending|conclusion +complex|5 +(adj)|complex |analyzable|decomposable|Byzantine|convoluted|intricate|involved|knotty|labyrinthine|tangled|tortuous|colonial|compound|complicated|composite|compound|daedal|Gordian|interlacing|interlinking|interlocking|interwoven|labyrinthine|labyrinthian|mazy|multifactorial|multiplex|thickening|compound|difficult|hard +(noun)|composite|whole +(noun)|coordination compound|compound|chemical compound +(noun)|feeling +(noun)|building complex|structure|construction +complex absence|1 +(noun)|petit mal epilepsy|absence +complex body part|1 +(noun)|structure|anatomical structure|bodily structure|body structure|body part +complex fraction|1 +(noun)|compound fraction|fraction +complex instruction set computer|1 +(noun)|complex instruction set computing|CISC|computer architecture|architecture +complex instruction set computing|1 +(noun)|complex instruction set computer|CISC|computer architecture|architecture +complex number|1 +(noun)|complex quantity|imaginary number|number +complex quantity|1 +(noun)|complex number|imaginary number|number +complex sentence|1 +(noun)|sentence +complexifier|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +complexify|2 +(verb)|ramify|change +(verb)|complicate|perplex +complexion|6 +(noun)|skin color|skin colour|color|colour|coloring|colouring +(noun)|combination +(noun)|point of view|viewpoint|stand|standpoint +(noun)|skin condition|appearance|visual aspect +(noun)|nature +(verb)|imbue|hue|tinge +complexity|1 +(noun)|complexness|quality +complexness|1 +(noun)|complexity|quality +compliance|4 +(noun)|conformity|conformation|abidance|cooperation +(noun)|agreement +(noun)|complaisance|compliancy|obligingness|deference|agreeableness|agreeability +(noun)|submission|group action +compliancy|1 +(noun)|complaisance|compliance|obligingness|deference|agreeableness|agreeability +compliant|4 +(adj)|compliant |amenable|conformable|willing|lamblike|nonresistant|complying|obliging|yielding|manageable|obedient|tractable|manipulable|willing +(adj)|acquiescent|biddable|obedient +(adj)|soft +(adj)|meek|spiritless|submissive +complicate|2 +(verb)|perplex|change|alter|modify +(verb)|refine|rarify|elaborate|change|alter|modify +complicated|1 +(adj)|complex +complicatedness|1 +(noun)|complication|knottiness|complexity|complexness +complication|5 +(noun)|hindrance|interference +(noun)|situation|state of affairs +(noun)|disease +(noun)|ramification|development +(noun)|complicatedness|knottiness|complexity|complexness +complicity|1 +(noun)|guilt|guiltiness +compliment|3 +(noun)|praise|congratulations|kudos +(verb)|congratulate|praise +(verb)|greet +complimentary|2 +(adj)|complimentary |encomiastic|eulogistic|panegyric|panegyrical|laudatory|praiseful|praising|favorable|favourable +(adj)|costless|free|gratis|gratuitous|unpaid +compliments|2 +(noun)|regard|wish|greeting|salutation +(noun)|compliment|praise|congratulations|kudos +complin|1 +(noun)|compline|canonical hour +compline|1 +(noun)|complin|canonical hour +complot|1 +(verb)|conspire|cabal|conjure|machinate|plot +comply|1 +(verb)|follow|abide by|obey +complying|1 +(adj)|obliging|yielding|compliant +component|3 +(noun)|constituent|element|factor|ingredient|part|section|division +(noun)|part|portion|component part|relation +(noun)|constituent|element|part|portion +component part|1 +(noun)|part|portion|component|relation +comport|2 +(verb)|behave|act|move +(verb)|behave|acquit|bear|deport|conduct|carry|hold|carry|bear|act|move +comportment|1 +(noun)|bearing|presence|mien|manner|personal manner +compos mentis|1 +(adj)|of sound mind|sane +compose|6 +(verb)|constitute|represent|make up|comprise|be +(verb)|write|make|create +(verb)|write|pen|indite|create verbally +(verb)|compile|make +(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|frame|draw up|plan +composed|2 +(adj)|combined +(adj)|composed |calm|unagitated|imperturbable|unflappable|collected|equanimous|poised|self-collected|self-contained|self-possessed|cool|coolheaded|nerveless|unflurried|unflustered|unperturbed|unruffled|dignified|unagitated +composedly|1 +(adv)|collectedly +composer|1 +(noun)|musician +composing|2 +(noun)|composition|placement|arrangement +(noun)|composition|creating by mental acts +compositae|1 +(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family +composite|6 +(adj)|complex +(adj)|asterid dicot family +(adj)|impure +(adj)|corinthian +(noun)|complex|whole +(noun)|composite plant|flower +composite material|1 +(noun)|material|stuff +composite number|1 +(noun)|number +composite order|1 +(noun)|Composite order|order +composite plant|1 +(noun)|composite|flower +composite school|1 +(noun)|comprehensive school|secondary school|lyceum|lycee|Gymnasium|middle school +compositeness|1 +(noun)|property +composition|9 +(noun)|mixture +(noun)|constitution|makeup|property +(noun)|composing|placement|arrangement +(noun)|musical composition|opus|piece|piece of music|music +(noun)|composing|creating by mental acts +(noun)|writing|authorship|penning|verbal creation +(noun)|typography|printing|printing process +(noun)|paper|report|theme|essay|written assignment|writing assignment +(noun)|creation +composition board|1 +(noun)|cardboard|paper|packing material|packing|wadding +compositional|1 +(adj)|integrative +compositor|1 +(noun)|typesetter|setter|typographer|printer|pressman +compost|2 +(noun)|composition +(verb)|convert|change over +compost heap|1 +(noun)|compost pile|pile|heap|mound|cumulus +compost pile|1 +(noun)|compost heap|pile|heap|mound|cumulus +composure|1 +(noun)|calm|calmness|equanimity|disposition|temperament +compote|1 +(noun)|fruit compote|dessert|sweet|afters +compound|11 +(adj)|compound |bilobate|bilobated|bilobed|binate|bipinnate|cleft|dissected|conjugate|decompound|even-pinnate|abruptly-pinnate|paripinnate|incised|lobed|lobate|odd-pinnate|imparipinnate|parted|palmate|palm-shaped|pedate|pinnate|pinnated|pinnatifid|pinnatisect|quinquefoliate|ternate|trifoliate|trifoliolate|trifoliated|trilobate|trilobated|trilobed|bipartite|bipinnatifid|palmatifid|tripinnate|tripinnated|tripinnatifid|complex|rough|smooth +(adj)|complex +(adj)|colonial|complex +(noun)|chemical compound|substance|matter +(noun)|whole +(noun)|enclosure +(verb)|intensify|heighten|deepen|increase +(verb)|combine|add +(verb)|account|calculate +(verb)|assemble|piece|put together|set up|tack|tack together +(verb)|combine|mix|mingle|commix|unify|amalgamate +compound eye|1 +(noun)|eye|oculus|optic +compound fraction|1 +(noun)|complex fraction|fraction +compound fracture|1 +(noun)|open fracture|fracture|break +compound interest|1 +(noun)|interest +compound leaf|1 +(noun)|leaf|leafage|foliage +compound lens|1 +(noun)|lens|lense|lens system +compound lever|1 +(noun)|lever +compound microscope|1 +(noun)|light microscope +compound morphology|1 +(noun)|morphology +compound number|1 +(noun)|number +compound pendulum|1 +(noun)|physical pendulum|pendulum +compound pistil|1 +(noun)|pistil +compound protein|1 +(noun)|conjugated protein|protein +compound sentence|1 +(noun)|sentence +compounded|1 +(adj)|combined +compounding|1 +(noun)|combination|combining|change of integrity +comprehend|3 +(verb)|get the picture|savvy|dig|grasp|compass|apprehend|understand +(verb)|perceive +(verb)|embrace|encompass|cover|include +comprehended|1 +(adj)|appreciated|apprehended|understood +comprehendible|1 +(adj)|comprehensible |accessible|approachable|apprehensible|intelligible|graspable|perceivable|understandable|fathomable|clear|explicable|intelligible +comprehensibility|1 +(noun)|understandability|quality +comprehensible|1 +(adj)|comprehensible |comprehendible|accessible|approachable|apprehensible|intelligible|graspable|perceivable|understandable|fathomable|clear|explicable|intelligible +comprehension|2 +(noun)|understanding|apprehension|discernment|savvy +(noun)|inclusion|involvement +comprehensive|3 +(adj)|comprehensive |across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|panoptic|wide|all-around|all-round|well-rounded|cosmopolitan|ecumenical|oecumenical|general|universal|worldwide|door-to-door|house-to-house|encyclopedic|encyclopaedic|extensive|far-reaching|sweeping|large|omnibus|plenary|spatiotemporal|spaciotemporal|super|umbrella|complete|general|wide|broad +(adj)|inclusive +(adj)|unabridged +comprehensive school|1 +(noun)|composite school|secondary school|lyceum|lycee|Gymnasium|middle school +comprehensiveness|2 +(noun)|fullness|completeness +(noun)|breadth|intelligence +compress|3 +(noun)|dressing|medical dressing +(verb)|compact|pack together|wedge|squeeze|force +(verb)|constrict|squeeze|compact|contract|press|tighten +compressed|3 +(adj)|tight|closed |shut +(adj)|compressible +(adj)|flat|thin +compressed air|1 +(noun)|compressed gas +compressed gas|1 +(noun)|gas|propellant|propellent +compressibility|1 +(noun)|squeezability|sponginess|softness +compressible|2 +(adj)|compressible |compressed +(adj)|squeezable|soft +compressing|1 +(noun)|compression|press|pressure|pressing +compression|4 +(noun)|compaction|concretion|densification|concentration +(noun)|condensation|contraction|shrinking|shrinkage +(noun)|encoding|encryption +(noun)|compressing|press|pressure|pressing +compression bandage|1 +(noun)|tourniquet|bandage|patch +compression fracture|1 +(noun)|fracture|break +compressor|1 +(noun)|mechanical device +comprise|3 +(verb)|consist|be +(verb)|incorporate|contain|include +(verb)|constitute|represent|make up|be +compromise|5 +(noun)|via media|cooperation +(noun)|accommodation +(verb)|agree +(verb)|settle|square off|square up|determine +(verb)|queer|expose|scupper|endanger|peril +compromise verdict|1 +(noun)|verdict|finding of fact +compromiser|1 +(noun)|negotiator|negotiant|treater +compromising|2 +(adj)|compromising |conciliatory|flexible|yielding +(adj)|vulnerable +compsognathus|1 +(noun)|theropod|theropod dinosaur|bird-footed dinosaur +compton|1 +(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist +comptonia|1 +(noun)|Comptonia|genus Comptonia|dicot genus|magnoliopsid genus +comptonia asplenifolia|1 +(noun)|sweet fern|Comptonia peregrina|Comptonia asplenifolia|shrub|bush +comptonia peregrina|1 +(noun)|sweet fern|Comptonia peregrina|Comptonia asplenifolia|shrub|bush +comptroller|1 +(noun)|accountant|controller|businessperson|bourgeois +comptroller general|1 +(noun)|Comptroller General|official|functionary +comptroller of the currency|2 +(noun)|Comptroller of the Currency|official|functionary +(noun)|Comptroller of the Currency|agency|federal agency|government agency|bureau|office|authority +comptrollership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +compulsion|3 +(noun)|irresistible impulse|irrational impulse +(noun)|obsession|irrational motive +(noun)|coercion|causing|causation +compulsive|3 +(adj)|neurotic |psychoneurotic +(adj)|determined|driven|ambitious +(noun)|person|individual|someone|somebody|mortal|human|soul +compulsively|1 +(adv)|obsessively|obsessionally +compulsiveness|1 +(noun)|compulsivity|trait +compulsivity|1 +(noun)|compulsiveness|trait +compulsorily|1 +(adv)|obligatorily|mandatorily +compulsory|1 +(adj)|mandatory|required|obligatory +compulsory process|1 +(noun)|legal right +compunction|1 +(noun)|remorse|self-reproach|sorrow|regret|rue|ruefulness +computable|1 +(adj)|estimable|calculable +computation|2 +(noun)|calculation|computing|procedure|process +(noun)|calculation|figuring|reckoning|problem solving +computational|1 +(adj)|procedure|process|machine +computational linguist|1 +(noun)|computer scientist|linguist|linguistic scientist +computational linguistics|1 +(noun)|linguistics +compute|1 +(verb)|calculate|cipher|cypher|work out|reckon|figure|reason +computed axial tomography|1 +(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|CAT|X-raying|X-radiation +computed tomography|1 +(noun)|computerized tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying|X-radiation +computer|2 +(noun)|computing machine|computing device|data processor|electronic computer|information processing system|machine +(noun)|calculator|reckoner|figurer|estimator|expert +computer-aided design|1 +(noun)|CAD|software|software system|software package|package +computer-oriented language|1 +(noun)|computer language|machine language|machine-oriented language|programming language|programing language +computer accessory|1 +(noun)|accessory|appurtenance|supplement|add-on +computer address|1 +(noun)|address|code|computer code +computer architecture|2 +(noun)|specification|spec +(noun)|architecture|structure +computer backup|1 +(noun)|backup|duplicate|duplication +computer business|1 +(noun)|manufacturer|maker|manufacturing business +computer circuit|1 +(noun)|circuit|electrical circuit|electric circuit +computer code|1 +(noun)|code|coding system +computer database|1 +(noun)|electronic database|on-line database|electronic information service|database +computer dealer|1 +(noun)|dealer +computer display|1 +(noun)|computer screen|screen|CRT screen +computer error|1 +(noun)|error|happening|occurrence|natural event +computer expert|1 +(noun)|computer guru|expert|computer user +computer file|1 +(noun)|file|data file +computer file name|1 +(noun)|filename|file name|computer filename|name +computer filename|1 +(noun)|filename|file name|computer file name|name +computer game|1 +(noun)|video game|game +computer graphics|1 +(noun)|graphics +computer guru|1 +(noun)|computer expert|expert|computer user +computer hardware|1 +(noun)|hardware|component|constituent|element +computer industry|1 +(noun)|industry +computer keyboard|1 +(noun)|keypad|keyboard|data input device|input device +computer language|1 +(noun)|computer-oriented language|machine language|machine-oriented language|programming language|programing language +computer memory|1 +(noun)|memory|storage|computer storage|store|memory board|memory device|storage device|hardware|computer hardware +computer memory unit|1 +(noun)|unit of measurement|unit +computer menu|1 +(noun)|menu|list|listing +computer mouse|1 +(noun)|mouse|electronic device +computer network|1 +(noun)|network|electronic network +computer operation|1 +(noun)|machine operation|operation +computer paper|1 +(noun)|paper +computer peripheral|1 +(noun)|peripheral|peripheral device|electronic equipment +computer program|1 +(noun)|program|programme|computer programme|software|software system|software package|package +computer programing|1 +(noun)|programming|programing|computer programming|creating by mental acts +computer programme|1 +(noun)|program|programme|computer program|software|software system|software package|package +computer programmer|1 +(noun)|programmer|coder|software engineer|engineer|applied scientist|technologist|computer user +computer programming|1 +(noun)|programming|programing|computer programing|creating by mental acts +computer readable|1 +(adj)|machine readable +computer science|1 +(noun)|computing|engineering|engineering science|applied science|technology +computer scientist|1 +(noun)|scientist|man of science|computer user +computer screen|1 +(noun)|computer display|screen|CRT screen +computer simulation|1 +(noun)|simulation|technique|model|theoretical account|framework +computer storage|1 +(noun)|memory|computer memory|storage|store|memory board|memory device|storage device|hardware|computer hardware +computer store|1 +(noun)|shop|store +computer system|1 +(noun)|computing system|automatic data processing system|ADP system|ADPS|system +computer technology|1 +(noun)|technology|engineering +computer user|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +computer virus|1 +(noun)|virus|malevolent program +computerise|3 +(verb)|computerize|supply|provide|render|furnish +(verb)|computerize|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|cybernate|computerize|work|put to work +computerised|1 +(adj)|computerized|processed +computerization|1 +(noun)|cybernation|automation|mechanization|mechanisation +computerize|3 +(verb)|computerise|supply|provide|render|furnish +(verb)|computerise|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|cybernate|computerise|work|put to work +computerized|1 +(adj)|computerised|processed +computerized axial tomography|1 +(noun)|computerized tomography|computed tomography|CT|computed axial tomography|CAT|X-raying|X-radiation +computerized axial tomography scanner|1 +(noun)|CAT scanner|tomograph +computerized tomography|1 +(noun)|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying|X-radiation +computing|2 +(noun)|computer science|engineering|engineering science|applied science|technology +(noun)|calculation|computation|procedure|process +computing device|1 +(noun)|computer|computing machine|data processor|electronic computer|information processing system|machine +computing machine|1 +(noun)|computer|computing device|data processor|electronic computer|information processing system|machine +computing system|1 +(noun)|computer system|automatic data processing system|ADP system|ADPS|system +comrade|3 +(noun)|companion|fellow|familiar|associate|friend +(noun)|Comrade|communist|commie +(noun)|brother|friend +comradeliness|1 +(noun)|chumminess|camaraderie|comradery|comradeship|sociability|sociableness +comradely|1 +(adj)|hail-fellow|hail-fellow-well-met|friendly +comradery|1 +(noun)|chumminess|camaraderie|comradeliness|comradeship|sociability|sociableness +comradeship|1 +(noun)|chumminess|camaraderie|comradeliness|comradery|sociability|sociableness +comstock|1 +(noun)|Comstock|Anthony Comstock|reformer|reformist|crusader|meliorist +comstock's mealybug|1 +(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug|mealy bug +comstock mealybug|1 +(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug|mealy bug +comstockery|1 +(noun)|Comstockery|censoring|censorship +comte|1 +(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher +comte de mirabeau|1 +(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist|revolutionary|subversive|subverter +comte de rochambeau|1 +(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general|full general +comte de saxe|1 +(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general|full general|marshal|marshall +comte donatien alphonse francois de sade|1 +(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer|author +comtesse du barry|1 +(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier +comtism|1 +(noun)|Comtism|positivism|logical positivism +con|6 +(noun)|argument|statement +(noun)|convict|inmate|jailbird|gaolbird|prisoner|captive +(noun)|bunco|bunco game|bunko|bunko game|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|cheat|rip off|chisel +(verb)|memorize|memorise|learn|study|hit the books +(adv)|in opposition +con artist|1 +(noun)|confidence man|con man|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +con brio|1 +(adj)|spirited +con game|1 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|gyp|hustle|sting|flimflam|swindle|cheat|rig +con man|1 +(noun)|confidence man|con artist|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +conacaste|1 +(noun)|elephant's ear|Enterolobium cyclocarpa|tree +conakry|1 +(noun)|Conakry|Konakri|capital of Guinea|national capital|port +conan doyle|1 +(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer|author +concatenate|2 +(verb)|chain +(verb)|add +concatenation|4 +(noun)|connection|link|connectedness +(noun)|connection|connexion|connectedness +(noun)|chain|series +(noun)|joining|connection|connexion +concave|1 +(adj)|concave |acetabular|cotyloid|cotyloidal|biconcave|concavo-concave|bursiform|pouch-shaped|pouchlike|saclike|concavo-convex|cuplike|cupular|cupulate|cup-shaped|depressed|indented|dished|dish-shaped|planoconcave|recessed|umbilicate|bowl-shaped|intrusive +concave lens|1 +(noun)|diverging lens|lens|lense|lens system +concave polygon|1 +(noun)|polygon|polygonal shape +concave polyhedron|1 +(noun)|polyhedron +concave shape|1 +(noun)|concavity|incurvation|incurvature|solid +concaveness|1 +(noun)|concavity|shape|form|configuration|contour|conformation +concavity|2 +(noun)|concave shape|incurvation|incurvature|solid +(noun)|concaveness|shape|form|configuration|contour|conformation +concavo-concave|1 +(adj)|biconcave|concave +concavo-convex|1 +(adj)|concave +conceal|2 +(verb)|hide +(verb)|hold back|hold in +concealed|2 +(adj)|hidden|out of sight|invisible |unseeable +(adj)|concealed |buried|hidden|bushwhacking|furtive|lurking|skulking|sneak|sneaky|stealthy|surreptitious|hidden|obscure|hidden|secret|incognito|lying in wait|lurking|sealed|secret|sneaking|unavowed|dark|covert +concealing|2 +(adj)|concealing +(noun)|concealment|hiding|activity +concealment|3 +(noun)|privacy|privateness|secrecy|isolation +(noun)|screen|cover|covert|covering +(noun)|concealing|hiding|activity +concede|4 +(verb)|profess|confess|admit|acknowledge +(verb)|yield|grant|agree|hold|concur|concord +(verb)|yield|cede|grant|give +(verb)|surrender|give up +conceding|1 +(noun)|concession|yielding|assent|acquiescence +conceit|2 +(noun)|amour propre|self-love|vanity|pride|pridefulness +(noun)|vanity|pride +conceited|1 +(adj)|egotistic|egotistical|self-conceited|swollen|swollen-headed|vain|proud +conceitedly|1 +(adv)|self-conceitedly|with conceit +conceivability|1 +(noun)|conceivableness|possibility|possibleness +conceivable|2 +(adj)|possible +(adj)|imaginable|possible|thinkable +conceivableness|1 +(noun)|conceivability|possibility|possibleness +conceive|3 +(verb)|gestate|conceptualize|conceptualise|create by mental act|create mentally +(verb)|think|believe|consider|judge +(verb)|change state|turn +conceive of|1 +(verb)|imagine|ideate|envisage|create by mental act|create mentally +conceived|1 +(adj)|formed|planned +conceiver|1 +(noun)|originator|mastermind|creator +concenter|1 +(verb)|concentre|focalize|focalise|focus|align|aline|line up|adjust +concentrate|11 +(noun)|dressed ore|ore +(noun)|foodstuff|food product +(noun)|prototype|paradigm|epitome|image +(verb)|change state|turn +(verb)|focus|center|centre|pore|rivet|think|cogitate|cerebrate +(verb)|centralize|centralise|change|alter|modify +(verb)|digest|condense|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +(verb)|converge +(verb)|condense|contract|change|alter|modify +(verb)|boil down|reduce|decoct|decrease|diminish|lessen|fall +(verb)|reduce|boil down|decrease|lessen|minify +concentrate on|1 +(verb)|focus on|center on|revolve around|revolve about|center|refer|pertain|relate|concern|come to|bear on|touch|touch on +concentrated|4 +(adj)|concentrated |accumulated|amassed|assembled|collected|congregate|massed|bunched|bunchy|clustered|centered|centred|centralized|centralised|focused|compact|dense|thick|gathered|deepened|saved up|stored-up|stored up|single|undivided|exclusive|thickset|fixed|intent|heaped|heaped-up|piled|cumulous|compact +(adj)|undiluted +(adj)|intense +(adj)|saturated |supersaturated +concentrated fire|1 +(noun)|massed fire|fire|firing +concentration|7 +(noun)|property +(noun)|density|denseness|compactness|spacing|spatial arrangement +(noun)|strengthening +(noun)|increase +(noun)|engrossment|absorption|immersion|attention +(noun)|assembly|assemblage|gathering +(noun)|assiduity|assiduousness|diligence|industriousness|industry +concentration camp|2 +(noun)|stockade|penal institution|penal facility +(noun)|misery|wretchedness +concentre|1 +(verb)|concenter|focalize|focalise|focus|align|aline|line up|adjust +concentric|1 +(adj)|concentric |concentrical|homocentric|coaxial|coaxal +concentrical|1 +(adj)|concentric |homocentric|coaxial|coaxal +concentricity|1 +(noun)|circularity|disk shape +concepcion|1 +(noun)|Concepcion|city|metropolis|urban center +concept|1 +(noun)|conception|construct|idea|thought +concept album|1 +(noun)|album|record album +conception|4 +(noun)|concept|construct|idea|thought +(noun)|sexual activity|sexual practice|sex|sex activity +(noun)|creation|beginning +(noun)|invention|innovation|excogitation|design|creativity|creativeness|creative thinking +conceptional|1 +(adj)|ideational|notional|abstract +conceptive|1 +(adj)|fertile +conceptual|1 +(adj)|abstract +conceptualisation|2 +(noun)|conceptualization|conceptuality|concept|conception|construct +(noun)|conceptualization|formulation|creating by mental acts +conceptualise|1 +(verb)|gestate|conceive|conceptualize|create by mental act|create mentally +conceptualism|1 +(noun)|philosophical doctrine|philosophical theory +conceptualistic|1 +(adj)|philosophical doctrine|philosophical theory +conceptuality|1 +(noun)|conceptualization|conceptualisation|concept|conception|construct +conceptualization|2 +(noun)|conceptualisation|formulation|creating by mental acts +(noun)|conceptualisation|conceptuality|concept|conception|construct +conceptualize|1 +(verb)|gestate|conceive|conceptualise|create by mental act|create mentally +conceptus|1 +(noun)|embryo|fertilized egg|animal|animate being|beast|brute|creature|fauna +concern|7 +(noun)|interest|involvement +(noun)|care|fear|anxiety +(noun)|business|business concern|business organization|business organisation|enterprise +(noun)|worry|headache|vexation|negative stimulus +(noun)|sympathy|fellow feeling +(verb)|refer|pertain|relate|come to|bear on|touch|touch on +(verb)|interest|occupy|worry +concerned|4 +(adj)|concerned |afraid|afraid|haunted|obsessed|preoccupied|taken up|solicitous|attentive|troubled +(adj)|interested|involved +(adj)|related |related to +(adj)|implicated|involved +concernedly|1 +(adv)|with concern +concert|3 +(noun)|performance|public presentation +(verb)|plan|project|contrive|design +(verb)|settle|square off|square up|determine +concert-goer|1 +(noun)|music lover|consumer +concert band|1 +(noun)|military band|band +concert dance|1 +(noun)|ballet|stage dancing|choreography +concert grand|1 +(noun)|concert piano|grand piano|grand +concert hall|1 +(noun)|hall +concert piano|1 +(noun)|concert grand|grand piano|grand +concert pitch|1 +(noun)|philharmonic pitch|international pitch|pitch +concerted|1 +(adj)|combined|conjunct|conjunctive|cooperative|united|joint +concerted music|1 +(noun)|polyphony|polyphonic music|music +concertina|3 +(noun)|barbed wire +(noun)|free-reed instrument +(verb)|collapse +concertise|1 +(verb)|concertize|perform +concertize|1 +(verb)|concertise|perform +concerto|1 +(noun)|classical music|serious music +concerto grosso|1 +(noun)|concerto +concession|3 +(noun)|grant|contract +(noun)|conceding|yielding|assent|acquiescence +(noun)|agreement +concessionaire|1 +(noun)|concessioner|small businessman +concessioner|1 +(noun)|concessionaire|small businessman +concessive|1 +(adj)|contract +conch|1 +(noun)|gastropod|univalve +concha|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +conchfish|1 +(noun)|Astropogon stellatus|cardinalfish +conchologist|1 +(noun)|collector|aggregator +conchology|1 +(noun)|shell collecting|collection|collecting|assembling|aggregation +concierge|1 +(noun)|caretaker +conciliable|1 +(adj)|appeasable|placable +conciliate|3 +(verb)|pacify|lenify|assuage|appease|mollify|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|reconcile|patch up|make up|settle|agree|hold|concur|concord +(verb)|accommodate|reconcile|harmonize|harmonise +conciliation|3 +(noun)|peace +(noun)|mediation +(noun)|placation|propitiation|appeasement|calming +conciliative|1 +(adj)|conciliatory |appeasing|placating|placative|placatory|propitiative|propitiatory +conciliator|1 +(noun)|make-peace|pacifier|peacemaker|reconciler|mediator|go-between|intermediator|intermediary|intercessor +conciliatory|2 +(adj)|compromising |flexible|yielding +(adj)|conciliatory |conciliative|appeasing|placating|placative|placatory|propitiative|propitiatory +concise|1 +(adj)|concise |aphoristic|apothegmatic|epigrammatic|brief|compendious|compact|succinct|summary|crisp|curt|laconic|terse|cryptic|elliptic|elliptical|pithy|sententious|telegraphic|taciturn +concisely|1 +(adv)|briefly|shortly|in brief|in short +conciseness|1 +(noun)|concision|pithiness|succinctness|terseness +concision|1 +(noun)|conciseness|pithiness|succinctness|terseness +conclave|1 +(noun)|meeting +conclude|5 +(verb)|reason|reason out|think|cogitate|cerebrate +(verb)|end|terminate +(verb)|resolve|agree|hold|concur|concord +(verb)|close|end|stop|finish|terminate|cease +(verb)|agree +concluded|1 +(adj)|complete|ended|over|all over|terminated|finished +concluding|1 +(adj)|final|last|terminal|closing +conclusion|9 +(noun)|decision|determination|judgment|judgement|mind +(noun)|assumption|supposition|supposal +(noun)|stopping point|finale|finis|finish|last|close|end|ending +(noun)|ending|finish|happening|occurrence|natural event +(noun)|ratiocination|proposition +(noun)|termination|ending|change of state +(noun)|settlement +(noun)|end|close|closing|ending|section|subdivision +(noun)|decision|determination|choice|selection|option|pick +conclusion of law|1 +(noun)|finding of law|finding +conclusive|3 +(adj)|conclusive |convincing|definitive|determinate|decisive +(adj)|decisive +(adj)|absolute|unequivocal |univocal|unambiguous +conclusively|1 +(adv)|once and for all +conclusiveness|1 +(noun)|finality|decisiveness|determinateness|definiteness +concoct|4 +(verb)|mix|mingle|commix|unify|amalgamate +(verb)|cook up|cook|fix|ready|make|prepare +(verb)|trump up|fabricate|manufacture|cook up|make up|invent +(verb)|think up|think of|dream up|hatch|create by mental act|create mentally +concoction|4 +(noun)|mixture|intermixture|foodstuff|food product +(noun)|mix|mixture +(noun)|invention|innovation|excogitation|conception|design +(noun)|confection|creating from raw materials +concomitance|1 +(noun)|concurrence|coincidence|conjunction|co-occurrence +concomitant|2 +(adj)|accompanying|attendant|incidental|incidental to|related |related to +(noun)|accompaniment|co-occurrence|happening|occurrence|natural event +concord|10 +(noun)|Concord|capital of New Hampshire|state capital +(noun)|harmony|concordance|order +(noun)|agreement|grammatical relation +(noun)|Concord|town +(noun)|harmony|concordance|agreement +(noun)|Lexington|Concord|Lexington and Concord|pitched battle +(verb)|harmonize|harmonise|consort|accord|fit in|agree|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|arrange|fix up +(verb)|arrange|set up +(verb)|agree|hold|concur +concord grape|1 +(noun)|Concord grape|fox grape|slip-skin grape +concordance|3 +(noun)|harmony|concord|order +(noun)|harmony|concord|agreement +(noun)|index +concordant|2 +(adj)|accordant|agreeable|conformable|consonant|consistent +(adj)|concurring|accordant +concordat|1 +(noun)|covenant|compact|written agreement +concourse|3 +(noun)|multitude|throng|gathering|assemblage +(noun)|hallway|hall +(noun)|confluence|merging|meeting|coming together +concrete|5 +(adj)|concrete |factual|objective|real|tangible|tangible|practical|real|existent +(adj)|solid +(noun)|building material|paving material +(verb)|cover +(verb)|solidify +concrete jungle|1 +(noun)|jungle +concrete mixer|1 +(noun)|cement mixer|machine +concrete representation|1 +(noun)|concretism|representation|mental representation|internal representation +concreteness|1 +(noun)|materiality|physicalness|corporeality +concretion|4 +(noun)|natural process|natural action|action|activity +(noun)|calculus|rock|stone +(noun)|compaction|compression|densification|concentration +(noun)|coalescence|coalescency|coalition|conglutination|union|unification|uniting|conjugation|jointure +concretise|1 +(verb)|concretize|change +concretism|1 +(noun)|concrete representation|representation|mental representation|internal representation +concretistic|1 +(adj)|representation|mental representation|internal representation +concretize|2 +(verb)|pin down|peg down|nail down|narrow down|narrow|specify +(verb)|concretise|change +concubinage|1 +(noun)|cohabitation|living together +concubine|1 +(noun)|courtesan|doxy|odalisque|paramour|mistress|kept woman|fancy woman +concupiscence|1 +(noun)|sexual desire|physical attraction|desire +concur|2 +(verb)|agree|hold|concord +(verb)|coincide|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +concurrence|4 +(noun)|agreement +(noun)|cooperation +(noun)|meeting of minds|agreement|accord +(noun)|coincidence|conjunction|co-occurrence|simultaneity|simultaneousness +concurrent|1 +(adj)|coincident|coincidental|coinciding|cooccurring|simultaneous|synchronous |synchronal|synchronic +concurrent execution|1 +(noun)|multiprogramming|execution|instruction execution +concurrent negligence|1 +(noun)|negligence|carelessness|neglect|nonperformance +concurrent operation|1 +(noun)|operation +concurrently|1 +(adv)|at the same time +concurring|1 +(adj)|concordant|accordant +concurring opinion|1 +(noun)|opinion|legal opinion|judgment|judgement +concuss|2 +(verb)|shake|agitate +(verb)|injure|wound +concussion|2 +(noun)|injury|accidental injury +(noun)|bump|blow +condemn|5 +(verb)|reprobate|decry|objurgate|excoriate|denounce +(verb)|declare +(verb)|compel|oblige|obligate +(verb)|attest|certify|manifest|demonstrate|evidence +(verb)|sentence|doom|declare +condemnable|1 +(adj)|criminal|deplorable|reprehensible|wrong +condemnation|5 +(noun)|disapprobation|disapproval +(noun)|disapproval +(noun)|execration|curse|denunciation|denouncement +(noun)|condition|status +(noun)|conviction|judgment of conviction|sentence|final judgment|final decision +condemnatory|1 +(adj)|condemning|inculpatory |inculpative +condemned|4 +(adj)|convicted|guilty +(adj)|censured|disapproved +(adj)|appropriated|confiscate|confiscated|seized|taken over|taken +(adj)|unfit +condemning|1 +(adj)|condemnatory|inculpatory |inculpative +condensate|1 +(noun)|condensation|atmospheric phenomenon +condensation|6 +(noun)|process|unconscious process +(noun)|natural process|natural action|action|activity +(noun)|condensate|atmospheric phenomenon +(noun)|compression|contraction|shrinking|shrinkage +(noun)|abridgement|abridgment|capsule|summary +(noun)|condensing|compression|compressing +condensation pump|1 +(noun)|diffusion pump|air pump|vacuum pump +condensation trail|1 +(noun)|contrail|cloud +condense|7 +(verb)|distill|distil|liquefy|flux|liquify +(verb)|digest|concentrate|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +(verb)|remove|take|take away|withdraw +(verb)|change integrity +(verb)|intensify|deepen +(verb)|arise|come up +(verb)|concentrate|contract|change|alter|modify +condensed milk|1 +(noun)|milk +condenser|4 +(noun)|capacitor|capacitance|electrical condenser|electrical device +(noun)|apparatus|setup +(noun)|coil +(noun)|optical condenser|lens|lense|lens system +condenser microphone|1 +(noun)|capacitor microphone|microphone|mike +condensing|1 +(noun)|condensation|compression|compressing +condescend|4 +(verb)|act|move +(verb)|deign|descend|act|move +(verb)|stoop|lower oneself|act|move +(verb)|patronize|patronise|interact +condescending|1 +(adj)|arch|patronizing|patronising|superior +condescendingly|1 +(adv)|patronizingly|patronisingly +condescendingness|1 +(noun)|condescension|affability|affableness|amiability|amiableness|bonhomie|geniality +condescension|3 +(noun)|superciliousness|disdainfulness|arrogance|haughtiness|hauteur|highhandedness|lordliness +(noun)|disdain|patronage|disparagement|depreciation|derogation +(noun)|condescendingness|affability|affableness|amiability|amiableness|bonhomie|geniality +condign|1 +(adj)|merited +condiment|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +condition|12 +(noun)|status|state +(noun)|state +(noun)|precondition|stipulation|premise|premiss|assumption +(noun)|term|statement +(noun)|shape|good health|healthiness +(noun)|circumstance|consideration|information +(noun)|experimental condition|procedure|process +(verb)|teach|learn|instruct +(verb)|discipline|train|check|develop|make grow +(verb)|stipulate|qualify|specify|contract|undertake +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|shampoo +conditional|2 +(adj)|qualified +(adj)|conditional |counterfactual|contrary to fact|contingent|contingent on|dependent on|dependant on|depending on|dependent|dependant|qualified|probationary|provisional|provisionary|tentative|provisory|qualified +conditional contract|1 +(noun)|contract +conditional probability|1 +(noun)|contingent probability|probability|chance +conditional reaction|1 +(noun)|conditional reflex|conditioned reflex|acquired reflex|conditioned reaction|conditional response|conditioned response|learned reaction|learned response +conditional reflex|1 +(noun)|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction|learned response +conditional relation|1 +(noun)|implication|logical implication|logical relation +conditional response|1 +(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditioned response|learned reaction|learned response +conditional sale|2 +(noun)|security interest +(noun)|sale|sales agreement +conditionality|1 +(noun)|state +conditionally|1 +(adv)|not absolutely +conditioned|2 +(adj)|conditioned |learned +(adj)|in condition|fit |healthy +conditioned avoidance|1 +(noun)|conditioned avoidance response|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response +conditioned avoidance response|1 +(noun)|conditioned avoidance|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response +conditioned emotion|1 +(noun)|conditioned emotional response|CER|emotion +conditioned emotional response|1 +(noun)|CER|conditioned emotion|emotion +conditioned reaction|1 +(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditional response|conditioned response|learned reaction|learned response +conditioned reflex|1 +(noun)|conditional reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction|learned response +conditioned response|1 +(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|learned reaction|learned response +conditioned stimulus|1 +(noun)|stimulation|stimulus|stimulant|input +conditioner|3 +(noun)|cardiopulmonary exercise +(noun)|coach|manager|handler +(noun)|softener +conditioning|1 +(noun)|learning|acquisition +condo|1 +(noun)|condominium|dwelling|home|domicile|abode|habitation|dwelling house +condole|1 +(verb)|commiserate|sympathize|sympathise +condole with|1 +(verb)|feel for|pity|compassionate|sympathize with|grieve|sorrow +condolence|1 +(noun)|commiseration|acknowledgment|acknowledgement +condom|1 +(noun)|rubber|safety|safe|prophylactic|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +condominium|2 +(noun)|condo|dwelling|home|domicile|abode|habitation|dwelling house +(noun)|housing|lodging|living accommodations +condonation|1 +(noun)|forgiveness|pardon +condone|1 +(verb)|excuse|forgive +condor|1 +(noun)|New World vulture|cathartid +conduce|1 +(verb)|contribute|lead|promote|advance|boost|further|encourage +conducive|1 +(adj)|contributing|contributive|contributory|tributary|causative +conduct|8 +(noun)|behavior|behaviour|doings|activity +(noun)|demeanor|demeanour|behavior|behaviour|deportment|trait +(verb)|carry on|deal|manage|deal|care|handle +(verb)|lead|direct|perform|execute|do +(verb)|behave|acquit|bear|deport|comport|carry|hold|carry|bear|act|move +(verb)|transmit|convey|carry|channel|bring|convey|take +(verb)|lead|take|direct|guide +(verb)|perform +conductance|1 +(noun)|electrical phenomenon +conductance unit|1 +(noun)|electromagnetic unit|emu +conducting|2 +(noun)|administration|disposal +(noun)|management|direction +conducting wire|1 +(noun)|wire|conductor +conduction|1 +(noun)|conductivity|physical phenomenon +conduction anaesthesia|1 +(noun)|conduction anesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia|anaesthesia +conduction anesthesia|1 +(noun)|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia|anaesthesia +conduction aphasia|1 +(noun)|associative aphasia|aphasia +conduction deafness|1 +(noun)|conductive hearing loss|middle-ear deafness|hearing impairment|hearing disorder +conductive|1 +(adj)|conductive |semiconducting|semiconductive +conductive hearing loss|1 +(noun)|conduction deafness|middle-ear deafness|hearing impairment|hearing disorder +conductivity|1 +(noun)|conduction|physical phenomenon +conductor|4 +(noun)|music director|director|musician +(noun)|device +(noun)|material|stuff +(noun)|collector|gatherer|accumulator +conductress|1 +(noun)|conductor +conduit|1 +(noun)|passage +condylar|1 +(adj)|process|outgrowth|appendage +condylar process|1 +(noun)|condyloid process|mandibular condyle|condyle +condyle|1 +(noun)|process|outgrowth|appendage +condylion|1 +(noun)|craniometric point +condyloid process|1 +(noun)|condylar process|mandibular condyle|condyle +condyloma acuminatum|1 +(noun)|genital wart|venereal wart|verruca acuminata|wart|verruca +condylura|1 +(noun)|Condylura|genus Condylura|mammal genus +condylura cristata|1 +(noun)|starnose mole|star-nosed mole|Condylura cristata|mole +cone|5 +(noun)|artifact|artefact +(noun)|conoid|cone shape|round shape +(noun)|strobilus|strobile|reproductive structure +(noun)|cone cell|retinal cone|visual cell +(verb)|bevel|chamfer +cone-bearing|1 +(adj)|coniferous|evergreen +cone-nosed bug|1 +(noun)|conenose|conenose bug|big bedbug|kissing bug|assassin bug|reduviid +cone-shaped|1 +(adj)|conic|conical|conelike|round shape +cone cell|1 +(noun)|cone|retinal cone|visual cell +cone clutch|1 +(noun)|cone friction clutch|friction clutch +cone friction clutch|1 +(noun)|cone clutch|friction clutch +cone pepper|1 +(noun)|Capsicum annuum conoides|capsicum|pepper|capsicum pepper plant +cone shape|1 +(noun)|cone|conoid|round shape +coneflower|2 +(noun)|flower +(noun)|flower +conelike|1 +(adj)|conic|conical|cone-shaped|round shape +conenose|1 +(noun)|cone-nosed bug|conenose bug|big bedbug|kissing bug|assassin bug|reduviid +conenose bug|1 +(noun)|conenose|cone-nosed bug|big bedbug|kissing bug|assassin bug|reduviid +conepatus|1 +(noun)|Conepatus|genus Conepatus|mammal genus +conepatus leuconotus|1 +(noun)|hog-nosed skunk|hognosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk|polecat|wood pussy +conessi|1 +(noun)|ivory tree|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree +conestoga|1 +(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon|waggon +conestoga wagon|1 +(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon|waggon +coney|4 +(noun)|Epinephelus fulvus|grouper +(noun)|hyrax|cony|dassie|das|placental|placental mammal|eutherian|eutherian mammal +(noun)|pika|mouse hare|rock rabbit|cony|lagomorph|gnawing mammal +(noun)|rabbit|cony|leporid|leporid mammal +coney island|1 +(noun)|Coney Island|city district +confab|3 +(noun)|chat|confabulation|schmooze|schmoose|conversation +(verb)|chew the fat|shoot the breeze|chat|confabulate|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +(verb)|confer|confabulate|consult|hash out|discuss|talk over +confabulate|3 +(verb)|fabricate|manufacture|cook up|make up|invent +(verb)|chew the fat|shoot the breeze|chat|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +(verb)|confer|confab|consult|hash out|discuss|talk over +confabulation|2 +(noun)|chat|confab|schmooze|schmoose|conversation +(noun)|memory +confect|2 +(verb)|produce|make|create +(verb)|confection|comfit|assemble|piece|put together|set up|tack|tack together +confection|3 +(noun)|sweet|confectionery|dainty|delicacy|goody|kickshaw|treat +(noun)|concoction|creating from raw materials +(verb)|confect|comfit|assemble|piece|put together|set up|tack|tack together +confectioner|1 +(noun)|candymaker|maker|shaper +confectionery|2 +(noun)|sweet|confection|dainty|delicacy|goody|kickshaw|treat +(noun)|candy store|shop|store +confederacy|4 +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +(noun)|confederation|federation|union +(noun)|conspiracy|set|circle|band|lot +(noun)|conspiracy|agreement|understanding +confederate|7 +(adj)|Confederate|southern +(adj)|allied|confederative|united +(noun)|Confederate|supporter|protagonist|champion|admirer|booster|friend|Southerner +(noun)|collaborator|henchman|partner in crime|accessory|accessary +(noun)|accomplice|assistant|helper|help|supporter +(verb)|band together|unite|unify +(verb)|unite|unify +confederate army|1 +(noun)|Confederate Army|Army of the Confederacy|army|regular army|ground forces|gray|grey +confederate flag|1 +(noun)|Stars and Bars|Confederate flag|flag +confederate jasmine|1 +(noun)|star jasmine|Trachelospermum jasminoides|vine +confederate rose|1 +(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus +confederate rose mallow|1 +(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus +confederate soldier|1 +(noun)|Confederate soldier|soldier|Confederate +confederate states|1 +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +confederate states of america|1 +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +confederation|3 +(noun)|alliance|coalition|fusion +(noun)|confederacy|federation|union +(noun)|alliance|group action +confederative|1 +(adj)|allied|confederate|united +confer|3 +(verb)|confabulate|confab|consult|hash out|discuss|talk over +(verb)|bestow|award|present +(adv)|cf.|cf|see|see also +confer with|1 +(verb)|consult|ask|inquire|enquire +conferee|2 +(noun)|recipient|receiver +(noun)|communicator +conference|3 +(noun)|meeting +(noun)|league|association +(noun)|group discussion|discussion|give-and-take|word +conference call|1 +(noun)|call|phone call|telephone call +conference center|1 +(noun)|conference house|center|centre +conference house|1 +(noun)|conference center|center|centre +conference room|1 +(noun)|room +conference table|1 +(noun)|council table|council board|table +conferment|1 +(noun)|bestowal|bestowment|conferral|giving|gift +conferral|1 +(noun)|bestowal|bestowment|conferment|giving|gift +conferred|1 +(adj)|bestowed|presented|given +conferva|1 +(noun)|yellow-green algae +confervoid algae|1 +(noun)|alga|algae +confess|3 +(verb)|squeal|shrive|admit|acknowledge +(verb)|concede|profess|admit|acknowledge +(verb)|admit|acknowledge +confessedly|1 +(adv)|true|admittedly|avowedly +confession|5 +(noun)|admission +(noun)|document|written document|papers +(noun)|penance +(noun)|declaration +(noun)|religious doctrine|church doctrine|gospel|creed +confession of judgement|1 +(noun)|confession of judgment|cognovit judgment|cognovit judgement|judgment|judgement|judicial decision +confession of judgment|1 +(noun)|confession of judgement|cognovit judgment|cognovit judgement|judgment|judgement|judicial decision +confessional|1 +(noun)|booth|cubicle|stall|kiosk +confessor|2 +(noun)|priest +(noun)|communicator +confetti|1 +(noun)|paper +confidant|1 +(noun)|intimate|friend +confidante|1 +(noun)|confidant|intimate +confide|2 +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|entrust|intrust|trust|commit|pass|hand|reach|pass on|turn over|give +confidence|5 +(noun)|assurance|self-assurance|self-confidence|authority|sureness|certainty +(noun)|security +(noun)|hopefulness +(noun)|trust|friendship|friendly relationship +(noun)|secret +confidence game|1 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +confidence man|1 +(noun)|con man|con artist|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +confidence trick|1 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +confident|3 +(adj)|confident |assured|cocksure|overconfident|positive|reassured|self-assured|self-confident +(adj)|convinced|positive|certain +(adj)|surefooted|capable +confidential|4 +(adj)|private +(adj)|closet|secret|private +(adj)|close +(adj)|classified +confidential adviser-advisee relation|1 +(noun)|fiduciary relation +confidential information|1 +(noun)|tip|lead|steer|wind|hint|guidance|counsel|counseling|counselling|direction +confidentiality|2 +(noun)|privacy|privateness|secrecy|concealment +(noun)|discretion|discreetness|circumspection|prudence +confidently|1 +(adv)|with confidence +confiding|1 +(adj)|trustful |trusting +confidingly|1 +(adv)|trustfully|trustingly +configuration|2 +(noun)|constellation|design|plan +(noun)|shape|form|contour|conformation|spatial property|spatiality +configurational|1 +(adj)|design|plan +configurationism|1 +(noun)|Gestalt psychology|scientific theory +configure|1 +(verb)|assemble|piece|put together|set up|tack|tack together +configured|1 +(adj)|designed|organized +confine|6 +(verb)|limit|circumscribe|decrease|lessen|minify +(verb)|restrict|restrain|trammel|limit|bound|throttle|control|hold in|hold|contain|check|curb|moderate +(verb)|restrain|suppress|keep|keep back|hold back +(verb)|enclose|hold in|hold|bear|carry|contain +(verb)|detain +(verb)|restrain|hold|disable|disenable|incapacitate +confined|5 +(adj)|confined |claustrophobic|close|confining|homebound|housebound|shut-in|pent|shut up|snowbound|weather-bound|stormbound|restricted|unfree +(adj)|fenced in|penned|enclosed +(adj)|confined +(adj)|restrained +(adj)|captive|imprisoned|jailed|unfree +confinement|3 +(noun)|parturiency|labor|labour|lying-in|travail|childbed|parturition|birth|giving birth|birthing +(noun)|restraint +(noun)|subjugation|subjection +confines|1 +(noun)|scope|range|reach|orbit|compass|ambit +confining|2 +(adj)|constraining|constrictive|limiting|restricting|restrictive +(adj)|close|confined +confirm|5 +(verb)|corroborate|sustain|substantiate|support|affirm +(verb)|reassert|affirm +(verb)|strengthen|beef up|fortify +(verb)|approve|O.K.|okay|sanction +(verb)|covenant +confirmable|1 +(adj)|verifiable|falsifiable|empirical |empiric +confirmation|5 +(noun)|verification|check|substantiation|proof|cogent evidence +(noun)|information|info +(noun)|ratification|agreement|approval|commendation +(noun)|religious ceremony|religious ritual +(noun)|sacrament +confirmation hearing|1 +(noun)|hearing +confirmative|1 +(adj)|collateral|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +confirmatory|1 +(adj)|collateral|confirmative|confirming|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +confirmed|3 +(adj)|unchangeable +(adj)|confirmed |official +(adj)|chronic|habitual|inveterate|addicted +confirming|2 +(adj)|positive +(adj)|collateral|confirmative|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +confiscate|3 +(adj)|forfeit|forfeited|lost +(adj)|appropriated|condemned|confiscated|seized|taken over|taken +(verb)|impound|attach|sequester|seize|take +confiscated|1 +(adj)|appropriated|condemned|confiscate|seized|taken over|taken +confiscation|1 +(noun)|arrogation|seizure +confiture|1 +(noun)|sweet|confection|confectionery +conflagrate|2 +(verb)|kindle|enkindle|inflame|ignite|light +(verb)|erupt|ignite|catch fire|take fire|combust|change state|turn +conflagration|1 +(noun)|inferno|fire +conflate|1 +(verb)|blend|flux|mix|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity +conflict|9 +(noun)|struggle|battle|group action +(noun)|ambivalence|ambivalency +(noun)|battle|fight|engagement|military action|action +(noun)|state +(noun)|incompatibility +(noun)|opposition|oppositeness +(noun)|dispute|difference|difference of opinion|disagreement +(verb)|contrast|counterpoint +(verb)|run afoul|infringe|contravene|transgress|offend|infract|violate|go against|breach|break +conflict of interest|1 +(noun)|situation +conflicting|2 +(adj)|at odds|contradictory|self-contradictory|inconsistent +(adj)|at odds|opposed +confluence|3 +(noun)|meeting|geographic point|geographical point +(noun)|conflux|merging|blend|blending +(noun)|concourse|merging|meeting|coming together +confluent|1 +(adj)|merging|convergent +conflux|1 +(noun)|confluence|merging|blend|blending +conform|1 +(verb)|adjust|adapt|change +conform to|3 +(verb)|meet|fit|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|comply|follow|abide by +(verb)|follow|imitate|copy|simulate +conformable|3 +(adj)|obedient +(adj)|amenable|willing|compliant +(adj)|accordant|agreeable|consonant|concordant|consistent +conformal projection|1 +(noun)|orthomorphic projection|map projection +conformance|1 +(noun)|conformity|agreement|correspondence +conformation|3 +(noun)|balance|equilibrium|equipoise|counterbalance +(noun)|shape|form|configuration|contour|spatial property|spatiality +(noun)|conformity|compliance|abidance|cooperation +conformational entropy|1 +(noun)|randomness|entropy|S +conforming|1 +(adj)|conformist|orthodox +conformism|1 +(noun)|conformity|orthodoxy +conformist|3 +(adj)|conformist +(adj)|conforming|orthodox +(noun)|conservative|conservativist +conformity|5 +(noun)|conformance|agreement|correspondence +(noun)|conformation|compliance|abidance|cooperation +(noun)|conformism|orthodoxy +(noun)|accord|accordance|agreement +(noun)|ossification|conventionality|convention|conventionalism +confound|2 +(verb)|confuse|throw|fox|befuddle|fuddle|bedevil|discombobulate|be +(verb)|confuse|mistake|misidentify +confounded|1 +(adj)|baffled|befuddled|bemused|bewildered|confused|lost|mazed|mixed-up|at sea|perplexed +confoundedly|1 +(adv)|perplexedly +confounding|1 +(adj)|contradictory|unsupportive +confrere|1 +(noun)|colleague|fellow|associate +confront|4 +(verb)|face|meet|encounter|play|take on +(verb)|face up|face|set about|go about|approach +(verb)|face|present +(verb)|front|look|face +confrontation|5 +(noun)|challenge +(noun)|discord|dissension +(noun)|encounter|showdown|face-off|disagreement +(noun)|opposition|resistance +(noun)|comparison|comparing +confrontational|1 +(adj)|resistance +confronting|1 +(noun)|braving|coping with|grappling|tackling|attempt|effort|endeavor|endeavour|try +confucian|2 +(adj)|Confucian|philosophical doctrine|philosophical theory +(noun)|Confucian|believer|truster +confucianism|1 +(noun)|Confucianism|philosophical doctrine|philosophical theory +confucius|1 +(noun)|Confucius|Kung futzu|philosopher +confusable|1 +(adj)|similar +confuse|6 +(verb)|confound|mistake|misidentify +(verb)|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate|be +(verb)|flurry|disconcert|put off|embarrass|abash +(verb)|jumble|mix up|assemble|piece|put together|set up|tack|tack together +(verb)|change|alter|modify +(verb)|blur|obscure|obnubilate|change|alter|modify +confused|5 +(adj)|baffled|befuddled|bemused|bewildered|confounded|lost|mazed|mixed-up|at sea|perplexed +(adj)|disconnected|disjointed|disordered|garbled|illogical|scattered|unconnected|incoherent +(adj)|disoriented|lost|unoriented +(adj)|broken|disordered|upset|disorganized |disorganised +(adj)|confused |addlebrained|addlepated|potty|puddingheaded|muddleheaded|addled|befuddled|muddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|befogged|befuddled|clouded|dazed|stunned|stupefied|stupid|punch-drunk|silly|slaphappy|spaced-out|dazzled|trancelike|perplexed +confusedness|1 +(noun)|confusion|mental confusion|disarray|cognitive state|state of mind +confusing|2 +(adj)|disorienting +(adj)|perplexing|puzzling|unclear +confusingly|1 +(adv)|bewilderingly +confusion|5 +(noun)|disorder +(noun)|mental confusion|confusedness|disarray|cognitive state|state of mind +(noun)|discombobulation|embarrassment +(noun)|combination|combining|compounding +(noun)|mix-up|mistake|error|fault +confutable|1 +(adj)|questionable|refutable|confutative|deniable +confutation|2 +(noun)|refutation|defense|defence +(noun)|disproof|falsification|refutation +confutative|1 +(adj)|questionable|refutable|confutable|deniable +confute|1 +(verb)|disprove|negate|contradict +confuter|1 +(noun)|rebutter|disprover|refuter|debater|arguer +conga|3 +(noun)|dance music|danceroom music|ballroom music +(noun)|ballroom dancing|ballroom dance +(verb)|dance|trip the light fantastic|trip the light fantastic toe +conga line|1 +(noun)|line +conge|4 +(noun)|molding|moulding +(noun)|license|permission|permit +(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +(verb)|congee|bow|bow down +congeal|1 +(verb)|jell|set|solidify +congealed|1 +(adj)|jelled|jellied|solid +congealment|1 +(noun)|congelation|hardening|solidifying|solidification|set|curing +congee|3 +(noun)|jook|gruel +(verb)|depart|take leave|quit +(verb)|conge|bow|bow down +congelation|1 +(noun)|congealment|hardening|solidifying|solidification|set|curing +congenator|1 +(noun)|relative|congener|organism|being +congener|1 +(noun)|relative|congenator|organism|being +congeneric|1 +(adj)|congenerical|congenerous|organism|being +congenerical|1 +(adj)|congeneric|congenerous|organism|being +congenerous|1 +(adj)|congeneric|congenerical|organism|being +congenial|2 +(adj)|congenial |agreeable|compatible|sympathetic|sociable|compatible|friendly|sympathetic +(adj)|compatible +congeniality|2 +(noun)|congenialness|compatibility +(noun)|friendliness +congenialness|1 +(noun)|congeniality|compatibility +congenital|1 +(adj)|inborn|innate|inherent|noninheritable |nonheritable +congenital abnormality|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|defect|anomaly|anomalousness +congenital afibrinogenemia|1 +(noun)|afibrinogenemia|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +congenital anomaly|1 +(noun)|birth defect|congenital defect|congenital disorder|congenital abnormality|defect|anomaly|anomalousness +congenital defect|1 +(noun)|birth defect|congenital anomaly|congenital disorder|congenital abnormality|defect|anomaly|anomalousness +congenital disease|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease +congenital disorder|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital abnormality|defect|anomaly|anomalousness +congenital heart defect|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +congenital megacolon|1 +(noun)|Hirschsprung's disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +congenital pancytopenia|1 +(noun)|Fanconi's anemia|Fanconi's anaemia|anemia|anaemia|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +conger|1 +(noun)|conger eel|eel +conger eel|1 +(noun)|conger|eel +congeries|1 +(noun)|aggregate|conglomeration|sum|summation|sum total +congest|1 +(verb)|clog|choke off|clog up|back up|choke|foul|obstruct|obturate|impede|occlude|jam|block|close up +congested|1 +(adj)|engorged|full +congestion|2 +(noun)|symptom +(noun)|over-crowding|crowding +congestive|1 +(adj)|symptom +congestive heart failure|1 +(noun)|heart failure|coronary failure +congius|1 +(noun)|gallon|Imperial gallon|British capacity unit|Imperial capacity unit +conglobate|1 +(verb)|conglobe|form|constitute|make +conglobation|2 +(noun)|conglomeration|sphere +(noun)|conglomeration|combining|combine +conglobe|1 +(verb)|conglobate|form|constitute|make +conglomerate|4 +(adj)|combined +(noun)|pudding stone|rock|stone +(noun)|empire|corporation|corp +(verb)|accumulate|cumulate|pile up|gather|amass|increase +conglomeration|3 +(noun)|conglobation|sphere +(noun)|aggregate|congeries|sum|summation|sum total +(noun)|conglobation|combining|combine +conglutinate|2 +(verb)|coapt|close|fill up +(verb)|cling|cleave|adhere|stick|cohere +conglutination|2 +(noun)|union|healing +(noun)|coalescence|coalescency|coalition|concretion|union|unification|uniting|conjugation|jointure +congo|4 +(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country|African nation +(noun)|Congo|Congo River|river +(noun)|Congo|Republic of the Congo|French Congo|African country|African nation +(noun)|congou|congou tea|English breakfast tea|black tea +congo copal|1 +(noun)|congo gum|copal +congo eel|1 +(noun)|amphiuma|congo snake|blind eel|salamander +congo franc|1 +(noun)|Congo franc|franc +congo gum|1 +(noun)|congo copal|copal +congo peafowl|1 +(noun)|afropavo|Congo peafowl|Afropavo congensis|pheasant +congo red|1 +(noun)|azo dye|acid-base indicator +congo river|1 +(noun)|Congo|Congo River|river +congo snake|1 +(noun)|amphiuma|congo eel|blind eel|salamander +congolese|2 +(adj)|Congolese|African country|African nation +(noun)|Congolese|African +congoo mallee|1 +(noun)|white mallee|Eucalyptus dumosa|mallee +congorism|1 +(noun)|Congorism|expressive style|style +congou|1 +(noun)|congo|congou tea|English breakfast tea|black tea +congou tea|1 +(noun)|congou|congo|English breakfast tea|black tea +congratulate|4 +(verb)|compliment|praise +(verb)|felicitate|wish|bid +(verb)|pride|plume|feel|experience +(verb)|preen|gloat|triumph|crow +congratulation|2 +(noun)|felicitation|speech act +(noun)|felicitation|expression +congratulations|3 +(noun)|praise|kudos|approval|commendation +(noun)|congratulation|felicitation|speech act +(noun)|congratulation|felicitation|expression +congratulatory|1 +(adj)|gratulatory|felicitous +congregate|2 +(adj)|accumulated|amassed|assembled|collected|massed|concentrated +(verb)|meet|gather|assemble|forgather|foregather +congregating|1 +(noun)|congregation|assembly|assemblage|gathering +congregation|3 +(noun)|fold|faithful|social group +(noun)|collection|aggregation|accumulation|assemblage +(noun)|congregating|assembly|assemblage|gathering +congregational|2 +(adj)|social group +(adj)|Congregational|Congregationalist|Protestant denomination +congregational christian church|1 +(noun)|Congregational Christian Church|Protestant denomination +congregational church|1 +(noun)|Congregational Church|Protestant denomination +congregationalism|1 +(noun)|Congregationalism|Protestantism +congregationalist|2 +(adj)|Congregational|Congregationalist|Protestant denomination +(noun)|Congregationalist|Protestant +congress|4 +(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature|legislative assembly|general assembly|law-makers +(noun)|meeting +(noun)|legislature|legislative assembly|general assembly|law-makers +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +congress boot|1 +(noun)|congress shoe|congress gaiter|shoe +congress gaiter|1 +(noun)|congress boot|congress shoe|shoe +congress of industrial organizations|1 +(noun)|Congress of Industrial Organizations|CIO|federation +congress of racial equality|1 +(noun)|Congress of Racial Equality|CORE|nongovernmental organization|NGO +congress shoe|1 +(noun)|congress boot|congress gaiter|shoe +congressional|1 +(adj)|legislature|legislative assembly|general assembly|law-makers +congressional district|1 +(noun)|district|territory|territorial dominion|dominion +congressional medal of honor|1 +(noun)|Medal of Honor|Congressional Medal of Honor|decoration|laurel wreath|medal|medallion|palm|ribbon +congressional record|1 +(noun)|Congressional Record|minutes|proceedings|transactions +congressman|1 +(noun)|congresswoman|representative|legislator +congresswoman|1 +(noun)|congressman|representative|legislator +congridae|1 +(noun)|Congridae|family Congridae|fish family +congruence|1 +(noun)|congruity|congruousness|harmony|harmoniousness +congruent|2 +(adj)|congruous |appropriate|harmonious +(adj)|congruent |coincident|coinciding|identical|superposable +congruity|1 +(noun)|congruousness|congruence|harmony|harmoniousness +congruous|2 +(adj)|congruous |congruent|appropriate|harmonious +(adj)|compatible +congruousness|1 +(noun)|congruity|congruence|harmony|harmoniousness +conic|2 +(adj)|conical|conelike|cone-shaped|round shape +(noun)|conic section|plane figure|two-dimensional figure +conic morel|1 +(noun)|black morel|Morchella conica|Morchella angusticeps|narrowhead morel|morel +conic projection|1 +(noun)|conical projection|map projection +conic section|1 +(noun)|conic|plane figure|two-dimensional figure +conic verpa|1 +(noun)|Verpa conica|conic Verpa|Verpa|bell morel +conic waxycap|1 +(noun)|Hygrocybe acutoconica|waxycap +conical|1 +(adj)|conic|conelike|cone-shaped|round shape +conical buoy|1 +(noun)|nun|nun buoy|buoy +conical projection|1 +(noun)|conic projection|map projection +conidiophore|1 +(noun)|hypha +conidiospore|1 +(noun)|conidium|spore +conidium|1 +(noun)|conidiospore|spore +conifer|1 +(noun)|coniferous tree|gymnospermous tree +coniferales|1 +(noun)|Coniferales|order Coniferales|plant order +coniferophyta|1 +(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class +coniferophytina|1 +(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class +coniferopsida|1 +(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class +coniferous|1 +(adj)|cone-bearing|evergreen +coniferous tree|1 +(noun)|conifer|gymnospermous tree +conilurus|1 +(noun)|Conilurus|genus Conilurus|mammal genus +conima|1 +(noun)|gum +coniogramme|1 +(noun)|Coniogramme|genus Coniogramme|fern genus +coniogramme japonica|1 +(noun)|bamboo fern|Coniogramme japonica|fern +conium|1 +(noun)|Conium|genus Conium|rosid dicot genus +conium maculatum|1 +(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +conjectural|1 +(adj)|divinatory|supposed|suppositional|suppositious|supposititious|theoretical |theoretic +conjecture|4 +(noun)|speculation|hypothesis|possibility|theory +(noun)|guess|supposition|surmise|surmisal|speculation|hypothesis|opinion|view +(noun)|reasoning|logical thinking|abstract thought +(verb)|speculate|theorize|theorise|hypothesize|hypothesise|hypothecate|suppose|expect|anticipate +conjoin|2 +(verb)|join|connect|link|tie|link up +(verb)|marry|get married|wed|hook up with|get hitched with|espouse|unite|unify +conjoined|1 +(adj)|conjoint|joint +conjoined twin|1 +(noun)|Siamese twin|identical twin|monozygotic twin|monozygous twin +conjoint|1 +(adj)|conjoined|joint +conjointly|1 +(adv)|jointly|collectively|together|put together +conjugal|1 +(adj)|connubial|marital status +conjugal family|1 +(noun)|nuclear family|family|household|house|home|menage +conjugal rights|1 +(noun)|legal right +conjugal visitation|1 +(noun)|conjugal visitation rights|legal right +conjugal visitation rights|1 +(noun)|conjugal visitation|legal right +conjugally|1 +(adv)|connubial +conjugate|8 +(adj)|conjugated|coupled|united +(adj)|compound +(adj)|conjugated|bound +(adj)|conjugated|bound +(noun)|conjugate solution|solution +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|inflect +(verb)|change +conjugate solution|1 +(noun)|conjugate|solution +conjugated|3 +(adj)|conjugate|bound +(adj)|conjugate|coupled|united +(adj)|conjugate|bound +conjugated protein|1 +(noun)|compound protein|protein +conjugation|6 +(noun)|junction|conjunction|colligation|union|unification +(noun)|inflection|inflexion +(noun)|set +(noun)|class|category|family +(noun)|coupling|mating|pairing|union|sexual union|sexual activity|sexual practice|sex|sex activity +(noun)|union|unification|uniting|jointure|combination|combining|compounding +conjunct|3 +(adj)|conjunct +(adj)|united +(adj)|combined|concerted|conjunctive|cooperative|united|joint +conjunction|6 +(noun)|concurrence|coincidence|co-occurrence|simultaneity|simultaneousness +(noun)|junction|conjugation|colligation|union|unification +(noun)|conjunctive|connective|function word|closed-class word +(noun)|grammatical relation +(noun)|alignment|meeting|encounter +(noun)|junction|connection|connexion|connector|connecter|connective +conjunctiva|1 +(noun)|mucous membrane|mucosa +conjunctival|1 +(adj)|mucous membrane|mucosa +conjunctival layer of bulb|1 +(noun)|bulbar conjunctiva|tunica conjunctiva bulbi|conjunctiva +conjunctival layer of eyelids|1 +(noun)|palpebra conjunctiva|tunica conjunctiva palpebrarum|conjunctiva +conjunctival veins|1 +(noun)|venae conjunctivales|vein|vena|venous blood vessel +conjunctive|3 +(adj)|conjunctive |connecting|copulative|connective +(adj)|combined|concerted|conjunct|cooperative|united|joint +(noun)|conjunction|connective|function word|closed-class word +conjunctivitis|1 +(noun)|pinkeye|inflammation|redness|rubor +conjunctivitis arida|1 +(noun)|xerophthalmia|xerophthalmus|xeroma|dryness|waterlessness|xerotes +conjuncture|1 +(noun)|juncture|occasion +conjuration|3 +(noun)|incantation|spell|magic spell|charm +(noun)|conjuring|conjury|invocation|magic +(noun)|magic trick|conjuring trick|trick|magic|legerdemain|illusion|deception|performance +conjure|3 +(verb)|raise|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make|create +(verb)|bid|beseech|entreat|adjure|press|plead +(verb)|conspire|cabal|complot|machinate|plot +conjure man|1 +(noun)|conjurer|conjuror|witch doctor +conjure up|1 +(verb)|raise|conjure|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make|create +conjurer|2 +(noun)|magician|prestidigitator|conjuror|illusionist|performer|performing artist +(noun)|conjuror|conjure man|witch doctor +conjuring|1 +(noun)|conjuration|conjury|invocation|magic +conjuring trick|1 +(noun)|magic trick|trick|magic|legerdemain|conjuration|illusion|deception|performance +conjuror|2 +(noun)|magician|prestidigitator|conjurer|illusionist|performer|performing artist +(noun)|conjurer|conjure man|witch doctor +conjury|1 +(noun)|conjuring|conjuration|invocation|magic +conk|5 +(noun)|nose|olfactory organ +(verb)|stall|stop|halt +(verb)|hit +(verb)|kick the bucket|cash in one's chips|buy the farm|give-up the ghost|drop dead|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +(verb)|faint|swoon|pass out|zonk out|pass out|black out +conk out|2 +(verb)|fail|go bad|give way|die|give out|go|break|break down|change +(verb)|poop out|peter out|run down|run out|tire|pall|weary|fatigue|jade +conker|1 +(noun)|buckeye|horse chestnut|seed +conn|1 +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +conn's syndrome|1 +(noun)|Conn's syndrome|syndrome +connaraceae|1 +(noun)|Connaraceae|family Connaraceae|zebrawood family|rosid dicot family +connarus|1 +(noun)|Connarus|genus Connarus|rosid dicot genus +connarus guianensis|1 +(noun)|Connarus guianensis|zebrawood|zebrawood tree +connate|2 +(adj)|connate +(adj)|cognate|related |related to +connatural|2 +(adj)|similar +(adj)|inborn|inbred|native|normal +connect|11 +(verb)|link|tie|link up +(verb)|associate|tie in|relate|link|colligate|link up|think|cogitate|cerebrate +(verb)|link|link up|join|unite +(verb)|join|bring together +(verb)|hit|strike|impinge on|run into|collide with +(verb)|join|bring together +(verb)|be +(verb)|relate +(verb)|get in touch|touch base|interact +(verb)|plug in|insert|infix|enter|introduce +(verb)|hit +connected|6 +(adj)|affiliated|attached|related |related to +(adj)|connected |abutting|adjacent|adjoining|conterminous|contiguous|neighboring|adjunctive|affined|attached|connecting|conterminous|contiguous|coupled|joined|linked|engaged|siamese|socially connected|well-connected +(adj)|associated|related |related to +(adj)|wired +(adj)|on +(adj)|machine-accessible|on-line +connectedness|2 +(noun)|connection|link|union|unification +(noun)|connection|connexion|relation +connecter|1 +(noun)|connection|connexion|connector|connective|instrumentality|instrumentation +connecticut|3 +(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state +(noun)|Connecticut|Connecticut River|river|United States|United States of America|America|US|U.S.|USA|U.S.A. +(noun)|Connecticut|Colony +connecticut river|1 +(noun)|Connecticut|Connecticut River|river|United States|United States of America|America|US|U.S.|USA|U.S.A. +connecticuter|1 +(noun)|Connecticuter|American +connecting|2 +(adj)|connected +(adj)|copulative|conjunctive +connecting flight|1 +(noun)|flight +connecting rod|1 +(noun)|rod +connecting room|1 +(noun)|hotel room +connection|9 +(noun)|connexion|connectedness|relation +(noun)|link|connectedness|union|unification +(noun)|connexion|connector|connecter|connective|instrumentality|instrumentation +(noun)|acquaintance|friend +(noun)|association|connexion|memory|remembering +(noun)|connexion|link|shape|form +(noun)|supplier|provider +(noun)|connexion|transportation|transfer|transferral|conveyance +(noun)|joining|connexion|change of integrity +connective|3 +(adj)|conjunctive +(noun)|conjunction|conjunctive|function word|closed-class word +(noun)|connection|connexion|connector|connecter|instrumentality|instrumentation +connective tissue|1 +(noun)|animal tissue +connectivity|1 +(noun)|property +connector|1 +(noun)|connection|connexion|connecter|connective|instrumentality|instrumentation +connemara heath|1 +(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath +connexion|6 +(noun)|connection|link|shape|form +(noun)|connection|connectedness|relation +(noun)|association|connection|memory|remembering +(noun)|connection|connector|connecter|connective|instrumentality|instrumentation +(noun)|connection|transportation|transfer|transferral|conveyance +(noun)|joining|connection|change of integrity +conning tower|2 +(noun)|pilothouse|wheelhouse +(noun)|bridge|bridge deck +conniption|1 +(noun)|fit|tantrum|scene|bad temper|ill temper +connivance|2 +(noun)|collusion|agreement +(noun)|secret approval|tacit consent|approval|commendation +connive|2 +(verb)|assent|accede|acquiesce +(verb)|scheme|intrigue|plot +connive at|1 +(verb)|wink at|promote|advance|boost|further|encourage +conniving|2 +(adj)|collusive|covert +(adj)|calculating|calculative|scheming|shrewd|hard +connochaetes|1 +(noun)|Connochaetes|genus Connochaetes|mammal genus +connoisseur|1 +(noun)|cognoscenti|authority +connoisseurship|1 +(noun)|virtu|vertu|taste|appreciation|discernment|perceptiveness +connolly|1 +(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player +connors|1 +(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player +connotation|2 +(noun)|intension|meaning|significance|signification|import +(noun)|meaning|substance +connotational|1 +(adj)|connotative of|connotative +connotative|1 +(adj)|connotative |connotational|connotative of|inferential|intensional|implicational|implicative|suggestive|suggestive of|implicit|inexplicit +connotative of|1 +(adj)|connotational|connotative +connote|2 +(verb)|imply|express|show|evince +(verb)|predicate|imply +connubial|2 +(adj)|conjugal|marital status +(adv)|conjugally +conocarpus|1 +(noun)|Conocarpus|genus Conocarpus|dicot genus|magnoliopsid genus +conocarpus erectus|1 +(noun)|button tree|button mangrove|Conocarpus erectus|tree +conoclinium|1 +(noun)|Conoclinium|genus Conoclinium|asterid dicot genus +conoclinium coelestinum|1 +(noun)|mistflower|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower +conodont|2 +(noun)|tooth +(noun)|jawless vertebrate|jawless fish|agnathan +conodonta|1 +(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order +conodontophorida|1 +(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order +conoid|1 +(noun)|cone|cone shape|round shape +conopodium|1 +(noun)|Conopodium|genus Conopodium|rosid dicot genus +conopodium denudatum|1 +(noun)|earthnut|Conopodium denudatum|herb|herbaceous plant +conospermum|1 +(noun)|Conospermum|genus Conospermum|dicot genus|magnoliopsid genus +conoy|1 +(noun)|Conoy|Algonquian|Algonquin +conquer|3 +(verb)|suppress|stamp down|inhibit|subdue|curb|control|hold in|hold|contain|check|curb|moderate +(verb)|appropriate|capture|seize|assume|usurp|seize|take over|arrogate +(verb)|get the better of|overcome|defeat +conquerable|2 +(adj)|conquerable |beatable|vanquishable|vincible|expugnable|stormable|subduable|subjugable|surmountable|vulnerable +(adj)|superable|surmountable +conquering|1 +(noun)|conquest|subjection|subjugation|capture|gaining control|seizure +conqueror|1 +(noun)|vanquisher|victor|master|superior +conquest|3 +(noun)|conquering|subjection|subjugation|capture|gaining control|seizure +(noun)|success +(noun)|seduction|success +conquistador|1 +(noun)|explorer|adventurer +conrad|1 +(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer|author +conrad aiken|1 +(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer|author +conrad potter aiken|1 +(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer|author +conradina|1 +(noun)|Conradina|genus Conradina|asterid dicot genus +conradina glabra|1 +(noun)|Apalachicola rosemary|Conradina glabra|shrub|bush +consanguine|1 +(adj)|akin|blood-related|cognate|consanguineous|kin|related +consanguineous|1 +(adj)|akin|blood-related|cognate|consanguine|kin|related +consanguinity|1 +(noun)|blood kinship|cognation|kinship|family relationship|relationship +conscience|2 +(noun)|morality +(noun)|shame +conscience-smitten|1 +(adj)|guilty +conscience money|1 +(noun)|payment +conscienceless|1 +(adj)|unconscionable|unconscientious +conscientious|2 +(adj)|painstaking|scrupulous|careful +(adj)|conscientious |moral +conscientious objector|1 +(noun)|CO|dissenter|dissident|protester|objector|contestant +conscientiously|1 +(adv)|scrupulously|religiously +conscientiousness|2 +(noun)|conscience +(noun)|painstakingness|carefulness +conscionable|1 +(adj)|just +conscious|3 +(adj)|witting|intended +(adj)|conscious |alert|awake|self-conscious|self-aware|semiconscious|sentient|awake|aware|sensible|sensitive|voluntary +(adj)|aware +consciousness|2 +(noun)|cognitive state|state of mind +(noun)|awareness|cognizance|cognisance|knowingness|knowing +consciousness-altering drug|1 +(noun)|psychoactive drug|mind-altering drug|psychoactive substance|drug +conscript|2 +(noun)|draftee|inductee|serviceman|military man|man|military personnel +(verb)|enlist +conscription|1 +(noun)|muster|draft|selective service|mobilization|mobilisation|militarization|militarisation +consecrate|5 +(adj)|consecrated |dedicated|ordained|votive|holy|sacred +(verb)|ordain|ordinate|order|invest|vest|enthrone +(verb)|give|dedicate|commit|devote|use|utilize|utilise|apply|employ +(verb)|vow|give|dedicate|commit|devote +(verb)|bless|hallow|sanctify|declare +consecrated|2 +(adj)|consecrated |consecrate|dedicated|ordained|votive|holy|sacred +(adj)|sacred|sanctified|holy +consecration|2 +(noun)|commitment|allegiance|loyalty|dedication +(noun)|sanctification +consecutive|4 +(adj)|sequent|sequential|serial|successive|ordered +(adj)|straight|continuous |uninterrupted +(adj)|back-to-back|succeeding +(adv)|sequentially +consecutive operation|1 +(noun)|serial operation|sequential operation|operation +consensual|1 +(adj)|accordant +consensus|1 +(noun)|agreement|accord +consent|2 +(noun)|permission +(verb)|accept|go for|react|respond +consent decree|1 +(noun)|decree|edict|fiat|order|rescript +consentaneous|1 +(adj)|consentient|unanimous|accordant +consentient|1 +(adj)|consentaneous|unanimous|accordant +consenting|1 +(adj)|willing +consequence|3 +(noun)|effect|outcome|result|event|issue|upshot|phenomenon +(noun)|aftermath|result|resultant|final result|outcome|termination +(noun)|import|moment|significance +consequent|1 +(adj)|ensuant|resultant|resulting|sequent|subsequent +consequential|1 +(adj)|eventful|important |of import +consequently|2 +(adv)|accordingly +(adv)|therefore +conservancy|2 +(noun)|committee|commission +(noun)|conservation +conservation|3 +(noun)|preservation|improvement|betterment|advance +(noun)|preservation|saving +(noun)|principle +conservation of charge|1 +(noun)|conservation of electricity|conservation +conservation of electricity|1 +(noun)|conservation of charge|conservation +conservation of energy|1 +(noun)|law of conservation of energy|first law of thermodynamics|conservation|law of thermodynamics +conservation of mass|1 +(noun)|conservation of matter|law of conservation of mass|law of conservation of matter|conservation +conservation of matter|1 +(noun)|conservation of mass|law of conservation of mass|law of conservation of matter|conservation +conservation of momentum|1 +(noun)|conservation +conservation of parity|1 +(noun)|parity|space-reflection symmetry|mirror symmetry|conservation +conservationist|1 +(noun)|environmentalist|reformer|reformist|crusader|meliorist +conservatism|1 +(noun)|conservativism|political orientation|ideology|political theory +conservative|6 +(adj)|conservative |blimpish|buttoned-up|fusty|standpat|unprogressive|nonprogressive|hidebound|traditionalist|ultraconservative|orthodox|right +(adj)|right +(adj)|cautious|moderate +(adj)|button-down|buttoned-down|conventional +(adj)|bourgeois|materialistic|middle-class +(noun)|conservativist|adult|grownup +conservative jew|1 +(noun)|Conservative Jew|Jew|Hebrew|Israelite +conservative judaism|2 +(noun)|Conservative Judaism|Judaism|Hebraism|Jewish religion +(noun)|Conservative Judaism|Judaism +conservative party|1 +(noun)|Conservative Party|party|political party +conservatively|1 +(adv)|cautiously|guardedly +conservativism|1 +(noun)|conservatism|political orientation|ideology|political theory +conservativist|1 +(noun)|conservative|adult|grownup +conservatoire|1 +(noun)|conservatory|school|schoolhouse +conservator|2 +(noun)|curator|custodian|keeper|steward +(noun)|fiduciary +conservator-ward relation|1 +(noun)|fiduciary relation +conservatory|3 +(noun)|school +(noun)|conservatoire|school|schoolhouse +(noun)|hothouse|indoor garden|greenhouse|nursery|glasshouse +conserve|5 +(noun)|preserve|conserves|preserves|confiture +(verb)|keep|maintain|hold +(verb)|preserve|maintain|keep up|keep +(verb)|husband|economize|economise|save|preserve +(verb)|preserve|keep +conserved|1 +(adj)|preserved +conserves|2 +(noun)|conserve|preserve|preserves|confiture +(noun)|conserve|preserve|preserves|confiture +conserving|1 +(adj)|preserving|protective +consider|9 +(verb)|see|reckon|view|regard|think|believe|conceive +(verb)|study|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +(verb)|take|deal|look at|think about +(verb)|count|weigh +(verb)|debate|moot|turn over|deliberate|hash out|discuss|talk over +(verb)|think|believe|conceive|judge +(verb)|regard|look +(verb)|view|look at|analyze|analyse|study|examine|canvass|canvas +(verb)|see|reckon|view|regard +considerable|1 +(adj)|considerable |appreciable|goodly|goodish|hefty|respectable|sizable|sizeable|tidy|right smart|significant|substantial|extended|extensive|wide +considerably|1 +(adv)|well|substantially +considerate|1 +(adj)|considerate |kind|thoughtful|tactful|thoughtful|unselfish +considerately|1 +(adv)|with consideration +considerateness|1 +(noun)|consideration|thoughtfulness|kindness +consideration|6 +(noun)|thinking|thought|cerebration|intellection|mentation +(noun)|circumstance|condition|information +(noun)|discussion|treatment|discourse +(noun)|considerateness|thoughtfulness|kindness +(noun)|retainer|fee +(noun)|thoughtfulness|kindness|benignity +considered|2 +(adj)|reasoned|well thought out|thoughtful +(adj)|wise|well-advised |advised +consign|3 +(verb)|abandon +(verb)|charge|entrust|intrust|trust|confide|commit +(verb)|deliver +consignee|1 +(noun)|recipient|receiver +consigner|1 +(noun)|consignor|shipper +consignment|3 +(noun)|cargo|lading|freight|load|loading|payload|shipment|merchandise|wares|product +(noun)|commitment|committal|confinement +(noun)|delivery|bringing +consignor|1 +(noun)|consigner|shipper +consist|4 +(verb)|dwell|lie|belong|lie in|exist|be +(verb)|be +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|comprise|be +consistence|2 +(noun)|consistency|uniformity|uniformness +(noun)|consistency|body|property +consistency|4 +(noun)|consistence|body|property +(noun)|consistence|uniformity|uniformness +(noun)|coherence|coherency|cohesion|cohesiveness +(noun)|logicality|logicalness +consistent|4 +(adj)|consistent |accordant|agreeable|conformable|consonant|concordant|pursuant|self-consistent|unchanging|reconciled|invariable +(adj)|logical|ordered|orderly|coherent +(adj)|reproducible |duplicable|duplicatable +(adj)|uniform|homogeneous |homogenous +consistently|1 +(adv)|systematically +consistory|1 +(noun)|court|tribunal|judicature +consociate|1 +(verb)|associate|unite|unify +consolable|1 +(adj)|consolable +consolation|2 +(noun)|solace|solacement|comfort +(noun)|comfort|solace|relief|succor|succour|ministration +consolatory|1 +(adj)|comforting|consoling|reassuring +console|5 +(noun)|console table|table +(noun)|scientific instrument +(noun)|bracket +(noun)|cabinet|housing +(verb)|comfort|soothe|solace +console table|1 +(noun)|console|table +consolida|1 +(noun)|Consolida|genus Consolida|magnoliid dicot genus +consolida ambigua|1 +(noun)|rocket larkspur|Consolida ambigua|Delphinium ajacis|flower +consolidate|5 +(verb)|unify|unite|merge +(verb)|strengthen +(verb)|unite|unify|merge +(verb)|solidify +(verb)|solidify +consolidated|2 +(adj)|amalgamate|amalgamated|coalesced|fused|united +(adj)|compact +consolidation|3 +(noun)|combining|combine +(noun)|integration|combination|combining|compounding +(noun)|natural object +consolidative|2 +(adj)|unifying|integrative +(adj)|integrative|centralizing +consoling|1 +(adj)|comforting|consolatory|reassuring +consolingly|1 +(adv)|comfortingly +consomme|1 +(noun)|soup +consonance|2 +(noun)|consonant rhyme|rhyme|rime +(noun)|harmoniousness|harmony +consonant|4 +(adj)|harmonic|harmonical|harmonized|harmonised|in harmony|harmonious +(adj)|accordant|agreeable|conformable|concordant|consistent +(noun)|phone|speech sound|sound +(noun)|letter|letter of the alphabet|alphabetic character +consonant rhyme|1 +(noun)|consonance|rhyme|rime +consonant system|1 +(noun)|consonantal system|phonemic system +consonantal|3 +(adj)|consonantal +(adj)|phone|speech sound|sound +(adj)|consonantal |nonsyllabic|nonvocalic +consonantal system|1 +(noun)|consonant system|phonemic system +consonate|1 +(verb)|resound|echo|ring|reverberate +consort|5 +(noun)|spouse|partner|married person|mate|better half +(noun)|choir|set +(verb)|associate|affiliate|assort|interact +(verb)|harmonize|harmonise|accord|concord|fit in|agree|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|run|accompany +consortium|1 +(noun)|pool|syndicate|association +conspecific|2 +(adj)|taxonomic group|taxonomic category|taxon +(noun)|organism|being +conspectus|1 +(noun)|summary +conspicuous|2 +(adj)|conspicuous |obvious|attention-getting|eye-catching|big|large|prominent|bold|crying|egregious|flagrant|glaring|gross|rank|featured|in evidence|marked|outstanding|prominent|salient|spectacular|striking|indiscreet +(adj)|blatant|blazing|open|unconcealed +conspicuous consumption|1 +(noun)|consumption|economic consumption|usance|use|use of goods and services +conspicuously|1 +(adv)|prominently +conspicuousness|2 +(noun)|salience|saliency|strikingness +(noun)|visibility|visibleness +conspiracy|3 +(noun)|confederacy|agreement|understanding +(noun)|cabal|plot|secret plan|game +(noun)|confederacy|set|circle|band|lot +conspiracy of silence|1 +(noun)|conspiracy|confederacy +conspirative|1 +(adj)|conspiratorial|plot|secret plan|game +conspirator|1 +(noun)|coconspirator|plotter|machinator|criminal|felon|crook|outlaw|malefactor +conspiratorial|1 +(adj)|conspirative|plot|secret plan|game +conspire|2 +(verb)|cabal|complot|conjure|machinate|plot +(verb)|collude|interact +constable|3 +(noun)|lawman|law officer|peace officer +(noun)|Constable|John Constable|painter +(noun)|police constable|policeman|police officer|officer +constabulary|1 +(noun)|police|police force|law|force|personnel|law enforcement agency +constancy|3 +(noun)|stability|changelessness|unchangeability|unchangeableness|unchangingness +(noun)|perception +(noun)|fidelity|faithfulness +constant|6 +(adj)|changeless|invariant|steady|unvarying|invariable +(adj)|continual +(adj)|constant |steadfast|staunch|unswerving|unfailing|unflagging|faithful|invariable|stable|unchangeable +(adj)|ceaseless|incessant|never-ending|perpetual|unceasing|unremitting|continuous |uninterrupted +(noun)|constant quantity|quantity +(noun)|number +constant-width font|1 +(noun)|typewriter font|fixed-width font|monospaced font|font|fount|typeface|face +constant lambert|1 +(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer|conductor|music director|director +constant of gravitation|1 +(noun)|gravitational constant|universal gravitational constant|G|constant +constant of proportionality|1 +(noun)|factor of proportionality|factor|constant +constant quantity|1 +(noun)|constant|quantity +constantan|1 +(noun)|Eureka|copper-base alloy +constantin brancusi|1 +(noun)|Brancusi|Constantin Brancusi|sculptor|sculpturer|carver|statue maker +constantine|2 +(noun)|Constantine|Constantine I|Constantine the Great|Roman Emperor|Emperor of Rome +(noun)|Constantine|city|metropolis|urban center +constantine i|1 +(noun)|Constantine|Constantine I|Constantine the Great|Roman Emperor|Emperor of Rome +constantine the great|1 +(noun)|Constantine|Constantine I|Constantine the Great|Roman Emperor|Emperor of Rome +constantinople|1 +(noun)|Istanbul|Stambul|Stamboul|Constantinople|city|metropolis|urban center +constantly|1 +(adv)|perpetually +constatation|1 +(noun)|basic assumption|self-evident truth|assumption|supposition|supposal +constellate|3 +(verb)|dot|stud|cover|extend +(verb)|cluster|flock|clump|meet|gather|assemble|forgather|foregather +(verb)|form|constitute|make +constellation|2 +(noun)|configuration|design|plan +(noun)|natural object +consternate|1 +(verb)|frighten|fright|scare|affright +consternation|1 +(noun)|alarm|dismay|fear|fearfulness|fright +constipate|2 +(verb)|clog|slow|slow down|slow up +(verb)|bind|indispose +constipated|1 +(adj)|constipated |bound +constipating|1 +(adj)|binding|costive +constipation|2 +(noun)|irregularity|symptom +(noun)|stultification|impairment|deadening|degradation|debasement +constituency|1 +(noun)|body +constituent|5 +(adj)|constitutional|constitutive|organic|essential +(noun)|component|element|part|portion +(noun)|voter|elector +(noun)|grammatical constituent|syntagma|syntagm +(noun)|component|element|factor|ingredient|part|section|division +constitute|4 +(verb)|represent|make up|comprise|be +(verb)|appoint|name|nominate|establish|found|plant|institute +(verb)|form|make|represent|make up|comprise|be +(verb)|establish|found|plant|institute|initiate|pioneer +constituted|1 +(adj)|established |accepted|brought about|deep-rooted|deep-seated|implanted|ingrained|planted|entrenched|habitual|legitimate|official|recognized|recognised|set up|grooved|well-grooved +constitution|4 +(noun)|fundamental law|organic law|law +(noun)|establishment|formation|organization|organisation|beginning|start|commencement +(noun)|composition|makeup|property +(noun)|Constitution|Old Ironsides|frigate +constitution of the united states|1 +(noun)|United States Constitution|Constitution of the United States|fundamental law|organic law|constitution +constitution state|1 +(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state +constitutional|6 +(adj)|law +(adj)|property +(adj)|constitutional +(adj)|built-in|inbuilt|inherent|integral|intrinsic |intrinsical +(adj)|constituent|constitutive|organic|essential +(noun)|walk +constitutional convention|1 +(noun)|Constitutional Convention|convention +constitutional union party|1 +(noun)|Constitutional Union Party|party|political party +constitutionalise|1 +(verb)|constitutionalize|change|alter|modify +constitutionalism|2 +(noun)|political system|form of government +(noun)|political orientation|ideology|political theory +constitutionalist|1 +(noun)|advocate|advocator|proponent|exponent +constitutionalize|3 +(verb)|supply|provide|render|furnish +(verb)|walk|take the air +(verb)|constitutionalise|change|alter|modify +constitutive|1 +(adj)|constituent|constitutional|organic|essential +constrain|2 +(verb)|restrain|encumber|cumber|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|stiffen|tighten|tighten up|restrict|restrain|trammel|limit|bound|confine|throttle +constrained|1 +(adj)|forced|strained|affected |unnatural +constraining|1 +(adj)|confining|constrictive|limiting|restricting|restrictive +constraint|3 +(noun)|restraint|confinement +(noun)|restraint|device +(noun)|restriction +constrict|2 +(verb)|compress|squeeze|compact|contract|press|tighten +(verb)|constringe|narrow|tighten +constricted|3 +(adj)|tense +(adj)|constricted |narrowed|pinched|stenosed|stenotic +(adj)|limited +constricting|2 +(adj)|binding|tight +(adj)|constrictive|narrowing|narrow +constriction|4 +(noun)|bottleneck|chokepoint|narrowing +(noun)|coarctation|compression|condensation|contraction +(noun)|feeling +(noun)|compression|compressing +constrictive|2 +(adj)|constricting|narrowing|narrow +(adj)|confining|constraining|limiting|restricting|restrictive +constrictor|1 +(noun)|snake|serpent|ophidian +constrictor constrictor|1 +(noun)|boa constrictor|Constrictor constrictor|boa +constringe|1 +(verb)|constrict|narrow|tighten +construal|1 +(noun)|interpretation +construct|7 +(noun)|concept|conception|idea|thought +(verb)|build|make|make|create +(verb)|manufacture|fabricate|make +(verb)|trace|draw|line|describe|delineate +(verb)|create by mental act|create mentally +(verb)|create by mental act|create mentally +(verb)|reconstruct|retrace|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +construction|7 +(noun)|building|creating from raw materials +(noun)|building|commercial enterprise|business enterprise|business +(noun)|structure|artifact|artefact +(noun)|grammatical construction|expression|constituent|grammatical constituent +(noun)|mental synthesis|thinking|thought|cerebration|intellection|mentation +(noun)|twist|interpretation +(noun)|mathematical process|mathematical operation|operation +construction industry|1 +(noun)|housing industry|industry +construction paper|1 +(noun)|paper +construction worker|1 +(noun)|hard hat|craftsman|artisan|journeyman|artificer +constructive|2 +(adj)|constructive |creative|formative|shaping|formative|inferential|reconstructive|rehabilitative|structural|positive +(adj)|positive +constructive-metabolic|1 +(adj)|energy-storing|anabolic +constructive breach|1 +(noun)|anticipatory breach|breach of contract +constructive eviction|1 +(noun)|eviction|compulsion|coercion +constructive fraud|1 +(noun)|legal fraud|fraud +constructive metabolism|1 +(noun)|anabolism|organic process|biological process +constructive possession|1 +(noun)|possession|ownership +constructive trust|1 +(noun)|involuntary trust|implied trust +constructiveness|1 +(noun)|quality +constructivism|1 +(noun)|artistic movement|art movement +constructivist|1 +(noun)|artist|creative person +constructor|1 +(noun)|builder|creator +construe|1 +(verb)|interpret|see|understand|construe with +construe with|1 +(verb)|collocate with|cooccur with|co-occur with|go with|attach to|accompany|come with|go with +consubstantial|1 +(adj)|theological doctrine|religious doctrine +consubstantiate|2 +(verb)|unify|unite|merge +(verb)|unite|unify|merge +consubstantiation|1 +(noun)|theological doctrine|religious doctrine +consuetude|1 +(noun)|custom|usage|usance +consuetudinal|1 +(noun)|consuetudinary|manual +consuetudinary|1 +(noun)|consuetudinal|manual +consul|1 +(noun)|diplomat|diplomatist +consular|1 +(adj)|diplomat|diplomatist|diplomatic building +consulate|1 +(noun)|diplomatic building +consulship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +consult|5 +(verb)|confer with|ask|inquire|enquire +(verb)|refer|look up|research +(verb)|consider|count|weigh +(verb)|confer|confabulate|confab|hash out|discuss|talk over +(verb)|advise|counsel +consultancy|1 +(noun)|practice +consultant|1 +(noun)|adviser|advisor|authority +consultation|3 +(noun)|audience|interview|conference|group discussion +(noun)|conference|group discussion +(noun)|reference|action +consultative|1 +(adj)|advisory|consultatory|consultive|informative |informatory +consultatory|1 +(adj)|advisory|consultative|consultive|informative |informatory +consulting company|1 +(noun)|consulting firm|firm|house|business firm +consulting firm|1 +(noun)|consulting company|firm|house|business firm +consulting service|1 +(noun)|service +consultive|1 +(adj)|advisory|consultative|consultatory|informative |informatory +consumable|1 +(adj)|expendable +consume|6 +(verb)|devour|down|go through|eat +(verb)|ingest|take in|take|have +(verb)|squander|waste|ware|spend|expend|drop +(verb)|destroy|ruin +(verb)|eat up|use up|eat|deplete|exhaust|run through|wipe out|spend|expend|drop +(verb)|absorb|engross|engage|occupy +consumed|2 +(adj)|used-up|used up|exhausted +(adj)|eaten +consumer|1 +(noun)|user +consumer credit|1 +(noun)|credit line|line of credit|bank line|line|personal credit line|personal line of credit +consumer durables|1 +(noun)|durables|durable goods|consumer goods +consumer finance company|1 +(noun)|small loan company|finance company +consumer goods|1 +(noun)|commodity|trade goods|goods +consumer loan|1 +(noun)|personal loan|loan +consumer price index|1 +(noun)|CPI|cost-of-living index|price index|price level +consumer research|1 +(noun)|marketing research|market research +consumerism|2 +(noun)|economic theory +(noun)|campaign|cause|crusade|drive|movement|effort +consuming|1 +(adj)|overwhelming|intense +consummate|5 +(adj)|masterful|masterly|virtuoso|skilled +(adj)|complete|perfect +(adj)|arrant|complete|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +(verb)|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|carry through|accomplish|execute|carry out|action|fulfill|fulfil +consummated|1 +(adj)|consummated |completed|fulfilled +consummation|2 +(noun)|completion|culmination|closing|windup|mop up +(noun)|completion|culmination|closing|windup|mop up +consumption|4 +(noun)|ingestion|intake|uptake|bodily process|body process|bodily function|activity +(noun)|pulmonary tuberculosis|phthisis|wasting disease|white plague|tuberculosis|TB|T.B. +(noun)|economic consumption|usance|use|use of goods and services|demand +(noun)|using up|expenditure|depletion +consumption weed|1 +(noun)|groundsel tree|groundsel bush|cotton-seed tree|Baccharis halimifolia|shrub|bush +consumptive|3 +(adj)|consumptive |exploitative|exploitatory|exploitive +(adj)|ill |sick +(noun)|lunger|sick person|diseased person|sufferer +contact|11 +(noun)|interaction +(noun)|connection|link|connectedness +(noun)|touch|touching +(noun)|impinging|striking|happening|occurrence|natural event +(noun)|middleman|representative +(noun)|liaison|link|inter-group communication|channel|communication channel|line +(noun)|tangency|junction|conjunction +(noun)|touch|communication|communicating +(noun)|contact lens|lens|lense|lens system +(verb)|reach|get through|get hold of|communicate|intercommunicate +(verb)|touch|adjoin|meet +contact action|1 +(noun)|catalysis|chemical process|chemical change|chemical action +contact arm|1 +(noun)|wiper|wiper arm|contact|tangency +contact dermatitis|1 +(noun)|dermatitis +contact lens|1 +(noun)|contact|lens|lense|lens system +contact print|1 +(noun)|print +contact sport|1 +(noun)|sport|athletics +contadino|1 +(noun)|farmer|husbandman|granger|sodbuster +contagion|3 +(noun)|contagious disease|communicable disease +(noun)|infection|transmission|incident +(noun)|infection|communication +contagious|3 +(adj)|communicable disease +(adj)|infectious +(adj)|catching|communicable|contractable|transmissible|transmittable|infectious +contagious abortion|1 +(noun)|brucellosis|Bang's disease|zoonosis|zoonotic disease +contagious disease|1 +(noun)|contagion|communicable disease +contagiously|1 +(adv)|infectiously +contain|6 +(verb)|incorporate|comprise|include +(verb)|hold|bear|carry|include +(verb)|control|hold in|hold|check|curb|moderate|restrain|suppress|keep|keep back|hold back +(verb)|be +(verb)|take|hold|be +(verb)|check|turn back|arrest|stop|hold back|defend +contained|2 +(adj)|restrained +(adj)|controlled +container|1 +(noun)|instrumentality|instrumentation +container ship|2 +(noun)|containership|container vessel|cargo ship|cargo vessel +(noun)| +container vessel|1 +(noun)|container ship|containership|cargo ship|cargo vessel +containerful|1 +(noun)|indefinite quantity +containerise|1 +(verb)|containerize|pack +containerised|1 +(adj)|containerized|pack +containerize|1 +(verb)|containerise|pack +containerized|1 +(adj)|containerised|pack +containership|1 +(noun)|container ship|container vessel|cargo ship|cargo vessel +containment|3 +(noun)|policy +(noun)|system +(noun)|restraint +contaminant|1 +(noun)|contamination|material|stuff +contaminate|2 +(verb)|pollute|foul|dirty|soil|begrime|grime|colly|bemire +(verb)|change|alter|modify +contaminated|3 +(adj)|contaminated +(adj)|dirty|infected|pestiferous|septic +(adj)|polluted|impure +contaminating|2 +(adj)|dirty +(adj)|corrupting|infectious +contamination|3 +(noun)|taint|impurity|impureness +(noun)|contaminant|material|stuff +(noun)|pollution|soiling|soilure|dirtying +contaminative|1 +(adj)|septic +conte alessandro giuseppe antonio anastasio volta|1 +(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist +conte alessandro volta|1 +(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist +contemn|1 +(verb)|despise|scorn|disdain|hate|detest +contemplate|4 +(verb)|view|consider|look at +(verb)|consider|take|deal|look at +(verb)|study|meditate|think|cogitate|cerebrate +(verb)|chew over|think over|meditate|ponder|excogitate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +contemplation|2 +(noun)|stare +(noun)|reflection|reflexion|rumination|musing|thoughtfulness|consideration +contemplative|2 +(adj)|brooding|broody|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful +(noun)|person|individual|someone|somebody|mortal|human|soul +contemplativeness|1 +(noun)|pensiveness|meditativeness|thoughtfulness +contemporaneity|2 +(noun)|modernity|modernness|modernism|contemporaneousness|currentness|currency|up-to-dateness +(noun)|contemporaneousness|concurrence|coincidence|conjunction|co-occurrence +contemporaneous|2 +(adj)|contemporary|synchronous |synchronal|synchronic +(adj)|coetaneous|coeval|synchronous |synchronal|synchronic +contemporaneousness|2 +(noun)|modernity|modernness|modernism|contemporaneity|currentness|currency|up-to-dateness +(noun)|contemporaneity|concurrence|coincidence|conjunction|co-occurrence +contemporaries|2 +(noun)|coevals|generation|people +(noun)|contemporary|coeval|peer|equal|match|compeer +contemporary|4 +(adj)|modern-day|modern +(adj)|present-day|current +(adj)|contemporaneous|synchronous |synchronal|synchronic +(noun)|coeval|peer|equal|match|compeer +contemporary world|1 +(noun)|times|modern times|present time|modern world|present|nowadays +contemporise|2 +(verb)|synchronize|synchronise|contemporize|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|synchronize|synchronise|contemporize|arrange|set up|put|order +contemporize|2 +(verb)|synchronize|synchronise|contemporise|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|synchronize|synchronise|contemporise|arrange|set up|put|order +contempt|4 +(noun)|disdain|scorn|despite|dislike +(noun)|disrespect|discourtesy|rudeness +(noun)|scorn|disrespect|discourtesy +(noun)|disobedience|noncompliance +contempt of congress|1 +(noun)|contempt of Congress|contempt +contempt of court|1 +(noun)|contempt +contemptibility|1 +(noun)|baseness|despicableness|despicability|unworthiness +contemptible|2 +(adj)|contemptible |abject|low|low-down|miserable|scummy|scurvy|pathetic|pitiable|pitiful|ignoble|unworthy +(adj)|despicable|ignoble +contemptuous|1 +(adj)|disdainful|insulting|scornful|disrespectful +contemptuously|1 +(adv)|disdainfully|scornfully|contumeliously|showing contempt +contend|5 +(verb)|postulate|claim +(verb)|argue|debate|fence|converse|discourse +(verb)|contest|repugn|oppose +(verb)|compete|vie +(verb)|cope|get by|make out|make do|grapple|deal|manage|act|move +contender|1 +(noun)|rival|challenger|competitor|competition|contestant +contending|1 +(adj)|competitive |competitory +content|10 +(adj)|contented |complacent|self-satisfied|happy|satisfied|smug|self-satisfied|easygoing|placid|happy|pleased +(noun)|collection|aggregation|accumulation|assemblage +(noun)|message|subject matter|substance|communication +(noun)|proportion|proportionality +(noun)|capacity|volume +(noun)|cognitive content|mental object|cognition|knowledge|noesis +(noun)|contentedness|acceptance +(noun)|subject|depicted object|thing +(verb)|limit|circumscribe|confine +(verb)|satisfy|gratify +content word|1 +(noun)|open-class word|word +contented|1 +(adj)|contented |content|complacent|self-satisfied|happy|satisfied|smug|self-satisfied|easygoing|placid|happy|pleased +contentedness|1 +(noun)|content|acceptance +contention|3 +(noun)|assertion|averment|asseveration +(noun)|controversy|contestation|disputation|disceptation|tilt|argument|arguing|dispute|difference|difference of opinion|conflict +(noun)|competition|rivalry|group action +contentious|3 +(adj)|disputatious|disputative|litigious|argumentative +(adj)|controversial +(adj)|battleful|bellicose|combative|aggressive +contentiousness|1 +(noun)|aggressiveness|belligerence|pugnacity|quarrelsomeness|disagreeableness +contentment|1 +(noun)|happiness +contents|8 +(noun)|table of contents|list|listing|table|tabular array +(noun)|content|collection|aggregation|accumulation|assemblage +(noun)|message|content|subject matter|substance|communication +(noun)|content|proportion|proportionality +(noun)|capacity|content|volume +(noun)|content|cognitive content|mental object|cognition|knowledge|noesis +(noun)|contentedness|content|acceptance +(noun)|subject|content|depicted object|thing +conterminous|3 +(adj)|contiguous|connected +(adj)|abutting|adjacent|adjoining|contiguous|neighboring|connected +(adj)|coextensive|coterminous|commensurate +contest|3 +(noun)|competition|social event +(noun)|competition|contention|rivalry +(verb)|contend|repugn|oppose +contestable|1 +(adj)|contestable |challengeable|debatable|disputable|shakable|shakeable|questionable +contestant|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|dissenter|dissident|protester|objector|person|individual|someone|somebody|mortal|human|soul +contestation|1 +(noun)|controversy|contention|disputation|disceptation|tilt|argument|arguing|dispute|difference|difference of opinion|conflict +contested|1 +(adj)|contested |oppose +contestee|1 +(noun)|winner|victor +contester|1 +(noun)|disputant|controversialist|eristic +context|2 +(noun)|linguistic context|context of use|discourse +(noun)|circumstance|environment +context of use|1 +(noun)|context|linguistic context|discourse +contextual|1 +(adj)|discourse +contextual definition|1 +(noun)|definition +contiguity|1 +(noun)|adjacency|contiguousness|nearness|closeness +contiguous|3 +(adj)|immediate|close +(adj)|conterminous|connected +(adj)|abutting|adjacent|adjoining|conterminous|neighboring|connected +contiguousness|1 +(noun)|adjacency|contiguity|nearness|closeness +continence|2 +(noun)|continency|self-discipline|self-denial +(noun)|restraint|control +continency|1 +(noun)|continence|self-discipline|self-denial +continent|4 +(adj)|continent +(adj)|celibate|chaste +(noun)|landmass +(noun)|Continent|Europe +continent-wide|1 +(adj)|continental +continental|4 +(adj)|Europe +(adj)|geographical area|geographic area|geographical region|geographic region +(adj)|landmass +(adj)|continental |continent-wide|transcontinental +continental army|1 +(noun)|Continental Army|army|regular army|ground forces +continental breakfast|1 +(noun)|petit dejeuner|breakfast +continental congress|1 +(noun)|Continental Congress|congress +continental divide|1 +(noun)|watershed|water parting|divide +continental drift|1 +(noun)|geological phenomenon +continental glacier|1 +(noun)|glacier +continental plan|1 +(noun)|European plan|hotel plan|meal plan +continental quilt|1 +(noun)|eiderdown|duvet|quilt|comforter|puff +continental shelf|1 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +continental slope|1 +(noun)|bathyal zone|bathyal district|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +contingence|1 +(noun)|eventuality|contingency|happening|occurrence|natural event +contingency|2 +(noun)|eventuality|contingence|happening|occurrence|natural event +(noun)|dependence|dependance|dependency +contingency fee|1 +(noun)|fee +contingency procedure|1 +(noun)|routine|subroutine|subprogram|procedure|function +contingent|5 +(adj)|possible +(adj)|contingent on|dependent on|dependant on|depending on|conditional +(adj)|uncertain +(noun)|gathering|assemblage +(noun)|detail|military unit|military force|military group|force +contingent on|1 +(adj)|contingent|dependent on|dependant on|depending on|conditional +contingent probability|1 +(noun)|conditional probability|probability|chance +continual|2 +(adj)|continual |constant|everlasting|incessant|perpetual|endless|insistent|repetitive|perennial|recurrent|repeated|persistent|relentless|unrelenting|recurring|revenant|running +(adj)|continuous |uninterrupted +continuance|3 +(noun)|continuation|activity +(noun)|duration|time period|period of time|period +(noun)|duration|time +continuant|1 +(noun)|continuant consonant|consonant +continuant consonant|1 +(noun)|continuant|consonant +continuation|4 +(noun)|continuance|activity +(noun)|sequel|addendum|supplement|postscript +(noun)|good continuation|law of continuation|Gestalt law of organization|Gestalt principle of organization +(noun)|lengthiness|prolongation|protraction|duration|length +continue|9 +(verb)|go on|proceed|go along|keep|act|move +(verb)|go on|carry on|proceed|talk|speak +(verb)|uphold|carry on|bear on|preserve|keep|maintain|hold +(verb)|proceed|go forward|travel|go|move|locomote +(verb)|retain|keep|keep on|keep going|prolong|sustain|keep up +(verb)|persist in|act|move +(verb)|act|move +(verb)|stay|stay on|remain|be +(verb)|be +continued|1 +(adj)|continued |continuing +continued fraction|1 +(noun)|fraction +continuing|1 +(adj)|continued +continuing trespass|1 +(noun)|trespass +continuity|3 +(noun)|coherence|coherency|cohesion|cohesiveness +(noun)|script|book|playscript +(noun)|persistence|lastingness|durability|enduringness|strength +continuity army council|1 +(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization|terrorist group|foreign terrorist organization|FTO +continuity irish republican army|1 +(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization|terrorist group|foreign terrorist organization|FTO +continuo|1 +(noun)|figured bass|basso continuo|thorough bass|bass|bass part +continuous|2 +(adj)|continuous |uninterrupted|around-the-clock|day-and-night|nonstop|round-the-clock|ceaseless|constant|incessant|never-ending|perpetual|unceasing|unremitting|continual|endless|free burning|sustained|straight|consecutive|dogging|persisting|sustained|unbroken +(adj)|continuous +continuous receiver watch|1 +(noun)|listening watch|watch|vigil +continuous tense|1 +(noun)|progressive|progressive tense|imperfect|imperfect tense|tense +continuously|1 +(adv)|endlessly|ceaselessly|incessantly|unceasingly|unendingly +continuousness|1 +(noun)|ceaselessness|incessancy|incessantness|endlessness +continuum|1 +(noun)|time +conto|1 +(noun)|Portuguese monetary unit +contopus|1 +(noun)|Contopus|genus Contopus|bird genus +contopus sordidulus|1 +(noun)|western wood pewee|Contopus sordidulus|pewee|peewee|peewit|pewit|wood pewee|Contopus virens +contopus virens|1 +(noun)|pewee|peewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +contort|1 +(verb)|deform|distort|wring|twist|twine|distort +contorted|2 +(adj)|writhed|writhen|crooked +(adj)|distorted|twisted|crooked +contortion|2 +(noun)|deformation|change of shape +(noun)|tortuosity|tortuousness|torsion|crookedness|distorted shape|distortion +contortionist|1 +(noun)|acrobat +contour|4 +(noun)|contour line|isometric line|isometric +(noun)|shape|form|configuration|conformation|spatial property|spatiality +(noun)|feature|characteristic +(verb)|delineate|limn|outline +contour feather|1 +(noun)|feather|plume|plumage +contour language|1 +(noun)|tone language|tonal language +contour line|1 +(noun)|contour|isometric line|isometric +contour map|1 +(noun)|relief map|map +contour sheet|1 +(noun)|fitted sheet|sheet|bed sheet +contra danse|2 +(noun)|country-dance|country dancing|contredanse|contradance|folk dancing|folk dance +(verb)|contradance|country-dance|contredanse|dance|trip the light fantastic|trip the light fantastic toe +contraband|2 +(adj)|bootleg|black|black-market|smuggled|illegal +(noun)|merchandise|wares|product +contrabandist|1 +(noun)|smuggler|runner|moon curser|moon-curser|criminal|felon|crook|outlaw|malefactor +contrabass|2 +(adj)|double-bass|low |low-pitched +(noun)|bass fiddle|bass viol|bull fiddle|double bass|string bass|bowed stringed instrument|string|bass +contrabassoon|1 +(noun)|contrafagotto|double bassoon|bassoon +contraception|1 +(noun)|contraceptive method|birth control|birth prevention|family planning +contraceptive|2 +(adj)|prophylactic|antifertility|protective +(noun)|preventive|preventative|contraceptive device|prophylactic device|birth control device|device +contraceptive device|1 +(noun)|contraceptive|preventive|preventative|prophylactic device|birth control device|device +contraceptive diaphragm|1 +(noun)|diaphragm|pessary|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +contraceptive method|1 +(noun)|contraception|birth control|birth prevention|family planning +contraceptive pill|1 +(noun)|pill|birth control pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +contraclockwise|1 +(adj)|counterclockwise |anticlockwise|levorotary|levorotatory|left-handed|sinistral +contract|12 +(noun)|written agreement +(noun)|declaration|bid|bidding +(noun)|contract bridge|bridge +(verb)|undertake|promise|assure +(verb)|sign|sign on|sign up|hire|engage|employ +(verb)|compress|constrict|squeeze|compact|press|tighten +(verb)|shrink|decrease|diminish|lessen|fall +(verb)|take|get|sicken|come down +(verb)|shrink|reduce +(verb)|condense|concentrate|change|alter|modify +(verb)|narrow|change +(verb)|abridge|foreshorten|abbreviate|shorten|cut|reduce|decrease|lessen|minify +contract bridge|1 +(noun)|contract|bridge +contract in|1 +(verb)|accept|consent|go for +contract killing|1 +(noun)|murder|slaying|execution +contract law|1 +(noun)|jurisprudence|law|legal philosophy +contract of adhesion|1 +(noun)|adhesion contract|contract +contract of hazard|1 +(noun)|sale in gross|contract +contract offer|1 +(noun)|offer|offering +contract out|2 +(verb)|sign|contract|sign on|sign up +(verb)|refuse|decline +contract under seal|1 +(noun)|sealed instrument|special contract|contract +contractable|1 +(adj)|catching|communicable|contagious|transmissible|transmittable|infectious +contracted|1 +(adj)|contracted |contractile|shrunk|shrunken|narrowed +contractile|1 +(adj)|contracted +contractile organ|1 +(noun)|contractor|organ +contractility|1 +(noun)|ability +contracting|1 +(noun)|catching|acquiring|getting +contraction|4 +(noun)|muscular contraction|muscle contraction|shortening +(noun)|compression|condensation|shrinking|shrinkage +(noun)|word +(noun)|decrease|diminution|reduction|step-down +contractor|4 +(noun)|builder|constructor +(noun)|declarer|bridge player|hand +(noun)|party +(noun)|contractile organ|organ +contractual|1 +(adj)|written agreement +contracture|1 +(noun)|contraction|muscular contraction|muscle contraction +contradance|2 +(noun)|country-dance|country dancing|contredanse|contra danse|folk dancing|folk dance +(verb)|country-dance|contredanse|contra danse|dance|trip the light fantastic|trip the light fantastic toe +contradict|4 +(verb)|belie|negate|deviate|vary|diverge|depart +(verb)|negate|contravene|disagree|differ|dissent|take issue +(verb)|oppose|controvert|refute|rebut +(verb)|negate|prove|demonstrate|establish|show|shew +contradiction|3 +(noun)|opposition|oppositeness +(noun)|contradiction in terms|falsehood|falsity|untruth|false statement +(noun)|negation +contradiction in terms|1 +(noun)|contradiction|falsehood|falsity|untruth|false statement +contradictoriness|1 +(noun)|opposition|oppositeness +contradictory|5 +(adj)|antonymous +(adj)|confounding|unsupportive +(adj)|at odds|conflicting|self-contradictory|inconsistent +(adj)|mutually exclusive|incompatible +(noun)|logical relation +contradistinction|1 +(noun)|differentiation|distinction +contradistinguish|1 +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +contrafagotto|1 +(noun)|contrabassoon|double bassoon|bassoon +contrail|1 +(noun)|condensation trail|cloud +contraindicate|1 +(verb)|advise|counsel +contraindication|1 +(noun)|reason +contralateral|1 +(adj)|contralateral +contralto|3 +(adj)|alto|low |low-pitched +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|alto|singing voice +contraption|1 +(noun)|appliance|contrivance|convenience|gadget|gizmo|gismo|widget|device +contrapuntal|2 +(adj)|polyphony|polyphonic music|concerted music +(adj)|polyphonic +contrapuntist|1 +(noun)|composer +contrarian|1 +(noun)|investor +contrariety|1 +(noun)|opposition|oppositeness +contrarily|2 +(adv)|perversely|contrariwise +(adv)|to the contrary|contrariwise|on the contrary +contrariness|2 +(noun)|perversity|perverseness|unruliness|fractiousness|willfulness|wilfulness +(noun)|crankiness|crotchetiness|grumpiness|ill nature +contrarious|1 +(adj)|cross-grained|stubborn +contrariwise|3 +(adv)|perversely|contrarily +(adv)|vice versa|the other way around +(adv)|contrarily|to the contrary|on the contrary +contrary|7 +(adj)|different +(adj)|antonymous +(adj)|obstinate|perverse|wayward|disobedient +(adj)|adverse|unfavorable |unfavourable +(noun)|reverse|opposite|opposition|oppositeness +(noun)|opposition|oppositeness +(noun)|logical relation +contrary to fact|1 +(adj)|counterfactual|conditional +contrast|7 +(noun)|direct contrast|opposition|oppositeness +(noun)|comparison|comparing +(noun)|line|dividing line|demarcation|differentiation|distinction +(noun)|visual perception|beholding|seeing +(noun)|scope|range|reach|orbit|compass|ambit +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|counterpoint|differ +contrast material|1 +(noun)|contrast medium|medium +contrast medium|1 +(noun)|contrast material|medium +contrasting|1 +(adj)|contrastive|different +contrastive|3 +(adj)|incompatible|antonymous +(adj)|contrasting|different +(adj)|disjunctive +contrasty|1 +(adj)|contrasty +contravene|2 +(verb)|conflict|run afoul|infringe|transgress|offend|infract|violate|go against|breach|break +(verb)|contradict|negate|disagree|differ|dissent|take issue +contravention|1 +(noun)|dispute|resistance +contredanse|2 +(noun)|country-dance|country dancing|contra danse|contradance|folk dancing|folk dance +(verb)|contradance|country-dance|contra danse|dance|trip the light fantastic|trip the light fantastic toe +contretemps|1 +(noun)|brush|clash|encounter|skirmish +contribute|4 +(verb)|lend|impart|bestow|add|bring|change|alter|modify +(verb)|give|chip in|kick in|give +(verb)|lead|conduce|promote|advance|boost|further|encourage +(verb)|put up|pay +contributing|1 +(adj)|conducive|contributive|contributory|tributary|causative +contribution|5 +(noun)|part|share|attempt|effort|endeavor|endeavour|try +(noun)|donation|gift +(noun)|donation|giving|gift +(noun)|sum|sum of money|amount|amount of money +(noun)|publication|publishing +contributive|1 +(adj)|conducive|contributing|contributory|tributary|causative +contributor|2 +(noun)|subscriber|donor|giver|presenter +(noun)|writer|author +contributory|1 +(adj)|conducive|contributing|contributive|tributary|causative +contributory negligence|1 +(noun)|negligence|carelessness|neglect|nonperformance +contrite|2 +(adj)|remorseful|rueful|ruthful|sorry|penitent +(adj)|apologetic |excusatory +contritely|1 +(adv)|ruefully|remorsefully +contriteness|1 +(noun)|attrition|contrition|sorrow|regret|rue|ruefulness +contrition|1 +(noun)|attrition|contriteness|sorrow|regret|rue|ruefulness +contrivance|6 +(noun)|appliance|contraption|convenience|gadget|gizmo|gismo|widget|device +(noun)|invention|innovation|excogitation|conception|design +(noun)|stratagem|dodge|scheme|strategy +(noun)|arrangement|organization|organisation|system +(noun)|lash-up|arrangement +(noun)|devisal|invention +contrive|3 +(verb)|plan|project|design|create by mental act|create mentally +(verb)|invent|devise|excogitate|formulate|forge|create by mental act|create mentally +(verb)|project|cast|throw|send|direct +contrived|2 +(adj)|planned +(adj)|artificial|hokey|stilted|affected |unnatural +contriver|1 +(noun)|planner|deviser|person|individual|someone|somebody|mortal|human|soul +control|19 +(noun)|power|powerfulness +(noun)|relation +(noun)|bodily process|body process|bodily function|activity +(noun)|control condition|criterion|standard +(noun)|activity +(noun)|dominance|ascendance|ascendence|ascendancy|ascendency|condition|status +(noun)|restraint|discipline +(noun)|command|mastery|skillfulness +(noun)|economic policy +(noun)|controller|mechanism +(noun)|spirit|disembodied spirit +(verb)|command +(verb)|hold in|hold|contain|check|curb|moderate|restrain|suppress|keep|keep back|hold back +(verb)|operate|manipulate +(verb)|manipulate|keep in line|interact +(verb)|verify|test|prove|try|try out|examine|essay +(verb)|see|check|insure|see to it|ensure|ascertain|assure +(verb)|see|check|insure|see to it|ensure|ascertain|assure|verify +(verb)|master|know +control account|1 +(noun)|accounting|accounting system|method of accounting +control board|1 +(noun)|control panel|instrument panel|board|panel|electrical device +control center|1 +(noun)|center|centre +control character|1 +(noun)|ASCII control character|ASCII character +control circuit|1 +(noun)|negative feedback circuit|feedback circuit|feedback loop +control condition|1 +(noun)|control|criterion|standard +control experiment|1 +(noun)|experiment|experimentation +control freak|1 +(noun)|compulsive +control function|1 +(noun)|control operation|operation +control grid|1 +(noun)|grid|electrode +control key|1 +(noun)|command key|key +control operation|1 +(noun)|control function|operation +control panel|1 +(noun)|instrument panel|control board|board|panel|electrical device +control rod|1 +(noun)|rod +control room|1 +(noun)|room +control stick|1 +(noun)|stick|joystick|lever +control stock|1 +(noun)|stock +control surface|1 +(noun)|airfoil|aerofoil|surface|device +control system|1 +(noun)|system +control tower|1 +(noun)|tower +controllable|1 +(adj)|governable|manageable +controlled|2 +(adj)|controlled |contained|disciplined|dominated|harnessed|obsessed|possessed|pressurized|pressurised|price-controlled|priest-ridden|regimented|restrained +(adj)|restricted|limited +controlled substance|1 +(noun)|drug +controller|3 +(noun)|accountant|comptroller|businessperson|bourgeois +(noun)|restrainer|person|individual|someone|somebody|mortal|human|soul +(noun)|control|mechanism +controllership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +controlling|1 +(adj)|dominant +controlling interest|1 +(noun)|interest|stake +controversial|1 +(adj)|controversial |arguable|debatable|disputable|moot|contentious|disputed|polemic|polemical +controversialist|1 +(noun)|disputant|eristic|person|individual|someone|somebody|mortal|human|soul +controversially|1 +(adv)|polemically +controversy|1 +(noun)|contention|contestation|disputation|disceptation|tilt|argument|arguing|dispute|difference|difference of opinion|conflict +controvert|2 +(verb)|oppose|contradict|refute|rebut +(verb)|refute|rebut|disprove|confute +contumacious|1 +(adj)|insubordinate +contumaciously|1 +(adv)|rebelliously|defiantly +contumacy|2 +(noun)|disobedience|noncompliance +(noun)|insubordination|rebelliousness +contumelious|1 +(adj)|disrespectful +contumeliously|1 +(adv)|contemptuously|disdainfully|scornfully|showing contempt +contumely|1 +(noun)|abuse|insult|revilement|vilification|disrespect|discourtesy +contuse|1 +(verb)|bruise|injure|wound +contused|1 +(adj)|bruised|contusioned|injured +contusion|2 +(noun)|bruise|injury|hurt|harm|trauma +(noun)|hit|hitting|striking +contusioned|1 +(adj)|bruised|contused|injured +conundrum|1 +(noun)|riddle|enigma|brain-teaser|problem +conurbation|1 +(noun)|urban sprawl|urban area|populated area +conuropsis|1 +(noun)|Conuropsis|genus Conuropsis|bird genus +conuropsis carolinensis|1 +(noun)|Carolina parakeet|Conuropsis carolinensis|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +convalesce|1 +(verb)|recuperate|recover|better|improve|ameliorate|meliorate +convalescence|1 +(noun)|recuperation|recovery|healing +convalescent|3 +(adj)|healing +(adj)|recovering|ill |sick +(noun)|sick person|diseased person|sufferer +convallaria|1 +(noun)|Convallaria|genus Convallaria|liliid monocot genus +convallaria majalis|1 +(noun)|lily of the valley|lilies of the valley|May lily|Convallaria majalis|liliaceous plant +convallariaceae|1 +(noun)|Convallariaceae|family Convallariaceae|liliid monocot family +convect|1 +(verb)|circulate +convection|2 +(noun)|temperature change +(noun)|natural process|natural action|action|activity +convector|1 +(noun)|heater|warmer +convene|2 +(verb)|meet|gather|assemble|forgather|foregather +(verb)|convoke|summon +convener|1 +(noun)|caller +convenience|4 +(noun)|comfort|comfortableness +(noun)|suitability|suitableness +(noun)|public toilet|comfort station|public convenience|public lavatory|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +(noun)|appliance|contraption|contrivance|gadget|gizmo|gismo|widget|device +convenience food|1 +(noun)|food +convenience store|1 +(noun)|shop|store +conveniences|5 +(noun)|comforts|creature comforts|amenities|support|keep|livelihood|living|bread and butter|sustenance +(noun)|convenience|comfort|comfortableness +(noun)|convenience|suitability|suitableness +(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|widget|device +convenient|3 +(adj)|convenient |handy|favorable|favourable|opportune|expedient|accessible +(adj)|handy|ready to hand|accessible +(adj)|commodious |roomy|spacious +conveniently|1 +(adv)|handily +convening|1 +(noun)|convention|assembly|assemblage|gathering +convent|2 +(noun)|religious residence|cloister +(noun)|community +conventicle|2 +(noun)|meeting|get together +(noun)|meetinghouse|place of worship|house of prayer|house of God|house of worship +convention|5 +(noun)|meeting +(noun)|normal|pattern|rule|formula|practice +(noun)|treaty|pact|accord +(noun)|conventionality|conventionalism|orthodoxy +(noun)|convening|assembly|assemblage|gathering +conventional|7 +(adj)|conventional |accepted|received|customary|stodgy|stuffy|formulaic|formal|unoriginal +(adj)|established|orthodox +(adj)|conventional +(adj)|conventional |button-down|buttoned-down|conservative|square|straight|stereotyped|stereotypic|stereotypical|unimaginative|white-bread +(adj)|formal|schematic|nonrepresentational +(adj)|traditional +(adj)|ceremonious|formal +conventionalisation|1 +(noun)|conventionalization|stylization|stylisation +conventionalise|1 +(verb)|conventionalize|change|alter|modify +conventionalised|1 +(adj)|conventionalized|stylized|stylised|artificial |unreal +conventionalism|1 +(noun)|conventionality|convention|orthodoxy +conventionality|3 +(noun)|conformity|conformism +(noun)|unoriginality +(noun)|convention|conventionalism|orthodoxy +conventionalization|1 +(noun)|conventionalisation|stylization|stylisation +conventionalize|2 +(verb)|conventionalise|change|alter|modify +(verb)|stylize|stylise|represent|interpret +conventionalized|1 +(adj)|conventionalised|stylized|stylised|artificial |unreal +conventioneer|1 +(noun)|attendant|attender|attendee|meeter +conventual|1 +(adj)|cloistered|cloistral|monastic|monastical|unworldly +converge|4 +(verb)|meet +(verb)|border on|approach +(verb)|meet|gather|assemble|forgather|foregather +(verb)|unify|unite|merge +convergence|4 +(noun)|happening|occurrence|natural event +(noun)|convergency|series +(noun)|overlap|intersection|representation|mental representation|internal representation +(noun)|converging|convergency|joining|connection|connexion +convergency|2 +(noun)|convergence|series +(noun)|convergence|converging|joining|connection|connexion +convergent|1 +(adj)|convergent |confluent|merging|focused|focussed|oblique +convergent strabismus|1 +(noun)|cross-eye|crossed eye|esotropia|strabismus|squint +convergent thinker|1 +(noun)|problem solver|solver|thinker +convergent thinking|1 +(noun)|thinking|thought|cerebration|intellection|mentation +converging|1 +(noun)|convergence|convergency|joining|connection|connexion +converging lens|1 +(noun)|convex lens|lens|lense|lens system +conversance|1 +(noun)|acquaintance|familiarity|conversancy|information +conversancy|1 +(noun)|acquaintance|familiarity|conversance|information +conversant|1 +(adj)|familiar|informed +conversation|1 +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +conversation piece|1 +(noun)|center|center of attention +conversation stopper|1 +(noun)|stopper|remark|comment +conversational|1 +(adj)|colloquial|informal +conversational partner|1 +(noun)|interlocutor|conversationalist|schmoozer +conversationalist|1 +(noun)|schmoozer|speaker|talker|utterer|verbalizer|verbaliser +conversationally|1 +(adv)|colloquially|informally +converse|4 +(adj)|antonymous +(adj)|reversed|transposed|backward +(noun)|proposition +(verb)|discourse|talk|speak +conversion|9 +(noun)|transition|changeover|transformation|transmutation|shift +(noun)|calculation|computation|figuring|reckoning +(noun)|score +(noun)|rebirth|spiritual rebirth|redemption|salvation +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|change|alteration|modification +(noun)|rhetorical device +(noun)|exchange|interchange +(noun)|change +conversion disorder|1 +(noun)|conversion reaction|conversion hysteria|mental disorder|mental disturbance|disturbance|psychological disorder|folie +conversion factor|1 +(noun)|factor +conversion hysteria|1 +(noun)|conversion disorder|conversion reaction|mental disorder|mental disturbance|disturbance|psychological disorder|folie +conversion reaction|1 +(noun)|conversion disorder|conversion hysteria|mental disorder|mental disturbance|disturbance|psychological disorder|folie +converso|1 +(noun)|Marrano|Converso|convert +convert|12 +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|change|alter|modify +(verb)|change over|change|alter|modify +(verb)|change +(verb)|change|exchange|commute|replace +(verb)|change|alter|modify +(verb)|score|hit|tally|rack up +(verb)|score|hit|tally|rack up +(verb)|score|hit|tally|rack up +(verb)|win over|convince|persuade +(verb)|commute|exchange|change|alter|modify +(verb)|change +converted|1 +(adj)|born-again|reborn|regenerate +converter|1 +(noun)|convertor|device +convertibility|1 +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +convertible|6 +(adj)|convertible |exchangeable|cashable|redeemable +(adj)|adaptable +(adj)|transformable|translatable|transmutable|commutable +(noun)|car|auto|automobile|machine|motorcar +(noun)|convertible security|security|certificate +(noun)|sofa bed|sofa|couch|lounge +convertible bond|1 +(noun)|bond|bond certificate +convertible security|1 +(noun)|convertible|security|certificate +convertor|1 +(noun)|converter|device +convex|1 +(adj)|convex |bulging|bell-shaped|biconvex|convexo-convex|lenticular|lentiform|broken-backed|hogged|convexo-concave|gibbous|gibbose|planoconvex|umbellate|umbel-like|protrusive +convex lens|1 +(noun)|converging lens|lens|lense|lens system +convex polygon|1 +(noun)|polygon|polygonal shape +convex polyhedron|1 +(noun)|polyhedron +convex shape|1 +(noun)|convexity|solid +convexity|2 +(noun)|convexness|shape|form|configuration|contour|conformation +(noun)|convex shape|solid +convexness|1 +(noun)|convexity|shape|form|configuration|contour|conformation +convexo-concave|1 +(adj)|convex |bulging +convexo-convex|1 +(adj)|biconvex|lenticular|lentiform|convex |bulging +convey|7 +(verb)|impart|communicate|intercommunicate +(verb)|carry|express|communicate|intercommunicate +(verb)|transmit|communicate|transfer +(verb)|transfer +(verb)|conduct|transmit|carry|channel|bring|take +(verb)|bring|take|transport|carry +(verb)|bring|get|fetch|transmit|transfer|transport|channel|channelize|channelise +conveyable|1 +(adj)|assignable|negotiable|transferable|transferrable|alienable +conveyance|5 +(noun)|legal document|legal instrument|official document|instrument +(noun)|imparting|impartation|transmission +(noun)|transport|instrumentality|instrumentation +(noun)|conveyance of title|conveyancing|conveying|transfer|transference +(noun)|transportation|transfer|transferral|movement +conveyance of title|1 +(noun)|conveyance|conveyancing|conveying|transfer|transference +conveyancer|1 +(noun)|lawyer|attorney +conveyancing|1 +(noun)|conveyance|conveyance of title|conveying|transfer|transference +conveyed|1 +(adj)|sent +conveyer|2 +(noun)|conveyor|messenger|courier +(noun)|conveyer belt|conveyor belt|conveyor|transporter|belt +conveyer belt|1 +(noun)|conveyor belt|conveyer|conveyor|transporter|belt +conveying|1 +(noun)|conveyance|conveyance of title|conveyancing|transfer|transference +conveyor|2 +(noun)|conveyer|messenger|courier +(noun)|conveyer belt|conveyor belt|conveyer|transporter|belt +conveyor belt|1 +(noun)|conveyer belt|conveyer|conveyor|transporter|belt +convict|3 +(noun)|con|inmate|jailbird|gaolbird|prisoner|captive +(noun)|wrongdoer|offender +(verb)|pronounce|label|judge +convict fish|2 +(noun)|painted greenling|convictfish|Oxylebius pictus|greenling +(noun)| +convicted|1 +(adj)|condemned|guilty +convictfish|1 +(noun)|painted greenling|convict fish|Oxylebius pictus|greenling +conviction|2 +(noun)|strong belief|article of faith|belief +(noun)|judgment of conviction|condemnation|sentence|final judgment|final decision +convince|1 +(verb)|convert|win over|persuade +convinced|2 +(adj)|convinced +(adj)|positive|confident|certain +convincible|1 +(adj)|persuadable|persuasible|suasible|susceptible +convincing|2 +(adj)|convincing |credible|plausible|disenchanting|disillusioning|persuasive|persuasive +(adj)|conclusive +convincingness|1 +(noun)|persuasiveness|strength +convivial|1 +(adj)|good-time|sociable +conviviality|2 +(noun)|joviality|sociability|sociableness +(noun)|merrymaking|jollification|celebration|festivity +convocation|2 +(noun)|gathering|assemblage +(noun)|calling together|assembly|assemblage|gathering +convoke|1 +(verb)|convene|summon +convolute|3 +(adj)|coiled +(verb)|convolve|flex|bend|deform|twist|turn +(verb)|twist|twist around|pervert|sophisticate|denote|refer +convoluted|2 +(adj)|coiled +(adj)|Byzantine|intricate|involved|knotty|labyrinthine|tangled|tortuous|complex +convolution|3 +(noun)|whirl|swirl|vortex|round shape +(noun)|gyrus|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|change of shape +convolution of broca|1 +(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center|centre|nerve center|nerve centre +convolve|1 +(verb)|convolute|flex|bend|deform|twist|turn +convolvulaceae|1 +(noun)|Convolvulaceae|family Convolvulaceae|morning-glory family|dicot family|magnoliopsid family +convolvulus|1 +(noun)|vine +convolvulus arvensis|1 +(noun)|field bindweed|wild morning-glory|Convolvulus arvensis|bindweed +convolvulus scammonia|1 +(noun)|scammony|Convolvulus scammonia|convolvulus +convolvulus sepium|1 +(noun)|hedge bindweed|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed +convoy|4 +(noun)|procession +(noun)|collection|aggregation|accumulation|assemblage +(noun)|escort|accompaniment +(verb)|escort +convulse|6 +(verb)|amuse +(verb)|laugh|express joy|express mirth +(verb)|thresh|thresh about|thrash|thrash about|slash|toss|jactitate|shake|agitate +(verb)|shake|agitate +(verb)|compress|constrict|squeeze|compact|contract|press +(verb)|compress|constrict|squeeze|compact|contract|press +convulsion|4 +(noun)|paroxysm|fit|attack +(noun)|seizure|ictus|raptus +(noun)|turmoil|upheaval|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|trouble +convulsive|2 +(adj)|spasmodic|spastic|unsteady +(adj)|violent +convulsively|1 +(adv)|with convulsions +cony|3 +(noun)|hyrax|coney|dassie|das|placental|placental mammal|eutherian|eutherian mammal +(noun)|pika|mouse hare|rock rabbit|coney|lagomorph|gnawing mammal +(noun)|rabbit|coney|leporid|leporid mammal +conyza|1 +(noun)|Conyza|genus Conyza|asterid dicot genus +conyza canadensis|1 +(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed +coo|3 +(noun)|cry +(verb)|murmur +(verb)|utter|emit|let out|let loose +cooccur|1 +(verb)|coincide|co-occur|coexist|cooccur with +cooccur with|1 +(verb)|collocate with|construe with|co-occur with|go with|attach to|accompany|come with|go with +cooccurring|1 +(adj)|coincident|coincidental|coinciding|concurrent|simultaneous|synchronous |synchronal|synchronic +cooing|1 +(adj)|utter|emit|let out|let loose +cook|7 +(noun)|skilled worker|trained worker +(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator +(verb)|create from raw material|create from raw stuff +(verb)|fix|ready|make|prepare|create from raw material|create from raw stuff +(verb)|change integrity +(verb)|change|alter|modify +(verb)|fudge|manipulate|fake|falsify|wangle|misrepresent|cheat|chisel|cook up +cook out|1 +(verb)|barbecue|grill +cook strait|1 +(noun)|Cook Strait|strait|sound +cook up|2 +(verb)|concoct|cook|fix|ready|make|prepare +(verb)|fabricate|manufacture|make up|invent|think up|think of|dream up|hatch|concoct +cookbook|1 +(noun)|cookery book|reference book|reference|reference work|book of facts +cooke|2 +(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist +(noun)|Cooke|Jay Cooke|financier|moneyman +cooked|1 +(adj)|cooked |au gratin|baked|barbecued|grilled|boiled|poached|stewed|braised|broiled|grilled|burned|burnt|done|fried|deep-fried|hard-baked|hard-boiled|medium|overdone|parched|roast|roasted|seared|steamed|toasted|well-done|lyonnaise|saute|sauteed|soft-boiled +cooked-over|1 +(adj)|leftover|warmed-over|reheated|uneaten +cooker|1 +(noun)|cooking utensil|cookware +cookery|1 +(noun)|cooking|preparation|change of state +cookery book|1 +(noun)|cookbook|reference book|reference|reference work|book of facts +cookfire|1 +(noun)|fire +cookhouse|2 +(noun)|galley|ship's galley|caboose|kitchen +(noun)|shelter +cookie|3 +(noun)|cooky|biscuit|cake +(noun)|cooky|cook +(noun)|text|textual matter +cookie-cutter|1 +(adj)|same +cookie cutter|1 +(noun)|kitchen utensil +cookie jar|1 +(noun)|cooky jar|jar +cookie jar reserve|1 +(noun)|hidden reserve +cookie sheet|1 +(noun)|cooking utensil|cookware +cooking|1 +(noun)|cookery|preparation|change of state +cooking apple|1 +(noun)|apple +cooking chocolate|1 +(noun)|bitter chocolate|baking chocolate|chocolate +cooking oil|1 +(noun)|vegetable oil|oil +cooking pan|1 +(noun)|pan|cooking utensil|cookware +cooking stove|1 +(noun)|stove|kitchen stove|range|kitchen range|kitchen appliance +cooking utensil|1 +(noun)|cookware|kitchen utensil +cookout|1 +(noun)|picnic +cookstove|1 +(noun)|stove|kitchen stove|range|kitchen range|cooking stove +cookware|1 +(noun)|cooking utensil|kitchen utensil +cooky|2 +(noun)|cookie|cook +(noun)|cookie|biscuit|cake +cooky jar|1 +(noun)|cookie jar|jar +cool|11 +(adj)|cool |air-conditioned|air-cooled|chill|chilly|caller|precooled|water-cooled|cold +(adj)|coolheaded|nerveless|composed +(adj)|cool |cold +(adj)|cool |chilly|unfriendly|unresponsive|unagitated|cold|unemotional|unfriendly +(adj)|unqualified +(adj)|fashionable |stylish +(noun)|coldness|cold|low temperature +(noun)|aplomb|assuredness|poise|sang-froid|composure|calm|calmness|equanimity +(verb)|chill|cool down|change|alter|modify +(verb)|chill|cool down|change state|turn +(verb)|cool off|cool down|change +cool down|3 +(verb)|cool|chill|change|alter|modify +(verb)|cool|cool off|change +(verb)|cool|chill|change state|turn +cool it|1 +(verb)|calm|calm down|cool off|chill out|simmer down|settle down|change state|turn +cool jazz|1 +(noun)|jazz +cool off|3 +(verb)|calm|calm down|chill out|simmer down|settle down|cool it|change state|turn +(verb)|cool|cool down|change +(verb)|feel|experience +cool one's heels|1 +(verb)|kick one's heels|wait +coolant|1 +(noun)|fluid|agent +coolant system|1 +(noun)|cooling system|cooling +cooler|3 +(noun)|ice chest|refrigerator|icebox +(noun)|beverage|drink|drinkable|potable +(noun)|tank|cell|jail cell|prison cell +cooley's anaemia|1 +(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassaemia major|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia +cooley's anemia|1 +(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassaemia major|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia +coolheaded|1 +(adj)|cool|nerveless|composed +coolidge|1 +(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States|United States President|President|Chief Executive +coolie|1 +(noun)|cooly|Asian|Asiatic +cooling|2 +(noun)|chilling|temperature reduction|temperature change +(noun)|cooling system|mechanism +cooling system|2 +(noun)|engine cooling system|equipment +(noun)|cooling|mechanism +cooling tower|1 +(noun)|cooling system|cooling +coolly|1 +(adv)|nervelessly|nonchalantly +coolness|4 +(noun)|chilliness|coldness|cold|low temperature +(noun)|imperturbability|imperturbableness|calmness +(noun)|nervelessness|fearlessness +(noun)|coldness|frigidity|unemotionality|emotionlessness +coolwart|1 +(noun)|foamflower|false miterwort|false mitrewort|Tiarella cordifolia|herb|herbaceous plant +cooly|1 +(noun)|coolie|Asian|Asiatic +coon|3 +(noun)|rustic +(noun)|nigger|nigga|spade|jigaboo|nigra|Black|Black person|blackamoor|Negro|Negroid +(noun)|common raccoon|common racoon|ringtail|Procyon lotor|raccoon|racoon +coon bear|1 +(noun)|giant panda|panda|panda bear|Ailuropoda melanoleuca|procyonid +coon cat|2 +(noun)|coati|coati-mondi|coati-mundi|Nasua narica|procyonid +(noun)|bassarisk|cacomistle|cacomixle|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +coondog|1 +(noun)|coonhound +coonhound|1 +(noun)|hound|hound dog +coonskin|1 +(noun)|coonskin cap|cap +coonskin cap|1 +(noun)|coonskin|cap +coontie|1 +(noun)|Florida arrowroot|Seminole bread|Zamia pumila|zamia +coop|2 +(noun)|chicken coop|hencoop|henhouse|farm building +(noun)|cage|enclosure +coop in|1 +(verb)|coop up|confine +coop up|1 +(verb)|coop in|confine +cooper|5 +(noun)|Cooper|Peter Cooper|industrialist|philanthropist|altruist +(noun)|Cooper|Gary Cooper|Frank Cooper|actor|histrion|player|thespian|role player +(noun)|Cooper|James Fenimore Cooper|writer|author +(noun)|barrel maker|craftsman|artisan|journeyman|artificer +(verb)|make +cooper's hawk|1 +(noun)|Cooper's hawk|blue darter|Accipiter cooperii|hawk +cooper union|1 +(noun)|Cooper Union|Cooper Union for the Advancement of Science and Art|university +cooper union for the advancement of science and art|1 +(noun)|Cooper Union|Cooper Union for the Advancement of Science and Art|university +cooperate|1 +(verb)|collaborate|join forces|get together|work +cooperation|2 +(noun)|group action +(noun)|practice|pattern +cooperative|5 +(adj)|combined|concerted|conjunct|conjunctive|united|joint +(adj)|cooperative |collaborative|helpful|synergetic|synergistic|helpful +(adj)|accommodative|noncompetitive +(noun)|co-op|commercial enterprise +(noun)|association +cooperatively|1 +(adv)|hand in glove|hand and glove +cooperativeness|1 +(noun)|amenability|amenableness|tractability|tractableness|flexibility +cooperator|1 +(noun)|collaborator|partner|pardner|associate +cooperstown|1 +(noun)|Cooperstown|town +coordinate|6 +(adj)|equal +(noun)|co-ordinate|number +(verb)|organize|organise|arrange|set up +(verb)|manage|deal|care|handle +(verb)|meet|fit|conform to +(verb)|align|ordinate|adjust|set|correct +coordinate axis|1 +(noun)|axis +coordinate bond|1 +(noun)|dative bond|covalent bond +coordinate clause|1 +(noun)|clause +coordinate geometry|1 +(noun)|analytic geometry|analytical geometry|geometry +coordinate system|1 +(noun)|frame of reference|reference system|reference frame|arrangement|organization|organisation|system +coordinated|3 +(adj)|interconnected|unified|integrated +(adj)|adroit +(adj)|matching|matched +coordinated universal time|1 +(noun)|UTC|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1 +coordinating|1 +(adj)|coordinating |coordinative +coordinating conjunction|2 +(noun)|conjunction +(noun)|conjunction|conjunctive|connective +coordination|3 +(noun)|skillfulness +(noun)|regulation|regulating +(noun)|grammatical relation +coordination compound|1 +(noun)|complex|compound|chemical compound +coordinative|1 +(adj)|coordinating +coordinator|1 +(noun)|organizer|organiser|arranger +coosa|1 +(noun)|Coosa|Coosa River|river +coosa river|1 +(noun)|Coosa|Coosa River|river +coot|1 +(noun)|rail +cooter|1 +(noun)|river cooter|Pseudemys concinna|turtle +cootie|1 +(noun)|body louse|Pediculus corporis|louse|sucking louse +cop|3 +(noun)|bull|copper|fuzz|pig|policeman|police officer|officer +(verb)|hook|snitch|thieve|knock off|glom|steal +(verb)|collar|nail|apprehend|arrest|pick up|nab|seize|prehend|clutch +cop out|1 +(verb)|opt out|choose|prefer|opt +copacetic|1 +(adj)|copasetic|copesetic|copesettic|satisfactory +copaiba|1 +(noun)|copaiba balsam|balsam capivi|oleoresin +copaiba balsam|1 +(noun)|copaiba|balsam capivi|oleoresin +copal|1 +(noun)|natural resin +copaline|1 +(noun)|copalite|fossil copal|copal +copalite|1 +(noun)|copaline|fossil copal|copal +copartner|1 +(noun)|partner +copartnership|1 +(noun)|partnership +copasetic|1 +(adj)|copacetic|copesetic|copesettic|satisfactory +cope|2 +(noun)|header|coping|brick +(verb)|get by|make out|make do|contend|grapple|deal|manage|act|move +cope with|1 +(verb)|meet|match|cope|get by|make out|make do|contend|grapple|deal|manage +copeck|1 +(noun)|kopek|kopeck|Russian monetary unit +copehan|1 +(noun)|Copehan|Penutian +copenhagen|1 +(noun)|Copenhagen|Kobenhavn|Danish capital|national capital +copepod|1 +(noun)|copepod crustacean|crustacean +copepod crustacean|1 +(noun)|copepod|crustacean +copepoda|1 +(noun)|Copepoda|subclass Copepoda|class +copernican|2 +(adj)|Copernican|important |of import +(adj)|Copernican|heliocentric +copernican system|1 +(noun)|Copernican system|model|theoretical account|framework +copernicia|1 +(noun)|Copernicia|genus Copernicia|monocot genus|liliopsid genus +copernicia alba|1 +(noun)|caranday|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm +copernicia australis|1 +(noun)|caranday|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm +copernicia cerifera|1 +(noun)|carnauba|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm +copernicia prunifera|1 +(noun)|carnauba|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm +copernicus|2 +(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer|uranologist|stargazer +(noun)|Copernicus|lunar crater +copesetic|1 +(adj)|copacetic|copasetic|copesettic|satisfactory +copesettic|1 +(adj)|copacetic|copasetic|copesetic|satisfactory +copestone|2 +(noun)|finishing touch|capstone|touch +(noun)|capstone|coping stone|stretcher|stone +copied|1 +(adj)|traced|derived +copier|1 +(noun)|duplicator|apparatus|setup +copilot|1 +(noun)|pilot|airplane pilot +coping|1 +(noun)|header|cope|brick +coping saw|1 +(noun)|handsaw|carpenter's saw +coping stone|1 +(noun)|capstone|copestone|stretcher|stone +coping with|1 +(noun)|braving|confronting|grappling|tackling|attempt|effort|endeavor|endeavour|try +copious|2 +(adj)|extensive|voluminous|abundant +(adj)|ample|plenteous|plentiful|rich|abundant +copiously|1 +(adv)|abundantly|profusely|extravagantly +copiousness|1 +(noun)|abundance|teemingness|quantity +coplanar|1 +(adj)|planar |two-dimensional +copland|1 +(noun)|Copland|Aaron Copland|composer +copley|1 +(noun)|Copley|John Copley|John Singleton Copley|painter +copolymer|1 +(noun)|polymer +copolymerise|1 +(verb)|copolymerize|polymerize|polymerise +copolymerize|1 +(verb)|copolymerise|polymerize|polymerise +copout|1 +(noun)|failure +copper|6 +(noun)|Cu|atomic number 29|metallic element|metal|conductor +(noun)|penny|cent|centime +(noun)|bull|cop|fuzz|pig|policeman|police officer|officer +(noun)|copper color|reddish brown|sepia|burnt sienna|Venetian red +(noun)|lycaenid|lycaenid butterfly +(verb)|coat|surface +copper's nark|1 +(noun)|nark|informer|betrayer|rat|squealer|blabber +copper-base alloy|1 +(noun)|alloy|metal +copper-bottom|1 +(verb)|supply|provide|render|furnish +copper-bottomed|1 +(adj)|bottomed +copper beech|1 +(noun)|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech|beech tree +copper color|1 +(noun)|copper|reddish brown|sepia|burnt sienna|Venetian red +copper colored|1 +(adj)|coppery|chromatic +copper glance|1 +(noun)|chalcocite|mineral +copper mine|1 +(noun)|mine +copper nose|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|rhinopathy +copper oxide|1 +(noun)|oxide +copper pyrites|1 +(noun)|chalcopyrite|mineral +copper rockfish|1 +(noun)|Sebastodes caurinus|rockfish +copper sulfate|1 +(noun)|copper sulphate|cupric sulfate|cupric sulphate|sulfate|sulphate +copper sulphate|1 +(noun)|copper sulfate|cupric sulfate|cupric sulphate|sulfate|sulphate +copperhead|2 +(noun)|Agkistrodon contortrix|pit viper +(noun)|Denisonia superba|elapid|elapid snake +copperplate|3 +(noun)|longhand|running hand|cursive|cursive script +(noun)|print +(noun)|engraving +coppersmith|1 +(noun)|craftsman|artisan|journeyman|artificer +copperware|1 +(noun)|utensil +coppery|1 +(adj)|copper colored|chromatic +coppice|1 +(noun)|brush|brushwood|copse|thicket|vegetation|flora +coppola|1 +(noun)|Coppola|Francis Ford Coppola|film maker|filmmaker|film producer|movie maker +copra|1 +(noun)|coconut|coconut meat +copra oil|1 +(noun)|coconut oil|vegetable oil|oil +coprinaceae|1 +(noun)|Coprinaceae|family Coprinaceae|fungus family +coprinus|1 +(noun)|Coprinus|genus Coprinus|fungus genus +coprinus atramentarius|1 +(noun)|inky cap|inky-cap mushroom|Coprinus atramentarius|agaric +coprinus comatus|1 +(noun)|shaggymane|shaggy cap|shaggymane mushroom|Coprinus comatus|agaric +coprolalia|1 +(noun)|pathology +coprolith|1 +(noun)|fecalith|faecalith|stercolith|mass +coprophagia|1 +(noun)|coprophagy|eating|feeding +coprophagy|1 +(noun)|coprophagia|eating|feeding +copse|1 +(noun)|brush|brushwood|coppice|thicket|vegetation|flora +copt|2 +(noun)|Copt|Egyptian +(noun)|Copt|Christian +coptic|2 +(adj)|Coptic|Christian +(noun)|Coptic|Egyptian +coptic church|1 +(noun)|Coptic Church|church|Christian church +coptis|1 +(noun)|Coptis|genus Coptis|magnoliid dicot genus +coptis groenlandica|1 +(noun)|goldthread|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb|herbaceous plant +coptis trifolia groenlandica|1 +(noun)|goldthread|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb|herbaceous plant +copula|1 +(noun)|copulative|linking verb|verb +copular|1 +(adj)|verb +copulate|1 +(verb)|mate|pair|couple|join|conjoin +copulation|1 +(noun)|sexual intercourse|intercourse|sex act|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +copulative|2 +(adj)|connecting|conjunctive +(noun)|copula|linking verb|verb +copulative conjunction|1 +(noun)|conjunction +copulatory|1 +(adj)|coital|sexual activity|sexual practice|sex|sex activity +copy|8 +(noun)|transcript|written record|written account +(noun)|representation +(noun)|written matter|text|textual matter +(noun)|material +(verb)|write +(verb)|imitate|simulate|reproduce +(verb)|replicate|duplicate|reduplicate|double|repeat|replicate +(verb)|re-create|make|create +copy editing|1 +(noun)|editing|redaction +copy editor|1 +(noun)|copyreader|text editor|editor|editor in chief +copy out|1 +(verb)|copy +copybook|1 +(noun)|book +copycat|1 +(noun)|imitator|emulator|ape|aper|person|individual|someone|somebody|mortal|human|soul +copyedit|1 +(verb)|copyread|subedit|edit|redact +copyhold|1 +(noun)|tenure|land tenure +copyholder|1 +(noun)|mechanical device +copying|1 +(noun)|repetition|repeating +copyist|1 +(noun)|scribe|scrivener|employee +copyread|1 +(verb)|subedit|copyedit|edit|redact +copyreader|1 +(noun)|copy editor|text editor|editor|editor in chief +copyright|2 +(noun)|right of first publication|document|written document|papers|legal right +(verb)|procure|secure +copyright infringement|1 +(noun)|infringement of copyright|violation|infringement +copyrighted|1 +(adj)|proprietary +copywriter|1 +(noun)|employee +coq au vin|1 +(noun)|dish +coquet|1 +(verb)|chat up|flirt|dally|butterfly|coquette|romance|philander|mash|talk|speak +coquetry|1 +(noun)|flirt|flirting|flirtation|dalliance|toying|play|frolic|romp|gambol|caper +coquette|2 +(noun)|flirt|vamp|vamper|minx|tease|prickteaser|woman|adult female +(verb)|chat up|flirt|dally|butterfly|coquet|romance|philander|mash|talk|speak +coquettish|1 +(adj)|flirtatious|sexy +coquettishly|1 +(adv)|flirtatiously +coquilla nut|1 +(noun)|seed +coquille|2 +(noun)|dish +(noun)|dish +coquilles saint-jacques|1 +(noun)|coquilles Saint-Jacques|dish +cor anglais|1 +(noun)|English horn|double-reed instrument|double reed +cor pulmonale|1 +(noun)|hypertrophy +cora|1 +(noun)|Persephone|Despoina|Kore|Cora|Greek deity +coracan|1 +(noun)|finger millet|ragi|ragee|African millet|corakan|kurakkan|Eleusine coracana|millet +coracias|1 +(noun)|Coracias|genus Coracias|bird genus +coracias garrulus|1 +(noun)|European roller|Coracias garrulus|roller +coraciidae|1 +(noun)|Coraciidae|family Coraciidae|bird family +coraciiform bird|1 +(noun)|bird +coraciiformes|1 +(noun)|Coraciiformes|order Coraciiformes|animal order +coracle|1 +(noun)|small boat +coragyps|1 +(noun)|Coragyps|genus Coragyps|bird genus +coragyps atratus|1 +(noun)|black vulture|carrion crow|Coragyps atratus|New World vulture|cathartid +corakan|1 +(noun)|finger millet|ragi|ragee|African millet|coracan|kurakkan|Eleusine coracana|millet +coral|5 +(adj)|chromatic +(noun)|pink +(noun)|red coral|precious coral|opaque gem +(noun)|roe|hard roe +(noun)|anthozoan|actinozoan +coral-root bittercress|1 +(noun)|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +coral-wood|2 +(noun)|coralwood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree +(noun)| +coral bean|1 +(noun)|mescal bean|frijolito|frijolillo|Sophora secundiflora|tree +coral bean tree|1 +(noun)|Erythrina corallodendrum|coral tree|erythrina +coral bush|1 +(noun)|flame bush|Templetonia retusa|shrub|bush +coral drops|1 +(noun)|Bessera elegans|flower +coral fungus|1 +(noun)|fungus +coral gem|1 +(noun)|Lotus berthelotii|subshrub|suffrutex +coral honeysuckle|1 +(noun)|trumpet honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle +coral necklace|1 +(noun)|Illecebrum verticullatum|herb|herbaceous plant +coral pea|1 +(noun)|vine +coral reef|1 +(noun)|reef +coral root|2 +(noun)|orchid|orchidaceous plant +(noun)|coral-root bittercress|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +coral sea|2 +(noun)|Coral Sea|sea +(noun)|Coral Sea|battle of the Coral Sea|naval battle +coral snake|2 +(noun)|Old World coral snake|elapid|elapid snake +(noun)|harlequin-snake|New World coral snake|elapid|elapid snake +coral tree|1 +(noun)|erythrina|tree +coral vine|1 +(noun)|Kennedia coccinea|coral pea +coralbells|1 +(noun)|Heuchera sanguinea|alumroot|alumbloom +coralberry|2 +(noun)|Indian currant|Symphoricarpos orbiculatus|shrub|bush +(noun)|spiceberry|Ardisia crenata|shrub|bush +corallorhiza|1 +(noun)|Corallorhiza|genus Corallorhiza|monocot genus|liliopsid genus +corallorhiza maculata|1 +(noun)|spotted coral root|Corallorhiza maculata|coral root +corallorhiza striata|1 +(noun)|striped coral root|Corallorhiza striata|coral root +corallorhiza trifida|1 +(noun)|early coral root|pale coral root|Corallorhiza trifida|coral root +coralroot|1 +(noun)|coral-root bittercress|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +coralwood|1 +(noun)|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree +coralwort|1 +(noun)|coral-root bittercress|coralroot|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +corbel|2 +(noun)|truss|bracket +(verb)|supply|provide|render|furnish +corbel arch|1 +(noun)|arch +corbel step|1 +(noun)|corbie-step|corbiestep|crow step|step|stair +corbelled|1 +(adj)|supply|provide|render|furnish +corbett|1 +(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter|gladiator +corbie-step|2 +(noun)|corbel step|corbiestep|crow step|step|stair +(noun)| +corbie gable|1 +(noun)|gable|gable end|gable wall +corbiestep|1 +(noun)|corbel step|corbie-step|crow step|step|stair +corbina|1 +(noun)|Menticirrhus undulatus|whiting +corchorus|2 +(noun)|subshrub|suffrutex +(noun)|Corchorus|genus Corchorus|dilleniid dicot genus +cord|6 +(noun)|line +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|electric cord|conductor +(noun)|corduroy|fabric|cloth|material|textile +(verb)|stack|pile|heap +(verb)|tie|bind +cord grass|2 +(noun)|cordgrass|grass +(noun)| +cordage|2 +(noun)|measure|quantity|amount +(noun)|rope +cordaitaceae|1 +(noun)|Cordaitaceae|family Cordaitaceae|gymnosperm family +cordaitales|1 +(noun)|Cordaitales|order Cordaitales|plant order +cordaites|1 +(noun)|Cordaites|genus Cordaites|gymnosperm genus +cordarone|1 +(noun)|amiodarone|Cordarone|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +cordate|1 +(adj)|heart-shaped|cordiform|simple |unsubdivided +cordate leaf|1 +(noun)|simple leaf +corday|1 +(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist|revolutionary|subversive|subverter +corded|1 +(adj)|twilled|rough |unsmooth +cordell hull|1 +(noun)|Hull|Cordell Hull|diplomat|diplomatist +cordgrass|1 +(noun)|cord grass|grass +cordia|1 +(noun)|Cordia|genus Cordia|dicot genus|magnoliopsid genus +cordia alliodora|1 +(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree|flowering tree +cordia gerascanthus|1 +(noun)|princewood|Spanish elm|Cordia gerascanthus|tree +cordial|4 +(adj)|affable|amiable|genial|friendly +(adj)|hearty|warm +(adj)|fervent|sincere +(noun)|liqueur|alcohol|alcoholic beverage|intoxicant|inebriant +cordial reception|1 +(noun)|hospitality|welcome +cordiality|1 +(noun)|amity|friendliness +cordially|1 +(adv)|heartily|warmly +cordierite|1 +(noun)|mineral +cordiform|1 +(adj)|cordate|heart-shaped|simple |unsubdivided +cordite|1 +(noun)|explosive compound +corditis|1 +(noun)|inflammation|redness|rubor +cordless|1 +(adj)|conductor +cordoba|4 +(noun)|Nicaraguan monetary unit +(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer|adventurer +(noun)|Cordoba|Cordova|city|metropolis|urban center +(noun)|Cordoba|Cordova|city|metropolis|urban center +cordon|2 +(noun)|insignia +(noun)|adornment +cordon bleu|2 +(noun)|chef +(noun)|blue ribbon|badge +cordon off|1 +(verb)|rope in|rope off|enclose|inclose|shut in +cordova|3 +(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer|adventurer +(noun)|Cordoba|Cordova|city|metropolis|urban center +(noun)|Cordoba|Cordova|city|metropolis|urban center +cordovan|1 +(noun)|leather +cords|5 +(noun)|corduroys|trousers|pants +(noun)|cord|line +(noun)|cord|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|cord|electric cord|conductor +(noun)|cord|corduroy|fabric|cloth|material|textile +corduroy|3 +(noun)|cord|fabric|cloth|material|textile +(noun)|road|route +(verb)|construct|build|make +corduroys|3 +(noun)|cords|trousers|pants +(noun)|cord|corduroy|fabric|cloth|material|textile +(noun)|corduroy|road|route +cordwood|1 +(noun)|firewood +cordylidae|1 +(noun)|Cordylidae|family Cordylidae|reptile genus +cordyline|1 +(noun)|Cordyline|genus Cordyline|liliid monocot genus +cordyline australis|1 +(noun)|cabbage tree|grass tree|Cordyline australis|tree +cordyline terminalis|1 +(noun)|ti|Cordyline terminalis|shrub|bush +cordylus|1 +(noun)|Cordylus|genus Cordylus|reptile genus +core|10 +(noun)|center|centre|midpoint +(noun)|nucleus|core group|set +(noun)|center|centre|midpoint +(noun)|kernel|substance|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|sample +(noun)|Congress of Racial Equality|CORE|nongovernmental organization|NGO +(noun)|effect|essence|burden|gist|meaning|significance|signification|import +(noun)|chamber +(noun)|bar +(verb)|hollow|hollow out|core out +core bit|1 +(noun)|drilling bit|drill bit +core dump|1 +(noun)|dump +core group|1 +(noun)|core|nucleus|set +core out|1 +(verb)|hollow|hollow out|empty +coreference|1 +(noun)|grammatical relation +coreferential|1 +(adj)|grammatical relation +coregonidae|1 +(noun)|Coregonidae|family Coregonidae|fish family +coregonus|1 +(noun)|Coregonus|genus Coregonus|fish genus +coregonus artedi|1 +(noun)|cisco|lake herring|Coregonus artedi|whitefish +coregonus clupeaformis|1 +(noun)|lake whitefish|Coregonus clupeaformis|whitefish +coreid|1 +(noun)|coreid bug|hemipterous insect|bug|hemipteran|hemipteron +coreid bug|1 +(noun)|coreid|hemipterous insect|bug|hemipteran|hemipteron +coreidae|1 +(noun)|Coreidae|family Coreidae|arthropod family +coreligionist|1 +(noun)|religionist|religious person +coreopsis|1 +(noun)|tickseed|tickweed|tick-weed|herb|herbaceous plant +coreopsis gigantea|1 +(noun)|giant coreopsis|Coreopsis gigantea|coreopsis|tickseed|tickweed|tick-weed +coreopsis maritima|1 +(noun)|sea dahlia|Coreopsis maritima|coreopsis|tickseed|tickweed|tick-weed +coreopsis tinctoria|1 +(noun)|calliopsis|Coreopsis tinctoria|coreopsis|tickseed|tickweed|tick-weed +corer|1 +(noun)|device +corespondent|1 +(noun)|co-respondent|codefendant|co-defendant +corgard|1 +(noun)|nadolol|Corgard|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +corgi|1 +(noun)|Welsh corgi|dog|domestic dog|Canis familiaris +coriaceous|1 +(adj)|leathered|leatherlike|leathery|tough +coriander|3 +(noun)|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb|herbaceous plant +(noun)|coriander seed|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|Chinese parsley|cilantro|herb +coriander plant|1 +(noun)|coriander|Chinese parsley|cilantro|Coriandrum sativum|herb|herbaceous plant +coriander seed|1 +(noun)|coriander|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +coriandrum|1 +(noun)|Coriandrum|genus Coriandrum|rosid dicot genus +coriandrum sativum|1 +(noun)|coriander|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb|herbaceous plant +coricidin|1 +(noun)|chlorpheniramine maleate|Coricidin|Chlor-Trimeton|antihistamine +corinth|1 +(noun)|Corinth|Korinthos|city|metropolis|urban center|port +corinthian|4 +(adj)|corinthian |composite +(adj)|city|metropolis|urban center|port +(noun)|playboy|man-about-town|Corinthian|hedonist|pleasure seeker +(noun)|Corinthian|Greek|Hellene +corinthian order|1 +(noun)|Corinthian order|order +coriolis effect|1 +(noun)|Coriolis effect|consequence|effect|outcome|result|event|issue|upshot +coriolis force|1 +(noun)|Coriolis force|force +corium|1 +(noun)|dermis|derma|stratum +corixa|1 +(noun)|Corixa|genus Corixa|arthropod genus +corixidae|1 +(noun)|Corixidae|family Corixidae|arthropod family +cork|7 +(noun)|bark|plant material +(noun)|phellem|bark +(noun)|Cork|city|metropolis|urban center|port|Ireland|Eire|Irish Free State +(noun)|plug|stopper|stopple +(noun)|bob|bobber|bobfloat|float +(verb)|cork up|plug|stop up|secure +(verb)|stuff +cork jacket|1 +(noun)|life jacket|life vest|life preserver|preserver|flotation device +cork oak|1 +(noun)|Quercus suber|oak|oak tree +cork tree|2 +(noun)|Phellodendron amurense|tree +(noun)|Erythrina vespertilio|coral tree|erythrina +cork up|1 +(verb)|cork|plug|stop up|secure +corkage|1 +(noun)|service charge|service fee +corked|2 +(adj)|sealed +(adj)|corky|bad +corker|2 +(noun)|message|content|subject matter|substance +(noun)|machine +corking|1 +(adj)|bang-up|bully|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +corkscrew|2 +(noun)|bottle screw|bottle opener +(verb)|spiral|turn +corkscrew flower|1 +(noun)|snailflower|snail-flower|snail flower|snail bean|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +corkwood|1 +(noun)|corkwood tree|Leitneria floridana|shrub|bush +corkwood family|1 +(noun)|Leitneriaceae|family Leitneriaceae|dicot family|magnoliopsid family +corkwood tree|1 +(noun)|corkwood|Leitneria floridana|shrub|bush +corky|1 +(adj)|corked|bad +corm|1 +(noun)|stalk|stem +cormorant|1 +(noun)|Phalacrocorax carbo|pelecaniform seabird +cormose|1 +(adj)|cormous|stalk|stem +cormous|1 +(adj)|cormose|stalk|stem +cormous plant|1 +(noun)|vascular plant|tracheophyte +corn|9 +(noun)|maize|Indian corn|Zea mays|cereal|cereal grass +(noun)|kernel +(noun)|edible corn|grain|food grain|cereal +(noun)|clavus|callosity|callus +(noun)|wheat|cereal|cereal grass +(noun)|corn whiskey|corn whisky|whiskey|whisky +(noun)|mawkishness|sentimentality|drippiness +(verb)|feed|give +(verb)|preserve|keep +corn-fed|2 +(adj)|nourished +(adj)|provincial +corn beef|1 +(noun)|bully beef|corned beef|beef|boeuf +corn belt|1 +(noun)|Corn Belt|belt +corn borer|2 +(noun)|Pyrausta nubilalis|caterpillar +(noun)|European corn borer|corn borer moth|Pyrausta nubilalis|pyralid|pyralid moth +corn borer moth|1 +(noun)|corn borer|European corn borer|Pyrausta nubilalis|pyralid|pyralid moth +corn cake|1 +(noun)|cornbread +corn campion|1 +(noun)|corn cockle|crown-of-the-field|Agrostemma githago|weed +corn chamomile|1 +(noun)|field chamomile|corn mayweed|Anthemis arvensis|composite|composite plant +corn chip|1 +(noun)|snack food +corn chowder|1 +(noun)|chowder +corn cockle|1 +(noun)|corn campion|crown-of-the-field|Agrostemma githago|weed +corn dab|1 +(noun)|corn dodger|dodger|cornbread +corn dance|1 +(noun)|rain dance +corn dodger|1 +(noun)|corn dab|dodger|cornbread +corn earworm|1 +(noun)|cotton bollworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm +corn exchange|1 +(noun)|exchange +corn field|2 +(noun)|cornfield|grainfield|grain field +(noun)| +corn flake|1 +(noun)|cold cereal|dry cereal +corn fritter|1 +(noun)|fritter +corn gluten|1 +(noun)|gluten +corn gluten feed|1 +(noun)|feed|provender +corn lily|1 +(noun)|iridaceous plant +corn liquor|1 +(noun)|moonshine|bootleg|corn whiskey|corn whisky|corn +corn marigold|1 +(noun)|field marigold|Chrysanthemum segetum|chrysanthemum +corn mayweed|2 +(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +(noun)|corn chamomile|field chamomile|Anthemis arvensis|composite|composite plant +corn mint|1 +(noun)|field mint|Mentha arvensis|mint +corn muffin|1 +(noun)|muffin|gem +corn oil|1 +(noun)|vegetable oil|oil +corn poppy|1 +(noun)|field poppy|Flanders poppy|Papaver rhoeas|poppy +corn pudding|1 +(noun)|pudding +corn salad|1 +(noun)|herb|herbaceous plant +corn smut|2 +(noun)|cornsmut|smut|smut fungus +(noun)| +corn snake|1 +(noun)|red rat snake|Elaphe guttata|rat snake +corn snow|1 +(noun)|snow +corn speedwell|1 +(noun)|Veronica arvensis|veronica|speedwell +corn spurrey|1 +(noun)|corn spurry|Spergula arvensis|weed +corn spurry|1 +(noun)|corn spurrey|Spergula arvensis|weed +corn sugar|2 +(noun)|glucose +(noun)|sugar|refined sugar +corn syrup|1 +(noun)|syrup|sirup +corn tash|1 +(noun)|ashcake|ash cake|cornbread +corn whiskey|1 +(noun)|corn whisky|corn|whiskey|whisky +corn whisky|1 +(noun)|corn whiskey|corn|whiskey|whisky +cornaceae|1 +(noun)|Cornaceae|family Cornaceae|dogwood family|rosid dicot family +cornbread|1 +(noun)|quick bread +corncob|1 +(noun)|core +corncrake|1 +(noun)|land rail|Crex crex|crake +cornea|1 +(noun)|membrane|tissue layer +corneal|1 +(adj)|membrane|tissue layer +corneal graft|1 +(noun)|keratoplasty|corneal transplant|plastic surgery|reconstructive surgery|anaplasty|transplant|transplantation|organ transplant +corneal transplant|1 +(noun)|keratoplasty|corneal graft|plastic surgery|reconstructive surgery|anaplasty|transplant|transplantation|organ transplant +corned|1 +(adj)|cured|preserved +corned beef|1 +(noun)|bully beef|corn beef|beef|boeuf +corned beef hash|1 +(noun)|hash +corneille|1 +(noun)|Corneille|Pierre Corneille|dramatist|playwright|poet +cornel|1 +(noun)|dogwood|dogwood tree|angiospermous tree|flowering tree +cornelia otis skinner|1 +(noun)|Skinner|Cornelia Otis Skinner|actress +cornelian|1 +(noun)|carnelian|chalcedony|calcedony +cornelian cherry|1 +(noun)|Cornus mas|dogwood|dogwood tree|cornel +cornelis jansen|1 +(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian|theologist|theologizer|theologiser +cornelius jansenius|1 +(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian|theologist|theologizer|theologiser +cornelius vanderbilt|1 +(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier|moneyman|philanthropist|altruist +cornell|2 +(noun)|Cornell|Katherine Cornell|actress +(noun)|Cornell|Ezra Cornell|businessman|man of affairs|philanthropist|altruist +cornell university|1 +(noun)|Cornell University|university +corneous|1 +(adj)|hornlike|horny|hard +corner|14 +(noun)|area|country +(noun)|point +(noun)|nook|area +(noun)|street corner|turning point|intersection|crossroad|crossway|crossing|carrefour +(noun)|point +(noun)|recess|recession|niche|concave shape|concavity|incurvation|incurvature +(noun)|monopoly +(noun)|box|predicament|quandary|plight +(noun)|part|piece +(noun)|area|country +(noun)|quoin|structure|construction +(verb)|control|command +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(verb)|turn +corner kick|1 +(noun)|free kick +corner man|1 +(noun)|end man|minstrel +corner pocket|1 +(noun)|pocket +corner post|1 +(noun)|post +cornerback|1 +(noun)|football player|footballer +cornered|1 +(adj)|at bay|trapped|treed|unfree +cornerstone|3 +(noun)|basis|base|foundation|fundament|groundwork|assumption|supposition|supposal +(noun)|stone +(noun)|stone +cornet|1 +(noun)|horn|trumpet|trump|brass +cornetfish|1 +(noun)|teleost fish|teleost|teleostan +cornetist|1 +(noun)|trumpeter|musician|instrumentalist|player +corneum|1 +(noun)|stratum corneum|horny layer|stratum +cornfield|1 +(noun)|corn field|grainfield|grain field +cornflour|1 +(noun)|cornstarch|starch|amylum +cornflower|2 +(noun)|strawflower|Uvularia grandiflora|bellwort|merry bells|wild oats +(noun)|bachelor's button|bluebottle|Centaurea cyanus|flower +cornflower aster|1 +(noun)|stokes' aster|Stokesia laevis|flower +cornhusk|1 +(noun)|husk +cornhusker|2 +(noun)|worker +(noun)|Nebraskan|Cornhusker|American +cornhusker state|1 +(noun)|Nebraska|Cornhusker State|NE|American state +cornhusking|2 +(noun)|husking bee|bee +(noun)|denudation|stripping|uncovering|baring|husking +cornice|4 +(noun)|valance|valance board|pelmet|framework|frame|framing +(noun)|molding|moulding +(noun)|projection +(verb)|supply|provide|render|furnish +cornish|2 +(noun)|Cornish|Brythonic|Brittanic +(noun)|Cornish|domestic fowl|fowl|poultry +cornish heath|1 +(noun)|Cornish heath|Erica vagans|erica|true heath +cornish pasty|1 +(noun)|Cornish pasty|pasty +cornishman|1 +(noun)|Cornishman|Englishman +cornishwoman|1 +(noun)|Cornishwoman|Englishwoman +cornmeal|1 +(noun)|Indian meal|meal +cornmeal mush|1 +(noun)|mush|hot cereal +cornpone|1 +(noun)|pone|cornbread +cornsmut|1 +(noun)|corn smut|smut|smut fungus +cornstarch|1 +(noun)|cornflour|starch|amylum +cornu|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +cornucopia|1 +(noun)|profusion|profuseness|richness|abundance|copiousness|teemingness +cornus|2 +(noun)|Cornus|genus Cornus|rosid dicot genus +(noun)|cornu|structure|anatomical structure|complex body part|bodily structure|body structure +cornus amomum|1 +(noun)|silky cornel|silky dogwood|Cornus amomum|dogwood|dogwood tree|cornel +cornus canadensis|1 +(noun)|bunchberry|dwarf cornel|crackerberry|pudding berry|Cornus canadensis|dogwood|dogwood tree|cornel +cornus florida|1 +(noun)|common white dogwood|eastern flowering dogwood|Cornus florida|dogwood|dogwood tree|cornel +cornus mas|1 +(noun)|cornelian cherry|Cornus mas|dogwood|dogwood tree|cornel +cornus obliqua|1 +(noun)|silky dogwood|Cornus obliqua|dogwood|dogwood tree|cornel +cornus sanguinea|1 +(noun)|common European dogwood|red dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood|dogwood tree|cornel +cornus stolonifera|1 +(noun)|red osier|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood|dogwood tree|cornel +cornwall|1 +(noun)|Cornwall|county +cornwallis|1 +(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer|general|full general +corny|1 +(adj)|bromidic|platitudinal|platitudinous|unoriginal +corokia|1 +(noun)|Corokia|genus Corokia|rosid dicot genus +corolla|1 +(noun)|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +corollary|2 +(noun)|consequence|aftermath +(noun)|inference|illation +corona|6 +(noun)|aureole|radiance|glow|glowing +(noun)|plant part|plant structure +(noun)|corona discharge|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +(noun)|light|visible light|visible radiation +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|cigar +corona borealis|1 +(noun)|Corona Borealis|constellation +corona discharge|1 +(noun)|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +coronach|1 +(noun)|dirge|lament|requiem|threnody|song +coronal|1 +(noun)|wreath|garland|chaplet|lei|flower arrangement +coronal suture|1 +(noun)|sutura coronalis|suture|sutura|fibrous joint +coronary|2 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|coronary thrombosis|thrombosis +coronary-artery disease|2 +(noun)|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|sclerosis|induration +(noun)|atherosclerosis|coronary artery disease|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries +coronary artery|1 +(noun)|arteria coronaria|artery|arteria|arterial blood vessel +coronary artery bypass graft|1 +(noun)|coronary bypass|coronary bypass surgery|CABG|open-heart surgery +coronary artery disease|1 +(noun)|atherosclerosis|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease +coronary bypass|1 +(noun)|coronary bypass surgery|coronary artery bypass graft|CABG|open-heart surgery +coronary bypass surgery|1 +(noun)|coronary bypass|coronary artery bypass graft|CABG|open-heart surgery +coronary care unit|1 +(noun)|intensive care unit|ICU +coronary failure|1 +(noun)|heart failure|heart disease|heart condition|cardiopathy|failure +coronary insufficiency|1 +(noun)|cardiac insufficiency|insufficiency +coronary occlusion|1 +(noun)|occlusion +coronary sinus|1 +(noun)|sinus coronarius|venous sinus|sinus +coronary thrombosis|1 +(noun)|coronary|thrombosis +coronate|1 +(verb)|crown|invest|vest|enthrone +coronation|1 +(noun)|enthronement|enthronization|enthronisation|investiture|initiation|induction|installation +coroner|1 +(noun)|medical examiner|investigator +coronet|2 +(noun)|crown|diadem +(noun)|animal tissue +coroneted|1 +(adj)|highborn|titled|noble +coronilla|1 +(noun)|shrub|bush +coronilla varia|1 +(noun)|axseed|crown vetch|Coronilla varia|coronilla +coronion|1 +(noun)|craniometric point +coronoid process|1 +(noun)|processus coronoideus|process|outgrowth|appendage +coronoid process of the mandible|1 +(noun)|coronoid process|processus coronoideus +coropuna|1 +(noun)|Coropuna|mountain peak +corot|1 +(noun)|Corot|Jean Baptiste Camille Corot|painter +corozo|1 +(noun)|corozo palm|palm|palm tree +corozo palm|1 +(noun)|corozo|palm|palm tree +corp|1 +(noun)|corporation|firm|house|business firm +corporal|3 +(adj)|bodily|corporeal|somatic|physical +(adj)|bodied|corporate|embodied|incarnate|corporeal |material +(noun)|noncommissioned officer|noncom +corporal punishment|1 +(noun)|punishment|penalty|penalization|penalisation +corporate|4 +(adj)|firm|house|business firm +(adj)|bodied|corporal|embodied|incarnate|corporeal |material +(adj)|collective|joint +(adj)|incorporated|organized +corporate bond|1 +(noun)|bond|bond certificate +corporate executive|1 +(noun)|business executive|executive|executive director +corporate finance|1 +(noun)|finance +corporate investor|1 +(noun)|company +corporate trust|1 +(noun)|trust|combine|cartel|consortium|pool|syndicate +corporation|2 +(noun)|corp|firm|house|business firm +(noun)|pot|potbelly|bay window|tummy|belly|paunch +corporation law|1 +(noun)|jurisprudence|law|legal philosophy +corporeal|2 +(adj)|corporeal |material|bodily|bodied|corporal|corporate|embodied|incarnate|reincarnate|bodied +(adj)|bodily|corporal|somatic|physical +corporeality|1 +(noun)|materiality|physicalness|quality +corposant|1 +(noun)|corona discharge|corona|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +corps|3 +(noun)|army unit +(noun)|body +(noun)|corporation|corp|firm|house|business firm +corps de ballet|1 +(noun)|ensemble|chorus|chorus line +corps diplomatique|1 +(noun)|diplomatic service|diplomatic corps|corps +corpse|1 +(noun)|cadaver|stiff|clay|remains|body|dead body +corpulence|1 +(noun)|overweight|stoutness|adiposis|fleshiness|obesity +corpulent|1 +(adj)|obese|weighty|rotund|fat +corpus|3 +(noun)|principal|principal sum|capital +(noun)|collection|aggregation|accumulation|assemblage +(noun)|part|piece +corpus amygdaloideum|1 +(noun)|amygdala|amygdaloid nucleus|basal ganglion +corpus callosum|1 +(noun)|nerve pathway|tract|nerve tract|pathway +corpus christi|2 +(noun)|Corpus Christi|Christian holy day +(noun)|Corpus Christi|city|metropolis|urban center +corpus delicti|1 +(noun)|evidence +corpus geniculatum laterale|1 +(noun)|lateral geniculate body|geniculate body +corpus geniculatum mediale|1 +(noun)|medial geniculate body|geniculate body +corpus luteum|1 +(noun)|endocrine gland|endocrine|ductless gland +corpus mamillare|1 +(noun)|mamillary body|mammillary body|neural structure +corpus sternum|1 +(noun)|gladiolus|bone|os +corpus striatum|1 +(noun)|striatum|striate body|basal ganglion +corpuscle|2 +(noun)|atom|molecule|particle|mote|speck|material|stuff +(noun)|blood cell|blood corpuscle|somatic cell|vegetative cell +corpuscular|1 +(adj)|somatic cell|vegetative cell +corpuscular-radiation pressure|1 +(noun)|radiation pressure|pressure|pressure level|force per unit area +corpuscular radiation|1 +(noun)|particulate radiation|radiation|radioactivity +corpuscular theory|1 +(noun)|corpuscular theory of light|scientific theory +corpuscular theory of light|1 +(noun)|corpuscular theory|scientific theory +corrade|1 +(verb)|abrade|abrase|rub down|rub off|wear away|wear off +corral|4 +(noun)|cow pen|cattle pen|pen +(verb)|enclose|inclose|shut in +(verb)|arrange|set up +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +corrasion|1 +(noun)|abrasion|attrition|detrition|erosion|eroding|eating away|wearing|wearing away +correct|12 +(adj)|correct |accurate|exact|precise|letter-perfect|word-perfect|straight|accurate|proper|true +(adj)|right|proper +(adj)|right|proper +(adj)|right |right-minded +(verb)|rectify|right|change by reversal|turn|reverse +(verb)|right|compensate|redress|change|alter|modify +(verb)|chastise|castigate|objurgate|chasten|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +(verb)|compensate|counterbalance|even out|even off|even up|balance|equilibrate|equilibrize|equilibrise +(verb)|discipline|sort out|punish|penalize|penalise +(verb)|decline|slump|descend|fall|go down|come down +(verb)|adjust|set|change|alter|modify +(verb)|treat|care for +correctable|2 +(adj)|reversible +(adj)|amendable|corrigible +corrected|2 +(adj)|corrected |aplanatic|apochromatic|rectified +(adj)|chastised|disciplined|punished +correction|7 +(noun)|rectification|improvement +(noun)|fudge factor|indefinite quantity +(noun)|editing|redaction +(noun)|chastening|chastisement|rebuke|reproof|reproval|reprehension|reprimand +(noun)|drop|dip|fall|free fall +(noun)|discipline|punishment|penalty|penalization|penalisation +(noun)|therapy +correctional|1 +(adj)|punitive |punitory +correctional institution|1 +(noun)|penal institution|penal facility +correctional rehabilitation|1 +(noun)|rehabilitation +corrections|9 +(noun)|department of corrections|local department|department of local government +(noun)|social control +(noun)|correction|rectification|improvement +(noun)|correction|fudge factor|indefinite quantity +(noun)|correction|editing|redaction +(noun)|correction|chastening|chastisement|rebuke|reproof|reproval|reprehension|reprimand +(noun)|correction|drop|dip|fall|free fall +(noun)|discipline|correction|punishment|penalty|penalization|penalisation +(noun)|correction|therapy +correctitude|1 +(noun)|propriety|properness|demeanor|demeanour|behavior|behaviour|conduct|deportment +corrective|3 +(adj)|disciplinary|disciplinal|nonindulgent +(adj)|bettering +(noun)|restorative|device +correctly|1 +(adv)|right|aright +correctness|2 +(noun)|rightness|quality +(noun)|propriety|properness|correctitude +correggio|1 +(noun)|Correggio|Antonio Allegri da Correggio|old master +corregidor|1 +(noun)|Bataan|Corregidor|siege|besieging|beleaguering|military blockade +correlate|4 +(adj)|correlative|correlated|related |related to +(noun)|correlative|variable|variable quantity +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|associate|tie in|relate|link|colligate|link up|connect +correlated|1 +(adj)|correlative|correlate|related |related to +correlation|3 +(noun)|correlativity|reciprocality|reciprocity +(noun)|correlation coefficient|coefficient of correlation|parametric statistic +(noun)|correlational statistics|statistics +correlation coefficient|1 +(noun)|coefficient of correlation|correlation|parametric statistic +correlation matrix|1 +(noun)|matrix +correlation table|1 +(noun)|table|tabular array +correlational|1 +(adj)|reciprocality|reciprocity +correlational analysis|1 +(noun)|multivariate analysis +correlational statistics|1 +(noun)|correlation|statistics +correlative|3 +(adj)|correlate|correlated|related |related to +(adj)|reciprocal |mutual +(noun)|correlate|variable|variable quantity +correlativity|1 +(noun)|correlation|reciprocality|reciprocity +correspond|3 +(verb)|match|fit|check|jibe|gibe|tally|agree|equal|be +(verb)|equate|equal|be +(verb)|represent|stand for|equal|be +correspondence|7 +(noun)|written communication|written language +(noun)|agreement|compatibility +(noun)|commensurateness|proportionateness|proportion|proportionality +(noun)|mapping|map|function|mathematical function +(noun)|first class|1st class|first-class mail|1st-class mail|priority mail +(noun)|symmetry|symmetricalness|balance|spatial property|spatiality +(noun)|parallelism|similarity +correspondence course|1 +(noun)|course|course of study|course of instruction|class +correspondence school|1 +(noun)|school +correspondent|3 +(adj)|analogous|similar +(noun)|letter writer|communicator +(noun)|newspaperman|newspaperwoman|newswriter|pressman|journalist +corresponding|4 +(adj)|related |related to +(adj)|similar +(adj)|comparable|like|same +(adj)|proportionate|in proportion to|commensurate +corrida|1 +(noun)|bullfight|spectacle +corridor|1 +(noun)|passageway +corrie|1 +(noun)|cirque|cwm|basin +corrigenda|2 +(noun)|list|listing +(noun)|corrigendum|error|mistake +corrigendum|1 +(noun)|error|mistake +corrigible|1 +(adj)|corrigible |amendable|correctable|improvable|redeemable|reformable +corroborant|1 +(adj)|invigorating +corroborate|3 +(verb)|confirm|sustain|substantiate|support|affirm +(verb)|validate|confirm|reassert +(verb)|underpin|bear out|support|match|fit|correspond|check|jibe|gibe|tally|agree +corroborated|1 +(adj)|substantiated|verified|supported +corroborating evidence|1 +(noun)|evidence +corroboration|1 +(noun)|documentation|certification|confirmation +corroborative|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +corroboratory|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive +corrode|2 +(verb)|eat|rust|damage +(verb)|rust|decay|crumble|delapidate +corroded|1 +(adj)|unsound +corrodentia|1 +(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order +corroding|1 +(noun)|corrosion|erosion|chemical process|chemical change|chemical action +corrosion|2 +(noun)|deterioration|impairment +(noun)|corroding|erosion|chemical process|chemical change|chemical action +corrosive|2 +(adj)|caustic|erosive|vitriolic|destructive +(noun)|compound|chemical compound +corrosive sublimate|1 +(noun)|mercuric chloride|mercury chloride|bichloride of mercury|sublimate +corrugate|1 +(verb)|fold|fold up|turn up +corrugated|1 +(adj)|furrowed +corrugated board|1 +(noun)|corrugated cardboard|cardboard|composition board +corrugated cardboard|1 +(noun)|corrugated board|cardboard|composition board +corrugated fastener|1 +(noun)|wiggle nail|fastener|fastening|holdfast|fixing +corrugated iron|1 +(noun)|sheet metal +corrugation|2 +(noun)|ridge +(noun)|change of shape +corrupt|8 +(adj)|corrupt |Augean|corrupted|debased|vitiated|corruptible|bribable|dishonest|purchasable|venal|depraved|immoral|perverse|perverted|reprobate|dirty|sordid|praetorian|pretorian|putrid|sold-out +(adj)|crooked |dishonest|unscrupulous|sneaky|underhand|underhanded|dishonest|dishonorable|unlawful +(adj)|corrupted|imperfect +(adj)|tainted|rotten +(verb)|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|spoil|modify +(verb)|bribe|buy|grease one's palms|pay +(verb)|defile|sully|taint|cloud|mar|impair|spoil|deflower|vitiate +corrupted|2 +(adj)|corrupt|imperfect +(adj)|debased|vitiated|corrupt +corruptedly|1 +(adv)|corruptly +corruptibility|1 +(noun)|immorality +corruptible|1 +(adj)|bribable|dishonest|purchasable|venal|corrupt +corrupting|3 +(adj)|seductive +(adj)|degrading|noxious |harmful +(adj)|contaminating|infectious +corruption|6 +(noun)|corruptness|dishonesty +(noun)|putrescence|putridness|rottenness|putrefaction|rot +(noun)|decay +(noun)|degeneracy|depravity|immorality +(noun)|subversion|degradation|debasement +(noun)|inducement|inducing +corruptive|1 +(adj)|perversive|pestiferous|evil |wicked +corruptly|1 +(adv)|corruptedly +corruptness|2 +(noun)|dishonor|dishonour +(noun)|corruption|dishonesty +corsage|1 +(noun)|bouquet|posy|nosegay|flower arrangement +corsair|2 +(noun)|Barbary pirate|pirate|buccaneer|sea robber|sea rover +(noun)|pirate|pirate ship +corse|2 +(noun)|Corse|Corsica|island +(noun)|Corse|Corsica|French region +corselet|1 +(noun)|corslet|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +corset|2 +(noun)|girdle|stays|foundation garment|foundation +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +corsica|2 +(noun)|Corse|Corsica|island +(noun)|Corse|Corsica|French region +corsican|1 +(adj)|Corsican|French region +corsican army|1 +(noun)|Armata Corsa|Corsican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +corslet|1 +(noun)|corselet|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +cortaderia|1 +(noun)|Cortaderia|genus Cortaderia|monocot genus|liliopsid genus +cortaderia richardii|1 +(noun)|plumed tussock|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass +cortaderia selloana|1 +(noun)|pampas grass|Cortaderia selloana|grass +cortef|1 +(noun)|hydrocortisone|cortisol|Hydrocortone|Cortef|corticosteroid|corticoid|adrenal cortical steroid +cortege|2 +(noun)|procession +(noun)|retinue|suite|entourage|gathering|assemblage +cortes|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +cortex|2 +(noun)|cerebral cortex|cerebral mantle|pallium|neural structure +(noun)|animal tissue|plant tissue +cortez|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +cortical|1 +(adj)|animal tissue|plant tissue +cortical area|1 +(noun)|cortical region|area|region +cortical epilepsy|1 +(noun)|focal epilepsy|epilepsy +cortical potential|1 +(noun)|brainwave|brain wave|bioelectricity +cortical region|1 +(noun)|cortical area|area|region +corticifugal|1 +(adj)|corticoefferent|corticofugal|efferent |motorial +corticipetal|1 +(adj)|corticoafferent|afferent +corticium|1 +(noun)|Corticium|genus Corticium|fungus genus +corticium salmonicolor|1 +(noun)|pink disease fungus|Corticium salmonicolor|fungus +corticium solani|1 +(noun)|bottom rot fungus|Corticium solani|fungus +corticoafferent|1 +(adj)|corticipetal|afferent +corticoefferent|1 +(adj)|corticofugal|corticifugal|efferent |motorial +corticofugal|1 +(adj)|corticoefferent|corticifugal|efferent |motorial +corticoid|1 +(noun)|corticosteroid|adrenal cortical steroid|steroid hormone|steroid|sex hormone +corticospinal tract|1 +(noun)|pyramidal tract|pyramidal motor system|motor nerve +corticosteroid|1 +(noun)|corticoid|adrenal cortical steroid|steroid hormone|steroid|sex hormone +corticosterone|1 +(noun)|glucocorticoid +corticotrophin|1 +(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|hormone|endocrine|internal secretion +corticotropin|1 +(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotrophin|hormone|endocrine|internal secretion +cortina|1 +(noun)|partial veil|velum +cortinariaceae|1 +(noun)|Cortinariaceae|family Cortinariaceae|fungus family +cortinarius|1 +(noun)|Cortinarius|genus Cortinarius|fungus genus +cortinarius armillatus|1 +(noun)|Cortinarius armillatus|agaric +cortinarius atkinsonianus|1 +(noun)|Cortinarius atkinsonianus|agaric +cortinarius corrugatus|1 +(noun)|Cortinarius corrugatus|agaric +cortinarius gentilis|1 +(noun)|Cortinarius gentilis|agaric +cortinarius mutabilis|1 +(noun)|Cortinarius mutabilis|purple-staining Cortinarius|agaric +cortinarius semisanguineus|1 +(noun)|Cortinarius semisanguineus|agaric +cortinarius subfoetidus|1 +(noun)|Cortinarius subfoetidus|agaric +cortinarius violaceus|1 +(noun)|Cortinarius violaceus|agaric +cortisol|1 +(noun)|hydrocortisone|Hydrocortone|Cortef|corticosteroid|corticoid|adrenal cortical steroid +cortisone|1 +(noun)|Cortone Acetate|corticosteroid|corticoid|adrenal cortical steroid|ketosteroid +cortland|1 +(noun)|Cortland|eating apple|dessert apple +cortone acetate|1 +(noun)|cortisone|Cortone Acetate|corticosteroid|corticoid|adrenal cortical steroid|ketosteroid +corundom|1 +(noun)|corundum|mineral +corundum|1 +(noun)|corundom|mineral +coruscant|1 +(adj)|aglitter|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkling|sparkly|bright +coruscate|2 +(verb)|sparkle|scintillate|reflect|shine +(verb)|sparkle|scintillate|be +coruscation|2 +(noun)|glitter|sparkle|flash +(noun)|brilliance|genius +corvee|1 +(noun)|labor|labour|toil +corvette|1 +(noun)|warship|war vessel|combat ship +corvidae|1 +(noun)|Corvidae|family Corvidae|bird family +corvine|1 +(adj)|corvine bird +corvine bird|1 +(noun)|oscine|oscine bird +corvus|2 +(noun)|Corvus|Crow|constellation +(noun)|Corvus|genus Corvus|bird genus +corvus brachyrhyncos|1 +(noun)|American crow|Corvus brachyrhyncos|crow +corvus corax|1 +(noun)|raven|Corvus corax|corvine bird +corvus frugilegus|1 +(noun)|rook|Corvus frugilegus|corvine bird +corvus monedula|1 +(noun)|jackdaw|daw|Corvus monedula|corvine bird +coryanthes|1 +(noun)|Coryanthes|genus Coryanthes|monocot genus|liliopsid genus +corydalidae|1 +(noun)|Corydalidae|family Corydalidae|arthropod family +corydalis|3 +(noun)|flower +(noun)|Corydalis|genus Corydalis|dilleniid dicot genus +(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus +corydalis claviculata|1 +(noun)|climbing corydalis|Corydalis claviculata|Fumaria claviculata|vine|Corydalis|genus Corydalis +corydalis sempervirens|1 +(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis|genus Corydalis +corydalis solida|1 +(noun)|fumewort|fumeroot|Corydalis solida|Corydalis|genus Corydalis +corydalus|1 +(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus +corydalus cornutus|1 +(noun)|dobson|dobsonfly|dobson fly|Corydalus cornutus|neuropteron|neuropteran|neuropterous insect +corylaceae|1 +(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family +corylopsis|1 +(noun)|Corylopsis|genus Corylopsis|plant genus +corylus|1 +(noun)|Corylus|genus Corylus|hamamelid dicot genus +corylus americana|1 +(noun)|American hazel|Corylus americana|hazelnut|hazel|hazelnut tree +corylus avellana|1 +(noun)|cobnut|filbert|Corylus avellana|Corylus avellana grandis|hazelnut|hazel|hazelnut tree +corylus avellana grandis|1 +(noun)|cobnut|filbert|Corylus avellana|Corylus avellana grandis|hazelnut|hazel|hazelnut tree +corylus cornuta|1 +(noun)|beaked hazelnut|Corylus cornuta|hazelnut|hazel|hazelnut tree +corymb|1 +(noun)|inflorescence +corymbose|1 +(adj)|inflorescence +corynebacteriaceae|1 +(noun)|Corynebacteriaceae|family Corynebacteriaceae|bacteria family +corynebacterium|1 +(noun)|eubacteria|eubacterium|true bacteria +corynebacterium diphtheriae|1 +(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium +corypha|1 +(noun)|Corypha|genus Corypha|monocot genus|liliopsid genus +corypha gebanga|1 +(noun)|gebang palm|Corypha utan|Corypha gebanga|fan palm +corypha umbraculifera|1 +(noun)|talipot|talipot palm|Corypha umbraculifera|fan palm +corypha utan|1 +(noun)|gebang palm|Corypha utan|Corypha gebanga|fan palm +coryphaena equisetis|1 +(noun)|Coryphaena equisetis|dolphinfish|dolphin|mahimahi +coryphaena hippurus|1 +(noun)|Coryphaena hippurus|dolphinfish|dolphin|mahimahi +coryphaenidae|1 +(noun)|Coryphaenidae|family Coryphaenidae|fish family +coryphantha|1 +(noun)|cactus +corythosaur|1 +(noun)|corythosaurus|hadrosaur|hadrosaurus|duck-billed dinosaur +corythosaurus|1 +(noun)|corythosaur|hadrosaur|hadrosaurus|duck-billed dinosaur +coryza|1 +(noun)|rhinitis|inflammation|redness|rubor +cos|6 +(noun)|cosine|trigonometric function|circular function +(noun)|cos lettuce|romaine|romaine lettuce|lettuce +(noun)|carbon monoxide|carbon monoxide gas|CO|monoxide +(noun)|cobalt|Co|atomic number 27|metallic element|metal +(noun)|conscientious objector|CO|dissenter|dissident|protester|objector|contestant +(noun)|Colorado|Centennial State|CO|American state +cos lettuce|2 +(noun)|romaine lettuce|Lactuca sativa longifolia|lettuce +(noun)|cos|romaine|romaine lettuce|lettuce +cosa nostra|1 +(noun)|Mafia|Maffia|Cosa Nostra|syndicate|crime syndicate|mob|family +coscoroba|1 +(noun)|swan +cosec|1 +(noun)|cosecant|trigonometric function|circular function +cosecant|1 +(noun)|cosec|trigonometric function|circular function +coseismal|1 +(adj)|coseismic|unstable +coseismic|1 +(adj)|coseismal|unstable +cosey|1 +(noun)|cosy|tea cosy|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +cosh|2 +(noun)|blackjack|sap|bludgeon +(verb)|hit +cosher|1 +(adj)|kosher|clean +cosign|2 +(verb)|co-sign|validate|formalize|formalise +(verb)|co-sign|endorse|indorse +cosignatory|2 +(adj)|joint +(noun)|cosigner|signer|signatory +cosigner|2 +(noun)|cosignatory|signer|signatory +(noun)|signer|signatory +cosily|1 +(adv)|cozily +cosimo de medici|1 +(noun)|Cosimo de Medici|Cosimo the Elder|financier|moneyman|statesman|solon|national leader +cosimo the elder|1 +(noun)|Cosimo de Medici|Cosimo the Elder|financier|moneyman|statesman|solon|national leader +cosine|1 +(noun)|cos|trigonometric function|circular function +cosiness|1 +(noun)|coziness|snugness|comfort|comfortableness +cosmea|1 +(noun)|cosmos|flower +cosmetic|3 +(adj)|decorative|ornamental|nonfunctional +(adj)|enhancive|aesthetic |esthetic|aesthetical|esthetical +(noun)|cosmetics|toiletry|toilet article|toiletries +cosmetic dentistry|1 +(noun)|dentistry|dental medicine|odontology +cosmetic surgeon|1 +(noun)|plastic surgeon|surgeon|operating surgeon|sawbones +cosmetic surgery|1 +(noun)|face lift|facelift|lift|face lifting|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +cosmetician|2 +(noun)|seller|marketer|vender|vendor|trafficker +(noun)|beautician|craftsman|artisan|journeyman|artificer +cosmetics|2 +(noun)|cosmetic|toiletry|toilet article|toiletries +(noun)|cosmetic|toiletry|toilet article|toiletries +cosmetologist|1 +(noun)|expert +cosmic|2 +(adj)|natural object +(adj)|large +cosmic background radiation|1 +(noun)|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation +cosmic dust|1 +(noun)|cloud +cosmic microwave background|1 +(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|CMB|cosmic radiation +cosmic microwave background radiation|1 +(noun)|cosmic background radiation|CBR|CMBR|cosmic microwave background|CMB|cosmic radiation +cosmic radiation|1 +(noun)|radiation +cosmic ray|1 +(noun)|ionizing radiation +cosmic time|1 +(noun)|time +cosmocampus|1 +(noun)|Cosmocampus|genus Cosmocampus|fish genus +cosmocampus profundus|1 +(noun)|deepwater pipefish|Cosmocampus profundus|pipefish|needlefish +cosmogenic|1 +(adj)|cosmologic|cosmological|cosmogonic|cosmogonical|cosmogenical|astrophysics +cosmogenical|1 +(adj)|cosmologic|cosmological|cosmogonic|cosmogonical|cosmogenic|astrophysics +cosmogeny|1 +(noun)|cosmology|cosmogony|astrophysics +cosmogonic|1 +(adj)|cosmologic|cosmological|cosmogonical|cosmogenic|cosmogenical|astrophysics +cosmogonical|1 +(adj)|cosmologic|cosmological|cosmogonic|cosmogenic|cosmogenical|astrophysics +cosmogony|1 +(noun)|cosmology|cosmogeny|astrophysics +cosmographer|1 +(noun)|cosmographist|scientist|man of science +cosmographist|1 +(noun)|cosmographer|scientist|man of science +cosmography|2 +(noun)|natural science +(noun)|representation +cosmolatry|1 +(noun)|worship +cosmologic|2 +(adj)|cosmological|cosmogonic|cosmogonical|cosmogenic|cosmogenical|astrophysics +(adj)|cosmological|metaphysics +cosmological|2 +(adj)|cosmologic|cosmogonic|cosmogonical|cosmogenic|cosmogenical|astrophysics +(adj)|cosmologic|metaphysics +cosmological constant|1 +(noun)|constant +cosmologist|1 +(noun)|astronomer|uranologist|stargazer +cosmology|2 +(noun)|metaphysics +(noun)|cosmogony|cosmogeny|astrophysics +cosmonaut|1 +(noun)|astronaut|spaceman|traveler|traveller +cosmopolitan|4 +(adj)|cosmopolitan |widely distributed +(adj)|cosmopolitan |sophisticated|urbane|traveled|travelled +(adj)|ecumenical|oecumenical|general|universal|worldwide|comprehensive +(noun)|cosmopolite|sophisticate|man of the world +cosmopolite|1 +(noun)|cosmopolitan|sophisticate|man of the world +cosmos|2 +(noun)|universe|existence|creation|world|macrocosm|natural object +(noun)|cosmea|flower +cosmotron|1 +(noun)|synchrotron +cosponsor|1 +(verb)|sponsor|patronize|patronise +coss|1 +(noun)|kos|linear unit +cossack|1 +(noun)|Cossack|Slav +cosset|1 +(verb)|pamper|featherbed|cocker|baby|coddle|mollycoddle|spoil|indulge|treat|handle|do by +cost|5 +(noun)|outgo|expenditure|outlay +(noun)|monetary value|price|value +(noun)|price|toll|value +(verb)|be|be +(verb)|necessitate|ask|postulate|need|require|take|involve|call for|demand +cost-benefit analysis|1 +(noun)|analysis|analytic thinking +cost-effective|1 +(adj)|cost-efficient|efficient +cost-efficient|1 +(adj)|cost-effective|efficient +cost-of-living allowance|1 +(noun)|allowance|adjustment +cost-of-living benefit|1 +(noun)|benefit +cost-of-living index|1 +(noun)|consumer price index|CPI|price index|price level +cost-plus|1 +(adj)|indeterminate |undetermined +cost-plus contract|1 +(noun)|contract +cost-pull inflation|1 +(noun)|inflation|rising prices +cost accountant|1 +(noun)|accountant|comptroller|controller +cost accounting|1 +(noun)|accountancy|accounting +cost analysis|1 +(noun)|analysis +cost cutting|1 +(noun)|cut +cost increase|1 +(noun)|rise|boost|hike|increase|increment +cost ledger|1 +(noun)|ledger|leger|account book|book of account|book +cost of capital|1 +(noun)|capital cost|opportunity cost +cost of living|1 +(noun)|cost +cost overrun|1 +(noun)|cost +costa|2 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|rib|bone|os +costa rica|1 +(noun)|Costa Rica|Republic of Costa Rica|Central American country|Central American nation +costa rican|2 +(adj)|Costa Rican|Central American country|Central American nation +(noun)|Costa Rican|Central American +costa rican colon|1 +(noun)|colon|Costa Rican colon|Costa Rican monetary unit +costa rican monetary unit|1 +(noun)|Costa Rican monetary unit|monetary unit +costal|1 +(adj)|bone|os +costal cartilage|1 +(noun)|cartilaginous structure +costal groove|1 +(noun)|groove|vallecula +costalgia|1 +(noun)|pleurodynia|pleuralgia|pain|hurting +costanoan|2 +(noun)|Costanoan|Penutian +(noun)|Costanoan|Penutian +costate|2 +(adj)|ribbed|rough |unsmooth +(adj)|ribbed +costermonger|1 +(noun)|barrow-man|barrow-boy|trader|bargainer|dealer|monger +costia|1 +(noun)|Costia necatrix|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +costia necatrix|1 +(noun)|costia|Costia necatrix|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +costiasis|1 +(noun)|animal disease +costing|1 +(noun)|cost accounting +costive|1 +(adj)|costive |binding|constipating +costless|1 +(adj)|complimentary|free|gratis|gratuitous|unpaid +costliness|1 +(noun)|dearness|expensiveness +costly|2 +(adj)|dearly-won|expensive +(adj)|dear|high-priced|pricey|pricy|expensive +costmary|2 +(noun)|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +(noun)|herb +costoaxillary vein|1 +(noun)|vein|vena|venous blood vessel +costochondritis|1 +(noun)|inflammation|redness|rubor +costs|4 +(noun)|reimbursement +(noun)|cost|outgo|expenditure|outlay +(noun)|monetary value|price|cost|value +(noun)|price|cost|toll|value +costume|6 +(noun)|attire|garb|dress +(noun)|attire|garb|dress +(noun)|attire|garb|dress +(noun)|attire|garb|dress +(verb)|dress up|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +(verb)|supply|provide|render|furnish +costume designer|1 +(noun)|costumier|costumer|couturier|fashion designer|clothes designer|designer +costumed|1 +(adj)|clothed |clad +costumer|1 +(noun)|costumier|costume designer|couturier|fashion designer|clothes designer|designer +costumier|1 +(noun)|costumer|costume designer|couturier|fashion designer|clothes designer|designer +costus oil|1 +(noun)|essential oil|volatile oil +costusroot|1 +(noun)|Saussurea costus|Saussurea lappa|herb|herbaceous plant +cosy|2 +(adj)|cozy|snug|comfortable |comfy +(noun)|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +cot|3 +(noun)|fingerstall|sheath +(noun)|crib|baby bed|baby's bed +(noun)|camp bed|bed +cot death|1 +(noun)|sudden infant death syndrome|SIDS|infant death|crib death|death|sleep apnea +cotacachi|1 +(noun)|Cotacachi|volcano +cotan|1 +(noun)|cotangent|trigonometric function|circular function +cotangent|1 +(noun)|cotan|trigonometric function|circular function +cote|1 +(noun)|shelter +cote d'azur|1 +(noun)|French Riviera|Cote d'Azur|French region +cote d'ivoire|1 +(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country|African nation +cote d'ivoire franc|1 +(noun)|Ivory Coast franc|Cote d'Ivoire franc|franc +cotenant|1 +(noun)|tenant +coterie|1 +(noun)|clique|ingroup|inner circle|pack|camp|set|circle|band|lot +coterminous|1 +(adj)|coextensive|conterminous|commensurate +cotes de provence|1 +(noun)|Cotes de Provence|wine|vino +cothromboplastin|1 +(noun)|proconvertin|stable factor|factor VII|coagulation factor|clotting factor +cotilion|2 +(noun)|cotillion|ball +(noun)|cotillion|ballroom dancing|ballroom dance +cotillion|2 +(noun)|cotilion|ball +(noun)|cotilion|ballroom dancing|ballroom dance +cotinga|1 +(noun)|chatterer|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +cotingidae|1 +(noun)|Cotingidae|family Cotingidae|bird family +cotinus|1 +(noun)|Cotinus|genus Cotinus|dicot genus|magnoliopsid genus +cotinus americanus|1 +(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree|smoke bush +cotinus coggygria|1 +(noun)|Venetian sumac|wig tree|Cotinus coggygria|smoke tree|smoke bush +cotinus obovatus|1 +(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree|smoke bush +cotoneaster|1 +(noun)|shrub|bush +cotoneaster dammeri|1 +(noun)|Cotoneaster dammeri|cotoneaster +cotoneaster horizontalis|1 +(noun)|Cotoneaster horizontalis|cotoneaster +cotonou|1 +(noun)|Cotonou|city|metropolis|urban center|port +cotopaxi|1 +(noun)|Cotopaxi|volcano +cotswold|1 +(noun)|Cotswold|domestic sheep|Ovis aries +cotswold hills|1 +(noun)|Cotswolds|Cotswold Hills|hills +cotswolds|2 +(noun)|Cotswolds|Cotswold Hills|hills +(noun)|Cotswold|domestic sheep|Ovis aries +cottage|1 +(noun)|bungalow|house +cottage cheese|1 +(noun)|pot cheese|farm cheese|farmer's cheese|cheese +cottage dweller|1 +(noun)|cottager|inhabitant|dweller|denizen|indweller +cottage industry|1 +(noun)|industry|manufacture +cottage pie|1 +(noun)|dish +cottage pink|1 +(noun)|grass pink|Dianthus plumarius|pink|garden pink +cottage tent|1 +(noun)|tent|collapsible shelter +cottage tulip|1 +(noun)|tulip +cottager|1 +(noun)|cottage dweller|inhabitant|dweller|denizen|indweller +cottar|2 +(noun)|cotter|peasant|provincial|bucolic +(noun)|cotter|fastener|fastening|holdfast|fixing +cotter|3 +(noun)|cottar|peasant|provincial|bucolic +(noun)|cottier|serf|helot|villein +(noun)|cottar|fastener|fastening|holdfast|fixing +cotter pin|1 +(noun)|cotter|cottar +cottidae|1 +(noun)|Cottidae|family Cottidae|fish family +cottier|1 +(noun)|cotter|serf|helot|villein +cotton|5 +(noun)|cotton wool|plant fiber|plant fibre +(noun)|cotton cloth|fabric|cloth|material|textile +(noun)|cotton plant|shrub|bush +(noun)|thread|yarn +(verb)|like +cotton-seed tree|1 +(noun)|groundsel tree|groundsel bush|consumption weed|Baccharis halimifolia|shrub|bush +cotton ball|1 +(noun)|plant disease +cotton bollworm|1 +(noun)|corn earworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm +cotton cake|1 +(noun)|cottonseed cake|residue +cotton candy|1 +(noun)|spun sugar|candyfloss|candy +cotton cloth|1 +(noun)|cotton|fabric|cloth|material|textile +cotton flannel|1 +(noun)|Canton flannel|fabric|cloth|material|textile +cotton gin|1 +(noun)|gin|machine +cotton grass|1 +(noun)|cotton rush|sedge +cotton mill|1 +(noun)|textile mill +cotton mouse|1 +(noun)|Peromyscus gossypinus|wood mouse +cotton on|1 +(verb)|catch on|get wise|get onto|tumble|latch on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +cotton plant|1 +(noun)|cotton|shrub|bush +cotton rat|1 +(noun)|Sigmodon hispidus|rodent|gnawer|gnawing animal +cotton rose|2 +(noun)|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus +(noun)|cudweed|filago|flower +cotton rush|1 +(noun)|cotton grass|sedge +cotton stainer|1 +(noun)|heteropterous insect +cotton strain|1 +(noun)|sweet-potato whitefly +cotton thistle|1 +(noun)|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle +cotton up|1 +(verb)|cozy up|shine up|play up|sidle up|suck up|ingratiate +cotton wool|1 +(noun)|cotton|plant fiber|plant fibre +cottonmouth|1 +(noun)|water moccasin|cottonmouth moccasin|Agkistrodon piscivorus|pit viper +cottonmouth moccasin|1 +(noun)|water moccasin|cottonmouth|Agkistrodon piscivorus|pit viper +cottonseed|1 +(noun)|oilseed +cottonseed cake|1 +(noun)|cotton cake|residue +cottonseed oil|1 +(noun)|vegetable oil|oil +cottontail|1 +(noun)|wood rabbit|cottontail rabbit|rabbit|coney|cony +cottontail rabbit|1 +(noun)|wood rabbit|cottontail|rabbit|coney|cony +cottonweed|2 +(noun)|pearly everlasting|Anaphalis margaritacea|everlasting|everlasting flower +(noun)|herb|herbaceous plant +cottonwick|1 +(noun)|Haemulon malanurum|grunt +cottonwood|2 +(noun)|poplar|poplar tree +(noun)|white basswood|Tilia heterophylla|linden|linden tree|basswood|lime|lime tree +cottony|1 +(adj)|soft +cottrell precipitator|1 +(noun)|precipitator|Cottrell precipitator|electrical device +cottus|1 +(noun)|Cottus|genus Cottus|fish genus +cotula|1 +(noun)|Cotula|genus Cotula|asterid dicot genus +cotula coronopifolia|1 +(noun)|brass buttons|Cotula coronopifolia|flower +coturnix|1 +(noun)|Coturnix|genus Coturnix|bird genus +coturnix communis|1 +(noun)|migratory quail|Coturnix coturnix|Coturnix communis|Old World quail +coturnix coturnix|1 +(noun)|migratory quail|Coturnix coturnix|Coturnix communis|Old World quail +cotyledon|1 +(noun)|seed leaf|cataphyll +cotyloid|1 +(adj)|acetabular|cotyloidal|concave +cotyloid cavity|1 +(noun)|acetabulum|socket +cotyloid joint|1 +(noun)|ball-and-socket joint|spheroid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint|articulatio synovialis|diarthrosis +cotyloidal|1 +(adj)|acetabular|cotyloid|concave +coucal|1 +(noun)|cuckoo +couch|4 +(noun)|sofa|lounge|seat +(noun)|flat coat|ground|primer|priming|primer coat|priming coat|undercoat +(noun)|bed +(verb)|frame|redact|cast|put|give voice|formulate|word|phrase|articulate +couch grass|1 +(noun)|dog grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +couch potato|1 +(noun)|idler|loafer|do-nothing|layabout|bum +couchant|1 +(adj)|unerect +couchette|1 +(noun)|compartment +coude system|1 +(noun)|coude telescope|reflecting telescope|reflector +coude telescope|1 +(noun)|coude system|reflecting telescope|reflector +cougar|1 +(noun)|puma|catamount|mountain lion|painter|panther|Felis concolor|wildcat +cough|3 +(noun)|coughing|symptom +(noun)|coughing|exhalation|expiration|breathing out +(verb)|expectorate|cough up|cough out|spit up|spit out|cough out|cough up|cough up +cough drop|1 +(noun)|troche|pastille|pastil|lozenge +cough out|1 +(verb)|expectorate|cough up|spit up|spit out|discharge|expel|eject|release +cough up|2 +(verb)|pony up|spit up|give +(verb)|expectorate|cough out|spit up|spit out|discharge|expel|eject|release +coughing|2 +(noun)|cough|exhalation|expiration|breathing out +(noun)|cough|symptom +coughing up|1 +(noun)|expulsion|projection|ejection|forcing out +coulisse|2 +(noun)|wing flat|flat +(noun)|timber +coulomb|2 +(noun)|C|ampere-second|charge unit|quantity unit +(noun)|Coulomb|Charles Augustin de Coulomb|physicist +coulomb's law|1 +(noun)|Coulomb's Law|law|law of nature +coulter|1 +(noun)|colter|wedge +coumadin|1 +(noun)|warfarin|Coumadin|anticoagulant|anticoagulant medication|decoagulant +coumara nut|1 +(noun)|tonka bean|bean +coumarone|1 +(noun)|benzofuran|cumarone|compound|chemical compound +coumarone-indene resin|1 +(noun)|coumarone resin|plastic +coumarone resin|1 +(noun)|coumarone-indene resin|plastic +coumarouna|1 +(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus +coumarouna odorata|1 +(noun)|tonka bean|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree +council|3 +(noun)|administrative unit|administrative body +(noun)|assembly +(noun)|meeting +council bluffs|1 +(noun)|Council Bluffs|town +council board|1 +(noun)|conference table|council table|table +council chamber|1 +(noun)|boardroom|room +council member|1 +(noun)|councillor|member +council of chalcedon|1 +(noun)|Council of Chalcedon|council +council of economic advisors|1 +(noun)|Council of Economic Advisors|executive agency +council of trent|1 +(noun)|Council of Trent|council +council on environmental policy|1 +(noun)|Council on Environmental Policy|executive agency +council table|1 +(noun)|conference table|council board|table +council tax|1 +(noun)|property tax|land tax +councillor|1 +(noun)|council member|member +councillorship|1 +(noun)|councilorship|position|post|berth|office|spot|billet|place|situation +councilman|1 +(noun)|council member|councillor +councilorship|1 +(noun)|councillorship|position|post|berth|office|spot|billet|place|situation +councilwoman|1 +(noun)|council member|councillor +counsel|3 +(noun)|advocate|counselor|counsellor|counselor-at-law|pleader|lawyer|attorney +(noun)|guidance|counseling|counselling|direction|message|content|subject matter|substance +(verb)|advise|hash out|discuss|talk over +counsel to the crown|1 +(noun)|Counsel to the Crown|barrister +counseling|1 +(noun)|guidance|counsel|counselling|direction|message|content|subject matter|substance +counselling|1 +(noun)|guidance|counsel|counseling|direction|message|content|subject matter|substance +counsellor|3 +(noun)|counselor|supervisor +(noun)|counselor|adviser|advisor|consultant +(noun)|advocate|counsel|counselor|counselor-at-law|pleader|lawyer|attorney +counsellorship|1 +(noun)|counselorship|position|post|berth|office|spot|billet|place|situation +counselor|3 +(noun)|counsellor|adviser|advisor|consultant +(noun)|counsellor|supervisor +(noun)|advocate|counsel|counsellor|counselor-at-law|pleader|lawyer|attorney +counselor-at-law|1 +(noun)|advocate|counsel|counselor|counsellor|pleader|lawyer|attorney +counselorship|1 +(noun)|counsellorship|position|post|berth|office|spot|billet|place|situation +count|11 +(noun)|number +(noun)|counting|numeration|enumeration|reckoning|tally|investigation|investigating +(noun)|Lord|noble|nobleman +(verb)|number|enumerate|numerate|determine|find|find out|ascertain +(verb)|matter|weigh|be +(verb)|consider|weigh +(verb)|recite|count down|count out +(verb)|number|classify|class|sort|assort|sort out|separate +(verb)|include +(verb)|bet|depend|look|calculate|reckon|trust|swear|rely|bank +(verb)|reckon|estimate|gauge|approximate|guess|judge +count alessandro di cagliostro|1 +(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer|magician|wizard|necromancer +count alessandro volta|1 +(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist +count down|1 +(verb)|count +count ferdinand von zeppelin|1 +(noun)|Zeppelin|Count Ferdinand von Zeppelin|inventor|discoverer|artificer +count fleet|1 +(noun)|Count Fleet|thoroughbred +count lev nikolayevitch tolstoy|1 +(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer|author +count maurice maeterlinck|1 +(noun)|Maeterlinck|Count Maurice Maeterlinck|dramatist|playwright +count nikolaus ludwig von zinzendorf|1 +(noun)|Zinzendorf|Count Nikolaus Ludwig von Zinzendorf|theologian|theologist|theologizer|theologiser +count noun|1 +(noun)|noun +count off|1 +(verb)|call out +count on|1 +(verb)|calculate|estimate|reckon|figure|forecast|judge +count out|1 +(verb)|declare +count palatine|1 +(noun)|count +count per minute|1 +(noun)|counts/minute|frequency|frequence|oftenness +count rumford|1 +(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist +countable|1 +(adj)|denumerable|enumerable|numerable|calculable +countdown|1 +(noun)|count|counting|numeration|enumeration|reckoning|tally +countenance|4 +(noun)|visage|appearance|visual aspect +(noun)|sanction|endorsement|indorsement|warrant|imprimatur|approval|commendation +(noun)|physiognomy|phiz|visage|kisser|smiler|mug|face|human face +(verb)|permit|allow|let|accept|consent|go for +counter|13 +(adj)|antagonistic|negative +(noun)|table +(noun)|game equipment +(noun)|tabulator|calculator|calculating machine +(noun)|buffet|sideboard|furniture|piece of furniture|article of furniture +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|rejoinder|retort|return|riposte|replication|comeback|reply|response +(noun)|register +(noun)|heel|piece of leather +(noun)|piece of leather +(noun)|counterpunch|parry|punch|clout|poke|lick|biff +(verb)|answer|reply|respond +(verb)|anticipate|foresee|forestall|act|move +counter-drill|1 +(verb)|bore|drill +counter-revolutionist|2 +(noun)|counterrevolutionist|counterrevolutionary|revolutionist|revolutionary|subversive|subverter +(noun)| +counter-sabotage|1 +(noun)|counterintelligence +counter check|3 +(noun)|check|bank check|cheque +(noun)|countercheck|arrest|check|halt|hitch|stay|stop|stoppage +(noun)|countercheck|double check|assay|check +counter conditioning|1 +(noun)|conditioning +counter reformation|2 +(noun)|Counter Reformation|religious movement +(noun)|counterreformation|reformation +counter tube|1 +(noun)|measuring instrument|measuring system|measuring device +counteract|4 +(verb)|antagonize|antagonise|act|move +(verb)|countercheck|control|hold in|hold|contain|check|curb|moderate +(verb)|countervail|neutralize|counterbalance|cancel|offset|set off +(verb)|sabotage|undermine|countermine|subvert|weaken|disobey +counteraction|1 +(noun)|neutralization|neutralisation|nullification|override +counteractive|1 +(adj)|counteractive |antagonistic|antacid|antidotal|antiphlogistic|countervailing|countervailing|offsetting|compensatory|compensative|opposing +counterargument|1 +(noun)|argument|statement +counterattack|3 +(noun)|countermove|attack|onslaught|onset|onrush +(noun)|counterplay|attack +(verb)|counterstrike|attack|assail +counterattraction|1 +(noun)|attraction +counterbalance|6 +(noun)|counterweight|counterpoise|balance|equalizer|equaliser|weight +(noun)|balance|equilibrium|equipoise|structure|construction +(noun)|offset|compensation +(verb)|compensate|correct|even out|even off|even up|balance|equilibrate|equilibrize|equilibrise +(verb)|oppose|contrast|counterpoint +(verb)|counteract|countervail|neutralize|cancel|offset|set off +counterbalanced|1 +(adj)|counterpoised|balanced +counterbalancing|1 +(adj)|balance|equilibrate|equilibrize|equilibrise +counterbattery fire|1 +(noun)|counterfire +counterblast|1 +(noun)|reply|response +counterblow|1 +(noun)|blow +counterbombardment|1 +(noun)|counterfire +counterbore|1 +(noun)|countersink|countersink bit|bit +counterchallenge|1 +(verb)|challenge +counterchange|1 +(verb)|transpose|interchange|change|alter|modify +countercharge|2 +(noun)|accusation|charge +(noun)|charge +countercheck|4 +(noun)|arrest|check|halt|hitch|stay|stop|stoppage +(noun)|double check|assay|check +(verb)|counteract|control|hold in|hold|contain|check|curb|moderate +(verb)|check +counterclaim|2 +(noun)|legal action|action|action at law +(verb)|claim +counterclockwise|2 +(adj)|counterclockwise |anticlockwise|contraclockwise|levorotary|levorotatory|left-handed|sinistral +(adv)|anticlockwise +counterclockwise rotation|1 +(noun)|levorotation|rotation|revolution|gyration +countercoup|1 +(noun)|coup d'etat|coup|putsch|takeover +counterculture|1 +(noun)|culture +countercurrent|2 +(noun)|rip|riptide|tide rip|crosscurrent|turbulence|turbulency +(noun)|crosscurrent|strife +counterdemonstration|1 +(noun)|presentation|presentment|demonstration +counterdemonstrator|1 +(noun)|demonstrator|protester +counterespionage|1 +(noun)|counterintelligence +counterexample|1 +(noun)|disproof|falsification|refutation +counterfactual|1 +(adj)|contrary to fact|conditional +counterfactuality|1 +(noun)|quality +counterfeit|3 +(adj)|counterfeit |imitative|assumed|false|fictitious|fictive|pretended|put on|sham|bad|forged|base|bogus|fake|phony|phoney|bastard|inauthentic|unauthentic|spurious|mock|ostensible|ostensive|pinchbeck|pseudo|synthetic|artificial|unreal|false|insincere|unreal +(noun)|imitation|forgery|copy +(verb)|forge|fake|re-create +counterfeiter|1 +(noun)|forger|deceiver|cheat|cheater|trickster|beguiler|slicker +counterfire|1 +(noun)|fire|firing +counterfoil|1 +(noun)|stub|check stub|record +counterglow|1 +(noun)|gegenschein|light|visible light|visible radiation +counterinsurgency|1 +(noun)|pacification|conflict|struggle|battle +counterintelligence|1 +(noun)|intelligence|intelligence activity|intelligence operation +counterintuitive|1 +(adj)|unreasonable +counterirritant|1 +(noun)|medicine|medication|medicament|medicinal drug +counterman|1 +(noun)|counterperson|counterwoman|waiter|server +countermand|2 +(noun)|command|bid|bidding|dictation +(verb)|revoke|annul|lift|reverse|repeal|overturn|rescind|vacate|cancel|strike down +countermarch|3 +(noun)|march|marching +(verb)|march|process +(verb)|reorder +countermeasure|1 +(noun)|measure|step +countermine|3 +(noun)|countermeasure +(verb)|sabotage|undermine|counteract|subvert|weaken|disobey +(verb)|mine +countermortar fire|1 +(noun)|counterfire +countermove|1 +(noun)|counterattack|attack|onslaught|onset|onrush +counteroffensive|1 +(noun)|offense|offence|offensive +counteroffer|1 +(noun)|offer|offering +counterpane|1 +(noun)|bedspread|bedcover|bed cover|bed covering|spread|bedclothes|bed clothing|bedding +counterpart|2 +(noun)|opposite number|vis-a-vis|equivalent +(noun)|similitude|twin|duplicate|duplication +counterperson|1 +(noun)|counterwoman|counterman|waiter|server +counterplan|1 +(noun)|counterplot|plot|secret plan|game +counterplay|1 +(noun)|counterattack|attack +counterplea|1 +(noun)|plea +counterplot|2 +(noun)|counterplan|plot|secret plan|game +(verb)|plot +counterpoint|3 +(noun)|polyphony|polyphonic music|concerted music +(verb)|contrast|differ +(verb)|compose|write +counterpoise|2 +(noun)|counterweight|counterbalance|balance|equalizer|equaliser|weight +(verb)|counterweight|counterpose|oppose|counterbalance +counterpoised|1 +(adj)|counterbalanced|balanced +counterpoison|1 +(noun)|antidote|remedy|curative|cure +counterpose|1 +(verb)|counterweight|counterpoise|oppose|counterbalance +counterpreparation fire|1 +(noun)|fire|firing +counterproductive|1 +(adj)|harmful +counterproposal|1 +(noun)|proposal +counterpunch|1 +(noun)|parry|counter|punch|clout|poke|lick|biff +counterreformation|1 +(noun)|reformation +counterrevolution|1 +(noun)|revolution +counterrevolutionary|2 +(adj)|counterrevolutionary +(noun)|counterrevolutionist|counter-revolutionist|revolutionist|revolutionary|subversive|subverter +counterrevolutionist|1 +(noun)|counter-revolutionist|counterrevolutionary|revolutionist|revolutionary|subversive|subverter +countershot|1 +(noun)|shooting|shot +countersign|3 +(noun)|password|watchword|word|parole|positive identification|secret|arcanum +(noun)|countersignature|signature +(verb)|sign +countersignature|1 +(noun)|countersign|signature +countersink|3 +(noun)|hole +(noun)|counterbore|countersink bit|bit +(verb)|set|bury|sink +countersink bit|1 +(noun)|counterbore|countersink|bit +counterspy|1 +(noun)|mole|spy|undercover agent +counterstain|1 +(noun)|stain +counterstrike|1 +(verb)|counterattack|attack|assail +countersubversion|1 +(noun)|counterintelligence +countersuit|1 +(noun)|lawsuit|suit|case|cause|causa +countertenor|3 +(adj)|alto|high |high-pitched +(noun)|alto +(noun)|alto|singing voice +counterterrorism|1 +(noun)|scheme|strategy +counterterrorist center|1 +(noun)|Counterterrorist Center|CTC|agency|federal agency|government agency|bureau|office|authority +countertop|1 +(noun)|tabletop +countertransference|1 +(noun)|transference +countervail|2 +(verb)|offset|balance|equilibrate|equilibrize|equilibrise +(verb)|counteract|neutralize|counterbalance|cancel|offset|set off +countervailing|2 +(adj)|offsetting|compensatory|compensative|counteractive |antagonistic +(adj)|counteractive |antagonistic +countervailing duty|1 +(noun)|duty|tariff +counterweight|2 +(noun)|counterbalance|counterpoise|balance|equalizer|equaliser|weight +(verb)|counterpoise|counterpose|oppose|counterbalance +counterwoman|1 +(noun)|counterperson|counterman|waiter|server +countess|1 +(noun)|Lady|noblewoman|peeress +counting|1 +(noun)|count|numeration|enumeration|reckoning|tally|investigation|investigating +countinghouse|1 +(noun)|office|business office +countless|1 +(adj)|infinite|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +countlessness|1 +(noun)|innumerableness|number|figure +countrified|1 +(adj)|countryfied|rustic|rural +country|5 +(noun)|state|land|administrative district|administrative division|territorial division +(noun)|state|nation|land|commonwealth|res publica|body politic|political unit +(noun)|nation|land|a people|people +(noun)|rural area|geographical area|geographic area|geographical region|geographic region +(noun)|area|region +country-bred|1 +(adj)|rural +country-dance|2 +(noun)|country dancing|contredanse|contra danse|contradance|folk dancing|folk dance +(verb)|contradance|contredanse|contra danse|dance|trip the light fantastic|trip the light fantastic toe +country-style|1 +(adj)|rural +country and western|1 +(noun)|country music|C and W|folk music|ethnic music|folk +country borage|1 +(noun)|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus|flame nettle +country club|1 +(noun)|club|society|guild|gild|lodge|order +country dancing|1 +(noun)|country-dance|contredanse|contra danse|contradance|folk dancing|folk dance +country doctor|1 +(noun)|general practitioner|GP +country house|1 +(noun)|house +country music|1 +(noun)|country and western|C and W|folk music|ethnic music|folk +country of origin|1 +(noun)|fatherland|homeland|motherland|mother country|native land|country|state|land +country store|1 +(noun)|general store|trading post|mercantile establishment|retail store|sales outlet|outlet +countryfied|1 +(adj)|countrified|rustic|rural +countryman|2 +(noun)|compatriot +(noun)|rustic +countryseat|1 +(noun)|estate|land|landed estate|acres|demesne +countryside|1 +(noun)|country|rural area +countrywide|1 +(adj)|nationwide|wide |broad +countrywoman|2 +(noun)|rustic +(noun)|compatriot +counts/minute|1 +(noun)|count per minute|frequency|frequence|oftenness +county|2 +(noun)|region|part +(noun)|administrative district|administrative division|territorial division +county agent|1 +(noun)|agricultural agent|extension agent|adviser|advisor|consultant +county council|1 +(noun)|administration|governance|governing body|establishment|brass|organization|organisation +county courthouse|1 +(noun)|county seat|seat +county line|1 +(noun)|boundary|bound|bounds +county palatine|1 +(noun)|administrative district|administrative division|territorial division +county seat|1 +(noun)|county courthouse|seat +county town|1 +(noun)|shire town|seat +countywide|1 +(adj)|wide |broad +coup|2 +(noun)|coup d'etat|putsch|takeover|group action +(noun)|success +coup d'etat|1 +(noun)|coup|putsch|takeover|group action +coup d'oeil|1 +(noun)|glance|glimpse|look|looking|looking at +coup de grace|1 +(noun)|deathblow|killing|kill|putting to death +coup de main|1 +(noun)|surprise attack|attack|onslaught|onset|onrush +coup de theatre|3 +(noun)|surprise +(noun)|stagecraft +(noun)|theatrical production|staging +coupe|1 +(noun)|car|auto|automobile|machine|motorcar +couperin|1 +(noun)|Couperin|Francois Couperin|organist|composer +couple|9 +(noun)|small indefinite quantity|small indefinite amount +(noun)|mates|match|family|family unit +(noun)|twosome|duo|duet|pair +(noun)|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|unit|building block +(verb)|match|mate|pair|twin|join|bring together +(verb)|couple on|couple up|attach +(verb)|pair|pair off|partner off|unite|unify +(verb)|copulate|mate|pair|join|conjoin +couple on|1 +(verb)|couple|couple up|attach +couple up|1 +(verb)|couple|couple on|attach +coupled|2 +(adj)|conjugate|conjugated|united +(adj)|joined|linked|connected +coupler|1 +(noun)|coupling|mechanical device +couplet|2 +(noun)|couple|pair|twosome|twain|brace|span|yoke|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|stanza +coupling|3 +(noun)|yoke|connection|connexion|connector|connecter|connective +(noun)|coupler|mechanical device +(noun)|mating|pairing|conjugation|union|sexual union|sexual activity|sexual practice|sex|sex activity +coupon|2 +(noun)|voucher|commercial document|commercial instrument +(noun)|sample +coupon bond|1 +(noun)|bearer bond|bond|bond certificate +courage|1 +(noun)|courageousness|bravery|spirit +courageous|1 +(adj)|brave |fearless|desperate|heroic|gallant|game|gamy|gamey|gritty|mettlesome|spirited|spunky|lionhearted|stalwart|stouthearted|valiant|valorous|undaunted|adventurous|adventuresome|bold|resolute|unafraid|fearless +courageously|1 +(adv)|bravely +courageousness|1 +(noun)|courage|bravery|spirit +courbaril|1 +(noun)|Hymenaea courbaril|locust tree|locust +courbaril copal|1 +(noun)|copal +courbet|1 +(noun)|Courbet|Gustave Courbet|painter +coureur de bois|1 +(noun)|trapper +courgette|2 +(noun)|zucchini|marrow|marrow squash|vegetable marrow +(noun)|zucchini|summer squash +courier|1 +(noun)|messenger|traveler|traveller +courlan|1 +(noun)|Aramus guarauna|wading bird|wader +course|12 +(noun)|course of study|course of instruction|class|education|instruction|teaching|pedagogy|educational activity +(noun)|line|series +(noun)|facility|installation +(noun)|course of action|action +(noun)|path|track|line +(noun)|trend|direction|way +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|row|layer|bed +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|run|flow|feed|move +(verb)|hunt|run|hunt down|track down +(adv)|naturally|of course +course catalog|1 +(noun)|course catalogue|prospectus|catalog|catalogue +course catalogue|1 +(noun)|course catalog|prospectus|catalog|catalogue +course credit|1 +(noun)|credit|attainment +course of action|1 +(noun)|course|action +course of instruction|1 +(noun)|course|course of study|class|education|instruction|teaching|pedagogy|educational activity +course of lectures|1 +(noun)|course|course of study|course of instruction|class +course of study|2 +(noun)|program|programme|curriculum|syllabus|information|info +(noun)|course|course of instruction|class|education|instruction|teaching|pedagogy|educational activity +course session|1 +(noun)|class period|recitation|session +courser|1 +(noun)|shorebird|shore bird|limicoline bird +coursework|1 +(noun)|work +coursing|1 +(noun)|hunt|hunting +court|13 +(noun)|tribunal|judicature|assembly +(noun)|royal court|government|authorities|regime +(noun)|playing field|athletic field|playing area|field +(noun)|courtroom|room +(noun)|courtyard|yard|grounds|curtilage +(noun)|residence +(noun)|royal court|cortege|retinue|suite|entourage +(noun)|motor hotel|motor inn|motor lodge|tourist court|hotel +(noun)|Court|Margaret Court|tennis player +(noun)|homage|deference|respect +(verb)|woo|romance|solicit|act|move +(verb)|woo +(verb)|act|move +court-martial|3 +(noun)|military court +(noun)|trial +(verb)|judge|adjudicate|try +court card|1 +(noun)|face card|picture card|playing card +court favor|1 +(verb)|curry favor|curry favour|court favour|fawn|toady|truckle|bootlick|kowtow|kotow|suck up +court favour|1 +(verb)|curry favor|curry favour|court favor|fawn|toady|truckle|bootlick|kowtow|kotow|suck up +court game|1 +(noun)|athletic game +court of appeals|1 +(noun)|appellate court|appeals court|court|tribunal|judicature +court of assize|1 +(noun)|assizes|court of assize and nisi prius|court|tribunal|judicature +court of assize and nisi prius|1 +(noun)|assizes|court of assize|court|tribunal|judicature +court of chancery|1 +(noun)|chancery|court|tribunal|judicature +court of domestic relations|1 +(noun)|family court|domestic relations court|court|tribunal|judicature +court of saint james's|1 +(noun)|Court of Saint James's|court|royal court +court order|1 +(noun)|writ|judicial writ +court plaster|1 +(noun)|plaster|adhesive plaster|sticking plaster +court tennis|1 +(noun)|royal tennis|real tennis|tennis|lawn tennis +courtelle|1 +(noun)|Courtelle|acrylic +courteous|2 +(adj)|gracious|nice|polite +(adj)|courteous |chivalrous|gallant|knightly|respectful +courteously|1 +(adv)|politely|with courtesy|in a well mannered way|with politeness +courtesan|1 +(noun)|concubine|doxy|odalisque|paramour|mistress|kept woman|fancy woman +courtesy|3 +(noun)|politeness|civility +(noun)|remark|comment +(noun)|good manners|manner|personal manner +courthouse|2 +(noun)|government building +(noun)|house +courtier|1 +(noun)|attendant|attender|tender +courting|1 +(noun)|courtship|wooing|suit|entreaty|prayer|appeal +courtliness|1 +(noun)|elegance +courtly|1 +(adj)|elegant|formal|stately|dignified +courtly love|1 +(noun)|code of conduct|code of behavior +courtroom|1 +(noun)|court|room +courtship|1 +(noun)|wooing|courting|suit|entreaty|prayer|appeal +courtyard|1 +(noun)|court|yard|grounds|curtilage +couscous|2 +(noun)|dish +(noun)|pasta|alimentary paste +cousin|1 +(noun)|first cousin|cousin-german|full cousin|relative|relation +cousin-german|1 +(noun)|cousin|first cousin|full cousin|relative|relation +cousinly|1 +(adj)|cousinly |avuncular +cousteau|1 +(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer|adventurer +couth|1 +(adj)|refined +couthie|1 +(adj)|couthy|friendly +couthy|1 +(adj)|couthie|friendly +couture|1 +(noun)|dressmaking +couturier|1 +(noun)|fashion designer|clothes designer|designer|creator +couvade|1 +(noun)|custom|usage|usance +couverture|1 +(noun)|chocolate +covalence|1 +(noun)|covalency|valence|valency +covalency|1 +(noun)|covalence|valence|valency +covalent|1 +(adj)|valence|valency +covalent bond|1 +(noun)|chemical bond|bond +covariance|1 +(noun)|variance +cove|2 +(noun)|inlet|recess +(noun)|cave +coven|1 +(noun)|assembly +covenant|4 +(noun)|compact|concordat|written agreement +(noun)|agreement|understanding +(verb)|pledge|plight +(verb)|pledge|plight +coventry|2 +(noun)|banishment|ostracism|Coventry|exclusion +(noun)|Coventry|city|metropolis|urban center +cover|35 +(noun)|screen|covert|concealment|covering +(noun)|blanket|bedclothes|bed clothing|bedding +(noun)|covering|screening|masking|concealment|concealing|hiding +(noun)|binding|book binding|back|protective covering|protective cover|protection +(noun)|covering|natural covering|natural object +(noun)|top|covering +(noun)|covering fire|fire|firing +(noun)|cover charge|fixed charge|fixed cost|fixed costs +(noun)|cover version|cover song|recording +(noun)|concealment|concealing|hiding +(verb)|spread over|touch|adjoin|meet|contact +(verb)|extend|be +(verb)|satisfy|fulfill|fulfil|live up to +(verb)|treat|handle|plow|deal|address|broach|initiate +(verb)|embrace|encompass|comprehend|include +(verb)|traverse|track|cross|pass over|get over|get across|cut through|cut across|pass|go through|go across +(verb)|report|inform +(verb)|protect +(verb)|protect +(verb)|cover up|hide|conceal +(verb)|protect +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +(verb)|insure|underwrite|guarantee|warrant +(verb)|compensate|overcompensate|compensate|counterbalance|correct|even out|even off|even up +(verb)|endow|indue|gift|empower|invest|endue +(verb)|substitute|deputize|deputise|step in +(verb)|be +(verb)|hide|conceal +(verb)|shroud|enshroud|hide|envelop|enfold|enwrap|wrap|enclose +(verb)|breed|copulate|mate|pair|couple +(verb)|overlay +(verb)|play +(verb)|protect +(verb)|brood|hatch|incubate|reproduce|procreate|multiply +(verb)|wrap up|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +cover-up|1 +(noun)|concealment|concealing|hiding +cover charge|1 +(noun)|cover|fixed charge|fixed cost|fixed costs +cover crop|1 +(noun)|crop|harvest +cover for|1 +(verb)|protect +cover girl|1 +(noun)|pin-up|lovely|photographer's model +cover glass|1 +(noun)|cover slip|plate glass|sheet glass +cover letter|1 +(noun)|covering letter|letter|missive +cover plate|1 +(noun)|covering +cover slip|1 +(noun)|cover glass|plate glass|sheet glass +cover song|1 +(noun)|cover|cover version|recording +cover up|1 +(verb)|cover|hide|conceal +cover version|1 +(noun)|cover|cover song|recording +coverage|3 +(noun)|insurance coverage|sum|sum of money|amount|amount of money +(noun)|extent +(noun)|reporting|reportage|news +coverall|1 +(noun)|protective garment +covered|2 +(adj)|covered |ariled|arillate|awninged|barnacled|beaded|beplastered|besmeared|daubed|bristling with|canopied|cloaked|clothed|draped|mantled|wrapped|crusted|encrusted|crusty|crustlike|dabbled|spattered|splashed|splashy|splattered|drenched|drenched in|moon-splashed|moss-grown|mossy|mud-beplastered|muffled|overgrown|peritrichous|plastered|sealed|sealed|smothered|snow-clad|snow-covered|snowy|strewn|sun-drenched|thickspread|tiled|white|snowy +(adj)|veiled +covered bridge|1 +(noun)|bridge|span +covered couch|1 +(noun)|litter +covered option|1 +(noun)|option +covered smut|1 +(noun)|smut|smut fungus +covered stadium|1 +(noun)|dome|domed stadium|stadium|bowl|arena|sports stadium +covered stand|1 +(noun)|grandstand|stand|stands +covered wagon|1 +(noun)|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon|waggon +covering|5 +(noun)|natural covering|cover|natural object +(noun)|artifact|artefact +(noun)|cover|screening|masking|concealment|concealing|hiding +(noun)|protection +(noun)|application|coating|manual labor|manual labour +covering fire|1 +(noun)|cover|fire|firing +covering letter|1 +(noun)|cover letter|letter|missive +covering material|1 +(noun)|building material +coverlet|1 +(noun)|bedspread|bedcover|bed cover|bed covering|counterpane|spread +covert|4 +(adj)|covert |backstair|backstairs|furtive|black|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|undercover|underground|closet|secret|collusive|conniving|cloaked|disguised|masked|secret|sub-rosa|under-the-table|behind-the-scenes|subterranean|subterraneous|ulterior|under wraps|undisclosed|unrevealed|implicit|inexplicit|invisible|unseeable|concealed +(adj)|protected |secure +(noun)|flock +(noun)|screen|cover|concealment|covering +covert operation|1 +(noun)|operation|military operation +covet|1 +(verb)|envy|begrudge +coveted|1 +(adj)|desired|in demand|sought after|desirable +covetous|2 +(adj)|envious|jealous|desirous +(adj)|avaricious|grabby|grasping|greedy|prehensile|acquisitive +covetously|2 +(adv)|enviously|jealously +(adv)|avariciously|greedily +covetousness|3 +(noun)|envy|enviousness|the green-eyed monster +(noun)|avarice|avariciousness|cupidity|greed +(noun)|avarice|greed|rapacity|avaritia|mortal sin|deadly sin +covey|2 +(noun)|gathering|assemblage +(noun)|flock +coville|1 +(noun)|creosote bush|hediondilla|Larrea tridentata|shrub|bush +cow|4 +(noun)|moo-cow|cattle|cows|kine|oxen|Bos taurus +(noun)|placental|placental mammal|eutherian|eutherian mammal +(noun)|unpleasant woman|disagreeable woman +(verb)|overawe|awe +cow's head|1 +(noun)|Morchella semilibera|half-free morel|morel +cow-nosed ray|1 +(noun)|cownose ray|Rhinoptera bonasus|eagle ray +cow-tongue fern|1 +(noun)|Florida strap fern|hart's-tongue fern|strap fern +cow barn|2 +(noun)|cowbarn|cowshed|cowhouse|barn +(noun)| +cow chip|1 +(noun)|chip|cow dung|buffalo chip|droppings|dung|muck +cow cockle|1 +(noun)|cowherb|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower +cow dung|1 +(noun)|chip|cow chip|buffalo chip|droppings|dung|muck +cow lily|1 +(noun)|spatterdock|yellow pond lily|Nuphar advena|water lily +cow man|2 +(noun)|cattleman|beef man|stockman|stock raiser|stock farmer +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand +cow manure|1 +(noun)|manure +cow oak|1 +(noun)|basket oak|Quercus prinus|Quercus montana|chestnut oak +cow parsley|1 +(noun)|wild chervil|Anthriscus sylvestris|herb|herbaceous plant +cow parsnip|1 +(noun)|hogweed|Heracleum sphondylium|herb|herbaceous plant +cow pasture|1 +(noun)|pasture|pastureland|grazing land|lea|ley +cow pen|1 +(noun)|cattle pen|corral|pen +cow pie|2 +(noun)|cowpie|droppings|dung|muck +(noun)| +cow pony|1 +(noun)|saddle horse|riding horse|mount +cow shark|1 +(noun)|six-gilled shark|Hexanchus griseus|shark +cowage|2 +(noun)|pod|seedpod +(noun)|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +coward|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist|playwright|actor|histrion|player|thespian|role player|composer +cowardice|1 +(noun)|cowardliness|spirit +cowardliness|1 +(noun)|cowardice|spirit +cowardly|1 +(adj)|cowardly |fearful|caitiff|chicken|chickenhearted|lily-livered|white-livered|yellow|yellow-bellied|dastard|dastardly|faint|fainthearted|timid|funky|poltroon|pusillanimous|poor-spirited|unmanly|craven|recreant|afraid|ignoble|timid +cowbarn|1 +(noun)|cowshed|cow barn|cowhouse|barn +cowbell|1 +(noun)|bell +cowberry|2 +(noun)|mountain cranberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry +(noun)|lingonberry|mountain cranberry|lowbush cranberry|berry +cowbird|1 +(noun)|New World blackbird|blackbird +cowboy|3 +(noun)|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand +(noun)|rodeo rider|performer|performing artist +(noun)|adventurer|venturer +cowboy boot|1 +(noun)|cowboy boots|boot +cowboy boots|2 +(noun)|cowboy boot|boot +(noun)|cowboy boot|boot +cowboy hat|1 +(noun)|ten-gallon hat|hat|chapeau|lid +cowcatcher|1 +(noun)|fender|buffer|pilot|framework|frame|framing +cowed|1 +(adj)|browbeaten|bullied|hangdog|intimidated|afraid +cower|2 +(verb)|huddle|crouch|stoop|bend|bow +(verb)|fawn|crawl|creep|cringe|grovel|bend|flex +cowfish|1 +(noun)|Lactophrys quadricornis|boxfish|trunkfish +cowgirl|1 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +cowhand|1 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowherd|ranch hand +cowherb|1 +(noun)|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower +cowherd|1 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|ranch hand +cowhide|4 +(noun)|cowskin|leather +(noun)|hide|fell +(noun)|whip +(verb)|flog|welt|whip|lather|lash|slash|strap|trounce +cowhouse|1 +(noun)|cowbarn|cowshed|cow barn|barn +cowl|3 +(noun)|hood|bonnet|cowling|protective covering|protective cover|protection +(noun)|hood +(verb)|cover +cowl muscle|1 +(noun)|trapezius|trapezius muscle|musculus trapezius|skeletal muscle|striated muscle +cowled|1 +(adj)|clothed |clad +cowlick|1 +(noun)|hair +cowling|1 +(noun)|hood|bonnet|cowl|protective covering|protective cover|protection +cowman|1 +(noun)|cowboy|cowpuncher|puncher|cattleman|cowpoke|cowhand|cowherd|ranch hand +cownose ray|1 +(noun)|cow-nosed ray|Rhinoptera bonasus|eagle ray +cowpea|3 +(noun)|black-eyed pea|legume +(noun)|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume|leguminous plant +(noun)|black-eyed pea|legume +cowpea plant|1 +(noun)|cowpea|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume|leguminous plant +cowpen daisy|1 +(noun)|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +cowpens|1 +(noun)|Cowpens|battle of Cowpens|pitched battle +cowper|2 +(noun)|Cowper|William Cowper|surgeon|operating surgeon|sawbones +(noun)|Cowper|William Cowper|poet +cowper's gland|1 +(noun)|Cowper's gland|bulbourethral gland|exocrine gland|duct gland +cowpie|1 +(noun)|cow pie|droppings|dung|muck +cowpoke|1 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowhand|cowherd|ranch hand +cowpox|1 +(noun)|vaccinia|animal disease|pox +cowpuncher|1 +(noun)|cowboy|puncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand +cowrie|1 +(noun)|cowry|gastropod|univalve +cowry|1 +(noun)|cowrie|gastropod|univalve +cows|4 +(noun)|cattle|kine|oxen|Bos taurus|bovine +(noun)|cow|moo-cow|cattle|kine|oxen|Bos taurus +(noun)|cow|placental|placental mammal|eutherian|eutherian mammal +(noun)|cow|unpleasant woman|disagreeable woman +cows' milk|1 +(noun)|milk +cowshed|1 +(noun)|cowbarn|cow barn|cowhouse|barn +cowskin|1 +(noun)|cowhide|leather +cowslip|2 +(noun)|paigle|Primula veris|primrose|primula +(noun)|marsh marigold|kingcup|meadow bright|May blob|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +cox|3 +(noun)|cyclooxygenase|Cox|enzyme +(noun)|coxswain|helmsman|steersman|steerer +(verb)|be|follow +cox's orange pippin|1 +(noun)|Cox's Orange Pippin|Pippin +cox-1|1 +(noun)|cyclooxygenase-1|Cox-1|cyclooxygenase|Cox +cox-2|1 +(noun)|cyclooxygenase-2|Cox-2|cyclooxygenase|Cox +cox-2 inhibitor|1 +(noun)|Cox-2 inhibitor|anti-inflammatory|anti-inflammatory drug +coxa|1 +(noun)|hip|hip joint|articulatio coxae|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +coxcomb|3 +(noun)|cockscomb|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +(noun)|cockscomb|cap +(noun)|comb|cockscomb|crest +coxsackie virus|2 +(noun)|coxsackievirus|Coxsackie virus|enterovirus +(noun)| +coxsackievirus|1 +(noun)|Coxsackie virus|enterovirus +coxswain|1 +(noun)|cox|helmsman|steersman|steerer +coy|3 +(adj)|demure|overmodest|modest +(adj)|indefinite +(adj)|timid +coydog|1 +(noun)|coyote|prairie wolf|brush wolf|Canis latrans +coyness|1 +(noun)|demureness|affectedness +coyol|1 +(noun)|coyol palm|Acrocomia vinifera|feather palm +coyol palm|1 +(noun)|coyol|Acrocomia vinifera|feather palm +coyote|3 +(noun)|prairie wolf|brush wolf|Canis latrans|wolf +(noun)|smuggler|runner|contrabandist|moon curser|moon-curser +(noun)|fire warden|forest fire fighter|ranger +coyote brush|1 +(noun)|coyote bush|chaparral broom|kidney wort|Baccharis pilularis|shrub|bush +coyote bush|1 +(noun)|coyote brush|chaparral broom|kidney wort|Baccharis pilularis|shrub|bush +coyote state|1 +(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state +coypu|1 +(noun)|nutria|Myocastor coypus|rodent|gnawer|gnawing animal +cozen|3 +(verb)|deceive|lead on|delude|victimize|victimise +(verb)|cheat|chisel +(verb)|acquire|win|gain|cheat|rip off|chisel +cozenage|1 +(noun)|scam|swindle|cheat|rig +cozey|1 +(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|tea cozey|cozie|tea cozie|cloth covering +cozie|1 +(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|tea cozie|cloth covering +cozily|1 +(adv)|cosily +coziness|1 +(noun)|cosiness|snugness|comfort|comfortableness +cozy|4 +(adj)|cosy|snug|comfortable |comfy +(adj)|intimate|informal|friendly +(adj)|close +(noun)|cosy|tea cosy|cosey|tea cosey|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +cozy up|1 +(verb)|cotton up|shine up|play up|sidle up|suck up|ingratiate +cpa|1 +(noun)|certified public accountant|CPA|accountant|comptroller|controller +cpi|2 +(noun)|consumer price index|CPI|cost-of-living index|price index|price level +(noun)|California Personality Inventory|CPI|self-report personality inventory|self-report inventory +cpr|1 +(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|kiss of life|resuscitation|emergency procedure +cps|1 +(noun)|Hertz|Hz|cycle per second|cycles/second|cycle|rate +cpu|1 +(noun)|central processing unit|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment|hardware|computer hardware +cpu board|1 +(noun)|CPU board|mother board|circuit board|circuit card|board|card +cr|1 +(noun)|chromium|Cr|atomic number 24|metallic element|metal +crab|11 +(noun)|decapod crustacean|decapod +(noun)|crabby person|grouch|grump|crank|churl|crosspatch +(noun)|Cancer|Crab|person|individual|someone|somebody|mortal|human|soul +(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|crabmeat|shellfish +(noun)|crab louse|pubic louse|Phthirius pubis|louse|sucking louse +(noun)|rowing|row +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(verb)|scurry|scamper|skitter|scuttle +(verb)|fish +(verb)|gripe|grouse|beef|squawk|bellyache|holler|complain|kick|plain|sound off|quetch|kvetch +crab-eating dog|1 +(noun)|crab-eating fox|Dusicyon cancrivorus|wild dog +crab-eating fox|1 +(noun)|crab-eating dog|Dusicyon cancrivorus|wild dog +crab-eating macaque|1 +(noun)|croo monkey|Macaca irus|macaque +crab-eating opossum|1 +(noun)|opossum|possum +crab-eating raccoon|1 +(noun)|Procyon cancrivorus|raccoon|racoon +crab-eating seal|1 +(noun)|crabeater seal|seal +crab apple|4 +(noun)|crabapple|cultivated crab apple|apple tree +(noun)|wild apple|crabapple|apple tree +(noun)|crabapple|apple +(noun)| +crab cactus|1 +(noun)|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus +crab cocktail|1 +(noun)|cocktail +crab grass|2 +(noun)|crabgrass|finger grass|grass +(noun)| +crab legs|1 +(noun)|crab|crabmeat +crab louis|1 +(noun)|crab Louis|salad +crab louse|1 +(noun)|pubic louse|crab|Phthirius pubis|louse|sucking louse +crab nebula|1 +(noun)|Crab Nebula|supernova +crabapple|3 +(noun)|crab apple|cultivated crab apple|apple tree +(noun)|wild apple|crab apple|apple tree +(noun)|crab apple|apple +crabapple jelly|1 +(noun)|apple jelly +crabbed|1 +(adj)|crabby|cross|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured +crabbedness|1 +(noun)|crabbiness|crossness|ill nature +crabbiness|1 +(noun)|crabbedness|crossness|ill nature +crabby|1 +(adj)|crabbed|cross|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured +crabby person|1 +(noun)|crab|grouch|grump|crank|churl|crosspatch +crabeater seal|1 +(noun)|crab-eating seal|seal +crabgrass|1 +(noun)|crab grass|finger grass|grass +crabmeat|1 +(noun)|crab|shellfish +crabs|8 +(noun)|pediculosis pubis|pediculosis|lousiness +(noun)|crab|decapod crustacean|decapod +(noun)|crab|crabby person|grouch|grump|crank|churl|crosspatch +(noun)|Cancer|Crab|person|individual|someone|somebody|mortal|human|soul +(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|crab|crabmeat|shellfish +(noun)|crab louse|pubic louse|crab|Phthirius pubis|louse|sucking louse +(noun)|crab|rowing|row +crabwise|1 +(adj)|sideways|oblique +cracidae|1 +(noun)|Cracidae|family Cracidae|bird family +crack|23 +(adj)|ace|A-one|first-rate|super|tiptop|topnotch|tops|superior +(noun)|cleft|crevice|fissure|scissure|opening|gap +(noun)|gap|opening +(noun)|crevice|cranny|fissure|chap|depression|impression|imprint +(noun)|cracking|snap|noise +(noun)|shot|opportunity|chance +(noun)|wisecrack|sally|quip|remark|comment +(noun)|blemish|defect|mar +(noun)|tornado|cocaine|cocain +(noun)|fling|go|pass|whirl|offer|attempt|effort|endeavor|endeavour|try +(noun)|fracture|cracking|breakage|break|breaking +(verb)|check|break|change +(verb)|sound|go +(verb)|snap|sound|go +(verb)|hit +(verb)|break through|pass|go through|go across +(verb)|check|break +(verb)|snap|break|separate|split up|fall apart|come apart +(verb)|crack up|crock up|break up|collapse|suffer|sustain|have|get +(verb)|tell|narrate|recount|recite +(verb)|change|alter|modify +(verb)|decompose|break up|break down +(verb)|change +crack-up|1 +(noun)|breakdown|collapse +crack addict|1 +(noun)|binger|drug addict|junkie|junky +crack down|1 +(verb)|clamp down|restrict|restrain|trammel|limit|bound|confine|throttle +crack of doom|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|end of the world|day +crack shot|1 +(noun)|marksman|sharpshooter|shot|shooter +crack up|3 +(verb)|crack|crock up|break up|collapse|suffer|sustain|have|get +(verb)|laud|extol|exalt|glorify|proclaim +(verb)|break up|laugh|express joy|express mirth +crack willow|1 +(noun)|brittle willow|snap willow|Salix fragilis|willow|willow tree +crackbrained|1 +(adj)|idiotic|insane +crackdown|1 +(noun)|suppression|crushing|quelling|stifling +cracked|4 +(adj)|chapped|roughened|rough |unsmooth +(adj)|broken +(adj)|alligatored|rough |unsmooth +(adj)|balmy|barmy|bats|batty|bonkers|buggy|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +cracked-wheat bread|1 +(noun)|bread|breadstuff|staff of life +cracker|5 +(noun)|bread|breadstuff|staff of life +(noun)|redneck|rustic +(noun)|programmer|computer programmer|coder|software engineer +(noun)|firecracker|banger|firework|pyrotechnic +(noun)|snapper|cracker bonbon|party favor|party favour|favor|favour +cracker-barrel|1 +(adj)|folksy|homespun|rural +cracker bonbon|1 +(noun)|cracker|snapper|party favor|party favour|favor|favour +cracker box|1 +(noun)|crate +cracker crumbs|1 +(noun)|crumb +crackerberry|1 +(noun)|bunchberry|dwarf cornel|pudding berry|Cornus canadensis|dogwood|dogwood tree|cornel +crackerjack|2 +(noun)|jimdandy|jimhickey|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch +(noun)|jimdandy|jimhickey|thing +crackers|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +cracking|4 +(adj)|bang-up|bully|corking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(noun)|crack|snap|noise +(noun)|fracture|crack|breakage|break|breaking +(noun)|chemical process|chemical change|chemical action +crackle|6 +(adj)|fancy +(noun)|crackling|crepitation|noise +(noun)|crackleware|crackle china|china +(verb)|crepitate|rattle +(verb)|crunch|scranch|scraunch|make noise|resound|noise +(verb)|change|alter|vary +crackle china|1 +(noun)|crackle|crackleware|china +crackleware|1 +(noun)|crackle|crackle china|china +crackling|1 +(noun)|crackle|crepitation|noise +cracklings|2 +(noun)|edible fat +(noun)|crackle|crackling|crepitation|noise +crackpot|1 +(noun)|crank|nut|nut case|nutcase|fruitcake|screwball|eccentric|eccentric person|flake|oddball|geek +cracksman|1 +(noun)|safebreaker|safecracker|thief|stealer +cracow|1 +(noun)|Cracow|Krakow|Krakau|city|metropolis|urban center +cracticidae|1 +(noun)|Cracticidae|family Cracticidae|bird family +cracticus|1 +(noun)|Cracticus|genus Cracticus|bird genus +cradle|10 +(noun)|baby bed|baby's bed +(noun)|birthplace|place of origin|provenance|beginning|origin|root|rootage|source +(noun)|birth +(noun)|rocker|trough +(verb)|hold|take hold +(verb)|rear|raise|bring up|nurture|parent +(verb)|hold|take hold +(verb)|cut +(verb)|wash|launder +(verb)|play +cradle cap|1 +(noun)|dermatitis +cradlesong|2 +(noun)|lullaby|berceuse|song +(noun)|lullaby|song|strain +craft|6 +(noun)|trade|occupation|business|job|line of work|line +(noun)|vehicle +(noun)|trade|class|social class|socio-economic class +(noun)|craftsmanship|workmanship|skill|accomplishment|acquirement|acquisition|attainment +(noun)|craftiness|cunning|foxiness|guile|slyness|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +(verb)|fashion|forge +craft fair|1 +(noun)|bazaar|fair +craft union|1 +(noun)|union|labor union|trade union|trades union|brotherhood +crafter|1 +(noun)|craftsman|creator +craftily|1 +(adv)|cunningly|foxily|knavishly|slyly|trickily|artfully +craftiness|2 +(noun)|craft|cunning|foxiness|guile|slyness|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +(noun)|deceitfulness|guile|disingenuousness +craftsman|3 +(noun)|professional|professional person +(noun)|crafter|creator +(noun)|artisan|journeyman|artificer|skilled worker|trained worker +craftsmanship|1 +(noun)|craft|workmanship|skill|accomplishment|acquirement|acquisition|attainment +crafty|1 +(adj)|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful +crag|1 +(noun)|cliff|drop|drop-off +cragfast|1 +(adj)|stuck +cragged|1 +(adj)|craggy|hilly|mountainous|rough |unsmooth +craggy|2 +(adj)|cragged|hilly|mountainous|rough |unsmooth +(adj)|rugged|cliffy |clifflike +cragsman|1 +(noun)|rock climber|climber +craig ventner|1 +(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist +craigie|1 +(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer|lexicologist +crake|1 +(noun)|rail +cram|4 +(verb)|jam|jampack|ram|chock up|wad|stuff +(verb)|put|set|place|pose|position|lay +(verb)|grind away|drum|bone up|swot|get up|mug up|swot up|bone|study|hit the books +(verb)|fix|prepare|set up|ready|gear up|set +cram full|1 +(adj)|chockablock|chock-full|chockful|choke-full|chuck-full|full +crambe|1 +(noun)|Crambe|genus Crambe|dilleniid dicot genus +crambe maritima|1 +(noun)|sea kale|sea cole|Crambe maritima|herb|herbaceous plant +crammer|4 +(noun)|student|pupil|educatee +(noun)|coach|private instructor|tutor +(noun)|school +(noun)|textbook|text|text edition|schoolbook|school text +cramp|5 +(noun)|spasm|muscle spasm|symptom +(noun)|clamp +(noun)|cramp iron|strip|slip +(verb)|fasten|fix|secure +(verb)|hamper|halter|strangle|restrict|restrain|trammel|limit|bound|confine|throttle +cramp iron|1 +(noun)|cramp|strip|slip +crampbark|1 +(noun)|guelder rose|European cranberrybush|European cranberry bush|cranberry tree|Viburnum opulus|shrub|bush +cramped|1 +(adj)|incommodious +crampfish|1 +(noun)|electric ray|numbfish|torpedo|ray +crampon|2 +(noun)|crampoon|grapnel|grapple|grappler|grappling hook|grappling iron +(noun)|crampoon|climbing iron|climber|spike +crampoon|2 +(noun)|crampon|grapnel|grapple|grappler|grappling hook|grappling iron +(noun)|crampon|climbing iron|climber|spike +cran|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cranberry|2 +(noun)|shrub|bush +(noun)|berry|berry +cranberry bush|1 +(noun)|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub|bush +cranberry culture|1 +(noun)|culture +cranberry heath|1 +(noun)|native cranberry|groundberry|ground-berry|Astroloma humifusum|Styphelia humifusum|shrub|bush +cranberry juice|1 +(noun)|fruit juice|fruit crush +cranberry sauce|1 +(noun)|condiment +cranberry tree|2 +(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|Viburnum opulus|shrub|bush +(noun)|cranberry bush|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub|bush +cranch|1 +(verb)|crunch|craunch|grind|press +crane|5 +(noun)|Crane|Stephen Crane|writer|author +(noun)|Crane|Hart Crane|Harold Hart Crane|poet +(noun)|lifting device +(noun)|wading bird|wader +(verb)|stretch out|stretch|extend +crane's bill|1 +(noun)|cranesbill|geranium +crane fly|1 +(noun)|daddy longlegs|dipterous insect|two-winged insects|dipteran|dipteron +cranelike|1 +(adj)|animal +cranesbill|1 +(noun)|crane's bill|geranium +crangon|1 +(noun)|Crangon|genus Crangon|arthropod genus +crangonidae|1 +(noun)|Crangonidae|family Crangonidae|arthropod family +cranial|1 +(adj)|bone|os +cranial cavity|1 +(noun)|intracranial cavity|cavity|bodily cavity|cavum +cranial index|1 +(noun)|cephalic index|breadth index|ratio +cranial nerve|1 +(noun)|nerve|nervus +cranial orbit|1 +(noun)|eye socket|orbit|orbital cavity|cavity|bodily cavity|cavum +craniata|1 +(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum +craniate|1 +(noun)|vertebrate|chordate +craniologist|1 +(noun)|phrenologist|mountebank|charlatan +craniometer|1 +(noun)|measuring instrument|measuring system|measuring device +craniometric|1 +(adj)|craniometrical|physical anthropology +craniometric point|1 +(noun)|landmark +craniometrical|1 +(adj)|craniometric|physical anthropology +craniometry|1 +(noun)|physical anthropology +craniotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +cranium|1 +(noun)|braincase|brainpan|bone|os +crank|10 +(adj)|cranky|tender|tippy|unstable +(noun)|grouch|grump|churl|crosspatch|unpleasant person|disagreeable person +(noun)|crackpot|nut|nut case|nutcase|fruitcake|screwball|eccentric|eccentric person|flake|oddball|geek +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|starter|hand tool +(verb)|zigzag|travel|go|move|locomote +(verb)|crank up|start|start up +(verb)|crank up|rotate|circumvolve +(verb)|fasten|fix|secure +(verb)|flex|bend|deform|twist|turn +crank call|1 +(noun)|call|phone call|telephone call +crank handle|1 +(noun)|starting handle|crank|starter +crank letter|1 +(noun)|letter|missive +crank out|1 +(verb)|grind out|produce|bring forth +crank up|2 +(verb)|crank|start|start up +(verb)|crank|rotate|circumvolve +crankcase|1 +(noun)|housing +crankiness|1 +(noun)|crotchetiness|contrariness|grumpiness|ill nature +crankshaft|1 +(noun)|rotating shaft|shaft +cranky|2 +(adj)|crank|tender|tippy|unstable +(adj)|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|techy|ill-natured +crannied|1 +(adj)|crannied +cranny|2 +(noun)|crevice|crack|fissure|chap|depression|impression|imprint +(noun)|hole +crap|3 +(noun)|dirt|shit|shite|poop|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|bullshit|bull|Irish bull|horseshit|shit|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +(verb)|stool|defecate|shit|take a shit|take a crap|ca-ca|make|excrete|egest|eliminate|pass +crap-shooter|2 +(noun)|shooter|gambler +(noun)|crapshooter|gambler +crap game|1 +(noun)|craps|crap shooting|crapshoot|game of chance|gambling game +crap shooting|1 +(noun)|craps|crapshoot|crap game|game of chance|gambling game +crap up|1 +(verb)|clog|choke off|clog up|back up|congest|choke|foul +crapaud|1 +(noun)|South American bullfrog|Leptodactylus pentadactylus|frog|toad|toad frog|anuran|batrachian|salientian +crape|4 +(noun)|crepe|French pancake|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +(noun)|crepe|fabric|cloth|material|textile +(verb)|crepe|cover +(verb)|crimp|frizzle|frizz|kink up|kink|curl|wave +crape fern|1 +(noun)|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +crape jasmine|1 +(noun)|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +crape myrtle|1 +(noun)|crepe myrtle|crepe flower|Lagerstroemia indica|shrub|bush +crapette|1 +(noun)|Russian bank|solitaire|patience +crapper|1 +(noun)|toilet|can|commode|pot|potty|stool|throne|plumbing fixture +crappie|2 +(noun)|sunfish +(noun)|sunfish|centrarchid +crappy|1 +(adj)|icky|lousy|rotten|shitty|stinking|stinky|bad +craps|4 +(noun)|snake eyes|two|2|II|deuce +(noun)|crap shooting|crapshoot|crap game|game of chance|gambling game +(noun)|crap|dirt|shit|shite|poop|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +crapshoot|2 +(noun)|risk|peril|danger +(noun)|craps|crap shooting|crap game|game of chance|gambling game +crapshooter|1 +(noun)|gambler +crapulence|1 +(noun)|drink|drinking|boozing|drunkenness|intemperance|intemperateness +crapulent|1 +(adj)|crapulous|gluttonous +crapulous|2 +(adj)|crapulent|gluttonous +(adj)|gluttonous +crash|17 +(noun)|clang|clangor|clangour|clangoring|clank|clash|noise +(noun)|wreck|accident +(noun)|collapse|happening|occurrence|natural event +(noun)|smash|hit|hitting|striking +(noun)|mishap|misadventure|mischance +(verb)|descend|fall|go down|come down +(verb)|move +(verb)|ram|collide|clash +(verb)|pass|go through|go across +(verb)|break up|break apart|disintegrate +(verb)|occupy|reside|lodge in +(verb)|barge in|gate-crash|intrude|irrupt +(verb)|collide +(verb)|dash|hurl|hurtle|cast +(verb)|change +(verb)|go down|fail|go bad|give way|die|give out|conk out|go|break|break down +(verb)|doss|doss down|bed down|bunk down +crash-dive|1 +(verb)|dive|plunge|plunk +crash barrier|1 +(noun)|barrier +crash course|1 +(noun)|crash program|crash programme|course of study|program|programme|curriculum|syllabus +crash dive|1 +(noun)|descent +crash helmet|1 +(noun)|helmet +crash land|1 +(verb)|land|set down +crash landing|1 +(noun)|forced landing|emergency landing +crash program|1 +(noun)|crash course|crash programme|course of study|program|programme|curriculum|syllabus +crash programme|1 +(noun)|crash course|crash program|course of study|program|programme|curriculum|syllabus +crasher|1 +(noun)|gatecrasher|unwelcome guest|intruder|interloper|trespasser +crashing|1 +(adj)|bally|blinking|bloody|blooming|flaming|fucking|unmitigated +craspedia|1 +(noun)|Craspedia|genus Craspedia|asterid dicot genus +crass|1 +(adj)|unrefined +crassitude|1 +(noun)|crassness|insensitivity|insensitiveness +crassness|1 +(noun)|crassitude|insensitivity|insensitiveness +crassostrea|1 +(noun)|Crassostrea|genus Crassostrea|mollusk genus +crassula|1 +(noun)|Crassula|genus Crassula|plant genus +crassulaceae|1 +(noun)|Crassulaceae|family Crassulaceae|stonecrop family|plant family +crataegus|1 +(noun)|Crataegus|genus Crataegus|rosid dicot genus +crataegus aestivalis|1 +(noun)|mayhaw|summer haw|Crataegus aestivalis|hawthorn|haw +crataegus apiifolia|1 +(noun)|parsley haw|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn|haw +crataegus biltmoreana|1 +(noun)|scarlet haw|Crataegus biltmoreana|hawthorn|haw +crataegus calpodendron|1 +(noun)|blackthorn|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn|haw +crataegus coccinea|1 +(noun)|red haw|Crataegus pedicellata|Crataegus coccinea|hawthorn|haw +crataegus coccinea mollis|1 +(noun)|red haw|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn|haw +crataegus crus-galli|1 +(noun)|cockspur thorn|cockspur hawthorn|Crataegus crus-galli|hawthorn|haw +crataegus laevigata|1 +(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +crataegus marshallii|1 +(noun)|parsley haw|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn|haw +crataegus mollis|1 +(noun)|red haw|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn|haw +crataegus monogyna|1 +(noun)|English hawthorn|Crataegus monogyna|hawthorn|haw +crataegus oxyacantha|1 +(noun)|evergreen thorn|Crataegus oxyacantha|hawthorn|haw +crataegus oxycantha|1 +(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +crataegus pedicellata|1 +(noun)|red haw|Crataegus pedicellata|Crataegus coccinea|hawthorn|haw +crataegus tomentosa|1 +(noun)|blackthorn|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn|haw +crate|3 +(noun)|box +(noun)|crateful|containerful +(verb)|encase|incase|case +crateful|1 +(noun)|crate|containerful +crater|3 +(noun)|volcanic crater|crack|cleft|crevice|fissure|scissure +(noun)|Crater|constellation +(noun)|natural depression|depression +crater lake national park|1 +(noun)|Crater Lake National Park|national park +crateva|1 +(noun)|Crateva|genus Crateva|dilleniid dicot genus +craton|1 +(noun)|part|piece +craunch|1 +(verb)|crunch|cranch|grind|press +cravat|1 +(noun)|neckwear +crave|2 +(verb)|hunger|thirst|starve|lust|desire|want +(verb)|beg|implore|pray +craved|1 +(adj)|desired|wanted +craven|2 +(adj)|recreant|cowardly |fearful +(noun)|poltroon|recreant|coward +cravenness|1 +(noun)|cowardice|cowardliness +craving|1 +(noun)|desire +craw|1 +(noun)|crop|stomach|tummy|tum|breadbasket +crawdad|2 +(noun)|crayfish|crawfish|ecrevisse|shellfish +(noun)|crayfish|crawfish|crawdaddy|decapod crustacean|decapod +crawdaddy|1 +(noun)|crayfish|crawfish|crawdad|decapod crustacean|decapod +crawfish|4 +(noun)|crayfish|crawdad|ecrevisse|shellfish +(noun)|crayfish|crawdad|crawdaddy|decapod crustacean|decapod +(noun)|spiny lobster|langouste|rock lobster|crayfish|sea crawfish|lobster +(verb)|retreat|pull back|back out|back away|crawfish out|pull in one's horns|withdraw +crawfish out|1 +(verb)|retreat|pull back|back out|back away|crawfish|pull in one's horns|withdraw +crawford|2 +(noun)|Crawford|Thomas Crawford|sculptor|sculpturer|carver|statue maker +(noun)|Crawford|Joan Crawford|actress +crawl|8 +(noun)|motion|movement|move +(noun)|front crawl|Australian crawl|swimming stroke +(noun)|crawling|creep|creeping|locomotion|travel +(verb)|creep|travel|go|move|locomote +(verb)|feel +(verb)|teem|pullulate|swarm +(verb)|fawn|creep|cringe|cower|grovel|bend|flex +(verb)|swim +crawl in|1 +(verb)|go to bed|turn in|bed|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +crawl space|2 +(noun)|crawlspace|space +(noun)| +crawler|3 +(noun)|sycophant|toady|lackey|flatterer|adulator +(noun)|creeper|person|individual|someone|somebody|mortal|human|soul +(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|dew worm|red worm|oligochaete|oligochaete worm +crawling|1 +(noun)|crawl|creep|creeping|locomotion|travel +crawlspace|1 +(noun)|crawl space|space +crax|1 +(noun)|Crax|genus Crax|bird genus +crayfish|4 +(noun)|spiny lobster|langouste|rock lobster|shellfish +(noun)|crawfish|crawdad|ecrevisse|shellfish +(noun)|crawfish|crawdad|crawdaddy|decapod crustacean|decapod +(noun)|spiny lobster|langouste|rock lobster|crawfish|sea crawfish|lobster +crayon|2 +(noun)|wax crayon|writing implement +(verb)|draw +craze|5 +(noun)|fad|furor|furore|cult|rage|fashion +(noun)|delirium|frenzy|fury|hysteria|mania|manic disorder +(noun)|crack +(verb)|madden +(verb)|crack +crazed|1 +(adj)|deranged|half-crazed|insane +crazily|1 +(adv)|insanely|dementedly|madly +craziness|3 +(noun)|daftness|flakiness|insanity +(noun)|folly|foolishness|stupidity +(noun)|folly|foolery|tomfoolery|lunacy|indulgence|play|frolic|romp|gambol|caper +crazy|7 +(adj)|brainsick|demented|distracted|disturbed|mad|sick|unbalanced|unhinged|insane +(adj)|half-baked|screwball|softheaded|impractical +(adj)|dotty|gaga|enamored|infatuated|in love|smitten|soft on|taken with|loving +(adj)|excited +(adj)|strange |unusual +(adj)|enthusiastic +(noun)|loony|looney|weirdo|lunatic|madman|maniac +crazy bone|1 +(noun)|funny bone|ulnar nerve|cubital nerve|nervus ulnaris +crazy glue|1 +(noun)|Crazy Glue|epoxy|epoxy resin|epoxy glue +crazy horse|1 +(noun)|Crazy Horse|Tashunca-Uitco|Indian chief|Indian chieftain|Sioux|Siouan +crazy house|1 +(noun)|Bedlam|booby hatch|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +crazy quilt|1 +(noun)|patchwork|patchwork quilt +crazy weed|2 +(noun)|locoweed|crazyweed|legume|leguminous plant +(noun)| +crazyweed|1 +(noun)|locoweed|crazy weed|legume|leguminous plant +creak|2 +(noun)|creaking|noise +(verb)|squeak|screech|screak|skreak|make noise|resound|noise +creakily|1 +(adv)|creakingly|screakily +creaking|2 +(adj)|creaky|screaky|noisy +(noun)|creak|noise +creakingly|1 +(adv)|creakily|screakily +creaky|3 +(adj)|decrepit|flea-bitten|run-down|woebegone|worn +(adj)|creaking|screaky|noisy +(adj)|arthritic|rheumatic|rheumatoid|rheumy|unhealthy +cream|7 +(noun)|pick|elite|elite group +(noun)|dairy product +(noun)|ointment|emollient|toiletry|toilet article|toiletries +(verb)|beat|scramble +(verb)|put on|apply +(verb)|skim|skim off|cream off|remove|take|take away|withdraw|cream off +(verb)|modify +cream-colored courser|1 +(noun)|Cursorius cursor|courser +cream-of-tartar tree|1 +(noun)|sour gourd|Adansonia gregorii|angiospermous tree|flowering tree +cream cheese|1 +(noun)|cheese +cream of tartar|1 +(noun)|tartar|potassium hydrogen tartrate|salt +cream off|2 +(verb)|skim|skim off|cream|remove|take|take away|withdraw +(verb)|skim off|choose|take|select|pick out +cream pitcher|1 +(noun)|creamer|pitcher|ewer +cream puff|1 +(noun)|chou|puff +cream sauce|1 +(noun)|white sauce|bechamel sauce|bechamel +cream soda|1 +(noun)|soft drink +cream violet|1 +(noun)|pale violet|striped violet|Viola striata|violet +creamcups|1 +(noun)|Platystemon californicus|poppy +creamer|1 +(noun)|cream pitcher|pitcher|ewer +creamery|1 +(noun)|workplace|work +creaminess|1 +(noun)|soupiness|thickness +creamy|2 +(adj)|chromatic +(adj)|thick +crease|7 +(noun)|fold|plication|flexure|crimp|bend|angular shape|angularity +(noun)|wrinkle|furrow|crinkle|seam|line|depression|impression|imprint +(noun)|kris|creese|dagger|sticker +(verb)|wrinkle|ruckle|crinkle|scrunch|scrunch up|crisp|fold|fold up|turn up +(verb)|furrow|wrinkle|fold|fold up|turn up +(verb)|graze|rake|brush +(verb)|rumple|crumple|wrinkle|crinkle|fold|fold up +crease-resistant|1 +(adj)|creaseproof|wrinkleproof|wrinkle-resistant|depression|impression|imprint +creased|1 +(adj)|crumpled|rumpled|wrinkled +creaseless|1 +(adj)|uncreased|smooth +creaseproof|1 +(adj)|wrinkleproof|crease-resistant|wrinkle-resistant|depression|impression|imprint +creashak|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|Arctostaphylos uva-ursi|bearberry +create|5 +(verb)|make +(verb)|act|move +(verb)|appoint|charge +(verb)|make|make +(verb)|produce|make +create by mental act|1 +(verb)|create mentally|make|create +create from raw material|1 +(verb)|create from raw stuff|make|create +create from raw stuff|1 +(verb)|create from raw material|make|create +create mentally|1 +(verb)|create by mental act|make|create +create verbally|1 +(verb)|make|create +creatin|1 +(noun)|creatine|amino acid|aminoalkanoic acid +creatine|1 +(noun)|creatin|amino acid|aminoalkanoic acid +creatine phosphate|1 +(noun)|phosphocreatine|creatine phosphoric acid|organic compound +creatine phosphoric acid|1 +(noun)|phosphocreatine|creatine phosphate|organic compound +creating by mental acts|1 +(noun)|creation|creative activity +creating by removal|1 +(noun)|creation|creative activity +creating from raw materials|1 +(noun)|creation|creative activity +creation|6 +(noun)|creative activity|activity +(noun)|artifact|artefact +(noun)|conception|beginning +(noun)|initiation|founding|foundation|institution|origination|innovation|introduction|instauration|beginning|start|commencement +(noun)|Creation|beginning|start|commencement +(noun)|universe|existence|world|cosmos|macrocosm|natural object +creation science|1 +(noun)|creationism +creationism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +creative|3 +(adj)|creative |originative|fanciful|notional|fictive|imaginative|ingenious|inventive|yeasty|original|productive +(adj)|constructive +(adj)|originative|generative |productive +creative activity|1 +(noun)|creation|activity +creative person|1 +(noun)|artist|creator +creative thinker|1 +(noun)|thinker|mind|intellectual|intellect +creative thinking|1 +(noun)|creativity|creativeness|ability|power +creativeness|1 +(noun)|creativity|creative thinking|ability|power +creativity|1 +(noun)|creativeness|creative thinking|ability|power +creator|2 +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +(noun)|person|individual|someone|somebody|mortal|human|soul +creature|3 +(noun)|animal|animate being|beast|brute|fauna|organism|being +(noun)|wight|person|individual|someone|somebody|mortal|human|soul +(noun)|tool|puppet|slave +creature comforts|1 +(noun)|comforts|amenities|conveniences|support|keep|livelihood|living|bread and butter|sustenance +creche|2 +(noun)|foundling hospital|hospital|infirmary +(noun)|representation +crecy|1 +(noun)|Crecy|battle of Crecy|pitched battle +cred|1 +(noun)|street credibility|street cred|credibility|credibleness|believability +credal|1 +(adj)|creedal|doctrine|philosophy|philosophical system|school of thought|ism +credence|2 +(noun)|acceptance|attitude|mental attitude +(noun)|credenza|buffet|counter|sideboard +credendum|1 +(noun)|article of faith|dogma|tenet +credential|1 +(noun)|certificate|certification|credentials|document|written document|papers +credentialed|1 +(adj)|certificated|documented|certified +credentials|2 +(noun)|certificate|certification|credential|document|written document|papers +(noun)|certificate|certification|credential|document|written document|papers +credenza|1 +(noun)|credence|buffet|counter|sideboard +credibility|1 +(noun)|credibleness|believability|quality +credible|3 +(adj)|credible |believable|likely|plausible|presumptive|plausible|thinkable +(adj)|credulous +(adj)|plausible|convincing +credibleness|1 +(noun)|credibility|believability|quality +credibly|1 +(adv)|believably|plausibly|probably +credit|12 +(noun)|recognition|approval|commendation +(noun)|assets +(noun)|credit entry|entry|accounting entry|ledger entry +(noun)|accomplishment|achievement +(noun)|deferred payment|payment +(noun)|course credit|attainment +(noun)|citation|acknowledgment|reference|mention|quotation|note|annotation|notation +(noun)|title +(verb)|impute|ascribe|assign|attribute +(verb)|accredit|impute|ascribe|assign|attribute +(verb)|account|calculate +(verb)|trust|swear|rely|bank +credit account|1 +(noun)|charge account|open account|open-end credit|revolving credit|charge account credit +credit analyst|1 +(noun)|analyst +credit application|1 +(noun)|application +credit bureau|1 +(noun)|agency +credit card|1 +(noun)|charge card|charge plate|open-end credit|revolving credit|charge account credit|positive identification +credit crunch|1 +(noun)|liquidity crisis|squeeze|financial condition|economic condition +credit entry|1 +(noun)|credit|entry|accounting entry|ledger entry +credit hour|1 +(noun)|semester hour|credit|course credit +credit line|2 +(noun)|line of credit|bank line|line|personal credit line|personal line of credit|credit +(noun)|by-line|line +credit order|1 +(noun)|bill-me order|order|purchase order +credit side|1 +(noun)|accounting|accounting system|method of accounting +credit system|1 +(noun)|system +credit union|1 +(noun)|depository financial institution|bank|banking concern|banking company +creditable|1 +(adj)|worthy +creditably|1 +(adv)|respectably +credited|1 +(adj)|attributable +creditor|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +credits|9 +(noun)|acknowledgment|acknowledgement|list|listing +(noun)|recognition|credit|approval|commendation +(noun)|credit|assets +(noun)|credit|credit entry|entry|accounting entry|ledger entry +(noun)|credit|accomplishment|achievement +(noun)|credit|deferred payment|payment +(noun)|credit|course credit|attainment +(noun)|citation|acknowledgment|credit|reference|mention|quotation|note|annotation|notation +(noun)|credit|title +creditworthiness|1 +(noun)|trustworthiness|trustiness +creditworthy|1 +(adj)|responsible|trustworthy |trusty +credo|1 +(noun)|creed|doctrine|philosophy|philosophical system|school of thought|ism +credulity|1 +(noun)|trust|trustingness|trustfulness +credulous|2 +(adj)|credulous |credible|overcredulous|unquestioning|credible|believable|naive|naif|trustful|trusting +(adj)|naive |naif +credulously|1 +(adv)|believingly +credulousness|1 +(noun)|gullibility|naivete|naivety|naiveness +cree|2 +(noun)|Cree|Algonquian|Algonquin +(noun)|Cree|Algonquian|Algonquin|Algonquian language +creed|2 +(noun)|credo|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|religious doctrine|church doctrine|gospel|doctrine|philosophy|philosophical system|school of thought|ism +creedal|1 +(adj)|credal|doctrine|philosophy|philosophical system|school of thought|ism +creek|2 +(noun)|brook|stream|watercourse +(noun)|Creek|Indian|North American Indian|American Indian|Red Indian +creek bed|1 +(noun)|streambed|bed|bottom +creek confederacy|1 +(noun)|Creek Confederacy|confederation|confederacy|federation +creel|1 +(noun)|basket|handbasket +creep|8 +(noun)|weirdo|weirdie|weirdy|spook|unpleasant person|disagreeable person +(noun)|change of location|travel +(noun)|pen +(noun)|crawl|crawling|creeping|locomotion|travel +(verb)|crawl|travel|go|move|locomote +(verb)|sneak|mouse|steal|pussyfoot|walk +(verb)|grow over|diffuse|spread|spread out|fan out +(verb)|fawn|crawl|cringe|cower|grovel|bend|flex +creep feed|1 +(noun)|feed|provender +creep in|1 +(verb)|sneak in|penetrate|perforate +creep up|1 +(verb)|sneak up|advance|progress|pass on|move on|march on|go on +creeper|3 +(noun)|vascular plant|tracheophyte +(noun)|crawler|person|individual|someone|somebody|mortal|human|soul +(noun)|tree creeper|oscine|oscine bird +creeping|1 +(noun)|crawl|crawling|creep|locomotion|travel +creeping bellflower|1 +(noun)|Campanula rapunculoides|campanula|bellflower +creeping bent|1 +(noun)|creeping bentgrass|Agrostis palustris|bent|bent grass|bent-grass +creeping bentgrass|1 +(noun)|creeping bent|Agrostis palustris|bent|bent grass|bent-grass +creeping bugle|1 +(noun)|Ajuga reptans|bugle|bugleweed +creeping buttercup|1 +(noun)|creeping crowfoot|Ranunculus repens|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +creeping charlie|1 +(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife +creeping crowfoot|1 +(noun)|creeping buttercup|Ranunculus repens|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +creeping fern|1 +(noun)|Hartford fern|Lygodium palmatum|climbing fern +creeping jenny|1 +(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife +creeping juniper|1 +(noun)|Juniperus horizontalis|juniper +creeping lily|1 +(noun)|gloriosa|glory lily|climbing lily|Gloriosa superba|poisonous plant +creeping oxalis|1 +(noun)|creeping wood sorrel|Oxalis corniculata|oxalis|sorrel|wood sorrel +creeping snowberry|1 +(noun)|moxie plum|maidenhair berry|Gaultheria hispidula|shrublet +creeping soft grass|1 +(noun)|Holcus mollis|grass +creeping spike rush|1 +(noun)|Eleocharis palustris|spike rush +creeping st john's wort|1 +(noun)|creeping St John's wort|Hypericum calycinum|St John's wort +creeping thistle|1 +(noun)|Canada thistle|Cirsium arvense|plume thistle|plumed thistle +creeping thyme|1 +(noun)|wild thyme|Thymus serpyllum|thyme +creeping willow|1 +(noun)|Salix repens|willow|willow tree +creeping windmill grass|1 +(noun)|windmill grass|star grass|Chloris truncata|finger grass +creeping wintergreen|1 +(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|Gaultheria procumbens|shrublet +creeping wood sorrel|1 +(noun)|creeping oxalis|Oxalis corniculata|oxalis|sorrel|wood sorrel +creeping zinnia|1 +(noun)|Sanvitalia procumbens|herb|herbaceous plant +creeps|6 +(noun)|animal disease +(noun)|fear|fearfulness|fright +(noun)|creep|weirdo|weirdie|weirdy|spook|unpleasant person|disagreeable person +(noun)|creep|change of location|travel +(noun)|creep|pen +(noun)|crawl|crawling|creep|creeping|locomotion|travel +creepy|2 +(adj)|offensive +(adj)|creepy-crawly|alarming +creepy-crawlies|2 +(noun)|dislike +(noun)|creepy-crawly|animal|animate being|beast|brute|creature|fauna +creepy-crawly|2 +(adj)|creepy|alarming +(noun)|animal|animate being|beast|brute|creature|fauna +creese|1 +(noun)|kris|crease|dagger|sticker +cremains|1 +(noun)|cadaver|corpse|stiff|clay|remains +cremate|1 +(verb)|burn|fire|burn down +cremation|1 +(noun)|incineration +cremation chamber|1 +(noun)|crematory|crematorium|furnace +crematorium|2 +(noun)|crematory|morgue|mortuary|dead room +(noun)|crematory|cremation chamber|furnace +crematory|2 +(noun)|crematorium|morgue|mortuary|dead room +(noun)|crematorium|cremation chamber|furnace +creme anglais|1 +(noun)|custard +creme brulee|1 +(noun)|custard +creme caramel|1 +(noun)|custard +creme de cacao|1 +(noun)|liqueur|cordial +creme de fraise|1 +(noun)|liqueur|cordial +creme de menthe|1 +(noun)|liqueur|cordial +cremona|1 +(noun)|Cremona|city|metropolis|urban center +crenate|1 +(adj)|crenated|scalloped|rough +crenate leaf|1 +(noun)|leaf|leafage|foliage +crenated|1 +(adj)|crenate|scalloped|rough +crenation|1 +(noun)|scallop|crenature|crenel|crenelle|curve|curved shape +crenature|1 +(noun)|scallop|crenation|crenel|crenelle|curve|curved shape +crenel|3 +(noun)|scallop|crenation|crenature|crenelle|curve|curved shape +(noun)|crenelle|space +(verb)|crenelate|crenellate|supply|provide|render|furnish +crenelate|2 +(adj)|embattled|crenelated|crenellated|crenellate|indented|fancy +(verb)|crenel|crenellate|supply|provide|render|furnish +crenelated|2 +(adj)|embattled|crenelate|crenellated|crenellate|indented|fancy +(adj)|battlemented|castellated|castled|crenellated|fancy +crenelation|2 +(noun)|battlement|crenellation|rampart|bulwark|wall +(noun)|crenellation|construction|building +crenellate|2 +(adj)|embattled|crenelated|crenelate|crenellated|indented|fancy +(verb)|crenel|crenelate|supply|provide|render|furnish +crenellated|2 +(adj)|embattled|crenelated|crenelate|crenellate|indented|fancy +(adj)|battlemented|castellated|castled|crenelated|fancy +crenellation|2 +(noun)|battlement|crenelation|rampart|bulwark|wall +(noun)|crenelation|construction|building +crenelle|2 +(noun)|scallop|crenation|crenature|crenel|curve|curved shape +(noun)|crenel|space +crenulate|1 +(adj)|crenulated|rough +crenulated|1 +(adj)|crenulate|rough +creole|5 +(adj)|Creole|natural language|tongue +(adj)|Creole|American +(noun)|Creole|American +(noun)|Creole|American +(noun)|natural language|tongue +creole-fish|1 +(noun)|Paranthias furcifer|grouper +creon|1 +(noun)|Creon|mythical being +creosote|3 +(noun)|organic compound +(noun)|coal-tar creosote|organic compound +(verb)|process|treat +creosote bush|1 +(noun)|coville|hediondilla|Larrea tridentata|shrub|bush +crepe|4 +(noun)|crepe paper|paper +(noun)|crape|French pancake|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +(noun)|crape|fabric|cloth|material|textile +(verb)|crape|cover +crepe de chine|1 +(noun)|crepe de Chine|crepe|crape +crepe fern|1 +(noun)|king fern|Todea barbara|fern +crepe flower|1 +(noun)|crape myrtle|crepe myrtle|Lagerstroemia indica|shrub|bush +crepe gardenia|1 +(noun)|crape jasmine|crepe jasmine|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +crepe jasmine|1 +(noun)|crape jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +crepe marocain|1 +(noun)|marocain|crepe|crape +crepe myrtle|1 +(noun)|crape myrtle|crepe flower|Lagerstroemia indica|shrub|bush +crepe paper|1 +(noun)|crepe|paper +crepe rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc +crepe suzette|1 +(noun)|crepe Suzette|crape|crepe|French pancake +crepis|1 +(noun)|Crepis|genus Crepis|asterid dicot genus +crepitate|1 +(verb)|crackle|rattle +crepitation|1 +(noun)|crackle|crackling|noise +crepitation rale|1 +(noun)|rattle|rattling|rale|symptom +crepuscle|1 +(noun)|twilight|dusk|gloaming|nightfall|evenfall|fall|crepuscule|hour|time of day +crepuscular|1 +(adj)|dark +crepuscule|1 +(noun)|twilight|dusk|gloaming|nightfall|evenfall|fall|crepuscle|hour|time of day +crescendo|3 +(adj)|increasing +(noun)|volume|loudness|intensity +(verb)|increase +crescent|2 +(adj)|crescent-shaped|semilunar|lunate|rounded +(noun)|curve|curved shape +crescent-cell anaemia|1 +(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|drepanocytic anemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +crescent-cell anemia|1 +(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +crescent-shaped|1 +(adj)|crescent|semilunar|lunate|rounded +crescent roll|1 +(noun)|croissant|bun|roll +crescentia|1 +(noun)|Crescentia|genus Crescentia|asterid dicot genus +crescentia cujete|1 +(noun)|calabash|calabash tree|Crescentia cujete|tree +cresol|1 +(noun)|methyl phenol|phenol +cress|2 +(noun)|cress plant|crucifer|cruciferous plant +(noun)|salad green|salad greens +cress green|1 +(adj)|cresson|watercress|chromatic +cress plant|1 +(noun)|cress|crucifer|cruciferous plant +cresson|1 +(adj)|cress green|watercress|chromatic +crest|7 +(noun)|line +(noun)|peak|crown|top|tip|summit|topographic point|place|spot +(noun)|crown|top|top side|upper side|upside +(noun)|emblem +(noun)|process|outgrowth|appendage +(verb)|cap|lie +(verb)|peak +crested|3 +(adj)|adorned |decorated +(adj)|topknotted|tufted|adorned |decorated +(adj)|plumed|adorned |decorated +crested cariama|1 +(noun)|seriema|Cariama cristata|wading bird|wader +crested coral root|1 +(noun)|Hexalectris spicata|orchid|orchidaceous plant +crested myna|1 +(noun)|Acridotheres tristis|myna|mynah|mina|minah|myna bird|mynah bird +crested penguin|1 +(noun)|rock hopper|penguin +crested screamer|1 +(noun)|screamer +crested swift|1 +(noun)|tree swift|apodiform bird +crested wheat grass|1 +(noun)|crested wheatgrass|fairway crested wheat grass|Agropyron cristatum|wheatgrass|wheat-grass +crested wheatgrass|1 +(noun)|crested wheat grass|fairway crested wheat grass|Agropyron cristatum|wheatgrass|wheat-grass +crestfallen|1 +(adj)|chapfallen|chopfallen|deflated|dejected +crestless wave|1 +(noun)|swell|wave|moving ridge +cretaceous|3 +(adj)|calcite +(adj)|period|geological period +(noun)|Cretaceous|Cretaceous period|period|geological period +cretaceous period|1 +(noun)|Cretaceous|Cretaceous period|period|geological period +cretan|1 +(noun)|Cretan|European +cretan dittany|1 +(noun)|dittany of crete|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum +crete|1 +(noun)|Crete|Kriti|island +crete dittany|1 +(noun)|dittany of crete|cretan dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum +cretin|1 +(noun)|idiot|imbecile|moron|changeling|half-wit|retard|simpleton|simple +cretinism|1 +(noun)|hypothyroidism +cretinous|2 +(adj)|hypothyroidism +(adj)|retarded +cretonne|1 +(noun)|fabric|cloth|material|textile +creutzfeldt-jakob disease|1 +(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder|encephalopathy|brain disease +crevalle jack|1 +(noun)|jack crevalle|Caranx hippos|jack +crevasse|1 +(noun)|crack|cleft|crevice|fissure|scissure +crevice|2 +(noun)|cranny|crack|fissure|chap|depression|impression|imprint +(noun)|crack|cleft|fissure|scissure|opening|gap +crew|5 +(noun)|unit|social unit +(noun)|gang|work party|unit|social unit +(noun)|crowd|gang|bunch|gathering|assemblage +(noun)|team|squad +(verb)|man +crew cut|1 +(noun)|flattop|haircut +crew member|1 +(noun)|crewman|skilled worker|trained worker +crew neck|1 +(noun)|crew neckline|neckline +crew neckline|1 +(noun)|crew neck|neckline +crewelwork|1 +(noun)|embroidery|fancywork +crewet|1 +(noun)|cruet|bottle +crewman|3 +(noun)|sailor|skilled worker|trained worker +(noun)|crew member|skilled worker|trained worker +(noun)|employee +crex|1 +(noun)|Crex|genus Crex|bird genus +crex crex|1 +(noun)|corncrake|land rail|Crex crex|crake +crib|6 +(noun)|cot|baby bed|baby's bed +(noun)|pony|trot|translation|interlingual rendition|rendering|version +(noun)|cribbage|card game|cards +(verb)|cheat|chisel +(verb)|plagiarize|plagiarise|lift +(verb)|line +crib death|1 +(noun)|sudden infant death syndrome|SIDS|infant death|cot death|death|sleep apnea +cribbage|1 +(noun)|crib|card game|cards +cribbage board|1 +(noun)|board|gameboard +cricetidae|1 +(noun)|Cricetidae|family Cricetidae|mammal family +cricetus|1 +(noun)|Cricetus|genus Cricetus|mammal genus +cricetus cricetus|1 +(noun)|Eurasian hamster|Cricetus cricetus|hamster +crichton|1 +(noun)|Crichton|James Crichton|The Admirable Crichton|scholar|scholarly person|student +cricify|1 +(verb)|mortify|subdue|control|hold in|hold|contain|check|curb|moderate +crick|3 +(noun)|rick|wrick|spasm|cramp|muscle spasm +(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist +(verb)|tense|strain|tense up +cricket|3 +(noun)|orthopterous insect|orthopteron|orthopteran +(noun)|field game +(verb)|play +cricket-bat willow|1 +(noun)|Salix alba caerulea|willow|willow tree +cricket ball|1 +(noun)|ball|cricket equipment +cricket bat|1 +(noun)|bat|cricket equipment +cricket equipment|1 +(noun)|sports equipment|sporting goods +cricket frog|1 +(noun)|tree toad|tree frog|tree-frog +cricket match|1 +(noun)|match +cricketer|1 +(noun)|athlete|jock +crier|3 +(noun)|weeper|unfortunate|unfortunate person +(noun)|town crier|announcer +(noun)|peddler|pedlar|packman|hawker|pitchman|roarer|bawler|bellower|screamer|screecher|shouter|yeller +crime|2 +(noun)|law-breaking|transgression|evildoing +(noun)|transgression|evildoing +crime rate|1 +(noun)|rate +crime syndicate|1 +(noun)|syndicate|mob|family|organized crime|gangland|gangdom +crime wave|1 +(noun)|rise +crimea|1 +(noun)|Crimea|peninsula +crimea-congo hemorrhagic fever|1 +(noun)|Crimea-Congo hemorrhagic fever|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +crimean war|1 +(noun)|Crimean War|war|warfare +criminal|5 +(adj)|transgression|evildoing +(adj)|condemnable|deplorable|reprehensible|wrong +(adj)|guilty +(adj)|felonious|illegal +(noun)|felon|crook|outlaw|malefactor|wrongdoer|offender +criminal congress|1 +(noun)|unlawful carnal knowledge|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +criminal contempt|1 +(noun)|contempt of court +criminal conversation|1 +(noun)|adultery|fornication|extramarital sex|free love +criminal court|1 +(noun)|court|tribunal|judicature +criminal intelligence services of canada|1 +(noun)|Criminal Intelligence Services of Canada|CISC|international intelligence agency +criminal investigation command|1 +(noun)|Criminal Investigation Command|CID|law enforcement agency +criminal law|1 +(noun)|legal code +criminal negligence|1 +(noun)|culpable negligence|negligence|carelessness|neglect|nonperformance +criminal possession|1 +(noun)|possession|ownership +criminal prosecution|1 +(noun)|prosecution|legal action|action|action at law +criminal record|1 +(noun)|record|list|listing +criminal suit|1 +(noun)|lawsuit|suit|case|cause|causa +criminalisation|1 +(noun)|criminalization|legislation|legislating|lawmaking +criminalise|1 +(verb)|outlaw|criminalize|illegalize|illegalise|forbid|prohibit|interdict|proscribe|veto|disallow +criminalism|1 +(noun)|criminality|criminalness|guilt|guiltiness +criminality|1 +(noun)|criminalism|criminalness|guilt|guiltiness +criminalization|1 +(noun)|criminalisation|legislation|legislating|lawmaking +criminalize|2 +(verb)|treat|handle|do by +(verb)|outlaw|criminalise|illegalize|illegalise|forbid|prohibit|interdict|proscribe|veto|disallow +criminally|1 +(adv)|reprehensively +criminalness|1 +(noun)|criminalism|criminality|guilt|guiltiness +criminate|2 +(verb)|accuse|impeach|incriminate|charge|accuse +(verb)|reprimand|censure|knock|criticize|criticise|pick apart +criminative|1 +(adj)|criminatory|incriminating|incriminatory|inculpatory |inculpative +criminatory|1 +(adj)|criminative|incriminating|incriminatory|inculpatory |inculpative +criminological|1 +(adj)|sociology +criminologist|1 +(noun)|specialist|specializer|specialiser +criminology|1 +(noun)|sociology +crimp|5 +(noun)|fold|crease|plication|flexure|bend|angular shape|angularity +(noun)|crimper|kidnapper|abductor|snatcher +(noun)|lock|curl|ringlet|whorl +(verb)|pinch|fold|fold up|turn up +(verb)|crape|frizzle|frizz|kink up|kink|curl|wave +crimper|2 +(noun)|crimp|kidnapper|abductor|snatcher +(noun)|curler|hair curler|roller|mechanical device +crimson|5 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|ruby|ruby-red|scarlet|chromatic +(adj)|red|violent|bloody +(adj)|red|reddened|red-faced|flushed|colored |coloured|colorful +(noun)|ruby|deep red|red|redness +(verb)|blush|flush|redden|discolor|discolour|colour|color +crimson clover|1 +(noun)|Italian clover|Trifolium incarnatum|clover|trefoil +cringe|2 +(verb)|flinch|squinch|funk|shrink|wince|recoil|quail|move +(verb)|fawn|crawl|creep|cower|grovel|bend|flex +cringing|1 +(adj)|groveling|grovelling|wormlike|wormy|submissive +cringle|1 +(noun)|eyelet|loop|grommet|grummet|fastener|fastening|holdfast|fixing +crinion|1 +(noun)|trichion|point +crinkle|3 +(noun)|wrinkle|furrow|crease|seam|line|depression|impression|imprint +(verb)|wrinkle|ruckle|crease|scrunch|scrunch up|crisp|fold|fold up|turn up +(verb)|rumple|crumple|wrinkle|crease|fold|fold up +crinkle-root|3 +(noun)|crinkleroot|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +(noun)| +(noun)| +crinkle root|3 +(noun)|crinkleroot|crinkle-root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +(noun)| +(noun)| +crinkled|1 +(adj)|crinkly|rippled|wavy|wavelike|uneven +crinkleroot|1 +(noun)|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +crinkly|1 +(adj)|crinkled|rippled|wavy|wavelike|uneven +crinoid|2 +(adj)|class +(noun)|echinoderm +crinoidea|1 +(noun)|Crinoidea|class Crinoidea|class +crinoline|3 +(noun)|hoopskirt|skirt +(noun)|petticoat|half-slip|underskirt +(noun)|fabric|cloth|material|textile +criollo|2 +(noun)|Latin American|Spanish American +(noun)|cocoa +cripple|3 +(noun)|unfortunate|unfortunate person +(verb)|stultify|weaken +(verb)|lame|maim +crippled|1 +(adj)|halt|halting|lame|game|unfit +crippling|1 +(adj)|disabling|incapacitating|unhealthful +crisis|2 +(noun)|situation +(noun)|juncture|occasion +crisis intervention|1 +(noun)|psychotherapy +crisp|9 +(adj)|sharp|distinct +(adj)|crispy|tender +(adj)|frosty|nipping|nippy|snappy|parky|cold +(adj)|firm|crunchy|fresh +(adj)|frizzly|frizzy|kinky|nappy|curly +(adj)|curt|laconic|terse|concise +(noun)|chip|potato chip|Saratoga chip|snack food +(verb)|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|fold|fold up|turn up +(verb)|toast|heat|heat up +crispate|1 +(adj)|rough +crisphead lettuce|1 +(noun)|iceberg lettuce|iceberg|lettuce +crispin|1 +(noun)|Crispin|Saint Crispin|St. Crispin|patron saint +crispiness|1 +(noun)|brittleness|crispness|breakableness +crisply|1 +(adv)|sharply +crispness|3 +(noun)|freshness +(noun)|terseness +(noun)|brittleness|crispiness|breakableness +crispy|1 +(adj)|crisp|tender +crisscross|5 +(adj)|crisscrossed|reticulate |reticulated|reticular +(noun)|cross|mark|marking +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|line +(verb)|mark +crisscrossed|1 +(adj)|crisscross|reticulate |reticulated|reticular +cristal|1 +(noun)|Adam|ecstasy|XTC|go|disco biscuit|X|hug drug|methylenedioxymethamphetamine|MDMA +cristobal balenciaga|1 +(noun)|Balenciaga|Cristobal Balenciaga|couturier|fashion designer|clothes designer|designer +cristobal colon|1 +(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator +cristobalite|1 +(noun)|mineral +cristoforo colombo|1 +(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator +criterial|1 +(adj)|criterional|standard +criterion|2 +(noun)|standard|measure|touchstone|reference point|point of reference|reference +(noun)|standard|ideal +criterional|1 +(adj)|criterial|standard +crith|1 +(noun)|weight unit|weight +critic|3 +(noun)|professional|professional person +(noun)|evaluator|judge +(noun)|unpleasant person|disagreeable person +critical|7 +(adj)|critical |captious|faultfinding|caviling|carping|nitpicking|pettifogging|quibbling|censorious|deprecative|hypercritical|overcritical|scathing|blistering|scalding|vituperative|sarcastic|unfavorable|unfavourable +(adj)|critical |supercritical +(adj)|critical |appraising|evaluative|discriminative|judicial|discerning|scholarly +(adj)|vital|indispensable +(adj)|decisive|crucial |important +(adj)|critical |acute|dangerous|grave|grievous|serious|severe|life-threatening|desperate|dire|crucial|important +(adj)|critical appraisal|critical analysis +critical analysis|1 +(noun)|critical appraisal|appraisal|assessment +critical angle|1 +(noun)|angle of incidence|incidence angle +critical appraisal|1 +(noun)|critical analysis|appraisal|assessment +critical mass|2 +(noun)|amount +(noun)|mass +critical point|1 +(noun)|juncture|crossroads|crisis +critical review|1 +(noun)|review|critique|review article|criticism|literary criticism +criticality|2 +(noun)|criticalness|cruciality|urgency +(noun)|juncture|critical point|crossroads +criticalness|1 +(noun)|criticality|cruciality|urgency +criticise|2 +(verb)|knock|criticize|pick apart|comment|notice|remark|point out +(verb)|criticize|act +criticism|3 +(noun)|unfavorable judgment|disapproval +(noun)|critique|critical appraisal|critical analysis +(noun)|literary criticism|writing|written material|piece of writing +criticize|2 +(verb)|knock|criticise|pick apart|comment|notice|remark|point out +(verb)|criticise|act +critique|3 +(noun)|review|critical review|review article|criticism|literary criticism +(noun)|criticism|critical appraisal|critical analysis +(verb)|review|judge +critter|1 +(noun)|animal|animate being|beast|brute|creature|fauna +critter sitter|1 +(noun)|pet sitter|custodian|keeper|steward +crius|1 +(noun)|Crius|Titan +crixivan|1 +(noun)|indinavir|Crixivan|protease inhibitor|PI +crna gora|1 +(noun)|Montenegro|Crna Gora|geographical area|geographic area|geographical region|geographic region +cro|1 +(noun)|oscilloscope|scope|cathode-ray oscilloscope|CRO|electronic equipment +cro-magnon|1 +(noun)|Cro-magnon|Homo sapiens +croak|4 +(noun)|croaking|utterance|vocalization +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|snuff it|die|decease|perish|go|exit|pass away|expire|pass +(verb)|cronk|utter|emit|let out|let loose +(verb)|murmur|mutter|grumble|gnarl|complain|kick|plain|sound off|quetch|kvetch +croaker|2 +(noun)|saltwater fish +(noun)|sciaenid fish|sciaenid +croaking|2 +(adj)|croaky|guttural|cacophonous |cacophonic +(noun)|croak|utterance|vocalization +croaky|1 +(adj)|croaking|guttural|cacophonous |cacophonic +croat|1 +(noun)|Croatian|Croat|Slav +croatia|1 +(noun)|Croatia|Republic of Croatia|Hrvatska|European country|European nation +croatian|2 +(adj)|Croatian|European country|European nation +(noun)|Croatian|Croat|Slav +crocanthemum canadensei|1 +(noun)|frostweed|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum|sunrose|sun rose +crocethia|1 +(noun)|Crocethia|genus Crocethia|bird genus +crocethia alba|1 +(noun)|sanderling|Crocethia alba|sandpiper +crochet|3 +(noun)|crocheting|needlework|needlecraft +(verb)|create from raw material|create from raw stuff +(verb)|hook|loop|intertwine +crochet hook|1 +(noun)|crochet needle|needle +crochet needle|1 +(noun)|crochet hook|needle +crochet stitch|1 +(noun)|stitch +crocheting|2 +(noun)|crochet|needlework|needlecraft +(noun)|handicraft +crock|4 +(noun)|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|earthenware jar|jar +(verb)|run|bleed +(verb)|dirty|soil|begrime|grime|colly|bemire +crock pot|1 +(noun)|Crock Pot|cooker +crock up|1 +(verb)|crack up|crack|break up|collapse|suffer|sustain|have|get +crocked|1 +(adj)|besotted|blind drunk|blotto|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +crockery|1 +(noun)|dishware|tableware +crocket|1 +(noun)|architectural ornament +crocketed|1 +(adj)|adorned |decorated +crockett|1 +(noun)|Crockett|Davy Crockett|David Crockett|frontiersman|backwoodsman|mountain man|politician|politico|pol|political leader +crocodile|1 +(noun)|crocodilian reptile|crocodilian +crocodile bird|1 +(noun)|Pluvianus aegyptius|courser +crocodile river|1 +(noun)|Limpopo|Crocodile River|river +crocodile tears|1 +(noun)|hypocrisy|lip service +crocodilia|1 +(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order +crocodilian|1 +(noun)|crocodilian reptile|diapsid|diapsid reptile +crocodilian reptile|1 +(noun)|crocodilian|diapsid|diapsid reptile +crocodilus|1 +(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus +crocodylia|1 +(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order +crocodylidae|1 +(noun)|Crocodylidae|family Crocodylidae|reptile family +crocodylus|1 +(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus +crocodylus niloticus|1 +(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile +crocodylus porosus|1 +(noun)|Asian crocodile|Crocodylus porosus|crocodile +crocolite|1 +(noun)|mineral +crocus|1 +(noun)|iridaceous plant +crocus sativus|1 +(noun)|saffron|saffron crocus|Crocus sativus|crocus +crocuta|1 +(noun)|Crocuta|genus Crocuta|mammal genus +crocuta crocuta|1 +(noun)|spotted hyena|laughing hyena|Crocuta crocuta|hyena|hyaena +croesus|2 +(noun)|Croesus|king|male monarch +(noun)|Croesus|rich person|wealthy person|have +croft|1 +(noun)|farm +crofter|1 +(noun)|small farmer +crohn|1 +(noun)|Crohn|Burrill Bernard Crohn|doctor|doc|physician|MD|Dr.|medico +crohn's disease|1 +(noun)|regional enteritis|regional ileitis|Crohn's disease|colitis|inflammatory bowel disease +croissant|1 +(noun)|crescent roll|bun|roll +croix de guerre|1 +(noun)|Croix de Guerre|decoration|laurel wreath|medal|medallion|palm|ribbon +cromlech|1 +(noun)|dolmen|megalith|megalithic structure +cromorne|1 +(noun)|krummhorn|crumhorn|double-reed instrument|double reed +cromwell|1 +(noun)|Cromwell|Oliver Cromwell|Ironsides|general|full general|statesman|solon|national leader +cromwellian|1 +(adj)|Cromwellian|general|full general|statesman|solon|national leader +cronartium|1 +(noun)|Cronartium|genus Cronartium|fungus genus +cronartium ribicola|1 +(noun)|blister rust|Cronartium ribicola|rust|rust fungus +crone|1 +(noun)|hag|beldam|beldame|witch|old woman +cronk|2 +(verb)|croak|utter|emit|let out|let loose +(verb)|honk|utter|emit|let out|let loose +cronus|1 +(noun)|Cronus|Titan +crony|1 +(noun)|buddy|brother|chum|pal|sidekick|friend +cronyism|1 +(noun)|discrimination|favoritism|favouritism +croo monkey|1 +(noun)|crab-eating macaque|Macaca irus|macaque +crook|4 +(noun)|criminal|felon|outlaw|malefactor|wrongdoer|offender +(noun)|bend|turn|curve|curved shape +(noun)|shepherd's crook|staff +(verb)|curve|bend|flex +crookback|2 +(adj)|crookbacked|humped|humpbacked|hunchback|hunchbacked|gibbous|kyphotic|unfit +(noun)|humpback|hunchback|cripple +crookbacked|1 +(adj)|crookback|humped|humpbacked|hunchback|hunchbacked|gibbous|kyphotic|unfit +crooked|4 +(adj)|crooked |akimbo|anfractuous|aquiline|hooked|askew|awry|cockeyed|lopsided|wonky|skew-whiff|bending|bent|contorted|distorted|twisted|contorted|writhed|writhen|deflective|refractive|gnarled|gnarly|knotted|knotty|knobbed|malposed|reflexed|squiggly|warped|windblown|wry|zigzag|geniculate|tortuous|twisting|twisty|winding|coiled|indirect +(adj)|crooked |corrupt|dishonest|unscrupulous|sneaky|underhand|underhanded|dishonest|dishonorable|unlawful +(adj)|asymmetrical|irregular +(adj)|hunched|round-backed|round-shouldered|stooped|stooping|unerect +crooked-stemmed aster|1 +(noun)|aster +crookedly|1 +(adv)|lopsidedly +crookedness|3 +(noun)|tortuosity|tortuousness|torsion|contortion|distorted shape|distortion +(noun)|shape|form|configuration|contour|conformation +(noun)|deviousness|dishonesty +crookes|1 +(noun)|Crookes|William Crookes|Sir William Crookes|chemist|physicist +crookes radiometer|1 +(noun)|Crookes radiometer|radiometer +crookes tube|1 +(noun)|Crookes tube|cathode-ray tube|CRT +crookneck|1 +(noun)|crookneck squash|summer crookneck|yellow squash +crookneck squash|1 +(noun)|crookneck|summer crookneck|yellow squash +croon|1 +(verb)|sing +crooner|1 +(noun)|balladeer|singer|vocalist|vocalizer|vocaliser +crooning|2 +(noun)|singing|vocalizing +(noun)|singing|vocalizing +crop|11 +(noun)|harvest|output|yield +(noun)|collection|aggregation|accumulation|assemblage +(noun)|end product|output +(noun)|handle|grip|handgrip|hold +(noun)|craw|stomach|tummy|tum|breadbasket +(verb)|cut +(verb)|cultivate|work|fix|prepare|set up|ready|gear up|set +(verb)|bear|turn out +(verb)|graze|pasture|feed|give +(verb)|browse|graze|range|pasture|feed|eat +(verb)|snip|clip|trim|lop|dress|prune|cut back|thin out +crop-dusting|1 +(noun)|spraying|dispersion|dispersal|dissemination|diffusion +crop failure|1 +(noun)|failure +crop out|1 +(verb)|basset|appear +crop up|1 +(verb)|pop up|pop|appear +cropped|2 +(adj)|cropped |clipped|docked|close-cropped|lopped|lopped off|pruned +(adj)|planted +cropper|1 +(noun)|sharecropper|sharecrop farmer|agricultural laborer|agricultural labourer +croquet|3 +(noun)|outdoor game +(verb)|hit +(verb)|play +croquet ball|1 +(noun)|ball|croquet equipment +croquet equipment|1 +(noun)|sports equipment|sporting goods +croquet mallet|1 +(noun)|mallet|croquet equipment +croquette|1 +(noun)|dish +crore|1 +(noun)|large integer +crosby|1 +(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner|balladeer|actor|histrion|player|thespian|role player +crosier|1 +(noun)|crozier|staff +cross|16 +(adj)|transverse|transversal|thwartwise|crosswise +(adj)|crabbed|crabby|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured +(noun)|structure|construction +(noun)|crisscross|mark|marking +(noun)|emblem +(noun)|crown of thorns|affliction +(noun)|hybrid|crossbreed|organism|being +(noun)|hybridization|hybridisation|crossbreeding|crossing|interbreeding|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +(verb)|traverse|track|cover|pass over|get over|get across|cut through|cut across|pass|go through|go across +(verb)|intersect|meet|ran into|encounter|run across|come across|see +(verb)|thwart|queer|spoil|scotch|foil|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid|double cross +(verb)|fold|fold up|turn up +(verb)|traverse|span|sweep|cover|extend +(verb)|intersect +(verb)|write +(verb)|crossbreed|hybridize|hybridise|interbreed|breed +cross-check|1 +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +cross-classification|1 +(noun)|cross-division|classification|categorization|categorisation|sorting +cross-country|2 +(adj)|administrative district|administrative division|territorial division +(adj)|cross-country |off-road +cross-country jumping|1 +(noun)|cross-country riding|equestrian sport +cross-country riding|1 +(noun)|cross-country jumping|equestrian sport +cross-country skiing|1 +(noun)|skiing +cross-cultural|1 +(adj)|society +cross-division|1 +(noun)|cross-classification|classification|categorization|categorisation|sorting +cross-dress|1 +(verb)|dress|get dressed +cross-dresser|1 +(noun)|transvestite|person|individual|someone|somebody|mortal|human|soul +cross-examination|1 +(noun)|interrogation|examination|interrogatory +cross-examiner|1 +(noun)|cross-questioner|inquirer|enquirer|questioner|querier|asker +cross-eye|1 +(noun)|crossed eye|convergent strabismus|esotropia|strabismus|squint +cross-eyed|1 +(adj)|cross-eyed |boss-eyed +cross-fertilisation|2 +(noun)|cross-fertilization|fertilization|fertilisation|fecundation|impregnation +(noun)|cross-fertilization|interchange|reciprocation|give-and-take +cross-fertilise|2 +(verb)|cross-fertilize|change state|turn +(verb)|cross-fertilize|inseminate|fecundate|fertilize|fertilise +cross-fertilization|2 +(noun)|cross-fertilisation|fertilization|fertilisation|fecundation|impregnation +(noun)|cross-fertilisation|interchange|reciprocation|give-and-take +cross-fertilize|2 +(verb)|cross-fertilise|change state|turn +(verb)|cross-fertilise|inseminate|fecundate|fertilize|fertilise +cross-file|1 +(verb)|register|campaign|run +cross-grained|2 +(adj)|contrarious|stubborn +(adj)|uneven +cross-index|2 +(noun)|cross-reference|citation|acknowledgment|credit|reference|mention|quotation +(verb)|index +cross-leaved heath|1 +(noun)|bell heather|Erica tetralix|erica|true heath +cross-linguistic|1 +(adj)|communication +cross-link|2 +(noun)|cross-linkage|chemical bond|bond +(verb)|join|conjoin +cross-linkage|1 +(noun)|cross-link|chemical bond|bond +cross-modal|1 +(adj)|sense|sensation|sentience|sentiency|sensory faculty +cross-ply|1 +(adj)|tire|tyre +cross-pollinate|1 +(verb)|pollinate|pollenate|inseminate|fecundate|fertilize|fertilise +cross-pollinating|1 +(adj)|pollination|pollenation +cross-pollination|2 +(noun)|pollination|pollenation +(noun)|influence +cross-purpose|1 +(noun)|purpose|intent|intention|aim|design +cross-question|1 +(noun)|question|interrogation|interrogative|interrogative sentence +cross-questioner|1 +(noun)|cross-examiner|inquirer|enquirer|questioner|querier|asker +cross-refer|1 +(verb)|mention|advert|bring up|cite|name|refer +cross-reference|1 +(noun)|cross-index|citation|acknowledgment|credit|reference|mention|quotation +cross-section|1 +(adj)|cross-sectional|crosswise +cross-sectional|2 +(adj)|section|plane section +(adj)|cross-section|crosswise +cross-stitch|2 +(noun)|stitch +(noun)|embroidery|fancywork +cross-town|2 +(adj)|crosstown|crossed |across +(adj)| +cross bit|1 +(noun)|bore bit|borer|rock drill|stone drill +cross bun|1 +(noun)|hot cross bun|sweet roll|coffee roll +cross country|1 +(noun)|race +cross dressing|1 +(noun)|transvestism|transvestitism|practice|pattern +cross examine|1 +(verb)|cross question|examine +cross hair|1 +(noun)|cross wire|line +cross infection|1 +(noun)|nonsocial infection|infection +cross of calvary|1 +(noun)|Calvary cross|cross of Calvary|cross +cross of lorraine|1 +(noun)|Lorraine cross|cross of Lorraine|cross +cross off|1 +(verb)|cross out|strike out|strike off|mark|take away|take out +cross one's eyes|1 +(verb)|squint|squinch|grimace|make a face|pull a face +cross oneself|1 +(verb)|gesticulate|gesture|motion +cross out|1 +(verb)|cross off|strike out|strike off|mark|take away|take out +cross product|1 +(noun)|vector product|vector +cross question|1 +(verb)|cross examine|examine +cross section|3 +(noun)|section|plane section +(noun)|sample +(noun)|probability|chance +cross street|1 +(noun)|street +cross thwart|1 +(noun)|thwart|crosspiece +cross vine|1 +(noun)|trumpet flower|quartervine|quarter-vine|Bignonia capreolata|vine +cross wire|1 +(noun)|cross hair|line +crossbar|3 +(noun)|bar +(noun)|game equipment +(noun)|crosspiece +crossbeam|1 +(noun)|trave|traverse|crosspiece|beam +crossbench|1 +(noun)|seat +crossbencher|1 +(noun)|legislator +crossbill|1 +(noun)|Loxia curvirostra|finch +crossbones|1 +(noun)|symbol|symbolization|symbolisation|symbolic representation +crossbow|1 +(noun)|bow +crossbred|3 +(adj)|crossbred |bigeneric|crossed|hybrid|interbred|intercrossed|underbred|half-blooded|half-bred|half-breed|outbred +(adj)|interbred|outbred +(noun)|hybrid|crossbreed|cross +crossbreed|2 +(noun)|hybrid|cross|organism|being +(verb)|cross|hybridize|hybridise|interbreed|breed +crossbreeding|2 +(noun)|hybridization|hybridisation|crossing|cross|interbreeding|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +(noun)|miscegenation|interbreeding|reproduction|procreation|breeding|facts of life +crosscheck|2 +(noun)|confirmation|verification|check|substantiation +(noun)|check +crosscurrent|2 +(noun)|rip|riptide|tide rip|countercurrent|turbulence|turbulency +(noun)|countercurrent|strife +crosscut|3 +(noun)|path|route|itinerary +(noun)|shortcut|cutoff|road|route +(verb)|cut across|cut +crosscut saw|1 +(noun)|handsaw|carpenter's saw +crosse|1 +(noun)|racket|racquet +crossed|3 +(adj)|crossed |across|crosstown|cross-town|decussate|intersectant|intersecting +(adj)|crossed +(adj)|hybrid|interbred|intercrossed|crossbred +crossed eye|1 +(noun)|cross-eye|convergent strabismus|esotropia|strabismus|squint +crossfire|2 +(noun)|conversation +(noun)|fire|firing +crosshairs|1 +(noun)|center|center of attention +crosshatch|2 +(noun)|hatch|hatching|hachure|shading +(verb)|shade|fill in +crosshatched|1 +(adj)|hatched|shaded +crosshead|2 +(noun)|crossheading|heading|header|head +(noun)|block +crossheading|1 +(noun)|crosshead|heading|header|head +crossing|7 +(noun)|travel|traveling|travelling +(noun)|ford|body of water|water +(noun)|point +(noun)|intersection|crossroad|crossway|carrefour|junction +(noun)|crosswalk|crossover|path +(noun)|hybridization|hybridisation|crossbreeding|cross|interbreeding|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +(noun)|voyage +crossing guard|1 +(noun)|traffic cop +crossing over|1 +(noun)|crossover|organic process|biological process +crossjack|1 +(noun)|mizzen course|sail|canvas|canvass|sheet +crossly|1 +(adv)|grouchily|grumpily +crossness|2 +(noun)|irritability|fretfulness|fussiness|peevishness|petulance|choler|ill humor|ill humour|distemper +(noun)|crabbiness|crabbedness|ill nature +crossopterygian|1 +(noun)|lobefin|lobe-finned fish|bony fish +crossopterygii|1 +(noun)|Crossopterygii|subclass Crossopterygii|class +crossover|4 +(noun)|crossing over|organic process|biological process +(noun)|crossover voter|voter|elector +(noun)|borrowing|adoption +(noun)|crossing|crosswalk|path +crossover voter|1 +(noun)|crossover|voter|elector +crosspatch|1 +(noun)|grouch|grump|crank|churl|unpleasant person|disagreeable person +crosspiece|2 +(noun)|trave|traverse|crossbeam|beam +(noun)|brace|bracing +crossroad|1 +(noun)|intersection|crossway|crossing|carrefour|junction +crossroads|4 +(noun)|hamlet|community +(noun)|juncture|critical point|crisis +(noun)|overlap|convergence|intersection +(noun)|intersection|crossroad|crossway|crossing|carrefour|junction +crossruff|1 +(verb)|trump|ruff +crosstalk|1 +(noun)|XT|noise|interference|disturbance +crosstie|1 +(noun)|tie|railroad tie|sleeper|brace|bracing +crosstown|1 +(adj)|cross-town|crossed |across +crosswalk|1 +(noun)|crossing|crossover|path +crossway|1 +(noun)|intersection|crossroad|crossing|carrefour|junction +crossways|1 +(adv)|across|crosswise +crosswind|1 +(noun)|wind|air current|current of air +crosswise|3 +(adj)|crosswise |cross|transverse|transversal|thwartwise|cross-section|cross-sectional +(adj)|horizontal +(adv)|across|crossways +crossword|1 +(noun)|crossword puzzle|problem +crossword puzzle|1 +(noun)|crossword|problem +crotal|1 +(noun)|crottle|crottal|lichen +crotalaria|1 +(noun)|rattlebox|herb|herbaceous plant +crotalaria sagitallis|1 +(noun)|American rattlebox|Crotalaria sagitallis|crotalaria|rattlebox +crotalaria spectabilis|1 +(noun)|Indian rattlebox|Crotalaria spectabilis|crotalaria|rattlebox +crotalidae|1 +(noun)|Crotalidae|family Crotalidae|reptile family +crotalus|1 +(noun)|Crotalus|genus Crotalus|reptile genus +crotalus adamanteus|1 +(noun)|diamondback|diamondback rattlesnake|Crotalus adamanteus|rattlesnake|rattler +crotalus atrox|1 +(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake|rattler +crotalus cerastes|1 +(noun)|sidewinder|horned rattlesnake|Crotalus cerastes|rattlesnake|rattler +crotalus horridus atricaudatus|1 +(noun)|canebrake rattlesnake|canebrake rattler|Crotalus horridus atricaudatus|timber rattlesnake|banded rattlesnake|Crotalus horridus horridus +crotalus horridus horridus|1 +(noun)|timber rattlesnake|banded rattlesnake|Crotalus horridus horridus|rattlesnake|rattler +crotalus lepidus|1 +(noun)|rock rattlesnake|Crotalus lepidus|rattlesnake|rattler +crotalus mitchellii|1 +(noun)|speckled rattlesnake|Crotalus mitchellii|rattlesnake|rattler +crotalus scutulatus|1 +(noun)|Mojave rattlesnake|Crotalus scutulatus|rattlesnake|rattler +crotalus tigris|1 +(noun)|tiger rattlesnake|Crotalus tigris|rattlesnake|rattler +crotalus viridis|1 +(noun)|prairie rattlesnake|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake|rattler +crotaphion|1 +(noun)|craniometric point +crotaphytus|1 +(noun)|Crotaphytus|genus Crotaphytus|reptile genus +crotch|2 +(noun)|fork|angle +(noun)|genitalia|genital organ|genitals|private parts|privates|reproductive organ|sex organ +crotch hair|1 +(noun)|pubic hair|bush|hair +crotchet|4 +(noun)|hook|curve|curved shape +(noun)|quarter note|note|musical note|tone +(noun)|oddity|queerness|quirk|quirkiness|unfamiliarity|strangeness +(noun)|hook +crotchetiness|1 +(noun)|crankiness|contrariness|grumpiness|ill nature +crotchety|1 +(adj)|cantankerous|ornery|ill-natured +croton|2 +(noun)|Codiaeum variegatum|shrub|bush +(noun)|Croton tiglium|shrub|bush +croton bug|2 +(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach|roach +(noun)| +croton eluteria|1 +(noun)|cascarilla|Croton eluteria|croton|Croton tiglium +croton oil|1 +(noun)|oil +croton tiglium|1 +(noun)|croton|Croton tiglium|shrub|bush +crotonbug|1 +(noun)|German cockroach|Croton bug|water bug|Blattella germanica|cockroach|roach +crotophaga|1 +(noun)|Crotophaga|genus Crotophaga|bird genus +crottal|1 +(noun)|crottle|crotal|lichen +crottle|1 +(noun)|crottal|crotal|lichen +crouch|3 +(noun)|bending +(verb)|stoop|bend|bow|bend|flex +(verb)|squat|scrunch|scrunch up|hunker|hunker down|sit|sit down +crouched|1 +(adj)|crouching|huddled|hunkered|hunkered down|unerect +crouching|1 +(adj)|crouched|huddled|hunkered|hunkered down|unerect +croup|2 +(noun)|spasmodic laryngitis|angina +(noun)|hindquarters|croupe|rump|body part +croupe|1 +(noun)|hindquarters|croup|rump|body part +croupier|1 +(noun)|gambler +croupier's rake|1 +(noun)|rake +croupy|1 +(adj)|angina +crouse|1 +(noun)|Crouse|Russel Crouse|dramatist|playwright +crouton|1 +(noun)|bread|breadstuff|staff of life +crow|9 +(noun)|corvine bird +(noun)|cry +(noun)|Crow|Sioux|Siouan +(noun)|Corvus|Crow|constellation +(noun)|brag|bragging|crowing|vaporing|line-shooting|gasconade|boast|boasting|self-praise|jactitation +(noun)|Crow|Siouan|Siouan language +(verb)|gloat|triumph|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade +(verb)|utter|emit|let out|let loose +(verb)|utter|emit|let out|let loose +crow's feet|3 +(noun)|crow's foot|laugh line|wrinkle|furrow|crease|crinkle|seam|line +(noun)|crow's foot|laugh line|wrinkle|furrow|crease|crinkle|seam|line +(noun)|red beech|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +crow's foot|2 +(noun)|crow's feet|laugh line|wrinkle|furrow|crease|crinkle|seam|line +(noun)|red beech|brown oak|booyong|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +crow's nest|1 +(noun)|platform +crow-bait|2 +(noun)|crowbait|saddle horse|riding horse|mount +(noun)| +crow blackbird|1 +(noun)|grackle|New World blackbird|blackbird +crow corn|1 +(noun)|colicroot|colic root|star grass|unicorn root|liliaceous plant +crow garlic|1 +(noun)|false garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion +crow pheasant|1 +(noun)|Centropus sinensis|coucal +crow step|1 +(noun)|corbel step|corbie-step|corbiestep|step|stair +crowbait|1 +(noun)|crow-bait|saddle horse|riding horse|mount +crowbar|1 +(noun)|wrecking bar|pry|pry bar|lever +crowberry|1 +(noun)|shrub|bush +crowberry family|1 +(noun)|Empetraceae|family Empetraceae|dicot family|magnoliopsid family +crowd|6 +(noun)|gathering|assemblage +(noun)|crew|gang|bunch|gathering|assemblage +(verb)|herd|move|displace +(verb)|occupy|fill +(verb)|crowd together|meet|gather|assemble|forgather|foregather +(verb)|push|approach|near|come on|go up|draw near|draw close|come near +crowd control|1 +(noun)|control +crowd out|1 +(verb)|displace|force out +crowd together|1 +(verb)|crowd|meet|gather|assemble|forgather|foregather +crowded|1 +(adj)|crowded |huddled|jammed|jam-pawncked|packed|thronged +crowding|1 +(noun)|situation|state of affairs +crowfoot|1 +(noun)|buttercup|butterflower|butter-flower|goldcup|kingcup|herb|herbaceous plant +crowfoot family|1 +(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|magnoliid dicot family +crowfoot grass|1 +(noun)|Egyptian grass|Dactyloctenium aegypticum|crabgrass|crab grass|finger grass +crowing|2 +(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|self-aggrandizing|self-aggrandising|proud +(noun)|brag|bragging|crow|vaporing|line-shooting|gasconade|boast|boasting|self-praise|jactitation +crown|15 +(noun)|Crown|symbol +(noun)|top +(noun)|wreath|garland|coronal|chaplet|lei +(noun)|diadem|jewelled headdress|crown jewels +(noun)|vertex|peak|apex|acme +(noun)|coin +(noun)|capitulum|treetop|top +(noun)|peak|crest|top|tip|summit|topographic point|place|spot +(noun)|pennant|award|accolade|honor|honour|laurels +(noun)|pate|poll|top|top side|upper side|upside +(noun)|crest|top|top side|upper side|upside +(verb)|coronate|invest|vest|enthrone +(verb)|top|culminate|climax +(verb)|head +(verb)|cover +crown-beard|3 +(noun)|crownbeard|crown beard|composite|composite plant +(noun)| +(noun)| +crown-of-the-field|1 +(noun)|corn cockle|corn campion|Agrostemma githago|weed +crown beard|3 +(noun)|crownbeard|crown-beard|composite|composite plant +(noun)| +(noun)| +crown colony|1 +(noun)|Crown Colony|colony|dependency +crown daisy|1 +(noun)|Chrysanthemum coronarium|chrysanthemum +crown fire|1 +(noun)|forest fire +crown gall|1 +(noun)|plant disease +crown glass|2 +(noun)|glass +(noun)|optical crown|optical glass +crown imperial|1 +(noun)|Fritillaria imperialis|fritillary|checkered lily +crown jewel|1 +(noun)|assets +crown jewels|2 +(noun)|regalia +(noun)|crown jewel|assets +crown land|1 +(noun)|Crown land|estate|land|landed estate|acres|demesne +crown lens|1 +(noun)|lens|lense|lens system +crown monkey|1 +(noun)|bonnet macaque|bonnet monkey|capped macaque|Macaca radiata|macaque +crown of thorns|3 +(noun)|cross|affliction +(noun)|Christ thorn|Christ plant|Euphorbia milii|spurge +(noun)|crown +crown prince|1 +(noun)|prince +crown princess|2 +(noun)|wife|married woman +(noun)|princess +crown roast|1 +(noun)|rack of lamb|lamb roast|roast lamb|rack +crown saw|1 +(noun)|saw +crown vetch|1 +(noun)|axseed|Coronilla varia|coronilla +crown wart|1 +(noun)|plant disease +crownbeard|1 +(noun)|crown-beard|crown beard|composite|composite plant +crowned|3 +(adj)|crowned |capped +(adj)|laureled |laurelled +(adj)|crowned |capped|chapleted|comate|comose|royal +crowned head|1 +(noun)|sovereign|monarch|ruler|swayer|head of state|chief of state +crowning|2 +(adj)|ultimate +(adj)|top +crownless|1 +(adj)|uncrowned |quasi-royal +crownwork|1 +(noun)|cap|dental appliance +crozier|1 +(noun)|crosier|staff +crp|1 +(noun)|C-reactive protein|CRP|serum globulin +crt|1 +(noun)|cathode-ray tube|CRT|gas-discharge tube +crt screen|1 +(noun)|screen|CRT screen|display +crucial|4 +(adj)|crucial |important|critical|decisive|life-and-death|life-or-death|pivotal|polar|critical|decisive|essential +(adj)|relevant|material +(adj)|all-important|all important|essential|of the essence|important |of import +(adj)|deciding|determinant|determinative|determining|decisive +cruciality|1 +(noun)|criticality|criticalness|urgency +crucian carp|1 +(noun)|Carassius carassius|Carassius vulgaris|cyprinid|cyprinid fish +cruciate|1 +(adj)|cruciform|symmetrical |symmetric +crucible|1 +(noun)|melting pot|vessel +crucible steel|1 +(noun)|steel +crucifer|1 +(noun)|cruciferous plant|herb|herbaceous plant +cruciferae|1 +(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family +cruciferous|1 +(adj)|dilleniid dicot family +cruciferous plant|1 +(noun)|crucifer|herb|herbaceous plant +cruciferous vegetable|1 +(noun)|vegetable|veggie +crucifix|2 +(noun)|rood|rood-tree|cross +(noun)|gymnastic exercise +crucifix fish|1 +(noun)|sea catfish +crucifixion|3 +(noun)|execution|executing|capital punishment|death penalty +(noun)|Crucifixion|death|decease +(noun)|excruciation|torture|torturing +cruciform|1 +(adj)|cruciate|symmetrical |symmetric +crucify|3 +(verb)|execute|put to death +(verb)|torment|rag|bedevil|dun|frustrate|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|savage|pillory|knock|criticize|criticise|pick apart +crud|3 +(noun)|snow +(noun)|filth|skank|waste|waste material|waste matter|waste product +(noun)|disease +crude|7 +(adj)|rough|unskilled +(adj)|coarse|earthy|gross|vulgar|indecent +(adj)|unrefined |unprocessed +(adj)|primitive|rude|early +(adj)|blunt|stark|unconditional +(adj)|raw|unanalyzed +(noun)|petroleum|crude oil|rock oil|fossil oil|oil|fossil fuel +crude oil|1 +(noun)|petroleum|crude|rock oil|fossil oil|oil|fossil fuel +crudely|1 +(adv)|artlessly|inexpertly +crudeness|3 +(noun)|crudity|primitiveness|primitivism|rudeness|wild|natural state|state of nature +(noun)|crudity|gaucheness|impoliteness +(noun)|roughness|inelegance +crudites|1 +(noun)|appetizer|appetiser|starter +crudity|2 +(noun)|crudeness|primitiveness|primitivism|rudeness|wild|natural state|state of nature +(noun)|crudeness|gaucheness|impoliteness +cruel|4 +(adj)|unkind|heartless +(adj)|barbarous|brutal|fell|roughshod|savage|vicious|inhumane +(adj)|brutal|inhumane +(adj)|brutal|harsh|rigorous|unkind|hard +cruel and unusual punishment|1 +(noun)|punishment|penalty|penalization|penalisation +cruel plant|1 +(noun)|Araujia sericofera|vine +cruelness|1 +(noun)|cruelty|harshness|malevolence|malevolency|malice +cruelty|3 +(noun)|inhuman treatment|maltreatment|ill-treatment|ill-usage|abuse +(noun)|mercilessness|pitilessness|ruthlessness|heartlessness|coldheartedness|hardheartedness +(noun)|cruelness|harshness|malevolence|malevolency|malice +cruet|1 +(noun)|crewet|bottle +cruet-stand|1 +(noun)|rack|stand +cruise|5 +(noun)|sail|ocean trip|voyage +(verb)|travel|journey +(verb)|travel|go|move|locomote +(verb)|search|look +(verb)|voyage|sail|navigate +cruise control|1 +(noun)|control|controller +cruise liner|1 +(noun)|cruise ship|liner|ocean liner +cruise missile|1 +(noun)|aircraft|bomb +cruise ship|1 +(noun)|cruise liner|liner|ocean liner +cruiser|3 +(noun)|police cruiser|patrol car|police car|prowl car|squad car|car|auto|automobile|machine|motorcar +(noun)|warship|war vessel|combat ship +(noun)|cabin cruiser|pleasure boat|pleasure craft|motorboat|powerboat +cruiserweight|1 +(noun)|light heavyweight|prizefighter|gladiator +cruller|1 +(noun)|twister|friedcake +crumb|6 +(noun)|small indefinite quantity|small indefinite amount +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|morsel|bit|bite +(verb)|coat|surface +(verb)|break up|fragment|fragmentize|fragmentise +(verb)|remove|take|take away|withdraw +crumb cake|1 +(noun)|cake +crumble|3 +(verb)|crumple|tumble|break down|collapse|change integrity +(verb)|fall apart|disintegrate +(verb)|decay|delapidate|change +crumbled|1 +(adj)|fragmented|broken +crumbliness|1 +(noun)|friability|breakableness +crumbly|1 +(adj)|breakable +crumhorn|1 +(noun)|krummhorn|cromorne|double-reed instrument|double reed +crummy|1 +(adj)|bum|cheap|cheesy|chintzy|punk|sleazy|tinny|inferior +crump|3 +(verb)|thud|scrunch|crunch|scranch|scraunch|crackle +(verb)|blast|shell +(verb)|explode|burst +crumpet|1 +(noun)|English muffin|bread|breadstuff|staff of life +crumple|4 +(verb)|crumble|tumble|break down|collapse|change integrity +(verb)|buckle|collapse|fall in|cave in|give|give way|break|founder +(verb)|pucker|rumple|cockle|knit|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +(verb)|rumple|wrinkle|crease|crinkle|fold|fold up +crumpled|2 +(adj)|creased|rumpled|wrinkled +(adj)|bent|dented|damaged +crunch|7 +(noun)|noise +(noun)|situation +(noun)|crush|compaction|compression|compressing +(verb)|scranch|scraunch|crackle|make noise|resound|noise +(verb)|cranch|craunch|grind|press +(verb)|munch|chew|masticate|manducate|jaw +(verb)|grind|mash|bray|comminute|break up|fragment|fragmentize|fragmentise +crunched|1 +(adj)|break up|fragment|fragmentize|fragmentise +crunchy|1 +(adj)|crisp|firm|fresh +crupper|1 +(noun)|strap +crural|1 +(adj)|limb +crus|1 +(noun)|limb +crusade|4 +(noun)|campaign|cause|drive|movement|effort|venture +(noun)|Crusade|expedition|military expedition|hostile expedition +(verb)|fight|press|campaign|push|agitate|advertise|advertize|promote|push +(verb)|campaign|take the field +crusader|2 +(noun)|reformer|reformist|meliorist|disputant|controversialist|eristic +(noun)|warrior +cruse|1 +(noun)|jar +crush|12 +(noun)|crushed leather|leather +(noun)|jam|press|crowd +(noun)|puppy love|calf love|infatuation|love +(noun)|crunch|compaction|compression|compressing +(verb)|oppress|suppress +(verb)|squash|squelch|mash|squeeze|press +(verb)|beat|beat out|shell|trounce|vanquish|get the better of|overcome|defeat +(verb)|break up|fragment|fragmentize|fragmentise +(verb)|smash|demolish|humiliate|mortify|chagrin|humble|abase +(verb)|jam|bruise|contuse +(verb)|break down|change|alter|modify +(verb)|break|separate|split up|fall apart|come apart +crush out|1 +(verb)|stub out|extinguish|press out|end|terminate +crushed|3 +(adj)|rough |unsmooth +(adj)|broken|humbled|humiliated|low|humble +(adj)|ground|broken +crushed leather|1 +(noun)|crush|leather +crushed rock|1 +(noun)|gravel|rock|stone +crusher|1 +(noun)|device +crushing|2 +(adj)|devastating|destructive +(noun)|suppression|quelling|stifling|prevention|bar +crust|4 +(noun)|Earth's crust|layer +(noun)|incrustation|encrustation|covering|natural covering|cover +(noun)|gall|impertinence|impudence|insolence|cheekiness|freshness|discourtesy|rudeness +(verb)|change surface +crustacea|1 +(noun)|Crustacea|class Crustacea|class +crustacean|2 +(adj)|crustaceous|class +(noun)|arthropod +crustaceous|2 +(adj)|crustacean|class +(adj)|covering|natural covering|cover +crustal movement|1 +(noun)|tectonic movement|movement|motion +crustal plate|1 +(noun)|plate|crust|Earth's crust +crusted|1 +(adj)|encrusted|crusty|crustlike|covered +crustlike|1 +(adj)|crusted|encrusted|crusty|covered +crustose|1 +(adj)|covering|natural covering|cover +crustose thallus|1 +(noun)|thallus +crusty|2 +(adj)|crusted|encrusted|crustlike|covered +(adj)|curmudgeonly|gruff|ill-humored|ill-humoured|ill-natured +crutch|2 +(noun)|staff +(noun)|expedient +crux|2 +(noun)|Southern Cross|Crux|Crux Australis|constellation +(noun)|crux of the matter|point +crux australis|1 +(noun)|Southern Cross|Crux|Crux Australis|constellation +crux of the matter|1 +(noun)|crux|point +cruzeiro|1 +(noun)|Brazilian monetary unit +cry|12 +(noun)|outcry|call|yell|shout|vociferation|utterance|vocalization +(noun)|yell|utterance|vocalization +(noun)|war cry|rallying cry|battle cry|watchword|motto|slogan|catchword|shibboleth +(noun)|effusion|gush|outburst|blowup|ebullition +(noun)|sound +(verb)|shout|shout out|call|yell|scream|holler|hollo|squall|utter|emit|let out|let loose|cry out +(verb)|weep|express emotion|express feelings +(verb)|exclaim|cry out|outcry|call out|shout|express|verbalize|verbalise|utter|give tongue to +(verb)|blazon out|announce|denote +(verb)|want|need|require +(verb)|utter|emit|let out|let loose +(verb)|change|alter|modify +cry-baby tree|1 +(noun)|ceibo|crybaby tree|common coral tree|Erythrina crista-galli|coral tree|erythrina +cry for|1 +(verb)|cry out for|necessitate|ask|postulate|need|require|take|involve|call for|demand +cry out|1 +(verb)|exclaim|cry|outcry|call out|shout|express|verbalize|verbalise|utter|give tongue to +cry out for|1 +(verb)|cry for|necessitate|ask|postulate|need|require|take|involve|call for|demand +cryaesthesia|1 +(noun)|cryesthesia|hypersensitivity +crybaby|2 +(noun)|wimp|chicken|weakling|doormat|wuss +(noun)|whiner|complainer|moaner|sniveller|bellyacher|grumbler|squawker|unpleasant person|disagreeable person +crybaby tree|1 +(noun)|ceibo|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree|erythrina +cryesthesia|1 +(noun)|cryaesthesia|hypersensitivity +crying|9 +(adj)|howling|yelling|shouting|noisy +(adj)|clamant|exigent|insistent|instant|imperative +(adj)|egregious|flagrant|glaring|gross|rank|conspicuous |obvious +(noun)|weeping|tears|bodily process|body process|bodily function|activity +(noun)|cry|outcry|call|yell|shout|vociferation|utterance|vocalization +(noun)|cry|yell|utterance|vocalization +(noun)|war cry|rallying cry|battle cry|cry|watchword|motto|slogan|catchword|shibboleth +(noun)|cry|effusion|gush|outburst|blowup|ebullition +(noun)|cry|sound +cryoanaesthesia|1 +(noun)|cryoanesthesia|anesthesia|anaesthesia +cryoanesthesia|1 +(noun)|cryoanaesthesia|anesthesia|anaesthesia +cryobiology|1 +(noun)|biology|biological science +cryocautery|2 +(noun)|cautery|cauterant +(noun)|cautery|cauterization|cauterisation +cryogen|1 +(noun)|refrigerant +cryogenic|1 +(adj)|refrigerant +cryogenics|1 +(noun)|cryogeny|physics|physical science|natural philosophy +cryogeny|1 +(noun)|cryogenics|physics|physical science|natural philosophy +cryolite|1 +(noun)|Greenland spar|mineral +cryometer|1 +(noun)|thermometer +cryonic|1 +(adj)|cryobiology +cryonics|1 +(noun)|cryobiology +cryopathy|1 +(noun)|frostbite|injury|hurt|harm|trauma +cryophobia|1 +(noun)|simple phobia +cryoscope|1 +(noun)|measuring instrument|measuring system|measuring device +cryostat|1 +(noun)|thermostat|thermoregulator +cryosurgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +crypt|1 +(noun)|burial chamber|sepulcher|sepulchre|sepulture +cryptacanthodes|1 +(noun)|Cryptacanthodes|genus Cryptacanthodes|fish genus +cryptacanthodes maculatus|1 +(noun)|wrymouth|ghostfish|Cryptacanthodes maculatus|blennioid fish|blennioid +cryptanalysis|1 +(noun)|cryptanalytics|cryptography|cryptology|science|scientific discipline +cryptanalyst|1 +(noun)|cryptographer|cryptologist|decoder|decipherer +cryptanalytic|1 +(adj)|cryptographic|cryptographical|cryptologic|cryptological|science|scientific discipline +cryptanalytics|1 +(noun)|cryptanalysis|cryptography|cryptology|science|scientific discipline +cryptic|3 +(adj)|cryptical|deep|inscrutable|mysterious|mystifying|inexplicable |incomprehensible +(adj)|cabalistic|kabbalistic|qabalistic|cryptical|sibylline|esoteric +(adj)|concise +cryptic coloration|1 +(noun)|protective coloration +cryptical|2 +(adj)|cryptic|deep|inscrutable|mysterious|mystifying|inexplicable |incomprehensible +(adj)|cabalistic|kabbalistic|qabalistic|cryptic|sibylline|esoteric +cryptically|1 +(adv)|enigmatically|mysteriously +cryptobiosis|1 +(noun)|physiological state|physiological condition +cryptobiotic|1 +(adj)|physiological state|physiological condition +cryptobranchidae|1 +(noun)|Cryptobranchidae|family Cryptobranchidae|amphibian family +cryptobranchus|1 +(noun)|Cryptobranchus|genus Cryptobranchus|amphibian genus +cryptobranchus alleganiensis|1 +(noun)|hellbender|mud puppy|Cryptobranchus alleganiensis|salamander +cryptocercidae|1 +(noun)|Cryptocercidae|family Cryptocercidae|arthropod family +cryptocercus|1 +(noun)|Cryptocercus|genus Cryptocercus|arthropod genus +cryptococcosis|1 +(noun)|fungal infection|mycosis +cryptocoryne|1 +(noun)|water trumpet|aquatic plant|water plant|hydrophyte|hydrophytic plant +cryptogam|1 +(noun)|plant|flora|plant life +cryptogamia|1 +(noun)|Cryptogamia|division +cryptogamic|1 +(adj)|cryptogamous|plant|flora|plant life +cryptogamous|1 +(adj)|cryptogamic|plant|flora|plant life +cryptogram|1 +(noun)|cryptograph|secret writing|writing|written material|piece of writing +cryptogramma|1 +(noun)|Cryptogramma|genus Cryptogramma|fern genus +cryptogramma acrostichoides|1 +(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake +cryptogramma crispa|1 +(noun)|European parsley fern|mountain parsley fern|Cryptogramma crispa|rock brake +cryptogrammataceae|1 +(noun)|Cryptogrammataceae|family Cryptogrammataceae|fern family +cryptograph|3 +(noun)|cipher|cypher|secret code|code +(noun)|cryptogram|secret writing|writing|written material|piece of writing +(noun)|device +cryptographer|1 +(noun)|cryptanalyst|cryptologist|decoder|decipherer +cryptographic|1 +(adj)|cryptanalytic|cryptographical|cryptologic|cryptological|science|scientific discipline +cryptographical|1 +(adj)|cryptanalytic|cryptographic|cryptologic|cryptological|science|scientific discipline +cryptography|2 +(noun)|cryptanalysis|cryptanalytics|cryptology|science|scientific discipline +(noun)|coding|secret writing|writing|committal to writing +cryptologic|1 +(adj)|cryptanalytic|cryptographic|cryptographical|cryptological|science|scientific discipline +cryptological|1 +(adj)|cryptanalytic|cryptographic|cryptographical|cryptologic|science|scientific discipline +cryptologist|1 +(noun)|cryptanalyst|cryptographer|decoder|decipherer +cryptology|1 +(noun)|cryptanalysis|cryptanalytics|cryptography|science|scientific discipline +cryptomeria|1 +(noun)|Cryptomeria|genus Cryptomeria|gymnosperm genus +cryptomeria japonica|1 +(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar|cedar tree +cryptomonad|1 +(noun)|cryptophyte|alga|algae +cryptophyceae|1 +(noun)|Cryptophyceae|class Cryptophyceae|class +cryptophyta|1 +(noun)|Cryptophyta|phylum Cryptophyta|phylum +cryptophyte|1 +(noun)|cryptomonad|alga|algae +cryptoprocta|1 +(noun)|Cryptoprocta|genus Cryptoprocta|civet|civet cat +cryptoprocta ferox|1 +(noun)|fossa|fossa cat|Cryptoprocta ferox|viverrine|viverrine mammal +cryptorchidism|1 +(noun)|cryptorchidy|cryptorchism|abnormality|abnormalcy|abnormal condition +cryptorchidy|1 +(noun)|cryptorchidism|cryptorchism|abnormality|abnormalcy|abnormal condition +cryptorchism|1 +(noun)|cryptorchidy|cryptorchidism|abnormality|abnormalcy|abnormal condition +cryptotermes|1 +(noun)|Cryptotermes|genus Cryptotermes|arthropod genus +cryptotermes brevis|1 +(noun)|powder-post termite|Cryptotermes brevis|termite|white ant +cryptotis|1 +(noun)|Cryptotis|genus Cryptotis|mammal genus +cryptotis parva|1 +(noun)|least shrew|Cryptotis parva|shrew|shrewmouse +crystal|6 +(noun)|solid +(noun)|component|constituent|element +(noun)|crystallization|rock|stone +(noun)|quartz glass|quartz|vitreous silica|lechatelierite|natural glass +(noun)|glassware|glasswork +(noun)|watch crystal|watch glass|protective covering|protective cover|protection +crystal ball|1 +(noun)|ball|globe|orb +crystal clear|2 +(adj)|crystalline|limpid|lucid|pellucid|transparent|clear +(adj)|limpid|lucid|luculent|pellucid|perspicuous|clear +crystal counter|1 +(noun)|counter tube +crystal detector|1 +(noun)|detector +crystal gazing|1 +(noun)|prophecy|prognostication|vaticination +crystal lattice|1 +(noun)|space lattice|Bravais lattice|lattice +crystal microphone|1 +(noun)|microphone|mike +crystal oscillator|1 +(noun)|quartz oscillator|oscillator +crystal pickup|1 +(noun)|cartridge|pickup +crystal rectifier|1 +(noun)|diode|semiconductor diode|junction rectifier|semiconductor device|semiconductor unit|semiconductor +crystal set|1 +(noun)|radio receiver|receiving set|radio set|radio|tuner|wireless +crystal tea|1 +(noun)|Labrador tea|Ledum groenlandicum|shrub|bush +crystal violet|1 +(noun)|gentian violet|stain|antibacterial|antibacterial drug|bactericide|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|vermifuge|anthelmintic|anthelminthic|helminthic +crystalise|4 +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|crystallize|crystallise|crystalize|change integrity +(verb)|crystallize|crystalize|effloresce|solidify +(verb)|crystallize|crystallise|crystalize|shape|form +crystalised|2 +(adj)|candied|crystalized|glace|preserved +(adj)|crystallized|crystalline +crystalize|4 +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|crystallize|crystallise|crystalise|change integrity +(verb)|crystallize|crystalise|effloresce|solidify +(verb)|crystallize|crystallise|crystalise|shape|form +crystalized|1 +(adj)|candied|crystalised|glace|preserved +crystalline|3 +(adj)|crystalline |crystallized|crystalised|polycrystalline|microcrystalline +(adj)|distinct +(adj)|crystal clear|limpid|lucid|pellucid|transparent|clear +crystalline lens|1 +(noun)|lens|organ +crystallisation|1 +(noun)|crystallization|crystallizing|chemical phenomenon +crystallise|3 +(verb)|clear|clear up|shed light on|crystallize|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|crystallize|crystalize|crystalise|change integrity +(verb)|crystallize|crystalise|crystalize|shape|form +crystallised|1 +(adj)|crystallized +crystallite|1 +(noun)|crystal|crystallization +crystallization|3 +(noun)|crystallisation|crystallizing|chemical phenomenon +(noun)|crystal|rock|stone +(noun)|construction|mental synthesis +crystallize|4 +(verb)|crystallise|crystalise|crystalize|shape|form +(verb)|clear|clear up|shed light on|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|crystallise|crystalize|crystalise|change integrity +(verb)|crystalize|crystalise|effloresce|solidify +crystallized|2 +(adj)|crystallized |crystallised +(adj)|crystalised|crystalline +crystallized fruit|1 +(noun)|candied fruit|confiture +crystallized ginger|1 +(noun)|candied fruit|crystallized fruit +crystallizing|1 +(noun)|crystallization|crystallisation|chemical phenomenon +crystallography|1 +(noun)|physics|physical science|natural philosophy +cs|1 +(noun)|cesium|caesium|Cs|atomic number 55|metallic element|metal +cs gas|1 +(noun)|chlorobenzylidenemalononitrile|CS gas|tear gas|teargas|lacrimator|lachrymator +cse|1 +(noun)|Communications Security Establishment|CSE|international intelligence agency +csis|1 +(noun)|Canadian Security Intelligence Service|CSIS|international intelligence agency +cst|1 +(noun)|Central Time|Central Standard Time|CST|civil time|standard time|local time +ct|2 +(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state +(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying|X-radiation +ctc|1 +(noun)|Counterterrorist Center|CTC|agency|federal agency|government agency|bureau|office|authority +ctene|1 +(noun)|organ +ctenidium|1 +(noun)|gill|branchia +ctenizidae|1 +(noun)|Ctenizidae|family Ctenizidae|arthropod family +ctenocephalides|1 +(noun)|Ctenocephalides|genus Ctenocephalides|arthropod genus +ctenocephalides canis|1 +(noun)|dog flea|Ctenocephalides canis|flea +ctenocephalides felis|1 +(noun)|cat flea|Ctenocephalides felis|flea +ctenocephalus|1 +(noun)|Ctenocephalus|genus Ctenocephalus|Ctenocephalides|genus Ctenocephalides +ctenophora|1 +(noun)|Ctenophora|phylum Ctenophora|phylum +ctenophore|1 +(noun)|comb jelly|invertebrate +ctenophore family|1 +(noun)|family +ctenophore genus|1 +(noun)|genus +cu|1 +(noun)|copper|Cu|atomic number 29|metallic element|metal|conductor +cu ft|1 +(noun)|cubic foot|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cu in|1 +(noun)|cubic inch|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cub|4 +(noun)|greenhorn|rookie|novice|beginner|tyro|tiro|initiate +(noun)|lad|laddie|sonny|sonny boy|male child|boy +(noun)|young carnivore|young mammal +(verb)|litter +cub scout|1 +(noun)|boy scout +cub shark|1 +(noun)|bull shark|Carcharhinus leucas|requiem shark +cuba|2 +(noun)|Cuba|Republic of Cuba|country|state|land +(noun)|Cuba|island +cubage unit|1 +(noun)|volume unit|capacity unit|capacity measure|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement|unit +cuban|2 +(adj)|Cuban|country|state|land +(noun)|Cuban|West Indian +cuban bast|1 +(noun)|Cuban bast|blue mahoe|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus +cuban capital|1 +(noun)|Havana|capital of Cuba|Cuban capital|national capital +cuban heel|1 +(noun)|Cuban heel|heel +cuban itch|1 +(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +cuban mahogany|1 +(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany|mahogany tree +cuban monetary unit|1 +(noun)|Cuban monetary unit|monetary unit +cuban peso|1 +(noun)|Cuban peso|peso|Cuban monetary unit +cuban revolution|1 +(noun)|Cuban Revolution|revolution +cuban sandwich|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +cuban spinach|1 +(noun)|winter purslane|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce +cubature unit|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|unit of measurement|unit +cubby|1 +(noun)|cubbyhole|snuggery|snug|room +cubbyhole|2 +(noun)|pigeonhole|compartment +(noun)|cubby|snuggery|snug|room +cube|7 +(noun)|block|solid +(noun)|regular hexahedron|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +(noun)|third power|number +(noun)|subshrub|suffrutex +(noun)|square block|block +(verb)|multiply +(verb)|dice|cut +cube-shaped|1 +(adj)|cubelike|cubical|cubiform|cuboid|cuboidal|cubic |three-dimensional +cube root|1 +(noun)|root +cubeb|3 +(noun)|fruit +(noun)|cubeb vine|Java pepper|Piper cubeba|true pepper|pepper vine +(noun)|cubeb cigarette|cigarette|cigaret|coffin nail|butt|fag +cubeb cigarette|1 +(noun)|cubeb|cigarette|cigaret|coffin nail|butt|fag +cubeb vine|1 +(noun)|cubeb|Java pepper|Piper cubeba|true pepper|pepper vine +cubelike|1 +(adj)|cube-shaped|cubical|cubiform|cuboid|cuboidal|cubic |three-dimensional +cubic|1 +(adj)|cubic |three-dimensional|blockish|blocky|boxlike|boxy|cubelike|cube-shaped|cubical|cubiform|cuboid|cuboidal|isometric|solid +cubic centimeter|1 +(noun)|milliliter|millilitre|mil|ml|cubic centimetre|cc|metric capacity unit +cubic centimetre|1 +(noun)|milliliter|millilitre|mil|ml|cubic centimeter|cc|metric capacity unit +cubic content unit|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|displacement unit|cubature unit|unit of measurement|unit +cubic decimeter|1 +(noun)|liter|litre|l|cubic decimetre|metric capacity unit +cubic decimetre|1 +(noun)|liter|litre|l|cubic decimeter|metric capacity unit +cubic foot|1 +(noun)|cu ft|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cubic inch|1 +(noun)|cu in|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cubic kilometer|1 +(noun)|cubic kilometre|metric capacity unit +cubic kilometre|1 +(noun)|cubic kilometer|metric capacity unit +cubic measure|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic content unit|displacement unit|cubature unit|unit of measurement|unit +cubic meter|1 +(noun)|kiloliter|kilolitre|cubic metre|metric capacity unit +cubic metre|1 +(noun)|kiloliter|kilolitre|cubic meter|metric capacity unit +cubic millimeter|1 +(noun)|cubic millimetre|metric capacity unit +cubic millimetre|1 +(noun)|cubic millimeter|metric capacity unit +cubic yard|1 +(noun)|yard|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +cubical|1 +(adj)|cubelike|cube-shaped|cubiform|cuboid|cuboidal|cubic |three-dimensional +cubicity|1 +(noun)|three-dimensionality|third-dimensionality +cubicle|3 +(noun)|cell|room +(noun)|carrel|carrell|stall|alcove|bay +(noun)|booth|stall|kiosk|closet +cubiform|1 +(adj)|cubelike|cube-shaped|cubical|cuboid|cuboidal|cubic |three-dimensional +cubism|1 +(noun)|artistic movement|art movement +cubist|2 +(adj)|cubistic|artistic movement|art movement +(noun)|painter +cubistic|1 +(adj)|cubist|artistic movement|art movement +cubit|1 +(noun)|linear unit +cubital|1 +(adj)|hinge joint|ginglymus|ginglymoid joint +cubital joint|1 +(noun)|elbow|elbow joint|cubitus|articulatio cubiti|hinge joint|ginglymus|ginglymoid joint +cubital nerve|1 +(noun)|ulnar nerve|nervus ulnaris|nerve|nervus +cubitiere|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +cubitus|2 +(noun)|elbow|elbow joint|cubital joint|articulatio cubiti|hinge joint|ginglymus|ginglymoid joint +(noun)|limb +cuboid|2 +(adj)|cubelike|cube-shaped|cubical|cubiform|cuboidal|cubic |three-dimensional +(noun)|parallelepiped|parallelopiped|parallelepipedon|parallelopipedon +cuboid bone|1 +(noun)|bone|os +cuboidal|1 +(adj)|cubelike|cube-shaped|cubical|cubiform|cuboid|cubic |three-dimensional +cuboidal cell|1 +(noun)|cuboidal epithelial cell|epithelial cell +cuboidal epithelial cell|1 +(noun)|cuboidal cell|epithelial cell +cucking stool|1 +(noun)|ducking stool|instrument of punishment +cuckold|2 +(noun)|husband|hubby|married man +(verb)|cheat on|cheat|betray|wander|deceive|lead on|delude|cozen +cuckoo|3 +(noun)|fathead|goof|goofball|bozo|jackass|goose|twat|zany|fool|sap|saphead|muggins|tomfool +(noun)|cuculiform bird +(verb)|repeat|echo +cuckoo's nest|1 +(noun)|Bedlam|booby hatch|crazy house|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +cuckoo-bumblebee|1 +(noun)|bee +cuckoo bread|1 +(noun)|common wood sorrel|shamrock|Oxalis acetosella|oxalis|sorrel|wood sorrel +cuckoo clock|1 +(noun)|clock +cuckoo flower|3 +(noun)|lady's smock|cuckooflower|meadow cress|Cardamine pratensis|bittercress|bitter cress +(noun)|ragged robin|Lychnis flos-cuculi|Lychins floscuculi|lychnis|catchfly +(noun)| +cuckooflower|1 +(noun)|lady's smock|cuckoo flower|meadow cress|Cardamine pratensis|bittercress|bitter cress +cuckoopint|1 +(noun)|lords-and-ladies|jack-in-the-pulpit|Arum maculatum|arum|aroid +cuculidae|1 +(noun)|Cuculidae|family Cuculidae|bird family +cuculiform bird|1 +(noun)|bird +cuculiformes|1 +(noun)|Cuculiformes|order Cuculiformes|animal order +cuculus|1 +(noun)|Cuculus|genus Cuculus|bird genus +cuculus canorus|1 +(noun)|European cuckoo|Cuculus canorus|cuckoo +cucumber|2 +(noun)|cucumber vine|Cucumis sativus|melon|melon vine +(noun)|cuke|vegetable|veggie +cucumber tree|1 +(noun)|Magnolia acuminata|magnolia +cucumber vine|1 +(noun)|cucumber|Cucumis sativus|melon|melon vine +cucumis|1 +(noun)|Cucumis|genus Cucumis|dicot genus|magnoliopsid genus +cucumis melo|1 +(noun)|sweet melon|muskmelon|sweet melon vine|Cucumis melo|melon|melon vine +cucumis melo cantalupensis|1 +(noun)|cantaloupe|cantaloup|cantaloupe vine|Cucumis melo cantalupensis|sweet melon|muskmelon|sweet melon vine|Cucumis melo +cucumis melo inodorus|1 +(noun)|winter melon|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +cucumis melo reticulatus|1 +(noun)|net melon|netted melon|nutmeg melon|Cucumis melo reticulatus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +cucumis sativus|1 +(noun)|cucumber|cucumber vine|Cucumis sativus|melon|melon vine +cucurbit|1 +(noun)|Cucurbitaceae|family Cucurbitaceae|gourd family +cucurbita|1 +(noun)|Cucurbita|genus Cucurbita|dicot genus|magnoliopsid genus +cucurbita argyrosperma|1 +(noun)|cushaw|Cucurbita mixta|Cucurbita argyrosperma|winter squash|winter squash plant +cucurbita foetidissima|1 +(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd|gourd vine +cucurbita maxima|2 +(noun)|butternut squash|Cucurbita maxima|winter squash|winter squash plant +(noun)|hubbard squash|Cucurbita maxima|winter squash|winter squash plant +cucurbita maxima turbaniformis|1 +(noun)|turban squash|Cucurbita maxima turbaniformis|winter squash|winter squash plant +cucurbita mixta|1 +(noun)|cushaw|Cucurbita mixta|Cucurbita argyrosperma|winter squash|winter squash plant +cucurbita moschata|1 +(noun)|winter crookneck|winter crookneck squash|Cucurbita moschata|winter squash|winter squash plant +cucurbita pepo|1 +(noun)|pumpkin|pumpkin vine|autumn pumpkin|Cucurbita pepo|squash|squash vine +cucurbita pepo melopepo|1 +(noun)|summer squash|summer squash vine|Cucurbita pepo melopepo|squash|squash vine +cucurbitaceae|1 +(noun)|Cucurbitaceae|family Cucurbitaceae|gourd family|dicot family|magnoliopsid family +cucurbitaceous|1 +(adj)|dicot family|magnoliopsid family +cud|2 +(noun)|rechewed food|feed|provender +(noun)|chew|chaw|quid|plug|wad|morsel|bit|bite +cudbear|1 +(noun)|orchil|archil|dye|dyestuff +cuddle|3 +(noun)|nestle|snuggle|embrace|embracing +(verb)|snuggle|nestle|nest|nuzzle|draw close|cling to|hold close|hold tight|clutch +(verb)|embrace|hug|bosom|squeeze +cuddlesome|1 +(adj)|cuddly|lovable |loveable +cuddling|1 +(noun)|caressing|fondling|hugging|kissing|necking|petting|smooching|snuggling|foreplay|arousal|stimulation +cuddly|1 +(adj)|cuddlesome|lovable |loveable +cuddy|1 +(noun)|galley|ship's galley|caboose|cookhouse +cudgel|2 +(noun)|club +(verb)|hit +cudweed|3 +(noun)|everlasting|everlasting flower +(noun)|cotton rose|filago|flower +(noun)|western mugwort|white sage|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +cue|5 +(noun)|actor's line|speech|words +(noun)|clue|clew|evidence +(noun)|discriminative stimulus|stimulation|stimulus|stimulant|input +(noun)|cue stick|pool cue|pool stick|sports implement +(verb)|prompt|remind|inform +cue ball|1 +(noun)|billiard ball +cue stick|1 +(noun)|cue|pool cue|pool stick|sports implement +cuff|4 +(noun)|turnup|lap|overlap +(noun)|handcuffs|handcuff|cuffs|handlock|manacle|shackle|bond|hamper|trammel|trammels +(verb)|whomp|slap +(verb)|manacle|handcuff|fetter|shackle +cuffed|1 +(adj)|slapped|abused |ill-treated|maltreated|mistreated +cufflink|1 +(noun)|jewelry|jewellery +cuffs|3 +(noun)|handcuffs|handcuff|cuff|handlock|manacle|shackle|bond|hamper|trammel|trammels +(noun)|cuff|turnup|lap|overlap +(noun)|handcuffs|handcuff|cuff|handlock|manacle|shackle|bond|hamper|trammel|trammels +cuidad bolivar|1 +(noun)|Cuidad Bolivar|city|metropolis|urban center|port +cuirass|1 +(noun)|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +cuirassier|1 +(noun)|cavalryman|trooper +cuisine|1 +(noun)|culinary art|cooking|cookery|preparation +cuisse|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +cuke|1 +(noun)|cucumber|vegetable|veggie +cul|1 +(noun)|cul de sac|dead end|passage +cul de lampe|1 +(noun)|corbel|truss +cul de sac|2 +(noun)|cul|dead end|passage +(noun)|blind alley|dead-end street|impasse|thoroughfare +culbertson|1 +(noun)|Culbertson|Ely Culbertson|card player +culcita|1 +(noun)|Culcita|genus Culcita|fern genus +culcita dubia|1 +(noun)|false bracken|Culcita dubia|fern +culdoscope|1 +(noun)|endoscope +culdoscopy|1 +(noun)|endoscopy +culebra|1 +(noun)|Culebra|island +culex|1 +(noun)|Culex|genus Culex|arthropod genus +culex fatigans|1 +(noun)|Culex quinquefasciatus|Culex fatigans|mosquito +culex pipiens|1 +(noun)|common mosquito|Culex pipiens|mosquito +culex quinquefasciatus|1 +(noun)|Culex quinquefasciatus|Culex fatigans|mosquito +culiacan|1 +(noun)|Culiacan|city|metropolis|urban center +culicidae|1 +(noun)|Culicidae|family Culicidae|arthropod family +culinary|1 +(adj)|cooking|cookery|preparation +culinary art|1 +(noun)|cuisine|cooking|cookery|preparation +cull|3 +(noun)|reject|decision making|deciding +(verb)|get rid of|remove +(verb)|pick|pluck|gather|garner|collect|pull together|cull out +cull out|1 +(verb)|choose|take|select|pick out +cullender|1 +(noun)|colander|strainer +cullis|1 +(noun)|gutter|trough +culm|1 +(noun)|stalk|stem +culminate|5 +(verb)|climax|end|stop|finish|terminate|cease +(verb)|end|terminate +(verb)|achieve|accomplish|attain|reach +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|shape|form +culmination|4 +(noun)|apogee|phase|stage +(noun)|celestial point +(noun)|climax|moment|minute|second|instant +(noun)|completion|closing|windup|mop up|termination|ending|conclusion +culotte|1 +(noun)|culottes|skirt +culottes|2 +(noun)|culotte|skirt +(noun)|culotte|skirt +culpability|1 +(noun)|blameworthiness|culpableness|guilt|guiltiness +culpable|1 +(adj)|blameworthy|blamable|blameable|blameful|censurable|guilty +culpable negligence|1 +(noun)|criminal negligence|negligence|carelessness|neglect|nonperformance +culpableness|1 +(noun)|blameworthiness|culpability|guilt|guiltiness +culpably|1 +(adv)|reprehensibly +culprit|1 +(noun)|perpetrator|wrongdoer|offender +cult|3 +(noun)|religion|faith +(noun)|fad|craze|furor|furore|rage|fashion +(noun)|cultus|religious cult|religion|faith|religious belief +cult of personality|1 +(noun)|fashion +cultism|2 +(noun)|devotion +(noun)|idolatry|devotion|veneration|worship +cultist|1 +(noun)|follower +cultivable|1 +(adj)|arable|cultivatable|tillable|productive +cultivar|1 +(noun)|variety|vascular plant|tracheophyte +cultivatable|1 +(adj)|arable|cultivable|tillable|productive +cultivate|3 +(verb)|crop|work|fix|prepare|set up|ready|gear up|set +(verb)|educate|school|train|civilize|civilise|polish|refine|fine-tune|down +(verb)|domesticate|naturalize|naturalise|tame|adapt|accommodate +cultivated|3 +(adj)|cultivated +(adj)|tame |tamed +(adj)|civilized|civilised|cultured|genteel|polite|refined +cultivated cabbage|1 +(noun)|cabbage|Brassica oleracea|crucifer|cruciferous plant +cultivated carrot|1 +(noun)|carrot|Daucus carota sativa|herb|herbaceous plant +cultivated celery|1 +(noun)|celery|Apium graveolens dulce|herb|herbaceous plant +cultivated crab apple|1 +(noun)|crab apple|crabapple|apple tree +cultivated land|1 +(noun)|farmland|plowland|ploughland|tilled land|tillage|tilth|land|ground|soil +cultivated parsnip|1 +(noun)|parsnip|Pastinaca sativa +cultivated plant|1 +(noun)|vascular plant|tracheophyte +cultivated rice|1 +(noun)|Oryza sativa|rice +cultivated strawberry|1 +(noun)|garden strawberry|Fragaria ananassa|strawberry +cultivation|3 +(noun)|socialization|socialisation|acculturation|enculturation +(noun)|production +(noun)|polish|refinement|culture|finish|perfection|flawlessness|ne plus ultra +cultivator|2 +(noun)|agriculturist|grower|raiser|farmer|husbandman|granger|sodbuster +(noun)|tiller|farm machine +cultural|4 +(adj)|taste|appreciation|discernment|perceptiveness +(adj)|ethnic|ethnical|social +(adj)|content|cognitive content|mental object +(adj)|cultivation +cultural anthropology|1 +(noun)|social anthropology|anthropology +cultural attache|1 +(noun)|attache +cultural movement|1 +(noun)|movement|social movement|front +cultural revolution|1 +(noun)|Cultural Revolution|Great Proletarian Cultural Revolution|revolution +culturati|1 +(noun)|intelligentsia|clerisy +culture|8 +(noun)|civilization|civilisation|society +(noun)|taste|appreciation|discernment|perceptiveness +(noun)|acculturation|content|cognitive content|mental object +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|product +(noun)|polish|refinement|cultivation|finish|perfection|flawlessness|ne plus ultra +(noun)|attitude|mental attitude +(noun)|cultivation +culture medium|1 +(noun)|medium|substance|matter +culture shock|1 +(noun)|disorientation +cultured|1 +(adj)|civilized|civilised|cultivated|genteel|polite|refined +cultus|1 +(noun)|cult|religious cult|religion|faith|religious belief +culver's physic|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus +culver's root|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus +culverin|2 +(noun)|cannon +(noun)|musket +culvers physic|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus +culvers root|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus +culvert|1 +(noun)|drain|drainpipe|waste pipe +cum|1 +(noun)|semen|seed|seminal fluid|ejaculate|liquid body substance|bodily fluid|body fluid|humor|humour +cum laude|1 +(adj)|worthy +cumana|1 +(noun)|Cumana|city|metropolis|urban center|port +cumarone|1 +(noun)|benzofuran|coumarone|compound|chemical compound +cumber|1 +(verb)|restrain|encumber|constrain|restrict|restrain|trammel|limit|bound|confine|throttle +cumberland|2 +(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general|full general +(noun)|Cumberland|Cumberland River|river +cumberland gap|1 +(noun)|Cumberland Gap|pass|mountain pass|notch +cumberland mountains|1 +(noun)|Cumberland Mountains|Cumberland Plateau|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +cumberland plateau|1 +(noun)|Cumberland Mountains|Cumberland Plateau|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +cumberland river|1 +(noun)|Cumberland|Cumberland River|river +cumbersome|2 +(adj)|cumbrous|unwieldy |unmanageable +(adj)|awkward|clumsy|inapt|inept|ill-chosen|infelicitous +cumbersomeness|1 +(noun)|awkwardness|unwieldiness|troublesomeness|inconvenience|worriment +cumbria|2 +(noun)|Cumbria|geographical area|geographic area|geographical region|geographic region +(noun)|Cumbria|county +cumbrous|1 +(adj)|cumbersome|unwieldy |unmanageable +cumfrey|1 +(noun)|comfrey|herb|herbaceous plant +cumin|2 +(noun)|Cuminum cyminum|herb|herbaceous plant +(noun)|cumin seed|edible seed +cumin seed|1 +(noun)|cumin|edible seed +cuminum|1 +(noun)|Cuminum|genus Cuminum|rosid dicot genus +cuminum cyminum|1 +(noun)|cumin|Cuminum cyminum|herb|herbaceous plant +cummerbund|1 +(noun)|girdle|cincture|sash|waistband|waistcloth +cummings|1 +(noun)|e. e. cummings|Edward Estlin Cummings|writer|author +cumquat|1 +(noun)|kumquat|kumquat tree|citrus|citrus tree +cumulate|1 +(verb)|accumulate|conglomerate|pile up|gather|amass|increase +cumulative|1 +(adj)|accumulative|additive +cumulative preferred|1 +(noun)|cumulative preferred stock|preferred stock|preferred shares|preference shares +cumulative preferred stock|1 +(noun)|cumulative preferred|preferred stock|preferred shares|preference shares +cumulative vote|1 +(noun)|election +cumuliform|1 +(adj)|round |circular +cumulonimbus|1 +(noun)|cumulonimbus cloud|thundercloud|cloud +cumulonimbus cloud|1 +(noun)|cumulonimbus|thundercloud|cloud +cumulous|1 +(adj)|heaped|heaped-up|piled|concentrated +cumulus|2 +(noun)|cumulus cloud|cloud +(noun)|pile|heap|mound|collection|aggregation|accumulation|assemblage +cumulus cloud|1 +(noun)|cumulus|cloud +cunaxa|1 +(noun)|Cunaxa|battle of Cunaxa|pitched battle +cunctation|1 +(noun)|procrastination|shillyshally|delay|holdup +cunctator|1 +(noun)|procrastinator|postponer|delayer +cuneal|1 +(adj)|wedge-shaped|cuneiform +cuneate|1 +(adj)|wedge-shaped|simple |unsubdivided +cuneate leaf|1 +(noun)|simple leaf +cuneiform|3 +(adj)|wedge-shaped|cuneal +(adj)|bone|os +(noun)|script +cuneiform bone|1 +(noun)|triquetral|triquetral bone|os triquetrum|pyramidal bone|carpal bone|carpal|wrist bone +cuneus|1 +(noun)|wedge|wedge shape|triangle|trigon|trilateral +cuniculus|1 +(noun)|Cuniculus|genus Cuniculus|mammal genus +cuniculus paca|1 +(noun)|paca|Cuniculus paca|rodent|gnawer|gnawing animal +cunner|1 +(noun)|bergall|Tautogolabrus adspersus|wrasse +cunnilinctus|1 +(noun)|cunnilingus|oral sex|head +cunnilingus|1 +(noun)|cunnilinctus|oral sex|head +cunning|6 +(adj)|cute|attractive +(adj)|crafty|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful +(adj)|clever|ingenious|adroit +(noun)|shrewdness|astuteness|perspicacity|perspicaciousness +(noun)|craft|craftiness|foxiness|guile|slyness|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +(noun)|artfulness +cunningham|1 +(noun)|Cunningham|Merce Cunningham|dancer|professional dancer|choreographer +cunningly|2 +(adv)|cutely +(adv)|craftily|foxily|knavishly|slyly|trickily|artfully +cunonia family|1 +(noun)|Cunoniaceae|family Cunoniaceae|rosid dicot family +cunoniaceae|1 +(noun)|Cunoniaceae|family Cunoniaceae|cunonia family|rosid dicot family +cunt|2 +(noun)|bitch|unpleasant woman|disagreeable woman +(noun)|puss|pussy|slit|snatch|twat|female genitalia|female genitals|female genital organ|fanny +cuon|1 +(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus +cuon alpinus|1 +(noun)|dhole|Cuon alpinus|wild dog +cup|11 +(noun)|United States liquid unit +(noun)|cupful|containerful +(noun)|crockery|dishware|container +(noun)|loving cup|trophy|prize +(noun)|concave shape|concavity|incurvation|incurvature +(noun)|hole +(noun)|punch +(noun)|plant organ +(verb)|shape|form +(verb)|insert|enclose|inclose|stick in|put in|introduce +(verb)|transfuse|treat|care for +cup-shaped|1 +(adj)|cupular|cupulate|concave +cup and saucer|1 +(noun)|Canterbury bell|Campanula medium|campanula|bellflower +cup final|1 +(noun)|final +cup fungus|1 +(noun)|discomycete|ascomycete|ascomycetous fungus +cup hook|1 +(noun)|hook +cup morel|1 +(noun)|Disciotis venosa|morel +cup of tea|1 +(noun)|bag|dish|activity +cup tie|1 +(noun)|game +cupbearer|1 +(noun)|attendant|attender|tender +cupboard|1 +(noun)|closet|storage space +cupboard love|1 +(noun)|kindness|benignity +cupcake|1 +(noun)|cake +cupel|1 +(noun)|bone-ash cup|refractory pot|vessel +cupflower|2 +(noun)|chalice vine|trumpet flower|Solandra guttata|shrub|bush +(noun)|nierembergia|herb|herbaceous plant +cupful|1 +(noun)|cup|containerful +cupid|1 +(noun)|Cupid|Amor|Roman deity +cupid's bow|2 +(noun)|Cupid's bow|curve|curved shape +(noun)|Cupid's bow|bow +cupid's dart|1 +(noun)|blue succory|Catananche caerula|catananche +cupid's disease|1 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +cupid's itch|1 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +cupidity|1 +(noun)|avarice|avariciousness|covetousness|greed +cuplike|1 +(adj)|concave +cupola|2 +(noun)|furnace +(noun)|dome +cuppa|1 +(noun)|cupper|tea +cupper|1 +(noun)|cuppa|tea +cupping|1 +(noun)|bloodletting +cupressaceae|1 +(noun)|Cupressaceae|family Cupressaceae|cypress family|gymnosperm family +cupressus|1 +(noun)|Cupressus|genus Cupressus|gymnosperm genus +cupressus abramsiana|1 +(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress|cypress tree +cupressus arizonica|1 +(noun)|Arizona cypress|Cupressus arizonica|cypress|cypress tree +cupressus goveniana|1 +(noun)|gowen cypress|Cupressus goveniana|cypress|cypress tree +cupressus goveniana abramsiana|1 +(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress|cypress tree +cupressus goveniana pigmaea|1 +(noun)|pygmy cypress|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress|cypress tree +cupressus guadalupensis|1 +(noun)|Guadalupe cypress|Cupressus guadalupensis|cypress|cypress tree +cupressus lusitanica|1 +(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress|cypress tree +cupressus macrocarpa|1 +(noun)|Monterey cypress|Cupressus macrocarpa|cypress|cypress tree +cupressus pigmaea|1 +(noun)|pygmy cypress|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress|cypress tree +cupressus sempervirens|1 +(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress|cypress tree +cupric|1 +(adj)|cuprous|metallic element|metal|conductor +cupric acetate|1 +(noun)|verdigris|pigment +cupric sulfate|1 +(noun)|copper sulfate|copper sulphate|cupric sulphate|sulfate|sulphate +cupric sulphate|1 +(noun)|copper sulfate|copper sulphate|cupric sulfate|sulfate|sulphate +cuprimine|1 +(noun)|penicillamine|Cuprimine|medicine|medication|medicament|medicinal drug +cuprite|1 +(noun)|mineral +cupronickel|1 +(noun)|copper-base alloy +cuprous|1 +(adj)|cupric|metallic element|metal|conductor +cupular|1 +(adj)|cupulate|cup-shaped|concave +cupulate|1 +(adj)|cupular|cup-shaped|concave +cupule|2 +(noun)|acorn cup|cup +(noun)|sucker +cuquenan|1 +(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall|falls +cuquenan falls|1 +(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall|falls +cur|2 +(noun)|mongrel|mutt|dog|domestic dog|Canis familiaris +(noun)|coward +curability|1 +(noun)|curableness|characteristic +curable|2 +(adj)|curable +(adj)|tempered |treated|hardened|toughened +curableness|1 +(noun)|curability|characteristic +curacao|2 +(noun)|Curacao|island +(noun)|curacoa|orange liqueur +curacoa|1 +(noun)|curacao|orange liqueur +curacy|1 +(noun)|position|post|berth|office|spot|billet|place|situation +curandera|1 +(noun)|therapist|healer +curandero|1 +(noun)|therapist|healer +curare|1 +(noun)|tubocurarine|alkaloid|neuromuscular blocking agent|plant toxin|phytotoxin +curassow|1 +(noun)|gallinaceous bird|gallinacean +curate|1 +(noun)|minister|parson|pastor|rector|clergyman|reverend|man of the cloth +curate cycloid|1 +(noun)|cycloid +curative|2 +(adj)|healing|alterative|remedial|sanative|therapeutic|healthful +(noun)|remedy|cure|medicine|medication|medicament|medicinal drug +curator|1 +(noun)|conservator|custodian|keeper|steward +curatorial|1 +(adj)|custodian|keeper|steward +curatorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +curb|8 +(noun)|curbing|kerb|edge +(noun)|curb bit|bit +(noun)|American Stock Exchange|AMEX|Curb|stock exchange|stock market|securities market +(noun)|bridle|check|restraint +(verb)|control|hold in|hold|contain|check|moderate|restrain|suppress|keep|keep back|hold back +(verb)|suppress|stamp down|inhibit|subdue|conquer|control|hold in|hold|contain|check|moderate +(verb)|restrain|encumber|cumber|constrain +(verb)|restrict|curtail|cut back|limit|circumscribe|confine +curb bit|1 +(noun)|curb|bit +curb market|1 +(noun)|stock exchange|stock market|securities market +curb roof|1 +(noun)|roof +curb service|1 +(noun)|service +curbed|1 +(adj)|checked|restrained +curbing|1 +(noun)|curb|kerb|edge +curbside|1 +(noun)|pavement|paving +curbstone|1 +(noun)|kerbstone|paving stone +curculionidae|1 +(noun)|Curculionidae|family Curculionidae|arthropod family +curcuma|1 +(noun)|Curcuma|genus Curcuma|monocot genus|liliopsid genus +curcuma domestica|1 +(noun)|turmeric|Curcuma longa|Curcuma domestica|herb|herbaceous plant +curcuma longa|1 +(noun)|turmeric|Curcuma longa|Curcuma domestica|herb|herbaceous plant +curd|2 +(noun)|foodstuff|food product +(noun)|dairy product +curdle|3 +(verb)|clabber|clot|change state|turn +(verb)|spoil|go bad +(verb)|clot|coagulate +curdled|1 +(adj)|coagulate|coagulated|grumous|grumose|thick +curdling|2 +(adj)|clot|coagulate +(noun)|clotting|coagulation|natural process|natural action|action|activity +cure|5 +(noun)|remedy|curative|medicine|medication|medicament|medicinal drug +(verb)|bring around|heal|help|aid +(verb)|preserve|keep +(verb)|harden|indurate +(verb)|change +cure-all|1 +(noun)|panacea|nostrum|remedy|curative|cure +cured|6 +(adj)|healed|recovered|well +(adj)|vulcanized|vulcanised|processed +(adj)|seasoned +(adj)|preserved +(adj)|corned|preserved +(adj)|aged|preserved +curet|1 +(noun)|curette|surgical instrument +curettage|1 +(noun)|curettement|operation|surgery|surgical operation|surgical procedure|surgical process +curette|1 +(noun)|curet|surgical instrument +curettement|1 +(noun)|curettage|operation|surgery|surgical operation|surgical procedure|surgical process +curfew|3 +(noun)|deadline +(noun)|signal|signaling|sign +(noun)|decree|edict|fiat|order|rescript +curia|1 +(noun)|Curia|administration|governance|governing body|establishment|brass|organization|organisation +curie|3 +(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist +(noun)|Curie|Pierre Curie|physicist +(noun)|Ci|radioactivity unit +curie point|1 +(noun)|Curie temperature|Curie point|temperature +curie temperature|1 +(noun)|Curie temperature|Curie point|temperature +curietherapy|1 +(noun)|radium therapy|Curietherapy|radiotherapy|radiation therapy|radiation|actinotherapy|irradiation +curing|1 +(noun)|hardening|solidifying|solidification|set|natural process|natural action|action|activity +curio|1 +(noun)|curiosity|oddity|oddment|peculiarity|rarity|object|physical object +curiosity|2 +(noun)|wonder|cognitive state|state of mind +(noun)|curio|oddity|oddment|peculiarity|rarity|object|physical object +curious|3 +(adj)|funny|odd|peculiar|queer|rum|rummy|singular|strange |unusual +(adj)|curious |inquisitive|speculative|questioning|wondering|nosy|nosey|prying|snoopy|overcurious|inquiring +(adj)|interested +curiously|2 +(adv)|oddly|peculiarly +(adv)|inquisitively|interrogatively +curiously enough|1 +(adv)|funnily enough|interestingly enough|oddly enough|strangely enough +curiousness|2 +(noun)|inquisitiveness|curiosity|wonder +(noun)|foreignness|strangeness|quality +curitiba|1 +(noun)|Curitiba|city|metropolis|urban center +curium|1 +(noun)|Cm|atomic number 96|metallic element|metal +curl|8 +(noun)|coil|whorl|roll|curlicue|ringlet|gyre|scroll|round shape +(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist +(noun)|lock|ringlet|whorl|hair +(verb)|curve|kink|change surface +(verb)|curl up|draw in|bend|flex +(verb)|coil|loop|wind|wrap|roll|twine +(verb)|wave|twist +(verb)|play +curl up|1 +(verb)|curl|draw in|bend|flex +curled|2 +(adj)|curled up|coiled +(adj)|curling|curly +curled pondweed|1 +(noun)|curleyleaf pondweed|Potamogeton crispus|pondweed +curled up|1 +(adj)|curled|coiled +curler|1 +(noun)|hair curler|roller|crimper|mechanical device +curlew|1 +(noun)|shorebird|shore bird|limicoline bird +curlew sandpiper|1 +(noun)|Calidris Ferruginea|sandpiper +curleyleaf pondweed|1 +(noun)|curled pondweed|Potamogeton crispus|pondweed +curlicue|2 +(noun)|coil|whorl|roll|curl|ringlet|gyre|scroll|round shape +(noun)|squiggle|line +curliness|1 +(noun)|curvature|curve +curling|2 +(adj)|curled|curly +(noun)|game +curling iron|1 +(noun)|home appliance|household appliance +curly|1 +(adj)|curly |crisp|frizzly|frizzy|kinky|nappy|curled|curling|permed|ringleted|wavy +curly-coated retriever|1 +(noun)|retriever +curly-heads|1 +(noun)|Clematis ochreleuca|clematis +curly clematis|1 +(noun)|blue jasmine|blue jessamine|marsh clematis|Clematis crispa|clematis +curly endive|1 +(noun)|chicory|salad green|salad greens +curly grass|1 +(noun)|curly grass fern|Schizaea pusilla|fern +curly grass fern|1 +(noun)|curly grass|Schizaea pusilla|fern +curlycup gumweed|1 +(noun)|Grindelia squarrosa|gumweed|gum plant|tarweed|rosinweed +curmudgeon|1 +(noun)|oldster|old person|senior citizen|golden ager +curmudgeonly|1 +(adj)|crusty|gruff|ill-humored|ill-humoured|ill-natured +currajong|1 +(noun)|kurrajong|Brachychiton populneus|bottle-tree|bottle tree +currant|3 +(noun)|berry +(noun)|currant bush|shrub|bush +(noun)|raisin +currant bush|1 +(noun)|currant|shrub|bush +currawong|1 +(noun)|bell magpie|Australian magpie +currency|4 +(noun)|medium of exchange|monetary system +(noun)|prevalence +(noun)|vogue|acceptance +(noun)|currentness|up-to-dateness|presentness|nowness +current|4 +(adj)|current |actual|afoot|underway|circulating|contemporary|present-day|incumbent|live|ongoing|in progress|on-line|prevailing|prevalent|rife|topical|up-to-date|up-to-the-minute|latest|live|modern|new +(noun)|electric current|electrical phenomenon +(noun)|stream|flow|flowing +(noun)|stream|flow|course|line +current account|1 +(noun)|accounting +current electricity|1 +(noun)|dynamic electricity|electricity +current intelligence|1 +(noun)|intelligence|intelligence activity|intelligence operation +current of air|1 +(noun)|wind|air current|weather|weather condition|atmospheric condition +current unit|1 +(noun)|electromagnetic unit|emu +currently|1 +(adv)|presently +currentness|1 +(noun)|currency|up-to-dateness|presentness|nowness +currer bell|1 +(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer|author +curricular|1 +(adj)|information|info +curriculum|1 +(noun)|course of study|program|programme|syllabus|information|info +curriculum vitae|1 +(noun)|CV|resume|summary +currier|2 +(noun)|Currier|Nathaniel Currier|lithographer +(noun)|craftsman|artisan|journeyman|artificer +currish|2 +(adj)|ignoble +(adj)|ill-natured +currishly|1 +(adv)|ignobly +curry|4 +(noun)|dish +(verb)|season|flavor|flavour +(verb)|process|treat +(verb)|dress|groom|beautify|embellish|prettify +curry favor|1 +(verb)|curry favour|court favor|court favour|fawn|toady|truckle|bootlick|kowtow|kotow|suck up +curry favour|1 +(verb)|curry favor|court favor|court favour|fawn|toady|truckle|bootlick|kowtow|kotow|suck up +curry powder|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +curry sauce|1 +(noun)|sauce +currycomb|1 +(noun)|comb +curse|9 +(noun)|curse word|expletive|oath|swearing|swearword|cuss|profanity +(noun)|execration|condemnation|denunciation|denouncement +(noun)|hex|jinx|whammy|spell|magic spell|charm +(noun)|bane|scourge|nemesis|affliction +(noun)|torment|affliction +(verb)|cuss|blaspheme|swear|imprecate|express|verbalize|verbalise|utter|give tongue to +(verb)|abuse|clapperclaw|blackguard|shout +(verb)|beshrew|damn|bedamn|anathemize|anathemise|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(verb)|excommunicate|exclude|keep out|shut out|shut +curse word|1 +(noun)|curse|expletive|oath|swearing|swearword|cuss|profanity +cursed|2 +(adj)|cursed |curst|accursed|accurst|maledict|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed with|stuck with|damnable|execrable|damn|goddamn +(adj)|damned|doomed|unredeemed|unsaved|lost +cursed crowfoot|1 +(noun)|celery-leaved buttercup|Ranunculus sceleratus|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +cursed with|1 +(adj)|stuck with|cursed |curst +cursedly|1 +(adv)|damned|damnably +cursing|1 +(adj)|express|verbalize|verbalise|utter|give tongue to +cursive|2 +(adj)|written +(noun)|longhand|running hand|cursive script|handwriting|hand|script +cursive script|1 +(noun)|longhand|running hand|cursive|handwriting|hand|script +cursor|1 +(noun)|pointer|indicator +cursorial|1 +(adj)|cursorial +cursorily|1 +(adv)|quickly +cursorius|1 +(noun)|Cursorius|genus Cursorius|bird genus +cursorius cursor|1 +(noun)|cream-colored courser|Cursorius cursor|courser +cursory|1 +(adj)|casual|passing|perfunctory|careless +curst|1 +(adj)|cursed |accursed|accurst|maledict|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed with|stuck with|damnable|execrable|damn|goddamn +curt|2 +(adj)|brusque|brusk|short|discourteous +(adj)|crisp|laconic|terse|concise +curtail|2 +(verb)|restrict|curb|cut back|limit|circumscribe|confine +(verb)|clip|cut short|shorten +curtailment|3 +(noun)|shortness +(noun)|suppression|restraint +(noun)|retrenchment|downsizing|economy|saving +curtain|3 +(noun)|drape|drapery|mantle|pall|blind|screen|furnishings +(noun)|barrier +(verb)|supply|provide|render|furnish +curtain call|1 +(noun)|bow|thanks +curtain lecture|1 +(noun)|lecture|speech|talking to +curtain off|1 +(verb)|shut off|close off +curtain raiser|2 +(noun)|first step|initiative|opening move|opening +(noun)|play +curtain raising|1 +(noun)|opening|opening night|start +curtain ring|1 +(noun)|hoop|ring +curtained|1 +(adj)|curtained |draped +curtainless|1 +(adj)|curtainless |uncurtained +curtal|1 +(adj)|short +curtilage|1 +(noun)|yard|grounds|field +curtis|1 +(noun)|Curtis|William Curtis|botanist|phytologist|plant scientist +curtisia|1 +(noun)|Curtisia|genus Curtisia|rosid dicot genus +curtiss|1 +(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist +curtly|1 +(adv)|short|shortly +curtness|1 +(noun)|abruptness|brusqueness|gruffness|shortness|discourtesy|rudeness +curtsey|2 +(noun)|curtsy|bow|bowing|obeisance +(verb)|curtsy|bow +curtsy|3 +(noun)|curtsey|bow|bowing|obeisance +(verb)|curtsey|bow +(verb)|bob|greet|recognize|recognise +curvaceous|1 +(adj)|bosomy|busty|buxom|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +curvaceously|1 +(adv)|buxomly +curvaceousness|1 +(noun)|shapeliness|voluptuousness|pulchritude +curvature|3 +(noun)|condition|status +(noun)|derived function|derivative|differential coefficient|differential|first derivative +(noun)|curve|shape|form|configuration|contour|conformation +curve|10 +(noun)|curved shape|line +(noun)|line +(noun)|curve ball|breaking ball|bender|pitch|delivery +(noun)|curvature|shape|form|configuration|contour|conformation +(noun)|bend|section|segment +(verb)|swerve|sheer|trend|veer|slue|slew|cut|turn +(verb)|wind|be +(verb)|arch|arc|bend|flex +(verb)|crook|bend|flex +(verb)|curl|kink|change surface +curve ball|1 +(noun)|curve|breaking ball|bender|pitch|delivery +curved|1 +(adj)|curved |curving|arced|arched|arching|arciform|arcuate|bowed|curvilineal|curvilinear|falcate|falciform|sickle-shaped|flexuous|hooklike|incurvate|incurved|recurved|recurvate|semicircular|serpentine|snaky|snakelike|sinuate|sinuous|wiggly|sinusoidal|eellike|curvy|curvey|upcurved +curved shape|1 +(noun)|curve|line +curvet|2 +(noun)|vaulting|dressage +(verb)|jump|leap|bound|spring +curvey|1 +(adj)|curvy|curved |curving +curvilineal|1 +(adj)|curvilinear|curved |curving +curvilinear|1 +(adj)|curvilineal|curved |curving +curvilinear correlation|1 +(noun)|nonlinear correlation|skew correlation|correlation|correlational statistics +curvilinear regression|1 +(noun)|regression|simple regression|regression toward the mean|statistical regression +curving|1 +(adj)|curved |arced|arched|arching|arciform|arcuate|bowed|curvilineal|curvilinear|falcate|falciform|sickle-shaped|flexuous|hooklike|incurvate|incurved|recurved|recurvate|semicircular|serpentine|snaky|snakelike|sinuate|sinuous|wiggly|sinusoidal|eellike|curvy|curvey|upcurved +curvy|2 +(adj)|curvey|curved |curving +(adj)|bosomy|busty|buxom|curvaceous|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +cusco|1 +(noun)|Cuzco|Cusco|town +cuscus|1 +(noun)|phalanger|opossum|possum +cuscuta|1 +(noun)|Cuscuta|genus Cuscuta|dicot genus|magnoliopsid genus +cuscuta gronovii|1 +(noun)|love vine|Cuscuta gronovii|dodder +cush-cush|1 +(noun)|Dioscorea trifida|yam|yam plant +cushat|1 +(noun)|wood pigeon|ringdove|Columba palumbus|pigeon +cushaw|2 +(noun)|Cucurbita mixta|Cucurbita argyrosperma|winter squash|winter squash plant +(noun)|winter squash +cushing|1 +(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist|brain doctor +cushing's disease|1 +(noun)|Cushing's disease|hyperadrenalism|glandular disease|gland disease|glandular disorder|adenosis +cushing's syndrome|1 +(noun)|Cushing's syndrome|hyperadrenocorticism|glandular disease|gland disease|glandular disorder|adenosis +cushion|3 +(noun)|shock absorber|shock|damper|muffler +(noun)|padding|cushioning +(verb)|buffer|soften|modify +cushion calamint|1 +(noun)|wild basil|Clinopodium vulgare|Satureja vulgaris|herb|herbaceous plant +cushion flower|1 +(noun)|pincushion hakea|Hakea laurina|shrub|bush +cushioned|1 +(adj)|cushiony|padded|soft +cushioning|1 +(noun)|padding|artifact|artefact +cushiony|1 +(adj)|cushioned|padded|soft +cushitic|1 +(noun)|Cushitic|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +cushy|1 +(adj)|soft|easy +cusk|3 +(noun)|saltwater fish +(noun)|torsk|Brosme brosme|gadoid|gadoid fish +(noun)|burbot|eelpout|ling|Lota lota|cod|codfish +cusk-eel|1 +(noun)|percoid fish|percoid|percoidean +cusp|3 +(noun)|point +(noun)|leaflet|flap +(noun)|point|tip|peak +cuspate|1 +(adj)|cuspated|cusped|cuspidal|cuspidate|cuspidated|angular |angulate +cuspated|1 +(adj)|cuspate|cusped|cuspidal|cuspidate|cuspidated|angular |angulate +cusped|1 +(adj)|cuspate|cuspated|cuspidal|cuspidate|cuspidated|angular |angulate +cuspid|1 +(noun)|canine|canine tooth|eyetooth|eye tooth|dogtooth|tooth +cuspidal|1 +(adj)|cuspate|cuspated|cusped|cuspidate|cuspidated|angular |angulate +cuspidate|1 +(adj)|cuspate|cuspated|cusped|cuspidal|cuspidated|angular |angulate +cuspidated|1 +(adj)|cuspate|cuspated|cusped|cuspidal|cuspidate|angular |angulate +cuspidation|1 +(noun)|embellishment +cuspidor|1 +(noun)|spittoon|receptacle +cuss|4 +(noun)|pest|blighter|pesterer|gadfly|tormentor|tormenter|persecutor +(noun)|chap|fellow|feller|lad|gent|fella|blighter|male|male person +(noun)|curse|curse word|expletive|oath|swearing|swearword|profanity +(verb)|curse|blaspheme|swear|imprecate|express|verbalize|verbalise|utter|give tongue to +cussed|1 +(adj)|obdurate|obstinate|unrepentant|unregenerate |unregenerated +cussedly|1 +(adv)|stubbornly|pig-headedly|obdurately|mulishly|obstinately +cussedness|1 +(noun)|orneriness|contrariness|perversity|perverseness +custard|1 +(noun)|dish +custard-apple family|1 +(noun)|Annonaceae|family Annonaceae|magnoliid dicot family +custard apple|2 +(noun)|custard apple tree|fruit tree +(noun)|edible fruit +custard apple tree|1 +(noun)|custard apple|fruit tree +custard pie|1 +(noun)|property|prop +custer|1 +(noun)|Custer|George Armstrong Custer|General Custer|general|full general +custer's last stand|1 +(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter|massacre|mass murder|carnage|butchery +custodial|1 +(adj)|guardian|tutelary|tutelar|protective +custodial account|1 +(noun)|cash account +custodian|1 +(noun)|keeper|steward|defender|guardian|protector|shielder +custodianship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +custody|3 +(noun)|detention|hold|confinement +(noun)|imprisonment|internment +(noun)|hands|guardianship|keeping|safekeeping +custody battle|1 +(noun)|litigation|judicial proceeding +custody case|1 +(noun)|legal action|action|action at law +custom|5 +(adj)|custom-made |customized|customised|bespoke|bespoken|made-to-order|tailored|tailor-made|custom-built|made-to-order +(noun)|usage|usance|practice|pattern|survival +(noun)|tradition|practice +(noun)|customs|customs duty|impost|duty|tariff +(noun)|trade|patronage +custom-built|1 +(adj)|made-to-order|custom-made |customized|custom|customised +custom-made|1 +(adj)|custom-made |customized|custom|customised|bespoke|bespoken|made-to-order|tailored|tailor-made|custom-built|made-to-order +custom-make|1 +(verb)|customize|customise|tailor-make|produce|make|create +customary|2 +(adj)|conventional +(adj)|accustomed|habitual|wonted|usual +customer|1 +(noun)|client|consumer +customer's broker|1 +(noun)|account executive|account representative|registered representative|customer's man|businessperson|bourgeois +customer's man|1 +(noun)|account executive|account representative|registered representative|customer's broker|businessperson|bourgeois +customer agent|1 +(noun)|buyer|purchaser|emptor|vendee +customhouse|1 +(noun)|customshouse|government building +customise|2 +(verb)|custom-make|customize|tailor-make|produce|make|create +(verb)|customize|construct|build|make|change|alter|modify +customised|1 +(adj)|custom-made |customized|custom|bespoke|bespoken|made-to-order|tailored|tailor-made|custom-built|made-to-order +customize|2 +(verb)|custom-make|customise|tailor-make|produce|make|create +(verb)|customise|construct|build|make|change|alter|modify +customized|1 +(adj)|custom-made |custom|customised|bespoke|bespoken|made-to-order|tailored|tailor-made|custom-built|made-to-order +customs|5 +(noun)|customs duty|custom|impost|duty|tariff +(noun)|custom|usage|usance|practice|pattern|survival +(noun)|custom|tradition|practice +(noun)|customs duty|custom|impost|duty|tariff +(noun)|custom|trade|patronage +customs bureau|1 +(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency|federal agency|government agency|bureau|office|authority +customs duty|1 +(noun)|customs|custom|impost|duty|tariff +customs service|1 +(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency|federal agency|government agency|bureau|office|authority +customs union|1 +(noun)|union +customshouse|1 +(noun)|customhouse|government building +cut|72 +(adj)|cut |chopped|shredded|sliced|cut up|incised|perforated|pierced|perforated|perforate|punctured|severed|cut off|split +(adj)|cut |cut out|hewn|hand-hewn|sheared|slashed +(adj)|shortened|abridged +(adj)|trimmed |clipped +(adj)|mown +(adj)|cut +(adj)|emasculated|gelded|castrated |unsexed +(adj)|split|injured +(adj)|gashed|slashed|injured +(adj)|cut down|down|felled |downed +(adj)|slashed|decreased |reduced +(adj)|thinned|weakened|diluted |dilute +(noun)|decrease|diminution|reduction|step-down +(noun)|gash|slash|slice|wound|lesion +(noun)|cut of meat|meat +(noun)|track|excerpt|extract|selection +(noun)|cutting|opening +(noun)|share|portion|part|percentage +(noun)|gradation|step +(noun)|gash|furrow +(noun)|transition +(noun)|cutting|division +(noun)|deletion|excision|editing|redaction +(noun)|fashion +(noun)|cutting|cutting off|shortening +(noun)|baseball swing|swing|stroke|shot +(noun)|stinger|abuse|insult|revilement|contumely|vilification +(noun)|canal +(noun)|snub|cold shoulder|rebuff|slight +(noun)|undercut|stroke|shot +(noun)|cutting|division +(noun)|absence +(verb)|separate|disunite|divide|part|cut away|cut out|cut up|cut into|cut off|cut out +(verb)|reduce|cut down|cut back|trim|trim down|trim back|bring down|decrease|lessen|minify +(verb)|swerve|sheer|curve|trend|veer|slue|slew|turn +(verb)|free|discharge +(verb)|make|create +(verb)|tailor|design +(verb)|hit +(verb)|write out|issue|make out|write +(verb)|edit|edit out|change|alter|modify +(verb)|skip|miss +(verb)|hack|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|look|appear|seem +(verb)|move +(verb)|pass|go through|go across +(verb)|transit|pass through|pass across|pass over +(verb)|switch|shift|change|cut to +(verb)|stop +(verb)|record|tape +(verb)|record|tape +(verb)|burn|produce|make|create +(verb)|make|create +(verb)|perform|execute|do +(verb)|function|work|operate|go|run +(verb)|be +(verb)|shuffle|ruffle|mix +(verb)|switch off|turn off|turn out|throw|flip|switch +(verb)|reap|harvest|glean +(verb)|fell|drop|strike down|cut down +(verb)|penetrate|perforate +(verb)|ignore|disregard|snub|treat|handle|do by +(verb)|shorten +(verb)|prune|rationalize|rationalise|eliminate|get rid of|do away with|cut back|cut back|cut out +(verb)|dissolve|resolve|break up +(verb)|decrease|lessen|minify +(verb)|cut off|interrupt|disrupt|break up|cut off|cut off +(verb)|abridge|foreshorten|abbreviate|shorten|contract|reduce|decrease|lessen|minify +(verb)|dilute|thin|thin out|reduce|weaken +(verb)|grow|develop|produce|get|acquire +(verb)|grow +(verb)|geld|emasculate|castrate|demasculinize|demasculinise +cut-and-dried|1 +(adj)|cut-and-dry|ordinary +cut-and-dry|1 +(adj)|cut-and-dried|ordinary +cut-and-thrust|1 +(noun)|knife fight|snickersnee|fight|fighting|combat|scrap +cut-in|2 +(noun)|insert|break|interruption|disruption|gap +(noun)|insert|break|interruption|disruption|gap +cut-price|1 +(adj)|bargain-priced|cut-rate|cheap |inexpensive +cut-rate|1 +(adj)|bargain-priced|cut-price|cheap |inexpensive +cut-rate sale|1 +(noun)|sale|sales event|occasion +cut-up|1 +(noun)|prankster|trickster|tricker|hoaxer|practical joker|troublemaker|trouble maker|troubler|mischief-maker|bad hat +cut across|3 +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|pass|go through|go across +(verb)|be +(verb)|crosscut|cut +cut away|2 +(verb)|cut +(verb)|cut +cut back|4 +(verb)|flash back|return|go back|get back|come back +(verb)|reduce|cut down|trim|trim down|trim back|cut|bring down|decrease|lessen|minify +(verb)|snip|clip|crop|trim|lop|dress|prune|thin out +(verb)|restrict|curtail|curb|limit|circumscribe|confine +cut corners|1 +(verb)|perform|execute|do +cut down|7 +(adj)|cut|down|felled |downed +(verb)|reduce|cut back|trim|trim down|trim back|cut|bring down|decrease|lessen|minify +(verb)|slash|cut +(verb)|down|knock down|push down|pull down|strike +(verb)|cut out|check|turn back|arrest|stop|contain|hold back +(verb)|mow|cut +(verb)|fell|drop|strike down|cut +cut glass|1 +(noun)|glassware|glasswork +cut in|5 +(verb)|partake|share|partake in +(verb)|pull +(verb)|chime in|put in|butt in|chisel in|barge in|break in|interrupt|disrupt|break up|cut off +(verb)|interrupt|disrupt +(verb)|blend in|mix in +cut into|1 +(verb)|dig|delve|turn over|remove|take|take away|withdraw +cut of beef|1 +(noun)|cut|cut of meat +cut of lamb|1 +(noun)|cut|cut of meat +cut of meat|1 +(noun)|cut|meat +cut of mutton|1 +(noun)|cut|cut of meat +cut of pork|1 +(noun)|cut|cut of meat +cut of veal|1 +(noun)|cut|cut of meat +cut off|7 +(adj)|severed|cut +(verb)|interrupt|disrupt|break up|break|break off|discontinue|stop +(verb)|cut|interrupt|disrupt|break up +(verb)|chop off|lop off|detach|come off|come away +(verb)|cut out|intercept|stop +(verb)|chip|knap|break off|cut +(verb)|amputate|remove|take|take away|withdraw +cut out|7 +(adj)|cut +(verb)|eliminate|get rid of|do away with +(verb)|form +(verb)|cut off|intercept|stop +(verb)|scratch out|erase|rub out|score out|efface|wipe off +(verb)|cut down|check|turn back|arrest|stop|contain|hold back +(verb)|end|stop|finish|terminate|cease +cut price|1 +(noun)|bargain rate|cheapness|cut rate|inexpensiveness +cut rate|1 +(noun)|bargain rate|cheapness|cut price|inexpensiveness +cut short|4 +(verb)|break short|break off|interrupt|break +(verb)|interrupt|disrupt +(verb)|truncate|shorten +(verb)|clip|curtail|shorten +cut through|1 +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut across|pass|go through|go across +cut to|1 +(verb)|move +cut to ribbons|1 +(verb)|demolish|destroy +cut up|5 +(adj)|cut +(verb)|carve|cut +(verb)|mutilate|mangle|damage +(verb)|compartmentalize|compartmentalise|separate|disunite|divide|part +(verb)|hack|edit|redact +cutaneal|1 +(adj)|cutaneous|connective tissue|body covering +cutaneous|1 +(adj)|cutaneal|connective tissue|body covering +cutaneous anthrax|1 +(noun)|malignant pustule|anthrax +cutaneous leishmaniasis|1 +(noun)|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +cutaneous sensation|1 +(noun)|haptic sensation|skin sensation|touch|touch sensation|tactual sensation|tactile sensation|feeling +cutaneous vein|1 +(noun)|vena cutanea|vein|vena|venous blood vessel +cutaway|2 +(noun)|cutaway drawing|cutaway model|representation +(noun)|coat +cutaway drawing|1 +(noun)|cutaway|cutaway model|representation +cutaway model|1 +(noun)|cutaway|cutaway drawing|representation +cutback|1 +(noun)|decrease|diminution|reduction|step-down +cutch|1 +(noun)|kutch|tannin|tannic acid +cute|2 +(adj)|cunning|attractive +(adj)|precious|artful +cutely|1 +(adv)|cunningly +cuteness|1 +(noun)|prettiness|beauty +cuterebra|1 +(noun)|Cuterebra|genus Cuterebra|arthropod genus +cuterebridae|1 +(noun)|Cuterebridae|family Cuterebridae|arthropod family +cuticle|2 +(noun)|epidermis|stratum +(noun)|carapace|shell|exoskeleton +cuticula|1 +(noun)|carapace|shell|cuticle +cuticular|1 +(adj)|epidermal|epidermic|dermal|stratum|carapace|shell|cuticle +cutis|1 +(noun)|skin|tegument|connective tissue|body covering +cutlas|1 +(noun)|cutlass|sword|blade|brand|steel +cutlass|1 +(noun)|cutlas|sword|blade|brand|steel +cutlassfish|1 +(noun)|frost fish|hairtail|percoid fish|percoid|percoidean +cutleaved coneflower|1 +(noun)|Rudbeckia laciniata|coneflower +cutler|1 +(noun)|trader|bargainer|dealer|monger +cutlery|2 +(noun)|cutter|cutting tool|cutting implement +(noun)|eating utensil|tableware +cutlet|1 +(noun)|scallop|scollop|escallop|piece|slice +cutoff|3 +(noun)|limit|limitation +(noun)|shortcut|crosscut|road|route +(noun)|device +cutout|3 +(noun)|switch|electric switch|electrical switch +(noun)|photographic print|print +(noun)|part|portion +cutpurse|1 +(noun)|pickpocket|dip|thief|stealer +cuttable|1 +(adj)|chewable|tender +cutter|6 +(noun)|stonecutter|quarryman|quarrier +(noun)|carver|diner +(noun)|skilled worker|trained worker +(noun)|tender|ship's boat|pinnace|boat +(noun)|sailing vessel|sailing ship +(noun)|cutlery|cutting tool|cutting implement +cutthroat|3 +(adj)|fierce|bowelless|merciless |unmerciful +(adj)|homicidal|murderous|bloody +(noun)|murderer|liquidator|manslayer +cutting|14 +(adj)|edged|stinging|unkind +(adj)|bleak|raw|cold +(adj)|keen|knifelike|piercing|stabbing|lancinate|lancinating|sharp +(adj)|sharp +(noun)|film editing|creating by removal +(noun)|slip|stalk|stem +(noun)|cut|division +(noun)|part|piece +(noun)|clipping|newspaper clipping|press clipping|press cutting|excerpt|extract|selection +(noun)|carving|creating by removal +(noun)|cut|division +(noun)|cut|opening +(noun)|thinning|dilution +(noun)|cut|cutting off|shortening +cutting-edge|1 +(adj)|latest|last|newest|up-to-date|with-it|fashionable |stylish +cutting angle|1 +(noun)|angle +cutting board|1 +(noun)|chopping board|board +cutting edge|2 +(noun)|vanguard|forefront|position|view|perspective +(noun)|knife edge|edge +cutting implement|1 +(noun)|tool +cutting off|2 +(noun)|abscission|removal|remotion +(noun)|cut|cutting|shortening +cutting out|1 +(noun)|ablation|extirpation|excision|operation|surgery|surgical operation|surgical procedure|surgical process +cutting room|1 +(noun)|room +cutting tool|1 +(noun)|cutter|cutlery|cutting implement +cuttle|1 +(noun)|cuttlefish|decapod +cuttlefish|1 +(noun)|cuttle|decapod +cutty stool|1 +(noun)|stool +cutwork|1 +(noun)|embroidery|fancywork +cutworm|1 +(noun)|caterpillar +cuvier|1 +(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist|natural scientist +cuzco|1 +(noun)|Cuzco|Cusco|town +cv|2 +(adj)|one hundred five|105|cardinal +(noun)|curriculum vitae|CV|resume|summary +cva|1 +(noun)|stroke|apoplexy|cerebrovascular accident|CVA|attack +cwm|1 +(noun)|cirque|corrie|basin +cwt|2 +(noun)|hundredweight|short hundredweight|centner|cental|quintal|avoirdupois unit +(noun)|hundredweight|long hundredweight|avoirdupois unit +cx|1 +(adj)|one hundred ten|110|cardinal +cxl|1 +(adj)|one hundred forty|140|cardinal +cxlv|1 +(adj)|one hundred forty-five|145|cardinal +cxv|1 +(adj)|one hundred fifteen|115|cardinal +cxx|1 +(adj)|one hundred twenty|120|cardinal +cxxv|1 +(adj)|one hundred twenty-five|125|cardinal +cxxx|1 +(adj)|one hundred thirty|130|cardinal +cxxxv|1 +(adj)|one hundred thirty-five|135|cardinal +cy pres|2 +(noun)|rule of cy pres|cy pres doctrine|rule|regulation +(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree|flowering tree +cy pres doctrine|1 +(noun)|cy pres|rule of cy pres|rule|regulation +cy young|1 +(noun)|Young|Cy Young|Danton True Young|ballplayer|baseball player +cyamopsis|1 +(noun)|Cyamopsis|genus Cyamopsis|rosid dicot genus +cyamopsis psoraloides|1 +(noun)|guar|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume|leguminous plant +cyamopsis tetragonolobus|1 +(noun)|guar|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume|leguminous plant +cyamus|1 +(noun)|Cyamus|genus Cyamus|arthropod genus +cyan|2 +(adj)|bluish green|blue-green|teal|chromatic +(noun)|bluish green|blue-green|teal +cyanamid|1 +(noun)|cyanamide|acid +cyanamide|2 +(noun)|cyanamid|acid +(noun)|calcium-cyanamide|compound|chemical compound +cyanic acid|1 +(noun)|acid +cyanide|2 +(noun)|nitrile|nitril|organic compound +(noun)|salt +cyanide group|1 +(noun)|cyano group|cyano radical|cyanide radical|group|radical|chemical group +cyanide poisoning|1 +(noun)|poisoning|toxic condition|intoxication +cyanide process|1 +(noun)|industrial process +cyanide radical|1 +(noun)|cyano group|cyano radical|cyanide group|group|radical|chemical group +cyanine dye|1 +(noun)|dye|dyestuff +cyanite|1 +(noun)|kyanite|mineral +cyano group|1 +(noun)|cyano radical|cyanide group|cyanide radical|group|radical|chemical group +cyano radical|1 +(noun)|cyano group|cyanide group|cyanide radical|group|radical|chemical group +cyanobacteria|1 +(noun)|blue-green algae|eubacteria|eubacterium|true bacteria +cyanobacterial|1 +(adj)|cyanophyte|class +cyanocitta|1 +(noun)|Cyanocitta|genus Cyanocitta|bird genus +cyanocitta cristata|1 +(noun)|blue jay|jaybird|Cyanocitta cristata|New World jay +cyanocobalamin|1 +(noun)|vitamin B12|cobalamin|antipernicious anemia factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +cyanogen|1 +(noun)|gas +cyanogenetic|1 +(adj)|cyanogenic|toxic +cyanogenic|1 +(adj)|cyanogenetic|toxic +cyanohydrin|1 +(noun)|organic compound +cyanophyceae|1 +(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class +cyanophyta|1 +(noun)|Cyanophyta|division Cyanophyta|division +cyanophyte|1 +(adj)|cyanobacterial|division +cyanosis|1 +(noun)|symptom +cyanuramide|1 +(noun)|melamine|base|alkali +cyanuric acid|1 +(noun)|acid +cyathea|1 +(noun)|Cyathea|genus Cyathea|fern genus +cyathea medullaris|1 +(noun)|silver tree fern|sago fern|black tree fern|Cyathea medullaris|tree fern +cyatheaceae|1 +(noun)|Cyatheaceae|family Cyatheaceae|fern family +cybele|1 +(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity +cyber-terrorism|1 +(noun)|cyberwar|terrorism|act of terrorism|terrorist act +cyber-terrorist|1 +(noun)|hacker|cyberpunk|programmer|computer programmer|coder|software engineer|terrorist +cyberart|1 +(noun)|art|fine art +cybercafe|1 +(noun)|cafe|coffeehouse|coffee shop|coffee bar +cybercrime|1 +(noun)|crime|law-breaking +cyberculture|1 +(noun)|culture +cybernate|1 +(verb)|computerize|computerise|work|put to work +cybernation|1 +(noun)|computerization|automation|mechanization|mechanisation +cybernaut|1 +(noun)|computer user +cybernetic|1 +(adj)|information science|informatics|information processing|IP +cybernetics|1 +(noun)|information science|informatics|information processing|IP +cyberphobia|1 +(noun)|simple phobia +cyberpunk|3 +(noun)|hacker|cyber-terrorist|programmer|computer programmer|coder|software engineer|terrorist +(noun)|writer|author +(noun)|science fiction +cybersex|1 +(noun)|sexual arousal +cyberspace|1 +(noun)|Internet|Net|computer network +cyberwar|1 +(noun)|cyber-terrorism|terrorism|act of terrorism|terrorist act +cyborg|1 +(noun)|bionic man|bionic woman|machine +cycad|1 +(noun)|gymnosperm +cycad family|1 +(noun)|Cycadaceae|family Cycadaceae|gymnosperm family +cycadaceae|1 +(noun)|Cycadaceae|family Cycadaceae|cycad family|gymnosperm family +cycadales|1 +(noun)|Cycadales|order Cycadales|plant order +cycadofilicales|1 +(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order +cycadophyta|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +cycadophytina|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +cycadopsida|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +cycas|1 +(noun)|Cycas|genus Cycas|gymnosperm genus +cycas circinalis|1 +(noun)|false sago|fern palm|Cycas circinalis|sago palm|Cycas revoluta +cycas revoluta|1 +(noun)|sago palm|Cycas revoluta|cycad +cyclades|2 +(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization|Aegean civilisation|Aegean culture +(noun)|Cyclades|Kikladhes|Aegean island +cycladic civilisation|1 +(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization|Aegean civilisation|Aegean culture +cycladic civilization|1 +(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization|Aegean civilisation|Aegean culture +cycladic culture|1 +(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization|Aegean civilisation|Aegean culture +cyclamen|1 +(noun)|Cyclamen purpurascens|flower +cyclamen hederifolium|1 +(noun)|sowbread|Cyclamen hederifolium|Cyclamen neopolitanum|flower +cyclamen neopolitanum|1 +(noun)|sowbread|Cyclamen hederifolium|Cyclamen neopolitanum|flower +cyclamen purpurascens|1 +(noun)|cyclamen|Cyclamen purpurascens|flower +cycle|11 +(noun)|rhythm|round|time interval|interval +(noun)|series +(noun)|repeat|repetition +(noun)|Hertz|Hz|cycle per second|cycles/second|cps|rate +(noun)|oscillation|periodic event|recurrent event +(noun)|bicycle|bike|wheel|wheeled vehicle +(verb)|pass|make pass +(verb)|pass|go through|go across +(verb)|motorcycle|ride +(verb)|bicycle|bike|pedal|wheel|ride +(verb)|recur|repeat +cycle of rebirth|1 +(noun)|reincarnation|rebirth +cycle on|1 +(verb)|cycle +cycle per second|1 +(noun)|Hertz|Hz|cycles/second|cps|cycle|rate +cycle rickshaw|1 +(noun)|pedicab|tricycle|trike|velocipede +cycles/second|1 +(noun)|Hertz|Hz|cycle per second|cps|cycle|rate +cyclic|5 +(adj)|cycle|oscillation +(adj)|cyclic |verticillate|verticillated|whorled +(adj)|cyclic |bicyclic|closed-chain|closed-ring|heterocyclic|homocyclic|isocyclic +(adj)|cyclic |cyclical|alternate|alternating|alternate|circular|rotary|diurnal +(adj)|periodic |periodical +cyclic disorder|1 +(noun)|cyclothymia|cyclothymic disorder|bipolar disorder|manic depression|manic depressive illness|manic-depressive psychosis +cyclic neutropenia|1 +(noun)|neutropenia +cyclic redundancy check|1 +(noun)|error correction code|ECC +cyclical|1 +(adj)|cyclic |alternate|alternating|alternate|circular|rotary|diurnal +cyclicity|1 +(noun)|periodicity|regularity +cycling|1 +(noun)|sport|athletics +cycliophora|1 +(noun)|Cycliophora|phylum Cycliophora|phylum +cyclist|1 +(noun)|bicyclist|bicycler|wheeler|pedaler|pedaller +cyclobenzaprine|1 +(noun)|Flexeril|muscle relaxant +cyclohexanol|1 +(noun)|alcohol +cyclohexanol phthalate|1 +(noun)|ester +cycloid|2 +(adj)|cycloidal|rounded +(noun)|roulette|line roulette +cycloidal|1 +(adj)|cycloid|rounded +cycloloma|1 +(noun)|Cycloloma|genus Cycloloma|caryophylloid dicot genus +cycloloma atriplicifolium|1 +(noun)|winged pigweed|tumbleweed|Cycloloma atriplicifolium|shrub|bush +cyclonal|2 +(adj)|cyclonic|cyclonical +(adj)|cyclonic|cyclonical|windstorm +cyclone|2 +(noun)|atmosphere|atmospheric state +(noun)|windstorm +cyclone cellar|1 +(noun)|storm cellar|tornado cellar|shelter +cyclonic|2 +(adj)|cyclonal|cyclonical|atmosphere|atmospheric state +(adj)|cyclonal|cyclonical|windstorm +cyclonical|2 +(adj)|cyclonic|cyclonal +(adj)|cyclonic|cyclonal|windstorm +cyclooxygenase|1 +(noun)|Cox|enzyme +cyclooxygenase-1|1 +(noun)|Cox-1|cyclooxygenase|Cox +cyclooxygenase-2|1 +(noun)|Cox-2|cyclooxygenase|Cox +cyclopaedia|1 +(noun)|encyclopedia|cyclopedia|encyclopaedia|reference book|reference|reference work|book of facts +cyclopean|1 +(adj)|giant +cyclopean masonry|1 +(noun)|stonework +cyclopedia|1 +(noun)|encyclopedia|encyclopaedia|cyclopaedia|reference book|reference|reference work|book of facts +cyclopes|3 +(noun)|Cyclopes|genus Cyclopes|mammal genus +(noun)|Cyclops|giant +(noun)|cyclops|water flea|copepod|copepod crustacean +cyclopes didactylus|1 +(noun)|silky anteater|two-toed anteater|Cyclopes didactylus|anteater|New World anteater +cyclophorus|1 +(noun)|Cyclophorus|genus Cyclophorus|fern genus +cyclophorus lingua|1 +(noun)|felt fern|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern +cyclopia|1 +(noun)|abnormality|abnormalcy|abnormal condition +cyclopropane|1 +(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +cyclops|2 +(noun)|Cyclops|giant +(noun)|water flea|copepod|copepod crustacean +cyclopteridae|1 +(noun)|Cyclopteridae|family Cyclopteridae|fish family +cyclopterus|1 +(noun)|Cyclopterus|genus Cyclopterus|fish genus +cyclopterus lumpus|1 +(noun)|lumpfish|Cyclopterus lumpus|scorpaenoid|scorpaenoid fish +cyclorama|1 +(noun)|panorama|diorama|picture|image|icon|ikon +cycloserine|1 +(noun)|antibiotic|antibiotic drug +cyclosis|1 +(noun)|streaming|organic phenomenon +cyclosorus|1 +(noun)|Cyclosorus|genus Cyclosorus|fern genus +cyclosporeae|1 +(noun)|Cyclosporeae|class Cyclosporeae|class +cyclostomata|1 +(noun)|Cyclostomata|order Cyclostomata|animal order +cyclostome|1 +(noun)|jawless vertebrate|jawless fish|agnathan +cyclostyle|2 +(noun)|writing implement +(verb)|print|impress +cyclothymia|1 +(noun)|cyclothymic disorder|cyclic disorder|bipolar disorder|manic depression|manic depressive illness|manic-depressive psychosis +cyclothymic|1 +(adj)|bipolar disorder|manic depression|manic depressive illness|manic-depressive psychosis +cyclothymic disorder|1 +(noun)|cyclothymia|cyclic disorder|bipolar disorder|manic depression|manic depressive illness|manic-depressive psychosis +cyclotron|1 +(noun)|accelerator|particle accelerator|atom smasher +cycnoches|1 +(noun)|Cycnoches|genus Cycnoches|monocot genus|liliopsid genus +cyder|1 +(noun)|cider|beverage|drink|drinkable|potable +cydippea|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +cydippida|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +cydippidea|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +cydonia|1 +(noun)|Cydonia|genus Cydonia|rosid dicot genus +cydonia oblonga|1 +(noun)|quince|quince bush|Cydonia oblonga|fruit tree +cygnet|1 +(noun)|swan|young bird +cygnus|2 +(noun)|Cygnus|constellation +(noun)|Cygnus|genus Cygnus|bird genus +cygnus atratus|1 +(noun)|black swan|Cygnus atratus|swan +cygnus buccinator|1 +(noun)|trumpeter|trumpeter swan|Cygnus buccinator|swan +cygnus columbianus|1 +(noun)|tundra swan|Cygnus columbianus|swan +cygnus columbianus bewickii|1 +(noun)|Bewick's swan|Cygnus columbianus bewickii|tundra swan|Cygnus columbianus +cygnus columbianus columbianus|1 +(noun)|whistling swan|Cygnus columbianus columbianus|tundra swan|Cygnus columbianus +cygnus cygnus|1 +(noun)|whooper|whooper swan|Cygnus cygnus|swan +cygnus olor|1 +(noun)|mute swan|Cygnus olor|swan +cylinder|4 +(noun)|container +(noun)|solid +(noun)|round shape +(noun)|piston chamber|chamber +cylinder block|1 +(noun)|engine block|block|cast|casting +cylinder head|1 +(noun)|plate +cylinder lock|1 +(noun)|lock +cylinder press|1 +(noun)|flatbed press|press|printing press +cylindric|1 +(adj)|cylindrical|round shape +cylindrical|2 +(adj)|tube-shaped|tubelike|vasiform|rounded +(adj)|cylindric|round shape +cylindrical lining|1 +(noun)|bushing|lining +cylindricality|1 +(noun)|cylindricalness|roundness +cylindricalness|1 +(noun)|cylindricality|roundness +cylix|1 +(noun)|kylix|cup +cyma|1 +(noun)|cymatium|molding|moulding +cymatiidae|1 +(noun)|Cymatiidae|family Cymatiidae|mollusk family +cymatium|1 +(noun)|cyma|molding|moulding +cymbal|1 +(noun)|percussion instrument|percussive instrument +cymbid|1 +(noun)|cymbidium|orchid|orchidaceous plant +cymbidium|1 +(noun)|cymbid|orchid|orchidaceous plant +cyme|1 +(noun)|inflorescence +cymene|1 +(noun)|hydrocarbon +cymling|1 +(noun)|pattypan squash|summer squash|summer squash vine|Cucurbita pepo melopepo +cymograph|1 +(noun)|kymograph|scientific instrument +cymose|1 +(adj)|determinate +cymru|1 +(noun)|Wales|Cymru|Cambria|principality|princedom +cymule|1 +(noun)|cyme +cynancum|1 +(noun)|liana +cynara|1 +(noun)|Cynara|genus Cynara|asterid dicot genus +cynara cardunculus|1 +(noun)|cardoon|Cynara cardunculus|vegetable +cynara scolymus|1 +(noun)|artichoke|globe artichoke|artichoke plant|Cynara scolymus|vegetable +cynewulf|1 +(noun)|Cynewulf|Cynwulf|poet +cynic|2 +(noun)|faultfinder|unpleasant person|disagreeable person +(noun)|Cynic|philosopher +cynical|1 +(adj)|misanthropic|misanthropical|distrustful +cynically|1 +(adv)|with cynicism +cynicism|1 +(noun)|pessimism +cynipid gall wasp|1 +(noun)|gall wasp|gallfly|cynipid wasp|wasp +cynipid wasp|1 +(noun)|gall wasp|gallfly|cynipid gall wasp|wasp +cynipidae|1 +(noun)|Cynipidae|family Cynipidae|arthropod family +cynips|1 +(noun)|Cynips|genus Cynips|arthropod genus +cynocephalidae|1 +(noun)|Cynocephalidae|family Cynocephalidae|mammal family +cynocephalus|1 +(noun)|Cynocephalus|genus Cynocephalus|mammal genus +cynocephalus variegatus|1 +(noun)|Cynocephalus variegatus|flying lemur|flying cat|colugo +cynodon|1 +(noun)|Cynodon|genus Cynodon|monocot genus|liliopsid genus +cynodon dactylon|1 +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass +cynodon plectostachyum|1 +(noun)|giant star grass|Cynodon plectostachyum|grass +cynodont|1 +(noun)|therapsid|protomammal +cynodontia|1 +(noun)|Cynodontia|division Cynodontia|division +cynoglossidae|1 +(noun)|Cynoglossidae|family Cynoglossidae|fish family +cynoglossum|1 +(noun)|Cynoglossum|genus Cynoglossum|plant genus +cynoglossum amabile|1 +(noun)|Chinese forget-me-not|Cynoglossum amabile|herb|herbaceous plant +cynoglossum officinale|1 +(noun)|hound's-tongue|Cynoglossum officinale|herb|herbaceous plant +cynoglossum virginaticum|1 +(noun)|hound's-tongue|Cynoglossum virginaticum|herb|herbaceous plant +cynomys|1 +(noun)|Cynomys|genus Cynomys|mammal genus +cynomys gunnisoni|1 +(noun)|whitetail prairie dog|Cynomys gunnisoni|prairie dog|prairie marmot +cynomys ludovicianus|1 +(noun)|blacktail prairie dog|Cynomys ludovicianus|prairie dog|prairie marmot +cynophobia|1 +(noun)|zoophobia +cynopterus|1 +(noun)|Cynopterus|genus Cynopterus|mammal genus +cynopterus sphinx|1 +(noun)|Cynopterus sphinx|fruit bat|megabat +cynoscephalae|1 +(noun)|Cynoscephalae|battle of Cynoscephalae|pitched battle +cynoscion|1 +(noun)|Cynoscion|genus Cynoscion|fish genus +cynoscion nebulosus|1 +(noun)|spotted weakfish|spotted sea trout|spotted squeateague|Cynoscion nebulosus|sea trout +cynoscion regalis|1 +(noun)|weakfish|Cynoscion regalis|sea trout +cynosure|2 +(noun)|guidance|counsel|counseling|counselling|direction +(noun)|center|center of attention +cynthia|1 +(noun)|Artemis|Cynthia|Greek deity +cynthia moth|1 +(noun)|Samia cynthia|Samia walkeri|giant silkworm moth|silkworm moth +cynwulf|1 +(noun)|Cynewulf|Cynwulf|poet +cyon|1 +(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus +cyperaceae|1 +(noun)|Cyperaceae|family Cyperaceae|sedge family|monocot family|liliopsid family +cyperus|1 +(noun)|Cyperus|genus Cyperus|monocot genus|liliopsid genus|Cyperaceae|family Cyperaceae|sedge family +cyperus alternifolius|1 +(noun)|umbrella plant|umbrella sedge|Cyperus alternifolius|sedge +cyperus esculentus|1 +(noun)|chufa|yellow nutgrass|earth almond|ground almond|rush nut|Cyperus esculentus|sedge +cyperus longus|1 +(noun)|galingale|galangal|Cyperus longus|sedge +cyperus papyrus|1 +(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge +cyperus rotundus|1 +(noun)|nutgrass|nut grass|nutsedge|nut sedge|Cyperus rotundus|sedge +cypher|7 +(noun)|zero|0|nought|cipher|digit|figure +(noun)|nothing|nil|nix|nada|null|aught|cipher|goose egg|naught|zero|zilch|zip|relative quantity +(noun)|cipher|nobody|nonentity|commoner|common man|common person +(noun)|cipher|cryptograph|secret code|code +(noun)|cipher|message +(verb)|encode|code|encipher|cipher|encrypt|inscribe|write in code|write +(verb)|calculate|cipher|compute|work out|reckon|figure|reason +cyphomandra|1 +(noun)|Cyphomandra|genus Cyphomandra|asterid dicot genus +cypraea|1 +(noun)|Cypraea|genus Cypraea|mollusk genus +cypraea moneta|1 +(noun)|money cowrie|Cypraea moneta|cowrie|cowry +cypraea tigris|1 +(noun)|tiger cowrie|Cypraea tigris|cowrie|cowry +cypraeidae|1 +(noun)|Cypraeidae|family Cypraeidae|mollusk family +cypre|1 +(noun)|Spanish elm|Equador laurel|salmwood|princewood|Cordia alliodora|angiospermous tree|flowering tree +cypress|2 +(noun)|wood +(noun)|cypress tree|conifer|coniferous tree +cypress family|1 +(noun)|Cupressaceae|family Cupressaceae|gymnosperm family +cypress pine|1 +(noun)|cypress +cypress sedge|1 +(noun)|Carex pseudocyperus|sedge +cypress spurge|1 +(noun)|Euphorbia cyparissias|spurge +cypress tree|1 +(noun)|cypress|conifer|coniferous tree +cypress vine|1 +(noun)|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory +cyprian|4 +(adj)|Cyprian|Cypriote|Cypriot|island +(adj)|unchaste +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +(noun)|Cypriot|Cypriote|Cyprian|European +cyprinid|2 +(adj)|cyprinoid|fish family +(noun)|cyprinid fish|cypriniform fish +cyprinid fish|1 +(noun)|cyprinid|cypriniform fish +cyprinidae|1 +(noun)|Cyprinidae|family Cyprinidae|fish family +cypriniform fish|1 +(noun)|soft-finned fish|malacopterygian +cypriniformes|1 +(noun)|Cypriniformes|order Cypriniformes|animal order +cyprinodont|1 +(noun)|cypriniform fish +cyprinodontidae|1 +(noun)|Cyprinodontidae|family Cyprinodontidae|fish family +cyprinoid|1 +(adj)|cyprinid|fish family +cyprinus|1 +(noun)|Cyprinus|genus Cyprinus|fish genus +cyprinus carpio|1 +(noun)|domestic carp|Cyprinus carpio|carp +cypriot|2 +(adj)|Cyprian|Cypriote|Cypriot|island +(noun)|Cypriot|Cypriote|Cyprian|European +cypriot monetary unit|1 +(noun)|Cypriot monetary unit|monetary unit +cypriot pound|1 +(noun)|Cypriot pound|pound|Cypriot monetary unit +cypriote|2 +(adj)|Cyprian|Cypriote|Cypriot|island +(noun)|Cypriot|Cypriote|Cyprian|European +cypripedia|1 +(noun)|orchid|orchidaceous plant|Cypripedium|genus Cypripedium +cypripedium|1 +(noun)|Cypripedium|genus Cypripedium|monocot genus|liliopsid genus +cypripedium acaule|1 +(noun)|moccasin flower|nerveroot|Cypripedium acaule|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium album|1 +(noun)|common lady's-slipper|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium arietinum|1 +(noun)|ram's-head|ram's-head lady's slipper|Cypripedium arietinum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium calceolus|1 +(noun)|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium calceolus pubescens|1 +(noun)|large yellow lady's slipper|Cypripedium calceolus pubescens|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum +cypripedium californicum|1 +(noun)|California lady's slipper|Cypripedium californicum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium fasciculatum|1 +(noun)|clustered lady's slipper|Cypripedium fasciculatum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium montanum|1 +(noun)|mountain lady's slipper|Cypripedium montanum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium parviflorum|1 +(noun)|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cypripedium reginae|1 +(noun)|common lady's-slipper|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +cyproheptadine|1 +(noun)|Periactin|antihistamine +cyprus|2 +(noun)|Cyprus|Republic of Cyprus|country|state|land +(noun)|Cyprus|island +cyril burt|1 +(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist +cyril lodowic burt|1 +(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist +cyril northcote parkinson|1 +(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian|historiographer +cyrilla|1 +(noun)|leatherwood|white titi|Cyrilla racemiflora|shrub|bush +cyrilla family|1 +(noun)|Cyrilliaceae|family Cyrilliaceae|titi family|dicot|dicotyledon|magnoliopsid|exogen +cyrilla racemiflora|1 +(noun)|cyrilla|leatherwood|white titi|Cyrilla racemiflora|shrub|bush +cyrilliaceae|1 +(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|titi family|dicot|dicotyledon|magnoliopsid|exogen +cyrillic|2 +(adj)|Cyrillic|alphabet +(noun)|Cyrillic alphabet|Cyrillic|alphabet +cyrillic alphabet|1 +(noun)|Cyrillic alphabet|Cyrillic|alphabet +cyrtomium|1 +(noun)|Cyrtomium|genus Cyrtomium|fern genus +cyrtomium aculeatum|1 +(noun)|holly fern|Cyrtomium aculeatum|Polystichum aculeatum|fern +cyrus|1 +(noun)|Cyrus|Cyrus the Younger|prince +cyrus hall mccormick|1 +(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor|discoverer|artificer|manufacturer|producer +cyrus ii|1 +(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king|male monarch +cyrus mccormick|1 +(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor|discoverer|artificer|manufacturer|producer +cyrus the elder|1 +(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king|male monarch +cyrus the great|1 +(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king|male monarch +cyrus the younger|1 +(noun)|Cyrus|Cyrus the Younger|prince +cyst|2 +(noun)|pathology +(noun)|vesicle|sac +cysteine|1 +(noun)|amino acid|aminoalkanoic acid +cystic|2 +(adj)|sac +(adj)|pathology +cystic artery|1 +(noun)|arteria cystica|artery|arteria|arterial blood vessel +cystic breast disease|1 +(noun)|fibrocystic breast disease|fibrocystic disease of the breast|cystic mastitis|disease +cystic fibrosis|1 +(noun)|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|mucoviscidosis|fibrosis|monogenic disorder|monogenic disease +cystic mastitis|1 +(noun)|fibrocystic breast disease|fibrocystic disease of the breast|cystic breast disease|disease +cystic vein|1 +(noun)|vena cystica|vein|vena|venous blood vessel +cystine|1 +(noun)|amino acid|aminoalkanoic acid +cystitis|1 +(noun)|urinary tract infection +cystocele|1 +(noun)|colpocystocele|colpocele|vaginocele +cystolith|1 +(noun)|bladder stone|calculus|concretion +cystoparalysis|1 +(noun)|cystoplegia|paralysis|palsy +cystophora|1 +(noun)|Cystophora|genus Cystophora|mammal genus +cystophora cristata|1 +(noun)|hooded seal|bladdernose|Cystophora cristata|earless seal|true seal|hair seal +cystoplegia|1 +(noun)|cystoparalysis|paralysis|palsy +cystopteris|1 +(noun)|Cystopteris|genus Cystopteris|fern genus +cystopteris bulbifera|1 +(noun)|bulblet fern|bulblet bladder fern|berry fern|Cystopteris bulbifera|bladder fern +cystopteris fragilis|1 +(noun)|brittle bladder fern|brittle fern|fragile fern|Cystopteris fragilis|bladder fern +cystopteris montana|1 +(noun)|mountain bladder fern|Cystopteris montana|bladder fern +cytesis proliferus|1 +(noun)|tagasaste|Chamaecytisus palmensis|Cytesis proliferus|shrub|bush +cytherea|1 +(noun)|Aphrodite|Cytherea|Greek deity +cytidine|1 +(noun)|deoxycytidine|nucleoside +cytisus|1 +(noun)|Cytisus|genus Cytisus|rosid dicot genus +cytisus albus|1 +(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom +cytisus multiflorus|1 +(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom +cytisus ramentaceus|1 +(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub|bush +cytisus scoparius|1 +(noun)|common broom|Scotch broom|green broom|Cytisus scoparius|broom|Cytisus|genus Cytisus +cytoarchitectonic|1 +(adj)|cytoarchitectural|structure +cytoarchitectonics|1 +(noun)|cytoarchitecture|structure +cytoarchitectural|1 +(adj)|cytoarchitectonic|structure +cytoarchitecture|1 +(noun)|cytoarchitectonics|structure +cytochrome|1 +(noun)|hemoprotein|haemoprotein +cytochrome c|1 +(noun)|cytochrome +cytogenesis|1 +(noun)|cytogeny|growth|growing|maturation|development|ontogeny|ontogenesis +cytogenetic|1 +(adj)|cytogenetical|cytology|genetics|genetic science +cytogenetical|1 +(adj)|cytogenetic|cytology|genetics|genetic science +cytogeneticist|1 +(noun)|geneticist +cytogenetics|1 +(noun)|cytology|genetics|genetic science +cytogeny|1 +(noun)|cytogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +cytokine|1 +(noun)|protein +cytokinesis|1 +(noun)|organic process|biological process +cytokinetic|1 +(adj)|organic process|biological process +cytokinin|1 +(noun)|kinin|phytohormone|plant hormone|growth regulator +cytologic|1 +(adj)|cytological|biology|biological science|microscopic anatomy +cytologic smear|1 +(noun)|smear|cytosmear|cytologic specimen +cytologic specimen|1 +(noun)|specimen +cytological|1 +(adj)|cytologic|biology|biological science|microscopic anatomy +cytologist|1 +(noun)|biologist|life scientist +cytology|1 +(noun)|biology|biological science|microscopic anatomy +cytolysin|1 +(noun)|lysin +cytolysis|1 +(noun)|lysis +cytolytic|1 +(adj)|lysis +cytomegalic|1 +(adj)|unhealthy +cytomegalovirus|1 +(noun)|CMV|herpes|herpes virus +cytomembrane|1 +(noun)|cell wall|cell membrane|plasma membrane|semipermeable membrane +cytopathogenic|1 +(adj)|unhealthful +cytopenia|1 +(noun)|blood disease|blood disorder +cytophotometer|1 +(noun)|light meter|exposure meter|photometer +cytophotometric|1 +(adj)|photometry +cytophotometry|1 +(noun)|photometry +cytoplasm|1 +(noun)|protoplasm|living substance +cytoplasmatic|1 +(adj)|cytoplasmic|protoplasm|living substance +cytoplasmic|1 +(adj)|cytoplasmatic|protoplasm|living substance +cytoplast|1 +(noun)|cytoplasm +cytoplastic|1 +(adj)|cytoplasm +cytosine|1 +(noun)|C|pyrimidine +cytoskeleton|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +cytosmear|1 +(noun)|smear|cytologic smear|cytologic specimen +cytosol|1 +(noun)|cytoplasm +cytostome|1 +(noun)|mouth +cytotoxic|2 +(adj)|toxin +(adj)|toxic +cytotoxic drug|1 +(noun)|medicine|medication|medicament|medicinal drug +cytotoxic t cell|1 +(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell|T lymphocyte +cytotoxicity|1 +(noun)|toxicity +cytotoxin|1 +(noun)|toxin +czar|2 +(noun)|tsar|tzar|sovereign|crowned head|monarch +(noun)|tyrant|autocrat|despot +czar alexander i|1 +(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar|tsar|tzar +czar alexander ii|1 +(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar|tsar|tzar +czar alexander iii|1 +(noun)|Alexander III|Czar Alexander III|czar|tsar|tzar +czar nicholas i|1 +(noun)|Nicholas I|Czar Nicholas I|czar|tsar|tzar +czar peter i|1 +(noun)|Peter I|Czar Peter I|Peter the Great|czar|tsar|tzar +czarina|1 +(noun)|tsarina|tzarina|czaritza|tsaritsa|female aristocrat +czarist|1 +(adj)|czaristic|tsarist|tsaristic|tzarist|tyrant|autocrat|despot +czaristic|1 +(adj)|czarist|tsarist|tsaristic|tzarist|tyrant|autocrat|despot +czaritza|1 +(noun)|czarina|tsarina|tzarina|tsaritsa|female aristocrat +czech|4 +(adj)|Czech|Czechoslovakian|geographical area|geographic area|geographical region|geographic region +(noun)|Czech|European +(noun)|Czechoslovakian|Czechoslovak|Czech|European +(noun)|Czech|Slavic|Slavic language|Slavonic|Slavonic language +czech capital|1 +(noun)|Prague|Praha|Prag|Czech capital|national capital +czech monetary unit|1 +(noun)|Czech monetary unit|monetary unit +czech republic|1 +(noun)|Czech Republic|European country|European nation +czechoslovak|1 +(noun)|Czechoslovakian|Czechoslovak|Czech|European +czechoslovakia|1 +(noun)|Czechoslovakia|geographical area|geographic area|geographical region|geographic region +czechoslovakian|2 +(adj)|Czech|Czechoslovakian|geographical area|geographic area|geographical region|geographic region +(noun)|Czechoslovakian|Czechoslovak|Czech|European +czerny|1 +(noun)|Czerny|Karl Czerny|pianist|piano player|composer +d|4 +(adj)|five hundred|500|cardinal +(noun)|vitamin D|calciferol|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin +(noun)|five hundred|500|D|large integer +(noun)|D|letter|letter of the alphabet|alphabetic character +d'oyly carte|1 +(noun)|D'Oyly Carte|Richard D'Oyly Carte|showman|promoter|impresario +d-day|1 +(noun)|D-day|6 June 1944|date|day of the month +d-layer|1 +(noun)|D-layer|D region|region|part +d. h. lawrence|1 +(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer|author +d. w. griffith|1 +(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker|filmmaker|film producer|movie maker +d.c.|2 +(noun)|District of Columbia|D.C.|DC|federal district +(noun)|direct current|DC|electricity|electrical energy +d.o.a.|1 +(adj)|dead +d.p.r.k.|2 +(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country|Asian nation +(noun)| +d and c|1 +(noun)|dilation and curettage|dilatation and curettage|D and C|operation|surgery|surgical operation|surgical procedure|surgical process +d region|1 +(noun)|D-layer|D region|region|part +da|1 +(noun)|district attorney|DA|prosecutor|public prosecutor|prosecuting officer|prosecuting attorney +da'wah|1 +(noun)|dawah|mission|missionary work +da gamma|1 +(noun)|da Gamma|Vasco da Gamma|Gamma|navigator +da vinci|1 +(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master|sculptor|sculpturer|carver|statue maker|engineer|applied scientist|technologist|architect|designer +dab|4 +(noun)|tap|pat|touch|touching +(noun)|splash|splatter|small indefinite quantity|small indefinite amount +(verb)|swab|swob|put on|apply +(verb)|pat|strike +daba|1 +(noun)|Daba|Kola|Musgoi|Biu-Mandara +dabble|3 +(verb)|dunk|dip|souse|plunge|douse +(verb)|paddle|splash around|play +(verb)|smatter|play around|busy|occupy +dabbled|1 +(adj)|spattered|splashed|splashy|splattered|covered +dabbler|2 +(noun)|dilettante|sciolist|amateur +(noun)|dabbling duck|duck +dabbling duck|1 +(noun)|dabbler|duck +dabchick|1 +(noun)|little grebe|Podiceps ruficollis|grebe +daboecia|1 +(noun)|Daboecia|genus Daboecia|dilleniid dicot genus +daboecia cantabrica|1 +(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath +dacca|1 +(noun)|Dhaka|Dacca|capital of Bangladesh|national capital +dace|1 +(noun)|Leuciscus leuciscus|cyprinid|cyprinid fish +dacelo|1 +(noun)|Dacelo|genus Dacelo|bird genus +dacelo gigas|1 +(noun)|kookaburra|laughing jackass|Dacelo gigas|kingfisher +dacha|1 +(noun)|country house +dachau|1 +(noun)|Dachau|concentration camp|stockade +dachshund|1 +(noun)|dachsie|badger dog|hunting dog +dachsie|1 +(noun)|dachshund|badger dog|hunting dog +dacite|1 +(noun)|volcanic rock +dacitic|1 +(adj)|volcanic rock +dacninae|1 +(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family +dacoit|1 +(noun)|dakoit|thief|stealer +dacoity|1 +(noun)|dakoity|robbery +dacridium laxifolius|1 +(noun)|mountain rimu|Lepidothamnus laxifolius|Dacridium laxifolius|shrub|bush +dacron|1 +(noun)|Dacron|Terylene|polyester +dacrycarpus|1 +(noun)|Dacrycarpus|genus Dacrycarpus|gymnosperm genus +dacrycarpus dacrydioides|1 +(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer|coniferous tree +dacrydium|1 +(noun)|Dacrydium|genus Dacrydium|gymnosperm genus +dacrydium bidwilli|1 +(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer|coniferous tree +dacrydium colensoi|1 +(noun)|tarwood|tar-wood|Dacrydium colensoi|conifer|coniferous tree +dacrydium cupressinum|1 +(noun)|rimu|imou pine|red pine|Dacrydium cupressinum|conifer|coniferous tree +dacrydium franklinii|1 +(noun)|huon pine|Lagarostrobus franklinii|Dacrydium franklinii|conifer|coniferous tree +dacrymyces|1 +(noun)|Dacrymyces|genus Dacrymyces|fungus genus +dacrymycetaceae|1 +(noun)|Dacrymycetaceae|family Dacrymycetaceae|fungus family +dacryocyst|1 +(noun)|lacrimal sac|tear sac|vesicle|cyst +dacryocystitis|1 +(noun)|inflammation|redness|rubor +dacryon|1 +(noun)|craniometric point +dactyl|2 +(noun)|metrical foot|foot|metrical unit +(noun)|digit|extremity|appendage|member +dactylic|1 +(adj)|metrical foot|foot|metrical unit +dactylis|1 +(noun)|Dactylis|genus Dactylis|monocot genus|liliopsid genus +dactylis glomerata|1 +(noun)|orchard grass|cocksfoot|cockspur|Dactylis glomerata|grass +dactyloctenium|1 +(noun)|Dactyloctenium|genus Dactyloctenium|monocot genus|liliopsid genus +dactyloctenium aegypticum|1 +(noun)|Egyptian grass|crowfoot grass|Dactyloctenium aegypticum|crabgrass|crab grass|finger grass +dactylomegaly|1 +(noun)|hypertrophy +dactylopiidae|1 +(noun)|Dactylopiidae|family Dactylopiidae|arthropod family +dactylopius|1 +(noun)|Dactylopius|genus Dactylopius|arthropod genus +dactylopius coccus|1 +(noun)|cochineal insect|cochineal|Dactylopius coccus|scale insect +dactylopteridae|1 +(noun)|Dactylopteridae|family Dactylopteridae|fish family +dactylopterus|1 +(noun)|Dactylopterus|genus Dactylopterus|fish genus +dactylorhiza|1 +(noun)|Dactylorhiza|genus Dactylorhiza|monocot genus|liliopsid genus +dactylorhiza fuchsii|1 +(noun)|common spotted orchid|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid|orchidaceous plant +dactylorhiza maculata fuchsii|1 +(noun)|common spotted orchid|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid|orchidaceous plant +dactyloscopidae|1 +(noun)|Dactyloscopidae|family Dactyloscopidae|fish family +dad|1 +(noun)|dada|daddy|pa|papa|pappa|pater|pop|father|male parent|begetter +dada|2 +(noun)|dad|daddy|pa|papa|pappa|pater|pop|father|male parent|begetter +(noun)|dadaism|artistic movement|art movement +dadaism|1 +(noun)|dada|artistic movement|art movement +daddy|1 +(noun)|dad|dada|pa|papa|pappa|pater|pop|father|male parent|begetter +daddy longlegs|2 +(noun)|crane fly|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|harvestman|Phalangium opilio|arachnid|arachnoid +dado|5 +(noun)|wainscot|panel +(noun)|section|segment +(noun)|groove|channel +(verb)|supply|provide|render|furnish +(verb)|groove +dado plane|1 +(noun)|openside plane|rabbet plane +daedal|2 +(adj)|complex +(noun)|Daedalus|Daedal|mythical being +daedalus|1 +(noun)|Daedalus|Daedal|mythical being +daemon|2 +(noun)|devil|fiend|demon|daimon|evil spirit +(noun)|demigod|deity|divinity|god|immortal +daffo|1 +(noun)|Ron|Bokkos|Daffo|West Chadic +daffodil|1 +(noun)|Narcissus pseudonarcissus|narcissus +daffodil garlic|1 +(noun)|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant +dafla|1 +(noun)|Miri|Mirish|Abor|Dafla|Kamarupan +daft|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +daftly|1 +(adv)|dottily|balmily|nuttily|wackily +daftness|1 +(noun)|craziness|flakiness|insanity +dag|2 +(noun)|dekagram|decagram|dkg|metric weight unit|weight unit +(noun)|jag|flap +dag hammarskjold|1 +(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat|diplomatist +dag hjalmar agne carl hammarskjold|1 +(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat|diplomatist +dagame|1 +(noun)|lemonwood tree|Calycophyllum candidissimum|tree +dagan|1 +(noun)|Dagan|Semitic deity +dagda|1 +(noun)|Dagda|Celtic deity +dagestani|1 +(noun)|Dagestani|ethnic minority +dagga|1 +(noun)|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb|herbaceous plant +dagger|2 +(noun)|sticker|knife +(noun)|obelisk|character|grapheme|graphic symbol +dagger fern|1 +(noun)|Christmas fern|canker brake|evergreen wood fern|Polystichum acrostichoides|fern +daggerboard|1 +(noun)|centerboard|centreboard|drop keel|sliding keel +dago|1 +(noun)|wop|Guinea|greaseball|Italian +dagon|1 +(noun)|Dagon|Semitic deity +daguerre|1 +(noun)|Daguerre|Louis Jacques Mande Daguerre|inventor|discoverer|artificer +daguerreotype|1 +(noun)|photograph|photo|exposure|pic +dah|1 +(noun)|dash|telegraphic signal|radiotelegraphic signal +dahl|2 +(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|Cajanus cajan|shrub|bush +(noun)|cajan pea|pigeon pea|pea +dahlia|1 +(noun)|Dahlia pinnata|flower +dahlia pinnata|1 +(noun)|dahlia|Dahlia pinnata|flower +dahomey|1 +(noun)|Benin|Republic of Benin|Dahomey|African country|African nation +daikon|1 +(noun)|Japanese radish|Raphanus sativus longipinnatus|radish plant +dail|1 +(noun)|Dail Eireann|Dail|house +dail eireann|1 +(noun)|Dail Eireann|Dail|house +daily|5 +(adj)|day-to-day|day-after-day|every day|regular +(adj)|time unit|unit of time +(noun)|newspaper|paper +(adv)|every day|each day +(adv)|day by day +daily dew|1 +(noun)|sundew|sundew plant|carnivorous plant +daily double|1 +(noun)|bet|wager +daily round|1 +(noun)|round|habitude +daily variation|1 +(noun)|variation|fluctuation +daimler|1 +(noun)|Daimler|Gottlieb Daimler|engineer|applied scientist|technologist|industrialist +daimon|1 +(noun)|devil|fiend|demon|daemon|evil spirit +daintiness|1 +(noun)|delicacy|fineness|elegance +dainty|5 +(adj)|mincing|niminy-piminy|prim|twee|refined +(adj)|exquisite|delicate +(adj)|tasty|tasteful +(adj)|nice|overnice|prissy|squeamish|fastidious +(noun)|delicacy|goody|kickshaw|treat|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +daiquiri|1 +(noun)|rum cocktail|cocktail +dairy|1 +(noun)|dairy farm|farm +dairy cattle|1 +(noun)|dairy cow|milch cow|milk cow|milcher|milker|cattle|cows|kine|oxen|Bos taurus +dairy cow|1 +(noun)|dairy cattle|milch cow|milk cow|milcher|milker|cattle|cows|kine|oxen|Bos taurus +dairy farm|1 +(noun)|dairy|farm +dairy farmer|1 +(noun)|dairyman|farmer|husbandman|granger|sodbuster +dairy farming|1 +(noun)|dairying|farming|agriculture|husbandry +dairy product|1 +(noun)|foodstuff|food product +dairying|1 +(noun)|dairy farming|farming|agriculture|husbandry +dairymaid|1 +(noun)|milkmaid|farmhand|fieldhand|field hand|farm worker +dairyman|2 +(noun)|dairy farmer|farmer|husbandman|granger|sodbuster +(noun)|farmhand|fieldhand|field hand|farm worker +dais|1 +(noun)|podium|pulpit|rostrum|ambo|stump|soapbox|platform +daishiki|1 +(noun)|dashiki|shirt +daisy|1 +(noun)|flower +daisy-bush|3 +(noun)|daisybush|daisy bush|shrub|bush +(noun)| +(noun)| +daisy-chain|1 +(verb)|connect|link|tie|link up +daisy-leaved grape fern|1 +(noun)|daisyleaf grape fern|Botrychium matricariifolium|grape fern +daisy bush|3 +(noun)|daisybush|daisy-bush|shrub|bush +(noun)| +(noun)| +daisy chain|2 +(noun)|chain|concatenation +(noun)|flower chain +daisy cutter|2 +(noun)|fragmentation bomb|antipersonnel bomb|anti-personnel bomb|bomb +(noun)|baseball|baseball game|ball +daisy fleabane|1 +(noun)|Erigeron annuus|fleabane +daisy print wheel|1 +(noun)|daisy wheel|wheel +daisy wheel|1 +(noun)|daisy print wheel|wheel +daisybush|1 +(noun)|daisy-bush|daisy bush|shrub|bush +daisyleaf grape fern|1 +(noun)|daisy-leaved grape fern|Botrychium matricariifolium|grape fern +daisylike|1 +(adj)|flower +daisywheel printer|1 +(noun)|character printer|character-at-a-time printer|serial printer +dak|1 +(noun)|dhak|palas|Butea frondosa|Butea monosperma|tree +dakar|1 +(noun)|Dakar|capital of Senegal|national capital|port +dakoit|1 +(noun)|dacoit|thief|stealer +dakoity|1 +(noun)|dacoity|robbery +dakota|3 +(noun)|Dakota|Sioux|Siouan +(noun)|Dakota|geographical area|geographic area|geographical region|geographic region +(noun)|Dakota|Siouan|Siouan language +dal|1 +(noun)|dekaliter|dekalitre|decaliter|decalitre|dkl|metric capacity unit +dalai lama|1 +(noun)|Dalai Lama|Grand Lama|lama +dalasi|1 +(noun)|Gambian monetary unit +dalbergia|1 +(noun)|Dalbergia|genus Dalbergia|rosid dicot genus +dalbergia cearensis|1 +(noun)|kingwood|kingwood tree|Dalbergia cearensis|tree +dalbergia latifolia|1 +(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood|rosewood tree +dalbergia nigra|1 +(noun)|Brazilian rosewood|caviuna wood|jacaranda|Dalbergia nigra|rosewood|rosewood tree +dalbergia retusa|1 +(noun)|cocobolo|Dalbergia retusa|tree +dalbergia sissoo|1 +(noun)|sissoo|sissu|sisham|Dalbergia sissoo|tree +dalbergia stevensonii|1 +(noun)|Honduras rosewood|Dalbergia stevensonii|rosewood|rosewood tree +dale|1 +(noun)|valley|vale +dale carnegie|1 +(noun)|Carnegie|Dale Carnegie|educator|pedagogue +dalea|1 +(noun)|Dalea|genus Dalea|rosid dicot genus +dalea spinosa|1 +(noun)|smoke tree|Dalea spinosa|shrub|bush +dalesman|1 +(noun)|resident|occupant|occupier +daleth|1 +(noun)|letter|letter of the alphabet|alphabetic character +dali|1 +(noun)|Dali|Salvidor Dali|painter +dall's sheep|1 +(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep +dall sheep|1 +(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep +dallas|1 +(noun)|Dallas|city|metropolis|urban center +dalliance|2 +(noun)|dawdling|trifling|wasting time|delay|holdup +(noun)|flirt|flirting|flirtation|coquetry|toying|play|frolic|romp|gambol|caper +dallier|1 +(noun)|dillydallier|dilly-dallier|mope|lounger|idler|loafer|do-nothing|layabout|bum +dallis grass|2 +(noun)|dallisgrass|paspalum|Paspalum dilatatum|grass +(noun)| +dallisgrass|1 +(noun)|dallis grass|paspalum|Paspalum dilatatum|grass +dally|4 +(verb)|toy|play|flirt|act|move +(verb)|dawdle|act|behave|do +(verb)|chat up|flirt|butterfly|coquet|coquette|romance|philander|mash|talk|speak +(verb)|trifle|play|consider|take|deal|look at +dalmane|1 +(noun)|flurazepam|flurazepam hydrochloride|Dalmane|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +dalmatia|1 +(noun)|Dalmatia|geographical area|geographic area|geographical region|geographic region +dalmatia pyrethrum|1 +(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb|herbaceous plant +dalmatian|3 +(adj)|Dalmatian|geographical area|geographic area|geographical region|geographic region +(noun)|Dalmatian|European +(noun)|coach dog|carriage dog|dog|domestic dog|Canis familiaris +dalmatian iris|1 +(noun)|Dalmatian iris|Iris pallida|bearded iris +dalmatian laburnum|1 +(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub|bush +dalmatian pyrethrum|1 +(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb|herbaceous plant +dalo|1 +(noun)|taro|taro plant|dasheen|Colocasia esculenta|arum|aroid +dalton|1 +(noun)|Dalton|John Dalton|chemist|physicist +dalton's law|2 +(noun)|law of multiple proportions|Dalton's law|law|law of nature +(noun)|Dalton's law|Dalton's law of partial pressures|law of partial pressures|law|law of nature +dalton's law of partial pressures|1 +(noun)|Dalton's law|Dalton's law of partial pressures|law of partial pressures|law|law of nature +dalton trumbo|1 +(noun)|Trumbo|Dalton Trumbo|screenwriter|film writer +daltonism|1 +(noun)|deuteranopia|Daltonism|green-blindness|red-green dichromacy|red-green color blindness|red-green colour blindness +dam|4 +(noun)|dike|dyke|levee|barrier +(noun)|decameter|dekameter|decametre|dekametre|dkm|metric linear unit +(noun)|female +(verb)|dam up|obstruct|obturate|impede|occlude|jam|block|close up +dam up|1 +(verb)|dam|obstruct|obturate|impede|occlude|jam|block|close up +dama|1 +(noun)|Dama|genus Dama|mammal genus +dama dama|1 +(noun)|fallow deer|Dama dama|deer|cervid +damage|6 +(noun)|harm|impairment|change|alteration|modification +(noun)|equipment casualty|casualty +(noun)|harm|hurt|scathe|change of integrity +(noun)|price|terms|cost +(noun)|wrong|legal injury|wrongdoing|wrongful conduct|misconduct|actus reus +(verb)|change|alter|modify +damage control|1 +(noun)|control +damaged|3 +(adj)|damaged |battered|beat-up|beaten-up|bedraggled|broken-down|dilapidated|ramshackle|tatterdemalion|tumble-down|unsound|bent|crumpled|dented|broken|busted|broken-backed|burst|ruptured|busted|defaced|marred|hurt|weakened|knocked-out|mangled|mutilated|peeling|scorched|scraped|scratched|storm-beaten|trampled|trodden|riddled|blemished|broken|destroyed|impaired|injured +(adj)|discredited|disreputable +(adj)|besmirched|flyblown|spotted|stained|sullied|tainted|tarnished|blemished +damages|6 +(noun)|amends|indemnity|indemnification|restitution|redress|compensation +(noun)|damage|harm|impairment|change|alteration|modification +(noun)|damage|equipment casualty|casualty +(noun)|damage|harm|hurt|scathe|change of integrity +(noun)|price|terms|damage|cost +(noun)|wrong|legal injury|damage|wrongdoing|wrongful conduct|misconduct|actus reus +damaging|2 +(adj)|detrimental|prejudicial|prejudicious|harmful +(adj)|negative|destructive +damaliscus|1 +(noun)|Damaliscus|genus Damaliscus|mammal genus +damaliscus lunatus|1 +(noun)|sassaby|topi|Damaliscus lunatus|antelope +damar|1 +(noun)|dammar|gum dammar|dammar resin|natural resin +damaraland mole rat|1 +(noun)|Damaraland mole rat|fossorial mammal +damascene|5 +(adj)|national capital +(adj)|fancy +(noun)|Damascene|Syrian +(noun)|design|pattern|figure +(verb)|inlay +damascus|1 +(noun)|Damascus|capital of Syria|national capital +damascus steel|1 +(noun)|Damascus steel|Damask steel|steel +damask|3 +(adj)|fancy +(noun)|table linen|napery +(noun)|fabric|cloth|material|textile +damask rose|1 +(noun)|summer damask rose|Rosa damascena|rose +damask steel|1 +(noun)|Damascus steel|Damask steel|steel +damask violet|1 +(noun)|Dame's violet|sweet rocket|Hesperis matronalis|flower +dame|2 +(noun)|doll|wench|skirt|chick|bird|girl|miss|missy|young lady|young woman|fille +(noun)|madam|ma'am|lady|gentlewoman|woman|adult female +dame's violet|1 +(noun)|damask violet|Dame's violet|sweet rocket|Hesperis matronalis|flower +dame agatha mary clarissa christie|1 +(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer|author +dame alice ellen terry|1 +(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress +dame alicia markova|1 +(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer|professional dancer +dame barbara hepworth|1 +(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor|sculpturer|carver|statue maker +dame daphne du maurier|1 +(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer|author +dame edith louisa sitwell|1 +(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet +dame edith sitwell|1 +(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet +dame ellen terry|1 +(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress +dame jean iris murdoch|1 +(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer|author +dame joan sutherland|1 +(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano +dame kiri janette te kanawa|1 +(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano +dame kiri te kanawa|1 +(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano +dame margot fonteyn|1 +(noun)|Fonteyn|Dame Margot Fonteyn|dancer|professional dancer +dame muriel spark|1 +(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer|author +dame myra hess|1 +(noun)|Hess|Dame Myra Hess|pianist|piano player +dame nellie melba|1 +(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura|coloratura soprano +dame rebecca west|1 +(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer|author +dame sybil thorndike|1 +(noun)|Thorndike|Dame Sybil Thorndike|actress +damgalnunna|1 +(noun)|Damkina|Damgalnunna|Semitic deity +daminozide|1 +(noun)|Alar|chemical +damkina|1 +(noun)|Damkina|Damgalnunna|Semitic deity +dammar|1 +(noun)|gum dammar|damar|dammar resin|natural resin +dammar pine|1 +(noun)|kauri pine|conifer|coniferous tree +dammar resin|1 +(noun)|dammar|gum dammar|damar|natural resin +damn|5 +(adj)|goddamn|cursed |curst +(adj)|blasted|blame|blamed|blessed|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +(noun)|darn|hoot|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness +(verb)|curse|beshrew|bedamn|anathemize|anathemise|imprecate|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(adv)|bloody|all-fired +damnable|1 +(adj)|execrable|cursed |curst +damnably|1 +(adv)|damned|cursedly +damnation|2 +(noun)|denunciation|denouncement +(noun)|eternal damnation|state +damnatory|1 +(adj)|damning|inculpatory |inculpative +damned|4 +(adj)|blasted|blame|blamed|blessed|damn|darned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +(adj)|cursed|doomed|unredeemed|unsaved|lost +(noun)|people +(adv)|damnably|cursedly +damning|1 +(adj)|damnatory|inculpatory |inculpative +damocles|1 +(noun)|Damocles|courtier +damoiselle|1 +(noun)|damsel|demoiselle|damosel|damozel|maid|maiden +damon|1 +(noun)|Damon|friend +damon and pythias|1 +(noun)|Damon and Pythias|friend +damon runyon|1 +(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer|author +damosel|1 +(noun)|damsel|demoiselle|damoiselle|damozel|maid|maiden +damourite|1 +(noun)|muscovite +damozel|1 +(noun)|damsel|demoiselle|damoiselle|damosel|maid|maiden +damp|6 +(adj)|dampish|moist|wet +(noun)|dampness|moistness|wetness +(verb)|muffle|mute|dull|dampen|tone down|soften +(verb)|control|hold in|hold|contain|check|curb|moderate +(verb)|dampen|deaden|dampen|soften|weaken|break +(verb)|dampen|soften|weaken|break|deaden|blunt +damp-proof course|1 +(noun)|damp course|course|row +damp course|1 +(noun)|damp-proof course|course|row +dampen|7 +(verb)|stifle|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|moisten|wash|wet +(verb)|muffle|mute|dull|damp|tone down|soften +(verb)|weaken +(verb)|deaden|damp|damp|soften|weaken|break +(verb)|check|retard|delay +(verb)|damp|soften|weaken|break|deaden|blunt +dampener|1 +(noun)|moistener|device +dampening|1 +(noun)|moistening|wetting +damper|3 +(noun)|plate +(noun)|muffler|device +(noun)|restraint +damper block|1 +(noun)|piano damper|damper|muffler +damping off|1 +(noun)|plant disease +damping off fungus|1 +(noun)|Pythium debaryanum|pythium +dampish|1 +(adj)|damp|moist|wet +damply|1 +(adv)|moistly +dampness|1 +(noun)|damp|moistness|wetness +damsel|1 +(noun)|demoiselle|damoiselle|damosel|damozel|maid|maiden +damselfish|1 +(noun)|demoiselle|percoid fish|percoid|percoidean +damselfly|1 +(noun)|odonate +damson|1 +(noun)|damson plum|plum +damson plum|3 +(noun)|satinleaf|satin leaf|caimitillo|Chrysophyllum oliviforme|angiospermous tree|flowering tree +(noun)|damson plum tree|Prunus domestica insititia|bullace|Prunus insititia +(noun)|damson|plum +damson plum tree|1 +(noun)|damson plum|Prunus domestica insititia|bullace|Prunus insititia +dana|1 +(noun)|Danu|Dana|Celtic deity +danaea|1 +(noun)|Danaea|genus Danaea|fern genus +danaid|1 +(noun)|danaid butterfly|butterfly +danaid butterfly|1 +(noun)|danaid|butterfly +danaidae|1 +(noun)|Danaidae|family Danaidae|arthropod family +danaus|1 +(noun)|Danaus|genus Danaus|arthropod genus +danaus plexippus|1 +(noun)|monarch|monarch butterfly|milkweed butterfly|Danaus plexippus|danaid|danaid butterfly +dance|7 +(noun)|art|fine art +(noun)|party +(noun)|dancing|terpsichore|saltation|diversion|recreation|performing arts +(noun)|party +(verb)|move +(verb)|trip the light fantastic|trip the light fantastic toe|move +(verb)|move +dance band|1 +(noun)|band|dance orchestra|musical organization|musical organisation|musical group +dance floor|1 +(noun)|floor|flooring +dance hall|1 +(noun)|ballroom|dance palace|room +dance lesson|1 +(noun)|lesson +dance music|1 +(noun)|danceroom music|ballroom music|popular music|popular music genre +dance of death|1 +(noun)|danse macabre|ritual dancing|ritual dance|ceremonial dance +dance orchestra|1 +(noun)|dance band|band|musical organization|musical organisation|musical group +dance palace|1 +(noun)|ballroom|dance hall|room +dance school|1 +(noun)|school +dance step|1 +(noun)|step|locomotion|travel +danceable|1 +(adj)|rhythmical |rhythmic +dancer|2 +(noun)|professional dancer|performer|performing artist +(noun)|social dancer|person|individual|someone|somebody|mortal|human|soul +danceroom music|1 +(noun)|dance music|ballroom music|popular music|popular music genre +dancing|1 +(noun)|dance|terpsichore|saltation|diversion|recreation|performing arts +dancing lady orchid|1 +(noun)|oncidium|butterfly plant|butterfly orchid|orchid|orchidaceous plant +dancing partner|1 +(noun)|dancer|social dancer|collaborator|cooperator|partner|pardner +dancing school|1 +(noun)|school +dandelion|1 +(noun)|blowball|herb|herbaceous plant +dandelion green|2 +(noun)|leaf|leafage|foliage +(noun)|greens|green|leafy vegetable +dander|2 +(noun)|scale|scurf|exfoliation +(noun)|hackles|anger|choler|ire +dandie dinmont|1 +(noun)|Dandie Dinmont|Dandie Dinmont terrier|terrier +dandie dinmont terrier|1 +(noun)|Dandie Dinmont|Dandie Dinmont terrier|terrier +dandified|1 +(adj)|dandyish|foppish|elegant +dandify|1 +(verb)|dress|get dressed +dandle|2 +(verb)|move|displace +(verb)|caress +dandle board|1 +(noun)|seesaw|teeter-totter|teeterboard|tilting board|plaything|toy +dandruff|2 +(noun)|pityriasis +(noun)|scale|scurf|exfoliation +dandy|2 +(adj)|bang-up|bully|corking|cracking|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(noun)|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse|man|adult male +dandy fever|1 +(noun)|dengue|dengue fever|breakbone fever|infectious disease +dandyish|1 +(adj)|dandified|foppish|elegant +dane|1 +(noun)|Dane|European +danewort|1 +(noun)|dwarf elder|Sambucus ebulus|elder|elderberry bush +dangaleat|1 +(noun)|Dangla|Dangaleat|East Chadic +danger|4 +(noun)|condition|status +(noun)|risk|peril|venture +(noun)|causal agent|cause|causal agency +(noun)|area|country +danger line|1 +(noun)|line +danger zone|1 +(noun)|zone +dangerous|2 +(adj)|dangerous |unsafe|breakneck|chancy|chanceful|dicey|dodgy|desperate|harmful|hazardous|risky|venturesome|venturous|insidious|mordacious|on the hook|parlous|perilous|precarious|touch-and-go|self-destructive|suicidal|treacherous|unreliable|insecure|unsafe|vulnerable +(adj)|grave|grievous|serious|severe|life-threatening|critical +dangerous undertaking|1 +(noun)|adventure|escapade|risky venture|undertaking|project|task|labor +dangerously|1 +(adv)|perilously|hazardously +dangerousness|1 +(noun)|characteristic +dangla|1 +(noun)|Dangla|Dangaleat|East Chadic +dangle|2 +(verb)|swing|drop|hang +(verb)|suspend +dangle-berry|2 +(noun)|dangleberry|Gaylussacia frondosa|huckleberry +(noun)| +dangleberry|1 +(noun)|dangle-berry|Gaylussacia frondosa|huckleberry +dangling|1 +(noun)|suspension|hanging|support|supporting +dangling modifier|1 +(noun)|misplaced modifier|modifier|qualifier +dangling participle|1 +(noun)|dangling modifier|misplaced modifier +daniel|3 +(noun)|Daniel|prophet +(noun)|Daniel|judge|justice|jurist|magistrate +(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book +daniel bernoulli|1 +(noun)|Bernoulli|Daniel Bernoulli|physicist +daniel boone|1 +(noun)|Boone|Daniel Boone|frontiersman|backwoodsman|mountain man +daniel chester french|1 +(noun)|French|Daniel Chester French|sculptor|sculpturer|carver|statue maker +daniel defoe|1 +(noun)|Defoe|Daniel Defoe|writer|author +daniel garrison brinton|1 +(noun)|Brinton|Daniel Garrison Brinton|anthropologist +daniel hudson burnham|1 +(noun)|Burnham|Daniel Hudson Burnham|architect|designer +daniel jones|1 +(noun)|Jones|Daniel Jones|phonetician +daniel morgan|1 +(noun)|Morgan|Daniel Morgan|soldier +daniel ortega|1 +(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman|solon|national leader +daniel ortega saavedra|1 +(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman|solon|national leader +daniel rutherford|1 +(noun)|Rutherford|Daniel Rutherford|chemist +daniel webster|1 +(noun)|Webster|Daniel Webster|politician|politico|pol|political leader +danish|3 +(adj)|Danish|Scandinavian country|Scandinavian nation +(noun)|Danish|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +(noun)|Danish|Danish pastry|sweet roll|coffee roll +danish blue|1 +(noun)|Danish blue|bleu|blue cheese +danish capital|1 +(noun)|Copenhagen|Kobenhavn|Danish capital|national capital +danish krone|1 +(noun)|Danish krone|krone|Danish monetary unit +danish monetary unit|1 +(noun)|Danish monetary unit|monetary unit +danish pastry|1 +(noun)|Danish|Danish pastry|sweet roll|coffee roll +dank|1 +(adj)|clammy|wet +dankness|1 +(noun)|clamminess|damp|dampness|moistness +danmark|1 +(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country|Scandinavian nation +dano-norwegian|1 +(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian +danse du ventre|1 +(noun)|belly dance|belly dancing|stage dancing|choreography +danse macabre|1 +(noun)|dance of death|ritual dancing|ritual dance|ceremonial dance +danseur|1 +(noun)|danseur noble|ballet dancer +danseur noble|1 +(noun)|danseur|ballet dancer +danseuse|1 +(noun)|ballerina|ballet dancer +dante|1 +(noun)|Dante|Dante Alighieri|poet +dante alighieri|1 +(noun)|Dante|Dante Alighieri|poet +dante gabriel rossetti|1 +(noun)|Rossetti|Dante Gabriel Rossetti|Pre-Raphaelite +dantean|1 +(adj)|Dantean|Dantesque|poet +dantesque|1 +(adj)|Dantean|Dantesque|poet +danton|1 +(noun)|Danton|Georges Jacques Danton|revolutionist|revolutionary|subversive|subverter +danton true young|1 +(noun)|Young|Cy Young|Danton True Young|ballplayer|baseball player +danu|1 +(noun)|Danu|Dana|Celtic deity +danube|1 +(noun)|Danube|Danube River|river +danube river|1 +(noun)|Danube|Danube River|river +danzig|1 +(noun)|Gdansk|Danzig|city|metropolis|urban center|port +daoism|1 +(noun)|Taoism|Daoism|philosophical doctrine|philosophical theory +daphne|2 +(noun)|shrub|bush +(noun)|Daphne|nymph +daphne cneorum|1 +(noun)|garland flower|Daphne cneorum|daphne +daphne du maurier|1 +(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer|author +daphne family|1 +(noun)|Thymelaeaceae|family Thymelaeaceae|dicot family|magnoliopsid family +daphne laureola|1 +(noun)|spurge laurel|wood laurel|Daphne laureola|daphne +daphne mezereum|1 +(noun)|mezereon|February daphne|Daphne mezereum|daphne +daphnia|1 +(noun)|water flea|branchiopod crustacean|branchiopod|branchiopodan +dapper|1 +(adj)|dashing|jaunty|natty|raffish|rakish|smart|spiffy|snappy|spruce|fashionable |stylish +dapperness|1 +(noun)|jauntiness|nattiness|rakishness|chic|chicness|modishness|smartness|stylishness|swank|last word +dapple|2 +(noun)|spot|speckle|patch|fleck|maculation|marking +(verb)|mottle|cloud|spot +dapple-gray|1 +(noun)|dapple-grey|dappled-gray|dappled-grey|gray|grayness|grey|greyness +dapple-grey|1 +(noun)|dapple-gray|dappled-gray|dappled-grey|gray|grayness|grey|greyness +dappled|1 +(adj)|mottled|patterned +dappled-gray|1 +(noun)|dapple-gray|dapple-grey|dappled-grey|gray|grayness|grey|greyness +dappled-grey|1 +(noun)|dapple-gray|dapple-grey|dappled-gray|gray|grayness|grey|greyness +dapsang|1 +(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak +dapsone|1 +(noun)|antibacterial|antibacterial drug|bactericide +dar al-harb|1 +(noun)|Dar al-harb|House of War|geographical area|geographic area|geographical region|geographic region +dar al-islam|1 +(noun)|Dar al-Islam|House of Islam|geographical area|geographic area|geographical region|geographic region +dar es salaam|1 +(noun)|Dar es Salaam|capital of Tanzania|national capital +daraf|1 +(noun)|elastance unit +dard|1 +(noun)|Dard|Dardic|Dardic language|Indic|Indo-Aryan +dardan|1 +(noun)|Trojan|Dardan|Dardanian|Asian|Asiatic +dardanelles|2 +(noun)|Dardanelles|Hellespont|strait|sound +(noun)|Dardanelles|Dardanelles campaign|campaign|military campaign +dardanelles campaign|1 +(noun)|Dardanelles|Dardanelles campaign|campaign|military campaign +dardanian|1 +(noun)|Trojan|Dardan|Dardanian|Asian|Asiatic +dardanus|1 +(noun)|Dardanus|mythical being +dardic|1 +(noun)|Dard|Dardic|Dardic language|Indic|Indo-Aryan +dardic language|1 +(noun)|Dard|Dardic|Dardic language|Indic|Indo-Aryan +dare|4 +(noun)|daring|challenge +(verb)|make bold|presume|act|move +(verb)|act|move +(verb)|defy|challenge +daredevil|2 +(adj)|brash|temerarious|bold +(noun)|madcap|hothead|swashbuckler|lunatic|harum-scarum|adventurer|venturer +daredevilry|1 +(noun)|daredeviltry|boldness|daring|hardihood +daredeviltry|1 +(noun)|daredevilry|boldness|daring|hardihood +dari|1 +(noun)|Dari|Dari Persian|Iranian|Iranian language +dari persian|1 +(noun)|Dari|Dari Persian|Iranian|Iranian language +daricon|1 +(noun)|oxyphencyclimine|Daricon|anticholinergic|anticholinergic drug +darier's disease|1 +(noun)|keratosis follicularis|Darier's disease|keratosis +daring|4 +(adj)|audacious|venturesome|venturous|adventurous |adventuresome +(adj)|avant-garde|original +(noun)|dare|challenge +(noun)|boldness|hardihood|fearlessness +darius i|1 +(noun)|Darius I|Darius the Great|king|male monarch +darius iii|1 +(noun)|Darius III|king|male monarch +darius milhaud|1 +(noun)|Milhaud|Darius Milhaud|composer +darius the great|1 +(noun)|Darius I|Darius the Great|king|male monarch +dark|16 +(adj)|dark |Acheronian|Acherontic|Stygian|aphotic|black|pitch-black|pitch-dark|caliginous|Cimmerian|crepuscular|darkened|darkening|darkling|darkling|dim|subdued|glooming|gloomy|gloomful|lightless|unilluminated|unlighted|unlit|lightproof|light-tight|dusky|twilight|twilit|tenebrous|tenebrific|tenebrious +(adj)|dark |darkish|black|achromatic +(adj)|brunet |brunette +(adj)|black|sinister|evil |wicked +(adj)|blue|depressing|disconsolate|dismal|dispiriting|gloomy|grim|cheerless |uncheerful +(adj)|concealed +(adj)|dour|glowering|glum|moody|morose|saturnine|sour|sullen|ill-natured +(adj)|benighted|unenlightened +(adj)|obscure|incomprehensible |uncomprehensible +(adj)|colored|coloured|dark-skinned|black +(adj)|inactive +(noun)|darkness|illumination +(noun)|iniquity|wickedness|darkness|condition|status +(noun)|darkness|shadow|scene +(noun)|night|nighttime|time period|period of time|period +(noun)|darkness|unenlightenment +dark-blue|1 +(adj)|blue|bluish|blueish|light-blue|blue-black|chromatic +dark-brown|1 +(adj)|brown|brownish|chromatic +dark-eyed junco|1 +(noun)|slate-colored junco|Junco hyemalis|junco|snowbird +dark-field microscope|1 +(noun)|ultramicroscope|light microscope +dark-green|1 +(adj)|green|greenish|light-green|chromatic +dark-haired|1 +(adj)|black-haired|brown-haired|brunet |brunette +dark-skinned|2 +(adj)|colored|coloured|dark|black +(adj)|dusky|swart|swarthy|brunet |brunette +dark adaptation|1 +(noun)|adaptation +dark ages|1 +(noun)|Middle Ages|Dark Ages|historic period|age +dark blue|1 +(noun)|navy|navy blue|blue|blueness +dark bread|1 +(noun)|whole wheat bread|whole meal bread|brown bread|bread|breadstuff|staff of life +dark chocolate|1 +(noun)|bittersweet chocolate|semi-sweet chocolate|chocolate +dark comdey|1 +(noun)|comedy +dark field illumination|1 +(noun)|dark ground illumination|microscopy +dark glasses|1 +(noun)|sunglasses|shades|spectacles|specs|eyeglasses|glasses +dark ground illumination|1 +(noun)|dark field illumination|microscopy +dark horse|2 +(noun)|campaigner|candidate|nominee +(noun)|racehorse|race horse|bangtail +dark lantern|1 +(noun)|lantern +dark matter|1 +(noun)|substance|matter +dark meat|1 +(noun)|meat +dark red|1 +(noun)|red|redness +darken|4 +(verb)|change +(verb)|dim|change intensity +(verb)|tarnish|stain|maculate|sully|defile +(verb)|change|alter|modify +darkened|2 +(adj)|old +(adj)|dark +darkening|3 +(adj)|dark +(adj)|gloomy|grim|hopeless +(noun)|blackening|change of color +darkey|1 +(noun)|darky|darkie|Black|Black person|blackamoor|Negro|Negroid +darkie|1 +(noun)|darky|darkey|Black|Black person|blackamoor|Negro|Negroid +darkish|1 +(adj)|dark +darkling|2 +(adj)|dark +(adj)|dark +darkling beetle|1 +(noun)|darkling groung beetle|tenebrionid|weevil +darkling groung beetle|1 +(noun)|darkling beetle|tenebrionid|weevil +darkly|1 +(adv)|in darkness +darkness|6 +(noun)|dark|illumination +(noun)|dark|shadow|scene +(noun)|iniquity|wickedness|dark|condition|status +(noun)|dark|unenlightenment +(noun)|value +(noun)|duskiness|swarthiness|complexion|skin color|skin colour +darkroom|1 +(noun)|room +darky|1 +(noun)|darkie|darkey|Black|Black person|blackamoor|Negro|Negroid +darling|3 +(adj)|beloved|dear|loved +(noun)|favorite|favourite|pet|dearie|deary|ducky|lover +(noun)|Darling|Darling River|river +darling pea|1 +(noun)|poison bush|subshrub|suffrutex +darling river|1 +(noun)|Darling|Darling River|river +darlingtonia|1 +(noun)|Darlingtonia|genus Darlingtonia|dicot genus|magnoliopsid genus +darlingtonia californica|1 +(noun)|California pitcher plant|Darlingtonia californica|pitcher plant +darmera|1 +(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus +darmera peltata|1 +(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb|herbaceous plant +darn|4 +(noun)|euphemism +(noun)|damn|hoot|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness +(noun)|mend|patch|sewing|stitchery +(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +darned|1 +(adj)|blasted|blame|blamed|blessed|damn|damned|deuced|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +darnel|1 +(noun)|tare|bearded darnel|cheat|Lolium temulentum|rye grass|ryegrass +darning|1 +(noun)|repair|fix|fixing|fixture|mend|mending|reparation +darning needle|2 +(noun)|embroidery needle|sewing needle +(noun)|dragonfly|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate +darpa|1 +(noun)|Defense Advanced Research Projects Agency|DARPA|agency|federal agency|government agency|bureau|office|authority +darrow|1 +(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer|attorney +darryl francis zanuck|1 +(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker|filmmaker|film producer|movie maker +darryl zanuck|1 +(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker|filmmaker|film producer|movie maker +darsana|1 +(noun)|Darsana|Hinduism|Hindooism +dart|6 +(noun)|projectile|missile +(noun)|tuck +(noun)|flit|motion|movement|move|motility +(verb)|flit|flutter|fleet|travel rapidly|speed|hurry|zip +(verb)|dash|scoot|scud|flash|shoot|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|lunge|hurl|hurtle|thrust +dart board|2 +(noun)|dartboard|board|gameboard +(noun)| +dart player|1 +(noun)|player|participant +dart thrower|1 +(noun)|throwing stick|throwing board|spear thrower|device +dartboard|1 +(noun)|dart board|board|gameboard +darter|2 +(noun)|snakebird|anhinga|pelecaniform seabird +(noun)|animal|animate being|beast|brute|creature|fauna +dartmouth|1 +(noun)|Dartmouth College|Dartmouth|college +dartmouth college|1 +(noun)|Dartmouth College|Dartmouth|college +darts|4 +(noun)|board game +(noun)|dart|projectile|missile +(noun)|dart|tuck +(noun)|flit|dart|motion|movement|move|motility +darvon|1 +(noun)|propoxyphene|propoxyphene hydrochloride|Darvon|analgesic|anodyne|painkiller|pain pill +darwin|2 +(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist|natural scientist +(noun)|Darwin|provincial capital +darwin tulip|1 +(noun)|Darwin tulip|tulip +darwinian|2 +(adj)|Darwinian|theory of evolution|theory of organic evolution +(noun)|Darwinian|advocate|advocator|proponent|exponent +darwinism|1 +(noun)|Darwinism|theory of evolution|theory of organic evolution +das|2 +(noun)|hyrax|coney|cony|dassie|placental|placental mammal|eutherian|eutherian mammal +(noun)|district attorney|DA|prosecutor|public prosecutor|prosecuting officer|prosecuting attorney +das kapital|1 +(noun)|Das Kapital|Capital|book +dash|12 +(noun)|elan|flair|panache|style|elegance +(noun)|sprint|run|running +(noun)|track event +(noun)|hyphen|punctuation|punctuation mark +(noun)|dah|telegraphic signal|radiotelegraphic signal +(noun)|bolt|haste|hurry|rush|rushing +(verb)|dart|scoot|scud|flash|shoot|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|smash|break +(verb)|crash|hurl|hurtle|cast +(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk +(verb)|daunt|scare off|pall|frighten off|scare away|frighten away|scare|intimidate|restrain +(verb)|mix|mix in +dash-pot|1 +(noun)|damper|muffler +dash down|1 +(verb)|dash off|write down|set down|get down|put down +dash off|2 +(verb)|knock off|toss off|fling off|write|compose|pen|indite +(verb)|dash down|write down|set down|get down|put down +dashboard|2 +(noun)|splashboard|splasher|protective covering|protective cover|protection +(noun)|control panel|instrument panel|control board|board|panel +dashed|1 +(adj)|dotted|broken +dasheen|3 +(noun)|taro|cocoyam|eddo|root +(noun)|taro|taro plant|dalo|Colocasia esculenta|arum|aroid +(noun)|taro|taro root|cocoyam|edda|root vegetable +dashiell hammett|1 +(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer|author +dashiki|1 +(noun)|daishiki|shirt +dashing|2 +(adj)|gallant|spirited +(adj)|dapper|jaunty|natty|raffish|rakish|smart|spiffy|snappy|spruce|fashionable |stylish +dashing hopes|1 +(noun)|disappointment|failure +dassie|1 +(noun)|hyrax|coney|cony|das|placental|placental mammal|eutherian|eutherian mammal +dastard|2 +(adj)|dastardly|cowardly |fearful +(noun)|coward +dastardliness|1 +(noun)|cowardice|cowardliness +dastardly|1 +(adj)|dastard|cowardly |fearful +dasyatidae|1 +(noun)|Dasyatidae|family Dasyatidae|fish family +dasyatis|1 +(noun)|Dasyatis|genus Dasyatis|fish genus +dasyatis centroura|1 +(noun)|roughtail stingray|Dasyatis centroura|stingray +dasymeter|1 +(noun)|densimeter|densitometer +dasypodidae|1 +(noun)|Dasypodidae|family Dasypodidae|mammal family +dasyprocta|1 +(noun)|Dasyprocta|genus Dasyprocta|mammal genus +dasyprocta aguti|1 +(noun)|agouti|Dasyprocta aguti|rodent|gnawer|gnawing animal +dasyproctidae|1 +(noun)|Dasyproctidae|family Dasyproctidae|mammal family +dasypus|1 +(noun)|Dasypus|genus Dasypus|mammal genus +dasypus novemcinctus|1 +(noun)|peba|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo +dasyure|1 +(noun)|dasyurid marsupial|dasyurid +dasyurid|1 +(noun)|dasyurid marsupial|marsupial|pouched mammal +dasyurid marsupial|1 +(noun)|dasyurid|marsupial|pouched mammal +dasyuridae|1 +(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family +dasyurus|1 +(noun)|Dasyurus|genus Dasyurus|mammal genus +dasyurus quoll|1 +(noun)|eastern dasyure|Dasyurus quoll|dasyure +dasyurus viverrinus|1 +(noun)|native cat|Dasyurus viverrinus|dasyure +dat|1 +(noun)|digital audiotape|DAT|audiotape +data|2 +(noun)|information|collection|aggregation|accumulation|assemblage +(noun)|datum|data point|information +data-based|1 +(adj)|experimental|observational|empirical |empiric +data-storage medium|1 +(noun)|storage medium|medium +data communication|1 +(noun)|digital communication|electronic communication +data conversion|1 +(noun)|conversion +data converter|1 +(noun)|converter|convertor +data encryption|1 +(noun)|encoding|encryption +data file|1 +(noun)|file|record +data format|1 +(noun)|format|formatting|data formatting|information|info +data formatting|1 +(noun)|format|formatting|data format|information|info +data hierarchy|1 +(noun)|hierarchy +data input device|1 +(noun)|input device|device +data link|1 +(noun)|link|circuit|electrical circuit|electric circuit +data mining|1 +(noun)|data processing +data multiplexer|1 +(noun)|multiplexer +data point|1 +(noun)|datum|information +data processing|1 +(noun)|processing +data processor|1 +(noun)|computer|computing machine|computing device|electronic computer|information processing system|machine +data rate|1 +(noun)|rate +data structure|1 +(noun)|arrangement|organization|organisation|system +data system|1 +(noun)|information system|system +data track|1 +(noun)|track|path|route|itinerary +database|1 +(noun)|information|info +database management|1 +(noun)|management|direction +database management system|1 +(noun)|DBMS|software|software system|software package|package +datable|1 +(adj)|datable |dateable|dated +date|13 +(noun)|day of the month|day|twenty-four hours|solar day|mean solar day +(noun)|day|twenty-four hours|solar day|mean solar day +(noun)|appointment|engagement|meeting|get together +(noun)|point|point in time +(noun)|present|nowadays +(noun)|escort|companion|comrade|fellow|familiar|associate +(noun)|calendar day|civil day|calendar month|month|calendar year|civil year +(noun)|edible fruit +(verb)|go out +(verb)|date stamp|stamp +(verb)|determine|set +(verb)|go steady|go out|see|consort|associate|affiliate|assort +(verb)|supply|provide|render|furnish +date-mark|2 +(verb)|dateline|datemark|date +(verb)| +date-nut bread|1 +(noun)|quick bread +date back|1 +(verb)|go back|date from|originate|initiate|start +date bar|1 +(noun)|fruit bar +date bread|1 +(noun)|quick bread +date from|1 +(verb)|go back|date back|originate|initiate|start +date line|2 +(noun)|dateline|International Date Line|meridian|longitude|line of longitude +(noun)|dateline|line +date of reference|1 +(noun)|epoch|date +date palm|1 +(noun)|Phoenix dactylifera|feather palm +date plum|1 +(noun)|Diospyros lotus|persimmon|persimmon tree +date rape|1 +(noun)|rape|violation|assault|ravishment +date stamp|1 +(verb)|date|date|stamp +dateable|1 +(adj)|datable |dated +dated|2 +(adj)|unfashionable |unstylish +(adj)|datable |dateable +dateless|4 +(adj)|endless|sempiternal|infinite +(adj)|undatable +(adj)|undated|undatable +(adj)|timeless|unaltered |unchanged +dateline|3 +(noun)|date line|International Date Line|meridian|longitude|line of longitude +(noun)|line +(verb)|datemark|date-mark|date +datemark|1 +(verb)|dateline|date-mark|date +dating|1 +(noun)|geological dating|chemical analysis|qualitative analysis +dative|1 +(noun)|dative case|oblique|oblique case +dative bond|1 +(noun)|coordinate bond|covalent bond +dative case|1 +(noun)|dative|oblique|oblique case +datril|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +datum|1 +(noun)|data point|information +datura|1 +(noun)|Datura|genus Datura|asterid dicot genus +datura arborea|1 +(noun)|angel's trumpet|maikoa|Brugmansia arborea|Datura arborea|shrub|bush +datura sanguinea|1 +(noun)|red angel's trumpet|Brugmansia sanguinea|Datura sanguinea|shrub|bush +datura stramonium|1 +(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple +datura suaveolens|1 +(noun)|angel's trumpet|Brugmansia suaveolens|Datura suaveolens|shrub|bush +daub|6 +(noun)|clay +(noun)|smudge|spot|blot|smear|smirch|slur|blemish|defect|mar +(noun)|painting|picture +(verb)|plaster|coat|surface +(verb)|put on|apply +(verb)|smear|cover +daubed|1 +(adj)|beplastered|besmeared|covered +daubentonia|1 +(noun)|Daubentonia|genus Daubentonia|mammal genus +daubentonia madagascariensis|1 +(noun)|aye-aye|Daubentonia madagascariensis|lemur +daubentoniidae|1 +(noun)|Daubentoniidae|family Daubentoniidae|mammal family|Lemuroidea|suborder Lemuroidea +dauber|1 +(noun)|painter +daubing|1 +(noun)|plastering|application|coating|covering +daucus|1 +(noun)|Daucus|genus Daucus|rosid dicot genus +daucus carota|1 +(noun)|wild carrot|Queen Anne's lace|Daucus carota|wildflower|wild flower +daucus carota sativa|1 +(noun)|carrot|cultivated carrot|Daucus carota sativa|herb|herbaceous plant +daugavpils|1 +(noun)|Daugavpils|city|metropolis|urban center +daughter|1 +(noun)|girl|female offspring +daughter-in-law|1 +(noun)|in-law|relative-in-law +daughter cell|1 +(noun)|cell +daughterly|1 +(adj)|filial +daumier|1 +(noun)|Daumier|Honore Daumier|painter|lithographer +daunt|1 +(verb)|dash|scare off|pall|frighten off|scare away|frighten away|scare|intimidate|restrain +daunted|1 +(adj)|bothered|fazed|discomposed +daunting|1 +(adj)|intimidating|discouraging +dauntless|1 +(adj)|audacious|brave|fearless|intrepid|unfearing|bold +dauntlessly|1 +(adv)|fearlessly|intrepidly +dauntlessness|1 +(noun)|intrepidity|courage|courageousness|bravery +dauphin|1 +(noun)|prince +davalia bullata|1 +(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia +davalia bullata mariesii|1 +(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia +davallia|1 +(noun)|fern +davallia canariensis|1 +(noun)|Canary Island hare's foot fern|Davallia canariensis|hare's-foot fern +davallia mariesii|1 +(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia +davallia pyxidata|1 +(noun)|Australian hare's foot|Davallia pyxidata|hare's-foot fern +davalliaceae|1 +(noun)|Davalliaceae|family Davalliaceae|fern family +davenport|3 +(noun)|Davenport|city|metropolis|urban center +(noun)|desk +(noun)|convertible|sofa bed +david|3 +(noun)|David|Saint David|St. David|patron saint +(noun)|David|Jacques Louis David|painter +(noun)|David|king|male monarch +david alfaro siqueiros|1 +(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter +david barnard steinman|1 +(noun)|Steinman|David Barnard Steinman|civil engineer +david ben gurion|1 +(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman|solon|national leader +david bruce|1 +(noun)|Bruce|David Bruce|Sir David Bruce|doctor|doc|physician|MD|Dr.|medico|bacteriologist +david bushnell|1 +(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor|discoverer|artificer +david crockett|1 +(noun)|Crockett|Davy Crockett|David Crockett|frontiersman|backwoodsman|mountain man|politician|politico|pol|political leader +david garrick|1 +(noun)|Garrick|David Garrick|actor|histrion|player|thespian|role player +david glasgow farragut|1 +(noun)|Farragut|David Glasgow Farragut|naval officer +david grun|1 +(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman|solon|national leader +david hartley|1 +(noun)|Hartley|David Hartley|philosopher +david herbert lawrence|1 +(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer|author +david hilbert|1 +(noun)|Hilbert|David Hilbert|mathematician +david hubel|1 +(noun)|Hubel|David Hubel|neuroscientist +david hume|1 +(noun)|Hume|David Hume|philosopher +david john moore cornwell|1 +(noun)|le Carre|John le Carre|David John Moore Cornwell|writer|author +david lewelyn wark griffith|1 +(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker|filmmaker|film producer|movie maker +david livingstone|1 +(noun)|Livingstone|David Livingstone|missionary|explorer|adventurer +david low|1 +(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist +david mamet|1 +(noun)|Mamet|David Mamet|dramatist|playwright +david o. selznick|1 +(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker|filmmaker|film producer|movie maker +david oliver selznick|1 +(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker|filmmaker|film producer|movie maker +david ricardo|1 +(noun)|Ricardo|David Ricardo|economist|economic expert +david riesman|1 +(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist +david riesman jr.|1 +(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist +david rittenhouse|1 +(noun)|Rittenhouse|David Rittenhouse|astronomer|uranologist|stargazer +david roland smith|1 +(noun)|Smith|David Smith|David Roland Smith|sculptor|sculpturer|carver|statue maker +david sarnoff|1 +(noun)|Sarnoff|David Sarnoff|businessman|man of affairs +david siqueiros|1 +(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter +david smith|1 +(noun)|Smith|David Smith|David Roland Smith|sculptor|sculpturer|carver|statue maker +davidson's penstemon|1 +(noun)|Davidson's penstemon|Penstemon davidsonii|wildflower|wild flower +daviesia|1 +(noun)|Daviesia|genus Daviesia|rosid dicot genus +davis|6 +(noun)|Davys|John Davys|Davis|John Davis|navigator +(noun)|Davis|Stuart Davis|painter +(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician|jazzman +(noun)|Davis|Jefferson Davis|statesman|solon|national leader +(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player +(noun)|Davis|Bette Davis|actress +davis' birthday|1 +(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day +davis cup|1 +(noun)|Davis Cup|cup|loving cup +davit|1 +(noun)|crane +davy|1 +(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist +davy's gray|1 +(noun)|iron blue|steel gray|Davy's gray|gray|grayness|grey|greyness +davy crockett|1 +(noun)|Crockett|Davy Crockett|David Crockett|frontiersman|backwoodsman|mountain man|politician|politico|pol|political leader +davy jones|1 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed|bottom +davy jones's locker|1 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed|bottom +davy lamp|1 +(noun)|safety lamp|Davy lamp|oil lamp|kerosene lamp|kerosine lamp +davys|2 +(noun)|Davys|John Davys|Davis|John Davis|navigator +(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist +daw|1 +(noun)|jackdaw|Corvus monedula|corvine bird +dawah|1 +(noun)|da'wah|mission|missionary work +dawdle|3 +(verb)|linger|move +(verb)|dally|act|behave|do +(verb)|lag|fall back|fall behind|follow +dawdler|1 +(noun)|drone|laggard|lagger|trailer|idler|loafer|do-nothing|layabout|bum +dawdling|1 +(noun)|dalliance|trifling|wasting time|delay|holdup +dawes|1 +(noun)|Dawes|William Dawes|American Revolutionary leader +dawn|6 +(noun)|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +(noun)|morning|start +(noun)|time period|period of time|period +(verb)|click|get through|come home|get across|sink in|penetrate|fall into place +(verb)|begin|start +(verb)|change +dawn horse|1 +(noun)|eohippus|horse|Equus caballus +dawn redwood|1 +(noun)|metasequoia|Metasequoia glyptostrodoides|conifer|coniferous tree +dawning|1 +(noun)|dawn|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +dawson|1 +(noun)|Dawson|town +dawson's encephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +day|10 +(noun)|twenty-four hours|solar day|mean solar day|time unit|unit of time +(noun)|time +(noun)|daytime|daylight|time period|period of time|period +(noun)|calendar day|civil day +(noun)|work time +(noun)|era|epoch +(noun)|opportunity|chance +(noun)|time period|period of time|period +(noun)|sidereal day|time unit|unit of time|sidereal time +(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer|author +day-after-day|1 +(adj)|daily|day-to-day|every day|regular +day-and-night|1 +(adj)|around-the-clock|nonstop|round-the-clock|continuous |uninterrupted +day-old|1 +(adj)|stale +day-to-day|1 +(adj)|daily|day-after-day|every day|regular +day after day|1 +(adv)|day in day out +day bed|3 +(noun)|studio couch|convertible|sofa bed +(noun)|daybed|divan bed|sofa|couch|lounge +(noun)|chaise longue|chaise|daybed|chair +day blindness|1 +(noun)|hemeralopia|visual impairment|visual defect|vision defect|visual disorder +day boarder|1 +(noun)|schoolchild|school-age child|pupil +day book|3 +(noun)|blotter|police blotter|rap sheet|charge sheet|written record|written account +(noun)|daybook|journal|ledger|leger|account book|book of account|book +(noun)|daybook|ledger|journal +day by day|1 +(adv)|daily +day camp|1 +(noun)|camp|summer camp +day care|2 +(noun)|daycare|childcare|child care +(noun)| +day care center|1 +(noun)|day nursery|nursery|baby's room +day game|1 +(noun)|outdoor game +day in and day out|1 +(adv)|all the time +day in day out|1 +(adv)|day after day +day jessamine|1 +(noun)|Cestrum diurnum|shrub|bush +day laborer|1 +(noun)|day labourer|laborer|manual laborer|labourer|jack +day labourer|1 +(noun)|day laborer|laborer|manual laborer|labourer|jack +day lily|3 +(noun)|plantain lily|herb|herbaceous plant +(noun)|daylily|liliaceous plant +(noun)| +day nursery|1 +(noun)|day care center|nursery|baby's room +day of atonement|1 +(noun)|Yom Kippur|Day of Atonement|High Holy Day|High Holiday +day of judgement|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +day of judgment|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +day of reckoning|2 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|doomsday|crack of doom|end of the world|day +(noun)|doom|doomsday|end of the world|destiny|fate +day of remembrance|1 +(noun)|anniversary|day +day of rest|1 +(noun)|rest day|day of the week +day of the month|1 +(noun)|date|day|twenty-four hours|solar day|mean solar day +day of the week|1 +(noun)|calendar day|civil day +day off|1 +(noun)|time off +day return|1 +(noun)|round-trip ticket|return ticket +day school|3 +(noun)|private school +(noun)|school +(noun)|school|schoolhouse +day shift|2 +(noun)|shift|work shift|duty period +(noun)|day watch|shift +day watch|1 +(noun)|day shift|shift +dayan|1 +(noun)|Dayan|Moshe Dayan|general|full general|statesman|solon|national leader +daybed|2 +(noun)|divan bed|sofa|couch|lounge +(noun)|chaise longue|chaise|chair +daybook|2 +(noun)|journal|ledger|leger|account book|book of account|book +(noun)|ledger|journal +dayboy|1 +(noun)|day boarder +daybreak|1 +(noun)|dawn|dawning|morning|aurora|first light|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +daycare|1 +(noun)|day care|childcare|child care +daydream|3 +(noun)|reverie|revery|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream|dreaming +(verb)|dream|woolgather|stargaze|imagine|conceive of|ideate|envisage +(verb)|moon|idle|laze|slug|stagnate +daydreamer|1 +(noun)|woolgatherer|idler|loafer|do-nothing|layabout|bum +daydreaming|1 +(noun)|reverie|revery|daydream|oneirism|air castle|castle in the air|castle in Spain|dream|dreaming +dayflower|1 +(noun)|spiderwort|herb|herbaceous plant +dayfly|1 +(noun)|mayfly|shadfly|ephemerid|ephemeropteran +daygirl|1 +(noun)|day boarder +daylight|2 +(noun)|day|daytime|time period|period of time|period +(noun)|light|visible light|visible radiation +daylight-saving time|1 +(noun)|daylight-savings time|daylight saving|daylight savings|time +daylight-savings time|2 +(noun)|daylight-saving time|daylight saving|daylight savings|time +(noun)|daylight-saving time|daylight saving|daylight savings|time +daylight saving|1 +(noun)|daylight-saving time|daylight-savings time|daylight savings|time +daylight savings|2 +(noun)|daylight-saving time|daylight-savings time|daylight saving|time +(noun)|daylight-saving time|daylight-savings time|daylight saving|time +daylight vision|1 +(noun)|photopic vision|sight|vision|visual sense|visual modality +daylily|1 +(noun)|day lily|liliaceous plant +daylong|2 +(adj)|long +(adv)|all day long +daypro|1 +(noun)|oxaprozin|Daypro|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +days|11 +(noun)|years|life +(noun)|day|twenty-four hours|solar day|mean solar day|time unit|unit of time +(noun)|day|time +(noun)|day|daytime|daylight|time period|period of time|period +(noun)|day|calendar day|civil day +(noun)|day|work time +(noun)|day|era|epoch +(noun)|day|opportunity|chance +(noun)|day|time period|period of time|period +(noun)|sidereal day|day|time unit|unit of time|sidereal time +(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer|author +dayspring|1 +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|sunrise|sunup|cockcrow|hour|time of day +daystar|1 +(noun)|morning star|Phosphorus|planet +daytime|2 +(adj)|daytime |diurnal +(noun)|day|daylight|time period|period of time|period +dayton|1 +(noun)|Dayton|city|metropolis|urban center +dayton ax|1 +(noun)|common ax|common axe|Dayton ax|Dayton axe|ax|axe +dayton axe|1 +(noun)|common ax|common axe|Dayton ax|Dayton axe|ax|axe +daytona beach|1 +(noun)|Daytona Beach|town +daze|4 +(noun)|shock|stupor|stupefaction +(noun)|fog|haze|confusion|mental confusion|confusedness|disarray +(verb)|dazzle|bedazzle|blind +(verb)|stun|bedaze|desensitize|desensitise +dazed|2 +(adj)|stunned|stupefied|stupid|confused +(adj)|foggy|groggy|logy|stuporous|lethargic |unergetic +dazedly|1 +(adv)|torpidly +dazzle|3 +(noun)|brightness +(verb)|bedazzle|daze|blind +(verb)|amaze|astonish|astound +dazzled|2 +(adj)|blind |unsighted +(adj)|confused +dazzling|2 +(adj)|eye-popping|fulgurant|fulgurous|impressive +(adj)|blazing|blinding|fulgent|glaring|glary|bright +db|1 +(noun)|decibel|dB|sound unit +dbms|1 +(noun)|database management system|DBMS|software|software system|software package|package +dc|2 +(noun)|District of Columbia|D.C.|DC|federal district +(noun)|direct current|DC|electricity|electrical energy +dccp|1 +(noun)|United Nations Office for Drug Control and Crime Prevention|DCCP|United Nations agency|UN agency +dci|1 +(noun)|Director of Central Intelligence|DCI|administrator|executive +dd|1 +(noun)|Doctor of Divinity|DD|doctor's degree|doctorate +dds|2 +(noun)|Doctor of Dental Surgery|DDS|doctor's degree|doctorate +(noun)|Doctor of Divinity|DD|doctor's degree|doctorate +ddt|1 +(noun)|dichlorodiphenyltrichloroethane|DDT|insecticide|insect powder|pollutant +de|1 +(noun)|Delaware|Diamond State|First State|DE|American state +de-access|1 +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +de-emphasise|1 +(verb)|de-emphasize|destress|change|alter|modify +de-emphasize|1 +(verb)|de-emphasise|destress|change|alter|modify +de-energise|1 +(verb)|de-energize|weaken +de-energize|1 +(verb)|de-energise|weaken +de-escalate|2 +(verb)|decrease|diminish|lessen|fall +(verb)|weaken|step down|decrease|lessen|minify +de-escalation|1 +(noun)|decrease|diminution|reduction|step-down +de-ice|2 +(verb)|defrost|deice|dissolve|thaw|unfreeze|unthaw|dethaw|melt +(verb)| +de-iodinase|1 +(noun)|enzyme +de-iodinate|1 +(verb)|remove|take|take away|withdraw +de-iodinating|1 +(adj)|de-iodinating +de-iodination|1 +(noun)|chemical process|chemical change|chemical action +de-ionate|1 +(verb)|remove|take|take away|withdraw +de-nazification|2 +(noun)|denazification|de-Nazification|social process +(noun)| +de-stalinisation|2 +(noun)|destalinization|de-Stalinization|destalinisation|de-Stalinisation|social process +(noun)| +de-stalinization|2 +(noun)|destalinization|de-Stalinization|destalinisation|de-Stalinisation|social process +(noun)| +de bakey|1 +(noun)|De Bakey|Michael Ellis De Bakey|surgeon|operating surgeon|sawbones +de broglie|1 +(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist +de facto|1 +(adj)|de facto |actual|factual +de facto segregation|1 +(noun)|segregation|separatism +de forest|1 +(noun)|De Forest|Lee De Forest|The Father of Radio|electrical engineer|inventor|discoverer|artificer +de gaulle|1 +(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general|full general|statesman|solon|national leader +de jure|2 +(adj)|de jure +(adv)|legally|lawfully|wrongfully +de jure segregation|1 +(noun)|segregation|separatism +de kooning|1 +(noun)|de Kooning|Willem de Kooning|painter +de l'orme|1 +(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect|designer +de la mare|1 +(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet +de luxe|2 +(adj)|deluxe|luxe|luxury|elegant +(adj)|deluxe|gilded|luxurious|opulent|princely|sumptuous|rich +de mille|2 +(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer|professional dancer|choreographer +(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker|filmmaker|film producer|movie maker +de niro|1 +(noun)|De Niro|Robert De Niro|actor|histrion|player|thespian|role player +de quincey|1 +(noun)|De Quincey|Thomas De Quincey|writer|author +de rigueur|1 +(adj)|obligatory +de sade|1 +(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer|author +de saussure|1 +(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist|polyglot +de sica|1 +(noun)|De Sica|Vittorio De Sica|film maker|filmmaker|film producer|movie maker +de spinoza|1 +(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher +de trop|1 +(adj)|a bit much|too much|immoderate +de valera|1 +(noun)|de Valera|Eamon de Valera|statesman|solon|national leader +de vries|2 +(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist|phytologist|plant scientist +(noun)| +dea|1 +(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency +deaccession|1 +(verb)|sell +deacon|2 +(noun)|Protestant deacon|church officer +(noun)|clergyman|reverend|man of the cloth|holy order|order +deaconess|1 +(noun)|deacon|Protestant deacon +deactivate|2 +(verb)|discharge|muster out +(verb)|inactivate|change|alter|modify +deactivation|2 +(noun)|inactivation|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +(noun)|defusing|termination|ending|conclusion +dead|25 +(adj)|dead |asleep|at peace|at rest|deceased|departed|gone|assassinated|bloodless|exsanguine|exsanguinous|brain dead|breathless|inanimate|pulseless|cold|deathlike|deathly|defunct|d.o.a.|doomed|executed|fallen|late|lifeless|exanimate|murdered|slain|stillborn|stone-dead|nonviable +(adj)|dead |barren|lifeless|out of play|extinct|out +(adj)|all in|beat|bushed|tired +(adj)|precise +(adj)|extinct |inactive +(adj)|utter|absolute +(adj)|inanimate |nonliving|nonconscious +(adj)|numb|insensitive +(adj)|deadened|insensitive +(adj)|unreverberant |nonresonant +(adj)|idle|unprofitable +(adj)|stagnant|standing +(adj)|malfunctioning |nonfunctional +(adj)|extinct |nonextant +(adj)|inelastic +(adj)|defunct|inoperative +(adj)|noncurrent +(adj)|complete +(adj)|drained|uncharged +(adj)|lifeless|unanimated +(adj)|inactive +(noun)|people +(noun)|time +(adv)|abruptly|suddenly|short +(adv)|absolutely|perfectly|utterly +dead-air space|1 +(noun)|area +dead-end|1 +(adj)|inactive +dead-end street|1 +(noun)|blind alley|cul de sac|impasse|thoroughfare +dead-man's-fingers|1 +(noun)|dead-men's-fingers|Xylaria polymorpha|fungus +dead-man's float|1 +(noun)|prone float|floating +dead-men's-fingers|1 +(noun)|dead-man's-fingers|Xylaria polymorpha|fungus +dead-on|1 +(adj)|accurate +dead air|1 +(noun)|pause|intermission|break|interruption|suspension +dead animal|1 +(noun)|animal|animate being|beast|brute|creature|fauna +dead axle|1 +(noun)|axle +dead body|1 +(noun)|body|natural object +dead center|1 +(noun)|dead centre|position|spatial relation +dead centre|1 +(noun)|dead center|position|spatial relation +dead drop|1 +(noun)|drop +dead duck|1 +(noun)|failure +dead end|2 +(noun)|cul|cul de sac|passage +(noun)|deadlock|impasse|stalemate|standstill|situation +dead hand|2 +(noun)|mortmain|real property|real estate|realty +(noun)|dead hand of the past|mortmain|influence +dead hand of the past|1 +(noun)|dead hand|mortmain|influence +dead heat|1 +(noun)|draw|standoff|tie +dead language|1 +(noun)|language|linguistic communication +dead letter|2 +(noun)|non-issue|state +(noun)|dead mail|letter|missive +dead load|1 +(noun)|load|loading|burden +dead mail|1 +(noun)|dead letter|letter|missive +dead march|1 +(noun)|funeral march|processional march|recessional march +dead metaphor|1 +(noun)|frozen metaphor|metaphor +dead nettle|4 +(noun)|hedge nettle|Stachys sylvatica|herb|herbaceous plant +(noun)|herb|herbaceous plant +(noun)|hemp nettle|Galeopsis tetrahit|herb|herbaceous plant +(noun)|richweed|clearweed|Pilea pumilla|nettle +dead on target|1 +(adj)|true|accurate +dead person|1 +(noun)|dead soul|deceased person|deceased|decedent|departed|person|individual|someone|somebody|mortal|human|soul +dead reckoning|2 +(noun)|guess|guesswork|guessing|shot|estimate|estimation|approximation|idea +(noun)|navigation|pilotage|piloting +dead ringer|1 +(noun)|ringer|clone|double|image|look-alike +dead room|1 +(noun)|morgue|mortuary|building|edifice +dead sea|1 +(noun)|Dead Sea|lake +dead sea scrolls|1 +(noun)|Dead Sea scrolls|scroll|roll +dead set|1 +(adj)|bent|bent on|intent on|out to|resolute +dead soul|1 +(noun)|dead person|deceased person|deceased|decedent|departed|person|individual|someone|somebody|mortal|human|soul +dead weight|2 +(noun)|burden|load|encumbrance|incumbrance|onus +(noun)|weight +deadbeat|1 +(noun)|defaulter|debtor +deadbeat dad|1 +(noun)|defaulter|deadbeat +deadbolt|1 +(noun)|bolt|bar +deaden|7 +(verb)|dampen|damp|dampen|damp|soften|weaken|break +(verb)|girdle|incise +(verb)|change|alter|modify +(verb)|retard +(verb)|change +(verb)|blunt|change|alter|modify +(verb)|convert +deadened|2 +(adj)|dead|insensitive +(adj)|dull +deadening|2 +(adj)|boring|dull|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting +(noun)|stultification|constipation|impairment|degradation|debasement +deadeye|2 +(noun)|marksman|sharpshooter|crack shot +(noun)|disk|disc +deadhead|2 +(noun)|nonworker +(noun)|public transport +deadlight|1 +(noun)|shutter +deadline|1 +(noun)|point|point in time +deadliness|1 +(noun)|lethality|unwholesomeness|morbidness|morbidity +deadlock|1 +(noun)|dead end|impasse|stalemate|standstill|situation +deadlocked|1 +(adj)|stalemated|obstructed +deadly|8 +(adj)|deathly|mortal|fatal +(adj)|lethal|fatal +(adj)|venomous|virulent|toxic +(adj)|mortal|unpardonable +(adj)|baneful|pernicious|pestilent|noxious |harmful +(adj)|virulent +(adv)|lifelessly +(adv)|madly|insanely|deucedly|devilishly +deadly nightshade|2 +(noun)|belladonna|Atropa belladonna|herb|herbaceous plant +(noun)|bittersweet|bittersweet nightshade|climbing nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade +deadly sin|1 +(noun)|mortal sin|sin|sinning +deadness|2 +(noun)|inelasticity +(noun)|inanimateness|lifelessness +deadpan|1 +(adj)|expressionless|impassive|poker-faced|unexpressive|uncommunicative |incommunicative +deadwood|2 +(noun)|branch +(noun)|fifth wheel|redundancy|redundance +deae cellulose|1 +(noun)|diethylaminoethyl cellulose|DEAE cellulose|cellulose +deaf|4 +(adj)|deaf |deaf-and-dumb|deaf-mute|deafened|hard-of-hearing|hearing-impaired|inattentive|unheeding|unlistening|deaf to|profoundly deaf|stone-deaf|deaf as a post|unhearing|tone-deaf +(adj)|indifferent|heedless |thoughtless|unheeding +(noun)|people +(verb)|deafen|desensitize|desensitise +deaf-aid|1 +(noun)|hearing aid|electronic device +deaf-and-dumb|1 +(adj)|deaf-mute|deaf +deaf-and-dumb person|1 +(noun)|mute|deaf-mute|deaf person +deaf-mute|2 +(adj)|deaf-and-dumb|deaf +(noun)|mute|deaf-and-dumb person|deaf person +deaf-muteness|1 +(noun)|deaf-mutism|deafness|hearing loss|mutism +deaf-mutism|1 +(noun)|deaf-muteness|deafness|hearing loss|mutism +deaf as a post|1 +(adj)|profoundly deaf|stone-deaf|unhearing|deaf +deaf person|1 +(noun)|handicapped person +deaf to|1 +(adj)|inattentive|unheeding|unlistening|deaf +deafen|2 +(verb)|deaf|desensitize|desensitise +(verb)|dampen|damp|soften|weaken|break +deafened|1 +(adj)|deaf +deafening|1 +(adj)|earsplitting|roaring|thunderous|thundery|loud +deafness|1 +(noun)|hearing loss|hearing impairment|hearing disorder +deal|23 +(adj)|woody +(noun)|trade|business deal|transaction|dealing|dealings +(noun)|bargain|agreement|understanding +(noun)|batch|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|board|plank +(noun)|softwood|wood +(noun)|hand|collection|aggregation|accumulation|assemblage +(noun)|result|resultant|final result|outcome|termination +(noun)|distribution +(noun)|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +(verb)|cover|treat|handle|plow|address|broach|initiate +(verb)|act|move +(verb)|consider|take|look at|think about +(verb)|cope|get by|make out|make do|contend|grapple|manage|act|move +(verb)|distribute|administer|mete out|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give +(verb)|sell|trade|transact|deal out|trade +(verb)|manage|care|handle|control|command +(verb)|behave|acquit|bear|deport|conduct|comport|carry +(verb)|distribute|administer|mete out|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +(verb)|conduct|carry on|manage|care|handle +(verb)|share|divvy up|portion out|apportion|distribute|give out|hand out +(verb)|pass|hand|reach|pass on|turn over|give +(verb)|sell|trade +deal out|1 +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|dish out|allot|dole out|give +dealer|5 +(noun)|trader|bargainer|monger|merchant|merchandiser +(noun)|firm|house|business firm +(noun)|seller|marketer|vender|vendor|trafficker +(noun)|principal|financier|moneyman +(noun)|card player +dealership|1 +(noun)|franchise|business|concern|business concern|business organization|business organisation +dealfish|1 +(noun)|Trachipterus arcticus|ribbonfish +dealignment|1 +(noun)|process +dealing|2 +(noun)|treatment|handling +(noun)|transaction|dealings|group action +dealings|5 +(noun)|traffic|interchange|reciprocation|give-and-take +(noun)|relations|social relation +(noun)|transaction|dealing|group action +(noun)|dealing|treatment|handling +(noun)|transaction|dealing|group action +dealt out|1 +(adj)|apportioned|doled out|meted out|parceled out|distributed +deaminate|1 +(verb)|deaminize|change|alter|modify +deamination|1 +(noun)|deaminization|chemical process|chemical change|chemical action +deaminization|1 +(noun)|deamination|chemical process|chemical change|chemical action +deaminize|1 +(verb)|deaminate|change|alter|modify +dean|4 +(noun)|academic administrator +(noun)|Dean|James Dean|James Byron Dean|actor|histrion|player|thespian|role player +(noun)|doyen|elder|senior +(noun)|cardinal +dean acheson|1 +(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman|solon|national leader +dean gooderham acheson|1 +(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman|solon|national leader +dean martin|1 +(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer|vocalist|vocalizer|vocaliser +dean swift|1 +(noun)|Swift|Jonathan Swift|Dean Swift|satirist|ironist|ridiculer +deanery|2 +(noun)|residence +(noun)|deanship|position|post|berth|office|spot|billet|place|situation +deanship|1 +(noun)|deanery|position|post|berth|office|spot|billet|place|situation +dear|8 +(adj)|beloved|darling|loved +(adj)|good|near|close +(adj)|devout|earnest|heartfelt|sincere +(adj)|costly|high-priced|pricey|pricy|expensive +(noun)|beloved|dearest|loved one|honey|love|lover +(noun)|lamb|innocent|inexperienced person +(adv)|dearly|affectionately +(adv)|dearly +dearest|1 +(noun)|beloved|dear|loved one|honey|love|lover +dearie|1 +(noun)|darling|favorite|favourite|pet|deary|ducky|lover +dearly|3 +(adv)|in a heartfelt way +(adv)|dear +(adv)|affectionately|dear +dearly-won|1 +(adj)|costly|expensive +dearness|1 +(noun)|costliness|expensiveness +dearth|2 +(noun)|famine|shortage|lack|deficiency|want +(noun)|paucity|scarcity|scarceness +deary|1 +(noun)|darling|favorite|favourite|pet|dearie|ducky|lover +death|8 +(noun)|decease|change|alteration|modification +(noun)|organic phenomenon +(noun)|last|end|ending +(noun)|Death|imaginary being|imaginary creature +(noun)|state +(noun)|dying|demise|end|ending +(noun)|killing|kill|putting to death +(noun)|end|destruction|state +death's-head moth|1 +(noun)|Acherontia atropos|hawkmoth|hawk moth|sphingid|sphinx moth|hummingbird moth +death's head|1 +(noun)|symbol|symbolization|symbolisation|symbolic representation +death-roll|1 +(noun)|roll|roster +death adder|1 +(noun)|Acanthophis antarcticus|elapid|elapid snake +death angel|1 +(noun)|death cap|death cup|destroying angel|Amanita phalloides|agaric +death bell|1 +(noun)|death knell|bell +death benefit|1 +(noun)|benefit +death camas|1 +(noun)|zigadene|liliaceous plant +death camp|1 +(noun)|concentration camp|stockade +death cap|1 +(noun)|death cup|death angel|destroying angel|Amanita phalloides|agaric +death chair|1 +(noun)|electric chair|chair|hot seat|instrument of execution +death chamber|1 +(noun)|gas chamber|instrument of execution +death cup|1 +(noun)|death cap|death angel|destroying angel|Amanita phalloides|agaric +death duty|1 +(noun)|inheritance tax|estate tax|death tax|transfer tax +death house|1 +(noun)|death row|cellblock|ward +death instinct|1 +(noun)|death wish|urge|impulse +death knell|2 +(noun)|omen|portent|presage|prognostic|prognostication|prodigy +(noun)|death bell|bell +death mask|1 +(noun)|cast|casting +death penalty|1 +(noun)|execution|executing|capital punishment|corporal punishment +death rate|2 +(noun)|deathrate|morbidity|mortality|mortality rate|fatality rate|rate +(noun)| +death row|1 +(noun)|death house|cellblock|ward +death seat|1 +(noun)|car seat +death squad|1 +(noun)|hit squad +death tax|1 +(noun)|inheritance tax|estate tax|death duty|transfer tax +death toll|1 +(noun)|price|cost|toll +death valley|1 +(noun)|Death Valley|desert +death warrant|1 +(noun)|warrant +death wish|1 +(noun)|death instinct|urge|impulse +deathbed|2 +(noun)|time of life +(noun)|bed +deathblow|1 +(noun)|coup de grace|killing|kill|putting to death +deathless|1 +(adj)|undying|immortal +deathlike|1 +(adj)|deathly|dead +deathly|2 +(adj)|deathlike|dead +(adj)|deadly|mortal|fatal +deathrate|1 +(noun)|death rate|morbidity|mortality|mortality rate|fatality rate|rate +deathtrap|1 +(noun)|structure|construction +deathwatch|2 +(noun)|booklouse|book louse|Liposcelis divinatorius|psocopterous insect +(noun)|deathwatch beetle|Xestobium rufovillosum|beetle +deathwatch beetle|1 +(noun)|deathwatch|Xestobium rufovillosum|beetle +deb|1 +(noun)|debutante|woman|adult female +debacle|3 +(noun)|fiasco|collapse +(noun)|flood|inundation|deluge|alluvion +(noun)|thrashing|walloping|drubbing|slaughter|trouncing|whipping|defeat|licking +debar|3 +(verb)|suspend|expel|throw out|kick out +(verb)|obviate|deflect|avert|head off|stave off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +(verb)|bar|exclude|forbid|prohibit|interdict|proscribe|veto|disallow +debark|1 +(verb)|disembark|set down|land|set down +debarkation|1 +(noun)|disembarkation|disembarkment|landing +debarment|2 +(noun)|exclusion +(noun)|prevention|bar +debase|3 +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|alloy|devalue +(verb)|adulterate|stretch|dilute|corrupt|spoil +debased|3 +(adj)|adulterate|adulterated|impure +(adj)|devalued|degraded|low +(adj)|corrupted|vitiated|corrupt +debasement|2 +(noun)|adulteration|impurity|impureness +(noun)|degradation|change of state +debaser|1 +(noun)|degrader|person|individual|someone|somebody|mortal|human|soul +debasing|1 +(adj)|degrading|dishonorable |dishonourable +debatable|3 +(adj)|problematic|problematical|questionable +(adj)|arguable|disputable|moot|controversial +(adj)|disputable|contestable +debate|6 +(noun)|argument|argumentation|discussion|give-and-take|word +(noun)|disputation|public debate|public speaking|speechmaking|speaking|oral presentation +(verb)|consider|moot|turn over|deliberate +(verb)|consider|moot|turn over|deliberate|hash out|discuss|talk over +(verb)|deliberate|hash out|discuss|talk over +(verb)|argue|contend|fence|converse|discourse +debater|1 +(noun)|arguer|disputant|controversialist|eristic +debauch|2 +(noun)|orgy|debauchery|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel|revelry +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debase|profane|vitiate|deprave|misdirect|change|alter|modify +debauched|1 +(adj)|degenerate|degraded|dissipated|dissolute|libertine|profligate|riotous|fast|immoral +debauchee|1 +(noun)|libertine|rounder|bad person +debaucher|1 +(noun)|violator|ravisher|libertine|debauchee|rounder +debauchery|1 +(noun)|orgy|debauch|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel|revelry +debenture|2 +(noun)|unsecured bond|debenture bond|bond|bond certificate +(noun)|legal document|legal instrument|official document|instrument +debenture bond|1 +(noun)|unsecured bond|debenture|bond|bond certificate +debile|1 +(adj)|decrepit|feeble|infirm|sapless|weak|weakly|frail +debilitate|1 +(verb)|enfeeble|drain|weaken +debilitated|2 +(adj)|adynamic|asthenic|enervated|weak +(adj)|enfeebled|infirm|seedy|unhealthy +debilitating|1 +(adj)|debilitating |debilitative|enervating|enfeebling|weakening|draining|exhausting +debilitation|1 +(noun)|enervation|enfeeblement|exhaustion|weakening +debilitative|1 +(adj)|enervating|enfeebling|weakening|debilitating +debility|1 +(noun)|infirmity|frailty|feebleness|frailness|unfitness|poor shape|bad condition +debit|2 +(noun)|debit entry|entry|accounting entry|ledger entry +(verb)|account|calculate +debit card|1 +(noun)|open-end credit|revolving credit|charge account credit|positive identification +debit entry|1 +(noun)|debit|entry|accounting entry|ledger entry +debit side|1 +(noun)|accounting|accounting system|method of accounting +debonair|2 +(adj)|debonaire|debonnaire|suave|refined +(adj)|chipper|debonaire|jaunty|cheerful +debonaire|2 +(adj)|debonair|debonnaire|suave|refined +(adj)|chipper|debonair|jaunty|cheerful +debone|1 +(verb)|bone|remove|take|take away|withdraw +deboned|1 +(adj)|boned|boneless +debonnaire|1 +(adj)|debonair|debonaire|suave|refined +debouch|2 +(verb)|march out|march|process +(verb)|issue|emerge|come out|come forth|go forth|egress +debridement|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +debrief|1 +(verb)|question|query +debriefing|1 +(noun)|report|account|interrogation|examination|interrogatory +debris|1 +(noun)|dust|junk|rubble|detritus|rubbish|trash|scrap +debris storm|1 +(noun)|debris surge|rush|spate|surge|upsurge +debris surge|1 +(noun)|debris storm|rush|spate|surge|upsurge +debs|2 +(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer|organiser|labor organizer +(noun)|debutante|deb|woman|adult female +debt|3 +(noun)|indebtedness|liability|financial obligation +(noun)|liabilities +(noun)|obligation +debt ceiling|1 +(noun)|debt limit|debt +debt instrument|1 +(noun)|certificate of indebtedness|document +debt limit|1 +(noun)|debt ceiling|debt +debtor|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +debug|1 +(verb)|correct|rectify|right +debugger|1 +(noun)|program|programme|computer program|computer programme +debunk|1 +(verb)|expose|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +debunking|1 +(noun)|repudiation|exposure +debussy|1 +(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer +debut|5 +(noun)|introduction|first appearance|launching|unveiling|entry|beginning|start|commencement +(noun)|presentation|introduction|intro +(verb)|introduce|innovate +(verb)|play +(verb)|perform +debutante|1 +(noun)|deb|woman|adult female +dec|2 +(noun)|December|Dec|Gregorian calendar month +(noun)|declination|celestial latitude|DEC|angular distance +dec 24|1 +(noun)|Christmas Eve|Dec 24|holiday +dec 25|1 +(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday|national holiday|holy day of obligation|quarter day|feast day|fete day +decade|2 +(noun)|decennary|decennium|time period|period of time|period +(noun)|ten|10|X|tenner|large integer +decadence|1 +(noun)|degeneracy|degeneration|decadency|abasement|degradation|abjection +decadency|1 +(noun)|degeneracy|degeneration|decadence|abasement|degradation|abjection +decadent|2 +(adj)|effete|indulgent +(noun)|bad person +decadron|1 +(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +decaf|1 +(noun)|decaffeinated coffee|coffee|java +decaffeinated coffee|1 +(noun)|decaf|coffee|java +decagon|1 +(noun)|polygon|polygonal shape +decagram|1 +(noun)|dekagram|dkg|dag|metric weight unit|weight unit +decahedron|1 +(noun)|polyhedron +decal|2 +(noun)|decalcomania|design|pattern|figure|transfer paper +(noun)|decalcomania|art|artistic creation|artistic production +decalcification|1 +(noun)|chemical process|chemical change|chemical action +decalcify|2 +(verb)|change +(verb)|remove|take|take away|withdraw +decalcomania|2 +(noun)|decal|design|pattern|figure|transfer paper +(noun)|decal|art|artistic creation|artistic production +decalescence|1 +(noun)|physical phenomenon +decaliter|1 +(noun)|dekaliter|dekalitre|decalitre|dal|dkl|metric capacity unit +decalitre|1 +(noun)|dekaliter|dekalitre|decaliter|dal|dkl|metric capacity unit +decalogue|1 +(noun)|Decalogue|Ten Commandments|commandment +decameter|1 +(noun)|dekameter|decametre|dekametre|dam|dkm|metric linear unit +decametre|1 +(noun)|decameter|dekameter|dekametre|dam|dkm|metric linear unit +decamp|3 +(verb)|break camp|depart|take leave|quit +(verb)|abscond|bolt|absquatulate|run off|go off|flee|fly|take flight +(verb)|skip|vamoose|leave|go forth|go away +decampment|2 +(noun)|abscondment|desertion|abandonment|defection +(noun)|withdrawal +decanedioic acid|1 +(noun)|sebacic acid|carboxylic acid +decanoic acid|1 +(noun)|capric acid|saturated fatty acid +decant|1 +(verb)|pour|pour out|pour +decanter|1 +(noun)|carafe|bottle +decapitate|1 +(verb)|behead|kill +decapitated|1 +(adj)|beheaded|headless +decapitation|2 +(noun)|beheading|execution|executing|capital punishment|death penalty +(noun)|beheading|killing|kill|putting to death +decapod|2 +(noun)|decapod crustacean|crustacean +(noun)|cephalopod|cephalopod mollusk +decapod crustacean|1 +(noun)|decapod|crustacean +decapoda|2 +(noun)|Decapoda|order Decapoda|animal order +(noun)|Decapoda|order Decapoda|animal order +decapterus|1 +(noun)|Decapterus|genus Decapterus|fish genus +decapterus macarellus|1 +(noun)|mackerel scad|mackerel shad|Decapterus macarellus|scad +decapterus punctatus|1 +(noun)|round scad|cigarfish|quiaquia|Decapterus punctatus|scad +decarbonise|1 +(verb)|decarbonize|decarburize|decarburise|decoke|remove|take|take away|withdraw +decarbonize|1 +(verb)|decarbonise|decarburize|decarburise|decoke|remove|take|take away|withdraw +decarboxylase|1 +(noun)|enzyme +decarboxylate|2 +(verb)|change +(verb)|change|alter|modify +decarboxylation|1 +(noun)|chemical process|chemical change|chemical action +decarburise|1 +(verb)|decarbonize|decarbonise|decarburize|decoke|remove|take|take away|withdraw +decarburize|1 +(verb)|decarbonize|decarbonise|decarburise|decoke|remove|take|take away|withdraw +decasyllabic|1 +(adj)|syllabic +decasyllable|1 +(noun)|verse|verse line +decathlon|1 +(noun)|athletic contest|athletic competition|athletics +decatur|3 +(noun)|Decatur|Stephen Decatur|naval officer +(noun)|Decatur|city|metropolis|urban center +(noun)|Decatur|town +decay|8 +(noun)|natural process|natural action|action|activity +(noun)|decline|decrease|decrement +(noun)|decomposition|organic phenomenon +(noun)|unsoundness +(noun)|radioactive decay|disintegration|nuclear reaction +(verb)|disintegrate|decompose|change integrity +(verb)|crumble|delapidate|change +(verb)|change +decayable|1 +(adj)|putrescible|putrefiable|spoilable|perishable +decayed|2 +(adj)|rotten +(adj)|rotten|rotted|unsound +deccan hemp|2 +(noun)|kenaf|hemp +(noun)|kenaf|kanaf|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +decease|2 +(noun)|death|change|alteration|modification +(verb)|die|perish|go|exit|pass away|expire|pass|change state|turn +deceased|2 +(adj)|asleep|at peace|at rest|departed|gone|dead +(noun)|dead person|dead soul|deceased person|decedent|departed|person|individual|someone|somebody|mortal|human|soul +deceased person|1 +(noun)|dead person|dead soul|deceased|decedent|departed|person|individual|someone|somebody|mortal|human|soul +decedent|1 +(noun)|dead person|dead soul|deceased person|deceased|departed|person|individual|someone|somebody|mortal|human|soul +deceit|3 +(noun)|fraudulence|dishonesty +(noun)|misrepresentation|deception|falsehood|falsity|untruth|false statement +(noun)|deception|dissembling|dissimulation|falsification|misrepresentaation +deceitful|2 +(adj)|fallacious|fraudulent|dishonest |dishonorable +(adj)|ambidextrous|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest |dishonorable +deceitfully|1 +(adv)|dishonestly|venally +deceitfulness|1 +(noun)|craftiness|guile|disingenuousness +deceive|2 +(verb)|lead on|delude|cozen|victimize|victimise +(verb)|betray|lead astray|misinform|mislead +deceiver|1 +(noun)|cheat|cheater|trickster|beguiler|slicker|wrongdoer|offender +deceivingly|1 +(adv)|deceptively|misleadingly +decelerate|2 +(verb)|slow|slow down|slow up|retard|decrease|diminish|lessen|fall +(verb)|slow down|modify|qualify +deceleration|1 +(noun)|slowing|retardation|speed|swiftness|fastness +december|1 +(noun)|December|Dec|Gregorian calendar month +december 31|1 +(noun)|New Year's Eve|December 31|day +december 8|1 +(noun)|Immaculate Conception|December 8|holy day of obligation +decency|2 +(noun)|propriety|properness|correctitude +(noun)|respectability|reputability +decennary|1 +(noun)|decade|decennium|time period|period of time|period +decennium|1 +(noun)|decade|decennary|time period|period of time|period +decent|7 +(adj)|nice|respectable +(adj)|becoming|comely|comme il faut|decorous|seemly|proper +(adj)|decent |clean|unobjectionable|decorous|proper +(adj)|adequate|enough|sufficient +(adj)|modest +(adj)|modest +(adv)|properly|decently|in good order|right|the right way +decentalisation|1 +(noun)|decentralization|social process +decently|1 +(adv)|properly|decent|in good order|right|the right way +decentralisation|1 +(noun)|decentralization|spread|spreading +decentralise|1 +(verb)|decentralize|deconcentrate|change|alter|modify +decentralised|1 +(adj)|decentralized |localized|localised|redistributed|suburbanized|suburbanised +decentralising|1 +(adj)|decentralizing |centrifugal|dispersive|distributive +decentralization|2 +(noun)|decentalisation|social process +(noun)|decentralisation|spread|spreading +decentralize|1 +(verb)|deconcentrate|decentralise|change|alter|modify +decentralized|1 +(adj)|decentralized |decentralised|localized|localised|redistributed|suburbanized|suburbanised +decentralizing|1 +(adj)|decentralizing |centrifugal|dispersive|distributive +deception|3 +(noun)|misrepresentation|deceit|falsehood|falsity|untruth|false statement +(noun)|deceit|dissembling|dissimulation|falsification|misrepresentaation +(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|illusion|performance +deceptive|2 +(adj)|delusory|unreal +(adj)|misleading|dishonest |dishonorable +deceptively|1 +(adv)|deceivingly|misleadingly +deceptiveness|1 +(noun)|obliquity|dishonesty +decertify|1 +(verb)|derecognize|derecognise +decibel|1 +(noun)|dB|sound unit +decide|4 +(verb)|make up one's mind|determine +(verb)|settle|resolve|adjudicate|end|terminate +(verb)|induce|stimulate|cause|have|get|make +(verb)|determine|shape|mold|influence|regulate +decided|1 +(adj)|distinct|definite +decidedly|1 +(adv)|unquestionably|emphatically|definitely|in spades|by all odds +deciding|2 +(adj)|crucial|determinant|determinative|determining|decisive +(noun)|decision making|higher cognitive process +decidua|1 +(noun)|epithelium|epithelial tissue +deciduous|2 +(adj)|deciduous |broadleaf|broad-leafed|broad-leaved +(adj)|caducous |shed +deciduous holly|1 +(noun)|holly +deciduous plant|1 +(noun)|vascular plant|tracheophyte +deciduous tooth|1 +(noun)|primary tooth|baby tooth|milk tooth|tooth +decigram|1 +(noun)|dg|metric weight unit|weight unit +decile|1 +(noun)|mark|grade|score +deciliter|1 +(noun)|decilitre|dl|metric capacity unit +decilitre|1 +(noun)|deciliter|dl|metric capacity unit +decimal|4 +(adj)|denary|quantitative +(adj)|quantitative +(noun)|decimal fraction|proper fraction +(noun)|number +decimal digit|1 +(noun)|digit|figure +decimal fraction|1 +(noun)|decimal|proper fraction +decimal notation|1 +(noun)|mathematical notation +decimal number system|1 +(noun)|decimal numeration system|decimal system|positional notation|positional representation system +decimal numeration system|1 +(noun)|decimal number system|decimal system|positional notation|positional representation system +decimal point|1 +(noun)|percentage point|mathematical notation +decimal system|1 +(noun)|decimal numeration system|decimal number system|positional notation|positional representation system +decimal system of classification|1 +(noun)|Dewey decimal classification|Dewey decimal system|classification system +decimalisation|1 +(noun)|decimalization|change +decimalise|2 +(verb)|decimalize|change|alter|modify +(verb)|decimalize|convert|change over +decimalization|1 +(noun)|decimalisation|change +decimalize|2 +(verb)|decimalise|change|alter|modify +(verb)|decimalise|convert|change over +decimate|2 +(verb)|kill +(verb)|eliminate|annihilate|extinguish|eradicate|wipe out|carry off|kill +decimation|1 +(noun)|destruction|devastation +decimeter|1 +(noun)|decimetre|dm|metric linear unit +decimetre|1 +(noun)|decimeter|dm|metric linear unit +decimus junius juvenalis|1 +(noun)|Juvenal|Decimus Junius Juvenalis|satirist|ironist|ridiculer +decipher|2 +(verb)|decode|decrypt|rewrite +(verb)|trace|read +decipherable|1 +(adj)|clear|readable|legible +decipherably|1 +(adv)|legibly|readably +deciphered|1 +(adj)|deciphered +decipherer|2 +(noun)|decoder|intellectual|intellect +(noun)|reader +decipherment|1 +(noun)|decoding|decryption|cryptography|coding|secret writing +decision|5 +(noun)|determination|conclusion|judgment|judgement|mind +(noun)|determination|conclusion|choice|selection|option|pick +(noun)|result|resultant|final result|outcome|termination +(noun)|result|resultant|final result|outcome|termination +(noun)|decisiveness|resoluteness|firmness|resolve|resolution +decision maker|1 +(noun)|administrator|head|chief|top dog +decision making|1 +(noun)|deciding|higher cognitive process +decision table|1 +(noun)|multidimensional language +decisive|4 +(adj)|decisive |conclusive|crucial|deciding|determinant|determinative|determining|fateful|fatal|peremptory|conclusive|crucial|important +(adj)|definite +(adj)|decisive |unhesitating|resolute|resolute +(adj)|critical|crucial |important +decisive factor|1 +(noun)|clincher|determinant|determiner|determinative|determining factor|causal factor +decisively|1 +(adv)|resolutely +decisiveness|2 +(noun)|decision|resoluteness|firmness|resolve|resolution +(noun)|finality|conclusiveness|determinateness|definiteness +decius|1 +(noun)|Decius|Roman Emperor|Emperor of Rome +deck|7 +(noun)|platform +(noun)|packet +(noun)|pack of cards|deck of cards|pack +(noun)|porch +(verb)|adorn|decorate|grace|embellish|beautify|be +(verb)|bedight|bedeck|decorate|adorn|grace|ornament|embellish|beautify +(verb)|coldcock|dump|knock down|floor|beat +deck-house|1 +(noun)|superstructure +deck chair|1 +(noun)|beach chair|folding chair +deck of cards|1 +(noun)|pack of cards|deck|pack +deck out|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +deck tennis|1 +(noun)|court game +deck up|1 +(verb)|dress up|fig out|fig up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +decked|1 +(adj)|adorned|bedecked|decked out|clothed |clad +decked out|1 +(adj)|adorned|bedecked|decked|clothed |clad +decker|2 +(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist|playwright|pamphleteer +(noun)|artifact|artefact +deckhand|1 +(noun)|roustabout|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +deckle|2 +(noun)|deckle edge|edge +(noun)|framework|frame|framing +deckle-edged|1 +(adj)|deckled|featheredged|bordered +deckle edge|1 +(noun)|deckle|edge +deckled|1 +(adj)|deckle-edged|featheredged|bordered +declaim|2 +(verb)|recite|perform|execute|do +(verb)|inveigh|protest +declamation|2 +(noun)|oratory +(noun)|recitation +declamatory|1 +(adj)|bombastic|large|orotund|tumid|turgid|rhetorical +declarable|1 +(adj)|acknowledged +declaration|6 +(noun)|statement +(noun)|testimony +(noun)|statement +(noun)|contract|bid|bidding +(noun)|announcement|proclamation|annunciation|statement +(noun)|resolution|resolve|document|written document|papers +declaration of estimated tax|1 +(noun)|estimated tax return|tax return|income tax return|return +declaration of independence|1 +(noun)|Declaration of Independence|resolution|declaration|resolve +declarative|3 +(adj)|declarative +(adj)|indicative|mood|mode|modality +(noun)|indicative mood|indicative|declarative mood|common mood|fact mood|mood|mode|modality +declarative mood|1 +(noun)|indicative mood|indicative|declarative|common mood|fact mood|mood|mode|modality +declarative sentence|1 +(noun)|declaratory sentence|sentence +declaratory|1 +(adj)|declarative +declaratory sentence|1 +(noun)|declarative sentence|sentence +declare|8 +(verb)|state|say|tell +(verb)|announce|state|say|tell +(verb)|affirm|verify|assert|avow|aver|swan|swear +(verb)|adjudge|hold|judge +(verb)|authorize|authorise|pass|clear +(verb)|play +(verb)|state|say|tell +(verb)|proclaim|exclaim|promulgate +declare oneself|1 +(verb)|propose|offer|pop the question|request +declared|2 +(adj)|declared |alleged|announced|proclaimed|asserted|avowed|professed|professed +(adj)|stated|explicit |expressed +declarer|2 +(noun)|contractor|bridge player|hand +(noun)|asserter|affirmer|asseverator|avower|communicator +declassification|1 +(noun)|decrease|diminution|reduction|step-down +declassified|1 +(adj)|unclassified +declassify|1 +(verb)|free|release +declaw|1 +(verb)|take off +declension|4 +(noun)|inflection|inflexion +(noun)|deterioration|decline in quality|worsening|decline|diminution +(noun)|descent|declivity|fall|decline|declination|downslope|slope|incline|side +(noun)|class|category|family +declination|4 +(noun)|decline|condition|status +(noun)|celestial latitude|DEC|angular distance +(noun)|descent|declivity|fall|decline|declension|downslope|slope|incline|side +(noun)|regrets|refusal|acknowledgment|acknowledgement +decline|11 +(noun)|diminution|decrease|decrement +(noun)|declination|condition|status +(noun)|decay|decrease|decrement +(noun)|descent|declivity|fall|declination|declension|downslope|slope|incline|side +(verb)|worsen|change state|turn +(verb)|refuse|reject|pass up|turn down +(verb)|refuse|react|respond +(verb)|go down|wane|decrease|diminish|lessen|fall +(verb)|drop +(verb)|slump|correct|descend|fall|go down|come down +(verb)|inflect +decline in quality|1 +(noun)|deterioration|declension|worsening|decline|diminution +declinometer|1 +(noun)|transit declinometer|measuring instrument|measuring system|measuring device +declivitous|1 +(adj)|downhill|downward-sloping|descending +declivity|1 +(noun)|descent|fall|decline|declination|declension|downslope|slope|incline|side +declomycin|1 +(noun)|demeclocycline hydrochloride|Declomycin|tetracycline|Achromycin +declutch|1 +(verb)|disengage +decoagulant|1 +(noun)|anticoagulant|anticoagulant medication|medicine|medication|medicament|medicinal drug +decoct|3 +(verb)|boil +(verb)|boil down|reduce|concentrate|decrease|diminish|lessen|fall +(verb)|steep|infuse +decoction|1 +(noun)|boiling|stewing|simmering +decoction mashing|1 +(noun)|decoction process|boiling +decoction process|1 +(noun)|decoction mashing|boiling +decode|1 +(verb)|decrypt|decipher|rewrite +decoder|2 +(noun)|decipherer|intellectual|intellect +(noun)|machine +decoding|1 +(noun)|decryption|decipherment|cryptography|coding|secret writing +decoke|1 +(verb)|decarbonize|decarbonise|decarburize|decarburise|remove|take|take away|withdraw +decolletage|1 +(noun)|neckline +decollete|1 +(adj)|low-cut|low-necked|necked +decolonisation|1 +(noun)|decolonization|group action +decolonise|1 +(verb)|decolonize|liberate|set free +decolonization|1 +(noun)|decolonisation|group action +decolonize|1 +(verb)|decolonise|liberate|set free +decolor|1 +(verb)|bleach|bleach out|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +decolorise|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolourise|discolorize|discolourise|discolorise|discolor +decolorize|1 +(verb)|bleach|bleach out|decolor|decolour|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +decolour|1 +(verb)|bleach|bleach out|decolor|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +decolourise|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|discolorize|discolourise|discolorise|discolor +decolourize|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor +decommission|1 +(verb)|recall|call in|call back|withdraw +decomposable|1 +(adj)|analyzable|complex +decompose|3 +(verb)|break up|break down|separate +(verb)|disintegrate|decay|change integrity +(verb)|rot|molder|moulder|decay +decomposed|1 +(adj)|rotten +decomposing|1 +(adj)|moldering|mouldering|rotten +decomposition|5 +(noun)|vector decomposition|vector algebra +(noun)|disintegration|decay +(noun)|decomposition reaction|chemical reaction|reaction +(noun)|decay|organic phenomenon +(noun)|rot|rotting|putrefaction|decay +decomposition reaction|1 +(noun)|decomposition|chemical reaction|reaction +decompositional|1 +(adj)|disintegrative +decompound|1 +(adj)|compound +decompound leaf|1 +(noun)|compound leaf +decompress|3 +(verb)|uncompress|restore|reconstruct +(verb)|depressurize|depressurise|adjust|set|correct +(verb)|relax|loosen up|unbend|unwind|slow down|change state|turn +decompressing|1 +(noun)|decompression|press|pressure|pressing +decompression|2 +(noun)|decoding|decryption|decipherment +(noun)|decompressing|press|pressure|pressing +decompression sickness|1 +(noun)|aeroembolism|air embolism|gas embolism|caisson disease|bends|illness|unwellness|malady|sickness +deconcentrate|1 +(verb)|decentralize|decentralise|change|alter|modify +decongestant|1 +(noun)|medicine|medication|medicament|medicinal drug +deconsecrate|1 +(verb)|desecrate|change by reversal|turn|reverse +deconsecrated|1 +(adj)|desecrated +deconstruct|1 +(verb)|interpret +deconstruction|1 +(noun)|deconstructionism|philosophical doctrine|philosophical theory +deconstructionism|1 +(noun)|deconstruction|philosophical doctrine|philosophical theory +deconstructionist|1 +(adj)|philosophical doctrine|philosophical theory +deconstructivism|1 +(noun)|school +decontaminate|1 +(verb)|cleanse|clean +decontamination|1 +(noun)|removal|remotion +decontrol|1 +(verb)|liberalize|liberalise +decor|1 +(noun)|interior decoration|decoration|ornament|ornamentation +decorate|4 +(verb)|adorn|grace|ornament|embellish|beautify|change|alter|modify +(verb)|deck|adorn|grace|embellish|beautify|be +(verb)|award +(verb)|dress|arrange|set up +decorated|1 +(adj)|adorned |beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|bedaubed|bespectacled|monocled|spectacled|braided|brocaded|embossed|raised|buttony|carbuncled|champleve|cloisonne|crested|plumed|crested|topknotted|tufted|crested|embellished|ornamented|ornate|embroidered|encircled|ringed|wreathed|fancied up|gussied|gussied up|tricked out|feathery|feathered|plumy|frilled|frilly|ruffled|fringed|gilt-edged|hung|inflamed|inlaid|inwrought|laced|mosaic|tessellated|paneled|wainscoted|studded|tapestried|tasseled|tasselled|tufted|enameled|clinquant|tinseled|tinselly|crocketed|mounted|tricked-out|clothed|clad|fancy +decoration|3 +(noun)|ornament|ornamentation|artifact|artefact +(noun)|laurel wreath|medal|medallion|palm|ribbon|award|accolade|honor|honour|laurels +(noun)|change of state +decoration day|1 +(noun)|Memorial Day|Decoration Day|legal holiday|national holiday +decorative|1 +(adj)|cosmetic|ornamental|nonfunctional +decorativeness|1 +(noun)|appearance|visual aspect +decorator|2 +(noun)|interior designer|designer|interior decorator|house decorator|room decorator|specialist|specializer|specialiser +(noun)|ornamentalist|artist|creative person +decorous|2 +(adj)|decorous |in good taste|sedate|staid|proper +(adj)|becoming|comely|comme il faut|decent|seemly|proper +decorousness|1 +(noun)|decorum|propriety|properness|correctitude +decorticate|2 +(verb)|strip +(verb)|remove|take|take away|withdraw +decortication|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +decorum|1 +(noun)|decorousness|propriety|properness|correctitude +decoupage|2 +(noun)|art|fine art +(noun)|art|artistic creation|artistic production +decouple|4 +(verb)|uncouple|disconnect +(verb)|dissociate|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|eliminate|get rid of|do away with +(verb)|eliminate|get rid of|do away with +decoy|3 +(noun)|steerer|deceiver|cheat|cheater|trickster|beguiler|slicker|accomplice|confederate +(noun)|bait|lure|device +(verb)|entice|lure|tempt +decrease|6 +(noun)|lessening|drop-off|change|alteration|modification +(noun)|decrement|process +(noun)|decrement|amount +(noun)|diminution|reduction|step-down|change of magnitude +(verb)|diminish|lessen|fall|change magnitude +(verb)|lessen|minify|change|alter|modify +decreased|1 +(adj)|decreased |reduced|ablated|attenuate|attenuated|faded|weakened|bated|belittled|diminished|small|cut|slashed|diminished|minimized|remittent|shriveled|shrivelled|shrunken|attenuated +decreasing|2 +(adj)|decreasing |abating|subsiding|detractive|diminishing|dwindling|tapering|tapering off|depreciating|depreciative|depreciatory|falling +(adj)|decreasing |allargando|calando|decrescendo|diminuendo|rallentando|ritardando|ritenuto|rit. +decreasing monotonic|1 +(adj)|monotonic |monotone +decree|3 +(noun)|edict|fiat|order|rescript|act|enactment +(verb)|declare +(verb)|rule|decide|make up one's mind|determine +decree nisi|1 +(noun)|decree|edict|fiat|order|rescript +decreed|1 +(adj)|appointed|ordained|prescribed|settled +decrement|2 +(noun)|decrease|amount +(noun)|decrease|process +decrepit|2 +(adj)|creaky|flea-bitten|run-down|woebegone|worn +(adj)|debile|feeble|infirm|sapless|weak|weakly|frail +decrepitate|2 +(verb)|change +(verb)|change|alter|modify +decrepitation|1 +(noun)|crackle|crackling|crepitation +decrepitude|1 +(noun)|dilapidation|deterioration|impairment +decrescendo|3 +(adj)|diminuendo|decreasing +(noun)|diminuendo|softness +(verb)|decrease|diminish|lessen|fall +decriminalisation|1 +(noun)|decriminalization|legislation|legislating|lawmaking +decriminalise|1 +(verb)|legalize|legalise|decriminalize|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +decriminalization|1 +(noun)|decriminalisation|legislation|legislating|lawmaking +decriminalize|1 +(verb)|legalize|legalise|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +decry|1 +(verb)|condemn|reprobate|objurgate|excoriate|denounce +decrypt|1 +(verb)|decode|decipher|rewrite +decryption|1 +(noun)|decoding|decipherment|cryptography|coding|secret writing +decubitus|1 +(noun)|position|posture|attitude +decubitus ulcer|1 +(noun)|bedsore|pressure sore|ulcer|ulceration +decuma|1 +(noun)|Decuma|Roman deity +decumaria|1 +(noun)|Decumaria|genus Decumaria|rosid dicot genus +decumaria barbara|1 +(noun)|decumary|Decumaria barbata|Decumaria barbara|hydrangea +decumaria barbata|1 +(noun)|decumary|Decumaria barbata|Decumaria barbara|hydrangea +decumary|1 +(noun)|Decumaria barbata|Decumaria barbara|hydrangea +decumbent|1 +(adj)|accumbent|recumbent|reclining|unerect +decurved|1 +(adj)|retrorse +decussate|2 +(adj)|intersectant|intersecting|crossed |across +(verb)|cross +decussation|1 +(noun)|chiasma|chiasm|structure|anatomical structure|complex body part|bodily structure|body structure +ded|1 +(noun)|Doctor of Education|EdD|DEd|doctor's degree|doctorate +dedicate|4 +(verb)|give|consecrate|commit|devote|use|utilize|utilise|apply|employ +(verb)|inaugurate|kick off +(verb)|give|render +(verb)|assign|specify|set apart +dedicated|2 +(adj)|dedicated |devoted|devoted|sacred +(adj)|consecrated |consecrate|ordained|votive|holy|sacred +dedicated file server|1 +(noun)|file server +dedication|5 +(noun)|fidelity|faithfulness +(noun)|ceremony|ceremonial|ceremonial occasion|observance +(noun)|commitment|message|content|subject matter|substance +(noun)|inscription|message +(noun)|commitment|allegiance|loyalty|cooperation +dedifferentiate|1 +(verb)|develop +dedifferentiated|1 +(adj)|undifferentiated |uniform +dedifferentiation|1 +(noun)|adaptation|adjustment +deduce|2 +(verb)|infer|deduct|derive|reason|reason out|conclude +(verb)|infer|reason|reason out|conclude +deducible|1 +(adj)|deductive +deduct|3 +(verb)|subtract|take off|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|withhold|recoup|keep|hold on +(verb)|deduce|infer|derive|reason|reason out|conclude +deducted|1 +(adj)|subtracted +deductible|3 +(adj)|deductible |allowable +(noun)|sum|sum of money|amount|amount of money +(noun)|article|clause +deduction|6 +(noun)|tax write-off|tax deduction|write-off|write-down +(noun)|discount|allowance|adjustment +(noun)|entailment|implication|inference|illation +(noun)|deductive reasoning|synthesis|reasoning|logical thinking|abstract thought +(noun)|subtraction|decrease|diminution|reduction|step-down +(noun)|discount|price reduction|decrease|diminution|reduction|step-down +deductive|2 +(adj)|reasoning|logical thinking|abstract thought +(adj)|deductive |illative|illative|inferential|inferential|deducible|a priori|analytic|analytical +deductive reasoning|1 +(noun)|deduction|synthesis|reasoning|logical thinking|abstract thought +deed|2 +(noun)|feat|effort|exploit|accomplishment|achievement +(noun)|deed of conveyance|title|legal document|legal instrument|official document|instrument +deed of conveyance|1 +(noun)|deed|title|legal document|legal instrument|official document|instrument +deed of trust|1 +(noun)|trust deed|legal document|legal instrument|official document|instrument +deed over|1 +(verb)|grant|give|gift|present +deed poll|1 +(noun)|deed|deed of conveyance|title +deedbox|1 +(noun)|strongbox|box +deeds|3 +(noun)|works|activity +(noun)|deed|feat|effort|exploit|accomplishment|achievement +(noun)|deed|deed of conveyance|title|legal document|legal instrument|official document|instrument +deem|1 +(verb)|hold|view as|take for|see|consider|reckon|view|regard +deems taylor|1 +(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer|music critic +deep|20 +(adj)|deep |heavy|profound|sound|wakeless|profound +(adj)|profound +(adj)|deep |abysmal|abyssal|unfathomable|bottomless|deep-water|in depth|profound|unfathomed|unplumbed|unsounded|walk-in|unfathomable +(adj)|distant +(adj)|intense +(adj)|bass|low |low-pitched +(adj)|rich|colorful |colourful +(adj)|thick +(adj)|wide |broad +(adj)|thick|intense +(adj)|large +(adj)|low +(adj)|cryptic|cryptical|inscrutable|mysterious|mystifying|inexplicable |incomprehensible +(adj)|abstruse|recondite|esoteric +(adj)|artful +(noun)|middle +(noun)|trench|oceanic abyss|natural depression|depression +(noun)|ocean +(adv)|deeply +(adv)|late +deep-chested|1 +(adj)|thick +deep-dish pie|1 +(noun)|cobbler|pie +deep-dye|1 +(verb)|dye +deep-eyed|1 +(adj)|hollow-eyed|sunken-eyed|thin |lean +deep-fat-fry|1 +(verb)|fry +deep-freeze|3 +(noun)|Deepfreeze|deep freezer|freezer|electric refrigerator|fridge +(noun)|deep freeze|inaction|inactivity|inactiveness +(noun)| +deep-fried|1 +(adj)|fried|cooked +deep-fry|1 +(verb)|french-fry|fry +deep-laid|1 +(adj)|planned +deep-mined|1 +(adj)|mined +deep-rooted|1 +(adj)|deep-seated|implanted|ingrained|planted|established |constituted +deep-sea|1 +(adj)|sea +deep-sea diver|1 +(noun)|diver|frogman|underwater diver +deep-seated|1 +(adj)|deep-rooted|implanted|ingrained|planted|established |constituted +deep-set|1 +(adj)|sunken|recessed|hollow +deep-six|2 +(verb)|give it the deep six|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|throw overboard|throw +deep-water|1 +(adj)|deep +deep brown|1 +(noun)|chocolate|coffee|umber|burnt umber|brown|brownness +deep cervical vein|1 +(noun)|cervical vein|vena cervicalis profunda|vein|vena|venous blood vessel +deep down|1 +(adv)|at heart|at bottom|inside|in spite of appearance +deep fording|1 +(noun)|ford|fording +deep freeze|4 +(noun)|inaction|inactivity|inactiveness +(noun)|deep-freeze|Deepfreeze|deep freezer|freezer|electric refrigerator|fridge +(noun)| +(verb)|freeze +deep freezer|1 +(noun)|deep-freeze|Deepfreeze|freezer|electric refrigerator|fridge +deep in thought|1 +(adj)|bemused|lost|preoccupied|thoughtful +deep kiss|1 +(noun)|soul kiss|French kiss|kiss|buss|osculation +deep middle cerebral vein|1 +(noun)|middle cerebral vein|vena cerebri media +deep pocket|1 +(noun)|assets +deep red|1 +(noun)|crimson|ruby|red|redness +deep south|1 +(noun)|Deep South|geographical area|geographic area|geographical region|geographic region +deep space|1 +(noun)|region|part +deep supporting fire|1 +(noun)|supporting fire +deep temporal vein|1 +(noun)|temporal vein|vena temporalis +deep water|1 +(noun)|trouble|problem +deepen|4 +(verb)|intensify|compound|heighten|increase +(verb)|intensify|increase +(verb)|enlarge +(verb)|change|change +deepened|1 +(adj)|gathered|concentrated +deepening|2 +(adj)|gathering|thickening|intensifying +(noun)|development|evolution +deepfreeze|1 +(noun)|deep-freeze|Deepfreeze|deep freezer|freezer|electric refrigerator|fridge +deeply|2 +(adv)|profoundly +(adv)|deep +deepness|2 +(noun)|profundity|profoundness|depth +(noun)|low pitch|low frequency +deepwater pipefish|1 +(noun)|Cosmocampus profundus|pipefish|needlefish +deepwater squirrelfish|1 +(noun)|Holocentrus bullisi|squirrelfish +deer|1 +(noun)|cervid|ruminant +deer's-ear|1 +(noun)|columbo|American columbo|deer's-ears|pyramid plant|American gentian|herb|herbaceous plant +deer's-ears|2 +(noun)|columbo|American columbo|deer's-ear|pyramid plant|American gentian|herb|herbaceous plant +(noun)|columbo|American columbo|deer's-ear|pyramid plant|American gentian|herb|herbaceous plant +deer fern|1 +(noun)|Blechnum spicant|hard fern +deer fly fever|1 +(noun)|tularemia|tularaemia|rabbit fever|yatobyo|zoonosis|zoonotic disease +deer grass|1 +(noun)|meadow beauty|subshrub|suffrutex +deer hunt|1 +(noun)|deer hunting|hunt|hunting +deer hunter|1 +(noun)|hunter|huntsman +deer hunting|1 +(noun)|deer hunt|hunt|hunting +deer mouse|1 +(noun)|Peromyscus maniculatus|wood mouse +deer mushroom|1 +(noun)|Pluteus cervinus|agaric +deer tick|1 +(noun)|Ixodes dammini|hard tick|ixodid +deer trail|1 +(noun)|trail +deerberry|1 +(noun)|squaw huckleberry|Vaccinium stamineum|blueberry|blueberry bush +deere|1 +(noun)|Deere|John Deere|industrialist +deerhound|1 +(noun)|Scottish deerhound|hound|hound dog +deerskin|1 +(noun)|leather +deerstalker|1 +(noun)|hat|chapeau|lid +deerstalking|1 +(noun)|stalk|stalking|still hunt +deface|2 +(verb)|disfigure|blemish|mar|impair|spoil|deflower|vitiate +(verb)|mutilate|mangle|cut up +defaced|1 +(adj)|marred|damaged +defacement|1 +(noun)|disfigurement|disfiguration|damage|harm|hurt|scathe +defalcate|1 +(verb)|embezzle|peculate|misappropriate|malversate|steal +defalcation|2 +(noun)|sum|sum of money|amount|amount of money +(noun)|embezzlement|peculation|misapplication|misappropriation|larceny|theft|thievery|thieving|stealing +defalcator|1 +(noun)|embezzler|peculator|thief|stealer +defamation|2 +(noun)|calumny|obloquy|traducement|hatchet job|disparagement|depreciation|derogation +(noun)|aspersion|calumny|slander|denigration|attack +defamatory|1 +(adj)|calumniatory|calumnious|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful +defame|1 +(verb)|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch|charge|accuse +defamer|1 +(noun)|maligner|slanderer|vilifier|libeler|backbiter|traducer|detractor|disparager|depreciator|knocker +defang|1 +(verb)|remove|take|take away|withdraw +default|5 +(noun)|absence +(noun)|nonpayment|nonremittal|failure +(noun)|nonpayment|nonremittal|financial loss +(noun)|default option|option|alternative|choice +(verb)|default on|fail|neglect +default judgement|1 +(noun)|default judgment|judgment by default|judgement by default|judgment|judgement|judicial decision +default judgment|1 +(noun)|default judgement|judgment by default|judgement by default|judgment|judgement|judicial decision +default on|1 +(verb)|default|fail|neglect +default option|1 +(noun)|default|option|alternative|choice +defaulter|3 +(noun)|absentee +(noun)|deadbeat|debtor +(noun)|contestant +defeasible|1 +(adj)|defeasible +defeat|4 +(noun)|licking|ending|conclusion|finish|failure +(noun)|frustration|disappointment|letdown +(verb)|get the better of|overcome +(verb)|kill|shoot down|vote down|vote out|veto|blackball|negative +defeated|3 +(adj)|defeated |licked|subjugated|unsuccessful +(adj)|disappointed|discomfited|foiled|frustrated|thwarted|unsuccessful +(noun)|discomfited|people +defeatism|1 +(noun)|resignation|surrender +defeatist|1 +(noun)|negativist|pessimist +defecate|1 +(verb)|stool|shit|take a shit|take a crap|ca-ca|crap|make|excrete|egest|eliminate|pass +defecation|1 +(noun)|laxation|shitting|elimination|evacuation|excretion|excreting|voiding +defecation reflex|1 +(noun)|rectal reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +defecator|1 +(noun)|voider|shitter|person|individual|someone|somebody|mortal|human|soul +defect|5 +(noun)|imperfection|imperfectness +(noun)|shortcoming|disadvantage +(noun)|fault|flaw|imperfection|imperfectness +(noun)|blemish|mar|appearance|visual aspect +(verb)|desert|flee|fly|take flight +defect of speech|1 +(noun)|speech disorder|speech defect|disorder|upset +defection|2 +(noun)|desertion|abandonment|withdrawal +(noun)|apostasy|renunciation|rejection +defective|3 +(adj)|faulty|imperfect +(adj)|abnormal +(adj)|bad|malfunctioning |nonfunctional +defective pleading|1 +(noun)|pleading +defectiveness|1 +(noun)|faultiness|imperfection|imperfectness +defector|1 +(noun)|deserter|wrongdoer|offender +defeminise|1 +(verb)|defeminize|alter|neuter|spay|castrate +defeminize|1 +(verb)|defeminise|alter|neuter|spay|castrate +defence|10 +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|psychoanalytic process|process|unconscious process +(noun)|defense|defending team|team|squad +(noun)|defense|defense team|defense lawyers|collection|aggregation|accumulation|assemblage +(noun)|defense|defense force|defence force|organization|organisation +(noun)|refutation|defense|answer +(noun)|defense|vindication|justification +(noun)|defensive structure|defense|structure|construction +(noun)|defense|denial|demurrer|due process|due process of law +(noun)|defense|defensive measure|military action|action +(noun)|defense|protection +defence force|1 +(noun)|defense|defence|defense force|organization|organisation +defence mechanism|1 +(noun)|defense mechanism|defense reaction|defence reaction|defense|defence|psychoanalytic process|process|unconscious process +defence policy|1 +(noun)|defense program|defense policy|defence program|program|programme +defence program|1 +(noun)|defense program|defense policy|defence policy|program|programme +defence reaction|1 +(noun)|defense mechanism|defense reaction|defence mechanism|defense|defence|psychoanalytic process|process|unconscious process +defence system|1 +(noun)|defense system|weaponry|arms|implements of war|weapons system|munition +defenceless|2 +(adj)|defenseless|vulnerable +(adj)|defenseless|unarmed +defencelessly|1 +(adv)|defenseless +defencelessness|1 +(noun)|defenselessness|unprotectedness|vulnerability +defend|7 +(verb)|support|fend for|argue|reason +(verb)|prevent|keep +(verb)|guard|hold|protect +(verb)|fight|oppose|fight back|fight down|fight|struggle +(verb)|champion|back|endorse|indorse|plump for|plunk for|support +(verb)|represent +(verb)|maintain|affirm +defendable|1 +(adj)|defensible|invulnerable +defendant|1 +(noun)|suspect|litigant|litigator +defender|2 +(noun)|guardian|protector|shielder|preserver +(noun)|withstander|combatant|battler|belligerent|fighter|scrapper +defender of the faith|1 +(noun)|Defender of the Faith|title|title of respect +defending|1 +(adj)|defensive +defending team|1 +(noun)|defense|defence|team|squad +defenestrate|1 +(verb)|throw +defenestration|1 +(noun)|ejection|exclusion|expulsion|riddance +defense|11 +(noun)|defence|defending team|team|squad +(noun)|defence|defensive measure|military action|action +(noun)|defence|defense team|defense lawyers|collection|aggregation|accumulation|assemblage +(noun)|defence|protection +(noun)|defensive structure|defence|structure|construction +(noun)|refutation|defence|answer +(noun)|defence|vindication|justification +(noun)|defence|denial|demurrer|due process|due process of law +(noun)|defence|defense force|defence force|organization|organisation +(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defence|psychoanalytic process|process|unconscious process +defense advanced research projects agency|1 +(noun)|Defense Advanced Research Projects Agency|DARPA|agency|federal agency|government agency|bureau|office|authority +defense attorney|1 +(noun)|defense lawyer|lawyer|attorney +defense contractor|1 +(noun)|contractor +defense department|1 +(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department +defense force|1 +(noun)|defense|defence|defence force|organization|organisation +defense information systems agency|1 +(noun)|Defense Information Systems Agency|DISA|agency|federal agency|government agency|bureau|office|authority +defense intelligence agency|1 +(noun)|Defense Intelligence Agency|DIA|military intelligence|United States intelligence agency +defense laboratory|1 +(noun)|lab|laboratory|research lab|research laboratory|science lab|science laboratory +defense lawyer|1 +(noun)|defense attorney|lawyer|attorney +defense lawyers|2 +(noun)|defense|defence|defense team|collection|aggregation|accumulation|assemblage +(noun)|defense attorney|defense lawyer|lawyer|attorney +defense logistics agency|1 +(noun)|Defense Logistics Agency|agency|federal agency|government agency|bureau|office|authority +defense mechanism|1 +(noun)|defense reaction|defence mechanism|defence reaction|defense|defence|psychoanalytic process|process|unconscious process +defense policy|1 +(noun)|defense program|defence program|defence policy|program|programme +defense program|1 +(noun)|defense policy|defence program|defence policy|program|programme +defense reaction|1 +(noun)|defense mechanism|defence mechanism|defence reaction|defense|defence|psychoanalytic process|process|unconscious process +defense reutilization and marketing service|1 +(noun)|Defense Reutilization and Marketing Service|DRMS|agency|federal agency|government agency|bureau|office|authority +defense secretary|2 +(noun)|Secretary of Defense|Defense Secretary|secretary +(noun)|Secretary of Defense|Defense Secretary|secretaryship +defense system|1 +(noun)|defence system|weaponry|arms|implements of war|weapons system|munition +defense team|1 +(noun)|defense|defence|defense lawyers|collection|aggregation|accumulation|assemblage +defense technical information center|1 +(noun)|Defense Technical Information Center|DTIC|agency|federal agency|government agency|bureau|office|authority +defenseless|4 +(adj)|defenceless|vulnerable +(adj)|naked|unprotected +(adj)|defenceless|unarmed +(adv)|defencelessly +defenselessness|1 +(noun)|defencelessness|unprotectedness|vulnerability +defensible|1 +(adj)|defendable|invulnerable +defensive|4 +(adj)|defensive |antiaircraft|antisubmarine|antitank|defending|en garde|protective +(adj)|justificative|justificatory|apologetic |excusatory +(adj)|protective +(noun)|defensive attitude|attitude|mental attitude +defensive attitude|1 +(noun)|defensive|attitude|mental attitude +defensive measure|1 +(noun)|defense|defence|military action|action +defensive structure|1 +(noun)|defense|defence|structure|construction +defensiveness|1 +(noun)|sensitivity|sensitiveness +defer|2 +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|remit|put off|delay +(verb)|submit|bow|accede|give in|yield|give in|succumb|knuckle under|buckle under +deference|3 +(noun)|respect|politeness|civility +(noun)|respect|respectfulness|courtesy|good manners +(noun)|complaisance|compliance|compliancy|obligingness|agreeableness|agreeability +deferent|1 +(adj)|deferential|regardful|respectful +deferential|1 +(adj)|deferent|regardful|respectful +deferentially|1 +(adv)|submissively +deferment|1 +(noun)|postponement|deferral|delay|holdup +deferral|2 +(noun)|recess|abeyance|suspension +(noun)|postponement|deferment|delay|holdup +deferred|1 +(adj)|postponed|delayed +deferred payment|1 +(noun)|credit|payment +defervesce|1 +(verb)|change +defervescence|1 +(noun)|suspension|respite|reprieve|hiatus|abatement +defiance|3 +(noun)|rebelliousness|intractability|intractableness +(noun)|challenge +(noun)|resistance +defiant|1 +(adj)|defiant |noncompliant|insubordinate|resistant|resistive|obstreperous|recalcitrant|disobedient|insubordinate|intractable|unmanageable|unwilling +defiantly|1 +(adv)|rebelliously|contumaciously +defibrillate|1 +(verb)|restore|reconstruct +defibrillation|1 +(noun)|medical care|medical aid +defibrillator|1 +(noun)|electronic device +deficiency|2 +(noun)|lack|want|need|demand +(noun)|insufficiency|inadequacy|amount +deficiency disease|1 +(noun)|disease +deficient|3 +(adj)|lacking|wanting|inadequate +(adj)|insufficient |depleted|low|inadequate|poor|short|lean|lean|skimpy|light|scant|short|scarce|shy|too little|meager|meagre|meagerly +(adj)|inferior|substandard|nonstandard +deficit|2 +(noun)|shortage|shortfall|insufficiency|inadequacy|deficiency +(noun)|liabilities +deficit spending|1 +(noun)|compensatory spending|pump priming|spending|disbursement|disbursal|outlay +defilade|1 +(noun)|fortification|munition +defile|4 +(noun)|gorge|pass|mountain pass|notch +(verb)|sully|corrupt|taint|cloud|mar|impair|spoil|deflower|vitiate +(verb)|tarnish|stain|maculate|sully|spot|fleck|blob|blot +(verb)|foul|befoul|maculate|dishonor|disgrace|dishonour|attaint|shame +defiled|2 +(adj)|maculate|impure +(adj)|unclean |impure +defilement|1 +(noun)|befoulment|pollution|dirtiness|uncleanness +defiler|1 +(noun)|polluter|bad person +definable|1 +(adj)|determinable +define|4 +(verb)|specify|set|determine|fix|limit +(verb)|specify|delineate|delimit|delimitate|be +(verb)|characterize|characterise +(verb)|delineate|show +defined|3 +(adj)|defined |characterized|characterised|circumscribed|delimited|definite +(adj)|outlined|distinct +(adj)|formed|settled|definite +defining|1 +(noun)|shaping|process +definite|2 +(adj)|definite |certain|decisive|defined|formed|settled|distinct|decided|clear|defined|distinct|explicit|expressed +(adj)|certain +definite article|1 +(noun)|article +definite integral|1 +(noun)|integral +definite quantity|1 +(noun)|measure|quantity|amount +definitely|1 +(adv)|decidedly|unquestionably|emphatically|in spades|by all odds +definiteness|1 +(noun)|determinateness|predictability +definition|2 +(noun)|explanation|account +(noun)|distinctness|sharpness +definitive|3 +(adj)|unequivocal|explicit |expressed +(adj)|authoritative|classical|standard +(adj)|determinate|conclusive +definitive host|1 +(noun)|host +deflagrate|2 +(verb)|burn|combust +(verb)|burn|combust +deflagration|1 +(noun)|combustion|burning +deflate|6 +(verb)|collapse +(verb)|turn|release +(verb)|puncture|deprecate|depreciate +(verb)|change|alter|modify +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|decrease|diminish|lessen|fall +deflated|2 +(adj)|chapfallen|chopfallen|crestfallen|dejected +(adj)|deflated |flat +deflation|3 +(noun)|erosion|eroding|eating away|wearing|wearing away +(noun)|economic process +(noun)|decrease|diminution|reduction|step-down +deflationary|1 +(adj)|deflationary +deflator|1 +(noun)|factor +deflect|5 +(verb)|debar|obviate|avert|head off|stave off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +(verb)|bend|turn away|turn +(verb)|deviate|turn +(verb)|distract|confuse|flurry|disconcert|put off +(verb)|parry|block|fence +deflection|5 +(noun)|warp|aberrance|aberrancy|aberration|deviance +(noun)|deflexion|refraction|bending|bend +(noun)|deflexion|movement|motion +(noun)|deflexion|bending|physical property +(noun)|diversion|deviation|digression|deflexion|divagation|turn|turning +deflective|1 +(adj)|refractive|crooked +deflector|1 +(noun)|device +deflexion|4 +(noun)|deflection|refraction|bending|bend +(noun)|deflection|movement|motion +(noun)|deflection|bending|physical property +(noun)|diversion|deviation|digression|deflection|divagation|turn|turning +defloration|2 +(noun)|damage|harm|hurt|scathe +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +deflower|2 +(verb)|ruin|copulate|mate|pair|couple +(verb)|mar|impair|spoil|vitiate|damage +defoe|1 +(noun)|Defoe|Daniel Defoe|writer|author +defoliant|1 +(noun)|compound|chemical compound +defoliate|2 +(adj)|defoliated|leafless +(verb)|denude|bare|denudate|strip +defoliated|1 +(adj)|defoliate|leafless +defoliation|2 +(noun)|organic process|biological process +(noun)|change of state +defoliator|1 +(noun)|insect +deforest|1 +(verb)|disforest|disafforest|clear +deforestation|2 +(noun)|environmental condition +(noun)|disforestation|denudation|stripping|uncovering|baring|husking +deform|6 +(verb)|change|alter|modify +(verb)|contort|distort|wring|twist|twine|distort +(verb)|flex|bend|twist|turn|change shape|change form +(verb)|change shape|change form +(verb)|distort|strain|shape|form +(verb)|change shape|change form|change +deformation|3 +(noun)|distortion|damage|harm|impairment +(noun)|change|alteration|modification +(noun)|contortion|change of shape +deformational|1 +(adj)|change|alteration|modification +deformed|1 +(adj)|distorted|ill-shapen|malformed|misshapen|unshapely +deformity|2 +(noun)|malformation|misshapenness|affliction +(noun)|disfigurement|disfiguration|appearance|visual aspect +defraud|1 +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|scam|mulct|gyp|con|cheat|rip off|chisel +defray|1 +(verb)|pay +defrayal|1 +(noun)|payment|defrayment|commerce|commercialism|mercantilism +defrayment|1 +(noun)|payment|defrayal|commerce|commercialism|mercantilism +defrock|1 +(verb)|unfrock|divest|disinvest +defrost|1 +(verb)|deice|de-ice|dissolve|thaw|unfreeze|unthaw|dethaw|melt +defroster|1 +(noun)|deicer|heater|warmer +deft|2 +(adj)|graceful +(adj)|dexterous|dextrous|adroit +deftly|1 +(adv)|dexterously|dextrously +deftness|1 +(noun)|adeptness|adroitness|facility|quickness|skillfulness +defunct|2 +(adj)|dead|inoperative +(adj)|dead +defunctness|1 +(noun)|extinction|death +defuse|1 +(verb)|remove|take|take away|withdraw +defusing|1 +(noun)|deactivation|termination|ending|conclusion +defy|3 +(verb)|withstand|hold|hold up|resist|hold out|withstand|stand firm +(verb)|resist|refuse|elude|escape +(verb)|dare|challenge +degage|2 +(adj)|relaxed |at ease +(adj)|detached|uninvolved|unconcerned +degas|1 +(verb)|remove|take|take away|withdraw +degauss|1 +(verb)|demagnetize|demagnetise|change|alter|modify +degaussing|1 +(noun)|demagnetization|demagnetisation +degeneracy|2 +(noun)|degeneration|decadence|decadency|abasement|degradation|abjection +(noun)|corruption|depravity|immorality +degenerate|3 +(adj)|debauched|degraded|dissipated|dissolute|libertine|profligate|riotous|fast|immoral +(noun)|pervert|deviant|deviate|reprobate|miscreant +(verb)|devolve|deteriorate|drop|worsen|decline +degeneration|3 +(noun)|devolution|process +(noun)|degeneracy|decadence|decadency|abasement|degradation|abjection +(noun)|retrogression|transformation|transmutation|shift +degenerative|1 +(adj)|chronic +degenerative arthritis|1 +(noun)|osteoarthritis|degenerative joint disease|arthritis +degenerative disorder|1 +(noun)|disorder|upset +degenerative joint disease|1 +(noun)|osteoarthritis|degenerative arthritis|arthritis +deglutition|1 +(noun)|swallow|drink|consumption|ingestion|intake|uptake +deglycerolise|1 +(verb)|deglycerolize|draw|take out +deglycerolize|1 +(verb)|deglycerolise|draw|take out +degradation|2 +(noun)|debasement|change of state +(noun)|abasement|abjection|humiliation +degrade|2 +(verb)|take down|disgrace|demean|put down|humiliate|mortify|chagrin|humble|abase +(verb)|cheapen|worsen|aggravate|exacerbate|exasperate +degraded|2 +(adj)|debauched|degenerate|dissipated|dissolute|libertine|profligate|riotous|fast|immoral +(adj)|debased|devalued|low +degrader|1 +(noun)|debaser|person|individual|someone|somebody|mortal|human|soul +degrading|2 +(adj)|corrupting|noxious |harmful +(adj)|debasing|dishonorable |dishonourable +degree|7 +(noun)|grade|level|magnitude +(noun)|level|stage|point|state +(noun)|academic degree|award|accolade|honor|honour|laurels|qualification|makings +(noun)|temperature unit +(noun)|arcdegree|angular unit +(noun)|exponent|power|index +(noun)|magnitude +degree celsius|1 +(noun)|degree Centigrade|degree Celsius|C|degree +degree centigrade|1 +(noun)|degree Centigrade|degree Celsius|C|degree +degree day|2 +(noun)|commencement day|day +(noun)|temperature unit +degree fahrenheit|1 +(noun)|degree Fahrenheit|F|degree +degree of a polynomial|1 +(noun)|degree +degree of a term|1 +(noun)|degree +degree of freedom|2 +(noun)|variable|variable quantity +(noun)|parameter|parametric quantity +degree program|1 +(noun)|course of study|program|programme|curriculum|syllabus +degressive|2 +(adj)|descending +(adj)|progressive +degust|1 +(verb)|sample|try|try out|taste +degustation|1 +(noun)|tasting|savoring|savouring|relishing|eating|feeding +dehisce|1 +(verb)|erupt|come out|break through|push through +dehiscence|1 +(noun)|organic phenomenon +dehiscent|1 +(adj)|dehiscent +dehong dai|1 +(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai +dehorn|2 +(verb)|remove|take|take away|withdraw +(verb)|take off +dehumanisation|1 +(noun)|dehumanization|degradation|debasement +dehumanise|2 +(verb)|dehumanize|take down|degrade|disgrace|demean|put down +(verb)|dehumanize|mechanize|mechanise +dehumanised|1 +(adj)|dehumanized|unhuman|nonhuman +dehumanization|1 +(noun)|dehumanisation|degradation|debasement +dehumanize|2 +(verb)|dehumanise|take down|degrade|disgrace|demean|put down +(verb)|dehumanise|mechanize|mechanise +dehumanized|1 +(adj)|dehumanised|unhuman|nonhuman +dehumidify|1 +(verb)|dry|dry out +dehydrate|3 +(verb)|desiccate|preserve|keep +(verb)|desiccate|dry|dry out +(verb)|dry up|desiccate|dry|dry out +dehydrated|2 +(adj)|unhealthy +(adj)|dried|desiccated|preserved +dehydrated food|1 +(noun)|dehydrated foods|foodstuff|food product +dehydrated foods|2 +(noun)|dehydrated food|foodstuff|food product +(noun)|dehydrated food|foodstuff|food product +dehydration|3 +(noun)|desiccation|dryness|waterlessness|xerotes +(noun)|thirst +(noun)|desiccation|drying up|evaporation|extraction +dehydrogenate|1 +(verb)|change|alter|modify +dehydroretinol|1 +(noun)|vitamin A2|vitamin A|antiophthalmic factor|axerophthol|A +deice|1 +(verb)|defrost|de-ice|dissolve|thaw|unfreeze|unthaw|dethaw|melt +deicer|1 +(noun)|defroster|heater|warmer +deictic|2 +(adj)|semantics +(noun)|deictic word|word +deictic word|1 +(noun)|deictic|word +deific|1 +(adj)|immortal +deification|3 +(noun)|condition|status +(noun)|embodiment|incarnation|avatar +(noun)|exaltation|apotheosis|worship +deify|2 +(verb)|idealize|idealise +(verb)|exalt +deign|1 +(verb)|condescend|descend|act|move +deiist|1 +(adj)|deistic|rationalism +deimos|1 +(noun)|Deimos|satellite +deinocheirus|1 +(noun)|ornithomimid +deinonychus|1 +(noun)|maniraptor +deipnosophist|1 +(noun)|conversationalist|schmoozer +deism|1 +(noun)|free thought|rationalism +deist|1 +(noun)|freethinker|nonreligious person +deistic|1 +(adj)|deiist|rationalism +deity|1 +(noun)|divinity|god|immortal|spiritual being|supernatural being +deixis|1 +(noun)|semantics +deja vu|1 +(noun)|reminder +deject|1 +(verb)|depress|cast down|get down|dismay|dispirit|demoralize|demoralise|discourage +dejected|1 +(adj)|dejected |amort|chapfallen|chopfallen|crestfallen|deflated|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|glum|gloomy|long-faced|lonely|lonesome|dysphoric|distressed|unhappy|unhappy +dejectedly|1 +(adv)|in low spirits +dejection|2 +(noun)|depression +(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|body waste|excretion|excreta|excrement|excretory product +dejeuner|1 +(noun)|lunch|luncheon|tiffin|meal|repast +dekagram|1 +(noun)|decagram|dkg|dag|metric weight unit|weight unit +dekaliter|1 +(noun)|dekalitre|decaliter|decalitre|dal|dkl|metric capacity unit +dekalitre|1 +(noun)|dekaliter|decaliter|decalitre|dal|dkl|metric capacity unit +dekameter|1 +(noun)|decameter|decametre|dekametre|dam|dkm|metric linear unit +dekametre|1 +(noun)|decameter|dekameter|decametre|dam|dkm|metric linear unit +dekker|1 +(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist|playwright|pamphleteer +dekko|1 +(noun)|look|looking|looking at +del rio|1 +(noun)|Del Rio|town +delacroix|1 +(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter +delairea|1 +(noun)|Delairea|genus Delairea|asterid dicot genus +delairea odorata|1 +(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine +delapidate|1 +(verb)|decay|crumble|change +delavirdine|1 +(noun)|Rescriptor|non-nucleoside reverse transcriptase inhibitor|NNRTI +delaware|5 +(noun)|Delaware|Delaware River|river +(noun)|Delaware|Algonquian|Algonquin +(noun)|Delaware|Colony +(noun)|Delaware|Diamond State|First State|DE|American state +(noun)|Delaware|Algonquian|Algonquin|Algonquian language +delaware bay|1 +(noun)|Delaware Bay|bay +delaware memorial bridge|1 +(noun)|Delaware Memorial Bridge|suspension bridge +delaware river|1 +(noun)|Delaware|Delaware River|river +delawarean|1 +(noun)|Delawarean|Delawarian|American +delawarian|1 +(noun)|Delawarean|Delawarian|American +delay|6 +(noun)|hold|time lag|postponement|wait|pause|intermission|break|interruption|suspension +(noun)|holdup|inactivity +(verb)|detain|hold up|decelerate|slow|slow down|slow up|retard +(verb)|wait|hold off|hold back +(verb)|stay|detain|check|retard +(verb)|check|retard|change|alter|modify +delay line|1 +(noun)|circuit|electrical circuit|electric circuit +delayed|2 +(adj)|delayed |abeyant|inactive|in abeyance|suspended|delayed-action|deferred|postponed|held up|slow +(adj)|retarded +delayed-action|1 +(adj)|delayed +delayed action|1 +(noun)|mechanism +delayed allergy|1 +(noun)|type IV allergic reaction|allergy|allergic reaction +delayer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +delbruck|1 +(noun)|Delbruck|Max Delbruck|biologist|life scientist +delectability|1 +(noun)|deliciousness|lusciousness|toothsomeness|appetizingness|appetisingness +delectable|2 +(adj)|delicious|luscious|pleasant-tasting|scrumptious|toothsome|yummy|tasteful +(adj)|sexually attractive|desirable +delectation|2 +(noun)|delight|pleasure|pleasance +(noun)|enjoyment|activity +delegacy|3 +(noun)|representation|agency|state +(noun)|deputation|commission|delegation|mission|organization|organisation +(noun)|appointment|assignment|designation|naming +delegate|3 +(noun)|representative +(verb)|depute|designate|depute|assign +(verb)|designate|depute|assign|appoint|charge +delegating|1 +(noun)|delegation|relegating|relegation|deputation|authorization|authorisation|empowerment +delegation|2 +(noun)|deputation|commission|delegacy|mission|organization|organisation +(noun)|delegating|relegating|relegation|deputation|authorization|authorisation|empowerment +delete|3 +(verb)|cancel|remove|take|take away|withdraw +(verb)|erase|take away|take out +(verb)|edit|blue-pencil|censor +deleterious|1 +(adj)|hurtful|injurious|harmful +deletion|3 +(noun)|omission|linguistic process +(noun)|excision|cut|editing|redaction +(noun)|removal|remotion +delf|1 +(noun)|excavation|hole in the ground +delft|1 +(noun)|earthenware +delhi|1 +(noun)|Delhi|Old Delhi|city|metropolis|urban center +delhi boil|1 +(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +deli|1 +(noun)|delicatessen|food shop|shop|store +deliberate|7 +(adj)|intentional|knowing|willful|wilful|intended +(adj)|careful|measured|unhurried +(adj)|studied |affected|unnatural +(adj)|thoughtful +(adj)|calculated|measured|premeditated +(verb)|consider|debate|moot|turn over|hash out|discuss|talk over +(verb)|debate|hash out|discuss|talk over +deliberate defence|1 +(noun)|deliberate defense|defense|defence|defensive measure +deliberate defense|1 +(noun)|deliberate defence|defense|defence|defensive measure +deliberately|2 +(adv)|intentionally|designedly|on purpose|purposely|advisedly|by choice|by design +(adv)|measuredly +deliberateness|2 +(noun)|slowness|deliberation|unhurriedness|pace|rate +(noun)|deliberation|thoughtfulness +deliberation|5 +(noun)|discussion|give-and-take|word +(noun)|weighing|advisement|consideration +(noun)|calculation|planning|preparation|provision +(noun)|slowness|deliberateness|unhurriedness|pace|rate +(noun)|deliberateness|thoughtfulness +deliberative|1 +(adj)|thoughtful +delibes|1 +(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer +delible|1 +(adj)|eradicable +delicacy|7 +(noun)|daintiness|fineness|elegance +(noun)|dainty|goody|kickshaw|treat|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|discretion|taste|appreciation|discernment|perceptiveness +(noun)|slightness|smallness|littleness +(noun)|fragility|weakness +(noun)|diplomacy|discreetness|finesse|tact|tactfulness +(noun)|airiness|liveliness|life|spirit|sprightliness +delicate|7 +(adj)|delicate |dainty|exquisite|ethereal|gossamer|fragile|half-hardy|light-handed|overdelicate|pastel|subtle|tender|breakable|frail|weak +(adj)|skilled +(adj)|fragile|frail|breakable +(adj)|soft|tender |untoughened +(adj)|finespun|refined +(adj)|ticklish|difficult |hard +(adj)|sensitive +delicately|1 +(adv)|finely|fine|exquisitely +delicatessen|2 +(noun)|delicatessen food|convenience food +(noun)|deli|food shop|shop|store +delicatessen food|1 +(noun)|delicatessen|convenience food +delichon|1 +(noun)|Delichon|genus Delichon|bird genus +delichon urbica|1 +(noun)|house martin|Delichon urbica|martin +delicious|3 +(adj)|delightful|pleasing +(adj)|delectable|luscious|pleasant-tasting|scrumptious|toothsome|yummy|tasteful +(noun)|Delicious|eating apple|dessert apple +deliciously|2 +(adv)|pleasurably +(adv)|lusciously|scrumptiously +deliciousness|1 +(noun)|delectability|lusciousness|toothsomeness|appetizingness|appetisingness +delight|5 +(noun)|delectation|pleasure|pleasance +(noun)|joy|pleasure|positive stimulus +(verb)|please|satisfy|gratify +(verb)|enjoy|revel +(verb)|enchant|enrapture|transport|enthrall|ravish|enthral|please +delighted|2 +(adj)|pleased +(adj)|beguiled|captivated|charmed|enthralled|entranced|enchanted +delightful|1 +(adj)|delicious|pleasing +delilah|2 +(noun)|Delilah|mistress|kept woman|fancy woman +(noun)|enchantress|temptress|siren|Delilah|femme fatale|woman|adult female +delimit|3 +(verb)|specify|define|delineate|delimitate|be +(verb)|subtend|be +(verb)|demarcate|delimitate|limit|circumscribe|confine +delimitate|2 +(verb)|specify|define|delineate|delimit|be +(verb)|demarcate|delimit|limit|circumscribe|confine +delimitation|1 +(noun)|boundary line|border|borderline|mete|boundary|bound|bounds +delimited|2 +(adj)|bounded|finite +(adj)|circumscribed|defined +delineate|6 +(adj)|delineated |represented|depicted|pictured|portrayed|diagrammatic|diagrammatical|drawn|painted|described +(verb)|define|show +(verb)|specify|define|delimit|delimitate|be +(verb)|limn|outline|draw +(verb)|trace|draw|line|describe|mark +(verb)|describe|depict|draw +delineated|1 +(adj)|delineated |represented|delineate|depicted|pictured|portrayed|diagrammatic|diagrammatical|drawn|painted|described +delineation|3 +(noun)|word picture|word-painting|depiction|picture|characterization|characterisation|description|verbal description +(noun)|depiction|limning|line drawing|drawing +(noun)|depiction|portrayal|pictorial representation|picturing +delineative|1 +(adj)|depictive|representational +delinquency|3 +(noun)|nonpayment|default|nonremittal +(noun)|dereliction|willful neglect|negligence|neglect|neglectfulness +(noun)|juvenile delinquency|misbehavior|misbehaviour|misdeed +delinquent|5 +(adj)|guilty +(adj)|derelict|neglectful|remiss|negligent +(adj)|incorrigible +(adj)|overdue|due |owed +(noun)|juvenile delinquent|wrongdoer|offender +deliquesce|2 +(verb)|decay +(verb)|dissolve|thaw|unfreeze|unthaw|dethaw|melt +deliquescent|1 +(adj)|hydrophilic +deliquium|1 +(noun)|faint|swoon|syncope|loss of consciousness +delirious|2 +(adj)|hallucinating|ill |sick +(adj)|excited|frantic|mad|unrestrained|wild +delirium|2 +(noun)|craze|frenzy|fury|hysteria|mania|manic disorder +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +delirium tremens|1 +(noun)|DTs|psychosis +delius|1 +(noun)|Delius|Frederick Delius|composer +deliver|12 +(verb)|present|talk|speak|utter|mouth|verbalize|verbalise +(verb)|bring|get|convey|fetch +(verb)|hand over|fork over|fork out|fork up|turn in|get in|render|pass|hand|reach|pass on|turn over|give +(verb)|rescue|save|carry through|pull through|bring through +(verb)|extradite|deport|expel|throw out|kick out +(verb)|render|return|communicate|pass on|pass|put across +(verb)|utter|emit|let out|let loose +(verb)|redeem|save +(verb)|drive home|give +(verb)|surrender|cede|give up|give|gift|present +(verb)|pitch|throw +(verb)|give birth|bear|birth|have|produce|bring forth +deliver the goods|1 +(verb)|succeed|win|come through|bring home the bacon +deliverable|2 +(adj)|transportation|transfer|transferral|conveyance +(noun)|product|production +deliverance|1 +(noun)|rescue|delivery|saving|recovery|retrieval +deliverer|4 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(noun)|savior|saviour|rescuer|benefactor|helper +(noun)|deliveryman|delivery boy|employee +(noun)|person|individual|someone|somebody|mortal|human|soul +delivery|7 +(noun)|bringing|transportation|transfer|transferral|conveyance +(noun)|birth|nativity|nascency|nascence +(noun)|manner of speaking|speech|expressive style|style +(noun)|livery|legal transfer|conveyance|conveyance of title|conveyancing|conveying +(noun)|pitch|throw +(noun)|rescue|deliverance|saving|recovery|retrieval +(noun)|obstetrical delivery|deed|feat|effort|exploit +delivery boy|1 +(noun)|deliveryman|deliverer|employee +delivery truck|1 +(noun)|delivery van|panel truck|van +delivery van|1 +(noun)|delivery truck|panel truck|van +deliveryman|1 +(noun)|delivery boy|deliverer|employee +dell|1 +(noun)|dingle|hollow|holler +delmonico steak|1 +(noun)|Delmonico steak|club steak|beefsteak +delonix|1 +(noun)|Delonix|genus Delonix|rosid dicot genus +delonix regia|1 +(noun)|royal poinciana|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +delorme|1 +(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect|designer +delouse|1 +(verb)|remove|take|take away|withdraw +delphi|1 +(noun)|Delphi|city|metropolis|urban center +delphian|1 +(adj)|Delphic|Delphian|city|metropolis|urban center +delphic|2 +(adj)|Delphic|Delphian|city|metropolis|urban center +(adj)|Delphic|oracular|prophetic |prophetical +delphic oracle|1 +(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle +delphinapterus|1 +(noun)|Delphinapterus|genus Delphinapterus|mammal genus +delphinapterus leucas|1 +(noun)|white whale|beluga|Delphinapterus leucas|dolphin +delphinidae|1 +(noun)|Delphinidae|family Delphinidae|mammal family +delphinium|1 +(noun)|flower +delphinium ajacis|1 +(noun)|rocket larkspur|Consolida ambigua|Delphinium ajacis|flower +delphinus|2 +(noun)|Delphinus|constellation +(noun)|Delphinus|genus Delphinus|mammal genus +delphinus delphis|1 +(noun)|common dolphin|Delphinus delphis|dolphin +delta|2 +(noun)|geological formation|formation +(noun)|letter|letter of the alphabet|alphabetic character +delta hepatitis|1 +(noun)|hepatitis delta|hepatitis +delta iron|1 +(noun)|iron|Fe|atomic number 26 +delta ray|1 +(noun)|electron|negatron +delta rhythm|1 +(noun)|delta wave|brainwave|brain wave|cortical potential +delta wave|1 +(noun)|delta rhythm|brainwave|brain wave|cortical potential +deltasone|1 +(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid|anti-inflammatory|anti-inflammatory drug +deltoid|2 +(adj)|simple |unsubdivided +(noun)|deltoid muscle|musculus deltoideus|skeletal muscle|striated muscle +deltoid eminence|1 +(noun)|deltoid tuberosity|tuberosity|tubercle|eminence +deltoid leaf|1 +(noun)|simple leaf +deltoid muscle|1 +(noun)|deltoid|musculus deltoideus|skeletal muscle|striated muscle +deltoid tuberosity|1 +(noun)|deltoid eminence|tuberosity|tubercle|eminence +delude|1 +(verb)|deceive|lead on|cozen|victimize|victimise +deluge|6 +(noun)|flood|inundation|torrent|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew +(noun)|downpour|cloudburst|waterspout|torrent|pelter|soaker|rain|rainfall +(noun)|flood|inundation|alluvion|geological phenomenon +(verb)|flood|inundate|swamp|fill|fill up|make full +(verb)|overwhelm|flood out|charge|saddle|burden +(verb)|inundate|submerge|flood +delusion|3 +(noun)|psychotic belief|psychological state|mental state +(noun)|hallucination|misconception +(noun)|illusion|head game|deception|deceit|dissembling|dissimulation +delusional|1 +(adj)|neurotic |psychoneurotic +delusional disorder|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +delusions of grandeur|1 +(noun)|delusion|psychotic belief +delusions of persecution|1 +(noun)|delusion|psychotic belief +delusive|1 +(adj)|false|unrealistic +delusory|1 +(adj)|deceptive|unreal +deluxe|2 +(adj)|gilded|luxurious|opulent|princely|sumptuous|rich +(adj)|de luxe|luxe|luxury|elegant +delve|1 +(verb)|dig|cut into|turn over|remove|take|take away|withdraw +demagnetisation|1 +(noun)|demagnetization|natural process|natural action|action|activity +demagnetise|2 +(verb)|demagnetize|erase|delete +(verb)|demagnetize|degauss|change|alter|modify +demagnetization|1 +(noun)|demagnetisation|natural process|natural action|action|activity +demagnetize|2 +(verb)|demagnetise|erase|delete +(verb)|demagnetise|degauss|change|alter|modify +demagog|1 +(noun)|demagogue|rabble-rouser|orator|speechmaker|rhetorician|public speaker|speechifier +demagogic|1 +(adj)|demagogical|orator|speechmaker|rhetorician|public speaker|speechifier +demagogical|1 +(adj)|demagogic|orator|speechmaker|rhetorician|public speaker|speechifier +demagogue|1 +(noun)|demagog|rabble-rouser|orator|speechmaker|rhetorician|public speaker|speechifier +demagoguery|1 +(noun)|demagogy|entreaty|prayer|appeal +demagogy|1 +(noun)|demagoguery|entreaty|prayer|appeal +demand|11 +(noun)|economic process +(noun)|request|petition|postulation +(noun)|need|condition|status +(noun)|activity +(noun)|requirement|duty|responsibility|obligation +(verb)|request|bespeak|call for|quest +(verb)|necessitate|ask|postulate|need|require|take|involve|call for +(verb)|exact|claim +(verb)|claim +(verb)|summon|summons|cite +(verb)|request|bespeak|call for|quest +demand-pull inflation|1 +(noun)|inflation|rising prices +demand deposit|1 +(noun)|deposit|bank deposit +demand feeding|1 +(noun)|infant feeding +demand for explanation|1 +(noun)|calling into question|challenge +demand for identification|1 +(noun)|challenge +demand loan|1 +(noun)|call loan|loan +demand note|1 +(noun)|note|promissory note|note of hand +demander|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +demanding|1 +(adj)|demanding |exigent|exacting|hard-to-please|hard to please|rigorous|stringent|tight|stern|strict|exacting|tightened|difficult|hard +demantoid|1 +(noun)|andradite +demarcate|2 +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|delimit|delimitate|limit|circumscribe|confine +demarcation|2 +(noun)|limit|demarcation line|boundary|bound|bounds +(noun)|line|dividing line|contrast|differentiation|distinction +demarcation line|1 +(noun)|limit|demarcation|boundary|bound|bounds +demarche|1 +(noun)|move +demasculinise|1 +(verb)|emasculate|castrate|demasculinize|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +demasculinize|1 +(verb)|emasculate|castrate|demasculinise|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +dematerialise|1 +(verb)|dematerialize|vanish|disappear|go away +dematerialize|1 +(verb)|dematerialise|vanish|disappear|go away +dematiaceae|1 +(noun)|Dematiaceae|family Dematiaceae|fungus family +demavend|1 +(noun)|Demavend|volcano +demean|1 +(verb)|take down|degrade|disgrace|put down|humiliate|mortify|chagrin|humble|abase +demeaning|1 +(adj)|humbling|humiliating|mortifying|undignified +demeaningly|1 +(adv)|humiliatingly +demeanor|1 +(noun)|demeanour|behavior|behaviour|conduct|deportment|trait +demeanour|1 +(noun)|demeanor|behavior|behaviour|conduct|deportment|trait +demeclocycline hydrochloride|1 +(noun)|Declomycin|tetracycline|Achromycin +demented|1 +(adj)|brainsick|crazy|distracted|disturbed|mad|sick|unbalanced|unhinged|insane +dementedly|1 +(adv)|insanely|crazily|madly +dementedness|1 +(noun)|dementia|insanity +dementia|1 +(noun)|dementedness|insanity +dementia praecox|1 +(noun)|schizophrenia|schizophrenic disorder|schizophrenic psychosis|psychosis +demerara|5 +(noun)|cane sugar +(noun)|Demerara|river +(noun)|Demerara|colony|settlement +(noun)|demerara rum|rum +(noun)|demerara sugar|brown sugar +demerara rum|1 +(noun)|demerara|rum +demerara sugar|1 +(noun)|demerara|brown sugar +demerit|2 +(noun)|mark|stigma|brand|stain +(noun)|fault|worth +demerol|1 +(noun)|meperidine|meperidine hydrochloride|Demerol|narcotic +demesne|2 +(noun)|estate|land|landed estate|acres|real property|real estate|realty +(noun)|domain|land|region +demeter|1 +(noun)|Demeter|Greek deity +demetrius|1 +(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general|full general|Macedonian +demetrius i|1 +(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general|full general|Macedonian +demetrius poliorcetes|1 +(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general|full general|Macedonian +demi-glaze|1 +(noun)|demiglace|sauce +demiglace|1 +(noun)|demi-glaze|sauce +demigod|2 +(noun)|superman|Ubermensch|leader +(noun)|daemon|deity|divinity|god|immortal +demijohn|1 +(noun)|bottle +demilitarise|2 +(verb)|demilitarize|disarm|unarm +(verb)|disarm|demilitarize +demilitarize|2 +(verb)|demilitarise|disarm|unarm +(verb)|disarm|demilitarise +demilitarized zone|1 +(noun)|DMZ|zone +demille|1 +(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker|filmmaker|film producer|movie maker +demimondaine|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +demimonde|1 +(noun)|class|social class|socio-economic class +demineralisation|2 +(noun)|demineralization|pathology +(noun)|demineralization|chemical process|chemical change|chemical action +demineralise|1 +(verb)|demineralize|remove|take|take away|withdraw +demineralization|2 +(noun)|demineralisation|pathology +(noun)|demineralisation|chemical process|chemical change|chemical action +demineralize|1 +(verb)|demineralise|remove|take|take away|withdraw +demise|1 +(noun)|death|dying|end|ending +demisemiquaver|1 +(noun)|thirty-second note|note|musical note|tone +demist|1 +(verb)|change|alter|modify +demister|1 +(noun)|heater|warmer +demitasse|2 +(noun)|cafe noir|coffee|java +(noun)|coffee cup +demiurge|1 +(noun)|deity|divinity|god|immortal +demo|2 +(noun)|demonstration|visual communication +(verb)|show|exhibit|present|demonstrate|show +demob|1 +(verb)|demobilize|demobilise|discharge|muster out +demobilisation|1 +(noun)|demobilization|social control +demobilise|2 +(verb)|demobilize|inactivate|discharge|muster out +(verb)|demobilize|demob|discharge|muster out +demobilization|1 +(noun)|demobilisation|social control +demobilize|2 +(verb)|inactivate|demobilise|discharge|muster out +(verb)|demobilise|demob|discharge|muster out +democracy|3 +(noun)|political orientation|ideology|political theory +(noun)|republic|commonwealth|political system|form of government +(noun)|majority rule|doctrine|philosophy|philosophical system|school of thought|ism +democrat|2 +(noun)|Democrat|politician|politico|pol|political leader +(noun)|populist|advocate|advocator|proponent|exponent +democratic|3 +(adj)|democratic |antiauthoritarian|classless|egalitarian|direct|parliamentary|parliamentary|participatory|popular|representative|republican|elective|elected +(adj)|advocate|advocator|proponent|exponent +(adj)|popular|common +democratic-republican party|1 +(noun)|Democratic-Republican Party|party|political party +democratic and popular republic of algeria|1 +(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country|African nation +democratic front for the liberation of palestine|1 +(noun)|Democratic Front for the Liberation of Palestine|DFLP|Popular Democratic Front for the Liberation of Palestine|PDFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +democratic party|1 +(noun)|Democratic Party|party|political party +democratic people's republic of korea|1 +(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country|Asian nation +democratic republic of sao tome and principe|1 +(noun)|Sao Tome and Principe|Democratic Republic of Sao Tome and Principe|Sao Tome e Principe|Sao Thome e Principe|St. Thomas and Principe|country|state|land +democratic republic of the congo|1 +(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country|African nation +democratic socialist republic of sri lanka|1 +(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country|state|land +democratisation|1 +(noun)|democratization|group action +democratise|2 +(verb)|democratize|change +(verb)|democratize|change|alter|modify +democratization|1 +(noun)|democratisation|group action +democratize|2 +(verb)|democratise|change +(verb)|democratise|change|alter|modify +democritus|1 +(noun)|Democritus|philosopher +demode|1 +(adj)|antique|ex|old-fashioned|old-hat|outmoded|passe|passee|unfashionable |unstylish +demodulate|1 +(verb)|extract|pull out|pull|pull up|take out|draw out +demodulation|1 +(noun)|reception +demodulator|1 +(noun)|detector|rectifier +demogorgon|1 +(noun)|Demogorgon|deity|divinity|god|immortal +demographer|1 +(noun)|demographist|population scientist|sociologist +demographic|2 +(adj)|sociology +(noun)|statistic +demographist|1 +(noun)|demographer|population scientist|sociologist +demography|1 +(noun)|human ecology|sociology +demoiselle|2 +(noun)|damsel|damoiselle|damosel|damozel|maid|maiden +(noun)|damselfish|percoid fish|percoid|percoidean +demolish|3 +(verb)|pulverize|pulverise|destroy|destruct +(verb)|crush|smash|humiliate|mortify|chagrin|humble|abase +(verb)|destroy|get the better of|overcome|defeat +demolished|1 +(adj)|dismantled|razed|destroyed +demolishing|1 +(noun)|razing|leveling|tearing down|destruction|devastation +demolition|2 +(noun)|destruction|wipeout|ending|conclusion|finish +(noun)|destruction|devastation +demon|3 +(noun)|devil|fiend|daemon|daimon|evil spirit +(noun)|monster|fiend|devil|ogre|unpleasant person|disagreeable person +(noun)|actor|doer|worker +demon-ridden|1 +(adj)|passionate +demonetisation|1 +(noun)|demonetization|termination|ending|conclusion +demonetise|1 +(verb)|demonetize|devalue|devaluate +demonetization|1 +(noun)|demonetisation|termination|ending|conclusion +demonetize|1 +(verb)|demonetise|devalue|devaluate +demoniac|3 +(adj)|amuck|amok|berserk|demoniacal|possessed|insane +(adj)|demoniacal|agitated +(noun)|monster|fiend|devil|demon|ogre +demoniacal|2 +(adj)|amuck|amok|berserk|demoniac|possessed|insane +(adj)|demoniac|agitated +demoniacally|1 +(adv)|frenetically +demonic|1 +(adj)|diabolic|diabolical|fiendish|hellish|infernal|satanic|unholy|evil |wicked +demonisation|1 +(noun)|demonization|disapprobation|condemnation +demonise|1 +(verb)|demonize|change|alter|modify +demonism|1 +(noun)|diabolism|Satanism|sorcery|black magic|black art|necromancy +demonization|1 +(noun)|demonisation|disapprobation|condemnation +demonize|1 +(verb)|demonise|change|alter|modify +demonolatry|1 +(noun)|diabolatry|devil-worship|worship +demonstrability|1 +(noun)|provability|indisputability|indubitability|unquestionability|unquestionableness +demonstrable|2 +(adj)|incontrovertible|incontestable |incontestible +(adj)|provable|obvious +demonstrably|1 +(adv)|provably|incontrovertibly +demonstrate|4 +(verb)|show|demo|exhibit|present|show +(verb)|prove|establish|show|shew|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|attest|certify|manifest|evidence|testify|bear witness|prove|evidence|show +(verb)|march|protest|resist|dissent +demonstrated|1 +(adj)|incontestable |incontestible +demonstration|5 +(noun)|presentation|presentment|show +(noun)|show +(noun)|manifestation|protest|objection|dissent +(noun)|monstrance|proof +(noun)|demo|visual communication +demonstrative|3 +(adj)|demonstrative |effusive|emotional|gushing|gushy|unreserved +(adj)|illustrative|instructive |informative +(noun)|demonstrative pronoun|pronoun +demonstrative of|1 +(adj)|supportive +demonstrative pronoun|1 +(noun)|demonstrative|pronoun +demonstrativeness|1 +(noun)|emotionality|emotionalism +demonstrator|3 +(noun)|teacher|instructor +(noun)|sales demonstrator|salesperson +(noun)|protester|reformer|reformist|crusader|meliorist +demoralisation|3 +(noun)|demoralization|confusion +(noun)|demoralization|depression +(noun)|demoralization|degradation|debasement +demoralise|2 +(verb)|corrupt|pervert|subvert|demoralize|debauch|debase|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|depress|deject|cast down|get down|dismay|dispirit|demoralize|discourage +demoralised|1 +(adj)|demoralized|discouraged|disheartened|pessimistic +demoralising|1 +(adj)|demoralizing|disheartening|dispiriting|discouraging +demoralization|3 +(noun)|demoralisation|degradation|debasement +(noun)|demoralisation|confusion +(noun)|demoralisation|depression +demoralize|3 +(verb)|corrupt|pervert|subvert|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|depress|deject|cast down|get down|dismay|dispirit|demoralise|discourage +(verb)|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +demoralized|1 +(adj)|demoralised|discouraged|disheartened|pessimistic +demoralizing|1 +(adj)|demoralising|disheartening|dispiriting|discouraging +demosthenes|1 +(noun)|Demosthenes|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader|Athenian +demosthenic|1 +(adj)|Demosthenic|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader|Athenian +demote|1 +(verb)|bump|relegate|break|kick downstairs|delegate|designate|depute|assign +demotic|3 +(adj)|Demotic|Modern Greek +(adj)|common +(noun)|Romaic|Demotic|Modern Greek +demotion|1 +(noun)|change +dempsey|1 +(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|The Manassa Mauler|prizefighter|gladiator +demulcent|2 +(adj)|emollient|salving|softening|soft +(noun)|medicine|medication|medicament|medicinal drug +demulen|1 +(noun)|Demulen|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +demulsify|2 +(verb)|change|alter|modify +(verb)|change integrity +demur|3 +(noun)|demurral|demurrer|objection +(verb)|except|object +(verb)|plead +demure|1 +(adj)|coy|overmodest|modest +demureness|2 +(noun)|modesty|reserve +(noun)|coyness|affectedness +demurrage|2 +(noun)|charge +(noun)|delay|holdup +demurral|1 +(noun)|demur|demurrer|objection +demurrer|3 +(noun)|demur|demurral|objection +(noun)|pleading +(noun)|defense|defence|denial|due process|due process of law +demyelinate|1 +(verb)|destroy|destruct +demyelination|1 +(noun)|degenerative disorder +demystify|1 +(verb)|clarify|clear up|elucidate +demythologisation|1 +(noun)|demythologization|restatement +demythologise|1 +(verb)|demythologize|change|alter|modify +demythologised|1 +(adj)|demythologized|rational +demythologization|1 +(noun)|demythologisation|restatement +demythologize|1 +(verb)|demythologise|change|alter|modify +demythologized|1 +(adj)|demythologised|rational +den|4 +(noun)|lair|habitation +(noun)|hideout|hideaway|hiding place +(noun)|unit|social unit +(noun)|room +den-mother|2 +(noun)|supervisor +(noun)|den mother|chaperon|chaperone +den haag|1 +(noun)|The Hague|'s Gravenhage|Den Haag|city|metropolis|urban center +den mother|2 +(noun)|chaperon|chaperone +(noun)|den-mother|supervisor +denali|1 +(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak +denali fault|1 +(noun)|Denali Fault|fault|geological fault|shift|fracture|break +denali national park|1 +(noun)|Denali National Park|national park +denary|2 +(adj)|tenfold|multiple +(adj)|decimal|quantitative +denationalisation|1 +(noun)|denationalization|social control +denationalise|1 +(verb)|denationalize|change|alter|modify +denationalization|1 +(noun)|denationalisation|social control +denationalize|1 +(verb)|denationalise|change|alter|modify +denaturalise|2 +(verb)|denaturalize|change|alter|modify +(verb)|denaturalize|change|alter|modify +denaturalize|2 +(verb)|denaturalise|change|alter|modify +(verb)|denaturalise|change|alter|modify +denaturant|1 +(noun)|substance|matter +denature|3 +(verb)|change|alter|modify +(verb)|change|alter|modify +(verb)|change|alter|modify +denatured|1 +(adj)|denaturized|denaturised|changed +denatured alcohol|1 +(noun)|ethyl alcohol|ethanol|fermentation alcohol|grain alcohol +denaturised|1 +(adj)|denatured|denaturized|changed +denaturized|1 +(adj)|denatured|denaturised|changed +denazification|1 +(noun)|de-Nazification|social process +denazify|1 +(verb)|cleanse +dendranthema|1 +(noun)|Dendranthema|genus Dendranthema|asterid dicot genus +dendranthema grandifloruom|1 +(noun)|florist's chrysanthemum|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum +dendraspis|1 +(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus +dendriform|1 +(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendroid|dendroidal|treelike|tree-shaped|branchy +dendrite|1 +(noun)|nerve fiber|nerve fibre +dendritic|1 +(adj)|nerve fiber|nerve fibre +dendroaspis|1 +(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus +dendroaspis augusticeps|1 +(noun)|black mamba|Dendroaspis augusticeps|mamba +dendrobium|1 +(noun)|orchid|orchidaceous plant +dendrocalamus|1 +(noun)|Dendrocalamus|genus Dendrocalamus|monocot genus|liliopsid genus +dendrocalamus giganteus|1 +(noun)|giant bamboo|kyo-chiku|Dendrocalamus giganteus|bamboo +dendrocolaptes|1 +(noun)|Dendrocolaptes|genus Dendrocolaptes|bird genus +dendrocolaptidae|1 +(noun)|Dendrocolaptidae|family Dendrocolaptidae|bird family +dendroctonus|1 +(noun)|Dendroctonus|genus Dendroctonus|arthropod genus +dendroctonus rufipennis|1 +(noun)|spruce bark beetle|Dendroctonus rufipennis|bark beetle +dendroica|1 +(noun)|Dendroica|genus Dendroica|bird genus +dendroica auduboni|1 +(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler|wood warbler +dendroica coronata|1 +(noun)|myrtle warbler|myrtle bird|Dendroica coronata|New World warbler|wood warbler +dendroica fusca|1 +(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler|wood warbler +dendroica petechia|1 +(noun)|yellow warbler|golden warbler|yellowbird|Dendroica petechia|New World warbler|wood warbler +dendroica striate|1 +(noun)|blackpoll|Dendroica striate|New World warbler|wood warbler +dendroica tigrina|1 +(noun)|Cape May warbler|Dendroica tigrina|New World warbler|wood warbler +dendroid|1 +(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroidal|treelike|tree-shaped|branchy +dendroidal|1 +(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|treelike|tree-shaped|branchy +dendrolagus|1 +(noun)|Dendrolagus|genus Dendrolagus|mammal genus +dendromecon|1 +(noun)|Dendromecon|genus Dendromecon|dilleniid dicot genus +deneb|1 +(noun)|Deneb|star +denebola|1 +(noun)|Denebola|star +deng xiaoping|1 +(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman|solon|national leader +dengue|1 +(noun)|dengue fever|dandy fever|breakbone fever|infectious disease +dengue fever|1 +(noun)|dengue|dandy fever|breakbone fever|infectious disease +deniable|1 +(adj)|deniable |disavowable|questionable|refutable|confutable|confutative +denial|5 +(noun)|speech act +(noun)|assertion|averment|asseveration +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|abnegation|self-abnegation|self-denial|self-renunciation|selflessness|self-sacrifice|renunciation|forgoing|forswearing +(noun)|defense|defence|demurrer|due process|due process of law +denier|3 +(noun)|unit of measurement|unit +(noun)|coin +(noun)|disputant|controversialist|eristic +denigrate|2 +(verb)|minimize|belittle|derogate|disparage|belittle|pick at +(verb)|defame|slander|smirch|asperse|calumniate|smear|sully|besmirch|charge|accuse +denigrating|1 +(adj)|calumniatory|calumnious|defamatory|denigrative|denigratory|libellous|libelous|slanderous|harmful +denigration|3 +(noun)|belittling|disparagement|depreciation|derogation +(noun)|aspersion|calumny|slander|defamation|attack +(noun)|deprecation|disparagement|dispraise +denigrative|1 +(adj)|calumniatory|calumnious|defamatory|denigrating|denigratory|libellous|libelous|slanderous|harmful +denigratory|1 +(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|libellous|libelous|slanderous|harmful +denim|2 +(noun)|jean|blue jean|trousers|pants +(noun)|dungaree|jean|fabric|cloth|material|textile +denis diderot|1 +(noun)|Diderot|Denis Diderot|philosopher +denisonia|1 +(noun)|Denisonia|genus Denisonia|reptile genus +denisonia superba|1 +(noun)|copperhead|Denisonia superba|elapid|elapid snake +denitrify|1 +(verb)|change state|turn +denizen|2 +(noun)|inhabitant|dweller|indweller|person|individual|someone|somebody|mortal|human|soul +(noun)|organism|being +denmark|1 +(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country|Scandinavian nation +denmark vesey|1 +(noun)|Vesey|Denmark Vesey|slave|insurgent|insurrectionist|freedom fighter|rebel +dennis gabor|1 +(noun)|Gabor|Dennis Gabor|physicist +dennstaedtia|1 +(noun)|Dennstaedtia|genus Dennstaedtia|fern genus +dennstaedtia punctilobula|1 +(noun)|hay-scented|hay-scented fern|scented fern|boulder fern|Dennstaedtia punctilobula|fern +dennstaedtiaceae|1 +(noun)|Dennstaedtiaceae|family Dennstaedtiaceae|fern family +denominate|1 +(verb)|designate +denomination|3 +(noun)|nongovernmental organization|NGO +(noun)|class|category|family +(noun)|appellation|designation|appellative|name +denominational|2 +(adj)|nongovernmental organization|NGO +(adj)|partisan|sectarian +denominationalism|2 +(noun)|sectarianism|narrow-mindedness|narrowness +(noun)|inclination|disposition|tendency +denominator|1 +(noun)|divisor +denotation|2 +(noun)|indication|naming +(noun)|reference|extension|meaning|substance +denotative|2 +(adj)|denotative |denotive|appellative|naming|designative|extensional|referential|numerical|numeric|explicit|expressed +(adj)|explicit|literal +denotatum|1 +(noun)|referent +denote|3 +(verb)|designate|denominate +(verb)|refer|mean|intend +(verb)|announce|inform +denotive|1 +(adj)|denotative |appellative|naming|designative|extensional|referential|numerical|numeric|explicit|expressed +denouement|2 +(noun)|result|resultant|final result|outcome|termination +(noun)|solution|answer|result|resolution|solvent +denounce|4 +(verb)|knock|criticize|criticise|pick apart +(verb)|stigmatize|stigmatise|brand|mark|label +(verb)|announce|denote +(verb)|tell on|betray|give away|rat|grass|shit|shop|snitch|stag|inform +denouncement|1 +(noun)|denunciation|speech act +dense|5 +(adj)|heavy|impenetrable|thick +(adj)|compact|thick|concentrated +(adj)|thick|impenetrable +(adj)|heavy +(adj)|dim|dull|dumb|obtuse|slow|stupid +dense-leaved elodea|1 +(noun)|Elodea densa|Egeria densa|waterweed +dense blazing star|1 +(noun)|Liatris pycnostachya|blazing star|button snakeroot|gayfeather|gay-feather|snakeroot +densely|2 +(adv)|dumbly|obtusely +(adv)|thickly +denseness|3 +(noun)|dumbness|slow-wittedness|stupidity +(noun)|concentration|density|compactness|spacing|spatial arrangement +(noun)|density|compactness +densification|1 +(noun)|compaction|compression|concretion|concentration +densimeter|1 +(noun)|densitometer|measuring instrument|measuring system|measuring device +densitometer|2 +(noun)|measuring instrument|measuring system|measuring device +(noun)|densimeter|measuring instrument|measuring system|measuring device +densitometry|1 +(noun)|measurement|measuring|measure|mensuration +density|2 +(noun)|denseness|compactness +(noun)|concentration|denseness|compactness|spacing|spatial arrangement +dent|4 +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|incision|scratch|prick|slit|depression|impression|imprint +(noun)|gouge|nick|blemish|defect|mar +(verb)|indent|flex|bend|deform|twist|turn +dent corn|1 +(noun)|Zea mays indentata|field corn +dental|2 +(adj)|bone|os +(adj)|medicine|medical specialty +dental amalgam|1 +(noun)|amalgam|alloy|metal +dental anatomy|1 +(noun)|gross anatomy|macroscopic anatomy +dental appliance|1 +(noun)|device +dental assistant|1 +(noun)|assistant|helper|help|supporter +dental care|1 +(noun)|care|attention|aid|tending +dental caries|1 +(noun)|cavity|caries|tooth decay|decay +dental consonant|1 +(noun)|alveolar consonant|alveolar|consonant +dental floss|1 +(noun)|floss|thread|yarn +dental gold|1 +(noun)|alloy|metal +dental hygienist|1 +(noun)|skilled worker|trained worker +dental implant|1 +(noun)|implant +dental medicine|1 +(noun)|dentistry|odontology|medicine|medical specialty +dental orthopaedics|1 +(noun)|orthodontics|orthodontia|orthodonture|dental orthopedics|dentistry|dental medicine|odontology +dental orthopedics|1 +(noun)|orthodontics|orthodontia|orthodonture|dental orthopaedics|dentistry|dental medicine|odontology +dental plaque|1 +(noun)|bacterial plaque|plaque +dental plate|1 +(noun)|denture|plate|dental appliance +dental practice|1 +(noun)|practice +dental practitioner|1 +(noun)|dentist|tooth doctor|medical practitioner|medical man +dental procedure|1 +(noun)|medical procedure +dental school|1 +(noun)|school of dentistry|graduate school|grad school +dental surgeon|1 +(noun)|dentist|tooth doctor|dental practitioner +dental surgery|1 +(noun)|dentistry|dental medicine|odontology +dental technician|1 +(noun)|denturist|technician +dentaria|1 +(noun)|Dentaria|genus Dentaria|dilleniid dicot genus +dentaria bulbifera|1 +(noun)|coral-root bittercress|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress|bitter cress +dentaria diphylla|1 +(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +dentate|1 +(adj)|rough +dentate leaf|1 +(noun)|leaf|leafage|foliage +dentate nucleus|1 +(noun)|nucleus +dented|1 +(adj)|bent|crumpled|damaged +denticle|1 +(noun)|tooth +denticulate|1 +(adj)|rough +denticulate leaf|1 +(noun)|dentate leaf +dentifrice|1 +(noun)|cleansing agent|cleanser|cleaner +dentin|2 +(noun)|dentine|animal material +(noun)|dentine|bone|os +dentine|2 +(noun)|dentin|animal material +(noun)|dentin|bone|os +dentist|1 +(noun)|tooth doctor|dental practitioner|medical practitioner|medical man +dentist's drill|1 +(noun)|burr drill|drill +dentistry|1 +(noun)|dental medicine|odontology|medicine|medical specialty +dentition|2 +(noun)|teething|odontiasis|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|teeth|set +denture|1 +(noun)|dental plate|plate|dental appliance +denturist|1 +(noun)|dental technician|technician +denudate|2 +(adj)|bald|bare|denuded|uncovered +(verb)|denude|bare|strip|clear +denudation|1 +(noun)|stripping|uncovering|baring|husking|removal|remotion +denude|1 +(verb)|bare|denudate|strip|clear +denuded|1 +(adj)|bald|bare|denudate|uncovered +denumerable|1 +(adj)|countable|enumerable|numerable|calculable +denunciation|1 +(noun)|denouncement|speech act +denunciative|1 +(adj)|comminatory|denunciatory|inculpatory |inculpative +denunciatory|1 +(adj)|comminatory|denunciative|inculpatory |inculpative +denver|1 +(noun)|Denver|Mile-High City|capital of Colorado|state capital +deny|7 +(verb)|contradict|negate|contravene +(verb)|renounce|repudiate +(verb)|withhold|keep back +(verb)|refuse|keep|hold on +(verb)|abnegate|control|hold in|hold|contain|check|curb|moderate +(verb)|traverse +(verb)|disavow +deodar|1 +(noun)|deodar cedar|Himalayan cedar|Cedrus deodara|cedar|cedar tree|true cedar +deodar cedar|1 +(noun)|deodar|Himalayan cedar|Cedrus deodara|cedar|cedar tree|true cedar +deodorant|1 +(noun)|deodourant|toiletry|toilet article|toiletries +deodorise|1 +(verb)|deodorize|deodourise|change|alter|modify +deodorize|1 +(verb)|deodorise|deodourise|change|alter|modify +deodourant|1 +(noun)|deodorant|toiletry|toilet article|toiletries +deodourise|1 +(verb)|deodorize|deodorise|change|alter|modify +deontic logic|1 +(noun)|modal logic +deossification|1 +(noun)|organic process|biological process +deoxidise|1 +(verb)|deoxidize|reduce|change +deoxidize|1 +(verb)|deoxidise|reduce|change +deoxyadenosine|1 +(noun)|nucleoside +deoxyadenosine monophosphate|1 +(noun)|A|nucleotide +deoxycytidine|1 +(noun)|cytidine|nucleoside +deoxycytidine monophosphate|1 +(noun)|C|nucleotide +deoxyephedrine|1 +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +deoxyguanosine|1 +(noun)|guanosine|nucleoside +deoxyguanosine monophosphate|1 +(noun)|G|nucleotide +deoxyribonucleic acid|1 +(noun)|desoxyribonucleic acid|DNA|polymer +deoxyribose|1 +(noun)|carbohydrate|saccharide|sugar +deoxythymidine|1 +(noun)|thymidine|nucleoside +deoxythymidine monophosphate|1 +(noun)|T|nucleotide +depardieu|1 +(noun)|Depardieu|Gerard Depardieu|actor|histrion|player|thespian|role player +deparia|1 +(noun)|Deparia|genus Deparia|fern genus +deparia acrostichoides|1 +(noun)|silvery spleenwort|Deparia acrostichoides|Athyrium thelypteroides|fern +depart|6 +(verb)|go|go away|exit|go out|get out|leave +(verb)|deviate|vary|diverge|differ +(verb)|part|start|start out|set forth|set off|set out|take off|leave|go forth|go away +(verb)|take leave|quit|leave|go forth|go away +(verb)|leave|pull up stakes|change +(verb)|sidetrack|digress|straggle|deviate|divert +departed|4 +(adj)|away|gone|absent +(adj)|bygone|bypast|foregone|gone|past +(adj)|asleep|at peace|at rest|deceased|gone|dead +(noun)|dead person|dead soul|deceased person|deceased|decedent|person|individual|someone|somebody|mortal|human|soul +departer|1 +(noun)|leaver|goer|migrant|migrator +departing|1 +(adj)|outbound|outward|outward-bound|outgoing +department|3 +(noun)|section|division +(noun)|administrative district|administrative division|territorial division +(noun)|sector|sphere +department head|1 +(noun)|head|chief|top dog +department of agriculture|1 +(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department +department of anthropology|1 +(noun)|anthropology department|academic department +department of biology|1 +(noun)|biology department|academic department +department of chemistry|1 +(noun)|chemistry department|academic department +department of commerce|1 +(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department +department of commerce and labor|1 +(noun)|Department of Commerce and Labor|executive department +department of computer science|1 +(noun)|academic department +department of corrections|1 +(noun)|corrections|local department|department of local government +department of defense|1 +(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department +department of defense laboratory system|1 +(noun)|Department of Defense Laboratory System|LABLINK|agency|federal agency|government agency|bureau|office|authority +department of economics|1 +(noun)|economics department|academic department +department of education|1 +(noun)|Department of Education|Education Department|Education|executive department +department of energy|1 +(noun)|Department of Energy|Energy Department|Energy|DOE|executive department +department of energy intelligence|1 +(noun)|Department of Energy Intelligence|DOEI|agency|federal agency|government agency|bureau|office|authority +department of english|1 +(noun)|English department|department of English|academic department +department of health and human services|1 +(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department +department of health education and welfare|1 +(noun)|Department of Health Education and Welfare|executive department +department of history|1 +(noun)|history department|academic department +department of housing and urban development|1 +(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department +department of justice|1 +(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department +department of justice canada|1 +(noun)|Department of Justice Canada|DoJC|international law enforcement agency +department of labor|1 +(noun)|Department of Labor|Labor Department|Labor|DoL|executive department +department of linguistics|1 +(noun)|linguistics department|academic department +department of local government|1 +(noun)|local department|government department +department of mathematics|1 +(noun)|mathematics department|academic department +department of music|1 +(noun)|music department|academic department +department of philosophy|1 +(noun)|philosophy department|academic department +department of physics|1 +(noun)|physics department|academic department +department of psychology|1 +(noun)|psychology department|academic department +department of sociology|1 +(noun)|sociology department|academic department +department of state|1 +(noun)|Department of State|State Department|State|DoS|executive department +department of the federal government|1 +(noun)|federal department|federal office|government department +department of the interior|1 +(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department +department of the treasury|1 +(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department +department of transportation|1 +(noun)|Department of Transportation|Transportation|DoT|executive department +department of veterans affairs|1 +(noun)|Department of Veterans Affairs|VA|executive department +department store|1 +(noun)|emporium|mercantile establishment|retail store|sales outlet|outlet +departmental|1 +(adj)|division +departure|3 +(noun)|going|going away|leaving|deed|feat|effort|exploit +(noun)|deviation|divergence|difference|variation|fluctuation +(noun)|passing|loss|exit|expiration|going|release|death|decease +departure gate|1 +(noun)|gate +departure lounge|1 +(noun)|lounge|waiting room|waiting area +departure tax|1 +(noun)|tax|taxation|revenue enhancement +departure time|1 +(noun)|time of departure|point|point in time +depend|2 +(verb)|be +(verb)|count|bet|look|calculate|reckon|trust|swear|rely|bank +depend on|1 +(verb)|devolve on|depend upon|ride|turn on|hinge on|hinge upon +depend upon|1 +(verb)|depend on|devolve on|ride|turn on|hinge on|hinge upon +dependability|1 +(noun)|dependableness|reliability|reliableness|responsibility|responsibleness +dependable|4 +(adj)|reliable |certain|sure|straight|tested|time-tested|tried|tried and true|true|undeviating|trustworthy|trusty +(adj)|honest|reliable|true|trustworthy |trusty +(adj)|rock-steady|steady-going|steady +(adj)|good|safe|secure|sound +dependableness|1 +(noun)|dependability|reliability|reliableness|responsibility|responsibleness +dependably|1 +(adv)|faithfully|reliably +dependance|1 +(noun)|dependence|dependency|state +dependant|3 +(adj)|dependent|qualified|conditional +(adj)|dependent|drug-addicted|hooked|strung-out|addicted +(noun)|dependent|recipient|receiver +dependant on|1 +(adj)|contingent|contingent on|dependent on|depending on|conditional +dependence|2 +(noun)|dependance|dependency|state +(noun)|addiction|dependency|habituation|physiological state|physiological condition +dependency|3 +(noun)|dependence|dependance|state +(noun)|addiction|dependence|habituation|physiological state|physiological condition +(noun)|colony|geographical area|geographic area|geographical region|geographic region +dependent|6 +(adj)|dependent |babelike|helpless|interdependent|mutualist|mutually beneficial|parasitic|parasitical|leechlike|bloodsucking|reliant|symbiotic|underage|myrmecophilous|unfree +(adj)|dependant|qualified|conditional +(adj)|dependent |subordinate +(adj)|subject|subordinate +(adj)|dependant|drug-addicted|hooked|strung-out|addicted +(noun)|dependant|recipient|receiver +dependent clause|1 +(noun)|subordinate clause|clause +dependent on|1 +(adj)|contingent|contingent on|dependant on|depending on|conditional +dependent variable|1 +(noun)|variable|variable quantity +depending on|1 +(adj)|contingent|contingent on|dependent on|dependant on|conditional +depersonalisation|3 +(noun)|depersonalization|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder +(noun)|depersonalization|psychological state|mental state +(noun)|depersonalization|reification|objectification +depersonalisation disorder|1 +(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder +depersonalisation neurosis|1 +(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|dissociative disorder +depersonalise|1 +(verb)|depersonalize|objectify|change|alter|modify +depersonalization|3 +(noun)|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder +(noun)|depersonalisation|psychological state|mental state +(noun)|depersonalisation|reification|objectification +depersonalization disorder|1 +(noun)|depersonalization|depersonalisation|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder +depersonalization neurosis|1 +(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalisation neurosis|dissociative disorder +depersonalize|1 +(verb)|depersonalise|objectify|change|alter|modify +depict|3 +(verb)|picture|render|show|represent|interpret +(verb)|describe|draw|set forth|expound|exposit +(verb)|portray|limn|represent|interpret +depicted|1 +(adj)|pictured|portrayed|delineated |represented|delineate +depicted object|1 +(noun)|subject|content|thing +depicting|1 +(noun)|depiction|portraying|portrayal|representational process +depiction|4 +(noun)|word picture|word-painting|delineation|picture|characterization|characterisation|description|verbal description +(noun)|depicting|portraying|portrayal|representational process +(noun)|delineation|limning|line drawing|drawing +(noun)|delineation|portrayal|pictorial representation|picturing +depictive|1 +(adj)|delineative|representational +depigmentation|1 +(noun)|coloration|colouration +depilate|1 +(verb)|epilate|remove|take|take away|withdraw +depilation|2 +(noun)|hairlessness|condition|status +(noun)|epilation|cleaning|cleansing|cleanup +depilator|1 +(noun)|depilatory|epilator|cosmetic|cosmetics +depilatory|3 +(adj)|hairless +(noun)|compound|chemical compound +(noun)|depilator|epilator|cosmetic|cosmetics +depilous|1 +(adj)|hairless +deplane|1 +(verb)|get off +depletable|1 +(adj)|exhaustible +deplete|1 +(verb)|consume|eat up|use up|eat|exhaust|run through|wipe out|spend|expend|drop +depleted|2 +(adj)|exhausted +(adj)|low|insufficient |deficient +depletion|2 +(noun)|decrease|diminution|reduction|step-down +(noun)|temporary state +deplorable|3 +(adj)|distressing|lamentable|pitiful|sad|sorry|bad +(adj)|execrable|miserable|woeful|wretched|inferior +(adj)|condemnable|criminal|reprehensible|wrong +deplorably|1 +(adv)|lamentably|sadly|woefully +deplore|2 +(verb)|knock|criticize|criticise|pick apart +(verb)|lament|bewail|bemoan|complain|kick|plain|sound off|quetch|kvetch +deploy|2 +(verb)|position +(verb)|spread|distribute +deployment|1 +(noun)|preparation|readying +deplumate|1 +(verb)|pluck|pull|tear|deplume|displume|strip +deplume|2 +(verb)|displume|plunder|despoil|loot|reave|strip|rifle|ransack|pillage|foray +(verb)|pluck|pull|tear|deplumate|displume|strip +depokene|1 +(noun)|valproic acid|Depokene|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +depolarisation|1 +(noun)|depolarization|change +depolarise|1 +(verb)|depolarize|change|alter|modify +depolarization|1 +(noun)|depolarisation|change +depolarize|1 +(verb)|depolarise|change|alter|modify +depone|1 +(verb)|swear|depose|declare +deponent|1 +(noun)|testifier|witness|witnesser|informant +depopulate|1 +(verb)|desolate|shrink|reduce +depopulated|1 +(adj)|uninhabited +depopulation|1 +(noun)|environmental condition +deport|3 +(verb)|behave|acquit|bear|conduct|comport|carry|hold|carry|bear|act|move +(verb)|extradite|deliver|expel|throw out|kick out +(verb)|expatriate|exile|expel|throw out|kick out +deportation|2 +(noun)|exile|expatriation|transportation|banishment|proscription +(noun)|ejection|exclusion|expulsion|riddance +deportee|1 +(noun)|exile|foreigner|alien|noncitizen|outlander +deportment|1 +(noun)|demeanor|demeanour|behavior|behaviour|conduct|trait +depose|2 +(verb)|force out|oust|throw out|drum out|boot out|kick out|expel +(verb)|swear|depone|declare +deposed|1 +(adj)|oust|throw out|drum out|boot out|kick out|expel +deposit|12 +(noun)|sedimentation|alluviation|geological phenomenon +(noun)|sediment|substance|matter +(noun)|deposition|accretion|accumulation +(noun)|bank deposit|fund|monetary fund +(noun)|down payment|payment +(noun)|security|surety +(noun)|guarantee|warrant|warrantee|warranty +(noun)|depository|repository|facility|installation +(noun)|deposition|buildup +(verb)|lodge|wedge|stick|fasten|fix|secure +(verb)|bank|give +(verb)|situate|fix|posit|put|set|place|pose|position|lay +deposit account|1 +(noun)|time deposit account|savings account +deposit box|1 +(noun)|safe-deposit|safe-deposit box|safety-deposit|safety deposit box|lockbox|strongbox|deedbox +deposition|4 +(noun)|deposit|accretion|accumulation +(noun)|interrogation|examination|interrogatory +(noun)|deposit|buildup +(noun)|dethronement|ouster|ousting +depositor|1 +(noun)|investor +depository|1 +(noun)|deposit|repository|facility|installation +depository financial institution|1 +(noun)|bank|banking concern|banking company|financial institution|financial organization|financial organisation +depository library|1 +(noun)|library|depository|deposit|repository +depot|2 +(noun)|terminal|terminus|station +(noun)|storehouse|entrepot|storage|store|depository|deposit|repository +deprave|1 +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|misdirect|change|alter|modify +depraved|3 +(adj)|evil|vicious|wicked +(adj)|unreformable|unregenerate|incorrigible +(adj)|immoral|perverse|perverted|reprobate|corrupt +depravity|2 +(noun)|corruption|degeneracy|immorality +(noun)|turpitude|transgression|evildoing +deprecate|2 +(verb)|disapprove|reject +(verb)|depreciate|disparage|belittle|pick at +deprecating|1 +(adj)|belittling|deprecative|deprecatory|depreciative|depreciatory|slighting|uncomplimentary +deprecation|2 +(noun)|prayer|petition|orison +(noun)|denigration|disparagement|dispraise +deprecative|2 +(adj)|belittling|deprecating|deprecatory|depreciative|depreciatory|slighting|uncomplimentary +(adj)|critical +deprecatory|1 +(adj)|belittling|deprecating|deprecative|depreciative|depreciatory|slighting|uncomplimentary +depreciate|3 +(verb)|deprecate|disparage|belittle|pick at +(verb)|devalue +(verb)|undervalue|devaluate|devalue|decrease|diminish|lessen|fall +depreciating|1 +(adj)|depreciative|depreciatory|decreasing +depreciation|3 +(noun)|decrease|diminution|reduction|step-down +(noun)|wear and tear|financial loss +(noun)|disparagement|derogation|disrespect|discourtesy +depreciation allowance|1 +(noun)|allowance|adjustment +depreciation charge|1 +(noun)|charge +depreciation rate|1 +(noun)|rate of depreciation|rate|charge per unit +depreciative|2 +(adj)|depreciating|depreciatory|decreasing +(adj)|belittling|deprecating|deprecative|deprecatory|depreciatory|slighting|uncomplimentary +depreciator|1 +(noun)|detractor|disparager|knocker|cynic|faultfinder +depreciatory|2 +(adj)|depreciating|depreciative|decreasing +(adj)|belittling|deprecating|deprecative|deprecatory|depreciative|slighting|uncomplimentary +depredation|2 +(noun)|predation|plundering|pillage|pillaging +(noun)|ravage|destruction|demolition|wipeout +depress|5 +(verb)|deject|cast down|get down|dismay|dispirit|demoralize|demoralise|discourage +(verb)|lower|take down|let down|get down|bring down +(verb)|lower|change|alter|modify +(verb)|press down|move|displace +(verb)|weaken +depressant|2 +(adj)|depressant |ataractic|ataraxic|sedative|tranquilizing|tranquilising|narcotic|narcotizing|narcotising|relaxant|soporific|soporiferous|somniferous|somnific|hypnogogic|hypnagogic +(noun)|sedative|sedative drug|downer|medicine|medication|medicament|medicinal drug|drug of abuse|street drug +depressed|4 +(adj)|down|low +(adj)|thin +(adj)|blue|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected +(adj)|indented|concave +depressed fracture|1 +(noun)|fracture|break +depressing|2 +(adj)|blue|dark|disconsolate|dismal|dispiriting|gloomy|grim|cheerless |uncheerful +(adj)|depressive|gloomy|saddening|sad +depression|10 +(noun)|psychological state|mental state +(noun)|slump|economic crisis|financial condition|economic condition +(noun)|natural depression|geological formation|formation +(noun)|sadness|unhappiness +(noun)|Depression|the Depression|the Great Depression|time period|period of time|period +(noun)|low|low pressure|air mass +(noun)|depressive disorder|clinical depression|affective disorder|major affective disorder|emotional disorder|emotional disturbance +(noun)|impression|imprint|concave shape|concavity|incurvation|incurvature +(noun)|angular position +(noun)|push|pushing +depressive|2 +(adj)|depressing|gloomy|saddening|sad +(noun)|sick person|diseased person|sufferer +depressive disorder|1 +(noun)|clinical depression|depression|affective disorder|major affective disorder|emotional disorder|emotional disturbance +depressor|3 +(noun)|depressor muscle|skeletal muscle|striated muscle +(noun)|depressor nerve|nerve|nervus +(noun)|device +depressor muscle|1 +(noun)|depressor|skeletal muscle|striated muscle +depressor nerve|1 +(noun)|depressor|nerve|nervus +depressurise|1 +(verb)|depressurize|decompress|adjust|set|correct +depressurize|1 +(verb)|depressurise|decompress|adjust|set|correct +deprivation|3 +(noun)|privation|want|poverty|poorness|impoverishment +(noun)|loss|disadvantage +(noun)|privation|social control +deprive|3 +(verb)|strip|divest|take +(verb)|withhold|keep back +(verb)|impoverish|worsen|decline +deprived|1 +(adj)|disadvantaged|underprivileged +deprived of|1 +(adj)|bereft of|empty +depth|5 +(noun)|extent +(noun)|degree|grade|level +(noun)|region|part +(noun)|abasement|degradation|abjection +(noun)|astuteness|profundity|profoundness|wisdom|sapience +depth bomb|1 +(noun)|depth charge|bomb +depth charge|1 +(noun)|depth bomb|bomb +depth finder|1 +(noun)|navigational instrument +depth gage|1 +(noun)|depth gauge|gauge|gage +depth gauge|1 +(noun)|depth gage|gauge|gage +depth psychology|1 +(noun)|psychoanalysis|analysis|psychotherapy +deputation|2 +(noun)|commission|delegation|delegacy|mission|organization|organisation +(noun)|delegating|delegation|relegating|relegation|authorization|authorisation|empowerment +depute|3 +(verb)|delegate|delegate|designate|assign +(verb)|deputize|deputise|appoint|charge +(verb)|delegate|designate|assign|appoint|charge +deputise|2 +(verb)|substitute|deputize|step in|supplant|replace|supersede|supervene upon +(verb)|depute|deputize|appoint|charge +deputize|2 +(verb)|substitute|deputise|step in|supplant|replace|supersede|supervene upon +(verb)|depute|deputise|appoint|charge +deputy|4 +(noun)|deputy sheriff|lawman|law officer|peace officer +(noun)|lieutenant|assistant|helper|help|supporter +(noun)|legislator +(noun)|surrogate|agent +deputy sheriff|1 +(noun)|deputy|lawman|law officer|peace officer +der fuhrer|1 +(noun)|Hitler|Adolf Hitler|Der Fuhrer|dictator|potentate|Nazi|German Nazi +deracinate|2 +(verb)|displace|uproot|place +(verb)|uproot|extirpate|root out|move|displace +deracination|2 +(noun)|displacement|movement +(noun)|extirpation|excision|pull|pulling +derail|2 +(verb)|sabotage|undermine|countermine|counteract|subvert|weaken +(verb)|jump|travel|go|move|locomote +derailment|1 +(noun)|mishap|misadventure|mischance +derain|1 +(noun)|Derain|Andre Derain|painter +derange|2 +(verb)|unbalance|madden|craze +(verb)|perturb|throw out of kilter|disorder|disarray +deranged|1 +(adj)|crazed|half-crazed|insane +derangement|2 +(noun)|mental unsoundness|unbalance|insanity +(noun)|upset|overthrow|disturbance +derate|1 +(verb)|lower|lour +derby|1 +(noun)|bowler hat|bowler|plug hat|hat|chapeau|lid +derecognise|1 +(verb)|decertify|derecognize +derecognize|1 +(verb)|decertify|derecognise +deregulate|1 +(verb)|exempt|relieve|free +deregulating|1 +(noun)|deregulation|liberation|release|freeing +deregulation|1 +(noun)|deregulating|liberation|release|freeing +derelict|4 +(adj)|forsaken +(adj)|delinquent|neglectful|remiss|negligent +(noun)|pauper|poor man +(noun)|abandoned ship|ship +dereliction|2 +(noun)|delinquency|willful neglect|negligence|neglect|neglectfulness +(noun)|negligence|carelessness|neglect|nonperformance|wrongdoing|wrongful conduct|misconduct|actus reus +derequisition|1 +(verb)|release|relinquish|resign|free|give up +derestrict|1 +(verb)|exempt|relieve|free +deride|1 +(verb)|mock|bemock +derision|2 +(noun)|disrespect|discourtesy +(noun)|ridicule|discourtesy|offense|offence|offensive activity +derisive|1 +(adj)|gibelike|jeering|mocking|taunting|disrespectful +derisively|1 +(adv)|scoffingly|derisorily|mockingly +derisorily|1 +(adv)|derisively|scoffingly|mockingly +derisory|1 +(adj)|absurd|cockeyed|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish +derivable|1 +(adj)|derived +derivation|7 +(noun)|beginning|origin|root|rootage|source +(noun)|deriving|etymologizing|explanation|account +(noun)|inference|illation +(noun)|linguistic process +(noun)|ancestry|lineage|filiation|inheritance|hereditary pattern +(noun)|drawing|drawing off +(noun)|drawing|drawing off +derivational|1 +(adj)|derivational +derivational morphology|1 +(noun)|morphology +derivative|4 +(adj)|derived +(noun)|derived function|differential coefficient|differential|first derivative|calculation|computation|figuring|reckoning +(noun)|derivative instrument|legal document|legal instrument|official document|instrument +(noun)|word +derivative instrument|1 +(noun)|derivative|legal document|legal instrument|official document|instrument +derive|5 +(verb)|deduce|infer|deduct|reason|reason out|conclude +(verb)|gain|obtain +(verb)|evolve +(verb)|educe|make|create +(verb)|come|descend +derived|2 +(adj)|calculated|calculable +(adj)|derived |copied|traced|derivative|plagiaristic|plagiarized|plagiarised|derivable +derived function|1 +(noun)|derivative|differential coefficient|differential|first derivative|calculation|computation|figuring|reckoning +deriving|1 +(noun)|derivation|etymologizing|explanation|account +derma|1 +(noun)|dermis|corium|stratum +dermabrasion|1 +(noun)|removal|remotion +dermacentor|1 +(noun)|Dermacentor|genus Dermacentor|arthropod genus +dermacentor variabilis|1 +(noun)|wood tick|American dog tick|Dermacentor variabilis|hard tick|ixodid +dermal|2 +(adj)|cuticular|epidermal|epidermic|stratum +(adj)|dermic|stratum +dermaptera|1 +(noun)|Dermaptera|order Dermaptera|animal order +dermatitis|1 +(noun)|eczema +dermatobia|1 +(noun)|Dermatobia|genus Dermatobia|arthropod genus +dermatobia hominis|1 +(noun)|human botfly|Dermatobia hominis|botfly +dermatoglyphic|1 +(noun)|wrinkle|furrow|crease|crinkle|seam|line +dermatoglyphics|2 +(noun)|life science|bioscience +(noun)|dermatoglyphic|wrinkle|furrow|crease|crinkle|seam|line +dermatologic|1 +(adj)|dermatological|medicine|medical specialty +dermatological|1 +(adj)|dermatologic|medicine|medical specialty +dermatologist|1 +(noun)|skin doctor|specialist|medical specialist +dermatology|1 +(noun)|medicine|medical specialty +dermatome|1 +(noun)|surgical instrument +dermatomycosis|1 +(noun)|dermatophytosis|fungal infection|mycosis +dermatomyositis|1 +(noun)|myositis +dermatophytosis|1 +(noun)|dermatomycosis|fungal infection|mycosis +dermatosclerosis|1 +(noun)|scleroderma|autoimmune disease|autoimmune disorder +dermatosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +dermestidae|1 +(noun)|Dermestidae|family Dermestidae|arthropod family +dermic|1 +(adj)|dermal|stratum +dermis|1 +(noun)|corium|derma|stratum +dermochelyidae|1 +(noun)|Dermochelyidae|family Dermochelyidae|reptile family +dermochelys|1 +(noun)|Dermochelys|genus Dermochelys|reptile genus +dermochelys coriacea|1 +(noun)|leatherback turtle|leatherback|leathery turtle|Dermochelys coriacea|sea turtle|marine turtle +dermoid cyst|1 +(noun)|cyst +dermoptera|1 +(noun)|Dermoptera|order Dermoptera|animal order +derogate|1 +(verb)|minimize|belittle|denigrate|disparage|belittle|pick at +derogation|2 +(noun)|disparagement|depreciation|disrespect|discourtesy +(noun)|abrogation|repeal|annulment +derogative|1 +(adj)|derogatory|disparaging|uncomplimentary +derogatory|1 +(adj)|derogative|disparaging|uncomplimentary +derrick|2 +(noun)|framework|frame|framing +(noun)|crane +derrida|1 +(noun)|Derrida|Jacques Derrida|philosopher|literary critic +derriere|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|fanny|ass|body part +derring-do|1 +(noun)|deed|feat|effort|exploit +derringer|1 +(noun)|pistol|handgun|side arm|shooting iron +derris|1 +(noun)|shrub|bush +derris elliptica|1 +(noun)|derris root|tuba root|Derris elliptica|vine +derris root|1 +(noun)|tuba root|Derris elliptica|vine +derv|1 +(noun)|diesel oil|diesel fuel +dervish|1 +(noun)|fakir|fakeer|faqir|faquir +des|3 +(noun)|diethylstilbestrol|diethylstilboestrol|stilbestrol|stilboestrol|DES|estrogen|oestrogen +(noun)|diethylstilbesterol|DES|stilbesterol|nonsteroid|nonsteroidal +(noun)|Delaware|Diamond State|First State|DE|American state +des moines|1 +(noun)|Des Moines|capital of Iowa|state capital +desalinate|1 +(verb)|desalt|desalinize|desalinise|change +desalination|1 +(noun)|desalinization|desalinisation|chemical process|chemical change|chemical action +desalinisation|1 +(noun)|desalination|desalinization|chemical process|chemical change|chemical action +desalinise|1 +(verb)|desalinate|desalt|desalinize|change +desalinization|1 +(noun)|desalination|desalinisation|chemical process|chemical change|chemical action +desalinize|1 +(verb)|desalinate|desalt|desalinise|change +desalt|1 +(verb)|desalinate|desalinize|desalinise|change +descale|1 +(verb)|scale|remove|take|take away|withdraw +descant|4 +(noun)|discant|accompaniment|musical accompaniment|backup|support +(verb)|sing +(verb)|yodel|warble|sing +(verb)|discourse|talk about|discuss +descant on|1 +(verb)|sing +descartes|1 +(noun)|Descartes|Rene Descartes|mathematician|philosopher +descend|4 +(verb)|fall|go down|come down|travel|go|move|locomote +(verb)|derive|come +(verb)|condescend|deign|act|move +(verb)|fall|settle|come +descendant|2 +(adj)|descendent|descending +(noun)|descendent|relative|relation +descendants|2 +(noun)|posterity|biological group +(noun)|descendant|descendent|relative|relation +descendent|2 +(adj)|descendant|descending +(noun)|descendant|relative|relation +descender|3 +(noun)|mover +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|line +descending|1 +(adj)|descending |declivitous|downhill|downward-sloping|degressive|descendant|descendent|down|downward|dropping|falling|drizzling|raining|down +descending aorta|1 +(noun)|aorta +descending colon|1 +(noun)|colon +descending node|1 +(noun)|node +descensus|1 +(noun)|prolapse|prolapsus|disability|disablement|handicap|impairment +descensus uteri|1 +(noun)|metroptosis|prolapse|prolapsus|descensus +descent|6 +(noun)|change of location|travel +(noun)|origin|extraction|ancestry|lineage|derivation|filiation +(noun)|motion|movement|move +(noun)|line of descent|lineage|filiation|kinship|family relationship|relationship +(noun)|declivity|fall|decline|declination|declension|downslope|slope|incline|side +(noun)|lineage|line|line of descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +describable|1 +(adj)|expressible +describe|4 +(verb)|depict|draw|set forth|expound|exposit +(verb)|report|account|inform +(verb)|identify|discover|key|key out|distinguish|name +(verb)|trace|draw|line|delineate|mark +described|1 +(adj)|delineated |represented|delineate +description|3 +(noun)|verbal description|statement +(noun)|speech act +(noun)|kind|sort|form|variety +descriptive|3 +(adj)|descriptive +(adj)|synchronic |synchronous|synchronal|synchronic +(adj)|descriptive +descriptive adjective|1 +(noun)|qualifying adjective|adjective +descriptive anthropology|1 +(noun)|ethnography|anthropology +descriptive clause|1 +(noun)|nonrestrictive clause|subordinate clause|dependent clause +descriptive geometry|1 +(noun)|projective geometry|geometry +descriptive linguistics|1 +(noun)|synchronic linguistics|linguistics +descriptor|2 +(noun)|form|word form|signifier|word +(noun)|information +descry|1 +(verb)|spot|espy|spy|sight +descurainia|1 +(noun)|Descurainia|genus Descurainia|dilleniid dicot genus +descurainia pinnata|1 +(noun)|tansy mustard|Descurainia pinnata|herb|herbaceous plant +desecrate|2 +(verb)|profane|outrage|violate|assail|assault|set on|attack +(verb)|deconsecrate|change by reversal|turn|reverse +desecrated|1 +(adj)|desecrated |deconsecrated|profaned|violated +desecration|1 +(noun)|profanation|blasphemy|sacrilege|irreverence|violation +desegrated|1 +(adj)|nonsegregated|unsegregated|integrated +desegregate|1 +(verb)|integrate|mix +desegregation|1 +(noun)|integration|integrating|group action +desensitisation|1 +(noun)|desensitization|decrease|decrement +desensitisation procedure|1 +(noun)|desensitization technique|desensitisation technique|desensitization procedure|systematic desensitization|systematic desensitisation|behavior therapy|behavior modification +desensitisation technique|1 +(noun)|desensitization technique|desensitization procedure|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy|behavior modification +desensitise|2 +(verb)|desensitize|change|alter|modify +(verb)|desensitize|change|alter|modify +desensitised|2 +(adj)|desensitized|insensitive +(adj)|desensitized|insensitive +desensitising|1 +(adj)|desensitizing |numbing +desensitization|1 +(noun)|desensitisation|decrease|decrement +desensitization procedure|1 +(noun)|desensitization technique|desensitisation technique|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy|behavior modification +desensitization technique|1 +(noun)|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy|behavior modification +desensitize|2 +(verb)|desensitise|change|alter|modify +(verb)|desensitise|change|alter|modify +desensitized|2 +(adj)|desensitised|insensitive +(adj)|desensitised|insensitive +desensitizing|1 +(adj)|desensitizing |desensitising|numbing +desert|4 +(adj)|godforsaken|waste|wild|inhospitable +(noun)|geographical area|geographic area|geographical region|geographic region|biome +(verb)|abandon|forsake|desolate|leave +(verb)|defect|flee|fly|take flight +desert boot|1 +(noun)|buskin|chukka boot|combat boot|half boot|top boot|boot +desert four o'clock|1 +(noun)|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock +desert fox|1 +(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal +desert holly|1 +(noun)|Atriplex hymenelytra|saltbush +desert iguana|1 +(noun)|Dipsosaurus dorsalis|iguanid|iguanid lizard +desert lynx|1 +(noun)|caracal|Lynx caracal|lynx|catamount +desert mariposa tulip|1 +(noun)|Calochortus kennedyi|mariposa|mariposa tulip|mariposa lily +desert olive|1 +(noun)|tanglebush|Forestiera neomexicana|forestiera +desert paintbrush|1 +(noun)|Castilleja chromosa|Indian paintbrush|painted cup +desert pea|1 +(noun)|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea|clianthus +desert plant|1 +(noun)|xerophyte|xerophytic plant|xerophile|xerophilous plant|vascular plant|tracheophyte +desert plume|1 +(noun)|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub|suffrutex +desert rat|1 +(noun)|kangaroo rat|Dipodomys phillipsii|pocket rat +desert rheumatism|1 +(noun)|coccidioidomycosis|coccidiomycosis|valley fever|fungal infection|mycosis +desert rose|1 +(noun)|impala lily|mock azalia|kudu lily|Adenium obesum|Adenium multiflorum|shrub|bush +desert sand verbena|1 +(noun)|Abronia villosa|sand verbena +desert selaginella|1 +(noun)|Selaginella eremophila|spikemoss|spike moss|little club moss +desert soil|1 +(noun)|desertic soil|soil|dirt +desert sunflower|1 +(noun)|Gerea canescens|wildflower|wild flower +desert tortoise|1 +(noun)|Gopherus agassizii|tortoise +desert willow|1 +(noun)|Chilopsis linearis|shrub|bush +deserted|2 +(adj)|abandoned|forsaken +(adj)|inaccessible |unaccessible +deserter|2 +(noun)|apostate|renegade|turncoat|recreant|ratter|quitter +(noun)|defector|wrongdoer|offender +desertic soil|1 +(noun)|desert soil|soil|dirt +desertification|1 +(noun)|geological process|geologic process +desertion|2 +(noun)|abandonment|defection|withdrawal +(noun)|abandonment|forsaking|rejection +deserts|2 +(noun)|comeuppance|comeupance|consequence|aftermath +(noun)|desert|geographical area|geographic area|geographical region|geographic region|biome +deserve|1 +(verb)|merit|be +deserved|1 +(adj)|due|merited +deserving|1 +(adj)|meriting|worth|worthy +deservingness|1 +(noun)|merit|meritoriousness|worthiness +desex|1 +(verb)|sterilize|sterilise|unsex|desexualize|desexualise|fix|operate on|operate +desexualise|2 +(verb)|desexualize|sublimate +(verb)|sterilize|sterilise|desex|unsex|desexualize|fix|operate on|operate +desexualize|2 +(verb)|desexualise|sublimate +(verb)|sterilize|sterilise|desex|unsex|desexualise|fix|operate on|operate +deshabille|1 +(noun)|dishabille|condition|status +desiccant|1 +(noun)|drying agent|drier|sicative|chemical agent +desiccate|4 +(adj)|arid|desiccated|dull +(verb)|dehydrate|preserve|keep +(verb)|dehydrate|dry|dry out +(verb)|dehydrate|dry up|dry|dry out +desiccated|3 +(adj)|dried-out|dry +(adj)|dried|dehydrated|preserved +(adj)|arid|desiccate|dull +desiccation|2 +(noun)|dehydration|dryness|waterlessness|xerotes +(noun)|dehydration|drying up|evaporation|extraction +desideratum|1 +(noun)|necessity|essential|requirement|requisite|necessary +desiderius erasmus|1 +(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian|theologist|theologizer|theologiser|humanist +design|14 +(noun)|designing|creating by mental acts +(noun)|plan|arrangement|organization|organisation|system +(noun)|blueprint|pattern|plan|program|programme +(noun)|pattern|figure|decoration|ornament|ornamentation +(noun)|purpose|intent|intention|aim|goal|end +(noun)|sketch|study +(noun)|invention|innovation|excogitation|conception|creativity|creativeness|creative thinking +(verb)|plan|project|contrive|create by mental act|create mentally +(verb)|intend|destine|designate|specify +(verb)|create|make +(verb)|plan|create by mental act|create mentally +(verb)|create|make +(verb)|gestate|conceive|conceptualize|conceptualise +(verb)|intend|mean|think +design criteria|1 +(noun)|criterion|standard +designate|5 +(adj)|incoming +(verb)|denominate +(verb)|delegate|depute|assign|appoint|charge +(verb)|destine|fate|doom|ordain +(verb)|intend|destine|specify|plan +designated|1 +(adj)|selected +designated driver|1 +(noun)|driver +designated hitter|1 +(noun)|batter|hitter|slugger|batsman +designation|3 +(noun)|appellation|denomination|appellative|name +(noun)|appointment|assignment|naming|decision|determination|conclusion +(noun)|identification|determination|finding +designative|1 +(adj)|denotative |denotive +designatum|1 +(noun)|referent +designed|4 +(adj)|planned +(adj)|designed |intentional|fashioned +(adj)|studied|premeditated +(adj)|configured|organized +designedly|1 +(adv)|intentionally|deliberately|on purpose|purposely|advisedly|by choice|by design +designer|4 +(noun)|interior designer|interior decorator|house decorator|room decorator|decorator|specialist|specializer|specialiser +(noun)|architect|creator +(noun)|intriguer|planner|contriver|deviser +(noun)|couturier|fashion designer|clothes designer|creator +designer drug|1 +(noun)|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +designing|2 +(adj)|scheming|artful +(noun)|design|creating by mental acts +desirability|2 +(noun)|desirableness|good|goodness +(noun)|sex appeal|desirableness|oomph|attractiveness +desirable|2 +(adj)|desirable |coveted|desired|in demand|sought after|delectable|sexually attractive|enviable|plummy|preferable|preferred|lovable|loveable|wanted +(adj)|suitable|worthy|eligible +desirableness|2 +(noun)|desirability|good|goodness +(noun)|sex appeal|desirability|oomph|attractiveness +desire|6 +(noun)|feeling +(noun)|tendency|inclination +(noun)|arousal +(verb)|want +(verb)|hope|trust|wish +(verb)|request|bespeak|call for|quest +desire to know|1 +(noun)|lust for learning|thirst for knowledge|curiosity|wonder +desired|2 +(adj)|coveted|in demand|sought after|desirable +(adj)|craved|wanted +desirous|1 +(adj)|desirous |appetent|athirst|hungry|thirsty|avid|devouring|esurient|greedy|covetous|envious|jealous +desist|1 +(verb)|abstain|refrain +desk|1 +(noun)|table +desk-bound|2 +(adj)|deskbound|inactive +(adj)| +desk clerk|1 +(noun)|hotel desk clerk|hotel clerk|clerk +desk dictionary|1 +(noun)|collegiate dictionary|dictionary|lexicon +desk officer|1 +(noun)|military officer|officer +desk phone|1 +(noun)|telephone|phone|telephone set +desk sergeant|1 +(noun)|deskman|station keeper|police sergeant|sergeant +deskbound|1 +(adj)|desk-bound|inactive +deskman|1 +(noun)|desk sergeant|station keeper|police sergeant|sergeant +desktop|2 +(noun)|top|top side|upper side|upside +(noun)|background|screen background|screen|CRT screen +desktop computer|1 +(noun)|personal computer|PC|microcomputer +desktop publishing|1 +(noun)|publication|publishing +desmanthus|1 +(noun)|Desmanthus|genus Desmanthus|rosid dicot genus +desmanthus ilinoensis|1 +(noun)|prairie mimosa|prickle-weed|Desmanthus ilinoensis|herb|herbaceous plant +desmid|1 +(noun)|green algae|chlorophyte|Desmidium|genus Desmidium +desmidiaceae|1 +(noun)|Desmidiaceae|family Desmidiaceae|protoctist family +desmidium|1 +(noun)|Desmidium|genus Desmidium|protoctist genus +desmodium|1 +(noun)|Desmodium|genus Desmodium|rosid dicot genus +desmodium gyrans|1 +(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub|bush +desmodium motorium|1 +(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub|bush +desmodium purpureum|1 +(noun)|beggarweed|Desmodium tortuosum|Desmodium purpureum|tick trefoil|beggar lice|beggar's lice +desmodium tortuosum|1 +(noun)|beggarweed|Desmodium tortuosum|Desmodium purpureum|tick trefoil|beggar lice|beggar's lice +desmodontidae|1 +(noun)|Desmodontidae|family Desmodontidae|mammal family +desmodus|1 +(noun)|Desmodus|genus Desmodus|mammal genus +desmodus rotundus|1 +(noun)|Desmodus rotundus|vampire bat|true vampire bat +desmograthus|1 +(noun)|Desmograthus|genus Desmograthus|amphibian genus +desmond tutu|1 +(noun)|Tutu|Desmond Tutu|archpriest|hierarch|high priest|prelate|primate +desolate|7 +(adj)|bare|barren|bleak|stark|inhospitable +(adj)|forlorn|godforsaken|lorn|forsaken +(adj)|inconsolable |disconsolate|unconsolable +(adj)|blasted|desolated|devastated|ravaged|ruined|wasted|destroyed +(verb)|abandon|forsake|desert|leave +(verb)|depopulate|shrink|reduce +(verb)|lay waste to|waste|devastate|ravage|scourge|destroy|ruin +desolated|1 +(adj)|blasted|desolate|devastated|ravaged|ruined|wasted|destroyed +desolately|1 +(adv)|disconsolately +desolation|4 +(noun)|devastation|deterioration|impairment +(noun)|bleakness|gloom|gloominess|glumness +(noun)|forlornness|loneliness|sadness|unhappiness +(noun)|devastation|ruin|ruination +desorb|2 +(verb)|disappear|vanish|go away +(verb)|remove|take|take away|withdraw +desorption|1 +(noun)|natural process|natural action|action|activity +desoxyribonucleic acid|1 +(noun)|deoxyribonucleic acid|DNA|polymer +despair|2 +(noun)|desperation|condition|status +(noun)|feeling +despairing|1 +(adj)|desperate|hopeless +despairingly|1 +(adv)|despondently +despatch|5 +(noun)|dispatch|communique|report|news report|story|account|write up +(noun)|dispatch|expedition|expeditiousness|celerity|quickness|rapidity +(noun)|dispatch|killing|kill|putting to death +(noun)|dispatch|shipment|departure|going|going away|leaving +(verb)|dispatch|send off|transport|send|ship +desperado|1 +(noun)|desperate criminal|criminal|felon|crook|outlaw|malefactor +desperate|7 +(adj)|despairing|hopeless +(adj)|do-or-die|resolute +(adj)|dangerous |unsafe +(adj)|heroic|brave |courageous|fearless +(adj)|imperative +(adj)|dire|critical +(noun)|unfortunate|unfortunate person +desperate criminal|1 +(noun)|desperado|criminal|felon|crook|outlaw|malefactor +desperate measure|1 +(noun)|means|agency|way +desperate straits|1 +(noun)|dire straits|pass|strait|straits +desperately|1 +(adv)|urgently +desperation|2 +(noun)|despair|condition|status +(noun)|recklessness|foolhardiness|rashness +despicability|1 +(noun)|baseness|contemptibility|despicableness|unworthiness +despicable|2 +(adj)|contemptible|ignoble +(adj)|ugly|vile|unworthy|evil |wicked +despicableness|1 +(noun)|baseness|contemptibility|despicability|unworthiness +despiramine|1 +(noun)|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +despisal|1 +(noun)|despising|hate|hatred +despise|1 +(verb)|contemn|scorn|disdain|hate|detest +despised|1 +(adj)|detested|hated|scorned|unloved +despising|1 +(noun)|despisal|hate|hatred +despite|2 +(noun)|contempt|disdain|scorn|dislike +(noun)|disregard|neglect +despiteful|1 +(adj)|spiteful|vindictive|malicious +despitefully|1 +(adv)|spitefully +despoil|2 +(verb)|plunder|loot|reave|strip|rifle|ransack|pillage|foray|take +(verb)|rape|spoil|violate|plunder|destroy|ruin +despoilation|1 +(noun)|spoil|spoliation|spoilation|despoilment|despoliation|plundering|pillage|pillaging +despoiled|1 +(adj)|pillaged|raped|ravaged|sacked|destroyed +despoiler|1 +(noun)|plunderer|pillager|looter|spoiler|raider|freebooter|thief|stealer +despoilment|1 +(noun)|spoil|spoliation|spoilation|despoilation|despoliation|plundering|pillage|pillaging +despoina|1 +(noun)|Persephone|Despoina|Kore|Cora|Greek deity +despoliation|1 +(noun)|spoil|spoliation|spoilation|despoilation|despoilment|plundering|pillage|pillaging +despond|1 +(verb)|despair +despondence|1 +(noun)|despondency|heartsickness|disconsolateness|depression +despondency|1 +(noun)|despondence|heartsickness|disconsolateness|depression +despondent|1 +(adj)|heartsick|hopeless +despondently|1 +(adv)|despairingly +despot|1 +(noun)|tyrant|autocrat|dictator|potentate +despotic|3 +(adj)|despotical|dictator|potentate +(adj)|undemocratic +(adj)|authoritarian|autocratic|dictatorial|tyrannical|undemocratic +despotical|1 +(adj)|despotic|dictator|potentate +despotism|2 +(noun)|absolutism|tyranny|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +desquamate|1 +(verb)|peel off|shed|molt|exuviate|moult|slough +desquamation|1 +(noun)|peeling|shedding|organic phenomenon +dessert|1 +(noun)|sweet|afters|course +dessert apple|1 +(noun)|eating apple|apple +dessert plate|1 +(noun)|plate +dessert spoon|2 +(noun)|spoon +(noun)|dessertspoon|dessertspoonful|containerful +dessert wine|1 +(noun)|wine|vino +dessertspoon|1 +(noun)|dessertspoonful|containerful +dessertspoonful|1 +(noun)|dessertspoon|containerful +dessiatine|1 +(noun)|area unit|square measure +destabilisation|1 +(noun)|destabilization|action +destabilise|2 +(verb)|destabilize|change +(verb)|destabilize|change|alter|modify +destabilization|2 +(noun)|change|alteration|modification +(noun)|destabilisation|action +destabilize|2 +(verb)|destabilise|change +(verb)|destabilise|change|alter|modify +destalinisation|1 +(noun)|destalinization|de-Stalinization|de-Stalinisation|social process +destalinise|1 +(verb)|destalinize|transform|transmute|transubstantiate +destalinization|1 +(noun)|de-Stalinization|destalinisation|de-Stalinisation|social process +destalinize|1 +(verb)|destalinise|transform|transmute|transubstantiate +destination|3 +(noun)|finish|goal|end +(noun)|terminus|goal|end +(noun)|address|name and address|direction|instruction +destine|2 +(verb)|fate|doom|designate|ordain +(verb)|intend|designate|specify|plan +destined|2 +(adj)|bound|oriented |orientated +(adj)|bound|certain |sure +destiny|3 +(noun)|fate|happening|occurrence|natural event +(noun)|Destiny|Fate|causal agent|cause|causal agency +(noun)|fortune|fate|luck|lot|circumstances|portion|condition +destitute|1 +(adj)|impoverished|indigent|necessitous|needy|poverty-stricken|poor +destitute of|1 +(adj)|barren of|devoid of|empty of|innocent of|void of|empty +destitution|1 +(noun)|poverty|poorness|impoverishment +destress|1 +(verb)|de-emphasize|de-emphasise|change|alter|modify +destroy|4 +(verb)|destruct|unmake|undo +(verb)|ruin +(verb)|demolish|get the better of|overcome|defeat +(verb)|kill +destroyable|1 +(adj)|destructible +destroyed|2 +(adj)|destroyed |annihilated|exterminated|wiped out|blasted|desolate|desolated|devastated|ravaged|ruined|wasted|blighted|spoilt|blotted out|obliterate|obliterated|broken|wiped out|impoverished|burned|burnt|burned-out|burnt-out|demolished|dismantled|razed|despoiled|pillaged|raped|ravaged|sacked|done for|kaput|gone|extinguished|fallen|finished|ruined|scorched|shattered|tattered|totaled|war-torn|war-worn|wrecked|damaged +(adj)|ruined|lost +destroyer|2 +(noun)|guided missile destroyer|warship|war vessel|combat ship +(noun)|ruiner|undoer|waster|uprooter|bad person +destroyer escort|1 +(noun)|warship|war vessel|combat ship +destroying angel|2 +(noun)|Amanita verna|agaric +(noun)|death cap|death cup|death angel|Amanita phalloides|agaric +destruct|2 +(verb)|destroy +(verb)|destroy|unmake|undo +destructibility|1 +(noun)|vulnerability +destructible|1 +(adj)|destructible |abolishable|destroyable +destruction|3 +(noun)|devastation|termination|ending|conclusion +(noun)|demolition|wipeout|ending|conclusion|finish +(noun)|end|death|state +destruction fire|1 +(noun)|fire|firing +destructive|1 +(adj)|destructive |annihilative|annihilating|devastating|withering|blasting|ruinous|cataclysmal|cataclysmic|caustic|corrosive|erosive|vitriolic|crushing|devastating|damaging|negative|erosive|obliterating|obscurant|ravaging|soul-destroying|wasteful|harmful|negative +destructive-metabolic|1 +(adj)|energy-releasing|catabolic |katabolic +destructive distillation|1 +(noun)|fractionation|fractional process +destructive metabolism|1 +(noun)|catabolism|katabolism|dissimilation|organic process|biological process +destructiveness|1 +(noun)|quality +desuetude|1 +(noun)|inaction|inactivity|inactiveness +desultory|1 +(adj)|purposeless +desynchronisation|1 +(noun)|asynchronism|asynchrony|desynchronization|desynchronizing|temporal relation +desynchronise|1 +(verb)|desynchronize|change by reversal|turn|reverse +desynchronization|1 +(noun)|asynchronism|asynchrony|desynchronisation|desynchronizing|temporal relation +desynchronize|1 +(verb)|desynchronise|change by reversal|turn|reverse +desynchronizing|1 +(noun)|asynchronism|asynchrony|desynchronization|desynchronisation|temporal relation +desyrel|1 +(noun)|trazodone|trazodone hydrochloride|Desyrel|nontricyclic|nontricyclic drug|nontricyclic antidepressant|nontricyclic antidepressant drug +detach|3 +(verb)|disconnect +(verb)|separate|divide +(verb)|come off|come away|separate|divide|part +detachable|1 +(adj)|detachable |clastic +detached|5 +(adj)|degage|uninvolved|unconcerned +(adj)|isolated|separated|set-apart|separate +(adj)|separated|unconnected +(adj)|detached |freestanding|separate|semidetached +(adj)|free|unfixed +detached house|1 +(noun)|single dwelling|house +detached retina|1 +(noun)|retinal detachment|detachment of the retina|visual impairment|visual defect|vision defect|visual disorder +detachment|5 +(noun)|withdrawal|indifference +(noun)|disengagement|separation +(noun)|insulation|insularity|insularism|isolation +(noun)|army unit +(noun)|separation|breakup|change|alteration|modification +detachment of the retina|1 +(noun)|retinal detachment|detached retina|visual impairment|visual defect|vision defect|visual disorder +detail|7 +(noun)|item|point|fact +(noun)|particular|item|part|portion|component part|component +(noun)|discussion|treatment|discourse +(noun)|gang|crew|work party +(noun)|contingent|military unit|military force|military group|force +(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|assign|specify|set apart +detail file|1 +(noun)|transaction file|computer file +detailed|1 +(adj)|elaborate|elaborated|careful +detailing|1 +(noun)|particularization|particularisation|description +details|6 +(noun)|inside information|information|info +(noun)|detail|item|point|fact +(noun)|detail|particular|item|part|portion|component part|component +(noun)|detail|discussion|treatment|discourse +(noun)|detail|gang|crew|work party +(noun)|contingent|detail|military unit|military force|military group|force +detain|3 +(verb)|confine +(verb)|stay|delay|check|retard|delay +(verb)|delay|hold up|decelerate|slow|slow down|slow up|retard +detainee|1 +(noun)|political detainee|prisoner|captive +detect|1 +(verb)|observe|find|discover|notice|sight +detectable|2 +(adj)|noticeable|perceptible +(adj)|perceptible|noticeable +detected|2 +(adj)|detected |perceived|sensed|perceived|heard +(adj)|noticed +detecting|1 +(noun)|detection|detective work|sleuthing|police work|police investigation +detection|4 +(noun)|sensing|perception +(noun)|catching|espial|spying|spotting|discovery|find|uncovering +(noun)|signal detection|reception +(noun)|detecting|detective work|sleuthing|police work|police investigation +detective|2 +(noun)|investigator|tec|police detective|policeman|police officer|officer +(noun)|investigator +detective agency|1 +(noun)|agency +detective novel|1 +(noun)|mystery novel|novel +detective story|1 +(noun)|mystery|mystery story|whodunit +detective work|1 +(noun)|detection|detecting|sleuthing|police work|police investigation +detector|3 +(noun)|sensor|sensing element|device +(noun)|demodulator|rectifier +(noun)|electronic equipment +detent|1 +(noun)|pawl|click|dog|catch|stop +detente|1 +(noun)|easing|easement|alleviation|relief +detention|2 +(noun)|hold|custody|confinement +(noun)|punishment|penalty|penalization|penalisation +detention camp|1 +(noun)|detention home|detention house|house of detention|correctional institution +detention cell|1 +(noun)|bullpen|detention centre|cell|jail cell|prison cell +detention centre|1 +(noun)|bullpen|detention cell|cell|jail cell|prison cell +detention home|1 +(noun)|detention house|house of detention|detention camp|correctional institution +detention house|1 +(noun)|detention home|house of detention|detention camp|correctional institution +deter|2 +(verb)|discourage|disapprove|reject +(verb)|dissuade|advise|counsel +deterge|1 +(verb)|wipe off|wipe away +detergence|1 +(noun)|detergency|utility|usefulness +detergency|1 +(noun)|detergence|utility|usefulness +detergent|3 +(adj)|detersive|purifying +(noun)|wetting agent|wetter|surfactant|surface-active agent +(noun)|cleansing agent|cleanser|cleaner +detergent builder|1 +(noun)|builder|material|stuff +deteriorate|2 +(verb)|decay|crumble|delapidate +(verb)|devolve|drop|degenerate|worsen|decline +deterioration|2 +(noun)|impairment|decay +(noun)|decline in quality|declension|worsening|decline|diminution +determent|1 +(noun)|deterrence|intimidation|discouragement +determinable|1 +(adj)|determinable |ascertainable|discoverable|definable|judicable|calculable +determinant|3 +(adj)|crucial|deciding|determinative|determining|decisive +(noun)|determiner|determinative|determining factor|causal factor|cognitive factor +(noun)|square matrix +determinate|3 +(adj)|determinate |fixed +(adj)|determinate |cymose +(adj)|definitive|conclusive +determinateness|1 +(noun)|definiteness|predictability +determination|4 +(noun)|finding|discovery|find|uncovering +(noun)|purpose|resoluteness|firmness|resolve|resolution +(noun)|decision|conclusion|judgment|judgement|mind +(noun)|decision|conclusion|choice|selection|option|pick +determinative|3 +(adj)|crucial|deciding|determinant|determining|decisive +(noun)|determiner|function word|closed-class word +(noun)|determinant|determiner|determining factor|causal factor|cognitive factor +determine|8 +(verb)|find|find out|ascertain +(verb)|shape|mold|influence|regulate|cause|do|make +(verb)|set +(verb)|specify|set|fix|limit|choose|take|select|pick out +(verb)|decide|make up one's mind +(verb)|specify|define|delineate|delimit|delimitate +(verb)|settle|square off|square up|conclude|resolve +(verb)|check|find out|see|ascertain|watch|learn +determined|5 +(adj)|resolute +(adj)|determined |ascertained|discovered|observed +(adj)|stubborn +(adj)|dictated|set|settled +(adj)|compulsive|driven|ambitious +determinedly|2 +(adv)|unfalteringly|unshakably|with determination +(adv)|ambitiously|with ambition +determiner|3 +(noun)|clincher|determining factor|argument|statement +(noun)|determinative|function word|closed-class word +(noun)|determinant|determinative|determining factor|causal factor|cognitive factor +determining|1 +(adj)|crucial|deciding|determinant|determinative|decisive +determining factor|2 +(noun)|determinant|determiner|determinative|causal factor|cognitive factor +(noun)|clincher|determiner|argument|statement +determinism|1 +(noun)|philosophical doctrine|philosophical theory +determinist|1 +(noun)|fatalist|predestinarian|predestinationist|necessitarian +deterministic|1 +(adj)|settled +deterrence|3 +(noun)|disincentive|rational motive +(noun)|determent|intimidation|discouragement +(noun)|hindrance|interference +deterrent|2 +(adj)|preventive |preventative +(noun)|hindrance|impediment|balk|baulk|check|handicap|difficulty +deterrent example|1 +(noun)|example|lesson|object lesson|admonition|monition|warning|word of advice +detersive|1 +(adj)|detergent|purifying +detest|1 +(verb)|hate|dislike +detestable|2 +(adj)|abhorrent|obscene|repugnant|repulsive|offensive +(adj)|abominable|execrable|odious|hateful +detestably|1 +(adv)|repulsively|abominably|odiously +detestation|1 +(noun)|abhorrence|abomination|execration|loathing|odium|hate|hatred|disgust +detested|1 +(adj)|despised|hated|scorned|unloved +dethaw|1 +(verb)|dissolve|thaw|unfreeze|unthaw|melt|liquefy|flux|liquify +dethrone|1 +(verb)|divest|disinvest +dethronement|1 +(noun)|deposition|ouster|ousting +detonate|2 +(verb)|explode|blow up|set off|change integrity +(verb)|explode|burst +detonating|1 +(adj)|bursting|exploding|explosive +detonating device|1 +(noun)|detonator|cap|explosive device +detonating fuse|1 +(noun)|fuse|fuze|fusee|fuzee|primer|priming +detonation|2 +(noun)|explosion|blowup|discharge +(noun)|explosion|burst +detonative|1 +(adj)|explosive +detonator|1 +(noun)|detonating device|cap|explosive device +detour|2 +(noun)|roundabout way|road|route +(verb)|deviate|divert +detox|1 +(noun)|ward|hospital ward +detoxicate|1 +(verb)|detoxify|remove|take|take away|withdraw +detoxification|2 +(noun)|treatment +(noun)|medical care|medical aid +detoxify|2 +(verb)|detoxicate|remove|take|take away|withdraw +(verb)|treat|care for +detract|1 +(verb)|take away|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +detraction|2 +(noun)|petty criticism|disparagement|depreciation|derogation +(noun)|disparagement|dispraise +detractive|1 +(adj)|decreasing +detractor|1 +(noun)|disparager|depreciator|knocker|cynic|faultfinder +detrain|1 +(verb)|get off +detransitivise|1 +(verb)|detransitivize|intransitivize|intransitivise|change|alter|modify +detransitivize|1 +(verb)|detransitivise|intransitivize|intransitivise|change|alter|modify +detribalisation|2 +(noun)|detribalization|social control +(noun)|detribalization|disunion +detribalise|1 +(verb)|detribalize|acculturate +detribalization|2 +(noun)|detribalisation|social control +(noun)|detribalisation|disunion +detribalize|1 +(verb)|detribalise|acculturate +detriment|1 +(noun)|hurt|damage|harm|impairment +detrimental|1 +(adj)|damaging|prejudicial|prejudicious|harmful +detrimentally|1 +(adv)|harmfully|noxiously +detrition|3 +(noun)|abrasion|attrition|corrasion|erosion|eroding|eating away|wearing|wearing away +(noun)|grinding|abrasion|attrition|friction|rubbing +(noun)|friction|rubbing|effort|elbow grease|exertion|travail|sweat +detritus|2 +(noun)|debris|dust|junk|rubble|rubbish|trash|scrap +(noun)|material|stuff +detroit|1 +(noun)|Detroit|Motor City|Motown|city|metropolis|urban center|port +detroit river|1 +(noun)|Detroit River|river +detusk|1 +(verb)|tusk|remove|take|take away|withdraw +deuce|4 +(noun)|tie +(noun)|two|2|II|digit|figure +(noun)|devil|dickens|exclamation|exclaiming +(noun)|playing card +deuce-ace|1 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|digit|figure +deuced|1 +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|everlasting|goddam|goddamn|goddamned|infernal|cursed |curst +deucedly|1 +(adv)|madly|insanely|deadly|devilishly +deus ex machina|1 +(noun)|causal agent|cause|causal agency +deuteranopia|1 +(noun)|Daltonism|green-blindness|red-green dichromacy|red-green color blindness|red-green colour blindness +deuteranopic|1 +(adj)|green-blind|blind |unsighted +deuterium|1 +(noun)|heavy hydrogen|hydrogen atom|isotope +deuterium oxide|1 +(noun)|heavy water|moderator +deuteromycetes|1 +(noun)|Deuteromycetes|class Deuteromycetes|class +deuteromycota|1 +(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division +deuteromycotina|1 +(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division +deuteron|1 +(noun)|particle +deuteronomy|1 +(noun)|Deuteronomy|Book of Deuteronomy|book +deutsche mark|1 +(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit +deutschland|1 +(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country|European nation +deutschmark|1 +(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit +deutzia|1 +(noun)|hydrangea +devaluate|2 +(verb)|devalue|degrade|cheapen +(verb)|depreciate|undervalue|devalue|decrease|diminish|lessen|fall +devaluation|2 +(noun)|regulation|regulating +(noun)|decrease|diminution|reduction|step-down +devalue|3 +(verb)|devaluate|degrade|cheapen +(verb)|change|alter|modify +(verb)|depreciate|undervalue|devaluate|decrease|diminish|lessen|fall +devalued|1 +(adj)|debased|degraded|low +devanagari|1 +(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary|syllabic script|script +devanagari script|1 +(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary|syllabic script|script +devastate|2 +(verb)|lay waste to|waste|desolate|ravage|scourge|destroy|ruin +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +devastated|1 +(adj)|blasted|desolate|desolated|ravaged|ruined|wasted|destroyed +devastating|3 +(adj)|annihilating|withering|disrespectful +(adj)|annihilative|annihilating|withering|destructive +(adj)|crushing|destructive +devastation|5 +(noun)|desolation|deterioration|impairment +(noun)|feeling +(noun)|desolation|ruin|ruination +(noun)|ravaging|plundering|pillage|pillaging +(noun)|destruction|termination|ending|conclusion +develop|21 +(verb)|create +(verb)|evolve|germinate|create by mental act|create mentally +(verb)|acquire|evolve|change +(verb)|grow|produce|get|acquire|change +(verb)|originate|arise|rise|uprise|spring up|grow|become +(verb)|build up|better|improve|amend|ameliorate|meliorate +(verb)|explicate|formulate|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +(verb)|train|prepare|educate|teach|learn|instruct +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|grow +(verb)|modernize|modernise|change +(verb)|make grow|change|alter|modify +(verb)|generate|bring forth +(verb)|grow|change +(verb)|change|alter|modify +(verb)|superimpose|superpose|lay over +(verb)|play +(verb)|play +(verb)|complicate|refine|rarify|elaborate +(verb)|break|recrudesce|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|expand +developed|3 +(adj)|developed |formed|mature|matured|formulated +(adj)|highly-developed|industrial +(adj)|improved +developer|2 +(noun)|creator +(noun)|photographic equipment +developing|4 +(adj)|underdeveloped|nonindustrial +(adj)|grow +(adj)|change|alter|modify +(noun)|development|processing +development|8 +(noun)|improvement +(noun)|evolution|process +(noun)|change|alteration|modification +(noun)|exploitation|use|usage|utilization|utilisation|employment|exercise +(noun)|district|territory|territorial dominion|dominion +(noun)|improvement|melioration +(noun)|growth|growing|maturation|ontogeny|ontogenesis|organic process|biological process +(noun)|developing|processing +developmental|1 +(adj)|organic process|biological process +developmental age|1 +(noun)|age +developmental anatomy|1 +(noun)|anatomy|general anatomy +developmental learning|1 +(noun)|learning|acquisition +developmental psychology|1 +(noun)|genetic psychology|child psychology|psychology|psychological science +deverbal noun|1 +(noun)|verbal noun|common noun +devi|1 +(noun)|Devi|Hindu deity +deviance|2 +(noun)|aberrance|aberrancy|aberration|abnormality|abnormalcy|abnormal condition +(noun)|deviation|abnormality|irregularity +deviant|2 +(adj)|aberrant|abnormal +(noun)|pervert|deviate|degenerate|reprobate|miscreant +deviate|5 +(noun)|pervert|deviant|degenerate|reprobate|miscreant +(verb)|vary|diverge|depart|differ +(verb)|divert|turn +(verb)|divert +(verb)|deflect|turn +deviated nasal septum|1 +(noun)|deviated septum +deviated septum|1 +(noun)|abnormality|abnormalcy|abnormal condition +deviation|5 +(noun)|divergence|departure|difference|variation|fluctuation +(noun)|statistic +(noun)|erroneousness|error +(noun)|deviance|abnormality|irregularity +(noun)|diversion|digression|deflection|deflexion|divagation|turn|turning +deviationism|1 +(noun)|desertion|abandonment|defection +deviationist|1 +(noun)|deserter|defector +device|5 +(noun)|instrumentality|instrumentation +(noun)|expressive style|style +(noun)|gimmick|twist|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|design|pattern|figure +(noun)|emblem +device characteristic|1 +(noun)|characteristic|property +device driver|1 +(noun)|driver|utility program|utility|service program +devices|6 +(noun)|inclination|disposition|tendency +(noun)|device|instrumentality|instrumentation +(noun)|device|expressive style|style +(noun)|device|gimmick|twist|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|device|design|pattern|figure +(noun)|device|emblem +devil|7 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +(noun)|fiend|demon|daemon|daimon|evil spirit +(noun)|deuce|dickens|exclamation|exclaiming +(noun)|hellion|heller|troublemaker|trouble maker|troubler|mischief-maker|bad hat +(noun)|monster|fiend|demon|ogre|unpleasant person|disagreeable person +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|displease +(verb)|cook|fix|ready|make|prepare +devil's advocate|1 +(noun)|debater|arguer +devil's apples|1 +(noun)|mandrake|Mandragora officinarum|herb|herbaceous plant +devil's cigar|1 +(noun)|Sarcosomataceae +devil's claw|1 +(noun)|common unicorn plant|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb|herbaceous plant +devil's darning needle|2 +(noun)|virgin's bower|old man's beard|Clematis virginiana|clematis +(noun)|dragonfly|darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate +devil's fig|1 +(noun)|prickly poppy|argemone|white thistle|herb|herbaceous plant +devil's flax|1 +(noun)|toadflax|butter-and-eggs|wild snapdragon|Linaria vulgaris|flower +devil's food|1 +(noun)|devil's food cake|chocolate cake +devil's food cake|1 +(noun)|devil's food|chocolate cake +devil's milk|2 +(noun)|petty spurge|Euphorbia peplus|spurge +(noun)|sun spurge|wartweed|wartwort|Euphorbia helioscopia|spurge +devil's tongue|1 +(noun)|snake palm|umbrella arum|Amorphophallus rivieri|arum|aroid +devil's turnip|1 +(noun)|white bryony|Bryonia alba|bryony|briony +devil's urn|1 +(noun)|Sarcosomataceae +devil's walking stick|1 +(noun)|American angelica tree|Hercules'-club|Aralia spinosa|shrub|bush +devil's weed|1 +(noun)|caltrop|Tribulus terestris|subshrub|suffrutex +devil-may-care|2 +(adj)|carefree|freewheeling|happy-go-lucky|harum-scarum|slaphappy|irresponsible +(adj)|raffish|rakish|unconventional +devil-worship|1 +(noun)|diabolatry|demonolatry|worship +devil dog|1 +(noun)|Marine|leatherneck|shipboard soldier|serviceman|military man|man|military personnel +devil grass|1 +(noun)|Bermuda grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass +devil lily|1 +(noun)|tiger lily|kentan|Lilium lancifolium|lily +devil nettle|1 +(noun)|spurge nettle|tread-softly|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +devil ray|1 +(noun)|Mobula hypostoma|manta|manta ray|devilfish +devil tree|1 +(noun)|dita|dita bark|Alstonia scholaris|tree +devil worshiper|1 +(noun)|believer|worshiper|worshipper +deviled egg|1 +(noun)|stuffed egg|dish +devilfish|3 +(noun)|gray whale|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale|whalebone whale +(noun)|octopus|octopod +(noun)|manta|manta ray|ray +devilise|1 +(verb)|devilize|diabolize|diabolise|change|alter|modify +devilish|3 +(adj)|diabolic|diabolical|mephistophelian|mephistophelean|evil |wicked +(adj)|rascally|roguish|playful +(adv)|devilishly +devilishly|3 +(adv)|diabolically|fiendishly +(adv)|devilish +(adv)|madly|insanely|deadly|deucedly +devilize|1 +(verb)|devilise|diabolize|diabolise|change|alter|modify +devilment|1 +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +devilry|2 +(noun)|deviltry|evil|immorality|wickedness|iniquity +(noun)|mischief|mischief-making|mischievousness|deviltry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +deviltry|2 +(noun)|devilry|evil|immorality|wickedness|iniquity +(noun)|mischief|mischief-making|mischievousness|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +devilwood|1 +(noun)|American olive|Osmanthus americanus|tree +devious|3 +(adj)|oblique|indirect +(adj)|shifty|untrustworthy |untrusty +(adj)|circuitous|roundabout|indirect +deviousness|2 +(noun)|obliqueness|indirectness +(noun)|crookedness|dishonesty +devisal|1 +(noun)|contrivance|invention +devise|5 +(noun)|will|testament +(noun)|gift|inheritance|heritage +(verb)|invent|contrive|excogitate|formulate|forge|create by mental act|create mentally +(verb)|organize|organise|prepare|get up|machinate|initiate|pioneer +(verb)|bequeath|will|leave +devisee|1 +(noun)|beneficiary|donee +deviser|1 +(noun)|planner|contriver|person|individual|someone|somebody|mortal|human|soul +devising|1 +(noun)|fashioning|making|production +devisor|1 +(noun)|testator|testate +devitalisation|1 +(noun)|devitalization|decrease|diminution|reduction|step-down +devitalise|1 +(verb)|devitalize|weaken +devitalization|1 +(noun)|devitalisation|decrease|diminution|reduction|step-down +devitalize|1 +(verb)|devitalise|weaken +devitrify|2 +(verb)|crystallize|crystalize|crystalise|effloresce +(verb)|change state|turn +devoice|1 +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +devoid|1 +(adj)|absent +devoid of|1 +(adj)|barren of|destitute of|empty of|innocent of|void of|empty +devoir|1 +(noun)|politeness|civility +devolution|2 +(noun)|degeneration|process +(noun)|devolvement|delegating|delegation|relegating|relegation|deputation +devolve|3 +(verb)|delegate|designate|depute|assign +(verb)|fall|return|pass|change hands +(verb)|deteriorate|drop|degenerate|worsen|decline +devolve on|1 +(verb)|depend on|depend upon|ride|turn on|hinge on|hinge upon +devolvement|1 +(noun)|devolution|delegating|delegation|relegating|relegation|deputation +devon|2 +(noun)|Devon|Devonshire|county +(noun)|Devon|cattle|cows|kine|oxen|Bos taurus +devonian|1 +(noun)|Devonian|Devonian period|Age of Fishes|period|geological period +devonian period|1 +(noun)|Devonian|Devonian period|Age of Fishes|period|geological period +devonshire|1 +(noun)|Devon|Devonshire|county +devonshire cream|1 +(noun)|clotted cream|Devonshire cream|cream +devote|3 +(verb)|give|dedicate|consecrate|commit|use|utilize|utilise|apply|employ +(verb)|give|pay|think|cogitate|cerebrate +(verb)|reserve +devoted|2 +(adj)|dedicated +(adj)|dedicated +devotedness|1 +(noun)|devotion|love +devotee|1 +(noun)|fan|buff|lover|follower +devotion|4 +(noun)|devotedness|love +(noun)|commitment|allegiance|loyalty|dedication +(noun)|idolatry|veneration|cultism|worship +(noun)|prayer|supplication +devotional|1 +(adj)|pious +devour|4 +(verb)|destroy|ruin +(verb)|enjoy|bask|relish|savor|savour +(verb)|down|consume|go through|eat +(verb)|guttle|raven|pig|eat +devoured|1 +(adj)|eaten up|eaten +devourer|1 +(noun)|eater|feeder +devouring|1 +(adj)|avid|esurient|greedy|desirous +devout|2 +(adj)|god-fearing|pious|religious +(adj)|dear|earnest|heartfelt|sincere +devoutly|1 +(adv)|piously +devoutness|1 +(noun)|religiousness|piety|piousness +devries|1 +(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist|phytologist|plant scientist +dew|1 +(noun)|condensation|condensate +dew point|1 +(noun)|temperature|saturation point +dew worm|1 +(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|red worm|oligochaete|oligochaete worm +dewar|2 +(noun)|Dewar flask|Dewar|vacuum flask|vacuum bottle +(noun)|Dewar|Sir James Dewar|chemist|physicist +dewar flask|1 +(noun)|Dewar flask|Dewar|vacuum flask|vacuum bottle +dewberry|2 +(noun)|dewberry bush|running blackberry|blackberry|blackberry bush +(noun)|berry +dewberry bush|1 +(noun)|dewberry|running blackberry|blackberry|blackberry bush +dewdrop|1 +(noun)|drop|bead|pearl +dewey|3 +(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian|bibliothec +(noun)|Dewey|George Dewey|Admiral Dewey|naval officer +(noun)|Dewey|John Dewey|philosopher|educator|pedagogue +dewey decimal classification|1 +(noun)|Dewey decimal classification|Dewey decimal system|decimal system of classification|classification system +dewey decimal system|1 +(noun)|Dewey decimal classification|Dewey decimal system|decimal system of classification|classification system +deweyan|1 +(adj)|Deweyan|philosopher|educator|pedagogue +dewitt clinton|1 +(noun)|Clinton|DeWitt Clinton|politician|politico|pol|political leader +dewlap|1 +(noun)|skin|tegument|cutis +dewy|1 +(adj)|bedewed|wet +dewy-eyed|1 +(adj)|childlike|wide-eyed|simple|naive |naif +dexamethasone|1 +(noun)|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +dexamethasone intensol|1 +(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +dexedrine|1 +(noun)|dextroamphetamine sulphate|Dexedrine|amphetamine|pep pill|upper|speed +dexone|1 +(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +dexter|1 +(adj)|dextral +dexterity|1 +(noun)|manual dexterity|sleight|adeptness|adroitness|deftness|facility|quickness +dexterous|1 +(adj)|deft|dextrous|adroit +dexterously|1 +(adv)|dextrously|deftly +dextral|2 +(adj)|dextral |dexter|dextrorse|dextrorsal|clockwise|right-handed +(adj)|right-handed +dextrality|1 +(noun)|right-handedness|handedness|laterality +dextroamphetamine sulphate|1 +(noun)|Dexedrine|amphetamine|pep pill|upper|speed +dextrocardia|1 +(noun)|abnormality|abnormalcy|abnormal condition +dextroglucose|1 +(noun)|dextrose|grape sugar|glucose +dextrorotary|1 +(adj)|dextrorotatory|right-handed|clockwise +dextrorotation|1 +(noun)|clockwise rotation|rotation|revolution|gyration +dextrorotatory|1 +(adj)|dextrorotary|right-handed|clockwise +dextrorsal|1 +(adj)|dextrorse|dextral +dextrorse|1 +(adj)|dextrorsal|dextral +dextrose|1 +(noun)|dextroglucose|grape sugar|glucose +dextrous|1 +(adj)|deft|dexterous|adroit +dextrously|1 +(adv)|dexterously|deftly +dflp|1 +(noun)|Democratic Front for the Liberation of Palestine|DFLP|Popular Democratic Front for the Liberation of Palestine|PDFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +dg|1 +(noun)|decigram|metric weight unit|weight unit +dhak|1 +(noun)|dak|palas|Butea frondosa|Butea monosperma|tree +dhaka|1 +(noun)|Dhaka|Dacca|capital of Bangladesh|national capital +dhal|1 +(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dahl|Cajanus cajan|shrub|bush +dharhan|1 +(noun)|Dharhan|town +dharma|1 +(noun)|Dharma|Hindu deity +dhaulagiri|1 +(noun)|Dhaulagiri|mountain peak +dhava|1 +(noun)|dhawa|tree +dhawa|1 +(noun)|dhava|tree +dhegiha|2 +(noun)|Dhegiha|Sioux|Siouan +(noun)|Dhegiha|Siouan|Siouan language +dhobi itch|1 +(noun)|tinea|ringworm|roundworm +dhodhekanisos|1 +(noun)|Dodecanese|Dhodhekanisos|Aegean island +dhole|1 +(noun)|Cuon alpinus|wild dog +dhoti|1 +(noun)|breechcloth|breechclout|loincloth|G-string +dhow|1 +(noun)|sailing vessel|sailing ship +dhu'l-hijja|1 +(noun)|Dhu'l-Hijja|Dhu al-Hijja|Islamic calendar month +dhu'l-qa'dah|1 +(noun)|Dhu'l-Qa'dah|Dhu al-Qadah|Islamic calendar month +dhu al-hijja|1 +(noun)|Dhu'l-Hijja|Dhu al-Hijja|Islamic calendar month +dhu al-qadah|1 +(noun)|Dhu'l-Qa'dah|Dhu al-Qadah|Islamic calendar month +di-iodotyrosine|1 +(noun)|iodotyrosine +dia|1 +(noun)|Defense Intelligence Agency|DIA|military intelligence|United States intelligence agency +diabatic|1 +(adj)|diabatic +diabeta|1 +(noun)|glyburide|DiaBeta|Micronase|antidiabetic|antidiabetic drug +diabetes|1 +(noun)|polygenic disorder|polygenic disease +diabetes insipidus|1 +(noun)|diabetes +diabetes mellitus|1 +(noun)|DM|diabetes +diabetic|3 +(adj)|polygenic disorder|polygenic disease +(adj)|ill |sick +(noun)|sick person|diseased person|sufferer +diabetic acidosis|1 +(noun)|ketoacidosis|acidosis +diabetic coma|1 +(noun)|Kussmaul's coma|coma|comatoseness +diabetic diet|1 +(noun)|diet +diabolatry|1 +(noun)|demonolatry|devil-worship|worship +diabolic|2 +(adj)|devilish|diabolical|mephistophelian|mephistophelean|evil |wicked +(adj)|demonic|diabolical|fiendish|hellish|infernal|satanic|unholy|evil |wicked +diabolical|2 +(adj)|devilish|diabolic|mephistophelian|mephistophelean|evil |wicked +(adj)|demonic|diabolic|fiendish|hellish|infernal|satanic|unholy|evil |wicked +diabolically|1 +(adv)|devilishly|fiendishly +diabolise|1 +(verb)|devilize|devilise|diabolize|change|alter|modify +diabolism|1 +(noun)|demonism|Satanism|sorcery|black magic|black art|necromancy +diabolist|1 +(noun)|Satanist|disciple|adherent +diabolize|1 +(verb)|devilize|devilise|diabolise|change|alter|modify +diacalpa|1 +(noun)|Diacalpa|genus Diacalpa|fern genus +diacetylmorphine|1 +(noun)|heroin|opiate|hard drug +diachronic|1 +(adj)|diachronic |historical +diacritic|2 +(adj)|diacritical|discriminating +(noun)|diacritical mark|mark +diacritical|1 +(adj)|diacritic|discriminating +diacritical mark|1 +(noun)|diacritic|mark +diadem|1 +(noun)|crown|jewelled headdress|crown jewels +diadophis|1 +(noun)|Diadophis|genus Diadophis|reptile genus +diadromous|1 +(adj)|diadromous +diaeresis|1 +(noun)|umlaut|dieresis|diacritical mark|diacritic +diaghilev|1 +(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman|promoter|impresario +diaglyph|1 +(noun)|intaglio|glyptic art|glyptography +diagnosable|1 +(adj)|identifiable +diagnose|2 +(verb)|name|analyze|analyse|study|examine|canvass|canvas +(verb)|analyze|analyse|study|examine|canvass|canvas +diagnosing|1 +(noun)|diagnosis|designation|identification +diagnosis|1 +(noun)|diagnosing|designation|identification +diagnostic|2 +(adj)|designation|identification +(adj)|symptomatic|symptomatic of|characteristic +diagnostic assay|1 +(noun)|diagnostic test|assay +diagnostic procedure|1 +(noun)|diagnostic technique|procedure|process +diagnostic program|1 +(noun)|utility program|utility|service program +diagnostic technique|1 +(noun)|diagnostic procedure|procedure|process +diagnostic test|1 +(noun)|diagnostic assay|assay +diagnostician|1 +(noun)|pathologist|specialist|medical specialist +diagnostics|1 +(noun)|nosology|medicine|medical specialty +diagonal|7 +(adj)|oblique +(adj)|aslant|aslope|slanted|slanting|sloped|sloping|inclined +(noun)|straight line +(noun)|bias|straight line +(noun)|line|line +(noun)|set +(noun)|solidus|slash|virgule|stroke|separatrix|punctuation|punctuation mark +diagonal matrix|1 +(noun)|square matrix +diagonalisation|1 +(noun)|diagonalization|resolution|resolving +diagonalise|1 +(verb)|diagonalize|translate|transform +diagonalizable|1 +(adj)|square matrix +diagonalization|1 +(noun)|diagonalisation|resolution|resolving +diagonalize|1 +(verb)|diagonalise|translate|transform +diagram|2 +(noun)|drawing +(verb)|plot|draw +diagrammatic|1 +(adj)|diagrammatical|delineated |represented|delineate +diagrammatical|1 +(adj)|diagrammatic|delineated |represented|delineate +diagrammatically|1 +(adv)|graphically +diagramming|1 +(noun)|schematization|schematisation|representation +diakinesis|1 +(noun)|phase|stage +dial|6 +(noun)|face +(noun)|control|controller +(noun)|indicator +(noun)|telephone dial|selector|selector switch +(verb)|operate|control +(verb)|choose|take|select|pick out +dial phone|1 +(noun)|dial telephone|telephone|phone|telephone set +dial telephone|1 +(noun)|dial phone|telephone|phone|telephone set +dialect|1 +(noun)|idiom|accent|non-standard speech +dialect atlas|1 +(noun)|linguistic atlas|atlas|book of maps|map collection +dialect geography|1 +(noun)|linguistic geography|linguistics +dialectal|1 +(adj)|non-standard speech +dialectic|3 +(adj)|dialectical|philosophy +(noun)|philosophy +(noun)|contradiction +dialectical|2 +(adj)|public speaking|speechmaking|speaking|oral presentation +(adj)|dialectic|philosophy +dialectical materialism|1 +(noun)|materialism|physicalism +dialectician|1 +(noun)|logician|logistician +dialectics|3 +(noun)|rationale|principle +(noun)|dialectic|philosophy +(noun)|dialectic|contradiction +dialeurodes|1 +(noun)|Dialeurodes|genus Dialeurodes|arthropod genus +dialeurodes citri|1 +(noun)|citrus whitefly|Dialeurodes citri|whitefly +dialog|3 +(noun)|dialogue|duologue|talk|talking +(noun)|dialogue|script|book|playscript +(noun)|dialogue|literary composition|literary work +dialog box|1 +(noun)|panel|window +dialogue|4 +(noun)|dialog|duologue|talk|talking +(noun)|dialog|script|book|playscript +(noun)|dialog|literary composition|literary work +(noun)|negotiation|talks|discussion|give-and-take|word +dialyse|1 +(verb)|dialyze|separate +dialysis|1 +(noun)|chemical analysis|qualitative analysis +dialysis machine|1 +(noun)|dialyzer|medical instrument +dialyze|1 +(verb)|dialyse|separate +dialyzer|1 +(noun)|dialysis machine|medical instrument +diam|1 +(noun)|diameter|length +diamagnet|1 +(noun)|material|stuff +diamagnetic|1 +(adj)|magnetism|magnetic attraction|magnetic force +diamagnetism|1 +(noun)|magnetism|magnetic attraction|magnetic force +diamante|1 +(noun)|sequin|spangle|adornment +diamantine|1 +(adj)|carbon|C|atomic number 6|transparent gem +diameter|2 +(noun)|diam|length +(noun)|straight line +diametral|1 +(adj)|diametric|diametrical|straight line +diametric|2 +(adj)|diametral|diametrical|straight line +(adj)|diametrical|opposite|polar|different +diametrical|2 +(adj)|diametral|diametric|straight line +(adj)|diametric|opposite|polar|different +diametrical opposition|1 +(noun)|antipodal|antipodal opposition|opposition +diamine|1 +(noun)|organic compound +diamond|5 +(noun)|jewel|gem|precious stone +(noun)|adamant|carbon|C|atomic number 6|transparent gem +(noun)|playing card +(noun)|baseball diamond|infield|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|ball field|baseball field|playing field|athletic field|playing area|field +diamond dust|1 +(noun)|ice crystal|snow mist|poudrin|ice needle|frost snow|frost mist|crystal +diamond jim|1 +(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier|moneyman +diamond jim brady|1 +(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier|moneyman +diamond jubilee|1 +(noun)|jubilee +diamond point|1 +(noun)|point +diamond state|1 +(noun)|Delaware|Diamond State|First State|DE|American state +diamond wedding|1 +(noun)|diamond wedding anniversary|wedding anniversary +diamond wedding anniversary|1 +(noun)|diamond wedding|wedding anniversary +diamondback|1 +(noun)|diamondback rattlesnake|Crotalus adamanteus|rattlesnake|rattler +diamondback rattlesnake|1 +(noun)|diamondback|Crotalus adamanteus|rattlesnake|rattler +diamondback terrapin|1 +(noun)|Malaclemys centrata|terrapin +diamonte|1 +(noun)|fabric|cloth|material|textile +diana|2 +(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat +(noun)|Diana|Roman deity +diane de poitiers|1 +(noun)|Diane de Poitiers|Duchesse de Valentinois|female aristocrat +diangus gratianopolitanus|1 +(noun)|cheddar pink|Diangus gratianopolitanus|pink|garden pink +dianoetic|1 +(adj)|discursive|logical +dianthus|1 +(noun)|Dianthus|genus Dianthus|caryophylloid dicot genus +dianthus barbatus|1 +(noun)|sweet William|Dianthus barbatus|pink|garden pink +dianthus caryophyllus|1 +(noun)|carnation|clove pink|gillyflower|Dianthus caryophyllus|pink|garden pink +dianthus chinensis|1 +(noun)|china pink|rainbow pink|Dianthus chinensis|pink|garden pink +dianthus chinensis heddewigii|1 +(noun)|Japanese pink|Dianthus chinensis heddewigii|china pink|rainbow pink|Dianthus chinensis +dianthus deltoides|1 +(noun)|maiden pink|Dianthus deltoides|pink|garden pink +dianthus latifolius|1 +(noun)|button pink|Dianthus latifolius|pink|garden pink +dianthus plumarius|1 +(noun)|cottage pink|grass pink|Dianthus plumarius|pink|garden pink +dianthus supurbus|1 +(noun)|fringed pink|Dianthus supurbus|pink|garden pink +diapason|1 +(noun)|diapason stop|organ stop +diapason stop|1 +(noun)|diapason|organ stop +diapedesis|1 +(noun)|organic phenomenon +diapensia|1 +(noun)|subshrub|suffrutex +diapensia family|1 +(noun)|Diapensiaceae|family Diapensiaceae|dilleniid dicot family +diapensiaceae|1 +(noun)|Diapensiaceae|family Diapensiaceae|diapensia family|dilleniid dicot family +diapensiales|1 +(noun)|Diapensiales|order Diapensiales|plant order +diaper|2 +(noun)|nappy|napkin|garment +(noun)|fabric|cloth|material|textile +diaper dermatitis|1 +(noun)|diaper rash|dermatitis +diaper rash|1 +(noun)|diaper dermatitis|dermatitis +diaphanous|1 +(adj)|filmy|gauzy|gossamer|see-through|sheer|transparent|vaporous|cobwebby|thin +diapheromera|1 +(noun)|Diapheromera femorata|walking stick|walkingstick|stick insect +diapheromera femorata|1 +(noun)|diapheromera|Diapheromera femorata|walking stick|walkingstick|stick insect +diaphone|1 +(noun)|foghorn +diaphoresis|1 +(noun)|perspiration|sweating|sudation|hidrosis|bodily process|body process|bodily function|activity +diaphoretic|2 +(adj)|sudorific|bodily process|body process|bodily function|activity +(noun)|medicine|medication|medicament|medicinal drug +diaphragm|4 +(noun)|stop|mechanical device +(noun)|midriff|muscular structure|musculature|muscle system|membrane|tissue layer +(noun)|pessary|contraceptive diaphragm|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +(noun)|disk|disc +diaphragmatic hernia|1 +(noun)|hiatus hernia|hiatal hernia|hernia|herniation +diaphragmatic pleurisy|1 +(noun)|epidemic pleurodynia|epidemic myalgia|myosis|Bornholm disease|epidemic disease +diaphyseal|1 +(adj)|diaphysial|long bone|os longum +diaphysial|1 +(adj)|diaphyseal|long bone|os longum +diaphysis|1 +(noun)|shaft|long bone|os longum +diapir|1 +(noun)|geological formation|formation +diapsid|1 +(noun)|diapsid reptile|reptile|reptilian +diapsid reptile|1 +(noun)|diapsid|reptile|reptilian +diapsida|1 +(noun)|Diapsida|subclass Diapsida|reptile|reptilian +diarchy|1 +(noun)|dyarchy|political system|form of government +diarist|1 +(noun)|diary keeper|journalist|writer +diarrhea|1 +(noun)|diarrhoea|looseness of the bowels|symptom +diarrheal|1 +(adj)|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|unconstipated |regular +diarrheic|1 +(adj)|diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrhoeic|unconstipated |regular +diarrhetic|1 +(adj)|diarrheal|diarrhoeal|diarrhoetic|diarrheic|diarrhoeic|unconstipated |regular +diarrhoea|1 +(noun)|diarrhea|looseness of the bowels|symptom +diarrhoeal|1 +(adj)|diarrheal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|unconstipated |regular +diarrhoeic|1 +(adj)|diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|unconstipated |regular +diarrhoetic|1 +(adj)|diarrheal|diarrhoeal|diarrhetic|diarrheic|diarrhoeic|unconstipated |regular +diarthrosis|1 +(noun)|synovial joint|articulatio synovialis|joint|articulation|articulatio +diary|2 +(noun)|journal|writing|written material|piece of writing +(noun)|journal +diary keeper|1 +(noun)|diarist|journalist|writer +dias|2 +(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator +(noun)|Defense Intelligence Agency|DIA|military intelligence|United States intelligence agency +diaspididae|1 +(noun)|Diaspididae|family Diaspididae|arthropod family +diaspora|3 +(noun)|body +(noun)|Diaspora|dispersion|scattering +(noun)|distribution|dispersion +diastasis|1 +(noun)|dislocation +diastole|1 +(noun)|pulse|pulsation|heartbeat|beat +diastolic|1 +(adj)|pulse|pulsation|heartbeat|beat +diastolic pressure|1 +(noun)|blood pressure +diastrophism|1 +(noun)|geological process|geologic process +diathermy|1 +(noun)|modality +diathermy machine|1 +(noun)|medical instrument +diathesis|1 +(noun)|sensitivity|predisposition +diatom|1 +(noun)|alga|algae|phytoplankton +diatomaceous earth|1 +(noun)|diatomite|kieselguhr|earth|ground|filter +diatomic|1 +(adj)|substance|matter +diatomite|1 +(noun)|diatomaceous earth|kieselguhr|earth|ground|filter +diatomophyceae|1 +(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class +diatonic|2 +(adj)|diatonic +(adj)|tonal +diatonic scale|1 +(noun)|scale|musical scale +diatribe|1 +(noun)|fulmination|denunciation|denouncement +diaz|1 +(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator +diazepam|1 +(noun)|Valium|benzodiazepine +diazo|1 +(adj)|cation +diazonium|1 +(noun)|cation +diazoxide|1 +(noun)|Hyperstat|vasodilator|vasodilative +dibasic acid|1 +(noun)|acid +dibasic salt|1 +(noun)|salt +dibber|1 +(noun)|dibble|hand tool +dibble|3 +(noun)|dibber|hand tool +(verb)|plant|set +(verb)|dig|dig out +dibbuk|1 +(noun)|dybbuk|devil|fiend|demon|daemon|daimon +dibrach|1 +(noun)|pyrrhic|metrical foot|foot|metrical unit +dibranch|1 +(noun)|dibranchiate|dibranchiate mollusk|cephalopod|cephalopod mollusk +dibranchia|1 +(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class +dibranchiata|1 +(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class +dibranchiate|1 +(noun)|dibranchiate mollusk|dibranch|cephalopod|cephalopod mollusk +dibranchiate mollusk|1 +(noun)|dibranchiate|dibranch|cephalopod|cephalopod mollusk +dibucaine|1 +(noun)|intravenous anesthetic +dicamptodon|1 +(noun)|dicamptodontid|salamander +dicamptodon ensatus|1 +(noun)|Pacific giant salamander|Dicamptodon ensatus|salamander +dicamptodontid|1 +(noun)|dicamptodon|salamander +dicamptodontidae|1 +(noun)|Dicamptodontidae|family Dicamptodontidae|amphibian family +dicarboxylic|1 +(adj)|group|radical|chemical group +dice|3 +(noun)|die|cube|square block +(verb)|cube|cut +(verb)|gamble +dice box|1 +(noun)|dice cup|container +dice cup|1 +(noun)|dice box|container +dicentra|1 +(noun)|Dicentra|genus Dicentra|dilleniid dicot genus +dicentra canadensis|1 +(noun)|squirrel corn|Dicentra canadensis|herb|herbaceous plant +dicentra cucullaria|1 +(noun)|Dutchman's breeches|Dicentra cucullaria|herb|herbaceous plant +dicentra spectabilis|1 +(noun)|bleeding heart|lyreflower|lyre-flower|Dicentra spectabilis|herb|herbaceous plant +dicer|1 +(noun)|mechanical device +diceros|1 +(noun)|Diceros|genus Diceros|mammal genus +diceros bicornis|1 +(noun)|black rhinoceros|Diceros bicornis|rhinoceros|rhino +diceros simus|1 +(noun)|white rhinoceros|Ceratotherium simum|Diceros simus|rhinoceros|rhino +dicey|1 +(adj)|chancy|chanceful|dodgy|dangerous |unsafe +dichloride|1 +(noun)|bichloride|chloride +dichlorodiphenyltrichloroethane|1 +(noun)|DDT|insecticide|insect powder|pollutant +dichloroethyl sulfide|1 +(noun)|mustard gas|mustard agent|blistering agent|sulfur mustard|poison gas +dichloromethane|1 +(noun)|methylene chloride|chloride +dichondra|1 +(noun)|Dichondra micrantha|vine +dichondra micrantha|1 +(noun)|dichondra|Dichondra micrantha|vine +dichotomisation|1 +(noun)|dichotomization|division +dichotomise|1 +(verb)|dichotomize|classify|class|sort|assort|sort out|separate +dichotomization|1 +(noun)|dichotomisation|division +dichotomize|1 +(verb)|dichotomise|classify|class|sort|assort|sort out|separate +dichotomous|1 +(adj)|divided +dichotomy|1 +(noun)|duality|classification|categorization|categorisation +dichroism|1 +(noun)|pleochroism +dichromacy|1 +(noun)|dichromatism|dichromatopsia|dichromia|dichromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +dichromasy|1 +(noun)|dichromacy|dichromatism|dichromatopsia|dichromia|color blindness|colour blindness|color vision deficiency|colour vision deficiency +dichromat|1 +(noun)|color-blind person +dichromate|1 +(noun)|bichromate|salt +dichromatic|2 +(adj)|color blindness|colour blindness|color vision deficiency|colour vision deficiency +(adj)|bicolor|bicolour|bicolored|bicoloured|bichrome|colored |coloured|colorful +dichromatism|1 +(noun)|dichromacy|dichromatopsia|dichromia|dichromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +dichromatopsia|1 +(noun)|dichromacy|dichromatism|dichromia|dichromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +dichromia|1 +(noun)|dichromacy|dichromatism|dichromatopsia|dichromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +dichromic acid|1 +(noun)|acid +dick|2 +(noun)|gumshoe|hawkshaw|detective|investigator|tec|police detective +(noun)|cock|prick|shaft|pecker|peter|tool|putz|penis|phallus|member +dick fosbury|1 +(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete|jock +dick test|1 +(noun)|Dick test|skin test +dick turpin|1 +(noun)|Turpin|Dick Turpin|highjacker|highwayman|hijacker|road agent +dickens|2 +(noun)|devil|deuce|exclamation|exclaiming +(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer|author +dickensian|1 +(adj)|Dickensian|writer|author +dicker|1 +(verb)|bargain|negociate|negotiate|talk terms +dickey|3 +(adj)|dicky|impaired +(noun)|dickie|dicky|dickey-seat|dickie-seat|dicky-seat|backseat +(noun)|dickie|dicky|shirtfront|insert|inset +dickey-bird|2 +(noun)|dickeybird|dickybird|dicky-bird|bird +(noun)| +dickey-seat|1 +(noun)|dickey|dickie|dicky|dickie-seat|dicky-seat|backseat +dickeybird|1 +(noun)|dickey-bird|dickybird|dicky-bird|bird +dickhead|1 +(noun)|asshole|bastard|cocksucker|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +dickie|2 +(noun)|dickey|dicky|dickey-seat|dickie-seat|dicky-seat|backseat +(noun)|dickey|dicky|shirtfront|insert|inset +dickie-seat|1 +(noun)|dickey|dickie|dicky|dickey-seat|dicky-seat|backseat +dickinson|1 +(noun)|Dickinson|Emily Dickinson|poet +dicksonia|1 +(noun)|Dicksonia|genus Dicksonia|fern genus +dicksonia antarctica|1 +(noun)|soft tree fern|Dicksonia antarctica|tree fern +dicksoniaceae|1 +(noun)|Dicksoniaceae|family Dicksoniaceae|fern family +dicky|3 +(adj)|dickey|impaired +(noun)|dickey|dickie|dickey-seat|dickie-seat|dicky-seat|backseat +(noun)|dickey|dickie|shirtfront|insert|inset +dicky-bird|2 +(noun)|dickeybird|dickey-bird|dickybird|bird +(noun)| +dicky-seat|1 +(noun)|dickey|dickie|dicky|dickey-seat|dickie-seat|backseat +dickybird|1 +(noun)|dickeybird|dickey-bird|dicky-bird|bird +diclinous|1 +(adj)|diclinous +diclofenac potassium|1 +(noun)|Cataflam|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +diclofenac sodium|1 +(noun)|Voltaren|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +dicloxacillin|1 +(noun)|Dynapen|antibacterial|antibacterial drug|bactericide +dicot|1 +(noun)|dicotyledon|magnoliopsid|exogen|angiosperm|flowering plant +dicot family|1 +(noun)|magnoliopsid family|family +dicot genus|1 +(noun)|magnoliopsid genus|genus +dicotyledon|1 +(noun)|dicot|magnoliopsid|exogen|angiosperm|flowering plant +dicotyledonae|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +dicotyledones|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +dicotyledonous|1 +(adj)|dicotyledonous +dicoumarol|1 +(noun)|dicumarol|anticoagulant|anticoagulant medication|decoagulant +dicranaceae|1 +(noun)|Dicranaceae|family Dicranaceae|moss family +dicranales|1 +(noun)|Dicranales|order Dicranales|plant order +dicranopteris|1 +(noun)|Dicranopteris|genus Dicranopteris|fern genus +dicranum|1 +(noun)|Dicranum|genus Dicranum|moss genus +dicrostonyx|1 +(noun)|Dicrostonyx|genus Dicrostonyx|mammal genus +dicrostonyx hudsonius|1 +(noun)|Hudson bay collared lemming|Dicrostonyx hudsonius|pied lemming +dictamnus|1 +(noun)|Dictamnus|genus Dictamnus|rosid dicot genus +dictamnus alba|1 +(noun)|fraxinella|dittany|burning bush|gas plant|Dictamnus alba|herb|herbaceous plant +dictaphone|1 +(noun)|Dictaphone|tape recorder|tape machine +dictate|5 +(noun)|rule|prescript +(noun)|principle +(verb)|order|prescribe|inflict|bring down|visit|impose +(verb)|read +(verb)|govern|rule +dictated|1 +(adj)|determined|set|settled +dictation|3 +(noun)|command|bid|bidding|speech act +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|matter +dictator|3 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +(noun)|potentate|ruler|swayer +(noun)|authoritarian|oppressor +dictatorial|4 +(adj)|ruler|swayer +(adj)|authoritarian|unpermissive +(adj)|authoritarian|overbearing|domineering +(adj)|authoritarian|autocratic|despotic|tyrannical|undemocratic +dictatorially|1 +(adv)|autocratically|magisterially +dictatorship|1 +(noun)|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +diction|2 +(noun)|enunciation|articulation +(noun)|wording|phrasing|phraseology|choice of words|verbiage|formulation|expression +dictionary|1 +(noun)|lexicon|wordbook +dictionary definition|1 +(noun)|definition +dictionary entry|1 +(noun)|lexical entry|entry +dictostylium|1 +(noun)|cellular slime mold +dictum|2 +(noun)|pronouncement|say-so|declaration +(noun)|obiter dictum|opinion|legal opinion|judgment|judgement +dictyophera|1 +(noun)|Dictyophera|genus Dictyophera|fungus genus +dictyoptera|1 +(noun)|Dictyoptera|order Dictyoptera|animal order +dictyopteran|1 +(adj)|animal order +dictyopterous insect|1 +(noun)|insect +dictyosome|1 +(noun)|Golgi body|Golgi apparatus|Golgi complex|vesicle|cyst +dicumarol|1 +(noun)|dicoumarol|anticoagulant|anticoagulant medication|decoagulant +dicynodont|1 +(noun)|therapsid|protomammal +dicynodontia|1 +(noun)|Dicynodontia|division Dicynodontia|division +didactic|1 +(adj)|didactical|instructive |informative +didactical|1 +(adj)|didactic|instructive |informative +didactically|1 +(adv)|pedagogically +didder|1 +(verb)|shake|move involuntarily|move reflexively +diddle|2 +(verb)|victimize|swindle|rook|goldbrick|nobble|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +(verb)|toy|fiddle|play|manipulate +diddley|1 +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|squat|shit|small indefinite quantity|small indefinite amount +diddly|1 +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddley|squat|shit|small indefinite quantity|small indefinite amount +diddly-shit|2 +(noun)|jack|diddly-squat|diddlysquat|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +(noun)| +diddly-squat|2 +(noun)|jack|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +(noun)| +diddlyshit|1 +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +diddlysquat|1 +(noun)|jack|diddly-squat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +didelphidae|1 +(noun)|Didelphidae|family Didelphidae|mammal family +didelphis|1 +(noun)|Didelphis|genus Didelphis|mammal genus +didelphis marsupialis|1 +(noun)|common opossum|Didelphis virginiana|Didelphis marsupialis|opossum|possum +didelphis virginiana|1 +(noun)|common opossum|Didelphis virginiana|Didelphis marsupialis|opossum|possum +diderot|1 +(noun)|Diderot|Denis Diderot|philosopher +didion|1 +(noun)|Didion|Joan Didion|writer|author +dido|1 +(noun)|Dido|princess +didrikson|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +die|13 +(noun)|dice|cube|square block +(noun)|shaping tool +(noun)|cutter|cutlery|cutting tool +(verb)|decease|perish|go|exit|pass away|expire|pass|change state|turn|die out|die off|die down|die down +(verb)|suffer|endure +(verb)|break down|lose it|snap +(verb)|fail|go bad|give way|give out|conk out|go|break|break down|change +(verb)|feel|experience +(verb)|ache|yearn|yen|pine|languish +(verb)|die out|cut out +(verb)|play +(verb)|pall|become flat|change +(verb)|disappear|vanish|go away +die-cast|1 +(adj)|formed +die-hard|1 +(adj)|rock-ribbed|inflexible +die-sinker|2 +(noun)|diemaker|diesinker|craftsman|artisan|journeyman|artificer +(noun)| +die away|1 +(verb)|abate|let up|slack off|slack|decrease|diminish|lessen|fall +die back|1 +(verb)|die down|shrivel|shrivel up|shrink|wither +die down|2 +(verb)|die back|shrivel|shrivel up|shrink|wither +(verb)|weaken +die hard|1 +(verb)|prevail|persist|run|endure|continue +die off|1 +(verb)|die out|disappear|vanish|go away +die out|2 +(verb)|die off|disappear|vanish|go away +(verb)|die|cut out +dieback|1 +(noun)|plant disease +dieffenbachia|1 +(noun)|Dieffenbachia|genus Dieffenbachia|monocot genus|liliopsid genus +dieffenbachia sequine|1 +(noun)|dumb cane|mother-in-law plant|mother-in-law's tongue|Dieffenbachia sequine|arum|aroid +diego rivera|1 +(noun)|Rivera|Diego Rivera|muralist +diego rodriguez de silva y velazquez|1 +(noun)|Velazquez|Diego Rodriguez de Silva y Velazquez|old master +diegueno|2 +(noun)|Diegueno|Hokan|Hoka +(noun)|Diegueno|Yuman +diehard|1 +(noun)|traditionalist|conservative|conservativist +dielectric|1 +(noun)|insulator|nonconductor|material|stuff +dielectric heating|1 +(noun)|electrical phenomenon +dielectrolysis|1 +(noun)|electrophoresis|cataphoresis|ionophoresis|natural process|natural action|action|activity +diemaker|1 +(noun)|diesinker|die-sinker|craftsman|artisan|journeyman|artificer +dien bien phu|1 +(noun)|Dien Bien Phu|siege|besieging|beleaguering|military blockade +diencephalon|1 +(noun)|interbrain|betweenbrain|thalmencephalon|neural structure +dieresis|1 +(noun)|umlaut|diaeresis|diacritical mark|diacritic +diervilla|1 +(noun)|Diervilla|genus Diervilla|asterid dicot genus +diervilla lonicera|1 +(noun)|bush honeysuckle|Diervilla lonicera|shrub|bush +diervilla sessilifolia|1 +(noun)|bush honeysuckle|Diervilla sessilifolia|shrub|bush +dies irae|1 +(noun)|Dies Irae|hymn|anthem +diesel|2 +(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer|applied scientist|technologist +(noun)|diesel engine|diesel motor|internal-combustion engine|ICE +diesel-electric|1 +(noun)|diesel-electric locomotive|diesel locomotive +diesel-electric locomotive|1 +(noun)|diesel-electric|diesel locomotive +diesel-hydraulic|1 +(noun)|diesel-hydraulic locomotive|diesel locomotive +diesel-hydraulic locomotive|1 +(noun)|diesel-hydraulic|diesel locomotive +diesel engine|1 +(noun)|diesel|diesel motor|internal-combustion engine|ICE +diesel fuel|1 +(noun)|diesel oil|fuel +diesel locomotive|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +diesel motor|1 +(noun)|diesel|diesel engine|internal-combustion engine|ICE +diesel oil|1 +(noun)|diesel fuel|fuel +dieses|1 +(noun)|double dagger|double obelisk|character|grapheme|graphic symbol +diesinker|1 +(noun)|diemaker|die-sinker|craftsman|artisan|journeyman|artificer +diestock|1 +(noun)|device +diestrous|1 +(adj)|dioestrous|diestrual|dioestrual|anestrous +diestrual|1 +(adj)|diestrous|dioestrous|dioestrual|anestrous +diestrum|1 +(noun)|diestrus|anestrus|anestrum|anoestrus|anoestrum +diestrus|1 +(noun)|diestrum|anestrus|anestrum|anoestrus|anoestrum +diet|6 +(noun)|fare +(noun)|legislature|legislative assembly|general assembly|law-makers +(noun)|fare +(noun)|dieting|fast|fasting +(verb)|fast +(verb)|fast +dietary|2 +(adj)|dietetic|dietetical|fare +(noun)|fare +dietetic|1 +(adj)|dietary|dietetical|fare +dietetical|1 +(adj)|dietary|dietetic|fare +dietetics|1 +(noun)|life science|bioscience +diethyl ether|1 +(noun)|ether|ethoxyethane|divinyl ether|vinyl ether|ethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +diethylaminoethyl cellulose|1 +(noun)|DEAE cellulose|cellulose +diethylbarbituric acid|1 +(noun)|barbital|veronal|barbitone|diethylmalonylurea|barbiturate +diethylmalonylurea|1 +(noun)|barbital|veronal|barbitone|diethylbarbituric acid|barbiturate +diethylstilbesterol|1 +(noun)|DES|stilbesterol|nonsteroid|nonsteroidal +diethylstilbestrol|1 +(noun)|diethylstilboestrol|stilbestrol|stilboestrol|DES|estrogen|oestrogen +diethylstilboestrol|1 +(noun)|diethylstilbestrol|stilbestrol|stilboestrol|DES|estrogen|oestrogen +dietician|1 +(noun)|dietitian|nutritionist|specialist|specializer|specialiser +dieting|1 +(noun)|diet|fast|fasting +dietitian|1 +(noun)|dietician|nutritionist|specialist|specializer|specialiser +dietrich|1 +(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress|singer|vocalist|vocalizer|vocaliser +dietrich bonhoeffer|1 +(noun)|Bonhoeffer|Dietrich Bonhoeffer|theologian|theologist|theologizer|theologiser +differ|1 +(verb)|disagree|dissent|take issue +difference|5 +(noun)|quality +(noun)|deviation|divergence|departure|variation|fluctuation +(noun)|dispute|difference of opinion|conflict|disagreement +(noun)|change +(noun)|remainder|number +difference limen|1 +(noun)|difference threshold|differential threshold|differential limen|threshold|limen +difference of opinion|1 +(noun)|dispute|difference|conflict|disagreement +difference threshold|1 +(noun)|differential threshold|difference limen|differential limen|threshold|limen +different|5 +(adj)|different |antithetic|antithetical|assorted|various|contrary|contrasting|contrastive|diametric|diametrical|opposite|polar|divergent|disparate|distinct|distinguishable|diverse|various|divers|diverse|several|variant|opposite|dissimilar|incompatible|unlike|dissimilar|varied +(adj)|another|other +(adj)|unusual +(adj)|unlike |dissimilar +(adj)|other +differentia|1 +(noun)|difference +differentiable|2 +(adj)|calculation|computation|figuring|reckoning +(adj)|distinguishable +differential|5 +(adj)|quality +(adj)|mathematical process|mathematical operation|operation +(noun)|derived function|derivative|differential coefficient|first derivative|calculation|computation|figuring|reckoning +(noun)|difference +(noun)|differential gear|bevel gear|pinion and crown wheel|pinion and ring gear +differential analyzer|1 +(noun)|analog computer|analogue computer +differential blood count|1 +(noun)|blood count +differential calculus|1 +(noun)|method of fluxions|calculus|the calculus|infinitesimal calculus +differential coefficient|1 +(noun)|derived function|derivative|differential|first derivative|calculation|computation|figuring|reckoning +differential cost|1 +(noun)|marginal cost|incremental cost|monetary value|price|cost +differential diagnosis|1 +(noun)|medical diagnosis +differential equation|1 +(noun)|equation +differential gear|1 +(noun)|differential|bevel gear|pinion and crown wheel|pinion and ring gear +differential limen|1 +(noun)|difference threshold|differential threshold|difference limen|threshold|limen +differential psychology|1 +(noun)|psychology|psychological science +differential threshold|1 +(noun)|difference threshold|difference limen|differential limen|threshold|limen +differentiate|6 +(verb)|distinguish|separate|secern|secernate|severalize|severalise|tell|tell apart|identify|place +(verb)|distinguish|mark|qualify|characterize|characterise +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|develop +(verb)|speciate|specialize|specialise|evolve +(verb)|dissimilate +differentiated|2 +(adj)|differentiated |distinguished +(adj)|specialized |specialised +differentiation|3 +(noun)|distinction|discrimination|secernment +(noun)|mathematical process|mathematical operation|operation +(noun)|specialization|specialisation|adaptation|adjustment +differentiator|1 +(noun)|discriminator|person|individual|someone|somebody|mortal|human|soul +differently|1 +(adv)|otherwise +difficult|2 +(adj)|difficult |hard|ambitious|challenging|arduous|awkward|embarrassing|sticky|unenviable|baffling|knotty|problematic|problematical|catchy|tricky|delicate|ticklish|fractious|hard-fought|Herculean|nasty|tight|rocky|rough|rugged|tough|stubborn|tall|thorny|troublesome|trying|vexed|serious|demanding|effortful|hard +(adj)|effortful +difficultness|1 +(noun)|difficulty|quality +difficulty|4 +(noun)|trouble|effort|elbow grease|exertion|travail|sweat +(noun)|cognitive factor +(noun)|condition|status +(noun)|difficultness|quality +diffidence|1 +(noun)|self-doubt|self-distrust|timidity|timidness|timorousness|personality +diffident|2 +(adj)|reserved +(adj)|shy|timid|unsure|unconfident +difflugia|1 +(noun)|protozoan|protozoon +diffract|1 +(verb)|separate|part|split +diffraction|1 +(noun)|optical phenomenon +diffraction grating|1 +(noun)|grating|optical device +diffuse|5 +(adj)|distributed +(adj)|prolix +(verb)|spread|spread out|fan out|spread|distribute +(verb)|permeate|pervade|penetrate|interpenetrate|imbue|penetrate|perforate +(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|disperse|pass around|publicize|publicise|air|bare +diffuse nebula|1 +(noun)|gaseous nebula|nebula +diffused|2 +(adj)|distributed +(adj)|softened|soft +diffuseness|1 +(noun)|scatter|spread +diffuser|2 +(noun)|diffusor|baffle|baffle board +(noun)|diffusor|optical device +diffusing|1 +(adj)|diffusive|dispersive|disseminative|disseminating|scattering|spreading|distributive +diffusing screen|1 +(noun)|light filter|filter +diffusion|4 +(noun)|natural process|natural action|action|activity +(noun)|spread|spreading +(noun)|dissemination|distribution|dispersion +(noun)|dispersion|dispersal|dissemination|spread|spreading +diffusion pump|1 +(noun)|condensation pump|air pump|vacuum pump +diffusive|1 +(adj)|diffusing|dispersive|disseminative|disseminating|scattering|spreading|distributive +diffusor|2 +(noun)|diffuser|baffle|baffle board +(noun)|diffuser|optical device +diflunisal|1 +(noun)|Dolobid|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +dig|11 +(noun)|excavation|archeological site|site|land site +(noun)|shot|shaft|slam|barb|jibe|gibe|remark|comment +(noun)|dent|gouge|nick +(noun)|excavation|digging|creating by removal +(noun)|jab|touch|touching +(verb)|delve|cut into|turn over|remove|take|take away|withdraw|dig up|dig in|dig out +(verb)|dig out|hollow|hollow out|core out +(verb)|labor|labour|toil|fag|travail|grind|drudge|moil|work|do work +(verb)|excavate|hollow|remove|take|take away|withdraw +(verb)|jab|prod|stab|poke|thrust +(verb)|get the picture|comprehend|savvy|grasp|compass|apprehend|understand +dig in|2 +(verb)|entrench +(verb)|pitch in|eat +dig into|1 +(verb)|probe|poke into|penetrate|perforate +dig out|2 +(verb)|free|disengage +(verb)|dig|hollow|hollow out|core out +dig up|1 +(verb)|excavate|turn up|obtain +digenesis|1 +(noun)|metagenesis|alternation of generations|heterogenesis|xenogenesis +digest|10 +(noun)|periodical +(noun)|compilation|collection|compendium +(verb)|process|treat +(verb)|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +(verb)|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|change +(verb)|systematize|systematise|systemize|systemise +(verb)|disintegrate +(verb)|condense|concentrate|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +(verb)|decompose|break up|break down +digested|1 +(adj)|digestible +digester|1 +(noun)|autoclave|sterilizer|steriliser +digestibility|1 +(noun)|digestibleness|edibility|edibleness +digestible|1 +(adj)|digestible |assimilable|light|digested|predigested|edible|comestible|eatable +digestibleness|1 +(noun)|digestibility|edibility|edibleness +digestion|3 +(noun)|chemical process|chemical change|chemical action +(noun)|organic process|biological process +(noun)|learning|acquisition +digestive|1 +(adj)|organic process|biological process +digestive fluid|1 +(noun)|digestive juice|juice|succus +digestive gland|1 +(noun)|exocrine gland|duct gland +digestive juice|1 +(noun)|digestive fluid|juice|succus +digestive system|1 +(noun)|gastrointestinal system|systema alimentarium|systema digestorium|system +digestive tract|1 +(noun)|alimentary canal|alimentary tract|digestive tube|gastrointestinal tract|GI tract|duct|epithelial duct|canal|channel +digestive tube|1 +(noun)|alimentary canal|alimentary tract|digestive tract|gastrointestinal tract|GI tract|duct|epithelial duct|canal|channel +digger|2 +(noun)|laborer|manual laborer|labourer|jack +(noun)|power shovel|excavator|shovel|machine +digger wasp|1 +(noun)|sphecoid wasp|sphecoid +digging|1 +(noun)|excavation|dig|creating by removal +digging up|1 +(noun)|exhumation|disinterment|deed|feat|effort|exploit +diggings|2 +(noun)|digs|domiciliation|lodgings|pad|living quarters|quarters +(noun)|excavation|digging|dig|creating by removal +dighted|1 +(adj)|clothed |clad +digit|3 +(noun)|figure|integer|whole number +(noun)|finger|fingerbreadth|finger's breadth|linear unit +(noun)|dactyl|extremity|appendage|member +digital|3 +(adj)|digital +(adj)|integer|whole number +(adj)|extremity|appendage|member +digital-analog converter|1 +(noun)|digital-to-analog converter|data converter +digital-to-analog converter|1 +(noun)|digital-analog converter|data converter +digital arteries|1 +(noun)|arteria digitalis|artery|arteria|arterial blood vessel +digital audiotape|1 +(noun)|DAT|audiotape +digital camera|1 +(noun)|camera|photographic camera +digital communication|1 +(noun)|data communication|electronic communication +digital communications technology|1 +(noun)|communications technology +digital computer|1 +(noun)|computer|computing machine|computing device|data processor|electronic computer|information processing system +digital display|1 +(noun)|alphanumeric display|display +digital photography|1 +(noun)|photography +digital plethysmograph|1 +(noun)|plethysmograph +digital scanner|1 +(noun)|scanner|image scanner|electronic device|data input device|input device +digital subscriber line|1 +(noun)|DSL|telephone line|phone line|telephone circuit|subscriber line|line +digital vein|1 +(noun)|vena digitalis|vein|vena|venous blood vessel +digital voltmeter|1 +(noun)|electronic voltmeter +digital watch|1 +(noun)|watch|ticker +digitalin|1 +(noun)|digitalis|digitalis glycoside|cardiac glycoside|cardiac glucoside +digitalis|2 +(noun)|digitalis glycoside|digitalin|cardiac glycoside|cardiac glucoside +(noun)|foxglove|herb|herbaceous plant +digitalis glycoside|1 +(noun)|digitalis|digitalin|cardiac glycoside|cardiac glucoside +digitalis lutea|1 +(noun)|yellow foxglove|straw foxglove|Digitalis lutea|foxglove|digitalis +digitalis purpurea|1 +(noun)|common foxglove|fairy bell|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove|digitalis +digitalisation|1 +(noun)|digitalization|medical care|medical aid +digitalise|1 +(verb)|digitize|digitise|digitalize|change|alter|modify +digitalization|1 +(noun)|digitalisation|medical care|medical aid +digitalize|2 +(verb)|digitize|digitise|digitalise|change|alter|modify +(verb)|administer|dispense +digitaria|1 +(noun)|Digitaria|genus Digitaria|monocot genus|liliopsid genus +digitaria ischaemum|1 +(noun)|smooth crabgrass|Digitaria ischaemum|crabgrass|crab grass|finger grass +digitaria sanguinalis|1 +(noun)|large crabgrass|hairy finger grass|Digitaria sanguinalis|crabgrass|crab grass|finger grass +digitate|1 +(adj)|fingerlike|fingered +digitigrade|1 +(adj)|digitigrade +digitigrade mammal|1 +(noun)|placental|placental mammal|eutherian|eutherian mammal +digitisation|1 +(noun)|digitization|conversion +digitise|1 +(verb)|digitize|digitalize|digitalise|change|alter|modify +digitiser|1 +(noun)|digitizer|analog-digital converter|analog-to-digital converter|data converter +digitization|1 +(noun)|digitisation|conversion +digitize|1 +(verb)|digitise|digitalize|digitalise|change|alter|modify +digitizer|1 +(noun)|digitiser|analog-digital converter|analog-to-digital converter|data converter +digitoxin|1 +(noun)|digitalis|digitalis glycoside|digitalin +dignified|2 +(adj)|dignified |courtly|elegant|formal|stately|distinguished|imposing|magisterial|composed|elegant +(adj)|self-respecting|self-respectful|proud +dignify|2 +(verb)|ennoble|honor|honour|reward +(verb)|lift|raise|elevate +dignifying|1 +(adj)|ennobling|noble +dignitary|1 +(noun)|very important person|VIP|high-up|panjandrum|high muckamuck|important person|influential person|personage +dignity|3 +(noun)|self-respect|self-esteem|self-regard|pride +(noun)|lordliness|gravitas|bearing|comportment|presence|mien +(noun)|status|position +digoxin|1 +(noun)|Lanoxin|digitalis|digitalis glycoside|digitalin +digraph|1 +(noun)|letter|letter of the alphabet|alphabetic character +digress|2 +(verb)|stray|divagate|wander|tell +(verb)|sidetrack|depart|straggle|deviate|divert +digression|3 +(noun)|aside|excursus|divagation|parenthesis|message|content|subject matter|substance +(noun)|diversion|deviation|deflection|deflexion|divagation|turn|turning +(noun)|excursion|journey|journeying +digressive|2 +(adj)|tangential|irrelevant +(adj)|discursive|excursive|rambling|indirect +digs|6 +(noun)|diggings|domiciliation|lodgings|pad|living quarters|quarters +(noun)|dig|excavation|archeological site|site|land site +(noun)|shot|shaft|slam|dig|barb|jibe|gibe|remark|comment +(noun)|dig|dent|gouge|nick +(noun)|excavation|digging|dig|creating by removal +(noun)|dig|jab|touch|touching +dihybrid|1 +(noun)|hybrid|crossbreed|cross +dihybrid cross|1 +(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +dihydric alcohol|1 +(noun)|diol|glycol|alcohol +dihydrostreptomycin|1 +(noun)|antibiotic|antibiotic drug +dihydroxyphenylalanine|1 +(noun)|dopa|amino acid|aminoalkanoic acid +dijon|1 +(noun)|Dijon|city|metropolis|urban center +dik-dik|1 +(noun)|antelope +dika|1 +(noun)|wild mango|wild mango tree|Irvingia gabonensis|fruit tree +dika bread|1 +(noun)|food +dika nut|1 +(noun)|edible seed +dike|3 +(noun)|butch|dyke|lesbian|tribade|gay woman +(noun)|dam|dyke|levee|barrier +(verb)|dyke|enclose|inclose|shut in +dilantin|1 +(noun)|diphenylhydantoin|phenytoin|Dilantin|hydantoin +dilapidate|1 +(verb)|destroy|destruct +dilapidated|1 +(adj)|bedraggled|broken-down|ramshackle|tatterdemalion|tumble-down|unsound|damaged +dilapidation|2 +(noun)|decrepitude|deterioration|impairment +(noun)|ruin|decay +dilatation|2 +(noun)|distension|distention|physiological state|physiological condition +(noun)|dilation|expansion|enlargement +dilatation and curettage|1 +(noun)|dilation and curettage|D and C|operation|surgery|surgical operation|surgical procedure|surgical process +dilate|2 +(verb)|distend|widen +(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|clarify|clear up|elucidate +dilated|1 +(adj)|expanded +dilater|1 +(noun)|dilator|surgical instrument +dilation|2 +(noun)|discussion|treatment|discourse +(noun)|dilatation|expansion|enlargement +dilation and curettage|1 +(noun)|dilatation and curettage|D and C|operation|surgery|surgical operation|surgical procedure|surgical process +dilator|3 +(noun)|body part +(noun)|drug +(noun)|dilater|surgical instrument +dilatoriness|1 +(noun)|procrastination|slowness|deliberation|deliberateness|unhurriedness +dilatory|3 +(adj)|laggard|unpunctual +(adj)|laggard|poky|pokey|slow +(adj)|fabian|cautious +dilatory plea|1 +(noun)|plea +dilaudid|1 +(noun)|hydromorphone hydrochloride|hydromorphone|Dilaudid|analgesic|anodyne|painkiller|pain pill +dildo|1 +(noun)|vibrator +dilemma|1 +(noun)|quandary|perplexity +dilettante|2 +(adj)|dilettantish|dilettanteish|sciolistic|superficial +(noun)|dabbler|sciolist|amateur +dilettanteish|1 +(adj)|dilettante|dilettantish|sciolistic|superficial +dilettantish|1 +(adj)|dilettante|dilettanteish|sciolistic|superficial +diligence|3 +(noun)|conscientiousness|painstakingness +(noun)|industriousness|industry|determination|purpose +(noun)|application|effort|elbow grease|exertion|travail|sweat +diligent|2 +(adj)|persevering|patient +(adj)|diligent |assiduous|sedulous|hardworking|industrious|tireless|untiring|busy|careful +dill|2 +(noun)|Anethum graveolens|herb|herbaceous plant +(noun)|dill weed|herb +dill pickle|1 +(noun)|pickle +dill seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +dill weed|1 +(noun)|dill|herb +dillenia|1 +(noun)|angiospermous tree|flowering tree +dilleniaceae|1 +(noun)|Dilleniaceae|family Dilleniaceae|dilleniid dicot family +dilleniid dicot family|1 +(noun)|dicot family|magnoliopsid family +dilleniid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +dilleniidae|1 +(noun)|Dilleniidae|subclass Dilleniidae|class +dilly-dallier|2 +(noun)|dallier|dillydallier|mope|lounger|idler|loafer|do-nothing|layabout|bum +(noun)| +dilly-dally|2 +(verb)|procrastinate|stall|drag one's feet|drag one's heels|shillyshally|dillydally|delay +(verb)| +dillydallier|1 +(noun)|dallier|dilly-dallier|mope|lounger|idler|loafer|do-nothing|layabout|bum +dillydally|1 +(verb)|procrastinate|stall|drag one's feet|drag one's heels|shillyshally|dilly-dally|delay +diltiazem|1 +(noun)|Cardizem|calcium blocker|calcium-channel blocker +diluent|1 +(noun)|dilutant|thinner|agent +dilutant|1 +(noun)|diluent|thinner|agent +dilute|3 +(adj)|diluted |cut|thinned|weakened|watery|washy|weak|white +(verb)|thin|thin out|reduce|cut|weaken +(verb)|adulterate|stretch|debase|corrupt|spoil +diluted|2 +(adj)|diluted |dilute|cut|thinned|weakened|watery|washy|weak|white +(adj)|toned down|tempered +dilution|2 +(noun)|solution +(noun)|weakening +diluvial|1 +(adj)|diluvian|rain|rainfall +diluvian|1 +(adj)|diluvial|rain|rainfall +dim|11 +(adj)|subdued|dark +(adj)|faint|shadowy|vague|wispy|indistinct +(adj)|dimmed |low-beam +(adj)|black|bleak|hopeless +(adj)|dense|dull|dumb|obtuse|slow|stupid +(verb)|dip|change intensity +(verb)|darken|change intensity +(verb)|change +(verb)|darken +(verb)|blind|darken +(verb)|blur|slur|weaken +dim-sighted|1 +(adj)|near-blind|purblind|sand-blind|visually impaired|visually challenged|blind |unsighted +dim-witted|1 +(adj)|half-witted|simple|simple-minded|retarded +dim sum|1 +(noun)|cuisine|culinary art +dimaggio|1 +(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer|baseball player +dime|2 +(noun)|coin +(noun)|dime bag|deck +dime bag|1 +(noun)|dime|deck +dime novel|1 +(noun)|penny dreadful|novel +dimenhydrinate|1 +(noun)|Dramamine|antihistamine|antiemetic|antiemetic drug +dimension|6 +(noun)|magnitude +(noun)|property|attribute|concept|conception|construct +(noun)|cartesian coordinate +(noun)|proportion|magnitude +(verb)|mark +(verb)|shape|form +dimensional|2 +(adj)|magnitude +(adj)|multidimensional +dimensionality|1 +(noun)|spatial property|spatiality +dimensioning|1 +(adj)|orienting |orientating +dimer|1 +(noun)|compound|chemical compound +dimetane|1 +(noun)|brompheniramine maleate|Dimetane|antihistamine +dimetapp|1 +(noun)|Dimetapp|antihistamine|nasal decongestant +dimethyl ketone|1 +(noun)|acetone|propanone|ketone|solvent|dissolvent|dissolver|dissolving agent|resolvent +dimethylglyoxime|1 +(noun)|precipitant +dimetrodon|1 +(noun)|synapsid|synapsid reptile +diminish|2 +(verb)|decrease|lessen|fall|change magnitude +(verb)|belittle|decrease|lessen|minify +diminished|4 +(adj)|lessened|vitiated|weakened|impaired +(adj)|atrophied |wasted +(adj)|decreased |reduced +(adj)|belittled|small|decreased |reduced +diminished arch|1 +(noun)|skeen arch|skene arch|scheme arch|arch +diminishing|1 +(adj)|decreasing +diminuendo|2 +(adj)|decrescendo|decreasing +(noun)|decrescendo|softness +diminution|3 +(noun)|decline|decrease|decrement +(noun)|statement +(noun)|decrease|reduction|step-down|change of magnitude +diminutive|2 +(adj)|bantam|lilliputian|midget|petite|tiny|flyspeck|small +(noun)|word +diminutiveness|1 +(noun)|minuteness|petiteness|tininess|weeness|smallness|littleness +dimity|1 +(noun)|fabric|cloth|material|textile +dimly|2 +(adv)|indistinctly +(adv)|pallidly|palely +dimmed|1 +(adj)|dimmed |dim|low-beam +dimmer|1 +(noun)|rheostat|variable resistor +dimness|3 +(noun)|duskiness|semidarkness +(noun)|subduedness|dullness|dulness +(noun)|faintness|indistinctness|blurriness|fogginess|fuzziness +dimocarpus|1 +(noun)|Dimocarpus|genus Dimocarpus|dicot genus|magnoliopsid genus +dimocarpus longan|1 +(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +dimorphic|1 +(adj)|dimorphous|polymorphism|polymorphism|pleomorphism +dimorphism|2 +(noun)|polymorphism|pleomorphism +(noun)|polymorphism +dimorphotheca|1 +(noun)|Dimorphotheca|genus Dimorphotheca|asterid dicot genus +dimorphous|1 +(adj)|dimorphic|polymorphism|polymorphism|pleomorphism +dimout|1 +(noun)|blackout|brownout|dark|darkness +dimple|5 +(noun)|dimpled chad|pregnant chad|chad +(noun)|depression|impression|imprint +(noun)|depression|impression|imprint +(verb)|mark +(verb)|smile +dimpled|1 +(adj)|mark +dimpled chad|1 +(noun)|pregnant chad|dimple|chad +dimwit|1 +(noun)|nitwit|half-wit|doofus|simpleton|simple +din|4 +(noun)|blare|blaring|cacophony|clamor|noise +(noun)|commotion|ruction|ruckus|rumpus|tumult|disturbance +(verb)|boom|sound|go +(verb)|inculcate|instill|infuse +din land|1 +(noun)|Land|Din Land|Edwin Herbert Land|inventor|discoverer|artificer|industrialist +dinar|9 +(noun)|Iranian dinar|Iranian monetary unit +(noun)|Yugoslavian dinar|Yugoslavian monetary unit +(noun)|Tunisian dinar|Tunisian monetary unit +(noun)|Libyan dinar|Libyan monetary unit +(noun)|Kuwaiti dinar|Kuwaiti monetary unit +(noun)|Jordanian dinar|Jordanian monetary unit +(noun)|Iraqi dinar|Iraqi monetary unit +(noun)|Bahrain dinar|Bahrainian monetary unit +(noun)|Algerian dinar|Algerian monetary unit +dindymene|1 +(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity +dine|2 +(verb)|eat|dine in|dine out +(verb)|feed|give +dine in|1 +(verb)|eat in|eat +dine out|1 +(verb)|eat out|eat +diner|3 +(noun)|eater|feeder +(noun)|dining car|dining compartment|buffet car|passenger car|coach|carriage +(noun)|restaurant|eating house|eating place +dinero|1 +(noun)|boodle|bread|cabbage|clams|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +dinesen|1 +(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer|author +ding|1 +(verb)|dong|dingdong|ring|peal +ding-dong|1 +(noun)|noise +dingbat|1 +(noun)|simpleton|simple +dingdong|1 +(verb)|ding|dong|ring|peal +dinge|3 +(noun)|dinginess|dirtiness|uncleanness +(verb)|batter|change shape|change form|deform +(verb)|change|alter|modify +dinghy|1 +(noun)|dory|rowboat|small boat +dingily|1 +(adv)|grubbily|grungily +dinginess|1 +(noun)|dinge|dirtiness|uncleanness +dingle|1 +(noun)|dell|hollow|holler +dingo|1 +(noun)|warrigal|warragal|Canis dingo|wild dog +dingy|3 +(adj)|begrimed|grimy|grubby|grungy|raunchy|dirty |soiled|unclean +(adj)|dirty|muddied|muddy|impure +(adj)|dismal|drab|drear|dreary|gloomy|sorry|cheerless |uncheerful +dining|1 +(noun)|eating|feeding +dining-hall|1 +(noun)|dining room|dining-room +dining-room|2 +(noun)|dining room|room +(noun)| +dining-room attendant|1 +(noun)|restaurant attendant|employee +dining area|1 +(noun)|area +dining car|1 +(noun)|diner|dining compartment|buffet car|passenger car|coach|carriage +dining companion|1 +(noun)|tablemate|diner +dining compartment|1 +(noun)|dining car|diner|buffet car|passenger car|coach|carriage +dining room|2 +(noun)|dining-room|room +(noun)| +dining table|1 +(noun)|board|table +diningroom furniture|1 +(noun)|furniture|piece of furniture|article of furniture +diningroom set|1 +(noun)|diningroom suite|suite +diningroom suite|1 +(noun)|diningroom set|suite +dink|2 +(noun)|DINK|couple|mates|match +(noun)|drop shot|return +dinka|1 +(noun)|Dinka|Nilotic|Nilotic language +dinkey|1 +(noun)|dinky|locomotive|engine|locomotive engine|railway locomotive +dinky|3 +(adj)|small +(adj)|attractive +(noun)|dinkey|locomotive|engine|locomotive engine|railway locomotive +dinner|2 +(noun)|meal|repast +(noun)|dinner party|party +dinner bell|1 +(noun)|bell +dinner bucket|1 +(noun)|dinner pail|bucket|pail +dinner dress|1 +(noun)|dinner gown|evening gown|tea gown|gown|formalwear|eveningwear|evening dress|evening clothes +dinner gown|1 +(noun)|dinner dress|evening gown|tea gown|gown|formalwear|eveningwear|evening dress|evening clothes +dinner jacket|1 +(noun)|tux|tuxedo|black tie|formalwear|eveningwear|evening dress|evening clothes +dinner napkin|1 +(noun)|napkin|table napkin|serviette +dinner pail|1 +(noun)|dinner bucket|bucket|pail +dinner party|1 +(noun)|dinner|party +dinner plate|1 +(noun)|plate +dinner service|1 +(noun)|dinner set|service|table service +dinner set|1 +(noun)|dinner service|service|table service +dinner table|1 +(noun)|dining table|board +dinner theater|1 +(noun)|dinner theatre|theater|theatre|house +dinner theatre|1 +(noun)|dinner theater|theater|theatre|house +dinnertime|1 +(noun)|suppertime|mealtime +dinnerware|1 +(noun)|tableware +dino paul crocetti|1 +(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer|vocalist|vocalizer|vocaliser +dinoceras|1 +(noun)|uintathere|dinocerate +dinocerata|1 +(noun)|Dinocerata|order Dinocerata|animal order +dinocerate|1 +(noun)|ungulate|hoofed mammal +dinoflagellata|1 +(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order +dinoflagellate|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +dinornis|1 +(noun)|Dinornis|genus Dinornis|bird genus +dinornis giganteus|1 +(noun)|giant moa|Dinornis giganteus|moa +dinornithidae|1 +(noun)|Dinornithidae|family Dinornithidae|bird family +dinornithiformes|1 +(noun)|Dinornithiformes|order Dinornithiformes|animal order +dinosaur|1 +(noun)|archosaur|archosaurian|archosaurian reptile +dint|1 +(noun)|means|agency|way +diocesan|2 +(adj)|jurisdiction +(noun)|bishop +diocese|1 +(noun)|bishopric|jurisdiction +diode|2 +(noun)|rectifying tube|rectifying valve|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +(noun)|semiconductor diode|junction rectifier|crystal rectifier|semiconductor device|semiconductor unit|semiconductor +diodon|1 +(noun)|Diodon|genus Diodon|fish genus +diodon holocanthus|1 +(noun)|balloonfish|Diodon holocanthus|spiny puffer +diodon hystrix|1 +(noun)|porcupinefish|porcupine fish|Diodon hystrix|spiny puffer +diodontidae|1 +(noun)|Diodontidae|family Diodontidae|fish family +diodora apertura|1 +(noun)|keyhole limpet|Fissurella apertura|Diodora apertura|limpet +dioecian|1 +(adj)|dioecious +dioecious|1 +(adj)|dioecious |dioecian +dioestrous|1 +(adj)|diestrous|diestrual|dioestrual|anestrous +dioestrual|1 +(adj)|diestrous|dioestrous|diestrual|anestrous +diogenes|1 +(noun)|Diogenes|philosopher +diol|1 +(noun)|glycol|dihydric alcohol|alcohol +diomedea exulans|1 +(noun)|wandering albatross|Diomedea exulans|albatross|mollymawk +diomedea nigripes|1 +(noun)|black-footed albatross|gooney|gooney bird|goonie|goony|Diomedea nigripes|albatross|mollymawk +diomedeidae|1 +(noun)|Diomedeidae|family Diomedeidae|bird family +dionaea|1 +(noun)|Dionaea|genus Dionaea|dicot genus|magnoliopsid genus +dionaea muscipula|1 +(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant +dionysia|1 +(noun)|Dionysia|Bacchanalia|festival|fete +dionysian|1 +(adj)|Dionysian|Greek deity +dionysius|1 +(noun)|Dionysius|Dionysius the Elder|tyrant +dionysius the elder|1 +(noun)|Dionysius|Dionysius the Elder|tyrant +dionysus|1 +(noun)|Dionysus|Greek deity +dioon|1 +(noun)|cycad +diophantus|1 +(noun)|Diophantus|mathematician +diopter|1 +(noun)|unit of measurement|unit +dior|1 +(noun)|Dior|Christian Dior|couturier|fashion designer|clothes designer|designer +diorama|1 +(noun)|panorama|cyclorama|picture|image|icon|ikon +diorite|1 +(noun)|igneous rock +dioscorea|1 +(noun)|Dioscorea|genus Dioscorea|plant genus +dioscorea alata|1 +(noun)|white yam|water yam|Dioscorea alata|yam|yam plant +dioscorea batata|1 +(noun)|cinnamon vine|Chinese yam|Dioscorea batata|yam|yam plant +dioscorea bulbifera|1 +(noun)|air potato|Dioscorea bulbifera|yam|yam plant +dioscorea elephantipes|1 +(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine +dioscorea paniculata|1 +(noun)|wild yam|Dioscorea paniculata|vine +dioscorea trifida|1 +(noun)|cush-cush|Dioscorea trifida|yam|yam plant +dioscoreaceae|1 +(noun)|Dioscoreaceae|family Dioscoreaceae|yam family|plant family +diospyros|1 +(noun)|Diospyros|genus Diospyros|dicot genus|magnoliopsid genus +diospyros ebenum|1 +(noun)|ebony|Diospyros ebenum|tree +diospyros kaki|1 +(noun)|Japanese persimmon|kaki|Diospyros kaki|persimmon|persimmon tree +diospyros kurzii|1 +(noun)|marblewood|marble-wood|Andaman marble|Diospyros kurzii|tree +diospyros lotus|1 +(noun)|date plum|Diospyros lotus|persimmon|persimmon tree +diospyros virginiana|1 +(noun)|American persimmon|possumwood|Diospyros virginiana|persimmon|persimmon tree +dioxide|1 +(noun)|oxide +dioxin|1 +(noun)|hydrocarbon +dip|21 +(noun)|depression|impression|imprint +(noun)|angle of dip|magnetic dip|magnetic inclination|inclination|angle +(noun)|pickpocket|cutpurse|thief|stealer +(noun)|condiment +(noun)|submergence|submerging|submersion|immersion +(noun)|drop|fall|free fall|decrease|decrement +(noun)|candle|taper|wax light +(noun)|plunge|swimming|swim +(noun)|gymnastic exercise +(verb)|dunk|souse|plunge|douse|immerse|plunge +(verb)|dunk|eat +(verb)|decline|go down|wane +(verb)|stain +(verb)|dim|change intensity +(verb)|lower|take down|let down|get down|bring down +(verb)|sink|decline +(verb)|slope|incline|pitch +(verb)|douse|duck|dunk|souse|plunge|douse +(verb)|create from raw material|create from raw stuff +(verb)|immerse|plunge +(verb)|scoop|scoop out|lift out|scoop up|take up +dip circle|1 +(noun)|inclinometer|measuring instrument|measuring system|measuring device +dip into|1 +(verb)|read +dip solder|1 +(verb)|solder +dip switch|1 +(noun)|DIP switch|dual inline package switch|toggle switch|toggle|on-off switch|on/off switch +diphenhydramine|1 +(noun)|Benadryl|antihistamine +diphenylbutyl piperidine|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +diphenylhydantoin|1 +(noun)|phenytoin|Dilantin|hydantoin +diphtheria|1 +(noun)|contagious disease|contagion +diphthong|1 +(noun)|vowel|vowel sound +diphthongise|1 +(verb)|diphthongize|switch|shift|change +diphthongize|1 +(verb)|diphthongise|switch|shift|change +diphylla|1 +(noun)|Diphylla|genus Diphylla|mammal genus +diphylla ecaudata|1 +(noun)|hairy-legged vampire bat|Diphylla ecaudata|vampire bat|true vampire bat +dipladenia|1 +(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus|magnoliopsid genus +dipladenia boliviensis|1 +(noun)|white dipladenia|Mandevilla boliviensis|Dipladenia boliviensis|liana +diplazium pycnocarpon|1 +(noun)|silvery spleenwort|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern +diplegia|1 +(noun)|paralysis|palsy +diplococcus|1 +(noun)|bacteria|bacterium +diplococcus pneumoniae|1 +(noun)|pneumococcus|Diplococcus pneumoniae|diplococcus +diplodocus|1 +(noun)|dinosaur +diploic vein|1 +(noun)|vena diploica|vein|vena|venous blood vessel +diploid|2 +(adj)|diploid +(noun)|organism|being +diploidy|1 +(noun)|condition +diploma|1 +(noun)|sheepskin|certificate|certification|credential|credentials +diplomacy|3 +(noun)|diplomatic negotiations|negotiation|dialogue|talks +(noun)|delicacy|discreetness|finesse|tact|tactfulness +(noun)|statesmanship|statecraft|wisdom|wiseness +diplomat|2 +(noun)|diplomatist|official|functionary +(noun)|mediator|go-between|intermediator|intermediary|intercessor +diplomate|1 +(noun)|specialist|medical specialist +diplomatic|3 +(adj)|negotiation|dialogue|talks +(adj)|diplomatic |diplomatical|politic|smooth|suave|tactful|kid-glove|politic +(adj)|wise|statesmanlike |statesmanly +diplomatic building|1 +(noun)|government building +diplomatic corps|1 +(noun)|diplomatic service|corps diplomatique|corps +diplomatic immunity|1 +(noun)|exemption|freedom +diplomatic minister|1 +(noun)|minister|diplomat|diplomatist +diplomatic mission|1 +(noun)|deputation|commission|delegation|delegacy|mission +diplomatic negotiations|1 +(noun)|diplomacy|negotiation|dialogue|talks +diplomatic pouch|1 +(noun)|mailbag|mail pouch +diplomatic service|1 +(noun)|diplomatic corps|corps diplomatique|corps +diplomatical|1 +(adj)|diplomatic |politic|smooth|suave|tactful|kid-glove|politic +diplomatically|1 +(adv)|with diplomacy +diplomatist|1 +(noun)|diplomat|official|functionary +diplopia|1 +(noun)|double vision|visual impairment|visual defect|vision defect|visual disorder +diplopoda|1 +(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class|category|family +diplopterygium|1 +(noun)|Diplopterygium|genus Diplopterygium|fern genus +diplopterygium longissimum|1 +(noun)|giant scrambling fern|Diplopterygium longissimum|fern +diplotaxis|1 +(noun)|Diplotaxis|genus Diplotaxis|dilleniid dicot genus +diplotaxis erucoides|1 +(noun)|white rocket|Diplotaxis erucoides|herb|herbaceous plant +diplotaxis muralis|1 +(noun)|wall rocket|Diplotaxis muralis|Diplotaxis tenuifolia|herb|herbaceous plant +diplotaxis tenuifolia|1 +(noun)|wall rocket|Diplotaxis muralis|Diplotaxis tenuifolia|herb|herbaceous plant +diplotene|1 +(noun)|phase|stage +dipnoi|1 +(noun)|Dipnoi|subclass Dipnoi|class +dipodidae|1 +(noun)|Dipodidae|family Dipodidae|mammal family +dipodomys|1 +(noun)|Dipodomys|genus Dipodomys|mammal genus +dipodomys ordi|1 +(noun)|Ord kangaroo rat|Dipodomys ordi|kangaroo rat|desert rat|Dipodomys phillipsii +dipodomys phillipsii|1 +(noun)|kangaroo rat|desert rat|Dipodomys phillipsii|pocket rat +dipogon|1 +(noun)|Dipogon|genus Dipogon|rosid dicot genus +dipogon lignosus|1 +(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine +dipolar|1 +(adj)|couple +dipole|2 +(noun)|couple +(noun)|dipole antenna|antenna|aerial|transmitting aerial +dipole antenna|1 +(noun)|dipole|antenna|aerial|transmitting aerial +dipole molecule|1 +(noun)|molecule +dipole moment|1 +(noun)|moment +dipped|1 +(adj)|lordotic|swayback|swaybacked|unfit +dippel's oil|1 +(noun)|bone oil|Dippel's oil|animal oil +dipper|5 +(noun)|ladle +(noun)|Little Dipper|Dipper|asterism +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|bufflehead|butterball|Bucephela albeola|duck +(noun)|water ouzel|oscine|oscine bird +dippers|6 +(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination +(noun)|dipper|ladle +(noun)|Little Dipper|Dipper|asterism +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|bufflehead|butterball|dipper|Bucephela albeola|duck +(noun)|water ouzel|dipper|oscine|oscine bird +dipsacaceae|1 +(noun)|Dipsacaceae|family Dipsacaceae|asterid dicot family +dipsacus|1 +(noun)|Dipsacus|genus Dipsacus|asterid dicot genus +dipsacus fullonum|1 +(noun)|common teasel|Dipsacus fullonum|teasel|teazel|teasle +dipsacus sativus|1 +(noun)|fuller's teasel|Dipsacus sativus|teasel|teazel|teasle +dipsacus sylvestris|1 +(noun)|wild teasel|Dipsacus sylvestris|teasel|teazel|teasle +dipsomania|1 +(noun)|alcoholism|potomania|mania|passion|cacoethes +dipsomaniac|1 +(noun)|alcoholic|alky|boozer|lush|soaker|souse|drunkard|drunk|rummy|sot|inebriate +dipsosaurus|1 +(noun)|Dipsosaurus|genus Dipsosaurus|reptile genus +dipsosaurus dorsalis|1 +(noun)|desert iguana|Dipsosaurus dorsalis|iguanid|iguanid lizard +dipstick|1 +(noun)|gauge|gage +diptera|1 +(noun)|Diptera|order Diptera|animal order +dipteran|1 +(noun)|dipterous insect|two-winged insects|dipteron|insect +dipterocarp|1 +(noun)|tree +dipterocarpaceae|1 +(noun)|Dipterocarpaceae|family Dipterocarpaceae|dilleniid dicot family +dipteron|1 +(noun)|dipterous insect|two-winged insects|dipteran|insect +dipteronia|1 +(noun)|Dipteronia|genus Dipteronia|dicot genus|magnoliopsid genus +dipterous|1 +(adj)|animal order +dipterous insect|1 +(noun)|two-winged insects|dipteran|dipteron|insect +dipteryx|1 +(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus +dipteryx odorata|1 +(noun)|tonka bean|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree +diptych|1 +(noun)|art|fine art +dipus|1 +(noun)|Dipus|genus Dipus|mammal genus +dipylon|2 +(adj)|Dipylon|gate +(noun)|Dipylon gate|Dipylon|gate +dipylon gate|1 +(noun)|Dipylon gate|Dipylon|gate +dirac|1 +(noun)|Dirac|Paul Adrien Maurice Dirac|nuclear physicist +dirca|1 +(noun)|Dirca|genus Dirca|dicot genus|magnoliopsid genus +dirca palustris|1 +(noun)|leatherwood|moosewood|moose-wood|wicopy|ropebark|Dirca palustris|shrub|bush +dire|2 +(adj)|desperate|critical +(adj)|awful|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +dire straits|1 +(noun)|desperate straits|pass|strait|straits +direct|25 +(adj)|direct |door-to-door|nonstop|point-blank|short|shortest|straightforward|undeviating|unswerving|through|straight +(adj)|immediate +(adj)|direct |bluff|blunt|candid|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|no-nonsense|plain|unvarnished|pointed|square|straightforward|flat-footed|man-to-man|upfront|honest|honorable +(adj)|lineal |matrilineal|matrilinear|patrilineal|patrilinear|unilateral|unilateralist|related +(adj)|direct +(adj)|direct +(adj)|direct +(adj)|primary +(adj)|verbatim|exact +(adj)|democratic +(adj)|absolute +(verb)|order|tell|enjoin|say +(verb)|target|aim|place|point|aim|take|train|take aim +(verb)|make|create +(verb)|manage|deal|care|handle +(verb)|lead|take|conduct|guide +(verb)|send|move|displace +(verb)|aim|take|train|take aim|position +(verb)|conduct|lead|perform|execute|do +(verb)|instruct|apprise|apprize +(verb)|calculate|aim|intend|destine|designate|specify +(verb)|steer|maneuver|manoeuver|manoeuvre|point|head|guide|channelize|channelise|control|command +(verb)|address|label +(verb)|mastermind|engineer|organize|organise|orchestrate|plan +(adv)|directly|straight +direct-grant school|1 +(noun)|school +direct action|1 +(noun)|protest|objection|dissent +direct antonym|1 +(noun)|antonym|opposite word|opposite +direct contrast|1 +(noun)|contrast|opposition|oppositeness +direct correlation|1 +(noun)|positive correlation|correlation|correlational statistics +direct current|1 +(noun)|DC|electricity|electrical energy +direct discourse|1 +(noun)|direct quotation|report|account +direct dye|1 +(noun)|substantive dye|dye|dyestuff +direct evidence|1 +(noun)|evidence +direct examination|1 +(noun)|interrogation|examination|interrogatory +direct fire|1 +(noun)|fire|firing +direct flight|1 +(noun)|flight +direct loan|1 +(noun)|loan +direct mail|1 +(noun)|ad|advertisement|advertizement|advertising|advertizing|advert +direct mailer|1 +(noun)|distributor +direct marketing|1 +(noun)|marketing +direct object|1 +(noun)|object of the verb|object +direct primary|1 +(noun)|primary|primary election +direct quotation|1 +(noun)|direct discourse|report|account +direct sum|1 +(noun)|union|sum|join +direct support|1 +(noun)|mission|military mission +direct supporting fire|1 +(noun)|supporting fire +direct tax|1 +(noun)|tax|taxation|revenue enhancement +direct tide|1 +(noun)|high tide|high water|highwater +direct transmission|1 +(noun)|transmission mechanism +direct trust|1 +(noun)|express trust|trust +directed|2 +(adj)|oriented |orientated +(adj)|manageable +directed verdict|1 +(noun)|verdict|finding of fact +directing|1 +(adj)|directional|directive|guiding|leading +direction|9 +(noun)|way|path|route|itinerary +(noun)|position|spatial relation +(noun)|inclination|disposition|tendency +(noun)|guidance|counsel|counseling|counselling|message|content|subject matter|substance +(noun)|management|social control +(noun)|instruction|message|content|subject matter|substance +(noun)|steering|guidance|control +(noun)|commission|charge|command|bid|bidding|dictation +(noun)|focus|focusing|focussing|centering|concentration|engrossment|absorption|immersion +direction finder|1 +(noun)|receiver|receiving system +directional|3 +(adj)|directional |position|spatial relation +(adj)|social control +(adj)|directing|directive|guiding|leading +directional antenna|1 +(noun)|antenna|aerial|transmitting aerial +directionality|1 +(noun)|directivity|radial asymmetry +directionless|1 +(adj)|adrift|afloat|aimless|planless|rudderless|undirected|purposeless +directive|2 +(adj)|directing|directional|guiding|leading +(noun)|pronouncement|dictum|say-so +directivity|1 +(noun)|directionality|radial asymmetry +directly|3 +(adv)|straight|direct +(adv)|immediately|instantly|straightaway|straight off|now|right away|at once|forthwith|in real time|like a shot +(adv)|flat|straight +directness|1 +(noun)|straightness|characteristic +director|4 +(noun)|manager|managing director|administrator|decision maker +(noun)|committee member +(noun)|theater director|theatre director|supervisor +(noun)|conductor|music director|musician +director-stockholder relation|1 +(noun)|fiduciary relation +director of central intelligence|1 +(noun)|Director of Central Intelligence|DCI|administrator|executive +director of research|1 +(noun)|research director|supervisor +directorate|1 +(noun)|board of directors|board +directorate for inter-services intelligence|1 +(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency +directorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +directory|2 +(noun)|reference book|reference|reference work|book of facts +(noun)|list|listing +direful|1 +(adj)|awful|dire|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +dirge|1 +(noun)|coronach|lament|requiem|threnody|song +dirham|6 +(noun)|Qatari dirham|Qatari monetary unit +(noun)|United Arab Emirate dirham|United Arab Emirate monetary unit +(noun)|Moroccan dirham|Moroccan monetary unit +(noun)|Tunisian dirham|Tunisian monetary unit +(noun)|Libyan dirham|Libyan monetary unit +(noun)|Kuwaiti dirham|Kuwaiti monetary unit +dirigible|2 +(adj)|steerable|manageable +(noun)|airship|lighter-than-air craft +dirk|1 +(noun)|dagger|sticker +dirndl|2 +(noun)|gathered skirt +(noun)|dress|frock +dirt|5 +(adj)|ungraded|unimproved +(noun)|soil|earth|ground +(noun)|filth|grime|soil|stain|grease|grunge|dirtiness|uncleanness +(noun)|crap|shit|shite|poop|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|scandal|malicious gossip|gossip|comment|scuttlebutt +dirt ball|1 +(noun)|worm|louse|insect|unpleasant person|disagreeable person +dirt bike|1 +(noun)|trail bike|scrambler|motorcycle|bike +dirt cheap|1 +(adj)|cheap |inexpensive +dirt track|1 +(noun)|racetrack|racecourse|raceway|track +dirtily|1 +(adv)|filthily +dirtiness|3 +(noun)|uncleanness|sanitary condition +(noun)|impurity|impureness +(noun)|smuttiness|obscenity|lewdness|bawdiness|salaciousness|salacity +dirty|13 +(adj)|dirty |soiled|unclean|bedraggled|draggled|befouled|fouled|begrimed|dingy|grimy|grubby|grungy|raunchy|bespattered|spattered|besplashed|splashed|black|buggy|dirty-faced|dusty|dust-covered|fecal|faecal|feculent|filthy|foul|nasty|flyblown|squalid|sordid|greasy|oily|lousy|mucky|muddy|scummy|smeared|smirched|smudged|smudgy|snotty|snot-nosed|travel-soiled|travel-stained|unswept|unwashed|maculate|unclean|impure|untidy +(adj)|dirty |bawdy|off-color|ribald|dirty-minded|filthy|foul|nasty|smutty|foul-mouthed|foul-spoken|lewd|obscene|raunchy|salacious|scabrous|scatological|blasphemous|blue|profane|indecent +(adj)|filthy|lousy|nasty |awful +(adj)|dirty |contaminating +(adj)|contaminated|infected|pestiferous|septic +(adj)|dingy|muddied|muddy|impure +(adj)|foul|marked-up|illegible +(adj)|ill-gotten|illegal +(adj)|hostile +(adj)|cheating|foul|unsporting|unsportsmanlike|unfair |unjust +(adj)|sordid|corrupt +(adj)|stormy +(verb)|soil|begrime|grime|colly|bemire|change|alter|modify +dirty-faced|1 +(adj)|dirty |soiled|unclean +dirty-minded|1 +(adj)|dirty +dirty bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|plutonium bomb +dirty dog|1 +(noun)|rotter|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +dirty joke|1 +(noun)|dirty story|blue joke|blue story|joke|gag|laugh|jest|jape +dirty laundry|1 +(noun)|dirty linen|personal business|personal matters|affairs +dirty linen|1 +(noun)|dirty laundry|personal business|personal matters|affairs +dirty money|1 +(noun)|loot|booty|pillage|plunder|prize|swag|stolen property +dirty old man|1 +(noun)|middle-aged man +dirty pool|1 +(noun)|behavior|behaviour|conduct|doings +dirty story|1 +(noun)|dirty joke|blue joke|blue story|joke|gag|laugh|jest|jape +dirty trick|1 +(noun)|antic|joke|prank|trick|caper|put-on +dirty tricks|2 +(noun)|behavior|behaviour|conduct|doings +(noun)|dirty trick|antic|joke|prank|trick|caper|put-on +dirty war|1 +(noun)|offense|offence|offensive +dirty word|2 +(noun)|obscenity|vulgarism|profanity +(noun)|word +dirtying|1 +(noun)|soiling|soilure|change of state +dis|1 +(noun)|Dis|Orcus|Roman deity +disa|2 +(noun)|orchid|orchidaceous plant +(noun)|Defense Information Systems Agency|DISA|agency|federal agency|government agency|bureau|office|authority +disability|1 +(noun)|disablement|handicap|impairment|unfitness|poor shape|bad condition +disability benefit|1 +(noun)|benefit +disability check|1 +(noun)|disability payment|regular payment +disability insurance|1 +(noun)|social insurance +disability of walking|1 +(noun)|disability|disablement|handicap|impairment +disability payment|1 +(noun)|disability check|regular payment +disable|2 +(verb)|disenable|incapacitate|change|alter|modify +(verb)|invalid|incapacitate|handicap|injure|wound +disabled|3 +(adj)|handicapped|incapacitated|unfit +(adj)|hors de combat|out of action|injured +(noun)|people +disablement|1 +(noun)|disability|handicap|impairment|unfitness|poor shape|bad condition +disabling|2 +(adj)|crippling|incapacitating|unhealthful +(adj)|disabling |disqualifying +disabuse|1 +(verb)|inform +disabused|1 +(adj)|undeceived|disenchanted +disaccharidase|1 +(noun)|enzyme +disaccharide|1 +(noun)|oligosaccharide +disaccord|1 +(verb)|disagree|discord|be +disadvantage|2 +(noun)|liability +(verb)|disfavor|disfavour|discriminate|separate|single out +disadvantaged|1 +(adj)|deprived|underprivileged +disadvantageous|1 +(adj)|disadvantageous |harmful|minus|negative|inexpedient|harmful|inopportune +disadvantageously|1 +(adv)|badly +disaffect|1 +(verb)|estrange|alienate|alien|change|alter|modify +disaffected|1 +(adj)|ill-affected|malcontent|rebellious|discontented |discontent +disaffection|2 +(noun)|alienation|estrangement|dislike +(noun)|disloyalty +disafforest|1 +(verb)|deforest|disforest|clear +disagree|2 +(verb)|differ|dissent|take issue +(verb)|disaccord|discord|be +disagree with|1 +(verb)|afflict|trouble|ail|pain +disagreeable|2 +(adj)|disagreeable |annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|harsh|abrasive|nerve-racking|nerve-wracking|stressful|trying|unsweet|ill-natured +(adj)|unsympathetic|uncongenial |incompatible +disagreeable chore|1 +(noun)|disagreeable task|job|task|chore +disagreeable person|1 +(noun)|unpleasant person|unwelcome person|persona non grata +disagreeable task|1 +(noun)|disagreeable chore|job|task|chore +disagreeable woman|1 +(noun)|unpleasant woman|unpleasant person|disagreeable person +disagreeableness|2 +(noun)|pleasantness|sweetness +(noun)|disposition|temperament +disagreement|3 +(noun)|dissension|dissonance|conflict +(noun)|discrepancy|divergence|variance|difference +(noun)|speech act +disallow|1 +(verb)|forbid|prohibit|interdict|proscribe|veto|command|require|compel +disambiguate|1 +(verb)|clarify|clear up|elucidate +disambiguation|1 +(noun)|clarification|elucidation|illumination +disambiguator|1 +(noun)|natural language processor|natural language processing application +disappear|4 +(verb)|vanish|go away +(verb)|vanish|go away|end|stop|finish|terminate|cease +(verb)|vanish|end|stop|finish|terminate|cease +(verb)|melt|weaken +disappearance|3 +(noun)|disappearing|departure|going|going away|leaving +(noun)|happening|occurrence|natural event +(noun)|fade|termination|ending|conclusion +disappearing|2 +(adj)|vanishing +(noun)|disappearance|departure|going|going away|leaving +disappoint|1 +(verb)|let down|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk +disappointed|1 +(adj)|defeated|discomfited|foiled|frustrated|thwarted|unsuccessful +disappointing|1 +(adj)|dissatisfactory|unsatisfying|unsatisfactory +disappointment|2 +(noun)|letdown|dissatisfaction +(noun)|dashing hopes|failure +disapprobation|1 +(noun)|condemnation|disapproval +disapproval|4 +(noun)|dislike +(noun)|message|content|subject matter|substance +(noun)|disfavor|disfavour|dislike|inclination|disposition|tendency +(noun)|judgment|judgement|assessment +disapprove|2 +(verb)|judge +(verb)|reject|judge +disapproved|1 +(adj)|disapproved |censured|condemned|marginal|rejected +disapproving|1 +(adj)|unfavorable |unfavourable +disarm|3 +(verb)|demilitarize|demilitarise +(verb)|convert|win over|convince +(verb)|unarm|deprive|strip|divest +disarmament|1 +(noun)|disarming|demobilization|demobilisation +disarmer|1 +(noun)|pacifist|pacificist|adult|grownup +disarming|3 +(adj)|pleasing +(adj)|unprovocative |unprovoking +(noun)|disarmament|demobilization|demobilisation +disarrange|2 +(verb)|move|displace +(verb)|disorder|disarray +disarranged|1 +(adj)|disarranged |disarrayed|misplaced|out of place|disturbed +disarrangement|1 +(noun)|disorganization|disorganisation|disorderliness|disorder +disarray|3 +(noun)|confusion|mental confusion|confusedness|cognitive state|state of mind +(noun)|disorderliness|untidiness|messiness +(verb)|disorder|change|alter|modify +disarrayed|1 +(adj)|disarranged +disarticulate|1 +(verb)|disjoint|separate|disunite|divide|part +disassemble|1 +(verb)|dismantle|take apart|break up|break apart|destroy|destruct +disassembly|1 +(noun)|dismantling|dismantlement|activity +disassociate|1 +(verb)|dissociate|divorce|disunite|disjoint|separate|part|split up|split|break|break up +disassociation|2 +(noun)|separation +(noun)|dissociation|psychological state|mental state +disassortative mating|1 +(noun)|coupling|mating|pairing|conjugation|union|sexual union +disaster|3 +(noun)|catastrophe|adversity|hardship|hard knocks +(noun)|calamity|catastrophe|tragedy|cataclysm|misfortune|bad luck +(noun)|destruction|devastation +disaster area|1 +(noun)|area|country +disastrous|1 +(adj)|black|calamitous|fatal|fateful|unfortunate +disavow|1 +(verb)|deny +disavowable|1 +(adj)|deniable +disavowal|1 +(noun)|disclaimer|denial +disband|2 +(verb)|disperse|dissipate|dispel|break up|scatter +(verb)|dissolve|break up +disbandment|1 +(noun)|group action +disbar|1 +(verb)|disqualify +disbarment|1 +(noun)|banishment|proscription +disbelief|2 +(noun)|incredulity|skepticism|mental rejection|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|unbelief|content|cognitive content|mental object +disbelieve|1 +(verb)|discredit|reject +disbeliever|1 +(noun)|nonbeliever|unbeliever|nonreligious person +disbelieving|1 +(adj)|skeptical|sceptical|unbelieving|incredulous +disbelievingly|1 +(adv)|incredulously|unbelievingly +disbud|2 +(verb)|snip|clip|crop|trim|lop|dress|prune|cut back +(verb)|dehorn +disburden|1 +(verb)|unburden|remove|take|take away|withdraw +disbursal|2 +(noun)|expense|disbursement|cost +(noun)|spending|disbursement|outlay|payment|defrayal|defrayment +disburse|1 +(verb)|pay out|pay +disbursement|2 +(noun)|expense|disbursal|cost +(noun)|spending|disbursal|outlay|payment|defrayal|defrayment +disburser|1 +(noun)|spender|expender|customer|client +disc|4 +(noun)|phonograph record|phonograph recording|record|disk|platter|sound recording|audio recording +(noun)|disk|saucer|round shape +(noun)|magnetic disk|magnetic disc|disk|memory device|storage device +(noun)|disk|plate|circle|round +disc-jockey|1 +(verb)|disk-jockey|DJ|comment +disc brake|1 +(noun)|disk brake|hydraulic brake|hydraulic brakes +disc drive|1 +(noun)|disk drive|hard drive|Winchester drive|drive +disc harrow|1 +(noun)|disk harrow|harrow +disc jockey|1 +(noun)|disk jockey|dj|broadcaster +disc pack|1 +(noun)|disk pack|pack +disc space|1 +(noun)|disk space|space +discalceate|1 +(adj)|discalced |unshod +discalced|1 +(adj)|discalced |discalceate|unshod +discant|1 +(noun)|descant|accompaniment|musical accompaniment|backup|support +discard|4 +(noun)|object|physical object +(noun)|abandonment +(noun)|throwing away|abandonment +(verb)|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +discarded|2 +(adj)|cast-off|throwaway|thrown-away|unwanted +(adj)|cast-off|junked|scrap|waste|useless +discase|1 +(verb)|undress|uncase|unclothe|strip|strip down|disrobe|peel|take off +disceptation|1 +(noun)|controversy|contention|contestation|disputation|tilt|argument|arguing|dispute|difference|difference of opinion|conflict +discern|1 +(verb)|recognize|recognise|distinguish|pick out|make out|tell apart +discernability|1 +(noun)|legibility|distinctness|sharpness +discernable|1 +(adj)|discernible +discernible|3 +(adj)|discernible |discernable +(adj)|perceptible +(adj)|evident|observable|noticeable +discerning|4 +(adj)|discerning |clear|percipient|clear-eyed|clear-sighted|perspicacious|prescient|critical|discriminating +(adj)|discreet|tactful +(adj)|apprehensive|perceptive +(adj)|discriminating +discernment|5 +(noun)|understanding|apprehension|savvy|knowing +(noun)|taste|appreciation|perceptiveness|discrimination|secernment +(noun)|perceptiveness|perception +(noun)|sagacity|sagaciousness|judgment|judgement|wisdom|sapience +(noun)|discretion|wisdom|wiseness +discerp|2 +(verb)|dismember|take apart|separate|divide|part +(verb)|sever|lop|cut +discharge|20 +(noun)|happening|occurrence|natural event +(noun)|venting|emission|emanation +(noun)|emission|material|stuff +(noun)|emission|expelling|bodily process|body process|bodily function|activity +(noun)|spark|arc|electric arc|electric discharge|electrical conduction +(noun)|outpouring|run|flow|flowing +(noun)|dismissal|dismission|firing|liberation|release|sack|sacking|termination|ending|conclusion +(noun)|release|waiver|relinquishment|relinquishing +(noun)|firing|firing off|shooting|shot +(verb)|dispatch|complete|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|spread|distribute +(verb)|expel|eject|release +(verb)|free +(verb)|remove|take|take away|withdraw +(verb)|fire|go off +(verb)|acquit|assoil|clear|exonerate|exculpate|pronounce|label|judge +(verb)|drop|set down|put down|unload|deliver +(verb)|fire +(verb)|muster out|let go of|let go|release|relinquish +(verb)|empty|change state|turn +discharge lamp|1 +(noun)|lamp +discharge pipe|1 +(noun)|pipe|pipage|piping +discharged|2 +(adj)|released|free +(adj)|dismissed|fired|laid-off|pink-slipped|unemployed +disciform|1 +(adj)|rounded +discina|1 +(noun)|false morel +discina macrospora|1 +(noun)|Discina macrospora|discina +disciotis venosa|1 +(noun)|Disciotis venosa|cup morel|morel +disciple|1 +(noun)|adherent|follower +disciples of christ|1 +(noun)|Christian Church|Disciples of Christ|Protestant denomination +discipleship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +disciplinal|1 +(adj)|corrective|disciplinary|nonindulgent +disciplinarian|1 +(noun)|martinet|moralist|authoritarian|dictator +disciplinary|3 +(adj)|trait +(adj)|knowledge domain|knowledge base +(adj)|corrective|disciplinal|nonindulgent +discipline|7 +(noun)|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +(noun)|system|system of rules +(noun)|trait +(noun)|training|preparation|grooming +(noun)|correction|punishment|penalty|penalization|penalisation +(verb)|train|check|condition|develop|make grow +(verb)|correct|sort out|punish|penalize|penalise +disciplined|3 +(adj)|controlled +(adj)|trained +(adj)|chastised|corrected|punished +disclaim|2 +(verb)|foreswear|renounce|quit|relinquish +(verb)|deny +disclaimer|2 +(noun)|repudiation|renunciation +(noun)|disavowal|denial +disclose|2 +(verb)|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out|tell +(verb)|expose|uncover|bring out|unveil|reveal +disclosed|2 +(adj)|unveiled +(adj)|discovered|revealed|unconcealed +disclosing|1 +(adj)|revealing +disclosure|1 +(noun)|revelation|revealing|speech act +disco|1 +(noun)|discotheque|ballroom|dance hall|dance palace +disco biscuit|1 +(noun)|Adam|ecstasy|XTC|go|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +discocephali|1 +(noun)|Discocephali|order Discocephali|animal order +discoglossidae|1 +(noun)|Discoglossidae|family Discoglossidae|amphibian family +discoid|1 +(adj)|discoidal|disklike|round |circular +discoid lupus erythematosus|1 +(noun)|DLE|lupus|autoimmune disease|autoimmune disorder +discoidal|1 +(adj)|discoid|disklike|round |circular +discolor|3 +(verb)|change +(verb)|change|alter|modify +(verb)|discolour|colour|color|change +discoloration|2 +(noun)|stain|discolouration|appearance|visual aspect +(noun)|discolouration|change of color +discolored|1 +(adj)|discoloured|stained +discolorise|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolor +discolorize|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolourise|discolorise|discolor +discolour|1 +(verb)|discolor|colour|color|change +discolouration|2 +(noun)|stain|discoloration|appearance|visual aspect +(noun)|discoloration|change of color +discoloured|1 +(adj)|discolored|stained +discolourise|1 +(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolorise|discolor +discombobulate|2 +(verb)|bewilder|bemuse|throw|upset|discompose|untune|disconcert|discomfit +(verb)|confuse|throw|fox|befuddle|fuddle|bedevil|confound|be +discombobulated|1 +(adj)|disconcerted|discomposed +discombobulation|1 +(noun)|confusion|embarrassment +discomfit|1 +(verb)|upset|discompose|untune|disconcert|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +discomfited|3 +(adj)|defeated|disappointed|foiled|frustrated|thwarted|unsuccessful +(adj)|embarrassed|uncomfortable +(noun)|defeated|people +discomfiture|1 +(noun)|discomposure|disconcertion|disconcertment|embarrassment|anxiety +discomfort|2 +(noun)|uncomfortableness|condition|status +(noun)|soreness|irritation|suffering|hurt +discommode|1 +(verb)|trouble|put out|inconvenience|disoblige|incommode|bother|affect|impact|bear upon|bear on|touch on|touch +discompose|1 +(verb)|upset|untune|disconcert|discomfit|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +discomposed|1 +(adj)|discomposed |abashed|chagrined|embarrassed|blushful|blushing|red-faced|bothered|daunted|fazed|discombobulated|disconcerted|flustered|hot and bothered|perturbed|rattled|unstrung|agitated|undignified +discomposure|2 +(noun)|discomfiture|disconcertion|disconcertment|embarrassment|anxiety +(noun)|disposition|temperament +discomycete|1 +(noun)|cup fungus|ascomycete|ascomycetous fungus +discomycetes|2 +(noun)|Discomycetes|subclass Discomycetes|class +(noun)|discomycete|cup fungus|ascomycete|ascomycetous fungus +discomycetous|1 +(adj)|ascomycete|ascomycetous fungus +disconcert|2 +(verb)|confuse|flurry|put off|embarrass|abash +(verb)|upset|discompose|untune|discomfit|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +disconcerted|1 +(adj)|discombobulated|discomposed +disconcerting|1 +(adj)|upsetting|displeasing +disconcertion|1 +(noun)|discomfiture|discomposure|disconcertment|embarrassment|anxiety +disconcertment|1 +(noun)|discomfiture|discomposure|disconcertion|embarrassment|anxiety +disconfirming|2 +(adj)|negative +(adj)|invalidating|unsupportive +disconnect|3 +(noun)|gulf|disconnection|disparity +(verb)|unplug|undo +(verb)|separate|disunite|divide|part +disconnected|5 +(adj)|staccato |abrupt +(adj)|disunited|fragmented|split|divided +(adj)|abrupt|staccato +(adj)|off +(adj)|confused|disjointed|disordered|garbled|illogical|scattered|unconnected|incoherent +disconnectedness|1 +(noun)|disjunction|disjuncture|disconnection|separation +disconnection|3 +(noun)|disjunction|disjuncture|disconnectedness|separation +(noun)|gulf|disconnect|disparity +(noun)|disjunction|separation +disconsolate|2 +(adj)|inconsolable |unconsolable|desolate +(adj)|blue|dark|depressing|dismal|dispiriting|gloomy|grim|cheerless |uncheerful +disconsolately|1 +(adv)|desolately +disconsolateness|1 +(noun)|despondency|despondence|heartsickness|depression +discontent|3 +(adj)|discontented |disaffected|ill-affected|malcontent|rebellious|disgruntled|dissatisfied|restless|ungratified|unsatisfied|displeased|unhappy +(noun)|discontentment|discontentedness|longing|yearning +(verb)|dissatisfy +discontented|1 +(adj)|discontented |discontent|disaffected|ill-affected|malcontent|rebellious|disgruntled|dissatisfied|restless|ungratified|unsatisfied|displeased|unhappy +discontentedness|1 +(noun)|discontentment|discontent|longing|yearning +discontentment|1 +(noun)|discontent|discontentedness|longing|yearning +discontinuance|1 +(noun)|discontinuation|termination|ending|conclusion +discontinuation|1 +(noun)|discontinuance|termination|ending|conclusion +discontinue|3 +(verb)|stop|cease|give up|quit|lay off +(verb)|end|stop|finish|terminate|cease +(verb)|break|break off|stop|end|terminate +discontinued|1 +(adj)|discontinued |interrupted|out of print +discontinuity|1 +(noun)|separation +discontinuous|2 +(adj)|discontinuous +(adj)|discontinuous |noncontinuous|disjunct|disrupted|sporadic|broken +discord|5 +(noun)|strife|disorder +(noun)|dissension|disagreement +(noun)|discordance|dissonance +(noun)|discordance|strife +(verb)|disagree|disaccord|be +discordance|2 +(noun)|discord|dissonance +(noun)|discord|strife +discordant|2 +(adj)|discordant |at variance|discrepant|dissentious|divisive|factious +(adj)|disharmonious|dissonant|inharmonic|inharmonious |unharmonious +discordantly|1 +(adv)|unharmoniously +discorporate|1 +(adj)|unembodied|bodiless|unbodied|disembodied|incorporeal |immaterial +discotheque|1 +(noun)|disco|ballroom|dance hall|dance palace +discount|6 +(noun)|price reduction|deduction|decrease|diminution|reduction|step-down +(noun)|discount rate|bank discount|interest rate|rate of interest +(noun)|rebate|refund +(noun)|deduction|allowance|adjustment +(verb)|dismiss|disregard|brush aside|brush off|push aside|ignore|reject +(verb)|mark down +discount business|1 +(noun)|commercial enterprise|business enterprise|business +discount chain|1 +(noun)|chain +discount house|1 +(noun)|discount store|discounter|wholesale house|mercantile establishment|retail store|sales outlet|outlet +discount rate|2 +(noun)|interest rate|rate of interest +(noun)|discount|bank discount|interest rate|rate of interest +discount store|1 +(noun)|discount house|discounter|wholesale house|mercantile establishment|retail store|sales outlet|outlet +discountenance|2 +(verb)|shame +(verb)|disapprove +discounter|1 +(noun)|discount house|discount store|wholesale house|mercantile establishment|retail store|sales outlet|outlet +discourage|2 +(verb)|deter|disapprove|reject +(verb)|warn|admonish|monish|advise|counsel +discouraged|2 +(adj)|demoralized|demoralised|disheartened|pessimistic +(adj)|irresolute +discouragement|3 +(noun)|disheartenment|dismay|despair +(noun)|disapproval +(noun)|deterrence +discouraging|2 +(adj)|discouraging |daunting|intimidating|demoralizing|demoralising|disheartening|dispiriting|frustrating|unencouraging|dissuasive|hopeless|unhelpful +(adj)|dissuasive +discourse|6 +(noun)|language unit|linguistic unit +(noun)|sermon|preaching|address|speech +(noun)|discussion|treatment|communication|communicating +(verb)|talk about|discuss|cover|treat|handle|plow|deal|address +(verb)|converse|talk|speak +(verb)|dissertate|talk|speak +discourteous|2 +(adj)|discourteous |abrupt|brusque|brusk|curt|short|caddish|unchivalrous|ungallant|unceremonious|disrespectful +(adj)|ungracious|impolite +discourteously|1 +(adv)|impolitely|rudely|showing bad manners +discourtesy|3 +(noun)|disrespect|message|content|subject matter|substance +(noun)|rudeness|manner|personal manner +(noun)|offense|offence|offensive activity|behavior|behaviour|conduct|doings +discover|7 +(verb)|detect|observe|find|notice|sight +(verb)|find|gestate|conceive|conceptualize|conceptualise +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|see +(verb)|find|learn|hear|get word|get wind|pick up|find out|get a line|see +(verb)|fall upon|strike|come upon|light upon|chance upon|come across|chance on|happen upon|attain|find|regain +(verb)|disclose|let on|bring out|reveal|expose|divulge|impart|break|give away|let out|tell +(verb)|identify|key|key out|distinguish|describe|name +discoverable|1 +(adj)|ascertainable|determinable +discovered|2 +(adj)|disclosed|revealed|unconcealed +(adj)|ascertained|observed|determined +discovered check|1 +(noun)|check +discoverer|2 +(noun)|inventor|artificer|creator +(noun)|finder|spotter|perceiver|observer|beholder +discovery|4 +(noun)|find|uncovering|deed|feat|effort|exploit +(noun)|disclosure|revelation|revealing +(noun)|breakthrough|find|insight|brainstorm|brainwave +(noun)|disclosure|revelation|revealing +discovery day|1 +(noun)|Columbus Day|Discovery Day|October 12|legal holiday|national holiday +discredit|4 +(noun)|disrepute|dishonor|dishonour +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +(verb)|disgrace|disparage|belittle|pick at +(verb)|disbelieve|reject +discreditable|1 +(adj)|disreputable +discreditably|1 +(adv)|disgracefully|ingloriously|ignominiously|shamefully|dishonorably|dishonourably +discredited|2 +(adj)|damaged|disreputable +(adj)|disgraced|dishonored|shamed|ashamed +discreet|3 +(adj)|discreet |modest|restrained|unostentatious|prudent +(adj)|discerning|tactful +(adj)|circumspect|prudent +discreetness|2 +(noun)|discretion|circumspection|prudence|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|delicacy|diplomacy|finesse|tact|tactfulness +discrepancy|2 +(noun)|disagreement|divergence|variance|difference +(noun)|variance|variant|deviation|divergence|departure|difference +discrepant|3 +(adj)|incompatible|inconsistent +(adj)|inconsistent|incongruous +(adj)|at variance|discordant +discrete|1 +(adj)|distinct|separate +discreteness|1 +(noun)|distinctness|separateness|severalty|separation +discretion|5 +(noun)|liberty +(noun)|discreetness|circumspection|prudence|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|delicacy|taste|appreciation|discernment|perceptiveness +(noun)|free will|power|powerfulness +(noun)|discernment|wisdom|wiseness +discretional|1 +(adj)|discretionary|arbitrary +discretionary|2 +(adj)|discretional|arbitrary +(adj)|unrestricted +discretionary trust|1 +(noun)|trust +discriminable|1 +(adj)|distinguishable +discriminate|5 +(adj)|discriminate |discriminating|discriminating +(adj)|nice|discriminating +(verb)|know apart|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|separate|single out|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|recognize|recognise|distinguish|discern|pick out|make out|tell apart +discriminating|3 +(adj)|discriminating |appreciative|diacritic|diacritical|discriminate|nice|discriminative|discriminatory|eclectic|good|selective|discerning|discerning|discriminate +(adj)|discriminate +(adj)|acute|incisive|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive +discrimination|2 +(noun)|favoritism|favouritism|social control +(noun)|secernment|basic cognitive process +discriminative|2 +(adj)|discriminatory|discriminating +(adj)|judicial|critical +discriminative stimulus|1 +(noun)|cue|stimulation|stimulus|stimulant|input +discriminator|1 +(noun)|differentiator|person|individual|someone|somebody|mortal|human|soul +discriminatory|4 +(adj)|prejudiced |homophobic|jaundiced|loaded|racist|antiblack|anti-Semitic|anti-Semite|sexist +(adj)|invidious|unfavorable |unfavourable +(adj)|discriminative|discriminating +(adj)|preferential|advantageous +discursive|2 +(adj)|dianoetic|logical +(adj)|digressive|excursive|rambling|indirect +discursively|1 +(adv)|ramblingly +discursiveness|1 +(noun)|indirectness +discus|2 +(noun)|field event +(noun)|saucer|disk|disc|sports equipment|sporting goods +discuss|2 +(verb)|discourse|talk about|cover|treat|handle|plow|deal|address +(verb)|hash out|talk over|talk of|talk about +discussant|1 +(noun)|participant +discussion|2 +(noun)|treatment|discourse|communication|communicating +(noun)|give-and-take|word|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +disdain|4 +(noun)|contempt|scorn|despite|dislike +(noun)|condescension|patronage|disparagement|depreciation|derogation +(verb)|contemn|despise|scorn|hate|detest +(verb)|reject|spurn|freeze off|scorn|pooh-pooh|turn down|refuse|decline +disdainful|2 +(adj)|contemptuous|insulting|scornful|disrespectful +(adj)|haughty|lordly|prideful|sniffy|supercilious|swaggering|proud +disdainfully|2 +(adv)|cavalierly +(adv)|contemptuously|scornfully|contumeliously|showing contempt +disdainfulness|1 +(noun)|condescension|superciliousness|arrogance|haughtiness|hauteur|highhandedness|lordliness +disease|1 +(noun)|illness|unwellness|malady|sickness +disease of the neuromuscular junction|1 +(noun)|disease +disease of the skin|1 +(noun)|skin disease|skin disorder|skin problem|skin condition|disease +diseased|1 +(adj)|morbid|pathologic|pathological|unhealthy +diseased person|1 +(noun)|sick person|sufferer|unfortunate|unfortunate person +disembark|1 +(verb)|debark|set down|land|set down +disembarkation|1 +(noun)|debarkation|disembarkment|landing +disembarkment|1 +(noun)|debarkation|disembarkation|landing +disembarrass|1 +(verb)|rid|free +disembarrassment|1 +(noun)|easing|moderation|relief +disembodied|1 +(adj)|discorporate|unembodied|bodiless|unbodied|incorporeal |immaterial +disembodied spirit|1 +(noun)|spirit|spiritual being|supernatural being +disembody|1 +(verb)|rid|free|disembarrass +disembowel|1 +(verb)|eviscerate|draw|remove|take|take away|withdraw +disembowelment|1 +(noun)|evisceration|removal|remotion +disembroil|1 +(verb)|disinvolve|disentangle|free|discharge +disenable|1 +(verb)|disable|incapacitate|change|alter|modify +disenchant|1 +(verb)|disillusion|disappoint|let down +disenchanted|1 +(adj)|disenchanted |disabused|undeceived|disillusioned|enlightened|sophisticated +disenchanting|1 +(adj)|disillusioning|convincing +disenchantment|1 +(noun)|disillusion|disillusionment|edification|sophistication +disencumber|1 +(verb)|extricate|untangle|disentangle|free|disengage +disenfranchise|1 +(verb)|disfranchise|deprive +disenfranchised|1 +(adj)|disenfranchised |disfranchised|voteless +disenfranchisement|1 +(noun)|management|direction +disengage|3 +(verb)|withdraw|let go of|let go|release|relinquish +(verb)|free +(verb)|change state|turn +disengagement|2 +(noun)|detachment|separation +(noun)|fallback|pullout|retreat +disentangle|5 +(verb)|extricate|untangle|disencumber|free|disengage +(verb)|unsnarl|straighten out|order +(verb)|disinvolve|disembroil|free|discharge +(verb)|unwind|undo +(verb)|comb|comb out|groom|neaten +disentangled|2 +(adj)|extricated|freed|free +(adj)|loosened|unsnarled|untangled +disentanglement|1 +(noun)|unsnarling|untangling|extrication|liberation|release|freeing +disentangler|1 +(noun)|unraveler|unraveller|person|individual|someone|somebody|mortal|human|soul +disequilibrium|1 +(noun)|situation|state of affairs +disestablish|1 +(verb)|deprive|impoverish +disestablishment|1 +(noun)|group action +disesteem|2 +(noun)|dishonor|dishonour +(verb)|disrespect|see|consider|reckon|view|regard +disfavor|3 +(noun)|disfavour|rejection +(noun)|disfavour|dislike|disapproval|inclination|disposition|tendency +(verb)|disadvantage|disfavour|discriminate|separate|single out +disfavour|3 +(noun)|disfavor|rejection +(noun)|disfavor|dislike|disapproval|inclination|disposition|tendency +(verb)|disadvantage|disfavor|discriminate|separate|single out +disfiguration|2 +(noun)|disfigurement|deformity|appearance|visual aspect +(noun)|defacement|disfigurement|damage|harm|hurt|scathe +disfigure|1 +(verb)|deface|blemish|mar|impair|spoil|deflower|vitiate +disfigured|1 +(adj)|ugly +disfigurement|2 +(noun)|disfiguration|deformity|appearance|visual aspect +(noun)|defacement|disfiguration|damage|harm|hurt|scathe +disforest|1 +(verb)|deforest|disafforest|clear +disforestation|1 +(noun)|deforestation|denudation|stripping|uncovering|baring|husking +disfranchise|1 +(verb)|disenfranchise|deprive +disfranchised|1 +(adj)|disenfranchised |voteless +disfranchisement|1 +(noun)|discontinuance|discontinuation +disfunction|1 +(noun)|dysfunction|pathology +disgorge|2 +(verb)|spill|shed|move|displace +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +disgorgement|1 +(noun)|vomit|vomiting|emesis|regurgitation|puking|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +disgrace|4 +(noun)|shame|ignominy|dishonor|dishonour +(verb)|dishonor|dishonour|attaint|shame +(verb)|take down|degrade|demean|put down|humiliate|mortify|chagrin|humble|abase +(verb)|discredit|disparage|belittle|pick at +disgraced|1 +(adj)|discredited|dishonored|shamed|ashamed +disgraceful|2 +(adj)|scandalous|shameful|shocking|immoral +(adj)|black|ignominious|inglorious|opprobrious|shameful|dishonorable |dishonourable +disgracefully|1 +(adv)|ingloriously|ignominiously|discreditably|shamefully|dishonorably|dishonourably +disgracefulness|1 +(noun)|shamefulness|ignominiousness|unworthiness +disgruntle|1 +(verb)|dissatisfy +disgruntled|1 +(adj)|dissatisfied|discontented |discontent +disgruntlement|1 +(noun)|discontentment|discontent|discontentedness +disguise|4 +(noun)|camouflage|semblance|gloss|color|colour +(noun)|attire|garb|dress +(noun)|camouflage|concealment|concealing|hiding +(verb)|hide|conceal +disguised|2 +(adj)|cloaked|masked|covert +(adj)|veiled +disgust|3 +(noun)|dislike +(verb)|gross out|revolt|repel|stimulate|excite|stir +(verb)|revolt|nauseate|sicken|churn up|repel|repulse +disgusted|1 +(adj)|fed up|sick|sick of|tired of|displeased +disgustful|1 +(adj)|disgusting|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +disgusting|1 +(adj)|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +disgustingly|1 +(adv)|distastefully|revoltingly|sickeningly +disgustingness|1 +(noun)|distastefulness|nauseatingness|sickeningness|unsavoriness|unpalatability|unpalatableness +dish|8 +(noun)|crockery|dishware|container +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|dishful|containerful +(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|woman|adult female +(noun)|dish aerial|dish antenna|saucer|directional antenna +(noun)|cup of tea|bag|activity +(verb)|serve|serve up|dish out|dish up|provide|supply|ply|cater +(verb)|shape|form +dish-shaped|1 +(adj)|dished|concave +dish aerial|1 +(noun)|dish|dish antenna|saucer|directional antenna +dish antenna|1 +(noun)|dish|dish aerial|saucer|directional antenna +dish out|2 +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|allot|dole out|give +(verb)|serve|serve up|dish up|dish|provide|supply|ply|cater +dish rack|1 +(noun)|rack +dish the dirt|1 +(verb)|gossip|talk|speak +dish towel|1 +(noun)|tea towel|towel +dish up|1 +(verb)|serve|serve up|dish out|dish|provide|supply|ply|cater +dish washer|2 +(noun)|dishwasher|dishwashing machine|white goods +(noun)|dishwasher|laborer|manual laborer|labourer|jack +dishabille|1 +(noun)|deshabille|condition|status +disharmonious|1 +(adj)|discordant|dissonant|inharmonic|inharmonious |unharmonious +disharmony|1 +(noun)|inharmoniousness|dissonance +dishcloth|1 +(noun)|dishrag|piece of cloth|piece of material +dishcloth gourd|1 +(noun)|luffa|sponge gourd|rag gourd|strainer vine|vine +dishearten|1 +(verb)|put off|discourage +disheartened|1 +(adj)|demoralized|demoralised|discouraged|pessimistic +disheartening|1 +(adj)|demoralizing|demoralising|dispiriting|discouraging +disheartenment|2 +(noun)|discouragement|dismay|despair +(noun)|discouragement +dished|1 +(adj)|dish-shaped|concave +dishevel|1 +(verb)|tousle|tangle|disarrange +disheveled|1 +(adj)|dishevelled|frowzled|rumpled|tousled|untidy +dishevelled|1 +(adj)|disheveled|frowzled|rumpled|tousled|untidy +dishful|1 +(noun)|dish|containerful +dishonest|4 +(adj)|dishonest |dishonorable|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|beguiling|deceitful|fallacious|fraudulent|deceptive|misleading|false|picaresque|rascally|roguish|scoundrelly|blackguardly|thieving|thievish|crooked|corrupt|dishonorable|dishonourable|false|insincere|untrustworthy|untrusty +(adj)|unscrupulous|crooked |corrupt +(adj)|untruthful +(adj)|corruptible|bribable|purchasable|venal|corrupt +dishonestly|1 +(adv)|venally|deceitfully +dishonesty|2 +(noun)|unrighteousness +(noun)|knavery|wrongdoing|wrongful conduct|misconduct|actus reus +dishonor|5 +(noun)|dishonour|standing +(noun)|dishonour|unrighteousness +(verb)|disgrace|dishonour|attaint|shame +(verb)|rape|ravish|violate|assault|dishonour|outrage|assail|assault|set on|attack +(verb)|dishonour|refuse|reject|pass up|turn down|decline +dishonorable|5 +(adj)|dishonorable |dishonourable|debasing|degrading|shabby|black|disgraceful|ignominious|inglorious|opprobrious|shameful|unprincipled|yellow|dishonest|disreputable|ignoble|inglorious|unjust|unworthy +(adj)|dishonest |ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|beguiling|deceitful|fallacious|fraudulent|deceptive|misleading|false|picaresque|rascally|roguish|scoundrelly|blackguardly|thieving|thievish|crooked|corrupt|dishonourable|false|insincere|untrustworthy|untrusty +(adj)|inglorious |obscure|unknown|unsung|dishonourable|unknown +(adj)|base|dishonourable|immoral|unethical|wrong +(adj)|dishonourable|ignoble +dishonorable discharge|1 +(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +dishonorableness|1 +(noun)|dishonourableness|unrighteousness +dishonorably|1 +(adv)|disgracefully|ingloriously|ignominiously|discreditably|shamefully|dishonourably +dishonored|1 +(adj)|discredited|disgraced|shamed|ashamed +dishonour|5 +(noun)|dishonor|standing +(noun)|dishonor|unrighteousness +(verb)|dishonor|disgrace|attaint|shame +(verb)|rape|ravish|violate|assault|dishonor|outrage|assail|assault|set on|attack +(verb)|dishonor|refuse|reject|pass up|turn down|decline +dishonourable|3 +(adj)|dishonorable |debasing|degrading|shabby|black|disgraceful|ignominious|inglorious|opprobrious|shameful|unprincipled|yellow|dishonest|dishonorable|disreputable|ignoble|inglorious|dishonorable|unjust|unworthy +(adj)|base|dishonorable|immoral|unethical|wrong +(adj)|dishonorable|ignoble +dishonourableness|1 +(noun)|dishonorableness|unrighteousness +dishonourably|1 +(adv)|disgracefully|ingloriously|ignominiously|discreditably|shamefully|dishonorably +dishpan|1 +(noun)|pan +dishrag|1 +(noun)|dishcloth|piece of cloth|piece of material +dishware|1 +(noun)|crockery|tableware +dishwasher|2 +(noun)|dish washer|dishwashing machine|white goods +(noun)|laborer|manual laborer|labourer|jack +dishwasher detergent|1 +(noun)|dishwashing detergent|dishwashing liquid|detergent +dishwashing|1 +(noun)|washup|wash|washing|lavation +dishwashing detergent|1 +(noun)|dishwasher detergent|dishwashing liquid|detergent +dishwashing liquid|1 +(noun)|dishwasher detergent|dishwashing detergent|detergent +dishwashing machine|1 +(noun)|dishwasher|dish washer|white goods +dishwater|1 +(noun)|water|H2O +dishy|1 +(adj)|beautiful +disillusion|2 +(noun)|disenchantment|disillusionment|edification|sophistication +(verb)|disenchant|disappoint|let down +disillusioned|1 +(adj)|enlightened|disenchanted +disillusioning|1 +(adj)|disenchanting|convincing +disillusionment|1 +(noun)|disenchantment|disillusion|edification|sophistication +disincarnate|1 +(verb)|immaterialize|immaterialise|unsubstantialize|unsubstantialise +disincentive|1 +(noun)|deterrence|rational motive +disinclination|2 +(noun)|dislike +(noun)|reluctance|hesitancy|hesitation|indisposition|unwillingness +disincline|1 +(verb)|indispose|determine|shape|mold|influence|regulate +disinclined|1 +(adj)|disinclined |afraid|antipathetic|antipathetical|averse|indisposed|loath|loth|reluctant|negative|unwilling +disinfect|1 +(verb)|clean|make clean +disinfectant|2 +(adj)|bactericidal|germicidal|antiseptic +(noun)|germicide|antimicrobic|antimicrobial|agent +disinfection|1 +(noun)|medical care|medical aid +disinfest|1 +(verb)|rid|free|disembarrass +disinfestation|1 +(noun)|cleaning|cleansing|cleanup +disinfestation officer|1 +(noun)|rat-catcher|workman|working man|working person +disinflation|1 +(noun)|economic process +disinformation|1 +(noun)|misinformation +disingenuous|1 +(adj)|disingenuous |artful|distorted|misrepresented|perverted|twisted|insincere +disingenuously|1 +(adv)|artfully +disingenuousness|1 +(noun)|dishonesty +disinherit|1 +(verb)|disown|deprive +disinheritance|1 +(noun)|discontinuance|discontinuation +disinherited|1 +(adj)|unloved +disintegrable|1 +(adj)|meltable|soluble +disintegrate|3 +(verb)|change integrity +(verb)|change|alter|modify +(verb)|decay|decompose|change integrity +disintegration|4 +(noun)|decomposition|decay +(noun)|dissolution|natural process|natural action|action|activity +(noun)|decay|radioactive decay|nuclear reaction +(noun)|annihilation|destruction|demolition|wipeout +disintegrative|1 +(adj)|disintegrative |clastic|decompositional +disinter|1 +(verb)|exhume|excavate|dig up|turn up +disinterest|1 +(noun)|neutrality|tolerance +disinterested|1 +(adj)|impartial |fair +disinterestedly|1 +(adv)|without bias +disinterestedness|1 +(noun)|impartiality|nonpartisanship +disinterment|1 +(noun)|exhumation|digging up|deed|feat|effort|exploit +disinvest|3 +(verb)|divest|free|discharge +(verb)|divest|withdraw|draw|take out|draw off +(verb)|strip|undress|divest|remove|take|take away|withdraw +disinvestment|1 +(noun)|withdrawal +disinvolve|1 +(verb)|disembroil|disentangle|free|discharge +disjoin|2 +(verb)|disjoint|separate|disunite|divide|part +(verb)|disjoint|separate|divide|part +disjoined|1 +(adj)|separate|unconnected +disjoint|5 +(adj)|separate +(verb)|disassociate|dissociate|divorce|disunite|separate|part|split up|split|break|break up +(verb)|disarticulate|separate|disunite|divide|part +(verb)|disjoin|separate|disunite|divide|part +(verb)|disjoin|separate|divide|part +disjointed|3 +(adj)|confused|disconnected|disordered|garbled|illogical|scattered|unconnected|incoherent +(adj)|divided +(adj)|dislocated|separated|injured +disjointedness|1 +(noun)|incoherence|incoherency +disjunct|4 +(adj)|disjunct +(adj)|divided +(adj)|isolated|separate +(adj)|discontinuous |noncontinuous +disjunction|2 +(noun)|disjuncture|disconnection|disconnectedness|separation +(noun)|disconnection|separation +disjunctive|1 +(adj)|disjunctive |adversative|oppositive|alternative|mutually exclusive|contrastive|dividing|divisional|intervening|partitive|separative|separative +disjunctive conjunction|1 +(noun)|conjunction +disjuncture|1 +(noun)|disjunction|disconnection|disconnectedness|separation +disk|5 +(noun)|disc|saucer|round shape +(noun)|disc|plate|circle|round +(noun)|phonograph record|phonograph recording|record|disc|platter|sound recording|audio recording +(noun)|magnetic disk|magnetic disc|disc|memory device|storage device +(verb)|harrow|plow|plough|turn +disk-jockey|1 +(verb)|disc-jockey|DJ|comment +disk access|1 +(noun)|access|memory access +disk brake|1 +(noun)|disc brake|hydraulic brake|hydraulic brakes +disk cache|1 +(noun)|cache|memory cache +disk clutch|1 +(noun)|friction clutch +disk controller|1 +(noun)|control|controller +disk drive|1 +(noun)|disc drive|hard drive|Winchester drive|drive +disk error|1 +(noun)|hardware error +disk file|1 +(noun)|computer file +disk harrow|1 +(noun)|disc harrow|harrow +disk jockey|1 +(noun)|disc jockey|dj|broadcaster +disk operating system|1 +(noun)|DOS|operating system|OS +disk overhead|1 +(noun)|overhead|disk space|disc space +disk pack|1 +(noun)|disc pack|pack +disk shape|1 +(noun)|circularity|roundness +disk space|1 +(noun)|disc space|space +diskette|1 +(noun)|floppy|floppy disk|magnetic disk|magnetic disc|disk|disc +disklike|1 +(adj)|discoid|discoidal|round |circular +dislikable|1 +(adj)|disliked +dislike|2 +(noun)|disfavor|disfavour|disapproval|inclination|disposition|tendency +(noun)|feeling +disliked|1 +(adj)|disliked |unlikable|unlikeable|dislikable +dislocate|2 +(verb)|luxate|splay|slip|move|displace +(verb)|displace|resettle +dislocated|1 +(adj)|disjointed|separated|injured +dislocation|3 +(noun)|disruption|interruption|break +(noun)|breakdown|disruption|perturbation +(noun)|injury|hurt|harm|trauma +dislodge|3 +(verb)|free|remove|take|take away|withdraw +(verb)|shift|reposition|move|displace +(verb)|displace|bump|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +dislodgement|1 +(noun)|dislodgment|removal|remotion +dislodgment|1 +(noun)|dislodgement|removal|remotion +dislogistic|1 +(adj)|dyslogistic|pejorative|uncomplimentary +disloyal|2 +(adj)|unpatriotic |un-American +(adj)|disloyal |awol|faithless|traitorous|unfaithful|insurgent|seditious|subversive|mutinous|rebel|rebelling|rebellious|recreant|renegade|traitorous|treasonable|treasonous|unpatriotic +disloyalty|1 +(noun)|infidelity|unfaithfulness +dismal|2 +(adj)|dingy|drab|drear|dreary|gloomy|sorry|cheerless |uncheerful +(adj)|blue|dark|depressing|disconsolate|dispiriting|gloomy|grim|cheerless |uncheerful +dismally|2 +(adv)|drearily +(adv)|dreadfully +dismantle|3 +(verb)|level|raze|rase|tear down|take down|pull down|destroy|destruct +(verb)|disassemble|take apart|break up|break apart|destroy|destruct +(verb)|strip|remove|take|take away|withdraw +dismantled|1 +(adj)|demolished|razed|destroyed +dismantlement|1 +(noun)|dismantling|disassembly|activity +dismantling|1 +(noun)|dismantlement|disassembly|activity +dismay|4 +(noun)|discouragement|disheartenment|despair +(noun)|alarm|consternation|fear|fearfulness|fright +(verb)|depress|deject|cast down|get down|dispirit|demoralize|demoralise|discourage +(verb)|alarm|appal|appall|horrify|frighten|fright|scare|affright +dismayed|1 +(adj)|aghast|appalled|shocked|afraid +dismaying|1 +(adj)|appalling|alarming +dismember|2 +(verb)|kill +(verb)|take apart|discerp|separate|divide|part +dismemberment|1 +(noun)|taking apart|mutilation|torture|torturing +dismiss|6 +(verb)|disregard|brush aside|brush off|discount|push aside|ignore|reject +(verb)|throw out +(verb)|send packing|send away|drop|fire|give notice|can|give the axe|send away|sack|force out|give the sack|terminate +(verb)|fire|give notice|can|give the axe|send away|sack|force out|give the sack|terminate|remove +(verb)|usher out|say farewell +(verb)|dissolve|change|alter|modify +dismissal|4 +(noun)|judgment of dismissal|judgement of dismissal|judgment|judgement|judicial decision +(noun)|dismission|pink slip|notice +(noun)|permission +(noun)|dismission|discharge|firing|liberation|release|sack|sacking|termination|ending|conclusion +dismissed|1 +(adj)|discharged|fired|laid-off|pink-slipped|unemployed +dismissible|1 +(adj)|removable +dismission|2 +(noun)|dismissal|pink slip|notice +(noun)|dismissal|discharge|firing|liberation|release|sack|sacking|termination|ending|conclusion +dismissive|2 +(adj)|uninterested +(adj)|negative +dismount|2 +(noun)|discontinuance|discontinuation +(verb)|unhorse|light|get off|get down|descend|fall|go down|come down +disney|1 +(noun)|Disney|Walt Disney|Walter Elias Disney|film maker|filmmaker|film producer|movie maker +disneyland|1 +(noun)|Disneyland|amusement park|funfair|pleasure ground +disobedience|2 +(noun)|noncompliance|insubordination|rebelliousness +(noun)|intractability|intractableness +disobedient|2 +(adj)|disobedient |contrary|obstinate|perverse|wayward|froward|headstrong|self-willed|willful|wilful|recusant|fractious|refractory|bad|defiant|noncompliant|incorrigible|intractable|stubborn|unmanageable +(adj)|unruly|insubordinate +disobey|1 +(verb)|refuse|decline +disoblige|2 +(verb)|trouble|put out|inconvenience|discommode|incommode|bother|affect|impact|bear upon|bear on|touch on|touch +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +disobliging|1 +(adj)|uncooperative|unaccommodating |unobliging +disorder|5 +(noun)|upset|condition|status +(noun)|disorderliness|condition|status +(noun)|state +(verb)|perturb|unhinge|disquiet|trouble|cark|distract|disturb|upset|trouble +(verb)|disarray|change|alter|modify +disordered|3 +(adj)|broken|confused|upset|disorganized |disorganised +(adj)|confused|disconnected|disjointed|garbled|illogical|scattered|unconnected|incoherent +(adj)|disordered |unordered +disorderliness|3 +(noun)|disorder|condition|status +(noun)|rowdiness|rowdyism|roughness|disorder +(noun)|disarray|untidiness|messiness +disorderly|3 +(adj)|disorderly |boisterous|rambunctious|robustious|rumbustious|unruly|brawling|fighting|mobbish|moblike|raucous|rowdy|rough-and-tumble|bare-knuckle|bare-knuckled +(adj)|higgledy-piggledy|hugger-mugger|jumbled|topsy-turvy|untidy +(adj)|chaotic|wild +disorderly behavior|1 +(noun)|disorderly conduct|disturbance of the peace|breach of the peace|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +disorderly conduct|1 +(noun)|disorderly behavior|disturbance of the peace|breach of the peace|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +disorganisation|2 +(noun)|disorganization|disarrangement|disorderliness|disorder +(noun)|disorganization|disturbance +disorganise|1 +(verb)|disorganize +disorganised|1 +(adj)|disorganized |broken|confused|disordered|upset|chaotic|helter-skelter|fucked-up|snafu|scrambled|unmethodical|unstuck|undone|unsystematic +disorganization|2 +(noun)|disorganisation|disarrangement|disorderliness|disorder +(noun)|disorganisation|disturbance +disorganize|1 +(verb)|disorganise +disorganized|1 +(adj)|disorganized |disorganised|broken|confused|disordered|upset|chaotic|helter-skelter|fucked-up|snafu|scrambled|unmethodical|unstuck|undone|unsystematic +disorganized schizophrenia|1 +(noun)|hebephrenia|hebephrenic schizophrenia|disorganized type schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +disorganized type schizophrenia|1 +(noun)|hebephrenia|hebephrenic schizophrenia|disorganized schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +disorient|1 +(verb)|disorientate|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +disorientate|1 +(verb)|disorient|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +disorientation|2 +(noun)|freak out|delusion|hallucination +(noun)|confusion|mental confusion|confusedness|disarray +disoriented|2 +(adj)|confused|lost|unoriented +(adj)|alienated|anomic|unoriented +disorienting|1 +(adj)|disorienting |confusing|estranging|stunning|stupefying|unoriented +disown|1 +(verb)|disinherit|deprive +disowned|1 +(adj)|repudiated|unacknowledged +disowning|1 +(noun)|disownment|repudiation|renunciation +disownment|1 +(noun)|disowning|repudiation|renunciation +disparage|1 +(verb)|belittle|pick at|knock|criticize|criticise|pick apart +disparagement|2 +(noun)|depreciation|derogation|disrespect|discourtesy +(noun)|dispraise|disapproval +disparager|1 +(noun)|detractor|depreciator|knocker|cynic|faultfinder +disparaging|1 +(adj)|derogative|derogatory|uncomplimentary +disparagingly|1 +(adv)|slightingly +disparate|2 +(adj)|different +(adj)|heterogeneous |heterogenous +disparateness|1 +(noun)|distinctiveness|dissimilarity|unsimilarity +disparity|1 +(noun)|inequality +dispassion|1 +(noun)|dispassionateness|unemotionality|emotionlessness +dispassionate|1 +(adj)|cold-eyed|impartial |fair +dispassionateness|1 +(noun)|dispassion|unemotionality|emotionlessness +dispatch|9 +(noun)|despatch|communique|report|news report|story|account|write up +(noun)|despatch|shipment|departure|going|going away|leaving +(noun)|despatch|expedition|expeditiousness|celerity|quickness|rapidity +(noun)|despatch|killing|kill|putting to death +(verb)|despatch|send off|transport|send|ship +(verb)|discharge|complete|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|murder|slay|hit|bump off|polish off|remove|kill +(verb)|act|move +(verb)|kill +dispatch box|1 +(noun)|dispatch case|case +dispatch case|1 +(noun)|dispatch box|case +dispatch rider|1 +(noun)|messenger|courier +dispatched|1 +(adj)|sent +dispatcher|2 +(noun)|starter|official +(noun)|employee +dispel|2 +(verb)|chase away|drive out|turn back|drive away|drive off|run off|move|displace +(verb)|disperse|dissipate|break up|scatter|separate|divide +dispensability|1 +(noun)|dispensableness|inessentiality +dispensable|1 +(adj)|dispensable |unnecessary|unneeded +dispensableness|1 +(noun)|dispensability|inessentiality +dispensary|1 +(noun)|clinic +dispensation|3 +(noun)|license|permission|permit +(noun)|share|portion|part|percentage +(noun)|distribution +dispense|3 +(verb)|distribute|administer|mete out|deal|parcel out|lot|shell out|deal out|dish out|allot|dole out|give +(verb)|exempt|relieve|free|dispense with +(verb)|administer|treat|care for +dispense with|3 +(verb)|spare|give up|part with|give +(verb)|waive|relinquish|forgo|foreswear +(verb)|abandon +dispensed|1 +(adj)|distributed +dispenser|2 +(noun)|container +(noun)|supplier|provider +dispersal|1 +(noun)|dispersion|dissemination|diffusion|spread|spreading +disperse|5 +(verb)|scatter|sprinkle|dot|dust|discharge +(verb)|dissipate|dispel|break up|scatter|separate|divide +(verb)|dissipate|scatter|spread out|separate|part|split +(verb)|break up|scatter|change integrity +(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|pass around|publicize|publicise|air|bare +dispersed|1 +(adj)|spread|distributed +dispersed particles|1 +(noun)|dispersed phase|phase|form +dispersed phase|1 +(noun)|dispersed particles|phase|form +dispersing medium|1 +(noun)|dispersing phase|dispersion medium|phase|form +dispersing phase|1 +(noun)|dispersion medium|dispersing medium|phase|form +dispersion|3 +(noun)|scattering|spread|spreading +(noun)|distribution|spacing|spatial arrangement +(noun)|dispersal|dissemination|diffusion|spread|spreading +dispersion medium|1 +(noun)|dispersing phase|dispersing medium|phase|form +dispersive|2 +(adj)|diffusing|diffusive|disseminative|disseminating|scattering|spreading|distributive +(adj)|distributive|decentralizing +dispirit|1 +(verb)|depress|deject|cast down|get down|dismay|demoralize|demoralise|discourage +dispirited|2 +(adj)|listless|spiritless +(adj)|blue|depressed|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected +dispiritedly|1 +(adv)|hopelessly +dispiritedness|1 +(noun)|downheartedness|low-spiritedness|sadness|unhappiness +dispiriting|2 +(adj)|demoralizing|demoralising|disheartening|discouraging +(adj)|blue|dark|depressing|disconsolate|dismal|gloomy|grim|cheerless |uncheerful +displace|6 +(verb)|move +(verb)|force out|move +(verb)|uproot|deracinate|place +(verb)|move +(verb)|dislodge|bump|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +(verb)|dislocate|resettle +displaced fracture|1 +(noun)|fracture|break +displaced person|1 +(noun)|DP|stateless person|refugee +displacement|7 +(noun)|shift|translation +(noun)|supplanting|replacement|replacing +(noun)|translation|motion|movement|move +(noun)|displacement reaction|chemical reaction|reaction +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|deracination|movement +(noun)|rejection +displacement reaction|1 +(noun)|displacement|chemical reaction|reaction +displacement unit|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|cubature unit|unit of measurement|unit +display|9 +(noun)|show|demonstration|demo +(noun)|exhibit|showing|show +(noun)|electronic device +(noun)|presentation|representation +(noun)|disclosure|revelation|revealing +(noun)|visual communication +(verb)|expose|exhibit|show +(verb)|reveal|show|communicate|pass on|pass|put across +(verb)|woo|court|romance|solicit +display adapter|1 +(noun)|display adaptor|electronic device +display adaptor|1 +(noun)|display adapter|electronic device +display board|1 +(noun)|display panel|board|display +display case|1 +(noun)|case|showcase|container +display panel|1 +(noun)|display board|board|display +display window|1 +(noun)|shopwindow|show window|window +displaying incompetence|1 +(adv)|incompetently +displeased|1 +(adj)|displeased |annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stunng|disgusted|fed up|sick|sick of|tired of|exasperated|cheesed off|browned off|frowning|offended|pained|discontented|discontent +displeasing|1 +(adj)|displeasing |disconcerting|upsetting|exasperating|infuriating|maddening|vexing|off-putting|ugly|unpleasant +displeasure|1 +(noun)|dissatisfaction|annoyance|chafe|vexation +displume|2 +(verb)|deplume|plunder|despoil|loot|reave|strip|rifle|ransack|pillage|foray +(verb)|pluck|pull|tear|deplume|deplumate|strip +disport|2 +(verb)|amuse|divert|entertain +(verb)|frolic|lark|rollick|skylark|sport|cavort|gambol|frisk|romp|run around|lark about|play +disposable|2 +(adj)|disposable |available|usable|useable|fluid|liquid|expendable|spendable +(adj)|disposable |throwaway +disposable income|1 +(noun)|income +disposal|4 +(noun)|power|powerfulness +(noun)|administration|management|direction +(noun)|disposition|deed|feat|effort|exploit +(noun)|electric pig|garbage disposal|kitchen appliance +disposal plant|1 +(noun)|sewage disposal plant|plant|works|industrial plant +dispose|4 +(verb)|sell +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|throw out|cast out|throw away|cast away|put away|get rid of|remove +(verb)|incline|determine|shape|mold|influence|regulate +(verb)|qualify|prepare|groom|train +dispose of|1 +(verb)|manage|deal|care|handle +disposed|2 +(adj)|fain|inclined|prepared|willing +(adj)|apt|given|minded|tending|inclined +disposition|4 +(noun)|temperament|nature +(noun)|disposal|deed|feat|effort|exploit +(noun)|inclination|tendency|attitude|mental attitude +(noun)|property +dispossess|1 +(verb)|deprive|strip|divest +dispossessed|1 +(adj)|homeless|roofless|unfortunate +dispossession|2 +(noun)|eviction|legal ouster|due process|due process of law +(noun)|exorcism|supernaturalism +dispraise|1 +(noun)|disparagement|disapproval +dispread|1 +(verb)|expand|spread out +disproof|2 +(noun)|falsification|refutation|evidence|grounds +(noun)|falsification|falsifying|refutation|determination|finding +disproportion|1 +(noun)|disparity +disproportional|1 +(adj)|disproportionate +disproportionate|2 +(adj)|disproportionate |disproportional +(adj)|incommensurate +disprove|1 +(verb)|confute|negate|contradict +disprover|1 +(noun)|rebutter|refuter|confuter|debater|arguer +disputable|2 +(adj)|debatable|contestable +(adj)|arguable|debatable|moot|controversial +disputant|1 +(noun)|controversialist|eristic|person|individual|someone|somebody|mortal|human|soul +disputation|2 +(noun)|debate|public debate|public speaking|speechmaking|speaking|oral presentation +(noun)|controversy|contention|contestation|disceptation|tilt|argument|arguing|dispute|difference|difference of opinion|conflict +disputatious|1 +(adj)|contentious|disputative|litigious|argumentative +disputatiously|1 +(adv)|argumentatively +disputative|1 +(adj)|contentious|disputatious|litigious|argumentative +dispute|4 +(noun)|difference|difference of opinion|conflict|disagreement +(noun)|contravention|resistance +(verb)|challenge|gainsay|contest|contend|repugn +(verb)|quarrel|scrap|argufy|altercate|argue|contend|debate|fence +disputed|1 +(adj)|controversial +disqualification|2 +(noun)|unfitness +(noun)|prevention|bar +disqualified|2 +(adj)|ineligible +(adj)|ineligible +disqualify|2 +(verb)|unfit|indispose|change|alter|modify +(verb)|pronounce|label|judge +disqualifying|1 +(adj)|disabling +disquiet|3 +(noun)|anxiousness|anxiety +(noun)|unease|uneasiness|discomposure +(verb)|perturb|unhinge|trouble|cark|distract|disorder|disturb|upset|trouble +disquieted|1 +(adj)|distressed|disturbed|upset|worried|troubled +disquieting|1 +(adj)|uncomfortable +disquietude|1 +(noun)|edginess|uneasiness|inquietude|anxiety +disquisition|1 +(noun)|essay +disraeli|1 +(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman|solon|national leader +disregard|5 +(noun)|neglect|inattention +(noun)|neglect|mistreatment +(verb)|ignore|snub|cut|treat|handle|do by +(verb)|dismiss|brush aside|brush off|discount|push aside|ignore|reject +(verb)|neglect|ignore +disregarded|1 +(adj)|forgotten|unnoticed +disregarding|1 +(adv)|regardless|irrespective|disregardless|no matter +disregardless|1 +(adv)|regardless|irrespective|no matter|disregarding +disrepair|1 +(noun)|unsoundness +disreputability|1 +(noun)|unrespectability|disreputableness|dishonorableness|dishonourableness +disreputable|1 +(adj)|disreputable |discreditable|discredited|damaged|ill-famed|infamous|notorious|louche|shady|seamy|seedy|sleazy|sordid|squalid|unrespectable|unrespected|dishonorable|dishonourable|unrespectable +disreputable person|1 +(noun)|unwelcome person|persona non grata +disreputableness|1 +(noun)|unrespectability|disreputability|dishonorableness|dishonourableness +disrepute|1 +(noun)|discredit|dishonor|dishonour +disrespect|5 +(noun)|discourtesy|message|content|subject matter|substance +(noun)|attitude|mental attitude +(noun)|contempt|discourtesy|rudeness +(verb)|relate +(verb)|disesteem|see|consider|reckon|view|regard +disrespectful|2 +(adj)|disrespectful |annihilating|devastating|withering|contemptuous|disdainful|insulting|scornful|contumelious|derisive|gibelike|jeering|mocking|taunting|impious|undutiful|impudent|insolent|snotty-nosed|flip|undeferential|immodest|discourteous|irreverent|offensive|sarcastic +(adj)|aweless|awless|irreverent +disrobe|1 +(verb)|undress|discase|uncase|unclothe|strip|strip down|peel|take off +disrupt|2 +(verb)|interrupt|break up|cut off|break|break off|discontinue|stop +(verb)|interrupt|chime in|cut in|put in|butt in|chisel in|barge in|break in +disrupted|1 +(adj)|discontinuous |noncontinuous +disrupting explosive|1 +(noun)|bursting explosive|high explosive +disruption|4 +(noun)|break|interruption|gap|delay|holdup +(noun)|disturbance|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +(noun)|dislocation|interruption|break +(noun)|perturbation|disturbance +disruptive|1 +(adj)|riotous|troubled|tumultuous|turbulent|unquiet +diss|1 +(verb)|insult|affront|hurt|wound|injure|bruise|offend|spite +dissatisfaction|1 +(noun)|discontentment|discontent|discontentedness +dissatisfactory|1 +(adj)|disappointing|unsatisfying|unsatisfactory +dissatisfied|1 +(adj)|disgruntled|discontented |discontent +dissatisfy|1 +(verb)|displease +dissect|2 +(verb)|cut +(verb)|analyze|analyse|break down|take apart +dissected|1 +(adj)|cleft|compound +dissection|3 +(noun)|cut|cutting +(noun)|analysis|analytic thinking +(noun)|analysis +dissemble|3 +(verb)|feign|sham|pretend|affect|misrepresent|belie +(verb)|cloak|mask|disguise +(verb)|pretend|act +dissembler|1 +(noun)|hypocrite|phony|phoney|pretender|deceiver|cheat|cheater|trickster|beguiler|slicker +dissembling|3 +(adj)|dissimulating|dissimulative|insincere +(noun)|pretense|pretence|feigning|misrepresentation|deceit|deception +(noun)|deception|deceit|dissimulation|falsification|misrepresentaation +disseminate|1 +(verb)|circulate|circularize|circularise|distribute|propagate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +disseminated lupus erythematosus|1 +(noun)|systemic lupus erythematosus|SLE|lupus +disseminated multiple sclerosis|1 +(noun)|multiple sclerosis|MS|disseminated sclerosis|sclerosis|induration|degenerative disorder +disseminated sclerosis|1 +(noun)|multiple sclerosis|MS|disseminated multiple sclerosis|sclerosis|induration|degenerative disorder +disseminating|1 +(adj)|diffusing|diffusive|dispersive|disseminative|scattering|spreading|distributive +dissemination|3 +(noun)|airing|public exposure|spreading|transmission +(noun)|diffusion|distribution|dispersion +(noun)|dispersion|dispersal|diffusion|spread|spreading +disseminative|1 +(adj)|diffusing|diffusive|dispersive|disseminating|scattering|spreading|distributive +disseminator|1 +(noun)|propagator|communicator +dissension|2 +(noun)|discord|disagreement +(noun)|disagreement|dissonance|conflict +dissent|6 +(noun)|objection +(noun)|disagreement +(noun)|protest|objection|resistance +(verb)|disagree|differ|take issue +(verb)|protest|resist|oppose|controvert|contradict +(verb)|disagree|differ|take issue +dissenter|1 +(noun)|dissident|protester|objector|contestant|person|individual|someone|somebody|mortal|human|soul +dissentient|2 +(adj)|recusant|unorthodox +(adj)|dissenting|dissident|negative +dissenting|1 +(adj)|dissentient|dissident|negative +dissenting opinion|1 +(noun)|opinion|legal opinion|judgment|judgement +dissentious|1 +(adj)|divisive|factious|discordant +dissertate|1 +(verb)|discourse|talk|speak +dissertation|1 +(noun)|thesis|treatise +disservice|1 +(noun)|ill service|ill turn|injury +dissever|1 +(verb)|divide|split|split up|separate|carve up|change integrity +dissidence|1 +(noun)|disagreement +dissident|3 +(adj)|heretical|heterodox|unorthodox +(adj)|dissentient|dissenting|negative +(noun)|dissenter|protester|objector|contestant|person|individual|someone|somebody|mortal|human|soul +dissident irish republican army|1 +(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +dissilience|1 +(noun)|emergence|egress|issue +dissimilar|3 +(adj)|dissimilar +(adj)|unalike +(adj)|unlike |different|different +dissimilarity|1 +(noun)|unsimilarity|difference +dissimilate|3 +(verb)|change +(verb)|change|alter|modify +(verb)|change +dissimilation|2 +(noun)|linguistic process +(noun)|catabolism|katabolism|destructive metabolism|organic process|biological process +dissimilitude|1 +(noun)|unlikeness|dissimilarity|unsimilarity +dissimulate|1 +(verb)|disguise +dissimulating|1 +(adj)|dissembling|dissimulative|insincere +dissimulation|1 +(noun)|deception|deceit|dissembling|falsification|misrepresentaation +dissimulative|1 +(adj)|dissembling|dissimulating|insincere +dissipate|4 +(verb)|disperse|dispel|break up|scatter|separate|divide +(verb)|disperse|scatter|spread out|separate|part|split +(verb)|fritter|frivol away|shoot|fritter away|fool|fool away|consume|squander|waste|ware +(verb)|live +dissipated|2 +(adj)|debauched|degenerate|degraded|dissolute|libertine|profligate|riotous|fast|immoral +(adj)|betting|card-playing|gambling|sporting|indulgent +dissipation|3 +(noun)|dispersion|scattering +(noun)|profligacy|dissolution|licentiousness|intemperance|intemperateness|self-indulgence +(noun)|waste|wastefulness|activity +dissociable|1 +(adj)|separable|severable|divisible +dissociate|3 +(verb)|disassociate|divorce|disunite|disjoint|separate|part|split up|split|break|break up +(verb)|decouple|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|decompose|break up|break down +dissociated|1 +(adj)|unconnected|unrelated +dissociation|3 +(noun)|separation +(noun)|disassociation|psychological state|mental state +(noun)|chemical process|chemical change|chemical action +dissociation constant|1 +(noun)|equilibrium constant +dissociative|1 +(adj)|divisible +dissociative disorder|1 +(noun)|dissociation|disassociation|mental disorder|mental disturbance|disturbance|psychological disorder|folie +dissolubility|1 +(noun)|solubleness|physical property +dissoluble|1 +(adj)|dissolvable|soluble +dissolute|1 +(adj)|debauched|degenerate|degraded|dissipated|libertine|profligate|riotous|fast|immoral +dissolutely|1 +(adv)|profligately +dissoluteness|1 +(noun)|incontinence|self-gratification|indiscipline|undiscipline +dissolution|5 +(noun)|dissolving|liquefaction +(noun)|disintegration|natural process|natural action|action|activity +(noun)|profligacy|dissipation|licentiousness|intemperance|intemperateness|self-indulgence +(noun)|adjournment|termination|ending|conclusion +(noun)|breakup|termination|ending|conclusion +dissolution of marriage|1 +(noun)|annulment|invalidation +dissolvable|1 +(adj)|dissoluble|soluble +dissolve|12 +(noun)|transition +(verb)|resolve|break up|change integrity +(verb)|disintegrate +(verb)|fade out|fade away|change state|turn +(verb)|break up|end|terminate +(verb)|disband|break up +(verb)|upset|discompose|untune|disconcert|discomfit +(verb)|break down|lose it|snap +(verb)|change|alter|modify +(verb)|thaw|unfreeze|unthaw|dethaw|melt|liquefy|flux|liquify +(verb)|break up|end|terminate +(verb)|dismiss|change|alter|modify +dissolved|2 +(adj)|melted |liquid|liquified +(adj)|broken +dissolvent|1 +(noun)|solvent|dissolver|dissolving agent|resolvent|medium +dissolver|1 +(noun)|solvent|dissolvent|dissolving agent|resolvent|medium +dissolving|2 +(adj)|change integrity +(noun)|dissolution|liquefaction +dissolving agent|1 +(noun)|solvent|dissolvent|dissolver|resolvent|medium +dissonance|3 +(noun)|disagreement|dissension|conflict +(noun)|noise|racket|sound|auditory sensation +(noun)|sound property +dissonant|3 +(adj)|unmusical |nonmusical +(adj)|unresolved|inharmonious |unharmonious +(adj)|discordant|disharmonious|inharmonic|inharmonious |unharmonious +dissonate|2 +(verb)|sound +(verb)|change|alter|modify +dissuade|1 +(verb)|deter|advise|counsel +dissuasion|3 +(noun)|discouragement +(noun)|persuasion|suasion +(noun)|influence +dissuasive|1 +(adj)|dissuasive |admonitory|cautionary|exemplary|monitory|warning|discouraging|discouraging +dissyllable|1 +(noun)|disyllable|word +distaff|3 +(adj)|female|feminine +(noun)|sphere|domain|area|orbit|field|arena +(noun)|staff +distal|2 +(adj)|distal +(adj)|distal |lateral +distal muscular dystrophy|1 +(noun)|muscular dystrophy|dystrophy +distance|8 +(noun)|spacing|spatial arrangement +(noun)|region|part +(noun)|length|size +(noun)|aloofness|indifference +(noun)|space|time interval|interval +(noun)|point|point in time +(verb)|keep|maintain|hold +(verb)|outdistance|outstrip|leave behind +distance vision|1 +(noun)|sight|vision|visual sense|visual modality +distant|5 +(adj)|distant |away|deep|extreme|far-flung|out-of-town|yonder|yon|nonadjacent +(adj)|distant |faraway|loosely knit|remote|removed|removed|ulterior +(adj)|aloof|upstage|reserved +(adj)|remote|removed|far +(adj)|remote|removed|far +distaste|1 +(noun)|antipathy|aversion|dislike +distasteful|2 +(adj)|unsavory|unsavoury|unpalatable +(adj)|disgusting|disgustful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +distastefully|1 +(adv)|disgustingly|revoltingly|sickeningly +distastefulness|2 +(noun)|disgustingness|nauseatingness|sickeningness|unsavoriness|unpalatability|unpalatableness +(noun)|offensiveness|odiousness|unpleasantness +distemper|6 +(noun)|animal disease +(noun)|ill humor|ill humour|temper|mood|humor|humour +(noun)|paint +(noun)|painting|picture +(noun)|painting +(verb)|paint +distend|3 +(verb)|dilate|widen +(verb)|bloat +(verb)|swell|swell up|intumesce|tumefy|tumesce +distended|2 +(adj)|bloated|puffed|puffy|swollen|tumescent|tumid|turgid|unhealthy +(adj)|swollen|expanded +distensible|1 +(adj)|expansive +distension|2 +(noun)|distention|expansion|enlargement +(noun)|dilatation|distention|physiological state|physiological condition +distention|2 +(noun)|dilatation|distension|physiological state|physiological condition +(noun)|distension|expansion|enlargement +distich|1 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|duo|duet|dyad|duad|two|2|II|deuce +distil|4 +(verb)|condense|distill|liquefy|flux|liquify +(verb)|distill|extract|make|create +(verb)|distill|change +(verb)|distill|exude|exudate|transude|ooze out|ooze +distill|5 +(verb)|purify|sublimate|make pure|better|improve|amend|ameliorate|meliorate +(verb)|distil|change +(verb)|extract|distil|make|create +(verb)|condense|distil|liquefy|flux|liquify +(verb)|distil|exude|exudate|transude|ooze out|ooze +distillate|1 +(noun)|distillation|liquid +distillation|2 +(noun)|distillment|natural process|natural action|action|activity +(noun)|distillate|liquid +distilled water|1 +(noun)|water|H2O +distiller|1 +(noun)|manufacturer|producer +distillery|1 +(noun)|still|plant|works|industrial plant +distillment|1 +(noun)|distillation|natural process|natural action|action|activity +distinct|5 +(adj)|distinct |chiseled|well-defined|clear|clean-cut|clear-cut|crisp|sharp|crystalline|defined|outlined|knifelike|razor-sharp|clear|definite|precise +(adj)|distinguishable|different +(adj)|discrete|separate +(adj)|decided|definite +(adj)|clear-cut|trenchant|clear +distinction|4 +(noun)|differentiation|discrimination|secernment +(noun)|eminence|preeminence|note|high status +(noun)|quality +(noun)|difference +distinctive|3 +(adj)|typical|characteristic +(adj)|classifiable|identifiable +(adj)|distinguishing|identifying|characteristic +distinctive feature|1 +(noun)|peculiarity|distinguishing characteristic|feature|characteristic +distinctiveness|2 +(noun)|peculiarity|specialness|specialty|speciality|individuality|individualism|individuation +(noun)|disparateness|dissimilarity|unsimilarity +distinctly|1 +(adv)|clearly +distinctness|3 +(noun)|sharpness|clearness|clarity|uncloudedness +(noun)|discreteness|separateness|severalty|separation +(noun)|otherness|separateness|difference +distinguish|5 +(verb)|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart|identify|place +(verb)|recognize|recognise|discern|pick out|make out|tell apart +(verb)|mark|differentiate|qualify|characterize|characterise +(verb)|signalize|signalise|mark +(verb)|identify|discover|key|key out|describe|name +distinguishable|2 +(adj)|distinguishable |differentiable|discriminable +(adj)|distinct|different +distinguished|3 +(adj)|eminent|great|important |of import +(adj)|imposing|magisterial|dignified +(adj)|differentiated +distinguished conduct medal|1 +(noun)|Distinguished Conduct Medal|decoration|laurel wreath|medal|medallion|palm|ribbon +distinguished flying cross|1 +(noun)|Distinguished Flying Cross|decoration|laurel wreath|medal|medallion|palm|ribbon +distinguished service cross|1 +(noun)|Distinguished Service Cross|decoration|laurel wreath|medal|medallion|palm|ribbon +distinguished service medal|1 +(noun)|Distinguished Service Medal|decoration|laurel wreath|medal|medallion|palm|ribbon +distinguished service order|1 +(noun)|Distinguished Service Order|decoration|laurel wreath|medal|medallion|palm|ribbon +distinguishing|1 +(adj)|distinctive|identifying|characteristic +distinguishing characteristic|1 +(noun)|peculiarity|distinctive feature|feature|characteristic +distomatosis|1 +(noun)|black disease|sheep rot|liver rot|animal disease +distort|5 +(verb)|falsify|garble|warp|misrepresent|belie +(verb)|twist|twine|change shape|change form|deform +(verb)|contort|deform|wring|twist|twine +(verb)|tinge|color|colour|affect|impact|bear upon|bear on|touch on|touch +(verb)|deform|strain|shape|form +distortable|1 +(adj)|changeable |changeful +distorted|3 +(adj)|contorted|twisted|crooked +(adj)|deformed|ill-shapen|malformed|misshapen|unshapely +(adj)|misrepresented|perverted|twisted|disingenuous |artful +distorted shape|1 +(noun)|distortion|shape|form +distortion|6 +(noun)|deformation|damage|harm|impairment +(noun)|distorted shape|shape|form +(noun)|aberration|optical aberration|optical phenomenon +(noun)|electrical phenomenon|acoustic phenomenon +(noun)|overrefinement|straining|torture|twisting|falsification|misrepresentaation +(noun)|mistake|error|fault +distortionist|1 +(noun)|painter +distract|2 +(verb)|deflect|confuse|flurry|disconcert|put off +(verb)|perturb|unhinge|disquiet|trouble|cark|disorder|disturb|upset|trouble +distracted|2 +(adj)|brainsick|crazy|demented|disturbed|mad|sick|unbalanced|unhinged|insane +(adj)|distrait|inattentive +distraction|4 +(noun)|confusion|mental confusion|confusedness|disarray +(noun)|inattention +(noun)|beguilement|entertainment|amusement +(noun)|misdirection|revision|alteration +distrain|3 +(verb)|levy|impose +(verb)|impound|attach|sequester|confiscate|seize +(verb)|reclaim|repossess +distraint|1 +(noun)|distress|seizure +distrait|1 +(adj)|distracted|inattentive +distraught|1 +(adj)|overwrought|agitated +distress|5 +(noun)|hurt|suffering|pain|painfulness +(noun)|adversity|hardship|hard knocks +(noun)|pain|hurting +(noun)|distraint|seizure +(verb)|disturb|upset|trouble +distress call|1 +(noun)|distress signal|signal|signaling|sign +distress signal|1 +(noun)|distress call|signal|signaling|sign +distressed|4 +(adj)|hard-pressed|hard put|in a bad way|in trouble|troubled +(adj)|dysphoric |unhappy|dejected|unhappy +(adj)|stressed|in a bad way|troubled +(adj)|disquieted|disturbed|upset|worried|troubled +distressful|1 +(adj)|distressing|disturbing|perturbing|troubling|worrisome|worrying|heavy +distressfulness|1 +(noun)|seriousness|badness|severity +distressing|2 +(adj)|distressful|disturbing|perturbing|troubling|worrisome|worrying|heavy +(adj)|deplorable|lamentable|pitiful|sad|sorry|bad +distressingly|1 +(adv)|painfully +distributary|1 +(noun)|branch +distribute|10 +(verb)|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give +(verb)|spread +(verb)|transfer +(verb)|give out|hand out|give|gift|present +(verb)|circulate|pass around|pass on|move|displace +(verb)|circulate|circularize|circularise|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +(verb)|spread|scatter|spread out +(verb)|exist|be +(verb)|be +(verb)|stagger|arrange|set up +distributed|2 +(adj)|distributed |apportioned|dealt out|doled out|meted out|parceled out|broken|diffuse|diffused|dispensed|dispersed|spread|divided|divided up|shared|shared out|encyclical|fanned|spread-out|far-flung|widespread|low-density|rationed|scattered|separated|spaced|sparse|thin|straggly|unfocused|unfocussed|scattered|strewn|splashed|suffused|distributive +(adj)|diversified +distributed data processing|1 +(noun)|remote-access data processing|teleprocessing|data processing +distributed fire|1 +(noun)|fire|firing +distributer|2 +(noun)|distributor|supplier|provider +(noun)|distributor|electrical distributor|electrical device +distribution|4 +(noun)|statistical distribution|arrangement|organization|organisation|system +(noun)|dispersion|spacing|spatial arrangement +(noun)|act|human action|human activity +(noun)|commerce|commercialism|mercantilism +distribution agreement|1 +(noun)|contract +distribution channel|1 +(noun)|channel|marketing +distribution cost|1 +(noun)|cost +distribution free statistic|1 +(noun)|nonparametric statistic|statistic +distribution law|1 +(noun)|law|law of nature +distribution list|1 +(noun)|list|listing +distributional|1 +(adj)|spacing|spatial arrangement +distributive|2 +(adj)|distributive |allocable|allocatable|apportionable|diffusing|diffusive|dispersive|disseminative|disseminating|scattering|spreading|immanent|permeant|permeating|permeative|pervasive|separative|suffusive|divided|distributed +(adj)|dispersive|decentralizing +distributive shock|1 +(noun)|shock +distributor|4 +(noun)|distributer|supplier|provider +(noun)|allocator|authority +(noun)|company +(noun)|distributer|electrical distributor|electrical device +distributor cam|1 +(noun)|cam +distributor cap|1 +(noun)|cap +distributor housing|1 +(noun)|housing +distributor point|1 +(noun)|breaker point|point|contact|tangency +district|2 +(noun)|territory|territorial dominion|dominion|region +(verb)|zone|regulate|regularize|regularise|order|govern +district attorney|1 +(noun)|DA|prosecutor|public prosecutor|prosecuting officer|prosecuting attorney +district line|1 +(noun)|boundary|bound|bounds +district manager|1 +(noun)|director|manager|managing director +district of columbia|1 +(noun)|District of Columbia|D.C.|DC|federal district +distrust|3 +(noun)|misgiving|mistrust|suspicion|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|distrustfulness|mistrust|trait +(verb)|mistrust|suspect|disbelieve|discredit +distrustful|2 +(adj)|distrustful |cynical|misanthropic|misanthropical|doubting|questioning|skeptical|sceptical|jealous|green-eyed|overjealous|leery|mistrustful|suspicious|untrusting|wary|misogynic|oversuspicious|incredulous +(adj)|incredulous +distrustfully|1 +(adv)|mistrustfully +distrustfulness|1 +(noun)|distrust|mistrust|trait +disturb|5 +(verb)|upset|trouble|affect|impress|move|strike +(verb)|agitate|vex|commove|shake up|stir up|raise up|move|displace +(verb)|touch|change|alter|modify +(verb)|interrupt|act|move +(verb)|damage +disturbance|7 +(noun)|perturbation|activity +(noun)|perturbation|upset|agitation +(noun)|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +(noun)|affray|fray|ruffle|fight|fighting|combat|scrap +(noun)|motion|movement|move|motility +(noun)|mental disorder|mental disturbance|psychological disorder|folie|disorder|upset +(noun)|noise|interference|trouble +disturbance of the peace|1 +(noun)|disorderly conduct|disorderly behavior|breach of the peace|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +disturbed|5 +(adj)|disarranged +(adj)|disquieted|distressed|upset|worried|troubled +(adj)|maladjusted|neurotic |psychoneurotic +(adj)|unsettled|unstable +(adj)|brainsick|crazy|demented|distracted|mad|sick|unbalanced|unhinged|insane +disturber|1 +(noun)|troublemaker|trouble maker|troubler|mischief-maker|bad hat +disturbing|1 +(adj)|distressing|distressful|perturbing|troubling|worrisome|worrying|heavy +disulfiram|1 +(noun)|Antabuse|medicine|medication|medicament|medicinal drug +disunify|1 +(verb)|break apart|separate|part|split up|split|break|break up +disunion|1 +(noun)|separation +disunite|2 +(verb)|disassociate|dissociate|divorce|disjoint|separate|part|split up|split|break|break up +(verb)|separate|divide|part|move|displace +disunited|1 +(adj)|disconnected|fragmented|split|divided +disunity|1 +(noun)|disagreement|dissension|dissonance +disuse|1 +(noun)|neglect|decline|declination +disused|1 +(adj)|obsolete|noncurrent +disyllabic|1 +(adj)|syllabic +disyllable|1 +(noun)|dissyllable|word +dit|1 +(noun)|dot|telegraphic signal|radiotelegraphic signal +dita|1 +(noun)|dita bark|devil tree|Alstonia scholaris|tree +dita bark|1 +(noun)|dita|devil tree|Alstonia scholaris|tree +ditch|8 +(noun)|excavation|hole in the ground +(noun)|waterway +(verb)|abandon|forsake|desolate|desert +(verb)|chuck|abandon +(verb)|dump|get rid of|remove +(verb)|crash land +(verb)|crash +(verb)|trench|excavate|dig|hollow +ditch digger|1 +(noun)|mud digger|digger +ditch fern|1 +(noun)|royal fern|royal osmund|king fern|French bracken|Osmunda regalis|flowering fern|osmund +ditch reed|1 +(noun)|common reed|carrizo|Phragmites communis|reed|Phragmites|genus Phragmites +ditch spade|1 +(noun)|long-handled spade|spade +ditchmoss|1 +(noun)|Elodea|genus Elodea|pondweed|monocot genus|liliopsid genus +dither|3 +(noun)|pother|fuss|tizzy|flap|agitation +(verb)|fret +(verb)|flap|pother|fuss|niggle|fret +dithered color|1 +(noun)|nonsolid color|nonsolid colour|dithered colour|color|colour|coloring|colouring +dithered colour|1 +(noun)|nonsolid color|nonsolid colour|dithered color|color|colour|coloring|colouring +dithering|1 +(noun)|video digitizing +dithyramb|2 +(noun)|address|speech|writing|written material|piece of writing +(noun)|hymn|anthem +dithyrambic|1 +(adj)|address|speech|writing|written material|piece of writing +dittany|1 +(noun)|fraxinella|burning bush|gas plant|Dictamnus alba|herb|herbaceous plant +dittany of crete|1 +(noun)|cretan dittany|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum +ditto|2 +(noun)|ditto mark|mark +(verb)|repeat|reiterate|ingeminate|iterate|restate|retell +ditto mark|1 +(noun)|ditto|mark +ditty|1 +(noun)|song +ditty bag|1 +(noun)|kit +diuresis|1 +(noun)|symptom +diuretic|1 +(noun)|diuretic drug|water pill|drug +diuretic drug|1 +(noun)|diuretic|water pill|drug +diuril|1 +(noun)|chlorothiazide|Diuril|thiazide|antihypertensive|antihypertensive drug +diurnal|2 +(adj)|diurnal |daytime +(adj)|cyclic |cyclical +diurnal parallax|1 +(noun)|geocentric parallax|parallax +diurnal variation|1 +(noun)|variation|fluctuation +diva|1 +(noun)|prima donna|opera star|operatic star +divagate|1 +(verb)|digress|stray|wander|tell +divagation|2 +(noun)|digression|aside|excursus|parenthesis|message|content|subject matter|substance +(noun)|diversion|deviation|digression|deflection|deflexion|turn|turning +divalent|1 +(adj)|bivalent|power|powerfulness +divan|4 +(noun)|sofa|couch|lounge +(noun)|diwan|privy council +(noun)|diwan|anthology +(noun)|diwan|boardroom|council chamber|chamber +divan bed|1 +(noun)|daybed|sofa|couch|lounge +divaricate|2 +(verb)|diverge +(verb)|unfold|spread|spread out|open +divarication|1 +(noun)|branching|ramification|fork|forking +dive|7 +(noun)|honkytonk|cabaret|nightclub|club|nightspot +(noun)|diving|swimming|swim +(noun)|nose dive|descent +(noun)|prima donna|diva|opera star|operatic star +(verb)|plunge|plunk|descend|fall|go down|come down +(verb)|submerge|submerse +(verb)|swim +dive-bomb|1 +(verb)|bombard|bomb +dive-bombing|1 +(noun)|bombing run +dive bomber|1 +(noun)|bomber +dive brake|1 +(noun)|airbrake|restraint|constraint +diver|3 +(noun)|frogman|underwater diver|explorer|adventurer +(noun)|plunger|swimmer +(noun)|loon|gaviiform seabird +diverge|3 +(verb)|move +(verb)|be +(verb)|deviate|vary|depart|differ +divergence|4 +(noun)|divergency|separation +(noun)|deviation|departure|difference|variation|fluctuation +(noun)|divergency|series +(noun)|discrepancy|disagreement|variance|difference +divergency|2 +(noun)|divergence|series +(noun)|divergence|separation +divergent|2 +(adj)|different +(adj)|divergent |diverging|branching|radiating|oblique +divergent strabismus|1 +(noun)|walleye|exotropia|strabismus|squint +divergent thinker|1 +(noun)|thinker +divergent thinking|1 +(noun)|out-of-the-box thinking|thinking|thought|cerebration|intellection|mentation +diverging|1 +(adj)|divergent |branching|radiating|oblique +diverging lens|1 +(noun)|concave lens|lens|lense|lens system +divers|1 +(adj)|diverse|different +diverse|2 +(adj)|divers|different +(adj)|various|different +diversely|1 +(adv)|variously|multifariously +diverseness|1 +(noun)|diversity|multifariousness|variety|heterogeneity|heterogeneousness +diversification|2 +(noun)|variegation|change +(noun)|condition|status +diversified|1 +(adj)|diversified |distributed|varied|wide-ranging|heterogeneous|heterogenous +diversify|3 +(verb)|change|alter|modify +(verb)|radiate|change|alter|vary +(verb)|branch out|broaden|change|alter|vary +diversion|3 +(noun)|recreation|activity +(noun)|deviation|digression|deflection|deflexion|divagation|turn|turning +(noun)|diversionary attack|attack|onslaught|onset|onrush +diversionary|1 +(adj)|indirect +diversionary attack|1 +(noun)|diversion|attack|onslaught|onset|onrush +diversionary landing|1 +(noun)|diversion|diversionary attack +diversionist|1 +(noun)|saboteur|wrecker|destroyer|ruiner|undoer|waster|uprooter +diversity|2 +(noun)|diverseness|multifariousness|variety|heterogeneity|heterogeneousness +(noun)|variedness +divert|4 +(verb)|deviate|turn +(verb)|send|direct +(verb)|amuse|disport|entertain +(verb)|hive off|withdraw|draw|take out|draw off +diverted|1 +(adj)|amused|entertained|pleased +diverticulitis|1 +(noun)|inflammation|redness|rubor +diverticulosis|1 +(noun)|pathology +diverticulum|1 +(noun)|hernia|herniation +divertimento|1 +(noun)|serenade|musical composition|opus|composition|piece|piece of music +diverting|1 +(adj)|amusing|amusive|fun|entertaining +divertingly|1 +(adv)|amusingly +divest|4 +(verb)|deprive|strip|take +(verb)|disinvest|free|discharge +(verb)|disinvest|withdraw|draw|take out|draw off +(verb)|strip|undress|disinvest|remove|take|take away|withdraw +divestiture|2 +(noun)|court order +(noun)|sale +divi-divi|2 +(noun)|bean +(noun)|Caesalpinia coriaria|tree +dividable|1 +(adj)|divisible +divide|8 +(noun)|disagreement|dissension|dissonance +(noun)|watershed|water parting|line +(verb)|split|split up|separate|dissever|carve up|change integrity +(verb)|fraction|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|separate +(verb)|separate|part|change +(verb)|separate +(verb)|separate|disunite|part|move|displace +divided|3 +(adj)|divided |apart|separate|separated|bicameral|two-chambered|bifid|bifurcate|biramous|branched|forked|forficate|pronged|prongy|bifurcated|bilocular|biloculate|black-and-white|chambered|cloven|cleft|bisulcate|dichotomous|disconnected|disunited|fragmented|split|disjointed|disjunct|episodic|metameric|segmental|segmented|mullioned|partitioned|partitioned off|pentamerous|pronged|tined|sectional|sectioned|segmental|split|subdivided|torn|trifid|in disagreement|distributive|segregated|unintegrated|separate +(adj)|dual-lane|multilane +(adj)|divided up|shared|shared out|distributed +divided highway|1 +(noun)|dual carriageway|highway|main road +divided up|1 +(adj)|divided|shared|shared out|distributed +dividend|3 +(noun)|net income|net|net profit|lucre|profit|profits|earnings +(noun)|number +(noun)|bonus|incentive +dividend warrant|1 +(noun)|draft|bill of exchange|order of payment +divider|3 +(noun)|splitter|taxonomist|taxonomer|systematist +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|partition|structure|construction +dividers|4 +(noun)|drafting instrument +(noun)|splitter|divider|taxonomist|taxonomer|systematist +(noun)|divider|person|individual|someone|somebody|mortal|human|soul +(noun)|partition|divider|structure|construction +dividing|2 +(adj)|divisional|disjunctive +(adj)|nonbearing +dividing line|1 +(noun)|line|demarcation|contrast|differentiation|distinction +divina commedia|1 +(noun)|Divine Comedy|Divina Commedia|epic poem|heroic poem|epic|epos +divination|3 +(noun)|guess|conjecture|supposition|surmise|surmisal|speculation|hypothesis +(noun)|prophecy|prediction|foretelling|forecasting|prognostication +(noun)|foretelling|soothsaying|fortune telling|prophecy|prognostication|vaticination +divinatory|2 +(adj)|mantic|sibylline|sibyllic|vatic|vatical|prophetic |prophetical +(adj)|conjectural|supposed|suppositional|suppositious|supposititious|theoretical |theoretic +divine|10 +(adj)|godly|heavenly +(adj)|providential|heavenly +(adj)|godlike|heavenly +(adj)|sacred +(adj)|godlike|superhuman +(adj)|elysian|inspired|glorious +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +(noun)|cleric|churchman|ecclesiastic|clergyman|reverend|man of the cloth +(verb)|perceive|comprehend +(verb)|search|seek|look for +divine comedy|1 +(noun)|Divine Comedy|Divina Commedia|epic poem|heroic poem|epic|epos +divine guidance|1 +(noun)|inspiration|cognitive factor +divine law|1 +(noun)|law|natural law +divine messenger|1 +(noun)|angel +divine office|1 +(noun)|Divine Office|office +divine service|1 +(noun)|service|religious service|religious ceremony|religious ritual +divine unity|1 +(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization|terrorist group|foreign terrorist organization|FTO +diviner|1 +(noun)|visionary|illusionist|seer +diving|2 +(noun)|diving event|match +(noun)|dive|swimming|swim +diving bell|1 +(noun)|submersible +diving board|1 +(noun)|springboard +diving dress|1 +(noun)|diving suit|protective garment +diving duck|1 +(noun)|duck +diving event|1 +(noun)|diving|match +diving petrel|1 +(noun)|pelagic bird|oceanic bird +diving suit|1 +(noun)|diving dress|protective garment +divining rod|1 +(noun)|dowser|dowsing rod|waterfinder|water finder|stick +divinity|4 +(noun)|deity|god|immortal|spiritual being|supernatural being +(noun)|quality +(noun)|divinity fudge|fudge +(noun)|theology|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +divinity fudge|1 +(noun)|divinity|fudge +divinyl ether|1 +(noun)|ether|ethoxyethane|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +divisibility|1 +(noun)|quality +divisible|1 +(adj)|divisible |cleavable|dissociable|separable|severable|dissociative|dividable|partible +division|12 +(noun)|army unit +(noun)|part|section|concept|conception|construct +(noun)|separation +(noun)|administrative unit|administrative body +(noun)|arithmetic operation +(noun)|variance|discord|dissension +(noun)|class|league|conference +(noun)|biological group +(noun)|phylum +(noun)|air division|air unit +(noun)|naval division|naval unit +(noun)|partition|partitioning|segmentation|sectionalization|sectionalisation|separation +division anthophyta|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +division archaebacteria|1 +(noun)|division Archaebacteria|division +division bryophyta|1 +(noun)|Bryophyta|division Bryophyta|division +division chlorophyta|1 +(noun)|Chlorophyta|division Chlorophyta|division +division chrysophyta|1 +(noun)|Chrysophyta|division Chrysophyta|division +division cyanophyta|1 +(noun)|Cyanophyta|division Cyanophyta|division +division cynodontia|1 +(noun)|Cynodontia|division Cynodontia|division +division dicynodontia|1 +(noun)|Dicynodontia|division Dicynodontia|division +division eubacteria|1 +(noun)|division Eubacteria|division +division euglenophyta|1 +(noun)|Euglenophyta|division Euglenophyta|division +division eumycota|1 +(noun)|Eumycota|division Eumycota|division +division gymnomycota|1 +(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division +division gymnospermophyta|1 +(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class +division heterokontophyta|1 +(noun)|Heterokontophyta|division Heterokontophyta|division +division lichenes|1 +(noun)|Lichenes|division Lichenes|division +division magnoliophyta|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +division myxomycota|1 +(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division +division phaeophyta|1 +(noun)|Phaeophyta|division Phaeophyta|division +division protista|1 +(noun)|Protista|division Protista|division +division pteridophyta|1 +(noun)|Pteridophyta|division Pteridophyta|division +division rhodophyta|1 +(noun)|Rhodophyta|division Rhodophyta|division +division schizophyta|1 +(noun)|Schizophyta|division Schizophyta|division +division spermatophyta|1 +(noun)|Spermatophyta|division Spermatophyta|division +division tracheophyta|1 +(noun)|Tracheophyta|division Tracheophyta|division +divisional|3 +(adj)|army unit +(adj)|dividing|disjunctive +(adj)|fractional +divisive|1 +(adj)|dissentious|factious|discordant +divisor|2 +(noun)|factor|integer|whole number +(noun)|number +divorce|3 +(noun)|divorcement|separation +(verb)|disassociate|dissociate|disunite|disjoint|separate|part|split up|split|break|break up +(verb)|split up|separate|part|split up|split|break|break up +divorce court|1 +(noun)|court|tribunal|judicature +divorce lawyer|1 +(noun)|lawyer|attorney +divorced|1 +(adj)|unmarried |single +divorced man|1 +(noun)|grass widower|man|adult male +divorcee|1 +(noun)|grass widow|woman|adult female +divorcement|1 +(noun)|divorce|separation +divot|2 +(noun)|pit|cavity +(noun)|turf|sod|sward|greensward +divulge|1 +(verb)|disclose|let on|bring out|reveal|discover|expose|impart|break|give away|let out|tell +divulgement|1 +(noun)|divulgence|disclosure|revelation|revealing +divulgence|1 +(noun)|divulgement|disclosure|revelation|revealing +divvy|1 +(noun)|dividend +divvy up|1 +(verb)|share|portion out|apportion|deal|distribute|give out|hand out +diwan|3 +(noun)|divan|privy council +(noun)|divan|anthology +(noun)|divan|boardroom|council chamber|chamber +dixie|2 +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +(noun)|pot +dixie cup|1 +(noun)|Dixie cup|paper cup|drinking cup|cup +dixiecrats|1 +(noun)|States' Rights Democratic Party|Dixiecrats|party|political party +dixieland|1 +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +dizen|1 +(verb)|bedizen|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +dizygotic|1 +(adj)|dizygous +dizygotic twin|1 +(noun)|fraternal twin|twin +dizygous|1 +(adj)|dizygotic +dizzily|1 +(adv)|giddily|light-headedly +dizziness|1 +(noun)|giddiness|lightheadedness|vertigo|symptom +dizzy|3 +(adj)|giddy|woozy|vertiginous|ill |sick +(adj)|airheaded|empty-headed|featherbrained|giddy|light-headed|lightheaded|silly|frivolous +(verb)|change|alter|modify +dizzy gillespie|1 +(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter|cornetist +dj|2 +(noun)|disk jockey|disc jockey|broadcaster +(verb)|disk-jockey|disc-jockey|DJ|comment +djakarta|1 +(noun)|Jakarta|Djakarta|capital of Indonesia|national capital +djanet|1 +(noun)|Djanet|town +djibouti|2 +(noun)|Djibouti|capital of Djibouti|national capital|port +(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country|African nation +djibouti franc|1 +(noun)|Djibouti franc|franc +djiboutian|2 +(adj)|Djiboutian|African country|African nation +(noun)|Djiboutian|African +djinni|1 +(noun)|genie|jinni|jinnee|djinny|spirit|disembodied spirit +djinny|1 +(noun)|genie|jinni|jinnee|djinni|spirit|disembodied spirit +dkg|1 +(noun)|dekagram|decagram|dag|metric weight unit|weight unit +dkl|1 +(noun)|dekaliter|dekalitre|decaliter|decalitre|dal|metric capacity unit +dkm|1 +(noun)|decameter|dekameter|decametre|dekametre|dam|metric linear unit +dl|1 +(noun)|deciliter|decilitre|metric capacity unit +dle|1 +(noun)|discoid lupus erythematosus|DLE|lupus|autoimmune disease|autoimmune disorder +dm|2 +(noun)|diabetes mellitus|DM|diabetes +(noun)|decimeter|decimetre|metric linear unit +dmd|1 +(noun)|Doctor of Dental Medicine|DMD|doctor's degree|doctorate +dmitri dmitrievich shostakovich|1 +(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer +dmitri ivanovich mendeleev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +dmitri ivanovich mendeleyev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +dmitri mendeleev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +dmitri mendeleyev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +dmitri shostakovich|1 +(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer +dmus|1 +(noun)|Doctor of Music|DMus|MusD|doctor's degree|doctorate +dmz|1 +(noun)|demilitarized zone|DMZ|zone +dna|1 +(noun)|deoxyribonucleic acid|desoxyribonucleic acid|DNA|polymer +dna chip|1 +(noun)|gene chip|DNA chip|chip|microchip|micro chip|silicon chip +dna fingerprint|1 +(noun)|DNA fingerprint|genetic fingerprint|biometric identification|biometric authentication|identity verification +dneprodzerzhinsk|1 +(noun)|Dneprodzerzhinsk|city|metropolis|urban center|port +dnieper|1 +(noun)|Dnieper|Dnieper River|river +dnieper river|1 +(noun)|Dnieper|Dnieper River|river +dnipropetrovsk|1 +(noun)|Dnipropetrovsk|Yekaterinoslav|city|metropolis|urban center +do|16 +(noun)|bash|brawl|party +(noun)|doh|ut|solfa syllable +(noun)|Doctor of Osteopathy|DO|doctor's degree|doctorate +(verb)|make +(verb)|perform|execute +(verb)|perform|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|fare|make out|come|get along|proceed|go +(verb)|cause|make|make|create +(verb)|practice|practise|exercise +(verb)|suffice|answer|serve|satisfy|fulfill|fulfil|live up to +(verb)|make|create|make +(verb)|act|behave +(verb)|serve|spend|pass +(verb)|manage +(verb)|dress|arrange|set|coif|coiffe|coiffure|groom|neaten +(verb)|travel|go|move|locomote +do-gooder|1 +(noun)|humanitarian|improver|benefactor|helper +do-it-yourself|1 +(adj)|homemade +do-nothing|2 +(adj)|irresponsible +(noun)|idler|loafer|layabout|bum|nonworker +do-or-die|1 +(adj)|desperate|resolute +do-si-do|1 +(noun)|country-dance|country dancing|contredanse|contra danse|contradance +do-well by|1 +(verb)|do justice|treat|handle|do by +do a job on|1 +(verb)|destroy|ruin +do away with|1 +(verb)|eliminate|get rid of|destroy|destruct +do by|1 +(verb)|treat|handle|interact +do drugs|1 +(verb)|drug|consume|ingest|take in|take|have +do good|1 +(verb)|benefit|help|aid +do in|1 +(verb)|neutralize|neutralise|liquidate|waste|knock off|kill +do it|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +do justice|3 +(verb)|do-well by|treat|handle|do by +(verb)|show +(verb)|prize|value|treasure|appreciate +do one's best|1 +(verb)|go all out|give one's best|do|perform +do the dishes|1 +(verb)|wash up|clean|make clean +do the honors|1 +(verb)|host +do up|2 +(verb)|wrap|wrap up +(verb)|doll up|pretty up|glam up|groom|neaten +do well|1 +(verb)|had best|act|move +do work|1 +(verb)|work +doable|1 +(adj)|accomplishable|achievable|realizable|possible +dobbin|1 +(noun)|farm horse|workhorse +doberman|1 +(noun)|Doberman|Doberman pinscher|pinscher +doberman pinscher|1 +(noun)|Doberman|Doberman pinscher|pinscher +dobra|1 +(noun)|Sao Thome e Principe monetary unit +dobson|2 +(noun)|hellgrammiate|larva +(noun)|dobsonfly|dobson fly|Corydalus cornutus|neuropteron|neuropteran|neuropterous insect +dobson fly|2 +(noun)|dobson|dobsonfly|Corydalus cornutus|neuropteron|neuropteran|neuropterous insect +(noun)| +dobsonfly|1 +(noun)|dobson|dobson fly|Corydalus cornutus|neuropteron|neuropteran|neuropterous insect +doc|2 +(noun)|doctor|physician|MD|Dr.|medico|medical practitioner|medical man +(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department +docent|1 +(noun)|teacher|instructor +docetism|1 +(noun)|Docetism|theological doctrine|religious doctrine|heresy|unorthodoxy +docile|3 +(adj)|docile |meek|tame|sheeplike|sheepish|yielding|obedient|tractable|manipulable +(adj)|teachable|tractable |manipulable +(adj)|gentle|tame |tamed +docility|1 +(noun)|tractability|tractableness|flexibility +dock|12 +(noun)|enclosure +(noun)|sorrel|sour grass|herb|herbaceous plant +(noun)|pier|wharf|wharfage|platform +(noun)|loading dock|platform +(noun)|dockage|docking facility|landing|landing place +(noun)|body part +(noun)|bobtail|bob|tail +(verb)|enter|come in|get into|get in|go into|go in|move into +(verb)|deprive +(verb)|withhold|deduct|recoup +(verb)|tail|bob|cut +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +dock-walloper|1 +(noun)|stevedore|loader|longshoreman|docker|dockhand|dock worker|lumper|laborer|manual laborer|labourer|jack +dock worker|1 +(noun)|stevedore|loader|longshoreman|docker|dockhand|dock-walloper|lumper|laborer|manual laborer|labourer|jack +dockage|2 +(noun)|docking fee|fee +(noun)|dock|docking facility|landing|landing place +docked|2 +(adj)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(adj)|clipped|cropped +docker|1 +(noun)|stevedore|loader|longshoreman|dockhand|dock worker|dock-walloper|lumper|laborer|manual laborer|labourer|jack +docket|4 +(noun)|calendar +(noun)|agenda|schedule|plan|program|programme +(verb)|put|set|place|pose|position|lay +(verb)|sum up|summarize|summarise|resume +dockhand|1 +(noun)|stevedore|loader|longshoreman|docker|dock worker|dock-walloper|lumper|laborer|manual laborer|labourer|jack +docking|1 +(noun)|moorage|tying up|arrival +docking facility|1 +(noun)|dock|dockage|landing|landing place +docking fee|1 +(noun)|dockage|fee +dockside|1 +(noun)|side +dockyard|1 +(noun)|waterfront +docosahexaenoic acid|1 +(noun)|omega-3 fatty acid|omega-3 +doctor|7 +(noun)|doc|physician|MD|Dr.|medico|medical practitioner|medical man +(noun)|Doctor of the Church|Doctor|theologian|theologist|theologizer|theologiser +(noun)|play|child's play +(noun)|Dr.|scholar|scholarly person|student +(verb)|sophisticate|doctor up|adulterate|stretch|dilute|debase +(verb)|treat|care for +(verb)|repair|mend|fix|bushel|furbish up|restore|touch on|better|improve|amend|ameliorate|meliorate +doctor's bill|1 +(noun)|medical bill|bill|account|invoice +doctor's degree|1 +(noun)|doctorate|academic degree|degree +doctor-fish|2 +(noun)|doctorfish|Acanthurus chirurgus|surgeonfish +(noun)| +doctor-patient relation|1 +(noun)|medical relation +doctor of arts|1 +(noun)|Doctor of Arts|ArtsD|honorary degree +doctor of dental medicine|1 +(noun)|Doctor of Dental Medicine|DMD|doctor's degree|doctorate +doctor of dental surgery|1 +(noun)|Doctor of Dental Surgery|DDS|doctor's degree|doctorate +doctor of divinity|1 +(noun)|Doctor of Divinity|DD|doctor's degree|doctorate +doctor of education|1 +(noun)|Doctor of Education|EdD|DEd|doctor's degree|doctorate +doctor of fine arts|1 +(noun)|Doctor of Fine Arts|honorary degree +doctor of humane letters|1 +(noun)|Doctor of Humane Letters|honorary degree +doctor of humanities|1 +(noun)|Doctor of Humanities|honorary degree +doctor of laws|1 +(noun)|Doctor of Laws|LLD|honorary degree +doctor of medicine|1 +(noun)|Doctor of Medicine|MD|doctor's degree|doctorate +doctor of music|1 +(noun)|Doctor of Music|DMus|MusD|doctor's degree|doctorate +doctor of musical arts|1 +(noun)|Doctor of Musical Arts|AMusD|doctor's degree|doctorate +doctor of optometry|1 +(noun)|Doctor of Optometry|OD|doctor's degree|doctorate +doctor of osteopathy|1 +(noun)|Doctor of Osteopathy|DO|doctor's degree|doctorate +doctor of philosophy|1 +(noun)|Doctor of Philosophy|doctor's degree|doctorate +doctor of public health|1 +(noun)|Doctor of Public Health|DPH|doctor's degree|doctorate +doctor of science|1 +(noun)|Doctor of Science|DS|ScD|honorary degree +doctor of the church|1 +(noun)|Doctor of the Church|Doctor|theologian|theologist|theologizer|theologiser +doctor of theology|1 +(noun)|Doctor of Theology|ThD|doctor's degree|doctorate +doctor up|1 +(verb)|sophisticate|doctor|adulterate|stretch|dilute|debase +doctoral|1 +(adj)|doctorial|scholar|scholarly person|student|academic degree|degree +doctorate|1 +(noun)|doctor's degree|academic degree|degree +doctorfish|1 +(noun)|doctor-fish|Acanthurus chirurgus|surgeonfish +doctorial|1 +(adj)|doctoral|scholar|scholarly person|student|academic degree|degree +doctorow|1 +(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer|author +doctrinaire|2 +(adj)|instructive |informative +(noun)|dogmatist|partisan|zealot|drumbeater +doctrinal|1 +(adj)|belief +doctrine|1 +(noun)|philosophy|philosophical system|school of thought|ism|belief +doctrine of analogy|1 +(noun)|analogy|religion|faith|religious belief +docudrama|1 +(noun)|documentary|documentary film|infotainment|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +document|6 +(noun)|written document|papers|writing|written material|piece of writing +(noun)|representation +(noun)|communication +(noun)|text file|computer file +(verb)|record|enter|put down +(verb)|confirm|corroborate|sustain|substantiate|support|affirm +documental|1 +(adj)|documentary|writing|written material|piece of writing +documentary|2 +(adj)|documental|writing|written material|piece of writing +(noun)|docudrama|documentary film|infotainment|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +documentary film|1 +(noun)|documentary|docudrama|infotainment|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +documentation|3 +(noun)|certification|corroboration|confirmation +(noun)|software documentation|software|software system|software package|package +(noun)|support|validation|proof|substantiation +documented|3 +(adj)|documented |referenced|registered +(adj)|attested|authenticated|genuine |echt +(adj)|certificated|credentialed|certified +dod|1 +(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department +dodder|2 +(noun)|vine +(verb)|toddle|coggle|totter|paddle|waddle|walk +dodderer|1 +(noun)|oldster|old person|senior citizen|golden ager +doddering|1 +(adj)|doddery|gaga|senile|old +doddery|1 +(adj)|doddering|gaga|senile|old +doddle|1 +(noun)|cinch|breeze|picnic|snap|duck soup|child's play|pushover|walkover|piece of cake +dodecagon|1 +(noun)|polygon|polygonal shape +dodecahedron|1 +(noun)|polyhedron +dodecanese|1 +(noun)|Dodecanese|Dhodhekanisos|Aegean island +dodecanoic acid|1 +(noun)|lauric acid|saturated fatty acid +dodge|6 +(noun)|contrivance|stratagem|scheme|strategy +(noun)|evasion +(noun)|dodging|scheme|falsehood|falsity|untruth|false statement +(verb)|move +(verb)|move +(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|duck|sidestep|avoid +dodge city|1 +(noun)|Dodge City|town +dodgem|1 +(noun)|bumper car|Dodgem|vehicle +dodger|2 +(noun)|fox|slyboots|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|corn dab|corn dodger|cornbread +dodging|3 +(noun)|evasion|escape|negligence|carelessness|neglect|nonperformance +(noun)|dodge|scheme|falsehood|falsity|untruth|false statement +(noun)|avoidance|turning away|shunning|rejection +dodgson|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +dodgy|2 +(adj)|chancy|chanceful|dicey|dangerous |unsafe +(adj)|crafty|cunning|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful +dodo|2 +(noun)|fogy|fogey|fossil|oldster|old person|senior citizen|golden ager +(noun)|Raphus cucullatus|columbiform bird +dodonaea|1 +(noun)|Dodonaea|genus Dodonaea|dicot genus|magnoliopsid genus +doe|2 +(noun)|Department of Energy|Energy Department|Energy|DOE|executive department +(noun)|placental|placental mammal|eutherian|eutherian mammal +doei|1 +(noun)|Department of Energy Intelligence|DOEI|agency|federal agency|government agency|bureau|office|authority +doer|1 +(noun)|actor|worker|person|individual|someone|somebody|mortal|human|soul +doeskin|2 +(noun)|leather +(noun)|fabric|cloth|material|textile +doff|1 +(verb)|take off +dog|8 +(noun)|domestic dog|Canis familiaris|canine|canid +(noun)|frump|unpleasant woman|disagreeable woman +(noun)|chap|fellow|feller|lad|gent|fella|blighter|cuss +(noun)|cad|bounder|blackguard|hound|heel|villain|scoundrel +(noun)|frank|frankfurter|hotdog|hot dog|wiener|wienerwurst|weenie|sausage +(noun)|pawl|detent|click|catch|stop +(noun)|andiron|firedog|dog-iron|support +(verb)|chase|chase after|trail|tail|tag|give chase|go after|track|pursue|follow +dog's-tooth check|1 +(noun)|houndstooth check|hound's-tooth check|dogstooth check|dogs-tooth check|check +dog's-tooth violet|1 +(noun)|dogtooth violet|dogtooth|liliaceous plant +dog's breakfast|1 +(noun)|dog's dinner|fix|hole|jam|mess|muddle|pickle|kettle of fish +dog's dinner|1 +(noun)|dog's breakfast|fix|hole|jam|mess|muddle|pickle|kettle of fish +dog's mercury|1 +(noun)|dog mercury|Mercurialis perennis|herb|herbaceous plant +dog-day cicada|1 +(noun)|harvest fly|cicada|cicala +dog-ear|1 +(noun)|signal|signaling|sign +dog-eared|1 +(adj)|eared|worn +dog-iron|1 +(noun)|andiron|firedog|dog|support +dog-tired|1 +(adj)|exhausted|fagged|fatigued|played out|spent|washed-out|worn-out|worn out|tired +dog bent|1 +(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|Agrostis canina|bent|bent grass|bent-grass +dog biscuit|1 +(noun)|cookie|cooky|biscuit +dog bite|1 +(noun)|bite +dog breeding|1 +(noun)|breeding +dog catcher|1 +(noun)|employee +dog collar|3 +(noun)|collar +(noun)|clerical collar|Roman collar|collar|neckband +(noun)|choker|collar|neckband|necklace +dog days|1 +(noun)|canicule|canicular days|time period|period of time|period +dog do|1 +(noun)|dog shit|doggy do|dog turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +dog fennel|2 +(noun)|Eupatorium capillifolium|herb|herbaceous plant +(noun)|mayweed|stinking mayweed|stinking chamomile|Anthemis cotula|composite|composite plant +dog flea|1 +(noun)|Ctenocephalides canis|flea +dog food|1 +(noun)|petfood|pet-food|pet food +dog grass|1 +(noun)|couch grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +dog hobble|1 +(noun)|dog laurel|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub|bush +dog house|2 +(noun)|kennel|doghouse|outbuilding +(noun)|doghouse|disfavor|disfavour|dislike|disapproval +dog in the manger|1 +(noun)|selfish person +dog laurel|1 +(noun)|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub|bush +dog mercury|1 +(noun)|dog's mercury|Mercurialis perennis|herb|herbaceous plant +dog paddle|1 +(noun)|swimming stroke +dog pound|1 +(noun)|pound|enclosure +dog racing|1 +(noun)|race +dog rose|1 +(noun)|Rosa canina|rose +dog shit|2 +(noun)|dog do|doggy do|dog turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +dog show|1 +(noun)|show +dog sled|2 +(noun)|dogsled|dog sleigh|sled|sledge|sleigh +(noun)| +dog sleigh|1 +(noun)|dogsled|dog sled|sled|sledge|sleigh +dog star|1 +(noun)|Sirius|Dog Star|Canicula|Sothis|binary star|binary|double star +dog stinkhorn|1 +(noun)|Mutinus caninus|stinkhorn|carrion fungus +dog tag|2 +(noun)|tag +(noun)|tag +dog turd|1 +(noun)|dog shit|dog do|doggy do|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +dog violet|1 +(noun)|heath violet|Viola canina|violet +dog wrench|1 +(noun)|wrench|spanner +dogbane|1 +(noun)|poisonous plant +dogbane family|1 +(noun)|Apocynaceae|family Apocynaceae|dicot family|magnoliopsid family +dogcart|1 +(noun)|cart +doge|1 +(noun)|judge|justice|jurist|magistrate +dogfight|5 +(noun)|contest|competition +(noun)|battle|conflict|fight|engagement +(noun)|fight|fighting|combat|scrap +(verb)|stage|bring about|arrange +(verb)|battle|combat +dogfighter|1 +(noun)|fighter pilot +dogfingt|1 +(noun)|hassle|scuffle|tussle|rough-and-tumble|fight|fighting|combat|scrap +dogfish|2 +(noun)|bowfin|grindle|Amia calva|ganoid|ganoid fish +(noun)|shark +dogged|1 +(adj)|bulldog|dour|pertinacious|tenacious|unyielding|stubborn +doggedly|1 +(adv)|tenaciously +doggedness|1 +(noun)|perseverance|persistence|persistency|tenacity|tenaciousness|pertinacity|determination|purpose +doggerel|1 +(noun)|doggerel verse|jingle|verse|rhyme +doggerel verse|1 +(noun)|doggerel|jingle|verse|rhyme +doggie|1 +(noun)|pooch|doggy|barker|bow-wow|dog|domestic dog|Canis familiaris +doggie bag|1 +(noun)|doggy bag|sack|poke|paper bag|carrier bag +dogging|1 +(adj)|persisting|continuous |uninterrupted +doggo|1 +(adv)|out of sight|in hiding +doggy|1 +(noun)|pooch|doggie|barker|bow-wow|dog|domestic dog|Canis familiaris +doggy bag|1 +(noun)|doggie bag|sack|poke|paper bag|carrier bag +doggy do|1 +(noun)|dog shit|dog do|dog turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +doghouse|2 +(noun)|kennel|dog house|outbuilding +(noun)|disfavor|disfavour|dislike|disapproval +dogie|1 +(noun)|dogy|leppy|calf +dogleg|2 +(noun)|angle +(noun)|hole|golf hole +doglike|1 +(adj)|loyal +dogma|2 +(noun)|tenet|religious doctrine|church doctrine|gospel|creed +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +dogmatic|2 +(adj)|dogmatical|narrow-minded |narrow +(adj)|religious doctrine|church doctrine|gospel|creed +dogmatical|1 +(adj)|dogmatic|narrow-minded |narrow +dogmatise|2 +(verb)|dogmatize|give voice|formulate|word|phrase|articulate +(verb)|dogmatize|talk|speak +dogmatism|1 +(noun)|bigotry|intolerance +dogmatist|1 +(noun)|doctrinaire|partisan|zealot|drumbeater +dogmatize|2 +(verb)|dogmatise|give voice|formulate|word|phrase|articulate +(verb)|dogmatise|talk|speak +dogs-tooth check|1 +(noun)|houndstooth check|hound's-tooth check|dogstooth check|dog's-tooth check|check +dogsbody|1 +(noun)|menial|servant|retainer +dogshit|1 +(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|bunk|bunkum|buncombe|guff|rot|hogwash +dogsled|1 +(noun)|dog sled|dog sleigh|sled|sledge|sleigh +dogstooth check|1 +(noun)|houndstooth check|hound's-tooth check|dogs-tooth check|dog's-tooth check|check +dogtooth|3 +(noun)|dogtooth violet|dog's-tooth violet|liliaceous plant +(noun)|canine|canine tooth|eyetooth|eye tooth|cuspid|tooth +(noun)|architectural ornament +dogtooth violet|1 +(noun)|dogtooth|dog's-tooth violet|liliaceous plant +dogtrot|1 +(noun)|jog|trot|lope +dogwatch|1 +(noun)|watch +dogwood|2 +(noun)|dogwood tree|cornel|angiospermous tree|flowering tree +(noun)|wood +dogwood family|1 +(noun)|Cornaceae|family Cornaceae|rosid dicot family +dogwood tree|1 +(noun)|dogwood|cornel|angiospermous tree|flowering tree +dogy|1 +(noun)|dogie|leppy|calf +doh|1 +(noun)|do|ut|solfa syllable +doha|1 +(noun)|Doha|Bida|El Beda|capital of Qatar|national capital|port +dohickey|1 +(noun)|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +doi|1 +(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department +doily|1 +(noun)|doyley|doyly|linen +doings|1 +(noun)|behavior|behaviour|conduct|activity +doj|1 +(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department +dojc|1 +(noun)|Department of Justice Canada|DoJC|international law enforcement agency +dojigger|1 +(noun)|dohickey|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +dol|2 +(noun)|pain unit +(noun)|Department of Labor|Labor Department|Labor|DoL|executive department +dolabrate|1 +(adj)|dolabriform|simple |unsubdivided +dolabriform|1 +(adj)|dolabrate|simple |unsubdivided +dolby|1 +(noun)|Dolby|Ray M. Dolby|electrical engineer +dolce far niente|1 +(noun)|idleness|idling|loafing +doldrums|2 +(noun)|stagnation|stagnancy|inaction|inactivity|inactiveness +(noun)|the doldrums|wind|air current|current of air +dole|2 +(noun)|share|portion|part|percentage +(noun)|pogy|pogey|social welfare|welfare +dole out|1 +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|give +doled out|1 +(adj)|apportioned|dealt out|meted out|parceled out|distributed +doleful|1 +(adj)|mournful|sad +dolefully|1 +(adv)|sorrowfully +dolefulness|1 +(noun)|sadness|unhappiness +dolichocephalic|1 +(adj)|dolichocephalic |dolichocranial|dolichocranic|long-headed +dolichocranial|1 +(adj)|dolichocephalic |dolichocranic|long-headed +dolichocranic|1 +(adj)|dolichocephalic |dolichocranial|long-headed +dolichonyx|1 +(noun)|Dolichonyx|genus Dolichonyx|bird genus +dolichonyx oryzivorus|1 +(noun)|bobolink|ricebird|reedbird|Dolichonyx oryzivorus|New World oriole|American oriole|oriole +dolichos|1 +(noun)|Dolichos|genus Dolichos|rosid dicot genus +dolichos biflorus|1 +(noun)|horse gram|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume|leguminous plant +dolichos lablab|1 +(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +dolichos lignosus|1 +(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine +dolichotis|1 +(noun)|Dolichotis|genus Dolichotis|mammal genus +dolichotis patagonum|1 +(noun)|mara|Dolichotis patagonum|rodent|gnawer|gnawing animal +doliolidae|1 +(noun)|Doliolidae|family Doliolidae|chordate family +doliolum|1 +(noun)|tunicate|urochordate|urochord +doll|2 +(noun)|dolly|plaything|toy +(noun)|dame|wench|skirt|chick|bird|girl|miss|missy|young lady|young woman|fille +doll's eyes|1 +(noun)|white baneberry|white cohosh|white bead|Actaea alba|baneberry|cohosh|herb Christopher +doll's house|2 +(noun)|dollhouse|house +(noun)|dollhouse|plaything|toy +doll up|1 +(verb)|do up|pretty up|glam up|groom|neaten +dollar|4 +(noun)|monetary unit +(noun)|dollar bill|one dollar bill|buck|clam|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +(noun)|coin +(noun)|dollar mark|dollar sign|symbol +dollar bill|1 +(noun)|dollar|one dollar bill|buck|clam|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +dollar diplomacy|1 +(noun)|diplomacy|diplomatic negotiations +dollar mark|2 +(noun)|dollar|dollar sign|symbol +(noun)|dollar sign|mark +dollar sign|2 +(noun)|dollar|dollar mark|symbol +(noun)|dollar mark|mark +dollar volume|1 +(noun)|turnover|bulk|mass|volume +dollarfish|2 +(noun)|Poronotus triacanthus|butterfish|stromateid fish|stromateid +(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|Selene setapinnis|carangid fish|carangid +dolled up|1 +(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|spruced up|spiffed up|togged up|clothed |clad +dollhouse|2 +(noun)|doll's house|house +(noun)|doll's house|plaything|toy +dollop|1 +(noun)|small indefinite quantity|small indefinite amount +dolly|3 +(noun)|conveyance|transport +(noun)|conveyance|transport +(noun)|doll|plaything|toy +dolman|2 +(noun)|dolman jacket|jacket +(noun)|cloak +dolman jacket|1 +(noun)|dolman|jacket +dolman sleeve|1 +(noun)|sleeve|arm +dolmas|1 +(noun)|stuffed grape leaves|dish +dolmen|3 +(noun)|cromlech|megalith|megalithic structure +(noun)|dolman|dolman jacket|jacket +(noun)|dolman|cloak +dolobid|1 +(noun)|diflunisal|Dolobid|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +dolomite|2 +(noun)|rock|stone +(noun)|mineral +dolomite alps|1 +(noun)|Dolomite Alps|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +dolomitic|1 +(adj)|rock|stone +dolophine hydrochloride|1 +(noun)|methadone|methadone hydrochloride|methadon|fixer|synthetic heroin|narcotic +dolor|1 +(noun)|dolour|grief|heartache|heartbreak|brokenheartedness +dolorous|1 +(adj)|dolourous|lachrymose|tearful|weeping|sorrowful +dolour|1 +(noun)|dolor|grief|heartache|heartbreak|brokenheartedness +dolourous|1 +(adj)|dolorous|lachrymose|tearful|weeping|sorrowful +dolphin|2 +(noun)|dolphinfish|mahimahi|percoid fish|percoid|percoidean +(noun)|toothed whale +dolphin kick|1 +(noun)|swimming kick +dolphin oil|1 +(noun)|animal oil +dolphin striker|1 +(noun)|martingale|spar +dolphinfish|2 +(noun)|mahimahi|saltwater fish +(noun)|dolphin|mahimahi|percoid fish|percoid|percoidean +dolt|1 +(noun)|stupid|stupid person|dullard|pudding head|pudden-head|poor fish|pillock|simpleton|simple +doltish|1 +(adj)|cloddish|stupid +doltishly|1 +(adv)|stupidly|without thinking +dom pedro|1 +(noun)|Dom Pedro|mixed drink +domain|5 +(noun)|sphere|area|orbit|field|arena|environment +(noun)|demesne|land|region +(noun)|set +(noun)|world|class|social class|socio-economic class +(noun)|region|realm|knowledge domain|knowledge base +domain name|1 +(noun)|name +domatium|1 +(noun)|plant part|plant structure +dombeya|1 +(noun)|shrub|bush +dome|4 +(noun)|concave shape|concavity|incurvation|incurvature +(noun)|attic|bean|bonce|noodle|noggin|human head +(noun)|domed stadium|covered stadium|stadium|bowl|arena|sports stadium +(noun)|roof +domed|1 +(adj)|vaulted|rounded +domed stadium|1 +(noun)|dome|covered stadium|stadium|bowl|arena|sports stadium +domenikos theotocopoulos|1 +(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master +domesday book|1 +(noun)|Domesday Book|written record|written account +domestic|6 +(adj)|domestic |home|interior|internal|national|municipal|national +(adj)|housing|lodging|living accommodations +(adj)|domestic |domesticated|home-loving|home-style|housewifely|husbandly +(adj)|domesticated|tame |tamed +(adj)|native +(noun)|domestic help|house servant|servant|retainer +domestic animal|1 +(noun)|animal|animate being|beast|brute|creature|fauna +domestic ass|1 +(noun)|donkey|Equus asinus|ass +domestic carp|1 +(noun)|Cyprinus carpio|carp +domestic cat|1 +(noun)|house cat|Felis domesticus|Felis catus|cat|true cat +domestic dog|1 +(noun)|dog|Canis familiaris|canine|canid +domestic flight|1 +(noun)|flight +domestic fowl|1 +(noun)|fowl|poultry|gallinaceous bird|gallinacean +domestic goat|1 +(noun)|Capra hircus|goat|caprine animal +domestic help|1 +(noun)|domestic|house servant|servant|retainer +domestic llama|1 +(noun)|Lama peruana|llama +domestic partner|1 +(noun)|significant other|spousal equivalent|spouse equivalent|person|individual|someone|somebody|mortal|human|soul +domestic pigeon|1 +(noun)|pigeon +domestic prelate|1 +(noun)|priest +domestic relations court|1 +(noun)|family court|court of domestic relations|court|tribunal|judicature +domestic science|1 +(noun)|home economics|home ec|household arts|social science +domestic sheep|1 +(noun)|Ovis aries|sheep +domestic silkworm moth|1 +(noun)|Bombyx mori|bombycid|bombycid moth|silkworm moth +domestic terrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +domestic violence|1 +(noun)|violence|force +domesticate|3 +(verb)|cultivate|naturalize|naturalise|tame|adapt|accommodate +(verb)|domesticize|domesticise|reclaim|tame|change|alter|modify +(verb)|tame|adapt|accommodate +domesticated|2 +(adj)|domestic|tame |tamed +(adj)|domestic +domestication|3 +(noun)|adaptation|adjustment +(noun)|tameness|tractability|tractableness|flexibility +(noun)|accommodation +domesticise|1 +(verb)|domesticate|domesticize|reclaim|tame|change|alter|modify +domesticity|2 +(noun)|quality +(noun)|activity +domesticize|1 +(verb)|domesticate|domesticise|reclaim|tame|change|alter|modify +domicile|3 +(noun)|legal residence|residence|abode +(noun)|dwelling|home|abode|habitation|dwelling house|housing|lodging|living accommodations +(verb)|dwell|shack|reside|live|inhabit|people|populate|domiciliate|be +domiciliary|1 +(adj)|housing|lodging|living accommodations +domiciliate|2 +(verb)|dwell|shack|reside|live|inhabit|people|populate|domicile|be +(verb)|house|put up|shelter +domiciliation|1 +(noun)|diggings|digs|lodgings|pad|living quarters|quarters +dominance|3 +(noun)|laterality|bodily property +(noun)|ascendance|ascendence|ascendancy|ascendency|control|condition|status +(noun)|authority|authorization|authorisation|say-so|control +dominant|3 +(adj)|dominant |ascendant|ascendent|dominating|controlling|governing|in charge|overriding|paramount|predominant|predominate|preponderant|preponderating|possessive|sovereign|supreme|superior|superior +(adj)|dominant +(noun)|note|musical note|tone +dominant gene|1 +(noun)|gene|cistron|factor +dominate|4 +(verb)|predominate|rule|reign|prevail +(verb)|influence|act upon|work +(verb)|master|control|command +(verb)|command|overlook|overtop|lie +dominated|2 +(adj)|controlled +(adj)|henpecked|submissive +dominating|3 +(adj)|ascendant|ascendent|dominant +(adj)|commanding|overlooking|high +(adj)|autocratic|bossy|high-and-mighty|magisterial|peremptory|domineering +domination|2 +(noun)|social control +(noun)|mastery|supremacy|dominance|ascendance|ascendence|ascendancy|ascendency|control +dominatrix|1 +(noun)|woman|adult female +domine|1 +(noun)|dominus|dominie|dominee|clergyman|reverend|man of the cloth +dominee|1 +(noun)|dominus|dominie|domine|clergyman|reverend|man of the cloth +domineer|1 +(verb)|tyrannize|tyrannise|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|hector|push around +domineering|1 +(adj)|domineering |authoritarian|dictatorial|overbearing|autocratic|bossy|dominating|high-and-mighty|magisterial|peremptory|blustery|bullying|cavalier|high-handed|heavy-handed|roughshod|imperious|masterful|oppressive|tyrannical|tyrannous|immodest +domineeringness|1 +(noun)|imperiousness|overbearingness|arrogance|haughtiness|hauteur|highhandedness|lordliness +domingo|1 +(noun)|Domingo|Placido Domingo|tenor +domingo de guzman|1 +(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest|saint +dominic|1 +(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest|saint +dominica|2 +(noun)|Dominica|Commonwealth of Dominica|country|state|land +(noun)|Dominica|island +dominical|2 +(adj)|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(adj)|rest day|day of rest +dominican|3 +(adj)|Dominican|country|state|land +(adj)|Dominican|friar|mendicant +(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar|mendicant +dominican dollar|1 +(noun)|Dominican dollar|dollar +dominican mahogany|1 +(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany|mahogany tree +dominican monetary unit|1 +(noun)|Dominican monetary unit|monetary unit +dominican order|1 +(noun)|Dominican order|order|monastic order +dominican peso|1 +(noun)|Dominican peso|peso|Dominican monetary unit +dominican republic|1 +(noun)|Dominican Republic|country|state|land +dominick|1 +(noun)|Dominique|Dominick|chicken|Gallus gallus +dominicus|1 +(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day|day of rest +dominie|1 +(noun)|dominus|domine|dominee|clergyman|reverend|man of the cloth +dominion|3 +(noun)|rule|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|district|territory|territorial dominion|region +(noun)|Dominion|state|nation|country|land|commonwealth|res publica|body politic +dominion day|1 +(noun)|Dominion Day|July 1|legal holiday|national holiday +dominique|1 +(noun)|Dominique|Dominick|chicken|Gallus gallus +domino|4 +(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician|songwriter|songster|ballad maker +(noun)|cloak +(noun)|half mask|eye mask|mask +(noun)|block +domino effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +domino theory|1 +(noun)|political orientation|ideology|political theory +dominoes|5 +(noun)|dominos|table game +(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician|songwriter|songster|ballad maker +(noun)|domino|cloak +(noun)|domino|half mask|eye mask|mask +(noun)|domino|block +dominos|5 +(noun)|dominoes|table game +(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician|songwriter|songster|ballad maker +(noun)|domino|cloak +(noun)|domino|half mask|eye mask|mask +(noun)|domino|block +dominus|1 +(noun)|dominie|domine|dominee|clergyman|reverend|man of the cloth +domitian|1 +(noun)|Domitian|Titus Flavius Domitianus|Roman Emperor|Emperor of Rome +domoic acid|1 +(noun)|neurotoxin|neurolysin +don|6 +(noun)|Don|man|adult male +(noun)|preceptor|teacher|instructor +(noun)|father|head|chief|top dog +(noun)|Don|Celtic deity +(noun)|Don|Don River|river +(verb)|wear|put on|get into|assume|dress|get dressed +don't-know|1 +(noun)|interviewee +don budge|1 +(noun)|Budge|Don Budge|John Donald Budge|tennis player +don juan|2 +(noun)|Don Juan|Lord|noble|nobleman +(noun)|Don Juan|womanizer|womaniser|philanderer +don luchino visconti conte di modrone|1 +(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker|filmmaker|film producer|movie maker +don marquis|1 +(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist|humourist +don quixote|2 +(noun)|Don Quixote|fictional character|fictitious character|character +(noun)|Don Quixote|idealist|dreamer +don river|1 +(noun)|Don|Don River|river +donald arthur glaser|1 +(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist +donald barthelme|1 +(noun)|Barthelme|Donald Barthelme|writer|author +donald duck|1 +(noun)|Donald Duck|fictional animal +donald glaser|1 +(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist +donald robert perry marquis|1 +(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist|humourist +donar|1 +(noun)|Donar|Teutonic deity +donate|1 +(verb)|give|gift|present +donated|1 +(adj)|given +donatello|1 +(noun)|Donatello|Donato di Betto Bardi|sculptor|sculpturer|carver|statue maker +donation|2 +(noun)|contribution|gift +(noun)|contribution|giving|gift +donatism|1 +(noun)|Donatism|Christianity|Christian religion +donatist|2 +(adj)|Donatist|Christianity|Christian religion +(noun)|Donatist|disciple|adherent +donato bramante|1 +(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect|designer +donato d'agnolo bramante|1 +(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect|designer +donato di betto bardi|1 +(noun)|Donatello|Donato di Betto Bardi|sculptor|sculpturer|carver|statue maker +donatus|1 +(noun)|Donatus|Aelius Donatus|grammarian|syntactician +donbas|1 +(noun)|Donets Basin|Donbass|Donbas|geographical area|geographic area|geographical region|geographic region +donbass|1 +(noun)|Donets Basin|Donbass|Donbas|geographical area|geographic area|geographical region|geographic region +done|2 +(adj)|through|through with|finished +(adj)|cooked +done for|2 +(adj)|kaput|gone|destroyed +(adj)|ruined|sunk|undone|washed-up|unsuccessful +done up|1 +(adj)|wrapped +done with|1 +(adj)|through with|finished +donee|1 +(noun)|beneficiary|recipient|receiver +donets basin|1 +(noun)|Donets Basin|Donbass|Donbas|geographical area|geographic area|geographical region|geographic region +donetsk|1 +(noun)|Donetsk|Donetske|Stalino|city|metropolis|urban center +donetske|1 +(noun)|Donetsk|Donetske|Stalino|city|metropolis|urban center +dong|2 +(noun)|Vietnamese monetary unit +(verb)|ding|dingdong|ring|peal +dongle|1 +(noun)|electronic device +donizetti|1 +(noun)|Donizetti|Gaetano Donizetti|composer +donjon|1 +(noun)|keep|dungeon|stronghold|fastness +donkey|2 +(noun)|emblem|allegory +(noun)|domestic ass|Equus asinus|ass +donkey boiler|1 +(noun)|auxiliary boiler|boiler|steam boiler +donkey cart|1 +(noun)|pony cart|ponycart|tub-cart|cart +donkey engine|2 +(noun)|switch engine|locomotive|engine|locomotive engine|railway locomotive +(noun)|auxiliary engine|engine +donkey jacket|1 +(noun)|jacket +donkey pump|1 +(noun)|auxiliary pump|pump +donkeywork|1 +(noun)|drudgery|plodding|grind|labor|labour|toil +donkin|1 +(noun)|Donkin|Bryan Donkin|engineer|applied scientist|technologist +donna|1 +(noun)|woman|adult female +donne|1 +(noun)|Donne|John Donne|poet|clergyman|reverend|man of the cloth +donnean|1 +(adj)|Donnean|Donnian|poet|clergyman|reverend|man of the cloth +donner pass|1 +(noun)|Donner Pass|pass|mountain pass|notch +donnian|1 +(adj)|Donnean|Donnian|poet|clergyman|reverend|man of the cloth +donnish|1 +(adj)|academic|pedantic|scholarly +donor|2 +(noun)|giver|presenter|benefactor|helper +(noun)|benefactor|helper +donor card|1 +(noun)|card|identity card +donut|1 +(noun)|doughnut|sinker|friedcake +doo-wop|1 +(noun)|gospel|gospel singing +doob|1 +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|scutch grass|star grass|Cynodon dactylon|grass +doodad|1 +(noun)|dohickey|dojigger|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +doodia|1 +(noun)|rasp fern|fern +doodle|2 +(noun)|scribble|scrabble|drawing +(verb)|draw +doodlebug|3 +(noun)|motor vehicle|automotive vehicle +(noun)|buzz bomb|robot bomb|flying bomb|V-1|guided missile +(noun)|ant lion|antlion|larva +doofus|1 +(noun)|dimwit|nitwit|half-wit|simpleton|simple +doohickey|1 +(noun)|dohickey|dojigger|doodad|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +doolittle|1 +(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator|aeronaut|airman|flier|flyer|general|full general +doom|4 +(noun)|doomsday|day of reckoning|end of the world|destiny|fate +(verb)|destine|fate|designate|ordain +(verb)|sentence|condemn|declare +(verb)|guarantee|ensure|insure|assure|secure +doomed|5 +(adj)|dead +(adj)|cursed|damned|unredeemed|unsaved|lost +(adj)|ill-fated|ill-omened|ill-starred|unlucky|unfortunate +(adj)|fated|certain |sure +(noun)|lost|people +doomsday|2 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|crack of doom|end of the world|day +(noun)|doom|day of reckoning|end of the world|destiny|fate +door|5 +(noun)|movable barrier +(noun)|doorway|room access|threshold|entrance|entranceway|entryway|entry|entree +(noun)|entree|access|accession|admittance +(noun)|structure|construction +(noun)|room +door-to-door|2 +(adj)|direct +(adj)|house-to-house|comprehensive +door guard|1 +(noun)|doorkeeper|doorman|hall porter|porter|gatekeeper|ostiary|guard +door latch|1 +(noun)|latch|lock +door prize|1 +(noun)|prize|award +doorbell|1 +(noun)|bell|buzzer|push button|push|button +doorcase|1 +(noun)|doorframe|framework|frame|framing +doorframe|1 +(noun)|doorcase|framework|frame|framing +doorhandle|1 +(noun)|doorknob|knob +doorjamb|1 +(noun)|doorpost|jamb +doorkeeper|3 +(noun)|usher|official|functionary +(noun)|ostiary|ostiarius|clergyman|reverend|man of the cloth|holy order|order +(noun)|doorman|door guard|hall porter|porter|gatekeeper|ostiary|guard +doorknob|1 +(noun)|doorhandle|knob +doorknocker|1 +(noun)|knocker|rapper|device +doorlock|1 +(noun)|lock +doorman|1 +(noun)|doorkeeper|door guard|hall porter|porter|gatekeeper|ostiary|guard +doormat|2 +(noun)|weakling|wuss|person|individual|someone|somebody|mortal|human|soul +(noun)|welcome mat|mat +doornail|1 +(noun)|nail +doorplate|1 +(noun)|nameplate +doorpost|1 +(noun)|doorjamb|jamb +doorsill|1 +(noun)|doorstep|threshold|sill +doorstep|1 +(noun)|doorsill|threshold|sill +doorstop|1 +(noun)|doorstopper|catch|stop +doorstopper|1 +(noun)|doorstop|catch|stop +doorway|1 +(noun)|door|room access|threshold|entrance|entranceway|entryway|entry|entree +dooryard|1 +(noun)|yard|grounds|curtilage +dopa|1 +(noun)|dihydroxyphenylalanine|amino acid|aminoalkanoic acid +dopamine|1 +(noun)|Dopastat|Intropin|monoamine neurotransmitter +dopastat|1 +(noun)|dopamine|Dopastat|Intropin|monoamine neurotransmitter +dope|7 +(noun)|pot|grass|green goddess|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(noun)|dumbbell|dummy|boob|booby|pinhead|simpleton|simple +(noun)|cola|soft drink +(noun)|poop|the skinny|low-down|details|inside information +(verb)|drug|do drugs +(verb)|change|alter|modify +(verb)|dope up|drug|dose +dope off|1 +(verb)|fall asleep|flake out|drift off|nod off|drop off|doze off|drowse off +dope sheet|1 +(noun)|scratch sheet|tip sheet +dope up|1 +(verb)|dope|drug|dose +doped|2 +(adj)|treated +(adj)|drugged|narcotized|narcotised|intoxicated |drunk|inebriated +dopey|1 +(adj)|anserine|dopy|foolish|goosey|goosy|gooselike|stupid +doppelganger|1 +(noun)|legendary creature +doppelzentner|1 +(noun)|hundredweight|metric hundredweight|centner|metric weight unit|weight unit +doppler|1 +(noun)|Doppler|Christian Johann Doppler|physicist +doppler effect|1 +(noun)|Doppler effect|Doppler shift|propagation +doppler shift|1 +(noun)|Doppler effect|Doppler shift|propagation +dopy|1 +(adj)|anserine|dopey|foolish|goosey|goosy|gooselike|stupid +dorado|1 +(noun)|Dorado|constellation +dorbeetle|1 +(noun)|dung beetle +dorian|1 +(noun)|Dorian|Greek|Hellene +dorian order|1 +(noun)|Doric order|Dorian order|order +doric|2 +(adj)|doric |tuscan +(noun)|Doric|Ancient Greek +doric order|1 +(noun)|Doric order|Dorian order|order +doriden|1 +(noun)|glutethimide|Doriden|sedative|sedative drug|depressant|downer +doris|1 +(noun)|Doris|Greek deity +doris lessing|1 +(noun)|Lessing|Doris Lessing|Doris May Lessing|writer|author +doris may lessing|1 +(noun)|Lessing|Doris Lessing|Doris May Lessing|writer|author +dork|1 +(noun)|jerk|misfit +dorking|1 +(noun)|Dorking|domestic fowl|fowl|poultry +dorm|1 +(noun)|dormitory|residence hall|hall|student residence|living quarters|quarters|building|edifice +dorm room|1 +(noun)|dormitory|dormitory room|bedroom|sleeping room|chamber|bedchamber +dormancy|2 +(noun)|quiescence|quiescency|inaction|inactivity|inactiveness +(noun)|quiescence|quiescency|sleeping|rest|ease|repose|relaxation +dormant|4 +(adj)|dormant |inactive|quiescent +(adj)|sleeping|unerect +(adj)|hibernating|torpid|asleep +(adj)|inactive +dormant account|1 +(noun)|savings account +dormer|1 +(noun)|dormer window|window +dormer window|2 +(noun)|window +(noun)|dormer|window +dormie|1 +(adj)|dormy|up +dormition|1 +(noun)|Dormition|Feast of Dormition|religious holiday|holy day +dormitory|2 +(noun)|dorm|residence hall|hall|student residence|living quarters|quarters|building|edifice +(noun)|dormitory room|dorm room|bedroom|sleeping room|chamber|bedchamber +dormitory room|1 +(noun)|dormitory|dorm room|bedroom|sleeping room|chamber|bedchamber +dormouse|1 +(noun)|rodent|gnawer|gnawing animal +dormy|1 +(adj)|dormie|up +doronicum|1 +(noun)|Doronicum|genus Doronicum|asterid dicot genus +doroteo arango|1 +(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist|revolutionary|subversive|subverter +dorothea lange|1 +(noun)|Lange|Dorothea Lange|photographer|lensman +dorotheanthus|1 +(noun)|Dorotheanthus|genus Dorotheanthus|caryophylloid dicot genus +dorotheanthus bellidiformis|1 +(noun)|livingstone daisy|Dorotheanthus bellidiformis|succulent +dorothy dix|1 +(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist +dorothy hodgkin|1 +(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist +dorothy l. sayers|1 +(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer|author +dorothy leigh sayers|1 +(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer|author +dorothy mary crowfoot hodgkin|1 +(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist +dorothy parker|1 +(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer|author +dorothy rothschild parker|1 +(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer|author +dorothy sayers|1 +(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer|author +dorsal|2 +(adj)|dorsal +(adj)|abaxial +dorsal fin|1 +(noun)|fin +dorsal scapular vein|1 +(noun)|vena scapularis dorsalis|vein|vena|venous blood vessel +dorsal vertebra|1 +(noun)|thoracic vertebra|vertebra +dorsiflexion|1 +(noun)|flexion|flexure +dorsoventral|1 +(adj)|ventral +dorsum|2 +(noun)|back|body part +(noun)|body part +dory|2 +(noun)|dinghy|rowboat|small boat +(noun)|spiny-finned fish|acanthopterygian +dorylinae|1 +(noun)|Dorylinae|subfamily Dorylinae|arthropod family +doryopteris|1 +(noun)|Doryopteris|genus Doryopteris|fern genus +doryopteris pedata|1 +(noun)|hand fern|Doryopteris pedata|fern +dos|5 +(noun)|Department of State|State Department|State|DoS|executive department +(noun)|DOS|disk operating system|operating system|OS +(noun)|bash|do|brawl|party +(noun)|do|doh|ut|solfa syllable +(noun)|Doctor of Osteopathy|DO|doctor's degree|doctorate +dos passos|1 +(noun)|Dos Passos|John Dos Passos|writer|author +dosage|1 +(noun)|dose|indefinite quantity +dose|5 +(noun)|medicine|medication|medicament|medicinal drug +(noun)|dosage|indefinite quantity +(noun)|acid|back breaker|battery-acid|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +(verb)|process|treat +(verb)|drug|medicate|medicine +dose rate|1 +(noun)|rate +dosed|1 +(adj)|treated +dosemeter|1 +(noun)|dosimeter|measuring instrument|measuring system|measuring device +dosimeter|1 +(noun)|dosemeter|measuring instrument|measuring system|measuring device +dosimetry|1 +(noun)|measurement|measuring|measure|mensuration +doss|1 +(verb)|doss down|crash|bed down|bunk down +doss down|1 +(verb)|doss|crash|bed down|bunk down +dossal|1 +(noun)|dossel|hanging|wall hanging +dossel|1 +(noun)|dossal|hanging|wall hanging +dosser|1 +(noun)|street person|tramp|hobo|bum +dosshouse|1 +(noun)|flophouse|lodging house|rooming house +dossier|1 +(noun)|written record|written account +dostoevski|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +dostoevskian|1 +(adj)|Dostoevskian|Dostoyevskian|writer|author +dostoevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +dostoyevskian|1 +(adj)|Dostoevskian|Dostoyevskian|writer|author +dostoyevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +dot|8 +(noun)|point|disk|disc|saucer +(noun)|Department of Transportation|Transportation|DoT|executive department +(noun)|dit|telegraphic signal|radiotelegraphic signal +(noun)|acid|back breaker|battery-acid|dose|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +(verb)|stud|constellate|cover|extend +(verb)|scatter|sprinkle|dust|disperse|discharge +(verb)|write +(verb)|mark +dot-com|3 +(adj)|company +(noun)|dot com|dot com company|company +(noun)| +dot com|2 +(noun)|dot-com|dot com company|company +(noun)| +dot com company|1 +(noun)|dot-com|dot com|company +dot matrix|1 +(noun)|matrix +dot matrix printer|1 +(noun)|matrix printer|dot printer|printer +dot printer|1 +(noun)|dot matrix printer|matrix printer|printer +dot product|1 +(noun)|scalar product|inner product|real number|real +dotage|1 +(noun)|second childhood|senility|old age|years|age|eld|geezerhood +dotard|1 +(noun)|oldster|old person|senior citizen|golden ager +dote|2 +(verb)|senesce|age|get on|mature|maturate +(verb)|love +doting|1 +(adj)|adoring|fond|loving +dotrel|1 +(noun)|dotterel|Charadrius morinellus|Eudromias morinellus|plover +dotted|2 +(adj)|flecked|specked|speckled|stippled|patterned +(adj)|dashed|broken +dotted gayfeather|1 +(noun)|Liatris punctata|blazing star|button snakeroot|gayfeather|gay-feather|snakeroot +dotted line|1 +(noun)|line +dotterel|1 +(noun)|dotrel|Charadrius morinellus|Eudromias morinellus|plover +dottily|1 +(adv)|daftly|balmily|nuttily|wackily +dottle|1 +(noun)|residue +dotty|2 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +(adj)|crazy|gaga|enamored|infatuated|in love|smitten|soft on|taken with|loving +douala|1 +(noun)|Douala|city|metropolis|urban center +douay-rheims bible|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +douay-rheims version|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +douay bible|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +douay version|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +double|19 +(adj)|dual|twofold|treble|threefold|multiple +(adj)|dual|duple|multiple +(adj)|doubled|twofold|multiple +(adj)|double +(adj)|bivalent +(adj)|large +(adj)|forked|equivocal |ambiguous +(noun)|two-base hit|two-bagger|two-baser|base hit|safety|bingle +(noun)|stunt man|stunt woman|stand-in|substitute|relief|reliever|backup|backup man|fill-in +(noun)|image|look-alike|person|individual|someone|somebody|mortal|human|soul +(noun)|multiple +(noun)|doubling|raise +(verb)|duplicate|multiply|manifold|double up +(verb)|hit +(verb)|double over|double up|bend|flex +(verb)|function|work|operate|go|run +(verb)|bid|call +(verb)|duplicate|reduplicate|repeat|replicate|reproduce +(adv)|doubly|twice +double-barreled|2 +(adj)|double-barreled |double-barrelled +(adj)|double-barrelled|ambiguous +double-barrelled|2 +(adj)|double-barreled +(adj)|double-barreled|ambiguous +double-bass|1 +(adj)|contrabass|low |low-pitched +double-bedded|1 +(adj)|bedded +double-bitted ax|1 +(noun)|double-bitted axe|Western ax|Western axe|ax|axe +double-bitted axe|1 +(noun)|double-bitted ax|Western ax|Western axe|ax|axe +double-blind experiment|1 +(noun)|double-blind procedure|double-blind study|experimental procedure +double-blind procedure|1 +(noun)|double-blind experiment|double-blind study|experimental procedure +double-blind study|1 +(noun)|double-blind procedure|double-blind experiment|experimental procedure +double-bogey|1 +(noun)|score +double-breasted|1 +(adj)|double-breasted +double-breasted jacket|1 +(noun)|jacket +double-breasted suit|1 +(noun)|suit|suit of clothes +double-check|1 +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +double-chinned|1 +(adj)|jowly|loose-jowled|fat +double-crosser|1 +(noun)|double-dealer|two-timer|betrayer|traitor|deceiver|cheat|cheater|trickster|beguiler|slicker +double-crossing|1 +(noun)|double cross|treachery|betrayal|treason|perfidy +double-date|1 +(verb)|date +double-dealer|1 +(noun)|double-crosser|two-timer|betrayer|traitor|deceiver|cheat|cheater|trickster|beguiler|slicker +double-dealing|2 +(adj)|ambidextrous|deceitful|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest |dishonorable +(noun)|duplicity|deception|deceit|dissembling|dissimulation +double-decker|1 +(noun)|bus|autobus|coach|charabanc|jitney|motorbus|motorcoach|omnibus|public transport +double-dyed|1 +(adj)|arrant|complete|consummate|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +double-edged|1 +(adj)|ambiguous +double-entry bookkeeping|1 +(noun)|double entry|bookkeeping|clerking +double-faced|2 +(adj)|reversible |two-sided +(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-tongued|dishonest |dishonorable +double-geared|2 +(adj)|geared +(adj)|back-geared|geared +double-glaze|1 +(verb)|glass|glaze +double-hung window|1 +(noun)|window +double-jointed|1 +(adj)|flexible |flexile +double-magnum|1 +(noun)|jeroboam|wine bottle +double-park|1 +(verb)|park +double-prop|1 +(noun)|double-propeller plane|twin-prop|twin-propeller-plane|propeller plane +double-propeller plane|1 +(noun)|double-prop|twin-prop|twin-propeller-plane|propeller plane +double-quick|1 +(adj)|fast +double-reed instrument|1 +(noun)|double reed|beating-reed instrument|reed +double-space|1 +(verb)|type|typewrite +double-spaced|1 +(adj)|spaced +double-spacing|1 +(noun)|typing|typewriting +double-team|1 +(verb)|cover +double-tongued|1 +(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|dishonest |dishonorable +double-u|1 +(noun)|W|letter|letter of the alphabet|alphabetic character +double agent|1 +(noun)|spy|undercover agent +double back|1 +(verb)|backtrack|turn back|return|go back|get back|come back +double bar|1 +(noun)|bar line +double bass|1 +(noun)|bass fiddle|bass viol|bull fiddle|contrabass|string bass|bowed stringed instrument|string|bass +double bassoon|1 +(noun)|contrabassoon|contrafagotto|bassoon +double bed|1 +(noun)|bed +double bind|1 +(noun)|dilemma|quandary +double birdie|1 +(verb)|shoot +double blind|1 +(noun)|test|trial|run +double bogey|1 +(verb)|shoot +double boiler|1 +(noun)|double saucepan|saucepan +double bond|1 +(noun)|covalent bond +double check|1 +(noun)|countercheck|assay|check +double chin|1 +(noun)|buccula|chin|mentum +double clinch|1 +(noun)|clinch|clench +double cream|1 +(noun)|cream cheese +double creme|1 +(noun)|heavy whipping cream|cream +double crochet|2 +(noun)|double stitch|crochet stitch +(verb)|double stitch|crochet +double cross|2 +(noun)|double-crossing|treachery|betrayal|treason|perfidy +(verb)|betray|sell +double dagger|1 +(noun)|double obelisk|dieses|character|grapheme|graphic symbol +double damages|1 +(noun)|punitive damages|exemplary damages|smart money +double date|1 +(noun)|date|appointment|engagement +double decomposition|1 +(noun)|double decomposition reaction|metathesis|chemical reaction|reaction +double decomposition reaction|1 +(noun)|double decomposition|metathesis|chemical reaction|reaction +double digit|1 +(noun)|integer|whole number +double dipper|1 +(noun)|earner|wage earner +double dipping|1 +(noun)|income +double door|1 +(noun)|door +double dribble|1 +(noun)|dribble|dribbling +double dutch|2 +(noun)|double Dutch|gibberish|gibber +(noun)|double Dutch|jump rope +double dye|1 +(verb)|dye +double eagle|2 +(noun)|score +(noun)|coin +double entendre|1 +(noun)|ambiguity +double entry|1 +(noun)|double-entry bookkeeping|bookkeeping|clerking +double fault|1 +(noun)|fault +double feature|1 +(noun)|twin bill|doubleheader|game +double first|1 +(noun)|first|first-class honours degree +double flat|1 +(noun)|flat +double glazing|1 +(noun)|window +double gloucester|1 +(noun)|double Gloucester|cheese +double gold|1 +(noun)|golden glow|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower|Rudbeckia laciniata +double helix|1 +(noun)|helix|spiral +double indemnity|1 +(noun)|clause +double jeopardy|1 +(noun)|prosecution|criminal prosecution +double knit|1 +(noun)|knit|knitted fabric +double leg circle|1 +(noun)|gymnastic exercise +double negative|2 +(noun)|affirmative +(noun)|negative +double obelisk|1 +(noun)|double dagger|dieses|character|grapheme|graphic symbol +double over|1 +(verb)|double|double up|bend|flex +double play|1 +(noun)|baseball play +double pneumonia|1 +(noun)|lobar pneumonia +double quick|1 +(adv)|double time +double quotes|1 +(noun)|quotation mark|quote|inverted comma +double reed|2 +(noun)|double-reed instrument|beating-reed instrument|reed +(noun)|reed|vibrating reed +double refraction|1 +(noun)|birefringence|refraction +double replacement reaction|1 +(noun)|double decomposition|double decomposition reaction|metathesis +double reverse|1 +(noun)|reverse +double rhyme|1 +(noun)|rhyme|rime +double salt|1 +(noun)|salt|solid solution|primary solid solution +double saucepan|1 +(noun)|double boiler|saucepan +double sharp|1 +(noun)|sharp +double standard|1 +(noun)|ethic|ethical code +double standard of sexual behavior|1 +(noun)|double standard +double star|1 +(noun)|binary star|binary|star +double stitch|2 +(noun)|double crochet|crochet stitch +(verb)|double crochet|crochet +double stopping|1 +(noun)|stopping +double take|1 +(noun)|reaction|response +double talk|1 +(noun)|gibberish|gibber +double time|3 +(noun)|pace|gait +(noun)|wage|pay|earnings|remuneration|salary +(adv)|double quick +double tongue|1 +(verb)|triple-tongue|tongue +double up|3 +(verb)|double over|double|bend|flex +(verb)|share +(verb)|parlay|bet on|back|gage|stake|game|punt +double vision|1 +(noun)|diplopia|visual impairment|visual defect|vision defect|visual disorder +doubled|2 +(adj)|double|twofold|multiple +(adj)|folded +doubleheader|1 +(noun)|twin bill|double feature|game +doubler|1 +(noun)|electronic device +doubles|7 +(noun)|badminton +(noun)|tennis|lawn tennis +(noun)|double|two-base hit|two-bagger|two-baser|base hit|safety|bingle +(noun)|double|stunt man|stunt woman|stand-in|substitute|relief|reliever|backup|backup man|fill-in +(noun)|double|image|look-alike|person|individual|someone|somebody|mortal|human|soul +(noun)|double|multiple +(noun)|doubling|double|raise +doublespeak|1 +(noun)|evasion|equivocation +doublet|1 +(noun)|jacket +doublethink|1 +(noun)|believing +doubleton|1 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad +doubletree|1 +(noun)|crossbar +doubling|2 +(noun)|multiplication +(noun)|double|raise +doubloon|1 +(noun)|coin +doubly|2 +(adv)|double|twice +(adv)|in two ways +doubly transitive verb|1 +(noun)|doubly transitive verb form|transitive verb|transitive verb form +doubly transitive verb form|1 +(noun)|doubly transitive verb|transitive verb|transitive verb form +doubt|4 +(noun)|uncertainty|incertitude|dubiety|doubtfulness|dubiousness|cognitive state|state of mind +(noun)|dubiousness|doubtfulness|question|uncertainty|uncertainness +(verb)|disbelieve|discredit +(verb)|distrust|mistrust|suspect +doubter|2 +(noun)|skeptic|sceptic|intellectual|intellect +(noun)|agnostic|nonreligious person +doubtful|3 +(adj)|dubious|dubitable|in question|questionable +(adj)|dubious|uncertain |incertain +(adj)|tentative|unsettled +doubtfully|1 +(adv)|dubiously +doubtfulness|2 +(noun)|doubt|uncertainty|incertitude|dubiety|dubiousness|cognitive state|state of mind +(noun)|doubt|dubiousness|question|uncertainty|uncertainness +doubting|1 +(adj)|questioning|skeptical|sceptical|distrustful +doubting thomas|2 +(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle|saint +(noun)|doubting Thomas|skeptic|sceptic|doubter +doubtless|1 +(adv)|undoubtedly|beyond question|without doubt|beyond any doubt +douche|3 +(noun)|douche bag|syringe +(noun)|irrigation +(verb)|cleanse|clean +douche bag|1 +(noun)|douche|syringe +dough|2 +(noun)|concoction|mixture|intermixture +(noun)|boodle|bread|cabbage|clams|dinero|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +doughboy|2 +(noun)|infantryman|marcher|foot soldier|footslogger +(noun)|friedcake +doughnut|2 +(noun)|ring|halo|annulus|anulus|anchor ring|toroid +(noun)|donut|sinker|friedcake +doughnut-shaped|1 +(adj)|annular|annulate|annulated|circinate|circular|ringed|ring-shaped|rounded +doughty|1 +(adj)|fearless|hardy|manly |manful|manlike +doughy|1 +(adj)|soggy|heavy +douglas|1 +(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|The Little Giant|politician|politico|pol|political leader +douglas elton fairbanks|1 +(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor|histrion|player|thespian|role player +douglas fairbanks|1 +(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor|histrion|player|thespian|role player +douglas fairbanks jr.|1 +(noun)|Fairbanks|Douglas Fairbanks Jr.|actor|histrion|player|thespian|role player +douglas fir|2 +(noun)|fir +(noun)|conifer|coniferous tree +douglas hemlock|1 +(noun)|green douglas fir|douglas spruce|douglas pine|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +douglas macarthur|1 +(noun)|MacArthur|Douglas MacArthur|general|full general +douglas moore|1 +(noun)|Moore|Douglas Moore|composer +douglas pine|1 +(noun)|green douglas fir|douglas spruce|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +douglas spruce|1 +(noun)|green douglas fir|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +douglas squirrel|1 +(noun)|chickeree|Douglas squirrel|Tamiasciurus douglasi|tree squirrel +douglass|1 +(noun)|Douglass|Frederick Douglass|abolitionist|emancipationist +dour|3 +(adj)|bulldog|dogged|pertinacious|tenacious|unyielding|stubborn +(adj)|forbidding|grim|unpleasant +(adj)|dark|glowering|glum|moody|morose|saturnine|sour|sullen|ill-natured +doura|1 +(noun)|durra|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum +dourah|1 +(noun)|durra|doura|Egyptian corn|Indian millet|Guinea corn|grain sorghum +dourly|1 +(adv)|sullenly|glumly +douroucouli|1 +(noun)|Aotus trivirgatus|New World monkey|platyrrhine +douse|7 +(verb)|put out|snuff out|blow out|extinguish|quench +(verb)|dowse|wet +(verb)|dip|duck|dunk|dip|souse|plunge +(verb)|dunk|dip|souse|plunge|immerse|plunge +(verb)|roll up|furl +(verb)|dowse|slacken|remit +(verb)|drench|dowse|soak|sop|souse|wet +dousing|1 +(noun)|submersion|immersion|ducking|wetting +dove|5 +(noun)|pigeon +(noun)|peacenik|pacifist|pacificist|disarmer +(noun)|Columba|Dove|constellation +(noun)|squab|poultry +(noun)|emblem|allegory +dove's foot geranium|1 +(noun)|Geranium molle|cranesbill|crane's bill +dovecote|1 +(noun)|columbary|birdhouse +dovekie|1 +(noun)|little auk|Plautus alle|auk +dover|1 +(noun)|Dover|capital of Delaware|state capital +dover's powder|1 +(noun)|Dover's powder|powder +dovetail|2 +(noun)|dovetail joint|mortise joint|mortise-and-tenon joint +(verb)|fit +dovetail joint|1 +(noun)|dovetail|mortise joint|mortise-and-tenon joint +dovetail plane|1 +(noun)|plane|carpenter's plane|woodworking plane +dovish|1 +(adj)|pacifist|pacifistic|peaceful +dovishness|1 +(noun)|political orientation|ideology|political theory +dovyalis|1 +(noun)|Dovyalis|genus Dovyalis|dilleniid dicot genus +dovyalis caffra|1 +(noun)|kei apple|kei apple bush|Dovyalis caffra|shrub|bush +dovyalis hebecarpa|1 +(noun)|ketembilla|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree +dow-jones industrial average|1 +(noun)|Dow Jones|Dow-Jones Industrial Average|stock index|stock market index +dow jones|1 +(noun)|Dow Jones|Dow-Jones Industrial Average|stock index|stock market index +dowager|1 +(noun)|widow|widow woman +dowdily|1 +(adv)|frumpily|frumpishly +dowdiness|1 +(noun)|drabness|homeliness|inelegance +dowding|1 +(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general|full general|marshal|marshall +dowdy|4 +(adj)|styleless |unstylish +(adj)|frumpy|frumpish|unfashionable |unstylish +(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general|full general|marshal|marshall +(noun)|pandowdy|pastry +dowel|1 +(noun)|dowel pin|joggle|fastener|fastening|holdfast|fixing +dowel pin|1 +(noun)|dowel|joggle|fastener|fastening|holdfast|fixing +doweling|1 +(noun)|fastening|attachment +dower|3 +(noun)|dowry|dowery|gift +(noun)|life estate|estate for life +(verb)|endow|give|gift|present +dowered|1 +(adj)|endowed +dowerless|1 +(adj)|unendowed +dowery|1 +(noun)|dowry|dower|gift +dowitcher|1 +(noun)|snipe +dowland|1 +(noun)|Dowland|John Dowland|lutist|lutanist|lutenist|composer +down|23 +(adj)|down |behind|trailing|downbound|downcast|downfield|downward|fallen|set|thrown|descending|low +(adj)|falling +(adj)|down pat|mastered|perfect +(adj)|downward|descending +(adj)|out |retired +(adj)|depressed|low +(adj)|lowered +(adj)|cut|cut down|felled |downed +(adj)|inoperative +(adj)|blue|depressed|dispirited|downcast|downhearted|down in the mouth|low|low-spirited|dejected +(adj)|fractional +(noun)|down feather|feather|plume|plumage +(noun)|turn|play +(noun)|Down|John L. H. Down|doctor|doc|physician|MD|Dr.|medico +(noun)|highland|upland +(noun)|pile|hair +(verb)|toss off|pop|bolt down|belt down|pour down|drink down|kill|drink|imbibe +(verb)|devour|consume|go through|eat +(verb)|get the better of|overcome|defeat +(verb)|shoot down|land +(verb)|knock down|cut down|push down|pull down|strike +(verb)|polish|refine|fine-tune|better|improve|amend|ameliorate|meliorate +(adv)|downwards|downward|downwardly +down's syndrome|1 +(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +down-and-out|2 +(adj)|unsuccessful +(noun)|poor person|have-not +down-bow|1 +(noun)|bow +down-to-earth|1 +(adj)|earthy|realistic +down easter|1 +(noun)|Mainer|Down Easter|American +down feather|1 +(noun)|down|feather|plume|plumage +down in the mouth|1 +(adj)|blue|depressed|dispirited|down|downcast|downhearted|low|low-spirited|dejected +down pat|1 +(adj)|down|mastered|perfect +down payment|1 +(noun)|deposit|payment +down quark|1 +(noun)|quark +down syndrome|1 +(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +down the stairs|1 +(adv)|downstairs|on a lower floor|below +down town|2 +(noun)|civic center|municipal center|hub +(noun)|business district|downtown|city district +downbeat|1 +(noun)|rhythm|beat|musical rhythm +downbound|1 +(adj)|down +downcast|3 +(adj)|down +(adj)|blue|depressed|dispirited|down|downhearted|down in the mouth|low|low-spirited|dejected +(noun)|shaft +downdraft|1 +(noun)|draft|draught +downed|1 +(adj)|felled |cut|cut down|down|hewn +downer|1 +(noun)|sedative|sedative drug|depressant|medicine|medication|medicament|medicinal drug|drug of abuse|street drug +downfall|3 +(noun)|ruin|ruination|failure +(noun)|precipitation|weather|weather condition|atmospheric condition +(noun)|fall|weakening +downfield|1 +(adj)|down +downgrade|2 +(noun)|grade +(verb)|rate|rank|range|order|grade|place +downhearted|1 +(adj)|blue|depressed|dispirited|down|downcast|down in the mouth|low|low-spirited|dejected +downheartedness|1 +(noun)|low-spiritedness|dispiritedness|sadness|unhappiness +downhill|3 +(adj)|declivitous|downward-sloping|descending +(noun)|descent|declivity|fall|decline|declination|declension|downslope +(noun)|ski race|skiing race +downiness|1 +(noun)|featheriness|fluffiness|softness +downing|1 +(noun)|Downing|Andrew Jackson Downing|landscape architect|landscape gardener|landscaper|landscapist +downing street|2 +(noun)|Downing Street|street +(noun)|Downing Street|government|authorities|regime +downlike|1 +(adj)|downy|flossy|fluffy|soft +download|1 +(verb)|transfer +downmarket|1 +(adj)|downmarket |downscale +downplay|2 +(verb)|understate|minimize|minimise|inform +(verb)|background|play down|stress|emphasize|emphasise|punctuate|accent|accentuate +downpour|1 +(noun)|cloudburst|deluge|waterspout|torrent|pelter|soaker|rain|rainfall +downright|2 +(adj)|honest |honorable +(adj)|absolute|out-and-out|rank|right-down|sheer|complete +downrightness|1 +(noun)|straightforwardness|directness|straightness +downriver|1 +(adv)|downstream +downscale|1 +(adj)|downmarket +downside|1 +(noun)|side +downsizing|1 +(noun)|retrenchment|curtailment|economy|saving +downslope|1 +(noun)|descent|declivity|fall|decline|declination|declension|slope|incline|side +downspin|1 +(noun)|downturn|downswing +downstage|1 +(adj)|downstage +downstair|1 +(adj)|downstairs |ground-floor +downstairs|2 +(adj)|downstairs |downstair|ground-floor +(adv)|down the stairs|on a lower floor|below +downstream|2 +(adj)|downstream +(adv)|downriver +downstroke|1 +(noun)|stroke +downswing|2 +(noun)|golf stroke|golf shot|swing +(noun)|downturn|worsening +downtick|1 +(noun)|transaction|dealing|dealings +downtime|1 +(noun)|time period|period of time|period +downtown|2 +(adj)|downtown +(noun)|business district|city district +downturn|1 +(noun)|downswing|worsening +downward|3 +(adj)|down +(adj)|down|descending +(adv)|down|downwards|downwardly +downward-sloping|1 +(adj)|declivitous|downhill|descending +downwardly|1 +(adv)|down|downwards|downward +downwards|1 +(adv)|down|downward|downwardly +downwind|3 +(adj)|lee|leeward +(adv)|with the wind +(adv)|windward +downy|2 +(adj)|downlike|flossy|fluffy|soft +(adj)|pubescent|puberulent|sericeous|hairy |hirsute +downy ash|1 +(noun)|red ash|Fraxinus pennsylvanica|ash|ash tree +downy birch|1 +(noun)|white birch|Betula pubescens|birch|birch tree +downy brome|1 +(noun)|downy bromegrass|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome|bromegrass +downy bromegrass|1 +(noun)|downy brome|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome|bromegrass +downy cheat|1 +(noun)|downy brome|downy bromegrass|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome|bromegrass +downy chess|1 +(noun)|downy brome|downy bromegrass|downy cheat|cheatgrass|drooping brome|Bromus tectorum|brome|bromegrass +downy ground cherry|1 +(noun)|strawberry tomato|Physalis pubescens|ground cherry|husk tomato +downy haw|1 +(noun)|red haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn|haw +downy manzanita|1 +(noun)|woolly manzanita|Arctostaphylos tomentosa|manzanita +downy mildew|1 +(noun)|false mildew|mildew +downy poplar|1 +(noun)|swamp cottonwood|black cottonwood|swamp poplar|Populus heterophylla|cottonwood +downy wood mint|1 +(noun)|Blephilia celiata|wood mint +downy woodpecker|1 +(noun)|woodpecker|peckerwood|pecker +downy yellow violet|1 +(noun)|Viola pubescens|violet +dowry|1 +(noun)|dowery|dower|gift +dowse|5 +(noun)|dowsing|rhabdomancy|divination|foretelling|soothsaying|fortune telling +(verb)|douse|wet +(verb)|divine +(verb)|douse|slacken|remit +(verb)|drench|douse|soak|sop|souse|wet +dowser|2 +(noun)|water witch|rhabdomancer|diviner +(noun)|divining rod|dowsing rod|waterfinder|water finder|stick +dowsing|1 +(noun)|dowse|rhabdomancy|divination|foretelling|soothsaying|fortune telling +dowsing rod|1 +(noun)|divining rod|dowser|waterfinder|water finder|stick +doxastic logic|1 +(noun)|modal logic +doxepin|1 +(noun)|doxepin hydrochloride|Adapin|Sinequan|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +doxepin hydrochloride|1 +(noun)|doxepin|Adapin|Sinequan|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +doxology|1 +(noun)|hymn|anthem +doxorubicin|1 +(noun)|antibiotic|antibiotic drug +doxy|1 +(noun)|concubine|courtesan|odalisque|paramour|mistress|kept woman|fancy woman +doxycycline|1 +(noun)|Vibramycin|antibiotic|antibiotic drug +doyen|1 +(noun)|dean|elder|senior +doyenne|1 +(noun)|elder|senior +doyley|1 +(noun)|doily|doyly|linen +doyly|1 +(noun)|doily|doyley|linen +doze|2 +(noun)|drowse|sleeping +(verb)|snooze|drowse|nap|catnap|catch a wink|doze off +doze off|1 +(verb)|fall asleep|dope off|flake out|drift off|nod off|drop off|drowse off +dozen|2 +(adj)|twelve|12|xii|cardinal +(noun)|twelve|12|XII|large integer +dozens|2 +(noun)|tons|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|twelve|12|XII|dozen|large integer +dozer|1 +(noun)|bulldozer|tractor +dozy|1 +(adj)|drowsy|drowsing|asleep +dp|1 +(noun)|displaced person|DP|stateless person|refugee +dph|1 +(noun)|Doctor of Public Health|DPH|doctor's degree|doctorate +dphil|1 +(noun)|DPhil|Doctor of Philosophy +dprk|1 +(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country|Asian nation +dpt vaccine|1 +(noun)|DPT vaccine|vaccine|vaccinum +dr.|2 +(noun)|doctor|Dr.|scholar|scholarly person|student +(noun)|doctor|doc|physician|MD|Dr.|medico|medical practitioner|medical man +dr. j|1 +(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward +dr. johnson|1 +(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer|author|lexicographer|lexicologist +dr. seuss|1 +(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer|author +drab|3 +(adj)|dreary|dull +(adj)|sober|somber|sombre|colorless |colourless +(adj)|dingy|dismal|drear|dreary|gloomy|sorry|cheerless |uncheerful +draba|1 +(noun)|herb|herbaceous plant +draba verna|1 +(noun)|whitlow grass|shadflower|shad-flower|Draba verna|draba +drabness|1 +(noun)|dowdiness|homeliness|inelegance +dracaena|1 +(noun)|agave|century plant|American aloe|genus Dracaena +dracaena draco|1 +(noun)|dragon tree|Dracaena draco|dracaena +dracaenaceae|1 +(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family +dracenaceae|1 +(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family +drachm|3 +(noun)|dram|drachma|apothecaries' unit|apothecaries' weight +(noun)|fluidram|fluid dram|fluid drachm|British capacity unit|Imperial capacity unit +(noun)|fluidram|fluid dram|fluid drachm|United States liquid unit +drachma|2 +(noun)|dram|drachm|apothecaries' unit|apothecaries' weight +(noun)|Greek drachma|Greek monetary unit +draco|3 +(noun)|Draco|lawgiver|lawmaker|Athenian +(noun)|Draco|Dragon|constellation +(noun)|Draco|genus Draco|reptile genus +dracocephalum|1 +(noun)|Dracocephalum|genus Dracocephalum|asterid dicot genus +dracocephalum parviflorum|1 +(noun)|dragonhead|dragon's head|Dracocephalum parviflorum|herb|herbaceous plant +draconian|1 +(adj)|Draconian|lawgiver|lawmaker|Athenian +dracontium|1 +(noun)|arum|aroid +dracula|2 +(noun)|Dracula|genus Dracula|monocot genus|liliopsid genus +(noun)|Dracula|fictional character|fictitious character|character +dracunculiasis|1 +(noun)|Guinea worm disease|Guinea worm|infestation +dracunculidae|1 +(noun)|Dracunculidae|family Dracunculidae|worm family +dracunculus|2 +(noun)|Dracunculus|genus Dracunculus|monocot genus|liliopsid genus +(noun)|Dracunculus|genus Dracunculus|worm genus +dracunculus medinensis|1 +(noun)|Guinea worm|Dracunculus medinensis|nematode|nematode worm|roundworm +dracunculus vulgaris|1 +(noun)|dragon arum|green dragon|Dracunculus vulgaris|arum|aroid +draft|14 +(noun)|bill of exchange|order of payment|negotiable instrument +(noun)|draught|wind|air current|current of air +(noun)|rough drawing|sketch|study +(noun)|draught|potation|tipple|drink +(noun)|draft copy|text|textual matter +(noun)|draught|depth +(noun)|regulator +(noun)|draught|dose +(noun)|conscription|muster|selective service|mobilization|mobilisation|militarization|militarisation +(noun)|gulp|draught|swig|swallow|drink|deglutition +(noun)|draught|drawing|pull|pulling +(verb)|outline|write|compose|pen|indite +(verb)|enlist|muster in|enroll|inscribe|enter|enrol|recruit +(verb)|blueprint|draught|design|plan +draft animal|1 +(noun)|work animal +draft beer|1 +(noun)|draught beer|beer +draft board|1 +(noun)|board +draft copy|1 +(noun)|draft|text|textual matter +draft dodger|1 +(noun)|draft evader|deserter|defector +draft evader|1 +(noun)|draft dodger|deserter|defector +draft horse|1 +(noun)|draught horse|dray horse|workhorse +draftee|1 +(noun)|conscript|inductee|serviceman|military man|man|military personnel +drafter|1 +(noun)|writer|author +drafting|3 +(noun)|writing|authorship|composition|penning +(noun)|mechanical drawing|trade|craft +(noun)|drawing|draftsmanship|art|artistic creation|artistic production +drafting board|1 +(noun)|drawing board|board +drafting instrument|1 +(noun)|instrument +drafting table|1 +(noun)|drawing table|worktable|work table +draftsman|2 +(noun)|draughtsman|draftsperson|skilled worker|trained worker +(noun)|drawer|artist|creative person +draftsmanship|1 +(noun)|drawing|drafting|art|artistic creation|artistic production +draftsperson|1 +(noun)|draftsman|draughtsman|skilled worker|trained worker +drafty|1 +(adj)|draughty|leaky +drag|17 +(noun)|retarding force|resistance +(noun)|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|tediousness|tedium|tiresomeness +(noun)|clothing|article of clothing|vesture|wear +(noun)|puff|pull|inhalation|inspiration|aspiration|breathing in +(noun)|pull|pulling +(verb)|pull|draw|force|drag in +(verb)|haul|hale|cart|pull|draw|force +(verb)|embroil|tangle|sweep|sweep up|drag in|involve +(verb)|travel|go|move|locomote +(verb)|trail|get behind|hang back|drop behind|lag|dawdle|fall back|fall behind +(verb)|puff|draw|inhale|inspire|breathe in +(verb)|move|displace +(verb)|scuff|shuffle|scuffle|shamble +(verb)|dredge|search|seek|look for +(verb)|persuade +(verb)|drag on|drag out|proceed|go +drag a bunt|1 +(verb)|bunt|hit +drag coefficient|1 +(noun)|coefficient of drag|coefficient +drag down|1 +(verb)|bear down|bear down on|press down on|weigh down|press +drag in|1 +(verb)|embroil|tangle|sweep|sweep up|drag|involve +drag on|2 +(verb)|drag out|last|endure +(verb)|drag|drag out|proceed|go +drag one's feet|1 +(verb)|procrastinate|stall|drag one's heels|shillyshally|dilly-dally|dillydally|delay +drag one's heels|1 +(verb)|procrastinate|stall|drag one's feet|shillyshally|dilly-dally|dillydally|delay +drag out|2 +(verb)|drag on|last|endure +(verb)|drag|drag on|proceed|go +drag through the mud|1 +(verb)|badmouth|malign|traduce|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +drag up|1 +(verb)|dredge up|mention|advert|bring up|cite|name|refer +dragee|3 +(noun)|candy +(noun)|candy +(noun)|pill|lozenge|tablet|tab +dragger|2 +(noun)|puller|tugger|worker +(noun)|trawler|fishing boat|fishing smack|fishing vessel +dragging|2 +(adj)|effortful +(adj)|slow +draggled|1 +(adj)|bedraggled|dirty |soiled|unclean +dragnet|2 +(noun)|system|scheme +(noun)|trawl|trawl net|fishnet|fishing net +dragoman|1 +(noun)|interpreter|translator +dragon|4 +(noun)|firedrake|mythical monster|mythical creature +(noun)|tartar|unpleasant woman|disagreeable woman +(noun)|Draco|Dragon|constellation +(noun)|flying dragon|flying lizard|agamid|agamid lizard +dragon's blood|1 +(noun)|gum +dragon's eye|1 +(noun)|longanberry|edible fruit +dragon's head|1 +(noun)|dragonhead|Dracocephalum parviflorum|herb|herbaceous plant +dragon's mouth|1 +(noun)|bog rose|wild pink|Arethusa bulbosa|arethusa +dragon arum|1 +(noun)|green dragon|Dracunculus vulgaris|arum|aroid +dragon lizard|1 +(noun)|Komodo dragon|Komodo lizard|giant lizard|Varanus komodoensis|monitor|monitor lizard|varan +dragon tree|1 +(noun)|Dracaena draco|dracaena +dragonet|1 +(noun)|spiny-finned fish|acanthopterygian +dragonfly|1 +(noun)|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate +dragonhead|1 +(noun)|dragon's head|Dracocephalum parviflorum|herb|herbaceous plant +dragoon|3 +(noun)|cavalryman|trooper +(verb)|sandbag|railroad|coerce|hale|squeeze|pressure|force +(verb)|subjugate|subject +dragunov|1 +(noun)|Dragunov|sniper rifle|precision rifle +drain|8 +(noun)|drainage|emptying|voidance|evacuation +(noun)|tube|tubing +(noun)|drainpipe|waste pipe|pipe|pipage|piping +(noun)|depletion +(verb)|run out|run|flow|feed|course +(verb)|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|empty +(verb)|enfeeble|debilitate|weaken +drain basket|1 +(noun)|filter +drain the cup|1 +(verb)|drink up|drink|imbibe +drainage|1 +(noun)|drain|emptying|voidance|evacuation +drainage area|1 +(noun)|catchment area|catchment basin|drainage basin|geographical area|geographic area|geographical region|geographic region +drainage basin|1 +(noun)|catchment area|catchment basin|drainage area|geographical area|geographic area|geographical region|geographic region +drainage ditch|1 +(noun)|ditch +drainage system|1 +(noun)|system +drainboard|1 +(noun)|draining board|board +drained|3 +(adj)|drained |empty|exhausted +(adj)|knackered|tired +(adj)|dead|uncharged +draining|1 +(adj)|exhausting|debilitating +draining board|1 +(noun)|drainboard|board +drainpipe|1 +(noun)|drain|waste pipe|pipe|pipage|piping +drainplug|1 +(noun)|plug|stopper|stopple +drake|2 +(noun)|Drake|Francis Drake|Sir Francis Drake|navigator|admiral|full admiral +(noun)|duck +dram|3 +(noun)|drachm|drachma|apothecaries' unit|apothecaries' weight +(noun)|avoirdupois unit +(noun)|Armenian monetary unit +drama|4 +(noun)|play|dramatic play|dramatic composition|dramatic work +(noun)|dramatic event|episode +(noun)|writing style|literary genre|genre +(noun)|emotionality|emotionalism +drama critic|1 +(noun)|theater critic|critic +dramamine|1 +(noun)|dimenhydrinate|Dramamine|antihistamine|antiemetic|antiemetic drug +dramatic|4 +(adj)|dramatic |melodramatic|spectacular|hammy +(adj)|spectacular|striking|impressive +(adj)|dramatic composition|dramatic work +(adj)|dramatic +dramatic art|1 +(noun)|dramaturgy|dramatics|theater|theatre|communication|communicating +dramatic composition|1 +(noun)|dramatic work|writing|written material|piece of writing +dramatic event|1 +(noun)|drama|episode +dramatic irony|1 +(noun)|irony +dramatic performance|1 +(noun)|dramatic production|performance +dramatic play|1 +(noun)|play|drama|dramatic composition|dramatic work +dramatic production|1 +(noun)|dramatic performance|performance +dramatic work|1 +(noun)|dramatic composition|writing|written material|piece of writing +dramatics|2 +(noun)|extracurricular activity +(noun)|dramaturgy|dramatic art|theater|theatre|communication|communicating +dramatis personae|1 +(noun)|cast|cast of characters|gathering|assemblage +dramatisation|2 +(noun)|dramatization|writing|authorship|composition|penning +(noun)|dramatization|representation +dramatise|3 +(verb)|dramatize|adopt|write|compose|pen|indite +(verb)|dramatize|represent +(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatize|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +dramatist|1 +(noun)|playwright|writer|author +dramatization|2 +(noun)|dramatisation|writing|authorship|composition|penning +(noun)|dramatisation|representation +dramatize|3 +(verb)|dramatise|adopt|write|compose|pen|indite +(verb)|dramatise|represent +(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +dramaturgic|1 +(adj)|dramaturgical|communication|communicating +dramaturgical|1 +(adj)|dramaturgic|communication|communicating +dramaturgy|1 +(noun)|dramatic art|dramatics|theater|theatre|communication|communicating +drambuie|1 +(noun)|Drambuie|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|liqueur|cordial +drape|6 +(noun)|curtain|drapery|mantle|pall|blind|screen|furnishings +(noun)|manner|mode|style|way|fashion +(noun)|covering +(verb)|arrange|set up +(verb)|arrange|set up +(verb)|cover +draped|2 +(adj)|cloaked|clothed|mantled|wrapped|covered +(adj)|curtained +draper|1 +(noun)|trader|bargainer|dealer|monger +drapery|2 +(noun)|curtain|drape|mantle|pall|blind|screen|furnishings +(noun)|fabric|cloth|material|textile +drastic|1 +(adj)|forceful +draught|7 +(noun)|draft|potation|tipple|drink +(noun)|gulp|draft|swig|swallow|drink|deglutition +(noun)|draft|wind|air current|current of air +(noun)|draft|depth +(noun)|draft|dose +(noun)|draft|drawing|pull|pulling +(verb)|blueprint|draft|design|plan +draught beer|1 +(noun)|draft beer|beer +draught horse|1 +(noun)|draft horse|dray horse|workhorse +draughts|7 +(noun)|checkers|board game +(noun)|draft|draught|potation|tipple|drink +(noun)|gulp|draft|draught|swig|swallow|drink|deglutition +(noun)|draft|draught|wind|air current|current of air +(noun)|draft|draught|depth +(noun)|draft|draught|dose +(noun)|draft|draught|drawing|pull|pulling +draughtsman|1 +(noun)|draftsman|draftsperson|skilled worker|trained worker +draughty|1 +(adj)|drafty|leaky +dravidian|2 +(noun)|Dravidian|Indian +(noun)|Dravidian|Dravidic|Dravidian language|natural language|tongue +dravidian language|1 +(noun)|Dravidian|Dravidic|Dravidian language|natural language|tongue +dravidic|1 +(noun)|Dravidian|Dravidic|Dravidian language|natural language|tongue +draw|44 +(noun)|gully +(noun)|drawing card|attraction|attractor|attracter|entertainer +(noun)|standoff|tie|finish +(noun)|lot|object|physical object +(noun)|playing card +(noun)|hook|hooking|golf stroke|golf shot|swing +(noun)|draw play|run|running|running play|running game +(noun)|draw poker|poker|poker game +(noun)|haul|haulage|pull|pulling +(verb)|pull|force|move|displace +(verb)|reap|derive|gain +(verb)|trace|line|describe|delineate|mark +(verb)|make|create by mental act|create mentally +(verb)|pull|pull out|get out|take out|remove|take|take away|withdraw +(verb)|represent|interpret +(verb)|take out|remove|take|take away|withdraw|draw out +(verb)|describe|depict|set forth|expound|exposit +(verb)|choose|take|select|pick out +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|puff|drag|inhale|inspire|breathe in +(verb)|travel|go|move|locomote +(verb)|withdraw|take out|draw off|remove|take|take away|withdraw +(verb)|cast|move|go +(verb)|get|effect|effectuate|bring about|set up +(verb)|change|alter|modify +(verb)|remove|take|take away|withdraw +(verb)|write|compose|pen|indite|draw up +(verb)|create +(verb)|close|shut +(verb)|be +(verb)|necessitate|ask|postulate|need|require|take|involve|call for|demand +(verb)|quarter|draw and quarter|kill +(verb)|absorb|suck|imbibe|soak up|sop up|suck up|take in|take up|draw in|draw in|draw in +(verb)|attract|pull|pull in|draw in|pull|force +(verb)|string|thread|arrange|set up +(verb)|pull back|stretch +(verb)|guide|run|pass +(verb)|tie|equal|match|equalize|equalise|equate +(verb)|change shape|change form|deform +(verb)|thin +(verb)|steep|infuse +(verb)|disembowel|eviscerate|remove|take|take away|withdraw +(verb)|shape|form +(verb)|localize|localise +draw a bead on|2 +(verb)|aim|take|train|take aim|direct +(verb)|aspire|aim|shoot for|plan|be after +draw a blank|1 +(verb)|forget|block|blank out +draw a line|1 +(verb)|draw the line|restrict|restrain|trammel|limit|bound|confine|throttle +draw and quarter|1 +(verb)|draw|quarter|kill +draw away|2 +(verb)|lead|head +(verb)|draw off|pull off|remove|take|take away|withdraw +draw back|2 +(verb)|withdraw|retreat|pull away|recede|pull back|retire|move back|travel|go|move|locomote +(verb)|retract|pull back|pull +draw close|3 +(verb)|cuddle|snuggle|nestle|nest|nuzzle|cling to|hold close|hold tight|clutch +(verb)|approach|near|come on|go up|draw near|come near|come|come up +(verb)|pull +draw in|7 +(verb)|aspirate|suck in|remove|take|take away|withdraw +(verb)|retract|attract|pull|pull in|draw +(verb)|attract|pull|pull in|draw|pull|draw|force +(verb)|curl up|curl|bend|flex +(verb)|close in|advance|progress|pass on|move on|march on|go on +(verb)|pull in|get in|move in|arrive|get|come +(verb)|suck in|hollow|hollow out|core out +draw near|1 +(verb)|approach|near|come on|go up|draw close|come near|come|come up +draw off|2 +(verb)|draw away|pull off|remove|take|take away|withdraw +(verb)|withdraw|draw|take out|remove|take|take away|withdraw +draw out|5 +(verb)|reach out +(verb)|prolong|protract|extend|lengthen +(verb)|encourage +(verb)|educe|evoke|elicit|extract|interpret|construe|see +(verb)|extract|pull out|pull|pull up|take out|remove|take|take away|withdraw +draw play|1 +(noun)|draw|run|running|running play|running game +draw poker|1 +(noun)|draw|poker|poker game +draw rein|1 +(verb)|harness|rein in|rein|control|command +draw the line|1 +(verb)|draw a line|restrict|restrain|trammel|limit|bound|confine|throttle +draw together|1 +(verb)|bond|bring together|connect|link|tie|link up +draw up|5 +(verb)|form|organize|organise +(verb)|pull up|straighten up|straighten +(verb)|pull up|stop +(verb)|frame|compose|plan +(verb)|pull up|haul up|stop|halt +drawback|1 +(noun)|disadvantage +drawbar|1 +(noun)|bar +drawbridge|1 +(noun)|lift bridge|bridge|span +drawee|1 +(noun)|payer|remunerator +drawer|3 +(noun)|container|storage space +(noun)|money handler|money dealer +(noun)|draftsman|artist|creative person +drawers|5 +(noun)|underdrawers|shorts|boxers|boxershorts|underpants +(noun)|bloomers|pants|knickers|underpants +(noun)|drawer|container|storage space +(noun)|drawer|money handler|money dealer +(noun)|draftsman|drawer|artist|creative person +drawing|6 +(noun)|artwork|art|graphics|nontextual matter +(noun)|representation +(noun)|draftsmanship|drafting|art|artistic creation|artistic production +(noun)|lottery|game of chance|gambling game +(noun)|drawing off|drain +(noun)|draft|draught|pull|pulling +drawing-room car|1 +(noun)|parlor car|parlour car|palace car|chair car|passenger car|coach|carriage +drawing board|1 +(noun)|drafting board|board +drawing card|2 +(noun)|draw|attraction|attractor|attracter|entertainer +(noun)|loss leader|leader|feature +drawing chalk|1 +(noun)|chalk +drawing ink|1 +(noun)|India ink|ink +drawing lots|1 +(noun)|casting lots|sortition|decision|determination|conclusion +drawing off|1 +(noun)|drawing|drain +drawing paper|1 +(noun)|paper +drawing pin|1 +(noun)|thumbtack|pushpin|tack|paper fastener +drawing power|1 +(noun)|attraction|attractiveness +drawing room|2 +(noun)|withdrawing room|reception room +(noun)|compartment +drawing string|1 +(noun)|drawstring|string|tie +drawing table|1 +(noun)|drafting table|worktable|work table +drawknife|1 +(noun)|drawshave|knife +drawl|2 +(noun)|accent|speech pattern +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +drawler|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +drawn|5 +(adj)|careworn|haggard|raddled|worn|tired +(adj)|taut|tense +(adj)|delineated |represented|delineate +(adj)|closed +(adj)|move|displace +drawn-out|2 +(adj)|extended|lengthy|prolonged|protracted|long +(adj)|slow +drawn butter|1 +(noun)|clarified butter|butter +drawnwork|1 +(noun)|embroidery|fancywork +drawshave|1 +(noun)|drawknife|knife +drawstring|1 +(noun)|drawing string|string|tie +drawstring bag|1 +(noun)|bag +dray|1 +(noun)|camion|horse cart|horse-cart +dray horse|2 +(noun)|draft horse|draught horse|workhorse +(noun)|carthorse|cart horse|drayhorse|draft horse|draught horse +drayhorse|1 +(noun)|carthorse|cart horse|draft horse|draught horse|dray horse +dread|3 +(adj)|awful|dire|direful|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +(noun)|apprehension|apprehensiveness|fear|fearfulness|fright +(verb)|fear +dreaded|1 +(adj)|awful|dire|direful|dread|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +dreadful|3 +(adj)|awful|dire|direful|dread|dreaded|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming +(adj)|atrocious|abominable|awful|painful|terrible|unspeakable|bad +(adj)|unpleasant +dreadfully|2 +(adv)|awfully|horribly +(adv)|dismally +dreadfulness|1 +(noun)|awfulness|horridness|terribleness|unpleasantness +dreadlock|1 +(noun)|lock|curl|ringlet|whorl +dreadnaught|1 +(noun)|dreadnought|battleship|battlewagon +dreadnought|1 +(noun)|dreadnaught|battleship|battlewagon +dream|8 +(noun)|dreaming|imagination|imaging|imagery|mental imagery +(noun)|ambition|aspiration|desire +(noun)|dreaming|imagination|imaginativeness|vision +(noun)|pipe dream|fantasy|phantasy +(noun)|reverie|revery +(noun)|perfection|flawlessness|ne plus ultra +(verb)|daydream|woolgather|stargaze|imagine|conceive of|ideate|envisage|dream up +(verb)|perceive|comprehend +dream up|1 +(verb)|think up|think of|hatch|concoct|create by mental act|create mentally +dreamed|1 +(adj)|unreal +dreamer|3 +(noun)|sleeper|slumberer +(noun)|idealist|visionary +(noun)|escapist|wishful thinker|daydreamer|woolgatherer +dreamfully|1 +(adv)|dreamily|moonily +dreamily|1 +(adv)|moonily|dreamfully +dreaminess|1 +(noun)|languor|easiness|relaxation +dreaming|2 +(noun)|dream|imagination|imaginativeness|vision +(noun)|dream|imagination|imaging|imagery|mental imagery +dreamland|1 +(noun)|never-never land|dreamworld|imaginary place|mythical place +dreamless|1 +(adj)|untroubled +dreamlike|1 +(adj)|surreal|unreal +dreamworld|1 +(noun)|never-never land|dreamland|imaginary place|mythical place +dreamy|2 +(adj)|moony|woolgathering|inattentive +(adj)|lackadaisical|languid|languorous|lethargic |unergetic +drear|1 +(adj)|dingy|dismal|drab|dreary|gloomy|sorry|cheerless |uncheerful +drearily|1 +(adv)|dismally +dreariness|1 +(noun)|boringness|dullness|dulness +dreary|2 +(adj)|dingy|dismal|drab|drear|gloomy|sorry|cheerless |uncheerful +(adj)|drab|dull +dreck|1 +(noun)|schlock|shlock|merchandise|wares|product +dred scott|1 +(noun)|Scott|Dred Scott|slave +dredge|4 +(noun)|power shovel|excavator|digger|shovel +(verb)|coat|surface +(verb)|drag|search|seek|look for +(verb)|remove|take|take away|withdraw +dredge up|1 +(verb)|drag up|mention|advert|bring up|cite|name|refer +dredger|1 +(noun)|barge|flatboat|hoy|lighter +dredging bucket|1 +(noun)|bucket|pail +dreg|1 +(noun)|small indefinite quantity|small indefinite amount +dregs|2 +(noun)|grounds|settlings|sediment|deposit +(noun)|dreg|small indefinite quantity|small indefinite amount +dreiser|1 +(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer|author +dreissena|1 +(noun)|Dreissena|genus Dreissena|mollusk genus +dreissena polymorpha|1 +(noun)|zebra mussel|Dreissena polymorpha|freshwater mussel|freshwater clam +drench|4 +(verb)|swamp|flood +(verb)|provide|supply|ply|cater +(verb)|imbrue|impregnate|saturate +(verb)|douse|dowse|soak|sop|souse|wet +drenched|2 +(adj)|saturated|soaked|soaking|sodden|sopping|soppy|wet +(adj)|drenched in|covered +drenched in|1 +(adj)|drenched|covered +drenching|1 +(noun)|soaking|souse|sousing|wetting +drepanididae|1 +(noun)|Drepanididae|family Drepanididae|bird family +drepanis|1 +(noun)|Drepanis|genus Drepanis|bird genus +drepanocytic anaemia|1 +(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|anemia|anaemia|monogenic disorder|monogenic disease +drepanocytic anemia|1 +(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +dresden|1 +(noun)|Dresden|city|metropolis|urban center +dress|21 +(adj)|full-dress|formal +(adj)|full-dress|formal +(noun)|frock|garment +(noun)|attire|garb|clothing|article of clothing|vesture|wear +(noun)|apparel|wearing apparel|clothes|clothing|article of clothing|vesture|wear +(verb)|get dressed|change|dress up|dress down +(verb)|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state|turn +(verb)|finish +(verb)|dress up|get dressed +(verb)|preen|primp|plume|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +(verb)|dress out|cook|fix|ready|make|prepare +(verb)|line up|position +(verb)|trim|garnish|decorate|adorn|grace|ornament|embellish|beautify +(verb)|decorate|arrange|set up +(verb)|put on|apply +(verb)|snip|clip|crop|trim|lop|prune|cut back|thin out +(verb)|pare|trim +(verb)|convert|change over +(verb)|treat|care for +(verb)|groom|curry|beautify|embellish|prettify +(verb)|arrange|set|do|coif|coiffe|coiffure|groom|neaten +dress blues|1 +(noun)|dress whites|dress uniform +dress circle|1 +(noun)|circle|seating|seats|seating room|seating area +dress code|1 +(noun)|code|codification +dress down|2 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +(verb)|underdress|dress|get dressed +dress hanger|1 +(noun)|coat hanger|clothes hanger|hanger +dress hat|1 +(noun)|high hat|opera hat|silk hat|stovepipe|top hat|topper|beaver|hat|chapeau|lid +dress out|1 +(verb)|dress|cook|fix|ready|make|prepare +dress rack|1 +(noun)|rack|stand +dress rehearsal|1 +(noun)|rehearsal|dry run +dress ship|1 +(verb)|decorate|adorn|grace|ornament|embellish|beautify +dress shirt|1 +(noun)|evening shirt|shirt +dress shop|1 +(noun)|boutique|shop|store +dress suit|1 +(noun)|full dress|tailcoat|tail coat|tails|white tie|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +dress uniform|1 +(noun)|military uniform +dress up|5 +(verb)|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed|dress +(verb)|window-dress|beautify|embellish|prettify +(verb)|caparison|bard|decorate|adorn|grace|ornament|embellish|beautify +(verb)|costume|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +(verb)|dress|dress|get dressed +dress whites|1 +(noun)|dress blues|dress uniform +dressage|1 +(noun)|equestrian sport +dressed|4 +(adj)|appareled|attired|garbed|garmented|habilimented|robed|clothed |clad +(adj)|treated +(adj)|polished|finished +(adj)|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed |clad +dressed-up|1 +(adj)|dressed|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed |clad +dressed ore|1 +(noun)|concentrate|ore +dressed to kill|1 +(adj)|dressed|dressed-up|dressed to the nines|dolled up|spruced up|spiffed up|togged up|clothed |clad +dressed to the nines|1 +(adj)|dressed|dressed-up|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed |clad +dresser|5 +(noun)|chest of drawers|chest|bureau|furniture|piece of furniture|article of furniture +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|actor's assistant|assistant|helper|help|supporter +(noun)|dressing table|vanity|toilet table|table +(noun)|cabinet +dressing|7 +(noun)|salad dressing|sauce +(noun)|stuffing|concoction|mixture|intermixture +(noun)|fertilization|fertilisation|fecundation|enrichment +(noun)|medical dressing|cloth covering +(noun)|conversion +(noun)|grooming|covering +(noun)|bandaging|binding|medical care|medical aid +dressing case|1 +(noun)|baggage|luggage +dressing down|1 +(noun)|castigation|earful|bawling out|chewing out|upbraiding|going-over|rebuke|reproof|reproval|reprehension|reprimand +dressing gown|1 +(noun)|robe-de-chambre|lounging robe|robe +dressing room|1 +(noun)|room +dressing sack|1 +(noun)|dressing sacque|jacket +dressing sacque|1 +(noun)|dressing sack|jacket +dressing station|1 +(noun)|aid station|first-aid station +dressing table|1 +(noun)|dresser|vanity|toilet table|table +dressmaker|1 +(noun)|modiste|needlewoman|seamstress|sempstress|garmentmaker|garment-worker|garment worker +dressmaker's model|1 +(noun)|model|poser +dressmaking|1 +(noun)|trade|craft +dressy|1 +(adj)|fancy +drew|1 +(noun)|Drew|John Drew|actor|histrion|player|thespian|role player +drey|1 +(noun)|nest +dreyfus|1 +(noun)|Dreyfus|Alfred Dreyfus|army officer +dribble|7 +(noun)|drip|trickle|flow|flowing +(noun)|drool|drivel|slobber|saliva|spit|spittle +(noun)|dribbling|propulsion|actuation +(verb)|trickle|filter|run|flow|feed|course +(verb)|drip|drop|pour +(verb)|carry|hit +(verb)|drivel|drool|slabber|slaver|slobber|salivate +dribbler|2 +(noun)|basketball player|basketeer|cager +(noun)|driveller|slobberer|drooler|person|individual|someone|somebody|mortal|human|soul +dribbling|1 +(noun)|dribble|propulsion|actuation +driblet|1 +(noun)|drop|small indefinite quantity|small indefinite amount +dried|2 +(adj)|dry +(adj)|dehydrated|desiccated|preserved +dried-out|1 +(adj)|desiccated|dry +dried-up|2 +(adj)|sere|sear|shriveled|shrivelled|withered|dry +(adj)|dry +dried apricot|1 +(noun)|dried fruit +dried fruit|1 +(noun)|edible fruit +dried milk|1 +(noun)|powdered milk|dry milk|milk powder|milk +drier|2 +(noun)|desiccant|drying agent|sicative|chemical agent +(noun)|dryer|appliance +drift|17 +(noun)|impetus|impulsion|force +(noun)|natural process|natural action|action|activity +(noun)|linguistic process +(noun)|substance|matter +(noun)|trend|movement|inclination|disposition|tendency +(noun)|purport|tenor|strain +(noun)|heading|gallery|passageway +(verb)|float|be adrift|blow|travel|go|move|locomote +(verb)|stray|err|travel|go|move|locomote +(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|vagabond|travel|go|move|locomote +(verb)|vary +(verb)|freewheel|exist|survive|live|subsist +(verb)|circulate +(verb)|float +(verb)|crop|graze|pasture +(verb)|change +(verb)|accumulate|cumulate|conglomerate|pile up|gather|amass +drift apart|1 +(verb)|drift away|estrange|alienate|alien|disaffect +drift away|1 +(verb)|drift apart|estrange|alienate|alien|disaffect +drift ice|1 +(noun)|ice +drift net|1 +(noun)|fishnet|fishing net +drift off|1 +(verb)|fall asleep|dope off|flake out|nod off|drop off|doze off|drowse off +driftage|1 +(noun)|deviation|divergence|departure|difference +drifter|1 +(noun)|vagrant|floater|vagabond|wanderer|roamer|rover|bird of passage|poor person|have-not +driftfish|2 +(noun)|butterfish|stromateid fish|stromateid +(noun)|butterfish|stromateid fish|stromateid +drifting|3 +(adj)|aimless|floating|vagabond|vagrant|unsettled +(adj)|adrift|afloat +(noun)|wandering|roving|vagabondage +driftwood|1 +(noun)|wood +drill|9 +(noun)|tool +(noun)|Mandrillus leucophaeus|baboon +(noun)|exercise|practice|practice session|recitation|training|preparation|grooming +(noun)|training|preparation|grooming +(verb)|bore|cut +(verb)|train|develop|prepare|educate +(verb)|exercise|practice|practise|learn|study|read|take +(verb)|teach|learn|instruct +(verb)|train|prepare +drill bit|1 +(noun)|drilling bit|bit +drill hole|1 +(noun)|bore|bore-hole|excavation|hole in the ground +drill in|1 +(verb)|hammer in|ram down|beat in|drill +drill instructor|1 +(noun)|drill master|noncommissioned officer|noncom +drill master|1 +(noun)|drill instructor|noncommissioned officer|noncom +drill rig|1 +(noun)|drilling rig|oilrig|oil rig|rig +drill rod|1 +(noun)|drill steel|carbon steel +drill site|1 +(noun)|workplace|work +drill steel|1 +(noun)|drill rod|carbon steel +drilled|1 +(adj)|trained +drilling|2 +(noun)|boring|creating by removal +(noun)|boring|oil production|production +drilling bit|1 +(noun)|drill bit|bit +drilling fluid|1 +(noun)|drilling mud|lubricant|lubricator|lubricating substance +drilling mud|1 +(noun)|drilling fluid|lubricant|lubricator|lubricating substance +drilling pipe|1 +(noun)|pipe|pipage|piping +drilling platform|1 +(noun)|offshore rig|drill rig|drilling rig|oilrig|oil rig +drilling rig|1 +(noun)|drill rig|oilrig|oil rig|rig +drimys|1 +(noun)|Drimys|genus Drimys|magnoliid dicot genus +drimys winteri|1 +(noun)|winter's bark|winter's bark tree|Drimys winteri|tree +drink|10 +(noun)|helping|portion|serving +(noun)|drinking|boozing|drunkenness|crapulence|intemperance|intemperateness +(noun)|beverage|drinkable|potable|food|nutrient|liquid +(noun)|body of water|water +(noun)|swallow|deglutition|consumption|ingestion|intake|uptake +(verb)|imbibe|consume|ingest|take in|take|have|drink up|drink down +(verb)|booze|fuddle|consume|ingest|take in|take|have +(verb)|toast|pledge|salute|wassail|honor|honour|reward +(verb)|drink in|steep|immerse|engulf|plunge|engross|absorb|soak up +(verb)|tope|use|habituate +drink down|1 +(verb)|toss off|pop|bolt down|belt down|pour down|down|kill|drink|imbibe +drink in|1 +(verb)|drink|steep|immerse|engulf|plunge|engross|absorb|soak up +drink up|1 +(verb)|drain the cup|drink|imbibe +drinkable|2 +(adj)|drinkable |potable +(noun)|beverage|drink|potable|food|nutrient|liquid +drinker|2 +(noun)|consumer +(noun)|imbiber|toper|juicer|consumer +drinking|2 +(noun)|imbibing|imbibition|consumption|ingestion|intake|uptake +(noun)|drink|boozing|drunkenness|crapulence|intemperance|intemperateness +drinking age|1 +(noun)|age|eld +drinking bout|1 +(noun)|drink|drinking|boozing|drunkenness|crapulence +drinking chocolate|1 +(noun)|cocoa|chocolate|hot chocolate|beverage|drink|drinkable|potable +drinking cup|1 +(noun)|Dixie cup|paper cup|cup +drinking fountain|1 +(noun)|water fountain|bubbler|fountain +drinking glass|1 +(noun)|glass|container +drinking song|1 +(noun)|song +drinking straw|1 +(noun)|straw|tube|tubing +drinking vessel|1 +(noun)|vessel +drinking water|1 +(noun)|beverage|drink|drinkable|potable|water +drip|5 +(noun)|trickle|dribble|flow|flowing +(noun)|dripping|sound +(noun)|drip mold|drip mould|projection +(verb)|descend|fall|go down|come down +(verb)|dribble|drop|pour +drip-dry|3 +(adj)|wash-and-wear|washable +(adj)|permanent-press|unironed |wrinkled +(verb)|dry|dry out +drip coffee|1 +(noun)|coffee|java +drip culture|1 +(noun)|hydroponics|aquiculture|tank farming +drip feed|1 +(noun)|administration|giving medication +drip loop|1 +(noun)|loop +drip mat|1 +(noun)|mat +drip mold|1 +(noun)|drip|drip mould|projection +drip mould|1 +(noun)|drip|drip mold|projection +drip pan|2 +(noun)|dripping pan|pan|cooking pan +(noun)|pan +drip pot|1 +(noun)|coffeepot +dripless|1 +(adj)|tight +drippage|1 +(noun)|dripping|flow|flowing +drippily|1 +(adv)|mawkishly +drippiness|2 +(noun)|physical property +(noun)|mawkishness|sentimentality|emotionality|emotionalism +dripping|5 +(adj)|wet +(adj)|reeking|watery|wet +(noun)|drippage|flow|flowing +(noun)|drip|sound +(adv)|soaking|sopping +dripping pan|1 +(noun)|drip pan|pan|cooking pan +drippings|3 +(noun)|edible fat +(noun)|dripping|drippage|flow|flowing +(noun)|drip|dripping|sound +drippy|3 +(adj)|drizzly|wet +(adj)|leaky +(adj)|bathetic|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|slushy|emotional +dripstone|2 +(noun)|calcium carbonate +(noun)|hoodmold|hoodmould|drip|drip mold|drip mould +drive|34 +(noun)|thrust|driving force|propulsion|actuation +(noun)|mechanism +(noun)|campaign|cause|crusade|movement|effort|venture +(noun)|driveway|private road|road|route +(noun)|trait +(noun)|driving|golf stroke|golf shot|swing +(noun)|transportation|transfer|transferral|conveyance +(noun)|ride|journey|journeying +(noun)|physiological state|physiological condition +(noun)|device +(noun)|parkway|road|route +(noun)|return +(verb)|operate|control +(verb)|motor|travel|go|move|locomote +(verb)|move|displace|drive out|drive out|drive off|drive away +(verb)|force|ram|thrust|drive in +(verb)|coerce|hale|squeeze|pressure|force +(verb)|repel|repulse|force back|push back|beat back|push|force +(verb)|make +(verb)|propel|impel +(verb)|throw +(verb)|tug|labor|labour|push|fight|struggle +(verb)|get|aim|mean|intend +(verb)|ride +(verb)|work|do work +(verb)|travel|go|move|locomote +(verb)|push|force +(verb)|take|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|hit +(verb)|hit +(verb)|excavate|dig|hollow +(verb)|power +(verb)|hunt|run|hunt down|track down +(verb)|hunt|run|hunt down|track down +drive-by killing|1 +(noun)|shooting +drive-by shooting|1 +(noun)|shooting +drive-in|1 +(noun)|facility|installation +drive around|2 +(verb)|chauffeur|drive +(verb)|act +drive away|1 +(verb)|chase away|drive out|turn back|dispel|drive off|run off|move|displace +drive back|1 +(verb)|repel|repulse|fight off|rebuff|fight|oppose|fight back|fight down|defend +drive home|2 +(verb)|deliver|give +(verb)|ram home|press home|stress|emphasize|emphasise|punctuate|accent|accentuate +drive in|2 +(verb)|arrive|get|come +(verb)|screw|revolve|go around|rotate +drive line|1 +(noun)|drive line system|mechanism +drive line system|1 +(noun)|drive line|mechanism +drive off|1 +(verb)|chase away|drive out|turn back|drive away|dispel|run off|move|displace +drive out|3 +(verb)|chase away|turn back|drive away|dispel|drive off|run off|move|displace +(verb)|rout out|force out|rouse|move|displace +(verb)|expectorate|clear out|remove|take|take away|withdraw +drive up|1 +(verb)|approach|near|come on|go up|draw near|draw close|come near +drivel|3 +(noun)|garbage|message|content|subject matter|substance +(noun)|drool|dribble|slobber|saliva|spit|spittle +(verb)|drool|slabber|slaver|slobber|dribble|salivate +driveller|2 +(noun)|jabberer|speaker|talker|utterer|verbalizer|verbaliser +(noun)|dribbler|slobberer|drooler|person|individual|someone|somebody|mortal|human|soul +driven|3 +(adj)|goaded|involuntary |nonvoluntary|unvoluntary +(adj)|impelled|motivated +(adj)|compulsive|determined|ambitious +driven well|1 +(noun)|tube well|well +driver|5 +(noun)|operator|manipulator +(noun)|worker +(noun)|golfer|golf player|linksman +(noun)|device driver|utility program|utility|service program +(noun)|number one wood|wood +driver's licence|1 +(noun)|driver's license|driving license|driving licence|license|licence|permit +driver's license|1 +(noun)|driver's licence|driving license|driving licence|license|licence|permit +driver ant|1 +(noun)|army ant|legionary ant|ant|emmet|pismire +driveshaft|1 +(noun)|rotating shaft|shaft +driveway|1 +(noun)|drive|private road|road|route +driving|4 +(adj)|impulsive|dynamic |dynamical +(adj)|energetic +(noun)|drive|golf stroke|golf shot|swing +(noun)|travel|traveling|travelling|steering|guidance|direction +driving axle|1 +(noun)|live axle|axle +driving belt|1 +(noun)|belt +driving force|1 +(noun)|drive|thrust|propulsion|actuation +driving iron|1 +(noun)|one iron|iron +driving licence|1 +(noun)|driver's license|driver's licence|driving license|license|licence|permit +driving license|1 +(noun)|driver's license|driver's licence|driving licence|license|licence|permit +driving range|1 +(noun)|golf range|practice range +driving school|1 +(noun)|school +driving wheel|1 +(noun)|wheel +drixoral|1 +(noun)|Drixoral|medicine|medication|medicament|medicinal drug +drizzle|3 +(noun)|mizzle|rain|rainfall +(verb)|mizzle|rain|rain down +(verb)|moisten|sprinkle|splash|splosh +drizzling|1 +(adj)|descending +drizzly|1 +(adj)|drippy|wet +drms|1 +(noun)|Defense Reutilization and Marketing Service|DRMS|agency|federal agency|government agency|bureau|office|authority +drogheda|1 +(noun)|Drogheda|battle|conflict|fight|engagement +drogue|4 +(noun)|target|mark +(noun)|windsock|sock|air sock|wind sleeve|wind cone|visual signal +(noun)|sea anchor|restraint|constraint +(noun)|drogue chute|drogue parachute|parachute|chute +drogue chute|1 +(noun)|drogue|drogue parachute|parachute|chute +drogue parachute|2 +(noun)|parachute|chute +(noun)|drogue|drogue chute|parachute|chute +droll|1 +(adj)|humorous |humourous +drollery|2 +(noun)|clowning|comedy|funniness|fun|play|sport +(noun)|waggery|jest|joke|jocularity +dromaeosaur|1 +(noun)|maniraptor +dromaeosauridae|1 +(noun)|Dromaeosauridae|family Dromaeosauridae|reptile family +dromaius|1 +(noun)|Dromaius|genus Dromaius|bird genus +dromaius novaehollandiae|1 +(noun)|emu|Dromaius novaehollandiae|Emu novaehollandiae|ratite|ratite bird|flightless bird +dromedary|1 +(noun)|Arabian camel|Camelus dromedarius|camel +dronabinol|1 +(noun)|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +drone|7 +(noun)|bee +(noun)|monotone|droning|intonation|modulation|pitch contour +(noun)|dawdler|laggard|lagger|trailer|idler|loafer|do-nothing|layabout|bum +(noun)|pilotless aircraft|radio-controlled aircraft|heavier-than-air craft +(noun)|drone pipe|bourdon|pipe|tabor pipe +(verb)|sound|go +(verb)|drone on|talk|speak|utter|mouth|verbalize|verbalise +drone on|1 +(verb)|drone|talk|speak|utter|mouth|verbalize|verbalise +drone pipe|1 +(noun)|drone|bourdon|pipe|tabor pipe +droning|2 +(adj)|abuzz|buzzing|noisy +(noun)|monotone|drone|intonation|modulation|pitch contour +drool|4 +(noun)|baloney|boloney|bilgewater|bosh|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|dribble|drivel|slobber|saliva|spit|spittle +(verb)|salivate|covet +(verb)|drivel|slabber|slaver|slobber|dribble|salivate|drool over +drool over|1 +(verb)|slobber over|idolize|idolise|worship|hero-worship|revere +drooler|1 +(noun)|dribbler|driveller|slobberer|person|individual|someone|somebody|mortal|human|soul +droop|4 +(noun)|sag|depression|impression|imprint +(verb)|sag|swag|flag|sink|drop|drop down +(verb)|loll|dangle|swing|drop +(verb)|wilt|decay|crumble|delapidate +drooping|3 +(adj)|flagging|tired +(adj)|droopy|sagging|lax +(adj)|cernuous|nodding|pendulous|unerect +drooping brome|1 +(noun)|downy brome|downy bromegrass|downy cheat|downy chess|cheatgrass|Bromus tectorum|brome|bromegrass +drooping juniper|1 +(noun)|Mexican juniper|Juniperus flaccida|juniper +droopy|1 +(adj)|drooping|sagging|lax +drop|29 +(noun)|driblet|small indefinite quantity|small indefinite amount +(noun)|bead|pearl|round shape +(noun)|dip|fall|free fall|decrease|decrement +(noun)|cliff|drop-off|geological formation|formation +(noun)|hiding place +(noun)|fall|descent|gravitation +(noun)|drop curtain|drop cloth|curtain|drape|drapery|mantle|pall +(noun)|depository|deposit|repository +(noun)|descent +(verb)|move|displace +(verb)|descend|fall|go down|come down +(verb)|decline|go down|wane +(verb)|sink|drop down|change posture +(verb)|remove +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|knock off|discontinue|stop|cease|give up|quit|lay off +(verb)|set down|put down|unload|discharge|deliver +(verb)|fell|strike down|cut down|cut +(verb)|lose +(verb)|spend|expend|pay +(verb)|flatten|change|alter|modify +(verb)|dangle|swing|hang +(verb)|dismiss|send packing|send away|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|dribble|drip|pour +(verb)|shed|cast|cast off|shake off|throw|throw off|throw away|remove|take|take away|withdraw +(verb)|neglect|pretermit|omit|miss|leave out|overlook|overleap +(verb)|change +(verb)|devolve|deteriorate|degenerate|worsen|decline +(verb)|give birth|deliver|bear|birth|have +drop-down menu|1 +(noun)|menu|computer menu +drop-kick|4 +(verb)|kick +(verb)|kick +(verb)|dropkick|kick +(verb)|dropkick|kick +drop-leaf|1 +(noun)|leaf +drop-leaf table|1 +(noun)|table +drop-off|3 +(noun)|slump|slack|falloff|falling off|deterioration|decline in quality|declension|worsening +(noun)|cliff|drop|geological formation|formation +(noun)|decrease|lessening|change|alteration|modification +drop-off charge|1 +(noun)|fee +drop-seed|2 +(noun)|dropseed|grass +(noun)| +drop a line|1 +(verb)|write|correspond +drop anchor|1 +(verb)|anchor|cast anchor|fasten|fix|secure +drop arch|1 +(noun)|pointed arch +drop away|1 +(verb)|slip|drop off|fall away|worsen|decline +drop back|1 +(verb)|move +drop behind|1 +(verb)|drag|trail|get behind|hang back|lag|dawdle|fall back|fall behind +drop biscuit|1 +(noun)|biscuit +drop by|1 +(verb)|drop in|come by|visit|call in|call +drop by the wayside|1 +(verb)|drop out|give up|fall by the wayside|throw in|throw in the towel|quit|chuck up the sponge +drop cloth|2 +(noun)|drop curtain|drop|curtain|drape|drapery|mantle|pall +(noun)|piece of cloth|piece of material +drop curtain|1 +(noun)|drop cloth|drop|curtain|drape|drapery|mantle|pall +drop dead|1 +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +drop down|1 +(verb)|sink|drop|change posture +drop earring|1 +(noun)|pendant earring|eardrop|earring +drop forge|1 +(noun)|drop hammer|drop press|device +drop hammer|1 +(noun)|drop forge|drop press|device +drop in|1 +(verb)|drop by|come by|visit|call in|call +drop keel|1 +(noun)|centerboard|centreboard|sliding keel|fin keel +drop line|2 +(noun)|dropline|stepped line|stagger head|staggered head|stephead|headline|newspaper headline +(noun)| +drop off|4 +(verb)|decrease|diminish|lessen|fall +(verb)|fall asleep|dope off|flake out|drift off|nod off|doze off|drowse off +(verb)|fall back|lose|fall behind|recede|regress|retrograde|retrogress +(verb)|slip|drop away|fall away|worsen|decline +drop open|1 +(verb)|fall open|sink|drop|drop down +drop out|2 +(verb)|give up|fall by the wayside|drop by the wayside|throw in|throw in the towel|quit|chuck up the sponge +(verb)|leave|depart|pull up stakes +drop press|1 +(noun)|drop forge|drop hammer|device +drop scone|1 +(noun)|griddlecake|Scotch pancake|scone +drop shot|1 +(noun)|dink|return +drop zone|1 +(noun)|dropping zone|zone +dropforge|1 +(verb)|forge|hammer +dropkick|3 +(noun)|kick|boot|kicking +(verb)|kick +(verb)|kick +dropkicker|1 +(noun)|kicker +droplet|1 +(noun)|drop|driblet +dropline|1 +(noun)|drop line|stepped line|stagger head|staggered head|stephead|headline|newspaper headline +dropout|2 +(noun)|quitter +(noun)|individualist +dropped|1 +(adj)|born +dropped egg|1 +(noun)|poached egg|dish +dropper|1 +(noun)|eye dropper|pipet|pipette +dropping|2 +(adj)|falling +(adj)|falling|descending +dropping zone|1 +(noun)|drop zone|zone +droppings|1 +(noun)|dung|muck|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +dropseed|1 +(noun)|drop-seed|grass +dropsical|1 +(adj)|edematous|unhealthy +dropsy|1 +(noun)|edema|oedema|hydrops|swelling|puffiness|lump +drosera|1 +(noun)|Drosera|genus Drosera|dicot genus|magnoliopsid genus +droseraceae|1 +(noun)|Droseraceae|family Droseraceae|sundew family|dicot family|magnoliopsid family +droshky|1 +(noun)|drosky|carriage|equipage|rig +drosky|1 +(noun)|droshky|carriage|equipage|rig +drosophila|1 +(noun)|Drosophila melanogaster|fruit fly|pomace fly +drosophila melanogaster|1 +(noun)|drosophila|Drosophila melanogaster|fruit fly|pomace fly +drosophilidae|1 +(noun)|Drosophilidae|family Drosophilidae|arthropod family +drosophyllum|1 +(noun)|Drosophyllum|genus Drosophyllum|dicot genus|magnoliopsid genus +drosophyllum lusitanicum|1 +(noun)|Drosophyllum lusitanicum|carnivorous plant +dross|2 +(noun)|impurity|waste|waste material|waste matter|waste product +(noun)|slag|scoria|scum +drought|2 +(noun)|dryness|waterlessness|xerotes +(noun)|time period|period of time|period +drove|3 +(noun)|animal group +(noun)|horde|swarm|crowd +(noun)|drove chisel|chisel +drove chisel|1 +(noun)|drove|chisel +drover|1 +(noun)|herder|herdsman|hired hand|hand|hired man +drown|4 +(verb)|submerge|overwhelm|cover|spread over|drown out +(verb)|eliminate|get rid of|do away with +(verb)|die|decease|perish|go|exit|pass away|expire|pass +(verb)|kill +drown out|1 +(verb)|make noise|resound|noise +drowned|1 +(adj)|sunken |submerged +drowse|3 +(noun)|doze|sleeping +(verb)|snooze|doze|nap|catnap|catch a wink +(verb)|rest|drowse off +drowse off|1 +(verb)|fall asleep|dope off|flake out|drift off|nod off|drop off|doze off +drowsily|1 +(adv)|somnolently +drowsiness|1 +(noun)|sleepiness|somnolence|temporary state +drowsing|1 +(adj)|drowsy|dozy|asleep +drowsy|2 +(adj)|drowsing|dozy|asleep +(adj)|oscitant|yawning|inattentive +drub|1 +(verb)|bat|clobber|thrash|lick|beat|beat out|crush|shell|trounce|vanquish +drubbing|2 +(noun)|thrashing|walloping|debacle|slaughter|trouncing|whipping|defeat|licking +(noun)|beating|thrashing|licking|lacing|trouncing|whacking|corporal punishment +drudge|3 +(noun)|hack|hacker|unskilled person +(noun)|peon|navvy|galley slave|laborer|manual laborer|labourer|jack +(verb)|labor|labour|toil|fag|travail|grind|dig|moil|work|do work +drudgery|1 +(noun)|plodding|grind|donkeywork|labor|labour|toil +drudging|1 +(adj)|laboring|labouring|toiling|busy +drug|3 +(noun)|agent +(verb)|dose|medicate|medicine +(verb)|do drugs|consume|ingest|take in|take|have +drug-addicted|1 +(adj)|dependent|dependant|hooked|strung-out|addicted +drug-free|1 +(adj)|sober +drug abuse|1 +(noun)|substance abuse|habit|misuse|abuse +drug addict|1 +(noun)|junkie|junky|addict +drug addiction|1 +(noun)|white plague|addiction|dependence|dependency|habituation +drug baron|1 +(noun)|drug lord|boss +drug bust|1 +(noun)|drugs bust|impoundment|impounding|internment|poundage +drug cartel|1 +(noun)|trust|corporate trust|combine|cartel +drug cocktail|1 +(noun)|highly active antiretroviral therapy|HAART|medicine|medication|medicament|medicinal drug +drug company|1 +(noun)|pharmaceutical company|pharma|company +drug dealer|1 +(noun)|pusher|drug peddler|peddler|drug trafficker|dealer|criminal|felon|crook|outlaw|malefactor +drug enforcement administration|1 +(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency +drug enforcement agency|1 +(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency +drug lord|1 +(noun)|drug baron|boss +drug of abuse|1 +(noun)|street drug|drug +drug peddler|1 +(noun)|pusher|peddler|drug dealer|drug trafficker|dealer|criminal|felon|crook|outlaw|malefactor +drug traffic|1 +(noun)|drug trafficking|narcotraffic|traffic +drug trafficker|1 +(noun)|pusher|drug peddler|peddler|drug dealer|dealer|criminal|felon|crook|outlaw|malefactor +drug trafficking|1 +(noun)|drug traffic|narcotraffic|traffic +drug user|1 +(noun)|substance abuser|user|person|individual|someone|somebody|mortal|human|soul +drug war|1 +(noun)|war|warfare +drug withdrawal|1 +(noun)|withdrawal|termination|ending|conclusion +drugged|1 +(adj)|doped|narcotized|narcotised|intoxicated |drunk|inebriated +drugget|1 +(noun)|rug|carpet|carpeting +drugging|1 +(noun)|sedation|administration|giving medication +druggist|1 +(noun)|pharmacist|chemist|apothecary|pill pusher|pill roller|health professional|health care provider|caregiver +drugless|1 +(adj)|healthful +drugs bust|2 +(noun)|drug bust|impoundment|impounding|internment|poundage +(noun)|drug bust|impoundment|impounding|internment|poundage +drugstore|1 +(noun)|apothecary's shop|chemist's|chemist's shop|pharmacy|shop|store +druid|1 +(noun)|priest|non-Christian priest +drum|9 +(noun)|membranophone|tympan|percussion instrument|percussive instrument +(noun)|sound +(noun)|barrel|cylinder +(noun)|metal drum|vessel +(noun)|brake drum|cylinder +(noun)|drumfish|sciaenid fish|sciaenid +(verb)|beat|thrum|sound|go +(verb)|play +(verb)|cram|grind away|bone up|swot|get up|mug up|swot up|bone|study|hit the books +drum brake|1 +(noun)|drum brakes|hydraulic brake|hydraulic brakes +drum brakes|2 +(noun)|drum brake|hydraulic brake|hydraulic brakes +(noun)|drum brake|hydraulic brake|hydraulic brakes +drum major|1 +(noun)|conductor|music director|director +drum majorette|2 +(noun)|baton twirler|twirler +(noun)|conductor|music director|director +drum out|1 +(verb)|oust|throw out|boot out|kick out|expel|remove +drum printer|1 +(noun)|line printer|line-at-a-time printer +drum roll|1 +(noun)|paradiddle|roll|sound +drum sander|1 +(noun)|electric sander|sander|smoother|power tool +drum up|1 +(verb)|beat up|rally|collect|pull in +drumbeat|3 +(noun)|rub-a-dub|rataplan|sound +(noun)|signal|signaling|sign +(noun)|advocacy +drumbeater|1 +(noun)|partisan|zealot|advocate|advocator|proponent|exponent +drumfire|1 +(noun)|cannonade|artillery fire|cannon fire +drumfish|1 +(noun)|drum|sciaenid fish|sciaenid +drumhead|2 +(adj)|summary|unofficial +(noun)|head|membrane +drumhead court-martial|1 +(noun)|court-martial +drumlin|1 +(noun)|drift +drummer|1 +(noun)|percussionist +drumming|1 +(noun)|percussion +drumstick|2 +(noun)|helping|portion|serving +(noun)|stick +drumstick tree|1 +(noun)|golden shower tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia +drunk|4 +(adj)|intoxicated |inebriated|bacchanalian|bacchanal|bacchic|carousing|orgiastic|beery|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|bibulous|boozy|drunken|sottish|doped|drugged|narcotized|narcotised|half-seas-over|high|mellow|hopped-up|stoned +(adj)|intoxicated|excited +(noun)|drunkard|rummy|sot|inebriate|drinker|imbiber|toper|juicer +(noun)|drinker|imbiber|toper|juicer +drunk-and-disorderly|1 +(noun)|drunk +drunkard|1 +(noun)|drunk|rummy|sot|inebriate|drinker|imbiber|toper|juicer +drunken|1 +(adj)|bibulous|boozy|sottish|intoxicated |drunk|inebriated +drunken reveler|1 +(noun)|drunken reveller|bacchanal|bacchant|drinker|imbiber|toper|juicer +drunken reveller|1 +(noun)|drunken reveler|bacchanal|bacchant|drinker|imbiber|toper|juicer +drunken revelry|1 +(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanal|bacchanalia|revel|revelry +drunkenness|3 +(noun)|inebriation|inebriety|intoxication|tipsiness|temporary state +(noun)|alcoholism|alcohol addiction|inebriation|drug addiction|white plague +(noun)|drink|drinking|boozing|crapulence|intemperance|intemperateness +drupaceous|1 +(adj)|fruit +drupe|1 +(noun)|stone fruit|fruit +drupelet|1 +(noun)|drupe|stone fruit +druse|1 +(noun)|Druze|Druse|disciple|adherent +druthers|1 +(noun)|preference|option|alternative|choice +druze|1 +(noun)|Druze|Druse|disciple|adherent +dry|19 +(adj)|dry |adust|baked|parched|scorched|sunbaked|air-dried|air-dry|arid|waterless|bone-dry|bone dry|desiccated|dried-out|dried|dried-up|dried-up|sere|sear|shriveled|shrivelled|withered|rainless|thirsty|dry-shod|semiarid +(adj)|ironic|ironical|wry|humorous |humourous +(adj)|dry +(adj)|dry |milkless +(adj)|dry |brut|sec|unsweet|sour|sugarless|nonsweet +(adj)|dry +(adj)|tearless |dry-eyed +(adj)|juiceless|unstimulating |unexciting +(adj)|solid +(adj)|unproductive +(adj)|plain +(adj)|plain +(adj)|thirsty +(adj)|alcoholic +(adj)|unemotional +(adj)|teetotal|sober +(noun)|prohibitionist|reformer|reformist|crusader|meliorist +(verb)|dry out|change|alter|modify +(verb)|dry out|change +dry-bulb thermometer|1 +(noun)|thermometer +dry-cleaned|1 +(adj)|clean +dry-dock|2 +(verb)|drydock|dock +(verb)| +dry-eyed|1 +(adj)|tearless |dry +dry-gulching|1 +(noun)|ambush|ambuscade|lying in wait|trap|murder|slaying|execution +dry-nurse|1 +(verb)|care|give care +dry-rot|1 +(verb)|mold|mildew +dry-shod|1 +(adj)|dry +dry-stone wall|1 +(noun)|dry wall|stone wall|dry masonry +dry battery|1 +(noun)|voltaic battery|galvanic battery +dry cell|1 +(noun)|Leclanche cell +dry cereal|1 +(noun)|cold cereal|cereal +dry clean|1 +(verb)|clean|make clean +dry cleaner|1 +(noun)|cleaner|shopkeeper|tradesman|storekeeper|market keeper +dry cleaners|2 +(noun)|cleaners|shop|store +(noun)|cleaner|dry cleaner|shopkeeper|tradesman|storekeeper|market keeper +dry cleaning|1 +(noun)|cleaning|cleansing|cleanup +dry dock|2 +(noun)|drydock|graving dock|dock|dockage|docking facility +(noun)| +dry fly|1 +(noun)|fly +dry gangrene|1 +(noun)|cold gangrene|mumification necrosis|mummification|gangrene|sphacelus|slough +dry ice|1 +(noun)|solid +dry kiln|1 +(noun)|kiln +dry land|1 +(noun)|land|earth|ground|solid ground|terra firma|object|physical object +dry masonry|1 +(noun)|masonry +dry measure|1 +(noun)|dry unit|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +dry milk|1 +(noun)|powdered milk|dried milk|milk powder|milk +dry mop|1 +(noun)|dustmop|dust mop|swab|swob|mop +dry mouth|1 +(noun)|xerostomia|dryness|waterlessness|xerotes +dry mustard|1 +(noun)|powdered mustard|emetic|vomit|vomitive|nauseant|mustard|table mustard +dry nurse|1 +(noun)|nanny|nursemaid|nurse +dry out|3 +(verb)|dry|change +(verb)|run dry|dry +(verb)|dry|change|alter|modify +dry pint|1 +(noun)|pint|United States dry unit +dry point|2 +(noun)|engraving +(noun)|engraving +dry quart|1 +(noun)|quart|United States dry unit +dry rot|2 +(noun)|plant disease +(noun)|fungus +dry run|1 +(noun)|rehearsal|exercise|practice|drill|practice session|recitation +dry season|1 +(noun)|season|time of year +dry socket|1 +(noun)|alveolitis|inflammation|redness|rubor +dry unit|1 +(noun)|dry measure|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +dry up|2 +(verb)|dehydrate|desiccate|dry|dry out +(verb)|mummify|shrivel|shrivel up|shrink|wither +dry vermouth|1 +(noun)|French vermouth|vermouth +dry wall|1 +(noun)|dry-stone wall|stone wall|dry masonry +dry walling|1 +(noun)|construction|building +dry wash|1 +(noun)|wash|streambed|creek bed +dryad|1 +(noun)|wood nymph|nymph +dryadella|1 +(noun)|Dryadella|genus Dryadella|monocot genus|liliopsid genus +dryas|1 +(noun)|Dryas|genus Dryas|rosid dicot genus +dryas octopetala|1 +(noun)|mountain avens|Dryas octopetala|subshrub|suffrutex +dryden|1 +(noun)|Dryden|John Dryden|poet|dramatist|playwright +drydock|2 +(noun)|dry dock|graving dock|dock|dockage|docking facility +(verb)|dry-dock|dock +dryer|1 +(noun)|drier|appliance +drygoods|1 +(noun)|soft goods|commodity|trade goods|goods +drying agent|1 +(noun)|desiccant|drier|sicative|chemical agent +drying oil|1 +(noun)|animal oil|vegetable oil|oil +drying up|1 +(noun)|dehydration|desiccation|evaporation|extraction +dryland berry|1 +(noun)|dryland blueberry|Vaccinium pallidum|blueberry|blueberry bush +dryland blueberry|1 +(noun)|dryland berry|Vaccinium pallidum|blueberry|blueberry bush +dryly|1 +(adv)|laconically +drymarchon|1 +(noun)|Drymarchon|genus Drymarchon|reptile genus +drymarchon corais|1 +(noun)|indigo snake|gopher snake|Drymarchon corais|colubrid snake|colubrid +drymarchon corais couperi|1 +(noun)|eastern indigo snake|Drymarchon corais couperi|indigo snake|gopher snake|Drymarchon corais +drymoglossum|1 +(noun)|Drymoglossum|genus Drymoglossum|fern genus +drynaria|1 +(noun)|Drynaria|genus Drynaria|fern genus +drynaria rigidula|1 +(noun)|basket fern|Drynaria rigidula|fern +dryness|1 +(noun)|waterlessness|xerotes|condition|status +dryopithecine|1 +(noun)|hominid +dryopithecus|1 +(noun)|Dryopithecus|genus Dryopithecus|mammal genus +dryopithecus rudapithecus hungaricus|1 +(noun)|rudapithecus|Dryopithecus Rudapithecus hungaricus|dryopithecine +dryopteridaceae|1 +(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family +dryopteris|1 +(noun)|Dryopteris|genus Dryopteris|fern genus +dryopteris dilatata|1 +(noun)|broad buckler-fern|Dryopteris dilatata|shield fern|buckler fern +dryopteris filix-mas|1 +(noun)|male fern|Dryopteris filix-mas|wood fern|wood-fern|woodfern +dryopteris fragrans|1 +(noun)|fragrant cliff fern|fragrant shield fern|fragrant wood fern|Dryopteris fragrans|wood fern|wood-fern|woodfern +dryopteris goldiana|1 +(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern|buckler fern +dryopteris hexagonoptera|1 +(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern +dryopteris marginalis|1 +(noun)|marginal wood fern|evergreen wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern|wood-fern|woodfern +dryopteris noveboracensis|1 +(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern +dryopteris oreades|1 +(noun)|mountain male fern|Dryopteris oreades|wood fern|wood-fern|woodfern +dryopteris oreopteris|1 +(noun)|mountain fern|Oreopteris limbosperma|Dryopteris oreopteris|fern +dryopteris phegopteris|1 +(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +dryopteris thelypteris|1 +(noun)|marsh fern|Thelypteris palustris|Dryopteris thelypteris|fern +dryopteris thelypteris pubescens|1 +(noun)|snuffbox fern|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern|Thelypteris palustris|Dryopteris thelypteris +drypis|1 +(noun)|herb|herbaceous plant +ds|2 +(noun)|Bureau of Diplomatic Security|DS|agency|federal agency|government agency|bureau|office|authority +(noun)|Doctor of Science|DS|ScD|honorary degree +dsl|1 +(noun)|digital subscriber line|DSL|telephone line|phone line|telephone circuit|subscriber line|line +dtic|1 +(noun)|Defense Technical Information Center|DTIC|agency|federal agency|government agency|bureau|office|authority +dts|1 +(noun)|delirium tremens|DTs|psychosis +du barry|1 +(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier +du bois|1 +(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader|civil rights worker|civil rights activist +du maurier|2 +(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer|author +(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer|author|illustrator +duad|1 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|two|2|II|deuce +dual|3 +(adj)|double|duple|multiple +(adj)|double|twofold|treble|threefold|multiple +(adj)|plural +dual-lane|1 +(adj)|divided|multilane +dual carriageway|1 +(noun)|divided highway|highway|main road +dual inline package switch|1 +(noun)|DIP switch|toggle switch|toggle|on-off switch|on/off switch +dual scan display|1 +(noun)|passive matrix display +dualism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +dualist|1 +(noun)|disciple|adherent +dualistic|1 +(adj)|Manichaean|doctrine|philosophy|philosophical system|school of thought|ism +duality|3 +(noun)|dichotomy|classification|categorization|categorisation +(noun)|wave-particle duality|property +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +dub|3 +(verb)|nickname|name|call +(verb)|synchronize|synchronise +(verb)|knight|ennoble|gentle|entitle +dubai|1 +(noun)|Dubai|city|metropolis|urban center|port +dubbin|1 +(noun)|tallow +dubbing|1 +(noun)|soundtrack +dubiety|1 +(noun)|doubt|uncertainty|incertitude|doubtfulness|dubiousness|cognitive state|state of mind +dubious|3 +(adj)|doubtful|uncertain |incertain +(adj)|doubtful|dubitable|in question|questionable +(adj)|unconvinced +dubiously|2 +(adv)|questionably +(adv)|doubtfully +dubiousness|2 +(noun)|doubt|uncertainty|incertitude|dubiety|doubtfulness|cognitive state|state of mind +(noun)|doubt|doubtfulness|question|uncertainty|uncertainness +dubitable|1 +(adj)|doubtful|dubious|in question|questionable +dublin|1 +(noun)|Dublin|Irish capital|capital of Ireland|national capital|port +dubliner|1 +(noun)|Dubliner|Irish person|Irelander +dubois heyward|1 +(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer|author +dubonnet|1 +(noun)|Dubonnet|wine|vino +dubrovnik|1 +(noun)|Dubrovnik|Ragusa|city|metropolis|urban center|port +dubuque|1 +(noun)|Dubuque|town +dubya|1 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +dubyuh|1 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +duc d'elchingen|1 +(noun)|Ney|Michel Ney|Duc d'Elchingen|general|full general|marshal|marshall +duc de richelieu|1 +(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +duc de sully|1 +(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman|solon|national leader +ducal|1 +(adj)|Lord|noble|nobleman +ducat|1 +(noun)|coin +duce|1 +(noun)|leader +duchamp|1 +(noun)|Duchamp|Marcel Duchamp|artist|creative person +duchenne's muscular dystrophy|1 +(noun)|Duchenne's muscular dystrophy|pseudohypertrophic dystrophy|muscular dystrophy|dystrophy +duchess|1 +(noun)|Lady|noblewoman|peeress +duchess of ferrara|1 +(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady|noblewoman|peeress +duchess of windsor|1 +(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee|grass widow +duchesse de valentinois|1 +(noun)|Diane de Poitiers|Duchesse de Valentinois|female aristocrat +duchy|1 +(noun)|dukedom|domain|demesne|land +duck|8 +(noun)|anseriform bird +(noun)|duck's egg|score +(noun)|poultry +(noun)|fabric|cloth|material|textile +(verb)|move +(verb)|dive|plunge|plunk +(verb)|dip|douse|dunk|dip|souse|plunge|douse +(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|sidestep|avoid +duck's egg|1 +(noun)|duck|score +duck-billed|1 +(adj)|duckbill|beaked +duck-billed dinosaur|1 +(noun)|hadrosaur|hadrosaurus|ornithischian|ornithischian dinosaur +duck-billed platypus|1 +(noun)|platypus|duckbill|duckbilled platypus|Ornithorhynchus anatinus|monotreme|egg-laying mammal +duck down|1 +(noun)|down|down feather +duck hunter|1 +(noun)|hunter|huntsman +duck hunting|1 +(noun)|ducking|hunt|hunting +duck pate|1 +(noun)|pate +duck sauce|1 +(noun)|hoisin sauce|condiment +duck shot|1 +(noun)|bird shot|buckshot|shot|pellet +duck soup|1 +(noun)|cinch|breeze|picnic|snap|child's play|pushover|walkover|piece of cake|undertaking|project|task|labor +duckbill|3 +(adj)|duck-billed|beaked +(noun)|paddlefish|Polyodon spathula|ganoid|ganoid fish +(noun)|platypus|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme|egg-laying mammal +duckbilled platypus|1 +(noun)|platypus|duckbill|duck-billed platypus|Ornithorhynchus anatinus|monotreme|egg-laying mammal +duckboard|1 +(noun)|boardwalk +ducking|2 +(noun)|duck hunting|hunt|hunting +(noun)|submersion|immersion|dousing|wetting +ducking stool|1 +(noun)|cucking stool|instrument of punishment +duckling|2 +(noun)|duck +(noun)|duck +duckpin|1 +(noun)|bowling pin|pin +duckpins|2 +(noun)|bowling +(noun)|duckpin|bowling pin|pin +ducks and drakes|1 +(noun)|game +duckweed|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +duckweed family|1 +(noun)|Lemnaceae|family Lemnaceae|monocot family|liliopsid family +ducky|1 +(noun)|darling|favorite|favourite|pet|dearie|deary|lover +duct|3 +(noun)|epithelial duct|canal|channel|passage|passageway +(noun)|plant part|plant structure +(noun)|conduit +duct gland|1 +(noun)|exocrine gland|gland|secretory organ|secretor|secreter +duct tape|1 +(noun)|adhesive tape +ductile|2 +(adj)|malleable|tractable |manipulable +(adj)|malleable|pliable|pliant|tensile|tractile|elastic +ductility|1 +(noun)|malleability|plasticity +ductless|1 +(adj)|passage|passageway +ductless gland|1 +(noun)|endocrine gland|endocrine|gland|secretory organ|secretor|secreter +ductule|1 +(noun)|ductulus|duct|epithelial duct|canal|channel +ductulus|1 +(noun)|ductule|duct|epithelial duct|canal|channel +ductus arteriosus|1 +(noun)|blood vessel +ductus deferens|1 +(noun)|vas deferens|duct|epithelial duct|canal|channel +dud|4 +(adj)|unloaded +(noun)|flop|washout|failure|loser|nonstarter|unsuccessful person +(noun)|misfire|breakdown|equipment failure +(noun)|turkey|bomb|flop|bust +dude|1 +(noun)|dandy|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse|man|adult male +dude ranch|1 +(noun)|resort|resort hotel|holiday resort +dudeen|1 +(noun)|clay pipe +dudgeon|1 +(noun)|high dudgeon|indignation|outrage +dudley moore|1 +(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor|histrion|player|thespian|role player|comedian|comic +dudley stuart john moore|1 +(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor|histrion|player|thespian|role player|comedian|comic +duds|4 +(noun)|togs|threads|clothing|article of clothing|vesture|wear +(noun)|flop|dud|washout|failure|loser|nonstarter|unsuccessful person +(noun)|misfire|dud|breakdown|equipment failure +(noun)|turkey|bomb|dud|flop|bust +due|7 +(adj)|due |owed|callable|collect|cod|collectible|collectable|payable|delinquent|overdue|owing|receivable|out-of-pocket|repayable +(adj)|deserved|merited +(adj)|expected +(adj)|due |anticipated|looked-for +(adj)|appropriate +(noun)|right +(noun)|fixed charge|fixed cost|fixed costs +due care|1 +(noun)|ordinary care|reasonable care|care|charge|tutelage|guardianship +due date|1 +(noun)|maturity|maturity date|date|day of the month +due east|1 +(noun)|east|E|cardinal compass point +due north|1 +(noun)|north|N|cardinal compass point +due process|1 +(noun)|due process of law|group action +due process of law|1 +(noun)|due process|group action +due south|1 +(noun)|south|S|cardinal compass point +due to|1 +(adj)|ascribable|imputable|referable|attributable +due west|1 +(noun)|west|W|cardinal compass point +duel|3 +(noun)|affaire d'honneur|fight|fighting|combat|scrap +(noun)|struggle|battle +(verb)|fight|struggle +dueler|1 +(noun)|dueller|duelist|duellist|adversary|antagonist|opponent|opposer|resister +duelist|1 +(noun)|dueler|dueller|duellist|adversary|antagonist|opponent|opposer|resister +dueller|1 +(noun)|dueler|duelist|duellist|adversary|antagonist|opponent|opposer|resister +duellist|1 +(noun)|dueler|dueller|duelist|adversary|antagonist|opponent|opposer|resister +duenna|1 +(noun)|chaperon|chaperone +duet|5 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|dyad|duad|two|2|II|deuce +(noun)|duette|duo|musical organization|musical organisation|musical group +(noun)|couple|twosome|duo|pair +(noun)|duette|duo|musical composition|opus|composition|piece|piece of music +(noun)|pas de deux|dancing|dance|terpsichore|saltation +duette|2 +(noun)|duet|duo|musical organization|musical organisation|musical group +(noun)|duet|duo|musical composition|opus|composition|piece|piece of music +duff|1 +(noun)|pudding +duffel|2 +(noun)|duffel bag|duffle bag|duffle|drawstring bag +(noun)|duffle|fabric|cloth|material|textile +duffel bag|1 +(noun)|duffle bag|duffel|duffle|drawstring bag +duffel coat|1 +(noun)|duffle coat|coat +duffer|1 +(noun)|clumsy person +duffle|2 +(noun)|duffel bag|duffle bag|duffel|drawstring bag +(noun)|duffel|fabric|cloth|material|textile +duffle bag|1 +(noun)|duffel bag|duffel|duffle|drawstring bag +duffle coat|1 +(noun)|duffel coat|coat +dufy|1 +(noun)|Dufy|Raoul Dufy|painter +dug|1 +(noun)|mammary gland|mamma +dugald stewart|1 +(noun)|Stewart|Dugald Stewart|philosopher +dugong|1 +(noun)|Dugong dugon|sea cow|sirenian mammal|sirenian +dugong dugon|1 +(noun)|dugong|Dugong dugon|sea cow|sirenian mammal|sirenian +dugongidae|1 +(noun)|Dugongidae|family Dugongidae|mammal family +dugout|3 +(noun)|shelter +(noun)|dugout canoe|pirogue|canoe +(noun)|bunker|fortification|munition +dugout canoe|1 +(noun)|dugout|pirogue|canoe +dukas|1 +(noun)|Dukas|Paul Dukas|composer +duke|2 +(noun)|peer +(noun)|Lord|noble|nobleman +duke ellington|1 +(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician|jazzman +duke of argyll's tea tree|1 +(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine|boxthorn +duke of cumberland|1 +(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general|full general +duke of edinburgh|1 +(noun)|Philip|Prince Philip|Duke of Edinburgh|prince +duke of marlborough|1 +(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general|full general +duke of wellington|1 +(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|the Iron Duke|general|full general|statesman|solon|national leader +duke of windsor|1 +(noun)|Edward VIII|Duke of Windsor|King of England|King of Great Britain +duke university|1 +(noun)|Duke University|university +duke wayne|1 +(noun)|Wayne|John Wayne|Duke Wayne|actor|histrion|player|thespian|role player +dukedom|2 +(noun)|rank +(noun)|duchy|domain|demesne|land +dulcet|2 +(adj)|pleasant +(adj)|honeyed|mellifluous|mellisonant|sweet|melodious |melodic|musical +dulciana|1 +(noun)|organ stop +dulcify|1 +(verb)|sweeten|edulcorate|dulcorate|change taste +dulcimer|2 +(noun)|stringed instrument +(noun)|zither|cither|zithern +dulcorate|1 +(verb)|sweeten|dulcify|edulcorate|change taste +dull|19 +(adj)|dull |bovine|drab|dreary|heavy|leaden|humdrum|monotonous|lackluster|lacklustre|lusterless|lustreless|arid|desiccate|desiccated|colorless|colourless|spiritless|unanimated +(adj)|dull |flat|mat|matt|matte|matted|lackluster|lacklustre|lusterless|lustreless|unpolished +(adj)|muffled|muted|softened|soft +(adj)|boring|deadening|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting +(adj)|unsaturated +(adj)|dull |deadened +(adj)|dense|dim|dumb|obtuse|slow|stupid +(adj)|slow|sluggish|inactive +(adj)|dull |blunt|blunted|dulled|edgeless|unsharpened +(adj)|insensitive +(adj)|thudding|unreverberant |nonresonant +(adj)|gray|grey|leaden|cloudy +(verb)|change|alter|modify +(verb)|change +(verb)|muffle|mute|damp|dampen|tone down|soften +(verb)|numb|benumb|blunt|desensitize|desensitise +(verb)|blunt|change|alter|modify +(verb)|pall|change +(verb)|weaken +dullard|2 +(noun)|stupid|stupid person|dolt|pudding head|pudden-head|poor fish|pillock|simpleton|simple +(noun)|bore|unpleasant person|disagreeable person +dulled|3 +(adj)|benumbed|uninterested +(adj)|blunted|dull +(adj)|grayed|colorless |colourless +dulles|1 +(noun)|Dulles|John Foster Dulles|diplomat|diplomatist +dullness|4 +(noun)|dulness|obtuseness|stupidity +(noun)|dulness|uninterestingness +(noun)|dulness|visual property +(noun)|dulness|bluntness|shape|form|configuration|contour|conformation +dulness|4 +(noun)|dullness|obtuseness|stupidity +(noun)|dullness|uninterestingness +(noun)|dullness|visual property +(noun)|dullness|bluntness|shape|form|configuration|contour|conformation +dulse|1 +(noun)|Rhodymenia palmata|red algae +duluth|1 +(noun)|Duluth|city|metropolis|urban center|port +duly|1 +(adv)|punctually +dumas|1 +(noun)|Dumas|Alexandre Dumas|writer|author +dumb|4 +(adj)|dense|dim|dull|obtuse|slow|stupid +(adj)|speechless|inarticulate |unarticulate +(adj)|inarticulate |unarticulate +(adj)|mute|silent|inarticulate |unarticulate +dumb bomb|1 +(noun)|gravity bomb|bomb +dumb cane|1 +(noun)|mother-in-law plant|mother-in-law's tongue|Dieffenbachia sequine|arum|aroid +dumb show|1 +(noun)|mime|pantomime|acting|playing|playacting|performing +dumbbell|2 +(noun)|weight|free weight|exercising weight +(noun)|dummy|dope|boob|booby|pinhead|simpleton|simple +dumbfound|1 +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +dumbfounded|1 +(adj)|dumfounded|flabbergasted|stupefied|thunderstruck|surprised +dumbfounding|1 +(adj)|astounding|dumfounding|incredible |unbelievable +dumbly|1 +(adv)|densely|obtusely +dumbness|1 +(noun)|denseness|slow-wittedness|stupidity +dumbwaiter|1 +(noun)|food elevator|elevator|lift +dumdum|1 +(noun)|dumdum bullet|bullet|slug +dumdum bullet|1 +(noun)|dumdum|bullet|slug +dumdum fever|1 +(noun)|visceral leishmaniasis|kala-azar|Assam fever|leishmaniasis|leishmaniosis|kala azar +dumetella|1 +(noun)|Dumetella|genus Dumetella|bird genus +dumetella carolinensis|1 +(noun)|catbird|gray catbird|Dumetella carolinensis|oscine|oscine bird +dumfounded|1 +(adj)|dumbfounded|flabbergasted|stupefied|thunderstruck|surprised +dumfounding|1 +(adj)|astounding|dumbfounding|incredible |unbelievable +dummy|6 +(adj)|artificial |unreal +(noun)|silent person|mute|deaf-mute|deaf-and-dumb person +(noun)|dumbbell|dope|boob|booby|pinhead|simpleton|simple +(noun)|figure +(noun)|blank|blank shell|cartridge +(verb)|dummy up|produce|make|create +dummy up|2 +(verb)|dummy|produce|make|create +(verb)|close up|clam up|shut up|belt up|button up|be quiet|keep mum +dummy whist|1 +(noun)|whist|long whist|short whist +dump|9 +(noun)|shit|defecation|laxation|shitting +(noun)|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite|site|land site +(noun)|copy|written matter +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|ditch|get rid of|remove +(verb)|underprice|sell +(verb)|drop +(verb)|plunge|drop +(verb)|deck|coldcock|knock down|floor|beat +dump routine|1 +(noun)|utility routine|service routine +dump truck|1 +(noun)|dumper|tipper truck|tipper lorry|tip truck|tipper|truck|motortruck +dumpcart|1 +(noun)|cart +dumped|1 +(adj)|drop +dumper|1 +(noun)|dump truck|tipper truck|tipper lorry|tip truck|tipper|truck|motortruck +dumpiness|1 +(noun)|squattiness|physique|build|body-build|habitus +dumping|1 +(noun)|selling|merchandising|marketing +dumpling|2 +(noun)|dumplings|pasta|alimentary paste +(noun)|dessert|sweet|afters +dumplings|3 +(noun)|dumpling|pasta|alimentary paste +(noun)|dumpling|pasta|alimentary paste +(noun)|dumpling|dessert|sweet|afters +dumps|4 +(noun)|mopes|low spirits +(noun)|shit|dump|defecation|laxation|shitting +(noun)|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite|site|land site +(noun)|dump|copy|written matter +dumpsite|1 +(noun)|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|site|land site +dumpster|1 +(noun)|Dumpster|container +dumpy|2 +(adj)|chunky|low-set|squat|squatty|stumpy|short +(adj)|podgy|pudgy|tubby|fat +dumpy level|1 +(noun)|Dumpy level|surveyor's level +dumuzi|1 +(noun)|Dumuzi|Tammuz|Semitic deity +dun|7 +(adj)|chromatic +(noun)|saddle horse|riding horse|mount +(noun)|grayish brown|greyish brown|fawn|light brown +(verb)|torment|rag|bedevil|crucify|frustrate|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|demand +(verb)|cure +(verb)|darken +duncan|1 +(noun)|Duncan|Isadora Duncan|dancer|professional dancer +duncan grant|1 +(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter +duncan james corrow grant|1 +(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter +dunce|1 +(noun)|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +dunce's cap|1 +(noun)|dunce cap|fool's cap|hat|chapeau|lid +dunce cap|1 +(noun)|dunce's cap|fool's cap|hat|chapeau|lid +dundathu pine|1 +(noun)|queensland kauri|smooth bark kauri|Agathis robusta|kauri pine|dammar pine +dunderhead|1 +(noun)|dunce|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +dune|1 +(noun)|sand dune|ridge +dune buggy|1 +(noun)|beach buggy|recreational vehicle|RV +dune cycling|1 +(noun)|cycling +dung|3 +(noun)|droppings|muck|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(verb)|fertilize|fertilise|feed +(verb)|stool|defecate|shit|take a shit|take a crap|ca-ca|crap|make +dung beetle|1 +(noun)|scarabaeid beetle|scarabaeid|scarabaean +dungaree|1 +(noun)|denim|jean|fabric|cloth|material|textile +dungeness crab|2 +(noun)|Dungeness crab|crab|crabmeat +(noun)|Dungeness crab|Cancer magister|crab +dungeon|2 +(noun)|keep|donjon|stronghold|fastness +(noun)|cell|jail cell|prison cell +dunghill|2 +(noun)|unsanitariness +(noun)|midden|muckheap|muckhill|pile|heap|mound|cumulus +dunk|4 +(noun)|dunk shot|stuff shot|basketball shot +(verb)|dip|souse|plunge|douse|immerse|plunge +(verb)|shoot +(verb)|dip|eat +dunk shot|1 +(noun)|dunk|stuff shot|basketball shot +dunkard|1 +(noun)|Dunker|Dunkard|Tunker|Baptist|Church of the Brethren|Dunkers|Dippers +dunked|1 +(adj)|soused|wet +dunker|3 +(noun)|eater|feeder +(noun)|basketball player|basketeer|cager +(noun)|Dunker|Dunkard|Tunker|Baptist|Church of the Brethren|Dunkers|Dippers +dunkerque|1 +(noun)|Dunkirk|Dunkerque|city|metropolis|urban center|amphibious operation|evacuation +dunkers|4 +(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination +(noun)|dunker|eater|feeder +(noun)|dunker|basketball player|basketeer|cager +(noun)|Dunker|Dunkard|Tunker|Baptist|Church of the Brethren|Dunkers|Dippers +dunkirk|2 +(noun)|Dunkirk|crisis +(noun)|Dunkirk|Dunkerque|city|metropolis|urban center|amphibious operation|evacuation +dunlin|1 +(noun)|red-backed sandpiper|Erolia alpina|sandpiper +dunnock|1 +(noun)|hedge sparrow|sparrow|Prunella modularis|accentor +duns scotus|1 +(noun)|Duns Scotus|John Duns Scotus|theologian|theologist|theologizer|theologiser +duo|4 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duet|dyad|duad|two|2|II|deuce +(noun)|duet|duette|musical organization|musical organisation|musical group +(noun)|couple|twosome|duet|pair +(noun)|duet|duette|musical composition|opus|composition|piece|piece of music +duodecimal|1 +(adj)|quantitative +duodenal|1 +(adj)|small intestine +duodenal smear|1 +(noun)|paraduodenal smear|alimentary tract smear +duodenal ulcer|1 +(noun)|peptic ulcer|peptic ulceration +duodenum|1 +(noun)|small intestine +duologue|2 +(noun)|dialogue|dialog|talk|talking +(noun)|dialogue|dialog +dupe|2 +(noun)|victim|person|individual|someone|somebody|mortal|human|soul +(verb)|gull|slang|befool|cod|fool|put on|take in|put one over|put one across|deceive|betray|lead astray +dupery|1 +(noun)|fraud|fraudulence|hoax|humbug|put-on|trickery|chicanery|chicane|guile|wile|shenanigan +duple|1 +(adj)|double|dual|multiple +duple time|1 +(noun)|musical time +duplex|4 +(adj)|multiple +(adj)|bidirectional +(noun)|duplex house|semidetached house|house +(noun)|duplex apartment|apartment|flat +duplex apartment|1 +(noun)|duplex|apartment|flat +duplex house|1 +(noun)|duplex|semidetached house|house +duplicability|1 +(noun)|reproducibility|dependability|dependableness|reliability|reliableness +duplicable|1 +(adj)|duplicatable|reproducible |consistent +duplicatable|1 +(adj)|duplicable|reproducible |consistent +duplicate|8 +(adj)|same +(adj)|matching|twin|twinned|matched +(noun)|extra|artifact|artefact +(noun)|duplication|copy +(verb)|reduplicate|double|repeat|replicate|reproduce +(verb)|twin|parallel|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|reproduce +(verb)|double|multiply|manifold +duplication|2 +(noun)|duplicate|copy +(noun)|gemination|copying +duplicator|1 +(noun)|copier|apparatus|setup +duplicidentata|1 +(noun)|Duplicidentata|lagomorph|gnawing mammal +duplicitous|1 +(adj)|ambidextrous|deceitful|double-dealing|Janus-faced|two-faced|double-faced|double-tongued|dishonest |dishonorable +duplicity|2 +(noun)|fraudulence|misrepresentation|deceit|deception +(noun)|double-dealing|deception|deceit|dissembling|dissimulation +dura|1 +(noun)|dura mater|meninx|meninges +dura mater|1 +(noun)|dura|meninx|meninges +durability|1 +(noun)|lastingness|enduringness|strength|permanence|permanency +durable|3 +(adj)|lasting|long-lasting|long-lived|long +(adj)|long-wearing|serviceable +(adj)|indestructible|perdurable|undestroyable|imperishable +durable-press fabric|1 +(noun)|permanent press|permanent-press fabric|durable press|fabric|cloth|material|textile +durable goods|1 +(noun)|durables|consumer durables|consumer goods +durable press|1 +(noun)|permanent press|permanent-press fabric|durable-press fabric|fabric|cloth|material|textile +durables|1 +(noun)|durable goods|consumer durables|consumer goods +durabolin|1 +(noun)|nandrolone|Durabolin|Kabolin|androgen|androgenic hormone +dural|1 +(adj)|meninx|meninges +duralumin|1 +(noun)|Duralumin|alloy|metal +duramen|1 +(noun)|heartwood|wood +durance|1 +(noun)|captivity|imprisonment|incarceration|immurement +durango|1 +(noun)|Durango|Victoria de Durango|city|metropolis|urban center +durant|1 +(noun)|Durant|Will Durant|William James Durant|historian|historiographer +durante|1 +(noun)|Durante|Jimmy Durante|comedian|comic +duration|3 +(noun)|continuance|time period|period of time|period +(noun)|continuance|time +(noun)|length|temporal property +durative|1 +(noun)|durative aspect|aspect +durative aspect|1 +(noun)|durative|aspect +durazzo|1 +(noun)|Durres|Durazzo|city|metropolis|urban center|port +durban|1 +(noun)|Durban|city|metropolis|urban center|port +durbar|1 +(noun)|room +durer|1 +(noun)|Durer|Albrecht Durer|old master|engraver +duress|1 +(noun)|force +durga|1 +(noun)|Durga|Hindu deity +durham|2 +(noun)|Durham|city|metropolis|urban center +(noun)|Durham|shorthorn|beef|beef cattle +durian|2 +(noun)|durion|durian tree|Durio zibethinus|fruit tree +(noun)|edible fruit +durian tree|1 +(noun)|durian|durion|Durio zibethinus|fruit tree +durio|1 +(noun)|Durio|genus Durio|dilleniid dicot genus +durio zibethinus|1 +(noun)|durian|durion|durian tree|Durio zibethinus|fruit tree +durion|1 +(noun)|durian|durian tree|Durio zibethinus|fruit tree +durkheim|1 +(noun)|Durkheim|Emile Durkheim|sociologist +durmast|1 +(noun)|Quercus petraea|Quercus sessiliflora|white oak +durra|1 +(noun)|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum +durrell|1 +(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer|author +durres|1 +(noun)|Durres|Durazzo|city|metropolis|urban center|port +durum|1 +(noun)|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat|corn +durum wheat|1 +(noun)|durum|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat|corn +dusanbe|1 +(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital +duse|1 +(noun)|Duse|Eleonora Duse|actress +dushanbe|1 +(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital +dusicyon|1 +(noun)|Dusicyon|genus Dusicyon|mammal genus +dusicyon cancrivorus|1 +(noun)|crab-eating dog|crab-eating fox|Dusicyon cancrivorus|wild dog +dusk|1 +(noun)|twilight|gloaming|nightfall|evenfall|fall|crepuscule|crepuscle|hour|time of day +duskiness|2 +(noun)|dimness|semidarkness +(noun)|darkness|swarthiness|complexion|skin color|skin colour +dusky|2 +(adj)|twilight|twilit|dark +(adj)|dark-skinned|swart|swarthy|brunet |brunette +dusky-footed woodrat|1 +(noun)|Neotoma fuscipes|packrat|pack rat|trade rat|bushytail woodrat|Neotoma cinerea +dusky salamander|1 +(noun)|salamander +dusky shark|1 +(noun)|Carcharhinus obscurus|requiem shark +dusseldorf|1 +(noun)|Dusseldorf|city|metropolis|urban center +dust|7 +(noun)|particulate|particulate matter +(noun)|debris|junk|rubble|detritus|rubbish|trash|scrap +(noun)|material|stuff +(verb)|clean|make clean +(verb)|smear|blur|smudge|smutch +(verb)|cover +(verb)|scatter|sprinkle|dot|disperse|discharge +dust-covered|1 +(adj)|dusty|dirty |soiled|unclean +dust bag|1 +(noun)|vacuum bag|bag +dust bowl|1 +(noun)|geographical area|geographic area|geographical region|geographic region +dust cloud|1 +(noun)|cloud +dust coat|1 +(noun)|duster|gaberdine|gabardine|smock|coverall +dust contamination|2 +(noun)|contamination|taint +(noun)|contamination|pollution +dust cover|3 +(noun)|book jacket|dust jacket|dust wrapper|promotion|publicity|promotional material|packaging|jacket +(noun)|dust sheet|piece of cloth|piece of material +(noun)|protective covering|protective cover|protection +dust devil|1 +(noun)|whirlwind +dust jacket|1 +(noun)|book jacket|dust cover|dust wrapper|promotion|publicity|promotional material|packaging|jacket +dust mop|2 +(noun)|dustmop|dry mop|swab|swob|mop +(noun)| +dust sheet|1 +(noun)|dust cover|piece of cloth|piece of material +dust storm|1 +(noun)|duster|sandstorm|sirocco|windstorm +dust wrapper|1 +(noun)|book jacket|dust cover|dust jacket|promotion|publicity|promotional material|packaging|jacket +dustbin|1 +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|trash barrel|trash bin|bin +dustcart|1 +(noun)|garbage truck|truck|motortruck +dustcloth|1 +(noun)|dustrag|duster|piece of cloth|piece of material +duster|4 +(noun)|dust storm|sandstorm|sirocco|windstorm +(noun)|gaberdine|gabardine|smock|dust coat|coverall +(noun)|dustcloth|dustrag|piece of cloth|piece of material +(noun)|pitch|delivery +dustin hoffman|1 +(noun)|Hoffman|Dustin Hoffman|actor|histrion|player|thespian|role player +dusting powder|1 +(noun)|toilet powder|bath powder|powder +dustlike|1 +(adj)|fine +dustman|1 +(noun)|garbage man|garbage collector|refuse collector|employee +dustmop|1 +(noun)|dust mop|dry mop|swab|swob|mop +dustpan|2 +(noun)|dustpanful|containerful +(noun)|receptacle +dustpanful|1 +(noun)|dustpan|containerful +dustrag|1 +(noun)|dustcloth|duster|piece of cloth|piece of material +dustup|1 +(noun)|quarrel|wrangle|row|words|run-in|dispute|difference|difference of opinion|conflict +dusty|1 +(adj)|dust-covered|dirty |soiled|unclean +dusty miller|5 +(noun)|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite|composite plant +(noun)|Senecio cineraria|Cineraria maritima|shrub|bush +(noun)|Centaurea cineraria|Centaurea gymnocarpa|centaury +(noun)|beach wormwood|old woman|Artemisia stelleriana|wormwood +(noun)|mullein pink|rose campion|gardener's delight|Lychnis coronaria|lychnis|catchfly +dutch|3 +(adj)|Dutch|European country|European nation +(noun)|Dutch|Dutch people|nation|land|country|a people +(noun)|Dutch|West Germanic|West Germanic language +dutch-elm beetle|1 +(noun)|Dutch-elm beetle|Scolytus multistriatus|bark beetle +dutch-processed cocoa|1 +(noun)|Dutch-processed cocoa|cocoa powder +dutch auction|1 +(noun)|selling|merchandising|marketing +dutch capital|1 +(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital +dutch case-knife bean|1 +(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +dutch clover|1 +(noun)|white clover|shamrock|Trifolium repens|clover|trefoil +dutch courage|1 +(noun)|Dutch courage|courage|courageousness|bravery +dutch door|1 +(noun)|Dutch door|half door|exterior door|outside door +dutch east indies|1 +(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country|state|land +dutch elm|1 +(noun)|Dutch elm|Ulmus hollandica|elm|elm tree +dutch elm disease|1 +(noun)|Dutch elm disease|plant disease +dutch elm fungus|1 +(noun)|Dutch elm fungus|Ceratostomella ulmi|fungus +dutch florin|1 +(noun)|guilder|gulden|florin|Dutch florin|Dutch monetary unit +dutch guiana|1 +(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country|South American nation +dutch hoe|1 +(noun)|scuffle|scuffle hoe|Dutch hoe|hoe +dutch iris|2 +(noun)|Dutch iris|Iris tingitana|beardless iris +(noun)|Dutch iris|Iris filifolia|beardless iris +dutch leonard|1 +(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer|author +dutch monetary unit|1 +(noun)|Dutch monetary unit|monetary unit +dutch oven|2 +(noun)|Dutch oven|oven +(noun)|Dutch oven|pot +dutch people|1 +(noun)|Dutch|Dutch people|nation|land|country|a people +dutch treat|1 +(noun)|Dutch treat|dining +dutch uncle|1 +(noun)|Dutch uncle|counselor|counsellor +dutchman|1 +(noun)|Netherlander|Dutchman|Hollander|European +dutchman's-pipe|1 +(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort|Aristolochia clematitis +dutchman's breeches|1 +(noun)|Dutchman's breeches|Dicentra cucullaria|herb|herbaceous plant +duteous|1 +(adj)|dutiful|obedient +dutiable|1 +(adj)|taxable |nonexempt +dutiful|1 +(adj)|duteous|obedient +dutifulness|1 +(noun)|piety|piousness +duty|3 +(noun)|work +(noun)|responsibility|obligation|social control +(noun)|tariff|indirect tax +duty-bound|1 +(adj)|obliged|obligated +duty-free|1 +(adj)|nontaxable |exempt +duty assignment|1 +(noun)|assignment|duty +duty period|1 +(noun)|shift|work shift|hours +duty tour|1 +(noun)|enlistment|hitch|term of enlistment|tour of duty|tour|time period|period of time|period +duvalier|2 +(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator|potentate +(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator|potentate +duvet|1 +(noun)|eiderdown|continental quilt|quilt|comforter|puff +dvd|1 +(noun)|videodisk|videodisc|DVD|optical disk|optical disc +dvorak|1 +(noun)|Dvorak|Antonin Dvorak|composer +dwarf|4 +(noun)|midget|nanus|small person +(noun)|gnome|fairy|faery|faerie|sprite +(verb)|shadow|overshadow|dominate|command|overlook|overtop +(verb)|stunt +dwarf-white trillium|1 +(noun)|snow trillium|early wake-robin|trillium|wood lily|wake-robin +dwarf astilbe|1 +(noun)|Astilbe chinensis pumila|astilbe +dwarf banana|1 +(noun)|Musa acuminata|banana|banana tree +dwarf bilberry|1 +(noun)|dwarf blueberry|Vaccinium caespitosum|blueberry|blueberry bush +dwarf blueberry|1 +(noun)|dwarf bilberry|Vaccinium caespitosum|blueberry|blueberry bush +dwarf buckeye|1 +(noun)|bottlebrush buckeye|horse chestnut|buckeye|Aesculus hippocastanum +dwarf buffalo|1 +(noun)|anoa|Anoa depressicornis|Old World buffalo|buffalo +dwarf cape gooseberry|1 +(noun)|strawberry tomato|Physalis pruinosa|ground cherry|husk tomato +dwarf chestnut|1 +(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|Castanea pumila|chestnut|chestnut tree +dwarf chinkapin oak|1 +(noun)|dwarf chinquapin oak|dwarf oak|Quercus prinoides|chestnut oak +dwarf chinquapin oak|1 +(noun)|dwarf chinkapin oak|dwarf oak|Quercus prinoides|chestnut oak +dwarf cornel|1 +(noun)|bunchberry|crackerberry|pudding berry|Cornus canadensis|dogwood|dogwood tree|cornel +dwarf daisy|1 +(noun)|woolly daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower|wild flower +dwarf dandelion|1 +(noun)|Krigia dandelion|Krigia bulbosa|krigia +dwarf elder|2 +(noun)|danewort|Sambucus ebulus|elder|elderberry bush +(noun)|bristly sarsaparilla|bristly sarsparilla|Aralia hispida|subshrub|suffrutex +dwarf elm|1 +(noun)|Siberian elm|Chinese elm|Ulmus pumila|elm|elm tree +dwarf flowering almond|1 +(noun)|Prunus glandulosa|almond tree +dwarf golden chinkapin|1 +(noun)|Chrysolepis sempervirens|shrub|bush +dwarf gray willow|1 +(noun)|sage willow|Salix tristis|willow|willow tree +dwarf hulsea|1 +(noun)|Hulsea nana|wildflower|wild flower +dwarf iris|2 +(noun)|vernal iris|Iris verna|iris|flag|fleur-de-lis|sword lily +(noun)|Iris cristata|iris|flag|fleur-de-lis|sword lily +dwarf juniper|2 +(noun)|ground cedar|Juniperus communis depressa|juniper +(noun)|savin|Juniperus sabina|juniper +dwarf lycopod|1 +(noun)|rock spikemoss|Selaginella rupestris|spikemoss|spike moss|little club moss +dwarf maple|1 +(noun)|Rocky-mountain maple|Acer glabrum|maple +dwarf mountain pine|1 +(noun)|Swiss mountain pine|mountain pine|mugho pine|mugo pine|Pinus mugo|pine|pine tree|true pine +dwarf mulberry|1 +(noun)|cloudberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +dwarf nipplewort|1 +(noun)|lamb succory|Arnoseris minima|herb|herbaceous plant +dwarf oak|1 +(noun)|dwarf chinkapin oak|dwarf chinquapin oak|Quercus prinoides|chestnut oak +dwarf phlox|1 +(noun)|moss pink|mountain phlox|moss phlox|Phlox subulata|phlox +dwarf pipefish|1 +(noun)|Syngnathus hildebrandi|pipefish|needlefish +dwarf pocket rat|1 +(noun)|kangaroo mouse|pocket rat +dwarf russian almond|1 +(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree +dwarf sperm whale|1 +(noun)|Kogia simus|toothed whale +dwarf spurge|1 +(noun)|Euphorbia exigua|spurge +dwarf sumac|1 +(noun)|mountain sumac|black sumac|shining sumac|Rhus copallina|sumac|sumach|shumac +dwarf tulip|1 +(noun)|Tulipa armena|Tulipa suaveolens|tulip +dwarf willow|1 +(noun)|Salix herbacea|willow|willow tree +dwarfish|1 +(adj)|small +dwarfishness|1 +(noun)|smallness|littleness +dwarfism|1 +(noun)|nanism|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +dweeb|1 +(noun)|swot|grind|nerd|wonk|learner|scholar|assimilator +dwell|4 +(verb)|brood|worry|care|dwell on +(verb)|consist|lie|belong|lie in|exist|be +(verb)|shack|reside|live|inhabit|people|populate|domicile|domiciliate|be +(verb)|harp|repeat|reiterate|ingeminate|iterate|restate|retell +dwell on|1 +(verb)|linger over|hesitate|waver|waffle +dweller|1 +(noun)|inhabitant|denizen|indweller|person|individual|someone|somebody|mortal|human|soul +dwelling|1 +(noun)|home|domicile|abode|habitation|dwelling house|housing|lodging|living accommodations +dwelling house|1 +(noun)|dwelling|home|domicile|abode|habitation|housing|lodging|living accommodations +dwight d. eisenhower|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +dwight david eisenhower|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +dwight davis|1 +(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player +dwight eisenhower|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +dwight filley davis|1 +(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player +dwight lyman moody|1 +(noun)|Moody|Dwight Lyman Moody|evangelist|revivalist|gospeler|gospeller +dwindle|1 +(verb)|dwindle away|dwindle down|decrease|diminish|lessen|fall +dwindle away|1 +(verb)|dwindle|dwindle down|decrease|diminish|lessen|fall +dwindle down|1 +(verb)|dwindle|dwindle away|decrease|diminish|lessen|fall +dwindling|2 +(adj)|tapering|tapering off|decreasing +(noun)|dwindling away|decrease|lessening|drop-off +dwindling away|1 +(noun)|dwindling|decrease|lessening|drop-off +dy|1 +(noun)|dysprosium|Dy|atomic number 66|metallic element|metal +dyad|1 +(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|duad|two|2|II|deuce +dyadic|1 +(adj)|two|2|II|deuce +dyadic operation|1 +(noun)|operation +dyarchy|1 +(noun)|diarchy|political system|form of government +dyaus|1 +(noun)|Dyaus|Dyaus-pitar|Hindu deity +dyaus-pitar|1 +(noun)|Dyaus|Dyaus-pitar|Hindu deity +dybbuk|1 +(noun)|dibbuk|devil|fiend|demon|daemon|daimon +dye|2 +(noun)|dyestuff|coloring material|colouring material|color|colour +(verb)|discolor|discolour|colour|color +dye-works|1 +(noun)|workshop|shop +dyed|1 +(adj)|bleached|colored|coloured|artificial |unreal +dyeing|1 +(noun)|coloring|colouring +dyer|1 +(noun)|skilled worker|trained worker +dyer's-broom|1 +(noun)|woodwaxen|dyer's greenweed|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom +dyer's greenweed|1 +(noun)|woodwaxen|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom +dyer's mignonette|1 +(noun)|dyer's rocket|weld|Reseda luteola|reseda +dyer's rocket|1 +(noun)|dyer's mignonette|weld|Reseda luteola|reseda +dyer's weed|1 +(noun)|Solidago rugosa|goldenrod +dyer's woad|1 +(noun)|Isatis tinctoria|woad +dyer's woodruff|1 +(noun)|Asperula tinctoria|woodruff +dyers' chamomile|1 +(noun)|yellow chamomile|golden marguerite|Anthemis tinctoria|composite|composite plant +dyestuff|1 +(noun)|dye|coloring material|colouring material|color|colour +dyeweed|1 +(noun)|woodwaxen|dyer's greenweed|dyer's-broom|greenweed|whin|woadwaxen|Genista tinctoria|broom +dyewood|1 +(noun)|wood +dying|3 +(adj)|dying |moribund|last +(adj)|anxious|eager +(noun)|death|demise|end|ending +dyirbal|1 +(noun)|Dyirbal|Jirrbal|Australian|Aboriginal Australian +dyke|3 +(noun)|butch|dike|lesbian|tribade|gay woman +(noun)|dam|dike|levee|barrier +(verb)|dike|enclose|inclose|shut in +dylan|2 +(noun)|Dylan|Bob Dylan|songwriter|songster|ballad maker|singer|vocalist|vocalizer|vocaliser +(noun)|Dylan|Celtic deity +dylan marlais thomas|1 +(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet +dylan thomas|1 +(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet +dynamic|4 +(adj)|dynamic |dynamical|can-do|changing|ever-changing|driving|impulsive|energizing|energising|kinetic|projectile|propellant|propellent|propelling|propulsive|renascent|resurgent|self-propelled|self-propelling|slashing|high-octane|high-powered|high-power|high-voltage|high-energy|energetic +(adj)|mechanics +(adj)|active +(noun)|moral force|incentive|inducement|motivator +dynamic balance|1 +(noun)|equilibrium +dynamic electricity|1 +(noun)|current electricity|electricity +dynamic headroom|1 +(noun)|headroom|high fidelity|hi-fi +dynamic viscosity|1 +(noun)|coefficient of viscosity|absolute viscosity|coefficient +dynamical|1 +(adj)|dynamic |can-do|changing|ever-changing|driving|impulsive|energizing|energising|kinetic|projectile|propellant|propellent|propelling|propulsive|renascent|resurgent|self-propelled|self-propelling|slashing|high-octane|high-powered|high-power|high-voltage|high-energy|energetic +dynamical system|1 +(noun)|phase space +dynamics|2 +(noun)|kinetics|mechanics +(noun)|moral force|dynamic|incentive|inducement|motivator +dynamise|2 +(verb)|dynamize|change|alter|modify +(verb)|dynamize|change|alter|modify +dynamism|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|pizzazz|pizzaz|oomph|zing|activeness|activity +dynamite|2 +(noun)|explosive compound +(verb)|explode|detonate|blow up|set off +dynamiter|1 +(noun)|dynamitist|revolutionist|revolutionary|subversive|subverter +dynamitist|1 +(noun)|dynamiter|revolutionist|revolutionary|subversive|subverter +dynamize|2 +(verb)|dynamise|change|alter|modify +(verb)|dynamise|change|alter|modify +dynamo|1 +(noun)|generator +dynamometer|1 +(noun)|ergometer|measuring instrument|measuring system|measuring device +dynapen|1 +(noun)|dicloxacillin|Dynapen|antibacterial|antibacterial drug|bactericide +dynast|1 +(noun)|ruler|swayer +dynastic|1 +(adj)|family|family line|folk|kinfolk|kinsfolk|sept|phratry +dynasty|1 +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|phratry +dyne|1 +(noun)|force unit +dysaphia|1 +(noun)|disorder|upset +dysarthria|1 +(noun)|speech disorder|speech defect|defect of speech +dyscalculia|1 +(noun)|learning disorder|learning disability +dyschezia|1 +(noun)|constipation|irregularity +dyscrasia|1 +(noun)|ill health|unhealthiness|health problem +dysdercus|1 +(noun)|Dysdercus|genus Dysdercus|arthropod genus +dysentery|1 +(noun)|infectious disease +dysfunction|1 +(noun)|disfunction|pathology +dysfunctional|2 +(adj)|impaired +(adj)|nonadaptive|maladaptive +dysgenesis|1 +(noun)|sterility|infertility +dysgenic|1 +(adj)|dysgenic |cacogenic|life science|bioscience +dysgenics|1 +(noun)|cacogenics|life science|bioscience +dysgraphia|1 +(noun)|learning disorder|learning disability +dyskinesia|1 +(noun)|nervous disorder|neurological disorder|neurological disease +dyslectic|1 +(adj)|dyslexic|impaired +dyslexia|1 +(noun)|learning disorder|learning disability +dyslexic|2 +(adj)|learning disorder|learning disability +(adj)|dyslectic|impaired +dyslogia|1 +(noun)|speech disorder|speech defect|defect of speech +dyslogistic|1 +(adj)|dislogistic|pejorative|uncomplimentary +dysmenorrhea|1 +(noun)|pain|hurting +dysomia|1 +(noun)|disability|disablement|handicap|impairment +dysosmia|1 +(noun)|parosamia|ofactory impairment|disorder|upset +dysostosis multiplex|1 +(noun)|Hurler's syndrome|Hurler's disease|gargoylism|lipochondrodystrophy|mucopolysaccharidosis|monogenic disorder|monogenic disease +dyspepsia|1 +(noun)|indigestion|stomach upset|upset stomach|symptom +dyspeptic|3 +(adj)|ill |sick +(adj)|atrabilious|bilious|liverish|ill-natured +(noun)|sick person|diseased person|sufferer +dysphagia|1 +(noun)|disorder|upset +dysphemism|1 +(noun)|saying|expression|locution +dysphemistic|1 +(adj)|dysphemistic |offensive +dysphonia|1 +(noun)|speech disorder|speech defect|defect of speech +dysphoria|1 +(noun)|discontentment|discontent|discontentedness|depression +dysphoric|1 +(adj)|dysphoric |distressed|unhappy|dejected|unhappy +dysplasia|1 +(noun)|abnormality|abnormalcy|abnormal condition +dysplastic|1 +(adj)|abnormality|abnormalcy|abnormal condition +dyspnea|1 +(noun)|dyspnoea|symptom +dyspneal|1 +(adj)|breathless |dyspneic|dyspnoeic|dyspnoeal|asphyxiating|smothering|suffocating|suffocative|blown|gasping|out of breath|panting|pursy|short-winded|winded|unventilated +dyspneic|1 +(adj)|breathless |dyspnoeic|dyspneal|dyspnoeal|asphyxiating|smothering|suffocating|suffocative|blown|gasping|out of breath|panting|pursy|short-winded|winded|unventilated +dyspnoea|1 +(noun)|dyspnea|symptom +dyspnoeal|1 +(adj)|breathless |dyspneic|dyspnoeic|dyspneal|asphyxiating|smothering|suffocating|suffocative|blown|gasping|out of breath|panting|pursy|short-winded|winded|unventilated +dyspnoeic|1 +(adj)|breathless |dyspneic|dyspneal|dyspnoeal|asphyxiating|smothering|suffocating|suffocative|blown|gasping|out of breath|panting|pursy|short-winded|winded|unventilated +dysprosium|1 +(noun)|Dy|atomic number 66|metallic element|metal +dyssynergia|1 +(noun)|ataxia|ataxy|motor ataxia|nervous disorder|neurological disorder|neurological disease +dysthymia|1 +(noun)|dysthymic depression|depressive disorder|clinical depression|depression +dysthymic depression|1 +(noun)|dysthymia|depressive disorder|clinical depression|depression +dystopia|2 +(noun)|state +(noun)|fiction +dystopian|2 +(adj)|state +(adj)|dystopian +dystrophy|2 +(noun)|muscular dystrophy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +(noun)|degenerative disorder +dysuria|1 +(noun)|disorder|upset +dytiscidae|1 +(noun)|Dytiscidae|family Dytiscidae|arthropod family +dyushambe|1 +(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital +dziggetai|1 +(noun)|chigetai|Equus hemionus hemionus|onager|Equus hemionus +e|5 +(noun)|vitamin E|tocopherol|E|fat-soluble vitamin|antioxidant +(noun)|einsteinium|Es|E|atomic number 99|metallic element|metal +(noun)|east|due east|E|cardinal compass point +(noun)|2.718282...|irrational number +(noun)|E|letter|letter of the alphabet|alphabetic character +e'er|1 +(adv)|always|ever +e-bomb|1 +(noun)|microwave bomb|E-bomb|bomb +e-mail|4 +(noun)|electronic mail|email|electronic communication +(noun)| +(verb)|email|netmail|telecommunicate +(verb)| +e-mycin|1 +(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +e. a. von willebrand|1 +(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor|doc|physician|MD|Dr.|medico +e. b. white|1 +(noun)|White|E. B. White|Elwyn Brooks White|writer|author +e. coli|1 +(noun)|Escherichia coli|E. coli|escherichia +e. e. cummings|1 +(noun)|cummings|Edward Estlin Cummings|writer|author +e. g. marshall|1 +(noun)|Marshall|E. G. Marshall|actor|histrion|player|thespian|role player +e. h. harriman|1 +(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman|man of affairs +e. h. weber|1 +(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist +e. l. doctorow|1 +(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer|author +e. o. lawrence|1 +(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist +e. o. wilson|1 +(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist|bugologist|bug-hunter +e. t. a. hoffmann|1 +(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer|author +e. t. s. walton|1 +(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist +e. w. morley|1 +(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist +e.g.|1 +(adv)|for example|for instance +e.s.p.|2 +(noun)|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena|psychic phenomenon|parapsychology +(noun)| +e layer|1 +(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region|part +e region|1 +(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region|part +ea|1 +(noun)|Ea|Semitic deity +each|2 +(adj)|all +(adv)|to each one|for each one|from each one|apiece +each day|1 +(adv)|daily|every day +each month|1 +(adv)|monthly|every month +each week|1 +(adv)|hebdomadally|weekly|every week +each year|2 +(adv)|annually|yearly|every year +(adv)|per annum|p.a.|per year|annually +eacles|1 +(noun)|Eacles|genus Eacles|arthropod genus +eacles imperialis|1 +(noun)|imperial moth|Eacles imperialis|saturniid|saturniid moth +eadweard muybridge|1 +(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor|discoverer|artificer +eadwig|1 +(noun)|Edwy|Eadwig|King of England|King of Great Britain +eager|3 +(adj)|eager |anxious|dying|hot|impatient|raring|overeager +(adj)|avid|great|zealous|enthusiastic +(noun)|tidal bore|bore|eagre|aegir|tidal flow|tidal current +eager beaver|1 +(noun)|busy bee|live wire|sharpie|sharpy|actor|doer|worker +eagerly|1 +(adv)|thirstily +eagerness|1 +(noun)|avidity|avidness|keenness|enthusiasm +eagle|5 +(noun)|bird of Jove|bird of prey|raptor|raptorial bird +(noun)|score +(noun)|coin +(noun)|emblem|allegory +(verb)|score|hit|tally|rack up +eagle-eyed|1 +(adj)|keen-sighted|farseeing|longsighted|farsighted |presbyopic +eagle ray|1 +(noun)|ray +eagle scout|1 +(noun)|boy scout +eaglet|1 +(noun)|eagle|bird of Jove|young bird +eagre|1 +(noun)|tidal bore|bore|aegir|eager|tidal flow|tidal current +eames|1 +(noun)|Eames|Charles Eames|interior designer|designer|interior decorator|house decorator|room decorator|decorator +eames chair|1 +(noun)|Eames chair|chair +eamon de valera|1 +(noun)|de Valera|Eamon de Valera|statesman|solon|national leader +ear|4 +(noun)|sense organ|sensory receptor|receptor +(noun)|auricle|pinna|cartilaginous structure +(noun)|attention|attending +(noun)|spike|capitulum|fruit +ear-nose-and-throat doctor|1 +(noun)|ENT man|otolaryngologist|otorhinolaryngologist|rhinolaryngologist|specialist|medical specialist +ear-shaped|1 +(adj)|auriform|rounded +ear-shell|1 +(noun)|abalone|gastropod|univalve +ear canal|1 +(noun)|auditory meatus|acoustic meatus|auditory canal|external auditory canal|meatus +ear doctor|1 +(noun)|ear specialist|otologist|specialist|medical specialist +ear fungus|1 +(noun)|Jew's-ear|Jew's-ears|Auricularia auricula|jelly fungus +ear hole|1 +(noun)|hole +ear lobe|2 +(noun)|earlobe|lobe +(noun)| +ear specialist|1 +(noun)|ear doctor|otologist|specialist|medical specialist +ear trumpet|1 +(noun)|hearing aid|acoustic device +earache|1 +(noun)|otalgia|ache|aching +eardrop|1 +(noun)|pendant earring|drop earring|earring +eardrum|1 +(noun)|tympanum|tympanic membrane|myringa|membrane|tissue layer +eared|2 +(adj)|dog-eared|worn +(adj)|eared |auriculate|auriculated|lop-eared +eared grebe|1 +(noun)|black-necked grebe|Podiceps nigricollis|grebe +eared seal|1 +(noun)|seal +earflap|1 +(noun)|earlap|flap +earful|2 +(noun)|gossip|comment|scuttlebutt +(noun)|castigation|bawling out|chewing out|upbraiding|going-over|dressing down|rebuke|reproof|reproval|reprehension|reprimand +earhart|1 +(noun)|Earhart|Amelia Earhart|aviator|aeronaut|airman|flier|flyer +earl|1 +(noun)|Earl|peer +earl marshal|1 +(noun)|Earl Marshal|peer +earl of leicester|1 +(noun)|Montfort|Simon de Montfort|Earl of Leicester|Earl +earl of warwick|1 +(noun)|Warwick|Earl of Warwick|Richard Neville|the Kingmaker|statesman|solon|national leader +earl russell|1 +(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician|logistician|philosopher +earl warren|1 +(noun)|Warren|Earl Warren|jurist|legal expert +earlap|1 +(noun)|earflap|flap +earldom|2 +(noun)|rank +(noun)|domain|demesne|land +earleaved umbrella tree|1 +(noun)|Magnolia fraseri|magnolia +earless|1 +(adj)|earless +earless lizard|1 +(noun)|iguanid|iguanid lizard +earless seal|1 +(noun)|true seal|hair seal|seal +earlier|10 +(adj)|earliest|early +(adj)|early |aboriginal|primal|primeval|primaeval|primordial|advance|beforehand|archean|archaean|archeozoic|archaeozoic|azoic|earliest|earlyish|matutinal|premature|untimely|previous|premature|proterozoic|proto|wee|first +(adj)|early |archaic|primitive|new|young|crude|primitive|rude|embryonic|embryotic|incipient|inchoate|precocious +(adj)|early|former|other|past +(adj)|early|young |immature +(adj)|early |Old +(adj)|early|future +(adv)|before +(adv)|sooner +(adv)|in the first place|in the beginning|to begin with|originally +earliest|8 +(adj)|earlier|early +(adj)|early |aboriginal|primal|primeval|primaeval|primordial|advance|beforehand|archean|archaean|archeozoic|archaeozoic|azoic|earlier|earlyish|matutinal|premature|untimely|previous|premature|proterozoic|proto|wee|first +(adj)|early |archaic|primitive|new|young|crude|primitive|rude|embryonic|embryotic|incipient|inchoate|precocious +(adj)|early|former|other|past +(adj)|early|young |immature +(adj)|early |Old +(adj)|early|future +(adv)|soonest +earliness|1 +(noun)|timing +earlobe|1 +(noun)|ear lobe|lobe +early|9 +(adj)|early |aboriginal|primal|primeval|primaeval|primordial|advance|beforehand|archean|archaean|archeozoic|archaeozoic|azoic|earlier|earliest|earlyish|matutinal|premature|untimely|previous|premature|proterozoic|proto|wee|first +(adj)|early |archaic|primitive|new|young|crude|primitive|rude|embryonic|embryotic|incipient|inchoate|precocious +(adj)|former|other|past +(adj)|young |immature +(adj)|early |Old +(adj)|future +(adv)|early on +(adv)|ahead of time|too soon +(adv)|betimes +early-morning hour|1 +(noun)|hour|time of day +early bird|2 +(noun)|arrival|arriver|comer +(noun)|riser +early childhood|1 +(noun)|infancy|babyhood|time of life +early coral root|1 +(noun)|pale coral root|Corallorhiza trifida|coral root +early days|1 +(noun)|youth|time period|period of time|period +early morel|1 +(noun)|Verpa bohemica|Verpa|bell morel +early on|1 +(adv)|early +early purple orchid|1 +(noun)|male orchis|Orchis mascula|orchis +early spider orchid|1 +(noun)|Ophrys sphegodes|spider orchid +early wake-robin|1 +(noun)|dwarf-white trillium|snow trillium|trillium|wood lily|wake-robin +early warning radar|1 +(noun)|radar|microwave radar|radio detection and ranging|radiolocation +early warning system|1 +(noun)|network|electronic network +early winter cress|1 +(noun)|Belle Isle cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +earlyish|1 +(adj)|early +earmark|3 +(noun)|marker|marking|mark +(noun)|hallmark|trademark|stylemark|characteristic +(verb)|allow|appropriate|set aside|reserve|assign|allot|portion +earmuff|1 +(noun)|covering +earn|2 +(verb)|gain|take in|clear|make|realize|realise|pull in|bring in|get|acquire +(verb)|garner|get|acquire +earned|1 +(adj)|earned |attained +earned run|1 +(noun)|run|tally +earner|1 +(noun)|wage earner|jobholder +earnest|4 +(adj)|in earnest|sincere|solemn|serious +(adj)|dear|devout|heartfelt|sincere +(adj)|businesslike|purposeful +(noun)|security|surety +earnest money|1 +(noun)|earnest +earnestly|1 +(adv)|seriously|in earnest +earnestness|2 +(noun)|seriousness|sincerity|gravity|solemnity +(noun)|seriousness|serious-mindedness|sincerity|trait +earning per share|1 +(noun)|net income|net|net profit|lucre|profit|profits|earnings +earnings|2 +(noun)|net income|net|net profit|lucre|profit|profits|income +(noun)|wage|pay|remuneration|salary|regular payment +earnings before interest taxes depreciation and amortization|1 +(noun)|EBITDA|Earnings Before Interest Taxes Depreciation and Amortization|income +earnings report|1 +(noun)|income statement|operating statement|profit-and-loss statement|statement|financial statement +earphone|1 +(noun)|earpiece|headphone|phone|electro-acoustic transducer +earpiece|1 +(noun)|earphone|headphone|phone|electro-acoustic transducer +earreach|1 +(noun)|earshot|hearing|range|reach +earring|1 +(noun)|jewelry|jewellery +earshot|1 +(noun)|earreach|hearing|range|reach +earsplitting|1 +(adj)|deafening|roaring|thunderous|thundery|loud +earth|9 +(noun)|Earth|world|globe|terrestrial planet +(noun)|ground|material|stuff +(noun)|land|dry land|ground|solid ground|terra firma|object|physical object +(noun)|Earth|location +(noun)|element +(noun)|worldly concern|earthly concern|world|concern +(noun)|ground|connection|connexion|connector|connecter|connective +(verb)|hide|hide out +(verb)|ground +earth's crust|1 +(noun)|crust|Earth's crust|layer +earth's surface|1 +(noun)|surface|Earth's surface|layer +earth-ball|2 +(noun)|truffle|earthnut|fungus +(noun)|earthball|false truffle|puffball|hard-skinned puffball|fungus +earth-closet|1 +(noun)|outhouse|privy|jakes|outbuilding +earth-god|1 +(noun)|deity|divinity|god|immortal +earth-goddess|1 +(noun)|goddess +earth-nut pea|1 +(noun)|heath pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine +earth-received time|1 +(noun)|Earth-received time|ERT|coordinated universal time|UTC +earth-tongue|2 +(noun)|earthtongue|fungus +(noun)| +earth almond|1 +(noun)|chufa|yellow nutgrass|ground almond|rush nut|Cyperus esculentus|sedge +earth color|1 +(noun)|mineral|pigment +earth mother|1 +(noun)|earth-goddess +earth science|1 +(noun)|natural science +earth tremor|1 +(noun)|tremor|microseism|earthquake|quake|temblor|seism +earth up|1 +(verb)|land up|obstruct|obturate|impede|occlude|jam|block|close up +earth wax|1 +(noun)|ader wax|mineral wax|ozokerite|ozocerite|mineral +earthball|1 +(noun)|false truffle|puffball|hard-skinned puffball|fungus +earthborn|3 +(adj)|mortal +(adj)|human +(adj)|earthly +earthbound|2 +(adj)|earthly +(adj)|pedestrian|prosaic|prosy|uninteresting +earthen|1 +(adj)|material|stuff +earthenware|1 +(noun)|ceramic ware +earthenware jar|1 +(noun)|crock|jar +earthing|1 +(noun)|grounding|fastening|attachment +earthlike|2 +(adj)|chromatic +(adj)|earthly +earthling|1 +(noun)|tellurian|earthman|inhabitant|dweller|denizen|indweller +earthly|1 +(adj)|earthly |earthborn|earthbound|earthlike|mundane|terrene|sublunar|sublunary|terrestrial|temporal|mortal|profane|worldly +earthly concern|1 +(noun)|worldly concern|world|earth|concern +earthman|1 +(noun)|tellurian|earthling|inhabitant|dweller|denizen|indweller +earthnut|4 +(noun)|truffle|earth-ball|fungus +(noun)|Conopodium denudatum|herb|herbaceous plant +(noun)|peanut|goober|goober pea|groundnut|monkey nut|edible nut +(noun)|truffle|vegetable|veggie +earthnut pea|1 +(noun)|heath pea|earth-nut pea|tuberous vetch|Lathyrus tuberosus|vine +earthquake|2 +(noun)|quake|temblor|seism|geological phenomenon +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +earthshaking|2 +(adj)|loud +(adj)|world-shaking|world-shattering|significant |important +earthstar|1 +(noun)|fungus +earthtongue|1 +(noun)|earth-tongue|fungus +earthwork|1 +(noun)|rampart|bulwark|wall +earthworm|1 +(noun)|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +earthy|4 +(adj)|coarse|crude|gross|vulgar|indecent +(adj)|natural +(adj)|uninhibited +(adj)|down-to-earth|realistic +earwax|1 +(noun)|cerumen|wax +earwig|1 +(noun)|insect +eas|2 +(noun)|Emergency Alert System|EAS|alert|alerting +(noun)|Ea|Semitic deity +ease|9 +(noun)|easiness|simplicity|quality +(noun)|comfort|affluence|richness +(noun)|relief|comfort|comfortableness +(noun)|informality|naturalness +(noun)|rest|repose|relaxation|inactivity +(verb)|travel|go|move|locomote|ease up +(verb)|comfort|relieve|alleviate|palliate|assuage +(verb)|facilitate|alleviate|help|assist|aid +(verb)|still|allay|relieve|comfort|soothe|console|solace +ease off|2 +(verb)|ease up|slacken off|flag|decrease|diminish|lessen|fall +(verb)|ease up|let up|change|alter|modify +ease up|3 +(verb)|move over|give way|give|yield|move +(verb)|ease off|slacken off|flag|decrease|diminish|lessen|fall +(verb)|ease off|let up|change|alter|modify +eased|1 +(adj)|alleviated|relieved|mitigated +easel|1 +(noun)|tripod +easement|2 +(noun)|prerogative|privilege|perquisite|exclusive right +(noun)|easing|alleviation|relief|decrease|diminution|reduction|step-down +easily|2 +(adv)|easy +(adv)|well +easiness|2 +(noun)|relaxation|tranquillity|tranquility|quietness|quietude +(noun)|ease|simplicity|quality +easing|2 +(noun)|moderation|relief|change|alteration|modification +(noun)|easement|alleviation|relief|decrease|diminution|reduction|step-down +east|4 +(adj)|east |eastbound|eastward|easterly|eastern|easterly|eastern|eastern|easternmost|eastmost|eastside +(noun)|due east|E|cardinal compass point +(noun)|East|Orient|Asia +(noun)|East|eastern United States|geographical area|geographic area|geographical region|geographic region +east-central|1 +(adj)|eastern +east-sider|1 +(noun)|East-sider|New Yorker +east africa|1 +(noun)|East Africa|geographical area|geographic area|geographical region|geographic region +east african|1 +(adj)|East African|geographical area|geographic area|geographical region|geographic region +east african cedar|1 +(noun)|east African cedar|Juniperus procera|pencil cedar|pencil cedar tree +east anglia|1 +(noun)|East Anglia|geographical area|geographic area|geographical region|geographic region +east by north|1 +(noun)|EbN|compass point|point +east by south|1 +(noun)|EbS|compass point|point +east chadic|1 +(noun)|East Chadic|Chad|Chadic|Chadic language +east china sea|1 +(noun)|East China Sea|sea +east coast|1 +(noun)|East Coast|geographical area|geographic area|geographical region|geographic region +east german|2 +(adj)|East German|European country|European nation +(noun)|East German|German +east germanic|1 +(noun)|East Germanic|East Germanic language|Germanic|Germanic language +east germanic language|1 +(noun)|East Germanic|East Germanic language|Germanic|Germanic language +east germany|1 +(noun)|East Germany|German Democratic Republic|European country|European nation +east india|1 +(noun)|Malay Archipelago|East Indies|East India|archipelago +east india company|1 +(noun)|East India Company|company +east india kino|1 +(noun)|East India kino|Malabar kino|kino gum|resin|rosin +east india rosewood|1 +(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood|rosewood tree +east indian|1 +(adj)|East Indian|archipelago +east indian fig tree|1 +(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +east indian rosebay|1 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +east indian rosewood|1 +(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood|rosewood tree +east indies|1 +(noun)|Malay Archipelago|East Indies|East India|archipelago +east malaysia|1 +(noun)|East Malaysia|district|territory|territorial dominion|dominion +east midland|1 +(noun)|East Midland|Middle English +east northeast|1 +(noun)|ENE|compass point|point +east pakistan|1 +(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country|Asian nation +east pakistani|1 +(adj)|Bangladeshi|East Pakistani|Asian country|Asian nation +east river|1 +(noun)|East River|strait|sound +east saint louis|1 +(noun)|East Saint Louis|town +east side|1 +(noun)|side +east southeast|1 +(noun)|ESE|compass point|point +east sussex|1 +(noun)|East Sussex|county +east timor|1 +(noun)|East Timor|country|state|land +east tocharian|1 +(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian +east turkestan islamic movement|1 +(noun)|East Turkistan Islamic Movement|East Turkestan Islamic Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +east turkistan islamic movement|1 +(noun)|East Turkistan Islamic Movement|East Turkestan Islamic Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +east wind|1 +(noun)|easter|easterly|wind|air current|current of air +eastbound|1 +(adj)|eastward|east +easter|2 +(noun)|Easter|movable feast|moveable feast +(noun)|east wind|easterly|wind|air current|current of air +easter bunny|1 +(noun)|Easter bunny|fictional animal +easter cactus|1 +(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus +easter card|1 +(noun)|Easter card|greeting card +easter daisy|1 +(noun)|Easter daisy|stemless daisy|Townsendia Exscapa|flower +easter day|1 +(noun)|Easter Sunday|Easter Day|Christian holy day +easter egg|2 +(noun)|Easter egg|candy +(noun)|Easter egg|hard-boiled egg +easter lily|1 +(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily +easter lily vine|1 +(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine +easter sunday|1 +(noun)|Easter Sunday|Easter Day|Christian holy day +easterly|3 +(adj)|eastern|east +(adj)|eastern|east +(noun)|east wind|easter|wind|air current|current of air +eastern|5 +(adj)|east +(adj)|eastern |east-central|middle Atlantic|mid-Atlantic|northeastern|southeastern +(adj)|easterly|east +(adj)|eastern |Asian|oriental|orient +(adj)|easterly|east +eastern catholicism|1 +(noun)|Eastern Catholicism|Catholicism|Catholicity +eastern chimpanzee|1 +(noun)|Pan troglodytes schweinfurthii|chimpanzee|chimp|Pan troglodytes +eastern chinquapin|1 +(noun)|Allegheny chinkapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut|chestnut tree +eastern chipmunk|1 +(noun)|hackee|striped squirrel|ground squirrel|Tamias striatus|squirrel +eastern church|2 +(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church +(noun)|Eastern Church|Byzantine Church|Catholic Church +eastern coral snake|1 +(noun)|Micrurus fulvius|coral snake|harlequin-snake|New World coral snake +eastern cottontail|1 +(noun)|Sylvilagus floridanus|wood rabbit|cottontail|cottontail rabbit +eastern cottonwood|1 +(noun)|Eastern cottonwood|necklace poplar|Populus deltoides|cottonwood +eastern cricket frog|1 +(noun)|Acris gryllus|cricket frog +eastern dasyure|1 +(noun)|Dasyurus quoll|dasyure +eastern fence lizard|1 +(noun)|pine lizard|Sceloporus undulatus|fence lizard +eastern flowering dogwood|1 +(noun)|common white dogwood|Cornus florida|dogwood|dogwood tree|cornel +eastern fox squirrel|1 +(noun)|fox squirrel|Sciurus niger|tree squirrel +eastern gray squirrel|1 +(noun)|cat squirrel|Sciurus carolinensis|tree squirrel +eastern ground snake|1 +(noun)|Potamophis striatula|Haldea striatula|colubrid snake|colubrid +eastern hemisphere|1 +(noun)|orient|hemisphere +eastern hemlock|1 +(noun)|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock|hemlock tree +eastern highlands|1 +(noun)|Great Dividing Range|Eastern Highlands|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +eastern hop hornbeam|1 +(noun)|Eastern hop hornbeam|ironwood|ironwood tree|Ostrya virginiana|hop hornbeam +eastern indigo snake|1 +(noun)|Drymarchon corais couperi|indigo snake|gopher snake|Drymarchon corais +eastern kingbird|1 +(noun)|kingbird|Tyrannus tyrannus +eastern lowland gorilla|1 +(noun)|Gorilla gorilla grauri|gorilla|Gorilla gorilla +eastern malayo-polynesian|1 +(noun)|Oceanic|Eastern Malayo-Polynesian|Malayo-Polynesian +eastern meadowlark|1 +(noun)|Sturnella magna|meadowlark|lark +eastern narrow-mouthed toad|1 +(noun)|Gastrophryne carolinensis|frog|toad|toad frog|anuran|batrachian|salientian +eastern orthodox|2 +(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church +(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church +eastern orthodox church|1 +(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church +eastern pasque flower|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +eastern pipistrel|1 +(noun)|Pipistrellus subflavus|vespertilian bat|vespertilionid +eastern poison oak|1 +(noun)|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant +eastern red-backed salamander|1 +(noun)|Plethodon cinereus|salamander +eastern red cedar|1 +(noun)|red cedar|red juniper|Juniperus virginiana|pencil cedar|pencil cedar tree +eastern roman empire|1 +(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area|geographic area|geographical region|geographic region +eastern samoa|1 +(noun)|American Samoa|Eastern Samoa|AS|district|territory|territorial dominion|dominion +eastern silvery aster|1 +(noun)|Eastern silvery aster|aster +eastern sioux|1 +(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux|Siouan +eastern spruce|1 +(noun)|red spruce|yellow spruce|Picea rubens|spruce +eastern standard time|1 +(noun)|Eastern Time|Eastern Standard Time|EST|civil time|standard time|local time +eastern time|1 +(noun)|Eastern Time|Eastern Standard Time|EST|civil time|standard time|local time +eastern turki|1 +(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki|Turkic|Turko-Tatar|Turkic language +eastern united states|1 +(noun)|East|eastern United States|geographical area|geographic area|geographical region|geographic region +eastern white pine|1 +(noun)|American white pine|weymouth pine|Pinus strobus|white pine +eastern woodrat|1 +(noun)|Neotoma floridana|wood rat|wood-rat +easterner|1 +(noun)|inhabitant|dweller|denizen|indweller +easternmost|1 +(adj)|eastmost|east +eastertide|1 +(noun)|Eastertide|season +eastman|1 +(noun)|Eastman|George Eastman|industrialist|inventor|discoverer|artificer +eastmost|1 +(adj)|easternmost|east +eastside|1 +(adj)|east +eastward|2 +(adj)|eastbound|east +(adv)|eastwards +eastwards|1 +(adv)|eastward +easy|18 +(adj)|easy |casual|effortless|cushy|soft|elementary|simple|uncomplicated|unproblematic|hands-down|painless|simplified|user-friendly|smooth|effortless|simple|soft|undemanding +(adj)|easygoing|leisurely|unhurried +(adj)|easy |at ease|comfortable|relaxed|at ease +(adj)|pleasing +(adj)|gentle|soft|light +(adj)|comfortable|prosperous|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich +(adj)|light +(adj)|soft +(adj)|gentle|gradual +(adj)|facile|effortless +(adj)|lenient|undemanding +(adj)|comfortable |comfy +(adj)|light|loose|promiscuous|sluttish|wanton|unchaste +(adj)|available +(adj)|abundant +(adv)|easily +(adv)|slowly|slow|tardily +(adv)|soft +easy chair|1 +(noun)|lounge chair|overstuffed chair|armchair +easy going|1 +(noun)|plain sailing|clear sailing|progress|progression|procession|advance|advancement|forward motion|onward motion +easy lay|1 +(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|gamma hydroxybutyrate|GHB +easy mark|1 +(noun)|sitting duck|victim|dupe +easy money|2 +(noun)|gravy train|income +(noun)|financial condition|economic condition +easy street|1 +(noun)|security|protection +easygoing|5 +(adj)|tolerant +(adj)|laid-back|mellow|relaxed |at ease +(adj)|easy|leisurely|unhurried +(adj)|undemanding +(adj)|placid|contented |content +easygoingness|1 +(noun)|good nature +eat|6 +(verb)|consume|ingest|take in|take|have +(verb)|consume|ingest|take in|take|have|eat in|eat out|eat up +(verb)|feed|consume|ingest|take in|take|have +(verb)|consume|eat up|use up|deplete|exhaust|run through|wipe out|spend|expend|drop +(verb)|eat on|worry|vex +(verb)|corrode|rust|damage +eat at|1 +(verb)|erode|gnaw|gnaw at|wear away|decay|crumble|delapidate +eat away|2 +(verb)|erode|fret|damage +(verb)|fret|corrode|rust +eat in|1 +(verb)|dine in|eat +eat into|1 +(verb)|fret|rankle|grate|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +eat on|1 +(verb)|eat|worry|vex +eat out|1 +(verb)|dine out|eat +eat up|3 +(verb)|finish|polish off|eat +(verb)|consume|use up|eat|deplete|exhaust|run through|wipe out|spend|expend|drop +(verb)|immerse|swallow|swallow up|bury|enclose|inclose|shut in +eatable|2 +(adj)|edible |comestible|nonpoisonous|nontoxic|pareve|parve|killable|digestible|palatable|tender +(noun)|comestible|edible|pabulum|victual|victuals|food|nutrient +eatage|1 +(noun)|forage|pasture|pasturage|grass|feed|provender +eaten|1 +(adj)|eaten |consumed|devoured|eaten up|ingested +eaten up|1 +(adj)|devoured|eaten +eater|2 +(noun)|feeder|consumer +(noun)|produce|green goods|green groceries|garden truck +eating|1 +(noun)|feeding|consumption|ingestion|intake|uptake +eating apple|1 +(noun)|dessert apple|apple +eating away|1 +(noun)|erosion|eroding|wearing|wearing away|geological process|geologic process +eating disorder|1 +(noun)|disorder|upset +eating house|1 +(noun)|restaurant|eating place|building|edifice +eating place|1 +(noun)|restaurant|eating house|building|edifice +eating utensil|1 +(noun)|cutlery|tableware +eaton-lambert syndrome|1 +(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|carcinomatous myopathy|disease of the neuromuscular junction +eats|1 +(noun)|chow|chuck|grub|fare +eau claire|1 +(noun)|Eau Claire|town +eau de cologne|1 +(noun)|cologne|cologne water|perfume|essence +eau de cologne mint|1 +(noun)|bergamot mint|lemon mint|Mentha citrata|mint +eau de javelle|1 +(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite +eau de toilette|1 +(noun)|toilet water|perfume|essence +eau de vie|1 +(noun)|brandy +eaves|1 +(noun)|overhang +eavesdrop|1 +(verb)|listen in|listen +eavesdropper|1 +(noun)|snoop|snooper|hearer|listener|auditor|attender +ebb|5 +(noun)|ebbing|wane|decline|diminution +(noun)|reflux|flow|flowing +(verb)|ebb away|ebb down|ebb out|ebb off|recede|fall back|retire +(verb)|besiege|beleaguer|surround|hem in|circumvent +(verb)|recede +ebb away|1 +(verb)|ebb|ebb down|ebb out|ebb off|recede|fall back|retire +ebb down|1 +(verb)|ebb|ebb away|ebb out|ebb off|recede|fall back|retire +ebb off|1 +(verb)|ebb|ebb away|ebb down|ebb out|recede|fall back|retire +ebb out|1 +(verb)|ebb|ebb away|ebb down|ebb off|recede|fall back|retire +ebbing|1 +(noun)|ebb|wane|decline|diminution +ebbtide|1 +(noun)|tide +ebenaceae|1 +(noun)|Ebenaceae|family Ebenaceae|ebony family|dicot family|magnoliopsid family +ebenales|1 +(noun)|Ebenales|order Ebenales|plant order +ebionite|2 +(adj)|Ebionite|religionist|religious person +(noun)|Nazarene|Ebionite|religionist|religious person +ebitda|1 +(noun)|EBITDA|Earnings Before Interest Taxes Depreciation and Amortization|income +eblis|1 +(noun)|genie|jinni|jinnee|djinni|djinny +ebn|1 +(noun)|east by north|EbN|compass point|point +ebola|1 +(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +ebola fever|1 +(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +ebola hemorrhagic fever|1 +(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +ebola virus|1 +(noun)|Ebola virus|filovirus +ebon|1 +(adj)|ebony|achromatic +ebonics|1 +(noun)|Black English|Black English Vernacular|Ebonics|American English|American language|American +ebonise|1 +(verb)|ebonize|stain +ebonite|1 +(noun)|hard rubber|vulcanite|rubber|India rubber|gum elastic|caoutchouc +ebonize|1 +(verb)|ebonise|stain +ebony|4 +(adj)|ebon|achromatic +(noun)|coal black|jet black|pitch black|sable|soot black|black|blackness +(noun)|wood +(noun)|Diospyros ebenum|tree +ebony family|1 +(noun)|Ebenaceae|family Ebenaceae|dicot family|magnoliopsid family +ebony spleenwort|1 +(noun)|Scott's Spleenwort|Asplenium platyneuron|spleenwort +ebracteate|1 +(adj)|ebracteate |husk +ebro|1 +(noun)|Ebro|Ebro River|river +ebro river|1 +(noun)|Ebro|Ebro River|river +ebs|1 +(noun)|east by south|EbS|compass point|point +ebullience|1 +(noun)|exuberance|enthusiasm|liveliness|life|spirit|sprightliness +ebullient|1 +(adj)|exuberant|high-spirited|spirited +ebulliently|1 +(adv)|exuberantly|expansively +ebullition|1 +(noun)|effusion|gush|outburst|blowup|expression|manifestation|reflection|reflexion +eburnation|1 +(noun)|organic process|biological process +eburophyton|1 +(noun)|Eburophyton|genus Eburophyton|monocot genus|liliopsid genus +eburophyton austinae|1 +(noun)|phantom orchid|snow orchid|Eburophyton austinae|orchid|orchidaceous plant +ebv|1 +(noun)|Epstein-Barr virus|EBV|herpes|herpes virus +ec|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +ecarte|1 +(noun)|card game|cards +ecballium|1 +(noun)|Ecballium|genus Ecballium|dicot genus|magnoliopsid genus +ecballium elaterium|1 +(noun)|squirting cucumber|exploding cucumber|touch-me-not|Ecballium elaterium|gourd|gourd vine +ecc|1 +(noun)|error correction code|ECC|code|computer code +ecce homo|1 +(noun)|representation +eccentric|4 +(adj)|bizarre|freakish|freaky|flaky|off-the-wall|outlandish|outre|unconventional +(adj)|eccentric |nonconcentric|acentric|off-center|off-centered +(noun)|eccentric person|flake|oddball|geek|anomaly|unusual person +(noun)|character|type|case|adult|grownup +eccentric person|1 +(noun)|eccentric|flake|oddball|geek|anomaly|unusual person +eccentricity|3 +(noun)|unfamiliarity|strangeness +(noun)|ratio +(noun)|circularity|disk shape +ecchymosis|2 +(noun)|bruise|contusion +(noun)|organic process|biological process +eccles|1 +(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist +eccles cake|1 +(noun)|Eccles cake|cake +ecclesiastes|1 +(noun)|Ecclesiastes|Book of Ecclesiastes|book +ecclesiastic|2 +(adj)|ecclesiastical|religion|faith +(noun)|cleric|churchman|divine|clergyman|reverend|man of the cloth +ecclesiastical|1 +(adj)|ecclesiastic|religion|faith +ecclesiastical attire|1 +(noun)|ecclesiastical robe|attire|garb|dress +ecclesiastical benefice|1 +(noun)|benefice|spiritualty|spirituality|church property +ecclesiastical calendar|1 +(noun)|church calendar|Gregorian calendar|New Style calendar +ecclesiastical law|1 +(noun)|canon law|law|jurisprudence +ecclesiastical mode|1 +(noun)|Gregorian mode|church mode|medieval mode|mode|musical mode +ecclesiastical province|1 +(noun)|province|responsibility +ecclesiastical robe|1 +(noun)|ecclesiastical attire|attire|garb|dress +ecclesiasticism|2 +(noun)|attachment|adherence|adhesion +(noun)|religion|faith|religious belief +ecclesiasticus|1 +(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book +ecclesiology|1 +(noun)|theology|divinity +eccm|1 +(noun)|electronic counter-countermeasures|ECCM|electronic warfare|EW +eccrine|1 +(adj)|eccrine +eccrine gland|1 +(noun)|sweat gland|sudoriferous gland +eccyesis|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|metacyesis|pregnancy|gestation|maternity +ecdemic|1 +(adj)|ecdemic +ecdysiast|1 +(noun)|stripper|striptease artist|striptease|stripteaser|exotic dancer|peeler|performer|performing artist +ecdysis|1 +(noun)|molt|molting|moult|moulting|shedding|sloughing +ecesis|1 +(noun)|establishment|natural process|natural action|action|activity +ecf|1 +(noun)|extracellular fluid|ECF|liquid body substance|bodily fluid|body fluid|humor|humour +ecg|1 +(noun)|electrocardiogram|cardiogram|EKG|ECG|graph|graphical record +echelon|2 +(noun)|military unit|military force|military group|force +(noun)|diffraction grating|grating +echeneididae|1 +(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family +echeneis|1 +(noun)|Echeneis|genus Echeneis|fish genus +echeneis naucrates|1 +(noun)|sharksucker|Echeneis naucrates|remora|suckerfish|sucking fish +echidna|2 +(noun)|spiny anteater|anteater|monotreme|egg-laying mammal +(noun)|spiny anteater|anteater|monotreme|egg-laying mammal +echidnophaga|1 +(noun)|Echidnophaga|genus Echidnophaga|arthropod genus +echidnophaga gallinacea|1 +(noun)|sticktight|sticktight flea|Echidnophaga gallinacea|flea +echinacea|1 +(noun)|Echinacea|genus Echinacea|asterid dicot genus +echinocactus|1 +(noun)|barrel cactus|cactus +echinocactus grusonii|1 +(noun)|golden barrel cactus|Echinocactus grusonii|echinocactus|barrel cactus +echinocereus|1 +(noun)|Echinocereus|genus Echinocereus|caryophylloid dicot genus +echinochloa|1 +(noun)|Echinochloa|genus Echinochloa|monocot genus|liliopsid genus +echinochloa crusgalli|1 +(noun)|barnyard grass|barn grass|barn millet|Echinochloa crusgalli|millet +echinochloa frumentacea|1 +(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet +echinococcosis|1 +(noun)|hydatid disease|hydatidosis|infestation +echinococcus|1 +(noun)|tapeworm|cestode +echinoderm|1 +(noun)|invertebrate +echinoderm family|1 +(noun)|family +echinoderm genus|1 +(noun)|genus +echinodermata|1 +(noun)|Echinodermata|phylum Echinodermata|phylum +echinoidea|1 +(noun)|Echinoidea|class Echinoidea|class +echinops|1 +(noun)|Echinops|genus Echinops|asterid dicot genus +echinus|1 +(noun)|ovolo|thumb|quarter round +echinus esculentus|1 +(noun)|edible sea urchin|Echinus esculentus|sea urchin +echium|1 +(noun)|Echium|genus Echium|plant genus +echium vulgare|1 +(noun)|blueweed|blue devil|blue thistle|viper's bugloss|Echium vulgare|herb|herbaceous plant +echo|6 +(noun)|reverberation|sound reflection|replication|reflection|reflexion|reflectivity +(noun)|Echo|nymph +(noun)|reply|response +(verb)|repeat|utter|emit|let out|let loose +(verb)|resound|ring|reverberate|sound|go +(verb)|recall|resemble +echo sounder|1 +(noun)|sonar|asdic|measuring instrument|measuring system|measuring device|navigational instrument +echo sounding|1 +(noun)|echolocation|localization|localisation|location|locating|fix +echocardiogram|1 +(noun)|sonogram +echocardiograph|1 +(noun)|sonograph +echocardiography|1 +(noun)|diagnostic procedure|diagnostic technique +echoencephalogram|1 +(noun)|sonogram +echoencephalograph|1 +(noun)|sonograph +echoencephalography|1 +(noun)|diagnostic procedure|diagnostic technique +echoic|2 +(adj)|echoic |imitative|onomatopoeic|onomatopoeical|onomatopoetic +(adj)|echolike|reflected +echoing|1 +(adj)|reechoing|reverberant |ringing +echolalia|2 +(noun)|echo +(noun)|repetition|repeating +echoless|1 +(adj)|nonreflective |nonreflecting +echolike|1 +(adj)|echoic|reflected +echolocation|1 +(noun)|echo sounding|localization|localisation|location|locating|fix +echovirus|1 +(noun)|enterovirus +echt|1 +(adj)|genuine |authentic|bona fide|unquestionable|veritable|attested|authenticated|documented|good|honest-to-god|honest-to-goodness|old|sure-enough|real|true|honest|honorable|real|existent|sincere|true +eckhart|1 +(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian|theologist|theologizer|theologiser|mystic|religious mystic +eclair|1 +(noun)|cream puff|chou +eclampsia|1 +(noun)|toxemia of pregnancy|toxaemia of pregnancy|toxemia|toxaemia +eclat|3 +(noun)|acclaim|acclamation|plaudits|plaudit|approval|commendation +(noun)|pomp|elegance +(noun)|magnificence|brilliance|splendor|splendour|grandeur|grandness +eclectic|2 +(adj)|discriminating +(noun)|eclecticist|philosopher +eclectic method|1 +(noun)|eclecticism|decision making|deciding +eclecticism|1 +(noun)|eclectic method|decision making|deciding +eclecticist|1 +(noun)|eclectic|philosopher +eclipse|4 +(noun)|occultation|interruption|break +(verb)|overshadow|excel|stand out|surpass +(verb)|occult|overshadow +(verb)|obscure|bedim|overcloud +eclipsis|1 +(noun)|ellipsis|omission|deletion +ecliptic|1 +(noun)|great circle +eclogue|1 +(noun)|bucolic|idyll|pastoral +ecm|1 +(noun)|electronic countermeasures|ECM|electronic warfare|EW +eco-warfare|1 +(noun)|ecoterrorism|ecological terrorism|ecological warfare|terrorism|act of terrorism|terrorist act +ecobabble|1 +(noun)|jargon +ecologic|2 +(adj)|ecological|environment +(adj)|ecological|bionomical|bionomic|biology|biological science +ecological|2 +(adj)|ecologic|environment +(adj)|ecologic|bionomical|bionomic|biology|biological science +ecological niche|1 +(noun)|niche|condition|status +ecological succession|1 +(noun)|succession|natural process|natural action|action|activity +ecological terrorism|1 +(noun)|ecoterrorism|eco-warfare|ecological warfare|terrorism|act of terrorism|terrorist act +ecological warfare|1 +(noun)|ecoterrorism|ecological terrorism|eco-warfare|terrorism|act of terrorism|terrorist act +ecologist|1 +(noun)|biologist|life scientist +ecology|2 +(noun)|environment +(noun)|bionomics|environmental science|biology|biological science +econometric|1 +(adj)|economics|economic science|political economy +econometrician|1 +(noun)|econometrist|economist|economic expert +econometrics|1 +(noun)|economics|economic science|political economy +econometrist|1 +(noun)|econometrician|economist|economic expert +economic|5 +(adj)|economical|system|scheme +(adj)|social science +(adj)|worldly +(adj)|profitable +(adj)|economical|efficient +economic aid|1 +(noun)|aid|gift +economic and social council|1 +(noun)|Economic and Social Council|ECOSOC|council +economic and social council commission|1 +(noun)|Economic and Social Council commission|ECOSOC commission|committee|commission +economic commission for africa|1 +(noun)|Economic Commission for Africa|Economic and Social Council commission|ECOSOC commission +economic commission for asia and the far east|1 +(noun)|Economic Commission for Asia and the Far East|Economic and Social Council commission|ECOSOC commission +economic commission for europe|1 +(noun)|Economic Commission for Europe|Economic and Social Council commission|ECOSOC commission +economic commission for latin america|1 +(noun)|Economic Commission for Latin America|Economic and Social Council commission|ECOSOC commission +economic condition|1 +(noun)|financial condition|condition|status +economic consumption|1 +(noun)|consumption|usance|use|use of goods and services|demand +economic crisis|1 +(noun)|depression|slump|financial condition|economic condition +economic expert|1 +(noun)|economist|social scientist +economic geography|1 +(noun)|geography|geographics +economic geology|1 +(noun)|geology +economic growth|1 +(noun)|economic process +economic mobilisation|1 +(noun)|economic mobilization|mobilization|mobilisation +economic mobilization|1 +(noun)|economic mobilisation|mobilization|mobilisation +economic policy|1 +(noun)|policy +economic process|1 +(noun)|process +economic rent|1 +(noun)|rent|return|issue|proceeds|take|takings|yield|payoff +economic science|1 +(noun)|economics|political economy|social science +economic strangulation|1 +(noun)|punishment|penalty|penalization|penalisation +economic system|1 +(noun)|economy|system|scheme +economic theory|1 +(noun)|theory +economic value|1 +(noun)|value|measure|quantity|amount +economical|3 +(adj)|economic|efficient +(adj)|economic|system|scheme +(adj)|frugal|scotch|sparing|stinting|thrifty +economics|1 +(noun)|economic science|political economy|social science +economics department|1 +(noun)|department of economics|academic department +economics profession|1 +(noun)|profession|community +economise|2 +(verb)|save|economize|spend|expend|drop +(verb)|conserve|husband|economize|save|preserve +economiser|1 +(noun)|economizer|saver +economist|1 +(noun)|economic expert|social scientist +economize|2 +(verb)|conserve|husband|economise|save|preserve +(verb)|save|economise|spend|expend|drop +economizer|1 +(noun)|economiser|saver +economy|4 +(noun)|economic system|system|scheme +(noun)|efficiency +(noun)|thriftiness|frugality|frugalness +(noun)|saving|action +economy of scale|1 +(noun)|economy|saving +ecosoc|1 +(noun)|Economic and Social Council|ECOSOC|council +ecosoc commission|1 +(noun)|Economic and Social Council commission|ECOSOC commission|committee|commission +ecosystem|1 +(noun)|system|scheme +ecoterrorism|1 +(noun)|ecological terrorism|eco-warfare|ecological warfare|terrorism|act of terrorism|terrorist act +ecotourism|1 +(noun)|tourism|touristry +ecphonesis|1 +(noun)|exclamation|rhetorical device +ecrevisse|2 +(noun)|crayfish|crawfish|crawdad|shellfish +(noun)|Old World crayfish|crayfish|crawfish|crawdad|crawdaddy +ecru|1 +(noun)|beige|light brown +ecstasy|3 +(noun)|rapture|transport|exaltation|raptus|emotional state|spirit +(noun)|rapture|bliss|blissfulness|cloud nine|seventh heaven|walking on air +(noun)|Adam|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +ecstatic|1 +(adj)|enraptured|rapturous|rhapsodic|joyous +ecstatic state|1 +(noun)|religious trance|trance +ecstatically|1 +(adv)|rapturously|rhapsodically +ect|1 +(noun)|electroconvulsive therapy|electroshock|electroshock therapy|ECT|shock therapy|shock treatment +ectasia|1 +(noun)|ectasis|dilatation|distension|distention +ectasis|1 +(noun)|ectasia|dilatation|distension|distention +ectoblast|1 +(noun)|ectoderm|exoderm|germ layer +ectoderm|1 +(noun)|exoderm|ectoblast|germ layer +ectodermal|1 +(adj)|ectodermic|germ layer +ectodermic|1 +(adj)|ectodermal|germ layer +ectomorph|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +ectomorphic|1 +(adj)|ectomorphic |asthenic|thin|lean +ectomorphy|1 +(noun)|asthenic type|body type|somatotype +ectoparasite|1 +(noun)|ectozoan|ectozoon|epizoan|epizoon|parasite +ectopia|1 +(noun)|position|posture|attitude +ectopic|1 +(adj)|position|posture|attitude +ectopic gestation|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|extrauterine gestation|eccyesis|metacyesis|pregnancy|gestation|maternity +ectopic pregnancy|1 +(noun)|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis|pregnancy|gestation|maternity +ectopistes|1 +(noun)|Ectopistes|genus Ectopistes|bird genus +ectopistes migratorius|1 +(noun)|passenger pigeon|Ectopistes migratorius|pigeon +ectoplasm|2 +(noun)|emanation +(noun)|cytoplasm +ectoproct|1 +(noun)|invertebrate +ectoprocta|1 +(noun)|Ectoprocta|phylum Ectoprocta|phylum +ectotherm|1 +(noun)|poikilotherm|animal|animate being|beast|brute|creature|fauna +ectothermic|1 +(adj)|poikilothermic|poikilothermous|heterothermic|cold-blooded +ectozoan|2 +(adj)|epizoan|parasite +(noun)|ectoparasite|ectozoon|epizoan|epizoon|parasite +ectozoon|1 +(noun)|ectoparasite|ectozoan|epizoan|epizoon|parasite +ectrodactyly|1 +(noun)|abnormality|abnormalcy|abnormal condition +ecuador|1 +(noun)|Ecuador|Republic of Ecuador|South American country|South American nation +ecuadoran|1 +(noun)|Ecuadorian|Ecuadoran|South American +ecuadoran monetary unit|1 +(noun)|Ecuadoran monetary unit|monetary unit +ecuadorian|2 +(adj)|Ecuadorian|South American country|South American nation +(noun)|Ecuadorian|Ecuadoran|South American +ecumenic|1 +(adj)|oecumenic|ecumenical|oecumenical|nonsectarian |unsectarian +ecumenical|2 +(adj)|ecumenic|oecumenic|oecumenical|nonsectarian |unsectarian +(adj)|cosmopolitan|oecumenical|general|universal|worldwide|comprehensive +ecumenical movement|2 +(noun)|Ecumenical Movement|religious movement +(noun)|campaign|cause|crusade|drive|movement|effort +ecumenicalism|1 +(noun)|ecumenism|ecumenicism|religious doctrine|church doctrine|gospel|creed +ecumenicism|1 +(noun)|ecumenism|ecumenicalism|religious doctrine|church doctrine|gospel|creed +ecumenism|1 +(noun)|ecumenicism|ecumenicalism|religious doctrine|church doctrine|gospel|creed +eczema|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +eczema herpeticum|1 +(noun)|eczema +eczema hypertrophicum|1 +(noun)|lichtenoid eczema|chronic eczema|eczema +eczema marginatum|1 +(noun)|tinea cruris|jock itch|tinea|ringworm|roundworm +eczema vaccinatum|1 +(noun)|Kaposi's varicelliform eruption|eczema|eruption +ed|1 +(noun)|erectile dysfunction|male erecticle dysfunction|ED|impotence|impotency|dysfunction|disfunction +ed sullivan|1 +(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies|emcee|host +edacious|1 +(adj)|esurient|rapacious|ravening|ravenous|voracious|wolfish|gluttonous +edacity|2 +(noun)|esurience|ravenousness|voracity|voraciousness|hunger|hungriness +(noun)|esurience|rapaciousness|rapacity|voracity|voraciousness|gluttony +edam|1 +(noun)|Edam|cheese +edaphosauridae|1 +(noun)|Edaphosauridae|family Edaphosauridae|reptile family +edaphosaurus|1 +(noun)|synapsid|synapsid reptile +edd|1 +(noun)|Doctor of Education|EdD|DEd|doctor's degree|doctorate +edda|2 +(noun)|taro|taro root|cocoyam|dasheen|root vegetable +(noun)|Edda|ballad|lay +eddie rickenbacker|1 +(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot +eddington|1 +(noun)|Eddington|Sir Arthur Stanley Eddington|astronomer|uranologist|stargazer +eddo|1 +(noun)|taro|cocoyam|dasheen|root +eddy|3 +(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religionist|religious person +(noun)|twist|current|stream +(verb)|purl|whirlpool|swirl|whirl|run|flow|feed|course +eddy merckx|1 +(noun)|Merckx|Eddy Merckx|cyclist|bicyclist|bicycler|wheeler +edecrin|1 +(noun)|ethacrynic acid|Edecrin|diuretic drug|diuretic|water pill +edelweiss|1 +(noun)|Leontopodium alpinum|wildflower|wild flower +edema|1 +(noun)|oedema|hydrops|dropsy|swelling|puffiness|lump +edematous|1 +(adj)|dropsical|unhealthy +eden|2 +(noun)|paradise|nirvana|heaven|promised land|Shangri-la|region|part +(noun)|Eden|Garden of Eden|Heaven +edental|1 +(adj)|edentate|edentulate|toothless +edentata|1 +(noun)|Edentata|order Edentata|animal order +edentate|2 +(adj)|edental|edentulate|toothless +(noun)|placental|placental mammal|eutherian|eutherian mammal +edentulate|1 +(adj)|edental|edentate|toothless +edentulous|1 +(adj)|toothless +ederle|1 +(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer +edgar|1 +(noun)|Edgar|King of England|King of Great Britain +edgar albert guest|1 +(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist +edgar allen poe|1 +(noun)|Poe|Edgar Allen Poe|writer|author|poet +edgar douglas adrian|1 +(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist +edgar guest|1 +(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist +edgar lee masters|1 +(noun)|Masters|Edgar Lee Masters|poet +edgar rice burroughs|1 +(noun)|Burroughs|Edgar Rice Burroughs|writer|author +edgar wallace|1 +(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer|author +edgard lawrence doctorow|1 +(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer|author +edgard varese|1 +(noun)|Varese|Edgard Varese|composer +edge|10 +(noun)|border|boundary|bound|bounds +(noun)|side +(noun)|boundary|bound|line +(noun)|sharpness|urgency +(noun)|superiority|favorable position|favourable position +(noun)|margin|strip|slip +(verb)|inch|advance|progress|pass on|move on|march on|go on|edge in +(verb)|border|supply|provide|render|furnish +(verb)|border|adjoin|abut|march|butt|butt against|butt on|touch|adjoin|meet|contact +(verb)|sharpen +edge in|1 +(verb)|edge up|approach|near|come on|go up|draw near|draw close|come near +edge tool|1 +(noun)|cutter|cutlery|cutting tool +edge up|1 +(verb)|edge in|approach|near|come on|go up|draw near|draw close|come near +edged|3 +(adj)|bordered +(adj)|cutting|stinging|unkind +(adj)|sharp +edgeless|1 +(adj)|dull +edger|2 +(noun)|needleworker +(noun)|garden tool|lawn tool +edgeways|2 +(adv)|edgewise +(adv)|edgewise +edgewise|2 +(adv)|edgeways +(adv)|edgeways +edginess|1 +(noun)|uneasiness|inquietude|disquietude|anxiety +edging|1 +(noun)|border +edgy|1 +(adj)|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense +edibility|1 +(noun)|edibleness|property +edible|2 +(adj)|edible |comestible|eatable|nonpoisonous|nontoxic|pareve|parve|killable|digestible|palatable|tender +(noun)|comestible|eatable|pabulum|victual|victuals|food|nutrient +edible-pod pea|1 +(noun)|edible-podded pea|Pisum sativum macrocarpon|pea|pea plant +edible-podded pea|1 +(noun)|edible-pod pea|Pisum sativum macrocarpon|pea|pea plant +edible asparagus|1 +(noun)|asparagus|Asparagus officinales|herb|herbaceous plant +edible banana|1 +(noun)|Musa paradisiaca sapientum|banana|banana tree +edible bean|1 +(noun)|bean|legume +edible cockle|1 +(noun)|Cardium edule|cockle +edible corn|1 +(noun)|corn|grain|food grain|cereal +edible fat|1 +(noun)|fat +edible fruit|1 +(noun)|produce|green goods|green groceries|garden truck|fruit +edible mussel|1 +(noun)|Mytilus edulis|marine mussel|mytilid +edible nut|1 +(noun)|nut +edible sea urchin|1 +(noun)|Echinus esculentus|sea urchin +edible seed|1 +(noun)|seed +edible snail|1 +(noun)|Helix pomatia|snail +edibleness|1 +(noun)|edibility|property +edict|2 +(noun)|announcement|proclamation|annunciation|declaration +(noun)|decree|fiat|order|rescript|act|enactment +edification|1 +(noun)|sophistication|enlightenment +edifice|1 +(noun)|building|structure|construction +edified|1 +(adj)|enlightened +edify|1 +(verb)|enlighten|teach|learn|instruct +edifying|1 +(adj)|edifying |enlightening +edinburgh|1 +(noun)|Edinburgh|capital +edirne|1 +(noun)|Edirne|Adrianople|Adrianopolis|city|metropolis|urban center +edison|1 +(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor|discoverer|artificer +edit|4 +(verb)|redact|change|alter|modify +(verb)|publish|bring out|put out|issue|release +(verb)|cut|edit out|change|alter|modify +(verb)|blue-pencil|delete|censor +edit out|1 +(verb)|edit|cut|change|alter|modify +edited|1 +(adj)|emended|altered +edith cavell|1 +(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse +edith giovanna gassion|1 +(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer|vocalist|vocalizer|vocaliser +edith louisa cavell|1 +(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse +edith newbold jones wharton|1 +(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer|author +edith piaf|1 +(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer|vocalist|vocalizer|vocaliser +edith wharton|1 +(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer|author +editing|1 +(noun)|redaction|writing|written material|piece of writing +edition|4 +(noun)|impression|printing +(noun)|group|grouping +(noun)|issue|number +(noun)|version|variant|variation|type +editor|2 +(noun)|editor in chief|skilled worker|trained worker +(noun)|editor program|application|application program|applications programme +editor in chief|1 +(noun)|editor|skilled worker|trained worker +editor program|1 +(noun)|editor|application|application program|applications programme +editorial|3 +(adj)|article +(adj)|skilled worker|trained worker +(noun)|column|newspaper column|article +editorial department|1 +(noun)|business department +editorialise|1 +(verb)|editorialize|opine|speak up|animadvert|sound off +editorialist|1 +(noun)|columnist|journalist +editorialize|1 +(verb)|editorialise|opine|speak up|animadvert|sound off +editorially|1 +(adv)|with an editorial|in an editorial +editorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +edmond de goncourt|1 +(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer|author +edmond halley|1 +(noun)|Halley|Edmond Halley|Edmund Halley|astronomer|uranologist|stargazer +edmond hoyle|1 +(noun)|Hoyle|Edmond Hoyle|writer|author +edmond louis antoine huot de goncourt|1 +(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer|author +edmond malone|1 +(noun)|Malone|Edmund Malone|Edmond Malone|scholar|scholarly person|student +edmond rostand|1 +(noun)|Rostand|Edmond Rostand|dramatist|playwright|poet +edmonton|1 +(noun)|Edmonton|provincial capital +edmontonia|1 +(noun)|Edmontonia|ankylosaur|ankylosaurus +edmontosaurus|1 +(noun)|hadrosaur|hadrosaurus|duck-billed dinosaur +edmund burke|1 +(noun)|Burke|Edmund Burke|statesman|solon|national leader|orator|speechmaker|rhetorician|public speaker|speechifier +edmund cartwright|1 +(noun)|Cartwright|Edmund Cartwright|inventor|discoverer|artificer +edmund charles edouard genet|1 +(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat|diplomatist +edmund halley|1 +(noun)|Halley|Edmond Halley|Edmund Halley|astronomer|uranologist|stargazer +edmund hillary|1 +(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer|mountain climber +edmund husserl|1 +(noun)|Husserl|Edmund Husserl|philosopher +edmund i|1 +(noun)|Edmund I|king|male monarch +edmund ii|1 +(noun)|Edmund II|Edmund Ironside|king|male monarch +edmund ironside|1 +(noun)|Edmund II|Edmund Ironside|king|male monarch +edmund john millington synge|1 +(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist|playwright|poet +edmund kean|1 +(noun)|Kean|Edmund Kean|actor|histrion|player|thespian|role player +edmund malone|1 +(noun)|Malone|Edmund Malone|Edmond Malone|scholar|scholarly person|student +edmund spenser|1 +(noun)|Spenser|Edmund Spenser|poet +edmund wilson|1 +(noun)|Wilson|Edmund Wilson|literary critic +edna ferber|1 +(noun)|Ferber|Edna Ferber|writer|author +edna millay|1 +(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess +edna o'brien|1 +(noun)|O'Brien|Edna O'Brien|writer|author +edna saint vincent millay|1 +(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess +edo|2 +(noun)|Edo|Nigerian +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +edouard lemaitre|1 +(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist +edouard manet|1 +(noun)|Manet|Edouard Manet|painter +edouard vuillard|1 +(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter +edp|1 +(noun)|electronic data processing|EDP|automatic data processing|ADP +edronax|1 +(noun)|reboxetine|Edronax|antidepressant|antidepressant drug +eds|2 +(noun)|explosive detection system|EDS|system +(noun)|erectile dysfunction|male erecticle dysfunction|ED|impotence|impotency|dysfunction|disfunction +edsel bryant ford|1 +(noun)|Ford|Edsel Bryant Ford|industrialist +eduard buchner|1 +(noun)|Buchner|Eduard Buchner|chemist +educate|3 +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|train|develop|prepare|teach|learn|instruct +(verb)|school|train|cultivate|civilize|civilise|polish|refine|fine-tune|down +educated|3 +(adj)|educated |enlightened|knowing|knowledgeable|learned|lettered|well-educated|well-read|instructed|schooled|taught|tutored|literate|self-educated|semiliterate|civilized|civilised|enlightened|informed|intellectual|literate|numerate +(adj)|enlightened|informed +(adj)|numerate +educatee|1 +(noun)|student|pupil|enrollee +education|6 +(noun)|instruction|teaching|pedagogy|educational activity|activity +(noun)|content|cognitive content|mental object +(noun)|learning|acquisition +(noun)|profession +(noun)|training|breeding|upbringing +(noun)|Department of Education|Education Department|Education|executive department +education department|1 +(noun)|Department of Education|Education Department|Education|executive department +education secretary|2 +(noun)|Secretary of Education|Education Secretary|secretary +(noun)|Secretary of Education|Education Secretary|secretaryship +educational|2 +(adj)|learning|acquisition +(adj)|instructive |informative +educational activity|1 +(noun)|education|instruction|teaching|pedagogy|activity +educational institution|1 +(noun)|institution|establishment +educational program|1 +(noun)|program|programme +educationalist|1 +(noun)|educationist|specialist|specializer|specialiser +educationist|1 +(noun)|educationalist|specialist|specializer|specialiser +educative|1 +(adj)|instructive |informative +educator|1 +(noun)|pedagogue|professional|professional person +educe|2 +(verb)|evoke|elicit|extract|draw out|interpret|construe|see +(verb)|derive|make|create +edulcorate|1 +(verb)|sweeten|dulcify|dulcorate|change taste +edutainment|1 +(noun)|entertainment|amusement +edvard grieg|1 +(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer +edvard hagerup grieg|1 +(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer +edvard munch|1 +(noun)|Munch|Edvard Munch|painter +edward|2 +(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince +(noun)|Edward|Black Prince|Prince of Wales +edward albee|1 +(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist|playwright +edward antony richard louis|1 +(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince +edward appleton|1 +(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist +edward benjamin britten|1 +(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor|music director|director|composer +edward bouverie pusey|1 +(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian|theologist|theologizer|theologiser +edward calvin kendall|1 +(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist +edward durell stone|1 +(noun)|Stone|Edward Durell Stone|architect|designer +edward estlin cummings|1 +(noun)|cummings|e. e. cummings|Edward Estlin Cummings|writer|author +edward everett hale|1 +(noun)|Hale|Edward Everett Hale|writer|author +edward fitzgerald|1 +(noun)|Fitzgerald|Edward Fitzgerald|poet|interpreter|translator +edward franklin albeen|1 +(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist|playwright +edward g. robinson|1 +(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor|histrion|player|thespian|role player +edward george earle bulwer-lytton|1 +(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer|author +edward gibbon|1 +(noun)|Gibbon|Edward Gibbon|historian|historiographer +edward goldenberg robinson|1 +(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor|histrion|player|thespian|role player +edward henry harriman|1 +(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman|man of affairs +edward i|1 +(noun)|Edward I|King of England|King of Great Britain +edward ii|1 +(noun)|Edward II|King of England|King of Great Britain +edward iii|1 +(noun)|Edward III|King of England|King of Great Britain +edward iv|1 +(noun)|Edward IV|King of England|King of Great Britain +edward james hughes|1 +(noun)|Hughes|Ted Hughes|Edward James Hughes|poet +edward james muggeridge|1 +(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor|discoverer|artificer +edward jean steichen|1 +(noun)|Steichen|Edward Jean Steichen|photographer|lensman +edward jenner|1 +(noun)|Jenner|Edward Jenner|doctor|doc|physician|MD|Dr.|medico +edward kendall|1 +(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist +edward kennedy ellington|1 +(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician|jazzman +edward lawrie tatum|1 +(noun)|Tatum|Edward Lawrie Tatum|biochemist +edward lear|1 +(noun)|Lear|Edward Lear|artist|creative person|humorist|humourist +edward lee thorndike|1 +(noun)|Thorndike|Edward Lee Thorndike|psychologist +edward macdowell|1 +(noun)|MacDowell|Edward MacDowell|composer +edward morley|1 +(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist +edward osborne wilson|1 +(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist|bugologist|bug-hunter +edward pusey|1 +(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian|theologist|theologizer|theologiser +edward r. murrow|1 +(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist +edward roscoe murrow|1 +(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist +edward sapir|1 +(noun)|Sapir|Edward Sapir|anthropologist|linguist|linguistic scientist +edward teach|1 +(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate|buccaneer|sea robber|sea rover +edward teller|1 +(noun)|Teller|Edward Teller|nuclear physicist +edward thatch|1 +(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate|buccaneer|sea robber|sea rover +edward the confessor|1 +(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England|King of Great Britain|saint +edward the elder|1 +(noun)|Edward the Elder|king|male monarch +edward the martyr|1 +(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England|King of Great Britain|saint +edward v|1 +(noun)|Edward V|King of England|King of Great Britain +edward vernon rickenbacker|1 +(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot +edward vi|1 +(noun)|Edward VI|King of England|King of Great Britain +edward vii|1 +(noun)|Edward VII|Albert Edward|King of England|King of Great Britain +edward viii|1 +(noun)|Edward VIII|Duke of Windsor|King of England|King of Great Britain +edward vincent sullivan|1 +(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies|emcee|host +edward weston|1 +(noun)|Weston|Edward Weston|photographer|lensman +edward williams morley|1 +(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist +edward winslow|1 +(noun)|Winslow|Edward Winslow|settler|colonist +edward wyllis scripps|1 +(noun)|Scripps|Edward Wyllis Scripps|publisher|newspaper publisher +edward young|1 +(noun)|Young|Edward Young|poet +edwardian|2 +(adj)|Edwardian|King of England|King of Great Britain +(noun)|Edwardian|sporting man +edwards|3 +(noun)|Edwards|Jonathan Edwards|theologian|theologist|theologizer|theologiser +(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince +(noun)|Edward|Black Prince|Prince of Wales +edwin|1 +(noun)|Edwin|king|male monarch +edwin arlington robinson|1 +(noun)|Robinson|Edwin Arlington Robinson|poet +edwin dubois hayward|1 +(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer|author +edwin herbert land|1 +(noun)|Land|Din Land|Edwin Herbert Land|inventor|discoverer|artificer|industrialist +edwin hubble|1 +(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist +edwin powell hubble|1 +(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist +edwy|1 +(noun)|Edwy|Eadwig|King of England|King of Great Britain +ee|1 +(noun)|electrical engineering|EE|engineering|engineering science|applied science|technology +eec|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +eeg|1 +(noun)|electroencephalogram|encephalogram|EEG|graph|graphical record +eel|2 +(noun)|fish +(noun)|soft-finned fish|malacopterygian +eelblenny|1 +(noun)|prickleback +eelgrass|2 +(noun)|grass wrack|sea wrack|Zostera marina|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|tape grass|wild celery|Vallisneria spiralis|aquatic plant|water plant|hydrophyte|hydrophytic plant +eelgrass family|1 +(noun)|Zosteraceae|family Zosteraceae|monocot family|liliopsid family +eellike|1 +(adj)|curved |curving +eelpout|2 +(noun)|pout|blennioid fish|blennioid +(noun)|burbot|ling|cusk|Lota lota|cod|codfish +eelworm|1 +(noun)|nematode|nematode worm|roundworm +eerie|2 +(adj)|eery|spooky|unnatural +(adj)|eery|strange |unusual +eerily|1 +(adv)|spookily +eeriness|1 +(noun)|ghostliness|unfamiliarity|strangeness +eero saarinen|1 +(noun)|Saarinen|Eero Saarinen|architect|designer +eery|2 +(adj)|eerie|spooky|unnatural +(adj)|eerie|strange |unusual +eff|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +efface|3 +(verb)|obliterate|blur|dim|slur +(verb)|humble +(verb)|erase|rub out|score out|wipe off|delete|cancel +effaceable|1 +(adj)|erasable|eradicable +effacement|2 +(noun)|organic process|biological process +(noun)|self-effacement|withdrawal +effect|8 +(noun)|consequence|outcome|result|event|issue|upshot|phenomenon +(noun)|impression|appearance|visual aspect +(noun)|force|validity|validness +(noun)|symptom +(noun)|impression|feeling|belief|notion|opinion +(noun)|essence|burden|core|gist|meaning|significance|signification|import +(verb)|effectuate|bring about|set up|cause|do|make +(verb)|act|move +effected|1 +(adj)|accomplished|established|settled +effecter|1 +(noun)|effector|person|individual|someone|somebody|mortal|human|soul +effective|6 +(adj)|effective |effectual|efficacious|hard-hitting|trenchant|impelling|impressive|telling|rough-and-ready|efficacious|efficient|potent|strong|powerful|useful|utile +(adj)|efficient|competent +(adj)|efficacious +(adj)|good|in effect|in force|operative +(adj)|actual |existent +(adj)|operational +effectively|2 +(adv)|efficaciously +(adv)|in effect +effectiveness|2 +(noun)|effectivity|effectualness|effectuality|power|powerfulness +(noun)|potency|strength|power|powerfulness +effectivity|1 +(noun)|effectiveness|effectualness|effectuality|power|powerfulness +effector|3 +(noun)|effecter|person|individual|someone|somebody|mortal|human|soul +(noun)|nerve fiber|nerve fibre +(noun)|organ +effects|7 +(noun)|personal effects|personal property|personal estate|personalty|private property +(noun)|consequence|effect|outcome|result|event|issue|upshot|phenomenon +(noun)|impression|effect|appearance|visual aspect +(noun)|effect|force|validity|validness +(noun)|effect|symptom +(noun)|effect|impression|feeling|belief|notion|opinion +(noun)|effect|essence|burden|core|gist|meaning|significance|signification|import +effectual|3 +(adj)|effectual |effective|efficacious +(adj)|effective |efficacious|hard-hitting|trenchant|impelling|impressive|telling|rough-and-ready|efficacious|efficient|potent|strong|powerful|useful|utile +(adj)|potent |strong +effectuality|1 +(noun)|effectiveness|effectivity|effectualness|power|powerfulness +effectualness|1 +(noun)|effectiveness|effectivity|effectuality|power|powerfulness +effectuate|1 +(verb)|effect|bring about|set up|cause|do|make +effectuation|1 +(noun)|implementation|deed|feat|effort|exploit +effeminacy|1 +(noun)|effeminateness|sissiness|womanishness|unmanliness|femininity|muliebrity +effeminate|2 +(adj)|emasculate|epicene|cissy|sissified|sissyish|sissy|unmanly |unmanful|unmanlike +(adj)|weak|soft +effeminateness|1 +(noun)|effeminacy|sissiness|womanishness|unmanliness|femininity|muliebrity +effeminize|1 +(verb)|feminize|feminise|erreminise|womanize|change|alter|modify +effendi|1 +(noun)|Turk +efferent|1 +(adj)|efferent |motorial|centrifugal|motor|corticoefferent|corticofugal|corticifugal|neuromotor +efferent neuron|1 +(noun)|motor neuron|motor nerve fiber|motoneuron|nerve cell|neuron +effervesce|1 +(verb)|foam|froth|fizz|sparkle|bubble +effervescence|2 +(noun)|natural process|natural action|action|activity +(noun)|bubbliness|frothiness|gaseousness +effervescent|3 +(adj)|sparkling +(adj)|effervescent |bubbling|bubbly|foaming|foamy|frothy|effervescing|carbonated|fizzing|fizzy|aerated|charged +(adj)|bubbling|scintillating|sparkling|sparkly|lively +effervescing|1 +(adj)|bubbling|bubbly|foaming|foamy|frothy|effervescent +effete|1 +(adj)|decadent|indulgent +efficacious|2 +(adj)|efficacious |effective|effective|effectual +(adj)|effective |effectual|hard-hitting|trenchant|impelling|impressive|telling|rough-and-ready|efficient|potent|strong|powerful|useful|utile +efficaciously|1 +(adv)|effectively +efficaciousness|1 +(noun)|efficacy|effectiveness|effectivity|effectualness|effectuality +efficacy|1 +(noun)|efficaciousness|effectiveness|effectivity|effectualness|effectuality +efficiency|2 +(noun)|ratio +(noun)|skillfulness +efficiency apartment|1 +(noun)|apartment|flat +efficiency engineer|1 +(noun)|efficiency expert|expert +efficiency expert|1 +(noun)|efficiency engineer|expert +efficient|2 +(adj)|efficient |businesslike|cost-efficient|cost-effective|economic|economical|expeditious|prompt|timesaving|high-octane|streamlined|underspent|competent|effective|effectual|efficacious +(adj)|effective|competent +efficiently|1 +(adv)|expeditiously|with efficiency +effigy|1 +(noun)|image|simulacrum|representation +effleurage|1 +(noun)|massage +effloresce|3 +(verb)|burst forth|bloom|blossom|flower +(verb)|crystallize|crystalize|crystalise|solidify +(verb)|encrust|incrust +efflorescence|4 +(noun)|flower|prime|peak|heyday|bloom|blossom|flush|time period|period of time|period +(noun)|rash|roseola|skin rash|eruption +(noun)|blossoming|flowering|florescence|inflorescence|anthesis|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|bloom|crystallization|crystallisation|crystallizing +efflorescent|1 +(adj)|abloom|flowering|mature +effluence|1 +(noun)|outflow|efflux|flow +effluent|2 +(adj)|outflowing|outgoing +(noun)|wastewater|sewer water|waste|waste material|waste matter|waste product +effluvium|1 +(noun)|discharge|emission +efflux|1 +(noun)|outflow|effluence|flow +effort|4 +(noun)|attempt|endeavor|endeavour|try|activity +(noun)|elbow grease|exertion|travail|sweat|labor|labour|toil +(noun)|campaign|cause|crusade|drive|movement|venture +(noun)|deed|feat|exploit|accomplishment|achievement +effortful|1 +(adj)|effortful |arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|punishing|toilsome|dragging|exhausting|tiring|wearing|wearying|heavy|labored|laboured|labor-intensive|labour-intensive|leaden|plodding|arduous|straining|strenuous|difficult|Sisyphean|difficult|hard +effortfulness|1 +(noun)|difficulty|difficultness +effortless|2 +(adj)|effortless |easy|facile|unforced|unstrained|easy +(adj)|casual|easy +effortlessness|1 +(noun)|ease|easiness|simplicity +effrontery|1 +(noun)|presumption|presumptuousness|assumption|audacity|audaciousness +effulgence|1 +(noun)|radiance|radiancy|shine|refulgence|refulgency|brightness +effulgent|1 +(adj)|beaming|beamy|radiant|refulgent|bright +effuse|3 +(verb)|pour out|pour +(verb)|flow out|emanate +(verb)|emit|give out|give off +effusion|2 +(noun)|gush|outburst|blowup|ebullition|expression|manifestation|reflection|reflexion +(noun)|flood|overflow|outpouring +effusive|2 +(adj)|burbling|burbly|gushing|lively +(adj)|emotional|gushing|gushy|demonstrative +effusiveness|1 +(noun)|expansiveness|communicativeness +efrem zimbalist|1 +(noun)|Zimbalist|Efrem Zimbalist|violinist|fiddler +eft|1 +(noun)|newt|triton +egadi islands|1 +(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island +egalitarian|2 +(adj)|classless|democratic +(noun)|equalitarian|moralist +egalitarianism|1 +(noun)|equalitarianism|doctrine|philosophy|philosophical system|school of thought|ism +egbert|1 +(noun)|Egbert|king|male monarch +egeria|1 +(noun)|Egeria|genus Egeria|monocot genus|liliopsid genus +egeria densa|1 +(noun)|dense-leaved elodea|Elodea densa|Egeria densa|waterweed +egest|1 +(verb)|excrete|eliminate|pass|discharge|expel|eject|release +egg|5 +(noun)|ovum|egg cell +(noun)|eggs|foodstuff|food product +(noun)|testis|testicle|orchis|ball|ballock|bollock|nut|male reproductive gland|gonad|sex gland +(verb)|pelt|bombard +(verb)|coat|surface +egg-and-anchor|1 +(noun)|egg-and-dart|egg-and-tongue|molding|moulding +egg-and-dart|1 +(noun)|egg-and-anchor|egg-and-tongue|molding|moulding +egg-and-tongue|1 +(noun)|egg-and-dart|egg-and-anchor|molding|moulding +egg-laying mammal|1 +(noun)|monotreme|prototherian +egg-producing|1 +(adj)|young-bearing|female +egg-shaped|1 +(adj)|elliptic|elliptical|oval|ovate|oviform|ovoid|prolate|rounded +egg cell|1 +(noun)|ovum|gamete +egg cream|1 +(noun)|soft drink +egg cup|2 +(noun)|eggcup|crockery|dishware +(noun)| +egg en cocotte|1 +(noun)|shirred egg|baked egg|dish +egg foo yong|1 +(noun)|egg fu yung|omelet|omelette +egg fu yung|1 +(noun)|egg foo yong|omelet|omelette +egg laying|1 +(noun)|laying|parturition|birth|giving birth|birthing +egg noodle|1 +(noun)|noodle +egg on|1 +(verb)|prod|incite +egg roll|1 +(noun)|spring roll|dish +egg timer|1 +(noun)|sandglass +egg white|1 +(noun)|albumen|ovalbumin|ingredient|fixings +egg yolk|1 +(noun)|ingredient|fixings +eggar|1 +(noun)|egger|lasiocampid|lasiocampid moth +eggbeater|2 +(noun)|helicopter|chopper|whirlybird|heavier-than-air craft +(noun)|eggwhisk|beater|mixer +eggcup|1 +(noun)|egg cup|crockery|dishware +eggdrop soup|1 +(noun)|soup +egger|1 +(noun)|eggar|lasiocampid|lasiocampid moth +eggfruit|1 +(noun)|canistel|edible fruit +egghead|1 +(noun)|intellectual|intellect +eggnog|1 +(noun)|punch +eggplant|2 +(noun)|aubergine|mad apple|solanaceous vegetable +(noun)|aubergine|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb|herbaceous plant +eggplant bush|1 +(noun)|eggplant|aubergine|brinjal|garden egg|mad apple|Solanum melongena|herb|herbaceous plant +eggs|4 +(noun)|egg|foodstuff|food product +(noun)|egg|ovum|egg cell +(noun)|egg|foodstuff|food product +(noun)|testis|testicle|orchis|ball|ballock|bollock|nut|egg|male reproductive gland|gonad|sex gland +eggs benedict|1 +(noun)|eggs Benedict|dish +eggshake|1 +(noun)|milkshake|milk shake|shake +eggshell|1 +(noun)|shell|covering|natural covering|cover +eggwhisk|1 +(noun)|eggbeater|beater|mixer +egis|1 +(noun)|breastplate|aegis|armor plate|armour plate|armor plating|plate armor|plate armour +eglantine|1 +(noun)|sweetbrier|sweetbriar|brier|briar|Rosa eglanteria|rose +ego|3 +(noun)|egotism|self-importance|pride|pridefulness +(noun)|self|consciousness +(noun)|mind|head|brain|psyche|nous +ego ideal|1 +(noun)|ideal +ego trip|1 +(noun)|self-aggrandizement|self-aggrandisement|aggrandizement|aggrandisement|elevation +egocentric|2 +(adj)|egoistical|self-centered|self-centred|egoistic +(noun)|egoist|selfish person +egocentrism|1 +(noun)|egoism|self-interest|self-concern|self-centeredness|trait +egoism|1 +(noun)|egocentrism|self-interest|self-concern|self-centeredness|trait +egoist|2 +(noun)|egotist|swellhead|unpleasant person|disagreeable person +(noun)|egocentric|selfish person +egoistic|1 +(adj)|egoistic |egocentric|egoistical|self-centered|self-centred|self-absorbed|self-involved|selfish +egoistical|1 +(adj)|egocentric|self-centered|self-centred|egoistic +egomania|1 +(noun)|mania|passion|cacoethes +egomaniac|1 +(noun)|egotist|egoist|swellhead +egotism|2 +(noun)|self-importance|swelled head|conceit|vanity +(noun)|ego|self-importance|pride|pridefulness +egotist|1 +(noun)|egoist|swellhead|unpleasant person|disagreeable person +egotistic|2 +(adj)|egotistical|narcissistic|self-loving|selfish +(adj)|conceited|egotistical|self-conceited|swollen|swollen-headed|vain|proud +egotistical|2 +(adj)|egotistic|narcissistic|self-loving|selfish +(adj)|conceited|egotistic|self-conceited|swollen|swollen-headed|vain|proud +egotistically|1 +(adv)|selfishly +egotrip|1 +(verb)|act|move +egregious|1 +(adj)|crying|flagrant|glaring|gross|rank|conspicuous |obvious +egress|4 +(noun)|emersion|reappearance +(noun)|emergence|issue|beginning +(noun)|egression|emergence|deed|feat|effort|exploit +(verb)|issue|emerge|come out|come forth|go forth +egression|1 +(noun)|egress|emergence|deed|feat|effort|exploit +egret|1 +(noun)|heron +egretta|1 +(noun)|Egretta|genus Egretta|bird genus +egretta albus|1 +(noun)|American egret|great white heron|Egretta albus|egret +egretta caerulea|1 +(noun)|little blue heron|Egretta caerulea|heron +egretta garzetta|1 +(noun)|little egret|Egretta garzetta|egret +egretta thula|1 +(noun)|snowy egret|snowy heron|Egretta thula|egret +egtk|1 +(noun)|Tupac Katari Guerrilla Army|EGTK|terrorist organization|terrorist group|foreign terrorist organization|FTO +egypt|2 +(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country|African nation +(noun)|Egyptian Empire|Egypt|empire +egyptian|3 +(adj)|Egyptian|African country|African nation +(noun)|Egyptian|African +(noun)|Egyptian|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +egyptian bean|1 +(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +egyptian capital|1 +(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital|port +egyptian cat|1 +(noun)|Egyptian cat|domestic cat|house cat|Felis domesticus|Felis catus +egyptian cobra|1 +(noun)|asp|Egyptian cobra|Naja haje|cobra +egyptian corn|1 +(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum +egyptian cotton|1 +(noun)|Egyptian cotton|cotton|cotton plant +egyptian deity|1 +(noun)|Egyptian deity|deity|divinity|god|immortal +egyptian empire|1 +(noun)|Egyptian Empire|Egypt|empire +egyptian grass|1 +(noun)|Egyptian grass|crowfoot grass|Dactyloctenium aegypticum|crabgrass|crab grass|finger grass +egyptian henbane|1 +(noun)|Egyptian henbane|Hyoscyamus muticus|herb|herbaceous plant +egyptian islamic jihad|1 +(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization|terrorist group|foreign terrorist organization|FTO +egyptian lupine|1 +(noun)|white lupine|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine|lupin +egyptian monetary unit|1 +(noun)|Egyptian monetary unit|monetary unit +egyptian onion|1 +(noun)|tree onion|Egyptian onion|top onion|Allium cepa viviparum|onion|onion plant|Allium cepa +egyptian paper reed|1 +(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge +egyptian paper rush|1 +(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge +egyptian pea|1 +(noun)|chickpea|chickpea plant|Egyptian pea|Cicer arietinum|legume|leguminous plant +egyptian pound|1 +(noun)|Egyptian pound|pound|Egyptian monetary unit +egyptian vulture|1 +(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture +egyptian water lily|1 +(noun)|lotus|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily +egyptologist|1 +(noun)|Egyptologist|archeologist|archaeologist +egyptology|1 +(noun)|Egyptology|archeology|archaeology +ehadhamen|1 +(noun)|Ehadhamen|city|metropolis|urban center +ehf|1 +(noun)|extremely high frequency|EHF|radio frequency +ehrenberg|1 +(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer|author +ehrlich|1 +(noun)|Ehrlich|Paul Ehrlich|bacteriologist +eichhornia|1 +(noun)|Eichhornia|genus Eichhornia|monocot genus|liliopsid genus +eichhornia crassipes|1 +(noun)|water hyacinth|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant|water plant|hydrophyte|hydrophytic plant +eichhornia spesiosa|1 +(noun)|water hyacinth|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant|water plant|hydrophyte|hydrophytic plant +eichmann|1 +(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi|German Nazi +eicosapentaenoic acid|1 +(noun)|omega-3 fatty acid|omega-3 +eider|1 +(noun)|eider duck|sea duck +eider duck|1 +(noun)|eider|sea duck +eiderdown|2 +(noun)|duvet|continental quilt|quilt|comforter|puff +(noun)|duck down +eidetic|1 +(adj)|representational +eidos|1 +(noun)|attribute +eiffel|1 +(noun)|Eiffel|Alexandre Gustave Eiffel|engineer|applied scientist|technologist +eiffel tower|1 +(noun)|Eiffel Tower|tower +eigen|1 +(noun)|Eigen|Manfred Eigen|chemist +eight|3 +(adj)|8|viii|cardinal +(noun)|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit|figure +(noun)|Ashcan School|Eight|school|artistic movement|art movement +eight-membered|1 +(adj)|8-membered|membered +eight-spot|1 +(noun)|spot +eight ball|1 +(noun)|pool ball +eighteen|2 +(adj)|18|xviii|cardinal +(noun)|18|XVIII|large integer +eighteenth|2 +(adj)|18th|ordinal +(noun)|rank +eighteenth amendment|1 +(noun)|Eighteenth Amendment|amendment +eighter|1 +(noun)|eight|8|VIII|eighter from Decatur|octad|ogdoad|octonary|octet|digit|figure +eighter from decatur|1 +(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit|figure +eightfold|1 +(adj)|octuple|multiple +eighth|3 +(adj)|8th|ordinal +(noun)|rank +(noun)|one-eighth|common fraction|simple fraction +eighth cranial nerve|1 +(noun)|acoustic nerve|auditory nerve|vestibulocochlear nerve|nervus vestibulocochlearis|cranial nerve +eighth note|1 +(noun)|quaver|note|musical note|tone +eighties|4 +(noun)|1880s|decade|decennary|decennium +(noun)|1980s|decade|decennary|decennium +(noun)|mid-eighties|time of life +(noun)|eighty|80|LXXX|fourscore|large integer +eightieth|2 +(adj)|80th|ordinal +(noun)|rank +eightpence|1 +(noun)|coin +eightpenny|1 +(adj)|sized +eightpenny nail|1 +(noun)|nail +eightsome|2 +(noun)|octet|octette|gathering|assemblage +(noun)|reel|Scottish reel +eightvo|1 +(noun)|octavo|8vo|size +eighty|2 +(adj)|80|lxxx|fourscore|cardinal +(noun)|80|LXXX|fourscore|large integer +eighty-eight|1 +(adj)|88|lxxxviii|cardinal +eighty-fifth|1 +(adj)|85th|ordinal +eighty-five|1 +(adj)|85|lxxxv|cardinal +eighty-four|1 +(adj)|84|lxxxiv|cardinal +eighty-nine|1 +(adj)|89|ixc|cardinal +eighty-one|1 +(adj)|81|lxxxi|cardinal +eighty-seven|1 +(adj)|87|lxxxvii|cardinal +eighty-six|1 +(adj)|86|lxxxvi|cardinal +eighty-three|1 +(adj)|83|lxxxiii|cardinal +eighty-two|1 +(adj)|82|lxxxii|cardinal +eijkman|1 +(noun)|Eijkman|Christiaan Eijkman|doctor|doc|physician|MD|Dr.|medico +eileen farrell|1 +(noun)|Farrell|Eileen Farrell|soprano +eimeria|1 +(noun)|coccidium|sporozoan +eimeriidae|1 +(noun)|Eimeriidae|family Eimeriidae|protoctist family +eindhoven|1 +(noun)|Eindhoven|city|metropolis|urban center +einstein|2 +(noun)|Einstein|Albert Einstein|physicist +(noun)|genius|mastermind|brain|Einstein|intellectual|intellect +einstein's general theory of relativity|1 +(noun)|general relativity|general theory of relativity|general relativity theory|Einstein's general theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +einstein's special theory of relativity|1 +(noun)|special relativity|special theory of relativity|special relativity theory|Einstein's special theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +einstein's theory of relativity|1 +(noun)|relativity|theory of relativity|relativity theory|Einstein's theory of relativity|scientific theory +einsteinian|1 +(adj)|Einsteinian|physicist +einsteinium|1 +(noun)|Es|E|atomic number 99|metallic element|metal +einthoven|1 +(noun)|Einthoven|Willem Einthoven|physiologist +eira|1 +(noun)|Eira|genus Eira|mammal genus +eira barbara|1 +(noun)|tayra|taira|Eira barbara|musteline mammal|mustelid|musteline +eire|1 +(noun)|Ireland|Eire|Irish Free State|European country|European nation +eisegesis|1 +(noun)|interpretation +eisenhower|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +eisenstaedt|1 +(noun)|Eisenstaedt|Alfred Eisenstaedt|photographer|lensman +eisenstein|1 +(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker|filmmaker|film producer|movie maker +eisteddfod|1 +(noun)|festival|fete +eitchen midden|1 +(noun)|midden|kitchen midden|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +ejaculate|3 +(noun)|semen|seed|seminal fluid|cum|liquid body substance|bodily fluid|body fluid|humor|humour +(verb)|blurt out|blurt|blunder out|blunder|talk|speak|utter|mouth|verbalize|verbalise +(verb)|discharge|expel|eject|release +ejaculation|2 +(noun)|interjection|exclamation|exclaiming +(noun)|discharge|emission|expelling +ejaculator|2 +(noun)|man|adult male +(noun)|speaker|talker|utterer|verbalizer|verbaliser +ejaculatory duct|1 +(noun)|duct|epithelial duct|canal|channel +eject|4 +(verb)|expel|chuck out|exclude|throw out|kick out|turf out|boot out|turn out|move|displace +(verb)|discharge|expel|release +(verb)|exit|go out|get out|leave +(verb)|squirt|force out|squeeze out|discharge +ejection|2 +(noun)|expulsion|projection|forcing out|propulsion|actuation +(noun)|exclusion|expulsion|riddance|banishment|proscription +ejection seat|1 +(noun)|ejector seat|capsule|seat +ejector|2 +(noun)|ouster|person|individual|someone|somebody|mortal|human|soul +(noun)|cartridge ejector|mechanism +ejector seat|1 +(noun)|ejection seat|capsule|seat +ekbom syndrome|1 +(noun)|restless legs syndrome|restless legs|Ekbom syndrome|syndrome +eke out|4 +(verb)|fill out|supplement +(verb)|live +(verb)|squeeze out|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|squeeze out|obtain +ekg|1 +(noun)|electrocardiogram|cardiogram|EKG|ECG|graph|graphical record +ekman|1 +(noun)|Ekman|Vagn Walfrid Ekman|oceanographer +el|2 +(noun)|elevation|EL|altitude|ALT|angular position +(noun)|elevated railway|elevated railroad|overhead railway|railway|railroad|railroad line|railway line|railway system +el-aksur|1 +(noun)|Luxor|El-Aksur|city|metropolis|urban center +el aaium|1 +(noun)|El Aaium|town +el alamein|2 +(noun)|El Alamein|village|hamlet +(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle +el beda|1 +(noun)|Doha|Bida|El Beda|capital of Qatar|national capital|port +el caudillo|1 +(noun)|Franco|Francisco Franco|El Caudillo|general|full general|dictator|potentate +el cid|1 +(noun)|El Cid|fictional character|fictitious character|character +el dorado|2 +(noun)|El Dorado|eldorado|imaginary place|mythical place +(noun)| +el giza|1 +(noun)|Giza|El Giza|city|metropolis|urban center +el greco|1 +(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master +el iskandriyah|1 +(noun)|Alexandria|El Iskandriyah|city|metropolis|urban center|port +el libertador|2 +(noun)|Bolivar|Simon Bolivar|El Libertador|general|full general|statesman|solon|national leader +(noun)|El Libertador|mountain peak +el misti|1 +(noun)|El Misti|volcano +el muerto|1 +(noun)|El Muerto|mountain peak +el nino|2 +(noun)|El Nino|ocean current +(noun)|El Nino|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer +el nino southern oscillation|1 +(noun)|El Nino southern oscillation|El Nino +el paso|1 +(noun)|El Paso|city|metropolis|urban center +el qahira|1 +(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital|port +el salvador|1 +(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country|Central American nation +el salvadoran colon|1 +(noun)|colon|El Salvadoran colon|El Salvadoran monetary unit +el salvadoran monetary unit|1 +(noun)|El Salvadoran monetary unit|monetary unit +ela|1 +(noun)|Revolutionary People's Struggle|ELA|terrorist organization|terrorist group|foreign terrorist organization|FTO +elaborate|6 +(adj)|luxuriant|fancy +(adj)|detailed|elaborated|careful +(verb)|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate|clarify|clear up|elucidate +(verb)|produce|make|create +(verb)|complicate|refine|rarify|change|alter|modify +(verb)|work out|develop|make grow +elaborated|1 +(adj)|detailed|elaborate|careful +elaborately|1 +(adv)|intricately|in an elaborate way +elaborateness|2 +(noun)|elaboration|intricacy|involution|complexity|complexness +(noun)|ornateness|appearance|visual aspect +elaboration|5 +(noun)|amplification|expansion|expanding upon +(noun)|refinement|improvement|betterment|advance +(noun)|expansion|enlargement|discussion|treatment|discourse +(noun)|elaborateness|intricacy|involution|complexity|complexness +(noun)|working out|development +elaeagnaceae|1 +(noun)|Elaeagnaceae|family Elaeagnaceae|oleaster family|dicot family|magnoliopsid family +elaeagnus|1 +(noun)|Elaeagnus|genus Elaeagnus|dicot genus|magnoliopsid genus +elaeagnus augustifolia|1 +(noun)|Russian olive|silver berry|Elaeagnus augustifolia|oleaster +elaeagnus commutata|1 +(noun)|silverberry|silver berry|silverbush|silver-bush|Elaeagnus commutata|oleaster +elaeagnus latifolia|1 +(noun)|wild olive|Elaeagnus latifolia|oleaster +elaeis|1 +(noun)|Elaeis|genus Elaeis|monocot genus|liliopsid genus +elaeis guineensis|1 +(noun)|African oil palm|Elaeis guineensis|oil palm +elaeis oleifera|1 +(noun)|American oil palm|Elaeis oleifera|oil palm +elaeocarpaceae|1 +(noun)|Elaeocarpaceae|family Elaeocarpaceae|elaeocarpus family|dilleniid dicot family +elaeocarpus|1 +(noun)|Elaeocarpus|genus Elaeocarpus|dilleniid dicot genus +elaeocarpus family|1 +(noun)|Elaeocarpaceae|family Elaeocarpaceae|dilleniid dicot family +elaeocarpus grandis|1 +(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree +elaeostearic acid|1 +(noun)|eleostearic acid|unsaturated fatty acid +elagatis|1 +(noun)|Elagatis|genus Elagatis|fish genus +elagatis bipinnulata|1 +(noun)|rainbow runner|Elagatis bipinnulata|jack +elaidic acid|1 +(noun)|monounsaturated fatty acid|trans fatty acid +elam|1 +(noun)|Elam|Susiana|geographical area|geographic area|geographical region|geographic region +elamite|2 +(noun)|Elamite|White|white person|Caucasian +(noun)|Elamitic|Elamite|Susian|natural language|tongue +elamitic|1 +(noun)|Elamitic|Elamite|Susian|natural language|tongue +elan|3 +(noun)|ardor|ardour|zeal|eagerness|avidity|avidness|keenness +(noun)|dash|flair|panache|style|elegance +(noun)|liveliness|life|spirit|sprightliness +elan vital|1 +(noun)|life force|vital force|vitality|force +eland|1 +(noun)|antelope +elanoides|1 +(noun)|Elanoides|genus Elanoides|bird genus +elanoides forficatus|1 +(noun)|swallow-tailed kite|swallow-tailed hawk|Elanoides forficatus|kite +elanus|1 +(noun)|Elanus|genus Elanus|bird genus +elanus leucurus|1 +(noun)|white-tailed kite|Elanus leucurus|kite +elaphe|1 +(noun)|Elaphe|genus Elaphe|reptile genus +elaphe guttata|1 +(noun)|corn snake|red rat snake|Elaphe guttata|rat snake +elaphe obsoleta|1 +(noun)|black rat snake|blacksnake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake +elaphure|1 +(noun)|pere david's deer|Elaphurus davidianus|deer|cervid +elaphurus|1 +(noun)|Elaphurus|genus Elaphurus|mammal genus +elaphurus davidianus|1 +(noun)|pere david's deer|elaphure|Elaphurus davidianus|deer|cervid +elapid|1 +(noun)|elapid snake|snake|serpent|ophidian +elapid snake|1 +(noun)|elapid|snake|serpent|ophidian +elapidae|1 +(noun)|Elapidae|family Elapidae|reptile family +elapse|1 +(verb)|lapse|pass|slip by|glide by|slip away|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +elapsed|1 +(adj)|advance|progress|pass on|move on|march on|go on +elapsed time|1 +(noun)|time period|period of time|period +elasmobranch|1 +(noun)|selachian|cartilaginous fish|chondrichthian +elasmobranchii|1 +(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class +elastance|1 +(noun)|electrical elastance|electrical phenomenon +elastance unit|1 +(noun)|electromagnetic unit|emu +elastase|1 +(noun)|enzyme +elastic|4 +(adj)|elastic |bouncy|live|lively|resilient|springy|whippy|ductile|malleable|pliable|pliant|tensile|tractile|elasticized|elasticised|expandable|expandible|expansible|expansile|fictile|moldable|plastic|flexible|rubbery|rubberlike|springlike|stretch|stretchable|stretchy|viscoelastic|chewy|flexible|flexile +(adj)|flexible|pliable|pliant|adaptable +(noun)|rubber band|elastic band|band|elastic device +(noun)|fabric|cloth|material|textile +elastic band|1 +(noun)|rubber band|elastic|band|elastic device +elastic bandage|1 +(noun)|bandage|patch +elastic device|1 +(noun)|device +elastic energy|1 +(noun)|elastic potential energy|potential energy|P.E. +elastic modulus|1 +(noun)|coefficient of elasticity|modulus of elasticity|modulus +elastic potential energy|1 +(noun)|elastic energy|potential energy|P.E. +elastic tissue|1 +(noun)|connective tissue +elasticised|1 +(adj)|elasticized|elastic +elasticity|1 +(noun)|snap|physical property +elasticity of shear|1 +(noun)|elasticity|snap +elasticized|1 +(adj)|elasticised|elastic +elastin|1 +(noun)|scleroprotein|albuminoid +elastomer|1 +(noun)|material|stuff +elastoplast|1 +(noun)|Elastoplast|adhesive bandage|elastic bandage +elastosis|1 +(noun)|physiological state|physiological condition +elate|1 +(verb)|lift up|uplift|pick up|intoxicate|stimulate|shake|shake up|excite|stir +elated|2 +(adj)|elated |exultant|exulting|jubilant|prideful|rejoicing|triumphal|triumphant|gladdened|exhilarated|high|in high spirits|uplifted|sublime|euphoric|happy|happy|joyous +(adj)|gleeful|joyful|jubilant|joyous +elater|1 +(noun)|elaterid beetle|elaterid|beetle +elaterid|1 +(noun)|elaterid beetle|elater|beetle +elaterid beetle|1 +(noun)|elater|elaterid|beetle +elateridae|1 +(noun)|Elateridae|family Elateridae|arthropod family +elating|1 +(adj)|exhilarating|exciting +elation|2 +(noun)|psychological state|mental state +(noun)|high spirits|joy|joyousness|joyfulness +elavil|1 +(noun)|amitriptyline|amitriptyline hydrochloride|Elavil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +elbe|1 +(noun)|Elbe|Elbe River|river +elbe river|1 +(noun)|Elbe|Elbe River|river +elbow|7 +(noun)|elbow joint|cubitus|cubital joint|articulatio cubiti|hinge joint|ginglymus|ginglymoid joint +(noun)|bend|curve +(noun)|pipe|pipage|piping +(noun)|cloth covering +(noun)|joint|articulation|articulatio +(verb)|jostle|shove +(verb)|nudge|poke at|prod +elbow bone|1 +(noun)|ulna|arm bone +elbow grease|1 +(noun)|effort|exertion|travail|sweat|labor|labour|toil +elbow joint|1 +(noun)|elbow|cubitus|cubital joint|articulatio cubiti|hinge joint|ginglymus|ginglymoid joint +elbow pad|1 +(noun)|protective garment +elbow room|1 +(noun)|room|way|position|spatial relation +elbowing|1 +(noun)|jostle|jostling +eld|2 +(noun)|old age|years|age|geezerhood|time of life +(noun)|age|time of life +elder|5 +(adj)|older|sr.|senior +(adj)|big |older +(noun)|senior|adult|grownup +(noun)|elderberry bush|shrub|bush +(noun)|church officer +elder hand|1 +(noun)|eldest hand|card player +elder statesman|2 +(noun)|important person|influential person|personage +(noun)|statesman|solon|national leader +elderberry|2 +(noun)|bourtree|black elder|common elder|European elder|Sambucus nigra|elder|elderberry bush +(noun)|edible fruit|drupe|stone fruit +elderberry bush|1 +(noun)|elder|shrub|bush +elderly|1 +(adj)|aged|older|senior|old +eldership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +eldest|2 +(adj)|firstborn|first +(noun)|firstborn|offspring|progeny|issue +eldest hand|1 +(noun)|elder hand|card player +eldorado|1 +(noun)|El Dorado|imaginary place|mythical place +eldritch|1 +(adj)|weird|uncanny|unearthly|supernatural +eleanor gwyn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +eleanor gwynn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +eleanor gwynne|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +eleanor of aquitaine|1 +(noun)|Eleanor of Aquitaine|queen +eleanor roosevelt|1 +(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat|diplomatist|writer|author +elecampane|1 +(noun)|Inula helenium|inula +elect|5 +(adj)|elite|selected +(adj)|incoming +(noun)|chosen|elite|elite group +(verb)|choose|take|select|pick out +(verb)|choose|take|select|pick out +elected|1 +(adj)|elective |electoral|nonappointive +elected official|1 +(noun)|official|functionary +election|4 +(noun)|vote +(noun)|choice|selection|option|pick +(noun)|status|position +(noun)|predestination|foreordination|preordination|predetermination +election commission|1 +(noun)|committee|commission +election day|1 +(noun)|polling day|day +election district|1 +(noun)|voting precinct|precinct +election fraud|1 +(noun)|fraud +electioneer|1 +(verb)|work +electioneering|2 +(noun)|bell ringing|canvassing|persuasion|suasion +(noun)|campaigning|candidacy|candidature|political campaign|campaign|cause|crusade|drive|movement|effort +elective|2 +(adj)|elective |elected|electoral|nonappointive +(adj)|optional +elector|2 +(noun)|voter|citizen +(noun)|Elector|prince +electoral|2 +(adj)|choice|selection|option|pick +(adj)|elective |elected +electoral college|1 +(noun)|body +electoral system|1 +(noun)|voting system|legal system +electorate|1 +(noun)|citizenry|people +electra|1 +(noun)|Electra|mythical being +electra complex|1 +(noun)|Electra complex|complex +electric|4 +(adj)|electrical|physical phenomenon +(adj)|tense +(adj)|galvanic|galvanizing|galvanising|exciting +(noun)|electric automobile|electric car|car|auto|automobile|machine|motorcar +electric-arc furnace|1 +(noun)|Stassano furnace|electric furnace +electric-discharge lamp|1 +(noun)|gas-discharge lamp|electric lamp +electric-light bulb|1 +(noun)|light bulb|lightbulb|bulb|incandescent lamp|electric light|electric lamp +electric arc|1 +(noun)|discharge|spark|arc|electric discharge|electrical conduction +electric automobile|1 +(noun)|electric|electric car|car|auto|automobile|machine|motorcar +electric battery|1 +(noun)|battery|electrical device +electric bell|1 +(noun)|bell +electric bill|1 +(noun)|bill|account|invoice +electric blanket|1 +(noun)|blanket|cover +electric burn|1 +(noun)|burn +electric car|1 +(noun)|electric|electric automobile|car|auto|automobile|machine|motorcar +electric catfish|1 +(noun)|Malopterurus electricus|silurid|silurid fish +electric cell|1 +(noun)|cell|electrical device +electric chair|1 +(noun)|chair|death chair|hot seat|instrument of execution +electric charge|1 +(noun)|charge|electrical phenomenon +electric circuit|1 +(noun)|circuit|electrical circuit|electrical device +electric clock|1 +(noun)|clock +electric company|1 +(noun)|power company|power service|light company|utility|public utility|public-service corporation +electric cord|1 +(noun)|cord|conductor +electric current|1 +(noun)|current|electrical phenomenon +electric dipole|1 +(noun)|electric doublet|dipole +electric dipole moment|1 +(noun)|dipole moment +electric discharge|1 +(noun)|discharge|spark|arc|electric arc|electrical conduction +electric doublet|1 +(noun)|electric dipole|dipole +electric drill|1 +(noun)|power drill +electric eel|1 +(noun)|Electrophorus electric|cypriniform fish +electric eye|1 +(noun)|photoelectric cell|photoconductive cell|photocell|magic eye|transducer|detector|sensor|sensing element +electric fan|1 +(noun)|blower|fan +electric field|1 +(noun)|field|field of force|force field +electric fire|1 +(noun)|electric heater|space heater +electric frying pan|1 +(noun)|frying pan|frypan|skillet +electric furnace|1 +(noun)|furnace +electric glow|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|discharge|spark|arc|electric arc|electric discharge +electric guitar|1 +(noun)|guitar +electric hammer|1 +(noun)|hammer|power hammer +electric healing|1 +(noun)|galvanism|electrical healing|therapy +electric heater|1 +(noun)|electric fire|space heater +electric lamp|1 +(noun)|lamp +electric light|1 +(noun)|light bulb|lightbulb|bulb|incandescent lamp|electric-light bulb|electric lamp +electric locomotive|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +electric main|1 +(noun)|main +electric meter|1 +(noun)|power meter|meter +electric mixer|1 +(noun)|mixer +electric motor|1 +(noun)|motor +electric organ|1 +(noun)|electronic organ|Hammond organ|organ|electronic instrument +electric outlet|1 +(noun)|wall socket|wall plug|electrical outlet|outlet|electric receptacle|receptacle +electric pig|1 +(noun)|disposal|garbage disposal|kitchen appliance +electric potential|1 +(noun)|potential|potential difference|potential drop|voltage|electrical phenomenon +electric power|1 +(noun)|electrical power|wattage|power +electric range|1 +(noun)|stove|kitchen stove|range|kitchen range|cooking stove|white goods +electric ray|1 +(noun)|crampfish|numbfish|torpedo|ray +electric razor|1 +(noun)|shaver|electric shaver|razor +electric receptacle|1 +(noun)|wall socket|wall plug|electric outlet|electrical outlet|outlet|receptacle +electric refrigerator|1 +(noun)|fridge|refrigerator|icebox +electric resistance|1 +(noun)|electrical resistance|impedance|resistance|resistivity|ohmic resistance|electrical phenomenon +electric sander|1 +(noun)|drum sander|sander|smoother|power tool +electric shaver|1 +(noun)|shaver|electric razor|razor +electric shock|3 +(noun)|corporal punishment +(noun)|injury|hurt|harm|trauma +(noun)|electrical shock|shock|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +electric socket|1 +(noun)|socket +electric storm|1 +(noun)|thunderstorm|electrical storm|storm|violent storm +electric switch|1 +(noun)|switch|electrical switch|control|controller +electric thermometer|1 +(noun)|thermoelectric thermometer|thermel|thermometer +electric toothbrush|1 +(noun)|toothbrush +electric typewriter|1 +(noun)|typewriter +electrical|2 +(adj)|physical phenomenon +(adj)|electric|physical phenomenon +electrical cable|1 +(noun)|cable|line|transmission line +electrical capacity|1 +(noun)|capacitance|capacity|electrical phenomenon +electrical circuit|1 +(noun)|circuit|electric circuit|electrical device +electrical condenser|1 +(noun)|capacitor|capacitance|condenser|electrical device +electrical conduction|1 +(noun)|conduction|conductivity +electrical contact|1 +(noun)|contact|tangency +electrical converter|1 +(noun)|converter|convertor +electrical device|1 +(noun)|device +electrical discharge|1 +(noun)|discharge +electrical distributor|1 +(noun)|distributor|distributer|electrical device +electrical disturbance|1 +(noun)|electrical phenomenon +electrical elastance|1 +(noun)|elastance|electrical phenomenon +electrical energy|1 +(noun)|electricity|energy +electrical engineer|1 +(noun)|engineer|applied scientist|technologist +electrical engineering|1 +(noun)|EE|engineering|engineering science|applied science|technology +electrical fuse|1 +(noun)|fuse|electrical device +electrical healing|1 +(noun)|galvanism|electric healing|therapy +electrical line of force|1 +(noun)|line of force|field line +electrical outlet|1 +(noun)|wall socket|wall plug|electric outlet|outlet|electric receptacle|receptacle +electrical phenomenon|1 +(noun)|physical phenomenon +electrical plant|1 +(noun)|electrical system|utility +electrical power|1 +(noun)|electric power|wattage|power +electrical relay|1 +(noun)|relay|electrical device +electrical resistance|1 +(noun)|electric resistance|impedance|resistance|resistivity|ohmic resistance|electrical phenomenon +electrical shock|1 +(noun)|electric shock|shock|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +electrical shunt|1 +(noun)|shunt|bypass|conductor +electrical skin response|1 +(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +electrical storm|1 +(noun)|thunderstorm|electric storm|storm|violent storm +electrical switch|1 +(noun)|switch|electric switch|control|controller +electrical system|2 +(noun)|electrical plant|utility +(noun)|equipment +electrical work|1 +(noun)|trade|craft +electrician|1 +(noun)|lineman|linesman|skilled worker|trained worker +electricity|3 +(noun)|physical phenomenon +(noun)|electrical energy|energy +(noun)|stir +electrification|2 +(noun)|energizing|activating|activation +(noun)|exploitation|development +electrify|3 +(verb)|agitate|rouse|turn on|charge|commove|excite|charge up +(verb)|fill|fill up|make full +(verb)|wire|adapt|accommodate +electrifying|1 +(adj)|thrilling|exciting +electro-acoustic transducer|1 +(noun)|transducer +electrocardiogram|1 +(noun)|cardiogram|EKG|ECG|graph|graphical record +electrocardiograph|1 +(noun)|cardiograph|medical instrument +electrocardiographic|1 +(adj)|medical instrument +electrocardiography|1 +(noun)|cardiography|diagnostic procedure|diagnostic technique +electrocautery|1 +(noun)|thermocautery +electrochemical|1 +(adj)|chemistry|chemical science +electrochemical series|1 +(noun)|electromotive series|electromotive force series|series +electrochemistry|1 +(noun)|chemistry|chemical science +electroconvulsive therapy|1 +(noun)|electroshock|electroshock therapy|ECT|shock therapy|shock treatment +electrocute|2 +(verb)|kill +(verb)|fry|kill +electrocution|2 +(noun)|burning|execution|executing|capital punishment|death penalty +(noun)|killing|kill|putting to death +electrocutioner|1 +(noun)|executioner|public executioner +electrode|1 +(noun)|conductor +electrodeposition|1 +(noun)|deposition|deposit +electrodermal response|1 +(noun)|galvanic skin response|GSR|psychogalvanic response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +electrodynamometer|1 +(noun)|measuring instrument|measuring system|measuring device +electroencephalogram|1 +(noun)|encephalogram|EEG|graph|graphical record +electroencephalograph|1 +(noun)|medical instrument +electroencephalographic|1 +(adj)|medical instrument +electrograph|2 +(noun)|apparatus|setup +(noun)|electrical device +electrologist|1 +(noun)|health professional|health care provider|caregiver +electrolysis|2 +(noun)|lysis +(noun)|depilation|epilation +electrolyte|1 +(noun)|solution +electrolyte acid|1 +(noun)|battery acid|vitriol|oil of vitriol|sulfuric acid|sulphuric acid +electrolyte balance|1 +(noun)|balance +electrolytic|3 +(adj)|lysis +(adj)|capacitor|capacitance|condenser|electrical condenser +(noun)|electrolytic capacitor|electrolytic condenser|capacitor|capacitance|condenser|electrical condenser +electrolytic capacitor|1 +(noun)|electrolytic|electrolytic condenser|capacitor|capacitance|condenser|electrical condenser +electrolytic cell|1 +(noun)|cell|electric cell +electrolytic condenser|1 +(noun)|electrolytic|electrolytic capacitor|capacitor|capacitance|condenser|electrical condenser +electromagnet|1 +(noun)|magnet +electromagnetic|1 +(adj)|magnetism|magnetic attraction|magnetic force +electromagnetic delay line|1 +(noun)|delay line +electromagnetic interaction|1 +(noun)|interaction|fundamental interaction +electromagnetic intrusion|1 +(noun)|electronic warfare|EW +electromagnetic radiation|1 +(noun)|electromagnetic wave|nonparticulate radiation|radiation +electromagnetic spectrum|1 +(noun)|spectrum +electromagnetic unit|1 +(noun)|emu|unit of measurement|unit +electromagnetic wave|1 +(noun)|electromagnetic radiation|nonparticulate radiation|radiation +electromagnetics|1 +(noun)|electromagnetism|physics|physical science|natural philosophy +electromagnetism|2 +(noun)|magnetism|magnetic attraction|magnetic force +(noun)|electromagnetics|physics|physical science|natural philosophy +electromechanical|1 +(adj)|mechanical device +electromechanical device|1 +(noun)|mechanical device +electrometer|1 +(noun)|meter +electromotive drug administration|1 +(noun)|iontophoresis|ionic medication|iontotherapy|EMDA|therapy +electromotive force|1 +(noun)|voltage|emf|electrical phenomenon +electromotive force series|1 +(noun)|electromotive series|electrochemical series|series +electromotive series|1 +(noun)|electromotive force series|electrochemical series|series +electromotxsive|1 +(adj)|electromotXsive|electrical phenomenon +electromyogram|1 +(noun)|EMG|myogram +electromyograph|1 +(noun)|medical instrument +electromyography|1 +(noun)|diagnostic procedure|diagnostic technique +electron|1 +(noun)|negatron|lepton +electron accelerator|1 +(noun)|collider +electron beam|1 +(noun)|beam|ray|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +electron gun|1 +(noun)|electrode +electron lens|1 +(noun)|lens|electronic equipment +electron microscope|1 +(noun)|microscope +electron microscopic|1 +(adj)|microscopy +electron microscopy|1 +(noun)|microscopy +electron multiplier|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +electron optics|1 +(noun)|electronics +electron orbit|1 +(noun)|orbit|path|route|itinerary +electron paramagnetic resonance|1 +(noun)|electron spin resonance|ESR|microwave spectroscopy +electron radiation|1 +(noun)|beta radiation|beta ray|corpuscular radiation|particulate radiation|ionizing radiation +electron shell|1 +(noun)|group|grouping +electron spin resonance|1 +(noun)|ESR|electron paramagnetic resonance|microwave spectroscopy +electron tube|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|thermionic valve|electronic device +electron volt|1 +(noun)|eV|work unit|heat unit|energy unit +electronegative|1 +(adj)|negative +electronegativity|1 +(noun)|negativity|tendency|inclination +electroneutral|1 +(adj)|neutral +electronic|2 +(adj)|physics|physical science|natural philosophy +(adj)|lepton +electronic balance|1 +(noun)|balance +electronic bulletin board|1 +(noun)|bulletin board system|bulletin board|bbs|digital computer +electronic communication|1 +(noun)|transmission +electronic computer|1 +(noun)|computer|computing machine|computing device|data processor|information processing system|machine +electronic converter|1 +(noun)|converter|convertor +electronic counter-countermeasures|1 +(noun)|ECCM|electronic warfare|EW +electronic countermeasures|1 +(noun)|ECM|electronic warfare|EW +electronic data processing|1 +(noun)|EDP|automatic data processing|ADP +electronic database|1 +(noun)|on-line database|computer database|electronic information service|database +electronic deception|1 +(noun)|electronic countermeasures|ECM +electronic device|1 +(noun)|device +electronic dictionary|1 +(noun)|machine readable dictionary|MRD|lexical database +electronic equipment|1 +(noun)|equipment +electronic fetal monitor|1 +(noun)|electronic foetal monitor|fetal monitor|foetal monitor|monitor +electronic foetal monitor|1 +(noun)|electronic fetal monitor|fetal monitor|foetal monitor|monitor +electronic image|1 +(noun)|bitmap|picture|image|icon|ikon +electronic imitative deception|1 +(noun)|imitative electronic deception|electronic deception +electronic information service|1 +(noun)|electronic database|on-line database|computer database|database +electronic instrument|1 +(noun)|musical instrument|instrument +electronic jamming|1 +(noun)|jamming|jam|electronic countermeasures|ECM +electronic mail|1 +(noun)|e-mail|email|electronic communication +electronic manipulative deception|1 +(noun)|manipulative electronic deception|electronic deception +electronic messaging|1 +(noun)|messaging|electronic communication +electronic network|1 +(noun)|network|system +electronic organ|1 +(noun)|electric organ|Hammond organ|organ|electronic instrument +electronic reconnaissance|1 +(noun)|reconnaissance|reconnaissance mission +electronic scanner|1 +(noun)|scanner|detector +electronic signal|1 +(noun)|signal|signaling|sign +electronic simulative deception|1 +(noun)|simulative electronic deception|electronic deception +electronic stylus|1 +(noun)|light pen|pointer +electronic surveillance|1 +(noun)|surveillance +electronic text|1 +(noun)|text|textual matter +electronic transistor|1 +(noun)|transistor|junction transistor|semiconductor device|semiconductor unit|semiconductor +electronic voltmeter|1 +(noun)|voltmeter +electronic warfare|1 +(noun)|EW|military action|action +electronic warfare-support measures|1 +(noun)|ESM|electronic warfare|EW +electronics|1 +(noun)|physics|physical science|natural philosophy +electronics company|1 +(noun)|company +electronics industry|1 +(noun)|industry +electronics intelligence|1 +(noun)|ELINT|signals intelligence|SIGINT +electrophoresis|1 +(noun)|cataphoresis|dielectrolysis|ionophoresis|natural process|natural action|action|activity +electrophoretic|1 +(adj)|cataphoretic|natural process|natural action|action|activity +electrophoridae|1 +(noun)|Electrophoridae|family Electrophoridae|fish family +electrophorus|2 +(noun)|electrostatic generator|electrostatic machine|Wimshurst machine|Van de Graaff generator +(noun)|Electrophorus|genus Electrophorus|fish genus +electrophorus electric|1 +(noun)|electric eel|Electrophorus electric|cypriniform fish +electroplate|2 +(noun)|artifact|artefact +(verb)|plate +electroplater|1 +(noun)|plater +electropositive|1 +(adj)|positive +electroretinogram|1 +(noun)|graph|graphical record +electroscope|1 +(noun)|measuring instrument|measuring system|measuring device +electroshock|1 +(noun)|electroconvulsive therapy|electroshock therapy|ECT|shock therapy|shock treatment +electroshock therapy|1 +(noun)|electroconvulsive therapy|electroshock|ECT|shock therapy|shock treatment +electrosleep|1 +(noun)|unconsciousness +electrostatic|1 +(adj)|static|electricity +electrostatic bond|1 +(noun)|ionic bond|electrovalent bond|chemical bond|bond +electrostatic charge|1 +(noun)|charge|electric charge +electrostatic field|1 +(noun)|electric field +electrostatic generator|1 +(noun)|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device +electrostatic machine|1 +(noun)|electrostatic generator|Wimshurst machine|Van de Graaff generator|electrical device +electrostatic printer|1 +(noun)|printer|printing machine +electrostatic unit|1 +(noun)|unit of measurement|unit +electrostatics|1 +(noun)|physics|physical science|natural philosophy +electrosurgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +electrotherapist|1 +(noun)|therapist|healer +electrovalent bond|1 +(noun)|ionic bond|electrostatic bond|chemical bond|bond +electrum|1 +(noun)|alloy|metal +eleemosynary|1 +(adj)|beneficent|benevolent|philanthropic|charitable +elegance|1 +(noun)|quality +elegant|4 +(adj)|elegant |dandified|dandyish|foppish|deluxe|de luxe|luxe|luxury|exquisite|recherche|high-class|high-toned|neat|refined|tasteful|ritzy|soigne|soignee|fine|dignified|graceful|refined|sophisticated|tasteful|in good taste +(adj)|graceful|refined|gracious +(adj)|graceful +(adj)|courtly|formal|stately|dignified +elegant brodiaea|1 +(noun)|Brodiaea elegans|brodiaea +elegant cat's ears|1 +(noun)|star tulip|Calochortus elegans|mariposa|mariposa tulip|mariposa lily +elegant habenaria|1 +(noun)|elegant Habenaria|Habenaria elegans|rein orchid|rein orchis +elegiac|2 +(adj)|poem|verse form +(adj)|sorrowful +elegiac stanza|1 +(noun)|quatrain +elegise|1 +(verb)|elegize|verse|versify|poetize|poetise +elegist|1 +(noun)|poet +elegize|1 +(verb)|elegise|verse|versify|poetize|poetise +elegy|1 +(noun)|lament|poem|verse form +element|7 +(noun)|component|constituent|factor|ingredient|part|section|division +(noun)|chemical element|substance|matter +(noun)|component|constituent|part|portion +(noun)|substance|matter +(noun)|environment|environs|surroundings|surround +(noun)|situation|state of affairs +(noun)|straight line +element 104|1 +(noun)|rutherfordium|Rf|kurchatovium|Ku|unnilquadium|Unq|atomic number 104|chemical element|element +element 105|1 +(noun)|unnilquintium|unnilpentium|Unp|hahnium|atomic number 105|chemical element|element +element 106|1 +(noun)|unnilhexium|Unh|atomic number 106|chemical element|element +element 107|1 +(noun)|unnilseptium|Uns|atomic number 107|chemical element|element +element of a cone|1 +(noun)|element +element of a cylinder|1 +(noun)|element +elemental|4 +(adj)|natural +(adj)|ultimate|simple +(adj)|substance|matter +(adj)|weather|weather condition|atmospheric condition +elementary|2 +(adj)|simple|uncomplicated|unproblematic|easy +(adj)|primary|basic +elementary education|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +elementary geometry|1 +(noun)|parabolic geometry|Euclidean geometry|geometry +elementary particle|1 +(noun)|fundamental particle|subatomic particle|particle +elementary school|1 +(noun)|grade school|grammar school|primary school|school +elements|8 +(noun)|weather|weather condition|atmospheric condition +(noun)|component|constituent|element|factor|ingredient|part|section|division +(noun)|chemical element|element|substance|matter +(noun)|component|constituent|element|part|portion +(noun)|element|substance|matter +(noun)|element|environment|environs|surroundings|surround +(noun)|element|situation|state of affairs +(noun)|element|straight line +elemi|1 +(noun)|gum elemi|gum resin +eleocharis|1 +(noun)|Eleocharis|genus Eleocharis|monocot genus|liliopsid genus +eleocharis acicularis|1 +(noun)|needle spike rush|needle rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush +eleocharis dulcis|1 +(noun)|water chestnut|Chinese water chestnut|Eleocharis dulcis|spike rush +eleocharis palustris|1 +(noun)|creeping spike rush|Eleocharis palustris|spike rush +eleonora duse|1 +(noun)|Duse|Eleonora Duse|actress +eleostearic acid|1 +(noun)|elaeostearic acid|unsaturated fatty acid +eleotridae|1 +(noun)|Eleotridae|family Eleotridae|fish family +elephant|2 +(noun)|proboscidean|proboscidian +(noun)|emblem|allegory +elephant's-foot|2 +(noun)|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine +(noun)|herb|herbaceous plant +elephant's ear|2 +(noun)|alocasia|elephant ear|arum|aroid +(noun)|conacaste|Enterolobium cyclocarpa|tree +elephant-tusk|1 +(noun)|common unicorn plant|devil's claw|common devil's claw|proboscis flower|ram's horn|Proboscidea louisianica|herb|herbaceous plant +elephant bird|1 +(noun)|aepyornis|ratite|ratite bird|flightless bird +elephant ear|1 +(noun)|alocasia|elephant's ear|arum|aroid +elephant seal|1 +(noun)|sea elephant|earless seal|true seal|hair seal +elephant tree|1 +(noun)|Bursera microphylla|incense tree +elephant yam|1 +(noun)|pungapung|telingo potato|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum|aroid +elephantiasis|1 +(noun)|hypertrophy +elephantiasis neuromatosa|1 +(noun)|elephantiasis +elephantiasis scroti|1 +(noun)|chyloderma|elephantiasis +elephantidae|1 +(noun)|Elephantidae|family Elephantidae|mammal family +elephantine|1 +(adj)|gargantuan|giant|jumbo|large +elephantopus|1 +(noun)|Elephantopus|genus Elephantopus|asterid dicot genus +elephas|1 +(noun)|Elephas|genus Elephas|mammal genus +elephas maximus|1 +(noun)|Indian elephant|Elephas maximus|elephant +elettaria|1 +(noun)|Elettaria|genus Elettaria|monocot genus|liliopsid genus +elettaria cardamomum|1 +(noun)|cardamom|cardamon|Elettaria cardamomum|herb|herbaceous plant +eleusine|1 +(noun)|Eleusine|genus Eleusine|monocot genus|liliopsid genus +eleusine coracana|1 +(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet +eleusine indica|1 +(noun)|yardgrass|yard grass|wire grass|goose grass|Eleusine indica|millet +eleutherodactylus|1 +(noun)|Eleutherodactylus|genus Eleutherodactylus|amphibian genus +eleuthra bark|1 +(noun)|cascarilla bark|sweetwood bark|bark +elevate|3 +(verb)|promote|upgrade|advance|kick upstairs|raise|delegate|designate|depute|assign +(verb)|raise|lift|get up|bring up|move|displace +(verb)|lift|raise|change|alter|modify +elevated|2 +(adj)|overhead +(adj)|raised +elevated railroad|1 +(noun)|elevated railway|el|overhead railway|railway|railroad|railroad line|railway line|railway system +elevated railway|1 +(noun)|elevated railroad|el|overhead railway|railway|railroad|railroad line|railway line|railway system +elevation|8 +(noun)|lift|raising|rise|rising|ascent|ascension +(noun)|acme|height|peak|pinnacle|summit|superlative|top|degree|level|stage|point +(noun)|EL|altitude|ALT|angular position +(noun)|natural elevation|geological formation|formation +(noun)|distance +(noun)|leap +(noun)|plan|architectural plan +(noun)|aggrandizement|aggrandisement|increase|step-up +elevator|2 +(noun)|lift|lifting device +(noun)|airfoil|aerofoil|control surface|surface +elevator boy|1 +(noun)|elevator man|liftman|elevator operator +elevator car|1 +(noun)|car|compartment +elevator girl|1 +(noun)|elevator operator +elevator man|1 +(noun)|elevator boy|liftman|elevator operator +elevator operator|1 +(noun)|operator|manipulator +elevator shaft|1 +(noun)|shaft +eleven|3 +(adj)|11|xi|cardinal +(noun)|11|XI|large integer +(noun)|football team|team|squad +eleven-plus|1 +(noun)|11-plus|examination|testing +eleventh|2 +(adj)|11th|ordinal +(noun)|rank +eleventh cranial nerve|1 +(noun)|accessory nerve|spinal accessory|nervus accessorius|cranial nerve +eleventh hour|1 +(noun)|last minute|moment|minute|second|instant +elf|2 +(noun)|hob|gremlin|pixie|pixy|brownie|imp|fairy|faery|faerie|sprite +(noun)|extremely low frequency|ELF|radio frequency +elf cup|1 +(noun)|apothecium +elfin|4 +(adj)|fey|supernatural +(adj)|elflike|small +(adj)|fairy|faery|faerie|sprite +(adj)|elfish|elvish|playful +elfish|1 +(adj)|elfin|elvish|playful +elflike|1 +(adj)|elfin|small +elgar|1 +(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer +elgin marbles|1 +(noun)|Elgin Marbles|statuary +eli whitney|1 +(noun)|Whitney|Eli Whitney|inventor|discoverer|artificer|manufacturer|producer +elia|1 +(noun)|Lamb|Charles Lamb|Elia|essayist|litterateur +elias canetti|1 +(noun)|Canetti|Elias Canetti|writer|author +elias howe|1 +(noun)|Howe|Elias Howe|inventor|discoverer|artificer +elicit|3 +(verb)|arouse|enkindle|kindle|evoke|fire|raise|provoke|make|create +(verb)|educe|evoke|extract|draw out|interpret|construe|see +(verb)|deduce|infer|deduct|derive +elicitation|1 +(noun)|evocation|induction|stimulation|stimulus|stimulant|input +elicited|1 +(adj)|evoked|induced +elide|1 +(verb)|exclude|except|leave out|leave off|omit|take out +elie metchnikoff|1 +(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist +elie metchnikov|1 +(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist +elie wiesel|1 +(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer|author|historian|historiographer +eliel saarinen|1 +(noun)|Saarinen|Eliel Saarinen|architect|designer +eliezer wiesel|1 +(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer|author|historian|historiographer +eligibility|2 +(noun)|acceptance +(noun)|qualification|makings +eligible|2 +(adj)|eligible |bailable|desirable|suitable|worthy|entitled|in line|pensionable|legal|qualified +(adj)|legal +elihu thomson|1 +(noun)|Thomson|Elihu Thomson|electrical engineer +elihu yale|1 +(noun)|Yale|Elihu Yale|philanthropist|altruist +elijah|1 +(noun)|Elijah|prophet +elijah muhammad|1 +(noun)|Muhammad|Elijah Muhammad|Black Muslim +eliminate|7 +(verb)|get rid of|do away with|destroy|destruct +(verb)|obviate|rid of +(verb)|annihilate|extinguish|eradicate|wipe out|decimate|carry off|kill +(verb)|rule out|reject +(verb)|excrete|egest|pass|discharge|expel|eject|release +(verb)|beat|beat out|crush|shell|trounce|vanquish +(verb)|remove|take|take away|withdraw +elimination|5 +(noun)|riddance|removal|remotion +(noun)|evacuation|excretion|excreting|voiding|discharge|emission|expelling +(noun)|reasoning by elimination|analysis|analytic thinking +(noun)|removal|remotion +(noun)|liquidation|murder|slaying|execution +elimination reaction|1 +(noun)|chemical reaction|reaction +elimination tournament|1 +(noun)|tournament|tourney +eliminator|1 +(noun)|agent +elinor morton hoyt wylie|1 +(noun)|Wylie|Elinor Morton Hoyt Wylie|poet +elint|1 +(noun)|electronics intelligence|ELINT|signals intelligence|SIGINT +elinvar|1 +(noun)|chrome-nickel steel|Elinvar|alloy steel +eliomys|1 +(noun)|Eliomys|genus Eliomys|mammal genus +eliot|2 +(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet|dramatist|playwright +(noun)|Eliot|George Eliot|Mary Ann Evans|writer|author +elisa|1 +(noun)|enzyme-linked-immunosorbent serologic assay|ELISA|assay +elisabeth vigee-lebrun|1 +(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter +elisabethville|1 +(noun)|Lubumbashi|Elisabethville|city|metropolis|urban center +elisha graves otis|1 +(noun)|Otis|Elisha Graves Otis|inventor|discoverer|artificer|industrialist +elision|2 +(noun)|omission|deletion +(noun)|exception|exclusion|omission +elite|2 +(adj)|elect|selected +(noun)|elite group|upper class|upper crust +elite group|1 +(noun)|elite|upper class|upper crust +elitism|1 +(noun)|political orientation|ideology|political theory +elitist|1 +(noun)|moralist +elixir|2 +(noun)|liquid +(noun)|potion|panacea|nostrum|cure-all +elixir of life|1 +(noun)|elixir +elixophyllin|1 +(noun)|aminophylline|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator +elizabeth|2 +(noun)|Elizabeth|Elizabeth II|Queen of England +(noun)|Elizabeth|Elizabeth I|Queen of England +elizabeth barrett browning|1 +(noun)|Browning|Elizabeth Barrett Browning|poet +elizabeth cady stanton|1 +(noun)|Stanton|Elizabeth Cady Stanton|suffragist|feminist|women's rightist|women's liberationist|libber +elizabeth cleghorn stevenson gaskell|1 +(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer|author +elizabeth cochrane seaman|1 +(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist +elizabeth gaskell|1 +(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer|author +elizabeth haldane|1 +(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer|author +elizabeth i|1 +(noun)|Elizabeth|Elizabeth I|Queen of England +elizabeth ii|1 +(noun)|Elizabeth|Elizabeth II|Queen of England +elizabeth merriwether gilmer|1 +(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist +elizabeth palmer peabody|1 +(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator|pedagogue +elizabeth peabody|1 +(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator|pedagogue +elizabeth river|1 +(noun)|Elizabeth River|river +elizabeth sanderson haldane|1 +(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer|author +elizabeth seaman|1 +(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist +elizabeth seton|1 +(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader +elizabeth taylor|1 +(noun)|Taylor|Elizabeth Taylor|actress +elizabethan|2 +(adj)|Elizabethan|Queen of England|historic period|age +(noun)|Elizabethan|person|individual|someone|somebody|mortal|human|soul +elizabethan age|1 +(noun)|Elizabethan age|historic period|age +elizabethan sonnet|1 +(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet +elk|1 +(noun)|European elk|moose|Alces alces|deer|cervid +elk-wood|2 +(noun)|umbrella tree|umbrella magnolia|elkwood|Magnolia tripetala|magnolia +(noun)| +elk nut|1 +(noun)|buffalo nut|oil nut|fruit +elkhorn fern|1 +(noun)|common staghorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern +elkhound|1 +(noun)|Norwegian elkhound|hound|hound dog +elkwood|1 +(noun)|umbrella tree|umbrella magnolia|elk-wood|Magnolia tripetala|magnolia +ell|1 +(noun)|annex|annexe|extension|wing +ella fitzgerald|1 +(noun)|Fitzgerald|Ella Fitzgerald|singer|vocalist|vocalizer|vocaliser +ellas|1 +(noun)|Greece|Hellenic Republic|Ellas|Balkan country|Balkan nation|Balkan state +ellen price wood|1 +(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer|author +elli|1 +(noun)|Elli|Norse deity +ellice islands|1 +(noun)|Tuvalu|Ellice Islands|archipelago +ellington|1 +(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician|jazzman +elliott's goldenrod|1 +(noun)|Elliott's goldenrod|goldenrod +ellipse|1 +(noun)|oval|conic section|conic +ellipsis|1 +(noun)|eclipsis|omission|deletion +ellipsoid|2 +(adj)|ellipsoidal|spheroidal|non-circular|rounded +(noun)|plane figure|two-dimensional figure +ellipsoid of revolution|1 +(noun)|spheroid|round shape +ellipsoidal|1 +(adj)|ellipsoid|spheroidal|non-circular|rounded +elliptic|4 +(adj)|elliptical|omission|deletion +(adj)|simple |unsubdivided|rounded +(adj)|egg-shaped|elliptical|oval|ovate|oviform|ovoid|prolate|rounded +(adj)|elliptical|concise +elliptic geometry|1 +(noun)|Riemannian geometry|non-Euclidean geometry +elliptic leaf|1 +(noun)|simple leaf +elliptical|3 +(adj)|elliptic|omission|deletion +(adj)|egg-shaped|elliptic|oval|ovate|oviform|ovoid|prolate|rounded +(adj)|elliptic|concise +ellipticity|1 +(noun)|oblateness|roundedness|bulginess +ellis island|1 +(noun)|Ellis Island|island +ellison|1 +(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer|author +ellul|1 +(noun)|Elul|Ellul|Jewish calendar month +elm|2 +(noun)|elm tree|tree +(noun)|elmwood|wood +elm family|1 +(noun)|Ulmaceae|family Ulmaceae|dicot family|magnoliopsid family +elm tree|1 +(noun)|elm|tree +elmer ambrose sperry|1 +(noun)|Sperry|Elmer Ambrose Sperry|inventor|discoverer|artificer|engineer|applied scientist|technologist +elmer leopold rice|1 +(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist|playwright +elmer reizenstein|1 +(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist|playwright +elmer rice|1 +(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist|playwright +elmont|1 +(noun)|Elmont|town +elmore john leonard|1 +(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer|author +elmore leonard|1 +(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer|author +elmwood|1 +(noun)|elm|wood +eln|2 +(noun)|National Liberation Army|ELN|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization|terrorist group|foreign terrorist organization|FTO +elocute|1 +(verb)|declaim|recite +elocution|1 +(noun)|manner of speaking|speech|delivery +elocutionary|2 +(adj)|manner of speaking|speech|delivery +(adj)|affected |unnatural +elocutionist|1 +(noun)|orator|speechmaker|rhetorician|public speaker|speechifier +elodea|1 +(noun)|Elodea|genus Elodea|pondweed|ditchmoss|monocot genus|liliopsid genus +elodea canadensis|1 +(noun)|Canadian pondweed|Elodea canadensis|waterweed +elodea densa|1 +(noun)|dense-leaved elodea|Elodea densa|Egeria densa|waterweed +elongate|3 +(adj)|linear|simple |unsubdivided +(adj)|elongated|long +(verb)|stretch|lengthen +elongate leaf|1 +(noun)|linear leaf|simple leaf +elongated|2 +(adj)|extended|lengthened|prolonged|long +(adj)|elongate|long +elongation|3 +(noun)|longness +(noun)|extension|addition|add-on|improver +(noun)|change of shape +elope|1 +(verb)|run off|flee|fly|take flight +elopement|1 +(noun)|running away +elopidae|1 +(noun)|Elopidae|family Elopidae|fish family +elops|1 +(noun)|Elops|genus Elops|fish genus +elops saurus|1 +(noun)|ladyfish|tenpounder|Elops saurus|tarpon|Tarpon atlanticus +eloquence|1 +(noun)|fluency|expressive style|style +eloquent|1 +(adj)|facile|fluent|silver|silver-tongued|smooth-spoken|articulate +eloquently|2 +(adv)|articulately +(adv)|articulately +elsa schiaparelli|1 +(noun)|Schiaparelli|Elsa Schiaparelli|couturier|fashion designer|clothes designer|designer +elsass|1 +(noun)|Alsace|Alsatia|Elsass|French region +else|2 +(adj)|other +(adj)|additional|added +elsholtzia|1 +(noun)|herb|herbaceous plant +elspar|1 +(noun)|asparaginase|Elspar|antineoplastic|antineoplastic drug|cancer drug +eluate|1 +(noun)|solution +elucidate|2 +(verb)|clarify|clear up|explain|explicate +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|clarify|clear up +elucidation|2 +(noun)|explanation +(noun)|clarification|illumination|interpretation +elucidative|1 +(adj)|clarifying|instructive |informative +elude|3 +(verb)|evade|bilk|escape|get away|break loose +(verb)|escape|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound +(verb)|hedge|fudge|evade|put off|circumvent|parry|skirt|dodge|duck|sidestep|avoid +eluding|1 +(noun)|slip|elusion|evasion +elul|1 +(noun)|Elul|Ellul|Jewish calendar month +elusion|1 +(noun)|slip|eluding|evasion +elusive|3 +(adj)|unidentifiable +(adj)|evasive|artful +(adj)|subtle|impalpable +elusiveness|1 +(noun)|unclearness +elute|1 +(verb)|wash|rinse +elution|1 +(noun)|extraction +elver|2 +(noun)|eel +(noun)|eel +elves|3 +(noun)|atmospheric electricity +(noun)|elf|hob|gremlin|pixie|pixy|brownie|imp|fairy|faery|faerie|sprite +(noun)|extremely low frequency|ELF|radio frequency +elvis|1 +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +elvis aron presley|1 +(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star +elvis presley|1 +(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star +elvish|1 +(adj)|elfin|elfish|playful +elwyn brooks white|1 +(noun)|White|E. B. White|Elwyn Brooks White|writer|author +ely culbertson|1 +(noun)|Culbertson|Ely Culbertson|card player +elymus|1 +(noun)|Elymus|genus Elymus|monocot genus|liliopsid genus +elymus arenarius|1 +(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass +elymus canadensis|1 +(noun)|Canada wild rye|Elymus canadensis|wild rye +elymus caput-medusae|1 +(noun)|medusa's head|Elymus caput-medusae|wild rye +elymus condensatus|1 +(noun)|giant ryegrass|Elymus condensatus|Leymus condensatus|lyme grass +elymus hispidus|1 +(noun)|intermediate wheatgrass|Agropyron intermedium|Elymus hispidus|wheatgrass|wheat-grass +elymus trachycaulos|1 +(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass|wheat-grass +elysian|3 +(adj)|Heaven +(adj)|paradisiacal|paradisiac|paradisaical|paradisaic|paradisal|paradisial|happy +(adj)|divine|inspired|glorious +elysian fields|1 +(noun)|Elysium|Elysian Fields|Heaven +elysium|2 +(noun)|Elysium|imaginary place|mythical place +(noun)|Elysium|Elysian Fields|Heaven +elytron|1 +(noun)|wing case|wing +em|2 +(noun)|mutton|mut|area unit|square measure +(noun)|pica em|pica|linear unit +emaciate|2 +(verb)|waste|macerate|enfeeble|debilitate|drain +(verb)|change state|turn +emaciated|1 +(adj)|bony|cadaverous|gaunt|haggard|pinched|skeletal|wasted|thin |lean +emaciation|1 +(noun)|bonyness|gauntness|maceration|leanness|thinness +email|2 +(noun)|electronic mail|e-mail|electronic communication +(verb)|e-mail|netmail|telecommunicate +emanate|2 +(verb)|come|come up +(verb)|exhale|give forth|emit|breathe|pass off +emanation|3 +(noun)|substance|matter +(noun)|emission|egress|egression|emergence +(noun)|rise|procession|origin|origination|inception +emancipate|2 +(verb)|liberate|change state|turn +(verb)|manumit|liberate|set free +emancipated|2 +(adj)|liberated|free +(adj)|freed|liberated|free +emancipation|1 +(noun)|liberation|release|freeing +emancipationist|1 +(noun)|abolitionist|reformer|reformist|crusader|meliorist +emancipative|1 +(adj)|unrestrictive +emancipator|1 +(noun)|manumitter|liberator +emanuel svedberg|1 +(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian|theologist|theologizer|theologiser +emanuel swedenborg|1 +(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian|theologist|theologizer|theologiser +emarginate|1 +(adj)|rough +emarginate leaf|1 +(noun)|leaf|leafage|foliage +emasculate|3 +(adj)|effeminate|epicene|cissy|sissified|sissyish|sissy|unmanly |unmanful|unmanlike +(verb)|castrate|weaken +(verb)|castrate|demasculinize|demasculinise|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +emasculated|1 +(adj)|cut|gelded|castrated |unsexed +emasculation|2 +(noun)|effeminacy|effeminateness|sissiness|womanishness|unmanliness +(noun)|castration|neutering|fixing|altering +embalm|1 +(verb)|conserve|preserve|maintain|keep up +embalmer|1 +(noun)|mortician|undertaker|funeral undertaker|funeral director +embalmment|1 +(noun)|preservation +embank|1 +(verb)|enclose|hold in|confine +embankment|1 +(noun)|mound|hill +embargo|3 +(noun)|trade embargo|trade stoppage|trade barrier|import barrier +(verb)|ban|censor +(verb)|stop|halt|block|kibosh +embark|3 +(verb)|ship|board|get on +(verb)|enter|get down|begin|get|start out|start|set about|set out|commence +(verb)|venture|go|proceed|move +embark on|1 +(verb)|start|start up|commence|begin|lead off|start|commence +embarkation|1 +(noun)|boarding|embarkment|departure|going|going away|leaving +embarkment|1 +(noun)|boarding|embarkation|departure|going|going away|leaving +embarrass|2 +(verb)|abash|upset|discompose|untune|disconcert|discomfit +(verb)|obstruct|blockade|block|hinder|stymie|stymy|prevent|forestall|foreclose|preclude|forbid +embarrassed|3 +(adj)|abashed|chagrined|discomposed +(adj)|discomfited|uncomfortable +(adj)|humiliated|mortified|ashamed +embarrassing|2 +(adj)|awkward|sticky|unenviable|difficult |hard +(adj)|mortifying|unpleasant +embarrassment|4 +(noun)|shame +(noun)|emotional state|spirit +(noun)|trouble +(noun)|overplus|plethora|superfluity|excess|excessiveness|inordinateness +embassador|1 +(noun)|ambassador|diplomat|diplomatist +embassy|2 +(noun)|diplomatic building +(noun)|deputation|commission|delegation|delegacy|mission +embattled|3 +(adj)|insecure |unsafe +(adj)|prepared +(adj)|crenelated|crenelate|crenellated|crenellate|indented|fancy +embed|1 +(verb)|implant|engraft|imbed|plant|insert|infix|enter|introduce +embedded|2 +(adj)|enclosed +(adj)|integrated +embellish|4 +(verb)|embroider|pad|lard|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|deck|adorn|decorate|grace|beautify|be +(verb)|decorate|adorn|grace|ornament|beautify|change|alter|modify +(verb)|beautify|prettify|better|improve|amend|ameliorate|meliorate +embellished|2 +(adj)|empurpled|over-embellished|purple|rhetorical +(adj)|ornamented|ornate|adorned |decorated +embellishment|3 +(noun)|embroidery|expansion|enlargement|elaboration +(noun)|decoration|ornament|ornamentation +(noun)|ornamentation|decoration +ember|1 +(noun)|coal|fragment +ember day|1 +(noun)|Ember Day|Christian holy day +emberiza|1 +(noun)|Emberiza|genus Emberiza|bird genus +emberiza aureola|1 +(noun)|yellow-breasted bunting|Emberiza aureola|bunting +emberiza citrinella|1 +(noun)|yellowhammer|yellow bunting|Emberiza citrinella|bunting +emberiza hortulana|1 +(noun)|ortolan|ortolan bunting|Emberiza hortulana|bunting +emberiza schoeniclus|1 +(noun)|reed bunting|Emberiza schoeniclus|bunting +emberizidae|1 +(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family +embezzle|1 +(verb)|defalcate|peculate|misappropriate|malversate|steal +embezzled|2 +(adj)|misappropriated|illegal +(adj)|taken +embezzlement|1 +(noun)|peculation|defalcation|misapplication|misappropriation|larceny|theft|thievery|thieving|stealing +embezzler|1 +(noun)|defalcator|peculator|thief|stealer +embiodea|1 +(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order +embioptera|1 +(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order +embiotocidae|1 +(noun)|Embiotocidae|family Embiotocidae|fish family +embitter|1 +(verb)|envenom|acerbate +embitterment|1 +(noun)|unhappiness +emblazon|2 +(verb)|color|colour|decorate|adorn|grace|ornament|embellish|beautify +(verb)|blazon|decorate|adorn|grace|ornament|embellish|beautify +emblem|2 +(noun)|design|pattern|figure +(noun)|allegory|symbol|symbolization|symbolisation|symbolic representation +emblematic|2 +(adj)|emblematical|symbolic|symbolical|representative +(adj)|exemplary|typic|typical +emblematical|1 +(adj)|emblematic|symbolic|symbolical|representative +embodied|2 +(adj)|represent +(adj)|bodied|corporal|corporate|incarnate|corporeal |material +embodiment|3 +(noun)|incarnation|avatar|personification +(noun)|shape|concretism|concrete representation +(noun)|objectification +embody|3 +(verb)|incarnate|body forth|substantiate|be +(verb)|be|personify|typify|symbolize|symbolise|stand for|represent +(verb)|represent +embolden|1 +(verb)|cheer|hearten|recreate|encourage +emboldened|1 +(adj)|bold +embolectomy|1 +(noun)|ablation|extirpation|cutting out|excision +embolic|1 +(adj)|occlusion|clot|coagulum +embolism|2 +(noun)|intercalation|time interval|interval +(noun)|occlusion +embolus|1 +(noun)|clot|coagulum +embonpoint|2 +(adj)|buxom|chubby|plump|zaftig|zoftig|fat +(noun)|plumpness|fleshiness|obesity +emboss|1 +(verb)|boss|stamp|impress|imprint +embossed|1 +(adj)|brocaded|raised|adorned |decorated +embossment|2 +(noun)|imprint|stamp|impression +(noun)|relief|relievo|rilievo|sculptural relief|sculpture +embothrium|1 +(noun)|Embothrium|genus Embothrium|dicot genus|magnoliopsid genus +embothrium coccineum|1 +(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub|bush +embouchure|1 +(noun)|mouthpiece|aperture +embower|1 +(verb)|bower|enclose|inclose|shut in +embowered|1 +(adj)|enclosed +embrace|6 +(noun)|embracing|clasp|clench|clutch|clutches|grasp|grip|hold +(noun)|inclusion +(noun)|bosom|adoption|acceptance|acceptation|espousal +(verb)|encompass|comprehend|cover|include +(verb)|hug|bosom|squeeze|clasp +(verb)|espouse|adopt|sweep up|accept +embracing|1 +(noun)|embrace|clasp|clench|clutch|clutches|grasp|grip|hold +embrangle|1 +(verb)|snarl|snarl up|complicate|perplex +embrasure|1 +(noun)|port|porthole|opening +embrocate|1 +(verb)|anoint|inunct|oil|anele|bless +embrocation|1 +(noun)|liniment|lotion|application +embroider|2 +(verb)|broider|decorate|adorn|grace|ornament|embellish|beautify +(verb)|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +embroidered|1 +(adj)|adorned |decorated +embroiderer|1 +(noun)|needleworker +embroideress|1 +(noun)|embroiderer +embroidery|2 +(noun)|embellishment|expansion|enlargement|elaboration +(noun)|fancywork|needlework|needlecraft +embroidery frame|1 +(noun)|tambour|embroidery hoop|framework|frame|framing +embroidery hoop|1 +(noun)|tambour|embroidery frame|framework|frame|framing +embroidery needle|1 +(noun)|darning needle|sewing needle +embroil|1 +(verb)|tangle|sweep|sweep up|drag|drag in|involve +embroiled|1 +(adj)|entangled|involved +embroilment|1 +(noun)|imbroglio|situation +embrown|2 +(verb)|darken +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +embryo|2 +(noun)|plant|flora|plant life +(noun)|conceptus|fertilized egg|animal|animate being|beast|brute|creature|fauna +embryologic|1 +(adj)|embryonic|embryonal|immature +embryology|1 +(noun)|biology|biological science +embryoma of the kidney|1 +(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|sarcoma +embryonal|2 +(adj)|embryonic|animal|animate being|beast|brute|creature|fauna +(adj)|embryonic|embryologic|immature +embryonal carcinoma|1 +(noun)|carcinoma +embryonal carcinosarcoma|1 +(noun)|blastoma|blastocytoma|tumor|tumour|neoplasm +embryonal rhabdomyosarcoma|1 +(noun)|embryonal rhabdosarcoma|rhabdomyosarcoma|rhabdosarcoma +embryonal rhabdosarcoma|1 +(noun)|embryonal rhabdomyosarcoma|rhabdomyosarcoma|rhabdosarcoma +embryonic|3 +(adj)|embryonal|animal|animate being|beast|brute|creature|fauna +(adj)|embryologic|embryonal|immature +(adj)|embryotic|early +embryonic cell|1 +(noun)|formative cell|cell +embryonic membrane|1 +(noun)|caul|veil|fetal membrane +embryonic stem-cell research|1 +(noun)|stem-cell research +embryonic tissue|1 +(noun)|animal tissue +embryotic|1 +(adj)|embryonic|early +emcee|2 +(noun)|master of ceremonies|host|entertainer +(verb)|compere|host +emda|1 +(noun)|iontophoresis|ionic medication|iontotherapy|electromotive drug administration|EMDA|therapy +emeer|1 +(noun)|emir|amir|ameer|ruler|swayer +emend|1 +(verb)|better|improve|amend|ameliorate|meliorate +emendation|1 +(noun)|correction|rectification +emended|1 +(adj)|edited|altered +emerald|3 +(noun)|transparent gem|beryl +(noun)|jewel|gem|precious stone +(noun)|green|greenness|viridity +emerald creeper|1 +(noun)|jade vine|Strongylodon macrobotrys|liana +emerald isle|1 +(noun)|Ireland|Hibernia|Emerald Isle|island +emerald shiner|1 +(noun)|Notropis atherinoides|shiner +emerge|5 +(verb)|appear +(verb)|issue|come out|come forth|go forth|egress +(verb)|appear +(verb)|surface|come up|rise up|rise +(verb)|come forth|originate|arise|rise|develop|uprise|spring up|grow +emergence|4 +(noun)|outgrowth|growth|beginning +(noun)|egress|issue|beginning +(noun)|emersion|appearance +(noun)|egress|egression|deed|feat|effort|exploit +emergency|3 +(noun)|exigency|pinch|crisis +(noun)|temporary state +(noun)|hand brake|emergency brake|parking brake|brake +emergency alert system|1 +(noun)|Emergency Alert System|EAS|alert|alerting +emergency brake|1 +(noun)|hand brake|emergency|parking brake|brake +emergency exit|1 +(noun)|fire escape|stairway|staircase|stairs|steps +emergency landing|1 +(noun)|forced landing|aircraft landing|airplane landing +emergency medicine|1 +(noun)|medicine|medical specialty +emergency procedure|1 +(noun)|procedure|process +emergency room|1 +(noun)|ER|hospital room +emergent|1 +(adj)|emerging|nascent|aborning +emergent evolution|1 +(noun)|evolution|phylogeny|phylogenesis +emerging|3 +(adj)|appear +(adj)|emergent|nascent|aborning +(adj)|rising|future +emeritus|1 +(adj)|retired|old +emersion|2 +(noun)|egress|reappearance +(noun)|emergence|appearance +emerson|1 +(noun)|Emerson|Ralph Waldo Emerson|writer|author +emery|1 +(noun)|mineral +emery cloth|1 +(noun)|abrasive|abradant|abrasive material +emery paper|1 +(noun)|sandpaper|abrasive|abradant|abrasive material +emery rock|1 +(noun)|emery stone|rock|stone +emery stone|1 +(noun)|emery rock|rock|stone +emery wheel|1 +(noun)|grinding wheel|wheel +emeside|1 +(noun)|ethosuximide|Emeside|Zarontin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +emesis|1 +(noun)|vomit|vomiting|regurgitation|disgorgement|puking|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +emesis basin|1 +(noun)|basin +emetic|1 +(noun)|vomit|vomitive|nauseant|remedy|curative|cure +emetrol|1 +(noun)|Emetrol|antiemetic|antiemetic drug +emf|1 +(noun)|voltage|electromotive force|electrical phenomenon +emg|1 +(noun)|electromyogram|EMG|myogram +emigrant|1 +(noun)|emigre|emigree|outgoer|migrant|migrator +emigrate|1 +(verb)|migrate|transmigrate +emigration|1 +(noun)|out-migration|expatriation|migration +emigre|1 +(noun)|emigrant|emigree|outgoer|migrant|migrator +emigree|1 +(noun)|emigrant|emigre|outgoer|migrant|migrator +emil hermann fischer|1 +(noun)|Fischer|Emil Hermann Fischer|chemist +emil klaus julius fuchs|1 +(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist +emile|1 +(noun)|Emile|fictional character|fictitious character|character +emile durkheim|1 +(noun)|Durkheim|Emile Durkheim|sociologist +emile gaboriau|1 +(noun)|Gaboriau|Emile Gaboriau|writer|author +emile herzog|1 +(noun)|Maurois|Andre Maurois|Emile Herzog|writer|author +emile zola|1 +(noun)|Zola|Emile Zola|novelist +emilia|1 +(noun)|Emilia|genus Emilia|asterid dicot genus +emilia-romagna|1 +(noun)|Emilia-Romagna|Italian region +emilia coccinea|1 +(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +emilia flammea|1 +(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +emilia javanica|1 +(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +emilia sagitta|1 +(noun)|tassel flower|Emilia sagitta|herb|herbaceous plant +emiliano zapata|1 +(noun)|Zapata|Emiliano Zapata|revolutionist|revolutionary|subversive|subverter +emilie charlotte le breton|1 +(noun)|Langtry|Lillie Langtry|the Jersey Lillie|Emilie Charlotte le Breton|actress +emily bronte|1 +(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer|author +emily dickinson|1 +(noun)|Dickinson|Emily Dickinson|poet +emily jane bronte|1 +(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer|author +emily post|1 +(noun)|Post|Emily Post|Emily Price Post|writer|author +emily price post|1 +(noun)|Post|Emily Post|Emily Price Post|writer|author +eminence|2 +(noun)|distinction|preeminence|note|high status +(noun)|tuberosity|tubercle|process|outgrowth|appendage +eminence grise|1 +(noun)|important person|influential person|personage +eminent|4 +(adj)|distinguished|great|important |of import +(adj)|high|superior +(adj)|successful +(adj)|lofty|soaring|towering|high +eminent domain|1 +(noun)|legal right +emir|1 +(noun)|amir|emeer|ameer|ruler|swayer +emirate|2 +(noun)|domain|demesne|land +(noun)|position|post|berth|office|spot|billet|place|situation +emissary|1 +(noun)|envoy|representative +emissary vein|1 +(noun)|vena emissaria|vein|vena|venous blood vessel +emission|5 +(noun)|emanation|egress|egression|emergence +(noun)|discharge|material|stuff +(noun)|release +(noun)|discharge|expelling|bodily process|body process|bodily function|activity +(noun)|flow|flowing +emission spectrum|1 +(noun)|spectrum +emit|3 +(verb)|breathe|pass off|discharge|expel|eject|release +(verb)|give out|give off +(verb)|utter|let out|let loose +emitter|1 +(noun)|electrode +emma goldman|1 +(noun)|Goldman|Emma Goldman|anarchist|nihilist|syndicalist +emma hart willard|1 +(noun)|Willard|Emma Hart Willard|educator|pedagogue +emmanthe|1 +(noun)|Emmanthe|genus Emmanthe|asterid dicot genus +emmanthe penduliflora|1 +(noun)|yellow bells|California yellow bells|whispering bells|Emmanthe penduliflora|herb|herbaceous plant +emmenagogue|1 +(noun)|agent +emmental|1 +(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese +emmentaler|1 +(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese +emmenthal|1 +(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese +emmenthaler|1 +(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese +emmer|1 +(noun)|starch wheat|two-grain spelt|Triticum dicoccum|wheat|corn +emmet|1 +(noun)|ant|pismire|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +emmetropia|1 +(noun)|physiological state|physiological condition +emmetropic|1 +(adj)|emmetropic +emmett kelly|1 +(noun)|Kelly|Emmett Kelly|Weary Willie|clown|buffoon|merry andrew +emmy|1 +(noun)|Emmy|award|accolade|honor|honour|laurels +emmy noether|1 +(noun)|Noether|Emmy Noether|mathematician +emollient|2 +(adj)|demulcent|salving|softening|soft +(noun)|cream|ointment|toiletry|toilet article|toiletries +emolument|1 +(noun)|compensation +emote|1 +(verb)|act|play|represent +emoticon|1 +(noun)|facial expression|facial gesture +emotion|1 +(noun)|feeling +emotional|5 +(adj)|emotional +(adj)|emotional |affectional|affective|emotive|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|slushy|cathartic|releasing|charged|supercharged|funky|low-down|het up|hot-blooded|little|lyric|lyrical|mind-blowing|moody|temperamental|overemotional|soulful|warm-toned|Latin|moved|moving|passionate|warm +(adj)|feeling +(adj)|effusive|gushing|gushy|demonstrative +(adj)|aroused|excited|worked up|agitated +emotional arousal|1 +(noun)|arousal +emotional disorder|1 +(noun)|affective disorder|major affective disorder|emotional disturbance|mental disorder|mental disturbance|disturbance|psychological disorder|folie +emotional disturbance|1 +(noun)|affective disorder|major affective disorder|emotional disorder|mental disorder|mental disturbance|disturbance|psychological disorder|folie +emotional person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +emotional state|1 +(noun)|spirit|emotion +emotionalism|1 +(noun)|emotionality|trait +emotionality|1 +(noun)|emotionalism|trait +emotionally|1 +(adv)|showing emotion +emotionless|1 +(adj)|passionless|cold +emotionlessness|2 +(noun)|impassivity|impassiveness|phlegm|indifference|stolidity|unemotionality|apathy +(noun)|unemotionality|trait +emotive|1 +(adj)|affectional|affective|emotional +empale|1 +(verb)|transfix|impale|spike|pierce|thrust +empanel|2 +(verb)|impanel|list +(verb)|impanel|panel|choose|take|select|pick out +empathetic|1 +(adj)|empathic|sympathetic +empathetically|1 +(adv)|sympathetically|with sympathy|with empathy +empathic|1 +(adj)|empathetic|sympathetic +empathise|1 +(verb)|sympathize|sympathise|empathize|understand +empathize|1 +(verb)|sympathize|sympathise|empathise|understand +empathy|1 +(noun)|sympathy|fellow feeling +empedocles|1 +(noun)|Empedocles|philosopher +empennage|1 +(noun)|tail|tail assembly|rear|back +emperor|4 +(noun)|Emperor|sovereign|crowned head|monarch +(noun)|vinifera grape +(noun)|emperor moth|Saturnia pavonia|saturniid|saturniid moth +(noun)|emperor butterfly|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +emperor butterfly|1 +(noun)|emperor|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +emperor francis ii|1 +(noun)|Francis II|Emperor Francis II|Holy Roman Emperor +emperor moth|1 +(noun)|emperor|Saturnia pavonia|saturniid|saturniid moth +emperor napoleon iii|1 +(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|Emperor +emperor of rome|1 +(noun)|Roman Emperor|Emperor of Rome|Emperor +emperor penguin|1 +(noun)|Aptenodytes forsteri|penguin +empetraceae|1 +(noun)|Empetraceae|family Empetraceae|crowberry family|dicot family|magnoliopsid family +empetrum|1 +(noun)|Empetrum|genus Empetrum|dicot genus|magnoliopsid genus +emphasis|4 +(noun)|accent|importance|grandness +(noun)|vehemence|intensity|intensiveness +(noun)|rhetorical device +(noun)|stress|accent|prosody|inflection +emphasise|2 +(verb)|underscore|underline|emphasize|stress|emphasize|punctuate|accent|accentuate +(verb)|stress|emphasize|punctuate|accent|accentuate|express|show|evince +emphasised|1 +(adj)|emphatic|emphasized|stressed +emphasize|2 +(verb)|stress|emphasise|punctuate|accent|accentuate|express|show|evince +(verb)|underscore|underline|emphasise|stress|emphasise|punctuate|accent|accentuate +emphasized|1 +(adj)|emphatic|emphasised|stressed +emphasizing|1 +(noun)|accenting|accentuation|action +emphatic|3 +(adj)|emphasized|emphasised|stressed +(adj)|exclamatory|forceful +(adj)|forceful|assertive +emphatically|1 +(adv)|decidedly|unquestionably|definitely|in spades|by all odds +emphysema|1 +(noun)|pulmonary emphysema|respiratory disease|respiratory illness|respiratory disorder +emphysematous|1 +(adj)|respiratory disease|respiratory illness|respiratory disorder +emphysematous gangrene|1 +(noun)|gas gangrene|clostridial myonecrosis|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene|sphacelus|slough +emphysematous phlegmon|1 +(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene|sphacelus|slough +empire|5 +(noun)|domain|demesne|land +(noun)|government|authorities|regime +(noun)|monarchy +(noun)|conglomerate|corporation|corp +(noun)|Empire|eating apple|dessert apple +empire day|1 +(noun)|Commonwealth Day|Empire day|May 24|legal holiday|national holiday +empire state|1 +(noun)|New York|New York State|Empire State|NY|American state +empire state of the south|1 +(noun)|Georgia|Empire State of the South|Peach State|GA|American state +empiric|2 +(adj)|empirical|medical practice +(adj)|empirical |a posteriori|confirmable|verifiable|falsifiable|experiential|existential|experimental|data-based|observational|experimental|semiempirical|trial-and-error +empirical|2 +(adj)|empirical |empiric|a posteriori|confirmable|verifiable|falsifiable|experiential|existential|experimental|data-based|observational|experimental|semiempirical|trial-and-error +(adj)|empiric|medical practice +empirical formula|1 +(noun)|formula|chemical formula +empirical research|1 +(noun)|inquiry|enquiry|research +empirically|1 +(adv)|through empirical observation|by trial and error +empiricism|3 +(noun)|empiricist philosophy|sensationalism|philosophical doctrine|philosophical theory +(noun)|investigation|investigating +(noun)|quackery|medical practice +empiricist|1 +(noun)|philosopher +empiricist philosophy|1 +(noun)|empiricism|sensationalism|philosophical doctrine|philosophical theory +empirin|1 +(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin|salicylate|analgesic|anodyne|painkiller|pain pill +emplace|2 +(verb)|put|set|place|pose|position|lay +(verb)|put|set|place|pose|position|lay +emplacement|2 +(noun)|military installation +(noun)|placement|location|locating|position|positioning|activity +emplane|1 +(verb)|enplane|embark|ship +employ|3 +(noun)|employment|state +(verb)|use|utilize|utilise|apply +(verb)|hire|engage +employable|1 +(adj)|employable +employed|2 +(adj)|employed |hired|working|on the job|engaged|busy +(adj)|made use of|exploited +employee|1 +(noun)|worker +employee-owned business|1 +(noun)|employee-owned enterprise|commercial enterprise|business enterprise|business +employee-owned enterprise|1 +(noun)|employee-owned business|commercial enterprise|business enterprise|business +employee ownership|1 +(noun)|ownership +employee savings plan|1 +(noun)|plan|program|programme +employee stock ownership plan|1 +(noun)|ESOP|stock purchase plan +employee turnover|1 +(noun)|turnover rate|turnover|ratio +employer|1 +(noun)|leader +employment|4 +(noun)|employ|state +(noun)|work|occupation|business|job|line of work|line +(noun)|engagement|action +(noun)|use|usage|utilization|utilisation|exercise|activity +employment agency|1 +(noun)|employment office|agency +employment agent|1 +(noun)|agent +employment agreement|1 +(noun)|employment contract|contract +employment contract|1 +(noun)|employment agreement|contract +employment interview|1 +(noun)|job interview|interview +employment office|1 +(noun)|employment agency|agency +emporium|1 +(noun)|department store|mercantile establishment|retail store|sales outlet|outlet +empower|2 +(verb)|authorise|authorize|appoint|charge +(verb)|endow|indue|gift|invest|endue|enable +empowered|1 +(adj)|sceptered|sceptred|authorized |authorised +empowerment|1 +(noun)|authorization|authorisation|management|direction +empress|1 +(noun)|Empress|Emperor +emptied|1 +(adj)|empty +emptiness|4 +(noun)|condition|status +(noun)|hunger|hungriness +(noun)|void|vacancy|vacuum|space +(noun)|vanity|worthlessness +emptor|1 +(noun)|buyer|purchaser|vendee|customer|client +empty|11 +(adj)|empty |bare|stripped|barren of|destitute of|devoid of|empty of|innocent of|void of|bereft of|deprived of|blank|clean|white|empty-handed|glassy|glazed|looted|pillaged|plundered|ransacked|open|unfilled|vacant|vacant|void|emptied|lifeless +(adj)|hollow|vacuous|meaningless |nonmeaningful +(adj)|hollow +(adj)|empty-bellied|hungry +(adj)|drained +(noun)|container +(verb)|change|alter|modify +(verb)|discharge|change state|turn +(verb)|vacate|abandon|leave|go forth|go away +(verb)|remove|take|take away|withdraw +(verb)|evacuate|void|excrete|egest|eliminate|pass +empty-bellied|1 +(adj)|empty|hungry +empty-handed|2 +(adj)|unrewarded|unsuccessful +(adj)|empty +empty-headed|1 +(adj)|airheaded|dizzy|featherbrained|giddy|light-headed|lightheaded|silly|frivolous +empty nester|1 +(noun)|parent +empty of|1 +(adj)|barren of|destitute of|devoid of|innocent of|void of|empty +empty talk|1 +(noun)|palaver|hot air|empty words|rhetoric|nonsense|bunk|nonsensicality|meaninglessness|hokum +empty words|1 +(noun)|palaver|hot air|empty talk|rhetoric|nonsense|bunk|nonsensicality|meaninglessness|hokum +emptying|1 +(noun)|voidance|evacuation|removal|remotion +empurple|1 +(verb)|purple|purpurate|color|colorize|colorise|colourise|colourize|colour|color in|colour in +empurpled|2 +(adj)|embellished|over-embellished|purple|rhetorical +(noun)|purple|purpleness|chromatic color|chromatic colour|spectral color|spectral colour +empyema|1 +(noun)|inflammatory disease +empyreal|2 +(adj)|empyrean|surface +(adj)|empyrean|sublime|glorious +empyrean|3 +(adj)|empyreal|surface +(adj)|empyreal|sublime|glorious +(noun)|celestial sphere|sphere|firmament|heavens|vault of heaven|welkin|surface +emu|2 +(noun)|electromagnetic unit|unit of measurement|unit +(noun)|Dromaius novaehollandiae|Emu novaehollandiae|ratite|ratite bird|flightless bird +emu novaehollandiae|1 +(noun)|emu|Dromaius novaehollandiae|Emu novaehollandiae|ratite|ratite bird|flightless bird +emulate|3 +(verb)|imitate|copy|simulate +(verb)|imitate +(verb)|compete|vie|contend +emulation|3 +(noun)|ambition|aspiration|dream +(noun)|technique +(noun)|imitation +emulator|1 +(noun)|copycat|imitator|ape|aper|person|individual|someone|somebody|mortal|human|soul +emulous|2 +(adj)|imitation +(adj)|rivalrous|competitive |competitory +emulsified|1 +(adj)|blended +emulsifier|1 +(noun)|wetting agent|wetter|surfactant|surface-active agent +emulsify|2 +(verb)|change|alter|modify +(verb)|change state|turn +emulsion|2 +(noun)|colloid +(noun)|photographic emulsion|coating|coat +emydidae|1 +(noun)|Emydidae|family Emydidae|reptile family +en|1 +(noun)|nut|linear unit +en-lil|2 +(noun)|Enlil|En-lil|Semitic deity +(noun)| +en bloc|1 +(adv)|en masse|as a group +en deshabille|1 +(adj)|in dishabille|unclothed +en famille|1 +(adv)|informally +en garde|1 +(adj)|defensive +en masse|1 +(adv)|en bloc|as a group +en passant|1 +(adv)|in passing +en route|1 +(adv)|on the way +enable|1 +(verb)|change|alter|modify +enabling|1 +(adj)|enabling |facultative|sanctionative|sanctioning +enabling act|1 +(noun)|enabling clause|legislative act|statute +enabling clause|1 +(noun)|enabling act|legislative act|statute +enabling legislation|1 +(noun)|legislation|statute law +enact|2 +(verb)|ordain|decree +(verb)|reenact|act out|act|play|represent +enactment|3 +(noun)|passage|legislation|legislating|lawmaking +(noun)|act|legal document|legal instrument|official document|instrument +(noun)|portrayal|characterization|personation|acting|playing|playacting|performing +enalapril|1 +(noun)|Vasotec|ACE inhibitor|angiotensin converting enzyme inhibitor +enallage|1 +(noun)|rhetorical device +enamel|5 +(noun)|tooth enamel|solid body substance +(noun)|compound|chemical compound +(noun)|paint +(noun)|coating|coat +(verb)|decorate|adorn|grace|ornament|embellish|beautify +enameled|1 +(adj)|adorned |decorated +enamelware|1 +(noun)|cooking utensil|cookware +enamine|1 +(noun)|amine|aminoalkane +enamor|1 +(verb)|capture|enamour|trance|catch|becharm|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +enamored|1 +(adj)|crazy|dotty|gaga|infatuated|in love|smitten|soft on|taken with|loving +enamoredness|1 +(noun)|amorousness|love +enamour|1 +(verb)|capture|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +enanthem|1 +(noun)|enanthema|eruption +enanthema|1 +(noun)|enanthem|eruption +enantiomer|1 +(noun)|enantiomorph|compound|chemical compound +enantiomorph|1 +(noun)|enantiomer|compound|chemical compound +enantiomorphism|1 +(noun)|mirror-image relation|opposition +enarthrodial joint|1 +(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrosis|articulatio spheroidea|synovial joint|articulatio synovialis|diarthrosis +enarthrosis|1 +(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|articulatio spheroidea|synovial joint|articulatio synovialis|diarthrosis +enate|2 +(adj)|enatic|maternal|related +(noun)|matrikin|matrilineal kin|matrisib|matrilineal sib|relative|relation +enatic|1 +(adj)|enate|maternal|related +enation|2 +(noun)|matrilineage|cognation|unilateral descent +(noun)|plant process|process|outgrowth|appendage +enbrel|1 +(noun)|etanercept|Enbrel|anti-TNF compound +encainide|1 +(noun)|Enkaid|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +encamp|1 +(verb)|camp|camp out|bivouac|tent|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +encampment|3 +(noun)|campsite|campground|camping site|camping ground|bivouac|camping area|site|land site +(noun)|camp|cantonment|bivouac|military quarters +(noun)|camping|bivouacking|tenting|inhabitancy|inhabitation|habitation +encapsulate|2 +(verb)|enclose|inclose|shut in +(verb)|capsule|capsulize|capsulise|digest|condense|concentrate +encapsulation|2 +(noun)|condition|status +(noun)|process +encase|1 +(verb)|incase|case|enclose|inclose|shut in +encased|1 +(adj)|cased|incased|sheathed +encasement|1 +(noun)|incasement|enclosure|enclosing|envelopment|inclosure +encaustic|1 +(noun)|paint +enceinte|1 +(adj)|big|expectant|gravid|great|large|heavy|with child|pregnant +encelia|1 +(noun)|Encelia|genus Encelia|asterid dicot genus +encelia farinosa|1 +(noun)|brittlebush|brittle bush|incienso|Encelia farinosa|wildflower|wild flower +enceliopsis|1 +(noun)|Enceliopsis|genus Enceliopsis|asterid dicot genus +enceliopsis nudicaulis|1 +(noun)|sunray|Enceliopsis nudicaulis|wildflower|wild flower +encephalartos|1 +(noun)|cycad +encephalartos caffer|1 +(noun)|kaffir bread|Encephalartos caffer|cycad +encephalitis|1 +(noun)|cephalitis|phrenitis|inflammation|redness|rubor +encephalitis lethargica|1 +(noun)|sleeping sickness|sleepy sickness|epidemic encephalitis|lethargic encephalitis|encephalitis|cephalitis|phrenitis +encephalocele|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +encephalogram|2 +(noun)|electroencephalogram|EEG|graph|graphical record +(noun)|pneumoencephalogram|roentgenogram|X ray|X-ray picture|X-ray photograph +encephalography|1 +(noun)|roentgenography|X-ray photography +encephalomeningitis|1 +(noun)|meningoencephalitis|cerebromeningitis|meningitis|encephalitis|cephalitis|phrenitis +encephalomyelitis|1 +(noun)|inflammation|redness|rubor +encephalon|1 +(noun)|brain|neural structure +encephalopathy|1 +(noun)|brain disorder|brain disease|nervous disorder|neurological disorder|neurological disease +enchain|1 +(verb)|restrain|confine|hold +enchained|1 +(adj)|chained|in chains|bound +enchant|3 +(verb)|enrapture|transport|enthrall|ravish|enthral|delight|please|delight +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|attract|appeal +(verb)|hex|bewitch|glamour|witch|jinx|charm|becharm +enchanted|1 +(adj)|enchanted |beguiled|captivated|charmed|delighted|enthralled|entranced|bewitched|ensorcelled|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|transfixed +enchanter|1 +(noun)|sorcerer|magician|wizard|necromancer +enchanter's nightshade|1 +(noun)|evening primrose +enchanting|1 +(adj)|bewitching|captivating|enthralling|entrancing|fascinating|attractive +enchantingly|1 +(adv)|bewitchingly|captivatingly|enthrallingly +enchantment|3 +(noun)|captivation|enthrallment|fascination|liking +(noun)|spell|trance|psychological state|mental state +(noun)|bewitchment|sorcery|black magic|black art|necromancy +enchantress|2 +(noun)|temptress|siren|Delilah|femme fatale|woman|adult female +(noun)|witch|occultist +enchilada|1 +(noun)|dish +enchiridion|1 +(noun)|handbook|vade mecum|reference book|reference|reference work|book of facts +enchondroma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +encipher|1 +(verb)|encode|code|cipher|cypher|encrypt|inscribe|write in code|write +encircle|3 +(verb)|surround|environ|circle|round|ring|hold|bear|carry|contain +(verb)|circle|shape|form +(verb)|gird|bind +encircled|3 +(adj)|surrounded|enclosed +(adj)|enclosed +(adj)|ringed|wreathed|adorned |decorated +encirclement|1 +(noun)|blockade|military action|action +encircling|1 +(adj)|skirting|peripheral +enclave|1 +(noun)|district|territory|territorial dominion|dominion +enclose|4 +(verb)|envelop|enfold|enwrap|wrap|cover +(verb)|hold in|confine|hold|bear|carry|contain +(verb)|inclose|shut in|surround|skirt|border +(verb)|insert|inclose|stick in|put in|introduce|put|set|place|pose|position|lay +enclosed|1 +(adj)|enclosed |basined|boxed|boxed-in|boxed in|capsulate|capsulated|clathrate|closed|closed in|coarctate|confined|fenced in|penned|embedded|embowered|encircled|engulfed|enveloped|swallowed|fenced|fencelike|fogbound|self-enclosed|surrounded|encircled|besieged|enwrapped|included|involved +enclosed space|1 +(noun)|cavity|space +enclosing|1 +(noun)|enclosure|envelopment|inclosure|insertion|introduction|intromission +enclosure|4 +(noun)|artifact|artefact +(noun)|enclosing|envelopment|inclosure|insertion|introduction|intromission +(noun)|natural enclosure|entity +(noun)|inclosure|document|written document|papers +enclothe|1 +(verb)|dress|clothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state|turn +encode|1 +(verb)|code|encipher|cipher|cypher|encrypt|inscribe|write in code|write +encoding|1 +(noun)|encryption|cryptography|coding|secret writing +encolure|1 +(noun)|mane +encomiastic|1 +(adj)|eulogistic|panegyric|panegyrical|complimentary +encomium|1 +(noun)|eulogy|panegyric|paean|pean|praise|congratulations|kudos +encompass|1 +(verb)|embrace|comprehend|cover|include +encompassing|2 +(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|panoptic|wide|comprehensive +(adj)|surrounding|close +encompassment|1 +(noun)|inclusion +encopresis|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +encore|2 +(noun)|performance +(verb)|request|bespeak|call for|quest +encounter|9 +(noun)|brush|clash|skirmish|fight|fighting|combat|scrap +(noun)|meeting|convergence +(noun)|coming upon|joining|connection|connexion +(noun)|confrontation|showdown|face-off|disagreement +(verb)|meet|ran into|run across|come across|see +(verb)|find|happen|chance|bump +(verb)|run into|be +(verb)|meet|receive|have|experience +(verb)|meet|play|take on +encounter group|1 +(noun)|psychotherapy group +encourage|3 +(verb)|promote|advance|boost|further|support|back up +(verb)|inspire|animate|invigorate|enliven|exalt +(verb)|induce|stimulate|cause|have|get|make +encouraged|1 +(adj)|bucked up|pleased +encouragement|3 +(noun)|approval|commendation +(noun)|boost|aid|assist|assistance|help +(noun)|hope +encouraging|3 +(adj)|encouraging |exhortative|exhortatory|hortative|hortatory|heartening|inspiriting|promotive|rallying|helpful|hopeful|reassuring +(adj)|supporting|supportive +(adj)|auspicious|favorable|favourable|lucky|prosperous|propitious +encrimson|1 +(verb)|redden +encroach|2 +(verb)|infringe|impinge|advance|progress|pass on|move on|march on|go on +(verb)|impinge|entrench|trench|trespass|take advantage +encroach upon|1 +(verb)|intrude on|invade|obtrude upon|enter|come in|get into|get in|go into|go in|move into +encroacher|1 +(noun)|invader|intruder|interloper|trespasser +encroaching|1 +(adj)|invasive|trespassing|intrusive +encroachment|3 +(noun)|invasion|intrusion|entrance|entering +(noun)|trespass|violation|intrusion|usurpation|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|impingement|impact|influence +encrust|3 +(verb)|incrust|coat|surface +(verb)|incrust|beset|decorate|adorn|grace|ornament|embellish|beautify +(verb)|incrust|harden|indurate +encrustation|3 +(noun)|incrustation|formation +(noun)|crust|incrustation|covering|natural covering|cover +(noun)|incrustation|decoration|ornament|ornamentation +encrusted|1 +(adj)|crusted|crusty|crustlike|covered +encrypt|1 +(verb)|encode|code|encipher|cipher|cypher|inscribe|write in code|write +encryption|1 +(noun)|encoding|cryptography|coding|secret writing +enculturation|1 +(noun)|socialization|socialisation|acculturation|social control +encumber|1 +(verb)|restrain|cumber|constrain|restrict|restrain|trammel|limit|bound|confine|throttle +encumbered|1 +(adj)|encumbered |burdened|heavy-laden|loaded down|clogged|mortgaged|involved|mired +encumbrance|3 +(noun)|burden|load|incumbrance|onus|concern|worry|headache|vexation +(noun)|incumbrance|charge +(noun)|hindrance|hitch|preventive|preventative|incumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +encyclia|1 +(noun)|Encyclia|genus Encyclia|monocot genus|liliopsid genus +encyclia citrina|1 +(noun)|tulip orchid|Encyclia citrina|Cattleya citrina|orchid|orchidaceous plant +encyclia tampensis|1 +(noun)|butterfly orchid|Encyclia tampensis|Epidendrum tampense|orchid|orchidaceous plant +encyclia venosa|1 +(noun)|butterfly orchid|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid|orchidaceous plant +encyclical|2 +(adj)|distributed +(noun)|encyclical letter|letter|missive +encyclical letter|1 +(noun)|encyclical|letter|missive +encyclopaedia|1 +(noun)|encyclopedia|cyclopedia|cyclopaedia|reference book|reference|reference work|book of facts +encyclopaedic|1 +(adj)|encyclopedic|comprehensive +encyclopaedism|1 +(noun)|eruditeness|erudition|learnedness|learning|scholarship|encyclopedism|education +encyclopaedist|1 +(noun)|encyclopedist|compiler|writer|author +encyclopedia|1 +(noun)|cyclopedia|encyclopaedia|cyclopaedia|reference book|reference|reference work|book of facts +encyclopedic|1 +(adj)|encyclopaedic|comprehensive +encyclopedism|1 +(noun)|eruditeness|erudition|learnedness|learning|scholarship|encyclopaedism|education +encyclopedist|1 +(noun)|encyclopaedist|compiler|writer|author +encysted|1 +(adj)|pathology +end|18 +(noun)|extremity +(noun)|ending|point|point in time +(noun)|last|final stage|ending|conclusion|finish +(noun)|goal|content|cognitive content|mental object +(noun)|part|section|division +(noun)|destruction|death|state +(noun)|surface +(noun)|lineman +(noun)|topographic point|place|spot +(noun)|boundary|bound|bounds +(noun)|contribution|part|share +(noun)|conclusion|close|closing|ending|section|subdivision +(noun)|remainder|remnant|oddment|piece of cloth|piece of material +(noun)|lineman +(verb)|stop|finish|terminate|cease +(verb)|terminate|change|alter|modify +(verb)|terminate|be +(verb)|destroy|destruct +end-all|1 +(noun)|goal|end +end-plate|2 +(noun)|endplate|motor end plate|end organ +(noun)| +end-rhymed|1 +(adj)|rhymed |rhyming|riming +end-stopped|1 +(adj)|end-stopped +end-to-end|2 +(adj)|lengthwise |lengthways +(adv)|throughout +end game|3 +(noun)|endgame|end|last|final stage +(noun)|endgame|end|last|final stage +(noun)| +end man|2 +(noun)|corner man|minstrel +(noun)|acquaintance|friend +end matter|1 +(noun)|back matter|matter +end of the world|2 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|day +(noun)|doom|doomsday|day of reckoning|destiny|fate +end on|1 +(adv)|endways|endwise +end organ|1 +(noun)|organ +end point|3 +(noun)|endpoint|termination|terminus|end +(noun)|resultant|degree|level|stage|point +(noun)| +end product|1 +(noun)|output|product|production +end run|1 +(noun)|sweep|run|running|running play|running game +end up|1 +(verb)|finish up|land up|fetch up|wind up|finish|act|move +end user|1 +(noun)|user +endaemonism|1 +(noun)|eudemonism|ethics|moral philosophy +endameba|1 +(noun)|ameba|amoeba +endamoeba|1 +(noun)|Endamoeba|genus Endamoeba|protoctist genus +endamoeba histolytica|1 +(noun)|Endamoeba histolytica|endameba +endamoebidae|1 +(noun)|Endamoebidae|family Endamoebidae|family +endanger|2 +(verb)|jeopardize|jeopardise|menace|threaten|imperil|peril|exist|be +(verb)|queer|expose|scupper|peril|affect|impact|bear upon|bear on|touch on|touch +endangered|1 +(adj)|vulnerable +endangered species|1 +(noun)|species +endarterectomy|1 +(noun)|ablation|extirpation|cutting out|excision +endarteritis|1 +(noun)|inflammation|redness|rubor +endear|1 +(verb)|please|delight +endearing|1 +(adj)|adorable|lovely|lovable |loveable +endearingly|1 +(adv)|adorably +endearment|1 +(noun)|kindness|benignity +endeavor|3 +(noun)|enterprise|endeavour|undertaking|project|task|labor +(noun)|attempt|effort|endeavour|try|activity +(verb)|endeavour|strive|try|seek|attempt|essay|assay +endeavour|3 +(noun)|enterprise|endeavor|undertaking|project|task|labor +(noun)|attempt|effort|endeavor|try|activity +(verb)|endeavor|strive|try|seek|attempt|essay|assay +endecott|1 +(noun)|Endecott|Endicott|John Endecott|John Endicott|settler|colonist +ended|1 +(adj)|complete|concluded|over|all over|terminated|finished +endemic|5 +(adj)|endemic |endemical|enzootic +(adj)|endemic +(adj)|autochthonal|autochthonic|autochthonous|indigenous|native +(noun)|endemic disease|disease +(noun)|plant|flora|plant life +endemic disease|1 +(noun)|endemic|disease +endemic typhus|1 +(noun)|murine typhus|rat typhus|urban typhus|typhus|typhus fever +endemical|1 +(adj)|endemic |enzootic +endemism|1 +(noun)|indigenousness|autochthony|nativeness +enderby land|1 +(noun)|Enderby Land|geographical area|geographic area|geographical region|geographic region +endermatic|1 +(adj)|endermic|connective tissue|body covering +endermic|1 +(adj)|endermatic|connective tissue|body covering +endgame|2 +(noun)|end game|end|last|final stage +(noun)|end game|end|last|final stage +endicott|1 +(noun)|Endecott|Endicott|John Endecott|John Endicott|settler|colonist +ending|5 +(noun)|termination|morpheme +(noun)|termination|conclusion|change of state +(noun)|end|point|point in time +(noun)|conclusion|finish|happening|occurrence|natural event +(noun)|conclusion|end|close|closing|section|subdivision +endive|2 +(noun)|witloof|Cichorium endivia|herb|herbaceous plant +(noun)|chicory escarole|escarole|salad green|salad greens +endless|5 +(adj)|eternal|interminable|long +(adj)|infinite +(adj)|dateless|sempiternal|infinite +(adj)|continuous |uninterrupted +(adj)|incessant|perpetual|continual +endlessly|4 +(adv)|infinitely +(adv)|ceaselessly|incessantly|unceasingly|unendingly|continuously +(adv)|without end +(adv)|interminably +endlessness|1 +(noun)|duration|length +endmost|1 +(adj)|terminal|last +endoblast|1 +(noun)|endoderm|entoderm|entoblast|hypoblast|germ layer +endocarditis|1 +(noun)|carditis +endocardium|1 +(noun)|serous membrane|serosa +endocarp|1 +(noun)|stone|pit|pericarp|seed vessel +endocentric|1 +(adj)|endocentric +endocervicitis|1 +(noun)|inflammation|redness|rubor +endocranium|1 +(noun)|membrane|tissue layer +endocrinal|1 +(adj)|endocrine |gland|secretory organ|secretor|secreter +endocrine|3 +(adj)|endocrine |endocrinal|gland|secretory organ|secretor|secreter +(noun)|hormone|internal secretion|secretion +(noun)|endocrine gland|ductless gland|gland|secretory organ|secretor|secreter +endocrine gland|1 +(noun)|endocrine|ductless gland|gland|secretory organ|secretor|secreter +endocrine system|1 +(noun)|system +endocrinologist|1 +(noun)|specialist|medical specialist +endocrinology|1 +(noun)|medicine|medical specialty +endoderm|1 +(noun)|entoderm|endoblast|entoblast|hypoblast|germ layer +endodontia|1 +(noun)|endodontics|dentistry|dental medicine|odontology +endodontic|1 +(adj)|dentistry|dental medicine|odontology +endodontics|1 +(noun)|endodontia|dentistry|dental medicine|odontology +endodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +endoergic|1 +(adj)|endoergic |energy-absorbing|endothermic|endothermal|heat-absorbing +endoergic reaction|1 +(noun)|nuclear reaction +endogamic|2 +(adj)|endogamous +(adj)|endogamous +endogamous|2 +(adj)|endogamous |endogamic +(adj)|endogamous |endogamic +endogamy|1 +(noun)|intermarriage|inmarriage|marriage|matrimony|union|spousal relationship|wedlock +endogen|1 +(noun)|monocot|monocotyledon|liliopsid|angiosperm|flowering plant +endogenetic|1 +(adj)|endogenic|integrative +endogenic|2 +(adj)|endogenous +(adj)|endogenetic|integrative +endogenous|2 +(adj)|angiosperm|flowering plant +(adj)|endogenous +endogenous depression|1 +(noun)|depressive disorder|clinical depression|depression +endogeny|1 +(noun)|geological phenomenon +endolymph|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +endometrial|1 +(adj)|mucous membrane|mucosa +endometrial cancer|1 +(noun)|endometrial carcinoma|carcinoma +endometrial carcinoma|1 +(noun)|endometrial cancer|carcinoma +endometriosis|1 +(noun)|adenomyosis|pathology +endometritis|1 +(noun)|metritis|inflammation|redness|rubor +endometrium|1 +(noun)|mucous membrane|mucosa +endomorph|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +endomorphic|1 +(adj)|endomorphic |pyknic|fat|rounded|fat +endomorphy|1 +(noun)|pyknic type|body type|somatotype +endomycetales|1 +(noun)|Endomycetales|order Endomycetales|fungus order +endoneurium|1 +(noun)|connective tissue +endonuclease|1 +(noun)|nuclease +endoparasite|1 +(noun)|entoparasite|entozoan|entozoon|endozoan|parasite +endoparasitic|1 +(adj)|parasite +endoplasm|1 +(noun)|cytoplasm +endoprocta|1 +(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum +endorphin|1 +(noun)|neurochemical|peptide +endorse|4 +(verb)|back|indorse|plump for|plunk for|support|approve|O.K.|okay|sanction +(verb)|second|back|indorse|support|back up +(verb)|certify|indorse|guarantee|warrant +(verb)|indorse|sign +endorsed|1 +(adj)|supported +endorsement|5 +(noun)|indorsement|blurb|promotion|publicity|promotional material|packaging +(noun)|second|secondment|indorsement|agreement +(noun)|sanction|countenance|indorsement|warrant|imprimatur|approval|commendation +(noun)|indorsement|signature +(noun)|indorsement|support +endorsement in blank|1 +(noun)|blank endorsement|endorsement|indorsement +endorser|2 +(noun)|subscriber|indorser|ratifier|supporter|protagonist|champion|admirer|booster|friend +(noun)|indorser|signer|signatory +endoscope|1 +(noun)|medical instrument +endoscopic|1 +(adj)|examination|scrutiny +endoscopy|1 +(noun)|examination|scrutiny +endoskeleton|1 +(noun)|skeletal system|skeleton|frame|systema skeletale +endosperm|1 +(noun)|reproductive structure +endospore|1 +(noun)|spore +endospore-forming bacteria|1 +(noun)|eubacteria|eubacterium|true bacteria +endosteum|1 +(noun)|membrane|tissue layer +endothelial|1 +(adj)|epithelium|epithelial tissue +endothelial myeloma|1 +(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|sarcoma +endothelium|1 +(noun)|epithelium|epithelial tissue +endothermal|1 +(adj)|endothermic |heat-absorbing|endoergic|energy-absorbing +endothermic|1 +(adj)|endothermic |endothermal|heat-absorbing|endoergic|energy-absorbing +endothermic reaction|1 +(noun)|chemical reaction|reaction +endotoxin|1 +(noun)|toxin +endotracheal tube|1 +(noun)|catheter +endovenous|1 +(adj)|intravenous|blood vessel +endow|2 +(verb)|indue|gift|empower|invest|endue|enable +(verb)|dower|give|gift|present +endowed|1 +(adj)|endowed |blessed|blessed with|endued with|dowered|invested|invested with +endowment|3 +(noun)|gift|talent|natural endowment|natural ability +(noun)|endowment fund|capital +(noun)|giving|gift +endowment fund|1 +(noun)|endowment|capital +endowment insurance|1 +(noun)|life insurance|life assurance +endozoan|2 +(adj)|entozoan|parasite +(noun)|endoparasite|entoparasite|entozoan|entozoon|parasite +endozoic|1 +(adj)|entozoic |entozoan +endplate|1 +(noun)|end-plate|motor end plate|end organ +endpoint|1 +(noun)|end point|termination|terminus|end +endue|1 +(verb)|endow|indue|gift|empower|invest|enable +endued with|1 +(adj)|blessed|blessed with|endowed +endurable|1 +(adj)|bearable|sufferable|supportable|tolerable +endurance|2 +(noun)|strength +(noun)|survival|animation|life|living|aliveness +endurance contest|1 +(noun)|marathon|undertaking|project|task|labor +endurance riding|1 +(noun)|riding|horseback riding +endure|7 +(verb)|digest|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|weather|brave|brave out|defy|withstand|hold|hold up +(verb)|survive|last|live|live on|go|hold up|hold out +(verb)|suffer|experience|undergo|see|go through +(verb)|wear|hold out|last +(verb)|last|measure +(verb)|prevail|persist|die hard|run|continue +enduring|2 +(adj)|abiding|imperishable|permanent |lasting +(adj)|long-suffering|patient +enduringness|1 +(noun)|lastingness|durability|strength|permanence|permanency +endways|3 +(adv)|endwise +(adv)|endwise +(adv)|endwise|end on +endwise|3 +(adv)|endways +(adv)|endways +(adv)|endways|end on +ene|1 +(noun)|east northeast|ENE|compass point|point +enea silvio piccolomini|1 +(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +enema|1 +(noun)|clyster|irrigation +enemy|4 +(noun)|military unit|military force|military group|force +(noun)|foe|foeman|opposition|adversary|antagonist|opponent|opposer|resister +(noun)|people +(noun)|foe|rival|challenger|competitor|competition|contender +energetic|2 +(adj)|energetic |active|physical|brisk|lively|merry|rattling|snappy|spanking|zippy|canty|driving|indefatigable|tireless|unflagging|unwearying|strenuous|vigorous|active|dynamic|dynamical|enterprising|lively|spirited +(adj)|gumptious|industrious|up-and-coming|enterprising +energid|1 +(noun)|protoplast|body part +energise|2 +(verb)|excite|energize|change|alter|modify +(verb)|stimulate|arouse|brace|energize|perk up|affect +energiser|2 +(noun)|energizer|vitalizer|vitaliser|animator|actor|doer|worker +(noun)|energizer|device +energising|2 +(adj)|bracing|brisk|energizing|fresh|refreshing|refreshful|tonic|invigorating +(adj)|energizing|kinetic|dynamic |dynamical +energize|2 +(verb)|stimulate|arouse|brace|energise|perk up|affect +(verb)|excite|energise|change|alter|modify +energizer|2 +(noun)|energiser|vitalizer|vitaliser|animator|actor|doer|worker +(noun)|energiser|device +energizing|3 +(adj)|bracing|brisk|energising|fresh|refreshing|refreshful|tonic|invigorating +(adj)|energising|kinetic|dynamic |dynamical +(noun)|activating|activation|activity +energy|6 +(noun)|physical phenomenon +(noun)|vigor|vigour|force|forcefulness|strength +(noun)|push|get-up-and-go|drive +(noun)|vigor|vigour|vim|liveliness|life|spirit|sprightliness +(noun)|vim|vitality|good health|healthiness +(noun)|Department of Energy|Energy Department|Energy|DOE|executive department +energy-absorbing|1 +(adj)|endoergic |endothermic|endothermal|heat-absorbing +energy-releasing|2 +(adj)|exoergic |exothermic|exothermal|heat-releasing +(adj)|destructive-metabolic|catabolic |katabolic +energy-storing|1 +(adj)|constructive-metabolic|anabolic +energy department|1 +(noun)|Department of Energy|Energy Department|Energy|DOE|executive department +energy level|1 +(noun)|energy state|energy +energy of activation|1 +(noun)|activation energy|energy +energy secretary|2 +(noun)|Secretary of Energy|Energy Secretary|secretary +(noun)|Secretary of Energy|Energy Secretary|secretaryship +energy state|1 +(noun)|energy level|energy +energy unit|1 +(noun)|work unit|heat unit|unit of measurement|unit +enervate|2 +(verb)|weaken +(verb)|faze|unnerve|unsettle|upset|discompose|untune|disconcert|discomfit +enervated|1 +(adj)|adynamic|asthenic|debilitated|weak +enervating|1 +(adj)|debilitative|enfeebling|weakening|debilitating +enervation|2 +(noun)|weakness +(noun)|debilitation|enfeeblement|exhaustion|weakening +enesco|1 +(noun)|Enesco|Georges Enesco|George Enescu|violinist|fiddler|composer +enets|1 +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +enfant terrible|1 +(noun)|nonconformist|recusant +enfeeble|1 +(verb)|debilitate|drain|weaken +enfeebled|1 +(adj)|debilitated|infirm|seedy|unhealthy +enfeeblement|1 +(noun)|debilitation|enervation|exhaustion|weakening +enfeebling|1 +(adj)|debilitative|enervating|weakening|debilitating +enfeoff|1 +(verb)|give +enfeoffment|1 +(noun)|deed|deed of conveyance|title +enfilade|2 +(noun)|enfilade fire|gunfire|gunshot +(verb)|rake +enfilade fire|1 +(noun)|enfilade|gunfire|gunshot +enflurane|1 +(noun)|Ethrane|ether|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|ethyl ether +enfold|1 +(verb)|envelop|enwrap|wrap|enclose|cover +enfolding|1 +(noun)|involution|change of shape +enforce|2 +(verb)|implement|apply|compel|oblige|obligate +(verb)|impose|compel|oblige|obligate +enforceable|1 +(adj)|enforceable +enforced|1 +(adj)|enforced |implemented +enforcement|1 +(noun)|social control +enforcer|1 +(noun)|hatchet man|assistant|helper|help|supporter +enfranchise|2 +(verb)|affranchise|liberate|set free +(verb)|accord|allot|grant +enfranchised|1 +(adj)|enfranchised +enfranchisement|3 +(noun)|freedom +(noun)|franchise|legal right +(noun)|certification|authorization|authorisation|empowerment +engage|10 +(verb)|prosecute|pursue|act|move +(verb)|absorb|engross|occupy|interest +(verb)|hire|employ +(verb)|hire|employ +(verb)|betroth|affiance|plight|vow +(verb)|touch +(verb)|wage|fight|struggle +(verb)|enlist|procure|secure +(verb)|lease|rent|hire|charter|take|get|acquire +(verb)|mesh|lock|operate|move|displace +engaged|8 +(adj)|occupied|busy +(adj)|involved +(adj)|booked|set-aside|reserved +(adj)|busy|in use|occupied +(adj)|meshed|intermeshed|geared +(adj)|employed +(adj)|connected +(adj)|affianced|bespoken|betrothed|pledged|attached |committed +engagement|7 +(noun)|battle|conflict|fight|military action|action +(noun)|date|appointment|meeting|get together +(noun)|betrothal|troth|promise +(noun)|employment|action +(noun)|booking|employment|work +(noun)|mesh|meshing|interlocking|contact|impinging|striking +(noun)|participation|involvement|involution|group action +engagement ring|1 +(noun)|ring|band +engaging|1 +(adj)|piquant|attractive +engagingly|1 +(adv)|winsomely +engelbert humperdinck|1 +(noun)|Humperdinck|Engelbert Humperdinck|composer +engelmann's spruce|1 +(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce +engelmann spruce|1 +(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce +engelmannia|1 +(noun)|wildflower|wild flower +engels|1 +(noun)|Engels|Friedrich Engels|socialist +engender|2 +(verb)|breed|spawn|cause|do|make +(verb)|beget|get|father|mother|sire|generate|bring forth|make|create +engild|1 +(verb)|gild|begild|decorate|adorn|grace|ornament|embellish|beautify +engine|3 +(noun)|motor +(noun)|causal agent|cause|causal agency +(noun)|locomotive|locomotive engine|railway locomotive|self-propelled vehicle +engine block|1 +(noun)|cylinder block|block|cast|casting +engine cooling system|1 +(noun)|cooling system|equipment +engine driver|1 +(noun)|engineer|locomotive engineer|railroad engineer|operator|manipulator +engine failure|1 +(noun)|breakdown|equipment failure +engine room|1 +(noun)|engineering|room +engineer|4 +(noun)|applied scientist|technologist|person|individual|someone|somebody|mortal|human|soul +(noun)|locomotive engineer|railroad engineer|engine driver|operator|manipulator +(verb)|design|plan +(verb)|mastermind|direct|organize|organise|orchestrate|plan +engineer's chain|1 +(noun)|chain +engineering|3 +(noun)|technology|application|practical application|profession +(noun)|engineering science|applied science|technology|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|engine room|room +engineering school|1 +(noun)|polytechnic institute|polytechnic|technical school|tech +engineering science|1 +(noun)|engineering|applied science|technology|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +enginery|1 +(noun)|machinery +england|1 +(noun)|England|European country|European nation +english|5 +(adj)|English|European country|European nation +(noun)|English|English language|West Germanic|West Germanic language +(noun)|English|English people|the English|nation|land|country|a people +(noun)|English|humanistic discipline|humanities|liberal arts|arts +(noun)|English|side|spin +english-gothic|1 +(noun)|perpendicular|perpendicular style|English-Gothic|English-Gothic architecture|Gothic|Gothic architecture +english-gothic architecture|1 +(noun)|perpendicular|perpendicular style|English-Gothic|English-Gothic architecture|Gothic|Gothic architecture +english-speaking|1 +(adj)|English-speaking|communicative |communicatory +english-weed|1 +(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis|sorrel|wood sorrel +english bean|1 +(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +english breakfast tea|1 +(noun)|congou|congo|congou tea|English breakfast tea|black tea +english bulldog|1 +(noun)|bulldog|English bulldog|working dog +english cavalry saddle|1 +(noun)|English saddle|English cavalry saddle|saddle +english channel|1 +(noun)|English Channel|channel +english civil war|1 +(noun)|English Civil War|civil war +english class|1 +(noun)|English class|class|form|grade +english cocker spaniel|1 +(noun)|cocker spaniel|English cocker spaniel|cocker|spaniel +english daisy|1 +(noun)|common daisy|English daisy|Bellis perennis|daisy +english department|1 +(noun)|English department|department of English|academic department +english elm|1 +(noun)|English elm|European elm|Ulmus procera|elm|elm tree +english foxhound|1 +(noun)|English foxhound|foxhound +english hawthorn|2 +(noun)|English hawthorn|Crataegus monogyna|hawthorn|haw +(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +english horn|1 +(noun)|English horn|cor anglais|double-reed instrument|double reed +english iris|1 +(noun)|English iris|Iris xiphioides|iris|flag|fleur-de-lis|sword lily +english ivy|1 +(noun)|ivy|common ivy|English ivy|Hedera helix|vine +english lady crab|1 +(noun)|English lady crab|Portunus puber|swimming crab +english language|1 +(noun)|English|English language|West Germanic|West Germanic language +english lavender|1 +(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender +english muffin|1 +(noun)|English muffin|crumpet|bread|breadstuff|staff of life +english oak|1 +(noun)|common oak|English oak|pedunculate oak|Quercus robur|white oak +english people|1 +(noun)|English|English people|the English|nation|land|country|a people +english person|1 +(noun)|English person|Britisher|Briton|Brit +english plantain|1 +(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain +english primrose|1 +(noun)|English primrose|Primula vulgaris|primrose|primula +english professor|1 +(noun)|English teacher|English professor|teacher|instructor +english revolution|1 +(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution +english runner bean|1 +(noun)|scarlet runner|scarlet runner bean|runner bean|English runner bean|green bean +english ryegrass|1 +(noun)|perennial ryegrass|English ryegrass|Lolium perenne|rye grass|ryegrass +english saddle|1 +(noun)|English saddle|English cavalry saddle|saddle +english setter|1 +(noun)|English setter|setter +english sole|2 +(noun)|lemon sole|English sole|sole|fillet of sole +(noun)|English sole|lemon sole|Parophrys vitulus|sole +english sonnet|1 +(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet +english sparrow|1 +(noun)|English sparrow|house sparrow|Passer domesticus|sparrow|true sparrow +english springer|1 +(noun)|English springer|English springer spaniel|springer spaniel|springer +english springer spaniel|1 +(noun)|English springer|English springer spaniel|springer spaniel|springer +english system|1 +(noun)|British Imperial System|English system|British system|system of weights and measures +english teacher|1 +(noun)|English teacher|English professor|teacher|instructor +english toy spaniel|1 +(noun)|English toy spaniel|toy spaniel +english violet|1 +(noun)|sweet violet|garden violet|English violet|Viola odorata|violet +english walnut|2 +(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut|walnut tree +(noun)|English walnut|walnut +english walnut tree|1 +(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut|walnut tree +english yew|1 +(noun)|Old World yew|English yew|Taxus baccata|yew +englishman|1 +(noun)|Englishman|English person +englishwoman|1 +(noun)|Englishwoman|English person +englut|1 +(verb)|gorge|ingurgitate|overindulge|glut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +engorge|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +engorged|1 +(adj)|congested|full +engorgement|2 +(noun)|hyperemia|hyperaemia +(noun)|eating|feeding +engraft|2 +(verb)|graft|ingraft|join|conjoin +(verb)|implant|embed|imbed|plant|insert|infix|enter|introduce +engram|1 +(noun)|memory trace|memory +engraulidae|1 +(noun)|Engraulidae|family Engraulidae|fish family +engraulis|1 +(noun)|Engraulis|genus Engraulis|fish genus +engraulis encrasicholus|1 +(noun)|mediterranean anchovy|Engraulis encrasicholus|anchovy +engrave|4 +(verb)|grave|inscribe|carve|chip at +(verb)|affect|impress|move|strike +(verb)|print +(verb)|carve|chip at +engraved|1 +(adj)|etched|graven|incised|inscribed|carved |carven +engraver|2 +(noun)|skilled worker|trained worker +(noun)|printmaker|graphic artist +engraving|3 +(noun)|print +(noun)|plate +(noun)|etching|printmaking +engross|2 +(verb)|steep|immerse|engulf|plunge|absorb|soak up|concentrate|focus|center|centre|pore|rivet +(verb)|absorb|engage|occupy|interest +engrossed|2 +(adj)|absorbed|enwrapped|intent|rapt|wrapped|attentive +(adj)|written +engrossing|1 +(adj)|absorbing|fascinating|gripping|riveting|interesting +engrossment|3 +(noun)|concentration|absorption|immersion|attention +(noun)|preoccupation|preoccupancy|absorption|cognitive state|state of mind +(noun)|intentness|assiduity|assiduousness|concentration +engulf|2 +(verb)|steep|immerse|plunge|engross|absorb|soak up|concentrate|focus|center|centre|pore|rivet +(verb)|envelop|enfold|enwrap|wrap|enclose +engulfed|2 +(adj)|flooded|inundated|overcome|overpowered|overwhelmed|swamped|powerless |weak +(adj)|enveloped|swallowed|enclosed +enhance|2 +(verb)|heighten|raise|intensify|compound|heighten|deepen +(verb)|better|improve|amend|ameliorate|meliorate +enhanced|1 +(adj)|increased +enhancement|1 +(noun)|sweetening|improvement +enhancer|1 +(noun)|foil|attention +enhancive|2 +(adj)|augmentative|intensifying +(adj)|cosmetic|aesthetic |esthetic|aesthetical|esthetical +enhydra|1 +(noun)|Enhydra|genus Enhydra|mammal genus +enhydra lutris|1 +(noun)|sea otter|Enhydra lutris|musteline mammal|mustelid|musteline +enid|1 +(noun)|Enid|town +enigma|2 +(noun)|mystery|secret|closed book|perplexity +(noun)|riddle|conundrum|brain-teaser|problem +enigma canon|1 +(noun)|enigmatic canon|enigmatical canon|riddle canon|canon +enigmatic|2 +(adj)|enigmatical|puzzling|incomprehensible |uncomprehensible +(adj)|oracular|ambiguous +enigmatic canon|1 +(noun)|enigma canon|enigmatical canon|riddle canon|canon +enigmatical|1 +(adj)|enigmatic|puzzling|incomprehensible |uncomprehensible +enigmatical canon|1 +(noun)|enigma canon|enigmatic canon|riddle canon|canon +enigmatically|1 +(adv)|cryptically|mysteriously +eniwetok|2 +(noun)|Eniwetok|atoll +(noun)|Eniwetok|amphibious assault +enjambement|1 +(noun)|enjambment|prosody|inflection +enjambment|1 +(noun)|enjambement|prosody|inflection +enjoin|2 +(verb)|forbid|prohibit|interdict|proscribe|veto|disallow +(verb)|order|tell|say|request +enjoining|1 +(noun)|injunction|enjoinment|cease and desist order|prohibition|ban|proscription +enjoinment|1 +(noun)|injunction|enjoining|cease and desist order|prohibition|ban|proscription +enjoy|5 +(verb)|bask|relish|savor|savour +(verb)|use|utilize|utilise|apply|employ +(verb)|love|like +(verb)|experience|undergo|see|go through +(verb)|delight|revel +enjoyable|1 +(adj)|gratifying|pleasurable|pleasant +enjoyableness|1 +(noun)|pleasantness|sweetness +enjoyably|1 +(adv)|pleasantly|agreeably +enjoyer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +enjoyment|3 +(noun)|pleasure|pleasance +(noun)|delectation|activity +(noun)|use|legal right +enkaid|1 +(noun)|encainide|Enkaid|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +enkephalin|1 +(noun)|endorphin +enki|1 +(noun)|Enki|Semitic deity +enkidu|1 +(noun)|Enkidu|mythical being +enkindle|2 +(verb)|kindle|conflagrate|inflame|ignite|light +(verb)|arouse|elicit|kindle|evoke|fire|raise|provoke|make|create +enkindled|1 +(adj)|ignited|kindled|lighted |lit +enl|1 +(noun)|erythema nodosum leprosum|ENL|erythema nodosum +enlace|1 +(verb)|intertwine|twine|entwine|interlace|lace|twist|twine|distort +enlarge|4 +(verb)|increase +(verb)|blow up|magnify|increase +(verb)|grow +(verb)|elaborate|lucubrate|expatiate|exposit|flesh out|expand|expound|dilate|clarify|clear up|elucidate +enlarged|5 +(adj)|expanded +(adj)|hypertrophied +(adj)|blown-up|large +(adj)|unhealthy +(adj)|exaggerated|magnified|increased +enlarged heart|1 +(noun)|cardiomegaly|megalocardia|megacardia|symptom +enlargement|3 +(noun)|expansion|increase|step-up +(noun)|expansion|elaboration|discussion|treatment|discourse +(noun)|blowup|magnification|photograph|photo|exposure|pic +enlarger|1 +(noun)|photographic equipment +enlighten|3 +(verb)|edify|teach|learn|instruct +(verb)|irradiate|prophesy|vaticinate +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|illuminate|elucidate|clarify|clear up|elucidate +enlightened|5 +(adj)|knowing|knowledgeable|learned|lettered|well-educated|well-read|educated +(adj)|enlightened |edified|educated|informed +(adj)|disillusioned|disenchanted +(adj)|educated|informed +(noun)|initiate|people +enlightening|3 +(adj)|enlightening |informative|instructive +(adj)|edifying +(adj)|illuminating +enlightenment|3 +(noun)|education +(noun)|Nirvana|blessedness|beatitude|beatification +(noun)|Enlightenment|Age of Reason|reform movement +enlil|1 +(noun)|Enlil|En-lil|Semitic deity +enlist|3 +(verb)|sign up +(verb)|engage|procure|secure +(verb)|draft|muster in|enroll|inscribe|enter|enrol|recruit +enlisted|1 +(adj)|noncommissioned +enlisted man|1 +(noun)|enlisted person +enlisted person|1 +(noun)|serviceman|military man|man|military personnel +enlisted woman|1 +(noun)|enlisted person +enlistee|1 +(noun)|recruit|newcomer|fledgling|fledgeling|starter|neophyte|freshman|newbie|entrant +enlisting|1 +(noun)|recruitment|accomplishment|achievement +enlistment|1 +(noun)|hitch|term of enlistment|tour of duty|duty tour|tour|time period|period of time|period +enliven|2 +(verb)|inspire|animate|invigorate|exalt|stimulate|shake|shake up|excite|stir +(verb)|liven|liven up|invigorate|animate|stimulate|arouse|brace|energize|energise|perk up +enlivened|2 +(adj)|enlivened |perked up|lively +(adj)|spirited|animated |alive +enlivener|1 +(noun)|quickener|invigorator|agent +enlivening|1 +(adj)|animating|invigorating +enmesh|1 +(verb)|mesh|ensnarl|entangle|tangle|mat|snarl +enmeshed|1 +(adj)|intermeshed|tangled +enmity|2 +(noun)|hostility|antagonism|state +(noun)|hostility|ill will|hate|hatred +ennead|1 +(noun)|nine|9|IX|niner|Nina from Carolina|digit|figure +ennervation|1 +(noun)|ablation|extirpation|cutting out|excision +ennoble|2 +(verb)|dignify|honor|honour|reward +(verb)|gentle|entitle|promote|upgrade|advance|kick upstairs|raise|elevate +ennoblement|2 +(noun)|condition|status +(noun)|promotion +ennobling|2 +(adj)|dignifying|noble +(adj)|exalting|inspiring +ennui|1 +(noun)|boredom|tedium|dissatisfaction +enol|1 +(noun)|organic compound +enolic|1 +(adj)|organic compound +enologist|1 +(noun)|oenologist|fermentologist|specialist|specializer|specialiser +enology|1 +(noun)|oenology|art|artistry|prowess +enormity|4 +(noun)|outrageousness|indecency +(noun)|enormousness|grandness|greatness|immenseness|immensity|sizeableness|vastness +(noun)|nefariousness|wickedness|vileness +(noun)|atrocity|inhumanity +enormous|1 +(adj)|tremendous|large +enormously|1 +(adv)|tremendously|hugely|staggeringly +enormousness|1 +(noun)|grandness|greatness|immenseness|immensity|sizeableness|vastness|largeness|bigness +enosis|1 +(noun)|union +enough|3 +(adj)|adequate|decent|sufficient +(noun)|sufficiency|relative quantity +(adv)|plenty +enounce|1 +(verb)|pronounce|articulate|sound out|enunciate|say +enovid|1 +(noun)|Enovid|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +enplane|1 +(verb)|emplane|embark|ship +enquire|3 +(verb)|ask|inquire|communicate|intercommunicate +(verb)|investigate|inquire|probe|examine +(verb)|wonder|inquire|question|query +enquirer|1 +(noun)|inquirer|questioner|querier|asker|speaker|talker|utterer|verbalizer|verbaliser +enquiringly|1 +(adv)|inquiringly +enquiry|3 +(noun)|question|inquiry|query|interrogation|questioning|inquiring +(noun)|inquiry|research|problem solving +(noun)|inquiry|investigation|investigating +enrage|1 +(verb)|anger +enraged|1 +(adj)|angered|furious|infuriated|maddened|angry +enragement|1 +(noun)|infuriation|anger|choler|ire +enrapture|1 +(verb)|enchant|transport|enthrall|ravish|enthral|delight|please|delight +enraptured|2 +(adj)|rapt|captive|moved +(adj)|ecstatic|rapturous|rhapsodic|joyous +enrich|2 +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|add +enrichment|2 +(noun)|improvement +(noun)|gift +enrico caruso|1 +(noun)|Caruso|Enrico Caruso|tenor +enrico fermi|1 +(noun)|Fermi|Enrico Fermi|nuclear physicist +enrobe|2 +(verb)|coat|surface +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +enrol|1 +(verb)|enroll|inscribe|enter|recruit|register +enroll|1 +(verb)|inscribe|enter|enrol|recruit|register +enrolled|1 +(adj)|listed|registered +enrollee|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +enrollment|2 +(noun)|registration|enrolment|entrance|entering|entry|ingress|incoming +(noun)|registration|body +enrolment|1 +(noun)|registration|enrollment|entrance|entering|entry|ingress|incoming +ensconce|1 +(verb)|settle|put|set|place|pose|position|lay +ensemble|5 +(noun)|musical organization|musical organisation|musical group +(noun)|supporting players|cast|cast of characters|dramatis personae +(noun)|corps de ballet|chorus|chorus line +(noun)|tout ensemble|collection|aggregation|accumulation|assemblage +(noun)|outfit|getup|rig|turnout +ensete|1 +(noun)|Ensete|genus Ensete|monocot genus|liliopsid genus +ensete ventricosum|1 +(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb|herbaceous plant +enshrine|2 +(verb)|shrine|enclose|inclose|shut in +(verb)|saint|reverence|fear|revere|venerate +enshroud|1 +(verb)|shroud|hide|cover|envelop|enfold|enwrap|wrap|enclose +ensiform|1 +(adj)|sword-shaped|swordlike|bladelike|simple |unsubdivided|pointed +ensiform leaf|1 +(noun)|simple leaf +ensign|3 +(noun)|commissioned naval officer +(noun)|national flag|emblem|allegory|flag +(noun)|colors|colours +ensilage|1 +(noun)|silage|feed|provender +ensile|1 +(verb)|store +ensis|1 +(noun)|Ensis|genus Ensis|mollusk genus +ensky|1 +(verb)|laud|extol|exalt|glorify|proclaim +enslave|1 +(verb)|subjugate|subject +enslaved|1 +(adj)|bond|enthralled|in bondage|slave +enslavement|2 +(noun)|captivity|subjugation|subjection +(noun)|capture|gaining control|seizure +ensnare|2 +(verb)|entrap|frame|set up|deceive|lead on|delude|cozen +(verb)|trap|entrap|snare|trammel|capture|catch +ensnarl|1 +(verb)|enmesh|mesh|entangle|tangle|mat|snarl +ensorcelled|1 +(adj)|bewitched|enchanted +ensuant|1 +(adj)|consequent|resultant|resulting|sequent|subsequent +ensue|1 +(verb)|result|prove|turn out|turn up +ensuing|1 +(adj)|succeeding +ensure|2 +(verb)|guarantee|insure|assure|secure +(verb)|see|check|insure|see to it|control|ascertain|assure|verify +ent man|1 +(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|otorhinolaryngologist|rhinolaryngologist|specialist|medical specialist +entablature|1 +(noun)|structure|construction +entail|5 +(noun)|estate|land|landed estate|acres|demesne +(noun)|change +(verb)|imply|mean|necessitate +(verb)|implicate|bring about +(verb)|fee-tail|bequeath|will|leave +entailment|1 +(noun)|deduction|implication|inference|illation +entandrophragma|1 +(noun)|Entandrophragma|genus Entandrophragma|rosid dicot genus +entandrophragma cylindricum|1 +(noun)|African scented mahogany|cedar mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany|mahogany tree +entangle|2 +(verb)|mire|involve +(verb)|tangle|mat|snarl|twist|twine|distort +entangled|3 +(adj)|embroiled|involved +(adj)|tangled +(adj)|unfree +entanglement|1 +(noun)|web|trap +entasis|1 +(noun)|convex shape|convexity +entebbe|1 +(noun)|Entebbe|town +entelea|1 +(noun)|Entelea|genus Entelea|dilleniid dicot genus +entellus|1 +(noun)|hanuman|Presbytes entellus|Semnopithecus entellus|langur +entente|2 +(noun)|entente cordiale|alliance|coalition|alignment|alinement +(noun)|entente cordiale|agreement|understanding +entente cordiale|2 +(noun)|entente|alliance|coalition|alignment|alinement +(noun)|entente|agreement|understanding +enter|8 +(verb)|come in|get into|get in|go into|go in|move into|enter upon +(verb)|participate +(verb)|enroll|inscribe|enrol|recruit|register +(verb)|figure|be +(verb)|record|put down|save|preserve +(verb)|insert|infix|introduce|attach +(verb)|accede|succeed|come after|follow|take office +(verb)|embark|get down|begin|get|start out|start|set about|set out|commence +enter upon|1 +(verb)|come upon|luck into|get|acquire +enteral|2 +(adj)|enteric|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract +(adj)|intestinal|enteric|internal organ|viscus +enteric|2 +(adj)|enteral|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract +(adj)|intestinal|enteral|internal organ|viscus +enteric-coated aspirin|1 +(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin +enteric bacteria|1 +(noun)|enterobacteria|enterics|eubacteria|eubacterium|true bacteria +enteric fever|1 +(noun)|typhoid|typhoid fever|infectious disease +enterics|1 +(noun)|enteric bacteria|enterobacteria|eubacteria|eubacterium|true bacteria +entering|3 +(adj)|ingoing|incoming +(noun)|entrance|change of location|travel +(noun)|entrance|entry|ingress|incoming|arrival +enteritis|1 +(noun)|inflammation|redness|rubor +enterobacteria|1 +(noun)|enteric bacteria|enterics|eubacteria|eubacterium|true bacteria +enterobacteriaceae|1 +(noun)|Enterobacteriaceae|family Enterobacteriaceae|bacteria family +enterobiasis|1 +(noun)|infestation|infection +enterobius|1 +(noun)|Enterobius|genus Enterobius|worm genus +enterobius vermicularis|1 +(noun)|pinworm|threadworm|Enterobius vermicularis|nematode|nematode worm|roundworm +enteroceptor|1 +(noun)|interoceptor|sense organ|sensory receptor|receptor +enterokinase|1 +(noun)|enzyme +enterolith|1 +(noun)|calculus|concretion +enterolithiasis|1 +(noun)|lithiasis +enterolobium|1 +(noun)|Enterolobium|genus Enterolobium|rosid dicot genus +enterolobium cyclocarpa|1 +(noun)|conacaste|elephant's ear|Enterolobium cyclocarpa|tree +enteron|1 +(noun)|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract +enteropathy|1 +(noun)|disease +enteroptosis|1 +(noun)|prolapse|prolapsus|descensus +enterostenosis|1 +(noun)|stenosis|stricture +enterostomy|1 +(noun)|enterotomy|operation|surgery|surgical operation|surgical procedure|surgical process +enterotomy|1 +(noun)|enterostomy|operation|surgery|surgical operation|surgical procedure|surgical process +enterotoxemia|1 +(noun)|animal disease +enterotoxin|1 +(noun)|cytotoxin +enterovirus|1 +(noun)|picornavirus +enterprise|3 +(noun)|endeavor|endeavour|undertaking|project|task|labor +(noun)|organization|organisation +(noun)|enterprisingness|initiative|go-ahead|drive +enterprise zone|1 +(noun)|city district +enterpriser|1 +(noun)|entrepreneur|businessperson|bourgeois +enterprising|2 +(adj)|enterprising |energetic|gumptious|industrious|up-and-coming|entrepreneurial|adventurous|adventuresome|ambitious|energetic +(adj)|aggressive|pushful|pushing|pushy|ambitious +enterprisingness|1 +(noun)|enterprise|initiative|go-ahead|drive +entertain|3 +(verb)|socialize|socialise +(verb)|think of|toy with|flirt with|think about|contemplate +(verb)|harbor|harbour|hold|nurse|feel|experience +entertained|1 +(adj)|amused|diverted|pleased +entertainer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +entertaining|1 +(adj)|entertaining |amusing|amusive|diverting|fun +entertainment|1 +(noun)|amusement|diversion|recreation +entertainment center|1 +(noun)|wall unit +entertainment deduction|1 +(noun)|business deduction +entertainment industry|1 +(noun)|show business|show biz|industry +enthalpy|1 +(noun)|heat content|total heat|H|physical property +enthral|1 +(verb)|enchant|enrapture|transport|enthrall|ravish|delight|please|delight +enthrall|1 +(verb)|enchant|enrapture|transport|ravish|enthral|delight|please|delight +enthralled|2 +(adj)|bond|enslaved|in bondage|slave +(adj)|beguiled|captivated|charmed|delighted|entranced|enchanted +enthralling|1 +(adj)|bewitching|captivating|enchanting|entrancing|fascinating|attractive +enthrallingly|1 +(adv)|bewitchingly|captivatingly|enchantingly +enthrallment|1 +(noun)|captivation|enchantment|fascination|liking +enthrone|2 +(verb)|invest|vest|install +(verb)|throne|invest|vest +enthronement|1 +(noun)|coronation|enthronization|enthronisation|investiture|initiation|induction|installation +enthronisation|1 +(noun)|coronation|enthronement|enthronization|investiture|initiation|induction|installation +enthronization|1 +(noun)|coronation|enthronement|enthronisation|investiture|initiation|induction|installation +enthuse|2 +(verb)|excite +(verb)|talk|speak|utter|mouth|verbalize|verbalise +enthusiasm|3 +(noun)|feeling +(noun)|exuberance|ebullience|liveliness|life|spirit|sprightliness +(noun)|interest|involvement +enthusiast|2 +(noun)|partisan|partizan|supporter|protagonist|champion|admirer|booster|friend +(noun)|fancier|admirer|adorer +enthusiastic|1 +(adj)|enthusiastic |ardent|warm|avid|great|eager|zealous|crazy|evangelical|evangelistic|gung ho|glowing|overenthusiastic|passionate|spirited +enthusiastically|1 +(adv)|sky-high +entice|1 +(verb)|lure|tempt|provoke|stimulate +enticement|3 +(noun)|temptation|influence +(noun)|lure|come-on|attraction|attractiveness +(noun)|temptation|influence +enticing|1 +(adj)|alluring|beguiling|tempting|seductive +entire|5 +(adj)|full|total|whole +(adj)|integral|intact|whole +(adj)|smooth +(adj)|intact|uncastrated +(noun)|stallion|male horse +entire leaf|1 +(noun)|leaf|leafage|foliage +entirely|2 +(adv)|wholly|completely|totally|all|altogether|whole +(adv)|exclusively|solely|alone|only +entireness|1 +(noun)|entirety|totality|completeness +entirety|1 +(noun)|entireness|totality|completeness +entitle|3 +(verb)|empower|authorise|authorize +(verb)|title|name|call +(verb)|ennoble|gentle|promote|upgrade|advance|kick upstairs|raise|elevate +entitled|2 +(adj)|eligible +(adj)|titled +entitlement|1 +(noun)|title|claim +entoblast|1 +(noun)|endoderm|entoderm|endoblast|hypoblast|germ layer +entoderm|1 +(noun)|endoderm|endoblast|entoblast|hypoblast|germ layer +entoloma|1 +(noun)|Entoloma|genus Entoloma|fungus genus +entoloma aprile|1 +(noun)|Entoloma aprile|agaric +entoloma lividum|1 +(noun)|Entoloma lividum|Entoloma sinuatum|agaric +entoloma sinuatum|1 +(noun)|Entoloma lividum|Entoloma sinuatum|agaric +entolomataceae|1 +(noun)|Entolomataceae|family Entolomataceae|fungus family +entomb|1 +(verb)|bury|inhume|inter|lay to rest|lay|put down|repose +entombment|1 +(noun)|burial|inhumation|interment|sepulture|funeral +entomion|1 +(noun)|craniometric point +entomologic|1 +(adj)|entomological|zoology|zoological science +entomological|1 +(adj)|entomologic|zoology|zoological science +entomologist|1 +(noun)|bugologist|bug-hunter|zoologist|animal scientist +entomology|1 +(noun)|bugology|zoology|zoological science +entomophilous|1 +(adj)|entomophilous +entomophobia|1 +(noun)|zoophobia +entomophthora|1 +(noun)|Entomophthora|genus Entomophthora|fungus genus +entomophthoraceae|1 +(noun)|Entomophthoraceae|family Entomophthoraceae|fungus family +entomophthorales|1 +(noun)|Entomophthorales|order Entomophthorales|fungus order +entomostraca|1 +(noun)|Entomostraca|subclass Entomostraca|class +entoparasite|1 +(noun)|endoparasite|entozoan|entozoon|endozoan|parasite +entopic pregnancy|1 +(noun)|pregnancy|gestation|maternity +entoproct|1 +(noun)|invertebrate +entoprocta|1 +(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum +entourage|1 +(noun)|cortege|retinue|suite|gathering|assemblage +entozoan|3 +(adj)|endozoan|parasite +(adj)|entozoic |endozoic +(noun)|endoparasite|entoparasite|entozoon|endozoan|parasite +entozoic|1 +(adj)|entozoic |entozoan|endozoic +entozoon|1 +(noun)|endoparasite|entoparasite|entozoan|endozoan|parasite +entr'acte|2 +(noun)|interlude +(noun)|interlude|intermezzo|show +entrails|1 +(noun)|viscera|innards|internal organ|viscus +entrain|1 +(verb)|board|get on +entrance|5 +(noun)|entranceway|entryway|entry|entree|access|approach +(noun)|entering|change of location|travel +(noun)|entering|entry|ingress|incoming|arrival +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|enchant|attract|appeal +(verb)|spellbind|hypnotize|hypnotise|mesmerize|mesmerise +entrance exam|1 +(noun)|entrance examination|examination|exam|test +entrance examination|1 +(noun)|entrance exam|examination|exam|test +entrance fee|1 +(noun)|admission|admission charge|admission fee|admission price|price of admission|entrance money|fee +entrance hall|1 +(noun)|anteroom|antechamber|hall|foyer|lobby|vestibule|room +entrance money|1 +(noun)|entrance fee|admission|admission charge|admission fee|admission price|price of admission|fee +entranced|1 +(adj)|beguiled|captivated|charmed|delighted|enthralled|enchanted +entrancement|1 +(noun)|ravishment|delight|delectation +entranceway|1 +(noun)|entrance|entryway|entry|entree|access|approach +entrancing|1 +(adj)|bewitching|captivating|enchanting|enthralling|fascinating|attractive +entrant|4 +(noun)|commodity|trade goods|goods +(noun)|newcomer|fledgling|fledgeling|starter|neophyte|freshman|newbie|novice|beginner|tyro|tiro|initiate +(noun)|traveler|traveller +(noun)|contestant +entrap|2 +(verb)|ensnare|frame|set up|deceive|lead on|delude|cozen +(verb)|trap|snare|ensnare|trammel|capture|catch +entrapment|1 +(noun)|defense|defence|denial|demurrer +entreat|1 +(verb)|bid|beseech|adjure|press|conjure|plead +entreatingly|1 +(adv)|beseechingly|importunately|imploringly|pleadingly +entreaty|1 +(noun)|prayer|appeal|request|asking +entree|4 +(noun)|main course|course +(noun)|access|accession|admittance|right +(noun)|entrance|entranceway|entryway|entry|access|approach +(noun)|entrance|entering|entry|ingress|incoming +entremots|1 +(noun)|side dish|dish +entrench|3 +(verb)|intrench|fasten|fix|secure +(verb)|impinge|encroach|trench|trespass|take advantage +(verb)|dig in +entrenched|2 +(adj)|invulnerable +(adj)|established |constituted +entrenching tool|1 +(noun)|trenching spade|hand shovel +entrenchment|1 +(noun)|intrenchment|fortification|munition +entrepot|2 +(noun)|transshipment center|port +(noun)|storehouse|depot|storage|store|depository|deposit|repository +entrepreneur|1 +(noun)|enterpriser|businessperson|bourgeois +entrepreneurial|2 +(adj)|businessperson|bourgeois +(adj)|enterprising +entropy|2 +(noun)|information|selective information|information measure +(noun)|randomness|S|physical property +entrust|2 +(verb)|intrust|trust|confide|commit|pass|hand|reach|pass on|turn over|give +(verb)|leave|pass|hand|reach|pass on|turn over|give +entry|6 +(noun)|written record|written account +(noun)|introduction|debut|first appearance|launching|unveiling|beginning|start|commencement +(noun)|accounting entry|ledger entry|accounting|accounting system|method of accounting +(noun)|submission|message|content|subject matter|substance +(noun)|entrance|entranceway|entryway|entree|access|approach +(noun)|entrance|entering|ingress|incoming|arrival +entry word|1 +(noun)|citation form|main entry word|form|word form|signifier|descriptor +entryway|1 +(noun)|entrance|entranceway|entry|entree|access|approach +entsi|1 +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +entsy|1 +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +entwine|2 +(verb)|knit|join|conjoin +(verb)|intertwine|twine|enlace|interlace|lace|twist|twine|distort +enucleate|2 +(verb)|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +enucleation|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +enuki|1 +(noun)|Anunnaki|Enuki|Semitic deity +enumerable|1 +(adj)|countable|denumerable|numerable|calculable +enumerate|2 +(verb)|recite|itemize|itemise|name|identify +(verb)|count|number|numerate|determine|find|find out|ascertain +enumeration|2 +(noun)|numbering|list|listing +(noun)|count|counting|numeration|reckoning|tally|investigation|investigating +enumerator|1 +(noun)|census taker|official|functionary +enunciate|2 +(verb)|pronounce|articulate|enounce|sound out|say +(verb)|articulate|vocalize|vocalise|state|say|tell +enunciation|1 +(noun)|diction|articulation +enured|1 +(adj)|inured|hardened|tough |toughened +enuresis|1 +(noun)|urinary incontinence|incontinence|incontinency +envelop|1 +(verb)|enfold|enwrap|wrap|enclose|cover +envelope|6 +(noun)|container +(noun)|wrapping|wrap|wrapper +(noun)|curve|curved shape +(noun)|covering|natural covering|cover +(noun)|operating capability|performance capability +(noun)|gasbag|bag +enveloped|1 +(adj)|engulfed|swallowed|enclosed +enveloping|1 +(adj)|close +envelopment|1 +(noun)|enclosure|enclosing|inclosure|insertion|introduction|intromission +envenom|2 +(verb)|embitter|acerbate +(verb)|poison|change|alter|modify +enviable|1 +(adj)|desirable +envious|1 +(adj)|covetous|jealous|desirous +enviously|1 +(adv)|covetously|jealously +enviousness|1 +(noun)|envy|the green-eyed monster|resentment|bitterness|gall|rancor|rancour +environ|1 +(verb)|surround|encircle|circle|round|ring|hold|bear|carry|contain +environment|2 +(noun)|situation|state of affairs +(noun)|environs|surroundings|surround|geographical area|geographic area|geographical region|geographic region +environmental|2 +(adj)|biology|biological science +(adj)|situation|state of affairs +environmental condition|1 +(noun)|condition|status +environmental protection agency|1 +(noun)|Environmental Protection Agency|EPA|independent agency +environmental science|1 +(noun)|ecology|bionomics|biology|biological science +environmentalism|2 +(noun)|philosophical doctrine|philosophical theory +(noun)|preservation|saving +environmentalist|1 +(noun)|conservationist|reformer|reformist|crusader|meliorist +environs|1 +(noun)|environment|surroundings|surround|geographical area|geographic area|geographical region|geographic region +envisage|1 +(verb)|imagine|conceive of|ideate|create by mental act|create mentally +envision|2 +(verb)|visualize|visualise|project|fancy|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|foresee|imagine|conceive of|ideate|envisage +envisioned|1 +(adj)|pictured|visualized|visualised|unreal +envisioning|1 +(noun)|picturing|imagination|imaging|imagery|mental imagery +envoi|1 +(noun)|envoy|stanza +envoy|3 +(noun)|envoy extraordinary|minister plenipotentiary|diplomat|diplomatist +(noun)|emissary|representative +(noun)|envoi|stanza +envoy extraordinary|1 +(noun)|envoy|minister plenipotentiary|diplomat|diplomatist +envy|4 +(noun)|enviousness|the green-eyed monster|resentment|bitterness|gall|rancor|rancour +(noun)|invidia|mortal sin|deadly sin +(verb)|admire|look up to +(verb)|begrudge|desire|want +enwrap|1 +(verb)|envelop|enfold|wrap|enclose|cover +enwrapped|3 +(adj)|wrapped +(adj)|enclosed +(adj)|absorbed|engrossed|intent|rapt|wrapped|attentive +enzootic|1 +(adj)|endemic |endemical +enzymatic|1 +(adj)|protein|catalyst|accelerator +enzyme|1 +(noun)|protein|catalyst|accelerator +enzyme-linked-immunosorbent serologic assay|1 +(noun)|ELISA|assay +enzymologist|1 +(noun)|biochemist +enzymology|1 +(noun)|biochemistry +eocene|1 +(noun)|Eocene|Eocene epoch|epoch +eocene epoch|1 +(noun)|Eocene|Eocene epoch|epoch +eohippus|1 +(noun)|dawn horse|horse|Equus caballus +eolian|1 +(noun)|Aeolian|Eolian|Greek|Hellene +eolic|1 +(noun)|Aeolic|Eolic|Ancient Greek +eolith|1 +(noun)|tool +eolithic|2 +(adj)|time period|period of time|period +(noun)|Eolithic Age|Eolithic|time period|period of time|period +eolithic age|1 +(noun)|Eolithic Age|Eolithic|time period|period of time|period +eolotropic|1 +(adj)|aeolotropic|anisotropic +eon|3 +(noun)|aeon|geological time|geologic time +(noun)|aeon|long time|age|years +(noun)|aeon|spiritual being|supernatural being +eonian|2 +(adj)|aeonian|geological time|geologic time +(adj)|everlasting|eternal|lasting|aeonian|immortal +eoraptor|1 +(noun)|theropod|theropod dinosaur|bird-footed dinosaur +eos|1 +(noun)|Eos|Greek deity +eosin|1 +(noun)|bromeosin|fluorescein|fluoresceine|fluorescent dye|resorcinolphthalein +eosinopenia|1 +(noun)|symptom +eosinophil|1 +(noun)|eosinophile|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +eosinophile|1 +(noun)|eosinophil|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +eosinophilia|1 +(noun)|symptom +eosinophilic|1 +(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +epa|1 +(noun)|Environmental Protection Agency|EPA|independent agency +epacridaceae|1 +(noun)|Epacridaceae|family Epacridaceae|epacris family|dilleniid dicot family +epacris|1 +(noun)|Australian heath +epacris family|1 +(noun)|Epacridaceae|family Epacridaceae|dilleniid dicot family +epacris impressa|1 +(noun)|common heath|Epacris impressa|epacris +epacris obtusifolia|1 +(noun)|common heath|blunt-leaf heath|Epacris obtusifolia|epacris +epacris purpurascens|1 +(noun)|Port Jackson heath|Epacris purpurascens|epacris +epanalepsis|1 +(noun)|repetition +epanaphora|1 +(noun)|anaphora|repetition +epanodos|1 +(noun)|repetition|recapitulation|recap|review +epanorthosis|1 +(noun)|rhetorical device +eparch|2 +(noun)|bishop +(noun)|governor +eparchial|1 +(adj)|diocese|bishopric +eparchy|2 +(noun)|state|province +(noun)|exarchate|diocese|bishopric +epaulet|1 +(noun)|epaulette|adornment +epaulette|1 +(noun)|epaulet|adornment +epauliere|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +epee|1 +(noun)|fencing sword +ependyma|1 +(noun)|membrane|tissue layer +epenthesis|1 +(noun)|articulation +epenthetic|1 +(adj)|parasitic|articulation +epergne|1 +(noun)|centerpiece|centrepiece +epha|1 +(noun)|ephah|dry unit|dry measure +ephah|1 +(noun)|epha|dry unit|dry measure +ephedra|1 +(noun)|joint fir|shrub|bush +ephedra sinica|1 +(noun)|mahuang|Ephedra sinica|ephedra|joint fir +ephedraceae|1 +(noun)|Ephedraceae|family Ephedraceae|gymnosperm family +ephedrine|1 +(noun)|alkaloid|bronchodilator +ephemera|3 +(noun)|time +(noun)|ephemeron|insect +(noun)|ephemeron|insect +ephemeral|1 +(adj)|passing|short-lived|transient|transitory|fugacious|impermanent |temporary +ephemerality|1 +(noun)|ephemeralness|fleetingness|transience|transiency|transitoriness +ephemeralness|1 +(noun)|ephemerality|fleetingness|transience|transiency|transitoriness +ephemerid|1 +(noun)|ephemeropteran|insect +ephemerida|1 +(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order +ephemeridae|1 +(noun)|Ephemeridae|family Ephemeridae|arthropod family +ephemeris|1 +(noun)|annual|yearbook +ephemeris time|1 +(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|time unit|unit of time +ephemeron|1 +(noun)|ephemera|insect +ephemeroptera|1 +(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order +ephemeropteran|1 +(noun)|ephemerid|insect +ephesan|1 +(adj)|Ephesan|city|metropolis|urban center +ephesian|1 +(noun)|Ephesian|Greek|Hellene +ephesians|2 +(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|book +(noun)|Ephesian|Greek|Hellene +ephestia|1 +(noun)|Ephestia|genus Ephestia|arthropod genus +ephestia elutella|1 +(noun)|tobacco moth|cacao moth|Ephestia elutella|pyralid|pyralid moth +ephesus|1 +(noun)|Ephesus|city|metropolis|urban center +ephippidae|1 +(noun)|Ephippidae|family Ephippidae|fish family +ephippiorhynchus|1 +(noun)|Ephippiorhynchus|genus Ephippiorhynchus|bird genus +ephippiorhynchus senegalensis|1 +(noun)|saddlebill|jabiru|Ephippiorhynchus senegalensis|stork +epi|1 +(noun)|Eysenck Personality Inventory|EPI|self-report personality inventory|self-report inventory +epic|3 +(adj)|heroic|larger-than-life|large +(adj)|epical|poem|verse form +(noun)|epic poem|heroic poem|epos|poem|verse form +epic poem|1 +(noun)|heroic poem|epic|epos|poem|verse form +epic poetry|1 +(noun)|heroic poetry|poetry|poesy|verse +epical|1 +(adj)|epic|poem|verse form +epicalyx|1 +(noun)|false calyx|calycle|calyculus|bract +epicanthic fold|1 +(noun)|epicanthus|fold|plica +epicanthus|1 +(noun)|epicanthic fold|fold|plica +epicardia|2 +(noun)|passage|passageway +(noun)|epicardium|visceral pericardium|serous membrane|serosa +epicardium|1 +(noun)|visceral pericardium|serous membrane|serosa +epicarp|1 +(noun)|exocarp|pericarp|seed vessel +epicarpal|1 +(adj)|pericarp|seed vessel +epicene|2 +(adj)|bisexual|androgynous +(adj)|effeminate|emasculate|cissy|sissified|sissyish|sissy|unmanly |unmanful|unmanlike +epicenter|1 +(noun)|epicentre|geographic point|geographical point +epicentre|1 +(noun)|epicenter|geographic point|geographical point +epicine|1 +(noun)|hermaphrodite|intersex|gynandromorph|androgyne|epicine person|bisexual|bisexual person +epicine person|1 +(noun)|hermaphrodite|intersex|gynandromorph|androgyne|epicine|bisexual|bisexual person +epicondyle|1 +(noun)|process|outgrowth|appendage +epicondylitis|1 +(noun)|inflammation|redness|rubor +epicranium|1 +(noun)|body covering +epictetus|1 +(noun)|Epictetus|philosopher +epicure|1 +(noun)|gourmet|gastronome|bon vivant|epicurean|foodie|sensualist +epicurean|4 +(adj)|Epicurean|philosopher|doctrine|philosophy|philosophical system|school of thought|ism +(adj)|hedonic|hedonistic|indulgent +(adj)|luxurious|sybaritic|voluptuary|voluptuous|indulgent +(noun)|epicure|gourmet|gastronome|bon vivant|foodie|sensualist +epicureanism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +epicurism|1 +(noun)|disposition|temperament +epicurus|1 +(noun)|Epicurus|philosopher +epicycle|1 +(noun)|circle +epicyclic|1 +(adj)|epicyclical|circle +epicyclic gear|1 +(noun)|planetary gear|planet wheel|planet gear|gear|gear wheel|cogwheel +epicyclic gear train|1 +(noun)|epicyclic train|gearing|gears|geartrain|power train|train +epicyclic train|1 +(noun)|epicyclic gear train|gearing|gears|geartrain|power train|train +epicyclical|1 +(adj)|epicyclic|circle +epicycloid|1 +(noun)|roulette|line roulette +epidemic|2 +(adj)|epidemic |pandemic|pestilent|pestilential|pestiferous|plaguey|epiphytotic|epizootic +(noun)|outbreak|eruption|irruption +epidemic cholera|1 +(noun)|cholera|Asiatic cholera|Indian cholera|infectious disease +epidemic disease|1 +(noun)|infectious disease +epidemic encephalitis|1 +(noun)|sleeping sickness|sleepy sickness|lethargic encephalitis|encephalitis lethargica|encephalitis|cephalitis|phrenitis +epidemic hysertia|1 +(noun)|mass hysteria|craze|delirium|frenzy|fury|hysteria +epidemic meningitis|1 +(noun)|cerebrospinal meningitis|brain fever|cerebrospinal fever|meningitis +epidemic myalgia|1 +(noun)|epidemic pleurodynia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease +epidemic parotitis|1 +(noun)|mumps|infectious disease +epidemic pleurodynia|1 +(noun)|epidemic myalgia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease +epidemic roseola|1 +(noun)|German measles|rubella|three-day measles|measles|rubeola|morbilli +epidemiologic|1 +(adj)|epidemiological|medicine|medical specialty +epidemiological|1 +(adj)|epidemiologic|medicine|medical specialty +epidemiologist|1 +(noun)|medical scientist +epidemiology|1 +(noun)|medicine|medical specialty +epidendron|1 +(noun)|orchid|orchidaceous plant +epidendrum|1 +(noun)|Epidendrum|genus Epidendrum|monocot genus|liliopsid genus +epidendrum tampense|1 +(noun)|butterfly orchid|Encyclia tampensis|Epidendrum tampense|orchid|orchidaceous plant +epidendrum venosum|1 +(noun)|butterfly orchid|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid|orchidaceous plant +epidermal|1 +(adj)|cuticular|epidermic|dermal|stratum +epidermal cell|1 +(noun)|skin cell +epidermic|1 +(adj)|cuticular|epidermal|dermal|stratum +epidermis|1 +(noun)|cuticle|stratum +epidiascope|1 +(noun)|projector +epididymis|1 +(noun)|duct|epithelial duct|canal|channel +epididymitis|1 +(noun)|inflammation|redness|rubor +epidural|2 +(adj)|extradural|meninx|meninges +(noun)|epidural anesthesia|epidural anaesthesia|regional anesthesia|regional anaesthesia +epidural anaesthesia|1 +(noun)|epidural anesthesia|epidural|regional anesthesia|regional anaesthesia +epidural anesthesia|1 +(noun)|epidural anaesthesia|epidural|regional anesthesia|regional anaesthesia +epidural injection|1 +(noun)|injection +epigaea|1 +(noun)|Epigaea|genus Epigaea|dilleniid dicot genus +epigaea repens|1 +(noun)|trailing arbutus|mayflower|Epigaea repens|shrub|bush +epigastric|2 +(adj)|wall|paries +(adj)|area|region +epigastric artery|1 +(noun)|arteria epigastrica|artery|arteria|arterial blood vessel +epigastric fossa|1 +(noun)|pit of the stomach|pit|fossa +epigastric vein|1 +(noun)|vein|vena|venous blood vessel +epigastrium|1 +(noun)|area|region +epigenesis|1 +(noun)|metamorphism +epiglottis|1 +(noun)|cartilaginous structure +epiglottitis|1 +(noun)|inflammation|redness|rubor +epigon|1 +(noun)|epigone|copycat|imitator|emulator|ape|aper +epigone|1 +(noun)|epigon|copycat|imitator|emulator|ape|aper +epigram|1 +(noun)|quip|saying|expression|locution +epigrammatic|1 +(adj)|aphoristic|apothegmatic|concise +epigraph|2 +(noun)|quotation|quote|citation +(noun)|inscription|lettering +epigraphy|1 +(noun)|paleography +epikeratophakia|1 +(noun)|keratoplasty|corneal graft|corneal transplant +epilachna|1 +(noun)|Epilachna|genus Epilachna|arthropod genus +epilachna varivestis|1 +(noun)|Mexican bean beetle|bean beetle|Epilachna varivestis|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +epilate|1 +(verb)|depilate|remove|take|take away|withdraw +epilating wax|1 +(noun)|depilatory|depilator|epilator +epilation|2 +(noun)|loss +(noun)|depilation|cleaning|cleansing|cleanup +epilator|1 +(noun)|depilatory|depilator|cosmetic|cosmetics +epilepsia major|1 +(noun)|grand mal|generalized seizure|epileptic seizure +epilepsia minor|1 +(noun)|petit mal|epileptic seizure +epilepsy|1 +(noun)|brain disorder|encephalopathy|brain disease +epileptic|2 +(adj)|brain disorder|encephalopathy|brain disease +(noun)|sick person|diseased person|sufferer +epileptic seizure|1 +(noun)|convulsion +epilithic|1 +(adj)|material|stuff +epilobium|1 +(noun)|Epilobium|genus Epilobium|rosid dicot genus +epilobium angustifolium|1 +(noun)|fireweed|giant willowherb|rosebay willowherb|wickup|Epilobium angustifolium|willowherb +epilobium canum canum|1 +(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet +epilobium hirsutum|1 +(noun)|hairy willowherb|codlins-and-cream|Epilobium hirsutum|willowherb +epilog|2 +(noun)|epilogue|address|speech|conclusion|end|close|closing|ending +(noun)|epilogue|conclusion|end|close|closing|ending +epilogue|2 +(noun)|epilog|address|speech|conclusion|end|close|closing|ending +(noun)|epilog|conclusion|end|close|closing|ending +epimedium|1 +(noun)|Epimedium|genus Epimedium|magnoliid dicot genus +epimedium grandiflorum|1 +(noun)|barrenwort|bishop's hat|Epimedium grandiflorum|herb|herbaceous plant +epimetheus|1 +(noun)|Epimetheus|Titan +epimorphic|1 +(adj)|metamorphic +epinephelus|1 +(noun)|Epinephelus|genus Epinephelus|fish genus +epinephelus adscensionis|1 +(noun)|rock hind|Epinephelus adscensionis|hind +epinephelus fulvus|1 +(noun)|coney|Epinephelus fulvus|grouper +epinephrin|1 +(noun)|epinephrine|adrenaline|Adrenalin|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +epinephrine|1 +(noun)|epinephrin|adrenaline|Adrenalin|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive +epipactis|1 +(noun)|Epipactis|genus Epipactis|monocot genus|liliopsid genus +epipactis gigantea|1 +(noun)|stream orchid|chatterbox|giant helleborine|Epipactis gigantea|helleborine +epipactis helleborine|1 +(noun)|Epipactis helleborine|helleborine +epipaleolithic|1 +(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period|period of time|period +epiphany|2 +(noun)|manifestation +(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day +epiphany of our lord|1 +(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day +epiphenomenon|1 +(noun)|by-product|byproduct +epiphora|1 +(noun)|epistrophe|repetition +epiphyllum|1 +(noun)|orchid cactus|cactus +epiphyseal|1 +(adj)|epiphysial|long bone|os longum +epiphysial|1 +(adj)|epiphyseal|long bone|os longum +epiphysis|2 +(noun)|long bone|os longum +(noun)|pineal gland|pineal body|epiphysis cerebri|endocrine gland|endocrine|ductless gland +epiphysis cerebri|1 +(noun)|pineal gland|pineal body|epiphysis|endocrine gland|endocrine|ductless gland +epiphyte|1 +(noun)|air plant|aerophyte|epiphytic plant|plant|flora|plant life +epiphytic|1 +(adj)|plant|flora|plant life +epiphytic plant|1 +(noun)|air plant|epiphyte|aerophyte|plant|flora|plant life +epiphytotic|1 +(adj)|epidemic +epiplexis|1 +(noun)|rhetorical device +epipremnum|1 +(noun)|Epipremnum|genus Epipremnum|monocot genus|liliopsid genus +epipremnum aureum|1 +(noun)|golden pothos|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana +epirus|1 +(noun)|Epirus|geographical area|geographic area|geographical region|geographic region +episcia|1 +(noun)|houseplant +episcia dianthiflora|1 +(noun)|lace-flower vine|Alsobia dianthiflora|Episcia dianthiflora|flower +episcleral veins|1 +(noun)|venae episclerales|venule|venula|capillary vein +episcleritis|1 +(noun)|inflammation|redness|rubor +episcopal|2 +(adj)|Episcopal|Episcopalian|Anglican Church|Anglican Communion|Church of England +(adj)|pontifical|priest +episcopal church|2 +(noun)|Episcopal Church|Episcopal Church of Scotland|Anglican Church|Anglican Communion|Church of England +(noun)|Episcopal Church|Protestant Episcopal Church|Anglican Church|Anglican Communion|Church of England +episcopal church of scotland|1 +(noun)|Episcopal Church|Episcopal Church of Scotland|Anglican Church|Anglican Communion|Church of England +episcopalian|2 +(adj)|Episcopal|Episcopalian|Anglican Church|Anglican Communion|Church of England +(noun)|Episcopalian|Protestant +episcopalianism|1 +(noun)|Episcopalianism|theological doctrine|religious doctrine +episiotomy|1 +(noun)|perineotomy +episode|4 +(noun)|happening|occurrence|natural event +(noun)|section|subdivision +(noun)|installment|instalment|broadcast|program|programme +(noun)|sequence|film|photographic film +episodic|3 +(adj)|divided +(adj)|occasional|unpredictable +(adj)|impermanent |temporary +episodic memory|1 +(noun)|personal memory|long-term memory|LTM +epispadias|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +episperm|1 +(noun)|testa|seed coat|reproductive structure +epistasis|1 +(noun)|hypostasis|organic process|biological process +epistaxis|1 +(noun)|nosebleed|bleeding|hemorrhage|haemorrhage +episteme|1 +(noun)|cognition|knowledge|noesis +epistemic|1 +(adj)|epistemological|philosophy +epistemic logic|1 +(noun)|modal logic +epistemological|1 +(adj)|epistemic|philosophy +epistemologist|1 +(noun)|philosopher +epistemology|1 +(noun)|philosophy +epistle|1 +(noun)|letter|missive +epistle of james|1 +(noun)|Epistle of James|James|book +epistle of jeremiah|1 +(noun)|Letter of Jeremiah|Epistle of Jeremiah|book +epistle of jude|1 +(noun)|Epistle of Jude|Jude|book +epistle of paul the apostle to philemon|1 +(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|book|New Testament +epistle of paul the apostle to the colossians|1 +(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|book +epistle of paul the apostle to the ephesians|1 +(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|book +epistle of paul the apostle to the galatians|1 +(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|book +epistle of paul the apostle to the philippians|1 +(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|book +epistle of paul the apostle to the romans|1 +(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|book +epistle of paul the apostle to titus|1 +(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|book +epistle to philemon|1 +(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|book|New Testament +epistle to the colossians|1 +(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|book +epistle to the ephesians|1 +(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|book +epistle to the galatians|1 +(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|book +epistle to the hebrews|1 +(noun)|Epistle to the Hebrews|Hebrews|book +epistle to the philippians|1 +(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|book +epistle to the romans|1 +(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|book +epistle to titus|1 +(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|book +epistolary|1 +(adj)|epistolatory|informal +epistolatory|1 +(adj)|epistolary|informal +epistrophe|1 +(noun)|epiphora|repetition +epitaph|2 +(noun)|inscription|lettering +(noun)|memorial|commemoration|remembrance +epitaxy|1 +(noun)|growing +epithelial|1 +(adj)|animal tissue +epithelial cell|1 +(noun)|somatic cell|vegetative cell +epithelial duct|1 +(noun)|duct|canal|channel|passage|passageway +epithelial tissue|1 +(noun)|epithelium|animal tissue +epitheliod|1 +(adj)|animal tissue +epithelioma|1 +(noun)|skin cancer +epithelium|1 +(noun)|epithelial tissue|animal tissue +epithet|2 +(noun)|name|defamation|calumny|obloquy|traducement|hatchet job +(noun)|word picture|word-painting|delineation|depiction|picture|characterization|characterisation +epitome|2 +(noun)|prototype|paradigm|image|model|example +(noun)|outline|synopsis|abstract|precis +epitomise|1 +(verb)|typify|epitomize|typify|symbolize|symbolise|stand for|represent +epitomize|1 +(verb)|typify|epitomise|typify|symbolize|symbolise|stand for|represent +epitrochoidal engine|1 +(noun)|Wankel engine|Wankel rotary engine|rotary engine +epizoan|2 +(adj)|ectozoan|parasite +(noun)|ectoparasite|ectozoan|ectozoon|epizoon|parasite +epizoic|1 +(adj)|epizoic +epizoon|1 +(noun)|ectoparasite|ectozoan|ectozoon|epizoan|parasite +epizootic|1 +(adj)|epidemic +epkwele|1 +(noun)|Equatorial Guinea monetary unit +epoch|3 +(noun)|era|time period|period of time|period +(noun)|date of reference|date +(noun)|geological time|geologic time +epoch-making|1 +(adj)|epochal|significant |important +epochal|1 +(adj)|epoch-making|significant |important +epona|1 +(noun)|Epona|Celtic deity +eponym|2 +(noun)|name +(noun)|name +eponymic|1 +(adj)|eponymous|name +eponymous|1 +(adj)|eponymic|name +epos|2 +(noun)|poetry|poesy|verse +(noun)|epic poem|heroic poem|epic|poem|verse form +epoxy|2 +(noun)|epoxy resin|epoxy glue|synthetic resin +(verb)|glue|paste +epoxy glue|1 +(noun)|epoxy|epoxy resin|synthetic resin +epoxy resin|1 +(noun)|epoxy|epoxy glue|synthetic resin +eprom|1 +(noun)|erasable programmable read-only memory|EPROM|read-only memory|ROM|read-only storage|fixed storage +epsilon|1 +(noun)|letter|letter of the alphabet|alphabetic character +epsilon aurigae|1 +(noun)|Epsilon Aurigae|binary star|binary|double star +epsilon toxin|1 +(noun)|Clostridium perfringens epsilon toxin|bacterial toxin +epsom salts|2 +(noun)|Epsom salts|bitter salts|magnesium sulfate +(noun)|Epsom salts|purgative|cathartic|physic|aperient +epstein|1 +(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor|sculpturer|carver|statue maker +epstein-barr virus|1 +(noun)|Epstein-Barr virus|EBV|herpes|herpes virus +eptatretus|1 +(noun)|hagfish|hag|slime eels +eptesicus|1 +(noun)|Eptesicus|genus Eptesicus|mammal genus +eptesicus fuscus|1 +(noun)|big brown bat|Eptesicus fuscus|vespertilian bat|vespertilionid +eptesicus serotinus|1 +(noun)|serotine|European brown bat|Eptesicus serotinus|vespertilian bat|vespertilionid +eq|1 +(noun)|equivalent|equivalent weight|combining weight|atomic weight|relative atomic mass +equable|2 +(adj)|temperate +(adj)|even-tempered|good-tempered|placid|good-natured +equador laurel|1 +(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree|flowering tree +equal|6 +(adj)|equal |close|tight|coequal|coordinate|equalized|equalised|equidistant|equilateral|equivalent|tantamount|even|fifty-fifty|half-and-half|isochronal|isochronous|isometric|isometrical|isothermal|quits|tied|even|level|balanced|commensurate|comparable|same +(adj)|like |equivalent|same +(noun)|peer|match|compeer|person|individual|someone|somebody|mortal|human|soul +(verb)|be +(verb)|touch|rival|match|compete|vie|contend +(verb)|match|equalize|equalise|equate|change|alter|modify +equal-area map projection|1 +(noun)|equal-area projection|map projection +equal-area projection|1 +(noun)|equal-area map projection|map projection +equal opportunity|1 +(noun)|civil right|civil rights +equal protection of the laws|1 +(noun)|civil right|civil rights +equal temperament|1 +(noun)|temperament +equal to|1 +(adj)|adequate to|capable|up to|adequate +equalisation|1 +(noun)|equalization|leveling|deed|feat|effort|exploit +equalise|2 +(verb)|equalize|get even|score|hit|tally|rack up +(verb)|equal|match|equalize|equate|change|alter|modify +equalised|1 +(adj)|equalized|equal +equaliser|2 +(noun)|equalizer|electronic equipment +(noun)|counterweight|counterbalance|counterpoise|balance|equalizer|weight +equalitarian|1 +(noun)|egalitarian|moralist +equalitarianism|1 +(noun)|egalitarianism|doctrine|philosophy|philosophical system|school of thought|ism +equality|2 +(noun)|sameness +(noun)|equivalence|equation|par|status|position +equality before the law|1 +(noun)|human right +equality state|1 +(noun)|Wyoming|Equality State|WY|American state +equalization|1 +(noun)|equalisation|leveling|deed|feat|effort|exploit +equalize|2 +(verb)|equalise|get even|score|hit|tally|rack up +(verb)|equal|match|equalise|equate|change|alter|modify +equalized|1 +(adj)|equalised|equal +equalizer|3 +(noun)|equaliser|electronic equipment +(noun)|counterweight|counterbalance|counterpoise|balance|equaliser|weight +(noun)|score +equalizing dividend|1 +(noun)|dividend +equally|2 +(adv)|as|every bit +(adv)|evenly +equals sign|1 +(noun)|sign +equanil|1 +(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +equanimity|1 +(noun)|composure|calm|calmness|disposition|temperament +equanimous|1 +(adj)|collected|poised|self-collected|self-contained|self-possessed|composed +equatability|1 +(noun)|equality +equate|3 +(verb)|compare|liken|study|consider +(verb)|correspond|equal|be +(verb)|equal|match|equalize|equalise|change|alter|modify +equating|1 +(noun)|equation|equalization|equalisation|leveling +equation|3 +(noun)|mathematical statement +(noun)|equality|equivalence|par|status|position +(noun)|equating|equalization|equalisation|leveling +equator|2 +(noun)|great circle +(noun)|circle +equatorial|3 +(adj)|circle +(adj)|great circle +(adj)|equatorial |tropical|tropic|pantropical|pantropic +equatorial current|1 +(noun)|ocean current +equatorial guinea|1 +(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country|African nation +equatorial guinea monetary unit|1 +(noun)|Equatorial Guinea monetary unit|monetary unit +equerry|2 +(noun)|official|functionary +(noun)|attendant|attender|tender +equestrian|3 +(adj)|male aristocrat +(adj)|travel|traveling|travelling +(noun)|horseman|horseback rider|rider +equestrian sport|1 +(noun)|riding|horseback riding|equitation +equetus|1 +(noun)|Equetus|genus Equetus|fish genus +equetus lanceolatus|1 +(noun)|jackknife-fish|Equetus lanceolatus|drum|drumfish +equetus pulcher|1 +(noun)|striped drum|Equetus pulcher|drum|drumfish +equiangular|1 +(adj)|angular |angulate +equiangular triangle|1 +(noun)|equilateral triangle|triangle|trigon|trilateral|regular polygon +equid|1 +(noun)|equine|odd-toed ungulate|perissodactyl|perissodactyl mammal +equidae|1 +(noun)|Equidae|family Equidae|mammal family +equidistant|1 +(adj)|equal +equidsitribution|1 +(noun)|distribution|statistical distribution +equilateral|1 +(adj)|equal +equilateral triangle|1 +(noun)|equiangular triangle|triangle|trigon|trilateral|regular polygon +equilibrate|2 +(verb)|change state|turn +(verb)|balance|equilibrize|equilibrise|match|fit +equilibration|1 +(noun)|stabilization|stabilisation +equilibrise|1 +(verb)|balance|equilibrate|equilibrize|match|fit +equilibrium|3 +(noun)|chemical equilibrium|chemical reaction|reaction +(noun)|situation|state of affairs +(noun)|balance|equipoise|counterbalance|structure|construction +equilibrium constant|1 +(noun)|constant +equilibrium law|1 +(noun)|law of chemical equilibrium|law|law of nature +equilibrize|1 +(verb)|balance|equilibrate|equilibrise|match|fit +equine|3 +(adj)|equid +(adj)|mammal family +(noun)|equid|odd-toed ungulate|perissodactyl|perissodactyl mammal +equine distemper|1 +(noun)|strangles|distemper +equine encephalitis|1 +(noun)|equine encephalomyelitis|encephalitis|cephalitis|phrenitis +equine encephalomyelitis|1 +(noun)|equine encephalitis|encephalitis|cephalitis|phrenitis +equinoctial|3 +(adj)|great circle +(adj)|cosmic time +(noun)|celestial equator|equinoctial circle|equinoctial line|great circle +equinoctial circle|1 +(noun)|celestial equator|equinoctial line|equinoctial|great circle +equinoctial line|1 +(noun)|celestial equator|equinoctial circle|equinoctial|great circle +equinoctial point|1 +(noun)|equinox|celestial point +equinoctial storm|1 +(noun)|line storm|rainstorm +equinoctial year|1 +(noun)|solar year|tropical year|astronomical year|year +equinox|2 +(noun)|cosmic time +(noun)|equinoctial point|celestial point +equip|2 +(verb)|fit|fit out|outfit|supply|provide|render|furnish +(verb)|enable +equipage|2 +(noun)|materiel|equipment +(noun)|carriage|rig|horse-drawn vehicle +equipment|1 +(noun)|instrumentality|instrumentation +equipment casualty|1 +(noun)|damage|casualty +equipment failure|1 +(noun)|breakdown|failure +equipoise|1 +(noun)|balance|equilibrium|counterbalance|structure|construction +equipoised|1 +(adj)|ambidextrous |two-handed +equipotent|1 +(adj)|potent |strong +equipped|5 +(adj)|equipped |equipt|accoutered|accoutred|armored|panoplied|helmeted|outfitted|prepared|transistorized|transistorised|visored +(adj)|furnished |appointed|furnished with|provided with|supplied with|stocked|stocked with|volumed|well-appointed|well-found|fitted out|outfitted +(adj)|fitted out|seaworthy +(adj)|fitted out|prepared +(adj)|weaponed|armed +equipping|1 +(noun)|arming|armament|mobilization|mobilisation|militarization|militarisation +equiprobable|1 +(adj)|probable |likely|plausible +equipt|1 +(adj)|equipped |accoutered|accoutred|armored|panoplied|helmeted|outfitted|prepared|transistorized|transistorised|visored +equisetaceae|1 +(noun)|Equisetaceae|family Equisetaceae|horsetail family|fern family +equisetales|1 +(noun)|Equisetales|order Equisetales|plant order +equisetatae|1 +(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class +equisetum|1 +(noun)|Equisetum|genus Equisetum|fern genus +equisetum arvense|1 +(noun)|common horsetail|field horsetail|Equisetum arvense|horsetail +equisetum fluviatile|1 +(noun)|swamp horsetail|water horsetail|Equisetum fluviatile|horsetail +equisetum hyemale|1 +(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail +equisetum hyemale robustum|1 +(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail +equisetum palustre|1 +(noun)|marsh horsetail|Equisetum palustre|horsetail +equisetum robustum|1 +(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail +equisetum sylvaticum|1 +(noun)|wood horsetail|Equisetum Sylvaticum|horsetail +equisetum variegatum|1 +(noun)|variegated horsetail|variegated scouring rush|Equisetum variegatum|horsetail +equitable|1 +(adj)|equitable |just|evenhanded +equitation|1 +(noun)|riding|horseback riding|sport|athletics +equity|3 +(noun)|assets +(noun)|interest|stake +(noun)|fairness|justice|justness +equity credit line|1 +(noun)|home loan|home equity credit|home equity loan|consumer credit|loan +equivalence|3 +(noun)|equality|equation|par|status|position +(noun)|equality +(noun)|comparison|compare|comparability|likeness|alikeness|similitude +equivalent|4 +(adj)|like |equal|same +(adj)|tantamount|equal +(noun)|cognition|knowledge|noesis +(noun)|equivalent weight|combining weight|eq|atomic weight|relative atomic mass +equivalent-binary-digit factor|1 +(noun)|divisor|factor +equivalent weight|1 +(noun)|equivalent|combining weight|eq|atomic weight|relative atomic mass +equivalent word|1 +(noun)|synonym|word +equivocal|3 +(adj)|equivocal |ambiguous|ambivalent|double|forked|evasive|indeterminate|ambiguous +(adj)|questionable +(adj)|inconclusive +equivocally|1 +(adv)|ambiguously +equivocalness|1 +(noun)|ambiguity|unclearness +equivocate|1 +(verb)|beat around the bush|tergiversate|prevaricate|palter|misinform|mislead +equivocation|3 +(noun)|evasion|misrepresentation|deceit|deception +(noun)|prevarication|evasiveness|untruthfulness|ambiguity|equivocalness +(noun)|tergiversation|falsification|misrepresentaation +equivocator|1 +(noun)|hedger|respondent|responder|answerer +equus|1 +(noun)|Equus|genus Equus|mammal genus +equus asinus|2 +(noun)|African wild ass|Equus asinus|wild ass +(noun)|domestic ass|donkey|Equus asinus|ass +equus burchelli|1 +(noun)|common zebra|Burchell's zebra|Equus Burchelli|zebra +equus caballus|1 +(noun)|horse|Equus caballus|equine|equid +equus caballus gomelini|1 +(noun)|tarpan|Equus caballus gomelini|wild horse +equus caballus przevalskii|1 +(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse +equus caballus przewalskii|1 +(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse +equus grevyi|1 +(noun)|grevy's zebra|Equus grevyi|zebra +equus hemionus|1 +(noun)|onager|Equus hemionus|wild ass +equus hemionus hemionus|1 +(noun)|chigetai|dziggetai|Equus hemionus hemionus|onager|Equus hemionus +equus kiang|1 +(noun)|kiang|Equus kiang|wild ass +equus quagga|1 +(noun)|quagga|Equus quagga|equine|equid +equus zebra zebra|1 +(noun)|mountain zebra|Equus zebra zebra|zebra +er|2 +(noun)|erbium|Er|atomic number 68|metallic element|metal +(noun)|emergency room|ER|hospital room +era|2 +(noun)|epoch|time period|period of time|period +(noun)|geological era|geological time|geologic time +eradicable|1 +(adj)|eradicable |delible|effaceable|erasable|exterminable|extirpable|obliterable|removable +eradicate|2 +(verb)|eliminate|annihilate|extinguish|wipe out|decimate|carry off|kill +(verb)|uproot|extirpate|exterminate|destroy|destruct +eradication|1 +(noun)|obliteration|destruction|demolition|wipeout +eradicator|1 +(noun)|exterminator|terminator|killer|slayer +eragrostic abyssinica|1 +(noun)|teff|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass|bay grass +eragrostis|1 +(noun)|Eragrostis|genus Eragrostis|monocot genus|liliopsid genus +eragrostis curvula|1 +(noun)|weeping love grass|African love grass|Eragrostis curvula|love grass|bay grass +eragrostis tef|1 +(noun)|teff|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass|bay grass +eranthis|1 +(noun)|Eranthis|genus Eranthis|magnoliid dicot genus +eranthis hyemalis|1 +(noun)|winter aconite|Eranthis hyemalis|herb|herbaceous plant +erasable|1 +(adj)|effaceable|eradicable +erasable programmable read-only memory|1 +(noun)|EPROM|read-only memory|ROM|read-only storage|fixed storage +erase|3 +(verb)|wipe out|kill +(verb)|rub out|score out|efface|wipe off|delete|cancel +(verb)|delete|take away|take out +eraser|1 +(noun)|implement +erasmian|1 +(adj)|Erasmian|theologian|theologist|theologizer|theologiser|humanist +erasmus|1 +(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian|theologist|theologizer|theologiser|humanist +erastianism|1 +(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine|religious doctrine +erasure|3 +(noun)|correction +(noun)|area|expanse|surface area +(noun)|expunction|expunging|deletion +erato|1 +(noun)|Erato|Muse +eratosthenes|1 +(noun)|Eratosthenes|astronomer|uranologist|stargazer|mathematician +erb's palsy|1 +(noun)|Erb's palsy|Erb-Duchenne paralysis|paralysis|palsy +erb-duchenne paralysis|1 +(noun)|Erb's palsy|Erb-Duchenne paralysis|paralysis|palsy +erbium|1 +(noun)|Er|atomic number 68|metallic element|metal +ercilla|1 +(noun)|Ercilla|genus Ercilla|caryophylloid dicot genus +erebus|1 +(noun)|Erebus|Greek deity +erechtites hieracifolia|1 +(noun)|fireweed|Erechtites hieracifolia|weed +erect|4 +(adj)|erect |vertical|upright|erectile|fastigiate|orthostatic|passant|rampant|rearing|standing|stand-up|statant|straight|unbent|unbowed|upright|straight-backed +(adj)|tumid|hard +(verb)|raise|rear|set up|put up|construct|build|make +(verb)|rear|raise|lift|elevate|get up|bring up +erect bugle|1 +(noun)|blue bugle|Ajuga genevensis|bugle|bugleweed +erectile|2 +(adj)|erect |vertical|upright +(adj)|cavernous|expansive +erectile dysfunction|1 +(noun)|male erecticle dysfunction|ED|impotence|impotency|dysfunction|disfunction +erectile organ|1 +(noun)|organ +erectile tissue|1 +(noun)|animal tissue +erecting|1 +(noun)|erection|construction|building +erecting prism|1 +(noun)|prism|optical prism +erection|3 +(noun)|hard-on|sexual arousal +(noun)|structure|construction +(noun)|erecting|construction|building +erectly|1 +(adv)|straight-backed +erectness|2 +(noun)|uprightness|stance +(noun)|verticality|verticalness|uprightness|position|spatial relation +eremite|1 +(noun)|religious +eremitic|3 +(adj)|eremitic |eremitical|religious +(adj)|anchoritic|eremitical|hermitic|hermitical|unworldly +(adj)|eremitical|lone|solitary|unsocial +eremitical|3 +(adj)|eremitic |religious +(adj)|anchoritic|eremitic|hermitic|hermitical|unworldly +(adj)|eremitic|lone|solitary|unsocial +eremitism|1 +(noun)|monasticism +eresh-kigal|2 +(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity +(noun)| +ereshkigal|1 +(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity +ereshkigel|1 +(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity +erethism|1 +(noun)|abnormality|abnormalcy|abnormal condition +erethizon|1 +(noun)|Erethizon|genus Erethizon|mammal genus +erethizon dorsatum|1 +(noun)|Canada porcupine|Erethizon dorsatum|New World porcupine +erethizontidae|1 +(noun)|Erethizontidae|family Erethizontidae|mammal family +eretmochelys|1 +(noun)|Eretmochelys|genus Eretmochelys|reptile genus +eretmochelys imbricata|1 +(noun)|hawksbill turtle|hawksbill|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle|marine turtle +erewhon|1 +(noun)|Erewhon|Utopia|Zion|Sion +erg|1 +(noun)|work unit|heat unit|energy unit +ergocalciferol|1 +(noun)|vitamin D|calciferol|viosterol|cholecarciferol|D|fat-soluble vitamin +ergodic|1 +(adj)|random +ergodicity|1 +(noun)|randomness|haphazardness|stochasticity|noise +ergometer|1 +(noun)|dynamometer|measuring instrument|measuring system|measuring device +ergonomic|1 +(adj)|engineering|engineering science|applied science|technology +ergonomics|1 +(noun)|biotechnology|bioengineering|engineering|engineering science|applied science|technology +ergonovine|1 +(noun)|Ergotrate Maleate|alkaloid +ergosterol|1 +(noun)|sterol|steroid alcohol +ergot|2 +(noun)|plant disease +(noun)|Claviceps purpurea|fungus +ergotamine|1 +(noun)|alkaloid +ergotic|1 +(adj)|fungus +ergotism|1 +(noun)|poisoning|toxic condition|intoxication +ergotrate maleate|1 +(noun)|ergonovine|Ergotrate Maleate|alkaloid +ergotropic|1 +(adj)|tropism +ergotropism|1 +(noun)|tropism +erianthus|1 +(noun)|Erianthus|genus Erianthus|monocot genus|liliopsid genus +erianthus ravennae|1 +(noun)|Ravenna grass|wool grass|Erianthus ravennae|plume grass +eric arthur blair|1 +(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer|author +eric blair|1 +(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer|author +erica|1 +(noun)|true heath|heath +erica arborea|1 +(noun)|tree heath|briar|brier|Erica arborea|erica|true heath +erica carnea|1 +(noun)|winter heath|spring heath|Erica carnea|erica|true heath +erica cinerea|1 +(noun)|bell heather|heather bell|fine-leaved heath|Erica cinerea|erica|true heath +erica jong|1 +(noun)|Jong|Erica Jong|writer|author +erica lusitanica|1 +(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica|true heath +erica perspicua|1 +(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica|true heath +erica tetralix|1 +(noun)|cross-leaved heath|bell heather|Erica tetralix|erica|true heath +erica vagans|1 +(noun)|Cornish heath|Erica vagans|erica|true heath +ericaceae|1 +(noun)|Ericaceae|family Ericaceae|heath family|dilleniid dicot family|Ericales|order Ericales +ericales|1 +(noun)|Ericales|order Ericales|plant order +erich mendelsohn|1 +(noun)|Mendelsohn|Erich Mendelsohn|architect|designer +erich von stroheim|1 +(noun)|Stroheim|Erich von Stroheim|actor|histrion|player|thespian|role player +eridanus|1 +(noun)|Eridanus|constellation +erie|3 +(noun)|Erie|Iroquois +(noun)|Lake Erie|Erie|lake +(noun)|Erie|city|metropolis|urban center|port of entry|point of entry +erie canal|1 +(noun)|Erie Canal|canal +erigeron|1 +(noun)|Erigeron|genus Erigeron|asterid dicot genus +erigeron acer|1 +(noun)|blue fleabane|Erigeron acer|fleabane +erigeron annuus|1 +(noun)|daisy fleabane|Erigeron annuus|fleabane +erigeron aurantiacus|1 +(noun)|orange daisy|orange fleabane|Erigeron aurantiacus|fleabane +erigeron canadensis|1 +(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed +erigeron divergens|1 +(noun)|spreading fleabane|Erigeron divergens|fleabane +erigeron glaucous|1 +(noun)|seaside daisy|beach aster|Erigeron glaucous|fleabane +erigeron philadelphicus|1 +(noun)|Philadelphia fleabane|Erigeron philadelphicus|fleabane +erigeron pulchellus|1 +(noun)|robin's plantain|Erigeron pulchellus|fleabane +erigeron speciosus|1 +(noun)|showy daisy|Erigeron speciosus|fleabane +erignathus|1 +(noun)|Erignathus|genus Erignathus|mammal genus +erignathus barbatus|1 +(noun)|bearded seal|squareflipper square flipper|Erignathus barbatus|earless seal|true seal|hair seal +erigonum fasciculatum|1 +(noun)|wild buckwheat|California buckwheat|Erigonum fasciculatum|eriogonum +erik adolf von willebrand|1 +(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor|doc|physician|MD|Dr.|medico +erik alfred leslie satie|1 +(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer +erik axel karlfeldt|1 +(noun)|Karlfeldt|Erik Axel Karlfeldt|poet +erik satie|1 +(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer +erik von willebrand|1 +(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor|doc|physician|MD|Dr.|medico +erik weisz|1 +(noun)|Houdini|Harry Houdini|Erik Weisz|sorcerer|magician|wizard|necromancer +erinaceidae|1 +(noun)|Erinaceidae|family Erinaceidae|mammal family +erinaceus|1 +(noun)|Erinaceus|genus Erinaceus|mammal genus +erinaceus europaeus|1 +(noun)|hedgehog|Erinaceus europaeus|Erinaceus europeaeus|insectivore +erinaceus europeaeus|1 +(noun)|hedgehog|Erinaceus europaeus|Erinaceus europeaeus|insectivore +eringo|1 +(noun)|eryngo|subshrub|suffrutex +erinyes|1 +(noun)|Fury|Eumenides|Erinyes|mythical monster|mythical creature +eriobotrya|1 +(noun)|Eriobotrya|genus Eriobotrya|rosid dicot genus +eriobotrya japonica|1 +(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree +eriocaulaceae|1 +(noun)|Eriocaulaceae|family Eriocaulaceae|pipewort family|monocot family|liliopsid family +eriocaulon|1 +(noun)|Eriocaulon|genus Eriocaulon|monocot genus|liliopsid genus +eriocaulon aquaticum|1 +(noun)|pipewort|Eriocaulon aquaticum|aquatic plant|water plant|hydrophyte|hydrophytic plant +eriodictyon|1 +(noun)|Eriodictyon|genus Eriodictyon|asterid dicot genus +eriodictyon californicum|1 +(noun)|yerba santa|Eriodictyon californicum|shrub|bush +eriogonum|1 +(noun)|subshrub|suffrutex +eriogonum allenii|1 +(noun)|umbrella plant|Eriogonum allenii|eriogonum +eriophorum|1 +(noun)|Eriophorum|genus Eriophorum|monocot genus|liliopsid genus +eriophorum angustifolium|1 +(noun)|common cotton grass|Eriophorum angustifolium|cotton grass|cotton rush +eriophyllum|1 +(noun)|Eriophyllum|genus Eriophyllum|asterid dicot genus +eriophyllum lanatum|1 +(noun)|golden yarrow|Eriophyllum lanatum|woolly sunflower +eriophyllum wallacei|1 +(noun)|woolly daisy|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower|wild flower +eriosoma|1 +(noun)|Eriosoma|genus Eriosoma|arthropod genus +eriosoma lanigerum|1 +(noun)|woolly apple aphid|American blight|Eriosoma lanigerum|woolly aphid|woolly plant louse +eris|1 +(noun)|Eris|Greek deity +eristic|3 +(adj)|eristical|argumentative +(noun)|disputant|controversialist|person|individual|someone|somebody|mortal|human|soul +(noun)|art|artistry|prowess +eristical|1 +(adj)|eristic|argumentative +erithacus|1 +(noun)|Erithacus|genus Erithacus|bird genus +erithacus rubecola|1 +(noun)|robin|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush +erithacus svecicus|1 +(noun)|bluethroat|Erithacus svecicus|thrush +eritrea|1 +(noun)|Eritrea|State of Eritrea|African country|African nation +eritrean|2 +(adj)|Eritrean|African country|African nation +(noun)|Eritrean|Ethiopian +erivan|1 +(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital +erlang|1 +(noun)|Erlang|telephone unit +erle stanley gardner|1 +(noun)|Gardner|Erle Stanley Gardner|writer|author +erlenmeyer|1 +(noun)|Erlenmeyer|Richard August Carl Emil Erlenmeyer|chemist +erlenmeyer flask|1 +(noun)|Erlenmeyer flask|flask +ermine|2 +(noun)|fur|pelt +(noun)|shorttail weasel|Mustela erminea|weasel +ern|1 +(noun)|erne|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle +erne|1 +(noun)|ern|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle +ernest bevin|1 +(noun)|Bevin|Ernest Bevin|statesman|solon|national leader +ernest bloch|1 +(noun)|Bloch|Ernest Bloch|composer +ernest hemingway|1 +(noun)|Hemingway|Ernest Hemingway|writer|author +ernest orlando lawrence|1 +(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist +ernest rutherford|1 +(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist +ernest solvay|1 +(noun)|Solvay|Ernest Solvay|chemist|industrialist +ernest thomas sinton walton|1 +(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist +ernest walton|1 +(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist +ernestine schumann-heink|1 +(noun)|Schumann-Heink|Ernestine Schumann-Heink|contralto +ernesto guevara|1 +(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist|revolutionary|subversive|subverter +ernst|1 +(noun)|Ernst|Max Ernst|painter +ernst boris chain|1 +(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist +ernst cassirer|1 +(noun)|Cassirer|Ernst Cassirer|philosopher +ernst heinrich haeckel|1 +(noun)|Haeckel|Ernst Heinrich Haeckel|biologist|life scientist|philosopher +ernst heinrich weber|1 +(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist +ernst lubitsch|1 +(noun)|Lubitsch|Ernst Lubitsch|film maker|filmmaker|film producer|movie maker +ernst ludwig kirchner|1 +(noun)|Kirchner|Ernst Ludwig Kirchner|painter +ernst mach|1 +(noun)|Mach|Ernst Mach|physicist|philosopher +ernst theodor amadeus hoffmann|1 +(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer|author +ernst theodor wilhelm hoffmann|1 +(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer|author +ernst werner von siemens|1 +(noun)|Siemens|Ernst Werner von Siemens|electrical engineer +erode|2 +(verb)|gnaw|gnaw at|eat at|wear away|decay|crumble|delapidate +(verb)|eat away|fret|damage +eroded|1 +(adj)|scoured|worn +eroding|1 +(noun)|erosion|eating away|wearing|wearing away|geological process|geologic process +erodium|1 +(noun)|Erodium|genus Erodium|rosid dicot genus +erodium cicutarium|1 +(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +erodium moschatum|1 +(noun)|musk clover|muskus grass|white-stemmed filaree|Erodium moschatum|storksbill|heron's bill +erodium texanum|1 +(noun)|Texas storksbill|Erodium texanum|storksbill|heron's bill +erogenous|1 +(adj)|sensitive +erogenous zone|1 +(noun)|area|region +erolia|1 +(noun)|Erolia|genus Erolia|bird genus +erolia alpina|1 +(noun)|red-backed sandpiper|dunlin|Erolia alpina|sandpiper +erolia minutilla|1 +(noun)|least sandpiper|stint|Erolia minutilla|sandpiper +eros|1 +(noun)|Eros|Greek deity +erose|1 +(adj)|jagged|jaggy|notched|toothed|rough +erose leaf|1 +(noun)|leaf|leafage|foliage +erosion|4 +(noun)|eroding|eating away|wearing|wearing away|geological process|geologic process +(noun)|environmental condition +(noun)|decline|diminution +(noun)|corrosion|corroding|chemical process|chemical change|chemical action +erosive|2 +(adj)|destructive +(adj)|caustic|corrosive|vitriolic|destructive +erotic|1 +(adj)|titillating|sexy +erotica|1 +(noun)|pornography|porno|porn|smut|creation|creative activity +eroticism|2 +(noun)|erotism|sexual arousal +(noun)|amorousness|erotism|sexiness|amativeness|sexual desire|concupiscence|physical attraction +erotism|2 +(noun)|eroticism|sexual arousal +(noun)|amorousness|eroticism|sexiness|amativeness|sexual desire|concupiscence|physical attraction +err|2 +(verb)|mistake|slip +(verb)|stray|drift|travel|go|move|locomote +errancy|2 +(noun)|unacceptability|unacceptableness +(noun)|fallibility +errand|1 +(noun)|trip +errand boy|1 +(noun)|messenger boy|messenger|courier +errant|2 +(adj)|fallible +(adj)|uncontrolled +erratic|3 +(adj)|planetary|wandering|unsettled +(adj)|fickle|mercurial|quicksilver|changeable |changeful +(adj)|temperamental|unreliable +erratically|1 +(adv)|unpredictably +erratum|1 +(noun)|misprint|typographical error|typo|literal error|literal|error|mistake +erreminise|1 +(verb)|feminize|feminise|effeminize|womanize|change|alter|modify +errhine|1 +(adj)|causative +erring|1 +(adj)|error-prone|fallible +erroneous|1 +(adj)|inaccurate|incorrect +erroneous belief|1 +(noun)|error|misconception +erroneously|1 +(adv)|mistakenly +erroneousness|1 +(noun)|error|incorrectness|wrongness +error|7 +(noun)|mistake|fault|nonaccomplishment|nonachievement +(noun)|erroneousness|incorrectness|wrongness +(noun)|erroneous belief|misconception +(noun)|misplay|failure +(noun)|wrongdoing|evil|evilness +(noun)|computer error|happening|occurrence|natural event +(noun)|mistake|misstatement +error-prone|1 +(adj)|erring|fallible +error correction code|1 +(noun)|ECC|code|computer code +errorless|1 +(adj)|perfect +ersatz|2 +(adj)|substitute|artificial |unreal +(noun)|substitute|replacement +erse|1 +(noun)|Gaelic|Goidelic|Erse|Celtic|Celtic language +erskine caldwell|1 +(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer|author +erskine preston caldwell|1 +(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer|author +erst|1 +(adv)|once|formerly|at one time|erstwhile +erstwhile|2 +(adj)|former|once|onetime|quondam|sometime|past +(adv)|once|formerly|at one time|erst +ert|1 +(noun)|Earth-received time|ERT|coordinated universal time|UTC +eruca|1 +(noun)|Eruca|genus Eruca|dilleniid dicot genus +eruca sativa|1 +(noun)|rocket|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +eruca vesicaria sativa|1 +(noun)|rocket|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +eruct|2 +(verb)|spew|spew out|discharge|expel|eject|release +(verb)|burp|bubble|belch|emit|breathe|pass off +eructation|2 +(noun)|eruption|extravasation|action|activity|activeness +(noun)|belch|belching|burp|burping|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +erudite|1 +(adj)|learned|scholarly +eruditely|1 +(adv)|learnedly +eruditeness|1 +(noun)|erudition|learnedness|learning|scholarship|encyclopedism|encyclopaedism|education +erudition|1 +(noun)|eruditeness|learnedness|learning|scholarship|encyclopedism|encyclopaedism|education +erupt|8 +(verb)|break out|begin|start +(verb)|irrupt|flare up|flare|break open|burst out|intensify|deepen +(verb)|ignite|catch fire|take fire|combust|conflagrate|change state|turn +(verb)|come out|break through|push through|appear +(verb)|belch|extravasate|explode|burst +(verb)|break|burst|express emotion|express feelings +(verb)|appear +(verb)|recrudesce|break out|afflict|trouble|ail|pain +eruption|6 +(noun)|volcanic eruption|discharge +(noun)|symptom +(noun)|eructation|extravasation|action|activity|activeness +(noun)|outbreak|irruption|happening|occurrence|natural event +(noun)|bang|clap|blast|loud noise|noise +(noun)|emergence|egress|issue +eruptive|3 +(adj)|volcanic|extrusive +(adj)|irruptive|plutonic|intrusive +(adj)|active +erving|1 +(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward +erwin panofsky|1 +(noun)|Panofsky|Erwin Panofsky|art historian +erwin rommel|1 +(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal +erwin schrodinger|1 +(noun)|Schrodinger|Erwin Schrodinger|nuclear physicist +erwinia|1 +(noun)|enteric bacteria|enterobacteria|enterics +eryngium|1 +(noun)|Eryngium|genus Eryngium|rosid dicot genus +eryngium aquaticum|1 +(noun)|button snakeroot|Eryngium aquaticum|herb|herbaceous plant +eryngium maritimum|1 +(noun)|sea holly|sea holm|sea eryngium|Eryngium maritimum|shrub|bush +eryngium yuccifolium|1 +(noun)|rattlesnake master|rattlesnake's master|button snakeroot|Eryngium yuccifolium|perennial +eryngo|1 +(noun)|eringo|subshrub|suffrutex +erysimum|1 +(noun)|Erysimum|genus Erysimum|dilleniid dicot genus +erysimum allionii|1 +(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower +erysimum arkansanum|1 +(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower +erysimum asperum|1 +(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower +erysimum cheiranthoides|1 +(noun)|wormseed mustard|Erysimum cheiranthoides|weed +erysimum cheiri|1 +(noun)|wallflower|Cheiranthus cheiri|Erysimum cheiri|flower +erysipelas|1 +(noun)|Saint Anthony's fire +erysiphaceae|1 +(noun)|Erysiphaceae|family Erysiphaceae|fungus family +erysiphales|1 +(noun)|Erysiphales|order Erysiphales|fungus order +erysiphe|1 +(noun)|Erysiphe|genus Erysiphe|fungus genus +erythema|1 +(noun)|erythroderma +erythema multiforme|1 +(noun)|erythema +erythema nodosum|1 +(noun)|erythema +erythema nodosum leprosum|1 +(noun)|ENL|erythema nodosum +erythema solare|1 +(noun)|sunburn|erythema|first-degree burn +erythematous|1 +(adj)|erythroderma +erythrina|1 +(noun)|coral tree|tree +erythrina caffra|1 +(noun)|kaffir boom|Cape kafferboom|Erythrina caffra|coral tree|erythrina +erythrina corallodendrum|1 +(noun)|coral bean tree|Erythrina corallodendrum|coral tree|erythrina +erythrina crista-galli|1 +(noun)|ceibo|crybaby tree|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree|erythrina +erythrina indica|1 +(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree|erythrina +erythrina lysistemon|1 +(noun)|kaffir boom|Transvaal kafferboom|Erythrina lysistemon|coral tree|erythrina +erythrina variegata|1 +(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree|erythrina +erythrina vespertilio|1 +(noun)|cork tree|Erythrina vespertilio|coral tree|erythrina +erythrite|1 +(noun)|cobalt bloom|mineral +erythroblast|1 +(noun)|embryonic cell|formative cell +erythroblastosis|1 +(noun)|blood disease|blood disorder +erythroblastosis fetalis|1 +(noun)|anemia|anaemia +erythrocebus|1 +(noun)|Erythrocebus|genus Erythrocebus|mammal genus +erythrocebus patas|1 +(noun)|patas|hussar monkey|Erythrocebus patas|Old World monkey|catarrhine +erythrocin|1 +(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +erythrocyte|1 +(noun)|red blood cell|RBC|blood cell|blood corpuscle|corpuscle +erythrocyte sedimentation rate|1 +(noun)|ESR|sedimentation rate|sed rate|rate +erythrocytolysin|1 +(noun)|hemolysin|haemolysin|erythrolysin|organic compound +erythroderma|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +erythroid|1 +(adj)|blood cell|blood corpuscle|corpuscle +erythrolysin|1 +(noun)|hemolysin|haemolysin|erythrocytolysin|organic compound +erythromycin|1 +(noun)|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +erythronium|1 +(noun)|Erythronium|genus Erythronium|liliid monocot genus +erythronium albidum|1 +(noun)|white dogtooth violet|white dog's-tooth violet|blonde lilian|Erythronium albidum|dogtooth violet|dogtooth|dog's-tooth violet +erythronium americanum|1 +(noun)|yellow adder's tongue|trout lily|amberbell|Erythronium americanum|dogtooth violet|dogtooth|dog's-tooth violet +erythronium californicum|1 +(noun)|fawn lily|Erythronium californicum|dogtooth violet|dogtooth|dog's-tooth violet +erythronium dens-canis|1 +(noun)|European dogtooth|Erythronium dens-canis|dogtooth violet|dogtooth|dog's-tooth violet +erythronium grandiflorum|1 +(noun)|glacier lily|snow lily|Erythronium grandiflorum|dogtooth violet|dogtooth|dog's-tooth violet +erythronium montanum|1 +(noun)|avalanche lily|Erythronium montanum|liliaceous plant +erythropoiesis|1 +(noun)|organic process|biological process +erythropoietic|1 +(adj)|organic process|biological process +erythropoietin|1 +(noun)|glycoprotein +erythroxylaceae|1 +(noun)|Erythroxylaceae|family Erythroxylaceae|plant family +erythroxylon|1 +(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus +erythroxylon coca|1 +(noun)|Erythroxylon coca|coca|shrub|bush +erythroxylon truxiuense|1 +(noun)|Erythroxylon truxiuense|shrub|bush +erythroxylum|1 +(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus +es|1 +(noun)|einsteinium|Es|E|atomic number 99|metallic element|metal +esaki|1 +(noun)|Esaki|Leo Esaki|physicist +esau|1 +(noun)|Esau|son|boy +escadrille|2 +(noun)|squadron +(noun)|squadron +escalade|2 +(noun)|scaling +(verb)|climb|climb up|mount|go up +escalader|1 +(noun)|climber +escalate|1 +(verb)|intensify|step up|increase +escalation|1 +(noun)|increase|step-up +escalator|2 +(noun)|escalator clause|article|clause +(noun)|moving staircase|moving stairway|stairway|staircase|stairs|steps +escalator clause|1 +(noun)|escalator|article|clause +escallop|3 +(noun)|scallop|scollop|shellfish +(noun)|cutlet|scallop|scollop|piece|slice +(noun)|scallop|scollop|bivalve|pelecypod|lamellibranch +escalope de veau orloff|1 +(noun)|escalope de veau Orloff|dish +escapade|2 +(noun)|adventure|risky venture|dangerous undertaking|undertaking|project|task|labor +(noun)|lark|diversion|recreation +escape|15 +(noun)|flight|running away +(noun)|escapism|diversion|recreation +(noun)|leak|leakage|outflow|discharge|outpouring|run +(noun)|safety valve|relief valve|escape valve|escape cock|valve|regulator +(noun)|evasion|dodging|negligence|carelessness|neglect|nonperformance +(noun)|avoidance|turning away|shunning|dodging +(noun)|means|agency|way +(noun)|plant|flora|plant life +(verb)|get away|break loose|flee|fly|take flight +(verb)|miss|avoid +(verb)|get off|get away|get by|get out|avoid +(verb)|elude|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound +(verb)|issue|emerge|come out|come forth|go forth|egress +(verb)|get away|get away|break loose +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|fly the coop|break away|leave|go forth|go away +escape cock|1 +(noun)|safety valve|relief valve|escape valve|escape|valve|regulator +escape expert|1 +(noun)|escapologist|magician|prestidigitator|conjurer|conjuror|illusionist +escape from|1 +(verb)|shake|shake off|throw off|escape|get away|break loose +escape hatch|1 +(noun)|hatchway|opening|scuttle +escape mechanism|1 +(noun)|evasion|escape|dodging +escape valve|1 +(noun)|safety valve|relief valve|escape cock|escape|valve|regulator +escape velocity|1 +(noun)|speed|velocity +escape wheel|1 +(noun)|gear|gear wheel|cogwheel +escaped|1 +(adj)|at large|at liberty|loose|on the loose|free +escapee|1 +(noun)|fugitive|fugitive from justice +escapement|1 +(noun)|mechanical device +escapism|1 +(noun)|escape|diversion|recreation +escapist|1 +(noun)|dreamer|wishful thinker|daydreamer|woolgatherer +escapologist|1 +(noun)|escape expert|magician|prestidigitator|conjurer|conjuror|illusionist +escargot|1 +(noun)|snail|meat +escarole|1 +(noun)|chicory escarole|endive|salad green|salad greens +escarp|1 +(noun)|escarpment|scarp|protective embankment|fortification|munition +escarpment|2 +(noun)|scarp|slope|incline|side +(noun)|escarp|scarp|protective embankment|fortification|munition +eschalot|1 +(noun)|shallot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion|onion plant|Allium cepa +eschar|1 +(noun)|scab +eschatological|1 +(adj)|theology|divinity +eschatologist|1 +(noun)|theologian|theologist|theologizer|theologiser +eschatology|1 +(noun)|theology|divinity +escheat|2 +(noun)|reversion +(noun)|transferred property|transferred possession +escherichia|1 +(noun)|enteric bacteria|enterobacteria|enterics +escherichia coli|1 +(noun)|Escherichia coli|E. coli|escherichia +eschew|1 +(verb)|shun|avoid +eschrichtiidae|1 +(noun)|Eschrichtiidae|family Eschrichtiidae|mammal family +eschrichtius|1 +(noun)|Eschrichtius|genus Eschrichtius|mammal genus +eschrichtius gibbosus|1 +(noun)|gray whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale|whalebone whale +eschrichtius robustus|1 +(noun)|gray whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale|whalebone whale +eschscholtzia|1 +(noun)|Eschscholtzia|genus Eschscholtzia|dilleniid dicot genus +eschscholtzia californica|1 +(noun)|California poppy|Eschscholtzia californica|poppy +escolar|1 +(noun)|Lepidocybium flavobrunneum|gempylid +escort|6 +(noun)|bodyguard|defender|guardian|protector|shielder +(noun)|accompaniment|protection +(noun)|attendant|attender|tender +(noun)|date|companion|comrade|fellow|familiar|associate +(verb)|accompany +(verb)|see|accompany +escritoire|1 +(noun)|secretary|writing table|secretaire|desk +escrow|1 +(noun)|written agreement +escrow funds|1 +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +escudo|2 +(noun)|Portuguese escudo|Portuguese monetary unit +(noun)|Cape Verde escudo|Cape Verde monetary unit +escutcheon|3 +(noun)|finger plate|scutcheon|protective covering|protective cover|protection +(noun)|plate +(noun)|scutcheon|shield|buckler +ese|1 +(noun)|east southeast|ESE|compass point|point +esfahan|1 +(noun)|Isfahan|Esfahan|Aspadana|city|metropolis|urban center +esidrix|1 +(noun)|hydrochlorothiazide|Esidrix|HydroDIURIL|thiazide +eskalith|1 +(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +esker|1 +(noun)|ridge +eskimo|2 +(noun)|Eskimo|Esquimau|Inuit|Indian|North American Indian|American Indian|Red Indian +(noun)|Eskimo|Esquimau|Eskimo-Aleut|Eskimo-Aleut language +eskimo-aleut|1 +(noun)|Eskimo-Aleut|Eskimo-Aleut language|natural language|tongue +eskimo-aleut language|1 +(noun)|Eskimo-Aleut|Eskimo-Aleut language|natural language|tongue +eskimo curlew|1 +(noun)|Eskimo curlew|Numenius borealis|curlew +eskimo dog|1 +(noun)|Eskimo dog|husky|working dog +esm|1 +(noun)|electronic warfare-support measures|ESM|electronic warfare|EW +esme stuart lennox robinson|1 +(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist|playwright +esmolol|1 +(noun)|Brevibloc|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +esocidae|1 +(noun)|Esocidae|family Esocidae|fish family +esop|1 +(noun)|employee stock ownership plan|ESOP|stock purchase plan +esophageal|1 +(adj)|passage|passageway|muscular structure|musculature|muscle system +esophageal reflux|1 +(noun)|gastroesophageal reflux|oesophageal reflux|reflux +esophageal smear|1 +(noun)|alimentary tract smear +esophageal veins|1 +(noun)|oesophageal veins|venae esophageae|vein|vena|venous blood vessel +esophagitis|1 +(noun)|oesophagitis|inflammation|redness|rubor +esophagogastric junction|1 +(noun)|oesophagogastric junction|articulation|join|joint|juncture|junction +esophagoscope|1 +(noun)|oesophagoscope|optical instrument +esophagus|1 +(noun)|oesophagus|gorge|gullet|passage|passageway|muscular structure|musculature|muscle system +esoteric|1 +(adj)|esoteric |abstruse|deep|recondite|arcane|cabalistic|kabbalistic|qabalistic|cryptic|cryptical|sibylline|mysterious|mystic|mystical|occult|secret|orphic|private +esoterica|1 +(noun)|secret|arcanum +esotropia|1 +(noun)|cross-eye|crossed eye|convergent strabismus|strabismus|squint +esox|1 +(noun)|Esox|genus Esox|fish genus +esox americanus|1 +(noun)|redfin pickerel|barred pickerel|Esox americanus|pickerel +esox lucius|1 +(noun)|northern pike|Esox lucius|pike +esox masquinongy|1 +(noun)|muskellunge|Esox masquinongy|pike +esox niger|1 +(noun)|chain pickerel|chain pike|Esox niger|pickerel +esp|1 +(noun)|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena|psychic phenomenon|parapsychology +espadrille|1 +(noun)|sandal +espalier|1 +(noun)|trellis|treillage +espana|1 +(noun)|Spain|Kingdom of Spain|Espana|European country|European nation +espanole|1 +(noun)|sauce espanole|sauce +esparcet|1 +(noun)|sainfoin|sanfoin|holy clover|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +especial|1 +(adj)|exceptional|particular|special|uncommon +especially|2 +(adv)|particularly|peculiarly|specially +(adv)|specially +esperantido|1 +(noun)|Esperantido|artificial language +esperanto|1 +(noun)|Esperanto|artificial language +espial|1 +(noun)|detection|catching|spying|spotting|discovery|find|uncovering +espionage|1 +(noun)|spying|undercover work +espionage agent|1 +(noun)|spy|undercover agent +espionage network|1 +(noun)|network|web +esplanade|1 +(noun)|promenade|mall +espoo|1 +(noun)|Espoo|city|metropolis|urban center +espousal|3 +(noun)|bridal|marriage|wedding|marriage ceremony +(noun)|betrothal|ritual|rite +(noun)|adoption|acceptance|acceptation|blessing|approval|approving +espouse|3 +(verb)|adopt|follow|choose|take|select|pick out +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|unite|unify +(verb)|embrace|adopt|sweep up|accept +espresso|1 +(noun)|coffee|java +espresso maker|1 +(noun)|coffee maker +espresso shop|1 +(noun)|cafe|coffeehouse|coffee shop|coffee bar +esprit|1 +(noun)|liveliness|life|spirit|sprightliness +esprit de corps|1 +(noun)|morale|team spirit|disposition|temperament +espy|1 +(verb)|descry|spot|spy|sight +esq|1 +(noun)|Esquire|Esq|man|adult male +esquimau|2 +(noun)|Eskimo|Esquimau|Inuit|Indian|North American Indian|American Indian|Red Indian +(noun)|Eskimo|Esquimau|Eskimo-Aleut|Eskimo-Aleut language +esquire|2 +(noun)|attendant|attender|tender +(noun)|Esquire|Esq|man|adult male +esr|2 +(noun)|erythrocyte sedimentation rate|ESR|sedimentation rate|sed rate|rate +(noun)|electron spin resonance|ESR|electron paramagnetic resonance|microwave spectroscopy +essay|4 +(noun)|writing|written material|piece of writing +(noun)|attempt|effort|endeavor|endeavour|try +(verb)|try|seek|attempt|assay|act|move +(verb)|test|prove|try|try out|examine|judge +essayer|1 +(noun)|trier|attempter|person|individual|someone|somebody|mortal|human|soul +essayist|1 +(noun)|litterateur|writer|author +esselen|2 +(noun)|Esselen|Hokan|Hoka +(noun)|Esselen|Hokan|Hoka +essen|1 +(noun)|Essen|city|metropolis|urban center +essence|4 +(noun)|kernel|substance|core|center|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|substance|matter +(noun)|effect|burden|core|gist|meaning|significance|signification|import +(noun)|perfume|toiletry|toilet article|toiletries +essene|2 +(adj)|Essene|Jew|Hebrew|Israelite +(noun)|Essene|Jew|Hebrew|Israelite +essential|7 +(adj)|indispensable|necessary +(adj)|essential |basal|basic|primary|biogenic|constituent|constitutional|constitutive|organic|must|no-frills|staple|substantial|substantive|in essence|virtual|vital|life-sustaining|crucial|important|important|of import|indispensable|intrinsic|intrinsical|necessary|primary|unexpendable +(adj)|all-important|all important|crucial|of the essence|important |of import +(adj)|substance|matter +(adj)|substantive +(adj)|unexpendable +(noun)|necessity|requirement|requisite|necessary|thing +essential amino acid|1 +(noun)|amino acid|aminoalkanoic acid +essential condition|1 +(noun)|sine qua non|prerequisite|requirement +essential hypertension|1 +(noun)|hyperpiesia|hyperpiesis|high blood pressure|hypertension +essential oil|1 +(noun)|volatile oil|oil +essential thrombocytopenia|1 +(noun)|thrombocytopenia|thrombopenia +essential tremor|1 +(noun)|tremor +essentiality|1 +(noun)|essentialness|importance +essentially|1 +(adv)|basically|fundamentally|in essence|au fond +essentialness|1 +(noun)|essentiality|importance +essex|1 +(noun)|Essex|county +essonite|1 +(noun)|cinnamon stone|hessonite|garnet +est|1 +(noun)|Eastern Time|Eastern Standard Time|EST|civil time|standard time|local time +establish|8 +(verb)|set up|found|launch|open|open up +(verb)|found|plant|constitute|institute|initiate|pioneer +(verb)|prove|demonstrate|show|shew|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|lay down|make|make|create +(verb)|give|make|create +(verb)|install|instal|set up +(verb)|base|ground|found +(verb)|build|make|create +established|6 +(adj)|established |constituted|accepted|brought about|deep-rooted|deep-seated|implanted|ingrained|planted|entrenched|habitual|legitimate|official|recognized|recognised|set up|grooved|well-grooved +(adj)|firm|secure +(adj)|accomplished|effected|settled +(adj)|proved |proven +(adj)|conventional|orthodox +(adj)|naturalized|foreign +established church|1 +(noun)|religion|faith +establishment|7 +(noun)|constitution|formation|organization|organisation|beginning|start|commencement +(noun)|institution|organization|organisation +(noun)|administration|governance|governing body|brass|organization|organisation|body +(noun)|structure|construction +(noun)|organization|organisation +(noun)|ecesis|natural process|natural action|action|activity +(noun)|validation|proof|cogent evidence +establishmentarianism|1 +(noun)|establishmentism|doctrine|philosophy|philosophical system|school of thought|ism +establishmentism|1 +(noun)|establishmentarianism|doctrine|philosophy|philosophical system|school of thought|ism +estaminet|1 +(noun)|cafe|coffeehouse|coffee shop|coffee bar +estate|3 +(noun)|property|belongings|holding|material possession +(noun)|land|landed estate|acres|demesne|real property|real estate|realty +(noun)|estate of the realm|class|social class|socio-economic class +estate agent|1 +(noun)|realtor|real estate broker|real estate agent|land agent|house agent|agent|factor|broker +estate car|1 +(noun)|shooting brake|beach wagon|station wagon|wagon|beach waggon|station waggon|waggon +estate for life|1 +(noun)|life estate|estate +estate of the realm|1 +(noun)|estate|class|social class|socio-economic class +estate tax|1 +(noun)|inheritance tax|death tax|death duty|transfer tax +estates general|1 +(noun)|Estates General|States General +estazolam|1 +(noun)|ProSom|benzodiazepine +esteem|5 +(noun)|regard|respect|honor|honour|laurels +(noun)|admiration|liking +(noun)|respect|regard|attitude|mental attitude +(verb)|respect|value|prize|prise|see|consider|reckon|view|regard +(verb)|think of|repute|regard as|look upon|look on|take to be|think|believe|consider|conceive +esteemed|1 +(adj)|honored|prestigious|reputable +ester|1 +(noun)|organic compound +esterify|1 +(verb)|change state|turn +esther|2 +(noun)|Esther|Jewess|queen +(noun)|Esther|Book of Esther|book +esther hobart mcquigg slack morris|1 +(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist +esther morris|1 +(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist +esthete|1 +(noun)|aesthete|connoisseur|cognoscenti +esthetic|4 +(adj)|aesthetic |aesthetical|esthetical|artistic|beautiful|cosmetic|enhancive|painterly|sensuous +(adj)|aesthetic|philosophy +(adj)|aesthetic|artistic|pleasing|tasteful +(noun)|aesthetic|philosophical doctrine|philosophical theory +esthetical|1 +(adj)|aesthetic |esthetic|aesthetical|artistic|beautiful|cosmetic|enhancive|painterly|sensuous +esthetically|1 +(adv)|aesthetically +esthetician|2 +(noun)|aesthetician|skilled worker|trained worker +(noun)|aesthetician|philosopher +esthetics|2 +(noun)|aesthetics|philosophy +(noun)|aesthetic|esthetic|philosophical doctrine|philosophical theory +esthonia|1 +(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State|Baltic Republic +esthonian|1 +(noun)|Estonian|Esthonian|Baltic-Finnic +estimable|3 +(adj)|estimable |admirable|worthy +(adj)|good|honorable|respectable|reputable +(adj)|computable|calculable +estimate|7 +(noun)|estimation|approximation|idea|calculation|computation|figuring|reckoning +(noun)|estimation|judgment|judgement|assessment +(noun)|appraisal|estimation|commercial document|commercial instrument +(noun)|statement +(noun)|estimation|respect|esteem|regard +(verb)|gauge|approximate|guess|judge|calculate|cipher|cypher|compute|work out|reckon|figure|overestimate|underestimate +(verb)|calculate|reckon|count on|figure|forecast|judge +estimated|1 +(adj)|calculable +estimated tax|1 +(noun)|income tax +estimated tax return|1 +(noun)|declaration of estimated tax|tax return|income tax return|return +estimation|4 +(noun)|estimate|approximation|idea|calculation|computation|figuring|reckoning +(noun)|appraisal|estimate|commercial document|commercial instrument +(noun)|estimate|respect|esteem|regard +(noun)|estimate|judgment|judgement|assessment +estimator|1 +(noun)|calculator|reckoner|figurer|computer|expert +estival|1 +(adj)|aestival|summery +estivate|1 +(verb)|aestivate|sleep|kip|slumber|log Z's|catch some Z's +estivation|2 +(noun)|aestivation|dormancy|quiescence|quiescency +(noun)|aestivation|arrangement +estonia|1 +(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State|Baltic Republic +estonian|2 +(adj)|Estonian|Baltic State|Baltic Republic +(noun)|Estonian|Esthonian|Baltic-Finnic +estonian monetary unit|1 +(noun)|Estonian monetary unit|monetary unit +estoppel|1 +(noun)|rule of evidence +estradiol|1 +(noun)|oestradiol|estrogen|oestrogen +estradiol patch|1 +(noun)|transdermal patch|skin patch +estragon|2 +(noun)|tarragon|Artemisia dracunculus|artemisia +(noun)|tarragon|herb +estrange|2 +(verb)|take out|move out|remove +(verb)|alienate|alien|disaffect|change|alter|modify +estranged|1 +(adj)|alienated|unloved +estrangement|2 +(noun)|alienation|isolation +(noun)|alienation|disaffection|dislike +estranging|1 +(adj)|disorienting +estraterrestrial body|1 +(noun)|extraterrestrial object|natural object +estrilda|1 +(noun)|Estrilda|genus Estrilda|bird genus +estriol|1 +(noun)|oestriol|estrogen|oestrogen +estrogen|1 +(noun)|oestrogen|steroid hormone|steroid|sex hormone +estrogen antagonist|1 +(noun)|tamoxifen|antagonist +estrogenic|1 +(adj)|steroid hormone|steroid|sex hormone +estrone|1 +(noun)|oestrone|theelin|Estronol|estrogen|oestrogen|ketosteroid +estronol|1 +(noun)|estrone|oestrone|theelin|Estronol|estrogen|oestrogen|ketosteroid +estrous|1 +(adj)|estrous |monestrous|monoestrous|polyestrous|polyoestrous +estrus|1 +(noun)|oestrus|heat|rut|physiological state|physiological condition +estuarial|1 +(adj)|estuarine|body of water|water +estuarine|1 +(adj)|estuarial|body of water|water +estuary|1 +(noun)|body of water|water +esurience|2 +(noun)|edacity|ravenousness|voracity|voraciousness|hunger|hungriness +(noun)|edacity|rapaciousness|rapacity|voracity|voraciousness|gluttony +esurient|3 +(adj)|famished|ravenous|sharp-set|starved|hungry +(adj)|avid|devouring|greedy|desirous +(adj)|edacious|rapacious|ravening|ravenous|voracious|wolfish|gluttonous +et al|2 +(adv)|et al.|and others +(adv)|et al.|and elsewhere +et al.|3 +(adv)|et al|and others +(adv)|et al|and elsewhere +(adv)| +eta|2 +(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|letter|letter of the alphabet|alphabetic character +etagere|1 +(noun)|furniture|piece of furniture|article of furniture +etamin|1 +(noun)|etamine|fabric|cloth|material|textile +etamine|1 +(noun)|etamin|fabric|cloth|material|textile +etanercept|1 +(noun)|Enbrel|anti-TNF compound +etc.|1 +(adv)|and so forth|and so on|etcetera +etcetera|2 +(noun)|whatchamacallit|stuff|whatsis|sundry|sundries +(adv)|and so forth|and so on|etc. +etch|1 +(verb)|print +etched|1 +(adj)|engraved|graven|incised|inscribed|carved |carven +etcher|1 +(noun)|artist|creative person +etching|3 +(noun)|engraving +(noun)|engraving +(noun)|engraving|printmaking +etd|1 +(noun)|explosive trace detection|ETD|system +eternal|3 +(adj)|ageless|everlasting|perpetual|unending|unceasing|permanent |lasting +(adj)|everlasting|lasting|eonian|aeonian|immortal +(adj)|endless|interminable|long +eternal city|1 +(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital +eternal damnation|1 +(noun)|damnation|state +eternal life|1 +(noun)|life eternal|animation|life|living|aliveness +eternal rest|1 +(noun)|rest|sleep|eternal sleep|quietus|death +eternal sleep|1 +(noun)|rest|eternal rest|sleep|quietus|death +eternalise|1 +(verb)|immortalize|immortalise|eternize|eternise|eternalize|change|alter|modify +eternalize|1 +(verb)|immortalize|immortalise|eternize|eternise|eternalise|change|alter|modify +eternally|1 +(adv)|everlastingly|forever|evermore +eternise|1 +(verb)|immortalize|immortalise|eternize|eternalize|eternalise|change|alter|modify +eternity|3 +(noun)|infinity|time +(noun)|timelessness|timeless existence|being|beingness|existence +(noun)|time interval|interval +eternize|2 +(verb)|perpetuate +(verb)|immortalize|immortalise|eternise|eternalize|eternalise|change|alter|modify +ethacrynic acid|1 +(noun)|Edecrin|diuretic drug|diuretic|water pill +ethan allen|1 +(noun)|Allen|Ethan Allen|soldier +ethanal|1 +(noun)|acetaldehyde|aldehyde +ethanal trimer|1 +(noun)|paraldehyde|aldehyde +ethanamide|1 +(noun)|acetamide|amide +ethane|1 +(noun)|C2H6|methane series|alkane series|alkane|paraffin|hydrocarbon +ethanedioic acid|1 +(noun)|oxalic acid|acid +ethanediol|1 +(noun)|ethylene glycol|glycol|antifreeze +ethanoate|1 +(noun)|acetate|salt +ethanoic acid|1 +(noun)|acetic acid|carboxylic acid +ethanol|1 +(noun)|ethyl alcohol|fermentation alcohol|grain alcohol|alcohol|plant product +ethanoyl chloride|1 +(noun)|acetyl chloride|acyl halide|acid halide +ethanoyl group|1 +(noun)|acetyl|acetyl group|acetyl radical|ethanoyl radical|acyl|acyl group +ethanoyl radical|1 +(noun)|acetyl|acetyl group|acetyl radical|ethanoyl group|acyl|acyl group +ethchlorvynol|1 +(noun)|Placidyl|sedative-hypnotic|sedative-hypnotic drug +ethel barrymore|1 +(noun)|Barrymore|Ethel Barrymore|actress +ethel merman|1 +(noun)|Merman|Ethel Merman|singer|vocalist|vocalizer|vocaliser +ethel waters|1 +(noun)|Waters|Ethel Waters|actress|singer|vocalist|vocalizer|vocaliser +ethelbert|1 +(noun)|Ethelbert|king|male monarch +ethelred|2 +(noun)|Ethelred|Ethelred II|Ethelred the Unready|king|male monarch +(noun)|Ethelred|Ethelred I|king|male monarch +ethelred i|1 +(noun)|Ethelred|Ethelred I|king|male monarch +ethelred ii|1 +(noun)|Ethelred|Ethelred II|Ethelred the Unready|king|male monarch +ethelred the unready|1 +(noun)|Ethelred|Ethelred II|Ethelred the Unready|king|male monarch +ethene|1 +(noun)|ethylene|alkene|olefine|olefin|gas +ether|4 +(noun)|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +(noun)|quintessence|element +(noun)|organic compound +(noun)|aether|medium +ethereal|4 +(adj)|aeriform|aerial|airy|aery|insubstantial |unsubstantial|unreal +(adj)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +(adj)|celestial|supernal|heavenly +(adj)|gossamer|delicate +etherealize|1 +(verb)|etherialise|change|alter|modify +etherialise|1 +(verb)|etherealize|change|alter|modify +etherify|1 +(verb)|change state|turn +etherise|1 +(verb)|etherize|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +etherize|1 +(verb)|etherise|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +ethernet|1 +(noun)|local area network|LAN +ethernet cable|1 +(noun)|coaxial cable|coax|coax cable +ethic|2 +(noun)|moral principle|value-system|value orientation|principle +(noun)|ethical code|system|system of rules +ethical|3 +(adj)|philosophy +(adj)|ethical |right +(adj)|honorable|honourable|moral|right +ethical code|1 +(noun)|ethic|system|system of rules +ethical drug|1 +(noun)|prescription drug|prescription|prescription medicine|medicine|medication|medicament|medicinal drug +ethical motive|1 +(noun)|ethics|morals|morality|motivation|motive|need +ethician|1 +(noun)|ethicist|philosopher +ethicism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +ethicist|1 +(noun)|ethician|philosopher +ethics|4 +(noun)|ethical motive|morals|morality|motivation|motive|need +(noun)|moral philosophy|philosophy +(noun)|ethic|moral principle|value-system|value orientation|principle +(noun)|ethic|ethical code|system|system of rules +ethics committee|1 +(noun)|ethics panel|committee|commission +ethics panel|1 +(noun)|ethics committee|committee|commission +ethiopia|1 +(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country|African nation +ethiopian|2 +(adj)|Ethiopian|African country|African nation +(noun)|Ethiopian|African +ethiopian banana|1 +(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb|herbaceous plant +ethiopian language|1 +(noun)|Amharic|Ethiopian language|Semitic +ethiopian monetary unit|1 +(noun)|Ethiopian monetary unit|monetary unit +ethmoid|1 +(noun)|ethmoid bone|bone|os +ethmoid bone|1 +(noun)|ethmoid|bone|os +ethmoid sinus|1 +(noun)|ethmoidal sinus|sinus ethmoidales|sinus +ethmoidal artery|1 +(noun)|arteria ethmoidalis|artery|arteria|arterial blood vessel +ethmoidal sinus|1 +(noun)|ethmoid sinus|sinus ethmoidales|sinus +ethmoidal vein|1 +(noun)|vena ethmoidalis|vein|vena|venous blood vessel +ethnic|2 +(adj)|cultural|ethnical|social +(adj)|heathen|heathenish|pagan|irreligious +ethnic cleansing|1 +(noun)|group action +ethnic group|1 +(noun)|ethnos|group|grouping +ethnic joke|1 +(noun)|joke|gag|laugh|jest|jape +ethnic minority|1 +(noun)|ethnic group|ethnos +ethnic music|1 +(noun)|folk music|folk|popular music|popular music genre +ethnic slur|1 +(noun)|aspersion|slur +ethnical|1 +(adj)|cultural|ethnic|social +ethnicity|1 +(noun)|quality +ethnocentric|1 +(adj)|partiality|partisanship +ethnocentrism|1 +(noun)|partiality|partisanship +ethnographer|1 +(noun)|anthropologist +ethnographic|1 +(adj)|ethnographical|anthropology +ethnographical|1 +(adj)|ethnographic|anthropology +ethnography|1 +(noun)|descriptive anthropology|anthropology +ethnologic|1 +(adj)|ethnological|anthropology +ethnological|1 +(adj)|ethnologic|anthropology +ethnologist|1 +(noun)|anthropologist +ethnology|1 +(noun)|anthropology +ethnos|1 +(noun)|ethnic group|group|grouping +ethocaine|1 +(noun)|procaine|Ethocaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +ethologist|1 +(noun)|zoologist|animal scientist +ethology|1 +(noun)|zoology|zoological science +ethos|1 +(noun)|attribute +ethosuximide|1 +(noun)|Emeside|Zarontin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +ethoxyethane|1 +(noun)|ether|divinyl ether|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +ethrane|1 +(noun)|enflurane|Ethrane|ether|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|ethyl ether +ethril|1 +(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +ethyl|1 +(noun)|ethyl group|ethyl radical|alkyl|alkyl group|alkyl radical +ethyl acetate|1 +(noun)|ester +ethyl alcohol|2 +(noun)|ethanol|fermentation alcohol|grain alcohol|alcohol|plant product +(noun)|neutral spirits|alcohol|alcoholic beverage|intoxicant|inebriant +ethyl aminobenzoate|1 +(noun)|benzocaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +ethyl chloride|1 +(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +ethyl ether|1 +(noun)|ether|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +ethyl group|1 +(noun)|ethyl|ethyl radical|alkyl|alkyl group|alkyl radical +ethyl radical|1 +(noun)|ethyl|ethyl group|alkyl|alkyl group|alkyl radical +ethylene|1 +(noun)|ethene|alkene|olefine|olefin|gas +ethylene glycol|1 +(noun)|glycol|ethanediol|antifreeze +ethylene tetrachloride|1 +(noun)|tetrachlorethylene|tetrachloroethylene|carbon dichloride|vermifuge|anthelmintic|anthelminthic|helminthic +ethyne|1 +(noun)|acetylene|alkyne|aliphatic compound +etienne-louis arthur fallot|1 +(noun)|Fallot|Etienne-Louis Arthur Fallot|doctor|doc|physician|MD|Dr.|medico +etiolate|4 +(adj)|etiolated|blanched|colorless |colourless +(verb)|weaken +(verb)|change|alter|modify +(verb)|change|alter|modify +etiolated|1 +(adj)|etiolate|blanched|colorless |colourless +etiolation|3 +(noun)|appearance|visual aspect +(noun)|weakening +(noun)|bleach +etiologic|2 +(adj)|etiological|aetiological|aetiologic|philosophy +(adj)|etiological|aetiological|aetiologic|cause +etiological|2 +(adj)|etiologic|aetiological|aetiologic|philosophy +(adj)|etiologic|aetiological|aetiologic|cause +etiologist|1 +(noun)|aetiologist|diagnostician|pathologist +etiology|2 +(noun)|aetiology|cause +(noun)|aetiology|philosophy +etiquette|1 +(noun)|rule|prescript +etna|2 +(noun)|Etna|Mount Etna|Mt Etna|volcano +(noun)|bunsen burner|bunsen|gas burner|gas jet +etodolac|1 +(noun)|Lodine|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +eton collar|1 +(noun)|Eton collar|collar|neckband +eton college|1 +(noun)|Eton College|public school +eton jacket|1 +(noun)|Eton jacket|jacket +etonian|1 +(noun)|Etonian|student|pupil|educatee +etropus|1 +(noun)|Etropus|genus Etropus|fish genus +etropus rimosus|1 +(noun)|gray flounder|Etropus rimosus|lefteye flounder|lefteyed flounder +etruria|1 +(noun)|Etruria|country|state|land +etruscan|1 +(noun)|Etruscan|Italian +etude|1 +(noun)|musical composition|opus|composition|piece|piece of music +etui|1 +(noun)|bag|handbag|pocketbook|purse +etymological|1 +(adj)|history|account|chronicle|story +etymological dictionary|1 +(noun)|dictionary|lexicon +etymologise|2 +(verb)|etymologize|derive|educe +(verb)|etymologize|reconstruct|construct|retrace +etymologist|1 +(noun)|lexicographer|lexicologist +etymologize|2 +(verb)|etymologise|derive|educe +(verb)|etymologise|reconstruct|construct|retrace +etymologizing|1 +(noun)|deriving|derivation|explanation|account +etymology|2 +(noun)|history|account|chronicle|story +(noun)|linguistics +etymon|1 +(noun)|root|form|word form|signifier|descriptor +eu|2 +(noun)|europium|Eu|atomic number 63|metallic element|metal +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +euarctos|1 +(noun)|Euarctos|genus Euarctos|mammal genus +euarctos americanus|1 +(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear +euascomycetes|1 +(noun)|Euascomycetes|subclass Euascomycetes|class +eubacteria|1 +(noun)|eubacterium|true bacteria|moneran|moneron +eubacteriales|1 +(noun)|Eubacteriales|order Eubacteriales|animal order +eubacterium|1 +(noun)|eubacteria|true bacteria|moneran|moneron +eubryales|1 +(noun)|Eubryales|order Eubryales|plant order +eucalypt|1 +(noun)|eucalyptus|eucalyptus tree|gum tree|gum +eucalypt grandis|1 +(noun)|rose gum|Eucalypt grandis|flooded gum +eucalypt gunnii|1 +(noun)|cider gum|Eucalypt gunnii|flooded gum +eucalypt ovata|1 +(noun)|swamp gum|Eucalypt ovata|eucalyptus|eucalypt|eucalyptus tree +eucalypt tereticornis|1 +(noun)|forest red gum|Eucalypt tereticornis|flooded gum +eucalyptus|2 +(noun)|wood +(noun)|eucalypt|eucalyptus tree|gum tree|gum +eucalyptus amygdalina|1 +(noun)|red gum|peppermint|peppermint gum|Eucalyptus amygdalina|eucalyptus|eucalypt|eucalyptus tree +eucalyptus calophylla|1 +(noun)|red gum|marri|Eucalyptus calophylla|eucalyptus|eucalypt|eucalyptus tree +eucalyptus camaldulensis|1 +(noun)|river red gum|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus|eucalypt|eucalyptus tree +eucalyptus camphora|1 +(noun)|mountain swamp gum|Eucalyptus camphora|eucalyptus|eucalypt|eucalyptus tree +eucalyptus citriodora|1 +(noun)|lemon-scented gum|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus|eucalypt|eucalyptus tree +eucalyptus coriacea|1 +(noun)|snow gum|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus|eucalypt|eucalyptus tree +eucalyptus delegatensis|1 +(noun)|alpine ash|mountain oak|Eucalyptus delegatensis|eucalyptus|eucalypt|eucalyptus tree +eucalyptus dumosa|1 +(noun)|white mallee|congoo mallee|Eucalyptus dumosa|mallee +eucalyptus fraxinoides|1 +(noun)|white mountain ash|Eucalyptus fraxinoides|eucalyptus|eucalypt|eucalyptus tree +eucalyptus globulus|1 +(noun)|blue gum|fever tree|Eucalyptus globulus|eucalyptus|eucalypt|eucalyptus tree +eucalyptus gum|1 +(noun)|eucalyptus kino|red gum|gum +eucalyptus kino|1 +(noun)|eucalyptus gum|red gum|gum +eucalyptus maculata|1 +(noun)|spotted gum|Eucalyptus maculata|eucalyptus|eucalypt|eucalyptus tree +eucalyptus maculata citriodora|1 +(noun)|lemon-scented gum|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus|eucalypt|eucalyptus tree +eucalyptus oil|1 +(noun)|essential oil|volatile oil +eucalyptus pauciflora|1 +(noun)|snow gum|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus|eucalypt|eucalyptus tree +eucalyptus regnans|1 +(noun)|mountain ash|Eucalyptus regnans|eucalyptus|eucalypt|eucalyptus tree +eucalyptus rostrata|1 +(noun)|river red gum|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus|eucalypt|eucalyptus tree +eucalyptus tree|1 +(noun)|eucalyptus|eucalypt|gum tree|gum +eucalyptus viminalis|1 +(noun)|manna gum|Eucalyptus viminalis|eucalyptus|eucalypt|eucalyptus tree +eucalyptusd eugenioides|1 +(noun)|white stringybark|thin-leaved stringybark|Eucalyptusd eugenioides|stringybark +eucalytus stellulata|1 +(noun)|black mallee|black sally|black gum|Eucalytus stellulata|mallee +eucarya|1 +(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus +eucarya acuminata|1 +(noun)|quandong|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree +eucaryote|1 +(noun)|eukaryote|organism|being +eucaryotic|1 +(adj)|eukaryotic |organism|being +eucharist|1 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +eucharistic|1 +(adj)|Eucharistic|sacrament +eucharistic liturgy|1 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +euchre|1 +(noun)|five hundred|card game|cards +eucinostomus|1 +(noun)|Eucinostomus|genus Eucinostomus|fish genus +eucinostomus gula|1 +(noun)|silver jenny|Eucinostomus gula|mojarra +euclid|1 +(noun)|Euclid|geometer|geometrician +euclidean|1 +(adj)|euclidian|geometer|geometrician +euclidean geometry|1 +(noun)|elementary geometry|parabolic geometry|Euclidean geometry|geometry +euclidean space|1 +(noun)|Euclidean space|metric space +euclidian|1 +(adj)|euclidean|geometer|geometrician +eudaemon|1 +(noun)|eudemon|good spirit|guardian spirit|guardian angel +eudaemonia|1 +(noun)|wellbeing|well-being|welfare|upbeat|eudaimonia|prosperity|successfulness +eudaemonic|1 +(adj)|eudemonic|ethics|moral philosophy +eudaimonia|1 +(noun)|wellbeing|well-being|welfare|upbeat|eudaemonia|prosperity|successfulness +eudemon|1 +(noun)|eudaemon|good spirit|guardian spirit|guardian angel +eudemonic|1 +(adj)|eudaemonic|ethics|moral philosophy +eudemonism|1 +(noun)|endaemonism|ethics|moral philosophy +euderma|1 +(noun)|Euderma|genus Euderma|mammal genus +euderma maculata|1 +(noun)|jackass bat|spotted bat|Euderma maculata|vespertilian bat|vespertilionid +eudiometer|1 +(noun)|measuring instrument|measuring system|measuring device +eudora welty|1 +(noun)|Welty|Eudora Welty|writer|author +eudromias morinellus|1 +(noun)|dotterel|dotrel|Charadrius morinellus|Eudromias morinellus|plover +eudyptes|1 +(noun)|Eudyptes|genus Eudyptes|bird genus +eugene|2 +(noun)|Eugene|Prince Eugene of Savoy|general|full general +(noun)|Eugene|city|metropolis|urban center +eugene curran kelly|1 +(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer|professional dancer|actor|histrion|player|thespian|role player +eugene delacroix|1 +(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter +eugene gladstone o'neill|1 +(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist|playwright +eugene ionesco|1 +(noun)|Ionesco|Eugene Ionesco|dramatist|playwright +eugene luther vidal|1 +(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer|author +eugene o'neill|1 +(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist|playwright +eugene ormandy|1 +(noun)|Ormandy|Eugene Ormandy|conductor|music director|director +eugene paul wigner|1 +(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist +eugene sue|1 +(noun)|Sue|Eugene Sue|writer|author +eugene v. debs|1 +(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer|organiser|labor organizer +eugene victor debs|1 +(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer|organiser|labor organizer +eugene wigner|1 +(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist +eugenia|1 +(noun)|Eugenia|genus Eugenia|dicot genus|magnoliopsid genus +eugenia aromaticum|1 +(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree +eugenia caryophyllatum|1 +(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree +eugenia corynantha|1 +(noun)|sour cherry|Eugenia corynantha|fruit tree +eugenia dicrana|1 +(noun)|nakedwood|Eugenia dicrana|zebrawood|zebrawood tree +eugenia jambos|1 +(noun)|rose apple|rose-apple tree|jambosa|Eugenia jambos|fruit tree +eugenia uniflora|1 +(noun)|Surinam cherry|pitanga|Eugenia uniflora|fruit tree +eugenic|1 +(adj)|eugenic |life science|bioscience +eugenics|1 +(noun)|life science|bioscience +eugenio pacelli|1 +(noun)|Pius XII|Eugenio Pacelli|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +euglena|1 +(noun)|protozoan|protozoon +euglenaceae|1 +(noun)|Euglenaceae|family Euglenaceae|protoctist family +euglenid|1 +(noun)|euglenoid|euglenophyte|alga|algae +euglenoid|1 +(noun)|euglenophyte|euglenid|alga|algae +euglenophyceae|1 +(noun)|Euglenophyceae|class Euglenophyceae|class +euglenophyta|1 +(noun)|Euglenophyta|division Euglenophyta|division +euglenophyte|1 +(noun)|euglenoid|euglenid|alga|algae +eukaryote|1 +(noun)|eucaryote|organism|being +eukaryotic|1 +(adj)|eukaryotic |organism|being +euler|1 +(noun)|Euler|Leonhard Euler|mathematician +eulogise|1 +(verb)|eulogize|praise +eulogist|1 +(noun)|panegyrist|orator|speechmaker|rhetorician|public speaker|speechifier +eulogistic|1 +(adj)|encomiastic|panegyric|panegyrical|complimentary +eulogize|1 +(verb)|eulogise|praise +eulogy|1 +(noun)|encomium|panegyric|paean|pean|praise|congratulations|kudos +eumeces|1 +(noun)|Eumeces|genus Eumeces|reptile genus +eumeces callicephalus|1 +(noun)|mountain skink|Eumeces callicephalus|skink|scincid|scincid lizard +eumeces skiltonianus|1 +(noun)|western skink|Eumeces skiltonianus|skink|scincid|scincid lizard +eumenes|1 +(noun)|Eumenes|genus Eumenes|arthropod genus +eumenides|1 +(noun)|Fury|Eumenides|Erinyes|mythical monster|mythical creature +eumetopias|1 +(noun)|Eumetopias|genus Eumetopias|mammal genus +eumetopias jubatus|1 +(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion +eumops|1 +(noun)|Eumops|genus Eumops|mammal genus +eumycetes|1 +(noun)|Eumycetes|class Eumycetes|class +eumycota|1 +(noun)|Eumycota|division Eumycota|division +eunectes|1 +(noun)|Eunectes|genus Eunectes|reptile genus +eunectes murinus|1 +(noun)|anaconda|Eunectes murinus|boa +eunuch|1 +(noun)|castrate|man|adult male +eunuchoidism|1 +(noun)|male hypogonadism|hypogonadism +euonymous alatus|1 +(noun)|winged spindle tree|Euonymous alatus|spindle tree|spindleberry|spindleberry tree +euonymus|1 +(noun)|Euonymus|genus Euonymus|dicot genus|magnoliopsid genus +euonymus americanus|1 +(noun)|strawberry bush|wahoo|Euonymus americanus|shrub|bush +euonymus atropurpureus|1 +(noun)|wahoo|burning bush|Euonymus atropurpureus|shrub|bush +euonymus europaeus|1 +(noun)|common spindle tree|Euonymus europaeus|spindle tree|spindleberry|spindleberry tree +euonymus fortunei radicans|1 +(noun)|evergreen bittersweet|Euonymus fortunei radicans|Euonymus radicans vegetus|vine +euonymus radicans vegetus|1 +(noun)|evergreen bittersweet|Euonymus fortunei radicans|Euonymus radicans vegetus|vine +euopean hoopoe|1 +(noun)|Euopean hoopoe|Upupa epops|hoopoe|hoopoo +eupatorium|1 +(noun)|Eupatorium|genus Eupatorium|asterid dicot genus +eupatorium aya-pana|1 +(noun)|ayapana|Ayapana triplinervis|Eupatorium aya-pana|herb|herbaceous plant +eupatorium cannabinum|1 +(noun)|hemp agrimony|Eupatorium cannabinum|herb|herbaceous plant +eupatorium capillifolium|1 +(noun)|dog fennel|Eupatorium capillifolium|herb|herbaceous plant +eupatorium coelestinum|1 +(noun)|mistflower|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower +eupatorium maculatum|1 +(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb|herbaceous plant +eupatorium perfoliatum|1 +(noun)|boneset|agueweed|thoroughwort|Eupatorium perfoliatum|herb|herbaceous plant +eupatorium purpureum|1 +(noun)|Joe-Pye weed|purple boneset|trumpet weed|marsh milkweed|Eupatorium purpureum|herb|herbaceous plant +eupatorium rugosum|1 +(noun)|white snakeroot|white sanicle|Ageratina altissima|Eupatorium rugosum|herb|herbaceous plant +euphagus|1 +(noun)|Euphagus|genus Euphagus|bird genus +euphagus carilonus|1 +(noun)|rusty blackbird|rusty grackle|Euphagus carilonus|New World blackbird|blackbird +euphausia pacifica|1 +(noun)|Euphausia pacifica|krill +euphausiacea|1 +(noun)|Euphausiacea|order Euphausiacea|animal order +euphemise|1 +(verb)|euphemize|denote|refer +euphemism|1 +(noun)|saying|expression|locution +euphemistic|1 +(adj)|euphemistic |inoffensive +euphemize|1 +(verb)|euphemise|denote|refer +euphonic|1 +(adj)|euphonical|sound|auditory sensation +euphonical|1 +(adj)|euphonic|sound|auditory sensation +euphonious|2 +(adj)|euphonious |euphonous|golden|silvern|silvery +(adj)|soft +euphonium|1 +(noun)|bass horn|sousaphone|tuba +euphonous|1 +(adj)|euphonious |golden|silvern|silvery +euphony|1 +(noun)|music|sound|auditory sensation +euphorbia|1 +(noun)|Euphorbia|genus Euphorbia|rosid dicot genus +euphorbia amygdaloides|1 +(noun)|wood spurge|Euphorbia amygdaloides|spurge +euphorbia antisyphilitica|1 +(noun)|candelilla|Euphorbia antisyphilitica|spurge +euphorbia caput-medusae|1 +(noun)|medusa's head|Euphorbia medusae|Euphorbia caput-medusae|spurge +euphorbia corollata|1 +(noun)|wild spurge|flowering spurge|tramp's spurge|Euphorbia corollata|spurge +euphorbia cyathophora|1 +(noun)|fire-on-the-mountain|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge +euphorbia cyparissias|1 +(noun)|cypress spurge|Euphorbia cyparissias|spurge +euphorbia dentata|1 +(noun)|toothed spurge|Euphorbia dentata|spurge +euphorbia esula|1 +(noun)|leafy spurge|wolf's milk|Euphorbia esula|spurge +euphorbia exigua|1 +(noun)|dwarf spurge|Euphorbia exigua|spurge +euphorbia fulgens|1 +(noun)|scarlet plume|Euphorbia fulgens|spurge +euphorbia helioscopia|1 +(noun)|sun spurge|wartweed|wartwort|devil's milk|Euphorbia helioscopia|spurge +euphorbia heterophylla|1 +(noun)|Japanese poinsettia|mole plant|paint leaf|Euphorbia heterophylla|spurge +euphorbia hirsuta|1 +(noun)|hairy spurge|Euphorbia hirsuta|spurge +euphorbia ingens|1 +(noun)|naboom|cactus euphorbia|Euphorbia ingens|spurge +euphorbia lathyris|1 +(noun)|caper spurge|myrtle spurge|mole plant|Euphorbia lathyris|spurge +euphorbia marginata|1 +(noun)|snow-on-the-mountain|snow-in-summer|ghost weed|Euphorbia marginata|spurge +euphorbia medusae|1 +(noun)|medusa's head|Euphorbia medusae|Euphorbia caput-medusae|spurge +euphorbia milii|1 +(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge +euphorbia peplus|1 +(noun)|petty spurge|devil's milk|Euphorbia peplus|spurge +euphorbia pulcherrima|1 +(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +euphorbiaceae|1 +(noun)|Euphorbiaceae|family Euphorbiaceae|spurge family|rosid dicot family +euphorbium|1 +(noun)|gum eurphorbium|gum +euphoria|1 +(noun)|elation|high spirits +euphoria litchi|1 +(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +euphoriant|2 +(adj)|euphoric |happy +(noun)|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +euphoric|1 +(adj)|euphoric |happy|expansive|euphoriant|elated|happy +euphractus|1 +(noun)|Euphractus|genus Euphractus|mammal genus +euphractus sexcinctus|1 +(noun)|peludo|poyou|Euphractus sexcinctus|armadillo +euphrates|1 +(noun)|Euphrates|Euphrates River|river +euphrates river|1 +(noun)|Euphrates|Euphrates River|river +euphrosyne|1 +(noun)|Euphrosyne|Grace +euphuism|2 +(noun)|expressive style|style +(noun)|prose +euplectella|1 +(noun)|Euplectella|genus Euplectella|sponge genus +eupnea|1 +(noun)|eupnoea|breathing|external respiration|respiration|ventilation +eupneic|1 +(adj)|breathing |eupnoeic|breathed|exhaling|huffing|puffing|puffy|inhaling|snoring|snorting +eupnoea|1 +(noun)|eupnea|breathing|external respiration|respiration|ventilation +eupnoeic|1 +(adj)|breathing |eupneic|breathed|exhaling|huffing|puffing|puffy|inhaling|snoring|snorting +euproctis|1 +(noun)|Euproctis|genus Euproctis|arthropod genus +euproctis chrysorrhoea|1 +(noun)|gold-tail moth|Euproctis chrysorrhoea|lymantriid|tussock moth +euproctis phaeorrhoea|1 +(noun)|browntail|brown-tail moth|Euproctis phaeorrhoea|lymantriid|tussock moth +eurafrican|2 +(adj)|Eurafrican|continent|continent +(noun)|Eurafrican|European|African +eurasia|1 +(noun)|Eurasia|continent +eurasian|2 +(adj)|Eurasian|Eurasiatic|continent +(noun)|Eurasian|European|Asian|Asiatic +eurasian badger|1 +(noun)|Eurasian badger|Meles meles|badger +eurasian green toad|1 +(noun)|Eurasian green toad|Bufo viridis|true toad +eurasian hamster|1 +(noun)|Eurasian hamster|Cricetus cricetus|hamster +eurasian kingfisher|1 +(noun)|Eurasian kingfisher|Alcedo atthis|kingfisher +eurasian otter|1 +(noun)|Eurasian otter|Lutra lutra|otter +eurasian woodcock|1 +(noun)|Eurasian woodcock|Scolopax rusticola|woodcock +eurasiatic|1 +(adj)|Eurasian|Eurasiatic|continent +eureka|2 +(noun)|constantan|Eureka|copper-base alloy +(noun)|Eureka|town +eurhythmics|1 +(noun)|eurythmy|eurhythmy|eurythmics|motion|movement|move|motility|diversion|recreation +eurhythmy|1 +(noun)|eurythmy|eurythmics|eurhythmics|motion|movement|move|motility|diversion|recreation +euripides|1 +(noun)|Euripides|dramatist|playwright +euro|1 +(noun)|monetary unit +eurobabble|1 +(noun)|Eurobabble|jargon +eurocentric|1 +(adj)|Eurocentric|Europocentric|partiality|partisanship +eurocentrism|1 +(noun)|Eurocentrism|partiality|partisanship +eurocurrency|1 +(noun)|Eurocurrency|currency +eurodollar|1 +(noun)|Eurodollar|United States dollar|Eurocurrency +euronithopod|1 +(noun)|Euronithopoda|suborder Euronithopoda|Ornithopoda|suborder Ornithopoda|animal order +euronithopoda|1 +(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order +europa|1 +(noun)|Europa|Galilean satellite|Galilean +europan|1 +(noun)|Europan|artificial language +europe|3 +(noun)|Europe|continent +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +(noun)|Europe|collection|aggregation|accumulation|assemblage +european|2 +(adj)|European|continent +(noun)|European|inhabitant|dweller|denizen|indweller +european ash|1 +(noun)|European ash|common European ash|Fraxinus excelsior|ash|ash tree +european barberry|1 +(noun)|common barberry|European barberry|Berberis vulgaris|barberry +european bean|1 +(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +european beech|1 +(noun)|common beech|European beech|Fagus sylvatica|beech|beech tree +european beggar-ticks|1 +(noun)|European beggar-ticks|trifid beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +european bird cherry|1 +(noun)|hagberry tree|European bird cherry|common bird cherry|Prunus padus|bird cherry|bird cherry tree +european bittern|1 +(noun)|European bittern|Botaurus stellaris|bittern +european black alder|1 +(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder|alder tree +european black currant|1 +(noun)|black currant|European black currant|Ribes nigrum|currant|currant bush +european black grouse|1 +(noun)|European black grouse|heathfowl|Lyrurus tetrix|black grouse +european blackbird|1 +(noun)|blackbird|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush +european blueberry|1 +(noun)|bilberry|whortleberry|European blueberry|berry +european bog asphodel|1 +(noun)|European bog asphodel|Narthecium ossifragum|bog asphodel +european box|1 +(noun)|common box|European box|Buxus sempervirens|box|boxwood +european bream|1 +(noun)|European bream|Abramis brama|freshwater bream|bream +european brooklime|1 +(noun)|brooklime|European brooklime|Veronica beccabunga|marsh plant|bog plant|swamp plant +european brown bat|1 +(noun)|serotine|European brown bat|Eptesicus serotinus|vespertilian bat|vespertilionid +european catfish|1 +(noun)|European catfish|sheatfish|Silurus glanis|silurid|silurid fish +european central bank|1 +(noun)|European Central Bank|central bank +european chestnut|1 +(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut|chestnut tree +european community|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +european corn borer|1 +(noun)|corn borer|European corn borer|corn borer moth|Pyrausta nubilalis|pyralid|pyralid moth +european country|1 +(noun)|European country|European nation|country|state|land +european cranberry|1 +(noun)|European cranberry|small cranberry|Vaccinium oxycoccus|cranberry +european cranberry bush|1 +(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub|bush +european cranberrybush|1 +(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub|bush +european creeper|1 +(noun)|European creeper|Certhia familiaris|creeper|tree creeper +european cuckoo|1 +(noun)|European cuckoo|Cuculus canorus|cuckoo +european curlew|1 +(noun)|European curlew|Numenius arquata|curlew +european dewberry|1 +(noun)|European dewberry|Rubus caesius|dewberry|dewberry bush|running blackberry +european dogtooth|1 +(noun)|European dogtooth|Erythronium dens-canis|dogtooth violet|dogtooth|dog's-tooth violet +european dune grass|1 +(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass +european economic community|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +european elder|1 +(noun)|bourtree|black elder|common elder|elderberry|European elder|Sambucus nigra|elder|elderberry bush +european elk|1 +(noun)|elk|European elk|moose|Alces alces|deer|cervid +european elm|1 +(noun)|English elm|European elm|Ulmus procera|elm|elm tree +european field elm|1 +(noun)|smooth-leaved elm|European field elm|Ulmus carpinifolia|elm|elm tree +european fire salamander|1 +(noun)|European fire salamander|Salamandra salamandra|salamander +european flatfish|1 +(noun)|European flatfish|Platichthys flesus|righteye flounder|righteyed flounder +european fly honeysuckle|1 +(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle +european gallinule|1 +(noun)|European gallinule|Porphyrio porphyrio|purple gallinule +european goatsucker|1 +(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker|nightjar|caprimulgid +european hackberry|1 +(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry|nettle tree +european hare|1 +(noun)|European hare|Lepus europaeus|hare +european honeysuckle|1 +(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle +european hop|1 +(noun)|common hop|common hops|bine|European hop|Humulus lupulus|hop|hops +european hornbeam|1 +(noun)|European hornbeam|Carpinus betulus|hornbeam +european house cricket|1 +(noun)|European house cricket|Acheta domestica|cricket +european ladies' tresses|1 +(noun)|European ladies' tresses|Spiranthes spiralis|ladies' tresses|lady's tresses +european larch|1 +(noun)|European larch|Larix decidua|larch|larch tree +european law enforcement organisation|1 +(noun)|Europol|European Law Enforcement Organisation|police|police force|constabulary|law +european lemming|1 +(noun)|European lemming|Lemmus lemmus|lemming +european lobster|2 +(noun)|European lobster|lobster +(noun)|European lobster|Homarus vulgaris|true lobster +european magpie|1 +(noun)|European magpie|Pica pica|magpie +european mountain ash|1 +(noun)|rowan|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash +european nation|1 +(noun)|European country|European nation|country|state|land +european nightjar|1 +(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker|nightjar|caprimulgid +european nut pine|1 +(noun)|stone pine|umbrella pine|European nut pine|Pinus pinea|pine|pine tree|true pine +european nuthatch|1 +(noun)|European nuthatch|Sitta europaea|nuthatch|nutcracker +european olive tree|1 +(noun)|olive|European olive tree|Olea europaea|olive tree +european parsley fern|1 +(noun)|European parsley fern|mountain parsley fern|Cryptogramma crispa|rock brake +european pasqueflower|1 +(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower|pasque flower +european perch|1 +(noun)|European perch|Perca fluviatilis|perch +european plan|1 +(noun)|European plan|continental plan|hotel plan|meal plan +european quaking aspen|1 +(noun)|quaking aspen|European quaking aspen|Populus tremula|aspen +european rabbit|1 +(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit|coney|cony +european raspberry|1 +(noun)|wild raspberry|European raspberry|framboise|Rubus idaeus|red raspberry +european recovery program|1 +(noun)|Marshall Plan|European Recovery Program|foreign aid +european red elder|1 +(noun)|European red elder|red-berried elder|Sambucus racemosa|elder|elderberry bush +european roller|1 +(noun)|European roller|Coracias garrulus|roller +european russia|1 +(noun)|European Russia|Russia|Russian Federation +european sandpiper|1 +(noun)|European sandpiper|Actitis hypoleucos|sandpiper +european sanicle|1 +(noun)|European sanicle|Sanicula Europaea|sanicle|snakeroot +european sea bream|1 +(noun)|European sea bream|Pagellus centrodontus|sea bream|bream +european sea eagle|1 +(noun)|ern|erne|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle +european shrike|1 +(noun)|European shrike|Lanius excubitor|butcherbird +european silver fir|1 +(noun)|European silver fir|Christmas tree|Abies alba|silver fir +european smelt|2 +(noun)|European smelt|sparling|smelt +(noun)|sparling|European smelt|Osmerus eperlanus|smelt +european sole|1 +(noun)|European sole|Solea solea|sole +european spider crab|1 +(noun)|European spider crab|king crab|Maja squinado|spider crab +european swift|1 +(noun)|European swift|Apus apus|swift +european toad|1 +(noun)|European toad|Bufo bufo|true toad +european tortoise|1 +(noun)|European tortoise|Testudo graeca|tortoise +european turkey oak|1 +(noun)|European turkey oak|turkey oak|Quercus cerris|oak|oak tree +european union|1 +(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization|world organisation|international organization|international organisation|global organization +european water ouzel|1 +(noun)|European water ouzel|Cinclus aquaticus|water ouzel|dipper +european water shrew|1 +(noun)|European water shrew|Neomys fodiens|water shrew +european white birch|1 +(noun)|silver birch|common birch|European white birch|Betula pendula|birch|birch tree +european white lily|1 +(noun)|European white lily|Nymphaea alba|water lily +european wildcat|1 +(noun)|European wildcat|catamountain|Felis silvestris|wildcat +european wolf spider|1 +(noun)|European wolf spider|tarantula|Lycosa tarentula|wolf spider|hunting spider +european wood mouse|1 +(noun)|European wood mouse|Apodemus sylvaticus|field mouse|fieldmouse +european woolly thistle|1 +(noun)|European woolly thistle|Cirsium eriophorum|woolly thistle|Cirsium flodmanii +europeanisation|1 +(noun)|Europeanization|Europeanisation|assimilation|absorption +europeanise|2 +(verb)|Europeanize|Europeanise|change|alter|modify +(verb)|Europeanize|Europeanise|change|alter|modify +europeanization|1 +(noun)|Europeanization|Europeanisation|assimilation|absorption +europeanize|2 +(verb)|Europeanize|Europeanise|change|alter|modify +(verb)|Europeanize|Europeanise|change|alter|modify +europium|1 +(noun)|Eu|atomic number 63|metallic element|metal +europocentric|1 +(adj)|Eurocentric|Europocentric|partiality|partisanship +europol|1 +(noun)|Europol|European Law Enforcement Organisation|police|police force|constabulary|law +eurotiales|1 +(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order +eurotium|1 +(noun)|Eurotium|genus Eurotium|fungus genus +euryale|2 +(noun)|Euryale|Gorgon +(noun)|Euryale|genus Euryale|echinoderm genus +euryalida|1 +(noun)|Euryalida|subclass Euryalida|class +eurydice|1 +(noun)|Eurydice|mythical being +eurylaimi|1 +(noun)|Eurylaimi|suborder Eurylaimi|animal order +eurylaimidae|1 +(noun)|Eurylaimidae|family Eurylaimidae|bird family +eurypterid|1 +(noun)|arthropod +eurypterida|1 +(noun)|Eurypterida|order Eurypterida|animal order +eurythmics|1 +(noun)|eurythmy|eurhythmy|eurhythmics|motion|movement|move|motility|diversion|recreation +eurythmy|1 +(noun)|eurhythmy|eurythmics|eurhythmics|motion|movement|move|motility|diversion|recreation +eusebius|1 +(noun)|Eusebius|Eusebius of Caesarea|bishop|historian|historiographer +eusebius hieronymus|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +eusebius of caesarea|1 +(noun)|Eusebius|Eusebius of Caesarea|bishop|historian|historiographer +eusebius sophronius hieronymus|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +euskadi ta askatasuna|1 +(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization|terrorist group|foreign terrorist organization|FTO +eusporangiate|1 +(adj)|eusporangiate +eusporangium|1 +(noun)|sporangium|spore case|spore sac +eustachian tube|1 +(noun)|Eustachian tube|auditory tube|salpinx +eustachio|1 +(noun)|Eustachio|Bartolommeo Eustachio|anatomist +eustoma|1 +(noun)|Eustoma|genus Eustoma|dicot genus|magnoliopsid genus +eustoma grandiflorum|1 +(noun)|prairie gentian|tulip gentian|bluebell|Eustoma grandiflorum|wildflower|wild flower +eutamias|1 +(noun)|Eutamias|genus Eutamias|mammal genus +eutamius asiaticus|1 +(noun)|baronduki|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +eutamius sibiricus|1 +(noun)|baronduki|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel +eutectic|1 +(noun)|mixture +eutectoid steel|1 +(noun)|carbon steel +euterpe|2 +(noun)|Euterpe|genus Euterpe|monocot genus|liliopsid genus +(noun)|Euterpe|Muse +euterpe oleracea|1 +(noun)|cabbage palm|Euterpe oleracea|palm|palm tree +euthanasia|1 +(noun)|mercy killing|killing|kill|putting to death +eutheria|1 +(noun)|Eutheria|subclass Eutheria|class +eutherian|2 +(adj)|class +(noun)|placental|placental mammal|eutherian mammal|mammal +eutherian mammal|1 +(noun)|placental|placental mammal|eutherian|mammal +euthynnus|1 +(noun)|Euthynnus|genus Euthynnus|fish genus +euthynnus pelamis|1 +(noun)|skipjack|skipjack tuna|Euthynnus pelamis|scombroid|scombroid fish +euxine sea|1 +(noun)|Black Sea|Euxine Sea|sea +ev|1 +(noun)|electron volt|eV|work unit|heat unit|energy unit +eva braun|1 +(noun)|Braun|Eva Braun|mistress|kept woman|fancy woman +eva le gallienne|1 +(noun)|Le Gallienne|Eva Le Gallienne|actress +evacuant|1 +(adj)|cathartic|purgative|laxative +evacuate|5 +(verb)|move +(verb)|empty +(verb)|displace|force out +(verb)|exhaust|empty +(verb)|void|empty|excrete|egest|eliminate|pass +evacuated|1 +(adj)|exhausted +evacuation|3 +(noun)|emptying|voidance|removal|remotion +(noun)|withdrawal +(noun)|elimination|excretion|excreting|voiding|discharge|emission|expelling +evacuee|1 +(noun)|migrant|migrator +evade|4 +(verb)|hedge|fudge|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid +(verb)|elude|bilk|escape|get away|break loose +(verb)|act|move +(verb)|get off|get away|get by|get out|escape +evaluate|1 +(verb)|measure|valuate|assess|appraise|value|judge +evaluation|2 +(noun)|rating|judgment|judgement|assessment +(noun)|valuation|rating|appraisal|assessment +evaluative|1 +(adj)|appraising|critical +evaluator|1 +(noun)|judge|authority +evanesce|1 +(verb)|fade|blow over|pass off|fleet|pass|disappear|vanish|go away +evanescence|1 +(noun)|disappearance +evanescent|1 +(adj)|impermanent |temporary +evangel|1 +(noun)|Gospel|Gospels|sacred text|sacred writing|religious writing|religious text +evangelical|3 +(adj)|Protestantism +(adj)|sacred text|sacred writing|religious writing|religious text +(adj)|evangelistic|enthusiastic +evangelical and reformed church|1 +(noun)|Evangelical and Reformed Church|Protestant denomination +evangelical united brethren church|1 +(noun)|Evangelical United Brethren Church|Methodist denomination +evangelicalism|1 +(noun)|Protestantism +evangelise|2 +(verb)|evangelize|preach|prophesy +(verb)|evangelize|convert +evangelism|1 +(noun)|sermon|discourse|preaching +evangelist|2 +(noun)|revivalist|gospeler|gospeller|preacher|preacher man|sermonizer|sermoniser +(noun)|Evangelist|spiritual leader +evangelista torricelli|1 +(noun)|Torricelli|Evangelista Torricelli|physicist +evangelistic|2 +(adj)|sermon|discourse|preaching +(adj)|evangelical|enthusiastic +evangelize|2 +(verb)|evangelise|preach|prophesy +(verb)|evangelise|convert +evans|2 +(noun)|Evans|Herbert McLean Evans|anatomist +(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist|archaeologist +evansville|1 +(noun)|Evansville|city|metropolis|urban center +evaporable|1 +(adj)|vaporific|vaporizable|volatilizable|volatilisable|volatile +evaporate|3 +(verb)|vaporize|vaporise|change integrity +(verb)|vaporise|change|alter|modify +(verb)|vaporise|change +evaporated|1 +(adj)|gaseous +evaporated milk|1 +(noun)|milk|concentrate +evaporation|2 +(noun)|vaporization|vaporisation|vapor|vapour|phase change|phase transition|state change|physical change +(noun)|dehydration|desiccation|drying up|extraction +evaporative|1 +(adj)|phase change|phase transition|state change|physical change +evaporative cooler|1 +(noun)|cooling system|cooling +evaporite|1 +(noun)|sediment|deposit +evaporometer|1 +(noun)|atmometer|measuring instrument|measuring system|measuring device +evariste galois|1 +(noun)|Galois|Evariste Galois|mathematician +evasion|4 +(noun)|equivocation|misrepresentation|deceit|deception +(noun)|nonpayment|commerce|commercialism|mercantilism +(noun)|escape|dodging|negligence|carelessness|neglect|nonperformance +(noun)|escape|flight +evasive|3 +(adj)|equivocal |ambiguous +(adj)|protective +(adj)|elusive|artful +evasive action|1 +(noun)|maneuver|manoeuvre|evasion +evasive answer|1 +(noun)|answer +evasiveness|1 +(noun)|equivocation|prevarication|untruthfulness|ambiguity|equivocalness +eve|4 +(noun)|Eve|woman|adult female +(noun)|day|twenty-four hours|solar day|mean solar day +(noun)|time period|period of time|period +(noun)|evening|eventide|day|daytime|daylight +evelyn arthur saint john waugh|1 +(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer|author +evelyn waugh|1 +(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer|author +even|10 +(adj)|even +(adj)|fifty-fifty|equal +(adj)|even |flat|level|plane|flatbottom|flatbottomed|flush|justified|level|true|straight|smooth|steady +(adj)|regular|symmetrical |symmetric +(adj)|regular|steady +(adj)|tied|level|equal +(verb)|flush|level|even out|change surface +(verb)|even out|change|alter|modify +(verb)|even out|regularize|regularise|even out|even off|even up +(adv)|yet|still +even-pinnate|1 +(adj)|abruptly-pinnate|paripinnate|compound +even-pinnate leaf|1 +(noun)|abruptly-pinnate leaf|pinnate leaf +even-tempered|1 +(adj)|equable|good-tempered|placid|good-natured +even-toed|1 +(adj)|artiodactyl|artiodactylous|animal order +even-toed ungulate|1 +(noun)|artiodactyl|artiodactyl mammal|ungulate|hoofed mammal +even a little|1 +(adv)|in the least +even as|1 +(adv)|just as +even chance|1 +(noun)|tossup|toss-up|luck|fortune|chance|hazard +even off|1 +(verb)|compensate|counterbalance|correct|even out|even up|balance|equilibrate|equilibrize|equilibrise +even out|4 +(verb)|compensate|counterbalance|correct|even off|even up|balance|equilibrate|equilibrize|equilibrise +(verb)|flush|level|even|change surface +(verb)|even|change|alter|modify +(verb)|even|regularize|regularise +even so|1 +(adv)|however|nevertheless|withal|still|yet|all the same|nonetheless|notwithstanding +even spacing|1 +(noun)|regularity +even up|2 +(verb)|compensate|counterbalance|correct|even out|even off|balance|equilibrate|equilibrize|equilibrise +(verb)|square up|jog|square +evenfall|1 +(noun)|twilight|dusk|gloaming|nightfall|fall|crepuscule|crepuscle|hour|time of day +evenhanded|1 +(adj)|equitable |just +evenhandedly|1 +(adv)|fairly|fair|without favoring one party|without favouring one party +evening|3 +(noun)|eve|eventide|day|daytime|daylight +(noun)|time period|period of time|period +(noun)|time period|period of time|period +evening-primrose family|1 +(noun)|Onagraceae|family Onagraceae|rosid dicot family +evening-snow|1 +(noun)|Linanthus dichotomus|phlox +evening bag|1 +(noun)|bag|handbag|pocketbook|purse +evening clothes|1 +(noun)|formalwear|eveningwear|evening dress|attire|garb|dress +evening dress|1 +(noun)|formalwear|eveningwear|evening clothes|attire|garb|dress +evening gown|1 +(noun)|dinner dress|dinner gown|tea gown|gown|formalwear|eveningwear|evening dress|evening clothes +evening grosbeak|1 +(noun)|Hesperiphona vespertina|grosbeak|grossbeak +evening lychnis|1 +(noun)|white campion|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene|campion|catchfly +evening prayer|1 +(noun)|Evening Prayer|evensong|prayer +evening primrose|1 +(noun)|herb|herbaceous plant +evening shift|2 +(noun)|swing shift|shift|work shift|duty period +(noun)|shift +evening shirt|1 +(noun)|dress shirt|shirt +evening star|1 +(noun)|Hesperus|Vesper|planet +evening trumpet flower|1 +(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|Gelsemium sempervirens|vine +eveningwear|1 +(noun)|formalwear|evening dress|evening clothes|attire|garb|dress +evenk|1 +(noun)|Tungus|Evenk|Tungusic +evenki|2 +(noun)|Evenki|Ewenki|Oriental|oriental person +(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic|Tungusic language +evenly|1 +(adv)|equally +evenness|2 +(noun)|invariability|regularity +(noun)|equality +evensong|2 +(noun)|vespers|canonical hour +(noun)|Evening Prayer|prayer +event|3 +(noun)|case|circumstance +(noun)|physical phenomenon +(noun)|consequence|effect|outcome|result|issue|upshot|phenomenon +event planner|1 +(noun)|assistant|helper|help|supporter +eventful|2 +(adj)|eventful |lively +(adj)|consequential|important |of import +eventide|1 +(noun)|evening|eve|day|daytime|daylight +eventration|1 +(noun)|hernia|herniation +eventual|1 +(adj)|ultimate +eventuality|1 +(noun)|contingency|contingence|happening|occurrence|natural event +eventually|2 +(adv)|yet|sooner or later|in time|one of these days +(adv)|finally|at length +eventuate|1 +(verb)|turn out|come out +ever|3 +(adv)|of all time +(adv)|always|e'er +(adv)|ever so +ever-changing|1 +(adj)|changing|dynamic |dynamical +ever-present|1 +(adj)|present +ever so|1 +(adv)|ever +everest|1 +(noun)|Everest|Mount Everest|Mt. Everest|mountain peak +everglade state|1 +(noun)|Florida|Sunshine State|Everglade State|FL|American state +everglades|1 +(noun)|Everglades|swamp|swampland +everglades national park|1 +(noun)|Everglades National Park|national park +evergreen|2 +(adj)|evergreen |coniferous|cone-bearing +(noun)|evergreen plant|vascular plant|tracheophyte +evergreen beech|1 +(noun)|southern beech|tree +evergreen bittersweet|1 +(noun)|Euonymus fortunei radicans|Euonymus radicans vegetus|vine +evergreen blueberry|1 +(noun)|Vaccinium myrsinites|blueberry|blueberry bush +evergreen cherry|1 +(noun)|holly-leaved cherry|holly-leaf cherry|islay|Prunus ilicifolia|wild plum|wild plum tree +evergreen grass|1 +(noun)|tall oat grass|tall meadow grass|false oat|French rye|Arrhenatherum elatius|grass +evergreen huckleberry|1 +(noun)|Vaccinium ovatum|blueberry|blueberry bush +evergreen magnolia|1 +(noun)|southern magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia +evergreen millet|1 +(noun)|Johnson grass|Aleppa grass|means grass|Sorghum halepense|Sorghum halapense|sorghum +evergreen oak|1 +(noun)|holm oak|holm tree|holly-leaved oak|Quercus ilex|oak|oak tree +evergreen plant|1 +(noun)|evergreen|vascular plant|tracheophyte +evergreen state|1 +(noun)|Washington|Evergreen State|WA|American state +evergreen thorn|1 +(noun)|Crataegus oxyacantha|hawthorn|haw +evergreen winterberry|1 +(noun)|inkberry|gallberry|gall-berry|Ilex glabra|holly +evergreen wood fern|2 +(noun)|Christmas fern|canker brake|dagger fern|Polystichum acrostichoides|fern +(noun)|marginal wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern|wood-fern|woodfern +everlasting|6 +(adj)|ageless|eternal|perpetual|unending|unceasing|permanent |lasting +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed |curst +(adj)|eternal|lasting|eonian|aeonian|immortal +(adj)|arrant|complete|consummate|double-dyed|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +(adj)|continual +(noun)|everlasting flower|composite|composite plant +everlasting flower|1 +(noun)|everlasting|composite|composite plant +everlasting pea|1 +(noun)|vine +everlastingly|1 +(adv)|eternally|forever|evermore +everlastingness|1 +(noun)|lastingness|durability|enduringness|strength +evermore|2 +(adv)|forevermore +(adv)|everlastingly|eternally|forever +evernia|1 +(noun)|Evernia|genus Evernia|fungus genus +evers|1 +(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader|civil rights worker|civil rights activist +eversion|2 +(noun)|position|posture|attitude +(noun)|inversion|everting|motion|movement|move|motility +evert|2 +(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player +(verb)|turn|turn over +everting|1 +(noun)|inversion|eversion|motion|movement|move|motility +every|2 +(adj)|all +(adj)|all +every bit|1 +(adv)|equally|as +every day|5 +(adj)|daily|day-to-day|day-after-day|regular +(adj)|everyday|mundane|quotidian|routine|unremarkable|workaday|ordinary +(adj)|casual|everyday|informal +(adj)|everyday|familiar +(adv)|daily|each day +every last|1 +(adj)|all +every month|1 +(adv)|monthly|each month +every night|1 +(adv)|nightly +every now and then|1 +(adv)|every so often +every quarter|1 +(adv)|quarterly +every so often|1 +(adv)|every now and then +every week|1 +(adv)|hebdomadally|weekly|each week +every which way|2 +(adv)|randomly|indiscriminately|haphazardly|willy-nilly|arbitrarily|at random +(adv)|helter-skelter +every year|1 +(adv)|annually|yearly|each year +everyday|3 +(adj)|mundane|quotidian|routine|unremarkable|workaday|ordinary +(adj)|casual|informal +(adj)|familiar +everydayness|1 +(noun)|commonness|commonplaceness|ordinariness +everyman|1 +(noun)|commoner|common man|common person +everyplace|1 +(adv)|everywhere|all over +everywhere|1 +(adv)|everyplace|all over +evict|2 +(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +(verb)|force out|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +eviction|2 +(noun)|constructive eviction|compulsion|coercion +(noun)|dispossession|legal ouster|due process|due process of law +evidence|6 +(noun)|grounds|information +(noun)|indication|indicant +(noun)|information|info +(verb)|attest|certify|manifest|demonstrate|testify|bear witness|prove|show +(verb)|testify|bear witness|prove|show|inform +(verb)|tell|inform +evidenced|1 +(adj)|proved |proven +evident|2 +(adj)|apparent|manifest|patent|plain|obvious +(adj)|discernible|observable|noticeable +evidential|1 +(adj)|evidentiary|significant |important +evidentiary|2 +(adj)|indication|indicant +(adj)|evidential|significant |important +evidently|1 +(adv)|obviously|manifestly|patently|apparently|plainly|plain +evil|7 +(adj)|evil |wicked|atrocious|flagitious|grievous|heinous|monstrous|bad|immoral|black|dark|sinister|corruptive|perversive|pestiferous|demonic|diabolic|diabolical|fiendish|hellish|infernal|satanic|unholy|despicable|ugly|vile|unworthy|devilish|diabolic|diabolical|mephistophelian|mephistophelean|evil-minded|bad|immoral|offensive|unrighteous|wicked|wrong +(adj)|depraved|vicious|wicked +(adj)|harmful|injurious|malign +(adj)|malefic|malevolent|malign|maleficent +(noun)|immorality|wickedness|iniquity|transgression|evildoing +(noun)|bad|badness +(noun)|evilness|immorality +evil-minded|1 +(adj)|evil |wicked +evil eye|1 +(noun)|look|looking|looking at +evil spirit|1 +(noun)|spirit|disembodied spirit +evildoer|1 +(noun)|sinner|wrongdoer|offender +evildoing|1 +(noun)|transgression|wrongdoing|wrongful conduct|misconduct|actus reus +evilly|1 +(adv)|wickedly +evilness|1 +(noun)|evil|immorality +evince|1 +(verb)|express|show|convey|impart +eviscerate|5 +(adj)|injured +(verb)|resect|remove|take|take away|withdraw +(verb)|empty +(verb)|disembowel|draw|remove|take|take away|withdraw +(verb)|devitalize|devitalise +evisceration|3 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|disembowelment|removal|remotion +(noun)|devaluation +evitable|1 +(adj)|evitable |avoidable|avertible|avertable +evocation|3 +(noun)|imagination|imaging|imagery|mental imagery +(noun)|summoning|conjuring|conjuration|conjury|invocation +(noun)|induction|elicitation|stimulation|stimulus|stimulant|input +evocative|1 +(adj)|redolent|redolent of|remindful|reminiscent|reminiscent of|mindful |aware +evoke|5 +(verb)|arouse|elicit|enkindle|kindle|fire|raise|provoke|make|create +(verb)|provoke|call forth|kick up|cause|do|make +(verb)|educe|elicit|extract|draw out|interpret|construe|see +(verb)|raise|conjure|conjure up|invoke|stir|call down|arouse|bring up|put forward|call forth|make|create +(verb)|suggest|paint a picture|express|show|evince +evoked|1 +(adj)|elicited|induced +evoked potential|1 +(noun)|electric potential|potential|potential difference|potential drop|voltage +evolution|2 +(noun)|development|process +(noun)|phylogeny|phylogenesis|organic process|biological process +evolutionary|1 +(adj)|organic process|biological process +evolutionary trend|1 +(noun)|drift|trend|movement +evolve|3 +(verb)|germinate|develop|create by mental act|create mentally +(verb)|develop +(verb)|develop|acquire|change +ew|1 +(noun)|electronic warfare|EW|military action|action +ewe|3 +(noun)|Ewe|African +(noun)|Ewe|Kwa +(noun)|sheep +ewenki|2 +(noun)|Evenki|Ewenki|Oriental|oriental person +(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic|Tungusic language +ewer|1 +(noun)|pitcher|vessel +ewing's sarcoma|1 +(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma +ewing's tumor|1 +(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma +ewing's tumour|1 +(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma +ex|3 +(adj)|antique|demode|old-fashioned|old-hat|outmoded|passe|passee|unfashionable |unstylish +(noun)|ex-husband|man|adult male +(noun)|exwife|woman|adult female +ex-directory|1 +(adj)|not listed|unlisted +ex-gambler|1 +(noun)|gambler +ex-husband|1 +(noun)|ex|man|adult male +ex-mayor|1 +(noun)|mayor|city manager +ex-president|1 +(noun)|president +ex-serviceman|1 +(noun)|veteran|vet|serviceman|military man|man|military personnel +ex-spouse|1 +(noun)|adult|grownup +ex gratia|1 +(adj)|optional +ex libris|1 +(noun)|bookplate|gummed label|sticker|paster +ex officio|2 +(adj)|official +(adv)|by right of office +ex post facto|1 +(adj)|retroactive|retro|retrospective +ex tempore|2 +(adv)|off-hand +(adv)|extemporaneously|extemporarily|extempore +ex vivo|2 +(adj)|in vitro +(adv)|in vitro +exacerbate|2 +(verb)|worsen|aggravate|exasperate|change|alter|modify +(verb)|exasperate|aggravate|anger +exacerbating|1 +(adj)|aggravating|exasperating|intensifying +exacerbation|2 +(noun)|aggravation|intensification +(noun)|exasperation +exact|4 +(adj)|exact |direct|verbatim|literal|literal|word-for-word|photographic|rigorous|strict|mathematical|perfect|accurate|literal|perfect|precise +(adj)|accurate|precise|correct +(verb)|demand|claim +(verb)|claim|take|necessitate|ask|postulate|need|require|take|involve|call for|demand +exacta|1 +(noun)|perfecta|bet|wager +exacting|3 +(adj)|fastidious +(adj)|stern|strict|demanding +(adj)|exigent|demanding +exaction|1 +(noun)|demand +exactitude|1 +(noun)|exactness|accuracy|truth +exactly|3 +(adv)|precisely|just +(adv)|precisely|on the nose|on the dot|on the button +(adv)|precisely|incisively +exactness|1 +(noun)|exactitude|accuracy|truth +exacum|1 +(noun)|Exacum|genus Exacum|dicot genus|magnoliopsid genus +exacum affine|1 +(noun)|Persian violet|Exacum affine|houseplant +exaeretodon|1 +(noun)|Exaeretodon|genus Exaeretodon|reptile genus +exaggerate|2 +(verb)|overstate|overdraw|hyperbolize|hyerbolise|magnify|amplify|misinform|mislead +(verb)|overdo|make|do +exaggerated|3 +(adj)|overdone|overstated|immoderate +(adj)|magnified|enlarged|increased +(adj)|hyperbolic|inflated|increased +exaggeratedly|1 +(adv)|hyperbolically +exaggeration|3 +(noun)|hyperbole|trope|figure of speech|figure|image +(noun)|increase|step-up +(noun)|overstatement|magnification|misrepresentation|deceit|deception +exalt|4 +(verb)|laud|extol|glorify|proclaim|praise +(verb)|exhilarate|inebriate|thrill|beatify|elate|lift up|uplift|pick up|intoxicate +(verb)|inspire|animate|invigorate|enliven|stimulate|shake|shake up|excite|stir +(verb)|lift|raise|elevate +exaltation|4 +(noun)|ecstasy|rapture|transport|raptus|emotional state|spirit +(noun)|celestial point +(noun)|flock +(noun)|deification|apotheosis|worship +exalted|2 +(adj)|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble +(adj)|high +exalting|1 +(adj)|ennobling|inspiring +exam|1 +(noun)|examination|test|communication|communicating +exam paper|1 +(noun)|test paper|examination paper|question sheet|examination|exam|test +examen|2 +(noun)|examination|introspection|self-contemplation|self-examination +(noun)|criticism|critique +examination|5 +(noun)|scrutiny|investigation|investigating +(noun)|exam|test|communication|communicating +(noun)|interrogation|interrogatory|questioning|inquiring +(noun)|examen|introspection|self-contemplation|self-examination +(noun)|testing|investigation|investigating +examination paper|1 +(noun)|test paper|exam paper|question sheet|examination|exam|test +examine|5 +(verb)|analyze|analyse|study|canvass|canvas +(verb)|see +(verb)|probe|investigate|look into +(verb)|question|query +(verb)|test|prove|try|try out|essay|judge +examinee|1 +(noun)|testee|respondent|responder|answerer +examiner|2 +(noun)|tester|quizzer|inquirer|enquirer|questioner|querier|asker +(noun)|inspector|investigator +example|6 +(noun)|illustration|instance|representative|information +(noun)|model|representation|mental representation|internal representation +(noun)|exemplar|model|good example|ideal +(noun)|deterrent example|lesson|object lesson|admonition|monition|warning|word of advice +(noun)|case|instance|happening|occurrence|natural event +(noun)|exercise|lesson +exanimate|1 +(adj)|lifeless|dead +exanthem|1 +(noun)|exanthema|skin eruption|eruption +exanthema|1 +(noun)|exanthem|skin eruption|eruption +exanthema subitum|1 +(noun)|roseola infantum|roseola infantilis|pseudorubella|disease +exarch|3 +(noun)|bishop +(noun)|bishop +(noun)|viceroy|vicereine +exarchate|1 +(noun)|eparchy|diocese|bishopric +exasperate|3 +(verb)|exacerbate|aggravate|anger +(verb)|infuriate|incense|anger +(verb)|worsen|aggravate|exacerbate|change|alter|modify +exasperated|1 +(adj)|cheesed off|browned off|displeased +exasperating|2 +(adj)|infuriating|maddening|vexing|displeasing +(adj)|aggravating|exacerbating|intensifying +exasperation|2 +(noun)|aggravation|annoyance|chafe|vexation +(noun)|annoyance|annoying|irritation|vexation +exaugural|1 +(adj)|exaugural |valedictory +exboyfriend|1 +(noun)|man|adult male +excalibur|1 +(noun)|Excalibur|sword|blade|brand|steel +excavate|4 +(verb)|unearth|uncover|bring out|unveil|reveal +(verb)|dig up|turn up|obtain +(verb)|hollow|hollow out|core out +(verb)|dig|hollow|remove|take|take away|withdraw +excavation|4 +(noun)|digging|dig|creating by removal +(noun)|dig|archeological site|site|land site +(noun)|hole in the ground|artifact|artefact +(noun)|mining|production +excavator|2 +(noun)|workman|working man|working person +(noun)|power shovel|digger|shovel|machine +exceed|3 +(verb)|transcend|surpass +(verb)|transcend|overstep|pass|go past|top|excel|stand out|surpass +(verb)|surpass|outstrip|outmatch|outgo|outdo|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +exceedance|1 +(noun)|probability|chance +exceeding|1 +(adj)|exceptional|olympian|prodigious|surpassing|extraordinary +exceedingly|1 +(adv)|passing|extremely +excel|1 +(verb)|stand out|surpass +excel at|1 +(verb)|shine at|excel|stand out|surpass +excellence|2 +(noun)|quality +(noun)|feature|characteristic +excellency|1 +(noun)|Excellency|important person|influential person|personage +excellent|1 +(adj)|first-class|fantabulous|superior +excelsior|1 +(noun)|wood shavings|packing material|packing|wadding +except|2 +(verb)|demur|object +(verb)|exclude|leave out|leave off|omit|take out|eliminate|get rid of|do away with +exception|3 +(noun)|exclusion|elision|omission +(noun)|example|illustration|instance|representative +(noun)|objection +exceptionable|1 +(adj)|objectionable|unacceptable +exceptional|3 +(adj)|exceeding|olympian|prodigious|surpassing|extraordinary +(adj)|especial|particular|special|uncommon +(adj)|abnormal +excerpt|2 +(noun)|extract|selection|passage +(verb)|extract|take out|choose|take|select|pick out +excess|5 +(adj)|extra|redundant|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary |unneeded +(noun)|surplus|surplusage|nimiety|overabundance|overmuch|overmuchness|superabundance +(noun)|excessiveness|inordinateness|immoderation|immoderateness +(noun)|surfeit|overabundance|fullness +(noun)|overindulgence|indulgence|indulging|pampering|humoring +excessive|2 +(adj)|inordinate|undue|unreasonable|immoderate +(adj)|extravagant|exuberant|overweening|unrestrained +excessively|1 +(adv)|overly|to a fault|too +excessiveness|1 +(noun)|excess|inordinateness|immoderation|immoderateness +exchange|16 +(noun)|chemical phenomenon +(noun)|conversation +(noun)|group action +(noun)|transaction|dealing|dealings +(noun)|central|telephone exchange|workplace|work +(noun)|workplace|work +(noun)|rally|group action +(noun)|interchange|commerce|commercialism|mercantilism +(noun)|substitution|commutation|change +(noun)|capture +(noun)|capture +(verb)|change|interchange|transfer +(verb)|change|commute|convert|replace +(verb)|switch over|switch|change by reversal|turn|reverse +(verb)|transfer|reassign +(verb)|commute|convert|change|alter|modify +exchange premium|1 +(noun)|agio|agiotage|premium|charge +exchange rate|1 +(noun)|rate of exchange|rate|charge per unit +exchange transfusion|1 +(noun)|transfusion|blood transfusion +exchangeability|1 +(noun)|interchangeability|interchangeableness|fungibility|changeableness|changeability +exchangeable|3 +(adj)|exchangeable |commutable|substitutable|fungible|transposable|permutable|vicarious +(adj)|convertible |cashable|redeemable +(adj)|interchangeable|similar|standardized|standardised|replaceable +exchanged|1 +(adj)|changed +exchanger|1 +(noun)|money changer|money handler|money dealer +exchequer|1 +(noun)|treasury|funds|finances|monetary resource|cash in hand|pecuniary resource +excise|4 +(noun)|excise tax|indirect tax +(verb)|strike|expunge|delete|cancel +(verb)|tax +(verb)|cut out +excise tax|1 +(noun)|excise|indirect tax +exciseman|1 +(noun)|tax collector|taxman|collector of internal revenue|internal revenue agent|bureaucrat|administrative official +excision|4 +(noun)|deletion|cut|editing|redaction +(noun)|ablation|extirpation|cutting out|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|excommunication|banishment|proscription +(noun)|extirpation|deracination|pull|pulling +excitability|2 +(noun)|irritability|responsiveness|reactivity +(noun)|excitableness|volatility|emotionality|emotionalism +excitable|2 +(adj)|excitable |high-keyed|quick|warm|skittish|spooky|nervous +(adj)|irritable|sensitive +excitable area|1 +(noun)|motor area|motor region|motor cortex|Rolando's area|cortical area|cortical region +excitableness|1 +(noun)|excitability|volatility|emotionality|emotionalism +excitant|1 +(adj)|excitative|excitatory|stimulative +excitation|3 +(noun)|excitement|inflammation|fervor|fervour|emotional arousal +(noun)|innervation|irritation|arousal +(noun)|excitement|arousal|rousing +excitative|1 +(adj)|excitant|excitatory|stimulative +excitatory|1 +(adj)|excitant|excitative|stimulative +excite|8 +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|stimulate|affect|impact|bear upon|bear on|touch on|touch +(verb)|energize|energise|change|alter|modify +(verb)|stimulate|stir|sensitize|sensitise +(verb)|agitate|rouse|turn on|charge|commove|charge up|disturb|upset|trouble +(verb)|arouse|sex|turn on|wind up|stimulate|shake|shake up|stir +(verb)|stimulate|shake|shake up|stir|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|change|alter|modify +excited|4 +(adj)|excited |aflutter|nervous|agog|fevered|intoxicated|drunk|overexcited|stimulated|stirred|stirred up|aroused|teased|titillated|thrilled|thrillful|crazy|agitated +(adj)|aroused|emotional|worked up|agitated +(adj)|delirious|frantic|mad|unrestrained|wild +(adj)|activated|reactive +excitedly|1 +(adv)|with excitement +excitement|4 +(noun)|exhilaration|joy|joyousness|joyfulness +(noun)|excitation|inflammation|fervor|fervour|emotional arousal +(noun)|excitation|arousal|rousing +(noun)|agitation|turmoil|upheaval|hullabaloo|disturbance +exciting|2 +(adj)|exciting |breathless|breathtaking|elating|exhilarating|electric|galvanic|galvanizing|galvanising|electrifying|thrilling|glamorous|glamourous|heady|intoxicating|titillating|tickling|tingling|titillating|interesting|provocative|sexy|stimulating +(adj)|stimulating +exclaim|2 +(verb)|cry|cry out|outcry|call out|shout|express|verbalize|verbalise|utter|give tongue to +(verb)|proclaim|promulgate|declare +exclaiming|1 +(noun)|exclamation|utterance|vocalization +exclamation|3 +(noun)|exclaiming|utterance|vocalization +(noun)|complaint +(noun)|ecphonesis|rhetorical device +exclamation mark|1 +(noun)|exclamation point|punctuation|punctuation mark +exclamation point|1 +(noun)|exclamation mark|punctuation|punctuation mark +exclamatory|1 +(adj)|emphatic|forceful +exclude|5 +(verb)|except|leave out|leave off|omit|take out|eliminate|get rid of|do away with +(verb)|keep out|shut out|shut|prevent|keep +(verb)|miss|lack +(verb)|bar|debar|forbid|prohibit|interdict|proscribe|veto|disallow +(verb)|expel|eject|chuck out|throw out|kick out|turf out|boot out|turn out|move|displace +exclusion|4 +(noun)|situation|state of affairs +(noun)|excommunication|censure|rejection +(noun)|exception|elision|omission +(noun)|ejection|expulsion|riddance|banishment|proscription +exclusion principle|1 +(noun)|Pauli exclusion principle|law|law of nature +exclusionary rule|1 +(noun)|rule of evidence +exclusive|4 +(adj)|sole|unshared +(adj)|exclusive |inner|inside|inner|privileged|selective|white-shoe|alone|only +(adj)|single|undivided|concentrated +(noun)|scoop|report|news report|story|account|write up +exclusive right|1 +(noun)|prerogative|privilege|perquisite|right +exclusively|1 +(adv)|entirely|solely|alone|only +exclusiveness|1 +(noun)|clannishness|cliquishness|snobbery|snobbishness +excogitate|2 +(verb)|invent|contrive|devise|formulate|forge|create by mental act|create mentally +(verb)|chew over|think over|meditate|ponder|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +excogitation|2 +(noun)|thinking|thought|cerebration|intellection|mentation +(noun)|invention|innovation|conception|design|creativity|creativeness|creative thinking +excogitative|1 +(adj)|thoughtful +excogitator|1 +(noun)|thinker +excommunicate|2 +(verb)|curse|exclude|keep out|shut out|shut +(verb)|oust|throw out|drum out|boot out|kick out|expel +excommunication|2 +(noun)|exclusion|censure|rejection +(noun)|excision|banishment|proscription +excoriate|2 +(verb)|condemn|reprobate|decry|objurgate|denounce +(verb)|chafe|abrade|corrade|abrase|rub down|rub off +excoriation|2 +(noun)|abrasion|scratch|scrape|wound|lesion +(noun)|denunciation|denouncement +excrement|1 +(noun)|body waste|excretion|excreta|excretory product|waste|waste material|waste matter|waste product +excrescence|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|projection +(noun)|process|outgrowth|appendage|growth +excrescent|1 +(adj)|illness|unwellness|malady|sickness +excreta|1 +(noun)|body waste|excretion|excrement|excretory product|waste|waste material|waste matter|waste product +excrete|1 +(verb)|egest|eliminate|pass|discharge|expel|eject|release +excreting|1 +(noun)|elimination|evacuation|excretion|voiding|discharge|emission|expelling +excretion|2 +(noun)|elimination|evacuation|excreting|voiding|discharge|emission|expelling +(noun)|body waste|excreta|excrement|excretory product|waste|waste material|waste matter|waste product +excretory|1 +(adj)|discharge|emission|expelling +excretory organ|1 +(noun)|urinary organ|internal organ|viscus +excretory product|1 +(noun)|body waste|excretion|excreta|excrement|waste|waste material|waste matter|waste product +excruciate|2 +(verb)|torment|torture|rack|pain|anguish|hurt +(verb)|torture|torment|injure|wound +excruciating|1 +(adj)|agonizing|agonising|harrowing|torturing|torturous|torturesome|painful +excruciatingly|1 +(adv)|agonizingly|torturously +excruciation|2 +(noun)|agony|suffering|pain|hurting +(noun)|crucifixion|torture|torturing +exculpate|1 +(verb)|acquit|assoil|clear|discharge|exonerate|pronounce|label|judge +exculpated|1 +(adj)|absolved|clear|cleared|exonerated|vindicated|innocent |guiltless|clean-handed +exculpation|2 +(noun)|excuse|alibi|self-justification|defense|defence|vindication +(noun)|forgiveness|pardon +exculpatory|1 +(adj)|exculpatory |absolvitory|exonerative|forgiving|extenuating|justificative|justificatory|vindicatory|innocent|guiltless|clean-handed +excursion|2 +(noun)|jaunt|outing|junket|pleasure trip|expedition|sashay|journey|journeying +(noun)|digression|journey|journeying +excursion rate|1 +(noun)|rate|charge per unit +excursionist|1 +(noun)|sightseer|tripper|rubberneck|tourist|tourer|holidaymaker +excursive|1 +(adj)|digressive|discursive|rambling|indirect +excursus|1 +(noun)|digression|aside|divagation|parenthesis|message|content|subject matter|substance +excusable|2 +(adj)|excusable |justifiable +(adj)|forgivable|venial|pardonable +excusably|1 +(adv)|forgivably|pardonably +excusatory|1 +(adj)|apologetic |contrite|defensive|justificative|justificatory|self-deprecating +excuse|9 +(noun)|alibi|exculpation|self-justification|defense|defence|vindication +(noun)|note|short letter|line|billet +(noun)|apology|example|illustration|instance|representative +(verb)|pardon|forgive +(verb)|relieve|let off|exempt|absolve|justify|free +(verb)|explain|justify|vindicate +(verb)|apologize|apologise|justify|rationalize|rationalise|defend|support|fend for +(verb)|beg off|request|bespeak|call for|quest +(verb)|condone|forgive +excused|1 +(adj)|exempt +excuser|1 +(noun)|pardoner|forgiver|person|individual|someone|somebody|mortal|human|soul +exec|1 +(noun)|White House|EXEC|executive department +execrable|3 +(adj)|deplorable|miserable|woeful|wretched|inferior +(adj)|abominable|detestable|odious|hateful +(adj)|damnable|cursed |curst +execrate|2 +(verb)|abhor|loathe|abominate|hate|detest +(verb)|anathemize|comminate|anathemise|anathematize|anathematise|deplore +execration|3 +(noun)|abhorrence|abomination|detestation|loathing|odium|hate|hatred|disgust +(noun)|condemnation|curse|denunciation|denouncement +(noun)|object +executability|1 +(noun)|capability|capableness +executable|1 +(adj)|feasible|practicable|viable|workable|possible +executant|1 +(noun)|performer|performing artist +execute|7 +(verb)|put to death|kill|punish|penalize|penalise +(verb)|murder|slay|hit|dispatch|bump off|polish off|remove +(verb)|carry through|accomplish|carry out|action|fulfill|fulfil|complete|finish|effect|effectuate|bring about|set up +(verb)|enforce|implement|apply +(verb)|run|enforce|implement|apply +(verb)|perform|do +(verb)|sign +executed|1 +(adj)|dead +executing|1 +(noun)|execution|capital punishment|death penalty|corporal punishment +execution|7 +(noun)|executing|capital punishment|death penalty|corporal punishment +(noun)|performance|carrying out|carrying into action|action +(noun)|instruction execution|process +(noun)|execution of instrument|subscription +(noun)|writ of execution|court order +(noun)|implementation|carrying out|enforcement +(noun)|murder|slaying|homicide +execution of instrument|1 +(noun)|execution|subscription +execution sale|1 +(noun)|sheriff's sale|judicial sale|forced sale|sale|sales agreement +execution speed|1 +(noun)|speed|swiftness|fastness +executioner|1 +(noun)|public executioner|killer|slayer +executive|4 +(adj)|enforcement +(noun)|executive director|administrator|decision maker +(noun)|administration|governance|governing body|establishment|brass|organization|organisation +(noun)|administrator|head|chief|top dog +executive agency|1 +(noun)|agency|federal agency|government agency|bureau|office|authority +executive branch|1 +(noun)|Executive Office of the President|branch|subdivision|arm +executive clemency|1 +(noun)|office|power +executive council|1 +(noun)|council +executive department|1 +(noun)|federal department|federal office|department of the federal government +executive director|1 +(noun)|executive|administrator|decision maker +executive office of the president|1 +(noun)|executive branch|Executive Office of the President|branch|subdivision|arm +executive officer|1 +(noun)|military officer|officer +executive program|1 +(noun)|supervisory program|supervisor|program|programme|computer program|computer programme +executive routine|1 +(noun)|supervisory routine|routine|subroutine|subprogram|procedure|function +executive secretary|1 +(noun)|secretary|secretarial assistant +executive session|1 +(noun)|closed session|session +executive vice president|1 +(noun)|vice president|V.P. +executor|1 +(noun)|fiduciary +executor-heir relation|1 +(noun)|fiduciary relation +executrix|1 +(noun)|executor +exegesis|1 +(noun)|interpretation +exegete|1 +(noun)|expert +exegetic|1 +(adj)|exegetical|interpretation +exegetical|1 +(adj)|exegetic|interpretation +exemplar|1 +(noun)|example|model|good example|ideal +exemplary|3 +(adj)|model|worthy +(adj)|emblematic|typic|typical +(adj)|admonitory|cautionary|monitory|warning|dissuasive +exemplary damages|1 +(noun)|punitive damages|smart money|damages|amends|indemnity|indemnification|restitution|redress +exemplification|2 +(noun)|illustration|demonstration|demo +(noun)|typification|representational process +exemplify|2 +(verb)|represent|embody|be|personify +(verb)|illustrate|instance|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +exemplifying|1 +(adj)|illustrative|informative |informatory +exempt|4 +(adj)|exempt |excused|immune|privileged +(adj)|nontaxable |duty-free|tax-exempt|tax-free|untaxed|unratable +(verb)|relieve|free +(verb)|excuse|relieve|let off|absolve|justify|free +exemption|3 +(noun)|freedom|unsusceptibility|immunity +(noun)|tax write-off|tax deduction|deduction +(noun)|immunity|granting immunity|release|waiver|discharge +exenterate|1 +(verb)|remove|take|take away|withdraw +exenteration|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +exercise|10 +(noun)|exercising|physical exercise|physical exertion|workout|effort|elbow grease|exertion|travail|sweat +(noun)|use|usage|utilization|utilisation|employment|activity +(noun)|practice|drill|practice session|recitation|training|preparation|grooming +(noun)|example|lesson +(noun)|ceremony|ceremonial|ceremonial occasion|observance +(verb)|exert|use|utilize|utilise|apply|employ +(verb)|practice|practise|do +(verb)|work|work out|work|put to work +(verb)|work out +(verb)|drill|practice|practise|learn|study|read|take +exercise bike|1 +(noun)|exercycle|exercise device +exercise device|1 +(noun)|device +exercise set|1 +(noun)|set|exercise|exercising|physical exercise|physical exertion|workout +exerciser|1 +(noun)|gymnastic apparatus|sports equipment|sporting goods +exercising|1 +(noun)|exercise|physical exercise|physical exertion|workout|effort|elbow grease|exertion|travail|sweat +exercising weight|1 +(noun)|weight|free weight|sports equipment|sporting goods +exercycle|1 +(noun)|exercise bike|exercise device +exert|3 +(verb)|exercise|use|utilize|utilise|apply|employ +(verb)|wield|maintain|have|have got|hold +(verb)|act|move +exertion|1 +(noun)|effort|elbow grease|travail|sweat|labor|labour|toil +exfiltration operation|1 +(noun)|clandestine operation +exfoliate|5 +(verb)|unfold|spread|spread out|open +(verb)|shed|cast|cast off|shake off|throw|throw off|throw away|drop +(verb)|peel off +(verb)|chip|chip off|come off|break away|break off +(verb)|grow +exfoliation|2 +(noun)|organic phenomenon +(noun)|scale|scurf|bit|chip|flake|fleck|scrap +exhalation|2 +(noun)|halitus|breath +(noun)|expiration|breathing out|breath +exhale|2 +(verb)|expire|breathe out|breathe|take a breath|respire|suspire +(verb)|give forth|emanate|emit|breathe|pass off +exhaled|1 +(adj)|exhaled +exhaling|1 +(adj)|breathing |eupneic|eupnoeic +exhaust|7 +(noun)|exhaust fumes|fumes|gas|waste|waste material|waste matter|waste product +(noun)|exhaust system|system +(verb)|wash up|beat|tucker|tucker out|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +(verb)|consume|eat up|use up|eat|deplete|run through|wipe out|spend|expend|drop +(verb)|run down|play out|sap|tire|consume|eat up|use up|eat|deplete|run through|wipe out +(verb)|empty +(verb)|evacuate|empty +exhaust fan|1 +(noun)|fan +exhaust fumes|1 +(noun)|exhaust|fumes|gas|waste|waste material|waste matter|waste product +exhaust hood|1 +(noun)|hood|covering +exhaust manifold|1 +(noun)|manifold +exhaust pipe|1 +(noun)|pipe|pipage|piping +exhaust system|1 +(noun)|exhaust|system +exhaust valve|1 +(noun)|valve +exhausted|3 +(adj)|dog-tired|fagged|fatigued|played out|spent|washed-out|worn-out|worn out|tired +(adj)|exhausted |consumed|used-up|used up|depleted|evacuated|gone|expended|spent +(adj)|drained +exhaustible|2 +(adj)|exhaustible |depletable +(adj)|finite +exhausting|2 +(adj)|draining|debilitating +(adj)|tiring|wearing|wearying|effortful +exhaustion|3 +(noun)|fatigue|weariness|tiredness +(noun)|debilitation|enervation|enfeeblement|weakening +(noun)|depletion +exhaustive|1 +(adj)|thorough|thoroughgoing|complete +exhaustively|1 +(adv)|thoroughly +exhibit|6 +(noun)|evidence +(noun)|display|showing|show +(verb)|possess +(verb)|expose|display|show +(verb)|show|demo|present|demonstrate|show +(verb)|parade|march|walk +exhibition|2 +(noun)|presentation|presentment|demonstration +(noun)|exposition|expo|collection|aggregation|accumulation|assemblage +exhibition area|1 +(noun)|exhibition hall|hall +exhibition game|1 +(noun)|practice game|game +exhibition hall|1 +(noun)|exhibition area|hall +exhibition season|1 +(noun)|season +exhibitioner|1 +(noun)|exhibitor|shower|showman|promoter|impresario +exhibitionism|2 +(noun)|ostentation|fanfare +(noun)|immodesty|paraphilia +exhibitionist|2 +(noun)|flasher|compulsive +(noun)|show-off|egotist|egoist|swellhead +exhibitionistic|1 +(adj)|unconcealed +exhibitor|1 +(noun)|exhibitioner|shower|showman|promoter|impresario +exhilarate|1 +(verb)|inebriate|thrill|exalt|beatify|elate|lift up|uplift|pick up|intoxicate +exhilarated|1 +(adj)|gladdened|elated +exhilarating|2 +(adj)|stimulating|invigorating +(adj)|elating|exciting +exhilaration|1 +(noun)|excitement|joy|joyousness|joyfulness +exhort|2 +(verb)|cheer|inspire|urge|barrack|urge on|pep up|encourage +(verb)|urge|urge on|press|advise|counsel +exhortation|2 +(noun)|communication|communicating +(noun)|incitement|persuasion|suasion +exhortative|1 +(adj)|exhortatory|hortative|hortatory|encouraging +exhortatory|1 +(adj)|exhortative|hortative|hortatory|encouraging +exhumation|1 +(noun)|disinterment|digging up|deed|feat|effort|exploit +exhume|1 +(verb)|disinter|excavate|dig up|turn up +exigency|2 +(noun)|crisis +(noun)|emergency|pinch|crisis +exigent|2 +(adj)|clamant|crying|insistent|instant|imperative +(adj)|exacting|demanding +exiguity|1 +(noun)|meagerness|meagreness|poorness|scantiness|scantness|insufficiency|inadequacy|deficiency +exiguous|1 +(adj)|meager |meagre|meagerly +exile|4 +(noun)|expatriate|absentee +(noun)|deportee|foreigner|alien|noncitizen|outlander +(noun)|deportation|expatriation|transportation|banishment|proscription +(verb)|expatriate|deport|expel|throw out|kick out +exilic|1 +(adj)|banishment|proscription +exist|2 +(verb)|be +(verb)|survive|live|subsist +existence|2 +(noun)|being|beingness|state +(noun)|universe|creation|world|cosmos|macrocosm|natural object +existent|3 +(adj)|existent |existing|active|alive|extant +(adj)|real |actual|actual|factual|historical|concrete|genuine|echt|realistic|sincere +(adj)|actual |actualized|actualised|very|effective +existential|3 +(adj)|experiential|empirical |empiric +(adj)|philosophical doctrine|philosophical theory +(adj)|state +existential operator|1 +(noun)|existential quantifier|quantifier|logical quantifier +existential quantifier|1 +(noun)|existential operator|quantifier|logical quantifier +existentialism|1 +(noun)|existentialist philosophy|philosophical doctrine|philosophical theory +existentialist|2 +(adj)|philosophical doctrine|philosophical theory +(noun)|philosopher +existentialist philosophy|1 +(noun)|existentialism|philosophical doctrine|philosophical theory +existing|3 +(adj)|existent |active|alive|extant +(adj)|present +(adj)|present +exit|6 +(noun)|issue|outlet|way out|opening +(noun)|passing|loss|departure|expiration|going|release|death|decease +(noun)|departure|going|going away|leaving +(verb)|go out|get out|leave|move +(verb)|play +(verb)|die|decease|perish|go|pass away|expire|pass|change state|turn +exit poll|1 +(noun)|poll|opinion poll|public opinion poll|canvass +exmoor|2 +(noun)|Exmoor|domestic sheep|Ovis aries +(noun)|Exmoor|pony +exobiology|1 +(noun)|space biology|astrobiology|biology|biological science +exocarp|1 +(noun)|epicarp|pericarp|seed vessel +exocentric|1 +(adj)|exocentric +exocet|1 +(noun)|Exocet|guided missile +exocoetidae|1 +(noun)|Exocoetidae|family Exocoetidae|fish family +exocrine|1 +(adj)|exocrine |gland|secretory organ|secretor|secreter +exocrine gland|1 +(noun)|duct gland|gland|secretory organ|secretor|secreter +exocycloida|1 +(noun)|Exocycloida|order Exocycloida|animal order +exode|1 +(noun)|afterpiece +exoderm|1 +(noun)|ectoderm|ectoblast|germ layer +exodontia|1 +(noun)|exodontics|dental surgery +exodontic|1 +(adj)|dental surgery +exodontics|1 +(noun)|exodontia|dental surgery +exodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +exodus|2 +(noun)|hegira|hejira|escape|flight +(noun)|Exodus|Book of Exodus|book +exoergic|1 +(adj)|exoergic |energy-releasing|exothermic|exothermal|heat-releasing +exoergic reaction|1 +(noun)|nuclear reaction +exogamic|2 +(adj)|exogamous +(adj)|exogamous |outbred +exogamous|2 +(adj)|exogamous |exogamic +(adj)|exogamous |exogamic|outbred +exogamy|1 +(noun)|intermarriage|marriage|matrimony|union|spousal relationship|wedlock +exogen|1 +(noun)|dicot|dicotyledon|magnoliopsid|angiosperm|flowering plant +exogenic|1 +(adj)|exogenous +exogenous|1 +(adj)|exogenous +exogenous depression|1 +(noun)|reactive depression|depressive disorder|clinical depression|depression +exogenous obesity|1 +(noun)|fleshiness|obesity +exomphalos|1 +(noun)|hernia|herniation +exon|1 +(noun)|coding DNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +exonerate|1 +(verb)|acquit|assoil|clear|discharge|exculpate|pronounce|label|judge +exonerated|1 +(adj)|absolved|clear|cleared|exculpated|vindicated|innocent |guiltless|clean-handed +exoneration|2 +(noun)|condition|status +(noun)|vindication|clearing +exonerative|1 +(adj)|absolvitory|forgiving|exculpatory +exonuclease|1 +(noun)|nuclease +exophthalmic goiter|1 +(noun)|Graves' disease|hyperthyroidism|thyrotoxicosis|exophthalmos +exophthalmos|1 +(noun)|symptom +exopterygota|1 +(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class +exorbitance|1 +(noun)|outrageousness|excess|excessiveness|inordinateness +exorbitant|1 +(adj)|extortionate|outrageous|steep|unconscionable|usurious|immoderate +exorbitantly|1 +(adv)|extortionately|usuriously +exorcise|1 +(verb)|exorcize|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +exorciser|1 +(noun)|exorcist|sorcerer|magician|wizard|necromancer +exorcism|1 +(noun)|dispossession|supernaturalism +exorcist|2 +(noun)|holy order|order +(noun)|exorciser|sorcerer|magician|wizard|necromancer +exorcize|1 +(verb)|exorcise|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +exordium|1 +(noun)|introduction +exoskeleton|1 +(noun)|skeletal system|skeleton|frame|systema skeletale|body covering +exosphere|1 +(noun)|layer +exostosis|1 +(noun)|growth +exoteric|1 +(adj)|exoteric |public +exothermal|1 +(adj)|exothermic |heat-releasing|exoergic|energy-releasing +exothermic|1 +(adj)|exothermic |exothermal|heat-releasing|exoergic|energy-releasing +exothermic reaction|1 +(noun)|chemical reaction|reaction +exotic|2 +(adj)|alien|foreign +(adj)|strange |unusual +exotic belly dancer|1 +(noun)|belly dancer|exotic dancer|dancer|professional dancer +exotic dancer|2 +(noun)|stripper|striptease artist|striptease|stripteaser|ecdysiast|peeler|performer|performing artist +(noun)|belly dancer|exotic belly dancer|dancer|professional dancer +exoticism|1 +(noun)|exoticness|exotism|foreignness|strangeness|curiousness +exoticness|1 +(noun)|exoticism|exotism|foreignness|strangeness|curiousness +exotism|1 +(noun)|exoticism|exoticness|foreignness|strangeness|curiousness +exotoxin|1 +(noun)|toxin +exotropia|1 +(noun)|walleye|divergent strabismus|strabismus|squint +expand|7 +(verb)|spread out|grow +(verb)|grow +(verb)|enlarge +(verb)|boom|prosper|thrive|get ahead|flourish|grow +(verb)|inflate|blow up|amplify|increase +(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expound|dilate|clarify|clear up|elucidate +(verb)|extend|change|alter|modify +expandable|2 +(adj)|expandible|expansible|expansive +(adj)|expandible|expansible|expansile|elastic +expanded|1 +(adj)|expanded |dilated|distended|swollen|enlarged +expandible|2 +(adj)|expandable|expansible|expansive +(adj)|expandable|expansible|expansile|elastic +expanding|1 +(adj)|increasing +expanding upon|1 +(noun)|expansion|increase|step-up +expanse|3 +(noun)|sweep|scope|range|reach|orbit|compass|ambit +(noun)|area|surface area|extent +(noun)|entity +expansible|2 +(adj)|expandable|expandible|expansive +(adj)|expandable|expandible|expansile|elastic +expansile|1 +(adj)|expandable|expandible|expansible|elastic +expansion|3 +(noun)|enlargement|increase|step-up +(noun)|enlargement|elaboration|discussion|treatment|discourse +(noun)|expanding upon|increase|step-up +expansion bit|1 +(noun)|expansive bit|bit +expansion bolt|1 +(noun)|bolt +expansion slot|1 +(noun)|slot|receptacle +expansionism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +expansionist|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +expansive|4 +(adj)|expansive |distensible|erectile|cavernous|expandable|expandible|expansible|inflatable +(adj)|grand|impressive +(adj)|euphoric |happy +(adj)|talkative|communicative |communicatory +expansive bit|1 +(noun)|expansion bit|bit +expansively|1 +(adv)|ebulliently|exuberantly +expansiveness|2 +(noun)|impressiveness|grandness|magnificence +(noun)|effusiveness|communicativeness +expansivity|1 +(noun)|coefficient of expansion|coefficient +expatiate|1 +(verb)|elaborate|lucubrate|exposit|enlarge|flesh out|expand|expound|dilate|clarify|clear up|elucidate +expatiation|1 +(noun)|expansion|enlargement|elaboration +expatriate|3 +(noun)|exile|absentee +(verb)|deport|exile|expel|throw out|kick out +(verb)|emigrate +expatriation|2 +(noun)|exile|deportation|transportation|banishment|proscription +(noun)|emigration|out-migration|migration +expect|6 +(verb)|anticipate|judge +(verb)|ask|require|demand +(verb)|look|await|wait +(verb)|see|consider|reckon|view|regard +(verb)|have a bun in the oven|bear|carry|gestate|give birth|deliver|bear|birth|have +(verb)|look|await|wait +expectable|1 +(adj)|expected +expectancy|2 +(noun)|anticipation|expectation +(noun)|anticipation|expectation|outlook|prospect +expectant|2 +(adj)|anticipant|anticipative|hopeful +(adj)|big|enceinte|gravid|great|large|heavy|with child|pregnant +expectation|4 +(noun)|outlook|prospect|belief +(noun)|anticipation|hopefulness +(noun)|feeling +(noun)|arithmetic mean|first moment|expected value|mean|mean value +expected|3 +(adj)|expected |anticipated|awaited|hoped-for|due|expectable|foreseen|foretold|predicted|matter-of-course|supposed|unsurprising +(adj)|unsurprising +(adj)|likely|potential|prospective +expected value|1 +(noun)|arithmetic mean|first moment|expectation|mean|mean value +expectedness|2 +(noun)|commonness|normality|normalcy +(noun)|ordinariness +expectorant|1 +(noun)|expectorator|medicine|medication|medicament|medicinal drug +expectorate|2 +(verb)|clear out|drive out|remove|take|take away|withdraw +(verb)|cough up|cough out|spit up|spit out|discharge|expel|eject|release +expectoration|2 +(noun)|bodily process|body process|bodily function|activity +(noun)|spit|spitting|expulsion|projection|ejection|forcing out +expectorator|2 +(noun)|spitter|person|individual|someone|somebody|mortal|human|soul +(noun)|expectorant|medicine|medication|medicament|medicinal drug +expedience|2 +(noun)|expediency|advantage|vantage +(noun)|opportunism|self-interest|self-seeking|selfishness +expediency|1 +(noun)|expedience|advantage|vantage +expedient|3 +(adj)|expedient |advantageous|appropriate|opportunist|opportunistic|timeserving|advantageous|convenient|politic|useful|utile +(adj)|politic +(noun)|means|agency|way +expediently|1 +(adv)|inadvisably +expedite|2 +(verb)|hasten|help|assist|aid +(verb)|action|sue|litigate|process +expedited|1 +(adj)|expedited |accelerated|speeded up|facilitated|fast +expedition|5 +(noun)|military expedition|hostile expedition|campaign|military campaign +(noun)|working group|working party +(noun)|journey|journeying +(noun)|excursion|jaunt|outing|junket|pleasure trip|sashay|journey|journeying +(noun)|dispatch|despatch|expeditiousness|celerity|quickness|rapidity +expeditionary|1 +(adj)|military +expeditious|1 +(adj)|prompt|timesaving|efficient +expeditiously|1 +(adv)|efficiently|with efficiency +expeditiousness|1 +(noun)|dispatch|despatch|expedition|celerity|quickness|rapidity +expel|5 +(verb)|throw out|kick out|move|displace +(verb)|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out|move|displace +(verb)|oust|throw out|drum out|boot out|kick out|remove +(verb)|rout|rout out|get the better of|overcome|defeat +(verb)|discharge|eject|release +expelling|1 +(noun)|discharge|emission|bodily process|body process|bodily function|activity +expend|2 +(verb)|use +(verb)|spend|drop|pay +expendable|2 +(adj)|expendable |consumable|sacrificeable|replaceable +(adj)|spendable|disposable +expended|1 +(adj)|gone|spent|exhausted +expender|1 +(noun)|spender|disburser|customer|client +expending|1 +(noun)|expenditure|spending|disbursement|disbursal|outlay +expenditure|3 +(noun)|outgo|outlay|financial loss +(noun)|expending|spending|disbursement|disbursal|outlay +(noun)|consumption|using up|depletion +expense|3 +(noun)|disbursal|disbursement|cost +(noun)|detriment|hurt +(noun)|outgo|expenditure|outlay +expense account|1 +(noun)|travel and entertainment account|account|accounting|account statement +expense record|1 +(noun)|record +expensive|1 +(adj)|expensive |big-ticket|high-ticket|costly|dear|high-priced|pricey|pricy|dearly-won|costly|overpriced|valuable +expensiveness|1 +(noun)|monetary value|price|cost +experience|8 +(noun)|education +(noun)|content|cognitive content|mental object +(noun)|happening|occurrence|natural event +(verb)|undergo|see|go through|participate|take part +(verb)|know|live|undergo|see|go through +(verb)|receive|have|get|undergo +(verb)|feel +(verb)|have|change +experienced|1 +(adj)|experienced |full-fledged|fully fledged|intimate|intimate with|knowledgeable|knowledgeable about|old|older|practiced|practised|seasoned|veteran|old|skilled|tough|toughened +experiential|2 +(adj)|content|cognitive content|mental object +(adj)|existential|empirical |empiric +experiment|5 +(noun)|experimentation|scientific research|research project +(noun)|experimentation|inquiry|enquiry|research +(noun)|venture +(verb)|investigate|look into +(verb)|try out +experimental|3 +(adj)|inquiry|enquiry|research +(adj)|data-based|observational|empirical |empiric +(adj)|empirical |empiric +experimental condition|1 +(noun)|condition|procedure|process +experimental extinction|1 +(noun)|extinction|conditioning +experimental method|1 +(noun)|scientific method +experimental procedure|1 +(noun)|procedure|process +experimental psychology|1 +(noun)|psychonomics|psychology|psychological science +experimental variable|1 +(noun)|independent variable|variable|variable quantity +experimentalism|2 +(noun)|empiricism|empiricist philosophy|sensationalism +(noun)|orientation +experimentally|1 +(adv)|by experimentation|through an experiment +experimentation|2 +(noun)|experiment|inquiry|enquiry|research +(noun)|experiment|scientific research|research project +experimenter|2 +(noun)|research worker|researcher|investigator +(noun)|person|individual|someone|somebody|mortal|human|soul +experimenter bias|1 +(noun)|bias|prejudice|preconception +expert|2 +(adj)|adept|good|practiced|proficient|skillful|skilful|skilled +(noun)|person|individual|someone|somebody|mortal|human|soul +expert witness|1 +(noun)|witness +expertise|1 +(noun)|expertness|skillfulness +expertly|1 +(adv)|like an expert|with expertise +expertness|1 +(noun)|expertise|skillfulness +expiable|1 +(adj)|pardonable +expiate|1 +(verb)|aby|abye|atone|right|compensate|redress|correct +expiation|2 +(noun)|atonement|satisfaction|damages|amends|indemnity|indemnification|restitution|redress +(noun)|atonement|propitiation|redemption|salvation +expiative|1 +(adj)|expiatory|propitiatory|redemption|salvation +expiatory|1 +(adj)|expiative|propitiatory|redemption|salvation +expiration|3 +(noun)|termination|expiry|end|ending +(noun)|passing|loss|departure|exit|going|release|death|decease +(noun)|exhalation|breathing out|breath +expiratory|1 +(adj)|breath +expire|3 +(verb)|run out|discontinue +(verb)|die|decease|perish|go|exit|pass away|pass|change state|turn +(verb)|exhale|breathe out|breathe|take a breath|respire|suspire +expired|1 +(adj)|expired |invalid|terminated +expiry|1 +(noun)|termination|expiration|end|ending +explain|3 +(verb)|explicate|inform +(verb)|state|say|tell +(verb)|excuse|justify|vindicate +explainable|1 +(adj)|interpretable|explicable +explanandum|1 +(noun)|explicandum|statement +explanans|1 +(noun)|statement +explanation|3 +(noun)|account|statement +(noun)|thinking|thought|cerebration|intellection|mentation +(noun)|speech act +explanatory|1 +(adj)|instructive |informative +expletive|2 +(noun)|curse|curse word|oath|swearing|swearword|cuss|profanity +(noun)|utterance|vocalization +explicable|1 +(adj)|explicable |explainable|interpretable|comprehensible|comprehendible|soluble +explicandum|1 +(noun)|explanandum|statement +explicate|2 +(verb)|explain|inform +(verb)|formulate|develop|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +explication|2 +(noun)|explanation +(noun)|explanation|account +explication de texte|1 +(noun)|criticism|literary criticism +explicit|2 +(adj)|explicit |expressed|declared|stated|definitive|unequivocal|express|graphic|hard-core|hardcore|definite|denotative|denotive|overt|open|unequivocal|univocal|unambiguous +(adj)|denotative|literal +explicit definition|1 +(noun)|definition +explicitly|1 +(adv)|expressly +explicitness|1 +(noun)|clarity|lucidity|pellucidity|clearness|limpidity +explode|9 +(verb)|detonate|blow up|set off|change integrity +(verb)|burst|change integrity +(verb)|react|respond +(verb)|burst forth|break loose|change state|turn +(verb)|destroy|ruin +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|condemn +(verb)|disprove|confute +(verb)|irrupt|increase +explode a bombshell|1 +(verb)|surprise +exploded|2 +(adj)|change integrity +(adj)|unconnected +exploding|2 +(adj)|increasing +(adj)|bursting|detonating|explosive +exploding cucumber|1 +(noun)|squirting cucumber|touch-me-not|Ecballium elaterium|gourd|gourd vine +exploit|4 +(noun)|deed|feat|effort|accomplishment|achievement +(verb)|work|use|utilize|utilise|apply|employ +(verb)|tap|use|utilize|utilise|apply|employ +(verb)|overwork|work|put to work +exploitation|2 +(noun)|development|use|usage|utilization|utilisation|employment|exercise +(noun)|victimization|victimisation|using|mistreatment +exploitative|1 +(adj)|exploitatory|exploitive|consumptive +exploitatory|1 +(adj)|exploitative|exploitive|consumptive +exploited|2 +(adj)|exploited |employed|made use of +(adj)|ill-used|put-upon|used|victimized|victimised|misused +exploiter|1 +(noun)|user|selfish person +exploitive|1 +(adj)|exploitative|exploitatory|consumptive +exploration|3 +(noun)|geographic expedition|expedition +(noun)|search|hunt|hunting +(noun)|consideration +explorative|1 +(adj)|exploratory |alpha|beta|preliminary|searching|wildcat +exploratory|1 +(adj)|exploratory |explorative|alpha|beta|preliminary|searching|wildcat +exploratory survey|1 +(noun)|scouting|reconnoitering|reconnoitring|reconnaissance|reconnaissance mission +explore|4 +(verb)|research|search|investigate|look into +(verb)|investigate|look into +(verb)|diagnose|name +(verb)|diagnose +explorer|1 +(noun)|adventurer|person|individual|someone|somebody|mortal|human|soul +explorer's gentian|1 +(noun)|Gentiana calycosa|gentian +explosion|7 +(noun)|detonation|blowup|discharge +(noun)|burst|change of integrity +(noun)|increase +(noun)|noise +(noun)|plosion|release|tone ending +(noun)|effusion|gush|outburst|blowup|ebullition +(noun)|golf stroke|golf shot|swing +explosive|4 +(adj)|explosive |bursting|detonating|exploding|detonative +(adj)|volatile|unstable +(adj)|sudden +(noun)|chemical +explosive charge|1 +(noun)|charge|burster|bursting charge|explosive +explosive compound|1 +(noun)|explosive +explosive detection system|1 +(noun)|EDS|system +explosive device|1 +(noun)|device +explosive mixture|1 +(noun)|explosive +explosive trace detection|1 +(noun)|ETD|system +explosive unit|1 +(noun)|unit of measurement|unit +expo|1 +(noun)|exhibition|exposition|collection|aggregation|accumulation|assemblage +exponent|3 +(noun)|advocate|advocator|proponent|person|individual|someone|somebody|mortal|human|soul +(noun)|intellectual|intellect +(noun)|power|index|mathematical notation +exponential|2 +(adj)|mathematical notation +(noun)|exponential function|function|mathematical function +exponential curve|1 +(noun)|graph|graphical record +exponential decay|1 +(noun)|exponential return|decay|decline +exponential equation|1 +(noun)|equation +exponential expression|1 +(noun)|formula|expression +exponential function|1 +(noun)|exponential|function|mathematical function +exponential return|1 +(noun)|exponential decay|decay|decline +exponential series|1 +(noun)|series +exponentiation|1 +(noun)|involution|mathematical process|mathematical operation|operation +export|3 +(noun)|exportation|commodity|trade goods|goods +(verb)|trade|merchandise +(verb)|spread|distribute +export credit|1 +(noun)|credit +export duty|1 +(noun)|duty|tariff +exportable|1 +(adj)|exportable |marketable +exportation|2 +(noun)|export|commodity|trade goods|goods +(noun)|exporting|commerce|commercialism|mercantilism +exporter|1 +(noun)|businessperson|bourgeois +exporting|1 +(noun)|exportation|commerce|commercialism|mercantilism +expose|10 +(noun)|unmasking|exposure +(verb)|subject +(verb)|disclose|let on|bring out|reveal|discover|divulge|impart|break|give away|let out|tell +(verb)|exhibit|display|show +(verb)|uncover +(verb)|disclose|uncover|bring out|unveil|reveal +(verb)|queer|scupper|endanger|peril|affect|impact|bear upon|bear on|touch on|touch +(verb)|subject +(verb)|debunk|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +(verb)|abandon|forsake|desolate|desert +exposed|2 +(adj)|open|unprotected +(adj)|uncovered|unclothed +exposit|2 +(verb)|set forth|expound|elaborate|lucubrate|expatiate|enlarge|flesh out|expand|expound|dilate +(verb)|elaborate|lucubrate|expatiate|enlarge|flesh out|expand|expound|dilate|clarify|clear up|elucidate +exposition|3 +(noun)|expounding|interpretation +(noun)|exhibition|expo|collection|aggregation|accumulation|assemblage +(noun)|explanation|account +expositive|1 +(adj)|expository|instructive |informative +expository|1 +(adj)|expositive|instructive |informative +expostulate|1 +(verb)|argue|reason +expostulation|2 +(noun)|remonstrance|objection|dissuasion +(noun)|exclamation|exclaiming +exposure|10 +(noun)|vulnerability +(noun)|influence +(noun)|disclosure|revelation|revealing +(noun)|view|aspect|prospect|scene|vista|panorama +(noun)|vulnerability|danger +(noun)|light unit +(noun)|photograph|photo|pic|picture|image|icon|ikon +(noun)|photography|picture taking +(noun)|presentation|presentment|demonstration +(noun)|abandonment|forsaking|desertion +exposure meter|1 +(noun)|light meter|photometer|photographic equipment +exposure therapy|1 +(noun)|desensitization technique|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitization|systematic desensitisation +expound|2 +(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|dilate|clarify|clear up|elucidate +(verb)|set forth|exposit|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|dilate +expounding|1 +(noun)|exposition|interpretation +express|12 +(adj)|explicit |expressed +(adj)|fast +(noun)|expressage|transportation|shipping|transport +(noun)|express mail|mail +(noun)|public transport +(verb)|show|evince|convey|impart +(verb)|verbalize|verbalise|utter|give tongue to +(verb)|state|denote|refer +(verb)|carry|convey|communicate|intercommunicate +(verb)|reveal|display|show +(verb)|press out|extract|get|acquire +(verb)|mail|post|send +express-mail|1 +(verb)|mail|post|send +express emotion|1 +(verb)|express feelings +express feelings|1 +(verb)|express emotion +express joy|1 +(verb)|laugh|express mirth|express emotion|express feelings +express luxury liner|1 +(noun)|luxury liner|liner|ocean liner +express mail|1 +(noun)|express|mail +express mirth|1 +(verb)|laugh|express joy|express emotion|express feelings +express trust|1 +(noun)|direct trust|trust +expressage|1 +(noun)|express|transportation|shipping|transport +expressed|2 +(adj)|uttered|verbalized|verbalised|spoken +(adj)|explicit |declared|stated|definitive|unequivocal|express|graphic|hard-core|hardcore|definite|denotative|denotive|overt|open|unequivocal|univocal|unambiguous +expressed almond oil|1 +(noun)|almond oil|sweet almond oil|oil +expressible|1 +(adj)|expressible |describable|representable|speakable|utterable +expression|9 +(noun)|look|aspect|facial expression|face|countenance|visage +(noun)|manifestation|reflection|reflexion|demonstration|demo +(noun)|communication|communicating +(noun)|saying|locution|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|formulation|expressive style|style +(noun)|formula|mathematical statement +(noun)|organic process|biological process +(noun)|construction|grammatical construction|constituent|grammatical constituent +(noun)|squeeze|squeezing +expressionism|1 +(noun)|artistic movement|art movement +expressionist|2 +(adj)|expressionistic|artistic movement|art movement +(noun)|artist|creative person +expressionistic|1 +(adj)|expressionist|artistic movement|art movement +expressionless|1 +(adj)|deadpan|impassive|poker-faced|unexpressive|uncommunicative |incommunicative +expressive|1 +(adj)|communicative |communicatory +expressive aphasia|1 +(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|nonfluent aphasia|aphasia +expressive style|1 +(noun)|style|communication +expressiveness|1 +(noun)|quality +expressly|2 +(adv)|with specific intentions +(adv)|explicitly +expressway|1 +(noun)|freeway|motorway|pike|state highway|superhighway|throughway|thruway|highway|main road +expropriate|1 +(verb)|deprive|strip|divest +expropriated|1 +(adj)|taken +expropriation|1 +(noun)|confiscation|arrogation +expugnable|1 +(adj)|stormable|conquerable +expulsion|3 +(noun)|ejection|exclusion|riddance|banishment|proscription +(noun)|extrusion|squeeze|squeezing +(noun)|projection|ejection|forcing out|propulsion|actuation +expunction|1 +(noun)|expunging|erasure|deletion +expunge|1 +(verb)|strike|excise|delete|cancel +expunging|1 +(noun)|expunction|erasure|deletion +expurgate|1 +(verb)|bowdlerize|bowdlerise|castrate|shorten|abridge|foreshorten|abbreviate|shorten|cut|contract|reduce +expurgated|1 +(adj)|censored +expurgation|1 +(noun)|castration|deletion +exquisite|4 +(adj)|keen|intense +(adj)|recherche|elegant +(adj)|dainty|delicate +(adj)|beautiful +exquisitely|1 +(adv)|finely|fine|delicately +exquisiteness|1 +(noun)|beauty +exsanguine|1 +(adj)|bloodless|exsanguinous|dead +exsanguinous|1 +(adj)|bloodless|exsanguine|dead +exsert|1 +(verb)|stretch out|put out|extend|hold out|stretch forth|gesticulate|gesture|motion +extant|1 +(adj)|extant |living|surviving|living|existent|existing +extemporaneous|1 +(adj)|ad-lib|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared +extemporaneously|1 +(adv)|extemporarily|extempore +extemporarily|1 +(adv)|extemporaneously|extempore +extemporary|1 +(adj)|ad-lib|extemporaneous|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared +extempore|2 +(adj)|ad-lib|extemporaneous|extemporary|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared +(adv)|extemporaneously|extemporarily +extemporisation|1 +(noun)|extemporization|improvisation|performance +extemporise|1 +(verb)|improvise|improvize|ad-lib|extemporize|perform|execute|do +extemporization|1 +(noun)|extemporisation|improvisation|performance +extemporize|2 +(verb)|improvise|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|improvise|improvize|ad-lib|extemporise|perform|execute|do +extend|17 +(verb)|widen|broaden|increase +(verb)|run|go|pass|lead|be|extend to +(verb)|cover|be +(verb)|offer|supply|provide|render|furnish +(verb)|exsert|stretch out|put out|hold out|stretch forth|gesticulate|gesture|motion +(verb)|poke out|reach out|be +(verb)|offer|give|pay +(verb)|stretch|tense|strain|tense up +(verb)|expand|change|alter|modify +(verb)|prolong|protract|draw out|lengthen +(verb)|unfold|stretch|stretch out|change shape|change form|deform +(verb)|gallop|ride|sit +(verb)|straighten|straighten out +(verb)|strain|use|utilize|utilise|apply|employ +(verb)|prolong|protract|draw out +(verb)|carry|continue +(verb)|stretch|increase +extend oneself|1 +(verb)|strive|reach|strain +extend to|1 +(verb)|reach|touch|be +extendable|1 +(adj)|extendible|long +extended|6 +(adj)|drawn-out|lengthy|prolonged|protracted|long +(adj)|extended |outspread|spread|outstretched|sprawled|sprawling|sprawly|stretched|stretched out|rolled out|unrolled|spread-eagle|stretched +(adj)|extensive|wide|considerable +(adj)|elongated|lengthened|prolonged|long +(adj)|figurative |nonliteral +(adj)|extensive|large +extended care facility|1 +(noun)|medical institution +extended family|1 +(noun)|family|household|house|home|menage +extended order|1 +(noun)|military formation +extended time scale|1 +(noun)|slow time scale|time scale +extendible|1 +(adj)|extendable|long +extensible|1 +(adj)|extensile |protractile|protractible|protrusile|protrusible +extensile|1 +(adj)|extensile |extensible|protractile|protractible|protrusile|protrusible +extension|12 +(noun)|delay|hold|time lag|postponement|wait +(noun)|expansion|enlargement +(noun)|propagation|dissemination|airing|public exposure|spreading +(noun)|extension service|university extension|education|instruction|teaching|pedagogy|educational activity +(noun)|stretching +(noun)|filename extension|file name extension|string +(noun)|reference|denotation|meaning|substance +(noun)|property|dance +(noun)|lengthiness|prolongation|longness +(noun)|telephone extension|extension phone|telephone|phone|telephone set +(noun)|elongation|addition|add-on|improver +(noun)|annex|annexe|wing|addition|add-on|improver +extension agent|1 +(noun)|county agent|agricultural agent|adviser|advisor|consultant +extension cord|1 +(noun)|cord|electric cord +extension course|1 +(noun)|course|course of study|course of instruction|class +extension ladder|1 +(noun)|ladder +extension phone|1 +(noun)|extension|telephone extension|telephone|phone|telephone set +extension service|1 +(noun)|extension|university extension|education|instruction|teaching|pedagogy|educational activity +extensional|1 +(adj)|denotative |denotive +extensive|5 +(adj)|extended|large +(adj)|far-reaching|sweeping|comprehensive +(adj)|copious|voluminous|abundant +(adj)|extended|wide|considerable +(adj)|extensive +extensor|1 +(noun)|extensor muscle|skeletal muscle|striated muscle +extensor muscle|1 +(noun)|extensor|skeletal muscle|striated muscle +extent|2 +(noun)|degree|level|stage|point +(noun)|magnitude +extenuate|1 +(verb)|palliate|mitigate|apologize|apologise|excuse|justify|rationalize|rationalise +extenuating|1 +(adj)|exculpatory +extenuation|2 +(noun)|mitigation|excuse|alibi|exculpation|self-justification +(noun)|mitigation|palliation|decrease|diminution|reduction|step-down +exterior|3 +(adj)|exterior |out|outside|outdoor|out-of-door|outside +(noun)|outside|region|part +(noun)|outside|surface +exterior angle|1 +(noun)|external angle|angle +exterior door|1 +(noun)|outside door|doorway|door|room access|threshold +exteriorisation|1 +(noun)|externalization|externalisation|exteriorization|objectification +exteriorise|1 +(verb)|exteriorize|externalize|externalise|objectify|change|alter|modify +exteriorization|1 +(noun)|externalization|externalisation|exteriorisation|objectification +exteriorize|2 +(verb)|bring outside|move|displace +(verb)|exteriorise|externalize|externalise|objectify|change|alter|modify +exterminable|1 +(adj)|extirpable|eradicable +exterminate|2 +(verb)|kill off|kill +(verb)|uproot|eradicate|extirpate|destroy|destruct +exterminated|1 +(adj)|annihilated|wiped out|destroyed +extermination|2 +(noun)|extinction|annihilation|disintegration +(noun)|liquidation|destruction|devastation +exterminator|1 +(noun)|terminator|eradicator|killer|slayer +extern|1 +(noun)|medical extern|doctor|doc|physician|MD|Dr.|medico +external|5 +(adj)|external |outer|outside|outside +(adj)|extraneous|outside|extrinsic +(adj)|international|outside|foreign +(adj)|outward +(noun)|feature|characteristic +external-combustion engine|1 +(noun)|heat engine +external angle|1 +(noun)|exterior angle|angle +external auditory canal|1 +(noun)|auditory meatus|acoustic meatus|ear canal|auditory canal|meatus +external body part|1 +(noun)|body part +external carotid|1 +(noun)|external carotid artery|carotid artery|arteria carotis +external carotid artery|1 +(noun)|external carotid|carotid artery|arteria carotis +external drive|1 +(noun)|drive +external ear|1 +(noun)|outer ear|external organ +external gill|1 +(noun)|gill|branchia +external iliac artery|1 +(noun)|iliac artery|arteria iliaca +external iliac vein|1 +(noun)|iliac vein|vena iliaca +external jugular vein|1 +(noun)|jugular vein|vena jugularis|jugular +external maxillary artery|1 +(noun)|facial artery|arteria facialis|maxillary artery|arteria maxillaris +external nasal vein|1 +(noun)|vena nasalis externa|vein|vena|venous blood vessel +external oblique muscle|1 +(noun)|musculus obliquus externus abdominis|abdominal external oblique muscle|oblique|abdominal|abdominal muscle|ab +external organ|1 +(noun)|organ +external orifice|1 +(noun)|urethral orifice|orifice|opening|porta +external respiration|1 +(noun)|breathing|respiration|ventilation|bodily process|body process|bodily function|activity +external storage|1 +(noun)|auxiliary storage|secondary storage|memory device|storage device +externalisation|2 +(noun)|externalization|attribution|ascription +(noun)|externalization|exteriorization|exteriorisation|objectification +externalise|2 +(verb)|project|externalize|impute|ascribe|assign|attribute +(verb)|exteriorize|exteriorise|externalize|objectify|change|alter|modify +externality|1 +(noun)|outwardness|position|spatial relation +externalization|2 +(noun)|externalisation|attribution|ascription +(noun)|externalisation|exteriorization|exteriorisation|objectification +externalize|2 +(verb)|project|externalise|impute|ascribe|assign|attribute +(verb)|exteriorize|exteriorise|externalise|objectify|change|alter|modify +externally|1 +(adv)|outwardly +exteroception|1 +(noun)|sensitivity|sensitiveness|sensibility +exteroceptive|1 +(adj)|sensitivity|sensitiveness|sensibility +exteroceptor|1 +(noun)|sense organ|sensory receptor|receptor +exterritorial|1 +(adj)|extraterritorial +extinct|3 +(adj)|extinct |nonextant|dead|nonexistent +(adj)|extinct |inactive|dead +(adj)|out|dead +extinction|6 +(noun)|defunctness|death +(noun)|inaction|inactivity|inactiveness +(noun)|natural process|natural action|action|activity +(noun)|extermination|annihilation|disintegration +(noun)|experimental extinction|conditioning +(noun)|extinguishing|quenching|termination|ending|conclusion +extinction angle|1 +(noun)|angle of extinction|angle +extinguish|4 +(verb)|snuff out|eliminate|get rid of|do away with +(verb)|snuff out|blow out|quench +(verb)|stub out|crush out|press out|end|terminate +(verb)|eliminate|annihilate|eradicate|wipe out|decimate|carry off|kill +extinguishable|1 +(adj)|extinguishable +extinguished|1 +(adj)|destroyed +extinguisher|1 +(noun)|fire extinguisher|asphyxiator|device +extinguishing|1 +(noun)|extinction|quenching|termination|ending|conclusion +extirpable|1 +(adj)|exterminable|eradicable +extirpate|3 +(verb)|uproot|eradicate|exterminate|destroy|destruct +(verb)|uproot|deracinate|root out|move|displace +(verb)|remove|take|take away|withdraw +extirpation|2 +(noun)|ablation|cutting out|excision|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|excision|deracination|pull|pulling +extol|1 +(verb)|laud|exalt|glorify|proclaim|praise +extoller|1 +(noun)|laudator|lauder|communicator +extort|3 +(verb)|take +(verb)|squeeze|rack|gouge|wring|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|hook +(verb)|wring from|obtain +extortion|3 +(noun)|overcharge +(noun)|exaction +(noun)|felony +extortionate|1 +(adj)|exorbitant|outrageous|steep|unconscionable|usurious|immoderate +extortionately|1 +(adv)|exorbitantly|usuriously +extortioner|1 +(noun)|blackmailer|extortionist|criminal|felon|crook|outlaw|malefactor +extortionist|1 +(noun)|blackmailer|extortioner|criminal|felon|crook|outlaw|malefactor +extra|6 +(adj)|other|additional|added +(adj)|excess|redundant|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary |unneeded +(adj)|special|unscheduled +(noun)|supernumerary|spear carrier|actor|histrion|player|thespian|role player +(noun)|edition +(noun)|duplicate|artifact|artefact +extra dividend|1 +(noun)|dividend +extra innings|1 +(noun)|overtime|extra time +extra large|1 +(noun)|size +extra point|1 +(noun)|point after|conversion +extra time|1 +(noun)|overtime|time period|period of time|period +extracellular|1 +(adj)|extracellular |living thing|animate thing +extracellular fluid|1 +(noun)|ECF|liquid body substance|bodily fluid|body fluid|humor|humour +extract|10 +(noun)|infusion|solution +(noun)|excerpt|selection|passage +(verb)|pull out|pull|pull up|take out|draw out|remove|take|take away|withdraw +(verb)|obtain +(verb)|educe|evoke|elicit|draw out|interpret|construe|see +(verb)|distill|distil|make|create +(verb)|separate +(verb)|press out|express|get|acquire +(verb)|excerpt|take out|choose|take|select|pick out +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +extractable|1 +(adj)|extractible|removable +extractible|1 +(adj)|extractable|removable +extraction|3 +(noun)|natural process|natural action|action|activity +(noun)|origin|descent|ancestry|lineage|derivation|filiation +(noun)|removal|remotion +extractor|3 +(noun)|instrument +(noun)|centrifuge|separator|apparatus|setup +(noun)|cartridge extractor|cartridge remover|mechanism +extracurricular|3 +(adj)|outside +(adj)|outside +(adj)|adulterous|extramarital|illicit +extracurricular activity|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +extradite|1 +(verb)|deliver|deport|expel|throw out|kick out +extradition|1 +(noun)|surrender +extrados|1 +(noun)|curve|curved shape +extradural|1 +(adj)|epidural|meninx|meninges +extragalactic|1 +(adj)|collection|aggregation|accumulation|assemblage +extragalactic nebula|1 +(noun)|galaxy|collection|aggregation|accumulation|assemblage +extrajudicial|1 +(adj)|illegal +extralegal|1 +(adj)|nonlegal|illegal +extralinguistic|1 +(adj)|communication +extramarital|1 +(adj)|adulterous|extracurricular|illicit +extramarital sex|1 +(noun)|free love|unlawful carnal knowledge|criminal congress +extramural|1 +(adj)|extramural |intercollegiate|intermural|interscholastic|interschool|outside +extraneous|4 +(adj)|immaterial|impertinent|orthogonal|irrelevant +(adj)|extrinsic +(adj)|foreign|adulterating |adulterant +(adj)|external|outside|extrinsic +extraneousness|1 +(noun)|unrelatedness +extraordinarily|1 +(adv)|inordinately +extraordinariness|1 +(noun)|quality +extraordinary|3 +(adj)|extraordinary |bonzer|exceeding|exceptional|olympian|prodigious|surpassing|fantastic|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|fantastic|phenomenal|one|preternatural|pyrotechnic|rare|uncommon|remarkable|singular|some|special|wonderworking|frightful|great|incomparable|uncomparable|uncommon|unusual +(adj)|over-the-top|immoderate +(adj)|unusual +extrapolate|3 +(verb)|generalize|generalise|infer|reason|reason out|conclude +(verb)|interpolate|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|deduce|infer|deduct|derive +extrapolated|1 +(adj)|calculate|cipher|cypher|compute|work out|reckon|figure +extrapolation|2 +(noun)|calculation|computation|figuring|reckoning +(noun)|inference|illation +extrasensory|1 +(adj)|extrasensory |paranormal|clairvoyant|telegnostic|telepathic|paranormal +extrasensory perception|1 +(noun)|clairvoyance|second sight|E.S.P.|ESP|psychic phenomena|psychic phenomenon|parapsychology +extrasystole|1 +(noun)|systole +extrasystolic|1 +(adj)|systole +extraterrestrial|2 +(adj)|terrestrial planet +(noun)|extraterrestrial being|alien|hypothetical creature +extraterrestrial being|1 +(noun)|extraterrestrial|alien|hypothetical creature +extraterrestrial object|1 +(noun)|estraterrestrial body|natural object +extraterritorial|1 +(adj)|extraterritorial |exterritorial +extrauterine gestation|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|eccyesis|metacyesis|pregnancy|gestation|maternity +extrauterine pregnancy|1 +(noun)|ectopic pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis|pregnancy|gestation|maternity +extravagance|3 +(noun)|extravagancy|excess|excessiveness|inordinateness +(noun)|prodigality|profligacy|improvidence|shortsightedness +(noun)|prodigality|lavishness|highlife|high life|waste|wastefulness|dissipation +extravagancy|1 +(noun)|extravagance|excess|excessiveness|inordinateness +extravagant|2 +(adj)|excessive|exuberant|overweening|unrestrained +(adj)|prodigal|profligate|spendthrift|wasteful +extravagantly|3 +(adv)|abundantly|copiously|profusely +(adv)|lavishly +(adv)|lavishly|richly +extravaganza|1 +(noun)|entertainment|amusement +extravasate|3 +(verb)|squirt|force out|squeeze out|eject +(verb)|erupt|belch|explode|burst +(verb)|exude|exudate|transude|ooze out|ooze +extravasation|3 +(noun)|liquid +(noun)|eruption|eructation|action|activity|activeness +(noun)|organic process|biological process +extraversion|1 +(noun)|extroversion|sociability|sociableness +extraversive|1 +(adj)|extroversive |extrovert|extravert|extroverted|extraverted|extrovertive|extravertive|extrovertish|outgoing|sociable +extravert|2 +(adj)|extrovert|extroverted|extraverted|extrovertive|extravertive|extroversive |extraversive +(noun)|extrovert|person|individual|someone|somebody|mortal|human|soul +extraverted|1 +(adj)|extrovert|extravert|extroverted|extrovertive|extravertive|extroversive |extraversive +extravertive|1 +(adj)|extrovert|extravert|extroverted|extraverted|extrovertive|extroversive |extraversive +extreme|6 +(adj)|utmost|uttermost|intense +(adj)|immoderate +(adj)|immoderate +(adj)|distant +(noun)|degree|grade|level +(noun)|extreme point|extremum|extremity +extreme point|1 +(noun)|extreme|extremum|extremity +extreme right-winger|1 +(noun)|reactionary|ultraconservative|conservative|conservativist +extreme unction|1 +(noun)|anointing of the sick|last rites|sacrament +extremely|3 +(adv)|highly +(adv)|super +(adv)|exceedingly|passing +extremely high frequency|1 +(noun)|EHF|radio frequency +extremely low frequency|1 +(noun)|ELF|radio frequency +extremism|1 +(noun)|political orientation|ideology|political theory +extremist|2 +(adj)|radical|ultra|immoderate +(noun)|radical +extremity|5 +(noun)|appendage|member|external body part +(noun)|adversity|hardship|hard knocks +(noun)|ultimacy|ultimateness +(noun)|region|part +(noun)|external body part +extremum|2 +(noun)|extreme point|extreme|extremity +(noun)|peak|limit|limitation +extricable|1 +(adj)|extricable +extricate|1 +(verb)|untangle|disentangle|disencumber|free|disengage +extricated|1 +(adj)|disentangled|freed|free +extrication|1 +(noun)|unsnarling|untangling|disentanglement|liberation|release|freeing +extrinsic|1 +(adj)|extrinsic |accidental|adventitious|adscititious|alien|foreign|external|extraneous|outside|extraneous|inessential|unessential +extrinsic fraud|1 +(noun)|collateral fraud|fraud +extropic|1 +(adj)|prediction|foretelling|forecasting|prognostication +extropy|1 +(noun)|prediction|foretelling|forecasting|prognostication +extrospective|1 +(adj)|extrospective |extroverted +extroversion|1 +(noun)|extraversion|sociability|sociableness +extroversive|1 +(adj)|extroversive |extraversive|extrovert|extravert|extroverted|extraverted|extrovertive|extravertive|extrovertish|outgoing|sociable +extrovert|2 +(adj)|extravert|extroverted|extraverted|extrovertive|extravertive|extroversive |extraversive +(noun)|extravert|person|individual|someone|somebody|mortal|human|soul +extroverted|3 +(adj)|extrospective +(adj)|forthcoming|outgoing|sociable +(adj)|extrovert|extravert|extraverted|extrovertive|extravertive|extroversive |extraversive +extrovertish|1 +(adj)|outgoing|extroversive |extraversive +extrovertive|1 +(adj)|extrovert|extravert|extroverted|extraverted|extravertive|extroversive |extraversive +extrude|1 +(verb)|squeeze out|produce|make|create +extrusion|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|excrescence|projection +(noun)|expulsion|squeeze|squeezing +extrusive|1 +(adj)|extrusive |eruptive|volcanic +exuberance|2 +(noun)|enthusiasm|joy|joyousness|joyfulness +(noun)|enthusiasm|ebullience|liveliness|life|spirit|sprightliness +exuberant|3 +(adj)|ebullient|high-spirited|spirited +(adj)|excessive|extravagant|overweening|unrestrained +(adj)|lush|luxuriant|profuse|riotous|abundant +exuberantly|2 +(adv)|riotously +(adv)|ebulliently|expansively +exudate|2 +(noun)|exudation|discharge|emission +(verb)|exude|transude|ooze out|ooze|excrete|egest|eliminate|pass +exudation|2 +(noun)|exudate|discharge|emission +(noun)|transudation|seepage|ooze|oozing +exude|2 +(verb)|exudate|transude|ooze out|ooze|excrete|egest|eliminate|pass +(verb)|express|show|evince +exult|2 +(verb)|walk on air|be on cloud nine|jump for joy|rejoice|joy +(verb)|rejoice|triumph|jubilate|cheer|cheer up|chirk up +exultant|1 +(adj)|exulting|jubilant|prideful|rejoicing|triumphal|triumphant|elated +exultantly|1 +(adv)|exultingly +exultation|2 +(noun)|jubilance|jubilancy|jubilation|joy|joyousness|joyfulness +(noun)|rejoicing|jubilation|utterance|vocalization +exulting|1 +(adj)|exultant|jubilant|prideful|rejoicing|triumphal|triumphant|elated +exultingly|1 +(adv)|exultantly +exurbia|1 +(noun)|residential district|residential area|community +exuviae|1 +(noun)|body covering +exuvial|1 +(adj)|body covering +exuviate|1 +(verb)|shed|molt|moult|slough|shed|cast|cast off|shake off|throw|throw off|throw away|drop +exwife|1 +(noun)|ex|woman|adult female +eyas|1 +(noun)|hawk +eyck|1 +(noun)|Eyck|van Eyck|Jan van Eyck|old master +eye|6 +(noun)|oculus|optic|sense organ|sensory receptor|receptor +(noun)|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|attention|attending +(noun)|center|centre|middle|heart|area|country +(noun)|hole +(verb)|eyeball|look +eye-beaming|1 +(noun)|glance|glimpse|coup d'oeil +eye-catcher|1 +(noun)|center|center of attention +eye-catching|1 +(adj)|attention-getting|conspicuous |obvious +eye-deceiving|1 +(adj)|trompe-l'oeil|unreal +eye-drop|2 +(noun)|eyedrop|drop|driblet +(noun)| +eye-lotion|1 +(noun)|eyewash|collyrium|lotion|application +eye-popping|1 +(adj)|dazzling|fulgurant|fulgurous|impressive +eye bank|1 +(noun)|bank +eye blink|1 +(noun)|blink|blinking|wink|winking|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +eye candy|1 +(noun)|visual percept|visual image +eye chart|1 +(noun)|chart +eye clinic|1 +(noun)|clinic +eye condition|1 +(noun)|condition|status +eye contact|2 +(noun)|visual communication +(noun)|contact +eye cup|2 +(noun)|eyecup|eyebath|vessel +(noun)|optic cup|eyecup|calyculus|caliculus|calycle +eye dialect|1 +(noun)|dialect|idiom|accent +eye disease|1 +(noun)|disease +eye doctor|1 +(noun)|ophthalmologist|oculist|specialist|medical specialist +eye dropper|1 +(noun)|dropper|pipet|pipette +eye infection|1 +(noun)|sty|stye|hordeolum|infection +eye mask|1 +(noun)|domino|half mask|mask +eye muscle|1 +(noun)|ocular muscle|muscle|musculus +eye of ra|1 +(noun)|Sekhet|Eye of Ra|Egyptian deity +eye opener|2 +(noun)|drink +(noun)|surprise +eye rhyme|1 +(noun)|rhyme|rime +eye socket|1 +(noun)|orbit|cranial orbit|orbital cavity|cavity|bodily cavity|cavum +eye tooth|2 +(noun)|canine|canine tooth|eyetooth|dogtooth|cuspid|tooth +(noun)| +eyeball|2 +(noun)|orb|capsule +(verb)|eye|look +eyebath|1 +(noun)|eyecup|eye cup|vessel +eyebrow|1 +(noun)|brow|supercilium|hair +eyebrow pencil|1 +(noun)|makeup|make-up|war paint +eyecup|2 +(noun)|eyebath|eye cup|vessel +(noun)|optic cup|calyculus|caliculus|calycle +eyed|1 +(adj)|eyed |almond-eyed|blue-eyed|one-eyed|ox-eyed|popeyed|saucer-eyed|round-eyed|sharp-eyed|skew-eyed|eyelike +eyedness|1 +(noun)|asymmetry|imbalance +eyedrop|1 +(noun)|eye-drop|drop|driblet +eyeful|2 +(noun)|woman|adult female +(noun)|view|survey|sight +eyeglass|1 +(noun)|monocle|lens|lense|lens system +eyeglass wearer|1 +(noun)|perceiver|observer|beholder +eyeglasses|2 +(noun)|spectacles|specs|glasses|optical instrument +(noun)|monocle|eyeglass|lens|lense|lens system +eyeish|1 +(noun)|Eyeish|Caddo +eyelash|1 +(noun)|lash|cilium|hair +eyeless|2 +(adj)|eyeless +(adj)|sightless|unseeing|blind |unsighted +eyelessness|1 +(noun)|blindness|sightlessness|cecity +eyelet|2 +(noun)|hole +(noun)|cringle|loop|grommet|grummet|fastener|fastening|holdfast|fixing +eyelid|1 +(noun)|lid|palpebra|protective fold +eyelike|1 +(adj)|eyed +eyeliner|1 +(noun)|makeup|make-up|war paint +eyepatch|1 +(noun)|patch|cloth covering +eyepiece|1 +(noun)|ocular|lens|lense|lens system +eyes|6 +(noun)|opinion|sentiment|persuasion|view|thought +(noun)|eye|oculus|optic|sense organ|sensory receptor|receptor +(noun)|eye|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|eye|attention|attending +(noun)|center|centre|middle|heart|eye|area|country +(noun)|eye|hole +eyes-only|1 +(adj)|classified +eyeshade|1 +(noun)|bill|peak|visor|vizor|brim +eyeshadow|1 +(noun)|makeup|make-up|war paint +eyeshot|1 +(noun)|view|range|reach +eyesight|1 +(noun)|seeing|sightedness|sight|vision|visual sense|visual modality +eyesore|1 +(noun)|ugliness +eyespot|1 +(noun)|ocellus|marking +eyestrain|1 +(noun)|asthenopia|fatigue|weariness|tiredness +eyetooth|1 +(noun)|canine|canine tooth|eye tooth|dogtooth|cuspid|tooth +eyewash|1 +(noun)|eye-lotion|collyrium|lotion|application +eyewitness|1 +(noun)|spectator|witness|viewer|watcher|looker +eyra|1 +(noun)|jaguarundi|jaguarundi cat|jaguarondi|Felis yagouaroundi|wildcat +eyre|1 +(noun)|Eyre|Lake Eyre|lake +eyre peninsula|1 +(noun)|Eyre Peninsula|peninsula +eyrie|2 +(noun)|aerie|aery|eyry|bird's nest +(noun)|aerie|aery|eyry|habitation +eyrir|1 +(noun)|aurar|Icelandic monetary unit +eyry|2 +(noun)|aerie|aery|eyrie|bird's nest +(noun)|aerie|aery|eyrie|habitation +eysenck|1 +(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist +eysenck personality inventory|1 +(noun)|Eysenck Personality Inventory|EPI|self-report personality inventory|self-report inventory +ezechiel|2 +(noun)|Ezekiel|Ezechiel|prophet +(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book +ezed|1 +(noun)|Z|zee|zed|izzard|letter|letter of the alphabet|alphabetic character +ezekias|1 +(noun)|Hezekiah|Ezekias|king|male monarch +ezekiel|2 +(noun)|Ezekiel|Ezechiel|prophet +(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book +ezo|1 +(noun)|Hokkaido|Ezo|Yezo|island +ezo-yama-hagi|1 +(noun)|bicolor lespediza|Lespedeza bicolor|bush clover|lespedeza +ezra|2 +(noun)|Ezra|priest|non-Christian priest|copyist|scribe|scrivener +(noun)|Ezra|Book of Ezra|book +ezra cornell|1 +(noun)|Cornell|Ezra Cornell|businessman|man of affairs|philanthropist|altruist +ezra loomis pound|1 +(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer|author|poet +ezra pound|1 +(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer|author|poet +f|4 +(noun)|degree Fahrenheit|F|degree +(noun)|fluorine|F|atomic number 9|chemical element|element|gas|halogen +(noun)|farad|F|capacitance unit +(noun)|F|letter|letter of the alphabet|alphabetic character +f.|1 +(adj)|fine|pure +f. d. roosevelt|1 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +f. g. banting|1 +(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist +f. scott fitzgerald|1 +(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer|author +f.i.s.c.|2 +(noun)|Foreign Intelligence Surveillance Court|F.I.S.C.|court|tribunal|judicature +(noun)|fisc|treasury|exchequer +f clef|1 +(noun)|bass clef|F clef|clef +f layer|1 +(noun)|Appleton layer|F layer|F region|region|part +f number|1 +(noun)|focal ratio|stop number|speed|ratio +f region|1 +(noun)|Appleton layer|F layer|F region|region|part +fa|1 +(noun)|solfa syllable +fa la|1 +(noun)|fal la|nonsense|bunk|nonsensicality|meaninglessness|hokum +faa|1 +(noun)|Federal Aviation Agency|FAA|agency|federal agency|government agency|bureau|office|authority +fab|1 +(adj)|fabulous|pleasing +fabaceae|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family +faberge|1 +(noun)|Faberge|Peter Carl Faberge|goldsmith|goldworker|gold-worker +fabian|3 +(adj)|Fabian|socialism +(adj)|dilatory|cautious +(noun)|Fabian|socialist +fabian society|1 +(noun)|Fabian Society|association +fabiana|1 +(noun)|Fabiana|genus Fabiana|asterid dicot genus +fabiana imbricata|1 +(noun)|pichi|Fabiana imbricata|shrub|bush +fabianism|1 +(noun)|Fabianism|socialism +fable|3 +(noun)|fabrication|fiction|falsehood|falsity|untruth|false statement +(noun)|parable|allegory|apologue|story +(noun)|legend|story +fabled|1 +(adj)|legendary|unreal +fabric|2 +(noun)|cloth|material|textile|artifact|artefact +(noun)|framework|structure +fabricate|2 +(verb)|manufacture|construct|make +(verb)|manufacture|cook up|make up|invent|think up|think of|dream up|hatch|concoct +fabricated|1 +(adj)|fancied|fictional|fictitious|invented|made-up|unreal +fabrication|5 +(noun)|fiction|fable|falsehood|falsity|untruth|false statement +(noun)|fictionalization|fictionalisation|writing|authorship|composition|penning +(noun)|manufacture|creating from raw materials +(noun)|assembly|construction|building +(noun)|lying|prevarication|falsification|misrepresentaation +fabricator|1 +(noun)|storyteller|fibber|liar|prevaricator +fabulist|1 +(noun)|narrator|storyteller|teller +fabulous|3 +(adj)|fab|pleasing +(adj)|mythic|mythical|mythologic|mythological|unreal +(adj)|incredible |unbelievable +fabulously|1 +(adv)|fantastically +facade|2 +(noun)|frontage|frontal|front +(noun)|window dressing|misrepresentation|deceit|deception +face|23 +(noun)|human face|external body part +(noun)|expression|look|aspect|facial expression|countenance|visage +(noun)|appearance|visual aspect +(noun)|facing|braving|confronting|coping with|grappling|tackling +(noun)|surface +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|side|surface +(noun)|external body part +(noun)|front +(noun)|grimace|facial expression|facial gesture +(noun)|font|fount|typeface|type +(noun)|status|position +(noun)|boldness|nerve|brass|cheek|aggressiveness +(noun)|vertical surface +(verb)|confront|face up|set about|go about|approach +(verb)|confront|meet|encounter|play|take on|face off +(verb)|front|look|lie +(verb)|be +(verb)|turn +(verb)|confront|present +(verb)|disclose|expose +(verb)|line +(verb)|cover +face-amount certificate company|1 +(noun)|investment company|investment trust|investment firm|fund +face-harden|1 +(verb)|harden|indurate +face-lift|1 +(verb)|lift|operate on|operate +face-off|2 +(noun)|confrontation|encounter|showdown|disagreement +(noun)|beginning|start|commencement +face-saving|1 +(adj)|helpful +face-to-face|3 +(adj)|personal +(adv)|opposite +(adv)|face to face +face angle|1 +(noun)|angle +face card|1 +(noun)|picture card|court card|playing card +face cloth|1 +(noun)|washcloth|washrag|flannel|bath linen +face cream|1 +(noun)|cold cream|coldcream|vanishing cream|cream|ointment|emollient +face fungus|1 +(noun)|beard|whiskers|hair +face guard|1 +(noun)|face mask +face lift|3 +(noun)|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +(noun)|facelift|face lifting|renovation|redevelopment +(noun)| +face lifting|2 +(noun)|face lift|facelift|renovation|redevelopment +(noun)|face lift|facelift|lift|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +face mask|1 +(noun)|mask +face off|1 +(verb)|bully off|play +face pack|1 +(noun)|pack|corrective|restorative +face powder|1 +(noun)|powder|makeup|make-up|war paint +face recognition|2 +(noun)|facial recognition|automatic face recognition|biometric identification|biometric authentication|identity verification +(noun)|visual perception|beholding|seeing +face saver|1 +(noun)|face saving|accomplishment|achievement +face saving|1 +(noun)|face saver|accomplishment|achievement +face soap|1 +(noun)|toilet soap|bath soap|soap +face the music|1 +(verb)|carry-the can|bear|take over|accept|assume +face to face|2 +(adv)|face-to-face +(adv)|face-to-face|opposite +face towel|1 +(noun)|hand towel|towel +face up|1 +(verb)|confront|face|set about|go about|approach +face value|2 +(noun)|par value|nominal value|value +(noun)|semblance|gloss|color|colour +face veil|1 +(noun)|head covering|veil +faced|1 +(adj)|faced |baby-faced|featured|Janus-faced|two-faced|long-faced|moon-faced|round-faced|sweet-faced|visaged +faceless|1 +(adj)|faceless |anonymous +facelift|2 +(noun)|face lift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +(noun)|face lift|face lifting|renovation|redevelopment +faceplate|1 +(noun)|protective covering|protective cover|protection +facer|1 +(noun)|difficulty +facet|2 +(noun)|aspect|feature|characteristic +(noun)|subfigure +facet plane|1 +(noun)|plane|sheet +faceted|1 +(adj)|faceted +facetious|1 +(adj)|bantering|tongue-in-cheek|humorous |humourous +facetiously|1 +(adv)|jokingly|tongue-in-cheek +facetiousness|1 +(noun)|playfulness|fun +facia|1 +(noun)|fascia|connective tissue +facial|4 +(adj)|external body part +(adj)|surface +(noun)|facial nerve|nervus facialis|seventh cranial nerve|cranial nerve +(noun)|skin care|skincare|beauty treatment +facial artery|1 +(noun)|arteria facialis|external maxillary artery|maxillary artery|arteria maxillaris +facial expression|2 +(noun)|facial gesture|gesture|motion +(noun)|expression|look|aspect|face|countenance|visage +facial gesture|1 +(noun)|facial expression|gesture|motion +facial index|1 +(noun)|ratio +facial muscle|1 +(noun)|skeletal muscle|striated muscle +facial nerve|1 +(noun)|facial|nervus facialis|seventh cranial nerve|cranial nerve +facial profiling|1 +(noun)|identification +facial recognition|1 +(noun)|face recognition|automatic face recognition|biometric identification|biometric authentication|identity verification +facial tissue|1 +(noun)|tissue|tissue paper +facial vein|1 +(noun)|vena facialis|vein|vena|venous blood vessel +facile|3 +(adj)|superficial +(adj)|easy|effortless +(adj)|eloquent|fluent|silver|silver-tongued|smooth-spoken|articulate +facilitate|3 +(verb)|ease|alleviate|help|assist|aid +(verb)|help|serve +(verb)|cause|do|make +facilitated|1 +(adj)|expedited +facilitation|3 +(noun)|condition|status +(noun)|organic phenomenon +(noun)|aid|assist|assistance|help +facilitative|1 +(adj)|helpful +facilitator|1 +(noun)|assistant|helper|help|supporter +facilitatory|1 +(adj)|helpful +facility|5 +(noun)|installation|artifact|artefact +(noun)|adeptness|adroitness|deftness|quickness|skillfulness +(noun)|readiness|effortlessness +(noun)|services +(noun)|service +facing|5 +(noun)|lining +(noun)|veneer|coating|coat +(noun)|cladding|protective covering|protective cover|protection +(noun)|lining|application|coating|covering +(noun)|face|braving|confronting|coping with|grappling|tackling +facing pages|1 +(noun)|spread|spread head|spreadhead|page +facsimile|3 +(noun)|autotype|copy +(noun)|facsimile machine|fax|duplicator|copier +(verb)|fax|telefax|telecommunicate +facsimile machine|1 +(noun)|facsimile|fax|duplicator|copier +fact|4 +(noun)|information +(noun)|information|info +(noun)|reality|realness|realism +(noun)|concept|conception|construct +fact-finding|1 +(adj)|investigative|investigatory|inquiring +fact mood|1 +(noun)|indicative mood|indicative|declarative mood|declarative|common mood|mood|mode|modality +faction|2 +(noun)|cabal|junto|camarilla|clique|coterie|ingroup|inner circle|pack|camp +(noun)|sect|clique|coterie|ingroup|inner circle|pack|camp +factious|1 +(adj)|dissentious|divisive|discordant +factitious|1 +(adj)|artificial |unreal +factoid|2 +(noun)|information|info +(noun)|news item +factor|8 +(noun)|cause +(noun)|component|constituent|element|ingredient|part|section|division +(noun)|number +(noun)|divisor|integer|whole number +(noun)|agent|broker|businessperson|bourgeois +(noun)|independent variable|experimental variable +(noun)|gene|cistron|sequence +(verb)|factor in|factor out|calculate|cipher|cypher|compute|work out|reckon|figure +factor analyse|1 +(verb)|factor analyze|analyze|analyse +factor analysis|1 +(noun)|correlational analysis +factor analytic|1 +(adj)|factor analytical|correlational analysis +factor analytical|1 +(adj)|factor analytic|correlational analysis +factor analyze|1 +(verb)|factor analyse|analyze|analyse +factor i|1 +(noun)|fibrinogen|factor I|coagulation factor|clotting factor +factor ii|1 +(noun)|prothrombin|factor II|coagulation factor|clotting factor +factor iii|1 +(noun)|thromboplastin|thrombokinase|factor III|coagulation factor|clotting factor +factor in|1 +(verb)|factor|factor out|calculate|cipher|cypher|compute|work out|reckon|figure +factor iv|1 +(noun)|calcium ion|factor IV|calcium|Ca|atomic number 20|coagulation factor|clotting factor +factor ix|1 +(noun)|Christmas factor|factor IX|coagulation factor|clotting factor +factor of proportionality|1 +(noun)|constant of proportionality|factor|constant +factor of safety|1 +(noun)|safety factor|ratio +factor out|1 +(verb)|factor|factor in|calculate|cipher|cypher|compute|work out|reckon|figure +factor v|1 +(noun)|proaccelerin|prothrombin accelerator|accelerator factor|factor V|coagulation factor|clotting factor +factor vii|1 +(noun)|proconvertin|cothromboplastin|stable factor|factor VII|coagulation factor|clotting factor +factor viii|1 +(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +factor x|1 +(noun)|prothrombinase|factor X|coagulation factor|clotting factor +factor xi|1 +(noun)|plasma thromboplastin antecedent|factor XI|coagulation factor|clotting factor +factor xii|1 +(noun)|Hageman factor|factor XII|coagulation factor|clotting factor +factor xiii|1 +(noun)|fibrinase|factor XIII|coagulation factor|clotting factor +factorial|2 +(adj)|product|mathematical product +(noun)|product|mathematical product +factoring|1 +(noun)|factorization|factorisation|resolution|resolving +factorisation|1 +(noun)|factorization|factoring|resolution|resolving +factorise|1 +(verb)|factorize|resolve|solve +factorization|1 +(noun)|factorisation|factoring|resolution|resolving +factorize|1 +(verb)|factorise|resolve|solve +factory|1 +(noun)|mill|manufacturing plant|manufactory|plant|works|industrial plant +factory-made|1 +(adj)|factory-made |boughten|store-bought|manufactured|mass-produced|ready-made +factory farm|1 +(noun)|agribusiness|agriculture|commercial enterprise|business enterprise|business +factory price|1 +(noun)|price|terms|damage +factory ship|1 +(noun)|whaler|whaling ship +factory whistle|1 +(noun)|whistle +factory worker|1 +(noun)|mill-hand|workman|working man|working person +factotum|1 +(noun)|servant|retainer +facts of life|1 +(noun)|reproduction|procreation|breeding|sexual activity|sexual practice|sex|sex activity +factual|5 +(adj)|actual|real |existent +(adj)|information +(adj)|de facto |actual +(adj)|true +(adj)|concrete +factuality|1 +(noun)|factualness|quality +factualness|1 +(noun)|factuality|quality +facula|2 +(noun)|topographic point|place|spot +(noun)|topographic point|place|spot +facultative|4 +(adj)|ability|power +(adj)|facultative +(adj)|enabling +(adj)|optional +faculty|2 +(noun)|mental faculty|module|ability|power +(noun)|staff|body +faculty member|1 +(noun)|academician|academic|educator|pedagogue +fad|1 +(noun)|craze|furor|furore|cult|rage|fashion +fad diet|1 +(noun)|reducing diet|obesity diet +faddily|1 +(adv)|faddishly +faddish|1 +(adj)|faddy|fashionable |stylish +faddishly|1 +(adv)|faddily +faddist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +faddy|1 +(adj)|faddish|fashionable |stylish +fade|6 +(noun)|slice|slicing|golf stroke|golf shot|swing +(noun)|disappearance|termination|ending|conclusion +(verb)|melt|weaken +(verb)|wither|disappear|vanish|go away +(verb)|evanesce|blow over|pass off|fleet|pass|disappear|vanish|go away +(verb)|languish|devolve|deteriorate|drop|degenerate +fade away|1 +(verb)|dissolve|fade out|change state|turn +fade out|1 +(verb)|dissolve|fade away|change state|turn +faded|2 +(adj)|bleached|washed-out|washy|colorless |colourless +(adj)|attenuate|attenuated|weakened|decreased |reduced +fadeout|2 +(noun)|receding|disappearance +(noun)|noise|interference|disturbance +fading|1 +(noun)|attenuation|weakening +fading away|1 +(noun)|dwindling|dwindling away +fado|1 +(noun)|folk song|folksong|folk ballad +fae|1 +(noun)|fuel-air explosive|FAE|explosive device +faecal|1 +(adj)|fecal|feculent|dirty |soiled|unclean +faecal matter|1 +(noun)|fecal matter|feces|faeces|BM|stool|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +faecal occult test|1 +(noun)|fecal occult test|stool test|diagnostic test|diagnostic assay +faecalith|1 +(noun)|coprolith|fecalith|stercolith|mass +faeces|1 +(noun)|fecal matter|faecal matter|feces|BM|stool|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +faerie|2 +(noun)|fairy|faery|sprite|spiritual being|supernatural being +(noun)|fairyland|faery|imaginary place|mythical place +faeroe islands|2 +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island +faeroes|2 +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island +faeroese|1 +(noun)|Faroese|Faeroese|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +faery|2 +(noun)|fairy|faerie|sprite|spiritual being|supernatural being +(noun)|fairyland|faerie|imaginary place|mythical place +fafnir|1 +(noun)|Fafnir|dragon|firedrake +fag|5 +(noun)|fagot|faggot|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +(noun)|cigarette|cigaret|coffin nail|butt|roll of tobacco|smoke +(verb)|serve|attend to|wait on|attend|assist +(verb)|labor|labour|toil|travail|grind|drudge|dig|moil|work|do work +(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fatigue|indispose +fag end|2 +(noun)|tail|tail end|end|ending +(noun)|end|remainder|remnant|oddment +fag out|1 +(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag|fatigue|indispose +fagaceae|1 +(noun)|Fagaceae|family Fagaceae|beech family|hamamelid dicot family +fagales|1 +(noun)|Fagales|order Fagales|plant order +fagged|1 +(adj)|exhausted|dog-tired|fatigued|played out|spent|washed-out|worn-out|worn out|tired +faggot|5 +(noun)|fagot|fag|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +(noun)|fagot|bundle|sheaf +(verb)|fagot|embroider|broider +(verb)|fagot|tie down|tie up|bind|truss +(verb)|fagot|faggot up|tie down|tie up|bind|truss +faggot up|1 +(verb)|faggot|fagot|tie down|tie up|bind|truss +fagin|1 +(noun)|Fagin|fictional character|fictitious character|character +fagopyrum|1 +(noun)|Fagopyrum|genus Fagopyrum|dicot genus|magnoliopsid genus +fagopyrum esculentum|1 +(noun)|buckwheat|Polygonum fagopyrum|Fagopyrum esculentum|herb|herbaceous plant +fagot|5 +(noun)|faggot|fag|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +(noun)|faggot|bundle|sheaf +(verb)|faggot|embroider|broider +(verb)|faggot|tie down|tie up|bind|truss +(verb)|faggot|faggot up|tie down|tie up|bind|truss +fagus|1 +(noun)|Fagus|genus Fagus|hamamelid dicot genus +fagus americana|1 +(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech|beech tree +fagus grandifolia|1 +(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech|beech tree +fagus pendula|1 +(noun)|weeping beech|Fagus pendula|Fagus sylvatica pendula|beech|beech tree +fagus purpurea|1 +(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech|beech tree +fagus sylvatica|1 +(noun)|common beech|European beech|Fagus sylvatica|beech|beech tree +fagus sylvatica atropunicea|1 +(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech|beech tree +fagus sylvatica pendula|1 +(noun)|weeping beech|Fagus pendula|Fagus sylvatica pendula|beech|beech tree +fagus sylvatica purpurea|1 +(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech|beech tree +fahd|1 +(noun)|Fahd|Fahd ibn Abdel Aziz al-Saud|king|male monarch +fahd ibn abdel aziz al-saud|1 +(noun)|Fahd|Fahd ibn Abdel Aziz al-Saud|king|male monarch +fahrenheit|1 +(noun)|Fahrenheit|Gabriel Daniel Fahrenheit|physicist +fahrenheit scale|1 +(noun)|Fahrenheit scale|temperature scale +fahrenheit thermometer|1 +(noun)|Fahrenheit thermometer|thermometer +faience|1 +(noun)|earthenware +fail|8 +(verb)|neglect +(verb)|go wrong|miscarry +(verb)|betray|disappoint|let down +(verb)|go bad|give way|die|give out|conk out|go|break|break down|change +(verb)|judge +(verb)|flunk|bomb|flush it +(verb)|run out|give out +(verb)|worsen|decline +fail-safe|2 +(adj)|secure +(adj)|safe +failed|1 +(adj)|failing|unsuccessful +failing|4 +(adj)|failed|unsuccessful +(adj)|unsatisfactory +(noun)|weakness|imperfection|imperfectness +(noun)|failure +faille|1 +(noun)|fabric|cloth|material|textile +failure|7 +(noun)|nonaccomplishment|nonachievement +(noun)|happening|occurrence|natural event +(noun)|fortune|destiny|fate|luck|lot|circumstances|portion +(noun)|loser|nonstarter|unsuccessful person|unfortunate|unfortunate person +(noun)|omission|skip +(noun)|bankruptcy|insolvency +(noun)|disorder|upset +fain|2 +(adj)|disposed|inclined|prepared|willing +(adv)|gladly|lief +faineance|1 +(noun)|idleness|indolence|laziness +faineant|1 +(adj)|indolent|lazy|otiose|slothful|work-shy|idle +faint|8 +(adj)|perceptible +(adj)|dim|shadowy|vague|wispy|indistinct +(adj)|feeble|weak +(adj)|light|swooning|light-headed|lightheaded|ill |sick +(adj)|indistinct +(adj)|fainthearted|timid|cowardly |fearful +(noun)|swoon|syncope|deliquium|loss of consciousness +(verb)|conk|swoon|pass out|zonk out|pass out|black out +fainthearted|1 +(adj)|faint|timid|cowardly |fearful +faintheartedness|1 +(noun)|timidity|timorousness +faintness|2 +(noun)|softness +(noun)|dimness|indistinctness|blurriness|fogginess|fuzziness +fair|19 +(adj)|fair |just|antimonopoly|antitrust|clean|sporting|sportsmanlike|fair-minded|fair-and-square|impartial|just|reasonable|sensible +(adj)|impartial |disinterested|dispassionate|cold-eyed|indifferent|unbiased|unbiassed|indifferent|just +(adj)|respectable +(adj)|fairish|reasonable|moderate +(adj)|sightly|beautiful +(adj)|bonny|bonnie|comely|beautiful +(adj)|fair |in-bounds +(adj)|average|mediocre|middling|ordinary +(adj)|feminine +(adj)|clean|legible +(adj)|clear +(adj)|fairish|blond |blonde|light-haired +(noun)|carnival|funfair|show +(noun)|gathering|assemblage +(noun)|exhibition|exposition|expo +(noun)|bazaar|sale|cut-rate sale|sales event +(verb)|join|bring together +(adv)|fairly|clean +(adv)|fairly|without favoring one party|without favouring one party|evenhandedly +fair-and-square|1 +(adj)|fair |just +fair-haired|1 +(adj)|blue-eyed|white-haired|loved +fair-maids-of-france|1 +(noun)|meadow saxifrage|fair-maids-of-France|Saxifraga granulata|saxifrage|breakstone|rockfoil +fair-minded|1 +(adj)|fair |just +fair-mindedness|1 +(noun)|fairness|candor|candour|impartiality|nonpartisanship +fair ball|1 +(noun)|contact +fair catch|1 +(noun)|catch|grab|snatch|snap +fair chance|1 +(noun)|sporting chance|probability|chance +fair copy|1 +(noun)|copy|written matter +fair deal|1 +(noun)|square deal|deal +fair game|1 +(noun)|prey|quarry|target|victim +fair hearing|1 +(noun)|hearing +fair to middling|1 +(adj)|adequate|passable|satisfactory +fair use|1 +(noun)|use|enjoyment +fair weather|1 +(noun)|sunshine|temperateness|weather|weather condition|atmospheric condition +fairbanks|2 +(noun)|Fairbanks|Douglas Fairbanks Jr.|actor|histrion|player|thespian|role player +(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor|histrion|player|thespian|role player +fairground|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +fairish|2 +(adj)|fair|reasonable|moderate +(adj)|fair|blond |blonde|light-haired +fairlead|1 +(noun)|pulley|pulley-block|block +fairly|3 +(adv)|reasonably|moderately|within reason|somewhat|middling|passably +(adv)|fair|without favoring one party|without favouring one party|evenhandedly +(adv)|fair|clean +fairness|4 +(noun)|equity|justice|justness +(noun)|fair-mindedness|candor|candour|impartiality|nonpartisanship +(noun)|paleness|blondness|complexion|skin color|skin colour +(noun)|comeliness|loveliness|beauteousness|beauty +fairness commission|1 +(noun)|committee|commission +fairway|3 +(noun)|site|land site +(noun)|path|route|itinerary +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +fairway crested wheat grass|1 +(noun)|crested wheatgrass|crested wheat grass|Agropyron cristatum|wheatgrass|wheat-grass +fairy|2 +(noun)|faery|faerie|sprite|spiritual being|supernatural being +(noun)|fagot|faggot|fag|nance|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +fairy-ring mushroom|1 +(noun)|Marasmius oreades|agaric +fairy-slipper|1 +(noun)|calypso|Calypso bulbosa|orchid|orchidaceous plant +fairy armadillo|1 +(noun)|pichiciago|pichiciego|chlamyphore|Chlamyphorus truncatus|armadillo +fairy bell|1 +(noun)|common foxglove|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove|digitalis +fairy bluebird|1 +(noun)|bluebird|oscine|oscine bird +fairy circle|1 +(noun)|fairy ring|ring|halo|annulus|anulus|doughnut|anchor ring +fairy cup|2 +(noun)|blood cup|Peziza coccinea|discomycete|cup fungus +(noun)|Mitella diphylla|miterwort|mitrewort|bishop's cap +fairy godmother|2 +(noun)|benefactor|helper +(noun)|fairy|faery|faerie|sprite +fairy lantern|1 +(noun)|globe lily|liliaceous plant +fairy light|1 +(noun)|light|light source +fairy ring|1 +(noun)|fairy circle|ring|halo|annulus|anulus|doughnut|anchor ring +fairy shrimp|1 +(noun)|branchiopod crustacean|branchiopod|branchiopodan +fairy story|2 +(noun)|fairytale|fairy tale|narrative|narration|story|tale +(noun)|fairytale|fairy tale|cock-and-bull story|song and dance|fib|story|tale|tarradiddle|taradiddle +fairy swallow|1 +(noun)|domestic pigeon +fairy tale|3 +(noun)|fairytale|fairy story|narrative|narration|story|tale +(noun)|fairytale|fairy story|cock-and-bull story|song and dance|fib|story|tale|tarradiddle|taradiddle +(noun)| +fairyland|2 +(noun)|fantasy world|phantasy world|fantasy|phantasy +(noun)|faerie|faery|imaginary place|mythical place +fairytale|2 +(noun)|fairy tale|fairy story|narrative|narration|story|tale +(noun)|fairy tale|fairy story|cock-and-bull story|song and dance|fib|story|tale|tarradiddle|taradiddle +faisal|1 +(noun)|Faisal|Faisal ibn Abdel Aziz al-Saud|king|male monarch +faisal ibn abdel aziz al-saud|1 +(noun)|Faisal|Faisal ibn Abdel Aziz al-Saud|king|male monarch +faisalabad|1 +(noun)|Faisalabad|Lyallpur|city|metropolis|urban center +fait accompli|1 +(noun)|accomplished fact|accomplishment|achievement +faith|4 +(noun)|religion|religious belief|belief|theological virtue|supernatural virtue +(noun)|trust|belief +(noun)|religion|institution|establishment +(noun)|commitment|allegiance|loyalty|dedication +faith cure|1 +(noun)|faith healing|care|attention|aid|tending +faith healing|1 +(noun)|faith cure|care|attention|aid|tending +faithful|5 +(adj)|faithful |firm|loyal|truehearted|fast|true|constant|true|trustworthy|trusty +(adj)|close|accurate +(adj)|faithful |true to +(noun)|following|followers +(noun)|congregation|fold|social group +faithfully|1 +(adv)|dependably|reliably +faithfulness|1 +(noun)|fidelity|quality +faithless|1 +(adj)|traitorous|unfaithful|disloyal +faithlessly|1 +(adv)|traitorously|treacherously|treasonably|false +faithlessness|1 +(noun)|falseness|fickleness|inconstancy|infidelity|unfaithfulness +fake|8 +(adj)|bogus|phony|phoney|bastard|counterfeit |imitative +(adj)|false|faux|imitation|simulated|artificial |unreal +(noun)|sham|postiche|imitation|counterfeit|forgery +(noun)|imposter|impostor|pretender|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|juke|feint +(verb)|forge|counterfeit|re-create +(verb)|fudge|manipulate|falsify|cook|wangle|misrepresent|cheat|chisel +(verb)|bullshit|bull|feign|sham|pretend|affect|dissemble +fake book|1 +(noun)|fake|sham|postiche +fakeer|1 +(noun)|fakir|faqir|faquir|saint|holy man|holy person|angel|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +faker|1 +(noun)|imposter|impostor|pretender|fake|fraud|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +fakery|1 +(noun)|deception|deceit|dissembling|dissimulation +fakir|1 +(noun)|fakeer|faqir|faquir|saint|holy man|holy person|angel|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +fal la|2 +(noun)|fa la|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|Falla|Manuel de Falla|composer|pianist|piano player +falafel|1 +(noun)|felafel|dish +falcate|1 +(adj)|falciform|sickle-shaped|curved |curving +falcatifolium|1 +(noun)|Falcatifolium|genus Falcatifolium|gymnosperm genus +falcatifolium falciforme|1 +(noun)|common sickle pine|Falcatifolium falciforme|conifer|coniferous tree +falcatifolium taxoides|1 +(noun)|yellow-leaf sickle pine|Falcatifolium taxoides|conifer|coniferous tree +falchion|1 +(noun)|sword|blade|brand|steel +falciform|1 +(adj)|falcate|sickle-shaped|curved |curving +falciform ligament|1 +(noun)|ligament +falco|1 +(noun)|Falco|genus Falco|bird genus +falco columbarius|1 +(noun)|pigeon hawk|merlin|Falco columbarius|falcon +falco peregrinus|1 +(noun)|peregrine|peregrine falcon|Falco peregrinus|falcon +falco rusticolus|1 +(noun)|gyrfalcon|gerfalcon|Falco rusticolus|falcon +falco sparverius|1 +(noun)|sparrow hawk|American kestrel|kestrel|Falco sparverius|falcon +falco subbuteo|1 +(noun)|hobby|Falco subbuteo|falcon +falco tinnunculus|1 +(noun)|kestrel|Falco tinnunculus|falcon +falcon|2 +(noun)|hawk +(verb)|hunt|run|hunt down|track down +falcon-gentil|1 +(noun)|falcon-gentle|peregrine|peregrine falcon|Falco peregrinus +falcon-gentle|1 +(noun)|falcon-gentil|peregrine|peregrine falcon|Falco peregrinus +falconer|1 +(noun)|hawker|hunter|huntsman +falconidae|1 +(noun)|Falconidae|family Falconidae|bird family +falconiformes|1 +(noun)|Falconiformes|order Falconiformes|animal order +falconine|1 +(adj)|hawk +falconry|1 +(noun)|art|artistry|prowess +falderal|1 +(noun)|folderol|frills|gimcrackery|gimcracks|nonsense|trumpery|decoration|ornament|ornamentation +falkland islands|1 +(noun)|Falkland Islands|island +falkner|1 +(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist +fall|41 +(noun)|autumn|season|time of year +(noun)|spill|tumble|slip|trip +(noun)|Fall|event +(noun)|descent|declivity|decline|declination|declension|downslope|slope|incline|side +(noun)|sin|sinning +(noun)|downfall|weakening +(noun)|change of location|travel +(noun)|capitulation|surrender|loss +(noun)|twilight|dusk|gloaming|nightfall|evenfall|crepuscule|crepuscle|hour|time of day +(noun)|pin|victory|triumph +(noun)|drop|descent|gravitation +(noun)|drop|dip|free fall|decrease|decrement +(verb)|travel|go|move|locomote +(verb)|descend|go down|come down|travel|go|move|locomote|fall in +(verb)|change state|turn|fall for|fall through|fall flat|founder|flop|lag|dawdle|fall back|fall behind|break|separate|split up|fall apart|come apart|crumble|fall apart|slip|drop off|drop away|fall away|fall back|lose|drop off|fall behind|recede +(verb)|come|be +(verb)|precipitate|come down +(verb)|fail|go wrong|miscarry +(verb)|decrease|diminish|lessen|change magnitude +(verb)|die|decease|perish|go|exit|pass away|expire|pass +(verb)|shine|strike|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|yield +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|sin|transgress|trespass +(verb)|leave office|quit|step down|resign +(verb)|travel|go|move|locomote +(verb)|be +(verb)|accrue|change hands +(verb)|light|return|pass|devolve +(verb)|return|pass|devolve|change hands +(verb)|slope|incline|pitch +(verb)|fall down|change posture +(verb)|change posture +(verb)|hang|flow +(verb)|change +(verb)|change +(verb)|issue|emerge|come out|come forth|go forth|egress +(verb)|be born +(verb)|get down|begin|get|start out|start|set about|set out|commence +(verb)|disappear|vanish|go away +(verb)|descend|settle|come +fall-blooming hydrangea|1 +(noun)|Hydrangea paniculata|hydrangea +fall-board|2 +(noun)|fall board|protective covering|protective cover|protection +(noun)| +fall all over|1 +(verb)|interact +fall apart|4 +(verb)|go to pieces|break down|lose it|snap +(verb)|break|wear|wear out|bust|decay|crumble|delapidate +(verb)|crumble|disintegrate +(verb)|break|separate|split up|come apart|change integrity +fall armyworm|1 +(noun)|Spodoptera frugiperda|caterpillar +fall asleep|1 +(verb)|dope off|flake out|drift off|nod off|drop off|doze off|drowse off +fall away|2 +(verb)|slip|drop off|drop away|worsen|decline +(verb)|fall off|disappear|vanish|go away +fall back|6 +(verb)|lean back|recline +(verb)|lag|dawdle|fall behind|follow +(verb)|recede|retire|withdraw|retreat|pull away|draw back|recede|pull back|retire|move back +(verb)|lose|drop off|fall behind|recede|regress|retrograde|retrogress +(verb)|resort|recur|use|utilize|utilise|apply|employ +(verb)|relapse|lapse|recidivate|regress|retrogress|revert|return|retrovert|regress|turn back +fall behind|2 +(verb)|fall back|lose|drop off|recede|regress|retrograde|retrogress +(verb)|lag|dawdle|fall back|follow +fall board|2 +(noun)|fall-board|protective covering|protective cover|protection +(noun)| +fall by the wayside|1 +(verb)|drop out|give up|drop by the wayside|throw in|throw in the towel|quit|chuck up the sponge +fall cankerworm|1 +(noun)|cankerworm +fall dandelion|1 +(noun)|arnica bud|Leontodon autumnalis|hawkbit +fall down|1 +(verb)|fall|change posture +fall equinox|1 +(noun)|autumnal equinox|September equinox|equinox +fall flat|1 +(verb)|fall through|founder|flop|fail|go wrong|miscarry +fall for|2 +(verb)|change +(verb)|err|mistake|slip +fall from grace|1 +(verb)|misbehave|misconduct|misdemean +fall guy|1 +(noun)|chump|fool|gull|mark|patsy|sucker|soft touch|mug|victim|dupe +fall in|2 +(verb)|collapse|cave in|give|give way|break|founder|change +(verb)|join|get together +fall in line|1 +(verb)|align|array +fall in love|1 +(verb)|fall +fall into|1 +(verb)|fall under|constitute|represent|make up|comprise|be +fall into place|1 +(verb)|click|get through|dawn|come home|get across|sink in|penetrate +fall of man|1 +(noun)|Fall of Man|landmark|turning point|watershed +fall off|3 +(verb)|detach|come off|come away +(verb)|slump|sink|drop +(verb)|fall away|disappear|vanish|go away +fall open|1 +(verb)|drop open|sink|drop|drop down +fall out|5 +(verb)|quarrel|dispute|scrap|argufy|altercate +(verb)|follow|result|ensue +(verb)|come out|pop out|issue|emerge|come out|come forth|go forth|egress +(verb)|exit|go out|get out|leave +(verb)|happen|hap|go on|pass off|occur|pass|come about|take place +fall over|1 +(verb)|go over|break down|collapse +fall over backwards|1 +(verb)|bend over backwards|act|behave|do +fall short|1 +(verb)|come short|disappoint|let down +fall through|1 +(verb)|fall flat|founder|flop|fail|go wrong|miscarry +fall under|1 +(verb)|fall into|constitute|represent|make up|comprise|be +fall upon|1 +(verb)|strike|come upon|light upon|chance upon|come across|chance on|happen upon|attain|discover|find|regain +fall webworm|1 +(noun)|Hyphantria cunea|webworm +falla|1 +(noun)|Falla|Manuel de Falla|composer|pianist|piano player +fallacious|3 +(adj)|unsound|invalid +(adj)|deceitful|fraudulent|dishonest |dishonorable +(adj)|incorrect +fallaciousness|1 +(noun)|invalidity|invalidness +fallacy|1 +(noun)|false belief|misconception +fallal|1 +(noun)|bangle|bauble|gaud|gewgaw|novelty|trinket|adornment +fallback|1 +(noun)|disengagement|pullout|retreat +fallen|4 +(adj)|down +(adj)|destroyed +(adj)|unchaste +(adj)|dead +fallen arch|1 +(noun)|sunken arch|instep +faller|2 +(noun)|lumberman|lumberjack|feller|laborer|manual laborer|labourer|jack +(noun)|person|individual|someone|somebody|mortal|human|soul +fallibility|1 +(noun)|undependability|undependableness|unreliability|unreliableness +fallible|2 +(adj)|fallible |errant|erring|error-prone|undependable|unreliable +(adj)|frail|imperfect|weak|human +falling|4 +(adj)|falling |toppling|tumbling +(adj)|decreasing +(adj)|falling |down|dropping +(adj)|dropping|descending +falling off|1 +(noun)|slump|slack|drop-off|falloff|deterioration|decline in quality|declension|worsening +falling out|1 +(noun)|rupture|breach|break|severance|rift|separation|breakup|detachment +falloff|1 +(noun)|slump|slack|drop-off|falling off|deterioration|decline in quality|declension|worsening +fallopian tube|1 +(noun)|Fallopian tube|uterine tube|oviduct|salpinx|female internal reproductive organ +fallot|1 +(noun)|Fallot|Etienne-Louis Arthur Fallot|doctor|doc|physician|MD|Dr.|medico +fallot's syndrome|1 +(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect|syndrome +fallot's tetralogy|1 +(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect|syndrome +fallout|2 +(noun)|radioactive dust|dust +(noun)|side effect|consequence|effect|outcome|result|event|issue|upshot +fallout shelter|1 +(noun)|shelter +fallow|3 +(adj)|unplowed |unploughed|unbroken +(adj)|unexploited |undeveloped +(noun)|cultivated land|farmland|plowland|ploughland|tilled land|tillage|tilth +fallow deer|1 +(noun)|Dama dama|deer|cervid +falls|13 +(noun)|waterfall|body of water|water +(noun)|fall|autumn|season|time of year +(noun)|spill|tumble|fall|slip|trip +(noun)|Fall|event +(noun)|descent|declivity|fall|decline|declination|declension|downslope|slope|incline|side +(noun)|fall|sin|sinning +(noun)|fall|downfall|weakening +(noun)|fall|change of location|travel +(noun)|capitulation|fall|surrender|loss +(noun)|twilight|dusk|gloaming|nightfall|evenfall|fall|crepuscule|crepuscle|hour|time of day +(noun)|fall|pin|victory|triumph +(noun)|drop|fall|descent|gravitation +(noun)|drop|dip|fall|free fall|decrease|decrement +false|11 +(adj)|false |mendacious|specious|trumped-up|untrue|wrong|dishonest|dishonorable|counterfeit|imitative|incorrect|wrong|insincere +(adj)|mistaken|incorrect +(adj)|invalid +(adj)|hollow|insincere +(adj)|delusive|unrealistic +(adj)|fake|faux|imitation|simulated|artificial |unreal +(adj)|dishonest |dishonorable +(adj)|off-key|sour|inharmonious |unharmonious +(adj)|assumed|fictitious|fictive|pretended|put on|sham|counterfeit |imitative +(adj)|untrue|inconstant +(adv)|faithlessly|traitorously|treacherously|treasonably +false alarm|1 +(noun)|warning +false alumroot|1 +(noun)|fringe cups|Tellima grandiflora|wildflower|wild flower +false asphodel|1 +(noun)|liliaceous plant +false azalea|1 +(noun)|fool's huckleberry|Menziesia ferruginea|shrub|bush +false baby's breath|1 +(noun)|wild madder|white madder|white bedstraw|infant's-breath|Galium mollugo|bedstraw +false beachdrops|1 +(noun)|pinesap|Monotropa hypopithys|wildflower|wild flower +false belief|1 +(noun)|fallacy|misconception +false bittersweet|1 +(noun)|bittersweet|American bittersweet|climbing bittersweet|staff vine|waxwork|Celastrus scandens|vine +false bracken|1 +(noun)|Culcita dubia|fern +false buckthorn|1 +(noun)|chittamwood|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn +false bugbane|1 +(noun)|Trautvetteria carolinensis|herb|herbaceous plant +false calyx|1 +(noun)|epicalyx|calycle|calyculus|bract +false chamomile|1 +(noun)|wildflower|wild flower +false deathcap|1 +(noun)|Amanita mappa|agaric +false dogwood|1 +(noun)|China tree|jaboncillo|chinaberry|Sapindus saponaria|soapberry|soapberry tree +false dragon head|1 +(noun)|false dragonhead|obedient plant|Physostegia virginiana|physostegia +false dragonhead|1 +(noun)|false dragon head|obedient plant|Physostegia virginiana|physostegia +false face|1 +(noun)|mask +false foxglove|2 +(noun)|Aureolaria virginica|Gerardia virginica|herb|herbaceous plant +(noun)|Aureolaria pedicularia|Gerardia pedicularia|herb|herbaceous plant +false fruit|1 +(noun)|pome|fruit +false garlic|1 +(noun)|crow garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion +false gavial|1 +(noun)|Tomistoma schlegeli|crocodilian reptile|crocodilian +false glottis|1 +(noun)|rima vestibuli|rima respiratoria|glottis spuria|rima +false goatsbeard|1 +(noun)|Astilbe biternata|astilbe +false gromwell|1 +(noun)|herb|herbaceous plant +false hair|1 +(noun)|hairpiece|postiche|attire|garb|dress +false heather|1 +(noun)|golden heather|Hudsonia ericoides|subshrub|suffrutex +false hellebore|1 +(noun)|hellebore|liliaceous plant +false imprisonment|1 +(noun)|imprisonment|internment +false indigo|3 +(noun)|wild indigo|woody plant|ligneous plant +(noun)|bastard indigo|Amorpha fruticosa|amorpha +(noun)|bastard indigo|Amorpha californica|amorpha +false labor|1 +(noun)|Braxton-Hicks contraction|contraction|muscular contraction|muscle contraction +false lily of the valley|2 +(noun)|Maianthemum bifolium|liliaceous plant +(noun)|Maianthemum canadense|liliaceous plant +false lupine|1 +(noun)|golden pea|yellow pea|Thermopsis macrophylla|bush pea +false mallow|2 +(noun)|globe mallow|mallow +(noun)|mallow +false mildew|1 +(noun)|downy mildew|mildew +false mistletoe|1 +(noun)|mistletoe|parasitic plant +false miterwort|2 +(noun)|false mitrewort|Tiarella unifoliata|wildflower|wild flower +(noun)|foamflower|coolwart|false mitrewort|Tiarella cordifolia|herb|herbaceous plant +false mitrewort|2 +(noun)|false miterwort|Tiarella unifoliata|wildflower|wild flower +(noun)|foamflower|coolwart|false miterwort|Tiarella cordifolia|herb|herbaceous plant +false morel|1 +(noun)|fungus +false name|1 +(noun)|alias|assumed name|name +false nettle|1 +(noun)|bog hemp|herb|herbaceous plant +false oat|1 +(noun)|tall oat grass|tall meadow grass|evergreen grass|French rye|Arrhenatherum elatius|grass +false pimpernel|1 +(noun)|chaffweed|bastard pimpernel|subshrub|suffrutex +false pregnancy|1 +(noun)|pseudocyesis|physiological state|physiological condition +false pretence|1 +(noun)|false pretense|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +false pretense|1 +(noun)|false pretence|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +false ragweed|1 +(noun)|burweed marsh elder|Iva xanthifolia|marsh elder|iva +false return|1 +(noun)|tax return|income tax return|return +false rue|1 +(noun)|false rue anemone|Isopyrum biternatum|herb|herbaceous plant +false rue anemone|1 +(noun)|false rue|Isopyrum biternatum|herb|herbaceous plant +false saber-toothed tiger|1 +(noun)|saber-toothed tiger|sabertooth +false saffron|1 +(noun)|safflower|Carthamus tinctorius|herb|herbaceous plant +false sago|1 +(noun)|fern palm|Cycas circinalis|sago palm|Cycas revoluta +false sarsaparilla|1 +(noun)|wild sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub|suffrutex +false scorpion|1 +(noun)|pseudoscorpion|arachnid|arachnoid +false smut|1 +(noun)|green smut|smut +false statement|1 +(noun)|falsehood|falsity|untruth|statement +false tamarisk|1 +(noun)|German tamarisk|Myricaria germanica|shrub|bush +false teeth|1 +(noun)|denture|dental plate|plate +false topaz|1 +(noun)|topaz|common topaz|quartz +false truffle|2 +(noun)|fungus +(noun)|earthball|puffball|hard-skinned puffball|fungus +false vampire|1 +(noun)|false vampire bat|leafnose bat|leaf-nosed bat +false vampire bat|1 +(noun)|false vampire|leafnose bat|leaf-nosed bat +false verdict|1 +(noun)|verdict|finding of fact +false vocal cord|1 +(noun)|false vocal fold|superior vocal cord|ventricular fold|vestibular fold|vocal cord|vocal fold|vocal band|plica vocalis +false vocal fold|1 +(noun)|false vocal cord|superior vocal cord|ventricular fold|vestibular fold|vocal cord|vocal fold|vocal band|plica vocalis +false wintergreen|1 +(noun)|Pyrola americana|Pyrola rotundifolia americana|wintergreen|pyrola +false witness|1 +(noun)|perjurer|liar|prevaricator +falsehood|2 +(noun)|falsity|untruth|false statement|statement +(noun)|falsification|dishonesty|knavery +falsely|1 +(adv)|incorrectly +falseness|3 +(noun)|falsity|unreality|irreality +(noun)|faithlessness|fickleness|inconstancy|infidelity|unfaithfulness +(noun)|insincerity|untruthfulness +falsetto|2 +(adj)|high |high-pitched +(noun)|head register|head voice|head tone +falsie|1 +(noun)|padding|cushioning +falsifiable|1 +(adj)|confirmable|verifiable|empirical |empiric +falsification|4 +(noun)|disproof|refutation|evidence|grounds +(noun)|misrepresentaation|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|falsehood|dishonesty|knavery +(noun)|falsifying|disproof|refutation|determination|finding +falsifier|1 +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +falsify|5 +(verb)|distort|garble|warp|misrepresent|belie +(verb)|fudge|manipulate|fake|cook|wangle|misrepresent|cheat|chisel +(verb)|disprove|confute +(verb)|change by reversal|turn|reverse +(verb)|interpolate|alter|edit|redact +falsifying|1 +(noun)|falsification|disproof|refutation|determination|finding +falsity|2 +(noun)|falseness|unreality|irreality +(noun)|falsehood|untruth|false statement|statement +falstaff|1 +(noun)|Falstaff|Sir John Falstaff|fictional character|fictitious character|character +falstaffian|1 +(adj)|Falstaffian|fictional character|fictitious character|character +falter|5 +(noun)|hesitation|waver|faltering|pause +(verb)|waver|hesitate|waver|waffle +(verb)|waver|move +(verb)|stumble|bumble|walk +(verb)|bumble|stutter|stammer|talk|speak|utter|mouth|verbalize|verbalise +faltering|2 +(adj)|unsteady +(noun)|hesitation|waver|falter|pause +falteringly|1 +(adv)|unsteadily|uncertainly +falun gong|1 +(noun)|movement|social movement|front +fame|2 +(noun)|celebrity|renown|honor|honour|laurels +(noun)|repute|reputation +famed|1 +(adj)|celebrated|far-famed|famous|illustrious|notable|noted|renowned|known +familial|2 +(adj)|kin|kin group|kinship group|kindred|clan|tribe +(adj)|genetic|hereditary|inherited|transmitted|transmissible|inheritable |heritable +familial hypercholesterolemia|1 +(noun)|hypercholesterolemia|hypercholesteremia|monogenic disorder|monogenic disease +familiar|7 +(adj)|familiar |acquainted|acquainted with|familiar with|beaten|long-familiar|well-known|old|known +(adj)|familiar |common|usual|common or garden|everyday +(adj)|conversant|informed +(adj)|intimate|close +(noun)|servant|retainer +(noun)|companion|comrade|fellow|associate|friend +(noun)|familiar spirit|spirit|disembodied spirit +familiar spirit|1 +(noun)|familiar|spirit|disembodied spirit +familiar with|1 +(adj)|acquainted|acquainted with|familiar +familiarisation|1 +(noun)|familiarization|experience +familiarise|1 +(verb)|familiarize|acquaint|inform +familiarised|1 +(adj)|adjusted|familiarized|oriented |orientated +familiarising|1 +(adj)|familiarizing|orienting |orientating +familiarity|5 +(noun)|acquaintance|conversance|conversancy|information +(noun)|usualness +(noun)|intimacy|closeness|friendliness +(noun)|casualness|informality +(noun)|impropriety|indecorum|liberty|misbehavior|misbehaviour|misdeed +familiarization|1 +(noun)|familiarisation|experience +familiarize|1 +(verb)|familiarise|acquaint|inform +familiarized|1 +(adj)|adjusted|familiarised|oriented |orientated +familiarizing|1 +(adj)|familiarising|orienting |orientating +family|8 +(noun)|household|house|home|menage|unit|social unit +(noun)|family unit|kin|kin group|kinship group|kindred|clan|tribe +(noun)|family line|folk|kinfolk|kinsfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +(noun)|class|category|collection|aggregation|accumulation|assemblage +(noun)|fellowship|association +(noun)|taxonomic group|taxonomic category|taxon +(noun)|kin|kinsperson|relative|relation +(noun)|syndicate|crime syndicate|mob|organized crime|gangland|gangdom +family acanthaceae|1 +(noun)|Acanthaceae|family Acanthaceae|acanthus family|asterid dicot family +family acanthisittidae|1 +(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family +family acanthuridae|1 +(noun)|Acanthuridae|family Acanthuridae|fish family +family acaridae|1 +(noun)|Acaridae|family Acaridae|arthropod family +family accipitridae|1 +(noun)|Accipitridae|family Accipitridae|bird family +family aceraceae|1 +(noun)|Aceraceae|family Aceraceae|maple family|dicot family|magnoliopsid family +family acipenseridae|1 +(noun)|Acipenseridae|family Acipenseridae|fish family +family acrididae|1 +(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family +family actinidiaceae|1 +(noun)|Actinidiaceae|family Actinidiaceae|dilleniid dicot family +family actinomycetaceae|1 +(noun)|Actinomycetaceae|family Actinomycetaceae|bacteria family +family adelgidae|1 +(noun)|Adelgidae|family Adelgidae|arthropod family +family adiantaceae|1 +(noun)|Adiantaceae|family Adiantaceae|fern family +family aegypiidae|1 +(noun)|Aegypiidae|family Aegypiidae|vulture +family aepyornidae|1 +(noun)|Aepyornidae|family Aepyornidae|bird family +family agamidae|1 +(noun)|Agamidae|family Agamidae|reptile family +family agaricaceae|1 +(noun)|Agaricaceae|family Agaricaceae|fungus family +family agavaceae|1 +(noun)|Agavaceae|family Agavaceae|agave family|sisal family|liliid monocot family +family agonidae|1 +(noun)|Agonidae|family Agonidae|fish family +family ailuropodidae|1 +(noun)|Ailuropodidae|family Ailuropodidae|mammal family +family aizoaceae|1 +(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family +family akeridae|1 +(noun)|Akeridae|family Akeridae|mollusk family +family alaudidae|1 +(noun)|Alaudidae|family Alaudidae|bird family +family albuginaceae|1 +(noun)|Albuginaceae|family Albuginaceae|fungus family +family albulidae|1 +(noun)|Albulidae|family Albulidae|fish family +family alcedinidae|1 +(noun)|Alcedinidae|family Alcedinidae|bird family +family alcidae|1 +(noun)|Alcidae|family Alcidae|bird family +family aleyrodidae|1 +(noun)|Aleyrodidae|family Aleyrodidae|arthropod family +family alismataceae|1 +(noun)|Alismataceae|family Alismataceae|water-plantain family|monocot family|liliopsid family +family alliaceae|1 +(noun)|Alliaceae|family Alliaceae|liliid monocot family +family alligatoridae|1 +(noun)|Alligatoridae|family Alligatoridae|reptile family +family allioniaceae|1 +(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family +family aloeaceae|1 +(noun)|Aloeaceae|family Aloeaceae|aloe family|liliid monocot family +family alopiidae|1 +(noun)|Alopiidae|family Alopiidae|fish family +family alstroemeriaceae|1 +(noun)|Alstroemeriaceae|family Alstroemeriaceae|liliid monocot family +family amaranthaceae|1 +(noun)|Amaranthaceae|family Amaranthaceae|amaranth family|caryophylloid dicot family +family amaryllidaceae|1 +(noun)|Amaryllidaceae|family Amaryllidaceae|amaryllis family|liliid monocot family +family ambrosiaceae|1 +(noun)|Ambrosiaceae|family Ambrosiaceae|asterid dicot family +family ambystomatidae|1 +(noun)|Ambystomatidae|family Ambystomatidae|amphibian family +family ameiuridae|1 +(noun)|Ameiuridae|family Ameiuridae|fish family +family amiidae|1 +(noun)|Amiidae|family Amiidae|fish family +family ammodytidae|1 +(noun)|Ammodytidae|family Ammodytidae|fish family +family amphioxidae|1 +(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family +family amphisbaenidae|1 +(noun)|Amphisbaenidae|family Amphisbaenidae|reptile family +family amphiumidae|1 +(noun)|Amphiumidae|family Amphiumidae|amphibian family +family amygdalaceae|1 +(noun)|Amygdalaceae|family Amygdalaceae|dicot family|magnoliopsid family +family anabantidae|1 +(noun)|Anabantidae|family Anabantidae|fish family +family anacardiaceae|1 +(noun)|Anacardiaceae|family Anacardiaceae|sumac family|dicot family|magnoliopsid family +family anarhichadidae|1 +(noun)|Anarhichadidae|family Anarhichadidae|fish family +family anatidae|1 +(noun)|Anatidae|family Anatidae|bird family +family ancylidae|1 +(noun)|Ancylidae|family Ancylidae|mollusk family +family ancylostomatidae|1 +(noun)|Ancylostomatidae|family Ancylostomatidae|worm family +family andrenidae|1 +(noun)|Andrenidae|family Andrenidae|arthropod family +family anguidae|1 +(noun)|Anguidae|family Anguidae|reptile family +family anguillidae|1 +(noun)|Anguillidae|family Anguillidae|fish family +family anhimidae|1 +(noun)|Anhimidae|family Anhimidae|bird family +family anhingidae|1 +(noun)|Anhingidae|family Anhingidae|bird family +family anniellidae|1 +(noun)|Anniellidae|family Anniellidae|reptile family +family annonaceae|1 +(noun)|Annonaceae|family Annonaceae|custard-apple family|magnoliid dicot family +family anobiidae|1 +(noun)|Anobiidae|family Anobiidae|arthropod family +family anomalopidae|1 +(noun)|Anomalopidae|family Anomalopidae|fish family +family anomiidae|1 +(noun)|Anomiidae|family Anomiidae|mollusk family +family antedonidae|1 +(noun)|Antedonidae|family Antedonidae|echinoderm family +family antennariidae|1 +(noun)|Antennariidae|family Antennariidae|fish family +family anthocerotaceae|1 +(noun)|Anthocerotaceae|family Anthocerotaceae|moss family +family antilocapridae|1 +(noun)|Antilocapridae|family Antilocapridae|mammal family +family aphididae|1 +(noun)|Aphididae|family Aphididae|arthropod family +family aphyllanthaceae|1 +(noun)|Aphyllanthaceae|family Aphyllanthaceae|liliid monocot family +family apiaceae|1 +(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family +family apidae|1 +(noun)|Apidae|family Apidae|arthropod family +family aplodontiidae|1 +(noun)|Aplodontiidae|family Aplodontiidae|mammal family +family aplysiidae|1 +(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family +family apocynaceae|1 +(noun)|Apocynaceae|family Apocynaceae|dogbane family|dicot family|magnoliopsid family +family apodidae|1 +(noun)|Apodidae|family Apodidae|bird family +family apogonidae|1 +(noun)|Apogonidae|family Apogonidae|fish family +family apterygidae|1 +(noun)|Apterygidae|family Apterygidae|bird family +family aquifoliaceae|1 +(noun)|Aquifoliaceae|family Aquifoliaceae|holly family|dicot family|magnoliopsid family +family araceae|1 +(noun)|Araceae|family Araceae|arum family|monocot family|liliopsid family +family araliaceae|1 +(noun)|Araliaceae|family Araliaceae|ivy family|rosid dicot family +family araucariaceae|1 +(noun)|Araucariaceae|family Araucariaceae|araucaria family|gymnosperm family +family arcellidae|1 +(noun)|Arcellidae|family Arcellidae|protoctist family +family arcidae|1 +(noun)|Arcidae|family Arcidae|mollusk family +family arctiidae|1 +(noun)|Arctiidae|family Arctiidae|arthropod family +family ardeidae|1 +(noun)|Ardeidae|family Ardeidae|bird family +family arecaceae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +family argasidae|1 +(noun)|Argasidae|family Argasidae|arthropod family +family argentinidae|1 +(noun)|Argentinidae|family Argentinidae|fish family +family argiopidae|1 +(noun)|Argiopidae|family Argiopidae|arthropod family +family argonautidae|1 +(noun)|Argonautidae|family Argonautidae|mollusk family +family ariidae|1 +(noun)|Ariidae|family Ariidae|fish family +family aristolochiaceae|1 +(noun)|Aristolochiaceae|family Aristolochiaceae|birthwort family|dicot family|magnoliopsid family +family armadillidiidae|1 +(noun)|Armadillidiidae|family Armadillidiidae|arthropod family +family artamidae|1 +(noun)|Artamidae|family Artamidae|bird family +family ascaphidae|1 +(noun)|Ascaphidae|family Ascaphidae|amphibian family +family ascaridae|1 +(noun)|Ascaridae|family Ascaridae|worm family +family asclepiadaceae|1 +(noun)|Asclepiadaceae|family Asclepiadaceae|milkweed family|dicot family|magnoliopsid family +family asilidae|1 +(noun)|Asilidae|family Asilidae|arthropod family +family asparagaceae|1 +(noun)|Asparagaceae|family Asparagaceae|liliid monocot family +family aspergillaceae|1 +(noun)|Aspergillaceae|family Aspergillaceae|fungus family +family asphodelaceae|1 +(noun)|Asphodelaceae|family Asphodelaceae|liliid monocot family +family aspleniaceae|1 +(noun)|Aspleniaceae|family Aspleniaceae|fern family +family astacidae|1 +(noun)|Astacidae|family Astacidae|Astacura|arthropod family +family asteraceae|1 +(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family +family atherinidae|1 +(noun)|Atherinidae|family Atherinidae|fish family +family athiorhodaceae|1 +(noun)|Athiorhodaceae|family Athiorhodaceae|bacteria family +family athyriaceae|1 +(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family +family atrichornithidae|1 +(noun)|Atrichornithidae|family Atrichornithidae|bird family +family atropidae|1 +(noun)|Atropidae|family Atropidae|arthropod family +family aulostomidae|1 +(noun)|Aulostomidae|family Aulostomidae|fish family +family auriculariaceae|1 +(noun)|Auriculariaceae|family Auriculariaceae|fungus family +family avicenniaceae|1 +(noun)|Avicenniaceae|family Avicenniaceae|asterid dicot family +family azollaceae|1 +(noun)|Azollaceae|family Azollaceae|fern family +family babesiidae|1 +(noun)|Babesiidae|family Babesiidae|protoctist family +family bacillaceae|1 +(noun)|Bacillaceae|family Bacillaceae|bacteria family +family bacteroidaceae|1 +(noun)|Bacteroidaceae|family Bacteroidaceae|bacteria family +family balaenicipitidae|1 +(noun)|Balaenicipitidae|family Balaenicipitidae|bird family +family balaenidae|1 +(noun)|Balaenidae|family Balaenidae|mammal family +family balaenopteridae|1 +(noun)|Balaenopteridae|family Balaenopteridae|mammal family +family balanidae|1 +(noun)|Balanidae|family Balanidae|arthropod family +family balistidae|1 +(noun)|Balistidae|family Balistidae|fish family +family balsaminaceae|1 +(noun)|Balsaminaceae|family Balsaminaceae|balsam family|rosid dicot family +family bangiaceae|1 +(noun)|Bangiaceae|family Bangiaceae|protoctist family +family bathyergidae|1 +(noun)|Bathyergidae|family Bathyergidae|mammal family +family batidaceae|1 +(noun)|Batidaceae|family Batidaceae|saltwort family|caryophylloid dicot family +family batrachoididae|1 +(noun)|Batrachoididae|family Batrachoididae|fish family +family begoniaceae|1 +(noun)|Begoniaceae|family Begoniaceae|begonia family|dilleniid dicot family +family belemnitidae|1 +(noun)|Belemnitidae|family Belemnitidae|mollusk family +family belonidae|1 +(noun)|Belonidae|family Belonidae|fish family +family belostomatidae|1 +(noun)|Belostomatidae|family Belostomatidae|arthropod family +family bennettitaceae|1 +(noun)|Bennettitaceae|family Bennettitaceae|gymnosperm family +family berberidaceae|1 +(noun)|Berberidaceae|family Berberidaceae|barberry family|magnoliid dicot family +family betulaceae|1 +(noun)|Betulaceae|family Betulaceae|birch family|hamamelid dicot family +family bible|1 +(noun)|family Bible|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +family bignoniaceae|1 +(noun)|Bignoniaceae|family Bignoniaceae|asterid dicot family +family bittacidae|1 +(noun)|Bittacidae|family Bittacidae|family +family blastodiaceae|1 +(noun)|Blastodiaceae|family Blastodiaceae|fungus family +family blattidae|1 +(noun)|Blattidae|family Blattidae|arthropod family +family blechnaceae|1 +(noun)|Blechnaceae|family Blechnaceae|fern family +family blenniidae|1 +(noun)|Blenniidae|family Blenniidae|fish family +family boidae|1 +(noun)|Boidae|family Boidae|reptile family +family boletaceae|1 +(noun)|Boletaceae|family Boletaceae|fungus family +family bombacaceae|1 +(noun)|Bombacaceae|family Bombacaceae|dilleniid dicot family +family bombycidae|1 +(noun)|Bombycidae|family Bombycidae|arthropod family +family bombycillidae|1 +(noun)|Bombycillidae|family Bombycillidae|bird family +family bombyliidae|1 +(noun)|Bombyliidae|family Bombyliidae|arthropod family +family boraginaceae|1 +(noun)|Boraginaceae|family Boraginaceae|borage family|plant family +family bothidae|1 +(noun)|Bothidae|family Bothidae|fish family +family bovidae|1 +(noun)|Bovidae|family Bovidae|mammal family +family bradypodidae|1 +(noun)|Bradypodidae|family Bradypodidae|mammal family +family bramidae|1 +(noun)|Bramidae|family Bramidae|fish family +family branchiobdellidae|1 +(noun)|Branchiobdellidae|family Branchiobdellidae|worm family +family branchiostegidae|1 +(noun)|Branchiostegidae|family Branchiostegidae|fish family +family branchiostomidae|1 +(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family +family brassicaceae|1 +(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family +family brevicipitidae|1 +(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family +family bromeliaceae|1 +(noun)|Bromeliaceae|family Bromeliaceae|pineapple family|monocot family|liliopsid family +family brotulidae|1 +(noun)|Brotulidae|family Brotulidae|fish family +family bruchidae|1 +(noun)|Bruchidae|family Bruchidae|arthropod family +family bryaceae|1 +(noun)|Bryaceae|family Bryaceae|moss family +family buccinidae|1 +(noun)|Buccinidae|family Buccinidae|mollusk family +family bucconidae|1 +(noun)|Bucconidae|family Bucconidae|bird family +family bucerotidae|1 +(noun)|Bucerotidae|family Bucerotidae|bird family +family bufonidae|1 +(noun)|Bufonidae|family Bufonidae|amphibian family +family burhinidae|1 +(noun)|Burhinidae|family Burhinidae|bird family +family burmanniaceae|1 +(noun)|Burmanniaceae|family Burmanniaceae|monocot family|liliopsid family +family burseraceae|1 +(noun)|Burseraceae|family Burseraceae|torchwood family|rosid dicot family +family business|1 +(noun)|closed corporation|close corporation|private corporation|privately held corporation +family buxaceae|1 +(noun)|Buxaceae|family Buxaceae|box family|dicot family|magnoliopsid family +family cactaceae|1 +(noun)|Cactaceae|family Cactaceae|cactus family|caryophylloid dicot family +family caeciliadae|1 +(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family +family caeciliidae|1 +(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family +family caenolestidae|1 +(noun)|Caenolestidae|family Caenolestidae|mammal family +family caesalpiniaceae|1 +(noun)|Caesalpiniaceae|family Caesalpiniaceae|rosid dicot family +family callionymidae|1 +(noun)|Callionymidae|family Callionymidae|fish family +family calliphoridae|1 +(noun)|Calliphoridae|family Calliphoridae|arthropod family +family callithricidae|1 +(noun)|Callithricidae|family Callithricidae|mammal family +family callitrichaceae|1 +(noun)|Callitrichaceae|family Callitrichaceae|rosid dicot family +family calostomataceae|1 +(noun)|Calostomataceae|family Calostomataceae|fungus family +family calycanthaceae|1 +(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|strawberry-shrub family|magnoliid dicot family +family camelidae|1 +(noun)|Camelidae|family Camelidae|mammal family +family campanulaceae|1 +(noun)|Campanulaceae|family Campanulaceae|bellflower family|plant family +family cancridae|1 +(noun)|Cancridae|family Cancridae|arthropod family +family canellaceae|1 +(noun)|Canellaceae|family Canellaceae|canella family|dilleniid dicot family +family canidae|1 +(noun)|Canidae|family Canidae|mammal family +family cannabidaceae|1 +(noun)|Cannabidaceae|family Cannabidaceae|hemp family|dicot family|magnoliopsid family +family cannaceae|1 +(noun)|Cannaceae|family Cannaceae|monocot family|liliopsid family +family capitonidae|1 +(noun)|Capitonidae|family Capitonidae|bird family +family capparidaceae|1 +(noun)|Capparidaceae|family Capparidaceae|caper family|dilleniid dicot family +family caprifoliaceae|1 +(noun)|Caprifoliaceae|family Caprifoliaceae|honeysuckle family|asterid dicot family +family caprimulgidae|1 +(noun)|Caprimulgidae|family Caprimulgidae|bird family +family caproidae|1 +(noun)|Caproidae|family Caproidae|fish family +family capromyidae|1 +(noun)|Capromyidae|family Capromyidae|mammal family +family capsidae|1 +(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family +family carabidae|1 +(noun)|Carabidae|family Carabidae|arthropod family +family carangidae|1 +(noun)|Carangidae|family Carangidae|fish family +family carapidae|1 +(noun)|Carapidae|family Carapidae|fish family +family carcharhinidae|1 +(noun)|Carcharhinidae|family Carcharhinidae|fish family +family carchariidae|1 +(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family +family cardiidae|1 +(noun)|Cardiidae|family Cardiidae|mollusk family +family cariamidae|1 +(noun)|Cariamidae|family Cariamidae|bird family +family caricaceae|1 +(noun)|Caricaceae|family Caricaceae|papaya family|dilleniid dicot family +family carpinaceae|1 +(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family +family caryocaraceae|1 +(noun)|Caryocaraceae|family Caryocaraceae|dilleniid dicot family +family caryophyllaceae|1 +(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|pink family|caryophylloid dicot family +family castoridae|1 +(noun)|Castoridae|family Castoridae|mammal family +family casuaridae|1 +(noun)|Casuaridae|family Casuaridae|bird family +family casuarinaceae|1 +(noun)|Casuarinaceae|family Casuarinaceae|dicot family|magnoliopsid family +family cathartidae|1 +(noun)|Cathartidae|family Cathartidae|bird family +family catostomidae|1 +(noun)|Catostomidae|family Catostomidae|fish family +family caviidae|1 +(noun)|Caviidae|family Caviidae|mammal family +family cebidae|1 +(noun)|Cebidae|family Cebidae|mammal family +family cecidomyidae|1 +(noun)|Cecidomyidae|family Cecidomyidae|arthropod family +family cecropiaceae|1 +(noun)|Cecropiaceae|family Cecropiaceae|dicot family|magnoliopsid family +family celastraceae|1 +(noun)|Celastraceae|family Celastraceae|spindle-tree family|staff-tree family|dicot family|magnoliopsid family +family centrarchidae|1 +(noun)|Centrarchidae|family Centrarchidae|fish family +family centriscidae|1 +(noun)|Centriscidae|family Centriscidae|fish family +family centropomidae|1 +(noun)|Centropomidae|family Centropomidae|fish family +family cephalobidae|1 +(noun)|Cephalobidae|family Cephalobidae|worm family +family cephalotaceae|1 +(noun)|Cephalotaceae|family Cephalotaceae|rosid dicot family +family cephalotaxaceae|1 +(noun)|Cephalotaxaceae|family Cephalotaxaceae|plum-yew family|gymnosperm family +family cerambycidae|1 +(noun)|Cerambycidae|family Cerambycidae|arthropod family +family ceratodontidae|1 +(noun)|Ceratodontidae|family Ceratodontidae|fish family +family ceratophyllaceae|1 +(noun)|Ceratophyllaceae|family Ceratophyllaceae|magnoliid dicot family +family ceratopogonidae|1 +(noun)|Ceratopogonidae|family Ceratopogonidae|arthropod family +family ceratopsidae|1 +(noun)|Ceratopsidae|family Ceratopsidae|reptile family +family ceratostomataceae|1 +(noun)|Ceratostomataceae|family Ceratostomataceae|fungus family +family cercidiphyllaceae|1 +(noun)|Cercidiphyllaceae|family Cercidiphyllaceae|magnoliid dicot family +family cercopidae|1 +(noun)|Cercopidae|family Cercopidae|arthropod family +family cercopithecidae|1 +(noun)|Cercopithecidae|family Cercopithecidae|mammal family +family certhiidae|1 +(noun)|Certhiidae|family Certhiidae|bird family +family cervidae|1 +(noun)|Cervidae|family Cervidae|mammal family +family cestidae|1 +(noun)|Cestidae|family Cestidae|ctenophore family +family cetorhinidae|1 +(noun)|Cetorhinidae|family Cetorhinidae|fish family +family chaetodontidae|1 +(noun)|Chaetodontidae|family Chaetodontidae|fish family +family chalcidae|1 +(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family +family chalcididae|1 +(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family +family chamaeleonidae|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +family chamaeleontidae|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +family characeae|1 +(noun)|Characeae|family Characeae|protoctist family +family characidae|1 +(noun)|Characidae|family Characidae|fish family +family characinidae|1 +(noun)|Characinidae|family Characinidae|fish family +family charadriidae|1 +(noun)|Charadriidae|family Charadriidae|bird family +family chelonidae|1 +(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family +family cheloniidae|1 +(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family +family chelydridae|1 +(noun)|Chelydridae|family Chelydridae|reptile family +family chenopodiaceae|1 +(noun)|Chenopodiaceae|family Chenopodiaceae|goosefoot family|caryophylloid dicot family +family chermidae|1 +(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family +family chimaeridae|1 +(noun)|Chimaeridae|family Chimaeridae|fish family +family chinchillidae|1 +(noun)|Chinchillidae|family Chinchillidae|mammal family +family chironomidae|1 +(noun)|Chironomidae|family Chironomidae|arthropod family +family chlamydiaceae|1 +(noun)|Chlamydiaceae|family Chlamydiaceae|bacteria family +family chlamydomonadaceae|1 +(noun)|Chlamydomonadaceae|family Chlamydomonadaceae|protoctist family +family chloranthaceae|1 +(noun)|Chloranthaceae|family Chloranthaceae|dicot family|magnoliopsid family +family chlorophthalmidae|1 +(noun)|Chlorophthalmidae|family Chlorophthalmidae|fish family +family chrysochloridae|1 +(noun)|Chrysochloridae|family Chrysochloridae|mammal family +family chrysomelidae|1 +(noun)|Chrysomelidae|family Chrysomelidae|arthropod family +family chrysopidae|1 +(noun)|Chrysopidae|family Chrysopidae|arthropod family +family chytridiaceae|1 +(noun)|Chytridiaceae|family Chytridiaceae|fungus family +family cicadellidae|1 +(noun)|Cicadellidae|family Cicadellidae|arthropod family +family cicadidae|1 +(noun)|Cicadidae|family Cicadidae|arthropod family +family cichlidae|1 +(noun)|Cichlidae|family Cichlidae|fish family +family cicindelidae|1 +(noun)|Cicindelidae|family Cicindelidae|arthropod family +family ciconiidae|1 +(noun)|Ciconiidae|family Ciconiidae|bird family +family cimicidae|1 +(noun)|Cimicidae|family Cimicidae|arthropod family +family cinclidae|1 +(noun)|Cinclidae|family Cinclidae|bird family +family circle|1 +(noun)|second balcony|upper balcony|peanut gallery|area +family cistaceae|1 +(noun)|Cistaceae|family Cistaceae|rockrose family|dilleniid dicot family +family cladoniaceae|1 +(noun)|Cladoniaceae|family Cladoniaceae|fungus family +family clathraceae|1 +(noun)|Clathraceae|family Clathraceae|fungus family +family clavariaceae|1 +(noun)|Clavariaceae|family Clavariaceae|fungus family +family cleridae|1 +(noun)|Cleridae|family Cleridae|arthropod family +family clethraceae|1 +(noun)|Clethraceae|family Clethraceae|white-alder family|dilleniid dicot family +family clinidae|1 +(noun)|Clinidae|family Clinidae|fish family +family clupeidae|1 +(noun)|Clupeidae|family Clupeidae|fish family +family clusiaceae|1 +(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family +family cobitidae|1 +(noun)|Cobitidae|family Cobitidae|fish family +family coccidae|1 +(noun)|Coccidae|family Coccidae|arthropod family +family coccinellidae|1 +(noun)|Coccinellidae|family Coccinellidae|arthropod family +family coerebidae|1 +(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family +family colchicaceae|1 +(noun)|Colchicaceae|family Colchicaceae|liliid monocot family +family colubridae|1 +(noun)|Colubridae|family Colubridae|reptile family +family columbidae|1 +(noun)|Columbidae|family Columbidae|bird family +family comatulidae|1 +(noun)|Comatulidae|family Comatulidae|Antedonidae|family Antedonidae +family combretaceae|1 +(noun)|Combretaceae|family Combretaceae|combretum family|dicot family|magnoliopsid family +family commelinaceae|1 +(noun)|Commelinaceae|family Commelinaceae|spiderwort family|monocot family|liliopsid family +family compositae|1 +(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family +family congridae|1 +(noun)|Congridae|family Congridae|fish family +family connaraceae|1 +(noun)|Connaraceae|family Connaraceae|zebrawood family|rosid dicot family +family convallariaceae|1 +(noun)|Convallariaceae|family Convallariaceae|liliid monocot family +family convolvulaceae|1 +(noun)|Convolvulaceae|family Convolvulaceae|morning-glory family|dicot family|magnoliopsid family +family coprinaceae|1 +(noun)|Coprinaceae|family Coprinaceae|fungus family +family coraciidae|1 +(noun)|Coraciidae|family Coraciidae|bird family +family cordaitaceae|1 +(noun)|Cordaitaceae|family Cordaitaceae|gymnosperm family +family cordylidae|1 +(noun)|Cordylidae|family Cordylidae|reptile genus +family coregonidae|1 +(noun)|Coregonidae|family Coregonidae|fish family +family coreidae|1 +(noun)|Coreidae|family Coreidae|arthropod family +family corixidae|1 +(noun)|Corixidae|family Corixidae|arthropod family +family cornaceae|1 +(noun)|Cornaceae|family Cornaceae|dogwood family|rosid dicot family +family cortinariaceae|1 +(noun)|Cortinariaceae|family Cortinariaceae|fungus family +family corvidae|1 +(noun)|Corvidae|family Corvidae|bird family +family corydalidae|1 +(noun)|Corydalidae|family Corydalidae|arthropod family +family corylaceae|1 +(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family +family corynebacteriaceae|1 +(noun)|Corynebacteriaceae|family Corynebacteriaceae|bacteria family +family coryphaenidae|1 +(noun)|Coryphaenidae|family Coryphaenidae|fish family +family cotingidae|1 +(noun)|Cotingidae|family Cotingidae|bird family +family cottidae|1 +(noun)|Cottidae|family Cottidae|fish family +family court|1 +(noun)|domestic relations court|court of domestic relations|court|tribunal|judicature +family cracidae|1 +(noun)|Cracidae|family Cracidae|bird family +family cracticidae|1 +(noun)|Cracticidae|family Cracticidae|bird family +family crangonidae|1 +(noun)|Crangonidae|family Crangonidae|arthropod family +family crassulaceae|1 +(noun)|Crassulaceae|family Crassulaceae|stonecrop family|plant family +family cricetidae|1 +(noun)|Cricetidae|family Cricetidae|mammal family +family crocodylidae|1 +(noun)|Crocodylidae|family Crocodylidae|reptile family +family crotalidae|1 +(noun)|Crotalidae|family Crotalidae|reptile family +family cruciferae|1 +(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family +family cryptobranchidae|1 +(noun)|Cryptobranchidae|family Cryptobranchidae|amphibian family +family cryptocercidae|1 +(noun)|Cryptocercidae|family Cryptocercidae|arthropod family +family cryptogrammataceae|1 +(noun)|Cryptogrammataceae|family Cryptogrammataceae|fern family +family ctenizidae|1 +(noun)|Ctenizidae|family Ctenizidae|arthropod family +family cuculidae|1 +(noun)|Cuculidae|family Cuculidae|bird family +family cucurbitaceae|1 +(noun)|Cucurbitaceae|family Cucurbitaceae|gourd family|dicot family|magnoliopsid family +family culicidae|1 +(noun)|Culicidae|family Culicidae|arthropod family +family cunoniaceae|1 +(noun)|Cunoniaceae|family Cunoniaceae|cunonia family|rosid dicot family +family cupressaceae|1 +(noun)|Cupressaceae|family Cupressaceae|cypress family|gymnosperm family +family curculionidae|1 +(noun)|Curculionidae|family Curculionidae|arthropod family +family cuterebridae|1 +(noun)|Cuterebridae|family Cuterebridae|arthropod family +family cyatheaceae|1 +(noun)|Cyatheaceae|family Cyatheaceae|fern family +family cycadaceae|1 +(noun)|Cycadaceae|family Cycadaceae|cycad family|gymnosperm family +family cyclopteridae|1 +(noun)|Cyclopteridae|family Cyclopteridae|fish family +family cymatiidae|1 +(noun)|Cymatiidae|family Cymatiidae|mollusk family +family cynipidae|1 +(noun)|Cynipidae|family Cynipidae|arthropod family +family cynocephalidae|1 +(noun)|Cynocephalidae|family Cynocephalidae|mammal family +family cynoglossidae|1 +(noun)|Cynoglossidae|family Cynoglossidae|fish family +family cyperaceae|1 +(noun)|Cyperaceae|family Cyperaceae|sedge family|monocot family|liliopsid family +family cypraeidae|1 +(noun)|Cypraeidae|family Cypraeidae|mollusk family +family cyprinidae|1 +(noun)|Cyprinidae|family Cyprinidae|fish family +family cyprinodontidae|1 +(noun)|Cyprinodontidae|family Cyprinodontidae|fish family +family cyrilliaceae|1 +(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|titi family|dicot|dicotyledon|magnoliopsid|exogen +family dacninae|1 +(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family +family dacrymycetaceae|1 +(noun)|Dacrymycetaceae|family Dacrymycetaceae|fungus family +family dactylopiidae|1 +(noun)|Dactylopiidae|family Dactylopiidae|arthropod family +family dactylopteridae|1 +(noun)|Dactylopteridae|family Dactylopteridae|fish family +family dactyloscopidae|1 +(noun)|Dactyloscopidae|family Dactyloscopidae|fish family +family danaidae|1 +(noun)|Danaidae|family Danaidae|arthropod family +family dasyatidae|1 +(noun)|Dasyatidae|family Dasyatidae|fish family +family dasypodidae|1 +(noun)|Dasypodidae|family Dasypodidae|mammal family +family dasyproctidae|1 +(noun)|Dasyproctidae|family Dasyproctidae|mammal family +family dasyuridae|1 +(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family +family dasyurinae|1 +(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family +family daubentoniidae|1 +(noun)|Daubentoniidae|family Daubentoniidae|mammal family|Lemuroidea|suborder Lemuroidea +family davalliaceae|1 +(noun)|Davalliaceae|family Davalliaceae|fern family +family delphinidae|1 +(noun)|Delphinidae|family Delphinidae|mammal family +family dematiaceae|1 +(noun)|Dematiaceae|family Dematiaceae|fungus family +family dendrocolaptidae|1 +(noun)|Dendrocolaptidae|family Dendrocolaptidae|bird family +family dennstaedtiaceae|1 +(noun)|Dennstaedtiaceae|family Dennstaedtiaceae|fern family +family dermestidae|1 +(noun)|Dermestidae|family Dermestidae|arthropod family +family dermochelyidae|1 +(noun)|Dermochelyidae|family Dermochelyidae|reptile family +family desmidiaceae|1 +(noun)|Desmidiaceae|family Desmidiaceae|protoctist family +family desmodontidae|1 +(noun)|Desmodontidae|family Desmodontidae|mammal family +family diapensiaceae|1 +(noun)|Diapensiaceae|family Diapensiaceae|diapensia family|dilleniid dicot family +family diaspididae|1 +(noun)|Diaspididae|family Diaspididae|arthropod family +family dicamptodontidae|1 +(noun)|Dicamptodontidae|family Dicamptodontidae|amphibian family +family dicksoniaceae|1 +(noun)|Dicksoniaceae|family Dicksoniaceae|fern family +family dicranaceae|1 +(noun)|Dicranaceae|family Dicranaceae|moss family +family didelphidae|1 +(noun)|Didelphidae|family Didelphidae|mammal family +family dilleniaceae|1 +(noun)|Dilleniaceae|family Dilleniaceae|dilleniid dicot family +family dinornithidae|1 +(noun)|Dinornithidae|family Dinornithidae|bird family +family diodontidae|1 +(noun)|Diodontidae|family Diodontidae|fish family +family diomedeidae|1 +(noun)|Diomedeidae|family Diomedeidae|bird family +family dioscoreaceae|1 +(noun)|Dioscoreaceae|family Dioscoreaceae|yam family|plant family +family dipodidae|1 +(noun)|Dipodidae|family Dipodidae|mammal family +family dipsacaceae|1 +(noun)|Dipsacaceae|family Dipsacaceae|asterid dicot family +family dipterocarpaceae|1 +(noun)|Dipterocarpaceae|family Dipterocarpaceae|dilleniid dicot family +family discoglossidae|1 +(noun)|Discoglossidae|family Discoglossidae|amphibian family +family doctor|1 +(noun)|general practitioner|GP +family doliolidae|1 +(noun)|Doliolidae|family Doliolidae|chordate family +family dracunculidae|1 +(noun)|Dracunculidae|family Dracunculidae|worm family +family drepanididae|1 +(noun)|Drepanididae|family Drepanididae|bird family +family dromaeosauridae|1 +(noun)|Dromaeosauridae|family Dromaeosauridae|reptile family +family droseraceae|1 +(noun)|Droseraceae|family Droseraceae|sundew family|dicot family|magnoliopsid family +family drosophilidae|1 +(noun)|Drosophilidae|family Drosophilidae|arthropod family +family dryopteridaceae|1 +(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family +family dugongidae|1 +(noun)|Dugongidae|family Dugongidae|mammal family +family dytiscidae|1 +(noun)|Dytiscidae|family Dytiscidae|arthropod family +family ebenaceae|1 +(noun)|Ebenaceae|family Ebenaceae|ebony family|dicot family|magnoliopsid family +family echeneidae|1 +(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family +family echeneididae|1 +(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family +family edaphosauridae|1 +(noun)|Edaphosauridae|family Edaphosauridae|reptile family +family eimeriidae|1 +(noun)|Eimeriidae|family Eimeriidae|protoctist family +family elaeagnaceae|1 +(noun)|Elaeagnaceae|family Elaeagnaceae|oleaster family|dicot family|magnoliopsid family +family elaeocarpaceae|1 +(noun)|Elaeocarpaceae|family Elaeocarpaceae|elaeocarpus family|dilleniid dicot family +family elapidae|1 +(noun)|Elapidae|family Elapidae|reptile family +family elateridae|1 +(noun)|Elateridae|family Elateridae|arthropod family +family electrophoridae|1 +(noun)|Electrophoridae|family Electrophoridae|fish family +family eleotridae|1 +(noun)|Eleotridae|family Eleotridae|fish family +family elephantidae|1 +(noun)|Elephantidae|family Elephantidae|mammal family +family elopidae|1 +(noun)|Elopidae|family Elopidae|fish family +family embiotocidae|1 +(noun)|Embiotocidae|family Embiotocidae|fish family +family empetraceae|1 +(noun)|Empetraceae|family Empetraceae|crowberry family|dicot family|magnoliopsid family +family emydidae|1 +(noun)|Emydidae|family Emydidae|reptile family +family endamoebidae|1 +(noun)|Endamoebidae|family Endamoebidae|family +family engraulidae|1 +(noun)|Engraulidae|family Engraulidae|fish family +family enterobacteriaceae|1 +(noun)|Enterobacteriaceae|family Enterobacteriaceae|bacteria family +family entolomataceae|1 +(noun)|Entolomataceae|family Entolomataceae|fungus family +family entomophthoraceae|1 +(noun)|Entomophthoraceae|family Entomophthoraceae|fungus family +family epacridaceae|1 +(noun)|Epacridaceae|family Epacridaceae|epacris family|dilleniid dicot family +family ephedraceae|1 +(noun)|Ephedraceae|family Ephedraceae|gymnosperm family +family ephemeridae|1 +(noun)|Ephemeridae|family Ephemeridae|arthropod family +family ephippidae|1 +(noun)|Ephippidae|family Ephippidae|fish family +family equidae|1 +(noun)|Equidae|family Equidae|mammal family +family equisetaceae|1 +(noun)|Equisetaceae|family Equisetaceae|horsetail family|fern family +family erethizontidae|1 +(noun)|Erethizontidae|family Erethizontidae|mammal family +family ericaceae|1 +(noun)|Ericaceae|family Ericaceae|heath family|dilleniid dicot family|Ericales|order Ericales +family erinaceidae|1 +(noun)|Erinaceidae|family Erinaceidae|mammal family +family eriocaulaceae|1 +(noun)|Eriocaulaceae|family Eriocaulaceae|pipewort family|monocot family|liliopsid family +family erysiphaceae|1 +(noun)|Erysiphaceae|family Erysiphaceae|fungus family +family erythroxylaceae|1 +(noun)|Erythroxylaceae|family Erythroxylaceae|plant family +family eschrichtiidae|1 +(noun)|Eschrichtiidae|family Eschrichtiidae|mammal family +family esocidae|1 +(noun)|Esocidae|family Esocidae|fish family +family euglenaceae|1 +(noun)|Euglenaceae|family Euglenaceae|protoctist family +family euphorbiaceae|1 +(noun)|Euphorbiaceae|family Euphorbiaceae|spurge family|rosid dicot family +family eurylaimidae|1 +(noun)|Eurylaimidae|family Eurylaimidae|bird family +family exocoetidae|1 +(noun)|Exocoetidae|family Exocoetidae|fish family +family fabaceae|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family +family fagaceae|1 +(noun)|Fagaceae|family Fagaceae|beech family|hamamelid dicot family +family falconidae|1 +(noun)|Falconidae|family Falconidae|bird family +family fasciolidae|1 +(noun)|Fasciolidae|family Fasciolidae|worm family +family felidae|1 +(noun)|Felidae|family Felidae|mammal family +family filariidae|1 +(noun)|Filariidae|family Filariidae|worm family +family fissurellidae|1 +(noun)|Fissurellidae|family Fissurellidae|mollusk family +family fistulariidae|1 +(noun)|Fistulariidae|family Fistulariidae|fish family +family fistulinaceae|1 +(noun)|Fistulinaceae|family Fistulinaceae|fungus family +family flacourtiaceae|1 +(noun)|Flacourtiaceae|family Flacourtiaceae|flacourtia family|dilleniid dicot family +family forficulidae|1 +(noun)|Forficulidae|family Forficulidae|arthropod family +family formicariidae|1 +(noun)|Formicariidae|family Formicariidae|bird family +family formicidae|1 +(noun)|Formicidae|family Formicidae|arthropod family +family fouquieriaceae|1 +(noun)|Fouquieriaceae|family Fouquieriaceae|dilleniid dicot family +family fregatidae|1 +(noun)|Fregatidae|family Fregatidae|bird family +family fringillidae|1 +(noun)|Fringillidae|family Fringillidae|bird family +family fucaceae|1 +(noun)|Fucaceae|family Fucaceae|protoctist family +family fulgoridae|1 +(noun)|Fulgoridae|family Fulgoridae|arthropod family +family fumariaceae|1 +(noun)|Fumariaceae|family Fumariaceae|fumitory family|dilleniid dicot family +family funkaceae|1 +(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family +family furnariidae|1 +(noun)|Furnariidae|family Furnariidae|bird family +family gadidae|1 +(noun)|Gadidae|family Gadidae|fish family +family galbulidae|1 +(noun)|Galbulidae|family Galbulidae|bird family +family gasterophilidae|1 +(noun)|Gasterophilidae|family Gasterophilidae|arthropod family +family gasterosteidae|1 +(noun)|Gasterosteidae|family Gasterosteidae|fish family +family gavialidae|1 +(noun)|Gavialidae|family Gavialidae|reptile family +family gavidae|1 +(noun)|Gavidae|family Gavidae|bird family +family geastraceae|1 +(noun)|Geastraceae|family Geastraceae|fungus family +family gekkonidae|1 +(noun)|Gekkonidae|family Gekkonidae|reptile family +family gelechiidae|1 +(noun)|Gelechiidae|family Gelechiidae|arthropod family +family gempylidae|1 +(noun)|Gempylidae|family Gempylidae|fish family +family gentianaceae|1 +(noun)|Gentianaceae|family Gentianaceae|gentian family|dicot family|magnoliopsid family +family geoglossaceae|1 +(noun)|Geoglossaceae|family Geoglossaceae|fungus family +family geometridae|1 +(noun)|Geometridae|family Geometridae|arthropod family +family geomyidae|1 +(noun)|Geomyidae|family Geomyidae|mammal family +family geophilidae|1 +(noun)|Geophilidae|family Geophilidae|arthropod family +family geraniaceae|1 +(noun)|Geraniaceae|family Geraniaceae|geranium family|rosid dicot family +family gerreidae|1 +(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family +family gerridae|2 +(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family +(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family +family gerrididae|1 +(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family +family gesneriaceae|1 +(noun)|Gesneriaceae|family Gesneriaceae|gesneria family|asterid dicot family +family gigartinaceae|1 +(noun)|Gigartinaceae|family Gigartinaceae|protoctist family +family ginkgoaceae|1 +(noun)|Ginkgoaceae|family Ginkgoaceae|ginkgo family|gymnosperm family +family giraffidae|1 +(noun)|Giraffidae|family Giraffidae|mammal family +family glareolidae|1 +(noun)|Glareolidae|family Glareolidae|bird family +family gleicheniaceae|1 +(noun)|Gleicheniaceae|family Gleicheniaceae|fern family +family gliridae|1 +(noun)|Gliridae|family Gliridae|mammal family +family globigerinidae|1 +(noun)|Globigerinidae|family Globigerinidae|protoctist family +family glossinidae|1 +(noun)|Glossinidae|family Glossinidae|arthropod family +family gnetaceae|1 +(noun)|Gnetaceae|family Gnetaceae|gymnosperm family +family gobiesocidae|1 +(noun)|Gobiesocidae|family Gobiesocidae|fish family +family gobiidae|1 +(noun)|Gobiidae|family Gobiidae|fish family +family gomphotheriidae|1 +(noun)|Gomphotheriidae|family Gomphotheriidae|mammal family +family gonorhynchidae|1 +(noun)|Gonorhynchidae|family Gonorhynchidae|fish family +family goodeniaceae|1 +(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family|magnoliopsid family +family gracilariidae|1 +(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family +family graminaceae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +family gramineae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +family grossulariaceae|1 +(noun)|Grossulariaceae|family Grossulariaceae|gooseberry family|plant family +family gruidae|1 +(noun)|Gruidae|family Gruidae|bird family +family gryllidae|1 +(noun)|Gryllidae|family Gryllidae|arthropod family +family guttiferae|1 +(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family +family gyrinidae|1 +(noun)|Gyrinidae|family Gyrinidae|arthropod family +family hadrosauridae|1 +(noun)|Hadrosauridae|family Hadrosauridae|reptile family +family haematopodidae|1 +(noun)|Haematopodidae|family Haematopodidae|bird family +family haemodoraceae|1 +(noun)|Haemodoraceae|family Haemodoraceae|bloodwort family|monocot family|liliopsid family +family haemoproteidae|1 +(noun)|Haemoproteidae|family Haemoproteidae|protoctist family +family haemulidae|1 +(noun)|Haemulidae|family Haemulidae|fish family +family halictidae|1 +(noun)|Halictidae|family Halictidae|arthropod family +family haliotidae|1 +(noun)|Haliotidae|family Haliotidae|mollusk family +family haloragaceae|1 +(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family|magnoliopsid family +family haloragidaceae|1 +(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family|magnoliopsid family +family hamamelidaceae|1 +(noun)|Hamamelidaceae|family Hamamelidaceae|witch-hazel family|hamamelid dicot family +family helicidae|1 +(noun)|Helicidae|family Helicidae|mollusk family +family helodermatidae|1 +(noun)|Helodermatidae|family Helodermatidae|reptile family +family helotiaceae|1 +(noun)|Helotiaceae|family Helotiaceae|fungus family +family helvellaceae|1 +(noun)|Helvellaceae|family Helvellaceae|fungus family +family hemerobiidae|1 +(noun)|Hemerobiidae|family Hemerobiidae|arthropod family +family hemerocallidaceae|1 +(noun)|Hemerocallidaceae|family Hemerocallidaceae|liliid monocot family +family hemiprocnidae|1 +(noun)|Hemiprocnidae|family Hemiprocnidae|bird family +family hemiramphidae|1 +(noun)|Hemiramphidae|family Hemiramphidae|fish family +family heteromyidae|1 +(noun)|Heteromyidae|family Heteromyidae|mammal family +family hexagrammidae|1 +(noun)|Hexagrammidae|family Hexagrammidae|fish family +family hexanchidae|1 +(noun)|Hexanchidae|family Hexanchidae|fish family +family hippoboscidae|1 +(noun)|Hippoboscidae|family Hippoboscidae|arthropod family +family hippocastanaceae|1 +(noun)|Hippocastanaceae|family Hippocastanaceae|horse-chestnut family|dicot family|magnoliopsid family +family hippopotamidae|1 +(noun)|Hippopotamidae|family Hippopotamidae|mammal family +family hipposideridae|1 +(noun)|Hipposideridae|family Hipposideridae|mammal family +family hirudinidae|1 +(noun)|Hirudinidae|family Hirudinidae|worm family +family hirundinidae|1 +(noun)|Hirundinidae|family Hirundinidae|bird family +family history|1 +(noun)|case history +family holocentridae|1 +(noun)|Holocentridae|family Holocentridae|fish family +family holothuridae|1 +(noun)|Holothuridae|family Holothuridae|echinoderm family +family homaridae|1 +(noun)|Homaridae|family Homaridae|arthropod family +family hominidae|1 +(noun)|Hominidae|family Hominidae|mammal family +family hostaceae|1 +(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family +family hyacinthaceae|1 +(noun)|Hyacinthaceae|family Hyacinthaceae|liliid monocot family +family hyaenidae|1 +(noun)|Hyaenidae|family Hyaenidae|mammal family +family hydnaceae|1 +(noun)|Hydnaceae|family Hydnaceae|fungus family +family hydnoraceae|1 +(noun)|Hydnoraceae|family Hydnoraceae|dicot family|magnoliopsid family +family hydrangeaceae|1 +(noun)|Hydrangeaceae|family Hydrangeaceae|hydrangea family|rosid dicot family +family hydrobatidae|1 +(noun)|Hydrobatidae|family Hydrobatidae|bird family +family hydrocharidaceae|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family|liliopsid family +family hydrocharitaceae|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family|liliopsid family +family hydrochoeridae|1 +(noun)|Hydrochoeridae|family Hydrochoeridae|mammal family +family hydrophidae|1 +(noun)|Hydrophidae|family Hydrophidae|reptile family +family hydrophyllaceae|1 +(noun)|Hydrophyllaceae|family Hydrophyllaceae|waterleaf family|asterid dicot family +family hygrophoraceae|1 +(noun)|Hygrophoraceae|family Hygrophoraceae|fungus family +family hylidae|1 +(noun)|Hylidae|family Hylidae|amphibian family +family hylobatidae|1 +(noun)|Hylobatidae|family Hylobatidae|mammal family +family hymenophyllaceae|1 +(noun)|Hymenophyllaceae|family Hymenophyllaceae|fern family +family hypericaceae|1 +(noun)|Hypericaceae|family Hypericaceae|dilleniid dicot family +family hyperodontidae|1 +(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family +family hypocreaceae|1 +(noun)|Hypocreaceae|family Hypocreaceae|fungus family +family hypodermatidae|1 +(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family +family hypoxidaceae|1 +(noun)|Hypoxidaceae|family Hypoxidaceae|liliid monocot family +family hystricidae|1 +(noun)|Hystricidae|family Hystricidae|mammal family +family ibidiidae|1 +(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family +family ichneumonidae|1 +(noun)|Ichneumonidae|family Ichneumonidae|arthropod family +family ichthyosauridae|1 +(noun)|Ichthyosauridae|family Ichthyosauridae|reptile family +family icteridae|1 +(noun)|Icteridae|family Icteridae|bird family +family iguania|1 +(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family +family iguanidae|1 +(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family +family iguanodontidae|1 +(noun)|Iguanodontidae|family Iguanodontidae|reptile family +family indicatoridae|1 +(noun)|Indicatoridae|family Indicatoridae|bird family +family indriidae|1 +(noun)|Indriidae|family Indriidae|mammal family +family ipidae|1 +(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family +family irenidae|1 +(noun)|Irenidae|family Irenidae|bird family +family iridaceae|1 +(noun)|Iridaceae|family Iridaceae|iris family|liliid monocot family +family isoetaceae|1 +(noun)|Isoetaceae|family Isoetaceae|quillwort family|fern family +family istiophoridae|1 +(noun)|Istiophoridae|family Istiophoridae|fish family +family isuridae|1 +(noun)|Isuridae|family Isuridae|fish family +family ixodidae|1 +(noun)|Ixodidae|family Ixodidae|arthropod family +family jassidae|1 +(noun)|Jassidae|family Jassidae|arthropod family +family jewels|1 +(noun)|male genitalia|male genitals|male genital organ|genitalia|genital organ|genitals|private parts|privates|crotch +family juglandaceae|1 +(noun)|Juglandaceae|family Juglandaceae|walnut family|dicot family|magnoliopsid family +family juncaceae|1 +(noun)|Juncaceae|family Juncaceae|rush family|monocot family|liliopsid family +family juncaginaceae|1 +(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family|liliopsid family +family jungermanniaceae|1 +(noun)|Jungermanniaceae|family Jungermanniaceae|moss family +family kalotermitidae|1 +(noun)|Kalotermitidae|family Kalotermitidae|arthropod family +family kasuwonidae|1 +(noun)|Katsuwonidae|family Kasuwonidae|fish family +family kinosternidae|1 +(noun)|Kinosternidae|family Kinosternidae|reptile family +family kyphosidae|1 +(noun)|Kyphosidae|family Kyphosidae|fish family +family labiatae|1 +(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family +family labridae|1 +(noun)|Labridae|family Labridae|fish family +family lacertidae|1 +(noun)|Lacertidae|family Lacertidae|reptile family +family lactobacillaceae|1 +(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family +family lactobacteriaceae|1 +(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family +family lamiaceae|1 +(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family +family laminariaceae|1 +(noun)|Laminariaceae|family Laminariaceae|protoctist family +family lamnidae|1 +(noun)|Lamnidae|family Lamnidae|fish family +family lampridae|1 +(noun)|Lampridae|family Lampridae|fish family +family lampyridae|1 +(noun)|Lampyridae|family Lampyridae|arthropod family +family laniidae|1 +(noun)|Laniidae|family Laniidae|bird family +family lanthanotidae|1 +(noun)|Lanthanotidae|family Lanthanotidae|reptile family +family lardizabalaceae|1 +(noun)|Lardizabalaceae|family Lardizabalaceae|lardizabala family|magnoliid dicot family +family laricariidae|1 +(noun)|Laricariidae|family Laricariidae|fish family +family laridae|1 +(noun)|Laridae|family Laridae|bird family +family lasiocampidae|1 +(noun)|Lasiocampidae|family Lasiocampidae|arthropod family +family latimeridae|1 +(noun)|Latimeridae|family Latimeridae|fish family +family lauraceae|1 +(noun)|Lauraceae|family Lauraceae|laurel family|magnoliid dicot family +family lecanoraceae|1 +(noun)|Lecanoraceae|family Lecanoraceae|fungus family +family lecythidaceae|1 +(noun)|Lecythidaceae|family Lecythidaceae|dicot family|magnoliopsid family +family leguminosae|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family +family leiopelmatidae|1 +(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family +family leitneriaceae|1 +(noun)|Leitneriaceae|family Leitneriaceae|corkwood family|dicot family|magnoliopsid family +family lemnaceae|1 +(noun)|Lemnaceae|family Lemnaceae|duckweed family|monocot family|liliopsid family +family lemuridae|1 +(noun)|Lemuridae|family Lemuridae|mammal family +family lennoaceae|1 +(noun)|Lennoaceae|family Lennoaceae|dilleniid dicot family +family lentibulariaceae|1 +(noun)|Lentibulariaceae|family Lentibulariaceae|bladderwort family|plant family +family lepadidae|1 +(noun)|Lepadidae|family Lepadidae|arthropod family +family lepidobotryaceae|1 +(noun)|Lepidobotryaceae|family Lepidobotryaceae|rosid dicot family +family lepidodendraceae|1 +(noun)|Lepidodendraceae|family Lepidodendraceae|fern family +family lepiotaceae|1 +(noun)|Lepiotaceae|family Lepiotaceae|fungus family +family lepismatidae|1 +(noun)|Lepismatidae|family Lepismatidae|arthropod family +family lepisosteidae|1 +(noun)|Lepisosteidae|family Lepisosteidae|fish family +family leporidae|1 +(noun)|Leporidae|family Leporidae|mammal family +family leptodactylidae|1 +(noun)|Leptodactylidae|family Leptodactylidae|amphibian family +family leptotyphlopidae|1 +(noun)|Leptotyphlopidae|family Leptotyphlopidae|reptile family +family liliaceae|1 +(noun)|Liliaceae|family Liliaceae|lily family|liliid monocot family +family limacidae|1 +(noun)|Limacidae|family Limacidae|mollusk family +family limulidae|1 +(noun)|Limulidae|family Limulidae|arthropod family +family linaceae|1 +(noun)|Linaceae|family Linaceae|flax family|dicot family|magnoliopsid family +family line|1 +(noun)|family|folk|kinfolk|kinsfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +family liopelmidae|1 +(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family +family liparidae|1 +(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family +family liparididae|1 +(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family +family lithodidae|1 +(noun)|Lithodidae|family Lithodidae|arthropod family +family littorinidae|1 +(noun)|Littorinidae|family Littorinidae|mollusk family +family loasaceae|1 +(noun)|Loasaceae|family Loasaceae|loasa family|dilleniid dicot family +family lobeliaceae|1 +(noun)|Lobeliaceae|family Lobeliaceae|lobelia family|dicot family|magnoliopsid family +family lobotidae|1 +(noun)|Lobotidae|family Lobotidae|fish family +family locustidae|1 +(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family +family loganiaceae|1 +(noun)|Loganiaceae|family Loganiaceae|dicot family|magnoliopsid family +family lomariopsidaceae|1 +(noun)|Lomariopsidaceae|family Lomariopsidaceae|fern family +family lophiidae|1 +(noun)|Lophiidae|family Lophiidae|fish family +family lophosoriaceae|1 +(noun)|Lophosoriaceae|family Lophosoriaceae|fern family +family loranthaceae|1 +(noun)|Loranthaceae|family Loranthaceae|mistletoe family|dilleniid dicot family|parasitic plant +family lorisidae|1 +(noun)|Lorisidae|family Lorisidae|mammal family +family loxomataceae|1 +(noun)|Loxomataceae|family Loxomataceae|fern family +family lucanidae|1 +(noun)|Lucanidae|family Lucanidae|arthropod family +family lutjanidae|1 +(noun)|Lutjanidae|family Lutjanidae|fish family +family luvaridae|1 +(noun)|Luvaridae|family Luvaridae|fish family +family lycaenidae|1 +(noun)|Lycaenidae|family Lycaenidae|arthropod family +family lycoperdaceae|1 +(noun)|Lycoperdaceae|family Lycoperdaceae|fungus family +family lycopodiaceae|1 +(noun)|Lycopodiaceae|family Lycopodiaceae|clubmoss family|fern family +family lycosidae|1 +(noun)|Lycosidae|family Lycosidae|arthropod family +family lygaeidae|1 +(noun)|Lygaeidae|family Lygaeidae|arthropod family +family lymantriidae|1 +(noun)|Lymantriidae|family Lymantriidae|arthropod family +family lythraceae|1 +(noun)|Lythraceae|family Lythraceae|loosestrife family|dicot family|magnoliopsid family +family machilidae|1 +(noun)|Machilidae|family Machilidae|arthropod family +family macropodidae|1 +(noun)|Macropodidae|family Macropodidae|mammal family +family macrorhamphosidae|1 +(noun)|Macrorhamphosidae|family Macrorhamphosidae|fish family +family macrouridae|1 +(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family +family macruridae|1 +(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family +family magnoliaceae|1 +(noun)|Magnoliaceae|family Magnoliaceae|magnolia family|magnoliid dicot family +family majidae|1 +(noun)|Majidae|family Majidae|arthropod family +family malacanthidae|1 +(noun)|Malacanthidae|family Malacanthidae|fish family +family malpighiaceae|1 +(noun)|Malpighiaceae|family Malpighiaceae|rosid dicot family +family malvaceae|1 +(noun)|Malvaceae|family Malvaceae|mallow family|dilleniid dicot family +family mammutidae|1 +(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family +family man|1 +(noun)|husband|hubby|married man +family manidae|1 +(noun)|Manidae|family Manidae|mammal family +family manteidae|1 +(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family +family mantidae|1 +(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family +family mantispidae|1 +(noun)|Mantispidae|family Mantispidae|arthropod family +family marantaceae|1 +(noun)|Marantaceae|family Marantaceae|arrowroot family|monocot family|liliopsid family +family marattiaceae|1 +(noun)|Marattiaceae|family Marattiaceae|fern family +family marchantiaceae|1 +(noun)|Marchantiaceae|family Marchantiaceae|moss family +family marsileaceae|1 +(noun)|Marsileaceae|family Marsileaceae|fern family +family martyniaceae|1 +(noun)|Martyniaceae|family Martyniaceae|plant family +family mastodontidae|1 +(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family +family mastotermitidae|1 +(noun)|Mastotermitidae|family Mastotermitidae|arthropod family +family mayacaceae|1 +(noun)|Mayacaceae|family Mayacaceae|monocot family|liliopsid family +family medicine|1 +(noun)|family practice|medical practice +family megachilidae|1 +(noun)|Megachilidae|family Megachilidae|arthropod family +family megadermatidae|1 +(noun)|Megadermatidae|family Megadermatidae|mammal family +family megalonychidae|1 +(noun)|Megalonychidae|family Megalonychidae|mammal family +family megalosauridae|1 +(noun)|Megalosauridae|family Megalosauridae|reptile family +family megapodiidae|1 +(noun)|Megapodiidae|family Megapodiidae|bird family +family megatheriidae|1 +(noun)|Megatheriidae|family Megatheriidae|mammal family +family melampsoraceae|1 +(noun)|Melampsoraceae|family Melampsoraceae|fungus family +family melanthiaceae|1 +(noun)|Melanthiaceae|family Melanthiaceae|liliid monocot family +family melastomaceae|1 +(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family +family melastomataceae|1 +(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family +family meleagrididae|1 +(noun)|Meleagrididae|family Meleagrididae|bird family +family meliaceae|1 +(noun)|Meliaceae|family Meliaceae|mahogany family|rosid dicot family +family meliphagidae|1 +(noun)|Meliphagidae|family Meliphagidae|bird family +family meloidae|1 +(noun)|Meloidae|family Meloidae|arthropod family +family membracidae|1 +(noun)|Membracidae|family Membracidae|arthropod family +family menispermaceae|1 +(noun)|Menispermaceae|family Menispermaceae|moonseed family|magnoliid dicot family +family menuridae|1 +(noun)|Menuridae|family Menuridae|bird family +family menyanthaceae|1 +(noun)|Menyanthaceae|family Menyanthaceae|buckbean family|dicot family|magnoliopsid family +family meropidae|1 +(noun)|Meropidae|family Meropidae|bird family +family micrococcaceae|1 +(noun)|Micrococcaceae|family Micrococcaceae|bacteria family +family microdesmidae|1 +(noun)|Microdesmidae|family Microdesmidae|fish family +family microhylidae|1 +(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family +family mimidae|1 +(noun)|Mimidae|family Mimidae|bird family +family mimosaceae|1 +(noun)|Mimosaceae|family Mimosaceae|rosid dicot family +family miridae|1 +(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family +family mniaceae|1 +(noun)|Mniaceae|family Mniaceae|moss family +family mobulidae|1 +(noun)|Mobulidae|family Mobulidae|fish family +family molidae|1 +(noun)|Molidae|family Molidae|fish family +family molossidae|1 +(noun)|Molossidae|family Molossidae|mammal family +family momotidae|1 +(noun)|Momotidae|family Momotidae|bird family +family moniliaceae|1 +(noun)|Moniliaceae|family Moniliaceae|fungus family +family monocanthidae|1 +(noun)|Monocanthidae|family Monocanthidae|fish family +family monodontidae|1 +(noun)|Monodontidae|family Monodontidae|mammal family +family monotropaceae|1 +(noun)|Monotropaceae|family Monotropaceae|dilleniid dicot family +family moraceae|1 +(noun)|Moraceae|family Moraceae|mulberry family|dicot family|magnoliopsid family +family morchellaceae|1 +(noun)|Morchellaceae|family Morchellaceae|fungus family +family motacillidae|1 +(noun)|Motacillidae|family Motacillidae|bird family +family mucoraceae|1 +(noun)|Mucoraceae|family Mucoraceae|fungus family +family mugilidae|1 +(noun)|Mugilidae|family Mugilidae|fish family +family mullidae|1 +(noun)|Mullidae|family Mullidae|fish family +family muraenidae|1 +(noun)|Muraenidae|family Muraenidae|fish family +family muridae|1 +(noun)|Muridae|family Muridae|mammal family +family musaceae|1 +(noun)|Musaceae|family Musaceae|banana family|monocot family|liliopsid family +family muscicapidae|1 +(noun)|Muscicapidae|family Muscicapidae|bird family +family muscidae|1 +(noun)|Muscidae|family Muscidae|arthropod family +family musophagidae|1 +(noun)|Musophagidae|family Musophagidae|bird family +family mustelidae|1 +(noun)|Mustelidae|family Mustelidae|mammal family +family mutillidae|1 +(noun)|Mutillidae|family Mutillidae|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +family myacidae|1 +(noun)|Myacidae|family Myacidae|mollusk family +family mycetophylidae|1 +(noun)|Mycetophilidae|family Mycetophylidae|arthropod family +family mycobacteriaceae|1 +(noun)|Mycobacteriaceae|family Mycobacteriaceae|bacteria family +family mycoplasmataceae|1 +(noun)|Mycoplasmataceae|family Mycoplasmataceae|bacteria family +family myctophidae|1 +(noun)|Myctophidae|family Myctophidae|fish family +family myliobatidae|1 +(noun)|Myliobatidae|family Myliobatidae|fish family +family mylodontidae|1 +(noun)|Mylodontidae|family Mylodontidae|mammal family +family myricaceae|1 +(noun)|Myricaceae|family Myricaceae|wax-myrtle family|dicot family|magnoliopsid family +family myristicaceae|1 +(noun)|Myristicaceae|family Myristicaceae|nutmeg family|magnoliid dicot family +family myrmecophagidae|1 +(noun)|Myrmecophagidae|family Myrmecophagidae|mammal family +family myrmeleontidae|1 +(noun)|Myrmeleontidae|family Myrmeleontidae|arthropod family +family myrsinaceae|1 +(noun)|Myrsinaceae|family Myrsinaceae|myrsine family|dicot family|magnoliopsid family +family myrtaceae|1 +(noun)|Myrtaceae|family Myrtaceae|myrtle family|dicot family|magnoliopsid family +family mysidae|1 +(noun)|Mysidae|family Mysidae|arthropod family +family mytilidae|1 +(noun)|Mytilidae|family Mytilidae|mollusk family +family myxinidae|1 +(noun)|Myxinidae|family Myxinidae|fish family +family myxobacteriaceae|1 +(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family +family myxophyceae|1 +(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family +family naiadaceae|1 +(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family|liliopsid family +family najadaceae|1 +(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family|liliopsid family +family name|1 +(noun)|surname|cognomen|last name|name +family naticidae|1 +(noun)|Naticidae|family Naticidae|mollusk family +family nautilidae|1 +(noun)|Nautilidae|family Nautilidae|mollusk family +family nepenthaceae|1 +(noun)|Nepenthaceae|family Nepenthaceae|dicot family|magnoliopsid family +family nephropsidae|1 +(noun)|Nephropsidae|family Nephropsidae|arthropod family +family nepidae|1 +(noun)|Nepidae|family Nepidae|arthropod family +family neritidae|1 +(noun)|Neritidae|family Neritidae|mollusk family +family nidulariaceae|1 +(noun)|Nidulariaceae|family Nidulariaceae|fungus family +family nitrobacteriaceae|1 +(noun)|Nitrobacteriaceae|family Nitrobacteriaceae|bacteria genus +family noctuidae|1 +(noun)|Noctuidae|family Noctuidae|arthropod family +family nostocaceae|1 +(noun)|Nostocaceae|family Nostocaceae|bacteria family +family notonectidae|1 +(noun)|Notonectidae|family Notonectidae|arthropod family +family notoryctidae|1 +(noun)|Notoryctidae|family Notoryctidae|mammal family +family nummulitidae|1 +(noun)|Nummulitidae|family Nummulitidae|protoctist family +family nyctaginaceae|1 +(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family +family nymphaeaceae|1 +(noun)|Nymphaeaceae|family Nymphaeaceae|water-lily family|magnoliid dicot family +family nymphalidae|1 +(noun)|Nymphalidae|family Nymphalidae|arthropod family +family nyssaceae|1 +(noun)|Nyssaceae|family Nyssaceae|sour-gum family|tupelo family|dicot family|magnoliopsid family +family ochnaceae|1 +(noun)|Ochnaceae|family Ochnaceae|ochna family|dilleniid dicot family +family ochotonidae|1 +(noun)|Ochotonidae|family Ochotonidae|mammal family +family octopodidae|1 +(noun)|Octopodidae|family Octopodidae|mollusk family +family odobenidae|1 +(noun)|Odobenidae|family Odobenidae|mammal family +family odontaspididae|1 +(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family +family oedogoniaceae|1 +(noun)|Oedogoniaceae|family Oedogoniaceae|protoctist family +family oestridae|1 +(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family +family ogcocephalidae|1 +(noun)|Ogcocephalidae|family Ogcocephalidae|fish family +family oleaceae|1 +(noun)|Oleaceae|family Oleaceae|olive family|dicot family|magnoliopsid family +family oleandraceae|1 +(noun)|Oleandraceae|family Oleandraceae|fern family +family onagraceae|1 +(noun)|Onagraceae|family Onagraceae|evening-primrose family|rosid dicot family +family oniscidae|1 +(noun)|Oniscidae|family Oniscidae|arthropod family +family ophidiidae|1 +(noun)|Ophidiidae|family Ophidiidae|fish family +family ophiodontidae|1 +(noun)|Ophiodontidae|family Ophiodontidae|fish family +family ophioglossaceae|1 +(noun)|Ophioglossaceae|family Ophioglossaceae|fern family +family opisthocomidae|1 +(noun)|Opisthocomidae|family Opisthocomidae|bird family +family opisthognathidae|1 +(noun)|Opisthognathidae|family Opisthognathidae|fish family +family orchestiidae|1 +(noun)|Orchestiidae|family Orchestiidae|arthropod family +family orchidaceae|1 +(noun)|Orchidaceae|family Orchidaceae|orchid family|monocot family|liliopsid family +family orectolobidae|1 +(noun)|Orectolobidae|family Orectolobidae|fish family +family oriolidae|1 +(noun)|Oriolidae|family Oriolidae|bird family +family ornithorhynchidae|1 +(noun)|Ornithorhynchidae|family Ornithorhynchidae|mammal family +family orobanchaceae|1 +(noun)|Orobanchaceae|family Orobanchaceae|broomrape family|dicot family|magnoliopsid family +family orycteropodidae|1 +(noun)|Orycteropodidae|family Orycteropodidae|mammal family +family oscillatoriaceae|1 +(noun)|Oscillatoriaceae|family Oscillatoriaceae|bacteria family +family osmeridae|1 +(noun)|Osmeridae|family Osmeridae|fish family +family osmundaceae|1 +(noun)|Osmundaceae|family Osmundaceae|fern family +family ostraciidae|1 +(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family +family ostraciontidae|1 +(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family +family ostreidae|1 +(noun)|Ostreidae|family Ostreidae|mollusk family +family otariidae|1 +(noun)|Otariidae|family Otariidae|mammal family +family otididae|1 +(noun)|Otididae|family Otididae|bird family +family oxalidaceae|1 +(noun)|Oxalidaceae|family Oxalidaceae|wood-sorrel family|rosid dicot family +family oxyuridae|1 +(noun)|Oxyuridae|family Oxyuridae|worm family +family paeoniaceae|1 +(noun)|Paeoniaceae|family Paeoniaceae|peony family|magnoliid dicot family +family paguridae|1 +(noun)|Paguridae|family Paguridae|arthropod family +family palaemonidae|1 +(noun)|Palaemonidae|family Palaemonidae|arthropod family +family palinuridae|1 +(noun)|Palinuridae|family Palinuridae|arthropod family +family palmaceae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +family palmae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +family pandanaceae|1 +(noun)|Pandanaceae|family Pandanaceae|screw-pine family|monocot family|liliopsid family +family pandionidae|1 +(noun)|Pandionidae|family Pandionidae|bird family +family panorpidae|1 +(noun)|Panorpidae|family Panorpidae|family +family papaveraceae|1 +(noun)|Papaveraceae|family Papaveraceae|poppy family|dilleniid dicot family +family papilionacea|1 +(noun)|Papilionaceae|family Papilionacea|rosid dicot family +family paradisaeidae|1 +(noun)|Paradisaeidae|family Paradisaeidae|bird family +family paridae|1 +(noun)|Paridae|family Paridae|bird family +family parkeriaceae|1 +(noun)|Parkeriaceae|family Parkeriaceae|fern family +family parmeliaceae|1 +(noun)|Parmeliaceae|family Parmeliaceae|fungus family +family parulidae|1 +(noun)|Parulidae|family Parulidae|bird family +family passeridae|1 +(noun)|Passeridae|family Passeridae|bird family +family passifloraceae|1 +(noun)|Passifloraceae|family Passifloraceae|passionflower family|dilleniid dicot family +family patellidae|1 +(noun)|Patellidae|family Patellidae|mollusk family +family pectinidae|1 +(noun)|Pectinidae|family Pectinidae|mollusk family +family pedaliaceae|1 +(noun)|Pedaliaceae|family Pedaliaceae|sesame family|plant family +family pediculidae|1 +(noun)|Pediculidae|family Pediculidae|arthropod family +family pelecanidae|1 +(noun)|Pelecanidae|family Pelecanidae|bird family +family pelecanoididae|1 +(noun)|Pelecanoididae|family Pelecanoididae|bird family +family pelobatidae|1 +(noun)|Pelobatidae|family Pelobatidae|amphibian family +family pempheridae|1 +(noun)|Pempheridae|family Pempheridae|fish family +family peneidae|1 +(noun)|Peneidae|family Peneidae|arthropod family +family pennatulidae|1 +(noun)|Pennatulidae|family Pennatulidae|coelenterate family +family peramelidae|1 +(noun)|Peramelidae|family Peramelidae|mammal family +family percidae|1 +(noun)|Percidae|family Percidae|fish family +family percophidae|1 +(noun)|Percophidae|family Percophidae|fish family +family peridiniidae|1 +(noun)|Peridiniidae|family Peridiniidae|protoctist family +family peripatidae|1 +(noun)|Peripatidae|family Peripatidae|arthropod family +family peripatopsidae|1 +(noun)|Peripatopsidae|family Peripatopsidae|arthropod family +family peronosporaceae|1 +(noun)|Peronosporaceae|family Peronosporaceae|fungus family +family pertusariaceae|1 +(noun)|Pertusariaceae|family Pertusariaceae|fungus family +family petromyzontidae|1 +(noun)|Petromyzontidae|family Petromyzontidae|fish family +family pezizaceae|1 +(noun)|Pezizaceae|family Pezizaceae|fungus family +family phaethontidae|1 +(noun)|Phaethontidae|family Phaethontidae|bird family +family phalacrocoracidae|1 +(noun)|Phalacrocoracidae|family Phalacrocoracidae|bird family +family phalangeridae|1 +(noun)|Phalangeridae|family Phalangeridae|mammal family +family phalangiidae|1 +(noun)|Phalangiidae|family Phalangiidae|arthropod family +family phalaropidae|1 +(noun)|Phalaropidae|family Phalaropidae|bird family +family phallaceae|1 +(noun)|Phallaceae|family Phallaceae|fungus family +family phasianidae|1 +(noun)|Phasianidae|family Phasianidae|bird family +family phasmatidae|1 +(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family +family phasmidae|1 +(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family +family phillidae|1 +(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family +family phocidae|1 +(noun)|Phocidae|family Phocidae|mammal family +family phoenicopteridae|1 +(noun)|Phoenicopteridae|family Phoenicopteridae|bird family +family phoeniculidae|1 +(noun)|Phoeniculidae|family Phoeniculidae|bird family +family pholadidae|1 +(noun)|Pholadidae|family Pholadidae|mollusk family +family pholidae|1 +(noun)|Pholidae|family Pholidae|family Pholididae|fish family +family pholididae|1 +(noun)|Pholidae|family Pholidae|family Pholididae|fish family +family phthiriidae|1 +(noun)|Phthiriidae|family Phthiriidae|arthropod family +family phyllidae|1 +(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family +family phyllocladaceae|1 +(noun)|Phyllocladaceae|family Phyllocladaceae|gymnosperm family +family phyllostomatidae|1 +(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family +family phyllostomidae|1 +(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family +family phylloxeridae|1 +(noun)|Phylloxeridae|family Phylloxeridae|arthropod family +family physeteridae|1 +(noun)|Physeteridae|family Physeteridae|mammal family +family physidae|1 +(noun)|Physidae|family Physidae|mollusk family +family phytolaccaceae|1 +(noun)|Phytolaccaceae|family Phytolaccaceae|pokeweed family|caryophylloid dicot family +family picidae|1 +(noun)|Picidae|family Picidae|bird family +family pieridae|1 +(noun)|Pieridae|family Pieridae|arthropod family +family pinaceae|1 +(noun)|Pinaceae|family Pinaceae|pine family|gymnosperm family +family pinnotheridae|1 +(noun)|Pinnotheridae|family Pinnotheridae|arthropod family +family piperaceae|1 +(noun)|Piperaceae|family Piperaceae|pepper family|dicot family|magnoliopsid family +family pipidae|1 +(noun)|Pipidae|family Pipidae|amphibian family +family pipridae|1 +(noun)|Pipridae|family Pipridae|bird family +family pittidae|1 +(noun)|Pittidae|family Pittidae|bird family +family planning|1 +(noun)|birth control|birth prevention|planning +family plantaginaceae|1 +(noun)|Plantaginaceae|family Plantaginaceae|plantain family|dicot family|magnoliopsid family +family plasmodiidae|1 +(noun)|Plasmodiidae|family Plasmodiidae|protoctist family +family plasmodiophoraceae|1 +(noun)|Plasmodiophoraceae|family Plasmodiophoraceae|fungus family +family plataleidae|1 +(noun)|Plataleidae|family Plataleidae|bird family +family platanaceae|1 +(noun)|Platanaceae|family Platanaceae|plane-tree family|rosid dicot family +family platanistidae|1 +(noun)|Platanistidae|family Platanistidae|mammal family +family platycephalidae|1 +(noun)|Platycephalidae|family Platycephalidae|fish family +family plethodontidae|1 +(noun)|Plethodontidae|family Plethodontidae|amphibian family +family pleurobrachiidae|1 +(noun)|Pleurobrachiidae|family Pleurobrachiidae|ctenophore family +family pleuronectidae|1 +(noun)|Pleuronectidae|family Pleuronectidae|fish family +family ploceidae|1 +(noun)|Ploceidae|family Ploceidae|bird family +family plumbaginaceae|1 +(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|sea-lavender family|dicot family|magnoliopsid family +family pluteaceae|1 +(noun)|Pluteaceae|family Pluteaceae|fungus family +family poaceae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +family podargidae|1 +(noun)|Podargidae|family Podargidae|bird family +family podicipedidae|1 +(noun)|Podicipedidae|family Podicipedidae|bird family +family podocarpaceae|1 +(noun)|Podocarpaceae|family Podocarpaceae|podocarpus family|gymnosperm family +family poeciliidae|1 +(noun)|Poeciliidae|family Poeciliidae|fish family +family polemoniaceae|1 +(noun)|Polemoniaceae|family Polemoniaceae|phlox family|asterid dicot family +family polyangiaceae|1 +(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family +family polygalaceae|1 +(noun)|Polygalaceae|family Polygalaceae|milkwort family|rosid dicot family +family polygonaceae|1 +(noun)|Polygonaceae|family Polygonaceae|buckwheat family|dicot family|magnoliopsid family +family polynemidae|1 +(noun)|Polynemidae|family Polynemidae|fish family +family polyodontidae|1 +(noun)|Polyodontidae|family Polyodontidae|fish family +family polypedatidae|1 +(noun)|Polypedatidae|family Polypedatidae|amphibian family +family polypodiaceae|1 +(noun)|Polypodiaceae|family Polypodiaceae|fern family +family polyporaceae|1 +(noun)|Polyporaceae|family Polyporaceae|fungus family +family pomacentridae|1 +(noun)|Pomacentridae|family Pomacentridae|fish family +family pomatomidae|1 +(noun)|Pomatomidae|family Pomatomidae|fish family +family pongidae|1 +(noun)|Pongidae|family Pongidae|mammal family +family pontederiaceae|1 +(noun)|Pontederiaceae|family Pontederiaceae|pickerelweed family|monocot family|liliopsid family +family porcellionidae|1 +(noun)|Porcellionidae|family Porcellionidae|arthropod family +family portulacaceae|1 +(noun)|Portulacaceae|family Portulacaceae|purslane family|caryophylloid dicot family +family portunidae|1 +(noun)|Portunidae|family Portunidae|arthropod family +family potamogalidae|1 +(noun)|Potamogalidae|family Potamogalidae|mammal family +family potamogetonaceae|1 +(noun)|Potamogetonaceae|family Potamogetonaceae|pondweed family|monocot family|liliopsid family +family practice|1 +(noun)|family medicine|medical practice +family priacanthidae|1 +(noun)|Priacanthidae|family Priacanthidae|fish family +family primulaceae|1 +(noun)|Primulaceae|family Primulaceae|primrose family|dicot family|magnoliopsid family +family pristidae|1 +(noun)|Pristidae|family Pristidae|fish family +family procaviidae|1 +(noun)|Procaviidae|family Procaviidae|mammal family +family procellariidae|1 +(noun)|Procellariidae|family Procellariidae|bird family +family procyonidae|1 +(noun)|Procyonidae|family Procyonidae|mammal family +family proteaceae|1 +(noun)|Proteaceae|family Proteaceae|protea family|dicot family|magnoliopsid family +family proteidae|1 +(noun)|Proteidae|family Proteidae|amphibian genus +family prunellidae|1 +(noun)|Prunellidae|family Prunellidae|bird family +family pseudococcidae|1 +(noun)|Pseudococcidae|family Pseudococcidae|arthropod family +family pseudomonodaceae|1 +(noun)|Pseudomonodaceae|family Pseudomonodaceae|bacteria family +family psilophytaceae|1 +(noun)|Psilophytaceae|family Psilophytaceae|fern family +family psilotaceae|1 +(noun)|Psilotaceae|family Psilotaceae|fern family +family psittacidae|1 +(noun)|Psittacidae|family Psittacidae|bird family +family psocidae|1 +(noun)|Psocidae|family Psocidae|arthropod family +family psophiidae|1 +(noun)|Psophiidae|family Psophiidae|bird family +family psychodidae|1 +(noun)|Psychodidae|family Psychodidae|arthropod family +family psyllidae|1 +(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family +family pteridaceae|1 +(noun)|Pteridaceae|family Pteridaceae|fern family +family pteriidae|1 +(noun)|Pteriidae|family Pteriidae|mollusk family +family pteroclididae|1 +(noun)|Pteroclididae|family Pteroclididae|bird family +family pterodactylidae|1 +(noun)|Pterodactylidae|family Pterodactylidae|reptile family +family ptilonorhynchidae|1 +(noun)|Ptilonorhynchidae|family Ptilonorhynchidae|bird family +family pucciniaceae|1 +(noun)|Pucciniaceae|family Pucciniaceae|fungus family +family pulicidae|1 +(noun)|Pulicidae|family Pulicidae|arthropod family +family punicaceae|1 +(noun)|Punicaceae|family Punicaceae|dicot family|magnoliopsid family +family pygopodidae|1 +(noun)|Pygopodidae|family Pygopodidae|reptile family +family pyralidae|1 +(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family +family pyralididae|1 +(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family +family pyrolaceae|1 +(noun)|Pyrolaceae|family Pyrolaceae|wintergreen family|dilleniid dicot family +family pyrrhocoridae|1 +(noun)|Pyrrhocoridae|family Pyrrhocoridae|arthropod family +family pythiaceae|1 +(noun)|Pythiaceae|family Pythiaceae|fungus family +family pythonidae|1 +(noun)|Pythonidae|family Pythonidae|reptile family +family rachycentridae|1 +(noun)|Rachycentridae|family Rachycentridae|fish family +family rafflesiaceae|1 +(noun)|Rafflesiaceae|family Rafflesiaceae|dicot family|magnoliopsid family +family rajidae|1 +(noun)|Rajidae|family Rajidae|fish family +family rallidae|1 +(noun)|Rallidae|family Rallidae|bird family +family ramphastidae|1 +(noun)|Ramphastidae|family Ramphastidae|bird family +family ranidae|1 +(noun)|Ranidae|family Ranidae|amphibian family +family ranunculaceae|1 +(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|crowfoot family|magnoliid dicot family +family rapateaceae|1 +(noun)|Rapateaceae|family Rapateaceae|monocot family|liliopsid family +family raphidae|1 +(noun)|Raphidae|family Raphidae|bird family +family raphidiidae|1 +(noun)|Raphidiidae|family Raphidiidae|arthropod family +family recurvirostridae|1 +(noun)|Recurvirostridae|family Recurvirostridae|bird family +family reduviidae|1 +(noun)|Reduviidae|family Reduviidae|arthropod family +family regalecidae|1 +(noun)|Regalecidae|family Regalecidae|fish family +family relationship|1 +(noun)|kinship|relationship|relation +family resedaceae|1 +(noun)|Resedaceae|family Resedaceae|mignonette family|dilleniid dicot family +family rhamnaceae|1 +(noun)|Rhamnaceae|family Rhamnaceae|buckthorn family|dicot family|magnoliopsid family +family rheidae|1 +(noun)|Rheidae|family Rheidae|bird family +family rhincodontidae|1 +(noun)|Rhincodontidae|family Rhincodontidae|fish family +family rhinobatidae|1 +(noun)|Rhinobatidae|family Rhinobatidae|fish family +family rhinocerotidae|1 +(noun)|Rhinocerotidae|family Rhinocerotidae|rhinoceros family|mammal family +family rhinolophidae|1 +(noun)|Rhinolophidae|family Rhinolophidae|mammal family +family rhinotermitidae|1 +(noun)|Rhinotermitidae|family Rhinotermitidae|arthropod family +family rhiptoglossa|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +family rhizobiaceae|1 +(noun)|Rhizobiaceae|family Rhizobiaceae|bacteria family +family rhizophoraceae|1 +(noun)|Rhizophoraceae|family Rhizophoraceae|mangrove family|dicot family|magnoliopsid family +family rhizopogonaceae|1 +(noun)|Rhizopogonaceae|family Rhizopogonaceae|fungus family +family rhodymeniaceae|1 +(noun)|Rhodymeniaceae|family Rhodymeniaceae|protoctist family +family rhyniaceae|1 +(noun)|Rhyniaceae|family Rhyniaceae|fern family +family rickettsiaceae|1 +(noun)|Rickettsiaceae|family Rickettsiaceae|bacteria family +family roccellaceae|1 +(noun)|Roccellaceae|family Roccellaceae|fungus family +family room|1 +(noun)|recreation room|rec room +family roridulaceae|1 +(noun)|Roridulaceae|family Roridulaceae|dicot family|magnoliopsid family +family rosaceae|1 +(noun)|Rosaceae|family Rosaceae|rose family|rosid dicot family +family rubiaceae|1 +(noun)|Rubiaceae|family Rubiaceae|madder family|asterid dicot family +family ruscaceae|1 +(noun)|Ruscaceae|family Ruscaceae|liliid monocot family +family russulaceae|1 +(noun)|Russulaceae|family Russulaceae|fungus family +family rutaceae|1 +(noun)|Rutaceae|family Rutaceae|rue family|rosid dicot family +family rynchopidae|1 +(noun)|Rynchopidae|family Rynchopidae|bird family +family saccharomycetaceae|1 +(noun)|Saccharomycetaceae|family Saccharomycetaceae|fungus family +family sagittariidae|1 +(noun)|Sagittariidae|family Sagittariidae|bird family +family salamandridae|1 +(noun)|Salamandridae|family Salamandridae|amphibian family +family salicaceae|1 +(noun)|Salicaceae|family Salicaceae|willow family|hamamelid dicot family +family salmonidae|1 +(noun)|Salmonidae|family Salmonidae|fish family +family salpidae|1 +(noun)|Salpidae|family Salpidae|chordate family +family salvadoraceae|1 +(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family|magnoliopsid family +family salviniaceae|1 +(noun)|Salviniaceae|family Salviniaceae|fern family +family santalaceae|1 +(noun)|Santalaceae|family Santalaceae|sandalwood family|dilleniid dicot family +family sapindaceae|1 +(noun)|Sapindaceae|family Sapindaceae|soapberry family|dicot family|magnoliopsid family +family sapotaceae|1 +(noun)|Sapotaceae|family Sapotaceae|sapodilla family|dicot family|magnoliopsid family +family sarcoptidae|1 +(noun)|Sarcoptidae|family Sarcoptidae|arthropod family +family sarcoscyphaceae|1 +(noun)|Sarcoscyphaceae|family Sarcoscyphaceae|fungus family +family sarraceniaceae|1 +(noun)|Sarraceniaceae|family Sarraceniaceae|pitcher-plant family|dicot family|magnoliopsid family +family saturniidae|1 +(noun)|Saturniidae|family Saturniidae|arthropod family +family satyridae|1 +(noun)|Satyridae|family Satyridae|arthropod family +family saururaceae|1 +(noun)|Saururaceae|family Saururaceae|lizard's-tail family|dicot family|magnoliopsid family +family saxifragaceae|1 +(noun)|Saxifragaceae|family Saxifragaceae|saxifrage family|rosid dicot family +family scarabaeidae|1 +(noun)|Scarabaeidae|family Scarabaeidae|arthropod family +family scaridae|1 +(noun)|Scaridae|family Scaridae|fish family +family scheuchzeriaceae|1 +(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family|liliopsid family +family schistosomatidae|1 +(noun)|Schistosomatidae|family Schistosomatidae|worm family +family schizaeaceae|1 +(noun)|Schizaeaceae|family Schizaeaceae|fern family +family schizophyceae|1 +(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family +family schizosaccharomycetaceae|1 +(noun)|Schizosaccharomycetaceae|family Schizosaccharomycetaceae|fungus family +family sciadopityaceae|1 +(noun)|Sciadopityaceae|family Sciadopityaceae|gymnosperm family +family sciaenidae|1 +(noun)|Sciaenidae|family Sciaenidae|fish family +family sciaridae|1 +(noun)|Sciaridae|family Sciaridae|arthropod family +family scincidae|1 +(noun)|Scincidae|family Scincidae|reptile family +family sciuridae|1 +(noun)|Sciuridae|family Sciuridae|mammal family +family sclerodermataceae|1 +(noun)|Sclerodermataceae|family Sclerodermataceae|fungus family +family sclerotiniaceae|1 +(noun)|Sclerotiniaceae|family Sclerotiniaceae|fungus family +family scolopacidae|1 +(noun)|Scolopacidae|family Scolopacidae|bird family +family scolytidae|1 +(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family +family scomberesocidae|1 +(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family +family scombresocidae|1 +(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family +family scombridae|1 +(noun)|Scombridae|family Scombridae|fish family +family scorpaenidae|1 +(noun)|Scorpaenidae|family Scorpaenidae|fish family +family scrophulariaceae|1 +(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|foxglove family|asterid dicot family +family scutigeridae|1 +(noun)|Scutigeridae|family Scutigeridae|arthropod family +family scyliorhinidae|1 +(noun)|Scyliorhinidae|family Scyliorhinidae|fish family +family secotiaceae|1 +(noun)|Secotiaceae|family Secotiaceae|fungus family +family selaginellaceae|1 +(noun)|Selaginellaceae|family Selaginellaceae|fern family +family sepiidae|1 +(noun)|Sepiidae|family Sepiidae|mollusk family +family septobasidiaceae|1 +(noun)|Septobasidiaceae|family Septobasidiaceae|fungus family +family serranidae|1 +(noun)|Serranidae|family Serranidae|fish family +family sialidae|1 +(noun)|Sialidae|family Sialidae|arthropod family +family sillaginidae|1 +(noun)|Sillaginidae|family Sillaginidae|fish family +family siluridae|1 +(noun)|Siluridae|family Siluridae|fish family +family simaroubaceae|1 +(noun)|Simaroubaceae|family Simaroubaceae|quassia family|rosid dicot family +family simuliidae|1 +(noun)|Simuliidae|family Simuliidae|arthropod family +family sirenidae|1 +(noun)|Sirenidae|family Sirenidae|amphibian family +family sisyridae|1 +(noun)|Sisyridae|family Sisyridae|arthropod family +family sittidae|1 +(noun)|Sittidae|family Sittidae|bird family +family solanaceae|1 +(noun)|Solanaceae|family Solanaceae|potato family|asterid dicot family +family soleidae|1 +(noun)|Soleidae|family Soleidae|fish family +family solenidae|1 +(noun)|Solenidae|family Solenidae|mollusk family +family soricidae|1 +(noun)|Soricidae|family Soricidae|mammal family +family spalacidae|1 +(noun)|Spalacidae|family Spalacidae|mammal family +family sparganiaceae|1 +(noun)|Sparganiaceae|family Sparganiaceae|bur-reed family|monocot family|liliopsid family +family sparidae|1 +(noun)|Sparidae|family Sparidae|fish family +family sphaeriaceae|1 +(noun)|Sphaeriaceae|family Sphaeriaceae|fungus family +family sphaerobolaceae|1 +(noun)|Sphaerobolaceae|family Sphaerobolaceae|fungus family +family sphaerocarpaceae|1 +(noun)|Sphaerocarpaceae|family Sphaerocarpaceae|moss family +family sphecidae|1 +(noun)|Sphecidae|family Sphecidae|arthropod family +family spheniscidae|1 +(noun)|Spheniscidae|family Spheniscidae|bird family +family sphingidae|1 +(noun)|Sphingidae|family Sphingidae|arthropod family +family sphyraenidae|1 +(noun)|Sphyraenidae|family Sphyraenidae|fish family +family sphyrnidae|1 +(noun)|Sphyrnidae|family Sphyrnidae|fish family +family spirillaceae|1 +(noun)|Spirillaceae|family Spirillaceae|bacteria family +family spirochaetaceae|1 +(noun)|Spirochaetaceae|family Spirochaetaceae|bacteria family +family spirulidae|1 +(noun)|Spirulidae|family Spirulidae|mollusk family +family squalidae|1 +(noun)|Squalidae|family Squalidae|fish family +family squatinidae|1 +(noun)|Squatinidae|family Squatinidae|fish family +family squillidae|1 +(noun)|Squillidae|family Squillidae|arthropod family +family staphylaceae|1 +(noun)|Staphylaceae|family Staphylaceae|bladdernut family|dicot family|magnoliopsid family +family staphylinidae|1 +(noun)|Staphylinidae|family Staphylinidae|arthropod family +family steatornithidae|1 +(noun)|Steatornithidae|family Steatornithidae|bird family +family stenopelmatidae|1 +(noun)|Stenopelmatidae|family Stenopelmatidae|arthropod family +family stercorariidae|1 +(noun)|Stercorariidae|family Stercorariidae|bird family +family sterculiaceae|1 +(noun)|Sterculiaceae|family Sterculiaceae|sterculia family|dilleniid dicot family +family stichaeidae|1 +(noun)|Stichaeidae|family Stichaeidae|fish family +family stizidae|1 +(noun)|Stizidae|family Stizidae|arthropod family +family strelitziaceae|1 +(noun)|Strelitziaceae|family Strelitziaceae|strelitzia family|monocot family|liliopsid family +family streptomycetaceae|1 +(noun)|Streptomycetaceae|family Streptomycetaceae|bacteria family +family strigidae|1 +(noun)|Strigidae|family Strigidae|bird family +family stromateidae|1 +(noun)|Stromateidae|family Stromateidae|fish family +family strombidae|1 +(noun)|Strombidae|family Strombidae|mollusk family +family strophariaceae|1 +(noun)|Strophariaceae|family Strophariaceae|fungus family +family struthionidae|1 +(noun)|Struthionidae|family Struthionidae|bird family +family sturnidae|1 +(noun)|Sturnidae|family Sturnidae|bird family +family styracaceae|1 +(noun)|Styracaceae|family Styracaceae|storax family|styrax family|dicot family|magnoliopsid family +family suidae|1 +(noun)|Suidae|family Suidae|mammal family +family sulidae|1 +(noun)|Sulidae|family Sulidae|bird family +family sylviidae|1 +(noun)|Sylviidae|family Sylviidae|bird family +family symplocaceae|1 +(noun)|Symplocaceae|family Symplocaceae|sweetleaf family|dicot family|magnoliopsid family +family synchytriaceae|1 +(noun)|Synchytriaceae|family Synchytriaceae|fungus family +family syngnathidae|1 +(noun)|Syngnathidae|family Syngnathidae|fish family +family synodontidae|1 +(noun)|Synodontidae|family Synodontidae|fish family +family tabanidae|1 +(noun)|Tabanidae|family Tabanidae|arthropod family +family taccaceae|1 +(noun)|Taccaceae|family Taccaceae|liliid monocot family +family tachinidae|1 +(noun)|Tachinidae|family Tachinidae|arthropod family +family tachyglossidae|1 +(noun)|Tachyglossidae|family Tachyglossidae|mammal family +family taeniidae|1 +(noun)|Taeniidae|family Taeniidae|worm family +family talpidae|1 +(noun)|Talpidae|family Talpidae|mammal family +family tamaricaceae|1 +(noun)|Tamaricaceae|family Tamaricaceae|tamarisk family|dilleniid dicot family +family tapiridae|1 +(noun)|Tapiridae|family Tapiridae|mammal family +family tarsiidae|1 +(noun)|Tarsiidae|family Tarsiidae|mammal family +family taxaceae|1 +(noun)|Taxaceae|family Taxaceae|yew family|gymnosperm family +family tayassuidae|1 +(noun)|Tayassuidae|family Tayassuidae|mammal family +family tecophilaeacea|1 +(noun)|Tecophilaeacea|family Tecophilaeacea|liliid monocot family +family teiidae|1 +(noun)|Teiidae|family Teiidae|reptile family +family tenebrionidae|1 +(noun)|Tenebrionidae|family Tenebrionidae|arthropod family +family tenrecidae|1 +(noun)|Tenrecidae|family Tenrecidae|mammal family +family tenthredinidae|1 +(noun)|Tenthredinidae|family Tenthredinidae|arthropod family +family terebellidae|1 +(noun)|Terebellidae|family Terebellidae|worm family +family teredinidae|1 +(noun)|Teredinidae|family Teredinidae|mollusk family +family termitidae|1 +(noun)|Termitidae|family Termitidae|arthropod family +family testudinidae|1 +(noun)|Testudinidae|family Testudinidae|reptile family +family tethyidae|1 +(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family +family tetragoniaceae|1 +(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family +family tetranychidae|1 +(noun)|Tetranychidae|family Tetranychidae|arthropod family +family tetraodontidae|1 +(noun)|Tetraodontidae|family Tetraodontidae|fish family +family tetraonidae|1 +(noun)|Tetraonidae|family Tetraonidae|bird family +family tettigoniidae|1 +(noun)|Tettigoniidae|family Tettigoniidae|arthropod family +family theaceae|1 +(noun)|Theaceae|family Theaceae|tea family|dilleniid dicot family +family thelephoraceae|1 +(noun)|Thelephoraceae|family Thelephoraceae|fungus family +family thelypteridaceae|1 +(noun)|Thelypteridaceae|family Thelypteridaceae|fern family +family theophrastaceae|1 +(noun)|Theophrastaceae|family Theophrastaceae|dicot family|magnoliopsid family +family theraphosidae|1 +(noun)|Theraphosidae|family Theraphosidae|arthropod family +family therapy|1 +(noun)|group therapy|group psychotherapy +family theridiidae|1 +(noun)|Theridiidae|family Theridiidae|arthropod family +family thiobacteriaceae|1 +(noun)|Thiobacteriaceae|family Thiobacteriaceae|bacteria family +family thraupidae|1 +(noun)|Thraupidae|family Thraupidae|bird family +family threskiornithidae|1 +(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family +family thripidae|1 +(noun)|Thripidae|family Thripidae|arthropod family +family thymelaeaceae|1 +(noun)|Thymelaeaceae|family Thymelaeaceae|daphne family|dicot family|magnoliopsid family +family tiliaceae|1 +(noun)|Tiliaceae|family Tiliaceae|linden family|dilleniid dicot family +family tilletiaceae|1 +(noun)|Tilletiaceae|family Tilletiaceae|fungus family +family timaliidae|1 +(noun)|Timaliidae|family Timaliidae|bird family +family tinamidae|1 +(noun)|Tinamidae|family Tinamidae|bird family +family tineidae|1 +(noun)|Tineidae|family Tineidae|arthropod family +family tingidae|1 +(noun)|Tingidae|family Tingidae|arthropod family +family tipulidae|1 +(noun)|Tipulidae|family Tipulidae|arthropod family +family titanosauridae|1 +(noun)|Titanosauridae|family Titanosauridae|reptile family +family todidae|1 +(noun)|Todidae|family Todidae|bird family +family torpedinidae|1 +(noun)|Torpedinidae|family Torpedinidae|fish family +family tortricidae|1 +(noun)|Tortricidae|family Tortricidae|arthropod family +family toxotidae|1 +(noun)|Toxotidae|family Toxotidae|fish family +family trachipteridae|1 +(noun)|Trachipteridae|family Trachipteridae|fish family +family tragulidae|1 +(noun)|Tragulidae|family Tragulidae|mammal family +family trapaceae|1 +(noun)|Trapaceae|family Trapaceae|dicot family|magnoliopsid family +family tree|1 +(noun)|genealogy|kin|kin group|kinship group|kindred|clan|tribe +family tremellaceae|1 +(noun)|Tremellaceae|family Tremellaceae|fungus family +family trephritidae|1 +(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family +family treponemataceae|1 +(noun)|Treponemataceae|family Treponemataceae|bacteria family +family triakidae|1 +(noun)|Triakidae|family Triakidae|fish family +family tribonemaceae|1 +(noun)|Tribonemaceae|family Tribonemaceae|protoctist family +family trichechidae|1 +(noun)|Trichechidae|family Trichechidae|mammal family +family trichiuridae|1 +(noun)|Trichiuridae|family Trichiuridae|fish family +family trichodontidae|1 +(noun)|Trichodontidae|family Trichodontidae|fish family +family tricholomataceae|1 +(noun)|Tricholomataceae|family Tricholomataceae|fungus family +family tridacnidae|1 +(noun)|Tridacnidae|family Tridacnidae|mollusk family +family triglidae|1 +(noun)|Triglidae|family Triglidae|fish family +family trilliaceae|1 +(noun)|Trilliaceae|family Trilliaceae|trillium family|liliid monocot family +family trionychidae|1 +(noun)|Trionychidae|family Trionychidae|reptile family +family triopidae|1 +(noun)|Triopidae|family Triopidae|arthropod family +family trochilidae|1 +(noun)|Trochilidae|family Trochilidae|bird family +family troglodytidae|1 +(noun)|Troglodytidae|family Troglodytidae|bird family +family trogonidae|1 +(noun)|Trogonidae|family Trogonidae|bird family +family trombiculidae|1 +(noun)|Trombiculidae|family Trombiculidae|arthropod family +family trombidiidae|1 +(noun)|Trombidiidae|family Trombidiidae|arthropod family +family tropaeolaceae|1 +(noun)|Tropaeolaceae|family Tropaeolaceae|nasturtium family|rosid dicot family +family trypetidae|1 +(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family +family tuberaceae|1 +(noun)|Tuberaceae|family Tuberaceae|fungus family +family tuberculariaceae|1 +(noun)|Tuberculariaceae|family Tuberculariaceae|fungus family +family tulostomaceae|1 +(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family +family tulostomataceae|1 +(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family +family tupaiidae|1 +(noun)|Tupaiidae|family Tupaiidae|mammal family +family turdidae|1 +(noun)|Turdidae|family Turdidae|bird family +family turnicidae|1 +(noun)|Turnicidae|family Turnicidae|bird family +family tylenchidae|1 +(noun)|Tylenchidae|family Tylenchidae|worm family +family typhaceae|1 +(noun)|Typhaceae|family Typhaceae|cattail family|monocot family|liliopsid family +family typhlopidae|1 +(noun)|Typhlopidae|family Typhlopidae|reptile family +family tytonidae|1 +(noun)|Tytonidae|family Tytonidae|bird family +family uintatheriidae|1 +(noun)|Uintatheriidae|family Uintatheriidae|mammal family +family ulmaceae|1 +(noun)|Ulmaceae|family Ulmaceae|elm family|dicot family|magnoliopsid family +family ulvaceae|1 +(noun)|Ulvaceae|family Ulvaceae|sea-lettuce family|protoctist family +family umbelliferae|1 +(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family +family unionidae|1 +(noun)|Unionidae|family Unionidae|mollusk family +family unit|1 +(noun)|family|kin|kin group|kinship group|kindred|clan|tribe +family upupidae|1 +(noun)|Upupidae|family Upupidae|bird family +family uranoscopidae|1 +(noun)|Uranoscopidae|family Uranoscopidae|fish family +family ursidae|1 +(noun)|Ursidae|family Ursidae|mammal family +family urticaceae|1 +(noun)|Urticaceae|family Urticaceae|nettle family|dicot family|magnoliopsid family +family usneaceae|1 +(noun)|Usneaceae|family Usneaceae|fungus family +family ustilaginaceae|1 +(noun)|Ustilaginaceae|family Ustilaginaceae|fungus family +family valerianaceae|1 +(noun)|Valerianaceae|family Valerianaceae|valerian family|asterid dicot family +family varanidae|1 +(noun)|Varanidae|family Varanidae|reptile family +family veneridae|1 +(noun)|Veneridae|family Veneridae|mollusk family +family verbenaceae|1 +(noun)|Verbenaceae|family Verbenaceae|verbena family|vervain family|asterid dicot family +family vespertilionidae|1 +(noun)|Vespertilionidae|family Vespertilionidae|mammal family +family vespidae|1 +(noun)|Vespidae|family Vespidae|arthropod family +family violaceae|1 +(noun)|Violaceae|family Violaceae|violet family|dilleniid dicot family +family viperidae|1 +(noun)|Viperidae|family Viperidae|reptile family +family vireonidae|1 +(noun)|Vireonidae|family Vireonidae|bird family +family viscaceae|1 +(noun)|Viscaceae|family Viscaceae|mistletoe family|dilleniid dicot family +family vitaceae|1 +(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family|magnoliopsid family +family vittariaceae|1 +(noun)|Vittariaceae|family Vittariaceae|fern family +family viverridae|1 +(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family +family viverrinae|1 +(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family +family volvariaceae|1 +(noun)|Volvariaceae|family Volvariaceae|fungus family +family volvocaceae|1 +(noun)|Volvocaceae|family Volvocaceae|protoctist family +family vombatidae|1 +(noun)|Vombatidae|family Vombatidae|mammal family +family welwitschiaceae|1 +(noun)|Welwitschiaceae|family Welwitschiaceae|gymnosperm family +family winteraceae|1 +(noun)|Winteraceae|family Winteraceae|winter's bark family|magnoliid dicot family +family xanthorrhoeaceae|1 +(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|grass tree family|liliid monocot family +family xantusiidae|1 +(noun)|Xantusiidae|family Xantusiidae|reptile family +family xenicidae|1 +(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family +family xenopodidae|1 +(noun)|Xenopodidae|family Xenopodidae|amphibian family +family xenosauridae|1 +(noun)|Xenosauridae|family Xenosauridae|reptile family +family xiphiidae|1 +(noun)|Xiphiidae|family Xiphiidae|fish family +family xylariaceae|1 +(noun)|Xylariaceae|family Xylariaceae|fungus family +family xyridaceae|1 +(noun)|Xyridaceae|family Xyridaceae|yellow-eyed grass family|monocot family|liliopsid family +family zamiaceae|1 +(noun)|Zamiaceae|family Zamiaceae|zamia family|gymnosperm family +family zannichelliaceae|1 +(noun)|Zannichelliaceae|family Zannichelliaceae|monocot family|liliopsid family +family zapodidae|1 +(noun)|Zapodidae|family Zapodidae|mammal family +family zeidae|1 +(noun)|Zeidae|family Zeidae|fish family +family zingiberaceae|1 +(noun)|Zingiberaceae|family Zingiberaceae|ginger family|monocot family|liliopsid family +family ziphiidae|1 +(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family +family zoarcidae|1 +(noun)|Zoarcidae|family Zoarcidae|fish family +family zosteraceae|1 +(noun)|Zosteraceae|family Zosteraceae|eelgrass family|monocot family|liliopsid family +family zygnemataceae|1 +(noun)|Zygnemataceae|family Zygnemataceae|protoctist family +family zygophyllaceae|1 +(noun)|Zygophyllaceae|family Zygophyllaceae|bean-caper family|rosid dicot family +famine|2 +(noun)|dearth|shortage|lack|deficiency|want +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +famish|3 +(verb)|starve|hunger|suffer|hurt +(verb)|starve|deprive +(verb)|starve|die|decease|perish|go|exit|pass away|expire|pass +famished|1 +(adj)|ravenous|sharp-set|starved|esurient|hungry +famishment|1 +(noun)|starvation|hunger|hungriness +famotidine|1 +(noun)|Pepcid|histamine blocker +famous|1 +(adj)|celebrated|famed|far-famed|illustrious|notable|noted|renowned|known +famous person|1 +(noun)|celebrity|important person|influential person|personage +famously|1 +(adv)|magnificently|splendidly +famulus|1 +(noun)|attendant|attender|tender +fan|7 +(noun)|device +(noun)|sports fan|enthusiast|partisan|partizan +(noun)|buff|devotee|lover|follower +(verb)|strike out +(verb)|intensify|compound|heighten|deepen +(verb)|shake|agitate +(verb)|winnow|sift|sieve|strain +fan belt|1 +(noun)|belt +fan blade|1 +(noun)|blade|vane +fan dance|1 +(noun)|nude dancing +fan fern|1 +(noun)|umbrella fern|Sticherus flabellatus|Gleichenia flabellata|fern +fan letter|1 +(noun)|letter|missive +fan mail|1 +(noun)|mail|post +fan out|1 +(verb)|diffuse|spread|spread out|spread|distribute +fan palm|1 +(noun)|palm|palm tree +fan tracery|1 +(noun)|tracery +fan vaulting|1 +(noun)|vaulting +fanaloka|1 +(noun)|Fossa fossa|civet|civet cat +fanatic|2 +(adj)|fanatical|overzealous|rabid|passionate +(noun)|fiend|enthusiast|partisan|partizan +fanatical|1 +(adj)|fanatic|overzealous|rabid|passionate +fanaticism|1 +(noun)|zealotry|intolerance +fancied|1 +(adj)|fabricated|fictional|fictitious|invented|made-up|unreal +fancied up|1 +(adj)|gussied|gussied up|tricked out|adorned |decorated +fancier|1 +(noun)|enthusiast|admirer|adorer +fanciful|3 +(adj)|notional|creative |originative +(adj)|imaginary|imagined|notional|unreal +(adj)|fancy +fancifully|1 +(adv)|whimsically +fanconi's anaemia|1 +(noun)|Fanconi's anemia|Fanconi's anaemia|congenital pancytopenia|anemia|anaemia|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +fanconi's anemia|1 +(noun)|Fanconi's anemia|Fanconi's anaemia|congenital pancytopenia|anemia|anaemia|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +fancy|6 +(adj)|fancy |aureate|florid|flamboyant|showy|baroque|churrigueresque|churrigueresco|busy|fussy|battlemented|castellated|castled|crenelated|crenellated|dressy|crackle|damascene|damask|elaborate|luxuriant|embattled|crenelated|crenelate|crenellated|crenellate|indented|fanciful|garnished|lacy|lacelike|rich|rococo|vermicular|vermiculate|vermiculated|puff|puffed|adorned|decorated|rhetorical +(noun)|illusion|fantasy|phantasy|misconception +(noun)|imagination|imaginativeness|vision +(noun)|fondness|partiality|liking +(verb)|visualize|visualise|envision|project|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|go for|take to|desire|want +fancy-dress ball|1 +(noun)|masked ball|masquerade ball|ball|masquerade|masque|mask +fancy-free|1 +(adj)|uncommitted +fancy dress|1 +(noun)|masquerade|masquerade costume|costume|disguise +fancy goods|1 +(noun)|commodity|trade goods|goods +fancy man|2 +(noun)|pimp|procurer|panderer|pander|pandar|ponce|wrongdoer|offender +(noun)|paramour|lover +fancy up|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +fancy woman|2 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +(noun)|mistress|kept woman|woman|adult female|lover +fancywork|1 +(noun)|embroidery|needlework|needlecraft +fandango|1 +(noun)|social dancing +fandom|1 +(noun)|following|followers +fanfare|2 +(noun)|ostentation|display +(noun)|flourish|tucket|tune|melody|air|strain|melodic line|line|melodic phrase +fang|3 +(noun)|Fang|Bantu|Bantoid language +(noun)|canine|canine tooth|eyetooth|eye tooth|dogtooth|cuspid +(noun)|tooth +fanged|1 +(adj)|tooth +fanion|1 +(noun)|flag +fanlight|3 +(noun)|transom|transom window|window +(noun)|skylight|window +(noun)|window +fanlike|1 +(adj)|wide |broad +fanned|1 +(adj)|spread-out|distributed +fannie farmer|1 +(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook +fannie mae|1 +(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation|corp +fannie merritt farmer|1 +(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook +fanny|2 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|ass|body part +(noun)|female genitalia|female genitals|female genital organ|genitalia|genital organ|genitals|private parts|privates|crotch +fanny adams|2 +(noun)|bugger all|fuck all|Fanny Adams|sweet Fanny Adams|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip +(noun)|Fanny Adams|canned meat|tinned meat +fanny pack|1 +(noun)|butt pack|waist pack|belt bag +fanny wright|1 +(noun)|Wright|Frances Wright|Fanny Wright|feminist|women's rightist|women's liberationist|libber +fantabulous|1 +(adj)|excellent|first-class|superior +fantail|1 +(noun)|overhang +fantan|2 +(noun)|game of chance|gambling game +(noun)|sevens|parliament|card game|cards +fantasia|1 +(noun)|musical composition|opus|composition|piece|piece of music +fantasise|2 +(verb)|fantasize|imagine|conceive of|ideate|envisage +(verb)|fantasize|imagine|conceive of|ideate|envisage +fantasist|1 +(noun)|creator +fantasize|2 +(verb)|fantasise|imagine|conceive of|ideate|envisage +(verb)|fantasise|imagine|conceive of|ideate|envisage +fantast|1 +(noun)|futurist|visionary|illusionist|seer +fantastic|5 +(adj)|antic|fantastical|grotesque|strange |unusual +(adj)|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary +(adj)|unrealistic +(adj)|fantastical|unreal +(adj)|phenomenal|extraordinary +fantastical|2 +(adj)|fantastic|unreal +(adj)|antic|fantastic|grotesque|strange |unusual +fantastically|1 +(adv)|fabulously +fantasy|3 +(noun)|phantasy|imagination|imaginativeness|vision +(noun)|phantasy|fiction +(noun)|illusion|phantasy|fancy|misconception +fantasy life|1 +(noun)|phantasy life|fantasy|phantasy +fantasy world|1 +(noun)|phantasy world|fairyland|fantasy|phantasy +fantods|1 +(noun)|disorder|upset +fanweed|1 +(noun)|field pennycress|French weed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress +fanwort|1 +(noun)|water-shield|Cabomba caroliniana|water lily +fao|1 +(noun)|Food and Agriculture Organization|Food and Agriculture Organization of the United Nations|FAO|United Nations agency|UN agency +faq|1 +(noun)|FAQ|list|listing +faqir|1 +(noun)|fakir|fakeer|faquir|saint|holy man|holy person|angel|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +faquir|1 +(noun)|fakir|fakeer|faqir|saint|holy man|holy person|angel|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +far|5 +(adj)|far |cold|faraway|far-off|farther|farthermost|farthest|furthermost|furthest|utmost|uttermost|further|farther|distant|remote|removed|distant|remote|removed|off the beaten track|out-of-the-way|outlying +(adj)|long +(adj)|right +(adj)|immoderate +(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization|terrorist group|foreign terrorist organization|FTO +far-famed|1 +(adj)|celebrated|famed|famous|illustrious|notable|noted|renowned|known +far-flung|2 +(adj)|widespread|distributed +(adj)|distant +far-off|1 +(adj)|faraway|far +far-out|1 +(adj)|kinky|offbeat|quirky|way-out|unconventional +far-reaching|1 +(adj)|extensive|sweeping|comprehensive +far-right|1 +(adj)|reactionary|reactionist|right +far and away|1 +(adv)|by far|out and away +far and near|1 +(adv)|far and wide +far and wide|1 +(adv)|far and near +far cry|2 +(noun)|farness|remoteness|farawayness +(noun)|disparity +far east|1 +(noun)|Far East|region +far left|1 +(adj)|left +farad|1 +(noun)|F|capacitance unit +faraday|1 +(noun)|Faraday|Michael Faraday|chemist|physicist +farandole|1 +(noun)|folk dancing|folk dance +faraway|2 +(adj)|far-off|far +(adj)|distant +farawayness|1 +(noun)|farness|remoteness|distance +farc|1 +(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization|terrorist group|foreign terrorist organization|FTO +farce|2 +(noun)|farce comedy|travesty|comedy +(noun)|forcemeat|stuffing|dressing +farce comedy|1 +(noun)|farce|travesty|comedy +farcical|1 +(adj)|ludicrous|ridiculous|humorous |humourous +fardel|1 +(noun)|burden|load|encumbrance|incumbrance|onus +fare|6 +(noun)|menu|agenda|docket|schedule +(noun)|transportation|charge +(noun)|passenger|rider +(noun)|food|nutrient +(verb)|do|make out|come|get along|proceed|go +(verb)|eat +fare-stage|1 +(noun)|stage|leg +fare-thee-well|1 +(noun)|perfection|flawlessness|ne plus ultra +fare increase|1 +(noun)|increase|increment +farewell|2 +(noun)|word of farewell|acknowledgment|acknowledgement +(noun)|leave|leave-taking|parting|departure|going|going away|leaving +farfetched|1 +(adj)|implausible|unlikely +fargo|1 +(noun)|Fargo|city|metropolis|urban center +farina|1 +(noun)|meal +farinaceous|2 +(adj)|starchlike|amylaceous|amyloid|amyloidal|starchy +(adj)|coarse-grained|grainy|granular|granulose|gritty|mealy|sandy|coarse +farkleberry|1 +(noun)|sparkleberry|Vaccinium arboreum|blueberry|blueberry bush +farley maidenhair|1 +(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum +farley maidenhair fern|1 +(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum +farm|4 +(noun)|workplace|work +(verb)|work|do work +(verb)|collect|take in|farm out +(verb)|grow|raise|produce|cultivate +farm-place|2 +(noun)|farmplace|farmstead|farm +(noun)| +farm animal|1 +(noun)|livestock|stock|placental|placental mammal|eutherian|eutherian mammal +farm bill|1 +(noun)|bill|measure +farm boy|1 +(noun)|male child|boy +farm building|1 +(noun)|building|edifice +farm cheese|1 +(noun)|cottage cheese|pot cheese|farmer's cheese|cheese +farm club|1 +(noun)|farm team|minor-league team|minor-league club +farm credit system|1 +(noun)|Farm Credit System|FCS|banking industry|banking system +farm girl|1 +(noun)|female child|girl|little girl +farm horse|1 +(noun)|dobbin|workhorse +farm machine|1 +(noun)|machine +farm out|2 +(verb)|subcontract|job|hire|engage|employ +(verb)|hire out|rent out|lend|loan +farm team|1 +(noun)|farm club|minor-league team|minor-league club +farm worker|1 +(noun)|farmhand|fieldhand|field hand|hired hand|hand|hired man +farmer|3 +(noun)|husbandman|granger|sodbuster|creator +(noun)|Farmer|James Leonard Farmer|civil rights leader|civil rights worker|civil rights activist +(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook +farmer's calendar|1 +(noun)|almanac|annual|yearbook +farmer's cheese|1 +(noun)|cottage cheese|pot cheese|farm cheese|cheese +farmer's lung|1 +(noun)|thresher's lung|alveolitis +farmer's market|1 +(noun)|green market|greenmarket|open-air market|open-air marketplace|market square +farmer-labor party|1 +(noun)|Farmer-Labor Party|party|political party +farmerette|1 +(noun)|farmhand|fieldhand|field hand|farm worker +farmhand|1 +(noun)|fieldhand|field hand|farm worker|hired hand|hand|hired man +farmhouse|1 +(noun)|house +farming|3 +(adj)|agrarian|agricultural|rural +(noun)|agriculture|husbandry|cultivation +(noun)|land|occupation|business|job|line of work|line +farming area|1 +(noun)|farmland|country|rural area +farmington|2 +(noun)|Farmington|town +(noun)|Farmington|town +farmland|2 +(noun)|farming area|country|rural area +(noun)|cultivated land|plowland|ploughland|tilled land|tillage|tilth|land|ground|soil +farmplace|1 +(noun)|farm-place|farmstead|farm +farmstead|2 +(noun)|land +(noun)|farmplace|farm-place|farm +farmyard|1 +(noun)|yard +farness|1 +(noun)|remoteness|farawayness|distance +faro|1 +(noun)|card game|cards +faroe islands|2 +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island +faroes|2 +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession +(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island +faroese|1 +(noun)|Faroese|Faeroese|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +farouk i|1 +(noun)|Farouk I|Faruk I|king|male monarch +farrago|1 +(noun)|odds and ends|oddments|melange|ragbag|hodgepodge|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +farragut|1 +(noun)|Farragut|David Glasgow Farragut|naval officer +farrell|2 +(noun)|Farrell|James Thomas Farrell|writer|author +(noun)|Farrell|Eileen Farrell|soprano +farrier|1 +(noun)|horseshoer|blacksmith +farrow|2 +(noun)|farrowing|parturition|birth|giving birth|birthing +(verb)|pig|litter +farrowing|1 +(noun)|farrow|parturition|birth|giving birth|birthing +farseeing|2 +(adj)|eagle-eyed|keen-sighted|longsighted|farsighted |presbyopic +(adj)|farsighted|foresighted|foresightful|long|longsighted|provident +farsi|2 +(noun)|Farsi|Irani|Iranian|Persian +(noun)|Persian|Farsi|Iranian|Iranian language +farsighted|2 +(adj)|farsighted |presbyopic|eagle-eyed|keen-sighted|farseeing|longsighted|hyperopic|hypermetropic|telescopic +(adj)|farseeing|foresighted|foresightful|long|longsighted|provident +farsightedness|1 +(noun)|hyperopia|hypermetropia|hypermetropy|longsightedness|ametropia +fart|2 +(noun)|farting|flatus|wind|breaking wind|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|break wind|act involuntarily|act reflexively +farther|9 +(adj)|far +(adj)|further|far +(adv)|further +(adv)|further +(adv)|far +(adv)|far +(adv)|far +(adv)|far +(adv)|far +farthermost|1 +(adj)|farthest|furthermost|furthest|utmost|uttermost|far +farthest|4 +(adj)|ultimate +(adj)|farthermost|furthermost|furthest|utmost|uttermost|far +(adv)|furthest +(adv)|furthest +farthing|1 +(noun)|coin +farthingale|1 +(noun)|hoop +farting|1 +(noun)|fart|flatus|wind|breaking wind|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +fartlek|1 +(noun)|athletic training +faruk i|1 +(noun)|Farouk I|Faruk I|king|male monarch +fasces|1 +(noun)|emblem|allegory +fascia|1 +(noun)|facia|connective tissue +fascicle|2 +(noun)|fascicule|installment|instalment +(noun)|fiber bundle|fibre bundle|fasciculus|nervous tissue|nerve tissue +fasciculation|1 +(noun)|twitch|twitching|vellication +fascicule|1 +(noun)|fascicle|installment|instalment +fasciculus|1 +(noun)|fiber bundle|fibre bundle|fascicle|nervous tissue|nerve tissue +fascinate|3 +(verb)|intrigue|matter to|interest +(verb)|transfix|grip|spellbind|interest +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|bewitch|entrance|enchant|attract|appeal +fascinated|2 +(adj)|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|transfixed|enchanted +(adj)|interested +fascinating|2 +(adj)|absorbing|engrossing|gripping|riveting|interesting +(adj)|bewitching|captivating|enchanting|enthralling|entrancing|attractive +fascination|3 +(noun)|captivation|enchantment|spell|trance +(noun)|captivation|enchantment|enthrallment|liking +(noun)|attraction|attractiveness +fasciola|1 +(noun)|Fasciola|genus Fasciola|worm genus +fasciola hepatica|1 +(noun)|liver fluke|Fasciola hepatica|fluke|trematode|trematode worm +fascioliasis|1 +(noun)|fasciolosis|infestation +fasciolidae|1 +(noun)|Fasciolidae|family Fasciolidae|worm family +fasciolopsiasis|1 +(noun)|infestation +fasciolopsis|1 +(noun)|Fasciolopsis|genus Fasciolopsis|worm genus +fasciolopsis buski|1 +(noun)|Fasciolopsis buski|fluke|trematode|trematode worm +fasciolosis|1 +(noun)|fascioliasis|infestation +fascism|1 +(noun)|political orientation|ideology|political theory +fascist|2 +(adj)|fascistic|political orientation|ideology|political theory +(noun)|rightist|right-winger +fascistic|1 +(adj)|fascist|political orientation|ideology|political theory +fashion|4 +(noun)|manner|mode|style|way|property +(noun)|practice|pattern +(noun)|vogue|trend|style +(verb)|forge|make +fashion arbiter|1 +(noun)|trend-setter|taste-maker|model|role model +fashion business|1 +(noun)|apparel industry|garment industry|fashion industry|rag trade|industry +fashion consultant|1 +(noun)|fashionmonger|adviser|advisor|consultant +fashion designer|1 +(noun)|couturier|clothes designer|designer|creator +fashion industry|1 +(noun)|apparel industry|garment industry|fashion business|rag trade|industry +fashion model|1 +(noun)|mannequin|manikin|mannikin|manakin|model|assistant|helper|help|supporter +fashion plate|2 +(noun)|dandy|dude|fop|gallant|sheik|beau|swell|clotheshorse|man|adult male +(noun)|plate +fashionable|3 +(adj)|fashionable |stylish|a la mode|in style|in vogue|modish|cool|dapper|dashing|jaunty|natty|raffish|rakish|smart|spiffy|snappy|spruce|faddish|faddy|groovy|swagger|in|latest|last|newest|up-to-date|cutting-edge|with-it|mod|modern|modernistic|swank|swanky|trendsetting|trendy|voguish|old-time|quaint|olde worlde +(adj)|stylish |chic|smart|voguish|chichi|classy|posh|swish|snazzy +(adj)|popular with|popular +fashioned|1 +(adj)|designed |intentional +fashioning|1 +(noun)|devising|making|production +fashionmonger|1 +(noun)|fashion consultant|adviser|advisor|consultant +fashions|4 +(noun)|consumer goods +(noun)|manner|mode|style|way|fashion|property +(noun)|fashion|practice|pattern +(noun)|fashion|vogue|trend|style +fast|14 +(adj)|fast |accelerated|accelerating|alacritous|blistering|hot|red-hot|double-quick|express|fleet|swift|hastening|high-speed|high-velocity|high-speed|hot|hurrying|scurrying|immediate|prompt|quick|straightaway|instantaneous|instant|meteoric|quick|speedy|rapid|speeding|fast-breaking|fast-paced|rapid|speedy|winged|expedited|hurried|sudden +(adj)|fast +(adj)|fast |allegro|allegretto|andantino|presto|prestissimo|vivace +(adj)|smooth +(adj)|barred|bolted|latched|locked|secured|fastened +(adj)|impervious |imperviable +(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|profligate|riotous|immoral +(adj)|flying|quick|hurried +(adj)|firm|immobile|fixed +(adj)|firm|loyal|truehearted|faithful +(noun)|fasting|abstinence +(verb)|abstain|refrain|desist +(verb)|abstain|refrain|desist +(adv)|tight +fast-breaking|1 +(adj)|fast +fast-flying|1 +(adj)|flying|moving +fast-growing|1 +(adj)|aggressive|invasive +fast-paced|1 +(adj)|fast +fast asleep|1 +(adj)|sound asleep|asleep +fast break|1 +(noun)|break +fast buck|1 +(noun)|quick buck|net income|net|net profit|lucre|profit|profits|earnings +fast day|1 +(noun)|religious holiday|holy day +fast dye|1 +(verb)|dye +fast food|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +fast lane|2 +(noun)|life style|life-style|lifestyle|modus vivendi +(noun)|traffic lane +fast of ab|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +fast of av|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +fast one|1 +(noun)|trick|device|gimmick|twist +fast reactor|1 +(noun)|nuclear reactor|reactor +fast time scale|1 +(noun)|time scale +fast track|1 +(noun)|means|agency|way +fastball|1 +(noun)|heater|smoke|hummer|bullet|pitch|delivery +fasten|4 +(verb)|fix|secure|attach +(verb)|attach +(verb)|attach +(verb)|tighten|change|alter|modify +fasten on|1 +(verb)|take up|latch on|hook on|seize on|espouse|embrace|adopt|sweep up +fastened|4 +(adj)|fastened |barred|bolted|fast|latched|locked|secured|pegged-down|pinned|stapled +(adj)|fixed|steady +(adj)|buttoned |botonee|botonnee|button-down +(adj)|tied |knotted +fastener|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|fastening|holdfast|fixing|restraint|constraint +fastening|2 +(noun)|fastener|holdfast|fixing|restraint|constraint +(noun)|attachment|joining|connection|connexion +faster|1 +(adv)|quicker +fastest|1 +(adv)|quickest +fastidious|2 +(adj)|fastidious |choosy|choosey|dainty|nice|overnice|prissy|squeamish|finical|finicky|fussy|particular|old-maidish|old-womanish|meticulous|picky|pernickety|persnickety|refined|tidy +(adj)|fastidious |exacting +fastidiously|1 +(adv)|painstakingly +fastidiousness|1 +(noun)|cleanliness +fastigiate|1 +(adj)|erect |vertical|upright +fasting|1 +(noun)|fast|abstinence +fastnacht|1 +(noun)|raised doughnut +fastness|3 +(noun)|speed|swiftness|pace|rate +(noun)|fixedness|fixity|fixture|secureness|immovability|immovableness +(noun)|stronghold|defensive structure|defense|defence +fat|10 +(adj)|fat |abdominous|paunchy|potbellied|blubbery|buxom|chubby|embonpoint|plump|zaftig|zoftig|compact|heavyset|stocky|thick|thickset|corpulent|obese|weighty|rotund|double-chinned|jowly|loose-jowled|dumpy|podgy|pudgy|tubby|fattish|fleshy|heavy|overweight|gross|porcine|portly|stout|endomorphic|pyknic|rounded|thick +(adj)|thick +(adj)|fatty |adipose|buttery|greasy|oily|sebaceous|oleaginous|suety|superfatted +(adj)|juicy|profitable +(adj)|fertile|productive|rich|fruitful +(adj)|rounded|endomorphic |pyknic +(noun)|lipid|lipide|lipoid +(noun)|adipose tissue|fatty tissue|animal tissue +(noun)|fatness|blubber|avoirdupois|bodily property +(verb)|fatten|flesh out|fill out|plump|plump out|fatten out|fatten up|change|alter|modify +fat-free|1 +(adj)|nonfat |fatless|light|lite|low-cal|skim|skimmed +fat-soluble vitamin|1 +(noun)|vitamin +fat cat|1 +(noun)|rich person|wealthy person|have +fat cell|1 +(noun)|adipose cell|somatic cell|vegetative cell +fat chance|1 +(noun)|slim chance|probability|chance +fat embolism|1 +(noun)|embolism +fat farm|1 +(noun)|health spa|spa|health club +fat hen|1 +(noun)|good-king-henry|allgood|wild spinach|Chenopodium bonus-henricus|goosefoot +fat metabolism|1 +(noun)|metabolism|metabolic process|metastasis +fat person|1 +(noun)|fatso|fatty|roly-poly|butterball|large person +fat tuesday|1 +(noun)|Mardi Gras|Fat Tuesday|carnival +fata morgana|1 +(noun)|mirage +fatah|1 +(noun)|al-Fatah|Fatah|al-Asifa|political movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +fatah-rc|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +fatah revolutionary council|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +fatah tanzim|1 +(noun)|Fatah Tanzim|Tanzim|terrorist organization|terrorist group|foreign terrorist organization|FTO +fatal|4 +(adj)|fatal |deadly|deathly|mortal|deadly|lethal|terminal +(adj)|fateful|decisive +(adj)|black|calamitous|disastrous|fateful|unfortunate +(adj)|fateful|inevitable +fatal accident|1 +(noun)|casualty|fatality|human death|accident +fatalism|1 +(noun)|determinism +fatalist|3 +(adj)|fatalistic|necessitarian +(adj)|fatalistic|determinism +(noun)|determinist|predestinarian|predestinationist|necessitarian +fatalistic|2 +(adj)|fatalist|necessitarian +(adj)|fatalist|determinism +fatality|2 +(noun)|human death|death|decease +(noun)|deadliness|lethality +fatality rate|1 +(noun)|deathrate|death rate|morbidity|mortality|mortality rate|rate +fatback|1 +(noun)|salt pork +fate|4 +(noun)|destiny|happening|occurrence|natural event +(noun)|Destiny|Fate|causal agent|cause|causal agency +(noun)|fortune|destiny|luck|lot|circumstances|portion|condition +(verb)|destine|doom|designate|ordain +fated|1 +(adj)|doomed|certain |sure +fateful|4 +(adj)|fatal|decisive +(adj)|foreboding|portentous|prophetic |prophetical +(adj)|black|calamitous|disastrous|fatal|unfortunate +(adj)|fatal|inevitable +fates|4 +(noun)|Fates|the Fates|Weird Sisters|deity|divinity|god|immortal +(noun)|destiny|fate|happening|occurrence|natural event +(noun)|Destiny|Fate|causal agent|cause|causal agency +(noun)|fortune|destiny|fate|luck|lot|circumstances|portion|condition +fathead|1 +(noun)|goof|goofball|bozo|jackass|goose|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +fatheaded|1 +(adj)|blockheaded|boneheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid +father|9 +(noun)|male parent|begetter|parent +(noun)|forefather|sire|ancestor|ascendant|ascendent|antecedent|root +(noun)|Father|Padre|priest +(noun)|Church Father|Father of the Church|Father|theologian|theologist|theologizer|theologiser +(noun)|leader +(noun)|Father|Father-God|Fatherhood|hypostasis +(noun)|founder|beginner|founding father|originator|conceiver|mastermind +(noun)|don|head|chief|top dog +(verb)|beget|get|engender|mother|sire|generate|bring forth|make|create +father's day|1 +(noun)|Father's Day|day +father-figure|2 +(noun)|man|adult male +(noun)|father figure|father surrogate|man|adult male +father-god|1 +(noun)|Father|Father-God|Fatherhood|hypostasis +father-in-law|1 +(noun)|father|male parent|begetter|in-law|relative-in-law +father brown|1 +(noun)|Father Brown|fictional character|fictitious character|character +father christmas|1 +(noun)|Santa Claus|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint +father figure|2 +(noun)|father surrogate|man|adult male +(noun)|father-figure|man|adult male +father of the church|1 +(noun)|Church Father|Father of the Church|Father|theologian|theologist|theologizer|theologiser +father of the submarine|1 +(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor|discoverer|artificer +father surrogate|1 +(noun)|father figure|man|adult male +fatherhood|4 +(noun)|paternity|kinship|family relationship|relationship +(noun)|Father|Father-God|Fatherhood|hypostasis +(noun)|position|post|berth|office|spot|billet|place|situation +(noun)|position|post|berth|office|spot|billet|place|situation +fatherland|1 +(noun)|homeland|motherland|mother country|country of origin|native land|country|state|land +fatherless|2 +(adj)|unparented |parentless +(adj)|illegitimate +fatherlike|1 +(adj)|fatherly|paternal +fatherliness|1 +(noun)|paternal quality|parental quality +fatherly|2 +(adj)|fatherlike|paternal +(adj)|loving +fathom|4 +(noun)|fthm|linear unit +(noun)|fthm|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(verb)|penetrate|bottom|understand +(verb)|sound|quantify|measure +fathomable|2 +(adj)|fathomable |plumbable|soundable +(adj)|comprehensible |comprehendible +fathometer|1 +(noun)|sonic depth finder|depth finder +fatigability|1 +(noun)|weakness +fatigue|6 +(noun)|weariness|tiredness|temporary state +(noun)|failing|weakness +(noun)|boredom|ennui|tedium +(noun)|fatigue duty|assignment|duty assignment +(verb)|tire|pall|weary|jade|devolve|deteriorate|drop|degenerate +(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|indispose +fatigue crack|1 +(noun)|crack|cleft|crevice|fissure|scissure +fatigue duty|1 +(noun)|fatigue|assignment|duty assignment +fatigue fracture|1 +(noun)|stress fracture|fracture|break +fatigue party|1 +(noun)|party|company +fatigued|1 +(adj)|exhausted|dog-tired|fagged|played out|spent|washed-out|worn-out|worn out|tired +fatigues|5 +(noun)|military uniform +(noun)|fatigue|weariness|tiredness|temporary state +(noun)|fatigue|failing|weakness +(noun)|fatigue|boredom|ennui|tedium +(noun)|fatigue duty|fatigue|assignment|duty assignment +fatiha|1 +(noun)|Fatiha|Fatihah|sura +fatihah|1 +(noun)|Fatiha|Fatihah|sura +fatima|1 +(noun)|Fatima|Fatimah|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +fatimah|1 +(noun)|Fatima|Fatimah|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +fatism|1 +(noun)|fattism|discrimination|favoritism|favouritism +fatless|1 +(adj)|nonfat |fat-free|light|lite|low-cal|skim|skimmed +fatness|1 +(noun)|fat|blubber|avoirdupois|bodily property +fats domino|1 +(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician|songwriter|songster|ballad maker +fats waller|1 +(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician|jazzman +fatso|1 +(noun)|fatty|fat person|roly-poly|butterball|large person +fatten|1 +(verb)|fat|flesh out|fill out|plump|plump out|fatten out|fatten up|change|alter|modify +fatten out|1 +(verb)|fatten|fat|flesh out|fill out|plump|plump out|fatten up|change|alter|modify +fatten up|1 +(verb)|fatten|fat|flesh out|fill out|plump|plump out|fatten out|change|alter|modify +fattened|1 +(adj)|finished +fattening|1 +(adj)|finished +fattiness|1 +(noun)|adiposity|adiposeness|fatness|fat|blubber|avoirdupois +fattish|1 +(adj)|fat +fattism|1 +(noun)|fatism|discrimination|favoritism|favouritism +fatty|2 +(adj)|fatty |fat|adipose|buttery|greasy|oily|sebaceous|oleaginous|suety|superfatted +(noun)|fatso|fat person|roly-poly|butterball|large person +fatty acid|1 +(noun)|carboxylic acid +fatty liver|1 +(noun)|liver disease +fatty oil|1 +(noun)|fixed oil|oil +fatty tissue|1 +(noun)|adipose tissue|fat|animal tissue +fatuity|1 +(noun)|absurdity|fatuousness|silliness|folly|foolishness|unwiseness +fatuous|1 +(adj)|asinine|inane|mindless|vacuous|foolish +fatuously|1 +(adv)|inanely +fatuousness|1 +(noun)|absurdity|fatuity|silliness|folly|foolishness|unwiseness +fatwa|1 +(noun)|opinion|ruling +fatwah|1 +(noun)|opinion|legal opinion|judgment|judgement +faubourg|1 +(noun)|suburb|suburbia|suburban area +faucal|1 +(adj)|passage|passageway +fauces|1 +(noun)|passage|passageway +faucet|1 +(noun)|regulator +faucial tonsil|1 +(noun)|tonsil|palatine tonsil|tonsilla|lymphatic tissue|lymphoid tissue +fauld|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +faulkner|1 +(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist +fault|8 +(noun)|responsibility|responsibleness +(noun)|geological fault|shift|fracture|break|crack|cleft|crevice|fissure|scissure +(noun)|demerit|worth +(noun)|mistake|error|nonaccomplishment|nonachievement +(noun)|defect|flaw|imperfection|imperfectness +(noun)|serve|service +(noun)|breakdown|equipment failure +(verb)|blame|charge|accuse +fault line|1 +(noun)|line +faultfinder|1 +(noun)|cynic|unpleasant person|disagreeable person +faultfinding|3 +(adj)|judgmental +(adj)|captious|critical +(noun)|carping|criticism|unfavorable judgment +faultiness|1 +(noun)|defectiveness|imperfection|imperfectness +faultless|1 +(adj)|immaculate|impeccable|perfect +faulty|2 +(adj)|inaccurate +(adj)|defective|imperfect +faun|1 +(noun)|Roman deity +fauna|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|animal|animate being|beast|brute|creature|organism|being +fauntleroy|1 +(noun)|Fauntleroy|Little Lord Fauntleroy|male child|boy +faunus|1 +(noun)|Faunus|Roman deity +faust|1 +(noun)|Faust|Faustus|fictional character|fictitious character|character +faustian|1 +(adj)|Faustian|fictional character|fictitious character|character +fausto paolo sozzini|1 +(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian|theologist|theologizer|theologiser +faustus|1 +(noun)|Faust|Faustus|fictional character|fictitious character|character +faustus socinus|1 +(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian|theologist|theologizer|theologiser +fauteuil|1 +(noun)|armchair +fauve|1 +(noun)|Fauve|fauvist|painter +fauvism|1 +(noun)|artistic movement|art movement +fauvist|1 +(noun)|Fauve|painter +faux|1 +(adj)|fake|false|imitation|simulated|artificial |unreal +faux pas|1 +(noun)|gaffe|solecism|slip|gaucherie|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +fava bean|2 +(noun)|broad bean|horsebean|bean|bean plant +(noun)|broad bean|shell bean +faveolate|1 +(adj)|alveolate|cavitied|honeycombed|pitted|cellular +favism|1 +(noun)|anemia|anaemia +favor|9 +(noun)|favour|kindness|benignity +(noun)|favour|advantage|vantage +(noun)|favour|inclination|disposition|tendency +(noun)|favour|approval +(noun)|party favor|party favour|favour|keepsake|souvenir|token|relic +(verb)|prefer|favour|promote|upgrade|advance|kick upstairs|raise|elevate +(verb)|favour|see|consider|reckon|view|regard +(verb)|favour|spare|save +(verb)|privilege|favour|permit|allow|let|countenance +favorable|7 +(adj)|golden|auspicious +(adj)|favorable |favourable|approving|approbative|approbatory|plausive|indulgent|pleasing|affirmative|affirmatory|complimentary|good +(adj)|favorable |favourable|following|propitious +(adj)|well-disposed|friendly +(adj)|auspicious|encouraging|favourable|lucky|prosperous|propitious +(adj)|favourable|opportune|convenient +(adj)|positive|affirmative |affirmatory +favorable position|1 +(noun)|superiority|favourable position|advantage|vantage +favorable reception|1 +(noun)|approval|favourable reception|acceptance +favorableness|1 +(noun)|favourableness|advantageousness|advantage|vantage +favorably|1 +(adv)|favourably +favored|3 +(adj)|favorite|favourite|pet|preferred|loved +(adj)|advantaged|privileged +(adj)|fortunate|golden|blessed |blest +favoring|1 +(adj)|affirmative|pro +favorite|5 +(adj)|favourite|popular +(adj)|favored|favourite|pet|preferred|loved +(noun)|favourite|choice|pick|selection +(noun)|darling|favourite|pet|dearie|deary|ducky|lover +(noun)|front-runner|favourite|rival|challenger|competitor|competition|contender +favorite son|1 +(noun)|favourite son|campaigner|candidate|nominee +favoritism|2 +(noun)|favouritism|inclination|disposition|tendency +(noun)|discrimination|favouritism|social control +favour|9 +(noun)|favor|approval +(noun)|favor|inclination|disposition|tendency +(noun)|favor|advantage|vantage +(noun)|party favor|party favour|favor|keepsake|souvenir|token|relic +(noun)|favor|kindness|benignity +(verb)|favor|spare|save +(verb)|privilege|favor|permit|allow|let|countenance +(verb)|prefer|favor|promote|upgrade|advance|kick upstairs|raise|elevate +(verb)|favor|see|consider|reckon|view|regard +favourable|4 +(adj)|favorable |approving|approbative|approbatory|plausive|indulgent|pleasing|affirmative|affirmatory|complimentary|good +(adj)|favorable |following|propitious +(adj)|favorable|opportune|convenient +(adj)|auspicious|encouraging|favorable|lucky|prosperous|propitious +favourable position|1 +(noun)|superiority|favorable position|advantage|vantage +favourable reception|1 +(noun)|approval|favorable reception|acceptance +favourableness|1 +(noun)|favorableness|advantageousness|advantage|vantage +favourably|1 +(adv)|favorably +favourite|5 +(adj)|favorite|popular +(adj)|favored|favorite|pet|preferred|loved +(noun)|front-runner|favorite|rival|challenger|competitor|competition|contender +(noun)|darling|favorite|pet|dearie|deary|ducky|lover +(noun)|favorite|choice|pick|selection +favourite son|1 +(noun)|favorite son|campaigner|candidate|nominee +favouritism|2 +(noun)|favoritism|inclination|disposition|tendency +(noun)|discrimination|favoritism|social control +favus|1 +(noun)|fungal infection|mycosis +fawkes|1 +(noun)|Fawkes|Guy Fawkes|conspirator|coconspirator|plotter|machinator +fawn|5 +(noun)|dun|grayish brown|greyish brown|light brown +(noun)|deer|cervid +(verb)|crawl|creep|cringe|cower|grovel|bend|flex +(verb)|toady|truckle|bootlick|kowtow|kotow|suck up|flatter|blandish +(verb)|litter +fawn lily|1 +(noun)|Erythronium californicum|dogtooth violet|dogtooth|dog's-tooth violet +fawner|1 +(noun)|apple polisher|bootlicker|groveller|groveler|truckler|ass-kisser|sycophant|toady|crawler|lackey +fawning|1 +(adj)|bootlicking|obsequious|sycophantic|toadyish|insincere +fax|2 +(noun)|facsimile|facsimile machine|duplicator|copier +(verb)|telefax|facsimile|telecommunicate +fayetteville|3 +(noun)|Fayetteville|town +(noun)|Fayetteville|town +(noun)|Fayetteville|town +faze|1 +(verb)|unnerve|enervate|unsettle|upset|discompose|untune|disconcert|discomfit +fazed|1 +(adj)|bothered|daunted|discomposed +fbi|1 +(noun)|Federal Bureau of Investigation|FBI|law enforcement agency +fbi agent|1 +(noun)|G-man|FBI agent|government man|government agent +fcc|1 +(noun)|Federal Communications Commission|FCC|independent agency +fcs|1 +(noun)|Farm Credit System|FCS|banking industry|banking system +fda|1 +(noun)|Food and Drug Administration|FDA|agency|federal agency|government agency|bureau|office|authority +fdic|1 +(noun)|Federal Deposit Insurance Corporation|FDIC|corporation|corp +fdr|1 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +fe|1 +(noun)|iron|Fe|atomic number 26|metallic element|metal +feabane mullet|1 +(noun)|fleabane|Pulicaria dysenterica|herb|herbaceous plant +fealty|1 +(noun)|allegiance|loyalty +fear|7 +(noun)|fearfulness|fright|emotion +(noun)|concern|care|anxiety +(noun)|reverence|awe|veneration|emotion +(verb)|worry +(verb)|dread +(verb)|regret +(verb)|reverence|revere|venerate|respect|esteem|value|prize|prise +fearful|5 +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearsome|frightening|horrendous|horrific|terrible|alarming +(adj)|cowardly |caitiff|chicken|chickenhearted|lily-livered|white-livered|yellow|yellow-bellied|dastard|dastardly|faint|fainthearted|timid|funky|poltroon|pusillanimous|poor-spirited|unmanly|craven|recreant|afraid|ignoble|timid +(adj)|frightful|terrible|bad +(adj)|timorous|trepid|timid +(adj)|afraid +fearfulness|2 +(noun)|fear|fright|emotion +(noun)|cowardice|cowardliness +fearless|4 +(adj)|unafraid |unapprehensive|unblinking|unflinching|unintimidated|unshrinking|unfrightened|bold|brave|courageous +(adj)|brave |courageous|desperate|heroic|gallant|game|gamy|gamey|gritty|mettlesome|spirited|spunky|lionhearted|stalwart|stouthearted|valiant|valorous|undaunted|adventurous|adventuresome|bold|resolute|unafraid +(adj)|doughty|hardy|manly |manful|manlike +(adj)|audacious|brave|dauntless|intrepid|unfearing|bold +fearlessly|1 +(adv)|dauntlessly|intrepidly +fearlessness|2 +(noun)|bravery|feeling +(noun)|courage|courageousness|bravery +fearsome|1 +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|frightening|horrendous|horrific|terrible|alarming +feasibility|1 +(noun)|feasibleness|practicability|practicableness +feasible|2 +(adj)|executable|practicable|viable|workable|possible +(adv)|practicably +feasibleness|1 +(noun)|feasibility|practicability|practicableness +feast|7 +(noun)|banquet|dinner|dinner party +(noun)|thing +(noun)|banquet|spread|meal|repast +(noun)|fete|fiesta|party +(verb)|banquet|junket|eat +(verb)|banquet|junket|host +(verb)|feed|regale|treat +feast day|1 +(noun)|fete day|holiday +feast of booths|1 +(noun)|Succos|Sukkoth|Feast of Booths|Feast of Tabernacles|Tabernacles|Jewish holy day +feast of dedication|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +feast of dormition|1 +(noun)|Dormition|Feast of Dormition|religious holiday|holy day +feast of lights|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +feast of sacrifice|1 +(noun)|Id al-Adha|Feast of Sacrifice|feast day|fete day +feast of tabernacles|1 +(noun)|Succos|Sukkoth|Feast of Booths|Feast of Tabernacles|Tabernacles|Jewish holy day +feast of the circumcision|1 +(noun)|Circumcision|Feast of the Circumcision|January 1|feast day|fete day +feast of the dedication|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +feast of the unleavened bread|1 +(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast|moveable feast +feast of weeks|1 +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +feast one's eyes|1 +(verb)|enjoy|bask|relish|savor|savour +feasting|1 +(noun)|banqueting|eating|feeding +feat|1 +(noun)|deed|effort|exploit|accomplishment|achievement +feather|7 +(noun)|plume|plumage|body covering|animal material +(noun)|feathering|rotation|rotary motion +(verb)|join|conjoin +(verb)|cover +(verb)|square|paddle +(verb)|square|row +(verb)|fledge|grow|develop|produce|get|acquire +feather-foil|2 +(noun)|featherfoil|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)| +feather ball|1 +(noun)|Mammillaria plumosa|cactus +feather bed|2 +(noun)|featherbed|mattress +(noun)| +feather boa|1 +(noun)|boa|scarf +feather geranium|1 +(noun)|Jerusalem oak|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot +feather one's nest|1 +(verb)|enrich +feather palm|1 +(noun)|palm|palm tree +feather reed grass|1 +(noun)|feathertop|Calamagrostis acutiflora|reed grass +feather star|1 +(noun)|comatulid|crinoid +featherbed|3 +(noun)|feather bed|mattress +(verb)|pamper|cosset|cocker|baby|coddle|mollycoddle|spoil|indulge|treat|handle|do by +(verb)|hire|engage|employ +featherbedding|1 +(noun)|practice|pattern +featherbrained|1 +(adj)|airheaded|dizzy|empty-headed|giddy|light-headed|lightheaded|silly|frivolous +feathered|2 +(adj)|feathery|plumy|adorned |decorated +(adj)|feathered |feathery|aftershafted|featherlike|feathery|fledged|vaned|flighted|pennate|plumaged|plumate|plumed|plumose|plumed|plumy|plumelike|plumy +featheredge|1 +(noun)|edge +featheredged|1 +(adj)|deckled|deckle-edged|bordered +featherfoil|1 +(noun)|feather-foil|aquatic plant|water plant|hydrophyte|hydrophytic plant +featheriness|1 +(noun)|downiness|fluffiness|softness +feathering|1 +(noun)|feather|rotation|rotary motion +featherless|1 +(adj)|unfeathered |plucked|unfledged|fledgeless|unvaned +featherlike|2 +(adj)|feathery|light +(adj)|feathery|feathered +feathertop|2 +(noun)|feathertop grass|Pennistum villosum|grass +(noun)|feather reed grass|Calamagrostis acutiflora|reed grass +feathertop grass|1 +(noun)|feathertop|Pennistum villosum|grass +featherweight|4 +(adj)|light +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +(noun)|prizefighter|gladiator +feathery|4 +(adj)|featherlike|light +(adj)|featherlike|feathered +(adj)|feathered +(adj)|feathered|plumy|adorned |decorated +feature|7 +(noun)|characteristic|property|attribute|dimension +(noun)|lineament|body part +(noun)|feature film|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +(noun)|feature article|article +(noun)|merchandise|wares|product +(verb)|have +(verb)|sport|boast|have +feature article|1 +(noun)|feature|article +feature film|1 +(noun)|feature|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +featured|2 +(adj)|conspicuous |obvious +(adj)|faced +featureless|1 +(adj)|plain +feb|1 +(noun)|February|Feb|Gregorian calendar month +feb 2|1 +(noun)|Candlemas|Candlemas Day|Feb 2|quarter day +febricity|1 +(noun)|fever|febrility|pyrexia|feverishness|symptom +febrifuge|1 +(noun)|antipyretic|medicine|medication|medicament|medicinal drug +febrile|1 +(adj)|febrile |feverish|symptom +febrility|1 +(noun)|fever|febricity|pyrexia|feverishness|symptom +february|1 +(noun)|February|Feb|Gregorian calendar month +february 12|1 +(noun)|Lincoln's Birthday|February 12|day +february 14|1 +(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day +february 2|1 +(noun)|Groundhog Day|February 2|day +february 22|1 +(noun)|Washington's Birthday|February 22|day +february 29|1 +(noun)|leap day|bissextile day|February 29|day +february daphne|1 +(noun)|mezereon|February daphne|Daphne mezereum|daphne +february revolution|1 +(noun)|Russian Revolution|February Revolution|revolution +fecal|1 +(adj)|faecal|feculent|dirty |soiled|unclean +fecal impaction|1 +(noun)|constipation|irregularity +fecal matter|1 +(noun)|faecal matter|feces|faeces|BM|stool|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +fecal occult test|1 +(noun)|faecal occult test|stool test|diagnostic test|diagnostic assay +fecalith|1 +(noun)|coprolith|faecalith|stercolith|mass +feces|1 +(noun)|fecal matter|faecal matter|faeces|BM|stool|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +fechner|1 +(noun)|Fechner|Gustav Theodor Fechner|physicist +fechner's law|1 +(noun)|Fechner's law|Weber-Fechner law|law|law of nature +feckless|2 +(adj)|irresponsible +(adj)|inept|incompetent +fecklessly|1 +(adv)|ineptly +fecklessness|1 +(noun)|worthlessness +fecula|1 +(noun)|body waste|excretion|excreta|excrement|excretory product +feculent|1 +(adj)|fecal|faecal|dirty |soiled|unclean +fecund|2 +(adj)|fertile +(adj)|fertile|prolific|productive +fecundate|2 +(verb)|fertilize|fertilise|change|alter|modify +(verb)|inseminate|fertilize|fertilise|change|alter|modify +fecundation|2 +(noun)|fertilization|fertilisation|impregnation|creation|conception +(noun)|fertilization|fertilisation|dressing|enrichment +fecundity|3 +(noun)|fruitfulness|creativity|creativeness|creative thinking +(noun)|fertility|physiological state|physiological condition +(noun)|fruitfulness|quality +fed|2 +(noun)|Federal|Fed|federal official|agent|federal agent +(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank +fed up|1 +(adj)|disgusted|sick|sick of|tired of|displeased +fedayeen|1 +(noun)|paramilitary|paramilitary force|paramilitary unit|paramilitary organization|paramilitary organisation +fedayeen saddam|1 +(noun)|Fedayeen Saddam|Saddam's Martyrs|paramilitary|paramilitary force|paramilitary unit|paramilitary organization|paramilitary organisation +fedelline|1 +(noun)|pasta|alimentary paste +federal|6 +(adj)|national +(adj)|government|authorities|regime +(adj)|Union|Federal|northern +(adj)|federal +(noun)|Federal|Federal soldier|Union soldier|Yankee|Yank|Northerner +(noun)|Federal|Fed|federal official|agent|federal agent +federal agency|1 +(noun)|agency|government agency|bureau|office|authority|administrative unit|administrative body +federal agent|1 +(noun)|agent|official|functionary +federal aviation agency|1 +(noun)|Federal Aviation Agency|FAA|agency|federal agency|government agency|bureau|office|authority +federal bureau of investigation|1 +(noun)|Federal Bureau of Investigation|FBI|law enforcement agency +federal bureau of prisons|1 +(noun)|Federal Bureau of Prisons|BoP|law enforcement agency +federal communications commission|1 +(noun)|Federal Communications Commission|FCC|independent agency +federal court|1 +(noun)|court|tribunal|judicature +federal deficit|1 +(noun)|budget deficit +federal democratic republic of ethiopia|1 +(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country|African nation +federal department|1 +(noun)|federal office|department of the federal government|government department +federal deposit insurance corporation|1 +(noun)|Federal Deposit Insurance Corporation|FDIC|corporation|corp +federal district|1 +(noun)|administrative district|administrative division|territorial division +federal emergency management agency|1 +(noun)|Federal Emergency Management Agency|FEMA|independent agency +federal government|1 +(noun)|government|authorities|regime +federal home loan bank system|1 +(noun)|Federal Home Loan Bank System|financial institution|financial organization|financial organisation +federal home loan mortgage corporation|1 +(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation|corp +federal housing administration|1 +(noun)|Federal Housing Administration|FHA|agency|federal agency|government agency|bureau|office|authority +federal islamic republic of the comoros|1 +(noun)|Comoros|Federal Islamic Republic of the Comoros|country|state|land +federal job safety law|1 +(noun)|occupational safety and health act|legislation|statute law +federal judiciary|1 +(noun)|Federal Judiciary|judiciary|judicature|judicatory|judicial system|law enforcement agency +federal law enforcement training center|1 +(noun)|Federal Law Enforcement Training Center|FLETC|law enforcement agency +federal national mortgage association|1 +(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation|corp +federal office|1 +(noun)|federal department|department of the federal government|government department +federal official|1 +(noun)|Federal|Fed|agent|federal agent +federal party|1 +(noun)|Federalist Party|American Federalist Party|Federal Party|party|political party +federal protective service|1 +(noun)|Federal Protective Service|FPS|independent agency +federal republic of germany|2 +(noun)|West Germany|Federal Republic of Germany|European country|European nation +(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country|European nation +federal republic of nigeria|1 +(noun)|Nigeria|Federal Republic of Nigeria|African country|African nation +federal republic of yugoslavia|1 +(noun)|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|Serbia and Montenegro|European country|European nation +federal reserve|1 +(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank +federal reserve bank|1 +(noun)|Federal Reserve Bank|reserve bank|depository financial institution|bank|banking concern|banking company +federal reserve board|1 +(noun)|Federal Reserve Board|board +federal reserve note|1 +(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +federal reserve system|1 +(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank +federal savings bank|1 +(noun)|FSB|savings bank +federal security bureau|1 +(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency +federal security service|1 +(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency +federal soldier|1 +(noun)|Federal|Federal soldier|Union soldier|Yankee|Yank|Northerner +federal tax lien|1 +(noun)|tax lien +federal trade commission|1 +(noun)|Federal Trade Commission|FTC|independent agency +federalisation|2 +(noun)|federalization|coalition|fusion +(noun)|federalization|control +federalise|3 +(verb)|federalize|decentralize|deconcentrate|decentralise +(verb)|federate|federalize|unify|unite|merge +(verb)|federate|federalize|unite|unify +federalism|1 +(noun)|political orientation|ideology|political theory +federalist|2 +(noun)|Federalist|politician|politico|pol|political leader +(noun)|advocate|advocator|proponent|exponent +federalist party|1 +(noun)|Federalist Party|American Federalist Party|Federal Party|party|political party +federalization|2 +(noun)|federalisation|coalition|fusion +(noun)|federalisation|control +federalize|3 +(verb)|federate|federalise|unite|unify +(verb)|federalise|decentralize|deconcentrate|decentralise +(verb)|federate|federalise|unify|unite|merge +federate|3 +(adj)|federated|united +(verb)|federalize|federalise|unify|unite|merge +(verb)|federalize|federalise|unite|unify +federated|1 +(adj)|federate|united +federated states of micronesia|1 +(noun)|Micronesia|Federated States of Micronesia|TT|country|state|land +federation|3 +(noun)|organization|organisation +(noun)|confederation|confederacy|union +(noun)|constitution|establishment|formation|organization|organisation +federation of saint kitts and nevis|1 +(noun)|Saint Kitts and Nevis|Federation of Saint Kitts and Nevis|Saint Christopher-Nevis|St. Christopher-Nevis|St. Kitts and Nevis|country|state|land +federation of tribes|1 +(noun)|tribe|nation +federative republic of brazil|1 +(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country|South American nation +federita|1 +(noun)|feterita|Sorghum vulgare caudatum|grain sorghum +fedora|1 +(noun)|felt hat|homburg|Stetson|trilby|hat|chapeau|lid +fee|3 +(noun)|fixed charge|fixed cost|fixed costs +(noun)|interest|stake +(verb)|tip|bung|give|gift|present +fee-tail|1 +(verb)|entail|bequeath|will|leave +fee simple|1 +(noun)|fee +fee splitting|1 +(noun)|payment|defrayal|defrayment +fee tail|1 +(noun)|fee +feeble|4 +(adj)|lame|weak +(adj)|faint|weak +(adj)|decrepit|debile|infirm|sapless|weak|weakly|frail +(adj)|nerveless|powerless |weak +feebleminded|2 +(adj)|backward|retarded +(adj)|half-witted|slow-witted|unintelligent |stupid +feeblemindedness|1 +(noun)|abnormality|mental defectiveness +feebleness|2 +(noun)|infirmity|frailty|debility|frailness|unfitness|poor shape|bad condition +(noun)|tenuity|weakness +feed|12 +(noun)|provender|food|nutrient +(verb)|provide|supply|ply|cater +(verb)|give|provide|supply|ply|cater +(verb)|supply|provide|render|furnish +(verb)|feed in|insert|enclose|inclose|stick in|put in|introduce +(verb)|promote|advance|boost|further|encourage +(verb)|eat|consume|ingest|take in|take|have +(verb)|provide|supply|ply|cater +(verb)|run|flow|course|move +(verb)|prey|exploit|work +(verb)|feast|regale|treat +(verb)|fertilize|fertilise|enrich +feed back|2 +(verb)|resubmit|render|return +(verb)|propose|suggest|advise +feed bunk|1 +(noun)|bunk|manger|trough +feed grain|1 +(noun)|feed|provender +feed in|1 +(verb)|feed|insert|enclose|inclose|stick in|put in|introduce +feed on|1 +(verb)|feed upon|meet|satisfy|fill|fulfill|fulfil +feed upon|1 +(verb)|feed on|meet|satisfy|fill|fulfill|fulfil +feedback|2 +(noun)|natural process|natural action|action|activity +(noun)|answer|reply|response +feedback circuit|1 +(noun)|feedback loop|circuit|electrical circuit|electric circuit +feedback loop|1 +(noun)|feedback circuit|circuit|electrical circuit|electric circuit +feedbag|1 +(noun)|nosebag|bag +feeder|4 +(noun)|domestic animal +(noun)|eater|consumer +(noun)|tributary|affluent|branch +(noun)|self-feeder|machine +feeder line|1 +(noun)|path|route|itinerary +feeding|2 +(noun)|eating|consumption|ingestion|intake|uptake +(noun)|alimentation|provision|supply|supplying +feeding bottle|1 +(noun)|nursing bottle|bottle +feeding chair|1 +(noun)|highchair|chair +feedlot|1 +(noun)|building|edifice +feel|17 +(noun)|awareness|consciousness|cognizance|cognisance|knowingness +(noun)|spirit|tone|feeling|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|tactile property|property +(noun)|foreplay|arousal|stimulation +(verb)|experience|feel for +(verb)|find|reason|reason out|conclude +(verb)|sense|perceive|comprehend +(verb)|be +(verb)|think|believe|consider|conceive +(verb)|experience|undergo|see|go through +(verb)|look|appear|seem +(verb)|search|seek|look for +(verb)|finger +(verb)|palpate|touch +(verb)|find|regain +(verb)|look|appear|seem +(verb)|touch +feel for|1 +(verb)|pity|compassionate|condole with|sympathize with|grieve|sorrow +feel like|1 +(verb)|desire|want +feel like a million|1 +(verb)|feel like a million dollars|feel +feel like a million dollars|1 +(verb)|feel like a million|feel +feel out|1 +(verb)|check out|sound out|question|query +feeler|4 +(noun)|antenna|tentacle +(noun)|overture|advance|approach|suggestion|proposition|proffer +(noun)|antenna|sensitivity|sensitiveness +(noun)|barbel|tentacle +feeling|6 +(noun)|psychological feature +(noun)|impression|belief|notion|opinion|idea|thought +(noun)|spirit|tone|feel|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|somesthesia|somaesthesia|somatesthesia|somatic sensation +(noun)|touch|touch sensation|tactual sensation|tactile sensation|perception +(noun)|intuitive feeling|intuition +feeling of movement|1 +(noun)|kinesthesia|kinaesthesia|somatosense|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +feelings|7 +(noun)|sensitivity|sensitiveness +(noun)|feeling|psychological feature +(noun)|impression|feeling|belief|notion|opinion|idea|thought +(noun)|spirit|tone|feel|feeling|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|feeling|somesthesia|somaesthesia|somatesthesia|somatic sensation +(noun)|touch|touch sensation|tactual sensation|tactile sensation|feeling|perception +(noun)|feeling|intuitive feeling|intuition +fehling's solution|1 +(noun)|Fehling's solution|solution +feifer|1 +(noun)|Feifer|Jules Feifer|cartoonist +feign|2 +(verb)|sham|pretend|affect|dissemble|misrepresent|belie +(verb)|simulate|assume|sham|dissemble|pretend|act +feigned|1 +(adj)|insincere +feigning|2 +(noun)|pretense|pretence|dissembling|misrepresentation|deceit|deception +(noun)|pretense|pretence|pretending|simulation|deception|deceit|dissembling|dissimulation +feijoa|2 +(noun)|feijoa bush|shrub|bush +(noun)|pineapple guava|edible fruit +feijoa bush|1 +(noun)|feijoa|shrub|bush +feint|2 +(noun)|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(verb)|simulate|assume|sham|feign +feist|1 +(noun)|fice|cur|mongrel|mutt +feisty|2 +(adj)|plucky|spunky|spirited +(adj)|touchy|ill-natured +felafel|1 +(noun)|falafel|dish +feldene|1 +(noun)|piroxicam|Feldene|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +feldspar|1 +(noun)|felspar|spar +felicia|1 +(noun)|Felicia|genus Felicia|asterid dicot genus +felicia amelloides|1 +(noun)|blue daisy|blue marguerite|Felicia amelloides|flower +felicia bergeriana|1 +(noun)|kingfisher daisy|Felicia bergeriana|flower +felicitate|1 +(verb)|congratulate|wish|bid +felicitation|2 +(noun)|congratulation|expression +(noun)|congratulation|speech act +felicitous|2 +(adj)|felicitous |congratulatory|gratulatory|happy|well-chosen|well-turned|well-wishing|happy +(adj)|happy|fortunate +felicitousness|1 +(noun)|felicity|appropriateness +felicity|2 +(noun)|felicitousness|appropriateness +(noun)|happiness|emotional state|spirit +felid|1 +(noun)|feline|carnivore +felidae|1 +(noun)|Felidae|family Felidae|mammal family +feline|2 +(adj)|felid +(noun)|felid|carnivore +felis|1 +(noun)|Felis|genus Felis|mammal genus +felis bengalensis|1 +(noun)|leopard cat|Felis bengalensis|wildcat +felis catus|1 +(noun)|domestic cat|house cat|Felis domesticus|Felis catus|cat|true cat +felis chaus|1 +(noun)|jungle cat|Felis chaus|wildcat +felis concolor|1 +(noun)|cougar|puma|catamount|mountain lion|painter|panther|Felis concolor|wildcat +felis domesticus|1 +(noun)|domestic cat|house cat|Felis domesticus|Felis catus|cat|true cat +felis manul|1 +(noun)|manul|Pallas's cat|Felis manul|wildcat +felis ocreata|1 +(noun)|kaffir cat|caffer cat|Felis ocreata|wildcat +felis onca|1 +(noun)|jaguar|panther|Panthera onca|Felis onca|big cat|cat +felis pardalis|1 +(noun)|ocelot|panther cat|Felis pardalis|wildcat +felis serval|1 +(noun)|serval|Felis serval|wildcat +felis silvestris|1 +(noun)|European wildcat|catamountain|Felis silvestris|wildcat +felis tigrina|1 +(noun)|tiger cat|Felis tigrina|wildcat +felis wiedi|1 +(noun)|margay|margay cat|Felis wiedi|wildcat +felis yagouaroundi|1 +(noun)|jaguarundi|jaguarundi cat|jaguarondi|eyra|Felis yagouaroundi|wildcat +felix klein|1 +(noun)|Klein|Felix Klein|mathematician +felix mendelssohn|1 +(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer +feliz lusitania|1 +(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city|metropolis|urban center|port +fell|39 +(adj)|barbarous|brutal|cruel|roughshod|savage|vicious|inhumane +(noun)|hide|animal skin +(noun)|felled seam|seam +(noun)|killing|kill|putting to death +(verb)|drop|strike down|cut down|cut +(verb)|fly|vanish|elapse|lapse|pass|slip by|glide by|slip away|go by|slide by|go along +(verb)|sew|run up|sew together|stitch +(verb)|fall|travel|go|move|locomote +(verb)|descend|fall|go down|come down|travel|go|move|locomote|fall in +(verb)|fall|change state|turn|fall for|fall through|fall flat|founder|flop|lag|dawdle|fall back|fall behind|break|separate|split up|fall apart|come apart|crumble|fall apart|slip|drop off|drop away|fall away|fall back|lose|drop off|fall behind|recede +(verb)|fall|come|be +(verb)|precipitate|come down|fall +(verb)|fall|fail|go wrong|miscarry +(verb)|decrease|diminish|lessen|fall|change magnitude +(verb)|fall|die|decease|perish|go|exit|pass away|expire|pass +(verb)|fall|shine|strike|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|fall|yield +(verb)|fall|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|fall|fall|sin|transgress|trespass +(verb)|fall|leave office|quit|step down|resign +(verb)|fall +(verb)|fall|travel|go|move|locomote +(verb)|fall|be +(verb)|fall +(verb)|fall +(verb)|accrue|fall|change hands +(verb)|fall|light|fall|return|pass|devolve +(verb)|fall|return|pass|devolve|change hands +(verb)|fall|slope|incline|pitch +(verb)|fall|fall down|change posture +(verb)|fall|change posture +(verb)|hang|fall|flow +(verb)|fall|change +(verb)|fall|change +(verb)|fall|issue|emerge|come out|come forth|go forth|egress +(verb)|fall|be born +(verb)|fall|get down|begin|get|start out|start|set about|set out|commence +(verb)|fall|disappear|vanish|go away +(verb)|fall|descend|settle|come +fella|1 +(noun)|chap|fellow|feller|lad|gent|blighter|cuss|male|male person +fellah|1 +(noun)|peasant +fellata|1 +(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African +fellate|1 +(verb)|blow|go down on|stimulate|excite|stir +fellatio|1 +(noun)|fellation|oral sex|head +fellation|1 +(noun)|fellatio|oral sex|head +felled|1 +(adj)|felled |downed|cut|cut down|down|hewn +felled seam|1 +(noun)|fell|seam +feller|2 +(noun)|lumberman|lumberjack|faller|laborer|manual laborer|labourer|jack +(noun)|chap|fellow|lad|gent|fella|blighter|cuss|male|male person +felloe|1 +(noun)|felly|rim +fellow|5 +(noun)|chap|feller|lad|gent|fella|blighter|cuss|male|male person +(noun)|companion|comrade|familiar|associate|friend +(noun)|colleague|confrere|associate +(noun)|buster|man|adult male +(noun)|boyfriend|beau|swain|young man|man|adult male|lover +fellow feeling|1 +(noun)|sympathy|feeling +fellow traveler|2 +(noun)|fellow traveller|sympathizer|sympathiser|well-wisher +(noun)|companion|fellow traveller|traveler|traveller +fellow traveller|2 +(noun)|fellow traveler|sympathizer|sympathiser|well-wisher +(noun)|companion|fellow traveler|traveler|traveller +fellow worker|1 +(noun)|colleague|co-worker|workfellow|associate +fellowship|3 +(noun)|family|association +(noun)|company|companionship|society|friendship|friendly relationship +(noun)|aid|economic aid|prize|award +felly|1 +(noun)|felloe|rim +felo-de-se|2 +(noun)|suicide|killer|slayer +(noun)|suicide|self-destruction|self-annihilation +felon|2 +(noun)|criminal|crook|outlaw|malefactor|wrongdoer|offender +(noun)|whitlow|infection +felonious|1 +(adj)|criminal|illegal +felony|1 +(noun)|crime|law-breaking +felspar|1 +(noun)|feldspar|spar +felt|20 +(noun)|fabric|cloth|material|textile +(verb)|entangle|tangle|mat|snarl +(verb)|cover +(verb)|felt up|mat up|matt-up|matte up|matte|mat|change +(verb)|feel|experience|feel for +(verb)|find|feel|reason|reason out|conclude +(verb)|feel|sense|perceive|comprehend +(verb)|feel|be +(verb)|feel|think|believe|consider|conceive +(verb)|feel|experience|undergo|see|go through +(verb)|feel|look|appear|seem +(verb)|feel|search|seek|look for +(verb)|feel|finger +(verb)|palpate|feel|touch +(verb)|feel|find|regain +(verb)|feel|look|appear|seem +(verb)|feel|touch +(verb)|entangle|tangle|mat|snarl +(verb)|cover +(verb)|felt up|mat up|matt-up|matte up|matte|mat|change +felt-tip pen|1 +(noun)|felt-tipped pen|felt tip|Magic Marker|pen +felt-tipped pen|1 +(noun)|felt-tip pen|felt tip|Magic Marker|pen +felt fern|1 +(noun)|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern +felt fungus|1 +(noun)|Septobasidium pseudopedicellatum|fungus +felt hat|1 +(noun)|fedora|homburg|Stetson|trilby|hat|chapeau|lid +felt tip|1 +(noun)|felt-tip pen|felt-tipped pen|Magic Marker|pen +felt up|1 +(verb)|felt|mat up|matt-up|matte up|matte|mat|change +felted|1 +(adj)|unwoven +felucca|1 +(noun)|sailing vessel|sailing ship +felwort|1 +(noun)|gentianella amarella|gentian +fema|1 +(noun)|Federal Emergency Management Agency|FEMA|independent agency +female|5 +(adj)|female |egg-producing|young-bearing|pistillate|feminine +(adj)|distaff|feminine +(adj)|feminine +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|female person|person|individual|someone|somebody|mortal|human|soul +female aristocrat|1 +(noun)|aristocrat|blue blood|patrician +female body|1 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh +female bonding|1 +(noun)|bonding +female chest|1 +(noun)|thorax|chest|pectus +female child|1 +(noun)|girl|little girl|female|female person +female circumcision|1 +(noun)|clitoridectomy|ablation|extirpation|cutting out|excision +female genital organ|1 +(noun)|female genitalia|female genitals|fanny|genitalia|genital organ|genitals|private parts|privates|crotch +female genitalia|1 +(noun)|female genitals|female genital organ|fanny|genitalia|genital organ|genitals|private parts|privates|crotch +female genitals|1 +(noun)|female genitalia|female genital organ|fanny|genitalia|genital organ|genitals|private parts|privates|crotch +female horse|1 +(noun)|mare|horse|Equus caballus +female internal reproductive organ|1 +(noun)|reproductive organ|sex organ +female mammal|1 +(noun)|mammal +female monarch|1 +(noun)|queen|queen regnant|female aristocrat +female offspring|1 +(noun)|child|kid|female|female person +female parent|1 +(noun)|mother|parent +female person|1 +(noun)|female|person|individual|someone|somebody|mortal|human|soul +female reproductive system|1 +(noun)|reproductive system|genital system +female sibling|1 +(noun)|kinswoman +femaleness|1 +(noun)|feminineness|sex|gender|sexuality +feminine|5 +(adj)|feminine |fair|female|female|distaff|maidenlike|maidenly|powder-puff|female +(adj)|feminine +(adj)|womanly |matronly|womanlike +(adj)|unstressed |unaccented +(noun)|gender|grammatical gender +feminineness|1 +(noun)|femaleness|sex|gender|sexuality +femininity|1 +(noun)|muliebrity|trait +feminisation|1 +(noun)|feminization|pathologic process|pathological process +feminise|2 +(verb)|feminize|change +(verb)|feminize|effeminize|erreminise|womanize|change|alter|modify +feminism|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|feminist movement|women's liberation movement|women's lib|campaign|cause|crusade|drive|movement|effort +feminist|2 +(adj)|campaign|cause|crusade|drive|movement|effort +(noun)|women's rightist|women's liberationist|libber|reformer|reformist|crusader|meliorist +feminist movement|1 +(noun)|feminism|women's liberation movement|women's lib|campaign|cause|crusade|drive|movement|effort +feminization|1 +(noun)|feminisation|pathologic process|pathological process +feminize|2 +(verb)|feminise|change +(verb)|feminise|effeminize|erreminise|womanize|change|alter|modify +femme fatale|1 +(noun)|enchantress|temptress|siren|Delilah|woman|adult female +femoral|1 +(adj)|leg bone|limb +femoral artery|1 +(noun)|arteria femoralis|artery|arteria|arterial blood vessel +femoral biceps|1 +(noun)|musculus biceps femoris|biceps +femoral nerve|1 +(noun)|nervus femoralis|anterior crural nerve|spinal nerve|nervus spinalis +femoral pulse|1 +(noun)|pulse|pulse rate|heart rate +femoral vein|1 +(noun)|vena femoralis|vein|vena|venous blood vessel +femoris|1 +(noun)|femur|thighbone|leg bone +femtochemistry|1 +(noun)|chemistry|chemical science +femtometer|1 +(noun)|femtometre|fermi|metric linear unit +femtometre|1 +(noun)|femtometer|fermi|metric linear unit +femtosecond|1 +(noun)|time unit|unit of time +femtovolt|1 +(noun)|potential unit +femur|1 +(noun)|thighbone|femoris|leg bone +fen|2 +(noun)|Chinese monetary unit +(noun)|marsh|marshland|fenland|wetland +fen orchid|1 +(noun)|fen orchis|Liparis loeselii|orchid|orchidaceous plant +fen orchis|1 +(noun)|fen orchid|Liparis loeselii|orchid|orchidaceous plant +fence|7 +(noun)|fencing|barrier +(noun)|trader|bargainer|dealer|monger +(verb)|fence in|enclose|inclose|shut in +(verb)|receive|have +(verb)|fight|struggle +(verb)|wall|palisade|fence in|surround|protect +(verb)|argue|contend|debate|converse|discourse +fence-sitter|2 +(noun)|neutral +(noun)|mugwump|independent|fencesitter|individualist +fence in|2 +(verb)|fence|enclose|inclose|shut in +(verb)|wall|palisade|fence|surround|protect +fence line|1 +(noun)|boundary line|border|borderline|delimitation|mete +fence lizard|1 +(noun)|spiny lizard +fence mending|1 +(noun)|social action +fence rail|1 +(noun)|split rail|rail +fenced|1 +(adj)|enclosed +fenced in|1 +(adj)|confined|penned|enclosed +fenceless|1 +(adj)|unfenced|unenclosed +fencelike|1 +(adj)|enclosed +fencer|1 +(noun)|swordsman|combatant|battler|belligerent|fighter|scrapper +fencer's mask|1 +(noun)|fencing mask|face mask +fencesitter|1 +(noun)|mugwump|independent|individualist +fencing|3 +(noun)|fence|barrier +(noun)|fencing material|building material +(noun)|fight|fighting|combat|scrap|play|swordplay +fencing mask|1 +(noun)|fencer's mask|face mask +fencing material|1 +(noun)|fencing|building material +fencing stick|1 +(noun)|singlestick|backsword|stick +fencing sword|1 +(noun)|sword|blade|brand|steel +fend|2 +(verb)|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|resist|stand|fight|oppose|fight back|fight down|defend +fend for|1 +(verb)|defend|support|argue|reason +fend off|1 +(verb)|debar|obviate|deflect|avert|head off|stave off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +fender|4 +(noun)|wing|barrier +(noun)|buffer|cowcatcher|pilot|framework|frame|framing +(noun)|guard|safety|safety device +(noun)|buffer|device +fender-bender|1 +(noun)|collision +fenestella|1 +(noun)|lunette|opening +fenestra|1 +(noun)|orifice|opening|porta +fenestra cochleae|1 +(noun)|fenestra rotunda|round window|fenestra of the cochlea|fenestra +fenestra of the cochlea|1 +(noun)|fenestra rotunda|fenestra cochleae|round window|fenestra +fenestra of the vestibule|1 +(noun)|fenestra ovalis|fenestra vestibuli|oval window|fenestra +fenestra ovalis|1 +(noun)|fenestra vestibuli|oval window|fenestra of the vestibule|fenestra +fenestra rotunda|1 +(noun)|fenestra cochleae|round window|fenestra of the cochlea|fenestra +fenestra vestibuli|1 +(noun)|fenestra ovalis|oval window|fenestra of the vestibule|fenestra +fenestral|2 +(adj)|orifice|opening|porta +(adj)|framework|frame|framing +fenestration|2 +(noun)|placement|arrangement +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +feng shui|1 +(noun)|principle|rule +fengtien|1 +(noun)|Shenyang|Mukden|Moukden|Fengtien|city|metropolis|urban center +fenland|1 +(noun)|marsh|marshland|fen|wetland +fennel|3 +(noun)|herb|herbaceous plant +(noun)|Florence fennel|finocchio|vegetable|veggie +(noun)|common fennel|herb +fennel flower|1 +(noun)|Nigella hispanica|nigella +fennel seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +fennic|1 +(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric|Finno-Ugrian +fenoprofen|1 +(noun)|fenoprofen calcium|Nalfon|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +fenoprofen calcium|1 +(noun)|fenoprofen|Nalfon|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +fenrir|1 +(noun)|Fenrir|mythical being +fentanyl|1 +(noun)|Fentanyl|Sublimaze|opiate|analgesic|anodyne|painkiller|pain pill +fenugreek|2 +(noun)|Greek clover|Trigonella foenumgraecum|herb|herbaceous plant +(noun)|fenugreek seed|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +fenugreek seed|1 +(noun)|fenugreek|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +fenusa|1 +(noun)|Fenusa|genus-Fenusa|arthropod genus +fenusa pusilla|1 +(noun)|birch leaf miner|Fenusa pusilla|sawfly +feodor dostoevski|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feodor dostoevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feodor dostoyevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feodor mikhailovich dostoevski|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feodor mikhailovich dostoevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feodor mikhailovich dostoyevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +feoff|1 +(noun)|fief|estate|land|landed estate|acres|demesne +feosol|1 +(noun)|Feosol|drug +fer-de-lance|1 +(noun)|Bothrops atrops|pit viper +feral|1 +(adj)|ferine|savage|wild |untamed +feral man|1 +(noun)|wild man|primitive|primitive person +ferber|1 +(noun)|Ferber|Edna Ferber|writer|author +ferdinand and isabella|1 +(noun)|Ferdinand and Isabella|nobility|aristocracy +ferdinand de lesseps|1 +(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat|diplomatist +ferdinand de saussure|1 +(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist|polyglot +ferdinand i|2 +(noun)|Ferdinand I|Holy Roman Emperor +(noun)|Ferdinand I|Ferdinand the Great|king|male monarch +ferdinand ii|1 +(noun)|Ferdinand II|Holy Roman Emperor +ferdinand iii|1 +(noun)|Ferdinand III|Holy Roman Emperor +ferdinand joseph la menthe morton|1 +(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician|jazzman +ferdinand julius cohn|1 +(noun)|Cohn|Ferdinand Julius Cohn|botanist|phytologist|plant scientist +ferdinand magellan|1 +(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator +ferdinand the catholic|1 +(noun)|Ferdinand V|Ferdinand the Catholic|king|male monarch +ferdinand the great|1 +(noun)|Ferdinand I|Ferdinand the Great|king|male monarch +ferdinand v|1 +(noun)|Ferdinand V|Ferdinand the Catholic|king|male monarch +ferdinand victor eugene delacroix|1 +(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter +fere phenomenon|1 +(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +ferenc molnar|1 +(noun)|Molnar|Ferenc Molnar|dramatist|playwright +fergon|1 +(noun)|Fergon|drug +fergusonite|1 +(noun)|mineral +feria|2 +(noun)|weekday +(noun)|celebration|festivity +ferial|1 +(adj)|weekday +ferine|1 +(adj)|feral|savage|wild |untamed +fermat|1 +(noun)|Fermat|Pierre de Fermat|mathematician +ferment|8 +(noun)|agitation|fermentation|unrest|turbulence|upheaval|Sturm und Drang +(noun)|substance|matter +(noun)|zymosis|zymolysis|fermentation|fermenting|chemical process|chemical change|chemical action +(noun)|fermentation|chemical phenomenon +(verb)|seethe|boil +(verb)|inflame|stir up|wake|ignite|heat|fire up +(verb)|work|convert +(verb)|sour|turn|work|change state|turn +fermentable|1 +(adj)|possible +fermentation|3 +(noun)|zymosis|zymolysis|fermenting|ferment|chemical process|chemical change|chemical action +(noun)|agitation|ferment|unrest|turbulence|upheaval|Sturm und Drang +(noun)|ferment|chemical phenomenon +fermentation alcohol|1 +(noun)|ethyl alcohol|ethanol|grain alcohol|alcohol|plant product +fermented|1 +(adj)|hard|soured +fermenting|1 +(noun)|zymosis|zymolysis|fermentation|ferment|chemical process|chemical change|chemical action +fermentologist|1 +(noun)|enologist|oenologist|specialist|specializer|specialiser +fermi|2 +(noun)|femtometer|femtometre|metric linear unit +(noun)|Fermi|Enrico Fermi|nuclear physicist +fermi-dirac statistics|1 +(noun)|Fermi-Dirac statistics|law|law of nature +fermion|1 +(noun)|particle +fermium|1 +(noun)|Fm|atomic number 100|metallic element|metal +fern|1 +(noun)|pteridophyte|nonflowering plant +fern ally|1 +(noun)|pteridophyte|nonflowering plant +fern family|1 +(noun)|family +fern genus|1 +(noun)|genus +fern palm|1 +(noun)|false sago|Cycas circinalis|sago palm|Cycas revoluta +fern rhapis|1 +(noun)|miniature fan palm|bamboo palm|Rhapis excelsa|lady palm +fern seed|1 +(noun)|spore +fernand leger|1 +(noun)|Leger|Fernand Leger|painter +fernao magalhaes|1 +(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator +ferned|1 +(adj)|ferned |ferny|braky|fernlike|ferny +fernless|1 +(adj)|fernless +fernlike|1 +(adj)|ferny|ferned |ferny +ferny|2 +(adj)|ferned |braky|fernlike +(adj)|fernlike|ferned +ferocactus|1 +(noun)|Ferocactus|genus Ferocactus|caryophylloid dicot genus +ferocious|1 +(adj)|fierce|furious|savage|violent +ferociously|1 +(adv)|fiercely +ferociousness|1 +(noun)|brutality|viciousness|savageness|savagery|cruelty|cruelness|harshness +ferocity|1 +(noun)|fierceness|furiousness|fury|vehemence|violence|wildness|intensity|intensiveness +ferret|5 +(noun)|black-footed ferret|Mustela nigripes|musteline mammal|mustelid|musteline +(noun)|polecat|fitch|foulmart|foumart|Mustela putorius +(verb)|hound|hunt|trace +(verb)|hunt|run|hunt down|track down +(verb)|ferret out|discover|find +ferret badger|1 +(noun)|badger +ferret out|1 +(verb)|ferret|discover|find +ferric|1 +(adj)|ferrous|metallic element|metal +ferric oxide|1 +(noun)|oxide +ferricyanic acid|1 +(noun)|acid +ferricyanide|1 +(noun)|salt +ferrimagnetism|1 +(noun)|antiferromagnetism +ferris wheel|1 +(noun)|Ferris wheel|rotating mechanism|ride +ferrite|1 +(noun)|solid solution|primary solid solution +ferritin|1 +(noun)|protein +ferrocerium|1 +(noun)|pyrophoric alloy +ferroconcrete|1 +(noun)|reinforced concrete|concrete +ferrocyanic acid|1 +(noun)|acid +ferrocyanide|1 +(noun)|salt +ferromagnetic|1 +(adj)|magnetism|magnetic attraction|magnetic force +ferromagnetism|1 +(noun)|magnetism|magnetic attraction|magnetic force +ferrous|1 +(adj)|ferric|metallic element|metal +ferrule|1 +(noun)|collet|cap +ferry|5 +(noun)|ferryboat|boat +(noun)|ferrying|transportation|shipping|transport +(verb)|bring|convey|take +(verb)|transport +(verb)|travel|go|move|locomote +ferryboat|1 +(noun)|ferry|boat +ferrying|1 +(noun)|ferry|transportation|shipping|transport +ferryman|1 +(noun)|boatman|boater|waterman +fertile|4 +(adj)|fertile |fecund|fertilized|fertilised|impregnated|inseminated|rank|conceptive|fertilizable|conceptive|fruitful|potent|strong|productive +(adj)|fecund|prolific|productive +(adj)|prolific|fruitful +(adj)|fat|productive|rich|fruitful +fertile crescent|1 +(noun)|Fertile Crescent|geographical area|geographic area|geographical region|geographic region +fertile period|1 +(noun)|fertile phase|phase|stage +fertile phase|1 +(noun)|fertile period|phase|stage +fertilisation|2 +(noun)|fertilization|fecundation|impregnation|creation|conception +(noun)|fertilization|fecundation|dressing|enrichment +fertilise|3 +(verb)|fertilize|fecundate|change|alter|modify +(verb)|fertilize|feed|enrich +(verb)|inseminate|fecundate|fertilize|change|alter|modify +fertilised|1 +(adj)|fertilized|impregnated|inseminated|fertile +fertiliser|1 +(noun)|fertilizer|plant food|chemical +fertility|3 +(noun)|birthrate|birth rate|fertility rate|natality|rate +(noun)|fecundity|physiological state|physiological condition +(noun)|richness|prolificacy|fruitfulness|fecundity +fertility drug|1 +(noun)|drug +fertility rate|1 +(noun)|birthrate|birth rate|fertility|natality|rate +fertilizable|1 +(adj)|fertile +fertilization|2 +(noun)|fertilisation|fecundation|impregnation|creation|conception +(noun)|fertilisation|fecundation|dressing|enrichment +fertilization age|1 +(noun)|fetal age|gestational age|age +fertilization membrane|1 +(noun)|membrane|tissue layer +fertilize|3 +(verb)|fertilise|feed|enrich +(verb)|fecundate|fertilise|change|alter|modify +(verb)|inseminate|fecundate|fertilise|change|alter|modify +fertilized|1 +(adj)|fertilised|impregnated|inseminated|fertile +fertilized egg|1 +(noun)|embryo|conceptus|animal|animate being|beast|brute|creature|fauna +fertilized ovum|1 +(noun)|zygote|cell +fertilizer|1 +(noun)|fertiliser|plant food|chemical +ferule|1 +(noun)|switch +fervency|1 +(noun)|ardor|ardour|fervor|fervour|fire|fervidness|passion|passionateness +fervent|3 +(adj)|ardent|burning|fervid|fiery|impassioned|perfervid|torrid|passionate +(adj)|cordial|sincere +(adj)|fervid|hot +fervently|1 +(adv)|fierily|fervidly +fervid|2 +(adj)|ardent|burning|fervent|fiery|impassioned|perfervid|torrid|passionate +(adj)|fervent|hot +fervidly|1 +(adv)|fierily|fervently +fervidness|1 +(noun)|ardor|ardour|fervor|fervour|fervency|fire|passion|passionateness +fervor|2 +(noun)|ardor|ardour|fervour|fervency|fire|fervidness|passion|passionateness +(noun)|excitement|excitation|inflammation|fervour|emotional arousal +fervour|2 +(noun)|excitement|excitation|inflammation|fervor|emotional arousal +(noun)|ardor|ardour|fervor|fervency|fire|fervidness|passion|passionateness +fes|2 +(noun)|Fez|Fes|city|metropolis|urban center +(noun)|iron|Fe|atomic number 26|metallic element|metal +fescue|1 +(noun)|fescue grass|meadow fescue|Festuca elatior|grass +fescue grass|1 +(noun)|fescue|meadow fescue|Festuca elatior|grass +fess|1 +(noun)|fesse|ordinary +fesse|1 +(noun)|fess|ordinary +festal|1 +(adj)|gala|gay|festive|merry|joyous +fester|2 +(noun)|suppurating sore|sore +(verb)|maturate|suppurate|discharge|expel|eject|release +festering|2 +(noun)|suppuration|maturation|bodily process|body process|bodily function|activity +(noun)|pus|purulence|suppuration|ichor|sanies|liquid body substance|bodily fluid|body fluid|humor|humour +festinate|1 +(verb)|rush|hasten|hurry|look sharp|act|move +festination|1 +(noun)|symptom +festival|2 +(noun)|time period|period of time|period +(noun)|fete|celebration|festivity +festival of lights|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +festive|1 +(adj)|gala|gay|festal|merry|joyous +festivity|1 +(noun)|celebration|diversion|recreation +festoon|4 +(noun)|curtain|drape|drapery|mantle|pall +(noun)|embellishment +(noun)|festoonery|flower chain +(verb)|decorate|adorn|grace|ornament|embellish|beautify +festoonery|1 +(noun)|festoon|flower chain +festuca|1 +(noun)|Festuca|genus Festuca|monocot genus|liliopsid genus +festuca elatior|1 +(noun)|fescue|fescue grass|meadow fescue|Festuca elatior|grass +festuca ovina|1 +(noun)|sheep fescue|sheep's fescue|Festuca ovina|grass +fet|1 +(noun)|field-effect transistor|FET|transistor|junction transistor|electronic transistor +fetal|1 +(adj)|foetal|vertebrate|craniate +fetal age|1 +(noun)|fertilization age|gestational age|age +fetal alcohol syndrome|1 +(noun)|syndrome +fetal circulation|1 +(noun)|foetal circulation|circulatory system|cardiovascular system +fetal distress|1 +(noun)|foetal distress|abnormality|abnormalcy|abnormal condition +fetal membrane|1 +(noun)|membrane|tissue layer +fetal monitor|1 +(noun)|electronic fetal monitor|electronic foetal monitor|foetal monitor|monitor +fetal movement|1 +(noun)|foetal movement|motion|movement|move|motility +fetch|3 +(verb)|bring|get|convey|transmit|transfer|transport|channel|channelize|channelise +(verb)|bring in|bring +(verb)|bring|convey|take +fetch up|1 +(verb)|finish up|land up|end up|wind up|finish|act|move +fetching|1 +(adj)|taking|winning|attractive +fete|3 +(noun)|feast|fiesta|party +(noun)|festival|celebration|festivity +(verb)|celebrate|meet|get together +fete champetre|1 +(noun)|garden party|lawn party|party +fete day|1 +(noun)|feast day|holiday +feterita|1 +(noun)|federita|Sorghum vulgare caudatum|grain sorghum +fetich|2 +(noun)|juju|voodoo|hoodoo|fetish|charm|good luck charm +(noun)|fetish|devotion +fetichism|2 +(noun)|fetishism|belief +(noun)|fetishism|paraphilia +feticide|1 +(noun)|aborticide|induced abortion +fetid|1 +(adj)|foetid|foul|foul-smelling|funky|noisome|smelly|putrid|stinking|malodorous |malodourous +fetid bugbane|1 +(noun)|foetid bugbane|Cimicifuga foetida|bugbane +fetid horehound|1 +(noun)|black horehound|black archangel|stinking horehound|Ballota nigra|herb|herbaceous plant +fetish|2 +(noun)|juju|voodoo|hoodoo|fetich|charm|good luck charm +(noun)|fetich|devotion +fetishism|2 +(noun)|fetichism|belief +(noun)|fetichism|paraphilia +fetishist|1 +(noun)|pervert|deviant|deviate|degenerate +fetlock|2 +(noun)|fetlock joint|joint|articulation|articulatio +(noun)|process|outgrowth|appendage +fetlock joint|1 +(noun)|fetlock|joint|articulation|articulatio +fetology|1 +(noun)|foetology|obstetrics|OB|tocology|midwifery +fetometry|1 +(noun)|foetometry|measurement|measuring|measure|mensuration +fetoprotein|1 +(noun)|foetoprotein|antigen +fetor|1 +(noun)|malodor|malodour|stench|stink|reek|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +fetoscope|1 +(noun)|foetoscope|stethoscope +fetoscopy|1 +(noun)|foetoscopy|prenatal diagnosis +fetter|2 +(noun)|hobble|shackle|bond|hamper|trammel|trammels +(verb)|shackle|restrain|confine|hold +fetter bone|1 +(noun)|pastern|bone|os +fetter bush|2 +(noun)|fetterbush|shiny lyonia|Lyonia lucida|shrub|bush +(noun)|fetterbush|mountain fetterbush|mountain andromeda|Pieris floribunda|shrub|bush +fetterbush|2 +(noun)|mountain fetterbush|mountain andromeda|Pieris floribunda|shrub|bush +(noun)|fetter bush|shiny lyonia|Lyonia lucida|shrub|bush +fettered|1 +(adj)|in bonds|in fetters|shackled|bound +fettle|1 +(noun)|fitness|physical fitness|good shape|good condition +fettuccine|1 +(noun)|fettuccini|pasta|alimentary paste +fettuccine alfredo|1 +(noun)|fettuccine Alfredo|fettuccine|fettuccini +fettuccini|1 +(noun)|fettuccine|pasta|alimentary paste +fetus|1 +(noun)|foetus|vertebrate|craniate +feud|2 +(noun)|conflict|struggle|battle +(verb)|fight|struggle +feudal|1 +(adj)|feudalistic|social organization|social organisation|social structure|social system|structure +feudal lord|1 +(noun)|seigneur|seignior|overlord|master|lord +feudal system|1 +(noun)|feudalism|social organization|social organisation|social structure|social system|structure +feudalism|1 +(noun)|feudal system|social organization|social organisation|social structure|social system|structure +feudalistic|1 +(adj)|feudal|social organization|social organisation|social structure|social system|structure +feudatory|3 +(adj)|loyalty +(adj)|subordinate +(noun)|vassal|liege|liegeman|liege subject|follower +fever|2 +(noun)|febrility|febricity|pyrexia|feverishness|symptom +(noun)|anticipation|expectancy +fever blister|1 +(noun)|oral herpes|herpes labialis|cold sore|herpes simplex +fever pitch|1 +(noun)|excitement|excitation|inflammation|fervor|fervour +fever tree|4 +(noun)|tree +(noun)|Georgia bark|bitter-bark|Pinckneya pubens|shrub|bush +(noun)|blue gum|Eucalyptus globulus|eucalyptus|eucalypt|eucalyptus tree +(noun)|Acacia xanthophloea|acacia +fevered|1 +(adj)|excited +feverfew|1 +(noun)|Tanacetum parthenium|Chrysanthemum parthenium|herb|herbaceous plant +feverish|3 +(adj)|hectic|agitated +(adj)|febrile |symptom +(adj)|feverous|ill |sick +feverishness|1 +(noun)|fever|febrility|febricity|pyrexia|symptom +feverous|1 +(adj)|feverish|ill |sick +feverroot|1 +(noun)|horse gentian|tinker's root|wild coffee|Triostium perfoliatum|herb|herbaceous plant +few|3 +(adj)|few |a few|a couple of|hardly a|fewer|some +(noun)|small indefinite quantity|small indefinite amount +(noun)|elite|elite group +few-flowered leek|1 +(noun)|Allium paradoxum|alliaceous plant +fewer|2 +(adj)|fewer |less|few|less +(adj)|few |a few|a couple of|hardly a|some +fewest|2 +(adj)|fewest +(adj)|few |a few|a couple of|hardly a|fewer|some +fewness|1 +(noun)|number|figure +fey|2 +(adj)|touched|insane +(adj)|elfin|supernatural +feynman|1 +(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist +fez|2 +(noun)|Fez|Fes|city|metropolis|urban center +(noun)|tarboosh|cap +fha|1 +(noun)|Federal Housing Administration|FHA|agency|federal agency|government agency|bureau|office|authority +fhlmc|1 +(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation|corp +fiance|1 +(noun)|groom-to-be|betrothed +fiancee|1 +(noun)|bride-to-be|betrothed +fiasco|1 +(noun)|debacle|collapse +fiat|1 +(noun)|decree|edict|order|rescript|act|enactment +fiat money|1 +(noun)|paper money|folding money|paper currency +fib|2 +(noun)|story|tale|tarradiddle|taradiddle|lie|prevarication +(verb)|lie +fibber|1 +(noun)|storyteller|fabricator|liar|prevaricator +fibbing|1 +(noun)|paltering|lying|prevarication|fabrication +fiber|3 +(noun)|fibre|material|stuff +(noun)|character|fibre|trait +(noun)|fibre|vulcanized fiber|fabric|cloth|material|textile +fiber-optic|2 +(adj)|fiberoptic|fibre-optic|fibreoptic|transmission +(adj)| +fiber-optic transmission system|1 +(noun)|fibre-optic transmission system|FOTS|communication system|communication equipment +fiber bundle|1 +(noun)|fibre bundle|fascicle|fasciculus|nervous tissue|nerve tissue +fiber optic cable|1 +(noun)|fibre optic cable|cable|line|transmission line +fiber optics|2 +(noun)|fiberoptics|fibre optics|fibreoptics|transmission +(noun)| +fiberboard|1 +(noun)|fibreboard|particle board|wallboard +fiberglass|1 +(noun)|fibreglass|covering material +fiberoptic|1 +(adj)|fiber-optic|fibre-optic|fibreoptic|transmission +fiberoptics|1 +(noun)|fiber optics|fibre optics|fibreoptics|transmission +fiberscope|1 +(noun)|medical instrument +fibonacci number|1 +(noun)|Fibonacci number|number +fibonacci sequence|1 +(noun)|Fibonacci sequence|sequence +fibre|3 +(noun)|fiber|material|stuff +(noun)|character|fiber|trait +(noun)|fiber|vulcanized fiber|fabric|cloth|material|textile +fibre-optic|2 +(adj)|fiber-optic|fiberoptic|fibreoptic|transmission +(adj)| +fibre-optic transmission system|1 +(noun)|fiber-optic transmission system|FOTS|communication system|communication equipment +fibre bundle|1 +(noun)|fiber bundle|fascicle|fasciculus|nervous tissue|nerve tissue +fibre optic cable|1 +(noun)|fiber optic cable|cable|line|transmission line +fibre optics|2 +(noun)|fiber optics|fiberoptics|fibreoptics|transmission +(noun)| +fibreboard|1 +(noun)|fiberboard|particle board|wallboard +fibreglass|1 +(noun)|fiberglass|covering material +fibreoptic|1 +(adj)|fiber-optic|fiberoptic|fibre-optic|transmission +fibreoptics|1 +(noun)|fiber optics|fiberoptics|fibre optics|transmission +fibril|1 +(noun)|filament|strand|fiber|fibre +fibrillate|1 +(verb)|twitch|jerk +fibrillation|2 +(noun)|twitch|twitching|vellication +(noun)|branching|ramification|fork|forking +fibrillose|1 +(adj)|fiber|fibre +fibrin|1 +(noun)|protein +fibrinase|1 +(noun)|factor XIII|coagulation factor|clotting factor +fibrinogen|1 +(noun)|factor I|coagulation factor|clotting factor +fibrinolysin|1 +(noun)|plasmin|enzyme +fibrinolysis|1 +(noun)|dissolution|disintegration +fibrinopeptide|1 +(noun)|peptide +fibrinous|1 +(adj)|protein +fibroadenoma|1 +(noun)|adenoma +fibroblast|1 +(noun)|embryonic cell|formative cell +fibrocartilage|1 +(noun)|cartilage|gristle +fibrocartilaginous|1 +(adj)|cartilage|gristle +fibrocystic breast disease|1 +(noun)|fibrocystic disease of the breast|cystic breast disease|cystic mastitis|disease +fibrocystic disease of the breast|1 +(noun)|fibrocystic breast disease|cystic breast disease|cystic mastitis|disease +fibrocystic disease of the pancreas|1 +(noun)|cystic fibrosis|CF|pancreatic fibrosis|mucoviscidosis|fibrosis|monogenic disorder|monogenic disease +fibroid tumor|1 +(noun)|fibroma +fibroma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +fibromyositis|1 +(noun)|inflammation|redness|rubor +fibrosis|1 +(noun)|pathology +fibrositis|1 +(noun)|inflammation|redness|rubor +fibrous|2 +(adj)|hempen|tough +(adj)|sinewy|stringy|unchewable|tough +fibrous-rooted begonia|1 +(noun)|begonia +fibrous astrocyte|1 +(noun)|astrocyte +fibrous dysplasia of bone|1 +(noun)|dysplasia +fibrous joint|1 +(noun)|suture|sutura|joint|articulation|articulatio +fibrous tissue|1 +(noun)|animal tissue|plant tissue +fibrovascular bundle|1 +(noun)|vascular bundle|vascular strand|vascular tissue +fibula|1 +(noun)|calf bone|leg bone +fibular vein|1 +(noun)|peroneal vein|vena peroneus|vein|vena|venous blood vessel +fica|1 +(noun)|FICA|income tax +fice|1 +(noun)|feist|cur|mongrel|mutt +fichu|1 +(noun)|scarf +fickle|2 +(adj)|volatile|inconstant +(adj)|erratic|mercurial|quicksilver|changeable |changeful +fickleness|1 +(noun)|faithlessness|falseness|inconstancy|infidelity|unfaithfulness +fictile|3 +(adj)|trade|craft +(adj)|pliable|susceptible +(adj)|moldable|plastic|elastic +fiction|2 +(noun)|literary composition|literary work +(noun)|fabrication|fable|falsehood|falsity|untruth|false statement +fictional|2 +(adj)|fictional |literary composition|literary work +(adj)|fabricated|fancied|fictitious|invented|made-up|unreal +fictional animal|1 +(noun)|animal|animate being|beast|brute|creature|fauna +fictional character|1 +(noun)|fictitious character|character|imaginary being|imaginary creature +fictionalisation|2 +(noun)|fictionalization|literary composition|literary work +(noun)|fabrication|fictionalization|writing|authorship|composition|penning +fictionalise|2 +(verb)|fictionalize|retell|re-create +(verb)|novelize|novelise|fictionalize|convert +fictionalization|2 +(noun)|fictionalisation|literary composition|literary work +(noun)|fabrication|fictionalisation|writing|authorship|composition|penning +fictionalize|2 +(verb)|fictionalise|retell|re-create +(verb)|novelize|novelise|fictionalise|convert +fictitious|2 +(adj)|fabricated|fancied|fictional|invented|made-up|unreal +(adj)|assumed|false|fictive|pretended|put on|sham|counterfeit |imitative +fictitious character|1 +(noun)|fictional character|character|imaginary being|imaginary creature +fictive|2 +(adj)|assumed|false|fictitious|pretended|put on|sham|counterfeit |imitative +(adj)|creative |originative +ficus|1 +(noun)|Ficus|genus Ficus|dicot genus|magnoliopsid genus +ficus aurea|1 +(noun)|golden fig|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree +ficus bengalensis|1 +(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +ficus carica|1 +(noun)|fig|common fig|common fig tree|Ficus carica|fig tree +ficus carica sylvestris|1 +(noun)|caprifig|Ficus carica sylvestris|fig|common fig|common fig tree|Ficus carica +ficus deltoidea|1 +(noun)|mistletoe fig|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree +ficus diversifolia|1 +(noun)|mistletoe fig|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree +ficus elastica|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree +ficus religiosa|1 +(noun)|pipal|pipal tree|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree +ficus rubiginosa|1 +(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree +ficus sycomorus|1 +(noun)|sycamore|sycamore fig|mulberry fig|Ficus sycomorus|fig tree +fiddle|8 +(noun)|violin|bowed stringed instrument|string +(verb)|shirk|shrink from|goldbrick|avoid +(verb)|embezzle|defalcate|peculate|misappropriate|malversate +(verb)|play +(verb)|play|spiel +(verb)|toy|diddle|play|manipulate +(verb)|tamper|monkey|manipulate +(verb)|tinker|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +fiddle-faddle|1 +(noun)|balderdash|piffle|nonsense|bunk|nonsensicality|meaninglessness|hokum +fiddle-shaped|1 +(adj)|pandurate|panduriform|simple |unsubdivided +fiddle with|1 +(verb)|twiddle|manipulate +fiddlehead|2 +(noun)|ostrich fern|shuttlecock fern|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +(noun)|cinnamon fern|fiddlehead fern|Osmunda cinnamonea|flowering fern|osmund +fiddlehead fern|1 +(noun)|cinnamon fern|fiddlehead|Osmunda cinnamonea|flowering fern|osmund +fiddleneck|1 +(noun)|Phacelia tanacetifolia|scorpionweed|scorpion weed|phacelia +fiddler|3 +(noun)|violinist|musician|instrumentalist|player +(noun)|twiddler|manipulator +(noun)|tinkerer|unskilled person +fiddler crab|1 +(noun)|crab +fiddlestick|1 +(noun)|violin bow|bow +fiddling|1 +(adj)|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +fidel castro|1 +(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist +fidel castro ruz|1 +(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist +fidelity|2 +(noun)|accuracy|truth +(noun)|faithfulness|quality +fidget|2 +(noun)|fidgetiness|restlessness|agitation +(verb)|move +fidgetiness|1 +(noun)|fidget|restlessness|agitation +fidgety|1 +(adj)|fretful|itchy|restless|unquiet +fiducial|3 +(adj)|fiduciary|property|belongings|holding|material possession +(adj)|reference point|point of reference|reference +(adj)|trustworthy |trusty +fiduciary|2 +(adj)|fiducial|property|belongings|holding|material possession +(noun)|person|individual|someone|somebody|mortal|human|soul +fiduciary duty|1 +(noun)|legal duty +fiduciary relation|1 +(noun)|legal relation +fiedler|1 +(noun)|Fiedler|Arthur Fiedler|conductor|music director|director +fief|1 +(noun)|feoff|estate|land|landed estate|acres|demesne +fiefdom|2 +(noun)|domain|demesne|land +(noun)|organization|organisation +field|21 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|battlefield|battleground|field of battle|field of honor|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|region +(noun)|discipline|subject|subject area|subject field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +(noun)|field of force|force field|physical phenomenon +(noun)|field of operation|line of business|commercial enterprise|business enterprise|business +(noun)|sphere|domain|area|orbit|arena|environment +(noun)|playing field|athletic field|playing area|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|plain|champaign|land|dry land|earth|ground|solid ground|terra firma +(noun)|set +(noun)|field of operations|theater|theater of operations|theatre|theatre of operations|region +(noun)|set +(noun)|set +(noun)|geographical area|geographic area|geographical region|geographic region +(noun)|set +(noun)|field of view|visual percept|visual image +(noun)|airfield|landing field|flying field|facility|installation +(verb)|handle|palm +(verb)|play +(verb)|answer|reply|respond +(verb)|choose|take|select|pick out +field-effect transistor|1 +(noun)|FET|transistor|junction transistor|electronic transistor +field-emission microscope|1 +(noun)|electron microscope +field-grade officer|1 +(noun)|field officer|FO|commissioned military officer +field-pea plant|1 +(noun)|field pea|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea|pea plant +field-sequential color television|1 +(noun)|field-sequential color TV|field-sequential color television system|field-sequential color TV system|color television|colour television|color television system|colour television system|color TV|colour TV +field-sequential color television system|1 +(noun)|field-sequential color television|field-sequential color TV|field-sequential color TV system|color television|colour television|color television system|colour television system|color TV|colour TV +field-sequential color tv|1 +(noun)|field-sequential color television|field-sequential color TV|field-sequential color television system|field-sequential color TV system|color television|colour television|color television system|colour television system|color TV|colour TV +field-sequential color tv system|1 +(noun)|field-sequential color television|field-sequential color TV|field-sequential color television system|field-sequential color TV system|color television|colour television|color television system|colour television system|color TV|colour TV +field-test|1 +(verb)|test|prove|try|try out|examine|essay +field artillery|1 +(noun)|field gun|artillery|heavy weapon|gun|ordnance +field balm|2 +(noun)|ground ivy|alehoof|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +(noun)|lesser calamint|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +field bean|1 +(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|Vicia faba|shell bean|shell bean plant +field bindweed|1 +(noun)|wild morning-glory|Convolvulus arvensis|bindweed +field brome|1 +(noun)|Bromus arvensis|brome|bromegrass +field capacity|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +field chamomile|1 +(noun)|corn chamomile|corn mayweed|Anthemis arvensis|composite|composite plant +field chickweed|1 +(noun)|field mouse-ear|Cerastium arvense|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +field coil|1 +(noun)|field winding|coil +field corn|1 +(noun)|corn|maize|Indian corn|Zea mays +field cricket|1 +(noun)|Acheta assimilis|cricket +field day|4 +(noun)|day +(noun)|day +(noun)|time period|period of time|period +(noun)|outing|picnic|vacation|holiday +field emission|1 +(noun)|emission +field event|1 +(noun)|match +field game|1 +(noun)|outdoor game +field garlic|1 +(noun)|crow garlic|false garlic|stag's garlic|wild garlic|Allium vineale|wild onion +field general|2 +(noun)|quarterback|signal caller|back +(noun)|quarterback|signal caller|back +field glass|1 +(noun)|glass|spyglass|refracting telescope +field glasses|2 +(noun)|binocular|binoculars|opera glasses|optical instrument +(noun)|field glass|glass|spyglass|refracting telescope +field goal|2 +(noun)|score +(noun)|basket|score +field guide|1 +(noun)|guidebook|guide +field gun|1 +(noun)|field artillery|artillery|heavy weapon|gun|ordnance +field hand|2 +(noun)|farmhand|fieldhand|farm worker|hired hand|hand|hired man +(noun)| +field hockey|1 +(noun)|hockey|field game +field hockey ball|1 +(noun)|ball +field horsetail|1 +(noun)|common horsetail|Equisetum arvense|horsetail +field hospital|1 +(noun)|military hospital +field house|2 +(noun)|sports arena|house +(noun)|athletic facility +field hut|1 +(noun)|hut|army hut|shelter +field intensity|1 +(noun)|field strength|intensity|strength|intensity level +field judge|1 +(noun)|football official +field lens|1 +(noun)|lens|lense|lens system +field line|1 +(noun)|line of force|line +field lupine|1 +(noun)|white lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine|lupin +field magnet|1 +(noun)|magnet +field maple|1 +(noun)|hedge maple|Acer campestre|maple +field marigold|1 +(noun)|corn marigold|Chrysanthemum segetum|chrysanthemum +field marshal|1 +(noun)|marshal|marshall +field mint|1 +(noun)|corn mint|Mentha arvensis|mint +field mouse|3 +(noun)|vole|wood rat|wood-rat +(noun)|fieldmouse|mouse +(noun)| +field mouse-ear|1 +(noun)|field chickweed|Cerastium arvense|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +field mushroom|1 +(noun)|meadow mushroom|Agaricus campestris|agaric +field mustard|1 +(noun)|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard +field of battle|1 +(noun)|battlefield|battleground|field of honor|field|tract|piece of land|piece of ground|parcel of land|parcel +field of fire|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +field of force|1 +(noun)|field|force field|physical phenomenon +field of honor|2 +(noun)|scene +(noun)|battlefield|battleground|field of battle|field|tract|piece of land|piece of ground|parcel of land|parcel +field of operation|1 +(noun)|field|line of business|commercial enterprise|business enterprise|business +field of operations|2 +(noun)|field|theater|theater of operations|theatre|theatre of operations|region +(noun)|field|field of operation|line of business|commercial enterprise|business enterprise|business +field of regard|1 +(noun)|visual field|field of vision|visual percept|visual image +field of study|1 +(noun)|discipline|subject|subject area|subject field|field|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +field of view|1 +(noun)|field|visual percept|visual image +field of vision|1 +(noun)|visual field|field of regard|visual percept|visual image +field officer|1 +(noun)|field-grade officer|FO|commissioned military officer +field pansy|1 +(noun)|heartsease|Viola arvensis|viola +field pea|3 +(noun)|legume +(noun)|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea|pea plant +(noun)|pea +field pennycress|1 +(noun)|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress +field poppy|1 +(noun)|corn poppy|Flanders poppy|Papaver rhoeas|poppy +field press censorship|1 +(noun)|military censorship +field pussytoes|1 +(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica +field ration|1 +(noun)|ration +field sandbur|1 +(noun)|sandbur|sandspur|Cenchrus tribuloides|grass +field scabious|1 +(noun)|Scabiosa arvensis|scabious|scabiosa +field soybean|1 +(noun)|soy|soybean +field spaniel|1 +(noun)|spaniel +field sparrow|1 +(noun)|Spizella pusilla|New World sparrow +field speedwell|1 +(noun)|Veronica agrestis|veronica|speedwell +field sport|1 +(noun)|outdoor sport|sport|athletics +field strength|1 +(noun)|field intensity|intensity|strength|intensity level +field strength unit|1 +(noun)|electromagnetic unit|emu +field tent|1 +(noun)|canvas tent|canvas|canvass +field test|1 +(noun)|field trial|trial|trial run|test|tryout +field theory|1 +(noun)|theory +field thistle|1 +(noun)|Cirsium discolor|thistle +field trial|3 +(noun)|field test|trial|trial run|test|tryout +(noun)|contest|competition +(noun)|test|trial|run +field trip|1 +(noun)|excursion|jaunt|outing|junket|pleasure trip|expedition|sashay +field winding|1 +(noun)|field coil|coil +field work|2 +(noun)|research +(noun)|fieldwork|fortification|munition +field wormwood|1 +(noun)|Artemisia campestris|wormwood +fielder|2 +(noun)|ballplayer|baseball player +(noun)|fieldsman|cricketer +fielder's choice|1 +(noun)|putout +fieldfare|1 +(noun)|snowbird|Turdus pilaris|thrush +fieldhand|1 +(noun)|farmhand|field hand|farm worker|hired hand|hand|hired man +fielding|2 +(noun)|handling|manipulation +(noun)|Fielding|Henry Fielding|writer|author +fielding average|1 +(noun)|percentage|percent|per centum|pct +fieldmouse|1 +(noun)|field mouse|mouse +fields|18 +(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian|comic +(noun)|field|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|battlefield|battleground|field of battle|field of honor|field|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|field|region +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +(noun)|field|field of force|force field|physical phenomenon +(noun)|field|field of operation|line of business|commercial enterprise|business enterprise|business +(noun)|sphere|domain|area|orbit|field|arena|environment +(noun)|playing field|athletic field|playing area|field|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|plain|field|champaign|land|dry land|earth|ground|solid ground|terra firma +(noun)|field|set +(noun)|field|field of operations|theater|theater of operations|theatre|theatre of operations|region +(noun)|field|set +(noun)|field|set +(noun)|field|geographical area|geographic area|geographical region|geographic region +(noun)|field|set +(noun)|field|field of view|visual percept|visual image +(noun)|airfield|landing field|flying field|field|facility|installation +fieldsman|1 +(noun)|fielder|cricketer +fieldstone|1 +(noun)|rock|stone +fieldwork|1 +(noun)|fortification|munition +fieldworker|1 +(noun)|research worker|researcher|investigator +fiend|3 +(noun)|monster|devil|demon|ogre|unpleasant person|disagreeable person +(noun)|devil|demon|daemon|daimon|evil spirit +(noun)|fanatic|enthusiast|partisan|partizan +fiendish|1 +(adj)|demonic|diabolic|diabolical|hellish|infernal|satanic|unholy|evil |wicked +fiendishly|1 +(adv)|diabolically|devilishly +fierce|4 +(adj)|ferocious|furious|savage|violent +(adj)|tearing|vehement|violent|trigger-happy|intense +(adj)|cutthroat|bowelless|merciless |unmerciful +(adj)|boisterous|rough|stormy +fiercely|1 +(adv)|ferociously +fierceness|1 +(noun)|ferocity|furiousness|fury|vehemence|violence|wildness|intensity|intensiveness +fieri facias|1 +(noun)|writ|judicial writ +fierily|1 +(adv)|fervently|fervidly +fieriness|1 +(noun)|red heat|hotness|heat|high temperature +fiery|3 +(adj)|ardent|burning|fervent|fervid|impassioned|perfervid|torrid|passionate +(adj)|igneous|hot +(adj)|flaming|hot +fiesta|1 +(noun)|fete|feast|party +fiesta flower|1 +(noun)|Pholistoma auritum|Nemophila aurita|herb|herbaceous plant +fife|1 +(noun)|flute|transverse flute +fife rail|1 +(noun)|railing|rail +fifo|1 +(noun)|first in first out|FIFO|inventory accounting +fifteen|2 +(adj)|15|xv|cardinal +(noun)|15|XV|large integer +fifteenth|2 +(adj)|15th|ordinal +(noun)|rank +fifth|5 +(adj)|5th|ordinal +(noun)|United States liquid unit +(noun)|rank +(noun)|one-fifth|fifth part|twenty percent|common fraction|simple fraction +(noun)|interval|musical interval +fifth amendment|1 +(noun)|Fifth Amendment|amendment +fifth avenue|1 +(noun)|Fifth Avenue|avenue|boulevard +fifth column|1 +(noun)|Trojan horse|unit|social unit +fifth columnist|1 +(noun)|saboteur|traitor|treasonist +fifth cranial nerve|1 +(noun)|trigeminal|trigeminal nerve|trigeminus|nervus trigeminus|cranial nerve +fifth crusade|1 +(noun)|Fifth Crusade|Crusade +fifth part|1 +(noun)|one-fifth|fifth|twenty percent|common fraction|simple fraction +fifth wheel|3 +(noun)|deadwood|redundancy|redundance +(noun)|spare|car wheel +(noun)|bearing +fifties|4 +(noun)|1950s|decade|decennary|decennium +(noun)|mid-fifties|time of life +(noun)|fifty|50|L|large integer +(noun)|fifty dollar bill|fifty|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +fiftieth|2 +(adj)|50th|ordinal +(noun)|rank +fifty|3 +(adj)|50|l|cardinal +(noun)|50|L|large integer +(noun)|fifty dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +fifty-cent piece|1 +(noun)|half dollar|coin +fifty-eight|1 +(adj)|58|lviii|cardinal +fifty-fifth|1 +(adj)|55th|ordinal +fifty-fifty|1 +(adj)|even|equal +fifty-five|1 +(adj)|55|lv|cardinal +fifty-four|1 +(adj)|54|liv|cardinal +fifty-nine|1 +(adj)|59|ilx|cardinal +fifty-one|1 +(adj)|51|li|cardinal +fifty-seven|1 +(adj)|57|lvii|cardinal +fifty-six|1 +(adj)|56|lvi|cardinal +fifty-three|1 +(adj)|53|liii|cardinal +fifty-two|1 +(adj)|52|lii|cardinal +fifty dollar bill|1 +(noun)|fifty|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +fifty percent|1 +(noun)|one-half|half +fig|4 +(noun)|figure|illustration +(noun)|common fig|common fig tree|Ficus carica|fig tree +(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|edible fruit +fig-bird|1 +(noun)|Old World oriole|oriole +fig leaf|2 +(noun)|leaf|leafage|foliage +(noun)|covering +fig marigold|1 +(noun)|pebble plant|flower +fig moth|1 +(noun)|almond moth|Cadra cautella|pyralid|pyralid moth +fig out|1 +(verb)|dress up|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +fig tree|1 +(noun)|tree +fig up|1 +(verb)|dress up|fig out|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +fig wax|1 +(noun)|gondang wax|wax +figeater|1 +(noun)|green June beetle|June beetle|June bug|May bug|May beetle +fight|9 +(noun)|fighting|combat|scrap|conflict|struggle|battle +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +(noun)|bout|boxing|pugilism|fisticuffs +(noun)|battle|conflict|engagement|military action|action +(noun)|competitiveness|aggressiveness +(verb)|struggle|fight off +(verb)|oppose|fight back|fight down|defend|struggle +(verb)|struggle|try|seek|attempt|essay|assay +(verb)|crusade|press|campaign|push|agitate|advertise|advertize|promote|push +fight back|2 +(verb)|fight|struggle +(verb)|fight|oppose|fight down|defend|fight|struggle +fight down|1 +(verb)|fight|oppose|fight back|defend|fight|struggle +fight off|1 +(verb)|repel|repulse|rebuff|drive back|fight|oppose|fight back|fight down|defend +fighter|3 +(noun)|combatant|battler|belligerent|scrapper|person|individual|someone|somebody|mortal|human|soul +(noun)|fighter aircraft|attack aircraft|airplane|aeroplane|plane|warplane|military plane +(noun)|champion|hero|paladin|defender|guardian|protector|shielder +fighter aircraft|1 +(noun)|fighter|attack aircraft|airplane|aeroplane|plane|warplane|military plane +fighter pilot|1 +(noun)|combat pilot +fighting|4 +(adj)|active|combat-ready|operational +(adj)|belligerent|militant|war-ridden|warring|unpeaceful +(adj)|brawling|disorderly +(noun)|fight|combat|scrap|conflict|struggle|battle +fighting chair|1 +(noun)|chair +fighting cock|1 +(noun)|gamecock|cock +fighting french|1 +(noun)|Free French|Fighting French|movement|social movement|front +fighting joe hooker|1 +(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general|full general +figment|1 +(noun)|idea|thought +figural|1 +(adj)|figurative|representational +figural blindness|1 +(noun)|blindness|sightlessness|cecity +figuration|2 +(noun)|representation +(noun)|decoration +figurative|2 +(adj)|figurative |nonliteral|analogical|extended|metaphorical|metaphoric|metonymic|metonymical|poetic|synecdochic|synecdochical|tropical|rhetorical +(adj)|figural|representational +figure|18 +(noun)|fig|illustration +(noun)|human body|physical body|material body|soma|build|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +(noun)|digit|integer|whole number +(noun)|model|simulation +(noun)|name|public figure|important person|influential person|personage +(noun)|shape|form +(noun)|sum|sum of money|amount|amount of money +(noun)|impression|effect +(noun)|number|amount +(noun)|trope|figure of speech|image|rhetorical device +(noun)|percept|perception|perceptual experience +(noun)|design|pattern|decoration|ornament|ornamentation +(noun)|maneuver|manoeuvre|play +(verb)|calculate|estimate|reckon|count on|forecast|judge +(verb)|enter|be +(verb)|visualize|visualise|envision|project|fancy|see|picture|image|imagine|conceive of|ideate|envisage +(verb)|calculate|cipher|cypher|compute|work out|reckon|reason|figure out +(verb)|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +figure eight|2 +(noun)|figure of eight|knot +(noun)|figure +figure loom|1 +(noun)|figured-fabric loom|loom +figure of eight|1 +(noun)|figure eight|knot +figure of speech|1 +(noun)|trope|figure|image|rhetorical device +figure out|1 +(verb)|solve|work out|puzzle out|lick|work|understand +figure skate|1 +(verb)|skate +figure skating|1 +(noun)|ice skating +figured|1 +(adj)|patterned +figured-fabric loom|1 +(noun)|figure loom|loom +figured bass|1 +(noun)|basso continuo|continuo|thorough bass|bass|bass part +figurehead|2 +(noun)|front man|front|nominal head|straw man|strawman|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|figure +figurer|1 +(noun)|calculator|reckoner|estimator|computer|expert +figurine|1 +(noun)|statuette|figure +figuring|1 +(noun)|calculation|computation|reckoning|problem solving +figwort|1 +(noun)|woody plant|ligneous plant +figwort family|1 +(noun)|Scrophulariaceae|family Scrophulariaceae|foxglove family|asterid dicot family +fiji|1 +(noun)|Fiji|Republic of Fiji|country|state|land +fiji dollar|1 +(noun)|Fiji dollar|dollar +fiji islands|1 +(noun)|Fiji Islands|Fijis|island +fijian|3 +(adj)|Fijian|country|state|land +(noun)|Fijian|Polynesian +(noun)|Fijian|Oceanic|Eastern Malayo-Polynesian +fijis|2 +(noun)|Fiji Islands|Fijis|island +(noun)|Fiji|Republic of Fiji|country|state|land +filago|1 +(noun)|cotton rose|cudweed|flower +filago germanica|1 +(noun)|herba impia|Filago germanica|cotton rose|cudweed|filago +filagree|1 +(noun)|filigree|fillagree|embellishment +filament|4 +(noun)|fibril|strand|fiber|fibre +(noun)|stalk|stem +(noun)|filum|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|wire|conducting wire +filamentlike|1 +(adj)|filamentous|filiform|threadlike|thready|thin +filamentous|1 +(adj)|filiform|filamentlike|threadlike|thready|thin +filar|1 +(adj)|fiber|fibre +filaree|1 +(noun)|redstem storksbill|alfilaria|alfileria|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +filaria|2 +(noun)|redstem storksbill|alfilaria|alfileria|filaree|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +(noun)|nematode|nematode worm|roundworm +filarial|1 +(adj)|nematode|nematode worm|roundworm +filariasis|1 +(noun)|disease +filariid|1 +(adj)|worm family +filariidae|1 +(noun)|Filariidae|family Filariidae|worm family +filature|1 +(noun)|bobbin|spool|reel +filbert|2 +(noun)|cobnut|Corylus avellana|Corylus avellana grandis|hazelnut|hazel|hazelnut tree +(noun)|hazelnut|cobnut|cob|edible nut +filch|1 +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|nobble|lift|steal +file|9 +(noun)|data file|record +(noun)|single file|Indian file|line +(noun)|file cabinet|filing cabinet|office furniture +(noun)|hand tool +(verb)|register|register +(verb)|smooth|smoothen +(verb)|march|process|file in|file out +(verb)|charge|lodge|accuse|impeach|incriminate|criminate +(verb)|file away|record|enter|put down +file allocation table|1 +(noun)|table|tabular array +file away|2 +(verb)|file|record|enter|put down +(verb)|archive|collect|pull in +file cabinet|1 +(noun)|file|filing cabinet|office furniture +file clerk|1 +(noun)|filing clerk|filer|clerk +file folder|1 +(noun)|folder +file in|1 +(verb)|enter|come in|get into|get in|go into|go in|move into +file name|2 +(noun)|filename|computer filename|computer file name|name +(noun)| +file name extension|1 +(noun)|extension|filename extension|string +file out|1 +(verb)|exit|go out|get out|leave +file server|1 +(noun)|digital computer +file system|1 +(noun)|filing system|classification system +file transfer protocol|1 +(noun)|FTP|protocol|communications protocol +filefish|1 +(noun)|plectognath|plectognath fish +filename|1 +(noun)|file name|computer filename|computer file name|name +filename extension|1 +(noun)|extension|file name extension|string +filer|2 +(noun)|litigant|litigator +(noun)|file clerk|filing clerk|clerk +filet|5 +(noun)|fillet|beefsteak +(noun)|fillet|fish fillet|fish filet|piece|slice +(noun)|lace +(verb)|fillet|decorate|adorn|grace|ornament|embellish|beautify +(verb)|fillet|carve|cut up +filet de boeuf en croute|1 +(noun)|beef Wellington|dish +filet mignon|1 +(noun)|fillet|filet +filial|2 +(adj)|filial |relative|relation +(adj)|filial |daughterly +filial duty|1 +(noun)|duty|responsibility|obligation +filiate|1 +(verb)|determine|set +filiation|2 +(noun)|descent|line of descent|lineage|kinship|family relationship|relationship +(noun)|ancestry|lineage|derivation|inheritance|hereditary pattern +filibuster|3 +(noun)|filibusterer|legislator|delayer +(noun)|delay|holdup +(verb)|obstruct|blockade|block|hinder|stymie|stymy|embarrass +filibusterer|1 +(noun)|filibuster|legislator|delayer +filicales|1 +(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order +filicinae|1 +(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class +filicopsida|1 +(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class +filiform|1 +(adj)|filamentous|filamentlike|threadlike|thready|thin +filigree|1 +(noun)|filagree|fillagree|embellishment +filing|4 +(noun)|submission|entry +(noun)|fragment +(noun)|formation|shaping +(noun)|storage +filing cabinet|1 +(noun)|file|file cabinet|office furniture +filing clerk|1 +(noun)|file clerk|filer|clerk +filing system|1 +(noun)|file system|classification system +filipino|3 +(adj)|Filipino|Philippine|country|state|land +(noun)|Filipino|native|indigen|indigene +(noun)|Philippine|Filipino|Western Malayo-Polynesian +filippino lippi|1 +(noun)|Lippi|Filippino Lippi|old master +filippo brunelleschi|1 +(noun)|Brunelleschi|Filippo Brunelleschi|architect|designer +fill|11 +(noun)|enough|sufficiency +(noun)|filling|material|stuff +(verb)|fill up|make full|change|alter|modify|fill in|fill out +(verb)|fill up|change state|turn +(verb)|occupy|be +(verb)|take|work|do work +(verb)|meet|satisfy|fulfill|fulfil|provide|supply|ply|cater +(verb)|hire|engage|employ +(verb)|fill up|eat +(verb)|satiate|sate|replete|consume|ingest|take in|take|have +(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +fill-in|1 +(noun)|stand-in|substitute|relief|reliever|backup|backup man|peer|equal|match|compeer +fill again|1 +(verb)|replenish|refill|fill|fill up|make full +fill in|4 +(verb)|inform +(verb)|shade|draw|paint +(verb)|substitute|sub|stand in|exchange|change|interchange +(verb)|complete|fill out|make out +fill out|6 +(verb)|complete|fill in|make out +(verb)|round out|enrich +(verb)|eke out|supplement +(verb)|pad|stuff +(verb)|fatten|fat|flesh out|plump|plump out|fatten out|fatten up|change|alter|modify +(verb)|round|flesh out|gain|put on +fill the bill|1 +(verb)|fit the bill|meet|fit|conform to +fill up|4 +(verb)|fill|make full|change|alter|modify +(verb)|fill|change state|turn +(verb)|close|fill +(verb)|fill|eat +fillagree|1 +(noun)|filigree|filagree|embellishment +fille|1 +(noun)|girl|miss|missy|young lady|young woman|woman|adult female +fille de chambre|1 +(noun)|chambermaid|maid|maidservant|housemaid|amah +filled|2 +(adj)|full +(adj)|occupied +filler|5 +(noun)|sealing material +(noun)|Hungarian monetary unit +(noun)|copy|written matter +(noun)|makeweight|object|physical object +(noun)|tobacco|baccy +fillet|7 +(noun)|filet|beefsteak +(noun)|filet|fish fillet|fish filet|piece|slice +(noun)|lemniscus|sensory nerve +(noun)|taenia|tenia|headband +(noun)|stopping|fastener|fastening|holdfast|fixing +(verb)|filet|decorate|adorn|grace|ornament|embellish|beautify +(verb)|filet|carve|cut up +fillet of sole|1 +(noun)|sole|flatfish +filling|6 +(noun)|fill|material|stuff +(noun)|flow +(noun)|dental appliance +(noun)|concoction|mixture|intermixture +(noun)|woof|weft|pick|thread|yarn +(noun)|change of integrity +filling station|1 +(noun)|gasoline station|gas station|petrol station|service station +fillip|1 +(noun)|bonus|positive stimulus +fillmore|1 +(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States|United States President|President|Chief Executive +filly|1 +(noun)|foal +film|7 +(noun)|movie|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show +(noun)|cinema|celluloid|medium +(noun)|object|physical object +(noun)|plastic film|sheet|flat solid|wrapping|wrap|wrapper +(noun)|photographic film|photographic paper|photographic material +(verb)|shoot|take|record|enter|put down +(verb)|record|enter|put down|make|create +film-make|1 +(verb)|make|create +film advance|1 +(noun)|mechanism +film clip|1 +(noun)|film|photographic film +film director|1 +(noun)|director|theater director|theatre director|film maker|filmmaker|film producer|movie maker +film editing|1 +(noun)|cutting|creating by removal +film fern|1 +(noun)|filmy fern|fern +film festival|1 +(noun)|festival|fete +film industry|1 +(noun)|movie industry|screenland|industry +film maker|2 +(noun)|filmmaker|film producer|movie maker|producer +(noun)| +film over|1 +(verb)|glaze over|blur +film producer|1 +(noun)|film maker|filmmaker|movie maker|producer +film projector|1 +(noun)|movie projector|cine projector|projector +film star|1 +(noun)|movie star|star|principal|lead|screen actor|movie actor +film writer|1 +(noun)|screenwriter|scriptwriter +filmable|1 +(adj)|adaptable +filmed|1 +(adj)|recorded +filming|1 +(noun)|cinematography|motion-picture photography|photography|picture taking +filmmaker|1 +(noun)|film maker|film producer|movie maker|producer +filmy|1 +(adj)|diaphanous|gauzy|gossamer|see-through|sheer|transparent|vaporous|cobwebby|thin +filmy fern|2 +(noun)|bristle fern|fern +(noun)|film fern|fern +filoviridae|1 +(noun)|Filoviridae|family +filovirus|1 +(noun)|animal virus +fils|2 +(noun)|Yemeni fils|Yemeni monetary unit +(noun)|fractional monetary unit|subunit +filter|5 +(noun)|device +(noun)|electrical device +(verb)|filtrate|strain|separate out|filter out|separate +(verb)|percolate|sink in|permeate|penetrate|perforate +(verb)|trickle|dribble|run|flow|feed|course +filter-tipped|1 +(adj)|tipped +filter-tipped cigarette|1 +(noun)|cigarette|cigaret|coffin nail|butt|fag +filter bed|1 +(noun)|filter +filter out|1 +(verb)|filter|filtrate|strain|separate out|separate +filter paper|1 +(noun)|paper +filter tip|1 +(noun)|air filter|air cleaner +filth|3 +(noun)|crud|skank|waste|waste material|waste matter|waste product +(noun)|dirt|grime|soil|stain|grease|grunge|dirtiness|uncleanness +(noun)|filthiness|foulness|nastiness|unsanitariness +filthily|1 +(adv)|dirtily +filthiness|1 +(noun)|filth|foulness|nastiness|unsanitariness +filthy|4 +(adj)|foul|nasty|dirty |soiled|unclean +(adj)|dirty|lousy|nasty |awful +(adj)|foul|nasty|vile|inclement +(adj)|foul|nasty|smutty|dirty +filtrate|2 +(noun)|product|fluid +(verb)|filter|strain|separate out|filter out|separate +filtration|2 +(noun)|natural process|natural action|action|activity +(noun)|change +filum|1 +(noun)|filament|structure|anatomical structure|complex body part|bodily structure|body structure +fimbria|1 +(noun)|process|outgrowth|appendage +fimbriate|1 +(adj)|rough +fin|9 +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|Phoebe|Little Phoebe|digit|figure +(noun)|tail fin|tailfin|decoration|ornament|ornamentation +(noun)|louver|louvre|slat|spline +(noun)|flipper|flippers|fins|shoe +(noun)|stabilizer|stabiliser +(noun)|extremity|appendage|member +(verb)|equip|fit|fit out|outfit +(verb)|swim +(verb)|break water|swim +fin de siecle|1 +(adj)|finished +fin keel|1 +(noun)|plate +fin whale|1 +(noun)|finback|finback whale|common rorqual|Balaenoptera physalus|rorqual|razorback +finable|1 +(adj)|fineable|guilty +finagle|1 +(verb)|wangle|manage|achieve|accomplish|attain|reach +finagler|1 +(noun)|wangler|deceiver|cheat|cheater|trickster|beguiler|slicker +final|5 +(adj)|concluding|last|terminal|closing +(adj)|last|net|ultimate +(adj)|last|unalterable |inalterable +(noun)|match +(noun)|final examination|final exam|examination|exam|test +final cut|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +final decision|1 +(noun)|final judgment|judgment|judgement|judicial decision +final exam|1 +(noun)|final examination|final|examination|exam|test +final examination|1 +(noun)|final exam|final|examination|exam|test +final injunction|1 +(noun)|permanent injunction|injunction|enjoining|enjoinment|cease and desist order +final judgment|1 +(noun)|final decision|judgment|judgement|judicial decision +final payment|1 +(noun)|payoff|payment +final period|1 +(noun)|playing period|period of play|play +final result|1 +(noun)|result|resultant|outcome|termination|ending|conclusion|finish +final solution|1 +(noun)|Holocaust|genocide|race murder|racial extermination +final stage|1 +(noun)|end|last|ending|conclusion|finish +finale|3 +(noun)|stopping point|finis|finish|last|conclusion|close|end|ending +(noun)|coda|conclusion|end|close|closing|ending +(noun)|close|closing curtain|finis|finish|finishing +finalisation|1 +(noun)|finalization|completion|culmination|closing|windup|mop up +finalise|1 +(verb)|finalize|settle|nail down|end|terminate +finalist|1 +(noun)|rival|challenger|competitor|competition|contender +finality|1 +(noun)|conclusiveness|decisiveness|determinateness|definiteness +finalization|1 +(noun)|finalisation|completion|culmination|closing|windup|mop up +finalize|1 +(verb)|finalise|settle|nail down|end|terminate +finally|3 +(adv)|eventually|at length +(adv)|last|lastly|in conclusion +(adv)|ultimately|in the end|at last|at long last +finance|5 +(noun)|commercial enterprise|business enterprise|business +(noun)|economics|economic science|political economy +(noun)|management|direction +(verb)|pay +(verb)|credit +finance committee|1 +(noun)|committee|commission +finance company|1 +(noun)|nondepository financial institution +finance minister|1 +(noun)|minister of finance|minister|government minister +financed|1 +(adj)|supported +finances|4 +(noun)|funds|monetary resource|cash in hand|pecuniary resource|assets +(noun)|finance|commercial enterprise|business enterprise|business +(noun)|finance|economics|economic science|political economy +(noun)|finance|management|direction +financial|1 +(adj)|fiscal|financial |commercial enterprise|business enterprise|business +financial aid|1 +(noun)|aid|assist|assistance|help +financial analyst|1 +(noun)|securities analyst|analyst +financial audit|1 +(noun)|attestation service|attestation report|audited account|audit +financial backing|1 +(noun)|support|financial support|funding|backing|resource +financial center|1 +(noun)|center|centre|middle|heart|eye +financial condition|1 +(noun)|economic condition|condition|status +financial crimes enforcement network|1 +(noun)|Financial Crimes Enforcement Network|FinCEN|law enforcement agency +financial forecast|1 +(noun)|prognosis|forecast +financial gain|1 +(noun)|gain +financial institution|1 +(noun)|financial organization|financial organisation|institution|establishment +financial loss|1 +(noun)|loss +financial management service|1 +(noun)|Financial Management Service|agency|federal agency|government agency|bureau|office|authority +financial obligation|1 +(noun)|indebtedness|liability|obligation +financial officer|1 +(noun)|treasurer|money handler|money dealer +financial organisation|1 +(noun)|financial institution|financial organization|institution|establishment +financial organization|1 +(noun)|financial institution|financial organisation|institution|establishment +financial statement|1 +(noun)|statement|commercial document|commercial instrument +financial support|1 +(noun)|support|funding|backing|financial backing|resource +financial year|1 +(noun)|fiscal year|year|twelvemonth|yr +financier|2 +(noun)|moneyman|capitalist +(verb)|operate|run +financing|1 +(noun)|funding|finance +finback|1 +(noun)|finback whale|fin whale|common rorqual|Balaenoptera physalus|rorqual|razorback +finback whale|1 +(noun)|finback|fin whale|common rorqual|Balaenoptera physalus|rorqual|razorback +fincen|1 +(noun)|Financial Crimes Enforcement Network|FinCEN|law enforcement agency +finch|1 +(noun)|oscine|oscine bird +find|18 +(noun)|discovery|breakthrough|insight|brainstorm|brainwave +(noun)|discovery|uncovering|deed|feat|effort|exploit +(verb)|happen|chance|bump|encounter +(verb)|detect|observe|discover|notice|sight +(verb)|regain|get|acquire +(verb)|determine|find out|ascertain +(verb)|feel|reason|reason out|conclude +(verb)|witness|see|experience|undergo|see|go through +(verb)|line up|get hold|come up|get|acquire +(verb)|discover|gestate|conceive|conceptualize|conceptualise +(verb)|discover|learn|hear|get word|get wind|pick up|find out|get a line|discover|see|find out +(verb)|get|acquire +(verb)|rule|pronounce|label|judge +(verb)|receive|get|obtain|incur|change +(verb)|perceive|comprehend +(verb)|recover|retrieve|regain|get|acquire +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|find oneself|mature|maturate|grow +find fault|1 +(verb)|blame|pick|knock|criticize|criticise|pick apart +find oneself|1 +(verb)|find|mature|maturate|grow +find out|4 +(verb)|determine|find|ascertain +(verb)|learn|hear|get word|get wind|pick up|get a line|discover|see +(verb)|determine|check|see|ascertain|watch|learn +(verb)|catch out|detect|observe|find|discover|notice +finder|3 +(noun)|seeker|searcher|quester +(noun)|discoverer|spotter|perceiver|observer|beholder +(noun)|viewfinder|view finder|optical device +finder's fee|1 +(noun)|fee +finding|3 +(noun)|determination|discovery|find|uncovering +(noun)|judgment|judgement|judicial decision +(noun)|object|physical object +finding of fact|1 +(noun)|verdict|finding +finding of law|1 +(noun)|conclusion of law|finding +findings|4 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|determination|finding|discovery|find|uncovering +(noun)|finding|judgment|judgement|judicial decision +(noun)|finding|object|physical object +fine|14 +(adj)|good|superior +(adj)|all right|ok|o.k.|okay|hunky-dory|satisfactory +(adj)|precise +(adj)|fine |close|tight|close-grained|fine-grained|dustlike|floury|nongranular|powdered|powdery|pulverized|pulverised|small-grained|fine-grained|small|superfine|smooth +(adj)|all right|well +(adj)|thin +(adj)|elegant +(adj)|f.|pure +(adj)|pleasant +(noun)|mulct|amercement|penalty +(verb)|ticket|book +(adv)|very well|alright|all right|OK +(adv)|finely|delicately|exquisitely +(adv)|finely +fine-drawn|1 +(adj)|thin |lean +fine-grained|2 +(adj)|powdered|powdery|pulverized|pulverised|small-grained|fine +(adj)|close-grained|fine +fine-leaved heath|1 +(noun)|bell heather|heather bell|Erica cinerea|erica|true heath +fine-looking|1 +(adj)|good-looking|better-looking|handsome|well-favored|well-favoured|beautiful +fine-tooth|1 +(adj)|fine-toothed|toothed +fine-tooth comb|2 +(noun)|fine-toothed comb|comb +(noun)|fine-toothed comb|examination|scrutiny +fine-toothed|1 +(adj)|fine-tooth|toothed +fine-toothed comb|2 +(noun)|fine-tooth comb|comb +(noun)|fine-tooth comb|examination|scrutiny +fine-tune|3 +(verb)|polish|refine|down|better|improve|amend|ameliorate|meliorate +(verb)|tweak|tune|tune up +(verb)|calibrate|graduate|adjust|set|correct +fine art|1 +(noun)|art|creation +fine arts|2 +(noun)|beaux arts|humanistic discipline|humanities|liberal arts|arts +(noun)|art|fine art|creation +fine print|2 +(noun)|small print|reservation|qualification +(noun)|small print|print|black and white +fine spray|1 +(noun)|precipitation|downfall +fine structure|1 +(noun)|spectrum line +fineable|1 +(adj)|finable|guilty +fined|1 +(adj)|penalized|penalised|punished +finedraw|1 +(verb)|sew|run up|sew together|stitch +finely|2 +(adv)|fine +(adv)|fine|delicately|exquisitely +fineness|4 +(noun)|choiceness|superiority|high quality +(noun)|thinness|narrowness +(noun)|powderiness|smoothness +(noun)|daintiness|delicacy|elegance +finer|10 +(adj)|better +(adj)|fine|good|superior +(adj)|all right|fine|ok|o.k.|okay|hunky-dory|satisfactory +(adj)|fine|precise +(adj)|fine |close|tight|close-grained|fine-grained|dustlike|floury|nongranular|powdered|powdery|pulverized|pulverised|small-grained|fine-grained|small|superfine|smooth +(adj)|all right|fine|well +(adj)|fine|thin +(adj)|fine|elegant +(adj)|fine|f.|pure +(adj)|fine|pleasant +finery|1 +(noun)|attire|garb|dress +fines herbes|1 +(noun)|herb +finespun|2 +(adj)|delicate|refined +(adj)|hairsplitting|precise +finesse|1 +(noun)|delicacy|diplomacy|discreetness|tact|tactfulness +finest|10 +(adj)|high-grade|top-quality|top-grade|best +(adj)|fine|good|superior +(adj)|all right|fine|ok|o.k.|okay|hunky-dory|satisfactory +(adj)|fine|precise +(adj)|fine |close|tight|close-grained|fine-grained|dustlike|floury|nongranular|powdered|powdery|pulverized|pulverised|small-grained|fine-grained|small|superfine|smooth +(adj)|all right|fine|well +(adj)|fine|thin +(adj)|fine|elegant +(adj)|fine|f.|pure +(adj)|fine|pleasant +fingal's cave|1 +(noun)|Fingal's Cave|cave +finger|7 +(noun)|digit|dactyl|extremity +(noun)|fingerbreadth|finger's breadth|digit|linear unit +(noun)|covering +(verb)|thumb|touch +(verb)|feel +(verb)|search|seek|look for +(verb)|indicate|point|show +finger's breadth|1 +(noun)|finger|fingerbreadth|digit|linear unit +finger-flower|2 +(noun)|common foxglove|fairy bell|fingerflower|fingerroot|finger-root|Digitalis purpurea|foxglove|digitalis +(noun)| +finger-paint|1 +(verb)|paint +finger-painting|2 +(noun)|painting|picture +(noun)|painting +finger-pointing|2 +(noun)|fingerpointing|imputation +(noun)| +finger-roll|1 +(noun)|basketball shot +finger-root|2 +(noun)|common foxglove|fairy bell|fingerflower|finger-flower|fingerroot|Digitalis purpurea|foxglove|digitalis +(noun)| +finger-spell|2 +(verb)|fingerspell|communicate|intercommunicate +(verb)| +finger alphabet|1 +(noun)|manual alphabet|alphabet +finger bowl|1 +(noun)|bowl +finger cymbals|1 +(noun)|bones|castanets|clappers|maraca|percussion instrument|percussive instrument +finger food|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +finger grass|2 +(noun)|crabgrass|crab grass|grass +(noun)|grass +finger hole|2 +(noun)|hole +(noun)|hole +finger millet|1 +(noun)|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet +finger paint|2 +(noun)|fingerpaint|paint +(noun)| +finger plate|1 +(noun)|escutcheon|scutcheon|protective covering|protective cover|protection +finger scan|1 +(noun)|finger scanning|biometric identification|biometric authentication|identity verification +finger scanning|1 +(noun)|finger scan|biometric identification|biometric authentication|identity verification +finger spelling|2 +(noun)|fingerspelling|sign language|signing +(noun)| +finger wave|1 +(noun)|wave +fingerboard|3 +(noun)|fingerpost|signpost|guidepost +(noun)|piano keyboard|clavier|keyboard +(noun)|strip +fingerbreadth|1 +(noun)|finger|finger's breadth|digit|linear unit +fingered|1 +(adj)|fingered |digitate|fingerlike +fingerflower|1 +(noun)|common foxglove|fairy bell|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove|digitalis +fingering|2 +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|touch|touching +fingerless|1 +(adj)|fingerless +fingerlike|1 +(adj)|digitate|fingered +fingerling|1 +(noun)|fish +fingermark|1 +(noun)|fingerprint|smudge|spot|blot|daub|smear|smirch|slur +fingernail|1 +(noun)|nail +fingerpaint|1 +(noun)|finger paint|paint +fingerpointing|1 +(noun)|finger-pointing|imputation +fingerpost|1 +(noun)|fingerboard|signpost|guidepost +fingerprint|4 +(noun)|print|black and white|biometric identification|biometric authentication|identity verification +(noun)|identification +(noun)|fingermark|smudge|spot|blot|daub|smear|smirch|slur +(verb)|reproduce +fingerprint expert|1 +(noun)|fingerprint specialist|fingerprint man|specialist|specializer|specialiser +fingerprint man|1 +(noun)|fingerprint expert|fingerprint specialist|specialist|specializer|specialiser +fingerprint specialist|1 +(noun)|fingerprint expert|fingerprint man|specialist|specializer|specialiser +fingerprinting|1 +(noun)|procedure|process +fingerroot|1 +(noun)|common foxglove|fairy bell|fingerflower|finger-flower|finger-root|Digitalis purpurea|foxglove|digitalis +fingerspell|1 +(verb)|finger-spell|communicate|intercommunicate +fingerspelling|1 +(noun)|finger spelling|sign language|signing +fingerstall|1 +(noun)|cot|sheath +fingertip|1 +(noun)|tip +finial|1 +(noun)|decoration|ornament|ornamentation +finical|1 +(adj)|finicky|fussy|particular|fastidious +finicky|1 +(adj)|finical|fussy|particular|fastidious +finis|2 +(noun)|stopping point|finale|finish|last|conclusion|close|end|ending +(noun)|finale|close|closing curtain|finish|finishing +finish|15 +(noun)|coating|finishing|decorativeness +(noun)|happening|occurrence|natural event +(noun)|finishing|completion|culmination|closing|windup|mop up +(noun)|destination|goal|end +(noun)|stopping point|finale|finis|last|conclusion|close|end|ending +(noun)|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|ending|conclusion|happening|occurrence|natural event +(noun)|downfall|ruin|ruination +(noun)|polish|refinement|culture|cultivation|perfection|flawlessness|ne plus ultra +(verb)|complete|end|terminate +(verb)|finish up|land up|fetch up|end up|wind up|act|move +(verb)|end|stop|terminate|cease +(verb)|coat|surface +(verb)|eat up|polish off|eat +(verb)|end|terminate +finish coat|2 +(noun)|finishing coat|coat of paint +(noun)|finishing coat|coating|coat|plaster +finish line|1 +(noun)|finishing line|line|finish|destination|goal +finish off|1 +(verb)|get through|wrap up|mop up|polish off|clear up|finish up|complete|finish +finish out|1 +(verb)|round out|complete|finish +finish up|2 +(verb)|get through|wrap up|finish off|mop up|polish off|clear up|complete|finish +(verb)|land up|fetch up|end up|wind up|finish|act|move +finished|5 +(adj)|finished |dressed|polished|fattened|fattening|painted|processed|smooth +(adj)|finished |complete|concluded|ended|over|all over|terminated|done|through|through with|done with|through with|fin de siecle|up +(adj)|polished +(adj)|painted +(adj)|ruined|destroyed +finisher|3 +(noun)|closer|reliever|relief pitcher|fireman +(noun)|painter +(noun)|worker +finishing|2 +(noun)|coating|finish|decorativeness +(noun)|finish|completion|culmination|closing|windup|mop up +finishing coat|2 +(noun)|finish coat|coat of paint +(noun)|finish coat|coating|coat|plaster +finishing line|1 +(noun)|finish line|line|finish|destination|goal +finishing school|1 +(noun)|school +finishing touch|1 +(noun)|capstone|copestone|touch +finite|2 +(adj)|finite |bounded|delimited|exhaustible|impermanent|limited|mortal +(adj)|finite |tensed +finiteness|1 +(noun)|finitude|boundedness|quality +finitude|1 +(noun)|finiteness|boundedness|quality +fink|1 +(noun)|snitch|snitcher|stoolpigeon|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +finland|1 +(noun)|Finland|Republic of Finland|Suomi|European country|European nation +finn|1 +(noun)|Finn|European +finnan|1 +(noun)|finnan haddie|finnan haddock|smoked haddock|haddock +finnan haddie|1 +(noun)|finnan haddock|finnan|smoked haddock|haddock +finnan haddock|1 +(noun)|finnan haddie|finnan|smoked haddock|haddock +finnbogadottir|1 +(noun)|Finnbogadottir|Vigdis Finnbogadottir|president +finnic|1 +(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric|Finno-Ugrian +finnish|2 +(adj)|Finnish|European country|European nation +(noun)|Finnish|Suomi|Baltic-Finnic +finnish capital|1 +(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital|port +finnish monetary unit|1 +(noun)|Finnish monetary unit|monetary unit +finno-ugrian|1 +(noun)|Finno-Ugric|Finno-Ugrian|Uralic|Uralic language +finno-ugric|1 +(noun)|Finno-Ugric|Finno-Ugrian|Uralic|Uralic language +finno-ugric-speaking|1 +(adj)|Finno-Ugric-speaking|communicative |communicatory +finocchio|1 +(noun)|fennel|Florence fennel|vegetable|veggie +fins|7 +(noun)|flipper|flippers|fin|shoe +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|tail fin|tailfin|fin|decoration|ornament|ornamentation +(noun)|louver|louvre|fin|slat|spline +(noun)|flipper|flippers|fin|shoe +(noun)|fin|stabilizer|stabiliser +(noun)|fin|extremity|appendage|member +fiord|1 +(noun)|fjord|inlet|recess +fipple|1 +(noun)|plug|stopper|stopple +fipple flute|1 +(noun)|fipple pipe|recorder|vertical flute|woodwind|woodwind instrument|wood +fipple pipe|1 +(noun)|fipple flute|recorder|vertical flute|woodwind|woodwind instrument|wood +fir|2 +(noun)|wood +(noun)|fir tree|true fir|conifer|coniferous tree +fir clubmoss|1 +(noun)|mountain clubmoss|little clubmoss|Lycopodium selago|club moss|club-moss|lycopod +fir cone|1 +(noun)|cone|strobilus|strobile +fir tree|1 +(noun)|fir|true fir|conifer|coniferous tree +fire|17 +(noun)|happening|occurrence|natural event +(noun)|flame|flaming|combustion|burning +(noun)|firing|attack|onslaught|onset|onrush +(noun)|fireplace|hearth|open fireplace +(noun)|attack|flak|flack|blast|criticism|unfavorable judgment +(noun)|ardor|ardour|fervor|fervour|fervency|fervidness|passion|passionateness +(noun)|element +(noun)|trial|tribulation|visitation +(verb)|open fire|shoot +(verb)|discharge +(verb)|bake +(verb)|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove +(verb)|discharge|go off +(verb)|chase away|drive out|turn back|drive away|dispel|drive off|run off +(verb)|arouse|elicit|enkindle|kindle|evoke|raise|provoke|make|create +(verb)|burn|burn down|destroy|ruin +(verb)|fuel|supply|provide|render|furnish +fire-bellied toad|1 +(noun)|Bombina bombina|frog|toad|toad frog|anuran|batrachian|salientian +fire-bush|3 +(noun)|marmalade bush|fire bush|Streptosolen jamesonii|shrub|bush +(noun)|summer cypress|burning bush|fire bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +(noun)| +fire-eater|3 +(noun)|fireman|firefighter|fire fighter|defender|guardian|protector|shielder +(noun)|hothead|grouch|grump|crank|churl|crosspatch +(noun)|fire-swallower|performer|performing artist +fire-on-the-mountain|1 +(noun)|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge +fire-raising|1 +(noun)|arson|incendiarism|burning|combustion +fire-resistant|1 +(adj)|fire-retardant|fire-resisting|fire-resistive|noncombustible |incombustible +fire-resisting|1 +(adj)|fire-retardant|fire-resistant|fire-resistive|noncombustible |incombustible +fire-resistive|1 +(adj)|fire-retardant|fire-resistant|fire-resisting|noncombustible |incombustible +fire-retardant|1 +(adj)|fire-resistant|fire-resisting|fire-resistive|noncombustible |incombustible +fire-swallower|1 +(noun)|fire-eater|performer|performing artist +fire-wheel|2 +(noun)|blanket flower|Indian blanket|fire wheel|Gaillardia pulchella|gaillardia +(noun)| +fire-worship|1 +(noun)|pyrolatry|worship +fire alarm|2 +(noun)|alarm|alert|warning signal|alarum +(noun)|smoke alarm|alarm|warning device|alarm system +fire and brimstone|1 +(noun)|damnation|eternal damnation +fire ant|1 +(noun)|ant|emmet|pismire +fire beetle|1 +(noun)|firefly|Pyrophorus noctiluca|elaterid beetle|elater|elaterid +fire bell|1 +(noun)|bell +fire blight|1 +(noun)|pear blight|leaf blight +fire brigade|2 +(noun)|fire company|organization|organisation +(noun)|fire department +fire bush|3 +(noun)|marmalade bush|fire-bush|Streptosolen jamesonii|shrub|bush +(noun)|summer cypress|burning bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +(noun)| +fire chief|1 +(noun)|fire marshal|fireman|firefighter|fire fighter|fire-eater +fire code|1 +(noun)|code|codification +fire company|1 +(noun)|fire brigade|organization|organisation +fire control|1 +(noun)|preparation|readying +fire control radar|1 +(noun)|naval radar +fire control system|1 +(noun)|naval weaponry +fire department|1 +(noun)|local department|department of local government +fire door|1 +(noun)|door +fire drill|1 +(noun)|exercise|practice|drill|practice session|recitation +fire engine|1 +(noun)|fire truck|truck|motortruck +fire escape|1 +(noun)|emergency exit|stairway|staircase|stairs|steps +fire extinguisher|1 +(noun)|extinguisher|asphyxiator|device +fire fighter|2 +(noun)|fireman|firefighter|fire-eater|defender|guardian|protector|shielder +(noun)| +fire hook|1 +(noun)|poker|stove poker|salamander|fire iron +fire hose|1 +(noun)|hose|hosepipe +fire hydrant|1 +(noun)|fireplug|plug|hydrant +fire insurance|1 +(noun)|insurance +fire iron|1 +(noun)|implement +fire marshal|1 +(noun)|fire chief|fireman|firefighter|fire fighter|fire-eater +fire marshall|1 +(noun)|official|functionary +fire opal|1 +(noun)|girasol|opal +fire pink|1 +(noun)|Silene virginica|silene|campion|catchfly +fire pit|1 +(noun)|pit|cavity +fire salamander|1 +(noun)|spotted salamander|Salamandra maculosa|salamander +fire sale|2 +(noun)|sale|cut-rate sale|sales event +(noun)|sale|cut-rate sale|sales event +fire screen|1 +(noun)|fireguard|screen +fire ship|1 +(noun)|weapon|arm|weapon system +fire station|1 +(noun)|firehouse|station +fire thorn|2 +(noun)|Pyracantha|pyracanth|firethorn|shrub|bush +(noun)| +fire tongs|1 +(noun)|coal tongs|tongs|pair of tongs|fire iron +fire tower|1 +(noun)|watchtower +fire tree|1 +(noun)|flame tree|Christmas tree|Nuytsia floribunda|parasitic plant +fire trench|1 +(noun)|trench +fire truck|1 +(noun)|fire engine|truck|motortruck +fire up|2 +(verb)|inflame|stir up|wake|ignite|heat|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|light up|light|ignite|light +fire walker|1 +(noun)|performer|performing artist +fire walking|1 +(noun)|ceremony|ceremonial|ceremonial occasion|observance +fire warden|1 +(noun)|forest fire fighter|ranger|official|functionary|fireman|firefighter|fire fighter|fire-eater +fire watcher|1 +(noun)|watchman|watcher|security guard +fire watching|1 +(noun)|civil defense +fire wheel|2 +(noun)|blanket flower|Indian blanket|fire-wheel|Gaillardia pulchella|gaillardia +(noun)| +firearm|1 +(noun)|piece|small-arm|gun +fireball|4 +(noun)|bolide|meteor|shooting star +(noun)|powerhouse|human dynamo|ball of fire|actor|doer|worker +(noun)|ball|globe|orb +(noun)|ball|globe|orb +firebase|1 +(noun)|base|base of operations +firebird|3 +(noun)|scarlet tanager|Piranga olivacea|redbird|tanager +(noun)|Baltimore oriole|Baltimore bird|hangbird|Icterus galbula galbula|northern oriole|Icterus galbula +(noun)|vermillion flycatcher|Pyrocephalus rubinus mexicanus|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +fireboat|1 +(noun)|boat +firebomb|2 +(noun)|incendiary bomb|incendiary|bomb +(verb)|bombard|bomb +firebox|1 +(noun)|furnace +firebrand|2 +(noun)|brand|firewood +(noun)|instigator|provoker|inciter|instigant|troublemaker|trouble maker|troubler|mischief-maker|bad hat +firebrat|1 +(noun)|Thermobia domestica|bristletail +firebreak|1 +(noun)|fireguard|field +firebrick|1 +(noun)|brick +firebug|2 +(noun)|arsonist|incendiary|criminal|felon|crook|outlaw|malefactor +(noun)|heteropterous insect +fireclay|1 +(noun)|clay +firecracker|1 +(noun)|cracker|banger|firework|pyrotechnic +fired|1 +(adj)|discharged|dismissed|laid-off|pink-slipped|unemployed +firedamp|1 +(noun)|gas +firedog|1 +(noun)|andiron|dog|dog-iron|support +firedrake|1 +(noun)|dragon|mythical monster|mythical creature +firefighter|1 +(noun)|fireman|fire fighter|fire-eater|defender|guardian|protector|shielder +firefly|2 +(noun)|fire beetle|Pyrophorus noctiluca|elaterid beetle|elater|elaterid +(noun)|lightning bug|beetle +fireguard|2 +(noun)|firebreak|field +(noun)|fire screen|screen +firehouse|1 +(noun)|fire station|station +firelight|1 +(noun)|light|visible light|visible radiation +firelighter|1 +(noun)|igniter|ignitor|lighter +firelock|1 +(noun)|flintlock|muzzle loader +fireman|4 +(noun)|play|child's play +(noun)|stoker|laborer|manual laborer|labourer|jack +(noun)|reliever|relief pitcher|pitcher|hurler|twirler +(noun)|firefighter|fire fighter|fire-eater|defender|guardian|protector|shielder +fireman's ax|1 +(noun)|fireman's axe|ax|axe +fireman's axe|1 +(noun)|fireman's ax|ax|axe +fireman's carry|1 +(noun)|carry +firenze|1 +(noun)|Firenze|Florence|city|metropolis|urban center +fireplace|1 +(noun)|hearth|open fireplace|recess|niche +fireplug|1 +(noun)|fire hydrant|plug|hydrant +firepower|1 +(noun)|military capability|military strength|strength|military posture|posture +fireproof|2 +(adj)|noncombustible |incombustible +(verb)|proof +fireroom|1 +(noun)|stokehold|stokehole|chamber +fireside|2 +(noun)|hearth|area|country +(noun)|hearth|dwelling|home|domicile|abode|habitation|dwelling house +firestone|2 +(noun)|flint +(noun)|sandstone +firestorm|2 +(noun)|storm|violent storm +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +firethorn|1 +(noun)|Pyracantha|pyracanth|fire thorn|shrub|bush +firetrap|1 +(noun)|building|edifice +firewall|3 +(noun)|drive|thrust|driving force +(noun)|security system +(noun)|wall +firewater|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +fireweed|2 +(noun)|giant willowherb|rosebay willowherb|wickup|Epilobium angustifolium|willowherb +(noun)|Erechtites hieracifolia|weed +firewheel tree|1 +(noun)|wheel tree|Stenocarpus sinuatus|tree +firewood|1 +(noun)|fuel +firework|1 +(noun)|pyrotechnic|low explosive +firing|4 +(noun)|fire|attack|onslaught|onset|onrush +(noun)|discharge|firing off|shooting|shot +(noun)|ignition|lighting|kindling|inflammation|burning|combustion +(noun)|dismissal|dismission|discharge|liberation|release|sack|sacking|termination|ending|conclusion +firing chamber|1 +(noun)|gun chamber|chamber +firing line|2 +(noun)|line +(noun)|class|social class|socio-economic class +firing mechanism|1 +(noun)|gunlock|action|action mechanism +firing off|1 +(noun)|discharge|firing|shooting|shot +firing party|1 +(noun)|firing squad|squad +firing pin|1 +(noun)|striker +firing range|1 +(noun)|target range|practice range +firing squad|1 +(noun)|firing party|squad +firkin|2 +(noun)|British capacity unit|Imperial capacity unit +(noun)|keg +firm|15 +(adj)|steadfast|steady|unbendable|unfaltering|unshakable|unwavering|resolute +(adj)|solid|hard +(adj)|strong|forceful +(adj)|settled +(adj)|steady +(adj)|steady|unfluctuating|stable +(adj)|established|secure +(adj)|healthy +(adj)|crisp|crunchy|fresh +(adj)|fast|immobile|fixed +(adj)|loyal|truehearted|fast|faithful +(noun)|house|business firm|business|concern|business concern|business organization|business organisation +(verb)|tauten|tighten +(verb)|tauten|tighten|fasten +(adv)|firmly|steadfastly|unwaveringly +firm omelet|1 +(noun)|omelet|omelette +firm up|1 +(verb)|arrange|fix up +firmament|1 +(noun)|celestial sphere|sphere|empyrean|heavens|vault of heaven|welkin|surface +firmamental|1 +(adj)|surface +firmer chisel|1 +(noun)|chisel +firmiana|1 +(noun)|Firmiana|genus Firmiana|dilleniid dicot genus +firmiana simplex|1 +(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree +firmly|3 +(adv)|firm|steadfastly|unwaveringly +(adv)|securely +(adv)|hard +firmness|4 +(noun)|soundness|strength +(noun)|resoluteness|resolve|resolution|trait +(noun)|hardness +(noun)|steadiness|immovability|immovableness +firmware|1 +(noun)|microcode|code|computer code +first|16 +(adj)|first |archetypal|archetypical|prototypal|prototypic|prototypical|basic|introductory|initial|firstborn|eldest|freshman|first-year|oldest|original|premier|premiere|premier|prime|prime|early|front|original|primary +(adj)|1st|ordinal +(adj)|inaugural|initiative|initiatory|maiden|opening +(adj)|beginning|opening +(adj)|foremost|world-class|best +(adj)|first +(adj)|low|forward +(noun)|number one|rank +(noun)|number one|number 1|ordinal number|ordinal|no. +(noun)|beginning|commencement|outset|get-go|start|kickoff|starting time|showtime|offset|point|point in time +(noun)|first base|position +(noun)|first-class honours degree|honours|honours degree +(noun)|first gear|low gear|low|gear|gear mechanism +(adv)|firstly|foremost|first of all|first off +(adv)|for the first time +(adv)|foremost +first-aid kit|1 +(noun)|kit|outfit +first-aid station|1 +(noun)|station +first-class|1 +(adj)|excellent|fantabulous|superior +first-class honours degree|1 +(noun)|first|honours|honours degree +first-class mail|1 +(noun)|first class|1st class|1st-class mail|priority mail|mail +first-come-first-serve|1 +(adj)|rush|unreserved +first-degree burn|1 +(noun)|burn +first-nighter|1 +(noun)|playgoer|theatergoer|theatregoer +first-order correlation|1 +(noun)|partial correlation +first-place finish|1 +(noun)|win +first-rate|2 +(adj)|ace|A-one|crack|super|tiptop|topnotch|tops|superior +(adv)|very well +first-rater|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +first-string|2 +(adj)|regular +(adj)|primary +first-year|1 +(adj)|freshman|first +first aid|1 +(noun)|care|attention|aid|tending +first amendment|1 +(noun)|First Amendment|amendment +first and foremost|1 +(adv)|most importantly +first and last|1 +(adv)|above all +first appearance|1 +(noun)|introduction|debut|launching|unveiling|entry|beginning|start|commencement +first balcony|1 +(noun)|mezzanine|balcony +first baron beveridge|1 +(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist|economic expert +first baron kelvin|1 +(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist +first baron lytton|1 +(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer|author +first baron macaulay|1 +(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian|historiographer +first baron marks of broughton|1 +(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman|man of affairs +first baron passfield|1 +(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist|economist|economic expert +first baron rutherford|1 +(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist +first baron rutherford of nelson|1 +(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist +first baron tennyson|1 +(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet +first base|3 +(noun)|base|bag +(noun)|first|position +(noun)|first step|initiative|opening move|opening +first baseman|1 +(noun)|first sacker|infielder +first battle of ypres|1 +(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle +first blush|1 +(noun)|impression|feeling|belief|notion|opinion +first cause|1 +(noun)|prime mover|primum mobile|causal agent|cause|causal agency +first class|3 +(noun)|superiority|high quality +(noun)|1st class|first-class mail|1st-class mail|priority mail|mail +(noun)|accommodation +first cousin|1 +(noun)|cousin|cousin-german|full cousin|relative|relation +first cranial nerve|1 +(noun)|olfactory nerve|nervii olfactorii|cranial nerve +first crusade|1 +(noun)|First Crusade|Crusade +first degree|1 +(noun)|degree +first derivative|1 +(noun)|derived function|derivative|differential coefficient|differential|calculation|computation|figuring|reckoning +first duke of marlborough|1 +(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general|full general +first duke of wellington|1 +(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|the Iron Duke|general|full general|statesman|solon|national leader +first earl kitchener of khartoum|1 +(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal +first earl of beaconsfield|1 +(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman|solon|national leader +first earl of chatham|1 +(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman|solon|national leader +first earl of orford|1 +(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman|solon|national leader +first earl wavell|1 +(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general|full general|field marshal +first epistle of john|1 +(noun)|First Epistle of John|I John|book +first epistle of paul the apostle to the corinthians|1 +(noun)|First Epistle of Paul the Apostle to the Corinthians|First Epistle to the Corinthians|I Corinthians|book +first epistle of paul the apostle to the thessalonians|1 +(noun)|First Epistle of Paul the Apostle to the Thessalonians|First Epistle to the Thessalonians|I Thessalonians|book +first epistle of paul the apostle to timothy|1 +(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|book +first epistle of peter|1 +(noun)|First Epistle of Peter|I Peter|book +first epistle to the corinthians|1 +(noun)|First Epistle of Paul the Apostle to the Corinthians|First Epistle to the Corinthians|I Corinthians|book +first epistle to the thessalonians|1 +(noun)|First Epistle of Paul the Apostle to the Thessalonians|First Epistle to the Thessalonians|I Thessalonians|book +first epistle to timothy|1 +(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|book +first estate|1 +(noun)|lords spiritual|clergy +first floor|1 +(noun)|ground floor|ground level|floor|level|storey|story +first gear|1 +(noun)|first|low gear|low|gear|gear mechanism +first grade|1 +(noun)|class|form|grade +first half|1 +(noun)|half +first harmonic|1 +(noun)|fundamental|fundamental frequency|harmonic +first in first out|1 +(noun)|FIFO|inventory accounting +first lady|2 +(noun)|achiever|winner|success|succeeder +(noun)|wife|married woman +first language|1 +(noun)|mother tongue|maternal language|natural language|tongue +first law of motion|1 +(noun)|Newton's first law of motion|Newton's first law|Newton's law of motion|Newton's law|law of motion +first law of thermodynamics|1 +(noun)|conservation of energy|law of conservation of energy|conservation|law of thermodynamics +first lieutenant|1 +(noun)|lieutenant +first light|1 +(noun)|dawn|dawning|morning|aurora|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +first lord of the treasury|1 +(noun)|Treasury|First Lord of the Treasury|cabinet minister +first marquess cornwallis|1 +(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer|general|full general +first mate|1 +(noun)|mate|officer|ship's officer +first moment|1 +(noun)|arithmetic mean|expectation|expected value|mean|mean value +first mortgage|1 +(noun)|mortgage +first name|1 +(noun)|given name|forename|name +first of all|1 +(adv)|first|firstly|foremost|first off +first of may|1 +(noun)|May Day|First of May|May 1|day +first of october antifascist resistance group|1 +(noun)|First of October Antifascist Resistance Group|GRAPO|terrorist organization|terrorist group|foreign terrorist organization|FTO +first off|1 +(adv)|first|firstly|foremost|first of all +first offender|1 +(noun)|convict +first period|1 +(noun)|playing period|period of play|play +first person|1 +(noun)|person +first principle|1 +(noun)|rudiment|first rudiment|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +first quarter|1 +(noun)|half-moon +first reading|1 +(noun)|presentation +first reich|1 +(noun)|Holy Roman Empire|First Reich|Reich +first rudiment|1 +(noun)|rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +first sacker|1 +(noun)|first baseman|infielder +first sergeant|1 +(noun)|sergeant first class|sergeant +first state|1 +(noun)|Delaware|Diamond State|First State|DE|American state +first step|1 +(noun)|initiative|opening move|opening|beginning|start|commencement +first stomach|1 +(noun)|rumen|stomach|tummy|tum|breadbasket +first strike|1 +(noun)|strike +first team|1 +(noun)|varsity|team|squad +first trimester|1 +(noun)|trimester +first viscount haldane of cloan|1 +(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman|solon|national leader +first viscount nuffield|1 +(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist|philanthropist|altruist +first water|1 +(noun)|superiority|high quality +first world war|1 +(noun)|World War I|World War 1|Great War|First World War|War to End War|world war +firstborn|2 +(adj)|eldest|first +(noun)|eldest|offspring|progeny|issue +firsthand|1 +(adj)|primary +firstly|1 +(adv)|first|foremost|first of all|first off +firth|2 +(noun)|Firth|J. R. Firth|John Rupert Firth|linguist|linguistic scientist +(noun)|estuary +firth of clyde|1 +(noun)|Firth of Clyde|firth +firth of forth|1 +(noun)|Firth of Forth|firth +fisa|1 +(noun)|Foreign Intelligence Surveillance Act|FISA|legislative act|statute +fisc|1 +(noun)|treasury|exchequer +fiscal|1 +(adj)|financial |commercial enterprise|business enterprise|business +fiscal policy|1 +(noun)|economic policy +fiscal year|1 +(noun)|financial year|year|twelvemonth|yr +fiscally|1 +(adv)|in fiscal matters +fischer|3 +(noun)|Fischer|Hans Fischer|chemist +(noun)|Fischer|Emil Hermann Fischer|chemist +(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master +fischer's slime mushroom|1 +(noun)|Fischer's slime mushroom|slime mushroom +fish|6 +(noun)|aquatic vertebrate +(noun)|food +(noun)|Pisces|Fish|person|individual|someone|somebody|mortal|human|soul +(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac|star sign|sign|mansion|house|planetary house +(verb)|angle|search|seek|look for +(verb)|catch|grab|take hold of +fish-fly|2 +(noun)|fish fly|neuropteron|neuropteran|neuropterous insect +(noun)| +fish-worship|1 +(noun)|ichthyolatry|zoolatry|animal-worship +fish and chips|1 +(noun)|dish +fish ball|2 +(noun)|gefilte fish|dish +(noun)|fish cake|patty|cake +fish bowl|3 +(noun)|goldfish bowl|fishbowl|situation|state of affairs +(noun)|fishbowl|goldfish bowl|bowl|aquarium|fish tank|marine museum +(noun)| +fish cake|1 +(noun)|fish ball|patty|cake +fish chowder|1 +(noun)|chowder +fish doctor|1 +(noun)|Gymnelis viridis|eelpout|pout +fish duck|1 +(noun)|merganser|sawbill|sheldrake|sea duck +fish eagle|1 +(noun)|osprey|fish hawk|sea eagle|Pandion haliaetus|hawk +fish family|1 +(noun)|family +fish farm|1 +(noun)|workplace|work +fish filet|1 +(noun)|fillet|filet|fish fillet|piece|slice +fish fillet|1 +(noun)|fillet|filet|fish filet|piece|slice +fish finger|1 +(noun)|fish stick|dish +fish fly|2 +(noun)|fish-fly|neuropteron|neuropteran|neuropterous insect +(noun)| +fish fry|1 +(noun)|cookout +fish fuddle|1 +(noun)|Jamaica dogwood|Piscidia piscipula|Piscidia erythrina|tree +fish genus|1 +(noun)|genus +fish geranium|1 +(noun)|bedding geranium|zonal pelargonium|Pelargonium hortorum|geranium +fish glue|1 +(noun)|glue|gum|mucilage|animal product +fish hawk|1 +(noun)|osprey|fish eagle|sea eagle|Pandion haliaetus|hawk +fish house punch|1 +(noun)|punch +fish joint|1 +(noun)|butt joint|butt +fish knife|1 +(noun)|table knife +fish ladder|1 +(noun)|passage +fish loaf|1 +(noun)|meat loaf|meatloaf +fish louse|1 +(noun)|copepod|copepod crustacean +fish lure|1 +(noun)|fisherman's lure|bait|decoy|lure +fish meal|1 +(noun)|organic|organic fertilizer|organic fertiliser|feed|provender +fish mousse|1 +(noun)|mousse +fish oil|1 +(noun)|animal oil +fish scale|1 +(noun)|scale +fish slice|1 +(noun)|turner|food turner +fish steak|1 +(noun)|steak +fish stew|1 +(noun)|stew +fish stick|1 +(noun)|fish finger|dish +fish tank|1 +(noun)|aquarium|marine museum|vivarium|tank|storage tank +fishbone|1 +(noun)|bone|os +fishbowl|2 +(noun)|goldfish bowl|fish bowl|situation|state of affairs +(noun)|fish bowl|goldfish bowl|bowl|aquarium|fish tank|marine museum +fisher|2 +(noun)|fisherman|skilled worker|trained worker +(noun)|pekan|fisher cat|black cat|Martes pennanti|marten|marten cat +fisher cat|1 +(noun)|fisher|pekan|black cat|Martes pennanti|marten|marten cat +fisherman|1 +(noun)|fisher|skilled worker|trained worker +fisherman's bend|1 +(noun)|knot +fisherman's knot|1 +(noun)|true lover's knot|truelove knot|knot +fisherman's lure|1 +(noun)|fish lure|bait|decoy|lure +fishery|1 +(noun)|piscary|workplace|work +fisheye|1 +(adj)|wide-angle|camera lens|optical lens +fisheye lens|1 +(noun)|wide-angle lens|camera lens|optical lens +fishgig|1 +(noun)|spear|gig|fizgig|lance|implement +fishhook|1 +(noun)|hook +fishily|1 +(adv)|queerly +fishing|2 +(noun)|sportfishing|outdoor sport|field sport +(noun)|commercial enterprise|business enterprise|business +fishing boat|1 +(noun)|fishing smack|fishing vessel|vessel|watercraft +fishing eagle|1 +(noun)|Haliaeetus leucorhyphus|sea eagle +fishing gear|1 +(noun)|tackle|fishing tackle|fishing rig|rig|gear|paraphernalia|appurtenances +fishing licence|1 +(noun)|fishing license|fishing permit|license|licence|permit +fishing license|1 +(noun)|fishing licence|fishing permit|license|licence|permit +fishing line|1 +(noun)|cord +fishing net|1 +(noun)|fishnet|net +fishing permit|1 +(noun)|fishing license|fishing licence|license|licence|permit +fishing pole|1 +(noun)|fishing rod|rod +fishing rig|1 +(noun)|fishing gear|tackle|fishing tackle|rig|gear|paraphernalia|appurtenances +fishing rod|1 +(noun)|fishing pole|rod +fishing season|1 +(noun)|season +fishing smack|1 +(noun)|fishing boat|fishing vessel|vessel|watercraft +fishing tackle|1 +(noun)|fishing gear|tackle|fishing rig|rig|gear|paraphernalia|appurtenances +fishing vessel|1 +(noun)|fishing boat|fishing smack|vessel|watercraft +fishing worm|1 +(noun)|earthworm|angleworm|fishworm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +fishlike|1 +(adj)|animal +fishmonger|1 +(noun)|fishwife|trader|bargainer|dealer|monger +fishnet|1 +(noun)|fishing net|net +fishpaste|1 +(noun)|spread|paste +fishplate|1 +(noun)|plate +fishpole bamboo|1 +(noun)|gosan-chiku|hotei-chiku|Phyllostachys aurea|bamboo +fishpond|1 +(noun)|pond|pool +fishtail|1 +(verb)|decelerate|slow down +fishtail bit|1 +(noun)|blade bit|drilling bit|drill bit +fishtail palm|1 +(noun)|palm|palm tree +fishwife|1 +(noun)|fishmonger|trader|bargainer|dealer|monger +fishworm|1 +(noun)|earthworm|angleworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +fishy|1 +(adj)|funny|queer|shady|suspect|suspicious|questionable +fissile|2 +(adj)|fissionable +(adj)|fissile +fission|2 +(noun)|nuclear fission|nuclear reaction +(noun)|asexual reproduction|agamogenesis +fission bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|plutonium bomb|nuclear weapon|bomb +fissionable|1 +(adj)|fissionable |fissile +fissiparity|2 +(noun)|asexual reproduction|agamogenesis +(noun)|divisibility +fissiparous|2 +(adj)|asexual |nonsexual +(adj)|breakaway|separatist|independent +fissiped|1 +(noun)|fissiped mammal|carnivore +fissiped mammal|1 +(noun)|fissiped|carnivore +fissipedia|1 +(noun)|Fissipedia|placental|placental mammal|eutherian|eutherian mammal +fissure|4 +(noun)|crevice|cranny|crack|chap|depression|impression|imprint +(noun)|crack|cleft|crevice|scissure|opening|gap +(noun)|groove|vallecula +(verb)|crack +fissure of rolando|1 +(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus centralis|sulcus +fissure of sylvius|1 +(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus lateralis cerebri|sulcus +fissurella|1 +(noun)|Fissurella|genus Fissurella|mollusk genus +fissurella apertura|1 +(noun)|keyhole limpet|Fissurella apertura|Diodora apertura|limpet +fissurellidae|1 +(noun)|Fissurellidae|family Fissurellidae|mollusk family +fist|1 +(noun)|clenched fist|hand|manus|mitt|paw +fistfight|2 +(noun)|fisticuffs|slugfest|fight|fighting|combat|scrap +(verb)|fight|struggle +fistful|1 +(noun)|handful|containerful +fisticuffs|2 +(noun)|fistfight|slugfest|fight|fighting|combat|scrap +(noun)|boxing|pugilism|contact sport +fistmele|1 +(noun)|linear unit +fistula|2 +(noun)|fistulous withers|animal disease +(noun)|sinus|passage|passageway +fistular|1 +(adj)|fistulate|fistulous|hollow +fistularia|1 +(noun)|Fistularia|genus Fistularia|fish genus +fistulariidae|1 +(noun)|Fistulariidae|family Fistulariidae|fish family +fistulate|1 +(adj)|fistular|fistulous|hollow +fistulina|1 +(noun)|Fistulina|genus Fistulina|fungus genus +fistulina hepatica|1 +(noun)|beefsteak fungus|Fistulina hepatica|polypore|pore fungus|pore mushroom +fistulinaceae|1 +(noun)|Fistulinaceae|family Fistulinaceae|fungus family +fistulous|2 +(adj)|passage|passageway +(adj)|fistular|fistulate|hollow +fistulous withers|1 +(noun)|fistula|animal disease +fit|16 +(adj)|fit |acceptable|appropriate|suitable|suited +(adj)|primed|set|ready +(adj)|fit |healthy|able|able-bodied|conditioned|in condition|healthy|sound|well +(noun)|tantrum|scene|conniption|bad temper|ill temper +(noun)|paroxysm|convulsion|attack +(noun)|manner|mode|style|way|fashion +(noun)|burst|activity +(verb)|suit|accommodate|meet|conform to +(verb)|go +(verb)|meet|conform to|match|correspond|check|jibe|gibe|tally|agree +(verb)|shape|form +(verb)|adapt|accommodate +(verb)|match|correspond|check|jibe|gibe|tally|agree|equal|be +(verb)|be +(verb)|equip|fit out|outfit|supply|provide|render|furnish +(verb)|match|adjust|set|correct +fit for|1 +(adj)|fit |acceptable|appropriate|suitable|suited +fit in|1 +(verb)|harmonize|harmonise|consort|accord|concord|agree|match|fit|correspond|check|jibe|gibe|tally|agree +fit out|2 +(verb)|equip|fit|outfit|supply|provide|render|furnish +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|apparel|change state|turn +fit the bill|1 +(verb)|fill the bill|meet|fit|conform to +fit to|1 +(adj)|fit |acceptable|appropriate|suitable|suited +fitch|1 +(noun)|polecat|foulmart|foumart|Mustela putorius|musteline mammal|mustelid|musteline +fitful|2 +(adj)|spasmodic|sporadic +(adj)|interrupted|off-and-on|broken +fitfulness|1 +(noun)|jerkiness|irregularity|unregularity +fitly|1 +(adv)|appropriately|suitably|fittingly|befittingly +fitment|1 +(noun)|furniture|piece of furniture|article of furniture +fitness|4 +(noun)|fittingness|suitability|suitableness +(noun)|physical fitness|good shape|good condition|condition|shape +(noun)|seaworthiness|soundness +(noun)|competence|competency +fits and starts|1 +(noun)|burst|fit +fitted out|3 +(adj)|equipped|seaworthy +(adj)|equipped|prepared +(adj)|outfitted|furnished |equipped +fitted sheet|1 +(noun)|contour sheet|sheet|bed sheet +fitter|5 +(adj)|healthier|better +(adj)|fit |acceptable|appropriate|suitable|suited +(adj)|fit|primed|set|ready +(adj)|fit |healthy|able|able-bodied|conditioned|in condition|healthy|sound|well +(noun)|tailor|seamster|sartor +fitting|6 +(adj)|proper +(adj)|meet|just +(noun)|adjustment|accommodation|improvement|betterment|advance +(noun)|accessory|appurtenance|supplement|add-on +(noun)|appointment|furnishings +(noun)|try-on|trying on|test|trial|run +fittingly|1 +(adv)|appropriately|suitably|befittingly|fitly +fittingness|1 +(noun)|fitness|suitability|suitableness +fitzgerald|3 +(noun)|Fitzgerald|Edward Fitzgerald|poet|interpreter|translator +(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer|author +(noun)|Fitzgerald|Ella Fitzgerald|singer|vocalist|vocalizer|vocaliser +five|3 +(adj)|5|v|cardinal +(noun)|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|basketball team|team|squad +five-finger|1 +(noun)|cinquefoil|shrub|bush +five-fingered maidenhair fern|1 +(noun)|American maidenhair fern|Adiantum pedatum|maidenhair|maidenhair fern +five-flowered gentian|1 +(noun)|agueweed|ague weed|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +five-hitter|1 +(noun)|5-hitter|baseball|baseball game|ball +five-hundredth|1 +(adj)|500th|ordinal +five-membered|1 +(adj)|5-membered|membered +five-point bishop's cap|1 +(noun)|Mitella pentandra|miterwort|mitrewort|bishop's cap +five-spot|3 +(noun)|fiver|five dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +(noun)|Nemophila maculata|nemophila +(noun)|spot|domino|dice|die +five dollar bill|1 +(noun)|fiver|five-spot|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +five hundred|3 +(adj)|500|d|cardinal +(noun)|500|D|large integer +(noun)|euchre|card game|cards +five iron|1 +(noun)|mashie|iron +five nations|1 +(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league +five spice powder|1 +(noun)|spice +fivefold|1 +(adj)|quintuple|multiple +fivepence|1 +(noun)|coin +fiver|1 +(noun)|five-spot|five dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +fives|3 +(noun)|court game +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|basketball team|five|team|squad +fivesome|2 +(noun)|five|5|V|cinque|quint|quintet|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|quintet|quintette|gathering|assemblage +fix|16 +(noun)|hole|jam|mess|muddle|pickle|kettle of fish|difficulty +(noun)|intravenous injection +(noun)|repair|fixing|fixture|mend|mending|reparation|improvement +(noun)|exemption|immunity|granting immunity +(noun)|localization|localisation|location|locating|determination|finding +(verb)|repair|mend|bushel|doctor|furbish up|restore|touch on|better|improve|amend|ameliorate|meliorate +(verb)|fasten|secure|attach +(verb)|specify|set|determine|limit|choose|take|select|pick out +(verb)|cook|ready|make|prepare|create from raw material|create from raw stuff +(verb)|pay back|pay off|get|get even|get back +(verb)|establish|found|plant|constitute|institute +(verb)|prepare|set up|ready|gear up|set +(verb)|fixate|attach +(verb)|sterilize|sterilise|desex|unsex|desexualize|desexualise|operate on|operate +(verb)|situate|posit|deposit|put|set|place|pose|position|lay +(verb)|prepare|set up|ready|gear up|set|change|alter|modify +fix-it shop|1 +(noun)|repair shop|shop|store +fix up|2 +(verb)|provide|supply|ply|cater +(verb)|arrange|agree|hold|concur|concord +fixable|1 +(adj)|repairable|serviceable +fixate|4 +(verb)|bind|tie|attach|bond +(verb)|attend|hang|advert|pay heed|give ear +(verb)|fix|attach +(verb)|settle on|freeze|stop dead +fixation|4 +(noun)|arrested development|infantile fixation|regression|abnormality|abnormalcy|abnormal condition +(noun)|obsession|preoccupation +(noun)|fastening|attachment +(noun)|fixing|preservation +fixative|2 +(noun)|fixing agent|fixer +(noun)|varnish +fixed|9 +(adj)|determinate +(adj)|set|rigid|nonmoving |unmoving +(adj)|fixed |fast|firm|immobile|leaded|stationary|taped|unadjustable|geostationary|geosynchronous|secure +(adj)|fastened|steady +(adj)|frozen|unchangeable +(adj)|reconditioned|repaired|restored +(adj)|flat|regressive +(adj)|given|specified +(adj)|intent|concentrated +fixed-combination drug|1 +(noun)|medicine|medication|medicament|medicinal drug +fixed-cycle operation|1 +(noun)|operation +fixed-income|1 +(adj)|invariable +fixed-point notation|1 +(noun)|fixed-point representation system|mathematical notation +fixed-point number|1 +(noun)|number +fixed-point part|1 +(noun)|mantissa|fraction +fixed-point representation system|1 +(noun)|fixed-point notation|mathematical notation +fixed-width font|1 +(noun)|typewriter font|constant-width font|monospaced font|font|fount|typeface|face +fixed charge|1 +(noun)|fixed cost|fixed costs|charge +fixed cost|1 +(noun)|fixed charge|fixed costs|charge +fixed costs|2 +(noun)|fixed charge|fixed cost|charge +(noun)|fixed charge|fixed cost|charge +fixed disk|1 +(noun)|hard disc|hard disk|magnetic disk|magnetic disc|disk|disc +fixed intonation|1 +(noun)|intonation +fixed investment trust|1 +(noun)|nondiscretionary trust|investment company|investment trust|investment firm|fund +fixed oil|1 +(noun)|fatty oil|oil +fixed phagocyte|1 +(noun)|phagocyte|scavenger cell +fixed star|1 +(noun)|star +fixed storage|1 +(noun)|read-only memory|ROM|read-only storage|memory|computer memory|storage|computer storage|store|memory board +fixed up|1 +(adj)|restored +fixedness|3 +(noun)|stationariness|immobility|motionlessness|stillness +(noun)|fastness|fixity|fixture|secureness|immovability|immovableness +(noun)|unalterability|changelessness|unchangeability|unchangeableness|unchangingness +fixer|4 +(noun)|influence peddler|important person|influential person|personage +(noun)|fixing agent|compound|chemical compound +(noun)|repairman|repairer|maintenance man|service man|skilled worker|trained worker +(noun)|methadone|methadone hydrochloride|methadon|dolophine hydrochloride|synthetic heroin|narcotic +fixer-upper|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +fixing|4 +(noun)|repair|fix|fixture|mend|mending|reparation|improvement +(noun)|fastener|fastening|holdfast|restraint|constraint +(noun)|neutering|altering|sterilization|sterilisation +(noun)|fixation|preservation +fixing agent|1 +(noun)|fixer|compound|chemical compound +fixings|6 +(noun)|ingredient|foodstuff|food product +(noun)|trimmings|accessory|appurtenance|supplement|add-on +(noun)|repair|fix|fixing|fixture|mend|mending|reparation|improvement +(noun)|fastener|fastening|holdfast|fixing|restraint|constraint +(noun)|neutering|fixing|altering|sterilization|sterilisation +(noun)|fixation|fixing|preservation +fixity|2 +(noun)|fastness|fixedness|fixture|secureness|immovability|immovableness +(noun)|immutability|immutableness|changelessness|unchangeability|unchangeableness|unchangingness +fixture|4 +(noun)|artifact|artefact +(noun)|regular|habitue|patron|frequenter +(noun)|fastness|fixedness|fixity|secureness|immovability|immovableness +(noun)|repair|fix|fixing|mend|mending|reparation|improvement +fizgig|2 +(noun)|spear|gig|fishgig|lance|implement +(noun)|firework|pyrotechnic +fizz|2 +(noun)|beverage|drink|drinkable|potable +(verb)|foam|froth|effervesce|sparkle|bubble +fizzing|1 +(adj)|fizzy|effervescent +fizzle|1 +(verb)|taper off|peter out|fizzle out|discontinue +fizzle out|1 +(verb)|taper off|peter out|fizzle|discontinue +fizzy|1 +(adj)|fizzing|effervescent +fjord|1 +(noun)|fiord|inlet|recess +fl|1 +(noun)|Florida|Sunshine State|Everglade State|FL|American state +flab|1 +(noun)|adipose tissue|fat|fatty tissue +flabbergast|1 +(verb)|boggle|bowl over|surprise +flabbergasted|1 +(adj)|dumbfounded|dumfounded|stupefied|thunderstruck|surprised +flabbiness|1 +(noun)|limpness|flaccidity|softness +flabby|1 +(adj)|flaccid|soft +flaccid|2 +(adj)|lax|limp|slack|weak +(adj)|flabby|soft +flaccid bladder|1 +(noun)|bladder disorder +flaccid paralysis|1 +(noun)|nervous disorder|neurological disorder|neurological disease +flaccidity|1 +(noun)|flabbiness|limpness|softness +flack|3 +(noun)|flak catcher|flak|flack catcher|spokesperson|interpreter|representative|voice +(noun)|fire|attack|flak|blast|criticism|unfavorable judgment +(noun)|antiaircraft|antiaircraft gun|flak|pom-pom|ack-ack|ack-ack gun|gun +flack catcher|1 +(noun)|flak catcher|flak|flack|spokesperson|interpreter|representative|voice +flacourtia|1 +(noun)|Flacourtia|genus Flacourtia|dilleniid dicot genus +flacourtia family|1 +(noun)|Flacourtiaceae|family Flacourtiaceae|dilleniid dicot family +flacourtia indica|1 +(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub|bush +flacourtiaceae|1 +(noun)|Flacourtiaceae|family Flacourtiaceae|flacourtia family|dilleniid dicot family +flag|12 +(noun)|emblem +(noun)|iris|fleur-de-lis|sword lily|iridaceous plant +(noun)|signal flag|visual signal +(noun)|masthead|list|listing +(noun)|pin|golf equipment +(noun)|flagstone|paving stone +(noun)|tail +(verb)|sign|signal|signalize|signalise|flag down +(verb)|mark +(verb)|sag|droop|swag|sink|drop|drop down +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|ease up|ease off|slacken off|decrease|diminish|lessen|fall +flag-waver|1 +(noun)|chauvinist|jingoist|jingo|hundred-percenter|patrioteer|patriot|nationalist +flag-waving|1 +(adj)|chauvinistic|jingoistic|nationalistic|ultranationalistic|superpatriotic|patriotic |loyal +flag captain|1 +(noun)|captain|skipper +flag day|1 +(noun)|Flag Day|June 14|day +flag down|1 +(verb)|stop +flag of truce|1 +(noun)|white flag|flag +flag officer|1 +(noun)|commissioned naval officer +flag rank|1 +(noun)|military rank|military rating|paygrade|rating +flag smut|1 +(noun)|smut +flag smut fungus|1 +(noun)|smut|smut fungus +flag stop|1 +(noun)|whistle stop|way station|railway station|railroad station|railroad terminal|train station|train depot +flag waving|1 +(noun)|jingoism|demagoguery|demagogy +flagellant|2 +(noun)|masochist +(noun)|penitent +flagellata|1 +(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class +flagellate|3 +(adj)|flagellated|whiplike|process|outgrowth|appendage +(noun)|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore|protozoan|protozoon +(verb)|scourge|flog|welt|whip|lather|lash|slash|strap|trounce +flagellate protozoan|1 +(noun)|flagellate|flagellated protozoan|mastigophoran|mastigophore|protozoan|protozoon +flagellated|1 +(adj)|flagellate|whiplike|process|outgrowth|appendage +flagellated cell|1 +(noun)|cell +flagellated protozoan|1 +(noun)|flagellate|flagellate protozoan|mastigophoran|mastigophore|protozoan|protozoon +flagellation|1 +(noun)|whipping|tanning|flogging|lashing|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +flagellum|2 +(noun)|scourge|whip +(noun)|process|outgrowth|appendage +flageolet|2 +(noun)|haricot|common bean +(noun)|treble recorder|shepherd's pipe|fipple flute|fipple pipe|recorder|vertical flute +flagfish|1 +(noun)|American flagfish|Jordanella floridae|killifish +flagging|1 +(adj)|drooping|tired +flagitious|1 +(adj)|atrocious|grievous|heinous|monstrous|evil |wicked +flagon|1 +(noun)|vessel +flagpole|2 +(noun)|range pole|ranging pole|surveying instrument|surveyor's instrument +(noun)|flagstaff|staff +flagrant|1 +(adj)|crying|egregious|glaring|gross|rank|conspicuous |obvious +flagroot|1 +(noun)|sweet flag|calamus|sweet calamus|myrtle flag|Acorus calamus|marsh plant|bog plant|swamp plant +flagship|2 +(noun)|thing +(noun)|ship +flagstaff|2 +(noun)|Flagstaff|town +(noun)|flagpole|staff +flagstone|1 +(noun)|flag|paving stone +flagyl|1 +(noun)|metronidazole|Flagyl|antiprotozoal|antiprotozoal drug +flail|3 +(noun)|implement +(verb)|thrash|thresh|lam|beat|beat up|work over +(verb)|thresh|beat|flap +flair|3 +(noun)|genius|endowment|gift|talent|natural endowment +(noun)|dash|elan|panache|style|elegance +(noun)|flare|shape|form +flak|3 +(noun)|flak catcher|flack catcher|flack|spokesperson|interpreter|representative|voice +(noun)|fire|attack|flack|blast|criticism|unfavorable judgment +(noun)|antiaircraft|antiaircraft gun|flack|pom-pom|ack-ack|ack-ack gun|gun +flak catcher|1 +(noun)|flak|flack catcher|flack|spokesperson|interpreter|representative|voice +flake|6 +(noun)|snowflake|crystal +(noun)|eccentric|eccentric person|oddball|geek|anomaly|unusual person +(noun)|bit|chip|fleck|scrap|fragment +(verb)|form +(verb)|cover +(verb)|peel off|peel|flake off|chip|chip off|come off|break away|break off +flake off|1 +(verb)|peel off|peel|flake|chip|chip off|come off|break away|break off +flake out|1 +(verb)|fall asleep|dope off|drift off|nod off|drop off|doze off|drowse off +flakey|1 +(adj)|flaky|tender +flakiness|2 +(noun)|craziness|daftness|insanity +(noun)|brittleness|crispness|crispiness +flaky|2 +(adj)|flakey|tender +(adj)|bizarre|eccentric|freakish|freaky|off-the-wall|outlandish|outre|unconventional +flambeau|1 +(noun)|torch +flamboyance|1 +(noun)|floridness|showiness|ornateness|elaborateness +flamboyant|3 +(adj)|aureate|florid|showy|fancy +(adj)|resplendent|unrestrained|colorful +(noun)|royal poinciana|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +flamboyant tree|1 +(noun)|pride of barbados|paradise flower|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub +flamboyantly|1 +(adv)|showily|flashily +flame|4 +(noun)|fire|flaming|combustion|burning +(verb)|flare|shine|beam|flame up +(verb)|burn|combust +(verb)|chastise|castigate|objurgate|chasten|correct +flame-flower|4 +(noun)|kniphofia|tritoma|flame flower|flameflower|herb|herbaceous plant +(noun)|flame flower|flameflower|Talinum aurantiacum|wildflower|wild flower +(noun)| +(noun)| +flame-out|2 +(noun)|power outage|power failure +(noun)|failure +flame-retardant|1 +(adj)|flameproof|noncombustible |incombustible +flame bush|1 +(noun)|coral bush|Templetonia retusa|shrub|bush +flame cell|1 +(noun)|excretory organ|urinary organ +flame durrajong|1 +(noun)|flame tree|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree|bottle tree +flame fish|2 +(noun)|flamefish|Apogon maculatus|cardinalfish +(noun)| +flame flower|4 +(noun)|kniphofia|tritoma|flame-flower|flameflower|herb|herbaceous plant +(noun)|flame-flower|flameflower|Talinum aurantiacum|wildflower|wild flower +(noun)| +(noun)| +flame nettle|1 +(noun)|coleus|herb|herbaceous plant +flame pea|1 +(noun)|shrub|bush +flame tokay|1 +(noun)|Tokay +flame tree|5 +(noun)|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant +(noun)|royal poinciana|flamboyant|peacock flower|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +(noun)|broad-leaved bottletree|Brachychiton australis|bottle-tree|bottle tree +(noun)|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree|bottle tree +(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|Acacia farnesiana|acacia +flame up|1 +(verb)|flare|blaze up|burn up|burn|combust +flamefish|1 +(noun)|flame fish|Apogon maculatus|cardinalfish +flameflower|2 +(noun)|kniphofia|tritoma|flame flower|flame-flower|herb|herbaceous plant +(noun)|flame flower|flame-flower|Talinum aurantiacum|wildflower|wild flower +flamen|1 +(noun)|priest|non-Christian priest +flamenco|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|gypsy dancing|social dancing +flameproof|1 +(adj)|flame-retardant|noncombustible |incombustible +flamethrower|1 +(noun)|weapon|arm|weapon system +flaming|5 +(adj)|ablaze|colorful |colourful +(adj)|ablaze|afire|aflame|aflare|alight|blazing|burning|on fire|lighted |lit +(adj)|bally|blinking|bloody|blooming|crashing|fucking|unmitigated +(adj)|fiery|hot +(noun)|fire|flame|combustion|burning +flaming poppy|1 +(noun)|wind poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy +flamingo|1 +(noun)|wading bird|wader +flamingo flower|2 +(noun)|flamingo plant|Anthurium scherzerianum|anthurium|tailflower|tail-flower +(noun)|flamingo plant|Anthurium andraeanum|anthurium|tailflower|tail-flower +flamingo plant|2 +(noun)|flamingo flower|Anthurium scherzerianum|anthurium|tailflower|tail-flower +(noun)|flamingo flower|Anthurium andraeanum|anthurium|tailflower|tail-flower +flaminian way|1 +(noun)|Flaminian Way|highway|main road +flaminius|1 +(noun)|Flaminius|Gaius Flaminius|general|full general|statesman|solon|national leader +flammable|1 +(adj)|burnable|ignitable|ignitible|inflammable|combustible +flammulina|1 +(noun)|Flammulina|genus Flammulina|fungus genus +flammulina velutipes|1 +(noun)|winter mushroom|Flammulina velutipes|agaric +flan|1 +(noun)|dessert|sweet|afters +flanders|1 +(noun)|Flanders|European country|European nation +flanders poppy|1 +(noun)|corn poppy|field poppy|Flanders poppy|Papaver rhoeas|poppy +flange|1 +(noun)|rim|projection +flank|5 +(noun)|wing|formation +(noun)|subfigure +(noun)|cut of beef +(noun)|body part +(verb)|lie +flank steak|1 +(noun)|beefsteak +flanker|2 +(noun)|flanker back|back +(noun)|soldier +flanker back|1 +(noun)|flanker|back +flannel|3 +(noun)|fabric|cloth|material|textile +(noun)|washcloth|washrag|face cloth|bath linen +(noun)|gabardine|tweed|white|trousers|pants +flannel-cake|2 +(noun)|pancake|battercake|flannel cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake +(noun)| +flannel bush|2 +(noun)|flannelbush|California beauty|shrub|bush +(noun)| +flannel cake|2 +(noun)|pancake|battercake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake +(noun)| +flannel leaf|1 +(noun)|mullein|velvet plant|herb|herbaceous plant +flannel mullein|1 +(noun)|common mullein|great mullein|Aaron's rod|woolly mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +flannelbush|1 +(noun)|flannel bush|California beauty|shrub|bush +flannelette|1 +(noun)|fabric|cloth|material|textile +flannery o'connor|1 +(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer|author +flap|11 +(noun)|covering +(noun)|dither|pother|fuss|tizzy|agitation +(noun)|flapping|flutter|fluttering|wave|undulation +(noun)|animal tissue +(noun)|flaps|airfoil|aerofoil|control surface|surface +(verb)|roll|undulate|wave|move +(verb)|beat|pound|thump +(verb)|beat|move|displace +(verb)|beat|move +(verb)|dither|pother|fuss|niggle|fret +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +flap down|1 +(verb)|slam|throw +flapcake|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapjack|griddlecake|hotcake|hot cake|cake +flapjack|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|griddlecake|hotcake|hot cake|cake +flapper|1 +(noun)|girl|miss|missy|young lady|young woman|fille +flapping|1 +(noun)|flap|flutter|fluttering|wave|undulation +flaps|6 +(noun)|flap|airfoil|aerofoil|control surface|surface +(noun)|flap|covering +(noun)|dither|pother|fuss|tizzy|flap|agitation +(noun)|flap|flapping|flutter|fluttering|wave|undulation +(noun)|flap|animal tissue +(noun)|flap|airfoil|aerofoil|control surface|surface +flare|15 +(noun)|flair|shape|form +(noun)|fire|flame|flaming +(noun)|flash|visual signal +(noun)|erythroderma +(noun)|attack +(noun)|solar flare|solar radiation +(noun)|reflection|reflexion +(noun)|effusion|gush|outburst|blowup|ebullition +(noun)|device +(noun)|flare pass|forward pass|aerial +(noun)|fly|fly ball +(verb)|flame up|blaze up|burn up|burn|combust +(verb)|flare out|widen +(verb)|flame|shine|beam +(verb)|erupt|irrupt|flare up|break open|burst out|intensify|deepen +flare-up|1 +(noun)|outburst|burst|happening|occurrence|natural event +flare out|1 +(verb)|flare|widen +flare pass|1 +(noun)|flare|forward pass|aerial +flare path|1 +(noun)|airstrip|flight strip|landing strip|strip +flare star|1 +(noun)|red dwarf|red dwarf star +flare up|2 +(verb)|ignite|light +(verb)|erupt|irrupt|flare|break open|burst out|intensify|deepen +flared|1 +(adj)|flaring|increasing +flaring|2 +(adj)|flared|increasing +(adj)|aflare|flying|waving|moving +flash|18 +(adj)|brassy|cheap|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +(noun)|happening|occurrence|natural event +(noun)|brightness +(noun)|flashing|experience +(noun)|insight|brainstorm|brainwave +(noun)|blink of an eye|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +(noun)|flare|visual signal +(noun)|news bulletin|newsflash|newsbreak|bulletin +(noun)|patch +(noun)|photoflash|flash lamp|flashgun|flashbulb|flash bulb|lamp|photographic equipment +(verb)|blink|wink|twinkle|winkle|radiate +(verb)|appear +(verb)|flaunt|show off|ostentate|swank|expose|exhibit|display +(verb)|convey|impart +(verb)|dart|dash|scoot|scud|shoot|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|flash back +(verb)|show +(verb)|cover +(verb)|appear +flash-forward|1 +(noun)|transition +flash-freeze|1 +(verb)|quick-freeze|freeze +flash-frozen|1 +(adj)|quick-frozen|frozen|preserved +flash back|1 +(verb)|cut back|return|go back|get back|come back +flash bulb|2 +(noun)|flash|photoflash|flash lamp|flashgun|flashbulb|lamp|photographic equipment +(noun)| +flash butt welding|1 +(noun)|flash welding|butt welding|butt-welding +flash camera|1 +(noun)|camera|photographic camera +flash card|2 +(noun)|flashcard|poster|posting|placard|notice|bill|card +(noun)| +flash flood|2 +(noun)|flashflood|flood|inundation|deluge|alluvion +(noun)| +flash in the pan|1 +(noun)|failure|loser|nonstarter|unsuccessful person +flash lamp|1 +(noun)|flash|photoflash|flashgun|flashbulb|flash bulb|lamp|photographic equipment +flash memory|1 +(noun)|non-volatile storage|nonvolatile storage +flash point|3 +(noun)|flashpoint|criticality +(noun)|flashpoint|temperature +(noun)| +flash welding|1 +(noun)|flash butt welding|butt welding|butt-welding +flashback|2 +(noun)|transition +(noun)|recurrence|return +flashboard|1 +(noun)|flashboarding|boarding +flashboarding|1 +(noun)|flashboard|boarding +flashbulb|1 +(noun)|flash|photoflash|flash lamp|flashgun|flash bulb|lamp|photographic equipment +flashcard|1 +(noun)|flash card|poster|posting|placard|notice|bill|card +flasher|3 +(noun)|exhibitionist|compulsive +(noun)|electrical device +(noun)|blinker|light|light source +flashflood|1 +(noun)|flash flood|flood|inundation|deluge|alluvion +flashgun|1 +(noun)|flash|photoflash|flash lamp|flashbulb|flash bulb|lamp|photographic equipment +flashily|2 +(adv)|meretriciously +(adv)|flamboyantly|showily +flashiness|1 +(noun)|garishness|gaudiness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness +flashing|3 +(adj)|bright +(noun)|flash|experience +(noun)|sheet metal +flashlight|1 +(noun)|torch|electric lamp +flashlight battery|1 +(noun)|dry battery +flashlight fish|2 +(noun)|Photoblepharon palpebratus|spiny-finned fish|acanthopterygian +(noun)|anomalops|spiny-finned fish|acanthopterygian +flashover|1 +(noun)|discharge|spark|arc|electric arc|electric discharge +flashpoint|2 +(noun)|flash point|criticality +(noun)|flash point|temperature +flashy|2 +(adj)|brassy|cheap|flash|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +(adj)|gaudy|jazzy|showy|sporty|colorful +flask|2 +(noun)|bottle +(noun)|flaskful|containerful +flaskful|1 +(noun)|flask|containerful +flat|26 +(adj)|level|plane|even +(adj)|planar |two-dimensional +(adj)|categoric|categorical|unconditional|unqualified +(adj)|prostrate|unerect +(adj)|flat |underdeveloped +(adj)|flat +(adj)|compressed|thin +(adj)|bland|flavorless|flavourless|insipid|savorless|savourless|vapid|tasteless +(adj)|bland|unstimulating |unexciting +(adj)|noneffervescent +(adj)|fixed|regressive +(adj)|unraised|unleavened +(adj)|horizontal +(adj)|unpleated|unfolded +(adj)|two-dimensional|multidimensional +(adj)|deflated +(adj)|mat|matt|matte|matted|dull +(adj)|unshaded +(noun)|plain|field|champaign +(noun)|box +(noun)|musical notation +(noun)|flatcar|flatbed|freight car +(noun)|flat tire|pneumatic tire|pneumatic tyre +(noun)|scenery|scene +(noun)|apartment|housing|lodging|living accommodations +(adv)|directly|straight +flat-bellied|1 +(adj)|bellyless +flat-bottom|2 +(adj)|flat-bottomed|bottomed +(adj)|flatbottom|flatbottomed|even +flat-bottomed|2 +(adj)|flat-bottom|bottomed +(adj)|flatbottom|flatbottomed|even +flat-coated retriever|1 +(noun)|retriever +flat-footed|4 +(adj)|footed +(adj)|unready +(adj)|splayfooted |splayfoot +(adj)|direct +flat-hat|1 +(verb)|hedgehop|fly|aviate|pilot +flat-leaf parsley|1 +(noun)|Italian parsley|Petroselinum crispum neapolitanum|parsley|Petroselinum crispum +flat-top|1 +(adj)|flat-topped|topped +flat-topped|1 +(adj)|flat-top|topped +flat-topped white aster|1 +(noun)|aster +flat arch|1 +(noun)|straight arch|arch +flat bench|1 +(noun)|bench +flat bone|1 +(noun)|cut of beef +flat cap|1 +(noun)|cloth cap|cap +flat coat|1 +(noun)|ground|primer|priming|primer coat|priming coat|undercoat|coat of paint +flat file|1 +(noun)|file +flat knot|1 +(noun)|reef knot|square knot +flat out|2 +(adv)|bluffly|bluntly|brusquely|roundly +(adv)|like blue murder +flat pea|2 +(noun)|Platylobium formosum|shrub|bush +(noun)|narrow-leaved everlasting pea|Lathyrus sylvestris|everlasting pea +flat solid|1 +(noun)|sheet|artifact|artefact +flat tip screwdriver|1 +(noun)|screwdriver +flat tire|1 +(noun)|flat|pneumatic tire|pneumatic tyre +flat wash|1 +(noun)|flatwork|ironing +flatbed|2 +(noun)|flatcar|flat|freight car +(noun)|truck bed +flatbed press|1 +(noun)|cylinder press|press|printing press +flatboat|1 +(noun)|barge|hoy|lighter|boat +flatbottom|1 +(adj)|flatbottomed|even +flatbottomed|1 +(adj)|flatbottom|even +flatbread|1 +(noun)|bread|breadstuff|staff of life +flatbrod|1 +(noun)|flatbread +flatcar|1 +(noun)|flatbed|flat|freight car +flatfish|2 +(noun)|saltwater fish +(noun)|spiny-finned fish|acanthopterygian +flatfoot|2 +(noun)|patrolman|lawman|law officer|peace officer +(noun)|splayfoot|pes planus|foot|human foot|pes +flathead|2 +(noun)|scorpaenoid|scorpaenoid fish +(noun)|percoid fish|percoid|percoidean +flathead catfish|1 +(noun)|mudcat|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish|siluriform fish +flatiron|1 +(noun)|iron|smoothing iron +flatlet|1 +(noun)|apartment|flat +flatly|1 +(adv)|categorically|unconditionally +flatmate|1 +(noun)|friend +flatness|2 +(noun)|two-dimensionality|planeness|dimensionality +(noun)|lusterlessness|lustrelessness|mat|matt|matte|dullness|dulness +flats|8 +(noun)|footwear|footgear +(noun)|flat|plain|field|champaign +(noun)|flat|box +(noun)|flat|musical notation +(noun)|flatcar|flatbed|flat|freight car +(noun)|flat|flat tire|pneumatic tire|pneumatic tyre +(noun)|flat|scenery|scene +(noun)|apartment|flat|housing|lodging|living accommodations +flatten|3 +(verb)|shape|form +(verb)|flatten out|change shape|change form|deform +(verb)|drop|change|alter|modify +flatten out|1 +(verb)|flatten|change shape|change form|deform +flattened|1 +(adj)|planate|planar |two-dimensional +flatter|1 +(verb)|blandish|praise +flatterer|1 +(noun)|adulator|follower +flattering|1 +(adj)|flattering |adulatory|becoming|ingratiating|ingratiatory +flattery|1 +(noun)|compliment +flattop|2 +(noun)|crew cut|haircut +(noun)|aircraft carrier|carrier|attack aircraft carrier|warship|war vessel|combat ship +flatulence|2 +(noun)|flatulency|gas|physiological state|physiological condition +(noun)|turgidity|turgidness|prolixity|prolixness|long-windedness|wordiness +flatulency|1 +(noun)|flatulence|gas|physiological state|physiological condition +flatulent|2 +(adj)|indigestible +(adj)|colicky|gassy|unhealthy +flatus|1 +(noun)|fart|farting|wind|breaking wind|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +flatus-relieving|1 +(adj)|carminative|healthful +flatware|2 +(noun)|tableware +(noun)|silver|silverware +flatwork|1 +(noun)|flat wash|ironing +flatworm|1 +(noun)|platyhelminth|worm +flaubert|1 +(noun)|Flaubert|Gustave Flaubert|writer|author +flaunt|2 +(noun)|display +(verb)|flash|show off|ostentate|swank|expose|exhibit|display +flaunty|1 +(adj)|ostentatious |pretentious +flautist|1 +(noun)|flutist|flute player|musician|instrumentalist|player +flavian dynasty|1 +(noun)|Flavian dynasty|dynasty +flavin|1 +(noun)|ketone +flavius josephus|1 +(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general|full general|historian|historiographer|Pharisee +flaviviridae|1 +(noun)|Flaviviridae|arbovirus|arborvirus +flavivirus|1 +(noun)|animal virus +flavor|4 +(noun)|spirit|tone|feel|feeling|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|relish|flavour|sapidity|savor|savour|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|flavour|kind|sort|form|variety +(verb)|season|flavour +flavored|1 +(adj)|flavoured|seasoned|tasteful +flavorer|1 +(noun)|flavourer|flavoring|flavouring|seasoner|seasoning|ingredient|fixings +flavorful|1 +(adj)|flavourful|flavorous|flavourous|flavorsome|flavoursome|sapid|saporous|tasteful +flavoring|1 +(noun)|flavorer|flavourer|flavouring|seasoner|seasoning|ingredient|fixings +flavorless|1 +(adj)|bland|flat|flavourless|insipid|savorless|savourless|vapid|tasteless +flavorlessness|1 +(noun)|flavourlessness|savorlessness|savourlessness|tastelessness|unappetizingness|unappetisingness +flavorous|1 +(adj)|flavorful|flavourful|flavourous|flavorsome|flavoursome|sapid|saporous|tasteful +flavorsome|1 +(adj)|flavorful|flavourful|flavorous|flavourous|flavoursome|sapid|saporous|tasteful +flavorsomeness|1 +(noun)|flavoutsomeness|savoriness|appetizingness|appetisingness +flavour|4 +(noun)|spirit|tone|feel|feeling|flavor|look|smell|atmosphere|ambiance|ambience +(noun)|flavor|kind|sort|form|variety +(noun)|relish|flavor|sapidity|savor|savour|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(verb)|season|flavor +flavoured|1 +(adj)|flavored|seasoned|tasteful +flavourer|1 +(noun)|flavorer|flavoring|flavouring|seasoner|seasoning|ingredient|fixings +flavourful|1 +(adj)|flavorful|flavorous|flavourous|flavorsome|flavoursome|sapid|saporous|tasteful +flavouring|1 +(noun)|flavorer|flavourer|flavoring|seasoner|seasoning|ingredient|fixings +flavourless|1 +(adj)|bland|flat|flavorless|insipid|savorless|savourless|vapid|tasteless +flavourlessness|1 +(noun)|flavorlessness|savorlessness|savourlessness|tastelessness|unappetizingness|unappetisingness +flavourous|1 +(adj)|flavorful|flavourful|flavorous|flavorsome|flavoursome|sapid|saporous|tasteful +flavoursome|1 +(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|sapid|saporous|tasteful +flavoutsomeness|1 +(noun)|flavorsomeness|savoriness|appetizingness|appetisingness +flaw|3 +(noun)|defect|fault|imperfection|imperfectness +(noun)|failing|weakness +(verb)|blemish|damage +flawed|1 +(adj)|blemished|imperfect +flawless|1 +(adj)|unflawed|perfect +flawlessly|1 +(adv)|cleanly +flawlessness|1 +(noun)|perfection|ne plus ultra|state +flax|2 +(noun)|plant fiber|plant fibre +(noun)|herb|herbaceous plant +flax family|1 +(noun)|Linaceae|family Linaceae|dicot family|magnoliopsid family +flax rust|1 +(noun)|flax rust fungus|Melampsora lini|rust|rust fungus +flax rust fungus|1 +(noun)|flax rust|Melampsora lini|rust|rust fungus +flaxedil|1 +(noun)|gallamine|Flaxedil|neuromuscular blocking agent|muscle relaxant +flaxen|1 +(adj)|sandy|blond |blonde|light-haired +flaxseed|1 +(noun)|linseed|oilseed +flaxseed oil|1 +(noun)|linseed oil|oil +flay|1 +(verb)|skin|peel|pare +flea|1 +(noun)|insect|ectoparasite|ectozoan|ectozoon|epizoan|epizoon +flea-bitten|1 +(adj)|creaky|decrepit|run-down|woebegone|worn +flea beetle|1 +(noun)|leaf beetle|chrysomelid +flea bite|2 +(noun)|sting|bite|insect bite +(noun)|troublesomeness|inconvenience|worriment +flea market|1 +(noun)|marketplace|mart +fleabag|1 +(noun)|hotel +fleabane|3 +(noun)|feabane mullet|Pulicaria dysenterica|herb|herbaceous plant +(noun)|wildflower|wild flower +(noun)|horseweed|Canadian fleabane|Conyza canadensis|Erigeron canadensis|weed +fleapit|1 +(noun)|cinema|movie theater|movie theatre|movie house|picture palace +fleawort|1 +(noun)|psyllium|Spanish psyllium|Plantago psyllium|plantain +flecainide|1 +(noun)|Tambocor|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +fleck|3 +(noun)|bit|chip|flake|scrap|fragment +(noun)|spot|speckle|dapple|patch|maculation|marking +(verb)|spot|blob|blot|change surface +flecked|1 +(adj)|dotted|specked|speckled|stippled|patterned +flection|2 +(noun)|flexure|flexion|physiological state|physiological condition +(noun)|inflection|flexion|deviation|divergence|departure|difference +fledge|3 +(verb)|rear|raise|bring up|nurture|parent +(verb)|flight|decorate|adorn|grace|ornament|embellish|beautify +(verb)|feather|grow|develop|produce|get|acquire +fledged|2 +(adj)|fledged |mature|fledgling|fledgeling|full-fledged|fully fledged +(adj)|vaned|feathered +fledgeless|1 +(adj)|unfledged|unvaned|unfeathered |featherless +fledgeling|3 +(adj)|fledgling|fledged |mature +(noun)|newcomer|fledgling|starter|neophyte|freshman|newbie|entrant|novice|beginner|tyro|tiro|initiate +(noun)|fledgling|young bird +fledgling|4 +(adj)|fledgeling|fledged |mature +(adj)|unfledged|inexperienced +(noun)|newcomer|fledgeling|starter|neophyte|freshman|newbie|entrant|novice|beginner|tyro|tiro|initiate +(noun)|fledgeling|young bird +flee|1 +(verb)|fly|take flight|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away +fleece|6 +(noun)|wool +(noun)|sheepskin|leather +(noun)|fabric|cloth|material|textile +(noun)|wool|coat|pelage +(verb)|overcharge|soak|surcharge|gazump|plume|pluck|rob|hook|cheat|rip off|chisel +(verb)|shear|shave|trim +fleeceable|1 +(adj)|green|gullible|naive |naif +fleecy|1 +(adj)|brushed|napped|soft +fleet|7 +(adj)|swift|fast +(noun)|collection|aggregation|accumulation|assemblage +(noun)|collection|aggregation|accumulation|assemblage +(noun)|steamship company|steamship line +(noun)|collection|aggregation|accumulation|assemblage +(verb)|flit|flutter|dart|travel rapidly|speed|hurry|zip +(verb)|evanesce|fade|blow over|pass off|pass|disappear|vanish|go away +fleet admiral|1 +(noun)|flag officer +fleet ballistic missile submarine|1 +(noun)|submarine|pigboat|sub|U-boat +fleet street|2 +(noun)|Fleet Street|street +(noun)|Fleet Street|journalism|news media|fourth estate +fleeting|1 +(adj)|fugitive|momentaneous|momentary|short +fleetingness|1 +(noun)|ephemerality|ephemeralness|transience|transiency|transitoriness +fleetly|1 +(adv)|swiftly +fleetness|1 +(noun)|celerity|quickness|rapidity +fleming|3 +(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer|author +(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist +(noun)|Fleming|Belgian +flemish|3 +(adj)|Flemish|European country|European nation +(noun)|Flemish|ethnic group|ethnos +(noun)|Flemish|Flemish dialect|Dutch +flemish-speaking|1 +(adj)|Flemish-speaking|communicative |communicatory +flemish dialect|1 +(noun)|Flemish|Flemish dialect|Dutch +flesh|3 +(noun)|animal tissue +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|body|organic structure|physical structure +(noun)|pulp|plant tissue +flesh-eating|1 +(adj)|meat-eating|zoophagous|carnivorous +flesh fly|1 +(noun)|Sarcophaga carnaria|fly +flesh out|3 +(verb)|fatten|fat|fill out|plump|plump out|fatten out|fatten up|change|alter|modify +(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|expand|expound|dilate|clarify|clear up|elucidate +(verb)|round|fill out|gain|put on +flesh wound|1 +(noun)|wound|injury|combat injury +fleshed out|1 +(adj)|full-clad|complete +fleshiness|1 +(noun)|obesity|fatness|fat|blubber|avoirdupois +fleshly|1 +(adj)|animal|carnal|sensual|physical +fleshy|2 +(adj)|heavy|overweight|fat +(adj)|sarcoid|animal tissue +fletc|1 +(noun)|Federal Law Enforcement Training Center|FLETC|law enforcement agency +fletcher|1 +(noun)|Fletcher|John Fletcher|dramatist|playwright +fleur-de-lis|2 +(noun)|iris|flag|sword lily|iridaceous plant +(noun)|fleur-de-lys|charge|bearing|heraldic bearing|armorial bearing +fleur-de-lys|1 +(noun)|fleur-de-lis|charge|bearing|heraldic bearing|armorial bearing +flex|6 +(noun)|flexion|flexure +(verb)|shrink|contract +(verb)|flaunt|flash|show off|ostentate|swank +(verb)|bend|change shape|change form|deform +(verb)|bend|move +(verb)|bend|deform|twist|turn|change shape|change form|deform +flexeril|1 +(noun)|cyclobenzaprine|Flexeril|muscle relaxant +flexibility|3 +(noun)|flexibleness|malleability|plasticity +(noun)|adaptability +(noun)|tractability|tractableness|trait +flexible|5 +(adj)|flexible |limber|supple|negotiable|on the table|versatile +(adj)|flexible |flexile|bendable|pliable|pliant|double-jointed|limber|supple|stretched|elastic +(adj)|elastic|pliable|pliant|adaptable +(adj)|elastic +(adj)|compromising |conciliatory|yielding +flexible joint|1 +(noun)|hinge|joint +flexible sigmoidoscope|1 +(noun)|sigmoidoscope|endoscope +flexible sigmoidoscopy|1 +(noun)|sigmoidoscopy|endoscopy +flexibleness|1 +(noun)|flexibility|malleability|plasticity +flexile|1 +(adj)|flexible |bendable|pliable|pliant|double-jointed|limber|supple|stretched|elastic +flexion|3 +(noun)|flexure|flection|physiological state|physiological condition +(noun)|inflection|flection|deviation|divergence|departure|difference +(noun)|flexure|bending +flexor|1 +(noun)|flexor muscle|skeletal muscle|striated muscle +flexor muscle|1 +(noun)|flexor|skeletal muscle|striated muscle +flexuous|1 +(adj)|curved |curving +flexure|3 +(noun)|flection|flexion|physiological state|physiological condition +(noun)|fold|crease|plication|crimp|bend|angular shape|angularity +(noun)|flexion|bending +flibbertigibbet|1 +(noun)|foolish woman|fool|sap|saphead|muggins|tomfool +flick|11 +(noun)|contact|impinging|striking +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|show +(verb)|flicker|flash|blink|wink|twinkle|winkle +(verb)|flip|thumb|riffle|leaf|riff|peruse +(verb)|flip|throw +(verb)|jerk|push|force +(verb)|flicker|shine|beam +(verb)|ruffle|riffle|move|displace +(verb)|snap|click|move +(verb)|brush +(verb)|remove|take|take away|withdraw +flick-knife|2 +(noun)|knife +(noun)|switchblade|switchblade knife|flick knife|pocketknife|pocket knife +flick knife|2 +(noun)|switchblade|switchblade knife|pocketknife|pocket knife +(noun)|flick-knife|knife +flicker|6 +(noun)|spark|glint|flash +(noun)|woodpecker|peckerwood|pecker +(noun)|waver|flutter|motion|movement|move|motility +(verb)|waver|flitter|flutter|quiver|move back and forth +(verb)|flick|shine|beam +(verb)|flick|flash|blink|wink|twinkle|winkle +flickering|1 +(adj)|aflicker|unsteady +flickertail|1 +(noun)|Richardson ground squirrel|Citellus richardsoni|ground squirrel|gopher|spermophile +flier|3 +(noun)|flyer|traveler|traveller +(noun)|aviator|aeronaut|airman|flyer|skilled worker|trained worker +(noun)|circular|handbill|bill|broadside|broadsheet|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +flies|6 +(noun)|space +(noun)|fly|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|tent-fly|rainfly|fly sheet|fly|tent flap|flap +(noun)|fly|fly front|opening +(noun)|fly|fly ball|hit|hitting|striking +(noun)|fly|fisherman's lure|fish lure +flight|12 +(noun)|formation +(noun)|flying|air travel|aviation|air +(noun)|flight of stairs|flight of steps|stairway|staircase|stairs|steps +(noun)|escape|running away +(noun)|air unit +(noun)|creativity|creativeness|creative thinking +(noun)|trajectory|mechanical phenomenon +(noun)|flock +(noun)|trip +(verb)|shoot|pip +(verb)|fly|wing +(verb)|fledge|decorate|adorn|grace|ornament|embellish|beautify +flight attendant|1 +(noun)|steward|attendant|attender|tender +flight control|1 +(noun)|control +flight deck|1 +(noun)|landing deck|deck +flight engineer|1 +(noun)|aircrewman +flight feather|1 +(noun)|pinion|quill|quill feather|feather|plume|plumage +flight indicator|1 +(noun)|artificial horizon|gyro horizon|navigational instrument +flight line|1 +(noun)|line +flight maneuver|1 +(noun)|airplane maneuver|maneuver|manoeuvre|evasive action +flight of stairs|1 +(noun)|flight|flight of steps|stairway|staircase|stairs|steps +flight of steps|1 +(noun)|flight|flight of stairs|stairway|staircase|stairs|steps +flight path|2 +(noun)|path|route|itinerary +(noun)|air lane|airway|skyway|path|route|itinerary +flight simulator|1 +(noun)|trainer|simulator +flight strip|1 +(noun)|airstrip|landing strip|strip|airfield|landing field|flying field|field +flight surgeon|1 +(noun)|medical officer|medic +flighted|1 +(adj)|feathered +flightiness|1 +(noun)|arbitrariness|whimsicality|whimsy|whimsey|capriciousness|irresponsibility|irresponsibleness +flightless|1 +(adj)|wingless +flightless bird|1 +(noun)|ratite|ratite bird|bird +flighty|2 +(adj)|flyaway|frivolous +(adj)|head-in-the-clouds|scatterbrained|irresponsible +flimflam|1 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|swindle|cheat|rig +flimsiness|1 +(noun)|shoddiness|weakness +flimsy|5 +(adj)|fragile|weak +(adj)|slight|tenuous|thin|weak +(adj)|light|thin +(adj)|cardboard|inferior +(noun)|onionskin|typewriter paper|typing paper +flinch|2 +(noun)|wince|startle|jump|start +(verb)|squinch|funk|cringe|shrink|wince|recoil|quail|move +flinders|2 +(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer|adventurer +(noun)|splinter|sliver|bit|chip|flake|fleck|scrap +flindersia|1 +(noun)|Flindersia|genus Flindersia|rosid dicot genus +flindersia australis|1 +(noun)|native beech|flindosa|flindosy|Flindersia australis|silver ash +flindersia schottiana|1 +(noun)|bunji-bunji|Flindersia schottiana|silver ash +flindosa|1 +(noun)|native beech|flindosy|Flindersia australis|silver ash +flindosy|1 +(noun)|native beech|flindosa|Flindersia australis|silver ash +fling|7 +(noun)|crack|go|pass|whirl|offer|attempt|effort|endeavor|endeavour|try +(noun)|spree|intemperance|intemperateness|self-indulgence +(noun)|throw +(verb)|throw +(verb)|move +(verb)|splurge|consume|squander|waste|ware +(verb)|discard|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +fling off|1 +(verb)|dash off|knock off|toss off|write|compose|pen|indite +flint|3 +(noun)|silica|silicon oxide|silicon dioxide +(noun)|Flint|Flint River|river +(noun)|Flint|city|metropolis|urban center +flint corn|1 +(noun)|flint maize|Yankee corn|Zea mays indurata|field corn +flint glass|1 +(noun)|optical flint|optical glass +flint maize|1 +(noun)|flint corn|Yankee corn|Zea mays indurata|field corn +flint river|1 +(noun)|Flint|Flint River|river +flintlock|2 +(noun)|firelock|muzzle loader +(noun)|gunlock|firing mechanism +flintstone|1 +(noun)|flint +flinty|2 +(adj)|obdurate|stony|hardhearted |heartless +(adj)|granitic|unyielding|inflexible +flip|16 +(adj)|impudent|insolent|snotty-nosed|disrespectful +(noun)|somersault|somersaulting|tumble +(noun)|mixed drink +(noun)|toss|throw +(noun)|dive|diving +(noun)|pass|toss|throw +(verb)|toss|turn +(verb)|throw|switch|engage|mesh|lock|operate +(verb)|flick|thumb|riffle|leaf|riff|peruse +(verb)|twitch|move +(verb)|flick|throw +(verb)|toss|sky|pitch|fling +(verb)|propel|impel +(verb)|flip over|turn over|turn +(verb)|flip out|change +(verb)|interchange|tack|switch|alternate|flip-flop|change by reversal|turn|reverse +flip-flop|5 +(noun)|reversal|change of mind|turnabout|turnaround|decision making|deciding +(noun)|sandal +(noun)|circuit|electrical circuit|electric circuit +(noun)|somersault|somersaulting|flip +(verb)|interchange|tack|switch|alternate|flip|change by reversal|turn|reverse +flip chart|1 +(noun)|chart +flip one's lid|1 +(verb)|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +flip one's wig|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|lose one's temper|blow a fuse|go ballistic|rage +flip out|1 +(verb)|flip|change +flip over|1 +(verb)|flip|turn over|turn +flippancy|1 +(noun)|light-mindedness|levity +flippant|1 +(adj)|light-minded|frivolous +flippantly|1 +(adv)|airily +flipper|2 +(noun)|flippers|fin|fins|shoe +(noun)|limb +flippers|3 +(noun)|flipper|fin|fins|shoe +(noun)|flipper|fin|fins|shoe +(noun)|flipper|limb +flirt|4 +(noun)|coquette|vamp|vamper|minx|tease|prickteaser|woman|adult female +(noun)|flirting|flirtation|coquetry|dalliance|toying|play|frolic|romp|gambol|caper +(verb)|chat up|dally|butterfly|coquet|coquette|romance|philander|mash|talk|speak +(verb)|dally|toy|play|act|move +flirt with|1 +(verb)|entertain|think of|toy with|think about|contemplate +flirtation|1 +(noun)|flirt|flirting|coquetry|dalliance|toying|play|frolic|romp|gambol|caper +flirtatious|1 +(adj)|coquettish|sexy +flirtatiously|1 +(adv)|coquettishly +flirting|1 +(noun)|flirt|flirtation|coquetry|dalliance|toying|play|frolic|romp|gambol|caper +flit|3 +(noun)|dart|motion|movement|move|motility +(noun)|move|relocation +(verb)|flutter|fleet|dart|travel rapidly|speed|hurry|zip +flitch|2 +(noun)|fish steak +(noun)|side of bacon|bacon +flitter|1 +(verb)|flicker|waver|flutter|quiver|move back and forth +flittering scotoma|1 +(noun)|scintillating scotoma|scotoma +flnc|1 +(noun)|National Liberation Front of Corsica|FLNC|terrorist organization|terrorist group|foreign terrorist organization|FTO +flo ziegfeld|1 +(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer +float|15 +(noun)|time interval|interval +(noun)|stock +(noun)|ice-cream soda|ice-cream float|drink +(noun)|display|presentation +(noun)|plasterer's float|hand tool +(noun)|artifact|artefact +(verb)|drift|be adrift|blow|travel|go|move|locomote +(verb)|swim|travel|go|move|locomote +(verb)|transport +(verb)|test|prove|try|try out|examine|essay +(verb)|travel|go|move|locomote +(verb)|launch +(verb)|smooth|smoothen +(verb)|value +(verb)|convert|change over +floatation|2 +(noun)|flotation|physical phenomenon +(noun)|flotation|finance +floater|8 +(noun)|musca volitans|muscae volitantes|spots|symptom +(noun)|debt instrument|certificate of indebtedness +(noun)|vagrant|drifter|vagabond|wanderer|roamer|rover|bird of passage|poor person|have-not +(noun)|employee +(noun)|voter|elector +(noun)|swimmer|natator|bather +(noun)|object|physical object +(noun)|floating policy|policy|insurance policy|insurance +floating|6 +(adj)|aimless|drifting|vagabond|vagrant|unsettled +(adj)|mobile +(adj)|unfixed +(adj)|uncommitted +(adj)|afloat +(noun)|swimming|swim +floating-moss|1 +(noun)|Salvinia rotundifolia|Salvinia auriculata|aquatic fern|water fern +floating-point notation|1 +(noun)|floating-point representation system|mathematical notation +floating-point number|1 +(noun)|number +floating-point operation|1 +(noun)|flop|computer operation|machine operation +floating-point representation system|1 +(noun)|floating-point notation|mathematical notation +floating bridge|1 +(noun)|pontoon bridge|bateau bridge|bridge|span +floating dock|1 +(noun)|floating dry dock|dry dock|drydock|graving dock +floating dry dock|1 +(noun)|floating dock|dry dock|drydock|graving dock +floating fern|3 +(noun)|Ceratopteris thalictroides|aquatic fern|water fern +(noun)|water sprite|Ceratopteris pteridioides|aquatic fern|water fern +(noun)|mosquito fern|Carolina pond fern|Azolla caroliniana|aquatic fern|water fern +floating mine|1 +(noun)|marine mine|mine +floating policy|1 +(noun)|floater|policy|insurance policy|insurance +floating voter|1 +(noun)|swing voter|voter|elector +floatplane|1 +(noun)|pontoon plane|seaplane|hydroplane +floaty|1 +(adj)|buoyant|light +floc|1 +(noun)|floccule|material|stuff +floccose|1 +(adj)|hairy |hirsute +floccose chanterelle|1 +(noun)|Cantharellus floccosus|agaric +flocculate|2 +(verb)|change|alter|modify +(verb)|change +flocculation|1 +(noun)|natural process|natural action|action|activity +floccule|1 +(noun)|floc|material|stuff +flocculent|1 +(adj)|woolly|wooly|soft +flock|7 +(noun)|congregation|fold|faithful +(noun)|animal group +(noun)|batch|deal|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|troop|crowd +(noun)|animal group +(verb)|travel|go|move|locomote +(verb)|cluster|constellate|clump|meet|gather|assemble|forgather|foregather +flodden|1 +(noun)|Flodden|Flodden Field|Battle of Flodden Field|pitched battle +flodden field|1 +(noun)|Flodden|Flodden Field|Battle of Flodden Field|pitched battle +floe|1 +(noun)|ice floe|ice mass +flog|2 +(verb)|welt|whip|lather|lash|slash|strap|trounce|beat|beat up|work over +(verb)|cane|lambaste|lambast|beat|beat up|work over +flogger|1 +(noun)|scourger|torturer +flogging|1 +(noun)|whipping|tanning|lashing|flagellation|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +flood|10 +(noun)|inundation|deluge|alluvion|geological phenomenon +(noun)|inundation|deluge|torrent|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew +(noun)|floodlight|flood lamp|photoflood|light|light source +(noun)|overflow|outpouring|flow|stream +(noun)|flowage|filling +(noun)|flow|flowing +(verb)|deluge|inundate|swamp|fill|fill up|make full|flood in +(verb)|cover|spread over|flood out +(verb)|oversupply|glut|supply|provide|render|furnish +(verb)|fill|fill up +flood control|1 +(noun)|control +flood in|1 +(verb)|arrive|get|come +flood lamp|1 +(noun)|flood|floodlight|photoflood|light|light source +flood out|1 +(verb)|overwhelm|deluge|charge|saddle|burden +flood plain|2 +(noun)|floodplain|plain|field|champaign +(noun)| +flood tide|2 +(noun)|climax|juncture|occasion +(noun)|rising tide|tide +flooded|2 +(adj)|afloat|awash|inundated|overflowing|full +(adj)|inundated|overcome|overpowered|overwhelmed|swamped|engulfed|powerless |weak +flooded gum|1 +(noun)|eucalyptus|eucalypt|eucalyptus tree +floodgate|2 +(noun)|restraint +(noun)|sluicegate|sluice valve|penstock|head gate|water gate|regulator +floodhead|1 +(noun)|flash flood|flashflood +flooding|2 +(adj)|in flood|overflowing|swollen|high +(noun)|implosion therapy|behavior therapy|behavior modification +floodlight|2 +(noun)|flood|flood lamp|photoflood|light|light source +(verb)|light|illume|illumine|light up|illuminate +floodlighted|1 +(adj)|floodlit|light +floodlit|1 +(adj)|floodlighted|light +floodplain|1 +(noun)|flood plain|plain|field|champaign +floor|11 +(noun)|flooring|horizontal surface|level +(noun)|level|storey|story|structure|construction +(noun)|base|control +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|surface|Earth's surface +(noun)|gathering|assemblage +(noun)|right +(noun)|hall +(noun)|trading floor|room +(verb)|shock|stun|ball over|blow out of the water|take aback|surprise +(verb)|deck|coldcock|dump|knock down|beat +floor board|2 +(noun)|floorboard|board +(noun)|floorboard|floor|flooring +floor cover|1 +(noun)|floor covering|covering +floor covering|1 +(noun)|floor cover|covering +floor joist|1 +(noun)|joist +floor lamp|1 +(noun)|lamp +floor leader|1 +(noun)|legislator +floor plan|1 +(noun)|plan|architectural plan +floor show|2 +(noun)|cabaret|floorshow|show +(noun)| +floor wax|1 +(noun)|wax +floorboard|2 +(noun)|floor board|board +(noun)|floor|flooring +floored|1 +(adj)|floored +flooring|2 +(noun)|floor|horizontal surface|level +(noun)|building material +floorshow|1 +(noun)|cabaret|floor show|show +floorwalker|1 +(noun)|shopwalker|employee +floozie|1 +(noun)|streetwalker|street girl|hooker|hustler|floozy|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +floozy|1 +(noun)|streetwalker|street girl|hooker|hustler|floozie|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +flop|8 +(noun)|floating-point operation|computer operation|machine operation +(noun)|dud|washout|failure|loser|nonstarter|unsuccessful person +(noun)|bust|failure +(noun)|collapse|descent +(verb)|collapse|fall in|cave in|give|give way|break|founder +(verb)|descend|fall|go down|come down +(verb)|fall through|fall flat|founder|fail|go wrong|miscarry +(adv)|right +flophouse|1 +(noun)|dosshouse|lodging house|rooming house +floppy|2 +(adj)|lax +(noun)|diskette|floppy disk|magnetic disk|magnetic disc|disk|disc +floppy disk|1 +(noun)|diskette|floppy|magnetic disk|magnetic disc|disk|disc +flora|2 +(noun)|vegetation|collection|aggregation|accumulation|assemblage +(noun)|plant|plant life|organism|being +floral|3 +(adj)|flowered|patterned +(adj)|angiosperm|flowering plant +(adj)|collection|aggregation|accumulation|assemblage +floral cup|1 +(noun)|hypanthium|calyx tube|plant organ +floral envelope|1 +(noun)|perianth|chlamys|perigone|perigonium|plant organ|covering|natural covering|cover +floral leaf|1 +(noun)|leaf|leafage|foliage +floreal|1 +(noun)|Floreal|Revolutionary calendar month +florence|2 +(noun)|Firenze|Florence|city|metropolis|urban center +(noun)|Florence|town +florence fennel|2 +(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel +(noun)|fennel|Florence fennel|finocchio|vegetable|veggie +florence nightingale|1 +(noun)|Nightingale|Florence Nightingale|the Lady with the Lamp|nurse +florentine|1 +(adj)|Florentine|city|metropolis|urban center +florentine iris|1 +(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris +florenz ziegfeld|1 +(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer +florescence|1 +(noun)|blossoming|flowering|inflorescence|anthesis|efflorescence|growth|growing|maturation|development|ontogeny|ontogenesis +florest's cineraria|1 +(noun)|Pericallis hybrida|flower +floret|1 +(noun)|flower|bloom|blossom +florey|1 +(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician|pathologist +floricultural|1 +(adj)|gardening|horticulture +floriculture|1 +(noun)|flower gardening|gardening|horticulture +florid|1 +(adj)|aureate|flamboyant|showy|fancy +florida|1 +(noun)|Florida|Sunshine State|Everglade State|FL|American state +florida arrowroot|1 +(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia +florida bean|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +florida gallinule|1 +(noun)|Florida gallinule|Gallinula chloropus cachinnans|gallinule|marsh hen|water hen|swamphen +florida keys|1 +(noun)|key|cay|Florida keys|coral reef +florida pompano|1 +(noun)|Florida pompano|Trachinotus carolinus|pompano +florida selaginella|1 +(noun)|Selaginella eatonii|spikemoss|spike moss|little club moss +florida smoothhound|1 +(noun)|Florida smoothhound|Mustelus norrisi|smooth dogfish +florida strangler fig|1 +(noun)|golden fig|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree +florida strap fern|1 +(noun)|Florida strap fern|cow-tongue fern|hart's-tongue fern|strap fern +florida water rat|1 +(noun)|round-tailed muskrat|Florida water rat|Neofiber alleni|rodent|gnawer|gnawing animal +florida yew|1 +(noun)|Florida yew|Taxus floridana|yew +floridian|1 +(noun)|Floridian|American +floridness|1 +(noun)|flamboyance|showiness|ornateness|elaborateness +florilegium|1 +(noun)|garland|miscellany|anthology +florin|2 +(noun)|guilder|gulden|Surinamese monetary unit +(noun)|guilder|gulden|Dutch florin|Dutch monetary unit +florio|1 +(noun)|Florio|John Florio|lexicographer|lexicologist +florist|2 +(noun)|shopkeeper|tradesman|storekeeper|market keeper +(noun)|florist shop|flower store|shop|store +florist's chrysanthemum|1 +(noun)|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum +florist's gloxinia|1 +(noun)|Sinningia speciosa|Gloxinia spesiosa|gloxinia +florist's willow|1 +(noun)|goat willow|pussy willow|Salix caprea|sallow +florist shop|1 +(noun)|florist|flower store|shop|store +florists' chrysanthemum|1 +(noun)|florist's chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum +flory|1 +(noun)|Flory|Paul John Flory|chemist +floss|3 +(noun)|thread|yarn +(noun)|dental floss|thread|yarn +(verb)|cleanse|clean +flossy|1 +(adj)|downy|downlike|fluffy|soft +flotation|2 +(noun)|floatation|physical phenomenon +(noun)|floatation|finance +flotation device|1 +(noun)|life preserver|preserver|float|rescue equipment +flotilla|2 +(noun)|fleet +(noun)|fleet +flotsam|1 +(noun)|jetsam|wreckage +flounce|3 +(noun)|frill|ruffle|furbelow|adornment +(noun)|gait +(verb)|walk +flounder|4 +(noun)|flatfish +(noun)|flatfish +(verb)|stagger|walk +(verb)|fight|struggle +flour|3 +(noun)|foodstuff|food product +(verb)|dredge +(verb)|convert|change over +flour beetle|1 +(noun)|flour weevil|darkling beetle|darkling groung beetle|tenebrionid +flour bin|1 +(noun)|bin +flour corn|1 +(noun)|soft corn|squaw corn|Zea mays amylacea|field corn +flour mill|1 +(noun)|mill|grinder +flour weevil|1 +(noun)|flour beetle|darkling beetle|darkling groung beetle|tenebrionid +flourish|8 +(noun)|gesture|motion +(noun)|embellishment +(noun)|grandiosity|magniloquence|grandiloquence|rhetoric +(noun)|brandish|wave|waving|wafture +(noun)|fanfare|tucket|tune|melody|air|strain|melodic line|line|melodic phrase +(verb)|boom|prosper|thrive|get ahead|expand|grow +(verb)|thrive|prosper|fly high|change state|turn +(verb)|brandish|wave|move|displace +flourishing|2 +(adj)|growing|thriving|healthy +(adj)|booming|palmy|prospering|prosperous|roaring|thriving|successful +floury|1 +(adj)|fine +flout|2 +(verb)|scoff|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +(verb)|jeer|scoff|barrack|gibe|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +flouter|1 +(noun)|scoffer|mocker|jeerer|unpleasant person|disagreeable person +flow|13 +(noun)|flowing|change of location|travel +(noun)|flow rate|rate of flow|rate +(noun)|stream|motion|movement|move +(noun)|natural process|natural action|action|activity +(noun)|stream|motion +(noun)|stream|current|course|line +(noun)|menstruation|menses|menstruum|catamenia|period|discharge|emission|expelling +(verb)|flux|move +(verb)|run|feed|course|move|flow from +(verb)|exist|be +(verb)|hang|fall +(verb)|flood +(verb)|menstruate|shed blood|bleed|hemorrhage +flow away|1 +(verb)|flow off|empty|discharge +flow chart|2 +(noun)|flowchart|flow diagram|flow sheet|multidimensional language +(noun)| +flow diagram|1 +(noun)|flow chart|flowchart|flow sheet|multidimensional language +flow from|1 +(verb)|be due|result|ensue +flow of air|1 +(noun)|airflow|air flow|flow|flowing +flow off|1 +(verb)|flow away|empty|discharge +flow out|1 +(verb)|effuse|emanate +flow rate|1 +(noun)|flow|rate of flow|rate +flow sheet|1 +(noun)|flow chart|flowchart|flow diagram|multidimensional language +flowage|3 +(noun)|flow +(noun)|body of water|water +(noun)|flood|filling +flowchart|1 +(noun)|flow chart|flow diagram|flow sheet|multidimensional language +flower|4 +(noun)|angiosperm|flowering plant +(noun)|bloom|blossom|reproductive structure +(noun)|prime|peak|heyday|bloom|blossom|efflorescence|flush|time period|period of time|period +(verb)|bloom|blossom|develop +flower-cup fern|1 +(noun)|Alpine woodsia|northern woodsia|Woodsia alpina|woodsia +flower-of-an-hour|1 +(noun)|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus +flower arrangement|1 +(noun)|arrangement|decoration|ornament|ornamentation +flower bed|2 +(noun)|flowerbed|bed of flowers|bed +(noun)| +flower bud|1 +(noun)|bud +flower chain|1 +(noun)|flower arrangement +flower child|1 +(noun)|hippie|hippy|hipster|reformer|reformist|crusader|meliorist +flower cluster|1 +(noun)|inflorescence +flower garden|1 +(noun)|garden +flower gardening|1 +(noun)|floriculture|gardening|horticulture +flower girl|2 +(noun)|seller|marketer|vender|vendor|trafficker +(noun)|female child|girl|little girl +flower head|1 +(noun)|inflorescence +flower people|1 +(noun)|hippies|hipsters|youth subculture +flower petal|1 +(noun)|petal|floral leaf +flower power|1 +(noun)|counterculture +flower stalk|1 +(noun)|scape|stalk|stem +flower store|1 +(noun)|florist|florist shop|shop|store +flowerbed|1 +(noun)|flower bed|bed of flowers|bed +flowered|1 +(adj)|floral|patterned +flowering|3 +(adj)|abloom|efflorescent|mature +(noun)|blossoming|florescence|inflorescence|anthesis|efflorescence|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|unfolding|development|evolution +flowering almond|2 +(noun)|Prunus triloba|almond tree +(noun)|oriental bush cherry|Prunus japonica|almond tree +flowering ash|3 +(noun)|manna ash|Fraxinus ornus|ash|ash tree +(noun)|Fraxinus dipetala|ash|ash tree +(noun)|Fraxinus cuspidata|ash|ash tree +flowering cherry|1 +(noun)|cherry|cherry tree +flowering crab|2 +(noun)|Bechtel crab|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis +(noun)|Southern crab apple|Malus angustifolia|crab apple|crabapple|cultivated crab apple +flowering fern|2 +(noun)|Helminthostachys zeylanica|fern +(noun)|osmund|fern +flowering glume|1 +(noun)|lemma|glume +flowering hazel|1 +(noun)|winter hazel|shrub|bush +flowering onion|1 +(noun)|daffodil garlic|Naples garlic|Allium neopolitanum|alliaceous plant +flowering plant|1 +(noun)|angiosperm|spermatophyte|phanerogam|seed plant +flowering quince|1 +(noun)|shrub|bush +flowering raspberry|1 +(noun)|purple-flowering raspberry|Rubus odoratus|thimbleberry|raspberry|raspberry bush +flowering shrub|1 +(noun)|shrub|bush +flowering spurge|1 +(noun)|wild spurge|tramp's spurge|Euphorbia corollata|spurge +flowering stone|1 +(noun)|lithops|living stone|stoneface|stone-face|stone plant|stone life face|succulent +flowering tobacco|1 +(noun)|Jasmine tobacco|Nicotiana alata|tobacco +flowering tree|1 +(noun)|angiospermous tree|tree +flowering wintergreen|1 +(noun)|gaywings|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort +flowerpot|1 +(noun)|pot|container +flowers-of-an-hour|2 +(noun)|flower-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus +(noun)|flower-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus +flowers of zinc|1 +(noun)|zinc oxide|philosopher's wool|oxide +flowery|1 +(adj)|ornate|rhetorical +flowing|5 +(adj)|fluent|fluid|liquid|smooth|graceful +(adj)|artesian +(adj)|streaming|moving +(adj)|streaming|running +(noun)|flow|change of location|travel +floxuridine|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +floyd bennett|1 +(noun)|Bennett|Floyd Bennett|aviator|aeronaut|airman|flier|flyer +flu|1 +(noun)|influenza|grippe|contagious disease|contagion|respiratory disease|respiratory illness|respiratory disorder +flub|2 +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|botch|boner|boo-boo|mistake|error|fault +(verb)|botch|bumble|fumble|botch up|muff|blow|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +fluctuate|3 +(verb)|move|displace +(verb)|vacillate|waver|swing +(verb)|change state|turn +fluctuating|1 +(adj)|unsteady +fluctuation|3 +(noun)|wave|undulation +(noun)|variation|change|alteration|modification +(noun)|wavering|irregularity|unregularity +flue|3 +(noun)|fluke|projection +(noun)|flue pipe|labial pipe|organ pipe|pipe|pipework +(noun)|conduit +flue pipe|1 +(noun)|flue|labial pipe|organ pipe|pipe|pipework +flue stop|1 +(noun)|organ stop +fluegelhorn|1 +(noun)|flugelhorn|brass +fluency|3 +(noun)|eloquence|expressive style|style +(noun)|skillfulness +(noun)|volubility|articulateness|communicativeness +fluent|3 +(adj)|graceful +(adj)|flowing|fluid|liquid|smooth|graceful +(adj)|eloquent|facile|silver|silver-tongued|smooth-spoken|articulate +fluent aphasia|1 +(noun)|Wernicke's aphasia|receptive aphasia|sensory aphasia|impressive aphasia|aphasia +fluff|6 +(noun)|material|stuff +(noun)|bagatelle|frippery|frivolity|triviality|trivia|trifle|small beer +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|ruffle|loosen|fluff up +(verb)|tease|comb|comb out|disentangle +fluff up|1 +(verb)|plump up|shake up|shake|agitate +fluffiness|1 +(noun)|downiness|featheriness|softness +fluffy|1 +(adj)|downy|downlike|flossy|soft +fluffy omelet|1 +(noun)|omelet|omelette +flugelhorn|1 +(noun)|fluegelhorn|brass +fluid|7 +(adj)|unstable|changeable |changeful +(adj)|runny|liquid +(adj)|flowing|fluent|liquid|smooth|graceful +(adj)|liquid|disposable +(adj)|mobile|changeable |changeful +(noun)|substance|matter +(noun)|substance|matter +fluid drachm|2 +(noun)|fluidram|fluid dram|drachm|British capacity unit|Imperial capacity unit +(noun)|fluidram|fluid dram|drachm|United States liquid unit +fluid dram|2 +(noun)|fluidram|fluid drachm|drachm|British capacity unit|Imperial capacity unit +(noun)|fluidram|fluid drachm|drachm|United States liquid unit +fluid drive|1 +(noun)|coupling|coupler +fluid mechanics|1 +(noun)|hydraulics|mechanics +fluid ounce|3 +(noun)|fluidounce|British capacity unit|Imperial capacity unit +(noun)|fluidounce|United States liquid unit +(noun)| +fluidity|1 +(noun)|fluidness|liquidity|liquidness|runniness|thinness +fluidness|1 +(noun)|fluidity|liquidity|liquidness|runniness|thinness +fluidounce|2 +(noun)|fluid ounce|British capacity unit|Imperial capacity unit +(noun)|fluid ounce|United States liquid unit +fluidram|2 +(noun)|fluid dram|fluid drachm|drachm|British capacity unit|Imperial capacity unit +(noun)|fluid dram|fluid drachm|drachm|United States liquid unit +fluke|5 +(noun)|good luck|good fortune|luck|fortune +(noun)|barb +(noun)|flue|projection +(noun)|tail +(noun)|trematode|trematode worm|flatworm|platyhelminth +flukey|1 +(adj)|chancy|fluky|iffy|uncertain +fluky|1 +(adj)|chancy|flukey|iffy|uncertain +flume|2 +(noun)|gulch|gorge +(noun)|watercourse|waterway +flummery|2 +(noun)|pudding +(noun)|mummery|nonsense|bunk|nonsensicality|meaninglessness|hokum +flummox|1 +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +flump|2 +(verb)|flump down|drop +(verb)|plank|plonk|plop|plunk|plump down|plunk down|plump|set down|put down|place down +flump down|1 +(verb)|flump|drop +flunitrazepan|1 +(noun)|Rohypnol|club drug +flunk|1 +(verb)|fail|bomb|flush it +flunkey|2 +(noun)|lackey|flunky|servant|retainer +(noun)|flunky|stooge|yes-man|follower +flunky|2 +(noun)|lackey|flunkey|servant|retainer +(noun)|flunkey|stooge|yes-man|follower +fluor|1 +(noun)|fluorite|fluorspar|mineral +fluorapatite|1 +(noun)|apatite +fluoresce|1 +(verb)|glow +fluorescein|1 +(noun)|fluoresceine|fluorescent dye|resorcinolphthalein|dye|dyestuff|absorption indicator +fluorescein isocyanate|1 +(noun)|fluorescein isothiocyanate|fluorochrome +fluorescein isothiocyanate|1 +(noun)|fluorescein isocyanate|fluorochrome +fluoresceine|1 +(noun)|fluorescein|fluorescent dye|resorcinolphthalein|dye|dyestuff|absorption indicator +fluorescence|1 +(noun)|light|visible light|visible radiation +fluorescence microscopy|1 +(noun)|microscopy +fluorescent|2 +(adj)|light +(adj)|colorful |colourful +fluorescent dye|1 +(noun)|fluorescein|fluoresceine|resorcinolphthalein|dye|dyestuff|absorption indicator +fluorescent lamp|1 +(noun)|lamp +fluoridate|1 +(verb)|fluoridize|fluoridise|process|treat +fluoridation|1 +(noun)|fluoridization|fluoridisation|addition +fluoride|1 +(noun)|halide +fluoridisation|1 +(noun)|fluoridation|fluoridization|addition +fluoridise|1 +(verb)|fluoridate|fluoridize|process|treat +fluoridization|1 +(noun)|fluoridation|fluoridisation|addition +fluoridize|1 +(verb)|fluoridate|fluoridise|process|treat +fluorine|1 +(noun)|F|atomic number 9|chemical element|element|gas|halogen +fluorite|1 +(noun)|fluorspar|fluor|mineral +fluoroboric acid|1 +(noun)|acid +fluoroboride|1 +(noun)|salt +fluorocarbon|1 +(noun)|halocarbon +fluorocarbon plastic|1 +(noun)|plastic +fluorochrome|1 +(noun)|dye|dyestuff +fluoroform|1 +(noun)|trifluoromethane|haloform +fluoroscope|1 +(noun)|roentgenoscope|X-ray machine +fluoroscopy|1 +(noun)|radioscopy|radiology +fluorosis|1 +(noun)|pathology +fluorouracil|1 +(noun)|antimetabolite +fluorspar|1 +(noun)|fluorite|fluor|mineral +fluosilicate|1 +(noun)|salt +fluosilicic acid|1 +(noun)|hydrofluosilicic acid|acid +fluoxetine|1 +(noun)|Prozac|selective-serotonin reuptake inhibitor|SSRI +fluphenazine|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +flurazepam|1 +(noun)|flurazepam hydrochloride|Dalmane|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +flurazepam hydrochloride|1 +(noun)|flurazepam|Dalmane|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +flurbiprofen|1 +(noun)|Ansaid|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +flurry|4 +(noun)|bustle|hustle|ado|fuss|stir|commotion|din|ruction|ruckus|rumpus|tumult +(noun)|snow flurry|snow|snowfall +(verb)|move +(verb)|confuse|disconcert|put off|embarrass|abash +flush|16 +(adj)|even +(adj)|affluent|loaded|moneyed|wealthy|rich +(noun)|flower|prime|peak|heyday|bloom|blossom|efflorescence|time period|period of time|period +(noun)|bloom|blush|rosiness|good health|healthiness +(noun)|hot flash|symptom +(noun)|poker hand +(noun)|bang|boot|charge|rush|thrill|kick|exhilaration|excitement +(noun)|gush|outpouring|flow|flowing +(noun)|blush|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|blush|crimson|redden|discolor|discolour|colour|color +(verb)|run|flow|feed|course +(verb)|level|even out|even|change surface +(verb)|buff|burnish|furbish|polish|smooth|smoothen|shine +(verb)|scour|purge|rinse|rinse off +(verb)|sluice|drench|douse|dowse|soak|sop|souse +(verb)|water|irrigate +flush-seamed|1 +(adj)|carvel-built +flush down|1 +(verb)|wash down|flush +flush it|1 +(verb)|fail|flunk|bomb +flush toilet|1 +(noun)|lavatory|toilet|can|commode|crapper|pot|potty|stool|throne +flushed|2 +(adj)|rose-cheeked|rosy|rosy-cheeked|healthy +(adj)|crimson|red|reddened|red-faced|colored |coloured|colorful +flushless toilet|1 +(noun)|toilet|can|commode|crapper|pot|potty|stool|throne +fluster|3 +(noun)|perturbation|discomposure +(verb)|behave|acquit|bear|deport|conduct|comport|carry +(verb)|confuse|flurry|disconcert|put off +flustered|1 +(adj)|hot and bothered|perturbed|rattled|discomposed +flute|4 +(noun)|transverse flute|woodwind|woodwind instrument|wood +(noun)|flute glass|champagne flute|wineglass +(noun)|fluting|groove|channel +(verb)|crimp|pinch +flute glass|1 +(noun)|flute|champagne flute|wineglass +flute player|1 +(noun)|flutist|flautist|musician|instrumentalist|player +fluting|1 +(noun)|flute|groove|channel +flutist|1 +(noun)|flautist|flute player|musician|instrumentalist|player +flutter|8 +(noun)|waver|flicker|motion|movement|move|motility +(noun)|cardiac arrhythmia|arrhythmia +(noun)|disturbance|disruption|commotion|stir|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +(noun)|flap|flapping|fluttering|wave|undulation +(verb)|flit|fleet|dart|travel rapidly|speed|hurry|zip +(verb)|flicker|waver|flitter|quiver|move back and forth +(verb)|palpitate|beat|pound|thump +(verb)|bat|blink|wink|nictitate|nictate +flutter kick|1 +(noun)|swimming kick +fluttering|1 +(noun)|flap|flapping|flutter|wave|undulation +fluvastatin|1 +(noun)|Lescol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +fluvial|1 +(adj)|stream|watercourse +flux|11 +(noun)|rate +(noun)|fluxion|flow|flowing +(noun)|chemical +(noun)|pathology +(noun)|state of flux|state +(noun)|magnetic field|magnetic flux|field|field of force|force field +(noun)|flux density|concentration|density|denseness|compactness +(noun)|change +(verb)|flow|move +(verb)|liquefy|liquify|change integrity +(verb)|blend|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity +flux applicator|1 +(noun)|applicator|applier +flux density|1 +(noun)|flux|concentration|density|denseness|compactness +flux density unit|1 +(noun)|electromagnetic unit|emu +flux unit|1 +(noun)|magnetic flux unit|magnetic flux +fluxing lime|1 +(noun)|calcium oxide|quicklime|lime|calx|calcined lime|unslaked lime|burnt lime|oxide +fluxion|1 +(noun)|flux|flow|flowing +fluxmeter|1 +(noun)|meter +fly|19 +(adj)|alert +(noun)|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|tent-fly|rainfly|fly sheet|tent flap|flap +(noun)|fly front|opening +(noun)|fly ball|hit|hitting|striking +(noun)|fisherman's lure|fish lure +(verb)|wing|travel|go|move|locomote +(verb)|move +(verb)|aviate|pilot|operate|control +(verb)|transport|carry +(verb)|travel|go|move|locomote +(verb)|change +(verb)|fell|vanish|elapse|lapse|pass|slip by|glide by|slip away|go by|slide by|go along +(verb)|travel +(verb)|show +(verb)|flee|take flight|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away +(verb)|travel|journey +(verb)|hit +(verb)|vanish|vaporize|decrease|diminish|lessen|fall +fly-by-night|3 +(adj)|shady|untrustworthy |untrusty +(adj)|impermanent |temporary +(noun)|debtor +fly-fish|2 +(verb)|flyfish|angle +(verb)| +fly-fishing|1 +(noun)|angling +fly agaric|1 +(noun)|Amanita muscaria|agaric +fly ash|1 +(noun)|ash +fly ball|1 +(noun)|fly|hit|hitting|striking +fly blind|1 +(verb)|fly|aviate|pilot +fly bridge|2 +(noun)|flying bridge|flybridge|monkey bridge|bridge|bridge deck +(noun)| +fly by|2 +(verb)|travel by|pass by|surpass|go past|go by|pass +(verb)|zip by|whisk by|travel by|pass by|surpass|go past|go by|pass +fly casting|1 +(noun)|casting|cast +fly contact|1 +(verb)|fly|aviate|pilot +fly front|1 +(noun)|fly|opening +fly high|2 +(verb)|feel|experience +(verb)|thrive|prosper|flourish|change state|turn +fly honeysuckle|1 +(noun)|American fly honeysuckle|Lonicera canadensis|honeysuckle +fly in the face of|1 +(verb)|fly in the teeth of|violate|go against|break +fly in the ointment|1 +(noun)|troublesomeness|inconvenience|worriment +fly in the teeth of|1 +(verb)|fly in the face of|violate|go against|break +fly off the handle|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +fly on|1 +(verb)|fly|wing +fly open|1 +(verb)|open|open up +fly orchid|2 +(noun)|orchid|orchidaceous plant +(noun)|Ophrys insectifera|Ophrys muscifera|orchid|orchidaceous plant +fly poison|1 +(noun)|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant +fly rod|1 +(noun)|fishing rod|fishing pole +fly sheet|1 +(noun)|tent-fly|rainfly|fly|tent flap|flap +fly tent|1 +(noun)|tent|collapsible shelter +fly the coop|1 +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|break away|leave|go forth|go away +flyaway|2 +(adj)|flighty|frivolous +(adj)|loose +flyblown|3 +(adj)|maggoty|stale +(adj)|squalid|sordid|dirty |soiled|unclean +(adj)|besmirched|damaged|spotted|stained|sullied|tainted|tarnished|blemished +flybridge|1 +(noun)|flying bridge|fly bridge|monkey bridge|bridge|bridge deck +flycatcher|2 +(noun)|Old World flycatcher|true flycatcher|oscine|oscine bird +(noun)|New World flycatcher|tyrant flycatcher|tyrant bird|tyrannid +flycatching warbler|1 +(noun)|New World warbler|wood warbler +flyer|3 +(noun)|circular|handbill|bill|broadside|broadsheet|flier|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|flier|traveler|traveller +(noun)|aviator|aeronaut|airman|flier|skilled worker|trained worker +flyfish|1 +(verb)|fly-fish|angle +flying|8 +(adj)|winged +(adj)|fast-flying|moving +(adj)|aflare|flaring|waving|moving +(adj)|mobile +(adj)|air +(adj)|quick|fast|hurried +(adj)|running +(noun)|flight|air travel|aviation|air +flying bird|1 +(noun)|carinate|carinate bird|bird +flying boat|1 +(noun)|seaplane|hydroplane +flying bomb|1 +(noun)|buzz bomb|robot bomb|doodlebug|V-1|guided missile +flying bridge|1 +(noun)|flybridge|fly bridge|monkey bridge|bridge|bridge deck +flying buttress|1 +(noun)|arc-boutant|buttress|buttressing +flying carpet|1 +(noun)|rug|carpet|carpeting +flying cat|2 +(noun)|flying lemur|colugo|placental|placental mammal|eutherian|eutherian mammal +(noun)|taguan|flying marmot|Petaurista petaurista|Asiatic flying squirrel +flying colors|1 +(noun)|flying colours|success +flying colours|1 +(noun)|flying colors|success +flying dragon|1 +(noun)|dragon|flying lizard|agamid|agamid lizard +flying drainpipe|1 +(noun)|ramjet|ramjet engine|atherodyde|athodyd|jet engine +flying dutchman|3 +(noun)|Flying Dutchman|apparition|phantom|phantasm|phantasma|specter|spectre +(noun)|Flying Dutchman|apparition|phantom|phantasm|phantasma|shadow +(noun)|Flying Dutchman|ship +flying field|1 +(noun)|airfield|landing field|field|facility|installation +flying fish|1 +(noun)|teleost fish|teleost|teleostan +flying fox|1 +(noun)|fruit bat|megabat +flying gecko|1 +(noun)|fringed gecko|Ptychozoon homalocephalum|gecko +flying gurnard|1 +(noun)|flying robin|butterflyfish|scorpaenoid|scorpaenoid fish +flying horse|1 +(noun)|Pegasus|mythical being +flying jib|1 +(noun)|jib +flying lemur|1 +(noun)|flying cat|colugo|placental|placental mammal|eutherian|eutherian mammal +flying lizard|1 +(noun)|dragon|flying dragon|agamid|agamid lizard +flying mare|1 +(noun)|wrestling|rassling|grappling +flying marmot|1 +(noun)|taguan|flying cat|Petaurista petaurista|Asiatic flying squirrel +flying mouse|1 +(noun)|flying phalanger|flying opossum|flying squirrel +flying opossum|1 +(noun)|flying phalanger|flying squirrel|phalanger|opossum|possum +flying phalanger|1 +(noun)|flying opossum|flying squirrel|phalanger|opossum|possum +flying reptile|1 +(noun)|pterosaur|archosaur|archosaurian|archosaurian reptile +flying robin|1 +(noun)|flying gurnard|butterflyfish|scorpaenoid|scorpaenoid fish +flying saucer|1 +(noun)|unidentified flying object|UFO|apparition|phantom|phantasm|phantasma|shadow +flying school|1 +(noun)|school +flying squad|1 +(noun)|team|squad +flying squirrel|1 +(noun)|flying phalanger|flying opossum|phalanger|opossum|possum +flying start|2 +(noun)|running start|racing start +(noun)|running start|start +flyleaf|1 +(noun)|leaf|folio +flyover|2 +(noun)|overpass|flypast|bridge|span +(noun)|flypast|flight|flying +flypaper|1 +(noun)|paper +flypast|2 +(noun)|overpass|flyover|bridge|span +(noun)|flyover|flight|flying +flyspeck|2 +(adj)|bantam|diminutive|lilliputian|midget|petite|tiny|small +(noun)|atom|molecule|particle|corpuscle|mote|speck +flyswat|1 +(noun)|swatter|flyswatter|implement +flyswatter|1 +(noun)|swatter|flyswat|implement +flytrap|1 +(noun)|trap +flyway|1 +(noun)|migration route|path|route|itinerary +flyweight|2 +(noun)|wrestler|grappler|matman +(noun)|boxer|pugilist +flywheel|1 +(noun)|regulator +fm|2 +(noun)|frequency modulation|FM|modulation +(noun)|fermium|Fm|atomic number 100|metallic element|metal +fmri|1 +(noun)|functional magnetic resonance imaging|fMRI|magnetic resonance imaging|MRI +fnma|1 +(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation|corp +fo|1 +(noun)|field-grade officer|field officer|FO|commissioned military officer +fo'c'sle|1 +(noun)|forecastle|living quarters|quarters +foal|2 +(noun)|young mammal +(verb)|give birth|deliver|bear|birth|have +foaled|1 +(adj)|born +foam|3 +(noun)|froth|bubble +(noun)|material|stuff +(verb)|froth|fizz|effervesce|sparkle|bubble +foam at the mouth|1 +(verb)|froth at the mouth|rage +foam rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc|foam +foamentation|1 +(noun)|substance|matter +foamflower|1 +(noun)|coolwart|false miterwort|false mitrewort|Tiarella cordifolia|herb|herbaceous plant +foaminess|1 +(noun)|gaseousness +foaming|3 +(adj)|bubbling|bubbly|foamy|frothy|effervescing|effervescent +(adj)|foamy|frothing|unhealthy +(adj)|bubbling|foamy|frothing|spumous|spumy|sudsy|agitated +foamy|4 +(adj)|frothy|gaseous +(adj)|bubbling|bubbly|foaming|frothy|effervescing|effervescent +(adj)|foaming|frothing|unhealthy +(adj)|bubbling|foaming|frothing|spumous|spumy|sudsy|agitated +fob|4 +(noun)|watch pocket|vest pocket +(noun)|adornment +(noun)|watch chain|watch guard|chain +(verb)|trick|fox|pull a fast one on|play a trick on|deceive|lead on|delude|cozen +fob off|1 +(verb)|foist off|palm off|sell +focal|2 +(adj)|central +(adj)|point +focal distance|1 +(noun)|focal length|distance +focal epilepsy|1 +(noun)|cortical epilepsy|epilepsy +focal infection|1 +(noun)|infection +focal length|1 +(noun)|focal distance|distance +focal point|2 +(noun)|focus|point +(noun)|focus|nidus|point +focal ratio|1 +(noun)|f number|stop number|speed|ratio +focal seizure|1 +(noun)|seizure|ictus|raptus +focalisation|2 +(noun)|focalization|pathogenesis +(noun)|focalization|focusing|intensification +focalise|4 +(verb)|localize|localise|focalize|lie +(verb)|concenter|concentre|focalize|focus|align|aline|line up|adjust +(verb)|focus|focalize|adjust|conform|adapt +(verb)|focus|focalize|sharpen|adjust|set|correct +focalization|2 +(noun)|focalisation|pathogenesis +(noun)|focalisation|focusing|intensification +focalize|4 +(verb)|localize|localise|focalise|lie +(verb)|concenter|concentre|focalise|focus|align|aline|line up|adjust +(verb)|focus|focalise|adjust|conform|adapt +(verb)|focus|focalise|sharpen|adjust|set|correct +focus|12 +(noun)|focusing|focussing|direction|centering|concentration|engrossment|absorption|immersion +(noun)|distinctness|sharpness +(noun)|clarity|lucidity|pellucidity|clearness|limpidity +(noun)|focal point|nidus|point +(noun)|stress|emphasis|accent +(noun)|focal point|point +(noun)|point +(verb)|concentrate|center|centre|pore|rivet|think|cogitate|cerebrate +(verb)|sharpen +(verb)|concenter|concentre|focalize|focalise|align|aline|line up|adjust +(verb)|focalize|focalise|adjust|conform|adapt +(verb)|focalize|focalise|sharpen|adjust|set|correct|focus on +focus on|1 +(verb)|center on|revolve around|revolve about|concentrate on|center|refer|pertain|relate|concern|come to|bear on|touch|touch on +focused|4 +(adj)|adjusted +(adj)|focused |focussed|in focus +(adj)|focussed|convergent +(adj)|centered|centred|centralized|centralised|concentrated +focusing|2 +(noun)|focus|focussing|direction|centering|concentration|engrossment|absorption|immersion +(noun)|focalization|focalisation|intensification +focussed|2 +(adj)|focused |in focus +(adj)|focused|convergent +focussing|1 +(noun)|focus|focusing|direction|centering|concentration|engrossment|absorption|immersion +fodder|2 +(noun)|feed|provender +(verb)|feed|give +foe|2 +(noun)|enemy|foeman|opposition|adversary|antagonist|opponent|opposer|resister +(noun)|enemy|rival|challenger|competitor|competition|contender +foehn|1 +(noun)|fohn|wind|air current|current of air +foeman|1 +(noun)|enemy|foe|opposition|adversary|antagonist|opponent|opposer|resister +foeniculum|1 +(noun)|Foeniculum|genus Foeniculum|rosid dicot genus +foeniculum dulce|1 +(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel +foeniculum vulgare|1 +(noun)|common fennel|Foeniculum vulgare|fennel +foeniculum vulgare dulce|1 +(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel +foetal|1 +(adj)|fetal|vertebrate|craniate +foetal circulation|1 +(noun)|fetal circulation|circulatory system|cardiovascular system +foetal distress|1 +(noun)|fetal distress|abnormality|abnormalcy|abnormal condition +foetal monitor|1 +(noun)|electronic fetal monitor|electronic foetal monitor|fetal monitor|monitor +foetal movement|1 +(noun)|fetal movement|motion|movement|move|motility +foetid|1 +(adj)|fetid|foul|foul-smelling|funky|noisome|smelly|putrid|stinking|malodorous |malodourous +foetid bugbane|1 +(noun)|fetid bugbane|Cimicifuga foetida|bugbane +foetid pothos|1 +(noun)|skunk cabbage|polecat weed|Symplocarpus foetidus|marsh plant|bog plant|swamp plant +foetology|1 +(noun)|fetology|obstetrics|OB|tocology|midwifery +foetometry|1 +(noun)|fetometry|measurement|measuring|measure|mensuration +foetoprotein|1 +(noun)|fetoprotein|antigen +foetor|1 +(noun)|malodor|malodour|stench|stink|reek|fetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +foetoscope|1 +(noun)|fetoscope|stethoscope +foetoscopy|1 +(noun)|fetoscopy|prenatal diagnosis +foetus|1 +(noun)|fetus|vertebrate|craniate +fog|4 +(noun)|aerosol +(noun)|fogginess|murk|murkiness|atmosphere|atmospheric state +(noun)|daze|haze|confusion|mental confusion|confusedness|disarray +(verb)|obscure|befog|becloud|obnubilate|haze over|cloud|mist|hide|conceal +fog up|1 +(verb)|overcast|cloud +fogbank|1 +(noun)|fog +fogbound|1 +(adj)|enclosed +fogey|1 +(noun)|dodo|fogy|fossil|oldster|old person|senior citizen|golden ager +fogged|1 +(adj)|foggy|opaque +fogginess|2 +(noun)|fog|murk|murkiness|atmosphere|atmospheric state +(noun)|indistinctness|blurriness|fuzziness|opacity|opaqueness +foggy|4 +(adj)|brumous|hazy|misty|cloudy +(adj)|dazed|groggy|logy|stuporous|lethargic |unergetic +(adj)|bleary|blurred|blurry|fuzzy|hazy|muzzy|indistinct +(adj)|fogged|opaque +foggy bottom|1 +(noun)|Potomac|Foggy Bottom|Washington|Washington D.C.|American capital|capital of the United States +foghorn|2 +(noun)|fogsignal|alarm|alert|warning signal|alarum +(noun)|horn|signaling device +foglamp|1 +(noun)|headlight|headlamp +fogsignal|1 +(noun)|foghorn|alarm|alert|warning signal|alarum +fogy|1 +(noun)|dodo|fogey|fossil|oldster|old person|senior citizen|golden ager +fogyish|1 +(adj)|moss-grown|mossy|stick-in-the-mud|stodgy|unfashionable |unstylish +fohn|1 +(noun)|foehn|wind|air current|current of air +foible|2 +(noun)|idiosyncrasy|mannerism|peculiarity|specialness|specialty|speciality|distinctiveness +(noun)|part|portion +foie gras|1 +(noun)|pate de foie gras|pate +foil|8 +(noun)|sheet metal +(noun)|enhancer|attention +(noun)|hydrofoil|device +(noun)|transparency|picture|image|icon|ikon +(noun)|fencing sword +(verb)|contrast|counterpoint +(verb)|thwart|queer|spoil|scotch|cross|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|cover +foiled|1 +(adj)|defeated|disappointed|discomfited|frustrated|thwarted|unsuccessful +foiling|1 +(noun)|frustration|thwarting|hindrance|interference +foist|2 +(verb)|inflict|bring down|visit|impose +(verb)|insert|enclose|inclose|stick in|put in|introduce +foist off|1 +(verb)|palm off|fob off|sell +folacin|1 +(noun)|vitamin Bc|vitamin M|folate|folic acid|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +folate|1 +(noun)|vitamin Bc|vitamin M|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +fold|11 +(noun)|crease|plication|flexure|crimp|bend|angular shape|angularity +(noun)|congregation|faithful|social group +(noun)|plica|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|sheepfold|sheep pen|sheepcote|pen +(noun)|folding|change of shape +(verb)|fold up|turn up|change surface +(verb)|intertwine|twine|entwine|enlace|interlace|lace +(verb)|integrate|incorporate +(verb)|close|shut down|close down +(verb)|pen up|restrain|confine|hold +(verb)|fold up|change +fold up|2 +(verb)|fold|turn up|change surface +(verb)|fold|change +foldable|1 +(adj)|foldaway|folding|collapsible |collapsable +foldaway|1 +(adj)|foldable|folding|collapsible |collapsable +folded|1 +(adj)|folded |accordion|plicate|bifold|closed|doubled|pleated|rolled|rolled-up|sunburst|sunray|collapsed|folded-up|collapsible|collapsable +folded-up|1 +(adj)|folded +folder|2 +(noun)|booklet|brochure|leaflet|pamphlet|book +(noun)|covering +folderol|2 +(noun)|rubbish|tripe|trumpery|trash|wish-wash|applesauce|codswallop|drivel|garbage +(noun)|falderal|frills|gimcrackery|gimcracks|nonsense|trumpery|decoration|ornament|ornamentation +folding|3 +(adj)|foldable|foldaway|collapsible |collapsable +(noun)|protein folding|organic process|biological process +(noun)|fold|change of shape +folding chair|1 +(noun)|chair +folding door|1 +(noun)|accordion door|interior door +folding money|1 +(noun)|paper money|paper currency|currency +foldout|1 +(noun)|gatefold|page +foliaceous|3 +(adj)|plant organ +(adj)|foliose|foliaged|leafy +(adj)|foliate|foliated|stratified |bedded +foliage|2 +(noun)|leaf|leafage|plant organ +(noun)|foliation|architectural ornament +foliaged|1 +(adj)|foliaceous|foliose|leafy +foliate|8 +(adj)|foliated|plant organ +(adj)|leafy +(adj)|foliated|foliaceous|stratified |bedded +(verb)|forge|hammer +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|coat|surface +(verb)|paginate|page|number +(verb)|develop|make grow +foliated|2 +(adj)|foliate|plant organ +(adj)|foliate|foliaceous|stratified |bedded +foliation|5 +(noun)|leafing|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|stratification +(noun)|foliage|architectural ornament +(noun)|production +(noun)|application|coating|covering +folic acid|1 +(noun)|vitamin Bc|vitamin M|folate|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +folie|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|disorder|upset +folie a deux|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +folio|3 +(noun)|pagination|page number|paging|number +(noun)|leaf|sheet|piece of paper|sheet of paper +(noun)|book|volume +foliolate|1 +(adj)|leafy +foliose|1 +(adj)|foliaceous|foliaged|leafy +folium|1 +(noun)|geological formation|formation +folk|4 +(noun)|common people|people +(noun)|tribe|social group +(noun)|family|family line|kinfolk|kinsfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +(noun)|folk music|ethnic music|popular music|popular music genre +folk art|1 +(noun)|genre +folk ballad|1 +(noun)|folk song|folksong|folk music|ethnic music|folk|song +folk dance|2 +(noun)|folk dancing|social dancing +(verb)|dance|trip the light fantastic|trip the light fantastic toe +folk dancer|1 +(noun)|dancer|social dancer +folk dancing|1 +(noun)|folk dance|social dancing +folk etymology|1 +(noun)|etymology +folk music|1 +(noun)|ethnic music|folk|popular music|popular music genre +folk poet|1 +(noun)|folk writer +folk singer|1 +(noun)|jongleur|minstrel|poet-singer|troubadour|singer|vocalist|vocalizer|vocaliser +folk song|2 +(noun)|folksong|folk ballad|folk music|ethnic music|folk|song +(noun)| +folk tale|2 +(noun)|folktale|narrative|narration|story|tale +(noun)| +folk writer|1 +(noun)|writer|author +folklore|1 +(noun)|lore|traditional knowledge +folks|5 +(noun)|kin|kin group|kinship group|kindred|clan|tribe +(noun)|folk|common people|people +(noun)|tribe|folk|social group +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +(noun)|folk music|ethnic music|folk|popular music|popular music genre +folksong|1 +(noun)|folk song|folk ballad|folk music|ethnic music|folk|song +folksy|2 +(adj)|cracker-barrel|homespun|rural +(adj)|informal +folktale|1 +(noun)|folk tale|narrative|narration|story|tale +follicle|1 +(noun)|vesicle|cyst +follicle-stimulating hormone|1 +(noun)|FSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +follicular|1 +(adj)|vesicle|cyst +folliculitis|1 +(noun)|inflammation|redness|rubor +follies|5 +(noun)|revue|review +(noun)|folly|foolishness|unwiseness|trait +(noun)|stupidity|betise|folly|foolishness|imbecility|mistake|error|fault +(noun)|folly|foolishness|craziness|stupidity +(noun)|folly|foolery|tomfoolery|craziness|lunacy|indulgence|play|frolic|romp|gambol|caper +follow|23 +(verb)|travel|go|move|locomote +(verb)|postdate +(verb)|fall out|result|ensue +(verb)|travel along|travel|go|move|locomote +(verb)|comply|abide by|obey +(verb)|come after|result|ensue +(verb)|conform to|imitate|copy|simulate +(verb)|be +(verb)|adopt|espouse|choose|take|select|pick out +(verb)|take after|imitate|copy|simulate +(verb)|trace|analyze|analyse|study|examine|canvass|canvas +(verb)|watch|observe|watch over|keep an eye on|check|check up on|look into|check out|suss out|check over|go over|check into +(verb)|succeed|come after +(verb)|play along|accompany|play +(verb)|keep up|keep abreast +(verb)|come|originate|arise|rise|develop|uprise|spring up|grow +(verb)|act|behave|do +(verb)|practice|apply|use +(verb)|be +(verb)|surveil|survey +(verb)|pursue|travel|go|move|locomote +(verb)|understand +(verb)|stick to|stick with|persevere|persist|hang in|hang on|hold on +follow-on|1 +(noun)|innings +follow-through|2 +(noun)|completion|culmination|closing|windup|mop up +(noun)|completion|culmination|closing|windup|mop up +follow-up|4 +(noun)|followup|work|piece of work +(noun)|followup|activity +(noun)|followup|reexamination|review|examination|scrutiny +(noun)| +follow out|1 +(verb)|follow through|follow up|carry out|implement|put through|go through|complete|finish +follow suit|1 +(verb)|imitate +follow through|2 +(verb)|hit +(verb)|follow up|follow out|carry out|implement|put through|go through|complete|finish +follow up|2 +(verb)|follow through|follow out|carry out|implement|put through|go through|complete|finish +(verb)|enhance +follow up on|1 +(verb)|pursue|act on|react|oppose +follower|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|traveler|traveller +followers|3 +(noun)|following|multitude|masses|mass|hoi polloi|people +(noun)|follower|person|individual|someone|somebody|mortal|human|soul +(noun)|follower|traveler|traveller +following|6 +(adj)|following |pursuing|shadowing|tailing|stalking +(adj)|favorable |favourable +(adj)|next|succeeding +(adj)|undermentioned|succeeding +(noun)|followers|multitude|masses|mass|hoi polloi|people +(noun)|pursuit|chase|motion|movement|move +followup|3 +(noun)|follow-up|work|piece of work +(noun)|follow-up|activity +(noun)|follow-up|reexamination|review|examination|scrutiny +folly|4 +(noun)|foolishness|unwiseness|trait +(noun)|stupidity|betise|foolishness|imbecility|mistake|error|fault +(noun)|foolishness|craziness|stupidity +(noun)|foolery|tomfoolery|craziness|lunacy|indulgence|play|frolic|romp|gambol|caper +folsom culture|1 +(noun)|Folsom culture|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture +foment|2 +(verb)|agitate|stir up|provoke|stimulate +(verb)|bathe|bath +fomentation|2 +(noun)|treatment +(noun)|instigation|trigger|induction|initiation +fomenter|1 +(noun)|agitator|troublemaker|trouble maker|troubler|mischief-maker|bad hat +fomes|1 +(noun)|Fomes|genus Fomes|fungus genus +fomes igniarius|1 +(noun)|agaric|Fomes igniarius|fungus +fomite|1 +(noun)|vehicle|object|physical object +fomor|1 +(noun)|Fomor|Fomorian|Celtic deity +fomorian|1 +(noun)|Fomor|Fomorian|Celtic deity +fond|4 +(adj)|affectionate|caring|lovesome|tender|warm|loving +(adj)|adoring|doting|loving +(adj)|foolish +(adj)|partial|inclined +fond regard|1 +(noun)|attachment|affection|affectionateness|fondness|tenderness|heart|warmheartedness +fonda|2 +(noun)|Fonda|Jane Fonda|actress +(noun)|Fonda|Henry Fonda|actor|histrion|player|thespian|role player +fondant|1 +(noun)|candy +fondle|1 +(verb)|stroke|caress +fondler|2 +(noun)|petter|lover +(noun)|molester +fondling|1 +(noun)|caressing|cuddling|hugging|kissing|necking|petting|smooching|snuggling|foreplay|arousal|stimulation +fondly|1 +(adv)|lovingly +fondness|3 +(noun)|fancy|partiality|liking +(noun)|affection|affectionateness|tenderness|heart|warmheartedness|feeling +(noun)|affectionateness|lovingness|warmth|emotionality|emotionalism +fondu|2 +(noun)|fondue|dish +(noun)|fondue|dish +fondue|2 +(noun)|fondu|dish +(noun)|fondu|dish +font|2 +(noun)|fount|typeface|face|type +(noun)|baptismal font|baptistry|baptistery|basin +font cartridge|1 +(noun)|cartridge font|font|fount|typeface|face +fontanel|1 +(noun)|fontanelle|soft spot|orifice|opening|porta +fontanelle|1 +(noun)|fontanel|soft spot|orifice|opening|porta +fontanne|1 +(noun)|Fontanne|Lynn Fontanne|actress +fontenoy|1 +(noun)|Fontenoy|Battle of Fontenoy|pitched battle +fonteyn|1 +(noun)|Fonteyn|Dame Margot Fonteyn|dancer|professional dancer +food|3 +(noun)|nutrient|substance|matter +(noun)|solid +(noun)|food for thought|intellectual nourishment|content|cognitive content|mental object +food additive|1 +(noun)|artificial additive|additive +food allergy|1 +(noun)|allergy|allergic reaction +food and agriculture organization|1 +(noun)|Food and Agriculture Organization|Food and Agriculture Organization of the United Nations|FAO|United Nations agency|UN agency +food and agriculture organization of the united nations|1 +(noun)|Food and Agriculture Organization|Food and Agriculture Organization of the United Nations|FAO|United Nations agency|UN agency +food and drug administration|1 +(noun)|Food and Drug Administration|FDA|agency|federal agency|government agency|bureau|office|authority +food bank|1 +(noun)|bank +food cache|1 +(noun)|commissariat|provisions|provender|viands|victuals +food chain|1 +(noun)|organic phenomenon +food color|1 +(noun)|coloring|colouring|food coloring|food colouring|food colour|foodstuff|food product +food coloring|1 +(noun)|coloring|colouring|food colouring|food color|food colour|foodstuff|food product +food colour|1 +(noun)|coloring|colouring|food coloring|food colouring|food color|foodstuff|food product +food colouring|1 +(noun)|coloring|colouring|food coloring|food color|food colour|foodstuff|food product +food company|1 +(noun)|company +food cycle|1 +(noun)|food web|organic phenomenon +food elevator|1 +(noun)|dumbwaiter|elevator|lift +food faddist|1 +(noun)|faddist +food fish|1 +(noun)|fish +food for thought|1 +(noun)|food|intellectual nourishment|content|cognitive content|mental object +food grain|1 +(noun)|grain|cereal|foodstuff|food product +food hamper|1 +(noun)|hamper +food manufacturer|1 +(noun)|manufacturer|producer +food market|1 +(noun)|grocery store|grocery|market|marketplace|mart +food poisoning|1 +(noun)|gastrointestinal disorder|illness|unwellness|malady|sickness +food processor|1 +(noun)|kitchen appliance +food product|1 +(noun)|foodstuff|food|nutrient +food pyramid|1 +(noun)|organic phenomenon +food shop|1 +(noun)|delicatessen|deli|shop|store +food stamp|1 +(noun)|tender|legal tender +food turner|1 +(noun)|turner|cooking utensil|cookware +food waste|1 +(noun)|garbage|refuse|scraps|waste|waste material|waste matter|waste product +food web|1 +(noun)|food cycle|organic phenomenon +foodie|1 +(noun)|epicure|gourmet|gastronome|bon vivant|epicurean|sensualist +foodless|1 +(adj)|malnourished +foodstuff|2 +(noun)|grocery|consumer goods +(noun)|food product|food|nutrient +fool|7 +(noun)|sap|saphead|muggins|tomfool|simpleton|simple +(noun)|chump|gull|mark|patsy|fall guy|sucker|soft touch|mug|victim|dupe +(noun)|jester|motley fool|clown|buffoon|merry andrew +(verb)|gull|befool|deceive|lead on|delude|cozen +(verb)|fritter|frivol away|dissipate|shoot|fritter away|fool away|consume|squander|waste|ware +(verb)|gull|dupe|slang|befool|cod|put on|take in|put one over|put one across|deceive|betray|lead astray +(verb)|horse around|arse around|fool around|play|joke|jest +fool's cap|1 +(noun)|dunce cap|dunce's cap|hat|chapeau|lid +fool's errand|1 +(noun)|mission|charge|commission +fool's gold|1 +(noun)|pyrite|iron pyrite|mineral +fool's huckleberry|1 +(noun)|false azalea|Menziesia ferruginea|shrub|bush +fool's paradise|1 +(noun)|wellbeing|well-being|welfare|upbeat|eudaemonia|eudaimonia +fool's parsley|1 +(noun)|lesser hemlock|Aethusa cynapium|poisonous plant +fool around|2 +(verb)|horse around|arse around|fool|play|joke|jest +(verb)|play around|cheat on|cheat|cuckold|betray|wander +fool away|1 +(verb)|fritter|frivol away|dissipate|shoot|fritter away|fool|consume|squander|waste|ware +foolery|1 +(noun)|folly|tomfoolery|craziness|lunacy|indulgence|play|frolic|romp|gambol|caper +foolhardiness|1 +(noun)|recklessness|rashness|unthoughtfulness|thoughtlessness +foolhardy|1 +(adj)|rash|reckless|bold +fooling|1 +(adj)|casual|light +foolish|2 +(adj)|foolish |absurd|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|asinine|fatuous|inane|mindless|vacuous|cockamamie|cockamamy|goofy|sappy|silly|wacky|whacky|zany|unreasonable|fond|harebrained|insane|mad|ill-conceived|misguided|rattlebrained|rattlepated|scatterbrained|scatty|unwise|impolitic|imprudent|inadvisable|unadvisable|ill-advised|unadvised +(adj)|anserine|dopy|dopey|goosey|goosy|gooselike|stupid +foolish woman|1 +(noun)|flibbertigibbet|fool|sap|saphead|muggins|tomfool +foolishly|1 +(adv)|unwisely +foolishness|3 +(noun)|folly|unwiseness|trait +(noun)|folly|craziness|stupidity +(noun)|stupidity|betise|folly|imbecility|mistake|error|fault +foolproof|2 +(adj)|unfailing|infallible +(verb)|goofproof|goof-proof|proof +foolscap|1 +(noun)|sheet|piece of paper|sheet of paper +foot|14 +(noun)|ft|linear unit +(noun)|human foot|pes|vertebrate foot|pedal extremity +(noun)|bottom +(noun)|walk +(noun)|animal foot|vertebrate foot|pedal extremity +(noun)|support +(noun)|foundation|base|fundament|groundwork|substructure|understructure|support +(noun)|invertebrate foot|organ +(noun)|infantry|army unit +(noun)|secret agent|intelligence officer|intelligence agent|operative +(noun)|metrical foot|metrical unit|meter|metre|measure|beat|cadence +(verb)|pick|pay +(verb)|leg it|hoof|hoof it|walk +(verb)|foot up|add|add together +foot-and-mouth disease|1 +(noun)|hoof-and-mouth disease|animal disease +foot-lambert|1 +(noun)|ft-L|luminance unit +foot-pound|1 +(noun)|work unit|heat unit|energy unit +foot-poundal|1 +(noun)|work unit|heat unit|energy unit +foot-ton|1 +(noun)|work unit|heat unit|energy unit +foot brake|1 +(noun)|hydraulic brake|hydraulic brakes +foot doctor|1 +(noun)|chiropodist|podiatrist|specialist|medical specialist +foot lever|1 +(noun)|pedal|treadle|foot pedal|lever +foot pedal|1 +(noun)|pedal|treadle|foot lever|lever +foot race|2 +(noun)|footrace|run|race +(noun)| +foot rot|2 +(noun)|animal disease +(noun)|plant disease +foot rule|1 +(noun)|rule|ruler +foot soldier|2 +(noun)|infantryman|marcher|footslogger|soldier +(noun)|subordinate|subsidiary|underling|assistant|helper|help|supporter +foot traffic|1 +(noun)|pedestrian traffic|traffic +foot up|1 +(verb)|foot|add|add together +footage|2 +(noun)|film|photographic film +(noun)|rate|charge per unit +football|2 +(noun)|football game|field game|contact sport +(noun)|ball +football coach|1 +(noun)|coach|manager|handler +football field|1 +(noun)|gridiron|playing field|athletic field|playing area|field +football game|1 +(noun)|football|field game|contact sport +football helmet|1 +(noun)|helmet +football hero|1 +(noun)|football player|footballer +football league|1 +(noun)|league|conference +football official|1 +(noun)|official +football play|1 +(noun)|play +football player|1 +(noun)|footballer|athlete|jock|player|participant +football score|1 +(noun)|score +football season|1 +(noun)|season +football stadium|1 +(noun)|stadium|bowl|arena|sports stadium|athletic facility +football team|1 +(noun)|eleven|team|squad +football tee|1 +(noun)|tee|support +footballer|1 +(noun)|football player|athlete|jock|player|participant +footbath|1 +(noun)|bathtub|bathing tub|bath|tub +footboard|2 +(noun)|platform +(noun)|panel +footbridge|1 +(noun)|overcrossing|pedestrian bridge|bridge|span +footcandle|1 +(noun)|illumination unit +footed|1 +(adj)|footed |pedate|web-footed|web-toed|flat-footed +footedness|1 +(noun)|asymmetry|imbalance +footer|3 +(noun)|linear unit +(noun)|pedestrian|walker|traveler|traveller +(noun)|footnote|note|annotation|notation +footfall|1 +(noun)|footstep|step|sound +footfault|1 +(noun)|fault +footgear|1 +(noun)|footwear|covering +foothill|1 +(noun)|hill +foothills|2 +(noun)|hills +(noun)|foothill|hill +foothold|3 +(noun)|bridgehead|combat zone|combat area +(noun)|footing|support +(noun)|beachhead|accomplishment|achievement +footing|3 +(noun)|terms|status|position +(noun)|basis|ground|foundation +(noun)|foothold|support +footle|2 +(verb)|loiter|lounge|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +(verb)|act|behave|do +footless|1 +(adj)|footless |apodal|apodous +footlight|1 +(noun)|footlights|theater light +footlights|2 +(noun)|footlight|theater light +(noun)|footlight|theater light +footling|1 +(adj)|fiddling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +footlocker|1 +(noun)|locker|trunk +footloose|1 +(adj)|free +footman|1 +(noun)|manservant +footmark|1 +(noun)|footprint|step|mark|print +footnote|2 +(noun)|footer|note|annotation|notation +(verb)|annotate|write|compose|pen|indite +footpad|1 +(noun)|padder|highjacker|highwayman|hijacker|road agent +footpath|1 +(noun)|pathway|path +footplate|1 +(noun)|platform +footprint|3 +(noun)|footmark|step|mark|print +(noun)|trace|vestige|tincture|shadow +(noun)|area|expanse|surface area +footprint evidence|1 +(noun)|footprint|footmark|step|evidence +footrace|1 +(noun)|foot race|run|race +footrest|1 +(noun)|footstool|ottoman|stool +footslog|1 +(verb)|slog|plod|trudge|pad|tramp|walk +footslogger|1 +(noun)|infantryman|marcher|foot soldier|soldier +footsore|1 +(adj)|tired +footstall|1 +(noun)|pedestal|plinth|support +footstep|3 +(noun)|footfall|step|sound +(noun)|step +(noun)|pace|step|stride|indefinite quantity +footsteps-of-spring|1 +(noun)|Sanicula arctopoides|sanicle|snakeroot +footstool|1 +(noun)|footrest|ottoman|stool +footsure|1 +(adj)|surefooted|steady +footwall|1 +(noun)|wall +footwear|2 +(noun)|clothing|article of clothing|vesture|wear +(noun)|footgear|covering +footwork|2 +(noun)|maneuver|manoeuvre|play +(noun)|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +fop|1 +(noun)|dandy|dude|gallant|sheik|beau|swell|fashion plate|clotheshorse|man|adult male +foppish|1 +(adj)|dandified|dandyish|elegant +for 24 hours|1 +(adv)|around the clock|round the clock +for a bargain price|1 +(adv)|for a song|at a low price +for a song|1 +(adv)|for a bargain price|at a low price +for a while|1 +(adv)|awhile +for all intents and purposes|1 +(adv)|for all practical purposes|to all intents and purposes +for all practical purposes|1 +(adv)|to all intents and purposes|for all intents and purposes +for all the world|1 +(adv)|for love or money|for anything|for any price +for any price|1 +(adv)|for love or money|for anything|for all the world +for anything|1 +(adv)|for love or money|for any price|for all the world +for certain|1 +(adv)|surely|certainly|sure|for sure|sure enough|sure as shooting +for each one|1 +(adv)|each|to each one|from each one|apiece +for each person|1 +(adv)|per capita|of each person +for example|1 +(adv)|for instance|e.g. +for free|1 +(adv)|gratis|free of charge +for good|1 +(adv)|permanently +for instance|1 +(adv)|for example|e.g. +for love or money|1 +(adv)|for anything|for any price|for all the world +for sale|1 +(adj)|purchasable|available +for some reason|1 +(adv)|somehow +for sure|2 +(adj)|unquestionable +(adv)|surely|certainly|sure|for certain|sure enough|sure as shooting +for the asking|1 +(adv)|on request +for the first time|1 +(adv)|first +for the moment|1 +(adv)|for the time being +for the most part|1 +(adv)|largely|mostly +for the time being|1 +(adv)|for the moment +forage|4 +(noun)|eatage|pasture|pasturage|grass|feed|provender +(noun)|foraging|search|hunt|hunting +(verb)|scrounge|hunt|run|hunt down|track down +(verb)|feed|eat +foraging|1 +(noun)|forage|search|hunt|hunting +foram|1 +(noun)|foraminifer|rhizopod|rhizopodan +foramen|1 +(noun)|hiatus|opening|gap +foramen magnum|1 +(noun)|foramen|hiatus +foramen of monro|1 +(noun)|interventricular foramen|foramen of Monro|Monro's foramen|foramen|hiatus +foraminifer|1 +(noun)|foram|rhizopod|rhizopodan +foraminifera|1 +(noun)|Foraminifera|order Foraminifera|animal order +foray|4 +(noun)|raid|maraud|penetration|incursion +(noun)|attempt|effort|endeavor|endeavour|try +(verb)|plunder|despoil|loot|reave|strip|rifle|ransack|pillage|take +(verb)|penetrate|perforate +foray into|1 +(verb)|raid|intrude on|invade|obtrude upon|encroach upon +forbear|2 +(noun)|forebear|ancestor|ascendant|ascendent|antecedent|root +(verb)|refrain +forbearance|2 +(noun)|patience|longanimity|good nature +(noun)|delay|holdup +forbearing|1 +(adj)|longanimous|patient +forbid|2 +(verb)|prohibit|interdict|proscribe|veto|disallow|command|require|compel +(verb)|prevent|forestall|foreclose|preclude +forbiddance|2 +(noun)|ban|banning|forbidding|prohibition +(noun)|prohibition|inhibition|action +forbidden|1 +(adj)|out|prohibited|proscribed|taboo|tabu|verboten|impermissible +forbidden city|2 +(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital +(noun)|Forbidden City|section +forbidden fruit|1 +(noun)|temptation|enticement +forbidding|3 +(adj)|dour|grim|unpleasant +(adj)|baleful|menacing|minacious|minatory|ominous|sinister|threatening|ugly|alarming +(noun)|ban|banning|forbiddance|prohibition +force|18 +(noun)|military unit|military force|military group|unit|social unit +(noun)|power|causal agent|cause|causal agency +(noun)|physical phenomenon +(noun)|personnel|organization|organisation +(noun)|influence +(noun)|violence|aggression|hostility +(noun)|forcefulness|strength|intensity|intensiveness +(noun)|social group +(noun)|effect|validity|validness +(verb)|coerce|hale|squeeze|pressure|compel|oblige|obligate +(verb)|impel|cause|do|make +(verb)|push|move|displace|force out|force out +(verb)|thrust|compel|oblige|obligate +(verb)|wedge|squeeze|move|displace +(verb)|drive|ram|thrust +(verb)|act|move|force out|force out|force out|force back +(verb)|pull|draw|move|displace +(verb)|storm|penetrate|perforate +force-feed|1 +(verb)|feed|give +force-feed lubricating system|1 +(noun)|lubricating system|force feed|pressure-feed lubricating system|pressure feed|mechanical system +force-land|1 +(verb)|land|set down +force 17|1 +(noun)|Force 17|terrorist organization|terrorist group|foreign terrorist organization|FTO +force back|1 +(verb)|repel|drive|repulse|push back|beat back|push|force +force feed|1 +(noun)|lubricating system|force-feed lubricating system|pressure-feed lubricating system|pressure feed|mechanical system +force field|1 +(noun)|field|field of force|physical phenomenon +force majeure|1 +(noun)|act of God|vis major|inevitable accident|unavoidable casualty|calamity|catastrophe|disaster|tragedy|cataclysm +force out|8 +(verb)|depose|oust|throw out|drum out|boot out|kick out|expel +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|give the sack|terminate|remove +(verb)|rout out|drive out|rouse|move|displace +(verb)|displace|move|displace +(verb)|evict|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +(verb)|squirt|squeeze out|eject|discharge +(verb)|gouge|mutilate|mar +(verb)|emit|breathe|pass off +force per unit area|1 +(noun)|pressure|pressure level|physical phenomenon +force pump|1 +(noun)|pump +force unit|1 +(noun)|unit of measurement|unit +forced|4 +(adj)|move|displace +(adj)|involuntary |nonvoluntary|unvoluntary +(adj)|unexpected|unscheduled +(adj)|constrained|strained|affected |unnatural +forced feeding|1 +(noun)|gavage|feeding|alimentation +forced landing|1 +(noun)|emergency landing|aircraft landing|airplane landing +forced sale|1 +(noun)|sheriff's sale|execution sale|judicial sale|sale|sales agreement +forceful|2 +(adj)|forceful |bruising|cogent|telling|weighty|drastic|emphatic|exclamatory|firm|strong|forcible|physical|strong-arm|impellent|impetuous|sharp +(adj)|emphatic|assertive +forcefulness|1 +(noun)|force|strength|intensity|intensiveness +forceless|1 +(adj)|forceless |unforceful|weak|wimpish|wimpy +forcemeat|1 +(noun)|farce|stuffing|dressing +forceps|1 +(noun)|extractor +forceps delivery|1 +(noun)|delivery|obstetrical delivery +forces of umar al-mukhtar|1 +(noun)|Forces of Umar Al-Mukhtar|Umar al-Mukhtar Forces|terrorist organization|terrorist group|foreign terrorist organization|FTO +forcible|1 +(adj)|physical|strong-arm|forceful +forcing out|1 +(noun)|expulsion|projection|ejection|propulsion|actuation +forcipate|1 +(adj)|extractor +ford|9 +(noun)|Ford|John Ford|film maker|filmmaker|film producer|movie maker +(noun)|Ford|Henry Ford II|industrialist +(noun)|Ford|Edsel Bryant Ford|industrialist +(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer|author +(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States|United States President|President|Chief Executive +(noun)|Ford|Henry Ford|industrialist +(noun)|crossing|body of water|water +(noun)|fording|crossing +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +ford hermann hueffer|1 +(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer|author +ford madox ford|1 +(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer|author +fordable|1 +(adj)|shallow +fordhooks|1 +(noun)|Fordhooks|lima bean +fording|1 +(noun)|ford|crossing +fore|4 +(adj)|fore |foremost|forward|forward|front +(adj)|front|anterior +(noun)|bow|prow|stem|front +(adv)|forward +fore-and-aft|1 +(adj)|lengthwise |lengthways +fore-and-aft rig|1 +(noun)|rig|rigging +fore-and-aft sail|1 +(noun)|sail|canvas|canvass|sheet +fore-and-aft topsail|1 +(noun)|gaff topsail|fore-and-aft sail +fore-and-after|1 +(noun)|sailing vessel|sailing ship +fore-topmast|1 +(noun)|topmast +fore-topsail|1 +(noun)|topsail +fore plane|1 +(noun)|plane|carpenter's plane|woodworking plane +forearm|2 +(noun)|limb +(verb)|arm|build up|fortify|gird +forebear|1 +(noun)|forbear|ancestor|ascendant|ascendent|antecedent|root +forebode|1 +(verb)|predict|foretell|prognosticate|call|anticipate|promise|guess|venture|pretend|hazard +foreboding|3 +(adj)|fateful|portentous|prophetic |prophetical +(noun)|premonition|presentiment|boding|apprehension|apprehensiveness|dread +(noun)|omen|portent|presage|prognostic|prognostication|prodigy +forebrain|1 +(noun)|prosencephalon|neural structure +forecast|4 +(noun)|prognosis|prediction|foretelling|forecasting|prognostication +(verb)|calculate|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|calculate|estimate|reckon|count on|figure|judge +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|predict|bespeak|betoken|indicate|point|signal +forecaster|1 +(noun)|predictor|prognosticator|soothsayer|visionary|illusionist|seer +forecasting|1 +(noun)|prediction|foretelling|prognostication|statement +forecastle|1 +(noun)|fo'c'sle|living quarters|quarters +foreclose|2 +(verb)|prevent|forestall|preclude|forbid +(verb)|reclaim|repossess +foreclosure|1 +(noun)|proceeding|legal proceeding|proceedings +forecourt|1 +(noun)|court|courtyard +foredate|1 +(verb)|predate|antedate|chronologize|chronologise +foredeck|1 +(noun)|deck +foredoom|1 +(verb)|sentence|condemn|doom +forefather|2 +(noun)|father|sire|ancestor|ascendant|ascendent|antecedent|root +(noun)|predecessor +forefinger|1 +(noun)|index|index finger|finger +forefoot|1 +(noun)|animal foot|foot +forefront|2 +(noun)|head|front|front end|forepart +(noun)|vanguard|cutting edge|position|view|perspective +foregather|1 +(verb)|meet|gather|assemble|forgather|interact +forego|1 +(verb)|predate|precede|antecede|antedate +foregoing|1 +(adj)|preceding +foregone|1 +(adj)|bygone|bypast|departed|gone|past +foregone conclusion|2 +(noun)|matter of course|ending|conclusion|finish +(noun)|certainty|sure thing|quality +foreground|3 +(noun)|view|aspect|prospect|scene|vista|panorama +(noun)|window +(verb)|highlight|spotlight|play up|bring out|set off +foreground processing|1 +(noun)|foregrounding|priority processing +foregrounding|1 +(noun)|foreground processing|priority processing +forehand|2 +(adj)|forehand |forehanded +(noun)|forehand stroke|forehand shot|return +forehand drive|1 +(noun)|drive +forehand shot|1 +(noun)|forehand|forehand stroke|return +forehand stroke|1 +(noun)|forehand|forehand shot|return +forehanded|2 +(adj)|forehand +(adj)|provident +forehead|2 +(noun)|brow|feature|lineament +(noun)|frontal bone|os frontale|membrane bone +foreign|4 +(adj)|foreign |abroad|overseas|external|international|outside|international +(adj)|foreign |adventive|alien|exotic|established|naturalized|foreign-born|nonnative|imported|nonnative|tramontane|unnaturalized|unnaturalised +(adj)|alien|extrinsic +(adj)|extraneous|adulterating |adulterant +foreign-born|1 +(adj)|nonnative|foreign +foreign agent|1 +(noun)|spy|undercover agent +foreign aid|1 +(noun)|aid|economic aid +foreign bill|1 +(noun)|foreign draft|draft|bill of exchange|order of payment +foreign correspondent|1 +(noun)|correspondent|newspaperman|newspaperwoman|newswriter|pressman +foreign direct investment|2 +(noun)|investing|investment +(noun)|joint venture +foreign draft|1 +(noun)|foreign bill|draft|bill of exchange|order of payment +foreign exchange|1 +(noun)|exchange|interchange +foreign intelligence service|1 +(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency +foreign intelligence surveillance act|1 +(noun)|Foreign Intelligence Surveillance Act|FISA|legislative act|statute +foreign intelligence surveillance court|1 +(noun)|Foreign Intelligence Surveillance Court|F.I.S.C.|court|tribunal|judicature +foreign legion|1 +(noun)|legion +foreign minister|1 +(noun)|secretary of state|minister|government minister +foreign mission|2 +(noun)|mission|missionary post|missionary station|nongovernmental organization|NGO +(noun)|legation|diplomatic mission +foreign office|1 +(noun)|ministry +foreign policy|1 +(noun)|policy +foreign service|1 +(noun)|Foreign Service|agency|federal agency|government agency|bureau|office|authority +foreign terrorist organization|1 +(noun)|terrorist organization|terrorist group|FTO|political movement +foreigner|2 +(noun)|alien|noncitizen|outlander|traveler|traveller +(noun)|outsider|stranger|alien|unknown +foreignness|1 +(noun)|strangeness|curiousness|quality +foreknow|1 +(verb)|anticipate|previse|foresee|know +foreknowledge|1 +(noun)|precognition|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP +forelady|1 +(noun)|forewoman|foreperson +foreland|2 +(noun)|promontory|headland|natural elevation|elevation +(noun)|land|dry land|earth|ground|solid ground|terra firma +foreleg|1 +(noun)|forelimb +forelimb|1 +(noun)|limb +forelock|2 +(noun)|lock|curl|ringlet|whorl +(noun)|foretop|hair +foreman|2 +(noun)|chief|gaffer|honcho|boss|supervisor +(noun)|foreperson +foremanship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +foremast|1 +(noun)|mast +foremilk|1 +(noun)|colostrum|milk +foremost|5 +(adj)|first|world-class|best +(adj)|fore +(adj)|frontmost|front +(adv)|first +(adv)|first|firstly|first of all|first off +foremother|1 +(noun)|ancestor|ascendant|ascendent|antecedent|root +forename|1 +(noun)|first name|given name|name +forenoon|1 +(noun)|morning|morn|morning time|time period|period of time|period +forensic|1 +(adj)|rhetorical +forensic medicine|1 +(noun)|forensic pathology|medicine|medical specialty +forensic pathology|1 +(noun)|forensic medicine|medicine|medical specialty +foreordain|2 +(verb)|predestine|predestinate|predetermine +(verb)|predestine|preordain|predetermine +foreordained|1 +(adj)|predestinate|predestined|certain |sure +foreordination|1 +(noun)|predestination|preordination|predetermination|theological doctrine|religious doctrine +forepart|1 +(noun)|front|front end|side|face +forepaw|1 +(noun)|paw +foreperson|1 +(noun)|juror|juryman|jurywoman +foreplay|1 +(noun)|arousal|stimulation|sexual activity|sexual practice|sex|sex activity +forequarter|1 +(noun)|cut|cut of meat +forerunner|3 +(noun)|antecedent|temporal relation +(noun)|precursor|person|individual|someone|somebody|mortal|human|soul +(noun)|harbinger|herald|precursor|indication|indicant +foresail|1 +(noun)|sail|canvas|canvass|sheet +foresee|3 +(verb)|anticipate|previse|foreknow|know +(verb)|envision|imagine|conceive of|ideate|envisage +(verb)|anticipate|forestall|counter|act|move +foreseeable|1 +(adj)|predictable +foreseen|1 +(adj)|foretold|predicted|expected +foreshadow|1 +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +foreshadowing|2 +(adj)|adumbrative|prefigurative|prophetic |prophetical +(noun)|prefiguration|adumbration|prediction|anticipation|prevision +foreshank|1 +(noun)|shank +foreshock|1 +(noun)|tremor|earth tremor|microseism +foreshore|1 +(noun)|geological formation|formation +foreshorten|2 +(verb)|abridge|abbreviate|shorten|cut|contract|reduce|decrease|lessen|minify +(verb)|shorten +foreshow|1 +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict +foresight|2 +(noun)|foresightedness|foresightfulness|providence +(noun)|prevision|prospicience|knowing +foresighted|1 +(adj)|farseeing|farsighted|foresightful|long|longsighted|provident +foresightedness|1 +(noun)|foresight|foresightfulness|providence +foresightful|1 +(adj)|farseeing|farsighted|foresighted|long|longsighted|provident +foresightfulness|1 +(noun)|foresight|foresightedness|providence +foreskin|2 +(noun)|prepuce|skin|tegument|cutis +(noun)|prepuce|skin|tegument|cutis +forest|3 +(noun)|wood|woods|vegetation|flora +(noun)|woodland|timberland|timber|land|dry land|earth|ground|solid ground|terra firma|biome +(verb)|afforest|plant|set +forest fire|1 +(noun)|fire +forest fire fighter|1 +(noun)|fire warden|ranger|official|functionary|fireman|firefighter|fire fighter|fire-eater +forest goat|1 +(noun)|spindle horn|Pseudoryx nghetinhensis|bovid +forest god|1 +(noun)|satyr|Greek deity +forest red gum|1 +(noun)|Eucalypt tereticornis|flooded gum +forest tent caterpillar|1 +(noun)|Malacosoma disstria|tent caterpillar +forestage|1 +(noun)|proscenium|apron|stage +forestall|2 +(verb)|prevent|foreclose|preclude|forbid +(verb)|anticipate|foresee|counter|act|move +forestalling|1 +(noun)|obviation|preclusion|prevention|bar +forestay|1 +(noun)|stay +forested|1 +(adj)|wooded +forester|2 +(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer|author +(noun)|tree farmer|arboriculturist|farmer|husbandman|granger|sodbuster +forestiera|1 +(noun)|shrub|bush +forestiera neomexicana|1 +(noun)|tanglebush|desert olive|Forestiera neomexicana|forestiera +forestry|1 +(noun)|biology|biological science +foreswear|2 +(verb)|waive|relinquish|forgo|dispense with +(verb)|renounce|quit|relinquish|abandon|give up +foretaste|1 +(noun)|expectation|outlook|prospect +foretell|3 +(verb)|announce|annunciate|harbinger|herald|tell +(verb)|predict|prognosticate|call|forebode|anticipate|promise|guess|venture|pretend|hazard +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +foretelling|2 +(noun)|prediction|forecasting|prognostication|statement +(noun)|divination|soothsaying|fortune telling|prophecy|prognostication|vaticination +forethought|2 +(noun)|premeditation|planning|preparation|provision +(noun)|caution|precaution|care|judiciousness +forethoughtful|1 +(adj)|provident +foretoken|1 +(noun)|augury|sign|preindication|experience +foretold|1 +(adj)|foreseen|predicted|expected +foretop|2 +(noun)|platform +(noun)|forelock|hair +forever|3 +(adv)|everlastingly|eternally|evermore +(adv)|always +(adv)|forever and a day +forever and a day|1 +(adv)|forever +forevermore|1 +(adv)|evermore +forewarn|1 +(verb)|previse|warn +forewarning|1 +(noun)|premonition|warning +forewing|1 +(noun)|wing +forewoman|2 +(noun)|forelady|foreperson +(noun)|supervisor +foreword|1 +(noun)|preface|prolusion|introduction +forfeit|5 +(adj)|confiscate|forfeited|lost +(noun)|forfeiture|loss +(noun)|forfeiture|penalty +(noun)|forfeiture|sacrifice|act|human action|human activity +(verb)|give up|throw overboard|waive|forgo|abandon +forfeited|1 +(adj)|confiscate|forfeit|lost +forfeiture|3 +(noun)|forfeit|loss +(noun)|forfeit|penalty +(noun)|forfeit|sacrifice|act|human action|human activity +forficate|1 +(adj)|bifurcate|biramous|branched|forked|pronged|prongy|divided +forficula|1 +(noun)|Forficula|genus Forficula|arthropod genus +forficula auricularia|1 +(noun)|common European earwig|Forficula auricularia|earwig +forficulidae|1 +(noun)|Forficulidae|family Forficulidae|arthropod family +forgather|1 +(verb)|meet|gather|assemble|foregather|interact +forge|9 +(noun)|furnace +(noun)|smithy|workplace|work +(verb)|hammer|beat +(verb)|fake|counterfeit|re-create +(verb)|invent|contrive|devise|excogitate|formulate|create by mental act|create mentally +(verb)|advance|progress|pass on|move on|march on|go on +(verb)|spurt|spirt|travel|go|move|locomote +(verb)|shape|form|work|mold|mould|create from raw material|create from raw stuff +(verb)|fashion|make +forged|1 +(adj)|bad|counterfeit |imitative +forger|2 +(noun)|smith|metalworker +(noun)|counterfeiter|deceiver|cheat|cheater|trickster|beguiler|slicker +forgery|2 +(noun)|imitation|counterfeit|copy +(noun)|falsification|falsehood|crime|law-breaking +forget|4 +(verb)|bury +(verb)|block|blank out|draw a blank +(verb)|neglect|pretermit|omit|drop|miss|leave out|overlook|overleap +(verb)|leave|lose +forget-me-not|1 +(noun)|mouse ear|Myosotis scorpiodes|herb|herbaceous plant +forget me drug|1 +(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|circle|flunitrazepan|Rohypnol +forgetful|3 +(adj)|unretentive |short|unmindful|mindless +(adj)|unmindful |mindless|amnesic|amnesiac +(adj)|oblivious|inattentive +forgetful person|1 +(noun)|scatterbrain|simpleton|simple +forgetfulness|2 +(noun)|amnesia|memory loss|blackout +(noun)|unknowingness|unawareness +forgettable|1 +(adj)|forgettable |unmemorable +forging|1 +(noun)|formation|shaping +forgivable|1 +(adj)|excusable|venial|pardonable +forgivably|1 +(adv)|excusably|pardonably +forgive|2 +(verb)|concede|yield|grant +(verb)|exempt|relieve|free +forgiveness|2 +(noun)|mercifulness|mercy +(noun)|pardon|kindness|benignity +forgiver|1 +(noun)|pardoner|excuser|person|individual|someone|somebody|mortal|human|soul +forgiving|2 +(adj)|forgiving |kind|tolerant|unvindictive +(adj)|absolvitory|exonerative|exculpatory +forgivingness|1 +(noun)|kindness|mercifulness|mercy +forgo|3 +(verb)|waive|relinquish|foreswear|dispense with +(verb)|forfeit|give up|throw overboard|waive|abandon +(verb)|give up +forgoing|1 +(noun)|renunciation|forswearing|rejection +forgotten|2 +(adj)|disregarded|unnoticed +(adj)|lost|unrecoverable |irrecoverable +forint|1 +(noun)|Hungarian monetary unit +fork|9 +(noun)|cutlery|eating utensil +(noun)|branching|ramification|forking|division +(noun)|branch|leg|ramification|subfigure +(noun)|tool +(noun)|crotch|angle +(verb)|pitchfork|lift +(verb)|attack|aggress +(verb)|branch|ramify|furcate|separate|diverge +(verb)|shape|form +fork out|1 +(verb)|hand over|fork over|fork up|turn in|get in|deliver|render|pass|hand|reach|pass on|turn over|give +fork over|1 +(verb)|hand over|fork out|fork up|turn in|get in|deliver|render|pass|hand|reach|pass on|turn over|give +fork up|1 +(verb)|hand over|fork over|fork out|turn in|get in|deliver|render|pass|hand|reach|pass on|turn over|give +forked|2 +(adj)|bifurcate|biramous|branched|forficate|pronged|prongy|divided +(adj)|double|equivocal |ambiguous +forked lightning|1 +(noun)|chain lightning|lightning +forking|2 +(noun)|furcation|angular shape|angularity +(noun)|branching|ramification|fork|division +forklift|1 +(noun)|self-propelled vehicle +forlorn|2 +(adj)|desolate|godforsaken|lorn|forsaken +(adj)|hopeless +forlorn hope|1 +(noun)|enterprise|endeavor|endeavour +forlornness|1 +(noun)|loneliness|desolation|sadness|unhappiness +form|23 +(noun)|word form|signifier|descriptor|word +(noun)|kind|sort|variety|category +(noun)|shape|pattern|structure +(noun)|shape|configuration|contour|conformation|spatial property|spatiality +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|flesh|body|organic structure|physical structure +(noun)|shape|attribute +(noun)|shape|cast|appearance|visual aspect +(noun)|phase|state of matter|state +(noun)|document|written document|papers +(noun)|variant|strain|var.|taxonomic group|taxonomic category|taxon +(noun)|writing style|literary genre|genre +(noun)|manner|mode|style|way|fashion +(noun)|class|grade|gathering|assemblage +(noun)|ability +(noun)|mannequin|manikin|mannikin|manakin|dummy +(noun)|mold|mould|cast +(verb)|constitute|make|constitute|represent|make up|comprise|be +(verb)|organize|organise|make|create +(verb)|take form|take shape|spring|become +(verb)|shape|change|alter|modify +(verb)|shape|work|mold|mould|forge|create from raw material|create from raw stuff +(verb)|imprint|influence|act upon|work +(verb)|change|alter|modify +form-only|1 +(adj)|formal +form class|1 +(noun)|part of speech|word class|grammatical category|syntactic category +form division|1 +(noun)|division +form family|1 +(noun)|family +form genus|2 +(noun)|genus +(noun)|genus +form letter|1 +(noun)|letter|missive +form of government|1 +(noun)|political system|social group +formal|6 +(adj)|formal |ceremonial|ceremonious|conventional|dress|full-dress|form-only|full-dress|dress|nominal|titular|positive|prescribed|semiformal|semi-formal|black-tie|starchy|stiff|buckram|white-tie|pro forma|perfunctory|conventional +(adj)|official +(adj)|formal |literary|rhetorical +(adj)|conventional|schematic|nonrepresentational +(adj)|logical +(adj)|courtly|elegant|stately|dignified +formal garden|1 +(noun)|garden +formal logic|1 +(noun)|symbolic logic|mathematical logic|logic|logical system|system of logic +formaldehyde|1 +(noun)|methanal|aldehyde|gas +formalin|1 +(noun)|formol|solution +formalisation|1 +(noun)|formalization|systematization|systematisation|rationalization|rationalisation +formalise|2 +(verb)|formalize|declare|adjudge|hold +(verb)|validate|formalize|authorize|authorise|pass|clear +formalised|2 +(adj)|formalistic|formalized|practice|pattern +(adj)|formalized|official +formalism|3 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|philosophical doctrine|philosophical theory +(noun)|practice|pattern +formalistic|1 +(adj)|formalized|formalised|practice|pattern +formalities|4 +(noun)|formality|ceremony|ceremonial|ceremonial occasion|observance +(noun)|formality|ceremony|ceremonial|ceremonial occasion|observance +(noun)|formality|formalness|manner|personal manner +(noun)|formality|conformity|conformation|compliance|abidance +formality|3 +(noun)|formalities|ceremony|ceremonial|ceremonial occasion|observance +(noun)|formalness|manner|personal manner +(noun)|conformity|conformation|compliance|abidance +formalization|1 +(noun)|formalisation|systematization|systematisation|rationalization|rationalisation +formalize|2 +(verb)|formalise|declare|adjudge|hold +(verb)|validate|formalise|authorize|authorise|pass|clear +formalized|2 +(adj)|formalistic|formalised|practice|pattern +(adj)|formalised|official +formally|2 +(adv)|officially +(adv)|with formality +formalness|1 +(noun)|formality|manner|personal manner +formalwear|1 +(noun)|eveningwear|evening dress|evening clothes|attire|garb|dress +format|5 +(noun)|formatting|data format|data formatting|information|info +(noun)|appearance|visual aspect +(verb)|arrange|change +(verb)|determine|set +(verb)|initialize|initialise|divide|split|split up|separate|dissever|carve up +formation|7 +(noun)|arrangement +(noun)|placement|arrangement +(noun)|shaping|fabrication|manufacture +(noun)|constitution|establishment|organization|organisation|beginning|start|commencement +(noun)|geological formation|natural object +(noun)|natural process|natural action|action|activity +(noun)|creating by mental acts +formative|6 +(adj)|fabrication|manufacture +(adj)|young |immature +(adj)|inchoative|immature +(adj)|constructive +(adj)|shaping|constructive +(noun)|language unit|linguistic unit +formative cell|1 +(noun)|embryonic cell|cell +formatted capacity|1 +(noun)|capacity +formatting|1 +(noun)|format|data format|data formatting|information|info +formed|5 +(adj)|defined|settled|definite +(adj)|formed |baccilar|bacillary|bacilliform|baculiform|rod-shaped|biform|blown|botuliform|cast|catenulate|chainlike|die-cast|H-shaped|L-shaped|navicular|scaphoid|perfected|phylliform|precast|shaped|molded|wrought|s-shaped|T-shaped|U-shaped|vermiform|worm-shaped|v-shaped|Y-shaped|W-shaped +(adj)|conceived|planned +(adj)|organized +(adj)|developed +former|5 +(adj)|former +(adj)|erstwhile|once|onetime|quondam|sometime|past +(adj)|late|previous|past +(adj)|early|other|past +(noun)|first|number one +former armed forces|1 +(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization|terrorist group|foreign terrorist organization|FTO +formerly|1 +(adv)|once|at one time|erstwhile|erst +formic|2 +(adj)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +(adj)|acid +formic acid|1 +(noun)|acid +formica|2 +(noun)|Formica|plastic laminate +(noun)|Formica|genus Formica|arthropod genus +formica fusca|1 +(noun)|Formica fusca|slave ant +formica rufa|1 +(noun)|wood ant|Formica rufa|ant|emmet|pismire +formica sanguinea|1 +(noun)|sanguinary ant|Formica sanguinea|slave-making ant|slave-maker +formicariidae|1 +(noun)|Formicariidae|family Formicariidae|bird family +formicarius|1 +(noun)|Formicarius|genus Formicarius|bird genus +formicary|1 +(noun)|anthill|knoll|mound|hillock|hummock|hammock +formicate|1 +(verb)|crawl|creep +formication|1 +(noun)|paresthesia|paraesthesia +formicidae|1 +(noun)|Formicidae|family Formicidae|arthropod family +formidability|1 +(noun)|toughness|difficulty|difficultness +formidable|2 +(adj)|impressive +(adj)|redoubtable|unnerving|alarming +formless|2 +(adj)|amorphous|shapeless|unformed +(adj)|unbodied +formol|1 +(noun)|formalin|solution +formosa|1 +(noun)|Taiwan|Formosa|island +formosan|2 +(adj)|Taiwanese|Chinese|Formosan +(noun)|Formosan|Austronesian|Austronesian language +formula|7 +(noun)|expression|mathematical statement +(noun)|recipe|direction|instruction +(noun)|statement +(noun)|chemical formula|statement +(noun)|convention|normal|pattern|rule|practice +(noun)|milk +(noun)|rule|procedure|process +formulaic|1 +(adj)|conventional +formularise|1 +(verb)|formularize|give voice|formulate|word|phrase|articulate +formularize|1 +(verb)|formularise|give voice|formulate|word|phrase|articulate +formulary|2 +(adj)|statement +(noun)|pharmacopeia|book +formulate|4 +(verb)|explicate|develop|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +(verb)|invent|contrive|devise|excogitate|forge|create by mental act|create mentally +(verb)|give voice|word|phrase|articulate|express|show|evince +(verb)|create from raw material|create from raw stuff +formulated|1 +(adj)|developed +formulation|3 +(noun)|preparation|compound|chemical compound +(noun)|conceptualization|conceptualisation|creating by mental acts +(noun)|expression|expressive style|style +fornax|1 +(noun)|Fornax|constellation +fornicate|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk +fornication|2 +(noun)|extramarital sex|free love +(noun)|adultery|criminal conversation|extramarital sex|free love +fornicator|1 +(noun)|adulterer|libertine|debauchee|rounder +fornicatress|1 +(noun)|adulteress|hussy|jade|loose woman|slut|strumpet|trollop|adulterer|fornicator +fornix|2 +(noun)|body part +(noun)|trigonum cerebrale|fiber bundle|fibre bundle|fascicle|fasciculus +forrad|1 +(adv)|forward|forwards|frontward|frontwards|forrard +forrader|1 +(adv)|ahead|onward|onwards|forward|forwards +forrard|1 +(adv)|forward|forwards|frontward|frontwards|forrad +forsake|1 +(verb)|abandon|desolate|desert|leave +forsaken|1 +(adj)|forsaken |abandoned|deserted|cade|castaway|rejected|desolate|forlorn|godforsaken|lorn|marooned|derelict +forsaking|2 +(noun)|giving up|renunciation|forgoing|forswearing +(noun)|abandonment|desertion|rejection +forseti|1 +(noun)|Forseti|Norse deity +forssman antibody|1 +(noun)|heterophil antibody|heterophile antibody|Forssman antibody|antibody +forswear|1 +(verb)|abjure|recant|retract|resile|renounce|repudiate +forswearing|1 +(noun)|renunciation|forgoing|rejection +forsythia|1 +(noun)|shrub|bush +fort|5 +(noun)|garrison|military post|post +(noun)|fortress|defensive structure|defense|defence +(verb)|fort up|meet|gather|assemble|forgather|foregather +(verb)|fortify|enclose|inclose|shut in +(verb)|station|post|base|send|place +fort-lamy|1 +(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital +fort george g. meade|1 +(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison|fort +fort george gordon meade|1 +(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison|fort +fort lauderdale|1 +(noun)|Fort Lauderdale|city|metropolis|urban center +fort meade|1 +(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison|fort +fort myers|1 +(noun)|Fort Myers|town +fort smith|1 +(noun)|Fort Smith|town +fort ticonderoga|1 +(noun)|Fort Ticonderoga|Ticonderoga|pitched battle +fort up|1 +(verb)|fort|meet|gather|assemble|forgather|foregather +fort wayne|1 +(noun)|Fort Wayne|city|metropolis|urban center +fort worth|1 +(noun)|Fort Worth|city|metropolis|urban center +fortaz|1 +(noun)|ceftazidime|Fortaz|Tazicef|cephalosporin|Mefoxin +forte|5 +(adj)|forte |loud|fortemente|fortissimo +(noun)|strong suit|long suit|metier|specialty|speciality|strong point|strength|asset|plus +(noun)|fortissimo|volume|loudness|intensity +(noun)|part|portion +(adv)|loudly +forte-piano|1 +(noun)|piano|pianoforte|stringed instrument|percussion instrument|percussive instrument +fortemente|1 +(adj)|forte |loud +forth|2 +(adv)|away|off +(adv)|forward|onward +forthcoming|3 +(adj)|extroverted|outgoing|sociable +(adj)|approaching|coming|upcoming|future +(adj)|available +forthcomingness|1 +(noun)|imminence|imminency|imminentness|impendence|impendency|state +forthright|2 +(adj)|blunt|candid|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct +(adv)|squarely|forthrightly +forthrightly|1 +(adv)|squarely|forthright +forthrightness|1 +(noun)|candor|candour|candidness|frankness|honesty|honestness +forthwith|1 +(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|at once|in real time|like a shot +forties|3 +(noun)|mid-forties|time of life +(noun)|1940s|decade|decennary|decennium +(noun)|forty|40|XL|large integer +fortieth|2 +(adj)|40th|ordinal +(noun)|rank +fortification|3 +(noun)|munition|defensive structure|defense|defence +(noun)|art|artistry|prowess +(noun)|enrichment +fortified|2 +(adj)|bastioned|protected |secure +(adj)|strong +fortified wine|1 +(noun)|wine|vino +fortify|5 +(verb)|strengthen|beef up|change|alter|modify +(verb)|fort|enclose|inclose|shut in +(verb)|arm|build up|gird +(verb)|add +(verb)|spike|lace|change|alter|modify +fortifying|1 +(adj)|strengthening|invigorating +fortissimo|3 +(adj)|forte |loud +(noun)|forte|volume|loudness|intensity +(adv)|very loudly +fortitude|1 +(noun)|courage|courageousness|bravery|natural virtue +fortnight|1 +(noun)|two weeks|time period|period of time|period +fortnightly|2 +(adj)|biweekly|time period|period of time|period +(adv)|biweekly +fortran|1 +(noun)|FORTRAN|algebraic language +fortran compiler|1 +(noun)|Fortran compiler|compiler|compiling program +fortran program|1 +(noun)|FORTRAN program|program|programme|computer program|computer programme +fortress|1 +(noun)|fort|defensive structure|defense|defence +fortuitous|2 +(adj)|causeless|uncaused|unintended +(adj)|fortunate +fortuitously|1 +(adv)|fortunately|luckily|as luck would have it +fortuitousness|1 +(noun)|uncertainty|uncertainness +fortuity|1 +(noun)|accident|chance event|happening|occurrence|natural event +fortuna|1 +(noun)|Fortuna|Roman deity +fortunate|3 +(adj)|fortunate |better off|felicitous|happy|fortuitous|good|well|heaven-sent|providential|miraculous|lucky|well-off|lucky|privileged|successful +(adj)|favored|golden|blessed |blest +(adj)|hopeful|rosy|auspicious +fortunately|1 +(adv)|fortuitously|luckily|as luck would have it +fortune|4 +(noun)|luck|chance|hazard|phenomenon +(noun)|treasure|hoarded wealth +(noun)|luck|phenomenon +(noun)|destiny|fate|luck|lot|circumstances|portion|condition +fortune cookie|1 +(noun)|cookie|cooky|biscuit +fortune hunter|1 +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +fortune teller|2 +(noun)|fortuneteller|forecaster|predictor|prognosticator|soothsayer +(noun)| +fortune telling|2 +(noun)|divination|foretelling|soothsaying|prophecy|prognostication|vaticination +(noun)|fortunetelling|prediction|foretelling|forecasting|prognostication +fortunella|1 +(noun)|Fortunella|genus Fortunella|rosid dicot genus +fortunella japonica|1 +(noun)|marumi|marumi kumquat|round kumquat|Fortunella japonica|kumquat|cumquat|kumquat tree +fortunella margarita|1 +(noun)|nagami|nagami kumquat|oval kumquat|Fortunella margarita|kumquat|cumquat|kumquat tree +fortuneteller|1 +(noun)|fortune teller|forecaster|predictor|prognosticator|soothsayer +fortunetelling|1 +(noun)|prediction|foretelling|forecasting|prognostication +forty|2 +(adj)|40|xl|twoscore|cardinal +(noun)|40|XL|large integer +forty-eight|1 +(adj)|48|xlviii|cardinal +forty-eighth|1 +(adj)|48th|ordinal +forty-fifth|1 +(adj)|45th|ordinal +forty-first|1 +(adj)|41st|ordinal +forty-five|2 +(adj)|45|xlv|cardinal +(noun)|pistol|handgun|side arm|shooting iron +forty-four|1 +(adj)|44|xliv|cardinal +forty-fourth|1 +(adj)|44th|ordinal +forty-nine|1 +(adj)|49|il|cardinal +forty-niner|1 +(noun)|gold miner|gold digger|gold panner +forty-ninth|1 +(adj)|49th|ordinal +forty-one|1 +(adj)|41|xli|cardinal +forty-second|1 +(adj)|42nd|ordinal +forty-seven|1 +(adj)|47|xlvii|cardinal +forty-seventh|1 +(adj)|47th|ordinal +forty-six|1 +(adj)|46|xlvi|cardinal +forty-sixth|1 +(adj)|46th|ordinal +forty-third|1 +(adj)|43rd|ordinal +forty-three|1 +(adj)|43|xliii|cardinal +forty-two|1 +(adj)|42|xlii|cardinal +forty winks|1 +(noun)|nap|catnap|cat sleep|short sleep|snooze|sleeping +forum|3 +(noun)|meeting +(noun)|assembly|meeting place|facility|installation +(noun)|agora|public square|marketplace|mart +forward|15 +(adj)|forward |guardant|gardant|full-face|headfirst|headlong|fore|progressive +(adj)|onward|advancing +(adj)|forward |brash|cheeky|nervy|bumptious|self-assertive|fresh|impertinent|impudent|overbold|smart|saucy|sassy|overfamiliar|assumptive|assuming|presumptuous|bold +(adj)|forward |first|low|second +(adj)|advancing|forward-moving|progressive +(adj)|fore +(adj)|front +(noun)|basketball player|basketeer|cager +(noun)|position +(verb)|send on|transport|send|ship +(adv)|forwards|frontward|frontwards|forrad|forrard +(adv)|forth|onward +(adv)|ahead +(adv)|ahead|onward|onwards|forwards|forrader +(adv)|fore +forward-looking|1 +(adj)|advanced|innovative|modern|progressive +forward-moving|1 +(adj)|advancing|forward|progressive +forward market|1 +(noun)|futures exchange|futures market|commodity exchange|commodities exchange|commodities market +forward motion|1 +(noun)|progress|progression|procession|advance|advancement|onward motion|motion|movement|move +forward pass|1 +(noun)|aerial|pass|passing play|passing game|passing +forward passer|1 +(noun)|passer|ball carrier +forwarding|2 +(noun)|transmission|transmittal|transmitting +(noun)|furtherance|promotion|advancement|progress +forwardness|1 +(noun)|bumptiousness|cockiness|pushiness|assertiveness|self-assertiveness +forwards|2 +(adv)|forward|frontward|frontwards|forrad|forrard +(adv)|ahead|onward|onwards|forward|forrader +fosamax|1 +(noun)|alendronate|Fosamax|medicine|medication|medicament|medicinal drug +fosbury|1 +(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete|jock +fosbury flop|1 +(noun)|Fosbury flop|high jump +fossa|3 +(noun)|pit|concave shape|concavity|incurvation|incurvature|cavity|bodily cavity|cavum +(noun)|Fossa|genus Fossa|mammal genus +(noun)|fossa cat|Cryptoprocta ferox|viverrine|viverrine mammal +fossa cat|1 +(noun)|fossa|Cryptoprocta ferox|viverrine|viverrine mammal +fossa fossa|1 +(noun)|fanaloka|Fossa fossa|civet|civet cat +fosse|1 +(noun)|moat|trench +fossil|3 +(adj)|remains +(noun)|dodo|fogy|fogey|oldster|old person|senior citizen|golden ager +(noun)|remains +fossil copal|1 +(noun)|copalite|copaline|copal +fossil fuel|1 +(noun)|fuel +fossil oil|1 +(noun)|petroleum|crude oil|crude|rock oil|oil|fossil fuel +fossiliferous|1 +(adj)|remains +fossilisation|2 +(noun)|fossilization|natural process|natural action|action|activity +(noun)|fossilization|passage|transition +fossilise|2 +(verb)|fossilize|convert|change over +(verb)|fossilize|senesce|age|get on|mature|maturate +fossilised|1 +(adj)|fossilized|ossified|inflexible +fossilist|1 +(noun)|paleontologist|palaeontologist|scientist|man of science +fossilization|2 +(noun)|fossilisation|natural process|natural action|action|activity +(noun)|fossilisation|passage|transition +fossilize|2 +(verb)|fossilise|convert|change over +(verb)|fossilise|senesce|age|get on|mature|maturate +fossilized|1 +(adj)|fossilised|ossified|inflexible +fossilology|1 +(noun)|paleontology|palaeontology|earth science +fossorial|1 +(adj)|fossorial +fossorial foot|1 +(noun)|animal foot|foot +fossorial mammal|1 +(noun)|mammal +foster|5 +(adj)|surrogate|adoptive +(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter|songster|ballad maker +(verb)|further|promote|advance|boost|further|encourage +(verb)|rear|raise|bring up|nurture|parent +(verb)|nurture|encourage +foster-brother|1 +(noun)|male|male person +foster-child|1 +(noun)|fosterling|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +foster-daughter|1 +(noun)|foster-child|fosterling +foster-father|1 +(noun)|foster-parent|father figure|father surrogate +foster-mother|1 +(noun)|foster-parent +foster-nurse|1 +(noun)|nurse +foster-parent|1 +(noun)|defender|guardian|protector|shielder +foster-sister|1 +(noun)|female|female person +foster-son|1 +(noun)|foster-child|fosterling +foster care|1 +(noun)|care|charge|tutelage|guardianship +foster family|1 +(noun)|family|household|house|home|menage +foster home|1 +(noun)|family|household|house|home|menage +fosterage|2 +(noun)|fostering|encouragement +(noun)|breeding|bringing up|fostering|nurture|raising|rearing|upbringing|socialization|socialisation|acculturation|enculturation +fostered|2 +(adj)|nourished|supported +(adj)|parented +fostering|2 +(noun)|fosterage|encouragement +(noun)|breeding|bringing up|fosterage|nurture|raising|rearing|upbringing|socialization|socialisation|acculturation|enculturation +fosterling|1 +(noun)|foster-child|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +fothergilla|1 +(noun)|witch alder|shrub|bush +fots|1 +(noun)|fiber-optic transmission system|fibre-optic transmission system|FOTS|communication system|communication equipment +foucault|1 +(noun)|Foucault|Jean Bernard Leon Foucault|physicist +foucault pendulum|1 +(noun)|Foucault pendulum|pendulum +foul|17 +(adj)|disgusting|disgustful|distasteful|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +(adj)|fetid|foetid|foul-smelling|funky|noisome|smelly|putrid|stinking|malodorous |malodourous +(adj)|cheating|dirty|unsporting|unsportsmanlike|unfair |unjust +(adj)|foul |out-of-bounds +(adj)|dirty|marked-up|illegible +(adj)|filthy|nasty|vile|inclement +(adj)|filthy|nasty|smutty|dirty +(adj)|filthy|nasty|dirty |soiled|unclean +(adj)|afoul|fouled|tangled +(noun)|violation|infringement +(verb)|hit +(verb)|pollute|contaminate|dirty|soil|begrime|grime|colly|bemire +(verb)|clog|choke off|clog up|back up|congest|choke|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|play +(verb)|befoul|defile|maculate|dishonor|disgrace|dishonour|attaint|shame +(verb)|dirty|soil|begrime|grime|colly|bemire +(verb)|change +foul-mouthed|1 +(adj)|foul-spoken|dirty +foul-smelling|1 +(adj)|fetid|foetid|foul|funky|noisome|smelly|putrid|stinking|malodorous |malodourous +foul-spoken|1 +(adj)|foul-mouthed|dirty +foul-up|1 +(noun)|blunder|blooper|bloomer|bungle|fuckup|flub|botch|boner|boo-boo|mistake|error|fault +foul-weather gear|1 +(noun)|protective garment +foul ball|1 +(noun)|foul +foul line|3 +(noun)|line +(noun)|line +(noun)|line +foul out|1 +(verb)|foul +foul play|1 +(noun)|evil|immorality|wickedness|iniquity +foul shot|1 +(noun)|free throw|penalty free throw|charity toss|charity throw|charity shot|basketball shot +foul up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|mess up|fuck up|fail|go wrong|miscarry +foulard|1 +(noun)|fabric|cloth|material|textile +fouled|2 +(adj)|befouled|dirty |soiled|unclean +(adj)|afoul|foul|tangled +foully|1 +(adv)|insultingly +foulmart|1 +(noun)|polecat|fitch|foumart|Mustela putorius|musteline mammal|mustelid|musteline +foulness|2 +(noun)|filth|filthiness|nastiness|unsanitariness +(noun)|malodorousness|stinkiness|rankness|olfactory property|smell|aroma|odor|odour|scent +foumart|1 +(noun)|polecat|fitch|foulmart|Mustela putorius|musteline mammal|mustelid|musteline +found|21 +(adj)|found |recovered|saved +(noun)|wage|pay|earnings|remuneration|salary +(verb)|establish|set up|launch|open|open up +(verb)|establish|plant|constitute|institute|initiate|pioneer +(verb)|establish|base|ground +(verb)|find|happen|chance|bump|encounter +(verb)|detect|observe|find|discover|notice|sight +(verb)|find|regain|get|acquire +(verb)|determine|find|find out|ascertain +(verb)|find|feel|reason|reason out|conclude +(verb)|witness|find|see|experience|undergo|see|go through +(verb)|line up|get hold|come up|find|get|acquire +(verb)|discover|find|gestate|conceive|conceptualize|conceptualise +(verb)|discover|find|learn|hear|get word|get wind|pick up|find out|get a line|discover|see|find out +(verb)|find|get|acquire +(verb)|rule|find|pronounce|label|judge +(verb)|receive|get|find|obtain|incur|change +(verb)|find|perceive|comprehend +(verb)|recover|retrieve|find|regain|get|acquire +(verb)|find|reach|make|attain|hit|arrive at|gain +(verb)|find oneself|find|mature|maturate|grow +foundation|7 +(noun)|relation +(noun)|financial institution|financial organization|financial organisation +(noun)|basis|base|fundament|groundwork|cornerstone|assumption|supposition|supposal +(noun)|base|fundament|foot|groundwork|substructure|understructure|support +(noun)|grounding|education +(noun)|foundation garment|undergarment +(noun)|initiation|founding|institution|origination|creation|innovation|introduction|instauration|beginning|start|commencement +foundation garment|1 +(noun)|foundation|undergarment +foundation stone|1 +(noun)|stone +founded|1 +(adj)|based|supported +founder|7 +(noun)|laminitis|inflammation|redness|rubor +(noun)|beginner|founding father|father|originator|conceiver|mastermind +(noun)|skilled worker|trained worker +(verb)|fall through|fall flat|flop|fail|go wrong|miscarry +(verb)|sink|settle|go down|go under +(verb)|collapse|fall in|cave in|give|give way|break|change +(verb)|stumble|trip +foundering|1 +(noun)|going under|sinking +founding|1 +(noun)|initiation|foundation|institution|origination|creation|innovation|introduction|instauration|beginning|start|commencement +founding father|2 +(noun)|Founding Father|statesman|solon|national leader +(noun)|founder|beginner|father|originator|conceiver|mastermind +foundling|1 +(noun)|abandoned infant|baby|babe|infant +foundling hospital|1 +(noun)|creche|hospital|infirmary +foundress|1 +(noun)|founder|beginner|founding father|father +foundry|1 +(noun)|metalworks|factory|mill|manufacturing plant|manufactory +foundry proof|1 +(noun)|proof|test copy|trial impression +fount|2 +(noun)|font|typeface|face|type +(noun)|fountain|plumbing fixture +fountain|4 +(noun)|structure|construction +(noun)|spring|outflow|outpouring|natural spring|geological formation|formation +(noun)|jet|flow|flowing +(noun)|fount|plumbing fixture +fountain grass|1 +(noun)|Pennisetum ruppelii|Pennisetum setaceum|grass +fountain of youth|1 +(noun)|Fountain of Youth|spring|fountain|outflow|outpouring|natural spring +fountain pen|1 +(noun)|pen +fountainhead|2 +(noun)|well|wellspring|source +(noun)|headspring|head|beginning|origin|root|rootage|source +fouquieria|1 +(noun)|Fouquieria|genus Fouquieria|dilleniid dicot genus +fouquieria columnaris|1 +(noun)|boojum tree|cirio|Fouquieria columnaris|Idria columnaris|candlewood +fouquieria splendens|1 +(noun)|ocotillo|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood +fouquieriaceae|1 +(noun)|Fouquieriaceae|family Fouquieriaceae|dilleniid dicot family +four|2 +(adj)|4|iv|cardinal +(noun)|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +four-card monte|1 +(noun)|monte|three-card monte|card game|cards +four-centered arch|1 +(noun)|Tudor arch|arch +four-dimensional|1 +(adj)|multidimensional +four-flusher|1 +(noun)|bluffer|deceiver|cheat|cheater|trickster|beguiler|slicker +four-footed|1 +(adj)|quadrupedal +four-footed butterfly|1 +(noun)|nymphalid|nymphalid butterfly|brush-footed butterfly|butterfly +four-four time|1 +(noun)|common time|quadruple time|common measure|musical time +four-hitter|1 +(noun)|4-hitter|baseball|baseball game|ball +four-hundredth|1 +(adj)|400th|ordinal +four-in-hand|2 +(noun)|necktie|tie +(noun)|coach|coach-and-four|carriage|equipage|rig +four-lane|1 +(adj)|multilane +four-letter anglo-saxon word|1 +(noun)|four-letter word|four-letter Anglo-Saxon word|word +four-letter word|1 +(noun)|four-letter Anglo-Saxon word|word +four-lined leaf bug|1 +(noun)|four-lined plant bug|Poecilocapsus lineatus|mirid bug|mirid|capsid +four-lined plant bug|1 +(noun)|four-lined leaf bug|Poecilocapsus lineatus|mirid bug|mirid|capsid +four-membered|1 +(adj)|4-membered|membered +four-minute man|1 +(noun)|miler +four-o'clock family|1 +(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|caryophylloid dicot family +four-part harmony|1 +(noun)|harmony|musical harmony +four-party|1 +(adj)|quadripartite|multilateral |many-sided +four-ply|1 +(adj)|thick +four-poster|1 +(noun)|bed +four-pounder|1 +(noun)|artillery|heavy weapon|gun|ordnance +four-sided|1 +(adj)|quadrilateral|multilateral |many-sided +four-spot|1 +(noun)|spot|domino|dice|die +four-stroke engine|1 +(noun)|four-stroke internal-combustion engine|internal-combustion engine|ICE +four-stroke internal-combustion engine|1 +(noun)|four-stroke engine|internal-combustion engine|ICE +four-tailed bandage|1 +(noun)|bandage|patch +four-wheel|1 +(adj)|four-wheeled|machine|simple machine +four-wheel drive|2 +(noun)|4WD|motor vehicle|automotive vehicle +(noun)|4WD|transmission|transmission system +four-wheeled|1 +(adj)|four-wheel|machine|simple machine +four-wheeler|1 +(noun)|hackney|hackney carriage|hackney coach +four-wing flying fish|1 +(noun)|biplane flying fish|flying fish +four flush|1 +(noun)|bluff|deception|deceit|dissembling|dissimulation +four horsemen|1 +(noun)|Four Horsemen|evil +four hundred|2 +(adj)|400|cd|cardinal +(noun)|Four Hundred|set|circle|band|lot +four o'clock|1 +(noun)|flower +four times|1 +(adv)|fourfold +fourfold|3 +(adj)|quadruple|multiple +(adj)|quadruple|quadruplicate|quadruplex|multiple +(adv)|four times +fourfold point correlation|1 +(noun)|phi coefficient|phi correlation|nonparametric statistic|distribution free statistic +fourhanded|1 +(adj)|game +fourier|2 +(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician|physicist +(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist +fourier analysis|1 +(noun)|Fourier analysis|harmonic analysis|analysis +fourier series|1 +(noun)|Fourier series|series +fourpence|1 +(noun)|groat|coin +fourpenny|1 +(adj)|sized +fourpenny nail|1 +(noun)|nail +fourscore|2 +(adj)|eighty|80|lxxx|cardinal +(noun)|eighty|80|LXXX|large integer +foursome|2 +(noun)|quartet|quartette|gathering|assemblage +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|Little Joe|digit|figure +foursquare|3 +(adj)|resolute +(noun)|square|rectangle|regular polygon +(adv)|squarely|straightforwardly +fourteen|2 +(adj)|14|xiv|cardinal +(noun)|14|XIV|large integer +fourteenth|2 +(adj)|14th|ordinal +(noun)|rank +fourteenth amendment|1 +(noun)|Fourteenth Amendment|amendment +fourth|5 +(adj)|4th|quaternary|ordinal +(noun)|rank +(noun)|one-fourth|quarter|fourth part|twenty-five percent|quartern|common fraction|simple fraction +(noun)|interval|musical interval +(adv)|fourthly +fourth-year|1 +(adj)|senior|last +fourth cranial nerve|1 +(noun)|trochlear|trochlear nerve|trochlearis|cranial nerve +fourth crusade|1 +(noun)|Fourth Crusade|Crusade +fourth deck|1 +(noun)|orlop deck|orlop|deck +fourth dimension|1 +(noun)|time|dimension +fourth earl of chesterfield|1 +(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman|solon|national leader +fourth earl of orford|1 +(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer|author|historian|historiographer +fourth estate|2 +(noun)|press|estate|estate of the realm +(noun)|journalism|news media|print media +fourth of july|1 +(noun)|Independence Day|Fourth of July|July 4|legal holiday|national holiday +fourth part|1 +(noun)|one-fourth|fourth|quarter|twenty-five percent|quartern|common fraction|simple fraction +fourth power|1 +(noun)|biquadrate|biquadratic|quartic|number +fourth stomach|1 +(noun)|abomasum|stomach|tummy|tum|breadbasket +fourth ventricle|1 +(noun)|ventricle +fourthly|1 +(adv)|fourth +fovea|1 +(noun)|fovea centralis|area|region +fovea centralis|1 +(noun)|fovea|area|region +foveal vision|1 +(noun)|daylight vision|photopic vision +fowl|4 +(noun)|domestic fowl|poultry|gallinaceous bird|gallinacean +(noun)|bird|meat +(verb)|hunt|run|hunt down|track down +(verb)|hunt|run|hunt down|track down +fowl cholera|1 +(noun)|animal disease|blood poisoning|septicemia|septicaemia +fowl pest|1 +(noun)|animal disease +fowl run|1 +(noun)|chicken yard|hen yard|chicken run|yard +fowler|2 +(noun)|Fowler|Henry Watson Fowler|lexicographer|lexicologist +(noun)|hunter|huntsman +fowling piece|1 +(noun)|shotgun|scattergun +fox|10 +(noun)|canine|canid +(noun)|dodger|slyboots|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|fur|pelt +(noun)|Fox|Charles James Fox|statesman|solon|national leader +(noun)|Fox|George Fox|religionist|religious person +(noun)|Fox|Algonquian|Algonquin +(noun)|Fox|Algonquian|Algonquin|Algonquian language +(verb)|trick|fob|pull a fast one on|play a trick on|deceive|lead on|delude|cozen +(verb)|confuse|throw|befuddle|fuddle|bedevil|confound|discombobulate|be +(verb)|spot +fox-trot|2 +(noun)|foxtrot|ballroom dancing|ballroom dance +(noun)| +fox grape|2 +(noun)|Vitis labrusca|grape|grapevine +(noun)|slip-skin grape|grape +fox hole|2 +(noun)|foxhole|bunker|dugout +(noun)| +fox hunter|1 +(noun)|horseman|equestrian|horseback rider +fox hunting|1 +(noun)|foxhunt|hunt|hunting +fox river|1 +(noun)|Fox River|river +fox shark|1 +(noun)|thresher|thrasher|thresher shark|Alopius vulpinus|shark +fox squirrel|1 +(noun)|eastern fox squirrel|Sciurus niger|tree squirrel +fox talbot|1 +(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor|discoverer|artificer|photographer|lensman +fox terrier|1 +(noun)|terrier +foxberry|1 +(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|lingberry|Vaccinium vitis-idaea|cranberry +foxglove|1 +(noun)|digitalis|herb|herbaceous plant +foxglove family|1 +(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|asterid dicot family +foxhole|1 +(noun)|fox hole|bunker|dugout +foxhound|1 +(noun)|hound|hound dog +foxhunt|2 +(noun)|fox hunting|hunt|hunting +(verb)|hunt|run|hunt down|track down +foxily|1 +(adv)|craftily|cunningly|knavishly|slyly|trickily|artfully +foxiness|1 +(noun)|craft|craftiness|cunning|guile|slyness|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +foxtail|1 +(noun)|foxtail grass|meadowgrass|meadow grass +foxtail barley|1 +(noun)|squirreltail barley|squirreltail grass|Hordeum jubatum|barley +foxtail grass|2 +(noun)|Lycopodium alopecuroides|ground pine|Christmas green +(noun)|foxtail|meadowgrass|meadow grass +foxtail millet|1 +(noun)|Italian millet|Hungarian grass|Setaria italica|foxtail|foxtail grass +foxtail orchid|1 +(noun)|orchid|orchidaceous plant +foxtrot|2 +(noun)|fox-trot|ballroom dancing|ballroom dance +(verb)|dance|trip the light fantastic|trip the light fantastic toe +foxy|1 +(adj)|crafty|cunning|dodgy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful +foyer|1 +(noun)|anteroom|antechamber|entrance hall|hall|lobby|vestibule|room +fps|1 +(noun)|Federal Protective Service|FPS|independent agency +fr|1 +(noun)|francium|Fr|atomic number 87|metallic element|metal +fra filippo lippi|1 +(noun)|Lippi|Fra Filippo Lippi|old master +fracas|1 +(noun)|affray|altercation|quarrel|wrangle|row|words|run-in|dustup +fractal|1 +(noun)|form|shape|pattern +fractal geometry|1 +(noun)|geometry +fraction|4 +(noun)|chemical +(noun)|part|portion +(noun)|rational number +(verb)|divide|calculate|cipher|cypher|compute|work out|reckon|figure +fractional|1 +(adj)|fractional |aliquot|divisional|down|fragmental|fragmentary|half|halfway|third|three-quarter|incomplete|uncomplete +fractional currency|1 +(noun)|paper money|folding money|paper currency +fractional distillation|1 +(noun)|fractionation|fractional process +fractional monetary unit|1 +(noun)|subunit|monetary unit +fractional process|1 +(noun)|fractionation|industrial process +fractionate|2 +(verb)|separate +(verb)|separate +fractionation|2 +(noun)|fractional process|industrial process +(noun)|division +fractious|3 +(adj)|refractory|disobedient +(adj)|cranky|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|techy|ill-natured +(adj)|difficult |hard +fractiously|1 +(adv)|peevishly|querulously +fractiousness|1 +(noun)|unruliness|willfulness|wilfulness|intractability|intractableness +fracture|8 +(noun)|break|injury|hurt|harm|trauma +(noun)|fault|geological fault|shift|break|crack|cleft|crevice|fissure|scissure +(noun)|crack|cracking|breakage|break|breaking +(verb)|pervert|misuse|abuse +(verb)|destroy|destruct +(verb)|break +(verb)|break|break off|discontinue|stop +(verb)|break|injure|wound +fractured|1 +(adj)|broken +fradicin|1 +(noun)|neomycin|Neobiotic|antibiotic|antibiotic drug|antiseptic +fragaria|1 +(noun)|Fragaria|genus Fragaria|rosid dicot genus +fragaria ananassa|1 +(noun)|garden strawberry|cultivated strawberry|Fragaria ananassa|strawberry +fragaria chiloensis|1 +(noun)|beach strawberry|Chilean strawberry|Fragaria chiloensis|strawberry +fragaria vesca|1 +(noun)|wild strawberry|wood strawberry|Fragaria vesca|strawberry +fragaria virginiana|1 +(noun)|Virginia strawberry|scarlet strawberry|Fragaria virginiana|strawberry +fragile|3 +(adj)|delicate|frail|breakable +(adj)|delicate +(adj)|flimsy|weak +fragile fern|1 +(noun)|brittle bladder fern|brittle fern|Cystopteris fragilis|bladder fern +fragility|2 +(noun)|breakability|vulnerability +(noun)|delicacy|weakness +fragment|4 +(noun)|part|piece +(noun)|shard|sherd|piece +(noun)|piece +(verb)|break up|fragmentize|fragmentise|break|separate|split up|fall apart|come apart +fragmental|1 +(adj)|fragmentary|fractional +fragmentary|1 +(adj)|fragmental|fractional +fragmentation|4 +(noun)|atomization|atomisation|division +(noun)|decomposition|disintegration +(noun)|storage +(noun)|explosion|detonation|blowup +fragmentation bomb|1 +(noun)|antipersonnel bomb|anti-personnel bomb|daisy cutter|bomb +fragmented|2 +(adj)|crumbled|broken +(adj)|disconnected|disunited|split|divided +fragmentise|1 +(verb)|break up|fragment|fragmentize|break|separate|split up|fall apart|come apart +fragmentize|1 +(verb)|break up|fragment|fragmentise|break|separate|split up|fall apart|come apart +fragonard|1 +(noun)|Fragonard|Jean Honore Fragonard|painter +fragrance|2 +(noun)|aroma|perfume|scent|smell|odor|odour|olfactory sensation|olfactory perception +(noun)|bouquet|redolence|sweetness|olfactory property|smell|aroma|odor|odour|scent +fragrant|1 +(adj)|fragrant |aromatic|redolent|odoriferous|odorous|perfumed|scented|sweet|sweet-scented|sweet-smelling|perfumed|scented|musky +fragrant agrimony|1 +(noun)|Agrimonia procera|agrimonia|agrimony +fragrant bedstraw|1 +(noun)|sweet woodruff|waldmeister|woodruff|Galium odoratum|Asperula odorata|bedstraw +fragrant cliff fern|1 +(noun)|fragrant shield fern|fragrant wood fern|Dryopteris fragrans|wood fern|wood-fern|woodfern +fragrant orchid|1 +(noun)|Gymnadenia conopsea|orchid|orchidaceous plant +fragrant shield fern|1 +(noun)|fragrant cliff fern|fragrant wood fern|Dryopteris fragrans|wood fern|wood-fern|woodfern +fragrant sumac|1 +(noun)|lemon sumac|Rhus aromatica|sumac|sumach|shumac +fragrant water lily|1 +(noun)|water nymph|pond lily|Nymphaea odorata|water lily +fragrant wood fern|1 +(noun)|fragrant cliff fern|fragrant shield fern|Dryopteris fragrans|wood fern|wood-fern|woodfern +fragrant woodsia|1 +(noun)|rusty woodsia|oblong woodsia|Woodsia ilvensis|woodsia +frail|5 +(adj)|frail |decrepit|debile|feeble|infirm|sapless|weak|weakly|delicate|unhealthy +(adj)|fallible|imperfect|weak|human +(adj)|delicate|fragile|breakable +(noun)|weight unit|weight +(noun)|basket|handbasket +frailness|1 +(noun)|infirmity|frailty|debility|feebleness|unfitness|poor shape|bad condition +frailty|2 +(noun)|infirmity|debility|feebleness|frailness|unfitness|poor shape|bad condition +(noun)|vice|evil|evilness +fraise|2 +(noun)|choker|ruff|ruffle|neck ruff +(noun)|rampart|bulwark|wall +frambesia|1 +(noun)|yaws|framboesia|infectious disease +framboesia|1 +(noun)|yaws|frambesia|infectious disease +framboise|1 +(noun)|wild raspberry|European raspberry|Rubus idaeus|red raspberry +frame|12 +(noun)|framework|framing|supporting structure +(noun)|photograph|photo|exposure|pic +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|form|flesh|body|organic structure|physical structure +(noun)|inning|playing period|period of play|play +(noun)|skeletal system|skeleton|systema skeletale|system +(noun)|skeleton|skeletal frame|underframe|supporting structure +(verb)|frame in|border|enclose|inclose|shut in +(verb)|enclose|hold in|confine +(verb)|ensnare|entrap|set up|deceive|lead on|delude|cozen +(verb)|redact|cast|put|couch|give voice|formulate|word|phrase|articulate +(verb)|compose|draw up|plan +(verb)|frame up|construct|build|make +frame-up|1 +(noun)|setup|falsification|falsehood +frame buffer|1 +(noun)|buffer|buffer storage|buffer store +frame in|1 +(verb)|frame|border|enclose|inclose|shut in +frame of mind|1 +(noun)|state of mind|temporary state|psychological state|mental state +frame of reference|2 +(noun)|coordinate system|reference system|reference frame|arrangement|organization|organisation|system +(noun)|system|system of rules +frame up|1 +(verb)|frame|construct|build|make +framed|1 +(adj)|framed +framer|2 +(noun)|skilled worker|trained worker +(noun)|writer|author +framework|3 +(noun)|model|theoretical account|hypothesis|possibility|theory +(noun)|fabric|structure +(noun)|frame|framing|supporting structure +framing|2 +(noun)|conceptualization|conceptualisation|formulation +(noun)|framework|frame|supporting structure +franc|1 +(noun)|monetary unit +franc-tireur|1 +(noun)|marksman|sharpshooter|crack shot +france|2 +(noun)|France|French Republic|European country|European nation +(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer|author +frances eliza hodgson burnett|1 +(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer|author +frances elizabeth caroline willard|1 +(noun)|Willard|Frances Elizabeth Caroline Willard|suffragist|dry|prohibitionist +frances hodgson burnett|1 +(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer|author +frances wright|1 +(noun)|Wright|Frances Wright|Fanny Wright|feminist|women's rightist|women's liberationist|libber +francesco petrarca|1 +(noun)|Petrarch|Petrarca|Francesco Petrarca|poet +franche-comte|1 +(noun)|Franche-Comte|French region +franchise|4 +(noun)|concession|grant +(noun)|dealership|business|concern|business concern|business organization|business organisation +(noun)|enfranchisement|legal right +(verb)|license|licence|certify +franchise tax|1 +(noun)|tax|taxation|revenue enhancement +francis albert sinatra|1 +(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner|balladeer|actor|histrion|player|thespian|role player +francis bacon|1 +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +francis beaumont|1 +(noun)|Beaumont|Francis Beaumont|dramatist|playwright +francis crick|1 +(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist +francis drake|1 +(noun)|Drake|Francis Drake|Sir Francis Drake|navigator|admiral|full admiral +francis edgar stanley|1 +(noun)|Stanley|Francis Edgar Stanley|inventor|discoverer|artificer +francis everett townsend|1 +(noun)|Townsend|Francis Everett Townsend|reformer|reformist|crusader|meliorist +francis ferdinand|1 +(noun)|Francis Ferdinand|Franz Ferdinand|archduke +francis ford coppola|1 +(noun)|Coppola|Francis Ford Coppola|film maker|filmmaker|film producer|movie maker +francis galton|1 +(noun)|Galton|Francis Galton|Sir Francis Galton|scientist|man of science +francis henry compton crick|1 +(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist +francis hopkinson|1 +(noun)|Hopkinson|Francis Hopkinson|American Revolutionary leader +francis ii|1 +(noun)|Francis II|Emperor Francis II|Holy Roman Emperor +francis joseph|1 +(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|Emperor +francis joseph i|1 +(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|Emperor +francis of assisi|1 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +francis peyton rous|1 +(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician|pathologist +francis poulenc|1 +(noun)|Poulenc|Francis Poulenc|composer +francis richard stockton|1 +(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer|author +francis scott key|1 +(noun)|Key|Francis Scott Key|lawyer|attorney|poet +francis scott key fitzgerald|1 +(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer|author +francis turbine|1 +(noun)|Francis turbine|hydroelectric turbine +francis turner palgrave|1 +(noun)|Palgrave|Francis Turner Palgrave|poet +franciscan|2 +(adj)|Franciscan|saint +(noun)|Franciscan|Gray Friar|friar|mendicant +franciscan order|1 +(noun)|Franciscan order|order|monastic order +francisco de goya|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +francisco fernandez cordoba|1 +(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer|adventurer +francisco fernandez de cordova|1 +(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer|adventurer +francisco franco|1 +(noun)|Franco|Francisco Franco|El Caudillo|general|full general|dictator|potentate +francisco goya|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +francisco jimenez de cisneros|1 +(noun)|Jimenez de Cisneros|Francisco Jimenez de Cisneros|archpriest|hierarch|high priest|prelate|primate|Grand Inquisitor +francisco jose de goya|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +francisco jose de goya y lucientes|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +francisco pizarro|1 +(noun)|Pizarro|Francisco Pizarro|explorer|adventurer +francisco villa|1 +(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist|revolutionary|subversive|subverter +francisella|1 +(noun)|Francisella|genus Francisella|bacteria|bacterium +francisella tularensis|1 +(noun)|Francisella tularensis|bacteria species +francium|1 +(noun)|Fr|atomic number 87|metallic element|metal +franck|2 +(noun)|Franck|Cesar Franck|composer +(noun)|Franck|James Franck|physicist +franco|1 +(noun)|Franco|Francisco Franco|El Caudillo|general|full general|dictator|potentate +franco-american|1 +(noun)|Franco-American|American +franco-prussian war|1 +(noun)|Franco-Prussian War|war|warfare +francoa|1 +(noun)|Francoa|genus Francoa|rosid dicot genus +francoa ramosa|1 +(noun)|bridal wreath|bridal-wreath|Francoa ramosa|shrub|bush +francois-marie arouet|1 +(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer|author +francois auguste rene rodin|1 +(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor|sculpturer|carver|statue maker +francois charles mauriac|1 +(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer|author +francois couperin|1 +(noun)|Couperin|Francois Couperin|organist|composer +francois de la rochefoucauld|1 +(noun)|La Rochefoucauld|Francois de La Rochefoucauld|writer|author +francois duvalier|1 +(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator|potentate +francois jacob|1 +(noun)|Jacob|Francois Jacob|biochemist +francois mansart|1 +(noun)|Mansart|Francois Mansart|architect|designer +francois marie charles fourier|1 +(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist +francois mauriac|1 +(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer|author +francois maurice marie mitterand|1 +(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman|solon|national leader +francois mitterand|1 +(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman|solon|national leader +francois rabelais|1 +(noun)|Rabelais|Francois Rabelais|satirist|ironist|ridiculer +francois rene chateaubriand|1 +(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman|solon|national leader|writer|author +francois truffaut|1 +(noun)|Truffaut|Francois Truffaut|film maker|filmmaker|film producer|movie maker +francois villon|1 +(noun)|Villon|Francois Villon|poet +francoise-athenais de rochechouart|1 +(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness|marquise +francoise d'aubigne|1 +(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness|marquise|consort +francophil|1 +(noun)|Francophile|Francophil|supporter|protagonist|champion|admirer|booster|friend +francophile|1 +(noun)|Francophile|Francophil|supporter|protagonist|champion|admirer|booster|friend +francophobe|1 +(noun)|Francophobe|hater +frangible|1 +(adj)|breakable +frangipane|1 +(noun)|pastry +frangipani|1 +(noun)|frangipanni|shrub|bush +frangipanni|1 +(noun)|frangipani|shrub|bush +frank|6 +(adj)|blunt|candid|forthright|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct +(adj)|obvious +(noun)|Frank|European +(noun)|frankfurter|hotdog|hot dog|dog|wiener|wienerwurst|weenie|sausage +(verb)|postmark|stamp +(verb)|excuse|relieve|let off|exempt +frank baum|1 +(noun)|Baum|Frank Baum|Lyman Frank Brown|writer|author +frank breech|1 +(noun)|frank breech delivery|breech delivery|breech birth|breech presentation +frank breech delivery|1 +(noun)|frank breech|breech delivery|breech birth|breech presentation +frank capra|1 +(noun)|Capra|Frank Capra|film maker|filmmaker|film producer|movie maker +frank cooper|1 +(noun)|Cooper|Gary Cooper|Frank Cooper|actor|histrion|player|thespian|role player +frank harris|1 +(noun)|Harris|Frank Harris|James Thomas Harris|writer|author +frank lloyd wright|1 +(noun)|Wright|Frank Lloyd Wright|architect|designer +frank morrison spillane|1 +(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer|author +frank norris|1 +(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer|author +frank philip stella|1 +(noun)|Stella|Frank Stella|Frank Philip Stella|painter +frank sinatra|1 +(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner|balladeer|actor|histrion|player|thespian|role player +frank stella|1 +(noun)|Stella|Frank Stella|Frank Philip Stella|painter +frank stockton|1 +(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer|author +frank winfield woolworth|1 +(noun)|Woolworth|Frank Winfield Woolworth|businessman|man of affairs +frankenstein|3 +(noun)|Frankenstein|agency +(noun)|Frankenstein|Frankenstein's monster|fictional character|fictitious character|character +(noun)|Frankenstein|fictional character|fictitious character|character +frankenstein's monster|1 +(noun)|Frankenstein|Frankenstein's monster|fictional character|fictitious character|character +frankfort|2 +(noun)|Frankfort|capital of Kentucky|state capital +(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city|metropolis|urban center +frankfurt|1 +(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city|metropolis|urban center +frankfurt on the main|1 +(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city|metropolis|urban center +frankfurter|1 +(noun)|frank|hotdog|hot dog|dog|wiener|wienerwurst|weenie|sausage +frankfurter bun|1 +(noun)|hotdog bun|bun|roll +frankincense|1 +(noun)|olibanum|gum olibanum|thus|gum +frankincense pine|1 +(noun)|loblolly pine|Pinus taeda|pine|pine tree|true pine +franking machine|1 +(noun)|machine +frankish|1 +(adj)|Frankish|European +franklin|3 +(noun)|Franklin|John Hope Franklin|historian|historiographer +(noun)|Franklin|Benjamin Franklin|printer|pressman|writer|author|American Revolutionary leader|scientist|man of science +(noun)|landowner|landholder|property owner +franklin delano roosevelt|1 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +franklin pierce|1 +(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States|United States President|President|Chief Executive +franklin roosevelt|1 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +frankliniella|1 +(noun)|Frankliniella|genus Frankliniella|arthropod genus +frankliniella fusca|1 +(noun)|tobacco thrips|Frankliniella fusca|thrips|thrip|thripid +frankly|1 +(adv)|honestly|candidly +frankness|2 +(noun)|candor|candour|candidness|forthrightness|honesty|honestness +(noun)|outspokenness|communicativeness +frantic|2 +(adj)|frenetic|phrenetic|frenzied|agitated +(adj)|delirious|excited|mad|unrestrained|wild +franz anton mesmer|1 +(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor|doc|physician|MD|Dr.|medico +franz ferdinand|1 +(noun)|Francis Ferdinand|Franz Ferdinand|archduke +franz josef i|1 +(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|Emperor +franz joseph|1 +(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|Emperor +franz joseph haydn|1 +(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer +franz joseph kline|1 +(noun)|Kline|Franz Kline|Franz Joseph Kline|painter +franz kafka|1 +(noun)|Kafka|Franz Kafka|writer|author +franz kline|1 +(noun)|Kline|Franz Kline|Franz Joseph Kline|painter +franz lehar|1 +(noun)|Lehar|Franz Lehar|composer +franz liszt|1 +(noun)|Liszt|Franz Liszt|pianist|piano player|composer +franz peter schubert|1 +(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer +franz schubert|1 +(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer +franz seraph peter schubert|1 +(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer +franz werfel|1 +(noun)|Werfel|Franz Werfel|writer|author +frap|2 +(verb)|lash +(verb)|tighten|fasten +frappe|3 +(noun)|drink +(noun)|milkshake|milk shake|shake +(noun)|ice|frozen dessert +fraser fir|1 +(noun)|Fraser fir|Abies fraseri|silver fir +frasera|1 +(noun)|Frasera|genus Frasera|dicot genus|magnoliopsid genus +frasera speciosa|1 +(noun)|green gentian|Frasera speciosa|Swertia speciosa|herb|herbaceous plant +frat|1 +(noun)|fraternity|club|society|guild|gild|lodge|order +frat house|1 +(noun)|chapterhouse|fraternity house|house +fratercula|1 +(noun)|Fratercula|genus Fratercula|bird genus +fratercula arctica|1 +(noun)|Atlantic puffin|Fratercula arctica|puffin +fratercula corniculata|1 +(noun)|horned puffin|Fratercula corniculata|puffin +fraternal|3 +(adj)|class|social class|socio-economic class +(adj)|fraternal |biovular +(adj)|brotherly |brotherlike +fraternal twin|1 +(noun)|dizygotic twin|twin +fraternisation|1 +(noun)|fraternization|association +fraternise|1 +(verb)|fraternize|socialize|socialise +fraternity|2 +(noun)|frat|club|society|guild|gild|lodge|order +(noun)|brotherhood|sodality|class|social class|socio-economic class +fraternity house|1 +(noun)|chapterhouse|frat house|house +fraternization|1 +(noun)|fraternisation|association +fraternize|1 +(verb)|fraternise|socialize|socialise +fratricide|3 +(noun)|murderer|liquidator|manslayer +(noun)|murder|slaying|execution +(noun)|friendly fire|fire|firing +frau|1 +(noun)|Frau|wife|married woman +fraud|3 +(noun)|crime|law-breaking +(noun)|imposter|impostor|pretender|fake|faker|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|fraudulence|dupery|hoax|humbug|put-on|trickery|chicanery|chicane|guile|wile|shenanigan +fraud in fact|1 +(noun)|positive fraud|fraud +fraud in law|1 +(noun)|constructive fraud|legal fraud +fraud in the factum|1 +(noun)|fraud +fraud in the inducement|1 +(noun)|fraud +fraudulence|3 +(noun)|duplicity|misrepresentation|deceit|deception +(noun)|deceit|dishonesty +(noun)|fraud|dupery|hoax|humbug|put-on|trickery|chicanery|chicane|guile|wile|shenanigan +fraudulent|1 +(adj)|deceitful|fallacious|dishonest |dishonorable +fraudulent scheme|1 +(noun)|racket|illegitimate enterprise|enterprise|endeavor|endeavour +fraught|2 +(adj)|troubled +(adj)|pregnant|full +fraxinella|1 +(noun)|dittany|burning bush|gas plant|Dictamnus alba|herb|herbaceous plant +fraxinus|1 +(noun)|Fraxinus|genus Fraxinus|dicot genus|magnoliopsid genus +fraxinus americana|1 +(noun)|white ash|Fraxinus Americana|ash|ash tree +fraxinus caroliniana|1 +(noun)|swamp ash|Fraxinus caroliniana|ash|ash tree +fraxinus cuspidata|1 +(noun)|flowering ash|Fraxinus cuspidata|ash|ash tree +fraxinus dipetala|1 +(noun)|flowering ash|Fraxinus dipetala|ash|ash tree +fraxinus excelsior|1 +(noun)|European ash|common European ash|Fraxinus excelsior|ash|ash tree +fraxinus latifolia|1 +(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash|ash tree +fraxinus nigra|1 +(noun)|black ash|basket ash|brown ash|hoop ash|Fraxinus nigra|ash|ash tree +fraxinus oregona|1 +(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash|ash tree +fraxinus ornus|1 +(noun)|manna ash|flowering ash|Fraxinus ornus|ash|ash tree +fraxinus pennsylvanica|1 +(noun)|red ash|downy ash|Fraxinus pennsylvanica|ash|ash tree +fraxinus pennsylvanica subintegerrima|1 +(noun)|green ash|Fraxinus pennsylvanica subintegerrima|red ash|downy ash|Fraxinus pennsylvanica +fraxinus quadrangulata|1 +(noun)|blue ash|Fraxinus quadrangulata|ash|ash tree +fraxinus texensis|1 +(noun)|mountain ash|Fraxinus texensis|ash|ash tree +fraxinus tomentosa|1 +(noun)|pumpkin ash|Fraxinus tomentosa|ash|ash tree +fraxinus velutina|1 +(noun)|Arizona ash|Fraxinus velutina|ash|ash tree +fray|3 +(noun)|affray|disturbance|ruffle|fight|fighting|combat|scrap +(verb)|frazzle|break|wear|wear out|bust|fall apart +(verb)|rub|fret|chafe|scratch|touch|adjoin|meet|contact +frayed|1 +(adj)|worn +frazer|1 +(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist +frazzle|3 +(noun)|exhaustion +(verb)|fray|break|wear|wear out|bust|fall apart +(verb)|exhaust|wash up|beat|tucker|tucker out +freak|3 +(noun)|monster|monstrosity|lusus naturae|mutant|mutation|variation|sport +(noun)|addict|nut|junkie|junky|enthusiast|partisan|partizan +(verb)|freak out|gross out|panic +freak out|2 +(noun)|disorientation|delusion|hallucination +(verb)|freak|gross out|panic +freakish|3 +(adj)|capricious|unpredictable +(adj)|abnormal +(adj)|bizarre|eccentric|freaky|flaky|off-the-wall|outlandish|outre|unconventional +freakishly|1 +(adv)|capriciously +freakishness|1 +(noun)|abnormality|unfamiliarity|strangeness +freaky|2 +(adj)|strange |unusual +(adj)|bizarre|eccentric|freakish|flaky|off-the-wall|outlandish|outre|unconventional +freckle|3 +(noun)|lentigo|macule|macula +(verb)|spot +(verb)|spot +freckled|1 +(adj)|lentiginous|lentiginose|patterned +fred astaire|1 +(noun)|Astaire|Fred Astaire|dancer|professional dancer|actor|histrion|player|thespian|role player +fred hoyle|1 +(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist +fred sanger|1 +(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist +fred skinner|1 +(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist +fred zinnemann|1 +(noun)|Zinnemann|Fred Zinnemann|film maker|filmmaker|film producer|movie maker +freddie mac|1 +(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation|corp +frederic auguste bartholdi|1 +(noun)|Bartholdi|Frederic Auguste Bartholdi|sculptor|sculpturer|carver|statue maker +frederic francois chopin|1 +(noun)|Chopin|Frederic Francois Chopin|composer|pianist|piano player +frederic william maitland|1 +(noun)|Maitland|Frederic William Maitland|historian|historiographer +frederick|1 +(noun)|Frederick|town +frederick barbarossa|1 +(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor +frederick carleton lewis|1 +(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter|jumper +frederick childe hassam|1 +(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter +frederick delius|1 +(noun)|Delius|Frederick Delius|composer +frederick douglass|1 +(noun)|Douglass|Frederick Douglass|abolitionist|emancipationist +frederick i|2 +(noun)|Frederick I|king|male monarch +(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor +frederick ii|2 +(noun)|Frederick II|Frederick the Great|king|male monarch +(noun)|Frederick II|Holy Roman Emperor Frederick II|Holy Roman Emperor +frederick jackson turner|1 +(noun)|Turner|Frederick Jackson Turner|historian|historiographer +frederick james furnivall|1 +(noun)|Furnivall|Frederick James Furnivall|philologist|philologue +frederick law olmsted|1 +(noun)|Olmsted|Frederick Law Olmsted|landscape architect|landscape gardener|landscaper|landscapist +frederick loewe|1 +(noun)|Loewe|Frederick Loewe|composer +frederick moore vinson|1 +(noun)|Vinson|Frederick Moore Vinson|jurist|legal expert +frederick north|1 +(noun)|North|Frederick North|Second Earl of Guilford|statesman|solon|national leader +frederick sanger|1 +(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist +frederick soddy|1 +(noun)|Soddy|Frederick Soddy|chemist +frederick the great|1 +(noun)|Frederick II|Frederick the Great|king|male monarch +frederick william|1 +(noun)|Frederick William|the Great Elector|Elector +frederick william i|1 +(noun)|Frederick William I|king|male monarch +frederick william ii|1 +(noun)|Frederick William II|king|male monarch +frederick william iii|1 +(noun)|Frederick William III|king|male monarch +frederick william iv|1 +(noun)|Frederick William IV|king|male monarch +fredericksburg|1 +(noun)|Fredericksburg|Battle of Fredericksburg|pitched battle +frederico garcia lorca|1 +(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet|dramatist|playwright +fredericton|1 +(noun)|Fredericton|provincial capital +free|20 +(adj)|free |at large|at liberty|escaped|loose|on the loose|at liberty|unconstrained|autonomous|independent|self-governing|sovereign|available|uncommitted|aweigh|atrip|clear|discharged|released|disentangled|extricated|freed|emancipated|liberated|loose|out-of-school|unconfined|unimprisoned|unhampered|free of|unrestricted|footloose|independent|unbound|unconfined|unrestrained|unrestricted +(adj)|free |liberated|unbound +(adj)|complimentary|costless|gratis|gratuitous|unpaid +(adj)|unoccupied +(adj)|detached|unfixed +(adj)|free |emancipated|freed|liberated|freeborn|free-soil|slaveless +(adj)|spare|unoccupied +(adj)|loose|liberal|inexact +(noun)|free people|people +(verb)|liberate|release|unloose|unloosen|loose +(verb)|rid|disembarrass +(verb)|dislodge|remove|take|take away|withdraw +(verb)|exempt|relieve +(verb)|release|issue|supply +(verb)|discharge +(verb)|disengage +(verb)|absolve|justify|forgive +(verb)|release|relinquish|resign|give up|pass|hand|reach|pass on|turn over|give +(verb)|unblock|unfreeze|release|issue|supply +(adv)|loose +free-and-easy|1 +(adj)|casual|informal +free-associate|1 +(verb)|associate|tie in|relate|link|colligate|link up|connect +free-base|1 +(verb)|base|drug|do drugs +free-enterprise|1 +(adj)|competitive|private-enterprise|capitalistic |capitalist +free-for-all|1 +(noun)|brawl|fight|fighting|combat|scrap +free-lance|1 +(verb)|work|do work +free-liver|1 +(noun)|free agent|free spirit|freewheeler +free-living|1 +(adj)|nonparasitic|nonsymbiotic|independent +free-range|1 +(adj)|unenclosed|unconfined +free-reed|1 +(noun)|beating-reed instrument|reed +free-reed instrument|1 +(noun)|wind instrument|wind +free-soil|1 +(adj)|slaveless|free +free-spoken|1 +(adj)|blunt|candid|forthright|frank|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct +free-swimming|1 +(adj)|unattached|vagile +free-tailed bat|1 +(noun)|freetail|freetailed bat|carnivorous bat|microbat +free-thinking|1 +(adj)|latitudinarian|undogmatic|undogmatical|broad-minded +free agency|1 +(noun)|representation|delegacy|agency +free agent|2 +(noun)|professional|pro +(noun)|free spirit|freewheeler|person|individual|someone|somebody|mortal|human|soul +free association|1 +(noun)|thinking|thought|cerebration|intellection|mentation +free burning|1 +(adj)|sustained|continuous |uninterrupted +free central placentation|1 +(noun)|placentation +free electron|1 +(noun)|electron|negatron +free enterprise|1 +(noun)|market economy|laissez-faire economy|economy|economic system +free fall|2 +(noun)|drop|fall +(noun)|drop|dip|fall|decrease|decrement +free form|1 +(noun)|free morpheme|morpheme +free french|1 +(noun)|Free French|Fighting French|movement|social movement|front +free grace|1 +(noun)|grace|grace of God|beneficence +free hand|1 +(noun)|blank check|freedom +free house|1 +(noun)|public house|pub|saloon|pothouse|gin mill|taphouse +free kick|1 +(noun)|place kick|place-kicking +free list|1 +(noun)|list|listing +free living|1 +(noun)|life style|life-style|lifestyle|modus vivendi +free love|1 +(noun)|extramarital sex|unlawful carnal knowledge|criminal congress +free lunch|1 +(noun)|gift +free morpheme|1 +(noun)|free form|morpheme +free nerve ending|1 +(noun)|nerve ending|nerve end +free of|1 +(adj)|unhampered|free +free of charge|1 +(adv)|gratis|for free +free pardon|1 +(noun)|amnesty|pardon|clemency|mercifulness|mercy +free people|1 +(noun)|free|people +free phagocyte|1 +(noun)|phagocyte|scavenger cell +free port|2 +(noun)|free zone|area|country +(noun)|port +free press|1 +(noun)|press|public press +free radical|1 +(noun)|radical|atom +free rein|1 +(noun)|play|freedom +free soil party|1 +(noun)|Free Soil Party|party|political party +free spirit|1 +(noun)|free agent|freewheeler|person|individual|someone|somebody|mortal|human|soul +free state|3 +(noun)|Maryland|Old Line State|Free State|MD|American state +(noun)|American state +(noun)|Free State|Orange Free State|state|province +free thought|1 +(noun)|deism|rationalism +free throw|1 +(noun)|foul shot|penalty free throw|charity toss|charity throw|charity shot|basketball shot +free throw lane|1 +(noun)|lane +free time|2 +(noun)|spare time|time off +(noun)|spare time|leisure|leisure time +free trade|1 +(noun)|trade +free trader|1 +(noun)|supporter|protagonist|champion|admirer|booster|friend +free verse|1 +(noun)|vers libre|poem|verse form +free weight|1 +(noun)|weight|exercising weight|sports equipment|sporting goods +free will|1 +(noun)|discretion|power|powerfulness +free world|1 +(noun)|Free World|collection|aggregation|accumulation|assemblage +free zone|1 +(noun)|free port|area|country +freebee|1 +(noun)|freebie|gift +freebie|1 +(noun)|freebee|gift +freeboard deck|1 +(noun)|upper deck +freebooter|1 +(noun)|plunderer|pillager|looter|spoiler|despoiler|raider|thief|stealer +freeborn|1 +(adj)|free +freed|2 +(adj)|emancipated|liberated|free +(adj)|disentangled|extricated|free +freedman|1 +(noun)|freedwoman|freeman|freewoman +freedom|2 +(noun)|state +(noun)|exemption|unsusceptibility|immunity +freedom fighter|1 +(noun)|insurgent|insurrectionist|rebel|revolutionist|revolutionary|subversive|subverter|reformer|reformist|crusader|meliorist +freedom from cruel and unusual punishment|1 +(noun)|civil right|civil rights +freedom from discrimination|1 +(noun)|civil right|civil rights +freedom from double jeopardy|1 +(noun)|civil right|civil rights +freedom from involuntary servitude|1 +(noun)|civil right|civil rights +freedom from search and seizure|1 +(noun)|civil right|civil rights +freedom from self-incrimination|1 +(noun)|privilege against self incrimination|civil right|civil rights +freedom of assembly|1 +(noun)|civil right|civil rights +freedom of religion|1 +(noun)|civil right|civil rights +freedom of speech|1 +(noun)|civil right|civil rights +freedom of the press|1 +(noun)|civil right|civil rights +freedom of the seas|1 +(noun)|freedom +freedom of thought|1 +(noun)|human right +freedom party|1 +(noun)|Hizb ut-Tahrir|Freedom Party|terrorist organization|terrorist group|foreign terrorist organization|FTO +freedom rider|1 +(noun)|civil rights leader|civil rights worker|civil rights activist +freedom to bear arms|1 +(noun)|civil right|civil rights +freedwoman|1 +(noun)|freedman|freeman|freewoman +freehand|1 +(adj)|freehanded|original +freehanded|2 +(adj)|freehand|original +(adj)|big|bighearted|bounteous|bountiful|handsome|giving|liberal|openhanded|generous +freehearted|1 +(adj)|benevolent|generous +freehold|2 +(noun)|estate|land|landed estate|acres|demesne +(noun)|tenure|land tenure +freeholder|1 +(noun)|landowner|landholder|property owner +freeing|1 +(noun)|liberation|release|accomplishment|achievement +freelance|3 +(adj)|freelance |self-employed +(adj)|mercenary|paid +(noun)|independent|self-employed person|worker +freeload|1 +(verb)|mooch|bum|cadge|grub|sponge +freeloader|1 +(noun)|borrower +freemail|1 +(noun)|electronic mail|e-mail|email +freeman|1 +(noun)|freewoman|citizen +freemason|1 +(noun)|Freemason|Mason|brother +freemasonry|2 +(noun)|company|companionship|fellowship|society +(noun)|Freemasonry|Masonry|secret society +freesia|1 +(noun)|iridaceous plant +freestanding|1 +(adj)|separate|detached +freestone|1 +(noun)|edible fruit +freestyle|1 +(noun)|race +freetail|1 +(noun)|free-tailed bat|freetailed bat|carnivorous bat|microbat +freetailed bat|1 +(noun)|freetail|free-tailed bat|carnivorous bat|microbat +freethinker|1 +(noun)|deist|nonreligious person +freethinking|1 +(noun)|rationalism|doctrine|philosophy|philosophical system|school of thought|ism +freetown|1 +(noun)|Freetown|capital of Sierra Leone|national capital|port +freeware|1 +(noun)|software|software system|software package|package +freeway|1 +(noun)|expressway|motorway|pike|state highway|superhighway|throughway|thruway|highway|main road +freewheel|3 +(noun)|clutch +(verb)|drift|exist|survive|live|subsist +(verb)|coast +freewheeler|1 +(noun)|free agent|free spirit|person|individual|someone|somebody|mortal|human|soul +freewheeling|2 +(adj)|unrestrained +(adj)|carefree|devil-may-care|happy-go-lucky|harum-scarum|slaphappy|irresponsible +freewill|1 +(adj)|voluntary +freewoman|1 +(noun)|freeman|citizen +freeze|13 +(noun)|freezing|cooling|chilling|temperature reduction|phase change|phase transition|state change|physical change +(noun)|frost|cold weather +(noun)|halt|pause +(noun)|limitation|restriction +(verb)|change state|turn +(verb)|stop dead|stand still +(verb)|suffer +(verb)|change|alter|modify +(verb)|suspend|interrupt|break +(verb)|freeze out|freeze down|solidify +(verb)|block|immobilize|immobilise|withhold|keep back +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out +(verb)|act|behave|do +freeze-dried|2 +(adj)|lyophilized|lyophilised|preserved +(adj)|preserved +freeze-dry|1 +(verb)|preserve|keep +freeze-drying|1 +(noun)|lyophilization|lyophilisation|freeze|freezing|dehydration|desiccation|drying up|evaporation +freeze down|1 +(verb)|freeze|freeze out|solidify +freeze off|1 +(verb)|reject|spurn|scorn|pooh-pooh|disdain|turn down|refuse|decline +freeze out|1 +(verb)|freeze|freeze down|solidify +freezer|1 +(noun)|deep-freeze|Deepfreeze|deep freezer|electric refrigerator|fridge +freezing|1 +(noun)|freeze|cooling|chilling|temperature reduction|phase change|phase transition|state change|physical change +freezing mixture|1 +(noun)|mixture +freezing point|1 +(noun)|melting point|temperature +fregata|1 +(noun)|Fregata|genus Fregata|bird genus +fregatidae|1 +(noun)|Fregatidae|family Fregatidae|bird family +freight|5 +(noun)|cargo|lading|load|loading|payload|shipment|consignment|merchandise|wares|product +(noun)|freightage|transportation|shipping|transport +(noun)|freightage|freight rate|rate|charge per unit +(verb)|transport +(verb)|charge +freight agent|1 +(noun)|agent +freight car|1 +(noun)|car|railcar|railway car|railroad car +freight elevator|1 +(noun)|service elevator|elevator|lift +freight liner|1 +(noun)|liner train|freight train|rattler +freight rate|1 +(noun)|freight|freightage|rate|charge per unit +freight train|1 +(noun)|rattler|train|railroad train +freightage|2 +(noun)|freight|freight rate|rate|charge per unit +(noun)|freight|transportation|shipping|transport +freighter|1 +(noun)|bottom|merchantman|merchant ship|cargo ship|cargo vessel +fremont|1 +(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer|adventurer +fremontia|1 +(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus +fremontodendron|1 +(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus +french|4 +(adj)|French|Gallic|European country|European nation +(noun)|French|Romance|Romance language|Latinian language +(noun)|French|French people|nation|land|country|a people +(noun)|French|Daniel Chester French|sculptor|sculpturer|carver|statue maker +french-fried potatoes|1 +(noun)|french fries|fries|potato|white potato|Irish potato|murphy|spud|tater +french-fry|1 +(verb)|deep-fry|fry +french-speaking|1 +(adj)|French-speaking|communicative |communicatory +french academy|1 +(noun)|French Academy|academy|honorary society +french and indian war|1 +(noun)|French and Indian War|war|warfare +french bean|1 +(noun)|haricot vert|haricots verts|French bean|green bean +french blue|1 +(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine|ultramarine blue +french bracken|1 +(noun)|royal fern|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern|osmund +french bread|1 +(noun)|French bread|white bread|light bread +french bulldog|1 +(noun)|French bulldog|bulldog|English bulldog +french canadian|1 +(noun)|French Canadian|Canadian +french capital|1 +(noun)|Paris|City of Light|French capital|capital of France|national capital +french chalk|1 +(noun)|French chalk|talc|talcum +french congo|1 +(noun)|Congo|Republic of the Congo|French Congo|African country|African nation +french door|1 +(noun)|French door|door +french dressing|1 +(noun)|French dressing|vinaigrette|sauce vinaigrette|dressing|salad dressing +french dressing for fruit salad|1 +(noun)|French dressing for fruit salad|French dressing|vinaigrette|sauce vinaigrette +french endive|1 +(noun)|Belgian endive|French endive|witloof|chicory escarole|endive|escarole +french foreign legion|1 +(noun)|French Foreign Legion|foreign legion +french foreign office|1 +(noun)|French foreign office|Quai d'Orsay|foreign office +french franc|1 +(noun)|French franc|franc +french fries|1 +(noun)|french-fried potatoes|fries|potato|white potato|Irish potato|murphy|spud|tater +french fritter|1 +(noun)|French fritter|biegnet|friedcake +french guinea|1 +(noun)|Guinea|Republic of Guinea|French Guinea|African country|African nation +french heel|1 +(noun)|French heel|heel +french honeysuckle|2 +(noun)|red valerian|French honeysuckle|Centranthus ruber|flower +(noun)|French honeysuckle|sulla|Hedysarum coronarium|subshrub|suffrutex +french horn|1 +(noun)|French horn|horn|brass +french indochina|1 +(noun)|French Indochina|geographical area|geographic area|geographical region|geographic region +french kiss|1 +(noun)|soul kiss|deep kiss|French kiss|kiss|buss|osculation +french knot|1 +(noun)|French knot|stitch +french lavender|2 +(noun)|spike lavender|French lavender|Lavandula latifolia|lavender +(noun)|French lavender|Lavandula stoechas|lavender +french leave|1 +(noun)|French leave|departure|going|going away|leaving +french lesson|1 +(noun)|French lesson|language lesson +french loaf|1 +(noun)|French loaf|loaf of bread|loaf +french marigold|1 +(noun)|French marigold|Tagetes patula|marigold +french oceania|1 +(noun)|French Polynesia|French Oceania|possession +french omelet|1 +(noun)|French omelet|firm omelet +french pancake|1 +(noun)|crape|crepe|French pancake|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +french pastry|1 +(noun)|French pastry|pastry +french people|1 +(noun)|French|French people|nation|land|country|a people +french person|1 +(noun)|Frenchman|Frenchwoman|French person|European +french polish|2 +(noun)|French polish|polish|gloss|glossiness|burnish +(noun)|French polish|shellac|shellac varnish +french polynesia|1 +(noun)|French Polynesia|French Oceania|possession +french region|1 +(noun)|French region|geographical area|geographic area|geographical region|geographic region +french republic|1 +(noun)|France|French Republic|European country|European nation +french revolution|1 +(noun)|French Revolution|revolution +french riviera|1 +(noun)|French Riviera|Cote d'Azur|French region +french roof|1 +(noun)|French roof|mansard|mansard roof +french rye|1 +(noun)|tall oat grass|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass +french sorrel|2 +(noun)|French sorrel|garden sorrel|Rumex scutatus|dock|sorrel|sour grass +(noun)|French sorrel|greens|green|leafy vegetable +french spinach|1 +(noun)|red goosefoot|French spinach|Chenopodium rubrum|goosefoot +french sudan|1 +(noun)|Mali|Republic of Mali|French Sudan|African country|African nation +french teacher|1 +(noun)|French teacher|teacher|instructor +french telephone|1 +(noun)|handset|French telephone|telephone|phone|telephone set +french toast|1 +(noun)|French toast|dish +french ultramarine|1 +(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine|ultramarine blue +french ultramarine blue|1 +(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine|ultramarine blue +french vermouth|1 +(noun)|dry vermouth|French vermouth|vermouth +french weed|1 +(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress +french west indies|1 +(noun)|French West Indies|collection|aggregation|accumulation|assemblage +french window|1 +(noun)|French window|French door +frenchify|2 +(verb)|Frenchify|change|alter|modify +(verb)|Frenchify|change state|turn +frenchman|1 +(noun)|Frenchman|Frenchwoman|French person|European +frenchwoman|1 +(noun)|Frenchman|Frenchwoman|French person|European +frenetic|1 +(adj)|frantic|phrenetic|frenzied|agitated +frenetically|1 +(adv)|demoniacally +frenzied|2 +(adj)|manic|wild +(adj)|frantic|frenetic|phrenetic|agitated +frenziedly|1 +(adv)|hectically +frenzy|1 +(noun)|craze|delirium|fury|hysteria|mania|manic disorder +frequence|1 +(noun)|frequency|oftenness|rate +frequency|3 +(noun)|frequence|oftenness|rate +(noun)|relative frequency|ratio +(noun)|absolute frequency|cardinal number|cardinal +frequency-response characteristic|1 +(noun)|frequency-response curve|frequency response|characteristic curve|characterisic function +frequency-response curve|1 +(noun)|frequency-response characteristic|frequency response|characteristic curve|characterisic function +frequency band|1 +(noun)|waveband|band +frequency distribution|1 +(noun)|distribution|statistical distribution +frequency modulation|1 +(noun)|FM|modulation +frequency response|2 +(noun)|frequency-response curve|frequency-response characteristic|characteristic curve|characterisic function +(noun)|sensitivity +frequent|4 +(adj)|frequent |prevailing|predominant|regular|steady +(adj)|common +(verb)|patronize|patronise|shop|shop at|buy at|sponsor|support|back up +(verb)|haunt|travel to|visit +frequenter|1 +(noun)|patron|customer|client +frequently|1 +(adv)|often|oftentimes|oft|ofttimes +fresco|3 +(noun)|mural|wall painting +(noun)|painting +(verb)|paint +fresh|14 +(adj)|fresh |caller|crisp|firm|crunchy|fresh-cut|good|unspoiled|unspoilt|new-made|strong|warm|hot|new +(adj)|new +(adj)|bracing|brisk|energizing|energising|refreshing|refreshful|tonic|invigorating +(adj)|new|novel|original +(adj)|fresh |uncured|unprocessed +(adj)|fresh |freshwater|sweet|unsalty +(adj)|wet |lactating +(adj)|invigorated|refreshed|reinvigorated|rested +(adj)|sweet|unfermented|unsoured +(adj)|clean|pure +(adj)|natural +(adj)|unused|clean +(adj)|impertinent|impudent|overbold|smart|saucy|sassy|forward +(adv)|recently|newly|freshly|new +fresh-cut|1 +(adj)|fresh +fresh bean|1 +(noun)|common bean +fresh breeze|1 +(noun)|breeze|zephyr|gentle wind|air +fresh fish|1 +(noun)|cannon fodder|soldier +fresh food|1 +(noun)|fresh foods|food +fresh foods|2 +(noun)|fresh food|food +(noun)|fresh food|food +fresh gale|1 +(noun)|gale +fresh start|1 +(noun)|clean slate|tabula rasa|opportunity|chance +fresh water|1 +(noun)|water|H2O +freshen|3 +(verb)|refresh|regenerate|renew +(verb)|refresh|refreshen|freshen up|change +(verb)|refresh|refreshen|change|alter|modify|freshen up +freshen up|2 +(verb)|refurbish|renovate|regenerate|renew +(verb)|freshen|refresh|refreshen|change +freshener|1 +(noun)|thing +fresher|1 +(noun)|freshman|lowerclassman|underclassman +freshet|1 +(noun)|spate|flow|flowing +freshly|2 +(adv)|recently|newly|fresh|new +(adv)|impertinently|saucily|pertly|impudently +freshman|3 +(adj)|first-year|first +(noun)|fresher|lowerclassman|underclassman +(noun)|newcomer|fledgling|fledgeling|starter|neophyte|newbie|entrant|novice|beginner|tyro|tiro|initiate +freshman class|1 +(noun)|class|year +freshness|5 +(noun)|newness +(noun)|novelty|originality +(noun)|glow|good health|healthiness +(noun)|novelty|originality +(noun)|crust|gall|impertinence|impudence|insolence|cheekiness|discourtesy|rudeness +freshwater|1 +(adj)|fresh +freshwater bass|2 +(noun)|bass|freshwater fish +(noun)|bass +freshwater bream|2 +(noun)|bream|freshwater fish +(noun)|bream|sunfish|centrarchid +freshwater clam|1 +(noun)|freshwater mussel|mussel +freshwater cordgrass|1 +(noun)|prairie cordgrass|slough grass|Spartina pectinmata|cordgrass|cord grass +freshwater eel|1 +(noun)|common eel|eel +freshwater fish|1 +(noun)|seafood +freshwater limpet|1 +(noun)|river limpet|Ancylus fluviatilis|gastropod|univalve +freshwater mussel|1 +(noun)|freshwater clam|mussel +fresnel|1 +(noun)|Fresnel|Augustin Jean Fresnel|physicist +fresnel lens|1 +(noun)|Fresnel lens|lens|lense|lens system +fresno|1 +(noun)|Fresno|city|metropolis|urban center +fress|1 +(verb)|gluttonize|gluttonise|eat +fret|16 +(noun)|stew|sweat|lather|swither|agitation +(noun)|worn spot|spot|speckle|dapple|patch|fleck|maculation +(noun)|Greek fret|Greek key|key pattern|architectural ornament +(noun)|bar +(verb)|fuss|niggle|worry +(verb)|worry +(verb)|supply|provide|render|furnish +(verb)|chafe|gall|irritate +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|eat into|rankle|grate|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|carve +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|choke|gag|compress|constrict|squeeze|compact|contract|press +(verb)|rub|fray|chafe|scratch|touch|adjoin|meet|contact +(verb)|erode|eat away|damage +(verb)|eat away|corrode|rust +fretful|2 +(adj)|fidgety|itchy|restless|unquiet +(adj)|querulous|whiney|whining|whiny|complaining |complaintive +fretfulness|1 +(noun)|irritability|crossness|fussiness|peevishness|petulance|choler|ill humor|ill humour|distemper +fretsaw|1 +(noun)|jigsaw|scroll saw|power saw|saw|sawing machine +fretted|2 +(adj)|fretted |bar +(adj)|interlaced|latticed|latticelike|reticulate |reticulated|reticular +fretwork|1 +(noun)|lattice|latticework|framework|frame|framing +freud|1 +(noun)|Freud|Sigmund Freud|neurologist|brain doctor|analyst|psychoanalyst +freudian|1 +(adj)|Freudian|neurologist|brain doctor|analyst|psychoanalyst +freudian psychology|1 +(noun)|Freudian psychology|psychotherapy|psychotherapeutics|mental hygiene +freudian slip|1 +(noun)|Freudian slip|slip|slip-up|miscue|parapraxis +frey|1 +(noun)|Frey|Freyr|Norse deity +freya|1 +(noun)|Freya|Freyja|Norse deity +freyja|1 +(noun)|Freya|Freyja|Norse deity +freyr|1 +(noun)|Frey|Freyr|Norse deity +frg|1 +(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country|European nation +fri|1 +(noun)|Friday|Fri|weekday +friability|1 +(noun)|crumbliness|breakableness +friable|2 +(adj)|breakable +(adj)|light|sandy|loose +friar|1 +(noun)|mendicant|religious +friar's-cowl|1 +(noun)|Arisarum vulgare|arum|aroid +friar's lantern|1 +(noun)|ignis fatuus|jack-o'-lantern|will-o'-the-wisp|light|visible light|visible radiation +friar preacher|1 +(noun)|Dominican|Black Friar|Blackfriar|friar|mendicant +friary|1 +(noun)|monastery +fricandeau|1 +(noun)|veal roast|roast veal +fricassee|2 +(noun)|stew +(verb)|cook +fricative|2 +(adj)|sibilant|spirant|soft +(noun)|fricative consonant|spirant|continuant consonant|continuant +fricative consonant|1 +(noun)|fricative|spirant|continuant consonant|continuant +frick|1 +(noun)|Frick|Henry Clay Frick|industrialist +friction|3 +(noun)|clash|conflict +(noun)|rubbing|resistance +(noun)|detrition|rubbing|effort|elbow grease|exertion|travail|sweat +friction clutch|1 +(noun)|clutch +friction match|1 +(noun)|match|lucifer|lighter|light|igniter|ignitor +friction tape|1 +(noun)|insulating tape|adhesive tape +frictional|1 +(adj)|resistance +frictionless|1 +(adj)|resistance +friday|1 +(noun)|Friday|Fri|weekday +fridge|1 +(noun)|electric refrigerator|refrigerator|icebox +fridtjof nansen|1 +(noun)|Nansen|Fridtjof Nansen|explorer|adventurer|statesman|solon|national leader +fried|1 +(adj)|deep-fried|cooked +fried egg|1 +(noun)|dish +fried rice|1 +(noun)|Chinese fried rice|dish +friedan|1 +(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist|women's rightist|women's liberationist|libber +friedcake|1 +(noun)|cake +friedman|1 +(noun)|Friedman|Milton Friedman|economist|economic expert +friedman test|1 +(noun)|Friedman test|rabbit test|pregnancy test +friedreich's ataxia|1 +(noun)|Friedreich's ataxia|herediatry spinal ataxia|ataxia|ataxy|dyssynergia|motor ataxia +friedrich anton mesmer|1 +(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor|doc|physician|MD|Dr.|medico +friedrich august kekule|1 +(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist +friedrich august kekule von stradonitz|1 +(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist +friedrich august von hayek|1 +(noun)|Hayek|Friedrich August von Hayek|economist|economic expert +friedrich august wolf|1 +(noun)|Wolf|Friedrich August Wolf|classicist|classical scholar +friedrich engels|1 +(noun)|Engels|Friedrich Engels|socialist +friedrich froebel|1 +(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator|pedagogue +friedrich gottlieb klopstock|1 +(noun)|Klopstock|Friedrich Gottlieb Klopstock|poet +friedrich hebbel|1 +(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist|playwright +friedrich krupp|1 +(noun)|Krupp|Friedrich Krupp|industrialist +friedrich max muller|1 +(noun)|Muller|Max Muller|Friedrich Max Muller|philologist|philologue +friedrich wilhelm august froebel|1 +(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator|pedagogue +friedrich wilhelm bessel|1 +(noun)|Bessel|Friedrich Wilhelm Bessel|mathematician|astronomer|uranologist|stargazer +friedrich wilhelm nietzsche|1 +(noun)|Nietzsche|Friedrich Wilhelm Nietzsche|philosopher +friend|5 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|ally|associate +(noun)|acquaintance|person|individual|someone|somebody|mortal|human|soul +(noun)|supporter|protagonist|champion|admirer|booster|advocate|advocator|proponent|exponent +(noun)|Friend|Quaker|Christian +friend of the court|1 +(noun)|amicus curiae|adviser|advisor|consultant +friendless|1 +(adj)|outcast|unwanted +friendlessness|1 +(noun)|solitariness +friendliness|2 +(noun)|liking +(noun)|disposition|temperament +friendly|4 +(adj)|friendly |affable|amiable|cordial|genial|chummy|matey|pally|palsy-walsy|companionate|comradely|hail-fellow|hail-fellow-well-met|couthie|couthy|cozy|intimate|informal|favorable|well-disposed|neighborly|neighbourly|social|amicable|congenial|agreeable|gracious|hospitable|sociable|social|warm +(adj)|amicable +(adj)|friendly +(adj)|friendly +friendly fire|1 +(noun)|fratricide|fire|firing +friendly islands|1 +(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country|state|land +friendly relationship|1 +(noun)|friendship|relationship +friendly takeover|1 +(noun)|takeover +friendship|1 +(noun)|friendly relationship|relationship +friendship plant|1 +(noun)|panamica|panamiga|Pilea involucrata|nettle +frier|1 +(noun)|fryer|pullet|chicken|poulet|volaille +fries|4 +(noun)|french fries|french-fried potatoes|potato|white potato|Irish potato|murphy|spud|tater +(noun)|Fry|Roger Fry|Roger Eliot Fry|painter|art critic +(noun)|Fry|Christopher Fry|dramatist|playwright +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +friesian|1 +(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +friesland|2 +(noun)|Friesland|geographical area|geographic area|geographical region|geographic region +(noun)|Friesland|state|province +frieze|2 +(noun)|architectural ornament +(noun)|fabric|cloth|material|textile +frig around|1 +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +frigate|2 +(noun)|warship|war vessel|combat ship +(noun)|warship|war vessel|combat ship +frigate bird|1 +(noun)|man-of-war bird|pelecaniform seabird +frigg|1 +(noun)|Frigg|Frigga|Norse deity +frigga|1 +(noun)|Frigg|Frigga|Norse deity +fright|2 +(noun)|fear|fearfulness|emotion +(verb)|frighten|scare|affright|stimulate|shake|shake up|excite|stir +frighten|2 +(verb)|fright|scare|affright|stimulate|shake|shake up|excite|stir|frighten off|frighten away +(verb)|chase away|drive out|turn back|drive away|dispel|drive off|run off +frighten away|1 +(verb)|daunt|dash|scare off|pall|frighten off|scare away|scare|intimidate|restrain +frighten off|1 +(verb)|daunt|dash|scare off|pall|scare away|frighten away|scare|intimidate|restrain +frightened|2 +(adj)|panicky|panicked|panic-stricken|panic-struck|terrified|afraid +(adj)|scared|afraid +frightening|2 +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|horrendous|horrific|terrible|alarming +(noun)|terrorization|terrorisation|bullying|intimidation +frighteningly|1 +(adv)|scarily +frightful|3 +(adj)|atrocious|horrifying|horrible|ugly|alarming +(adj)|extraordinary +(adj)|fearful|terrible|bad +frightfully|1 +(adv)|terribly|awfully|awful +frightfulness|1 +(noun)|awfulness|dreadfulness|horridness|terribleness +frigid|3 +(adj)|cold|unloving +(adj)|arctic|gelid|glacial|icy|polar|cold +(adj)|frosty|frozen|glacial|icy|wintry|cold +frigid zone|1 +(noun)|Frigid Zone|polar zone|climatic zone +frigidity|2 +(noun)|unresponsiveness +(noun)|coldness|coolness|unemotionality|emotionlessness +frigidly|1 +(adv)|frostily +frigorific|1 +(adj)|cold +frijol|1 +(noun)|kidney bean|frijole|common bean|common bean plant|Phaseolus vulgaris +frijole|2 +(noun)|kidney bean|frijol|common bean|common bean plant|Phaseolus vulgaris +(noun)|common bean +frijoles refritos|1 +(noun)|refried beans|dish +frijolillo|1 +(noun)|mescal bean|coral bean|frijolito|Sophora secundiflora|tree +frijolito|1 +(noun)|mescal bean|coral bean|frijolillo|Sophora secundiflora|tree +frill|1 +(noun)|flounce|ruffle|furbelow|adornment +frilled|1 +(adj)|frilly|ruffled|adorned |decorated +frilled lizard|1 +(noun)|Chlamydosaurus kingi|agamid|agamid lizard +frills|2 +(noun)|falderal|folderol|gimcrackery|gimcracks|nonsense|trumpery|decoration|ornament|ornamentation +(noun)|frill|flounce|ruffle|furbelow|adornment +frilly|1 +(adj)|frilled|ruffled|adorned |decorated +frimaire|1 +(noun)|Frimaire|Revolutionary calendar month +fringe|6 +(noun)|periphery|outer boundary|boundary|edge|bound +(noun)|outskirt|city district +(noun)|social group +(noun)|edging +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|surround|skirt|border +fringe-toed lizard|1 +(noun)|Uma notata|iguanid|iguanid lizard +fringe benefit|1 +(noun)|perquisite|perk|benefit +fringe bush|1 +(noun)|Chionanthus virginicus|fringe tree +fringe cups|1 +(noun)|false alumroot|Tellima grandiflora|wildflower|wild flower +fringe tree|1 +(noun)|tree +fringed|3 +(adj)|bordered +(adj)|adorned |decorated +(adj)|laciniate|rough +fringed gecko|1 +(noun)|flying gecko|Ptychozoon homalocephalum|gecko +fringed gentian|1 +(noun)|gentian +fringed grass of parnassus|1 +(noun)|fringed grass of Parnassus|Parnassia fimbriata|wildflower|wild flower +fringed loosestrife|1 +(noun)|Lysimachia ciliatum|loosestrife +fringed orchid|1 +(noun)|fringed orchis|orchid|orchidaceous plant +fringed orchis|1 +(noun)|fringed orchid|orchid|orchidaceous plant +fringed pink|2 +(noun)|ground pink|moss pink|Linanthus dianthiflorus|phlox +(noun)|Dianthus supurbus|pink|garden pink +fringed polygala|1 +(noun)|flowering wintergreen|gaywings|bird-on-the-wing|Polygala paucifolia|milkwort +fringed poppy mallow|1 +(noun)|Callirhoe digitata|poppy mallow +fringepod|1 +(noun)|lacepod|herb|herbaceous plant +fringilla|1 +(noun)|Fringilla|genus Fringilla|bird genus +fringilla coelebs|1 +(noun)|chaffinch|Fringilla coelebs|finch +fringilla montifringilla|1 +(noun)|brambling|Fringilla montifringilla|finch +fringillidae|1 +(noun)|Fringillidae|family Fringillidae|bird family +fringy|1 +(adj)|marginal|peripheral +frippery|1 +(noun)|bagatelle|fluff|frivolity|triviality|trivia|trifle|small beer +frisbee|1 +(noun)|Frisbee|disk|disc|plaything|toy +frisch|3 +(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist +(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist|economic expert +(noun)|Frisch|Karl von Frisch|zoologist|animal scientist +frisia|1 +(noun)|Frisia|geographical area|geographic area|geographical region|geographic region +frisian|3 +(adj)|Frisian|state|province|geographical area|geographic area|geographical region|geographic region +(noun)|Frisian|Dutch|Dutch people +(noun)|Frisian|West Germanic|West Germanic language +frisian islands|1 +(noun)|Frisian Islands|archipelago +frisk|3 +(noun)|frisking|search|hunt|hunting +(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|romp|run around|lark about|play +(verb)|search +friskiness|1 +(noun)|frolicsomeness|sportiveness|playfulness|fun +frisking|1 +(noun)|frisk|search|hunt|hunting +frisky|1 +(adj)|kittenish|playful +frisson|1 +(noun)|shiver|chill|quiver|shudder|thrill|tingle|fear|fearfulness|fright +fritillaria|1 +(noun)|Fritillaria|genus Fritillaria|liliid monocot genus +fritillaria affinis|1 +(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary|checkered lily +fritillaria agrestis|1 +(noun)|stink bell|Fritillaria agrestis|fritillary|checkered lily +fritillaria biflora|1 +(noun)|mission bells|black fritillary|Fritillaria biflora|fritillary|checkered lily +fritillaria imperialis|1 +(noun)|crown imperial|Fritillaria imperialis|fritillary|checkered lily +fritillaria lanceolata|1 +(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary|checkered lily +fritillaria liliaceae|1 +(noun)|white fritillary|Fritillaria liliaceae|fritillary|checkered lily +fritillaria meleagris|1 +(noun)|snake's head fritillary|guinea-hen flower|checkered daffodil|leper lily|Fritillaria meleagris|fritillary|checkered lily +fritillaria micrantha|1 +(noun)|brown bells|Fritillaria micrantha|Fritillaria parviflora|fritillary|checkered lily +fritillaria mutica|1 +(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary|checkered lily +fritillaria parviflora|1 +(noun)|brown bells|Fritillaria micrantha|Fritillaria parviflora|fritillary|checkered lily +fritillaria pluriflora|1 +(noun)|adobe lily|pink fritillary|Fritillaria pluriflora|fritillary|checkered lily +fritillaria recurva|1 +(noun)|scarlet fritillary|Fritillaria recurva|fritillary|checkered lily +fritillary|2 +(noun)|checkered lily|bulbous plant +(noun)|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +frittata|1 +(noun)|dish +fritter|2 +(noun)|friedcake +(verb)|frivol away|dissipate|shoot|fritter away|fool|fool away|consume|squander|waste|ware +fritter away|1 +(verb)|fritter|frivol away|dissipate|shoot|fool|fool away|consume|squander|waste|ware +fritter batter|1 +(noun)|batter +fritz albert lipmann|1 +(noun)|Lipmann|Fritz Albert Lipmann|biochemist +fritz haber|1 +(noun)|Haber|Fritz Haber|chemist +fritz kreisler|1 +(noun)|Kreisler|Fritz Kreisler|violinist|fiddler +fritz w. meissner|1 +(noun)|Meissner|Fritz W. Meissner|physicist +friuli|1 +(noun)|Friulian|Friuli|Rhaeto-Romance|Rhaeto-Romanic +friuli-venezia giulia|1 +(noun)|Friuli-Venezia Giulia|Italian region +friulian|1 +(noun)|Friulian|Friuli|Rhaeto-Romance|Rhaeto-Romanic +frivol|1 +(verb)|trifle|act|behave|do +frivol away|1 +(verb)|fritter|dissipate|shoot|fritter away|fool|fool away|consume|squander|waste|ware +frivolity|3 +(noun)|frivolousness|trait +(noun)|bagatelle|fluff|frippery|triviality|trivia|trifle|small beer +(noun)|buffoonery|clowning|harlequinade|prank|folly|foolery|tomfoolery|craziness|lunacy|indulgence +frivolous|1 +(adj)|frivolous |airheaded|dizzy|empty-headed|featherbrained|giddy|light-headed|lightheaded|silly|flighty|flyaway|flippant|light-minded|idle|light|light|trivial|superficial +frivolousness|1 +(noun)|frivolity|trait +frizz|1 +(verb)|crimp|crape|frizzle|kink up|kink|curl|wave +frizzle|2 +(verb)|fry +(verb)|crimp|crape|frizz|kink up|kink|curl|wave +frizzly|1 +(adj)|crisp|frizzy|kinky|nappy|curly +frizzy|1 +(adj)|crisp|frizzly|kinky|nappy|curly +frobisher|1 +(noun)|Frobisher|Sir Martin Frobisher|explorer|adventurer|navigator +frock|2 +(noun)|dress|garment +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +frock coat|1 +(noun)|coat +froebel|1 +(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator|pedagogue +froelichia|1 +(noun)|Froelichia|genus Froelichia|caryophylloid dicot genus +frog|3 +(noun)|toad|toad frog|anuran|batrachian|salientian|amphibian +(noun)|Gaul|Frenchman|Frenchwoman|French person +(noun)|frogs|adornment +frog's-bit|1 +(noun)|frogbit|Hydrocharis morsus-ranae|aquatic plant|water plant|hydrophyte|hydrophytic plant +frog's-bit family|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|monocot family|liliopsid family +frog's lettuce|1 +(noun)|pondweed +frog kick|1 +(noun)|swimming kick +frog legs|1 +(noun)|dish +frog orchid|2 +(noun)|orchid|orchidaceous plant +(noun)|Coeloglossum viride|orchid|orchidaceous plant +frogbit|1 +(noun)|frog's-bit|Hydrocharis morsus-ranae|aquatic plant|water plant|hydrophyte|hydrophytic plant +frogbit family|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frog's-bit family|monocot family|liliopsid family +frogfish|1 +(noun)|spiny-finned fish|acanthopterygian +froghopper|1 +(noun)|spittle insect|spittlebug +frogman|1 +(noun)|diver|underwater diver|explorer|adventurer +frogmarch|2 +(verb)|march +(verb)|bear +frogmouth|1 +(noun)|caprimulgiform bird +frogs|4 +(noun)|frog|adornment +(noun)|frog|toad|toad frog|anuran|batrachian|salientian|amphibian +(noun)|frog|Gaul|Frenchman|Frenchwoman|French person +(noun)|frog|adornment +frolic|2 +(noun)|play|romp|gambol|caper|diversion|recreation +(verb)|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play +frolicky|1 +(adj)|coltish|frolicsome|rollicking|sportive|playful +frolicsome|1 +(adj)|coltish|frolicky|rollicking|sportive|playful +frolicsomeness|1 +(noun)|friskiness|sportiveness|playfulness|fun +from each one|1 +(adv)|each|to each one|for each one|apiece +from head to toe|1 +(adv)|cap-a-pie +from nowhere|1 +(adv)|out of thin air|out of nothing +from pillar to post|1 +(adv)|hither and thither +from time to time|1 +(adv)|occasionally|on occasion|once in a while|now and then|now and again|at times +from way back|1 +(adv)|since a long time ago +fromental halevy|1 +(noun)|Halevy|Fromental Halevy|Jacques Francois Fromental Elie Halevy|composer +frond|1 +(noun)|leaf|leafage|foliage +front|14 +(adj)|front |advance|advanced|in advance|foremost|frontmost|forward|frontal|head-on|anterior|first|fore +(adj)|fore|anterior +(noun)|presence|proximity +(noun)|front end|forepart|side|face +(noun)|side +(noun)|sphere|domain|area|orbit|field|arena +(noun)|battlefront|front line|line +(noun)|movement|social movement|social group +(noun)|atmospheric phenomenon +(noun)|front man|figurehead|nominal head|straw man|strawman|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|appearance +(noun)|position|place +(verb)|look|face|lie +(verb)|breast|confront|face +front-porch campaign|1 +(noun)|front-porch campaigning|campaigning|candidacy|candidature|electioneering|political campaign +front-porch campaigning|1 +(noun)|front-porch campaign|campaigning|candidacy|candidature|electioneering|political campaign +front-runner|1 +(noun)|favorite|favourite|rival|challenger|competitor|competition|contender +front-stall|2 +(noun)|chanfron|chamfron|testiere|frontstall|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)| +front bench|1 +(noun)|seat +front burner|1 +(noun)|precedence|precedency|priority +front crawl|1 +(noun)|crawl|Australian crawl|swimming stroke +front door|1 +(noun)|front entrance|exterior door|outside door +front end|1 +(noun)|front|forepart|side|face +front entrance|1 +(noun)|front door|exterior door|outside door +front line|1 +(noun)|battlefront|front|line +front man|1 +(noun)|front|figurehead|nominal head|straw man|strawman|deceiver|cheat|cheater|trickster|beguiler|slicker +front matter|1 +(noun)|prelims|matter +front porch|1 +(noun)|porch +front projector|1 +(noun)|projector +front room|1 +(noun)|living room|living-room|sitting room|parlor|parlour|room +front tooth|1 +(noun)|anterior|tooth +front yard|1 +(noun)|yard|grounds|curtilage +frontage|3 +(noun)|extent +(noun)|direction +(noun)|facade|frontal|front +frontage road|1 +(noun)|service road|local road|local street +frontal|7 +(adj)|anterior +(adj)|atmospheric phenomenon +(adj)|head-on|front +(adj)|anterior +(noun)|frontlet|adornment +(noun)|curtain|drape|drapery|mantle|pall +(noun)|facade|frontage|front +frontal area|1 +(noun)|frontal cortex|cortical area|cortical region +frontal bone|1 +(noun)|os frontale|forehead|membrane bone +frontal cortex|1 +(noun)|frontal area|cortical area|cortical region +frontal eminence|1 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +frontal gyrus|1 +(noun)|gyrus|convolution +frontal lobe|1 +(noun)|lobe +frontal lobotomy|1 +(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|psychosurgery +frontal sinus|1 +(noun)|sinus +frontal suture|1 +(noun)|sutura frontalis|suture|sutura|fibrous joint +frontbencher|1 +(noun)|legislator +frontier|3 +(noun)|wilderness|wild +(noun)|boundary|bound|bounds +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +frontier settlement|1 +(noun)|outpost|colony|settlement +frontiersman|1 +(noun)|backwoodsman|mountain man|pioneer +frontierswoman|1 +(noun)|pioneer +frontispiece|2 +(noun)|facade|frontage|frontal +(noun)|front +frontlet|1 +(noun)|frontal|adornment +frontmost|1 +(adj)|foremost|front +frontstall|1 +(noun)|chanfron|chamfron|testiere|front-stall|armor plate|armour plate|armor plating|plate armor|plate armour +frontward|1 +(adv)|forward|forwards|frontwards|forrad|forrard +frontwards|1 +(adv)|forward|forwards|frontward|forrad|forrard +frore|1 +(adj)|cold +frost|8 +(noun)|hoar|hoarfrost|rime|ice|water ice +(noun)|freeze|cold weather +(noun)|icing|freeze|freezing +(noun)|Frost|Robert Frost|Robert Lee Frost|poet +(verb)|ice|cover +(verb)|cover +(verb)|cover +(verb)|damage +frost's bolete|1 +(noun)|Frost's bolete|Boletus frostii|bolete +frost-bound|1 +(adj)|frozen +frost-weed|3 +(noun)|frostweed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum|sunrose|sun rose +(noun)|Virginia crownbeard|frostweed|Verbesina virginica|crownbeard|crown-beard|crown beard +(noun)| +frost fish|1 +(noun)|cutlassfish|hairtail|percoid fish|percoid|percoidean +frost heave|1 +(noun)|frost heaving|geological phenomenon +frost heaving|1 +(noun)|frost heave|geological phenomenon +frost mist|1 +(noun)|ice crystal|snow mist|diamond dust|poudrin|ice needle|frost snow|crystal +frost over|1 +(verb)|ice up|ice over|change +frost snow|1 +(noun)|ice crystal|snow mist|diamond dust|poudrin|ice needle|frost mist|crystal +frostbite|1 +(noun)|cryopathy|injury|hurt|harm|trauma +frostbitten|1 +(adj)|frozen +frosted|1 +(adj)|opaque +frosted bat|1 +(noun)|Vespertilio murinus|vespertilian bat|vespertilionid +frostian|1 +(adj)|Frostian|poet +frostily|1 +(adv)|frigidly +frostiness|2 +(noun)|coldness|cold|low temperature +(noun)|hoariness|white|whiteness +frosting|1 +(noun)|icing|ice|topping +frostweed|2 +(noun)|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum|sunrose|sun rose +(noun)|Virginia crownbeard|frost-weed|Verbesina virginica|crownbeard|crown-beard|crown beard +frostwort|1 +(noun)|frostweed|frost-weed|Helianthemum canadense|Crocanthemum canadensei|helianthemum|sunrose|sun rose +frosty|3 +(adj)|frigid|frozen|glacial|icy|wintry|cold +(adj)|rimed|rimy|cold +(adj)|crisp|nipping|nippy|snappy|parky|cold +froth|3 +(noun)|foam|bubble +(verb)|foam|fizz|effervesce|sparkle|bubble +(verb)|spume|suds|make|create +froth at the mouth|1 +(verb)|foam at the mouth|rage +frothiness|1 +(noun)|bubbliness|effervescence|gaseousness +frothing|2 +(adj)|bubbling|foaming|foamy|spumous|spumy|sudsy|agitated +(adj)|foaming|foamy|unhealthy +frothy|2 +(adj)|bubbling|bubbly|foaming|foamy|effervescing|effervescent +(adj)|foamy|gaseous +frottage|1 +(noun)|masturbation|onanism|self-abuse +frotteur|1 +(noun)|masturbator|onanist +froward|1 +(adj)|headstrong|self-willed|willful|wilful|disobedient +frown|2 +(noun)|scowl|facial expression|facial gesture +(verb)|glower|lour|lower|grimace|make a face|pull a face +frown line|1 +(noun)|wrinkle|furrow|crease|crinkle|seam|line +frown on|1 +(verb)|frown upon|disapprove +frown upon|1 +(verb)|frown on|disapprove +frowning|1 +(adj)|displeased +frowsty|1 +(adj)|fusty|musty|malodorous |malodourous +frowsy|1 +(adj)|frowzy|slovenly|untidy +frowzled|1 +(adj)|disheveled|dishevelled|rumpled|tousled|untidy +frowzy|1 +(adj)|frowsy|slovenly|untidy +frozen|7 +(adj)|frozen |frostbitten|frost-bound|icebound|ice-clogged|icy|unthawed|glaciated|sleety|cold|unmelted +(adj)|rooted|stock-still|nonmoving |unmoving +(adj)|frigid|frosty|glacial|icy|wintry|cold +(adj)|unmelted +(adj)|flash-frozen|quick-frozen|preserved +(adj)|nondisposable +(adj)|fixed|unchangeable +frozen custard|1 +(noun)|soft ice cream|frozen dessert +frozen dessert|1 +(noun)|dessert|sweet|afters +frozen food|1 +(noun)|frozen foods|foodstuff|food product +frozen foods|2 +(noun)|frozen food|foodstuff|food product +(noun)|frozen food|foodstuff|food product +frozen metaphor|1 +(noun)|dead metaphor|metaphor +frozen orange juice|1 +(noun)|orange-juice concentrate|orange juice|concentrate +frozen pudding|1 +(noun)|frozen dessert +frozen yogurt|1 +(noun)|yogurt|yoghurt|yoghourt|frozen dessert +frs|2 +(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank +(noun)|francium|Fr|atomic number 87|metallic element|metal +fructidor|1 +(noun)|Fructidor|Revolutionary calendar month +fructification|2 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|reproductive structure +fructify|3 +(verb)|better|improve|ameliorate|meliorate +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|set|reproduce|procreate|multiply +fructose|1 +(noun)|fruit sugar|levulose|laevulose|ketohexose +fructosuria|1 +(noun)|glycosuria +frugal|1 +(adj)|economical|scotch|sparing|stinting|thrifty +frugality|1 +(noun)|frugalness|prudence +frugalness|1 +(noun)|frugality|prudence +fruit|4 +(noun)|reproductive structure +(noun)|consequence|aftermath +(noun)|yield|product|production +(verb)|bear|turn out +fruit-eating|1 +(adj)|carpophagous|herbivorous +fruit bar|1 +(noun)|cookie|cooky|biscuit +fruit bat|1 +(noun)|megabat|bat|chiropteran +fruit cocktail|1 +(noun)|cocktail +fruit compote|1 +(noun)|compote|dessert|sweet|afters +fruit crush|1 +(noun)|fruit juice|beverage|drink|drinkable|potable +fruit custard|1 +(noun)|custard +fruit drink|1 +(noun)|ade|beverage|drink|drinkable|potable +fruit fly|1 +(noun)|pomace fly|dipterous insect|two-winged insects|dipteran|dipteron +fruit grower|1 +(noun)|agriculturist|cultivator|grower|raiser +fruit juice|1 +(noun)|fruit crush|beverage|drink|drinkable|potable +fruit machine|1 +(noun)|slot|one-armed bandit +fruit of the poisonous tree|1 +(noun)|rule of evidence +fruit punch|1 +(noun)|punch +fruit salad|1 +(noun)|salad +fruit sugar|1 +(noun)|fructose|levulose|laevulose|ketohexose +fruit tree|1 +(noun)|angiospermous tree|flowering tree +fruitage|1 +(noun)|crop|harvest +fruitcake|2 +(noun)|crackpot|crank|nut|nut case|nutcase|screwball|eccentric|eccentric person|flake|oddball|geek +(noun)|cake +fruiterer|1 +(noun)|seller|marketer|vender|vendor|trafficker +fruitful|2 +(adj)|fruitful |berried|baccate|bacciferous|bountiful|plentiful|fat|fertile|productive|rich|generative|procreative|reproductive|prolific|fertile|breeding|fertile|productive +(adj)|profitable|productive +fruitfully|1 +(adv)|productively|profitably +fruitfulness|2 +(noun)|fecundity|quality +(noun)|fecundity|creativity|creativeness|creative thinking +fruiting|1 +(adj)|mature +fruiting body|1 +(noun)|plant organ +fruition|3 +(noun)|condition|status +(noun)|use|enjoyment +(noun)|realization|realisation|consummation +fruitless|1 +(adj)|bootless|futile|sleeveless|vain|unproductive +fruitlessly|1 +(adv)|unproductively|unprofitably +fruitlessness|2 +(noun)|uncreativeness +(noun)|aridity|barrenness|quality +fruitlet|1 +(noun)|fruit +fruitwood|1 +(noun)|wood +fruity|2 +(adj)|tasteful +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +frumenty|1 +(noun)|hot cereal +frump|1 +(noun)|dog|unpleasant woman|disagreeable woman +frumpily|1 +(adv)|dowdily|frumpishly +frumpish|1 +(adj)|dowdy|frumpy|unfashionable |unstylish +frumpishly|1 +(adv)|dowdily|frumpily +frumpy|1 +(adj)|dowdy|frumpish|unfashionable |unstylish +frunze|1 +(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital +frustrate|2 +(verb)|thwart|queer|spoil|scotch|foil|cross|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|torment|rag|bedevil|crucify|dun|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +frustrated|1 +(adj)|defeated|disappointed|discomfited|foiled|thwarted|unsuccessful +frustrating|2 +(adj)|discouraging +(adj)|frustrative|thwarting|preventive |preventative +frustration|3 +(noun)|defeat|disappointment|letdown +(noun)|thwarting|foiling|hindrance|interference +(noun)|annoyance|chafe|vexation +frustrative|1 +(adj)|frustrating|thwarting|preventive |preventative +frustum|1 +(noun)|solid +fruticose|1 +(adj)|shrubby|fruticulose +fruticulose|1 +(adj)|shrubby|fruticose +fry|6 +(noun)|Fry|Roger Fry|Roger Eliot Fry|painter|art critic +(noun)|Fry|Christopher Fry|dramatist|playwright +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|nestling|juvenile|juvenile person +(verb)|heat|hot up|heat up +(verb)|cook +(verb)|electrocute|kill +fry bread|1 +(noun)|skillet bread|quick bread +fry cook|1 +(noun)|cook +frye|1 +(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic +fryer|1 +(noun)|frier|pullet|chicken|poulet|volaille +frying|1 +(noun)|sauteing|cooking|cookery|preparation +frying pan|1 +(noun)|frypan|skillet|pan|cooking pan +frypan|1 +(noun)|frying pan|skillet|pan|cooking pan +fsb|2 +(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency +(noun)|federal savings bank|FSB|savings bank +fsh|1 +(noun)|follicle-stimulating hormone|FSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +ft|1 +(noun)|foot|linear unit +ft-l|1 +(noun)|foot-lambert|ft-L|luminance unit +ftc|1 +(noun)|Federal Trade Commission|FTC|independent agency +fthm|2 +(noun)|fathom|linear unit +(noun)|fathom|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +fto|1 +(noun)|terrorist organization|terrorist group|foreign terrorist organization|FTO|political movement +ftp|2 +(noun)|file transfer protocol|FTP|protocol|communications protocol +(verb)|FTP|transfer +fucaceae|1 +(noun)|Fucaceae|family Fucaceae|protoctist family +fucales|1 +(noun)|Fucales|order Fucales|animal order +fuchs|1 +(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist +fuchsia|2 +(noun)|shrub|bush +(noun)|magenta|purplish red +fuchsia coccinea|1 +(noun)|lady's-eardrop|ladies'-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia +fuchsia excorticata|1 +(noun)|konini|tree fuchsia|native fuchsia|Fuchsia excorticata|fuchsia +fuck|2 +(noun)|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +fuck all|1 +(noun)|bugger all|Fanny Adams|sweet Fanny Adams|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip +fuck off|3 +(verb)|bum|bum around|bum about|arse around|arse about|loaf|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +(verb)|scram|buzz off|get|bugger off|leave|go forth|go away +(verb)|masturbate|wank|she-bop|jack off|jerk off|stimulate|excite|stir +fuck up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fail|go wrong|miscarry +fucked-up|1 +(adj)|snafu|disorganized |disorganised +fucker|2 +(noun)|heterosexual|heterosexual person|straight person|straight +(noun)|fool|sap|saphead|muggins|tomfool +fuckhead|1 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|simpleton|simple +fucking|2 +(adj)|bally|blinking|bloody|blooming|crashing|flaming|unmitigated +(noun)|fuck|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +fuckup|2 +(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|butcher|incompetent|incompetent person +(noun)|blunder|blooper|bloomer|bungle|foul-up|flub|botch|boner|boo-boo|mistake|error|fault +fucoid|2 +(noun)|fossil +(noun)|fucoid algae|brown algae +fucoid algae|1 +(noun)|fucoid|brown algae +fucus|1 +(noun)|rockweed +fucus serratus|1 +(noun)|serrated wrack|Fucus serratus|tang|brown algae +fucus vesiculosus|1 +(noun)|bladderwrack|black rockweed|bladder fucus|tang|Fucus vesiculosus|rockweed +fuddle|3 +(verb)|befuddle|intoxicate|soak|inebriate +(verb)|drink|booze|consume|ingest|take in|take|have +(verb)|confuse|throw|fox|befuddle|bedevil|confound|discombobulate|be +fuddled|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +fuddy-duddy|1 +(noun)|stuffed shirt|bore|dullard +fudge|3 +(noun)|candy +(verb)|manipulate|fake|falsify|cook|wangle|misrepresent|cheat|chisel +(verb)|hedge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid +fudge factor|1 +(noun)|correction|indefinite quantity +fudge sauce|1 +(noun)|hot-fudge sauce|chocolate sauce|chocolate syrup +fudge together|1 +(verb)|throw together|produce|make|create +fuego|1 +(noun)|Fuego|volcano +fuel|5 +(noun)|substance|matter +(verb)|supply|provide|render|furnish +(verb)|fire|supply|provide|render|furnish +(verb)|take in|take up +(verb)|stimulate|shake|shake up|excite|stir +fuel-air bomb|1 +(noun)|thermobaric bomb|vacuum bomb|volume-detonation bomb|aerosol bomb|bomb|fuel-air explosive|FAE +fuel-air explosive|1 +(noun)|FAE|explosive device +fuel cell|1 +(noun)|cell|electric cell +fuel consumption rate|1 +(noun)|mileage|gasoline mileage|gas mileage|ratio +fuel filter|1 +(noun)|filter +fuel gauge|1 +(noun)|fuel indicator|indicator +fuel indicator|1 +(noun)|fuel gauge|indicator +fuel injection|1 +(noun)|fuel injection system|mechanical system +fuel injection system|1 +(noun)|fuel injection|mechanical system +fuel level|1 +(noun)|reserve|backlog|stockpile +fuel line|1 +(noun)|gas line|pipe|pipage|piping +fuel oil|1 +(noun)|heating oil|oil|fuel +fuel pod|1 +(noun)|pod|container +fuel system|1 +(noun)|equipment +fueled|1 +(adj)|fueled |burning|oil-fired|oxyacetylene +fueling|1 +(noun)|refueling|provision|supply|supplying +fuentes|1 +(noun)|Fuentes|Carlos Fuentes|writer|author +fuerzas armadas revolucionarios de colombia|1 +(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization|terrorist group|foreign terrorist organization|FTO +fug|1 +(noun)|fog|fogginess|murk|murkiness +fugacious|1 +(adj)|ephemeral|passing|short-lived|transient|transitory|impermanent |temporary +fugaciousness|1 +(noun)|fugacity|transience|transiency|transitoriness +fugacity|2 +(noun)|physical property +(noun)|fugaciousness|transience|transiency|transitoriness +fugal|1 +(adj)|classical music|serious music +fugard|1 +(noun)|Fugard|Athol Fugard|dramatist|playwright +fuggy|1 +(adj)|unventilated +fugitive|3 +(adj)|fleeting|momentaneous|momentary|short +(noun)|runaway|person|individual|someone|somebody|mortal|human|soul +(noun)|fugitive from justice|criminal|felon|crook|outlaw|malefactor +fugitive from justice|1 +(noun)|fugitive|criminal|felon|crook|outlaw|malefactor +fugleman|1 +(noun)|leader +fugo|1 +(noun)|balloon bomb|Fugo|bomb +fugu|1 +(noun)|blowfish|sea squab|puffer +fugue|3 +(noun)|psychogenic fugue|dissociative disorder +(noun)|psychological state|mental state +(noun)|classical music|serious music +fuji|2 +(noun)|fuji cherry|Prunus incisa|flowering cherry +(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano +fuji-san|1 +(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano +fuji cherry|1 +(noun)|fuji|Prunus incisa|flowering cherry +fujinoyama|1 +(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano +fujiyama|1 +(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano +fukien|1 +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +fukkianese|1 +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +fukuoka|1 +(noun)|Fukuoka|city|metropolis|urban center +ful|1 +(noun)|Fula|Ful|Fulani|Peul|West African +fula|2 +(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African +(noun)|Fula|Ful|Fulani|Peul|West African +fulah|1 +(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African +fulani|2 +(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African +(noun)|Fula|Ful|Fulani|Peul|West African +fulbe|1 +(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African +fulbright|1 +(noun)|Fulbright|William Fulbright|James William Fulbright|senator +fulcrum|1 +(noun)|pivot|pin +fulfil|3 +(verb)|carry through|accomplish|execute|carry out|action|fulfill|complete|finish|effect|effectuate|bring about|set up +(verb)|meet|satisfy|fill|fulfill|provide|supply|ply|cater +(verb)|satisfy|fulfill|live up to|meet|fit|conform to +fulfill|3 +(verb)|carry through|accomplish|execute|carry out|action|fulfil|complete|finish|effect|effectuate|bring about|set up +(verb)|satisfy|fulfil|live up to|meet|fit|conform to +(verb)|meet|satisfy|fill|fulfil|provide|supply|ply|cater +fulfilled|1 +(adj)|consummated +fulfillment|2 +(noun)|fulfilment|satisfaction +(noun)|fulfilment|consummation +fulfilment|2 +(noun)|fulfillment|satisfaction +(noun)|fulfillment|consummation +fulgent|1 +(adj)|blazing|blinding|dazzling|glaring|glary|bright +fulgid|1 +(adj)|aglitter|coruscant|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkling|sparkly|bright +fulgoridae|1 +(noun)|Fulgoridae|family Fulgoridae|arthropod family +fulgurant|1 +(adj)|dazzling|eye-popping|fulgurous|impressive +fulgurating|1 +(adj)|sharp +fulgurous|1 +(adj)|dazzling|eye-popping|fulgurant|impressive +fulica|1 +(noun)|Fulica|genus Fulica|bird genus +fulica americana|1 +(noun)|American coot|marsh hen|mud hen|water hen|Fulica americana|coot +fulica atra|1 +(noun)|Old World coot|Fulica atra|coot +full|13 +(adj)|full |afloat|awash|flooded|inundated|overflowing|air-filled|brimful|brimfull|brimming|chockablock|chock-full|chockful|choke-full|chuck-full|cram full|congested|engorged|fraught|pregnant|glutted|overfull|heavy|weighed down|instinct|replete|laden|loaded|ladened|overladen|overloaded|stuffed|stuffed|swarming|untouched|untasted|well-lined|filled|riddled +(adj)|entire|total|whole +(adj)|total|complete +(adj)|replete|nourished +(adj)|full |booming|stentorian|grumbling|rumbling|plangent|rich|orotund|rotund|round|pear-shaped|sounding|heavy|sonorous +(adj)|good|ample +(adj)|broad|high +(adj)|undivided|whole +(adj)|wide|wide-cut|ample +(verb)|beat +(verb)|change|alter|modify +(verb)|wax|increase +(adv)|fully|to the full +full-blood|1 +(adj)|full-blooded|blooded|purebred +full-blooded|2 +(adj)|full-blood|blooded|purebred +(adj)|hearty|lusty|red-blooded|healthy +full-blown|2 +(adj)|matured|mature +(adj)|complete +full-bodied|1 +(adj)|rich|robust|tasteful +full-bosomed|1 +(adj)|bosomy|busty|buxom|curvaceous|curvy|sonsie|sonsy|voluptuous|well-endowed|shapely +full-clad|1 +(adj)|fleshed out|complete +full-dress|3 +(adj)|dress|formal +(adj)|dress|formal +(adj)|complete +full-dress uniform|1 +(noun)|military uniform +full-face|1 +(adj)|guardant|gardant|forward +full-fashioned|1 +(adj)|fully fashioned|shapely +full-fledged|2 +(adj)|fully fledged|fledged |mature +(adj)|fully fledged|experienced +full-grown|1 +(adj)|adult|big|fully grown|grown|grownup|mature +full-length|3 +(adj)|tall +(adj)|whole +(adj)|uncut|unabridged +full-of-the-moon|1 +(noun)|full moon|full phase of the moon|phase of the moon +full-page|1 +(adj)|whole +full-scale|1 +(adj)|all-out|complete +full-size|1 +(adj)|life-size|lifesize|life-sized|large +full-strength|1 +(adj)|neat|straight|undiluted +full-term|1 +(adj)|full-term |mature +full-time|1 +(adj)|full-time |regular +full-wave rectifier|1 +(noun)|rectifier +full admiral|1 +(noun)|admiral|flag officer +full blood|1 +(noun)|origin|descent|extraction +full complement|1 +(noun)|complement|work force|workforce|manpower|hands|men +full cousin|1 +(noun)|cousin|first cousin|cousin-german|relative|relation +full dress|1 +(noun)|dress suit|tailcoat|tail coat|tails|white tie|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +full employment|1 +(noun)|financial condition|economic condition +full gainer|1 +(noun)|gainer|dive|diving +full general|1 +(noun)|general|general officer +full house|1 +(noun)|poker hand +full metal jacket|1 +(noun)|bullet|slug +full moon|1 +(noun)|full-of-the-moon|full phase of the moon|phase of the moon +full moon maple|1 +(noun)|Japanese maple|Acer japonicum|maple +full nelson|1 +(noun)|wrestling hold +full of life|1 +(adj)|lively|vital|animated |alive +full page|1 +(noun)|page +full phase of the moon|1 +(noun)|full moon|full-of-the-moon|phase of the moon +full point|1 +(noun)|period|point|full stop|stop|punctuation|punctuation mark +full professor|1 +(noun)|professor|prof +full radiator|1 +(noun)|black body|blackbody|natural object +full service bank|1 +(noun)|commercial bank|depository financial institution|bank|banking concern|banking company +full skirt|1 +(noun)|skirt +full stop|1 +(noun)|period|point|stop|full point|punctuation|punctuation mark +full term|1 +(noun)|term|point|point in time +full treatment|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|whole works|works|entirety|entireness|totality +fullback|3 +(noun)|running back +(noun)|back +(verb)|play +fuller|2 +(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect|designer|engineer|applied scientist|technologist +(noun)|workman|working man|working person +fuller's earth|1 +(noun)|soil|dirt +fuller's teasel|1 +(noun)|Dipsacus sativus|teasel|teazel|teasle +fullerene|1 +(noun)|carbon|C|atomic number 6 +fullness|4 +(noun)|comprehensiveness|completeness +(noun)|mellowness|richness|timbre|timber|quality|tone +(noun)|condition|status +(noun)|voluminosity|voluminousness|largeness|bigness +fully|3 +(adv)|to the full|full +(adv)|amply +(adv)|in full +fully fashioned|1 +(adj)|full-fashioned|shapely +fully fledged|2 +(adj)|full-fledged|fledged |mature +(adj)|full-fledged|experienced +fully grown|1 +(adj)|adult|big|full-grown|grown|grownup|mature +fulmar|1 +(noun)|fulmar petrel|Fulmarus glacialis|petrel +fulmar petrel|1 +(noun)|fulmar|Fulmarus glacialis|petrel +fulmarus|1 +(noun)|Fulmarus|genus Fulmarus|bird genus +fulmarus glacialis|1 +(noun)|fulmar|fulmar petrel|Fulmarus glacialis|petrel +fulminant|1 +(adj)|sudden +fulminate|4 +(noun)|salt +(verb)|rail|denounce +(verb)|appear|come along +(verb)|explode|detonate|blow up|set off +fulminate of mercury|1 +(noun)|mercury fulminate|fulminating mercury|fulminate +fulminating mercury|1 +(noun)|mercury fulminate|fulminate of mercury|fulminate +fulmination|2 +(noun)|diatribe|denunciation|denouncement +(noun)|explosion|burst +fulminic acid|1 +(noun)|acid +fulsome|1 +(adj)|buttery|oily|oleaginous|smarmy|unctuous|insincere +fulsomely|1 +(adv)|unctuously|smarmily +fulsomeness|2 +(noun)|unction|smarm|compliment +(noun)|oiliness|oleaginousness|smarminess|unctuousness|unction|hypocrisy +fulton|1 +(noun)|Fulton|Robert Fulton|inventor|discoverer|artificer +fulvic acid|1 +(noun)|humic substance +fulvicin|1 +(noun)|griseofulvin|Fulvicin|penicillin|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +fumaria|1 +(noun)|Fumaria|genus Fumaria|dilleniid dicot genus +fumaria claviculata|1 +(noun)|climbing corydalis|Corydalis claviculata|Fumaria claviculata|vine|Corydalis|genus Corydalis +fumaria fungosa|1 +(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine +fumaria officinalis|1 +(noun)|fumitory|fumewort|fumeroot|Fumaria officinalis|herb|herbaceous plant +fumaria sempervirens|1 +(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis|genus Corydalis +fumariaceae|1 +(noun)|Fumariaceae|family Fumariaceae|fumitory family|dilleniid dicot family +fumaric acid|1 +(noun)|acid +fumble|6 +(noun)|muff|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|grope|search|seek|look for +(verb)|blunder|pass|go through|go across +(verb)|handle|palm +(verb)|botch|bumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|play +fumbler|1 +(noun)|bungler|blunderer|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent|incompetent person +fumbling|1 +(adj)|bungling|clumsy|incompetent|unskilled +fume|5 +(noun)|smoke|aerosol +(verb)|feel|experience +(verb)|smoke|emit|give out|give off +(verb)|fumigate|process|treat +(verb)|reek|exude|exudate|transude|ooze out|ooze +fumed|1 +(adj)|treated +fumed oak|1 +(noun)|oak +fumeroot|2 +(noun)|fumitory|fumewort|Fumaria officinalis|herb|herbaceous plant +(noun)|fumewort|Corydalis solida|Corydalis|genus Corydalis +fumes|2 +(noun)|exhaust|exhaust fumes|gas|waste|waste material|waste matter|waste product +(noun)|smoke|fume|aerosol +fumewort|2 +(noun)|fumitory|fumeroot|Fumaria officinalis|herb|herbaceous plant +(noun)|fumeroot|Corydalis solida|Corydalis|genus Corydalis +fumigant|1 +(noun)|chemical +fumigate|1 +(verb)|fume|process|treat +fumigation|1 +(noun)|application|coating|covering +fumimaro konoe|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +fumimaro konoye|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +fumitory|1 +(noun)|fumewort|fumeroot|Fumaria officinalis|herb|herbaceous plant +fumitory family|1 +(noun)|Fumariaceae|family Fumariaceae|dilleniid dicot family +fun|5 +(adj)|amusing|amusive|diverting|entertaining +(noun)|merriment|playfulness|diversion|recreation +(noun)|play|sport|wit|humor|humour|witticism|wittiness +(noun)|activity +(noun)|playfulness|frivolity|frivolousness +fun run|2 +(noun)|funrun|footrace|foot race|run +(noun)| +funafuti|1 +(noun)|Funafuti|national capital +funambulist|1 +(noun)|tightrope walker|acrobat +function|10 +(noun)|mathematical function|mathematical relation +(noun)|purpose|role|use|utility|usefulness +(noun)|office|part|role|duty +(noun)|relation +(noun)|social gathering|social affair +(noun)|affair|occasion|social occasion|social function|social event +(noun)|routine|subroutine|subprogram|procedure|software|software system|software package|package +(verb)|work|operate|go|run +(verb)|serve|suffice|do|answer|serve +(verb)|officiate|serve +function call|1 +(noun)|call +function word|1 +(noun)|closed-class word|word +functional|6 +(adj)|functional |structural|utilitarian|useful|serviceable +(adj)|functional +(adj)|utility|usefulness +(adj)|usable|useable|in working order|operable|operational|serviceable +(adj)|practical +(adj)|running|operative|working|functioning +functional anatomy|1 +(noun)|physiological anatomy|morphophysiology|anatomy|general anatomy +functional calculus|1 +(noun)|predicate calculus|symbolic logic|mathematical logic|formal logic +functional disorder|1 +(noun)|disorder|upset +functional genomics|1 +(noun)|genomics +functional illiterate|1 +(noun)|illiterate|illiterate person|nonreader +functional magnetic resonance imaging|1 +(noun)|fMRI|magnetic resonance imaging|MRI +functionalism|2 +(noun)|scientific theory +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +functionalist|1 +(noun)|supporter|protagonist|champion|admirer|booster|friend +functionality|1 +(noun)|practicality +functionally illiterate|1 +(adj)|illiterate +functionary|1 +(noun)|official|skilled worker|trained worker +functioning|2 +(adj)|functioning |running|operative|functional|working|up +(noun)|operation|performance|process +fund|9 +(noun)|monetary fund|money +(noun)|store|stock|accumulation +(noun)|investment company|investment trust|investment firm|nondepository financial institution +(verb)|finance +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|supply|provide|render|furnish +(verb)|invest|put|commit|place +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|support +fund-raise|3 +(verb)|fund raise|fundraise|raise +(verb)| +(verb)| +fund-raising campaign|1 +(noun)|fund-raising drive|fund-raising effort|campaign|cause|crusade|drive|movement|effort +fund-raising drive|1 +(noun)|fund-raising campaign|fund-raising effort|campaign|cause|crusade|drive|movement|effort +fund-raising effort|1 +(noun)|fund-raising campaign|fund-raising drive|campaign|cause|crusade|drive|movement|effort +fund raise|3 +(verb)|fund-raise|fundraise|raise +(verb)| +(verb)| +fundament|3 +(noun)|basis|base|foundation|groundwork|cornerstone|assumption|supposition|supposal +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|foundation|base|foot|groundwork|substructure|understructure|support +fundamental|4 +(adj)|cardinal|central|key|primal|important |of import +(adj)|rudimentary|underlying|basic +(adj)|profound|significant |important +(noun)|fundamental frequency|first harmonic|harmonic +fundamental frequency|1 +(noun)|fundamental|first harmonic|harmonic +fundamental interaction|1 +(noun)|interaction|physical phenomenon +fundamental law|1 +(noun)|organic law|constitution|law +fundamental measure|1 +(noun)|fundamental quantity|measure|quantity|amount +fundamental particle|1 +(noun)|elementary particle|subatomic particle|particle +fundamental principle|1 +(noun)|fundamentals|basics|basic principle|bedrock|principle +fundamental quantity|1 +(noun)|fundamental measure|measure|quantity|amount +fundamentalism|1 +(noun)|Protestantism +fundamentalist|2 +(adj)|fundamentalistic|Protestantism +(noun)|Protestant +fundamentalistic|1 +(adj)|fundamentalist|Protestantism +fundamentally|1 +(adv)|basically|essentially|in essence|au fond +fundamentals|2 +(noun)|basics|fundamental principle|basic principle|bedrock|principle +(noun)|fundamental|fundamental frequency|first harmonic|harmonic +funded|1 +(adj)|funded +funding|2 +(noun)|support|financial support|backing|financial backing|resource +(noun)|financing|finance +fundraise|1 +(verb)|fund-raise|fund raise|raise +fundraiser|2 +(noun)|solicitor|canvasser +(noun)|affair|occasion|social occasion|function|social function +funds|4 +(noun)|finances|monetary resource|cash in hand|pecuniary resource|assets +(noun)|fund|monetary fund|money +(noun)|store|stock|fund|accumulation +(noun)|investment company|investment trust|investment firm|fund|nondepository financial institution +fundulus|1 +(noun)|Fundulus|genus Fundulus|fish genus +fundulus heteroclitus|1 +(noun)|mummichog|Fundulus heteroclitus|killifish +fundulus majalis|1 +(noun)|striped killifish|mayfish|may fish|Fundulus majalis|killifish +fundus|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +funeral|1 +(noun)|ceremony|ceremonial|ceremonial occasion|observance +funeral-residence|1 +(noun)|funeral home|funeral parlor|funeral parlour|funeral chapel|funeral church|morgue|mortuary|dead room +funeral chapel|1 +(noun)|funeral home|funeral parlor|funeral parlour|funeral church|funeral-residence|morgue|mortuary|dead room +funeral church|1 +(noun)|funeral home|funeral parlor|funeral parlour|funeral chapel|funeral-residence|morgue|mortuary|dead room +funeral director|1 +(noun)|mortician|undertaker|funeral undertaker|skilled worker|trained worker +funeral home|1 +(noun)|funeral parlor|funeral parlour|funeral chapel|funeral church|funeral-residence|morgue|mortuary|dead room +funeral march|1 +(noun)|dead march|processional march|recessional march +funeral parlor|1 +(noun)|funeral home|funeral parlour|funeral chapel|funeral church|funeral-residence|morgue|mortuary|dead room +funeral parlour|1 +(noun)|funeral home|funeral parlor|funeral chapel|funeral church|funeral-residence|morgue|mortuary|dead room +funeral pyre|1 +(noun)|pyre|pile|heap|mound|cumulus +funeral undertaker|1 +(noun)|mortician|undertaker|funeral director|skilled worker|trained worker +funerary|1 +(adj)|ceremony|ceremonial|ceremonial occasion|observance +funereal|1 +(adj)|sepulchral|joyless +funfair|2 +(noun)|amusement park|pleasure ground|park|commons|common|green +(noun)|carnival|fair|show +fungal|1 +(adj)|fungous|plant|flora|plant life +fungal infection|1 +(noun)|mycosis|zymosis +fungi|3 +(noun)|Fungi|kingdom Fungi|fungus kingdom|kingdom +(noun)|spendthrift|spend-all|spender|scattergood +(noun)|fungus|plant|flora|plant life +fungi imperfecti|1 +(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division +fungia|1 +(noun)|Fungia|genus Fungia|coelenterate genus +fungibility|1 +(noun)|exchangeability|interchangeability|interchangeableness|changeableness|changeability +fungible|2 +(adj)|exchangeable +(noun)|commodity|trade goods|goods +fungicidal|1 +(adj)|antifungal|agent +fungicide|1 +(noun)|antifungal|antifungal agent|antimycotic|antimycotic agent|agent +fungoid|1 +(adj)|funguslike|plant|flora|plant life +fungous|1 +(adj)|fungal|plant|flora|plant life +fungus|1 +(noun)|plant|flora|plant life +fungus family|1 +(noun)|family +fungus genus|1 +(noun)|genus +fungus gnat|2 +(noun)|sciara|sciarid|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|dipterous insect|two-winged insects|dipteran|dipteron +fungus kingdom|1 +(noun)|Fungi|kingdom Fungi|kingdom +fungus order|1 +(noun)|order +funguslike|1 +(adj)|fungoid|plant|flora|plant life +funicle|1 +(noun)|funiculus|stalk|stem +funicular|2 +(adj)|rope +(noun)|cable railway|funicular railway|railway|railroad|railroad line|railway line|railway system +funicular railway|1 +(noun)|cable railway|funicular|railway|railroad|railroad line|railway line|railway system +funiculitis|1 +(noun)|inflammation|redness|rubor +funiculus|2 +(noun)|funicle|stalk|stem +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +funk|3 +(noun)|blue funk|depression +(noun)|Funk|Casimir Funk|biochemist +(verb)|flinch|squinch|cringe|shrink|wince|recoil|quail|move +funk hole|1 +(noun)|bunker|dugout +funka|1 +(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus +funkaceae|1 +(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family +funky|3 +(adj)|fetid|foetid|foul|foul-smelling|noisome|smelly|putrid|stinking|malodorous |malodourous +(adj)|low-down|emotional +(adj)|cowardly |fearful +funnel|4 +(noun)|funnel shape|cone|conoid|cone shape +(noun)|utensil +(noun)|smokestack|stack +(verb)|move|displace +funnel-crest rosebud orchid|1 +(noun)|spreading pogonia|Cleistes divaricata|Pogonia divaricata|orchid|orchidaceous plant +funnel shape|1 +(noun)|funnel|cone|conoid|cone shape +funnel web|1 +(noun)|spider web|spider's web +funnily|1 +(adv)|queerly|strangely|oddly|funny +funnily enough|1 +(adv)|curiously enough|interestingly enough|oddly enough|strangely enough +funniness|1 +(noun)|drollery|clowning|comedy|fun|play|sport +funny|6 +(adj)|amusing|comic|comical|laughable|mirthful|risible|humorous |humourous +(adj)|curious|odd|peculiar|queer|rum|rummy|singular|strange |unusual +(adj)|fishy|queer|shady|suspect|suspicious|questionable +(adj)|ill |sick +(adv)|queerly|strangely|oddly|funnily +(adv)|comically +funny bone|1 +(noun)|crazy bone|ulnar nerve|cubital nerve|nervus ulnaris +funny farm|1 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +funny house|1 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +funny story|1 +(noun)|good story|joke|gag|laugh|jest|jape +funny wagon|1 +(noun)|ambulance +funrun|1 +(noun)|fun run|footrace|foot race|run +fuqra|1 +(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization|terrorist group|foreign terrorist organization|FTO +fur|3 +(noun)|pelt|animal skin +(noun)|coat|pelage +(noun)|garment +fur-piece|1 +(noun)|neckpiece +fur coat|1 +(noun)|coat +fur hat|1 +(noun)|hat|chapeau|lid +fur seal|2 +(noun)|eared seal +(noun)|eared seal +furan|1 +(noun)|furane|furfuran|organic compound +furane|1 +(noun)|furan|furfuran|organic compound +furbelow|1 +(noun)|frill|flounce|ruffle|adornment +furbish|1 +(verb)|buff|burnish|flush|polish|smooth|smoothen|shine +furbish up|1 +(verb)|repair|mend|fix|bushel|doctor|restore|touch on|better|improve|amend|ameliorate|meliorate +furcate|1 +(verb)|branch|ramify|fork|separate|diverge +furcation|1 +(noun)|forking|angular shape|angularity +furcula|1 +(noun)|bone|os +furfural|1 +(noun)|furfuraldehyde|aldehyde|plant product +furfuraldehyde|1 +(noun)|furfural|aldehyde|plant product +furfuran|1 +(noun)|furan|furane|organic compound +furious|3 +(adj)|ferocious|fierce|savage|violent +(adj)|angered|enraged|infuriated|maddened|angry +(adj)|angry|raging|tempestuous|wild|stormy +furiousness|1 +(noun)|ferocity|fierceness|fury|vehemence|violence|wildness|intensity|intensiveness +furl|1 +(verb)|roll up|change shape|change form|deform +furled|1 +(adj)|rolled|bound +furlike|1 +(adj)|hairy |hirsute +furlong|1 +(noun)|linear unit +furlough|3 +(noun)|leave|leave of absence +(verb)|lay off|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|permit|allow|let|countenance +furnace|1 +(noun)|chamber +furnace lining|1 +(noun)|refractory|lining +furnace room|1 +(noun)|room +furnariidae|1 +(noun)|Furnariidae|family Furnariidae|bird family +furnarius|1 +(noun)|Furnarius|genus Furnarius|bird genus +furnish|2 +(verb)|supply|provide|render|give +(verb)|supply|provide|render +furnished|1 +(adj)|furnished |equipped|appointed|furnished with|provided with|supplied with|stocked|stocked with|volumed|well-appointed|well-found|fitted out|outfitted +furnished with|1 +(adj)|provided with|supplied with|furnished |equipped +furnishings|2 +(noun)|instrumentality|instrumentation +(noun)|trappings|accessory|accoutrement|accouterment +furniture|1 +(noun)|piece of furniture|article of furniture|furnishings +furniture company|1 +(noun)|company +furniture maker|1 +(noun)|cabinetmaker|woodworker|woodsman|woodman +furnivall|1 +(noun)|Furnivall|Frederick James Furnivall|philologist|philologue +furor|2 +(noun)|fad|craze|furore|cult|rage|fashion +(noun)|furore|disturbance +furore|2 +(noun)|fad|craze|furor|cult|rage|fashion +(noun)|furor|disturbance +furosemide|1 +(noun)|Lasix|diuretic drug|diuretic|water pill +furred|1 +(adj)|furry|hairy |hirsute +furrier|1 +(noun)|cloakmaker|garmentmaker|garment-worker|garment worker +furring|2 +(noun)|symptom +(noun)|furring strip|strip +furring strip|1 +(noun)|furring|strip +furrow|5 +(noun)|trench +(noun)|wrinkle|crease|crinkle|seam|line|depression|impression|imprint +(verb)|rut|groove|dig|delve|cut into|turn over +(verb)|wrinkle|crease|fold|fold up|turn up +(verb)|chamfer|chase|cut +furrowed|1 +(adj)|furrowed |canaliculate|corrugated|grooved|rutted|rutty|wrinkled|wrinkly +furry|1 +(adj)|furred|hairy |hirsute +furry tongue|1 +(noun)|hairy tongue|black tongue|side effect +further|11 +(adj)|additional|more|added +(adj)|farther|far +(verb)|foster|promote|advance|boost|encourage +(verb)|promote|advance|boost|encourage|support|back up +(adv)|farther +(adv)|farther +(adv)|far +(adv)|far +(adv)|far +(adv)|far +(adv)|far +furtherance|2 +(noun)|promotion|advancement|encouragement +(noun)|forwarding|promotion|advancement|progress +furthermore|1 +(adv)|moreover|what is more +furthermost|1 +(adj)|farthermost|farthest|furthest|utmost|uttermost|far +furthest|3 +(adj)|farthermost|farthest|furthermost|utmost|uttermost|far +(adv)|farthest +(adv)|farthest +furtive|2 +(adj)|lurking|skulking|sneak|sneaky|stealthy|surreptitious|concealed +(adj)|backstair|backstairs|covert +furtively|1 +(adv)|on the sly +furtiveness|1 +(noun)|sneakiness|stealthiness|closeness|secretiveness +furuncle|1 +(noun)|boil|staphylococcal infection +furunculosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +fury|4 +(noun)|rage|madness|anger|choler|ire +(noun)|craze|delirium|frenzy|hysteria|mania|manic disorder +(noun)|ferocity|fierceness|furiousness|vehemence|violence|wildness|intensity|intensiveness +(noun)|Fury|Eumenides|Erinyes|mythical monster|mythical creature +furze|1 +(noun)|gorse|whin|Irish gorse|Ulex europaeus|shrub|bush +fusain|1 +(noun)|charcoal|writing implement +fusanus|1 +(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus +fusanus acuminatus|1 +(noun)|quandong|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree +fusarium wilt|1 +(noun)|wilt|wilt disease +fuscoboletinus|1 +(noun)|Fuscoboletinus|genus Fuscoboletinus|fungus genus +fuscoboletinus paluster|1 +(noun)|Fuscoboletinus paluster|bolete +fuscoboletinus serotinus|1 +(noun)|Fuscoboletinus serotinus|bolete +fuscous|1 +(adj)|taupe|chromatic +fuse|6 +(noun)|electrical fuse|electrical device +(noun)|fuze|fusee|fuzee|primer|priming|lighter|light|igniter|ignitor +(verb)|blend|flux|mix|conflate|commingle|immix|coalesce|meld|combine|merge|change integrity +(verb)|liquefy|flux|liquify +(verb)|equip|fit|fit out|outfit +(verb)|melt|run|melt down +fused|1 +(adj)|amalgamate|amalgamated|coalesced|consolidated|united +fusee|4 +(noun)|fusee drive|drive +(noun)|fuzee|flare +(noun)|fuzee|match|lucifer|friction match +(noun)|fuse|fuze|fuzee|primer|priming|lighter|light|igniter|ignitor +fusee drive|1 +(noun)|fusee|drive +fusel oil|1 +(noun)|oil +fuselage|1 +(noun)|body +fusible|1 +(adj)|melted |liquid|liquified +fusible metal|1 +(noun)|alloy|metal +fusiform|1 +(adj)|spindle-shaped|cigar-shaped|pointed +fusil|1 +(noun)|musket +fusilier|1 +(noun)|infantryman|marcher|foot soldier|footslogger +fusillade|2 +(noun)|salvo|volley|burst|fire|firing +(verb)|fire|discharge +fusion|7 +(noun)|merger|unification|union +(noun)|nuclear fusion|nuclear fusion reaction|nuclear reaction +(noun)|coalition|union|unification +(noun)|linguistic process +(noun)|optical fusion|visual perception|beholding|seeing +(noun)|spinal fusion|correction +(noun)|combination|combining|compounding +fusion bomb|1 +(noun)|hydrogen bomb|H-bomb|thermonuclear bomb|nuclear weapon|bomb +fusion cooking|1 +(noun)|cooking|cookery|preparation +fusion reactor|1 +(noun)|thermonuclear reactor|nuclear reactor|reactor +fuss|6 +(noun)|dither|pother|tizzy|flap|agitation +(noun)|trouble|bother|hassle|perturbation|disturbance +(noun)|bicker|bickering|spat|tiff|squabble|pettifoggery|quarrel|wrangle|row|words|run-in|dustup +(noun)|bustle|hustle|flurry|ado|stir|commotion|din|ruction|ruckus|rumpus|tumult +(verb)|niggle|fret|worry +(verb)|mother|overprotect|care|give care +fuss-budget|1 +(noun)|worrier|fusspot|worrywart|spoilsport|killjoy|wet blanket|party pooper +fussiness|2 +(noun)|irritability|crossness|fretfulness|peevishness|petulance|choler|ill humor|ill humour|distemper +(noun)|ornateness|elaborateness +fusspot|1 +(noun)|worrier|fuss-budget|worrywart|spoilsport|killjoy|wet blanket|party pooper +fussy|3 +(adj)|crabbed|crabby|cross|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured +(adj)|busy|fancy +(adj)|finical|finicky|particular|fastidious +fustian|2 +(noun)|bombast|rant|claptrap|blah|grandiosity|magniloquence|grandiloquence|rhetoric +(noun)|fabric|cloth|material|textile +fusty|2 +(adj)|musty|frowsty|malodorous |malodourous +(adj)|standpat|unprogressive|nonprogressive|conservative +futile|2 +(adj)|ineffectual|otiose|unavailing|useless +(adj)|bootless|fruitless|sleeveless|vain|unproductive +futility|1 +(noun)|inutility|uselessness|unusefulness +futon|1 +(noun)|mattress +futtock shroud|1 +(noun)|sheet|tack|mainsheet|weather sheet|shroud +future|8 +(adj)|future |approaching|coming|forthcoming|upcoming|coming|future day|early|in store|prospective|proximo|prox|emerging|rising|incoming|prospective +(adj)|prospective +(adj)|later|ulterior|subsequent +(adj)|next|succeeding|incoming +(adj)|tense +(noun)|hereafter|futurity|time to come|time +(noun)|future tense|tense +(noun)|commodity|trade goods|goods +future day|1 +(adj)|coming|future +future perfect|1 +(noun)|future perfect tense|perfective|perfective tense|perfect|perfect tense +future perfect tense|1 +(noun)|future perfect|perfective|perfective tense|perfect|perfect tense +future progressive|1 +(noun)|future progressive tense|progressive|progressive tense|imperfect|imperfect tense|continuous tense +future progressive tense|1 +(noun)|future progressive|progressive|progressive tense|imperfect|imperfect tense|continuous tense +future tense|1 +(noun)|future|tense +futureless|1 +(adj)|hopeless +futures contract|1 +(noun)|derivative instrument|derivative +futures exchange|1 +(noun)|futures market|forward market|commodity exchange|commodities exchange|commodities market +futures market|1 +(noun)|futures exchange|forward market|commodity exchange|commodities exchange|commodities market +futurism|2 +(noun)|artistic movement|art movement +(noun)|position|view|perspective +futurist|3 +(adj)|futuristic|artistic movement|art movement +(noun)|theologian|theologist|theologizer|theologiser +(noun)|fantast|visionary|illusionist|seer +futuristic|1 +(adj)|futurist|artistic movement|art movement +futuristics|1 +(noun)|futurology|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +futurity|2 +(noun)|future|hereafter|time to come|time +(noun)|timing +futurology|1 +(noun)|futuristics|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +fuze|1 +(noun)|fuse|fusee|fuzee|primer|priming|lighter|light|igniter|ignitor +fuzee|3 +(noun)|fusee|flare +(noun)|fusee|match|lucifer|friction match +(noun)|fuse|fuze|fusee|primer|priming|lighter|light|igniter|ignitor +fuzz|4 +(noun)|hair|tomentum|plant process|enation +(noun)|bull|cop|copper|pig|policeman|police officer|officer +(noun)|blur|representation|mental representation|internal representation +(noun)|beard|face fungus|whiskers +fuzzed|1 +(adj)|fuzzy|hairy |hirsute +fuzziness|1 +(noun)|indistinctness|blurriness|fogginess|opacity|opaqueness +fuzzy|3 +(adj)|fuzzed|hairy |hirsute +(adj)|bleary|blurred|blurry|foggy|hazy|muzzy|indistinct +(adj)|incoherent +fuzzy logic|1 +(noun)|symbolic logic|mathematical logic|formal logic +fws|1 +(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency|federal agency|government agency|bureau|office|authority +fyodor dostoevski|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +fyodor dostoevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +fyodor dostoyevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +fyodor mikhailovich dostoevski|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +fyodor mikhailovich dostoevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +fyodor mikhailovich dostoyevsky|1 +(noun)|Dostoyevsky|Dostoevski|Dostoevsky|Feodor Dostoyevsky|Fyodor Dostoyevsky|Feodor Dostoevski|Fyodor Dostoevski|Feodor Dostoevsky|Fyodor Dostoevsky|Feodor Mikhailovich Dostoyevsky|Fyodor Mikhailovich Dostoyevsky|Feodor Mikhailovich Dostoevski|Fyodor Mikhailovich Dostoevski|Feodor Mikhailovich Dostoevsky|Fyodor Mikhailovich Dostoevsky|writer|author +g|8 +(noun)|gram|gramme|gm|metric weight unit|weight unit +(noun)|guanine|G|purine +(noun)|deoxyguanosine monophosphate|G|nucleotide +(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer +(noun)|gee|g-force|force unit +(noun)|gigabyte|G|GB|computer memory unit +(noun)|gravitational constant|universal gravitational constant|constant of gravitation|G|constant +(noun)|G|letter|letter of the alphabet|alphabetic character +g-force|1 +(noun)|g|gee|force unit +g-jo|1 +(noun)|acupressure|G-Jo|shiatsu|treatment +g-man|1 +(noun)|G-man|FBI agent|government man|government agent +g-string|2 +(noun)|G-string|clothing|article of clothing|vesture|wear +(noun)|breechcloth|breechclout|loincloth|G-string|garment +g. b. shaw|1 +(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer|author|dramatist|playwright +g. e. moore|1 +(noun)|Moore|G. E. Moore|George Edward Moore|philosopher +g. k. chesterton|1 +(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer|author +g. r. kirchhoff|1 +(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist +g. stanley hall|1 +(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist +g clef|1 +(noun)|treble clef|G clef|clef +g suit|1 +(noun)|anti-G suit|G suit|pressure suit +ga|3 +(noun)|tabun|GA|organophosphate nerve agent +(noun)|gallium|Ga|atomic number 31|metallic element|metal +(noun)|Georgia|Empire State of the South|Peach State|GA|American state +gaap|1 +(noun)|generally accepted accounting practices|GAAP|collection|aggregation|accumulation|assemblage +gab|1 +(noun)|chitchat|small talk|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +gaba|1 +(noun)|gamma aminobutyric acid|GABA|amino acid|aminoalkanoic acid|neurotransmitter +gabardine|3 +(noun)|fabric|cloth|material|textile +(noun)|flannel|tweed|white|trousers|pants +(noun)|duster|gaberdine|smock|dust coat|coverall +gabble|2 +(noun)|jabber|jabbering|gibberish|gibber +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|talk|speak|utter|mouth|verbalize|verbalise +gabbro|1 +(noun)|igneous rock +gabby|1 +(adj)|chatty|garrulous|loquacious|talkative|talky|voluble +gaberdine|1 +(noun)|duster|gabardine|smock|dust coat|coverall +gabfest|1 +(noun)|chitchat|small talk|gab|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +gable|2 +(noun)|gable end|gable wall|wall +(noun)|Gable|Clark Gable|William Clark Gable|actor|histrion|player|thespian|role player +gable end|1 +(noun)|gable|gable wall|wall +gable roof|1 +(noun)|saddle roof|saddleback|saddleback roof|roof +gable wall|1 +(noun)|gable|gable end|wall +gabled|1 +(adj)|gabled +gabon|1 +(noun)|Gabon|Gabonese Republic|Gabun|African country|African nation +gabon franc|1 +(noun)|Gabon franc|franc +gabonese|2 +(adj)|Gabonese|African country|African nation +(noun)|Gabonese|African +gabonese republic|1 +(noun)|Gabon|Gabonese Republic|Gabun|African country|African nation +gaboon viper|1 +(noun)|Bitis gabonica|viper +gabor|1 +(noun)|Gabor|Dennis Gabor|physicist +gaboriau|1 +(noun)|Gaboriau|Emile Gaboriau|writer|author +gaborone|1 +(noun)|Gaborone|capital of Botswana|national capital +gabriel|1 +(noun)|Gabriel|archangel +gabriel daniel fahrenheit|1 +(noun)|Fahrenheit|Gabriel Daniel Fahrenheit|physicist +gabriel lippmann|1 +(noun)|Lippmann|Gabriel Lippmann|physicist +gabriel tellez|1 +(noun)|Tirso de Molina|Gabriel Tellez|dramatist|playwright +gabun|1 +(noun)|Gabon|Gabonese Republic|Gabun|African country|African nation +gad|3 +(noun)|generalized anxiety disorder|GAD|anxiety reaction|anxiety disorder +(noun)|spur|prod|goad +(verb)|gallivant|jazz around|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond +gadaba|2 +(noun)|Gadaba|Dravidian +(noun)|Gadaba|Central Dravidian +gadabout|1 +(noun)|seeker|searcher|quester +gaddafi|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +gaddi|1 +(noun)|cushion +gadfly|2 +(noun)|pest|blighter|cuss|pesterer|tormentor|tormenter|persecutor +(noun)|fly +gadget|1 +(noun)|appliance|contraption|contrivance|convenience|gizmo|gismo|widget|device +gadgeteer|1 +(noun)|enthusiast|partisan|partizan +gadgetry|1 +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|widget +gadidae|1 +(noun)|Gadidae|family Gadidae|fish family +gadiformes|1 +(noun)|Gadiformes|order Gadiformes|animal order +gadoid|1 +(noun)|gadoid fish|soft-finned fish|malacopterygian +gadoid fish|1 +(noun)|gadoid|soft-finned fish|malacopterygian +gadolinite|1 +(noun)|ytterbite|mineral +gadolinium|1 +(noun)|Gd|atomic number 64|metallic element|metal +gadsden|1 +(noun)|Gadsden|town +gadus|1 +(noun)|Gadus|genus Gadus|fish genus +gadus macrocephalus|1 +(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod|codfish +gadus merlangus|1 +(noun)|whiting|Merlangus merlangus|Gadus merlangus|gadoid|gadoid fish +gadus morhua|1 +(noun)|Atlantic cod|Gadus morhua|cod|codfish +gaea|1 +(noun)|Gaea|Gaia|Ge|Greek deity +gael|1 +(noun)|Gael|Celt|Kelt +gaelic|2 +(adj)|Celtic|Gaelic|European +(noun)|Gaelic|Goidelic|Erse|Celtic|Celtic language +gaelic-speaking|1 +(adj)|Gaelic-speaking|communicative |communicatory +gaetan vestris|1 +(noun)|Vestris|Gaetan Vestris|dancer|professional dancer +gaetano donizetti|1 +(noun)|Donizetti|Gaetano Donizetti|composer +gaff|2 +(noun)|spar +(noun)|hook +gaff-headed sail|1 +(noun)|gaffsail|fore-and-aft sail +gaff topsail|1 +(noun)|fore-and-aft topsail|fore-and-aft sail +gaffe|1 +(noun)|faux pas|solecism|slip|gaucherie|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +gaffer|3 +(noun)|old-timer|oldtimer|old geezer|antique|old man|greybeard|graybeard|Methuselah +(noun)|electrician|lineman|linesman +(noun)|foreman|chief|honcho|boss|supervisor +gaffsail|1 +(noun)|gaff-headed sail|fore-and-aft sail +gafsa|1 +(noun)|Gafsa|city|metropolis|urban center +gag|9 +(noun)|joke|laugh|jest|jape|wit|humor|humour|witticism|wittiness +(noun)|muzzle|restraint|constraint +(verb)|muzzle|hush|quieten|silence|still|shut up|hush up +(verb)|choke|fret|compress|constrict|squeeze|compact|contract|press +(verb)|muzzle|tie|bind +(verb)|quip|joke|jest +(verb)|choke|strangle|suffocate|suffer|hurt +(verb)|choke|sicken +(verb)|heave|retch +gag law|2 +(noun)|closure|cloture|gag rule|order|rules of order|parliamentary law|parliamentary procedure +(noun)|law +gag line|1 +(noun)|punch line|laugh line|tag line|line +gag order|1 +(noun)|court order +gag reflex|1 +(noun)|pharyngeal reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +gag rule|1 +(noun)|closure|cloture|gag law|order|rules of order|parliamentary law|parliamentary procedure +gaga|2 +(adj)|doddering|doddery|senile|old +(adj)|crazy|dotty|enamored|infatuated|in love|smitten|soft on|taken with|loving +gagarin|1 +(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut|spaceman|cosmonaut +gage|3 +(noun)|pot|grass|green goddess|dope|weed|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(noun)|gauge|measuring instrument|measuring system|measuring device +(verb)|bet on|back|stake|game|punt|bet|wager|play +gaggle|2 +(noun)|flock +(verb)|cackle +gagman|2 +(noun)|standup comedian|comedian|comic +(noun)|gagster|gagwriter|writer|author +gagster|1 +(noun)|gagman|gagwriter|writer|author +gagwriter|1 +(noun)|gagman|gagster|writer|author +gai choi|1 +(noun)|chinese mustard|indian mustard|leaf mustard|Brassica juncea|mustard +gaia|1 +(noun)|Gaea|Gaia|Ge|Greek deity +gaiety|2 +(noun)|merriment|happiness +(noun)|playfulness|levity +gaillardia|1 +(noun)|wildflower|wild flower +gaillardia pulchella|1 +(noun)|blanket flower|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia +gain|13 +(noun)|addition|increase|indefinite quantity +(noun)|profit|advantage|vantage +(noun)|amplification|increase|increment +(noun)|sum|sum of money|amount|amount of money +(verb)|derive|obtain +(verb)|acquire|win|get|acquire +(verb)|profit|benefit|get|acquire +(verb)|reach|make|attain|hit|arrive at +(verb)|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|advance|wax|mount|climb|rise +(verb)|increase +(verb)|take in|clear|make|earn|realize|realise|pull in|bring in|get|acquire +(verb)|put on|change state|turn +gain ground|1 +(verb)|gain|advance|win|pull ahead|make headway|get ahead +gain vigor|1 +(verb)|perk up|perk|percolate|pick up|recuperate|recover|convalesce +gainer|3 +(noun)|weight gainer|person|individual|someone|somebody|mortal|human|soul +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|full gainer|dive|diving +gainesville|1 +(noun)|Gainesville|town +gainful|1 +(adj)|paid|paying|profitable +gaining control|1 +(noun)|capture|seizure|acquiring|getting +gainlessly|1 +(adv)|profitlessly|unprofitably +gainly|1 +(adj)|graceful +gainsay|1 +(verb)|challenge|dispute|contest|contend|repugn +gainsborough|1 +(noun)|Gainsborough|Thomas Gainsborough|painter +gaiseric|1 +(noun)|Genseric|Gaiseric|king|male monarch +gait|3 +(noun)|pace|rate +(noun)|locomotion|travel +(noun)|walk|walking +gaiter|3 +(noun)|spat|spats|legging|legin|leg covering +(noun)|shoe +(noun)|legging|legin|leg covering +gaius|1 +(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor|Emperor of Rome +gaius caesar|1 +(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor|Emperor of Rome +gaius cassius longinus|1 +(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman|solon|national leader +gaius flaminius|1 +(noun)|Flaminius|Gaius Flaminius|general|full general|statesman|solon|national leader +gaius julius caesar|1 +(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general|full general|statesman|solon|national leader +gaius julius caesar octavianus|1 +(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman|solon|national leader|Roman Emperor|Emperor of Rome +gaius octavianus|1 +(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman|solon|national leader|Roman Emperor|Emperor of Rome +gaius petronius|1 +(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer|author +gaius plinius caecilius secundus|1 +(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer|author +gaius plinius secundus|1 +(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer|author +gaius valerius catullus|1 +(noun)|Catullus|Gaius Valerius Catullus|poet +gal|3 +(noun)|gallon|United States liquid unit +(noun)|acceleration unit +(noun)|girl|miss|missy|young lady|young woman|fille +gala|2 +(adj)|gay|festal|festive|merry|joyous +(noun)|gala affair|jamboree|blowout|celebration|festivity +gala affair|1 +(noun)|gala|jamboree|blowout|celebration|festivity +galactagogue|1 +(noun)|agent +galactic|2 +(adj)|collection|aggregation|accumulation|assemblage +(adj)|astronomic|astronomical|large +galactocele|1 +(noun)|cyst +galactose|1 +(noun)|brain sugar|sucrose|saccharose +galactosemia|1 +(noun)|inborn error of metabolism +galactosis|1 +(noun)|secretion|secernment +galago|1 +(noun)|bushbaby|bush baby|lemur +galahad|1 +(noun)|Galahad|Sir Galahad|fictional character|fictitious character|character +galan|1 +(noun)|Galan|mountain peak +galangal|2 +(noun)|Alpinia galanga|ginger +(noun)|galingale|Cyperus longus|sedge +galantine|1 +(noun)|dish +galanty show|1 +(noun)|shadow show|shadow play|show +galapagos|1 +(noun)|Galapagos Islands|Galapagos|island +galapagos islands|1 +(noun)|Galapagos Islands|Galapagos|island +galatea|1 +(noun)|Galatea|mythical being +galatia|1 +(noun)|Galatia|geographical area|geographic area|geographical region|geographic region +galatian|1 +(noun)|Galatian|Gaul +galatians|2 +(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|book +(noun)|Galatian|Gaul +galax|1 +(noun)|galaxy|wandflower|beetleweed|coltsfoot|Galax urceolata|herb|herbaceous plant +galax urceolata|1 +(noun)|galax|galaxy|wandflower|beetleweed|coltsfoot|Galax urceolata|herb|herbaceous plant +galaxy|3 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|galax|wandflower|beetleweed|coltsfoot|Galax urceolata|herb|herbaceous plant +(noun)|extragalactic nebula|collection|aggregation|accumulation|assemblage +galbanum|1 +(noun)|gum albanum|gum +galbraith|1 +(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist|economic expert|diplomat|diplomatist +galbulidae|1 +(noun)|Galbulidae|family Galbulidae|bird family +galbulus|1 +(noun)|cone|strobilus|strobile +gale|1 +(noun)|wind|air current|current of air +galea|1 +(noun)|plant organ +galega|1 +(noun)|Galega|genus Galega|rosid dicot genus +galega officinalis|1 +(noun)|goat's rue|goat rue|Galega officinalis|herb|herbaceous plant +galen|1 +(noun)|Galen|anatomist +galena|1 +(noun)|mineral +galeocerdo|1 +(noun)|Galeocerdo|genus Galeocerdo|fish genus +galeocerdo cuvieri|1 +(noun)|tiger shark|Galeocerdo cuvieri|requiem shark +galeopsis|1 +(noun)|Galeopsis|genus Galeopsis|asterid dicot genus +galeopsis tetrahit|1 +(noun)|hemp nettle|dead nettle|Galeopsis tetrahit|herb|herbaceous plant +galeorhinus|1 +(noun)|Galeorhinus|genus Galeorhinus|fish genus +galeorhinus zyopterus|1 +(noun)|soupfin shark|soupfin|soup-fin|Galeorhinus zyopterus|requiem shark +galeras|1 +(noun)|Galeras|Pasto|volcano +galere|1 +(noun)|rogue's gallery|clique|coterie|ingroup|inner circle|pack|camp +galicia|1 +(noun)|Galicia|geographical area|geographic area|geographical region|geographic region +galician|1 +(noun)|Galician|Portuguese +galictis vittatus|1 +(noun)|grison|Grison vittatus|Galictis vittatus|musteline mammal|mustelid|musteline +galiella rufa|1 +(noun)|Galiella rufa|discomycete|cup fungus +galilaean|2 +(adj)|Galilean|Galilaean|inhabitant|dweller|denizen|indweller|geographical area|geographic area|geographical region|geographic region +(noun)|Galilean|Galilaean|inhabitant|dweller|denizen|indweller +galilean|4 +(adj)|Galilean|astronomer|uranologist|stargazer +(adj)|Galilean|Galilaean|inhabitant|dweller|denizen|indweller|geographical area|geographic area|geographical region|geographic region +(noun)|Galilean|Galilaean|inhabitant|dweller|denizen|indweller +(noun)|Galilean satellite|Galilean|satellite +galilean satellite|1 +(noun)|Galilean satellite|Galilean|satellite +galilean telescope|1 +(noun)|Galilean telescope|refracting telescope +galilee|1 +(noun)|Galilee|geographical area|geographic area|geographical region|geographic region +galileo|1 +(noun)|Galileo|Galileo Galilei|astronomer|uranologist|stargazer +galileo galilei|1 +(noun)|Galileo|Galileo Galilei|astronomer|uranologist|stargazer +galina sergeevna ulanova|1 +(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer|professional dancer +galina ulanova|1 +(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer|professional dancer +galingale|1 +(noun)|galangal|Cyperus longus|sedge +galium|1 +(noun)|Galium|genus Galium|asterid dicot genus +galium aparine|1 +(noun)|cleavers|clivers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw +galium boreale|1 +(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw +galium lanceolatum|1 +(noun)|wild licorice|Galium lanceolatum|bedstraw +galium mollugo|1 +(noun)|wild madder|white madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw +galium odoratum|1 +(noun)|sweet woodruff|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw +galium verum|1 +(noun)|yellow bedstraw|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw +gall|8 +(noun)|saddle sore|animal disease +(noun)|sore +(noun)|plant tissue +(noun)|resentment|bitterness|rancor|rancour|hostility|enmity|ill will +(noun)|bile|digestive juice|digestive fluid +(noun)|crust|impertinence|impudence|insolence|cheekiness|freshness|discourtesy|rudeness +(verb)|chafe|fret|irritate +(verb)|irk|anger +gall-berry|2 +(noun)|inkberry|gallberry|evergreen winterberry|Ilex glabra|holly +(noun)| +gall gnat|1 +(noun)|gall midge|gallfly|dipterous insect|two-winged insects|dipteran|dipteron +gall midge|1 +(noun)|gallfly|gall gnat|dipterous insect|two-winged insects|dipteran|dipteron +gall of the earth|1 +(noun)|lion's foot|Nabalus serpentarius|Prenanthes serpentaria|herb|herbaceous plant +gall wasp|1 +(noun)|gallfly|cynipid wasp|cynipid gall wasp|wasp +gallamine|1 +(noun)|Flaxedil|neuromuscular blocking agent|muscle relaxant +gallant|6 +(adj)|brave |courageous|fearless +(adj)|dashing|spirited +(adj)|lofty|majestic|proud|impressive +(adj)|chivalrous|knightly|courteous +(noun)|dandy|dude|fop|sheik|beau|swell|fashion plate|clotheshorse|man|adult male +(noun)|squire|attendant|attender|tender +gallant fox|1 +(noun)|Gallant Fox|thoroughbred +gallantly|1 +(adv)|chivalrously +gallantry|3 +(noun)|heroism|valor|valour|valorousness|valiance|valiancy|courage|courageousness|bravery +(noun)|chivalry|politesse|courtesy|good manners +(noun)|courtesy +gallaudet|1 +(noun)|Gallaudet|Thomas Hopkins Gallaudet|educator|pedagogue +gallberry|1 +(noun)|inkberry|gall-berry|evergreen winterberry|Ilex glabra|holly +gallbladder|1 +(noun)|bladder|vesica +galled|1 +(adj)|chafed|painful +galleon|1 +(noun)|sailing vessel|sailing ship +galleria|1 +(noun)|Galleria|genus Galleria|arthropod genus +galleria mellonella|1 +(noun)|bee moth|wax moth|Galleria mellonella|pyralid|pyralid moth +gallery|7 +(noun)|audience +(noun)|veranda|verandah|porch +(noun)|art gallery|picture gallery|room +(noun)|room +(noun)|corridor +(noun)|balcony +(noun)|drift|heading|passageway +galley|4 +(noun)|vessel|watercraft +(noun)|vessel|watercraft +(noun)|kitchen +(noun)|ship's galley|caboose|cookhouse|kitchen +galley proof|1 +(noun)|proof|test copy|trial impression +galley slave|2 +(noun)|slave +(noun)|drudge|peon|navvy|laborer|manual laborer|labourer|jack +gallfly|3 +(noun)|gall wasp|cynipid wasp|cynipid gall wasp|wasp +(noun)|gall midge|gall gnat|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|insect +gallia|1 +(noun)|Gaul|Gallia|geographical area|geographic area|geographical region|geographic region +galliano|1 +(noun)|Galliano|liqueur|cordial +gallic|2 +(adj)|Gallic|geographical area|geographic area|geographical region|geographic region +(adj)|French|Gallic|European country|European nation +gallic acid|1 +(noun)|acid +gallicism|1 +(noun)|Gallicism|loanword|loan +galliformes|1 +(noun)|Galliformes|order Galliformes|animal order +gallina|1 +(noun)|jungle fowl|gallinaceous bird|gallinacean +gallinacean|1 +(noun)|gallinaceous bird|bird +gallinaceous|2 +(adj)|bird +(adj)|gallinaceous bird|gallinacean +gallinaceous bird|1 +(noun)|gallinacean|bird +gallinago|1 +(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus +gallinago gallinago|1 +(noun)|whole snipe|common snipe|Gallinago gallinago|snipe +gallinago gallinago delicata|1 +(noun)|Wilson's snipe|Gallinago gallinago delicata|snipe +gallinago media|1 +(noun)|great snipe|woodcock snipe|Gallinago media|snipe +galling|1 +(adj)|annoying|bothersome|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +gallinula|1 +(noun)|Gallinula|genus Gallinula|bird genus +gallinula chloropus|1 +(noun)|moorhen|Gallinula chloropus|gallinule|marsh hen|water hen|swamphen +gallinula chloropus cachinnans|1 +(noun)|Florida gallinule|Gallinula chloropus cachinnans|gallinule|marsh hen|water hen|swamphen +gallinule|1 +(noun)|marsh hen|water hen|swamphen|aquatic bird +gallirallus|1 +(noun)|Gallirallus|genus Gallirallus|bird genus +gallium|1 +(noun)|Ga|atomic number 31|metallic element|metal +gallivant|1 +(verb)|gad|jazz around|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond +gallon|2 +(noun)|gal|United States liquid unit +(noun)|Imperial gallon|congius|British capacity unit|Imperial capacity unit +gallop|4 +(noun)|gait +(verb)|ride horseback +(verb)|pace +(verb)|extend|ride|sit +gallop rhythm|1 +(noun)|cantering rhythm|cardiac arrhythmia|arrhythmia +galloping|1 +(adj)|pace +gallous|1 +(noun)|gallows|gallows tree|gallows-tree|gibbet|instrument of execution +galloway|2 +(noun)|Galloway|district|territory|territorial dominion|dominion +(noun)|Galloway|beef|beef cattle +gallows|1 +(noun)|gallows tree|gallows-tree|gibbet|gallous|instrument of execution +gallows-tree|2 +(noun)|gallows|gallows tree|gibbet|gallous|instrument of execution +(noun)| +gallows bird|1 +(noun)|villain|scoundrel +gallows tree|2 +(noun)|gallows|gallows-tree|gibbet|gallous|instrument of execution +(noun)| +gallstone|1 +(noun)|bilestone|calculus|concretion +gallup|1 +(noun)|Gallup|town +gallus|2 +(noun)|brace|suspender|clothing|article of clothing|vesture|wear +(noun)|Gallus|genus Gallus|bird genus +gallus gallus|2 +(noun)|chicken|Gallus gallus|domestic fowl|fowl|poultry +(noun)|red jungle fowl|Gallus gallus|jungle fowl|gallina +galois|1 +(noun)|Galois|Evariste Galois|mathematician +galois theory|1 +(noun)|Galois theory|group theory +galoot|1 +(noun)|man|adult male +galore|2 +(adj)|many +(adj)|abounding|abundant +galosh|1 +(noun)|arctic|golosh|rubber|gumshoe|overshoe +galsworthy|1 +(noun)|Galsworthy|John Galsworthy|writer|author +galton|1 +(noun)|Galton|Francis Galton|Sir Francis Galton|scientist|man of science +galtonia candicans|1 +(noun)|summer hyacinth|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth +galumph|1 +(verb)|jump|leap|bound|spring +galvani|1 +(noun)|Galvani|Luigi Galvani|physiologist +galvanic|2 +(adj)|voltaic|electricity +(adj)|electric|galvanizing|galvanising|exciting +galvanic battery|1 +(noun)|voltaic battery|battery|electric battery +galvanic cell|1 +(noun)|voltaic cell|primary cell|cell|electric cell +galvanic pile|1 +(noun)|voltaic pile|pile|battery|electric battery +galvanic skin response|1 +(noun)|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +galvanisation|3 +(noun)|galvanization|stimulation +(noun)|galvanization|stimulation +(noun)|galvanization|application|coating|covering +galvanise|3 +(verb)|startle|galvanize|shock|stun|floor|ball over|blow out of the water|take aback +(verb)|galvanize|coat|surface +(verb)|galvanize|shock +galvaniser|2 +(noun)|galvanizer|skilled worker|trained worker +(noun)|galvanizer|inspirer|leader +galvanising|1 +(adj)|electric|galvanic|galvanizing|exciting +galvanism|2 +(noun)|electricity +(noun)|electric healing|electrical healing|therapy +galvanization|3 +(noun)|galvanisation|stimulation +(noun)|galvanisation|stimulation +(noun)|galvanisation|application|coating|covering +galvanize|3 +(verb)|startle|galvanise|shock|stun|floor|ball over|blow out of the water|take aback +(verb)|galvanise|coat|surface +(verb)|galvanise|shock +galvanized iron|1 +(noun)|iron|Fe|atomic number 26 +galvanizer|2 +(noun)|galvaniser|skilled worker|trained worker +(noun)|galvaniser|inspirer|leader +galvanizing|1 +(adj)|electric|galvanic|galvanising|exciting +galvanometer|1 +(noun)|meter +galveston|1 +(noun)|Galveston|town +galveston bay|1 +(noun)|Galveston Bay|bay +galveston island|1 +(noun)|Galveston Island|island +galway|1 +(noun)|Galway|city|metropolis|urban center|port|Ireland|Eire|Irish Free State +galway bay|1 +(noun)|Galway Bay|bay +galwegian|1 +(adj)|Galwegian|district|territory|territorial dominion|dominion +gamal abdel nasser|1 +(noun)|Nasser|Gamal Abdel Nasser|statesman|solon|national leader +gambelia|1 +(noun)|Gambelia|genus Gambelia|reptile genus +gambia|1 +(noun)|Gambia|The Gambia|Republic of The Gambia|African country|African nation +gambian|2 +(adj)|Gambian|African country|African nation +(noun)|Gambian|African +gambian monetary unit|1 +(noun)|Gambian monetary unit|monetary unit +gambier islands|1 +(noun)|Gambier Islands|archipelago +gambit|3 +(noun)|ploy|remark|comment +(noun)|ploy|stratagem|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|chess move +gamble|4 +(noun)|speculation|venture +(noun)|risk|peril|danger +(verb)|chance|risk|hazard|take chances|adventure|run a risk|take a chance|try|seek|attempt|essay|assay +(verb)|play +gambler|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|risk taker|adventurer|venturer +gambling|2 +(adj)|dissipated|betting|card-playing|sporting|indulgent +(noun)|gaming|play|diversion|recreation|vice +gambling casino|1 +(noun)|casino|gambling house|gambling den|gambling hell|gaming house +gambling contract|1 +(noun)|contract +gambling den|1 +(noun)|gambling house|gambling hell|gaming house|building|edifice|place of business|business establishment +gambling game|1 +(noun)|game of chance|gambling|gaming|play|game +gambling hell|1 +(noun)|gambling house|gambling den|gaming house|building|edifice|place of business|business establishment +gambling house|1 +(noun)|gambling den|gambling hell|gaming house|building|edifice|place of business|business establishment +gambling system|1 +(noun)|system|system of rules +gamboge|2 +(noun)|gum resin +(noun)|lemon|lemon yellow|maize|yellow|yellowness +gamboge tree|1 +(noun)|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree|flowering tree +gambol|2 +(noun)|play|frolic|romp|caper|diversion|recreation +(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|frisk|romp|run around|lark about|play +gambrel|1 +(noun)|gambrel roof|gable roof|saddle roof|saddleback|saddleback roof +gambrel roof|1 +(noun)|gambrel|gable roof|saddle roof|saddleback|saddleback roof +gambusia|1 +(noun)|Gambusia|genus Gambusia|fish genus +gambusia affinis|1 +(noun)|mosquitofish|Gambusia affinis|topminnow|poeciliid fish|poeciliid|live-bearer +game|13 +(adj)|crippled|halt|halting|lame|unfit +(adj)|gamy|gamey|gritty|mettlesome|spirited|spunky|brave |courageous|fearless +(noun)|contest|competition +(noun)|activity +(noun)|diversion|recreation +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|game equipment +(noun)|biz|occupation|business|job|line of work|line +(noun)|score +(noun)|meat +(noun)|plot|secret plan|scheme|strategy +(noun)|play|frolic|romp|gambol|caper +(verb)|bet on|back|gage|stake|punt|bet|wager|play +game bird|1 +(noun)|game|gallinaceous bird|gallinacean +game equipment|1 +(noun)|equipment +game fish|1 +(noun)|sport fish|fish +game fowl|1 +(noun)|domestic fowl|fowl|poultry +game law|1 +(noun)|regulation|ordinance +game license|1 +(noun)|hunting license|hunting licence|hunting permit|license|licence|permit +game misconduct|1 +(noun)|penalty +game of chance|1 +(noun)|gambling game|gambling|gaming|play|game +game plan|2 +(noun)|scheme|strategy +(noun)|scheme|strategy +game room|1 +(noun)|rumpus room|playroom|recreation room|rec room +game show|1 +(noun)|giveaway|broadcast|program|programme +game theory|1 +(noun)|theory of games|scientific theory +game warden|1 +(noun)|gamekeeper|custodian|keeper|steward +gamebag|1 +(noun)|bag +gameboard|1 +(noun)|board|surface +gamecock|2 +(noun)|fighting cock|cock +(noun)|hell-kite|hell-rooster|combatant|battler|belligerent|fighter|scrapper +gamekeeper|1 +(noun)|game warden|custodian|keeper|steward +gamelan|1 +(noun)|ensemble +gameness|1 +(noun)|lameness|limping|gimp|gimpiness|claudication|disability of walking +games-master|1 +(noun)|games-mistress|schoolteacher|school teacher +games-mistress|1 +(noun)|games-master|schoolteacher|school teacher +gamesmanship|1 +(noun)|unfairness|inequity +gametangium|1 +(noun)|reproductive structure +gamete|1 +(noun)|reproductive cell|germ cell|sex cell +gametocyte|1 +(noun)|cell +gametoecium|1 +(noun)|reproductive structure +gametogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +gametophore|1 +(noun)|reproductive structure +gametophyte|1 +(noun)|plant|flora|plant life +gamey|3 +(adj)|blue|gamy|juicy|naughty|racy|risque|spicy|sexy +(adj)|gamy|high|malodorous |malodourous +(adj)|game|gamy|gritty|mettlesome|spirited|spunky|brave |courageous|fearless +gamin|1 +(noun)|street arab|throwaway|street urchin|guttersnipe +gaminess|1 +(noun)|raciness|ribaldry|spiciness|indelicacy +gaming|1 +(noun)|gambling|play|diversion|recreation|vice +gaming card|1 +(noun)|playing card +gaming house|1 +(noun)|gambling house|gambling den|gambling hell|building|edifice|place of business|business establishment +gaming table|1 +(noun)|table +gamma|3 +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|field strength unit +(noun)|da Gamma|Vasco da Gamma|Gamma|navigator +gamma-interferon|1 +(noun)|interferon +gamma acid|1 +(noun)|acid +gamma aminobutyric acid|1 +(noun)|GABA|amino acid|aminoalkanoic acid|neurotransmitter +gamma globulin|1 +(noun)|human gamma globulin|plasma protein|globulin +gamma hydroxybutyrate|1 +(noun)|GHB|club drug +gamma iron|1 +(noun)|iron|Fe|atomic number 26 +gamma radiation|1 +(noun)|gamma ray|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +gamma ray|1 +(noun)|gamma radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +gammon|2 +(noun)|ham|jambon|cut of pork +(noun)|bacon +gammopathy|1 +(noun)|pathology +gammy|1 +(adj)|unfit +gamopetalous|1 +(adj)|sympetalous|petalous |petaled|petalled +gamow|1 +(noun)|Gamow|George Gamow|physicist +gamp|1 +(noun)|brolly|umbrella +gamut|2 +(noun)|scope|range|reach|orbit|compass|ambit +(noun)|scale|musical scale +gamy|3 +(adj)|blue|gamey|juicy|naughty|racy|risque|spicy|sexy +(adj)|gamey|high|malodorous |malodourous +(adj)|game|gamey|gritty|mettlesome|spirited|spunky|brave |courageous|fearless +gan jiang|1 +(noun)|Gan Jiang|Kan River|river +ganapati|1 +(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity +gand|1 +(noun)|Gent|Gand|Ghent|city|metropolis|urban center|port +gand flower|1 +(noun)|common milkwort|Polygala vulgaris|milkwort +gander|1 +(noun)|goose +gandhi|2 +(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman|solon|national leader +(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader|spiritual leader +gandhian|1 +(adj)|Gandhian|nationalist leader|spiritual leader +gandy dancer|1 +(noun)|laborer|manual laborer|labourer|jack +ganef|1 +(noun)|gonif|goniff|ganof|wrongdoer|offender +ganesa|1 +(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity +ganesh|1 +(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity +ganesha|1 +(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity +gang|5 +(noun)|pack|ring|mob|association +(noun)|crowd|crew|bunch|gathering|assemblage +(noun)|crew|work party|unit|social unit +(noun)|tool +(verb)|gang up|group|aggroup +gang-rape|1 +(verb)|rape|ravish|violate|assault|dishonor|dishonour|outrage +gang fight|1 +(noun)|rumble|fight|fighting|combat|scrap +gang up|1 +(verb)|gang|group|aggroup +gangboard|1 +(noun)|gangplank|gangway|footbridge|overcrossing|pedestrian bridge +gangdom|1 +(noun)|organized crime|gangland|social group +ganger|1 +(noun)|foreman|chief|gaffer|honcho|boss +ganges|1 +(noun)|Ganges|Ganges River|river +ganges river|1 +(noun)|Ganges|Ganges River|river +gangland|1 +(noun)|organized crime|gangdom|social group +gangling|2 +(adj)|gangly|lanky|rangy|tall +(adj)|gangly|lanky|thin |lean +ganglion|1 +(noun)|neural structure +gangly|2 +(adj)|gangling|lanky|rangy|tall +(adj)|gangling|lanky|thin |lean +gangplank|1 +(noun)|gangboard|gangway|footbridge|overcrossing|pedestrian bridge +gangrene|3 +(noun)|sphacelus|slough|pathology +(noun)|necrosis|mortification|sphacelus|death +(verb)|necrose|mortify|sphacelate|waste|rot +gangrenous|1 +(adj)|mortified|unhealthy +gangrenous emphysema|1 +(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gas phlegmon|progressive emphysematous necrosis|gangrene|sphacelus|slough +gangsaw|1 +(noun)|power saw|saw|sawing machine +gangster|1 +(noun)|mobster|criminal|felon|crook|outlaw|malefactor +gangster's moll|1 +(noun)|moll|gun moll|criminal|felon|crook|outlaw|malefactor +gangway|3 +(noun)|passageway +(noun)|gangplank|gangboard|footbridge|overcrossing|pedestrian bridge +(noun)|aisle|passageway +ganja|2 +(noun)|marijuana|marihuana|Cannabis sativa|cannabis|hemp +(noun)|cannabis|marijuana|marihuana|soft drug|controlled substance +gannet|1 +(noun)|pelecaniform seabird +ganof|1 +(noun)|gonif|goniff|ganef|wrongdoer|offender +ganoid|1 +(noun)|ganoid fish|teleost fish|teleost|teleostan +ganoid fish|1 +(noun)|ganoid|teleost fish|teleost|teleostan +ganoidei|1 +(noun)|Ganoidei|order Ganoidei|animal order +ganoin|1 +(noun)|ganoine|secretion +ganoine|1 +(noun)|ganoin|secretion +gansu|1 +(noun)|Gansu|Kansu|Gansu province|state|province +gansu province|1 +(noun)|Gansu|Kansu|Gansu province|state|province +gantanol|1 +(noun)|sulfamethoxazole|Gantanol|sulfa drug|sulfa|sulpha|sulfonamide +gantlet|5 +(noun)|gauntlet|challenge +(noun)|gauntlet|metal glove|glove|gloves +(noun)|gauntlet|glove|gloves +(noun)|railroad track|railroad|railway +(noun)|gauntlet|corporal punishment +gantrisin|1 +(noun)|sulfisoxazole|Gantrisin|sulfa drug|sulfa|sulpha|sulfonamide +gantry|1 +(noun)|gauntry|framework|frame|framing +ganymede|1 +(noun)|Ganymede|Galilean satellite|Galilean +gao|1 +(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency|federal agency|government agency|bureau|office|authority +gaol|2 +(noun)|jail|jailhouse|clink|slammer|correctional institution +(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|put away|remand|confine|detain +gaolbird|1 +(noun)|convict|con|inmate|jailbird|prisoner|captive +gaolbreak|1 +(noun)|break|breakout|jailbreak|prisonbreak|prison-breaking|escape|flight +gaoler|1 +(noun)|prison guard|jailer|jailor|screw|turnkey|lawman|law officer|peace officer|keeper +gap|6 +(noun)|spread|disparity +(noun)|opening|space +(noun)|crack|opening +(noun)|col|pass|mountain pass|notch +(noun)|break|interruption|disruption|delay|holdup +(verb)|breach|open|open up +gap-toothed|1 +(adj)|toothed +gape|4 +(noun)|facial expression|facial gesture +(noun)|stare +(verb)|goggle|gawp|gawk|look +(verb)|yawn|yaw|be +gaping|1 +(adj)|agape|open |opened +gapped scale|1 +(noun)|scale|musical scale +gar|2 +(noun)|garfish|garpike|billfish|Lepisosteus osseus|ganoid|ganoid fish +(noun)|needlefish|billfish|teleost fish|teleost|teleostan +garage|3 +(noun)|outbuilding +(noun)|service department|repair shop|fix-it shop +(verb)|store +garage sale|1 +(noun)|yard sale|sale|cut-rate sale|sales event +garageman's lien|1 +(noun)|mechanic's lien +garambulla|2 +(noun)|garambulla cactus|Myrtillocactus geometrizans|cactus +(noun)|edible fruit +garambulla cactus|1 +(noun)|garambulla|Myrtillocactus geometrizans|cactus +garamycin|1 +(noun)|gentamicin|Garamycin|antibiotic|antibiotic drug +garand|1 +(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm|rifle +garand rifle|1 +(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm|rifle +garb|2 +(noun)|attire|dress|clothing|article of clothing|vesture|wear +(verb)|dress|clothe|enclothe|raiment|tog|garment|habilitate|fit out|apparel|change state|turn +garbage|3 +(noun)|refuse|food waste|scraps|waste|waste material|waste matter|waste product +(noun)|drivel|message|content|subject matter|substance +(noun)|receptacle +garbage can|1 +(noun)|ashcan|trash can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +garbage carter|1 +(noun)|carter|garbage hauler|hauler|haulier +garbage collection|1 +(noun)|garbage pickup|trash collection|trash pickup|pickup +garbage collector|1 +(noun)|garbage man|refuse collector|dustman|employee +garbage disposal|1 +(noun)|disposal|electric pig|kitchen appliance +garbage down|1 +(verb)|gobble up|shovel in|bolt down|eat +garbage dump|1 +(noun)|dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite|site|land site +garbage hauler|1 +(noun)|carter|garbage carter|hauler|haulier +garbage heap|1 +(noun)|junk heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +garbage man|1 +(noun)|garbage collector|refuse collector|dustman|employee +garbage pickup|1 +(noun)|garbage collection|trash collection|trash pickup|pickup +garbage truck|1 +(noun)|dustcart|truck|motortruck +garbanzo|2 +(noun)|chickpea|legume +(noun)|chickpea|legume +garbed|1 +(adj)|appareled|attired|dressed|garmented|habilimented|robed|clothed |clad +garble|1 +(verb)|falsify|distort|warp|misrepresent|belie +garbled|1 +(adj)|confused|disconnected|disjointed|disordered|illogical|scattered|unconnected|incoherent +garbo|1 +(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress +garboard|1 +(noun)|garboard plank|garboard strake|wale|strake +garboard plank|1 +(noun)|garboard|garboard strake|wale|strake +garboard strake|1 +(noun)|garboard|garboard plank|wale|strake +garboil|1 +(noun)|tumult|tumultuousness|uproar|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +garbology|1 +(noun)|social anthropology|cultural anthropology +garcia lorca|1 +(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet|dramatist|playwright +garcinia|1 +(noun)|Garcinia|genus Garcinia|dilleniid dicot genus +garcinia cambogia|1 +(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree|flowering tree +garcinia gummi-gutta|1 +(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree|flowering tree +garcinia hanburyi|1 +(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree|flowering tree +garcinia mangostana|1 +(noun)|mangosteen|mangosteen tree|Garcinia mangostana|fruit tree +gardant|1 +(adj)|guardant|full-face|forward +garden|4 +(noun)|plot|plot of ground|patch +(noun)|vegetation|flora +(noun)|yard|grounds|curtilage +(verb)|tend +garden angelica|1 +(noun)|archangel|Angelica Archangelica|angelica|angelique +garden balm|1 +(noun)|lemon balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb|herbaceous plant +garden cart|1 +(noun)|barrow|lawn cart|wheelbarrow|handcart|pushcart|cart|go-cart +garden centipede|1 +(noun)|garden symphilid|symphilid|Scutigerella immaculata|arthropod +garden chair|1 +(noun)|lawn chair|chair +garden cress|1 +(noun)|cress +garden current|1 +(noun)|red currant|Ribes rubrum|currant|currant bush +garden egg|1 +(noun)|eggplant|aubergine|brinjal|eggplant bush|mad apple|Solanum melongena|herb|herbaceous plant +garden forget-me-not|1 +(noun)|Myosotis sylvatica|herb|herbaceous plant +garden heliotrope|1 +(noun)|common valerian|Valeriana officinalis|valerian +garden hose|1 +(noun)|hose|hosepipe +garden huckleberry|1 +(noun)|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +garden lettuce|1 +(noun)|common lettuce|Lactuca sativa|lettuce +garden loosestrife|1 +(noun)|yellow loosestrife|Lysimachia vulgaris|loosestrife +garden nasturtium|1 +(noun)|Indian cress|Tropaeolum majus|nasturtium +garden of eden|1 +(noun)|Eden|Garden of Eden|Heaven +garden orache|1 +(noun)|mountain spinach|Atriplex hortensis|orach|orache +garden party|1 +(noun)|lawn party|fete champetre|party +garden pea|3 +(noun)|pea +(noun)|garden pea plant|common pea|Pisum sativum|pea|pea plant +(noun)|green pea|pea +garden pea plant|1 +(noun)|garden pea|common pea|Pisum sativum|pea|pea plant +garden pepper cress|1 +(noun)|common garden cress|pepper grass|pepperwort|Lepidium sativum|cress|cress plant +garden pink|1 +(noun)|pink|flower +garden plant|1 +(noun)|plant|flora|plant life +garden rake|1 +(noun)|rake +garden rhubarb|1 +(noun)|pie plant|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb|rhubarb plant +garden rocket|1 +(noun)|rocket|roquette|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +garden roller|1 +(noun)|roller +garden snail|1 +(noun)|snail +garden sorrel|2 +(noun)|French sorrel|Rumex scutatus|dock|sorrel|sour grass +(noun)|sour dock|Rumex acetosa|dock|sorrel|sour grass +garden spade|1 +(noun)|spade +garden spider|1 +(noun)|Aranea diademata|spider +garden state|1 +(noun)|New Jersey|Garden State|NJ|American state +garden strawberry|1 +(noun)|cultivated strawberry|Fragaria ananassa|strawberry +garden symphilid|1 +(noun)|garden centipede|symphilid|Scutigerella immaculata|arthropod +garden tool|1 +(noun)|lawn tool|tool +garden trowel|1 +(noun)|trowel +garden truck|1 +(noun)|produce|green goods|green groceries|food +garden violet|1 +(noun)|sweet violet|English violet|Viola odorata|violet +garden webworm|1 +(noun)|Loxostege similalis|webworm +gardener|2 +(noun)|nurseryman|horticulturist|plantsman +(noun)|employee +gardener's delight|1 +(noun)|mullein pink|rose campion|dusty miller|Lychnis coronaria|lychnis|catchfly +gardener's garters|1 +(noun)|reed canary grass|lady's laces|ribbon grass|Phalaris arundinacea|grass +gardenia|1 +(noun)|shrub|bush +gardenia augusta|1 +(noun)|cape jasmine|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia +gardenia jasminoides|1 +(noun)|cape jasmine|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia +gardening|1 +(noun)|horticulture|farming|agriculture|husbandry +gardiner|1 +(noun)|Gardiner|Samuel Rawson Gardiner|historian|historiographer +gardner|2 +(noun)|Gardner|Isabella Stewart Gardner|collector|gatherer|accumulator +(noun)|Gardner|Erle Stanley Gardner|writer|author +garfield|1 +(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States|United States President|President|Chief Executive +garfish|1 +(noun)|gar|garpike|billfish|Lepisosteus osseus|ganoid|ganoid fish +garganey|1 +(noun)|Anas querquedula|teal +gargantuan|1 +(adj)|elephantine|giant|jumbo|large +garget|1 +(noun)|poke|pigeon berry|scoke|Phytolacca americana|pokeweed +gargle|4 +(noun)|mouthwash|solution +(noun)|sound +(verb)|utter|emit|let out|let loose +(verb)|rinse|wash|lave +gargoyle|2 +(noun)|spout +(noun)|decoration|ornament|ornamentation +gargoylism|1 +(noun)|Hurler's syndrome|Hurler's disease|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis|monogenic disorder|monogenic disease +gari|1 +(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|Manihot esculenta|Manihot utilissima|cassava|casava +garibaldi|2 +(noun)|Garibaldi|Giuseppe Garibaldi|general|full general|patriot|nationalist +(noun)|blouse +garish|1 +(adj)|brassy|cheap|flash|flashy|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +garishly|1 +(adv)|tawdrily|gaudily +garishness|2 +(noun)|flashiness|gaudiness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness +(noun)|gaudiness|ugliness +garland|5 +(noun)|Garland|Judy Garland|singer|vocalist|vocalizer|vocaliser|actress +(noun)|Garland|city|metropolis|urban center +(noun)|florilegium|miscellany|anthology +(noun)|wreath|coronal|chaplet|lei|flower arrangement +(verb)|decorate|adorn|grace|ornament|embellish|beautify +garland crab|1 +(noun)|American crab apple|Malus coronaria|wild apple|crab apple|crabapple +garland flower|1 +(noun)|Daphne cneorum|daphne +garlic|2 +(noun)|Allium sativum|alliaceous plant +(noun)|ail|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +garlic bread|1 +(noun)|bread|breadstuff|staff of life +garlic butter|1 +(noun)|spread|paste +garlic chive|2 +(noun)|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +garlic clove|1 +(noun)|clove|garlic|ail +garlic mustard|1 +(noun)|hedge garlic|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer|cruciferous plant +garlic press|1 +(noun)|press|mechanical press +garlic salt|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +garlic sauce|1 +(noun)|aioli|aioli sauce|sauce +garlicky|1 +(adj)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +garment|2 +(noun)|clothing|article of clothing|vesture|wear +(verb)|dress|clothe|enclothe|garb|raiment|tog|habilitate|fit out|apparel|change state|turn +garment-worker|2 +(noun)|garmentmaker|garment worker|needleworker +(noun)| +garment bag|1 +(noun)|bag|traveling bag|grip|suitcase +garment cutter|1 +(noun)|cutter +garment industry|1 +(noun)|apparel industry|fashion industry|fashion business|rag trade|industry +garment worker|2 +(noun)|garmentmaker|garment-worker|needleworker +(noun)| +garmented|1 +(adj)|appareled|attired|dressed|garbed|habilimented|robed|clothed |clad +garmentless|1 +(adj)|clothesless|raimentless|unclothed +garmentmaker|1 +(noun)|garment-worker|garment worker|needleworker +garner|4 +(noun)|granary|storehouse|depot|entrepot|storage|store +(verb)|earn|get|acquire +(verb)|store +(verb)|gather|collect|pull together +garnet|1 +(noun)|mineral|transparent gem +garnet lac|1 +(noun)|lac +garnier|1 +(noun)|Garnier|Jean Louis Charles Garnier|architect|designer +garnierite|1 +(noun)|mineral +garnish|4 +(noun)|decoration|ornament|ornamentation +(noun)|decoration|ornament|ornamentation +(verb)|garnishee|impound|attach|sequester|confiscate|seize +(verb)|trim|dress|decorate|adorn|grace|ornament|embellish|beautify +garnished|1 +(adj)|fancy +garnishee|1 +(verb)|garnish|impound|attach|sequester|confiscate|seize +garnishment|1 +(noun)|court order +garonne|1 +(noun)|Garonne|Garonne River|river +garonne river|1 +(noun)|Garonne|Garonne River|river +garotte|2 +(noun)|garrote|garrotte|iron collar|instrument of execution +(verb)|garrote|garrotte|scrag|strangle|strangulate|throttle +garpike|1 +(noun)|gar|garfish|billfish|Lepisosteus osseus|ganoid|ganoid fish +garret|1 +(noun)|loft|attic|floor|level|storey|story +garrick|1 +(noun)|Garrick|David Garrick|actor|histrion|player|thespian|role player +garrison|4 +(noun)|fort|military post|post +(noun)|Garrison|William Lloyd Garrison|abolitionist|emancipationist +(noun)|military personnel|soldiery|troops +(verb)|station|post|base|send|place +garrison cap|1 +(noun)|overseas cap|cap +garrote|2 +(noun)|garotte|garrotte|iron collar|instrument of execution +(verb)|garrotte|garotte|scrag|strangle|strangulate|throttle +garroter|1 +(noun)|garrotter|strangler|throttler|choker|killer|slayer +garrotte|2 +(noun)|garrote|garotte|iron collar|instrument of execution +(verb)|garrote|garotte|scrag|strangle|strangulate|throttle +garrotter|1 +(noun)|garroter|strangler|throttler|choker|killer|slayer +garrulinae|1 +(noun)|Garrulinae|subfamily Garrulinae|bird family +garrulity|1 +(noun)|garrulousness|loquaciousness|loquacity|talkativeness|communicativeness +garrulous|1 +(adj)|chatty|gabby|loquacious|talkative|talky|voluble +garrulously|1 +(adv)|loquaciously|talkatively|talkily +garrulousness|1 +(noun)|garrulity|loquaciousness|loquacity|talkativeness|communicativeness +garrulus|1 +(noun)|Garrulus|genus Garrulus|bird genus +garry oak|1 +(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak +garter|2 +(noun)|supporter|band +(verb)|fasten|fix|secure +garter belt|1 +(noun)|suspender belt|undergarment +garter snake|1 +(noun)|grass snake|colubrid snake|colubrid +garter stitch|1 +(noun)|knitting stitch +gartner's bacillus|1 +(noun)|Salmonella enteritidis|Gartner's bacillus|salmonella +garuda|1 +(noun)|Garuda|Hindu deity +garullus garullus|1 +(noun)|common European jay|Garullus garullus|Old World jay +gary|1 +(noun)|Gary|city|metropolis|urban center|port of entry|point of entry +gary cooper|1 +(noun)|Cooper|Gary Cooper|Frank Cooper|actor|histrion|player|thespian|role player +gary kasparov|1 +(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master +gary weinstein|1 +(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master +gas|8 +(noun)|state of matter|state +(noun)|fluid +(noun)|gasoline|gasolene|petrol|fuel|hydrocarbon +(noun)|flatulence|flatulency|physiological state|physiological condition +(noun)|accelerator|accelerator pedal|gas pedal|throttle|gun|pedal|treadle|foot pedal|foot lever +(noun)|natural gas|fossil fuel +(verb)|attack|assail +(verb)|boast|tout|swash|shoot a line|brag|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +gas-cooled reactor|1 +(noun)|nuclear reactor|reactor +gas-discharge lamp|1 +(noun)|electric-discharge lamp|electric lamp +gas-discharge tube|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +gas-tight|1 +(adj)|airtight|air-tight|tight +gas-turbine ship|1 +(noun)|ship +gas bomb|1 +(noun)|chemical bomb|bomb|chemical weapon +gas bracket|1 +(noun)|burner +gas burner|1 +(noun)|gas jet|burner +gas chamber|1 +(noun)|death chamber|instrument of execution +gas company|1 +(noun)|gas service|utility|public utility|public-service corporation +gas constant|1 +(noun)|universal gas constant|R|constant +gas cooker|1 +(noun)|gas range|gas stove|stove|kitchen stove|range|kitchen range|cooking stove +gas embolism|2 +(noun)|air embolism|aeroembolism|embolism +(noun)|decompression sickness|aeroembolism|air embolism|caisson disease|bends|illness|unwellness|malady|sickness +gas engine|1 +(noun)|internal-combustion engine|ICE +gas fitter|1 +(noun)|workman|working man|working person +gas fitting|1 +(noun)|fitting +gas fixture|1 +(noun)|device +gas furnace|1 +(noun)|furnace +gas gage|1 +(noun)|gasoline gauge|gasoline gage|gas gauge|gauge|gage +gas gangrene|1 +(noun)|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene|sphacelus|slough +gas gauge|1 +(noun)|gasoline gauge|gasoline gage|gas gage|gauge|gage +gas giant|1 +(noun)|Jovian planet|superior planet +gas gun|1 +(noun)|gun +gas guzzler|1 +(noun)|car|auto|automobile|machine|motorcar +gas heat|1 +(noun)|heating system|heating plant|heating|heat +gas heater|1 +(noun)|heater|warmer +gas helmet|1 +(noun)|gasmask|respirator|mask +gas holder|1 +(noun)|gasometer|tank|storage tank +gas jet|1 +(noun)|gas burner|burner +gas lamp|1 +(noun)|lamp +gas line|3 +(noun)|queue|waiting line +(noun)|pipeline|line +(noun)|fuel line|pipe|pipage|piping +gas main|1 +(noun)|main +gas maser|1 +(noun)|maser +gas meter|1 +(noun)|gasometer|meter +gas mileage|1 +(noun)|mileage|fuel consumption rate|gasoline mileage|ratio +gas oil|1 +(noun)|fuel oil|heating oil|hydrocarbon +gas oven|2 +(noun)|crematory|crematorium|cremation chamber +(noun)|oven +gas pedal|1 +(noun)|accelerator|accelerator pedal|gas|throttle|gun|pedal|treadle|foot pedal|foot lever +gas phlegmon|1 +(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|progressive emphysematous necrosis|gangrene|sphacelus|slough +gas plant|1 +(noun)|fraxinella|dittany|burning bush|Dictamnus alba|herb|herbaceous plant +gas pressure|1 +(noun)|pressure|pressure level|force per unit area +gas pump|1 +(noun)|gasoline pump|island dispenser|pump +gas range|1 +(noun)|gas stove|gas cooker|stove|kitchen stove|range|kitchen range|cooking stove +gas ring|1 +(noun)|gas burner|gas jet +gas service|1 +(noun)|gas company|utility|public utility|public-service corporation +gas shell|1 +(noun)|bomb +gas station|1 +(noun)|gasoline station|filling station|petrol station|service station +gas stove|1 +(noun)|gas range|gas cooker|stove|kitchen stove|range|kitchen range|cooking stove +gas system|1 +(noun)|facility|installation +gas tank|1 +(noun)|gasoline tank|tank|storage tank +gas thermometer|1 +(noun)|air thermometer|thermometer +gas turbine|1 +(noun)|turbine +gas up|1 +(verb)|fuel +gas well|1 +(noun)|well +gasbag|2 +(noun)|windbag|bore|dullard +(noun)|envelope|bag +gascogne|1 +(noun)|Gascogne|Gascony|French region +gasconade|2 +(noun)|brag|bragging|crow|crowing|vaporing|line-shooting|boast|boasting|self-praise|jactitation +(verb)|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +gascony|1 +(noun)|Gascogne|Gascony|French region +gaseous|1 +(adj)|gaseous |aeriform|airlike|aerosolized|aerosolised|evaporated|foamy|frothy|gasified|vaporized|vaporised|volatilized|volatilised|gassy|vaporific|vaporish|vapourish|vaporous +gaseous nebula|1 +(noun)|diffuse nebula|nebula +gaseousness|1 +(noun)|consistency|consistence|body +gasfield|1 +(noun)|field +gash|4 +(noun)|cut|slash|slice|wound|lesion +(noun)|cut|furrow +(noun)|slash|cut|cutting +(verb)|slash|cut +gashed|1 +(adj)|cut|slashed|injured +gasherbrum|1 +(noun)|Gasherbrum|mountain peak +gasification|1 +(noun)|chemical process|chemical change|chemical action +gasified|1 +(adj)|vaporized|vaporised|volatilized|volatilised|gaseous +gasify|1 +(verb)|vaporize|vaporise|aerify|change integrity +gaskell|1 +(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer|author +gasket|1 +(noun)|seal +gaskin|1 +(noun)|body part +gaslight|1 +(noun)|light|visible light|visible radiation +gasman|1 +(noun)|employee +gasmask|1 +(noun)|respirator|gas helmet|mask +gasohol|1 +(noun)|fuel|hydrocarbon +gasolene|1 +(noun)|gasoline|gas|petrol|fuel|hydrocarbon +gasoline|1 +(noun)|gasolene|gas|petrol|fuel|hydrocarbon +gasoline bomb|1 +(noun)|Molotov cocktail|petrol bomb|bomb +gasoline engine|1 +(noun)|internal-combustion engine|ICE +gasoline gage|1 +(noun)|gasoline gauge|gas gauge|gas gage|gauge|gage +gasoline gauge|1 +(noun)|gasoline gage|gas gauge|gas gage|gauge|gage +gasoline mileage|1 +(noun)|mileage|fuel consumption rate|gas mileage|ratio +gasoline pump|1 +(noun)|gas pump|island dispenser|pump +gasoline station|1 +(noun)|gas station|filling station|petrol station|service station +gasoline tank|1 +(noun)|gas tank|tank|storage tank +gasoline tax|1 +(noun)|excise|excise tax +gasometer|2 +(noun)|gas meter|meter +(noun)|gas holder|tank|storage tank +gasp|2 +(noun)|pant|inhalation|inspiration|aspiration|breathing in +(verb)|pant|puff|heave|blow +gaspar|1 +(noun)|Caspar|Gaspar|sage +gasping|1 +(adj)|blown|out of breath|panting|pursy|short-winded|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +gaspingly|2 +(adv)|breathlessly +(adv)|pantingly +gassing|2 +(noun)|chemical process|chemical change|chemical action +(noun)|poisoning +gassy|2 +(adj)|gaseous +(adj)|colicky|flatulent|unhealthy +gasteromycete|1 +(noun)|gastromycete|fungus +gasteromycetes|2 +(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class +(noun)|gasteromycete|gastromycete|fungus +gasterophilidae|1 +(noun)|Gasterophilidae|family Gasterophilidae|arthropod family +gasterophilus|1 +(noun)|Gasterophilus|genus Gasterophilus|arthropod genus +gasterophilus intestinalis|1 +(noun)|horse botfly|Gasterophilus intestinalis|botfly +gasteropoda|1 +(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class +gasterosteidae|1 +(noun)|Gasterosteidae|family Gasterosteidae|fish family +gasterosteus|1 +(noun)|Gasterosteus|genus gasterosteus|fish genus +gasterosteus aculeatus|1 +(noun)|three-spined stickleback|Gasterosteus aculeatus|stickleback|prickleback +gasterosteus pungitius|1 +(noun)|ten-spined stickleback|Gasterosteus pungitius|stickleback|prickleback +gaston lachaise|1 +(noun)|Lachaise|Gaston Lachaise|sculptor|sculpturer|carver|statue maker +gastralgia|1 +(noun)|stomachache|stomach ache|bellyache|ache|aching +gastrectomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +gastric|1 +(adj)|stomachic|stomachal|internal organ|viscus +gastric antacid|1 +(noun)|antacid|alkalizer|alkaliser|antiacid|agent +gastric artery|1 +(noun)|arteria gastrica|artery|arteria|arterial blood vessel +gastric digestion|1 +(noun)|digestion +gastric juice|1 +(noun)|digestive juice|digestive fluid +gastric lavage|1 +(noun)|lavage +gastric mill|1 +(noun)|gizzard|ventriculus|pouch|pocket +gastric smear|1 +(noun)|alimentary tract smear +gastric ulcer|1 +(noun)|peptic ulcer|peptic ulceration +gastric vein|1 +(noun)|vena gastrica|vein|vena|venous blood vessel +gastrin|1 +(noun)|hormone|endocrine|internal secretion +gastritis|1 +(noun)|inflammation|redness|rubor +gastroboletus|1 +(noun)|Gastroboletus|genus Gastroboletus|fungus genus +gastroboletus scabrosus|1 +(noun)|Gastroboletus scabrosus|fungus +gastroboletus turbinatus|1 +(noun)|Gastroboletus turbinatus|fungus +gastrocnemius|1 +(noun)|gastrocnemius muscle|skeletal muscle|striated muscle +gastrocnemius muscle|1 +(noun)|gastrocnemius|skeletal muscle|striated muscle +gastrocolic omentum|1 +(noun)|greater omentum|caul|omentum +gastrocybe|1 +(noun)|Gastrocybe|genus Gastrocybe|fungus genus +gastrocybe lateritia|1 +(noun)|Gastrocybe lateritia|fungus +gastroenteritis|1 +(noun)|stomach flu|intestinal flu|inflammatory disease +gastroenterologist|1 +(noun)|doctor|doc|physician|MD|Dr.|medico +gastroenterology|1 +(noun)|medicine|medical specialty +gastroenterostomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +gastroepiploic vein|1 +(noun)|gastroomental vein|vena gastroomentalis|vein|vena|venous blood vessel +gastroesophageal|1 +(adj)|internal organ|viscus|passage|passageway|muscular structure|musculature|muscle system +gastroesophageal reflux|1 +(noun)|esophageal reflux|oesophageal reflux|reflux +gastrogavage|1 +(noun)|forced feeding|gavage +gastrointestinal|1 +(adj)|gi|duct|epithelial duct|canal|channel +gastrointestinal disorder|1 +(noun)|food poisoning|illness|unwellness|malady|sickness +gastrointestinal system|1 +(noun)|digestive system|systema alimentarium|systema digestorium|system +gastrointestinal tract|1 +(noun)|alimentary canal|alimentary tract|digestive tube|digestive tract|GI tract|duct|epithelial duct|canal|channel +gastrolobium|1 +(noun)|poison bush|poison pea|shrub|bush +gastromy|1 +(noun)|incision|section|surgical incision +gastromycete|1 +(noun)|gasteromycete|fungus +gastromycetes|2 +(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class +(noun)|gasteromycete|gastromycete|fungus +gastronome|1 +(noun)|epicure|gourmet|bon vivant|epicurean|foodie|sensualist +gastronomic|1 +(adj)|gastronomical|cuisine|culinary art +gastronomical|1 +(adj)|gastronomic|cuisine|culinary art +gastronomy|2 +(noun)|cuisine|culinary art +(noun)|art|artistic creation|artistic production +gastroomental vein|1 +(noun)|gastroepiploic vein|vena gastroomentalis|vein|vena|venous blood vessel +gastrophryne|1 +(noun)|Gastrophryne|genus Gastrophryne|amphibian genus +gastrophryne carolinensis|1 +(noun)|eastern narrow-mouthed toad|Gastrophryne carolinensis|frog|toad|toad frog|anuran|batrachian|salientian +gastrophryne olivacea|1 +(noun)|western narrow-mouthed toad|Gastrophryne olivacea|frog|toad|toad frog|anuran|batrachian|salientian +gastropod|1 +(noun)|univalve|mollusk|mollusc|shellfish +gastropoda|1 +(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class +gastroscope|1 +(noun)|endoscope +gastroscopy|1 +(noun)|endoscopy +gastrostomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +gastrula|1 +(noun)|embryo|conceptus|fertilized egg +gastrulation|1 +(noun)|organic process|biological process +gasworks|1 +(noun)|workplace|work +gat|1 +(noun)|rod|pistol|handgun|side arm|shooting iron +gate|7 +(noun)|movable barrier +(noun)|logic gate|computer circuit +(noun)|gross|revenue|receipts +(noun)|passageway +(verb)|supply|provide|render|furnish +(verb)|operate|control +(verb)|restrict|restrain|trammel|limit|bound|confine|throttle +gate-crash|1 +(verb)|barge in|crash|intrude|irrupt +gate-crashing|1 +(adj)|uninvited +gateau|1 +(noun)|cake +gatecrasher|1 +(noun)|crasher|unwelcome guest|intruder|interloper|trespasser +gatefold|1 +(noun)|foldout|page +gatehouse|1 +(noun)|house +gatekeeper|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|doorkeeper|doorman|door guard|hall porter|porter|ostiary|guard +gateleg table|1 +(noun)|drop-leaf table +gatepost|1 +(noun)|post +gates|5 +(noun)|Gates|Bill Gates|William Henry Gates|computer scientist|entrepreneur|enterpriser +(noun)|gate|movable barrier +(noun)|gate|logic gate|computer circuit +(noun)|gate|gross|revenue|receipts +(noun)|gate|passageway +gates of the arctic national park|1 +(noun)|Gates of the Arctic National Park|national park +gateway|1 +(noun)|entrance|entranceway|entryway|entry|entree +gateway drug|1 +(noun)|drug of abuse|street drug +gateway to the west|1 +(noun)|Saint Louis|St. Louis|Gateway to the West|city|metropolis|urban center|port +gather|9 +(noun)|gathering|sewing|stitchery +(noun)|gathering|collection|collecting|assembling|aggregation +(verb)|garner|collect|pull together|gather up +(verb)|meet|assemble|forgather|foregather|interact +(verb)|accumulate|cumulate|conglomerate|pile up|amass|increase +(verb)|reason|reason out|conclude +(verb)|pucker|tuck|sew|run up|sew together|stitch +(verb)|assemble|get together +(verb)|search|seek|look for +gather in|1 +(verb)|take in|roll up|furl +gather up|2 +(verb)|pick up|lift up|raise|lift|elevate|get up|bring up +(verb)|collect|pick up|call for|get|acquire +gathered|2 +(adj)|deepened|concentrated +(adj)|collected +gathered skirt|1 +(noun)|skirt +gatherer|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|collector|accumulator|holder|bearer +gathering|5 +(adj)|deepening|thickening|intensifying +(noun)|assemblage|social group +(noun)|assembly|assemblage|group action +(noun)|gather|collection|collecting|assembling|aggregation +(noun)|gather|sewing|stitchery +gathering place|1 +(noun)|haunt|hangout|resort|repair|stamping ground +gathic|1 +(noun)|Gathic|Iranian|Iranian language +gatling|1 +(noun)|Gatling|Richard Jordan Gatling|inventor|discoverer|artificer +gatling gun|1 +(noun)|Gatling gun|machine gun +gator|1 +(noun)|alligator|crocodilian reptile|crocodilian +gatt|1 +(noun)|General Agreement on Tariffs and Trade|GATT|United Nations agency|UN agency +gauche|1 +(adj)|graceless|unpolished|inelegant +gaucheness|1 +(noun)|crudeness|crudity|impoliteness +gaucher's disease|1 +(noun)|Gaucher's disease|lipidosis|monogenic disorder|monogenic disease +gaucherie|2 +(noun)|rusticity|awkwardness|clumsiness|gracelessness|stiffness +(noun)|faux pas|gaffe|solecism|slip|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +gaucho|1 +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +gaud|1 +(noun)|bangle|bauble|gewgaw|novelty|fallal|trinket|adornment +gaudery|1 +(noun)|display|show +gaudi|1 +(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect|designer +gaudi i cornet|1 +(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect|designer +gaudily|1 +(adv)|garishly|tawdrily +gaudiness|2 +(noun)|flashiness|garishness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness +(noun)|garishness|ugliness +gaudy|3 +(adj)|brassy|cheap|flash|flashy|garish|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +(adj)|flashy|jazzy|showy|sporty|colorful +(noun)|banquet|feast +gauffer|3 +(noun)|goffer|iron|smoothing iron +(noun)|goffer|frill|flounce|ruffle|furbelow +(verb)|goffer|wave +gauge|11 +(noun)|gage|measuring instrument|measuring system|measuring device +(noun)|standard of measurement|standard|criterion|measure|touchstone +(noun)|distance|length +(noun)|thickness +(noun)|bore|caliber|calibre|diameter|diam +(verb)|estimate|approximate|guess|judge|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|rub +(verb)|determine|find|find out|ascertain +(verb)|quantify|measure +(verb)|standardize|standardise +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +gauge boson|1 +(noun)|boson +gauguin|1 +(noun)|Gauguin|Paul Gauguin|painter +gauguinesque|1 +(adj)|Gauguinesque|painter +gaul|3 +(noun)|frog|Gaul|Frenchman|Frenchwoman|French person +(noun)|Gaul|Celt|Kelt +(noun)|Gaul|Gallia|geographical area|geographic area|geographical region|geographic region +gaultheria|1 +(noun)|Gaultheria|genus Gaultheria|dilleniid dicot genus +gaultheria hispidula|1 +(noun)|creeping snowberry|moxie plum|maidenhair berry|Gaultheria hispidula|shrublet +gaultheria procumbens|1 +(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +gaultheria shallon|1 +(noun)|salal|shallon|Gaultheria shallon|shrub|bush +gaumless|1 +(adj)|gormless|stupid +gaunt|1 +(adj)|bony|cadaverous|emaciated|haggard|pinched|skeletal|wasted|thin |lean +gauntlet|4 +(noun)|gantlet|challenge +(noun)|gantlet|metal glove|glove|gloves +(noun)|gantlet|glove|gloves +(noun)|gantlet|corporal punishment +gauntleted|1 +(adj)|gloved +gauntness|1 +(noun)|bonyness|emaciation|maceration|leanness|thinness +gauntry|1 +(noun)|gantry|framework|frame|framing +gaur|1 +(noun)|Bibos gaurus|Asian wild ox +gauri|1 +(noun)|Gauri|Hindu deity +gauss|2 +(noun)|flux density unit +(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician +gaussian|1 +(adj)|Gaussian|mathematician +gaussian curve|1 +(noun)|normal curve|bell-shaped curve|Gaussian curve|Gaussian shape|curve|curved shape +gaussian distribution|1 +(noun)|normal distribution|Gaussian distribution|distribution|statistical distribution +gaussian shape|1 +(noun)|normal curve|bell-shaped curve|Gaussian curve|Gaussian shape|curve|curved shape +gaussmeter|1 +(noun)|magnetometer|meter +gautama|1 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +gautama buddha|1 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +gautama siddhartha|1 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +gauze|2 +(noun)|gauze bandage|cotton|cotton cloth +(noun)|netting|veiling|net|network|mesh|meshing|meshwork +gauze bandage|1 +(noun)|gauze|cotton|cotton cloth +gauzy|1 +(adj)|diaphanous|filmy|gossamer|see-through|sheer|transparent|vaporous|cobwebby|thin +gavage|1 +(noun)|forced feeding|feeding|alimentation +gavel|1 +(noun)|mallet|beetle +gavia|1 +(noun)|Gavia|genus Gavia|bird genus +gavial|1 +(noun)|Gavialis gangeticus|crocodilian reptile|crocodilian +gavialidae|1 +(noun)|Gavialidae|family Gavialidae|reptile family +gavialis|1 +(noun)|Gavialis|genus Gavialis|reptile genus +gavialis gangeticus|1 +(noun)|gavial|Gavialis gangeticus|crocodilian reptile|crocodilian +gavidae|1 +(noun)|Gavidae|family Gavidae|bird family +gaviiform seabird|1 +(noun)|seabird|sea bird|seafowl +gaviiformes|1 +(noun)|Gaviiformes|order Gaviiformes|animal order +gavotte|2 +(noun)|social dancing +(noun)|dance music|danceroom music|ballroom music +gawain|1 +(noun)|Gawain|Sir Gawain|fictional character|fictitious character|character +gawk|2 +(noun)|lout|clod|stumblebum|goon|oaf|lubber|lummox|lump|clumsy person +(verb)|goggle|gape|gawp|look +gawkiness|1 +(noun)|ungainliness|awkwardness|clumsiness +gawky|1 +(adj)|clumsy|clunky|ungainly|unwieldy|awkward +gawp|1 +(verb)|goggle|gape|gawk|look +gay|7 +(adj)|cheery|sunny|cheerful +(adj)|jocund|jolly|jovial|merry|mirthful|joyous +(adj)|indulgent +(adj)|brave|braw|colorful +(adj)|gala|festal|festive|merry|joyous +(adj)|queer|homophile|homosexual +(noun)|homosexual|homo|person|individual|someone|somebody|mortal|human|soul +gay-feather|2 +(noun)|blazing star|button snakeroot|gayfeather|snakeroot|wildflower|wild flower +(noun)| +gay-lussac|1 +(noun)|Gay-Lussac|Joseph Louis Gay-Lussac|chemist|physicist +gay-lussac's law|1 +(noun)|Gay-Lussac's law|Charles's law|law of volumes|law|law of nature +gay lib|1 +(noun)|gay liberation movement|campaign|cause|crusade|drive|movement|effort +gay liberation movement|1 +(noun)|gay lib|campaign|cause|crusade|drive|movement|effort +gay man|1 +(noun)|shirtlifter|homosexual|homo|gay +gay woman|1 +(noun)|lesbian|tribade|homosexual|homo|gay +gayal|1 +(noun)|mithan|Bibos frontalis|Asian wild ox +gayfeather|1 +(noun)|blazing star|button snakeroot|gay-feather|snakeroot|wildflower|wild flower +gaylussacia|1 +(noun)|Gaylussacia|genus Gaylussacia|dilleniid dicot genus +gaylussacia baccata|1 +(noun)|black huckleberry|Gaylussacia baccata|huckleberry +gaylussacia brachycera|1 +(noun)|box huckleberry|Gaylussacia brachycera|huckleberry +gaylussacia frondosa|1 +(noun)|dangleberry|dangle-berry|Gaylussacia frondosa|huckleberry +gayly|1 +(adv)|happily|merrily|mirthfully|blithely|jubilantly|with happiness +gayness|1 +(noun)|homosexuality|homosexualism|homoeroticism|sexual activity|sexual practice|sex|sex activity +gaywings|1 +(noun)|flowering wintergreen|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort +gaza|1 +(noun)|Gaza Strip|Gaza|geographical area|geographic area|geographical region|geographic region +gaza strip|1 +(noun)|Gaza Strip|Gaza|geographical area|geographic area|geographical region|geographic region +gazania|1 +(noun)|flower +gazania rigens|1 +(noun)|treasure flower|Gazania rigens|gazania +gaze|2 +(noun)|regard|stare +(verb)|stare|look +gazebo|1 +(noun)|summerhouse|building|edifice +gazella|1 +(noun)|Gazella|genus Gazella|mammal genus +gazella subgutturosa|1 +(noun)|Gazella subgutturosa|gazelle +gazella thomsoni|1 +(noun)|Thomson's gazelle|Gazella thomsoni|gazelle +gazelle|1 +(noun)|antelope +gazelle hound|1 +(noun)|Saluki|hound|hound dog +gazette|2 +(noun)|newspaper|paper +(verb)|print|publish +gazetteer|1 +(noun)|dictionary|lexicon +gazpacho|1 +(noun)|soup +gazump|2 +(verb)|overcharge|soak|surcharge|fleece|plume|pluck|rob|hook|cheat|rip off|chisel +(verb)|cheat|rip off|chisel +gb|4 +(noun)|sarin|GB|organophosphate nerve agent +(noun)|gilbert|Gb|Gi|magnetomotive force unit +(noun)|gigabyte|G|GB|computer memory unit +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +gbu-28|1 +(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb|LGB +gc|1 +(noun)|gigahertz|GHz|gigacycle per second|gigacycle|Gc|rate +gca|1 +(noun)|ground-controlled approach|GCA|aircraft landing|airplane landing +gd|2 +(noun)|soman|GD|organophosphate nerve agent +(noun)|gadolinium|Gd|atomic number 64|metallic element|metal +gdansk|1 +(noun)|Gdansk|Danzig|city|metropolis|urban center|port +gdp|1 +(noun)|gross domestic product|GDP|value +ge|2 +(noun)|germanium|Ge|atomic number 32|chemical element|element|semiconductor|semiconducting material +(noun)|Gaea|Gaia|Ge|Greek deity +gean|1 +(noun)|mazzard|mazzard cherry|sweet cherry|Prunus avium +gear|4 +(noun)|gear wheel|cogwheel|wheel +(noun)|gear mechanism|mechanism +(noun)|paraphernalia|appurtenances|equipment +(verb)|pitch|adapt|accommodate +gear case|1 +(noun)|gearbox|shell|case|casing +gear lever|1 +(noun)|gearshift|gearstick|shifter|mechanical device +gear mechanism|1 +(noun)|gear|mechanism +gear up|1 +(verb)|fix|prepare|set up|ready|set|change|alter|modify +gear wheel|1 +(noun)|gear|cogwheel|wheel +gearbox|1 +(noun)|gear case|shell|case|casing +geared|1 +(adj)|geared |back-geared|double-geared|double-geared|engaged|meshed|intermeshed|in gear +gearing|1 +(noun)|gears|geartrain|power train|train|wheelwork +gears|4 +(noun)|gearing|geartrain|power train|train|wheelwork +(noun)|gear|gear wheel|cogwheel|wheel +(noun)|gear|gear mechanism|mechanism +(noun)|gear|paraphernalia|appurtenances|equipment +gearset|1 +(noun)|gear|gear mechanism +gearshift|1 +(noun)|gearstick|shifter|gear lever|mechanical device +gearstick|1 +(noun)|gearshift|shifter|gear lever|mechanical device +geartrain|1 +(noun)|gearing|gears|power train|train|wheelwork +geastraceae|1 +(noun)|Geastraceae|family Geastraceae|fungus family +geastrum|1 +(noun)|Geastrum|genus Geastrum|fungus genus +geastrum coronatum|1 +(noun)|Geastrum coronatum|earthstar +geb|1 +(noun)|Geb|Keb|Egyptian deity +gebang palm|1 +(noun)|Corypha utan|Corypha gebanga|fan palm +gecko|1 +(noun)|lizard +gee|3 +(noun)|g|g-force|force unit +(verb)|turn +(verb)|exclaim|cry|cry out|outcry|call out|shout +gee-gee|1 +(noun)|horse|Equus caballus +geebung|1 +(noun)|shrub|bush +geek|2 +(noun)|performer|performing artist +(noun)|eccentric|eccentric person|flake|oddball|anomaly|unusual person +geert geerts|1 +(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian|theologist|theologizer|theologiser|humanist +geezer|1 +(noun)|bloke|man|adult male +geezerhood|1 +(noun)|old age|years|age|eld|time of life +gefilte fish|1 +(noun)|fish ball|dish +gegenschein|1 +(noun)|counterglow|light|visible light|visible radiation +geglossaceae|1 +(noun)|Geglossaceae|ascomycete|ascomycetous fungus +gehenna|1 +(noun)|Gehenna|Tartarus|Hell|perdition|Inferno|infernal region|nether region|the pit +gehrig|1 +(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer|baseball player +geiger|1 +(noun)|Geiger|Hans Geiger|physicist +geiger-muller counter|1 +(noun)|Geiger counter|Geiger-Muller counter|counter tube +geiger-muller tube|1 +(noun)|Geiger tube|Geiger-Muller tube|ionization chamber|ionization tube +geiger counter|1 +(noun)|Geiger counter|Geiger-Muller counter|counter tube +geiger tube|1 +(noun)|Geiger tube|Geiger-Muller tube|ionization chamber|ionization tube +geisel|1 +(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer|author +geisha|1 +(noun)|geisha girl|woman|adult female|Japanese|Nipponese +geisha girl|1 +(noun)|geisha|woman|adult female|Japanese|Nipponese +gekkonidae|1 +(noun)|Gekkonidae|family Gekkonidae|reptile family +gel|4 +(noun)|colloidal gel|colloid +(noun)|gelatin|membrane +(verb)|change +(verb)|mousse|groom|neaten +gelatin|3 +(noun)|gelatine|scleroprotein|albuminoid +(noun)|jelly|dainty|delicacy|goody|kickshaw|treat +(noun)|gel|membrane +gelatin dessert|1 +(noun)|gelatin|jelly +gelatine|1 +(noun)|gelatin|scleroprotein|albuminoid +gelatinise|2 +(verb)|gelatinize|change +(verb)|gelatinize|change|alter|modify +gelatinize|3 +(verb)|coat|surface +(verb)|gelatinise|change +(verb)|gelatinise|change|alter|modify +gelatinlike|1 +(adj)|gelatinous|jellylike|thick +gelatinous|1 +(adj)|gelatinlike|jellylike|thick +gelatinousness|1 +(noun)|glutinosity|glutinousness|viscosity|viscousness +geld|1 +(verb)|cut|emasculate|castrate|demasculinize|demasculinise +gelded|1 +(adj)|cut|emasculated|castrated |unsexed +gelding|1 +(noun)|male horse +gelechia|1 +(noun)|Gelechia|genus Gelechia|arthropod genus +gelechia gossypiella|2 +(noun)|pink bollworm|Gelechia gossypiella|bollworm +(noun)|Gelechia gossypiella|gelechiid|gelechiid moth +gelechiid|1 +(noun)|gelechiid moth|moth +gelechiid moth|1 +(noun)|gelechiid|moth +gelechiidae|1 +(noun)|Gelechiidae|family Gelechiidae|arthropod family +gelid|1 +(adj)|arctic|frigid|glacial|icy|polar|cold +gelidity|1 +(noun)|chill|iciness|coldness|cold|low temperature +gelignite|1 +(noun)|gelly|dynamite +gell-mann|1 +(noun)|Gell-Mann|Murray Gell-Mann|nuclear physicist +gelly|1 +(noun)|gelignite|dynamite +gelnn theodore seaborg|1 +(noun)|Seaborg|Glenn T. Seaborg|Gelnn Theodore Seaborg|chemist +gelsemium|1 +(noun)|Gelsemium|genus Gelsemium|dicot genus|magnoliopsid genus +gelsemium sempervirens|1 +(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine +gelt|1 +(noun)|boodle|bread|cabbage|clams|dinero|dough|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +gem|5 +(noun)|gemstone|stone|crystal +(noun)|treasure|art|fine art +(noun)|jewel|person|individual|someone|somebody|mortal|human|soul +(noun)|muffin|quick bread +(noun)|jewel|precious stone|jewelry|jewellery +gem clip|1 +(noun)|paper clip|paperclip|clip +gem cutter|1 +(noun)|cutter +gem state|1 +(noun)|Idaho|Gem State|ID|American state +gemara|1 +(noun)|Gemara|sacred text|sacred writing|religious writing|religious text +gemfibrozil|1 +(noun)|Lopid|medicine|medication|medicament|medicinal drug +geminate|5 +(noun)|consonant +(verb)|reduplicate|duplicate|reduplicate|double|repeat|replicate +(verb)|pair|occur +(verb)|pair|arrange|set up +(verb)|double|duplicate +gemination|2 +(noun)|repetition +(noun)|duplication|copying +gemini|3 +(noun)|Gemini|Twin|person|individual|someone|somebody|mortal|human|soul +(noun)|Gemini|constellation +(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac|star sign|sign|mansion|house|planetary house +gemini program|1 +(noun)|Gemini program|space program +gemini the twins|1 +(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac|star sign|sign|mansion|house|planetary house +gemma|1 +(noun)|reproductive structure +gemmation|1 +(noun)|pullulation|asexual reproduction|agamogenesis +gemmed|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|jeweled|jewelled|sequined|spangled|spangly|adorned |decorated +gemmiferous|1 +(adj)|reproductive structure +gemonil|1 +(noun)|metharbital|Gemonil|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +gempylid|1 +(noun)|percoid fish|percoid|percoidean +gempylidae|1 +(noun)|Gempylidae|family Gempylidae|fish family +gempylus|1 +(noun)|Gempylus|genus Gempylus|fish genus +gempylus serpens|1 +(noun)|snake mackerel|Gempylus serpens|gempylid +gemsbok|1 +(noun)|gemsbuck|Oryx gazella|oryx|pasang +gemsbuck|1 +(noun)|gemsbok|Oryx gazella|oryx|pasang +gemstone|1 +(noun)|gem|stone|crystal +gen|1 +(noun)|information|info +gen x|1 +(noun)|generation X|gen X|generation +gendarme|1 +(noun)|policeman|police officer|officer +gendarmerie|1 +(noun)|gendarmery|police|police force|constabulary|law +gendarmery|1 +(noun)|gendarmerie|police|police force|constabulary|law +gender|2 +(noun)|grammatical gender|grammatical category|syntactic category +(noun)|sex|sexuality|physiological property +gender agreement|1 +(noun)|agreement|concord +gender identity|1 +(noun)|identity|personal identity|individuality +gender role|1 +(noun)|role +gene|1 +(noun)|cistron|factor|sequence +gene-splicing|1 +(noun)|genetic engineering|recombinant DNA technology|biotechnology +gene chip|1 +(noun)|DNA chip|chip|microchip|micro chip|silicon chip +gene delivery vector|1 +(noun)|transducing vector|vector|transmitter +gene expression|1 +(noun)|organic phenomenon +gene kelly|1 +(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer|professional dancer|actor|histrion|player|thespian|role player +gene linkage|1 +(noun)|linkage|inheritance|hereditary pattern +gene mutation|1 +(noun)|point mutation|mutation|genetic mutation|chromosomal mutation +gene sarazen|1 +(noun)|Sarazen|Gene Sarazen|golfer|golf player|linksman +gene tunney|1 +(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter|gladiator +genealogic|1 +(adj)|genealogical|kin|kin group|kinship group|kindred|clan|tribe +genealogical|1 +(adj)|genealogic|kin|kin group|kinship group|kindred|clan|tribe +genealogist|1 +(noun)|expert +genealogy|1 +(noun)|family tree|kin|kin group|kinship group|kindred|clan|tribe +general|11 +(adj)|general |as a whole|at large|in general|at-large|broad|unspecific|generalized|generalised|general-purpose|all-purpose|generic|gross|mass|large-scale|miscellaneous|overall|pandemic|pervading|pervasive|widespread|plain|popular|comprehensive|imprecise|indiscriminate|unspecialized|unspecialised +(adj)|undiversified |unvaried +(adj)|national +(adj)|common +(adj)|general |generalized|generalised|systemic +(adj)|imprecise +(adj)|cosmopolitan|ecumenical|oecumenical|universal|worldwide|comprehensive +(noun)|full general|general officer +(noun)|superior general|head|chief|top dog +(noun)|fact +(verb)|command +general-purpose|1 +(adj)|all-purpose|general +general-purpose bomb|1 +(noun)|GP bomb|bomb +general agent|2 +(noun)|universal agent|agent +(noun)|insurance broker|insurance agent|underwriter|agent|factor|broker +general agreement on tariffs and trade|1 +(noun)|General Agreement on Tariffs and Trade|GATT|United Nations agency|UN agency +general anaesthesia|1 +(noun)|general anesthesia|anesthesia|anaesthesia +general anaesthetic|1 +(noun)|general anesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +general anatomy|1 +(noun)|anatomy|morphology +general anesthesia|1 +(noun)|general anaesthesia|anesthesia|anaesthesia +general anesthetic|1 +(noun)|general anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +general assembly|2 +(noun)|General Assembly|assembly +(noun)|legislature|legislative assembly|law-makers|assembly +general baptist|1 +(noun)|Arminian Baptist|General Baptist|Baptist denomination +general charles de gaulle|1 +(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general|full general|statesman|solon|national leader +general custer|1 +(noun)|Custer|George Armstrong Custer|General Custer|general|full general +general damages|1 +(noun)|actual damages|compensatory damages|damages|amends|indemnity|indemnification|restitution|redress +general de gaulle|1 +(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general|full general|statesman|solon|national leader +general delivery|1 +(noun)|poste restante|unit|social unit +general election|1 +(noun)|election +general headquarters|1 +(noun)|command post|GHQ|headquarters|HQ|military headquarters +general knowledge|1 +(noun)|public knowledge|cognition|knowledge|noesis +general ledger|1 +(noun)|ledger|leger|account book|book of account|book +general lien|1 +(noun)|lien +general manager|1 +(noun)|head|chief|top dog +general medicine|1 +(noun)|internal medicine|medicine|medical specialty +general officer|1 +(noun)|commissioned military officer +general practitioner|1 +(noun)|GP|doctor|doc|physician|MD|Dr.|medico +general relativity|1 +(noun)|general theory of relativity|general relativity theory|Einstein's general theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +general relativity theory|1 +(noun)|general relativity|general theory of relativity|Einstein's general theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +general security services|1 +(noun)|Shin Bet|General Security Services|international intelligence agency +general services administration|1 +(noun)|General Services Administration|GSA|independent agency +general staff|1 +(noun)|staff +general store|1 +(noun)|country store|trading post|mercantile establishment|retail store|sales outlet|outlet +general theory of relativity|1 +(noun)|general relativity|general relativity theory|Einstein's general theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +general verdict|1 +(noun)|verdict|finding of fact +generalisation|4 +(noun)|generalization|generality|idea|thought +(noun)|abstraction|generalization|theorization|theorisation +(noun)|generalization|induction|inductive reasoning|colligation +(noun)|generalization|stimulus generalization|stimulus generalisation|transfer|transfer of training|carry-over +generalise|4 +(verb)|generalize|talk|speak|utter|mouth|verbalize|verbalise +(verb)|generalize|extrapolate|infer|reason|reason out|conclude +(verb)|popularize|popularise|vulgarize|vulgarise|generalize|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|generalize|spread|distribute +generalised|3 +(adj)|generalized|unspecialized |unspecialised +(adj)|generalized|general +(adj)|generalized|general +generalissimo|1 +(noun)|commander in chief|commanding officer|commandant|commander +generalist|1 +(noun)|Renaissance man|scholar|scholarly person|student +generality|2 +(noun)|generalization|generalisation|idea|thought +(noun)|quality +generalization|4 +(noun)|abstraction|generalisation|theorization|theorisation +(noun)|generalisation|induction|inductive reasoning|colligation +(noun)|generalisation|generality|idea|thought +(noun)|generalisation|stimulus generalization|stimulus generalisation|transfer|transfer of training|carry-over +generalize|4 +(verb)|generalise|extrapolate|infer|reason|reason out|conclude +(verb)|generalise|talk|speak|utter|mouth|verbalize|verbalise +(verb)|popularize|popularise|vulgarize|vulgarise|generalise|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|generalise|spread|distribute +generalized|3 +(adj)|generalised|unspecialized |unspecialised +(adj)|generalised|general +(adj)|generalised|general +generalized anxiety disorder|1 +(noun)|GAD|anxiety reaction|anxiety disorder +generalized epilepsy|1 +(noun)|grand mal epilepsy|epilepsy +generalized seizure|1 +(noun)|grand mal|epilepsia major|epileptic seizure +generally|3 +(adv)|by and large|more often than not|mostly +(adv)|in general|in the main +(adv)|broadly|loosely|broadly speaking +generally accepted accounting practices|1 +(noun)|GAAP|collection|aggregation|accumulation|assemblage +generalship|2 +(noun)|leadership +(noun)|position|post|berth|office|spot|billet|place|situation +generate|4 +(verb)|bring forth|make|create +(verb)|render|yield|return|give|produce|make|create +(verb)|produce|make|create +(verb)|beget|get|engender|father|mother|sire|bring forth|make|create +generation|7 +(noun)|coevals|contemporaries|people +(noun)|biological group +(noun)|time period|period of time|period +(noun)|phase|stage +(noun)|genesis|beginning +(noun)|production +(noun)|multiplication|propagation|reproduction|procreation|breeding|facts of life +generation x|1 +(noun)|generation X|gen X|generation +generational|1 +(adj)|people +generative|2 +(adj)|generative |productive|creative|originative +(adj)|procreative|reproductive|fruitful +generator|4 +(noun)|apparatus|setup +(noun)|engine +(noun)|source|author|maker|shaper +(noun)|electronic device +generic|3 +(adj)|taxonomic group|taxonomic category|taxon +(adj)|nonproprietary +(adj)|general +generic drug|1 +(noun)|drug +generosity|2 +(noun)|generousness|kindness +(noun)|unselfishness|sharing|share-out +generous|3 +(adj)|generous |benevolent|freehearted|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|lavish|munificent|overgenerous|prodigal|too-generous|unsparing|unstinted|unstinting|unselfish|charitable|unselfish +(adj)|generous |big|large|magnanimous|kind|ungrudging +(adj)|ample +generously|1 +(adv)|liberally|munificently +generousness|1 +(noun)|generosity|kindness +genesis|2 +(noun)|generation|beginning +(noun)|Genesis|Book of Genesis|book +genet|3 +(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat|diplomatist +(noun)|Genet|Jean Genet|novelist|dramatist|playwright +(noun)|Genetta genetta|viverrine|viverrine mammal +genetic|3 +(adj)|familial|hereditary|inherited|transmitted|transmissible|inheritable |heritable +(adj)|genic|sequence +(adj)|genetical|biology|biological science +genetic abnormality|1 +(noun)|genetic disease|genetic disorder|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease +genetic code|1 +(noun)|ordering|order|ordination +genetic constitution|1 +(noun)|genotype|constitution|composition|makeup +genetic counseling|1 +(noun)|guidance|counsel|counseling|counselling|direction +genetic defect|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease +genetic disease|1 +(noun)|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease +genetic disorder|1 +(noun)|genetic disease|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease +genetic endowment|1 +(noun)|heredity|property +genetic engineering|1 +(noun)|gene-splicing|recombinant DNA technology|biotechnology +genetic fingerprint|1 +(noun)|DNA fingerprint|biometric identification|biometric authentication|identity verification +genetic fingerprinting|1 +(noun)|genetic profiling|procedure|process +genetic map|1 +(noun)|arrangement|organization|organisation|system +genetic marker|1 +(noun)|gene|cistron|factor +genetic mutation|1 +(noun)|mutation|chromosomal mutation|change|alteration|modification +genetic profiling|1 +(noun)|genetic fingerprinting|procedure|process +genetic psychology|1 +(noun)|developmental psychology|child psychology|psychology|psychological science +genetic science|1 +(noun)|genetics|biology|biological science +genetic screening|1 +(noun)|screening +genetical|1 +(adj)|genetic +geneticist|1 +(noun)|biologist|life scientist +genetics|1 +(noun)|genetic science|biology|biological science +genetta|1 +(noun)|Genetta|genus Genetta|mammal genus +genetta genetta|1 +(noun)|genet|Genetta genetta|viverrine|viverrine mammal +geneva|2 +(noun)|Geneva|Geneve|Genf|city|metropolis|urban center +(noun)|Holland gin|Hollands|gin +geneva convention|1 +(noun)|Geneva Convention|convention +geneva gown|1 +(noun)|Geneva gown|academic gown|academic robe|judge's robe +geneve|1 +(noun)|Geneva|Geneve|Genf|city|metropolis|urban center +genf|1 +(noun)|Geneva|Geneve|Genf|city|metropolis|urban center +genghis khan|1 +(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Emperor +genial|3 +(adj)|affable|amiable|cordial|friendly +(adj)|mental|feature|lineament +(adj)|kind|benign |benignant +geniality|1 +(noun)|affability|affableness|amiability|amiableness|bonhomie|friendliness +genially|1 +(adv)|affably|amiably +genic|1 +(adj)|genetic|sequence +genicular vein|1 +(noun)|vena genus|vein|vena|venous blood vessel +geniculate|1 +(adj)|crooked +geniculate body|1 +(noun)|neural structure +genie|1 +(noun)|jinni|jinnee|djinni|djinny|spirit|disembodied spirit +genip|2 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +(noun)|Spanish lime|edible fruit +genipa|1 +(noun)|fruit tree +genipa americana|1 +(noun)|genipap fruit|jagua|marmalade box|Genipa Americana|genipa +genipap|1 +(noun)|genipap fruit|edible fruit +genipap fruit|2 +(noun)|jagua|marmalade box|Genipa Americana|genipa +(noun)|genipap|edible fruit +genista|1 +(noun)|Genista|genus Genista|rosid dicot genus +genista anglica|1 +(noun)|broom tree|needle furze|petty whin|Genista anglica|broom +genista hispanica|1 +(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom +genista raetam|1 +(noun)|retem|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub|bush +genista tinctoria|1 +(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom +genital|1 +(adj)|venereal|reproductive organ|sex organ +genital herpes|1 +(noun)|herpes genitalis|herpes simplex|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +genital organ|1 +(noun)|genitalia|genitals|private parts|privates|crotch|reproductive organ|sex organ +genital personality|1 +(noun)|personality +genital phase|1 +(noun)|genital stage|phase|stage +genital stage|1 +(noun)|genital phase|phase|stage +genital system|1 +(noun)|reproductive system|system +genital wart|1 +(noun)|venereal wart|condyloma acuminatum|verruca acuminata|wart|verruca +genitalia|1 +(noun)|genital organ|genitals|private parts|privates|crotch|reproductive organ|sex organ +genitals|1 +(noun)|genitalia|genital organ|private parts|privates|crotch|reproductive organ|sex organ +genitive|2 +(adj)|possessive|oblique|oblique case +(noun)|genitive case|possessive case|oblique|oblique case +genitive case|1 +(noun)|genitive|possessive case|oblique|oblique case +genitor|1 +(noun)|progenitor|primogenitor +genitourinary|1 +(adj)|gu|reproductive organ|sex organ|internal organ|viscus +genitourinary apparatus|1 +(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|systema urogenitale|apparatus urogenitalis|system +genitourinary system|1 +(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system +genius|5 +(noun)|mastermind|brain|Einstein|intellectual|intellect +(noun)|brilliance|intelligence +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +(noun)|wizardry|creativity|creativeness|creative thinking +(noun)|flair|endowment|gift|talent|natural endowment +genius loci|2 +(noun)|atmosphere|ambiance|ambience +(noun)|guardian spirit|guardian angel +genlisea|1 +(noun)|carnivorous plant +genoa|1 +(noun)|Genoa|Genova|city|metropolis|urban center +genocide|1 +(noun)|race murder|racial extermination|killing|kill|putting to death +genoese|1 +(adj)|Genoese|Genovese|city|metropolis|urban center +genoise|1 +(noun)|cake +genome|1 +(noun)|ordering|order|ordination +genomics|1 +(noun)|genetics|genetic science +genotype|2 +(noun)|biological group +(noun)|genetic constitution|constitution|composition|makeup +genotypic|1 +(adj)|genotypical|constitution|composition|makeup +genotypical|1 +(adj)|genotypic|constitution|composition|makeup +genova|1 +(noun)|Genoa|Genova|city|metropolis|urban center +genovese|1 +(adj)|Genoese|Genovese|city|metropolis|urban center +genre|4 +(noun)|kind|sort|form|variety +(noun)|writing style|literary genre|expressive style|style +(noun)|music genre|musical genre|musical style|expressive style|style|music +(noun)|art|fine art +genre painting|1 +(noun)|genre +gens|2 +(noun)|name|family|family line|folk|kinfolk|kinsfolk|sept|phratry +(noun)|gen|information|info +genseric|1 +(noun)|Genseric|Gaiseric|king|male monarch +gent|3 +(noun)|gentleman +(noun)|chap|fellow|feller|lad|fella|blighter|cuss|male|male person +(noun)|Gent|Gand|Ghent|city|metropolis|urban center|port +gentamicin|1 +(noun)|Garamycin|antibiotic|antibiotic drug +genteel|1 +(adj)|civilized|civilised|cultivated|cultured|polite|refined +genteelness|1 +(noun)|breeding|gentility|elegance +gentian|1 +(noun)|flower +gentian family|1 +(noun)|Gentianaceae|family Gentianaceae|dicot family|magnoliopsid family +gentian violet|1 +(noun)|crystal violet|stain|antibacterial|antibacterial drug|bactericide|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|vermifuge|anthelmintic|anthelminthic|helminthic +gentiana|1 +(noun)|Gentiana|genus Gentiana|dicot genus|magnoliopsid genus +gentiana acaulis|1 +(noun)|gentianella|Gentiana acaulis|gentian +gentiana andrewsii|1 +(noun)|closed gentian|blind gentian|bottle gentian|Gentiana andrewsii|gentian +gentiana calycosa|1 +(noun)|explorer's gentian|Gentiana calycosa|gentian +gentiana clausa|1 +(noun)|closed gentian|blind gentian|Gentiana clausa|gentian +gentiana crinita|1 +(noun)|Gentianopsis crinita|Gentiana crinita|fringed gentian +gentiana detonsa|1 +(noun)|Gentianopsis detonsa|Gentiana detonsa|fringed gentian +gentiana holopetala|1 +(noun)|tufted gentian|Gentianopsis holopetala|Gentiana holopetala|fringed gentian +gentiana lutea|1 +(noun)|great yellow gentian|Gentiana lutea|gentian +gentiana pneumonanthe|1 +(noun)|marsh gentian|calathian violet|Gentiana pneumonanthe|gentian +gentiana procera|1 +(noun)|Gentianopsid procera|Gentiana procera|fringed gentian +gentiana quinquefolia|1 +(noun)|agueweed|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +gentiana saponaria|1 +(noun)|soapwort gentian|Gentiana saponaria|gentian +gentiana thermalis|1 +(noun)|Gentianopsis thermalis|Gentiana thermalis|fringed gentian +gentiana villosa|1 +(noun)|striped gentian|Gentiana villosa|gentian +gentianaceae|1 +(noun)|Gentianaceae|family Gentianaceae|gentian family|dicot family|magnoliopsid family +gentianales|1 +(noun)|Gentianales|order Gentianales|plant order +gentianella|2 +(noun)|Gentianella|genus Gentianella|dicot genus|magnoliopsid genus +(noun)|Gentiana acaulis|gentian +gentianella amarella|1 +(noun)|felwort|gentian +gentianella quinquefolia|1 +(noun)|agueweed|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +gentianopsid procera|1 +(noun)|Gentianopsid procera|Gentiana procera|fringed gentian +gentianopsis|1 +(noun)|Gentianopsis|genus Gentianopsis|dicot genus|magnoliopsid genus +gentianopsis crinita|1 +(noun)|Gentianopsis crinita|Gentiana crinita|fringed gentian +gentianopsis detonsa|1 +(noun)|Gentianopsis detonsa|Gentiana detonsa|fringed gentian +gentianopsis holopetala|1 +(noun)|tufted gentian|Gentianopsis holopetala|Gentiana holopetala|fringed gentian +gentianopsis thermalis|1 +(noun)|Gentianopsis thermalis|Gentiana thermalis|fringed gentian +gentile|4 +(adj)|Christian +(noun)|heathen|pagan|infidel|nonreligious person +(noun)|Gentile|person|individual|someone|somebody|mortal|human|soul +(noun)|Gentile|non-Jew|goy|Christian +gentility|1 +(noun)|breeding|genteelness|elegance +gentle|10 +(adj)|mild +(adj)|kind +(adj)|soft +(adj)|aristocratic|aristocratical|blue|blue-blooded|patrician|noble +(adj)|docile|tame |tamed +(adj)|easy|soft|light +(adj)|easy|gradual +(verb)|pacify|lenify|conciliate|assuage|appease|mollify|placate|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|ennoble|entitle|promote|upgrade|advance|kick upstairs|raise|elevate +(verb)|pet +gentle breeze|1 +(noun)|breeze|zephyr|gentle wind|air +gentle wind|1 +(noun)|breeze|zephyr|air|wind|air current|current of air +gentleman|2 +(noun)|man|adult male +(noun)|valet|valet de chambre|gentleman's gentleman|man|manservant|body servant +gentleman's-cane|1 +(noun)|prince's-feather|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +gentleman's gentleman|1 +(noun)|valet|valet de chambre|gentleman|man|manservant|body servant +gentleman-at-arms|1 +(noun)|gentleman +gentleman jim|1 +(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter|gladiator +gentleman johnny|1 +(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general|full general +gentlemanlike|1 +(adj)|gentlemanly|refined +gentlemanly|1 +(adj)|gentlemanlike|refined +gentlemen's agreement|1 +(noun)|agreement|understanding +gentleness|2 +(noun)|gradualness|gradient|slope +(noun)|manner|personal manner +gentlewoman|1 +(noun)|dame|madam|ma'am|lady|woman|adult female +gently|2 +(adv)|mildly +(adv)|lightly|softly +gentrification|1 +(noun)|restoration +gentrify|1 +(verb)|refurbish|renovate|freshen up +gentry|1 +(noun)|aristocracy|upper class|upper crust +genu|1 +(noun)|knee|knee joint|articulatio genus|hinge joint|ginglymus|ginglymoid joint +genu valgum|1 +(noun)|knock-knee|tibia valga|leg|disability|disablement|handicap|impairment +genu varum|1 +(noun)|bowleg|tibia vara|leg|disability|disablement|handicap|impairment +genuflect|2 +(verb)|bow +(verb)|scrape|kowtow|bow +genuflection|1 +(noun)|genuflexion|bow|bowing|obeisance +genuflexion|1 +(noun)|genuflection|bow|bowing|obeisance +genuine|3 +(adj)|genuine |echt|authentic|bona fide|unquestionable|veritable|attested|authenticated|documented|good|honest-to-god|honest-to-goodness|old|sure-enough|real|true|honest|honorable|real|existent|sincere|true +(adj)|true|unfeigned|sincere +(adj)|actual|literal|real|true +genuinely|2 +(adv)|truly|really +(adv)|authentically +genuineness|2 +(noun)|actuality +(noun)|authenticity|legitimacy|credibility|credibleness|believability +genus|2 +(noun)|kind|sort|form|variety +(noun)|taxonomic group|taxonomic category|taxon +genus-fenusa|1 +(noun)|Fenusa|genus-Fenusa|arthropod genus +genus-megapodius|1 +(noun)|Megapodius|genus-Megapodius|bird genus +genus-milvus|1 +(noun)|Milvus|genus-Milvus|bird genus +genus abelia|1 +(noun)|genus Abelia|asterid dicot genus +genus abelmoschus|1 +(noun)|Abelmoschus|genus Abelmoschus|dilleniid dicot genus +genus abies|1 +(noun)|Abies|genus Abies|gymnosperm genus +genus abramis|1 +(noun)|Abramis|genus Abramis|fish genus +genus abrocoma|1 +(noun)|Abrocoma|genus Abrocoma|mammal genus +genus abronia|1 +(noun)|Abronia|genus Abronia|caryophylloid dicot genus +genus abudefduf|1 +(noun)|Abudefduf|genus Abudefduf|fish genus +genus abutilon|1 +(noun)|Abutilon|genus Abutilon|dilleniid dicot genus +genus acacia|1 +(noun)|genus Acacia|rosid dicot genus +genus acalypha|1 +(noun)|Acalypha|genus Acalypha|rosid dicot genus +genus acanthisitta|1 +(noun)|Acanthisitta|genus Acanthisitta|bird genus +genus acanthocereus|1 +(noun)|Acanthocereus|genus Acanthocereus|caryophylloid dicot genus +genus acanthocybium|1 +(noun)|Acanthocybium|genus Acanthocybium|fish genus +genus acanthophis|1 +(noun)|Acanthophis|genus Acanthophis|reptile genus +genus acanthoscelides|1 +(noun)|Acanthoscelides|genus Acanthoscelides|arthropod genus +genus acanthurus|1 +(noun)|Acanthurus|genus Acanthurus|fish genus +genus acanthus|1 +(noun)|genus Acanthus|asterid dicot genus +genus accipiter|1 +(noun)|Accipiter|genus Accipiter|bird genus +genus acer|1 +(noun)|Acer|genus Acer|dicot genus|magnoliopsid genus +genus acherontia|1 +(noun)|Acherontia|genus Acherontia|arthropod genus +genus acheta|1 +(noun)|Acheta|genus Acheta|arthropod genus +genus achillea|1 +(noun)|genus Achillea|asterid dicot genus +genus achimenes|1 +(noun)|genus Achimenes|asterid dicot genus +genus achoerodus|1 +(noun)|Achoerodus|genus Achoerodus|fish genus +genus achras|1 +(noun)|Achras|genus Achras|dicot genus|magnoliopsid genus +genus acinonyx|1 +(noun)|Acinonyx|genus Acinonyx|mammal genus +genus acinos|1 +(noun)|Acinos|genus Acinos|asterid dicot genus +genus acipenser|1 +(noun)|Acipenser|genus Acipenser|fish genus +genus acocanthera|1 +(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus|magnoliopsid genus +genus acokanthera|1 +(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus|magnoliopsid genus +genus aconitum|1 +(noun)|Aconitum|genus Aconitum|magnoliid dicot genus +genus acorus|1 +(noun)|Acorus|genus Acorus|monocot genus|liliopsid genus +genus acridotheres|1 +(noun)|Acridotheres|genus Acridotheres|bird genus +genus acris|1 +(noun)|Acris|genus Acris|amphibian genus +genus acrobates|1 +(noun)|Acrobates|genus Acrobates|mammal genus +genus acrocarpus|1 +(noun)|Acrocarpus|genus Acrocarpus|rosid dicot genus +genus acrocephalus|1 +(noun)|Acrocephalus|genus Acrocephalus|bird genus +genus acroclinium|1 +(noun)|Acroclinium|genus Acroclinium|asterid dicot genus +genus acrocomia|1 +(noun)|Acrocomia|genus Acrocomia|monocot genus|liliopsid genus +genus acropora|1 +(noun)|Acropora|genus Acropora|coelenterate genus +genus acrostichum|1 +(noun)|Acrostichum|genus Acrostichum|fern genus +genus actaea|1 +(noun)|Actaea|genus Actaea|magnoliid dicot genus +genus actias|1 +(noun)|Actias|genus Actias|arthropod genus +genus actinia|1 +(noun)|Actinia|genus Actinia|coelenterate genus +genus actinidia|1 +(noun)|Actinidia|genus Actinidia|dilleniid dicot genus +genus actiniopteris|1 +(noun)|Actiniopteris|genus Actiniopteris|fern genus +genus actinomeris|1 +(noun)|Actinomeris|genus Actinomeris|asterid dicot genus +genus actinomyces|1 +(noun)|genus Actinomyces|bacteria genus +genus actitis|1 +(noun)|Actitis|genus Actitis|bird genus +genus adalia|1 +(noun)|Adalia|genus Adalia|arthropod genus +genus adansonia|1 +(noun)|Adansonia|genus Adansonia|dilleniid dicot genus +genus addax|1 +(noun)|genus Addax|mammal genus +genus adelges|1 +(noun)|Adelges|genus Adelges|arthropod genus +genus adenanthera|1 +(noun)|Adenanthera|genus Adenanthera|rosid dicot genus +genus adenium|1 +(noun)|Adenium|genus Adenium|dicot genus|magnoliopsid genus +genus adenota|1 +(noun)|Adenota|genus Adenota|mammal genus +genus adiantum|1 +(noun)|Adiantum|genus Adiantum|fern genus +genus adlumia|1 +(noun)|Adlumia|genus Adlumia|dilleniid dicot genus +genus adonis|1 +(noun)|Adonis|genus Adonis|magnoliid dicot genus +genus aedes|1 +(noun)|Aedes|genus Aedes|arthropod genus +genus aegiceras|1 +(noun)|Aegiceras|genus Aegiceras|asterid dicot genus +genus aegilops|1 +(noun)|Aegilops|genus Aegilops|monocot genus|liliopsid genus +genus aegypius|1 +(noun)|Aegypius|genus Aegypius|bird genus +genus aegyptopithecus|1 +(noun)|genus Aegyptopithecus|mammal genus +genus aeonium|1 +(noun)|Aeonium|genus Aeonium|plant genus +genus aepyceros|1 +(noun)|Aepyceros|genus Aepyceros|mammal genus +genus aepyornis|1 +(noun)|genus Aepyornis|bird genus +genus aerides|1 +(noun)|genus Aerides|monocot genus|liliopsid genus +genus aerobacter|1 +(noun)|Aerobacter|genus Aerobacter|bacteria genus +genus aeschynanthus|1 +(noun)|genus Aeschynanthus|asterid dicot genus +genus aesculus|1 +(noun)|Aesculus|genus Aesculus|dicot genus|magnoliopsid genus +genus aethionema|1 +(noun)|Aethionema|genus Aethionema|dilleniid dicot genus +genus aethusa|1 +(noun)|Aethusa|genus Aethusa|rosid dicot genus +genus aetobatus|1 +(noun)|Aetobatus|genus Aetobatus|fish genus +genus aframomum|1 +(noun)|Aframomum|genus Aframomum|plant genus +genus afrocarpus|1 +(noun)|Afrocarpus|genus Afrocarpus|gymnosperm genus +genus afropavo|1 +(noun)|genus Afropavo|bird genus +genus agalinis|1 +(noun)|Agalinis|genus Agalinis|asterid dicot genus +genus agama|1 +(noun)|genus Agama|reptile genus +genus agapanthus|1 +(noun)|genus Agapanthus|liliid monocot genus +genus agapornis|1 +(noun)|Agapornis|genus Agapornis|bird genus +genus agaricus|1 +(noun)|Agaricus|genus Agaricus|fungus genus +genus agastache|1 +(noun)|Agastache|genus Agastache|asterid dicot genus +genus agathis|1 +(noun)|Agathis|genus Agathis|gymnosperm genus +genus agave|1 +(noun)|genus Agave|liliid monocot genus +genus agdestis|1 +(noun)|Agdestis|genus Agdestis|caryophylloid dicot genus +genus agelaius|1 +(noun)|Agelaius|genus Agelaius|bird genus +genus ageratina|1 +(noun)|Ageratina|genus Ageratina|asterid dicot genus +genus ageratum|1 +(noun)|genus Ageratum|asterid dicot genus +genus agkistrodon|1 +(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus +genus aglaomorpha|1 +(noun)|Aglaomorpha|genus Aglaomorpha|fern genus +genus aglaonema|1 +(noun)|Aglaonema|genus Aglaonema|monocot genus|liliopsid genus +genus agonus|1 +(noun)|Agonus|genus Agonus|fish genus +genus agrimonia|1 +(noun)|genus Agrimonia|rosid dicot genus +genus agriocharis|1 +(noun)|Agriocharis|genus Agriocharis|bird genus +genus agrobacterium|1 +(noun)|Agrobacterium|genus Agrobacterium|bacteria genus +genus agropyron|1 +(noun)|Agropyron|genus Agropyron|monocot genus|liliopsid genus +genus agrostemma|1 +(noun)|Agrostemma|genus Agrostemma|caryophylloid dicot genus +genus agrostis|1 +(noun)|Agrostis|genus Agrostis|plant genus +genus ailanthus|1 +(noun)|genus Ailanthus|rosid dicot genus +genus ailuropoda|1 +(noun)|Ailuropoda|genus Ailuropoda|mammal genus +genus ailurus|1 +(noun)|Ailurus|genus Ailurus|mammal genus +genus aix|1 +(noun)|Aix|genus Aix|bird genus +genus ajaia|1 +(noun)|Ajaia|genus Ajaia|bird genus +genus ajuga|1 +(noun)|Ajuga|genus Ajuga|asterid dicot genus +genus alauda|1 +(noun)|Alauda|genus Alauda|bird genus +genus albatrellus|1 +(noun)|Albatrellus|genus Albatrellus|fungus genus +genus albizia|1 +(noun)|genus Albizia|genus Albizzia|rosid dicot genus +genus albizzia|1 +(noun)|genus Albizia|genus Albizzia|rosid dicot genus +genus albuca|1 +(noun)|genus Albuca|liliid monocot genus +genus albugo|1 +(noun)|Albugo|genus Albugo|fungus genus +genus albula|1 +(noun)|Albula|genus Albula|fish genus +genus alca|1 +(noun)|Alca|genus Alca|bird genus +genus alcea|1 +(noun)|Alcea|genus Alcea|dilleniid dicot genus +genus alcedo|1 +(noun)|Alcedo|genus Alcedo|bird genus +genus alcelaphus|1 +(noun)|Alcelaphus|genus Alcelaphus|mammal genus +genus alces|1 +(noun)|Alces|genus Alces|mammal genus +genus aldrovanda|1 +(noun)|Aldrovanda|genus Aldrovanda|dicot genus|magnoliopsid genus +genus alectis|1 +(noun)|Alectis|genus Alectis|fish genus +genus alectoria|1 +(noun)|Alectoria|genus Alectoria|fungus genus +genus alectoris|1 +(noun)|Alectoris|genus Alectoris|bird genus +genus alectura|1 +(noun)|Alectura|genus Alectura|bird genus +genus alepisaurus|1 +(noun)|Alepisaurus|genus Alepisaurus|fish genus +genus aletris|1 +(noun)|Aletris|genus Aletris|liliid monocot genus +genus aleurites|1 +(noun)|Aleurites|genus Aleurites|rosid dicot genus +genus aleyrodes|1 +(noun)|Aleyrodes|genus Aleyrodes|arthropod genus +genus algeripithecus|1 +(noun)|Algeripithecus|genus Algeripithecus|mammal genus +genus alisma|1 +(noun)|Alisma|genus Alisma|monocot genus|liliopsid genus +genus allamanda|1 +(noun)|genus Allamanda|dicot genus|magnoliopsid genus +genus alliaria|1 +(noun)|Alliaria|genus Alliaria|dilleniid dicot genus +genus alligator|1 +(noun)|genus Alligator|reptile genus +genus allionia|1 +(noun)|Allionia|genus Allionia|caryophylloid dicot genus +genus allium|1 +(noun)|Allium|genus Allium|liliid monocot genus +genus allosaurus|1 +(noun)|genus Allosaurus|genus Antrodemus|reptile genus +genus alnus|1 +(noun)|Alnus|genus Alnus|hamamelid dicot genus +genus alocasia|1 +(noun)|genus Alocasia|monocot genus|liliopsid genus +genus aloe|1 +(noun)|genus Aloe|liliid monocot genus +genus alopecurus|1 +(noun)|Alopecurus|genus Alopecurus|monocot genus|liliopsid genus +genus alopex|1 +(noun)|Alopex|genus Alopex|mammal genus +genus alopius|1 +(noun)|Alopius|genus Alopius|fish genus +genus alosa|1 +(noun)|Alosa|genus Alosa|fish genus +genus alouatta|1 +(noun)|Alouatta|genus Alouatta|mammal genus +genus alpinia|1 +(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus +genus alsobia|1 +(noun)|Alsobia|genus Alsobia|asterid dicot genus +genus alsophila|1 +(noun)|Alsophila|genus Alsophila|arthropod genus +genus alstonia|1 +(noun)|Alstonia|genus Alstonia|dicot genus|magnoliopsid genus +genus alstroemeria|1 +(noun)|genus Alstroemeria|liliid monocot genus +genus alternanthera|1 +(noun)|Alternanthera|genus Alternanthera|caryophylloid dicot genus +genus althaea|1 +(noun)|genus Althaea|dilleniid dicot genus +genus alyssum|1 +(noun)|Alyssum|genus Alyssum|dilleniid dicot genus +genus alytes|1 +(noun)|Alytes|genus Alytes|amphibian genus +genus amanita|1 +(noun)|Amanita|genus Amanita|fungus genus +genus amaranthus|1 +(noun)|Amaranthus|genus Amaranthus|caryophylloid dicot genus +genus amaryllis|1 +(noun)|genus Amaryllis|liliid monocot genus +genus amauropelta|1 +(noun)|Amauropelta|genus Amauropelta|fern genus +genus amazona|1 +(noun)|Amazona|genus Amazona|bird genus +genus amberboa|1 +(noun)|Amberboa|genus Amberboa|asterid dicot genus +genus ambloplites|1 +(noun)|Ambloplites|genus Ambloplites|fish genus +genus amblyrhynchus|1 +(noun)|Amblyrhynchus|genus Amblyrhynchus|reptile genus +genus ambrosia|1 +(noun)|genus Ambrosia|asterid dicot genus +genus ambystoma|1 +(noun)|Ambystoma|genus Ambystoma|amphibian genus +genus ameiurus|1 +(noun)|Ameiurus|genus Ameiurus|fish genus +genus amelanchier|1 +(noun)|Amelanchier|genus Amelanchier|rosid dicot genus +genus amia|1 +(noun)|Amia|genus Amia|fish genus +genus amianthum|1 +(noun)|Amianthum|genus Amianthum|liliid monocot genus +genus ammobium|1 +(noun)|genus Ammobium|asterid dicot genus +genus ammodytes|1 +(noun)|Ammodytes|genus Ammodytes|fish genus +genus ammotragus|1 +(noun)|Ammotragus|genus Ammotragus|mammal genus +genus amoeba|1 +(noun)|genus Amoeba|protoctist genus +genus amorpha|1 +(noun)|genus Amorpha|rosid dicot genus +genus amorphophallus|1 +(noun)|genus Amorphophallus|monocot genus|liliopsid genus +genus amphibolips|1 +(noun)|Amphibolips|genus Amphibolips|arthropod genus +genus amphicarpa|1 +(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus +genus amphicarpaea|1 +(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus +genus amphioxus|1 +(noun)|genus Amphioxus|chordate genus +genus amphiprion|1 +(noun)|Amphiprion|genus Amphiprion|fish genus +genus amphisbaena|1 +(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus +genus amphisbaenia|1 +(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus +genus amphiuma|1 +(noun)|genus Amphiuma|amphibian genus +genus amsinckia|1 +(noun)|Amsinckia|genus Amsinckia|plant genus +genus amsonia|1 +(noun)|Amsonia|genus Amsonia|dicot genus|magnoliopsid genus +genus amygdalus|1 +(noun)|Amygdalus|genus Amygdalus|rosid dicot genus +genus anabas|1 +(noun)|Anabas|genus Anabas|fish genus +genus anabrus|1 +(noun)|Anabrus|genus Anabrus|arthropod genus +genus anacardium|1 +(noun)|Anacardium|genus Anacardium|dicot genus|magnoliopsid genus +genus anacyclus|1 +(noun)|Anacyclus|genus Anacyclus|asterid dicot genus +genus anadenanthera|1 +(noun)|Anadenanthera|genus Anadenanthera|rosid dicot genus +genus anagallis|1 +(noun)|Anagallis|genus Anagallis|dicot genus|magnoliopsid genus +genus anagasta|1 +(noun)|Anagasta|genus Anagasta|arthropod genus +genus anagyris|1 +(noun)|Anagyris|genus Anagyris|rosid dicot genus +genus ananas|1 +(noun)|Ananas|genus Ananas|monocot genus|liliopsid genus +genus anaphalis|1 +(noun)|Anaphalis|genus Anaphalis|asterid dicot genus +genus anarhichas|1 +(noun)|Anarhichas|genus Anarhichas|fish genus +genus anas|1 +(noun)|Anas|genus Anas|bird genus +genus anasa|1 +(noun)|Anasa|genus Anasa|arthropod genus +genus anastatica|1 +(noun)|Anastatica|genus Anastatica|dilleniid dicot genus +genus anastomus|1 +(noun)|Anastomus|genus Anastomus|bird genus +genus anatotitan|1 +(noun)|genus Anatotitan|reptile genus +genus anchusa|1 +(noun)|genus Anchusa|plant genus +genus ancistrodon|1 +(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus +genus ancylus|1 +(noun)|Ancylus|genus Ancylus|mollusk genus +genus andira|1 +(noun)|Andira|genus Andira|rosid dicot genus +genus andreaea|1 +(noun)|Andreaea|genus Andreaea|moss genus +genus andrena|1 +(noun)|genus Andrena|arthropod genus +genus andricus|1 +(noun)|Andricus|genus Andricus|arthropod genus +genus andromeda|1 +(noun)|genus Andromeda|dilleniid dicot genus +genus andropogon|1 +(noun)|Andropogon|genus Andropogon|monocot genus|liliopsid genus +genus andryala|1 +(noun)|genus Andryala|asterid dicot genus +genus aneides|1 +(noun)|Aneides|genus Aneides|amphibian genus +genus anemia|1 +(noun)|Anemia|genus Anemia|fern genus +genus anemone|1 +(noun)|genus Anemone|magnoliid dicot genus +genus anemonella|1 +(noun)|Anemonella|genus Anemonella|magnoliid dicot genus +genus anemopsis|1 +(noun)|Anemopsis|genus Anemopsis|dicot genus|magnoliopsid genus +genus anethum|1 +(noun)|Anethum|genus Anethum|rosid dicot genus +genus angelica|1 +(noun)|genus Angelica|rosid dicot genus|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family +genus angiopteris|1 +(noun)|genus Angiopteris|fern genus +genus angraecum|1 +(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus|liliopsid genus +genus angrecum|1 +(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus|liliopsid genus +genus anguilla|1 +(noun)|Anguilla|genus Anguilla|fish genus +genus anguillula|1 +(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus +genus anguis|1 +(noun)|Anguis|genus Anguis|reptile genus +genus anhima|1 +(noun)|Anhima|genus Anhima|bird genus +genus anhinga|1 +(noun)|genus Anhinga|bird genus +genus anigozanthus|1 +(noun)|Anigozanthus|genus Anigozanthus|monocot genus|liliopsid genus +genus anisotremus|1 +(noun)|Anisotremus|genus Anisotremus|fish genus +genus ankylosaurus|1 +(noun)|genus Ankylosaurus|reptile genus +genus annona|1 +(noun)|Annona|genus Annona|magnoliid dicot genus +genus anoa|1 +(noun)|genus Anoa|mammal genus +genus anodonta|1 +(noun)|Anodonta|genus Anodonta|mollusk genus +genus anoectochilus|1 +(noun)|Anoectochilus|genus Anoectochilus|monocot genus|liliopsid genus +genus anogramma|1 +(noun)|Anogramma|genus Anogramma|fern genus +genus anolis|1 +(noun)|Anolis|genus Anolis|reptile genus +genus anomala|1 +(noun)|Anomala|genus Anomala|arthropod genus +genus anomalops|1 +(noun)|genus Anomalops|fish genus +genus anomalopteryx|1 +(noun)|genus Anomalopteryx|bird genus +genus anomia|1 +(noun)|Anomia|genus Anomia|mollusk genus +genus anopheles|1 +(noun)|Anopheles|genus Anopheles|arthropod genus +genus anser|1 +(noun)|Anser|genus Anser|bird genus +genus antedon|1 +(noun)|Antedon|genus Antedon|echinoderm genus +genus antennaria|1 +(noun)|Antennaria|genus Antennaria|asterid dicot genus +genus anthemis|1 +(noun)|Anthemis|genus Anthemis|asterid dicot genus +genus antheraea|1 +(noun)|Antheraea|genus Antheraea|arthropod genus +genus anthericum|1 +(noun)|Anthericum|genus Anthericum|liliid monocot genus +genus antheropeas|1 +(noun)|Antheropeas|genus Antheropeas|asterid dicot genus +genus anthidium|1 +(noun)|Anthidium|genus Anthidium|arthropod genus +genus anthoceros|1 +(noun)|Anthoceros|genus Anthoceros|moss genus +genus anthonomus|1 +(noun)|Anthonomus|genus Anthonomus|arthropod genus +genus anthriscus|1 +(noun)|Anthriscus|genus Anthriscus|rosid dicot genus +genus anthurium|1 +(noun)|genus Anthurium|monocot genus|liliopsid genus +genus anthus|1 +(noun)|Anthus|genus Anthus|bird genus +genus anthyllis|1 +(noun)|Anthyllis|genus Anthyllis|rosid dicot genus +genus antidorcas|1 +(noun)|Antidorcas|genus Antidorcas|mammal genus +genus antigonia|1 +(noun)|Antigonia|genus Antigonia|fish genus +genus antilocapra|1 +(noun)|Antilocapra|genus Antilocapra|mammal genus +genus antilope|1 +(noun)|Antilope|genus Antilope|mammal genus +genus antirrhinum|1 +(noun)|Antirrhinum|genus Antirrhinum|asterid dicot genus +genus antrodemus|1 +(noun)|genus Allosaurus|genus Antrodemus|reptile genus +genus antrozous|1 +(noun)|Antrozous|genus Antrozous|mammal genus +genus aotus|1 +(noun)|Aotus|genus Aotus|mammal genus +genus apatosaurus|1 +(noun)|genus Apatosaurus|genus Brontosaurus|reptile genus +genus apatura|1 +(noun)|Apatura|genus Apatura|arthropod genus +genus aphis|1 +(noun)|Aphis|genus Aphis|arthropod genus +genus aphriza|1 +(noun)|Aphriza|genus Aphriza|bird genus +genus aphrophora|1 +(noun)|Aphrophora|genus Aphrophora|arthropod genus +genus aphyllanthes|1 +(noun)|Aphyllanthes|genus Aphyllanthes|liliid monocot genus +genus apios|1 +(noun)|Apios|genus Apios|rosid dicot genus +genus apis|1 +(noun)|Apis|genus Apis|arthropod genus +genus apium|1 +(noun)|Apium|genus Apium|rosid dicot genus +genus aplectrum|1 +(noun)|Aplectrum|genus Aplectrum|monocot genus|liliopsid genus +genus aplodontia|1 +(noun)|Aplodontia|genus Aplodontia|mammal genus +genus aplysia|1 +(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus +genus apocynum|1 +(noun)|Apocynum|genus Apocynum|dicot genus|magnoliopsid genus +genus apodemus|1 +(noun)|Apodemus|genus Apodemus|mammal genus +genus apogon|1 +(noun)|Apogon|genus Apogon|fish genus +genus aporocactus|1 +(noun)|Aporocactus|genus Aporocactus|caryophylloid dicot genus +genus appendicularia|1 +(noun)|genus Appendicularia|chordate genus +genus aptenodytes|1 +(noun)|Aptenodytes|genus Aptenodytes|bird genus +genus apteryx|1 +(noun)|genus Apteryx|bird genus +genus apus|1 +(noun)|Apus|genus Apus|bird genus +genus aquila|1 +(noun)|Aquila|genus Aquila|bird genus +genus aquilegia|1 +(noun)|genus Aquilegia|magnoliid dicot genus +genus ara|1 +(noun)|Ara|genus Ara|bird genus +genus arabidopsis|1 +(noun)|Arabidopsis|genus Arabidopsis|dilleniid dicot genus +genus arabis|1 +(noun)|Arabis|genus Arabis|dilleniid dicot genus +genus arachis|1 +(noun)|Arachis|genus Arachis|rosid dicot genus +genus aralia|1 +(noun)|genus Aralia|rosid dicot genus +genus aramus|1 +(noun)|Aramus|genus Aramus|bird genus +genus aranea|1 +(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus +genus araneus|1 +(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus +genus araucaria|1 +(noun)|genus Araucaria|gymnosperm genus +genus araujia|1 +(noun)|Araujia|genus Araujia|dicot genus|magnoliopsid genus +genus arbutus|1 +(noun)|genus Arbutus|dilleniid dicot genus +genus arca|1 +(noun)|Arca|genus Arca|mollusk genus +genus arcella|1 +(noun)|genus Arcella|protoctist genus +genus arceuthobium|1 +(noun)|Arceuthobium|genus Arceuthobium|dilleniid dicot genus +genus archaeopteryx|1 +(noun)|genus Archaeopteryx|genus Archeopteryx|bird genus +genus archaeornis|1 +(noun)|genus Archaeornis|bird genus +genus archeopteryx|1 +(noun)|genus Archaeopteryx|genus Archeopteryx|bird genus +genus archidiskidon|1 +(noun)|Archidiskidon|genus Archidiskidon|mammal genus +genus archilochus|1 +(noun)|Archilochus|genus Archilochus|bird genus +genus architeuthis|1 +(noun)|genus Architeuthis|arthropod genus +genus archosargus|1 +(noun)|Archosargus|genus Archosargus|fish genus +genus arctictis|1 +(noun)|Arctictis|genus Arctictis|mammal genus +genus arctium|1 +(noun)|Arctium|genus Arctium|asterid dicot genus +genus arctocebus|1 +(noun)|Arctocebus|genus Arctocebus|mammal genus +genus arctocephalus|1 +(noun)|Arctocephalus|genus Arctocephalus|mammal genus +genus arctonyx|1 +(noun)|Arctonyx|genus Arctonyx|mammal genus +genus arctostaphylos|1 +(noun)|Arctostaphylos|genus Arctostaphylos|dilleniid dicot genus +genus arctotis|1 +(noun)|Arctotis|genus Arctotis|asterid dicot genus +genus ardea|1 +(noun)|Ardea|genus Ardea|bird genus +genus ardisia|1 +(noun)|Ardisia|genus Ardisia|dicot genus|magnoliopsid genus +genus areca|1 +(noun)|genus Areca|monocot genus|liliopsid genus +genus arenaria|2 +(noun)|Arenaria|genus Arenaria|caryophylloid dicot genus +(noun)|Arenaria|genus Arenaria|bird genus +genus arenga|1 +(noun)|Arenga|genus Arenga|plant genus +genus arethusa|1 +(noun)|genus Arethusa|monocot genus|liliopsid genus +genus argemone|1 +(noun)|genus Argemone|dilleniid dicot genus +genus argentina|1 +(noun)|Argentina|genus Argentina|fish genus +genus argentinosaurus|1 +(noun)|genus Argentinosaurus|titanosaur|titanosaurian +genus argiope|1 +(noun)|Argiope|genus Argiope|arthropod genus +genus argonauta|1 +(noun)|Argonauta|genus Argonauta|mollusk genus +genus argusianus|1 +(noun)|Argusianus|genus Argusianus|bird genus +genus argynnis|1 +(noun)|Argynnis|genus Argynnis|arthropod genus +genus argyranthemum|1 +(noun)|Argyranthemum|genus Argyranthemum|asterid dicot genus +genus argyreia|1 +(noun)|Argyreia|genus Argyreia|dicot genus|magnoliopsid genus +genus argyrotaenia|1 +(noun)|Argyrotaenia|genus Argyrotaenia|arthropod genus +genus argyroxiphium|1 +(noun)|Argyroxiphium|genus Argyroxiphium|asterid dicot genus +genus arilus|1 +(noun)|Arilus|genus Arilus|arthropod genus +genus ariocarpus|1 +(noun)|Ariocarpus|genus Ariocarpus|caryophylloid dicot genus +genus ariomma|1 +(noun)|Ariomma|genus Ariomma|fish genus +genus arisaema|1 +(noun)|Arisaema|genus Arisaema|monocot genus|liliopsid genus +genus arisarum|1 +(noun)|Arisarum|genus Arisarum|monocot genus|liliopsid genus +genus aristolochia|1 +(noun)|Aristolochia|genus Aristolochia|dicot genus|magnoliopsid genus +genus aristotelia|1 +(noun)|Aristotelia|genus Aristotelia|dilleniid dicot genus +genus arius|1 +(noun)|Arius|genus Arius|fish genus +genus arizona|1 +(noun)|Arizona|genus Arizona|reptile genus +genus armadillidium|1 +(noun)|Armadillidium|genus Armadillidium|arthropod genus +genus armeria|1 +(noun)|Armeria|genus Armeria|dicot genus|magnoliopsid genus +genus armillaria|1 +(noun)|Armillaria|genus Armillaria|fungus genus +genus armillariella|1 +(noun)|Armillariella|genus Armillariella|fungus genus +genus armoracia|1 +(noun)|Armoracia|genus Armoracia|dilleniid dicot genus +genus arnica|1 +(noun)|genus Arnica|asterid dicot genus +genus arnoseris|1 +(noun)|Arnoseris|genus Arnoseris|asterid dicot genus +genus arrhenatherum|1 +(noun)|Arrhenatherum|genus Arrhenatherum|plant genus +genus artamus|1 +(noun)|Artamus|genus Artamus|bird genus +genus artemia|1 +(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus +genus artemisia|1 +(noun)|genus Artemisia|asterid dicot genus +genus arthropteris|1 +(noun)|Arthropteris|genus Arthropteris|fern genus +genus artocarpus|1 +(noun)|Artocarpus|genus Artocarpus|dicot genus|magnoliopsid genus +genus arum|1 +(noun)|genus Arum|monocot genus|liliopsid genus +genus arundinaria|1 +(noun)|Arundinaria|genus Arundinaria|monocot genus|liliopsid genus +genus arundo|1 +(noun)|Arundo|genus Arundo|monocot genus|liliopsid genus +genus arvicola|1 +(noun)|Arvicola|genus Arvicola|mammal genus +genus asarum|1 +(noun)|Asarum|genus Asarum|dicot genus|magnoliopsid genus +genus ascaphus|1 +(noun)|Ascaphus|genus Ascaphus|amphibian genus +genus ascaridia|1 +(noun)|Ascaridia|genus Ascaridia|worm genus +genus ascaris|1 +(noun)|Ascaris|genus Ascaris|worm genus +genus asclepias|1 +(noun)|Asclepias|genus Asclepias|dicot genus|magnoliopsid genus +genus ascophyllum|1 +(noun)|Ascophyllum|genus Ascophyllum|protoctist genus +genus asimina|1 +(noun)|Asimina|genus Asimina|magnoliid dicot genus +genus asio|1 +(noun)|Asio|genus Asio|bird genus +genus aspalathus|1 +(noun)|Aspalathus|genus Aspalathus|rosid dicot genus +genus asparagus|1 +(noun)|genus Asparagus|liliid monocot genus +genus aspergillus|1 +(noun)|Aspergillus|genus Aspergillus|fungus genus +genus asperula|1 +(noun)|Asperula|genus Asperula|asterid dicot genus +genus asphodeline|1 +(noun)|Asphodeline|genus Asphodeline|liliid monocot genus +genus asphodelus|1 +(noun)|Asphodelus|genus Asphodelus|liliid monocot genus +genus aspidelaps|1 +(noun)|Aspidelaps|genus Aspidelaps|reptile genus +genus aspidiotus|1 +(noun)|Aspidiotus|genus Aspidiotus|arthropod genus +genus aspidistra|1 +(noun)|genus Aspidistra|liliid monocot genus +genus aspidophoroides|1 +(noun)|Aspidophoroides|genus Aspidophoroides|fish genus +genus aspis|1 +(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus +genus asplenium|1 +(noun)|Asplenium|genus Asplenium|fern genus +genus astacus|1 +(noun)|Astacus|genus Astacus|arthropod genus +genus aster|1 +(noun)|genus Aster|asterid dicot genus +genus astilbe|1 +(noun)|genus Astilbe|rosid dicot genus +genus astragalus|1 +(noun)|Astragalus|genus Astragalus|rosid dicot genus +genus astrantia|1 +(noun)|genus Astrantia|rosid dicot genus +genus astreus|1 +(noun)|Astreus|genus Astreus|fungus genus +genus astroloma|1 +(noun)|Astroloma|genus Astroloma|dilleniid dicot genus +genus astronium|1 +(noun)|Astronium|genus Astronium|dicot genus|magnoliopsid genus +genus astrophyton|1 +(noun)|Astrophyton|genus Astrophyton|echinoderm genus +genus astropogon|1 +(noun)|Astropogon|genus Astropogon|fish genus +genus ateles|1 +(noun)|Ateles|genus Ateles|mammal genus +genus athene|1 +(noun)|Athene|genus Athene|bird genus +genus atherinopsis|1 +(noun)|Atherinopsis|genus Atherinopsis|fish genus +genus atherurus|1 +(noun)|Atherurus|genus Atherurus|mammal genus +genus athrotaxis|1 +(noun)|Athrotaxis|genus Athrotaxis|gymnosperm genus +genus athyrium|1 +(noun)|Athyrium|genus Athyrium|fern genus +genus atrichornis|1 +(noun)|Atrichornis|genus Atrichornis|bird genus +genus atriplex|1 +(noun)|Atriplex|genus Atriplex|caryophylloid dicot genus +genus atropa|1 +(noun)|Atropa|genus Atropa|asterid dicot genus +genus attalea|1 +(noun)|Attalea|genus Attalea|monocot genus|liliopsid genus +genus atticus|1 +(noun)|Atticus|genus Atticus|arthropod genus +genus aucuba|1 +(noun)|Aucuba|genus Aucuba|rosid dicot genus +genus aulacorhyncus|1 +(noun)|Aulacorhyncus|genus Aulacorhyncus|bird genus +genus aulostomus|1 +(noun)|Aulostomus|genus Aulostomus|fish genus +genus aureolaria|1 +(noun)|Aureolaria|genus Aureolaria|asterid dicot genus +genus auricularia|1 +(noun)|Auricularia|genus Auricularia|fungus genus +genus auriparus|1 +(noun)|Auriparus|genus Auriparus|bird genus +genus australopithecus|1 +(noun)|genus Australopithecus|Australopithecus|mammal genus +genus austrocedrus|1 +(noun)|Austrocedrus|genus Austrocedrus|gymnosperm genus +genus austrotaxus|1 +(noun)|Austrotaxus|genus Austrotaxus|gymnosperm genus +genus automeris|1 +(noun)|Automeris|genus Automeris|arthropod genus +genus avahi|1 +(noun)|Avahi|genus Avahi|mammal genus +genus avena|1 +(noun)|Avena|genus Avena|plant genus +genus averrhoa|1 +(noun)|Averrhoa|genus Averrhoa|rosid dicot genus +genus avicennia|1 +(noun)|Avicennia|genus Avicennia|asterid dicot genus +genus ayapana|1 +(noun)|genus Ayapana|rosid dicot genus +genus aythya|1 +(noun)|Aythya|genus Aythya|bird genus +genus azadirachta|1 +(noun)|Azadirachta|genus Azadirachta|rosid dicot genus +genus azolla|1 +(noun)|Azolla|genus Azolla|fern genus +genus babesia|1 +(noun)|genus Babesia|genus Piroplasma|protoctist genus +genus babyrousa|1 +(noun)|Babyrousa|genus Babyrousa|mammal genus +genus baccharis|1 +(noun)|Baccharis|genus Baccharis|asterid dicot genus +genus bacillus|1 +(noun)|genus Bacillus|bacteria genus +genus bacteroides|1 +(noun)|Bacteroides|genus Bacteroides|bacteria genus +genus baiomys|1 +(noun)|Baiomys|genus Baiomys|mammal genus +genus bairdiella|1 +(noun)|Bairdiella|genus Bairdiella|fish genus +genus balaena|1 +(noun)|Balaena|genus Balaena|mammal genus +genus balaeniceps|1 +(noun)|Balaeniceps|genus Balaeniceps|bird genus +genus balaenoptera|1 +(noun)|Balaenoptera|genus Balaenoptera|mammal genus +genus balanus|1 +(noun)|Balanus|genus Balanus|arthropod genus +genus balistes|1 +(noun)|Balistes|genus Balistes|fish genus +genus ballota|1 +(noun)|Ballota|genus Ballota|asterid dicot genus +genus balsamorhiza|1 +(noun)|Balsamorhiza|genus Balsamorhiza|asterid dicot genus +genus bambusa|1 +(noun)|Bambusa|genus Bambusa|monocot genus|liliopsid genus +genus bankia|1 +(noun)|Bankia|genus Bankia|mollusk genus +genus banksia|1 +(noun)|genus Banksia|dicot genus|magnoliopsid genus +genus baphia|1 +(noun)|Baphia|genus Baphia|rosid dicot genus +genus baptisia|1 +(noun)|Baptisia|genus Baptisia|rosid dicot genus +genus barbarea|1 +(noun)|Barbarea|genus Barbarea|dilleniid dicot genus +genus barosaurus|1 +(noun)|genus Barosaurus|reptile genus +genus bartle-frere|1 +(noun)|Bartle Frere|genus Bartle-Frere|green dinosaur|dicot genus|magnoliopsid genus +genus bartramia|1 +(noun)|Bartramia|genus Bartramia|bird genus +genus basiliscus|1 +(noun)|Basiliscus|genus Basiliscus|reptile genus +genus bassariscus|1 +(noun)|Bassariscus|genus Bassariscus|mammal genus +genus bassia|1 +(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus +genus bathyergus|1 +(noun)|Bathyergus|genus Bathyergus|mammal genus +genus batis|1 +(noun)|Batis|genus Batis|caryophylloid dicot genus +genus batrachoseps|1 +(noun)|Batrachoseps|genus Batrachoseps|amphibian genus +genus bauhinia|1 +(noun)|Bauhinia|genus Bauhinia|rosid dicot genus +genus beaumontia|1 +(noun)|Beaumontia|genus Beaumontia|dicot genus|magnoliopsid genus +genus begonia|1 +(noun)|genus Begonia|dilleniid dicot genus +genus belamcanda|1 +(noun)|Belamcanda|genus Belamcanda|liliid monocot genus +genus bellis|1 +(noun)|Bellis|genus Bellis|asterid dicot genus +genus bemisia|1 +(noun)|Bemisia|genus Bemisia|arthropod genus +genus bennettitis|1 +(noun)|Bennettitis|genus Bennettitis|gymnosperm genus +genus benzoin|1 +(noun)|Benzoin|genus Benzoin|magnoliid dicot genus +genus berberis|1 +(noun)|Berberis|genus Berberis|magnoliid dicot genus +genus bergenia|1 +(noun)|genus Bergenia|rosid dicot genus +genus beroe|1 +(noun)|genus Beroe|ctenophore genus +genus berteroa|1 +(noun)|Berteroa|genus Berteroa|dilleniid dicot genus +genus bertholletia|1 +(noun)|Bertholletia|genus Bertholletia|dicot genus|magnoliopsid genus +genus bessera|1 +(noun)|Bessera|genus Bessera|liliid monocot genus +genus besseya|1 +(noun)|Besseya|genus Besseya|asterid dicot genus +genus beta|1 +(noun)|Beta|genus Beta|caryophylloid dicot genus|Chenopodiaceae|family Chenopodiaceae|goosefoot family +genus bettongia|1 +(noun)|Bettongia|genus Bettongia|mammal genus +genus betula|1 +(noun)|Betula|genus Betula|hamamelid dicot genus +genus bibos|1 +(noun)|Bibos|genus Bibos|mammal genus +genus bidens|1 +(noun)|Bidens|genus Bidens|asterid dicot genus +genus bignonia|1 +(noun)|Bignonia|genus Bignonia|asterid dicot genus +genus biscutella|1 +(noun)|Biscutella|genus Biscutella|dilleniid dicot genus +genus bison|1 +(noun)|genus Bison|mammal genus +genus bitis|1 +(noun)|Bitis|genus Bitis|reptile genus +genus blaberus|1 +(noun)|Blaberus|genus Blaberus|arthropod genus +genus blandfordia|1 +(noun)|Blandfordia|genus Blandfordia|liliid monocot genus +genus blarina|1 +(noun)|Blarina|genus Blarina|mammal genus +genus blastocladia|1 +(noun)|Blastocladia|genus Blastocladia|fungus genus +genus blastomyces|1 +(noun)|Blastomyces|genus Blastomyces|fungus genus +genus blatta|1 +(noun)|Blatta|genus Blatta|arthropod genus +genus blattella|1 +(noun)|Blattella|genus Blattella|arthropod genus +genus blechnum|1 +(noun)|Blechnum|genus Blechnum|fern genus +genus blennius|1 +(noun)|Blennius|genus Blennius|fish genus +genus blephilia|1 +(noun)|Blephilia|genus Blephilia|asterid dicot genus +genus bletia|1 +(noun)|genus Bletia|monocot genus|liliopsid genus +genus bletilla|1 +(noun)|Bletilla|genus Bletilla|monocot genus|liliopsid genus +genus blighia|1 +(noun)|Blighia|genus Blighia|dicot genus|magnoliopsid genus +genus blissus|1 +(noun)|Blissus|genus Blissus|arthropod genus +genus bloomeria|1 +(noun)|Bloomeria|genus Bloomeria|liliid monocot genus +genus bocconia|1 +(noun)|genus Bocconia|dilleniid dicot genus +genus boehmeria|1 +(noun)|Boehmeria|genus Boehmeria|dicot genus|magnoliopsid genus +genus bolbitis|1 +(noun)|Bolbitis|genus Bolbitis|fern genus +genus boletellus|1 +(noun)|Boletellus|genus Boletellus|fungus genus +genus boletus|1 +(noun)|Boletus|genus Boletus|fungus genus +genus boltonia|1 +(noun)|Boltonia|genus Boltonia|asterid dicot genus +genus bomarea|1 +(noun)|Bomarea|genus Bomarea|liliid monocot genus +genus bombax|1 +(noun)|Bombax|genus Bombax|dilleniid dicot genus +genus bombina|1 +(noun)|Bombina|genus Bombina|amphibian genus +genus bombus|1 +(noun)|Bombus|genus Bombus|arthropod genus +genus bombycilla|1 +(noun)|Bombycilla|bird genus +genus bombyx|1 +(noun)|Bombyx|genus Bombyx|arthropod genus +genus bonasa|1 +(noun)|Bonasa|genus Bonasa|bird genus +genus borago|1 +(noun)|Borago|genus Borago|plant genus +genus borassus|1 +(noun)|Borassus|genus Borassus|monocot genus|liliopsid genus +genus borrelia|1 +(noun)|genus Borrelia|bacteria genus +genus bos|1 +(noun)|Bos|genus Bos|mammal genus +genus boselaphus|1 +(noun)|Boselaphus|genus Boselaphus|mammal genus +genus boswellia|1 +(noun)|Boswellia|genus Boswellia|rosid dicot genus +genus botaurus|1 +(noun)|Botaurus|genus Botaurus|bird genus +genus bothrops|1 +(noun)|Bothrops|genus Bothrops|reptile genus +genus botrychium|1 +(noun)|Botrychium|genus Botrychium|fern genus +genus bougainvillaea|1 +(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus +genus bougainvillea|1 +(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus +genus bouteloua|1 +(noun)|Bouteloua|genus Bouteloua|monocot genus|liliopsid genus +genus bowiea|1 +(noun)|Bowiea|genus Bowiea|liliid monocot genus +genus boykinia|1 +(noun)|Boykinia|genus Boykinia|rosid dicot genus +genus brachinus|1 +(noun)|Brachinus|genus Brachinus|arthropod genus +genus brachychiton|1 +(noun)|Brachychiton|genus Brachychiton|dilleniid dicot genus +genus brachycome|1 +(noun)|Brachycome|genus Brachycome|asterid dicot genus +genus brachystegia|1 +(noun)|Brachystegia|genus Brachystegia|rosid dicot genus +genus bradypus|1 +(noun)|Bradypus|genus Bradypus|mammal genus +genus brama|1 +(noun)|Brama|genus Brama|fish genus +genus branchiobdella|1 +(noun)|Branchiobdella|genus Branchiobdella|worm genus +genus branta|1 +(noun)|Branta|genus Branta|bird genus +genus brasenia|1 +(noun)|Brasenia|genus Brasenia|magnoliid dicot genus +genus brassavola|1 +(noun)|genus Brassavola|monocot genus|liliopsid genus +genus brassia|1 +(noun)|Brassia|genus Brassia|monocot genus|liliopsid genus +genus brassica|1 +(noun)|Brassica|genus Brassica|dilleniid dicot genus +genus brevoortia|1 +(noun)|Brevoortia|genus Brevoortia|fish genus +genus brickelia|1 +(noun)|Brickellia|genus Brickelia|asterid dicot genus +genus brodiaea|1 +(noun)|genus Brodiaea|liliid monocot genus +genus bromus|1 +(noun)|Bromus|genus Bromus|monocot genus|liliopsid genus +genus brontosaurus|1 +(noun)|genus Apatosaurus|genus Brontosaurus|reptile genus +genus broussonetia|1 +(noun)|Broussonetia|genus Broussonetia|dicot genus|magnoliopsid genus +genus browallia|1 +(noun)|genus Browallia|asterid dicot genus +genus browmius|1 +(noun)|Brosmius|genus Browmius|fish genus +genus bruchus|1 +(noun)|Bruchus|genus Bruchus|arthropod genus +genus bruckenthalia|1 +(noun)|Bruckenthalia|genus Bruckenthalia|dilleniid dicot genus +genus brugmansia|1 +(noun)|Brugmansia|genus Brugmansia|asterid dicot genus +genus brunfelsia|1 +(noun)|Brunfelsia|genus Brunfelsia|asterid dicot genus +genus brya|1 +(noun)|Brya|genus Brya|rosid dicot genus +genus bryanthus|1 +(noun)|genus Bryanthus|dilleniid dicot genus +genus bryonia|1 +(noun)|genus Bryonia|dicot genus|magnoliopsid genus +genus bryum|1 +(noun)|Bryum|genus Bryum|moss genus +genus bubalus|1 +(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus +genus bubo|1 +(noun)|Bubo|genus Bubo|bird genus +genus bubulcus|1 +(noun)|Bubulcus|genus Bubulcus|bird genus +genus bucephala|1 +(noun)|Bucephala|genus Bucephala|bird genus +genus buceros|1 +(noun)|Buceros|genus Buceros|bird genus +genus buchloe|1 +(noun)|Buchloe|genus Buchloe|monocot genus|liliopsid genus +genus buckleya|1 +(noun)|genus Buckleya|dilleniid dicot genus +genus buddleia|1 +(noun)|genus Buddleia|dicot genus|magnoliopsid genus +genus budorcas|1 +(noun)|Budorcas|genus Budorcas|mammal genus +genus bufo|1 +(noun)|genus Bufo|amphibian genus +genus bulnesia|1 +(noun)|Bulnesia|genus Bulnesia|rosid dicot genus +genus bumelia|1 +(noun)|Bumelia|genus Bumelia|dicot genus|magnoliopsid genus +genus bungarus|1 +(noun)|Bungarus|genus Bungarus|reptile genus +genus buphthalmum|1 +(noun)|Buphthalmum|genus Buphthalmum|asterid dicot genus +genus burhinus|1 +(noun)|Burhinus|genus Burhinus|bird genus +genus burmannia|1 +(noun)|Burmannia|genus Burmannia|monocot genus|liliopsid genus +genus burmeisteria|1 +(noun)|Burmeisteria|genus Burmeisteria|mammal genus +genus bursera|1 +(noun)|Bursera|genus Bursera|rosid dicot genus +genus butea|1 +(noun)|Butea|genus Butea|rosid dicot genus +genus buteo|1 +(noun)|Buteo|genus Buteo|bird genus +genus buxus|1 +(noun)|Buxus|genus Buxus|dicot genus|magnoliopsid genus +genus cabassous|1 +(noun)|genus Cabassous|mammal genus +genus cabomba|1 +(noun)|Cabomba|genus Cabomba|magnoliid dicot genus +genus cacajao|1 +(noun)|Cacajao|genus Cacajao|mammal genus +genus cacalia|1 +(noun)|Cacalia|genus Cacalia|asterid dicot genus +genus cacatua|1 +(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus +genus cacicus|1 +(noun)|Cacicus|genus Cacicus|bird genus +genus cadra|1 +(noun)|Cadra|genus Cadra|arthropod genus +genus caenolestes|1 +(noun)|Caenolestes|genus Caenolestes|mammal genus +genus caesalpinia|1 +(noun)|Caesalpinia|genus Caesalpinia|rosid dicot genus +genus caiman|1 +(noun)|genus Caiman|reptile genus +genus cairina|1 +(noun)|Cairina|genus Cairina|bird genus +genus cajanus|1 +(noun)|Cajanus|genus Cajanus|rosid dicot genus +genus cakile|1 +(noun)|Cakile|genus Cakile|dilleniid dicot genus +genus caladenia|1 +(noun)|genus Caladenia|monocot genus|liliopsid genus +genus caladium|1 +(noun)|genus Caladium|monocot genus|liliopsid genus +genus calamagrostis|1 +(noun)|Calamagrostis|genus Calamagrostis|monocot genus|liliopsid genus|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family +genus calamintha|1 +(noun)|Calamintha|genus Calamintha|asterid dicot genus +genus calamus|2 +(noun)|genus Calamus|monocot genus|liliopsid genus +(noun)|Calamus|genus Calamus|fish genus +genus calandrinia|1 +(noun)|Calandrinia|genus Calandrinia|caryophylloid dicot genus +genus calanthe|1 +(noun)|genus Calanthe|monocot genus|liliopsid genus +genus calceolaria|1 +(noun)|genus Calceolaria|asterid dicot genus +genus calendula|1 +(noun)|genus Calendula|asterid dicot genus +genus calidris|1 +(noun)|Calidris|genus Calidris|bird genus +genus calla|1 +(noun)|Calla|genus Calla|monocot genus|liliopsid genus +genus calliandra|1 +(noun)|genus Calliandra|rosid dicot genus +genus callicebus|1 +(noun)|Callicebus|genus Callicebus|mammal genus +genus callimorpha|1 +(noun)|Callimorpha|genus Callimorpha|arthropod genus +genus callinectes|1 +(noun)|Callinectes|genus Callinectes|arthropod genus +genus calliophis|1 +(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus +genus calliphora|1 +(noun)|Calliphora|genus Calliphora|arthropod genus +genus callirhoe|1 +(noun)|Callirhoe|genus Callirhoe|dilleniid dicot genus +genus callisaurus|1 +(noun)|Callisaurus|genus Callisaurus|reptile genus +genus callistephus|1 +(noun)|Callistephus|genus Callistephus|asterid dicot genus +genus callithrix|1 +(noun)|Callithrix|genus Callithrix|mammal genus +genus callitriche|1 +(noun)|Callitriche|genus Callitriche|rosid dicot genus +genus callitris|1 +(noun)|Callitris|genus Callitris|gymnosperm genus +genus callophis|1 +(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus +genus callorhinus|1 +(noun)|Callorhinus|genus Callorhinus|mammal genus +genus calluna|1 +(noun)|Calluna|genus Calluna|dilleniid dicot genus +genus calocarpum|1 +(noun)|Calocarpum|genus Calocarpum|dicot genus|magnoliopsid genus +genus calocedrus|1 +(noun)|Calocedrus|genus Calocedrus|gymnosperm genus +genus calochortus|1 +(noun)|Calochortus|genus Calochortus|liliid monocot genus +genus calophyllum|1 +(noun)|Calophyllum|genus Calophyllum|dilleniid dicot genus +genus calopogon|1 +(noun)|Calopogon|genus Calopogon|monocot genus|liliopsid genus +genus calosoma|1 +(noun)|genus Calosoma|arthropod genus +genus caltha|1 +(noun)|Caltha|genus Caltha|magnoliid dicot genus +genus calvatia|1 +(noun)|Calvatia|genus Calvatia|fungus genus +genus calycanthus|1 +(noun)|Calycanthus|genus Calycanthus|magnoliid dicot genus +genus calycophyllum|1 +(noun)|Calycophyllum|genus Calycophyllum|asterid dicot genus +genus calymmatobacterium|1 +(noun)|Calymmatobacterium|genus Calymmatobacterium|bacteria|bacterium +genus calypso|1 +(noun)|genus Calypso|monocot genus|liliopsid genus +genus calystegia|1 +(noun)|Calystegia|genus Calystegia|dicot genus|magnoliopsid genus +genus camassia|1 +(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus +genus cambarus|1 +(noun)|Cambarus|genus Cambarus|arthropod genus +genus camelina|1 +(noun)|Camelina|genus Camelina|dilleniid dicot genus +genus camellia|1 +(noun)|genus Camellia|dilleniid dicot genus +genus camelus|1 +(noun)|Camelus|genus Camelus|mammal genus +genus campanula|1 +(noun)|genus Campanula|plant genus +genus campephilus|1 +(noun)|Campephilus|genus Campephilus|bird genus +genus camponotus|1 +(noun)|Camponotus|genus Camponotus|arthropod genus +genus camptosorus|1 +(noun)|Camptosorus|genus Camptosorus|fern genus +genus campyloneurum|1 +(noun)|Campyloneurum|genus Campyloneurum|fern genus +genus campylorhynchus|1 +(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus +genus canachites|1 +(noun)|Canachites|genus Canachites|bird genus +genus cananga|1 +(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus +genus canangium|1 +(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus +genus canavalia|1 +(noun)|Canavalia|genus Canavalia|rosid dicot genus +genus cancer|1 +(noun)|Cancer|genus Cancer|arthropod genus +genus candida|1 +(noun)|genus Candida|fungus genus +genus canella|1 +(noun)|genus Canella|dilleniid dicot genus +genus canis|1 +(noun)|Canis|genus Canis|mammal genus +genus canna|1 +(noun)|genus Canna|monocot genus|liliopsid genus +genus cannabis|1 +(noun)|genus Cannabis|dicot genus|magnoliopsid genus +genus cantharellus|1 +(noun)|Cantharellus|genus Cantharellus|fungus genus +genus capella|1 +(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus +genus capparis|1 +(noun)|Capparis|genus Capparis|dilleniid dicot genus +genus capra|1 +(noun)|Capra|genus Capra|mammal genus +genus caprella|1 +(noun)|Caprella|genus Caprella|arthropod genus +genus capreolus|1 +(noun)|Capreolus|genus Capreolus|mammal genus +genus capricornis|1 +(noun)|Capricornis|genus Capricornis|mammal genus +genus caprimulgus|1 +(noun)|Caprimulgus|genus Caprimulgus|bird genus +genus capros|1 +(noun)|Capros|genus Capros|fish genus +genus capsella|1 +(noun)|Capsella|genus Capsella|dilleniid dicot genus +genus capsicum|1 +(noun)|genus Capsicum|asterid dicot genus +genus caragana|1 +(noun)|genus Caragana|rosid dicot genus +genus caranx|1 +(noun)|Caranx|genus Caranx|fish genus +genus carassius|1 +(noun)|Carassius|genus Carassius|fish genus +genus carcharhinus|1 +(noun)|Carcharhinus|genus Carcharhinus|fish genus +genus carcharias|1 +(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus +genus carcharodon|1 +(noun)|Carcharodon|genus Carcharodon|fish genus +genus cardamine|1 +(noun)|Cardamine|genus Cardamine|dilleniid dicot genus +genus cardiospermum|1 +(noun)|Cardiospermum|genus Cardiospermum|dicot genus|magnoliopsid genus +genus cardium|1 +(noun)|Cardium|genus Cardium|mollusk genus +genus carduelis|1 +(noun)|Carduelis|genus Carduelis|bird genus +genus carduus|1 +(noun)|Carduus|genus Carduus|asterid dicot genus +genus caretta|1 +(noun)|Caretta|genus Caretta|reptile genus +genus carex|1 +(noun)|Carex|genus Carex|monocot genus|liliopsid genus +genus cariama|1 +(noun)|Cariama|genus Cariama|bird genus +genus carica|1 +(noun)|Carica|genus Carica|dilleniid dicot genus +genus carissa|1 +(noun)|genus Carissa|dicot genus|magnoliopsid genus +genus carlina|1 +(noun)|Carlina|genus Carlina|asterid dicot genus +genus carnegiea|1 +(noun)|Carnegiea|genus Carnegiea|caryophylloid dicot genus +genus carpenteria|1 +(noun)|genus Carpenteria|rosid dicot genus +genus carphophis|1 +(noun)|Carphophis|genus Carphophis|reptile genus +genus carpinus|1 +(noun)|Carpinus|genus Carpinus|hamamelid dicot genus +genus carpobrotus|1 +(noun)|Carpobrotus|genus Carpobrotus|caryophylloid dicot genus +genus carpocapsa|1 +(noun)|Carpocapsa|genus Carpocapsa|arthropod genus +genus carpodacus|1 +(noun)|Carpodacus|genus Carpodacus|bird genus +genus carthamus|1 +(noun)|Carthamus|genus Carthamus|asterid dicot genus +genus carum|1 +(noun)|Carum|genus Carum|rosid dicot genus +genus carya|1 +(noun)|Carya|genus Carya|dicot genus|magnoliopsid genus +genus caryocar|1 +(noun)|Caryocar|genus Caryocar|dilleniid dicot genus +genus caryota|1 +(noun)|Caryota|genus Caryota|monocot genus|liliopsid genus +genus casmerodius|1 +(noun)|Casmerodius|genus Casmerodius|bird genus +genus cassia|1 +(noun)|genus Cassia|rosid dicot genus +genus cassiope|1 +(noun)|Cassiope|genus Cassiope|dilleniid dicot genus +genus castanea|1 +(noun)|Castanea|genus Castanea|hamamelid dicot genus +genus castanopsis|1 +(noun)|Castanopsis|genus Castanopsis|hamamelid dicot genus +genus castanospermum|1 +(noun)|Castanospermum|genus Castanospermum|rosid dicot genus +genus castilleia|1 +(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus +genus castilleja|1 +(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus +genus castor|1 +(noun)|Castor|genus Castor|mammal genus +genus castoroides|1 +(noun)|Castoroides|genus Castoroides|mammal genus +genus casuarina|1 +(noun)|genus Casuarina|dicot genus|magnoliopsid genus +genus casuarius|1 +(noun)|Casuarius|genus Casuarius|bird genus +genus catacala|1 +(noun)|Catacala|genus Catacala|arthropod genus +genus catalpa|1 +(noun)|genus Catalpa|asterid dicot genus +genus catananche|1 +(noun)|genus Catananche|asterid dicot genus +genus catasetum|1 +(noun)|Catasetum|genus Catasetum|monocot genus|liliopsid genus +genus catha|1 +(noun)|Catha|genus Catha|gymnosperm genus +genus catharacta|1 +(noun)|Catharacta|genus Catharacta|bird genus +genus catharanthus|1 +(noun)|Catharanthus|genus Catharanthus|dicot genus|magnoliopsid genus +genus cathartes|1 +(noun)|Cathartes|genus Cathartes|bird genus +genus cathaya|1 +(noun)|genus Cathaya|gymnosperm genus +genus catoptrophorus|1 +(noun)|Catoptrophorus|genus Catoptrophorus|bird genus +genus catostomus|1 +(noun)|Catostomus|genus Catostomus|fish genus +genus cattleya|1 +(noun)|genus Cattleya|monocot genus|liliopsid genus +genus caulophyllum|1 +(noun)|Caulophyllum|genus Caulophyllum|magnoliid dicot genus +genus cavia|1 +(noun)|Cavia|genus Cavia|mammal genus +genus cebuella|1 +(noun)|Cebuella|genus Cebuella|mammal genus +genus cebus|1 +(noun)|Cebus|genus Cebus|mammal genus +genus cecropia|1 +(noun)|Cecropia|genus Cecropia|dicot genus|magnoliopsid genus +genus cedrela|1 +(noun)|Cedrela|genus Cedrela|rosid dicot genus +genus cedrus|1 +(noun)|Cedrus|genus Cedrus|gymnosperm genus +genus ceiba|1 +(noun)|Ceiba|genus Ceiba|dilleniid dicot genus +genus celastrus|1 +(noun)|Celastrus|genus Celastrus|dicot genus|magnoliopsid genus +genus celosia|1 +(noun)|Celosia|genus Celosia|caryophylloid dicot genus +genus celtis|1 +(noun)|Celtis|genus Celtis|dicot genus|magnoliopsid genus +genus cenchrus|1 +(noun)|Cenchrus|genus Cenchrus|monocot genus|liliopsid genus +genus centaurea|1 +(noun)|Centaurea|genus Centaurea|asterid dicot genus +genus centaurium|1 +(noun)|Centaurium|genus Centaurium|dicot genus|magnoliopsid genus +genus centranthus|1 +(noun)|Centranthus|genus Centranthus|asterid dicot genus +genus centrocercus|1 +(noun)|Centrocercus|genus Centrocercus|bird genus +genus centrolobium|1 +(noun)|Centrolobium|genus Centrolobium|rosid dicot genus +genus centropomus|1 +(noun)|Centropomus|genus Centropomus|fish genus +genus centropristis|1 +(noun)|Centropristis|genus Centropristis|fish genus +genus centropus|1 +(noun)|Centropus|genus Centropus|bird genus +genus centrosema|1 +(noun)|Centrosema|genus Centrosema|rosid dicot genus +genus centunculus|1 +(noun)|Centunculus|genus Centunculus|dicot genus|magnoliopsid genus +genus cephalanthera|1 +(noun)|Cephalanthera|genus Cephalanthera|monocot genus|liliopsid genus +genus cephalopterus|1 +(noun)|Cephalopterus|genus Cephalopterus|bird genus +genus cephalotaxus|1 +(noun)|Cephalotaxus|genus Cephalotaxus|gymnosperm genus +genus cephalotus|1 +(noun)|Cephalotus|genus Cephalotus|rosid dicot genus +genus cepphus|1 +(noun)|Cepphus|genus Cepphus|bird genus +genus cerapteryx|1 +(noun)|Cerapteryx|genus Cerapteryx|arthropod genus +genus cerastes|1 +(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus +genus cerastium|1 +(noun)|Cerastium|genus Cerastium|caryophylloid dicot genus +genus ceratitis|1 +(noun)|Ceratitis|genus Ceratitis|arthropod genus +genus ceratodus|1 +(noun)|genus Ceratodus|fish genus +genus ceratonia|1 +(noun)|Ceratonia|genus Ceratonia|rosid dicot genus +genus ceratopetalum|1 +(noun)|Ceratopetalum|genus Ceratopetalum|rosid dicot genus +genus ceratophyllum|1 +(noun)|Ceratophyllum|genus Ceratophyllum|magnoliid dicot genus +genus ceratopogon|1 +(noun)|Ceratopogon|genus Ceratopogon|arthropod genus +genus ceratopteris|1 +(noun)|Ceratopteris|genus Ceratopteris|fern genus +genus ceratosaurus|1 +(noun)|genus Ceratosaurus|reptile genus +genus ceratostomella|1 +(noun)|Ceratostomella|genus Ceratostomella|fungus genus +genus ceratotherium|1 +(noun)|Ceratotherium|genus Ceratotherium|mammal genus +genus ceratozamia|1 +(noun)|genus Ceratozamia|gymnosperm genus +genus cercidiphyllum|1 +(noun)|Cercidiphyllum|genus Cercidiphyllum|magnoliid dicot genus +genus cercidium|1 +(noun)|Cercidium|genus Cercidium|rosid dicot genus +genus cercis|1 +(noun)|Cercis|genus Cercis|rosid dicot genus +genus cercocebus|1 +(noun)|Cercocebus|genus Cercocebus|mammal genus +genus cercopithecus|1 +(noun)|Cercopithecus|genus Cercopithecus|mammal genus +genus cercospora|1 +(noun)|Cercospora|genus Cercospora|fungus genus +genus cercosporella|1 +(noun)|Cercosporella|genus Cercosporella|fungus genus +genus cereus|1 +(noun)|Cereus|genus Cereus|caryophylloid dicot genus +genus ceroxylon|1 +(noun)|Ceroxylon|monocot genus|liliopsid genus +genus certhia|1 +(noun)|Certhia|genus Certhia|bird genus +genus cervus|1 +(noun)|Cervus|genus Cervus|mammal genus +genus ceryle|1 +(noun)|Ceryle|genus Ceryle|bird genus +genus cestrum|1 +(noun)|Cestrum|genus Cestrum|asterid dicot genus +genus cestum|1 +(noun)|Cestum|genus Cestum|ctenophore genus +genus ceterach|1 +(noun)|Ceterach|genus Ceterach|fern genus +genus cetonia|1 +(noun)|Cetonia|genus Cetonia|arthropod genus +genus cetorhinus|1 +(noun)|Cetorhinus|genus Cetorhinus|fish genus +genus cetraria|1 +(noun)|Cetraria|genus Cetraria|fungus genus +genus chaenactis|1 +(noun)|genus Chaenactis|asterid dicot genus +genus chaenomeles|1 +(noun)|Chaenomeles|genus Chaenomeles|rosid dicot genus +genus chaenopsis|1 +(noun)|Chaenopsis|genus Chaenopsis|fish genus +genus chaetodipterus|1 +(noun)|Chaetodipterus|genus Chaetodipterus|fish genus +genus chaetodon|1 +(noun)|genus Chaetodon|fish genus +genus chalcis|1 +(noun)|Chalcis|genus Chalcis|arthropod genus +genus chalcostigma|1 +(noun)|Chalcostigma|genus Chalcostigma|bird genus +genus chamaea|1 +(noun)|Chamaea|genus Chamaea|bird genus +genus chamaecrista|1 +(noun)|Chamaecrista|genus Chamaecrista|rosid dicot genus +genus chamaecyparis|1 +(noun)|Chamaecyparis|genus Chamaecyparis|gymnosperm genus +genus chamaecytisus|1 +(noun)|Chamaecytisus|genus Chamaecytisus|rosid dicot genus +genus chamaedaphne|1 +(noun)|Chamaedaphne|genus Chamaedaphne|dilleniid dicot genus +genus chamaeleo|1 +(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus +genus chamaeleon|1 +(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus +genus chamaemelum|1 +(noun)|Chamaemelum|genus Chamaemelum|asterid dicot genus +genus chara|1 +(noun)|Chara|genus Chara|protoctist genus +genus charadrius|1 +(noun)|Charadrius|genus Charadrius|bird genus +genus charina|1 +(noun)|Charina|genus Charina|reptile genus +genus charronia|1 +(noun)|Charronia|genus Charronia|mammal genus +genus chateura|1 +(noun)|Chateura|genus Chateura|bird genus +genus chauna|1 +(noun)|Chauna|genus Chauna|bird genus +genus cheilanthes|1 +(noun)|Cheilanthes|genus Cheilanthes|fern genus +genus cheiranthus|1 +(noun)|Cheiranthus|genus Cheiranthus|dilleniid dicot genus +genus chelidonium|1 +(noun)|Chelidonium|genus Chelidonium|dilleniid dicot genus +genus chelifer|1 +(noun)|Chelifer|genus Chelifer|arthropod genus +genus chelone|1 +(noun)|Chelone|genus Chelone|asterid dicot genus +genus chelonia|1 +(noun)|Chelonia|genus Chelonia|reptile genus +genus chelydra|1 +(noun)|Chelydra|genus Chelydra|reptile genus +genus chenopodium|1 +(noun)|Chenopodium|genus Chenopodium|caryophylloid dicot genus +genus chilomastix|1 +(noun)|Chilomastix|genus Chilomastix|protoctist genus +genus chilomeniscus|1 +(noun)|Chilomeniscus|genus Chilomeniscus|reptile genus +genus chilomycterus|1 +(noun)|Chilomycterus|genus Chilomycterus|fish genus +genus chilopsis|1 +(noun)|Chilopsis|genus Chilopsis|asterid dicot genus +genus chimaera|1 +(noun)|genus Chimaera|fish genus +genus chimaphila|1 +(noun)|Chimaphila|genus Chimaphila|dilleniid dicot genus +genus chimonanthus|1 +(noun)|Chimonanthus|genus Chimonanthus|magnoliid dicot genus +genus chinchilla|1 +(noun)|genus Chinchilla|mammal genus +genus chinchona|1 +(noun)|genus Cinchona|genus Chinchona|asterid dicot genus +genus chiococca|1 +(noun)|Chiococca|genus Chiococca|asterid dicot genus +genus chionanthus|1 +(noun)|Chionanthus|genus Chionanthus|dicot genus|magnoliopsid genus +genus chirocephalus|1 +(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus +genus chironomus|1 +(noun)|Chironomus|genus Chironomus|arthropod genus +genus chiton|1 +(noun)|genus Chiton|mollusk genus +genus chlamydera|1 +(noun)|Chlamydera|genus Chlamydera|bird genus +genus chlamydia|1 +(noun)|genus Chlamydia|bacteria genus +genus chlamydomonas|1 +(noun)|Chlamydomonas|genus Chlamydomonas|protoctist genus +genus chlamydosaurus|1 +(noun)|Chlamydosaurus|genus Chlamydosaurus|reptile genus +genus chlamyphorus|1 +(noun)|Chlamyphorus|genus Chlamyphorus|mammal genus +genus chloranthus|1 +(noun)|Chloranthus|genus Chloranthus|dicot genus|magnoliopsid genus +genus chlorella|1 +(noun)|genus Chlorella|protoctist genus +genus chloris|1 +(noun)|Chloris|genus Chloris|monocot genus|liliopsid genus +genus chlorococcum|1 +(noun)|Chlorococcum|genus Chlorococcum|protoctist genus +genus chlorophis|1 +(noun)|Chlorophis|genus Chlorophis|reptile genus +genus chlorophoneus|1 +(noun)|Chlorophoneus|genus Chlorophoneus|bird genus +genus chlorophyllum|1 +(noun)|genus Chlorophyllum|fungus genus +genus chloroxylon|1 +(noun)|Chloroxylon|genus Chloroxylon|rosid dicot genus +genus chlorura|1 +(noun)|Chlorura|genus Chlorura|bird genus +genus choeronycteris|1 +(noun)|Choeronycteris|genus Choeronycteris|mammal genus +genus choloepus|1 +(noun)|Choloepus|genus Choloepus|mammal genus +genus chondrus|1 +(noun)|Chondrus|genus Chondrus|protoctist genus +genus chordeiles|1 +(noun)|Chordeiles|genus Chordeiles|bird genus +genus chordospartium|1 +(noun)|Chordospartium|genus Chordospartium|rosid dicot genus +genus choriotis|1 +(noun)|Choriotis|genus Choriotis|bird genus +genus chorizagrotis|1 +(noun)|Chorizagrotis|genus Chorizagrotis|arthropod genus +genus chorizema|1 +(noun)|Chorizema|genus Chorizema|rosid dicot genus +genus christella|1 +(noun)|genus Christella|fern genus +genus chronoperates|1 +(noun)|Chronoperates|genus Chronoperates|reptile genus +genus chrysanthemum|1 +(noun)|genus Chrysanthemum|asterid dicot genus +genus chrysaora|1 +(noun)|Chrysaora|genus Chrysaora|coelenterate genus +genus chrysemys|1 +(noun)|Chrysemys|genus Chrysemys|reptile genus +genus chrysobalanus|1 +(noun)|Chrysobalanus|genus Chrysobalanus|rosid dicot genus +genus chrysochloris|1 +(noun)|Chrysochloris|genus Chrysochloris|mammal genus +genus chrysolepis|1 +(noun)|Chrysolepis|genus Chrysolepis|hamamelid dicot genus +genus chrysolophus|1 +(noun)|Chrysolophus|genus Chrysolophus|bird genus +genus chrysophrys|1 +(noun)|Chrysophrys|genus Chrysophrys|fish genus +genus chrysophyllum|1 +(noun)|Chrysophyllum|genus Chrysophyllum|dicot genus|magnoliopsid genus +genus chrysopsis|1 +(noun)|Chrysopsis|genus Chrysopsis|asterid dicot genus +genus chrysosplenium|1 +(noun)|Chrysosplenium|genus Chrysosplenium|rosid dicot genus +genus chrysothamnus|1 +(noun)|Chrysothamnus|genus Chrysothamnus|asterid dicot genus +genus chunga|1 +(noun)|genus Chunga|bird genus +genus cibotium|1 +(noun)|Cibotium|genus Cibotium|fern genus +genus cicada|1 +(noun)|genus Cicada|arthropod genus +genus cicer|1 +(noun)|Cicer|genus Cicer|rosid dicot genus +genus cichorium|1 +(noun)|Cichorium|genus Cichorium|asterid dicot genus +genus ciconia|1 +(noun)|Ciconia|genus Ciconia|bird genus +genus cicuta|1 +(noun)|Cicuta|genus Cicuta|rosid dicot genus +genus cimex|1 +(noun)|Cimex|genus Cimex|arthropod genus +genus cimicifuga|1 +(noun)|Cimicifuga|genus Cimicifuga|magnoliid dicot genus +genus cinchona|1 +(noun)|genus Cinchona|genus Chinchona|asterid dicot genus +genus cinclus|1 +(noun)|Cinclus|genus Cinclus|bird genus +genus cinnamomum|1 +(noun)|Cinnamomum|genus Cinnamomum|magnoliid dicot genus +genus circaea|1 +(noun)|Circaea|genus Circaea|rosid dicot genus +genus circaetus|1 +(noun)|Circaetus|genus Circaetus|bird genus +genus circus|1 +(noun)|Circus|genus Circus|bird genus +genus cirsium|1 +(noun)|Cirsium|genus Cirsium|asterid dicot genus +genus cistothorus|1 +(noun)|Cistothorus|genus Cistothorus|bird genus +genus cistus|1 +(noun)|Cistus|genus Cistus|dilleniid dicot genus +genus citellus|1 +(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus +genus citharichthys|1 +(noun)|Citharichthys|genus Citharichthys|fish genus +genus citroncirus|1 +(noun)|Citroncirus|genus Citroncirus|rosid dicot genus +genus citrullus|1 +(noun)|Citrullus|genus Citrullus|dicot genus|magnoliopsid genus +genus citrus|1 +(noun)|genus Citrus|rosid dicot genus +genus cladonia|1 +(noun)|Cladonia|genus Cladonia|fungus genus +genus cladorhyncus|1 +(noun)|Cladorhyncus|genus Cladorhyncus|bird genus +genus cladrastis|1 +(noun)|Cladrastis|genus Cladrastis|rosid dicot genus +genus clangula|1 +(noun)|Clangula|genus Clangula|bird genus +genus clathrus|1 +(noun)|Clathrus|genus Clathrus|fungus genus +genus claviceps|1 +(noun)|Claviceps|genus Claviceps|fungus genus +genus claytonia|1 +(noun)|Claytonia|genus Claytonia|caryophylloid dicot genus +genus cleistes|1 +(noun)|Cleistes|genus Cleistes|monocot genus|liliopsid genus +genus clematis|1 +(noun)|genus Clematis|magnoliid dicot genus +genus cleome|1 +(noun)|genus Cleome|dilleniid dicot genus +genus clethra|1 +(noun)|Clethra|genus Clethra|dicot genus|magnoliopsid genus +genus clethrionomys|1 +(noun)|Clethrionomys|genus Clethrionomys|mammal genus +genus clianthus|1 +(noun)|genus Clianthus|rosid dicot genus +genus cliftonia|1 +(noun)|Cliftonia|genus Cliftonia|dicot genus|magnoliopsid genus +genus clinopodium|1 +(noun)|Clinopodium|genus Clinopodium|asterid dicot genus +genus clintonia|1 +(noun)|genus Clintonia|liliid monocot genus +genus clitocybe|1 +(noun)|Clitocybe|genus Clitocybe|fungus genus +genus clitoria|1 +(noun)|Clitoria|genus Clitoria|rosid dicot genus +genus clostridium|1 +(noun)|genus Clostridium|bacteria genus +genus clupea|1 +(noun)|Clupea|genus Clupea|fish genus +genus clusia|1 +(noun)|genus Clusia|dilleniid dicot genus +genus cnemidophorus|1 +(noun)|Cnemidophorus|genus Cnemidophorus|reptile genus +genus cnicus|1 +(noun)|Cnicus|genus Cnicus|asterid dicot genus +genus cnidoscolus|1 +(noun)|Cnidoscolus|genus Cnidoscolus|rosid dicot genus +genus coccothraustes|1 +(noun)|Coccothraustes|genus Coccothraustes|bird genus +genus cocculus|1 +(noun)|Cocculus|genus Cocculus|magnoliid dicot genus +genus coccus|1 +(noun)|genus Coccus|arthropod genus +genus coccyzus|1 +(noun)|Coccyzus|genus Coccyzus|bird genus +genus cochlearia|1 +(noun)|Cochlearia|genus Cochlearia|dilleniid dicot genus +genus cochlearius|1 +(noun)|Cochlearius|genus Cochlearius|bird genus +genus cocos|1 +(noun)|Cocos|genus Cocos|monocot genus|liliopsid genus +genus codariocalyx|1 +(noun)|Codariocalyx|genus Codariocalyx|rosid dicot genus +genus codiaeum|1 +(noun)|Codiaeum|genus Codiaeum|rosid dicot genus +genus coeloglossum|1 +(noun)|Coeloglossum|genus Coeloglossum|monocot genus|liliopsid genus +genus coelogyne|1 +(noun)|genus Coelogyne|monocot genus|liliopsid genus +genus coelophysis|1 +(noun)|genus Coelophysis|reptile genus +genus coereba|1 +(noun)|Coereba|genus Coereba|bird genus +genus coffea|1 +(noun)|Coffea|genus Coffea|asterid dicot genus +genus cola|1 +(noun)|Cola|genus Cola|dilleniid dicot genus +genus colaptes|1 +(noun)|Colaptes|genus Colaptes|bird genus +genus colchicum|1 +(noun)|Colchicum|genus Colchicum|liliid monocot genus +genus coleonyx|1 +(noun)|Coleonyx|genus Coleonyx|reptile genus +genus coleus|1 +(noun)|genus Coleus|asterid dicot genus +genus colinus|1 +(noun)|Colinus|genus Colinus|bird genus +genus collinsia|1 +(noun)|Collinsia|genus Collinsia|asterid dicot genus +genus collinsonia|1 +(noun)|Collinsonia|genus Collinsonia|asterid dicot genus +genus collocalia|1 +(noun)|Collocalia|genus Collocalia|bird genus +genus colobus|1 +(noun)|genus Colobus|mammal genus +genus colocasia|1 +(noun)|Colocasia|genus Colocasia|monocot genus|liliopsid genus +genus coluber|1 +(noun)|Coluber|genus Coluber|reptile genus +genus colubrina|1 +(noun)|Colubrina|genus Colubrina|dicot genus|magnoliopsid genus +genus columba|1 +(noun)|Columba|genus Columba|bird genus +genus columnea|1 +(noun)|genus Columnea|asterid dicot genus +genus colutea|1 +(noun)|Colutea|genus Colutea|rosid dicot genus +genus comandra|1 +(noun)|Comandra|genus Comandra|dilleniid dicot genus +genus comatula|1 +(noun)|Comatula|genus Comatula|Antedon|genus Antedon +genus combretum|1 +(noun)|genus Combretum|dicot genus|magnoliopsid genus +genus commelina|1 +(noun)|genus Commelina|monocot genus|liliopsid genus +genus commiphora|1 +(noun)|Commiphora|genus Commiphora|rosid dicot genus +genus compsognathus|1 +(noun)|genus Compsognathus|reptile genus +genus comptonia|1 +(noun)|Comptonia|genus Comptonia|dicot genus|magnoliopsid genus +genus condylura|1 +(noun)|Condylura|genus Condylura|mammal genus +genus conepatus|1 +(noun)|Conepatus|genus Conepatus|mammal genus +genus conferva|1 +(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus +genus conilurus|1 +(noun)|Conilurus|genus Conilurus|mammal genus +genus coniogramme|1 +(noun)|Coniogramme|genus Coniogramme|fern genus +genus conium|1 +(noun)|Conium|genus Conium|rosid dicot genus +genus connarus|1 +(noun)|Connarus|genus Connarus|rosid dicot genus +genus connochaetes|1 +(noun)|Connochaetes|genus Connochaetes|mammal genus +genus conocarpus|1 +(noun)|Conocarpus|genus Conocarpus|dicot genus|magnoliopsid genus +genus conoclinium|1 +(noun)|Conoclinium|genus Conoclinium|asterid dicot genus +genus conopodium|1 +(noun)|Conopodium|genus Conopodium|rosid dicot genus +genus conospermum|1 +(noun)|Conospermum|genus Conospermum|dicot genus|magnoliopsid genus +genus conradina|1 +(noun)|Conradina|genus Conradina|asterid dicot genus +genus consolida|1 +(noun)|Consolida|genus Consolida|magnoliid dicot genus +genus contopus|1 +(noun)|Contopus|genus Contopus|bird genus +genus conuropsis|1 +(noun)|Conuropsis|genus Conuropsis|bird genus +genus convallaria|1 +(noun)|Convallaria|genus Convallaria|liliid monocot genus +genus convolvulus|1 +(noun)|genus Convolvulus|dicot genus|magnoliopsid genus +genus conyza|1 +(noun)|Conyza|genus Conyza|asterid dicot genus +genus copernicia|1 +(noun)|Copernicia|genus Copernicia|monocot genus|liliopsid genus +genus coprinus|1 +(noun)|Coprinus|genus Coprinus|fungus genus +genus coptis|1 +(noun)|Coptis|genus Coptis|magnoliid dicot genus +genus coracias|1 +(noun)|Coracias|genus Coracias|bird genus +genus coragyps|1 +(noun)|Coragyps|genus Coragyps|bird genus +genus corallorhiza|1 +(noun)|Corallorhiza|genus Corallorhiza|monocot genus|liliopsid genus +genus corchorus|1 +(noun)|Corchorus|genus Corchorus|dilleniid dicot genus +genus cordaites|1 +(noun)|Cordaites|genus Cordaites|gymnosperm genus +genus cordia|1 +(noun)|Cordia|genus Cordia|dicot genus|magnoliopsid genus +genus cordyline|1 +(noun)|Cordyline|genus Cordyline|liliid monocot genus +genus cordylus|1 +(noun)|Cordylus|genus Cordylus|reptile genus +genus coregonus|1 +(noun)|Coregonus|genus Coregonus|fish genus +genus coreopsis|1 +(noun)|genus Coreopsis|asterid dicot genus +genus coriandrum|1 +(noun)|Coriandrum|genus Coriandrum|rosid dicot genus +genus corixa|1 +(noun)|Corixa|genus Corixa|arthropod genus +genus cornus|1 +(noun)|Cornus|genus Cornus|rosid dicot genus +genus corokia|1 +(noun)|Corokia|genus Corokia|rosid dicot genus +genus coronilla|1 +(noun)|genus Coronilla|rosid dicot genus +genus corozo|1 +(noun)|genus Corozo|monocot genus|liliopsid genus +genus cortaderia|1 +(noun)|Cortaderia|genus Cortaderia|monocot genus|liliopsid genus +genus corticium|1 +(noun)|Corticium|genus Corticium|fungus genus +genus cortinarius|1 +(noun)|Cortinarius|genus Cortinarius|fungus genus +genus corvus|1 +(noun)|Corvus|genus Corvus|bird genus +genus coryanthes|1 +(noun)|Coryanthes|genus Coryanthes|monocot genus|liliopsid genus +genus corydalis|2 +(noun)|Corydalis|genus Corydalis|dilleniid dicot genus +(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus +genus corydalus|1 +(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus +genus corylopsis|1 +(noun)|Corylopsis|genus Corylopsis|plant genus +genus corylus|1 +(noun)|Corylus|genus Corylus|hamamelid dicot genus +genus corynebacterium|1 +(noun)|genus Corynebacterium|bacteria genus +genus corypha|1 +(noun)|Corypha|genus Corypha|monocot genus|liliopsid genus +genus coryphantha|1 +(noun)|genus Coryphantha|caryophylloid dicot genus +genus corythosaurus|1 +(noun)|genus Corythosaurus|reptile genus +genus coscoroba|1 +(noun)|genus Coscoroba|bird genus +genus cosmocampus|1 +(noun)|Cosmocampus|genus Cosmocampus|fish genus +genus cosmos|1 +(noun)|genus Cosmos|asterid dicot genus +genus costia|1 +(noun)|genus Costia|protoctist genus +genus cotinga|1 +(noun)|genus Cotinga|bird genus +genus cotinus|1 +(noun)|Cotinus|genus Cotinus|dicot genus|magnoliopsid genus +genus cotoneaster|1 +(noun)|genus Cotoneaster|rosid dicot genus +genus cottus|1 +(noun)|Cottus|genus Cottus|fish genus +genus cotula|1 +(noun)|Cotula|genus Cotula|asterid dicot genus +genus coturnix|1 +(noun)|Coturnix|genus Coturnix|bird genus +genus coumarouna|1 +(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus +genus cracticus|1 +(noun)|Cracticus|genus Cracticus|bird genus +genus crambe|1 +(noun)|Crambe|genus Crambe|dilleniid dicot genus +genus crangon|1 +(noun)|Crangon|genus Crangon|arthropod genus +genus craspedia|1 +(noun)|Craspedia|genus Craspedia|asterid dicot genus +genus crassostrea|1 +(noun)|Crassostrea|genus Crassostrea|mollusk genus +genus crassula|1 +(noun)|Crassula|genus Crassula|plant genus +genus crataegus|1 +(noun)|Crataegus|genus Crataegus|rosid dicot genus +genus crateva|1 +(noun)|Crateva|genus Crateva|dilleniid dicot genus +genus crax|1 +(noun)|Crax|genus Crax|bird genus +genus crepis|1 +(noun)|Crepis|genus Crepis|asterid dicot genus +genus crescentia|1 +(noun)|Crescentia|genus Crescentia|asterid dicot genus +genus crex|1 +(noun)|Crex|genus Crex|bird genus +genus cricetus|1 +(noun)|Cricetus|genus Cricetus|mammal genus +genus crocethia|1 +(noun)|Crocethia|genus Crocethia|bird genus +genus crocodilus|1 +(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus +genus crocodylus|1 +(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus +genus crocus|1 +(noun)|genus Crocus|liliid monocot genus +genus crocuta|1 +(noun)|Crocuta|genus Crocuta|mammal genus +genus cronartium|1 +(noun)|Cronartium|genus Cronartium|fungus genus +genus crotalaria|1 +(noun)|genus Crotalaria|rosid dicot genus +genus crotalus|1 +(noun)|Crotalus|genus Crotalus|reptile genus +genus crotaphytus|1 +(noun)|Crotaphytus|genus Crotaphytus|reptile genus +genus croton|1 +(noun)|genus Croton|rosid dicot genus +genus crotophaga|1 +(noun)|Crotophaga|genus Crotophaga|bird genus +genus cryptacanthodes|1 +(noun)|Cryptacanthodes|genus Cryptacanthodes|fish genus +genus cryptobranchus|1 +(noun)|Cryptobranchus|genus Cryptobranchus|amphibian genus +genus cryptocercus|1 +(noun)|Cryptocercus|genus Cryptocercus|arthropod genus +genus cryptocoryne|1 +(noun)|genus Cryptocoryne|monocot genus|liliopsid genus +genus cryptogramma|1 +(noun)|Cryptogramma|genus Cryptogramma|fern genus +genus cryptomeria|1 +(noun)|Cryptomeria|genus Cryptomeria|gymnosperm genus +genus cryptoprocta|1 +(noun)|Cryptoprocta|genus Cryptoprocta|civet|civet cat +genus cryptotermes|1 +(noun)|Cryptotermes|genus Cryptotermes|arthropod genus +genus cryptotis|1 +(noun)|Cryptotis|genus Cryptotis|mammal genus +genus ctenocephalides|1 +(noun)|Ctenocephalides|genus Ctenocephalides|arthropod genus +genus ctenocephalus|1 +(noun)|Ctenocephalus|genus Ctenocephalus|Ctenocephalides|genus Ctenocephalides +genus cuculus|1 +(noun)|Cuculus|genus Cuculus|bird genus +genus cucumis|1 +(noun)|Cucumis|genus Cucumis|dicot genus|magnoliopsid genus +genus cucurbita|1 +(noun)|Cucurbita|genus Cucurbita|dicot genus|magnoliopsid genus +genus culcita|1 +(noun)|Culcita|genus Culcita|fern genus +genus culex|1 +(noun)|Culex|genus Culex|arthropod genus +genus cuminum|1 +(noun)|Cuminum|genus Cuminum|rosid dicot genus +genus cuniculus|1 +(noun)|Cuniculus|genus Cuniculus|mammal genus +genus cuon|1 +(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus +genus cupressus|1 +(noun)|Cupressus|genus Cupressus|gymnosperm genus +genus curcuma|1 +(noun)|Curcuma|genus Curcuma|monocot genus|liliopsid genus +genus cursorius|1 +(noun)|Cursorius|genus Cursorius|bird genus +genus curtisia|1 +(noun)|Curtisia|genus Curtisia|rosid dicot genus +genus cuscuta|1 +(noun)|Cuscuta|genus Cuscuta|dicot genus|magnoliopsid genus +genus cuterebra|1 +(noun)|Cuterebra|genus Cuterebra|arthropod genus +genus cyamopsis|1 +(noun)|Cyamopsis|genus Cyamopsis|rosid dicot genus +genus cyamus|1 +(noun)|Cyamus|genus Cyamus|arthropod genus +genus cyanocitta|1 +(noun)|Cyanocitta|genus Cyanocitta|bird genus +genus cyathea|1 +(noun)|Cyathea|genus Cyathea|fern genus +genus cycas|1 +(noun)|Cycas|genus Cycas|gymnosperm genus +genus cyclamen|1 +(noun)|genus Cyclamen|dicot genus|magnoliopsid genus +genus cycloloma|1 +(noun)|Cycloloma|genus Cycloloma|caryophylloid dicot genus +genus cyclopes|2 +(noun)|Cyclopes|genus Cyclopes|mammal genus +(noun)|genus Cyclops|arthropod genus +genus cyclophorus|1 +(noun)|Cyclophorus|genus Cyclophorus|fern genus +genus cyclops|1 +(noun)|genus Cyclops|arthropod genus +genus cyclopterus|1 +(noun)|Cyclopterus|genus Cyclopterus|fish genus +genus cyclosorus|1 +(noun)|Cyclosorus|genus Cyclosorus|fern genus +genus cycnoches|1 +(noun)|Cycnoches|genus Cycnoches|monocot genus|liliopsid genus +genus cydonia|1 +(noun)|Cydonia|genus Cydonia|rosid dicot genus +genus cygnus|1 +(noun)|Cygnus|genus Cygnus|bird genus +genus cymbidium|1 +(noun)|genus Cymbidium|monocot genus|liliopsid genus +genus cynancum|1 +(noun)|genus Cynancum|dicot genus|magnoliopsid genus +genus cynara|1 +(noun)|Cynara|genus Cynara|asterid dicot genus +genus cynips|1 +(noun)|Cynips|genus Cynips|arthropod genus +genus cynocephalus|1 +(noun)|Cynocephalus|genus Cynocephalus|mammal genus +genus cynodon|1 +(noun)|Cynodon|genus Cynodon|monocot genus|liliopsid genus +genus cynoglossum|1 +(noun)|Cynoglossum|genus Cynoglossum|plant genus +genus cynomys|1 +(noun)|Cynomys|genus Cynomys|mammal genus +genus cynopterus|1 +(noun)|Cynopterus|genus Cynopterus|mammal genus +genus cynoscion|1 +(noun)|Cynoscion|genus Cynoscion|fish genus +genus cyon|1 +(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus +genus cyperus|1 +(noun)|Cyperus|genus Cyperus|monocot genus|liliopsid genus|Cyperaceae|family Cyperaceae|sedge family +genus cyphomandra|1 +(noun)|Cyphomandra|genus Cyphomandra|asterid dicot genus +genus cypraea|1 +(noun)|Cypraea|genus Cypraea|mollusk genus +genus cyprinus|1 +(noun)|Cyprinus|genus Cyprinus|fish genus +genus cypripedium|1 +(noun)|Cypripedium|genus Cypripedium|monocot genus|liliopsid genus +genus cyrilla|1 +(noun)|genus Cyrilla|dicot genus|magnoliopsid genus +genus cyrtomium|1 +(noun)|Cyrtomium|genus Cyrtomium|fern genus +genus cystophora|1 +(noun)|Cystophora|genus Cystophora|mammal genus +genus cystopteris|1 +(noun)|Cystopteris|genus Cystopteris|fern genus +genus cytisus|1 +(noun)|Cytisus|genus Cytisus|rosid dicot genus +genus daboecia|1 +(noun)|Daboecia|genus Daboecia|dilleniid dicot genus +genus dacelo|1 +(noun)|Dacelo|genus Dacelo|bird genus +genus dacrycarpus|1 +(noun)|Dacrycarpus|genus Dacrycarpus|gymnosperm genus +genus dacrydium|1 +(noun)|Dacrydium|genus Dacrydium|gymnosperm genus +genus dacrymyces|1 +(noun)|Dacrymyces|genus Dacrymyces|fungus genus +genus dactylis|1 +(noun)|Dactylis|genus Dactylis|monocot genus|liliopsid genus +genus dactyloctenium|1 +(noun)|Dactyloctenium|genus Dactyloctenium|monocot genus|liliopsid genus +genus dactylopius|1 +(noun)|Dactylopius|genus Dactylopius|arthropod genus +genus dactylopterus|1 +(noun)|Dactylopterus|genus Dactylopterus|fish genus +genus dactylorhiza|1 +(noun)|Dactylorhiza|genus Dactylorhiza|monocot genus|liliopsid genus +genus dahlia|1 +(noun)|genus Dahlia|asterid dicot genus +genus dalbergia|1 +(noun)|Dalbergia|genus Dalbergia|rosid dicot genus +genus dalea|1 +(noun)|Dalea|genus Dalea|rosid dicot genus +genus dama|1 +(noun)|Dama|genus Dama|mammal genus +genus damaliscus|1 +(noun)|Damaliscus|genus Damaliscus|mammal genus +genus danaea|1 +(noun)|Danaea|genus Danaea|fern genus +genus danaus|1 +(noun)|Danaus|genus Danaus|arthropod genus +genus daphne|1 +(noun)|genus Daphne|dicot genus|magnoliopsid genus +genus daphnia|1 +(noun)|genus Daphnia|arthropod genus +genus darlingtonia|1 +(noun)|Darlingtonia|genus Darlingtonia|dicot genus|magnoliopsid genus +genus darmera|1 +(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus +genus dasyatis|1 +(noun)|Dasyatis|genus Dasyatis|fish genus +genus dasyprocta|1 +(noun)|Dasyprocta|genus Dasyprocta|mammal genus +genus dasypus|1 +(noun)|Dasypus|genus Dasypus|mammal genus +genus dasyurus|1 +(noun)|Dasyurus|genus Dasyurus|mammal genus +genus datura|1 +(noun)|Datura|genus Datura|asterid dicot genus +genus daubentonia|1 +(noun)|Daubentonia|genus Daubentonia|mammal genus +genus daucus|1 +(noun)|Daucus|genus Daucus|rosid dicot genus +genus davallia|1 +(noun)|genus Davallia|fern genus +genus daviesia|1 +(noun)|Daviesia|genus Daviesia|rosid dicot genus +genus decapterus|1 +(noun)|Decapterus|genus Decapterus|fish genus +genus decumaria|1 +(noun)|Decumaria|genus Decumaria|rosid dicot genus +genus deinocheirus|1 +(noun)|genus Deinocheirus|reptile genus +genus deinonychus|1 +(noun)|genus Deinonychus|reptile genus +genus delairea|1 +(noun)|Delairea|genus Delairea|asterid dicot genus +genus delichon|1 +(noun)|Delichon|genus Delichon|bird genus +genus delonix|1 +(noun)|Delonix|genus Delonix|rosid dicot genus +genus delphinapterus|1 +(noun)|Delphinapterus|genus Delphinapterus|mammal genus +genus delphinium|1 +(noun)|genus Delphinium|magnoliid dicot genus +genus delphinus|1 +(noun)|Delphinus|genus Delphinus|mammal genus +genus dendranthema|1 +(noun)|Dendranthema|genus Dendranthema|asterid dicot genus +genus dendraspis|1 +(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus +genus dendroaspis|1 +(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus +genus dendrobium|1 +(noun)|genus Dendrobium|monocot genus|liliopsid genus +genus dendrocalamus|1 +(noun)|Dendrocalamus|genus Dendrocalamus|monocot genus|liliopsid genus +genus dendrocolaptes|1 +(noun)|Dendrocolaptes|genus Dendrocolaptes|bird genus +genus dendroctonus|1 +(noun)|Dendroctonus|genus Dendroctonus|arthropod genus +genus dendroica|1 +(noun)|Dendroica|genus Dendroica|bird genus +genus dendrolagus|1 +(noun)|Dendrolagus|genus Dendrolagus|mammal genus +genus dendromecon|1 +(noun)|Dendromecon|genus Dendromecon|dilleniid dicot genus +genus denisonia|1 +(noun)|Denisonia|genus Denisonia|reptile genus +genus dennstaedtia|1 +(noun)|Dennstaedtia|genus Dennstaedtia|fern genus +genus dentaria|1 +(noun)|Dentaria|genus Dentaria|dilleniid dicot genus +genus deparia|1 +(noun)|Deparia|genus Deparia|fern genus +genus dermacentor|1 +(noun)|Dermacentor|genus Dermacentor|arthropod genus +genus dermatobia|1 +(noun)|Dermatobia|genus Dermatobia|arthropod genus +genus dermochelys|1 +(noun)|Dermochelys|genus Dermochelys|reptile genus +genus derris|1 +(noun)|genus Derris|rosid dicot genus +genus descurainia|1 +(noun)|Descurainia|genus Descurainia|dilleniid dicot genus +genus desmanthus|1 +(noun)|Desmanthus|genus Desmanthus|rosid dicot genus +genus desmidium|1 +(noun)|Desmidium|genus Desmidium|protoctist genus +genus desmodium|1 +(noun)|Desmodium|genus Desmodium|rosid dicot genus +genus desmodus|1 +(noun)|Desmodus|genus Desmodus|mammal genus +genus desmograthus|1 +(noun)|Desmograthus|genus Desmograthus|amphibian genus +genus deutzia|1 +(noun)|genus Deutzia|rosid dicot genus +genus diacalpa|1 +(noun)|Diacalpa|genus Diacalpa|fern genus +genus diadophis|1 +(noun)|Diadophis|genus Diadophis|reptile genus +genus dialeurodes|1 +(noun)|Dialeurodes|genus Dialeurodes|arthropod genus +genus dianthus|1 +(noun)|Dianthus|genus Dianthus|caryophylloid dicot genus +genus diapensia|1 +(noun)|genus Diapensia|dilleniid dicot genus +genus diapheromera|1 +(noun)|genus Diapheromera|arthropod genus +genus dicamptodon|1 +(noun)|genus Dicamptodon|amphibian genus +genus dicentra|1 +(noun)|Dicentra|genus Dicentra|dilleniid dicot genus +genus diceros|1 +(noun)|Diceros|genus Diceros|mammal genus +genus dichondra|1 +(noun)|genus Dichondra|dicot genus|magnoliopsid genus +genus dicksonia|1 +(noun)|Dicksonia|genus Dicksonia|fern genus +genus dicranopteris|1 +(noun)|Dicranopteris|genus Dicranopteris|fern genus +genus dicranum|1 +(noun)|Dicranum|genus Dicranum|moss genus +genus dicrostonyx|1 +(noun)|Dicrostonyx|genus Dicrostonyx|mammal genus +genus dictamnus|1 +(noun)|Dictamnus|genus Dictamnus|rosid dicot genus +genus dictostylium|1 +(noun)|genus Dictostylium|fungus genus +genus dictyophera|1 +(noun)|Dictyophera|genus Dictyophera|fungus genus +genus didelphis|1 +(noun)|Didelphis|genus Didelphis|mammal genus +genus dieffenbachia|1 +(noun)|Dieffenbachia|genus Dieffenbachia|monocot genus|liliopsid genus +genus diervilla|1 +(noun)|Diervilla|genus Diervilla|asterid dicot genus +genus difflugia|1 +(noun)|genus Difflugia|protoctist genus +genus digitalis|1 +(noun)|genus Digitalis|asterid dicot genus +genus digitaria|1 +(noun)|Digitaria|genus Digitaria|monocot genus|liliopsid genus +genus dillenia|1 +(noun)|genus Dillenia|dilleniid dicot genus +genus dimetrodon|1 +(noun)|genus Dimetrodon|reptile genus +genus dimocarpus|1 +(noun)|Dimocarpus|genus Dimocarpus|dicot genus|magnoliopsid genus +genus dimorphotheca|1 +(noun)|Dimorphotheca|genus Dimorphotheca|asterid dicot genus +genus dinornis|1 +(noun)|Dinornis|genus Dinornis|bird genus +genus diodon|1 +(noun)|Diodon|genus Diodon|fish genus +genus diomedea|1 +(noun)|genus Diomedea|bird genus +genus dionaea|1 +(noun)|Dionaea|genus Dionaea|dicot genus|magnoliopsid genus +genus dioon|1 +(noun)|genus Dioon|gymnosperm genus +genus dioscorea|1 +(noun)|Dioscorea|genus Dioscorea|plant genus +genus diospyros|1 +(noun)|Diospyros|genus Diospyros|dicot genus|magnoliopsid genus +genus diphylla|1 +(noun)|Diphylla|genus Diphylla|mammal genus +genus dipladenia|1 +(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus|magnoliopsid genus +genus diplococcus|1 +(noun)|genus Diplococcus|bacteria genus +genus diplodocus|1 +(noun)|genus Diplodocus|reptile genus +genus diplopterygium|1 +(noun)|Diplopterygium|genus Diplopterygium|fern genus +genus diplotaxis|1 +(noun)|Diplotaxis|genus Diplotaxis|dilleniid dicot genus +genus dipodomys|1 +(noun)|Dipodomys|genus Dipodomys|mammal genus +genus dipogon|1 +(noun)|Dipogon|genus Dipogon|rosid dicot genus +genus dipsacus|1 +(noun)|Dipsacus|genus Dipsacus|asterid dicot genus +genus dipsosaurus|1 +(noun)|Dipsosaurus|genus Dipsosaurus|reptile genus +genus dipteronia|1 +(noun)|Dipteronia|genus Dipteronia|dicot genus|magnoliopsid genus +genus dipteryx|1 +(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus +genus dipus|1 +(noun)|Dipus|genus Dipus|mammal genus +genus dirca|1 +(noun)|Dirca|genus Dirca|dicot genus|magnoliopsid genus +genus disa|1 +(noun)|genus Disa|monocot genus|liliopsid genus +genus discina|1 +(noun)|genus Discina|fungus genus +genus dodonaea|1 +(noun)|Dodonaea|genus Dodonaea|dicot genus|magnoliopsid genus +genus dolichonyx|1 +(noun)|Dolichonyx|genus Dolichonyx|bird genus +genus dolichos|1 +(noun)|Dolichos|genus Dolichos|rosid dicot genus +genus dolichotis|1 +(noun)|Dolichotis|genus Dolichotis|mammal genus +genus doliolum|1 +(noun)|genus Doliolum|chordate genus +genus dombeya|1 +(noun)|genus Dombeya|dilleniid dicot genus +genus doodia|1 +(noun)|genus Doodia|fern genus +genus doronicum|1 +(noun)|Doronicum|genus Doronicum|asterid dicot genus +genus dorotheanthus|1 +(noun)|Dorotheanthus|genus Dorotheanthus|caryophylloid dicot genus +genus doryopteris|1 +(noun)|Doryopteris|genus Doryopteris|fern genus +genus dovyalis|1 +(noun)|Dovyalis|genus Dovyalis|dilleniid dicot genus +genus draba|1 +(noun)|genus Draba|dilleniid dicot genus +genus dracaena|1 +(noun)|genus Dracaena|liliid monocot genus +genus draco|1 +(noun)|Draco|genus Draco|reptile genus +genus dracocephalum|1 +(noun)|Dracocephalum|genus Dracocephalum|asterid dicot genus +genus dracontium|1 +(noun)|genus Dracontium|monocot genus|liliopsid genus +genus dracula|1 +(noun)|Dracula|genus Dracula|monocot genus|liliopsid genus +genus dracunculus|2 +(noun)|Dracunculus|genus Dracunculus|monocot genus|liliopsid genus +(noun)|Dracunculus|genus Dracunculus|worm genus +genus dreissena|1 +(noun)|Dreissena|genus Dreissena|mollusk genus +genus drepanis|1 +(noun)|Drepanis|genus Drepanis|bird genus +genus drimys|1 +(noun)|Drimys|genus Drimys|magnoliid dicot genus +genus dromaius|1 +(noun)|Dromaius|genus Dromaius|bird genus +genus drosera|1 +(noun)|Drosera|genus Drosera|dicot genus|magnoliopsid genus +genus drosophila|1 +(noun)|genus Drosophila|arthropod genus +genus drosophyllum|1 +(noun)|Drosophyllum|genus Drosophyllum|dicot genus|magnoliopsid genus +genus dryadella|1 +(noun)|Dryadella|genus Dryadella|monocot genus|liliopsid genus +genus dryas|1 +(noun)|Dryas|genus Dryas|rosid dicot genus +genus drymarchon|1 +(noun)|Drymarchon|genus Drymarchon|reptile genus +genus drymoglossum|1 +(noun)|Drymoglossum|genus Drymoglossum|fern genus +genus drynaria|1 +(noun)|Drynaria|genus Drynaria|fern genus +genus dryopithecus|1 +(noun)|Dryopithecus|genus Dryopithecus|mammal genus +genus dryopteris|1 +(noun)|Dryopteris|genus Dryopteris|fern genus +genus drypis|1 +(noun)|genus Drypis|caryophylloid dicot genus +genus dugong|1 +(noun)|genus Dugong|mammal genus +genus dumetella|1 +(noun)|Dumetella|genus Dumetella|bird genus +genus durio|1 +(noun)|Durio|genus Durio|dilleniid dicot genus +genus dusicyon|1 +(noun)|Dusicyon|genus Dusicyon|mammal genus +genus dysdercus|1 +(noun)|Dysdercus|genus Dysdercus|arthropod genus +genus eacles|1 +(noun)|Eacles|genus Eacles|arthropod genus +genus eburophyton|1 +(noun)|Eburophyton|genus Eburophyton|monocot genus|liliopsid genus +genus ecballium|1 +(noun)|Ecballium|genus Ecballium|dicot genus|magnoliopsid genus +genus echeneis|1 +(noun)|Echeneis|genus Echeneis|fish genus +genus echidnophaga|1 +(noun)|Echidnophaga|genus Echidnophaga|arthropod genus +genus echinacea|1 +(noun)|Echinacea|genus Echinacea|asterid dicot genus +genus echinocactus|1 +(noun)|genus Echinocactus|caryophylloid dicot genus +genus echinocereus|1 +(noun)|Echinocereus|genus Echinocereus|caryophylloid dicot genus +genus echinochloa|1 +(noun)|Echinochloa|genus Echinochloa|monocot genus|liliopsid genus +genus echinococcus|1 +(noun)|genus Echinococcus|worm genus +genus echinops|1 +(noun)|Echinops|genus Echinops|asterid dicot genus +genus echium|1 +(noun)|Echium|genus Echium|plant genus +genus ectopistes|1 +(noun)|Ectopistes|genus Ectopistes|bird genus +genus edaphosaurus|1 +(noun)|genus Edaphosaurus|reptile genus +genus edmontosaurus|1 +(noun)|genus Edmontosaurus|reptile genus +genus egeria|1 +(noun)|Egeria|genus Egeria|monocot genus|liliopsid genus +genus egretta|1 +(noun)|Egretta|genus Egretta|bird genus +genus eichhornia|1 +(noun)|Eichhornia|genus Eichhornia|monocot genus|liliopsid genus +genus eimeria|1 +(noun)|genus Eimeria|protoctist genus +genus eira|1 +(noun)|Eira|genus Eira|mammal genus +genus elaeagnus|1 +(noun)|Elaeagnus|genus Elaeagnus|dicot genus|magnoliopsid genus +genus elaeis|1 +(noun)|Elaeis|genus Elaeis|monocot genus|liliopsid genus +genus elaeocarpus|1 +(noun)|Elaeocarpus|genus Elaeocarpus|dilleniid dicot genus +genus elagatis|1 +(noun)|Elagatis|genus Elagatis|fish genus +genus elanoides|1 +(noun)|Elanoides|genus Elanoides|bird genus +genus elanus|1 +(noun)|Elanus|genus Elanus|bird genus +genus elaphe|1 +(noun)|Elaphe|genus Elaphe|reptile genus +genus elaphurus|1 +(noun)|Elaphurus|genus Elaphurus|mammal genus +genus electrophorus|1 +(noun)|Electrophorus|genus Electrophorus|fish genus +genus eleocharis|1 +(noun)|Eleocharis|genus Eleocharis|monocot genus|liliopsid genus +genus elephantopus|1 +(noun)|Elephantopus|genus Elephantopus|asterid dicot genus +genus elephas|1 +(noun)|Elephas|genus Elephas|mammal genus +genus elettaria|1 +(noun)|Elettaria|genus Elettaria|monocot genus|liliopsid genus +genus eleusine|1 +(noun)|Eleusine|genus Eleusine|monocot genus|liliopsid genus +genus eleutherodactylus|1 +(noun)|Eleutherodactylus|genus Eleutherodactylus|amphibian genus +genus eliomys|1 +(noun)|Eliomys|genus Eliomys|mammal genus +genus elodea|1 +(noun)|Elodea|genus Elodea|pondweed|ditchmoss|monocot genus|liliopsid genus +genus elops|1 +(noun)|Elops|genus Elops|fish genus +genus elsholtzia|1 +(noun)|genus Elsholtzia|asterid dicot genus +genus elymus|1 +(noun)|Elymus|genus Elymus|monocot genus|liliopsid genus +genus emberiza|1 +(noun)|Emberiza|genus Emberiza|bird genus +genus embothrium|1 +(noun)|Embothrium|genus Embothrium|dicot genus|magnoliopsid genus +genus emilia|1 +(noun)|Emilia|genus Emilia|asterid dicot genus +genus emmanthe|1 +(noun)|Emmanthe|genus Emmanthe|asterid dicot genus +genus empetrum|1 +(noun)|Empetrum|genus Empetrum|dicot genus|magnoliopsid genus +genus encelia|1 +(noun)|Encelia|genus Encelia|asterid dicot genus +genus enceliopsis|1 +(noun)|Enceliopsis|genus Enceliopsis|asterid dicot genus +genus encephalartos|1 +(noun)|genus Encephalartos|gymnosperm genus +genus encyclia|1 +(noun)|Encyclia|genus Encyclia|monocot genus|liliopsid genus +genus endamoeba|1 +(noun)|Endamoeba|genus Endamoeba|protoctist genus +genus engelmannia|1 +(noun)|genus Engelmannia|asterid dicot genus +genus engraulis|1 +(noun)|Engraulis|genus Engraulis|fish genus +genus enhydra|1 +(noun)|Enhydra|genus Enhydra|mammal genus +genus ensete|1 +(noun)|Ensete|genus Ensete|monocot genus|liliopsid genus +genus ensis|1 +(noun)|Ensis|genus Ensis|mollusk genus +genus entandrophragma|1 +(noun)|Entandrophragma|genus Entandrophragma|rosid dicot genus +genus entelea|1 +(noun)|Entelea|genus Entelea|dilleniid dicot genus +genus enterobius|1 +(noun)|Enterobius|genus Enterobius|worm genus +genus enterolobium|1 +(noun)|Enterolobium|genus Enterolobium|rosid dicot genus +genus entoloma|1 +(noun)|Entoloma|genus Entoloma|fungus genus +genus entomophthora|1 +(noun)|Entomophthora|genus Entomophthora|fungus genus +genus eoraptor|1 +(noun)|genus Eoraptor|reptile genus +genus epacris|1 +(noun)|genus Epacris|dilleniid dicot genus +genus ephedra|1 +(noun)|genus Ephedra|gymnosperm genus +genus ephestia|1 +(noun)|Ephestia|genus Ephestia|arthropod genus +genus ephippiorhynchus|1 +(noun)|Ephippiorhynchus|genus Ephippiorhynchus|bird genus +genus epidendrum|1 +(noun)|Epidendrum|genus Epidendrum|monocot genus|liliopsid genus +genus epigaea|1 +(noun)|Epigaea|genus Epigaea|dilleniid dicot genus +genus epilachna|1 +(noun)|Epilachna|genus Epilachna|arthropod genus +genus epilobium|1 +(noun)|Epilobium|genus Epilobium|rosid dicot genus +genus epimedium|1 +(noun)|Epimedium|genus Epimedium|magnoliid dicot genus +genus epinephelus|1 +(noun)|Epinephelus|genus Epinephelus|fish genus +genus epipactis|1 +(noun)|Epipactis|genus Epipactis|monocot genus|liliopsid genus +genus epiphyllum|1 +(noun)|genus Epiphyllum|caryophylloid dicot genus +genus epipremnum|1 +(noun)|Epipremnum|genus Epipremnum|monocot genus|liliopsid genus +genus episcia|1 +(noun)|genus Episcia|asterid dicot genus +genus eptatretus|1 +(noun)|genus Eptatretus|fish genus +genus eptesicus|1 +(noun)|Eptesicus|genus Eptesicus|mammal genus +genus equetus|1 +(noun)|Equetus|genus Equetus|fish genus +genus equisetum|1 +(noun)|Equisetum|genus Equisetum|fern genus +genus equus|1 +(noun)|Equus|genus Equus|mammal genus +genus eragrostis|1 +(noun)|Eragrostis|genus Eragrostis|monocot genus|liliopsid genus +genus eranthis|1 +(noun)|Eranthis|genus Eranthis|magnoliid dicot genus +genus ercilla|1 +(noun)|Ercilla|genus Ercilla|caryophylloid dicot genus +genus erechtites|1 +(noun)|genus Erechtites|asterid dicot genus +genus erethizon|1 +(noun)|Erethizon|genus Erethizon|mammal genus +genus eretmochelys|1 +(noun)|Eretmochelys|genus Eretmochelys|reptile genus +genus erianthus|1 +(noun)|Erianthus|genus Erianthus|monocot genus|liliopsid genus +genus erica|1 +(noun)|genus Erica|dilleniid dicot genus +genus erigeron|1 +(noun)|Erigeron|genus Erigeron|asterid dicot genus +genus erignathus|1 +(noun)|Erignathus|genus Erignathus|mammal genus +genus erinaceus|1 +(noun)|Erinaceus|genus Erinaceus|mammal genus +genus eriobotrya|1 +(noun)|Eriobotrya|genus Eriobotrya|rosid dicot genus +genus eriocaulon|1 +(noun)|Eriocaulon|genus Eriocaulon|monocot genus|liliopsid genus +genus eriodictyon|1 +(noun)|Eriodictyon|genus Eriodictyon|asterid dicot genus +genus eriogonum|1 +(noun)|genus Eriogonum|dicot genus|magnoliopsid genus +genus eriophorum|1 +(noun)|Eriophorum|genus Eriophorum|monocot genus|liliopsid genus +genus eriophyllum|1 +(noun)|Eriophyllum|genus Eriophyllum|asterid dicot genus +genus eriosoma|1 +(noun)|Eriosoma|genus Eriosoma|arthropod genus +genus erithacus|1 +(noun)|Erithacus|genus Erithacus|bird genus +genus erodium|1 +(noun)|Erodium|genus Erodium|rosid dicot genus +genus erolia|1 +(noun)|Erolia|genus Erolia|bird genus +genus eruca|1 +(noun)|Eruca|genus Eruca|dilleniid dicot genus +genus erwinia|1 +(noun)|genus Erwinia|bacteria genus +genus eryngium|1 +(noun)|Eryngium|genus Eryngium|rosid dicot genus +genus erysimum|1 +(noun)|Erysimum|genus Erysimum|dilleniid dicot genus +genus erysiphe|1 +(noun)|Erysiphe|genus Erysiphe|fungus genus +genus erythrina|1 +(noun)|genus Erythrina|rosid dicot genus +genus erythrocebus|1 +(noun)|Erythrocebus|genus Erythrocebus|mammal genus +genus erythronium|1 +(noun)|Erythronium|genus Erythronium|liliid monocot genus +genus erythroxylon|1 +(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus +genus erythroxylum|1 +(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus +genus escherichia|1 +(noun)|genus Escherichia|bacteria genus +genus eschrichtius|1 +(noun)|Eschrichtius|genus Eschrichtius|mammal genus +genus eschscholtzia|1 +(noun)|Eschscholtzia|genus Eschscholtzia|dilleniid dicot genus +genus esox|1 +(noun)|Esox|genus Esox|fish genus +genus estrilda|1 +(noun)|Estrilda|genus Estrilda|bird genus +genus etropus|1 +(noun)|Etropus|genus Etropus|fish genus +genus euarctos|1 +(noun)|Euarctos|genus Euarctos|mammal genus +genus eucalyptus|1 +(noun)|genus Eucalyptus|dicot genus|magnoliopsid genus +genus eucarya|1 +(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus +genus eucinostomus|1 +(noun)|Eucinostomus|genus Eucinostomus|fish genus +genus euderma|1 +(noun)|Euderma|genus Euderma|mammal genus +genus eudyptes|1 +(noun)|Eudyptes|genus Eudyptes|bird genus +genus eugenia|1 +(noun)|Eugenia|genus Eugenia|dicot genus|magnoliopsid genus +genus euglena|1 +(noun)|genus Euglena|protoctist genus +genus eumeces|1 +(noun)|Eumeces|genus Eumeces|reptile genus +genus eumenes|1 +(noun)|Eumenes|genus Eumenes|arthropod genus +genus eumetopias|1 +(noun)|Eumetopias|genus Eumetopias|mammal genus +genus eumops|1 +(noun)|Eumops|genus Eumops|mammal genus +genus eunectes|1 +(noun)|Eunectes|genus Eunectes|reptile genus +genus euonymus|1 +(noun)|Euonymus|genus Euonymus|dicot genus|magnoliopsid genus +genus eupatorium|1 +(noun)|Eupatorium|genus Eupatorium|asterid dicot genus +genus euphagus|1 +(noun)|Euphagus|genus Euphagus|bird genus +genus euphorbia|1 +(noun)|Euphorbia|genus Euphorbia|rosid dicot genus +genus euphractus|1 +(noun)|Euphractus|genus Euphractus|mammal genus +genus euplectella|1 +(noun)|Euplectella|genus Euplectella|sponge genus +genus euproctis|1 +(noun)|Euproctis|genus Euproctis|arthropod genus +genus eurotium|1 +(noun)|Eurotium|genus Eurotium|fungus genus +genus euryale|1 +(noun)|Euryale|genus Euryale|echinoderm genus +genus eustoma|1 +(noun)|Eustoma|genus Eustoma|dicot genus|magnoliopsid genus +genus eutamias|1 +(noun)|Eutamias|genus Eutamias|mammal genus +genus euterpe|1 +(noun)|Euterpe|genus Euterpe|monocot genus|liliopsid genus +genus euthynnus|1 +(noun)|Euthynnus|genus Euthynnus|fish genus +genus evernia|1 +(noun)|Evernia|genus Evernia|fungus genus +genus exacum|1 +(noun)|Exacum|genus Exacum|dicot genus|magnoliopsid genus +genus exaeretodon|1 +(noun)|Exaeretodon|genus Exaeretodon|reptile genus +genus fabiana|1 +(noun)|Fabiana|genus Fabiana|asterid dicot genus +genus fagopyrum|1 +(noun)|Fagopyrum|genus Fagopyrum|dicot genus|magnoliopsid genus +genus fagus|1 +(noun)|Fagus|genus Fagus|hamamelid dicot genus +genus falcatifolium|1 +(noun)|Falcatifolium|genus Falcatifolium|gymnosperm genus +genus falco|1 +(noun)|Falco|genus Falco|bird genus +genus fasciola|1 +(noun)|Fasciola|genus Fasciola|worm genus +genus fasciolopsis|1 +(noun)|Fasciolopsis|genus Fasciolopsis|worm genus +genus feijoa|1 +(noun)|genus Feijoa|dicot genus|magnoliopsid genus +genus felicia|1 +(noun)|Felicia|genus Felicia|asterid dicot genus +genus felis|1 +(noun)|Felis|genus Felis|mammal genus +genus ferocactus|1 +(noun)|Ferocactus|genus Ferocactus|caryophylloid dicot genus +genus festuca|1 +(noun)|Festuca|genus Festuca|monocot genus|liliopsid genus +genus ficus|1 +(noun)|Ficus|genus Ficus|dicot genus|magnoliopsid genus +genus filago|1 +(noun)|genus Filago|asterid dicot genus +genus firmiana|1 +(noun)|Firmiana|genus Firmiana|dilleniid dicot genus +genus fissurella|1 +(noun)|Fissurella|genus Fissurella|mollusk genus +genus fistularia|1 +(noun)|Fistularia|genus Fistularia|fish genus +genus fistulina|1 +(noun)|Fistulina|genus Fistulina|fungus genus +genus flacourtia|1 +(noun)|Flacourtia|genus Flacourtia|dilleniid dicot genus +genus flammulina|1 +(noun)|Flammulina|genus Flammulina|fungus genus +genus flindersia|1 +(noun)|Flindersia|genus Flindersia|rosid dicot genus +genus foeniculum|1 +(noun)|Foeniculum|genus Foeniculum|rosid dicot genus +genus fomes|1 +(noun)|Fomes|genus Fomes|fungus genus +genus forestiera|1 +(noun)|genus Forestiera|dicot genus|magnoliopsid genus +genus forficula|1 +(noun)|Forficula|genus Forficula|arthropod genus +genus formica|1 +(noun)|Formica|genus Formica|arthropod genus +genus formicarius|1 +(noun)|Formicarius|genus Formicarius|bird genus +genus forsythia|1 +(noun)|genus Forsythia|dicot genus|magnoliopsid genus +genus fortunella|1 +(noun)|Fortunella|genus Fortunella|rosid dicot genus +genus fossa|1 +(noun)|Fossa|genus Fossa|mammal genus +genus fothergilla|1 +(noun)|genus Fothergilla|plant genus +genus fouquieria|1 +(noun)|Fouquieria|genus Fouquieria|dilleniid dicot genus +genus fragaria|1 +(noun)|Fragaria|genus Fragaria|rosid dicot genus +genus francisella|1 +(noun)|Francisella|genus Francisella|bacteria|bacterium +genus francoa|1 +(noun)|Francoa|genus Francoa|rosid dicot genus +genus frankliniella|1 +(noun)|Frankliniella|genus Frankliniella|arthropod genus +genus frasera|1 +(noun)|Frasera|genus Frasera|dicot genus|magnoliopsid genus +genus fratercula|1 +(noun)|Fratercula|genus Fratercula|bird genus +genus fraxinus|1 +(noun)|Fraxinus|genus Fraxinus|dicot genus|magnoliopsid genus +genus freesia|1 +(noun)|genus Freesia|liliid monocot genus +genus fregata|1 +(noun)|Fregata|genus Fregata|bird genus +genus fremontia|1 +(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus +genus fremontodendron|1 +(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus +genus fringilla|1 +(noun)|Fringilla|genus Fringilla|bird genus +genus fritillaria|1 +(noun)|Fritillaria|genus Fritillaria|liliid monocot genus +genus froelichia|1 +(noun)|Froelichia|genus Froelichia|caryophylloid dicot genus +genus fuchsia|1 +(noun)|genus Fuchsia|dicot genus|magnoliopsid genus +genus fucus|1 +(noun)|genus Fucus|protoctist genus +genus fulica|1 +(noun)|Fulica|genus Fulica|bird genus +genus fulmarus|1 +(noun)|Fulmarus|genus Fulmarus|bird genus +genus fumaria|1 +(noun)|Fumaria|genus Fumaria|dilleniid dicot genus +genus fundulus|1 +(noun)|Fundulus|genus Fundulus|fish genus +genus fungia|1 +(noun)|Fungia|genus Fungia|coelenterate genus +genus funka|1 +(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus +genus furnarius|1 +(noun)|Furnarius|genus Furnarius|bird genus +genus fusanus|1 +(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus +genus fusarium|1 +(noun)|genus Fusarium|fungus genus +genus fuscoboletinus|1 +(noun)|Fuscoboletinus|genus Fuscoboletinus|fungus genus +genus gadus|1 +(noun)|Gadus|genus Gadus|fish genus +genus gaillardia|1 +(noun)|genus Gaillardia|asterid dicot genus +genus galago|1 +(noun)|genus Galago|mammal genus +genus galax|1 +(noun)|genus Galax|dilleniid dicot genus +genus galega|1 +(noun)|Galega|genus Galega|rosid dicot genus +genus galeocerdo|1 +(noun)|Galeocerdo|genus Galeocerdo|fish genus +genus galeopsis|1 +(noun)|Galeopsis|genus Galeopsis|asterid dicot genus +genus galeorhinus|1 +(noun)|Galeorhinus|genus Galeorhinus|fish genus +genus galictis|1 +(noun)|genus Galictis|mammal genus +genus galium|1 +(noun)|Galium|genus Galium|asterid dicot genus +genus galleria|1 +(noun)|Galleria|genus Galleria|arthropod genus +genus gallinago|1 +(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus +genus gallinula|1 +(noun)|Gallinula|genus Gallinula|bird genus +genus gallirallus|1 +(noun)|Gallirallus|genus Gallirallus|bird genus +genus gallus|1 +(noun)|Gallus|genus Gallus|bird genus +genus gambelia|1 +(noun)|Gambelia|genus Gambelia|reptile genus +genus gambusia|1 +(noun)|Gambusia|genus Gambusia|fish genus +genus garcinia|1 +(noun)|Garcinia|genus Garcinia|dilleniid dicot genus +genus gardenia|1 +(noun)|genus Gardenia|asterid dicot genus +genus garrulus|1 +(noun)|Garrulus|genus Garrulus|bird genus +genus gasterophilus|1 +(noun)|Gasterophilus|genus Gasterophilus|arthropod genus +genus gasterosteus|1 +(noun)|Gasterosteus|fish genus +genus gastroboletus|1 +(noun)|Gastroboletus|genus Gastroboletus|fungus genus +genus gastrocybe|1 +(noun)|Gastrocybe|genus Gastrocybe|fungus genus +genus gastrolobium|1 +(noun)|genus Gastrolobium|rosid dicot genus +genus gastrophryne|1 +(noun)|Gastrophryne|genus Gastrophryne|amphibian genus +genus gaultheria|1 +(noun)|Gaultheria|genus Gaultheria|dilleniid dicot genus +genus gavia|1 +(noun)|Gavia|genus Gavia|bird genus +genus gavialis|1 +(noun)|Gavialis|genus Gavialis|reptile genus +genus gaylussacia|1 +(noun)|Gaylussacia|genus Gaylussacia|dilleniid dicot genus +genus gazania|1 +(noun)|genus Gazania|asterid dicot genus +genus gazella|1 +(noun)|Gazella|genus Gazella|mammal genus +genus geastrum|1 +(noun)|Geastrum|genus Geastrum|fungus genus +genus gelechia|1 +(noun)|Gelechia|genus Gelechia|arthropod genus +genus gelsemium|1 +(noun)|Gelsemium|genus Gelsemium|dicot genus|magnoliopsid genus +genus gempylus|1 +(noun)|Gempylus|genus Gempylus|fish genus +genus genetta|1 +(noun)|Genetta|genus Genetta|mammal genus +genus genipa|1 +(noun)|genus Genipa|asterid dicot genus +genus genista|1 +(noun)|Genista|genus Genista|rosid dicot genus +genus genlisea|1 +(noun)|genus Genlisea|plant genus +genus gentiana|1 +(noun)|Gentiana|genus Gentiana|dicot genus|magnoliopsid genus +genus gentianella|1 +(noun)|Gentianella|genus Gentianella|dicot genus|magnoliopsid genus +genus gentianopsis|1 +(noun)|Gentianopsis|genus Gentianopsis|dicot genus|magnoliopsid genus +genus genyonemus|1 +(noun)|Genyonemus|genus Genyonemus|fish genus +genus geochelone|1 +(noun)|Geochelone|genus Geochelone|reptile genus +genus geococcyx|1 +(noun)|Geococcyx|genus Geococcyx|bird genus +genus geoffroea|1 +(noun)|Geoffroea|genus Geoffroea|rosid dicot genus +genus geoglossum|1 +(noun)|Geoglossum|genus Geoglossum|fungus genus +genus geomys|1 +(noun)|Geomys|genus Geomys|mammal genus +genus geophilus|1 +(noun)|Geophilus|genus Geophilus|arthropod genus +genus geothlypis|1 +(noun)|Geothlypis|genus Geothlypis|bird genus +genus geranium|1 +(noun)|genus Geranium|plant genus +genus gerardia|1 +(noun)|genus Gerardia|asterid dicot genus +genus gerbera|1 +(noun)|Gerbera|genus Gerbera|asterid dicot genus +genus gerbillus|1 +(noun)|Gerbillus|genus Gerbillus|mammal genus +genus gerea|1 +(noun)|Gerea|genus Gerea|asterid dicot genus +genus gerres|1 +(noun)|Gerres|genus Gerres|fish genus +genus gerrhonotus|1 +(noun)|Gerrhonotus|genus Gerrhonotus|reptile genus +genus gerris|1 +(noun)|Gerris|genus Gerris|arthropod genus +genus gesneria|1 +(noun)|genus Gesneria|asterid dicot genus +genus geum|1 +(noun)|Geum|genus Geum|rosid dicot genus +genus giardia|1 +(noun)|genus Giardia|protoctist genus +genus ginglymostoma|1 +(noun)|Ginglymostoma|genus Ginglymostoma|fish genus +genus ginkgo|1 +(noun)|genus Ginkgo|gymnosperm genus +genus giraffa|1 +(noun)|Giraffa|genus Giraffa|mammal genus +genus gladiolus|1 +(noun)|genus Gladiolus|liliid monocot genus +genus glareola|1 +(noun)|Glareola|genus Glareola|bird genus +genus glaucium|1 +(noun)|Glaucium|genus Glaucium|dilleniid dicot genus +genus glaucomys|1 +(noun)|Glaucomys|genus Glaucomys|mammal genus +genus glaux|1 +(noun)|Glaux|genus Glaux|dicot genus|magnoliopsid genus +genus glechoma|1 +(noun)|Glechoma|genus Glechoma|asterid dicot genus +genus gleditsia|1 +(noun)|Gleditsia|genus Gleditsia|rosid dicot genus +genus gleichenia|1 +(noun)|Gleichenia|genus Gleichenia|fern genus +genus gliricidia|1 +(noun)|genus Gliricidia|rosid dicot genus +genus glis|1 +(noun)|Glis|genus Glis|mammal genus +genus globicephala|1 +(noun)|Globicephala|genus Globicephala|mammal genus +genus globigerina|1 +(noun)|genus Globigerina|protoctist genus +genus gloriosa|1 +(noun)|genus Gloriosa|liliid monocot genus +genus glossina|1 +(noun)|genus Glossina|arthropod genus +genus glossodia|1 +(noun)|Glossodia|genus Glossodia|monocot genus|liliopsid genus +genus glossopsitta|1 +(noun)|Glossopsitta|genus Glossopsitta|bird genus +genus gloxinia|1 +(noun)|genus Gloxinia|asterid dicot genus +genus glyceria|1 +(noun)|Glyceria|genus Glyceria|monocot genus|liliopsid genus +genus glycine|1 +(noun)|Glycine|genus Glycine|rosid dicot genus +genus glycyrrhiza|1 +(noun)|Glycyrrhiza|genus Glycyrrhiza|rosid dicot genus +genus gnaphalium|1 +(noun)|Gnaphalium|genus Gnaphalium|asterid dicot genus +genus gnetum|1 +(noun)|genus Gnetum|gymnosperm genus +genus gobiesox|1 +(noun)|Gobiesox|genus Gobiesox|fish genus +genus gobio|1 +(noun)|Gobio|genus Gobio|fish genus +genus gomphotherium|1 +(noun)|Gomphotherium|genus Gomphotherium|mammal genus +genus gomphrena|1 +(noun)|Gomphrena|genus Gomphrena|caryophylloid dicot genus +genus goniopteris|1 +(noun)|Goniopteris|genus Goniopteris|fern genus +genus gonorhynchus|1 +(noun)|Gonorhynchus|genus Gonorhynchus|fish genus +genus goodyera|1 +(noun)|Goodyera|genus Goodyera|monocot genus|liliopsid genus +genus gopherus|1 +(noun)|Gopherus|genus Gopherus|reptile genus +genus gorgonocephalus|1 +(noun)|Gorgonocephalus|genus Gorgonocephalus|echinoderm genus +genus gorilla|1 +(noun)|genus Gorilla|mammal genus +genus gossypium|1 +(noun)|Gossypium|genus Gossypium|dilleniid dicot genus +genus gracula|1 +(noun)|Gracula|genus Gracula|bird genus +genus grammatophyllum|1 +(noun)|Grammatophyllum|genus Grammatophyllum|monocot genus|liliopsid genus +genus grampus|1 +(noun)|genus Grampus|mammal genus +genus graptophyllum|1 +(noun)|Graptophyllum|genus Graptophyllum|asterid dicot genus +genus grevillea|1 +(noun)|genus Grevillea|dicot genus|magnoliopsid genus +genus grewia|1 +(noun)|Grewia|genus Grewia|dilleniid dicot genus +genus grias|1 +(noun)|Grias|genus Grias|dicot genus|magnoliopsid genus +genus grindelia|1 +(noun)|Grindelia|genus Grindelia|asterid dicot genus +genus griselinia|1 +(noun)|Griselinia|genus Griselinia|rosid dicot genus +genus grison|1 +(noun)|genus Grison|mammal genus +genus groenlandia|1 +(noun)|Groenlandia|genus Groenlandia|monocot genus|liliopsid genus +genus grus|1 +(noun)|Grus|genus Grus|bird genus +genus guaiacum|1 +(noun)|Guaiacum|genus Guaiacum|rosid dicot genus +genus guevina|1 +(noun)|Guevina|genus Guevina|dicot genus|magnoliopsid genus +genus gulo|1 +(noun)|Gulo|genus Gulo|mammal genus +genus gutierrezia|1 +(noun)|Gutierrezia|genus Gutierrezia|asterid dicot genus +genus gymnadenia|1 +(noun)|Gymnadenia|genus Gymnadenia|monocot genus|liliopsid genus +genus gymnadeniopsis|1 +(noun)|Gymnadeniopsis|genus Gymnadeniopsis|monocot genus|liliopsid genus +genus gymnelis|1 +(noun)|Gymnelis|genus Gymnelis|fish genus +genus gymnocalycium|1 +(noun)|Gymnocalycium|genus Gymnocalycium|caryophylloid dicot genus +genus gymnocarpium|1 +(noun)|Gymnocarpium|genus Gymnocarpium|fern genus +genus gymnocladus|1 +(noun)|Gymnocladus|genus Gymnocladus|rosid dicot genus +genus gymnogyps|1 +(noun)|Gymnogyps|genus Gymnogyps|bird genus +genus gymnopilus|1 +(noun)|Gymnopilus|genus Gymnopilus|fungus genus +genus gymnorhina|1 +(noun)|Gymnorhina|genus Gymnorhina|bird genus +genus gymnosporangium|1 +(noun)|Gymnosporangium|genus Gymnosporangium|fungus genus +genus gymnura|1 +(noun)|Gymnura|genus Gymnura|fish genus +genus gynura|1 +(noun)|Gynura|genus Gynura|asterid dicot genus +genus gypaetus|1 +(noun)|Gypaetus|genus Gypaetus|bird genus +genus gyps|1 +(noun)|Gyps|genus Gyps|bird genus +genus gypsophila|1 +(noun)|Gypsophila|genus Gypsophila|caryophylloid dicot genus +genus gyromitra|1 +(noun)|genus Gyromitra|fungus genus +genus haastia|1 +(noun)|Haastia|genus Haastia|asterid dicot genus +genus habenaria|1 +(noun)|Habenaria|genus Habenaria|monocot genus|liliopsid genus +genus hackelia|1 +(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus +genus haemanthus|1 +(noun)|Haemanthus|genus Haemanthus|liliid monocot genus +genus haematobia|1 +(noun)|Haematobia|genus Haematobia|arthropod genus +genus haematopus|1 +(noun)|Haematopus|genus Haematopus|bird genus +genus haematoxylon|1 +(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus +genus haematoxylum|1 +(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus +genus haemodorum|1 +(noun)|Haemodorum|genus Haemodorum|monocot genus|liliopsid genus +genus haemopis|1 +(noun)|Haemopis|genus Haemopis|worm genus +genus haemoproteus|1 +(noun)|Haemoproteus|genus Haemoproteus|protoctist genus +genus haemulon|1 +(noun)|Haemulon|genus Haemulon|fish genus +genus hakea|1 +(noun)|Hakea|genus Hakea|dicot genus|magnoliopsid genus +genus halcyon|1 +(noun)|Halcyon|genus Halcyon|bird genus +genus haldea|1 +(noun)|Haldea|genus Haldea|reptile genus +genus halenia|1 +(noun)|Halenia|genus Halenia|dicot genus|magnoliopsid genus +genus halesia|1 +(noun)|Halesia|genus Halesia|dicot genus|magnoliopsid genus +genus haliaeetus|1 +(noun)|Haliaeetus|genus Haliaeetus|bird genus +genus halicoeres|1 +(noun)|Halicoeres|genus Halicoeres|fish genus +genus halimodendron|1 +(noun)|Halimodendron|genus Halimodendron|rosid dicot genus +genus haliotis|1 +(noun)|Haliotis|genus Haliotis|mollusk genus +genus halocarpus|1 +(noun)|Halocarpus|genus Halocarpus|gymnosperm genus +genus halogeton|1 +(noun)|genus Halogeton|caryophylloid dicot genus +genus hamamelidanthum|1 +(noun)|Hamamelidanthum|genus Hamamelidanthum|dicot genus|magnoliopsid genus +genus hamamelidoxylon|1 +(noun)|Hamamelidoxylon|genus Hamamelidoxylon|dicot genus|magnoliopsid genus +genus hamamelis|1 +(noun)|Hamamelis|genus Hamamelis|plant genus +genus hamamelites|1 +(noun)|Hamamelites|genus Hamamelites|dicot genus|magnoliopsid genus +genus hamelia|1 +(noun)|genus Hamelia|asterid dicot genus +genus haminoea|1 +(noun)|Haminoea|genus Haminoea|mollusk genus +genus haplopappus|1 +(noun)|Haplopappus|genus Haplopappus|asterid dicot genus +genus hardenbergia|1 +(noun)|Hardenbergia|genus Hardenbergia|rosid dicot genus +genus harpia|1 +(noun)|Harpia|genus Harpia|bird genus +genus harpullia|1 +(noun)|genus Harpullia|dicot genus|magnoliopsid genus +genus harrisia|1 +(noun)|Harrisia|genus Harrisia|caryophylloid dicot genus +genus hatiora|1 +(noun)|Hatiora|genus Hatiora|caryophylloid dicot genus +genus hazardia|1 +(noun)|Hazardia|genus Hazardia|asterid dicot genus +genus hedeoma|1 +(noun)|Hedeoma|genus Hedeoma|asterid dicot genus +genus hedera|1 +(noun)|Hedera|genus Hedera|rosid dicot genus +genus hedysarum|1 +(noun)|Hedysarum|genus Hedysarum|rosid dicot genus +genus helenium|1 +(noun)|Helenium|genus Helenium|asterid dicot genus +genus heleodytes|1 +(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus +genus heliamphora|1 +(noun)|Heliamphora|genus Heliamphora|dicot genus|magnoliopsid genus +genus helianthemum|1 +(noun)|genus Helianthemum|dilleniid dicot genus +genus helianthus|1 +(noun)|genus Helianthus|asterid dicot genus +genus helichrysum|1 +(noun)|Helichrysum|genus Helichrysum|asterid dicot genus +genus helicteres|1 +(noun)|Helicteres|genus Helicteres|dilleniid dicot genus +genus heliobacter|1 +(noun)|Heliobacter|genus Heliobacter|bacteria genus +genus heliophila|1 +(noun)|genus Heliophila|dilleniid dicot genus +genus heliopsis|1 +(noun)|genus Heliopsis|asterid dicot genus +genus heliothis|1 +(noun)|Heliothis|genus Heliothis|arthropod genus +genus helipterum|1 +(noun)|Helipterum|genus Helipterum|asterid dicot genus +genus helix|1 +(noun)|Helix|genus Helix|mollusk genus +genus helleborus|1 +(noun)|Helleborus|genus Helleborus|magnoliid dicot genus +genus helminthostachys|1 +(noun)|Helminthostachys|genus Helminthostachys|fern genus +genus heloderma|1 +(noun)|Heloderma|genus Heloderma|reptile genus +genus helotium|1 +(noun)|Helotium|genus Helotium|fungus genus +genus helvella|1 +(noun)|genus Helvella|fungus genus +genus helwingia|1 +(noun)|Helwingia|genus Helwingia|rosid dicot genus +genus helxine|1 +(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus|magnoliopsid genus +genus hemachatus|1 +(noun)|Hemachatus|genus Hemachatus|reptile genus +genus hemerocallis|1 +(noun)|Hemerocallis|genus Hemerocallis|liliid monocot genus +genus hemigalus|1 +(noun)|Hemigalus|genus Hemigalus|mammal genus +genus hemigrammus|1 +(noun)|Hemigrammus|genus Hemigrammus|fish genus +genus hemipteronatus|1 +(noun)|Hemipteronatus|genus Hemipteronatus|fish genus +genus hemitripterus|1 +(noun)|Hemitripterus|genus Hemitripterus|fish genus +genus hepatica|1 +(noun)|genus Hepatica|magnoliid dicot genus +genus heracleum|1 +(noun)|Heracleum|genus Heracleum|rosid dicot genus +genus heritiera|1 +(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus +genus hermannia|1 +(noun)|Hermannia|genus Hermannia|dilleniid dicot genus +genus hermissenda|1 +(noun)|Hermissenda|genus Hermissenda|mollusk genus +genus hernaria|1 +(noun)|Hernaria|genus Hernaria|caryophylloid dicot genus +genus herpestes|1 +(noun)|Herpestes|genus Herpestes|mammal genus +genus herrerasaurus|1 +(noun)|genus Herrerasaurus|reptile genus +genus hesperiphona|1 +(noun)|Hesperiphona|genus Hesperiphona|bird genus +genus hesperis|1 +(noun)|Hesperis|genus Hesperis|dilleniid dicot genus +genus heteranthera|1 +(noun)|Heteranthera|genus Heteranthera|monocot genus|liliopsid genus +genus heterocephalus|1 +(noun)|Heterocephalus|genus Heterocephalus|mammal genus +genus heterodon|1 +(noun)|Heterodon|genus Heterodon|reptile genus +genus heteromeles|1 +(noun)|Heteromeles|genus Heteromeles|rosid dicot genus +genus heteroscelus|1 +(noun)|Heteroscelus|genus Heteroscelus|bird genus +genus heterotheca|1 +(noun)|Heterotheca|genus Heterotheca|asterid dicot genus +genus heuchera|1 +(noun)|Heuchera|genus Heuchera|rosid dicot genus +genus hevea|1 +(noun)|Hevea|genus Hevea|rosid dicot genus +genus hexagrammos|1 +(noun)|Hexagrammos|genus Hexagrammos|fish genus +genus hexalectris|1 +(noun)|Hexalectris|genus Hexalectris|monocot genus|liliopsid genus +genus hexamita|1 +(noun)|Hexamita|genus Hexamita|protoctist genus +genus hexanchus|1 +(noun)|Hexanchus|genus Hexanchus|fish genus +genus hibbertia|1 +(noun)|Hibbertia|genus Hibbertia|dilleniid dicot genus +genus hibiscus|1 +(noun)|genus Hibiscus|dilleniid dicot genus +genus hieracium|1 +(noun)|Hieracium|genus Hieracium|asterid dicot genus +genus himantoglossum|1 +(noun)|Himantoglossum|genus Himantoglossum|monocot genus|liliopsid genus +genus himantopus|1 +(noun)|Himantopus|genus Himantopus|bird genus +genus hippeastrum|1 +(noun)|genus Hippeastrum|liliid monocot genus +genus hippobosca|1 +(noun)|Hippobosca|genus Hippobosca|arthropod genus +genus hippocampus|1 +(noun)|Hippocampus|genus Hippocampus|fish genus +genus hippocrepis|1 +(noun)|Hippocrepis|genus Hippocrepis|rosid dicot genus +genus hippodamia|1 +(noun)|Hippodamia|genus Hippodamia|arthropod genus +genus hippoglossoides|1 +(noun)|Hippoglossoides|genus Hippoglossoides|fish genus +genus hippoglossus|1 +(noun)|Hippoglossus|genus Hippoglossus|fish genus +genus hippopotamus|1 +(noun)|genus Hippopotamus|mammal genus +genus hipposideros|1 +(noun)|Hipposideros|genus Hipposideros|mammal genus +genus hippotragus|1 +(noun)|Hippotragus|genus Hippotragus|mammal genus +genus hipsurus|1 +(noun)|Hipsurus|genus Hipsurus|fish genus +genus hirudo|1 +(noun)|Hirudo|genus Hirudo|worm genus +genus hirundo|1 +(noun)|Hirundo|genus Hirundo|bird genus +genus hoheria|1 +(noun)|Hoheria|genus Hoheria|dilleniid dicot genus +genus holarrhena|1 +(noun)|Holarrhena|genus Holarrhena|dicot genus|magnoliopsid genus +genus holbrookia|1 +(noun)|Holbrookia|genus Holbrookia|reptile genus +genus holcus|1 +(noun)|Holcus|genus Holcus|monocot genus|liliopsid genus +genus holocentrus|1 +(noun)|Holocentrus|genus Holocentrus|fish genus +genus holothuria|1 +(noun)|Holothuria|genus Holothuria|echinoderm genus +genus homarus|1 +(noun)|Homarus|genus Homarus|arthropod genus +genus homo|1 +(noun)|genus Homo|mammal genus +genus homogyne|1 +(noun)|Homogyne|genus Homogyne|asterid dicot genus +genus homona|1 +(noun)|Homona|genus Homona|arthropod genus +genus hordeum|1 +(noun)|Hordeum|genus Hordeum|monocot genus|liliopsid genus +genus horneophyton|1 +(noun)|Horneophyton|genus Horneophyton|fern genus +genus hosta|1 +(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus +genus hottonia|1 +(noun)|Hottonia|genus Hottonia|dicot genus|magnoliopsid genus +genus houttuynia|1 +(noun)|Houttuynia|genus Houttuynia|dicot genus|magnoliopsid genus +genus hovea|1 +(noun)|genus Hovea|rosid dicot genus +genus hoya|1 +(noun)|genus Hoya|dicot genus|magnoliopsid genus +genus hudsonia|1 +(noun)|Hudsonia|genus Hudsonia|dilleniid dicot genus +genus hugueninia|1 +(noun)|Hugueninia|genus Hugueninia|dilleniid dicot genus +genus hulsea|1 +(noun)|Hulsea|genus Hulsea|asterid dicot genus +genus humulus|1 +(noun)|Humulus|genus Humulus|dicot genus|magnoliopsid genus +genus hunnemania|1 +(noun)|Hunnemannia|genus Hunnemania|dilleniid dicot genus +genus hyacinthoides|1 +(noun)|Hyacinthoides|genus Hyacinthoides|liliid monocot genus +genus hyacinthus|1 +(noun)|genus Hyacinthus|liliid monocot genus +genus hyaena|1 +(noun)|genus Hyaena|mammal genus +genus hyalophora|1 +(noun)|Hyalophora|genus Hyalophora|arthropod genus +genus hyalosperma|1 +(noun)|Hyalosperma|genus Hyalosperma|asterid dicot genus +genus hybanthus|1 +(noun)|Hybanthus|genus Hybanthus|dilleniid dicot genus +genus hydnocarpus|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +genus hydnum|1 +(noun)|Hydnum|genus Hydnum|fungus genus +genus hydra|1 +(noun)|genus Hydra|coelenterate genus +genus hydrangea|1 +(noun)|genus Hydrangea|rosid dicot genus +genus hydrastis|1 +(noun)|Hydrastis|genus Hydrastis|magnoliid dicot genus +genus hydrilla|1 +(noun)|genus Hydrilla|monocot genus|liliopsid genus +genus hydrobates|1 +(noun)|Hydrobates|genus Hydrobates|bird genus +genus hydrocharis|1 +(noun)|Hydrocharis|genus Hydrocharis|monocot genus|liliopsid genus +genus hydrochoerus|1 +(noun)|Hydrochoerus|genus Hydrochoerus|mammal genus +genus hydrodamalis|1 +(noun)|Hydrodamalis|genus Hydrodamalis|mammal genus +genus hydromantes|1 +(noun)|Hydromantes|genus Hydromantes|amphibian genus +genus hydromys|1 +(noun)|Hydromys|genus Hydromys|mammal genus +genus hydrophyllum|1 +(noun)|Hydrophyllum|genus Hydrophyllum|asterid dicot genus +genus hyemoschus|1 +(noun)|Hyemoschus|genus Hyemoschus|mammal genus +genus hygrocybe|1 +(noun)|Hygrocybe|genus Hygrocybe|fungus genus +genus hygrophorus|1 +(noun)|Hygrophorus|genus Hygrophorus|fungus genus +genus hygrotrama|1 +(noun)|Hygrotrama|genus Hygrotrama|fungus genus +genus hyla|1 +(noun)|Hyla|genus Hyla|amphibian genus +genus hylactophryne|1 +(noun)|Hylactophryne|genus Hylactophryne|amphibian genus +genus hylobates|1 +(noun)|Hylobates|genus Hylobates|mammal genus +genus hylocereus|1 +(noun)|Hylocereus|genus Hylocereus|caryophylloid dicot genus +genus hylocichla|1 +(noun)|Hylocichla|genus Hylocichla|bird genus +genus hylophylax|1 +(noun)|Hylophylax|genus Hylophylax|bird genus +genus hymenaea|1 +(noun)|Hymenaea|genus Hymenaea|rosid dicot genus +genus hymenanthera|1 +(noun)|Hymenanthera|genus Hymenanthera|dilleniid dicot genus +genus hymenophyllum|1 +(noun)|Hymenophyllum|genus Hymenophyllum|fern genus +genus hynerpeton|1 +(noun)|Hynerpeton|genus Hynerpeton|amphibian genus +genus hyoscyamus|1 +(noun)|Hyoscyamus|genus Hyoscyamus|asterid dicot genus +genus hypentelium|1 +(noun)|Hypentelium|genus Hypentelium|fish genus +genus hypericum|1 +(noun)|Hypericum|genus Hypericum|dilleniid dicot genus +genus hyperoglyphe|1 +(noun)|Hyperoglyphe|genus Hyperoglyphe|fish genus +genus hyperoodon|1 +(noun)|Hyperoodon|genus Hyperoodon|mammal genus +genus hyphantria|1 +(noun)|Hyphantria|genus Hyphantria|arthropod genus +genus hypochaeris|1 +(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus +genus hypochoeris|1 +(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus +genus hypoderma|1 +(noun)|Hypoderma|genus Hypoderma|arthropod genus +genus hypopachus|1 +(noun)|Hypopachus|genus Hypopachus|amphibian genus +genus hypopitys|1 +(noun)|Hypopitys|genus Hypopitys|dilleniid dicot genus +genus hypoxis|1 +(noun)|Hypoxis|genus Hypoxis|liliid monocot genus +genus hypsiglena|1 +(noun)|Hypsiglena|genus Hypsiglena|reptile genus +genus hypsiprymnodon|1 +(noun)|Hypsiprymnodon|genus Hypsiprymnodon|mammal genus +genus hyracotherium|1 +(noun)|Hyracotherium|genus Hyracotherium|mammal genus +genus hyssopus|1 +(noun)|Hyssopus|genus Hyssopus|asterid dicot genus +genus iberis|1 +(noun)|Iberis|genus Iberis|dilleniid dicot genus +genus ibero-mesornis|1 +(noun)|genus Ibero-mesornis|bird genus +genus ibis|1 +(noun)|genus Ibis|bird genus +genus ichthyosaurus|1 +(noun)|genus Ichthyosaurus|reptile genus +genus ichthyostega|1 +(noun)|genus Ichthyostega|amphibian genus +genus ictalurus|1 +(noun)|Ictalurus|genus Ictalurus|fish genus +genus icteria|1 +(noun)|Icteria|genus Icteria|bird genus +genus icterus|1 +(noun)|Icterus|genus Icterus|bird genus +genus ictiobus|1 +(noun)|Ictiobus|genus Ictiobus|fish genus +genus ictonyx|1 +(noun)|Ictonyx|genus Ictonyx|mammal genus +genus idesia|1 +(noun)|genus Idesia|dilleniid dicot genus +genus iguana|1 +(noun)|genus Iguana|reptile genus +genus iguanodon|1 +(noun)|genus Iguanodon|reptile genus +genus ilex|1 +(noun)|Ilex|genus Ilex|dicot genus|magnoliopsid genus +genus iliamna|1 +(noun)|Iliamna|genus Iliamna|dilleniid dicot genus +genus illecebrum|1 +(noun)|Illecebrum|genus Illecebrum|caryophylloid dicot genus +genus illicium|1 +(noun)|Illicium|genus Illicium|magnoliid dicot genus +genus impatiens|1 +(noun)|genus Impatiens|rosid dicot genus +genus inachis|1 +(noun)|Inachis|genus Inachis|arthropod genus +genus indigofera|1 +(noun)|Indigofera|genus Indigofera|rosid dicot genus +genus indri|1 +(noun)|genus Indri|mammal genus +genus inga|1 +(noun)|genus Inga|rosid dicot genus +genus inula|1 +(noun)|genus Inula|asterid dicot genus +genus ipomoea|1 +(noun)|Ipomoea|genus Ipomoea|dicot genus|magnoliopsid genus +genus irena|1 +(noun)|Irena|genus Irena|bird genus +genus iresine|1 +(noun)|Iresine|genus Iresine|caryophylloid dicot genus +genus iridoprocne|1 +(noun)|Iridoprocne|genus Iridoprocne|bird genus +genus iris|1 +(noun)|genus Iris|liliid monocot genus|Iridaceae|family Iridaceae|iris family +genus irvingia|1 +(noun)|Irvingia|genus Irvingia|rosid dicot genus +genus isatis|1 +(noun)|Isatis|genus Isatis|dilleniid dicot genus +genus ischigualastia|1 +(noun)|Ischigualastia|genus Ischigualastia|reptile genus +genus isoetes|1 +(noun)|Isoetes|genus Isoetes|fern genus +genus isopyrum|1 +(noun)|Isopyrum|genus Isopyrum|magnoliid dicot genus +genus istiophorus|1 +(noun)|Istiophorus|genus Istiophorus|fish genus +genus isurus|1 +(noun)|Isurus|genus Isurus|fish genus +genus iva|1 +(noun)|genus Iva|asterid dicot genus +genus ixia|1 +(noun)|Ixia|genus Ixia|liliid monocot genus +genus ixobrychus|1 +(noun)|Ixobrychus|genus Ixobrychus|bird genus +genus ixodes|1 +(noun)|Ixodes|genus Ixodes|arthropod genus +genus jabiru|1 +(noun)|genus Jabiru|bird genus +genus jacksonia|1 +(noun)|Jacksonia|genus Jacksonia|rosid dicot genus +genus jacquinia|1 +(noun)|Jacquinia|genus Jacquinia|dicot genus|magnoliopsid genus +genus jaculus|1 +(noun)|Jaculus|genus Jaculus|mammal genus +genus jambos|1 +(noun)|Jambos|genus Jambos|dicot genus|magnoliopsid genus +genus jamesonia|1 +(noun)|Jamesonia|genus Jamesonia|fern genus +genus jasminum|1 +(noun)|Jasminum|genus Jasminum|dicot genus|magnoliopsid genus +genus jatropha|1 +(noun)|Jatropha|genus Jatropha|rosid dicot genus +genus javanthropus|1 +(noun)|Javanthropus|genus Javanthropus|hominid +genus jordanella|1 +(noun)|Jordanella|genus Jordanella|fish genus +genus juglans|1 +(noun)|Juglans|genus Juglans|dicot genus|magnoliopsid genus +genus junco|1 +(noun)|genus Junco|bird genus +genus juncus|1 +(noun)|Juncus|genus Juncus|monocot genus|liliopsid genus +genus juniperus|1 +(noun)|Juniperus|genus Juniperus|gymnosperm genus +genus jynx|1 +(noun)|Jynx|genus Jynx|bird genus +genus kakatoe|1 +(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus +genus kalmia|1 +(noun)|genus Kalmia|dilleniid dicot genus +genus kalotermes|1 +(noun)|Kalotermes|genus Kalotermes|arthropod genus +genus katsuwonus|1 +(noun)|Katsuwonus|genus Katsuwonus|fish genus +genus kennedia|1 +(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus +genus kennedya|1 +(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus +genus kenyapithecus|1 +(noun)|Kenyapithecus|genus Kenyapithecus|mammal genus +genus keteleeria|1 +(noun)|genus Keteleeria|gymnosperm genus +genus khaya|1 +(noun)|Khaya|genus Khaya|rosid dicot genus +genus kiggelaria|1 +(noun)|Kiggelaria|genus Kiggelaria|dilleniid dicot genus +genus kinosternon|1 +(noun)|Kinosternon|genus Kinosternon|reptile genus +genus kirkia|1 +(noun)|Kirkia|genus Kirkia|rosid dicot genus +genus klebsiella|1 +(noun)|genus Klebsiella|bacteria genus +genus knightia|1 +(noun)|Knightia|genus Knightia|dicot genus|magnoliopsid genus +genus kniphofia|1 +(noun)|genus Kniphofia|liliid monocot genus +genus kobus|1 +(noun)|Kobus|genus Kobus|mammal genus +genus kochia|1 +(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus +genus koellia|1 +(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus +genus kogia|1 +(noun)|Kogia|genus Kogia|mammal genus +genus kohleria|1 +(noun)|genus Kohleria|asterid dicot genus +genus kolkwitzia|1 +(noun)|Kolkwitzia|genus Kolkwitzia|asterid dicot genus +genus kosteletzya|1 +(noun)|Kosteletzya|genus Kosteletzya|dilleniid dicot genus +genus krigia|1 +(noun)|genus Krigia|asterid dicot genus +genus krypterophaneron|1 +(noun)|Krypterophaneron|genus Krypterophaneron|fish genus +genus kyphosus|1 +(noun)|Kyphosus|genus Kyphosus|fish genus +genus lablab|1 +(noun)|Lablab|genus Lablab|rosid dicot genus +genus laburnum|1 +(noun)|Laburnum|genus Laburnum|rosid dicot genus +genus laccopetalum|1 +(noun)|Laccopetalum|genus Laccopetalum|magnoliid dicot genus +genus lacerta|1 +(noun)|Lacerta|genus Lacerta|reptile genus +genus lachnolaimus|1 +(noun)|Lachnolaimus|genus Lachnolaimus|fish genus +genus lactarius|1 +(noun)|Lactarius|genus Lactarius|fungus genus +genus lactobacillus|1 +(noun)|genus Lactobacillus|bacteria genus +genus lactophrys|1 +(noun)|Lactophrys|genus Lactophrys|fish genus +genus lactuca|1 +(noun)|Lactuca|genus Lactuca|asterid dicot genus +genus laelia|1 +(noun)|genus Laelia|monocot genus|liliopsid genus +genus lagarostrobus|1 +(noun)|Lagarostrobus|genus Lagarostrobus|gymnosperm genus +genus lagenaria|1 +(noun)|Lagenaria|genus Lagenaria|dicot genus|magnoliopsid genus +genus lagenophera|1 +(noun)|Lagenophera|genus Lagenophera|asterid dicot genus +genus lagerstroemia|1 +(noun)|Lagerstroemia|genus Lagerstroemia|plant genus +genus lagidium|1 +(noun)|Lagidium|genus Lagidium|mammal genus +genus lagodon|1 +(noun)|Lagodon|genus Lagodon|fish genus +genus lagopus|1 +(noun)|Lagopus|genus Lagopus|bird genus +genus lagorchestes|1 +(noun)|Lagorchestes|genus Lagorchestes|mammal genus +genus lagostomus|1 +(noun)|Lagostomus|genus Lagostomus|mammal genus +genus lagothrix|1 +(noun)|Lagothrix|genus Lagothrix|mammal genus +genus laguncularia|1 +(noun)|Laguncularia|genus Laguncularia|plant genus +genus lama|1 +(noun)|Lama|genus Lama|mammal genus +genus lambertia|1 +(noun)|Lambertia|genus Lambertia|dicot genus|magnoliopsid genus +genus lambis|1 +(noun)|Lambis|genus Lambis|mollusk genus +genus laminaria|1 +(noun)|Laminaria|genus Laminaria|protoctist genus +genus lamium|1 +(noun)|Lamium|genus Lamium|asterid dicot genus +genus lamna|1 +(noun)|Lamna|genus Lamna|fish genus +genus lampris|1 +(noun)|Lampris|genus Lampris|fish genus +genus lampropeltis|1 +(noun)|Lampropeltis|genus Lampropeltis|reptile genus +genus languas|1 +(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus +genus lanius|1 +(noun)|Lanius|genus Lanius|bird genus +genus lansium|1 +(noun)|genus Lansium|rosid dicot genus +genus lanthanotus|1 +(noun)|Lanthanotus|genus Lanthanotus|reptile genus +genus laportea|1 +(noun)|Laportea|genus Laportea|dicot genus|magnoliopsid genus +genus lappula|1 +(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus +genus lardizabala|1 +(noun)|Lardizabala|genus Lardizabala|magnoliid dicot genus +genus larix|1 +(noun)|Larix|genus Larix|gymnosperm genus +genus larrea|1 +(noun)|Larrea|genus Larrea|rosid dicot genus +genus larus|1 +(noun)|Larus|genus Larus|bird genus +genus lasiocampa|1 +(noun)|Lasiocampa|genus Lasiocampa|arthropod genus +genus lasiurus|1 +(noun)|Lasiurus|genus Lasiurus|mammal genus +genus lasthenia|1 +(noun)|Lasthenia|genus Lasthenia|asterid dicot genus +genus lastreopsis|1 +(noun)|Lastreopsis|genus Lastreopsis|fern genus +genus lathyrus|1 +(noun)|Lathyrus|genus Lathyrus|rosid dicot genus +genus latimeria|1 +(noun)|Latimeria|genus Latimeria|fish genus +genus latrodectus|1 +(noun)|Latrodectus|genus Latrodectus|arthropod genus +genus laurus|1 +(noun)|Laurus|genus Laurus|magnoliid dicot genus +genus lavandula|1 +(noun)|Lavandula|genus Lavandula|asterid dicot genus +genus lavatera|1 +(noun)|Lavatera|genus Lavatera|dilleniid dicot genus +genus layia|1 +(noun)|Layia|genus Layia|asterid dicot genus +genus lebistes|1 +(noun)|Lebistes|genus Lebistes|fish genus +genus lecanopteris|1 +(noun)|genus Lecanopteris|fern genus +genus lecanora|1 +(noun)|genus Lecanora|fungus genus +genus leccinum|1 +(noun)|Leccinum|genus Leccinum|fungus genus +genus ledum|1 +(noun)|Ledum|genus Ledum|dilleniid dicot genus +genus leiopelma|1 +(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus +genus leiophyllum|1 +(noun)|Leiophyllum|genus Leiophyllum|dilleniid dicot genus +genus leipoa|1 +(noun)|genus Leipoa|bird genus +genus leishmania|1 +(noun)|Leishmania|genus Leishmania|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +genus leitneria|1 +(noun)|Leitneria|genus Leitneria|dicot genus|magnoliopsid genus +genus lemaireocereus|1 +(noun)|Lemaireocereus|genus Lemaireocereus|caryophylloid dicot genus +genus lemmus|1 +(noun)|Lemmus|mammal genus +genus lemna|1 +(noun)|Lemna|genus Lemna|monocot genus|liliopsid genus +genus lemur|1 +(noun)|genus Lemur|mammal genus +genus lens|1 +(noun)|Lens|genus Lens|rosid dicot genus +genus lentinus|1 +(noun)|Lentinus|genus Lentinus|fungus genus +genus leonotis|1 +(noun)|Leonotis|genus Leonotis|asterid dicot genus +genus leontideus|1 +(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus +genus leontocebus|1 +(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus +genus leontodon|1 +(noun)|Leontodon|genus Leontodon|asterid dicot genus +genus leontopodium|1 +(noun)|Leontopodium|genus Leontopodium|asterid dicot genus +genus leonurus|1 +(noun)|Leonurus|genus Leonurus|asterid dicot genus +genus lepas|1 +(noun)|Lepas|genus Lepas|arthropod genus +genus lepechinia|1 +(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus +genus lepidium|1 +(noun)|Lepidium|genus Lepidium|dilleniid dicot genus +genus lepidobotrys|1 +(noun)|genus Lepidobotrys|rosid dicot genus +genus lepidochelys|1 +(noun)|Lepidochelys|genus Lepidochelys|reptile genus +genus lepidocybium|1 +(noun)|Lepidocybium|genus Lepidocybium|fish genus +genus lepidothamnus|1 +(noun)|Lepidothamnus|genus Lepidothamnus|gymnosperm genus +genus lepiota|1 +(noun)|genus Lepiota|fungus genus +genus lepisma|1 +(noun)|Lepisma|genus Lepisma|arthropod genus +genus lepisosteus|1 +(noun)|Lepisosteus|genus Lepisosteus|fish genus +genus lepomis|1 +(noun)|Lepomis|genus Lepomis|fish genus +genus leptarrhena|1 +(noun)|Leptarrhena|genus Leptarrhena|rosid dicot genus +genus leptinotarsa|1 +(noun)|Leptinotarsa|genus Leptinotarsa|arthropod genus +genus leptodactylus|1 +(noun)|Leptodactylus|genus Leptodactylus|amphibian genus +genus leptoglossus|1 +(noun)|Leptoglossus|genus Leptoglossus|arthropod genus +genus leptopteris|1 +(noun)|Leptopteris|genus Leptopteris|fern genus +genus leptoptilus|1 +(noun)|Leptoptilus|genus Leptoptilus|bird genus +genus leptospira|1 +(noun)|genus Leptospira|bacteria genus +genus leptotyphlops|1 +(noun)|Leptotyphlops|genus Leptotyphlops|reptile genus +genus lepus|1 +(noun)|Lepus|genus Lepus|mammal genus +genus lespedeza|1 +(noun)|genus Lespedeza|rosid dicot genus +genus lesquerella|1 +(noun)|Lesquerella|genus Lesquerella|dilleniid dicot genus +genus leucadendron|1 +(noun)|Leucadendron|genus Leucadendron|dicot genus|magnoliopsid genus +genus leucaena|1 +(noun)|Leucaena|genus Leucaena|rosid dicot genus +genus leucanthemum|1 +(noun)|Leucanthemum|genus Leucanthemum|asterid dicot genus +genus leuciscus|1 +(noun)|Leuciscus|genus Leuciscus|fish genus +genus leucocytozoan|1 +(noun)|genus Leucocytozoon|genus Leucocytozoan|protoctist genus +genus leucocytozoon|1 +(noun)|genus Leucocytozoon|genus Leucocytozoan|protoctist genus +genus leucogenes|1 +(noun)|Leucogenes|genus Leucogenes|asterid dicot genus +genus leucothoe|1 +(noun)|genus Leucothoe|dilleniid dicot genus +genus levisticum|1 +(noun)|Levisticum|genus Levisticum|rosid dicot genus +genus lewisia|1 +(noun)|Lewisia|genus Lewisia|caryophylloid dicot genus +genus leycesteria|1 +(noun)|Leycesteria|genus Leycesteria|asterid dicot genus +genus leymus|1 +(noun)|Leymus|genus Leymus|monocot genus|liliopsid genus +genus liatris|1 +(noun)|Liatris|genus Liatris|asterid dicot genus +genus libocedrus|1 +(noun)|Libocedrus|genus Libocedrus|gymnosperm genus +genus lichanura|1 +(noun)|Lichanura|genus Lichanura|reptile genus +genus ligularia|1 +(noun)|Ligularia|genus Ligularia|asterid dicot genus +genus ligustrum|1 +(noun)|Ligustrum|genus Ligustrum|dicot genus|magnoliopsid genus +genus lilium|1 +(noun)|Lilium|genus Lilium|liliid monocot genus +genus limanda|1 +(noun)|Limanda|genus Limanda|fish genus +genus limax|1 +(noun)|Limax|genus Limax|mollusk genus +genus limenitis|1 +(noun)|Limenitis|genus Limenitis|arthropod genus +genus limnobium|1 +(noun)|Limnobium|genus Limnobium|monocot genus|liliopsid genus +genus limnocryptes|1 +(noun)|Limnocryptes|genus Limnocryptes|bird genus +genus limnodromus|1 +(noun)|Limnodromus|genus Limnodromus|bird genus +genus limonium|1 +(noun)|Limonium|genus Limonium|dicot genus|magnoliopsid genus +genus limosa|1 +(noun)|Limosa|genus Limosa|bird genus +genus limulus|1 +(noun)|Limulus|genus Limulus|arthropod genus +genus linanthus|1 +(noun)|Linanthus|genus Linanthus|plant genus +genus linaria|1 +(noun)|Linaria|genus Linaria|asterid dicot genus +genus lindera|1 +(noun)|Lindera|genus Lindera|magnoliid dicot genus +genus lindheimera|1 +(noun)|Lindheimera|genus Lindheimera|asterid dicot genus +genus linnaea|1 +(noun)|Linnaea|genus Linnaea|asterid dicot genus +genus linum|1 +(noun)|Linum|genus Linum|plant genus +genus liomys|1 +(noun)|Liomys|genus Liomys|mammal genus +genus liopelma|1 +(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus +genus liparis|2 +(noun)|genus Liparis|monocot genus|liliopsid genus +(noun)|Liparis|genus Liparis|fish genus +genus liposcelis|1 +(noun)|Liposcelis|genus Liposcelis|arthropod genus +genus liquidambar|1 +(noun)|genus Liquidambar|plant genus +genus liriodendron|1 +(noun)|Liriodendron|genus Liriodendron|magnoliid dicot genus +genus liriope|1 +(noun)|Liriope|genus Liriope|liliid monocot genus +genus listera|1 +(noun)|Listera|genus Listera|monocot genus|liliopsid genus +genus listeria|1 +(noun)|genus Listeria|bacteria genus +genus litchi|1 +(noun)|genus Litchi|dicot genus|magnoliopsid genus +genus lithocarpus|1 +(noun)|Lithocarpus|genus Lithocarpus|hamamelid dicot genus +genus lithophragma|1 +(noun)|Lithophragma|genus Lithophragma|rosid dicot genus +genus lithops|1 +(noun)|genus Lithops|caryophylloid dicot genus +genus lithospermum|1 +(noun)|Lithospermum|genus Lithospermum|plant genus +genus litocranius|1 +(noun)|Litocranius|genus Litocranius|mammal genus +genus littorina|1 +(noun)|Littorina|genus Littorina|mollusk genus +genus livistona|1 +(noun)|Livistona|genus Livistona|plant genus +genus loasa|1 +(noun)|genus Loasa|dilleniid dicot genus +genus lobelia|1 +(noun)|genus Lobelia|dicot genus|magnoliopsid genus +genus lobipes|1 +(noun)|Lobipes|genus Lobipes|bird genus +genus lobotes|1 +(noun)|Lobotes|genus Lobotes|fish genus +genus lobularia|1 +(noun)|Lobularia|genus Lobularia|dilleniid dicot genus +genus locusta|1 +(noun)|Locusta|genus Locusta|arthropod genus +genus lofortyx|1 +(noun)|Lofortyx|genus Lofortyx|bird genus +genus logania|1 +(noun)|Logania|genus Logania|dicot genus|magnoliopsid genus +genus loiseleuria|1 +(noun)|Loiseleuria|genus Loiseleuria|dilleniid dicot genus +genus loligo|1 +(noun)|genus Loligo|mollusk genus +genus lolium|1 +(noun)|Lolium|genus Lolium|monocot genus|liliopsid genus +genus lomatia|1 +(noun)|genus Lomatia|dicot genus|magnoliopsid genus +genus lomogramma|1 +(noun)|Lomogramma|genus Lomogramma|fern genus +genus lonas|1 +(noun)|Lonas|genus Lonas|asterid dicot genus +genus lonchocarpus|1 +(noun)|Lonchocarpus|genus Lonchocarpus|rosid dicot genus +genus lonicera|1 +(noun)|Lonicera|genus Lonicera|asterid dicot genus +genus lophius|1 +(noun)|Lophius|genus Lophius|fish genus +genus lophodytes|1 +(noun)|Lophodytes|genus Lophodytes|bird genus +genus lopholatilus|1 +(noun)|Lopholatilus|genus Lopholatilus|fish genus +genus lophophora|1 +(noun)|Lophophora|genus Lophophora|caryophylloid dicot genus +genus lophophorus|1 +(noun)|Lophophorus|genus Lophophorus|bird genus +genus lophosoria|1 +(noun)|Lophosoria|genus Lophosoria|fern genus +genus loranthus|1 +(noun)|Loranthus|genus Loranthus|dilleniid dicot genus +genus loris|1 +(noun)|genus Loris|mammal genus +genus lota|1 +(noun)|Lota|genus Lota|fish genus +genus lotus|1 +(noun)|Lotus|genus Lotus|rosid dicot genus +genus lovoa|1 +(noun)|Lovoa|genus Lovoa|rosid dicot genus +genus loxia|1 +(noun)|Loxia|genus Loxia|bird genus +genus loxodonta|1 +(noun)|Loxodonta|genus Loxodonta|mammal genus +genus loxoma|1 +(noun)|Loxoma|genus Loxoma|fern genus +genus loxostege|1 +(noun)|Loxostege|genus Loxostege|arthropod genus +genus lucilia|1 +(noun)|Lucilia|genus Lucilia|arthropod genus +genus lufengpithecus|1 +(noun)|Lufengpithecus|genus Lufengpithecus|mammal genus +genus luffa|1 +(noun)|genus Luffa|dicot genus|magnoliopsid genus +genus lumpenus|1 +(noun)|Lumpenus|genus Lumpenus|fish genus +genus lunaria|1 +(noun)|Lunaria|genus Lunaria|dilleniid dicot genus +genus lunda|1 +(noun)|Lunda|genus Lunda|bird genus +genus lupinus|1 +(noun)|Lupinus|genus Lupinus|rosid dicot genus +genus luscinia|1 +(noun)|Luscinia|genus Luscinia|bird genus +genus lutjanus|1 +(noun)|Lutjanus|genus Lutjanus|fish genus +genus lutra|1 +(noun)|Lutra|genus Lutra|mammal genus +genus luvarus|1 +(noun)|Luvarus|genus Luvarus|fish genus +genus lycaena|1 +(noun)|Lycaena|genus Lycaena|arthropod genus +genus lycaeon|1 +(noun)|Lycaeon|genus Lycaeon|mammal genus +genus lychnis|1 +(noun)|genus Lychnis|caryophylloid dicot genus +genus lycium|1 +(noun)|Lycium|genus Lycium|asterid dicot genus +genus lycoperdon|1 +(noun)|Lycoperdon|genus Lycoperdon|fungus genus +genus lycopersicon|1 +(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus +genus lycopersicum|1 +(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus +genus lycopodium|1 +(noun)|Lycopodium|genus Lycopodium|fern genus +genus lycopus|1 +(noun)|Lycopus|genus Lycopus|asterid dicot genus +genus lycosa|1 +(noun)|Lycosa|genus Lycosa|arthropod genus +genus lyginopteris|1 +(noun)|Lyginopteris|genus Lyginopteris|gymnosperm genus +genus lygodium|1 +(noun)|Lygodium|genus Lygodium|fern genus +genus lygus|1 +(noun)|Lygus|genus Lygus|arthropod genus +genus lymantria|1 +(noun)|Lymantria|genus Lymantria|arthropod genus +genus lynx|1 +(noun)|genus Lynx|mammal genus +genus lyonia|1 +(noun)|Lyonia|genus Lyonia|dilleniid dicot genus +genus lyrurus|1 +(noun)|Lyrurus|genus Lyrurus|bird genus +genus lysichiton|1 +(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus|liliopsid genus +genus lysichitum|1 +(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus|liliopsid genus +genus lysiloma|1 +(noun)|Lysiloma|genus Lysiloma|rosid dicot genus +genus lysimachia|1 +(noun)|Lysimachia|genus Lysimachia|dicot genus|magnoliopsid genus +genus lythrum|1 +(noun)|Lythrum|genus Lythrum|dicot genus|magnoliopsid genus +genus macaca|1 +(noun)|Macaca|genus Macaca|mammal genus +genus macadamia|1 +(noun)|genus Macadamia|dicot genus|magnoliopsid genus +genus machaeranthera|1 +(noun)|Machaeranthera|genus Machaeranthera|asterid dicot genus +genus macleaya|1 +(noun)|Macleaya|genus Macleaya|dilleniid dicot genus +genus maclura|1 +(noun)|Maclura|genus Maclura|dicot genus|magnoliopsid genus +genus macowanites|1 +(noun)|Macowanites|genus Macowanites|fungus genus +genus macrocephalon|1 +(noun)|Macrocephalon|genus Macrocephalon|bird genus +genus macrocheira|1 +(noun)|Macrocheira|genus Macrocheira|arthropod genus +genus macroclemys|1 +(noun)|Macroclemys|genus Macroclemys|reptile genus +genus macrodactylus|1 +(noun)|Macrodactylus|genus Macrodactylus|arthropod genus +genus macronectes|1 +(noun)|Macronectes|genus Macronectes|bird genus +genus macropus|1 +(noun)|Macropus|genus Macropus|mammal genus +genus macrothelypteris|1 +(noun)|Macrothelypteris|genus Macrothelypteris|fern genus +genus macrotis|1 +(noun)|Macrotis|genus Macrotis|mammal genus +genus macrotus|1 +(noun)|genus Macrotus|mammal genus +genus macrotyloma|1 +(noun)|Macrotyloma|genus Macrotyloma|rosid dicot genus +genus macrozamia|1 +(noun)|genus Macrozamia|gymnosperm genus +genus macrozoarces|1 +(noun)|Macrozoarces|genus Macrozoarces|fish genus +genus madia|1 +(noun)|Madia|genus Madia|asterid dicot genus +genus madoqua|1 +(noun)|Madoqua|genus Madoqua|mammal genus +genus maeandra|1 +(noun)|Maeandra|genus Maeandra|coelenterate genus +genus magicicada|1 +(noun)|Magicicada|genus Magicicada|arthropod genus +genus magnolia|1 +(noun)|genus Magnolia|magnoliid dicot genus +genus mahonia|1 +(noun)|Mahonia|genus Mahonia|magnoliid dicot genus +genus maia|1 +(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus +genus maianthemum|1 +(noun)|Maianthemum|genus Maianthemum|liliid monocot genus +genus maja|1 +(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus +genus majorana|1 +(noun)|Majorana|genus Majorana|asterid dicot genus +genus makaira|1 +(noun)|Makaira|genus Makaira|fish genus +genus malaclemys|1 +(noun)|Malaclemys|genus Malaclemys|reptile genus +genus malacosoma|1 +(noun)|Malacosoma|genus Malacosoma|arthropod genus +genus malacothamnus|1 +(noun)|Malacothamnus|genus Malacothamnus|dilleniid dicot genus +genus malaxis|1 +(noun)|Malaxis|genus Malaxis|monocot genus|liliopsid genus +genus malcolmia|1 +(noun)|Malcolmia|genus Malcolmia|dilleniid dicot genus +genus mallotus|1 +(noun)|Mallotus|genus Mallotus|fish genus +genus malope|1 +(noun)|genus Malope|dilleniid dicot genus +genus malopterurus|1 +(noun)|Malopterurus|genus Malopterurus|fish genus +genus malosma|1 +(noun)|Malosma|genus Malosma|dicot genus|magnoliopsid genus +genus malpighia|1 +(noun)|Malpighia|genus Malpighia|rosid dicot genus +genus malus|1 +(noun)|Malus|genus Malus|rosid dicot genus +genus malva|1 +(noun)|Malva|genus Malva|dilleniid dicot genus +genus malvastrum|1 +(noun)|Malvastrum|genus Malvastrum|dilleniid dicot genus +genus malvaviscus|1 +(noun)|Malvaviscus|genus Malvaviscus|dilleniid dicot genus +genus mammea|1 +(noun)|Mammea|genus Mammea|dilleniid dicot genus +genus mammillaria|1 +(noun)|genus Mammillaria|caryophylloid dicot genus +genus mammut|1 +(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus +genus mammuthus|1 +(noun)|Mammuthus|genus Mammuthus|mammal genus +genus mandevilla|1 +(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus|magnoliopsid genus +genus mandragora|1 +(noun)|Mandragora|genus Mandragora|asterid dicot genus +genus mandrillus|1 +(noun)|Mandrillus|genus Mandrillus|mammal genus +genus manduca|1 +(noun)|Manduca|genus Manduca|arthropod genus +genus mangifera|1 +(noun)|Mangifera|genus Mangifera|dicot genus|magnoliopsid genus +genus manglietia|1 +(noun)|manglietia|angiospermous tree|flowering tree +genus manihot|1 +(noun)|Manihot|genus Manihot|rosid dicot genus +genus manilkara|1 +(noun)|Manilkara|genus Manilkara|dicot genus|magnoliopsid genus +genus manis|1 +(noun)|Manis|genus Manis|mammal genus +genus manta|1 +(noun)|genus Manta|fish genus +genus mantis|1 +(noun)|genus Mantis|arthropod genus +genus maranta|1 +(noun)|genus Maranta|monocot genus|liliopsid genus +genus marasmius|1 +(noun)|Marasmius|genus Marasmius|fungus genus +genus marattia|1 +(noun)|Marattia|genus Marattia|fern genus +genus marchantia|1 +(noun)|Marchantia|genus Marchantia|moss genus +genus marmota|1 +(noun)|Marmota|genus Marmota|mammal genus +genus marrubium|1 +(noun)|Marrubium|genus Marrubium|asterid dicot genus +genus marsilea|1 +(noun)|Marsilea|genus Marsilea|fern genus +genus martes|1 +(noun)|Martes|genus Martes|mammal genus +genus martynia|1 +(noun)|genus Martynia|plant genus +genus masdevallia|1 +(noun)|genus Masdevallia|monocot genus|liliopsid genus +genus masticophis|1 +(noun)|Masticophis|genus Masticophis|reptile genus +genus mastigoproctus|1 +(noun)|Mastigoproctus|genus Mastigoproctus|arthropod genus +genus mastodon|1 +(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus +genus mastotermes|1 +(noun)|Mastotermes|genus Mastotermes|arthropod genus +genus matricaria|1 +(noun)|Matricaria|genus Matricaria|asterid dicot genus +genus matteuccia|1 +(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus +genus matthiola|1 +(noun)|Matthiola|genus Matthiola|dilleniid dicot genus +genus maxillaria|1 +(noun)|genus Maxillaria|monocot genus|liliopsid genus +genus maxostoma|1 +(noun)|Maxostoma|genus Maxostoma|fish genus +genus mayaca|1 +(noun)|Mayaca|genus Mayaca|monocot genus|liliopsid genus +genus mayetiola|1 +(noun)|Mayetiola|genus Mayetiola|arthropod genus +genus mazama|1 +(noun)|Mazama|genus Mazama|mammal genus +genus meconopsis|1 +(noun)|Meconopsis|genus Meconopsis|dilleniid dicot genus +genus medicago|1 +(noun)|Medicago|genus Medicago|rosid dicot genus|Papilionoideae|subfamily Papilionoideae +genus medinilla|1 +(noun)|Medinilla|genus Medinilla|rosid dicot genus +genus megachile|1 +(noun)|Megachile|genus Megachile|arthropod genus +genus megaderma|1 +(noun)|Megaderma|genus Megaderma|mammal genus +genus megalobatrachus|1 +(noun)|Megalobatrachus|genus Megalobatrachus|amphibian genus +genus megalosaurus|1 +(noun)|genus Megalosaurus|reptile genus +genus megaptera|1 +(noun)|Megaptera|genus Megaptera|mammal genus +genus megatherium|1 +(noun)|Megatherium|genus Megatherium|mammal genus +genus melampodium|1 +(noun)|Melampodium|genus Melampodium|asterid dicot genus +genus melampsora|1 +(noun)|Melampsora|genus Melampsora|fungus genus +genus melanerpes|1 +(noun)|Melanerpes|genus Melanerpes|bird genus +genus melanitta|1 +(noun)|Melanitta|genus Melanitta|bird genus +genus melanogrammus|1 +(noun)|Melanogrammus|genus Melanogrammus|fish genus +genus melanoplus|1 +(noun)|Melanoplus|genus Melanoplus|arthropod genus +genus melanotis|1 +(noun)|Melanotis|genus Melanotis|bird genus +genus melastoma|1 +(noun)|Melastoma|genus Melastoma|rosid dicot genus +genus meleagris|1 +(noun)|Meleagris|genus Meleagris|bird genus +genus meles|1 +(noun)|Meles|genus Meles|mammal genus +genus melia|1 +(noun)|Melia|genus Melia|rosid dicot genus +genus melicocca|1 +(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus|magnoliopsid genus +genus melicoccus|1 +(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus|magnoliopsid genus +genus melicytus|1 +(noun)|Melicytus|genus Melicytus|dilleniid dicot genus +genus melilotus|1 +(noun)|genus Melilotus|rosid dicot genus +genus melissa|1 +(noun)|Melissa|genus Melissa|asterid dicot genus +genus mellivora|1 +(noun)|Mellivora|genus Mellivora|mammal genus +genus melocactus|1 +(noun)|Melocactus|genus Melocactus|caryophylloid dicot genus +genus melogale|1 +(noun)|Melogale|genus Melogale|mammal genus +genus melolontha|1 +(noun)|Melolontha|genus Melolontha|arthropod genus +genus melophagus|1 +(noun)|Melophagus|genus Melophagus|arthropod genus +genus melopsittacus|1 +(noun)|Melopsittacus|genus Melopsittacus|bird genus +genus melospiza|1 +(noun)|Melospiza|genus Melospiza|bird genus +genus melursus|1 +(noun)|Melursus|genus Melursus|mammal genus +genus menippe|1 +(noun)|Menippe|genus Menippe|arthropod genus +genus meniscium|1 +(noun)|Meniscium|genus Meniscium|fern genus +genus menispermum|1 +(noun)|Menispermum|genus Menispermum|magnoliid dicot genus +genus menopon|1 +(noun)|Menopon|genus Menopon|arthropod genus +genus mentha|1 +(noun)|Mentha|genus Mentha|asterid dicot genus +genus menticirrhus|1 +(noun)|Menticirrhus|genus Menticirrhus|fish genus +genus mentzelia|1 +(noun)|Mentzelia|genus Mentzelia|dilleniid dicot genus +genus menura|1 +(noun)|Menura|genus Menura|bird genus +genus menyanthes|1 +(noun)|Menyanthes|genus Menyanthes|dicot genus|magnoliopsid genus +genus menziesia|1 +(noun)|Menziesia|genus Menziesia|dilleniid dicot genus +genus mephitis|1 +(noun)|Mephitis|genus Mephitis|mammal genus +genus mercenaria|1 +(noun)|Mercenaria|genus Mercenaria|mollusk genus +genus mercurialis|1 +(noun)|Mercurialis|genus Mercurialis|rosid dicot genus +genus mergus|1 +(noun)|Mergus|genus Mergus|bird genus +genus meriones|1 +(noun)|Meriones|genus Meriones|mammal genus +genus merlangus|1 +(noun)|Merlangus|genus Merlangus|fish genus +genus merluccius|1 +(noun)|Merluccius|genus Merluccius|fish genus +genus merops|1 +(noun)|Merops|genus Merops|bird genus +genus mertensia|1 +(noun)|Mertensia|genus Mertensia|plant genus +genus meryta|1 +(noun)|Meryta|genus Meryta|rosid dicot genus +genus mesembryanthemum|1 +(noun)|Mesembryanthemum|genus Mesembryanthemum|caryophylloid dicot genus +genus mesocricetus|1 +(noun)|Mesocricetus|genus Mesocricetus|mammal genus +genus mesohippus|1 +(noun)|genus Mesohippus|mammal genus +genus mespilus|1 +(noun)|Mespilus|genus Mespilus|rosid dicot genus +genus mesua|1 +(noun)|Mesua|genus Mesua|dilleniid dicot genus +genus metasequoia|1 +(noun)|genus Metasequoia|gymnosperm genus +genus metroxylon|1 +(noun)|Metroxylon|genus Metroxylon|monocot genus|liliopsid genus +genus microcentrum|1 +(noun)|Microcentrum|genus Microcentrum|arthropod genus +genus micrococcus|1 +(noun)|Micrococcus|genus Micrococcus|bacteria genus +genus microdipodops|1 +(noun)|Microdipodops|genus Microdipodops|mammal genus +genus microgramma|1 +(noun)|Microgramma|genus Microgramma|fern genus +genus micromeria|1 +(noun)|Micromeria|genus Micromeria|asterid dicot genus +genus micromyx|1 +(noun)|Micromyx|genus Micromyx|mammal genus +genus micropogonias|1 +(noun)|Micropogonias|genus Micropogonias|fish genus +genus micropterus|1 +(noun)|Micropterus|genus Micropterus|fish genus +genus microsorium|1 +(noun)|Microsorium|genus Microsorium|fern genus +genus microsporum|1 +(noun)|Microsporum|genus Microsporum|fungus genus +genus microstomus|1 +(noun)|Microstomus|genus Microstomus|fish genus +genus microstrobos|1 +(noun)|Microstrobos|genus Microstrobos|gymnosperm genus +genus microtus|1 +(noun)|Microtus|genus Microtus|mammal genus +genus micruroides|1 +(noun)|Micruroides|genus Micruroides|reptile genus +genus micrurus|1 +(noun)|Micrurus|genus Micrurus|reptile genus +genus mikania|1 +(noun)|Mikania|genus Mikania|asterid dicot genus +genus millettia|1 +(noun)|genus Millettia|rosid dicot genus +genus miltonia|1 +(noun)|Miltonia|genus Miltonia|monocot genus|liliopsid genus +genus mimosa|1 +(noun)|genus Mimosa|rosid dicot genus +genus mimus|1 +(noun)|Mimus|genus Mimus|bird genus +genus minuartia|1 +(noun)|Minuartia|genus Minuartia|caryophylloid dicot genus +genus mirabilis|1 +(noun)|Mirabilis|genus Mirabilis|caryophylloid dicot genus +genus mirounga|1 +(noun)|Mirounga|genus Mirounga|mammal genus +genus mitchella|1 +(noun)|Mitchella|genus Mitchella|asterid dicot genus +genus mitella|1 +(noun)|Mitella|genus Mitella|rosid dicot genus +genus mnium|1 +(noun)|Mnium|genus Mnium|moss genus +genus mobula|1 +(noun)|Mobula|genus Mobula|fish genus +genus moehringia|1 +(noun)|Moehringia|genus Moehringia|caryophylloid dicot genus +genus mohria|1 +(noun)|Mohria|genus Mohria|fern genus +genus mola|1 +(noun)|genus Mola|fish genus +genus mollienesia|1 +(noun)|Mollienesia|genus Mollienesia|fish genus +genus molluga|1 +(noun)|Molluga|genus Molluga|caryophylloid dicot genus +genus moloch|1 +(noun)|genus Moloch|reptile genus +genus molothrus|1 +(noun)|Molothrus|genus Molothrus|bird genus +genus molucella|1 +(noun)|Molucella|genus Molucella|asterid dicot genus +genus molva|1 +(noun)|Molva|genus Molva|fish genus +genus momordica|1 +(noun)|Momordica|genus Momordica|dicot genus|magnoliopsid genus +genus momotus|1 +(noun)|Momotus|genus Momotus|bird genus +genus monarda|1 +(noun)|genus Monarda|asterid dicot genus +genus monardella|1 +(noun)|Monardella|genus Monardella|dicot genus|magnoliopsid genus +genus moneses|1 +(noun)|Moneses|genus Moneses|dilleniid dicot genus +genus monilia|1 +(noun)|genus Monilia|fungus genus +genus monocanthus|1 +(noun)|Monocanthus|genus Monocanthus|fish genus +genus monochamus|1 +(noun)|Monochamus|genus Monochamus|arthropod genus +genus monodon|1 +(noun)|Monodon|genus Monodon|mammal genus +genus monomorium|1 +(noun)|Monomorium|genus Monomorium|arthropod genus +genus mononychus|1 +(noun)|genus Mononychus|reptile genus +genus monotropa|1 +(noun)|Monotropa|genus Monotropa|dilleniid dicot genus +genus monstera|1 +(noun)|genus Monstera|monocot genus|liliopsid genus +genus montezuma|1 +(noun)|genus Montezuma|dilleniid dicot genus +genus montia|1 +(noun)|Montia|genus Montia|caryophylloid dicot genus +genus morchella|1 +(noun)|Morchella|genus Morchella|fungus genus +genus morone|1 +(noun)|Morone|genus Morone|fish genus +genus morus|1 +(noun)|Morus|genus Morus|dicot genus|magnoliopsid genus +genus moschus|1 +(noun)|Moschus|genus Moschus|mammal genus +genus motacilla|1 +(noun)|Motacilla|genus Motacilla|bird genus +genus mucor|1 +(noun)|genus Mucor|fungus genus +genus mucuna|1 +(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus +genus mugil|1 +(noun)|Mugil|genus Mugil|fish genus +genus muhlenbergia|1 +(noun)|Muhlenbergia|genus Muhlenbergia|monocot genus|liliopsid genus +genus mulloidichthys|1 +(noun)|Mulloidichthys|genus Mulloidichthys|fish genus +genus mullus|1 +(noun)|Mullus|genus Mullus|fish genus +genus muntiacus|1 +(noun)|Muntiacus|genus Muntiacus|mammal genus +genus muntingia|1 +(noun)|Muntingia|genus Muntingia|dilleniid dicot genus +genus mus|1 +(noun)|Mus|genus Mus|mammal genus +genus musa|1 +(noun)|Musa|genus Musa|monocot genus|liliopsid genus +genus musca|1 +(noun)|Musca|genus Musca|arthropod genus +genus muscardinus|1 +(noun)|Muscardinus|genus Muscardinus|mammal genus +genus muscari|1 +(noun)|Muscari|genus Muscari|liliid monocot genus +genus muscicapa|1 +(noun)|Muscicapa|genus Muscicapa|bird genus +genus muscivora|1 +(noun)|Muscivora|genus Muscivora|bird genus +genus musophaga|1 +(noun)|Musophaga|genus Musophaga|bird genus +genus mustela|1 +(noun)|Mustela|genus Mustela|mammal genus +genus mustelus|1 +(noun)|Mustelus|genus Mustelus|fish genus +genus mutinus|1 +(noun)|Mutinus|genus Mutinus|fungus genus +genus mutisia|1 +(noun)|genus Mutisia|asterid dicot genus +genus mya|1 +(noun)|Mya|genus Mya|mollusk genus +genus myadestes|1 +(noun)|Myadestes|genus Myadestes|bird genus +genus mycobacterium|1 +(noun)|genus Mycobacterium|bacteria genus +genus mycoplasma|1 +(noun)|genus Mycoplasma|bacteria genus +genus mycteria|1 +(noun)|Mycteria|genus Mycteria|bird genus +genus mycteroperca|1 +(noun)|Mycteroperca|genus Mycteroperca|fish genus +genus mylodon|1 +(noun)|genus Mylodon|mammal genus +genus myocastor|1 +(noun)|Myocastor|genus Myocastor|mammal genus +genus myopus|1 +(noun)|Myopus|genus Myopus|mammal genus +genus myosotis|1 +(noun)|Myosotis|genus Myosotis|plant genus +genus myotis|1 +(noun)|Myotis|genus Myotis|mammal genus +genus myrciaria|1 +(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus|magnoliopsid genus +genus myrica|1 +(noun)|Myrica|genus Myrica|dicot genus|magnoliopsid genus +genus myricaria|1 +(noun)|Myricaria|genus Myricaria|dilleniid dicot genus +genus myriophyllum|1 +(noun)|Myriophyllum|genus Myriophyllum|dicot genus|magnoliopsid genus +genus myristica|1 +(noun)|Myristica|genus Myristica|magnoliid dicot genus +genus myrmecia|1 +(noun)|Myrmecia|genus Myrmecia|arthropod genus +genus myrmecobius|1 +(noun)|Myrmecobius|genus Myrmecobius|mammal genus +genus myrmecophaga|1 +(noun)|Myrmecophaga|genus Myrmecophaga|mammal genus +genus myrmeleon|1 +(noun)|Myrmeleon|genus Myrmeleon|arthropod genus +genus myroxylon|1 +(noun)|Myroxylon|genus Myroxylon|rosid dicot genus +genus myrrhis|1 +(noun)|Myrrhis|genus Myrrhis|rosid dicot genus +genus myrsine|1 +(noun)|Myrsine|genus Myrsine|dicot genus|magnoliopsid genus +genus myrtillocactus|1 +(noun)|Myrtillocactus|genus Myrtillocactus|caryophylloid dicot genus +genus myrtus|1 +(noun)|Myrtus|genus Myrtus|dicot genus|magnoliopsid genus +genus mysis|1 +(noun)|Mysis|genus Mysis|arthropod genus +genus mytilus|1 +(noun)|Mytilus|genus Mytilus|mollusk genus +genus myxine|1 +(noun)|Myxine|genus Myxine|fish genus +genus myxinikela|1 +(noun)|Myxinikela|genus Myxinikela|fish genus +genus myxocephalus|1 +(noun)|Myxocephalus|genus Myxocephalus|fish genus +genus nabalus|1 +(noun)|Nabalus|genus Nabalus|asterid dicot genus +genus naemorhedus|1 +(noun)|Naemorhedus|genus Naemorhedus|mammal genus +genus nageia|1 +(noun)|Nageia|genus Nageia|gymnosperm genus +genus naias|1 +(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus|liliopsid genus +genus naja|1 +(noun)|Naja|genus Naja|reptile genus +genus najas|2 +(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus|liliopsid genus +(noun)|Naja|genus Naja|reptile genus +genus nanomia|1 +(noun)|genus Nanomia|coelenterate genus +genus napaea|1 +(noun)|Napaea|genus Napaea|dilleniid dicot genus +genus narcissus|1 +(noun)|genus Narcissus|liliid monocot genus +genus narthecium|1 +(noun)|Narthecium|genus Narthecium|liliid monocot genus +genus nasalis|1 +(noun)|Nasalis|genus Nasalis|mammal genus +genus nasturtium|1 +(noun)|Nasturtium|genus Nasturtium|dilleniid dicot genus +genus nasua|1 +(noun)|Nasua|genus Nasua|mammal genus +genus natrix|1 +(noun)|Natrix|genus Natrix|reptile genus +genus nauclea|1 +(noun)|Nauclea|genus Nauclea|asterid dicot genus +genus naucrates|1 +(noun)|Naucrates|genus Naucrates|fish genus +genus nautilus|1 +(noun)|genus Nautilus|mollusk genus +genus necturus|1 +(noun)|Necturus|genus Necturus|amphibian genus +genus negaprion|1 +(noun)|Negaprion|genus Negaprion|fish genus +genus nelumbo|1 +(noun)|Nelumbo|genus Nelumbo|magnoliid dicot genus +genus nemophila|1 +(noun)|genus Nemophila|asterid dicot genus +genus neoceratodus|1 +(noun)|Neoceratodus|genus Neoceratodus|fish genus +genus neofiber|1 +(noun)|Neofiber|genus Neofiber|mammal genus +genus neohygrophorus|1 +(noun)|Neohygrophorus|genus Neohygrophorus|fungus genus +genus neolentinus|1 +(noun)|Neolentinus|genus Neolentinus|fungus genus +genus neomys|1 +(noun)|Neomys|genus Neomys|mammal genus +genus neophron|1 +(noun)|Neophron|genus Neophron|bird genus +genus neotoma|1 +(noun)|Neotoma|genus Neotoma|mammal genus +genus nepa|1 +(noun)|Nepa|genus Nepa|arthropod genus +genus nepenthes|1 +(noun)|Nepenthes|genus Nepenthes|dicot genus|magnoliopsid genus +genus nepeta|1 +(noun)|Nepeta|genus Nepeta|asterid dicot genus +genus nephelium|1 +(noun)|Nephelium|genus Nephelium|dicot genus|magnoliopsid genus +genus nephrolepis|1 +(noun)|Nephrolepis|genus Nephrolepis|fern genus +genus nephrops|1 +(noun)|Nephrops|genus Nephrops|arthropod genus +genus nephthytis|1 +(noun)|genus Nephthytis|monocot genus|liliopsid genus +genus nerita|1 +(noun)|genus Nerita|mollusk genus +genus neritina|1 +(noun)|genus Neritina|mollusk genus +genus nerium|1 +(noun)|Nerium|genus Nerium|dicot genus|magnoliopsid genus +genus nerodia|1 +(noun)|Nerodia|genus Nerodia|reptile genus +genus nesokia|1 +(noun)|Nesokia|genus Nesokia|mammal genus +genus nestor|1 +(noun)|Nestor|genus Nestor|bird genus +genus neurospora|1 +(noun)|Neurospora|genus Neurospora|fungus genus +genus neurotrichus|1 +(noun)|Neurotrichus|genus Neurotrichus|mammal genus +genus nicandra|1 +(noun)|Nicandra|genus Nicandra|asterid dicot genus +genus nicotiana|1 +(noun)|Nicotiana|genus Nicotiana|asterid dicot genus +genus nidularia|1 +(noun)|Nidularia|genus Nidularia|fungus genus +genus nierembergia|1 +(noun)|genus Nierembergia|asterid dicot genus +genus nigella|1 +(noun)|genus Nigella|magnoliid dicot genus +genus nigroporus|1 +(noun)|Nigroporus|genus Nigroporus|fungus genus +genus nimravus|1 +(noun)|Nimravus|genus Nimravus|mammal genus +genus nipa|1 +(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus|liliopsid genus +genus nitella|1 +(noun)|Nitella|genus Nitella|protoctist genus +genus nitrobacter|1 +(noun)|Nitrobacter|genus Nitrobacter|bacteria genus +genus nitrosomonas|1 +(noun)|Nitrosomonas|genus Nitrosomonas|bacteria genus +genus noctiluca|1 +(noun)|genus Noctiluca|protoctist genus +genus noctua|1 +(noun)|Noctua|genus Noctua|arthropod genus +genus nolina|1 +(noun)|Nolina|genus Nolina|liliid monocot genus +genus nomia|1 +(noun)|nomia|genus Nomia|arthropod genus +genus nopalea|1 +(noun)|Nopalea|genus Nopalea|dicot genus|magnoliopsid genus +genus nostoc|1 +(noun)|genus Nostoc|bacteria genus +genus notechis|1 +(noun)|Notechis|genus Notechis|reptile genus +genus notemigonus|1 +(noun)|Notemigonus|genus Notemigonus|fish genus +genus nothofagus|1 +(noun)|Nothofagus|genus Nothofagus|hamamelid dicot genus +genus nothosaurus|1 +(noun)|genus Nothosaurus|reptile genus +genus notomys|1 +(noun)|Notomys|genus Notomys|mammal genus +genus notonecta|1 +(noun)|Notonecta|genus Notonecta|arthropod genus +genus notophthalmus|1 +(noun)|Notophthalmus|genus Notophthalmus|amphibian genus +genus notornis|1 +(noun)|genus Notornis|bird genus +genus notoryctus|1 +(noun)|Notoryctus|genus Notoryctus|mammal genus +genus notropis|1 +(noun)|Notropis|genus Notropis|fish genus +genus nucifraga|1 +(noun)|Nucifraga|genus Nucifraga|bird genus +genus numenius|1 +(noun)|Numenius|genus Numenius|bird genus +genus numida|1 +(noun)|Numida|genus Numida|bird genus +genus nuphar|1 +(noun)|Nuphar|genus Nuphar|magnoliid dicot genus +genus nuytsia|1 +(noun)|Nuytsia|genus Nuytsia|dilleniid dicot genus +genus nyctaginia|1 +(noun)|Nyctaginia|genus Nyctaginia|caryophylloid dicot genus +genus nyctanassa|1 +(noun)|Nyctanassa|genus Nyctanassa|bird genus +genus nyctereutes|1 +(noun)|Nyctereutes|genus Nyctereutes|mammal genus +genus nycticebus|1 +(noun)|Nycticebus|genus Nycticebus|mammal genus +genus nycticorax|1 +(noun)|Nycticorax|genus Nycticorax|bird genus +genus nyctimene|1 +(noun)|Nyctimene|genus Nyctimene|mammal genus +genus nymphaea|1 +(noun)|Nymphaea|genus Nymphaea|magnoliid dicot genus +genus nymphalis|1 +(noun)|Nymphalis|genus Nymphalis|arthropod genus +genus nymphicus|1 +(noun)|Nymphicus|genus Nymphicus|bird genus +genus nypa|1 +(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus|liliopsid genus +genus nyssa|1 +(noun)|Nyssa|genus Nyssa|dicot genus|magnoliopsid genus +genus oceanites|1 +(noun)|Oceanites|genus Oceanites|bird genus +genus ochna|1 +(noun)|Ochna|genus Ochna|dilleniid dicot genus +genus ochotona|1 +(noun)|Ochotona|genus Ochotona|mammal genus +genus ochroma|1 +(noun)|Ochroma|genus Ochroma|dilleniid dicot genus +genus ocimum|1 +(noun)|Ocimum|genus Ocimum|asterid dicot genus +genus octopus|1 +(noun)|genus Octopus|mollusk genus +genus ocyurus|1 +(noun)|Ocyurus|genus Ocyurus|fish genus +genus odobenus|1 +(noun)|Odobenus|genus Odobenus|mammal genus +genus odocoileus|1 +(noun)|Odocoileus|genus Odocoileus|mammal genus +genus odontaspis|1 +(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus +genus odontoglossum|1 +(noun)|genus Odontoglossum|monocot genus|liliopsid genus +genus odontophorus|1 +(noun)|Odontophorus|genus Odontophorus|bird genus +genus oecanthus|1 +(noun)|Oecanthus|genus Oecanthus|arthropod genus +genus oedogonium|1 +(noun)|Oedogonium|genus Oedogonium|protoctist genus +genus oenanthe|2 +(noun)|Oenanthe|genus Oenanthe|rosid dicot genus +(noun)|Oenanthe|genus Oenanthe|bird genus +genus oenothera|1 +(noun)|Oenothera|genus Oenothera|dicot genus|magnoliopsid genus +genus oestrus|1 +(noun)|Oestrus|genus Oestrus|arthropod genus +genus okapia|1 +(noun)|Okapia|genus Okapia|mammal genus +genus olea|1 +(noun)|Olea|genus Olea|dicot genus|magnoliopsid genus +genus oleandra|1 +(noun)|Oleandra|genus Oleandra|fern genus +genus olearia|1 +(noun)|Olearia|genus Olearia|asterid dicot genus +genus olfersia|1 +(noun)|Olfersia|genus Olfersia|fern genus +genus oligoplites|1 +(noun)|Oligoplites|genus Oligoplites|fish genus +genus oligoporus|1 +(noun)|Oligoporus|genus Oligoporus|fungus genus +genus ommastrephes|1 +(noun)|genus Ommastrephes|mollusk genus +genus omphalotus|1 +(noun)|Omphalotus|genus Omphalotus|fungus genus +genus onchorynchus|1 +(noun)|Onchorynchus|genus Onchorynchus|fish genus +genus oncidium|1 +(noun)|genus Oncidium|monocot genus|liliopsid genus +genus ondatra|1 +(noun)|Ondatra|genus Ondatra|mammal genus +genus oniscus|1 +(noun)|Oniscus|genus Oniscus|arthropod genus +genus onobrychis|1 +(noun)|Onobrychis|genus Onobrychis|rosid dicot genus +genus onoclea|1 +(noun)|Onoclea|genus Onoclea|fern genus +genus ononis|1 +(noun)|Ononis|genus Ononis|rosid dicot genus +genus onopordon|1 +(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus +genus onopordum|1 +(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus +genus onosmodium|1 +(noun)|Onosmodium|genus Onosmodium|plant genus +genus onychium|1 +(noun)|Onychium|genus Onychium|fern genus +genus onychogalea|1 +(noun)|Onychogalea|genus Onychogalea|mammal genus +genus onychomys|1 +(noun)|Onychomys|genus Onychomys|mammal genus +genus opheodrys|1 +(noun)|Opheodrys|genus Opheodrys|reptile genus +genus ophiodon|1 +(noun)|Ophiodon|genus Ophiodon|fish genus +genus ophioglossum|1 +(noun)|Ophioglossum|genus Ophioglossum|fern genus +genus ophiophagus|1 +(noun)|Ophiophagus|genus Ophiophagus|reptile genus +genus ophisaurus|1 +(noun)|Ophisaurus|genus Ophisaurus|reptile genus +genus ophrys|1 +(noun)|Ophrys|genus Ophrys|monocot genus|liliopsid genus +genus opisthocomus|1 +(noun)|Opisthocomus|genus Opisthocomus|bird genus +genus opuntia|1 +(noun)|Opuntia|genus Opuntia|caryophylloid dicot genus +genus orbignya|1 +(noun)|Orbignya|genus Orbignya|monocot genus|liliopsid genus +genus orchestia|1 +(noun)|Orchestia|genus Orchestia|arthropod genus +genus orchis|1 +(noun)|genus Orchis|monocot genus|liliopsid genus +genus orcinus|1 +(noun)|Orcinus|genus Orcinus|mammal genus +genus oreamnos|1 +(noun)|Oreamnos|genus Oreamnos|mammal genus +genus orectolobus|1 +(noun)|Orectolobus|genus Orectolobus|fish genus +genus oreopteris|1 +(noun)|Oreopteris|genus Oreopteris|fern genus +genus oreortyx|1 +(noun)|Oreortyx|genus Oreortyx|bird genus +genus origanum|1 +(noun)|genus Origanum|asterid dicot genus +genus oriolus|1 +(noun)|Oriolus|genus Oriolus|bird genus +genus orites|1 +(noun)|Orites|genus Orites|dicot genus|magnoliopsid genus +genus ormosia|1 +(noun)|Ormosia|genus Ormosia|rosid dicot genus +genus ornithogalum|1 +(noun)|Ornithogalum|genus Ornithogalum|liliid monocot genus +genus ornithorhynchus|1 +(noun)|Ornithorhynchus|genus Ornithorhynchus|mammal genus +genus orontium|1 +(noun)|Orontium|genus Orontium|monocot genus|liliopsid genus +genus ortalis|1 +(noun)|Ortalis|genus Ortalis|bird genus +genus orthilia|1 +(noun)|Orthilia|genus Orthilia|dilleniid dicot genus +genus orthopristis|1 +(noun)|Orthopristis|genus Orthopristis|fish genus +genus orthotomus|1 +(noun)|Orthotomus|genus Orthotomus|bird genus +genus orycteropus|1 +(noun)|Orycteropus|genus Orycteropus|mammal genus +genus oryctolagus|1 +(noun)|Oryctolagus|genus Oryctolagus|mammal genus +genus oryx|1 +(noun)|genus Oryx|mammal genus +genus oryza|1 +(noun)|Oryza|genus Oryza|monocot genus|liliopsid genus +genus oryzomys|1 +(noun)|Oryzomys|genus Oryzomys|mammal genus +genus oryzopsis|1 +(noun)|Oryzopsis|genus Oryzopsis|monocot genus|liliopsid genus +genus osmanthus|1 +(noun)|Osmanthus|genus Osmanthus|dicot genus|magnoliopsid genus +genus osmerus|1 +(noun)|Osmerus|genus Osmerus|fish genus +genus osmunda|1 +(noun)|genus Osmunda|fern genus +genus ostrea|1 +(noun)|Ostrea|genus Ostrea|mollusk genus +genus ostrya|1 +(noun)|Ostrya|genus Ostrya|hamamelid dicot genus +genus ostryopsis|1 +(noun)|Ostryopsis|genus Ostryopsis|hamamelid dicot genus +genus otaria|1 +(noun)|Otaria|genus Otaria|mammal genus +genus othonna|1 +(noun)|genus Othonna|asterid dicot genus +genus otis|1 +(noun)|Otis|genus Otis|bird genus +genus otus|1 +(noun)|Otus|genus Otus|bird genus +genus ouranopithecus|1 +(noun)|Ouranopithecus|genus Ouranopithecus|mammal genus +genus ovalipes|1 +(noun)|Ovalipes|genus Ovalipes|arthropod genus +genus ovibos|1 +(noun)|Ovibos|genus Ovibos|mammal genus +genus ovis|1 +(noun)|Ovis|genus Ovis|mammal genus +genus oxalis|1 +(noun)|genus Oxalis|rosid dicot genus +genus oxandra|1 +(noun)|Oxandra|genus Oxandra|magnoliid dicot genus +genus oxybelis|1 +(noun)|Oxybelis|genus Oxybelis|reptile genus +genus oxydendrum|1 +(noun)|Oxydendrum|genus Oxydendrum|dilleniid dicot genus +genus oxylebius|1 +(noun)|Oxylebius|genus Oxylebius|fish genus +genus oxytropis|1 +(noun)|Oxytropis|genus Oxytropis|rosid dicot genus +genus oxyura|1 +(noun)|Oxyura|genus Oxyura|bird genus +genus oxyuranus|1 +(noun)|Oxyuranus|genus Oxyuranus|reptile genus +genus ozonium|1 +(noun)|Ozonium|genus Ozonium|fungus genus +genus ozothamnus|1 +(noun)|Ozothamnus|genus Ozothamnus|asterid dicot genus +genus pachycephala|1 +(noun)|Pachycephala|genus Pachycephala|bird genus +genus pachyrhizus|1 +(noun)|Pachyrhizus|genus Pachyrhizus|rosid dicot genus +genus pachysandra|1 +(noun)|genus Pachysandra|dicot genus|magnoliopsid genus +genus packera|1 +(noun)|Packera|genus Packera|asterid dicot genus +genus padda|1 +(noun)|Padda|genus Padda|bird genus +genus paeonia|1 +(noun)|Paeonia|genus Paeonia|magnoliid dicot genus +genus pagellus|1 +(noun)|Pagellus|genus Pagellus|fish genus +genus pagophila|1 +(noun)|Pagophila|genus Pagophila|bird genus +genus pagophilus|1 +(noun)|Pagophilus|genus Pagophilus|mammal genus +genus pagrus|1 +(noun)|Pagrus|genus Pagrus|fish genus +genus pagurus|1 +(noun)|Pagurus|genus Pagurus|arthropod genus +genus palaemon|1 +(noun)|Palaemon|genus Palaemon|arthropod genus +genus palaquium|1 +(noun)|Palaquium|genus Palaquium|dicot genus|magnoliopsid genus +genus paleacrita|1 +(noun)|Paleacrita|genus Paleacrita|arthropod genus +genus palinurus|1 +(noun)|Palinurus|genus Palinurus|arthropod genus +genus paliurus|1 +(noun)|Paliurus|genus Paliurus|dicot genus|magnoliopsid genus +genus palometa|1 +(noun)|genus Palometa|fish genus +genus pan|1 +(noun)|Pan|genus Pan|mammal genus +genus panax|1 +(noun)|Panax|genus Panax|rosid dicot genus +genus pandanus|1 +(noun)|genus Pandanus|monocot genus|liliopsid genus +genus pandion|1 +(noun)|Pandion|genus Pandion|bird genus +genus panicum|1 +(noun)|Panicum|genus Panicum|monocot genus|liliopsid genus +genus panonychus|1 +(noun)|Panonychus|genus Panonychus|arthropod genus +genus panthera|1 +(noun)|Panthera|genus Panthera|mammal genus +genus papaver|1 +(noun)|Papaver|genus Papaver|dilleniid dicot genus +genus paphiopedilum|1 +(noun)|Paphiopedilum|genus Paphiopedilum|monocot genus|liliopsid genus +genus papio|1 +(noun)|Papio|genus Papio|mammal genus +genus paprilus|1 +(noun)|Paprilus|genus Paprilus|fish genus +genus paracheirodon|1 +(noun)|Paracheirodon|genus Paracheirodon|fish genus +genus paradoxurus|1 +(noun)|Paradoxurus|genus Paradoxurus|mammal genus +genus paralichthys|1 +(noun)|Paralichthys|genus Paralichthys|fish genus +genus paralithodes|1 +(noun)|Paralithodes|genus Paralithodes|arthropod genus +genus paramecium|1 +(noun)|genus Paramecium|protoctist genus +genus paranthias|1 +(noun)|Paranthias|genus Paranthias|fish genus +genus paranthropus|1 +(noun)|Paranthropus|genus Paranthropus|australopithecine +genus parascalops|1 +(noun)|Parascalops|genus Parascalops|mammal genus +genus parasitaxus|1 +(noun)|Parasitaxus|genus Parasitaxus|gymnosperm genus +genus parathelypteris|1 +(noun)|Parathelypteris|genus Parathelypteris|fern genus +genus parietaria|1 +(noun)|Parietaria|genus Parietaria|dicot genus|magnoliopsid genus +genus paris|1 +(noun)|Paris|genus Paris|plant genus +genus parkia|1 +(noun)|Parkia|genus Parkia|rosid dicot genus +genus parkinsonia|1 +(noun)|Parkinsonia|genus Parkinsonia|rosid dicot genus +genus parmelia|1 +(noun)|Parmelia|genus Parmelia|fungus genus +genus parnassia|1 +(noun)|genus Parnassia|rosid dicot genus +genus parochetus|1 +(noun)|Parochetus|genus Parochetus|rosid dicot genus +genus paronychia|1 +(noun)|Paronychia|genus Paronychia|caryophylloid dicot genus +genus parophrys|1 +(noun)|Parophrys|genus Parophrys|fish genus +genus parrotia|1 +(noun)|Parrotia|genus Parrotia|plant genus +genus parrotiopsis|1 +(noun)|Parrotiopsis|genus Parrotiopsis|plant genus +genus parthenium|1 +(noun)|Parthenium|genus Parthenium|asterid dicot genus +genus parthenocissus|1 +(noun)|Parthenocissus|genus Parthenocissus|dicot genus|magnoliopsid genus +genus parula|1 +(noun)|Parula|genus Parula|bird genus +genus parus|1 +(noun)|Parus|genus Parus|bird genus +genus paspalum|1 +(noun)|genus Paspalum|monocot genus|liliopsid genus +genus passer|1 +(noun)|Passer|genus Passer|bird genus +genus passerina|1 +(noun)|Passerina|genus Passerina|bird genus +genus passiflora|1 +(noun)|Passiflora|genus Passiflora|dilleniid dicot genus +genus pastinaca|1 +(noun)|Pastinaca|genus Pastinaca|rosid dicot genus|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family +genus patella|1 +(noun)|Patella|genus Patella|mollusk genus +genus pavo|1 +(noun)|Pavo|genus Pavo|bird genus +genus pavonia|1 +(noun)|genus Pavonia|dilleniid dicot genus +genus payena|1 +(noun)|Payena|genus Payena|dicot genus|magnoliopsid genus +genus pecari|1 +(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus +genus pecopteris|1 +(noun)|genus Pecopteris|fern genus +genus pecten|1 +(noun)|genus Pecten|mollusk genus +genus pediculus|1 +(noun)|Pediculus|genus Pediculus|arthropod genus +genus pedilanthus|1 +(noun)|Pedilanthus|genus Pedilanthus|rosid dicot genus +genus pediocactus|1 +(noun)|Pediocactus|genus Pediocactus|caryophylloid dicot genus +genus pedioecetes|1 +(noun)|Pedioecetes|genus Pedioecetes|bird genus +genus pedionomus|1 +(noun)|Pedionomus|genus Pedionomus|bird genus +genus peireskia|1 +(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus +genus pelargonium|1 +(noun)|Pelargonium|genus Pelargonium|rosid dicot genus +genus pelecanus|1 +(noun)|Pelecanus|genus Pelecanus|bird genus +genus pellaea|1 +(noun)|Pellaea|genus Pellaea|fern genus +genus pellicularia|1 +(noun)|Pellicularia|genus Pellicularia|fungus genus +genus peltandra|1 +(noun)|Peltandra|genus Peltandra|monocot genus|liliopsid genus +genus peltiphyllum|1 +(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus +genus penelope|1 +(noun)|Penelope|genus Penelope|bird genus +genus peneus|1 +(noun)|Peneus|genus Peneus|arthropod genus +genus penicillium|1 +(noun)|Penicillium|genus Penicillium|fungus genus +genus pennatula|1 +(noun)|Pennatula|genus Pennatula|coelenterate genus +genus pennisetum|1 +(noun)|Pennisetum|genus Pennisetum|monocot genus|liliopsid genus +genus penstemon|1 +(noun)|Penstemon|genus Penstemon|asterid dicot genus +genus peperomia|1 +(noun)|genus Peperomia|dicot genus|magnoliopsid genus +genus perca|1 +(noun)|Perca|genus Perca|fish genus +genus percina|1 +(noun)|Percina|genus Percina|fish genus +genus perdix|1 +(noun)|Perdix|genus Perdix|bird genus +genus pereskia|1 +(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus +genus pericallis|1 +(noun)|Pericallis|genus Pericallis|asterid dicot genus +genus peridinium|1 +(noun)|Peridinium|genus Peridinium|protoctist genus +genus perilla|1 +(noun)|Perilla|genus Perilla|asterid dicot genus +genus periophthalmus|1 +(noun)|Periophthalmus|genus Periophthalmus|fish genus +genus peripatopsis|1 +(noun)|Peripatopsis|genus Peripatopsis|arthropod genus +genus peripatus|1 +(noun)|genus Peripatus|arthropod genus +genus periplaneta|1 +(noun)|Periplaneta|genus Periplaneta|arthropod genus +genus periploca|1 +(noun)|Periploca|genus Periploca|dicot genus|magnoliopsid genus +genus perisoreus|1 +(noun)|Perisoreus|genus Perisoreus|bird genus +genus peristedion|1 +(noun)|Peristedion|genus Peristedion|fish genus +genus pernis|1 +(noun)|Pernis|genus Pernis|bird genus +genus perodicticus|1 +(noun)|Perodicticus|genus Perodicticus|mammal genus +genus perognathus|1 +(noun)|Perognathus|genus Perognathus|mammal genus +genus peromyscus|1 +(noun)|Peromyscus|genus Peromyscus|mammal genus +genus peronospora|1 +(noun)|Peronospora|genus Peronospora|fungus genus +genus persea|1 +(noun)|Persea|genus Persea|magnoliid dicot genus +genus persoonia|1 +(noun)|Persoonia|genus Persoonia|dicot genus|magnoliopsid genus +genus pertusaria|1 +(noun)|Pertusaria|genus Pertusaria|fungus genus +genus petasites|1 +(noun)|Petasites|genus Petasites|asterid dicot genus +genus petaurista|1 +(noun)|Petaurista|genus Petaurista|mammal genus +genus petaurus|1 +(noun)|Petaurus|genus Petaurus|mammal genus +genus petrocoptis|1 +(noun)|Petrocoptis|genus Petrocoptis|caryophylloid dicot genus +genus petrogale|1 +(noun)|Petrogale|genus Petrogale|mammal genus +genus petromyzon|1 +(noun)|Petromyzon|genus Petromyzon|fish genus +genus petroselinum|1 +(noun)|Petroselinum|genus Petroselinum|rosid dicot genus +genus petteria|1 +(noun)|Petteria|genus Petteria|rosid dicot genus +genus petunia|1 +(noun)|genus Petunia|asterid dicot genus +genus peziza|1 +(noun)|Peziza|genus Peziza|fungus genus +genus pezophaps|1 +(noun)|Pezophaps|genus Pezophaps|bird genus +genus phacelia|1 +(noun)|genus Phacelia|asterid dicot genus +genus phacochoerus|1 +(noun)|Phacochoerus|genus Phacochoerus|mammal genus +genus phaethon|1 +(noun)|Phaethon|genus Phaethon|bird genus +genus phaius|1 +(noun)|genus Phaius|monocot genus|liliopsid genus +genus phalacrocorax|1 +(noun)|Phalacrocorax|genus Phalacrocorax|bird genus +genus phalaenopsis|1 +(noun)|Phalaenopsis|genus Phalaenopsis|monocot genus|liliopsid genus +genus phalaenoptilus|1 +(noun)|Phalaenoptilus|genus Phalaenoptilus|bird genus +genus phalanger|1 +(noun)|genus Phalanger|mammal genus +genus phalangium|1 +(noun)|Phalangium|genus Phalangium|arthropod genus +genus phalaris|1 +(noun)|Phalaris|genus Phalaris|monocot genus|liliopsid genus +genus phalaropus|1 +(noun)|Phalaropus|genus Phalaropus|bird genus +genus phallus|1 +(noun)|Phallus|genus Phallus|fungus genus +genus pharomacrus|1 +(noun)|Pharomacrus|genus Pharomacrus|bird genus +genus phascogale|1 +(noun)|Phascogale|genus Phascogale|mammal genus +genus phascolarctos|1 +(noun)|Phascolarctos|genus Phascolarctos|mammal genus +genus phaseolus|1 +(noun)|Phaseolus|genus Phaseolus|rosid dicot genus +genus phasianus|1 +(noun)|Phasianus|genus Phasianus|bird genus +genus phegopteris|1 +(noun)|Phegopteris|genus Phegopteris|fern genus +genus phellodendron|1 +(noun)|Phellodendron|genus Phellodendron|rosid dicot genus +genus phenacomys|1 +(noun)|genus Phenacomys|mammal genus +genus philadelphus|1 +(noun)|genus Philadelphus|rosid dicot genus +genus philaenus|1 +(noun)|Philaenus|genus Philaenus|arthropod genus +genus phillyrea|1 +(noun)|Phillyrea|genus Phillyrea|dicot genus|magnoliopsid genus +genus philodendron|1 +(noun)|genus Philodendron|monocot genus|liliopsid genus +genus philohela|1 +(noun)|Philohela|genus Philohela|bird genus +genus philomachus|1 +(noun)|Philomachus|genus Philomachus|bird genus +genus philophylla|1 +(noun)|Philophylla|genus Philophylla|arthropod genus +genus phlebodium|1 +(noun)|Phlebodium|genus Phlebodium|fern genus +genus phlebotomus|1 +(noun)|Phlebotomus|genus Phlebotomus|arthropod genus +genus phleum|1 +(noun)|Phleum|genus Phleum|monocot genus|liliopsid genus +genus phlomis|1 +(noun)|genus Phlomis|asterid dicot genus +genus phlox|1 +(noun)|genus Phlox|plant genus +genus phoca|1 +(noun)|Phoca|genus Phoca|mammal genus +genus phocaena|1 +(noun)|Phocaena|genus Phocaena|mammal genus +genus phoenicophorium|1 +(noun)|Phoenicophorium|genus Phoenicophorium|monocot genus|liliopsid genus +genus phoeniculus|1 +(noun)|Phoeniculus|genus Phoeniculus|bird genus +genus phoenicurus|1 +(noun)|Phoenicurus|genus Phoenicurus|bird genus +genus phoenix|1 +(noun)|Phoenix|genus Phoenix|monocot genus|liliopsid genus +genus pholas|1 +(noun)|Pholas|genus Pholas|mollusk genus +genus pholidota|1 +(noun)|Pholidota|genus Pholidota|monocot genus|liliopsid genus +genus pholiota|1 +(noun)|Pholiota|genus Pholiota|fungus genus +genus pholis|1 +(noun)|Pholis|genus Pholis|fish genus +genus pholistoma|1 +(noun)|Pholistoma|genus Pholistoma|asterid dicot genus +genus phoradendron|1 +(noun)|Phoradendron|genus Phoradendron|dilleniid dicot genus +genus photinia|1 +(noun)|Photinia|genus Photinia|rosid dicot genus +genus photoblepharon|1 +(noun)|Photoblepharon|genus Photoblepharon|fish genus +genus phoxinus|1 +(noun)|Phoxinus|genus Phoxinus|fish genus +genus phragmipedium|1 +(noun)|Phragmipedium|genus Phragmipedium|monocot genus|liliopsid genus +genus phragmites|1 +(noun)|Phragmites|genus Phragmites|monocot genus|liliopsid genus +genus phrynosoma|1 +(noun)|Phrynosoma|genus Phrynosoma|reptile genus +genus phthirius|1 +(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus +genus phthirus|1 +(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus +genus phthorimaea|1 +(noun)|Phthorimaea|genus Phthorimaea|arthropod genus +genus phyllitis|1 +(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus +genus phyllium|1 +(noun)|Phyllium|genus Phyllium|arthropod genus +genus phyllocladus|1 +(noun)|Phyllocladus|genus Phyllocladus|gymnosperm genus +genus phyllodoce|1 +(noun)|Phyllodoce|genus Phyllodoce|dilleniid dicot genus +genus phylloporus|1 +(noun)|Phylloporus|genus Phylloporus|fungus genus +genus phyllorhynchus|1 +(noun)|Phyllorhynchus|genus Phyllorhynchus|reptile genus +genus phylloscopus|1 +(noun)|Phylloscopus|genus Phylloscopus|bird genus +genus phyllostachys|1 +(noun)|Phyllostachys|genus Phyllostachys|monocot genus|liliopsid genus +genus phyllostomus|1 +(noun)|Phyllostomus|genus Phyllostomus|mammal genus +genus phylloxera|1 +(noun)|Phylloxera|genus Phylloxera|arthropod genus +genus physa|1 +(noun)|genus Physa|mollusk genus +genus physalia|1 +(noun)|Physalia|genus Physalia|coelenterate genus +genus physalis|1 +(noun)|Physalis|genus Physalis|asterid dicot genus +genus physaria|1 +(noun)|Physaria|genus Physaria|dilleniid dicot genus +genus physeter|1 +(noun)|Physeter|genus Physeter|mammal genus +genus physostegia|1 +(noun)|genus Physostegia|asterid dicot genus +genus physostigma|1 +(noun)|Physostigma|genus Physostigma|plant genus +genus phytelephas|1 +(noun)|Phytelephas|genus Phytelephas|plant genus +genus phytolacca|1 +(noun)|Phytolacca|genus Phytolacca|caryophylloid dicot genus +genus phytophthora|1 +(noun)|Phytophthora|genus Phytophthora|fungus genus +genus pica|1 +(noun)|Pica|genus Pica|bird genus +genus picea|1 +(noun)|Picea|genus Picea|gymnosperm genus +genus pickeringia|1 +(noun)|Pickeringia|genus Pickeringia|rosid dicot genus +genus picoides|1 +(noun)|Picoides|genus Picoides|bird genus +genus picrasma|1 +(noun)|Picrasma|genus Picrasma|rosid dicot genus +genus picris|1 +(noun)|Picris|genus Picris|asterid dicot genus +genus picumnus|1 +(noun)|Picumnus|genus Picumnus|bird genus +genus picus|1 +(noun)|Picus|genus Picus|bird genus +genus pieris|2 +(noun)|Pieris|genus Pieris|dilleniid dicot genus +(noun)|Pieris|genus Pieris|arthropod genus +genus pilea|1 +(noun)|Pilea|genus Pilea|dicot genus|magnoliopsid genus +genus pilosella|1 +(noun)|Pilosella|genus Pilosella|asterid dicot genus +genus pilularia|1 +(noun)|Pilularia|genus Pilularia|fern genus +genus pimenta|1 +(noun)|Pimenta|genus Pimenta|dicot genus|magnoliopsid genus +genus pimpinella|1 +(noun)|Pimpinella|genus Pimpinella|rosid dicot genus +genus pinckneya|1 +(noun)|Pinckneya|genus Pinckneya|asterid dicot genus +genus pinctada|1 +(noun)|Pinctada|genus Pinctada|mollusk genus +genus pineus|1 +(noun)|Pineus|genus Pineus|arthropod genus +genus pinguicula|1 +(noun)|Pinguicula|genus Pinguicula|plant genus +genus pinguinus|1 +(noun)|Pinguinus|genus Pinguinus|bird genus +genus pinicola|1 +(noun)|Pinicola|genus Pinicola|bird genus +genus pinnotheres|1 +(noun)|Pinnotheres|genus Pinnotheres|arthropod genus +genus pinus|1 +(noun)|Pinus|genus Pinus|gymnosperm genus +genus pipa|1 +(noun)|Pipa|genus Pipa|amphibian genus +genus piper|1 +(noun)|Piper|genus Piper|dicot genus|magnoliopsid genus +genus pipile|1 +(noun)|Pipile|genus Pipile|bird genus +genus pipilo|1 +(noun)|Pipilo|genus Pipilo|bird genus +genus pipistrellus|1 +(noun)|Pipistrellus|genus Pipistrellus|mammal genus +genus pipra|1 +(noun)|Pipra|genus Pipra|bird genus +genus piptadenia|1 +(noun)|Piptadenia|genus Piptadenia|rosid dicot genus +genus pipturus|1 +(noun)|Pipturus|genus Pipturus|dicot genus|magnoliopsid genus +genus piqueria|1 +(noun)|Piqueria|genus Piqueria|asterid dicot genus +genus piranga|1 +(noun)|Piranga|genus Piranga|bird genus +genus piroplasma|1 +(noun)|genus Babesia|genus Piroplasma|protoctist genus +genus pisanosaurus|1 +(noun)|genus Pisanosaurus|reptile genus +genus piscidia|1 +(noun)|Piscidia|genus Piscidia|rosid dicot genus +genus pisonia|1 +(noun)|Pisonia|genus Pisonia|caryophylloid dicot genus +genus pistacia|1 +(noun)|Pistacia|genus Pistacia|dicot genus|magnoliopsid genus +genus pistia|1 +(noun)|genus Pistia|monocot genus|liliopsid genus +genus pisum|1 +(noun)|Pisum|genus Pisum|rosid dicot genus +genus pithecanthropus|1 +(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid +genus pithecellobium|1 +(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus +genus pithecia|1 +(noun)|Pithecia|genus Pithecia|mammal genus +genus pithecolobium|1 +(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus +genus pitta|1 +(noun)|genus Pitta|bird genus +genus pituophis|1 +(noun)|Pituophis|genus Pituophis|reptile genus +genus pitymys|1 +(noun)|Pitymys|genus Pitymys|mammal genus +genus pityrogramma|1 +(noun)|Pityrogramma|genus Pityrogramma|fern genus +genus placuna|1 +(noun)|Placuna|genus Placuna|mollusk genus +genus plagianthus|1 +(noun)|Plagianthus|genus Plagianthus|dilleniid dicot genus +genus planera|1 +(noun)|Planera|genus Planera|dicot genus|magnoliopsid genus +genus planococcus|1 +(noun)|Planococcus|genus Planococcus|arthropod genus +genus plantago|1 +(noun)|Plantago|genus Plantago|dicot genus|magnoliopsid genus +genus plasmodiophora|1 +(noun)|Plasmodiophora|genus Plasmodiophora|fungus genus +genus plasmodium|1 +(noun)|genus Plasmodium|protoctist genus +genus platalea|1 +(noun)|Platalea|genus Platalea|bird genus +genus platanthera|1 +(noun)|Platanthera|genus Platanthera|monocot genus|liliopsid genus +genus platanus|1 +(noun)|Platanus|genus Platanus|rosid dicot genus +genus platichthys|1 +(noun)|Platichthys|genus Platichthys|fish genus +genus platycerium|1 +(noun)|Platycerium|genus Platycerium|fern genus +genus platylobium|1 +(noun)|Platylobium|genus Platylobium|rosid dicot genus +genus platymiscium|1 +(noun)|Platymiscium|genus Platymiscium|rosid dicot genus +genus platypoecilus|1 +(noun)|Platypoecilus|genus Platypoecilus|fish genus +genus platystemon|1 +(noun)|Platystemon|genus Platystemon|dilleniid dicot genus +genus plautus|1 +(noun)|Plautus|genus Plautus|bird genus +genus plecotus|1 +(noun)|Plecotus|genus Plecotus|mammal genus +genus plectania|1 +(noun)|Plectania|genus Plectania|fungus genus +genus plectorrhiza|1 +(noun)|Plectorrhiza|genus Plectorrhiza|monocot genus|liliopsid genus +genus plectranthus|1 +(noun)|genus Plectranthus|asterid dicot genus +genus plectrophenax|1 +(noun)|Plectrophenax|genus Plectrophenax|bird genus +genus pleione|1 +(noun)|Pleione|genus Pleione|monocot genus|liliopsid genus +genus pleiospilos|1 +(noun)|Pleiospilos|genus Pleiospilos|caryophylloid dicot genus +genus plesianthropus|1 +(noun)|Plesianthropus|genus Plesianthropus|mammal genus +genus plesiosaurus|1 +(noun)|genus Plesiosaurus|reptile genus +genus plethodon|1 +(noun)|Plethodon|genus Plethodon|amphibian genus +genus pleurobrachia|1 +(noun)|Pleurobrachia|genus Pleurobrachia|ctenophore genus +genus pleuronectes|1 +(noun)|Pleuronectes|genus Pleuronectes|fish genus +genus pleurosorus|1 +(noun)|Pleurosorus|genus Pleurosorus|fern genus +genus pleurothallis|1 +(noun)|genus Pleurothallis|monocot genus|liliopsid genus +genus pleurotus|1 +(noun)|Pleurotus|genus Pleurotus|fungus genus +genus plicatoperipatus|1 +(noun)|Plicatoperipatus|genus Plicatoperipatus|arthropod genus +genus ploceus|1 +(noun)|Ploceus|genus Ploceus|bird genus +genus plumbago|1 +(noun)|genus Plumbago|dicot genus|magnoliopsid genus +genus plumeria|1 +(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus|magnoliopsid genus +genus pluteus|1 +(noun)|Pluteus|genus Pluteus|roof mushroom|fungus genus +genus pluvialis|1 +(noun)|Pluvialis|genus Pluvialis|bird genus +genus pluvianus|1 +(noun)|Pluvianus|genus Pluvianus|bird genus +genus poa|1 +(noun)|Poa|genus Poa|monocot genus|liliopsid genus +genus podalyria|1 +(noun)|Podalyria|genus Podalyria|rosid dicot genus +genus podargus|1 +(noun)|Podargus|genus Podargus|bird genus +genus podiceps|1 +(noun)|Podiceps|genus Podiceps|bird genus +genus podilymbus|1 +(noun)|Podilymbus|genus Podilymbus|bird genus +genus podocarpus|1 +(noun)|Podocarpus|genus Podocarpus|gymnosperm genus +genus podophyllum|1 +(noun)|Podophyllum|genus Podophyllum|magnoliid dicot genus +genus poecilocapsus|1 +(noun)|Poecilocapsus|genus Poecilocapsus|arthropod genus +genus poecilogale|1 +(noun)|Poecilogale|genus Poecilogale|mammal genus +genus poephila|1 +(noun)|Poephila|genus Poephila|bird genus +genus pogonia|1 +(noun)|genus Pogonia|monocot genus|liliopsid genus +genus pogostemon|1 +(noun)|Pogostemon|genus Pogostemon|asterid dicot genus +genus polanisia|1 +(noun)|Polanisia|genus Polanisia|dilleniid dicot genus +genus polemonium|1 +(noun)|genus Polemonium|asterid dicot genus +genus polianthes|1 +(noun)|Polianthes|genus Polianthes|liliid monocot genus +genus polioptila|1 +(noun)|Polioptila|genus Polioptila|bird genus +genus polistes|1 +(noun)|Polistes|genus Polistes|arthropod genus +genus pollachius|1 +(noun)|Pollachius|genus Pollachius|fish genus +genus polyangium|1 +(noun)|Polyangium|genus Polyangium|bacteria genus +genus polyborus|1 +(noun)|Polyborus|genus Polyborus|bird genus +genus polybotria|1 +(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus +genus polybotrya|1 +(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus +genus polycirrus|1 +(noun)|Polycirrus|genus Polycirrus|worm genus +genus polydactylus|1 +(noun)|Polydactylus|genus Polydactylus|fish genus +genus polyergus|1 +(noun)|Polyergus|genus Polyergus|arthropod genus +genus polygala|1 +(noun)|Polygala|genus Polygala|rosid dicot genus +genus polygonatum|1 +(noun)|Polygonatum|genus Polygonatum|liliid monocot genus +genus polygonia|1 +(noun)|Polygonia|genus Polygonia|arthropod genus +genus polygonum|1 +(noun)|Polygonum|genus Polygonum|dicot genus|magnoliopsid genus +genus polyodon|1 +(noun)|Polyodon|genus Polyodon|fish genus +genus polypedates|1 +(noun)|Polypedates|genus Polypedates|amphibian genus +genus polypodium|1 +(noun)|Polypodium|genus Polypodium|fern genus +genus polyporus|1 +(noun)|Polyporus|genus Polyporus|fungus genus +genus polyprion|1 +(noun)|Polyprion|genus Polyprion|fish genus +genus polystichum|1 +(noun)|Polystichum|genus Polystichum|fern genus +genus pomacanthus|1 +(noun)|Pomacanthus|genus Pomacanthus|fish genus +genus pomacentrus|1 +(noun)|Pomacentrus|genus Pomacentrus|fish genus +genus pomaderris|1 +(noun)|Pomaderris|genus Pomaderris|dicot genus|magnoliopsid genus +genus pomatomus|1 +(noun)|Pomatomus|genus Pomatomus|fish genus +genus pomolobus|1 +(noun)|Pomolobus|genus Pomolobus|fish genus +genus pomoxis|1 +(noun)|Pomoxis|genus Pomoxis|fish genus +genus poncirus|1 +(noun)|Poncirus|genus Poncirus|rosid dicot genus +genus pongamia|1 +(noun)|Pongamia|genus Pongamia|rosid dicot genus +genus pongo|1 +(noun)|Pongo|genus Pongo|mammal genus +genus pontederia|1 +(noun)|Pontederia|genus Pontederia|monocot genus|liliopsid genus +genus pooecetes|1 +(noun)|Pooecetes|genus Pooecetes|bird genus +genus popillia|1 +(noun)|Popillia|genus Popillia|arthropod genus +genus populus|1 +(noun)|Populus|genus Populus|hamamelid dicot genus +genus porcellio|1 +(noun)|Porcellio|genus Porcellio|arthropod genus +genus poronotus|1 +(noun)|Poronotus|genus Poronotus|fish genus +genus porphyra|1 +(noun)|Porphyra|genus Porphyra|protoctist genus +genus porphyrio|1 +(noun)|Porphyrio|genus Porphyrio|bird genus +genus porphyrula|1 +(noun)|Porphyrula|genus Porphyrula|bird genus +genus portulaca|1 +(noun)|genus Portulaca|caryophylloid dicot genus +genus portunus|1 +(noun)|Portunus|genus Portunus|arthropod genus +genus porzana|1 +(noun)|Porzana|genus Porzana|bird genus +genus potamogale|1 +(noun)|genus Potamogale|mammal genus +genus potamogeton|1 +(noun)|Potamogeton|genus Potamogeton|monocot genus|liliopsid genus +genus potamophis|1 +(noun)|Potamophis|genus Potamophis|reptile genus +genus potentilla|1 +(noun)|Potentilla|genus Potentilla|rosid dicot genus +genus poterium|1 +(noun)|Poterium|genus Poterium|rosid dicot genus +genus pothos|1 +(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus|liliopsid genus +genus potorous|1 +(noun)|Potorous|genus Potorous|mammal genus +genus potos|1 +(noun)|Potos|genus Potos|mammal genus +genus pouteria|1 +(noun)|Pouteria|genus Pouteria|dicot genus|magnoliopsid genus +genus praunus|1 +(noun)|Praunus|genus Praunus|arthropod genus +genus prenanthes|1 +(noun)|Prenanthes|genus Prenanthes|asterid dicot genus +genus presbytes|1 +(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus +genus priacanthus|1 +(noun)|Priacanthus|genus Priacanthus|fish genus +genus primula|1 +(noun)|genus Primula|dicot genus|magnoliopsid genus +genus prinia|1 +(noun)|Prinia|genus Prinia|bird genus +genus priodontes|1 +(noun)|Priodontes|genus Priodontes|mammal genus +genus prionace|1 +(noun)|Prionace|genus Prionace|fish genus +genus prionotus|1 +(noun)|Prionotus|genus Prionotus|fish genus +genus pristis|1 +(noun)|Pristis|genus Pristis|fish genus +genus pritzelago|1 +(noun)|Pritzelago|genus Pritzelago|dilleniid dicot genus +genus proboscidea|1 +(noun)|Proboscidea|genus Proboscidea|plant genus +genus procavia|1 +(noun)|Procavia|genus Procavia|mammal genus +genus procellaria|1 +(noun)|Procellaria|genus Procellaria|bird genus +genus prociphilus|1 +(noun)|Prociphilus|genus Prociphilus|arthropod genus +genus procnias|1 +(noun)|Procnias|genus Procnias|bird genus +genus proconsul|1 +(noun)|genus Proconsul|mammal genus +genus procyon|1 +(noun)|Procyon|genus Procyon|mammal genus +genus progne|1 +(noun)|Progne|genus Progne|bird genus +genus prosopis|1 +(noun)|Prosopis|genus Prosopis|rosid dicot genus +genus prosopium|1 +(noun)|Prosopium|genus Prosopium|fish genus +genus protea|1 +(noun)|genus Protea|dicot genus|magnoliopsid genus +genus proteles|1 +(noun)|Proteles|genus Proteles|mammal genus +genus proterochampsa|1 +(noun)|Proterochampsa|genus Proterochampsa|reptile genus +genus proteus|1 +(noun)|Proteus|genus Proteus|amphibian genus +genus protium|1 +(noun)|Protium|genus Protium|rosid dicot genus +genus protoavis|1 +(noun)|genus Protoavis|bird genus +genus protoceratops|1 +(noun)|genus Protoceratops|reptile genus +genus protohippus|1 +(noun)|genus Protohippus|mammal genus +genus prumnopitys|1 +(noun)|Prumnopitys|genus Prumnopitys|gymnosperm genus +genus prunella|2 +(noun)|Prunella|genus Prunella|asterid dicot genus +(noun)|Prunella|genus Prunella|bird genus +genus prunus|1 +(noun)|Prunus|genus Prunus|rosid dicot genus +genus psaltriparus|1 +(noun)|Psaltriparus|genus Psaltriparus|bird genus +genus psenes|1 +(noun)|Psenes|genus Psenes|fish genus +genus psephurus|1 +(noun)|Psephurus|genus Psephurus|fish genus +genus psetta|1 +(noun)|Psetta|genus Psetta|fish genus +genus psettichthys|1 +(noun)|Psettichthys|genus Psettichthys|fish genus +genus pseudacris|1 +(noun)|Pseudacris|genus Pseudacris|amphibian genus +genus pseudaletia|1 +(noun)|Pseudaletia|genus Pseudaletia|arthropod genus +genus pseudechis|1 +(noun)|Pseudechis|genus Pseudechis|reptile genus +genus pseudemys|1 +(noun)|Pseudemys|genus Pseudemys|reptile genus +genus pseudobombax|1 +(noun)|Pseudobombax|genus Pseudobombax|dilleniid dicot genus +genus pseudococcus|1 +(noun)|Pseudococcus|genus Pseudococcus|arthropod genus +genus pseudocolus|1 +(noun)|Pseudocolus|genus Pseudocolus|fungus genus +genus pseudolarix|1 +(noun)|Pseudolarix|genus Pseudolarix|gymnosperm genus +genus pseudomonas|1 +(noun)|Pseudomonas|genus Pseudomonas|bacteria genus +genus pseudopleuronectes|1 +(noun)|Pseudopleuronectes|genus Pseudopleuronectes|fish genus +genus pseudoryx|1 +(noun)|Pseudoryx|genus Pseudoryx|mammal genus +genus pseudotaxus|1 +(noun)|Pseudotaxus|genus Pseudotaxus|gymnosperm genus +genus pseudotsuga|1 +(noun)|Pseudotsuga|genus Pseudotsuga|gymnosperm genus +genus pseudowintera|1 +(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus +genus psidium|1 +(noun)|Psidium|genus Psidium|dicot genus|magnoliopsid genus +genus psilophyton|1 +(noun)|genus Psilophyton|fern genus +genus psilotum|1 +(noun)|Psilotum|genus Psilotum|fern genus +genus psithyrus|1 +(noun)|Psithyrus|genus Psithyrus|arthropod genus +genus psittacosaurus|1 +(noun)|genus Psittacosaurus|reptile genus +genus psittacula|1 +(noun)|Psittacula|genus Psittacula|bird genus +genus psittacus|1 +(noun)|Psittacus|genus Psittacus|bird genus +genus psophia|1 +(noun)|Psophia|genus Psophia|bird genus +genus psophocarpus|1 +(noun)|Psophocarpus|genus Psophocarpus|rosid dicot genus +genus psoralea|1 +(noun)|Psoralea|genus Psoralea|rosid dicot genus +genus psychopsis|1 +(noun)|Psychopsis|genus Psychopsis|monocot genus|liliopsid genus +genus psychotria|1 +(noun)|Psychotria|genus Psychotria|asterid dicot genus +genus pteretis|1 +(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus +genus pteridium|1 +(noun)|Pteridium|genus Pteridium|fern genus +genus pteris|1 +(noun)|Pteris|genus Pteris|fern genus +genus pternohyla|1 +(noun)|Pternohyla|genus Pternohyla|amphibian genus +genus pterocarpus|1 +(noun)|Pterocarpus|genus Pterocarpus|rosid dicot genus +genus pterocarya|1 +(noun)|Pterocarya|genus Pterocarya|dicot genus|magnoliopsid genus +genus pterocles|1 +(noun)|Pterocles|genus Pterocles|bird genus +genus pterocnemia|1 +(noun)|Pterocnemia|genus Pterocnemia|bird genus +genus pterodactylus|1 +(noun)|Pterodactylus|genus Pterodactylus|reptile genus +genus pterois|1 +(noun)|Pterois|genus Pterois|fish genus +genus pteropogon|1 +(noun)|genus Pteropogon|asterid dicot genus +genus pteropus|1 +(noun)|Pteropus|genus Pteropus|mammal genus +genus pterospermum|1 +(noun)|Pterospermum|genus Pterospermum|dilleniid dicot genus +genus pterostylis|1 +(noun)|Pterostylis|genus Pterostylis|monocot genus|liliopsid genus +genus ptilocercus|1 +(noun)|Ptilocercus|genus Ptilocercus|mammal genus +genus ptilocrinus|1 +(noun)|Ptilocrinus|genus Ptilocrinus|echinoderm genus +genus ptilonorhynchus|1 +(noun)|Ptilonorhynchus|genus Ptilonorhynchus|bird genus +genus ptloris|1 +(noun)|Ptloris|genus Ptloris|bird genus +genus ptyas|1 +(noun)|Ptyas|genus Ptyas|reptile genus +genus ptychozoon|1 +(noun)|Ptychozoon|genus Ptychozoon|reptile genus +genus puccinia|1 +(noun)|Puccinia|genus Puccinia|fungus genus +genus pueraria|1 +(noun)|Pueraria|genus Pueraria|rosid dicot genus +genus puffinus|1 +(noun)|Puffinus|genus Puffinus|bird genus +genus pulex|1 +(noun)|Pulex|genus Pulex|arthropod genus +genus pulicaria|1 +(noun)|Pulicaria|genus Pulicaria|asterid dicot genus +genus pulsatilla|1 +(noun)|Pulsatilla|genus Pulsatilla|magnoliid dicot genus +genus punica|1 +(noun)|Punica|genus Punica|dicot genus|magnoliopsid genus +genus pycnanthemum|1 +(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus +genus pygopus|1 +(noun)|Pygopus|genus Pygopus|reptile genus +genus pygoscelis|1 +(noun)|Pygoscelis|genus Pygoscelis|bird genus +genus pylodictus|1 +(noun)|Pylodictus|genus Pylodictus|fish genus +genus pyracantha|1 +(noun)|genus Pyracantha|rosid dicot genus +genus pyralis|1 +(noun)|Pyralis|genus Pyralis|arthropod genus +genus pyrausta|1 +(noun)|Pyrausta|genus Pyrausta|arthropod genus +genus pyrethrum|1 +(noun)|Pyrethrum|genus Pyrethrum|asterid dicot genus +genus pyrocephalus|1 +(noun)|Pyrocephalus|genus Pyrocephalus|bird genus +genus pyrola|1 +(noun)|genus Pyrola|dilleniid dicot genus +genus pyrophorus|1 +(noun)|Pyrophorus|genus Pyrophorus|arthropod genus +genus pyrrhula|1 +(noun)|Pyrrhula|genus Pyrrhula|bird genus +genus pyrrhuloxia|1 +(noun)|genus Pyrrhuloxia|bird genus +genus pyrrosia|1 +(noun)|Pyrrosia|genus Pyrrosia|fern genus +genus pyrularia|1 +(noun)|Pyrularia|genus Pyrularia|dilleniid dicot genus +genus pyrus|1 +(noun)|Pyrus|genus Pyrus|rosid dicot genus +genus pythium|1 +(noun)|genus Pythium|fungus genus +genus python|1 +(noun)|genus Python|reptile genus +genus pyxidanthera|1 +(noun)|Pyxidanthera|genus Pyxidanthera|dilleniid dicot genus +genus quamassia|1 +(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus +genus quassia|1 +(noun)|genus Quassia|rosid dicot genus +genus quercus|1 +(noun)|Quercus|genus Quercus|hamamelid dicot genus +genus quiscalus|1 +(noun)|Quiscalus|genus Quiscalus|bird genus +genus rachycentron|1 +(noun)|Rachycentron|genus Rachycentron|fish genus +genus radiigera|1 +(noun)|Radiigera|genus Radiigera|fungus genus +genus radyera|1 +(noun)|Radyera|genus Radyera|dilleniid dicot genus +genus raffia|1 +(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus|liliopsid genus +genus raja|1 +(noun)|Raja|genus Raja|fish genus +genus ramalina|1 +(noun)|Ramalina|genus Ramalina|fungus genus +genus ramphomicron|1 +(noun)|Ramphomicron|genus Ramphomicron|bird genus +genus rana|1 +(noun)|Rana|genus Rana|amphibian genus +genus ranatra|1 +(noun)|Ranatra|genus Ranatra|arthropod genus +genus rangifer|1 +(noun)|Rangifer|genus Rangifer|mammal genus +genus ranunculus|1 +(noun)|Ranunculus|genus Ranunculus|magnoliid dicot genus +genus raoulia|1 +(noun)|Raoulia|genus Raoulia|asterid dicot genus +genus raphanus|1 +(noun)|Raphanus|dilleniid dicot genus +genus raphia|1 +(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus|liliopsid genus +genus raphicerus|1 +(noun)|Raphicerus|genus Raphicerus|mammal genus +genus raphus|1 +(noun)|Raphus|genus Raphus|bird genus +genus ratibida|1 +(noun)|Ratibida|genus Ratibida|asterid dicot genus +genus rattus|1 +(noun)|Rattus|genus Rattus|mammal genus +genus rauvolfia|1 +(noun)|genus Rauwolfia|genus Rauvolfia|dicot genus|magnoliopsid genus +genus rauwolfia|1 +(noun)|genus Rauwolfia|genus Rauvolfia|dicot genus|magnoliopsid genus +genus ravenala|1 +(noun)|genus Ravenala|monocot genus|liliopsid genus +genus recurvirostra|1 +(noun)|Recurvirostra|genus Recurvirostra|bird genus +genus regalecus|1 +(noun)|Reglaecus|genus Regalecus|fish genus +genus regnellidium|1 +(noun)|genus Regnellidium|fern genus +genus regulus|1 +(noun)|Regulus|genus Regulus|bird genus +genus reithrodontomys|1 +(noun)|Reithrodontomys|genus Reithrodontomys|mammal genus +genus remilegia|1 +(noun)|Remilegia|genus Remilegia|fish genus +genus reseda|1 +(noun)|genus Reseda|dilleniid dicot genus +genus retama|1 +(noun)|Retama|genus Retama|rosid dicot genus +genus reticulitermes|1 +(noun)|Reticulitermes|genus Reticulitermes|arthropod genus +genus retrophyllum|1 +(noun)|Retrophyllum|genus Retrophyllum|gymnosperm genus +genus rhagoletis|1 +(noun)|Rhagoletis|genus Rhagoletis|arthropod genus +genus rhamnus|1 +(noun)|Rhamnus|genus Rhamnus|dicot genus|magnoliopsid genus +genus rhapis|1 +(noun)|Rhapis|genus Rhapis|monocot genus|liliopsid genus +genus rhea|1 +(noun)|genus Rhea|bird genus +genus rheum|1 +(noun)|Rheum|genus Rheum|dicot genus|magnoliopsid genus +genus rhexia|1 +(noun)|Rhexia|genus Rhexia|rosid dicot genus +genus rhincodon|1 +(noun)|Rhincodon|genus Rhincodon|fish genus +genus rhinoceros|1 +(noun)|genus Rhinoceros|mammal genus +genus rhinonicteris|1 +(noun)|Rhinonicteris|genus Rhinonicteris|mammal genus +genus rhinoptera|1 +(noun)|Rhinoptera|genus Rhinoptera|fish genus +genus rhipsalis|1 +(noun)|Rhipsalis|genus Rhipsalis|caryophylloid dicot genus +genus rhizobium|1 +(noun)|Rhizobium|genus Rhizobium|bacteria genus +genus rhizoctinia|1 +(noun)|genus Rhizoctinia|fungus genus +genus rhizophora|1 +(noun)|Rhizophora|genus Rhizophora|dicot genus|magnoliopsid genus +genus rhizopogon|1 +(noun)|Rhizopogon|genus Rhizopogon|fungus genus +genus rhizopus|1 +(noun)|genus Rhizopus|fungus genus +genus rhodanthe|1 +(noun)|genus Rhodanthe|asterid dicot genus +genus rhododendron|1 +(noun)|genus Rhododendron|dilleniid dicot genus +genus rhodosphaera|1 +(noun)|Rhodosphaera|genus Rhodosphaera|dicot genus|magnoliopsid genus +genus rhodymenia|1 +(noun)|Rhodymenia|genus Rhodymenia|protoctist genus +genus rhus|1 +(noun)|Rhus|genus Rhus|dicot genus|magnoliopsid genus +genus rhyacotriton|1 +(noun)|Rhyacotriton|genus Rhyacotriton|amphibian genus +genus rhynchoelaps|1 +(noun)|Rhynchoelaps|genus Rhynchoelaps|reptile genus +genus rhyncostylis|1 +(noun)|Rhyncostylis|genus Rhyncostylis|monocot genus|liliopsid genus +genus rhynia|1 +(noun)|Rhynia|genus Rhynia|fern genus +genus ribes|1 +(noun)|Ribes|genus Ribes|plant genus +genus richea|1 +(noun)|Richea|genus Richea|dilleniid dicot genus +genus richmondena|1 +(noun)|Richmondena|genus Richmondena|bird genus +genus ricinus|1 +(noun)|Ricinus|genus Ricinus|rosid dicot genus +genus rickettsia|1 +(noun)|genus Rickettsia|bacteria genus +genus riparia|1 +(noun)|Riparia|genus Riparia|bird genus +genus rissa|1 +(noun)|Rissa|genus Rissa|bird genus +genus rivina|1 +(noun)|Rivina|genus Rivina|caryophylloid dicot genus +genus rivulus|1 +(noun)|genus Rivulus|fish genus +genus robinia|1 +(noun)|Robinia|genus Robinia|rosid dicot genus +genus roccella|1 +(noun)|genus Roccella|fungus genus +genus roccus|1 +(noun)|Roccus|genus Roccus|fish genus +genus rodolia|1 +(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus +genus romneya|1 +(noun)|Romneya|genus Romneya|dilleniid dicot genus +genus roridula|1 +(noun)|genus Roridula|dicot genus|magnoliopsid genus +genus rorippa|1 +(noun)|Rorippa|genus Rorippa|dilleniid dicot genus +genus rosa|1 +(noun)|Rosa|genus Rosa|rosid dicot genus +genus rosellinia|1 +(noun)|Rosellinia|genus Rosellinia|fungus genus +genus rosmarinus|1 +(noun)|Rosmarinus|genus Rosmarinus|asterid dicot genus +genus roystonea|1 +(noun)|Roystonea|genus Roystonea|monocot genus|liliopsid genus +genus rubia|1 +(noun)|Rubia|genus Rubia|asterid dicot genus +genus rubus|1 +(noun)|Rubus|genus Rubus|rosid dicot genus +genus rudbeckia|1 +(noun)|Rudbeckia|genus Rudbeckia|asterid dicot genus +genus rumex|1 +(noun)|Rumex|genus Rumex|dicot genus|magnoliopsid genus +genus rumohra|1 +(noun)|Rumohra|genus Rumohra|fern genus +genus rupicapra|1 +(noun)|Rupicapra|genus Rupicapra|mammal genus +genus rupicola|1 +(noun)|Rupicola|genus Rupicola|bird genus +genus ruptiliocarpon|1 +(noun)|Ruptiliocarpon|genus Ruptiliocarpon|rosid dicot genus +genus ruscus|1 +(noun)|Ruscus|genus Ruscus|liliid monocot genus +genus russula|1 +(noun)|Russula|genus Russula|fungus genus +genus ruta|1 +(noun)|Ruta|genus Ruta|rosid dicot genus +genus rutilus|1 +(noun)|Rutilus|genus Rutilus|fish genus +genus rynchops|1 +(noun)|Rynchops|genus Rynchops|bird genus +genus rypticus|1 +(noun)|Rypticus|genus Rypticus|fish genus +genus sabal|1 +(noun)|Sabal|genus Sabal|monocot genus|liliopsid genus +genus sabbatia|1 +(noun)|genus Sabbatia|dicot genus|magnoliopsid genus +genus sabinea|1 +(noun)|Sabinea|genus Sabinea|rosid dicot genus +genus saccharomyces|1 +(noun)|Saccharomyces|genus Saccharomyces|fungus genus +genus saccharum|1 +(noun)|Saccharum|genus Saccharum|monocot genus|liliopsid genus +genus sadleria|1 +(noun)|Sadleria|genus Sadleria|fern genus +genus sagina|1 +(noun)|Sagina|genus Sagina|caryophylloid dicot genus +genus sagitta|1 +(noun)|genus Sagitta|worm genus +genus sagittaria|1 +(noun)|Sagittaria|genus Sagittaria|monocot genus|liliopsid genus +genus sagittarius|1 +(noun)|Sagittarius|genus Sagittarius|bird genus +genus saiga|1 +(noun)|genus Saiga|mammal genus +genus saimiri|1 +(noun)|Saimiri|genus Saimiri|mammal genus +genus saintpaulia|1 +(noun)|Saintpaulia|genus Saintpaulia|asterid dicot genus +genus salamandra|1 +(noun)|Salamandra|genus Salamandra|amphibian genus +genus salicornia|1 +(noun)|Salicornia|genus Salicornia|caryophylloid dicot genus +genus salix|1 +(noun)|Salix|genus Salix|hamamelid dicot genus +genus salmo|1 +(noun)|Salmo|genus Salmo|fish genus +genus salmonella|1 +(noun)|genus Salmonella|bacteria genus +genus salpa|1 +(noun)|genus Salpa|chordate genus +genus salpichroa|1 +(noun)|Salpichroa|genus Salpichroa|asterid dicot genus +genus salpiglossis|1 +(noun)|genus Salpiglossis|asterid dicot genus +genus salpinctes|1 +(noun)|Salpinctes|genus Salpinctes|bird genus +genus salsola|1 +(noun)|Salsola|genus Salsola|caryophylloid dicot genus +genus salvadora|1 +(noun)|Salvadora|genus Salvadora|dicot genus|magnoliopsid genus +genus salvelinus|1 +(noun)|Salvelinus|genus Salvelinus|fish genus +genus salvia|1 +(noun)|genus Salvia|asterid dicot genus +genus salvinia|1 +(noun)|Salvinia|genus Salvinia|fern genus +genus sambucus|1 +(noun)|Sambucus|genus Sambucus|asterid dicot genus +genus samia|1 +(noun)|Samia|genus Samia|arthropod genus +genus samolus|1 +(noun)|Samolus|genus Samolus|dicot genus|magnoliopsid genus +genus sanguinaria|1 +(noun)|Sanguinaria|genus Sanguinaria|dilleniid dicot genus +genus sanicula|1 +(noun)|Sanicula|genus Sanicula|rosid dicot genus +genus sansevieria|1 +(noun)|genus Sansevieria|liliid monocot genus +genus santalum|1 +(noun)|Santalum|genus Santalum|dilleniid dicot genus +genus santolina|1 +(noun)|Santolina|genus Santolina|asterid dicot genus +genus sanvitalia|1 +(noun)|Sanvitalia|genus Sanvitalia|asterid dicot genus +genus sapindus|1 +(noun)|Sapindus|genus Sapindus|dicot genus|magnoliopsid genus +genus saponaria|1 +(noun)|Saponaria|genus Saponaria|caryophylloid dicot genus +genus saprolegnia|1 +(noun)|Saprolegnia|genus Saprolegnia|fungus genus +genus sarcobatus|1 +(noun)|Sarcobatus|genus Sarcobatus|caryophylloid dicot genus +genus sarcocephalus|1 +(noun)|Sarcocephalus|genus Sarcocephalus|asterid dicot genus +genus sarcochilus|1 +(noun)|Sarcochilus|genus Sarcochilus|monocot genus|liliopsid genus +genus sarcocystis|1 +(noun)|Sarcocystis|genus Sarcocystis|protoctist genus +genus sarcodes|1 +(noun)|Sarcodes|genus Sarcodes|dilleniid dicot genus +genus sarcophaga|1 +(noun)|Sarcophaga|genus Sarcophaga|arthropod genus +genus sarcophilus|1 +(noun)|Sarcophilus|genus Sarcophilus|mammal genus +genus sarcoptes|1 +(noun)|Sarcoptes|genus Sarcoptes|arthropod genus +genus sarcorhamphus|1 +(noun)|Sarcorhamphus|genus Sarcorhamphus|bird genus +genus sarcostemma|1 +(noun)|Sarcostemma|genus Sarcostemma|dicot genus|magnoliopsid genus +genus sarda|1 +(noun)|Sarda|genus Sarda|fish genus +genus sardina|1 +(noun)|Sardina|genus Sardina|genus Sardinia|fish genus +genus sardinia|1 +(noun)|Sardina|genus Sardina|genus Sardinia|fish genus +genus sardinops|1 +(noun)|Sardinops|genus Sardinops|fish genus +genus sargassum|1 +(noun)|genus Sargassum|protoctist genus +genus sarracenia|1 +(noun)|Sarracenia|genus Sarracenia|dicot genus|magnoliopsid genus +genus sassafras|1 +(noun)|genus Sassafras|magnoliid dicot genus +genus satureia|1 +(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus +genus satureja|1 +(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus +genus saturnia|1 +(noun)|Saturnia|genus Saturnia|arthropod genus +genus sauromalus|1 +(noun)|Sauromalus|genus Sauromalus|reptile genus +genus saurosuchus|1 +(noun)|Saurosuchus|genus Saurosuchus|reptile genus +genus saururus|1 +(noun)|Saururus|genus Saururus|dicot genus|magnoliopsid genus +genus saussurea|1 +(noun)|Saussurea|genus Saussurea|asterid dicot genus +genus saxe-gothea|1 +(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus +genus saxegothea|1 +(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus +genus saxicola|1 +(noun)|Saxicola|genus Saxicola|bird genus +genus saxifraga|1 +(noun)|Saxifraga|genus Saxifraga|rosid dicot genus +genus sayornis|1 +(noun)|Sayornis|genus Sayornis|bird genus +genus scabiosa|1 +(noun)|genus Scabiosa|asterid dicot genus +genus scaphiopus|1 +(noun)|Scaphiopus|genus Scaphiopus|amphibian genus +genus scaphosepalum|1 +(noun)|Scaphosepalum|genus Scaphosepalum|monocot genus|liliopsid genus +genus scarabaeus|1 +(noun)|genus Scarabaeus|arthropod genus +genus scardinius|1 +(noun)|Scardinius|genus Scardinius|fish genus +genus scartella|1 +(noun)|Scartella|genus Scartella|fish genus +genus sceliphron|1 +(noun)|Sceliphron|genus Sceliphron|arthropod genus +genus sceloglaux|1 +(noun)|Sceloglaux|genus Sceloglaux|bird genus +genus sceloporus|1 +(noun)|Sceloporus|genus Sceloporus|reptile genus +genus schaffneria|1 +(noun)|Schaffneria|genus Schaffneria|fern genus +genus schefflera|1 +(noun)|Schefflera|genus Schefflera|rosid dicot genus +genus schinus|1 +(noun)|Schinus|genus Schinus|dicot genus|magnoliopsid genus +genus schistosoma|1 +(noun)|Schistosoma|genus Schistosoma|worm genus +genus schizachyrium|1 +(noun)|Schizachyrium|genus Schizachyrium|monocot genus|liliopsid genus +genus schizaea|1 +(noun)|Schizaea|genus Schizaea|fern genus +genus schizanthus|1 +(noun)|genus Schizanthus|asterid dicot genus +genus schizopetalon|1 +(noun)|genus Schizopetalon|dilleniid dicot genus +genus schizophragma|1 +(noun)|Schizophragma|genus Schizophragma|rosid dicot genus +genus schizosaccharomyces|1 +(noun)|Schizosaccharomyces|genus Schizosaccharomyces|fungus genus +genus schlumbergera|1 +(noun)|Schlumbergera|genus Schlumbergera|caryophylloid dicot genus +genus schomburgkia|1 +(noun)|Schomburgkia|genus Schomburgkia|monocot genus|liliopsid genus +genus sciadopitys|1 +(noun)|Sciadopitys|genus Sciadopitys|gymnosperm genus +genus sciaena|1 +(noun)|Sciaena|genus Sciaena|fish genus +genus sciaenops|1 +(noun)|Sciaenops|genus Sciaenops|fish genus +genus sciara|1 +(noun)|genus Sciara|arthropod genus +genus scilla|1 +(noun)|genus Scilla|liliid monocot genus +genus scincella|1 +(noun)|Scincella|genus Scincella|reptile genus +genus scincus|1 +(noun)|Scincus|genus Scincus|reptile genus +genus scindapsus|1 +(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus|liliopsid genus +genus scirpus|1 +(noun)|Scirpus|genus Scirpus|monocot genus|liliopsid genus +genus sciurus|1 +(noun)|Sciurus|genus Sciurus|mammal genus +genus scleranthus|1 +(noun)|Scleranthus|genus Scleranthus|caryophylloid dicot genus +genus scleroderma|1 +(noun)|Scleroderma|genus Scleroderma|fungus genus +genus sclerotinia|1 +(noun)|genus Sclerotinia|fungus genus +genus sclerotium|1 +(noun)|Sclerotium|genus Sclerotium|fungus genus +genus scolopax|1 +(noun)|Scolopax|genus Scolopax|bird genus +genus scolopendrium|1 +(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus +genus scolymus|1 +(noun)|Scolymus|genus Scolymus|asterid dicot genus +genus scolytus|1 +(noun)|Scolytus|genus Scolytus|arthropod genus +genus scomber|1 +(noun)|Scomber|genus Scomber|fish genus +genus scomberesox|1 +(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus +genus scomberomorus|1 +(noun)|Scomberomorus|genus Scomberomorus|fish genus +genus scombresox|1 +(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus +genus scophthalmus|1 +(noun)|Scophthalmus|genus Scophthalmus|fish genus +genus scopolia|1 +(noun)|Scopolia|genus Scopolia|asterid dicot genus +genus scorpaena|1 +(noun)|Scorpaena|genus Scorpaena|fish genus +genus scorzonera|1 +(noun)|genus Scorzonera|asterid dicot genus +genus scrophularia|1 +(noun)|Scrophularia|genus Scrophularia|asterid dicot genus +genus scutellaria|1 +(noun)|Scutellaria|genus Scutellaria|asterid dicot genus +genus scutigera|1 +(noun)|Scutigera|genus Scutigera|arthropod genus +genus scutigerella|1 +(noun)|Scutigerella|genus Scutigerella|arthropod genus +genus sebastiana|1 +(noun)|Sebastiana|genus Sebastiana|rosid dicot genus +genus sebastodes|1 +(noun)|Sebastodes|genus Sebastodes|fish genus +genus secale|1 +(noun)|Secale|genus Secale|monocot genus|liliopsid genus +genus sedum|1 +(noun)|genus Sedum|plant genus +genus seismosaurus|1 +(noun)|Seismosaurus|genus Seismosaurus|reptile genus +genus seiurus|1 +(noun)|Seiurus|genus Seiurus|bird genus +genus selaginella|1 +(noun)|Selaginella|genus Selaginella|fern genus +genus selar|1 +(noun)|Selar|genus Selar|fish genus +genus selenarctos|1 +(noun)|Selenarctos|genus Selenarctos|mammal genus +genus selene|1 +(noun)|Selene|genus Selene|fish genus +genus selenicereus|1 +(noun)|Selenicereus|genus Selenicereus|caryophylloid dicot genus +genus selenipedium|1 +(noun)|Selenipedium|genus Selenipedium|monocot genus|liliopsid genus +genus senecio|1 +(noun)|Senecio|genus Senecio|asterid dicot genus +genus senna|1 +(noun)|genus Senna|rosid dicot genus +genus sepia|1 +(noun)|Sepia|genus Sepia|mollusk genus +genus septobasidium|1 +(noun)|Septobasidium|genus Septobasidium|fungus genus +genus sequoia|1 +(noun)|genus Sequoia|gymnosperm genus +genus sequoiadendron|1 +(noun)|Sequoiadendron|genus Sequoiadendron|plant genus +genus serenoa|1 +(noun)|Serenoa|genus Serenoa|monocot genus|liliopsid genus +genus sericocarpus|1 +(noun)|Sericocarpus|genus Sericocarpus|asterid dicot genus +genus serinus|1 +(noun)|Serinus|genus Serinus|bird genus +genus seriola|1 +(noun)|Seriola|genus Seriola|fish genus +genus seriphidium|1 +(noun)|Seriphidium|genus Seriphidium|asterid dicot genus +genus seriphus|1 +(noun)|Seriphus|genus Seriphus|fish genus +genus serranus|1 +(noun)|Serranus|genus Serranus|fish genus +genus serrasalmus|1 +(noun)|Serrasalmus|genus Serrasalmus|fish genus +genus serratia|1 +(noun)|genus Serratia|Serratia|bacteria genus +genus serratula|1 +(noun)|Serratula|genus Serratula|asterid dicot genus +genus sertularia|1 +(noun)|Sertularia|genus Sertularia|coelenterate genus +genus sesamum|1 +(noun)|Sesamum|genus Sesamum|plant genus +genus sesbania|1 +(noun)|genus Sesbania|rosid dicot genus +genus seseli|1 +(noun)|Seseli|genus Seseli|rosid dicot genus +genus setaria|1 +(noun)|Setaria|genus Setaria|monocot genus|liliopsid genus +genus setophaga|1 +(noun)|Setophaga|genus Setophaga|bird genus +genus shigella|1 +(noun)|genus Shigella|bacteria genus +genus shorea|1 +(noun)|Shorea|genus Shorea|dilleniid dicot genus +genus shortia|1 +(noun)|genus Shortia|dilleniid dicot genus +genus sialia|1 +(noun)|Sialia|genus Sialia|bird genus +genus sialis|1 +(noun)|Sialis|genus Sialis|arthropod genus +genus sida|1 +(noun)|Sida|genus Sida|dilleniid dicot genus +genus sidalcea|1 +(noun)|Sidalcea|genus Sidalcea|dilleniid dicot genus +genus sideritis|1 +(noun)|Sideritis|genus Sideritis|asterid dicot genus +genus sigmodon|1 +(noun)|Sigmodon|genus Sigmodon|mammal genus +genus silene|1 +(noun)|genus Silene|caryophylloid dicot genus +genus sillago|1 +(noun)|Sillago|genus Sillago|fish genus +genus silphium|1 +(noun)|Silphium|genus Silphium|asterid dicot genus +genus silurus|1 +(noun)|Silurus|genus Silurus|fish genus +genus silvia|1 +(noun)|Silvia|genus Silvia|bird genus +genus silybum|1 +(noun)|Silybum|genus Silybum|asterid dicot genus +genus simarouba|1 +(noun)|Simarouba|genus Simarouba|rosid dicot genus +genus simulium|1 +(noun)|Simulium|genus Simulium|arthropod genus +genus sinanthropus|1 +(noun)|Sinanthropus|genus Sinanthropus|hominid +genus sinapis|1 +(noun)|Sinapis|genus Sinapis|dilleniid dicot genus +genus sinningia|1 +(noun)|Sinningia|genus Sinningia|asterid dicot genus +genus sinornis|1 +(noun)|genus Sinornis|bird genus +genus siren|1 +(noun)|genus Siren|amphibian genus +genus sison|1 +(noun)|Sison|genus Sison|rosid dicot genus +genus sistrurus|1 +(noun)|Sistrurus|genus Sistrurus|reptile genus +genus sisymbrium|1 +(noun)|genus Sisymbrium|dilleniid dicot genus +genus sisyrinchium|1 +(noun)|Sisyrinchium|genus Sisyrinchium|liliid monocot genus +genus sitophylus|1 +(noun)|Sitophylus|genus Sitophylus|arthropod genus +genus sitotroga|1 +(noun)|Sitotroga|genus Sitotroga|arthropod genus +genus sitta|1 +(noun)|Sitta|genus Sitta|bird genus +genus sium|1 +(noun)|Sium|genus Sium|rosid dicot genus +genus sivapithecus|1 +(noun)|genus Sivapithecus|mammal genus +genus sloanea|1 +(noun)|Sloanea|genus Sloanea|dilleniid dicot genus +genus smilax|1 +(noun)|Smilax|genus Smilax|liliid monocot genus +genus smiledon|1 +(noun)|Smiledon|genus Smiledon|mammal genus +genus smyrnium|1 +(noun)|Smyrnium|genus Smyrnium|rosid dicot genus +genus sobralia|1 +(noun)|genus Sobralia|monocot genus|liliopsid genus +genus solandra|1 +(noun)|Solandra|genus Solandra|asterid dicot genus +genus solanopteris|1 +(noun)|Solanopteris|genus Solanopteris|fern genus +genus solanum|1 +(noun)|Solanum|genus Solanum|asterid dicot genus +genus solea|1 +(noun)|Solea|genus Solea|fish genus +genus soleirolia|1 +(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus|magnoliopsid genus +genus solenopsis|1 +(noun)|Solenopsis|genus Solenopsis|arthropod genus +genus solenostemon|1 +(noun)|Solenostemon|genus Solenostemon|asterid dicot genus +genus solidago|1 +(noun)|Solidago|genus Solidago|asterid dicot genus +genus somateria|1 +(noun)|Somateria|genus Somateria|bird genus +genus sonchus|1 +(noun)|Sonchus|genus Sonchus|asterid dicot genus +genus sonora|1 +(noun)|Sonora|genus Sonora|reptile genus +genus sophora|1 +(noun)|Sophora|genus Sophora|rosid dicot genus +genus sorbus|1 +(noun)|Sorbus|genus Sorbus|rosid dicot genus +genus sorex|1 +(noun)|Sorex|genus Sorex|mammal genus +genus sorghum|1 +(noun)|genus Sorghum|monocot genus|liliopsid genus +genus spadella|1 +(noun)|genus Spadella|worm genus +genus spalax|1 +(noun)|Spalax|genus Spalax|mammal genus +genus sparaxis|1 +(noun)|Sparaxis|genus Sparaxis|liliid monocot genus +genus sparganium|1 +(noun)|Sparganium|genus Sparganium|monocot genus|liliopsid genus +genus sparmannia|1 +(noun)|Sparmannia|genus Sparmannia|dilleniid dicot genus +genus spartina|1 +(noun)|Spartina|genus Spartina|monocot genus|liliopsid genus +genus spartium|1 +(noun)|Spartium|genus Spartium|rosid dicot genus +genus spathiphyllum|1 +(noun)|genus Spathiphyllum|monocot genus|liliopsid genus +genus spergula|1 +(noun)|Spergula|genus Spergula|caryophylloid dicot genus +genus spergularia|1 +(noun)|Spergularia|genus Spergularia|caryophylloid dicot genus +genus spermophilus|1 +(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus +genus sphacele|1 +(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus +genus sphacelotheca|1 +(noun)|Sphacelotheca|genus Sphacelotheca|smut|smut fungus +genus sphaeralcea|1 +(noun)|Sphaeralcea|genus Sphaeralcea|dilleniid dicot genus +genus sphaerocarpos|1 +(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus +genus sphaerocarpus|1 +(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus +genus sphagnum|1 +(noun)|genus Sphagnum|moss genus +genus sphecius|1 +(noun)|Sphecius|genus Sphecius|arthropod genus +genus sphecotheres|1 +(noun)|Sphecotheres|genus Sphecotheres|bird genus +genus spheniscus|1 +(noun)|Spheniscus|genus Spheniscus|bird genus +genus sphenodon|1 +(noun)|Sphenodon|genus Sphenodon|reptile genus +genus sphyraena|1 +(noun)|Sphyraena|genus Sphyraena|fish genus +genus sphyrapicus|1 +(noun)|Sphyrapicus|genus Sphyrapicus|bird genus +genus sphyrna|1 +(noun)|Sphyrna|genus Sphyrna|fish genus +genus spilogale|1 +(noun)|Spilogale|genus Spilogale|mammal genus +genus spinacia|1 +(noun)|Spinacia|genus Spinacia|caryophylloid dicot genus +genus spinus|1 +(noun)|Spinus|genus Spinus|bird genus +genus spiraea|1 +(noun)|Spiraea|genus Spiraea|rosid dicot genus +genus spiranthes|1 +(noun)|Spiranthes|genus Spiranthes|monocot genus|liliopsid genus +genus spirillum|1 +(noun)|genus Spirillum|bacteria genus +genus spirochaeta|1 +(noun)|Spirochaeta|genus Spirochaeta|bacteria genus +genus spirodela|1 +(noun)|Spirodela|genus Spirodela|monocot genus|liliopsid genus +genus spirogyra|1 +(noun)|genus Spirogyra|protoctist genus +genus spirula|1 +(noun)|genus Spirula|mollusk genus +genus spizella|1 +(noun)|Spizella|genus Spizella|bird genus +genus spodoptera|1 +(noun)|Spodoptera|genus Spodoptera|arthropod genus +genus spondias|1 +(noun)|Spondias|genus Spondias|dicot genus|magnoliopsid genus +genus sporobolus|1 +(noun)|Sporobolus|genus Sporobolus|monocot genus|liliopsid genus +genus spraguea|1 +(noun)|Spraguea|genus Spraguea|caryophylloid dicot genus +genus spyeria|1 +(noun)|Spyeria|genus Spyeria|arthropod genus +genus squalus|1 +(noun)|Squalus|genus Squalus|fish genus +genus squatina|1 +(noun)|Squatina|genus Squatina|fish genus +genus squilla|1 +(noun)|genus Squilla|arthropod genus +genus stachys|1 +(noun)|Stachys|genus Stachys|asterid dicot genus +genus stanhopea|1 +(noun)|genus Stanhopea|monocot genus|liliopsid genus +genus stanleya|1 +(noun)|Stanleya|genus Stanleya|dilleniid dicot genus +genus stapelia|1 +(noun)|genus Stapelia|dicot genus|magnoliopsid genus +genus staphylea|1 +(noun)|Staphylea|genus Staphylea|dicot genus|magnoliopsid genus +genus staphylococcus|1 +(noun)|genus Staphylococcus|bacteria genus +genus staurikosaurus|1 +(noun)|genus Staurikosaurus|reptile genus +genus steatornis|1 +(noun)|Steatornis|genus Steatornis|bird genus +genus steganopus|1 +(noun)|Steganopus|genus Steganopus|bird genus +genus stegosaurus|1 +(noun)|genus Stegosaurus|reptile genus +genus stelis|1 +(noun)|genus Stelis|monocot genus|liliopsid genus +genus stellaria|1 +(noun)|Stellaria|genus Stellaria|caryophylloid dicot family +genus stenocarpus|1 +(noun)|Stenocarpus|genus Stenocarpus|dicot genus|magnoliopsid genus +genus stenochlaena|1 +(noun)|Stenochlaena|genus Stenochlaena|fern genus +genus stenopelmatus|1 +(noun)|Stenopelmatus|genus Stenopelmatus|arthropod genus +genus stenopterygius|1 +(noun)|genus Stenopterygius|reptile genus +genus stenotaphrum|1 +(noun)|Stenotaphrum|genus Stenotaphrum|monocot genus|liliopsid genus +genus stenotomus|1 +(noun)|Stenotomus|genus Stenotomus|fish genus +genus stenotus|1 +(noun)|Stenotus|genus Stenotus|asterid dicot genus +genus stentor|1 +(noun)|genus Stentor|protoctist genus +genus stephanomeria|1 +(noun)|Stephanomeria|genus Stephanomeria|dilleniid dicot genus +genus stephanotis|1 +(noun)|genus Stephanotis|dicot genus|magnoliopsid genus +genus stercorarius|1 +(noun)|Stercorarius|genus Stercorarius|bird genus +genus sterculia|1 +(noun)|genus Sterculia|dilleniid dicot genus +genus sterna|1 +(noun)|Sterna|genus Sterna|bird genus +genus sternotherus|1 +(noun)|Sternotherus|genus Sternotherus|reptile genus +genus stevia|1 +(noun)|genus Stevia|asterid dicot genus +genus sticherus|1 +(noun)|Sticherus|genus Sticherus|fern genus +genus stictomys|1 +(noun)|Stictomys|genus Stictomys|mammal genus +genus stictopelia|1 +(noun)|Stictopelia|genus Stictopelia|bird genus +genus stizolobium|1 +(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus +genus stizostedion|1 +(noun)|Stizostedion|genus Stizostedion|fish genus +genus stokesia|1 +(noun)|Stokesia|genus Stokesia|asterid dicot genus +genus storeria|1 +(noun)|Storeria|genus Storeria|reptile genus +genus strekelia|1 +(noun)|Strekelia|genus Strekelia|liliid monocot genus +genus strelitzia|1 +(noun)|Strelitzia|genus Strelitzia|monocot genus|liliopsid genus +genus strepera|1 +(noun)|Strepera|genus Strepera|bird genus +genus strepsiceros|1 +(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus +genus streptocarpus|1 +(noun)|genus Streptocarpus|asterid dicot genus +genus streptococcus|1 +(noun)|genus Streptococcus|bacteria genus +genus streptomyces|1 +(noun)|genus Streptomyces|bacteria genus +genus streptopelia|1 +(noun)|Streptopelia|genus Streptopelia|bird genus +genus streptosolen|1 +(noun)|Streptosolen|genus Streptosolen|asterid dicot genus +genus strix|1 +(noun)|Strix|genus Strix|bird genus +genus strobilomyces|1 +(noun)|Strobilomyces|genus Strobilomyces|fungus genus +genus strombus|1 +(noun)|Strombus|genus Strombus|mollusk genus +genus strongylodon|1 +(noun)|Strongylodon|genus Strongylodon|rosid dicot genus +genus strophanthus|1 +(noun)|genus Strophanthus|dicot genus|magnoliopsid genus +genus stropharia|1 +(noun)|Stropharia|genus Stropharia|ring-stalked fungus|fungus genus +genus struthio|1 +(noun)|Struthio|genus Struthio|bird genus +genus struthiomimus|1 +(noun)|genus Struthiomimus|reptile genus +genus strymon|1 +(noun)|Strymon|genus Strymon|arthropod genus +genus sturnella|1 +(noun)|Sturnella|genus Sturnella|bird genus +genus sturnus|1 +(noun)|Sturnus|genus Sturnus|bird genus +genus stylomecon|1 +(noun)|Stylomecon|genus Stylomecon|dilleniid dicot genus +genus stylophorum|1 +(noun)|Stylophorum|genus Stylophorum|dilleniid dicot genus +genus styphelia|1 +(noun)|Styphelia|genus Styphelia|dilleniid dicot genus +genus styracosaurus|1 +(noun)|genus Styracosaurus|reptile genus +genus styrax|1 +(noun)|genus Styrax|dicot genus|magnoliopsid genus +genus subularia|1 +(noun)|Subularia|genus Subularia|dilleniid dicot genus +genus suillus|1 +(noun)|Suillus|genus Suillus|fungus genus +genus suksdorfia|1 +(noun)|genus Suksdorfia|rosid dicot genus +genus sula|1 +(noun)|Sula|genus Sula|bird genus +genus sundacarpus|1 +(noun)|Sundacarpus|genus Sundacarpus|gymnosperm genus +genus suricata|1 +(noun)|Suricata|genus Suricata|mammal genus +genus surnia|1 +(noun)|Surnia|genus Surnia|bird genus +genus sus|1 +(noun)|Sus|genus Sus|mammal genus +genus swainsona|1 +(noun)|Swainsona|genus Swainsona|rosid dicot genus +genus swertia|1 +(noun)|Swertia|genus Swertia|dicot genus|magnoliopsid genus +genus swietinia|1 +(noun)|Swietinia|genus Swietinia|rosid dicot genus +genus sylvilagus|1 +(noun)|Sylvilagus|genus Sylvilagus|mammal genus +genus symphalangus|1 +(noun)|Symphalangus|genus Symphalangus|mammal genus +genus symphoricarpos|1 +(noun)|Symphoricarpos|genus Symphoricarpos|asterid dicot genus +genus symphytum|1 +(noun)|Symphytum|genus Symphytum|plant genus +genus symplocarpus|1 +(noun)|Symplocarpus|genus Symplocarpus|monocot genus|liliopsid genus +genus symplocus|1 +(noun)|Symplocus|genus Symplocus|dicot genus|magnoliopsid genus +genus synagrops|1 +(noun)|Synagrops|genus Synagrops|fish genus +genus synanceja|1 +(noun)|Synanceja|genus Synanceja|fish genus +genus synaptomys|1 +(noun)|Synaptomys|genus Synaptomys|mammal genus +genus synchytrium|1 +(noun)|Synchytrium|genus Synchytrium|fungus genus +genus synercus|1 +(noun)|Synercus|genus Synercus|tribe synercus|mammal genus +genus syngnathus|1 +(noun)|Syngnathus|genus Syngnathus|fish genus +genus syngonium|1 +(noun)|Syngonium|genus Syngonium|monocot genus|liliopsid genus +genus syringa|1 +(noun)|Syringa|genus Syringa|dicot genus|magnoliopsid genus +genus syrrhaptes|1 +(noun)|Syrrhaptes|genus Syrrhaptes|bird genus +genus syzygium|1 +(noun)|Syzygium|genus Syzygium|dicot genus|magnoliopsid genus +genus tabernaemontana|1 +(noun)|Tabernaemontana|genus Tabernaemontana|dicot genus|magnoliopsid genus +genus tacca|1 +(noun)|Tacca|genus Tacca|liliid monocot genus +genus tachyglossus|1 +(noun)|Tachyglossus|genus Tachyglossus|mammal genus +genus tachypleus|1 +(noun)|Tachypleus|genus Tachypleus|arthropod genus +genus tadarida|1 +(noun)|Tadarida|genus Tadarida|mammal genus +genus tadorna|1 +(noun)|Tadorna|genus Tadorna|bird genus +genus taenia|1 +(noun)|genus Taenia|worm genus +genus tagetes|1 +(noun)|Tageteste|genus Tagetes|asterid dicot genus +genus talinum|1 +(noun)|Talinum|genus Talinum|caryophylloid dicot genus +genus tamandua|1 +(noun)|genus Tamandua|mammal genus +genus tamarindus|1 +(noun)|Tamarindus|genus Tamarindus|rosid dicot genus +genus tamarix|1 +(noun)|Tamarix|genus Tamarix|dilleniid dicot genus +genus tamias|1 +(noun)|Tamias|genus Tamias|mammal genus +genus tamiasciurus|1 +(noun)|Tamiasciurus|genus Tamiasciurus|mammal genus +genus tamus|1 +(noun)|Tamus|genus Tamus|plant genus +genus tanacetum|1 +(noun)|Tanacetum|genus Tanacetum|asterid dicot genus +genus tantilla|1 +(noun)|Tantilla|genus Tantilla|reptile genus +genus tapirus|1 +(noun)|Tapirus|genus Tapirus|mammal genus +genus taraktagenos|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +genus taraktogenos|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +genus taraxacum|1 +(noun)|Taraxacum|genus Taraxacum|asterid dicot genus +genus taricha|1 +(noun)|Taricha|genus Taricha|amphibian genus +genus tarpon|1 +(noun)|genus Tarpon|fish genus +genus tarrietia|1 +(noun)|Tarrietia|genus Tarrietia|dilleniid dicot genus +genus tarsius|1 +(noun)|Tarsius|genus Tarsius|mammal genus +genus taurotragus|1 +(noun)|Taurotragus|genus Taurotragus|mammal genus +genus tautoga|1 +(noun)|Tautoga|genus Tautoga|fish genus +genus tautogolabrus|1 +(noun)|Tautogolabrus|genus Tautogolabrus|fish genus +genus taxidea|1 +(noun)|Taxidea|genus Taxidea|mammal genus +genus taxodium|1 +(noun)|Taxodium|genus Taxodium|gymnosperm genus +genus taxus|1 +(noun)|Taxus|genus Taxus|gymnosperm genus +genus tayassu|1 +(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus +genus tectaria|1 +(noun)|Tectaria|genus Tectaria|fern genus +genus tectona|1 +(noun)|Tectona|genus Tectona|asterid dicot genus +genus telanthera|1 +(noun)|Telanthera|genus Telanthera|caryophylloid dicot genus +genus tellima|1 +(noun)|Tellima|genus Tellima|rosid dicot genus +genus telopea|1 +(noun)|Telopea|genus Telopea|dicot genus|magnoliopsid genus +genus templetonia|1 +(noun)|Templetonia|genus Templetonia|rosid dicot genus +genus tenrec|1 +(noun)|genus Tenrec|mammal genus +genus tephrosia|1 +(noun)|Tephrosia|genus Tephrosia|rosid dicot genus +genus terebella|1 +(noun)|Terebella|genus Terebella|worm genus +genus teredo|1 +(noun)|genus Teredo|mollusk genus +genus termes|1 +(noun)|Termes|genus Termes|arthropod genus +genus terrapene|1 +(noun)|Terrapene|genus Terrapene|reptile genus +genus terrietia|1 +(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus +genus testudo|1 +(noun)|Testudo|genus Testudo|reptile genus +genus tethus|1 +(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus +genus tetraclinis|1 +(noun)|Tetraclinis|genus Tetraclinis|gymnosperm genus +genus tetragonia|1 +(noun)|Tetragonia|genus Tetragonia|caryophylloid dicot genus +genus tetragonurus|1 +(noun)|Tetragonurus|genus Tetragonurus|fish genus +genus tetrahymena|1 +(noun)|genus Tetrahymena|protoctist genus +genus tetraneuris|1 +(noun)|Tetraneuris|genus Tetraneuris|asterid dicot genus +genus tetrao|1 +(noun)|Tetrao|genus Tetrao|bird genus +genus tetrapturus|1 +(noun)|Tetrapturus|genus Tetrapturus|fish genus +genus teucrium|1 +(noun)|Teucrium|genus Teucrium|asterid dicot genus +genus thalarctos|1 +(noun)|Thalarctos|genus Thalarctos|mammal genus +genus thalassoma|1 +(noun)|Thalassoma|genus Thalassoma|fish genus +genus thalictrum|1 +(noun)|Thalictrum|genus Thalictrum|magnoliid dicot genus +genus thamnophilus|1 +(noun)|Thamnophilus|genus Thamnophilus|bird genus +genus thamnophis|1 +(noun)|Thamnophis|genus Thamnophis|reptile genus +genus thelypteris|1 +(noun)|Thelypteris|genus Thelypteris|fern genus +genus theobroma|1 +(noun)|Theobroma|genus Theobroma|dilleniid dicot genus +genus thermobia|1 +(noun)|Thermobia|genus Thermobia|arthropod genus +genus thermopsis|1 +(noun)|Thermopsis|genus Thermopsis|rosid dicot genus +genus thespesia|1 +(noun)|Thespesia|genus Thespesia|dilleniid dicot genus +genus thevetia|1 +(noun)|Thevetia|genus Thevetia|dicot genus|magnoliopsid genus +genus thielavia|1 +(noun)|Thielavia|genus Thielavia|fungus genus +genus thiobacillus|1 +(noun)|genus Thiobacillus|bacteria genus +genus thlaspi|1 +(noun)|Thlaspi|genus Thlaspi|dilleniid dicot genus +genus thomomys|1 +(noun)|Thomomys|genus Thomomys|mammal genus +genus threskiornis|1 +(noun)|Threskiornis|genus Threskiornis|bird genus +genus thrinax|1 +(noun)|Thrinax|genus Thrinax|monocot genus|liliopsid genus +genus thrips|1 +(noun)|genus Thrips|arthropod genus +genus thryothorus|1 +(noun)|Thryothorus|genus Thryothorus|bird genus +genus thuja|1 +(noun)|Thuja|genus Thuja|gymnosperm genus +genus thujopsis|1 +(noun)|Thujopsis|genus Thujopsis|gymnosperm genus +genus thunbergia|1 +(noun)|Thunbergia|genus Thunbergia|asterid dicot genus +genus thunnus|1 +(noun)|Thunnus|genus Thunnus|fish genus +genus thylacinus|1 +(noun)|Thylacinus|genus Thylacinus|mammal genus +genus thylogale|1 +(noun)|Thylogale|genus Thylogale|mammal genus +genus thymus|1 +(noun)|Thymus|genus Thymus|asterid dicot genus +genus thyrsopteris|1 +(noun)|genus Thyrsopteris|fern genus +genus thysanocarpus|1 +(noun)|Thysanocarpus|genus Thysanocarpus|dilleniid dicot genus +genus tiarella|1 +(noun)|Tiarella|genus Tiarella|rosid dicot genus +genus tibicen|1 +(noun)|Tibicen|genus Tibicen|arthropod genus +genus tichodroma|1 +(noun)|Tichodroma|genus Tichodroma|bird genus +genus tilapia|1 +(noun)|Tilapia|genus Tilapia|fish genus +genus tilia|1 +(noun)|Tilia|genus Tilia|dilleniid dicot genus +genus tillandsia|1 +(noun)|Tillandsia|genus Tillandsia|monocot genus|liliopsid genus +genus tilletia|1 +(noun)|Tilletia|genus Tilletia|fungus genus +genus timalia|1 +(noun)|Timalia|genus Timalia|bird genus +genus tinca|1 +(noun)|Tinca|genus Tinca|fish genus +genus tinea|1 +(noun)|Tinea|genus Tinea|arthropod genus +genus tineola|1 +(noun)|Tineola|genus Tineola|arthropod genus +genus tipuana|1 +(noun)|Tipuana|genus Tipuana|rosid dicot genus +genus titanosaurus|1 +(noun)|Titanosaurus|genus Titanosaurus|reptile genus +genus tithonia|1 +(noun)|genus Tithonia|asterid dicot genus +genus todea|1 +(noun)|Todea|genus Todea|fern genus +genus todus|1 +(noun)|Todus|genus Todus|bird genus +genus tofieldia|1 +(noun)|Tofieldia|genus Tofieldia|liliid monocot genus +genus tolmiea|1 +(noun)|Tolmiea|genus Tolmiea|rosid dicot genus +genus tolypeutes|1 +(noun)|Tolypeutes|genus Tolypeutes|mammal genus +genus tomistoma|1 +(noun)|Tomistoma|genus Tomistoma|reptile genus +genus toona|1 +(noun)|Toona|genus Toona|rosid dicot genus +genus torreya|1 +(noun)|Torreya|genus Torreya|gymnosperm genus +genus tortrix|1 +(noun)|genus Tortrix|arthropod genus +genus townsendia|1 +(noun)|Townsendia|genus Townsendia|asterid dicot genus +genus toxicodendron|1 +(noun)|Toxicodendron|genus Toxicodendron|dicot genus|magnoliopsid genus +genus toxostoma|1 +(noun)|Toxostoma|genus Toxostoma|bird genus +genus toxotes|1 +(noun)|Toxotes|genus Toxotes|fish genus +genus trachelospermum|1 +(noun)|Trachelospermum|genus Trachelospermum|dicot genus|magnoliopsid genus +genus trachinotus|1 +(noun)|Trachinotus|genus Trachinotus|fish genus +genus trachipterus|1 +(noun)|Trachipterus|genus Trachipterus|fish genus +genus trachodon|1 +(noun)|genus Trachodon|reptile genus +genus trachurus|1 +(noun)|Trachurus|genus Trachurus|fish genus +genus tradescantia|1 +(noun)|Tradescantia|genus Tradescantia|monocot genus|liliopsid genus +genus tragelaphus|1 +(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus +genus tragopan|1 +(noun)|genus Tragopan|bird genus +genus tragopogon|1 +(noun)|Tragopogon|genus Tragopogon|asterid dicot genus +genus tragulus|1 +(noun)|Tragulus|genus Tragulus|mammal genus +genus trapa|1 +(noun)|Trapa|genus Trapa|dicot genus|magnoliopsid genus +genus trautvetteria|1 +(noun)|Trautvetteria|genus Trautvetteria|magnoliid dicot genus +genus trema|1 +(noun)|Trema|genus Trema|dicot genus|magnoliopsid genus +genus tremella|1 +(noun)|Tremella|genus Tremella|fungus genus +genus treponema|1 +(noun)|genus Treponema|bacteria genus +genus triaenodon|1 +(noun)|Triaenodon|genus Triaenodon|fish genus +genus trialeurodes|1 +(noun)|Trialeurodes|genus Trialeurodes|arthropod genus +genus triatoma|1 +(noun)|Triatoma|genus Triatoma|arthropod genus +genus tribolium|1 +(noun)|Tribolium|genus Tribolium|arthropod genus +genus tribonema|1 +(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus +genus tribulus|1 +(noun)|Tribulus|genus Tribulus|rosid dicot genus +genus triceratops|1 +(noun)|genus Triceratops|reptile genus +genus trichecus|1 +(noun)|Trichechus|genus Trichecus|mammal genus +genus trichoceros|1 +(noun)|Trichoceros|genus Trichoceros|monocot genus|liliopsid genus +genus trichodesmium|1 +(noun)|genus Trichodesmium|bacteria genus +genus trichoglossus|1 +(noun)|Trichoglossus|genus Trichoglossus|bird genus +genus tricholoma|1 +(noun)|Tricholoma|genus Tricholoma|fungus genus +genus trichomanes|1 +(noun)|Trichomanes|genus Trichomanes|fern genus +genus trichomonas|1 +(noun)|genus Trichomonas|protoctist genus +genus trichophaga|1 +(noun)|Trichophaga|genus Trichophaga|arthropod genus +genus trichophyton|1 +(noun)|Trichophyton|genus Trichophyton|fungus genus +genus trichostema|1 +(noun)|Trichostema|genus Trichostema|asterid dicot genus +genus trichostigma|1 +(noun)|Trichostigma|genus Trichostigma|caryophylloid dicot genus +genus trichosurus|1 +(noun)|Trichosurus|genus Trichosurus|mammal genus +genus trichys|1 +(noun)|Trichys|genus Trichys|mammal genus +genus tridacna|1 +(noun)|Tridacna|genus Tridacna|mollusk genus +genus trifolium|1 +(noun)|Trifolium|genus Trifolium|rosid dicot genus +genus triga|1 +(noun)|Triga|genus Triga|fish genus +genus triglochin|1 +(noun)|Triglochin|genus Triglochin|monocot genus|liliopsid genus +genus trigonella|1 +(noun)|Trigonella|genus Trigonella|rosid dicot genus +genus trilisa|1 +(noun)|Trilisa|genus Trilisa|asterid dicot genus +genus trillium|1 +(noun)|genus Trillium|liliid monocot genus +genus trimorphodon|1 +(noun)|Trimorphodon|genus Trimorphodon|reptile genus +genus trinectes|1 +(noun)|Trinectes|genus Trinectes|fish genus +genus tringa|1 +(noun)|Tringa|genus Tringa|bird genus +genus trionyx|1 +(noun)|Trionyx|genus Trionyx|reptile genus +genus triops|1 +(noun)|Triops|genus Triops|arthropod genus +genus triostium|1 +(noun)|Triostium|genus Triostium|asterid dicot genus +genus tripleurospermum|1 +(noun)|Tripleurospermum|genus Tripleurospermum|asterid dicot genus +genus triplochiton|1 +(noun)|Triplochiton|genus Triplochiton|dilleniid dicot genus +genus triticum|1 +(noun)|Triticum|genus Triticum|monocot genus|liliopsid genus +genus triturus|1 +(noun)|Triturus|genus Triturus|amphibian genus +genus trogium|1 +(noun)|Trogium|genus Trogium|arthropod genus +genus troglodytes|1 +(noun)|Troglodytes|genus Troglodytes|bird genus +genus trogon|1 +(noun)|genus Trogon|bird genus +genus trollius|1 +(noun)|Trollius|genus Trollius|magnoliid dicot genus +genus trombicula|1 +(noun)|Trombicula|genus Trombicula|arthropod genus +genus tropaeolum|1 +(noun)|Tropaeolum|genus Tropaeolum|rosid dicot genus +genus tropidoclonion|1 +(noun)|Tropidoclonion|genus Tropidoclonion|reptile genus +genus truncocolumella|1 +(noun)|Truncocolumella|genus Truncocolumella|fungus genus +genus tsuga|1 +(noun)|Tsuga|genus Tsuga|gymnosperm genus +genus tuber|1 +(noun)|Tuber|genus Tuber|fungus genus +genus tubercularia|1 +(noun)|Tubercularia|genus Tubercularia|fungus genus +genus tulestoma|1 +(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus +genus tulipa|1 +(noun)|Tulipa|genus Tulipa|liliid monocot genus +genus tulostoma|1 +(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus +genus tunga|1 +(noun)|Tunga|genus Tunga|arthropod genus +genus tupaia|1 +(noun)|Tupaia|genus Tupaia|mammal genus +genus tupinambis|1 +(noun)|Tupinambis|genus Tupinambis|reptile genus +genus turbatrix|1 +(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus +genus turdus|1 +(noun)|Turdus|genus Turdus|bird genus +genus turnix|1 +(noun)|Turnix|genus Turnix|bird genus +genus turreae|1 +(noun)|genus Turreae|rosid dicot genus +genus turritis|1 +(noun)|Turritis|genus Turritis|dilleniid dicot genus +genus tursiops|1 +(noun)|Tursiops|genus Tursiops|mammal genus +genus tussilago|1 +(noun)|Tussilago|genus Tussilago|asterid dicot genus +genus tylenchus|1 +(noun)|Tylenchus|genus Tylenchus|worm genus +genus tympanuchus|1 +(noun)|Tympanuchus|genus Tympanuchus|bird genus +genus typha|1 +(noun)|Typha|genus Typha|monocot genus|liliopsid genus +genus tyrannosaurus|1 +(noun)|genus Tyrannosaurus|reptile genus +genus tyrannus|1 +(noun)|Tyrannus|genus Tyrannus|bird genus +genus tyto|1 +(noun)|Tyto|genus Tyto|bird genus +genus uca|1 +(noun)|Uca|genus Uca|arthropod genus +genus uintatherium|1 +(noun)|Uintatherium|genus Uintatherium|mammal genus +genus ulex|1 +(noun)|Ulex|genus Ulex|rosid dicot genus +genus ulmus|1 +(noun)|Ulmus|genus Ulmus|dicot genus|magnoliopsid genus +genus ulva|1 +(noun)|Ulva|genus Ulva|protoctist genus +genus uma|1 +(noun)|Uma|genus Uma|reptile genus +genus umbellularia|1 +(noun)|Umbellularia|genus Umbellularia|magnoliid dicot genus +genus umbrina|1 +(noun)|Umbrina|genus Umbrina|fish genus +genus unio|1 +(noun)|Unio|genus Unio|mollusk genus +genus upupa|1 +(noun)|Upupa|genus Upupa|bird genus +genus urginea|1 +(noun)|Urginea|genus Urginea|liliid monocot genus +genus uria|1 +(noun)|Uria|genus Uria|bird genus +genus urocyon|1 +(noun)|Urocyon|genus Urocyon|mammal genus +genus urocystis|1 +(noun)|Urocystis|genus Urocystis|fungus genus +genus urophycis|1 +(noun)|Urophycis|genus Urophycis|fish genus +genus uropsilus|1 +(noun)|Uropsilus|genus Uropsilus|mammal genus +genus urosaurus|1 +(noun)|Urosaurus|genus Urosaurus|reptile genus +genus ursinia|1 +(noun)|genus Ursinia|asterid dicot genus +genus ursus|1 +(noun)|Ursus|genus Ursus|mammal genus +genus urtica|1 +(noun)|Urtica|genus Urtica|dicot genus|magnoliopsid genus +genus usnea|1 +(noun)|Usnea|genus Usnea|fungus genus +genus ustilaginoidea|1 +(noun)|Ustilaginoidea|genus Ustilaginoidea|fungus genus +genus ustilago|1 +(noun)|Ustilago|genus Ustilago|fungus genus +genus uta|1 +(noun)|Uta|genus Uta|reptile genus +genus utahraptor|1 +(noun)|genus Utahraptor|reptile genus +genus utricularia|1 +(noun)|Utricularia|genus Utricularia|plant genus +genus uvularia|1 +(noun)|Uvularia|genus Uvularia|liliid monocot genus +genus vaccaria|1 +(noun)|Vaccaria|genus Vaccaria|caryophylloid dicot genus +genus vaccinium|1 +(noun)|Vaccinium|genus Vaccinium|dilleniid dicot genus +genus valeriana|1 +(noun)|Valeriana|genus Valeriana|asterid dicot genus +genus valerianella|1 +(noun)|Valerianella|genus Valerianella|asterid dicot genus +genus vallisneria|1 +(noun)|Vallisneria|genus Vallisneria|monocot genus|liliopsid genus +genus vanda|1 +(noun)|genus Vanda|monocot genus|liliopsid genus +genus vanellus|1 +(noun)|Vanellus|genus Vanellus|bird genus +genus vanessa|1 +(noun)|Vanessa|genus Vanessa|arthropod genus +genus vangueria|1 +(noun)|Vangueria|genus Vangueria|asterid dicot genus +genus vanilla|1 +(noun)|genus Vanilla|monocot genus|liliopsid genus +genus varanus|1 +(noun)|Varanus|genus Varanus|reptile genus +genus vedalia|1 +(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus +genus velociraptor|1 +(noun)|genus Velociraptor|reptile genus +genus venus|1 +(noun)|Venus|genus Venus|mollusk genus +genus veratrum|1 +(noun)|Veratrum|genus Veratrum|liliid monocot genus +genus verbascum|1 +(noun)|Verbascum|genus Verbascum|asterid dicot genus +genus verbena|1 +(noun)|genus Verbena|asterid dicot genus +genus verbesina|1 +(noun)|Verbesina|genus Verbesina|asterid dicot genus +genus vernonia|1 +(noun)|genus Vernonia|asterid dicot genus +genus veronica|1 +(noun)|genus Veronica|asterid dicot genus +genus verticillium|1 +(noun)|genus Verticillium|fungus genus +genus vesicaria|1 +(noun)|Vesicaria|genus Vesicaria|dilleniid dicot genus +genus vespa|1 +(noun)|Vespa|genus Vespa|arthropod genus +genus vespertilio|1 +(noun)|Vespertilio|genus Vespertilio|mammal genus +genus vespula|1 +(noun)|Vespula|genus Vespula|arthropod genus +genus vibrio|1 +(noun)|genus Vibrio|bacteria genus +genus viburnum|1 +(noun)|Viburnum|genus Viburnum|asterid dicot genus +genus vicia|1 +(noun)|Vicia|genus Vicia|rosid dicot genus +genus vicugna|1 +(noun)|Vicugna|genus Vicugna|mammal genus +genus vidua|1 +(noun)|Vidua|genus Vidua|bird genus +genus vigna|1 +(noun)|Vigna|genus Vigna|rosid dicot genus +genus viminaria|1 +(noun)|Viminaria|genus Viminaria|rosid dicot genus +genus vinca|1 +(noun)|Vinca|genus Vinca|dicot genus|magnoliopsid genus +genus vincetoxicum|1 +(noun)|Vincetoxicum|genus Vincetoxicum|dicot genus|magnoliopsid genus +genus viola|1 +(noun)|Viola|genus Viola|dilleniid dicot genus +genus vipera|1 +(noun)|Vipera|genus Vipera|reptile genus +genus vireo|1 +(noun)|genus Vireo|bird genus +genus virgilia|1 +(noun)|Virgilia|genus Virgilia|rosid dicot genus +genus viscum|1 +(noun)|Viscum|genus Viscum|dilleniid dicot genus +genus vitis|1 +(noun)|Vitis|genus Vitis|dicot genus|magnoliopsid genus +genus vittaria|1 +(noun)|Vittaria|genus Vittaria|fern genus +genus viverra|1 +(noun)|Viverra|genus Viverra|mammal genus +genus viverricula|1 +(noun)|Viverricula|genus Viverricula|mammal genus +genus volvaria|1 +(noun)|Volvaria|genus Volvaria|fungus genus +genus volvariella|1 +(noun)|Volvariella|genus Volvariella|fungus genus +genus volvox|1 +(noun)|Volvox|genus Volvox|protoctist genus +genus vorticella|1 +(noun)|genus Vorticella|protoctist genus +genus vulpes|1 +(noun)|Vulpes|genus Vulpes|mammal genus +genus vultur|1 +(noun)|Vultur|genus Vultur|bird genus +genus weigela|1 +(noun)|genus Weigela|asterid dicot genus +genus welwitchia|1 +(noun)|genus Welwitschia|genus Welwitchia|gymnosperm genus +genus welwitschia|1 +(noun)|genus Welwitschia|genus Welwitchia|gymnosperm genus +genus wintera|1 +(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus +genus wisteria|1 +(noun)|genus Wisteria|rosid dicot genus +genus wolffia|1 +(noun)|Wolffia|genus Wolffia|monocot genus|liliopsid genus +genus wolffiella|1 +(noun)|Wolffiella|genus Wolffiella|monocot genus|liliopsid genus +genus woodsia|1 +(noun)|genus Woodsia|fern genus +genus woodwardia|1 +(noun)|Woodwardia|genus Woodwardia|fern genus +genus wyethia|1 +(noun)|genus Wyethia|asterid dicot genus +genus wynnea|1 +(noun)|Wynnea|genus Wynnea|fungus genus +genus xanthium|1 +(noun)|Xanthium|genus Xanthium|asterid dicot genus +genus xanthomonas|1 +(noun)|Xanthomonas|genus Xanthomonas|bacteria genus +genus xanthorroea|1 +(noun)|Xanthorroea|genus Xanthorroea|liliid monocot genus +genus xanthosoma|1 +(noun)|Xanthosoma|genus Xanthosoma|monocot genus|liliopsid genus +genus xenicus|1 +(noun)|Xenicus|genus Xenicus|bird genus +genus xenopus|1 +(noun)|Xenopus|genus Xenopus|amphibian genus +genus xenorhyncus|1 +(noun)|Xenorhyncus|genus Xenorhyncus|bird genus +genus xenosaurus|1 +(noun)|Xenosaurus|genus Xenosaurus|reptile genus +genus xeranthemum|1 +(noun)|genus Xeranthemum|asterid dicot genus +genus xerobates|1 +(noun)|Xerobates|genus Xerobates|reptile genus +genus xerophyllum|1 +(noun)|Xerophyllum|genus Xerophyllum|liliid monocot genus +genus xiphias|1 +(noun)|Xiphias|genus Xiphias|fish genus +genus xylaria|1 +(noun)|Xylaria|genus Xylaria|fungus genus +genus xylocopa|1 +(noun)|Xylocopa|genus Xylocopa|arthropod genus +genus xylomelum|1 +(noun)|Xylomelum|genus Xylomelum|dicot genus|magnoliopsid genus +genus xylopia|1 +(noun)|Xylopia|genus Xylopia|magnoliid dicot genus +genus xylosma|1 +(noun)|genus Xylosma|dilleniid dicot genus +genus xyphophorus|1 +(noun)|Xyphophorus|genus Xyphophorus|fish genus +genus xyris|1 +(noun)|Xyris|genus Xyris|monocot genus|liliopsid genus +genus yucca|1 +(noun)|genus Yucca|liliid monocot genus +genus zaglossus|1 +(noun)|Zaglossus|genus Zaglossus|mammal genus +genus zalophus|1 +(noun)|Zalophus|genus Zalophus|mammal genus +genus zamia|1 +(noun)|genus Zamia|gymnosperm genus +genus zannichellia|1 +(noun)|Zannichellia|genus Zannichellia|monocot genus|liliopsid genus +genus zantedeschia|1 +(noun)|Zantedeschia|genus Zantedeschia|monocot genus|liliopsid genus +genus zanthoxylum|1 +(noun)|Zanthoxylum|genus Zanthoxylum|rosid dicot genus +genus zapus|1 +(noun)|Zapus|genus Zapus|mammal genus +genus zea|1 +(noun)|Zea|genus Zea|monocot genus|liliopsid genus +genus zenaidura|1 +(noun)|Zenaidura|genus Zenaidura|bird genus +genus zerumbet|1 +(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus +genus zeus|1 +(noun)|Zeus|genus Zeus|fish genus +genus zigadenus|1 +(noun)|Zigadenus|genus Zigadenus|liliid monocot genus +genus zingiber|1 +(noun)|Zingiber|genus Zingiber|monocot genus|liliopsid genus +genus zinjanthropus|1 +(noun)|Zinjanthropus|genus Zinjanthropus|australopithecine +genus zinnia|1 +(noun)|genus Zinnia|asterid dicot genus +genus zizania|1 +(noun)|Zizania|genus Zizania|monocot genus|liliopsid genus +genus ziziphus|1 +(noun)|Ziziphus|genus Ziziphus|dicot genus|magnoliopsid genus +genus zoarces|1 +(noun)|Zoarces|genus Zoarces|fish genus +genus zoisia|1 +(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus|liliopsid genus +genus zonotrichia|1 +(noun)|Zonotrichia|genus Zonotrichia|bird genus +genus zostera|1 +(noun)|Zostera|genus Zostera|monocot genus|liliopsid genus +genus zoysia|1 +(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus|liliopsid genus +genus zygnema|1 +(noun)|Zygnema|genus Zygnema|protoctist genus +genus zygocactus|1 +(noun)|Zygocactus|genus Zygocactus|caryophylloid dicot genus +genus zygophyllum|1 +(noun)|Zygophyllum|genus Zygophyllum|rosid dicot genus +genyonemus|1 +(noun)|Genyonemus|genus Genyonemus|fish genus +genyonemus lineatus|1 +(noun)|white croaker|chenfish|kingfish|Genyonemus lineatus|croaker +geocentric|1 +(adj)|geocentric |Ptolemaic +geocentric parallax|1 +(noun)|diurnal parallax|parallax +geochelone|1 +(noun)|Geochelone|genus Geochelone|reptile genus +geochemistry|1 +(noun)|chemistry|chemical science +geococcyx|1 +(noun)|Geococcyx|genus Geococcyx|bird genus +geococcyx californianus|1 +(noun)|roadrunner|chaparral cock|Geococcyx californianus|cuckoo +geode|1 +(noun)|nodule +geodesic|3 +(adj)|dome +(adj)|geodetic|geodesical|geophysics|geophysical science +(noun)|geodesic line|line +geodesic dome|1 +(noun)|dome +geodesic line|1 +(noun)|geodesic|line +geodesical|1 +(adj)|geodetic|geodesic|geophysics|geophysical science +geodesy|1 +(noun)|geophysics|geophysical science +geodetic|1 +(adj)|geodesic|geodesical|geophysics|geophysical science +geoduck|1 +(noun)|clam +geoffrey chaucer|1 +(noun)|Chaucer|Geoffrey Chaucer|poet +geoffrey of monmouth|1 +(noun)|Geoffrey of Monmouth|chronicler +geoffroea|1 +(noun)|Geoffroea|genus Geoffroea|rosid dicot genus +geoffroea decorticans|1 +(noun)|chanar|chanal|Geoffroea decorticans|shrub|bush +geogia holly|1 +(noun)|Geogia holly|holly +geoglossaceae|1 +(noun)|Geoglossaceae|family Geoglossaceae|fungus family +geoglossum|1 +(noun)|Geoglossum|genus Geoglossum|fungus genus +geographer|1 +(noun)|expert +geographic|2 +(adj)|geographical|earth science +(adj)|geographic |geographical|true +geographic area|1 +(noun)|geographical area|geographical region|geographic region|region +geographic expedition|1 +(noun)|exploration|expedition +geographic point|1 +(noun)|geographical point|point +geographic region|1 +(noun)|geographical area|geographic area|geographical region|region +geographical|2 +(adj)|geographic|earth science +(adj)|geographic |true +geographical area|1 +(noun)|geographic area|geographical region|geographic region|region +geographical mile|1 +(noun)|nautical mile|naut mi|mile|mi|Admiralty mile|nautical linear unit +geographical point|1 +(noun)|geographic point|point +geographical region|1 +(noun)|geographical area|geographic area|geographic region|region +geographical zone|1 +(noun)|zone|geographical area|geographic area|geographical region|geographic region +geographics|1 +(noun)|geography|earth science +geography|1 +(noun)|geographics|earth science +geologic|1 +(adj)|geological|earth science +geologic process|1 +(noun)|geological process|natural process|natural action|action|activity +geologic time|1 +(noun)|geological time|time +geological|1 +(adj)|geologic|earth science +geological dating|1 +(noun)|dating|chemical analysis|qualitative analysis +geological era|1 +(noun)|era|geological time|geologic time +geological fault|1 +(noun)|fault|shift|fracture|break|crack|cleft|crevice|fissure|scissure +geological formation|1 +(noun)|formation|natural object +geological horizon|1 +(noun)|horizon +geological period|1 +(noun)|period|geological time|geologic time +geological phenomenon|1 +(noun)|natural phenomenon +geological process|1 +(noun)|geologic process|natural process|natural action|action|activity +geological time|1 +(noun)|geologic time|time +geologist|1 +(noun)|scientist|man of science +geology|1 +(noun)|earth science +geomancer|1 +(noun)|diviner +geomancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +geometer|1 +(noun)|geometrician|mathematician +geometric|2 +(adj)|geometrical|nonrepresentational +(adj)|geometrical|pure mathematics +geometric mean|1 +(noun)|mean|mean value +geometric pace|1 +(noun)|linear unit +geometric progression|1 +(noun)|progression|patterned advance +geometric series|1 +(noun)|series +geometrical|2 +(adj)|geometric|pure mathematics +(adj)|geometric|nonrepresentational +geometrical irregularity|1 +(noun)|irregularity|asymmetry|imbalance +geometrical regularity|1 +(noun)|regularity|symmetry|symmetricalness|correspondence|balance +geometrician|1 +(noun)|geometer|mathematician +geometrid|1 +(noun)|geometrid moth|moth +geometrid moth|1 +(noun)|geometrid|moth +geometridae|1 +(noun)|Geometridae|family Geometridae|arthropod family +geometry|1 +(noun)|pure mathematics +geometry teacher|1 +(noun)|math teacher|mathematics teacher +geomorphologic|1 +(adj)|geomorphological|morphologic|morphological|structural|geophysics|geophysical science +geomorphological|1 +(adj)|geomorphologic|morphologic|morphological|structural|geophysics|geophysical science +geomorphology|1 +(noun)|morphology|geophysics|geophysical science +geomyidae|1 +(noun)|Geomyidae|family Geomyidae|mammal family +geomys|1 +(noun)|Geomys|genus Geomys|mammal genus +geomys bursarius|1 +(noun)|plains pocket gopher|Geomys bursarius|gopher|pocket gopher|pouched rat +geomys pinetis|1 +(noun)|southeastern pocket gopher|Geomys pinetis|gopher|pocket gopher|pouched rat +geophagia|1 +(noun)|geophagy|pica|eating|feeding +geophagy|1 +(noun)|geophagia|pica|eating|feeding +geophilidae|1 +(noun)|Geophilidae|family Geophilidae|arthropod family +geophilomorpha|1 +(noun)|Geophilomorpha|order Geophilomorpha|animal order +geophilus|1 +(noun)|Geophilus|genus Geophilus|arthropod genus +geophysical|1 +(adj)|geology +geophysical science|1 +(noun)|geophysics|geology +geophysicist|1 +(noun)|geologist +geophysics|1 +(noun)|geophysical science|geology +geophyte|1 +(noun)|vascular plant|tracheophyte +geophytic|1 +(adj)|vascular plant|tracheophyte +geopolitical|1 +(adj)|politics|political science|government +geopolitics|1 +(noun)|politics|political science|government +georg friedrich bernhard riemann|1 +(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician +georg friedrich handel|1 +(noun)|Handel|George Frederic Handel|Georg Friedrich Handel|composer +georg meissner|1 +(noun)|Meissner|Georg Meissner|anatomist +georg philipp telemann|1 +(noun)|Telemann|Georg Philipp Telemann|composer +georg simon ohm|1 +(noun)|Ohm|Georg Simon Ohm|physicist +georg wilhelm friedrich hegel|1 +(noun)|Hegel|Georg Wilhelm Friedrich Hegel|philosopher +georg wilhelm steller|1 +(noun)|Steller|Georg Wilhelm Steller|naturalist|natural scientist +george|1 +(noun)|George|Saint George|St. George|martyr|patron saint +george armstrong custer|1 +(noun)|Custer|George Armstrong Custer|General Custer|general|full general +george balanchine|1 +(noun)|Balanchine|George Balanchine|dancer|professional dancer|choreographer +george beadle|1 +(noun)|Beadle|George Beadle|George Wells Beadle|biologist|life scientist +george berkeley|1 +(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher|bishop +george bernard shaw|1 +(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer|author|dramatist|playwright +george boole|1 +(noun)|Boole|George Boole|mathematician +george bryan brummell|1 +(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +george burns|1 +(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian|comedian|comic +george bush|2 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States|United States President|President|Chief Executive +george c. scott|1 +(noun)|Scott|George C. Scott|actor|histrion|player|thespian|role player +george catlett marshall|1 +(noun)|Marshall|George Marshall|George Catlett Marshall|general|full general|statesman|solon|national leader +george charles hevesy de hevesy|1 +(noun)|Hevesy|George Charles Hevesy de Hevesy|chemist +george dewey|1 +(noun)|Dewey|George Dewey|Admiral Dewey|naval officer +george dibdin-pitt|2 +(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist|playwright +(noun)| +george dibdin pitt|1 +(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist|playwright +george du maurier|1 +(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer|author|illustrator +george eastman|1 +(noun)|Eastman|George Eastman|industrialist|inventor|discoverer|artificer +george edward moore|1 +(noun)|Moore|G. E. Moore|George Edward Moore|philosopher +george edward pickett|1 +(noun)|Pickett|George Edward Pickett|general|full general +george eliot|1 +(noun)|Eliot|George Eliot|Mary Ann Evans|writer|author +george ellery hale|1 +(noun)|Hale|George Ellery Hale|astronomer|uranologist|stargazer +george enescu|1 +(noun)|Enesco|Georges Enesco|George Enescu|violinist|fiddler|composer +george fox|1 +(noun)|Fox|George Fox|religionist|religious person +george frederic handel|1 +(noun)|Handel|George Frederic Handel|Georg Friedrich Handel|composer +george gamow|1 +(noun)|Gamow|George Gamow|physicist +george gershwin|1 +(noun)|Gershwin|George Gershwin|composer +george gilbert aime murphy|1 +(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist|classical scholar +george gordon meade|1 +(noun)|Meade|George Gordon Meade|general|full general +george guess|1 +(noun)|Sequoya|Sequoyah|George Guess|Indian chief|Indian chieftain|Cherokee +george h.w. bush|1 +(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States|United States President|President|Chief Executive +george harrison|1 +(noun)|Harrison|George Harrison|rock star +george herbert hitchings|1 +(noun)|Hitchings|George Herbert Hitchings|biochemist +george herbert mead|1 +(noun)|Mead|George Herbert Mead|philosopher +george herbert walker bush|1 +(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States|United States President|President|Chief Executive +george herman ruth|1 +(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer|baseball player +george hubert wilkins|1 +(noun)|Wilkins|George Hubert Wilkins|explorer|adventurer +george i|1 +(noun)|George I|King of England|King of Great Britain +george ii|1 +(noun)|George II|King of England|King of Great Britain +george iii|1 +(noun)|George III|King of England|King of Great Britain +george iv|1 +(noun)|George IV|King of England|King of Great Britain +george louis palmella busson du maurier|1 +(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer|author|illustrator +george lucas|1 +(noun)|Lucas|George Lucas|film maker|filmmaker|film producer|movie maker|screenwriter|film writer +george m. cohan|1 +(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter|songster|ballad maker +george macaulay trevelyan|1 +(noun)|Trevelyan|George Macaulay Trevelyan|historian|historiographer +george marshall|1 +(noun)|Marshall|George Marshall|George Catlett Marshall|general|full general|statesman|solon|national leader +george mason|1 +(noun)|Mason|George Mason|American Revolutionary leader +george meany|1 +(noun)|Meany|George Meany|labor leader +george meredith|1 +(noun)|Meredith|George Meredith|novelist|poet +george michael cohan|1 +(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter|songster|ballad maker +george orson welles|1 +(noun)|Welles|Orson Welles|George Orson Welles|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +george orwell|1 +(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer|author +george otto trevelyan|1 +(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian|historiographer +george paget thomson|1 +(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist +george percy aldridge grainger|1 +(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer +george pitt|1 +(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist|playwright +george s. kaufman|1 +(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist|playwright +george sand|1 +(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer|author +george segal|1 +(noun)|Segal|George Segal|sculptor|sculpturer|carver|statue maker +george simon kaufman|1 +(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist|playwright +george stephenson|1 +(noun)|Stephenson|George Stephenson|businessman|man of affairs +george stevens|1 +(noun)|Stevens|George Stevens|film maker|filmmaker|film producer|movie maker +george szell|1 +(noun)|Szell|George Szell|conductor|music director|director +george town|3 +(noun)|George Town|capital +(noun)|Georgetown|residential district|residential area|community +(noun)|Georgetown|Stabroek|national capital|port +george v|1 +(noun)|George V|King of England|King of Great Britain +george vancouver|1 +(noun)|Vancouver|George Vancouver|navigator +george vi|1 +(noun)|George VI|King of England|King of Great Britain +george w. bush|1 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +george walker bush|1 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +george washington|1 +(noun)|Washington|George Washington|President Washington|general|full general|President of the United States|United States President|President|Chief Executive +george washington bridge|1 +(noun)|George Washington Bridge|suspension bridge +george washington carver|1 +(noun)|Carver|George Washington Carver|botanist|phytologist|plant scientist|chemist +george washington goethals|1 +(noun)|Goethals|George Washington Goethals|engineer|applied scientist|technologist +george wells beadle|1 +(noun)|Beadle|George Beadle|George Wells Beadle|biologist|life scientist +george westinghouse|1 +(noun)|Westinghouse|George Westinghouse|inventor|discoverer|artificer +george william russell|1 +(noun)|Russell|George William Russell|A.E.|writer|author +georges bizet|1 +(noun)|Bizet|Georges Bizet|composer +georges braque|1 +(noun)|Braque|Georges Braque|painter +georges clemenceau|1 +(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman|solon|national leader +georges cuvier|1 +(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist|natural scientist +georges de la tour|1 +(noun)|La Tour|Georges de La Tour|old master +georges enesco|1 +(noun)|Enesco|Georges Enesco|George Enescu|violinist|fiddler|composer +georges eugene benjamin clemenceau|1 +(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman|solon|national leader +georges gilles de la tourette|1 +(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist|brain doctor +georges henri lemaitre|1 +(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist +georges jacques danton|1 +(noun)|Danton|Georges Jacques Danton|revolutionist|revolutionary|subversive|subverter +georges joseph christian simenon|1 +(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer|author +georges leopold chretien frederic dagobert cuvier|1 +(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist|natural scientist +georges pierre seurat|1 +(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter +georges seurat|1 +(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter +georges simenon|1 +(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer|author +georgetown|2 +(noun)|Georgetown|residential district|residential area|community +(noun)|Georgetown|Stabroek|national capital|port +georgette|1 +(noun)|fabric|cloth|material|textile +georgi konstantinovich zhukov|1 +(noun)|Zhukov|Georgi Konstantinovich Zhukov|general|full general +georgia|3 +(noun)|Georgia|Empire State of the South|Peach State|GA|American state +(noun)|Georgia|Colony +(noun)|Georgia|Sakartvelo|Asian country|Asian nation +georgia bark|1 +(noun)|fever tree|Georgia bark|bitter-bark|Pinckneya pubens|shrub|bush +georgia home boy|1 +(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +georgia okeeffe|1 +(noun)|O'Keeffe|Georgia Okeeffe|painter +georgia pine|1 +(noun)|longleaf pine|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine +georgian|7 +(adj)|Georgian|Colony +(adj)|Georgian|Asian country|Asian nation +(adj)|Georgian|American state +(adj)|Georgian|martyr|patron saint +(noun)|Georgian|American +(noun)|Georgian|Russian +(noun)|Georgian|Caucasian|Caucasian language +georgian monetary unit|1 +(noun)|Georgian monetary unit|monetary unit +georgiana barrymore|1 +(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress +georgiana emma barrymore|1 +(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress +geosphere|1 +(noun)|lithosphere|layer +geostationary|1 +(adj)|fixed +geostationary orbit|1 +(noun)|geosynchronous orbit +geostrategic|1 +(adj)|geopolitics +geostrategy|1 +(noun)|geopolitics +geosynchronous|1 +(adj)|fixed +geosynchronous orbit|1 +(noun)|orbit|celestial orbit +geothermal|1 +(adj)|geothermic|energy +geothermal energy|1 +(noun)|heat|heat energy +geothermic|1 +(adj)|geothermal|energy +geothlypis|1 +(noun)|Geothlypis|genus Geothlypis|bird genus +geothlypis trichas|1 +(noun)|common yellowthroat|Maryland yellowthroat|Geothlypis trichas|yellowthroat +geotropism|1 +(noun)|tropism +geraint|1 +(noun)|Geraint|Sir Geraint|knight +gerald ford|1 +(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States|United States President|President|Chief Executive +gerald r. ford|1 +(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States|United States President|President|Chief Executive +gerald rudolph ford|1 +(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States|United States President|President|Chief Executive +geraniaceae|1 +(noun)|Geraniaceae|family Geraniaceae|geranium family|rosid dicot family +geraniales|1 +(noun)|Geraniales|order Geraniales|plant order +geranium|1 +(noun)|herb|herbaceous plant +geranium family|1 +(noun)|Geraniaceae|family Geraniaceae|rosid dicot family +geranium maculatum|1 +(noun)|wild geranium|spotted cranesbill|Geranium maculatum|cranesbill|crane's bill +geranium molle|1 +(noun)|dove's foot geranium|Geranium molle|cranesbill|crane's bill +geranium pratense|1 +(noun)|meadow cranesbill|Geranium pratense|cranesbill|crane's bill +geranium richardsonii|1 +(noun)|Richardson's geranium|Geranium richardsonii|cranesbill|crane's bill +geranium robertianum|1 +(noun)|herb robert|herbs robert|herb roberts|Geranium robertianum|cranesbill|crane's bill +geranium viscosissimum|1 +(noun)|sticky geranium|Geranium viscosissimum|cranesbill|crane's bill +gerard depardieu|1 +(noun)|Depardieu|Gerard Depardieu|actor|histrion|player|thespian|role player +gerard manley hopkins|1 +(noun)|Hopkins|Gerard Manley Hopkins|poet +gerardia|1 +(noun)|flower|genus Gerardia +gerardia pedicularia|1 +(noun)|false foxglove|Aureolaria pedicularia|Gerardia pedicularia|herb|herbaceous plant +gerardia virginica|1 +(noun)|false foxglove|Aureolaria virginica|Gerardia virginica|herb|herbaceous plant +gerardus mercator|1 +(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer +gerbera|1 +(noun)|Gerbera|genus Gerbera|asterid dicot genus +gerbera jamesonii|1 +(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy +gerbil|1 +(noun)|gerbille|rodent|gnawer|gnawing animal +gerbille|1 +(noun)|gerbil|rodent|gnawer|gnawing animal +gerbillinae|1 +(noun)|Gerbillinae|subfamily Gerbillinae|mammal family +gerbillus|1 +(noun)|Gerbillus|genus Gerbillus|mammal genus +gerea|1 +(noun)|Gerea|genus Gerea|asterid dicot genus +gerea canescens|1 +(noun)|desert sunflower|Gerea canescens|wildflower|wild flower +gerenuk|1 +(noun)|Litocranius walleri|antelope +gerfalcon|1 +(noun)|gyrfalcon|Falco rusticolus|falcon +gerhard gerhards|1 +(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian|theologist|theologizer|theologiser|humanist +gerhard herzberg|1 +(noun)|Herzberg|Gerhard Herzberg|nuclear physicist +gerhard kremer|1 +(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer +geriatric|2 +(adj)|age group|age bracket|cohort +(adj)|gerontological|medicine|medical specialty +geriatrician|1 +(noun)|gerontologist|specialist|medical specialist +geriatrics|1 +(noun)|gerontology|medicine|medical specialty +germ|3 +(noun)|source|seed|inspiration +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|microbe|bug|microorganism +germ cell|1 +(noun)|reproductive cell|sex cell|cell +germ layer|1 +(noun)|embryonic tissue +germ plasm|1 +(noun)|plasm|protoplasm|living substance +germ theory|1 +(noun)|scientific theory +germ warfare|1 +(noun)|bacteriological warfare|biological warfare|BW|biological attack|biologic attack|bioattack +german|4 +(adj)|German|European country|European nation +(adj)|German|Germanic|Teutonic|European country|European nation +(noun)|German|European +(noun)|German|High German|German language|West Germanic|West Germanic language +german-american|1 +(adj)|German-American|American +german-speaking|1 +(adj)|German-speaking|communicative |communicatory +german american|1 +(noun)|German American|American +german bee|1 +(noun)|black bee|German bee|honeybee|Apis mellifera +german capital|1 +(noun)|Berlin|German capital|national capital +german chamomile|1 +(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb|herbaceous plant +german cockroach|1 +(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach|roach +german democratic republic|1 +(noun)|East Germany|German Democratic Republic|European country|European nation +german iris|2 +(noun)|German iris|Iris kochii|bearded iris +(noun)|German iris|Iris germanica|bearded iris +german ivy|1 +(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine +german language|1 +(noun)|German|High German|German language|West Germanic|West Germanic language +german lesson|1 +(noun)|German lesson|language lesson +german luftwaffe|1 +(noun)|Luftwaffe|German Luftwaffe|air force|airforce +german mark|1 +(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit +german measles|1 +(noun)|German measles|rubella|three-day measles|epidemic roseola|measles|rubeola|morbilli +german millet|1 +(noun)|German millet|golden wonder millet|Setaria italica stramineofructa|foxtail millet|Italian millet|Hungarian grass|Setaria italica +german monetary unit|1 +(noun)|German monetary unit|monetary unit +german nazi|1 +(noun)|Nazi|German Nazi|fascist +german pancake|1 +(noun)|pfannkuchen|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +german police dog|1 +(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog|sheepdog|sheep dog +german rampion|1 +(noun)|common evening primrose|German rampion|Oenothera biennis|evening primrose +german shepherd|1 +(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog|sheepdog|sheep dog +german shepherd dog|1 +(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog|sheepdog|sheep dog +german short-haired pointer|1 +(noun)|German short-haired pointer|pointer|Spanish pointer +german silver|1 +(noun)|nickel silver|German silver|alloy|metal +german tamarisk|1 +(noun)|false tamarisk|German tamarisk|Myricaria germanica|shrub|bush +germander|1 +(noun)|subshrub|suffrutex +germander speedwell|1 +(noun)|bird's eye|Veronica chamaedrys|veronica|speedwell +germane|1 +(adj)|related|relevant +germaneness|1 +(noun)|applicability|pertinence|pertinency +germanic|4 +(adj)|Germanic|Indo-European|Indo-European language|Indo-Hittite +(adj)|Teutonic|Germanic|European +(adj)|German|Germanic|Teutonic|European country|European nation +(noun)|Germanic|Germanic language|Indo-European|Indo-European language|Indo-Hittite +germanic language|1 +(noun)|Germanic|Germanic language|Indo-European|Indo-European language|Indo-Hittite +germanism|1 +(noun)|Germanism|custom|usage|usance +germanite|1 +(noun)|mineral +germanium|1 +(noun)|Ge|atomic number 32|chemical element|element|semiconductor|semiconducting material +germany|1 +(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country|European nation +germfree|1 +(adj)|germfree |axenic|antiseptic|sterilized|sterilised|antiseptic +germicidal|1 +(adj)|bactericidal|disinfectant|antiseptic +germicide|1 +(noun)|disinfectant|antimicrobic|antimicrobial|agent +germinal|2 +(adj)|originative|seminal|original +(noun)|Germinal|Revolutionary calendar month +germinal area|1 +(noun)|blastoderm|germinal disc|blastodisc|layer +germinal disc|1 +(noun)|blastoderm|blastodisc|germinal area|layer +germinate|3 +(verb)|shoot|spud|pullulate|bourgeon|burgeon forth|sprout|grow +(verb)|evolve|develop|create by mental act|create mentally +(verb)|grow +germination|2 +(noun)|sprouting|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|origin|origination|inception +germy|1 +(adj)|germy |unsterilized|unsterilised|septic +geronimo|1 +(noun)|Geronimo|Indian chief|Indian chieftain|Apache +gerontological|1 +(adj)|geriatric|medicine|medical specialty +gerontologist|1 +(noun)|geriatrician|specialist|medical specialist +gerontology|1 +(noun)|geriatrics|medicine|medical specialty +gerreidae|1 +(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family +gerres|1 +(noun)|Gerres|genus Gerres|fish genus +gerres cinereus|1 +(noun)|yellowfin mojarra|Gerres cinereus|mojarra +gerrhonotus|1 +(noun)|Gerrhonotus|genus Gerrhonotus|reptile genus +gerridae|2 +(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family +(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family +gerrididae|1 +(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family +gerris|1 +(noun)|Gerris|genus Gerris|arthropod genus +gerris lacustris|1 +(noun)|common pond-skater|Gerris lacustris|water strider|pond-skater|water skater +gerrymander|2 +(noun)|cheat|cheating +(verb)|separate|divide|part +gershwin|2 +(noun)|Gershwin|Ira Gershwin|lyricist +(noun)|Gershwin|George Gershwin|composer +gertrude caroline ederle|1 +(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer +gertrude ederle|1 +(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer +gertrude lawrence|1 +(noun)|Lawrence|Gertrude Lawrence|actress +gertrude stein|1 +(noun)|Stein|Gertrude Stein|writer|author +gerund|1 +(noun)|verbal noun|deverbal noun +gerundial|1 +(adj)|verbal noun|deverbal noun +geryon|1 +(noun)|Geryon|mythical monster|mythical creature +gesell|1 +(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist +gesner|1 +(noun)|Gesner|Konrad von Gesner|naturalist|natural scientist +gesneria|1 +(noun)|herb|herbaceous plant +gesneria family|1 +(noun)|Gesneriaceae|family Gesneriaceae|asterid dicot family +gesneriaceae|1 +(noun)|Gesneriaceae|family Gesneriaceae|gesneria family|asterid dicot family +gesneriad|1 +(noun)|woody plant|ligneous plant +gestalt|1 +(noun)|form|shape|pattern +gestalt law of organization|1 +(noun)|Gestalt law of organization|Gestalt principle of organization|principle|rule +gestalt principle of organization|1 +(noun)|Gestalt law of organization|Gestalt principle of organization|principle|rule +gestalt psychology|1 +(noun)|Gestalt psychology|configurationism|scientific theory +gestapo|1 +(noun)|Gestapo|secret police +gestate|2 +(verb)|conceive|conceptualize|conceptualise|create by mental act|create mentally +(verb)|have a bun in the oven|bear|carry|expect|give birth|deliver|bear|birth|have +gestation|3 +(noun)|gestation period|biological time +(noun)|pregnancy|maternity|physiological state|physiological condition +(noun)|construction|mental synthesis +gestation period|1 +(noun)|gestation|biological time +gestational|1 +(adj)|physiological state|physiological condition +gestational age|1 +(noun)|fetal age|fertilization age|age +gesticulate|1 +(verb)|gesture|motion|communicate|intercommunicate +gesticulating|1 +(adj)|communicative |communicatory +gesticulation|1 +(noun)|gesture|motion +gestural|2 +(adj)|sign|signed|sign-language|communicative |communicatory +(adj)|nonverbal|communicative |communicatory +gesture|4 +(noun)|motion|movement|move|motility +(noun)|motion|visual communication +(noun)|indication|indicant +(verb)|gesticulate|motion|communicate|intercommunicate +get|35 +(verb)|acquire +(verb)|become|go|change state|turn|get on|get along|get over|get ahead +(verb)|let|have|make +(verb)|receive|find|obtain|incur|change +(verb)|arrive|come +(verb)|bring|convey|fetch|transmit|transfer|transport|channel|channelize|channelise +(verb)|experience|receive|have|undergo +(verb)|pay back|pay off|fix|get even|get back +(verb)|have|make|score|hit|tally|rack up +(verb)|induce|stimulate|cause|have|make +(verb)|catch|capture|seize|prehend|clutch +(verb)|grow|develop|produce|acquire|change +(verb)|contract|take|sicken|come down +(verb)|communicate|intercommunicate +(verb)|make|change|alter|modify +(verb)|drive|aim|mean|intend +(verb)|catch|understand +(verb)|catch|arrest|attract|pull|pull in|draw|draw in +(verb)|catch|hit +(verb)|acquire +(verb)|buy|purchase +(verb)|catch|hear +(verb)|catch|hurt|ache|suffer +(verb)|receive +(verb)|scram|buzz off|fuck off|bugger off|leave|go forth|go away +(verb)|catch +(verb)|get under one's skin|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|touch|stir +(verb)|catch|reproduce +(verb)|draw|effect|effectuate|bring about|set up +(verb)|destroy|ruin +(verb)|perplex|vex|stick|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|get down|begin|start out|start|set about|set out|commence +(verb)|suffer|sustain|have|experience|receive|have|undergo +(verb)|beget|engender|father|mother|sire|generate|bring forth|make|create +get-at-able|2 +(adj)|come-at-able|getatable|accessible +(adj)| +get-go|1 +(noun)|beginning|commencement|first|outset|start|kickoff|starting time|showtime|offset|point|point in time +get-up-and-go|1 +(noun)|energy|push|drive +get-well card|1 +(noun)|card +get a line|1 +(verb)|learn|hear|get word|get wind|pick up|find out|discover|see +get a load|1 +(verb)|take a look|have a look|look +get a look|1 +(verb)|catch a glimpse|see +get a noseful|1 +(verb)|get a whiff|smell +get a whiff|1 +(verb)|get a noseful|smell +get about|1 +(verb)|get around|travel|go|move|locomote +get across|3 +(verb)|put over|communicate|pass on|pass|put across +(verb)|click|get through|dawn|come home|sink in|penetrate|fall into place +(verb)|traverse|track|cover|cross|pass over|get over|cut through|cut across|pass|go through|go across +get ahead|2 +(verb)|gain|advance|win|pull ahead|make headway|gain ground +(verb)|boom|prosper|thrive|flourish|expand|grow +get along|3 +(verb)|do|fare|make out|come|proceed|go +(verb)|get along with|get on with|get on|relate +(verb)|progress|come on|come along|advance|get on|shape up|develop +get along with|1 +(verb)|get on with|get on|get along|relate +get around|4 +(verb)|break|get out +(verb)|bypass|short-circuit|go around|avoid +(verb)|swing|socialize|socialise +(verb)|get about|travel|go|move|locomote +get around to|1 +(verb)|act|move +get at|3 +(verb)|access|reach|make|attain|hit|arrive at|gain +(verb)|influence|act upon|work +(verb)|annoy|rag|get to|bother|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease +get away|3 +(verb)|escape|break loose|flee|fly|take flight +(verb)|get off|get by|get out|escape|avoid +(verb)|escape|escape|break loose +get back|4 +(verb)|return|go back|come back|travel|go|move|locomote +(verb)|win back|get|acquire +(verb)|get even|revenge|avenge|retaliate +(verb)|settle|fight|struggle +get behind|1 +(verb)|drag|trail|hang back|drop behind|lag|dawdle|fall back|fall behind +get by|3 +(verb)|cope|make out|make do|contend|grapple|deal|manage|act|move +(verb)|pass|overtake|overhaul +(verb)|get off|get away|get out|escape|avoid +get cracking|1 +(verb)|bestir oneself|get going|get moving|get weaving|get started|get rolling|get down|begin|get|start out|start|set about|set out|commence +get down|7 +(verb)|move +(verb)|lower|take down|let down|bring down|move|displace +(verb)|unhorse|dismount|light|get off|descend|fall|go down|come down +(verb)|swallow|consume|ingest|take in|take|have +(verb)|depress|deject|cast down|dismay|dispirit|demoralize|demoralise|discourage +(verb)|write down|set down|put down|write +(verb)|begin|get|start out|start|set about|set out|commence +get dressed|1 +(verb)|dress|change +get even|2 +(verb)|equalize|equalise|score|hit|tally|rack up +(verb)|get back|revenge|avenge|retaliate +get going|2 +(verb)|start|go +(verb)|get cracking|bestir oneself|get moving|get weaving|get started|get rolling|get down|begin|get|start out|start|set about|set out|commence +get hitched with|1 +(verb)|marry|get married|wed|conjoin|hook up with|espouse|unite|unify +get hold|1 +(verb)|line up|come up|find|get|acquire +get hold of|3 +(verb)|take +(verb)|reach|get through|contact|communicate|intercommunicate +(verb)|seize|clutch|overwhelm|overpower|sweep over|whelm|overcome|overtake +get in|5 +(verb)|enter|come in|get into|go into|go in|move into +(verb)|arrive|make it|go far|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|hand over|fork over|fork out|fork up|turn in|deliver|render|pass|hand|reach|pass on|turn over|give +(verb)|get into|obtain +(verb)|pull in|move in|draw in|arrive|get|come +get in touch|1 +(verb)|touch base|connect|interact +get into|5 +(verb)|tangle with|change state|turn +(verb)|enter|come in|get in|go into|go in|move into +(verb)|get in|obtain +(verb)|familiarize|familiarise|acquaint +(verb)|wear|put on|don|assume|dress|get dressed +get it|1 +(verb)|catch on|get wise|get onto|tumble|latch on|cotton on|twig|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +get it on|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|bonk|copulate|mate|pair|couple +get laid|1 +(verb)|roll in the hay|love|make out|make love|sleep with|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +get married|1 +(verb)|marry|wed|conjoin|hook up with|get hitched with|espouse|unite|unify +get moving|1 +(verb)|get cracking|bestir oneself|get going|get weaving|get started|get rolling|get down|begin|get|start out|start|set about|set out|commence +get off|9 +(verb)|exit|go out|get out|leave +(verb)|send|send off|transfer +(verb)|get away|get by|get out|escape|avoid +(verb)|love|enjoy +(verb)|unhorse|dismount|light|get down|descend|fall|go down|come down +(verb)|hop out|exit|go out|get out|leave +(verb)|mail|send|send out +(verb)|trip|trip out|turn on +(verb)|express|verbalize|verbalise|utter|give tongue to +get off the ground|1 +(verb)|take off|start|go|get going +get on|7 +(verb)|get along with|get on with|get along|relate +(verb)|board|enter|come in|get into|get in|go into|go in|move into +(verb)|hop on|mount|mount up|jump on|climb on|bestride|move +(verb)|approach|come near +(verb)|be on|air +(verb)|progress|come on|come along|advance|get along|shape up|develop +(verb)|senesce|age|mature|maturate|develop +get on with|1 +(verb)|get along with|get on|get along|relate +get one's lumps|1 +(verb)|take one's lumps|pay +get onto|1 +(verb)|catch on|get wise|tumble|latch on|cotton on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +get out|7 +(verb)|exit|go out|leave|move +(verb)|bring out|unpack|take out +(verb)|pull out|leave|go forth|go away +(verb)|state|say|tell +(verb)|draw|pull|pull out|take out|remove|take|take away|withdraw +(verb)|break|get around +(verb)|get off|get away|get by|escape|avoid +get over|4 +(verb)|traverse|track|cover|cross|pass over|get across|cut through|cut across|pass|go through|go across +(verb)|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|get well|bounce back|better|improve|ameliorate|meliorate +(verb)|overcome|subdue|surmount|master|get the better of|overcome|defeat +get rid of|3 +(verb)|remove +(verb)|eliminate|do away with|destroy|destruct +(verb)|abolish +get rolling|1 +(verb)|get cracking|bestir oneself|get going|get moving|get weaving|get started|get down|begin|get|start out|start|set about|set out|commence +get started|1 +(verb)|get cracking|bestir oneself|get going|get moving|get weaving|get rolling|get down|begin|get|start out|start|set about|set out|commence +get stranded|1 +(verb)|run aground|grind to a halt|get stuck|bog down|mire +get stuck|1 +(verb)|grind to a halt|bog down|mire|stand still +get the best|1 +(verb)|have the best|overcome|get the better of|overcome|defeat +get the better of|1 +(verb)|overcome|defeat +get the goods|1 +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +get the hang|1 +(verb)|master|know +get the jump|1 +(verb)|beat|beat out|crush|shell|trounce|vanquish +get the picture|1 +(verb)|comprehend|savvy|dig|grasp|compass|apprehend|understand +get through|5 +(verb)|wrap up|finish off|mop up|polish off|clear up|finish up|complete|finish +(verb)|while away|spend|pass +(verb)|come through|reach|make|attain|hit|arrive at|gain +(verb)|reach|get hold of|contact|communicate|intercommunicate +(verb)|click|dawn|come home|get across|sink in|penetrate|fall into place +get to|3 +(verb)|reach|make|progress to|achieve|accomplish|attain|reach +(verb)|get down|begin|get|start out|start|set about|set out|commence +(verb)|annoy|rag|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease +get to grips|1 +(verb)|come to grips|manage|deal|care|handle +get together|5 +(noun)|meeting|social gathering|social affair +(verb)|assemble|gather +(verb)|meet +(verb)|collaborate|join forces|cooperate|work +(verb)|join|fall in +get under one's skin|1 +(verb)|get|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +get up|8 +(verb)|arise|rise|uprise|stand up|change posture +(verb)|turn out|arise|uprise|rise +(verb)|raise|lift|elevate|bring up|move|displace +(verb)|raise|lift|elevate|bring up +(verb)|work up|grow|develop|produce|get|acquire +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|rig out|tog up|tog out|overdress|dress|get dressed +(verb)|organize|organise|prepare|devise|machinate|initiate|pioneer +(verb)|cram|grind away|drum|bone up|swot|mug up|swot up|bone|study|hit the books +get weaving|1 +(verb)|get cracking|bestir oneself|get going|get moving|get started|get rolling|get down|begin|get|start out|start|set about|set out|commence +get well|1 +(verb)|get over|bounce back|better|improve|ameliorate|meliorate +get wind|1 +(verb)|learn|hear|get word|pick up|find out|get a line|discover|see +get wise|1 +(verb)|catch on|get onto|tumble|latch on|cotton on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +get word|1 +(verb)|learn|hear|get wind|pick up|find out|get a line|discover|see +get worse|1 +(verb)|relapse|change state|turn +geta|1 +(noun)|clog|patten|sabot|footwear|footgear +getable|2 +(adj)|attainable|come-at-able|gettable|possible +(adj)|gettable|obtainable|procurable|available +getatable|1 +(adj)|come-at-able|get-at-able|accessible +getaway|2 +(noun)|pickup|acceleration +(noun)|lam|escape|flight +gettable|2 +(adj)|attainable|come-at-able|getable|possible +(adj)|getable|obtainable|procurable|available +getting|1 +(noun)|acquiring|deed|feat|effort|exploit +getting even|1 +(noun)|return|paying back|group action +gettysburg|2 +(noun)|Gettysburg|town +(noun)|Gettysburg|Battle of Gettysburg|pitched battle +gettysburg address|1 +(noun)|Gettysburg Address|address|speech +getulio dornelles vargas|1 +(noun)|Vargas|Getulio Dornelles Vargas|statesman|solon|national leader +getup|1 +(noun)|outfit|rig|turnout|attire|garb|dress +geum|1 +(noun)|Geum|genus Geum|rosid dicot genus +geum alleppicum strictum|1 +(noun)|yellow avens|Geum alleppicum strictum|Geum strictum|avens +geum canadense|1 +(noun)|bennet|white avens|Geum canadense|avens +geum macrophyllum|1 +(noun)|yellow avens|Geum macrophyllum|avens +geum rivale|1 +(noun)|water avens|Indian chocolate|purple avens|chocolate root|Geum rivale|avens +geum strictum|1 +(noun)|yellow avens|Geum alleppicum strictum|Geum strictum|avens +geum triflorum|1 +(noun)|prairie smoke|purple avens|Geum triflorum|avens +geum urbanum|1 +(noun)|herb bennet|cloveroot|clover-root|wood avens|Geum urbanum|avens +geum virginianum|1 +(noun)|bennet|white avens|Geum virginianum|avens +gewgaw|1 +(noun)|bangle|bauble|gaud|novelty|fallal|trinket|adornment +geyser|2 +(noun)|spring|fountain|outflow|outpouring|natural spring +(verb)|overflow|overrun|well over|run over|brim over +ghana|1 +(noun)|Ghana|Republic of Ghana|Gold Coast|African country|African nation +ghanaian|1 +(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation +ghanese|1 +(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation +ghanian|2 +(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation +(noun)|Ghanian|African +ghanian monetary unit|1 +(noun)|Ghanian monetary unit|monetary unit +gharry|1 +(noun)|carriage|equipage|rig +ghastliness|1 +(noun)|grimness|gruesomeness|luridness|frightfulness +ghastly|2 +(adj)|grim|grisly|gruesome|macabre|alarming +(adj)|charnel|sepulchral|offensive +ghat|1 +(noun)|stairway|staircase|stairs|steps +ghatti|1 +(noun)|ghatti gum|gum +ghatti gum|1 +(noun)|ghatti|gum +ghb|1 +(noun)|gamma hydroxybutyrate|GHB|club drug +ghedda wax|1 +(noun)|Ghedda wax|beeswax +ghee|1 +(noun)|clarified butter|drawn butter +gheg|1 +(noun)|Gheg|Gheg dialect|Albanian +gheg dialect|1 +(noun)|Gheg|Gheg dialect|Albanian +ghent|1 +(noun)|Gent|Gand|Ghent|city|metropolis|urban center|port +gherkin|2 +(noun)|pickle +(noun)|cucumber|cuke +ghetto|3 +(noun)|quarter +(noun)|life +(noun)|city district +ghetto blaster|1 +(noun)|boom box|stereo|stereo system|stereophonic system +ghettoise|1 +(verb)|ghettoize|isolate|insulate +ghettoize|1 +(verb)|ghettoise|isolate|insulate +ghillie|1 +(noun)|gillie|shoe +ghost|7 +(noun)|shade|spook|wraith|specter|spectre|apparition|phantom|phantasm|phantasma|shadow +(noun)|ghostwriter|writer|author +(noun)|soul|psyche +(noun)|touch|trace|suggestion|proposition|proffer +(verb)|travel|go|move|locomote +(verb)|haunt|obsess|preoccupy +(verb)|ghostwrite|author +ghost dance|1 +(noun)|ritual dancing|ritual dance|ceremonial dance +ghost gum|1 +(noun)|snow gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus|eucalypt|eucalyptus tree +ghost town|1 +(noun)|town +ghost weed|1 +(noun)|snow-on-the-mountain|snow-in-summer|Euphorbia marginata|spurge +ghost word|1 +(noun)|form|word form|signifier|descriptor +ghostfish|1 +(noun)|wrymouth|Cryptacanthodes maculatus|blennioid fish|blennioid +ghostlike|1 +(adj)|apparitional|ghostly|phantasmal|spectral|spiritual|supernatural +ghostliness|1 +(noun)|eeriness|unfamiliarity|strangeness +ghostly|1 +(adj)|apparitional|ghostlike|phantasmal|spectral|spiritual|supernatural +ghostwrite|1 +(verb)|ghost|author +ghostwriter|1 +(noun)|ghost|writer|author +ghoul|2 +(noun)|graverobber|body snatcher|thief|stealer +(noun)|evil spirit +ghoulish|1 +(adj)|morbid|offensive +ghq|1 +(noun)|command post|general headquarters|GHQ|headquarters|HQ|military headquarters +ghrelin|1 +(noun)|hormone|endocrine|internal secretion +ghrf|1 +(noun)|growth hormone-releasing factor|GHRF|releasing factor|releasing hormone|RF +ghz|1 +(noun)|gigahertz|GHz|gigacycle per second|gigacycle|Gc|rate +gi|2 +(adj)|gastrointestinal +(noun)|gilbert|Gb|Gi|magnetomotive force unit +gi series|1 +(noun)|GI series|diagnostic test|diagnostic assay +gi tract|1 +(noun)|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct|epithelial duct|canal|channel +gia|1 +(noun)|Armed Islamic Group|GIA|terrorist organization|terrorist group|foreign terrorist organization|FTO +giacometti|1 +(noun)|Giacometti|Alberto Giacometti|sculptor|sculpturer|carver|statue maker|painter +giacomo meyerbeer|1 +(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer +giacomo puccini|1 +(noun)|Puccini|Giacomo Puccini|composer +giambattista lulli|1 +(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer +giambattista marini|1 +(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet +giambattista marino|1 +(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet +gian carlo menotti|1 +(noun)|Menotti|Gian Carlo Menotti|composer +gianbattista bodoni|1 +(noun)|Bodoni|Gianbattista Bodoni|printer|pressman +gianni versace|1 +(noun)|Versace|Gianni Versace|couturier|fashion designer|clothes designer|designer +giant|8 +(adj)|elephantine|gargantuan|jumbo|large +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|colossus|behemoth|heavyweight|titan|important person|influential person|personage +(noun)|enterprise +(noun)|hulk|heavyweight|whale|large person +(noun)|goliath|behemoth|monster|colossus|anomaly|unusual person +(noun)|imaginary being|imaginary creature +(noun)|giant star|star +giant anteater|1 +(noun)|ant bear|great anteater|tamanoir|Myrmecophaga jubata|anteater|New World anteater +giant armadillo|1 +(noun)|tatou|tatu|Priodontes giganteus|armadillo +giant bamboo|1 +(noun)|kyo-chiku|Dendrocalamus giganteus|bamboo +giant buttercup|1 +(noun)|Laccopetalum giganteum|herb|herbaceous plant +giant cane|1 +(noun)|cane reed|Arundinaria gigantea|bamboo +giant chinkapin|1 +(noun)|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree +giant clam|1 +(noun)|Tridacna gigas|clam +giant cockroach|1 +(noun)|cockroach|roach +giant conch|1 +(noun)|Strombus gigas|conch +giant coreopsis|1 +(noun)|Coreopsis gigantea|coreopsis|tickseed|tickweed|tick-weed +giant crab|1 +(noun)|Macrocheira kaempferi|spider crab +giant eland|1 +(noun)|Taurotragus derbianus|eland +giant fern|1 +(noun)|angiopteris|Angiopteris evecta|tree fern +giant fir|1 +(noun)|lowland fir|lowland white fir|grand fir|Abies grandis|silver fir +giant foxtail|1 +(noun)|foxtail|foxtail grass +giant fulmar|1 +(noun)|giant petrel|Macronectes giganteus|petrel +giant garlic|1 +(noun)|sand leek|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant +giant granadilla|1 +(noun)|granadilla|Passiflora quadrangularis|passionflower|passionflower vine +giant helleborine|1 +(noun)|stream orchid|chatterbox|Epipactis gigantea|helleborine +giant hornet|1 +(noun)|Vespa crabro|hornet +giant hyssop|1 +(noun)|herb|herbaceous plant +giant kangaroo|1 +(noun)|great gray kangaroo|Macropus giganteus|kangaroo +giant lizard|1 +(noun)|Komodo dragon|Komodo lizard|dragon lizard|Varanus komodoensis|monitor|monitor lizard|varan +giant moa|1 +(noun)|Dinornis giganteus|moa +giant northwest shipworm|1 +(noun)|Bankia setaceae|shipworm|teredinid +giant panda|1 +(noun)|panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid +giant petrel|1 +(noun)|giant fulmar|Macronectes giganteus|petrel +giant pigfish|1 +(noun)|pigfish|Achoerodus gouldii|wrasse +giant potato creeper|1 +(noun)|potato vine|Solanum wendlandii|vine +giant puffball|1 +(noun)|Calvatia gigantea|puffball|true puffball +giant red paintbrush|1 +(noun)|Castilleja miniata|Indian paintbrush|painted cup +giant reed|1 +(noun)|Arundo donax|reed +giant ryegrass|1 +(noun)|Elymus condensatus|Leymus condensatus|lyme grass +giant salamander|1 +(noun)|Megalobatrachus maximus|salamander +giant scallop|1 +(noun)|sea scallop|Pecten magellanicus|scallop|scollop|escallop +giant schnauzer|1 +(noun)|schnauzer +giant scrambling fern|1 +(noun)|Diplopterygium longissimum|fern +giant sequoia|1 +(noun)|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +giant silkworm|1 +(noun)|silkworm|wild wilkworm|caterpillar +giant silkworm moth|1 +(noun)|silkworm moth|saturniid|saturniid moth +giant squid|1 +(noun)|architeuthis|squid +giant star|1 +(noun)|giant|star +giant star grass|1 +(noun)|Cynodon plectostachyum|grass +giant stock bean|1 +(noun)|jack bean|wonder bean|Canavalia ensiformis|vine +giant sunflower|1 +(noun)|tall sunflower|Indian potato|Helianthus giganteus|sunflower|helianthus +giant taro|1 +(noun)|Alocasia macrorrhiza|alocasia|elephant's ear|elephant ear +giant timber bamboo|1 +(noun)|madake|ku-chiku|Phyllostachys bambusoides|bamboo +giant tortoise|1 +(noun)|tortoise +giant water bug|1 +(noun)|water bug +giant willowherb|1 +(noun)|fireweed|rosebay willowherb|wickup|Epilobium angustifolium|willowherb +giantess|1 +(noun)|giant +giantism|2 +(noun)|gigantism|overgrowth|hypertrophy +(noun)|gigantism|largeness|bigness +giardia|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +giardiasis|1 +(noun)|protozoal infection +gib|1 +(noun)|tom|tomcat +gibber|3 +(noun)|gibberish|nonsense|bunk|nonsensicality|meaninglessness|hokum +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +(verb)|utter|emit|let out|let loose +gibberellic acid|1 +(noun)|gibberellin +gibberellin|1 +(noun)|phytohormone|plant hormone|growth regulator +gibberish|1 +(noun)|gibber|nonsense|bunk|nonsensicality|meaninglessness|hokum +gibbet|3 +(noun)|gallows|gallows tree|gallows-tree|gallous|instrument of execution +(verb)|hang|string up +(verb)|pillory|expose|exhibit|display +gibbon|2 +(noun)|Gibbon|Edward Gibbon|historian|historiographer +(noun)|Hylobates lar|lesser ape +gibbose|1 +(adj)|gibbous|convex |bulging +gibbosity|1 +(noun)|bulge|bump|hump|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection +gibbous|2 +(adj)|crookback|crookbacked|humped|humpbacked|hunchback|hunchbacked|kyphotic|unfit +(adj)|gibbose|convex |bulging +gibbousness|1 +(noun)|bulge|bump|hump|gibbosity|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection +gibbs|1 +(noun)|Gibbs|Josiah Willard Gibbs|chemist +gibbsite|1 +(noun)|mineral +gibe|3 +(noun)|shot|shaft|slam|dig|barb|jibe|remark|comment +(verb)|match|fit|correspond|check|jibe|tally|agree|equal|be +(verb)|jeer|scoff|flout|barrack|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +gibelike|1 +(adj)|derisive|jeering|mocking|taunting|disrespectful +gibingly|1 +(adv)|jeeringly|mockingly +giblet|1 +(noun)|giblets|variety meat|organs +giblets|2 +(noun)|giblet|variety meat|organs +(noun)|giblet|variety meat|organs +gibraltar|1 +(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony|settlement|promontory|headland|foreland +gibraltar fever|1 +(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +gibraltarian|2 +(adj)|Gibraltarian|colony|settlement|promontory|headland|foreland +(noun)|Gibraltarian|European +gibran|1 +(noun)|Gibran|Kahlil Gibran|writer|author +gibson|3 +(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator +(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor|histrion|player|thespian|role player +(noun)|Gibson|Althea Gibson|tennis player +gibson desert|1 +(noun)|Gibson Desert|desert +gibson girl|1 +(noun)|Gibson girl|girl|miss|missy|young lady|young woman|fille +gidar|1 +(noun)|Gidar|Biu-Mandara +giddily|1 +(adv)|dizzily|light-headedly +giddiness|2 +(noun)|silliness|frivolity|frivolousness +(noun)|dizziness|lightheadedness|vertigo|symptom +giddy|2 +(adj)|dizzy|woozy|vertiginous|ill |sick +(adj)|airheaded|dizzy|empty-headed|featherbrained|light-headed|lightheaded|silly|frivolous +gide|1 +(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer|author|dramatist|playwright +gideon algernon mantell|1 +(noun)|Mantell|Gideon Algernon Mantell|geologist +gidgee|1 +(noun)|stinking wattle|Acacia cambegei|acacia +gielgud|1 +(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor|histrion|player|thespian|role player +gift|5 +(noun)|acquisition +(noun)|endowment|talent|natural endowment|natural ability +(noun)|giving|sharing|share-out +(verb)|endow|indue|empower|invest|endue|enable +(verb)|give|present +gift-wrap|1 +(verb)|wrap|wrap up +gift horse|1 +(noun)|gift +gift shop|1 +(noun)|novelty shop|shop|store +gift tax|1 +(noun)|tax|taxation|revenue enhancement +gift wrap|1 +(noun)|wrapping paper +gift wrapping|1 +(noun)|wrapping|wrap|wrapper +gifted|1 +(adj)|talented|precocious +gig|6 +(noun)|small boat +(noun)|spear|fizgig|fishgig|lance|implement +(noun)|hook +(noun)|tender|ship's boat|pinnace|cutter +(noun)|carriage|equipage|rig +(noun)|engagement|booking +gigabyte|1 +(noun)|G|GB|computer memory unit +gigacycle|1 +(noun)|gigahertz|GHz|gigacycle per second|Gc|rate +gigacycle per second|1 +(noun)|gigahertz|GHz|gigacycle|Gc|rate +gigahertz|1 +(noun)|GHz|gigacycle per second|gigacycle|Gc|rate +gigantic|1 +(adj)|mammoth|large +gigantism|2 +(noun)|giantism|overgrowth|hypertrophy +(noun)|giantism|largeness|bigness +gigartinaceae|1 +(noun)|Gigartinaceae|family Gigartinaceae|protoctist family +giggle|2 +(noun)|laugh|laughter +(verb)|titter|laugh|express joy|express mirth +giggler|1 +(noun)|titterer|laugher +gigo|1 +(noun)|GIGO|rule|prescript +gigolo|1 +(noun)|libertine|debauchee|rounder +gigot|1 +(noun)|leg of lamb|lamb roast|roast lamb|leg +gikuyu|1 +(noun)|Gikuyu|Bantu|Bantoid language +gila|1 +(noun)|Gila|Gila River|river +gila desert|1 +(noun)|Gila Desert|desert +gila monster|1 +(noun)|Gila monster|Heloderma suspectum|venomous lizard +gila river|1 +(noun)|Gila|Gila River|river +gilbert|5 +(noun)|Gb|Gi|magnetomotive force unit +(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist|poet +(noun)|Gilbert|William Gilbert|doctor|doc|physician|MD|Dr.|medico|physicist +(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator +(noun)|Gilbert|Cass Gilbert|architect|designer +gilbert and ellice islands|1 +(noun)|Gilbert and Ellice Islands|possession +gilbert and sullivan|1 +(noun)|Gilbert and Sullivan|music +gilbert charles stuart|1 +(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter +gilbert islands|1 +(noun)|Gilbert Islands|archipelago +gilbert keith chesterton|1 +(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer|author +gilbert murray|1 +(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist|classical scholar +gilbert stuart|1 +(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter +gilbertian|2 +(adj)|Gilbertian|architect|designer +(adj)|Gilbertian|humorous |humourous +gild|2 +(noun)|club|society|guild|lodge|order|association +(verb)|begild|engild|decorate|adorn|grace|ornament|embellish|beautify +gild the lily|2 +(verb)|paint the lily|decorate|adorn|grace|ornament|embellish|beautify +(verb)|paint the lily|add +gilded|4 +(adj)|aureate|gilt|gold|golden|chromatic +(adj)|meretricious|specious|insincere +(adj)|deluxe|luxurious|opulent|princely|sumptuous|rich +(adj)|gold|golden|metallic +gilded flicker|1 +(noun)|Colaptes chrysoides|flicker +gilder|1 +(noun)|skilled worker|trained worker +gildhall|1 +(noun)|guildhall +gilding|1 +(noun)|gilt|coating|coat +gilding metal|1 +(noun)|brass +giles lytton strachey|1 +(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer +gilgai soil|1 +(noun)|soil|dirt +gilgamesh|1 +(noun)|Gilgamesh|king|male monarch +gilgamish|1 +(noun)|Gilgamish|mythical being +gill|4 +(noun)|British capacity unit|Imperial capacity unit +(noun)|United States liquid unit +(noun)|lamella|plant organ +(noun)|branchia|respiratory organ +gill-less|1 +(adj)|abranchiate |abranchial|abranchious +gill-over-the-ground|1 +(noun)|ground ivy|alehoof|field balm|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +gill arch|1 +(noun)|branchial arch|gill bar|structure|anatomical structure|complex body part|bodily structure|body structure +gill bar|1 +(noun)|gill arch|branchial arch|structure|anatomical structure|complex body part|bodily structure|body structure +gill cleft|1 +(noun)|gill slit|branchial cleft|structure|anatomical structure|complex body part|bodily structure|body structure +gill fungus|1 +(noun)|basidiomycete|basidiomycetous fungi +gill net|1 +(noun)|fishnet|fishing net +gill slit|1 +(noun)|branchial cleft|gill cleft|structure|anatomical structure|complex body part|bodily structure|body structure +gilled|1 +(adj)|branchiate +gilles de la tourette|1 +(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist|brain doctor +gilles de la tourette syndrome|1 +(noun)|Tourette's syndrome|Gilles de la Tourette syndrome|syndrome +gillespie|1 +(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter|cornetist +gillette|1 +(noun)|Gillette|King Camp Gilette|inventor|discoverer|artificer|industrialist +gillie|2 +(noun)|attendant|attender|tender +(noun)|ghillie|shoe +gillyflower|2 +(noun)|stock|flower +(noun)|carnation|clove pink|Dianthus caryophyllus|pink|garden pink +gilman|1 +(noun)|Gilman|Charlotte Anna Perkins Gilman|feminist|women's rightist|women's liberationist|libber +gilmer|1 +(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist +giloacchino antonio rossini|1 +(noun)|Rossini|Giloacchino Antonio Rossini|composer +gilt|2 +(adj)|aureate|gilded|gold|golden|chromatic +(noun)|gilding|coating|coat +gilt-edged|2 +(adj)|superior +(adj)|adorned |decorated +gimbaled|1 +(adj)|supported +gimbals|1 +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|widget +gimcrack|1 +(adj)|brassy|cheap|flash|flashy|garish|gaudy|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless +gimcrackery|1 +(noun)|falderal|folderol|frills|gimcracks|nonsense|trumpery|decoration|ornament|ornamentation +gimcracks|1 +(noun)|falderal|folderol|frills|gimcrackery|nonsense|trumpery|decoration|ornament|ornamentation +gimel|1 +(noun)|letter|letter of the alphabet|alphabetic character +gimlet|2 +(noun)|cocktail +(noun)|auger|screw auger|wimble|drill +gimmick|2 +(noun)|dohickey|dojigger|doodad|doohickey|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +(noun)|device|twist|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +gimmickry|1 +(noun)|collection|aggregation|accumulation|assemblage +gimp|1 +(noun)|lameness|limping|gimpiness|gameness|claudication|disability of walking +gimpiness|1 +(noun)|lameness|limping|gimp|gameness|claudication|disability of walking +gin|6 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +(noun)|snare|noose|trap +(noun)|cotton gin|machine +(noun)|gin rummy|knock rummy|rummy|rum +(verb)|separate|disunite|divide|part +(verb)|trap|entrap|snare|ensnare|trammel +gin and it|1 +(noun)|cocktail +gin and tonic|1 +(noun)|highball +gin mill|2 +(noun)|public house|pub|saloon|pothouse|taphouse|tavern|tap house +(noun)|barroom|bar|saloon|ginmill|taproom|room +gin rickey|1 +(noun)|rickey +gin rummy|1 +(noun)|gin|knock rummy|rummy|rum +gin sling|1 +(noun)|sling +ginep|1 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|Melicocca bijuga|Melicocca bijugatus|fruit tree +ginger|6 +(adj)|gingery|colored |coloured|colorful +(noun)|herb|herbaceous plant +(noun)|powdered ginger|spice +(noun)|gingerroot|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|pep|peppiness|liveliness|life|spirit|sprightliness +(verb)|zest|spice|spice up +ginger ale|1 +(noun)|ginger pop|soft drink +ginger beer|1 +(noun)|beverage|drink|drinkable|potable +ginger family|1 +(noun)|Zingiberaceae|family Zingiberaceae|monocot family|liliopsid family +ginger nut|1 +(noun)|gingersnap|ginger snap|snap|cookie|cooky|biscuit +ginger pop|1 +(noun)|ginger ale|soft drink +ginger rogers|1 +(noun)|Rogers|Ginger Rogers|Virginia McMath|dancer|professional dancer|actress +ginger snap|2 +(noun)|gingersnap|snap|ginger nut|cookie|cooky|biscuit +(noun)| +ginger up|1 +(verb)|jazz up|juice up|pep up|enliven|liven|liven up|invigorate|animate +gingerbread|1 +(noun)|cake +gingerbread man|1 +(noun)|cookie|cooky|biscuit +gingerly|1 +(adj)|cautious +gingerol|1 +(noun)|chemical irritant +gingerroot|1 +(noun)|ginger|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +gingersnap|1 +(noun)|ginger snap|snap|ginger nut|cookie|cooky|biscuit +gingery|2 +(adj)|hot|peppery|spicy|pungent +(adj)|ginger|colored |coloured|colorful +gingham|1 +(noun)|fabric|cloth|material|textile +gingiva|1 +(noun)|gum|animal tissue +gingival|1 +(adj)|animal tissue +gingivitis|1 +(noun)|periodontal disease|periodontitis +gingko|1 +(noun)|ginkgo|maidenhair tree|Ginkgo biloba|gymnospermous tree +ginglymoid joint|1 +(noun)|hinge joint|ginglymus|synovial joint|articulatio synovialis|diarthrosis +ginglymostoma|1 +(noun)|Ginglymostoma|genus Ginglymostoma|fish genus +ginglymostoma cirratum|1 +(noun)|nurse shark|Ginglymostoma cirratum|shark +ginglymus|1 +(noun)|hinge joint|ginglymoid joint|synovial joint|articulatio synovialis|diarthrosis +ginkgo|1 +(noun)|gingko|maidenhair tree|Ginkgo biloba|gymnospermous tree +ginkgo biloba|1 +(noun)|ginkgo|gingko|maidenhair tree|Ginkgo biloba|gymnospermous tree +ginkgo family|1 +(noun)|Ginkgoaceae|family Ginkgoaceae|gymnosperm family +ginkgoaceae|1 +(noun)|Ginkgoaceae|family Ginkgoaceae|ginkgo family|gymnosperm family +ginkgoales|1 +(noun)|Ginkgoales|order Ginkgoales|plant order +ginkgophyta|1 +(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|subdivision Ginkgophytina|Ginkgophyta|class +ginkgophytina|1 +(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|subdivision Ginkgophytina|Ginkgophyta|class +ginkgopsida|1 +(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|subdivision Ginkgophytina|Ginkgophyta|class +ginmill|1 +(noun)|barroom|bar|saloon|taproom|room +ginsberg|1 +(noun)|Ginsberg|Allen Ginsberg|poet +ginseng|2 +(noun)|root +(noun)|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb|herbaceous plant +giordano bruno|1 +(noun)|Bruno|Giordano Bruno|philosopher +giorgio de chirico|1 +(noun)|Chirico|Giorgio de Chirico|painter +giorgio vasari|1 +(noun)|Vasari|Giorgio Vasari|painter|art historian +giosue carducci|1 +(noun)|Carducci|Giosue Carducci|poet +giotto|1 +(noun)|Giotto|Giotto di Bondone|old master|architect|designer +giotto di bondone|1 +(noun)|Giotto|Giotto di Bondone|old master|architect|designer +giovanni battista tiepolo|1 +(noun)|Tiepolo|Giovanni Battista Tiepolo|painter +giovanni boccaccio|1 +(noun)|Boccaccio|Giovanni Boccaccio|poet +giovanni cabato|1 +(noun)|Cabot|John Cabot|Giovanni Cabato|navigator +giovanni cimabue|1 +(noun)|Cimabue|Giovanni Cimabue|old master +giovanni da verrazano|1 +(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator +giovanni da verrazzano|1 +(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator +giovanni de medici|1 +(noun)|Leo X|Giovanni de Medici|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +giovanni di bernardone|1 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +giovanni jacopo casanova|1 +(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer|venturer +giovanni jacopo casanova de seingalt|1 +(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer|venturer +giovanni lorenzo bernini|1 +(noun)|Bernini|Giovanni Lorenzo Bernini|architect|designer|sculptor|sculpturer|carver|statue maker +giovanni pierluigi da palestrina|1 +(noun)|Palestrina|Giovanni Pierluigi da Palestrina|composer +giovanni virginio schiaparelli|1 +(noun)|Schiaparelli|Giovanni Virginio Schiaparelli|astronomer|uranologist|stargazer +gipsy|1 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +gipsy moth|1 +(noun)|gypsy moth|Lymantria dispar|lymantriid|tussock moth +gipsywort|1 +(noun)|gypsywort|Lycopus europaeus|herb|herbaceous plant +giraffa|1 +(noun)|Giraffa|genus Giraffa|mammal genus +giraffa camelopardalis|1 +(noun)|giraffe|camelopard|Giraffa camelopardalis|ruminant +giraffe|1 +(noun)|camelopard|Giraffa camelopardalis|ruminant +giraffidae|1 +(noun)|Giraffidae|family Giraffidae|mammal family +girandola|1 +(noun)|girandole|candlestick|candle holder +girandole|1 +(noun)|girandola|candlestick|candle holder +girard|1 +(noun)|Girard|Stephen Girard|financier|moneyman +girasol|2 +(noun)|fire opal|opal +(noun)|Jerusalem artichoke|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower|helianthus +giraudoux|1 +(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist|dramatist|playwright +gird|4 +(verb)|arm|build up|fortify +(verb)|girth|girt|begird|surround|environ|encircle|circle|round|ring +(verb)|girdle|surround|skirt|border +(verb)|encircle|bind +girder|1 +(noun)|beam +girdle|5 +(noun)|skeletal structure +(noun)|cincture|sash|waistband|waistcloth|band +(noun)|corset|stays|foundation garment|foundation +(verb)|deaden|incise +(verb)|gird|surround|skirt|border +girgenti|1 +(noun)|Agrigento|Acragas|Girgenti|town +giriama|1 +(noun)|Giriama|Bantu|Bantoid language +girl|5 +(noun)|miss|missy|young lady|young woman|fille|woman|adult female +(noun)|female child|little girl|female|female person +(noun)|daughter|female offspring +(noun)|girlfriend|lady friend|woman|adult female|lover +(noun)|woman|adult female +girl friday|1 +(noun)|girl Friday|assistant|helper|help|supporter +girl scout|1 +(noun)|female child|girl|little girl +girl scouts|2 +(noun)|Girl Scouts|organization|organisation +(noun)|girl scout|female child|girl|little girl +girl wonder|1 +(noun)|prodigy|female|female person +girlfriend|2 +(noun)|woman|adult female|friend +(noun)|girl|lady friend|woman|adult female|lover +girlhood|1 +(noun)|maidenhood|maidhood|childhood +girlish|1 +(adj)|schoolgirlish|young |immature +girlishness|1 +(noun)|femininity|muliebrity +giro|2 +(noun)|giro cheque|check|bank check|cheque +(noun)|financial institution|financial organization|financial organisation +giro account|1 +(noun)|bank account +giro cheque|1 +(noun)|giro|check|bank check|cheque +girolamo savonarola|1 +(noun)|Savonarola|Girolamo Savonarola|Dominican|Black Friar|Blackfriar|friar preacher|reformer|reformist|crusader|meliorist +girondist|1 +(noun)|Girondist|revolutionist|revolutionary|subversive|subverter +girru|1 +(noun)|Girru|Semitic deity +girt|5 +(verb)|girth|begird|gird|surround|environ|encircle|circle|round|ring +(verb)|arm|build up|fortify|gird +(verb)|girth|begird|gird|surround|environ|encircle|circle|round|ring +(verb)|girdle|gird|surround|skirt|border +(verb)|gird|encircle|bind +girth|4 +(noun)|circumference|perimeter +(noun)|cinch|stable gear|saddlery|tack +(verb)|girt|begird|gird|surround|environ|encircle|circle|round|ring +(verb)|cinch|fasten|fix|secure +gish|1 +(noun)|Gish|Lillian Gish|actress +gismo|2 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|widget|device +gist|2 +(noun)|effect|essence|burden|core|meaning|significance|signification|import +(noun)|kernel|substance|core|center|essence|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +git|1 +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|unpleasant person|disagreeable person +gita|1 +(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text|sacred writing|religious writing|religious text +gitana|1 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian +gitano|1 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian +gittern|1 +(noun)|cittern|cithern|cither|citole|guitar +giulio natta|1 +(noun)|Natta|Giulio Natta|chemist +giuseppe balsamo|1 +(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer|magician|wizard|necromancer +giuseppe garibaldi|1 +(noun)|Garibaldi|Giuseppe Garibaldi|general|full general|patriot|nationalist +giuseppe mazzini|1 +(noun)|Mazzini|Giuseppe Mazzini|patriot|nationalist +giuseppe melchiorre sarto|1 +(noun)|Pius X|Giuseppe Melchiorre Sarto|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +giuseppe verdi|1 +(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer +give|44 +(noun)|spring|springiness|elasticity|snap +(verb)|yield|afford|supply|provide|render|furnish +(verb)|transfer|give back +(verb)|state|say|tell +(verb)|pay|communicate|intercommunicate +(verb)|hold|throw|have|make|direct +(verb)|throw|communicate|intercommunicate +(verb)|gift|present +(verb)|bring about|yield|make|create +(verb)|pay|devote|think|cogitate|cerebrate +(verb)|render|yield|return|generate|produce|make|create +(verb)|impart|leave|pass on|tell +(verb)|establish|make|create +(verb)|pass|hand|reach|pass on|turn over +(verb)|utter|emit|let out|let loose +(verb)|sacrifice|release|relinquish|resign|free|give up +(verb)|pass|hand|reach|pass on|turn over|transfer +(verb)|dedicate|consecrate|commit|devote|use|utilize|utilise|apply|employ +(verb)|administer|dispense +(verb)|apply|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +(verb)|render|communicate|intercommunicate +(verb)|grant +(verb)|move over|give way|ease up|yield|move +(verb)|feed|provide|supply|ply|cater +(verb)|contribute|chip in|kick in +(verb)|collapse|fall in|cave in|give way|break|founder|change +(verb)|estimate|gauge|approximate|guess|judge +(verb)|execute +(verb)|compensate|recompense|repair|indemnify +(verb)|afford|open +(verb)|show +(verb)|perform +(verb)|yield|stretch|give in +(verb)|toast|drink|pledge|salute|wassail +(verb)|accord|allot|grant +(verb)|express|show|evince +(verb)|pledge +(verb)|submit|subject +(verb)|lead +(verb)|permit|allow|let|countenance +(verb)|inflict|bring down|visit|impose +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|accept|consent|go for +(verb)|offer|proffer +give-and-go|1 +(noun)|basketball play +give-and-take|3 +(noun)|discussion|word|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|banter|raillery|backchat|repartee +(noun)|interchange|reciprocation|interaction +give-up the ghost|1 +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|drop dead|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +give a damn|1 +(verb)|care a hang|give a hoot|give a hang +give a hang|1 +(verb)|care a hang|give a hoot|give a damn +give a hoot|1 +(verb)|care a hang|give a hang|give a damn +give and take|1 +(verb)|compromise +give away|4 +(verb)|give|gift|present +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|let out|tell +(verb)|hand over|fork over|fork out|fork up|turn in|get in|deliver|render +(verb)|denounce|tell on|betray|rat|grass|shit|shop|snitch|stag|inform +give back|1 +(verb)|refund|return|repay|pay +give birth|2 +(verb)|deliver|bear|birth|have|produce|bring forth +(verb)|create by mental act|create mentally +give care|1 +(verb)|care|help|assist|aid +give chase|1 +(verb)|chase|chase after|trail|tail|tag|dog|go after|track|pursue|follow +give ear|1 +(verb)|attend|hang|advert|pay heed|listen +give forth|1 +(verb)|exhale|emanate|emit|breathe|pass off +give in|2 +(verb)|submit|bow|defer|accede|yield|succumb|knuckle under|buckle under +(verb)|yield|succumb|knuckle under|buckle under|accept|consent|go for +give it a try|2 +(verb)|give it a whirl|try|seek|attempt|essay|assay +(verb)|have a go|try|seek|attempt|essay|assay +give it a whirl|1 +(verb)|give it a try|try|seek|attempt|essay|assay +give it the deep six|1 +(verb)|deep-six|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +give notice|2 +(verb)|fire|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove +(verb)|advise|notify|send word|apprise|apprize|inform +give off|2 +(verb)|have|feature +(verb)|emit|give out +give one's best|1 +(verb)|go all out|do one's best|do|perform +give out|4 +(verb)|emit|give off +(verb)|distribute|hand out|give|gift|present +(verb)|fail|run out +(verb)|fail|go bad|give way|die|conk out|go|break|break down|change +give rise|1 +(verb)|produce|bring about|make|create +give suck|1 +(verb)|breastfeed|bottle-feed|suckle|suck|nurse|wet-nurse|lactate|feed|give +give thanks|1 +(verb)|thank|convey|impart +give the axe|2 +(verb)|fire|give notice|can|dismiss|send away|sack|force out|give the sack|terminate|remove +(verb)|give the bounce|give the gate|separate|part|split up|split|break|break up +give the bounce|1 +(verb)|give the axe|give the gate|separate|part|split up|split|break|break up +give the eye|1 +(verb)|give the once over|look +give the gate|1 +(verb)|give the axe|give the bounce|separate|part|split up|split|break|break up +give the glad eye|1 +(verb)|look +give the once over|1 +(verb)|give the eye|look +give the sack|1 +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|terminate|remove +give tongue to|1 +(verb)|express|verbalize|verbalise|utter +give up|12 +(verb)|forfeit|throw overboard|waive|forgo|abandon +(verb)|abandon +(verb)|drop out|fall by the wayside|drop by the wayside|throw in|throw in the towel|quit|chuck up the sponge +(verb)|discontinue|stop|cease|quit|lay off +(verb)|spare|part with|dispense with|give +(verb)|release|relinquish|resign|free|pass|hand|reach|pass on|turn over|give +(verb)|vacate|resign|renounce|leave office|quit|step down|resign +(verb)|surrender|cede|deliver|give|gift|present +(verb)|surrender|yield +(verb)|abandon +(verb)|allow +(verb)|forgo +give vent|1 +(verb)|vent|ventilate|express|show|evince +give voice|1 +(verb)|formulate|word|phrase|articulate|express|show|evince +give way|4 +(verb)|move over|give|ease up|yield|move +(verb)|collapse|fall in|cave in|give|break|founder|change +(verb)|yield|change +(verb)|fail|go bad|die|give out|conk out|go|break|break down|change +giveaway|3 +(noun)|gift +(noun)|disclosure|revelation|revealing +(noun)|game show|broadcast|program|programme +given|5 +(adj)|fixed|specified +(adj)|granted|acknowledged +(adj)|given |bestowed|conferred|presented|donated|relinquished|surrendered|granted +(adj)|apt|disposed|minded|tending|inclined +(noun)|presumption|precondition|assumption|supposition|supposal +given birth|1 +(adj)|born +given name|1 +(noun)|first name|forename|name +givenness|1 +(noun)|indisputability|indubitability|unquestionability|unquestionableness +giver|2 +(noun)|good person +(noun)|donor|presenter|benefactor|helper +giving|4 +(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|liberal|openhanded|generous +(noun)|gift|sharing|share-out +(noun)|conveyance|imparting|impartation +(noun)|disposal|disposition +giving birth|1 +(noun)|parturition|birth|birthing|organic process|biological process +giving medication|1 +(noun)|administration|medication +giving protection|1 +(adv)|protectively|offering protection +giving up|2 +(noun)|yielding|surrender|relinquishment|relinquishing +(noun)|forsaking|renunciation|forgoing|forswearing +giza|1 +(noun)|Giza|El Giza|city|metropolis|urban center +gizmo|2 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +(noun)|appliance|contraption|contrivance|convenience|gadget|gismo|widget|device +gizzard|1 +(noun)|ventriculus|gastric mill|pouch|pocket +gjellerup|1 +(noun)|Gjellerup|Karl Gjellerup|writer|author +glabella|1 +(noun)|mesophyron|craniometric point +glabrescent|1 +(adj)|hairless +glabrous|1 +(adj)|hairless +glace|1 +(adj)|candied|crystalized|crystalised|preserved +glacial|3 +(adj)|ice mass +(adj)|frigid|frosty|frozen|icy|wintry|cold +(adj)|arctic|frigid|gelid|icy|polar|cold +glacial boulder|1 +(noun)|boulder|bowlder +glacial epoch|2 +(noun)|ice age|glacial period|period|geological period +(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch +glacial period|1 +(noun)|ice age|glacial epoch|period|geological period +glaciate|2 +(verb)|cover|spread over +(verb)|freeze +glaciated|1 +(adj)|frozen +glaciation|2 +(noun)|environmental condition +(noun)|geological process|geologic process +glacier|1 +(noun)|ice mass +glacier lily|1 +(noun)|snow lily|Erythronium grandiflorum|dogtooth violet|dogtooth|dog's-tooth violet +glad|4 +(adj)|glad |gladsome|happy|pleased|cheerful +(adj)|lief|willing +(adj)|grateful |thankful +(adj)|beaming|cheerful +glad hand|1 +(noun)|welcome +gladden|2 +(verb)|joy +(verb)|rejoice|joy +gladdened|1 +(adj)|exhilarated|elated +gladdon|1 +(noun)|stinking iris|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +gladdon iris|1 +(noun)|stinking iris|gladdon|stinking gladwyn|roast beef plant|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +glade|1 +(noun)|clearing|tract|piece of land|piece of ground|parcel of land|parcel +glade fern|1 +(noun)|silvery spleenwort|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern +glade mallow|1 +(noun)|Napaea dioica|mallow +gladfulness|1 +(noun)|gladness|gladsomeness|happiness +gladiator|2 +(noun)|combatant|battler|belligerent|fighter|scrapper +(noun)|prizefighter|boxer|pugilist +gladiatorial|1 +(adj)|combatant|battler|belligerent|fighter|scrapper +gladiola|1 +(noun)|gladiolus|sword lily|iridaceous plant +gladiolus|2 +(noun)|gladiola|sword lily|iridaceous plant +(noun)|corpus sternum|bone|os +gladly|1 +(adv)|lief|fain +gladness|1 +(noun)|gladfulness|gladsomeness|happiness +gladsome|1 +(adj)|glad +gladsomeness|1 +(noun)|gladness|gladfulness|happiness +gladstone|2 +(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman|solon|national leader +(noun)|portmanteau|Gladstone|Gladstone bag|bag|traveling bag|grip|suitcase +gladstone bag|1 +(noun)|portmanteau|Gladstone|Gladstone bag|bag|traveling bag|grip|suitcase +gladys smith|1 +(noun)|Pickford|Mary Pickford|Gladys Smith|actress +glam up|1 +(verb)|doll up|do up|pretty up|groom|neaten +glamor|1 +(noun)|glamour|beauty +glamorisation|1 +(noun)|glamorization|glamourization|glamourisation|beautification +glamorise|1 +(verb)|glamorize|glamourise|glamourize|change|alter|modify +glamorization|1 +(noun)|glamorisation|glamourization|glamourisation|beautification +glamorize|2 +(verb)|romanticize|romanticise|glamourise|idealize|idealise +(verb)|glamourise|glamourize|glamorise|change|alter|modify +glamorous|1 +(adj)|glamourous|exciting +glamour|2 +(noun)|glamor|beauty +(verb)|hex|bewitch|witch|enchant|jinx|charm|becharm +glamourisation|1 +(noun)|glamorization|glamorisation|glamourization|beautification +glamourise|2 +(verb)|romanticize|romanticise|glamorize|idealize|idealise +(verb)|glamorize|glamourize|glamorise|change|alter|modify +glamourization|1 +(noun)|glamorization|glamorisation|glamourisation|beautification +glamourize|1 +(verb)|glamorize|glamourise|glamorise|change|alter|modify +glamourous|1 +(adj)|glamorous|exciting +glance|3 +(noun)|glimpse|coup d'oeil|look|looking|looking at +(verb)|peek|glint|look +(verb)|carom|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +glance over|1 +(verb)|scan|skim|rake|run down|examine|see +gland|1 +(noun)|secretory organ|secretor|secreter|organ +gland disease|1 +(noun)|glandular disease|glandular disorder|adenosis|disorder|upset +glanders|1 +(noun)|zoonosis|zoonotic disease +glandulae cervicales uteri|1 +(noun)|cervical glands|cervical glands of the uterus|exocrine gland|duct gland +glandulae sebaceae|1 +(noun)|sebaceous gland|sebaceous follicle|oil gland +glandular|1 +(adj)|organ +glandular cancer|1 +(noun)|adenocarcinoma|glandular carcinoma|carcinoma +glandular carcinoma|1 +(noun)|adenocarcinoma|glandular cancer|carcinoma +glandular disease|1 +(noun)|gland disease|glandular disorder|adenosis|disorder|upset +glandular disorder|1 +(noun)|glandular disease|gland disease|adenosis|disorder|upset +glandular fever|1 +(noun)|infectious mononucleosis|mononucleosis|mono|kissing disease|infectious disease +glandular labrador tea|1 +(noun)|trapper's tea|glandular Labrador tea|shrub|bush +glans|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +glans clitoridis|1 +(noun)|glans +glans penis|1 +(noun)|glans +glare|6 +(noun)|blaze|brilliance|brightness +(noun)|glower|stare +(noun)|limelight|spotlight|public eye|prominence +(verb)|glower|stare +(verb)|reflect|shine +(verb)|shine|beam +glareola|1 +(noun)|Glareola|genus Glareola|bird genus +glareole|1 +(noun)|pratincole|shorebird|shore bird|limicoline bird +glareolidae|1 +(noun)|Glareolidae|family Glareolidae|bird family +glaring|2 +(adj)|blazing|blinding|dazzling|fulgent|glary|bright +(adj)|crying|egregious|flagrant|gross|rank|conspicuous |obvious +glary|1 +(adj)|blazing|blinding|dazzling|fulgent|glaring|bright +glaser|1 +(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist +glasgow|1 +(noun)|Glasgow|city|metropolis|urban center|port +glasnost|1 +(noun)|social policy +glass|12 +(noun)|solid +(noun)|drinking glass|container +(noun)|glassful|containerful +(noun)|field glass|spyglass|refracting telescope +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|looking glass|mirror +(noun)|glassware|glasswork +(verb)|glaze|supply|provide|render|furnish +(verb)|scan +(verb)|glass in|enclose|inclose|shut in +(verb)|insert|enclose|inclose|stick in|put in|introduce +(verb)|glaze|glass over|glaze over|change +glass-cutter|3 +(noun)|glass cutter|cutter +(noun)|glass cutter|glassworker|glazier|glazer|craftsman|artisan|journeyman|artificer +(noun)|glass cutter|cutter|cutlery|cutting tool +glass ceiling|1 +(noun)|ceiling|cap +glass cutter|4 +(noun)|glass-cutter|cutter +(noun)|glass-cutter|glassworker|glazier|glazer|craftsman|artisan|journeyman|artificer +(noun)|cutter|cutlery|cutting tool +(noun)| +glass eye|1 +(noun)|prosthesis|prosthetic device +glass fiber|1 +(noun)|optical fiber|optical fibre|glass fibre|fiber|fibre +glass fibre|1 +(noun)|optical fiber|glass fiber|optical fibre|fiber|fibre +glass in|1 +(verb)|glass|enclose|inclose|shut in +glass lizard|1 +(noun)|glass snake|joint snake|anguid lizard +glass over|1 +(verb)|glaze|glass|glaze over|change +glass snake|1 +(noun)|glass lizard|joint snake|anguid lizard +glass sponge|1 +(noun)|sponge|poriferan|parazoan +glass wool|1 +(noun)|insulator|dielectric|nonconductor|filter +glassblower|1 +(noun)|craftsman|artisan|journeyman|artificer +glassed|1 +(adj)|glazed +glasses|8 +(noun)|spectacles|specs|eyeglasses|optical instrument +(noun)|glass|solid +(noun)|glass|drinking glass|container +(noun)|glass|glassful|containerful +(noun)|field glass|glass|spyglass|refracting telescope +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|looking glass|glass|mirror +(noun)|glass|glassware|glasswork +glasses case|1 +(noun)|case +glassful|1 +(noun)|glass|containerful +glasshouse|1 +(noun)|greenhouse|nursery|building|edifice +glassless|1 +(adj)|unglazed +glassmaker|1 +(noun)|maker|shaper +glassware|1 +(noun)|glasswork|tableware +glasswork|1 +(noun)|glassware|tableware +glassworker|1 +(noun)|glass cutter|glass-cutter|glazier|glazer|craftsman|artisan|journeyman|artificer +glassworks|2 +(noun)|workplace|work +(noun)|glassware|glasswork|tableware +glasswort|2 +(noun)|saltwort|barilla|kali|kelpwort|Salsola kali|Salsola soda|shrub|bush +(noun)|samphire|Salicornia europaea|herb|herbaceous plant +glassy|3 +(adj)|smooth +(adj)|glazed|empty +(adj)|vitreous|vitrified|glazed |shiny +glaswegian|2 +(adj)|Glaswegian|city|metropolis|urban center|port +(noun)|Glaswegian|Scot|Scotsman|Scotchman +glauber's salt|1 +(noun)|Glauber's salt|Glauber's salts|salt +glauber's salts|2 +(noun)|Glauber's salt|Glauber's salts|salt +(noun)|Glauber's salt|Glauber's salts|salt +glaucium|1 +(noun)|Glaucium|genus Glaucium|dilleniid dicot genus +glaucium flavum|1 +(noun)|horn poppy|horned poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower +glaucoma|1 +(noun)|eye disease +glaucomys|1 +(noun)|Glaucomys|genus Glaucomys|mammal genus +glaucomys sabrinus|1 +(noun)|northern flying squirrel|Glaucomys sabrinus|American flying squirrel +glaucomys volans|1 +(noun)|southern flying squirrel|Glaucomys volans|American flying squirrel +glauconite|1 +(noun)|mineral +glaucous|1 +(adj)|opaque +glaucous bristlegrass|1 +(noun)|yellow bristlegrass|yellow bristle grass|yellow foxtail|Setaria glauca|foxtail|foxtail grass +glaux|1 +(noun)|Glaux|genus Glaux|dicot genus|magnoliopsid genus +glaux maritima|1 +(noun)|sea milkwort|sea trifoly|black saltwort|Glaux maritima|herb|herbaceous plant +glaze|7 +(noun)|topping +(noun)|polish|gloss|glossiness|burnish +(noun)|coating|finish|finishing +(verb)|coat|surface|glaze over +(verb)|glass|glass over|glaze over|change +(verb)|glass|supply|provide|render|furnish +(verb)|sugarcoat|candy|sweeten|dulcify|edulcorate|dulcorate +glaze over|2 +(verb)|film over|blur +(verb)|glaze|glass|glass over|change +glazed|4 +(adj)|glassy|empty +(adj)|glazed |glassed +(adj)|glazed |shiny|glassy|vitreous|vitrified|glossy|calendered|icy +(adj)|coated +glazer|1 +(noun)|glass cutter|glass-cutter|glassworker|glazier|craftsman|artisan|journeyman|artificer +glazier|1 +(noun)|glass cutter|glass-cutter|glassworker|glazer|craftsman|artisan|journeyman|artificer +gleam|5 +(noun)|gleaming|glow|lambency|radiance|radiancy|shine|effulgence|refulgence|refulgency +(noun)|gleaming|glimmer|flash +(verb)|glitter|glisten|glint|shine|look|appear|seem +(verb)|glimmer|radiate +(verb)|appear|come along +gleaming|3 +(adj)|agleam|nitid|bright +(noun)|gleam|glimmer|flash +(noun)|gleam|glow|lambency|radiance|radiancy|shine|effulgence|refulgence|refulgency +glean|1 +(verb)|reap|harvest|gather|garner|collect|pull together +gleaner|2 +(noun)|farmhand|fieldhand|field hand|farm worker +(noun)|collector|gatherer|accumulator +gleba|1 +(noun)|reproductive structure +glebe|1 +(noun)|estate|land|landed estate|acres|demesne +glebe house|1 +(noun)|parsonage|vicarage|rectory +glechoma|1 +(noun)|Glechoma|genus Glechoma|asterid dicot genus +glechoma hederaceae|1 +(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +gleditsia|1 +(noun)|Gleditsia|genus Gleditsia|rosid dicot genus +gleditsia aquatica|1 +(noun)|water locust|swamp locust|Gleditsia aquatica|locust tree|locust +gleditsia triacanthos|1 +(noun)|honey locust|Gleditsia triacanthos|locust tree|locust +glee|2 +(noun)|hilarity|mirth|mirthfulness|gleefulness|gaiety|merriment +(noun)|gloat|gloating|satisfaction +glee club|1 +(noun)|club|society|guild|gild|lodge|order +gleeful|1 +(adj)|elated|joyful|jubilant|joyous +gleefully|1 +(adv)|joyously|joyfully +gleefulness|1 +(noun)|hilarity|mirth|mirthfulness|glee|gaiety|merriment +gleet|1 +(noun)|pus|purulence|suppuration|ichor|sanies|festering +gleichenia|1 +(noun)|Gleichenia|genus Gleichenia|fern genus +gleichenia flabellata|1 +(noun)|umbrella fern|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern +gleicheniaceae|1 +(noun)|Gleicheniaceae|family Gleicheniaceae|fern family +glen|1 +(noun)|valley|vale +glen gebhard|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +glenda jackson|1 +(noun)|Jackson|Glenda Jackson|actress|politician|politico|pol|political leader +glendower|1 +(noun)|Glendower|Owen Glendower|headman|tribal chief|chieftain +glengarry|1 +(noun)|Glengarry|cap +glenn|1 +(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut|spaceman|cosmonaut|senator +glenn curtiss|1 +(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist +glenn hammond curtiss|1 +(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist +glenn miller|1 +(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader +glenn t. seaborg|1 +(noun)|Seaborg|Glenn T. Seaborg|Gelnn Theodore Seaborg|chemist +glenoid cavity|1 +(noun)|glenoid fossa|pit|fossa +glenoid fossa|2 +(noun)|mandibular fossa|pit|fossa +(noun)|glenoid cavity|pit|fossa +glia|1 +(noun)|neuroglia|interstitial tissue +glial|1 +(adj)|interstitial tissue +glial cell|1 +(noun)|neurogliacyte|neuroglial cell|somatic cell|vegetative cell +glib|3 +(adj)|superficial +(adj)|pat|slick|plausible +(adj)|glib-tongued|smooth-tongued|persuasive +glib-tongued|1 +(adj)|glib|smooth-tongued|persuasive +glibly|1 +(adv)|slickly +glibness|1 +(noun)|slickness|superficiality|shallowness +glide|6 +(noun)|semivowel|phone|speech sound|sound +(noun)|slide|coast|motion|movement|move +(noun)|gliding|sailplaning|soaring|sailing|flight|flying +(verb)|travel|go|move|locomote|glide by +(verb)|fly|aviate|pilot +(verb)|move|displace +glide-bomb|1 +(verb)|bombard|bomb +glide by|1 +(verb)|elapse|lapse|pass|slip by|slip away|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +glide path|1 +(noun)|approach path|approach|glide slope|air lane|flight path|airway|skyway +glide slope|1 +(noun)|approach path|approach|glide path|air lane|flight path|airway|skyway +glider|1 +(noun)|sailplane|heavier-than-air craft +gliding|1 +(noun)|glide|sailplaning|soaring|sailing|flight|flying +gliding bacteria|1 +(noun)|myxobacteria|myxobacterium|myxobacter|slime bacteria|eubacteria|eubacterium|true bacteria +gliding joint|1 +(noun)|articulatio plana|synovial joint|articulatio synovialis|diarthrosis +glimmer|3 +(noun)|gleam|gleaming|flash +(noun)|inkling|intimation|glimmering|suggestion +(verb)|gleam|radiate +glimmering|2 +(adj)|glimmery|bright +(noun)|inkling|intimation|glimmer|suggestion +glimmery|1 +(adj)|glimmering|bright +glimpse|4 +(noun)|glance|coup d'oeil|look|looking|looking at +(noun)|view|aspect|prospect|scene|vista|panorama +(noun)|indication|indicant +(verb)|see +glinka|1 +(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer +glint|4 +(noun)|flicker|spark|flash +(noun)|brightness +(verb)|glitter|glisten|gleam|shine|look|appear|seem +(verb)|glance|peek|look +glinting|1 +(adj)|aglitter|coruscant|fulgid|glistering|glittering|glittery|scintillant|scintillating|sparkling|sparkly|bright +glioblastoma|1 +(noun)|spongioblastoma|brain tumor|brain tumour +glioma|1 +(noun)|brain tumor|brain tumour +glipzide|1 +(noun)|Glucotrol|antidiabetic|antidiabetic drug +gliricidia|1 +(noun)|tree +gliridae|1 +(noun)|Gliridae|family Gliridae|mammal family +glis|1 +(noun)|Glis|genus Glis|mammal genus +glis glis|1 +(noun)|loir|Glis glis|dormouse +glissade|2 +(noun)|dance step|step +(verb)|dance +glissando|1 +(noun)|tune|melody|air|strain|melodic line|line|melodic phrase +glisten|2 +(noun)|glitter|glister|scintillation|sparkle|brightness +(verb)|glitter|glint|gleam|shine|look|appear|seem +glistening|1 +(adj)|glossy|lustrous|sheeny|shiny|shining|bright +glister|1 +(noun)|glitter|glisten|scintillation|sparkle|brightness +glistering|1 +(adj)|aglitter|coruscant|fulgid|glinting|glittering|glittery|scintillant|scintillating|sparkling|sparkly|bright +glitch|1 +(noun)|bug|defect|fault|flaw +glitter|3 +(noun)|glister|glisten|scintillation|sparkle|brightness +(noun)|sparkle|coruscation|flash +(verb)|glisten|glint|gleam|shine|look|appear|seem +glittering|1 +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittery|scintillant|scintillating|sparkling|sparkly|bright +glittery|1 +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|scintillant|scintillating|sparkling|sparkly|bright +glitz|1 +(noun)|flashiness|garishness|gaudiness|loudness|brashness|meretriciousness|tawdriness|tastelessness +gloaming|1 +(noun)|twilight|dusk|nightfall|evenfall|fall|crepuscule|crepuscle|hour|time of day +gloat|3 +(noun)|gloating|glee|satisfaction +(verb)|triumph|crow|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade +(verb)|look +gloating|1 +(noun)|gloat|glee|satisfaction +glob|1 +(noun)|ball|clod|lump|clump|chunk|agglomeration +global|2 +(adj)|planetary|world|worldwide|international +(adj)|ball-shaped|globose|globular|orbicular|spheric|spherical|round |circular +global aphasia|1 +(noun)|total aphasia|aphasia +global climate change|1 +(noun)|climate change|temperature change +global organization|1 +(noun)|world organization|world organisation|international organization|international organisation|alliance|coalition|alignment|alinement +global positioning system|1 +(noun)|Global Positioning System|GPS|navigational system +global warming|1 +(noun)|heating|warming +globalisation|1 +(noun)|globalization|economic process +globalise|1 +(verb)|globalize|widen|broaden|extend +globalization|1 +(noun)|globalisation|economic process +globalize|1 +(verb)|globalise|widen|broaden|extend +globe|3 +(noun)|Earth|world|terrestrial planet +(noun)|ball|orb|sphere +(noun)|sphere|model|simulation +globe-trot|1 +(verb)|travel|journey +globe amaranth|1 +(noun)|bachelor's button|Gomphrena globosa|flower +globe artichoke|2 +(noun)|artichoke|artichoke plant|Cynara scolymus|vegetable +(noun)|artichoke|vegetable|veggie +globe flower|2 +(noun)|globeflower|herb|herbaceous plant +(noun)| +globe lily|1 +(noun)|fairy lantern|liliaceous plant +globe mallow|1 +(noun)|false mallow|mallow +globe pepper|1 +(noun)|sweet pepper +globe thistle|1 +(noun)|herb|herbaceous plant +globefish|1 +(noun)|puffer|blowfish|plectognath|plectognath fish +globeflower|1 +(noun)|globe flower|herb|herbaceous plant +globetrotter|1 +(noun)|world traveler|cosmopolitan|cosmopolite +globicephala|1 +(noun)|Globicephala|genus Globicephala|mammal genus +globicephala melaena|1 +(noun)|pilot whale|black whale|common blackfish|blackfish|Globicephala melaena|dolphin +globigerina|1 +(noun)|foram|foraminifer +globigerinidae|1 +(noun)|Globigerinidae|family Globigerinidae|protoctist family +globin|1 +(noun)|hematohiston|haematohiston|simple protein +globose|1 +(adj)|ball-shaped|global|globular|orbicular|spheric|spherical|round |circular +globosity|1 +(noun)|sphericity|sphericalness|globularness|rotundity|roundness +globular|1 +(adj)|ball-shaped|global|globose|orbicular|spheric|spherical|round |circular +globular pearlite|1 +(noun)|granular pearlite|pearlite +globularness|1 +(noun)|sphericity|sphericalness|globosity|rotundity|roundness +globule|1 +(noun)|ball|globe|orb +globulin|1 +(noun)|simple protein +globus pallidus|1 +(noun)|pallidum|paleostriatum|basal ganglion +glochid|1 +(noun)|glochidium|spine|thorn|prickle|pricker|sticker +glochidium|1 +(noun)|glochid|spine|thorn|prickle|pricker|sticker +glockenspiel|1 +(noun)|orchestral bells|percussion instrument|percussive instrument +glogg|1 +(noun)|punch +glom|2 +(verb)|hook|snitch|thieve|cop|knock off|steal +(verb)|get|acquire +glomerular|1 +(adj)|capillary|capillary vessel +glomerular capsule|1 +(noun)|Bowman's capsule|capsula glomeruli|membrane|tissue layer +glomerule|1 +(noun)|cyme +glomerulonephritis|1 +(noun)|nephritis|Bright's disease +glomerulus|1 +(noun)|capillary|capillary vessel +gloom|3 +(noun)|somberness|sombreness|semidarkness +(noun)|gloominess|somberness|melancholy|apprehension|apprehensiveness|dread +(noun)|gloominess|glumness|atmosphere|ambiance|ambience +gloomful|1 +(adj)|glooming|gloomy|dark +gloominess|3 +(noun)|gloom|glumness|atmosphere|ambiance|ambience +(noun)|gloom|somberness|melancholy|apprehension|apprehensiveness|dread +(noun)|lugubriousness|uncheerfulness +glooming|1 +(adj)|gloomy|gloomful|dark +gloomy|6 +(adj)|grim|darkening|hopeless +(adj)|dingy|dismal|drab|drear|dreary|sorry|cheerless |uncheerful +(adj)|glooming|gloomful|dark +(adj)|depressing|depressive|saddening|sad +(adj)|glum|long-faced|dejected +(adj)|blue|dark|depressing|disconsolate|dismal|dispiriting|grim|cheerless |uncheerful +gloomy gus|1 +(noun)|sourpuss|picklepuss|gloomy Gus|pouter|unwelcome person|persona non grata +gloria may josephine svensson|1 +(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress +gloria steinem|1 +(noun)|Steinem|Gloria Steinem|feminist|women's rightist|women's liberationist|libber +gloria swanson|1 +(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress +glorification|3 +(noun)|glory|honor|honour|laurels +(noun)|idealization|idealisation|admiration|appreciation +(noun)|adoration|idolization|idolisation +glorified|1 +(adj)|canonized|canonised|authorized |authorised +glorify|4 +(verb)|laud|extol|exalt|proclaim|praise +(verb)|change|alter|modify +(verb)|transfigure|spiritualize|change|alter|modify +(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise +gloriole|1 +(noun)|aura|aureole|halo|nimbus|glory|light|lightness +gloriosa|1 +(noun)|glory lily|climbing lily|creeping lily|Gloriosa superba|poisonous plant +gloriosa superba|1 +(noun)|gloriosa|glory lily|climbing lily|creeping lily|Gloriosa superba|poisonous plant +glorious|5 +(adj)|glorious |bright|celebrated|historied|storied|divine|elysian|inspired|empyreal|empyrean|sublime|illustrious|incandescent|lustrous|known +(adj)|illustrious|redoubtable|respected|proud +(adj)|blessed |blest +(adj)|brilliant|magnificent|splendid|impressive +(adj)|resplendent|splendid|splendiferous|beautiful +glorious revolution|1 +(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution +glory|4 +(noun)|glorification|honor|honour|laurels +(noun)|resplendence|resplendency|beauty +(noun)|aura|aureole|halo|nimbus|gloriole|light|lightness +(verb)|exult|rejoice|triumph|jubilate +glory fern|1 +(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|Adiantum tenerum farleyense|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum +glory hole|1 +(noun)|lazaretto|cabinet|locker|storage locker +glory lily|1 +(noun)|gloriosa|climbing lily|creeping lily|Gloriosa superba|poisonous plant +glory pea|1 +(noun)|clianthus|shrub|bush +gloss|8 +(noun)|rubric|explanation|account +(noun)|glossary|wordbook +(noun)|polish|glossiness|burnish|radiance|radiancy|shine|effulgence|refulgence|refulgency|smoothness +(noun)|semblance|color|colour|appearance|visual aspect +(verb)|polish|smooth|smoothen|shine|gloss over|gloss over +(verb)|comment|annotate|interpret +(verb)|translate|interpret|render +(verb)|color|colour|apologize|apologise|excuse|justify|rationalize|rationalise +gloss over|2 +(verb)|skate over|smooth over|slur over|skimp over|treat|handle|do by +(verb)|whitewash|sleek over|hush up|cover|cover up +glossa|1 +(noun)|tongue|lingua|clapper|organ|articulator +glossalgia|1 +(noun)|glossodynia|pain|hurting +glossary|1 +(noun)|gloss|wordbook +glossina|1 +(noun)|tsetse fly|tsetse|tzetze fly|tzetze|fly +glossiness|1 +(noun)|polish|gloss|burnish|radiance|radiancy|shine|effulgence|refulgence|refulgency|smoothness +glossinidae|1 +(noun)|Glossinidae|family Glossinidae|arthropod family +glossitis|1 +(noun)|inflammation|redness|rubor +glossodia|1 +(noun)|Glossodia|genus Glossodia|monocot genus|liliopsid genus +glossodynia|1 +(noun)|glossalgia|pain|hurting +glossodynia exfoliativa|1 +(noun)|Moeller's glossitis|glossitis +glossolalia|1 +(noun)|pathology +glossopharyngeal|1 +(adj)|organ|articulator|tubular cavity +glossopharyngeal nerve|1 +(noun)|nervus glossopharyngeus|ninth cranial nerve|cranial nerve +glossopsitta|1 +(noun)|Glossopsitta|genus Glossopsitta|bird genus +glossopsitta versicolor|1 +(noun)|varied Lorikeet|Glossopsitta versicolor|lorikeet +glossoptosis|1 +(noun)|prolapse|prolapsus|descensus +glossy|3 +(adj)|satiny|sleek|silken|silky|silklike|slick|smooth +(adj)|calendered|glazed |shiny +(adj)|glistening|lustrous|sheeny|shiny|shining|bright +glossy snake|1 +(noun)|Arizona elegans|colubrid snake|colubrid +glottal|1 +(adj)|speech organ|vocal organ +glottal catch|1 +(noun)|glottal stop|glottal plosive|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive +glottal plosive|1 +(noun)|glottal stop|glottal catch|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive +glottal stop|1 +(noun)|glottal plosive|glottal catch|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive +glottis|1 +(noun)|speech organ|vocal organ +glottis spuria|1 +(noun)|rima vestibuli|rima respiratoria|false glottis|rima +glottis vera|1 +(noun)|rima glottidis|rima vocalis|true glottis|rima +glottochronological|1 +(adj)|chronology +glottochronology|1 +(noun)|chronology +gloucester|2 +(noun)|Gloucester|town +(noun)|Gloucester|city|metropolis|urban center +gloucestershire|1 +(noun)|Gloucestershire|county +glove|3 +(noun)|baseball glove|baseball mitt|mitt|baseball equipment +(noun)|gloves|handwear|hand wear +(noun)|boxing glove|boxing equipment +glove anesthesia|1 +(noun)|conversion disorder|conversion reaction|conversion hysteria +glove compartment|1 +(noun)|compartment +glove doll|1 +(noun)|hand puppet|glove puppet|puppet +glove leather|1 +(noun)|leather +glove puppet|1 +(noun)|hand puppet|glove doll|puppet +gloved|1 +(adj)|gloved |gauntleted +gloveless|1 +(adj)|gloveless +gloves|4 +(noun)|glove|handwear|hand wear +(noun)|baseball glove|glove|baseball mitt|mitt|baseball equipment +(noun)|glove|handwear|hand wear +(noun)|boxing glove|glove|boxing equipment +glow|12 +(noun)|freshness|good health|healthiness +(noun)|luminescence|luminosity|brightness|brightness level|luminance|luminousness|light +(noun)|incandescence|light|visible light|visible radiation +(noun)|feeling +(noun)|light|visible light|visible radiation +(noun)|radiance|glowing|light|visible light|visible radiation +(noun)|gleam|gleaming|lambency|radiance|radiancy|shine|effulgence|refulgence|refulgency +(verb)|radiate +(verb)|beam|radiate|shine|look|appear|seem +(verb)|burn|shine|beam +(verb)|feel|experience +(verb)|beam|radiate|shine|feel|experience +glow lamp|1 +(noun)|glow tube|gas-discharge tube +glow tube|1 +(noun)|glow lamp|gas-discharge tube +glower|3 +(noun)|glare|stare +(verb)|glare|stare +(verb)|frown|lour|lower|grimace|make a face|pull a face +glowering|1 +(adj)|dark|dour|glum|moody|morose|saturnine|sour|sullen|ill-natured +glowing|3 +(adj)|aglow|lambent|lucent|luminous|bright +(adj)|enthusiastic +(noun)|radiance|glow|light|visible light|visible radiation +glowworm|1 +(noun)|firefly|lightning bug +gloxinia|1 +(noun)|houseplant +gloxinia perennis|1 +(noun)|Canterbury bell|Gloxinia perennis|gloxinia +gloxinia spesiosa|1 +(noun)|florist's gloxinia|Sinningia speciosa|Gloxinia spesiosa|gloxinia +glucagon|1 +(noun)|hormone|endocrine|internal secretion +glucinium|1 +(noun)|beryllium|Be|atomic number 4|metallic element|metal +gluck|1 +(noun)|Gluck|Christoph Willibald von Gluck|composer +glucocorticoid|1 +(noun)|hormone|endocrine|internal secretion|corticosteroid|corticoid|adrenal cortical steroid +glucophage|1 +(noun)|metformin|Glucophage|antidiabetic|antidiabetic drug +glucose|1 +(noun)|aldohexose +glucose tolerance test|1 +(noun)|diagnostic test|diagnostic assay +glucoside|1 +(noun)|glycoside +glucosuria|1 +(noun)|glycosuria +glucotrol|1 +(noun)|glipzide|Glucotrol|antidiabetic|antidiabetic drug +glue|3 +(noun)|gum|mucilage|cement +(verb)|paste|attach +(verb)|fasten +glued|1 +(adj)|pasted|affixed +gluey|1 +(adj)|glutinous|gummy|mucilaginous|pasty|sticky|viscid|viscous|adhesive +glueyness|1 +(noun)|cohesiveness|gluiness|gumminess|ropiness|viscidity|viscidness|viscosity|viscousness +glug|1 +(verb)|sound|go +gluiness|1 +(noun)|cohesiveness|glueyness|gumminess|ropiness|viscidity|viscidness|viscosity|viscousness +glum|2 +(adj)|gloomy|long-faced|dejected +(adj)|dark|dour|glowering|moody|morose|saturnine|sour|sullen|ill-natured +glume|1 +(noun)|bract +glumly|1 +(adv)|dourly|sullenly +glumness|2 +(noun)|gloom|gloominess|atmosphere|ambiance|ambience +(noun)|moroseness|sullenness|moodiness +gluon|1 +(noun)|gauge boson +glut|3 +(noun)|oversupply|surfeit|overabundance|overmuch|overmuchness|superabundance +(verb)|gorge|ingurgitate|overindulge|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +(verb)|flood|oversupply|supply|provide|render|furnish +glutamate|1 +(noun)|salt +glutamic acid|1 +(noun)|glutaminic acid|amino acid|aminoalkanoic acid +glutamic oxalacetic transaminase|1 +(noun)|glutamic oxaloacetic transaminase|transaminase|aminotransferase|aminopherase +glutamic oxaloacetic transaminase|1 +(noun)|glutamic oxalacetic transaminase|transaminase|aminotransferase|aminopherase +glutamine|1 +(noun)|amino acid|aminoalkanoic acid +glutaminic acid|1 +(noun)|glutamic acid|amino acid|aminoalkanoic acid +glutathione peroxidase|1 +(noun)|peroxidase|antioxidant +glute|1 +(noun)|gluteus|gluteus muscle|gluteal muscle|skeletal muscle|striated muscle +gluteal|1 +(adj)|skeletal muscle|striated muscle +gluteal artery|1 +(noun)|arteria glutes|artery|arteria|arterial blood vessel +gluteal muscle|1 +(noun)|gluteus|gluteus muscle|glute|skeletal muscle|striated muscle +gluteal vein|1 +(noun)|vena gluteus|vein|vena|venous blood vessel +glutelin|1 +(noun)|simple protein +gluten|1 +(noun)|protein +gluten-free diet|1 +(noun)|diet +gluten bread|1 +(noun)|bread|breadstuff|staff of life +glutethimide|1 +(noun)|Doriden|sedative|sedative drug|depressant|downer +gluteus|1 +(noun)|gluteus muscle|gluteal muscle|glute|skeletal muscle|striated muscle +gluteus maximus|1 +(noun)|gluteus|gluteus muscle|gluteal muscle|glute +gluteus medius|1 +(noun)|gluteus|gluteus muscle|gluteal muscle|glute +gluteus minimus|1 +(noun)|gluteus|gluteus muscle|gluteal muscle|glute +gluteus muscle|1 +(noun)|gluteus|gluteal muscle|glute|skeletal muscle|striated muscle +glutinosity|1 +(noun)|gelatinousness|glutinousness|viscosity|viscousness +glutinous|1 +(adj)|gluey|gummy|mucilaginous|pasty|sticky|viscid|viscous|adhesive +glutinousness|1 +(noun)|gelatinousness|glutinosity|viscosity|viscousness +glutted|1 +(adj)|overfull|full +glutton|2 +(noun)|gourmand|trencherman|eater|feeder +(noun)|Gulo gulo|wolverine|musteline mammal|mustelid|musteline +gluttonise|1 +(verb)|gluttonize|fress|eat +gluttonize|1 +(verb)|gluttonise|fress|eat +gluttonous|1 +(adj)|gluttonous |crapulous|crapulent|crapulous|edacious|esurient|rapacious|ravening|ravenous|voracious|wolfish|greedy|hoggish|piggish|piggy|porcine|swinish|overgreedy|too-greedy|scavenging|indulgent +gluttony|2 +(noun)|intemperance +(noun)|overeating|gula|mortal sin|deadly sin +glyburide|1 +(noun)|DiaBeta|Micronase|antidiabetic|antidiabetic drug +glyceraldehyde|1 +(noun)|glyceric aldehyde|aldehyde +glyceria|1 +(noun)|Glyceria|genus Glyceria|monocot genus|liliopsid genus +glyceria grandis|1 +(noun)|reed meadow grass|Glyceria grandis|manna grass|sweet grass +glyceric acid|1 +(noun)|acid +glyceric aldehyde|1 +(noun)|glyceraldehyde|aldehyde +glyceride|1 +(noun)|acylglycerol|glyceryl ester|animal oil +glycerin|1 +(noun)|glycerol|glycerine|alcohol +glycerin jelly|1 +(noun)|glyceryl ester +glycerinated gelatin|1 +(noun)|formulation|preparation +glycerine|1 +(noun)|glycerol|glycerin|alcohol +glycerite|1 +(noun)|glycerole|glyceryl ester +glycerogel|1 +(noun)|glycerogelatin|glyceryl ester +glycerogelatin|1 +(noun)|glycerogel|glyceryl ester +glycerol|1 +(noun)|glycerin|glycerine|alcohol +glycerol trimargarate|1 +(noun)|margarin|glyceryl ester +glycerol tripalmitate|1 +(noun)|tripalmitin|glyceryl ester +glycerol tristearate|1 +(noun)|tristearin|glyceryl ester +glycerole|1 +(noun)|glycerite|glyceryl ester +glycerolise|1 +(verb)|glycerolize|put|set|place|pose|position|lay +glycerolize|1 +(verb)|glycerolise|put|set|place|pose|position|lay +glyceryl|1 +(noun)|group|radical|chemical group +glyceryl ester|1 +(noun)|ester +glyceryl trinitrate|1 +(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +glycine|2 +(noun)|amino acid|aminoalkanoic acid +(noun)|Glycine|genus Glycine|rosid dicot genus +glycine max|1 +(noun)|soy|soya|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume|leguminous plant +glycogen|1 +(noun)|animal starch|polysaccharide|polyose +glycogenesis|2 +(noun)|organic process|biological process +(noun)|conversion|transition|changeover +glycogenic|1 +(adj)|polysaccharide|polyose +glycol|2 +(noun)|ethylene glycol|ethanediol|antifreeze +(noun)|diol|dihydric alcohol|alcohol +glycolic acid|1 +(noun)|glycollic acid|hydroxyacetic acid|acid +glycollic acid|1 +(noun)|glycolic acid|hydroxyacetic acid|acid +glycolysis|1 +(noun)|metabolism|metabolic process|metastasis +glycoprotein|1 +(noun)|conjugated protein|compound protein +glycoside|1 +(noun)|organic compound +glycosuria|1 +(noun)|symptom +glycyrrhiza|1 +(noun)|Glycyrrhiza|genus Glycyrrhiza|rosid dicot genus +glycyrrhiza glabra|1 +(noun)|licorice|liquorice|Glycyrrhiza glabra|herb|herbaceous plant +glycyrrhiza lepidota|1 +(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb|herbaceous plant +glyoxaline|1 +(noun)|imidazole|iminazole|base|alkali +glyph|1 +(noun)|glyptic art|glyptography +glyptic art|1 +(noun)|glyptography|carving +glyptics|1 +(noun)|lithoglyptics|glyptic art|glyptography +glyptography|2 +(noun)|glyptic art|carving +(noun)|art|artistic creation|artistic production +gm|1 +(noun)|gram|gramme|g|metric weight unit|weight unit +gmt|1 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time +gnaeus julius agricola|1 +(noun)|Agricola|Gnaeus Julius Agricola|general|full general +gnaeus pompeius magnus|1 +(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general|full general|statesman|solon|national leader +gnaphalium|1 +(noun)|Gnaphalium|genus Gnaphalium|asterid dicot genus +gnaphalium sylvaticum|1 +(noun)|chafeweed|wood cudweed|Gnaphalium sylvaticum|cudweed +gnarl|3 +(noun)|knot|distorted shape|distortion +(verb)|flex|bend|deform|twist|turn +(verb)|murmur|mutter|grumble|croak|complain|kick|plain|sound off|quetch|kvetch +gnarled|1 +(adj)|gnarly|knotted|knotty|knobbed|crooked +gnarly|1 +(adj)|gnarled|knotted|knotty|knobbed|crooked +gnash|1 +(verb)|grate|grind +gnat|2 +(noun)|dipterous insect|two-winged insects|dipteran|dipteron +(noun)|mosquito +gnatcatcher|1 +(noun)|warbler +gnathion|1 +(noun)|craniometric point +gnathostomata|1 +(noun)|Gnathostomata|superclass Gnathostomata|class +gnathostome|1 +(noun)|vertebrate|craniate +gnaw|2 +(verb)|chew|masticate|manducate|jaw|bite|seize with teeth +(verb)|erode|gnaw at|eat at|wear away|decay|crumble|delapidate +gnaw at|1 +(verb)|erode|gnaw|eat at|wear away|decay|crumble|delapidate +gnawer|1 +(noun)|rodent|gnawing animal|placental|placental mammal|eutherian|eutherian mammal +gnawing animal|1 +(noun)|rodent|gnawer|placental|placental mammal|eutherian|eutherian mammal +gnawing mammal|1 +(noun)|lagomorph|placental|placental mammal|eutherian|eutherian mammal +gneiss|1 +(noun)|metamorphic rock +gnetaceae|1 +(noun)|Gnetaceae|family Gnetaceae|gymnosperm family +gnetales|1 +(noun)|Gnetales|order Gnetales|plant order +gnetophyta|1 +(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class +gnetophytina|1 +(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class +gnetopsida|1 +(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class +gnetum|1 +(noun)|Gnetum gnemon|gymnospermous tree +gnetum gnemon|1 +(noun)|gnetum|Gnetum gnemon|gymnospermous tree +gnocchi|1 +(noun)|dumpling|dumplings +gnome|2 +(noun)|dwarf|fairy|faery|faerie|sprite +(noun)|maxim|axiom +gnomic|1 +(adj)|maxim|axiom +gnomish|1 +(adj)|small +gnomon|1 +(noun)|indicator +gnosis|1 +(noun)|intuition +gnostic|3 +(adj)|Gnostic|theological doctrine|religious doctrine|heresy|unorthodoxy +(adj)|gnostic +(noun)|Gnostic|advocate|advocator|proponent|exponent +gnosticism|1 +(noun)|Gnosticism|theological doctrine|religious doctrine|heresy|unorthodoxy +gnp|1 +(noun)|gross national product|GNP|value +gnu|1 +(noun)|wildebeest|antelope +gnu goat|1 +(noun)|takin|Budorcas taxicolor|goat antelope +go|31 +(adj)|go |a-ok|a-okay +(noun)|spell|tour|turn|shift|work shift|duty period +(noun)|Adam|ecstasy|XTC|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +(noun)|crack|fling|pass|whirl|offer|attempt|effort|endeavor|endeavour|try +(noun)|go game|board game +(verb)|travel|move|locomote|go on|go up|go by|go off|go out|go by|go up|go down|go down|go down|go under|go on|go around +(verb)|proceed|move|act|move +(verb)|go away|depart|exit|go out|get out|leave +(verb)|become|get|change state|turn +(verb)|run|be +(verb)|run|pass|lead|extend|be +(verb)|proceed|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|disappear|vanish|go away +(verb)|be +(verb)|sound|cause to be perceived +(verb)|function|work|operate|run +(verb)|run low|run short|end|stop|finish|terminate|cease +(verb)|move|run|change +(verb)|survive|last|live|live on|endure|hold up|hold out +(verb)|go with +(verb)|die|decease|perish|exit|pass away|expire|pass|change state|turn +(verb)|belong|be +(verb)|compare +(verb)|start|get going +(verb)|move +(verb)|blend|blend in|harmonize|harmonise|consort|accord|concord|fit in|agree +(verb)|lead|be +(verb)|fit|fit +(verb)|rifle|search +(verb)|plump|choose|take|select|pick out +(verb)|fail|go bad|give way|die|give out|conk out|break|break down|change +go-ahead|2 +(noun)|green light|traffic light|traffic signal|stoplight +(noun)|enterprise|enterprisingness|initiative|drive +go-around|1 +(noun)|overshoot|wave-off|landing approach +go-as-you-please|1 +(adj)|unconventional +go-between|1 +(noun)|mediator|intermediator|intermediary|intercessor|negotiator|negotiant|treater +go-cart|3 +(noun)|walker|baby-walker|framework|frame|framing +(noun)|handcart|pushcart|cart|wheeled vehicle +(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|pushchair|pusher|wheeled vehicle +go-getter|1 +(noun)|whizz-kid|whiz-kid|ball of fire|actor|doer|worker +go-kart|1 +(noun)|motor vehicle|automotive vehicle +go-slow|1 +(noun)|job action +go-to-meeting|1 +(adj)|Sunday-go-to-meeting|best +go a long way|1 +(verb)|suffice|do|answer|serve +go about|1 +(verb)|set about|approach|act|move +go across|1 +(verb)|pass|go through|travel|go|move|locomote +go after|2 +(verb)|chase|chase after|trail|tail|tag|give chase|dog|track|pursue|follow +(verb)|quest for|quest after|pursue|search|seek|look for +go against|3 +(verb)|violate|break +(verb)|transgress|offend|infract|violate|breach|break|disrespect +(verb)|buck|react|oppose +go ahead|1 +(verb)|plow ahead|act|move +go all out|1 +(verb)|give one's best|do one's best|do|perform +go along|3 +(verb)|play along|collaborate|join forces|cooperate|get together +(verb)|continue|go on|proceed|keep|act|move +(verb)|elapse|lapse|pass|slip by|glide by|slip away|go by|slide by|advance|progress|pass on|move on|march on|go on +go around|5 +(verb)|suffice|do|answer|serve +(verb)|spread|circulate|travel|go|move|locomote +(verb)|outflank|travel|go|move|locomote +(verb)|revolve|rotate|turn +(verb)|bypass|short-circuit|get around|avoid +go away|4 +(verb)|go|depart|exit|go out|get out|leave +(verb)|leave|go forth +(verb)|vanish|disappear|end|stop|finish|terminate|cease +(verb)|disappear|vanish +go back|4 +(verb)|return|get back|come back|travel|go|move|locomote +(verb)|date back|date from|originate|initiate|start +(verb)|recur|hark back|return|come back|recall +(verb)|recover|recuperate|revert|return|retrovert|regress|turn back +go back on|1 +(verb)|renege|renege on|renegue on|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate +go bad|2 +(verb)|fail|give way|die|give out|conk out|go|break|break down|change +(verb)|spoil|decay +go ballistic|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|rage +go board|1 +(noun)|board|gameboard +go by|4 +(verb)|elapse|lapse|pass|slip by|glide by|slip away|slide by|go along|advance|progress|pass on|move on|march on|go on +(verb)|travel by|pass by|surpass|go past|pass|travel|go|move|locomote +(verb)|go under +(verb)|follow|conform to +go deep|1 +(verb)|go far|run|go|pass|lead|extend +go down|6 +(verb)|descend|fall|come down|travel|go|move|locomote +(verb)|sink|settle|go under|descend|fall|come down +(verb)|decline|wane|decrease|diminish|lessen|fall +(verb)|lose +(verb)|set|go under|descend|fall|come down +(verb)|crash|fail|go bad|give way|die|give out|conk out|go|break|break down +go down on|1 +(verb)|fellate|blow|stimulate|excite|stir +go dutch|1 +(verb)|go Dutch|pay +go far|2 +(verb)|arrive|make it|get in|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|go deep|run|go|pass|lead|extend +go fish|1 +(noun)|Go Fish|card game|cards +go for|5 +(verb)|apply|hold|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|accept|consent|react|respond +(verb)|hope|plan|be after +(verb)|fancy|take to|desire|want +(verb)|try for|compete|vie|contend +go for broke|1 +(verb)|gamble|chance|risk|hazard|take chances|adventure|run a risk|take a chance +go forth|2 +(verb)|leave|go away +(verb)|issue|emerge|come out|come forth|egress +go forward|1 +(verb)|proceed|continue|travel|go|move|locomote +go game|1 +(noun)|go|board game +go home|1 +(verb)|head home|return|go back|get back|come back +go in|1 +(verb)|enter|come in|get into|get in|go into|move into +go into|1 +(verb)|enter|come in|get into|get in|go in|move into +go off|6 +(verb)|abscond|bolt|absquatulate|decamp|run off|flee|fly|take flight +(verb)|explode|burst +(verb)|fire|discharge +(verb)|stop|halt +(verb)|come off|go over|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|implode|collapse|fall in|cave in|give|give way|break|founder +go off at half-cock|1 +(verb)|go off half-cocked|act|move +go off half-cocked|1 +(verb)|go off at half-cock|act|move +go on|5 +(verb)|continue|proceed|go along|keep|act|move +(verb)|happen|hap|pass off|occur|pass|fall out|come about|take place +(verb)|advance|progress|pass on|move on|march on|travel|go|move|locomote +(verb)|continue|carry on|proceed|talk|speak +(verb)|come up|come on|start|go|get going +go out|6 +(verb)|exit|get out|leave|move +(verb)|leave|go forth|go away +(verb)|leave|go forth|go away +(verb)|end|stop|finish|terminate|cease +(verb)|change +(verb)|go steady|date|see|consort|associate|affiliate|assort +go over|4 +(verb)|review|survey|inspect +(verb)|check|check up on|look into|check out|suss out|check over|check into|analyze|analyse|study|examine|canvass|canvas +(verb)|go off|come off|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|fall over|break down|collapse +go past|2 +(verb)|travel by|pass by|surpass|go by|pass|travel|go|move|locomote +(verb)|exceed|transcend|overstep|pass|top|excel|stand out|surpass +go steady|1 +(verb)|go out|date|see|consort|associate|affiliate|assort +go through|5 +(verb)|experience|undergo|see|participate|take part +(verb)|work through|run through|work +(verb)|pass|go across|travel|go|move|locomote +(verb)|devour|down|consume|eat +(verb)|follow through|follow up|follow out|carry out|implement|put through|complete|finish +go through the motions|1 +(verb)|make|pretend|make believe +go to|1 +(verb)|attend|be +go to bed|1 +(verb)|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +go to pieces|1 +(verb)|fall apart|break down|lose it|snap +go to pot|1 +(verb)|go to the dogs|deteriorate +go to sleep|1 +(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|retire +go to the dogs|1 +(verb)|go to pot|deteriorate +go to war|1 +(verb)|take arms|take up arms|war +go under|3 +(verb)|sink|settle|go down|descend|fall|go down|come down +(verb)|set|go down|descend|fall|go down|come down +(verb)|go by +go up|7 +(verb)|rise|lift|arise|move up|come up|uprise|travel|go|move|locomote +(verb)|rise|climb|grow +(verb)|approach|near|come on|draw near|draw close|come near|come|come up +(verb)|rise|lift|arise|move up|come up|uprise +(verb)|climb|climb up|mount|rise|lift|arise|move up|come up|uprise +(verb)|burn down|burn up|burn|combust +(verb)|ascend|travel|go|move|locomote +go with|3 +(verb)|attach to|accompany|come with +(verb)|side|choose|take|select|pick out +(verb)|collocate with|construe with|cooccur with|co-occur with|attach to|accompany|come with +go wrong|1 +(verb)|fail|miscarry +goa|1 +(noun)|Goa|state|province +goa bean|2 +(noun)|winged bean|winged pea|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine +(noun)|bean|edible bean +goa bean vine|1 +(noun)|winged bean|winged pea|goa bean|Manila bean|Psophocarpus tetragonolobus|vine +goa powder|1 +(noun)|araroba|Goa powder|chrysarobin|powder +goad|6 +(noun)|prod|device +(noun)|goading|prod|prodding|urging|spur|spurring|encouragement +(verb)|spur|encourage +(verb)|prod|incite|egg on +(verb)|prick|stab|jab +(verb)|needle|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +goaded|1 +(adj)|driven|involuntary |nonvoluntary|unvoluntary +goading|1 +(noun)|goad|prod|prodding|urging|spur|spurring|encouragement +goal|4 +(noun)|end|content|cognitive content|mental object +(noun)|score +(noun)|game equipment +(noun)|finish|destination|end +goal-directed|1 +(adj)|purposive|purposeful +goal-kick|2 +(noun)|kick|boot|kicking +(noun)|kick|boot|kicking +goal line|1 +(noun)|line +goalie|2 +(noun)|goalkeeper|goaltender|netkeeper|netminder|soccer player|hockey player|ice-hockey player +(noun)|goalkeeper|goaltender|netkeeper|position +goalkeeper|2 +(noun)|goalie|goaltender|netkeeper|netminder|soccer player|hockey player|ice-hockey player +(noun)|goalie|goaltender|netkeeper|position +goalless|1 +(adj)|scoreless|hitless|unsuccessful +goalmouth|1 +(noun)|area +goalpost|1 +(noun)|post +goaltender|2 +(noun)|goalkeeper|goalie|netkeeper|netminder|soccer player|hockey player|ice-hockey player +(noun)|goalkeeper|goalie|netkeeper|position +goat|4 +(noun)|caprine animal|bovid +(noun)|butt|laughingstock|stooge|victim|dupe +(noun)|Capricorn|Goat|person|individual|someone|somebody|mortal|human|soul +(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac|star sign|sign|mansion|house|planetary house +goat's foot|1 +(noun)|goatsfoot|Oxalis caprina|oxalis|sorrel|wood sorrel +goat's rue|2 +(noun)|catgut|wild sweet pea|Tephrosia virginiana|hoary pea +(noun)|goat rue|Galega officinalis|herb|herbaceous plant +goat antelope|1 +(noun)|bovid +goat cheese|1 +(noun)|chevre|cheese +goat grass|1 +(noun)|Aegilops triuncalis|grass +goat herder|1 +(noun)|goatherd|herder|herdsman|drover +goat rue|1 +(noun)|goat's rue|Galega officinalis|herb|herbaceous plant +goat willow|1 +(noun)|florist's willow|pussy willow|Salix caprea|sallow +goatee|1 +(noun)|beard|face fungus|whiskers +goateed|1 +(adj)|unshaven |unshaved +goatfish|1 +(noun)|red mullet|surmullet|Mullus surmuletus|mullet +goatherd|1 +(noun)|goat herder|herder|herdsman|drover +goats' milk|1 +(noun)|milk +goatsbeard|1 +(noun)|meadow salsify|shepherd's clock|Tragopogon pratensis|wildflower|wild flower +goatsfoot|1 +(noun)|goat's foot|Oxalis caprina|oxalis|sorrel|wood sorrel +goatskin|1 +(noun)|hide|fell +goatsucker|1 +(noun)|nightjar|caprimulgid|caprimulgiform bird +gob|3 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|sea dog|sailor|crewman +(noun)|ball|clod|glob|lump|clump|chunk +(noun)|trap|cakehole|hole|maw|yap|mouth|oral cavity|oral fissure|rima oris +gobbet|1 +(noun)|raw meat +gobble|3 +(noun)|cry +(verb)|bolt|eat|gobble up +(verb)|utter|emit|let out|let loose +gobble up|1 +(verb)|garbage down|shovel in|bolt down|eat +gobbledygook|1 +(noun)|jargon +gobbler|2 +(noun)|eater|feeder +(noun)|turkey cock|tom|tom turkey|turkey|Meleagris gallopavo +gobi|1 +(noun)|Gobi|Gobi Desert|desert +gobi desert|1 +(noun)|Gobi|Gobi Desert|desert +gobiesocidae|1 +(noun)|Gobiesocidae|family Gobiesocidae|fish family +gobiesox|1 +(noun)|Gobiesox|genus Gobiesox|fish genus +gobiesox strumosus|1 +(noun)|skillet fish|skilletfish|Gobiesox strumosus|clingfish +gobiidae|1 +(noun)|Gobiidae|family Gobiidae|fish family +gobio|1 +(noun)|Gobio|genus Gobio|fish genus +gobio gobio|1 +(noun)|gudgeon|Gobio gobio|cyprinid|cyprinid fish +goblet|2 +(noun)|glass|drinking glass +(noun)|chalice|cup +goblet cell|1 +(noun)|epithelial cell +goblin|1 +(noun)|hob|hobgoblin|evil spirit +gobs|4 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +(noun)|gob|ball|clod|glob|lump|clump|chunk +(noun)|trap|cakehole|hole|maw|yap|gob|mouth|oral cavity|oral fissure|rima oris +gobsmacked|1 +(adj)|surprised +goby|1 +(noun)|gudgeon|percoid fish|percoid|percoidean +god|4 +(noun)|God|Supreme Being|spiritual being|supernatural being +(noun)|deity|divinity|immortal|spiritual being|supernatural being +(noun)|superior|higher-up|superordinate +(noun)|idol|graven image|effigy|image|simulacrum +god's acre|1 +(noun)|churchyard|God's acre|yard +god's will|1 +(noun)|God's Will|omnipotence +god's wisdom|1 +(noun)|God's Wisdom|omniscience +god-awful|1 +(adj)|beastly|hellish|unpleasant +god-fearing|1 +(adj)|devout|pious|religious +god almighty|1 +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +god knows how|1 +(adv)|God knows how +god of war|1 +(noun)|war god|deity|divinity|god|immortal +god tree|1 +(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +godard|1 +(noun)|Godard|Jean Luc Godard|film maker|filmmaker|film producer|movie maker +godchild|1 +(noun)|baby|babe|infant +goddam|2 +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddamn|goddamned|infernal|cursed |curst +(adv)|goddamn|goddamned +goddamn|3 +(adj)|damn|cursed |curst +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamned|infernal|cursed |curst +(adv)|goddam|goddamned +goddamned|2 +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|infernal|cursed |curst +(adv)|goddam|goddamn +goddard|1 +(noun)|Goddard|Robert Hutchings Goddard|physicist +goddaughter|1 +(noun)|godchild +goddess|1 +(noun)|deity|divinity|god|immortal +godel|1 +(noun)|Godel|Kurt Godel|mathematician +godfather|2 +(noun)|godparent +(noun)|patron|sponsor|supporter +godforsaken|2 +(adj)|desert|waste|wild|inhospitable +(adj)|desolate|forlorn|lorn|forsaken +godhead|1 +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +godiva|1 +(noun)|Godiva|Lady Godiva|Lady|noblewoman|peeress +godless|1 +(adj)|irreverent|impious +godlessness|2 +(noun)|atheism|religious orientation +(noun)|ungodliness|impiety|impiousness +godlike|2 +(adj)|divine|superhuman +(adj)|divine|heavenly +godliness|1 +(noun)|piety|piousness +godly|2 +(adj)|reverent|worshipful|pious +(adj)|divine|heavenly +godmother|1 +(noun)|godparent +godown|1 +(noun)|warehouse|storage warehouse +godparent|1 +(noun)|patron|sponsor|supporter +godsend|1 +(noun)|boom|bonanza|gold rush|gravy|manna from heaven|windfall|bunce|happening|occurrence|natural event +godson|1 +(noun)|godchild +godspeed|1 +(noun)|Godspeed|success +godunov|1 +(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar|tsar|tzar +godwin austen|1 +(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak +godwit|1 +(noun)|shorebird|shore bird|limicoline bird +goebbels|1 +(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi|German Nazi|propagandist +goer|1 +(noun)|departer|leaver|migrant|migrator +goering|1 +(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi|German Nazi +goeteborg|1 +(noun)|Goteborg|Goeteborg|Gothenburg|city|metropolis|urban center|port +goethals|1 +(noun)|Goethals|George Washington Goethals|engineer|applied scientist|technologist +goethe|1 +(noun)|Goethe|Johann Wolfgang von Goethe|poet|novelist|dramatist|playwright +goethean|1 +(adj)|Goethean|Goethian|poet|novelist|dramatist|playwright +goethian|1 +(adj)|Goethean|Goethian|poet|novelist|dramatist|playwright +goethite|1 +(noun)|gothite|iron ore +gofer|1 +(noun)|employee +goffer|4 +(noun)|gopher|eager beaver|busy bee|live wire|sharpie|sharpy +(noun)|gauffer|iron|smoothing iron +(noun)|gauffer|frill|flounce|ruffle|furbelow +(verb)|gauffer|wave +goggle|1 +(verb)|gape|gawp|gawk|look +goggle-eye|1 +(noun)|bigeye scad|big-eyed scad|Selar crumenophthalmus|scad +goggle-eyed|1 +(adj)|openmouthed|popeyed|surprised +goggle box|1 +(noun)|television receiver|television|television set|tv|tv set|idiot box|boob tube|telly|receiver|receiving system +goggles|1 +(noun)|spectacles|specs|eyeglasses|glasses +gogh|1 +(noun)|van Gogh|Vincent van Gogh|Gogh|painter +gogol|1 +(noun)|Gogol|Nikolai Vasilievich Gogol|writer|author +goidelic|1 +(noun)|Gaelic|Goidelic|Erse|Celtic|Celtic language +going|4 +(adj)|active +(noun)|departure|going away|leaving|deed|feat|effort|exploit +(noun)|passing|loss|departure|exit|expiration|release|death|decease +(noun)|sledding|accomplishment|achievement +going-out-of-business sale|1 +(noun)|sale|cut-rate sale|sales event +going-over|2 +(noun)|examination|scrutiny +(noun)|castigation|earful|bawling out|chewing out|upbraiding|dressing down|rebuke|reproof|reproval|reprehension|reprimand +going ashore|1 +(noun)|debarkation|disembarkation|disembarkment +going away|1 +(noun)|departure|going|leaving|deed|feat|effort|exploit +going to jerusalem|1 +(noun)|musical chairs|going to Jerusalem|child's game +going under|1 +(noun)|foundering|sinking +goiter|1 +(noun)|goitre|struma|thyromegaly|disease +goitre|1 +(noun)|goiter|struma|thyromegaly|disease +goitrogen|1 +(noun)|compound|chemical compound +golan|1 +(noun)|Golan Heights|Golan|geographical area|geographic area|geographical region|geographic region +golan heights|1 +(noun)|Golan Heights|Golan|geographical area|geographic area|geographical region|geographic region +golconda|1 +(noun)|Golconda|source +gold|7 +(adj)|golden|gilded|metallic +(adj)|aureate|gilded|gilt|golden|chromatic +(noun)|precious metal +(noun)|amber|yellow|yellowness +(noun)|Au|atomic number 79|noble metal +(noun)|wealth|riches +(noun)|invaluableness|preciousness|pricelessness|valuableness +gold-bearing|1 +(adj)|auriferous|metallic +gold-beater|2 +(noun)|goldbeater|craftsman|artisan|journeyman|artificer +(noun)| +gold-crowned kinglet|1 +(noun)|Regulus satrata|kinglet +gold-plate|3 +(verb)|goldplate|gold plate|plate +(verb)| +(verb)| +gold-tail moth|1 +(noun)|Euproctis chrysorrhoea|lymantriid|tussock moth +gold-worker|2 +(noun)|goldsmith|goldworker|jewelry maker|jeweler|jeweller +(noun)| +gold braid|1 +(noun)|braid|braiding|trimming|trim|passementerie +gold coast|2 +(noun)|Ghana|Republic of Ghana|Gold Coast|African country|African nation +(noun)|vicinity|locality|neighborhood|neighbourhood|neck of the woods +gold digger|2 +(noun)|gold miner|gold panner|miner|mineworker +(noun)|woman|adult female +gold dust|1 +(noun)|gold|Au|atomic number 79 +gold fern|1 +(noun)|Pityrogramma chrysophylla|fern +gold fever|1 +(noun)|fever +gold foil|1 +(noun)|foil +gold leaf|1 +(noun)|gold foil +gold medal|1 +(noun)|trophy|prize|decoration|laurel wreath|medal|medallion|palm|ribbon +gold mine|3 +(noun)|goldmine|source +(noun)|goldmine|mine +(noun)| +gold miner|1 +(noun)|gold digger|gold panner|miner|mineworker +gold of pleasure|1 +(noun)|Camelina sativa|crucifer|cruciferous plant +gold panner|1 +(noun)|gold miner|gold digger|miner|mineworker +gold plate|5 +(noun)|tableware +(noun)|plating|metal plating +(verb)|goldplate|gold-plate|plate +(verb)| +(verb)| +gold rush|2 +(noun)|boom|bonanza|gravy|godsend|manna from heaven|windfall|bunce|happening|occurrence|natural event +(noun)|migration +gold standard|2 +(noun)|standard|monetary standard +(noun)|paragon|idol|perfection|beau ideal +golda meir|1 +(noun)|Meir|Golda Meir|statesman|solon|national leader +goldbeater|1 +(noun)|gold-beater|craftsman|artisan|journeyman|artificer +goldberg|1 +(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist +goldbrick|6 +(noun)|soldier|slacker|shirker +(noun)|goof-off|ne'er-do-well|good-for-nothing|good-for-naught|idler|loafer|do-nothing|layabout|bum +(noun)|block|cube +(noun)|fraud|fraudulence|dupery|hoax|humbug|put-on +(verb)|victimize|swindle|rook|nobble|diddle|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +(verb)|fiddle|shirk|shrink from|avoid +goldbricking|1 +(noun)|shirking|slacking|soldiering|goofing off|evasion|escape|dodging +goldcrest|1 +(noun)|golden-crested kinglet|Regulus regulus|kinglet +goldcup|1 +(noun)|buttercup|butterflower|butter-flower|crowfoot|kingcup|herb|herbaceous plant +golden|6 +(adj)|aureate|gilded|gilt|gold|chromatic +(adj)|halcyon|prosperous|happy +(adj)|gold|gilded|metallic +(adj)|favored|fortunate|blessed |blest +(adj)|euphonious |euphonous +(adj)|favorable|auspicious +golden-beard penstemon|1 +(noun)|Penstemon barbatus|wildflower|wild flower +golden-crested kinglet|1 +(noun)|goldcrest|Regulus regulus|kinglet +golden-eyed fly|1 +(noun)|goldeneye|green lacewing|chrysopid|stink fly +golden age|3 +(noun)|flower|prime|peak|heyday|bloom|blossom|efflorescence|flush +(noun)|historic period|age +(noun)|Golden Age|time period|period of time|period +golden ager|1 +(noun)|oldster|old person|senior citizen|adult|grownup +golden algae|1 +(noun)|alga|algae +golden aster|1 +(noun)|wildflower|wild flower +golden barrel cactus|1 +(noun)|Echinocactus grusonii|echinocactus|barrel cactus +golden boy|1 +(noun)|wonder boy|man|adult male +golden buttons|1 +(noun)|tansy|scented fern|Tanacetum vulgare|composite|composite plant +golden calf|1 +(noun)|idol|graven image|god +golden calla|1 +(noun)|calla lily|calla|arum lily|Zantedeschia aethiopica +golden chain|1 +(noun)|common laburnum|golden rain|Laburnum anagyroides|flowering shrub +golden chinkapin|1 +(noun)|giant chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree +golden clematis|1 +(noun)|Clematis tangutica|clematis +golden club|1 +(noun)|Orontium aquaticum|aquatic plant|water plant|hydrophyte|hydrophytic plant +golden crown beard|1 +(noun)|cowpen daisy|golden crownbeard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +golden crownbeard|1 +(noun)|cowpen daisy|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +golden cup|1 +(noun)|Mexican tulip poppy|Hunnemania fumariifolia|poppy +golden delicious|1 +(noun)|Golden Delicious|Yellow Delicious|Delicious +golden eagle|1 +(noun)|Aquila chrysaetos|eagle|bird of Jove +golden everlasting|1 +(noun)|strawflower|yellow paper daisy|Helichrysum bracteatum|everlasting|everlasting flower +golden fairy lantern|1 +(noun)|yellow globe lily|Calochortus amabilis|globe lily|fairy lantern +golden fern|2 +(noun)|Pityrogramma calomelanos aureoflava|fern +(noun)|leather fern|Acrostichum aureum|fern +golden fig|1 +(noun)|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree +golden fleece|1 +(noun)|Golden Fleece|sheepskin|fleece +golden gate|1 +(noun)|Golden Gate|strait|sound +golden gate bridge|1 +(noun)|Golden Gate Bridge|suspension bridge +golden glow|1 +(noun)|double gold|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower|Rudbeckia laciniata +golden gram|1 +(noun)|mung|mung bean|green gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +golden groundsel|1 +(noun)|golden ragwort|Packera aurea|Senecio aureus|herb|herbaceous plant +golden hamster|1 +(noun)|Syrian hamster|Mesocricetus auratus|hamster +golden handshake|1 +(noun)|severance agreement +golden heather|1 +(noun)|false heather|Hudsonia ericoides|subshrub|suffrutex +golden honey plant|1 +(noun)|wingstem|golden ironweed|yellow ironweed|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +golden horde|1 +(noun)|Golden Horde|horde +golden ironweed|1 +(noun)|wingstem|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +golden larch|1 +(noun)|Pseudolarix amabilis|conifer|coniferous tree +golden maidenhair|1 +(noun)|common polypody|adder's fern|wall fern|golden polypody|sweet fern|Polypodium vulgare|polypody +golden marguerite|1 +(noun)|yellow chamomile|dyers' chamomile|Anthemis tinctoria|composite|composite plant +golden mean|2 +(noun)|golden section|proportion|proportionality +(noun)|moderation|moderateness +golden mole|1 +(noun)|mole +golden oak mushroom|1 +(noun)|shiitake|shiitake mushroom|Chinese black mushroom|Oriental black mushroom|Lentinus edodes|fungus +golden oldie|1 +(noun)|oldie|song +golden oriole|1 +(noun)|Oriolus oriolus|Old World oriole|oriole +golden parachute|1 +(noun)|shark repellent|porcupine provision +golden pea|1 +(noun)|false lupine|yellow pea|Thermopsis macrophylla|bush pea +golden pheasant|1 +(noun)|Chrysolophus pictus|pheasant +golden pholiota|1 +(noun)|Pholiota aurea|agaric +golden plover|1 +(noun)|plover +golden polypody|2 +(noun)|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern +(noun)|common polypody|adder's fern|wall fern|golden maidenhair|sweet fern|Polypodium vulgare|polypody +golden pothos|1 +(noun)|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana +golden potto|1 +(noun)|angwantibo|Arctocebus calabarensis|lemur +golden ragwort|1 +(noun)|golden groundsel|Packera aurea|Senecio aureus|herb|herbaceous plant +golden rain|1 +(noun)|common laburnum|golden chain|Laburnum anagyroides|flowering shrub +golden retriever|1 +(noun)|retriever +golden rule|2 +(noun)|rule|prescript +(noun)|Golden Rule|teaching|precept|commandment +golden saxifrage|1 +(noun)|golden spleen|aquatic plant|water plant|hydrophyte|hydrophytic plant +golden seal|2 +(noun)|goldenseal|yellow root|turmeric root|Hydrastis Canadensis|herb|herbaceous plant +(noun)| +golden section|1 +(noun)|golden mean|proportion|proportionality +golden shiner|1 +(noun)|Notemigonus crysoleucas|shiner +golden shower tree|1 +(noun)|drumstick tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia +golden spleen|1 +(noun)|golden saxifrage|aquatic plant|water plant|hydrophyte|hydrophytic plant +golden star|1 +(noun)|golden stars|Bloomeria crocea|liliaceous plant +golden stars|2 +(noun)|golden star|Bloomeria crocea|liliaceous plant +(noun)|golden star|Bloomeria crocea|liliaceous plant +golden state|1 +(noun)|California|Golden State|CA|Calif.|American state +golden syrup|1 +(noun)|treacle|syrup|sirup +golden thistle|1 +(noun)|thistle +golden thread|1 +(noun)|goldthread|Coptis groenlandica|Coptis trifolia groenlandica|herb|herbaceous plant +golden trumpet|1 +(noun)|common allamanda|Allamanda cathartica|allamanda +golden warbler|1 +(noun)|yellow warbler|yellowbird|Dendroica petechia|New World warbler|wood warbler +golden wattle|1 +(noun)|Acacia pycnantha|acacia +golden wedding anniversary|1 +(noun)|wedding anniversary +golden willow|1 +(noun)|Salix alba vitellina|Salix vitellina|osier +golden wonder millet|1 +(noun)|German millet|Setaria italica stramineofructa|foxtail millet|Italian millet|Hungarian grass|Setaria italica +golden yarrow|1 +(noun)|Eriophyllum lanatum|woolly sunflower +golden years|1 +(noun)|time of life +goldenbush|2 +(noun)|wildflower|wild flower +(noun)|shrub|bush +goldeneye|2 +(noun)|golden-eyed fly|green lacewing|chrysopid|stink fly +(noun)|whistler|Bucephela clangula|duck +goldenrod|1 +(noun)|wildflower|wild flower +goldenseal|1 +(noun)|golden seal|yellow root|turmeric root|Hydrastis Canadensis|herb|herbaceous plant +goldfield|1 +(noun)|district|territory|territorial dominion|dominion +goldfields|2 +(noun)|Lasthenia chrysostoma|wildflower|wild flower +(noun)|goldfield|district|territory|territorial dominion|dominion +goldfinch|2 +(noun)|New world goldfinch|yellowbird|Spinus tristis|finch +(noun)|Carduelis carduelis|finch +goldfish|1 +(noun)|Carassius auratus|cyprinid|cyprinid fish +goldfish bowl|2 +(noun)|fish bowl|fishbowl|situation|state of affairs +(noun)|fishbowl|fish bowl|bowl|aquarium|fish tank|marine museum +goldie's fern|1 +(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern|buckler fern +goldie's shield fern|1 +(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern|buckler fern +goldie's wood fern|1 +(noun)|Goldie's fern|Goldie's shield fern|Dryopteris goldiana|shield fern|buckler fern +goldilocks|1 +(noun)|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster +goldilocks aster|1 +(noun)|goldilocks|Aster linosyris|Linosyris vulgaris|aster +golding|1 +(noun)|Golding|William Golding|Sir William Gerald Golding|writer|author +goldman|1 +(noun)|Goldman|Emma Goldman|anarchist|nihilist|syndicalist +goldmark|1 +(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor|discoverer|artificer +goldmine|2 +(noun)|gold mine|source +(noun)|gold mine|mine +goldoni|1 +(noun)|Goldoni|Carlo Goldoni|dramatist|playwright +goldplate|1 +(verb)|gold-plate|gold plate|plate +goldsmith|2 +(noun)|goldworker|gold-worker|jewelry maker|jeweler|jeweller +(noun)|Goldsmith|Oliver Goldsmith|writer|author +goldstone|1 +(noun)|sunstone|aventurine +goldthread|1 +(noun)|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb|herbaceous plant +goldworker|1 +(noun)|goldsmith|gold-worker|jewelry maker|jeweler|jeweller +goldwyn|1 +(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker|filmmaker|film producer|movie maker +golem|2 +(noun)|mythical being +(noun)|automaton|robot|mechanism +golf|2 +(noun)|golf game|outdoor game +(verb)|play +golf-club|2 +(noun)|golf club|club|golf equipment +(noun)|golf club|club|society|guild|gild|lodge|order +golf-club head|1 +(noun)|club head|club-head|clubhead|head +golf bag|1 +(noun)|bag|golf equipment +golf ball|1 +(noun)|ball|golf equipment +golf caddie|1 +(noun)|caddie|attendant|attender|tender +golf cap|1 +(noun)|baseball cap|jockey cap|cap +golf cart|2 +(noun)|golfcart|motor vehicle|automotive vehicle|golf equipment +(noun)| +golf club|3 +(noun)|club|society|guild|gild|lodge|order +(noun)|golf-club|club|golf equipment +(noun)| +golf course|1 +(noun)|golf links|links|course +golf equipment|1 +(noun)|sports equipment|sporting goods +golf game|1 +(noun)|golf|outdoor game +golf glove|1 +(noun)|glove|gloves|golf equipment +golf hole|1 +(noun)|hole|playing period|period of play|play +golf lesson|1 +(noun)|lesson +golf links|1 +(noun)|golf course|links|course +golf player|1 +(noun)|golfer|linksman|player|participant +golf pro|1 +(noun)|professional golfer|golfer|golf player|linksman +golf range|1 +(noun)|driving range|practice range +golf shot|1 +(noun)|golf stroke|swing|stroke|shot +golf stroke|1 +(noun)|golf shot|swing|stroke|shot +golf tee|1 +(noun)|tee|peg|nog|golf equipment +golf widow|1 +(noun)|wife|married woman +golfcart|1 +(noun)|golf cart|motor vehicle|automotive vehicle|golf equipment +golfer|1 +(noun)|golf player|linksman|player|participant +golfing|1 +(noun)|playing +golfo de mexico|1 +(noun)|Gulf of Mexico|Golfo de Mexico|gulf +golgi|1 +(noun)|Golgi|Camillo Golgi|histologist +golgi's cell|1 +(noun)|Golgi's cell|Golgi cell|brain cell +golgi apparatus|1 +(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle|cyst +golgi body|1 +(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle|cyst +golgi cell|1 +(noun)|Golgi's cell|Golgi cell|brain cell +golgi complex|1 +(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle|cyst +golgotha|1 +(noun)|Calvary|Golgotha|hill +goliard|1 +(noun)|scholar|scholarly person|student +goliath|2 +(noun)|Goliath|warrior +(noun)|giant|behemoth|monster|colossus|anomaly|unusual person +goliath frog|1 +(noun)|Rana goliath|true frog|ranid +golliwog|1 +(noun)|golliwogg|doll|dolly +golliwogg|1 +(noun)|golliwog|doll|dolly +golosh|1 +(noun)|arctic|galosh|rubber|gumshoe|overshoe +goma|1 +(noun)|Goma|city|metropolis|urban center +gombrowicz|1 +(noun)|Gombrowicz|Witold Gombrowicz|writer|author +gomel|1 +(noun)|Homyel|Homel|Gomel|city|metropolis|urban center +gomorrah|1 +(noun)|Gomorrah|Gomorrha|city|metropolis|urban center +gomorrha|1 +(noun)|Gomorrah|Gomorrha|city|metropolis|urban center +gompers|1 +(noun)|Gompers|Samuel Gompers|labor leader +gomphothere|1 +(noun)|elephant +gomphotheriidae|1 +(noun)|Gomphotheriidae|family Gomphotheriidae|mammal family +gomphotherium|1 +(noun)|Gomphotherium|genus Gomphotherium|mammal genus +gomphrena|1 +(noun)|Gomphrena|genus Gomphrena|caryophylloid dicot genus +gomphrena globosa|1 +(noun)|globe amaranth|bachelor's button|Gomphrena globosa|flower +gomuti|1 +(noun)|sugar palm|gomuti palm|Arenga pinnata|sago palm +gomuti palm|1 +(noun)|sugar palm|gomuti|Arenga pinnata|sago palm +gonad|1 +(noun)|sex gland|endocrine gland|endocrine|ductless gland +gonadal|1 +(adj)|endocrine gland|endocrine|ductless gland +gonadotrophic|1 +(adj)|gonadotropic|hormone|endocrine|internal secretion +gonadotrophic hormone|1 +(noun)|gonadotropin|gonadotrophin|gonadotropic hormone|hormone|endocrine|internal secretion +gonadotrophin|1 +(noun)|gonadotropin|gonadotropic hormone|gonadotrophic hormone|hormone|endocrine|internal secretion +gonadotropic|1 +(adj)|gonadotrophic|hormone|endocrine|internal secretion +gonadotropic hormone|1 +(noun)|gonadotropin|gonadotrophin|gonadotrophic hormone|hormone|endocrine|internal secretion +gonadotropin|1 +(noun)|gonadotrophin|gonadotropic hormone|gonadotrophic hormone|hormone|endocrine|internal secretion +goncalo alves|1 +(noun)|Astronium fraxinifolium|zebrawood|zebrawood tree +goncourt|2 +(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer|author +(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer|author +gond|1 +(noun)|Gond|Dravidian +gondang wax|1 +(noun)|fig wax|wax +gondi|1 +(noun)|Gondi|South-Central Dravidian +gondola|3 +(noun)|gondola car|freight car +(noun)|boat +(noun)|car|compartment +gondola car|1 +(noun)|gondola|freight car +gondolier|1 +(noun)|gondoliere|boatman|boater|waterman +gondoliere|1 +(noun)|gondolier|boatman|boater|waterman +gondwanaland|1 +(noun)|Gondwanaland|continent +gone|6 +(adj)|away|departed|absent +(adj)|done for|kaput|destroyed +(adj)|asleep|at peace|at rest|deceased|departed|dead +(adj)|expended|spent|exhausted +(adj)|bygone|bypast|departed|foregone|past +(adj)|lost +goner|1 +(noun)|toast|desperate +gong|3 +(noun)|tam-tam|percussion instrument|percussive instrument +(noun)|chime|bell|percussion instrument|percussive instrument +(verb)|sound +gong buoy|1 +(noun)|bell buoy|acoustic buoy +gongora|1 +(noun)|Gongora|Luis de Gongora y Argote|poet +gongorist|1 +(noun)|Gongorist|practitioner|practician +gonif|1 +(noun)|goniff|ganef|ganof|wrongdoer|offender +goniff|1 +(noun)|gonif|ganef|ganof|wrongdoer|offender +goniometer|1 +(noun)|direction finder +gonion|1 +(noun)|craniometric point +goniopteris|1 +(noun)|Goniopteris|genus Goniopteris|fern genus +gonne|1 +(noun)|Gonne|Maud Gonne|patriot|nationalist +gonococcus|1 +(noun)|Neisseria gonorrhoeae|bacteria|bacterium +gonorhynchidae|1 +(noun)|Gonorhynchidae|family Gonorhynchidae|fish family +gonorhynchus|1 +(noun)|Gonorhynchus|genus Gonorhynchus|fish genus +gonorhynchus gonorhynchus|1 +(noun)|beaked salmon|sandfish|Gonorhynchus gonorhynchus|soft-finned fish|malacopterygian +gonorrhea|1 +(noun)|gonorrhoea|clap|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +gonorrhoea|1 +(noun)|gonorrhea|clap|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +goo|1 +(noun)|sludge|slime|gook|guck|gunk|muck|ooze|substance|matter +goober|1 +(noun)|peanut|earthnut|goober pea|groundnut|monkey nut|edible nut +goober pea|1 +(noun)|peanut|earthnut|goober|groundnut|monkey nut|edible nut +good|29 +(adj)|good |bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good enough|goodish|redeeming|satisfactory|acceptable|solid|suitable|superb|well-behaved|well behaved|hot|best|better|favorable|favourable|obedient|respectable +(adj)|full|ample +(adj)|good |angelic|angelical|beatific|saintlike|saintly|sainted|beneficent|benevolent|gracious|white|worthy|goody-goody|redemptive|redeeming|saving|moral|right|righteous|virtuous|worthy +(adj)|estimable|honorable|respectable|reputable +(adj)|beneficial|advantageous +(adj)|fine|superior +(adj)|nice +(adj)|just|upright|virtuous|righteous +(adj)|adept|expert|practiced|proficient|skillful|skilful|skilled +(adj)|complete +(adj)|dear|near|close +(adj)|benevolent |good-hearted|kind|kindly|openhearted|beneficent|charitable|kind +(adj)|dependable|safe|secure|sound +(adj)|right|ripe|opportune +(adj)|well|fortunate +(adj)|effective|in effect|in force|operative +(adj)|well +(adj)|pleasing +(adj)|serious|intellectual +(adj)|sound|healthy +(adj)|beneficial|salutary|healthful +(adj)|genuine |echt +(adj)|unspoiled|unspoilt|fresh +(adj)|discriminating +(noun)|advantage|vantage +(noun)|goodness|morality +(noun)|goodness|quality +(adv)|well +(adv)|thoroughly|soundly +good-by|2 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|goodby|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +(noun)| +good-bye|2 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|goodbye|good day|sayonara|so long|farewell|word of farewell +(noun)| +good-for-naught|2 +(adj)|good-for-nothing|meritless|no-account|no-count|no-good|sorry|worthless +(noun)|goldbrick|goof-off|ne'er-do-well|good-for-nothing|idler|loafer|do-nothing|layabout|bum +good-for-nothing|2 +(adj)|good-for-naught|meritless|no-account|no-count|no-good|sorry|worthless +(noun)|goldbrick|goof-off|ne'er-do-well|good-for-naught|idler|loafer|do-nothing|layabout|bum +good-hearted|1 +(adj)|kind|kindly|openhearted|benevolent |good +good-humored|1 +(adj)|amiable|good-humoured|good-natured +good-humoredness|1 +(noun)|good-temperedness|good humouredness|good naturedness|cheerfulness|cheer +good-humoured|1 +(adj)|amiable|good-humored|good-natured +good-king-henry|1 +(noun)|allgood|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot +good-looking|1 +(adj)|fine-looking|better-looking|handsome|well-favored|well-favoured|beautiful +good-natured|1 +(adj)|good-natured |amiable|good-humored|good-humoured|equable|even-tempered|good-tempered|placid|kind|pleasant|agreeable +good-neighborliness|1 +(noun)|neighborliness|neighbourliness|good-neighbourliness|friendliness +good-neighbourliness|1 +(noun)|neighborliness|neighbourliness|good-neighborliness|friendliness +good-tempered|1 +(adj)|equable|even-tempered|placid|good-natured +good-temperedness|1 +(noun)|good-humoredness|good humouredness|good naturedness|cheerfulness|cheer +good-time|1 +(adj)|convivial|sociable +good afternoon|1 +(noun)|afternoon|greeting|salutation|farewell|word of farewell +good authority|1 +(noun)|testimony|testimonial +good book|1 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +good condition|1 +(noun)|fitness|physical fitness|good shape|condition|shape +good continuation|1 +(noun)|continuation|law of continuation|Gestalt law of organization|Gestalt principle of organization +good day|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|sayonara|so long|farewell|word of farewell +good deal|1 +(noun)|batch|deal|flock|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +good egg|1 +(noun)|good person +good enough|1 +(adj)|good +good example|1 +(noun)|exemplar|example|model|ideal +good faith|1 +(noun)|straightness|honesty|honestness +good for you|1 +(adj)|healthy|salubrious|wholesome +good form|1 +(noun)|propriety|properness|correctitude +good fortune|2 +(noun)|good luck|fortune|destiny|fate|luck|lot|circumstances|portion +(noun)|good luck|fluke|luck|fortune +good friday|1 +(noun)|Good Friday|Christian holy day +good guy|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +good health|1 +(noun)|healthiness|physiological state|physiological condition +good humor|1 +(noun)|good humour|good temper|amiability|temper|mood|humor|humour +good humour|1 +(noun)|good humor|good temper|amiability|temper|mood|humor|humour +good humouredness|1 +(noun)|good-temperedness|good-humoredness|good naturedness|cheerfulness|cheer +good looks|1 +(noun)|handsomeness|beauty +good luck|3 +(noun)|good fortune|fortune|destiny|fate|luck|lot|circumstances|portion +(noun)|fluke|good fortune|luck|fortune +(noun)|break|happy chance|accident|fortuity|chance event +good luck charm|1 +(noun)|charm|object|physical object +good manners|1 +(noun)|courtesy|manner|personal manner +good morning|1 +(noun)|morning|greeting|salutation|farewell|word of farewell +good nature|1 +(noun)|disposition|temperament +good naturedness|1 +(noun)|good-temperedness|good-humoredness|good humouredness|cheerfulness|cheer +good night|1 +(noun)|farewell|word of farewell +good ol' boy|1 +(noun)|good old boy|good ole boy|white man|Southerner +good old boy|1 +(noun)|good ole boy|good ol' boy|white man|Southerner +good ole boy|1 +(noun)|good old boy|good ol' boy|white man|Southerner +good part|1 +(noun)|strength +good person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +good samaritan|1 +(noun)|good Samaritan|Samaritan|benefactor|helper +good sense|1 +(noun)|common sense|gumption|horse sense|sense|mother wit|sagacity|sagaciousness|judgment|judgement|discernment +good shape|1 +(noun)|fitness|physical fitness|good condition|condition|shape +good shepherd|1 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +good speller|1 +(noun)|speller|poor speller|writer +good spirit|1 +(noun)|eudemon|eudaemon|guardian spirit|guardian angel +good story|1 +(noun)|funny story|joke|gag|laugh|jest|jape +good temper|1 +(noun)|good humor|good humour|amiability|temper|mood|humor|humour +good time|1 +(noun)|blast|experience +good turn|1 +(noun)|turn|favor|favour +good weather|1 +(noun)|weather|weather condition|atmospheric condition +good will|4 +(noun)|grace|goodwill|good nature +(noun)|goodwill|intangible|intangible asset +(noun)|goodwill|friendliness +(noun)| +good word|2 +(noun)|recommendation|testimonial|praise|congratulations|kudos +(noun)|news|intelligence|tidings|word +goodall|1 +(noun)|Goodall|Jane Goodall|zoologist|animal scientist +goodby|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|good-bye|goodbye|good day|sayonara|so long|farewell|word of farewell +goodbye|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|good day|sayonara|so long|farewell|word of farewell +goodenia|1 +(noun)|Goodenia|dicot genus|magnoliopsid genus +goodenia family|1 +(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family|magnoliopsid family +goodeniaceae|1 +(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family|magnoliopsid family +goodish|2 +(adj)|good +(adj)|goodly|hefty|respectable|sizable|sizeable|tidy|considerable +goodly|1 +(adj)|goodish|hefty|respectable|sizable|sizeable|tidy|considerable +goodman|1 +(noun)|Goodman|Benny Goodman|Benjamin David Goodman|the King of Swing|clarinetist|clarinettist|bandleader +goodness|2 +(noun)|good|quality +(noun)|good|morality +goods|4 +(noun)|commodity|trade goods|artifact|artefact +(noun)|good|advantage|vantage +(noun)|good|goodness|morality +(noun)|good|goodness|quality +goodwill|3 +(noun)|good will|intangible|intangible asset +(noun)|good will|friendliness +(noun)|grace|good will|good nature +goody|1 +(noun)|dainty|delicacy|kickshaw|treat|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +goody-goody|2 +(adj)|good +(noun)|sycophant|toady|crawler|lackey +goodyear|1 +(noun)|Goodyear|Charles Goodyear|inventor|discoverer|artificer +goodyera|1 +(noun)|Goodyera|genus Goodyera|monocot genus|liliopsid genus +gooey|1 +(adj)|icky|adhesive +goof|2 +(noun)|fathead|goofball|bozo|jackass|goose|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +(verb)|sin|blunder|boob|transgress|offend|infract|violate|go against|breach|break +goof-off|1 +(noun)|goldbrick|ne'er-do-well|good-for-nothing|good-for-naught|idler|loafer|do-nothing|layabout|bum +goof-proof|2 +(verb)|goofproof|foolproof|proof +(verb)| +goofball|1 +(noun)|fathead|goof|bozo|jackass|goose|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +goofing off|1 +(noun)|shirking|slacking|soldiering|goldbricking|evasion|escape|dodging +goofproof|1 +(verb)|goof-proof|foolproof|proof +goofy|2 +(adj)|cockamamie|cockamamy|sappy|silly|wacky|whacky|zany|unreasonable|foolish +(noun)|Goofy|fictional character|fictitious character|character +googly|1 +(noun)|wrong 'un|bosie|bosie ball|bowling +googol|1 +(noun)|cardinal number|cardinal +googolplex|1 +(noun)|cardinal number|cardinal +gook|2 +(noun)|sludge|slime|goo|guck|gunk|muck|ooze|substance|matter +(noun)|slant-eye|Oriental|oriental person +goon|2 +(noun)|lout|clod|stumblebum|oaf|lubber|lummox|lump|gawk|clumsy person +(noun)|hood|hoodlum|punk|thug|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +gooney|1 +(noun)|black-footed albatross|gooney bird|goonie|goony|Diomedea nigripes|albatross|mollymawk +gooney bird|1 +(noun)|black-footed albatross|gooney|goonie|goony|Diomedea nigripes|albatross|mollymawk +goonie|1 +(noun)|black-footed albatross|gooney|gooney bird|goony|Diomedea nigripes|albatross|mollymawk +goony|1 +(noun)|black-footed albatross|gooney|gooney bird|goonie|Diomedea nigripes|albatross|mollymawk +goop|1 +(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +goora nut|1 +(noun)|kola|kola nut|kola nut tree|Cola acuminata|nut tree +goosander|1 +(noun)|Mergus merganser|merganser|fish duck|sawbill|sheldrake +goose|3 +(noun)|anseriform bird +(noun)|fathead|goof|goofball|bozo|jackass|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +(noun)|poultry +goose-tansy|1 +(noun)|silverweed|goose grass|Potentilla anserina|cinquefoil|five-finger +goose barnacle|1 +(noun)|gooseneck barnacle|Lepas fascicularis|barnacle|cerriped|cerripede +goose bump|1 +(noun)|pilomotor reflex|gooseflesh|goose pimple|goose skin|horripilation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +goose down|1 +(noun)|down|down feather +goose egg|1 +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|naught|zero|zilch|zip|relative quantity +goose grass|4 +(noun)|cleavers|clivers|catchweed|spring cleavers|Galium aparine|bedstraw +(noun)|silverweed|goose-tansy|Potentilla anserina|cinquefoil|five-finger +(noun)|Texas millet|Panicum Texanum|panic grass +(noun)|yardgrass|yard grass|wire grass|Eleusine indica|millet +goose grease|1 +(noun)|animal oil +goose liver|1 +(noun)|liver +goose pimple|1 +(noun)|pilomotor reflex|gooseflesh|goose bump|goose skin|horripilation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +goose plum|1 +(noun)|American red plum|August plum|Prunus americana|wild plum|wild plum tree +goose skin|1 +(noun)|pilomotor reflex|gooseflesh|goose bump|goose pimple|horripilation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +goose step|2 +(noun)|march|marching +(verb)|march|process +gooseberry|2 +(noun)|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub|bush +(noun)|currant +gooseberry bush|1 +(noun)|gooseberry|Ribes uva-crispa|Ribes grossularia|shrub|bush +gooseberry family|1 +(noun)|Grossulariaceae|family Grossulariaceae|plant family +goosefish|1 +(noun)|angler|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +gooseflesh|1 +(noun)|pilomotor reflex|goose bump|goose pimple|goose skin|horripilation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +goosefoot|1 +(noun)|herb|herbaceous plant +goosefoot family|1 +(noun)|Chenopodiaceae|family Chenopodiaceae|caryophylloid dicot family +goosefoot maple|1 +(noun)|moosewood|moose-wood|striped maple|striped dogwood|Acer pennsylvanicum|maple +gooselike|1 +(adj)|anserine|dopy|dopey|foolish|goosey|goosy|stupid +gooseneck|1 +(noun)|curve|curved shape +gooseneck barnacle|1 +(noun)|goose barnacle|Lepas fascicularis|barnacle|cerriped|cerripede +gooseneck loosestrife|1 +(noun)|Lysimachia clethroides Duby|loosestrife +goosey|1 +(adj)|anserine|dopy|dopey|foolish|goosy|gooselike|stupid +goosy|1 +(adj)|anserine|dopy|dopey|foolish|goosey|gooselike|stupid +gop|1 +(noun)|Republican Party|GOP|party|political party +gopher|4 +(noun)|goffer|eager beaver|busy bee|live wire|sharpie|sharpy +(noun)|ground squirrel|spermophile|squirrel +(noun)|pocket gopher|pouched rat|pocket rat +(noun)|gopher tortoise|gopher turtle|Gopherus polypemus|tortoise +gopher hole|1 +(noun)|hole|hollow +gopher snake|2 +(noun)|indigo snake|Drymarchon corais|colubrid snake|colubrid +(noun)|Pituophis melanoleucus|bull snake|bull-snake +gopher state|1 +(noun)|Minnesota|Gopher State|North Star State|MN|American state +gopher tortoise|1 +(noun)|gopher turtle|gopher|Gopherus polypemus|tortoise +gopher turtle|1 +(noun)|gopher tortoise|gopher|Gopherus polypemus|tortoise +gopherus|1 +(noun)|Gopherus|genus Gopherus|reptile genus +gopherus agassizii|1 +(noun)|desert tortoise|Gopherus agassizii|tortoise +gopherus polypemus|1 +(noun)|gopher tortoise|gopher turtle|gopher|Gopherus polypemus|tortoise +gopherwood|1 +(noun)|Kentucky yellowwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood +goral|1 +(noun)|Naemorhedus goral|goat antelope +gorbachev|1 +(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman|solon|national leader +gordian|1 +(adj)|Gordian|complex +gordian knot|2 +(noun)|Gordian knot|problem +(noun)|Gordian knot|knot +gordimer|1 +(noun)|Gordimer|Nadine Gordimer|writer|author +gordius|1 +(noun)|Gordius|king|male monarch +gordon setter|1 +(noun)|Gordon setter|setter +gore|6 +(noun)|Gore|Al Gore|Albert Gore Jr.|vice president|V.P. +(noun)|blood +(noun)|piece of cloth|piece of material +(noun)|bloodshed|blood|murder|slaying|execution +(verb)|pierce|thrust +(verb)|cut|tailor +gore vidal|1 +(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer|author +gorgas|1 +(noun)|Gorgas|William Crawford Gorgas|surgeon|operating surgeon|sawbones +gorge|4 +(noun)|ravine +(noun)|defile|pass|mountain pass|notch +(noun)|esophagus|oesophagus|gullet|passage|passageway|muscular structure|musculature|muscle system +(verb)|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +gorged|1 +(adj)|sated|surfeited|satiate |satiated +gorgeous|1 +(adj)|beautiful +gorgeously|1 +(adv)|splendidly|resplendently|magnificently +gorger|1 +(noun)|scoffer|eater|feeder +gorgerin|1 +(noun)|necking|molding|moulding +gorget|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +gorgon|1 +(noun)|Gorgon|mythical monster|mythical creature +gorgonacea|1 +(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order +gorgoniacea|1 +(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order +gorgonian|1 +(noun)|gorgonian coral|coral +gorgonian coral|1 +(noun)|gorgonian|coral +gorgonocephalus|1 +(noun)|Gorgonocephalus|genus Gorgonocephalus|echinoderm genus +gorgonzola|1 +(noun)|bleu|blue cheese +gorilla|1 +(noun)|Gorilla gorilla|great ape|pongid +gorilla gorilla|1 +(noun)|gorilla|Gorilla gorilla|great ape|pongid +gorilla gorilla beringei|1 +(noun)|mountain gorilla|Gorilla gorilla beringei|gorilla|Gorilla gorilla +gorilla gorilla gorilla|1 +(noun)|western lowland gorilla|Gorilla gorilla gorilla|gorilla|Gorilla gorilla +gorilla gorilla grauri|1 +(noun)|eastern lowland gorilla|Gorilla gorilla grauri|gorilla|Gorilla gorilla +goring|1 +(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi|German Nazi +gorki|2 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city|metropolis|urban center +gorkiy|1 +(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city|metropolis|urban center +gorky|2 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city|metropolis|urban center +gormandise|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gourmandize|binge|pig out|satiate|scarf out|eat +gormandize|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +gormless|1 +(adj)|gaumless|stupid +gorse|1 +(noun)|furze|whin|Irish gorse|Ulex europaeus|shrub|bush +gory|2 +(adj)|bloodstained|bloody +(adj)|sanguinary|sanguineous|slaughterous|butcherly|bloody +gosainthan|1 +(noun)|Gosainthan|mountain peak +gosan-chiku|1 +(noun)|fishpole bamboo|hotei-chiku|Phyllostachys aurea|bamboo +goshawk|1 +(noun)|Accipiter gentilis|hawk +gosling|1 +(noun)|goose +gosmore|1 +(noun)|cat's-ear|California dandelion|capeweed|Hypochaeris radicata|weed +gospel|5 +(noun)|Gospel|Gospels|evangel|sacred text|sacred writing|religious writing|religious text +(noun)|gospel truth|truth|true statement +(noun)|gospel singing|folk music|ethnic music|folk|a cappella singing|a capella singing +(noun)|religious doctrine|church doctrine|creed|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +gospel according to john|1 +(noun)|John|Gospel According to John|Gospel|Gospels|evangel|book +gospel according to luke|1 +(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel|Gospels|evangel|book +gospel according to mark|1 +(noun)|Mark|Gospel According to Mark|Gospel|Gospels|evangel|book +gospel according to matthew|1 +(noun)|Matthew|Gospel According to Matthew|Gospel|Gospels|evangel|book +gospel of luke|1 +(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel|Gospels|evangel|book +gospel singing|1 +(noun)|gospel|folk music|ethnic music|folk|a cappella singing|a capella singing +gospel truth|1 +(noun)|gospel|truth|true statement +gospeler|1 +(noun)|evangelist|revivalist|gospeller|preacher|preacher man|sermonizer|sermoniser +gospeller|1 +(noun)|evangelist|revivalist|gospeler|preacher|preacher man|sermonizer|sermoniser +gospels|6 +(noun)|Gospel|Gospels|evangel|sacred text|sacred writing|religious writing|religious text +(noun)|Gospel|Gospels|evangel|sacred text|sacred writing|religious writing|religious text +(noun)|gospel|gospel truth|truth|true statement +(noun)|gospel|gospel singing|folk music|ethnic music|folk|a cappella singing|a capella singing +(noun)|religious doctrine|church doctrine|gospel|creed|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|gospel|doctrine|philosophy|philosophical system|school of thought|ism +gossamer|4 +(adj)|ethereal|delicate +(adj)|diaphanous|filmy|gauzy|see-through|sheer|transparent|vaporous|cobwebby|thin +(noun)|gauze|netting|veiling +(noun)|cobweb|fibril|filament|strand +gossip|5 +(noun)|chitchat|small talk|gab|gabfest|tittle-tattle|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +(noun)|comment|scuttlebutt|report|account +(noun)|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger|communicator +(verb)|dish the dirt|talk|speak +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|jaw|claver|visit|converse|discourse +gossip columnist|1 +(noun)|newspaper columnist +gossiper|1 +(noun)|gossip|gossipmonger|rumormonger|rumourmonger|newsmonger|communicator +gossiping|1 +(noun)|gossipmongering|conversation +gossipmonger|1 +(noun)|gossip|gossiper|rumormonger|rumourmonger|newsmonger|communicator +gossipmongering|1 +(noun)|gossiping|conversation +gossipy|1 +(adj)|chatty|newsy|communicative |communicatory +gossypium|1 +(noun)|Gossypium|genus Gossypium|dilleniid dicot genus +gossypium arboreum|1 +(noun)|tree cotton|Gossypium arboreum|cotton|cotton plant +gossypium barbadense|1 +(noun)|sea island cotton|tree cotton|Gossypium barbadense|cotton|cotton plant +gossypium herbaceum|1 +(noun)|Levant cotton|Gossypium herbaceum|cotton|cotton plant +gossypium hirsutum|1 +(noun)|upland cotton|Gossypium hirsutum|cotton|cotton plant +gossypium peruvianum|1 +(noun)|Peruvian cotton|Gossypium peruvianum|cotton|cotton plant +gossypium thurberi|1 +(noun)|wild cotton|Arizona wild cotton|Gossypium thurberi|cotton|cotton plant +gota canal|1 +(noun)|Gota Canal|ship canal|shipway +goteborg|1 +(noun)|Goteborg|Goeteborg|Gothenburg|city|metropolis|urban center|port +goth|2 +(noun)|peasant|barbarian|boor|churl|Goth|tyke|tike|unpleasant person|disagreeable person +(noun)|Goth|Teuton +gothenburg|1 +(noun)|Goteborg|Goeteborg|Gothenburg|city|metropolis|urban center|port +gothic|8 +(adj)|Gothic|font|fount|typeface|face +(adj)|Gothic|East Germanic|East Germanic language +(adj)|Gothic|Teuton +(adj)|medieval|mediaeval|nonmodern +(adj)|strange |unusual +(noun)|Gothic|East Germanic|East Germanic language +(noun)|Gothic|black letter|font|fount|typeface|face +(noun)|Gothic|Gothic architecture|architectural style|style of architecture|type of architecture +gothic arch|1 +(noun)|Gothic arch|pointed arch +gothic architecture|1 +(noun)|Gothic|Gothic architecture|architectural style|style of architecture|type of architecture +gothic romance|1 +(noun)|Gothic romance|romance +gothic romancer|1 +(noun)|Gothic romancer|writer|author +gothite|1 +(noun)|goethite|iron ore +gotterdammerung|1 +(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth +gottfried wilhelm leibnitz|1 +(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician|philosopher +gottfried wilhelm leibniz|1 +(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician|philosopher +gotthold ephraim lessing|1 +(noun)|Lessing|Gotthold Ephraim Lessing|dramatist|playwright +gottlieb daimler|1 +(noun)|Daimler|Gottlieb Daimler|engineer|applied scientist|technologist|industrialist +gouache|2 +(noun)|watercolor|watercolour +(noun)|watercolor|watercolour +gouda|1 +(noun)|Gouda|Gouda cheese|cheese +gouda cheese|1 +(noun)|Gouda|Gouda cheese|cheese +gouge|6 +(noun)|dent|nick|blemish|defect|mar +(noun)|edge tool +(noun)|creating by removal +(verb)|force out|mutilate|mar|gouge out +(verb)|extort|squeeze|rack|wring|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|hook +(verb)|rout|hollow|hollow out|core out +gouge out|1 +(verb)|cut out +gouger|2 +(noun)|combatant|battler|belligerent|fighter|scrapper +(noun)|swindler|chiseller|chiseler|scammer|grifter|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +goujon|1 +(noun)|flathead catfish|mudcat|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish|siluriform fish +goulash|1 +(noun)|Hungarian goulash|gulyas|stew +gould|2 +(noun)|Gould|Stephen Jay Gould|paleontologist|palaeontologist|fossilist +(noun)|Gould|Jay Gould|financier|moneyman +gounod|1 +(noun)|Gounod|Charles Francois Gounod|composer +gourd|3 +(noun)|calabash|bottle +(noun)|fruit +(noun)|gourd vine|vine +gourd family|1 +(noun)|Cucurbitaceae|family Cucurbitaceae|dicot family|magnoliopsid family +gourd vine|1 +(noun)|gourd|vine +gourde|1 +(noun)|Haitian monetary unit +gourmand|1 +(noun)|glutton|trencherman|eater|feeder +gourmandism|1 +(noun)|disposition|temperament +gourmandize|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|binge|pig out|satiate|scarf out|eat +gourmet|1 +(noun)|epicure|gastronome|bon vivant|epicurean|foodie|sensualist +gout|1 +(noun)|gouty arthritis|urarthritis|arthritis +gouty|1 +(adj)|ill |sick +gouty arthritis|1 +(noun)|gout|urarthritis|arthritis +gouverneur morris|1 +(noun)|Morris|Gouverneur Morris|statesman|solon|national leader +govern|4 +(verb)|regulate|regularize|regularise|order|decide|make up one's mind|determine +(verb)|control|command +(verb)|rule|control|command +(verb)|necessitate|ask|postulate|need|require|take|involve|call for|demand +governable|1 +(adj)|controllable|manageable +governador valadares|1 +(noun)|Governador Valadares|city|metropolis|urban center +governance|2 +(noun)|administration|governing body|establishment|brass|organization|organisation|body +(noun)|government|governing|government activity|social control +governed|1 +(noun)|citizenry|people +governess|1 +(noun)|teacher|instructor +governing|2 +(adj)|dominant +(noun)|government|governance|government activity|social control +governing board|1 +(noun)|board +governing body|1 +(noun)|administration|governance|establishment|brass|organization|organisation|body +government|4 +(noun)|authorities|regime|polity +(noun)|system|system of rules +(noun)|governing|governance|government activity|social control +(noun)|politics|political science|social science +government-in-exile|1 +(noun)|government|authorities|regime +government accounting office|1 +(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency|federal agency|government agency|bureau|office|authority +government activity|1 +(noun)|government|governing|governance|social control +government agency|1 +(noun)|agency|federal agency|bureau|office|authority|administrative unit|administrative body +government agent|1 +(noun)|agent +government bond|1 +(noun)|bond|bond certificate +government building|1 +(noun)|building|edifice +government department|1 +(noun)|department|section +government income|1 +(noun)|government revenue|income +government issue|1 +(noun)|issue|military issue|store|stock|fund +government man|1 +(noun)|G-man|FBI agent|government agent +government minister|1 +(noun)|minister|executive|executive director +government note|1 +(noun)|bill|note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +government office|1 +(noun)|office|business office +government officials|1 +(noun)|officialdom|administration|governance|governing body|establishment|brass|organization|organisation +government printing office|1 +(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency|federal agency|government agency|bureau|office|authority +government revenue|1 +(noun)|government income|income +government security|1 +(noun)|agency security|security|certificate +governmental|2 +(adj)|polity +(adj)|political +governor|2 +(noun)|politician +(noun)|regulator|control|controller +governor's plum|1 +(noun)|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub|bush +governor's race|1 +(noun)|campaign for governor|political campaign|campaign|run +governor general|1 +(noun)|governor +governor plum|1 +(noun)|governor's plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub|bush +governorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +gowen cypress|1 +(noun)|Cupressus goveniana|cypress|cypress tree +gown|4 +(noun)|dress|frock +(noun)|surgical gown|scrubs|garment +(noun)|robe|outerwear|overclothes +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +gowned|1 +(adj)|clothed |clad +goy|1 +(noun)|Gentile|non-Jew|Christian +goya|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +goya y lucientes|1 +(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter +gp|1 +(noun)|general practitioner|GP|doctor|doc|physician|MD|Dr.|medico +gp bomb|1 +(noun)|general-purpose bomb|GP bomb|bomb +gpa|1 +(noun)|grade point average|GPA|standard|criterion|measure|touchstone +gpo|1 +(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency|federal agency|government agency|bureau|office|authority +gps|2 +(noun)|Global Positioning System|GPS|navigational system +(noun)|general practitioner|GP|doctor|doc|physician|MD|Dr.|medico +graafian follicle|1 +(noun)|Graafian follicle|follicle +grab|8 +(noun)|mechanical device +(noun)|catch|snatch|snap|touch|touching +(verb)|catch|take hold of|seize|prehend|clutch +(verb)|snap up|snaffle|take +(verb)|move +(verb)|obtain +(verb)|seize|prehend|clutch +(verb)|seize|intrigue|fascinate +grab bag|2 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|container +grab bar|1 +(noun)|bar +grab sample|1 +(noun)|sample +grabber|1 +(noun)|unpleasant person|disagreeable person +grabby|1 +(adj)|avaricious|covetous|grasping|greedy|prehensile|acquisitive +grace|9 +(noun)|saving grace|state of grace|state +(noun)|gracility|gracefulness +(noun)|seemliness|propriety|properness|correctitude +(noun)|good will|goodwill|good nature +(noun)|Grace|Greek deity +(noun)|blessing|thanksgiving|prayer|petition|orison|thanks +(noun)|grace of God|free grace|beneficence +(verb)|decorate|adorn|ornament|embellish|beautify|change|alter|modify +(verb)|deck|adorn|decorate|embellish|beautify|be +grace cup|1 +(noun)|cup +grace ethel cecile rosalie allen|1 +(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne +grace kelly|1 +(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress +grace note|1 +(noun)|appoggiatura|acciaccatura|note|musical note|tone +grace of god|1 +(noun)|grace|grace of God|free grace|beneficence +grace patricia kelly|1 +(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress +graceful|2 +(adj)|graceful |deft|elegant|flowing|fluent|fluid|liquid|smooth|gainly|gracile|willowy|lissome|lissom|lithe|lithesome|slender|supple|svelte|sylphlike|fluent|beautiful|elegant +(adj)|elegant|refined|gracious +gracefully|1 +(adv)|graciously +gracefulness|1 +(noun)|carriage|bearing|posture +graceless|3 +(adj)|unpleasing|ungracious +(adj)|ungraceful|awkward +(adj)|gauche|unpolished|inelegant +gracelessly|1 +(adv)|ungraciously|ungracefully|woodenly|without graciousness +gracelessness|2 +(noun)|ungracefulness|awkwardness|clumsiness +(noun)|awkwardness|clumsiness|stiffness|inelegance +gracie|1 +(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne +gracie allen|1 +(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne +gracilariid|1 +(noun)|gracilariid moth|tineoid|tineoid moth +gracilariid moth|1 +(noun)|gracilariid|tineoid|tineoid moth +gracilariidae|1 +(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family +gracile|1 +(adj)|willowy|graceful +gracility|1 +(noun)|grace|gracefulness +gracillariidae|1 +(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family +gracious|5 +(adj)|gracious |elegant|graceful|refined|merciful|urbane|friendly|refined +(adj)|beneficent|benevolent|good +(adj)|benignant|kind +(adj)|courteous|nice|polite +(adj)|propitious +graciously|1 +(adv)|gracefully +graciousness|2 +(noun)|courtesy|good manners +(noun)|benignity|benignancy|good|goodness +grackle|2 +(noun)|hill myna|Indian grackle|Gracula religiosa|myna|mynah|mina|minah|myna bird|mynah bird +(noun)|crow blackbird|New World blackbird|blackbird +gracula|1 +(noun)|Gracula|genus Gracula|bird genus +gracula religiosa|1 +(noun)|hill myna|Indian grackle|grackle|Gracula religiosa|myna|mynah|mina|minah|myna bird|mynah bird +grad|2 +(noun)|grade|angular unit +(noun)|alumnus|alumna|alum|graduate|scholar|scholarly person|student +grad school|1 +(noun)|graduate school|school +grad student|1 +(noun)|graduate student|postgraduate|collegian|college man|college boy +gradable|1 +(adj)|hierarchical |hierarchal|hierarchic +gradable opposition|1 +(noun)|opposition|oppositeness +gradate|2 +(verb)|arrange|set up +(verb)|change +gradation|3 +(noun)|step|rank +(noun)|grade|ablaut +(noun)|graduation|quantification +gradational|1 +(adj)|gradatory|graduated|gradual +gradatory|1 +(adj)|gradational|graduated|gradual +grade|13 +(noun)|class|form|gathering|assemblage +(noun)|level|tier|rank +(noun)|gradient|slope +(noun)|grad|angular unit +(noun)|gradation|ablaut +(noun)|mark|score|evaluation|valuation|rating +(noun)|ground level|elevation +(noun)|degree|level|magnitude +(noun)|cattle|cows|kine|oxen|Bos taurus +(verb)|rate|rank|range|order|place|judge +(verb)|flush|level|even out|even +(verb)|score|mark|measure|evaluate|valuate|assess|appraise|value +(verb)|classify|class|sort|assort|sort out|separate +grade-constructed|1 +(adj)|surface +grade crossing|1 +(noun)|level crossing|intersection|crossroad|crossway|crossing|carrefour +grade insignia|1 +(noun)|chevron|stripe|stripes|badge +grade point|1 +(noun)|mark|grade|score +grade point average|1 +(noun)|GPA|standard|criterion|measure|touchstone +grade school|1 +(noun)|grammar school|elementary school|primary school|school +grade separation|1 +(noun)|crossing|crosswalk|crossover +graded|1 +(adj)|ranked|stratified|hierarchical |hierarchal|hierarchic +grader|1 +(noun)|critic +gradient|2 +(noun)|change +(noun)|slope|position|spatial relation +grading|3 +(noun)|scaling|order|ordering +(noun)|leveling|construction|building +(noun)|marking|scoring|evaluation|rating +gradual|3 +(adj)|gradual |bit-by-bit|in small stages|piecemeal|step-by-step|stepwise|gradational|gradatory|graduated|slow +(adj)|gradual |easy|gentle|sloping|inclined +(noun)|antiphon|antiphony +graduality|1 +(noun)|gradualness|speed|swiftness|fastness +gradually|1 +(adv)|bit by bit|step by step +gradualness|2 +(noun)|gentleness|gradient|slope +(noun)|graduality|speed|swiftness|fastness +graduate|6 +(adj)|postgraduate|high +(noun)|alumnus|alumna|alum|grad|scholar|scholarly person|student +(noun)|measuring instrument|measuring system|measuring device +(verb)|receive|have +(verb)|confer|bestow +(verb)|calibrate|fine-tune|adjust|set|correct +graduate nurse|1 +(noun)|trained nurse|nurse +graduate school|1 +(noun)|grad school|school +graduate student|1 +(noun)|grad student|postgraduate|collegian|college man|college boy +graduated|4 +(adj)|proportional|progressive +(adj)|calibrated|tag|label|mark +(adj)|regressive +(adj)|gradational|gradatory|gradual +graduated cylinder|1 +(noun)|graduate +graduated table|1 +(noun)|scale|scale of measurement|ordered series|standard|criterion|measure|touchstone +graduating class|1 +(noun)|class|year +graduation|4 +(noun)|completion|culmination|closing|windup|mop up +(noun)|commencement|commencement exercise|commencement ceremony|graduation exercise|exercise +(noun)|line +(noun)|gradation|quantification +graduation exercise|1 +(noun)|commencement|commencement exercise|commencement ceremony|graduation|exercise +graeco-roman|1 +(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical +graeco-roman deity|1 +(noun)|Greco-Roman deity|Graeco-Roman deity|deity|divinity|god|immortal +graecophile|2 +(adj)|philhellenic|philhellene|Graecophile|Graecophilic +(noun)|philhellene|philhellenist|Graecophile|supporter|protagonist|champion|admirer|booster|friend +graecophilic|1 +(adj)|philhellenic|philhellene|Graecophile|Graecophilic +graf|1 +(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player +graf zeppelin|1 +(noun)|zeppelin|Graf Zeppelin|airship|dirigible +graffiti|2 +(noun)|graffito|decoration|ornament|ornamentation +(noun)|graffito|decoration|ornament|ornamentation +graffito|1 +(noun)|graffiti|decoration|ornament|ornamentation +graft|5 +(noun)|transplant|animal tissue +(noun)|bribery|felony +(noun)|grafting|attachment|affixation +(verb)|engraft|ingraft|join|conjoin +(verb)|transplant|insert|infix|enter|introduce +grafting|1 +(noun)|graft|attachment|affixation +graham|3 +(noun)|Graham|Billy Graham|William Franklin Graham|evangelist|revivalist|gospeler|gospeller +(noun)|Graham|Martha Graham|dancer|professional dancer|choreographer +(noun)|whole wheat flour|graham flour|whole meal flour|wheat flour +graham bread|1 +(noun)|dark bread|whole wheat bread|whole meal bread|brown bread +graham cracker|1 +(noun)|cracker +graham flour|1 +(noun)|whole wheat flour|graham|whole meal flour|wheat flour +graham greene|1 +(noun)|Greene|Graham Greene|Henry Graham Greene|writer|author +grahame|1 +(noun)|Grahame|Kenneth Grahame|writer|author +grail|1 +(noun)|Holy Grail|Sangraal|chalice|goblet +grain|11 +(noun)|atom|molecule|particle|corpuscle|mote|speck +(noun)|food grain|cereal|foodstuff|food product +(noun)|metric grain|metric weight unit|weight unit +(noun)|troy unit|apothecaries' unit|apothecaries' weight +(noun)|avoirdupois unit +(noun)|caryopsis|seed +(noun)|texture +(verb)|ingrain|penetrate|perforate +(verb)|paint +(verb)|granulate|shape|form +(verb)|granulate|change shape|change form|deform +grain alcohol|1 +(noun)|ethyl alcohol|ethanol|fermentation alcohol|alcohol|plant product +grain field|2 +(noun)|grainfield|field +(noun)| +grain merchant|1 +(noun)|merchant|merchandiser +grain moth|1 +(noun)|gelechiid|gelechiid moth +grain sorghum|1 +(noun)|sorghum +grainfield|1 +(noun)|grain field|field +grainger|1 +(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer +graininess|1 +(noun)|coarseness|granularity|roughness +graining|1 +(noun)|woodgraining|grain +grains of paradise|1 +(noun)|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb|herbaceous plant +grainy|1 +(adj)|farinaceous|coarse-grained|granular|granulose|gritty|mealy|sandy|coarse +grainy club|1 +(noun)|Clavicipitaceae|grainy club mushrooms +grainy club mushrooms|1 +(noun)|Clavicipitaceae|ascomycete|ascomycetous fungus +gram|2 +(noun)|gramme|gm|g|metric weight unit|weight unit +(noun)|Gram|Hans C. J. Gram|bacteriologist +gram's method|1 +(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining +gram's procedure|1 +(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining +gram's solution|1 +(noun)|Gram's solution|solution +gram's stain|1 +(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining +gram-atomic weight|1 +(noun)|gram atom|metric weight unit|weight unit +gram-negative|1 +(adj)|gram-negative +gram-positive|1 +(adj)|gram-positive +gram atom|1 +(noun)|gram-atomic weight|metric weight unit|weight unit +gram calorie|1 +(noun)|calorie|small calorie|work unit|heat unit|energy unit +gram method|1 +(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining +gram molecule|1 +(noun)|mole|mol|metric weight unit|weight unit +gram stain|1 +(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining +grama|1 +(noun)|grama grass|gramma|gramma grass|grass +grama grass|1 +(noun)|grama|gramma|gramma grass|grass +gramicidin|1 +(noun)|antibiotic|antibiotic drug|antiseptic +graminaceae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +graminaceous plant|1 +(noun)|gramineous plant|herb|herbaceous plant +graminales|1 +(noun)|Graminales|order Graminales|plant order +gramineae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +gramineous plant|1 +(noun)|graminaceous plant|herb|herbaceous plant +gramma|1 +(noun)|grama|grama grass|gramma grass|grass +gramma grass|1 +(noun)|grama|grama grass|gramma|grass +grammar|1 +(noun)|synchronic linguistics|descriptive linguistics +grammar school|2 +(noun)|secondary school|lyceum|lycee|Gymnasium|middle school +(noun)|grade school|elementary school|primary school|school +grammarian|1 +(noun)|syntactician|linguist|linguistic scientist +grammatic|1 +(adj)|grammatical|synchronic linguistics|descriptive linguistics +grammatical|2 +(adj)|grammatic|synchronic linguistics|descriptive linguistics +(adj)|grammatical |well-formed +grammatical case|1 +(noun)|case|grammatical category|syntactic category +grammatical category|1 +(noun)|syntactic category|class|category|family +grammatical constituent|1 +(noun)|constituent|syntagma|syntagm +grammatical construction|1 +(noun)|construction|expression|constituent|grammatical constituent +grammatical gender|1 +(noun)|gender|grammatical category|syntactic category +grammatical meaning|1 +(noun)|meaning|significance|signification|import +grammatical relation|1 +(noun)|linguistic relation +grammatical rule|1 +(noun)|rule of grammar|rule|linguistic rule +grammatolatry|1 +(noun)|verbolatry|word-worship|idolatry|devotion|veneration|cultism +grammatophyllum|1 +(noun)|Grammatophyllum|genus Grammatophyllum|monocot genus|liliopsid genus +gramme|1 +(noun)|gram|gm|g|metric weight unit|weight unit +gramophone|1 +(noun)|acoustic gramophone|record player|phonograph +gramps|1 +(noun)|grandfather|granddad|grandad|granddaddy|grandpa|grandparent +grampus|2 +(noun)|killer whale|killer|orca|sea wolf|Orcinus orca|dolphin +(noun)|Grampus griseus|dolphin +grampus griseus|1 +(noun)|grampus|Grampus griseus|dolphin +gran|1 +(noun)|grandma|grandmother|granny|grannie|grandparent +gran casa|1 +(noun)|bass drum|drum|membranophone|tympan +gran santiago|1 +(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital +granada|1 +(noun)|Granada|city|metropolis|urban center +granadilla|4 +(noun)|giant granadilla|Passiflora quadrangularis|passionflower|passionflower vine +(noun)|sweet granadilla|Passiflora ligularis|passionflower|passionflower vine +(noun)|purple granadillo|Passiflora edulis|passionflower|passionflower vine +(noun)|passion fruit +granadilla tree|1 +(noun)|granadillo|Brya ebenus|tree +granadilla wood|2 +(noun)|wood +(noun)|cocuswood|cocoswood|wood +granadillo|1 +(noun)|granadilla tree|Brya ebenus|tree +granary|1 +(noun)|garner|storehouse|depot|entrepot|storage|store +grand|5 +(adj)|expansive|impressive +(adj)|august|lordly|noble +(adj)|heroic|impressive +(noun)|thousand|one thousand|1000|M|K|chiliad|G|thou|yard|large integer +(noun)|grand piano|piano|pianoforte|forte-piano +grand canal|2 +(noun)|Grand Canal|canal +(noun)|Grand Canal|canal +grand canyon|1 +(noun)|Grand Canyon|gorge +grand canyon national park|1 +(noun)|Grand Canyon National Park|national park +grand canyon state|1 +(noun)|Arizona|Grand Canyon State|AZ|American state +grand circle|1 +(noun)|gymnastic exercise +grand dragon|1 +(noun)|head|chief|top dog +grand duchess|1 +(noun)|duchess +grand duchy|1 +(noun)|domain|demesne|land +grand duchy of luxembourg|1 +(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country|European nation +grand duke|1 +(noun)|prince +grand fir|1 +(noun)|lowland fir|lowland white fir|giant fir|Abies grandis|silver fir +grand guignol|1 +(noun)|Grand Guignol|play|drama|dramatic play +grand inquisitor|1 +(noun)|Grand Inquisitor|Inquisitor +grand island|1 +(noun)|Grand Island|town +grand jury|1 +(noun)|jury +grand lama|1 +(noun)|Dalai Lama|Grand Lama|lama +grand larceny|1 +(noun)|grand theft|larceny|theft|thievery|thieving|stealing +grand mal|1 +(noun)|generalized seizure|epilepsia major|epileptic seizure +grand mal epilepsy|1 +(noun)|generalized epilepsy|epilepsy +grand marnier|1 +(noun)|Grand Marnier|orange liqueur +grand mufti|1 +(noun)|mufti +grand national|1 +(noun)|Grand National|steeplechase +grand opera|1 +(noun)|opera +grand piano|1 +(noun)|grand|piano|pianoforte|forte-piano +grand prix|1 +(noun)|Grand Prix|automobile race|auto race|car race +grand rapids|1 +(noun)|Grand Rapids|city|metropolis|urban center +grand slam|1 +(noun)|slam|sweep +grand teton|1 +(noun)|Grand Teton|mountain peak +grand teton national park|1 +(noun)|Grand Teton National Park|national park +grand theft|1 +(noun)|grand larceny|larceny|theft|thievery|thieving|stealing +grand tour|1 +(noun)|tour|circuit +grand turk|1 +(noun)|sultan|grand Turk|ruler|swayer +grandad|1 +(noun)|grandfather|gramps|granddad|granddaddy|grandpa|grandparent +grandaunt|1 +(noun)|great-aunt|aunt|auntie|aunty +grandchild|1 +(noun)|offspring|progeny|issue +granddad|1 +(noun)|grandfather|gramps|grandad|granddaddy|grandpa|grandparent +granddaddy|1 +(noun)|grandfather|gramps|granddad|grandad|grandpa|grandparent +granddaughter|1 +(noun)|grandchild +grande dame|1 +(noun)|dame|madam|ma'am|lady|gentlewoman +grandee|1 +(noun)|Lord|noble|nobleman +grandeur|2 +(noun)|magnificence|brilliance|splendor|splendour|grandness|elegance +(noun)|nobility|magnanimousness|honorableness|honourableness +grandfather|1 +(noun)|gramps|granddad|grandad|granddaddy|grandpa|grandparent +grandfather clause|1 +(noun)|exemption|freedom +grandfather clock|1 +(noun)|longcase clock|pendulum clock +grandiloquence|1 +(noun)|grandiosity|magniloquence|rhetoric|expressive style|style +grandiloquent|2 +(adj)|magniloquent|tall|rhetorical +(adj)|overblown|pompous|pontifical|portentous|pretentious +grandiloquently|1 +(adv)|magniloquently +grandiose|2 +(adj)|impressive +(adj)|hifalutin|highfalutin|highfaluting|hoity-toity|la-di-da|pretentious +grandiosely|1 +(adv)|bombastically +grandiosity|1 +(noun)|magniloquence|grandiloquence|rhetoric|expressive style|style +grandma|1 +(noun)|grandmother|granny|grannie|gran|grandparent +grandma moses|1 +(noun)|Moses|Grandma Moses|Anne Mary Robertson Moses|painter +grandmaster|1 +(noun)|player|participant +grandmother|1 +(noun)|grandma|granny|grannie|gran|grandparent +grandnephew|1 +(noun)|great-nephew|nephew +grandness|4 +(noun)|importance|standing +(noun)|enormousness|greatness|immenseness|immensity|sizeableness|vastness|largeness|bigness +(noun)|magnificence|brilliance|splendor|splendour|grandeur|elegance +(noun)|impressiveness|magnificence|excellence +grandniece|1 +(noun)|great-niece|niece +grandpa|1 +(noun)|grandfather|gramps|granddad|grandad|granddaddy|grandparent +grandparent|1 +(noun)|forebear|forbear +grandson|1 +(noun)|grandchild +grandstand|3 +(noun)|audience +(noun)|covered stand|stand|stands +(verb)|perform +grandstander|1 +(noun)|exhibitionist|show-off +granduncle|1 +(noun)|great-uncle|uncle +grange|1 +(noun)|farm +granger|1 +(noun)|farmer|husbandman|sodbuster|creator +granicus|1 +(noun)|Granicus|Battle of Granicus River|pitched battle +granite|2 +(noun)|batholith|batholite|pluton|plutonic rock +(noun)|steadiness|firmness +granite state|1 +(noun)|New Hampshire|Granite State|NH|American state +granitelike|1 +(adj)|granitic|rocklike|stony|hard +graniteware|1 +(noun)|enamelware +granitic|2 +(adj)|granitelike|rocklike|stony|hard +(adj)|flinty|unyielding|inflexible +grannie|1 +(noun)|grandma|grandmother|granny|gran|grandparent +granny|3 +(noun)|grandma|grandmother|grannie|gran|grandparent +(noun)|old woman +(noun)|granny knot|reef knot|flat knot +granny's bonnets|1 +(noun)|Aquilegia vulgaris|columbine|aquilegia|aquilege +granny knot|1 +(noun)|granny|reef knot|flat knot +granny smith|1 +(noun)|Granny Smith|eating apple|dessert apple +granola|1 +(noun)|cold cereal|dry cereal +granola bar|1 +(noun)|cookie|cooky|biscuit +grant|15 +(noun)|aid|economic aid +(noun)|subsidization|subsidisation|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +(noun)|assignment|transferred property|transferred possession +(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter +(noun)|Grant|Cary Grant|actor|histrion|player|thespian|role player +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +(noun)|concession|contract +(noun)|right +(verb)|allow|give +(verb)|award|allocate|apportion +(verb)|concede|yield|agree|hold|concur|concord +(verb)|accord|allot|give +(verb)|give +(verb)|concede|yield|cede|give +(verb)|deed over|give|gift|present +grant-in-aid|2 +(noun)|grant|subsidization|subsidisation +(noun)|grant|aid|economic aid +grant wood|1 +(noun)|Wood|Grant Wood|painter +granted|2 +(adj)|given|acknowledged +(adj)|given +grantee|1 +(noun)|recipient|receiver +granter|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +granth|1 +(noun)|Adi Granth|Granth|Granth Sahib|sacred text|sacred writing|religious writing|religious text +granth sahib|1 +(noun)|Adi Granth|Granth|Granth Sahib|sacred text|sacred writing|religious writing|religious text +granting immunity|1 +(noun)|exemption|immunity|release|waiver|discharge +grantor|1 +(noun)|granter +grantor trust|1 +(noun)|Clifford trust|trust +granular|2 +(adj)|farinaceous|coarse-grained|grainy|granulose|gritty|mealy|sandy|coarse +(adj)|chondritic +granular pearlite|1 +(noun)|globular pearlite|pearlite +granularity|1 +(noun)|coarseness|graininess|roughness +granulate|3 +(verb)|grain|shape|form +(verb)|grain|change shape|change form|deform +(verb)|heal +granulated|1 +(adj)|coarse +granulated sugar|1 +(noun)|sugar|refined sugar +granulation|2 +(noun)|granulation tissue|connective tissue +(noun)|formation|shaping +granulation tissue|1 +(noun)|granulation|connective tissue +granule|1 +(noun)|grain +granuliferous|1 +(adj)|grain +granulocyte|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +granulocytic|1 +(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +granulocytic leukemia|1 +(noun)|myelocytic leukemia|leukemia|leukaemia|leucaemia|cancer of the blood +granulocytopenia|1 +(noun)|agranulocytosis|agranulosis|blood disease|blood disorder +granuloma|1 +(noun)|tumor|tumour|neoplasm +granuloma inguinale|1 +(noun)|granuloma venereum|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +granuloma venereum|1 +(noun)|granuloma inguinale|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +granulomatous|1 +(adj)|tumor|tumour|neoplasm +granulose|1 +(adj)|farinaceous|coarse-grained|grainy|granular|gritty|mealy|sandy|coarse +granville-barker|1 +(noun)|Granville-Barker|Harley Granville-Barker|actor|histrion|player|thespian|role player|dramatist|playwright|critic|director|theater director|theatre director|theatrical producer +granville stanley hall|1 +(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist +granville wilt|1 +(noun)|wilt|wilt disease +grape|2 +(noun)|edible fruit +(noun)|grapevine|vine +grape-leaf begonia|1 +(noun)|maple-leaf begonia|Begonia dregei|begonia +grape arbor|1 +(noun)|grape arbour|arbor|arbour|bower|pergola +grape arbour|1 +(noun)|grape arbor|arbor|arbour|bower|pergola +grape fern|1 +(noun)|fern +grape hyacinth|1 +(noun)|liliaceous plant +grape jelly|1 +(noun)|jelly +grape juice|1 +(noun)|fruit juice|fruit crush +grape louse|1 +(noun)|grape phylloxera|Phylloxera vitifoleae|plant louse|louse +grape phylloxera|1 +(noun)|grape louse|Phylloxera vitifoleae|plant louse|louse +grape sugar|1 +(noun)|dextrose|dextroglucose|glucose +grapefruit|2 +(noun)|Citrus paradisi|citrus|citrus tree +(noun)|citrus|citrus fruit|citrous fruit +grapefruit juice|1 +(noun)|fruit juice|fruit crush +grapefruit peel|1 +(noun)|candied citrus peel +grapelike|1 +(adj)|edible fruit +grapeshot|1 +(noun)|shot|pellet +grapevine|2 +(noun)|pipeline|word of mouth|gossip|comment|scuttlebutt +(noun)|grape|vine +grapevine family|1 +(noun)|Vitaceae|family Vitaceae|Vitidaceae|dicot family|magnoliopsid family +grapey|1 +(adj)|grapy|tasteful +graph|3 +(noun)|graphical record|illustration +(verb)|chart|represent|interpret +(verb)|diagram|plot +graph paper|1 +(noun)|paper +grapheme|1 +(noun)|character|graphic symbol|written symbol|printed symbol +graphic|5 +(adj)|graphical|in writing|written +(adj)|explicit |expressed +(adj)|graphic art +(adj)|graphical|illustration +(adj)|lifelike|pictorial|vivid|realistic +graphic art|1 +(noun)|art|fine art +graphic artist|1 +(noun)|printmaker|artist|creative person +graphic symbol|1 +(noun)|character|grapheme|written symbol|printed symbol +graphic tellurium|1 +(noun)|sylvanite|mineral +graphical|2 +(adj)|graphic|illustration +(adj)|graphic|in writing|written +graphical record|1 +(noun)|graph|illustration +graphical user interface|1 +(noun)|GUI|interface|user interface +graphically|1 +(adv)|diagrammatically +graphics|2 +(noun)|artwork|art|nontextual matter|visual communication +(noun)|graphic art +graphite|1 +(noun)|black lead|plumbago|carbon|C|atomic number 6 +graphologist|1 +(noun)|handwriting expert|specialist|specializer|specialiser +graphospasm|1 +(noun)|writer's cramp|spasm|cramp|muscle spasm +grapnel|2 +(noun)|grapple|grappler|grappling hook|grappling iron|tool +(noun)|grapnel anchor|anchor|ground tackle +grapnel anchor|1 +(noun)|grapnel|anchor|ground tackle +grapo|1 +(noun)|First of October Antifascist Resistance Group|GRAPO|terrorist organization|terrorist group|foreign terrorist organization|FTO +grappa|1 +(noun)|brandy +grappelli|1 +(noun)|Grappelli|Stephane Grappelli|violinist|fiddler +grapple|5 +(noun)|grapnel|grappler|grappling hook|grappling iron|tool +(noun)|clamshell|dredging bucket +(noun)|wrestle|wrestling|grappling|hand-to-hand struggle|struggle +(verb)|cope|get by|make out|make do|contend|deal|manage|act|move +(verb)|grip|seize|prehend|clutch +grappler|2 +(noun)|wrestler|matman|combatant|battler|belligerent|fighter|scrapper +(noun)|grapnel|grapple|grappling hook|grappling iron|tool +grappling|3 +(noun)|wrestle|wrestling|grapple|hand-to-hand struggle|struggle +(noun)|braving|confronting|coping with|tackling|attempt|effort|endeavor|endeavour|try +(noun)|wrestling|rassling|contact sport +grappling hook|1 +(noun)|grapnel|grapple|grappler|grappling iron|tool +grappling iron|1 +(noun)|grapnel|grapple|grappler|grappling hook|tool +graptophyllum|1 +(noun)|Graptophyllum|genus Graptophyllum|asterid dicot genus +graptophyllum pictum|1 +(noun)|caricature plant|Graptophyllum pictum|shrub|bush +grapy|1 +(adj)|grapey|tasteful +grasp|6 +(noun)|appreciation|hold|understanding|apprehension|discernment|savvy +(noun)|compass|range|reach|capability|capableness|potentiality +(noun)|grip|influence +(noun)|clasp|clench|clutch|clutches|grip|hold|grasping|taking hold|seizing|prehension +(verb)|hold on|hold|take hold +(verb)|get the picture|comprehend|savvy|dig|compass|apprehend|understand +graspable|1 +(adj)|apprehensible|intelligible|perceivable|understandable|comprehensible |comprehendible +grasping|3 +(adj)|avaricious|covetous|grabby|greedy|prehensile|acquisitive +(noun)|understanding|apprehension|discernment|savvy +(noun)|taking hold|seizing|prehension|control +grass|10 +(noun)|gramineous plant|graminaceous plant +(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer|author +(noun)|eatage|forage|pasture|pasturage|feed|provender +(noun)|pot|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(verb)|shoot|hit|pip +(verb)|cover +(verb)|unfold|spread|spread out|open +(verb)|grass over|cover|spread over +(verb)|crop|graze|pasture +(verb)|denounce|tell on|betray|give away|rat|shit|shop|snitch|stag|inform +grass-covered|1 +(adj)|grassy +grass-eating|1 +(adj)|herbivorous +grass-leaved golden aster|1 +(noun)|golden aster +grass-of-parnassus|1 +(noun)|parnassia|grass-of-Parnassus|marsh plant|bog plant|swamp plant +grass bacillus|1 +(noun)|Bacillus subtilis|Bacillus globigii|hay bacillus|Bacillus|Bacilli|B +grass family|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|monocot family|liliopsid family +grass fern|1 +(noun)|ribbon fern|Vittaria lineata|fern +grass finch|3 +(noun)|grassfinch|weaver|weaverbird|weaver finch +(noun)|vesper sparrow|Pooecetes gramineus|New World sparrow +(noun)| +grass frog|1 +(noun)|Rana temporaria|true frog|ranid +grass over|1 +(verb)|grass|cover|spread over +grass parakeet|1 +(noun)|budgerigar|budgereegah|budgerygah|budgie|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +grass pea|1 +(noun)|Indian pea|khesari|Lathyrus sativus|vetchling +grass pink|2 +(noun)|Calopogon pulchellum|Calopogon tuberosum|orchid|orchidaceous plant +(noun)|cottage pink|Dianthus plumarius|pink|garden pink +grass poly|1 +(noun)|hyssop loosestrife|Lythrum hyssopifolia|loosestrife +grass roots|2 +(noun)|foundation +(noun)|folk|common people +grass skirt|1 +(noun)|skirt +grass snake|3 +(noun)|ring snake|ringed snake|Natrix natrix|water snake +(noun)|garter snake|colubrid snake|colubrid +(noun)|green snake|colubrid snake|colubrid +grass tree|3 +(noun)|cabbage tree|Cordyline australis|tree +(noun)|Australian grass tree|arborescent plant +(noun)|tree heath|Richea pandanifolia|Australian heath +grass tree family|1 +(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|liliid monocot family +grass vetch|1 +(noun)|grass vetchling|Lathyrus nissolia|vetchling +grass vetchling|1 +(noun)|grass vetch|Lathyrus nissolia|vetchling +grass widow|1 +(noun)|divorcee|woman|adult female +grass widower|1 +(noun)|divorced man|man|adult male +grass wrack|1 +(noun)|eelgrass|sea wrack|Zostera marina|aquatic plant|water plant|hydrophyte|hydrophytic plant +grassfinch|1 +(noun)|grass finch|weaver|weaverbird|weaver finch +grassfire|1 +(noun)|fire +grasshopper|2 +(noun)|hopper|orthopterous insect|orthopteron|orthopteran +(noun)|cocktail +grasshopper mouse|1 +(noun)|vole|field mouse +grassland|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel|biome +grassless|1 +(adj)|grassless |bare +grasslike|1 +(adj)|grassy +grassroots|2 +(adj)|basic +(adj)|common +grassy|1 +(adj)|grassy |grass-covered|grasslike|rushlike|sedgelike|sedgy +grassy death camas|1 +(noun)|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas|zigadene +grate|8 +(noun)|grating|framework|frame|framing +(noun)|noise +(noun)|grating|barrier +(verb)|supply|provide|render|furnish +(verb)|eat into|fret|rankle|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|rub +(verb)|grind|break up|fragment|fragmentize|fragmentise +(verb)|scrape|rub +grated cheese|1 +(noun)|cheese +grateful|2 +(adj)|grateful |thankful|appreciative|glad +(adj)|pleasant +gratefully|1 +(adv)|appreciatively +gratefulness|1 +(noun)|thankfulness|appreciativeness|gratitude +grater|1 +(noun)|kitchen utensil +graticule|1 +(noun)|reticle|reticule|network +gratification|2 +(noun)|satisfaction|emotional state|spirit +(noun)|satisfaction +gratified|1 +(adj)|pleased +gratify|2 +(verb)|satisfy +(verb)|pander|indulge|provide|supply|ply|cater +gratifying|4 +(adj)|appreciated|pleasing|satisfying|rewarding +(adj)|proud +(adj)|sweet|pleasing +(adj)|enjoyable|pleasurable|pleasant +gratifyingly|1 +(adv)|satisfyingly +grating|4 +(adj)|gravel|gravelly|rasping|raspy|rough|cacophonous |cacophonic +(noun)|grate|barrier +(noun)|grate|framework|frame|framing +(noun)|diffraction grating|optical device +gratingly|1 +(adv)|raspingly|harshly +gratis|2 +(adj)|complimentary|costless|free|gratuitous|unpaid +(adv)|for free|free of charge +gratitude|1 +(noun)|feeling +gratuitous|3 +(adj)|unmerited +(adj)|complimentary|costless|free|gratis|unpaid +(adj)|needless|uncalled-for|unnecessary |unneeded +gratuity|2 +(noun)|tip|pourboire|baksheesh|bakshish|bakshis|backsheesh|fringe benefit|perquisite|perk +(noun)|prize|award +gratulatory|1 +(adj)|congratulatory|felicitous +grave|8 +(adj)|sedate|sober|solemn|serious +(adj)|dangerous|grievous|serious|severe|life-threatening|critical +(adj)|grievous|heavy|weighty|important |of import +(noun)|death|dying|demise +(noun)|tomb|topographic point|place|spot +(noun)|grave accent|accent|accent mark +(verb)|sculpt|sculpture|carve +(verb)|engrave|inscribe|carve|chip at +grave accent|1 +(noun)|grave|accent|accent mark +grave mound|1 +(noun)|burial mound|barrow|tumulus|mound|hill +gravedigger|1 +(noun)|laborer|manual laborer|labourer|jack +gravel|5 +(adj)|grating|gravelly|rasping|raspy|rough|cacophonous |cacophonic +(noun)|crushed rock|rock|stone +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|vex|chafe|devil|displease +(verb)|cover +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +gravel pit|1 +(noun)|pit|quarry|stone pit +gravelly|2 +(adj)|pebbly|shingly|beachy |beachlike +(adj)|grating|gravel|rasping|raspy|rough|cacophonous |cacophonic +gravelweed|1 +(noun)|Verbesina helianthoides|crownbeard|crown-beard|crown beard +gravely|2 +(adv)|soberly|staidly +(adv)|badly|severely|seriously +graven|2 +(adj)|sculpted|sculptured|carved |carven +(adj)|engraved|etched|incised|inscribed|carved |carven +graven image|1 +(noun)|idol|god|effigy|image|simulacrum +graveness|1 +(noun)|gravity|sobriety|soberness|somberness|seriousness|earnestness|serious-mindedness|sincerity +graver|1 +(noun)|graving tool|pointel|pointrel|hand tool +graverobber|2 +(noun)|thief|stealer +(noun)|ghoul|body snatcher|thief|stealer +graves|4 +(noun)|Graves|Robert Graves|Robert Ranke Graves|writer|author +(noun)|grave|death|dying|demise +(noun)|grave|tomb|topographic point|place|spot +(noun)|grave accent|grave|accent|accent mark +graves' disease|1 +(noun)|Graves' disease|exophthalmic goiter|hyperthyroidism|thyrotoxicosis|exophthalmos +gravestone|1 +(noun)|headstone|tombstone|stone|memorial|monument +graveyard|1 +(noun)|cemetery|burial site|burial ground|burying ground|memorial park|necropolis|site|land site +graveyard shift|2 +(noun)|night shift|shift|work shift|duty period +(noun)|night shift|shift +graveyard watch|1 +(noun)|middle watch|midwatch|night watch|watch +gravid|1 +(adj)|big|enceinte|expectant|great|large|heavy|with child|pregnant +gravida|2 +(noun)|pregnancy|gestation|maternity +(noun)|woman|adult female +gravida i|1 +(noun)|primigravida|gravida I|gravida +gravida ii|1 +(noun)|secundigravida|gravida II|gravida +gravida iii|1 +(noun)|tertigravida|gravida III|gravida +gravidation|1 +(noun)|gravidity|gravidness|pregnancy|gestation|maternity +gravidity|1 +(noun)|gravidness|gravidation|pregnancy|gestation|maternity +gravidness|1 +(noun)|gravidity|gravidation|pregnancy|gestation|maternity +gravimeter|2 +(noun)|hydrometer|measuring instrument|measuring system|measuring device +(noun)|gravity meter|measuring instrument|measuring system|measuring device +gravimetric|1 +(adj)|hydrometric|measurement|measuring|measure|mensuration +gravimetric analysis|1 +(noun)|quantitative analysis|quantitative chemical analysis +gravimetry|1 +(noun)|hydrometry|measurement|measuring|measure|mensuration +graving dock|1 +(noun)|dry dock|drydock|dock|dockage|docking facility +graving tool|1 +(noun)|graver|pointel|pointrel|hand tool +gravitas|1 +(noun)|dignity|lordliness|bearing|comportment|presence|mien +gravitate|3 +(verb)|tend|be given|lean|incline|run +(verb)|be +(verb)|move +gravitation|3 +(noun)|gravity|gravitational attraction|gravitational force|attraction|attractive force +(noun)|change of location|travel +(noun)|drift|trend|movement +gravitation wave|1 +(noun)|gravity wave|wave|undulation +gravitational|1 +(adj)|gravitative|attraction|attractive force +gravitational attraction|1 +(noun)|gravity|gravitation|gravitational force|attraction|attractive force +gravitational collapse|1 +(noun)|implosion +gravitational constant|1 +(noun)|universal gravitational constant|constant of gravitation|G|constant +gravitational field|1 +(noun)|field|field of force|force field +gravitational force|1 +(noun)|gravity|gravitation|gravitational attraction|attraction|attractive force +gravitational interaction|1 +(noun)|interaction|fundamental interaction +gravitational mass|1 +(noun)|mass +gravitational theory|1 +(noun)|theory of gravitation|theory of gravity|Newton's theory of gravitation|scientific theory +gravitative|1 +(adj)|gravitational|attraction|attractive force +gravitons|1 +(noun)|gauge boson +gravity|3 +(noun)|gravitation|gravitational attraction|gravitational force|attraction|attractive force +(noun)|graveness|sobriety|soberness|somberness|seriousness|earnestness|serious-mindedness|sincerity +(noun)|solemnity|feeling +gravity-assist|1 +(noun)|trajectory|flight +gravity bomb|1 +(noun)|dumb bomb|bomb +gravity fault|1 +(noun)|normal fault|common fault|inclined fault +gravity gradient|1 +(noun)|gradient +gravity meter|1 +(noun)|gravimeter|measuring instrument|measuring system|measuring device +gravity wave|1 +(noun)|gravitation wave|wave|undulation +gravure|4 +(noun)|intaglio printing|intaglio|printing|printing process +(noun)|engraving +(noun)|photogravure|heliogravure|print +(noun)|printing +gravy|2 +(noun)|sauce +(noun)|boom|bonanza|gold rush|godsend|manna from heaven|windfall|bunce|happening|occurrence|natural event +gravy boat|1 +(noun)|gravy holder|sauceboat|boat|dish +gravy holder|1 +(noun)|gravy boat|sauceboat|boat|dish +gravy train|1 +(noun)|easy money|income +gray|14 +(adj)|grey|grayish|greyish|achromatic +(adj)|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|old +(adj)|dull|grey|leaden|cloudy +(adj)|grey|southern +(adj)|grey|intermediate +(noun)|grayness|grey|greyness|achromatic color|achromatic colour +(noun)|grey|clothing|article of clothing|vesture|wear +(noun)|grey|organization|organisation +(noun)|saddle horse|riding horse|mount +(noun)|Gray|Thomas Gray|poet +(noun)|Gray|Robert Gray|navigator +(noun)|Gray|Asa Gray|botanist|phytologist|plant scientist +(verb)|grey|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|grey|discolor|discolour|colour|color +gray-haired|1 +(adj)|gray|grey|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|old +gray-headed|1 +(adj)|gray|grey|gray-haired|grey-haired|grey-headed|grizzly|hoar|hoary|white-haired|old +gray-leaf pine|1 +(noun)|Torrey pine|Torrey's pine|soledad pine|sabine pine|Pinus torreyana|pine|pine tree|true pine +gray alder|1 +(noun)|Alnus incana|alder|alder tree +gray area|1 +(noun)|grey area|area +gray birch|1 +(noun)|American gray birch|Betula populifolia|birch|birch tree +gray catbird|1 +(noun)|catbird|Dumetella carolinensis|oscine|oscine bird +gray flounder|1 +(noun)|Etropus rimosus|lefteye flounder|lefteyed flounder +gray fox|1 +(noun)|grey fox|Urocyon cinereoargenteus|fox +gray friar|1 +(noun)|Franciscan|Gray Friar|friar|mendicant +gray goldenrod|1 +(noun)|Solidago nemoralis|goldenrod +gray hen|2 +(noun)|grayhen|heath hen|black grouse +(noun)| +gray jay|1 +(noun)|Canada jay|camp robber|whisker jack|Perisoreus canadensis|jay +gray kingbird|1 +(noun)|petchary|Tyrannus domenicensis domenicensis|kingbird|Tyrannus tyrannus +gray lemming|1 +(noun)|red-backed lemming|lemming +gray market|1 +(noun)|market|marketplace +gray matter|1 +(noun)|grey matter|grey substance|gray substance|substantia grisea|nervous tissue|nerve tissue +gray mullet|2 +(noun)|mullet|fish +(noun)|mullet|percoid fish|percoid|percoidean +gray partridge|1 +(noun)|Hungarian partridge|Perdix perdix|partridge +gray polypody|1 +(noun)|resurrection fern|Polypodium polypodioides|polypody +gray poplar|1 +(noun)|Populus canescens|poplar|poplar tree +gray sage|1 +(noun)|silver sage|silver sagebrush|Seriphidium canum|Artemisia cana|sagebrush|sage brush +gray sea eagle|1 +(noun)|ern|erne|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle +gray skate|1 +(noun)|Raja batis|skate +gray snapper|1 +(noun)|mangrove snapper|Lutjanus griseus|snapper +gray sole|1 +(noun)|sole|fillet of sole +gray substance|1 +(noun)|grey matter|gray matter|grey substance|substantia grisea|nervous tissue|nerve tissue +gray whale|1 +(noun)|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale|whalebone whale +gray willow|1 +(noun)|Salix cinerea|willow|willow tree +gray wolf|1 +(noun)|timber wolf|Canis lupus|wolf +grayback|3 +(noun)|Rebel|Reb|Johnny Reb|Johnny|Confederate soldier +(noun)|Limnodromus griseus|dowitcher +(noun)|knot|Calidris canutus|sandpiper +graybeard|2 +(noun)|old man|greybeard|Methuselah|oldster|old person|senior citizen|golden ager|man|adult male +(noun)|bellarmine|longbeard|long-beard|jug +grayed|1 +(adj)|dulled|colorless |colourless +grayhen|1 +(noun)|gray hen|heath hen|black grouse +grayish|1 +(adj)|gray|grey|greyish|achromatic +grayish brown|1 +(noun)|dun|greyish brown|fawn|light brown +graylag|1 +(noun)|greylag|greylag goose|Anser anser|goose +grayly|1 +(adv)|greyly +grayness|1 +(noun)|gray|grey|greyness|achromatic color|achromatic colour +graz|1 +(noun)|Graz|city|metropolis|urban center +graze|7 +(noun)|abrasion|scratch|scrape|excoriation +(noun)|grazing|eating|feeding +(verb)|crop|browse|range|pasture|feed|eat +(verb)|injure|wound +(verb)|crop|pasture|feed|give +(verb)|crease|rake|brush +(verb)|browse|nosh|snack +grazed|1 +(adj)|touched +grazier|1 +(noun)|rancher +grazing|2 +(noun)|graze|eating|feeding +(noun)|shaving|skimming|touch|touching +grazing fire|1 +(noun)|fire|firing +grazing land|1 +(noun)|pasture|pastureland|lea|ley|grassland +grease|3 +(noun)|lubricating oil|oil +(noun)|dirt|filth|grime|soil|stain|grunge|dirtiness|uncleanness +(verb)|cover +grease-gun|1 +(noun)|gun|pump +grease monkey|1 +(noun)|automobile mechanic|auto-mechanic|car-mechanic|mechanic|repairman|repairer|maintenance man|service man|fixer +grease one's palms|1 +(verb)|bribe|corrupt|buy|pay +greaseball|1 +(noun)|wop|dago|Guinea|Italian +greased|1 +(adj)|lubricated +greasepaint|1 +(noun)|makeup|make-up|war paint +greaseproof|1 +(adj)|impervious |imperviable +greaseproof paper|1 +(noun)|paper +greaser|1 +(noun)|wetback|taco|Mexican +greasewood|1 +(noun)|black greasewood|Sarcobatus vermiculatus|shrub|bush +greasiness|1 +(noun)|oiliness|oleaginousness|fatness|fat|blubber|avoirdupois +greasy|2 +(adj)|oily|sebaceous|oleaginous|fatty |fat +(adj)|oily|dirty |soiled|unclean +greasy spoon|1 +(noun)|restaurant|eating house|eating place +great|9 +(adj)|large +(adj)|high +(adj)|distinguished|eminent|important |of import +(adj)|outstanding|major +(adj)|extraordinary +(adj)|bang-up|bully|corking|cracking|dandy|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|capital|majuscule|uppercase +(adj)|avid|eager|zealous|enthusiastic +(adj)|big|enceinte|expectant|gravid|large|heavy|with child|pregnant +great-aunt|1 +(noun)|grandaunt|aunt|auntie|aunty +great-leaved macrophylla|1 +(noun)|large-leaved magnolia|large-leaved cucumber tree|Magnolia macrophylla|magnolia +great-nephew|1 +(noun)|grandnephew|nephew +great-niece|1 +(noun)|grandniece|niece +great-uncle|1 +(noun)|granduncle|uncle +great adductor muscle|1 +(noun)|musculus adductor magnus|adductor|adductor muscle +great anteater|1 +(noun)|ant bear|giant anteater|tamanoir|Myrmecophaga jubata|anteater|New World anteater +great ape|1 +(noun)|pongid|anthropoid ape +great attractor|1 +(noun)|Great Attractor|galaxy|extragalactic nebula +great auk|1 +(noun)|Pinguinus impennis|auk +great australian bight|1 +(noun)|Great Australian Bight|bight +great barracuda|1 +(noun)|Sphyraena barracuda|barracuda +great barrier reef|1 +(noun)|Great Barrier Reef|coral reef +great bear|1 +(noun)|Great Bear|Ursa Major|constellation +great bellied|1 +(adj)|big-bellied|bellied +great black-backed gull|1 +(noun)|black-backed gull|cob|Larus marinus|gull|seagull|sea gull +great blue heron|1 +(noun)|Ardea herodius|heron +great blue shark|1 +(noun)|blue shark|Prionace glauca|requiem shark +great bowerbird|1 +(noun)|Chlamydera nuchalis|bowerbird|catbird +great britain|2 +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +(noun)|Great Britain|island +great burdock|1 +(noun)|greater burdock|cocklebur|Arctium lappa|burdock|clotbur +great bustard|1 +(noun)|Otis tarda|bustard +great care|1 +(noun)|care|charge|tutelage|guardianship +great cerebral vein|1 +(noun)|vena cerebri magna|cerebral vein|vena cerebri +great circle|1 +(noun)|line +great crested grebe|1 +(noun)|Podiceps cristatus|grebe +great dane|1 +(noun)|Great Dane|working dog +great deal|1 +(noun)|batch|deal|flock|good deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +great depression|1 +(noun)|Great Depression|depression|slump|economic crisis +great divide|1 +(noun)|Great Divide|watershed|water parting|divide +great dividing range|1 +(noun)|Great Dividing Range|Eastern Highlands|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +great dog|1 +(noun)|Canis Major|Great Dog|constellation +great duckweed|1 +(noun)|water flaxseed|Spirodela polyrrhiza|duckweed +great falls|1 +(noun)|Great Falls|town +great grandfather|1 +(noun)|great grandparent +great grandmother|1 +(noun)|great grandparent +great grandparent|1 +(noun)|forebear|forbear +great gray kangaroo|1 +(noun)|giant kangaroo|Macropus giganteus|kangaroo +great gray owl|1 +(noun)|Strix nebulosa|owl|bird of Minerva|bird of night|hooter +great gross|1 +(noun)|1728|large integer +great hall|1 +(noun)|hall +great horned owl|1 +(noun)|Bubo virginianus|horned owl +great hundred|1 +(noun)|long hundred|120|large integer +great knapweed|1 +(noun)|greater knapweed|Centaurea scabiosa|knapweed +great lakes|1 +(noun)|Great Lakes|lake +great lakes state|1 +(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state +great lobelia|1 +(noun)|blue cardinal flower|Lobelia siphilitica|lobelia +great maple|1 +(noun)|sycamore|scottish maple|Acer pseudoplatanus|maple +great mendenhall glacier|1 +(noun)|Mendenhall Glacier|Great Mendenhall Glacier|Piedmont glacier|Piedmont type of glacier +great millet|1 +(noun)|kaffir|kafir corn|kaffir corn|Sorghum bicolor|sorghum +great mother|1 +(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity +great mullein|1 +(noun)|common mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +great plains|1 +(noun)|Great Plains|Great Plains of North America|prairie +great plains of north america|1 +(noun)|Great Plains|Great Plains of North America|prairie +great plains paintbrush|1 +(noun)|Castilleja sessiliflora|Indian paintbrush|painted cup +great power|1 +(noun)|world power|major power|power|superpower|state|nation|country|land|commonwealth|res publica|body politic +great proletarian cultural revolution|1 +(noun)|Cultural Revolution|Great Proletarian Cultural Revolution|revolution +great pyramid|1 +(noun)|Pyramid|Great Pyramid|memorial|monument +great pyrenees|1 +(noun)|Great Pyrenees|dog|domestic dog|Canis familiaris +great ragweed|1 +(noun)|Ambrosia trifida|ragweed|ambrosia|bitterweed +great revolt|1 +(noun)|Peasant's Revolt|Great Revolt|rebellion|insurrection|revolt|rising|uprising +great rift valley|1 +(noun)|Great Rift Valley|rift valley +great russian|1 +(noun)|Great Russian|Russian +great salt lake|1 +(noun)|Great Salt Lake|lake +great sandy desert|1 +(noun)|Great Sandy Desert|desert +great saphenous vein|1 +(noun)|long saphenous vein|saphenous vein|vena saphena +great seal|1 +(noun)|seal|stamp +great seal of the united states|1 +(noun)|Great Seal of the United States|great seal +great skua|1 +(noun)|Catharacta skua|skua|bonxie +great slave lake|1 +(noun)|Great Slave Lake|lake +great smoky mountains|1 +(noun)|Great Smoky Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +great smoky mountains national park|1 +(noun)|Great Smoky Mountains National Park|national park +great snipe|1 +(noun)|woodcock snipe|Gallinago media|snipe +great solomon's-seal|1 +(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal +great st john's wort|1 +(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort +great toe|1 +(noun)|big toe|hallux|toe +great victoria desert|1 +(noun)|Great Victoria Desert|desert +great wall|1 +(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart|bulwark|wall +great wall of china|1 +(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart|bulwark|wall +great war|1 +(noun)|World War I|World War 1|Great War|First World War|War to End War|world war +great white heron|3 +(noun)|American egret|Egretta albus|egret +(noun)|Casmerodius albus|egret +(noun)|Ardea occidentalis|heron +great white hope|1 +(noun)|white hope|hope +great white shark|1 +(noun)|white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark +great white way|1 +(noun)|Broadway|Great White Way|street +great year|1 +(noun)|Platonic year|time period|period of time|period +great yellow gentian|1 +(noun)|Gentiana lutea|gentian +great yellowcress|1 +(noun)|Rorippa amphibia|Nasturtium amphibium|watercress +greatcoat|1 +(noun)|overcoat|topcoat|coat +greater|10 +(adj)|greater +(adj)|great|large +(adj)|great|high +(adj)|distinguished|eminent|great|important |of import +(adj)|great|outstanding|major +(adj)|great|extraordinary +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|capital|great|majuscule|uppercase +(adj)|avid|great|eager|zealous|enthusiastic +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +greater antilles|1 +(noun)|Greater Antilles|archipelago +greater burdock|1 +(noun)|great burdock|cocklebur|Arctium lappa|burdock|clotbur +greater butterfly orchid|1 +(noun)|Platanthera chlorantha|Habenaria chlorantha|orchid|orchidaceous plant +greater celandine|1 +(noun)|celandine|swallowwort|swallow wort|Chelidonium majus|poppy +greater knapweed|1 +(noun)|great knapweed|Centaurea scabiosa|knapweed +greater kudu|1 +(noun)|Tragelaphus strepsiceros|kudu|koodoo|koudou +greater london|1 +(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital +greater masterwort|1 +(noun)|Astrantia major|astrantia|masterwort +greater new orleans bridge|1 +(noun)|Greater New Orleans Bridge|cantilever bridge +greater new york|1 +(noun)|New York|New York City|Greater New York|city|metropolis|urban center|port of entry|point of entry +greater omentum|1 +(noun)|gastrocolic omentum|caul|omentum +greater pectoral muscle|1 +(noun)|pectoralis major|musculus pectoralis major|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +greater peritoneal sac|1 +(noun)|peritoneal cavity|cavity|bodily cavity|cavum +greater pichiciego|1 +(noun)|Burmeisteria retusa|armadillo +greater prairie chicken|1 +(noun)|Tympanuchus cupido|prairie chicken|prairie grouse|prairie fowl +greater rhomboid muscle|1 +(noun)|rhomboideus major muscle|musculus rhomboideus major|rhomboid|rhomboid muscle +greater scaup|1 +(noun)|Aythya marila|scaup|scaup duck|bluebill|broadbill +greater spearwort|1 +(noun)|Ranunculus lingua|marsh plant|bog plant|swamp plant +greater stitchwort|1 +(noun)|stitchwort|starwort|Stellaria holostea|chickweed +greater sunda islands|1 +(noun)|Greater Sunda Islands|archipelago +greater water parsnip|1 +(noun)|Sium latifolium|marsh plant|bog plant|swamp plant +greater whitethroat|1 +(noun)|whitethroat|Sylvia communis|warbler +greater yellowlegs|1 +(noun)|Tringa melanoleuca|yellowlegs +greatest|13 +(adj)|top|maximal +(adj)|biggest|largest|large +(adj)|leading|preeminent|superior +(adj)|sterling|superlative|superior +(adj)|great|large +(adj)|great|high +(adj)|distinguished|eminent|great|important |of import +(adj)|great|outstanding|major +(adj)|great|extraordinary +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|capital|great|majuscule|uppercase +(adj)|avid|great|eager|zealous|enthusiastic +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +greatest common divisor|1 +(noun)|greatest common factor|highest common factor|common divisor|common factor|common measure +greatest common factor|1 +(noun)|greatest common divisor|highest common factor|common divisor|common factor|common measure +greathearted|1 +(adj)|magnanimous|noble +greatness|2 +(noun)|importance +(noun)|enormousness|grandness|immenseness|immensity|sizeableness|vastness|largeness|bigness +greave|1 +(noun)|greaves|jambeau|armor plate|armour plate|armor plating|plate armor|plate armour +greaves|2 +(noun)|greave|jambeau|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|greave|jambeau|armor plate|armour plate|armor plating|plate armor|plate armour +grebe|1 +(noun)|podicipitiform seabird +grecian|1 +(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state +greco|1 +(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master +greco-roman|1 +(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical +greco-roman architecture|1 +(noun)|classical architecture|Greco-Roman architecture|architectural style|style of architecture|type of architecture +greco-roman deity|1 +(noun)|Greco-Roman deity|Graeco-Roman deity|deity|divinity|god|immortal +greece|1 +(noun)|Greece|Hellenic Republic|Ellas|Balkan country|Balkan nation|Balkan state +greed|2 +(noun)|desire +(noun)|avarice|covetousness|rapacity|avaritia|mortal sin|deadly sin +greedily|1 +(adv)|avariciously|covetously +greediness|2 +(noun)|hoggishness|piggishness|gluttony +(noun)|selfishness +greedy|3 +(adj)|avaricious|covetous|grabby|grasping|prehensile|acquisitive +(adj)|avid|devouring|esurient|desirous +(adj)|gluttonous +greegree|1 +(noun)|grigri|gres-gris|amulet|talisman +greek|3 +(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state +(noun)|Greek|Hellenic|Hellenic language|Indo-European|Indo-European language|Indo-Hittite +(noun)|Greek|Hellene|European +greek alphabet|1 +(noun)|Greek alphabet|alphabet +greek architecture|1 +(noun)|Greek architecture|classical architecture|Greco-Roman architecture +greek capital|1 +(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital +greek catholic|1 +(noun)|Greek Catholic|Catholic +greek chorus|1 +(noun)|chorus|Greek chorus|company|troupe +greek church|1 +(noun)|Greek Orthodox Church|Greek Church|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox +greek clover|1 +(noun)|fenugreek|Greek clover|Trigonella foenumgraecum|herb|herbaceous plant +greek cross|1 +(noun)|Greek cross|cross +greek deity|1 +(noun)|Greek deity|deity|divinity|god|immortal +greek drachma|1 +(noun)|drachma|Greek drachma|Greek monetary unit +greek fire|1 +(noun)|Greek fire|mixture|weapon|arm|weapon system +greek fret|1 +(noun)|fret|Greek fret|Greek key|key pattern|architectural ornament +greek key|1 +(noun)|fret|Greek fret|Greek key|key pattern|architectural ornament +greek mode|1 +(noun)|Greek mode|mode|musical mode +greek monetary unit|1 +(noun)|Greek monetary unit|monetary unit +greek mythology|1 +(noun)|Greek mythology|classical mythology +greek orthodox|1 +(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church +greek orthodox church|1 +(noun)|Greek Orthodox Church|Greek Church|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox +greek partridge|1 +(noun)|Greek partridge|rock partridge|Alectoris graeca|partridge +greek valerian|2 +(noun)|Greek valerian|Polemonium reptans|polemonium +(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +greeley|1 +(noun)|Greeley|Horace Greeley|journalist +green|14 +(adj)|greenish|light-green|dark-green|chromatic +(adj)|party|political party +(adj)|green |unripe|unripened|immature|unaged +(adj)|ill |sick +(adj)|fleeceable|gullible|naive |naif +(noun)|greenness|viridity|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|park|commons|common|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|Green|William Green|labor leader +(noun)|Green|environmentalist|conservationist|Green Party +(noun)|Green|Green River|river +(noun)|putting green|site|land site +(noun)|greens|leafy vegetable|vegetable|veggie +(noun)|K|jet|super acid|special K|honey oil|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +(verb)|discolor|discolour|colour|color +green-blind|1 +(adj)|deuteranopic|blind |unsighted +green-blindness|1 +(noun)|deuteranopia|Daltonism|red-green dichromacy|red-green color blindness|red-green colour blindness +green-eyed|1 +(adj)|jealous|overjealous|distrustful +green-eyed monster|1 +(noun)|jealousy|envy|enviousness|the green-eyed monster +green-tailed towhee|1 +(noun)|Chlorura chlorura|towhee +green-winged teal|1 +(noun)|greenwing|Anas crecca|teal +green adder's mouth|1 +(noun)|Malaxis-unifolia|Malaxis ophioglossoides|orchid|orchidaceous plant +green alder|2 +(noun)|Alnus veridis crispa|Alnus crispa|alder|alder tree +(noun)|Alnus veridis|alder|alder tree +green algae|1 +(noun)|chlorophyte|alga|algae +green apple aphid|1 +(noun)|apple aphid|Aphis pomi|aphid +green arrow arum|1 +(noun)|tuckahoe|Peltandra virginica|arrow arum +green ash|1 +(noun)|Fraxinus pennsylvanica subintegerrima|red ash|downy ash|Fraxinus pennsylvanica +green bay|1 +(noun)|Green Bay|city|metropolis|urban center +green bean|2 +(noun)|fresh bean +(noun)|common bean|common bean plant|Phaseolus vulgaris +green beret|1 +(noun)|Green Beret|soldier +green bristlegrass|1 +(noun)|green foxtail|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail|foxtail grass +green broom|1 +(noun)|common broom|Scotch broom|Cytisus scoparius|broom|Cytisus|genus Cytisus +green card|1 +(noun)|positive identification +green corn|2 +(noun)|sweet corn|sugar corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +(noun)|sweet corn|corn|edible corn +green dinosaur|1 +(noun)|Bartle Frere|genus Bartle-Frere|dicot genus|magnoliopsid genus +green douglas fir|1 +(noun)|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +green dragon|2 +(noun)|dragon arum|Dracunculus vulgaris|arum|aroid +(noun)|Arisaema dracontium|arum|aroid +green fingers|1 +(noun)|green thumb|forte|strong suit|long suit|metier|specialty|speciality|strong point|strength +green foxtail|1 +(noun)|green bristlegrass|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail|foxtail grass +green fringed orchis|1 +(noun)|ragged orchid|ragged orchis|ragged-fringed orchid|Habenaria lacera|fringed orchis|fringed orchid +green frog|1 +(noun)|spring frog|Rana clamitans|true frog|ranid +green gentian|1 +(noun)|Frasera speciosa|Swertia speciosa|herb|herbaceous plant +green gland|1 +(noun)|gland|secretory organ|secretor|secreter +green goddess|1 +(noun)|pot|grass|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +green gold|1 +(noun)|gold|Au|atomic number 79 +green goods|1 +(noun)|produce|green groceries|garden truck|food +green gram|1 +(noun)|mung|mung bean|golden gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +green groceries|3 +(noun)|produce|green goods|garden truck|food +(noun)|greengrocery|grocery|foodstuff +(noun)|greengrocery|grocery store|grocery|food market|market +green hellebore|1 +(noun)|Helleborus viridis|hellebore +green june beetle|1 +(noun)|green June beetle|figeater|June beetle|June bug|May bug|May beetle +green lacewing|1 +(noun)|chrysopid|stink fly|lacewing|lacewing fly +green lead ore|1 +(noun)|pyromorphite|mineral +green light|2 +(noun)|go-ahead|traffic light|traffic signal|stoplight +(noun)|permission +green line|1 +(noun)|Green Line|boundary line|border|borderline|delimitation|mete +green lizard|1 +(noun)|Lacerta viridis|lacertid lizard|lacertid +green mamba|1 +(noun)|black mamba|Dendroaspis augusticeps +green manure|1 +(noun)|manure +green market|2 +(noun)|farmer's market|greenmarket|open-air market|open-air marketplace|market square +(noun)| +green mayonnaise|1 +(noun)|sauce verte|mayonnaise|mayo +green monkey|1 +(noun)|African green monkey|Cercopithecus aethiops sabaeus|guenon|guenon monkey +green monkey disease|1 +(noun)|Marburg disease|Marburg hemorrhagic fever|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +green mountain state|1 +(noun)|Vermont|Green Mountain State|VT|American state +green mushroom pimple|1 +(noun)|mushroom pimple +green olive|1 +(noun)|olive +green onion|1 +(noun)|scallion|onion +green paper|1 +(noun)|report|study|written report +green party|1 +(noun)|Green Party|party|political party +green pea|1 +(noun)|garden pea|pea +green pea soup|1 +(noun)|potage St. Germain|soup +green peach aphid|1 +(noun)|greenfly +green peafowl|1 +(noun)|Pavo muticus|peafowl|bird of Juno +green pepper|1 +(noun)|sweet pepper +green plover|1 +(noun)|lapwing|peewit|pewit|plover +green revolution|1 +(noun)|revolution +green river|1 +(noun)|Green|Green River|river +green salad|1 +(noun)|tossed salad +green smut|1 +(noun)|false smut|smut +green smut fungus|1 +(noun)|Ustilaginoidea virens|fungus +green snake|2 +(noun)|colubrid snake|colubrid +(noun)|grass snake|colubrid snake|colubrid +green soap|1 +(noun)|soft soap|soap +green soybean|1 +(noun)|shell bean +green spleenwort|1 +(noun)|Asplenium viride|spleenwort +green tea|1 +(noun)|tea|tea leaf +green thumb|1 +(noun)|green fingers|forte|strong suit|long suit|metier|specialty|speciality|strong point|strength +green turtle|1 +(noun)|Chelonia mydas|sea turtle|marine turtle +green turtle soup|1 +(noun)|turtle soup|soup +green woodpecker|1 +(noun)|Picus viridis|woodpecker|peckerwood|pecker +greenback|1 +(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|paper money|folding money|paper currency +greenback party|1 +(noun)|Greenback Party|party|political party +greenbelt|1 +(noun)|greenway|belt +greenberg|1 +(noun)|Greenberg|Joseph Greenberg|linguist|polyglot +greenbottle|1 +(noun)|greenbottle fly|blowfly|blow fly +greenbottle fly|1 +(noun)|greenbottle|blowfly|blow fly +greenbrier|1 +(noun)|bullbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine +greene|1 +(noun)|Greene|Graham Greene|Henry Graham Greene|writer|author +greenery|1 +(noun)|verdure|leaf|leafage|foliage +greeneye|1 +(noun)|soft-finned fish|malacopterygian +greenfly|1 +(noun)|aphid +greengage|1 +(noun)|greengage plum|plum +greengage plum|1 +(noun)|greengage|plum +greengrocer|1 +(noun)|grocer +greengrocery|2 +(noun)|grocery|foodstuff +(noun)|grocery store|grocery|food market|market +greenhood|1 +(noun)|helmet orchid|orchid|orchidaceous plant +greenhorn|1 +(noun)|cub|rookie|novice|beginner|tyro|tiro|initiate +greenhouse|2 +(adj)|atmospheric phenomenon +(noun)|nursery|glasshouse|building|edifice +greenhouse effect|1 +(noun)|atmospheric phenomenon +greenhouse emission|1 +(noun)|greenhouse gas|gas +greenhouse gas|1 +(noun)|greenhouse emission|gas +greenhouse whitefly|1 +(noun)|Trialeurodes vaporariorum|whitefly +greening|2 +(adj)|discolor|discolour|colour|color +(noun)|rejuvenation|organic phenomenon +greenish|1 +(adj)|green|light-green|dark-green|chromatic +greenish blue|1 +(noun)|aqua|aquamarine|turquoise|cobalt blue|peacock blue|blue|blueness +greenish yellow|1 +(noun)|yellow|yellowness +greenishness|1 +(noun)|green|greenness|viridity +greenland|1 +(noun)|Greenland|Gronland|Kalaallit Nunaat|island +greenland caribou|1 +(noun)|caribou|reindeer|Greenland caribou|Rangifer tarandus|deer|cervid +greenland sea|1 +(noun)|Greenland Sea|sea +greenland spar|1 +(noun)|cryolite|Greenland spar|mineral +greenland whale|1 +(noun)|bowhead|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale|whalebone whale +greenling|1 +(noun)|scorpaenoid|scorpaenoid fish +greenmail|1 +(noun)|shark repellent|porcupine provision +greenmarket|1 +(noun)|farmer's market|green market|open-air market|open-air marketplace|market square +greenness|3 +(noun)|verdancy|verdure|profusion|profuseness|richness|cornucopia +(noun)|immaturity|immatureness +(noun)|green|viridity|chromatic color|chromatic colour|spectral color|spectral colour +greenockite|1 +(noun)|cadmium sulphide|mineral +greenpeace|1 +(noun)|Greenpeace|nongovernmental organization|NGO +greenroom|1 +(noun)|room +greens|9 +(noun)|green|leafy vegetable|vegetable|veggie +(noun)|green|greenness|viridity|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|park|commons|common|green|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|Green|William Green|labor leader +(noun)|Green|environmentalist|conservationist|Green Party +(noun)|Green|Green River|river +(noun)|green|putting green|site|land site +(noun)|green|leafy vegetable|vegetable|veggie +(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +greensand|1 +(noun)|sandstone +greensboro|1 +(noun)|Greensboro|city|metropolis|urban center +greenshank|1 +(noun)|Tringa nebularia|sandpiper +greensickness|1 +(noun)|chlorosis|iron deficiency anemia|iron deficiency anaemia +greenside|1 +(adj)|site|land site +greenskeeper|1 +(noun)|custodian|keeper|steward +greenstick fracture|1 +(noun)|incomplete fracture +greensward|1 +(noun)|turf|sod|sward|land|ground|soil +greenville|3 +(noun)|Greenville|town +(noun)|Greenville|town +(noun)|Greenville|town +greenway|1 +(noun)|greenbelt|belt +greenweed|1 +(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|whin|woadwaxen|Genista tinctoria|broom +greenwich|1 +(noun)|Greenwich|borough +greenwich mean time|1 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time +greenwich time|1 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time +greenwich village|1 +(noun)|Greenwich Village|Village|residential district|residential area|community +greenwing|1 +(noun)|green-winged teal|Anas crecca|teal +greenwood|1 +(noun)|forest|woodland|timberland|timber +greet|3 +(verb)|recognize|recognise|address|accost|come up to +(verb)|communicate|intercommunicate +(verb)|react|respond +greeter|1 +(noun)|saluter|welcomer|person|individual|someone|somebody|mortal|human|soul +greeting|1 +(noun)|salutation|acknowledgment|acknowledgement +greeting card|1 +(noun)|card +greg norman|1 +(noun)|Norman|Greg Norman|Gregory John Norman|golfer|golf player|linksman +gregarine|1 +(noun)|sporozoan +gregarinida|1 +(noun)|Gregarinida|order Gregarinida|animal order +gregarious|2 +(adj)|gregarious |caespitose|cespitose|tufted|clustered|herding|swarming|social|social +(adj)|social +gregariously|1 +(adv)|sociably +gregariousness|1 +(noun)|sociability|sociableness +gregor mendel|1 +(noun)|Mendel|Gregor Mendel|Johann Mendel|monk|monastic|botanist|phytologist|plant scientist +gregorian|2 +(adj)|Gregorian|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor|chant +(adj)|Gregorian|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|solar calendar +gregorian calendar|1 +(noun)|Gregorian calendar|New Style calendar|solar calendar +gregorian calendar month|1 +(noun)|Gregorian calendar month|calendar month|month +gregorian chant|1 +(noun)|plainsong|plainchant|Gregorian chant|chant +gregorian mode|1 +(noun)|ecclesiastical mode|Gregorian mode|church mode|medieval mode|mode|musical mode +gregorian telescope|1 +(noun)|Cassegrainian telescope|Gregorian telescope|reflecting telescope|reflector +gregory|3 +(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +(noun)|Gregory|Gregory VII|Hildebrand|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor +gregory goodwin pincus|1 +(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist +gregory i|1 +(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor +gregory john norman|1 +(noun)|Norman|Greg Norman|Gregory John Norman|golfer|golf player|linksman +gregory nazianzen|1 +(noun)|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +gregory of nazianzen|1 +(noun)|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +gregory pincus|1 +(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist +gregory the great|1 +(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor +gregory vii|1 +(noun)|Gregory|Gregory VII|Hildebrand|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +gregory xiii|1 +(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +greisen|1 +(noun)|rock|stone +gremlin|1 +(noun)|elf|hob|pixie|pixy|brownie|imp|fairy|faery|faerie|sprite +grenada|1 +(noun)|Grenada|country|state|land +grenada dollar|1 +(noun)|Grenada dollar|dollar +grenade|1 +(noun)|bomb +grenade thrower|1 +(noun)|grenadier|infantryman|marcher|foot soldier|footslogger +grenadian|2 +(adj)|Grenadian|country|state|land +(noun)|Grenadian|West Indian +grenadier|2 +(noun)|grenade thrower|infantryman|marcher|foot soldier|footslogger +(noun)|rattail|rattail fish|gadoid|gadoid fish +grenadine|1 +(noun)|syrup|sirup +grenoble|1 +(noun)|Grenoble|city|metropolis|urban center +gres-gris|1 +(noun)|grigri|greegree|amulet|talisman +gresham|1 +(noun)|Gresham|Sir Thomas Gresham|financier|moneyman +gresham's law|1 +(noun)|Gresham's Law|principle|rule +greta garbo|1 +(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress +greta louisa gustafsson|1 +(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress +gretzky|1 +(noun)|Gretzky|Wayne Gretzky|hockey player|ice-hockey player +grevillea|1 +(noun)|shrub|bush +grevillea banksii|1 +(noun)|red-flowered silky oak|Grevillea banksii|silk oak +grevillea robusta|1 +(noun)|silky oak|Grevillea robusta|silk oak +grevillea striata|1 +(noun)|beefwood|Grevillea striata|silk oak +grevillela parallela|1 +(noun)|silver oak|Grevillela parallela|silk oak +grevy's zebra|1 +(noun)|Equus grevyi|zebra +grewia|1 +(noun)|Grewia|genus Grewia|dilleniid dicot genus +grewia asiatica|1 +(noun)|phalsa|Grewia asiatica|shrub|bush +grey|13 +(adj)|gray|grayish|greyish|achromatic +(adj)|gray|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|old +(adj)|gray|southern +(adj)|gray|intermediate +(adj)|dull|gray|leaden|cloudy +(noun)|Grey|Zane Grey|writer|author +(noun)|Grey|Lady Jane Grey|Queen of England +(noun)|Grey|Charles Grey|Second Earl Grey|statesman|solon|national leader +(noun)|gray|organization|organisation +(noun)|gray|grayness|greyness|achromatic color|achromatic colour +(noun)|gray|clothing|article of clothing|vesture|wear +(verb)|gray|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|gray|discolor|discolour|colour|color +grey-haired|1 +(adj)|gray|grey|gray-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|old +grey-headed|1 +(adj)|gray|grey|gray-haired|grey-haired|gray-headed|grizzly|hoar|hoary|white-haired|old +grey area|1 +(noun)|gray area|area +grey fox|1 +(noun)|gray fox|Urocyon cinereoargenteus|fox +grey matter|1 +(noun)|gray matter|grey substance|gray substance|substantia grisea|nervous tissue|nerve tissue +grey substance|1 +(noun)|grey matter|gray matter|gray substance|substantia grisea|nervous tissue|nerve tissue +greybeard|1 +(noun)|old man|graybeard|Methuselah|oldster|old person|senior citizen|golden ager|man|adult male +greyhound|1 +(noun)|hound|hound dog|racer +greyhound racing|1 +(noun)|racing +greyish|1 +(adj)|gray|grey|grayish|achromatic +greyish brown|1 +(noun)|dun|grayish brown|fawn|light brown +greylag|1 +(noun)|graylag|greylag goose|Anser anser|goose +greylag goose|1 +(noun)|graylag|greylag|Anser anser|goose +greyly|1 +(adv)|grayly +greyness|1 +(noun)|gray|grayness|grey|achromatic color|achromatic colour +gri-gri|2 +(noun)|grugru|grugru palm|macamba|Acrocomia aculeata|feather palm +(noun)|grigri|gres-gris|greegree|amulet|talisman +grias|1 +(noun)|Grias|genus Grias|dicot genus|magnoliopsid genus +grias cauliflora|1 +(noun)|anchovy pear|anchovy pear tree|Grias cauliflora|fruit tree +grid|4 +(noun)|power system|power grid|facility|installation +(noun)|reference grid|network +(noun)|control grid|electrode +(noun)|gridiron|cooking utensil|cookware +grid metal|1 +(noun)|hard lead|antimonial lead +griddle|2 +(noun)|cooking utensil|cookware +(verb)|fry +griddlecake|2 +(noun)|drop scone|Scotch pancake|scone +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|hotcake|hot cake|cake +gridiron|2 +(noun)|grid|cooking utensil|cookware +(noun)|football field|playing field|athletic field|playing area|field +gridiron-tailed lizard|1 +(noun)|zebra-tailed lizard|Callisaurus draconoides|iguanid|iguanid lizard +gridlock|1 +(noun)|traffic jam|snarl-up +grief|2 +(noun)|heartache|heartbreak|brokenheartedness|sorrow +(noun)|sorrow|negative stimulus +grief-stricken|1 +(adj)|bereaved|bereft|grieving|mourning|sorrowing|sorrowful +grieg|1 +(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer +grievance|3 +(noun)|grudge|score|resentment|bitterness|gall|rancor|rancour +(noun)|allegation +(noun)|complaint +grieve|2 +(verb)|sorrow|suffer +(verb)|aggrieve|afflict +griever|1 +(noun)|mourner|sorrower|lamenter|unfortunate|unfortunate person +grieving|1 +(adj)|bereaved|bereft|grief-stricken|mourning|sorrowing|sorrowful +grievous|4 +(adj)|dangerous|grave|serious|severe|life-threatening|critical +(adj)|heartbreaking|heartrending|sorrowful +(adj)|grave|heavy|weighty|important |of import +(adj)|atrocious|flagitious|heinous|monstrous|evil |wicked +grievous bodily harm|1 +(noun)|soap|scoop|max|liquid ecstasy|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +griffin|1 +(noun)|gryphon|mythical monster|mythical creature +griffith|1 +(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker|filmmaker|film producer|movie maker +griffon|3 +(noun)|Brussels griffon|Belgian griffon|dog|domestic dog|Canis familiaris +(noun)|wire-haired pointing griffon|sporting dog|gun dog +(noun)|griffon vulture|Gyps fulvus|Old World vulture +griffon vulture|1 +(noun)|griffon|Gyps fulvus|Old World vulture +grifola frondosa|1 +(noun)|hen-of-the-woods|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus +grifter|1 +(noun)|swindler|chiseller|chiseler|gouger|scammer|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +grigori efimovich rasputin|1 +(noun)|Rasputin|Grigori Efimovich Rasputin|starets +grigri|1 +(noun)|gres-gris|greegree|amulet|talisman +grill|3 +(noun)|grillroom|restaurant|eating house|eating place +(noun)|grille|grillwork|framework|frame|framing +(verb)|cook +grille|3 +(noun)|wicket|lattice|opening +(noun)|radiator grille|grate|grating +(noun)|grill|grillwork|framework|frame|framing +grilled|2 +(adj)|broiled|cooked +(adj)|barbecued|cooked +grilling|1 +(noun)|broil|broiling|cooking|cookery|preparation +grillroom|1 +(noun)|grill|restaurant|eating house|eating place +grillwork|2 +(noun)|wirework|net|network|mesh|meshing|meshwork +(noun)|grill|grille|framework|frame|framing +grim|6 +(adj)|inexorable|relentless|stern|unappeasable|unforgiving|unrelenting|implacable +(adj)|ghastly|grisly|gruesome|macabre|alarming +(adj)|black|mordant|sarcastic +(adj)|blue|dark|depressing|disconsolate|dismal|dispiriting|gloomy|cheerless |uncheerful +(adj)|dour|forbidding|unpleasant +(adj)|gloomy|darkening|hopeless +grim reaper|1 +(noun)|Grim Reaper|Reaper|Death +grimace|2 +(noun)|face|facial expression|facial gesture +(verb)|make a face|pull a face|communicate|intercommunicate +grime|2 +(noun)|dirt|filth|soil|stain|grease|grunge|dirtiness|uncleanness +(verb)|dirty|soil|begrime|colly|bemire|change|alter|modify +grimes' golden|1 +(noun)|Grimes' golden|eating apple|dessert apple +griminess|1 +(noun)|grubbiness|dirtiness|uncleanness +grimm|2 +(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer|author +(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer|author|linguist|linguistic scientist +grimm's law|1 +(noun)|Grimm's law|sound law +grimness|2 +(noun)|ghastliness|gruesomeness|luridness|frightfulness +(noun)|asperity|hardship|rigor|rigour|severity|rigorousness|difficulty|difficultness +grimoire|1 +(noun)|manual +grimy|1 +(adj)|begrimed|dingy|grubby|grungy|raunchy|dirty |soiled|unclean +grin|2 +(noun)|smile|smiling|grinning|facial expression|facial gesture +(verb)|smile +grind|8 +(noun)|swot|nerd|wonk|dweeb|learner|scholar|assimilator +(noun)|drudgery|plodding|donkeywork|labor|labour|toil +(noun)|mill|pulverization|pulverisation|crush|crunch|compaction +(verb)|crunch|cranch|craunch|press|grind down +(verb)|grate|break up|fragment|fragmentize|fragmentise +(verb)|mash|crunch|bray|comminute|break up|fragment|fragmentize|fragmentise +(verb)|labor|labour|toil|fag|travail|drudge|dig|moil|work|do work +(verb)|dance|trip the light fantastic|trip the light fantastic toe +grind away|1 +(verb)|cram|drum|bone up|swot|get up|mug up|swot up|bone|study|hit the books +grind down|1 +(verb)|tyrannize|tyrannise|dictate +grind organ|1 +(noun)|barrel organ|hand organ|hurdy gurdy|street organ|musical instrument|instrument +grind out|1 +(verb)|crank out|produce|bring forth +grind to a halt|1 +(verb)|get stuck|bog down|mire|stand still +grindelia|1 +(noun)|Grindelia|genus Grindelia|asterid dicot genus +grindelia robusta|1 +(noun)|Grindelia robusta|gumweed|gum plant|tarweed|rosinweed +grindelia squarrosa|1 +(noun)|curlycup gumweed|Grindelia squarrosa|gumweed|gum plant|tarweed|rosinweed +grinder|4 +(noun)|bomber|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +(noun)|molar|tooth +(noun)|mill|machine +(noun)|machine tool +grinding|3 +(noun)|substance|matter +(noun)|noise +(noun)|abrasion|attrition|detrition|friction|rubbing +grinding wheel|1 +(noun)|emery wheel|wheel +grindle|1 +(noun)|bowfin|dogfish|Amia calva|ganoid|ganoid fish +grindstone|1 +(noun)|stone|sharpener +gringo|1 +(noun)|foreigner|alien|noncitizen|outlander +grinner|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +grinning|1 +(noun)|smile|smiling|grin|facial expression|facial gesture +griot|1 +(noun)|narrator|storyteller|teller +grip|10 +(noun)|clasp|clench|clutch|clutches|grasp|hold|grasping|taking hold|seizing|prehension +(noun)|handle|handgrip|hold|appendage +(noun)|bag|traveling bag|suitcase|baggage|luggage +(noun)|traction|adhesive friction|friction|rubbing +(noun)|skilled worker|trained worker +(noun)|grasp|influence +(noun)|bobby pin|hairgrip|hairpin +(verb)|seize|prehend|clutch +(verb)|grapple|seize|prehend|clutch +(verb)|fascinate|transfix|spellbind|interest +gripe|2 +(noun)|kick|beef|bitch|squawk|objection +(verb)|grouse|crab|beef|squawk|bellyache|holler|complain|kick|plain|sound off|quetch|kvetch +grippe|1 +(noun)|influenza|flu|contagious disease|contagion|respiratory disease|respiratory illness|respiratory disorder +gripping|1 +(adj)|absorbing|engrossing|fascinating|riveting|interesting +gripsack|1 +(noun)|bag|traveling bag|grip|suitcase +gris|1 +(noun)|Gris|Jaun Gris|painter +grisaille|1 +(noun)|chiaroscuro +griselinia|1 +(noun)|Griselinia|genus Griselinia|rosid dicot genus +griselinia littoralis|1 +(noun)|kapuka|Griselinia littoralis|shrub|bush +griselinia lucida|1 +(noun)|puka|Griselinia lucida|shrub|bush +griseofulvin|1 +(noun)|Fulvicin|penicillin|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +grisly|1 +(adj)|ghastly|grim|gruesome|macabre|alarming +grison|1 +(noun)|Grison vittatus|Galictis vittatus|musteline mammal|mustelid|musteline +grison vittatus|1 +(noun)|grison|Grison vittatus|Galictis vittatus|musteline mammal|mustelid|musteline +grissino|1 +(noun)|breadstick|bread-stick +grist|1 +(noun)|grain|food grain|cereal +gristle|1 +(noun)|cartilage|animal tissue +gristly|1 +(adj)|cartilaginous|rubbery|tough +gristmill|1 +(noun)|mill|grinder +grit|4 +(noun)|gritrock|gritstone|sandstone +(noun)|backbone|guts|moxie|sand|gumption|fortitude +(verb)|coat|surface +(verb)|clench +gritrock|1 +(noun)|grit|gritstone|sandstone +grits|3 +(noun)|hominy grits|hot cereal +(noun)|grit|gritrock|gritstone|sandstone +(noun)|backbone|grit|guts|moxie|sand|gumption|fortitude +gritstone|1 +(noun)|grit|gritrock|sandstone +gritty|2 +(adj)|farinaceous|coarse-grained|grainy|granular|granulose|mealy|sandy|coarse +(adj)|game|gamy|gamey|mettlesome|spirited|spunky|brave |courageous|fearless +grivet|1 +(noun)|Cercopithecus aethiops|guenon|guenon monkey +grizzle|3 +(noun)|wig +(verb)|brood|stew|sulk|pout|brood +(verb)|whine|yammer|yawp|complain|kick|plain|sound off|quetch|kvetch +grizzled|1 +(adj)|brunet |brunette +grizzly|2 +(adj)|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|hoar|hoary|white-haired|old +(noun)|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +grizzly bear|1 +(noun)|grizzly|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +groan|2 +(noun)|moan|utterance|vocalization +(verb)|moan|sough|utter|emit|let out|let loose +groaner|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +groaning|1 +(adj)|moaning|inarticulate |unarticulate +groat|1 +(noun)|fourpence|coin +groats|2 +(noun)|grain|food grain|cereal +(noun)|fourpence|groat|coin +grocer|1 +(noun)|merchant|merchandiser +grocery|2 +(noun)|grocery store|food market|market|marketplace|mart +(noun)|foodstuff|consumer goods +grocery bag|1 +(noun)|sack|poke|paper bag|carrier bag +grocery boy|1 +(noun)|deliveryman|delivery boy|deliverer +grocery list|2 +(noun)|shopping list|list|listing +(noun)|shopping list +grocery store|1 +(noun)|grocery|food market|market|marketplace|mart +groenendael|1 +(noun)|Belgian sheepdog|Belgian shepherd +groenlandia|1 +(noun)|Groenlandia|genus Groenlandia|monocot genus|liliopsid genus +grog|1 +(noun)|rum +grogginess|3 +(noun)|drunkenness|inebriation|inebriety|intoxication|tipsiness +(noun)|fatigue|weariness|tiredness +(noun)|stupor|stupefaction|semiconsciousness|unconsciousness +groggy|1 +(adj)|dazed|foggy|logy|stuporous|lethargic |unergetic +grogram|1 +(noun)|fabric|cloth|material|textile +groin|3 +(noun)|inguen|area|region +(noun)|breakwater|groyne|mole|bulwark|seawall|jetty|barrier +(verb)|construct|build|make +groined vault|1 +(noun)|vault +grommet|1 +(noun)|cringle|eyelet|loop|grummet|fastener|fastening|holdfast|fixing +gromwell|1 +(noun)|Lithospermum officinale|herb|herbaceous plant +gromyko|1 +(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador|embassador +gronland|1 +(noun)|Greenland|Gronland|Kalaallit Nunaat|island +groom|6 +(noun)|bridegroom|participant +(noun)|stableman|stableboy|hostler|ostler|hired hand|hand|hired man +(noun)|bridegroom|newlywed|honeymooner +(verb)|prepare|train|educate +(verb)|dress|curry|beautify|embellish|prettify +(verb)|neaten|beautify|embellish|prettify +groom-to-be|1 +(noun)|fiance|betrothed +groomed|1 +(adj)|groomed |brushed|kempt|tidy|trim|plastered|slicked|sleek|pomaded|tidy +grooming|2 +(noun)|training|preparation|activity +(noun)|dressing|covering +groomsman|1 +(noun)|attendant|attender|tender +groove|5 +(noun)|channel|depression|impression|imprint +(noun)|rut|routine|modus operandi +(noun)|vallecula|body part +(verb)|incise +(verb)|furrow|rut|dig|delve|cut into|turn over +grooved|2 +(adj)|well-grooved|established |constituted +(adj)|furrowed +groover|1 +(noun)|device +grooving|1 +(noun)|rifling|formation|shaping +groovy|2 +(adj)|bang-up|bully|corking|cracking|dandy|great|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|swagger|fashionable |stylish +grope|4 +(noun)|touch|touching +(verb)|fumble|search|seek|look for|grope for +(verb)|try|seek|attempt|essay|assay +(verb)|caress +grope for|1 +(verb)|scrabble|feel +groping|1 +(adj)|hesitant|uncertain |incertain +gropius|1 +(noun)|Gropius|Walter Gropius|architect|designer +gros point|2 +(noun)|stitch +(noun)|needlepoint +gros ventre|2 +(noun)|Hidatsa|Gros Ventre|Sioux|Siouan +(noun)|Hidatsa|Gros Ventre|Siouan|Siouan language +grosbeak|1 +(noun)|grossbeak|finch +groschen|1 +(noun)|Austrian monetary unit +grosgrain|1 +(noun)|fabric|cloth|material|textile +gross|10 +(adj)|gross |overall|total +(adj)|megascopic|macroscopic |macroscopical|large +(adj)|general +(adj)|porcine|fat +(adj)|crying|egregious|flagrant|glaring|rank|conspicuous |obvious +(adj)|arrant|complete|consummate|double-dyed|everlasting|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +(adj)|coarse|crude|earthy|vulgar|indecent +(noun)|144|large integer +(noun)|revenue|receipts|income +(verb)|gain|take in|clear|make|earn|realize|realise|pull in|bring in +gross anatomy|1 +(noun)|macroscopic anatomy|anatomy|general anatomy +gross domestic product|1 +(noun)|GDP|value +gross estate|1 +(noun)|estate +gross margin|1 +(noun)|margin of profit|profit margin|ratio +gross national product|1 +(noun)|GNP|value +gross out|2 +(verb)|disgust|revolt|repel|stimulate|excite|stir +(verb)|freak out|freak|panic +gross profit|1 +(noun)|gross profit margin|margin|net income|net|net profit|lucre|profit|profits|earnings +gross profit margin|1 +(noun)|gross profit|margin|net income|net|net profit|lucre|profit|profits|earnings +gross revenue|1 +(noun)|gross sales|sales|income +gross sales|1 +(noun)|gross revenue|sales|income +gross ton|1 +(noun)|long ton|ton|avoirdupois unit +grossbeak|1 +(noun)|grosbeak|finch +grossness|1 +(noun)|coarseness|commonness|vulgarity|vulgarism|raunch|inelegance +grossulariaceae|1 +(noun)|Grossulariaceae|family Grossulariaceae|gooseberry family|plant family +grosz|1 +(noun)|Polish monetary unit +grot|1 +(noun)|grotto|cave +grotesque|3 +(adj)|monstrous|unnatural|ugly +(adj)|antic|fantastic|fantastical|strange |unusual +(noun)|art|fine art +grotesquely|1 +(adv)|monstrously +grotesqueness|1 +(noun)|grotesquery|grotesquerie|ugliness +grotesquerie|1 +(noun)|grotesqueness|grotesquery|ugliness +grotesquery|1 +(noun)|grotesqueness|grotesquerie|ugliness +grotto|1 +(noun)|grot|cave +grotty|1 +(adj)|nasty |awful +grouch|2 +(noun)|grump|crank|churl|crosspatch|unpleasant person|disagreeable person +(verb)|grumble|scold|complain|kick|plain|sound off|quetch|kvetch +grouchily|1 +(adv)|crossly|grumpily +groucho|1 +(noun)|Marx|Julius Marx|Groucho|comedian|comic +grouchy|1 +(adj)|crabbed|crabby|cross|fussy|grumpy|bad-tempered|ill-tempered|ill-natured +ground|29 +(adj)|crushed|broken +(noun)|land|dry land|earth|solid ground|terra firma|object|physical object +(noun)|reason|rational motive +(noun)|earth|material|stuff +(noun)|footing|basis|foundation +(noun)|military position|position +(noun)|background|view|aspect|prospect|scene|vista|panorama +(noun)|land|soil|object|physical object +(noun)|percept|perception|perceptual experience +(noun)|earth|connection|connexion|connector|connecter|connective +(noun)|surface +(noun)|flat coat|primer|priming|primer coat|priming coat|undercoat|coat of paint +(verb)|anchor|fasten|fix|secure +(verb)|restrain|confine|hold +(verb)|put|set|place|pose|position|lay +(verb)|teach|learn|instruct +(verb)|run aground|land +(verb)|run aground|reach|make|attain|hit|arrive at|gain +(verb)|throw +(verb)|hit +(verb)|hit +(verb)|prime|undercoat|paint +(verb)|connect|link|tie|link up +(verb)|establish|base|found +(verb)|crunch|cranch|craunch|grind|press|grind down +(verb)|grate|grind|break up|fragment|fragmentize|fragmentise +(verb)|grind|mash|crunch|bray|comminute|break up|fragment|fragmentize|fragmentise +(verb)|labor|labour|toil|fag|travail|grind|drudge|dig|moil|work|do work +(verb)|grind|dance|trip the light fantastic|trip the light fantastic toe +ground-berry|3 +(noun)|native cranberry|groundberry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub|bush +(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|creeping wintergreen|Gaultheria procumbens|shrublet +(noun)| +ground-controlled approach|1 +(noun)|GCA|aircraft landing|airplane landing +ground-effect machine|1 +(noun)|hovercraft|craft +ground-emplaced mine|1 +(noun)|land mine|booby trap|mine +ground-floor|1 +(adj)|downstairs |downstair +ground-service crew|1 +(noun)|ground crew|gang|crew|work party +ground-shaker|1 +(noun)|seismosaur|dinosaur +ground almond|1 +(noun)|chufa|yellow nutgrass|earth almond|rush nut|Cyperus esculentus|sedge +ground attack|1 +(noun)|attack|onslaught|onset|onrush +ground bait|1 +(noun)|bait|decoy|lure +ground ball|2 +(noun)|grounder|groundball|hopper|hit|hitting|striking +(noun)| +ground bass|1 +(noun)|bass|bass part|ostinato +ground beef|1 +(noun)|hamburger|beef|boeuf +ground beetle|1 +(noun)|carabid beetle|beetle +ground cable|1 +(noun)|cable +ground cedar|2 +(noun)|staghorn moss|Lycopodium complanatum|ground pine|Christmas green +(noun)|dwarf juniper|Juniperus communis depressa|juniper +ground cherry|1 +(noun)|husk tomato|herb|herbaceous plant +ground cloth|1 +(noun)|groundsheet|piece of cloth|piece of material +ground control|1 +(noun)|communication system +ground cover|3 +(noun)|groundcover|vegetation|flora +(noun)|groundcover|underbrush|undergrowth|underwood +(noun)| +ground crew|1 +(noun)|ground-service crew|gang|crew|work party +ground effect|1 +(noun)|aerodynamic lift|lift +ground fir|1 +(noun)|princess pine|tree clubmoss|Lycopodium obscurum|ground pine|Christmas green +ground fire|1 +(noun)|forest fire +ground floor|2 +(noun)|first floor|ground level|floor|level|storey|story +(noun)|beginning +ground forces|1 +(noun)|army|regular army|military service|armed service|service +ground glass|2 +(noun)|glass +(noun)|glass +ground ivy|1 +(noun)|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +ground level|2 +(noun)|grade|elevation +(noun)|ground floor|first floor|floor|level|storey|story +ground loop|1 +(noun)|mishap|misadventure|mischance +ground noise|1 +(noun)|background noise|background|background signal +ground out|2 +(verb)|hit +(verb)|grind out|crank out|produce|bring forth +ground pine|2 +(noun)|Christmas green|club moss|club-moss|lycopod +(noun)|yellow bugle|Ajuga chamaepitys|bugle|bugleweed +ground pink|1 +(noun)|fringed pink|moss pink|Linanthus dianthiflorus|phlox +ground plan|1 +(noun)|floor plan +ground rattler|1 +(noun)|massasauga|Sistrurus miliaris|rattlesnake|rattler +ground rent|1 +(noun)|rent +ground roller|1 +(noun)|roller +ground rose|1 +(noun)|Rosa spithamaea|rose +ground rule|1 +(noun)|rule +ground sloth|1 +(noun)|megathere|megatherian|megatheriid|megatherian mammal +ground snake|1 +(noun)|Sonora semiannulata|colubrid snake|colubrid +ground squirrel|2 +(noun)|eastern chipmunk|hackee|striped squirrel|Tamias striatus|squirrel +(noun)|gopher|spermophile|squirrel +ground state|1 +(noun)|state +ground stroke|1 +(noun)|return +ground substance|2 +(noun)|matrix|intercellular substance|body substance +(noun)|hyaloplasm|cytoplasm +ground swell|2 +(noun)|transition +(noun)|heavy swell|swell|crestless wave +ground tackle|1 +(noun)|anchor|hook|claw +ground water|1 +(noun)|spring water|well water|water|H2O +ground wave|1 +(noun)|radio wave|radio emission|radio radiation +ground zero|3 +(noun)|target|target area +(noun)|site|land site +(noun)|point +groundball|1 +(noun)|grounder|ground ball|hopper|hit|hitting|striking +groundberry|2 +(noun)|native cranberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub|bush +(noun)|teaberry|wintergreen|checkerberry|mountain tea|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +groundbreaker|1 +(noun)|pioneer|innovator|trailblazer|originator|conceiver|mastermind +groundbreaking|2 +(adj)|innovative|innovational|original +(noun)|groundbreaking ceremony|ceremony|beginning|start|commencement +groundbreaking ceremony|1 +(noun)|groundbreaking|ceremony|beginning|start|commencement +groundcover|2 +(noun)|ground cover|vegetation|flora +(noun)|ground cover|underbrush|undergrowth|underwood +grounder|1 +(noun)|ground ball|groundball|hopper|hit|hitting|striking +groundfish|1 +(noun)|bottom fish|food fish +groundhog|1 +(noun)|woodchuck|Marmota monax|marmot +groundhog day|1 +(noun)|Groundhog Day|February 2|day +grounding|2 +(noun)|foundation|education +(noun)|earthing|fastening|attachment +groundkeeper|1 +(noun)|groundsman|groundskeeper|gardener +groundless|1 +(adj)|baseless|idle|unfounded|unwarranted|unsupported +groundling|1 +(noun)|playgoer|theatergoer|theatregoer +groundmass|1 +(noun)|igneous rock +groundnut|3 +(noun)|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine +(noun)|potato bean|wild bean|tuber +(noun)|peanut|earthnut|goober|goober pea|monkey nut|edible nut +groundnut oil|1 +(noun)|peanut oil|vegetable oil|oil +groundnut vine|1 +(noun)|groundnut|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine +grounds|16 +(noun)|evidence|information +(noun)|yard|curtilage|field +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|cause|reason|justification +(noun)|dregs|settlings|sediment|deposit +(noun)|land|dry land|earth|ground|solid ground|terra firma|object|physical object +(noun)|reason|ground|rational motive +(noun)|earth|ground|material|stuff +(noun)|footing|basis|ground|foundation +(noun)|ground|military position|position +(noun)|background|ground|view|aspect|prospect|scene|vista|panorama +(noun)|land|ground|soil|object|physical object +(noun)|ground|percept|perception|perceptual experience +(noun)|ground|earth|connection|connexion|connector|connecter|connective +(noun)|ground|surface +(noun)|flat coat|ground|primer|priming|primer coat|priming coat|undercoat|coat of paint +groundsel|1 +(noun)|Senecio vulgaris|weed +groundsel bush|1 +(noun)|groundsel tree|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub|bush +groundsel tree|1 +(noun)|groundsel bush|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub|bush +groundsheet|1 +(noun)|ground cloth|piece of cloth|piece of material +groundskeeper|1 +(noun)|groundsman|groundkeeper|gardener +groundsman|1 +(noun)|groundskeeper|groundkeeper|gardener +groundspeed|1 +(noun)|speed|velocity +groundwater level|1 +(noun)|water table|water level|geological formation|formation +groundwork|3 +(noun)|basis|base|foundation|fundament|cornerstone|assumption|supposition|supposal +(noun)|foundation|base|fundament|foot|substructure|understructure|support +(noun)|preparation|readying +group|5 +(noun)|grouping +(noun)|radical|chemical group|unit|building block +(noun)|mathematical group|set +(verb)|classify|class|sort|assort|sort out|separate +(verb)|aggroup|meet|gather|assemble|forgather|foregather +group a|1 +(noun)|A|type A|group A|blood group|blood type +group ab|1 +(noun)|AB|type AB|group AB|blood group|blood type +group action|1 +(noun)|act|human action|human activity|event +group amentiferae|1 +(noun)|Amentiferae|group Amentiferae|taxonomic group|taxonomic category|taxon +group b|1 +(noun)|B|type B|group B|blood group|blood type +group captain|1 +(noun)|captain|senior pilot +group centrospermae|1 +(noun)|Centrospermae|group Centrospermae|taxonomic group|taxonomic category|taxon +group discussion|1 +(noun)|conference|discussion|give-and-take|word +group dynamics|1 +(noun)|social psychology +group insurance|1 +(noun)|insurance +group o|1 +(noun)|O|type O|group O|blood group|blood type +group participation|1 +(noun)|engagement|participation|involvement|involution +group practice|1 +(noun)|medical practice +group psychotherapy|1 +(noun)|group therapy|psychotherapy +group pteridospermae|1 +(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group|taxonomic category|taxon +group pteridospermaphyta|1 +(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group|taxonomic category|taxon +group theory|1 +(noun)|pure mathematics +group therapy|1 +(noun)|group psychotherapy|psychotherapy +grouped|1 +(adj)|sorted|classified +grouper|2 +(noun)|saltwater fish +(noun)|sea bass +groupie|1 +(noun)|fan|buff|devotee|lover +grouping|3 +(noun)|group +(noun)|activity +(noun)|pigeonholing|classification system +groupthink|1 +(noun)|decision making|deciding +groupware|1 +(noun)|software|software system|software package|package +grouse|4 +(noun)|wildfowl +(noun)|game bird +(verb)|fowl +(verb)|gripe|crab|beef|squawk|bellyache|holler|complain|kick|plain|sound off|quetch|kvetch +grouse-berry|2 +(noun)|grouseberry|grouse whortleberry|Vaccinium scoparium|blueberry|blueberry bush +(noun)| +grouse whortleberry|1 +(noun)|grouseberry|grouse-berry|Vaccinium scoparium|blueberry|blueberry bush +grouseberry|1 +(noun)|grouse-berry|grouse whortleberry|Vaccinium scoparium|blueberry|blueberry bush +grout|2 +(noun)|plaster +(verb)|fasten|fix|secure +grove|2 +(noun)|forest|wood|woods +(noun)|woodlet|orchard|plantation|garden +grovel|1 +(verb)|fawn|crawl|creep|cringe|cower|bend|flex +groveler|1 +(noun)|apple polisher|bootlicker|fawner|groveller|truckler|ass-kisser|sycophant|toady|crawler|lackey +groveling|1 +(adj)|cringing|grovelling|wormlike|wormy|submissive +groveller|1 +(noun)|apple polisher|bootlicker|fawner|groveler|truckler|ass-kisser|sycophant|toady|crawler|lackey +grovelling|1 +(adj)|cringing|groveling|wormlike|wormy|submissive +grover cleveland|1 +(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States|United States President|President|Chief Executive +groves|3 +(noun)|Groves|Leslie Richard Groves|general|full general +(noun)|grove|forest|wood|woods +(noun)|grove|woodlet|orchard|plantation|garden +grow|10 +(verb)|turn|change +(verb)|increase|grow over|grow up +(verb)|develop +(verb)|develop|make grow +(verb)|mature|maturate|develop +(verb)|originate|arise|rise|develop|uprise|spring up|become +(verb)|raise|farm|produce|cultivate +(verb)|develop|produce|get|acquire|change +(verb)|develop|change +(verb)|change +grow over|2 +(verb)|creep|diffuse|spread|spread out|fan out +(verb)|overgrow|grow +grow together|1 +(verb)|join|conjoin +grow up|1 +(verb)|mature|maturate|grow +grower|1 +(noun)|agriculturist|cultivator|raiser|farmer|husbandman|granger|sodbuster +growing|5 +(adj)|increasing +(adj)|flourishing|thriving|healthy +(adj)|organic process|biological process +(noun)|growth|maturation|development|ontogeny|ontogenesis|organic process|biological process +(noun)|production +growing pains|3 +(noun)|pain|hurting +(noun)|pain|painfulness +(noun)|trouble|problem +growing season|1 +(noun)|season +growl|2 +(noun)|growling|cry +(verb)|grumble|rumble|utter|emit|let out|let loose +growler|2 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +(noun)|iceberg|berg +growling|2 +(noun)|utterance|vocalization +(noun)|growl|cry +grown|1 +(adj)|adult|big|full-grown|fully grown|grownup|mature +grownup|2 +(adj)|adult|big|full-grown|fully grown|grown|mature +(noun)|adult|person|individual|someone|somebody|mortal|human|soul +growth|7 +(noun)|growing|maturation|development|ontogeny|ontogenesis|organic process|biological process +(noun)|development|evolution +(noun)|increase|increment|process +(noun)|vegetation|flora +(noun)|emergence|outgrowth|beginning +(noun)|illness|unwellness|malady|sickness +(noun)|object|physical object +growth-onset diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +growth factor|1 +(noun)|protein +growth hormone|1 +(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|hormone|endocrine|internal secretion +growth hormone-releasing factor|1 +(noun)|GHRF|releasing factor|releasing hormone|RF +growth industry|1 +(noun)|industry +growth rate|1 +(noun)|rate of growth|rate +growth regulator|1 +(noun)|phytohormone|plant hormone|plant product +growth ring|1 +(noun)|annual ring|organic phenomenon +growth stock|1 +(noun)|stock +groyne|1 +(noun)|breakwater|groin|mole|bulwark|seawall|jetty|barrier +grozny|1 +(noun)|Grozny|Groznyy|city|metropolis|urban center +groznyy|1 +(noun)|Grozny|Groznyy|city|metropolis|urban center +grub|4 +(noun)|chow|chuck|eats|fare +(noun)|larva +(verb)|mooch|bum|cadge|sponge|obtain +(verb)|search|seek|look for +grub out|1 +(verb)|grub up|excavate|dig up|turn up +grub street|1 +(noun)|Grub Street|world|domain +grub up|1 +(verb)|grub out|excavate|dig up|turn up +grubbily|1 +(adv)|dingily|grungily +grubbiness|1 +(noun)|griminess|dirtiness|uncleanness +grubby|2 +(adj)|begrimed|dingy|grimy|grungy|raunchy|dirty |soiled|unclean +(noun)|Myxocephalus aenaeus|sculpin +grubstake|2 +(noun)|interest|stake +(verb)|fund +grudge|2 +(noun)|score|grievance|resentment|bitterness|gall|rancor|rancour +(verb)|stew|resent +grudging|3 +(adj)|unwilling +(adj)|ungenerous |meanspirited +(adj)|niggardly|scrimy|stingy |ungenerous +gruel|1 +(noun)|porridge +grueling|1 +(adj)|arduous|backbreaking|gruelling|hard|heavy|laborious|punishing|toilsome|effortful +gruelling|1 +(adj)|arduous|backbreaking|grueling|hard|heavy|laborious|punishing|toilsome|effortful +gruesome|1 +(adj)|ghastly|grim|grisly|macabre|alarming +gruesomeness|1 +(noun)|ghastliness|grimness|luridness|frightfulness +gruff|2 +(adj)|crusty|curmudgeonly|ill-humored|ill-humoured|ill-natured +(adj)|hoarse|husky|cacophonous |cacophonic +gruffness|2 +(noun)|hoarseness|huskiness|harshness|roughness +(noun)|abruptness|brusqueness|curtness|shortness|discourtesy|rudeness +grugru|1 +(noun)|gri-gri|grugru palm|macamba|Acrocomia aculeata|feather palm +grugru nut|1 +(noun)|edible nut +grugru palm|1 +(noun)|grugru|gri-gri|macamba|Acrocomia aculeata|feather palm +gruidae|1 +(noun)|Gruidae|family Gruidae|bird family +gruiformes|1 +(noun)|Gruiformes|order Gruiformes|animal order +grumble|6 +(noun)|rumble|rumbling|grumbling|noise +(noun)|grumbling|murmur|murmuring|mutter|muttering|complaint +(verb)|grouch|scold|complain|kick|plain|sound off|quetch|kvetch +(verb)|murmur|mutter|croak|gnarl|complain|kick|plain|sound off|quetch|kvetch +(verb)|growl|rumble|utter|emit|let out|let loose +(verb)|rumble|sound|go +grumbler|1 +(noun)|whiner|complainer|moaner|sniveller|crybaby|bellyacher|squawker|unpleasant person|disagreeable person +grumbling|4 +(adj)|rumbling|full +(adj)|complaining |complaintive +(noun)|rumble|rumbling|grumble|noise +(noun)|grumble|murmur|murmuring|mutter|muttering|complaint +grume|1 +(noun)|blood clot|blood +grummet|1 +(noun)|cringle|eyelet|loop|grommet|fastener|fastening|holdfast|fixing +grumose|1 +(adj)|coagulate|coagulated|curdled|grumous|thick +grumous|1 +(adj)|coagulate|coagulated|curdled|grumose|thick +grump|1 +(noun)|grouch|crank|churl|crosspatch|unpleasant person|disagreeable person +grumpily|1 +(adv)|crossly|grouchily +grumpiness|1 +(noun)|crankiness|crotchetiness|contrariness|ill nature +grumpy|1 +(adj)|crabbed|crabby|cross|fussy|grouchy|bad-tempered|ill-tempered|ill-natured +grundyism|1 +(noun)|primness|prudishness|prudery|Grundyism|modesty +grunge|1 +(noun)|dirt|filth|grime|soil|stain|grease|dirtiness|uncleanness +grungily|1 +(adv)|dingily|grubbily +grungy|1 +(adj)|begrimed|dingy|grimy|grubby|raunchy|dirty |soiled|unclean +grunt|4 +(noun)|noise +(noun)|unskilled person +(noun)|percoid fish|percoid|percoidean +(verb)|utter|emit|let out|let loose +grunt-hoot|1 +(verb)|hoot +grunter|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|hog|pig|squealer|Sus scrofa|swine +grunting|1 +(adj)|inarticulate |unarticulate +gruntle|1 +(verb)|pacify|lenify|conciliate|assuage|appease|mollify|placate|gentle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +grus|2 +(noun)|Grus|the Crane|constellation +(noun)|Grus|genus Grus|bird genus +grus americana|1 +(noun)|whooping crane|whooper|Grus americana|crane +gruyere|1 +(noun)|Gruyere|Swiss cheese +gryllidae|1 +(noun)|Gryllidae|family Gryllidae|arthropod family +gryphon|1 +(noun)|griffin|mythical monster|mythical creature +gsa|1 +(noun)|General Services Administration|GSA|independent agency +gspc|1 +(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization|terrorist group|foreign terrorist organization|FTO +gsr|1 +(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +gu|2 +(adj)|genitourinary +(noun)|Guam|GU|island +guacamole|1 +(noun)|dip +guacharo|1 +(noun)|oilbird|Steatornis caripensis|caprimulgiform bird +guadalajara|1 +(noun)|Guadalajara|city|metropolis|urban center +guadalcanal|2 +(noun)|Guadalcanal|island +(noun)|Guadalcanal|Battle of Guadalcanal|pitched battle +guadalupe cypress|1 +(noun)|Guadalupe cypress|Cupressus guadalupensis|cypress|cypress tree +guadalupe fur seal|1 +(noun)|Arctocephalus philippi|fur seal +guadalupe island|1 +(noun)|Guadalupe Island|island +guadalupe mountains|1 +(noun)|Guadalupe Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +guadalupe mountains national park|1 +(noun)|Guadalupe Mountains National Park|national park +guadeloupe|1 +(noun)|Guadeloupe|island +guaiac|1 +(noun)|lignum vitae|guaiacum|wood +guaiac wood|1 +(noun)|guaiacum wood|wood +guaiacum|3 +(noun)|natural resin +(noun)|lignum vitae|guaiac|wood +(noun)|Guaiacum|genus Guaiacum|rosid dicot genus +guaiacum officinale|1 +(noun)|lignum vitae|Guaiacum officinale|angiospermous tree|flowering tree +guaiacum sanctum|1 +(noun)|bastard lignum vitae|Guaiacum sanctum|angiospermous tree|flowering tree +guaiacum wood|1 +(noun)|guaiac wood|wood +guaira|1 +(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall|falls +guaira falls|1 +(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall|falls +guallatiri|1 +(noun)|Guallatiri|volcano +guam|1 +(noun)|Guam|GU|island +guama|1 +(noun)|Inga laurina|tree +guan|1 +(noun)|gallinaceous bird|gallinacean +guanabana|1 +(noun)|soursop|custard apple +guanabenz|1 +(noun)|Wytensin|antihypertensive|antihypertensive drug +guanaco|1 +(noun)|Lama guanicoe|llama +guangdong|1 +(noun)|Guangdong|Kwangtung|Guangdong province|state|province +guangdong province|1 +(noun)|Guangdong|Kwangtung|Guangdong province|state|province +guangzhou|1 +(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city|metropolis|urban center|port +guanine|1 +(noun)|G|purine +guano|1 +(noun)|body waste|excretion|excreta|excrement|excretory product|organic|organic fertilizer|organic fertiliser +guano bat|1 +(noun)|Mexican freetail bat|Tadarida brasiliensis|freetail|free-tailed bat|freetailed bat +guanosine|1 +(noun)|deoxyguanosine|nucleoside +guantanamo|1 +(noun)|Guantanamo|city|metropolis|urban center +guar|1 +(noun)|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume|leguminous plant +guar gum|1 +(noun)|gum +guarani|3 +(noun)|Paraguayan monetary unit +(noun)|Guarani|South American Indian +(noun)|Guarani|Tupi-Guarani|Tupi-Guarani language +guarantee|7 +(noun)|warrant|warrantee|warranty|assurance|pledge +(noun)|assurance|pledge +(noun)|guaranty|collateral +(verb)|vouch|pledge|plight +(verb)|ensure|insure|assure|secure +(verb)|undertake|promise|assure +(verb)|warrant|back|endorse|indorse|plump for|plunk for|support +guaranteed|1 +(adj)|bonded|secured|warranted|secure +guarantor|1 +(noun)|surety|warrantor|warranter|patron|sponsor|supporter +guaranty|1 +(noun)|guarantee|collateral +guard|14 +(noun)|defender|guardian|protector|shielder +(noun)|lineman +(noun)|safety|safety device|device +(noun)|position|posture|attitude +(noun)|basketball player|basketeer|cager +(noun)|bodyguard|detachment +(noun)|precaution|safeguard|measure|step +(noun)|guard duty|sentry duty|sentry go|assignment|duty assignment +(noun)|lineman +(noun)|position +(verb)|watch|observe|follow|watch over|keep an eye on +(verb)|ward|protect +(verb)|defend|hold|protect +(verb)|act|move +guard's van|1 +(noun)|car|railcar|railway car|railroad car +guard boat|1 +(noun)|boat +guard dog|1 +(noun)|watchdog|working dog +guard duty|1 +(noun)|guard|sentry duty|sentry go|assignment|duty assignment +guard hair|1 +(noun)|hair +guard of honor|1 +(noun)|honor guard|escort +guard ship|1 +(noun)|warship|war vessel|combat ship +guardant|1 +(adj)|gardant|full-face|forward +guarded|2 +(adj)|noncommittal|unrevealing|uncommunicative |incommunicative +(adj)|restrained|cautious +guardedly|1 +(adv)|conservatively|cautiously +guardhouse|1 +(noun)|headquarters|HQ|military headquarters +guardian|2 +(adj)|custodial|tutelary|tutelar|protective +(noun)|defender|protector|shielder|preserver +guardian angel|1 +(noun)|guardian spirit|angel +guardian spirit|1 +(noun)|guardian angel|angel +guardianship|2 +(noun)|care|charge|tutelage|protection +(noun)|keeping|safekeeping|duty|responsibility|obligation +guardrail|1 +(noun)|safety rail|railing|rail +guardroom|2 +(noun)|cell|jail cell|prison cell +(noun)|room +guardsman|1 +(noun)|soldier +guarneri|2 +(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker +(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker +guarnerius|3 +(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker +(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker +(noun)|Guarnerius|violin|fiddle +guarnieri|2 +(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker +(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker +guatemala|1 +(noun)|Guatemala|Republic of Guatemala|Central American country|Central American nation +guatemala city|1 +(noun)|Guatemala City|capital of Guatemala|national capital +guatemalan|2 +(adj)|Guatemalan|Central American country|Central American nation +(noun)|Guatemalan|Central American +guatemalan monetary unit|1 +(noun)|Guatemalan monetary unit|monetary unit +guava|3 +(noun)|strawberry guava|yellow cattley guava|Psidium littorale|fruit tree +(noun)|true guava|guava bush|Psidium guajava|fruit tree +(noun)|edible fruit +guava bush|1 +(noun)|guava|true guava|Psidium guajava|fruit tree +guayaquil|1 +(noun)|Guayaquil|city|metropolis|urban center +guayule|1 +(noun)|Parthenium argentatum|subshrub|suffrutex +gubbins|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +gubernatorial|1 +(adj)|politician +guck|1 +(noun)|sludge|slime|goo|gook|gunk|muck|ooze|substance|matter +gudgeon|2 +(noun)|goby|percoid fish|percoid|percoidean +(noun)|Gobio gobio|cyprinid|cyprinid fish +gudgeon pin|1 +(noun)|wrist pin|pin +guelder rose|1 +(noun)|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub|bush +guenevere|1 +(noun)|Guinevere|Guenevere|fictional character|fictitious character|character +guenon|1 +(noun)|guenon monkey|Old World monkey|catarrhine +guenon monkey|1 +(noun)|guenon|Old World monkey|catarrhine +guerdon|1 +(noun)|reward +guereza|1 +(noun)|Colobus guereza|colobus|colobus monkey +gueridon|1 +(noun)|table +guerilla|2 +(adj)|guerrilla|underground|irregular|partisan |partizan +(noun)|guerrilla|irregular|insurgent|warrior +guerilla force|1 +(noun)|guerrilla force|force|personnel +guernsey|1 +(noun)|Guernsey|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +guernsey elm|1 +(noun)|Jersey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +guerrilla|2 +(adj)|guerilla|underground|irregular|partisan |partizan +(noun)|guerilla|irregular|insurgent|warrior +guerrilla force|1 +(noun)|guerilla force|force|personnel +guerrilla theater|1 +(noun)|street theater|dramatization|dramatisation +guess|6 +(noun)|conjecture|supposition|surmise|surmisal|speculation|hypothesis|opinion|view +(noun)|guesswork|guessing|shot|dead reckoning|estimate|estimation|approximation|idea +(verb)|think|opine|suppose|imagine|reckon|expect|anticipate +(verb)|venture|pretend|hazard|speculate +(verb)|estimate|gauge|approximate|judge|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|infer|solve|work out|figure out|puzzle out|lick|work +guesser|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +guessing|1 +(noun)|guess|guesswork|shot|dead reckoning|estimate|estimation|approximation|idea +guessing game|1 +(noun)|game +guesstimate|2 +(noun)|guestimate|estimate|estimation|approximation|idea +(verb)|estimate|gauge|approximate|guess|judge +guesswork|1 +(noun)|guess|guessing|shot|dead reckoning|estimate|estimation|approximation|idea +guest|5 +(adj)|visiting|impermanent |temporary +(noun)|invitee|visitor|visitant +(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist +(noun)|customer|client +(noun)|node|client|computer|computing machine|computing device|data processor|electronic computer|information processing system +guest night|1 +(noun)|evening|eve|eventide +guest of honor|1 +(noun)|guest|invitee +guest worker|2 +(noun)|guestworker|workman|working man|working person +(noun)| +guesthouse|1 +(noun)|house +guestimate|1 +(noun)|guesstimate|estimate|estimation|approximation|idea +guestroom|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +guestworker|1 +(noun)|guest worker|workman|working man|working person +guevara|1 +(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist|revolutionary|subversive|subverter +guevina|1 +(noun)|Guevina|genus Guevina|dicot genus|magnoliopsid genus +guevina avellana|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +guevina heterophylla|1 +(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub|bush +guff|1 +(noun)|bunk|bunkum|buncombe|rot|hogwash|drivel|garbage +guffaw|2 +(noun)|belly laugh|laugh|laughter +(verb)|laugh loudly|laugh|express joy|express mirth +guggenheim|2 +(noun)|Guggenheim|Solomon Guggenheim|philanthropist|altruist +(noun)|Guggenheim|Meyer Guggenheim|industrialist +guggle|3 +(verb)|ripple|babble|burble|bubble|gurgle|sound|go +(verb)|sound|go +(verb)|gurgle|drink|imbibe +guglielmo marconi|1 +(noun)|Marconi|Guglielmo Marconi|electrical engineer +gui|1 +(noun)|graphical user interface|GUI|interface|user interface +guiana|1 +(noun)|Guiana|geographical area|geographic area|geographical region|geographic region +guiana highlands|1 +(noun)|Guiana Highlands|tableland|plateau +guib|1 +(noun)|bushbuck|Tragelaphus scriptus|harnessed antelope +guidance|3 +(noun)|counsel|counseling|counselling|direction|message|content|subject matter|substance +(noun)|steering|management|direction +(noun)|steering|direction|control +guidance device|1 +(noun)|guidance system|system +guidance system|1 +(noun)|guidance device|system +guide|10 +(noun)|usher|escort +(noun)|leader +(noun)|guidebook|handbook|enchiridion|vade mecum +(noun)|template|templet|model|example +(noun)|scout|pathfinder|expert +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|channelize|channelise|control|command +(verb)|lead|take|direct|conduct +(verb)|steer|direct +(verb)|guide on|orient|orientate +(verb)|run|draw|pass +guide dog|1 +(noun)|seeing-eye dog|working dog +guide fossil|1 +(noun)|index fossil|fossil +guide on|1 +(verb)|guide|orient|orientate +guide rope|1 +(noun)|rope +guidebook|1 +(noun)|guide|handbook|enchiridion|vade mecum +guided|1 +(adj)|guided |radio-controlled|target-hunting +guided bomb unit-28|1 +(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb|LGB +guided missile|1 +(noun)|missile +guided missile cruiser|1 +(noun)|cruiser +guided missile destroyer|1 +(noun)|destroyer|warship|war vessel|combat ship +guided missile frigate|1 +(noun)|frigate +guideline|3 +(noun)|line +(noun)|road map|plan|program|programme|guidance|counsel|counseling|counselling|direction +(noun)|guidepost|rule of thumb|rule|regulation +guidepost|2 +(noun)|guideline|rule of thumb|rule|regulation +(noun)|signpost|sign +guiding|2 +(adj)|leading +(adj)|directing|directional|directive|leading +guiding light|1 +(noun)|luminary|leading light|notable|notability|celebrity|famous person +guild|1 +(noun)|club|society|gild|lodge|order|association +guild socialism|1 +(noun)|socialism +guilder|2 +(noun)|gulden|florin|Surinamese monetary unit +(noun)|gulden|florin|Dutch florin|Dutch monetary unit +guildhall|1 +(noun)|hall +guile|3 +(noun)|craft|craftiness|cunning|foxiness|slyness|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +(noun)|craftiness|deceitfulness|disingenuousness +(noun)|trickery|chicanery|chicane|wile|shenanigan|deception|deceit|dissembling|dissimulation +guileful|1 +(adj)|crafty|cunning|dodgy|foxy|knavish|slick|sly|tricksy|tricky|wily|artful +guileless|2 +(adj)|honest|artless +(adj)|transparent|straight +guillain-barre syndrome|1 +(noun)|Guillain-Barre syndrome|infectious polyneuritis|Landry's paralysis|polyneuritis|multiple neuritis +guillaume apollinaire|1 +(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet +guillemot|1 +(noun)|auk +guilloche|1 +(noun)|architectural ornament +guillotine|3 +(noun)|closure by compartment|closure|cloture|gag rule|gag law +(noun)|instrument of execution +(verb)|decapitate|behead +guilt|2 +(noun)|guiltiness|condition|status +(noun)|guilty conscience|guilt feelings|guilt trip|compunction|remorse|self-reproach +guilt-ridden|1 +(adj)|guilty +guilt by association|1 +(noun)|guilt|guiltiness +guilt feelings|1 +(noun)|guilt|guilty conscience|guilt trip|compunction|remorse|self-reproach +guilt pang|1 +(noun)|pang|stab|twinge +guilt trip|1 +(noun)|guilt|guilty conscience|guilt feelings|compunction|remorse|self-reproach +guiltiness|1 +(noun)|guilt|condition|status +guiltless|1 +(adj)|innocent |clean-handed|absolved|clear|cleared|exculpated|exonerated|vindicated|acquitted|not guilty|blameless|inculpable|irreproachable|unimpeachable|exculpatory|righteous +guiltlessness|1 +(noun)|blamelessness|inculpability|inculpableness|innocence +guilty|2 +(adj)|guilty |at fault|blameworthy|blamable|blameable|blameful|censurable|culpable|bloodguilty|chargeable|indictable|condemned|convicted|conscience-smitten|criminal|delinquent|finable|fineable|guilt-ridden|punishable|red-handed|inculpatory|inculpative|unrighteous +(adj)|hangdog|shamefaced|shamed|ashamed +guilty conscience|1 +(noun)|guilt|guilt feelings|guilt trip|compunction|remorse|self-reproach +guimpe|2 +(noun)|piece of cloth|piece of material +(noun)|blouse +guine-bissau|1 +(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country|African nation +guinea|4 +(noun)|coin +(noun)|wop|dago|Guinea|greaseball|Italian +(noun)|Guinea|Republic of Guinea|French Guinea|African country|African nation +(noun)|guinea fowl|Numida meleagris|domestic fowl|fowl|poultry +guinea-bissau|1 +(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country|African nation +guinea-bissau monetary unit|1 +(noun)|Guinea-Bissau monetary unit|monetary unit +guinea-bissau peso|1 +(noun)|Guinea-Bissau peso|peso|Guinea-Bissau monetary unit +guinea-hen flower|1 +(noun)|snake's head fritillary|checkered daffodil|leper lily|Fritillaria meleagris|fritillary|checkered lily +guinea corn|1 +(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum +guinea flower|1 +(noun)|guinea gold vine|shrub|bush +guinea fowl|1 +(noun)|guinea|Numida meleagris|domestic fowl|fowl|poultry +guinea gold|2 +(noun)|red brass|brass +(noun)|gold|Au|atomic number 79 +guinea gold vine|1 +(noun)|guinea flower|shrub|bush +guinea grains|1 +(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb|herbaceous plant +guinea hen|2 +(noun)|poultry +(noun)|guinea fowl|guinea|Numida meleagris +guinea pepper|2 +(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb|herbaceous plant +(noun)|Guinea pepper|negro pepper|Xylopia aethiopica|tree +guinea pig|2 +(noun)|subject|case|person|individual|someone|somebody|mortal|human|soul +(noun)|Cavia cobaya|cavy +guinea worm|2 +(noun)|Guinea worm disease|Guinea worm|dracunculiasis|infestation +(noun)|Guinea worm|Dracunculus medinensis|nematode|nematode worm|roundworm +guinea worm disease|1 +(noun)|Guinea worm disease|Guinea worm|dracunculiasis|infestation +guinean|2 +(adj)|Guinean|African country|African nation +(noun)|Guinean|African +guinean franc|1 +(noun)|Guinean franc|franc +guinean monetary unit|1 +(noun)|Guinean monetary unit|monetary unit +guinevere|1 +(noun)|Guinevere|Guenevere|fictional character|fictitious character|character +guinness|2 +(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor|histrion|player|thespian|role player +(noun)|Guinness|stout +guise|1 +(noun)|pretense|pretence|pretext|semblance|gloss|color|colour +guiseppe fortunino francesco verdi|1 +(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer +guiseppe guarneri|1 +(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker +guitar|1 +(noun)|stringed instrument +guitar pick|1 +(noun)|pick|plectrum|plectron +guitar player|1 +(noun)|guitarist|musician|instrumentalist|player +guitarfish|1 +(noun)|ray +guitarist|1 +(noun)|guitar player|musician|instrumentalist|player +gujarat|2 +(noun)|Gujarat|Gujerat|geographical area|geographic area|geographical region|geographic region +(noun)|Gujarat|Gujerat|state|province +gujarati|2 +(noun)|Gujarati|Gujerati|Indian +(noun)|Gujarati|Gujerati|Sanskrit|Sanskritic language +gujerat|2 +(noun)|Gujarat|Gujerat|geographical area|geographic area|geographical region|geographic region +(noun)|Gujarat|Gujerat|state|province +gujerati|2 +(noun)|Gujarati|Gujerati|Indian +(noun)|Gujarati|Gujerati|Sanskrit|Sanskritic language +gula|2 +(noun)|Gula|Semitic deity +(noun)|gluttony|overeating|mortal sin|deadly sin +gulag|1 +(noun)|prison camp|internment camp|prisoner of war camp|POW camp +gulch|1 +(noun)|flume|gorge +gulden|2 +(noun)|guilder|florin|Surinamese monetary unit +(noun)|guilder|florin|Dutch florin|Dutch monetary unit +gulf|3 +(noun)|body of water|water +(noun)|disconnect|disconnection|disparity +(noun)|chasm +gulf coast|1 +(noun)|Gulf Coast|seashore|coast|seacoast|sea-coast +gulf of aden|1 +(noun)|Gulf of Aden|gulf +gulf of aegina|1 +(noun)|Saronic Gulf|Gulf of Aegina|inlet|recess +gulf of akaba|1 +(noun)|Gulf of Aqaba|Gulf of Akaba|gulf +gulf of alaska|1 +(noun)|Gulf of Alaska|gulf +gulf of antalya|1 +(noun)|Gulf of Antalya|gulf +gulf of aqaba|1 +(noun)|Gulf of Aqaba|Gulf of Akaba|gulf +gulf of bothnia|1 +(noun)|Gulf of Bothnia|gulf +gulf of california|1 +(noun)|Gulf of California|Sea of Cortes|gulf +gulf of carpenteria|1 +(noun)|Gulf of Carpenteria|Carpenteria|gulf|Australia +gulf of corinth|1 +(noun)|Gulf of Corinth|Gulf of Lepanto|gulf +gulf of finland|1 +(noun)|Gulf of Finland|gulf +gulf of guinea|1 +(noun)|Gulf of Guinea|gulf +gulf of lepanto|1 +(noun)|Gulf of Corinth|Gulf of Lepanto|gulf +gulf of mexico|1 +(noun)|Gulf of Mexico|Golfo de Mexico|gulf +gulf of ob|1 +(noun)|Gulf of Ob|Bay of Ob|gulf +gulf of oman|1 +(noun)|Gulf of Oman|gulf +gulf of riga|1 +(noun)|Gulf of Riga|gulf +gulf of saint lawrence|1 +(noun)|Gulf of Saint Lawrence|Gulf of St. Lawrence|gulf +gulf of siam|1 +(noun)|Gulf of Thailand|Gulf of Siam|gulf +gulf of sidra|1 +(noun)|Gulf of Sidra|gulf +gulf of st. lawrence|1 +(noun)|Gulf of Saint Lawrence|Gulf of St. Lawrence|gulf +gulf of suez|1 +(noun)|Gulf of Suez|gulf +gulf of tehuantepec|1 +(noun)|Gulf of Tehuantepec|gulf +gulf of thailand|1 +(noun)|Gulf of Thailand|Gulf of Siam|gulf +gulf of venice|1 +(noun)|Gulf of Venice|gulf +gulf states|2 +(noun)|Gulf States|geographical area|geographic area|geographical region|geographic region +(noun)|Gulf States|geographical area|geographic area|geographical region|geographic region +gulf stream|1 +(noun)|Gulf stream|ocean current +gulf war|2 +(noun)|Persian Gulf War|Gulf War|war|warfare +(noun)|Iran-Iraq War|Gulf War|war|warfare +gulf war syndrome|1 +(noun)|Gulf War syndrome|Persian Gulf illness|syndrome +gulfweed|1 +(noun)|sargassum|sargasso|Sargassum bacciferum|brown algae +gull|4 +(noun)|chump|fool|mark|patsy|fall guy|sucker|soft touch|mug|victim|dupe +(noun)|seagull|sea gull|larid +(verb)|fool|befool|deceive|lead on|delude|cozen +(verb)|dupe|slang|befool|cod|fool|put on|take in|put one over|put one across|deceive|betray|lead astray +gullet|1 +(noun)|esophagus|oesophagus|gorge|passage|passageway|muscular structure|musculature|muscle system +gullibility|1 +(noun)|credulousness|naivete|naivety|naiveness +gullible|2 +(adj)|fleeceable|green|naive |naif +(adj)|unwary +gulliver|1 +(noun)|Gulliver|fictional character|fictitious character|character +gully|1 +(noun)|valley|vale +gulo|1 +(noun)|Gulo|genus Gulo|mammal genus +gulo gulo|1 +(noun)|glutton|Gulo gulo|wolverine|musteline mammal|mustelid|musteline +gulo luscus|1 +(noun)|wolverine|carcajou|skunk bear|Gulo luscus|musteline mammal|mustelid|musteline +gulp|4 +(noun)|draft|draught|swig|swallow|drink|deglutition +(noun)|gulping|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|quaff|swig|drink|imbibe +(verb)|talk|speak|utter|mouth|verbalize|verbalise +gulper|1 +(noun)|guzzler|drinker +gulping|2 +(noun)|gulp|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|swilling|guzzling|drinking|imbibing|imbibition +gulu|1 +(noun)|Gulu|city|metropolis|urban center +gulyas|1 +(noun)|goulash|Hungarian goulash|stew +gum|8 +(noun)|chewing gum|sweet|confection|confectionery +(noun)|gingiva|animal tissue +(noun)|exudate|exudation +(noun)|glue|mucilage|cement +(noun)|gumwood|wood +(noun)|gum tree|tree +(verb)|mumble|chew|masticate|manducate|jaw +(verb)|exude|exudate|transude|ooze out|ooze +gum-lac|1 +(noun)|lac +gum acacia|1 +(noun)|gum arabic|gum +gum accroides|1 +(noun)|acaroid resin|accaroid resin|accroides|accroides resin|accroides gum|natural resin +gum albanum|1 +(noun)|galbanum|gum +gum ammoniac|1 +(noun)|ammoniac|gum +gum anime|1 +(noun)|anime|natural resin +gum arabic|1 +(noun)|gum acacia|gum +gum ball|1 +(noun)|chewing gum|gum +gum benjamin|1 +(noun)|benzoin|gum benzoin|benjamin|asa dulcis|gum resin +gum benzoin|1 +(noun)|benzoin|benjamin|gum benjamin|asa dulcis|gum resin +gum boot|1 +(noun)|rubber boot|boot +gum butea|1 +(noun)|butea gum|butea kino|Bengal kino|gum +gum dammar|1 +(noun)|dammar|damar|dammar resin|natural resin +gum elastic|1 +(noun)|rubber|India rubber|caoutchouc|latex +gum elemi|1 +(noun)|elemi|gum resin +gum eurphorbium|1 +(noun)|euphorbium|gum +gum kino|1 +(noun)|kino|kino gum|gum +gum labdanum|1 +(noun)|labdanum|oleoresin +gum myrrh|2 +(noun)|myrrh|sweet cicely|gum resin +(noun)|myrrh|gum resin +gum olibanum|1 +(noun)|frankincense|olibanum|thus|gum +gum plant|1 +(noun)|gumweed|tarweed|rosinweed|herb|herbaceous plant +gum resin|1 +(noun)|natural resin +gum ridge|1 +(noun)|alveolar ridge|alveolar process|process|outgrowth|appendage +gum sangapenum|1 +(noun)|sangapenum|gum +gum terpentine|1 +(noun)|turpentine|oleoresin +gum tree|1 +(noun)|gum|tree +gum up|1 +(verb)|clog|choke off|clog up|back up|congest|choke|foul +gumbo|4 +(noun)|gumbo soil|soil|dirt +(noun)|okra|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +(noun)|okra|vegetable|veggie +(noun)|soup +gumbo-limbo|1 +(noun)|Bursera simaruba|incense tree +gumbo soil|1 +(noun)|gumbo|soil|dirt +gumboil|1 +(noun)|boil|furuncle +gumdrop|1 +(noun)|candy +gumma|1 +(noun)|granuloma +gummed|1 +(adj)|adhesive +gummed label|1 +(noun)|sticker|paster|label +gumminess|1 +(noun)|cohesiveness|glueyness|gluiness|ropiness|viscidity|viscidness|viscosity|viscousness +gumming|1 +(noun)|mumbling|chew|chewing|mastication|manduction +gummite|1 +(noun)|mixture +gummosis|2 +(noun)|plant disease +(noun)|brown rot gummosis|brown rot +gummy|1 +(adj)|gluey|glutinous|mucilaginous|pasty|sticky|viscid|viscous|adhesive +gumption|2 +(noun)|common sense|good sense|horse sense|sense|mother wit|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|backbone|grit|guts|moxie|sand|fortitude +gumptious|1 +(adj)|energetic|industrious|up-and-coming|enterprising +gumshield|1 +(noun)|mouthpiece|sports equipment|sporting goods +gumshoe|2 +(noun)|dick|hawkshaw|detective|investigator|tec|police detective +(noun)|arctic|galosh|golosh|rubber|overshoe +gumweed|1 +(noun)|gum plant|tarweed|rosinweed|herb|herbaceous plant +gumwood|1 +(noun)|gum|wood +gun|8 +(noun)|weapon|arm|weapon system +(noun)|artillery|heavy weapon|ordnance|armament +(noun)|gunman|shot|shooter +(noun)|gunman|gunslinger|hired gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +(noun)|grease-gun|pump +(noun)|accelerator|accelerator pedal|gas pedal|gas|throttle|pedal|treadle|foot pedal|foot lever +(noun)|discharge|firing|firing off +(verb)|shoot|gun down +gun-sight|2 +(noun)|gunsight|sight +(noun)| +gun barrel|1 +(noun)|barrel|tube|tubing +gun carriage|1 +(noun)|framework|frame|framing +gun case|1 +(noun)|case +gun chamber|1 +(noun)|firing chamber|chamber +gun control|1 +(noun)|regulation|regulating +gun deck|1 +(noun)|deck +gun dog|1 +(noun)|sporting dog|hunting dog +gun down|1 +(verb)|shoot|hit|pip +gun emplacement|1 +(noun)|weapons emplacement|emplacement +gun enclosure|1 +(noun)|gun turret|turret|platform|weapons platform +gun for hire|1 +(noun)|gunman|gunslinger|hired gun|gun|triggerman|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +gun moll|1 +(noun)|moll|gangster's moll|criminal|felon|crook|outlaw|malefactor +gun muzzle|1 +(noun)|muzzle|opening +gun rest|1 +(noun)|gunwale|gunnel|wale|strake +gun room|1 +(noun)|military quarters +gun smoke|1 +(noun)|smoke|fume +gun trigger|1 +(noun)|trigger|lever +gun turret|1 +(noun)|gun enclosure|turret|platform|weapons platform +gunboat|1 +(noun)|boat +gunboat diplomacy|1 +(noun)|power politics|diplomacy|diplomatic negotiations +guncotton|1 +(noun)|cellulose nitrate|nitrocellulose|nitrocotton|cellulose ester|nitrate +gunfight|1 +(noun)|gunplay|shootout|fight|fighting|combat|scrap +gunfire|1 +(noun)|gunshot|shooting|shot +gunflint|1 +(noun)|flint +gung ho|1 +(adj)|enthusiastic +gunite|1 +(noun)|building material +gunk|1 +(noun)|sludge|slime|goo|gook|guck|muck|ooze|substance|matter +gunlock|1 +(noun)|firing mechanism|action|action mechanism +gunman|2 +(noun)|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +(noun)|gun|shot|shooter +gunmetal|1 +(noun)|bronze +gunnar myrdal|1 +(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist|economic expert +gunnel|2 +(noun)|gunwale|gun rest|wale|strake +(noun)|bracketed blenny|blennioid fish|blennioid +gunner|1 +(noun)|artilleryman|cannoneer|machine gunner|serviceman|military man|man|military personnel +gunnery|1 +(noun)|weaponry|arms|implements of war|weapons system|munition +gunnery sergeant|1 +(noun)|sergeant +gunny|1 +(noun)|burlap|sacking|bagging +gunny sack|2 +(noun)|gunnysack|burlap bag|bag +(noun)| +gunnysack|1 +(noun)|gunny sack|burlap bag|bag +gunplay|1 +(noun)|gunfight|shootout|fight|fighting|combat|scrap +gunpoint|1 +(noun)|point|gun muzzle|muzzle +gunpowder|1 +(noun)|powder|explosive +gunpowder plot|1 +(noun)|Gunpowder Plot|conspiracy|cabal +gunrunner|1 +(noun)|arms-runner|smuggler|runner|contrabandist|moon curser|moon-curser +gunrunning|1 +(noun)|smuggling +gunshot|1 +(noun)|gunfire|shooting|shot +gunsight|1 +(noun)|gun-sight|sight +gunslinger|1 +(noun)|gunman|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +gunsmith|1 +(noun)|smith +gunstock|1 +(noun)|stock|handle|grip|handgrip|hold|support +gunter's chain|1 +(noun)|Gunter's chain|chain +gunter grass|1 +(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer|author +gunter wilhelm grass|1 +(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer|author +gunwale|1 +(noun)|gunnel|gun rest|wale|strake +guomindang|1 +(noun)|Kuomintang|Guomindang|party|political party +guppy|1 +(noun)|rainbow fish|Lebistes reticulatus|cyprinodont +gur|1 +(noun)|Gur|Voltaic|Niger-Congo +gurgle|5 +(noun)|sound +(verb)|ripple|babble|guggle|burble|bubble|sound|go +(verb)|sound|go +(verb)|guggle|drink|imbibe +(verb)|utter|emit|let out|let loose +gurkha|2 +(noun)|Gurkha|soldier +(noun)|Gurkha|Nepalese|Nepali +gurnard|1 +(noun)|scorpaenoid|scorpaenoid fish +gurney|1 +(noun)|stretcher +guru|3 +(noun)|religious leader +(noun)|Guru|religious leader +(noun)|leader +guru nanak|1 +(noun)|Nanak|Guru Nanak|religious leader +gush|5 +(noun)|flush|outpouring|flow|flowing +(noun)|effusion|outburst|blowup|ebullition|expression|manifestation|reflection|reflexion +(verb)|spurt|spirt|spout|pour +(verb)|rave|praise +(verb)|jet|run|flow|feed|course +gusher|1 +(noun)|oil well|oiler +gushing|3 +(adj)|pouring|running +(adj)|burbling|burbly|effusive|lively +(adj)|effusive|emotional|gushy|demonstrative +gushy|1 +(adj)|effusive|emotional|gushing|demonstrative +gusset|3 +(noun)|voider|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +(noun)|gusset plate|plate|brace|bracing +(noun)|inset|piece of cloth|piece of material +gusset plate|1 +(noun)|gusset|plate|brace|bracing +gusseted|1 +(adj)|gusseted +gussied|1 +(adj)|fancied up|gussied up|tricked out|adorned |decorated +gussied up|1 +(adj)|fancied up|gussied|tricked out|adorned |decorated +gussy up|1 +(verb)|dress up|fig out|fig up|deck up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +gust|1 +(noun)|blast|blow|wind|air current|current of air +gustative|1 +(adj)|gustatory|gustatorial|sensation|sense experience|sense impression|sense datum +gustatorial|1 +(adj)|gustatory|gustative|sensation|sense experience|sense impression|sense datum +gustatory|1 +(adj)|gustative|gustatorial|sensation|sense experience|sense impression|sense datum +gustatory cell|1 +(noun)|taste cell|epithelial cell +gustatory organ|1 +(noun)|tastebud|taste bud|chemoreceptor +gustatory perception|1 +(noun)|taste|taste sensation|gustatory sensation|taste perception|sensation|sense experience|sense impression|sense datum +gustatory sensation|1 +(noun)|taste|taste sensation|taste perception|gustatory perception|sensation|sense experience|sense impression|sense datum +gustav hertz|1 +(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist +gustav klimt|1 +(noun)|Klimt|Gustav Klimt|painter +gustav ludwig hertz|1 +(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist +gustav mahler|1 +(noun)|Mahler|Gustav Mahler|composer|conductor|music director|director +gustav robert kirchhoff|1 +(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist +gustav theodor fechner|1 +(noun)|Fechner|Gustav Theodor Fechner|physicist +gustave courbet|1 +(noun)|Courbet|Gustave Courbet|painter +gustave flaubert|1 +(noun)|Flaubert|Gustave Flaubert|writer|author +gustavus|2 +(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king|male monarch +(noun)|Gustavus|Gustavus I|king|male monarch +gustavus adolphus|1 +(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king|male monarch +gustavus franklin swift|1 +(noun)|Swift|Gustavus Franklin Swift|meat packer|packer +gustavus i|1 +(noun)|Gustavus|Gustavus I|king|male monarch +gustavus ii|1 +(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king|male monarch +gustavus v|1 +(noun)|Gustavus V|king|male monarch +gusto|1 +(noun)|relish|zest|zestfulness|enjoyment|enthusiasm +gusty|1 +(adj)|blustering|blusterous|blustery|stormy +gut|4 +(noun)|intestine|bowel|internal organ|viscus +(noun)|catgut|cord +(verb)|empty +(verb)|remove|take|take away|withdraw +gutenberg|1 +(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer|pressman +guthrie|1 +(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer|jongleur|minstrel|poet-singer|troubadour|songwriter|songster|ballad maker +gutierrezia|1 +(noun)|Gutierrezia|genus Gutierrezia|asterid dicot genus +gutierrezia microcephala|1 +(noun)|little-head snakeweed|Gutierrezia microcephala|matchweed|matchbush +gutierrezia sarothrae|1 +(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +gutierrezia texana|1 +(noun)|broomweed|broom-weed|Gutierrezia texana|matchweed|matchbush +gutless|1 +(adj)|gutless |spineless +gutlessness|1 +(noun)|fearfulness +guts|3 +(noun)|backbone|grit|moxie|sand|gumption|fortitude +(noun)|intestine|bowel|gut|internal organ|viscus +(noun)|catgut|gut|cord +gutsiness|1 +(noun)|pluck|pluckiness|fearlessness +gutsy|1 +(adj)|gutsy |plucky +gutta-percha|1 +(noun)|gum +gutta-percha tree|2 +(noun)|tree +(noun)|Palaquium gutta|tree +gutta balata|1 +(noun)|balata|gum +gutter|8 +(noun)|trough|channel +(noun)|sewer|toilet|misfortune|bad luck|tough luck|ill luck +(noun)|worker +(noun)|hand tool +(verb)|burn|glow +(verb)|run|flow|feed|course +(verb)|probe|dig into|poke into +(verb)|provide|supply|ply|cater +gutter press|1 +(noun)|press|fourth estate +guttersnipe|1 +(noun)|street urchin|urchin +guttiferae|1 +(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family +guttiferales|1 +(noun)|Guttiferales|order Guttiferales|plant order +guttle|1 +(verb)|devour|raven|pig|eat +guttural|3 +(adj)|croaking|croaky|cacophonous |cacophonic +(adj)|tubular cavity +(noun)|guttural consonant|consonant +guttural consonant|1 +(noun)|guttural|consonant +guvnor|1 +(noun)|boss|hirer +guy|5 +(noun)|cat|hombre|bozo|man|adult male +(noun)|Guy|effigy|image|simulacrum +(noun)|guy cable|guy rope|brace|bracing +(verb)|ridicule|roast|blackguard|laugh at|jest at|rib|make fun|poke fun|mock|bemock +(verb)|brace|steady|stabilize|stabilise +guy cable|1 +(noun)|guy|guy rope|brace|bracing +guy de maupassant|1 +(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer|author +guy fawkes|1 +(noun)|Fawkes|Guy Fawkes|conspirator|coconspirator|plotter|machinator +guy fawkes day|1 +(noun)|Guy Fawkes Day|November 5 +guy fawkes night|1 +(noun)|Bonfire Night|Guy Fawkes Night|November 5 +guy rope|1 +(noun)|guy|guy cable|brace|bracing +guyana|1 +(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country|South American nation +guyana dollar|1 +(noun)|Guyana dollar|dollar +guyanese|2 +(adj)|Guyanese|South American country|South American nation +(noun)|Guyanese|South American +guyot|1 +(noun)|seamount +guzzle|1 +(verb)|drink|imbibe +guzzler|2 +(noun)|drinker|imbiber|toper|juicer +(noun)|gulper|drinker +guzzling|1 +(noun)|gulping|swilling|drinking|imbibing|imbibition +gwydion|1 +(noun)|Gwydion|Celtic deity +gwyn|1 +(noun)|Gwyn|Celtic deity +gwynn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +gybe|1 +(verb)|jibe|jib|change course|sail +gym|1 +(noun)|gymnasium|athletic facility +gym mat|1 +(noun)|mat|sports equipment|sporting goods +gym rat|1 +(noun)|addict|nut|freak|junkie|junky +gym shoe|1 +(noun)|sneaker|tennis shoe|shoe +gym suit|1 +(noun)|sportswear|athletic wear|activewear +gymanstic exercise|1 +(noun)|gymnastics|sport|athletics +gymkhana|1 +(noun)|meet|sports meeting +gymnadenia|1 +(noun)|Gymnadenia|genus Gymnadenia|monocot genus|liliopsid genus +gymnadenia conopsea|1 +(noun)|fragrant orchid|Gymnadenia conopsea|orchid|orchidaceous plant +gymnadenia odoratissima|1 +(noun)|short-spurred fragrant orchid|Gymnadenia odoratissima|orchid|orchidaceous plant +gymnadeniopsis|1 +(noun)|Gymnadeniopsis|genus Gymnadeniopsis|monocot genus|liliopsid genus +gymnasium|2 +(noun)|secondary school|lyceum|lycee|Gymnasium|middle school|school +(noun)|gym|athletic facility +gymnast|1 +(noun)|athlete|jock +gymnastic|2 +(adj)|acrobatic|athletic|active +(adj)|sport|athletics +gymnastic apparatus|1 +(noun)|exerciser|sports equipment|sporting goods +gymnastic exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +gymnastics|1 +(noun)|gymanstic exercise|sport|athletics +gymnelis|1 +(noun)|Gymnelis|genus Gymnelis|fish genus +gymnelis viridis|1 +(noun)|fish doctor|Gymnelis viridis|eelpout|pout +gymnocalycium|1 +(noun)|Gymnocalycium|genus Gymnocalycium|caryophylloid dicot genus +gymnocarpium|1 +(noun)|Gymnocarpium|genus Gymnocarpium|fern genus +gymnocarpium dryopteris|1 +(noun)|oak fern|Gymnocarpium dryopteris|Thelypteris dryopteris|fern +gymnocarpium robertianum|1 +(noun)|limestone fern|northern oak fern|Gymnocarpium robertianum|fern +gymnocladus|1 +(noun)|Gymnocladus|genus Gymnocladus|rosid dicot genus +gymnocladus dioica|1 +(noun)|Kentucky coffee tree|bonduc|chicot|Gymnocladus dioica|tree +gymnogyps|1 +(noun)|Gymnogyps|genus Gymnogyps|bird genus +gymnogyps californianus|1 +(noun)|California condor|Gymnogyps californianus|condor +gymnomycota|1 +(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division +gymnophiona|1 +(noun)|Gymnophiona|order Gymnophiona|animal order +gymnopilus|1 +(noun)|Gymnopilus|genus Gymnopilus|fungus genus +gymnopilus spectabilis|1 +(noun)|Gymnopilus spectabilis|agaric +gymnopilus validipes|1 +(noun)|Gymnopilus validipes|agaric +gymnopilus ventricosus|1 +(noun)|Gymnopilus ventricosus|agaric +gymnorhina|1 +(noun)|Gymnorhina|genus Gymnorhina|bird genus +gymnorhina tibicen|1 +(noun)|piping crow|piping crow-shrike|Gymnorhina tibicen|Australian magpie +gymnosophical|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism|nudism|naturism +gymnosophist|1 +(noun)|philosopher +gymnosophy|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism|nudism|naturism +gymnosperm|1 +(noun)|spermatophyte|phanerogam|seed plant +gymnosperm family|1 +(noun)|plant family +gymnosperm genus|1 +(noun)|genus +gymnospermae|1 +(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class +gymnospermophyta|1 +(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class +gymnospermous|1 +(adj)|class +gymnospermous tree|1 +(noun)|tree +gymnospermous yellowwood|1 +(noun)|yellowwood|yellowwood tree +gymnosporangium|1 +(noun)|Gymnosporangium|genus Gymnosporangium|fungus genus +gymnosporangium juniperi-virginianae|1 +(noun)|apple rust|cedar-apple rust|Gymnosporangium juniperi-virginianae|rust|rust fungus +gymnura|1 +(noun)|Gymnura|genus Gymnura|fish genus +gymslip|1 +(noun)|tunic +gynaecological|1 +(adj)|gynecological|gynecologic|medicine|medical specialty +gynaecologist|1 +(noun)|gynecologist|woman's doctor|specialist|medical specialist +gynaecology|1 +(noun)|gynecology|medicine|medical specialty +gynaeolatry|1 +(noun)|gyneolatry|woman-worship|idolatry|devotion|veneration|cultism +gynandromorph|1 +(noun)|hermaphrodite|intersex|androgyne|epicine|epicine person|bisexual|bisexual person +gynandromorphic|1 +(adj)|gynandromorphous|androgynous +gynandromorphous|1 +(adj)|gynandromorphic|androgynous +gynecologic|1 +(adj)|gynecological|gynaecological|medicine|medical specialty +gynecological|1 +(adj)|gynaecological|gynecologic|medicine|medical specialty +gynecologist|1 +(noun)|gynaecologist|woman's doctor|specialist|medical specialist +gynecology|1 +(noun)|gynaecology|medicine|medical specialty +gynecomastia|1 +(noun)|abnormality|abnormalcy|abnormal condition +gyneolatry|1 +(noun)|gynaeolatry|woman-worship|idolatry|devotion|veneration|cultism +gynne|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +gynobase|1 +(noun)|receptacle +gynoecium|1 +(noun)|gametoecium +gynogenesis|1 +(noun)|parthenogenesis|parthenogeny|virgin birth +gynophobia|1 +(noun)|social phobia +gynophore|1 +(noun)|stalk|stem +gynostegium|1 +(noun)|plant part|plant structure +gynura|1 +(noun)|Gynura|genus Gynura|asterid dicot genus +gynura aurantiaca|1 +(noun)|velvet plant|purple velvet plant|royal velvet plant|Gynura aurantiaca|houseplant +gyp|2 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|hustle|sting|flimflam|swindle|cheat|rig +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|con|cheat|rip off|chisel +gypaetus|1 +(noun)|Gypaetus|genus Gypaetus|bird genus +gypaetus barbatus|1 +(noun)|bearded vulture|lammergeier|lammergeyer|Gypaetus barbatus|Old World vulture +gyps|2 +(noun)|Gyps|genus Gyps|bird genus +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle|cheat|rig +gyps fulvus|1 +(noun)|griffon vulture|griffon|Gyps fulvus|Old World vulture +gypsophila|1 +(noun)|Gypsophila|genus Gypsophila|caryophylloid dicot genus +gypsophila paniculata|1 +(noun)|baby's breath|babies'-breath|Gypsophila paniculata|flower +gypsum|1 +(noun)|mineral +gypsum board|1 +(noun)|plasterboard|wallboard +gypsy|2 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +(noun)|Romany|Gypsy|Sanskrit|Sanskritic language +gypsy cab|1 +(noun)|cab|hack|taxi|taxicab +gypsy dancing|1 +(noun)|flamenco|social dancing +gypsy moth|1 +(noun)|gipsy moth|Lymantria dispar|lymantriid|tussock moth +gypsy rose lee|1 +(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler +gypsyweed|1 +(noun)|common speedwell|Veronica officinalis|veronica|speedwell +gypsywort|1 +(noun)|gipsywort|Lycopus europaeus|herb|herbaceous plant +gyral|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +gyrate|2 +(verb)|spiral|coil|turn +(verb)|spin|spin around|whirl|reel|revolve|go around|rotate +gyration|2 +(noun)|rotation|revolution|turning|turn +(noun)|whirling|rotation|rotary motion +gyre|1 +(noun)|coil|whorl|roll|curl|curlicue|ringlet|scroll|round shape +gyrfalcon|1 +(noun)|gerfalcon|Falco rusticolus|falcon +gyrinidae|1 +(noun)|Gyrinidae|family Gyrinidae|arthropod family +gyro|2 +(noun)|sandwich +(noun)|gyroscope|rotating mechanism +gyro horizon|1 +(noun)|artificial horizon|flight indicator|navigational instrument +gyrocompass|1 +(noun)|compass +gyromitra|1 +(noun)|fungus +gyromitra brunnea|1 +(noun)|Gyromitra fastigiata|Gyromitra brunnea|lorchel +gyromitra californica|1 +(noun)|Gyromitra californica|California false morel|gyromitra +gyromitra esculenta|1 +(noun)|Gyromitra esculenta|brain mushroom|beefsteak morel|gyromitra +gyromitra fastigiata|1 +(noun)|Gyromitra fastigiata|Gyromitra brunnea|lorchel +gyromitra gigas|1 +(noun)|Gyromitra gigas|gyromitra +gyromitra infula|1 +(noun)|Gyromitra infula|saddled-shaped false morel|gyromitra +gyromitra sphaerospora|1 +(noun)|Gyromitra sphaerospora|round-spored gyromitra|gyromitra +gyroplane|1 +(noun)|autogiro|autogyro|heavier-than-air craft +gyroscope|1 +(noun)|gyro|rotating mechanism +gyroscopic|1 +(adj)|rotating mechanism +gyrostabiliser|1 +(noun)|gyrostabilizer|stabilizer|stabiliser +gyrostabilizer|1 +(noun)|gyrostabiliser|stabilizer|stabiliser +gyrus|1 +(noun)|convolution|structure|anatomical structure|complex body part|bodily structure|body structure +gyrus cinguli|1 +(noun)|cingulate gyrus|neural structure +gywn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +h|5 +(noun)|hydrogen|H|atomic number 1|chemical element|element|gas +(noun)|henry|H|inductance unit +(noun)|Planck's constant|factor of proportionality|constant of proportionality +(noun)|H|letter|letter of the alphabet|alphabetic character +(noun)|heat content|total heat|enthalpy|H|physical property +h-bomb|1 +(noun)|hydrogen bomb|H-bomb|fusion bomb|thermonuclear bomb|nuclear weapon|bomb +h-shaped|1 +(adj)|H-shaped|formed +h. g. wells|1 +(noun)|Wells|H. G. Wells|Herbert George Wells|writer|author +h. h. munro|1 +(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer|author +h. j. eysenck|1 +(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist +h. l. mencken|1 +(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist|literary critic +h. pylori|1 +(noun)|Heliobacter pylori|H. pylori|bacteria species +h.m.s. bounty|1 +(noun)|Bounty|H.M.S. Bounty|ship +h.p.|2 +(noun)|horsepower|HP|H.P.|power unit +(noun)| +h2o|1 +(noun)|water|H2O|binary compound|liquid +ha|1 +(noun)|hour angle|HA|angular distance +ha'p'orth|1 +(noun)|halfpennyworth|worth +ha'penny|1 +(noun)|halfpenny|coin +ha-ha|2 +(noun)|hee-haw|horselaugh|haw-haw|laugh|laughter +(noun)|sunk fence|haw-haw|ditch +haart|1 +(noun)|drug cocktail|highly active antiretroviral therapy|HAART|medicine|medication|medicament|medicinal drug +haastia|1 +(noun)|Haastia|genus Haastia|asterid dicot genus +haastia pulvinaris|1 +(noun)|vegetable sheep|sheep plant|Haastia pulvinaris|herb|herbaceous plant +habacuc|1 +(noun)|Habakkuk|Habacuc|Book of Habakkuk|book +habakkuk|2 +(noun)|Habakkuk|prophet +(noun)|Habakkuk|Habacuc|Book of Habakkuk|book +habanera|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|social dancing +habeas corpus|2 +(noun)|writ of habeas corpus|writ|judicial writ +(noun)|civil right|civil rights +habenaria|1 +(noun)|Habenaria|genus Habenaria|monocot genus|liliopsid genus +habenaria albiflora|1 +(noun)|white fringed orchis|white fringed orchid|Habenaria albiflora|fringed orchis|fringed orchid +habenaria bifolia|1 +(noun)|lesser butterfly orchid|Platanthera bifolia|Habenaria bifolia|orchid|orchidaceous plant +habenaria chlorantha|1 +(noun)|greater butterfly orchid|Platanthera chlorantha|Habenaria chlorantha|orchid|orchidaceous plant +habenaria dilatata|1 +(noun)|bog rein orchid|bog candles|Habenaria dilatata|rein orchid|rein orchis +habenaria elegans|1 +(noun)|elegant Habenaria|Habenaria elegans|rein orchid|rein orchis +habenaria fimbriata|1 +(noun)|purple-fringed orchid|purple-fringed orchis|Habenaria fimbriata|fringed orchis|fringed orchid +habenaria greenei|1 +(noun)|coastal rein orchid|Habenaria greenei|rein orchid|rein orchis +habenaria hookeri|1 +(noun)|Hooker's orchid|Habenaria hookeri|fringed orchis|fringed orchid +habenaria lacera|1 +(noun)|ragged orchid|ragged orchis|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis|fringed orchid +habenaria leucophaea|1 +(noun)|prairie orchid|prairie white-fringed orchis|Habenaria leucophaea|fringed orchis|fringed orchid +habenaria nivea|1 +(noun)|snowy orchid|Habenaria nivea|fringed orchis|fringed orchid +habenaria orbiculata|1 +(noun)|round-leaved rein orchid|Habenaria orbiculata|rein orchid|rein orchis +habenaria peramoena|1 +(noun)|purple fringeless orchid|purple fringeless orchis|Habenaria peramoena|fringed orchis|fringed orchid +habenaria psycodes|1 +(noun)|purple-fringed orchid|purple-fringed orchis|Habenaria psycodes|fringed orchis|fringed orchid +habenaria unalascensis|1 +(noun)|Alaska rein orchid|Habenaria unalascensis|rein orchid|rein orchis +haber|1 +(noun)|Haber|Fritz Haber|chemist +haber-bosch process|1 +(noun)|Haber process|Haber-Bosch process|industrial process +haber process|1 +(noun)|Haber process|Haber-Bosch process|industrial process +haberdasher|1 +(noun)|clothier|merchant|merchandiser +haberdashery|2 +(noun)|clothing store|haberdashery store|mens store|shop|store +(noun)|men's furnishings|drygoods|soft goods +haberdashery store|1 +(noun)|clothing store|haberdashery|mens store|shop|store +habergeon|1 +(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +habilimented|1 +(adj)|appareled|attired|dressed|garbed|garmented|robed|clothed |clad +habilitate|2 +(verb)|qualify|dispose +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|fit out|apparel|change state|turn +habit|5 +(noun)|wont|custom|tradition +(noun)|use|wont|custom|usage|usance +(noun)|attire|garb|dress +(noun)|substance abuse|drug abuse|misuse|abuse +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +habit-forming|1 +(adj)|addictive +habitable|1 +(adj)|inhabitable|livable |liveable +habitat|1 +(noun)|home ground|environment|environs|surroundings|surround +habitation|3 +(noun)|habitat|home ground +(noun)|dwelling|home|domicile|abode|dwelling house|housing|lodging|living accommodations +(noun)|inhabitancy|inhabitation|occupancy|tenancy +habited|1 +(adj)|clothed |clad +habitual|3 +(adj)|established |constituted +(adj)|accustomed|customary|wonted|usual +(adj)|chronic|confirmed|inveterate|addicted +habitual abortion|1 +(noun)|spontaneous abortion|miscarriage|stillbirth +habitual criminal|1 +(noun)|recidivist|repeater|criminal|felon|crook|outlaw|malefactor +habitually|1 +(adv)|routinely +habituate|2 +(verb)|use|consume|ingest|take in|take|have +(verb)|accustom|change|alter|modify +habituation|2 +(noun)|addiction|dependence|dependency|physiological state|physiological condition +(noun)|accommodation +habitude|1 +(noun)|practice|pattern +habitue|1 +(noun)|regular|fixture|patron|frequenter +habitus|2 +(noun)|sensitivity|predisposition +(noun)|physique|build|body-build|bodily property +hablot knight browne|1 +(noun)|Browne|Hablot Knight Browne|Phiz|illustrator +habsburg|1 +(noun)|Habsburg|Hapsburg|dynasty|royalty|royal family|royal line|royal house +hacek|1 +(noun)|wedge|diacritical mark|diacritic +hachiman|1 +(noun)|Hachiman|Japanese deity +hachure|1 +(noun)|hatch|hatching|crosshatch|shading +hacienda|2 +(noun)|estate|land|landed estate|acres|demesne +(noun)|house +hack|16 +(noun)|drudge|hacker|unskilled person +(noun)|machine politician|ward-heeler|political hack|politician|politico|pol|political leader +(noun)|hack writer|literary hack|writer|author +(noun)|tool +(noun)|cab|taxi|taxicab|car|auto|automobile|machine|motorcar +(noun)|jade|nag|plug|horse|Equus caballus +(noun)|horse|Equus caballus +(noun)|saddle horse|riding horse|mount +(verb)|chop|cut +(verb)|cut|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|cut +(verb)|foul +(verb)|foul +(verb)|hack on|program|programme +(verb)|cut up|edit|redact +(verb)|whoop|cough +hack-driver|2 +(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack driver|livery driver|driver +(noun)| +hack driver|2 +(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack-driver|livery driver|driver +(noun)| +hack on|1 +(verb)|hack|program|programme +hack writer|1 +(noun)|hack|literary hack|writer|author +hackamore|1 +(noun)|halter|headgear +hackberry|2 +(noun)|nettle tree|tree +(noun)|sugarberry|berry +hackbut|1 +(noun)|arquebus|harquebus|hagbut|muzzle loader +hackee|1 +(noun)|eastern chipmunk|striped squirrel|ground squirrel|Tamias striatus|squirrel +hackelia|1 +(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus +hacker|4 +(noun)|golfer|golf player|linksman +(noun)|cyber-terrorist|cyberpunk|programmer|computer programmer|coder|software engineer|terrorist +(noun)|programmer|computer programmer|coder|software engineer +(noun)|hack|drudge|unskilled person +hackle|2 +(noun)|feather|plume|plumage +(verb)|heckle|hatchel|comb +hackles|2 +(noun)|dander|anger|choler|ire +(noun)|hackle|feather|plume|plumage +hackmatack|1 +(noun)|balsam poplar|tacamahac|Populus balsamifera|poplar|poplar tree +hackney|2 +(noun)|hackney carriage|hackney coach|carriage|equipage|rig +(noun)|harness horse +hackney carriage|1 +(noun)|hackney|hackney coach|carriage|equipage|rig +hackney coach|1 +(noun)|hackney|hackney carriage|carriage|equipage|rig +hackneyed|1 +(adj)|banal|commonplace|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal +hacksaw|1 +(noun)|metal saw|saw +hackwork|1 +(noun)|labor|labour|toil +had best|1 +(verb)|do well|act|move +had crime|1 +(noun)|Had crime|crime|law-breaking +hadal|1 +(adj)|bed|bottom +haddock|2 +(noun)|fish +(noun)|Melanogrammus aeglefinus|gadoid|gadoid fish +hadean|2 +(adj)|Hadean|Plutonian|Tartarean|infernal +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +hadean aeon|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +hadean eon|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +hadean time|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +hades|2 +(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity +(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place|mythical place +hadith|2 +(noun)|Hadith|custom|tradition +(noun)|Sunnah|Sunna|way|path|way of life +hadj|1 +(noun)|hajj|haj|pillar of Islam|pilgrimage|pilgrim's journey +hadji|1 +(noun)|hajji|haji|pilgrim +hadrian|1 +(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor|Emperor of Rome +hadrian's wall|1 +(noun)|Hadrian's Wall|wall +hadron|1 +(noun)|elementary particle|fundamental particle|subatomic particle +hadrosaur|1 +(noun)|hadrosaurus|duck-billed dinosaur|ornithischian|ornithischian dinosaur +hadrosauridae|1 +(noun)|Hadrosauridae|family Hadrosauridae|reptile family +hadrosaurus|1 +(noun)|hadrosaur|duck-billed dinosaur|ornithischian|ornithischian dinosaur +haecceity|1 +(noun)|quiddity|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +haeckel|1 +(noun)|Haeckel|Ernst Heinrich Haeckel|biologist|life scientist|philosopher +haem|1 +(noun)|heme|hematin|haemitin|protoheme|pigment +haemagglutinate|1 +(verb)|hemagglutinate|agglutinate +haemagglutination|1 +(noun)|hemagglutination|agglutination +haemal|1 +(adj)|hemal|hematal|haematal|vessel|vas +haemal arch|1 +(noun)|hemal arch|arch +haemangioma|1 +(noun)|hemangioma|angioma +haemanthus|1 +(noun)|Haemanthus|genus Haemanthus|liliid monocot genus +haemanthus coccineus|1 +(noun)|Cape tulip|Haemanthus coccineus|blood lily +haematal|1 +(adj)|hemal|haemal|hematal|vessel|vas +haematemesis|1 +(noun)|hematemesis|vomit|vomiting|emesis|regurgitation|disgorgement|puking +haematic|1 +(adj)|hemic|haemic|hematic|liquid body substance|bodily fluid|body fluid|humor|humour +haematinic|1 +(noun)|hematinic|medicine|medication|medicament|medicinal drug +haematite|1 +(noun)|hematite|iron ore +haematobia|1 +(noun)|Haematobia|genus Haematobia|arthropod genus +haematobia irritans|1 +(noun)|horn fly|Haematobia irritans|fly +haematocele|1 +(noun)|hematocele|hematocoele|haematocoele|swelling|puffiness|lump +haematochezia|1 +(noun)|hematochezia|defecation|laxation|shitting +haematocoele|1 +(noun)|hematocele|haematocele|hematocoele|swelling|puffiness|lump +haematocolpometra|1 +(noun)|hematocolpometra|disorder|upset +haematocolpos|1 +(noun)|hematocolpos|disorder|upset +haematocrit|2 +(noun)|hematocrit|packed cell volume|ratio +(noun)|hematocrit|measuring instrument|measuring system|measuring device|centrifuge|extractor|separator +haematocytopenia|1 +(noun)|hematocytopenia|cytopenia +haematocyturia|1 +(noun)|hematocyturia|hematuria|haematuria +haematogenesis|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|sanguification|organic process|biological process +haematogenic|1 +(adj)|hematopoietic|haematopoietic|hemopoietic|haemopoietic|hematogenic|organic process|biological process +haematohiston|1 +(noun)|globin|hematohiston|simple protein +haematoidin|1 +(noun)|bilirubin|hematoidin|animal pigment +haematological|1 +(adj)|hematologic|hematological|medicine|medical specialty +haematologist|1 +(noun)|hematologist|specialist|medical specialist +haematology|1 +(noun)|hematology|medicine|medical specialty +haematolysis|1 +(noun)|hemolysis|haemolysis|hematolysis|lysis +haematoma|1 +(noun)|hematoma|intumescence|intumescency +haematopodidae|1 +(noun)|Haematopodidae|family Haematopodidae|bird family +haematopoiesis|1 +(noun)|hematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +haematopoietic|1 +(adj)|hematopoietic|hemopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process +haematopus|1 +(noun)|Haematopus|genus Haematopus|bird genus +haematoxylon|1 +(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus +haematoxylum|1 +(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus +haematoxylum campechianum|1 +(noun)|logwood|logwood tree|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood|blackwood tree +haematuria|1 +(noun)|hematuria|symptom +haemic|1 +(adj)|hemic|hematic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour +haemitin|1 +(noun)|heme|haem|hematin|protoheme|pigment +haemodialysis|1 +(noun)|hemodialysis|dialysis +haemodoraceae|1 +(noun)|Haemodoraceae|family Haemodoraceae|bloodwort family|monocot family|liliopsid family +haemodorum|1 +(noun)|Haemodorum|genus Haemodorum|monocot genus|liliopsid genus +haemogenesis|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +haemoglobin|1 +(noun)|hemoglobin|Hb|hemoprotein|haemoprotein +haemoglobinemia|1 +(noun)|hemoglobinemia|symptom +haemoglobinopathy|1 +(noun)|hemoglobinopathy|blood disease|blood disorder +haemoglobinuria|1 +(noun)|hemoglobinuria|symptom +haemolysin|1 +(noun)|hemolysin|erythrolysin|erythrocytolysin|organic compound +haemolysis|1 +(noun)|hemolysis|hematolysis|haematolysis|lysis +haemolytic|1 +(adj)|hemolytic|lysis +haemolytic anaemia|1 +(noun)|hemolytic anemia|anemia|anaemia +haemophile|1 +(noun)|hemophiliac|haemophiliac|bleeder|hemophile|sick person|diseased person|sufferer +haemophilia|1 +(noun)|hemophilia|bleeder's disease|blood disease|blood disorder|sex-linked disorder +haemophilia a|1 +(noun)|hemophilia A|haemophilia A|classical hemophilia|classical haemophilia|hemophilia|haemophilia|bleeder's disease +haemophilia b|1 +(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia|haemophilia|bleeder's disease +haemophiliac|1 +(noun)|hemophiliac|bleeder|hemophile|haemophile|sick person|diseased person|sufferer +haemophilic|1 +(adj)|hemophilic|blood disease|blood disorder|sex-linked disorder +haemopis|1 +(noun)|Haemopis|genus Haemopis|worm genus +haemopoiesis|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +haemopoietic|1 +(adj)|hematopoietic|haematopoietic|hemopoietic|hematogenic|haematogenic|organic process|biological process +haemoproteid|1 +(noun)|sporozoan +haemoproteidae|1 +(noun)|Haemoproteidae|family Haemoproteidae|protoctist family +haemoprotein|1 +(noun)|hemoprotein|conjugated protein|compound protein +haemoproteus|1 +(noun)|Haemoproteus|genus Haemoproteus|protoctist genus +haemoptysis|1 +(noun)|hemoptysis|symptom +haemorrhage|1 +(noun)|bleeding|hemorrhage|injury|hurt|harm|trauma +haemorrhagic|1 +(adj)|hemorrhagic|injury|hurt|harm|trauma +haemorrhagic fever|1 +(noun)|hemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection|virus infection +haemorrhagic stroke|1 +(noun)|hemorrhagic stroke|stroke|apoplexy|cerebrovascular accident|CVA|bleeding|hemorrhage|haemorrhage +haemorrhoid|1 +(noun)|hemorrhoid|piles|pain|hurting +haemorrhoidectomy|1 +(noun)|hemorrhoidectomy|operation|surgery|surgical operation|surgical procedure|surgical process +haemosiderin|1 +(noun)|hemosiderin|pigment +haemosiderosis|1 +(noun)|hemosiderosis|symptom +haemosporidia|1 +(noun)|Haemosporidia|order Haemosporidia|animal order +haemosporidian|1 +(noun)|sporozoan +haemostasia|1 +(noun)|hemostasis|haemostasis|hemostasia|stop|stoppage +haemostasis|1 +(noun)|hemostasis|hemostasia|haemostasia|stop|stoppage +haemostat|1 +(noun)|hemostat|surgical instrument +haemothorax|1 +(noun)|hemothorax|congestion +haemulidae|1 +(noun)|Haemulidae|family Haemulidae|fish family +haemulon|1 +(noun)|Haemulon|genus Haemulon|fish genus +haemulon album|1 +(noun)|margate|Haemulon album|grunt +haemulon aurolineatum|1 +(noun)|tomtate|Haemulon aurolineatum|grunt +haemulon macrostomum|1 +(noun)|Spanish grunt|Haemulon macrostomum|grunt +haemulon malanurum|1 +(noun)|cottonwick|Haemulon malanurum|grunt +haemulon parra|1 +(noun)|sailor's-choice|sailors choice|Haemulon parra|grunt +hafnium|1 +(noun)|Hf|atomic number 72|metallic element|metal +haft|1 +(noun)|helve|handle|grip|handgrip|hold +haftarah|1 +(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt|extract|selection +haftorah|1 +(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt|extract|selection +hag|2 +(noun)|beldam|beldame|witch|crone|old woman +(noun)|hagfish|slime eels|jawless vertebrate|jawless fish|agnathan +hag-ridden|2 +(adj)|hagridden|tormented|troubled +(adj)| +hagada|1 +(noun)|Haggadah|Haggada|Hagada|Talmudic literature +haganah|1 +(noun)|Haganah|military unit|military force|military group|force +hagberry|1 +(noun)|fruit +hagberry tree|1 +(noun)|European bird cherry|common bird cherry|Prunus padus|bird cherry|bird cherry tree +hagbut|1 +(noun)|arquebus|harquebus|hackbut|muzzle loader +hageman factor|1 +(noun)|Hageman factor|factor XII|coagulation factor|clotting factor +hagerstown|1 +(noun)|Hagerstown|town +hagfish|1 +(noun)|hag|slime eels|jawless vertebrate|jawless fish|agnathan +haggada|1 +(noun)|Haggadah|Haggada|Hagada|Talmudic literature +haggadah|1 +(noun)|Haggadah|Haggada|Hagada|Talmudic literature +haggai|2 +(noun)|Haggai|Aggeus|prophet +(noun)|Haggai|Aggeus|Book of Haggai|book +haggard|3 +(adj)|careworn|drawn|raddled|worn|tired +(adj)|bony|cadaverous|emaciated|gaunt|pinched|skeletal|wasted|thin |lean +(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer|author +haggis|1 +(noun)|dish +haggle|2 +(noun)|haggling|wrangle|wrangling|bargaining +(verb)|higgle|chaffer|huckster|dicker|bargain +haggler|1 +(noun)|bargainer +haggling|1 +(noun)|haggle|wrangle|wrangling|bargaining +hagiographa|1 +(noun)|Hagiographa|Ketubim|Writings|sacred text|sacred writing|religious writing|religious text +hagiographer|1 +(noun)|hagiographist|hagiologist|biographer +hagiographist|1 +(noun)|hagiographer|hagiologist|biographer +hagiography|1 +(noun)|biography|life|life story|life history +hagiolatry|1 +(noun)|hierolatry|worship of saints|worship +hagiologist|1 +(noun)|hagiographer|hagiographist|biographer +hagiology|1 +(noun)|literary composition|literary work +hagridden|1 +(adj)|hag-ridden|tormented|troubled +hahn|1 +(noun)|Hahn|Otto Hahn|chemist +hahnium|1 +(noun)|unnilquintium|unnilpentium|Unp|element 105|atomic number 105|chemical element|element +haick|1 +(noun)|haik|garment +haida|2 +(noun)|Haida|Indian|North American Indian|American Indian|Red Indian +(noun)|Haida|Na-Dene +haifa|1 +(noun)|Haifa|city|metropolis|urban center|port +haik|1 +(noun)|haick|garment +haiku|1 +(noun)|poem|verse form +hail|7 +(noun)|precipitation|downfall +(noun)|greeting|salutation +(verb)|acclaim|herald|applaud +(verb)|come|be +(verb)|call|send for +(verb)|herald|greet|recognize|recognise +(verb)|precipitate|come down|fall +hail-fellow|1 +(adj)|comradely|hail-fellow-well-met|friendly +hail-fellow-well-met|1 +(adj)|comradely|hail-fellow|friendly +hail mary|1 +(noun)|Ave Maria|Hail Mary|prayer +haile selassie|1 +(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|Emperor +hailstone|1 +(noun)|ice|water ice +hailstorm|1 +(noun)|storm|violent storm +haiphong|1 +(noun)|Haiphong|city|metropolis|urban center|port +hair|6 +(noun)|body covering +(noun)|hair's-breadth|hairsbreadth|whisker|small indefinite quantity|small indefinite amount +(noun)|fuzz|tomentum|plant process|enation +(noun)|pilus|filament|filum +(noun)|haircloth|fabric|cloth|material|textile +(noun)|process|outgrowth|appendage +hair's-breadth|1 +(noun)|hairsbreadth|hair|whisker|small indefinite quantity|small indefinite amount +hair-raiser|1 +(noun)|chiller|excitation|excitement +hair-raising|1 +(adj)|bloodcurdling|nightmarish|alarming +hair-shirt|1 +(adj)|hair-shirted|shirt +hair-shirted|1 +(adj)|hair-shirt|shirt +hair-tailed mole|1 +(noun)|brewer's mole|Parascalops breweri|mole +hair-trigger|1 +(adj)|responsive +hair ball|2 +(noun)|hairball|trichobezoar|tangle +(noun)| +hair care|2 +(noun)|haircare|hairdressing|care|attention|aid|tending +(noun)| +hair cell|1 +(noun)|epithelial cell +hair coloring|3 +(noun)|hair dye|dye|dyestuff +(noun)|coloration|colouration +(noun)|coloring|colouring +hair curler|1 +(noun)|curler|roller|crimper|mechanical device +hair drier|1 +(noun)|hand blower|blow dryer|blow drier|hair dryer|blower|dryer|drier +hair dryer|1 +(noun)|hand blower|blow dryer|blow drier|hair drier|blower|dryer|drier +hair dye|1 +(noun)|hair coloring|dye|dyestuff +hair follicle|1 +(noun)|follicle +hair gel|1 +(noun)|mousse|hair mousse|toiletry|toilet article|toiletries +hair grass|1 +(noun)|needle spike rush|needle rush|slender spike rush|Eleocharis acicularis|spike rush +hair grease|1 +(noun)|hairdressing|hair tonic|hair oil|toiletry|toilet article|toiletries +hair mousse|1 +(noun)|mousse|hair gel|toiletry|toilet article|toiletries +hair of the dog|1 +(noun)|drink +hair oil|1 +(noun)|hairdressing|hair tonic|hair grease|toiletry|toilet article|toiletries +hair seal|1 +(noun)|earless seal|true seal|seal +hair shirt|1 +(noun)|shirt +hair slide|1 +(noun)|clip +hair space|1 +(noun)|quad|space +hair spray|1 +(noun)|toiletry|toilet article|toiletries +hair stroke|1 +(noun)|hairline +hair style|1 +(noun)|hairdo|coiffure|hair +hair tonic|1 +(noun)|hairdressing|hair oil|hair grease|toiletry|toilet article|toiletries +hair trigger|1 +(noun)|gun trigger|trigger +hairball|1 +(noun)|hair ball|trichobezoar|tangle +hairbrush|1 +(noun)|brush +haircare|1 +(noun)|hair care|hairdressing|care|attention|aid|tending +haircloth|1 +(noun)|hair|fabric|cloth|material|textile +haircut|2 +(noun)|hairdo|hair style|coiffure +(noun)|cut|cutting|cutting off +hairdo|1 +(noun)|hair style|coiffure|hair +hairdresser|1 +(noun)|hairstylist|stylist|styler|craftsman|artisan|journeyman|artificer +hairdressing|2 +(noun)|hair tonic|hair oil|hair grease|toiletry|toilet article|toiletries +(noun)|hair care|haircare|care|attention|aid|tending +hairgrip|1 +(noun)|bobby pin|grip|hairpin +hairiness|1 +(noun)|appearance|visual aspect +hairless|1 +(adj)|hairless |bald|bald-headed|bald-pated|balding|beardless|smooth-faced|depilatory|depilous|glabrescent|glabrous|tonsured|nonhairy +hairlessness|2 +(noun)|depilation|condition|status +(noun)|appearance|visual aspect +hairlike|1 +(adj)|capillary|thin +hairline|2 +(noun)|line +(noun)|boundary|bound|bounds +hairline fracture|1 +(noun)|capillary fracture|fracture|break +hairnet|1 +(noun)|net|network|mesh|meshing|meshwork +hairpiece|1 +(noun)|false hair|postiche|attire|garb|dress +hairpin|1 +(noun)|pin +hairpin bend|1 +(noun)|bend|curve +hairsbreadth|1 +(noun)|hair's-breadth|hair|whisker|small indefinite quantity|small indefinite amount +hairsplitter|1 +(noun)|disputant|controversialist|eristic +hairsplitting|2 +(adj)|finespun|precise +(noun)|word-splitting|differentiation|distinction +hairspring|1 +(noun)|spiral spring +hairstreak|1 +(noun)|hairstreak butterfly|lycaenid|lycaenid butterfly +hairstreak butterfly|1 +(noun)|hairstreak|lycaenid|lycaenid butterfly +hairstylist|1 +(noun)|hairdresser|stylist|styler|craftsman|artisan|journeyman|artificer +hairtail|1 +(noun)|cutlassfish|frost fish|percoid fish|percoid|percoidean +hairweaving|1 +(noun)|hair care|haircare|hairdressing +hairy|2 +(adj)|hairy |hirsute|comate|comose|comal|downy|pubescent|puberulent|sericeous|floccose|furred|furry|fuzzed|fuzzy|hispid|lanate|woolly|long-haired|pappose|pilous|pilose|pilary|shock-headed|short-haired|tomentose|tomentous|wire-haired|wooly|woolly|canescent|hoary|furlike +(adj)|alarming +hairy-legged vampire bat|1 +(noun)|Diphylla ecaudata|vampire bat|true vampire bat +hairy darling pea|1 +(noun)|Swainsona greyana|Swainsona grandiflora|darling pea|poison bush +hairy finger grass|1 +(noun)|large crabgrass|Digitaria sanguinalis|crabgrass|crab grass|finger grass +hairy golden aster|1 +(noun)|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower|wild flower +hairy honeysuckle|1 +(noun)|Lonicera hirsuta|honeysuckle +hairy lip fern|1 +(noun)|wooly lip fern|Cheilanthes lanosa|lip fern|lipfern +hairy root|1 +(noun)|crown gall +hairy spurge|1 +(noun)|Euphorbia hirsuta|spurge +hairy tare|1 +(noun)|hairy vetch|Vicia villosa|tare +hairy tongue|1 +(noun)|furry tongue|black tongue|side effect +hairy vetch|1 +(noun)|hairy tare|Vicia villosa|tare +hairy willowherb|1 +(noun)|codlins-and-cream|Epilobium hirsutum|willowherb +hairy wood mint|1 +(noun)|Blephilia hirsuta|wood mint +haiti|2 +(noun)|Haiti|Republic of Haiti|country|state|land +(noun)|Hispaniola|Haiti|Hayti|island +haitian|2 +(adj)|Haitian|country|state|land +(noun)|Haitian|West Indian +haitian capital|1 +(noun)|Port-au-Prince|Haitian capital|national capital +haitian centime|1 +(noun)|Haitian centime|centime +haitian creole|1 +(noun)|Haitian Creole|creole|Romance|Romance language|Latinian language +haitian monetary unit|1 +(noun)|Haitian monetary unit|monetary unit +haj|1 +(noun)|hajj|hadj|pillar of Islam|pilgrimage|pilgrim's journey +haji|1 +(noun)|hajji|hadji|pilgrim +hajj|1 +(noun)|haj|hadj|pillar of Islam|pilgrimage|pilgrim's journey +hajji|1 +(noun)|hadji|haji|pilgrim +hake|2 +(noun)|fish +(noun)|gadoid|gadoid fish +hakea|1 +(noun)|Hakea|genus Hakea|dicot genus|magnoliopsid genus +hakea laurina|1 +(noun)|cushion flower|pincushion hakea|Hakea laurina|shrub|bush +hakea leucoptera|1 +(noun)|needlewood|needle-wood|needle wood|Hakea leucoptera|shrub|bush +hakea lissosperma|1 +(noun)|needlebush|needle-bush|needle bush|Hakea lissosperma|shrub|bush +hakeem|1 +(noun)|hakim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|doctor|doc|physician|MD|Dr.|medico +hakenkreuz|1 +(noun)|swastika|Hakenkreuz|emblem|allegory|tetraskelion|tetraskele +hakham|1 +(noun)|Hakham|title|title of respect|sage +hakim|2 +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|ruler|swayer +(noun)|hakeem|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|doctor|doc|physician|MD|Dr.|medico +hakka|1 +(noun)|Hakka|Hakka dialect|Chinese +hakka dialect|1 +(noun)|Hakka|Hakka dialect|Chinese +halacha|1 +(noun)|Halakah|Halaka|Halacha|Talmudic literature +halaka|1 +(noun)|Halakah|Halaka|Halacha|Talmudic literature +halakah|1 +(noun)|Halakah|Halaka|Halacha|Talmudic literature +halal|3 +(adj)|proper +(adj)|clean +(noun)|meat +halberd|1 +(noun)|pike +halberdier|1 +(noun)|guard +halchidhoma|1 +(noun)|Halchidhoma|Hokan|Hoka +halcion|1 +(noun)|triazolam|Halcion|benzodiazepine +halcyon|5 +(adj)|peaceful +(adj)|golden|prosperous|happy +(noun)|Alcyone|Halcyon|mythical being +(noun)|Halcyon|genus Halcyon|bird genus +(noun)|mythical being +haldane|4 +(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist +(noun)|Haldane|John Haldane|John Scott Haldane|physiologist +(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer|author +(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman|solon|national leader +haldea|1 +(noun)|Haldea|genus Haldea|reptile genus +haldea striatula|1 +(noun)|eastern ground snake|Potamophis striatula|Haldea striatula|colubrid snake|colubrid +haldol|1 +(noun)|haloperidol|Haldol|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +hale|6 +(adj)|whole|healthy +(noun)|Hale|Nathan Hale|American Revolutionary leader +(noun)|Hale|George Ellery Hale|astronomer|uranologist|stargazer +(noun)|Hale|Edward Everett Hale|writer|author +(verb)|coerce|squeeze|pressure|force|compel|oblige|obligate +(verb)|haul|cart|drag|pull|draw|force +haleakala national park|1 +(noun)|Haleakala National Park|national park +haleness|1 +(noun)|wholeness|good health|healthiness +halenia|1 +(noun)|Halenia|genus Halenia|dicot genus|magnoliopsid genus +haler|2 +(noun)|heller|Slovakian monetary unit +(noun)|heller|Czech monetary unit +halesia|1 +(noun)|Halesia|genus Halesia|dicot genus|magnoliopsid genus +halesia carolina|1 +(noun)|silver-bell tree|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell +halesia tetraptera|1 +(noun)|silver-bell tree|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell +halevy|1 +(noun)|Halevy|Fromental Halevy|Jacques Francois Fromental Elie Halevy|composer +haley|2 +(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star +(noun)|Haley|Alex Haley|writer|author +half|5 +(adj)|fractional +(adj)|incomplete |uncomplete +(adj)|half +(noun)|one-half|common fraction|simple fraction +(noun)|playing period|period of play|play +half-and-half|2 +(adj)|equal +(noun)|dairy product +half-and-half dressing|1 +(noun)|dressing|salad dressing +half-baked|2 +(adj)|crazy|screwball|softheaded|impractical +(adj)|underdone|raw +half-blooded|1 +(adj)|half-bred|half-breed|crossbred +half-bound|1 +(adj)|bound +half-bred|1 +(adj)|half-blooded|half-breed|crossbred +half-breed|2 +(adj)|half-blooded|half-bred|crossbred +(noun)|breed|half-caste +half-brother|1 +(noun)|stepbrother|brother|blood brother +half-caste|1 +(noun)|mixed-blood +half-century|1 +(noun)|time period|period of time|period +half-clothed|1 +(adj)|scantily clad|underclothed|unclothed +half-cock|1 +(noun)|confusion|mental confusion|confusedness|disarray +half-crazed|1 +(adj)|crazed|deranged|insane +half-free morel|1 +(noun)|Morchella semilibera|cow's head|morel +half-hardy|1 +(adj)|delicate +half-holiday|1 +(noun)|holiday +half-hour|1 +(noun)|30 minutes|time unit|unit of time +half-hourly|1 +(adj)|time unit|unit of time +half-intensity|1 +(noun)|intensity|strength|intensity level +half-length|3 +(adj)|short +(adj)|abridged +(noun)|portrait|portrayal +half-life|2 +(noun)|half life|time period|period of time|period +(noun)| +half-light|1 +(noun)|light|visible light|visible radiation +half-mast|1 +(noun)|position|place +half-moon|2 +(noun)|lunula|lunule|area|region +(noun)|phase of the moon +half-pay|1 +(noun)|wage|pay|earnings|remuneration|salary +half-pint|1 +(noun)|runt|shrimp|peewee|small person +half-relief|1 +(noun)|mezzo-relievo|mezzo-rilievo|relief|relievo|rilievo|embossment|sculptural relief +half-seas-over|1 +(adj)|intoxicated |drunk|inebriated +half-size|1 +(adj)|small +half-slip|1 +(noun)|petticoat|underskirt|undergarment +half-term|1 +(noun)|vacation|holiday +half-timber|1 +(adj)|half-timbered|timbered +half-timbered|1 +(adj)|half-timber|timbered +half-time|2 +(adj)|part-time +(adv)|part-time +half-track|1 +(adj)|half-tracked|tracked +half-tracked|1 +(adj)|half-track|tracked +half-truth|1 +(noun)|misrepresentation|deceit|deception +half-wit|2 +(noun)|idiot|imbecile|cretin|moron|changeling|retard|simpleton|simple +(noun)|dimwit|nitwit|doofus|simpleton|simple +half-witted|2 +(adj)|dim-witted|simple|simple-minded|retarded +(adj)|feebleminded|slow-witted|unintelligent |stupid +half a dozen|2 +(adj)|six|6|vi|half dozen|cardinal +(noun)|six|6|VI|sixer|sise|Captain Hicks|sextet|sestet|sextuplet|hexad|digit|figure +half binding|1 +(noun)|binding|book binding|cover|back +half blood|1 +(noun)|sibling|sib +half boot|1 +(noun)|buskin|chukka boot|combat boot|desert boot|top boot|boot +half cross stitch|1 +(noun)|cross-stitch +half crown|1 +(noun)|coin +half dollar|1 +(noun)|fifty-cent piece|coin +half door|1 +(noun)|Dutch door|exterior door|outside door +half dozen|1 +(adj)|six|6|vi|half a dozen|cardinal +half eagle|1 +(noun)|coin +half gainer|1 +(noun)|dive|diving +half hatchet|1 +(noun)|hatchet +half hitch|1 +(noun)|knot +half life|2 +(noun)|half-life|time period|period of time|period +(noun)| +half mask|1 +(noun)|domino|eye mask|mask +half mile|1 +(noun)|880 yards|linear unit +half nelson|1 +(noun)|wrestling hold +half note|1 +(noun)|minim|note|musical note|tone +half page|1 +(noun)|page +half rest|1 +(noun)|rest +half sister|1 +(noun)|stepsister|sister|sis +half snipe|1 +(noun)|jacksnipe|Limnocryptes minima|snipe +half sole|1 +(noun)|sole +half step|1 +(noun)|semitone|interval|musical interval +half title|1 +(noun)|bastard title|page +half track|2 +(noun)|tracked vehicle|military vehicle +(noun)|track|caterpillar track|caterpillar tread +half volley|1 +(noun)|return +halfback|2 +(noun)|running back +(noun)|back +halfbeak|1 +(noun)|teleost fish|teleost|teleostan +halfhearted|1 +(adj)|lukewarm|unenthusiastic +halfpenny|1 +(noun)|ha'penny|coin +halfpennyworth|1 +(noun)|ha'p'orth|worth +halftime|1 +(noun)|pause|intermission|break|interruption|suspension +halftone|2 +(noun)|engraving +(noun)|halftone engraving|photoengraving|engraving +halftone engraving|1 +(noun)|halftone|photoengraving|engraving +halfway|4 +(adj)|center|middle|midway|central +(adj)|intermediate +(adj)|fractional +(adv)|midway +haliaeetus|1 +(noun)|Haliaeetus|genus Haliaeetus|bird genus +haliaeetus leucocephalus|1 +(noun)|bald eagle|American eagle|Haliaeetus leucocephalus|eagle|bird of Jove +haliaeetus leucorhyphus|1 +(noun)|fishing eagle|Haliaeetus leucorhyphus|sea eagle +haliaeetus pelagicus|1 +(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle +haliatus albicilla|1 +(noun)|ern|erne|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle +halibut|2 +(noun)|flatfish +(noun)|holibut|flatfish +halibut-liver oil|1 +(noun)|animal oil +halicoeres|1 +(noun)|Halicoeres|genus Halicoeres|fish genus +halicoeres bivittatus|1 +(noun)|slippery dick|Halicoeres bivittatus|wrasse +halicoeres radiatus|1 +(noun)|puddingwife|pudding-wife|Halicoeres radiatus|wrasse +halictidae|1 +(noun)|Halictidae|family Halictidae|arthropod family +halide|1 +(noun)|salt +halifax|1 +(noun)|Halifax|provincial capital +halimodendron|1 +(noun)|Halimodendron|genus Halimodendron|rosid dicot genus +halimodendron argenteum|1 +(noun)|salt tree|Halimodendron halodendron|Halimodendron argenteum|shrub|bush +halimodendron halodendron|1 +(noun)|salt tree|Halimodendron halodendron|Halimodendron argenteum|shrub|bush +haliotidae|1 +(noun)|Haliotidae|family Haliotidae|mollusk family +haliotis|1 +(noun)|Haliotis|genus Haliotis|mollusk genus +haliotis tuberculata|1 +(noun)|ormer|sea-ear|Haliotis tuberculata|abalone|ear-shell +halite|1 +(noun)|rock salt|sodium chloride|common salt|mineral +halitosis|1 +(noun)|halitus|exhalation +halitus|1 +(noun)|exhalation|breath +hall|13 +(noun)|hallway|corridor +(noun)|anteroom|antechamber|entrance hall|foyer|lobby|vestibule|room +(noun)|room +(noun)|dormitory|dorm|residence hall|student residence|living quarters|quarters|building|edifice +(noun)|manor hall|room +(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer|author +(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist +(noun)|Hall|Charles Martin Hall|chemist +(noun)|Hall|Charles Francis Hall|explorer|adventurer +(noun)|Hall|Asaph Hall|astronomer|uranologist|stargazer +(noun)|mansion|mansion house|manse|residence|house +(noun)|building|edifice +(noun)|building|edifice +hall's honeysuckle|1 +(noun)|Hall's honeysuckle|Lonicera japonica halliana|honeysuckle +hall of fame|1 +(noun)|Hall of Fame|building|edifice +hall of residence|1 +(noun)|dormitory|dorm|residence hall|hall|student residence +hall pass|1 +(noun)|pass|laissez passer +hall porter|1 +(noun)|doorkeeper|doorman|door guard|porter|gatekeeper|ostiary|guard +hallah|1 +(noun)|challah|bread|breadstuff|staff of life +halle|1 +(noun)|Halle|Halle-an-der-Saale|city|metropolis|urban center +halle-an-der-saale|1 +(noun)|Halle|Halle-an-der-Saale|city|metropolis|urban center +hallel|1 +(noun)|Hallel|chant +hallelujah|1 +(noun)|praise +halley|1 +(noun)|Halley|Edmond Halley|Edmund Halley|astronomer|uranologist|stargazer +halliard|1 +(noun)|halyard|rope +hallmark|2 +(noun)|trademark|earmark|stylemark|characteristic +(noun)|authentication|assay-mark|marker|marking|mark +halloo|3 +(noun)|cry|outcry|call|yell|shout|vociferation +(verb)|prod|incite|egg on +(verb)|shout|shout out|cry|call|yell|scream|holler|hollo|squall +hallow|1 +(verb)|consecrate|bless|sanctify|declare +hallowe'en|1 +(noun)|Halloween|Hallowe'en|Allhallows Eve|day +hallowed|1 +(adj)|sacred|holy +halloween|1 +(noun)|Halloween|Hallowe'en|Allhallows Eve|day +hallowmas|1 +(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation +hallowmass|1 +(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation +hallstand|1 +(noun)|furniture|piece of furniture|article of furniture +hallucinate|1 +(verb)|perceive|comprehend +hallucinating|1 +(adj)|delirious|ill |sick +hallucination|3 +(noun)|delusion|psychotic belief +(noun)|delusion|misconception +(noun)|object +hallucinatory|1 +(adj)|unreal +hallucinogen|1 +(noun)|hallucinogenic drug|psychedelic drug|psychodelic drug|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +hallucinogenic|1 +(adj)|psychoactive |psychotropic +hallucinogenic drug|1 +(noun)|hallucinogen|psychedelic drug|psychodelic drug|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +hallucinosis|1 +(noun)|psychological state|mental state +hallux|1 +(noun)|big toe|great toe|toe +hallway|1 +(noun)|hall|corridor +halm|1 +(noun)|haulm|stalk|stem +halma|1 +(noun)|board game +halo|3 +(noun)|aura|aureole|nimbus|glory|gloriole|light|lightness +(noun)|ring|annulus|anulus|doughnut|anchor ring|toroid +(noun)|atmospheric phenomenon +halo blight|2 +(noun)|blight +(noun)|halo spot|bean blight|blight +halo spot|1 +(noun)|halo blight|bean blight|blight +haloalkane|1 +(noun)|alkyl halide|organic compound +halobacter|1 +(noun)|halobacteria|halobacterium|halophile|halophil +halobacteria|1 +(noun)|halobacterium|halobacter|halophile|halophil +halobacterium|1 +(noun)|halobacteria|halobacter|halophile|halophil +halocarbon|1 +(noun)|organic compound +halocarpus|1 +(noun)|Halocarpus|genus Halocarpus|gymnosperm genus +halocarpus bidwilli|1 +(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer|coniferous tree +haloform|1 +(noun)|alkyl halide|haloalkane +halogen|1 +(noun)|group|grouping +halogeton|1 +(noun)|Halogeton glomeratus|herb|herbaceous plant +halogeton glomeratus|1 +(noun)|halogeton|Halogeton glomeratus|herb|herbaceous plant +halogeton souda|1 +(noun)|barilla|Halogeton souda|herb|herbaceous plant +halon|1 +(noun)|organic compound|pollutant +haloperidol|1 +(noun)|Haldol|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +halophil|1 +(noun)|halophile|archaebacteria|archaebacterium|archaeobacteria|archeobacteria +halophile|1 +(noun)|halophil|archaebacteria|archaebacterium|archaeobacteria|archeobacteria +halophyte|1 +(noun)|vascular plant|tracheophyte +haloragaceae|1 +(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family|magnoliopsid family +haloragidaceae|1 +(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family|magnoliopsid family +halothane|1 +(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +halt|8 +(adj)|crippled|halting|lame|game|unfit +(noun)|arrest|check|hitch|stay|stop|stoppage|inaction|inactivity|inactiveness +(noun)|stop|ending|conclusion|finish +(noun)|freeze|pause +(verb)|hold|arrest|stop +(verb)|stop +(verb)|stop|block|kibosh|prevent|forestall|foreclose|preclude|forbid +(verb)|stem|stanch|staunch|check +halter|6 +(noun)|hackamore|headgear +(noun)|hangman's rope|hangman's halter|hemp|hempen necktie|rope +(noun)|top +(noun)|haltere|balancer|wing +(verb)|hang|string up +(verb)|hamper|cramp|strangle|restrict|restrain|trammel|limit|bound|confine|throttle +haltere|1 +(noun)|halter|balancer|wing +halting|2 +(adj)|crippled|halt|lame|game|unfit +(adj)|broken +haltingly|1 +(adv)|not fluently +halve|1 +(verb)|divide|fraction +halyard|1 +(noun)|halliard|rope +ham|5 +(noun)|jambon|gammon|cut of pork +(noun)|Ham|man|adult male +(noun)|radio operator +(noun)|ham actor|actor|histrion|player|thespian|role player +(verb)|overact|ham it up|overplay|act|play|roleplay|playact +ham-fisted|1 +(adj)|bumbling|bungling|butterfingered|ham-handed|handless|heavy-handed|left-handed|maladroit +ham-handed|1 +(adj)|bumbling|bungling|butterfingered|ham-fisted|handless|heavy-handed|left-handed|maladroit +ham actor|1 +(noun)|ham|actor|histrion|player|thespian|role player +ham and eggs|1 +(noun)|dish +ham hock|1 +(noun)|leg +ham it up|1 +(verb)|overact|ham|overplay|act|play|roleplay|playact +ham sandwich|1 +(noun)|sandwich +hamadryad|2 +(noun)|dryad|wood nymph +(noun)|king cobra|Ophiophagus hannan|Naja hannah|cobra +hamamelid dicot family|1 +(noun)|dicot family|magnoliopsid family +hamamelid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +hamamelidaceae|1 +(noun)|Hamamelidaceae|family Hamamelidaceae|witch-hazel family|hamamelid dicot family +hamamelidae|1 +(noun)|Hamamelidae|subclass Hamamelidae|class +hamamelidanthum|1 +(noun)|Hamamelidanthum|genus Hamamelidanthum|dicot genus|magnoliopsid genus +hamamelidoxylon|1 +(noun)|Hamamelidoxylon|genus Hamamelidoxylon|dicot genus|magnoliopsid genus +hamamelis|1 +(noun)|Hamamelis|genus Hamamelis|plant genus +hamamelis vernalis|1 +(noun)|vernal witch hazel|Hamamelis vernalis|witch hazel|wych hazel +hamamelis virginiana|1 +(noun)|Virginian witch hazel|Hamamelis virginiana|witch hazel|wych hazel +hamamelites|1 +(noun)|Hamamelites|genus Hamamelites|dicot genus|magnoliopsid genus +haman|1 +(noun)|Haman|minister|government minister +hamartia|1 +(noun)|tragic flaw|flaw +hamartoma|1 +(noun)|growth +hamas|1 +(noun)|Hamas|Islamic Resistance Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +hamate|1 +(noun)|hamate bone|unciform bone|os hamatum|carpal bone|carpal|wrist bone +hamate bone|1 +(noun)|hamate|unciform bone|os hamatum|carpal bone|carpal|wrist bone +hamburg|1 +(noun)|Hamburg|city|metropolis|urban center +hamburg parsley|1 +(noun)|Hamburg parsley|turnip-rooted parsley|Petroselinum crispum tuberosum|parsley|Petroselinum crispum +hamburger|2 +(noun)|beefburger|sandwich +(noun)|ground beef|beef|boeuf +hamburger bun|1 +(noun)|hamburger roll|bun|roll +hamburger roll|1 +(noun)|hamburger bun|bun|roll +hamburger steak|1 +(noun)|chopped steak|chop steak|chopsteak|beef patty|beefsteak +hame|1 +(noun)|stable gear|saddlery|tack +hamelia|1 +(noun)|shrub|bush +hamelia erecta|1 +(noun)|scarlet bush|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia +hamelia patens|1 +(noun)|scarlet bush|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia +hamilton|6 +(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician +(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady|noblewoman|peeress +(noun)|Hamilton|Alice Hamilton|toxicologist +(noun)|Hamilton|Alexander Hamilton|statesman|solon|national leader +(noun)|Hamilton|city|metropolis|urban center|port +(noun)|Hamilton|city|metropolis|urban center +haminoea|1 +(noun)|Haminoea|genus Haminoea|mollusk genus +hamitic|1 +(noun)|Hamitic|Hamitic language|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +hamitic language|1 +(noun)|Hamitic|Hamitic language|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +hamito-semitic|1 +(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language|tongue +hamlet|3 +(noun)|crossroads|community +(noun)|Hamlet|fictional character|fictitious character|character +(noun)|village|settlement +hammarskjold|1 +(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat|diplomatist +hammer|10 +(noun)|cock|striker +(noun)|hand tool +(noun)|hammer throw|field event +(noun)|malleus|auditory ossicle +(noun)|sports equipment|sporting goods +(noun)|striker +(noun)|power hammer|power tool +(noun)|pound|hammering|pounding|blow +(verb)|beat +(verb)|forge|beat +hammer and sickle|1 +(noun)|emblem|allegory +hammer in|1 +(verb)|drill in|ram down|beat in|drill +hammer nose|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|copper nose|rhinopathy +hammer out|1 +(verb)|thrash out|hash out|discuss|talk over +hammer throw|1 +(noun)|hammer|field event +hammered|1 +(adj)|beat +hammerhead|3 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +(noun)|head +(noun)|hammerhead shark|shark +hammerhead shark|1 +(noun)|hammerhead|shark +hammering|1 +(noun)|hammer|pound|pounding|blow +hammerlock|1 +(noun)|lock +hammerstein|1 +(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist +hammertoe|1 +(noun)|toe +hammett|1 +(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer|author +hamming|1 +(noun)|overacting|acting|playing|playacting|performing +hammock|2 +(noun)|knoll|mound|hillock|hummock|hill +(noun)|sack|bed +hammond organ|1 +(noun)|electric organ|electronic organ|Hammond organ|organ|electronic instrument +hammurabi|1 +(noun)|Hammurabi|Hammurapi|king|male monarch +hammurapi|1 +(noun)|Hammurabi|Hammurapi|king|male monarch +hammy|1 +(adj)|dramatic +hamper|4 +(noun)|shackle|bond|trammel|trammels|restraint|constraint +(noun)|basket|handbasket +(verb)|halter|cramp|strangle|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|handicap|hinder|disadvantage|disfavor|disfavour +hampshire|2 +(noun)|Hampshire|county +(noun)|Hampshire|Hampshire down|domestic sheep|Ovis aries +hampshire down|1 +(noun)|Hampshire|Hampshire down|domestic sheep|Ovis aries +hampton|1 +(noun)|Hampton|Lionel Hampton|jazz musician|jazzman +hampton roads|2 +(noun)|Hampton Roads|channel +(noun)|Hampton Roads|naval battle +hamster|1 +(noun)|rodent|gnawer|gnawing animal +hamstring|3 +(noun)|hamstring tendon|tendon|sinew +(verb)|torment|rag|bedevil|crucify|dun|frustrate +(verb)|cripple|lame +hamstring tendon|1 +(noun)|hamstring|tendon|sinew +hamsun|1 +(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer|author +han|1 +(noun)|Han|Han dynasty|dynasty +han dynasty|1 +(noun)|Han|Han dynasty|dynasty +hancock|1 +(noun)|Hancock|John Hancock|American Revolutionary leader +hand|16 +(noun)|manus|mitt|paw|extremity +(noun)|hired hand|hired man|laborer|manual laborer|labourer|jack +(noun)|handwriting|script|writing +(noun)|ability|power +(noun)|side +(noun)|deal|collection|aggregation|accumulation|assemblage +(noun)|side +(noun)|pointer +(noun)|handbreadth|handsbreadth +(noun)|sailor|crewman +(noun)|bridge player|card player +(noun)|applause|hand clapping|clapping +(noun)|forepaw +(noun)|helping hand|aid|assist|assistance|help +(verb)|pass|reach|pass on|turn over|give|transfer|hand out|hand down|hand over +(verb)|lead|take|direct|conduct|guide +hand-build|2 +(verb)|handbuild|coil|shape|form|work|mold|mould|forge +(verb)| +hand-crafted|1 +(adj)|handmade |camp-made|hand-loomed|handwoven|handsewn|handstitched|overhand|oversewn +hand-down|1 +(adj)|hand-me-down|old +hand-held|2 +(adj)|handheld +(adj)| +hand-held computer|1 +(noun)|hand-held microcomputer|portable computer +hand-held microcomputer|1 +(noun)|hand-held computer|portable computer +hand-hewn|1 +(adj)|hewn|cut +hand-loomed|1 +(adj)|handwoven|handmade |hand-crafted +hand-me-down|2 +(adj)|hand-down|old +(noun)|garment +hand-operated|1 +(adj)|non-automatic|manual +hand-pick|1 +(verb)|pick +hand-picked|1 +(adj)|selected +hand-schuller-christian disease|1 +(noun)|Hand-Schuller-Christian disease|Schuller-Christian disease|histiocytosis +hand-to-hand|1 +(adj)|close +hand-to-hand struggle|1 +(noun)|wrestle|wrestling|grapple|grappling|struggle +hand-to-mouth|1 +(adj)|meager |meagre|meagerly +hand-wash|2 +(verb)|handwash|wash|launder +(verb)| +hand and glove|1 +(adv)|hand in glove|cooperatively +hand ax|1 +(noun)|hand axe|edge tool +hand axe|1 +(noun)|hand ax|edge tool +hand blower|1 +(noun)|blow dryer|blow drier|hair dryer|hair drier|blower|dryer|drier +hand brake|1 +(noun)|emergency|emergency brake|parking brake|brake +hand by a hair|1 +(verb)|hang by a thread|depend +hand calculator|1 +(noun)|pocket calculator|calculator|calculating machine +hand cheese|1 +(noun)|cheese +hand clapping|1 +(noun)|applause|clapping|approval|commendation +hand cream|1 +(noun)|cream|ointment|emollient +hand down|1 +(verb)|pass on +hand drill|1 +(noun)|handheld drill|drill +hand dye|1 +(verb)|dye +hand fern|1 +(noun)|Doryopteris pedata|fern +hand glass|2 +(noun)|hand mirror|mirror +(noun)|simple microscope|magnifying glass|light microscope +hand grenade|1 +(noun)|grenade +hand in glove|1 +(adv)|hand and glove|cooperatively +hand job|1 +(noun)|jacking off|jerking off|wank|masturbation|onanism|self-abuse +hand line|2 +(noun)|handline|fishing line +(noun)| +hand lotion|1 +(noun)|lotion +hand luggage|1 +(noun)|baggage|luggage +hand mirror|1 +(noun)|hand glass|mirror +hand mower|1 +(noun)|lawn mower|mower +hand organ|1 +(noun)|barrel organ|grind organ|hurdy gurdy|street organ|musical instrument|instrument +hand out|1 +(verb)|distribute|give out|give|gift|present +hand over|1 +(verb)|fork over|fork out|fork up|turn in|get in|deliver|render|pass|hand|reach|pass on|turn over|give +hand pump|1 +(noun)|pump +hand puppet|1 +(noun)|glove puppet|glove doll|puppet +hand shovel|1 +(noun)|shovel|hand tool +hand throttle|1 +(noun)|lever +hand tool|1 +(noun)|tool +hand towel|1 +(noun)|face towel|towel +hand truck|1 +(noun)|truck|handcart|pushcart|cart|go-cart +hand wear|2 +(noun)|handwear|clothing|article of clothing|vesture|wear +(noun)| +handbag|1 +(noun)|bag|pocketbook|purse|container +handball|2 +(noun)|ball +(noun)|court game +handball court|1 +(noun)|court +handbarrow|1 +(noun)|framework|frame|framing +handbasin|1 +(noun)|washbasin|washbowl|lavabo|wash-hand basin|basin +handbasket|1 +(noun)|basket|container +handbell|1 +(noun)|chime|bell|gong +handbill|1 +(noun)|circular|bill|broadside|broadsheet|flier|flyer|throwaway|ad|advertisement|advertizement|advertising|advertizing|advert +handbook|1 +(noun)|enchiridion|vade mecum|reference book|reference|reference work|book of facts +handbow|1 +(noun)|bow +handbreadth|1 +(noun)|handsbreadth|linear unit +handbuild|1 +(verb)|hand-build|coil|shape|form|work|mold|mould|forge +handcar|1 +(noun)|car|railcar|railway car|railroad car +handcart|1 +(noun)|pushcart|cart|go-cart|wheeled vehicle +handclap|1 +(noun)|applause|hand clapping|clapping +handclasp|1 +(noun)|handshake|shake|handshaking|acknowledgment|acknowledgement +handcolour|1 +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +handcraft|2 +(noun)|handicraft|handiwork|handwork|work|piece of work +(verb)|craft +handcuff|2 +(noun)|handcuffs|cuffs|cuff|handlock|manacle|shackle|bond|hamper|trammel|trammels +(verb)|manacle|cuff|fetter|shackle +handcuffs|2 +(noun)|handcuff|cuffs|cuff|handlock|manacle|shackle|bond|hamper|trammel|trammels +(noun)|handcuff|cuffs|cuff|handlock|manacle|shackle|bond|hamper|trammel|trammels +handed|1 +(adj)|handed |two-handed|bimanual +handed-down|1 +(adj)|tralatitious|traditional +handedness|1 +(noun)|laterality|asymmetry|imbalance +handel|2 +(noun)|Handel|George Frederic Handel|Georg Friedrich Handel|composer +(noun)|Handel|music +handelian|1 +(adj)|Handelian|composer +handful|2 +(noun)|smattering|small indefinite quantity|small indefinite amount +(noun)|fistful|containerful +handgrip|1 +(noun)|handle|grip|hold|appendage +handgun|1 +(noun)|pistol|side arm|shooting iron|firearm|piece|small-arm +handheld|1 +(adj)|hand-held +handheld drill|1 +(noun)|hand drill|drill +handhold|1 +(noun)|appendage +handicap|6 +(noun)|disability|disablement|impairment|unfitness|poor shape|bad condition +(noun)|advantage|vantage +(noun)|hindrance|deterrent|impediment|balk|baulk|check|difficulty +(verb)|disable|invalid|incapacitate|injure|wound +(verb)|bias +(verb)|hinder|hamper|disadvantage|disfavor|disfavour +handicapped|1 +(adj)|disabled|incapacitated|unfit +handicapped person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +handicapper|1 +(noun)|odds-maker|gambler +handicraft|2 +(noun)|handcraft|handiwork|handwork|work|piece of work +(noun)|trade|craft|arts and crafts +handily|2 +(adv)|conveniently +(adv)|hands down +handiness|1 +(noun)|accessibility|availability|availableness|convenience +handing over|1 +(noun)|passage|delivery|bringing +handiwork|1 +(noun)|handicraft|handcraft|handwork|work|piece of work +handkerchief|1 +(noun)|hankie|hanky|hankey|piece of cloth|piece of material +handle|7 +(noun)|grip|handgrip|hold|appendage +(verb)|manage|deal|care|control|command +(verb)|treat|do by|interact +(verb)|cover|treat|plow|deal|address|broach|initiate +(verb)|palm|touch +(verb)|wield|manipulate +(verb)|manipulate|keep in line|control +handle-bars|2 +(noun)|mustachio|moustachio|mustache|moustache +(noun)|handlebar|bar +handle with kid gloves|1 +(verb)|treat|handle|do by +handlebar|1 +(noun)|bar +handled|1 +(adj)|handled +handleless|1 +(adj)|handleless +handler|3 +(noun)|animal trainer|trainer +(noun)|agent +(noun)|coach|manager|trainer +handless|2 +(adj)|handless +(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|heavy-handed|left-handed|maladroit +handline|1 +(noun)|hand line|fishing line +handling|3 +(noun)|manual labor|manual labour +(noun)|manipulation|touch|touching +(noun)|treatment|management|direction +handling charge|1 +(noun)|handling cost|cost +handling cost|1 +(noun)|handling charge|cost +handlock|1 +(noun)|handcuffs|handcuff|cuffs|cuff|manacle|shackle|bond|hamper|trammel|trammels +handloom|1 +(noun)|loom +handmade|1 +(adj)|handmade |hand-crafted|camp-made|hand-loomed|handwoven|handsewn|handstitched|overhand|oversewn +handmaid|2 +(noun)|handmaiden|servant|subordinateness|subsidiarity +(noun)|handmaiden|maid|maidservant|housemaid|amah +handmaiden|2 +(noun)|handmaid|servant|subordinateness|subsidiarity +(noun)|handmaid|maid|maidservant|housemaid|amah +handoff|1 +(noun)|football play +handout|2 +(noun)|press release|release|announcement|promulgation +(noun)|charity +handover|1 +(noun)|relinquishment|relinquishing +handrail|1 +(noun)|bannister|banister|balustrade|balusters|barrier +handrest|1 +(noun)|support +hands|16 +(noun)|custody|guardianship|keeping|safekeeping +(noun)|work force|workforce|manpower|men|force|personnel +(noun)|hand|manus|mitt|paw|extremity +(noun)|hired hand|hand|hired man|laborer|manual laborer|labourer|jack +(noun)|handwriting|hand|script|writing +(noun)|hand|ability|power +(noun)|hand|side +(noun)|hand|deal|collection|aggregation|accumulation|assemblage +(noun)|hand|side +(noun)|hand|pointer +(noun)|hand|handbreadth|handsbreadth +(noun)|hand|sailor|crewman +(noun)|bridge player|hand|card player +(noun)|hand|applause|hand clapping|clapping +(noun)|hand|forepaw +(noun)|hand|helping hand|aid|assist|assistance|help +hands-down|1 +(adj)|easy +hands-off|1 +(adj)|passive |inactive +hands-on|1 +(adj)|active +hands down|1 +(adv)|handily +handsaw|1 +(noun)|carpenter's saw|saw +handsaw fish|1 +(noun)|soft-finned fish|malacopterygian +handsbreadth|1 +(noun)|handbreadth|linear unit +handset|1 +(noun)|French telephone|telephone|phone|telephone set +handsewn|1 +(adj)|handstitched|handmade |hand-crafted +handshake|1 +(noun)|shake|handshaking|handclasp|acknowledgment|acknowledgement +handshaking|1 +(noun)|handshake|shake|handclasp|acknowledgment|acknowledgement +handsome|2 +(adj)|fine-looking|good-looking|better-looking|well-favored|well-favoured|beautiful +(adj)|big|bighearted|bounteous|bountiful|freehanded|giving|liberal|openhanded|generous +handsomeness|1 +(noun)|good looks|beauty +handspike|1 +(noun)|bar +handspring|1 +(noun)|acrobatic stunt|acrobatic feat +handstamp|2 +(noun)|rubber stamp|seal|stamp +(verb)|rubberstamp|stamp +handstand|1 +(noun)|gymnastic exercise +handstitched|1 +(adj)|handsewn|handmade |hand-crafted +handwash|1 +(verb)|hand-wash|wash|launder +handwear|1 +(noun)|hand wear|clothing|article of clothing|vesture|wear +handwheel|2 +(noun)|wheel +(noun)|control|controller +handwork|1 +(noun)|handicraft|handcraft|handiwork|work|piece of work +handwoven|1 +(adj)|hand-loomed|handmade |hand-crafted +handwrite|1 +(verb)|write +handwriting|2 +(noun)|hand|script|writing +(noun)|writing|committal to writing +handwriting expert|1 +(noun)|graphologist|specialist|specializer|specialiser +handwritten|1 +(adj)|written +handy|4 +(adj)|convenient|ready to hand|accessible +(adj)|convenient +(adj)|adroit +(noun)|Handy|W. C. Handy|William Christopher Handy|composer +handyman|1 +(noun)|jack of all trades|odd-job man|repairman|repairer|maintenance man|service man|fixer +hang|14 +(noun)|bent|knack|endowment|gift|talent|natural endowment +(noun)|fit +(noun)|gymnastic exercise +(verb)|hang up|fasten|fix|secure +(verb)|string up|execute|put to death +(verb)|drop +(verb)|fall|flow +(verb)|be +(verb)|attend|advert|pay heed|give ear|listen +(verb)|cling|grasp|hold on +(verb)|obstruct|blockade|block|hinder|stymie|stymy|embarrass +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|fasten|fix|secure +(verb)|decompose|rot|molder|moulder +hang-up|2 +(noun)|preoccupation +(noun)|hitch|rub|snag|obstacle|obstruction +hang around|1 +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|mess about|tarry|linger|lurk|mill about|mill around|be +hang back|1 +(verb)|drag|trail|get behind|drop behind|lag|dawdle|fall back|fall behind +hang by a thread|1 +(verb)|hand by a hair|depend +hang glide|1 +(verb)|soar|fly|aviate|pilot +hang glider|2 +(noun)|rider +(noun)|glider|sailplane +hang gliding|1 +(noun)|glide|gliding|sailplaning|soaring|sailing +hang in|1 +(verb)|persevere|persist|hang on|hold on|continue|uphold|carry on|bear on|preserve +hang on|3 +(verb)|append|tag on|tack on|tack|attach +(verb)|persevere|persist|hang in|hold on|continue|uphold|carry on|bear on|preserve +(verb)|hold the line|hold on|expect|look|await|wait +hang out|1 +(verb)|frequent|haunt +hang together|1 +(verb)|interdepend|connect|link|tie|link up +hang up|3 +(verb)|replace|put back +(verb)|hang|fasten|fix|secure +(verb)|cut short|break short|break off +hangar|1 +(noun)|airdock|repair shed|structure|construction +hangar queen|1 +(noun)|airplane|aeroplane|plane +hangbird|1 +(noun)|Baltimore oriole|Baltimore bird|firebird|Icterus galbula galbula|northern oriole|Icterus galbula +hangchow|1 +(noun)|Hangzhou|Hangchow|city|metropolis|urban center +hangdog|2 +(adj)|guilty|shamefaced|shamed|ashamed +(adj)|browbeaten|bullied|cowed|intimidated|afraid +hanger|2 +(noun)|worker +(noun)|support +hanger-on|1 +(noun)|tagalong|follower +hanging|3 +(noun)|wall hanging|decoration|ornament|ornamentation +(noun)|execution|executing|capital punishment|death penalty +(noun)|suspension|dangling|support|supporting +hanging chad|1 +(noun)|chad +hanging fly|1 +(noun)|mecopteran +hanging gardens of babylon|1 +(noun)|Hanging Gardens of Babylon|garden +hanging geranium|1 +(noun)|ivy geranium|ivy-leaved geranium|Pelargonium peltatum|geranium +hanging wall|1 +(noun)|wall +hangman|1 +(noun)|executioner|public executioner +hangman's halter|1 +(noun)|hangman's rope|halter|hemp|hempen necktie|rope +hangman's rope|1 +(noun)|hangman's halter|halter|hemp|hempen necktie|rope +hangnail|1 +(noun)|agnail|skin|tegument|cutis +hangout|1 +(noun)|haunt|resort|repair|stamping ground|area|country +hangover|3 +(noun)|katzenjammer|discomfort|uncomfortableness +(noun)|holdover|official|functionary +(noun)|holdover|survival +hangzhou|1 +(noun)|Hangzhou|Hangchow|city|metropolis|urban center +hangzhou bay|1 +(noun)|Hangzhou Bay|bay +hani|1 +(noun)|Hani|Akha|Loloish +hank|1 +(noun)|coil|spiral|volute|whorl|helix +hank aaron|1 +(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer|baseball player +hank panky|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +hank williams|1 +(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +hanker|1 +(verb)|long|yearn|desire|want +hankering|1 +(noun)|yen|longing|yearning +hankey|1 +(noun)|handkerchief|hankie|hanky|piece of cloth|piece of material +hankie|1 +(noun)|handkerchief|hanky|hankey|piece of cloth|piece of material +hanks|2 +(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor|histrion|player|thespian|role player +(noun)|hank|coil|spiral|volute|whorl|helix +hanky|1 +(noun)|handkerchief|hankie|hankey|piece of cloth|piece of material +hanky panky|1 +(noun)|trickery|hocus-pocus|slickness|jiggery-pokery|skulduggery|skullduggery|misrepresentation|deceit|deception +hannah arendt|1 +(noun)|Arendt|Hannah Arendt|historian|historiographer|philosopher +hannibal|2 +(noun)|Hannibal|general|full general|Carthaginian +(noun)|Hannibal|town +hannover|1 +(noun)|Hannover|Hanover|city|metropolis|urban center|port +hannukah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +hanoi|1 +(noun)|Hanoi|capital of Vietnam|national capital +hanover|2 +(noun)|Hannover|Hanover|city|metropolis|urban center|port +(noun)|Hanover|House of Hanover|Hanoverian line|dynasty|royalty|royal family|royal line|royal house +hanoverian|3 +(adj)|Hanoverian|dynasty|royalty|royal family|royal line|royal house +(noun)|Hanoverian|sovereign|crowned head|monarch +(noun)|Hanoverian|English person +hanoverian line|1 +(noun)|Hanover|House of Hanover|Hanoverian line|dynasty|royalty|royal family|royal line|royal house +hans adolf krebs|1 +(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist +hans albrecht bethe|1 +(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist +hans arp|1 +(noun)|Arp|Jean Arp|Hans Arp|artist|creative person|poet +hans bethe|1 +(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist +hans c. j. gram|1 +(noun)|Gram|Hans C. J. Gram|bacteriologist +hans christian andersen|1 +(noun)|Andersen|Hans Christian Andersen|writer|author +hans christian oersted|1 +(noun)|Oersted|Hans Christian Oersted|physicist +hans conrad julius reiter|1 +(noun)|Reiter|Hans Conrad Julius Reiter|bacteriologist +hans eysenck|1 +(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist +hans fischer|1 +(noun)|Fischer|Hans Fischer|chemist +hans geiger|1 +(noun)|Geiger|Hans Geiger|physicist +hans holbein|2 +(noun)|Holbein|Hans Holbein|Holbein the Younger|old master|engraver +(noun)|Holbein|Hans Holbein|Holbein the Elder|old master +hans jurgen eysenck|1 +(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist +hans zinsser|1 +(noun)|Zinsser|Hans Zinsser|bacteriologist +hansard|1 +(noun)|Hansard|minutes|proceedings|transactions +hanseatic league|1 +(noun)|Hanseatic League|confederation|confederacy|federation +hansen's disease|1 +(noun)|leprosy|Hansen's disease|infectious disease +hansom|1 +(noun)|hansom cab|carriage|equipage|rig +hansom cab|1 +(noun)|hansom|carriage|equipage|rig +hanukah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +hanukkah|1 +(noun)|Hanukkah|Hanukah|Hannukah|Chanukah|Chanukkah|Channukah|Channukkah|Festival of Lights|Feast of Lights|Feast of Dedication|Feast of the Dedication|Jewish holy day +hanuman|2 +(noun)|Hanuman|Hindu deity +(noun)|entellus|Presbytes entellus|Semnopithecus entellus|langur +hao|1 +(noun)|Vietnamese monetary unit +haoma|1 +(noun)|soma|Sarcostemma acidum|vine +hap|2 +(noun)|accident|fortuity|chance event +(verb)|happen|go on|pass off|occur|pass|fall out|come about|take place +hapax legomenon|1 +(noun)|nonce word|word +haphazard|3 +(adj)|hit-or-miss|random +(adj)|slapdash|slipshod|sloppy|careless +(adv)|haphazardly +haphazardly|2 +(adv)|randomly|indiscriminately|willy-nilly|arbitrarily|at random|every which way +(adv)|haphazard +haphazardness|1 +(noun)|randomness|stochasticity|noise|irregularity|unregularity +haphtarah|1 +(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt|extract|selection +haphtorah|1 +(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt|extract|selection +hapless|1 +(adj)|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate +haploid|2 +(adj)|haploid |haploidic|monoploid +(noun)|organism|being +haploidic|1 +(adj)|haploid |monoploid +haploidy|1 +(noun)|condition +haplopappus|1 +(noun)|Haplopappus|genus Haplopappus|asterid dicot genus +haplopappus acaulis|1 +(noun)|stemless golden weed|Stenotus acaulis|Haplopappus acaulis|wildflower|wild flower +haplopappus phyllocephalus|1 +(noun)|camphor daisy|Haplopappus phyllocephalus|goldenbush +haplopappus spinulosus|1 +(noun)|yellow spiny daisy|Haplopappus spinulosus|goldenbush +haplosporidia|1 +(noun)|Haplosporidia|order Haplosporidia|animal order +haplosporidian|1 +(noun)|sporozoan +haply|1 +(adv)|by chance|by luck +happen|5 +(verb)|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|befall|bechance|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|chance +(verb)|materialize|materialise|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|find|chance|bump|encounter +happen upon|1 +(verb)|fall upon|strike|come upon|light upon|chance upon|come across|chance on|attain|discover|find|regain +happening|2 +(adj)|on +(noun)|occurrence|natural event|event +happenstance|1 +(noun)|coincidence|accident|fortuity|chance event +happily|1 +(adv)|merrily|mirthfully|gayly|blithely|jubilantly|with happiness +happiness|2 +(noun)|felicity|emotional state|spirit +(noun)|feeling +happy|6 +(adj)|happy |blessed|blissful|bright|elysian|paradisiacal|paradisiac|paradisaical|paradisaic|paradisal|paradisial|golden|halcyon|prosperous|joyful|joyous|laughing|riant|cheerful|contented|content|glad|elated|euphoric|felicitous|joyful|joyous +(adj)|pleased|glad +(adj)|felicitous|fortunate +(adj)|contented |content +(adj)|euphoric |expansive|euphoriant|elated +(adj)|well-chosen|felicitous +happy-go-lucky|1 +(adj)|carefree|devil-may-care|freewheeling|harum-scarum|slaphappy|irresponsible +happy chance|1 +(noun)|break|good luck|accident|fortuity|chance event +happy event|1 +(noun)|blessed event|live birth +happy hour|1 +(noun)|hour|time of day +hapsburg|1 +(noun)|Habsburg|Hapsburg|dynasty|royalty|royal family|royal line|royal house +haptic|1 +(adj)|tactile|tactual|somatosense|exteroception|perception +haptic sensation|1 +(noun)|cutaneous sensation|skin sensation|touch|touch sensation|tactual sensation|tactile sensation|feeling +haptically|1 +(adv)|tactually +hara-kiri|2 +(noun)|harakiri|harikari|suicide|self-destruction|self-annihilation +(noun)| +harakat al-jihad al-islami al-filastini|1 +(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization|terrorist group|foreign terrorist organization|FTO +harakat ul-jihad-i-islami|1 +(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization|terrorist group|foreign terrorist organization|FTO +harakiri|1 +(noun)|hara-kiri|harikari|suicide|self-destruction|self-annihilation +harangue|2 +(noun)|rant|ranting|declamation +(verb)|address|speak +haranguer|1 +(noun)|orator|speechmaker|rhetorician|public speaker|speechifier +harare|1 +(noun)|Harare|Salisbury|capital of Zimbabwe|national capital +harass|2 +(verb)|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|attack|aggress +harassed|1 +(adj)|annoyed|harried|pestered|vexed|troubled +harasser|2 +(noun)|tormentor|tormenter|persecutor +(noun)|harrier|attacker|aggressor|assailant|assaulter +harassing fire|1 +(noun)|fire|firing +harassment|2 +(noun)|torment|annoyance|chafe|vexation +(noun)|molestation|mistreatment +harbinger|2 +(noun)|forerunner|herald|precursor|indication|indicant +(verb)|announce|annunciate|foretell|herald|tell +harbor|6 +(noun)|seaport|haven|harbour|port +(noun)|harbour|refuge|sanctuary|asylum +(verb)|harbour|hold|entertain|nurse|feel|experience +(verb)|harbour|shelter +(verb)|harbour|keep|hold on +(verb)|harbour|shield|hide|conceal +harbor patrol|1 +(noun)|patrol +harbor porpoise|1 +(noun)|herring hog|Phocaena phocaena|porpoise +harbor seal|1 +(noun)|common seal|Phoca vitulina|earless seal|true seal|hair seal +harborage|1 +(noun)|harbourage|safety|refuge +harbour|6 +(noun)|seaport|haven|harbor|port +(noun)|harbor|refuge|sanctuary|asylum +(verb)|harbor|shelter +(verb)|harbor|keep|hold on +(verb)|harbor|shield|hide|conceal +(verb)|harbor|hold|entertain|nurse|feel|experience +harbourage|1 +(noun)|harborage|safety|refuge +hard|14 +(adj)|difficult |ambitious|challenging|arduous|awkward|embarrassing|sticky|unenviable|baffling|knotty|problematic|problematical|catchy|tricky|delicate|ticklish|fractious|hard-fought|Herculean|nasty|tight|rocky|rough|rugged|tough|stubborn|tall|thorny|troublesome|trying|vexed|serious|demanding|effortful +(adj)|hard |brutal|cruel|harsh|rigorous|unkind|calculating|calculative|conniving|scheming|shrewd|case-hardened|hardened|hard-boiled|steely|stiff|uphill|difficult|insensitive|merciless|unmerciful|tough +(adj)|hard |adamantine|al dente|corneous|hornlike|horny|erect|tumid|firm|solid|granitic|granitelike|rocklike|stony|hardened|set|lignified|woody|marmoreal|marmorean|ossified|petrified|petrous|stonelike|slaty|slatey|steely|unpadded|semihard|solid +(adj)|knockout|severe|strong +(adj)|arduous|backbreaking|grueling|gruelling|heavy|laborious|punishing|toilsome|effortful +(adj)|hard |plosive|velar +(adj)|heavy|intemperate +(adj)|fermented|soured +(adj)|strong|alcoholic +(adj)|tough|bad +(adj)|stale +(adv)|firmly +(adv)|severely +(adv)|heavily|intemperately +hard-and-fast|1 +(adj)|strict|invariable +hard-baked|1 +(adj)|cooked +hard-bitten|1 +(adj)|hard-boiled|pugnacious|tough +hard-boiled|3 +(adj)|hard-bitten|pugnacious|tough +(adj)|case-hardened|hardened|hard +(adj)|cooked +hard-boiled egg|1 +(noun)|boiled egg|coddled egg +hard-core|4 +(adj)|hardcore|inflexible +(adj)|hardcore|loyal +(adj)|hardcore|explicit |expressed +(adj)| +hard-fought|1 +(adj)|difficult |hard +hard-hitting|2 +(adj)|trenchant|effective |effectual|efficacious +(adj)|high-pressure|aggressive +hard-line|2 +(adj)|hardline|uncompromising |inflexible +(adj)| +hard-nosed|1 +(adj)|hardheaded|practical|pragmatic|realistic +hard-of-hearing|1 +(adj)|hearing-impaired|deaf +hard-on|1 +(noun)|erection|sexual arousal +hard-pressed|1 +(adj)|distressed|hard put|in a bad way|in trouble|troubled +hard-shell clam|2 +(noun)|quahaug|quahog|round clam|clam +(noun)|quahog|quahaug|round clam|Venus mercenaria|Mercenaria mercenaria|clam +hard-shell crab|1 +(noun)|crab +hard-skinned puffball|1 +(noun)|earthball|false truffle|puffball|fungus +hard-to-please|2 +(adj)|hard to please|demanding +(adj)| +hard beech|1 +(noun)|Nothofagus truncata|southern beech|evergreen beech +hard candy|1 +(noun)|candy +hard cash|1 +(noun)|cash|hard currency|currency +hard cheese|1 +(noun)|misfortune|bad luck|tough luck|ill luck +hard cider|1 +(noun)|cider|cyder|alcohol|alcoholic beverage|intoxicant|inebriant +hard coal|1 +(noun)|anthracite|anthracite coal|coal +hard copy|1 +(noun)|text|textual matter +hard core|1 +(noun)|clique|coterie|ingroup|inner circle|pack|camp +hard currency|1 +(noun)|cash|hard cash|currency +hard disc|1 +(noun)|hard disk|fixed disk|magnetic disk|magnetic disc|disk|disc +hard disk|1 +(noun)|hard disc|fixed disk|magnetic disk|magnetic disc|disk|disc +hard drink|1 +(noun)|liquor|spirits|booze|hard liquor|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +hard drive|1 +(noun)|disk drive|disc drive|Winchester drive|drive +hard drug|1 +(noun)|narcotic|controlled substance +hard fern|1 +(noun)|fern +hard hat|2 +(noun)|construction worker|craftsman|artisan|journeyman|artificer +(noun)|tin hat|safety hat|helmet +hard knocks|1 +(noun)|adversity|hardship|misfortune|bad luck|tough luck|ill luck +hard lead|2 +(noun)|antimonial lead|lead|Pb|atomic number 82 +(noun)|lead|Pb|atomic number 82 +hard line|1 +(noun)|position|stance|posture +hard liquor|1 +(noun)|liquor|spirits|booze|hard drink|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +hard news|1 +(noun)|news +hard palate|1 +(noun)|surface +hard put|1 +(adj)|distressed|hard-pressed|in a bad way|in trouble|troubled +hard right|1 +(noun)|right|right wing +hard roe|1 +(noun)|roe|seafood +hard roll|1 +(noun)|Vienna roll|bun|roll +hard rubber|1 +(noun)|vulcanite|ebonite|rubber|India rubber|gum elastic|caoutchouc +hard rush|1 +(noun)|Juncus inflexus|rush +hard sauce|1 +(noun)|sauce +hard sell|1 +(noun)|advertising|publicizing +hard shoulder|1 +(noun)|shoulder|berm +hard solder|1 +(noun)|solder +hard steel|1 +(noun)|steel +hard surface|1 +(verb)|pave +hard tick|1 +(noun)|ixodid|tick +hard time|2 +(noun)|rough sledding|difficulty +(noun)|prison term|sentence|time +hard times|3 +(noun)|time +(noun)|hard time|rough sledding|difficulty +(noun)|hard time|prison term|sentence|time +hard to please|2 +(adj)|hard-to-please|demanding +(adj)| +hard up|1 +(adj)|impecunious|in straitened circumstances|penniless|penurious|pinched|poor +hard water|1 +(noun)|water|H2O +hard wheat|1 +(noun)|durum|durum wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat|corn +hard worker|1 +(noun)|slave|striver|worker +hardback|2 +(adj)|hardbacked|hardbound|hardcover|backed +(noun)|hardcover|book|volume +hardbacked|1 +(adj)|hardback|hardbound|hardcover|backed +hardbake|1 +(noun)|sweet|confection|confectionery +hardball|2 +(noun)|attitude|mental attitude +(noun)|baseball|baseball game|ball +hardboard|1 +(noun)|chipboard|board|plank +hardbound|1 +(adj)|hardbacked|hardback|hardcover|backed +hardcore|3 +(adj)|hard-core|inflexible +(adj)|hard-core|loyal +(adj)|hard-core|explicit |expressed +hardcover|2 +(adj)|hardbacked|hardback|hardbound|backed +(noun)|hardback|book|volume +harden|5 +(verb)|indurate|change +(verb)|indurate|change +(verb)|temper|modify +(verb)|season|toughen +(verb)|inure|indurate|habituate|accustom +hardenbergia|1 +(noun)|Hardenbergia|genus Hardenbergia|rosid dicot genus +hardenbergia comnptoniana|1 +(noun)|Western Australia coral pea|Hardenbergia comnptoniana|vine +hardened|4 +(adj)|case-hardened|hard-boiled|hard +(adj)|tempered |treated|toughened|annealed|baked|burned|burnt|curable|sunbaked +(adj)|enured|inured|tough |toughened +(adj)|set|hard +hardening|3 +(noun)|symptom +(noun)|solidifying|solidification|set|curing|natural process|natural action|action|activity +(noun)|change of integrity +hardening of the arteries|1 +(noun)|arteriosclerosis|arterial sclerosis|induration of the arteries|coronary-artery disease|sclerosis|induration +hardfisted|1 +(adj)|closefisted|tightfisted|stingy |ungenerous +hardheaded|2 +(adj)|mulish|stubborn +(adj)|hard-nosed|practical|pragmatic|realistic +hardheads|1 +(noun)|lesser knapweed|black knapweed|Centaurea nigra|knapweed +hardhearted|2 +(adj)|hardhearted |heartless|flinty|obdurate|stony +(adj)|stonyhearted|unfeeling|uncompassionate +hardheartedness|1 +(noun)|heartlessness|coldheartedness|unconcern +hardihood|1 +(noun)|boldness|daring|fearlessness +hardiness|1 +(noun)|robustness|lustiness|strength +harding|1 +(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States|United States President|President|Chief Executive +harding grass|2 +(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass +(noun)| +hardinggrass|1 +(noun)|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass +hardline|1 +(adj)|hard-line|uncompromising |inflexible +hardliner|1 +(noun)|conservative|conservativist +hardly|2 +(adv)|barely|just|scarcely|scarce +(adv)|scarcely +hardly a|1 +(adj)|few +hardness|4 +(noun)|consistency|consistence|body +(noun)|unfeelingness|callousness|insensibility|insensitivity|insensitiveness +(noun)|difficulty|difficultness +(noun)|severity|harshness|rigor|rigour|inclemency|stiffness|sternness|strictness +hardpan|1 +(noun)|caliche|soil|dirt +hardscrabble|2 +(adj)|poor|unfruitful +(adj)|marginal|meager |meagre|meagerly +hardship|3 +(noun)|adversity|hard knocks|misfortune|bad luck|tough luck|ill luck +(noun)|asperity|grimness|rigor|rigour|severity|rigorousness|difficulty|difficultness +(noun)|misfortune|bad luck +hardstem bulrush|1 +(noun)|hardstemmed bulrush|Scirpus acutus|sedge +hardstemmed bulrush|1 +(noun)|hardstem bulrush|Scirpus acutus|sedge +hardtack|2 +(noun)|pilot biscuit|pilot bread|sea biscuit|ship biscuit|biscuit +(noun)|mahogany|mahogany tree +hardtop|1 +(noun)|car|auto|automobile|machine|motorcar +hardware|3 +(noun)|weaponry|arms|implements of war|weapons system|munition +(noun)|ironware|instrumentality|instrumentation +(noun)|computer hardware|component|constituent|element +hardware error|1 +(noun)|error|computer error +hardware store|1 +(noun)|ironmongery|shop|store +hardwareman|1 +(noun)|ironmonger|trader|bargainer|dealer|monger +hardwood|2 +(adj)|hardwood +(noun)|wood +hardworking|1 +(adj)|industrious|tireless|untiring|diligent +hardy|5 +(adj)|stalwart|stout|sturdy|robust +(adj)|doughty|fearless|manly |manful|manlike +(adj)|rugged +(noun)|Hardy|Oliver Hardy|comedian|comic +(noun)|Hardy|Thomas Hardy|writer|author +hare|3 +(noun)|leporid|leporid mammal +(noun)|rabbit|game +(verb)|run +hare's-foot bristle fern|1 +(noun)|Trichomanes boschianum|bristle fern|filmy fern +hare's-foot fern|1 +(noun)|davallia +hare and hounds|1 +(noun)|paper chase|game +hare krishna|3 +(noun)|Hare Krishna|Hindu|Hindoo +(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect|religious sect|religious order +(noun)|Hare Krishna|chant +hare wallaby|1 +(noun)|kangaroo hare|wallaby|brush kangaroo +harebell|2 +(noun)|wild hyacinth|wood hyacinth|bluebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +(noun)|bluebell|Campanula rotundifolia|campanula|bellflower +harebrained|1 +(adj)|insane|mad|foolish +haredi|1 +(noun)|Haredi|sect|religious sect|religious order +hareem|1 +(noun)|harem|seraglio|serail|living quarters|quarters +harefoot|1 +(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England|King of Great Britain +harelip|1 +(noun)|cleft lip|cheiloschisis|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +harem|1 +(noun)|hareem|seraglio|serail|living quarters|quarters +hargeisa|1 +(noun)|Hargeisa|city|metropolis|urban center +hargreaves|1 +(noun)|Hargreaves|James Hargreaves|inventor|discoverer|artificer +haricot|2 +(noun)|green bean +(noun)|flageolet|common bean +haricot vert|1 +(noun)|haricots verts|French bean|green bean +haricots verts|1 +(noun)|haricot vert|French bean|green bean +harijan|1 +(noun)|untouchable|Harijan|outcast|castaway|pariah|Ishmael +harikari|1 +(noun)|harakiri|hara-kiri|suicide|self-destruction|self-annihilation +hark|1 +(verb)|harken|hearken|listen +hark back|1 +(verb)|return|come back|recall|denote|refer +harkat-ul-jihad-e-islami|1 +(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization|terrorist group|foreign terrorist organization|FTO +harkat-ul-mujahidin|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +harkat ul-ansar|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +harkat ul-mujahedeen|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +harken|1 +(verb)|hark|hearken|listen +harlan fiske stone|1 +(noun)|Stone|Harlan Fiske Stone|jurist|legal expert +harlean carpenter|1 +(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress +harlem|1 +(noun)|Harlem|city district +harlem renaissance|1 +(noun)|Harlem Renaissance|historic period|age +harlem river|1 +(noun)|Harlem River|channel +harlequin|2 +(noun)|clown|buffoon|merry andrew +(verb)|mottle|dapple|cloud +harlequin-snake|1 +(noun)|coral snake|New World coral snake|elapid|elapid snake +harlequin opal|1 +(noun)|opal +harlequinade|1 +(noun)|buffoonery|clowning|frivolity|prank|folly|foolery|tomfoolery|craziness|lunacy|indulgence +harley granville-barker|1 +(noun)|Granville-Barker|Harley Granville-Barker|actor|histrion|player|thespian|role player|dramatist|playwright|critic|director|theater director|theatre director|theatrical producer +harley street|1 +(noun)|Harley Street|street +harlot|1 +(noun)|prostitute|cocotte|whore|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +harlotry|1 +(noun)|prostitution|whoredom|vice crime +harlow|1 +(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress +harlow shapley|1 +(noun)|Shapley|Harlow Shapley|astronomer|uranologist|stargazer +harm|4 +(noun)|injury|hurt|trauma|ill health|unhealthiness|health problem +(noun)|damage|impairment|change|alteration|modification +(noun)|damage|hurt|scathe|change of integrity +(verb)|injure|wound +harmattan|1 +(noun)|wind|air current|current of air +harmed|1 +(adj)|injured +harmful|6 +(adj)|noxious |baneful|deadly|pernicious|pestilent|corrupting|degrading|vesicatory|vesicant|toxic|unwholesome +(adj)|dangerous |unsafe +(adj)|harmful |abusive|bad|bruising|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|libelous|slanderous|catastrophic|ruinous|counterproductive|damaging|detrimental|prejudicial|prejudicious|ill|insidious|pernicious|subtle|mischievous|nocent|stabbing|traumatic|wounding|deleterious|hurtful|injurious|destructive|disadvantageous|malign|noxious|offensive|painful|toxic|unwholesome +(adj)|disadvantageous |minus|negative|inexpedient|inopportune +(adj)|adverse|inauspicious|untoward|unfavorable |unfavourable +(adj)|evil|injurious|malign +harmfully|1 +(adv)|detrimentally|noxiously +harmfulness|2 +(noun)|injuriousness|destructiveness +(noun)|noisomeness|noxiousness|unwholesomeness|morbidness|morbidity +harmless|5 +(adj)|harmless |innocent|innocuous|inoffensive|unoffending|benign|benignant|innocuous|nontoxic|atoxic|painless|safe +(adj)|innocuous |innoxious|inoffensive|uncontroversial|insipid +(adj)|nontoxic |atoxic +(adj)|innocuous|safe +(adj)|nonmalignant|benign |benignant +harmonic|5 +(adj)|harmonic |music +(adj)|acoustics +(adj)|sympathetic|harmonious +(adj)|consonant|harmonical|harmonized|harmonised|in harmony|harmonious +(noun)|tone|pure tone +harmonic analysis|1 +(noun)|Fourier analysis|analysis +harmonic law|1 +(noun)|Kepler's third law|Kepler's law|Kepler's law of planetary motion +harmonic mean|1 +(noun)|mean|mean value +harmonic motion|1 +(noun)|periodic motion|periodic movement +harmonic progression|1 +(noun)|progression|patterned advance +harmonica|1 +(noun)|mouth organ|harp|mouth harp|free-reed instrument +harmonical|1 +(adj)|consonant|harmonic|harmonized|harmonised|in harmony|harmonious +harmonics|2 +(noun)|acoustics +(noun)|harmonic|tone|pure tone +harmonious|4 +(adj)|harmonious |consonant|harmonic|harmonical|harmonized|harmonised|in harmony|harmonic|sympathetic|on-key|true|symphonic|symphonious|pure|compatible +(adj)|proportionate|symmetrical|balanced +(adj)|appropriate|congruous |congruent +(adj)|compatible +harmoniousness|2 +(noun)|consonance|harmony +(noun)|harmony|compatibility +harmonisation|2 +(noun)|harmonization|harmony|musical harmony +(noun)|harmonization|singing|vocalizing +harmonise|6 +(verb)|harmonize|consort|accord|concord|fit in|agree|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|harmonize|compose|write +(verb)|harmonize|sing +(verb)|harmonize|relate +(verb)|harmonize|reconcile|adjust|set|correct +(verb)|harmonize|chord|change|alter|modify +harmonised|1 +(adj)|consonant|harmonic|harmonical|harmonized|in harmony|harmonious +harmoniser|2 +(noun)|harmonizer|musician|instrumentalist|player +(noun)|harmonizer|mediator|go-between|intermediator|intermediary|intercessor +harmonium|1 +(noun)|organ|reed organ|free-reed instrument +harmonizable|1 +(adj)|reconcilable +harmonization|2 +(noun)|harmonisation|harmony|musical harmony +(noun)|harmonisation|singing|vocalizing +harmonize|6 +(verb)|harmonise|consort|accord|concord|fit in|agree|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|harmonise|compose|write +(verb)|harmonise|sing +(verb)|harmonise|relate +(verb)|harmonise|reconcile|adjust|set|correct +(verb)|harmonise|chord|change|alter|modify +harmonized|1 +(adj)|consonant|harmonic|harmonical|harmonised|in harmony|harmonious +harmonizer|2 +(noun)|harmoniser|musician|instrumentalist|player +(noun)|harmoniser|mediator|go-between|intermediator|intermediary|intercessor +harmony|5 +(noun)|harmoniousness|compatibility +(noun)|musical harmony|music +(noun)|concord|concordance|order +(noun)|concord|concordance|agreement +(noun)|sound property +harmsworth|1 +(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher|newspaper publisher +harness|6 +(noun)|support +(noun)|stable gear|saddlery|tack +(verb)|tackle|attach +(verb)|exploit|tap +(verb)|rein in|draw rein|rein|control|command +(verb)|rule|rein|restrict|restrain|trammel|limit|bound|confine|throttle +harness horse|1 +(noun)|horse|Equus caballus +harness race|1 +(noun)|harness racing|horse race +harness racing|1 +(noun)|harness race|horse race +harnessed|1 +(adj)|controlled +harnessed antelope|1 +(noun)|antelope +harold clayton lloyd|1 +(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor|histrion|player|thespian|role player +harold clayton urey|1 +(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist +harold harefoot|1 +(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England|King of Great Britain +harold hart crane|1 +(noun)|Crane|Hart Crane|Harold Hart Crane|poet +harold hirschsprung|1 +(noun)|Hirschsprung|Harold Hirschsprung|baby doctor|pediatrician|pediatrist|paediatrician +harold i|1 +(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England|King of Great Britain +harold ii|1 +(noun)|Harold II|King Harold II|King of England|King of Great Britain +harold kroto|1 +(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist +harold lloyd|1 +(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor|histrion|player|thespian|role player +harold nicolson|1 +(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat|diplomatist|writer|author +harold pinter|1 +(noun)|Pinter|Harold Pinter|dramatist|playwright +harold urey|1 +(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist +harold w. kroto|1 +(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist +harp|5 +(noun)|chordophone +(noun)|support +(noun)|harmonica|mouth organ|mouth harp|free-reed instrument +(verb)|dwell|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|play +harp seal|1 +(noun)|Pagophilus groenlandicus|earless seal|true seal|hair seal +harper|1 +(noun)|harpist|musician|instrumentalist|player +harpia|1 +(noun)|Harpia|genus Harpia|bird genus +harpia harpyja|1 +(noun)|harpy|harpy eagle|Harpia harpyja|eagle|bird of Jove +harpist|1 +(noun)|harper|musician|instrumentalist|player +harpo|1 +(noun)|Marx|Arthur Marx|Harpo|comedian|comic +harpoon|2 +(noun)|spear|gig|fizgig|fishgig|lance +(verb)|catch|grab|take hold of +harpoon gun|1 +(noun)|cannon +harpoon line|1 +(noun)|rope +harpoon log|1 +(noun)|log +harpooneer|1 +(noun)|harpooner|skilled worker|trained worker +harpooner|1 +(noun)|harpooneer|skilled worker|trained worker +harpsichord|1 +(noun)|cembalo|clavier|Klavier +harpsichordist|1 +(noun)|musician|instrumentalist|player +harpulla|1 +(noun)|Harpullia cupanioides|harpullia +harpullia|1 +(noun)|tulipwood tree +harpullia cupanioides|1 +(noun)|harpulla|Harpullia cupanioides|harpullia +harpullia pendula|1 +(noun)|Moreton Bay tulipwood|Harpullia pendula|harpullia +harpy|4 +(noun)|vixen|hellcat|unpleasant woman|disagreeable woman +(noun)|Harpy|mythical monster|mythical creature +(noun)|harpy bat|tube-nosed bat|tube-nosed fruit bat|fruit bat|megabat +(noun)|harpy eagle|Harpia harpyja|eagle|bird of Jove +harpy bat|1 +(noun)|harpy|tube-nosed bat|tube-nosed fruit bat|fruit bat|megabat +harpy eagle|1 +(noun)|harpy|Harpia harpyja|eagle|bird of Jove +harquebus|1 +(noun)|arquebus|hackbut|hagbut|muzzle loader +harridan|1 +(noun)|scold|scolder|nag|nagger|common scold +harried|1 +(adj)|annoyed|harassed|pestered|vexed|troubled +harrier|3 +(noun)|harasser|attacker|aggressor|assailant|assaulter +(noun)|hound|hound dog +(noun)|hawk +harrier eagle|1 +(noun)|short-toed eagle|hawk +harriet beecher stowe|1 +(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer|author|abolitionist|emancipationist +harriet elizabeth beecher stowe|1 +(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer|author|abolitionist|emancipationist +harriet tubman|1 +(noun)|Tubman|Harriet Tubman|abolitionist|emancipationist +harriet wilson|1 +(noun)|Wilson|Harriet Wilson|writer|author +harriman|2 +(noun)|Harriman|Averell Harriman|William Averell Harriman|financier|moneyman|diplomat|diplomatist +(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman|man of affairs +harris|4 +(noun)|Harris|Townsend Harris|diplomat|diplomatist +(noun)|Harris|Frank Harris|James Thomas Harris|writer|author +(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general|full general|marshal|marshall +(noun)|Harris|Benjamin Harris|publisher|newspaper publisher +harris tweed|1 +(noun)|Harris Tweed|tweed +harrisburg|1 +(noun)|Harrisburg|capital of Pennsylvania|state capital +harrisia|1 +(noun)|Harrisia|genus Harrisia|caryophylloid dicot genus +harrison|4 +(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor|histrion|player|thespian|role player +(noun)|Harrison|George Harrison|rock star +(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States|United States President|President|Chief Executive +(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States|United States President|President|Chief Executive +harrod|2 +(noun)|Harrod|Charles Digby Harrod|merchant|merchandiser +(noun)|Harrod|Charles Henry Harrod|merchant|merchandiser +harrow|2 +(noun)|cultivator|tiller +(verb)|disk|plow|plough|turn +harrowing|1 +(adj)|agonizing|agonising|excruciating|torturing|torturous|torturesome|painful +harry|2 +(verb)|harass|hassle|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|ravage|destroy|ruin +harry bridges|1 +(noun)|Bridges|Harry Bridges|labor leader +harry f. klinefelter|1 +(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor|doc|physician|MD|Dr.|medico +harry fitch kleinfelter|1 +(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor|doc|physician|MD|Dr.|medico +harry hotspur|1 +(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier +harry houdini|1 +(noun)|Houdini|Harry Houdini|Erik Weisz|sorcerer|magician|wizard|necromancer +harry lauder|1 +(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer|vocalist|vocalizer|vocaliser|comedian|comic +harry lillis crosby|1 +(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner|balladeer|actor|histrion|player|thespian|role player +harry s truman|1 +(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States|United States President|President|Chief Executive +harry sinclair lewis|1 +(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer|author +harry stack sullivan|1 +(noun)|Sullivan|Harry Stack Sullivan|psychiatrist|head-shrinker|shrink +harry truman|1 +(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States|United States President|President|Chief Executive +harsh|6 +(adj)|rough|unpleasant +(adj)|unpleasant +(adj)|unkind +(adj)|heavy +(adj)|brutal|cruel|rigorous|unkind|hard +(adj)|abrasive|disagreeable +harshen|1 +(verb)|change|alter|modify +harshly|1 +(adv)|gratingly|raspingly +harshness|4 +(noun)|abrasiveness|scratchiness|roughness +(noun)|roughness|timbre|timber|quality|tone +(noun)|cruelty|cruelness|malevolence|malevolency|malice +(noun)|severity|rigor|rigour|inclemency|hardness|stiffness|sternness|strictness +hart|3 +(noun)|Hart|Moss Hart|dramatist|playwright +(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist +(noun)|stag|red deer|Cervus elaphus +hart's-tongue|2 +(noun)|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern +(noun)|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern +hart's-tongue fern|3 +(noun)|hart's-tongue|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern +(noun)|hart's-tongue|Asplenium scolopendrium|Phyllitis scolopendrium|fern +(noun)|Florida strap fern|cow-tongue fern|strap fern +hart crane|1 +(noun)|Crane|Hart Crane|Harold Hart Crane|poet +harte|1 +(noun)|Harte|Bret Harte|writer|author +hartebeest|1 +(noun)|antelope +hartford|1 +(noun)|Hartford|capital of Connecticut|state capital +hartford fern|1 +(noun)|creeping fern|Hartford fern|Lygodium palmatum|climbing fern +hartley|1 +(noun)|Hartley|David Hartley|philosopher +harum-scarum|3 +(adj)|carefree|devil-may-care|freewheeling|happy-go-lucky|slaphappy|irresponsible +(noun)|daredevil|madcap|hothead|swashbuckler|lunatic|adventurer|venturer +(adv)|pell-mell +harvard|2 +(noun)|Harvard University|Harvard|university +(noun)|Harvard|John Harvard|philanthropist|altruist +harvard university|1 +(noun)|Harvard University|Harvard|university +harvery williams cushing|1 +(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist|brain doctor +harvest|6 +(noun)|crop|output|yield +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|harvesting|harvest home|gather|gathering +(noun)|harvest time|season|time of year +(verb)|reap|glean|gather|garner|collect|pull together +(verb)|remove|take|take away|withdraw +harvest-lice|1 +(noun)|Agrimonia eupatoria|agrimonia|agrimony +harvest fly|1 +(noun)|dog-day cicada|cicada|cicala +harvest home|1 +(noun)|harvest|harvesting|gather|gathering +harvest mite|1 +(noun)|chigger|jigger|redbug|trombiculiid +harvest moon|1 +(noun)|full moon|full-of-the-moon|full phase of the moon +harvest mouse|2 +(noun)|American harvest mouse|New World mouse +(noun)|Micromyx minutus|mouse +harvest time|1 +(noun)|harvest|season|time of year +harvester|2 +(noun)|reaper|farmhand|fieldhand|field hand|farm worker +(noun)|reaper|farm machine +harvestfish|1 +(noun)|Paprilus alepidotus|butterfish|stromateid fish|stromateid +harvesting|1 +(noun)|harvest|harvest home|gather|gathering +harvestman|1 +(noun)|daddy longlegs|Phalangium opilio|arachnid|arachnoid +harvey|1 +(noun)|Harvey|William Harvey|doctor|doc|physician|MD|Dr.|medico|scientist|man of science +harvey cushing|1 +(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist|brain doctor +harvey wallbanger|1 +(noun)|Harvey Wallbanger|cocktail +has-been|1 +(noun)|back-number|oldster|old person|senior citizen|golden ager +haschisch|1 +(noun)|hashish|hasheesh|hash|soft drug +hasdrubal|1 +(noun)|Hasdrubal|general|full general|Carthaginian +hasek|1 +(noun)|Hasek|Jaroslav Hasek|writer|author +hash|3 +(noun)|dish +(noun)|hashish|hasheesh|haschisch|soft drug +(verb)|chop|chop up +hash head|1 +(noun)|head +hash house|1 +(noun)|restaurant|eating house|eating place +hash mark|2 +(noun)|service stripe|hashmark|insignia +(noun)| +hash out|1 +(verb)|discuss|talk over|talk of|talk about +hash over|1 +(verb)|retrograde|rehash|recapitulate|recap +hasheesh|1 +(noun)|hashish|haschisch|hash|soft drug +hashemite kingdom of jordan|1 +(noun)|Jordan|Hashemite Kingdom of Jordan|Asian country|Asian nation +hashimoto's disease|1 +(noun)|Hashimoto's disease|autoimmune disease|autoimmune disorder +hashish|1 +(noun)|hasheesh|haschisch|hash|soft drug +hashmark|1 +(noun)|service stripe|hash mark|insignia +hasid|1 +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +hasidic|1 +(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism|Orthodox Judaism|Jewish Orthodoxy +hasidim|2 +(noun)|Hasidim|Hassidim|Chasidim|Chassidim|Orthodox Judaism|Jewish Orthodoxy +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +hasidism|1 +(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism +haslet|1 +(noun)|variety meat|organs +hasp|2 +(noun)|catch +(verb)|fasten|fix|secure +hassam|1 +(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter +hassel|1 +(noun)|Hassel|Odd Hassel|chemist +hassid|1 +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +hassidic|1 +(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism|Orthodox Judaism|Jewish Orthodoxy +hassidim|2 +(noun)|Hasidim|Hassidim|Chasidim|Chassidim|Orthodox Judaism|Jewish Orthodoxy +(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew +hassidism|1 +(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism +hassle|3 +(noun)|fuss|trouble|bother|perturbation|disturbance +(noun)|scuffle|tussle|dogfingt|rough-and-tumble|fight|fighting|combat|scrap +(verb)|harass|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +hassock|2 +(noun)|ottoman|pouf|pouffe|puff|seat +(noun)|cushion +hastate|1 +(adj)|spearhead-shaped|simple |unsubdivided|pointed +hastate leaf|1 +(noun)|simple leaf +haste|3 +(noun)|hastiness|hurry|hurriedness|precipitation|speed|swiftness|fastness +(noun)|hurry|rush|rushing|motion|movement|move +(noun)|hurry|urgency +hasten|4 +(verb)|rush|hurry|look sharp|festinate|act|move +(verb)|rush|hotfoot|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +(verb)|expedite|help|assist|aid +(verb)|induce|stimulate|rush|effect|effectuate|bring about|set up +hastening|1 +(adj)|fast +hastily|1 +(adv)|hurriedly|in haste +hastinapura|1 +(noun)|Hastinapura|Sanskrit literature +hastiness|2 +(noun)|haste|hurry|hurriedness|precipitation|speed|swiftness|fastness +(noun)|impulsiveness +hastings|3 +(noun)|Hastings|Thomas Hastings|architect|designer +(noun)|Hastings|town +(noun)|Hastings|battle of Hastings|pitched battle +hasty|2 +(adj)|headlong|hurried +(adj)|overhasty|precipitate|precipitant|precipitous|hurried +hasty defence|1 +(noun)|hasty defense|defense|defence|defensive measure +hasty defense|1 +(noun)|hasty defence|defense|defence|defensive measure +hasty pudding|2 +(noun)|porridge +(noun)|mush|cornmeal mush +hat|4 +(noun)|chapeau|lid|headdress|headgear +(noun)|function|office|part|role +(verb)|wear|put on|get into|don|assume +(verb)|supply|provide|render|furnish +hat shop|1 +(noun)|millinery|shop|store +hat trick|1 +(noun)|score +hatband|1 +(noun)|band|banding|stripe +hatbox|1 +(noun)|baggage|luggage +hatch|8 +(noun)|hatching|parturition|birth|giving birth|birthing +(noun)|hatching|crosshatch|hachure|shading +(noun)|movable barrier +(verb)|be born +(verb)|think up|think of|dream up|concoct|create by mental act|create mentally +(verb)|inlay +(verb)|line +(verb)|brood|cover|incubate|reproduce|procreate|multiply +hatchback|2 +(noun)|car|auto|automobile|machine|motorcar +(noun)|car door +hatcheck girl|1 +(noun)|check girl|checker +hatched|2 +(adj)|born +(adj)|crosshatched|shaded +hatchel|2 +(noun)|heckle|comb +(verb)|heckle|hackle|comb +hatchery|1 +(noun)|place|property +hatchet|2 +(noun)|tomahawk|weapon|arm|weapon system +(noun)|ax|axe +hatchet job|1 +(noun)|defamation|calumny|obloquy|traducement|disparagement|depreciation|derogation +hatchet man|2 +(noun)|iceman|murderer|liquidator|manslayer +(noun)|enforcer|assistant|helper|help|supporter +hatching|2 +(noun)|hatch|parturition|birth|giving birth|birthing +(noun)|hatch|crosshatch|hachure|shading +hatchling|1 +(noun)|young|offspring +hatchway|1 +(noun)|opening|scuttle|entrance|entranceway|entryway|entry|entree +hate|2 +(noun)|hatred|emotion +(verb)|detest|dislike +hate mail|1 +(noun)|mail|post +hated|1 +(adj)|despised|detested|scorned|unloved +hateful|2 +(adj)|hateful |abominable|detestable|execrable|odious|unlovable|hostile|offensive|malevolent|malicious|undesirable +(adj)|mean|nasty |awful +hatefulness|1 +(noun)|obnoxiousness|objectionableness|offensiveness|odiousness|distastefulness +hatemonger|1 +(noun)|detractor|disparager|depreciator|knocker +hater|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +hatful|2 +(noun)|batch|deal|flock|good deal|great deal|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|containerful +hatha yoga|1 +(noun)|yoga +hathaway|1 +(noun)|Hathaway|Anne Hathaway|wife|married woman +hatiora|1 +(noun)|Hatiora|genus Hatiora|caryophylloid dicot genus +hatiora gaertneri|1 +(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus +hatless|1 +(adj)|hatless +hatmaker|1 +(noun)|hatter|milliner|modiste|maker|shaper +hatoglobin|1 +(noun)|protein +hatpin|1 +(noun)|pin +hatrack|1 +(noun)|coatrack|coat rack|rack +hatred|1 +(noun)|hate|emotion +hatted|1 +(adj)|hatted |turbaned +hatter|1 +(noun)|hatmaker|milliner|modiste|maker|shaper +hatteras island|1 +(noun)|Hatteras Island|barrier island +hattiesburg|1 +(noun)|Hattiesburg|town +hauberk|1 +(noun)|byrnie|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +haughtiness|1 +(noun)|arrogance|hauteur|highhandedness|lordliness|pride +haughty|1 +(adj)|disdainful|lordly|prideful|sniffy|supercilious|swaggering|proud +haul|4 +(noun)|draw|haulage|pull|pulling +(noun)|catch|indefinite quantity +(verb)|hale|cart|drag|pull|draw|force +(verb)|transport|carry +haul away|1 +(verb)|cart off|cart away|haul off|take away|take out +haul off|1 +(verb)|cart off|cart away|haul away|take away|take out +haul up|1 +(verb)|draw up|pull up|stop|halt +haulage|1 +(noun)|draw|haul|pull|pulling +hauler|1 +(noun)|haulier|contractor +haulier|1 +(noun)|hauler|contractor +hauling|1 +(noun)|trucking|truckage|transportation|shipping|transport +haulm|1 +(noun)|halm|stalk|stem +haunch|2 +(noun)|body part +(noun)|hindquarters|croup|croupe|rump +haunt|4 +(noun)|hangout|resort|repair|stamping ground|area|country +(verb)|stalk|pursue|follow +(verb)|obsess|ghost|preoccupy +(verb)|frequent|travel to|visit +haunted|3 +(adj)|obsessed|preoccupied|taken up|concerned +(adj)|troubled +(adj)|inhabited +haunting|2 +(adj)|persistent|unforgettable +(adj)|moving +hausa|2 +(noun)|Hausa|Haussa|Nigerian +(noun)|Hausa|Haussa|West Chadic +hausen|1 +(noun)|beluga|white sturgeon|Acipenser huso|sturgeon +hausmannite|1 +(noun)|mineral +haussa|2 +(noun)|Hausa|Haussa|Nigerian +(noun)|Hausa|Haussa|West Chadic +haustorium|1 +(noun)|plant process|enation +hautbois|1 +(noun)|oboe|hautboy|double-reed instrument|double reed +hautboy|1 +(noun)|oboe|hautbois|double-reed instrument|double reed +haute-normandie|1 +(noun)|Haute-Normandie|Upper-Normandy|French region +haute couture|1 +(noun)|high fashion|high style|fashion +haute cuisine|1 +(noun)|cuisine|culinary art +hauteur|1 +(noun)|arrogance|haughtiness|highhandedness|lordliness|pride +havana|1 +(noun)|Havana|capital of Cuba|Cuban capital|national capital +havasupai|2 +(noun)|Havasupai|Hokan|Hoka +(noun)|Havasupai|Yuman +have|18 +(noun)|rich person|wealthy person|person|individual|someone|somebody|mortal|human|soul +(verb)|have got|hold +(verb)|feature +(verb)|experience|receive|get|undergo +(verb)|own|possess +(verb)|get|let|make|get +(verb)|consume|ingest|take in|take +(verb)|interact +(verb)|hold|throw|make|give|direct +(verb)|experience|change +(verb)|suffer|hurt +(verb)|induce|stimulate|cause|get|make +(verb)|accept|take|get|acquire +(verb)|receive|get|acquire +(verb)|suffer|sustain|get|experience|receive|get|undergo +(verb)|get|make|score|hit|tally|rack up +(verb)|give birth|deliver|bear|birth|produce|bring forth +(verb)|take|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk +have-not|1 +(noun)|poor person|unfortunate|unfortunate person +have a ball|1 +(verb)|have a good time|delight|enjoy|revel +have a bun in the oven|1 +(verb)|bear|carry|gestate|expect|give birth|deliver|bear|birth|have +have a fit|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +have a go|1 +(verb)|give it a try|try|seek|attempt|essay|assay +have a go at it|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|bang|get it on|bonk|copulate|mate|pair|couple +have a good time|1 +(verb)|have a ball|delight|enjoy|revel +have a look|1 +(verb)|take a look|get a load|look +have got|1 +(verb)|have|hold +have in mind|1 +(verb)|think of|mean|associate|tie in|relate|link|colligate|link up|connect +have intercourse|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +have it away|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +have it coming|1 +(verb)|deserve|merit +have it off|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +have kittens|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +have on|1 +(verb)|wear +have sex|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +have the best|1 +(verb)|get the best|overcome|get the better of|overcome|defeat +have words|1 +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|lambaste|lambast|knock|criticize|criticise|pick apart +have young|1 +(verb)|calve|litter +havel|1 +(noun)|Havel|Vaclav Havel|dramatist|playwright|statesman|solon|national leader +havelock|1 +(noun)|cloth covering +haven|2 +(noun)|oasis|shelter +(noun)|seaport|harbor|harbour|port +haverhill fever|1 +(noun)|Haverhill fever|ratbite fever +haversack|1 +(noun)|backpack|back pack|knapsack|packsack|rucksack|bag +haversian canal|1 +(noun)|Haversian canal|duct|epithelial duct|canal|channel +havoc|1 +(noun)|mayhem|disturbance +haw|3 +(noun)|hawthorn|shrub|bush +(noun)|nictitating membrane|third eyelid +(verb)|utter|emit|let out|let loose +haw-haw|2 +(noun)|hee-haw|horselaugh|ha-ha|laugh|laughter +(noun)|sunk fence|ha-ha|ditch +hawaii|2 +(noun)|Hawaii|Aloha State|HI|American state +(noun)|Hawaii|Hawaii Island|island +hawaii island|1 +(noun)|Hawaii|Hawaii Island|island +hawaii standard time|1 +(noun)|Hawaii Time|Hawaii Standard Time|civil time|standard time|local time +hawaii time|1 +(noun)|Hawaii Time|Hawaii Standard Time|civil time|standard time|local time +hawaii volcanoes national park|1 +(noun)|Hawaii Volcanoes National Park|national park +hawaiian|3 +(adj)|Hawaiian|American state|island +(noun)|Hawaiian|Oceanic|Eastern Malayo-Polynesian +(noun)|Hawaiian|American +hawaiian capital|1 +(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital|port +hawaiian dancing|1 +(noun)|hula|hula-hula|Hawaiian dancing|rain dance +hawaiian guitar|1 +(noun)|Hawaiian guitar|steel guitar|guitar +hawaiian honeycreeper|1 +(noun)|honeycreeper|Hawaiian honeycreeper|finch +hawaiian islands|1 +(noun)|Hawaiian Islands|Sandwich Islands|archipelago +hawala|1 +(noun)|banking industry|banking system +hawfinch|1 +(noun)|Coccothraustes coccothraustes|grosbeak|grossbeak +hawk|6 +(noun)|bird of prey|raptor|raptorial bird +(noun)|war hawk|militarist|warmonger +(noun)|mortarboard|board +(verb)|peddle|monger|huckster|vend|pitch|deal|sell|trade +(verb)|hunt|run|hunt down|track down +(verb)|clear the throat|cough +hawk's-beard|1 +(noun)|hawk's-beards|wildflower|wild flower +hawk's-beards|2 +(noun)|hawk's-beard|wildflower|wild flower +(noun)|hawk's-beard|wildflower|wild flower +hawk-eyed|1 +(adj)|argus-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted +hawk moth|2 +(noun)|hawkmoth|sphingid|sphinx moth|hummingbird moth|moth +(noun)| +hawk nose|1 +(noun)|nose|olfactory organ +hawk owl|1 +(noun)|Surnia ulula|owl|bird of Minerva|bird of night|hooter +hawkbill|1 +(noun)|hawksbill turtle|hawksbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle|marine turtle +hawkbit|1 +(noun)|wildflower|wild flower +hawker|2 +(noun)|peddler|pedlar|packman|pitchman|seller|marketer|vender|vendor|trafficker +(noun)|falconer|hunter|huntsman +hawkeye state|1 +(noun)|Iowa|Hawkeye State|IA|American state +hawking|2 +(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist +(noun)|vending|peddling|vendition|selling|merchandising|marketing +hawkins|2 +(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer|privateersman +(noun)|Hawkins|Coleman Hawkins|saxophonist|saxist +hawkishness|1 +(noun)|political orientation|ideology|political theory +hawklike|1 +(adj)|hawky|beaked +hawkmoth|1 +(noun)|hawk moth|sphingid|sphinx moth|hummingbird moth|moth +hawksbill|1 +(noun)|hawksbill turtle|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle|marine turtle +hawksbill turtle|1 +(noun)|hawksbill|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle|marine turtle +hawkshaw|1 +(noun)|dick|gumshoe|detective|investigator|tec|police detective +hawkweed|2 +(noun)|herb|herbaceous plant +(noun)|herb|herbaceous plant +hawky|1 +(adj)|hawklike|beaked +hawkyns|1 +(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer|privateersman +haworth|1 +(noun)|Haworth|Sir Walter Norman Haworth|biochemist +hawse|1 +(noun)|hawsehole|hawsepipe|hole +hawsehole|1 +(noun)|hawse|hawsepipe|hole +hawsepipe|1 +(noun)|hawse|hawsehole|hole +hawser|1 +(noun)|rope +hawser bend|1 +(noun)|knot +hawthorn|1 +(noun)|haw|shrub|bush +hawthorne|1 +(noun)|Hawthorne|Nathaniel Hawthorne|writer|author +hay|1 +(noun)|fodder +hay-scented|1 +(noun)|hay-scented fern|scented fern|boulder fern|Dennstaedtia punctilobula|fern +hay-scented fern|1 +(noun)|hay-scented|scented fern|boulder fern|Dennstaedtia punctilobula|fern +hay bacillus|1 +(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|Bacillus|Bacilli|B +hay bale|1 +(noun)|bale +hay conditioner|1 +(noun)|haymaker|farm machine +hay fever|1 +(noun)|pollinosis|allergic rhinitis +hayastan|1 +(noun)|Armenia|Republic of Armenia|Hayastan|Asian country|Asian nation +haycock|1 +(noun)|haystack|hayrick|rick +haydn|2 +(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer +(noun)|Haydn|music +hayek|1 +(noun)|Hayek|Friedrich August von Hayek|economist|economic expert +hayes|2 +(noun)|Hayes|Helen Hayes|actress +(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States|United States President|President|Chief Executive +hayfield|1 +(noun)|meadow|grassland +hayfork|1 +(noun)|fork +haying|2 +(noun)|harvest|harvesting|harvest home +(noun)|haying time|season|time of year +haying time|1 +(noun)|haying|season|time of year +hayloft|1 +(noun)|mow|loft|attic|garret +haym salomon|1 +(noun)|Salomon|Haym Salomon|American Revolutionary leader|financier|moneyman +haymaker|2 +(noun)|hay conditioner|farm machine +(noun)|knockout punch|KO punch|Sunday punch|punch|clout|poke|lick|biff +haymaking|2 +(noun)|accomplishment|achievement +(noun)|labor|labour|toil +hayrack|2 +(noun)|rack +(noun)|hayrig|framework|frame|framing +hayrick|1 +(noun)|haystack|rick|stack +hayrig|1 +(noun)|hayrack|framework|frame|framing +hays|4 +(noun)|Hays|Will Hays|William Harrison Hays|lawyer|attorney +(noun)|Hays|Arthur Garfield Hays|lawyer|attorney +(noun)|Hays|town +(noun)|hay|fodder +hayseed|1 +(noun)|yokel|rube|hick|yahoo|bumpkin|chawbacon|rustic +haystack|1 +(noun)|hayrick|rick|stack +hayti|1 +(noun)|Hispaniola|Haiti|Hayti|island +haywire|3 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +(adj)|amiss|awry|wrong|malfunctioning |nonfunctional +(noun)|wire +haywood|1 +(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader|socialist +hazan|1 +(noun)|cantor|spiritual leader +hazard|6 +(noun)|jeopardy|peril|risk|danger +(noun)|luck|fortune|chance|phenomenon +(noun)|obstacle +(verb)|guess|venture|pretend|speculate +(verb)|venture|adventure|stake|jeopardize|risk|put on the line|lay on the line +(verb)|gamble|chance|risk|take chances|adventure|run a risk|take a chance|try|seek|attempt|essay|assay +hazard insurance|1 +(noun)|insurance +hazardia|1 +(noun)|Hazardia|genus Hazardia|asterid dicot genus +hazardia cana|1 +(noun)|hoary golden bush|Hazardia cana|shrub|bush +hazardous|1 +(adj)|risky|venturesome|venturous|dangerous |unsafe +hazardously|1 +(adv)|perilously|dangerously +hazardousness|1 +(noun)|perilousness|danger +haze|4 +(noun)|aerosol +(noun)|daze|fog|confusion|mental confusion|confusedness|disarray +(verb)|overcast|cloud +(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +haze over|1 +(verb)|obscure|befog|becloud|obnubilate|fog|cloud|mist|hide|conceal +hazel|4 +(adj)|chromatic +(noun)|hazel tree|Pomaderris apetala|tree +(noun)|wood +(noun)|hazelnut|hazelnut tree|nut tree +hazel alder|1 +(noun)|smooth alder|Alnus serrulata|alder|alder tree +hazel mouse|1 +(noun)|Muscardinus avellanarius|dormouse +hazel tree|1 +(noun)|hazel|Pomaderris apetala|tree +hazelnut|2 +(noun)|hazel|hazelnut tree|nut tree +(noun)|filbert|cobnut|cob|edible nut +hazelnut tree|1 +(noun)|hazelnut|hazel|nut tree +hazelwood|1 +(noun)|sweet gum|satin walnut|red gum|gumwood|gum +haziness|2 +(noun)|vagueness +(noun)|mistiness|cloudiness|murkiness|muddiness +hazlitt|1 +(noun)|Hazlitt|William Hazlitt|literary critic +hazmat|1 +(noun)|HAZMAT|material|stuff +hazy|2 +(adj)|brumous|foggy|misty|cloudy +(adj)|bleary|blurred|blurry|foggy|fuzzy|muzzy|indistinct +hb|1 +(noun)|hemoglobin|haemoglobin|Hb|hemoprotein|haemoprotein +hcfc|1 +(noun)|hydrochlorofluorocarbon|HCFC|chlorofluorocarbon|CFC +hcg|1 +(noun)|human chorionic gonadotropin|human chorionic gonadotrophin|HCG|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +hdl|1 +(noun)|high-density lipoprotein|HDL|alpha-lipoprotein|lipoprotein +hdl cholesterol|1 +(noun)|HDL cholesterol|cholesterol|cholesterin +hdtv|1 +(noun)|high-definition television|HDTV|television|telecasting|TV|video +he|2 +(noun)|helium|He|atomic number 2|chemical element|element|noble gas|inert gas|argonon +(noun)|letter|letter of the alphabet|alphabetic character +he-goat|1 +(noun)|billy|billy goat|goat|caprine animal +he-huckleberry|1 +(noun)|maleberry|male berry|privet andromeda|Lyonia ligustrina|shrub|bush +he-man|1 +(noun)|stud|macho-man|man|adult male +head|41 +(noun)|caput|external body part +(noun)|domestic animal +(noun)|mind|brain|psyche|nous|cognition|knowledge|noesis +(noun)|chief|top dog|leader +(noun)|formation +(noun)|pressure|pressure level|force per unit area +(noun)|top +(noun)|fountainhead|headspring|beginning|origin|root|rootage|source +(noun)|head word|word +(noun)|point|tip|peak +(noun)|linear unit +(noun)|capitulum|plant organ +(noun)|principal|school principal|head teacher|educator|pedagogue +(noun)|individual +(noun)|drug user|substance abuser|user +(noun)|object|physical object +(noun)|foam|froth +(noun)|forefront|front|front end|forepart +(noun)|pass|straits|juncture|occasion +(noun)|headway|progress|progression|advance +(noun)|point|mark +(noun)|question|subject|topic|theme +(noun)|heading|header|line +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|read/write head|coil +(noun)|obverse +(noun)|striker +(noun)|toilet|lavatory|lav|can|john|privy|bathroom +(noun)|projection +(noun)|drumhead|membrane +(noun)|oral sex|perversion|sexual perversion +(verb)|proceed|go forward|continue +(verb)|lead|direct +(verb)|lead|precede|lead +(verb)|head up|be +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|guide|channelize|channelise|control|command +(verb)|originate|arise|rise|develop|uprise|spring up|grow +(verb)|lie +(verb)|form|take form|take shape|spring +(verb)|remove|take|take away|withdraw +head-in-the-clouds|1 +(adj)|flighty|scatterbrained|irresponsible +head-on|2 +(adj)|hostile +(adj)|frontal|front +head-shrinker|2 +(noun)|psychiatrist|shrink|specialist|medical specialist +(noun)|headhunter|savage|barbarian +head-to-head|3 +(adj)|tete-a-tete|private +(adj)|neck and neck|nip and tuck|inconclusive +(adv)|neck and neck|nip and tuck +head ache|2 +(noun)|headache|cephalalgia|ache|aching +(noun)|concern|worry|headache|vexation|negative stimulus +head blight|1 +(noun)|blight +head cabbage|2 +(noun)|head cabbage plant|Brassica oleracea capitata|cabbage|cultivated cabbage|Brassica oleracea +(noun)|cabbage|chou +head cabbage plant|1 +(noun)|head cabbage|Brassica oleracea capitata|cabbage|cultivated cabbage|Brassica oleracea +head cold|1 +(noun)|cold|common cold +head count|2 +(noun)|headcount|count +(noun)| +head covering|1 +(noun)|veil|garment +head crash|1 +(noun)|crash +head for the hills|1 +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|take to the woods|escape|fly the coop|break away|leave|go forth|go away +head game|1 +(noun)|delusion|illusion|deception|deceit|dissembling|dissimulation +head gasket|1 +(noun)|gasket +head gate|2 +(noun)|sluicegate|sluice valve|floodgate|penstock|water gate|regulator +(noun)|gate +head home|1 +(verb)|go home|return|go back|get back|come back +head honcho|1 +(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|big fish|important person|influential person|personage +head lettuce|1 +(noun)|Lactuca sativa capitata|lettuce +head lice|2 +(noun)|pediculosis capitis|pediculosis|lousiness +(noun)|head louse|Pediculus capitis|louse|sucking louse +head linesman|1 +(noun)|football official +head louse|1 +(noun)|Pediculus capitis|louse|sucking louse +head nurse|1 +(noun)|matron|nurse|woman|adult female +head of hair|1 +(noun)|mane|hair +head of household|1 +(noun)|head|chief|top dog +head of state|1 +(noun)|chief of state|representative +head off|1 +(verb)|debar|obviate|deflect|avert|stave off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +head over heels|1 +(adv)|heels over head|topsy-turvy|topsy-turvily|in great confusion +head register|1 +(noun)|head voice|head tone|register +head restraint|1 +(noun)|headrest|cushion +head rhyme|1 +(noun)|alliteration|initial rhyme|beginning rhyme|rhyme|rime +head sea|1 +(noun)|sea +head shop|1 +(noun)|shop|store +head smut|1 +(noun)|Sphacelotheca reiliana|smut|smut fungus +head start|1 +(noun)|start|advantage|vantage +head teacher|1 +(noun)|principal|school principal|head|educator|pedagogue +head tone|1 +(noun)|head register|head voice|register +head trip|2 +(noun)|trip|experience +(noun)|self-gratification|gratification +head up|1 +(verb)|head|be +head voice|1 +(noun)|head register|head tone|register +head word|3 +(noun)|headword|content word|open-class word +(noun)|head|word +(noun)|headword|word +headache|2 +(noun)|concern|worry|vexation|negative stimulus +(noun)|head ache|cephalalgia|ache|aching +headache powder|1 +(noun)|aspirin powder|aspirin|acetylsalicylic acid|Bayer|Empirin|powder +headband|1 +(noun)|band +headboard|1 +(noun)|panel +headcheese|1 +(noun)|sausage +headcount|1 +(noun)|head count|count +headcounter|1 +(noun)|pollster|poll taker|canvasser|inquirer|enquirer|questioner|querier|asker +headdress|1 +(noun)|headgear|clothing|article of clothing|vesture|wear +headed|4 +(adj)|oriented |orientated +(adj)|headed +(adj)|headed |bicephalous|burr-headed|headlike +(adj)|mature +header|7 +(noun)|heading|head|line +(noun)|lintel|beam +(noun)|coping|cope|brick +(noun)|beam +(noun)|harvester|reaper +(noun)|hit|hitting|striking +(noun)|jump|jumping +headfast|1 +(noun)|mooring|mooring line +headfirst|2 +(adj)|headlong|forward +(adv)|headlong +headfish|1 +(noun)|ocean sunfish|sunfish|mola|plectognath|plectognath fish +headful|2 +(noun)|containerful +(noun)|body covering +headgear|3 +(noun)|headdress|clothing|article of clothing|vesture|wear +(noun)|hoist +(noun)|stable gear|saddlery|tack +headhunter|2 +(noun)|recruiter +(noun)|head-shrinker|savage|barbarian +heading|3 +(noun)|header|head|line +(noun)|bearing|aim|direction|way +(noun)|drift|gallery|passageway +headlamp|1 +(noun)|headlight|light|light source +headland|1 +(noun)|promontory|foreland|natural elevation|elevation +headless|2 +(adj)|headless |acephalous|beheaded|decapitated +(adj)|brainless|unintelligent |stupid +headlight|1 +(noun)|headlamp|light|light source +headlike|1 +(adj)|headed +headline|3 +(noun)|newspaper headline|heading|header|head +(verb)|advertise|publicize|advertize|publicise +(verb)|supply|provide|render|furnish +headliner|1 +(noun)|star|performer|performing artist +headlinese|1 +(noun)|expressive style|style +headlock|1 +(noun)|lock +headlong|5 +(adj)|hasty|hurried +(adj)|headfirst|forward +(adv)|headfirst +(adv)|precipitately +(adv)|rashly +headman|2 +(noun)|headsman|executioner|public executioner +(noun)|tribal chief|chieftain|leader +headmaster|1 +(noun)|schoolmaster|master|principal|school principal|head teacher|head +headmastership|1 +(noun)|headship +headmistress|1 +(noun)|principal|school principal|head teacher|head +headmistressship|1 +(noun)|headship +headphone|1 +(noun)|earphone|earpiece|phone|electro-acoustic transducer +headpiece|2 +(noun)|headstall|band +(noun)|helmet +headpin|1 +(noun)|kingpin|bowling pin|pin +headquarters|3 +(noun)|central office|main office|home office|home base|office|business office +(noun)|HQ|military headquarters|military installation +(noun)|military unit|military force|military group|force +headquarters staff|1 +(noun)|staff +headrace|1 +(noun)|watercourse|waterway +headrest|2 +(noun)|head restraint|cushion +(noun)|rest +headroom|2 +(noun)|headway|clearance|room|way|elbow room +(noun)|dynamic headroom|high fidelity|hi-fi +heads-up|1 +(adj)|wide-awake|alert +headsail|1 +(noun)|sail|canvas|canvass|sheet +headscarf|1 +(noun)|kerchief +headset|1 +(noun)|telephone receiver|receiver +headshake|1 +(noun)|headshaking|motion|movement|move|motility +headshaking|1 +(noun)|headshake|motion|movement|move|motility +headship|2 +(noun)|position|post|berth|office|spot|billet|place|situation +(noun)|position|post|berth|office|spot|billet|place|situation +headshot|3 +(noun)|photograph|photo|exposure|pic +(noun)|shot +(noun)|shooting|shot +headsman|1 +(noun)|headman|executioner|public executioner +headspace|1 +(noun)|indefinite quantity +headspring|1 +(noun)|fountainhead|head|beginning|origin|root|rootage|source +headstall|1 +(noun)|headpiece|band +headstand|1 +(noun)|acrobatic stunt|acrobatic feat +headstock|1 +(noun)|support +headstone|2 +(noun)|keystone|key|building block +(noun)|gravestone|tombstone|stone|memorial|monument +headstream|1 +(noun)|stream|watercourse +headstrong|1 +(adj)|froward|self-willed|willful|wilful|disobedient +headwaiter|1 +(noun)|captain|maitre d'hotel|maitre d'|dining-room attendant|restaurant attendant +headwaters|1 +(noun)|beginning|origin|root|rootage|source +headway|2 +(noun)|headroom|clearance|room|way|elbow room +(noun)|head|progress|progression|advance +headwind|1 +(noun)|wind|air current|current of air +headword|2 +(noun)|head word|content word|open-class word +(noun)|word +heady|1 +(adj)|intoxicating|exciting +heal|3 +(verb)|mend|better|improve|ameliorate|meliorate +(verb)|better|improve|ameliorate|meliorate +(verb)|bring around|cure|help|aid +heal all|2 +(noun)|self-heal|Prunella vulgaris|herb|herbaceous plant +(noun)|yellow clintonia|Clintonia borealis|clintonia|Clinton's lily +healed|1 +(adj)|cured|recovered|well +healer|1 +(noun)|therapist|expert +healing|2 +(adj)|curative|alterative|remedial|sanative|therapeutic|healthful +(noun)|bodily process|body process|bodily function|activity +healing herb|1 +(noun)|comfrey|herb +health|2 +(noun)|wellness|wellbeing|well-being|welfare|upbeat|eudaemonia|eudaimonia +(noun)|condition|status +health and human services|1 +(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department +health care|3 +(noun)|social insurance +(noun)|healthcare|care|attention|aid|tending +(noun)| +health care delivery|1 +(noun)|healthcare delivery|care delivery|provision|supply|supplying +health care provider|1 +(noun)|health professional|caregiver|professional|professional person +health check|1 +(noun)|checkup|medical checkup|medical examination|medical exam|medical|examination|scrutiny +health club|1 +(noun)|health spa|spa|place of business|business establishment +health code|1 +(noun)|sanitary code|code|codification +health facility|1 +(noun)|medical building|healthcare facility|building|edifice +health food|1 +(noun)|food +health hazard|1 +(noun)|hazard|jeopardy|peril|risk +health insurance|1 +(noun)|insurance +health maintenance organization|1 +(noun)|HMO|health insurance +health problem|1 +(noun)|ill health|unhealthiness|pathological state +health profession|1 +(noun)|profession|community +health professional|1 +(noun)|health care provider|caregiver|professional|professional person +health spa|1 +(noun)|spa|health club|place of business|business establishment +healthcare|1 +(noun)|health care|care|attention|aid|tending +healthcare delivery|1 +(noun)|health care delivery|care delivery|provision|supply|supplying +healthcare facility|1 +(noun)|medical building|health facility|building|edifice +healthful|2 +(adj)|healthful |anthelmintic|anthelminthic|helminthic|parasiticidal|antimicrobial|antimicrobic|carminative|flatus-relieving|cathartic|psychotherapeutic|curative|healing|alterative|remedial|sanative|therapeutic|drugless|beneficial|good|salutary|medicative|medicinal|organic|preventive|preventative|prophylactic|recuperative|restorative|antiseptic|wholesome +(adj)|sanitary |hygienic|hygienical +healthfulness|1 +(noun)|wholesomeness +healthier|6 +(adj)|fitter|better +(adj)|healthy |bouncing|firm|flourishing|growing|thriving|good|sound|hale|whole|hearty|hearty|full-blooded|lusty|red-blooded|rubicund|ruddy|sanguine|well-preserved|wholesome|flushed|rose-cheeked|rosy|rosy-cheeked|anicteric|fit|healthy|robust|well|wholesome +(adj)|healthy|sound +(adj)|healthy|salubrious|good for you|wholesome +(adj)|fit |healthy|able|able-bodied|conditioned|in condition|healthy|sound|well +(adj)|healthy|intelligent|levelheaded|sound|reasonable |sensible +healthiness|1 +(noun)|good health|physiological state|physiological condition +healthy|5 +(adj)|healthy |bouncing|firm|flourishing|growing|thriving|good|sound|hale|whole|hearty|hearty|full-blooded|lusty|red-blooded|rubicund|ruddy|sanguine|well-preserved|wholesome|flushed|rose-cheeked|rosy|rosy-cheeked|anicteric|fit|robust|well|wholesome +(adj)|sound +(adj)|salubrious|good for you|wholesome +(adj)|fit |able|able-bodied|conditioned|in condition|sound|well +(adj)|intelligent|levelheaded|sound|reasonable |sensible +heap|6 +(noun)|pile|mound|cumulus|collection|aggregation|accumulation|assemblage +(noun)|batch|deal|flock|good deal|great deal|hatful|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|bus|jalopy|car|auto|automobile|machine|motorcar|dysphemism +(verb)|give +(verb)|stack|pile|arrange|set up|heap up +(verb)|fill|fill up|make full +heap up|1 +(verb)|pile up|stack up|gather|garner|collect|pull together +heaped|1 +(adj)|heaped-up|piled|cumulous|concentrated +heaped-up|1 +(adj)|heaped|piled|cumulous|concentrated +heaps|4 +(noun)|tons|dozens|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|pile|heap|mound|cumulus|collection|aggregation|accumulation|assemblage +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|bus|jalopy|heap|car|auto|automobile|machine|motorcar|dysphemism +hear|5 +(verb)|perceive|comprehend +(verb)|learn|get word|get wind|pick up|find out|get a line|discover|see +(verb)|try|probe|examine +(verb)|pick up|receive +(verb)|listen|take heed|concentrate|focus|center|centre|pore|rivet +hear out|1 +(verb)|listen +hearable|1 +(adj)|audible |sonic|sounding|loud|perceptible +heard|1 +(adj)|detected +hearer|1 +(noun)|listener|auditor|attender|perceiver|observer|beholder +hearing|6 +(adj)|hearing |sharp-eared|quick-eared +(noun)|proceeding|legal proceeding|proceedings +(noun)|audience|opportunity|chance +(noun)|earshot|earreach|range|reach +(noun)|listening|sensing|perception +(noun)|session +hearing-impaired|1 +(adj)|hard-of-hearing|deaf +hearing aid|2 +(noun)|deaf-aid|electronic device +(noun)|ear trumpet|acoustic device +hearing disorder|1 +(noun)|hearing impairment|disability|disablement|handicap|impairment +hearing dog|1 +(noun)|working dog +hearing examiner|1 +(noun)|hearing officer|official|functionary +hearing impairment|1 +(noun)|hearing disorder|disability|disablement|handicap|impairment +hearing loss|1 +(noun)|deafness|hearing impairment|hearing disorder +hearing officer|1 +(noun)|hearing examiner|official|functionary +hearken|1 +(verb)|hark|harken|listen +hearsay|2 +(adj)|indirect +(noun)|rumor|rumour|gossip|comment|scuttlebutt +hearsay evidence|1 +(noun)|evidence +hearsay rule|1 +(noun)|rule of evidence +hearse|1 +(noun)|motor vehicle|automotive vehicle +hearst|1 +(noun)|Hearst|William Randolph Hearst|publisher|newspaper publisher +heart|10 +(noun)|bosom|intuition|hunch|suspicion +(noun)|pump|ticker|internal organ|viscus +(noun)|mettle|nerve|spunk|courage|courageousness|bravery +(noun)|center|centre|middle|eye|area|country +(noun)|kernel|substance|core|center|essence|gist|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|spirit|disposition|temperament +(noun)|plane figure|two-dimensional figure +(noun)|variety meat|organs +(noun)|affection|affectionateness|fondness|tenderness|warmheartedness|feeling +(noun)|playing card +heart-healthy|1 +(adj)|wholesome +heart-leaf|3 +(noun)|heartleaf|Asarum shuttleworthii|herb|herbaceous plant +(noun)|heartleaf|Asarum virginicum|wild ginger +(noun)| +heart-leaved aster|1 +(noun)|Aster cordifolius|wood aster +heart-lung machine|1 +(noun)|pump +heart-shaped|1 +(adj)|cordate|cordiform|simple |unsubdivided +heart-to-heart|2 +(adj)|candid|open|ingenuous |artless +(noun)|talk|talking +heart-whole|1 +(adj)|wholehearted|whole-souled|sincere +heart and soul|2 +(noun)|kernel|substance|core|center|essence|gist|heart|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(adv)|body and soul +heart attack|1 +(noun)|attack|heart failure|coronary failure +heart block|1 +(noun)|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia|arrhythmia +heart cherry|2 +(noun)|oxheart|oxheart cherry|sweet cherry|Prunus avium +(noun)|oxheart|oxheart cherry|sweet cherry|black cherry +heart condition|1 +(noun)|heart disease|cardiopathy|cardiovascular disease +heart disease|1 +(noun)|heart condition|cardiopathy|cardiovascular disease +heart failure|1 +(noun)|coronary failure|heart disease|heart condition|cardiopathy|failure +heart line|1 +(noun)|line of heart|love line|mensal line|wrinkle|furrow|crease|crinkle|seam|line +heart massage|1 +(noun)|cardiac massage|emergency procedure|massage +heart monitor|1 +(noun)|cardiac monitor|monitor +heart murmur|1 +(noun)|cardiac murmur|murmur|symptom +heart muscle|1 +(noun)|cardiac muscle|muscle|muscular tissue +heart of dixie|1 +(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state +heart pea|1 +(noun)|balloon vine|Cardiospermum halicacabum|soapberry vine +heart rate|1 +(noun)|pulse|pulse rate|vital sign|rate +heart rhythm|1 +(noun)|cardiac rhythm|rhythm|regular recurrence +heart specialist|1 +(noun)|cardiologist|heart surgeon|specialist|medical specialist +heart surgeon|1 +(noun)|cardiologist|heart specialist|specialist|medical specialist +heart surgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +heart urchin|1 +(noun)|sea urchin +heart valve|2 +(noun)|cardiac valve|valve +(noun)|implant +heart ventricle|1 +(noun)|ventricle|chamber +heartache|1 +(noun)|grief|heartbreak|brokenheartedness|sorrow +heartbeat|3 +(noun)|pulse|pulsation|beat|periodic event|recurrent event +(noun)|blink of an eye|flash|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +(noun)|force +heartbreak|1 +(noun)|grief|heartache|brokenheartedness|sorrow +heartbreaking|1 +(adj)|grievous|heartrending|sorrowful +heartbroken|1 +(adj)|brokenhearted|heartsick|sorrowful +heartburn|1 +(noun)|pyrosis|symptom +heartburning|1 +(noun)|resentment|bitterness|gall|rancor|rancour +hearted|1 +(adj)|hearted +hearten|1 +(verb)|cheer|recreate|embolden|encourage +heartening|1 +(adj)|inspiriting|encouraging +heartfelt|1 +(adj)|dear|devout|earnest|sincere +hearth|3 +(noun)|fireplace|open fireplace|recess|niche +(noun)|fireside|dwelling|home|domicile|abode|habitation|dwelling house +(noun)|fireside|area|country +hearth money|1 +(noun)|Peter's pence|offering +hearthrug|1 +(noun)|rug|carpet|carpeting +hearthstone|1 +(noun)|stone +heartily|1 +(adv)|cordially|warmly +heartiness|1 +(noun)|wholeheartedness|sincerity +heartland|1 +(noun)|region +heartleaf|2 +(noun)|heart-leaf|Asarum shuttleworthii|herb|herbaceous plant +(noun)|heart-leaf|Asarum virginicum|wild ginger +heartleaf arnica|1 +(noun)|Arnica cordifolia|wildflower|wild flower +heartleaf manzanita|1 +(noun)|Arctostaphylos andersonii|manzanita +heartless|3 +(adj)|heartless |cruel|unkind +(adj)|hardhearted |flinty|obdurate|stony +(adj)|spiritless +heartlessness|1 +(noun)|coldheartedness|hardheartedness|unconcern +heartrending|1 +(adj)|grievous|heartbreaking|sorrowful +heartrot|1 +(noun)|plant disease +hearts|11 +(noun)|Black Maria|whist|long whist|short whist +(noun)|heart|bosom|intuition|hunch|suspicion +(noun)|heart|pump|ticker|internal organ|viscus +(noun)|heart|mettle|nerve|spunk|courage|courageousness|bravery +(noun)|center|centre|middle|heart|eye|area|country +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|heart|spirit|disposition|temperament +(noun)|heart|plane figure|two-dimensional figure +(noun)|heart|variety meat|organs +(noun)|affection|affectionateness|fondness|tenderness|heart|warmheartedness|feeling +(noun)|heart|playing card +heartsease|4 +(noun)|wild pansy|Johnny-jump-up|love-in-idleness|pink of my John|Viola tricolor|viola +(noun)|two-eyed violet|Viola ocellata|violet +(noun)|field pansy|Viola arvensis|viola +(noun)|peace|peacefulness|peace of mind|repose|serenity|ataraxis|tranquillity|tranquility|quietness|quietude +heartseed|1 +(noun)|Cardiospermum grandiflorum|soapberry vine +heartsick|2 +(adj)|brokenhearted|heartbroken|sorrowful +(adj)|despondent|hopeless +heartsickness|1 +(noun)|despondency|despondence|disconsolateness|depression +heartstrings|1 +(noun)|love|compassion|compassionateness +heartthrob|1 +(noun)|idol|matinee idol +heartwarming|1 +(adj)|moving +heartwood|1 +(noun)|duramen|wood +hearty|5 +(adj)|cordial|warm +(adj)|satisfying|solid|substantial|wholesome +(adj)|full-blooded|lusty|red-blooded|healthy +(adj)|healthy +(adj)|complete +heat|11 +(noun)|heat energy|energy +(noun)|hotness|high temperature|temperature +(noun)|warmth|temperature +(noun)|warmth|passion|emotionality|emotionalism +(noun)|estrus|oestrus|rut|physiological state|physiological condition +(noun)|race +(noun)|heating system|heating plant|heating|utility +(verb)|heat up|change|alter|modify +(verb)|supply|provide|render|furnish +(verb)|inflame|stir up|wake|ignite|fire up|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|hot up|heat up|change state|turn +heat-absorbing|1 +(adj)|endothermic |endothermal|endoergic|energy-absorbing +heat-releasing|1 +(adj)|exothermic |exothermal|exoergic|energy-releasing +heat-seeking missile|1 +(noun)|missile +heat barrier|1 +(noun)|thermal barrier|limit|bounds|boundary +heat content|1 +(noun)|total heat|enthalpy|H|physical property +heat dissipation|1 +(noun)|cooling|chilling|temperature reduction +heat energy|1 +(noun)|heat|energy +heat engine|1 +(noun)|engine +heat exchanger|1 +(noun)|device +heat exhaustion|1 +(noun)|heat prostration|prostration|heatstroke|heat hyperpyrexia +heat flash|1 +(noun)|flash +heat hyperpyrexia|1 +(noun)|heatstroke|ill health|unhealthiness|health problem +heat lamp|1 +(noun)|infrared lamp|electric heater|electric fire +heat lightning|1 +(noun)|lightning +heat of condensation|1 +(noun)|latent heat|heat of transformation +heat of dissociation|1 +(noun)|heat|heat energy +heat of formation|1 +(noun)|heat|heat energy +heat of fusion|1 +(noun)|latent heat|heat of transformation +heat of solidification|1 +(noun)|latent heat|heat of transformation +heat of solution|1 +(noun)|heat|heat energy +heat of sublimation|1 +(noun)|latent heat|heat of transformation +heat of transformation|1 +(noun)|latent heat|heat|heat energy +heat of vaporisation|1 +(noun)|heat of vaporization|latent heat|heat of transformation +heat of vaporization|1 +(noun)|heat of vaporisation|latent heat|heat of transformation +heat prostration|1 +(noun)|heat exhaustion|prostration|heatstroke|heat hyperpyrexia +heat pump|1 +(noun)|apparatus|setup +heat rash|1 +(noun)|prickly heat|miliaria|rash|roseola|efflorescence|skin rash +heat ray|1 +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +heat shield|1 +(noun)|protective covering|protective cover|protection +heat sink|1 +(noun)|conductor|sink +heat unit|1 +(noun)|work unit|energy unit|unit of measurement|unit +heat up|3 +(verb)|heat|hot up|change state|turn +(verb)|heat|change|alter|modify +(verb)|hot up|screw up|intensify|compound|heighten|deepen +heat wave|1 +(noun)|wave +heatable|1 +(adj)|hot +heated|2 +(adj)|heated up|het|het up|hot +(adj)|hot +heated up|1 +(adj)|heated|het|het up|hot +heatedly|1 +(adv)|hotly +heater|2 +(noun)|warmer|device +(noun)|fastball|smoke|hummer|bullet|pitch|delivery +heath|2 +(noun)|shrub|bush +(noun)|heathland|barren|waste|wasteland +heath aster|2 +(noun)|Aster ericoides|aster +(noun)|Aster arenosus|aster +heath family|1 +(noun)|Ericaceae|family Ericaceae|dilleniid dicot family|Ericales|order Ericales +heath hen|2 +(noun)|Tympanuchus cupido cupido|prairie chicken|prairie grouse|prairie fowl +(noun)|grayhen|gray hen|black grouse +heath pea|1 +(noun)|earth-nut pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine +heath violet|1 +(noun)|dog violet|Viola canina|violet +heathen|2 +(adj)|heathenish|pagan|ethnic|irreligious +(noun)|pagan|gentile|infidel|nonreligious person +heathenish|1 +(adj)|heathen|pagan|ethnic|irreligious +heathenism|1 +(noun)|paganism|pagan religion|religion|faith|religious belief +heather|2 +(noun)|ling|Scots heather|broom|Calluna vulgaris|heath +(noun)|heather mixture|color|colour|coloring|colouring +heather bell|1 +(noun)|bell heather|fine-leaved heath|Erica cinerea|erica|true heath +heather mixture|1 +(noun)|heather|color|colour|coloring|colouring +heathfowl|1 +(noun)|European black grouse|Lyrurus tetrix|black grouse +heathland|1 +(noun)|heath|barren|waste|wasteland +heathlike|1 +(adj)|shrub|bush +heating|3 +(adj)|calefactory|calefactive|hot +(noun)|warming|temperature change +(noun)|heating system|heating plant|heat|utility +heating element|1 +(noun)|component|constituent|element +heating oil|1 +(noun)|fuel oil|oil|fuel +heating pad|1 +(noun)|hot pad|heater|warmer +heating plant|1 +(noun)|heating system|heating|heat|utility +heating system|1 +(noun)|heating plant|heating|heat|utility +heatless|1 +(adj)|cold +heatstroke|1 +(noun)|heat hyperpyrexia|ill health|unhealthiness|health problem +heaume|1 +(noun)|helmet +heave|14 +(noun)|heaving|rise|rising|ascent|ascension +(noun)|movement|motion +(noun)|heaving|rise|ascent|ascension|ascending +(noun)|retch|spasm +(noun)|lift|raise|propulsion|actuation +(noun)|heaving|throw +(verb)|utter|emit|let out|let loose +(verb)|throw +(verb)|billow|surge|inflate|blow up +(verb)|heave up|heft|heft up|lift +(verb)|move +(verb)|pant|puff|gasp|blow +(verb)|buckle|warp|change surface +(verb)|gag|retch +heave up|1 +(verb)|heave|heft|heft up|lift +heaven|2 +(noun)|eden|paradise|nirvana|promised land|Shangri-la|region|part +(noun)|Heaven|imaginary place|mythical place +heaven-sent|1 +(adj)|providential|miraculous|fortunate +heavenly|3 +(adj)|celestial|imaginary place|mythical place +(adj)|celestial|entity +(adj)|heavenly |ambrosial|ambrosian|celestial|ethereal|supernal|divine|godly|divine|godlike|paradisiacal|paradisiac|paradisaical|paradisaic|paradisal|providential|divine|translunar|translunary|superlunar|superlunary|immortal|sacred|supernal +heavenly body|1 +(noun)|celestial body|natural object +heavenly city|1 +(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven +heavenly jewel|1 +(noun)|Tien-pao|Heavenly Jewel|Chinese deity +heavens|3 +(noun)|celestial sphere|sphere|empyrean|firmament|vault of heaven|welkin|surface +(noun)|eden|paradise|nirvana|heaven|promised land|Shangri-la|region|part +(noun)|Heaven|imaginary place|mythical place +heavenward|2 +(adj)|skyward|up +(adv)|heavenwards|heavenwardly +heavenwardly|1 +(adv)|heavenward|heavenwards +heavenwards|1 +(adv)|heavenward|heavenwardly +heaver|2 +(noun)|bar +(noun)|workman|working man|working person +heaves|7 +(noun)|broken wind|animal disease +(noun)|heave|heaving|rise|rising|ascent|ascension +(noun)|heave|movement|motion +(noun)|heave|heaving|rise|ascent|ascension|ascending +(noun)|heave|retch|spasm +(noun)|lift|raise|heave|propulsion|actuation +(noun)|heave|heaving|throw +heavier-than-air|1 +(adj)|heavy +heavier-than-air craft|1 +(noun)|aircraft +heavily|3 +(adv)|to a great extent +(adv)|heavy +(adv)|intemperately|hard +heavily traveled|1 +(adj)|traveled +heaviness|2 +(noun)|weightiness|weight +(noun)|thickness|wideness|broadness +heaving|5 +(adj)|moving +(noun)|heave|rise|rising|ascent|ascension +(noun)|panting|breathing|external respiration|respiration|ventilation +(noun)|heave|rise|ascent|ascension|ascending +(noun)|heave|throw +heaviside|1 +(noun)|Heaviside|Oliver Heaviside|physicist|electrical engineer +heaviside layer|1 +(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region|part +heavy|32 +(adj)|heavy |dense|doughy|soggy|heavyweight|hefty|heavier-than-air|massive|middleweight|ponderous +(adj)|heavy |harsh|thick +(adj)|heavy +(adj)|thick +(adj)|thick|wide |broad +(adj)|heavy |burdensome|onerous|taxing|distressing|distressful|disturbing|perturbing|troubling|worrisome|worrying|leaden|weighted|oppressive|weighty +(adj)|fleshy|overweight|fat +(adj)|clayey|cloggy|compact +(adj)|lowering|sullen|threatening|cloudy +(adj)|heavy |big +(adj)|heavy +(adj)|wicked +(adj)|dense|impenetrable|thick +(adj)|thick +(adj)|hard|intemperate +(adj)|big|intemperate +(adj)|accented|strong|stressed +(adj)|sonorous|full +(adj)|grave|grievous|weighty|important |of import +(adj)|lumbering|ponderous|heavy-footed +(adj)|heavy-duty +(adj)|indigestible +(adj)|steep +(adj)|weighed down|full +(adj)|labored|laboured|effortful +(adj)|arduous|backbreaking|grueling|gruelling|hard|laborious|punishing|toilsome|effortful +(adj)|leaden|dull +(adj)|profound|sound|wakeless|deep +(adj)|big|enceinte|expectant|gravid|great|large|with child|pregnant +(noun)|actor|histrion|player|thespian|role player +(noun)|character|role|theatrical role|part|persona +(adv)|heavily +heavy-armed|1 +(adj)|robust +heavy-coated|1 +(adj)|clothed |clad +heavy-duty|1 +(adj)|heavy-duty |heavy|industrial +heavy-footed|1 +(adj)|heavy-footed |heavy|lumbering|ponderous +heavy-handed|2 +(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|handless|left-handed|maladroit +(adj)|roughshod|domineering +heavy-laden|2 +(adj)|care-laden|troubled +(adj)|burdened|loaded down|encumbered +heavy cream|1 +(noun)|cream +heavy hitter|1 +(noun)|important person|influential person|personage +heavy hydrogen|1 +(noun)|deuterium|hydrogen atom|isotope +heavy lifting|1 +(noun)|work +heavy metal|2 +(noun)|metallic element|metal|alloy|metal +(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +heavy particle|1 +(noun)|baryon|hadron|fermion +heavy spar|1 +(noun)|barite|barytes|barium sulphate|mineral +heavy swell|1 +(noun)|ground swell|swell|crestless wave +heavy water|1 +(noun)|deuterium oxide|moderator +heavy weapon|1 +(noun)|artillery|gun|ordnance|armament +heavy whipping cream|1 +(noun)|double creme|cream +heavyhearted|1 +(adj)|sad +heavyheartedness|1 +(noun)|melancholy +heavyset|1 +(adj)|compact|stocky|thick|thickset|fat +heavyweight|6 +(adj)|heavy +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +(noun)|prizefighter|gladiator +(noun)|giant|hulk|whale|large person +(noun)|colossus|behemoth|giant|titan|important person|influential person|personage +hebbel|1 +(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist|playwright +hebdomad|1 +(noun)|week|time period|period of time|period +hebdomadal|1 +(adj)|hebdomadary|time period|period of time|period +hebdomadally|1 +(adv)|weekly|every week|each week +hebdomadary|1 +(adj)|hebdomadal|time period|period of time|period +hebe|1 +(noun)|Hebe|Greek deity +hebei|1 +(noun)|Hebei|Hopei|Hopeh|Hebei province|state|province +hebei province|1 +(noun)|Hebei|Hopei|Hopeh|Hebei province|state|province +hebephrenia|1 +(noun)|hebephrenic schizophrenia|disorganized schizophrenia|disorganized type schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +hebephrenic|1 +(adj)|schizophrenic|insane +hebephrenic schizophrenia|1 +(noun)|hebephrenia|disorganized schizophrenia|disorganized type schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +hebetude|1 +(noun)|lethargy|lassitude|sluggishness +hebraic|2 +(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language +(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|human|soul +hebraic alphabet|1 +(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet +hebraical|2 +(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|human|soul +(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language +hebraism|1 +(noun)|Judaism|Hebraism|Jewish religion|religion|faith +hebraist|1 +(noun)|Hebraist|linguist|linguistic scientist +hebrew|4 +(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|human|soul +(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language +(noun)|Hebrew|Canaanitic|Canaanitic language +(noun)|Jew|Hebrew|Israelite|person|individual|someone|somebody|mortal|human|soul +hebrew alphabet|1 +(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet +hebrew calendar|1 +(noun)|Jewish calendar|Hebrew calendar|lunisolar calendar +hebrew lesson|1 +(noun)|Hebrew lesson|language lesson +hebrew script|1 +(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet +hebrew scripture|1 +(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text|sacred writing|religious writing|religious text +hebrews|4 +(noun)|Hebrews|Israelites|ethnic group|ethnos|chosen people +(noun)|Epistle to the Hebrews|Hebrews|book +(noun)|Hebrew|Canaanitic|Canaanitic language +(noun)|Jew|Hebrew|Israelite|person|individual|someone|somebody|mortal|human|soul +hebridean|1 +(adj)|Hebridean|archipelago +hebridean islands|1 +(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago +hebridean isles|1 +(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago +hebrides|1 +(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago +hecate|1 +(noun)|Hecate|Greek deity +hecatomb|1 +(noun)|sacrifice|ritual killing +hecht|1 +(noun)|Hecht|Ben Hecht|writer|author +heck|1 +(noun)|euphemism +heckelphone|1 +(noun)|basset oboe|oboe|hautboy|hautbois +heckle|3 +(noun)|hatchel|comb +(verb)|hackle|hatchel|comb +(verb)|interrupt|disrupt|break up|cut off +heckler|1 +(noun)|badgerer|troublemaker|trouble maker|troubler|mischief-maker|bad hat +heckling|1 +(noun)|barracking|break|interruption|disruption|gap +hectare|1 +(noun)|area unit|square measure +hectic|1 +(adj)|feverish|agitated +hectically|1 +(adv)|frenziedly +hectogram|1 +(noun)|hg|metric weight unit|weight unit +hectograph|2 +(noun)|heliotype|duplicator|copier|collotype|collotype printing|photogelatin process +(verb)|copy|re-create +hectoliter|1 +(noun)|hectolitre|hl|metric capacity unit +hectolitre|1 +(noun)|hectoliter|hl|metric capacity unit +hectometer|1 +(noun)|hectometre|hm|metric linear unit +hectometre|1 +(noun)|hectometer|hm|metric linear unit +hector|2 +(noun)|Hector|mythical being +(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|push around|intimidate +hector berlioz|1 +(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer +hector hevodidbon|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +hector hugh munro|1 +(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer|author +hedeoma|1 +(noun)|Hedeoma|genus Hedeoma|asterid dicot genus +hedeoma oil|1 +(noun)|pennyroyal oil|oil +hedeoma pulegioides|1 +(noun)|pennyroyal|American pennyroyal|Hedeoma pulegioides|herb|herbaceous plant +hedera|1 +(noun)|Hedera|genus Hedera|rosid dicot genus +hedera helix|1 +(noun)|ivy|common ivy|English ivy|Hedera helix|vine +hedge|7 +(noun)|hedgerow|fence|fencing +(noun)|hedging|security|protection +(noun)|hedging|evasion|equivocation +(verb)|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid +(verb)|hem in +(verb)|hedge in|enclose|inclose|shut in +(verb)|minimize|minimise +hedge bindweed|1 +(noun)|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed +hedge fund|2 +(noun)|hedgefund|investment company|investment trust|investment firm|fund +(noun)| +hedge garlic|1 +(noun)|garlic mustard|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer|cruciferous plant +hedge in|1 +(verb)|hedge|enclose|inclose|shut in +hedge maple|1 +(noun)|field maple|Acer campestre|maple +hedge mustard|1 +(noun)|Sisymbrium officinale|herb|herbaceous plant +hedge nettle|2 +(noun)|Stachys palustris|herb|herbaceous plant +(noun)|dead nettle|Stachys sylvatica|herb|herbaceous plant +hedge pink|1 +(noun)|soapwort|bouncing Bet|bouncing Bess|Saponaria officinalis|flower +hedge sparrow|1 +(noun)|sparrow|dunnock|Prunella modularis|accentor +hedge thorn|1 +(noun)|natal plum|Carissa bispinosa|carissa +hedge trimmer|1 +(noun)|garden tool|lawn tool +hedge violet|1 +(noun)|wood violet|Viola sylvatica|Viola reichenbachiana|violet +hedged|1 +(adj)|weasel-worded|qualified +hedgefund|1 +(noun)|hedge fund|investment company|investment trust|investment firm|fund +hedgehog|2 +(noun)|porcupine|rodent|gnawer|gnawing animal +(noun)|Erinaceus europaeus|Erinaceus europeaeus|insectivore +hedgehog cactus|1 +(noun)|echinocactus|barrel cactus +hedgehog cereus|1 +(noun)|cactus +hedgehop|1 +(verb)|flat-hat|fly|aviate|pilot +hedger|3 +(noun)|equivocator|respondent|responder|answerer +(noun)|speculator|plunger +(noun)|gardener +hedgerow|1 +(noun)|hedge|fence|fencing +hedging|2 +(noun)|hedge|security|protection +(noun)|hedge|evasion|equivocation +hediondilla|1 +(noun)|creosote bush|coville|Larrea tridentata|shrub|bush +hedjaz|1 +(noun)|Hejaz|Hedjaz|Hijaz|geographical area|geographic area|geographical region|geographic region +hedonic|1 +(adj)|hedonistic|epicurean|indulgent +hedonism|2 +(noun)|ethical motive|ethics|morals|morality +(noun)|ethics|moral philosophy +hedonist|1 +(noun)|pleasure seeker|sensualist +hedonistic|1 +(adj)|hedonic|epicurean|indulgent +hedysarum|1 +(noun)|Hedysarum|genus Hedysarum|rosid dicot genus +hedysarum boreale|1 +(noun)|sweet vetch|Hedysarum boreale|subshrub|suffrutex +hedysarum coronarium|1 +(noun)|French honeysuckle|sulla|Hedysarum coronarium|subshrub|suffrutex +hee-haw|2 +(noun)|horselaugh|ha-ha|haw-haw|laugh|laughter +(verb)|bray|utter|emit|let out|let loose +heebie-jeebies|1 +(noun)|jitters|screaming meemies|nervousness|nerves +heed|2 +(noun)|attentiveness|regard|paying attention|attention|attending +(verb)|mind|listen|obey +heedful|3 +(adj)|heedful |attentive|thoughtful +(adj)|careful|mindful |aware +(adj)|advertent|attentive +heedfully|1 +(adv)|mindfully|advertently +heedfulness|1 +(noun)|mindfulness|attentiveness +heedless|2 +(adj)|heedless |thoughtless|unheeding|careless|thoughtless|regardless|deaf|indifferent +(adj)|reckless|careless +heedlessly|1 +(adv)|carelessly +heedlessness|3 +(noun)|inattentiveness|inattention +(noun)|mindlessness|rashness|imprudence +(noun)|unmindfulness|inadvertence|inadvertency|attentiveness +heel|12 +(noun)|bottom|underside|undersurface +(noun)|skeletal structure +(noun)|cad|bounder|blackguard|dog|hound|villain|scoundrel +(noun)|end +(noun)|end +(noun)|part|portion +(noun)|counter|piece of leather +(verb)|list|lean|tilt|tip|slant|angle +(verb)|follow|travel along +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|hit +(verb)|reheel|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +heelbone|1 +(noun)|calcaneus|os tarsi fibulare|bone|os +heels over head|1 +(adv)|head over heels|topsy-turvy|topsy-turvily|in great confusion +heft|3 +(noun)|heftiness|massiveness|ponderousness|ponderosity|heaviness|weightiness +(verb)|heave|heave up|heft up|lift +(verb)|weigh|librate +heft up|1 +(verb)|heave|heave up|heft|lift +heftiness|1 +(noun)|heft|massiveness|ponderousness|ponderosity|heaviness|weightiness +hefty|3 +(adj)|brawny|muscular|powerful|sinewy|strong +(adj)|heavy +(adj)|goodly|goodish|respectable|sizable|sizeable|tidy|considerable +hegari|1 +(noun)|grain sorghum +hegel|1 +(noun)|Hegel|Georg Wilhelm Friedrich Hegel|philosopher +hegelian|1 +(adj)|Hegelian|philosopher +hegemony|1 +(noun)|political system|form of government +hegira|2 +(noun)|Hegira|Hejira|escape|flight +(noun)|exodus|hejira|escape|flight +heidegger|1 +(noun)|Heidegger|Martin Heidegger|philosopher +heidelberg man|1 +(noun)|Heidelberg man|Homo heidelbergensis|primitive|primitive person +heifer|1 +(noun)|cow|moo-cow +height|4 +(noun)|tallness|dimension +(noun)|acme|elevation|peak|pinnacle|summit|superlative|top|degree|level|stage|point +(noun)|stature|bodily property +(noun)|altitude|elevation +heighten|6 +(verb)|rise|increase +(verb)|increase +(verb)|enhance|raise|intensify|compound|deepen +(verb)|raise|lift|elevate|get up|bring up +(verb)|sharpen|intensify|compound|deepen +(verb)|intensify|compound|deepen|increase +heightening|1 +(adj)|intensifying +heights|5 +(noun)|high|topographic point|place|spot +(noun)|height|tallness|dimension +(noun)|acme|height|elevation|peak|pinnacle|summit|superlative|top|degree|level|stage|point +(noun)|stature|height|bodily property +(noun)|altitude|height|elevation +heilong jiang|1 +(noun)|Amur|Amur River|Heilong Jiang|river +heimdal|1 +(noun)|Heimdall|Heimdal|Heimdallr|Norse deity +heimdall|1 +(noun)|Heimdall|Heimdal|Heimdallr|Norse deity +heimdallr|1 +(noun)|Heimdall|Heimdal|Heimdallr|Norse deity +heimlich maneuver|1 +(noun)|Heimlich maneuver|Heimlich manoeuvere|emergency procedure +heimlich manoeuvere|1 +(noun)|Heimlich maneuver|Heimlich manoeuvere|emergency procedure +heinlein|1 +(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer|author +heinous|1 +(adj)|atrocious|flagitious|grievous|monstrous|evil |wicked +heinously|1 +(adv)|monstrously +heinousness|1 +(noun)|atrocity|atrociousness|barbarity|barbarousness|inhumaneness|inhumanity +heinrich boll|1 +(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer|author +heinrich engelhard steinway|1 +(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker +heinrich hertz|1 +(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist +heinrich himmler|1 +(noun)|Himmler|Heinrich Himmler|Nazi|German Nazi +heinrich rudolph hertz|1 +(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist +heinrich schliemann|1 +(noun)|Schliemann|Heinrich Schliemann|archeologist|archaeologist +heinrich theodor boll|1 +(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer|author +heinrich von kleist|1 +(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist|playwright +heinz|1 +(noun)|Heinz|Henry John Heinz|industrialist +heir|2 +(noun)|inheritor|heritor|recipient|receiver +(noun)|successor|offspring|progeny|issue +heir-at-law|1 +(noun)|heir|inheritor|heritor +heir apparent|1 +(noun)|heir|inheritor|heritor +heir presumptive|1 +(noun)|heir|inheritor|heritor +heiress|1 +(noun)|inheritress|inheritrix|heir|inheritor|heritor +heirloom|2 +(noun)|property|belongings|holding|material possession +(noun)|inheritance|heritage +heisenberg|1 +(noun)|Heisenberg|Werner Karl Heisenberg|nuclear physicist +heist|3 +(noun)|rip-off|robbery +(noun)|armed robbery|holdup|stickup|robbery +(verb)|burglarize|burglarise|burgle|steal +heitor villa-lobos|1 +(noun)|Villa-Lobos|Heitor Villa-Lobos|composer +hejaz|1 +(noun)|Hejaz|Hedjaz|Hijaz|geographical area|geographic area|geographical region|geographic region +hejira|2 +(noun)|Hegira|Hejira|escape|flight +(noun)|exodus|hegira|escape|flight +hel|2 +(noun)|Hel|Hela|Norse deity +(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place|mythical place +hela|1 +(noun)|Hel|Hela|Norse deity +held|1 +(adj)|control|command +held dear|1 +(adj)|cherished|unforsaken +held up|1 +(adj)|delayed +helen|1 +(noun)|Helen|Helen of Troy|mythical being +helen adams keller|1 +(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer|writer|author +helen hayes|1 +(noun)|Hayes|Helen Hayes|actress +helen hunt jackson|1 +(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer|author +helen keller|1 +(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer|writer|author +helen laura sumner woodbury|1 +(noun)|Woodbury|Helen Laura Sumner Woodbury|economist|economic expert +helen maria fiske hunt jackson|1 +(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer|author +helen newington wills|1 +(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player +helen of troy|1 +(noun)|Helen|Helen of Troy|mythical being +helen porter mitchell|1 +(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura|coloratura soprano +helen traubel|1 +(noun)|Traubel|Helen Traubel|soprano +helen wills|1 +(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player +helen wills moody|1 +(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player +helena|1 +(noun)|Helena|capital of Montana|state capital +helenium|1 +(noun)|Helenium|genus Helenium|asterid dicot genus +helenium autumnale|1 +(noun)|autumn sneezeweed|Helenium autumnale|sneezeweed +helenium hoopesii|1 +(noun)|orange sneezeweed|owlclaws|Helenium hoopesii|sneezeweed +helenium puberulum|1 +(noun)|rosilla|Helenium puberulum|sneezeweed +heleodytes|1 +(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus +heliac|1 +(adj)|heliacal|star +heliacal|1 +(adj)|heliac|star +heliamphora|1 +(noun)|Heliamphora|genus Heliamphora|dicot genus|magnoliopsid genus +helianthemum|1 +(noun)|sunrose|sun rose|shrub|bush +helianthemum canadense|1 +(noun)|frostweed|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum|sunrose|sun rose +helianthemum scoparium|1 +(noun)|rush rose|Helianthemum scoparium|helianthemum|sunrose|sun rose +helianthus|1 +(noun)|sunflower|flower +helianthus angustifolius|1 +(noun)|swamp sunflower|Helianthus angustifolius|sunflower|helianthus +helianthus annuus|1 +(noun)|common sunflower|mirasol|Helianthus annuus|sunflower|helianthus +helianthus giganteus|1 +(noun)|giant sunflower|tall sunflower|Indian potato|Helianthus giganteus|sunflower|helianthus +helianthus laetiflorus|1 +(noun)|showy sunflower|Helianthus laetiflorus|sunflower|helianthus +helianthus maximilianii|1 +(noun)|Maximilian's sunflower|Helianthus maximilianii|sunflower|helianthus +helianthus petiolaris|1 +(noun)|prairie sunflower|Helianthus petiolaris|sunflower|helianthus +helianthus tuberosus|1 +(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower|helianthus +helical|1 +(adj)|coiling|spiral|spiraling|volute|voluted|whorled|turbinate|coiled +helichrysum|1 +(noun)|Helichrysum|genus Helichrysum|asterid dicot genus +helichrysum bracteatum|1 +(noun)|strawflower|golden everlasting|yellow paper daisy|Helichrysum bracteatum|everlasting|everlasting flower +helichrysum secundiflorum|1 +(noun)|cascade everlasting|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting|everlasting flower +helicidae|1 +(noun)|Helicidae|family Helicidae|mollusk family +helicon|1 +(noun)|bombardon|bass horn|sousaphone|tuba +helicopter|1 +(noun)|chopper|whirlybird|eggbeater|heavier-than-air craft +helicteres|1 +(noun)|Helicteres|genus Helicteres|dilleniid dicot genus +helicteres isora|1 +(noun)|nut-leaved screw tree|Helicteres isora|screw tree +heliobacter|1 +(noun)|Heliobacter|genus Heliobacter|bacteria genus +heliobacter pylori|1 +(noun)|Heliobacter pylori|H. pylori|bacteria species +heliocentric|1 +(adj)|heliocentric |Copernican +heliocentric parallax|1 +(noun)|annual parallax|parallax +heliogram|1 +(noun)|message +heliograph|2 +(noun)|apparatus|setup +(verb)|sign|signal|signalize|signalise +heliogravure|1 +(noun)|gravure|photogravure|print +heliolatry|1 +(noun)|sun-worship|worship +heliopause|1 +(noun)|boundary|bound|bounds +heliophila|1 +(noun)|flower +heliopsis|1 +(noun)|oxeye|wildflower|wild flower +helios|1 +(noun)|Helios|Greek deity +heliosphere|1 +(noun)|region|part +heliotherapy|1 +(noun)|insolation|therapy +heliothis|1 +(noun)|Heliothis|genus Heliothis|arthropod genus +heliothis moth|1 +(noun)|Heliothis zia|noctuid moth|noctuid|owlet moth +heliothis zia|2 +(noun)|corn earworm|cotton bollworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm +(noun)|heliothis moth|Heliothis zia|noctuid moth|noctuid|owlet moth +heliotrope|1 +(noun)|bloodstone|chalcedony|calcedony +heliotropism|1 +(noun)|tropism +heliotype|1 +(noun)|hectograph|duplicator|copier|collotype|collotype printing|photogelatin process +heliozoa|2 +(noun)|Heliozoa|order Heliozoa|animal order +(noun)|heliozoan|actinopod +heliozoan|1 +(noun)|actinopod +heliport|1 +(noun)|airport|airdrome|aerodrome +helipterum|1 +(noun)|Helipterum|genus Helipterum|asterid dicot genus +helipterum manglesii|1 +(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting|everlasting flower +helium|1 +(noun)|He|atomic number 2|chemical element|element|noble gas|inert gas|argonon +helium group|1 +(noun)|series +helix|3 +(noun)|spiral|curve|curved shape +(noun)|coil|spiral|volute|whorl|structure|construction +(noun)|Helix|genus Helix|mollusk genus +helix angle|1 +(noun)|angle +helix aspersa|1 +(noun)|brown snail|Helix aspersa|garden snail +helix hortensis|1 +(noun)|Helix hortensis|garden snail +helix pomatia|1 +(noun)|edible snail|Helix pomatia|snail +hell|6 +(noun)|hell on earth|hellhole|snake pit|the pits|inferno|region|part +(noun)|blaze|trouble +(noun)|Hell|perdition|Inferno|infernal region|nether region|the pit|imaginary place|mythical place +(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place|mythical place +(noun)|sin|activity +(noun)|blaze|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan +hell's half acre|1 +(noun)|Hell's Kitchen|Hell's Half Acre|city district +hell's kitchen|1 +(noun)|Hell's Kitchen|Hell's Half Acre|city district +hell-bent|1 +(adj)|resolute +hell-kite|1 +(noun)|hell-rooster|gamecock|combatant|battler|belligerent|fighter|scrapper +hell-rooster|1 +(noun)|hell-kite|gamecock|combatant|battler|belligerent|fighter|scrapper +hell dust|1 +(noun)|big H|nose drops|smack|thunder|heroin|diacetylmorphine +hell on earth|1 +(noun)|hell|hellhole|snake pit|the pits|inferno|region|part +hell raising|1 +(noun)|raising hell|aggression +hell to pay|1 +(noun)|consequence|import|moment +helladic civilisation|1 +(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture|civilization|civilisation +helladic civilization|1 +(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture|civilization|civilisation +helladic culture|1 +(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture|civilization|civilisation +hellbender|1 +(noun)|mud puppy|Cryptobranchus alleganiensis|salamander +hellcat|1 +(noun)|vixen|harpy|unpleasant woman|disagreeable woman +hellebore|2 +(noun)|false hellebore|liliaceous plant +(noun)|poisonous plant +helleborine|3 +(noun)|rattlesnake plantain|orchid|orchidaceous plant +(noun)|orchid|orchidaceous plant +(noun)|orchid|orchidaceous plant +helleborus|1 +(noun)|Helleborus|genus Helleborus|magnoliid dicot genus +helleborus foetidus|1 +(noun)|stinking hellebore|bear's foot|setterwort|Helleborus foetidus|hellebore +helleborus niger|1 +(noun)|Christmas rose|winter rose|black hellebore|Helleborus niger|hellebore +helleborus orientalis|1 +(noun)|lenten rose|black hellebore|Helleborus orientalis|hellebore +helleborus viridis|1 +(noun)|green hellebore|Helleborus viridis|hellebore +hellene|1 +(noun)|Greek|Hellene|European +hellenic|4 +(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical +(adj)|Hellenic|Hellenistic|Hellenistical|principle +(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state +(noun)|Greek|Hellenic|Hellenic language|Indo-European|Indo-European language|Indo-Hittite +hellenic language|1 +(noun)|Greek|Hellenic|Hellenic language|Indo-European|Indo-European language|Indo-Hittite +hellenic republic|1 +(noun)|Greece|Hellenic Republic|Ellas|Balkan country|Balkan nation|Balkan state +hellenism|1 +(noun)|Hellenism|principle +hellenistic|1 +(adj)|Hellenic|Hellenistic|Hellenistical|principle +hellenistical|1 +(adj)|Hellenic|Hellenistic|Hellenistical|principle +heller|4 +(noun)|haler|Slovakian monetary unit +(noun)|haler|Czech monetary unit +(noun)|Heller|Joseph Heller|writer|author +(noun)|hellion|devil|troublemaker|trouble maker|troubler|mischief-maker|bad hat +helleri|1 +(noun)|swordtail|topminnow|Xyphophorus helleri|cyprinodont +hellespont|1 +(noun)|Dardanelles|Hellespont|strait|sound +hellfire|1 +(noun)|red region|Hell|perdition|Inferno|infernal region|nether region|the pit +hellgrammiate|1 +(noun)|dobson|larva +hellhole|1 +(noun)|hell|hell on earth|snake pit|the pits|inferno|region|part +hellhound|2 +(noun)|troublemaker|trouble maker|troubler|mischief-maker|bad hat +(noun)|Cerberus|mythical monster|mythical creature +hellion|1 +(noun)|heller|devil|troublemaker|trouble maker|troubler|mischief-maker|bad hat +hellish|2 +(adj)|beastly|god-awful|unpleasant +(adj)|demonic|diabolic|diabolical|fiendish|infernal|satanic|unholy|evil |wicked +hellishly|1 +(adv)|infernally +hellman|1 +(noun)|Hellman|Lillian Hellman|dramatist|playwright +hello|1 +(noun)|hullo|hi|howdy|how-do-you-do|greeting|salutation +helm|2 +(noun)|steering system|steering mechanism +(noun)|leadership|leading +helmet|2 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|headdress|headgear +helmet flower|2 +(noun)|monkshood|helmetflower|Aconitum napellus|aconite +(noun)|helmetflower|helmet orchid|orchid|orchidaceous plant +helmet orchid|2 +(noun)|greenhood|orchid|orchidaceous plant +(noun)|helmetflower|orchid|orchidaceous plant +helmeted|1 +(adj)|equipped |equipt +helmetflower|2 +(noun)|helmet orchid|orchid|orchidaceous plant +(noun)|monkshood|helmet flower|Aconitum napellus|aconite +helmholtz|1 +(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist|physicist +helminth|1 +(noun)|parasitic worm|worm +helminthiasis|1 +(noun)|infestation +helminthic|2 +(adj)|anthelmintic|anthelminthic|parasiticidal|healthful +(noun)|vermifuge|anthelmintic|anthelminthic|medicine|medication|medicament|medicinal drug +helminthostachys|1 +(noun)|Helminthostachys|genus Helminthostachys|fern genus +helminthostachys zeylanica|1 +(noun)|flowering fern|Helminthostachys zeylanica|fern +helmsman|1 +(noun)|steersman|steerer|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +helmut heinrich waldemar schmidt|1 +(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman|solon|national leader +helmut schmidt|1 +(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman|solon|national leader +heloderma|1 +(noun)|Heloderma|genus Heloderma|reptile genus +heloderma horridum|1 +(noun)|beaded lizard|Mexican beaded lizard|Heloderma horridum|venomous lizard +heloderma suspectum|1 +(noun)|Gila monster|Heloderma suspectum|venomous lizard +helodermatidae|1 +(noun)|Helodermatidae|family Helodermatidae|reptile family +heloise|1 +(noun)|Heloise|abbess|mother superior|prioress +helot|1 +(noun)|serf|villein|thrall +helotiaceae|1 +(noun)|Helotiaceae|family Helotiaceae|fungus family +helotiales|1 +(noun)|Helotiales|order Helotiales|fungus order +helotium|1 +(noun)|Helotium|genus Helotium|fungus genus +help|12 +(noun)|aid|assist|assistance|activity +(noun)|aid|assistance|resource +(noun)|avail|service|helpfulness +(noun)|assistant|helper|supporter|worker +(verb)|assist|aid|support|back up +(verb)|facilitate|serve +(verb)|aid|better|improve|amend|ameliorate|meliorate +(verb)|help oneself|refrain|forbear +(verb)|promote|advance|boost|further|encourage +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|serve|provide|supply|ply|cater +(verb)|avail|exploit|work +help desk|2 +(noun)|helpdesk|service +(noun)| +help oneself|1 +(verb)|help|refrain|forbear +help out|1 +(verb)|help|assist|aid +helpdesk|1 +(noun)|help desk|service +helper|2 +(noun)|assistant|help|supporter|worker +(noun)|benefactor|good person +helper cell|1 +(noun)|helper T cell|CD4 T cell|CD4 cell|T cell|T lymphocyte +helper t cell|1 +(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell|T lymphocyte +helpful|3 +(adj)|helpful |accommodating|adjuvant|assistive|face-saving|facilitative|facilitatory|implemental|instrumental|kind|laborsaving|laboursaving|reformative|reformatory|right-hand|stabilizing|stabilising|steadying|ministering|ministrant|attending|accommodating|accommodative|cooperative|encouraging|useful|utile +(adj)|useful |utile +(adj)|cooperative +helpfulness|2 +(noun)|utility|usefulness +(noun)|kindliness|friendliness +helping|1 +(noun)|portion|serving|small indefinite quantity|small indefinite amount +helping hand|1 +(noun)|hand|aid|assist|assistance|help +helpless|3 +(adj)|incapacitated|powerless |weak +(adj)|lost|hopeless +(adj)|dependent +helplessly|1 +(adv)|impotently|unable to help +helplessness|3 +(noun)|weakness|impuissance|powerlessness|impotence|impotency +(noun)|dependence|dependance|dependency +(noun)|depression +helpmate|1 +(noun)|helpmeet|spouse|partner|married person|mate|better half +helpmeet|1 +(noun)|helpmate|spouse|partner|married person|mate|better half +helsingfors|1 +(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital|port +helsinki|1 +(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital|port +helter-skelter|3 +(adj)|chaotic|disorganized |disorganised +(adj)|pell-mell|hurried +(adv)|every which way +helve|1 +(noun)|haft|handle|grip|handgrip|hold +helvella|1 +(noun)|false morel +helvella acetabulum|1 +(noun)|Helvella acetabulum|helvella +helvella crispa|1 +(noun)|Helvella crispa|miter mushroom|helvella +helvella sulcata|1 +(noun)|Helvella sulcata|helvella|genus Helvella +helvellaceae|1 +(noun)|Helvellaceae|family Helvellaceae|fungus family +helvetica|1 +(noun)|sans serif|Helvetica|font|fount|typeface|face +helwingia|1 +(noun)|Helwingia|genus Helwingia|rosid dicot genus +helxine|1 +(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus|magnoliopsid genus +helxine soleirolia|1 +(noun)|baby's tears|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover|ground cover +hem|3 +(noun)|lap|overlap +(verb)|sew|run up|sew together|stitch +(verb)|utter|emit|let out|let loose +hem and haw|1 +(verb)|hesitate|pause +hem in|2 +(verb)|surround|skirt|border +(verb)|besiege|beleaguer|surround|circumvent|attack|assail +hemachatus|1 +(noun)|Hemachatus|genus Hemachatus|reptile genus +hemachatus haemachatus|1 +(noun)|ringhals|rinkhals|spitting snake|Hemachatus haemachatus|elapid|elapid snake +hemagglutinate|1 +(verb)|haemagglutinate|agglutinate +hemagglutination|1 +(noun)|haemagglutination|agglutination +hemal|1 +(adj)|haemal|hematal|haematal|vessel|vas +hemal arch|1 +(noun)|haemal arch|arch +hemangioma|1 +(noun)|haemangioma|angioma +hemangioma simplex|1 +(noun)|strawberry|strawberry mark|birthmark|nevus +hematal|1 +(adj)|hemal|haemal|haematal|vessel|vas +hematemesis|1 +(noun)|haematemesis|vomit|vomiting|emesis|regurgitation|disgorgement|puking +hematic|1 +(adj)|hemic|haemic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour +hematin|1 +(noun)|heme|haem|haemitin|protoheme|pigment +hematinic|1 +(noun)|haematinic|medicine|medication|medicament|medicinal drug +hematite|1 +(noun)|haematite|iron ore +hematocele|1 +(noun)|haematocele|hematocoele|haematocoele|swelling|puffiness|lump +hematochezia|1 +(noun)|haematochezia|defecation|laxation|shitting +hematochrome|1 +(noun)|coloring material|colouring material|color|colour +hematocoele|1 +(noun)|hematocele|haematocele|haematocoele|swelling|puffiness|lump +hematocolpometra|1 +(noun)|haematocolpometra|disorder|upset +hematocolpos|1 +(noun)|haematocolpos|disorder|upset +hematocrit|2 +(noun)|haematocrit|packed cell volume|ratio +(noun)|haematocrit|measuring instrument|measuring system|measuring device|centrifuge|extractor|separator +hematocyst|1 +(noun)|hemorrhagic cyst|blood cyst|cyst +hematocytopenia|1 +(noun)|haematocytopenia|cytopenia +hematocyturia|1 +(noun)|haematocyturia|hematuria|haematuria +hematogenesis|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|haematogenesis|sanguification|organic process|biological process +hematogenic|1 +(adj)|hematopoietic|haematopoietic|hemopoietic|haemopoietic|haematogenic|organic process|biological process +hematohiston|1 +(noun)|globin|haematohiston|simple protein +hematoidin|1 +(noun)|bilirubin|haematoidin|animal pigment +hematologic|1 +(adj)|haematological|hematological|medicine|medical specialty +hematological|1 +(adj)|hematologic|haematological|medicine|medical specialty +hematologist|1 +(noun)|haematologist|specialist|medical specialist +hematology|1 +(noun)|haematology|medicine|medical specialty +hematolysis|1 +(noun)|hemolysis|haemolysis|haematolysis|lysis +hematoma|1 +(noun)|haematoma|intumescence|intumescency +hematopoeitic stem cell|1 +(noun)|stem cell +hematopoiesis|1 +(noun)|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +hematopoietic|1 +(adj)|haematopoietic|hemopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process +hematuria|1 +(noun)|haematuria|symptom +heme|1 +(noun)|haem|hematin|haemitin|protoheme|pigment +hemeralopia|1 +(noun)|day blindness|visual impairment|visual defect|vision defect|visual disorder +hemerobiid|1 +(noun)|brown lacewing|hemerobiid fly|lacewing|lacewing fly +hemerobiid fly|1 +(noun)|brown lacewing|hemerobiid|lacewing|lacewing fly +hemerobiidae|1 +(noun)|Hemerobiidae|family Hemerobiidae|arthropod family +hemerocallidaceae|1 +(noun)|Hemerocallidaceae|family Hemerocallidaceae|liliid monocot family +hemerocallis|1 +(noun)|Hemerocallis|genus Hemerocallis|liliid monocot genus +hemerocallis flava|1 +(noun)|lemon lily|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily|daylily +hemerocallis lilio-asphodelus|1 +(noun)|lemon lily|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily|daylily +hemiacetal|1 +(noun)|organic compound +hemianopia|1 +(noun)|hemianopsia|visual impairment|visual defect|vision defect|visual disorder +hemianopic scotoma|1 +(noun)|scotoma +hemianopsia|1 +(noun)|hemianopia|visual impairment|visual defect|vision defect|visual disorder +hemiascomycetes|1 +(noun)|Hemiascomycetes|class Hemiascomycetes|class +hemic|1 +(adj)|haemic|hematic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour +hemicrania|1 +(noun)|migraine|megrim|sick headache|headache|head ache|cephalalgia +hemicycle|1 +(noun)|semicircle|plane figure|two-dimensional figure +hemidemisemiquaver|1 +(noun)|sixty-fourth note|note|musical note|tone +hemiepiphyte|1 +(noun)|semiepiphyte|air plant|epiphyte|aerophyte|epiphytic plant +hemigalus|1 +(noun)|Hemigalus|genus Hemigalus|mammal genus +hemigalus hardwickii|1 +(noun)|banded palm civet|Hemigalus hardwickii|civet|civet cat +hemigrammus|1 +(noun)|Hemigrammus|genus Hemigrammus|fish genus +hemimetabola|1 +(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class +hemimetabolic|1 +(adj)|hemimetabolous|hemimetamorphous|hemimetamorphic|metamorphic +hemimetabolism|1 +(noun)|hemimetamorphosis|hemimetaboly|metamorphosis|metabolism +hemimetabolous|1 +(adj)|hemimetabolic|hemimetamorphous|hemimetamorphic|metamorphic +hemimetaboly|1 +(noun)|hemimetamorphosis|hemimetabolism|metamorphosis|metabolism +hemimetamorphic|1 +(adj)|hemimetabolous|hemimetabolic|hemimetamorphous|metamorphic +hemimetamorphosis|1 +(noun)|hemimetabolism|hemimetaboly|metamorphosis|metabolism +hemimetamorphous|1 +(adj)|hemimetabolous|hemimetabolic|hemimetamorphic|metamorphic +hemimorphite|1 +(noun)|calamine|mineral +hemin|1 +(noun)|protohemin|chloride +heming|1 +(noun)|Heming|Hemminge|John Heming|John Hemminge|actor|histrion|player|thespian|role player +hemingway|1 +(noun)|Hemingway|Ernest Hemingway|writer|author +hemingwayesque|1 +(adj)|Hemingwayesque|writer|author +hemiparasite|1 +(noun)|parasitic plant +hemiparasitic|1 +(adj)|parasitic plant +hemiplegia|1 +(noun)|unilateral paralysis|paralysis|palsy +hemiplegic|1 +(noun)|handicapped person +hemipode|1 +(noun)|button quail|button-quail|bustard quail|wading bird|wader +hemiprocnidae|1 +(noun)|Hemiprocnidae|family Hemiprocnidae|bird family +hemiptera|1 +(noun)|Hemiptera|order Hemiptera|animal order +hemipteran|1 +(noun)|hemipterous insect|bug|hemipteron|insect +hemipteron|1 +(noun)|hemipterous insect|bug|hemipteran|insect +hemipteronatus|1 +(noun)|Hemipteronatus|genus Hemipteronatus|fish genus +hemipteronatus novacula|1 +(noun)|pearly razorfish|Hemipteronatus novacula|razor fish|razor-fish +hemipterous insect|1 +(noun)|bug|hemipteran|hemipteron|insect +hemiramphidae|1 +(noun)|Hemiramphidae|family Hemiramphidae|fish family +hemisphere|3 +(noun)|geographical area|geographic area|geographical region|geographic region +(noun)|subfigure +(noun)|cerebral hemisphere|neural structure +hemispheric|1 +(adj)|neural structure +hemispherical|1 +(adj)|subfigure +hemitripterus|1 +(noun)|Hemitripterus|genus Hemitripterus|fish genus +hemitripterus americanus|1 +(noun)|sea raven|Hemitripterus americanus|sculpin +hemizygos vein|1 +(noun)|hemizygous vein|vena hemizygos|vein|vena|venous blood vessel +hemizygous vein|1 +(noun)|hemizygos vein|vena hemizygos|vein|vena|venous blood vessel +hemline|1 +(noun)|line +hemlock|4 +(noun)|plant toxin|phytotoxin +(noun)|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +(noun)|wood +(noun)|hemlock tree|conifer|coniferous tree +hemlock tree|1 +(noun)|hemlock|conifer|coniferous tree +hemlock water dropwort|1 +(noun)|water dropwort|Oenanthe crocata|poisonous plant +hemming-stitch|1 +(noun)|stitch +hemminge|1 +(noun)|Heming|Hemminge|John Heming|John Hemminge|actor|histrion|player|thespian|role player +hemochromatosis|1 +(noun)|iron-storage disease|iron overload|bronzed diabetes|pathology +hemodialysis|1 +(noun)|haemodialysis|dialysis +hemodialyzer|1 +(noun)|artificial kidney|dialyzer|dialysis machine +hemofil|1 +(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor|clotting factor +hemogenesis|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +hemoglobin|1 +(noun)|haemoglobin|Hb|hemoprotein|haemoprotein +hemoglobinemia|1 +(noun)|haemoglobinemia|symptom +hemoglobinopathy|1 +(noun)|haemoglobinopathy|blood disease|blood disorder +hemoglobinuria|1 +(noun)|haemoglobinuria|symptom +hemolysin|1 +(noun)|haemolysin|erythrolysin|erythrocytolysin|organic compound +hemolysis|1 +(noun)|haemolysis|hematolysis|haematolysis|lysis +hemolytic|1 +(adj)|haemolytic|lysis +hemolytic anemia|1 +(noun)|haemolytic anaemia|anemia|anaemia +hemophile|1 +(noun)|hemophiliac|haemophiliac|bleeder|haemophile|sick person|diseased person|sufferer +hemophilia|1 +(noun)|haemophilia|bleeder's disease|blood disease|blood disorder|sex-linked disorder +hemophilia a|1 +(noun)|hemophilia A|haemophilia A|classical hemophilia|classical haemophilia|hemophilia|haemophilia|bleeder's disease +hemophilia b|1 +(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia|haemophilia|bleeder's disease +hemophiliac|1 +(noun)|haemophiliac|bleeder|hemophile|haemophile|sick person|diseased person|sufferer +hemophilic|1 +(adj)|haemophilic|blood disease|blood disorder|sex-linked disorder +hemopoiesis|1 +(noun)|hematopoiesis|haematopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process|biological process +hemopoietic|1 +(adj)|hematopoietic|haematopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process +hemoprotein|1 +(noun)|haemoprotein|conjugated protein|compound protein +hemoptysis|1 +(noun)|haemoptysis|symptom +hemorrhage|2 +(noun)|bleeding|haemorrhage|injury|hurt|harm|trauma +(verb)|shed blood|bleed|discharge|expel|eject|release +hemorrhagic|1 +(adj)|haemorrhagic|injury|hurt|harm|trauma +hemorrhagic cyst|1 +(noun)|blood cyst|hematocyst|cyst +hemorrhagic fever|1 +(noun)|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection|virus infection +hemorrhagic septicemia|1 +(noun)|pasteurellosis|animal disease +hemorrhagic stroke|1 +(noun)|haemorrhagic stroke|stroke|apoplexy|cerebrovascular accident|CVA|bleeding|hemorrhage|haemorrhage +hemorrhoid|1 +(noun)|haemorrhoid|piles|pain|hurting +hemorrhoidal vein|1 +(noun)|rectal vein|vena rectalis|vein|vena|venous blood vessel +hemorrhoidectomy|1 +(noun)|haemorrhoidectomy|operation|surgery|surgical operation|surgical procedure|surgical process +hemosiderin|1 +(noun)|haemosiderin|pigment +hemosiderosis|1 +(noun)|haemosiderosis|symptom +hemostasia|1 +(noun)|hemostasis|haemostasis|haemostasia|stop|stoppage +hemostasis|1 +(noun)|haemostasis|hemostasia|haemostasia|stop|stoppage +hemostat|1 +(noun)|haemostat|surgical instrument +hemostatic|1 +(adj)|styptic|astringent +hemothorax|1 +(noun)|haemothorax|congestion +hemp|3 +(noun)|plant fiber|plant fibre +(noun)|cannabis|shrub|bush +(noun)|hangman's rope|hangman's halter|halter|hempen necktie|rope +hemp agrimony|1 +(noun)|Eupatorium cannabinum|herb|herbaceous plant +hemp family|1 +(noun)|Cannabidaceae|family Cannabidaceae|dicot family|magnoliopsid family +hemp nettle|1 +(noun)|dead nettle|Galeopsis tetrahit|herb|herbaceous plant +hemp willow|1 +(noun)|common osier|velvet osier|Salix viminalis|osier +hempen|1 +(adj)|fibrous|tough +hempen necktie|1 +(noun)|hangman's rope|hangman's halter|halter|hemp|rope +hemstitch|3 +(noun)|hemstitching|stitch +(noun)|embroidery|fancywork +(verb)|sew|run up|sew together|stitch +hemstitching|1 +(noun)|hemstitch|stitch +hen|4 +(noun)|biddy|chicken|Gallus gallus +(noun)|bird +(noun)|chicken|poulet|volaille +(noun)|female +hen-of-the-woods|2 +(noun)|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus +(noun)| +hen-peck|1 +(verb)|nag|peck|complain|kick|plain|sound off|quetch|kvetch +hen harrier|1 +(noun)|marsh hawk|northern harrier|Circus cyaneus|harrier +hen hawk|1 +(noun)|chicken hawk|hawk +hen of the woods|2 +(noun)|hen-of-the-woods|Polyporus frondosus|Grifola frondosa|fungus +(noun)| +hen party|1 +(noun)|party +hen yard|1 +(noun)|chicken yard|chicken run|fowl run|yard +henbane|1 +(noun)|black henbane|stinking nightshade|Hyoscyamus niger|herb|herbaceous plant +henbit|1 +(noun)|Lamium amplexicaule|dead nettle +hence|1 +(adv)|therefore|thence|thus +henceforth|1 +(adv)|henceforward +henceforward|1 +(adv)|henceforth +henchman|1 +(noun)|confederate|collaborator|partner in crime|accessory|accessary +hencoop|1 +(noun)|chicken coop|coop|henhouse|farm building +hendiadys|1 +(noun)|rhetorical device +hendrik antoon lorentz|1 +(noun)|Lorentz|Hendrik Antoon Lorentz|physicist +hendrik frensch verwoerd|1 +(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman|solon|national leader +hendrik petrus berlage|1 +(noun)|Berlage|Hendrik Petrus Berlage|architect|designer +hendrik verwoerd|1 +(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman|solon|national leader +hendrix|1 +(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist|guitar player +henhouse|1 +(noun)|chicken coop|coop|hencoop|farm building +henna|2 +(noun)|hair dye|hair coloring +(verb)|tint|tinct|bepaint|tinge|touch +henpecked|1 +(adj)|dominated|submissive +henri becquerel|1 +(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist +henri bergson|1 +(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher +henri clemens van de velde|1 +(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect|designer +henri emile benoit matisse|1 +(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter +henri labrouste|1 +(noun)|Labrouste|Henri Labrouste|architect|designer +henri louis bergson|1 +(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher +henri matisse|1 +(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter +henri rene albert guy de maupassant|1 +(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer|author +henri rousseau|1 +(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter +henri toulouse-lautrec|1 +(noun)|Toulouse-Lautrec|Henri Toulouse-Lautrec|painter +henri van de velde|1 +(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect|designer +henriette rosine bernard|1 +(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress +henrik ibsen|1 +(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet|dramatist|playwright +henrik johan ibsen|1 +(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet|dramatist|playwright +henroost|1 +(noun)|roost +henry|4 +(noun)|H|inductance unit +(noun)|Henry|William Henry|chemist +(noun)|Henry|Patrick Henry|American Revolutionary leader|orator|speechmaker|rhetorician|public speaker|speechifier +(noun)|Henry|Joseph Henry|physicist +henry's law|1 +(noun)|Henry's law|law|law of nature +henry alfred kissinger|1 +(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat|diplomatist +henry beauclerc|1 +(noun)|Henry I|Henry Beauclerc|King of England|King of Great Britain +henry bolingbroke|1 +(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England|King of Great Britain +henry cavendish|1 +(noun)|Cavendish|Henry Cavendish|chemist|physicist +henry clay|1 +(noun)|Clay|Henry Clay|the Great Compromiser|politician|politico|pol|political leader +henry clay frick|1 +(noun)|Frick|Henry Clay Frick|industrialist +henry david thoreau|1 +(noun)|Thoreau|Henry David Thoreau|writer|author +henry engelhard steinway|1 +(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker +henry fielding|1 +(noun)|Fielding|Henry Fielding|writer|author +henry fonda|1 +(noun)|Fonda|Henry Fonda|actor|histrion|player|thespian|role player +henry ford|1 +(noun)|Ford|Henry Ford|industrialist +henry ford ii|1 +(noun)|Ford|Henry Ford II|industrialist +henry graham greene|1 +(noun)|Greene|Graham Greene|Henry Graham Greene|writer|author +henry hobson richardson|1 +(noun)|Richardson|Henry Hobson Richardson|architect|designer +henry hubert turner|1 +(noun)|Turner|Henry Hubert Turner|endocrinologist +henry hudson|1 +(noun)|Hudson|Henry Hudson|navigator +henry i|1 +(noun)|Henry I|Henry Beauclerc|King of England|King of Great Britain +henry ii|2 +(noun)|Henry II|King of France +(noun)|Henry II|King of England|King of Great Britain +henry iii|2 +(noun)|Henry III|King of France +(noun)|Henry III|King of England|King of Great Britain +henry iv|1 +(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England|King of Great Britain +henry james|1 +(noun)|James|Henry James|writer|author +henry john heinz|1 +(noun)|Heinz|Henry John Heinz|industrialist +henry kenneth alfred russell|1 +(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker|filmmaker|film producer|movie maker +henry kissinger|1 +(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat|diplomatist +henry laurens|1 +(noun)|Laurens|Henry Laurens|American Revolutionary leader +henry le chatelier|1 +(noun)|le Chatelier|Henry le Chatelier|chemist +henry lee|1 +(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier +henry louis aaron|1 +(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer|baseball player +henry louis gehrig|1 +(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer|baseball player +henry louis mencken|1 +(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist|literary critic +henry luce|1 +(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher +henry m. robert|1 +(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian +henry m. stanley|1 +(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist|explorer|adventurer +henry martyn robert|1 +(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian +henry miller|1 +(noun)|Miller|Henry Miller|Henry Valentine Miller|writer|author +henry moore|1 +(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor|sculpturer|carver|statue maker +henry morgan|1 +(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate|buccaneer|sea robber|sea rover +henry norris russell|1 +(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer|uranologist|stargazer +henry oscar houghton|1 +(noun)|Houghton|Henry Oscar Houghton|publisher +henry purcell|1 +(noun)|Purcell|Henry Purcell|organist|composer +henry robinson luce|1 +(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher +henry rowe schoolcraft|1 +(noun)|Schoolcraft|Henry Rowe Schoolcraft|geologist|ethnologist|explorer|adventurer +henry russell|1 +(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer|uranologist|stargazer +henry spencer moore|1 +(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor|sculpturer|carver|statue maker +henry steinway|1 +(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker +henry sweet|1 +(noun)|Sweet|Henry Sweet|phonetician +henry tudor|1 +(noun)|Henry VII|Henry Tudor|King of England|King of Great Britain +henry v|1 +(noun)|Henry V|King of England|King of Great Britain +henry valentine miller|1 +(noun)|Miller|Henry Miller|Henry Valentine Miller|writer|author +henry vi|1 +(noun)|Henry VI|King of England|King of Great Britain +henry vii|1 +(noun)|Henry VII|Henry Tudor|King of England|King of Great Britain +henry viii|1 +(noun)|Henry VIII|King of England|King of Great Britain +henry villard|1 +(noun)|Villard|Henry Villard|businessman|man of affairs +henry wadsworth longfellow|1 +(noun)|Longfellow|Henry Wadsworth Longfellow|poet +henry ward beecher|1 +(noun)|Beecher|Henry Ward Beecher|clergyman|reverend|man of the cloth|abolitionist|emancipationist +henry watson fowler|1 +(noun)|Fowler|Henry Watson Fowler|lexicographer|lexicologist +henry wheeler shaw|1 +(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist|humourist +henson|1 +(noun)|Henson|Jim Henson|puppeteer +hep|1 +(adj)|hip|hip to|informed +hepadnavirus|1 +(noun)|animal virus +heparin|1 +(noun)|Lipo-Hepin|Liquaemin|polysaccharide|polyose|anticoagulant|anticoagulant medication|decoagulant +hepatic|1 +(adj)|internal organ|viscus +hepatic artery|1 +(noun)|arteria hepatica|artery|arteria|arterial blood vessel +hepatic coma|1 +(noun)|coma|comatoseness +hepatic duct|1 +(noun)|duct|epithelial duct|canal|channel +hepatic lobe|1 +(noun)|lobe +hepatic portal vein|1 +(noun)|portal vein|portal|vena portae|vein|vena|venous blood vessel +hepatic tanager|1 +(noun)|Piranga flava hepatica|tanager +hepatic vein|1 +(noun)|vena hepatica|vein|vena|venous blood vessel +hepatica|2 +(noun)|liverleaf|herb|herbaceous plant +(noun)|Marchantia polymorpha|liverwort +hepaticae|1 +(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class +hepaticopsida|1 +(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class +hepatitis|1 +(noun)|infectious disease|liver disease +hepatitis a|1 +(noun)|hepatitis A|infectious hepatitis|viral hepatitis +hepatitis a virus|1 +(noun)|hepatitis A virus|enterovirus +hepatitis b|1 +(noun)|hepatitis B|serum hepatitis|viral hepatitis +hepatitis c|1 +(noun)|hepatitis C|viral hepatitis +hepatitis delta|1 +(noun)|delta hepatitis|hepatitis +hepatocarcinoma|1 +(noun)|hepatoma|malignant hepatoma|hepatocellular carcinoma|carcinoma +hepatocellular carcinoma|1 +(noun)|hepatoma|malignant hepatoma|hepatocarcinoma|carcinoma +hepatoflavin|1 +(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +hepatojugular reflux|1 +(noun)|reflux +hepatolenticular degeneration|1 +(noun)|Wilson's disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +hepatoma|1 +(noun)|malignant hepatoma|hepatocarcinoma|hepatocellular carcinoma|carcinoma +hepatomegaly|1 +(noun)|megalohepatia|abnormality|abnormalcy|abnormal condition +hepatotoxic|1 +(adj)|toxic +hepatotoxin|1 +(noun)|toxin +hepburn|1 +(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress +hephaestus|1 +(noun)|Hephaestus|Hephaistos|Greek deity +hephaistos|1 +(noun)|Hephaestus|Hephaistos|Greek deity +heptad|1 +(noun)|seven|7|VII|sevener|septet|digit|figure +heptadecanoic acid|1 +(noun)|margaric acid|saturated fatty acid +heptagon|1 +(noun)|polygon|polygonal shape +heptane|1 +(noun)|methane series|alkane series|alkane|paraffin +hepworth|1 +(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor|sculpturer|carver|statue maker +hera|1 +(noun)|Hera|Here|Greek deity +heracles|1 +(noun)|Hercules|Heracles|Herakles|Alcides|mythical being +heracleum|1 +(noun)|Heracleum|genus Heracleum|rosid dicot genus +heracleum sphondylium|1 +(noun)|cow parsnip|hogweed|Heracleum sphondylium|herb|herbaceous plant +heraclitus|1 +(noun)|Heraclitus|philosopher +herakles|1 +(noun)|Hercules|Heracles|Herakles|Alcides|mythical being +herald|5 +(noun)|trumpeter|messenger|courier +(noun)|harbinger|forerunner|precursor|indication|indicant +(verb)|announce|annunciate|harbinger|foretell|tell +(verb)|acclaim|hail|applaud +(verb)|hail|greet|recognize|recognise +heralded|1 +(adj)|publicized |publicised +heraldic|2 +(adj)|communicative |communicatory +(adj)|heraldist|emblem +heraldic bearing|1 +(noun)|charge|bearing|armorial bearing|heraldry +heraldist|1 +(adj)|heraldic|emblem +heraldry|2 +(noun)|inquiry|enquiry|research +(noun)|emblem +herat|1 +(noun)|Herat|city|metropolis|urban center +herb|2 +(noun)|herbaceous plant|vascular plant|tracheophyte +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +herb bennet|1 +(noun)|cloveroot|clover-root|wood avens|Geum urbanum|avens +herb christopher|1 +(noun)|baneberry|cohosh|herb Christopher|poisonous plant +herb doctor|1 +(noun)|herbalist|therapist|healer +herb garden|1 +(noun)|garden +herb mercury|1 +(noun)|herbs mercury|boys-and-girls|Mercurialis annua|herb|herbaceous plant +herb of grace|1 +(noun)|rue|Ruta graveolens|herb|herbaceous plant +herb paris|1 +(noun)|herb Paris|Paris quadrifolia|herb|herbaceous plant +herb robert|1 +(noun)|herbs robert|herb roberts|Geranium robertianum|cranesbill|crane's bill +herb roberts|2 +(noun)|herb robert|herbs robert|Geranium robertianum|cranesbill|crane's bill +(noun)|herb robert|herbs robert|Geranium robertianum|cranesbill|crane's bill +herb simon|1 +(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist|economic expert|psychologist +herb tea|1 +(noun)|herbal tea|tea +herba impia|1 +(noun)|Filago germanica|cotton rose|cudweed|filago +herbaceous|1 +(adj)|nonwoody +herbaceous plant|1 +(noun)|herb|vascular plant|tracheophyte +herbage|1 +(noun)|pasturage|herb|herbaceous plant +herbal|1 +(adj)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +herbal medicine|2 +(noun)|medicine|medication|medicament|medicinal drug +(noun)|alternative medicine +herbal tea|1 +(noun)|herb tea|tea +herbal therapy|1 +(noun)|phytotherapy|botanical medicine|therapy +herbalist|1 +(noun)|herb doctor|therapist|healer +herbart|1 +(noun)|Herbart|Johann Friedrich Herbart|philosopher +herbert|1 +(noun)|Herbert|Victor Herbert|musician +herbert a. simon|1 +(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist|economic expert|psychologist +herbert alexander simon|1 +(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist|economic expert|psychologist +herbert blythe|1 +(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor|histrion|player|thespian|role player +herbert clark hoover|1 +(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States|United States President|President|Chief Executive +herbert george wells|1 +(noun)|Wells|H. G. Wells|Herbert George Wells|writer|author +herbert hoover|1 +(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States|United States President|President|Chief Executive +herbert kitchener|1 +(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal +herbert marcuse|1 +(noun)|Marcuse|Herbert Marcuse|philosopher +herbert marshall mcluhan|1 +(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer|author +herbert marx|1 +(noun)|Marx|Herbert Marx|Zeppo|comedian|comic +herbert mclean evans|1 +(noun)|Evans|Herbert McLean Evans|anatomist +herbert spencer|1 +(noun)|Spencer|Herbert Spencer|philosopher|sociologist +herbicide|1 +(noun)|weedkiller|weed killer|chemical +herbivore|1 +(noun)|animal|animate being|beast|brute|creature|fauna +herbivorous|1 +(adj)|herbivorous |anthophagous|anthophilous|baccivorous|grass-eating|plant-eating|phytophagic|phytophagous|phytophilous|saprophagous|saprozoic|saprophytic|carpophagous|fruit-eating +herbs mercury|2 +(noun)|herb mercury|boys-and-girls|Mercurialis annua|herb|herbaceous plant +(noun)|herb mercury|boys-and-girls|Mercurialis annua|herb|herbaceous plant +herbs robert|2 +(noun)|herb robert|herb roberts|Geranium robertianum|cranesbill|crane's bill +(noun)|herb robert|herb roberts|Geranium robertianum|cranesbill|crane's bill +herculaneum|1 +(noun)|Herculaneum|city|metropolis|urban center +herculean|2 +(adj)|powerful|superhuman +(adj)|Herculean|difficult |hard +hercules|2 +(noun)|Hercules|Heracles|Herakles|Alcides|mythical being +(noun)|Hercules|constellation +hercules'-club|2 +(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash +(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub|bush +hercules'-clubs|3 +(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash +(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash +(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub|bush +hercules-club|1 +(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash +herd|6 +(noun)|animal group +(noun)|animal group +(noun)|ruck|multitude|throng|concourse +(verb)|crowd|move|displace +(verb)|crowd|crowd together +(verb)|keep +herd's grass|1 +(noun)|timothy|Phleum pratense|grass +herder|2 +(noun)|Herder|Johann Gottfried von Herder|philosopher +(noun)|herdsman|drover|hired hand|hand|hired man +herding|1 +(adj)|swarming|social|gregarious +herdsman|1 +(noun)|herder|drover|hired hand|hand|hired man +here|4 +(adj)|present +(noun)|location +(noun)|Hera|Here|Greek deity +(adv)|hither +here and now|1 +(noun)|present moment|moment|present|nowadays +hereabout|1 +(adv)|hereabouts +hereabouts|1 +(adv)|hereabout +hereafter|3 +(noun)|afterlife|life|lifetime|lifespan +(noun)|future|futurity|time to come|time +(adv)|hereinafter|hereunder +hereby|1 +(adv)|herewith +herediatry spinal ataxia|1 +(noun)|Friedreich's ataxia|ataxia|ataxy|dyssynergia|motor ataxia +hereditament|1 +(noun)|property|belongings|holding|material possession +hereditarianism|1 +(noun)|philosophical doctrine|philosophical theory +hereditary|2 +(adj)|familial|genetic|inherited|transmitted|transmissible|inheritable |heritable +(adj)|ancestral|patrimonial|transmissible|inheritable |heritable +hereditary cerebellar ataxia|1 +(noun)|ataxia|ataxy|dyssynergia|motor ataxia +hereditary condition|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|disease +hereditary disease|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary condition|disease +hereditary motor and sensory neuropathy|1 +(noun)|Charcot-Marie-Tooth disease|neuropathy +hereditary pattern|1 +(noun)|inheritance|heredity|genetic endowment +heredity|2 +(noun)|organic process|biological process +(noun)|genetic endowment|property +hereford|1 +(noun)|Hereford|whiteface|beef|beef cattle +hereinafter|1 +(adv)|hereafter|hereunder +hereness|1 +(noun)|presence +heresy|2 +(noun)|unorthodoxy|heterodoxy|orientation +(noun)|unorthodoxy|unbelief|disbelief +heretic|2 +(noun)|misbeliever|religious outcast|outcast|castaway|pariah|Ishmael +(noun)|nonconformist|recusant +heretical|1 +(adj)|dissident|heterodox|unorthodox +heretofore|1 +(adv)|so far|thus far|up to now|hitherto|as yet|yet|til now|until now +hereunder|1 +(adv)|hereinafter|hereafter +herewith|1 +(adv)|hereby +heritable|1 +(adj)|inheritable |ancestral|hereditary|patrimonial|transmissible|familial|genetic|hereditary|inherited|transmitted|transmissible|monogenic|polygenic|inheriting|nee +heritage|4 +(noun)|practice +(noun)|inheritance|attribute +(noun)|inheritance|transferred property|transferred possession +(noun)|inheritance|acquisition +heritiera|1 +(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus +heritiera littoralis|1 +(noun)|looking-glass plant|Heritiera littoralis|angiospermous tree|flowering tree +heritiera macrophylla|1 +(noun)|looking glass tree|Heritiera macrophylla|angiospermous tree|flowering tree +heritiera trifoliolata|1 +(noun)|red beech|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +heritor|1 +(noun)|heir|inheritor|recipient|receiver +herm|1 +(noun)|statue +herman|1 +(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician|jazzman|bandleader +herman hollerith|1 +(noun)|Hollerith|Herman Hollerith|inventor|discoverer|artificer +herman melville|1 +(noun)|Melville|Herman Melville|writer|author +herman northrop frye|1 +(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic +herman wouk|1 +(noun)|Wouk|Herman Wouk|writer|author +hermann|1 +(noun)|Arminius|Armin|Hermann|hero|German +hermann goering|1 +(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi|German Nazi +hermann goring|1 +(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi|German Nazi +hermann hesse|1 +(noun)|Hesse|Hermann Hesse|writer|author +hermann joseph muller|1 +(noun)|Muller|Hermann Joseph Muller|geneticist +hermann ludwig ferdinand von helmholtz|1 +(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist|physicist +hermann maurice saxe|1 +(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general|full general|marshal|marshall +hermann minkowski|1 +(noun)|Minkowski|Hermann Minkowski|mathematician +hermann snellen|1 +(noun)|Snellen|Hermann Snellen|ophthalmologist|eye doctor|oculist +hermann von helmholtz|1 +(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist|physicist +hermann wilhelm goring|1 +(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi|German Nazi +hermannia|1 +(noun)|Hermannia|genus Hermannia|dilleniid dicot genus +hermannia verticillata|1 +(noun)|honey bell|honeybells|Hermannia verticillata|Mahernia verticillata|shrub|bush +hermaphrodism|1 +(noun)|hermaphroditism|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +hermaphrodite|2 +(adj)|hermaphroditic|androgynous +(noun)|intersex|gynandromorph|androgyne|epicine|epicine person|bisexual|bisexual person +hermaphrodite brig|1 +(noun)|brigantine|sailing vessel|sailing ship +hermaphroditic|2 +(adj)|monoclinous +(adj)|hermaphrodite|androgynous +hermaphroditism|2 +(noun)|hermaphrodism|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +(noun)|androgyny|bisexuality|sex|gender|sexuality +hermaphroditus|1 +(noun)|Hermaphroditus|Greek deity +hermeneutic|1 +(adj)|theology|divinity +hermeneutics|1 +(noun)|theology|divinity +hermes|1 +(noun)|Hermes|Greek deity +hermetic|1 +(adj)|tight +hermissenda|1 +(noun)|Hermissenda|genus Hermissenda|mollusk genus +hermissenda crassicornis|1 +(noun)|Hermissenda crassicornis|sea slug|nudibranch +hermit|2 +(noun)|anchorite|eremite +(noun)|recluse|solitary|solitudinarian|troglodyte|loner|lone wolf|lone hand +hermit crab|1 +(noun)|decapod crustacean|decapod +hermit thrush|1 +(noun)|Hylocichla guttata|thrush +hermitage|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +hermitic|1 +(adj)|anchoritic|eremitic|eremitical|hermitical|unworldly +hermitical|1 +(adj)|anchoritic|eremitic|eremitical|hermitic|unworldly +hermosillo|1 +(noun)|Hermosillo|city|metropolis|urban center +hernan cortes|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +hernan cortez|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +hernando cortes|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +hernando cortez|1 +(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador +hernaria|1 +(noun)|Hernaria|genus Hernaria|caryophylloid dicot genus +hernaria glabra|1 +(noun)|rupturewort|Hernaria glabra|groundcover|ground cover +hernia|1 +(noun)|herniation|rupture +herniated disc|1 +(noun)|ruptured intervertebral disc|slipped disc|rupture +herniation|1 +(noun)|hernia|rupture +hero|7 +(noun)|leader +(noun)|character|role|theatrical role|part|persona +(noun)|champion|fighter|paladin|defender|guardian|protector|shielder +(noun)|Hero|Heron|Hero of Alexandria|mathematician|inventor|discoverer|artificer +(noun)|mythical being +(noun)|Hero|mythical being +(noun)|bomber|grinder|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +hero-worship|1 +(verb)|idolize|idolise|worship|revere|adore +hero of alexandria|1 +(noun)|Hero|Heron|Hero of Alexandria|mathematician|inventor|discoverer|artificer +hero sandwich|1 +(noun)|bomber|grinder|hero|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +hero worship|1 +(noun)|admiration|esteem +hero worshiper|1 +(noun)|hero worshipper|worshiper|worshipper +hero worshipper|1 +(noun)|hero worshiper|worshiper|worshipper +herod|1 +(noun)|Herod|Herod the Great|king|male monarch +herod the great|1 +(noun)|Herod|Herod the Great|king|male monarch +herodotus|1 +(noun)|Herodotus|historian|historiographer +heroic|6 +(adj)|epic|larger-than-life|large +(adj)|mythical being +(adj)|heroical|bold +(adj)|grand|impressive +(adj)|desperate|brave |courageous|fearless +(noun)|heroic verse|heroic meter|epic poem|heroic poem|epic|epos +heroic couplet|1 +(noun)|couplet +heroic meter|1 +(noun)|heroic verse|heroic|epic poem|heroic poem|epic|epos +heroic poem|1 +(noun)|epic poem|epic|epos|poem|verse form +heroic poetry|1 +(noun)|epic poetry|poetry|poesy|verse +heroic stanza|1 +(noun)|quatrain +heroic tale|1 +(noun)|adventure story|story +heroic verse|1 +(noun)|heroic meter|heroic|epic poem|heroic poem|epic|epos +heroica puebla de zaragoza|1 +(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city|metropolis|urban center +heroical|1 +(adj)|heroic|bold +heroics|2 +(noun)|acting|playing|playacting|performing +(noun)|heroic verse|heroic meter|heroic|epic poem|heroic poem|epic|epos +heroin|1 +(noun)|diacetylmorphine|opiate|hard drug +heroin addict|1 +(noun)|drug addict|junkie|junky +heroin addiction|1 +(noun)|drug addiction|white plague +heroine|2 +(noun)|character|role|theatrical role|part|persona +(noun)|woman|adult female +heroism|1 +(noun)|gallantry|valor|valour|valorousness|valiance|valiancy|courage|courageousness|bravery +heron|2 +(noun)|Hero|Heron|Hero of Alexandria|mathematician|inventor|discoverer|artificer +(noun)|wading bird|wader +heron's bill|1 +(noun)|storksbill|geranium +heronry|1 +(noun)|rookery +herpangia|1 +(noun)|viral infection|virus infection +herpes|2 +(noun)|infectious disease +(noun)|herpes virus|animal virus +herpes encephalitis|1 +(noun)|herpes simplex encephalitis|acute inclusion body encephalitis|encephalitis|cephalitis|phrenitis +herpes genitalis|1 +(noun)|genital herpes|herpes simplex|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +herpes labialis|1 +(noun)|oral herpes|cold sore|fever blister|herpes simplex +herpes simplex|2 +(noun)|herpes +(noun)|herpes simplex virus|herpes|herpes virus +herpes simplex 1|1 +(noun)|HS1|HSv-1|herpes simplex|herpes simplex virus +herpes simplex 2|1 +(noun)|HS2|HSV-2|herpes simplex|herpes simplex virus +herpes simplex encephalitis|1 +(noun)|herpes encephalitis|acute inclusion body encephalitis|encephalitis|cephalitis|phrenitis +herpes simplex virus|1 +(noun)|herpes simplex|herpes|herpes virus +herpes varicella zoster|1 +(noun)|herpes varicella zoster virus|herpes zoster|herpes zoster virus +herpes varicella zoster virus|1 +(noun)|herpes varicella zoster|herpes zoster|herpes zoster virus +herpes virus|1 +(noun)|herpes|animal virus +herpes zoster|2 +(noun)|zoster|shingles|herpes +(noun)|herpes zoster virus|herpes|herpes virus +herpes zoster virus|1 +(noun)|herpes zoster|herpes|herpes virus +herpestes|1 +(noun)|Herpestes|genus Herpestes|mammal genus +herpestes ichneumon|1 +(noun)|ichneumon|Herpestes ichneumon|mongoose +herpestes nyula|1 +(noun)|Indian mongoose|Herpestes nyula|mongoose +herpetologist|1 +(noun)|zoologist|animal scientist +herpetology|1 +(noun)|zoology|zoological science +herr|1 +(noun)|Herr|man|adult male +herrenvolk|1 +(noun)|master race|Herrenvolk|race +herrerasaur|1 +(noun)|herrerasaurus|theropod|theropod dinosaur|bird-footed dinosaur +herrerasaurus|1 +(noun)|herrerasaur|theropod|theropod dinosaur|bird-footed dinosaur +herrick|1 +(noun)|Herrick|Robert Herrick|poet +herring|2 +(noun)|saltwater fish +(noun)|Clupea harangus|clupeid fish|clupeid|food fish +herring gull|1 +(noun)|Larus argentatus|gull|seagull|sea gull +herring hog|1 +(noun)|harbor porpoise|Phocaena phocaena|porpoise +herring salad|1 +(noun)|salad +herringbone|1 +(noun)|fabric|cloth|material|textile +herschel|2 +(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer|uranologist|stargazer +(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer|uranologist|stargazer +herschelian telescope|1 +(noun)|Herschelian telescope|off-axis reflector|reflecting telescope|reflector +hershey|2 +(noun)|Hershey|Milton Snavely Hershey|confectioner|candymaker|philanthropist|altruist +(noun)|Hershey|town +hershey bar|1 +(noun)|Hershey bar|chocolate bar +hertfordshire|1 +(noun)|Hertfordshire|county +hertha|1 +(noun)|Nerthus|Hertha|Teutonic deity +hertz|3 +(noun)|Hertz|Hz|cycle per second|cycles/second|cps|cycle|rate +(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist +(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist +hertzian|1 +(adj)|Hertzian|nuclear physicist +hertzian wave|1 +(noun)|Hertzian wave|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +herzberg|1 +(noun)|Herzberg|Gerhard Herzberg|nuclear physicist +heshvan|1 +(noun)|Heshvan|Jewish calendar month +hesiod|1 +(noun)|Hesiod|poet +hesitance|1 +(noun)|hesitancy|diffidence|self-doubt|self-distrust +hesitancy|2 +(noun)|hesitance|diffidence|self-doubt|self-distrust +(noun)|reluctance|hesitation|disinclination|indisposition|unwillingness +hesitant|2 +(adj)|hesitating|irresolute|indecisive +(adj)|groping|uncertain |incertain +hesitantly|1 +(adv)|hesitatingly +hesitate|2 +(verb)|waver|waffle +(verb)|pause|delay +hesitater|1 +(noun)|waverer|vacillator|hesitator|coward +hesitating|1 +(adj)|hesitant|irresolute|indecisive +hesitatingly|1 +(adv)|hesitantly +hesitation|3 +(noun)|vacillation|wavering|indecision|indecisiveness|irresolution +(noun)|reluctance|hesitancy|disinclination|indisposition|unwillingness +(noun)|waver|falter|faltering|pause +hesitator|1 +(noun)|waverer|vacillator|hesitater|coward +hesperian|1 +(adj)|occidental|Hesperian|western +hesperides|1 +(noun)|Hesperides|Atlantides|nymph +hesperiphona|1 +(noun)|Hesperiphona|genus Hesperiphona|bird genus +hesperiphona vespertina|1 +(noun)|evening grosbeak|Hesperiphona vespertina|grosbeak|grossbeak +hesperis|1 +(noun)|Hesperis|genus Hesperis|dilleniid dicot genus +hesperis matronalis|1 +(noun)|damask violet|Dame's violet|sweet rocket|Hesperis matronalis|flower +hesperus|1 +(noun)|evening star|Hesperus|Vesper|planet +hess|4 +(noun)|Hess|Dame Myra Hess|pianist|piano player +(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist +(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi|German Nazi +(noun)|Hess|Victor Hess|Victor Franz Hess|physicist +hesse|1 +(noun)|Hesse|Hermann Hesse|writer|author +hessian|1 +(noun)|Hessian boot|jackboot|Wellington|Wellington boot|boot +hessian boot|1 +(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot +hessian fly|1 +(noun)|Hessian fly|Mayetiola destructor|gall midge|gallfly|gall gnat +hessonite|1 +(noun)|cinnamon stone|essonite|garnet +hestia|1 +(noun)|Hestia|Greek deity +het|1 +(adj)|heated|heated up|het up|hot +het up|2 +(adj)|heated|heated up|het|hot +(adj)|emotional +heteranthera|1 +(noun)|Heteranthera|genus Heteranthera|monocot genus|liliopsid genus +heteranthera dubia|1 +(noun)|water star grass|mud plantain|Heteranthera dubia|aquatic plant|water plant|hydrophyte|hydrophytic plant +heterobasidiomycetes|1 +(noun)|Heterobasidiomycetes|subclass Heterobasidiomycetes|class +heterocephalus|1 +(noun)|Heterocephalus|genus Heterocephalus|mammal genus +heterocercal|1 +(adj)|heterocercal +heterocercal fin|1 +(noun)|tail fin|caudal fin +heterocycle|2 +(noun)|heterocyclic compound|heterocyclic|compound|chemical compound +(noun)|heterocyclic ring|closed chain|ring +heterocyclic|2 +(adj)|cyclic +(noun)|heterocyclic compound|heterocycle|compound|chemical compound +heterocyclic compound|1 +(noun)|heterocyclic|heterocycle|compound|chemical compound +heterocyclic ring|1 +(noun)|heterocycle|closed chain|ring +heterodactyl|1 +(adj)|heterodactyl +heterodactyl foot|1 +(noun)|bird's foot +heterodon|1 +(noun)|Heterodon|genus Heterodon|reptile genus +heterodox|1 +(adj)|dissident|heretical|unorthodox +heterodoxy|2 +(noun)|unorthodoxy|heresy|orientation +(noun)|unorthodoxy|originality +heterodyne|2 +(adj)|oscillation|vibration +(verb)|compound|combine +heterodyne oscillator|1 +(noun)|local oscillator|oscillator +heterodyne receiver|1 +(noun)|superheterodyne receiver|superhet|radio receiver|receiving set|radio set|radio|tuner|wireless +heteroecious|1 +(adj)|heteroecious +heterogeneity|1 +(noun)|heterogeneousness|nonuniformity +heterogeneous|2 +(adj)|heterogeneous |heterogenous|assorted|miscellaneous|mixed|motley|sundry|disparate|inhomogeneous|nonuniform|different|diversified|varied +(adj)|heterogenous +heterogeneousness|1 +(noun)|heterogeneity|nonuniformity +heterogenesis|1 +(noun)|alternation of generations|xenogenesis|organic phenomenon +heterogenous|2 +(adj)|heterogeneous |assorted|miscellaneous|mixed|motley|sundry|disparate|inhomogeneous|nonuniform|different|diversified|varied +(adj)|heterogenous |heterogeneous +heterograft|1 +(noun)|xenograft|graft|transplant +heteroicous|1 +(adj)|polyoicous|polygamous|monoecious |monecious|monoicous +heterokontae|1 +(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class +heterokontophyta|1 +(noun)|Heterokontophyta|division Heterokontophyta|division +heterologic|1 +(adj)|heterologous |heterological +heterological|1 +(adj)|heterologous |heterologic +heterologous|2 +(adj)|heterologous |heterologic|heterological +(adj)|heterologous +heterology|1 +(noun)|dissimilarity|unsimilarity +heteromeles|1 +(noun)|Heteromeles|genus Heteromeles|rosid dicot genus +heteromeles arbutifolia|1 +(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +heterometabolic|1 +(adj)|heterometabolous|metamorphic +heterometabolous|1 +(adj)|heterometabolic|metamorphic +heteromyidae|1 +(noun)|Heteromyidae|family Heteromyidae|mammal family +heteronym|1 +(noun)|word +heterophil antibody|1 +(noun)|heterophile antibody|Forssman antibody|antibody +heterophil test|1 +(noun)|agglutination test +heterophile antibody|1 +(noun)|heterophil antibody|Forssman antibody|antibody +heteroploid|1 +(noun)|organism|being +heteroploidy|1 +(noun)|condition +heteroptera|1 +(noun)|Heteroptera|suborder Heteroptera|animal order +heteropterous insect|1 +(noun)|insect +heteroscelus|1 +(noun)|Heteroscelus|genus Heteroscelus|bird genus +heteroscelus incanus|1 +(noun)|Polynesian tattler|Heteroscelus incanus|tattler +heterosexism|1 +(noun)|discrimination|favoritism|favouritism +heterosexual|2 +(adj)|heterosexual |straight +(noun)|heterosexual person|straight person|straight|person|individual|someone|somebody|mortal|human|soul +heterosexual person|1 +(noun)|heterosexual|straight person|straight|person|individual|someone|somebody|mortal|human|soul +heterosexualism|1 +(noun)|heterosexuality|straightness|sexual activity|sexual practice|sex|sex activity +heterosexuality|1 +(noun)|heterosexualism|straightness|sexual activity|sexual practice|sex|sex activity +heterosomata|1 +(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order +heterosporous|1 +(adj)|monogenesis|sporulation +heterospory|1 +(noun)|monogenesis|sporulation +heterostracan|1 +(noun)|jawless vertebrate|jawless fish|agnathan +heterostraci|1 +(noun)|Heterostraci|suborder Heterostraci|animal order +heterotaxy|1 +(noun)|transposition|abnormality|abnormalcy|abnormal condition +heterotheca|1 +(noun)|Heterotheca|genus Heterotheca|asterid dicot genus +heterotheca villosa|1 +(noun)|hairy golden aster|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower|wild flower +heterothermic|1 +(adj)|poikilothermic|poikilothermous|ectothermic|cold-blooded +heterotrichales|1 +(noun)|Heterotrichales|order Heterotrichales|protoctist order +heterotroph|1 +(noun)|organism|being +heterotrophic|1 +(adj)|heterotrophic +heterozygosity|1 +(noun)|state +heterozygous|1 +(adj)|heterozygous +heth|1 +(noun)|letter|letter of the alphabet|alphabetic character +heuchera|1 +(noun)|Heuchera|genus Heuchera|rosid dicot genus +heuchera americana|1 +(noun)|rock geranium|Heuchera americana|alumroot|alumbloom +heuchera cylindrica|1 +(noun)|poker alumroot|poker heuchera|Heuchera cylindrica|alumroot|alumbloom +heuchera sanguinea|1 +(noun)|coralbells|Heuchera sanguinea|alumroot|alumbloom +heulandite|1 +(noun)|zeolite +heuristic|2 +(adj)|heuristic |trial-and-error +(noun)|heuristic rule|heuristic program|rule|formula +heuristic program|1 +(noun)|heuristic|heuristic rule|rule|formula +heuristic rule|1 +(noun)|heuristic|heuristic program|rule|formula +hevea|1 +(noun)|Hevea|genus Hevea|rosid dicot genus +hevea brasiliensis|1 +(noun)|para rubber tree|caoutchouc tree|Hevea brasiliensis|angiospermous tree|flowering tree +hevesy|1 +(noun)|Hevesy|George Charles Hevesy de Hevesy|chemist +hew|2 +(verb)|hew out|carve +(verb)|strike|hew out +hew out|1 +(verb)|hew|carve +hewer|1 +(noun)|laborer|manual laborer|labourer|jack +hewn|2 +(adj)|felled |downed +(adj)|hand-hewn|cut +hex|3 +(adj)|hexadecimal|positional notation|positional representation system +(noun)|jinx|curse|whammy|spell|magic spell|charm +(verb)|bewitch|glamour|witch|enchant|jinx|charm|becharm +hex nut|1 +(noun)|nut +hexachlorophene|1 +(noun)|antibacterial|antibacterial drug|bactericide +hexacosanoic acid|1 +(noun)|cerotic acid|acid +hexad|1 +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|digit|figure +hexadecanoic acid|1 +(noun)|palmitic acid|saturated fatty acid +hexadecimal|1 +(adj)|hex|positional notation|positional representation system +hexadecimal notation|1 +(noun)|sexadecimal notation|mathematical notation +hexadecimal number system|1 +(noun)|sexadecimal number system|hexadecimal system|positional notation|positional representation system +hexadecimal system|1 +(noun)|hexadecimal number system|sexadecimal number system|positional notation|positional representation system +hexadrol|1 +(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +hexagon|1 +(noun)|polygon|polygonal shape +hexagonal|1 +(adj)|hexangular|polygon|polygonal shape +hexagram|1 +(noun)|star +hexagrammidae|1 +(noun)|Hexagrammidae|family Hexagrammidae|fish family +hexagrammos|1 +(noun)|Hexagrammos|genus Hexagrammos|fish genus +hexagrammos decagrammus|1 +(noun)|kelp greenling|Hexagrammos decagrammus|greenling +hexahedron|1 +(noun)|polyhedron +hexalectris|1 +(noun)|Hexalectris|genus Hexalectris|monocot genus|liliopsid genus +hexalectris spicata|1 +(noun)|crested coral root|Hexalectris spicata|orchid|orchidaceous plant +hexalectris warnockii|1 +(noun)|Texas purple spike|Hexalectris warnockii|orchid|orchidaceous plant +hexameter|1 +(noun)|verse|verse line +hexamita|1 +(noun)|Hexamita|genus Hexamita|protoctist genus +hexanchidae|1 +(noun)|Hexanchidae|family Hexanchidae|fish family +hexanchus|1 +(noun)|Hexanchus|genus Hexanchus|fish genus +hexanchus griseus|1 +(noun)|cow shark|six-gilled shark|Hexanchus griseus|shark +hexane|1 +(noun)|methane series|alkane series|alkane|paraffin|solvent|dissolvent|dissolver|dissolving agent|resolvent +hexanedioic acid|1 +(noun)|adipic acid|carboxylic acid +hexangular|1 +(adj)|hexagonal|polygon|polygonal shape +hexanoic acid|1 +(noun)|caproic acid|saturated fatty acid +hexapoda|1 +(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class +hexed|1 +(adj)|jinxed|unlucky |luckless +hexenbesen|1 +(noun)|witches' broom|witch broom|staghead|tuft|tussock +hexestrol|1 +(noun)|estrogen|oestrogen +hexose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +heyday|1 +(noun)|flower|prime|peak|bloom|blossom|efflorescence|flush|time period|period of time|period +heyerdahl|1 +(noun)|Heyerdahl|Thor Hyerdahl|anthropologist +heyrovsky|1 +(noun)|Heyrovsky|Joroslav Heyrovsky|chemist +heyse|1 +(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer|author +heyward|1 +(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer|author +hezbollah|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +hezekiah|1 +(noun)|Hezekiah|Ezekias|king|male monarch +hf|2 +(noun)|hafnium|Hf|atomic number 72|metallic element|metal +(noun)|high frequency|HF|radio frequency +hfc|1 +(noun)|hydrofluorocarbon|HFC|fluorocarbon|greenhouse gas|greenhouse emission +hg|2 +(noun)|mercury|quicksilver|hydrargyrum|Hg|atomic number 80|metallic element|metal +(noun)|hectogram|metric weight unit|weight unit +hhs|1 +(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department +hi|2 +(noun)|hello|hullo|howdy|how-do-you-do|greeting|salutation +(noun)|Hawaii|Aloha State|HI|American state +hi-fi|3 +(adj)|high-fidelity|accurate +(noun)|high fidelity sound system|reproducer +(noun)|high fidelity|sound reproduction +hi-tech|1 +(adj)|high-tech |advanced|sophisticated +hiatal hernia|1 +(noun)|hiatus hernia|diaphragmatic hernia|hernia|herniation +hiatus|3 +(noun)|suspension|respite|reprieve|abatement|interruption|break +(noun)|piece +(noun)|foramen|opening|gap +hiatus hernia|1 +(noun)|hiatal hernia|diaphragmatic hernia|hernia|herniation +hiawatha|1 +(noun)|Hiawatha|Indian chief|Indian chieftain|Onondaga +hiba arborvitae|1 +(noun)|Thujopsis dolobrata|arborvitae +hibachi|2 +(noun)|brazier|brasier +(verb)|grill +hibbertia|1 +(noun)|Hibbertia|genus Hibbertia|dilleniid dicot genus +hibbing|1 +(noun)|Hibbing|town +hibernal|1 +(adj)|brumal|hiemal|wintry |wintery +hibernate|2 +(verb)|hole up|sleep|kip|slumber|log Z's|catch some Z's +(verb)|rest +hibernating|1 +(adj)|dormant|torpid|asleep +hibernation|3 +(noun)|torpor|torpidity +(noun)|dormancy|quiescence|quiescency +(noun)|retirement +hibernia|1 +(noun)|Ireland|Hibernia|Emerald Isle|island +hibiscus|1 +(noun)|mallow +hibiscus cannabinus|1 +(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +hibiscus elatus|1 +(noun)|Cuban bast|blue mahoe|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus +hibiscus esculentus|1 +(noun)|okra|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +hibiscus farragei|1 +(noun)|bush hibiscus|Radyera farragei|Hibiscus farragei|shrub|bush +hibiscus heterophyllus|1 +(noun)|sorrel tree|Hibiscus heterophyllus|hibiscus +hibiscus moschatus|1 +(noun)|abelmosk|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow +hibiscus moscheutos|1 +(noun)|rose mallow|swamp mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus +hibiscus mutabilis|1 +(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus +hibiscus rosa-sinensis|1 +(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus +hibiscus sabdariffa|1 +(noun)|roselle|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +hibiscus syriacus|1 +(noun)|rose of Sharon|Hibiscus syriacus|hibiscus +hibiscus tiliaceus|1 +(noun)|mahoe|majagua|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus +hibiscus trionum|1 +(noun)|flower-of-an-hour|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus +hiccough|2 +(noun)|hiccup|singultus|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|hiccup|breathe|take a breath|respire|suspire +hiccough nut|1 +(noun)|hiccup nut|Combretum bracteosum|shrub|bush +hiccup|2 +(noun)|hiccough|singultus|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|hiccough|breathe|take a breath|respire|suspire +hiccup nut|1 +(noun)|hiccough nut|Combretum bracteosum|shrub|bush +hick|2 +(adj)|bumpkinly|rustic|unsophisticated|provincial +(noun)|yokel|rube|yahoo|hayseed|bumpkin|chawbacon|rustic +hickey|3 +(noun)|pimple|symptom +(noun)|love bite|erythema +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +hickock|1 +(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal|marshall +hickory|2 +(noun)|wood +(noun)|hickory tree|nut tree +hickory nut|1 +(noun)|edible nut +hickory pine|1 +(noun)|table-mountain pine|prickly pine|Pinus pungens|pine|pine tree|true pine +hickory tree|1 +(noun)|hickory|nut tree +hidatsa|2 +(noun)|Hidatsa|Gros Ventre|Sioux|Siouan +(noun)|Hidatsa|Gros Ventre|Siouan|Siouan language +hidden|4 +(adj)|concealed|out of sight|invisible |unseeable +(adj)|buried|concealed +(adj)|secret|concealed +(adj)|obscure|concealed +hidden reserve|1 +(noun)|reserve account|reserve fund +hidden tax|1 +(noun)|indirect tax +hiddenite|1 +(noun)|spodumene|transparent gem +hide|6 +(noun)|fell|animal skin +(noun)|pelt|skin|body covering +(verb)|conceal +(verb)|hide out +(verb)|shroud|enshroud|cover|envelop|enfold|enwrap|wrap|enclose +(verb)|obscure|blot out|obliterate|veil|change|alter|modify +hide-and-seek|1 +(noun)|hide and go seek|child's game +hide and go seek|1 +(noun)|hide-and-seek|child's game +hide out|1 +(verb)|hide +hideaway|2 +(noun)|hideout|den|hiding place +(noun)|retreat|area +hidebound|1 +(adj)|traditionalist|conservative +hideki yukawa|1 +(noun)|Yukawa|Hideki Yukawa|nuclear physicist +hideous|2 +(adj)|horrid|horrific|outrageous|offensive +(adj)|repulsive|ugly +hideously|1 +(adv)|horridly|monstrously +hideousness|1 +(noun)|ugliness +hideout|1 +(noun)|hideaway|den|hiding place +hideyo noguchi|1 +(noun)|Noguchi|Hideyo Noguchi|bacteriologist +hiding|1 +(noun)|concealment|concealing|activity +hiding place|1 +(noun)|topographic point|place|spot +hidrosis|1 +(noun)|perspiration|sweating|diaphoresis|sudation|bodily process|body process|bodily function|activity +hidrotic|1 +(adj)|secretion +hie|1 +(verb)|rush|hotfoot|hasten|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +hiemal|1 +(adj)|brumal|hibernal|wintry |wintery +hieracium|1 +(noun)|Hieracium|genus Hieracium|asterid dicot genus +hieracium aurantiacum|1 +(noun)|orange hawkweed|Pilosella aurantiaca|Hieracium aurantiacum|weed +hieracium pilocella|1 +(noun)|mouse-ear hawkweed|Pilosella officinarum|Hieracium pilocella|hawkweed +hieracium praealtum|1 +(noun)|king devil|yellow hawkweed|Hieracium praealtum|weed +hieracium venosum|1 +(noun)|rattlesnake weed|Hieracium venosum|hawkweed +hierarch|1 +(noun)|archpriest|high priest|prelate|primate|priest +hierarchal|1 +(adj)|hierarchical |hierarchic|class-conscious|stratified|graded|ranked|stratified|gradable +hierarchic|1 +(adj)|hierarchical |hierarchal|class-conscious|stratified|graded|ranked|stratified|gradable +hierarchical|1 +(adj)|hierarchical |hierarchal|hierarchic|class-conscious|stratified|graded|ranked|stratified|gradable +hierarchical classification system|1 +(noun)|classification system +hierarchical data structure|1 +(noun)|hierarchical structure|data structure +hierarchical menu|1 +(noun)|cascading menu|submenu|menu|computer menu +hierarchical structure|1 +(noun)|hierarchical data structure|data structure +hierarchy|2 +(noun)|series +(noun)|power structure|pecking order|organization|organisation +hieratic|4 +(adj)|priestly|hieratical|sacerdotal|profession|community +(adj)|hieroglyph|hieroglyphic +(adj)|nonrepresentational +(noun)|hieratic script|hieroglyph|hieroglyphic +hieratic script|1 +(noun)|hieratic|hieroglyph|hieroglyphic +hieratical|1 +(adj)|priestly|hieratic|sacerdotal|profession|community +hieroglyph|2 +(noun)|hieroglyphic|writing +(noun)|hieroglyphic|orthography|writing system +hieroglyphic|4 +(adj)|hieroglyphical|writing +(adj)|hieroglyphical|orthography|writing system +(noun)|hieroglyph|writing +(noun)|hieroglyph|orthography|writing system +hieroglyphical|2 +(adj)|hieroglyphic|writing +(adj)|hieroglyphic|orthography|writing system +hierolatry|1 +(noun)|hagiolatry|worship of saints|worship +hieronymus|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +hieronymus bosch|1 +(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master +hifalutin|1 +(adj)|grandiose|highfalutin|highfaluting|hoity-toity|la-di-da|pretentious +higginson|1 +(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier|writer|author +higgle|1 +(verb)|haggle|chaffer|huckster|dicker|bargain +higgledy-piggledy|2 +(adj)|disorderly|hugger-mugger|jumbled|topsy-turvy|untidy +(adv)|topsy-turvy +high|16 +(adj)|high |advanced|broad|full|exalted|flooding|in flood|overflowing|swollen|graduate|postgraduate|great|higher|higher|last|utmost|soaring|superior +(adj)|high |altitudinous|commanding|dominating|overlooking|eminent|lofty|soaring|towering|high-level|high-stepped|high-stepping|high-top|high-topped|steep|upper|tall|top|up +(adj)|eminent|superior +(adj)|high |high-pitched|adenoidal|pinched|nasal|altissimo|alto|countertenor|alto|falsetto|peaky|spiky|piping|piercing|shrill|sharp|screaky|screechy|squeaking|squeaky|squealing|soprano|treble|sopranino|tenor|tenor|shrilling +(adj)|in high spirits|elated +(adj)|gamey|gamy|malodorous |malodourous +(adj)|mellow|intoxicated |drunk|inebriated +(noun)|degree|grade|level +(noun)|high pressure|air mass +(noun)|elation +(noun)|elation +(noun)|heights|topographic point|place|spot +(noun)|senior high school|senior high|highschool|high school|secondary school|lyceum|lycee|Gymnasium|middle school +(noun)|high gear|gear|gear mechanism +(adv)|high up +(adv)|richly|luxuriously +high-and-dry|1 +(adj)|beached|aground +high-and-mighty|1 +(adj)|autocratic|bossy|dominating|magisterial|peremptory|domineering +high-angle fire|1 +(noun)|artillery fire|cannon fire +high-angle gun|1 +(noun)|cannon +high-backed|1 +(adj)|backed +high-bush blueberry|1 +(noun)|tall bilberry|swamp blueberry|Vaccinium corymbosum|blueberry|blueberry bush +high-ceilinged|1 +(adj)|ceilinged +high-class|1 +(adj)|high-toned|elegant +high-definition television|1 +(noun)|HDTV|television|telecasting|TV|video +high-density lipoprotein|1 +(noun)|HDL|alpha-lipoprotein|lipoprotein +high-energy|2 +(adj)|physical phenomenon +(adj)|high-octane|high-powered|high-power|high-voltage|dynamic |dynamical +high-energy physics|2 +(noun)|particle physics|high energy physics|physics|physical science|natural philosophy +(noun)| +high-fidelity|1 +(adj)|hi-fi|accurate +high-five|1 +(noun)|gesture|motion +high-flown|2 +(adj)|high-sounding|inflated|pretentious +(adj)|exalted|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble +high-grade|1 +(adj)|finest|top-quality|top-grade|best +high-handed|1 +(adj)|cavalier|domineering +high-hat cymbal|1 +(noun)|high hat|cymbal +high-keyed|1 +(adj)|excitable +high-level|2 +(adj)|high-ranking|upper-level|superior +(adj)|high +high-level formatting|1 +(noun)|format|formatting|data format|data formatting +high-level language|1 +(noun)|application-oriented language|problem-oriented language +high-level radioactive waste|1 +(noun)|radioactive waste +high-low|1 +(noun)|poker|poker game +high-low-jack|1 +(noun)|all fours|card game|cards +high-minded|1 +(adj)|exalted|high-flown|lofty|rarefied|rarified|idealistic|noble-minded|noble +high-mindedness|1 +(noun)|idealism|noble-mindedness|nobility|magnanimousness|grandeur +high-muck-a-muck|1 +(noun)|pooh-bah|important person|influential person|personage +high-necked|1 +(adj)|necked +high-octane|2 +(adj)|efficient +(adj)|high-powered|high-power|high-voltage|high-energy|dynamic |dynamical +high-performance|1 +(adj)|superior +high-pitched|2 +(adj)|high |adenoidal|pinched|nasal|altissimo|alto|countertenor|alto|falsetto|peaky|spiky|piping|piercing|shrill|sharp|screaky|screechy|squeaking|squeaky|squealing|soprano|treble|sopranino|tenor|tenor|shrilling +(adj)|inclined +high-potential|1 +(adj)|high-voltage|high-tension +high-power|1 +(adj)|high-octane|high-powered|high-voltage|high-energy|dynamic |dynamical +high-powered|2 +(adj)|high-octane|high-power|high-voltage|high-energy|dynamic |dynamical +(adj)|powered +high-pressure|1 +(adj)|hard-hitting|aggressive +high-priced|1 +(adj)|costly|dear|pricey|pricy|expensive +high-principled|1 +(adj)|principled +high-protein diet|1 +(noun)|diet +high-ranking|1 +(adj)|high-level|upper-level|superior +high-resolution|1 +(adj)|high-resolution +high-rise|2 +(adj)|high-rise |multistory|multistorey|multistoried|storied|storeyed +(noun)|tower block|tower +high-risk|1 +(adj)|bad|insecure|risky|speculative|unsound +high-season|1 +(adj)|peak-seaason|peak +high-sounding|1 +(adj)|high-flown|inflated|pretentious +high-speed|2 +(adj)|high-velocity|fast +(adj)|fast +high-speed steel|1 +(noun)|hot-work steel|tool steel +high-spirited|1 +(adj)|ebullient|exuberant|spirited +high-spiritedness|1 +(noun)|liveliness|life|spirit|sprightliness +high-stepped|1 +(adj)|high-stepping|high +high-stepping|1 +(adj)|high-stepped|high +high-strength brass|1 +(noun)|manganese bronze|alpha-beta brass|Muntz metal|yellow metal +high-strung|1 +(adj)|edgy|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense +high-sudsing|1 +(adj)|high-sudsing +high-tail|2 +(verb)|flee|fly|take flight +(verb)|hightail|leave|go forth|go away +high-tech|1 +(adj)|high-tech |hi-tech|advanced|sophisticated +high-tension|1 +(adj)|high-tension |high-voltage|high-potential +high-ticket|1 +(adj)|big-ticket|expensive +high-toned|1 +(adj)|high-class|elegant +high-top|1 +(adj)|high-topped|high +high-topped|1 +(adj)|high-top|high +high-up|1 +(noun)|very important person|VIP|dignitary|panjandrum|high muckamuck|important person|influential person|personage +high-velocity|1 +(adj)|high-speed|fast +high-vitamin diet|1 +(noun)|vitamin-deficiency diet|diet +high-voltage|2 +(adj)|high-potential|high-tension +(adj)|high-octane|high-powered|high-power|high-energy|dynamic |dynamical +high-warp loom|1 +(noun)|handloom +high-water mark|1 +(noun)|water line|watermark +high-yield bond|1 +(noun)|junk bond|bond|bond certificate +high altar|1 +(noun)|altar +high anglican church|1 +(noun)|High Church|High Anglican Church|sect|religious sect|religious order +high anglicanism|1 +(noun)|Anglo-Catholicism|High Anglicanism|Anglicanism +high bar|1 +(noun)|horizontal bar|gymnastic apparatus|exerciser +high beam|1 +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +high blood pressure|1 +(noun)|hypertension|cardiovascular disease +high brass|1 +(noun)|brass +high church|1 +(noun)|High Church|High Anglican Church|sect|religious sect|religious order +high colonic|1 +(noun)|colonic|colonic irrigation|purge|purging +high comedy|1 +(noun)|comedy +high command|1 +(noun)|supreme headquarters|leadership|leaders +high commission|1 +(noun)|High Commission|embassy +high commissioner|1 +(noun)|diplomat|diplomatist +high court|1 +(noun)|supreme court|state supreme court|court|tribunal|judicature +high dam|1 +(noun)|Aswan High Dam|Aswan Dam|High Dam|dam|dike|dyke|levee +high dudgeon|1 +(noun)|dudgeon|indignation|outrage +high energy physics|1 +(noun)|particle physics|high-energy physics|physics|physical science|natural philosophy +high explosive|1 +(noun)|explosive|weapon of mass destruction|WMD|W.M.D. +high fashion|1 +(noun)|haute couture|high style|fashion +high fidelity|1 +(noun)|hi-fi|sound reproduction +high fidelity sound system|1 +(noun)|hi-fi|reproducer +high finance|1 +(noun)|finance +high frequency|2 +(noun)|HF|radio frequency +(noun)|high pitch|pitch +high gear|1 +(noun)|high|gear|gear mechanism +high german|1 +(noun)|German|High German|German language|West Germanic|West Germanic language +high ground|1 +(noun)|status|position +high hat|2 +(noun)|high-hat cymbal|cymbal +(noun)|dress hat|opera hat|silk hat|stovepipe|top hat|topper|beaver|hat|chapeau|lid +high holiday|1 +(noun)|High Holy Day|High Holiday|Jewish holy day +high holy day|1 +(noun)|High Holy Day|High Holiday|Jewish holy day +high horse|1 +(noun)|attitude|mental attitude +high jinks|1 +(noun)|jinks|hijinks|high jinx|merrymaking|conviviality|jollification +high jinx|1 +(noun)|jinks|high jinks|hijinks|merrymaking|conviviality|jollification +high jump|2 +(noun)|field event +(noun)|jumping +high life|2 +(noun)|extravagance|prodigality|lavishness|highlife|waste|wastefulness|dissipation +(noun)| +high mallow|1 +(noun)|tall mallow|cheese|cheeseflower|Malva sylvestris|mallow +high mass|1 +(noun)|High Mass|Mass +high muckamuck|1 +(noun)|very important person|VIP|high-up|dignitary|panjandrum|important person|influential person|personage +high noon|1 +(noun)|noon|twelve noon|midday|noonday|noontide|hour|time of day +high pitch|1 +(noun)|high frequency|pitch +high point|1 +(noun)|part|section|division +high pressure|1 +(noun)|high|air mass +high priest|2 +(noun)|authority +(noun)|archpriest|hierarch|prelate|primate|priest +high profile|1 +(noun)|status|position +high quality|1 +(noun)|superiority|quality|caliber|calibre +high relief|1 +(noun)|alto relievo|alto rilievo|relief|relievo|rilievo|embossment|sculptural relief +high renaissance|1 +(noun)|High Renaissance|artistic style|idiom +high roller|2 +(noun)|big spender|spendthrift|spend-all|spender|scattergood +(noun)|gambler +high school|2 +(noun)|senior high school|senior high|high|highschool|secondary school|lyceum|lycee|Gymnasium|middle school +(noun)| +high sea|1 +(noun)|international waters|body of water|water +high season|1 +(noun)|peak season|season +high sierra|1 +(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +high sign|1 +(noun)|signal|signaling|sign +high society|1 +(noun)|society|beau monde|smart set|bon ton|elite|elite group +high spirits|1 +(noun)|elation|joy|joyousness|joyfulness +high spot|1 +(noun)|highlight|detail|particular|item +high status|1 +(noun)|status|position +high stepper|1 +(noun)|stepper|horse|Equus caballus +high street|1 +(noun)|main street|street +high style|1 +(noun)|haute couture|high fashion|fashion +high table|1 +(noun)|dining table|board +high tea|1 +(noun)|dinner +high technology|1 +(noun)|technology|engineering +high temperature|1 +(noun)|hotness|heat|temperature +high tide|1 +(noun)|high water|highwater|tide +high time|1 +(noun)|time +high treason|1 +(noun)|treason|lese majesty|crime|law-breaking +high up|1 +(adv)|high +high water|2 +(noun)|high tide|highwater|tide +(noun)| +high wind|1 +(noun)|wind|air current|current of air +high wire|1 +(noun)|tightrope +highball|1 +(noun)|mixed drink +highball glass|1 +(noun)|glass|drinking glass +highbinder|1 +(noun)|criminal|felon|crook|outlaw|malefactor +highboard|1 +(noun)|diving board +highborn|1 +(adj)|coroneted|titled|noble +highboy|1 +(noun)|tallboy|chest of drawers|chest|bureau|dresser +highbrow|2 +(adj)|highbrowed|intellectual +(noun)|intellectual|intellect +highbrowed|1 +(adj)|highbrow|intellectual +highbush cranberry|1 +(noun)|cranberry bush|cranberry tree|American cranberry bush|Viburnum trilobum|shrub|bush +highchair|1 +(noun)|feeding chair|chair +higher|9 +(adj)|high +(adj)|high +(adj)|high |advanced|broad|full|exalted|flooding|in flood|overflowing|swollen|graduate|postgraduate|great|last|utmost|soaring|superior +(adj)|high |altitudinous|commanding|dominating|overlooking|eminent|lofty|soaring|towering|high-level|high-stepped|high-stepping|high-top|high-topped|steep|upper|tall|top|up +(adj)|eminent|high|superior +(adj)|high |high-pitched|adenoidal|pinched|nasal|altissimo|alto|countertenor|alto|falsetto|peaky|spiky|piping|piercing|shrill|sharp|screaky|screechy|squeaking|squeaky|squealing|soprano|treble|sopranino|tenor|tenor|shrilling +(adj)|high|in high spirits|elated +(adj)|gamey|gamy|high|malodorous |malodourous +(adj)|high|mellow|intoxicated |drunk|inebriated +higher-ranking|2 +(adj)|ranking|superior|senior +(adj)|high-level|high-ranking|upper-level|superior +higher-up|1 +(noun)|superior|superordinate|leader +higher cognitive process|1 +(noun)|process|cognitive process|mental process|operation|cognitive operation +higher criticism|1 +(noun)|textual criticism +higher education|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +higher law|1 +(noun)|principle|precept +higher national diploma|1 +(noun)|Higher National Diploma|HND|diploma|sheepskin +higher rank|1 +(noun)|seniority|senior status|higher status|high status +higher status|1 +(noun)|seniority|senior status|higher rank|high status +higher up|1 +(adv)|above|in a higher place|to a higher place +highest|9 +(adj)|peak|maximal +(adj)|ultimate +(adj)|high |advanced|broad|full|exalted|flooding|in flood|overflowing|swollen|graduate|postgraduate|great|higher|higher|last|utmost|soaring|superior +(adj)|high |altitudinous|commanding|dominating|overlooking|eminent|lofty|soaring|towering|high-level|high-stepped|high-stepping|high-top|high-topped|steep|upper|tall|top|up +(adj)|eminent|high|superior +(adj)|high |high-pitched|adenoidal|pinched|nasal|altissimo|alto|countertenor|alto|falsetto|peaky|spiky|piping|piercing|shrill|sharp|screaky|screechy|squeaking|squeaky|squealing|soprano|treble|sopranino|tenor|tenor|shrilling +(adj)|high|in high spirits|elated +(adj)|gamey|gamy|high|malodorous |malodourous +(adj)|high|mellow|intoxicated |drunk|inebriated +highest common factor|1 +(noun)|greatest common divisor|greatest common factor|common divisor|common factor|common measure +highfalutin|1 +(adj)|grandiose|hifalutin|highfaluting|hoity-toity|la-di-da|pretentious +highfaluting|1 +(adj)|grandiose|hifalutin|highfalutin|hoity-toity|la-di-da|pretentious +highflier|1 +(noun)|highflyer|achiever|winner|success|succeeder +highflyer|1 +(noun)|highflier|achiever|winner|success|succeeder +highflying|2 +(adj)|ascending +(adj)|unrestrained +highhandedness|1 +(noun)|arrogance|haughtiness|hauteur|lordliness|pride +highjack|2 +(noun)|hijack|crime|law-breaking +(verb)|commandeer|hijack|pirate|seize +highjacker|2 +(noun)|hijacker|criminal|felon|crook|outlaw|malefactor +(noun)|highwayman|hijacker|road agent|holdup man|stickup man +highjacking|1 +(noun)|hijacking|robbery +highland|2 +(adj)|upland |alpestrine|subalpine|alpine|mountain|mountainous +(noun)|upland|natural elevation|elevation +highland fling|1 +(noun)|reel|Scottish reel +highlander|2 +(noun)|Highlander|soldier +(noun)|Highlander|Scottish Highlander|Scot|Scotsman|Scotchman +highlands|2 +(noun)|Highlands|Highlands of Scotland|highland|upland +(noun)|highland|upland|natural elevation|elevation +highlands of scotland|1 +(noun)|Highlands|Highlands of Scotland|highland|upland +highlife|1 +(noun)|extravagance|prodigality|lavishness|high life|waste|wastefulness|dissipation +highlight|3 +(noun)|high spot|detail|particular|item +(noun)|highlighting|light|lightness +(verb)|foreground|spotlight|play up|bring out|set off +highlighter|2 +(noun)|cosmetic|cosmetics +(noun)|marker +highlighting|1 +(noun)|highlight|light|lightness +highly|1 +(adv)|extremely +highly-developed|1 +(adj)|developed|industrial +highly-sexed|1 +(adj)|oversexed|sexy +highly active antiretroviral therapy|1 +(noun)|drug cocktail|HAART|medicine|medication|medicament|medicinal drug +highly infective|1 +(adj)|virulent +highly sensitive|1 +(adj)|sensitive +highly strung|1 +(adj)|edgy|high-strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense +highness|2 +(noun)|Highness|aristocrat|blue blood|patrician +(noun)|loftiness|height|tallness +highroad|1 +(noun)|trunk road|highway|main road +highschool|1 +(noun)|senior high school|senior high|high|high school|secondary school|lyceum|lycee|Gymnasium|middle school +hightail|1 +(verb)|leave|go forth|go away +hightail it|1 +(verb)|run|scarper|turn tail|lam|run away|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +highwater|1 +(noun)|high tide|high water|tide +highway|1 +(noun)|main road|road|route +highway code|1 +(noun)|Highway Code|code|codification +highway engineer|1 +(noun)|civil engineer +highway robbery|2 +(noun)|price|terms|damage +(noun)|robbery +highway system|1 +(noun)|transportation system|transportation|transit +highwayman|1 +(noun)|highjacker|hijacker|road agent|holdup man|stickup man +higi|1 +(noun)|Higi|Kapsiki|Biu-Mandara +hijab|2 +(noun)|headscarf +(noun)|custom|usage|usance +hijack|2 +(noun)|highjack|crime|law-breaking +(verb)|commandeer|highjack|pirate|seize +hijacker|2 +(noun)|highjacker|highwayman|road agent|holdup man|stickup man +(noun)|highjacker|criminal|felon|crook|outlaw|malefactor +hijacking|2 +(adj)|seize +(noun)|highjacking|robbery +hijaz|1 +(noun)|Hejaz|Hedjaz|Hijaz|geographical area|geographic area|geographical region|geographic region +hijinks|1 +(noun)|jinks|high jinks|high jinx|merrymaking|conviviality|jollification +hike|5 +(noun)|tramp|walk +(noun)|rise|boost|cost increase|increase|increment +(noun)|raise|rise|wage hike|wage increase|salary increase|increase|increment +(verb)|hike up|boost|raise|lift|elevate|get up|bring up +(verb)|walk +hike up|2 +(verb)|hitch up|pull|draw|force +(verb)|hike|boost|raise|lift|elevate|get up|bring up +hiker|1 +(noun)|tramp|tramper|pedestrian|walker|footer +hilaire belloc|1 +(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer|author +hilar|1 +(adj)|fissure +hilarious|1 +(adj)|screaming|uproarious|humorous |humourous +hilariously|1 +(adv)|uproariously +hilarity|1 +(noun)|mirth|mirthfulness|glee|gleefulness|gaiety|merriment +hilbert|1 +(noun)|Hilbert|David Hilbert|mathematician +hilbert space|1 +(noun)|Hilbert space|metric space +hildebrand|1 +(noun)|Gregory|Gregory VII|Hildebrand|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +hill|6 +(noun)|natural elevation|elevation +(noun)|mound|structure|construction +(noun)|Hill|J. J. Hill|James Jerome Hill|businessman|man of affairs +(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian|comic +(noun)|mound|pitcher's mound|baseball equipment +(verb)|shape|form|work|mold|mould|forge +hill myna|1 +(noun)|Indian grackle|grackle|Gracula religiosa|myna|mynah|mina|minah|myna bird|mynah bird +hillary|1 +(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer|mountain climber +hillbilly|1 +(noun)|bushwhacker|rustic +hillbilly music|1 +(noun)|country music|country and western|C and W +hillock|1 +(noun)|knoll|mound|hummock|hammock|hill +hills|6 +(noun)|land|dry land|earth|ground|solid ground|terra firma|natural elevation|elevation +(noun)|hill|natural elevation|elevation +(noun)|mound|hill|structure|construction +(noun)|Hill|J. J. Hill|James Jerome Hill|businessman|man of affairs +(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian|comic +(noun)|mound|hill|pitcher's mound|baseball equipment +hillside|1 +(noun)|slope|incline|side +hilltop|1 +(noun)|brow|peak|crown|crest|top|tip|summit +hilly|1 +(adj)|cragged|craggy|mountainous|rough |unsmooth +hilo|1 +(noun)|Hilo|town +hilt|1 +(noun)|handle|grip|handgrip|hold +hilum|2 +(noun)|hilus|fissure +(noun)|point +hilus|1 +(noun)|hilum|fissure +himalaya honeysuckle|1 +(noun)|Himalaya honeysuckle|Leycesteria formosa|shrub|bush +himalaya mountains|1 +(noun)|Himalayas|Himalaya Mountains|the Himalaya|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +himalayan|1 +(adj)|Himalayan|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +himalayan cedar|1 +(noun)|deodar|deodar cedar|Himalayan cedar|Cedrus deodara|cedar|cedar tree|true cedar +himalayan lilac|1 +(noun)|Himalayan lilac|Syringa emodi|lilac +himalayan rhubarb|1 +(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb|rhubarb plant +himalayas|1 +(noun)|Himalayas|Himalaya Mountains|the Himalaya|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +himalayish|1 +(noun)|Himalayish|Tibeto-Burman|Tibeto-Burman language +himantoglossum|1 +(noun)|Himantoglossum|genus Himantoglossum|monocot genus|liliopsid genus +himantoglossum hircinum|1 +(noun)|lizard orchid|Himantoglossum hircinum|orchid|orchidaceous plant +himantopus|1 +(noun)|Himantopus|genus Himantopus|bird genus +himantopus himantopus|1 +(noun)|black-winged stilt|Himantopus himantopus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +himantopus himantopus leucocephalus|1 +(noun)|white-headed stilt|Himantopus himantopus leucocephalus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +himantopus mexicanus|1 +(noun)|black-necked stilt|Himantopus mexicanus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +himantopus novae-zelandiae|1 +(noun)|kaki|Himantopus novae-zelandiae|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +himantopus stilt|1 +(noun)|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird|shore bird|limicoline bird +himmler|1 +(noun)|Himmler|Heinrich Himmler|Nazi|German Nazi +hin|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +hinault|1 +(noun)|Hinault|Bernard Hinault|cyclist|bicyclist|bicycler|wheeler +hinayana|2 +(noun)|Hinayana|Buddhism +(noun)|Hinayana|Hinayana Buddhism|Theravada|Theravada Buddhism +hinayana buddhism|1 +(noun)|Hinayana|Hinayana Buddhism|Theravada|Theravada Buddhism +hinayanist|1 +(noun)|Hinayanist|disciple|adherent +hind|3 +(adj)|back|hinder|posterior +(noun)|grouper +(noun)|red deer|Cervus elaphus +hind end|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +hind leg|1 +(noun)|hind limb +hind limb|1 +(noun)|limb +hindbrain|1 +(noun)|rhombencephalon|neural structure +hindemith|1 +(noun)|Hindemith|Paul Hindemith|composer|conductor|music director|director +hindenburg|1 +(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general|full general|field marshal|statesman|solon|national leader +hinder|5 +(adj)|back|hind|posterior +(adj)|back|hind|posterior +(verb)|impede|prevent|keep +(verb)|obstruct|blockade|block|stymie|stymy|embarrass|prevent|forestall|foreclose|preclude|forbid +(verb)|handicap|hamper|disadvantage|disfavor|disfavour +hindering|1 +(adj)|clogging|impeding|obstructive|preventive |preventative +hinderingly|1 +(adv)|obstructively +hindermost|1 +(adj)|backmost|hindmost|rearmost|back +hindfoot|1 +(noun)|animal foot|foot +hindgut|1 +(noun)|internal organ|viscus +hindi|2 +(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief +(noun)|Hindi|Sanskrit|Sanskritic language +hindmost|1 +(adj)|backmost|hindermost|rearmost|back +hindoo|3 +(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief +(noun)|Hindu|Hindoo|Hindustani|Asian|Asiatic +(noun)|Hindu|Hindoo|religionist|religious person +hindooism|2 +(noun)|Hinduism|Hindooism|religion|faith +(noun)|Hinduism|Hindooism|religion|faith|religious belief +hindoostani|1 +(noun)|Hindustani|Hindoostani|Hindostani|Hindi +hindostani|1 +(noun)|Hindustani|Hindoostani|Hindostani|Hindi +hindquarter|1 +(noun)|cut|cut of meat +hindquarters|3 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|croup|croupe|rump|body part +(noun)|hindquarter|cut|cut of meat +hindrance|3 +(noun)|deterrent|impediment|balk|baulk|check|handicap|difficulty +(noun)|hitch|preventive|preventative|encumbrance|incumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|interference|act|human action|human activity +hindshank|1 +(noun)|shank +hindsight|1 +(noun)|understanding|apprehension|discernment|savvy +hindu|3 +(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief +(noun)|Hindu|Hindoo|Hindustani|Asian|Asiatic +(noun)|Hindu|Hindoo|religionist|religious person +hindu-arabic numeral|1 +(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral|number +hindu calendar|1 +(noun)|Hindu calendar|lunisolar calendar +hindu calendar month|1 +(noun)|Hindu calendar month|calendar month|month +hindu deity|1 +(noun)|Hindu deity|deity|divinity|god|immortal +hindu kush|1 +(noun)|Hindu Kush|Hindu Kush Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +hindu kush mountains|1 +(noun)|Hindu Kush|Hindu Kush Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +hindu numeral|1 +(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral|number +hinduism|2 +(noun)|Hinduism|Hindooism|religion|faith +(noun)|Hinduism|Hindooism|religion|faith|religious belief +hindustan|1 +(noun)|Hindustan|geographical area|geographic area|geographical region|geographic region +hindustani|3 +(adj)|Hindustani|geographical area|geographic area|geographical region|geographic region +(noun)|Hindu|Hindoo|Hindustani|Asian|Asiatic +(noun)|Hindustani|Hindoostani|Hindostani|Hindi +hinge|3 +(noun)|flexible joint|joint +(noun)|circumstance +(verb)|attach +hinge joint|2 +(noun)|ginglymus|ginglymoid joint|synovial joint|articulatio synovialis|diarthrosis +(noun)|knuckle joint|joint +hinge on|1 +(verb)|depend on|devolve on|depend upon|ride|turn on|hinge upon +hinge upon|1 +(verb)|depend on|devolve on|depend upon|ride|turn on|hinge on +hinging post|1 +(noun)|swinging post|gatepost +hinny|1 +(noun)|equine|equid +hint|6 +(noun)|intimation|breath|suggestion|proposition|proffer +(noun)|clue|indication|indicant +(noun)|touch|tinge|mite|pinch|jot|speck|soupcon|small indefinite quantity|small indefinite amount +(noun)|trace|suggestion|small indefinite quantity|small indefinite amount +(noun)|tip|lead|steer|confidential information|wind|guidance|counsel|counseling|counselling|direction +(verb)|suggest|convey|impart +hinterland|1 +(noun)|backwoods|back country|boondocks|country|rural area +hip|5 +(adj)|hep|hip to|informed +(noun)|body part +(noun)|pelvis|pelvic girdle|pelvic arch|girdle +(noun)|hip joint|coxa|articulatio coxae|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +(noun)|rose hip|rosehip|fruit +hip-hop|2 +(noun)|youth culture +(noun)|rap|rap music|popular music|popular music genre|black music|African-American music +hip-length|2 +(adj)|hiplength +(adj)| +hip bath|1 +(noun)|sitz bath|bathtub|bathing tub|bath|tub +hip boot|1 +(noun)|hip boots|thigh boot|thigh boots|boot +hip boots|2 +(noun)|hip boot|thigh boot|thigh boots|boot +(noun)|hip boot|thigh boot|thigh boots|boot +hip joint|1 +(noun)|hip|coxa|articulatio coxae|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +hip pad|1 +(noun)|protective garment +hip pocket|1 +(noun)|pocket +hip roof|1 +(noun)|roof +hip socket|1 +(noun)|socket +hip tile|1 +(noun)|tile|roofing tile +hip to|1 +(adj)|hep|hip|informed +hipbone|1 +(noun)|innominate bone|bone|os +hipflask|1 +(noun)|pocket flask|flask +hiplength|1 +(adj)|hip-length|line|line +hipless|1 +(adj)|hipless +hipline|2 +(noun)|line +(noun)|line +hipparchus|1 +(noun)|Hipparchus|astronomer|uranologist|stargazer|mathematician +hippeastrum|1 +(noun)|Hippeastrum puniceum|amaryllis +hippeastrum puniceum|1 +(noun)|hippeastrum|Hippeastrum puniceum|amaryllis +hipped|2 +(adj)|hipped +(adj)|hipped |mansard +hippie|1 +(noun)|hippy|hipster|flower child|reformer|reformist|crusader|meliorist +hippies|2 +(noun)|flower people|hipsters|youth subculture +(noun)|hippie|hippy|hipster|flower child|reformer|reformist|crusader|meliorist +hippo|2 +(noun)|Hippo|Hippo Regius|town +(noun)|hippopotamus|river horse|Hippopotamus amphibius|even-toed ungulate|artiodactyl|artiodactyl mammal +hippo regius|1 +(noun)|Hippo|Hippo Regius|town +hippobosca|1 +(noun)|Hippobosca|genus Hippobosca|arthropod genus +hippobosca equina|1 +(noun)|horse tick|horsefly|Hippobosca equina|louse fly|hippoboscid +hippoboscid|1 +(noun)|louse fly|dipterous insect|two-winged insects|dipteran|dipteron +hippoboscidae|1 +(noun)|Hippoboscidae|family Hippoboscidae|arthropod family +hippocampus|2 +(noun)|neural structure +(noun)|Hippocampus|genus Hippocampus|fish genus +hippocastanaceae|1 +(noun)|Hippocastanaceae|family Hippocastanaceae|horse-chestnut family|dicot family|magnoliopsid family +hippocrates|1 +(noun)|Hippocrates|medical practitioner|medical man +hippocratic|1 +(adj)|Hippocratic|medical practitioner|medical man +hippocratic oath|1 +(noun)|Hippocratic oath|oath +hippocrepis|1 +(noun)|Hippocrepis|genus Hippocrepis|rosid dicot genus +hippocrepis comosa|1 +(noun)|horseshoe vetch|Hippocrepis comosa|subshrub|suffrutex +hippodamia|1 +(noun)|Hippodamia|genus Hippodamia|arthropod genus +hippodamia convergens|1 +(noun)|Hippodamia convergens|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +hippodrome|1 +(noun)|stadium|bowl|arena|sports stadium +hippoglossoides|1 +(noun)|Hippoglossoides|genus Hippoglossoides|fish genus +hippoglossoides platessoides|1 +(noun)|American plaice|Hippoglossoides platessoides|righteye flounder|righteyed flounder +hippoglossus|1 +(noun)|Hippoglossus|genus Hippoglossus|fish genus +hippoglossus hippoglossus|1 +(noun)|Atlantic halibut|Hippoglossus hippoglossus|righteye flounder|righteyed flounder +hippoglossus stenolepsis|1 +(noun)|Pacific halibut|Hippoglossus stenolepsis|righteye flounder|righteyed flounder +hippolyte jean giraudoux|1 +(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist|dramatist|playwright +hippopotamidae|1 +(noun)|Hippopotamidae|family Hippopotamidae|mammal family +hippopotamus|1 +(noun)|hippo|river horse|Hippopotamus amphibius|even-toed ungulate|artiodactyl|artiodactyl mammal +hippopotamus amphibius|1 +(noun)|hippopotamus|hippo|river horse|Hippopotamus amphibius|even-toed ungulate|artiodactyl|artiodactyl mammal +hipposideridae|1 +(noun)|Hipposideridae|family Hipposideridae|mammal family +hipposideros|1 +(noun)|Hipposideros|genus Hipposideros|mammal genus +hippotragus|1 +(noun)|Hippotragus|genus Hippotragus|mammal genus +hippotragus niger|1 +(noun)|sable antelope|Hippotragus niger|antelope +hippy|1 +(noun)|hippie|hipster|flower child|reformer|reformist|crusader|meliorist +hipster|1 +(noun)|hippie|hippy|flower child|reformer|reformist|crusader|meliorist +hipsters|2 +(noun)|flower people|hippies|youth subculture +(noun)|hippie|hippy|hipster|flower child|reformer|reformist|crusader|meliorist +hipsurus|1 +(noun)|Hipsurus|genus Hipsurus|fish genus +hipsurus caryi|1 +(noun)|rainbow seaperch|rainbow perch|Hipsurus caryi|surfperch|surffish|surf fish +hiram king williams|1 +(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +hiram ulysses grant|1 +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +hiram williams|1 +(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +hircine|1 +(adj)|bovid +hire|3 +(verb)|engage|employ +(verb)|rent|charter|lease|contract|undertake +(verb)|lease|rent|charter|engage|take|get|acquire +hire-purchase|1 +(noun)|never-never|installment plan|installment buying|time plan +hire car|1 +(noun)|car rental|rent-a-car|self-drive|u-drive|you-drive|lease|rental|letting +hire out|1 +(verb)|rent out|farm out|lend|loan +hired|2 +(adj)|employed +(adj)|chartered |leased +hired gun|1 +(noun)|gunman|gunslinger|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +hired hand|1 +(noun)|hand|hired man|laborer|manual laborer|labourer|jack +hired help|1 +(noun)|employee +hired man|1 +(noun)|hired hand|hand|laborer|manual laborer|labourer|jack +hireling|1 +(noun)|pensionary|employee +hirer|1 +(noun)|boss|employer +hiring freeze|1 +(noun)|freeze +hiring hall|1 +(noun)|placement office|placement center +hirohito|1 +(noun)|Hirohito|Michinomiya Hirohito|Emperor +hiroshima|1 +(noun)|Hiroshima|port|city|metropolis|urban center +hirschsprung|1 +(noun)|Hirschsprung|Harold Hirschsprung|baby doctor|pediatrician|pediatrist|paediatrician +hirschsprung's disease|1 +(noun)|Hirschsprung's disease|congenital megacolon|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +hirsute|1 +(adj)|hairy |comate|comose|comal|downy|pubescent|puberulent|sericeous|floccose|furred|furry|fuzzed|fuzzy|hispid|lanate|woolly|long-haired|pappose|pilous|pilose|pilary|shock-headed|short-haired|tomentose|tomentous|wire-haired|wooly|woolly|canescent|hoary|furlike +hirsuteness|1 +(noun)|hirsutism|hairiness +hirsutism|1 +(noun)|hirsuteness|hairiness +hirudinea|1 +(noun)|Hirudinea|class Hirudinea|class +hirudinean|1 +(noun)|leech|bloodsucker|annelid|annelid worm|segmented worm +hirudinidae|1 +(noun)|Hirudinidae|family Hirudinidae|worm family +hirudo|1 +(noun)|Hirudo|genus Hirudo|worm genus +hirudo medicinalis|1 +(noun)|medicinal leech|Hirudo medicinalis|leech|bloodsucker|hirudinean +hirundinidae|1 +(noun)|Hirundinidae|family Hirundinidae|bird family +hirundo|1 +(noun)|Hirundo|genus Hirundo|bird genus +hirundo nigricans|1 +(noun)|tree swallow|tree martin|Hirundo nigricans|swallow +hirundo pyrrhonota|1 +(noun)|cliff swallow|Hirundo pyrrhonota|swallow +hirundo rustica|1 +(noun)|barn swallow|chimney swallow|Hirundo rustica|swallow +hispanic|2 +(adj)|Hispanic|Latino|American +(noun)|Spanish American|Hispanic American|Hispanic|Latino|American +hispanic american|1 +(noun)|Spanish American|Hispanic American|Hispanic|Latino|American +hispaniola|1 +(noun)|Hispaniola|Haiti|Hayti|island +hispaniolan|1 +(adj)|Hispaniolan|island +hispid|1 +(adj)|hairy |hirsute +hispid pocket mouse|1 +(noun)|Perognathus hispidus|pocket mouse +hiss|6 +(noun)|hissing|sibilation|noise +(noun)|boo|hoot|Bronx cheer|raspberry|razzing|snort|bird|cry|outcry|call|yell|shout|vociferation +(verb)|siss|sizz|sibilate|utter|emit|let out|let loose +(verb)|whoosh|travel|go|move|locomote +(verb)|sizz|siss|sibilate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|boo|condemn +hisser|1 +(noun)|communicator +hissing|2 +(adj)|noisy +(noun)|hiss|sibilation|noise +histaminase|1 +(noun)|enzyme +histamine|1 +(noun)|amine|aminoalkane +histamine blocker|1 +(noun)|medicine|medication|medicament|medicinal drug +histamine headache|1 +(noun)|cluster headache|headache|head ache|cephalalgia +histidine|1 +(noun)|essential amino acid +histiocyte|1 +(noun)|macrophage +histiocytic leukaemia|1 +(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|monoblstic leukaemia|histiocytic leukemia|leukemia|leukaemia|leucaemia|cancer of the blood +histiocytic leukemia|1 +(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|monoblstic leukaemia|histiocytic leukaemia|leukemia|leukaemia|leucaemia|cancer of the blood +histiocytosis|1 +(noun)|blood disease|blood disorder +histocompatibility|1 +(noun)|organic phenomenon +histogram|1 +(noun)|bar chart|bar graph +histoincompatibility|1 +(noun)|incompatibility +histologic|1 +(adj)|histological|microscopic anatomy +histological|1 +(adj)|histologic|microscopic anatomy +histologist|1 +(noun)|anatomist +histology|1 +(noun)|microscopic anatomy +histone|1 +(noun)|simple protein +historian|1 +(noun)|historiographer|scholar|scholarly person|student +historic|2 +(adj)|historical|past +(adj)|important |of import +historic period|2 +(noun)|period|historical period|time period|period of time|period +(noun)|age|era|epoch +historical|4 +(adj)|historical |humanistic discipline|humanities|liberal arts|arts +(adj)|real |existent +(adj)|historic|past +(adj)|diachronic +historical document|1 +(noun)|historical paper|historical record|history|account|chronicle|story +historical linguistics|1 +(noun)|linguistics +historical paper|1 +(noun)|historical document|historical record|history|account|chronicle|story +historical period|1 +(noun)|period|historic period|time period|period of time|period +historical present|1 +(noun)|present|present tense +historical record|1 +(noun)|historical document|historical paper|history|account|chronicle|story +historical school|1 +(noun)|school +historicalness|2 +(noun)|reality +(noun)|significance +historied|1 +(adj)|celebrated|storied|glorious +historiographer|1 +(noun)|historian|scholar|scholarly person|student +history|5 +(noun)|past|past times|yesteryear|yore +(noun)|continuum +(noun)|account|chronicle|story|record +(noun)|humanistic discipline|humanities|liberal arts|arts +(noun)|cognition|knowledge|noesis +history department|1 +(noun)|department of history|academic department +history lesson|1 +(noun)|lesson +histrion|1 +(noun)|actor|player|thespian|role player|performer|performing artist +histrionic|1 +(adj)|melodramatic|theatrical +histrionics|2 +(noun)|theatrical performance|theatrical|representation|performance|public presentation +(noun)|display +hit|24 +(noun)|deed|feat|effort|exploit +(noun)|hitting|striking|touch|touching +(noun)|smash|smasher|strike|bang|success +(noun)|collision|contact|impinging|striking +(noun)|dose +(noun)|murder|slaying|execution +(noun)|joining|connection|connexion +(verb)|propel|impel +(verb)|strike|impinge on|run into|collide with|touch +(verb)|strike|affect|impact|bear upon|bear on|touch on|touch +(verb)|touch +(verb)|reach|make|attain|arrive at|gain +(verb)|reach|attain|arrive|get|come +(verb)|shoot|pip|injure|wound +(verb)|strike|come to +(verb)|strike|attack|assail +(verb)|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|strike|touch +(verb)|stumble|come by +(verb)|score|tally|rack up|gain|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|consume|ingest|take in|take|have +(verb)|murder|slay|dispatch|bump off|polish off|remove|kill +(verb)|strike|move|displace +(verb)|approach +hit-and-run|2 +(adj)|tip-and-run|offensive +(adj)|negligent +hit-or-miss|1 +(adj)|haphazard|random +hit home|1 +(verb)|strike home|strike a chord|strike a note|affect|impress|move|strike +hit it up|1 +(verb)|souse|soak|inebriate|drink|booze|fuddle +hit list|1 +(noun)|list|listing +hit man|2 +(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hitman|torpedo|shooter|murderer|liquidator|manslayer +(noun)| +hit parade|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|list|listing +hit squad|1 +(noun)|team|squad +hit the books|1 +(verb)|study|learn|larn|acquire +hit the ceiling|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +hit the deck|1 +(verb)|hit the dirt|move +hit the dirt|1 +(verb)|hit the deck|move +hit the hay|1 +(verb)|go to bed|turn in|bed|crawl in|kip down|hit the sack|sack out|go to sleep|retire +hit the jackpot|1 +(verb)|luck out|succeed|win|come through|bring home the bacon|deliver the goods +hit the roof|1 +(verb)|flip one's lid|blow up|throw a fit|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +hit the sack|1 +(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|sack out|go to sleep|retire +hitch|12 +(noun)|enlistment|term of enlistment|tour of duty|duty tour|tour|time period|period of time|period +(noun)|arrest|check|halt|stay|stop|stoppage|inaction|inactivity|inactiveness +(noun)|hang-up|rub|snag|obstacle|obstruction +(noun)|connection|connexion|connector|connecter|connective +(noun)|knot +(noun)|hindrance|preventive|preventative|encumbrance|incumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|hobble|limp|gait +(verb)|catch|attach +(verb)|limp|hobble|walk +(verb)|buck|jerk|move +(verb)|hitchhike|thumb|ride +(verb)|connect|link|tie|link up +hitch up|1 +(verb)|hike up|pull|draw|force +hitchcock|1 +(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director +hitchhike|1 +(verb)|hitch|thumb|ride +hitchhiker|1 +(noun)|passenger|rider +hitching bar|1 +(noun)|hitchrack|rail +hitching post|1 +(noun)|post +hitchings|1 +(noun)|Hitchings|George Herbert Hitchings|biochemist +hitchiti|2 +(noun)|Hitchiti|Muskhogean|Muskogean +(noun)|Hitchiti|Muskhogean|Muskhogean language|Muskogean|Muskogean language +hitchrack|1 +(noun)|hitching bar|rail +hither|1 +(adv)|here +hither and thither|1 +(adv)|from pillar to post +hitherto|1 +(adv)|so far|thus far|up to now|heretofore|as yet|yet|til now|until now +hitler|1 +(noun)|Hitler|Adolf Hitler|Der Fuhrer|dictator|potentate|Nazi|German Nazi +hitlerian|1 +(adj)|Hitlerian|dictator|potentate|Nazi|German Nazi +hitless|2 +(adj)|unsuccessful +(adj)|scoreless|goalless|unsuccessful +hitman|1 +(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|torpedo|shooter|murderer|liquidator|manslayer +hitter|2 +(noun)|batter|slugger|batsman|ballplayer|baseball player +(noun)|striker|mover +hitting|1 +(noun)|hit|striking|touch|touching +hittite|3 +(adj)|Hittite|inhabitant|dweller|denizen|indweller|Anatolian|Anatolian language +(noun)|Hittite|inhabitant|dweller|denizen|indweller +(noun)|Hittite|Anatolian|Anatolian language +hiv|2 +(noun)|HIV|viral infection|virus infection +(noun)|human immunodeficiency virus|HIV|retrovirus +hive|6 +(noun)|multitude|throng|concourse +(noun)|beehive|receptacle +(noun)|beehive|nest +(verb)|store|hive away|lay in|put in|salt away|stack away|stash away|hive away|hive up +(verb)|meet|gather|assemble|forgather|foregather +(verb)|gather|garner|collect|pull together +hive away|1 +(verb)|store|lay in|put in|salt away|stack away|stash away|keep|hold on +hive off|2 +(verb)|discriminate|separate|single out +(verb)|divert|withdraw|draw|take out|draw off +hive up|1 +(verb)|hoard|stash|cache|lay away|squirrel away|save|lay aside|save up +hives|4 +(noun)|urtication|urticaria|nettle rash|rash|roseola|efflorescence|skin rash|hypersensitivity reaction +(noun)|hive|multitude|throng|concourse +(noun)|beehive|hive|receptacle +(noun)|beehive|hive|nest +hizb ut-tahrir|1 +(noun)|Hizb ut-Tahrir|Freedom Party|terrorist organization|terrorist group|foreign terrorist organization|FTO +hizballah|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +hizbollah|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +hizbullah|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +hl|1 +(noun)|hectoliter|hectolitre|metric capacity unit +hm|1 +(noun)|hectometer|hectometre|metric linear unit +hmg-coa reductase|1 +(noun)|HMG-CoA reductase|5-hydroxy-3-methylglutaryl-coenzyme A reductase|reductase +hmo|1 +(noun)|health maintenance organization|HMO|health insurance +hn|1 +(noun)|hydrazoic acid|azoimide|hydrogen azide|HN|hydride|explosive +hnd|1 +(noun)|Higher National Diploma|HND|diploma|sheepskin +ho|1 +(noun)|holmium|Ho|atomic number 67|metallic element|metal +ho-hum|1 +(adj)|boring|deadening|dull|irksome|slow|tedious|tiresome|wearisome|uninteresting +ho chi minh|1 +(noun)|Ho Chi Minh|Nguyen Tat Thanh|statesman|solon|national leader +ho chi minh city|1 +(noun)|Ho Chi Minh City|Saigon|city|metropolis|urban center +hoactzin|1 +(noun)|hoatzin|stinkbird|Opisthocomus hoazin|gallinaceous bird|gallinacean +hoagie|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +hoagland|1 +(noun)|Hoagland|Hudson Hoagland|physiologist +hoagland howard carmichael|1 +(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter|songster|ballad maker +hoagy|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +hoagy carmichael|1 +(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter|songster|ballad maker +hoar|2 +(adj)|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoary|white-haired|old +(noun)|frost|hoarfrost|rime|ice|water ice +hoard|3 +(noun)|cache|stash|store|stock|fund +(verb)|stash|cache|lay away|hive up|squirrel away|save|lay aside|save up +(verb)|roll up|collect|accumulate|pile up|amass|compile|store|hive away|lay in|put in|salt away|stack away|stash away +hoarded wealth|1 +(noun)|treasure|wealth|riches +hoarder|1 +(noun)|saver +hoarding|1 +(noun)|billboard|signboard|sign +hoarfrost|1 +(noun)|frost|hoar|rime|ice|water ice +hoariness|2 +(noun)|frostiness|white|whiteness +(noun)|oldness +hoarse|1 +(adj)|gruff|husky|cacophonous |cacophonic +hoarsely|1 +(adv)|huskily +hoarseness|1 +(noun)|gruffness|huskiness|harshness|roughness +hoary|3 +(adj)|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|white-haired|old +(adj)|rusty|old +(adj)|canescent|hairy |hirsute +hoary alison|1 +(noun)|hoary alyssum|Berteroa incana|herb|herbaceous plant +hoary alyssum|1 +(noun)|hoary alison|Berteroa incana|herb|herbaceous plant +hoary golden bush|1 +(noun)|Hazardia cana|shrub|bush +hoary marmot|1 +(noun)|whistler|whistling marmot|Marmota caligata|marmot +hoary pea|1 +(noun)|subshrub|suffrutex +hoary plantain|2 +(noun)|Plantago virginica|plantain +(noun)|Plantago media|plantain +hoary puccoon|1 +(noun)|Indian paint|Lithospermum canescens|herb|herbaceous plant +hoary willow|1 +(noun)|sage willow|Salix candida|willow|willow tree +hoatzin|1 +(noun)|hoactzin|stinkbird|Opisthocomus hoazin|gallinaceous bird|gallinacean +hoax|2 +(noun)|fraud|fraudulence|dupery|humbug|put-on|trickery|chicanery|chicane|guile|wile|shenanigan +(verb)|pull someone's leg|play a joke on|deceive|lead on|delude|cozen +hoaxer|1 +(noun)|prankster|cut-up|trickster|tricker|practical joker|troublemaker|trouble maker|troubler|mischief-maker|bad hat +hob|5 +(noun)|goblin|hobgoblin|evil spirit +(noun)|elf|gremlin|pixie|pixy|brownie|imp|fairy|faery|faerie|sprite +(noun)|edge tool +(noun)|shelf +(verb)|cut +hobart|1 +(noun)|Hobart|state capital|port +hobbes|1 +(noun)|Hobbes|Thomas Hobbes|philosopher +hobbit|1 +(noun)|imaginary being|imaginary creature +hobble|5 +(noun)|fetter|shackle|bond|hamper|trammel|trammels +(noun)|hitch|limp|gait +(verb)|limp|hitch|walk +(verb)|impede|hinder +(verb)|hopple|strap +hobble skirt|1 +(noun)|skirt +hobbledehoy|1 +(noun)|young person|youth|younker|spring chicken +hobbler|1 +(noun)|limper|pedestrian|walker|footer +hobbs|1 +(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer +hobby|3 +(noun)|avocation|by-line|sideline|spare-time activity|pastime|interest|pursuit +(noun)|hobbyhorse|rocking horse|plaything|toy +(noun)|Falco subbuteo|falcon +hobbyhorse|2 +(noun)|preoccupation +(noun)|hobby|rocking horse|plaything|toy +hobbyist|1 +(noun)|amateur +hobgoblin|2 +(noun)|goblin|hob|evil spirit +(noun)|bugbear|object +hobnail|2 +(noun)|nail +(verb)|supply|provide|render|furnish +hobnailed|1 +(adj)|rural +hobnob|1 +(verb)|socialize|socialise +hobo|1 +(noun)|tramp|bum|vagrant|drifter|floater|vagabond +hobo camp|1 +(noun)|jungle|camp +hobson's choice|1 +(noun)|Hobson's choice|option|alternative|choice +hock|4 +(noun)|Rhine wine|Rhenish|white wine +(noun)|joint|articulation|articulatio +(verb)|pawn|soak|consign|charge +(verb)|disable|invalid|incapacitate|handicap +hockey|2 +(noun)|field hockey|field game +(noun)|ice hockey|hockey game|athletic game|contact sport +hockey clinic|1 +(noun)|clinic +hockey coach|1 +(noun)|coach|manager|handler +hockey game|1 +(noun)|ice hockey|hockey|athletic game|contact sport +hockey league|1 +(noun)|league|conference +hockey player|1 +(noun)|ice-hockey player|athlete|jock|player|participant +hockey puck|1 +(noun)|puck|disk|disc +hockey season|1 +(noun)|season +hockey stick|1 +(noun)|sports implement +hockey team|1 +(noun)|team|squad +hocus-pocus|1 +(noun)|trickery|slickness|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation|deceit|deception +hod|1 +(noun)|box +hod carrier|1 +(noun)|hodman|laborer|manual laborer|labourer|jack +hodeida|1 +(noun)|Hodeida|Al-Hudaydah|city|metropolis|urban center|port +hoder|1 +(noun)|Hoth|Hothr|Hoder|Hodr|Norse deity +hodgepodge|2 +(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|patchwork|jumble|theory +hodgkin|3 +(noun)|Hodgkin|Thomas Hodgkin|doctor|doc|physician|MD|Dr.|medico +(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist +(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist +hodgkin's disease|1 +(noun)|Hodgkin's disease|lymphoma +hodman|1 +(noun)|hod carrier|laborer|manual laborer|labourer|jack +hodometer|1 +(noun)|odometer|mileometer|milometer|meter +hodoscope|1 +(noun)|scientific instrument +hodr|1 +(noun)|Hoth|Hothr|Hoder|Hodr|Norse deity +hoe|2 +(noun)|tool +(verb)|till +hoe handle|1 +(noun)|handle|grip|handgrip|hold +hoecake|1 +(noun)|johnnycake|johnny cake|journey cake +hoek van holland|1 +(noun)|Hook of Holland|Hoek van Holland|cape|ness +hoenir|1 +(noun)|Hoenir|Norse deity +hoffa|1 +(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader +hoffman|2 +(noun)|Hoffman|Malvina Hoffman|sculptor|sculpturer|carver|statue maker +(noun)|Hoffman|Dustin Hoffman|actor|histrion|player|thespian|role player +hoffmann|4 +(noun)|Hoffmann|Josef Hoffmann|architect|designer +(noun)|Hoffmann|August Wilhelm von Hoffmann|chemist +(noun)|Hoffmann|Roald Hoffmann|chemist +(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer|author +hoffmannsthal|1 +(noun)|Hoffmannsthal|Hugo von Hoffmannsthal|poet +hog|4 +(noun)|pig|selfish person +(noun)|hogget|hogg|lamb +(noun)|pig|grunter|squealer|Sus scrofa|swine +(verb)|snap up|snaffle|grab +hog-nosed badger|1 +(noun)|hog badger|sand badger|Arctonyx collaris|badger +hog-nosed skunk|1 +(noun)|hognosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk|polecat|wood pussy +hog-tie|1 +(verb)|tie down|tie up|bind|truss +hog badger|1 +(noun)|hog-nosed badger|sand badger|Arctonyx collaris|badger +hog cholera|1 +(noun)|animal disease +hog cranberry|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +hog millet|1 +(noun)|broomcorn millet|Panicum miliaceum|panic grass +hog molly|1 +(noun)|hog sucker|Hypentelium nigricans|sucker +hog peanut|1 +(noun)|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine +hog plum|4 +(noun)|yellow mombin|yellow mombin tree|Spondias mombin|fruit tree +(noun)|chickasaw plum|hog plum bush|Prunus angustifolia|wild plum|wild plum tree +(noun)|wild plum|edible fruit +(noun)|yellow mombin|edible fruit +hog plum bush|1 +(noun)|chickasaw plum|hog plum|Prunus angustifolia|wild plum|wild plum tree +hog snapper|1 +(noun)|hogfish|Lachnolaimus maximus|wrasse +hog sucker|1 +(noun)|hog molly|Hypentelium nigricans|sucker +hogan|2 +(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer|golf player|linksman +(noun)|lodge|indian lodge +hogarth|1 +(noun)|Hogarth|William Hogarth|old master|engraver +hogback|1 +(noun)|horseback|ridge +hogchoker|1 +(noun)|Trinectes maculatus|sole +hogfish|2 +(noun)|hog snapper|Lachnolaimus maximus|wrasse +(noun)|pigfish|Orthopristis chrysopterus|grunt +hogg|2 +(noun)|Hogg|James Hogg|poet +(noun)|hog|hogget|lamb +hogged|1 +(adj)|broken-backed|convex |bulging +hogget|1 +(noun)|hog|hogg|lamb +hoggish|1 +(adj)|piggish|piggy|porcine|swinish|gluttonous +hoggishness|1 +(noun)|greediness|piggishness|gluttony +hogmanay|1 +(noun)|Hogmanay|New Year's Eve|December 31 +hognose bat|1 +(noun)|Choeronycteris mexicana|leafnose bat|leaf-nosed bat +hognose snake|1 +(noun)|puff adder|sand viper|colubrid snake|colubrid +hognosed skunk|1 +(noun)|hog-nosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk|polecat|wood pussy +hogshead|2 +(noun)|British capacity unit|Imperial capacity unit +(noun)|barrel|cask +hogwash|1 +(noun)|bunk|bunkum|buncombe|guff|rot|drivel|garbage +hogweed|1 +(noun)|cow parsnip|Heracleum sphondylium|herb|herbaceous plant +hohenlinden|1 +(noun)|Hohenlinden|battle of Hohenlinden|pitched battle +hohenzollern|1 +(noun)|Hohenzollern|dynasty|royalty|royal family|royal line|royal house +hohenzollern empire|1 +(noun)|Hohenzollern empire|Second Reich|Reich +hoheria|1 +(noun)|Hoheria|genus Hoheria|dilleniid dicot genus +hoheria populnea|1 +(noun)|lacebark|ribbonwood|houhere|Hoheria populnea|tree +hohhot|1 +(noun)|Hohhot|city|metropolis|urban center +hoi polloi|1 +(noun)|multitude|masses|mass|people|group|grouping +hoisin sauce|1 +(noun)|duck sauce|condiment +hoist|4 +(noun)|lifting device +(verb)|lift|wind|raise|lift|elevate|get up|bring up +(verb)|raise|lift|elevate|get up|bring up +(verb)|run up|raise|lift|elevate|get up|bring up +hoister|1 +(noun)|operator|manipulator +hoity-toity|1 +(adj)|grandiose|hifalutin|highfalutin|highfaluting|la-di-da|pretentious +hoka|2 +(noun)|Hokan|Hoka|Indian|North American Indian|American Indian|Red Indian +(noun)|Hokan|Hoka|Amerind|Amerindian language|American-Indian language|American Indian|Indian +hokan|2 +(noun)|Hokan|Hoka|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Hokan|Hoka|Indian|North American Indian|American Indian|Red Indian +hokey|2 +(adj)|bathetic|drippy|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|slushy|emotional +(adj)|artificial|contrived|stilted|affected |unnatural +hokkaido|1 +(noun)|Hokkaido|Ezo|Yezo|island +hokkianese|1 +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +hokum|1 +(noun)|nonsense|bunk|nonsensicality|meaninglessness|message|content|subject matter|substance +hokusai|1 +(noun)|Hokusai|Katsushika Hokusai|painter +holandric gene|1 +(noun)|Y-linked gene|gene|cistron|factor +holarrhena|1 +(noun)|Holarrhena|genus Holarrhena|dicot genus|magnoliopsid genus +holarrhena antidysenterica|1 +(noun)|ivory tree|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree +holarrhena pubescens|1 +(noun)|ivory tree|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree +holbein|2 +(noun)|Holbein|Hans Holbein|Holbein the Younger|old master|engraver +(noun)|Holbein|Hans Holbein|Holbein the Elder|old master +holbein the elder|1 +(noun)|Holbein|Hans Holbein|Holbein the Elder|old master +holbein the younger|1 +(noun)|Holbein|Hans Holbein|Holbein the Younger|old master|engraver +holbrookia|1 +(noun)|Holbrookia|genus Holbrookia|reptile genus +holcus|1 +(noun)|Holcus|genus Holcus|monocot genus|liliopsid genus +holcus lanatus|1 +(noun)|velvet grass|Yorkshire fog|Holcus lanatus|grass +holcus mollis|1 +(noun)|creeping soft grass|Holcus mollis|grass +hold|45 +(noun)|clasp|clench|clutch|clutches|grasp|grip|grasping|taking hold|seizing|prehension +(noun)|appreciation|grasp|understanding|apprehension|discernment|savvy +(noun)|control +(noun)|delay|time lag|postponement|wait|pause|intermission|break|interruption|suspension +(noun)|detention|custody|confinement +(noun)|stronghold|fastness +(noun)|keep|cell|jail cell|prison cell +(noun)|handle|grip|handgrip|appendage +(noun)|cargo area|cargo deck|cargo hold|storage area|enclosure +(verb)|throw|have|make|give|direct +(verb)|keep|maintain|hold back|hold out|hold over|hold out|hold up +(verb)|take hold +(verb)|restrain|confine|disable|disenable|incapacitate +(verb)|bear|have|have got +(verb)|have|have got +(verb)|deem|view as|take for|see|consider|reckon|view|regard +(verb)|bear|carry|contain|include +(verb)|control|hold in|contain|check|curb|moderate|restrain|suppress|keep|keep back|hold back +(verb)|continue|go on|proceed|go along|keep +(verb)|harbor|harbour|entertain|nurse|feel|experience +(verb)|affirm|verify|assert|avow|aver|swan|swear +(verb)|think|believe|consider|conceive +(verb)|retain|keep back|hold back|keep|hold on +(verb)|support|sustain|hold up +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant +(verb)|restrain|suppress|keep|keep back|hold back +(verb)|carry|bear +(verb)|accommodate|admit +(verb)|contain|take|be +(verb)|prevail|obtain|exist|be +(verb)|control|command +(verb)|defend|guard|protect +(verb)|declare|adjudge|judge +(verb)|be +(verb)|halt|arrest|stop +(verb)|oblige|bind|obligate|relate +(verb)|cover +(verb)|carry|drink|booze|fuddle +(verb)|apply|go for|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|reserve|book|request|bespeak|call for|quest +(verb)|defy|withstand|hold up|resist|hold out|withstand|stand firm +(verb)|prevent|keep +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +(verb)|aim|take|train|take aim|direct +(verb)|agree|concur|concord +hold-down|1 +(noun)|limitation|restriction +hold back|5 +(verb)|check|turn back|arrest|stop|contain|defend +(verb)|restrain|suppress|keep|keep back|prevent|keep +(verb)|wait|hold off|act|move +(verb)|retain|hold|keep back|keep|hold on +(verb)|conceal|hold in +hold close|1 +(verb)|cling to|hold tight|clutch|hold|take hold +hold dear|1 +(verb)|care for|cherish|treasure|love +hold down|2 +(verb)|retain|hold|keep back|hold back +(verb)|limit|circumscribe|confine +hold fast|1 +(verb)|adhere|bond|bind|stick|stick to|attach +hold firm|1 +(verb)|stand pat|stand firm|stand fast|insist|take a firm stand +hold in|3 +(verb)|enclose|confine|hold|bear|carry|contain +(verb)|control|hold|contain|check|curb|moderate|restrain|suppress|keep|keep back|hold back +(verb)|conceal|hold back +hold off|2 +(verb)|resist|hold out|withstand|stand firm +(verb)|wait|hold back|act|move +hold on|5 +(verb)|grasp|hold|take hold +(verb)|stop|interrupt|break +(verb)|persevere|persist|hang in|hang on|continue|uphold|carry on|bear on|preserve +(verb)|hang on|hold the line|expect|look|await|wait +(verb)|keep|have|have got|hold +hold one's own|1 +(verb)|control|command +hold open|1 +(verb)|keep open|keep|save|reserve|hold|book +hold out|5 +(verb)|exsert|stretch out|put out|extend|stretch forth|gesticulate|gesture|motion +(verb)|resist|withstand|stand firm|fight|oppose|fight back|fight down|defend +(verb)|wear|endure|last|endure +(verb)|wait|hold off|hold back +(verb)|survive|last|live|live on|go|endure|hold up +hold over|5 +(verb)|intimidate +(verb)|carry over|keep|hold on +(verb)|keep|maintain|hold +(verb)|stay|stay on|continue|remain +(verb)|postpone|prorogue|put over|table|shelve|set back|defer|remit|put off|delay +hold still for|1 +(verb)|stand for|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +hold sway|1 +(verb)|control|command +hold the line|2 +(verb)|conserve|preserve|maintain|keep up +(verb)|hang on|hold on|expect|look|await|wait +hold tight|1 +(verb)|cling to|hold close|clutch|hold|take hold +hold up|7 +(verb)|hold|support|sustain +(verb)|expose|exhibit|display +(verb)|delay|detain|decelerate|slow|slow down|slow up|retard +(verb)|stick up|rob +(verb)|survive|last|live|live on|go|endure|hold out +(verb)|defy|withstand|hold|resist|hold out|withstand|stand firm +(verb)|stand up|hold water|survive|last|live|live on|go|endure|hold out +hold water|1 +(verb)|stand up|hold up|survive|last|live|live on|go|endure|hold up|hold out +holdall|1 +(noun)|carryall|tote|tote bag|bag +holder|2 +(noun)|holding device +(noun)|bearer|capitalist +holdfast|1 +(noun)|fastener|fastening|fixing|restraint|constraint +holding|3 +(adj)|retaining|retentive +(noun)|retention|keeping|possession|ownership +(noun)|property|belongings|material possession|possession +holding cell|1 +(noun)|jail|jailhouse|gaol|clink|slammer +holding company|1 +(noun)|company +holding device|1 +(noun)|device +holding pattern|2 +(noun)|inaction|inactivity|inactiveness +(noun)|air lane|flight path|airway|skyway +holdout|3 +(noun)|negotiator|negotiant|treater +(noun)|bargaining +(noun)|swindle|cheat|rig +holdover|2 +(noun)|hangover|official|functionary +(noun)|hangover|survival +holdup|2 +(noun)|armed robbery|heist|stickup|robbery +(noun)|delay|inactivity +holdup man|1 +(noun)|stickup man|thief|stealer +hole|10 +(noun)|opening|gap +(noun)|opening +(noun)|golf hole|playing period|period of play|play +(noun)|space +(noun)|hollow|natural depression|depression +(noun)|defect|fault|flaw +(noun)|fix|jam|mess|muddle|pickle|kettle of fish|difficulty +(noun)|trap|cakehole|maw|yap|gob|mouth|oral cavity|oral fissure|rima oris +(verb)|hole out|hit +(verb)|hollow|hollow out|core out +hole-and-corner|2 +(adj)|hole-in-corner|insignificant |unimportant +(adj)|clandestine|cloak-and-dagger|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|undercover|underground|covert +hole-in-corner|1 +(adj)|hole-and-corner|insignificant |unimportant +hole-in-the-wall|1 +(noun)|topographic point|place|spot +hole card|2 +(noun)|assets +(noun)|playing card +hole in the ground|1 +(noun)|excavation|artifact|artefact +hole out|1 +(verb)|hole|hit +hole up|3 +(verb)|hide|hide out +(verb)|score|hit|tally|rack up +(verb)|hibernate|sleep|kip|slumber|log Z's|catch some Z's +holey|1 +(adj)|porous|leaky +holibut|1 +(noun)|halibut|flatfish +holiday|3 +(noun)|vacation|leisure|leisure time +(noun)|day +(verb)|vacation|spend|pass +holiday resort|1 +(noun)|resort|resort hotel|hotel +holiday season|1 +(noun)|season +holidaymaker|1 +(noun)|tourist|tourer|traveler|traveller +holier-than-thou|1 +(adj)|pietistic|pietistical|pharisaic|pharisaical|sanctimonious|self-righteous|pious +holiness|1 +(noun)|sanctity|quality +holism|1 +(noun)|holistic theory|theory +holistic|1 +(adj)|holistic +holistic medicine|1 +(noun)|medical care|medical aid +holistic theory|1 +(noun)|holism|theory +holla|1 +(noun)|bellow|bellowing|holler|hollering|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +holland|1 +(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Holland|European country|European nation +holland gin|1 +(noun)|geneva|Holland gin|Hollands|gin +hollandaise|1 +(noun)|sauce +hollander|1 +(noun)|Netherlander|Dutchman|Hollander|European +hollands|2 +(noun)|geneva|Holland gin|Hollands|gin +(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Holland|European country|European nation +holler|5 +(noun)|bellow|bellowing|holla|hollering|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +(noun)|hollow|valley|vale +(verb)|holler out|shout +(verb)|shout|shout out|cry|call|yell|scream|hollo|squall|utter|emit|let out|let loose +(verb)|gripe|grouse|crab|beef|squawk|bellyache|complain|kick|plain|sound off|quetch|kvetch +holler out|1 +(verb)|holler|shout +hollering|1 +(noun)|bellow|bellowing|holla|holler|hollo|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +hollerith|1 +(noun)|Hollerith|Herman Hollerith|inventor|discoverer|artificer +hollerith card|1 +(noun)|punched card|punch card|Hollerith card|card +hollo|4 +(noun)|bellow|bellowing|holla|holler|hollering|holloa|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +(verb)|encourage +(verb)|shout|shout out|cry|call|yell|scream|holler|squall +(verb)|shout|shout out|cry|call|yell|scream|holler|squall|utter|emit|let out|let loose +holloa|1 +(noun)|bellow|bellowing|holla|holler|hollering|hollo|roar|roaring|yowl|cry|outcry|call|yell|shout|vociferation +hollow|9 +(adj)|hollow |cavernous|deep-set|sunken|recessed|empty|fistular|fistulate|fistulous|hollowed|tubular|cannular +(adj)|false|insincere +(adj)|reverberant |ringing +(adj)|empty|vacuous|meaningless |nonmeaningful +(noun)|cavity|enclosed space +(noun)|holler|valley|vale +(noun)|hole|natural depression|depression +(verb)|excavate|dig|remove|take|take away|withdraw +(verb)|hollow out|core out|empty +hollow-back|1 +(noun)|lordosis|spinal curvature +hollow-eyed|1 +(adj)|deep-eyed|sunken-eyed|thin |lean +hollow out|1 +(verb)|hollow|core out|empty +holloware|1 +(noun)|hollowware|silverware +hollowed|1 +(adj)|hollow +hollowness|2 +(noun)|emptiness +(noun)|concavity|concaveness +hollowware|1 +(noun)|holloware|silverware +holly|2 +(noun)|angiospermous tree|flowering tree +(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star|songwriter|songster|ballad maker +holly-leaf cherry|1 +(noun)|holly-leaved cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum|wild plum tree +holly-leaved cherry|1 +(noun)|holly-leaf cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum|wild plum tree +holly-leaved oak|1 +(noun)|holm oak|holm tree|evergreen oak|Quercus ilex|oak|oak tree +holly-leaves barberry|1 +(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|Mahonia aquifolium|shrub|bush +holly family|1 +(noun)|Aquifoliaceae|family Aquifoliaceae|dicot family|magnoliopsid family +holly fern|2 +(noun)|fern +(noun)|Cyrtomium aculeatum|Polystichum aculeatum|fern +hollygrape|1 +(noun)|Oregon grape|Oregon holly grape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub|bush +hollyhock|2 +(noun)|althea|althaea|mallow +(noun)|mallow +hollywood|5 +(adj)|Hollywood|film industry|movie industry|screenland +(adj)|Hollywood|indecent +(noun)|Hollywood|film industry|movie industry|screenland +(noun)|Hollywood|spirit|tone|feel|feeling|flavor|flavour|look|smell +(noun)|Hollywood|city district +holm oak|2 +(noun)|oak +(noun)|holm tree|holly-leaved oak|evergreen oak|Quercus ilex|oak|oak tree +holm tree|1 +(noun)|holm oak|holly-leaved oak|evergreen oak|Quercus ilex|oak|oak tree +holman hunt|1 +(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite +holmes|4 +(noun)|Sherlock Holmes|Holmes|fictional character|fictitious character|character +(noun)|Holmes|Oliver Wendell Holmes Jr.|jurist|legal expert +(noun)|Holmes|Oliver Wendell Holmes|writer|author +(noun)|Holmes|Arthur Holmes|geologist +holmium|1 +(noun)|Ho|atomic number 67|metallic element|metal +holocanthus tricolor|1 +(noun)|rock beauty|Holocanthus tricolor|butterfly fish +holocaust|2 +(noun)|destruction|devastation +(noun)|Holocaust|final solution|genocide|race murder|racial extermination +holocene|1 +(noun)|Holocene|Holocene epoch|Recent epoch|epoch +holocene epoch|1 +(noun)|Holocene|Holocene epoch|Recent epoch|epoch +holocentridae|1 +(noun)|Holocentridae|family Holocentridae|fish family +holocentrus|1 +(noun)|Holocentrus|genus Holocentrus|fish genus +holocentrus ascensionis|1 +(noun)|Holocentrus ascensionis|squirrelfish +holocentrus bullisi|1 +(noun)|deepwater squirrelfish|Holocentrus bullisi|squirrelfish +holocentrus coruscus|1 +(noun)|reef squirrelfish|Holocentrus coruscus|squirrelfish +holocephalan|1 +(noun)|cartilaginous fish|chondrichthian +holocephali|1 +(noun)|Holocephali|subclass Holocephali|class +holofernes|1 +(noun)|Holofernes|general|full general +hologram|1 +(noun)|holograph|photograph|photo|exposure|pic +holograph|2 +(noun)|manuscript|autograph +(noun)|hologram|photograph|photo|exposure|pic +holographic|3 +(adj)|optics +(adj)|holographical|autograph +(adj)|written +holographical|1 +(adj)|holographic|autograph +holography|1 +(noun)|optics +holometabola|1 +(noun)|metabola|insect +holometabolic|1 +(adj)|holometabolous|metamorphic +holometabolism|1 +(noun)|holometaboly|metamorphosis|metabolism +holometabolous|1 +(adj)|holometabolic|metamorphic +holometaboly|1 +(noun)|holometabolism|metamorphosis|metabolism +holonym|1 +(noun)|whole name|word +holonymy|1 +(noun)|whole to part relation|semantic relation +holophytic|1 +(adj)|holophytic +holothuria|1 +(noun)|Holothuria|genus Holothuria|echinoderm genus +holothuria edulis|1 +(noun)|trepang|Holothuria edulis|sea cucumber|holothurian +holothurian|1 +(noun)|sea cucumber|echinoderm +holothuridae|1 +(noun)|Holothuridae|family Holothuridae|echinoderm family +holothuroidea|1 +(noun)|Holothuroidea|class Holothuroidea|class +holotype|1 +(noun)|type specimen|model|example +holozoic|1 +(adj)|holozoic +holstein|1 +(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +holstein-friesian|1 +(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +holster|2 +(noun)|sheath +(noun)|belt +holy|2 +(adj)|holy |beatified|blessed|Blessed|consecrated|sacred|sanctified|hallowed|sacred|consecrated|consecrate|dedicated|sacred +(noun)|holy place|sanctum|topographic point|place|spot +holy city|1 +(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven +holy clover|1 +(noun)|sainfoin|sanfoin|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +holy communion|1 +(noun)|Communion|Holy Communion|sacramental manduction|manduction|ritual +holy day|1 +(noun)|religious holiday|holiday +holy day of obligation|1 +(noun)|Christian holy day +holy eucharist|1 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +holy father|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +holy ghost|1 +(noun)|Holy Ghost|Holy Spirit|hypostasis +holy grail|1 +(noun)|grail|Holy Grail|Sangraal|chalice|goblet +holy innocents' day|1 +(noun)|Holy Innocents' Day|Innocents' Day|Christian holy day +holy joe|1 +(noun)|military chaplain|padre|Holy Joe|sky pilot|chaplain +holy land|1 +(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area|geographic area|geographical region|geographic region +holy man|1 +(noun)|saint|holy person|angel|good person +holy of holies|2 +(noun)|sacredness +(noun)|sanctum sanctorum|sanctuary +holy oil|1 +(noun)|chrism|chrisom|sacramental oil|ointment|unction|unguent|balm|salve +holy order|1 +(noun)|order|status|position +holy orders|2 +(noun)|sacrament +(noun)|holy order|order|status|position +holy person|1 +(noun)|saint|holy man|angel|good person +holy place|1 +(noun)|sanctum|holy|topographic point|place|spot +holy roller|1 +(noun)|Holy Roller|churchgoer|church member +holy roman emperor|1 +(noun)|Holy Roman Emperor|Emperor +holy roman emperor frederick ii|1 +(noun)|Frederick II|Holy Roman Emperor Frederick II|Holy Roman Emperor +holy roman empire|1 +(noun)|Holy Roman Empire|First Reich|Reich +holy sacrament|1 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +holy saturday|1 +(noun)|Holy Saturday|Christian holy day +holy scripture|1 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +holy see|1 +(noun)|Holy See|The Holy See|State of the Vatican City|European country|European nation|see +holy sepulcher|1 +(noun)|Holy Sepulcher|Holy Sepulchre|burial chamber|sepulcher|sepulchre|sepulture +holy sepulchre|1 +(noun)|Holy Sepulcher|Holy Sepulchre|burial chamber|sepulcher|sepulchre|sepulture +holy spirit|1 +(noun)|Holy Ghost|Holy Spirit|hypostasis +holy terror|1 +(noun)|terror|brat|little terror|imp|scamp|monkey|rascal|rapscallion|scalawag|scallywag +holy thistle|1 +(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|blessed thistle|Silybum marianum|herb|herbaceous plant +holy thursday|1 +(noun)|Maundy Thursday|Holy Thursday|Christian holy day +holy trinity|1 +(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah +holy war warriors|1 +(noun)|Laskar Jihad|Holy War Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +holy water|1 +(noun)|water|H2O +holy week|1 +(noun)|Holy Week|Passion Week|week|hebdomad +holy writ|1 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +holy year|1 +(noun)|Holy Year|year|twelvemonth|yr +holystone|2 +(noun)|sandstone +(verb)|scrub|scour +homage|1 +(noun)|court|deference|respect +homaridae|1 +(noun)|Homaridae|family Homaridae|arthropod family +homarus|1 +(noun)|Homarus|genus Homarus|arthropod genus +homarus americanus|1 +(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster +homarus capensis|1 +(noun)|Cape lobster|Homarus capensis|true lobster +homarus vulgaris|1 +(noun)|European lobster|Homarus vulgaris|true lobster +hombre|1 +(noun)|guy|cat|bozo|man|adult male +homburg|1 +(noun)|fedora|felt hat|Stetson|trilby|hat|chapeau|lid +home|14 +(adj)|home +(adj)|location +(adj)|interior|internal|national|domestic +(noun)|place|residence|abode +(noun)|dwelling|domicile|abode|habitation|dwelling house|housing|lodging|living accommodations +(noun)|location +(noun)|environment +(noun)|nursing home|rest home|institution +(noun)|base|location +(noun)|family|household|house|menage|unit|social unit +(noun)|home plate|home base|plate|base|bag +(noun)|beginning|origin|root|rootage|source +(verb)|house|put up|domiciliate +(verb)|return|go back|get back|come back +home-baked|1 +(adj)|homemade +home-brewed|1 +(adj)|homemade +home-builder|2 +(noun)|homebuilder|housebuilder|house-builder|builder|constructor +(noun)| +home-cured|1 +(adj)|homemade +home-farm|1 +(noun)|farm +home-fried potatoes|1 +(noun)|home fries|potato|white potato|Irish potato|murphy|spud|tater +home-loving|1 +(adj)|domestic +home-school|1 +(verb)|school +home-style|1 +(adj)|domestic +home appliance|1 +(noun)|household appliance|appliance +home away from home|1 +(noun)|home from home|home|place +home banking|1 +(noun)|banking +home base|2 +(noun)|home plate|home|plate|base|bag +(noun)|headquarters|central office|main office|home office|office|business office +home brew|2 +(noun)|homebrew|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)| +home buyer|1 +(noun)|buyer|purchaser|emptor|vendee +home computer|1 +(noun)|computer|computing machine|computing device|data processor|electronic computer|information processing system +home counties|1 +(noun)|Home Counties|county +home court|1 +(noun)|basketball court +home ec|1 +(noun)|home economics|domestic science|household arts|social science +home economics|1 +(noun)|home ec|domestic science|household arts|social science +home equity credit|1 +(noun)|home loan|home equity loan|equity credit line|consumer credit|loan +home equity loan|1 +(noun)|home loan|home equity credit|equity credit line|consumer credit|loan +home folks|2 +(noun)|folk|common people +(noun)|homefolk|family|family line|folk|kinfolk|kinsfolk|sept|phratry +home fries|1 +(noun)|home-fried potatoes|potato|white potato|Irish potato|murphy|spud|tater +home from home|1 +(noun)|home away from home|home|place +home front|1 +(noun)|population +home game|1 +(noun)|game +home ground|1 +(noun)|habitat|environment|environs|surroundings|surround +home guard|1 +(noun)|military unit|military force|military group|force +home help|1 +(noun)|domestic|domestic help|house servant +home in|1 +(verb)|range in|zero in|target|aim|place|direct|point +home invasion|1 +(noun)|housebreaking|break-in|breaking and entering +home key|1 +(noun)|tonic key|key|tonality +home loan|1 +(noun)|home equity credit|home equity loan|equity credit line|consumer credit|loan +home loan bank|1 +(noun)|Home Loan Bank|depository financial institution|bank|banking concern|banking company +home movie|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +home office|1 +(noun)|headquarters|central office|main office|home base|office|business office +home plate|1 +(noun)|home base|home|plate|base|bag +home port|1 +(noun)|port +home range|1 +(noun)|home territory|range +home reserve|1 +(noun)|National Guard|territorial|territorial reserve +home rule|1 +(noun)|self-government|self-determination|self-rule +home run|2 +(noun)|homer|base hit|safety|bingle +(noun)|bell ringer|bull's eye|mark|success +home secretary|1 +(noun)|Home Secretary|Secretary of State for the Home Department|cabinet minister +home stand|1 +(noun)|series +home study|1 +(noun)|course|course of study|course of instruction|class +home territory|1 +(noun)|home range|range +home theater|1 +(noun)|home theatre|theater|theatre|house +home theatre|1 +(noun)|home theater|theater|theatre|house +home truth|1 +(noun)|truth +homebody|1 +(noun)|stay-at-home|adult|grownup +homebound|2 +(adj)|housebound|shut-in|confined +(noun)|people +homeboy|2 +(noun)|member +(noun)|acquaintance|friend +homebrew|1 +(noun)|home brew|alcohol|alcoholic beverage|intoxicant|inebriant +homebuilder|1 +(noun)|home-builder|housebuilder|house-builder|builder|constructor +homecoming|2 +(noun)|reunion|reunification +(noun)|return|arrival +homecourt advantage|1 +(noun)|advantage|vantage +homefolk|1 +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|phratry +homegirl|1 +(noun)|member +homegrown|1 +(adj)|native +homel|1 +(noun)|Homyel|Homel|Gomel|city|metropolis|urban center +homeland|1 +(noun)|fatherland|motherland|mother country|country of origin|native land|country|state|land +homeland security|1 +(noun)|Homeland Security|Office of Homeland Security|independent agency +homeless|4 +(adj)|stateless|unsettled +(adj)|dispossessed|roofless|unfortunate +(noun)|homeless person|unfortunate|unfortunate person +(noun)|people +homeless person|1 +(noun)|homeless|unfortunate|unfortunate person +homelessness|1 +(noun)|condition|status +homelike|1 +(adj)|homely|homey|homy|comfortable |comfy +homeliness|2 +(noun)|dowdiness|drabness|inelegance +(noun)|plainness|appearance|visual aspect +homely|4 +(adj)|plain|unattractive +(adj)|homelike|homey|homy|comfortable |comfy +(adj)|plain +(adj)|inelegant +homemade|1 +(adj)|homemade |do-it-yourself|home-baked|home-brewed|home-cured|homespun +homemaker|1 +(noun)|housewife|lady of the house|woman of the house|wife|married woman +homemaking|1 +(noun)|management|direction +homeobox|1 +(noun)|homeobox gene|homeotic gene +homeobox gene|1 +(noun)|homeobox|homeotic gene +homeopath|1 +(noun)|homoeopath|practitioner|practician +homeopathic|1 +(adj)|homeopathic |medical care|medical aid +homeopathy|1 +(noun)|homoeopathy|medical care|medical aid +homeostasis|1 +(noun)|equilibrium|physiological state|physiological condition +homeostatic|1 +(adj)|equilibrium|physiological state|physiological condition +homeothermic|1 +(adj)|homoiothermic|homothermic|warm-blooded +homeotic gene|1 +(noun)|gene|cistron|factor +homeowner|1 +(noun)|householder|owner|possessor +homer|6 +(noun)|home run|base hit|safety|bingle +(noun)|Homer|poet +(noun)|kor|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|Homer|Winslow Homer|painter +(noun)|homing pigeon|domestic pigeon +(verb)|score|hit|tally|rack up +homer a. thompson|1 +(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist|archaeologist +homer armstrong thompson|1 +(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist|archaeologist +homer thompson|1 +(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist|archaeologist +homeric|1 +(adj)|Homeric|poet +homesick|1 +(adj)|nostalgic|unhappy +homesickness|1 +(noun)|nostalgia +homespun|4 +(adj)|nubby|nubbly|slubbed|tweedy|rough |unsmooth +(adj)|cracker-barrel|folksy|rural +(adj)|homemade +(noun)|homespun fabric|fabric|cloth|material|textile +homespun fabric|1 +(noun)|homespun|fabric|cloth|material|textile +homestead|4 +(noun)|land +(noun)|estate|land|landed estate|acres|demesne +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +(verb)|settle +homestead law|1 +(noun)|law +homesteader|1 +(noun)|squatter|nester|settler|colonist +homestretch|2 +(noun)|end|last|final stage +(noun)|stretch +hometown|1 +(noun)|town +homeward|2 +(adj)|homeward-bound|oriented |orientated +(adv)|homewards +homeward-bound|1 +(adj)|homeward|oriented |orientated +homewards|1 +(adv)|homeward +homework|1 +(noun)|prep|preparation|school assignment|schoolwork +homework problem|1 +(noun)|problem +homey|1 +(adj)|homelike|homely|homy|comfortable |comfy +homicidal|1 +(adj)|cutthroat|murderous|bloody +homicide|1 +(noun)|killing|kill|putting to death +homiletic|2 +(adj)|homiletical|sermon|discourse|preaching +(adj)|homiletical|art|artistry|prowess +homiletical|2 +(adj)|homiletic|sermon|discourse|preaching +(adj)|homiletic|art|artistry|prowess +homiletics|2 +(noun)|theology|divinity +(noun)|art|artistry|prowess +homily|1 +(noun)|preachment|sermon|discourse|preaching +hominal|1 +(adj)|human +homing|1 +(adj)|orienting |orientating +homing device|1 +(noun)|mechanism +homing pigeon|1 +(noun)|homer|domestic pigeon +homing torpedo|1 +(noun)|torpedo +hominian|1 +(adj)|hominid|human +hominid|2 +(adj)|hominian|human +(noun)|primate +hominidae|1 +(noun)|Hominidae|family Hominidae|mammal family +hominine|1 +(adj)|human +hominoid|1 +(noun)|primate +hominoidea|1 +(noun)|Hominoidea|superfamily Hominoidea|class +hominy|1 +(noun)|corn|edible corn +hominy grits|1 +(noun)|grits|hot cereal +hommos|1 +(noun)|hummus|humus|hoummos|humous|spread|paste +homo|2 +(noun)|homosexual|gay|person|individual|someone|somebody|mortal|human|soul +(noun)|man|human being|human|hominid +homo erectus|2 +(noun)|primitive|primitive person +(noun)|Homo erectus|homo|man|human being|human +homo habilis|1 +(noun)|Homo habilis|homo|man|human being|human +homo heidelbergensis|1 +(noun)|Heidelberg man|Homo heidelbergensis|primitive|primitive person +homo rhodesiensis|1 +(noun)|Rhodesian man|Homo rhodesiensis|homo|man|human being|human +homo sapiens|1 +(noun)|Homo sapiens|homo|man|human being|human +homo sapiens neanderthalensis|1 +(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo|man|human being|human +homo sapiens sapiens|1 +(noun)|Homo sapiens sapiens|modern man|Homo sapiens +homo soloensis|1 +(noun)|Homo soloensis|homo|man|human being|human +homobasidiomycetes|1 +(noun)|Homobasidiomycetes|subclass Homobasidiomycetes|class +homocentric|1 +(adj)|concentric |concentrical|coaxial|coaxal +homocercal|1 +(adj)|homocercal +homocercal fin|1 +(noun)|tail fin|caudal fin +homochromatic|1 +(adj)|monochromatic +homocyclic|1 +(adj)|isocyclic|cyclic +homoecious|1 +(adj)|autoecious +homoeopath|1 +(noun)|homeopath|practitioner|practician +homoeopathy|1 +(noun)|homeopathy|medical care|medical aid +homoerotic|1 +(adj)|homosexual +homoeroticism|1 +(noun)|homosexuality|homosexualism|gayness|sexual activity|sexual practice|sex|sex activity +homogenate|1 +(noun)|material|stuff +homogeneity|2 +(noun)|homogeneousness|uniformity|uniformness +(noun)|uniformity +homogeneous|1 +(adj)|homogeneous |homogenous|consistent|uniform|homogenized|homogenised|solid|same|undiversified|unvaried +homogeneousness|1 +(noun)|homogeneity|uniformity|uniformness +homogenisation|1 +(noun)|homogenization|blend|blending +homogenise|3 +(verb)|homogenize|change state|turn +(verb)|homogenize|change state|turn +(verb)|homogenize|equal|match|equalize|equalise|equate +homogenised|2 +(adj)|homogenized|blended +(adj)|homogenized|homogeneous |homogenous +homogenization|1 +(noun)|homogenisation|blend|blending +homogenize|3 +(verb)|homogenise|equal|match|equalize|equalise|equate +(verb)|homogenise|change state|turn +(verb)|homogenise|change state|turn +homogenized|2 +(adj)|homogenised|blended +(adj)|homogenised|homogeneous |homogenous +homogenized milk|1 +(noun)|milk +homogenous|1 +(adj)|homogeneous |consistent|uniform|homogenized|homogenised|solid|same|undiversified|unvaried +homogentisic acid|1 +(noun)|alkapton|alcapton|acid +homogeny|1 +(noun)|similarity +homograft|1 +(noun)|allograft|graft|transplant +homograph|1 +(noun)|homonym +homogyne|1 +(noun)|Homogyne|genus Homogyne|asterid dicot genus +homogyne alpina|1 +(noun)|alpine coltsfoot|Homogyne alpina|Tussilago alpina|herb|herbaceous plant +homoiothermic|1 +(adj)|homeothermic|homothermic|warm-blooded +homologic|1 +(adj)|homological|homologous +homological|1 +(adj)|homologic|homologous +homologise|1 +(verb)|homologize|equal|match|equalize|equalise|equate +homologize|2 +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|homologise|equal|match|equalize|equalise|equate +homologous|2 +(adj)|homologous |homologic|homological +(adj)|homologous +homology|1 +(noun)|similarity +homolosine projection|1 +(noun)|equal-area projection|equal-area map projection +homomorphism|1 +(noun)|homomorphy|similarity +homomorphy|1 +(noun)|homomorphism|similarity +homona|1 +(noun)|Homona|genus Homona|arthropod genus +homona coffearia|1 +(noun)|tea tortrix|tortrix|Homona coffearia|tortricid|tortricid moth +homonym|1 +(noun)|word +homophile|1 +(adj)|gay|queer|homosexual +homophobe|1 +(noun)|bigot +homophobia|1 +(noun)|bias|prejudice|preconception +homophobic|1 +(adj)|prejudiced |discriminatory +homophone|1 +(noun)|homonym +homophonic|2 +(adj)|same +(adj)|monophonic +homophonous|1 +(adj)|homonym +homophony|2 +(noun)|pronunciation +(noun)|part music +homoptera|1 +(noun)|Homoptera|suborder Homoptera|animal order +homopteran|1 +(noun)|homopterous insect|insect +homopterous insect|1 +(noun)|homopteran|insect +homosexual|2 +(adj)|homosexual |butch|gay|queer|homophile|homoerotic|lesbian|sapphic|pederastic|paederastic|transsexual|transvestic|transvestite|tribadistic +(noun)|homo|gay|person|individual|someone|somebody|mortal|human|soul +homosexualism|1 +(noun)|homosexuality|homoeroticism|gayness|sexual activity|sexual practice|sex|sex activity +homosexuality|1 +(noun)|homosexualism|homoeroticism|gayness|sexual activity|sexual practice|sex|sex activity +homosporous|1 +(adj)|monogenesis|sporulation +homospory|1 +(noun)|monogenesis|sporulation +homostylic|1 +(adj)|homostylous|honostyled|reproductive structure +homostylous|1 +(adj)|homostylic|honostyled|reproductive structure +homothermic|1 +(adj)|homoiothermic|homeothermic|warm-blooded +homozygosity|1 +(noun)|state +homozygous|1 +(adj)|homozygous +homunculus|2 +(noun)|manikin|mannikin|small person +(noun)|person|individual|someone|somebody|mortal|human|soul +homy|1 +(adj)|homelike|homely|homey|comfortable |comfy +homyel|1 +(noun)|Homyel|Homel|Gomel|city|metropolis|urban center +honcho|1 +(noun)|foreman|chief|gaffer|boss|supervisor +hondo|1 +(noun)|Honshu|Hondo|island +honduran|2 +(adj)|Honduran|Central American country|Central American nation +(noun)|Honduran|Central American +honduran capital|1 +(noun)|Tegucigalpa|Honduran capital|national capital +honduran monetary unit|1 +(noun)|Honduran monetary unit|monetary unit +honduras|1 +(noun)|Honduras|Republic of Honduras|Central American country|Central American nation +honduras mahogany|1 +(noun)|Honduras mahogany|Swietinia macrophylla|mahogany|mahogany tree +honduras rosewood|1 +(noun)|Honduras rosewood|Dalbergia stevensonii|rosewood|rosewood tree +hone|3 +(noun)|whetstone +(verb)|sharpen +(verb)|perfect|better|improve|amend|ameliorate|meliorate +honegger|1 +(noun)|Honegger|Arthur Honegger|composer +honest|7 +(adj)|honest |honorable|downright|open|square|straight|direct|genuine|echt|honorable|honourable|sincere|straight|true|trustworthy|trusty +(adj)|sincere +(adj)|dependable|reliable|true|trustworthy |trusty +(adj)|guileless|artless +(adj)|unpretentious +(adj)|veracious|truthful |true +(adj)|truthful |true +honest-to-god|1 +(adj)|honest-to-goodness|old|sure-enough|genuine |echt +honest-to-goodness|1 +(adj)|honest-to-god|old|sure-enough|genuine |echt +honest woman|1 +(noun)|wife|married woman +honestly|2 +(adv)|candidly|frankly +(adv)|aboveboard +honestness|1 +(noun)|honesty|righteousness +honesty|2 +(noun)|honestness|righteousness +(noun)|silver dollar|money plant|satin flower|satinpod|Lunaria annua|herb|herbaceous plant +honey|4 +(adj)|chromatic +(noun)|sweetening|sweetener +(noun)|beloved|dear|dearest|loved one|love|lover +(verb)|sweeten|dulcify|edulcorate|dulcorate +honey-flower|3 +(noun)|honeyflower|mountain devil|Lambertia formosa|shrub|bush +(noun)|honeyflower|Protea mellifera|protea +(noun)| +honey badger|1 +(noun)|ratel|Mellivora capensis|musteline mammal|mustelid|musteline +honey bear|1 +(noun)|kinkajou|potto|Potos flavus|Potos caudivolvulus|procyonid +honey bell|1 +(noun)|honeybells|Hermannia verticillata|Mahernia verticillata|shrub|bush +honey berry|1 +(noun)|Spanish lime|Spanish lime tree|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +honey bun|1 +(noun)|sticky bun|caramel bun|schnecken|sweet roll|coffee roll +honey buzzard|1 +(noun)|Pernis apivorus|hawk +honey cake|1 +(noun)|cake +honey crisp|1 +(noun)|candy +honey eater|1 +(noun)|honeysucker|oscine|oscine bird +honey fungus|1 +(noun)|honey mushroom|Armillariella mellea|agaric +honey gland|1 +(noun)|nectary|plant organ +honey guide|1 +(noun)|piciform bird +honey locust|1 +(noun)|Gleditsia triacanthos|locust tree|locust +honey mesquite|1 +(noun)|Western honey mesquite|Prosopis glandulosa|mesquite|mesquit +honey mushroom|1 +(noun)|honey fungus|Armillariella mellea|agaric +honey oil|1 +(noun)|K|jet|super acid|special K|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +honey plant|1 +(noun)|hoya +honeybee|1 +(noun)|Apis mellifera|bee +honeybells|1 +(noun)|honey bell|Hermannia verticillata|Mahernia verticillata|shrub|bush +honeycomb|4 +(noun)|framework|frame|framing +(verb)|fret +(verb)|penetrate|perforate +(verb)|change|alter|vary +honeycomb tripe|1 +(noun)|tripe +honeycombed|1 +(adj)|alveolate|faveolate|cavitied|pitted|cellular +honeycreeper|2 +(noun)|Hawaiian honeycreeper|finch +(noun)|oscine|oscine bird +honeydew|1 +(noun)|honeydew melon|winter melon +honeydew melon|2 +(noun)|winter melon|Persian melon|winter melon vine|Cucumis melo inodorus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|honeydew|winter melon +honeyed|2 +(adj)|honied|syrupy|sugary +(adj)|dulcet|mellifluous|mellisonant|sweet|melodious |melodic|musical +honeyed words|1 +(noun)|sweet nothings|nothings +honeyflower|2 +(noun)|honey-flower|mountain devil|Lambertia formosa|shrub|bush +(noun)|honey-flower|Protea mellifera|protea +honeylike|1 +(adj)|sugary +honeymoon|3 +(noun)|vacation|holiday +(noun)|time period|period of time|period +(verb)|vacation|holiday +honeymooner|1 +(noun)|newlywed|spouse|partner|married person|mate|better half +honeypot|1 +(noun)|king protea|Protea cynaroides|protea +honeysucker|1 +(noun)|honey eater|oscine|oscine bird +honeysuckle|3 +(noun)|shrub|bush +(noun)|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia +(noun)|meeting house|Aquilegia canadensis|columbine|aquilegia|aquilege +honeysuckle family|1 +(noun)|Caprifoliaceae|family Caprifoliaceae|asterid dicot family +hong kong|1 +(noun)|Hong Kong|city|metropolis|urban center|port +hong kong dollar|1 +(noun)|Hong Kong dollar|dollar +honiara|1 +(noun)|Honiara|national capital +honied|1 +(adj)|honeyed|syrupy|sugary +honk|5 +(noun)|cry +(verb)|blare|beep|claxon|toot|sound|go +(verb)|claxon|make noise|resound|noise +(verb)|cronk|utter|emit|let out|let loose +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|regurgitate|throw up|excrete|egest|eliminate|pass +honker|3 +(noun)|driver +(noun)|beak|hooter|nozzle|snoot|snout|schnozzle|schnoz|nose|olfactory organ +(noun)|Canada goose|Canadian goose|Branta canadensis|goose +honkey|1 +(noun)|whitey|honky|honkie|White|white person|Caucasian +honkie|1 +(noun)|whitey|honky|honkey|White|white person|Caucasian +honky|1 +(noun)|whitey|honkey|honkie|White|white person|Caucasian +honky-tonk|2 +(noun)|barrelhouse|barroom|bar|saloon|ginmill|taproom +(noun)|honkytonk|dive|cabaret|nightclub|club|nightspot +honkytonk|1 +(noun)|dive|cabaret|nightclub|club|nightspot +honolulu|1 +(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital|port +honor|7 +(noun)|award|accolade|honour|laurels|symbol +(noun)|honour|laurels|standing +(noun)|honour|righteousness +(noun)|honour|purity|virtue|chastity|sexual morality +(verb)|honour|reward|recognize|recognise +(verb)|respect|honour|abide by|observe|accept +(verb)|honour|accept|take|have +honor guard|1 +(noun)|guard of honor|escort +honor killing|1 +(noun)|homicide +honor system|1 +(noun)|system|system of rules +honorable|5 +(adj)|honest |downright|open|square|straight|direct|genuine|echt|honourable|sincere|straight|true|trustworthy|trusty +(adj)|honorable |honourable|august|revered|venerable|laureate|noble|solid|upstanding|worthy|time-honored|time-honoured|honest|just|moral|noble|reputable|worthy +(adj)|honourable|worthy +(adj)|ethical|honourable|moral|right +(adj)|estimable|good|respectable|reputable +honorable mention|1 +(noun)|mention|award|accolade|honor|honour|laurels +honorableness|1 +(noun)|honourableness|righteousness +honorably|2 +(adv)|uprightly +(adv)|honourably +honorarium|1 +(noun)|reward +honorary|1 +(adj)|unearned +honorary degree|1 +(noun)|academic degree|degree +honorary society|1 +(noun)|academy|institution|establishment +honore-gabriel victor riqueti|1 +(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist|revolutionary|subversive|subverter +honore balzac|1 +(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist +honore daumier|1 +(noun)|Daumier|Honore Daumier|painter|lithographer +honore de balzac|1 +(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist +honored|2 +(adj)|esteemed|prestigious|reputable +(adj)|honoured|worthy +honoree|1 +(noun)|recipient|receiver +honorific|2 +(adj)|respectful +(noun)|formulation|expression +honoring|1 +(noun)|observance|conformity|conformation|compliance|abidance +honostyled|1 +(adj)|homostylous|homostylic|reproductive structure +honour|7 +(noun)|honor|laurels|standing +(noun)|award|accolade|honor|laurels|symbol +(noun)|honor|righteousness +(noun)|honor|purity|virtue|chastity|sexual morality +(verb)|honor|reward|recognize|recognise +(verb)|respect|honor|abide by|observe|accept +(verb)|honor|accept|take|have +honourable|3 +(adj)|honorable |august|revered|venerable|laureate|noble|solid|upstanding|worthy|time-honored|time-honoured|honest|honorable|just|moral|noble|reputable|worthy +(adj)|honorable|worthy +(adj)|ethical|honorable|moral|right +honourableness|1 +(noun)|honorableness|righteousness +honourably|1 +(adv)|honorably +honoured|1 +(adj)|honored|worthy +honours|5 +(noun)|honours degree|academic degree|degree +(noun)|honor|honour|laurels|standing +(noun)|award|accolade|honor|honour|laurels|symbol +(noun)|honor|honour|righteousness +(noun)|honor|honour|purity|virtue|chastity|sexual morality +honours degree|1 +(noun)|honours|academic degree|degree +honours list|1 +(noun)|class list|list|listing +honshu|1 +(noun)|Honshu|Hondo|island +hoo-ha|1 +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-hah|kerfuffle|disorder +hoo-hah|1 +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|kerfuffle|disorder +hooch|1 +(noun)|hootch|alcohol|alcoholic beverage|intoxicant|inebriant +hood|6 +(noun)|hoodlum|goon|punk|thug|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +(noun)|exhaust hood|covering +(noun)|roof +(noun)|headdress|headgear +(noun)|bonnet|cowl|cowling|protective covering|protective cover|protection +(verb)|cover +hood latch|1 +(noun)|catch +hood ornament|1 +(noun)|decoration|ornament|ornamentation +hooded cloak|1 +(noun)|capote|cloak +hooded coat|1 +(noun)|capote|greatcoat|overcoat|topcoat +hooded ladies' tresses|1 +(noun)|Spiranthes romanzoffiana|ladies' tresses|lady's tresses +hooded merganser|1 +(noun)|hooded sheldrake|Lophodytes cucullatus|merganser|fish duck|sawbill|sheldrake +hooded pitcher plant|1 +(noun)|Sarracenia minor|pitcher plant +hooded seal|1 +(noun)|bladdernose|Cystophora cristata|earless seal|true seal|hair seal +hooded sheldrake|1 +(noun)|hooded merganser|Lophodytes cucullatus|merganser|fish duck|sawbill|sheldrake +hooded skunk|1 +(noun)|Mephitis macroura|skunk|polecat|wood pussy +hoodlum|1 +(noun)|hood|goon|punk|thug|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +hoodmold|1 +(noun)|dripstone|hoodmould|drip|drip mold|drip mould +hoodmould|1 +(noun)|dripstone|hoodmold|drip|drip mold|drip mould +hoodoo|5 +(noun)|column|tower|pillar +(noun)|priest|non-Christian priest|voodoo|vodoun|voodooism|hoodooism +(noun)|juju|voodoo|fetish|fetich|charm|good luck charm +(noun)|object|physical object +(verb)|be +hoodooism|1 +(noun)|voodoo|vodoun|voodooism|cult|cultus|religious cult +hoodwink|2 +(verb)|juggle|beguile|cheat|rip off|chisel +(verb)|bamboozle|snow|pull the wool over someone's eyes|lead by the nose|play false|deceive|betray|lead astray +hooey|1 +(noun)|stuff|stuff and nonsense|poppycock|nonsense|bunk|nonsensicality|meaninglessness|hokum +hoof|4 +(noun)|animal foot|foot +(noun)|horny structure|unguis +(verb)|foot|leg it|hoof it|walk +(verb)|dance|trip the light fantastic|trip the light fantastic toe +hoof-and-mouth disease|1 +(noun)|foot-and-mouth disease|animal disease +hoof-mark|2 +(noun)|hoofprint|hoof mark|mark|print +(noun)| +hoof it|1 +(verb)|foot|leg it|hoof|walk +hoof mark|2 +(noun)|hoofprint|hoof-mark|mark|print +(noun)| +hoofed|1 +(adj)|ungulate |ungulated|hooved +hoofed mammal|1 +(noun)|ungulate|placental|placental mammal|eutherian|eutherian mammal +hoofer|1 +(noun)|stepper|dancer|professional dancer +hoofing|1 +(noun)|step dancing|dancing|dance|terpsichore|saltation +hooflike|1 +(adj)|animal foot|foot +hoofprint|1 +(noun)|hoof mark|hoof-mark|mark|print +hook|20 +(noun)|catch +(noun)|crotchet|curve|curved shape +(noun)|bait|come-on|lure|sweetener|temptation|enticement +(noun)|claw|mechanical device +(noun)|implement +(noun)|draw|hooking|golf stroke|golf shot|swing +(noun)|punch|clout|poke|lick|biff +(noun)|hook shot|basketball shot +(verb)|fasten|fix|secure|hook up +(verb)|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|cheat|rip off|chisel +(verb)|crochet|loop|intertwine +(verb)|hit +(verb)|snitch|thieve|cop|knock off|glom|steal +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|sneak|filch|nobble|lift|steal +(verb)|hit +(verb)|catch|grab|take hold of +(verb)|addict|habituate|accustom +(verb)|play +(verb)|snare|entice|lure|tempt +(verb)|solicit|accost|offer +hook-nosed|1 +(adj)|nosed +hook and eye|1 +(noun)|fastener|fastening|holdfast|fixing +hook line and sinker|1 +(adv)|without questioning +hook of holland|1 +(noun)|Hook of Holland|Hoek van Holland|cape|ness +hook on|1 +(verb)|take up|latch on|fasten on|seize on|espouse|embrace|adopt|sweep up +hook shot|1 +(noun)|hook|basketball shot +hook spanner|1 +(noun)|hook wrench|wrench|spanner +hook up|1 +(verb)|attach +hook up with|1 +(verb)|marry|get married|wed|conjoin|get hitched with|espouse|unite|unify +hook wrench|1 +(noun)|hook spanner|wrench|spanner +hookah|1 +(noun)|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +hooke|1 +(noun)|Hooke|Robert Hooke|scientist|man of science +hooke's law|1 +(noun)|Hooke's law|law|law of nature +hooked|2 +(adj)|aquiline|crooked +(adj)|dependent|dependant|drug-addicted|strung-out|addicted +hooker|5 +(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general|full general +(noun)|Hooker|Richard Hooker|theologian|theologist|theologizer|theologiser +(noun)|streetwalker|street girl|hustler|floozy|floozie|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +(noun)|golfer|golf player|linksman +(noun)|athlete|jock +hooker's green|1 +(noun)|Hooker's green|pigment +hooker's onion|1 +(noun)|Hooker's onion|Allium acuminatum|wild onion +hooker's orchid|1 +(noun)|Hooker's orchid|Habenaria hookeri|fringed orchis|fringed orchid +hooking|1 +(noun)|hook|draw|golf stroke|golf shot|swing +hooklike|1 +(adj)|curved |curving +hooknose|1 +(noun)|Roman nose|nose|olfactory organ +hooks|9 +(noun)|meat hooks|maulers|hand|manus|mitt|paw +(noun)|hook|catch +(noun)|hook|crotchet|curve|curved shape +(noun)|bait|come-on|hook|lure|sweetener|temptation|enticement +(noun)|hook|claw|mechanical device +(noun)|hook|implement +(noun)|hook|draw|hooking|golf stroke|golf shot|swing +(noun)|hook|punch|clout|poke|lick|biff +(noun)|hook shot|hook|basketball shot +hookup|2 +(noun)|connection|connexion|connector|connecter|connective +(noun)|assemblage|system +hookworm|2 +(noun)|nematode|nematode worm|roundworm +(noun)|hookworm disease|helminthiasis +hookworm disease|1 +(noun)|hookworm|helminthiasis +hooky|1 +(noun)|truancy|nonattendance +hooky player|1 +(noun)|truant|absentee +hooligan|1 +(noun)|bully|tough|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +hooliganism|1 +(noun)|vandalism|malicious mischief|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|destruction|devastation +hoop|5 +(noun)|skeleton|skeletal frame|frame|underframe +(noun)|ring|band +(noun)|wicket|croquet equipment +(noun)|basket|basketball hoop|goal|basketball equipment +(verb)|gird|encircle +hoop ash|1 +(noun)|black ash|basket ash|brown ash|Fraxinus nigra|ash|ash tree +hoop pine|1 +(noun)|Moreton Bay pine|Araucaria cunninghamii|araucaria +hoop snake|1 +(noun)|colubrid snake|colubrid +hoopla|1 +(noun)|ballyhoo|hype|plug|promotion|publicity|promotional material|packaging +hoopoe|1 +(noun)|hoopoo|coraciiform bird +hoopoo|1 +(noun)|hoopoe|coraciiform bird +hoops|5 +(noun)|basketball|basketball game|court game +(noun)|hoop|skeleton|skeletal frame|frame|underframe +(noun)|hoop|ring|band +(noun)|wicket|hoop|croquet equipment +(noun)|basket|basketball hoop|hoop|goal|basketball equipment +hoopskirt|1 +(noun)|crinoline|skirt +hooray|1 +(noun)|hurrah|cheer +hooray henry|1 +(noun)|Hooray Henry|man|adult male +hoosegow|1 +(noun)|hoosgow|jail|jailhouse|gaol|clink|slammer +hoosgow|1 +(noun)|hoosegow|jail|jailhouse|gaol|clink|slammer +hoosier|1 +(noun)|Indianan|Hoosier|American +hoosier state|1 +(noun)|Indiana|Hoosier State|IN|American state +hoot|4 +(noun)|cry|outcry|call|yell|shout|vociferation +(noun)|boo|Bronx cheer|hiss|raspberry|razzing|snort|bird|cry|outcry|call|yell|shout|vociferation +(noun)|damn|darn|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness +(verb)|utter|emit|let out|let loose +hoot owl|1 +(noun)|owl|bird of Minerva|bird of night|hooter +hootch|1 +(noun)|hooch|alcohol|alcoholic beverage|intoxicant|inebriant +hooter|3 +(noun)|beak|honker|nozzle|snoot|snout|schnozzle|schnoz|nose|olfactory organ +(noun)|automobile horn|car horn|motor horn|horn|alarm|warning device|alarm system +(noun)|owl|bird of Minerva|bird of night|bird of prey|raptor|raptorial bird +hooved|1 +(adj)|ungulate |ungulated|hoofed +hoover|5 +(noun)|Hoover|William Hoover|William Henry Hoover|industrialist +(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer|attorney +(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States|United States President|President|Chief Executive +(noun)|Hoover|vacuum|vacuum cleaner +(verb)|vacuum|vacuum-clean|clean|make clean +hoover dam|1 +(noun)|Hoover Dam|dam|dike|dyke|levee +hop|9 +(noun)|jump|jumping +(noun)|hops|vine +(noun)|record hop|dance +(verb)|skip|hop-skip|jump|leap|bound|spring|hop on +(verb)|move +(verb)|travel +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|clear|top +(verb)|jump|leap|bound|spring +hop-picker|1 +(noun)|hopper|machine +hop-skip|1 +(verb)|hop|skip|jump|leap|bound|spring +hop-step-and-jump|1 +(noun)|triple jump|athletic contest|athletic competition|athletics +hop clover|2 +(noun)|black medick|yellow trefoil|nonesuch clover|Medicago lupulina|medic|medick|trefoil +(noun)|shamrock|lesser yellow trefoil|Trifolium dubium|clover|trefoil +hop field|1 +(noun)|hop garden|garden +hop garden|1 +(noun)|hop field|garden +hop hornbeam|1 +(noun)|tree +hop marjoram|1 +(noun)|dittany of crete|cretan dittany|crete dittany|winter sweet|Origanum dictamnus|origanum +hop on|1 +(verb)|mount|mount up|get on|jump on|climb on|bestride|move +hop out|1 +(verb)|get off|exit|go out|get out|leave +hop pole|1 +(noun)|post +hop up|1 +(verb)|soup up|hot up|modify +hope|9 +(noun)|anticipation|expectancy +(noun)|feeling +(noun)|promise|expectation|outlook|prospect +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian|comic +(noun)|theological virtue|supernatural virtue +(verb)|trust|desire|wish +(verb)|desire|want +(verb)|go for|plan|be after +hope chest|1 +(noun)|wedding chest|chest +hoped-for|1 +(adj)|anticipated|awaited|expected +hopeful|3 +(adj)|hopeful |anticipant|anticipative|expectant|aspirant|aspiring|wishful|would-be|encouraging|optimistic +(adj)|fortunate|rosy|auspicious +(noun)|aspirant|aspirer|wannabe|wannabee|applicant|applier +hopefulness|2 +(noun)|condition|status +(noun)|hope +hopeh|1 +(noun)|Hebei|Hopei|Hopeh|Hebei province|state|province +hopei|1 +(noun)|Hebei|Hopei|Hopeh|Hebei province|state|province +hopeless|4 +(adj)|hopeless |abject|resigned|unhopeful|black|bleak|dim|despairing|desperate|despondent|heartsick|forlorn|futureless|gloomy|grim|darkening|helpless|lost|insoluble|discouraging|impossible|pessimistic +(adj)|unskilled +(adj)|impossible +(adj)|bad +hopelessly|1 +(adv)|dispiritedly +hopelessness|1 +(noun)|despair +hoper|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +hopi|2 +(noun)|Hopi|Shoshone|Shoshoni|Pueblo +(noun)|Hopi|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language +hopkins|5 +(noun)|Hopkins|Mark Hopkins|theologian|theologist|theologizer|theologiser|educator|pedagogue +(noun)|Hopkins|Johns Hopkins|financier|moneyman|philanthropist|altruist +(noun)|Hopkins|Gerard Manley Hopkins|poet +(noun)|Hopkins|Sir Frederick Gowland Hopkins|biochemist +(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor|histrion|player|thespian|role player +hopkinson|1 +(noun)|Hopkinson|Francis Hopkinson|American Revolutionary leader +hopped-up|2 +(adj)|powered +(adj)|stoned|intoxicated |drunk|inebriated +hopper|5 +(noun)|receptacle +(noun)|jumper +(noun)|hop-picker|machine +(noun)|grasshopper|orthopterous insect|orthopteron|orthopteran +(noun)|grounder|ground ball|groundball|hit|hitting|striking +hopple|1 +(verb)|hobble|strap +hops|4 +(noun)|hop|vine +(noun)|hop|jump|jumping +(noun)|hop|vine +(noun)|hop|record hop|dance +hopsack|1 +(noun)|hopsacking|fabric|cloth|material|textile +hopsacking|1 +(noun)|hopsack|fabric|cloth|material|textile +hopscotch|1 +(noun)|child's game +horace|1 +(noun)|Horace|poet +horace greeley|1 +(noun)|Greeley|Horace Greeley|journalist +horace mann|1 +(noun)|Mann|Horace Mann|educator|pedagogue +horace walpole|1 +(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer|author|historian|historiographer +horary|1 +(adj)|time unit|unit of time +horatian ode|1 +(noun)|Horatian ode|Sapphic ode|ode +horatio alger|1 +(noun)|Alger|Horatio Alger|writer|author +horatio herbert kitchener|1 +(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal +horatio hornblower|1 +(noun)|Horatio Hornblower|Captain Horatio Hornblower|fictional character|fictitious character|character +horatio nelson|1 +(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral|full admiral +horatio walpole|1 +(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer|author|historian|historiographer +horde|3 +(noun)|host|legion|multitude|throng|concourse +(noun)|community +(noun)|drove|swarm|crowd +hordeolum|1 +(noun)|sty|stye|eye infection|infection +hordeum|1 +(noun)|Hordeum|genus Hordeum|monocot genus|liliopsid genus +hordeum jubatum|1 +(noun)|squirreltail barley|foxtail barley|squirreltail grass|Hordeum jubatum|barley +hordeum murinum|1 +(noun)|barley grass|wall barley|Hordeum murinum|barley +hordeum pusillum|1 +(noun)|little barley|Hordeum pusillum|barley +hordeum vulgare|1 +(noun)|common barley|Hordeum vulgare|barley +horehound|2 +(noun)|herb|herbaceous plant|Marrubium|genus Marrubium +(noun)|candy +horizon|4 +(noun)|apparent horizon|visible horizon|sensible horizon|skyline|line +(noun)|view|purview|scope|range|reach|orbit|compass|ambit +(noun)|stratum +(noun)|celestial horizon|great circle +horizontal|2 +(adj)|horizontal |crosswise|flat|level|naiant|swimming +(noun)|orientation +horizontal bar|1 +(noun)|high bar|gymnastic apparatus|exerciser +horizontal combination|1 +(noun)|horizontal integration|consolidation|integration +horizontal integration|1 +(noun)|horizontal combination|consolidation|integration +horizontal parallax|1 +(noun)|geocentric parallax|diurnal parallax +horizontal section|1 +(noun)|mechanical drawing +horizontal stabiliser|1 +(noun)|horizontal stabilizer|tailplane|airfoil|aerofoil|control surface|surface +horizontal stabilizer|1 +(noun)|horizontal stabiliser|tailplane|airfoil|aerofoil|control surface|surface +horizontal surface|1 +(noun)|level|surface +horizontal tail|1 +(noun)|stabilizer +horizontality|1 +(noun)|position|spatial relation +hormonal|1 +(adj)|secretion +hormone|1 +(noun)|endocrine|internal secretion|secretion +hormone-replacement therapy|2 +(noun)|hormone replacement therapy|HRT|therapy +(noun)| +hormone replacement therapy|1 +(noun)|hormone-replacement therapy|HRT|therapy +horn|11 +(noun)|noisemaker +(noun)|process|outgrowth|appendage +(noun)|alarm|alert|warning signal|alarum +(noun)|saddle horn|pommel|saddlebow +(noun)|cornet|trumpet|trump|brass +(noun)|process|outgrowth|appendage +(noun)|animal material +(noun)|alarm|warning device|alarm system +(noun)|French horn|brass +(noun)|automobile horn|car horn|motor horn|hooter|alarm|warning device|alarm system +(verb)|tusk|pierce|thrust +horn-rimmed|1 +(adj)|rimmed +horn button|1 +(noun)|push button|push|button +horn fly|1 +(noun)|Haematobia irritans|fly +horn in|1 +(verb)|poke into|intrude into|meddle with|intervene|step in|interfere|interpose +horn of africa|1 +(noun)|Somali peninsula|Horn of Africa|peninsula +horn poppy|1 +(noun)|horned poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower +hornbeam|1 +(noun)|tree +hornbill|1 +(noun)|coraciiform bird +hornblende|1 +(noun)|amphibole +horned|1 +(adj)|horned |antlered|bicorn|bicorned|bicornate|bicornuate|bicornuous|horny +horned asp|1 +(noun)|horned viper|cerastes|sand viper|Cerastes cornutus|viper +horned chameleon|1 +(noun)|Chamaeleo oweni|chameleon|chamaeleon +horned dinosaur|1 +(noun)|ceratopsian|ornithischian|ornithischian dinosaur +horned lizard|1 +(noun)|horned toad|horny frog|iguanid|iguanid lizard +horned owl|1 +(noun)|owl|bird of Minerva|bird of night|hooter +horned pondweed|1 +(noun)|Zannichellia palustris|pondweed +horned poppy|1 +(noun)|horn poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower +horned pout|1 +(noun)|hornpout|pout|Ameiurus Melas|bullhead +horned puffin|1 +(noun)|Fratercula corniculata|puffin +horned rattlesnake|1 +(noun)|sidewinder|Crotalus cerastes|rattlesnake|rattler +horned screamer|1 +(noun)|Anhima cornuta|screamer +horned toad|1 +(noun)|horned lizard|horny frog|iguanid|iguanid lizard +horned violet|1 +(noun)|tufted pansy|Viola cornuta|viola +horned viper|1 +(noun)|cerastes|sand viper|horned asp|Cerastes cornutus|viper +horned whiff|1 +(noun)|Citharichthys cornutus|whiff +horneophyton|1 +(noun)|Horneophyton|genus Horneophyton|fern genus +horner's syndrome|1 +(noun)|Horner's syndrome|syndrome +hornet|1 +(noun)|vespid|vespid wasp +hornet's nest|2 +(noun)|hornets' nest|situation +(noun)|wasp's nest|wasps' nest|hornets' nest|nidus +hornets' nest|2 +(noun)|hornet's nest|situation +(noun)|wasp's nest|wasps' nest|hornet's nest|nidus +hornfels|1 +(noun)|hornstone|metamorphic rock +horniness|1 +(noun)|hotness|hot pants|sexual arousal +hornist|1 +(noun)|musician|instrumentalist|player +hornless|1 +(adj)|hornless +hornlike|1 +(adj)|corneous|horny|hard +hornpipe|3 +(noun)|folk dancing|folk dance +(noun)|dance music|danceroom music|ballroom music +(noun)|pibgorn|stockhorn|single-reed instrument|single-reed woodwind +hornpout|1 +(noun)|horned pout|pout|Ameiurus Melas|bullhead +hornstone|1 +(noun)|hornfels|metamorphic rock +hornwort|2 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|liverwort +horny|3 +(adj)|aroused|randy|ruttish|turned on|sexy +(adj)|horned +(adj)|corneous|hornlike|hard +horny frog|1 +(noun)|horned lizard|horned toad|iguanid|iguanid lizard +horny layer|1 +(noun)|stratum corneum|corneum|stratum +horny structure|1 +(noun)|unguis|structure|anatomical structure|complex body part|bodily structure|body structure +horologer|1 +(noun)|watchmaker|horologist|maker|shaper +horologist|1 +(noun)|watchmaker|horologer|maker|shaper +horology|1 +(noun)|art|artistry|prowess +horoscope|2 +(noun)|prediction|foretelling|forecasting|prognostication +(noun)|diagram +horoscopy|1 +(noun)|astrology|star divination +horowitz|1 +(noun)|Horowitz|Vladimir Horowitz|pianist|piano player +horrendous|1 +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrific|terrible|alarming +horrible|1 +(adj)|atrocious|frightful|horrifying|ugly|alarming +horribly|1 +(adv)|dreadfully|awfully +horrid|2 +(adj)|bad +(adj)|hideous|horrific|outrageous|offensive +horridly|1 +(adv)|hideously|monstrously +horridness|1 +(noun)|awfulness|dreadfulness|terribleness|unpleasantness +horrific|2 +(adj)|hideous|horrid|outrageous|offensive +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|terrible|alarming +horrified|1 +(adj)|horror-stricken|horror-struck|afraid +horrify|1 +(verb)|dismay|alarm|appal|appall|frighten|fright|scare|affright +horrifying|1 +(adj)|atrocious|frightful|horrible|ugly|alarming +horripilate|2 +(verb)|experience|receive|have|get|undergo +(verb)|stimulate|excite|stir +horripilation|1 +(noun)|pilomotor reflex|gooseflesh|goose bump|goose pimple|goose skin|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +horror|3 +(noun)|fear|fearfulness|fright +(noun)|thing +(noun)|repugnance|repulsion|revulsion|disgust +horror-stricken|1 +(adj)|horrified|horror-struck|afraid +horror-struck|1 +(adj)|horrified|horror-stricken|afraid +hors d'oeuvre|1 +(noun)|appetizer|appetiser|starter +hors de combat|1 +(adj)|disabled|out of action|injured +horse|6 +(noun)|Equus caballus|equine|equid +(noun)|gymnastic apparatus|exerciser +(noun)|cavalry|horse cavalry|military personnel|soldiery|troops +(noun)|sawhorse|sawbuck|buck|framework|frame|framing +(noun)|knight|chessman|chess piece +(verb)|provide|supply|ply|cater +horse's foot|1 +(noun)|horse's hoof|hoof +horse's hoof|1 +(noun)|horse's foot|hoof +horse-and-buggy|1 +(adj)|nonmodern +horse-brier|2 +(noun)|bullbrier|greenbrier|catbrier|horse brier|brier|briar|Smilax rotundifolia|vine +(noun)| +horse-cart|2 +(noun)|horse cart|cart +(noun)| +horse-chestnut family|1 +(noun)|Hippocastanaceae|family Hippocastanaceae|dicot family|magnoliopsid family +horse-drawn|1 +(adj)|equine|equid +horse-drawn vehicle|1 +(noun)|wheeled vehicle +horse-head|2 +(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|dollarfish|Selene setapinnis|carangid fish|carangid +(noun)| +horse-pistol|2 +(noun)|horse pistol|pistol|handgun|side arm|shooting iron +(noun)| +horse-race|1 +(verb)|race|run +horse-trade|1 +(verb)|negociate +horse-trail|1 +(noun)|trail +horse around|1 +(verb)|arse around|fool around|fool|play|joke|jest +horse balm|1 +(noun)|horseweed|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb|herbaceous plant +horse barn|1 +(noun)|stable|stalls|farm building +horse bean|3 +(noun)|broad bean|fodder +(noun)|broad bean|fava bean|horsebean|bean|bean plant +(noun)|Jerusalem thorn|horsebean|Parkinsonia aculeata|shrub|bush +horse blanket|1 +(noun)|saddle blanket|saddlecloth|stable gear|saddlery|tack +horse botfly|1 +(noun)|Gasterophilus intestinalis|botfly +horse breeding|1 +(noun)|breeding +horse brier|2 +(noun)|bullbrier|greenbrier|catbrier|horse-brier|brier|briar|Smilax rotundifolia|vine +(noun)| +horse cart|2 +(noun)|horse-cart|cart +(noun)| +horse cassia|2 +(noun)|Cassia roxburghii|Cassia marginata|cassia +(noun)|pink shower|pink shower tree|Cassia grandis|cassia +horse cavalry|2 +(noun)|cavalry|horse|military personnel|soldiery|troops +(noun)|cavalry +horse chestnut|2 +(noun)|buckeye|Aesculus hippocastanum|angiospermous tree|flowering tree +(noun)|buckeye|conker|seed +horse doctor|1 +(noun)|veterinarian|veterinary|veterinary surgeon|vet +horse fancier|1 +(noun)|horseman|animal fancier +horse fly|2 +(noun)|horsefly|cleg|clegg|gadfly +(noun)|horse tick|horsefly|Hippobosca equina|louse fly|hippoboscid +horse gentian|1 +(noun)|feverroot|tinker's root|wild coffee|Triostium perfoliatum|herb|herbaceous plant +horse grain|1 +(noun)|horse gram|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume|leguminous plant +horse gram|1 +(noun)|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume|leguminous plant +horse latitude|1 +(noun)|latitude|line of latitude|parallel of latitude|parallel +horse mackerel|3 +(noun)|bluefin|bluefin tuna|Thunnus thynnus|tuna|tunny +(noun)|saurel|Trachurus trachurus|scad +(noun)|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad +horse manure|1 +(noun)|manure +horse mushroom|1 +(noun)|Agaricus arvensis|agaric +horse nettle|1 +(noun)|ball nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade +horse of the wood|1 +(noun)|capercaillie|capercailzie|Tetrao urogallus|grouse +horse opera|1 +(noun)|Western|feature|feature film +horse parsley|1 +(noun)|Alexander|Alexanders|black lovage|Smyrnium olusatrum|herb|herbaceous plant +horse pistol|2 +(noun)|horse-pistol|pistol|handgun|side arm|shooting iron +(noun)| +horse race|1 +(noun)|race +horse racing|1 +(noun)|racing +horse radish|3 +(noun)|horseradish|red cole|Armoracia rusticana|herb|herbaceous plant +(noun)|horseradish|horseradish root|root +(noun)|horseradish|condiment +horse sense|1 +(noun)|common sense|good sense|gumption|sense|mother wit|sagacity|sagaciousness|judgment|judgement|discernment +horse thistle|1 +(noun)|prickly lettuce|Lactuca serriola|Lactuca scariola|compass plant|compass flower +horse tick|1 +(noun)|horsefly|Hippobosca equina|louse fly|hippoboscid +horse trade|1 +(noun)|horse trading|barter|swap|swop|trade +horse trader|1 +(noun)|trader|bargainer|dealer|monger +horse trading|2 +(noun)|horse trade|barter|swap|swop|trade +(noun)|negotiation|dialogue|talks +horse wrangler|1 +(noun)|wrangler|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +horseback|3 +(noun)|body part +(noun)|hogback|ridge +(adv)|ahorse|ahorseback +horseback rider|1 +(noun)|horseman|equestrian|rider +horseback riding|2 +(noun)|riding|equitation|sport|athletics +(noun)|riding|travel|traveling|travelling +horsebean|2 +(noun)|broad bean|fava bean|bean|bean plant +(noun)|Jerusalem thorn|Parkinsonia aculeata|shrub|bush +horsebox|1 +(noun)|conveyance|transport +horsecar|1 +(noun)|streetcar|tram|tramcar|trolley|trolley car +horsecloth|1 +(noun)|caparison|trapping|trappings|housing|housings +horsefish|1 +(noun)|moonfish|Atlantic moonfish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish|carangid +horseflesh|1 +(noun)|horsemeat|meat +horsefly|2 +(noun)|horse tick|Hippobosca equina|louse fly|hippoboscid +(noun)|cleg|clegg|horse fly|gadfly +horsefly weed|1 +(noun)|indigo broom|rattle weed|Baptisia tinctoria|wild indigo|false indigo +horsehair|2 +(noun)|animal fiber|animal fibre +(noun)|fabric|cloth|material|textile +horsehair lichen|1 +(noun)|horsetail lichen|lichen +horsehair wig|1 +(noun)|wig +horsehead|1 +(noun)|moonfish|Atlantic moonfish|horsefish|horse-head|dollarfish|Selene setapinnis|carangid fish|carangid +horsehide|1 +(noun)|leather +horselaugh|1 +(noun)|hee-haw|ha-ha|haw-haw|laugh|laughter +horseleech|1 +(noun)|leech|bloodsucker|hirudinean +horseless carriage|1 +(noun)|car|auto|automobile|machine|motorcar +horselike|1 +(adj)|animal +horseman|2 +(noun)|equestrian|horseback rider|rider +(noun)|horse fancier|animal fancier +horsemanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +horsemeat|1 +(noun)|horseflesh|meat +horsemint|3 +(noun)|lemon mint|Monarda citriodora|monarda|wild bergamot +(noun)|Monarda punctata|monarda|wild bergamot +(noun)|Mentha longifolia|mint +horseplay|1 +(noun)|play|frolic|romp|gambol|caper +horsepond|1 +(noun)|pond|pool +horsepower|1 +(noun)|HP|H.P.|power unit +horsepower-hour|1 +(noun)|work unit|heat unit|energy unit +horseradish|3 +(noun)|horseradish root|root +(noun)|horse radish|red cole|Armoracia rusticana|herb|herbaceous plant +(noun)|condiment +horseradish peroxidase|1 +(noun)|peroxidase +horseradish root|1 +(noun)|horseradish|root +horseradish sauce|1 +(noun)|sauce Albert|sauce +horseshit|1 +(noun)|bullshit|bull|Irish bull|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +horseshoe|3 +(noun)|game equipment +(noun)|shoe|plate|scale|shell +(verb)|equip|fit|fit out|outfit +horseshoe arch|1 +(noun)|Moorish arch|round arch +horseshoe bat|2 +(noun)|leafnose bat|leaf-nosed bat +(noun)|leafnose bat|leaf-nosed bat +horseshoe crab|1 +(noun)|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod +horseshoe falls|1 +(noun)|Canadian Falls|Horseshoe Falls|waterfall|falls +horseshoe vetch|1 +(noun)|Hippocrepis comosa|subshrub|suffrutex +horseshoe whipsnake|1 +(noun)|Coluber hippocrepis|racer +horseshoer|1 +(noun)|farrier|blacksmith +horseshoes|3 +(noun)|quoits|outdoor game +(noun)|horseshoe|game equipment +(noun)|horseshoe|shoe|plate|scale|shell +horseshow|1 +(noun)|show +horsetail|1 +(noun)|fern ally +horsetail family|1 +(noun)|Equisetaceae|family Equisetaceae|fern family +horsetail lichen|1 +(noun)|horsehair lichen|lichen +horsetail milkweed|1 +(noun)|poison milkweed|Asclepias subverticillata|milkweed|silkweed +horseweed|2 +(noun)|horse balm|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb|herbaceous plant +(noun)|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed +horsewhip|2 +(noun)|whip +(verb)|flog|welt|whip|lather|lash|slash|strap|trounce +horsewhipping|1 +(noun)|whipping|tanning|flogging|lashing|flagellation +horsewoman|1 +(noun)|horseman|equestrian|horseback rider +horsey set|1 +(noun)|horsy set|set|circle|band|lot +horst|1 +(noun)|crust|Earth's crust +horsy set|1 +(noun)|horsey set|set|circle|band|lot +horta|1 +(noun)|Horta|Victor Horta|architect|designer +hortative|1 +(adj)|exhortative|exhortatory|hortatory|encouraging +hortatory|1 +(adj)|exhortative|exhortatory|hortative|encouraging +hortensia|2 +(noun)|Hydrangea macrophylla hortensis|hydrangea +(noun)|golden glow|double gold|Rudbeckia laciniata hortensia|cutleaved coneflower|Rudbeckia laciniata +horticultural|1 +(adj)|farming|agriculture|husbandry +horticulture|1 +(noun)|gardening|farming|agriculture|husbandry +horticulturist|1 +(noun)|plantsman|expert +horus|1 +(noun)|Horus|Egyptian deity +hosanna|1 +(noun)|cry|outcry|call|yell|shout|vociferation +hose|4 +(noun)|hosiery|footwear +(noun)|tights|garment +(noun)|hosepipe|tube|tubing +(verb)|hose down|water|irrigate +hose down|1 +(verb)|hose|water|irrigate +hosea|2 +(noun)|Hosea|prophet +(noun)|Hosea|Book of Hosea|book +hosepipe|1 +(noun)|hose|tube|tubing +hosier|1 +(noun)|shopkeeper|tradesman|storekeeper|market keeper +hosiery|1 +(noun)|hose|footwear +hosni mubarak|1 +(noun)|Mubarak|Hosni Mubarak|statesman|solon|national leader +hospice|2 +(noun)|housing|lodging|living accommodations +(noun)|medical care|medical aid +hospitable|3 +(adj)|hospitable |kind +(adj)|hospitable |welcoming|friendly +(adj)|open to|receptive +hospitableness|1 +(noun)|friendliness +hospital|2 +(noun)|infirmary|medical building|health facility|healthcare facility +(noun)|medical institution +hospital attendant|1 +(noun)|orderly|attendant|attender|tender +hospital bed|1 +(noun)|single bed +hospital care|1 +(noun)|hospitalization|hospitalisation|medical care|medical aid +hospital chaplain|1 +(noun)|chaplain +hospital occupancy|1 +(noun)|occupancy rate +hospital room|1 +(noun)|room +hospital ship|1 +(noun)|ship +hospital train|1 +(noun)|train|railroad train +hospital ward|1 +(noun)|ward|block +hospitalisation|1 +(noun)|hospitalization|hospital care|medical care|medical aid +hospitalise|1 +(verb)|hospitalize|commit|institutionalize|institutionalise|send|charge +hospitality|1 +(noun)|cordial reception|welcome +hospitalization|4 +(noun)|time period|period of time|period +(noun)|condition|status +(noun)|hospitalization insurance|health insurance +(noun)|hospitalisation|hospital care|medical care|medical aid +hospitalization insurance|1 +(noun)|hospitalization|health insurance +hospitalize|1 +(verb)|hospitalise|commit|institutionalize|institutionalise|send|charge +host|11 +(noun)|adult|grownup +(noun)|horde|legion|multitude|throng|concourse +(noun)|organism|being +(noun)|master of ceremonies|emcee|entertainer +(noun)|legion|army|regular army|ground forces +(noun)|organization|organisation +(noun)|recipient|receiver +(noun)|innkeeper|boniface|patron +(noun)|Host|bread|breadstuff|staff of life +(noun)|server|computer|computing machine|computing device|data processor|electronic computer|information processing system +(verb)|entertain +hosta|1 +(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus +hostaceae|1 +(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family +hostage|1 +(noun)|surety|prisoner|captive +hostel|2 +(noun)|hostelry|inn|lodge|hotel +(noun)|youth hostel|student lodging|housing|lodging|living accommodations +hosteller|2 +(noun)|hotelier|hotelkeeper|hotel manager|hotelman|administrator|decision maker +(noun)|traveler|traveller +hostelry|1 +(noun)|hostel|inn|lodge|hotel +hostess|3 +(noun)|host +(noun)|host|innkeeper|boniface +(noun)|stewardess|air hostess|steward|flight attendant +hostile|7 +(adj)|hostile |aggressive|belligerent|antagonistic|antipathetic|antipathetical|bitter|at loggerheads|dirty|head-on|ill|opponent|opposing|truculent|unfriendly|inimical|aggressive|hateful|offensive|unfriendly|unpeaceful|violent +(adj)|hostile +(adj)|unfriendly +(adj)|irreconcilable |unreconcilable +(adj)|uncongenial|unfriendly|inhospitable +(adj)|unfavorable |unfavourable +(adj)|aggressive +hostile expedition|1 +(noun)|expedition|military expedition|campaign|military campaign +hostile fire|1 +(noun)|fire|firing +hostile takeover|1 +(noun)|takeover +hostile witness|1 +(noun)|adverse witness|witness +hostilely|1 +(adv)|belligerently|with hostility +hostility|5 +(noun)|ill will|unfriendliness +(noun)|enmity|antagonism|state +(noun)|enmity|ill will|hate|hatred +(noun)|aggression|action +(noun)|belligerency|combat|armed combat +hostler|1 +(noun)|stableman|stableboy|groom|ostler|hired hand|hand|hired man +hot|22 +(adj)|hot |baking|baking hot|blistering|blistery|burning|calefacient|warming|calefactory|calefactive|heating|calorifacient|calorific|heated|heated up|het|het up|hottish|red-hot|sizzling|sultry|stifling|sulfurous|sulphurous|sweltering|sweltry|thermal|torrid|sultry|tropical|tropic|white|white-hot|fervent|fervid|fiery|igneous|heatable|overheated|scorching|warm +(adj)|raging|violent +(adj)|hot |fiery|flaming|heated|red-hot|sizzling|sensual|sultry|torrid|white-hot|passionate +(adj)|warm +(adj)|sexy +(adj)|illegal +(adj)|blistering|red-hot|fast +(adj)|wanted +(adj)|skilled +(adj)|gingery|peppery|spicy|pungent +(adj)|popular +(adj)|unpleasant +(adj)|red-hot|new +(adj)|lucky +(adj)|good +(adj)|fresh +(adj)|fast +(adj)|eager +(adj)|warm|near |close +(adj)|radioactive +(adj)|live|charged +(adj)|active +hot-air balloon|1 +(noun)|balloon +hot-blooded|1 +(adj)|emotional +hot-fudge sauce|1 +(noun)|fudge sauce|chocolate sauce|chocolate syrup +hot-rock penstemon|1 +(noun)|Penstemon deustus|wildflower|wild flower +hot-rod|2 +(noun)|hot rod|car|auto|automobile|machine|motorcar +(noun)| +hot-tempered|1 +(adj)|choleric|irascible|hotheaded|quick-tempered|short|short-tempered|ill-natured +hot-water bag|1 +(noun)|hot-water bottle|receptacle +hot-water bottle|1 +(noun)|hot-water bag|receptacle +hot-water heater|1 +(noun)|water heater|hot-water tank|heater|warmer|tank|storage tank +hot-water tank|1 +(noun)|water heater|hot-water heater|heater|warmer|tank|storage tank +hot-wire|1 +(verb)|start|start up +hot-work steel|1 +(noun)|high-speed steel|tool steel +hot air|2 +(noun)|air +(noun)|palaver|empty words|empty talk|rhetoric|nonsense|bunk|nonsensicality|meaninglessness|hokum +hot and bothered|1 +(adj)|flustered|perturbed|rattled|discomposed +hot cake|2 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|cake +(noun)| +hot cereal|1 +(noun)|cereal +hot chocolate|1 +(noun)|cocoa|chocolate|drinking chocolate|beverage|drink|drinkable|potable +hot cross bun|1 +(noun)|cross bun|sweet roll|coffee roll +hot dog|4 +(noun)|hotdog|exhibitionist|show-off +(noun)|hotdog|red hot|sandwich +(noun)|frank|frankfurter|hotdog|dog|wiener|wienerwurst|weenie|sausage +(noun)| +hot flash|1 +(noun)|flush|symptom +hot issue|1 +(noun)|hot stock|stock +hot jazz|1 +(noun)|jazz +hot line|1 +(noun)|telephone line|phone line|telephone circuit|subscriber line|line +hot pad|2 +(noun)|table mat|pad +(noun)|heating pad|heater|warmer +hot pants|2 +(noun)|horniness|hotness|sexual arousal +(noun)|short pants|shorts|trunks +hot pepper|2 +(noun)|tabasco pepper|tabasco plant|Capsicum frutescens|capsicum|pepper|capsicum pepper plant +(noun)|pepper +hot plate|2 +(noun)|hotplate|kitchen appliance +(noun)| +hot pot|2 +(noun)|hotpot|stew +(noun)| +hot potato|1 +(noun)|situation +hot rod|2 +(noun)|hot-rod|car|auto|automobile|machine|motorcar +(noun)| +hot sauce|1 +(noun)|sauce +hot seat|2 +(noun)|electric chair|chair|death chair|instrument of execution +(noun)|position|post|berth|office|spot|billet|place|situation +hot spell|1 +(noun)|while|piece|spell|patch +hot spot|4 +(noun)|hotspot|geographical area|geographic area|geographical region|geographic region +(noun)|hotspot|point +(noun)|hotspot|spot +(noun)| +hot spring|1 +(noun)|thermal spring|spring|fountain|outflow|outpouring|natural spring +hot springs|2 +(noun)|Hot Springs|town +(noun)|hot spring|thermal spring|spring|fountain|outflow|outpouring|natural spring +hot springs national park|1 +(noun)|Hot Springs National Park|national park +hot stock|1 +(noun)|hot issue|stock +hot stuff|2 +(noun)|quality +(noun)|popularity +hot stuffed tomato|1 +(noun)|stuffed tomato|dish +hot toddy|1 +(noun)|toddy|mixed drink +hot tub|1 +(noun)|bathtub|bathing tub|bath|tub +hot under the collar|1 +(adj)|angry +hot up|3 +(verb)|heat|heat up|change state|turn +(verb)|heat up|screw up|intensify|compound|heighten|deepen +(verb)|soup up|hop up|modify +hot war|1 +(noun)|war|warfare +hot water|1 +(noun)|predicament|quandary|plight +hot water plant|1 +(noun)|achimenes|flower +hot weather|1 +(noun)|weather|weather condition|atmospheric condition +hotbed|2 +(noun)|situation|state of affairs +(noun)|bed +hotbox|1 +(noun)|journal bearing +hotcake|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hot cake|cake +hotchpotch|2 +(noun)|odds and ends|oddments|melange|farrago|ragbag|hodgepodge|mishmash|mingle-mangle|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|stew +hotdog|3 +(noun)|hot dog|exhibitionist|show-off +(noun)|hot dog|red hot|sandwich +(noun)|frank|frankfurter|hot dog|dog|wiener|wienerwurst|weenie|sausage +hotdog bun|1 +(noun)|frankfurter bun|bun|roll +hotei|1 +(noun)|Hotei|Japanese deity +hotei-chiku|1 +(noun)|fishpole bamboo|gosan-chiku|Phyllostachys aurea|bamboo +hotel|1 +(noun)|building|edifice +hotel-casino|2 +(noun)|casino-hotel|place of business|business establishment +(noun)|casino-hotel|building|edifice +hotel bill|1 +(noun)|bill|account|invoice +hotel clerk|1 +(noun)|desk clerk|hotel desk clerk|clerk +hotel desk clerk|1 +(noun)|desk clerk|hotel clerk|clerk +hotel detective|1 +(noun)|house detective|house dick|private detective|PI|private eye|private investigator|operative|shamus|sherlock +hotel manager|1 +(noun)|hotelier|hotelkeeper|hotelman|hosteller|administrator|decision maker +hotel occupancy|1 +(noun)|occupancy rate +hotel plan|1 +(noun)|meal plan|design|plan +hotel room|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +hotelier|1 +(noun)|hotelkeeper|hotel manager|hotelman|hosteller|administrator|decision maker +hotelkeeper|1 +(noun)|hotelier|hotel manager|hotelman|hosteller|administrator|decision maker +hotelman|1 +(noun)|hotelier|hotelkeeper|hotel manager|hosteller|administrator|decision maker +hotfoot|1 +(verb)|rush|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +hoth|1 +(noun)|Hoth|Hothr|Hoder|Hodr|Norse deity +hothead|2 +(noun)|fire-eater|grouch|grump|crank|churl|crosspatch +(noun)|daredevil|madcap|swashbuckler|lunatic|harum-scarum|adventurer|venturer +hotheaded|2 +(adj)|choleric|irascible|hot-tempered|quick-tempered|short|short-tempered|ill-natured +(adj)|impulsive|impetuous|madcap|tearaway|brainish|incautious +hothouse|1 +(noun)|conservatory|indoor garden|greenhouse|nursery|glasshouse +hothr|1 +(noun)|Hoth|Hothr|Hoder|Hodr|Norse deity +hotly|1 +(adv)|heatedly +hotness|3 +(noun)|heat|high temperature|temperature +(noun)|horniness|hot pants|sexual arousal +(noun)|pepperiness|spiciness|spice|spicery +hotplate|1 +(noun)|hot plate|kitchen appliance +hotpot|1 +(noun)|hot pot|stew +hotshot|1 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|star|superstar|whiz|whizz|wizard|wiz|expert +hotspot|3 +(noun)|hot spot|geographical area|geographic area|geographical region|geographic region +(noun)|hot spot|point +(noun)|hot spot|spot +hotspur|2 +(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier +(noun)|adventurer|venturer +hottentot|1 +(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan|Khoisan language +hottentot's bread|1 +(noun)|Hottentot bread|Hottentot's bread|root +hottentot's bread vine|1 +(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine +hottentot's fig|1 +(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent +hottentot bread|1 +(noun)|Hottentot bread|Hottentot's bread|root +hottentot bread vine|1 +(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine +hottentot fig|1 +(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent +hottish|1 +(adj)|hot +hottonia|1 +(noun)|Hottonia|genus Hottonia|dicot genus|magnoliopsid genus +hottonia inflata|1 +(noun)|water gillyflower|American featherfoil|Hottonia inflata|featherfoil|feather-foil +hottonia palustris|1 +(noun)|water violet|Hottonia palustris|featherfoil|feather-foil +houdah|1 +(noun)|howdah|seat +houdini|1 +(noun)|Houdini|Harry Houdini|Erik Weisz|sorcerer|magician|wizard|necromancer +houghton|2 +(noun)|Houghton|Henry Oscar Houghton|publisher +(noun)|Houghton|town|port of entry|point of entry +houhere|1 +(noun)|lacebark|ribbonwood|Hoheria populnea|tree +hoummos|1 +(noun)|hummus|humus|hommos|humous|spread|paste +hound|3 +(noun)|hound dog|hunting dog +(noun)|cad|bounder|blackguard|dog|heel|villain|scoundrel +(verb)|hunt|trace|chase|chase after|trail|tail|tag|give chase|dog|go after|track +hound's-tongue|2 +(noun)|Cynoglossum virginaticum|herb|herbaceous plant +(noun)|Cynoglossum officinale|herb|herbaceous plant +hound's-tooth check|1 +(noun)|houndstooth check|dogstooth check|dogs-tooth check|dog's-tooth check|check +hound dog|1 +(noun)|hound|hunting dog +houndstooth check|1 +(noun)|hound's-tooth check|dogstooth check|dogs-tooth check|dog's-tooth check|check +hour|4 +(noun)|hr|60 minutes|time unit|unit of time +(noun)|time of day|clock time|time +(noun)|time period|period of time|period +(noun)|minute|distance +hour angle|2 +(noun)|distance +(noun)|HA|angular distance +hour circle|1 +(noun)|great circle +hour hand|1 +(noun)|little hand|hand +hourglass|1 +(noun)|sandglass +houri|2 +(noun)|nymph|woman|adult female +(noun)|mythical being +hourlong|1 +(adj)|long +hourly|2 +(adj)|time unit|unit of time +(adv)|by the hour +hours|6 +(noun)|work time +(noun)|time period|period of time|period +(noun)|hour|hr|60 minutes|time unit|unit of time +(noun)|hour|time of day|clock time|time +(noun)|hour|time period|period of time|period +(noun)|hour|minute|distance +housatonic|1 +(noun)|Housatonic|Housatonic River|river +housatonic river|1 +(noun)|Housatonic|Housatonic River|river +house|14 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house|building|edifice +(noun)|legislature|legislative assembly|general assembly|law-makers +(noun)|building|edifice +(noun)|family|household|home|menage|unit|social unit +(noun)|theater|theatre|building|edifice +(noun)|firm|business firm|business|concern|business concern|business organization|business organisation +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|phratry +(noun)|community +(noun)|audience +(noun)|play|child's play +(noun)|sign of the zodiac|star sign|sign|mansion|planetary house|region|part +(noun)|management +(verb)|accommodate|hold|admit +(verb)|put up|domiciliate|shelter +house-builder|2 +(noun)|homebuilder|home-builder|housebuilder|builder|constructor +(noun)| +house-proud|1 +(adj)|proud +house-raising|1 +(noun)|construction|building +house-to-house|1 +(adj)|door-to-door|comprehensive +house-trained|1 +(adj)|housebroken|trained +house agent|1 +(noun)|realtor|real estate broker|real estate agent|estate agent|land agent|agent|factor|broker +house arrest|1 +(noun)|confinement +house cat|1 +(noun)|domestic cat|Felis domesticus|Felis catus|cat|true cat +house centipede|1 +(noun)|Scutigera coleoptrata|centipede +house decorator|1 +(noun)|interior designer|designer|interior decorator|room decorator|decorator|specialist|specializer|specialiser +house detective|1 +(noun)|hotel detective|house dick|private detective|PI|private eye|private investigator|operative|shamus|sherlock +house dick|1 +(noun)|hotel detective|house detective|private detective|PI|private eye|private investigator|operative|shamus|sherlock +house finch|1 +(noun)|linnet|Carpodacus mexicanus|finch +house guest|2 +(noun)|houseguest|guest|invitee +(noun)| +house husband|1 +(noun)|husband|hubby|married man +house martin|1 +(noun)|Delichon urbica|martin +house mouse|1 +(noun)|Mus musculus|mouse +house of cards|2 +(noun)|bubble|scheme|strategy +(noun)|cardhouse|card-house|cardcastle|structure|construction +house of commons|1 +(noun)|House of Commons|British House of Commons|house +house of correction|1 +(noun)|jail|jailhouse|gaol|clink|slammer +house of detention|1 +(noun)|detention home|detention house|detention camp|correctional institution +house of god|1 +(noun)|place of worship|house of prayer|house of God|house of worship|building|edifice +house of hanover|1 +(noun)|Hanover|House of Hanover|Hanoverian line|dynasty|royalty|royal family|royal line|royal house +house of ill repute|1 +(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|bawdyhouse|cathouse|sporting house|building|edifice +house of islam|1 +(noun)|Dar al-Islam|House of Islam|geographical area|geographic area|geographical region|geographic region +house of lancaster|1 +(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty|royalty|royal family|royal line|royal house +house of lords|1 +(noun)|House of Lords|British House of Lords|house +house of prayer|1 +(noun)|place of worship|house of God|house of worship|building|edifice +house of prostitution|1 +(noun)|whorehouse|brothel|bordello|bagnio|house of ill repute|bawdyhouse|cathouse|sporting house|building|edifice +house of representatives|1 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +house of tudor|1 +(noun)|Tudor|House of Tudor|dynasty +house of war|1 +(noun)|Dar al-harb|House of War|geographical area|geographic area|geographical region|geographic region +house of windsor|1 +(noun)|Windsor|House of Windsor|dynasty +house of worship|1 +(noun)|place of worship|house of prayer|house of God|building|edifice +house of york|1 +(noun)|York|House of York|dynasty|royalty|royal family|royal line|royal house +house organ|1 +(noun)|organ +house paint|2 +(noun)|housepaint|paint +(noun)| +house painter|1 +(noun)|painter +house painting|1 +(noun)|painting|trade|craft +house party|1 +(noun)|party +house physician|1 +(noun)|resident|resident physician|doctor|doc|physician|MD|Dr.|medico +house servant|1 +(noun)|domestic|domestic help|servant|retainer +house sitter|1 +(noun)|custodian|keeper|steward +house snake|1 +(noun)|milk snake|milk adder|checkered adder|Lampropeltis triangulum|king snake|kingsnake +house sparrow|1 +(noun)|English sparrow|Passer domesticus|sparrow|true sparrow +house trailer|1 +(noun)|trailer|wheeled vehicle +house wren|1 +(noun)|Troglodytes aedon|wren|jenny wren +houseboat|1 +(noun)|barge|flatboat|hoy|lighter +housebound|1 +(adj)|homebound|shut-in|confined +housebreak|1 +(verb)|train|develop|prepare|educate +housebreaker|2 +(noun)|cat burglar|burglar +(noun)|housewrecker|wrecker +housebreaking|1 +(noun)|break-in|breaking and entering|burglary +housebroken|1 +(adj)|house-trained|trained +housebuilder|1 +(noun)|homebuilder|home-builder|house-builder|builder|constructor +houseclean|1 +(verb)|clean house|clean|tidy|tidy up|clean up|neaten|straighten|straighten out|square away +housecleaning|2 +(noun)|reform +(noun)|cleaning|cleansing|cleanup +housecoat|1 +(noun)|negligee|neglige|peignoir|wrapper|garment +housecraft|1 +(noun)|craft|craftsmanship|workmanship +housedog|1 +(noun)|watchdog|guard dog +housefather|1 +(noun)|man|adult male +housefly|1 +(noun)|Musca domestica|fly +houseful|1 +(noun)|containerful +houseguest|1 +(noun)|house guest|guest|invitee +household|1 +(noun)|family|house|home|menage|unit|social unit +household appliance|1 +(noun)|home appliance|appliance +household arts|1 +(noun)|home economics|home ec|domestic science|social science +household linen|1 +(noun)|white goods|drygoods|soft goods +householder|1 +(noun)|homeowner|owner|possessor +housekeep|1 +(verb)|keep|maintain|hold +housekeeper|1 +(noun)|domestic|domestic help|house servant +housekeeping|1 +(noun)|housework|work +houselights|1 +(noun)|light|light source +housemaid|1 +(noun)|maid|maidservant|amah|domestic|domestic help|house servant +housemaid's knee|1 +(noun)|bursitis +houseman|1 +(noun)|intern|interne|medical intern|doctor|doc|physician|MD|Dr.|medico +housemaster|1 +(noun)|headmaster|schoolmaster|master +housemother|1 +(noun)|chaperon|chaperone +housepaint|1 +(noun)|house paint|paint +houseplant|1 +(noun)|plant|flora|plant life +houseroom|1 +(noun)|room|way|elbow room +houses of parliament|1 +(noun)|Houses of Parliament|building|edifice +housetop|1 +(noun)|roof +housewarming|1 +(noun)|party +housewife|1 +(noun)|homemaker|lady of the house|woman of the house|wife|married woman +housewifely|1 +(adj)|domestic +housewifery|1 +(noun)|work +housework|1 +(noun)|housekeeping|work +housewrecker|1 +(noun)|housebreaker|wrecker +housing|3 +(noun)|lodging|living accommodations|structure|construction +(noun)|protective covering|protective cover|protection +(noun)|caparison|trapping|trappings|housings|stable gear|saddlery|tack +housing and urban development|1 +(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department +housing commissioner|1 +(noun)|commissioner +housing development|1 +(noun)|development +housing estate|1 +(noun)|development +housing industry|1 +(noun)|construction industry|industry +housing project|1 +(noun)|public housing|housing development +housing start|1 +(noun)|beginning|start|commencement +housings|4 +(noun)|caparison|trapping|trappings|housing|stable gear|saddlery|tack +(noun)|housing|lodging|living accommodations|structure|construction +(noun)|housing|protective covering|protective cover|protection +(noun)|caparison|trapping|trappings|housing|stable gear|saddlery|tack +housman|1 +(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet +houston|2 +(noun)|Houston|city|metropolis|urban center|port +(noun)|Houston|Sam Houston|Samuel Houston|politician|politico|pol|political leader|general|full general +houttuynia|1 +(noun)|Houttuynia|genus Houttuynia|dicot genus|magnoliopsid genus +houyhnhnm|1 +(noun)|Houyhnhnm|fictional character|fictitious character|character +houyhnhnms|2 +(noun)|Houyhnhnms|imaginary place|mythical place +(noun)|Houyhnhnm|fictional character|fictitious character|character +hovea|1 +(noun)|purple pea|shrub|bush +hovel|1 +(noun)|hut|hutch|shack|shanty|shelter +hover|5 +(verb)|vibrate|vacillate|oscillate|hesitate|waver|waffle +(verb)|linger|hesitate|waver|waffle +(verb)|fly|wing +(verb)|levitate +(verb)|brood|loom|bulk large|hang +hovercraft|1 +(noun)|ground-effect machine|craft +how|1 +(adv)|however +how-d'ye-do|1 +(noun)|how-do-you-do|situation +how-do-you-do|2 +(noun)|how-d'ye-do|situation +(noun)|hello|hullo|hi|howdy|greeting|salutation +how come|1 +(adv)|why +howard|2 +(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor|histrion|player|thespian|role player +(noun)|Howard|Catherine Howard|queen +howard carter|1 +(noun)|Carter|Howard Carter|Egyptologist +howard florey|1 +(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician|pathologist +howard hughes|1 +(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist|aviator|aeronaut|airman|flier|flyer|film maker|filmmaker|film producer|movie maker +howard lindsay|1 +(noun)|Lindsay|Howard Lindsay|dramatist|playwright +howard robard hughes|1 +(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist|aviator|aeronaut|airman|flier|flyer|film maker|filmmaker|film producer|movie maker +howdah|1 +(noun)|houdah|seat +howdy|1 +(noun)|hello|hullo|hi|how-do-you-do|greeting|salutation +howe|2 +(noun)|Howe|Julia Ward Howe|suffragist +(noun)|Howe|Elias Howe|inventor|discoverer|artificer +howells|1 +(noun)|Howells|William Dean Howells|writer|author +however|2 +(adv)|nevertheless|withal|still|yet|all the same|even so|nonetheless|notwithstanding +(adv)|how +howitzer|1 +(noun)|mortar|trench mortar|high-angle gun +howl|7 +(noun)|howling|ululation|utterance|vocalization +(noun)|cry +(noun)|noise +(verb)|ululate|wail|roar|yawl|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|wrawl|yammer|yowl|utter|emit|let out|let loose +(verb)|roar|make noise|resound|noise +(verb)|roar|laugh|express joy|express mirth +howler|3 +(noun)|belly laugh|sidesplitter|thigh-slapper|scream|wow|riot|joke|gag|laugh|jest|jape +(noun)|howler monkey|New World monkey|platyrrhine +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +howler monkey|1 +(noun)|howler|New World monkey|platyrrhine +howling|3 +(adj)|crying|yelling|shouting|noisy +(adj)|fantastic|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary +(noun)|howl|ululation|utterance|vocalization +hoy|1 +(noun)|barge|flatboat|lighter|boat +hoya|1 +(noun)|vine +hoya carnosa|1 +(noun)|wax plant|Hoya carnosa|hoya +hoyden|2 +(adj)|hoydenish|tomboyish|spirited +(noun)|tomboy|romp|girl|miss|missy|young lady|young woman|fille +hoydenish|2 +(adj)|hoyden|tomboyish|spirited +(adj)|tomboyish|unwomanly +hoydenism|1 +(noun)|tomboyishness|masculinity +hoyle|2 +(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist +(noun)|Hoyle|Edmond Hoyle|writer|author +hp|1 +(noun)|horsepower|HP|H.P.|power unit +hq|1 +(noun)|headquarters|HQ|military headquarters|military installation +hr|1 +(noun)|hour|60 minutes|time unit|unit of time +hrolf|1 +(noun)|Rollo|Rolf|Hrolf|headman|tribal chief|chieftain +hrt|1 +(noun)|hormone replacement therapy|hormone-replacement therapy|HRT|therapy +hrvatska|1 +(noun)|Croatia|Republic of Croatia|Hrvatska|European country|European nation +hryvnia|1 +(noun)|Ukranian monetary unit +hs1|1 +(noun)|herpes simplex 1|HS1|HSv-1|herpes simplex|herpes simplex virus +hs2|1 +(noun)|herpes simplex 2|HS2|HSV-2|herpes simplex|herpes simplex virus +hsian|1 +(noun)|Xian|Sian|Singan|Changan|Hsian|city|metropolis|urban center +hsuan chiao|1 +(noun)|Taoism|Hsuan Chiao|religion|faith|religious belief +hsv-1|1 +(noun)|herpes simplex 1|HS1|HSv-1|herpes simplex|herpes simplex virus +hsv-2|1 +(noun)|herpes simplex 2|HS2|HSV-2|herpes simplex|herpes simplex virus +htlv-1|1 +(noun)|human T-cell leukemia virus-1|HTLV-1|retrovirus +html|1 +(noun)|hypertext markup language|hypertext mark-up language|HTML|markup language +http|1 +(noun)|hypertext transfer protocol|HTTP|protocol|communications protocol +hua|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +huainaputina|1 +(noun)|Huainaputina|volcano +hualapai|2 +(noun)|Walapai|Hualapai|Hualpai|Hokan|Hoka +(noun)|Walapai|Hualapai|Hualpai|Yuman +hualpai|2 +(noun)|Walapai|Hualapai|Hualpai|Hokan|Hoka +(noun)|Walapai|Hualapai|Hualpai|Yuman +huamachil|1 +(noun)|manila tamarind|camachile|wild tamarind|Pithecellobium dulce|tree +huang he|1 +(noun)|Huang He|Hwang Ho|Yellow River|river +huarache|1 +(noun)|huaraches|sandal +huaraches|2 +(noun)|huarache|sandal +(noun)|huarache|sandal +huascaran|1 +(noun)|Huascaran|mountain peak +huayna capac|1 +(noun)|Huayna Capac|Inca +hub|2 +(noun)|part|portion +(noun)|center|centre|middle|heart|eye +hub-and-spoke|1 +(noun)|hub-and-spoke system|air transportation system +hub-and-spoke system|1 +(noun)|hub-and-spoke|air transportation system +hub of the universe|1 +(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital +hubbard|2 +(noun)|Hubbard|L. Ron Hubbard|writer|author +(noun)|Hubbard|Mount Hubbard|mountain peak +hubbard squash|2 +(noun)|Cucurbita maxima|winter squash|winter squash plant +(noun)|winter squash +hubble|1 +(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist +hubble's constant|1 +(noun)|Hubble's constant|Hubble constant|constant +hubble's law|1 +(noun)|Hubble's law|Hubble law|law|law of nature +hubble-bubble|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubbly-bubbly|pipe|tobacco pipe +hubble constant|1 +(noun)|Hubble's constant|Hubble constant|constant +hubble law|1 +(noun)|Hubble's law|Hubble law|law|law of nature +hubbly-bubbly|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|pipe|tobacco pipe +hubbub|1 +(noun)|uproar|brouhaha|katzenjammer|noise +hubby|1 +(noun)|husband|married man|spouse|partner|married person|mate|better half +hubcap|1 +(noun)|cap +hubel|1 +(noun)|Hubel|David Hubel|neuroscientist +hubris|1 +(noun)|arrogance|haughtiness|hauteur|highhandedness|lordliness +huck|1 +(noun)|huckaback|toweling|towelling +huck finn|1 +(noun)|Huckleberry Finn|Huck Finn|fictional character|fictitious character|character +huckaback|1 +(noun)|huck|toweling|towelling +huckleberry|3 +(noun)|blueberry|blueberry bush +(noun)|shrub|bush +(noun)|berry +huckleberry finn|1 +(noun)|Huckleberry Finn|Huck Finn|fictional character|fictitious character|character +huckleberry oak|1 +(noun)|Quercus vaccinifolia|shrub|bush +huckster|4 +(noun)|cheap-jack|seller|marketer|vender|vendor|trafficker +(noun)|advertiser|advertizer|adman +(verb)|peddle|monger|hawk|vend|pitch|deal|sell|trade +(verb)|haggle|higgle|chaffer|dicker|bargain +hud|1 +(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department +huddie leadbetter|1 +(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player|composer +huddle|4 +(noun)|powwow|conference|group discussion +(noun)|crowd +(verb)|huddle together|cluster|constellate|flock|clump +(verb)|cower|crouch|stoop|bend|bow +huddle together|1 +(verb)|huddle|cluster|constellate|flock|clump +huddled|2 +(adj)|crouched|crouching|hunkered|hunkered down|unerect +(adj)|crowded +huddler|2 +(noun)|member +(noun)|person|individual|someone|somebody|mortal|human|soul +hudood|1 +(noun)|hudud|shariah|shariah law|sharia|sharia law|Islamic law +hudson|3 +(noun)|Hudson|Hudson River|river +(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist|natural scientist +(noun)|Hudson|Henry Hudson|navigator +hudson bay|1 +(noun)|Hudson Bay|sea +hudson bay collared lemming|1 +(noun)|Hudson bay collared lemming|Dicrostonyx hudsonius|pied lemming +hudson hoagland|1 +(noun)|Hoagland|Hudson Hoagland|physiologist +hudson river|1 +(noun)|Hudson|Hudson River|river +hudson river school|1 +(noun)|Hudson River school|romantic realism|artistic movement|art movement +hudson seal|1 +(noun)|muskrat +hudsonia|1 +(noun)|Hudsonia|genus Hudsonia|dilleniid dicot genus +hudsonia ericoides|1 +(noun)|false heather|golden heather|Hudsonia ericoides|subshrub|suffrutex +hudsonia tomentosa|1 +(noun)|beach heather|poverty grass|Hudsonia tomentosa|subshrub|suffrutex +hudsonian godwit|1 +(noun)|Hudsonian godwit|Limosa haemastica|godwit +hudud|1 +(noun)|hudood|shariah|shariah law|sharia|sharia law|Islamic law +hue|3 +(noun)|chromaticity|color property +(verb)|change|alter|modify +(verb)|imbue|tinge|dye +hue and cry|1 +(noun)|clamor|clamoring|clamour|clamouring|cry|outcry|call|yell|shout|vociferation +hueless|1 +(adj)|achromatic +huff|3 +(noun)|miff|seeing red|irritation|annoyance|vexation|botheration +(verb)|snort|inhale|inspire|breathe in +(verb)|puff|chuff|blow +huffiness|1 +(noun)|anger|choler|ire +huffing|2 +(adj)|puffing|puffy|breathing |eupneic|eupnoeic +(noun)|puffing|snorting|exhalation|expiration|breathing out +huffish|1 +(adj)|sulky|ill-natured +huffishness|1 +(noun)|sulkiness|resentment|bitterness|gall|rancor|rancour +huffy|2 +(adj)|thin-skinned|touchy|sensitive +(adj)|mad|sore|angry +hug|3 +(noun)|clinch|squeeze|embrace|embracing +(verb)|embrace|bosom|squeeze|clasp +(verb)|touch|adjoin|meet|contact +hug-me-tight|1 +(noun)|jacket +hug drug|1 +(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|methylenedioxymethamphetamine|MDMA +huge|1 +(adj)|immense|vast|Brobdingnagian|large +hugely|1 +(adv)|enormously|tremendously|staggeringly +hugger|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +hugger-mugger|3 +(adj)|disorderly|higgledy-piggledy|jumbled|topsy-turvy|untidy +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hush-hush|on the quiet|secret|surreptitious|undercover|underground|covert +(noun)|mumbo jumbo|confusion +hugger mugger|1 +(verb)|act|behave|do +hugging|1 +(noun)|caressing|cuddling|fondling|kissing|necking|petting|smooching|snuggling|foreplay|arousal|stimulation +huggins|1 +(noun)|Huggins|Sir William Huggins|astronomer|uranologist|stargazer +hugh capet|1 +(noun)|Capet|Hugh Capet|King of France +hugh dowding|1 +(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general|full general|marshal|marshall +hughes|4 +(noun)|Hughes|Ted Hughes|Edward James Hughes|poet +(noun)|Hughes|Langston Hughes|James Langston Hughes|writer|author +(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist|aviator|aeronaut|airman|flier|flyer|film maker|filmmaker|film producer|movie maker +(noun)|Hughes|Charles Evans Hughes|jurist|legal expert +hugo|1 +(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet|novelist|dramatist|playwright +hugo alvar henrik aalto|1 +(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect|designer +hugo de vries|1 +(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist|phytologist|plant scientist +hugo devries|1 +(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist|phytologist|plant scientist +hugo junkers|1 +(noun)|Junkers|Hugo Junkers|engineer|applied scientist|technologist +hugo von hoffmannsthal|1 +(noun)|Hoffmannsthal|Hugo von Hoffmannsthal|poet +hugo wolf|1 +(noun)|Wolf|Hugo Wolf|composer +hugoesque|1 +(adj)|Hugoesque|poet|novelist|dramatist|playwright +hugueninia|1 +(noun)|Hugueninia|genus Hugueninia|dilleniid dicot genus +hugueninia tanacetifolia|1 +(noun)|tansy-leaved rocket|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb|herbaceous plant +huguenot|1 +(noun)|Huguenot|Calvinist +huisache|1 +(noun)|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia +huitre|1 +(noun)|oyster|shellfish +huji|1 +(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization|terrorist group|foreign terrorist organization|FTO +hula|1 +(noun)|hula-hula|Hawaiian dancing|rain dance +hula-hoop|1 +(noun)|plaything|toy +hula-hula|1 +(noun)|hula|Hawaiian dancing|rain dance +huldreich zwingli|1 +(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian|theologist|theologizer|theologiser +hulk|3 +(noun)|giant|heavyweight|whale|large person +(noun)|ship +(verb)|loom|tower|predominate|rise|lift|rear +hulking|1 +(adj)|hulky|large +hulky|1 +(adj)|hulking|large +hull|7 +(noun)|husk +(noun)|calyx +(noun)|Hull|Isaac Hull|naval officer +(noun)|Hull|Cordell Hull|diplomat|diplomatist +(noun)|Hull|Kingston-upon Hull|city|metropolis|urban center|port +(noun)|structure|construction +(verb)|remove|take|take away|withdraw +hullabaloo|1 +(noun)|agitation|excitement|turmoil|upheaval|disturbance +hullo|1 +(noun)|hello|hi|howdy|how-do-you-do|greeting|salutation +hulsea|1 +(noun)|Hulsea|genus Hulsea|asterid dicot genus +hulsea algida|1 +(noun)|alpine gold|alpine hulsea|Hulsea algida|wildflower|wild flower +hulsea nana|1 +(noun)|dwarf hulsea|Hulsea nana|wildflower|wild flower +hum|7 +(noun)|busyness|action|activity|activeness +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|humming|noise +(verb)|sing +(verb)|buzz|seethe|be +(verb)|thrum|sound|go +(verb)|make noise|resound|noise +human|5 +(adj)|quality +(adj)|organism|being|causal agent|cause|causal agency +(adj)|human |anthropoid|manlike|anthropomorphic|anthropomorphous|humanlike|earthborn|fallible|frail|imperfect|weak|hominal|hominian|hominid|hominine +(noun)|person|individual|someone|somebody|mortal|soul|organism|being|causal agent|cause|causal agency +(noun)|homo|man|human being|hominid +human-centered|1 +(adj)|human-centred|humanist|humanistic|humanitarian|humane +human-centred|1 +(adj)|human-centered|humanist|humanistic|humanitarian|humane +human action|1 +(noun)|act|human activity +human activity|1 +(noun)|act|human action +human being|1 +(noun)|homo|man|human|hominid +human beings|2 +(noun)|world|human race|humanity|humankind|humans|mankind|man|group|grouping +(noun)|homo|man|human being|human|hominid +human body|1 +(noun)|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +human botfly|1 +(noun)|Dermatobia hominis|botfly +human chorionic gonadotrophin|1 +(noun)|human chorionic gonadotropin|HCG|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +human chorionic gonadotropin|1 +(noun)|human chorionic gonadotrophin|HCG|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +human death|1 +(noun)|fatality|death|decease +human dynamo|1 +(noun)|powerhouse|ball of fire|fireball|actor|doer|worker +human ecology|1 +(noun)|demography|sociology +human face|1 +(noun)|face|external body part +human foot|1 +(noun)|foot|pes|vertebrate foot|pedal extremity +human gamma globulin|1 +(noun)|gamma globulin|plasma protein|globulin +human genome project|1 +(noun)|Human Genome Project|scientific research|research project +human growth hormone|1 +(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|growth hormone|hormone|endocrine|internal secretion +human head|1 +(noun)|head|caput +human immunodeficiency virus|1 +(noun)|HIV|retrovirus +human language technology|1 +(noun)|natural language processing|NLP|information science|informatics|information processing|IP +human nature|1 +(noun)|attribute +human palaeontology|1 +(noun)|paleoanthropology|palaeoanthropology|human paleontology|anthropology|vertebrate paleontology +human paleontology|1 +(noun)|paleoanthropology|palaeoanthropology|human palaeontology|anthropology|vertebrate paleontology +human papilloma virus|1 +(noun)|papovavirus +human process|1 +(noun)|process +human race|1 +(noun)|world|humanity|humankind|human beings|humans|mankind|man|group|grouping +human relationship|1 +(noun)|relationship|relation +human remains pouch|1 +(noun)|body bag|personnel pouch|bag +human reproductive cloning|1 +(noun)|reproductive cloning +human right|1 +(noun)|right +human t-cell leukemia virus-1|1 +(noun)|human T-cell leukemia virus-1|HTLV-1|retrovirus +human waste|1 +(noun)|body waste|excretion|excreta|excrement|excretory product +humane|3 +(adj)|humanist|humanistic|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(adj)|humane |compassionate|human-centered|human-centred|humanist|humanistic|humanitarian|painless|kind|merciful|civilized|civilised|human|merciful +(adj)|civilized |civilised +humaneness|1 +(noun)|quality +humanisation|1 +(noun)|humanization|improvement +humanise|1 +(verb)|humanize|change|alter|modify +humanism|3 +(noun)|humanitarianism|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|secular humanism|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|cultural movement +humanist|6 +(adj)|humanistic|cultural movement +(adj)|humanistic|doctrine|philosophy|philosophical system|school of thought|ism +(adj)|humanistic|humane|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(adj)|human-centered|human-centred|humanistic|humanitarian|humane +(noun)|scholar|scholarly person|student +(noun)|advocate|advocator|proponent|exponent +humanistic|4 +(adj)|humanist|doctrine|philosophy|philosophical system|school of thought|ism +(adj)|humanist|cultural movement +(adj)|humanist|humane|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(adj)|human-centered|human-centred|humanist|humanitarian|humane +humanistic discipline|1 +(noun)|humanities|liberal arts|arts|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +humanitarian|3 +(adj)|human-centered|human-centred|humanist|humanistic|humane +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|do-gooder|improver|benefactor|helper +humanitarianism|1 +(noun)|humanism|doctrine|philosophy|philosophical system|school of thought|ism +humanities|4 +(noun)|humanistic discipline|liberal arts|arts|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|world|human race|humanity|humankind|human beings|humans|mankind|man|group|grouping +(noun)|humanity|humaneness +(noun)|humanness|humanity|manhood|quality +humanity|3 +(noun)|world|human race|humankind|human beings|humans|mankind|man|group|grouping +(noun)|humaneness +(noun)|humanness|manhood|quality +humanization|1 +(noun)|humanisation|improvement +humanize|1 +(verb)|humanise|change|alter|modify +humankind|1 +(noun)|world|human race|humanity|human beings|humans|mankind|man|group|grouping +humanlike|1 +(adj)|anthropomorphic|anthropomorphous|human +humanness|1 +(noun)|humanity|manhood|quality +humanoid|1 +(noun)|android|mechanical man|automaton|robot|golem +humans|3 +(noun)|world|human race|humanity|humankind|human beings|mankind|man|group|grouping +(noun)|person|individual|someone|somebody|mortal|human|soul|organism|being|causal agent|cause|causal agency +(noun)|homo|man|human being|human|hominid +humate|1 +(noun)|material|stuff +humber|1 +(noun)|Humber|estuary +humber bridge|1 +(noun)|Humber Bridge|suspension bridge +humble|6 +(adj)|low|lowly|modest|small|inferior +(adj)|humble |broken|crushed|humbled|humiliated|low|meek|mild|modest|modest +(adj)|menial|lowly|unskilled +(adj)|base|baseborn|lowly|lowborn +(verb)|change|alter|modify +(verb)|humiliate|mortify|chagrin|abase|hurt|wound|injure|bruise|offend|spite +humble plant|1 +(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|action plant|Mimosa pudica|mimosa +humblebee|1 +(noun)|bumblebee|bee +humbled|1 +(adj)|broken|crushed|humiliated|low|humble +humbleness|3 +(noun)|unimportance|obscureness|obscurity +(noun)|humility|feeling +(noun)|humility|trait +humbling|1 +(adj)|demeaning|humiliating|mortifying|undignified +humbly|2 +(adv)|meekly +(adv)|meanly +humboldt|2 +(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist|philologue +(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist|natural scientist +humboldt current|1 +(noun)|Peruvian current|Humboldt current|ocean current +humbug|4 +(noun)|baloney|boloney|bilgewater|bosh|drool|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|snake oil|misrepresentation|deceit|deception +(noun)|fraud|fraudulence|dupery|hoax|put-on|trickery|chicanery|chicane|guile|wile|shenanigan +(verb)|deceive|lead on|delude|cozen +humdinger|1 +(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch +humdrum|2 +(adj)|commonplace|prosaic|unglamorous|unglamourous|unexciting +(adj)|monotonous|dull +hume|1 +(noun)|Hume|David Hume|philosopher +humectant|1 +(noun)|substance|matter +humeral veil|1 +(noun)|veil|vestment +humerus|1 +(noun)|arm bone +humic|1 +(adj)|soil|dirt +humic acid|1 +(noun)|humic substance +humic shale|1 +(noun)|shale|humate +humic substance|1 +(noun)|organic compound +humid|1 +(adj)|wet +humidify|1 +(verb)|moisturize|moisturise|moisten|wash|dampen +humidity|1 +(noun)|humidness|wetness +humidness|1 +(noun)|humidity|wetness +humification|1 +(noun)|organic process|biological process +humified|1 +(adj)|soil|dirt +humiliate|1 +(verb)|mortify|chagrin|humble|abase|hurt|wound|injure|bruise|offend|spite +humiliated|2 +(adj)|broken|crushed|humbled|low|humble +(adj)|embarrassed|mortified|ashamed +humiliating|1 +(adj)|demeaning|humbling|mortifying|undignified +humiliatingly|1 +(adv)|demeaningly +humiliation|4 +(noun)|shame|disgrace|ignominy +(noun)|chagrin|mortification|embarrassment +(noun)|mortification|case|instance|example +(noun)|abasement|degradation|debasement +humility|2 +(noun)|humbleness|trait +(noun)|humbleness|feeling +humin|1 +(noun)|humic substance +hummer|2 +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|fastball|heater|smoke|bullet|pitch|delivery +humming|2 +(noun)|hum|noise +(noun)|singing|vocalizing +humming bird's trumpet|1 +(noun)|California fuchsia|Epilobium canum canum|Zauschneria californica|shrublet +humming top|1 +(noun)|top|whirligig|teetotum|spinning top +hummingbird|1 +(noun)|apodiform bird +hummingbird moth|1 +(noun)|hawkmoth|hawk moth|sphingid|sphinx moth|moth +hummock|1 +(noun)|knoll|mound|hillock|hammock|hill +hummus|1 +(noun)|humus|hommos|hoummos|humous|spread|paste +humongous|1 +(adj)|banging|thumping|whopping|walloping|large +humor|6 +(noun)|wit|humour|witticism|wittiness|message|content|subject matter|substance +(noun)|temper|mood|humour|feeling +(noun)|humour|quality +(noun)|humour|body substance +(noun)|liquid body substance|bodily fluid|body fluid|humour|body substance +(verb)|humour|gratify|pander|indulge +humoral|1 +(adj)|body substance +humoral immune response|1 +(noun)|immune response|immune reaction|immunologic response +humoring|1 +(noun)|indulgence|indulging|pampering|gratification +humorist|1 +(noun)|humourist|entertainer +humorless|1 +(adj)|humorless |humourless|unhumorous|sobersided|po-faced|unfunny +humorlessly|1 +(adv)|humourlessly|without humor|without humour +humorous|1 +(adj)|humorous |humourous|bantering|facetious|tongue-in-cheek|buffoonish|clownish|clowlike|zany|amusing|comic|comical|funny|laughable|mirthful|risible|droll|dry|ironic|ironical|wry|farcical|ludicrous|ridiculous|Gilbertian|hilarious|screaming|uproarious|jesting|jocose|jocular|joking|killing|sidesplitting|seriocomic|seriocomical|slapstick|tragicomic|tragicomical|waggish|witty|pleasing +humorously|1 +(adv)|with humor|with humour +humorousness|1 +(noun)|jocoseness|jocosity|merriness|levity +humour|6 +(noun)|temper|mood|humor|feeling +(noun)|wit|humor|witticism|wittiness|message|content|subject matter|substance +(noun)|humor|body substance +(noun)|liquid body substance|bodily fluid|body fluid|humor|body substance +(noun)|humor|quality +(verb)|humor|gratify|pander|indulge +humourist|1 +(noun)|humorist|entertainer +humourless|1 +(adj)|humorless |unhumorous|sobersided|po-faced|unfunny +humourlessly|1 +(adv)|humorlessly|without humor|without humour +humourous|1 +(adj)|humorous |bantering|facetious|tongue-in-cheek|buffoonish|clownish|clowlike|zany|amusing|comic|comical|funny|laughable|mirthful|risible|droll|dry|ironic|ironical|wry|farcical|ludicrous|ridiculous|Gilbertian|hilarious|screaming|uproarious|jesting|jocose|jocular|joking|killing|sidesplitting|seriocomic|seriocomical|slapstick|tragicomic|tragicomical|waggish|witty|pleasing +humous|1 +(noun)|hummus|humus|hommos|hoummos|spread|paste +hump|3 +(noun)|bulge|bump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection +(verb)|hunch|hunch forward|hunch over|change posture +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +humpback|3 +(noun)|kyphosis|hunchback|spinal curvature +(noun)|hunchback|crookback|cripple +(noun)|humpback whale|Megaptera novaeangliae|baleen whale|whalebone whale +humpback whale|1 +(noun)|humpback|Megaptera novaeangliae|baleen whale|whalebone whale +humpbacked|1 +(adj)|crookback|crookbacked|humped|hunchback|hunchbacked|gibbous|kyphotic|unfit +humped|1 +(adj)|crookback|crookbacked|humpbacked|hunchback|hunchbacked|gibbous|kyphotic|unfit +humperdinck|1 +(noun)|Humperdinck|Engelbert Humperdinck|composer +humphrey bogart|1 +(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor|histrion|player|thespian|role player +humphrey davy|1 +(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist +humphrey deforest bogart|1 +(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor|histrion|player|thespian|role player +humphrey gilbert|1 +(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator +humpty dumpty|1 +(noun)|Humpty Dumpty|imaginary being|imaginary creature +humulin|1 +(noun)|recombinant human insulin|Humulin|insulin +humulus|1 +(noun)|Humulus|genus Humulus|dicot genus|magnoliopsid genus +humulus americanus|1 +(noun)|American hop|Humulus americanus|hop|hops +humulus japonicus|1 +(noun)|Japanese hop|Humulus japonicus|hop|hops +humulus lupulus|1 +(noun)|common hop|common hops|bine|European hop|Humulus lupulus|hop|hops +humus|2 +(noun)|soil|dirt +(noun)|hummus|hommos|hoummos|humous|spread|paste +hun|2 +(noun)|Hun|nomad +(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German +hunan|1 +(noun)|Hunan|Hunan province|state|province +hunan province|1 +(noun)|Hunan|Hunan province|state|province +hunch|3 +(noun)|intuition|suspicion|impression|feeling|belief|notion|opinion +(noun)|bending +(verb)|hump|hunch forward|hunch over|change posture +hunch forward|1 +(verb)|hunch|hump|hunch over|change posture +hunch over|1 +(verb)|hunch|hump|hunch forward|change posture +hunchback|3 +(adj)|crookback|crookbacked|humped|humpbacked|hunchbacked|gibbous|kyphotic|unfit +(noun)|kyphosis|humpback|spinal curvature +(noun)|humpback|crookback|cripple +hunchbacked|1 +(adj)|crookback|crookbacked|humped|humpbacked|hunchback|gibbous|kyphotic|unfit +hunched|1 +(adj)|round-backed|round-shouldered|stooped|stooping|crooked|unerect +hundred|2 +(adj)|a hundred|one hundred|100|c|cardinal +(noun)|100|C|century|one C|centred|large integer +hundred-and-eightieth|1 +(adj)|180th|ordinal +hundred-and-fifteenth|1 +(adj)|115th|ordinal +hundred-and-fifth|1 +(adj)|105th|ordinal +hundred-and-fiftieth|1 +(adj)|150th|ordinal +hundred-and-fifty-fifth|1 +(adj)|155th|ordinal +hundred-and-first|1 +(adj)|101st|ordinal +hundred-and-fortieth|1 +(adj)|140th|ordinal +hundred-and-forty-fifth|1 +(adj)|145th|ordinal +hundred-and-ninetieth|1 +(adj)|190th|ordinal +hundred-and-seventieth|1 +(adj)|170th|ordinal +hundred-and-seventy-fifth|1 +(adj)|175th|ordinal +hundred-and-sixtieth|1 +(adj)|160th|ordinal +hundred-and-sixty-fifth|1 +(adj)|165th|ordinal +hundred-and-tenth|1 +(adj)|110th|ordinal +hundred-and-thirtieth|1 +(adj)|130th|ordinal +hundred-and-thirty-fifth|1 +(adj)|135th|ordinal +hundred-and-twentieth|1 +(adj)|120th|ordinal +hundred-and-twenty-fifth|1 +(adj)|125th|ordinal +hundred-percenter|1 +(noun)|chauvinist|jingoist|jingo|flag-waver|patrioteer|patriot|nationalist +hundred and one|1 +(adj)|a hundred and one|one hundred one|101|ci|cardinal +hundred dollar bill|1 +(noun)|c-note|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +hundred thousand|2 +(adj)|a hundred thousand|cardinal +(noun)|100000|lakh|large integer +hundred years' war|1 +(noun)|Hundred Years' War|war|warfare +hundredfold|1 +(adv)|a hundred times +hundredth|3 +(adj)|centesimal|100th|ordinal +(noun)|rank +(noun)|one-hundredth|one percent|common fraction|simple fraction +hundredweight|3 +(noun)|metric hundredweight|doppelzentner|centner|metric weight unit|weight unit +(noun)|cwt|short hundredweight|centner|cental|quintal|avoirdupois unit +(noun)|cwt|long hundredweight|avoirdupois unit +hung|1 +(adj)|adorned |decorated +hung jury|1 +(noun)|jury +hungarian|3 +(adj)|Hungarian|Magyar|European country|European nation +(noun)|Hungarian|Magyar|European +(noun)|Hungarian|Magyar|Ugric|Ugrian +hungarian capital|1 +(noun)|Budapest|Hungarian capital|capital of Hungary|national capital +hungarian goulash|1 +(noun)|goulash|Hungarian goulash|gulyas|stew +hungarian grass|1 +(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail|foxtail grass +hungarian lilac|1 +(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac +hungarian monetary unit|1 +(noun)|Hungarian monetary unit|monetary unit +hungarian partridge|1 +(noun)|Hungarian partridge|gray partridge|Perdix perdix|partridge +hungarian pointer|1 +(noun)|vizla|Hungarian pointer|pointer|Spanish pointer +hungarian sauce|1 +(noun)|Hungarian sauce|paprika sauce|sauce +hungary|1 +(noun)|Hungary|Republic of Hungary|Magyarorszag|European country|European nation +hunger|5 +(noun)|hungriness|drive +(noun)|thirst|desire +(verb)|ache|smart|hurt +(verb)|crave|thirst|starve|lust|desire|want +(verb)|starve|famish|suffer|hurt +hunger march|1 +(noun)|march +hunger marcher|1 +(noun)|unemployed person +hunger strike|1 +(noun)|fast|fasting|passive resistance|nonviolent resistance|nonviolence +hungrily|1 +(adv)|ravenously +hungriness|1 +(noun)|hunger|drive +hungry|2 +(adj)|hungry |empty|empty-bellied|famished|ravenous|sharp-set|starved|esurient|peckish|supperless +(adj)|athirst|thirsty|desirous +hunk|2 +(noun)|man|adult male +(noun)|lump|part|piece +hunker|1 +(verb)|squat|crouch|scrunch|scrunch up|hunker down|sit|sit down +hunker down|3 +(verb)|squat|crouch|scrunch|scrunch up|hunker|sit|sit down +(verb)|hide|hide out +(verb)|stand pat|stand firm|hold firm|stand fast +hunkered|1 +(adj)|crouched|crouching|huddled|hunkered down|unerect +hunkered down|1 +(adj)|crouched|crouching|huddled|hunkered|unerect +hunkpapa|2 +(noun)|Hunkpapa|Sioux|Siouan +(noun)|Hunkpapa|Siouan|Siouan language +hunky-dory|1 +(adj)|all right|fine|ok|o.k.|okay|satisfactory +hunnemania fumariifolia|1 +(noun)|golden cup|Mexican tulip poppy|Hunnemania fumariifolia|poppy +hunnemannia|1 +(noun)|Hunnemannia|genus Hunnemania|dilleniid dicot genus +hunt|15 +(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite +(noun)|Hunt|Richard Morris Hunt|architect|designer +(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer|author +(noun)|hunt club|club|society|guild|gild|lodge|order +(noun)|search +(noun)|search|hunting|activity +(noun)|hunting|labor|labour|toil +(noun)|hunting|outdoor sport|field sport|blood sport +(verb)|run|hunt down|track down|capture|catch +(verb)|hound|trace|chase|chase after|trail|tail|tag|give chase|dog|go after|track +(verb)|rout out|drive out|force out|rouse +(verb)|yaw +(verb)|oscillate|vibrate +(verb)|search|seek|look for +(verb)|search|look +hunt club|1 +(noun)|hunt|club|society|guild|gild|lodge|order +hunt down|1 +(verb)|hunt|run|track down|capture|catch +hunted|1 +(adj)|afraid +hunted person|1 +(noun)|victim +hunter|3 +(noun)|huntsman|skilled worker|trained worker +(noun)|seeker|searcher|quester +(noun)|hunting watch|watch|ticker +hunter's chicken|1 +(noun)|chicken cacciatore|chicken cacciatora|chicken casserole +hunter's sauce|1 +(noun)|sauce chausseur|sauce +hunter-gatherer|1 +(noun)|savage|barbarian +hunting|3 +(noun)|hunt|outdoor sport|field sport|blood sport +(noun)|search|hunt|activity +(noun)|hunt|labor|labour|toil +hunting and gathering society|1 +(noun)|hunting and gathering tribe|tribal society +hunting and gathering tribe|1 +(noun)|hunting and gathering society|tribal society +hunting crop|1 +(noun)|riding crop|whip +hunting dog|1 +(noun)|dog|domestic dog|Canis familiaris +hunting expedition|1 +(noun)|campaign|safari|expedition +hunting ground|2 +(noun)|opportunity|chance +(noun)|area|country +hunting guide|1 +(noun)|scout|pathfinder|guide +hunting knife|1 +(noun)|knife +hunting licence|1 +(noun)|hunting license|hunting permit|game license|license|licence|permit +hunting license|1 +(noun)|hunting licence|hunting permit|game license|license|licence|permit +hunting lodge|1 +(noun)|lodge|house +hunting permit|1 +(noun)|hunting license|hunting licence|game license|license|licence|permit +hunting season|1 +(noun)|season +hunting spider|1 +(noun)|wolf spider|spider +hunting watch|1 +(noun)|hunter|watch|ticker +huntingdon elm|1 +(noun)|Huntingdon elm|Ulmus hollandica vegetata|elm|elm tree +huntingdon willow|1 +(noun)|white willow|Huntingdon willow|Salix alba|willow|willow tree +huntington|3 +(noun)|Huntington|Samuel Huntington|American Revolutionary leader +(noun)|Huntington|Collis Potter Huntington|businessman|man of affairs +(noun)|Huntington|city|metropolis|urban center +huntington's chorea|1 +(noun)|Huntington's chorea|Huntington's disease|chorea|autosomal dominant disease|autosomal dominant disorder|monogenic disorder|monogenic disease +huntington's disease|1 +(noun)|Huntington's chorea|Huntington's disease|chorea|autosomal dominant disease|autosomal dominant disorder|monogenic disorder|monogenic disease +huntress|1 +(noun)|hunter|huntsman +huntsman|1 +(noun)|hunter|skilled worker|trained worker +huntsman's cup|1 +(noun)|common pitcher plant|huntsman's cups|Sarracenia purpurea|pitcher plant +huntsman's cups|2 +(noun)|common pitcher plant|huntsman's cup|Sarracenia purpurea|pitcher plant +(noun)|common pitcher plant|huntsman's cup|Sarracenia purpurea|pitcher plant +huntsman's horn|1 +(noun)|huntsman's horns|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant +huntsman's horns|2 +(noun)|huntsman's horn|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant +(noun)|huntsman's horn|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant +huntsville|1 +(noun)|Huntsville|city|metropolis|urban center +huon pine|1 +(noun)|Lagarostrobus franklinii|Dacrydium franklinii|conifer|coniferous tree +hupa|2 +(noun)|Hupa|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|Hupa|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +hurdle|4 +(noun)|barrier +(noun)|obstacle|obstruction +(noun)|vault|jump|jumping +(verb)|vault|overleap +hurdle race|1 +(noun)|hurdles|hurdling|track event +hurdler|1 +(noun)|athlete|jock +hurdles|4 +(noun)|hurdling|hurdle race|track event +(noun)|hurdle|barrier +(noun)|hurdle|obstacle|obstruction +(noun)|vault|hurdle|jump|jumping +hurdling|1 +(noun)|hurdles|hurdle race|track event +hurdy gurdy|1 +(noun)|barrel organ|grind organ|hand organ|street organ|musical instrument|instrument +hurl|4 +(noun)|cast|throw +(verb)|hurtle|cast|throw +(verb)|lunge|hurtle|thrust|move +(verb)|throw|express|verbalize|verbalise|utter|give tongue to +hurler|1 +(noun)|pitcher|twirler|thrower|ballplayer|baseball player +hurler's disease|1 +(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis|monogenic disorder|monogenic disease +hurler's syndrome|1 +(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis|monogenic disorder|monogenic disease +hurling|2 +(adj)|moving +(noun)|field game +hurly burly|1 +(noun)|disturbance|disruption|commotion|stir|flutter|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +hurok|1 +(noun)|Hurok|Sol Hurok|Solomon Hurok|showman|promoter|impresario +huron|1 +(noun)|Lake Huron|Huron|lake +hurrah|2 +(noun)|hooray|cheer +(verb)|shout|shout out|cry|call|yell|scream|holler|hollo|squall +hurricane|1 +(noun)|cyclone +hurricane deck|1 +(noun)|hurricane roof|promenade deck|awning deck|deck +hurricane lamp|1 +(noun)|hurricane lantern|tornado lantern|storm lantern|storm lamp|lamp +hurricane lantern|1 +(noun)|hurricane lamp|tornado lantern|storm lantern|storm lamp|lamp +hurricane roof|1 +(noun)|hurricane deck|promenade deck|awning deck|deck +hurried|1 +(adj)|hurried |flying|quick|fast|hasty|headlong|hasty|overhasty|precipitate|precipitant|precipitous|helter-skelter|pell-mell|rush|rushed|fast +hurriedly|1 +(adv)|hastily|in haste +hurriedness|1 +(noun)|haste|hastiness|hurry|precipitation|speed|swiftness|fastness +hurry|6 +(noun)|haste|urgency +(noun)|haste|hastiness|hurriedness|precipitation|speed|swiftness|fastness +(noun)|haste|rush|rushing|motion|movement|move +(verb)|travel rapidly|speed|zip|travel|go|move|locomote +(verb)|rush|hasten|look sharp|festinate|act|move +(verb)|rush|urge|urge on|press|exhort +hurrying|2 +(adj)|scurrying|fast +(noun)|speed|speeding|motion|movement|move +hurt|14 +(adj)|wounded|injured +(adj)|weakened|damaged +(noun)|injury|harm|trauma|ill health|unhealthiness|health problem +(noun)|distress|suffering|pain|painfulness +(noun)|suffering|pain|painfulness +(noun)|detriment|damage|harm|impairment +(noun)|damage|harm|scathe|change of integrity +(verb)|ache|smart|cause to be perceived +(verb)|indispose +(verb)|pain|anguish|upset|discompose|untune|disconcert|discomfit +(verb)|injure|damage +(verb)|wound|injure|bruise|offend|spite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|ache|suffer|perceive|comprehend +(verb)|suffer|be +hurtful|2 +(adj)|unkind +(adj)|deleterious|injurious|harmful +hurting|1 +(noun)|pain|symptom +hurtle|3 +(verb)|travel|go|move|locomote +(verb)|lunge|hurl|thrust|move +(verb)|hurl|cast|throw +hurtling|1 +(adj)|moving +hus|1 +(noun)|Huss|John Huss|Hus|Jan Hus|reformer|reformist|crusader|meliorist +husain|2 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king|male monarch +husayn|2 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king|male monarch +husband|2 +(noun)|hubby|married man|spouse|partner|married person|mate|better half +(verb)|conserve|economize|economise|save|preserve +husband-wife privilege|1 +(noun)|marital communications privilege|privilege +husbandly|2 +(adj)|husbandly +(adj)|domestic +husbandman|1 +(noun)|farmer|granger|sodbuster|creator +husbandry|1 +(noun)|farming|agriculture|cultivation +hush|6 +(noun)|stillness|still|silence|quiet +(verb)|change +(verb)|quieten|silence|still|shut up|hush up|suppress|stamp down|inhibit|subdue|conquer|curb|hush up +(verb)|quieten|quiet|quiesce|quiet down|pipe down|change intensity +(verb)|wash|lave +(verb)|water|irrigate +hush-hush|1 +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|on the quiet|secret|surreptitious|undercover|underground|covert +hush money|1 +(noun)|bribe|payoff +hush puppy|2 +(noun)|hushpuppy|cornbread +(noun)| +hush up|2 +(verb)|whitewash|gloss over|sleek over|cover|cover up +(verb)|hush|quieten|silence|still|shut up|suppress|stamp down|inhibit|subdue|conquer|curb +hushed|1 +(adj)|muted|subdued|quiet|soft +hushed-up|1 +(adj)|suppressed +hushpuppy|1 +(noun)|hush puppy|cornbread +husk|3 +(noun)|chaff|shuck|stalk|straw|stubble|plant material +(noun)|sheath|case +(verb)|shell|remove|take|take away|withdraw +husk tomato|2 +(noun)|ground cherry|herb|herbaceous plant +(noun)|tomatillo|Mexican husk tomato|solanaceous vegetable +huskily|1 +(adv)|hoarsely +huskiness|2 +(noun)|ruggedness|toughness|strength +(noun)|gruffness|hoarseness|harshness|roughness +husking|1 +(noun)|denudation|stripping|uncovering|baring|removal|remotion +husking bee|1 +(noun)|cornhusking|bee +husky|3 +(adj)|beefy|burly|strapping|buirdly|robust +(adj)|gruff|hoarse|cacophonous |cacophonic +(noun)|Eskimo dog|working dog +huss|1 +(noun)|Huss|John Huss|Hus|Jan Hus|reformer|reformist|crusader|meliorist +hussar|1 +(noun)|cavalryman|trooper +hussar monkey|1 +(noun)|patas|Erythrocebus patas|Old World monkey|catarrhine +hussein|2 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king|male monarch +husserl|1 +(noun)|Husserl|Edmund Husserl|philosopher +hussite|1 +(noun)|Hussite|disciple|adherent +hussy|1 +(noun)|adulteress|fornicatress|jade|loose woman|slut|strumpet|trollop|adulterer|fornicator +hustings|1 +(noun)|campaigning|candidacy|candidature|electioneering|political campaign +hustle|5 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|sting|flimflam|swindle|cheat|rig +(noun)|bustle|flurry|ado|fuss|stir|commotion|din|ruction|ruckus|rumpus|tumult +(verb)|move|displace +(verb)|bustle|bustle about|move +(verb)|pluck|roll|steal +hustler|2 +(noun)|streetwalker|street girl|hooker|floozy|floozie|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +(noun)|wheeler dealer|operator|opportunist|self-seeker +huston|1 +(noun)|Huston|John Huston|film maker|filmmaker|film producer|movie maker +hut|2 +(noun)|army hut|field hut|shelter +(noun)|hovel|hutch|shack|shanty|shelter +hutch|2 +(noun)|cage|coop +(noun)|hovel|hut|shack|shanty|shelter +hutchins|1 +(noun)|Hutchins|Robert Maynard Hutchins|educator|pedagogue +hutchinson|1 +(noun)|Hutchinson|Anne Hutchinson|settler|colonist +hutment|1 +(noun)|camp|encampment|cantonment|bivouac +hutton|2 +(noun)|Hutton|Sir Leonard Hutton|cricketer +(noun)|Hutton|James Hutton|geologist +hutu|1 +(noun)|Hutu|Bantu +hutzpah|1 +(noun)|chutzpa|chutzpah|crust|gall|impertinence|impudence|insolence|cheekiness|freshness +huxleian|1 +(adj)|Huxleyan|Huxleian|biologist|life scientist +huxley|3 +(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist +(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer|author +(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist|life scientist +huxleyan|1 +(adj)|Huxleyan|Huxleian|biologist|life scientist +huygens|1 +(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist +huygens' principle of superposition|1 +(noun)|principle of superposition|Huygens' principle of superposition|principle|rule +hwang ho|1 +(noun)|Huang He|Hwang Ho|Yellow River|river +hyacinth|2 +(noun)|jacinth|zircon|zirconium silicate +(noun)|liliaceous plant +hyacinth bean|1 +(noun)|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +hyacinthaceae|1 +(noun)|Hyacinthaceae|family Hyacinthaceae|liliid monocot family +hyacinthoides|1 +(noun)|Hyacinthoides|genus Hyacinthoides|liliid monocot genus +hyacinthoides nonscripta|1 +(noun)|wild hyacinth|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +hyacinthus candicans|1 +(noun)|summer hyacinth|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth +hyacinthus orientalis|1 +(noun)|common hyacinth|Hyacinthus orientalis|hyacinth +hyacinthus orientalis albulus|1 +(noun)|Roman hyacinth|Hyacinthus orientalis albulus|hyacinth +hyades|1 +(noun)|Hyades|nymph +hyaena|1 +(noun)|hyena|canine|canid +hyaena brunnea|1 +(noun)|brown hyena|strand wolf|Hyaena brunnea|hyena|hyaena +hyaena hyaena|1 +(noun)|striped hyena|Hyaena hyaena|hyena|hyaena +hyaenidae|1 +(noun)|Hyaenidae|family Hyaenidae|mammal family +hyalin|1 +(noun)|hyaline|transparent substance|translucent substance +hyaline|2 +(adj)|hyaloid|clear +(noun)|hyalin|transparent substance|translucent substance +hyaline cartilage|1 +(noun)|cartilage|gristle +hyaline membrane disease|1 +(noun)|respiratory distress syndrome|respiratory distress syndrome of the newborn|respiratory disease|respiratory illness|respiratory disorder +hyalinisation|1 +(noun)|hyalinization|condition|status +hyalinization|1 +(noun)|hyalinisation|condition|status +hyaloid|1 +(adj)|hyaline|clear +hyaloid membrane|1 +(noun)|membrane|tissue layer +hyalophora|1 +(noun)|Hyalophora|genus Hyalophora|arthropod genus +hyalophora cecropia|1 +(noun)|cecropia|cecropia moth|Hyalophora cecropia|saturniid|saturniid moth +hyaloplasm|1 +(noun)|ground substance|cytoplasm +hyaloplasmic|1 +(adj)|cytoplasm +hyalosperma|1 +(noun)|Hyalosperma|genus Hyalosperma|asterid dicot genus +hyalospongiae|1 +(noun)|Hyalospongiae|class Hyalospongiae|class +hyaluronic acid|1 +(noun)|mucopolysaccharide +hyaluronidase|1 +(noun)|spreading factor|Hyazyme|enzyme +hyazyme|1 +(noun)|hyaluronidase|spreading factor|Hyazyme|enzyme +hybanthus|1 +(noun)|Hybanthus|genus Hybanthus|dilleniid dicot genus +hybrid|4 +(adj)|crossed|interbred|intercrossed|crossbred +(noun)|loanblend|loan-blend|word +(noun)|complex|composite +(noun)|crossbreed|cross|organism|being +hybrid petunia|1 +(noun)|Petunia hybrida|petunia +hybrid tuberous begonia|1 +(noun)|Begonia tuberhybrida|tuberous begonia +hybridisation|1 +(noun)|hybridization|crossbreeding|crossing|cross|interbreeding|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +hybridise|1 +(verb)|crossbreed|cross|hybridize|interbreed|breed +hybridization|1 +(noun)|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +hybridize|1 +(verb)|crossbreed|cross|hybridise|interbreed|breed +hybridizing|1 +(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|coupling|mating|pairing|conjugation|union|sexual union +hybridoma|1 +(noun)|somatic cell|vegetative cell +hydantoin|1 +(noun)|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +hydathode|1 +(noun)|water pore|water stoma|stoma|stomate|pore +hydatid|1 +(noun)|cyst +hydatid disease|1 +(noun)|echinococcosis|hydatidosis|infestation +hydatid mole|1 +(noun)|hydatidiform mole|molar pregnancy|abnormality|abnormalcy|abnormal condition +hydatidiform mole|1 +(noun)|hydatid mole|molar pregnancy|abnormality|abnormalcy|abnormal condition +hydatidosis|1 +(noun)|echinococcosis|hydatid disease|infestation +hyderabad|2 +(noun)|Hyderabad|city|metropolis|urban center +(noun)|Hyderabad|city|metropolis|urban center +hydnaceae|1 +(noun)|Hydnaceae|family Hydnaceae|fungus family +hydnocarpus|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +hydnocarpus kurzii|1 +(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +hydnocarpus laurifolia|1 +(noun)|Hydnocarpus laurifolia|Hydnocarpus wightiana|tree +hydnocarpus oil|1 +(noun)|oil +hydnocarpus wightiana|1 +(noun)|Hydnocarpus laurifolia|Hydnocarpus wightiana|tree +hydnoraceae|1 +(noun)|Hydnoraceae|family Hydnoraceae|dicot family|magnoliopsid family +hydnum|1 +(noun)|Hydnum|genus Hydnum|fungus genus +hydra|4 +(noun)|Hydra|mythical monster|mythical creature +(noun)|Hydra|Snake|constellation +(noun)|trouble|problem +(noun)|hydrozoan|hydroid +hydralazine|1 +(noun)|Apresoline|antihypertensive|antihypertensive drug|vasodilator|vasodilative +hydramnios|1 +(noun)|abnormality|abnormalcy|abnormal condition +hydrangea|1 +(noun)|shrub|bush +hydrangea anomala|1 +(noun)|climbing hydrangea|Hydrangea anomala|hydrangea +hydrangea arborescens|1 +(noun)|wild hydrangea|Hydrangea arborescens|hydrangea +hydrangea family|1 +(noun)|Hydrangeaceae|family Hydrangeaceae|rosid dicot family +hydrangea macrophylla hortensis|1 +(noun)|hortensia|Hydrangea macrophylla hortensis|hydrangea +hydrangea paniculata|1 +(noun)|fall-blooming hydrangea|Hydrangea paniculata|hydrangea +hydrangea petiolaris|1 +(noun)|climbing hydrangea|Hydrangea petiolaris|hydrangea +hydrangeaceae|1 +(noun)|Hydrangeaceae|family Hydrangeaceae|hydrangea family|rosid dicot family +hydrant|2 +(noun)|water faucet|water tap|tap|spigot|faucet|plumbing fixture +(noun)|discharge pipe +hydrargyrum|1 +(noun)|mercury|quicksilver|Hg|atomic number 80|metallic element|metal +hydrarthrosis|1 +(noun)|inflammation|redness|rubor +hydrastis|1 +(noun)|Hydrastis|genus Hydrastis|magnoliid dicot genus +hydrastis canadensis|1 +(noun)|goldenseal|golden seal|yellow root|turmeric root|Hydrastis Canadensis|herb|herbaceous plant +hydrate|4 +(noun)|compound|chemical compound +(verb)|supply|provide|render|furnish +(verb)|change +(verb)|humidify|moisturize|moisturise +hydrated|1 +(adj)|hydrous +hydrated aluminium oxide|1 +(noun)|aluminum hydroxide|aluminium hydroxide|hydrated aluminum oxide|hydroxide|hydrated oxide +hydrated aluminum oxide|1 +(noun)|aluminum hydroxide|aluminium hydroxide|hydrated aluminium oxide|hydroxide|hydrated oxide +hydrated lime|1 +(noun)|calcium hydroxide|lime|slaked lime|calcium hydrate|caustic lime|lime hydrate|hydroxide|hydrated oxide +hydrated oxide|1 +(noun)|hydroxide|compound|chemical compound +hydration|1 +(noun)|association +hydraulic|2 +(adj)|binary compound|liquid +(adj)|mechanics +hydraulic brake|1 +(noun)|hydraulic brakes|brake system|brakes +hydraulic brake cylinder|1 +(noun)|brake cylinder|master cylinder|cylinder|piston chamber +hydraulic brakes|2 +(noun)|hydraulic brake|brake system|brakes +(noun)|hydraulic brake|brake system|brakes +hydraulic cement|1 +(noun)|Portland cement|cement +hydraulic engineering|1 +(noun)|civil engineering +hydraulic press|1 +(noun)|press|mechanical press +hydraulic pump|1 +(noun)|hydraulic ram|pump +hydraulic ram|1 +(noun)|hydraulic pump|pump +hydraulic system|1 +(noun)|mechanism +hydraulic transmission|1 +(noun)|hydraulic transmission system|transmission|transmission system|hydraulic system +hydraulic transmission system|1 +(noun)|hydraulic transmission|transmission|transmission system|hydraulic system +hydraulically|1 +(adv)|hydraulicly +hydraulicly|1 +(adv)|hydraulically +hydraulics|1 +(noun)|fluid mechanics|mechanics +hydrazine|1 +(noun)|reducing agent|reducer|reductant +hydrazo group|1 +(noun)|hydrazo radical|group|radical|chemical group +hydrazo radical|1 +(noun)|hydrazo group|group|radical|chemical group +hydrazoic acid|1 +(noun)|azoimide|hydrogen azide|HN|hydride|explosive +hydrazoite|1 +(noun)|azide +hydremia|1 +(noun)|blood disease|blood disorder +hydric|1 +(adj)|hydric |hydrophytic|hygrophytic +hydride|1 +(noun)|binary compound +hydrilla|1 +(noun)|Hydrilla verticillata|aquatic plant|water plant|hydrophyte|hydrophytic plant +hydrilla verticillata|1 +(noun)|hydrilla|Hydrilla verticillata|aquatic plant|water plant|hydrophyte|hydrophytic plant +hydriodic acid|1 +(noun)|acid +hydrobates|1 +(noun)|Hydrobates|genus Hydrobates|bird genus +hydrobates pelagicus|1 +(noun)|stormy petrel|northern storm petrel|Hydrobates pelagicus|storm petrel +hydrobatidae|1 +(noun)|Hydrobatidae|family Hydrobatidae|bird family +hydrobromic acid|1 +(noun)|acid +hydrocarbon|1 +(noun)|organic compound +hydrocele|1 +(noun)|disorder|upset +hydrocephalic|1 +(adj)|abnormality|abnormalcy|abnormal condition +hydrocephalus|1 +(noun)|hydrocephaly|abnormality|abnormalcy|abnormal condition +hydrocephaly|1 +(noun)|hydrocephalus|abnormality|abnormalcy|abnormal condition +hydrocharidaceae|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family|liliopsid family +hydrocharis|1 +(noun)|Hydrocharis|genus Hydrocharis|monocot genus|liliopsid genus +hydrocharis morsus-ranae|1 +(noun)|frogbit|frog's-bit|Hydrocharis morsus-ranae|aquatic plant|water plant|hydrophyte|hydrophytic plant +hydrocharitaceae|1 +(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family|liliopsid family +hydrochloric acid|1 +(noun)|acid +hydrochloride|1 +(noun)|complex|coordination compound +hydrochlorofluorocarbon|1 +(noun)|HCFC|chlorofluorocarbon|CFC +hydrochlorothiazide|1 +(noun)|Esidrix|HydroDIURIL|thiazide +hydrochoeridae|1 +(noun)|Hydrochoeridae|family Hydrochoeridae|mammal family +hydrochoerus|1 +(noun)|Hydrochoerus|genus Hydrochoerus|mammal genus +hydrochoerus hydrochaeris|1 +(noun)|capybara|capibara|Hydrochoerus hydrochaeris|rodent|gnawer|gnawing animal +hydrocolloid|1 +(noun)|substance|matter +hydrocortisone|1 +(noun)|cortisol|Hydrocortone|Cortef|corticosteroid|corticoid|adrenal cortical steroid +hydrocortone|1 +(noun)|hydrocortisone|cortisol|Hydrocortone|Cortef|corticosteroid|corticoid|adrenal cortical steroid +hydrocracking|1 +(noun)|cracking +hydrocyanic acid|1 +(noun)|prussic acid|acid +hydrodamalis|1 +(noun)|Hydrodamalis|genus Hydrodamalis|mammal genus +hydrodamalis gigas|1 +(noun)|Steller's sea cow|Hydrodamalis gigas|sea cow|sirenian mammal|sirenian +hydrodiuril|1 +(noun)|hydrochlorothiazide|Esidrix|HydroDIURIL|thiazide +hydrodynamic|1 +(adj)|fluid mechanics|hydraulics +hydrodynamics|1 +(noun)|hydrokinetics|fluid mechanics|hydraulics +hydroelectric|1 +(adj)|electricity +hydroelectric turbine|1 +(noun)|turbine +hydroelectricity|1 +(noun)|electricity +hydroflumethiazide|1 +(noun)|thiazide +hydrofluoric acid|1 +(noun)|acid +hydrofluorocarbon|1 +(noun)|HFC|fluorocarbon|greenhouse gas|greenhouse emission +hydrofluosilicic acid|1 +(noun)|fluosilicic acid|acid +hydrofoil|2 +(noun)|foil|device +(noun)|hydroplane|speedboat +hydrogel|1 +(noun)|gel|colloidal gel +hydrogen|1 +(noun)|H|atomic number 1|chemical element|element|gas +hydrogen-bomb|1 +(verb)|bombard|bomb +hydrogen atom|1 +(noun)|atom +hydrogen azide|1 +(noun)|hydrazoic acid|azoimide|HN|hydride|explosive +hydrogen bomb|1 +(noun)|H-bomb|fusion bomb|thermonuclear bomb|nuclear weapon|bomb +hydrogen bond|1 +(noun)|chemical bond|bond +hydrogen bromide|1 +(noun)|bromide +hydrogen carbonate|1 +(noun)|bicarbonate|carbonate +hydrogen chloride|1 +(noun)|acid +hydrogen cyanide|1 +(noun)|compound|chemical compound +hydrogen fluoride|1 +(noun)|fluoride +hydrogen iodide|1 +(noun)|iodide +hydrogen ion|1 +(noun)|proton|cation +hydrogen ion concentration|1 +(noun)|concentration +hydrogen peroxide|1 +(noun)|peroxide|oxide +hydrogen sulfide|1 +(noun)|sulfide|sulphide +hydrogenate|1 +(verb)|change|alter|modify +hydrogenated|1 +(adj)|change|alter|modify +hydrogenation|1 +(noun)|chemical process|chemical change|chemical action +hydrographic|1 +(adj)|hydrographical|oceanography +hydrographical|1 +(adj)|hydrographic|oceanography +hydrography|1 +(noun)|oceanography +hydroid|1 +(noun)|hydrozoan|coelenterate|cnidarian +hydroiodic acid|1 +(noun)|acid +hydrokinetic|1 +(adj)|hydrokinetic |fluid mechanics|hydraulics +hydrokinetics|1 +(noun)|hydrodynamics|fluid mechanics|hydraulics +hydrolise|1 +(verb)|hydrolize|affect|impact|bear upon|bear on|touch on|touch +hydrolith|1 +(noun)|calcium hydride|hydride +hydrolize|1 +(verb)|hydrolise|affect|impact|bear upon|bear on|touch on|touch +hydrology|1 +(noun)|geophysics|geophysical science +hydrolysate|1 +(noun)|product +hydrolyse|1 +(verb)|hydrolyze|change +hydrolysis|1 +(noun)|chemical reaction|reaction +hydrolyzable|1 +(adj)|chemical reaction|reaction +hydrolyze|1 +(verb)|hydrolyse|change +hydromancer|1 +(noun)|diviner +hydromancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +hydromantes|1 +(noun)|Hydromantes|genus Hydromantes|amphibian genus +hydromantes brunus|1 +(noun)|limestone salamander|Hydromantes brunus|web-toed salamander +hydromantes shastae|1 +(noun)|Shasta salamander|Hydromantes shastae|web-toed salamander +hydromel|1 +(noun)|beverage|drink|drinkable|potable +hydrometer|1 +(noun)|gravimeter|measuring instrument|measuring system|measuring device +hydrometric|1 +(adj)|gravimetric|measurement|measuring|measure|mensuration +hydrometry|1 +(noun)|gravimetry|measurement|measuring|measure|mensuration +hydromorphone|1 +(noun)|hydromorphone hydrochloride|Dilaudid|analgesic|anodyne|painkiller|pain pill +hydromorphone hydrochloride|1 +(noun)|hydromorphone|Dilaudid|analgesic|anodyne|painkiller|pain pill +hydromyinae|1 +(noun)|Hydromyinae|subfamily Hydromyinae|mammal family +hydromys|1 +(noun)|Hydromys|genus Hydromys|mammal genus +hydronephrosis|1 +(noun)|pathology +hydropathic|1 +(adj)|treatment +hydropathy|1 +(noun)|hydrotherapy|treatment +hydrophidae|1 +(noun)|Hydrophidae|family Hydrophidae|reptile family +hydrophilic|1 +(adj)|hydrophilic |deliquescent +hydrophobia|3 +(noun)|symptom +(noun)|simple phobia +(noun)|rabies|lyssa|madness|zoonosis|zoonotic disease +hydrophobic|2 +(adj)|hydrophobic +(adj)|aquaphobic|afraid +hydrophobicity|1 +(noun)|property +hydrophyllaceae|1 +(noun)|Hydrophyllaceae|family Hydrophyllaceae|waterleaf family|asterid dicot family +hydrophyllum|1 +(noun)|Hydrophyllum|genus Hydrophyllum|asterid dicot genus +hydrophyllum virginianum|1 +(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +hydrophyte|1 +(noun)|aquatic plant|water plant|hydrophytic plant|vascular plant|tracheophyte +hydrophytic|1 +(adj)|hydric +hydrophytic plant|1 +(noun)|aquatic plant|water plant|hydrophyte|vascular plant|tracheophyte +hydroplane|3 +(noun)|seaplane|airplane|aeroplane|plane +(noun)|hydrofoil|speedboat +(verb)|seaplane|fly|aviate|pilot +hydroplane racing|1 +(noun)|boat racing +hydroponic|1 +(adj)|aquicultural|aquacultural|farming|agriculture|husbandry +hydroponics|1 +(noun)|aquiculture|tank farming|farming|agriculture|husbandry +hydrops|1 +(noun)|edema|oedema|dropsy|swelling|puffiness|lump +hydrosphere|1 +(noun)|layer +hydrostatic|1 +(adj)|hydrostatic |fluid mechanics|hydraulics +hydrostatic head|1 +(noun)|pressure|pressure level|force per unit area +hydrostatics|1 +(noun)|fluid mechanics|hydraulics +hydrotherapy|1 +(noun)|hydropathy|treatment +hydrothorax|1 +(noun)|congestion +hydrous|1 +(adj)|hydrous |hydrated +hydroxide|2 +(noun)|hydrated oxide|compound|chemical compound +(noun)|compound|chemical compound +hydroxide ion|1 +(noun)|hydroxyl ion|anion +hydroxy|1 +(adj)|group|radical|chemical group +hydroxy acid|1 +(noun)|acid +hydroxyacetic acid|1 +(noun)|glycolic acid|glycollic acid|acid +hydroxybenzene|1 +(noun)|carbolic acid|phenol|oxybenzene|phenylic acid|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +hydroxybenzoic acid|1 +(noun)|hydroxy acid +hydroxybutyric acid|1 +(noun)|oxybutyric acid|butyric acid|butanoic acid +hydroxychloroquine|1 +(noun)|Plaquenil|anti-inflammatory|anti-inflammatory drug +hydroxyl|1 +(noun)|hydroxyl group|hydroxyl radical|group|radical|chemical group +hydroxyl group|1 +(noun)|hydroxyl|hydroxyl radical|group|radical|chemical group +hydroxyl ion|1 +(noun)|hydroxide ion|anion +hydroxyl radical|1 +(noun)|hydroxyl|hydroxyl group|group|radical|chemical group +hydroxymethyl|1 +(noun)|methyl|methyl group|methyl radical +hydroxyproline|1 +(noun)|amino acid|aminoalkanoic acid +hydroxytetracycline|1 +(noun)|oxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic|antibiotic drug +hydroxyzine|1 +(noun)|hydroxyzine hydrochloride|Atarax|Vistaril|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +hydroxyzine hydrochloride|1 +(noun)|hydroxyzine|Atarax|Vistaril|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +hydrozoa|2 +(noun)|Hydrozoa|class Hydrozoa|class +(noun)|hydrozoan|hydroid|coelenterate|cnidarian +hydrozoan|1 +(noun)|hydroid|coelenterate|cnidarian +hydrus|1 +(noun)|Hydrus|constellation +hyemoschus|1 +(noun)|Hyemoschus|genus Hyemoschus|mammal genus +hyemoschus aquaticus|1 +(noun)|water chevrotain|water deer|Hyemoschus aquaticus|chevrotain|mouse deer +hyena|1 +(noun)|hyaena|canine|canid +hyena dog|1 +(noun)|African hunting dog|Cape hunting dog|Lycaon pictus|wild dog +hyerbolise|1 +(verb)|overstate|exaggerate|overdraw|hyperbolize|magnify|amplify|misinform|mislead +hygeia|1 +(noun)|Hygeia|Greek deity +hygiene|2 +(noun)|sanitariness +(noun)|hygienics|medicine|medical specialty +hygienic|1 +(adj)|hygienical|sanitary |healthful +hygienical|1 +(adj)|hygienic|sanitary |healthful +hygienics|1 +(noun)|hygiene|medicine|medical specialty +hygienise|1 +(verb)|sanitize|sanitise|hygienize|clean|make clean +hygienize|1 +(verb)|sanitize|sanitise|hygienise|clean|make clean +hygrocybe|1 +(noun)|Hygrocybe|genus Hygrocybe|fungus genus +hygrocybe acutoconica|1 +(noun)|Hygrocybe acutoconica|conic waxycap|waxycap +hygrodeik|1 +(noun)|hygrometer +hygrometer|1 +(noun)|measuring instrument|measuring system|measuring device +hygrophoraceae|1 +(noun)|Hygrophoraceae|family Hygrophoraceae|fungus family +hygrophorus|1 +(noun)|Hygrophorus|genus Hygrophorus|fungus genus +hygrophorus borealis|1 +(noun)|Hygrophorus borealis|waxycap +hygrophorus caeruleus|1 +(noun)|Hygrophorus caeruleus|waxycap +hygrophorus inocybiformis|1 +(noun)|Hygrophorus inocybiformis|waxycap +hygrophorus kauffmanii|1 +(noun)|Hygrophorus kauffmanii|waxycap +hygrophorus marzuolus|1 +(noun)|Hygrophorus marzuolus|waxycap +hygrophorus purpurascens|1 +(noun)|Hygrophorus purpurascens|waxycap +hygrophorus russula|1 +(noun)|Hygrophorus russula|waxycap +hygrophorus sordidus|1 +(noun)|Hygrophorus sordidus|waxycap +hygrophorus tennesseensis|1 +(noun)|Hygrophorus tennesseensis|waxycap +hygrophorus turundus|1 +(noun)|Hygrophorus turundus|waxycap +hygrophyte|1 +(noun)|plant|flora|plant life +hygrophytic|1 +(adj)|hydric +hygroscope|1 +(noun)|hygrometer +hygroscopic|1 +(adj)|absorbent |absorptive +hygroton|1 +(noun)|chlorthalidone|Hygroton|Thalidone|diuretic drug|diuretic|water pill +hygrotrama|1 +(noun)|Hygrotrama|genus Hygrotrama|fungus genus +hygrotrama foetens|1 +(noun)|Hygrotrama foetens|waxycap +hyla|1 +(noun)|Hyla|genus Hyla|amphibian genus +hyla arenicolor|1 +(noun)|canyon treefrog|Hyla arenicolor|tree toad|tree frog|tree-frog +hyla crucifer|1 +(noun)|spring peeper|Hyla crucifer|tree toad|tree frog|tree-frog +hyla regilla|1 +(noun)|Pacific tree toad|Hyla regilla|tree toad|tree frog|tree-frog +hylactophryne|1 +(noun)|Hylactophryne|genus Hylactophryne|amphibian genus +hylactophryne augusti|1 +(noun)|barking frog|robber frog|Hylactophryne augusti|frog|toad|toad frog|anuran|batrachian|salientian +hylidae|1 +(noun)|Hylidae|family Hylidae|amphibian family +hylobates|1 +(noun)|Hylobates|genus Hylobates|mammal genus +hylobates lar|1 +(noun)|gibbon|Hylobates lar|lesser ape +hylobates syndactylus|1 +(noun)|siamang|Hylobates syndactylus|Symphalangus syndactylus|lesser ape +hylobatidae|1 +(noun)|Hylobatidae|family Hylobatidae|mammal family +hylocereus|1 +(noun)|Hylocereus|genus Hylocereus|caryophylloid dicot genus +hylocichla|1 +(noun)|Hylocichla|genus Hylocichla|bird genus +hylocichla fuscescens|1 +(noun)|veery|Wilson's thrush|Hylocichla fuscescens|thrush +hylocichla guttata|1 +(noun)|hermit thrush|Hylocichla guttata|thrush +hylocichla mustelina|1 +(noun)|wood thrush|Hylocichla mustelina|thrush +hylophylax|1 +(noun)|Hylophylax|genus Hylophylax|bird genus +hylophylax naevioides|1 +(noun)|spotted antbird|Hylophylax naevioides|antbird|ant bird +hyman george rickover|1 +(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer +hyman rickover|1 +(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer +hymen|2 +(noun)|Hymen|Greek deity +(noun)|maidenhead|virginal membrane|mucous membrane|mucosa +hymenaea|1 +(noun)|Hymenaea|genus Hymenaea|rosid dicot genus +hymenaea courbaril|1 +(noun)|courbaril|Hymenaea courbaril|locust tree|locust +hymenal|1 +(adj)|mucous membrane|mucosa +hymenanthera|1 +(noun)|Hymenanthera|genus Hymenanthera|dilleniid dicot genus +hymeneal|2 +(adj)|ritual|rite|ritual|rite +(noun)|hymn|anthem +hymeneals|2 +(noun)|wedding|wedding ceremony|nuptials|ceremony|ceremonial|ceremonial occasion|observance +(noun)|hymeneal|hymn|anthem +hymenium|1 +(noun)|reproductive structure +hymenogastrales|1 +(noun)|Hymenogastrales|order Hymenogastrales|fungus order +hymenomycetes|1 +(noun)|Hymenomycetes|class Hymenomycetes|class +hymenophyllaceae|1 +(noun)|Hymenophyllaceae|family Hymenophyllaceae|fern family +hymenophyllum|1 +(noun)|Hymenophyllum|genus Hymenophyllum|fern genus +hymenopter|1 +(noun)|hymenopterous insect|hymenopteran|hymenopteron|insect +hymenoptera|2 +(noun)|Hymenoptera|order Hymenoptera|animal order +(noun)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter|insect +hymenopteran|1 +(noun)|hymenopterous insect|hymenopteron|hymenopter|insect +hymenopteron|1 +(noun)|hymenopterous insect|hymenopteran|hymenopter|insect +hymenopterous|1 +(adj)|animal order +hymenopterous insect|1 +(noun)|hymenopteran|hymenopteron|hymenopter|insect +hymenoxys acaulis|1 +(noun)|stemless hymenoxys|Tetraneuris acaulis|Hymenoxys acaulis|wildflower|wild flower +hymenoxys grandiflora|1 +(noun)|old man of the mountain|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower|wild flower +hymie|1 +(noun)|kike|sheeny|Jew|Hebrew|Israelite +hymn|3 +(noun)|anthem|religious song +(verb)|sing +(verb)|laud|extol|exalt|glorify|proclaim +hymnal|1 +(noun)|hymnbook|hymnary|songbook +hymnary|1 +(noun)|hymnal|hymnbook|songbook +hymnbook|1 +(noun)|hymnal|hymnary|songbook +hymnody|1 +(noun)|psalmody|singing|vocalizing +hynerpeton|1 +(noun)|Hynerpeton|genus Hynerpeton|amphibian genus +hynerpeton bassetti|1 +(noun)|Hynerpeton bassetti|amphibian +hyoid|2 +(adj)|bone|os +(noun)|hyoid bone|os hyoideum|bone|os +hyoid bone|1 +(noun)|hyoid|os hyoideum|bone|os +hyoscine|1 +(noun)|scopolamine|alkaloid +hyoscyamine|1 +(noun)|alkaloid|poison|poisonous substance +hyoscyamus|1 +(noun)|Hyoscyamus|genus Hyoscyamus|asterid dicot genus +hyoscyamus muticus|1 +(noun)|Egyptian henbane|Hyoscyamus muticus|herb|herbaceous plant +hyoscyamus niger|1 +(noun)|henbane|black henbane|stinking nightshade|Hyoscyamus niger|herb|herbaceous plant +hypaethral|1 +(adj)|hypethral|unenclosed +hypallage|1 +(noun)|rhetorical device +hypanthium|1 +(noun)|floral cup|calyx tube|plant organ +hypatia|1 +(noun)|Hypatia|astronomer|uranologist|stargazer|philosopher +hype|1 +(noun)|ballyhoo|hoopla|plug|promotion|publicity|promotional material|packaging +hype up|1 +(verb)|psych up|agitate|rouse|turn on|charge|commove|excite|charge up +hypentelium|1 +(noun)|Hypentelium|genus Hypentelium|fish genus +hypentelium nigricans|1 +(noun)|hog sucker|hog molly|Hypentelium nigricans|sucker +hyper-eutectoid steel|1 +(noun)|carbon steel +hyperacidity|1 +(noun)|acidity +hyperactive|1 +(adj)|overactive|active +hyperactivity|1 +(noun)|disorder|upset +hyperacusia|1 +(noun)|hyperacusis|auditory hyperesthesia|hearing impairment|hearing disorder +hyperacusis|1 +(noun)|hyperacusia|auditory hyperesthesia|hearing impairment|hearing disorder +hyperadrenalism|1 +(noun)|Cushing's disease|glandular disease|gland disease|glandular disorder|adenosis +hyperadrenocorticism|1 +(noun)|Cushing's syndrome|glandular disease|gland disease|glandular disorder|adenosis +hyperaemia|1 +(noun)|hyperemia|congestion +hyperaldosteronism|1 +(noun)|aldosteronism|glandular disease|gland disease|glandular disorder|adenosis +hyperalimentation|1 +(noun)|total parenteral nutrition|TPN|feeding|alimentation +hyperbaric chamber|1 +(noun)|chamber +hyperbaton|1 +(noun)|rhetorical device +hyperbetalipoproteinemia|1 +(noun)|hyperlipoproteinemia|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +hyperbilirubinemia|1 +(noun)|pathology +hyperbilirubinemia of the newborn|1 +(noun)|neonatal hyperbilirubinemia|hyperbilirubinemia +hyperbola|1 +(noun)|conic section|conic +hyperbole|1 +(noun)|exaggeration|trope|figure of speech|figure|image +hyperbolic|2 +(adj)|exaggerated|inflated|increased +(adj)|conic section|conic +hyperbolic geometry|1 +(noun)|non-Euclidean geometry +hyperbolically|1 +(adv)|exaggeratedly +hyperbolize|1 +(verb)|overstate|exaggerate|overdraw|hyerbolise|magnify|amplify|misinform|mislead +hyperboloid|1 +(noun)|quadric|quadric surface +hyperboloidal|1 +(adj)|rounded +hyperborean|1 +(noun)|Hyperborean|mythical being +hypercalcaemia|1 +(noun)|hypercalcemia|symptom +hypercalcemia|1 +(noun)|hypercalcaemia|symptom +hypercalcinuria|1 +(noun)|hypercalciuria|symptom +hypercalciuria|1 +(noun)|hypercalcinuria|symptom +hypercapnia|1 +(noun)|hypercarbia|physiological state|physiological condition +hypercarbia|1 +(noun)|hypercapnia|physiological state|physiological condition +hypercatalectic|1 +(adj)|hypercatalectic +hypercellularity|1 +(noun)|cellularity +hypercholesteremia|1 +(noun)|hypercholesterolemia|symptom +hypercholesterolemia|1 +(noun)|hypercholesteremia|symptom +hyperchromic anaemia|1 +(noun)|hyperchromic anemia|anemia|anaemia +hyperchromic anemia|1 +(noun)|hyperchromic anaemia|anemia|anaemia +hypercoaster|1 +(noun)|roller coaster|big dipper|chute-the-chute +hypercritical|1 +(adj)|overcritical|critical +hyperdactyly|1 +(noun)|polydactyly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +hyperemesis|1 +(noun)|vomit|vomiting|emesis|regurgitation|disgorgement|puking +hyperemesis gravidarum|1 +(noun)|hyperemesis +hyperemia|1 +(noun)|hyperaemia|congestion +hyperemic|1 +(adj)|congestion +hyperextend|1 +(verb)|exsert|stretch out|put out|extend|hold out|stretch forth +hyperextension|1 +(noun)|extension +hyperfine|1 +(adj)|thin +hyperfocal distance|1 +(noun)|distance +hyperglycaemia|1 +(noun)|hyperglycemia|symptom +hyperglycemia|1 +(noun)|hyperglycaemia|symptom +hyperglyphe perciformis|1 +(noun)|barrelfish|black rudderfish|Hyperglyphe perciformis|butterfish|stromateid fish|stromateid +hyperhidrosis|1 +(noun)|hyperidrosis|polyhidrosis|perspiration|sweating|diaphoresis|sudation|hidrosis +hypericaceae|1 +(noun)|Hypericaceae|family Hypericaceae|dilleniid dicot family +hypericales|1 +(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order +hypericism|1 +(noun)|dermatitis +hypericum|1 +(noun)|Hypericum|genus Hypericum|dilleniid dicot genus +hypericum androsaemum|1 +(noun)|common St John's wort|tutsan|Hypericum androsaemum|St John's wort +hypericum ascyron|1 +(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort +hypericum calycinum|1 +(noun)|creeping St John's wort|Hypericum calycinum|St John's wort +hypericum crux andrae|1 +(noun)|St Andrews's cross|Hypericum crux andrae|St John's wort +hypericum gentianoides|1 +(noun)|orange grass|nitweed|pineweed|pine-weed|Hypericum gentianoides|St John's wort +hypericum hypericoides|1 +(noun)|low St Andrew's cross|Hypericum hypericoides|St John's wort +hypericum maculatum|1 +(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort +hypericum perforatum|1 +(noun)|klammath weed|Hypericum perforatum|St John's wort +hypericum prolificum|1 +(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort +hypericum pyramidatum|1 +(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort +hypericum spathulatum|1 +(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort +hypericum tetrapterum|1 +(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort +hypericum virginianum|1 +(noun)|marsh St-John's wort|Hypericum virginianum|St John's wort +hyperidrosis|1 +(noun)|hyperhidrosis|polyhidrosis|perspiration|sweating|diaphoresis|sudation|hidrosis +hyperion|1 +(noun)|Hyperion|Titan +hyperkalemia|1 +(noun)|symptom +hyperkinetic syndrome|1 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|minimal brain dysfunction|minimal brain damage|MBD|syndrome +hyperlink|1 +(noun)|link +hyperlipaemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +hyperlipemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +hyperlipidaemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipoidemia|hyperlipoidaemia|symptom +hyperlipidemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +hyperlipoidaemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|symptom +hyperlipoidemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidaemia|symptom +hyperlipoproteinemia|1 +(noun)|metabolic disorder +hypermarket|1 +(noun)|supermarket +hypermastigina|1 +(noun)|Hypermastigina|order Hypermastigina|animal order +hypermastigote|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +hypermedia|1 +(noun)|hypermedia system|interactive multimedia|interactive multimedia system|multimedia|multimedia system|object-oriented database management system +hypermedia system|1 +(noun)|hypermedia|interactive multimedia|interactive multimedia system|multimedia|multimedia system|object-oriented database management system +hypermenorrhea|1 +(noun)|menorrhagia|menstruation|menses|menstruum|catamenia|period|flow|symptom +hypermetropia|1 +(noun)|hyperopia|hypermetropy|farsightedness|longsightedness|ametropia +hypermetropic|1 +(adj)|hyperopic|farsighted |presbyopic +hypermetropy|1 +(noun)|hyperopia|hypermetropia|farsightedness|longsightedness|ametropia +hypermotility|1 +(noun)|illness|unwellness|malady|sickness +hypernatremia|1 +(noun)|symptom +hypernym|1 +(noun)|superordinate|superordinate word|word +hypernymy|1 +(noun)|superordination|semantic relation +hyperoartia|1 +(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order +hyperodontidae|1 +(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family +hyperoglyphe|1 +(noun)|Hyperoglyphe|genus Hyperoglyphe|fish genus +hyperon|1 +(noun)|baryon|heavy particle +hyperoodon|1 +(noun)|Hyperoodon|genus Hyperoodon|mammal genus +hyperoodon ampullatus|1 +(noun)|bottle-nosed whale|bottlenose whale|bottlenose|Hyperoodon ampullatus|beaked whale +hyperope|1 +(noun)|visually handicapped person +hyperopia|1 +(noun)|hypermetropia|hypermetropy|farsightedness|longsightedness|ametropia +hyperopic|1 +(adj)|hypermetropic|farsighted |presbyopic +hyperotreta|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +hyperparathyroidism|1 +(noun)|glandular disease|gland disease|glandular disorder|adenosis +hyperpiesia|1 +(noun)|essential hypertension|hyperpiesis|high blood pressure|hypertension +hyperpiesis|1 +(noun)|essential hypertension|hyperpiesia|high blood pressure|hypertension +hyperpigmentation|1 +(noun)|physiological state|physiological condition +hyperpituitarism|1 +(noun)|glandular disease|gland disease|glandular disorder|adenosis +hyperplasia|1 +(noun)|dysplasia +hyperpnea|1 +(noun)|breathing|external respiration|respiration|ventilation +hyperpyrexia|1 +(noun)|hyperthermia|hyperthermy|fever|febrility|febricity|pyrexia|feverishness +hypersecretion|1 +(noun)|secretion|secernment +hypersensitised|1 +(adj)|allergic|hypersensitive|hypersensitized|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible +hypersensitive|1 +(adj)|allergic|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible +hypersensitivity|2 +(noun)|sensitivity|predisposition +(noun)|sensitivity|sensitiveness|sensibility +hypersensitivity reaction|1 +(noun)|hypersensitivity +hypersensitized|1 +(adj)|allergic|hypersensitive|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible +hypersomnia|1 +(noun)|sleep disorder +hypersplenism|1 +(noun)|symptom +hyperstat|1 +(noun)|diazoxide|Hyperstat|vasodilator|vasodilative +hypertensin|1 +(noun)|angiotensin|angiotonin|Hypertensin|vasoconstrictor|vasoconstrictive +hypertension|1 +(noun)|high blood pressure|cardiovascular disease +hypertensive|1 +(adj)|hypertensive +hypertext|1 +(noun)|machine-readable text +hypertext mark-up language|1 +(noun)|hypertext markup language|HTML|markup language +hypertext markup language|1 +(noun)|hypertext mark-up language|HTML|markup language +hypertext system|1 +(noun)|object-oriented database management system +hypertext transfer protocol|1 +(noun)|HTTP|protocol|communications protocol +hyperthermal|1 +(adj)|physiological state|physiological condition +hyperthermia|1 +(noun)|hyperthermy|physiological state|physiological condition +hyperthermy|1 +(noun)|hyperthermia|physiological state|physiological condition +hyperthyroidism|1 +(noun)|thyrotoxicosis|glandular disease|gland disease|glandular disorder|adenosis +hypertonia|1 +(noun)|hypertonus|hypertonicity|tonicity|tonus|tone +hypertonic|2 +(adj)|hypertonic +(adj)|hypertonic +hypertonicity|2 +(noun)|osmotic pressure +(noun)|hypertonia|hypertonus|tonicity|tonus|tone +hypertonus|1 +(noun)|hypertonia|hypertonicity|tonicity|tonus|tone +hypertrophic cardiomyopathy|1 +(noun)|cardiomyopathy|myocardiopathy +hypertrophic rosacea|1 +(noun)|rhinophyma|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy +hypertrophied|1 +(adj)|hypertrophied |enlarged +hypertrophy|2 +(noun)|dysplasia +(verb)|grow +hypervelocity|1 +(noun)|speed|velocity +hyperventilate|2 +(verb)|treat|care for +(verb)|breathe|take a breath|respire|suspire +hyperventilation|1 +(noun)|breathing|external respiration|respiration|ventilation +hypervitaminosis|1 +(noun)|abnormality|abnormalcy|abnormal condition +hypervolaemia|1 +(noun)|hypervolemia|blood disease|blood disorder +hypervolemia|1 +(noun)|hypervolaemia|blood disease|blood disorder +hypesthesia|1 +(noun)|hypoesthesia|disability|disablement|handicap|impairment +hypethral|1 +(adj)|hypaethral|unenclosed +hypha|1 +(noun)|fibril|filament|strand +hyphantria|1 +(noun)|Hyphantria|genus Hyphantria|arthropod genus +hyphantria cunea|2 +(noun)|fall webworm|Hyphantria cunea|webworm +(noun)|Hyphantria cunea|webworm moth +hyphema|1 +(noun)|bleeding|hemorrhage|haemorrhage +hyphen|2 +(noun)|dash|punctuation|punctuation mark +(verb)|hyphenate|spell|write +hyphenate|1 +(verb)|hyphen|spell|write +hyphenated|1 +(adj)|combined +hyphenation|2 +(noun)|word division|division +(noun)|punctuation +hypnagogic|1 +(adj)|soporific|soporiferous|somniferous|somnific|hypnogogic|depressant +hypnagogue|1 +(noun)|agent +hypnoanalysis|1 +(noun)|psychoanalysis|analysis|depth psychology +hypnogenesis|1 +(noun)|induction +hypnogogic|1 +(adj)|soporific|soporiferous|somniferous|somnific|hypnagogic|depressant +hypnoid|1 +(adj)|asleep +hypnopedia|1 +(noun)|sleep-learning|teaching|instruction|pedagogy +hypnophobia|1 +(noun)|simple phobia +hypnos|1 +(noun)|Hypnos|deity|divinity|god|immortal +hypnosis|1 +(noun)|psychological state|mental state +hypnotherapy|1 +(noun)|psychotherapy +hypnotic|2 +(adj)|mesmeric|mesmerizing|spellbinding|attractive +(noun)|soporific|drug|hypnagogue +hypnotic trance|1 +(noun)|trance +hypnotise|1 +(verb)|hypnotize|mesmerize|mesmerise|sedate|calm|tranquilize|tranquillize|tranquillise +hypnotised|1 +(adj)|fascinated|hypnotized|mesmerized|mesmerised|spellbound|transfixed|enchanted +hypnotiser|1 +(noun)|hypnotist|hypnotizer|mesmerist|psychologist +hypnotism|1 +(noun)|mesmerism|suggestion|influence +hypnotist|1 +(noun)|hypnotizer|hypnotiser|mesmerist|psychologist +hypnotize|1 +(verb)|hypnotise|mesmerize|mesmerise|sedate|calm|tranquilize|tranquillize|tranquillise +hypnotized|1 +(adj)|fascinated|hypnotised|mesmerized|mesmerised|spellbound|transfixed|enchanted +hypnotizer|1 +(noun)|hypnotist|hypnotiser|mesmerist|psychologist +hypo|2 +(noun)|sodium thiosulphate|sodium thiosulfate|fixing agent|fixer +(noun)|hypodermic syringe|hypodermic|syringe +hypo-eutectoid steel|1 +(noun)|carbon steel +hypoactive|1 +(adj)|underactive|inactive +hypoadrenalism|1 +(noun)|Addison's disease|Addison's syndrome|hypoadrenocorticism|glandular disease|gland disease|glandular disorder|adenosis +hypoadrenocorticism|1 +(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|glandular disease|gland disease|glandular disorder|adenosis +hypobasidium|1 +(noun)|plant organ +hypobetalipoproteinemia|1 +(noun)|hypolipoproteinemia +hypoblast|1 +(noun)|endoderm|entoderm|endoblast|entoblast|germ layer +hypocalcaemia|1 +(noun)|hypocalcemia|symptom +hypocalcemia|1 +(noun)|hypocalcaemia|symptom +hypocapnia|1 +(noun)|acapnia|physiological state|physiological condition +hypocellularity|1 +(noun)|cellularity +hypochaeris|1 +(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus +hypochaeris radicata|1 +(noun)|cat's-ear|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed +hypochlorite|1 +(noun)|salt +hypochlorous acid|1 +(noun)|acid +hypochoeris|1 +(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus +hypochondria|2 +(noun)|hypochondriasis|anxiety|anxiousness +(noun)|hypochondrium|area|region +hypochondriac|2 +(adj)|hypochondriacal|neurotic |psychoneurotic +(noun)|patient +hypochondriacal|1 +(adj)|hypochondriac|neurotic |psychoneurotic +hypochondriasis|1 +(noun)|hypochondria|anxiety|anxiousness +hypochondrium|1 +(noun)|area|region +hypochromic anaemia|1 +(noun)|hypochromic anemia|anemia|anaemia +hypochromic anemia|1 +(noun)|hypochromic anaemia|anemia|anaemia +hypocorism|1 +(noun)|pet name|name +hypocreaceae|1 +(noun)|Hypocreaceae|family Hypocreaceae|fungus family +hypocreales|1 +(noun)|Hypocreales|order Hypocreales|fungus order +hypocrisy|2 +(noun)|lip service|pretense|pretence|feigning|dissembling +(noun)|insincerity|falseness +hypocrite|1 +(noun)|dissembler|phony|phoney|pretender|deceiver|cheat|cheater|trickster|beguiler|slicker +hypocritical|1 +(adj)|insincere +hypocycloid|1 +(noun)|roulette|line roulette +hypoderma|1 +(noun)|Hypoderma|genus Hypoderma|arthropod genus +hypodermal|1 +(adj)|layer +hypodermatidae|1 +(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family +hypodermic|2 +(adj)|subcutaneous|connective tissue|body covering +(noun)|hypodermic syringe|hypo|syringe +hypodermic needle|1 +(noun)|needle +hypodermic syringe|1 +(noun)|hypodermic|hypo|syringe +hypodermis|1 +(noun)|layer +hypoesthesia|1 +(noun)|hypesthesia|disability|disablement|handicap|impairment +hypogammaglobulinemia|1 +(noun)|immunodeficiency +hypogastric artery|1 +(noun)|internal iliac artery|iliac artery|arteria iliaca +hypogastric plexus|1 +(noun)|plexus hypogastricus|nerve plexus +hypogastric vein|1 +(noun)|internal iliac vein|iliac vein|vena iliaca +hypoglossal|1 +(noun)|hypoglossal nerve|nervus hypoglosus|twelfth cranial nerve|cranial nerve +hypoglossal nerve|1 +(noun)|hypoglossal|nervus hypoglosus|twelfth cranial nerve|cranial nerve +hypoglycaemia|1 +(noun)|hypoglycemia|symptom +hypoglycaemic|1 +(adj)|hypoglycemic|symptom +hypoglycaemic agent|1 +(noun)|hypoglycemic agent|agent +hypoglycemia|1 +(noun)|hypoglycaemia|symptom +hypoglycemic|1 +(adj)|hypoglycaemic|symptom +hypoglycemic agent|1 +(noun)|hypoglycaemic agent|agent +hypognathous|1 +(adj)|prognathous |prognathic|lantern-jawed +hypogonadism|1 +(noun)|incompetence +hypokalemia|1 +(noun)|symptom +hypolipoproteinemia|1 +(noun)|metabolic disorder +hyponatremia|1 +(noun)|symptom +hyponitrous acid|1 +(noun)|acid +hyponym|1 +(noun)|subordinate|subordinate word|word +hyponymy|1 +(noun)|subordination|semantic relation +hypopachus|1 +(noun)|Hypopachus|genus Hypopachus|amphibian genus +hypoparathyroidism|1 +(noun)|glandular disease|gland disease|glandular disorder|adenosis +hypophosphoric acid|1 +(noun)|oxyacid|oxygen acid +hypophosphorous acid|1 +(noun)|phosphorous acid|orthophosphorous acid|oxyacid|oxygen acid +hypophyseal|1 +(adj)|hypophysial|endocrine gland|endocrine|ductless gland +hypophyseal stalk|1 +(noun)|infundibulum +hypophysectomise|1 +(verb)|hypophysectomize|remove|take|take away|withdraw +hypophysectomised|1 +(adj)|hypophysectomized|remove|take|take away|withdraw +hypophysectomize|1 +(verb)|hypophysectomise|remove|take|take away|withdraw +hypophysectomized|1 +(adj)|hypophysectomised|remove|take|take away|withdraw +hypophysectomy|1 +(noun)|ablation|extirpation|cutting out|excision +hypophysial|1 +(adj)|hypophyseal|endocrine gland|endocrine|ductless gland +hypophysis|1 +(noun)|pituitary|pituitary gland|pituitary body|endocrine gland|endocrine|ductless gland +hypopigmentation|1 +(noun)|physiological state|physiological condition +hypopitys|1 +(noun)|Hypopitys|genus Hypopitys|dilleniid dicot genus +hypoplasia|1 +(noun)|dysplasia +hypoplastic anaemia|1 +(noun)|hypoplastic anemia|anemia|anaemia +hypoplastic anemia|1 +(noun)|hypoplastic anaemia|anemia|anaemia +hypoplastic dwarf|1 +(noun)|primordial dwarf|true dwarf|normal dwarf|dwarf|midget|nanus +hypopnea|1 +(noun)|breathing|external respiration|respiration|ventilation +hypoproteinemia|1 +(noun)|symptom +hyposmia|1 +(noun)|dysomia +hypospadias|1 +(noun)|abnormality|abnormalcy|abnormal condition +hypostasis|4 +(noun)|epistasis|organic process|biological process +(noun)|bodily process|body process|bodily function|activity +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +hypostatisation|1 +(noun)|hypostatization|reification|objectification +hypostatise|1 +(verb)|hypostatize|reify +hypostatization|1 +(noun)|hypostatisation|reification|objectification +hypostatize|1 +(verb)|hypostatise|reify +hypotension|1 +(noun)|cardiovascular disease +hypotensive|1 +(adj)|hypotensive +hypotenuse|1 +(noun)|flank +hypothalamic|1 +(adj)|neural structure +hypothalamic releasing factor|1 +(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing hormone|hormone|endocrine|internal secretion +hypothalamic releasing hormone|1 +(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing factor|hormone|endocrine|internal secretion +hypothalamus|1 +(noun)|neural structure +hypothecate|2 +(verb)|pledge +(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|suppose|expect|anticipate +hypothermia|1 +(noun)|physiological state|physiological condition +hypothermic|1 +(adj)|physiological state|physiological condition +hypothesis|3 +(noun)|proposal +(noun)|possibility|theory|concept|conception|construct +(noun)|guess|conjecture|supposition|surmise|surmisal|speculation|opinion|view +hypothesise|1 +(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothecate|suppose|expect|anticipate +hypothesize|1 +(verb)|speculate|theorize|theorise|conjecture|hypothesise|hypothecate|suppose|expect|anticipate +hypothetic|1 +(adj)|hypothetical|theoretical |theoretic +hypothetical|1 +(adj)|hypothetic|theoretical |theoretic +hypothetical creature|1 +(noun)|imaginary being|imaginary creature +hypothetical imperative|1 +(noun)|principle|precept +hypothrombinemia|1 +(noun)|blood disease|blood disorder +hypothyroidism|1 +(noun)|glandular disease|gland disease|glandular disorder|adenosis +hypotonia|1 +(noun)|hypotonus|hypotonicity|tonicity|tonus|tone +hypotonic|2 +(adj)|hypotonic +(adj)|hypotonic +hypotonicity|2 +(noun)|osmotic pressure +(noun)|hypotonia|hypotonus|tonicity|tonus|tone +hypotonus|1 +(noun)|hypotonia|hypotonicity|tonicity|tonus|tone +hypovitaminosis|1 +(noun)|avitaminosis|malnutrition +hypovolaemia|1 +(noun)|hypovolemia|blood disease|blood disorder +hypovolaemic|1 +(adj)|hypovolemic|blood disease|blood disorder +hypovolemia|1 +(noun)|hypovolaemia|blood disease|blood disorder +hypovolemic|1 +(adj)|hypovolaemic|blood disease|blood disorder +hypovolemic shock|1 +(noun)|shock +hypoxia|1 +(noun)|drive +hypoxic hypoxia|1 +(noun)|hypoxia +hypoxidaceae|1 +(noun)|Hypoxidaceae|family Hypoxidaceae|liliid monocot family +hypoxis|1 +(noun)|Hypoxis|genus Hypoxis|liliid monocot genus +hypoxis hirsuta|1 +(noun)|American star grass|Hypoxis hirsuta|star grass +hypozeugma|1 +(noun)|rhetorical device +hypozeuxis|1 +(noun)|rhetorical device +hypsiglena|1 +(noun)|Hypsiglena|genus Hypsiglena|reptile genus +hypsiglena torquata|1 +(noun)|night snake|Hypsiglena torquata|colubrid snake|colubrid +hypsiprymnodon|1 +(noun)|Hypsiprymnodon|genus Hypsiprymnodon|mammal genus +hypsiprymnodon moschatus|1 +(noun)|musk kangaroo|Hypsiprymnodon moschatus|kangaroo +hypsography|2 +(noun)|geology +(noun)|hypsometry|measurement|measuring|measure|mensuration +hypsometer|1 +(noun)|altimeter +hypsometry|1 +(noun)|hypsography|measurement|measuring|measure|mensuration +hyracoidea|1 +(noun)|Hyracoidea|order Hyracoidea|animal order +hyracotherium|1 +(noun)|Hyracotherium|genus Hyracotherium|mammal genus +hyrax|1 +(noun)|coney|cony|dassie|das|placental|placental mammal|eutherian|eutherian mammal +hyson|1 +(noun)|green tea +hyssop|2 +(noun)|Hyssopus officinalis|herb|herbaceous plant +(noun)|herb +hyssop loosestrife|1 +(noun)|grass poly|Lythrum hyssopifolia|loosestrife +hyssop oil|1 +(noun)|oil +hyssopus|1 +(noun)|Hyssopus|genus Hyssopus|asterid dicot genus +hyssopus officinalis|1 +(noun)|hyssop|Hyssopus officinalis|herb|herbaceous plant +hysterectomy|1 +(noun)|ablation|extirpation|cutting out|excision +hysteresis|1 +(noun)|physical phenomenon +hysteria|3 +(noun)|craze|delirium|frenzy|fury|mania|manic disorder +(noun)|fear|fearfulness|fright +(noun)|hysterical neurosis|neurosis|neuroticism|psychoneurosis +hysteric|2 +(adj)|hysterical|neurotic |psychoneurotic +(noun)|neurotic|psychoneurotic|mental case +hysterical|2 +(adj)|hysteric|neurotic |psychoneurotic +(adj)|agitated +hysterical neurosis|1 +(noun)|hysteria|neurosis|neuroticism|psychoneurosis +hysterics|2 +(noun)|attack +(noun)|hysteric|neurotic|psychoneurotic|mental case +hysterocatalepsy|1 +(noun)|hysteria|hysterical neurosis +hysteron proteron|2 +(noun)|rhetorical device +(noun)|logical fallacy +hysterosalpingogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +hysteroscopy|1 +(noun)|endoscopy +hysterotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +hystricidae|1 +(noun)|Hystricidae|family Hystricidae|mammal family +hystricomorpha|1 +(noun)|Hystricomorpha|suborder Hystricomorpha|animal order +hytrin|1 +(noun)|terazosin|Hytrin|antihypertensive|antihypertensive drug|alpha blocker|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent +hz|1 +(noun)|Hertz|Hz|cycle per second|cycles/second|cps|cycle|rate +i|4 +(adj)|one|1|ane|cardinal +(noun)|iodine|iodin|I|atomic number 53|chemical element|element|halogen +(noun)|one|1|I|ace|single|unity|digit|figure +(noun)|I|letter|letter of the alphabet|alphabetic character +i-beam|1 +(noun)|I-beam|girder +i. a. richards|1 +(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic|semanticist|semiotician +i. f. stone|1 +(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist +i. m. pei|1 +(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect|designer +i.d.|3 +(noun)|ID|I.D.|badge|positive identification +(noun)|Idaho|Gem State|ID|American state +(noun)|id|instinct|inherent aptitude +i.e.|2 +(adv)|ie|id est|that is +(adv)| +i.q.|2 +(noun)|intelligence quotient|IQ|I.Q.|ratio +(noun)| +i.w.w.|2 +(noun)|Industrial Workers of the World|IWW|I.W.W.|union|labor union|trade union|trades union|brotherhood|labor movement|trade union movement|labor +(noun)| +i chronicles|1 +(noun)|I Chronicles|1 Chronicles|book +i corinthians|1 +(noun)|First Epistle of Paul the Apostle to the Corinthians|First Epistle to the Corinthians|I Corinthians|book +i esdra|1 +(noun)|I Esdra|1 Esdras|book +i john|1 +(noun)|First Epistle of John|I John|book +i kings|1 +(noun)|I Kings|1 Kings|book +i maccabees|1 +(noun)|I Maccabees|1 Maccabees|book +i peter|1 +(noun)|First Epistle of Peter|I Peter|book +i samuel|1 +(noun)|I Samuel|1 Samuel|book +i thessalonians|1 +(noun)|First Epistle of Paul the Apostle to the Thessalonians|First Epistle to the Thessalonians|I Thessalonians|book +i timothy|1 +(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|book +ia|1 +(noun)|Iowa|Hawkeye State|IA|American state +iaa|2 +(noun)|indoleacetic acid|IAA|auxin +(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +iaea|1 +(noun)|International Atomic Energy Agency|IAEA|United Nations agency|UN agency +iago|1 +(noun)|Iago|fictional character|fictitious character|character +iamb|1 +(noun)|iambus|metrical foot|foot|metrical unit +iambic|2 +(adj)|metrical foot|foot|metrical unit +(noun)|verse|verse line +iambus|1 +(noun)|iamb|metrical foot|foot|metrical unit +ian douglas smith|1 +(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman|solon|national leader +ian fleming|1 +(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer|author +ian lancaster fleming|1 +(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer|author +ian smith|1 +(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman|solon|national leader +ian wilmut|1 +(noun)|Wilmut|Ian Wilmut|geneticist +ianfu|1 +(noun)|comfort woman|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +iapetus|1 +(noun)|Iapetus|Titan +iatrogenic|1 +(adj)|induced +ib.|1 +(adv)|ibid.|ibidem +ibadan|1 +(noun)|Ibadan|city|metropolis|urban center +iberia|1 +(noun)|Iberian Peninsula|Iberia|peninsula +iberian|1 +(adj)|Iberian|peninsula +iberian peninsula|1 +(noun)|Iberian Peninsula|Iberia|peninsula +iberis|1 +(noun)|Iberis|genus Iberis|dilleniid dicot genus +ibero-mesornis|1 +(noun)|Ibero-mesornis|bird +ibert|1 +(noun)|Ibert|Jacques Francois Antoine Ibert|composer +ibex|1 +(noun)|Capra ibex|wild goat +ibid.|1 +(adv)|ib.|ibidem +ibidem|1 +(adv)|ibid.|ib. +ibis|1 +(noun)|wading bird|wader +ibis ibis|1 +(noun)|wood ibis|wood stork|Ibis ibis|ibis +ibizan hound|1 +(noun)|Ibizan hound|Ibizan Podenco|hound|hound dog +ibizan podenco|1 +(noun)|Ibizan hound|Ibizan Podenco|hound|hound dog +ibn-roshd|1 +(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher|lawyer|attorney|doctor|doc|physician|MD|Dr.|medico +ibn-sina|1 +(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher|doctor|doc|physician|MD|Dr.|medico +ibn al-haytham|1 +(noun)|Alhazen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician|physicist|astronomer|uranologist|stargazer +ibn talal hussein|1 +(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king|male monarch +ibolium privet|1 +(noun)|ibota privet|Ligustrum ibolium|privet +ibota privet|1 +(noun)|ibolium privet|Ligustrum ibolium|privet +ibrahim|1 +(noun)|Abraham|Ibrahim|patriarch +ibrd|1 +(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency|UN agency +ibsen|1 +(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet|dramatist|playwright +ibsenian|1 +(adj)|Ibsenian|poet|dramatist|playwright +ibuprofen|1 +(noun)|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ic|2 +(adj)|ninety-nine|99|cardinal +(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence|intelligence service|intelligence agency +icaco|2 +(noun)|coco plum|coco plum tree|cocoa plum|Chrysobalanus icaco|fruit tree +(noun)|cocoa plum|coco plum|edible fruit +icao|1 +(noun)|International Civil Aviation Organization|ICAO|United Nations agency|UN agency +icarus|1 +(noun)|Icarus|mythical being +icbm|1 +(noun)|intercontinental ballistic missile|ICBM|ballistic missile +icc|1 +(noun)|Interstate Commerce Commission|ICC|independent agency +ice|10 +(noun)|water ice|crystal +(noun)|object|physical object +(noun)|sparkler|diamond +(noun)|frosting|icing|topping +(noun)|frappe|frozen dessert +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +(noun)|internal-combustion engine|ICE|heat engine +(noun)|ice rink|ice-skating rink|rink|skating rink +(verb)|frost|cover +(verb)|cool|chill|cool down +ice-clogged|1 +(adj)|frozen +ice-cold|1 +(adj)|cold +ice-cream bean|1 +(noun)|Inga edulis|tree +ice-cream cake|1 +(noun)|icebox cake|frozen dessert +ice-cream cone|1 +(noun)|frozen dessert +ice-cream float|1 +(noun)|ice-cream soda|float|drink +ice-cream soda|1 +(noun)|ice-cream float|float|drink +ice-cream sundae|1 +(noun)|sundae|frozen dessert +ice-free|1 +(adj)|unfrozen +ice-hockey player|1 +(noun)|hockey player|athlete|jock|player|participant +ice-hockey rink|2 +(noun)|ice hockey rink|ice rink|ice-skating rink|ice +(noun)| +ice-skater|1 +(noun)|skater +ice-skating rink|1 +(noun)|ice rink|ice|rink|skating rink +ice-wagon|2 +(noun)|ice wagon|wagon|waggon +(noun)| +ice age|1 +(noun)|glacial period|glacial epoch|period|geological period +ice ax|1 +(noun)|ice axe|piolet|ax|axe +ice axe|1 +(noun)|ice ax|piolet|ax|axe +ice bag|1 +(noun)|ice pack|bag +ice bear|1 +(noun)|polar bear|Ursus Maritimus|Thalarctos maritimus|bear +ice cap|2 +(noun)|icecap|ice mass +(noun)| +ice chest|1 +(noun)|cooler|refrigerator|icebox +ice coffee|1 +(noun)|iced coffee|coffee|java +ice cream|1 +(noun)|frozen dessert +ice crystal|1 +(noun)|snow mist|diamond dust|poudrin|ice needle|frost snow|frost mist|crystal +ice cube|1 +(noun)|cube|square block +ice field|1 +(noun)|ice mass +ice floe|1 +(noun)|floe|ice mass +ice fog|1 +(noun)|pogonip|fog +ice hockey|1 +(noun)|hockey|hockey game|athletic game|contact sport +ice hockey rink|1 +(noun)|ice-hockey rink|ice rink|ice-skating rink|ice +ice lolly|1 +(noun)|lolly|lollipop|popsicle|frozen dessert +ice machine|1 +(noun)|electric refrigerator|fridge +ice maker|1 +(noun)|kitchen appliance +ice mass|1 +(noun)|geological formation|formation +ice milk|1 +(noun)|frozen dessert +ice needle|1 +(noun)|ice crystal|snow mist|diamond dust|poudrin|frost snow|frost mist|crystal +ice over|1 +(verb)|ice up|frost over|change +ice pack|2 +(noun)|ice bag|bag +(noun)|pack ice|Ice pack|ice +ice pick|2 +(noun)|icepick|pick +(noun)| +ice plant|1 +(noun)|icicle plant|Mesembryanthemum crystallinum|fig marigold|pebble plant +ice rink|1 +(noun)|ice-skating rink|ice|rink|skating rink +ice shelf|1 +(noun)|shelf ice|ice +ice show|1 +(noun)|show +ice skate|2 +(noun)|skate +(verb)|skate +ice skating|1 +(noun)|skating +ice storm|1 +(noun)|silver storm|storm|violent storm +ice tea|1 +(noun)|iced tea|tea +ice tongs|1 +(noun)|tongs|pair of tongs +ice up|1 +(verb)|frost over|ice over|change +ice wagon|2 +(noun)|ice-wagon|wagon|waggon +(noun)| +ice water|1 +(noun)|drinking water +ice yacht|1 +(noun)|iceboat|scooter|vessel|watercraft +iceberg|2 +(noun)|berg|ice mass|floater +(noun)|crisphead lettuce|iceberg lettuce|lettuce +iceberg lettuce|1 +(noun)|crisphead lettuce|iceberg|lettuce +iceboat|2 +(noun)|icebreaker|ship +(noun)|ice yacht|scooter|vessel|watercraft +icebound|1 +(adj)|frozen +icebox|1 +(noun)|refrigerator|white goods +icebox cake|1 +(noun)|ice-cream cake|frozen dessert +icebreaker|2 +(noun)|iceboat|ship +(noun)|beginning|start|commencement +icecap|1 +(noun)|ice cap|ice mass +iced-tea spoon|1 +(noun)|teaspoon +iced coffee|1 +(noun)|ice coffee|coffee|java +iced tea|1 +(noun)|ice tea|tea +icefall|1 +(noun)|ice +icehouse|1 +(noun)|house +iceland|2 +(noun)|Iceland|Republic of Iceland|European country|European nation +(noun)|Iceland|island +iceland lichen|1 +(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen +iceland moss|1 +(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen +iceland poppy|2 +(noun)|Iceland poppy|arctic poppy|Papaver nudicaule|poppy +(noun)|Iceland poppy|Papaver alpinum|poppy +iceland spar|1 +(noun)|Iceland spar|calcite +icelander|1 +(noun)|Icelander|European +icelandic|2 +(adj)|Icelandic|European country|European nation +(noun)|Icelandic|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +icelandic-speaking|1 +(adj)|Icelandic-speaking|communicative |communicatory +icelandic krona|1 +(noun)|Icelandic krona|krona|Icelandic monetary unit +icelandic monetary unit|1 +(noun)|Icelandic monetary unit|monetary unit +iceman|2 +(noun)|deliveryman|delivery boy|deliverer +(noun)|hatchet man|murderer|liquidator|manslayer +icepick|1 +(noun)|ice pick|pick +icetray|1 +(noun)|tray +ichneumon|1 +(noun)|Herpestes ichneumon|mongoose +ichneumon fly|1 +(noun)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +ichneumonidae|1 +(noun)|Ichneumonidae|family Ichneumonidae|arthropod family +ichor|2 +(noun)|fluid +(noun)|pus|purulence|suppuration|sanies|festering|liquid body substance|bodily fluid|body fluid|humor|humour +ichorous|1 +(adj)|sanious|liquid body substance|bodily fluid|body fluid|humor|humour +ichthyolatry|1 +(noun)|fish-worship|zoolatry|animal-worship +ichthyologist|1 +(noun)|zoologist|animal scientist +ichthyology|1 +(noun)|zoology|zoological science +ichthyosaur|1 +(noun)|archosaur|archosaurian|archosaurian reptile +ichthyosauria|1 +(noun)|Ichthyosauria|order Ichthyosauria|animal order +ichthyosauridae|1 +(noun)|Ichthyosauridae|family Ichthyosauridae|reptile family +ichthyosaurus|1 +(noun)|ichthyosaur +ichthyosis|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +ichyostega|1 +(noun)|Ichyostega|amphibian +icicle|1 +(noun)|ice|water ice +icicle plant|1 +(noun)|ice plant|Mesembryanthemum crystallinum|fig marigold|pebble plant +iciness|1 +(noun)|chill|gelidity|coldness|cold|low temperature +icing|3 +(noun)|frost|freeze|freezing +(noun)|frosting|ice|topping +(noun)|icing the puck|maneuver|manoeuvre|play +icing sugar|1 +(noun)|powdered sugar +icing the puck|1 +(noun)|icing|maneuver|manoeuvre|play +icky|2 +(adj)|crappy|lousy|rotten|shitty|stinking|stinky|bad +(adj)|gooey|adhesive +icon|3 +(noun)|symbol +(noun)|picture|image|ikon|representation +(noun)|ikon|painting|picture +iconic|1 +(adj)|painting|picture +iconoclasm|1 +(noun)|unorthodoxy|heterodoxy|heresy +iconoclast|1 +(noun)|image breaker|destroyer|ruiner|undoer|waster|uprooter +iconoclastic|1 +(adj)|unorthodox +iconography|1 +(noun)|picture|image|icon|ikon +iconolatry|1 +(noun)|idolatry|idol worship +iconology|1 +(noun)|art history +iconoscope|1 +(noun)|television-camera tube|television pickup tube +icosahedral|1 +(adj)|polyhedron +icosahedron|1 +(noun)|polyhedron +icsh|1 +(noun)|luteinizing hormone|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +ictal|1 +(adj)|ictic|attack +ictalurus|1 +(noun)|Ictalurus|genus Ictalurus|fish genus +ictalurus punctatus|1 +(noun)|channel catfish|channel cat|Ictalurus punctatus|catfish|siluriform fish +icteria|1 +(noun)|Icteria|genus Icteria|bird genus +icteria virens|1 +(noun)|yellow-breasted chat|Icteria virens|New World chat|chat +icteric|1 +(adj)|jaundiced|yellow|unhealthy +icteridae|1 +(noun)|Icteridae|family Icteridae|bird family +icterogenic|1 +(adj)|symptom +icterus|2 +(noun)|jaundice|symptom +(noun)|Icterus|genus Icterus|bird genus +icterus galbula|1 +(noun)|northern oriole|Icterus galbula|New World oriole|American oriole|oriole +icterus galbula bullockii|1 +(noun)|Bullock's oriole|Icterus galbula bullockii|northern oriole|Icterus galbula +icterus galbula galbula|1 +(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole|Icterus galbula +icterus neonatorum|1 +(noun)|jaundice of the newborn|physiological jaundice of the newborn|jaundice|icterus +icterus spurius|1 +(noun)|orchard oriole|Icterus spurius|New World oriole|American oriole|oriole +ictic|1 +(adj)|ictal|attack +ictiobus|1 +(noun)|Ictiobus|genus Ictiobus|fish genus +ictiobus niger|1 +(noun)|black buffalo|Ictiobus niger|buffalo fish|buffalofish +ictodosaur|1 +(noun)|synapsid|synapsid reptile +ictodosauria|1 +(noun)|Ictodosauria|order Ictodosauria|animal order +ictonyx|1 +(noun)|Ictonyx|genus Ictonyx|mammal genus +ictonyx frenata|1 +(noun)|zoril|Ictonyx frenata|muishond +ictonyx striata|1 +(noun)|striped muishond|Ictonyx striata|muishond +ictus|1 +(noun)|seizure|raptus|attack +icu|1 +(noun)|intensive care unit|ICU|unit|social unit +icy|4 +(adj)|frigid|frosty|frozen|glacial|wintry|cold +(adj)|arctic|frigid|gelid|glacial|polar|cold +(adj)|frozen +(adj)|glazed |shiny +id|3 +(noun)|Idaho|Gem State|ID|American state +(noun)|ID|I.D.|badge|positive identification +(noun)|instinct|inherent aptitude +id al-adha|1 +(noun)|Id al-Adha|Feast of Sacrifice|feast day|fete day +id al-fitr|1 +(noun)|Id al-Fitr|feast day|fete day +id est|1 +(adv)|i.e.|ie|that is +ida|1 +(noun)|International Development Association|IDA|United Nations agency|UN agency +idaho|1 +(noun)|Idaho|Gem State|ID|American state +idaho falls|1 +(noun)|Idaho Falls|town +idahoan|1 +(noun)|Idahoan|American +iddm|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +idea|5 +(noun)|thought|content|cognitive content|mental object +(noun)|opinion|sentiment|persuasion|view|thought +(noun)|estimate|estimation|approximation|calculation|computation|figuring|reckoning +(noun)|mind|purpose|intent|intention|aim|design +(noun)|theme|melodic theme|musical theme|tune|melody|air|strain|melodic line|line|melodic phrase +ideal|5 +(adj)|perfect +(adj)|abstract +(adj)|idealistic|philosophical doctrine|philosophical theory +(noun)|idea|thought +(noun)|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch|model|role model +ideal gas|1 +(noun)|perfect gas|gas +ideal solid|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|polyhedron +idealisation|3 +(noun)|idealization|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|idealization|idea|thought +(noun)|idealization|glorification|admiration|appreciation +idealise|2 +(verb)|idealize|see|consider|reckon|view|regard +(verb)|idealize|think up|think of|dream up|hatch|concoct +idealised|1 +(adj)|idealized|perfect +idealism|3 +(noun)|philosophical doctrine|philosophical theory +(noun)|impracticality +(noun)|high-mindedness|noble-mindedness|nobility|magnanimousness|grandeur +idealist|1 +(noun)|dreamer|visionary +idealistic|2 +(adj)|ideal|philosophical doctrine|philosophical theory +(adj)|exalted|high-flown|high-minded|lofty|rarefied|rarified|noble-minded|noble +ideality|1 +(noun)|quality +idealization|3 +(noun)|idealisation|glorification|admiration|appreciation +(noun)|idealisation|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|idealisation|idea|thought +idealize|2 +(verb)|idealise|see|consider|reckon|view|regard +(verb)|idealise|think up|think of|dream up|hatch|concoct +idealized|1 +(adj)|idealised|perfect +ideate|1 +(verb)|imagine|conceive of|envisage|create by mental act|create mentally +ideation|1 +(noun)|thinking|thought|cerebration|intellection|mentation +ideational|1 +(adj)|conceptional|notional|abstract +idempotent|1 +(adj)|unchanged +identical|5 +(adj)|indistinguishable|same +(adj)|one and the same|selfsame|very|same +(adj)|identical |monovular +(adj)|isotropic |isotropous +(adj)|superposable|congruent +identical twin|1 +(noun)|monozygotic twin|monozygous twin|twin +identicalness|1 +(noun)|identity|indistinguishability|sameness +identifiable|1 +(adj)|identifiable |acknowledgeable|classifiable|distinctive|diagnosable|recognizable|recognisable|placeable|specifiable +identification|5 +(noun)|designation|determination|finding +(noun)|identity|personal identity|individuality +(noun)|evidence +(noun)|condition|status +(noun)|recognition|memory|remembering +identification number|1 +(noun)|number|positive identification +identified|1 +(adj)|known +identifier|1 +(noun)|symbol +identify|6 +(verb)|place|determine|set +(verb)|name|denote|refer +(verb)|see|consider|reckon|view|regard +(verb)|associate|tie in|relate|link|colligate|link up|connect +(verb)|discover|key|key out|distinguish|describe|name +(verb)|recognize|recognise +identifying|1 +(adj)|distinguishing|distinctive|characteristic +identikit|1 +(noun)|Identikit|Identikit picture|likeness|semblance +identikit picture|1 +(noun)|Identikit|Identikit picture|likeness|semblance +identity|4 +(noun)|personal identity|individuality|personality +(noun)|recognition|identification +(noun)|identity element|identity operator|operator +(noun)|identicalness|indistinguishability|sameness +identity card|1 +(noun)|card|positive identification +identity crisis|1 +(noun)|psychological state|mental state +identity element|1 +(noun)|identity|identity operator|operator +identity matrix|1 +(noun)|unit matrix|scalar matrix +identity operator|1 +(noun)|identity|identity element|operator +identity theft|1 +(noun)|fraud +identity verification|1 +(noun)|biometric identification|biometric authentication|identification +ideogram|1 +(noun)|ideograph|character|grapheme|graphic symbol +ideograph|1 +(noun)|ideogram|character|grapheme|graphic symbol +ideographic|1 +(adj)|character|grapheme|graphic symbol +ideography|1 +(noun)|orthography|writing system +ideologic|1 +(adj)|ideological|philosophical |philosophic +ideological|1 +(adj)|ideologic|philosophical |philosophic +ideological barrier|1 +(noun)|barrier|roadblock +ideologist|1 +(noun)|ideologue|advocate|advocator|proponent|exponent +ideologue|1 +(noun)|ideologist|advocate|advocator|proponent|exponent +ideology|2 +(noun)|political orientation|political theory|orientation +(noun)|theorization|theorisation +ides|1 +(noun)|day +idesia|1 +(noun)|Idesia polycarpa|tree +idesia polycarpa|1 +(noun)|idesia|Idesia polycarpa|tree +idf|1 +(noun)|Israeli Defense Force|IDF|military unit|military force|military group|force +idiocy|1 +(noun)|amentia|retardation|mental retardation|backwardness|slowness|subnormality +idiographic|1 +(adj)|idiographic +idiolatry|1 +(noun)|autolatry|self-worship|worship +idiolect|1 +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +idiom|4 +(noun)|parlance|formulation|expression +(noun)|dialect|accent|non-standard speech +(noun)|artistic style|manner|mode|style|way|fashion +(noun)|idiomatic expression|phrasal idiom|set phrase|phrase|saying|expression|locution +idiom neutral|1 +(noun)|Idiom Neutral|artificial language +idiomatic|1 +(adj)|idiomatical|formulation|expression +idiomatic expression|1 +(noun)|idiom|phrasal idiom|set phrase|phrase|saying|expression|locution +idiomatical|1 +(adj)|idiomatic|formulation|expression +idiopathic|1 +(adj)|disorder|upset +idiopathic disease|1 +(noun)|idiopathic disorder|idiopathy|disorder|upset +idiopathic disorder|1 +(noun)|idiopathic disease|idiopathy|disorder|upset +idiopathic hemochromatosis|1 +(noun)|classic hemochromatosis|hemochromatosis|iron-storage disease|iron overload|bronzed diabetes +idiopathic thrombocytopenic purpura|1 +(noun)|thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura|peliosis|autoimmune disease|autoimmune disorder +idiopathy|1 +(noun)|idiopathic disease|idiopathic disorder|disorder|upset +idiosyncrasy|1 +(noun)|foible|mannerism|peculiarity|specialness|specialty|speciality|distinctiveness +idiosyncratic|1 +(adj)|individual +idiot|1 +(noun)|imbecile|cretin|moron|changeling|half-wit|retard|simpleton|simple +idiot box|1 +(noun)|television receiver|television|television set|tv|tv set|boob tube|telly|goggle box|receiver|receiving system +idiot light|1 +(noun)|red light|warning light +idiot savant|1 +(noun)|simpleton|simple +idiotic|3 +(adj)|crackbrained|insane +(adj)|absurd|cockeyed|derisory|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish +(adj)|imbecile|imbecilic|unintelligent |stupid +iditarod|1 +(noun)|Iditarod|Iditarod Trail Dog Sled Race|cross country +iditarod trail|1 +(noun)|Iditarod Trail|trail +iditarod trail dog sled race|1 +(noun)|Iditarod|Iditarod Trail Dog Sled Race|cross country +idle|9 +(adj)|idle |bone-idle|bone-lazy|faineant|indolent|lazy|otiose|slothful|work-shy|lackadaisical|leisured|unengaged|ineffective|uneffective|ineffectual|unemployed +(adj)|baseless|groundless|unfounded|unwarranted|unsupported +(adj)|unused|inactive +(adj)|light|frivolous +(adj)|loose|irresponsible +(adj)|dead|unprofitable +(adj)|jobless|out of work|unemployed +(verb)|tick over +(verb)|laze|slug|stagnate +idle pulley|1 +(noun)|idler pulley|idle wheel|pulley|pulley-block|block +idle talk|1 +(noun)|prate|prattle|blether|chin music|yak|yack|yakety-yak|chatter|cackle +idle wheel|1 +(noun)|idle pulley|idler pulley|pulley|pulley-block|block +idle words|1 +(noun)|wind|jazz|nothingness|talk|talking +idleness|2 +(noun)|idling|loafing|inactivity +(noun)|faineance|indolence|laziness +idler|1 +(noun)|loafer|do-nothing|layabout|bum|nonworker +idler pulley|1 +(noun)|idle pulley|idle wheel|pulley|pulley-block|block +idling|1 +(noun)|idleness|loafing|inactivity +idly|1 +(adv)|lazily +ido|1 +(noun)|Ido|artificial language +idocrase|1 +(noun)|vesuvianite|vesuvian|mineral +idol|3 +(noun)|graven image|god|effigy|image|simulacrum +(noun)|matinee idol|star|principal|lead +(noun)|paragon|perfection|beau ideal|ideal +idol worship|1 +(noun)|idolatry|worship +idol worshiper|1 +(noun)|idolater|idolizer|idoliser|heathen|pagan|gentile|infidel +idolater|1 +(noun)|idolizer|idoliser|idol worshiper|heathen|pagan|gentile|infidel +idolatress|1 +(noun)|idolater|idolizer|idoliser|idol worshiper +idolatrous|2 +(adj)|worship +(adj)|loving +idolatry|2 +(noun)|devotion|veneration|cultism|worship +(noun)|idol worship|worship +idolisation|2 +(noun)|adoration|idolization|admiration|appreciation +(noun)|idolization|worship +idolise|1 +(verb)|idolize|worship|hero-worship|revere|adore +idolised|1 +(adj)|adored|idolized|worshipped|loved +idoliser|2 +(noun)|idolizer|lover +(noun)|idolater|idolizer|idol worshiper|heathen|pagan|gentile|infidel +idolization|2 +(noun)|adoration|idolisation|admiration|appreciation +(noun)|idolisation|worship +idolize|1 +(verb)|idolise|worship|hero-worship|revere|adore +idolized|1 +(adj)|adored|idolised|worshipped|loved +idolizer|2 +(noun)|idoliser|lover +(noun)|idolater|idoliser|idol worshiper|heathen|pagan|gentile|infidel +idp|1 +(noun)|integrated data processing|IDP|automatic data processing|ADP +idria columnaris|1 +(noun)|boojum tree|cirio|Fouquieria columnaris|Idria columnaris|candlewood +idun|1 +(noun)|Idun|Ithunn|Norse deity +idyll|3 +(noun)|episode +(noun)|pastorale|pastoral|musical composition|opus|composition|piece|piece of music +(noun)|eclogue|bucolic|pastoral +idyllic|2 +(adj)|perfect +(adj)|pastoral|pleasant +ie|1 +(adv)|i.e.|id est|that is +ieoh ming pei|1 +(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect|designer +ifc|1 +(noun)|International Finance Corporation|IFC|United Nations agency|UN agency +iffy|1 +(adj)|chancy|fluky|flukey|uncertain +ig|1 +(noun)|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin|gamma globulin|human gamma globulin|antibody +iga|1 +(noun)|immunoglobulin A|IgA|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +igbo|1 +(noun)|Igbo|Nigerian|ethnic group|ethnos +igd|1 +(noun)|immunoglobulin D|IgD|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +ige|1 +(noun)|immunoglobulin E|IgE|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +igg|1 +(noun)|immunoglobulin G|IgG|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +igigi|1 +(noun)|Igigi|Semitic deity +iglesias|1 +(noun)|Iglesias|Julio Iglesias|singer|vocalist|vocalizer|vocaliser +igloo|1 +(noun)|iglu|hovel|hut|hutch|shack|shanty +iglu|1 +(noun)|igloo|hovel|hut|hutch|shack|shanty +igm|1 +(noun)|immunoglobulin M|IgM|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +ignace jan paderewski|1 +(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist|piano player|statesman|solon|national leader +ignace paderewski|1 +(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist|piano player|statesman|solon|national leader +ignatius|1 +(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop|saint +ignatius of loyola|1 +(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian|theologist|theologizer|theologiser|saint +igneous|2 +(adj)|pyrogenic|pyrogenous|temperature +(adj)|fiery|hot +igneous rock|1 +(noun)|rock|stone +ignescent|1 +(adj)|combustible +ignis fatuus|2 +(noun)|friar's lantern|jack-o'-lantern|will-o'-the-wisp|light|visible light|visible radiation +(noun)|will-o'-the-wisp|illusion|fantasy|phantasy|fancy +ignitable|1 +(adj)|burnable|flammable|ignitible|inflammable|combustible +ignite|3 +(verb)|light|burn|combust +(verb)|erupt|catch fire|take fire|combust|conflagrate|change state|turn +(verb)|inflame|stir up|wake|heat|fire up|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +ignited|1 +(adj)|enkindled|kindled|lighted |lit +igniter|2 +(noun)|ignitor|lighter|fuel +(noun)|lighter|light|ignitor|device +ignitible|1 +(adj)|burnable|flammable|ignitable|inflammable|combustible +ignition|3 +(noun)|natural process|natural action|action|activity +(noun)|ignition system|mechanism +(noun)|firing|lighting|kindling|inflammation|burning|combustion +ignition coil|1 +(noun)|induction coil +ignition key|1 +(noun)|key +ignition lock|1 +(noun)|lock|restraint|constraint +ignition switch|1 +(noun)|switch|electric switch|electrical switch +ignition system|1 +(noun)|ignition|mechanism +ignitor|2 +(noun)|igniter|lighter|fuel +(noun)|lighter|light|igniter|device +ignoble|2 +(adj)|ignoble |base|mean|meanspirited|contemptible|despicable|currish|dishonorable|dishonourable|contemptible|cowardly|fearful|dishonorable|dishonourable +(adj)|ungentle|untitled|lowborn +ignobleness|1 +(noun)|dishonorableness|dishonourableness +ignobly|1 +(adv)|currishly +ignominious|1 +(adj)|black|disgraceful|inglorious|opprobrious|shameful|dishonorable |dishonourable +ignominiously|1 +(adv)|disgracefully|ingloriously|discreditably|shamefully|dishonorably|dishonourably +ignominiousness|1 +(noun)|shamefulness|disgracefulness|unworthiness +ignominy|1 +(noun)|shame|disgrace|dishonor|dishonour +ignoramus|1 +(noun)|know nothing|uneducated person|unskilled person +ignorance|1 +(noun)|content|cognitive content|mental object +ignorant|6 +(adj)|nescient|unenlightened|unlearned|unlettered|uneducated +(adj)|illiterate|uneducated +(adj)|inexperienced|naive |naif +(adj)|innocent|unconscious +(adj)|unversed +(adj)|unknowledgeable|unknowing|unwitting|uninformed +ignorantness|1 +(noun)|nescience|unknowing|unknowingness|ignorance +ignoratio elenchi|1 +(noun)|logical fallacy +ignore|3 +(verb)|disregard|snub|cut|treat|handle|do by +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|reject +(verb)|neglect|disregard +ignored|1 +(adj)|neglected|unheeded|unnoticed +igor fyodorovich stravinsky|1 +(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer +igor ivanovich sikorsky|1 +(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist +igor sikorsky|1 +(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist +igor stravinsky|1 +(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer +igor tamm|1 +(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist +igor yevgeneevich tamm|1 +(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist +iguana|1 +(noun)|common iguana|Iguana iguana|iguanid|iguanid lizard +iguana iguana|1 +(noun)|common iguana|iguana|Iguana iguana|iguanid|iguanid lizard +iguania|1 +(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family +iguanid|1 +(noun)|iguanid lizard|lizard +iguanid lizard|1 +(noun)|iguanid|lizard +iguanidae|1 +(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family +iguanodon|1 +(noun)|dinosaur +iguanodontidae|1 +(noun)|Iguanodontidae|family Iguanodontidae|reptile family +iguassu|1 +(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall|falls +iguassu falls|1 +(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall|falls +iguazu|1 +(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall|falls +iguazu falls|1 +(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall|falls +ii|2 +(adj)|two|2|cardinal +(noun)|two|2|II|deuce|digit|figure +ii chronicles|1 +(noun)|II Chronicles|2 Chronicles|book +ii corinthians|1 +(noun)|Second Epistle of Paul the Apostle to the Corinthians|Second Epistle to the Corinthians|II Corinthians|book +ii esdras|1 +(noun)|II Esdras|2 Esdras|book +ii john|1 +(noun)|Second Epistel of John|II John|book +ii kings|1 +(noun)|II Kings|2 Kings|book +ii maccabees|1 +(noun)|II Maccabees|2 Maccabees|book +ii peter|1 +(noun)|Second Epistle of Peter|II Peter|book +ii samuel|1 +(noun)|II Samuel|2 Samuel|book +ii thessalonians|1 +(noun)|Second Epistle of Paul the Apostle to the Thessalonians|Second Epistle to the Thessalonians|II Thessalonians|book +ii timothy|1 +(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|book +iii|2 +(adj)|three|3|cardinal +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +iii john|1 +(noun)|Third Epistel of John|III John|book +iis|2 +(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency +(noun)|two|2|II|deuce|digit|figure +ijssel|1 +(noun)|IJssel|IJssel river|river +ijssel river|1 +(noun)|IJssel|IJssel river|river +ijsselmeer|1 +(noun)|IJsselmeer|lake +ijtihad|1 +(noun)|interpretation +ike|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +ikhanaton|1 +(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king|male monarch +ikon|2 +(noun)|picture|image|icon|representation +(noun)|icon|painting|picture +il|2 +(adj)|forty-nine|49|cardinal +(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state +il duce|1 +(noun)|Mussolini|Benito Mussolini|Il Duce|dictator|potentate +ilama|2 +(noun)|ilama tree|Annona diversifolia|custard apple|custard apple tree +(noun)|custard apple +ilama tree|1 +(noun)|ilama|Annona diversifolia|custard apple|custard apple tree +ilang-ilang|2 +(noun)|essential oil|volatile oil +(noun)|ylang-ylang|Cananga odorata|angiospermous tree|flowering tree +ile-de-france|1 +(noun)|Ile-de-France|French region +ile-st-louis|1 +(noun)|Ile-St-Louis|island +ileal artery|1 +(noun)|intestinal artery|arteria ileum|artery|arteria|arterial blood vessel +ileitis|1 +(noun)|inflammation|redness|rubor +ileocecal valve|1 +(noun)|valve +ileocolic artery|1 +(noun)|arteria ileocolica|artery|arteria|arterial blood vessel +ileocolic vein|1 +(noun)|vena ileocolica|vein|vena|venous blood vessel +ileostomy|1 +(noun)|ostomy +iles comores|1 +(noun)|Comoro Islands|Iles Comores|archipelago +iles marquises|1 +(noun)|Marquesas Islands|Iles Marquises|archipelago +ileum|1 +(noun)|small intestine +ileus|1 +(noun)|intestinal obstruction|obstruction|blockage|enteropathy +ilex|1 +(noun)|Ilex|genus Ilex|dicot genus|magnoliopsid genus +ilex cornuta|1 +(noun)|Chinese holly|Ilex cornuta|shrub|bush +ilex decidua|1 +(noun)|bearberry|possum haw|winterberry|Ilex decidua|holly +ilex glabra|1 +(noun)|inkberry|gallberry|gall-berry|evergreen winterberry|Ilex glabra|holly +ilex paraguariensis|1 +(noun)|mate|Paraguay tea|Ilex paraguariensis|holly +iliac|1 +(adj)|bone|os +iliac artery|1 +(noun)|arteria iliaca|artery|arteria|arterial blood vessel +iliac vein|1 +(noun)|vena iliaca|vein|vena|venous blood vessel +iliad|1 +(noun)|Iliad|epic poem|heroic poem|epic|epos +iliamna|1 +(noun)|Iliamna|genus Iliamna|dilleniid dicot genus +iliamna acerifolia|1 +(noun)|mountain hollyhock|Iliamna ruvularis|Iliamna acerifolia|mallow +iliamna remota|1 +(noun)|wild hollyhock|Iliamna remota|Sphaeralcea remota|mallow +iliamna ruvularis|1 +(noun)|mountain hollyhock|Iliamna ruvularis|Iliamna acerifolia|mallow +ilich ramirez sanchez|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +ilich sanchez|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +iliolumbar artery|1 +(noun)|arteria iliolumbalis|artery|arteria|arterial blood vessel +iliolumbar vein|1 +(noun)|vena iliolumbalis|vein|vena|venous blood vessel +ilion|1 +(noun)|Troy|Ilion|Ilium|city|metropolis|urban center +ilium|2 +(noun)|Troy|Ilion|Ilium|city|metropolis|urban center +(noun)|bone|os +ilk|1 +(noun)|kind|sort|form|variety +ill|8 +(adj)|ill |sick|afflicted|stricken|aguish|ailing|indisposed|peaked|poorly|sickly|unwell|under the weather|airsick|air sick|carsick|seasick|bedfast|bedridden|bedrid|infirm|sick-abed|bilious|liverish|livery|bronchitic|consumptive|convalescent|recovering|delirious|hallucinating|diabetic|dizzy|giddy|woozy|vertiginous|dyspeptic|faint|light|swooning|light-headed|lightheaded|feverish|feverous|funny|gouty|laid low|stricken|menstruating|unwell|nauseated|queasy|sick|sickish|scrofulous|tubercular|tuberculous|unhealed|upset|green|laid up|sneezy|spastic|unhealthy|unfit +(adj)|harmful +(adj)|bad +(adj)|hostile +(adj)|inauspicious|ominous|unpropitious +(noun)|ailment|complaint|disorder|upset +(adv)|badly|poorly +(adv)|badly +ill-advised|1 +(adj)|ill-advised |unadvised|foolish|imprudent +ill-affected|1 +(adj)|disaffected|malcontent|rebellious|discontented |discontent +ill-being|1 +(noun)|adversity|hardship|hard knocks +ill-bred|1 +(adj)|bounderish|lowbred|rude|underbred|yokelish|unrefined +ill-breeding|1 +(noun)|bad manners|impoliteness +ill-chosen|1 +(adj)|awkward|clumsy|cumbersome|inapt|inept|infelicitous +ill-conceived|1 +(adj)|misguided|foolish +ill-considered|1 +(adj)|ill-judged|improvident|shortsighted|imprudent +ill-defined|1 +(adj)|ill-defined |unclear +ill-equipped|1 +(adj)|unequipped +ill-famed|1 +(adj)|infamous|notorious|disreputable +ill-fated|1 +(adj)|doomed|ill-omened|ill-starred|unlucky|unfortunate +ill-favored|1 +(adj)|ill-favoured|ugly +ill-favoured|1 +(adj)|ill-favored|ugly +ill-fed|1 +(adj)|underfed|undernourished|malnourished +ill-formed|1 +(adj)|ungrammatical +ill-gotten|1 +(adj)|dirty|illegal +ill-humored|1 +(adj)|crusty|curmudgeonly|gruff|ill-humoured|ill-natured +ill-humoured|1 +(adj)|crusty|curmudgeonly|gruff|ill-humored|ill-natured +ill-judged|1 +(adj)|ill-considered|improvident|shortsighted|imprudent +ill-mannered|1 +(adj)|rude|unmannered|unmannerly|impolite +ill-natured|1 +(adj)|ill-natured |atrabilious|bilious|dyspeptic|liverish|bristly|prickly|splenetic|waspish|cantankerous|crotchety|ornery|choleric|irascible|hotheaded|hot-tempered|quick-tempered|short|short-tempered|churlish|crabbed|crabby|cross|fussy|grouchy|grumpy|bad-tempered|ill-tempered|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|techy|crusty|curmudgeonly|gruff|ill-humored|ill-humoured|currish|dark|dour|glowering|glum|moody|morose|saturnine|sour|sullen|feisty|touchy|huffish|sulky|misanthropic|misanthropical|misogynous|shirty|snorty|shrewish|nagging|snappish|snappy|spoiled|spoilt|surly|ugly|disagreeable|unpleasant +ill-omened|1 +(adj)|doomed|ill-fated|ill-starred|unlucky|unfortunate +ill-proportioned|2 +(adj)|lopsided|one-sided|asymmetrical |asymmetric +(adj)|unshapely +ill-shapen|1 +(adj)|deformed|distorted|malformed|misshapen|unshapely +ill-sorted|1 +(adj)|incompatible|mismated|unsuited|mismatched +ill-starred|1 +(adj)|doomed|ill-fated|ill-omened|unlucky|unfortunate +ill-tempered|1 +(adj)|crabbed|crabby|cross|fussy|grouchy|grumpy|bad-tempered|ill-natured +ill-timed|2 +(adj)|ill timed|unseasonable|untimely|wrong|inopportune +(adj)| +ill-treat|1 +(verb)|mistreat|maltreat|abuse|ill-use|step|treat|handle|do by +ill-treated|1 +(adj)|abused |maltreated|mistreated|assaulted|molested|raped|battered|beaten|misunderstood|cuffed|slapped +ill-treatment|1 +(noun)|maltreatment|ill-usage|abuse|mistreatment +ill-usage|1 +(noun)|maltreatment|ill-treatment|abuse|mistreatment +ill-use|1 +(verb)|mistreat|maltreat|abuse|step|ill-treat|treat|handle|do by +ill-used|1 +(adj)|exploited|put-upon|used|victimized|victimised|misused +ill at ease|1 +(adj)|awkward|uneasy|uncomfortable +ill fame|1 +(noun)|notoriety|infamy +ill health|1 +(noun)|unhealthiness|health problem|pathological state +ill humor|1 +(noun)|ill humour|distemper|temper|mood|humor|humour +ill humour|1 +(noun)|ill humor|distemper|temper|mood|humor|humour +ill luck|1 +(noun)|misfortune|bad luck|tough luck|fortune|destiny|fate|luck|lot|circumstances|portion +ill nature|1 +(noun)|disposition|temperament +ill service|1 +(noun)|disservice|ill turn|injury +ill temper|1 +(noun)|bad temper|anger|choler|ire +ill timed|2 +(adj)|ill-timed|unseasonable|untimely|wrong|inopportune +(adj)| +ill turn|1 +(noun)|disservice|ill service|injury +ill will|2 +(noun)|hostility|enmity|hate|hatred +(noun)|hostility|unfriendliness +illampu|1 +(noun)|Illampu|mountain peak +illation|1 +(noun)|inference|reasoning|logical thinking|abstract thought +illative|3 +(adj)|inferential|reasoning|logical thinking|abstract thought +(adj)|inferential|deductive +(adj)|deductive +illecebrum|1 +(noun)|Illecebrum|genus Illecebrum|caryophylloid dicot genus +illecebrum verticullatum|1 +(noun)|coral necklace|Illecebrum verticullatum|herb|herbaceous plant +illegal|1 +(adj)|illegal |amerciable|banned|prohibited|bootleg|black|black-market|contraband|smuggled|criminal|felonious|dirty|ill-gotten|embezzled|misappropriated|extrajudicial|extralegal|nonlegal|hot|illegitimate|illicit|outlaw|outlawed|unlawful|ineligible|misbranded|mislabeled|under-the-counter|unratified|penal|punishable|illegitimate|irregular|unlawful +illegal possession|1 +(noun)|criminal possession +illegalise|1 +(verb)|outlaw|criminalize|criminalise|illegalize|forbid|prohibit|interdict|proscribe|veto|disallow +illegality|1 +(noun)|unlawfulness +illegalize|1 +(verb)|outlaw|criminalize|criminalise|illegalise|forbid|prohibit|interdict|proscribe|veto|disallow +illegally|1 +(adv)|illicitly|lawlessly +illegibility|1 +(noun)|incomprehensibility +illegible|1 +(adj)|illegible |dirty|foul|marked-up|indecipherable|unclear|undecipherable|unreadable +illegibly|1 +(adv)|undecipherably|unreadably +illegitimacy|2 +(noun)|bastardy|bar sinister|status|position +(noun)|unlawfulness +illegitimate|3 +(adj)|illicit|outlaw|outlawed|unlawful|illegal +(adj)|illegitimate |adulterine|base|baseborn|bastard|bastardly|misbegot|misbegotten|spurious|fatherless|left-handed|unlawful|wrongful|illegal|invalid|unauthorized|unauthorised +(noun)|bastard|by-blow|love child|illegitimate child|whoreson|offspring|progeny|issue +illegitimate child|1 +(noun)|bastard|by-blow|love child|illegitimate|whoreson|offspring|progeny|issue +illegitimate enterprise|1 +(noun)|racket|fraudulent scheme|enterprise|endeavor|endeavour +illegitimately|2 +(adv)|illicitly +(adv)|out of wedlock +illiberal|1 +(adj)|intolerant|narrow-minded |narrow +illiberality|1 +(noun)|stinginess +illiberally|1 +(adv)|intolerantly +illicit|2 +(adj)|illicit |adulterous|extramarital|extracurricular|unlawful +(adj)|illegitimate|outlaw|outlawed|unlawful|illegal +illicitly|2 +(adv)|illegitimately +(adv)|illegally|lawlessly +illicitness|1 +(noun)|unlawfulness +illicium|1 +(noun)|Illicium|genus Illicium|magnoliid dicot genus +illicium anisatum|1 +(noun)|star anise|Illicium anisatum|anise tree +illicium floridanum|1 +(noun)|purple anise|Illicium floridanum|anise tree +illicium verum|1 +(noun)|star anise|Chinese anise|Illicium verum|anise tree +illimani|1 +(noun)|Illimani|mountain peak +illimitable|1 +(adj)|limitless|measureless|unmeasured|immeasurable |unmeasurable|immensurable +illinois|3 +(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state +(noun)|Illinois|Algonquian|Algonquin +(noun)|Illinois|Algonquian|Algonquin|Algonquian language +illinois river|1 +(noun)|Illinois River|river +illinoisan|1 +(noun)|Illinoisan|American +illiteracy|2 +(noun)|ignorance +(noun)|analphabetism|inability +illiterate|3 +(adj)|illiterate |analphabetic|unlettered|functionally illiterate|preliterate|semiliterate|semiliterate|uneducated +(adj)|ignorant|uneducated +(noun)|illiterate person|nonreader|ignoramus|know nothing|uneducated person +illiterate person|1 +(noun)|illiterate|nonreader|ignoramus|know nothing|uneducated person +illness|1 +(noun)|unwellness|malady|sickness|ill health|unhealthiness|health problem +illogic|1 +(noun)|illogicality|illogicalness|quality +illogical|2 +(adj)|illogical |unlogical|absurd|unreasonable|inconsequential|intuitive|nonrational|visceral|incoherent|irrational|unreasonable +(adj)|confused|disconnected|disjointed|disordered|garbled|scattered|unconnected|incoherent +illogicality|1 +(noun)|illogicalness|illogic|quality +illogicalness|1 +(noun)|illogicality|illogic|quality +illume|1 +(verb)|light|illumine|light up|illuminate|lighten|lighten up +illuminance|1 +(noun)|illumination|luminosity|brightness|brightness level|luminance|luminousness|light +illuminant|1 +(noun)|fuel +illuminate|3 +(verb)|light|illume|illumine|light up|lighten|lighten up +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|elucidate|clarify|clear up|elucidate +(verb)|decorate|adorn|grace|ornament|embellish|beautify +illuminated|1 +(adj)|lighted|lit|well-lighted|light +illuminating|2 +(adj)|illuminating |enlightening +(adj)|light +illumination|5 +(noun)|light|condition|status +(noun)|state +(noun)|clarification|elucidation|interpretation +(noun)|illuminance|luminosity|brightness|brightness level|luminance|luminousness|light +(noun)|miniature|painting|picture +illumination unit|1 +(noun)|light unit +illumine|1 +(verb)|light|illume|light up|illuminate|lighten|lighten up +illusion|4 +(noun)|semblance|appearance +(noun)|fantasy|phantasy|fancy|misconception +(noun)|delusion|head game|deception|deceit|dissembling|dissimulation +(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|deception|performance +illusional|1 +(adj)|illusionary|unreal +illusionary|1 +(adj)|illusional|unreal +illusionist|2 +(noun)|visionary|seer|intellectual|intellect +(noun)|magician|prestidigitator|conjurer|conjuror|performer|performing artist +illusive|1 +(adj)|illusory|unreal +illusory|1 +(adj)|illusive|unreal +illustrate|3 +(verb)|exemplify|instance|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|picture|depict|render|show +(verb)|decorate|adorn|grace|ornament|embellish|beautify +illustration|4 +(noun)|artwork|art|graphics|nontextual matter +(noun)|exemplification|demonstration|demo +(noun)|example|instance|representative|information +(noun)|representation +illustrative|2 +(adj)|exemplifying|informative |informatory +(adj)|demonstrative|instructive |informative +illustrator|1 +(noun)|artist|creative person +illustrious|3 +(adj)|celebrated|famed|far-famed|famous|notable|noted|renowned|known +(adj)|glorious +(adj)|glorious|redoubtable|respected|proud +illyria|1 +(noun)|Illyria|geographical area|geographic area|geographical region|geographic region +illyrian|1 +(noun)|Illyrian|Indo-European|Indo-European language|Indo-Hittite +ilmen|1 +(noun)|Lake Ilmen|Ilmen|lake +ilmenite|1 +(noun)|mineral +ilo|1 +(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency|UN agency +ilosone|1 +(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +ilx|1 +(adj)|fifty-nine|59|cardinal +ilxx|1 +(adj)|sixty-nine|69|cardinal +ilxxx|1 +(adj)|seventy-nine|79|cardinal +ilya ehrenberg|1 +(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer|author +ilya grigorievich ehrenberg|1 +(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer|author +ilya ilich metchnikov|1 +(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist +image|8 +(noun)|mental image|representation|mental representation|internal representation +(noun)|picture|icon|ikon|representation +(noun)|persona|appearance|visual aspect +(noun)|prototype|paradigm|epitome|model|example +(noun)|trope|figure of speech|figure|rhetorical device +(noun)|double|look-alike|person|individual|someone|somebody|mortal|human|soul +(noun)|effigy|simulacrum|representation +(verb)|visualize|visualise|envision|project|fancy|see|figure|picture|imagine|conceive of|ideate|envisage +image breaker|1 +(noun)|iconoclast|destroyer|ruiner|undoer|waster|uprooter +image compression|1 +(noun)|compression +image orthicon|1 +(noun)|orthicon|television-camera tube|television pickup tube +image scanner|1 +(noun)|scanner|digital scanner|electronic device|data input device|input device +imagery|1 +(noun)|imagination|imaging|mental imagery|representational process +imaginable|1 +(adj)|conceivable|possible|thinkable +imaginary|1 +(adj)|fanciful|imagined|notional|unreal +imaginary being|1 +(noun)|imaginary creature|imagination|imaginativeness|vision +imaginary creature|1 +(noun)|imaginary being|imagination|imaginativeness|vision +imaginary number|1 +(noun)|complex number|complex quantity|number +imaginary part|1 +(noun)|imaginary part of a complex number|pure imaginary number +imaginary part of a complex number|1 +(noun)|imaginary part|pure imaginary number +imaginary place|1 +(noun)|mythical place|imagination|imaginativeness|vision +imagination|3 +(noun)|imaginativeness|vision|creativity|creativeness|creative thinking +(noun)|imaging|imagery|mental imagery|representational process +(noun)|resource|resourcefulness|inventiveness|ingeniousness|ingenuity|cleverness +imagination image|1 +(noun)|thought-image|image|mental image +imaginative|1 +(adj)|ingenious|inventive|creative |originative +imaginative comparison|1 +(noun)|comparison +imaginativeness|1 +(noun)|imagination|vision|creativity|creativeness|creative thinking +imagine|2 +(verb)|conceive of|ideate|envisage|create by mental act|create mentally +(verb)|think|opine|suppose|reckon|guess|expect|anticipate +imagined|1 +(adj)|fanciful|imaginary|notional|unreal +imaging|2 +(noun)|imagination|imagery|mental imagery|representational process +(noun)|tomography|pictorial representation|picturing +imagism|1 +(noun)|artistic movement|art movement +imago|2 +(noun)|prototype|paradigm|epitome|image +(noun)|insect +imam|1 +(noun)|imaum|leader|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +imamu amiri baraka|1 +(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer|author +imaret|1 +(noun)|hostel|hostelry|inn|lodge +imaum|1 +(noun)|imam|leader|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +imavate|1 +(noun)|imipramine|impramine hydrochloride|Imavate|Tofranil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +imbalance|2 +(noun)|instability|unbalance|disequilibrium +(noun)|asymmetry|spatial property|spatiality +imbalanced|1 +(adj)|unbalanced +imbauba|1 +(noun)|trumpetwood|trumpet-wood|trumpet tree|snake wood|Cecropia peltata|angiospermous tree|flowering tree +imbecile|2 +(adj)|imbecilic|idiotic|unintelligent |stupid +(noun)|idiot|cretin|moron|changeling|half-wit|retard|simpleton|simple +imbecilic|1 +(adj)|imbecile|idiotic|unintelligent |stupid +imbecility|2 +(noun)|retardation|mental retardation|backwardness|slowness|subnormality +(noun)|stupidity|betise|folly|foolishness|mistake|error|fault +imbed|1 +(verb)|implant|engraft|embed|plant|insert|infix|enter|introduce +imbibe|4 +(verb)|absorb|suck|soak up|sop up|suck up|draw|take in|take up +(verb)|assimilate|absorb +(verb)|drink|consume|ingest|take in|take|have +(verb)|absorb|assimilate|ingest|take in +imbiber|1 +(noun)|drinker|toper|juicer|consumer +imbibing|1 +(noun)|drinking|imbibition|consumption|ingestion|intake|uptake +imbibition|2 +(noun)|absorption|soaking up +(noun)|drinking|imbibing|consumption|ingestion|intake|uptake +imbricate|3 +(adj)|imbricated|rough |unsmooth +(verb)|put|set|place|pose|position|lay +(verb)|overlap +imbricated|1 +(adj)|imbricate|rough |unsmooth +imbrication|1 +(noun)|overlapping|lapping|covering +imbroglio|2 +(noun)|embroilment|situation +(noun)|misinterpretation|misunderstanding|mistaking +imbrue|1 +(verb)|drench|impregnate|saturate +imbue|3 +(verb)|permeate|pervade|penetrate|interpenetrate|diffuse|penetrate|perforate +(verb)|soak|impregnate|saturate +(verb)|hue|tinge|dye +imf|1 +(noun)|International Monetary Fund|IMF|United Nations agency|UN agency +imidazole|1 +(noun)|iminazole|glyoxaline|base|alkali +imide|1 +(noun)|organic compound +iminazole|1 +(noun)|imidazole|glyoxaline|base|alkali +imipramine|1 +(noun)|impramine hydrochloride|Imavate|Tofranil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +imitate|3 +(verb)|copy|simulate|reproduce +(verb)|resemble +(verb)|copy|re-create +imitation|5 +(adj)|fake|false|faux|simulated|artificial |unreal +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|counterfeit|forgery|copy +(noun)|copying +(noun)|caricature|impersonation|wit|humor|humour|witticism|wittiness +imitation leather|1 +(noun)|leatherette|fabric|cloth|material|textile +imitative|3 +(adj)|imitative |apish|apelike|mimetic|mimic|parrotlike|simulated +(adj)|echoic |onomatopoeic|onomatopoeical|onomatopoetic +(adj)|counterfeit |assumed|false|fictitious|fictive|pretended|put on|sham|bad|forged|base|bogus|fake|phony|phoney|bastard|inauthentic|unauthentic|spurious|mock|ostensible|ostensive|pinchbeck|pseudo|synthetic|artificial|unreal|false|insincere|unreal +imitative electronic deception|1 +(noun)|electronic imitative deception|electronic deception +imitator|2 +(noun)|impersonator|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|copycat|emulator|ape|aper|person|individual|someone|somebody|mortal|human|soul +immaculate|3 +(adj)|speckless|spick-and-span|spic-and-span|spic|spick|spotless|clean +(adj)|undefiled|pure +(adj)|faultless|impeccable|perfect +immaculate conception|2 +(noun)|Immaculate Conception|December 8|holy day of obligation +(noun)|Immaculate Conception|religious doctrine|church doctrine|gospel|creed +immaculateness|1 +(noun)|spotlessness|cleanness +immanence|1 +(noun)|immanency|inherence|presence +immanency|1 +(noun)|immanence|inherence|presence +immanent|2 +(adj)|immanent |subjective +(adj)|distributive +immanuel kant|1 +(noun)|Kant|Immanuel Kant|philosopher +immaterial|5 +(adj)|immaterial +(adj)|incorporeal |discorporate|unembodied|bodiless|unbodied|disembodied|spiritual|unbodied +(adj)|immaterial |nonmaterial|intangible|nonphysical|insubstantial|unsubstantial|unreal +(adj)|extraneous|impertinent|orthogonal|irrelevant +(adj)|indifferent|unimportant +immaterialise|1 +(verb)|immaterialize|unsubstantialize|unsubstantialise|change|alter|modify +immateriality|2 +(noun)|irrelevance|irrelevancy +(noun)|incorporeality|quality +immaterialize|1 +(verb)|immaterialise|unsubstantialize|unsubstantialise|change|alter|modify +immature|6 +(adj)|immature |adolescent|jejune|juvenile|puerile|babyish|childish|infantile|callow|inexperienced|naive|unsophisticated +(adj)|unformed|undeveloped +(adj)|young |adolescent|teen|teenage|teenaged|boyish|boylike|schoolboyish|childlike|childly|early|formative|girlish|schoolgirlish|infantile|junior|little|small|newborn|puppyish|puppylike|tender|vulnerable|youngish|youthful|vernal|preteen|preadolescent|junior|new +(adj)|green |unripe|unripened|unaged +(adj)|immature |adolescent|embryonic|embryologic|embryonal|formative|inchoative|larval|prepubescent|prepubertal|prepupal|pubescent|pupal|underdeveloped|unformed|premature|young +(adj)|unfledged |unfeathered +immaturely|1 +(adv)|jejunely +immatureness|1 +(noun)|immaturity|state +immaturity|1 +(noun)|immatureness|state +immeasurable|2 +(adj)|immeasurable |unmeasurable|immensurable|illimitable|limitless|measureless|unmeasured|abysmal +(adj)|incomputable|inestimable|incalculable +immeasurably|1 +(adv)|boundlessly|infinitely +immediacy|3 +(noun)|immediateness|directness|straightness +(noun)|immediate apprehension|intuition +(noun)|immediateness|instantaneousness|instancy|celerity|quickness|rapidity +immediate|5 +(adj)|contiguous|close +(adj)|immediate |direct|unmediated +(adj)|proximate +(adj)|present +(adj)|prompt|quick|straightaway|fast +immediate allergy|1 +(noun)|atopy|atopic allergy|type I allergic reaction|allergy|allergic reaction +immediate apprehension|1 +(noun)|immediacy|intuition +immediate constituent|1 +(noun)|constituent|grammatical constituent +immediate memory|1 +(noun)|short-term memory|STM|memory|remembering +immediate payment|1 +(noun)|cash|payment +immediately|1 +(adv)|instantly|straightaway|straight off|directly|now|right away|at once|forthwith|in real time|like a shot +immediateness|2 +(noun)|immediacy|instantaneousness|instancy|celerity|quickness|rapidity +(noun)|immediacy|directness|straightness +immemorial|1 +(adj)|old +immense|1 +(adj)|huge|vast|Brobdingnagian|large +immensely|1 +(adv)|vastly +immenseness|1 +(noun)|enormousness|grandness|greatness|immensity|sizeableness|vastness|largeness|bigness +immensity|1 +(noun)|enormousness|grandness|greatness|immenseness|sizeableness|vastness|largeness|bigness +immensurable|1 +(adj)|immeasurable |unmeasurable|illimitable|limitless|measureless|unmeasured|abysmal +immerse|4 +(verb)|plunge|penetrate|perforate +(verb)|steep|engulf|plunge|engross|absorb|soak up|concentrate|focus|center|centre|pore|rivet +(verb)|swallow|swallow up|bury|eat up|enclose|inclose|shut in +(verb)|plunge +immersion|5 +(noun)|submergence|submerging|submersion|sinking +(noun)|ingress|disappearance +(noun)|concentration|engrossment|absorption|attention +(noun)|baptism +(noun)|submersion|ducking|dousing|wetting +immersion foot|1 +(noun)|trench foot|frostbite|cryopathy +immersion heater|1 +(noun)|heating element +immigrant|1 +(noun)|migrant|migrator +immigrant class|1 +(noun)|class|social class|socio-economic class +immigrate|3 +(verb)|migrate|transmigrate +(verb)|bring in|introduce +(verb)|migrate|transmigrate +immigration|2 +(noun)|in-migration|migration +(noun)|body +immigration and naturalization service|1 +(noun)|Immigration and Naturalization Service|INS|agency|federal agency|government agency|bureau|office|authority +imminence|1 +(noun)|imminency|imminentness|impendence|impendency|forthcomingness|state +imminency|1 +(noun)|imminence|imminentness|impendence|impendency|forthcomingness|state +imminent|1 +(adj)|at hand|close at hand|impending|close +imminent abortion|1 +(noun)|threatened abortion|spontaneous abortion|miscarriage|stillbirth +imminentness|1 +(noun)|imminence|imminency|impendence|impendency|forthcomingness|state +immingle|1 +(verb)|blend|intermix|intermingle|mix|mingle|commix|unify|amalgamate +immiscible|1 +(adj)|immiscible |unmixable|incompatible +immix|1 +(verb)|blend|flux|mix|conflate|commingle|fuse|coalesce|meld|combine|merge|change integrity +immobile|2 +(adj)|immobile |nonmotile|immotile|immovable|immoveable|stabile|unmovable|stiff|nonmoving|unmoving +(adj)|fast|firm|fixed +immobilisation|2 +(noun)|immobilization|preservation|saving +(noun)|immobilization|immobilizing|restraint +immobilise|6 +(verb)|immobilize|withhold|keep back +(verb)|trap|pin|immobilize +(verb)|immobilize|beat|beat out|crush|shell|trounce|vanquish +(verb)|immobilize|convert|change over +(verb)|freeze|block|immobilize|withhold|keep back +(verb)|immobilize|restrict|curtail|curb|cut back +immobility|2 +(noun)|stationariness|fixedness|motionlessness|stillness +(noun)|quality +immobilization|2 +(noun)|immobilisation|preservation|saving +(noun)|immobilisation|immobilizing|restraint +immobilize|6 +(verb)|immobilise|withhold|keep back +(verb)|trap|pin|immobilise +(verb)|immobilise|beat|beat out|crush|shell|trounce|vanquish +(verb)|immobilise|convert|change over +(verb)|freeze|block|immobilise|withhold|keep back +(verb)|immobilise|restrict|curtail|curb|cut back +immobilizing|1 +(noun)|immobilization|immobilisation|restraint +immoderate|1 +(adj)|immoderate |a bit much|de trop|too much|abnormal|all-fired|any|exaggerated|overdone|overstated|excessive|inordinate|undue|unreasonable|exorbitant|extortionate|outrageous|steep|unconscionable|usurious|extraordinary|over-the-top|extreme|extreme|extremist|radical|ultra|far|stark|intemperate|intense|unreasonable +immoderately|2 +(adv)|without moderation +(adv)|unreasonably +immoderateness|1 +(noun)|immoderation|degree|grade|level +immoderation|1 +(noun)|immoderateness|degree|grade|level +immodest|2 +(adj)|immodest |important|overweening|uppity|disrespectful|domineering|proud +(adj)|immodest |indecent|indecent +immodestly|1 +(adv)|without modesty +immodesty|2 +(noun)|indecency +(noun)|exhibitionism|paraphilia +immolate|1 +(verb)|sacrifice +immolation|1 +(noun)|sacrifice|ritual killing +immoral|5 +(adj)|immoral |debauched|degenerate|degraded|dissipated|dissolute|libertine|profligate|riotous|fast|disgraceful|scandalous|shameful|shocking|scrofulous|evil|wicked|unchaste|unrighteous|wicked +(adj)|base|dishonorable|dishonourable|unethical|wrong +(adj)|unprincipled +(adj)|bad|evil |wicked +(adj)|depraved|perverse|perverted|reprobate|corrupt +immorality|2 +(noun)|quality +(noun)|evil|wickedness|iniquity|transgression|evildoing +immorally|1 +(adv)|amorally +immortal|3 +(adj)|immortal |amaranthine|unfading|deathless|undying|everlasting|eternal|lasting|eonian|aeonian|deific|heavenly|infinite +(noun)|celebrity|famous person +(noun)|deity|divinity|god|spiritual being|supernatural being +immortalise|2 +(verb)|commemorate|memorialize|memorialise|immortalize|record|remind +(verb)|immortalize|eternize|eternise|eternalize|eternalise|change|alter|modify +immortality|2 +(noun)|permanence|permanency +(noun)|afterlife|hereafter +immortalize|2 +(verb)|commemorate|memorialize|memorialise|immortalise|record|remind +(verb)|immortalise|eternize|eternise|eternalize|eternalise|change|alter|modify +immortelle|1 +(noun)|Xeranthemum annuum|everlasting|everlasting flower +immotile|1 +(adj)|nonmotile|immobile +immotility|1 +(noun)|immobility +immovability|1 +(noun)|immovableness|immobility +immovable|1 +(adj)|immoveable|stabile|unmovable|immobile +immovable bandage|1 +(noun)|bandage|patch +immovableness|1 +(noun)|immovability|immobility +immoveable|1 +(adj)|immovable|stabile|unmovable|immobile +immune|5 +(adj)|condition|status +(adj)|exempt +(adj)|resistant|unsusceptible |insusceptible +(adj)|unaffected +(noun)|person|individual|someone|somebody|mortal|human|soul +immune carrier|1 +(noun)|carrier|immune|vector|transmitter +immune gamma globulin|1 +(noun)|immunoglobulin|Ig|immune serum globulin|immune globulin|gamma globulin|human gamma globulin|antibody +immune globulin|1 +(noun)|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|gamma globulin|human gamma globulin|antibody +immune reaction|1 +(noun)|immune response|immunologic response|reaction|response +immune response|1 +(noun)|immune reaction|immunologic response|reaction|response +immune serum globulin|1 +(noun)|immunoglobulin|Ig|immune gamma globulin|immune globulin|gamma globulin|human gamma globulin|antibody +immune suppressant drug|1 +(noun)|immunosuppressant|immunosuppressive drug|medicine|medication|medicament|medicinal drug +immune system|1 +(noun)|system +immunisation|1 +(noun)|immunization|protection +immunise|2 +(verb)|immunize|protect +(verb)|immunize|inoculate|vaccinate|inject|shoot +immunised|1 +(adj)|immunized|vaccinated|unsusceptible |insusceptible +immunity|4 +(noun)|unsusceptibility|condition|status +(noun)|resistance|condition|status +(noun)|invulnerability +(noun)|exemption|granting immunity|release|waiver|discharge +immunization|1 +(noun)|immunisation|protection +immunize|2 +(verb)|immunise|protect +(verb)|immunise|inoculate|vaccinate|inject|shoot +immunized|1 +(adj)|immunised|vaccinated|unsusceptible |insusceptible +immunizing agent|1 +(noun)|immunogen|antigen +immunoassay|1 +(noun)|immunochemical assay|bioassay +immunochemical|1 +(adj)|chemistry|chemical science|immunology +immunochemical assay|1 +(noun)|immunoassay|bioassay +immunochemistry|1 +(noun)|chemoimmunology|chemistry|chemical science|immunology +immunocompromised|1 +(adj)|disorder|upset +immunodeficiency|1 +(noun)|immunological disorder +immunoelectrophoresis|1 +(noun)|electrophoresis|cataphoresis|dielectrolysis|ionophoresis +immunofluorescence|1 +(noun)|technique +immunogen|1 +(noun)|immunizing agent|antigen +immunoglobulin|1 +(noun)|Ig|immune serum globulin|immune gamma globulin|immune globulin|gamma globulin|human gamma globulin|antibody +immunoglobulin a|1 +(noun)|immunoglobulin A|IgA|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +immunoglobulin d|1 +(noun)|immunoglobulin D|IgD|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +immunoglobulin e|1 +(noun)|immunoglobulin E|IgE|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +immunoglobulin g|1 +(noun)|immunoglobulin G|IgG|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +immunoglobulin m|1 +(noun)|immunoglobulin M|IgM|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +immunohistochemistry|1 +(noun)|assay +immunologic|1 +(adj)|immunological|medicine|medical specialty +immunologic response|1 +(noun)|immune response|immune reaction|reaction|response +immunological|1 +(adj)|immunologic|medicine|medical specialty +immunological disorder|1 +(noun)|disorder|upset +immunologist|1 +(noun)|medical scientist +immunology|1 +(noun)|medicine|medical specialty +immunopathology|1 +(noun)|immunology +immunosuppressant|1 +(noun)|immunosuppressive drug|immune suppressant drug|medicine|medication|medicament|medicinal drug +immunosuppressed|1 +(adj)|immunological disorder +immunosuppression|1 +(noun)|immunological disorder +immunosuppressive|1 +(adj)|immunological disorder +immunosuppressive drug|1 +(noun)|immunosuppressant|immune suppressant drug|medicine|medication|medicament|medicinal drug +immunotherapeutic|1 +(adj)|therapy +immunotherapy|1 +(noun)|therapy +immure|1 +(verb)|imprison|incarcerate|lag|put behind bars|jail|jug|gaol|put away|remand|confine|detain +immurement|1 +(noun)|captivity|imprisonment|incarceration|confinement +immutability|1 +(noun)|immutableness|fixity|changelessness|unchangeability|unchangeableness|unchangingness +immutable|1 +(adj)|immutable |changeless +immutableness|1 +(noun)|immutability|fixity|changelessness|unchangeability|unchangeableness|unchangingness +immutably|1 +(adv)|unalterably|unchangeably|unassailably +imo|1 +(noun)|International Maritime Organization|IMO|United Nations agency|UN agency +imogene coca|1 +(noun)|Coca|Imogene Coca|comedienne +imou pine|1 +(noun)|rimu|red pine|Dacrydium cupressinum|conifer|coniferous tree +imp|2 +(noun)|elf|hob|gremlin|pixie|pixy|brownie|fairy|faery|faerie|sprite +(noun)|scamp|monkey|rascal|rapscallion|scalawag|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +impact|6 +(noun)|contact|impinging|striking +(noun)|wallop|consequence|effect|outcome|result|event|issue|upshot +(noun)|impingement|encroachment|influence +(noun)|shock|fight|fighting|combat|scrap +(verb)|wedge|squeeze|force +(verb)|affect|bear upon|bear on|touch on|touch|change|alter|modify +impact printer|1 +(noun)|printer|printing machine +impacted|1 +(adj)|wedged|compact +impacted fracture|1 +(noun)|fracture|break +impacted tooth|1 +(noun)|impaction|disorder|upset +impaction|4 +(noun)|condition|status +(noun)|disorder|upset +(noun)|impacted tooth|disorder|upset +(noun)|impingement|crash|smash +impair|2 +(verb)|damage +(verb)|mar|spoil|deflower|vitiate|damage +impaired|2 +(adj)|impaired |anosmic|broken|dicky|dickey|diminished|lessened|vitiated|weakened|dysfunctional|dyslectic|dyslexic|visually impaired|damaged|injured +(adj)|afflicted|unfit +impairer|1 +(noun)|agent +impairment|5 +(noun)|damage|harm|change|alteration|modification +(noun)|deterioration|decay +(noun)|disability|disablement|handicap|unfitness|poor shape|bad condition +(noun)|damage|harm|hurt|scathe +(noun)|stultification|constipation|deadening|degradation|debasement +impala|1 +(noun)|Aepyceros melampus|antelope +impala lily|1 +(noun)|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub|bush +impale|2 +(verb)|transfix|empale|spike|pierce|thrust +(verb)|stake|kill +impalement|1 +(noun)|cruelty|inhuman treatment +impalpability|1 +(noun)|intangibility|intangibleness|immateriality|incorporeality +impalpable|3 +(adj)|intangible |abstract +(adj)|impalpable |elusive|subtle|imperceptible|unperceivable +(adj)|imperceptible |unperceivable +impanel|2 +(verb)|empanel|list +(verb)|empanel|panel|choose|take|select|pick out +imparipinnate|1 +(adj)|odd-pinnate|compound +impart|4 +(verb)|leave|give|pass on|tell +(verb)|lend|bestow|contribute|add|bring|change|alter|modify +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|break|give away|let out|tell +(verb)|convey|communicate|intercommunicate +impartation|1 +(noun)|conveyance|imparting|transmission +impartial|2 +(adj)|impartial |fair|disinterested|dispassionate|cold-eyed|indifferent|unbiased|unbiassed|indifferent|fair|just +(adj)|unprejudiced |color-blind|colour-blind|nonracist|open +impartiality|1 +(noun)|nonpartisanship|inclination|disposition|tendency +imparting|1 +(noun)|conveyance|impartation|transmission +impassable|1 +(adj)|impassable |unpassable|unnavigable|unsurmountable|unclimbable|untraversable +impasse|2 +(noun)|deadlock|dead end|stalemate|standstill|situation +(noun)|blind alley|cul de sac|dead-end street|thoroughfare +impassioned|1 +(adj)|ardent|burning|fervent|fervid|fiery|perfervid|torrid|passionate +impassive|2 +(adj)|stolid|unemotional +(adj)|deadpan|expressionless|poker-faced|unexpressive|uncommunicative |incommunicative +impassiveness|1 +(noun)|emotionlessness|impassivity|phlegm|indifference|stolidity|unemotionality|apathy +impassivity|1 +(noun)|emotionlessness|impassiveness|phlegm|indifference|stolidity|unemotionality|apathy +impasto|1 +(noun)|painting +impatience|3 +(noun)|restlessness|irritation|annoyance|vexation|botheration +(noun)|fidget|fidgetiness|restlessness +(noun)|ill nature +impatiens capensis|1 +(noun)|jewelweed|lady's earrings|orange balsam|celandine|touch-me-not|Impatiens capensis|herb|herbaceous plant +impatient|2 +(adj)|impatient |intolerant of|impatient of|short|unforbearing|restive|agitated +(adj)|raring|eager +impatient of|1 +(adj)|intolerant of|impatient +impatiently|1 +(adv)|with impatience +impeach|4 +(verb)|challenge +(verb)|charge|lodge|file +(verb)|accuse|incriminate|criminate +(verb)|accuse|incriminate|criminate|charge|accuse +impeachability|1 +(noun)|indictability|guilt|guiltiness +impeachment|1 +(noun)|legal document|legal instrument|official document|instrument +impeccable|2 +(adj)|faultless|immaculate|perfect +(adj)|virtuous +impeccant|1 +(adj)|innocent|sinless|virtuous +impecunious|1 +(adj)|hard up|in straitened circumstances|penniless|penurious|pinched|poor +impecuniousness|1 +(noun)|pennilessness|penuriousness|poverty|poorness|impoverishment +impedance|1 +(noun)|electric resistance|electrical resistance|resistance|resistivity|ohmic resistance|electrical phenomenon +impede|2 +(verb)|hinder|prevent|keep +(verb)|obstruct|obturate|occlude|jam|block|close up|hinder +impeded|1 +(adj)|obstructed +impediment|2 +(noun)|hindrance|deterrent|balk|baulk|check|handicap|difficulty +(noun)|obstruction|obstructor|obstructer|impedimenta|structure|construction +impedimenta|2 +(noun)|obstruction|obstructor|obstructer|impediment|structure|construction +(noun)|baggage|luggage +impeding|1 +(adj)|clogging|hindering|obstructive|preventive |preventative +impel|2 +(verb)|force|cause|do|make +(verb)|propel|move|displace +impelled|1 +(adj)|driven|motivated +impellent|1 +(adj)|forceful +impeller|1 +(noun)|blade|vane +impelling|1 +(adj)|effective |effectual|efficacious +impend|1 +(verb)|be +impendence|1 +(noun)|imminence|imminency|imminentness|impendency|forthcomingness|state +impendency|1 +(noun)|imminence|imminency|imminentness|impendence|forthcomingness|state +impending|1 +(adj)|at hand|close at hand|imminent|close +impenetrability|2 +(noun)|imperviousness|impermeability|impermeableness +(noun)|impenetrableness|incomprehensibility +impenetrable|3 +(adj)|impenetrable |dense|thick +(adj)|dense|heavy|thick +(adj)|incomprehensible |uncomprehensible +impenetrableness|1 +(noun)|impenetrability|incomprehensibility +impenitence|1 +(noun)|impenitency|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|self-will +impenitency|1 +(noun)|impenitence|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|self-will +impenitent|2 +(adj)|impenitent |unremorseful|unashamed|unregenerate|unregenerated +(adj)|unregenerate |unregenerated +impenitently|1 +(adv)|unrepentantly +imperative|4 +(adj)|imperative |adjuratory|clamant|crying|exigent|insistent|instant|desperate|pressing|urgent|peremptory|assertive +(adj)|mood|mode|modality +(noun)|imperative mood|jussive mood|mood|mode|modality +(noun)|duty|responsibility|obligation +imperative mood|1 +(noun)|imperative|jussive mood|mood|mode|modality +imperatively|1 +(adv)|peremptorily +imperativeness|2 +(noun)|insistence|insistency|press|pressure|urgency +(noun)|insistence|insistency|instancy|urgency +imperceptibility|1 +(noun)|physical property +imperceptible|1 +(adj)|imperceptible |unperceivable|impalpable|incognizable|incognoscible|indiscernible|insensible|undetectable|subliminal|unobservable|impalpable|inaudible|unhearable|invisible|unseeable +imperceptibly|1 +(adv)|unnoticeably|observably +imperfect|3 +(adj)|imperfect |blemished|flawed|broken|corrupt|corrupted|defective|faulty|blemished|broken +(adj)|fallible|frail|weak|human +(noun)|progressive|progressive tense|imperfect tense|continuous tense|tense +imperfect tense|1 +(noun)|progressive|progressive tense|imperfect|continuous tense|tense +imperfectability|1 +(noun)|imperfectibility|incapability|incapableness +imperfectibility|1 +(noun)|imperfectability|incapability|incapableness +imperfection|1 +(noun)|imperfectness|state +imperfective|1 +(noun)|imperfective aspect|durative|durative aspect +imperfective aspect|1 +(noun)|imperfective|durative|durative aspect +imperfectly|1 +(adv)|amiss +imperfectness|1 +(noun)|imperfection|state +imperforate|1 +(adj)|uncut +imperforate anus|1 +(noun)|anus|arse|arsehole|asshole|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +imperforate hymen|1 +(noun)|hymen|maidenhead|virginal membrane +imperial|5 +(adj)|monarchy +(adj)|sovereign|crowned head|monarch +(adj)|majestic|purple|regal|royal|noble +(noun)|imperial beard|beard|face fungus|whiskers +(noun)|baggage|luggage +imperial beard|1 +(noun)|imperial|beard|face fungus|whiskers +imperial capacity unit|1 +(noun)|British capacity unit|Imperial capacity unit|liquid unit|liquid measure|dry unit|dry measure +imperial decree|1 +(noun)|decree|edict|fiat|order|rescript +imperial elephant|1 +(noun)|imperial mammoth|Archidiskidon imperator|mammoth +imperial gallon|1 +(noun)|gallon|Imperial gallon|congius|British capacity unit|Imperial capacity unit +imperial japanese morning glory|1 +(noun)|imperial Japanese morning glory|Ipomoea imperialis|morning glory +imperial mammoth|1 +(noun)|imperial elephant|Archidiskidon imperator|mammoth +imperial moth|1 +(noun)|Eacles imperialis|saturniid|saturniid moth +imperialism|3 +(noun)|foreign policy +(noun)|political orientation|ideology|political theory +(noun)|control +imperialist|2 +(adj)|imperialistic|control +(noun)|believer|truster +imperialistic|1 +(adj)|imperialist|control +imperil|1 +(verb)|endanger|jeopardize|jeopardise|menace|threaten|peril|exist|be +imperious|1 +(adj)|masterful|domineering +imperiousness|1 +(noun)|domineeringness|overbearingness|arrogance|haughtiness|hauteur|highhandedness|lordliness +imperishability|1 +(noun)|imperishingness|permanence|permanency +imperishable|2 +(adj)|imperishable |durable|indestructible|perdurable|undestroyable|imputrescible +(adj)|abiding|enduring|permanent |lasting +imperishingness|1 +(noun)|imperishability|permanence|permanency +impermanence|1 +(noun)|impermanency|duration|length +impermanency|1 +(noun)|impermanence|duration|length +impermanent|2 +(adj)|impermanent |temporary|acting|ephemeral|passing|short-lived|transient|transitory|fugacious|episodic|fly-by-night|improvised|jury-rigged|makeshift|temporal|terminable|visiting|guest|working|evanescent|interim|pro tem|pro tempore|unstable +(adj)|finite +impermeability|1 +(noun)|impermeableness|solidity|solidness +impermeable|1 +(adj)|impermeable |water-repellent|water-resistant|rubber|rubberized|rubberised|impervious|imperviable|tight +impermeableness|1 +(noun)|impermeability|solidity|solidness +impermissibility|1 +(noun)|inadmissibility +impermissible|2 +(adj)|impermissible |forbidden|out|prohibited|proscribed|taboo|tabu|verboten|unmentionable|untouchable|intolerable +(adj)|inadmissible +impersonal|2 +(adj)|impersonal |nonpersonal +(adj)|neutral|objective |nonsubjective +impersonate|3 +(verb)|portray|act|play|represent +(verb)|mock +(verb)|pose|personate|deceive|betray|lead astray +impersonation|3 +(noun)|caricature|imitation|wit|humor|humour|witticism|wittiness +(noun)|imposture|deception|deceit|dissembling|dissimulation +(noun)|personation|acting|playing|playacting|performing +impersonator|1 +(noun)|imitator|deceiver|cheat|cheater|trickster|beguiler|slicker +impertinence|3 +(noun)|impudence|cheek|disrespect|discourtesy +(noun)|crust|gall|impudence|insolence|cheekiness|freshness|discourtesy|rudeness +(noun)|perkiness|pertness|sauciness|archness|playfulness|fun +impertinent|3 +(adj)|irreverent|pert|saucy|spirited +(adj)|extraneous|immaterial|orthogonal|irrelevant +(adj)|fresh|impudent|overbold|smart|saucy|sassy|forward +impertinently|1 +(adv)|saucily|pertly|freshly|impudently +imperturbability|1 +(noun)|coolness|imperturbableness|calmness +imperturbable|1 +(adj)|unflappable|composed +imperturbableness|1 +(noun)|coolness|imperturbability|calmness +imperviable|1 +(adj)|impervious |fast|acid-fast|colorfast|greaseproof|mothproof|moth-resistant|proof|resistant|runproof|ladder-proof|run-resistant|soundproof|impermeable +impervious|1 +(adj)|impervious |imperviable|fast|acid-fast|colorfast|greaseproof|mothproof|moth-resistant|proof|resistant|runproof|ladder-proof|run-resistant|soundproof|impermeable +imperviousness|1 +(noun)|impenetrability|impermeability|impermeableness +impetiginous|1 +(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +impetigo|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +impetuosity|1 +(noun)|impetuousness|impulsiveness +impetuous|2 +(adj)|hotheaded|impulsive|madcap|tearaway|brainish|incautious +(adj)|forceful +impetuously|1 +(adv)|impulsively +impetuousness|1 +(noun)|impetuosity|impulsiveness +impetus|2 +(noun)|drift|impulsion|force +(noun)|impulse|impulsion|drive|thrust|driving force +impiety|1 +(noun)|impiousness|unrighteousness +impinge|2 +(verb)|encroach|entrench|trench|trespass|take advantage +(verb)|encroach|infringe|advance|progress|pass on|move on|march on|go on +impinge on|1 +(verb)|hit|strike|run into|collide with|touch +impingement|2 +(noun)|encroachment|impact|influence +(noun)|impaction|crash|smash +impinging|1 +(noun)|contact|striking|happening|occurrence|natural event +impious|3 +(adj)|impious |godless|irreverent|irreligious|profane|wicked +(adj)|undutiful|disrespectful +(adj)|ungodly|irreligious +impiousness|1 +(noun)|impiety|unrighteousness +impish|1 +(adj)|implike|mischievous|pixilated|prankish|puckish|playful +impishly|1 +(adv)|puckishly +impishness|1 +(noun)|mischievousness|puckishness|whimsicality|playfulness|fun +implacable|1 +(adj)|implacable |grim|inexorable|relentless|stern|unappeasable|unforgiving|unrelenting|unmitigable|merciless|unmerciful +implant|4 +(noun)|prosthesis|prosthetic device +(verb)|engraft|embed|imbed|plant|insert|infix|enter|introduce +(verb)|attach +(verb)|plant|communicate|pass on|pass|put across +implantation|3 +(noun)|nidation|organic process|biological process +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +implanted|1 +(adj)|deep-rooted|deep-seated|ingrained|planted|established |constituted +implausibility|1 +(noun)|implausibleness|incredibility|incredibleness +implausible|2 +(adj)|implausible |improbable|unbelievable|unconvincing|unlikely|incredible|unbelievable +(adj)|farfetched|unlikely +implausibleness|1 +(noun)|implausibility|incredibility|incredibleness +implausibly|1 +(adv)|incredibly|improbably|unbelievably +implement|4 +(noun)|instrumentality|instrumentation +(verb)|use|utilize|utilise|apply|employ +(verb)|enforce|apply|compel|oblige|obligate +(verb)|follow through|follow up|follow out|carry out|put through|go through|complete|finish +implemental|1 +(adj)|instrumental|helpful +implementation|2 +(noun)|execution|carrying out|enforcement +(noun)|effectuation|deed|feat|effort|exploit +implemented|1 +(adj)|enforced +implements of war|1 +(noun)|weaponry|arms|weapons system|munition|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +implicate|2 +(verb)|involve|affect|regard +(verb)|entail|bring about +implicated|1 +(adj)|concerned|involved +implication|5 +(noun)|deduction|entailment|inference|illation +(noun)|significance|import|meaning|substance +(noun)|accusation|accusal +(noun)|logical implication|conditional relation|logical relation +(noun)|involvement +implicational|1 +(adj)|implicative|suggestive|suggestive of|connotative +implicative|1 +(adj)|implicational|suggestive|suggestive of|connotative +implicit|2 +(adj)|implicit |inexplicit|implicit in|inherent|underlying|implied|silent|tacit|understood|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|connotative|covert +(adj)|unquestioning|absolute +implicit in|1 +(adj)|inherent|underlying|implicit |inexplicit +implicitness|1 +(noun)|inexplicitness +implied|1 +(adj)|silent|tacit|understood|implicit |inexplicit +implied trust|1 +(noun)|trust +implike|1 +(adj)|impish|mischievous|pixilated|prankish|puckish|playful +implode|1 +(verb)|go off|collapse|fall in|cave in|give|give way|break|founder +implore|1 +(verb)|beg|pray|plead +imploring|1 +(adj)|appealing|importunate|pleading|beseeching +imploringly|1 +(adv)|beseechingly|importunately|pleadingly|entreatingly +implosion|2 +(noun)|collapse +(noun)|blockage|closure|occlusion +implosion therapy|1 +(noun)|flooding|behavior therapy|behavior modification +imply|5 +(verb)|connote|express|show|evince +(verb)|express|show|evince +(verb)|entail|mean|necessitate +(verb)|incriminate|inculpate|suggest|evoke|paint a picture +(verb)|involve|necessitate|ask|postulate|need|require|take|involve|call for|demand +impolite|1 +(adj)|impolite |bratty|brattish|ill-mannered|rude|unmannered|unmannerly|discourteous|ungracious|unparliamentary +impolitely|1 +(adv)|discourteously|rudely|showing bad manners +impoliteness|1 +(noun)|discourtesy|rudeness +impolitic|1 +(adj)|impolitic |tactless|undiplomatic|inexpedient|unwise|foolish|inexpedient +imponderable|2 +(adj)|imponderable +(noun)|influence +import|7 +(noun)|importation|commodity|trade goods|goods +(noun)|importee|foreigner|alien|noncitizen|outlander +(noun)|meaning|significance|signification|message|content|subject matter|substance +(noun)|significance|implication|meaning|substance +(noun)|consequence|moment|significance +(verb)|trade|merchandise +(verb)|spell|mean|intend +import barrier|1 +(noun)|trade barrier|protectionism +import credit|1 +(noun)|credit +import duty|1 +(noun)|duty|tariff +importance|2 +(noun)|value +(noun)|grandness|standing +important|5 +(adj)|important |of import|all-important|all important|crucial|essential|of the essence|alpha|arch|big|burning|cardinal|central|fundamental|key|primal|chief|main|primary|principal|consequential|eventful|Copernican|distinguished|eminent|great|grave|grievous|heavy|weighty|historic|in-chief|measurable|most-valuable|serious|strategic|useful|valuable|of value|beta|essential|significant|valuable +(adj)|significant |big|momentous|earthshaking|world-shaking|world-shattering|epochal|epoch-making|evidential|evidentiary|fundamental|profound|monumental|noteworthy|remarkable|probative|operative|key|portentous|prodigious|large|of import|meaningful +(adj)|crucial |critical|decisive|life-and-death|life-or-death|pivotal|polar|critical|decisive|essential +(adj)|authoritative|influential +(adj)|immodest +important-looking|1 +(adj)|impressive +important person|1 +(noun)|influential person|personage|adult|grownup +importantly|1 +(adv)|significantly +importation|2 +(noun)|importing|commerce|commercialism|mercantilism +(noun)|import|commodity|trade goods|goods +imported|1 +(adj)|foreign +importee|1 +(noun)|import|foreigner|alien|noncitizen|outlander +importer|1 +(noun)|businessperson|bourgeois +importing|1 +(noun)|importation|commerce|commercialism|mercantilism +importunate|1 +(adj)|appealing|imploring|pleading|beseeching +importunately|1 +(adv)|beseechingly|imploringly|pleadingly|entreatingly +importune|1 +(verb)|insist|beg|implore|pray +importunity|1 +(noun)|urgency|urging|solicitation +impose|3 +(verb)|enforce|compel|oblige|obligate +(verb)|inflict|bring down|visit|communicate|intercommunicate +(verb)|levy|charge|bill +imposed|1 +(adj)|obligatory +imposing|2 +(adj)|baronial|noble|stately|impressive +(adj)|distinguished|magisterial|dignified +imposingly|1 +(adv)|impressively +imposition|2 +(noun)|infliction|enforcement +(noun)|burden|load|encumbrance|incumbrance|onus +impossibility|2 +(noun)|impossibleness|nonexistence|nonentity +(noun)|impossible action|option|alternative|choice +impossible|4 +(adj)|impossible |hopeless|impracticable|infeasible|unfeasible|unworkable|out|unachievable|unattainable|undoable|unrealizable|hopeless|impractical|insurmountable|unsurmountable|unrealistic|unthinkable +(adj)|inconceivable|out of the question|unimaginable|unthinkable +(adj)|insufferable|unacceptable|unsufferable|intolerable +(noun)|impossibility|impossible action +impossible action|1 +(noun)|impossibility|option|alternative|choice +impossibleness|1 +(noun)|impossibility|nonexistence|nonentity +impost|2 +(noun)|customs|customs duty|custom|duty|tariff +(noun)|springer|stone +imposter|1 +(noun)|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +impostor|1 +(noun)|imposter|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +imposture|1 +(noun)|impersonation|deception|deceit|dissembling|dissimulation +impotence|2 +(noun)|powerlessness|impotency|quality +(noun)|impotency|sterility|infertility +impotency|2 +(noun)|powerlessness|impotence|quality +(noun)|impotence|sterility|infertility +impotent|2 +(adj)|impotent |ineffective|ineffectual|unable|weak|powerless|weak|sterile|unfertile|infertile +(adj)|impotent +impotently|1 +(adv)|helplessly|unable to help +impound|2 +(verb)|attach|sequester|confiscate|seize|take +(verb)|pound|restrain|confine|hold +impounding|1 +(noun)|impoundment|internment|poundage|seizure +impoundment|1 +(noun)|impounding|internment|poundage|seizure +impoverish|2 +(verb)|deprive +(verb)|deprive|worsen|decline +impoverished|2 +(adj)|destitute|indigent|necessitous|needy|poverty-stricken|poor +(adj)|broken|wiped out|destroyed +impoverishment|2 +(noun)|poverty|poorness|financial condition|economic condition +(noun)|pauperization|pauperisation|privation|deprivation +impracticability|1 +(noun)|impracticableness|inutility|uselessness|unusefulness +impracticable|1 +(adj)|infeasible|unfeasible|unworkable|impossible +impracticableness|1 +(noun)|impracticability|inutility|uselessness|unusefulness +impractical|2 +(adj)|impractical |armchair|crazy|half-baked|screwball|softheaded|quixotic|romantic|wild-eyed|unfunctional|meshugge|meshugga|meshuga|meshuggeneh|meshuggener|impossible|unrealistic +(adj)|airy|visionary|Laputan|utopian +impracticality|1 +(noun)|inutility|uselessness|unusefulness +impramine hydrochloride|1 +(noun)|imipramine|Imavate|Tofranil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +imprecate|2 +(verb)|curse|beshrew|damn|bedamn|anathemize|anathemise|maledict|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +(verb)|curse|cuss|blaspheme|swear|express|verbalize|verbalise|utter|give tongue to +imprecation|2 +(noun)|malediction|execration|condemnation|curse +(noun)|accusation|accusal +imprecise|1 +(adj)|imprecise |general|inaccurate|inexact|general|inaccurate|inexact +imprecisely|1 +(adv)|inexactly +impreciseness|1 +(noun)|imprecision|inexactness|inexactitude +imprecision|1 +(noun)|impreciseness|inexactness|inexactitude +impregnability|1 +(noun)|invulnerability|safety +impregnable|2 +(adj)|inviolable|secure|strong|unassailable|unattackable|invulnerable +(adj)|inexpugnable|unconquerable +impregnate|4 +(verb)|infuse|instill|tincture|fill|fill up|make full +(verb)|saturate|fill|fill up|make full +(verb)|inseminate|fecundate|fertilize|fertilise +(verb)|knock up|bang up|prang up|inseminate|fecundate|fertilize|fertilise +impregnated|1 +(adj)|fertilized|fertilised|inseminated|fertile +impregnation|3 +(noun)|material|stuff +(noun)|saturation|permeation|pervasion|suffusion +(noun)|fertilization|fertilisation|fecundation|creation|conception +impresario|1 +(noun)|showman|promoter|booker|booking agent +impress|8 +(noun)|impressment|seizure +(verb)|affect|move|strike +(verb)|affect|move|strike +(verb)|ingrain|instill|affect|move|strike +(verb)|imprint|change surface +(verb)|print|write +(verb)|shanghai|kidnap|nobble|abduct|snatch +(verb)|yarn-dye|dye +impressed|1 +(adj)|affected +impressible|1 +(adj)|impressionable |plastic|pliant|spinnable|susceptible +impression|9 +(noun)|feeling|belief|notion|opinion|idea|thought +(noun)|effect|appearance|visual aspect +(noun)|mental picture|picture|image|mental image +(noun)|depression|imprint|concave shape|concavity|incurvation|incurvature +(noun)|stamp|symbol +(noun)|printing|publication +(noun)|imprint +(noun)|portrayal|characterization|enactment|personation +(noun)|press|pressure|pressing +impressionable|1 +(adj)|impressionable |impressible|plastic|pliant|spinnable|susceptible +impressionism|1 +(noun)|Impressionism|artistic movement|art movement +impressionist|2 +(adj)|impressionistic|artistic movement|art movement +(noun)|painter +impressionistic|2 +(adj)|idea|thought +(adj)|impressionist|artistic movement|art movement +impressive|2 +(adj)|impressive |amazing|awe-inspiring|awesome|awful|awing|arresting|sensational|stunning|astonishing|astounding|staggering|stupefying|baronial|imposing|noble|stately|dazzling|eye-popping|fulgurant|fulgurous|dramatic|spectacular|striking|expansive|grand|formidable|gallant|lofty|majestic|proud|grandiose|heroic|grand|important-looking|mind-boggling|signal|thundering|brilliant|glorious|magnificent|splendid|palatial|moving +(adj)|telling|effective |effectual|efficacious +impressive aphasia|1 +(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|sensory aphasia|aphasia +impressively|1 +(adv)|imposingly +impressiveness|1 +(noun)|grandness|magnificence|excellence +impressment|1 +(noun)|impress|seizure +imprimatur|1 +(noun)|sanction|countenance|endorsement|indorsement|warrant|approval|commendation +imprint|7 +(noun)|influence +(noun)|depression|impression|concave shape|concavity|incurvation|incurvature +(noun)|identification +(noun)|embossment|stamp|impression +(noun)|device +(verb)|form|influence|act upon|work +(verb)|impress|change surface +imprinting|1 +(noun)|learning|acquisition +imprison|2 +(verb)|incarcerate|lag|immure|put behind bars|jail|jug|gaol|put away|remand|confine|detain +(verb)|confine|detain +imprisoned|1 +(adj)|captive|confined|jailed|unfree +imprisonment|3 +(noun)|punishment|penalty|penalization|penalisation +(noun)|captivity|incarceration|immurement|confinement +(noun)|internment|confinement +improbability|1 +(noun)|improbableness|uncertainty|uncertainness +improbable|3 +(adj)|improbable |unlikely|supposed +(adj)|unbelievable|unconvincing|unlikely|implausible +(adj)|marvelous|marvellous|tall|incredible |unbelievable +improbableness|1 +(noun)|improbability|uncertainty|uncertainness +improbably|1 +(adv)|incredibly|implausibly|unbelievably +impromptu|4 +(adj)|ad-lib|extemporaneous|extemporary|extempore|offhand|offhanded|off-the-cuff|unrehearsed|unprepared +(noun)|address|speech +(noun)|passage|musical passage +(adv)|ad lib|ad libitum|spontaneously +improper|3 +(adj)|improper |inappropriate|incorrect|wrong|indecent|indecorous|unbecoming|uncomely|unseemly|untoward|out-of-the-way|wrong|inappropriate|incorrect|wrong|indecent|indecorous|indelicate|unfit|wrong +(adj)|unconventional|unlawful|irregular +(adj)|unsuitable|wrong|inappropriate +improper fraction|1 +(noun)|fraction +improperness|1 +(noun)|impropriety|demeanor|demeanour|behavior|behaviour|conduct|deportment +impropriety|3 +(noun)|improperness|demeanor|demeanour|behavior|behaviour|conduct|deportment +(noun)|indecency|misbehavior|misbehaviour|misdeed +(noun)|familiarity|indecorum|liberty|misbehavior|misbehaviour|misdeed +improvable|1 +(adj)|corrigible +improve|2 +(verb)|better|amend|ameliorate|meliorate|change|alter|modify +(verb)|better|ameliorate|meliorate|change state|turn +improved|3 +(adj)|improved |built|reinforced|developed|landscaped|restored +(adj)|better +(adj)|cleared +improvement|3 +(noun)|change of state +(noun)|betterment|advance|transformation|transmutation|shift +(noun)|melioration|condition|status +improver|2 +(noun)|humanitarian|do-gooder|benefactor|helper +(noun)|addition|add-on|component|constituent|element +improvidence|1 +(noun)|shortsightedness|imprudence +improvident|2 +(adj)|improvident |prodigal|short|shortsighted|unforesightful|myopic|thriftless|unforethoughtful|imprudent|wasteful +(adj)|ill-considered|ill-judged|shortsighted|imprudent +improving|1 +(adj)|up|rising +improvisation|3 +(noun)|creation +(noun)|temporary expedient|expedient +(noun)|extemporization|extemporisation|performance +improvise|2 +(verb)|improvize|ad-lib|extemporize|extemporise|perform|execute|do +(verb)|extemporize|cope|get by|make out|make do|contend|grapple|deal|manage +improvised|1 +(adj)|jury-rigged|makeshift|impermanent |temporary +improvize|1 +(verb)|improvise|ad-lib|extemporize|extemporise|perform|execute|do +imprudence|1 +(noun)|incaution|incautiousness +imprudent|2 +(adj)|imprudent |ill-considered|ill-judged|improvident|shortsighted|rash|injudicious|careless|foolish|improvident +(adj)|indiscreet +impudence|2 +(noun)|cheek|impertinence|disrespect|discourtesy +(noun)|crust|gall|impertinence|insolence|cheekiness|freshness|discourtesy|rudeness +impudent|2 +(adj)|insolent|snotty-nosed|flip|disrespectful +(adj)|fresh|impertinent|overbold|smart|saucy|sassy|forward +impudently|1 +(adv)|impertinently|saucily|pertly|freshly +impugn|1 +(verb)|challenge +impugnable|1 +(adj)|questionable +impuissance|1 +(noun)|helplessness|weakness|powerlessness|impotence|impotency +impulse|6 +(noun)|urge|motivation|motive|need +(noun)|caprice|whim|desire +(noun)|nerve impulse|electrical discharge +(noun)|pulsation|pulsing|pulse|wave|undulation +(noun)|impulsion|impetus|drive|thrust|driving force +(noun)|momentum|force|forcefulness|strength +impulse-buy|1 +(verb)|buy|purchase +impulse explosive|1 +(noun)|propellant explosive|explosive +impulse turbine|1 +(noun)|turbine +impulsion|2 +(noun)|drift|impetus|force +(noun)|impulse|impetus|drive|thrust|driving force +impulsive|5 +(adj)|unprompted|spontaneous |self-generated +(adj)|unpremeditated +(adj)|driving|dynamic |dynamical +(adj)|capricious|whimsical|arbitrary +(adj)|hotheaded|impetuous|madcap|tearaway|brainish|incautious +impulsively|1 +(adv)|impetuously +impulsiveness|1 +(noun)|unthoughtfulness|thoughtlessness +impunity|1 +(noun)|exemption|freedom +impure|3 +(adj)|impure |adulterate|adulterated|debased|alloyed|bastardized|bastardised|composite|contaminated|polluted|dirty|dingy|muddied|muddy|unpurified|unclean|unprocessed +(adj)|impure |defiled|maculate|unchaste +(adj)|unclean |defiled|nonkosher|tref|terefah|untouchable|dirty|soiled|unclean +impureness|1 +(noun)|impurity|condition|status +impurity|2 +(noun)|dross|waste|waste material|waste matter|waste product +(noun)|impureness|condition|status +imputable|1 +(adj)|ascribable|due to|referable|attributable +imputation|2 +(noun)|accusation|accusal +(noun)|attribution|ascription +impute|2 +(verb)|ascribe|assign|attribute|judge +(verb)|ascribe|assign|attribute +imputrescible|1 +(adj)|imperishable +imu|1 +(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization|terrorist group|foreign terrorist organization|FTO +imuran|1 +(noun)|azathioprine|Imuran|medicine|medication|medicament|medicinal drug +in|7 +(adj)|successful +(adj)|incoming +(adj)|fashionable |stylish +(noun)|inch|linear unit +(noun)|indium|In|atomic number 49|metallic element|metal +(noun)|Indiana|Hoosier State|IN|American state +(adv)|inwards|inward +in-basket|1 +(noun)|in-tray|receptacle +in-between|1 +(adj)|mediate|middle|intermediate +in-bounds|1 +(adj)|fair +in-chief|1 +(adj)|important |of import +in-fighting|2 +(noun)|fight|fighting|combat|scrap +(noun)|boxing|pugilism|fisticuffs +in-joke|1 +(noun)|joke|gag|laugh|jest|jape +in-law|1 +(noun)|relative-in-law|relative|relation +in-line skate|1 +(noun)|roller blade|skate +in-migration|1 +(noun)|immigration|migration +in-person|2 +(adj)|in person|in the flesh|personal +(adj)| +in-situ|1 +(adj)|unmoved|unaltered |unchanged +in-tray|1 +(noun)|in-basket|receptacle +in-your-face|1 +(adj)|aggressive +in a bad way|2 +(adj)|stressed|distressed|troubled +(adj)|distressed|hard-pressed|hard put|in trouble|troubled +in a beastly manner|1 +(adv)|bestially|brutishly +in a big way|1 +(adv)|with much to-do +in a broad way|1 +(adv)|at large +in a circle|1 +(adv)|in circles +in a flash|1 +(adv)|instantaneously|outright|instantly +in a heartfelt way|1 +(adv)|dearly +in a higher place|1 +(adv)|above|higher up|to a higher place +in a low voice|1 +(adv)|sotto voce +in a moment|1 +(adv)|momentarily|momently +in a pig's eye|1 +(adv)|not very likely +in a sense|1 +(adv)|in a way +in a similar way|1 +(adv)|in kind +in a way|2 +(adv)|in a sense +(adv)|in some respects +in a well mannered way|1 +(adv)|politely|courteously|with courtesy|with politeness +in abeyance|1 +(adj)|abeyant|inactive|suspended|delayed +in accord|1 +(adv)|in unison +in addition|1 +(adv)|additionally|to boot +in advance|2 +(adj)|advance|advanced|front +(adv)|ahead|beforehand +in agreement|2 +(adj)|agreed|united +(adv)|in concert|together +in all|1 +(adv)|altogether|all told +in all likelihood|1 +(adv)|probably|likely|in all probability|belike +in all probability|1 +(adv)|probably|likely|in all likelihood|belike +in an arch manner|1 +(adv)|archly +in an editorial|1 +(adv)|editorially|with an editorial +in an elaborate way|1 +(adv)|elaborately|intricately +in and of itself|1 +(adv)|intrinsically|per se|as such +in any case|2 +(adv)|anyhow|anyway|at any rate|in any event +(adv)|besides +in any event|1 +(adv)|anyhow|anyway|in any case|at any rate +in apposition|1 +(adv)|appositively +in arrears|1 +(adv)|behind|behindhand +in attendance|1 +(adj)|attending|present +in awe of|1 +(adj)|awed |awestruck|awestricken|overawed +in bondage|1 +(adj)|bond|enslaved|enthralled|slave +in bonds|1 +(adj)|fettered|in fetters|shackled|bound +in both ears|1 +(adv)|binaurally|to both ears +in breadth|1 +(adj)|in width|wide |broad +in brief|1 +(adv)|concisely|briefly|shortly|in short +in camera|1 +(adv)|privately|in private +in case|1 +(adv)|just in case +in chains|1 +(adj)|chained|enchained|bound +in charge|1 +(adj)|dominant +in check|1 +(adv)|in restraint|under control +in chorus|1 +(adv)|in unison +in circles|1 +(adv)|in a circle +in cold blood|2 +(adv)|cold-bloodedly +(adv)|coldly|without emotion +in collaboration|1 +(adv)|together|unitedly +in commission|1 +(adj)|in commission |in service|in condition +in concert|1 +(adv)|in agreement|together +in conclusion|1 +(adv)|last|lastly|finally +in condition|2 +(adj)|in commission +(adj)|conditioned|fit |healthy +in darkness|1 +(adv)|darkly +in demand|2 +(adj)|marketable|salable |saleable +(adj)|coveted|desired|sought after|desirable +in depth|1 +(adj)|deep +in disagreement|1 +(adj)|divided +in dishabille|1 +(adj)|en deshabille|unclothed +in dispute|1 +(adj)|at issue|in hand|in question|under consideration|relevant +in disrepair|1 +(adj)|unrepaired|unrestored +in due course|1 +(adv)|in due season|in good time|in due time|when the time comes +in due season|1 +(adv)|in due course|in good time|in due time|when the time comes +in due time|1 +(adv)|in due course|in due season|in good time|when the time comes +in dutch|1 +(adj)|in Dutch|troubled +in earnest|2 +(adj)|earnest|sincere|solemn|serious +(adv)|seriously|earnestly +in effect|2 +(adj)|effective|good|in force|operative +(adv)|effectively +in essence|3 +(adj)|substantial|substantive|essential +(adv)|basically|fundamentally|essentially|au fond +(adv)|in principle|in theory +in everyone's thoughts|1 +(adv)|in the air +in evidence|1 +(adj)|conspicuous |obvious +in fact|1 +(adv)|in point of fact|as a matter of fact +in fetters|1 +(adj)|fettered|in bonds|shackled|bound +in fiscal matters|1 +(adv)|fiscally +in flight|1 +(adv)|on the wing +in flood|1 +(adj)|flooding|overflowing|swollen|high +in focus|1 +(adj)|focused |focussed +in for|1 +(adj)|certain |sure +in force|1 +(adj)|effective|good|in effect|operative +in front|1 +(adv)|ahead|before +in full|1 +(adv)|fully +in full action|1 +(adv)|in full swing +in full swing|2 +(adj)|active +(adv)|in full action +in full view|1 +(adj)|unconcealed +in gear|1 +(adj)|geared +in general|2 +(adj)|as a whole|at large|general +(adv)|generally|in the main +in good order|1 +(adv)|properly|decently|decent|right|the right way +in good spirits|1 +(adv)|in stride|without becoming upset +in good taste|2 +(adj)|tasteful |aesthetic|esthetic|artistic|pleasing|understated|unostentatious|unpretentious|elegant|unpretentious +(adj)|decorous +in good time|1 +(adv)|in due course|in due season|in due time|when the time comes +in great confusion|1 +(adv)|head over heels|heels over head|topsy-turvy|topsy-turvily +in hand|3 +(adj)|accessible +(adj)|at issue|in dispute|in question|under consideration|relevant +(adj)|owned +in harmony|1 +(adj)|consonant|harmonic|harmonical|harmonized|harmonised|harmonious +in haste|1 +(adv)|hurriedly|hastily +in height|1 +(adj)|tall +in her own right|1 +(adv)|in one's own right|in his own right|in its own right +in her right mind|1 +(adj)|in his right mind|in their right minds|sane +in hiding|1 +(adv)|doggo|out of sight +in high spirits|1 +(adj)|high|elated +in his own right|1 +(adv)|in one's own right|in her own right|in its own right +in his right mind|1 +(adj)|in her right mind|in their right minds|sane +in its own right|1 +(adv)|in one's own right|in his own right|in her own right +in kind|1 +(adv)|in a similar way +in labor|1 +(adj)|parturient|aborning +in large quantities|1 +(adv)|wholesale +in league|1 +(adj)|united +in length|1 +(adj)|long +in line|2 +(adj)|eligible +(adj)|succeeding +in love|1 +(adj)|crazy|dotty|gaga|enamored|infatuated|smitten|soft on|taken with|loving +in low spirits|1 +(adv)|dejectedly +in name|1 +(adv)|in name only +in name only|1 +(adv)|in name +in no time|1 +(adv)|very fast +in no way|1 +(adv)|nohow +in one's birthday suit|1 +(adj)|mother-naked|naked as the day one was born|naked as the day you were born|in your birthday suit|unclothed +in one's own right|1 +(adv)|in his own right|in her own right|in its own right +in one case|1 +(adv)|once|one time +in one ear|1 +(adv)|monaurally|to one ear +in operation|1 +(adj)|operational|operating|operative +in opposition|1 +(adv)|con +in order|3 +(adj)|called for|appropriate +(adj)|so|systematic +(adj)|ready +in other words|1 +(adv)|put differently +in particular|1 +(adv)|particularly +in passing|1 +(adv)|en passant +in person|3 +(adj)|in-person|in the flesh|personal +(adj)| +(adv)|personally +in place|1 +(adv)|in situ +in play|1 +(adj)|live +in point of fact|1 +(adv)|in fact|as a matter of fact +in poor taste|1 +(adj)|tasteless |barbaric|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|Brummagem|camp|campy|indelicate|off-color|off-colour|ostentatious|pretentious|kitsch|inelegant|pretentious +in principle|1 +(adv)|in theory|in essence +in private|1 +(adv)|privately|in camera +in progress|1 +(adj)|ongoing|current +in proportion to|1 +(adj)|corresponding|proportionate|commensurate +in public|1 +(adv)|publicly|publically +in question|2 +(adj)|at issue|in dispute|in hand|under consideration|relevant +(adj)|doubtful|dubious|dubitable|questionable +in real time|1 +(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|at once|forthwith|like a shot +in reality|1 +(adv)|actually +in remission|1 +(adj)|arrested|inactive +in reply|1 +(adv)|back +in restraint|1 +(adv)|in check|under control +in return|1 +(adv)|reciprocally +in safe custody|1 +(adj)|secure +in secret|1 +(adv)|secretly|on the Q.T.|on the QT +in series|1 +(adj)|serial|nonparallel|asynchronous +in service|1 +(adj)|in commission +in short|1 +(adv)|concisely|briefly|shortly|in brief +in sight|1 +(adj)|in view|visible |seeable +in situ|1 +(adv)|in place +in small stages|1 +(adj)|bit-by-bit|piecemeal|step-by-step|stepwise|gradual +in so far|2 +(adv)|insofar|to that extent|to that degree +(adv)| +in some manner|1 +(adv)|somehow|someway|someways|in some way +in some respects|1 +(adv)|in a way +in some way|1 +(adv)|somehow|someway|someways|in some manner +in spades|1 +(adv)|decidedly|unquestionably|emphatically|definitely|by all odds +in spite of appearance|1 +(adv)|at heart|at bottom|deep down|inside +in stages|1 +(adv)|piecemeal|little by little|bit by bit +in stock|1 +(adj)|available +in store|1 +(adj)|future +in straitened circumstances|1 +(adj)|hard up|impecunious|penniless|penurious|pinched|poor +in stride|1 +(adv)|without becoming upset|in good spirits +in style|1 +(adj)|a la mode|in vogue|modish|fashionable |stylish +in suspense|1 +(adj)|edgy|high-strung|highly strung|jittery|jumpy|nervy|overstrung|restive|uptight|tense +in that|1 +(adv)|therein|in this +in that location|1 +(adv)|there|at that place +in that respect|1 +(adv)|there|on that point +in the adjacent apartment|1 +(adv)|next door|in the adjacent house +in the adjacent house|1 +(adv)|next door|in the adjacent apartment +in the air|1 +(adv)|in everyone's thoughts +in the altogether|1 +(adj)|bare-assed|bare-ass|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed +in the bargain|1 +(adv)|into the bargain +in the beginning|2 +(adv)|primitively|originally +(adv)|in the first place|earlier|to begin with|originally +in the buff|1 +(adj)|bare-assed|bare-ass|in the altogether|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed +in the end|2 +(adv)|in the long run +(adv)|ultimately|finally|at last|at long last +in the final analysis|1 +(adv)|in the last analysis|ultimately +in the first place|2 +(adv)|earlier|in the beginning|to begin with|originally +(adv)|primarily +in the flesh|1 +(adj)|in-person|in person|personal +in the head|1 +(adv)|upstairs|in the mind +in the last analysis|1 +(adv)|in the final analysis|ultimately +in the lead|2 +(adj)|ahead|leading|up +(adv)|ahead|out front +in the least|2 +(adv)|even a little +(adv)|at all|the least bit +in the long run|1 +(adv)|in the end +in the main|2 +(adv)|chiefly|principally|primarily|mainly +(adv)|generally|in general +in the meantime|1 +(adv)|meanwhile|meantime +in the middle|1 +(adv)|midmost|in the midst +in the midst|1 +(adv)|midmost|in the middle +in the mind|1 +(adv)|upstairs|in the head +in the nick of time|1 +(adv)|just in time +in the north|1 +(adv)|north|to the north|northerly|northwards|northward +in the public eye|1 +(adj)|public +in the raw|1 +(adj)|bare-assed|bare-ass|in the altogether|in the buff|raw|peeled|naked as a jaybird|stark naked|unclothed +in the south|1 +(adv)|south|to the south +in their right minds|1 +(adj)|in his right mind|in her right mind|sane +in theory|3 +(adv)|theoretically|on paper +(adv)|in principle|in essence +(adv)|on paper +in this|1 +(adv)|therein|in that +in time|2 +(adv)|eventually|yet|sooner or later|one of these days +(adv)|soon enough +in trouble|2 +(adj)|troubled +(adj)|distressed|hard-pressed|hard put|in a bad way|troubled +in truth|1 +(adv)|really|truly +in turn|1 +(adv)|successively +in two ways|1 +(adv)|doubly +in unison|2 +(adv)|in chorus +(adv)|in accord +in use|2 +(adj)|busy|engaged|occupied +(adj)|used +in vain|1 +(adv)|vainly +in view|1 +(adj)|in sight|visible |seeable +in vitro|2 +(adj)|in vitro |ex vivo +(adv)|ex vivo +in vivo|1 +(adj)|in vivo +in vogue|1 +(adj)|a la mode|in style|modish|fashionable |stylish +in width|1 +(adj)|in breadth|wide |broad +in working order|1 +(adj)|functional|usable|useable|operable|operational|serviceable +in writing|2 +(adj)|graphic|graphical|written +(adv)|on paper +in your birthday suit|1 +(adj)|mother-naked|naked as the day one was born|naked as the day you were born|in one's birthday suit|unclothed +inability|2 +(noun)|cognition|knowledge|noesis +(noun)|unfitness|quality +inaccessibility|1 +(noun)|unavailability|inconvenience +inaccessible|2 +(adj)|inaccessible |unaccessible|backwoods|outback|remote|deserted|pathless|roadless|trackless|untracked|untrod|untrodden|lonely|solitary|unfrequented|unapproachable|unreachable|unreached|out of reach|un-come-at-able|un-get-at-able|ungetatable +(adj)|unobtainable|unprocurable|untouchable|unavailable +inaccuracy|1 +(noun)|quality +inaccurate|3 +(adj)|inaccurate |away|outside|faulty|unfaithful|wide|wide of the mark|imprecise|incorrect|wrong|inexact +(adj)|inexact|imprecise +(adj)|erroneous|incorrect +inachis|1 +(noun)|Inachis|genus Inachis|arthropod genus +inachis io|1 +(noun)|peacock|peacock butterfly|Inachis io|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +inaction|2 +(noun)|inactivity|inactiveness|state +(noun)|inactiveness|motionlessness|stillness +inactivate|2 +(verb)|demobilize|demobilise|discharge|muster out +(verb)|deactivate|change|alter|modify +inactivation|2 +(noun)|natural process|natural action|action|activity +(noun)|deactivation|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +inactive|12 +(adj)|unreactive +(adj)|inactive |arrested|in remission|dead-end|indolent|latent|quiescent +(adj)|inactive |quiescent +(adj)|extinct |dead +(adj)|dormant |quiescent +(adj)|passive |hands-off|resistless|supine|unresisting +(adj)|inactive |closed|dark|dead|dull|slow|sluggish|idle|unused|strikebound +(adj)|inactive |off|off duty|off-duty|on leave|retired +(adj)|inactive |desk-bound|deskbound|dormant|hypoactive|underactive|inert|sluggish|torpid|sedentary|lethargic|unergetic +(adj)|reserve|nonoperational +(adj)|motionless|static|still|nonmoving |unmoving +(adj)|abeyant|in abeyance|suspended|delayed +inactiveness|3 +(noun)|inaction|inactivity|state +(noun)|inaction|motionlessness|stillness +(noun)|inactivity|inertia|trait +inactivity|3 +(noun)|inaction|inactiveness|state +(noun)|inactiveness|inertia|trait +(noun)|act|human action|human activity +inadequacy|3 +(noun)|insufficiency|deficiency|amount +(noun)|insufficiency|failing|weakness +(noun)|inadequateness|unsatisfactoriness +inadequate|2 +(adj)|inadequate |deficient|lacking|wanting|incapable|incompetent|unequal to|short-handed|short-staffed|undermanned|understaffed|unsatisfactory +(adj)|poor|short|insufficient |deficient +inadequateness|1 +(noun)|inadequacy|unsatisfactoriness +inadmissibility|1 +(noun)|unacceptability|unacceptableness +inadmissible|1 +(adj)|inadmissible |impermissible +inadvertence|2 +(noun)|oversight|omission +(noun)|unmindfulness|heedlessness|inadvertency|attentiveness +inadvertency|1 +(noun)|unmindfulness|heedlessness|inadvertence|attentiveness +inadvertent|1 +(adj)|accidental|unintended +inadvertently|1 +(adv)|unwittingly|unknowingly +inadvisability|1 +(noun)|bad|badness +inadvisable|2 +(adj)|inadvisable |unadvisable|foolish +(adj)|inexpedient +inadvisably|1 +(adv)|expediently +inaesthetic|1 +(adj)|inaesthetic |unaesthetic|inartistic|unartistic|ugly|tasteless +inalienable|2 +(adj)|inalienable |unalienable|absolute|infrangible|inviolable|nontransferable|unassignable|untransferable|intrinsic|intrinsical +(adj)|unforfeitable|indefeasible +inalterable|1 +(adj)|unalterable |incurable|final|last +inamorata|1 +(noun)|woman|adult female|lover +inamorato|1 +(noun)|man|adult male|lover +inane|1 +(adj)|asinine|fatuous|mindless|vacuous|foolish +inanely|1 +(adv)|fatuously +inanimate|3 +(adj)|inanimate +(adj)|inanimate |nonliving|dead|nonconscious +(adj)|breathless|pulseless|dead +inanimateness|1 +(noun)|lifelessness|physiological property +inanition|2 +(noun)|lassitude|lethargy|weakness +(noun)|exhaustion +inanity|1 +(noun)|senselessness|mindlessness|vacuity|pointlessness|meaninglessness +inanna|1 +(noun)|Inanna|Semitic deity +inapplicability|1 +(noun)|irrelevance|irrelevancy +inapplicable|1 +(adj)|unsuitable|irrelevant +inapposite|1 +(adj)|out of place|malapropos +inappositeness|1 +(noun)|inaptness|inappropriateness +inappreciable|1 +(adj)|insignificant |unimportant +inappropriate|3 +(adj)|inappropriate |unsuitable|improper|wrong|unbefitting|improper|malapropos +(adj)|incorrect|wrong|improper +(adj)|incompatible|out or keeping|unfitting|incongruous +inappropriately|1 +(adv)|unsuitably|not suitably +inappropriateness|2 +(noun)|wrongness|impropriety|improperness +(noun)|unsuitability|unsuitableness|ineptness +inapt|1 +(adj)|awkward|clumsy|cumbersome|inept|ill-chosen|infelicitous +inaptitude|1 +(noun)|inability +inaptness|1 +(noun)|inappositeness|inappropriateness +inarguable|1 +(adj)|unarguable|incontestable |incontestible +inarticulate|1 +(adj)|inarticulate |unarticulate|aphasic|aphonic|voiceless|dumb|mute|silent|dumb|groaning|moaning|grunting|incoherent|tongue-tied|mute|tongueless|unspoken|wordless|speechless|dumb|stammering|stuttering|unarticulated|uncommunicative|incommunicative +inarticulately|1 +(adv)|ineloquently +inartistic|1 +(adj)|unartistic|inaesthetic |unaesthetic +inattention|1 +(noun)|basic cognitive process +inattentive|5 +(adj)|inattentive |absent|absentminded|abstracted|scatty|distracted|distrait|dreamy|moony|woolgathering|drowsy|oscitant|yawning|forgetful|oblivious|careless|forgetful|oblivious|negligent +(adj)|uninterested +(adj)|neglectful|negligent +(adj)|unheeding|unlistening|deaf to|deaf +(adj)|unobservant|unvigilant|unwatchful|unalert +inattentively|1 +(adv)|absently|abstractedly|absentmindedly +inattentiveness|2 +(noun)|heedlessness|inattention +(noun)|trait +inaudibility|1 +(noun)|inaudibleness|physical property +inaudible|1 +(adj)|inaudible |unhearable|breathed|voiceless|infrasonic|silent|silent|unsounded|supersonic|ultrasonic|unheard|imperceptible|unperceivable|quiet +inaudibleness|1 +(noun)|inaudibility|physical property +inaugural|4 +(adj)|inaugural +(adj)|initiative|initiatory|first|maiden|opening +(noun)|inaugural address|address|speech +(noun)|inauguration|initiation|induction|installation +inaugural address|1 +(noun)|inaugural|address|speech +inaugurate|3 +(verb)|kick off|start|start up|embark on|commence +(verb)|open +(verb)|usher in|introduce|begin|lead off|start|commence +inauguration|2 +(noun)|startup|beginning|start|commencement +(noun)|inaugural|initiation|induction|installation +inauguration day|1 +(noun)|Inauguration Day|January 20|day +inauspicious|3 +(adj)|inauspicious |unfortunate|unpromising +(adj)|adverse|harmful|untoward|unfavorable |unfavourable +(adj)|ill|ominous|unpropitious +inauspiciously|1 +(adv)|unpropitiously +inauspiciousness|1 +(noun)|unpropitiousness|unfavorableness|unfavourableness +inauthentic|1 +(adj)|unauthentic|spurious|counterfeit |imitative +inboard|1 +(adj)|inboard +inborn|2 +(adj)|connatural|inbred|native|normal +(adj)|congenital|innate|inherent|noninheritable |nonheritable +inborn error of metabolism|1 +(noun)|metabolic disorder|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +inborn reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|unconditioned reflex|physiological reaction|reaction|response +inbound|1 +(adj)|arriving|inward|incoming +inbred|2 +(adj)|inbred |interbred +(adj)|connatural|inborn|native|normal +inbreeding|1 +(noun)|coupling|mating|pairing|conjugation|union|sexual union +inbuilt|1 +(adj)|built-in|constitutional|inherent|integral|intrinsic |intrinsical +inc|1 +(noun)|Iraqi National Congress|INC|opposition +inca|2 +(noun)|Inca|ruler|swayer +(noun)|Inca|Inka|Incan|Quechua|Kechua +incalculable|1 +(adj)|incalculable |incomputable|inestimable|immeasurable|indeterminable|countless|infinite|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|indeterminable|undeterminable +incalescence|1 +(noun)|calefaction|hotness|heat|high temperature +incan|1 +(noun)|Inca|Inka|Incan|Quechua|Kechua +incandesce|2 +(verb)|change|alter|modify +(verb)|change +incandescence|2 +(noun)|glow|light|visible light|visible radiation +(noun)|luminosity|brightness|brightness level|luminance|luminousness|light +incandescent|2 +(adj)|candent|light +(adj)|glorious +incandescent lamp|1 +(noun)|light bulb|lightbulb|bulb|electric light|electric-light bulb|electric lamp +incantation|1 +(noun)|conjuration|spell|magic spell|charm +incapability|2 +(noun)|incapableness|inaptitude +(noun)|incapableness|inability|unfitness +incapable|5 +(adj)|incapable |unable|incompetent +(adj)|unsusceptible |insusceptible +(adj)|unqualified|incompetent +(adj)|incapable +(adj)|incompetent|unequal to|inadequate +incapableness|2 +(noun)|incapability|inaptitude +(noun)|incapability|inability|unfitness +incapacitate|2 +(verb)|disable|disenable|change|alter|modify +(verb)|disable|invalid|handicap|injure|wound +incapacitated|2 +(adj)|helpless|powerless |weak +(adj)|disabled|handicapped|unfit +incapacitating|1 +(adj)|crippling|disabling|unhealthful +incapacity|2 +(noun)|inability +(noun)|incapability|incapableness +incarcerate|1 +(verb)|imprison|lag|immure|put behind bars|jail|jug|gaol|put away|remand|confine|detain +incarceration|1 +(noun)|captivity|imprisonment|immurement|confinement +incarnadine|1 +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +incarnate|4 +(adj)|bodied|corporal|corporate|embodied|corporeal |material +(adj)|bodied +(verb)|realize|realise|actualize|actualise|substantiate +(verb)|body forth|embody|substantiate|be +incarnation|4 +(noun)|embodiment|avatar|personification +(noun)|Incarnation|religious doctrine|church doctrine|gospel|creed +(noun)|time +(noun)|personification|embodiment +incase|1 +(verb)|encase|case|enclose|inclose|shut in +incased|1 +(adj)|cased|encased|sheathed +incasement|1 +(noun)|encasement|enclosure|enclosing|envelopment|inclosure +incaution|1 +(noun)|incautiousness|carelessness +incautious|3 +(adj)|incautious |hotheaded|impulsive|impetuous|madcap|tearaway|brainish|adventurous|adventuresome|careless +(adj)|careless +(adj)|unguarded|unwary +incautiously|1 +(adv)|carelessly +incautiousness|1 +(noun)|incaution|carelessness +incendiarism|1 +(noun)|arson|fire-raising|burning|combustion +incendiary|5 +(adj)|burning|combustion +(adj)|incitive|inflammatory|instigative|rabble-rousing|seditious|provocative +(adj)|combustible +(noun)|arsonist|firebug|criminal|felon|crook|outlaw|malefactor +(noun)|incendiary bomb|firebomb|bomb +incendiary bomb|1 +(noun)|incendiary|firebomb|bomb +incense|4 +(noun)|compound|chemical compound +(noun)|aroma|fragrance|perfume|scent +(verb)|cense|thurify|odorize|odourise|scent +(verb)|infuriate|exasperate|anger +incense cedar|2 +(noun)|cedar|cedar tree +(noun)|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar|cedar tree +incense tree|1 +(noun)|tree +incense wood|1 +(noun)|wood +incensed|1 +(adj)|indignant|outraged|umbrageous|angry +incentive|2 +(noun)|inducement|motivator|rational motive +(noun)|bonus|payment +incentive option|1 +(noun)|incentive stock option|option +incentive program|1 +(noun)|incentive scheme|scheme|strategy +incentive scheme|1 +(noun)|incentive program|scheme|strategy +incentive stock option|1 +(noun)|incentive option|option +inception|1 +(noun)|origin|origination|beginning +incertain|1 +(adj)|uncertain |ambivalent|doubtful|dubious|groping|hesitant +incertitude|1 +(noun)|doubt|uncertainty|dubiety|doubtfulness|dubiousness|cognitive state|state of mind +incessancy|1 +(noun)|continuousness|ceaselessness|incessantness|endlessness +incessant|2 +(adj)|perpetual|endless|continual +(adj)|ceaseless|constant|never-ending|perpetual|unceasing|unremitting|continuous |uninterrupted +incessantly|1 +(adv)|endlessly|ceaselessly|unceasingly|unendingly|continuously +incessantness|1 +(noun)|continuousness|ceaselessness|incessancy|endlessness +incest|1 +(noun)|unlawful carnal knowledge|criminal congress +incestuous|2 +(adj)|friendliness +(adj)|unlawful carnal knowledge|criminal congress +inch|3 +(noun)|in|linear unit +(noun)|column inch|area unit|square measure +(verb)|edge|advance|progress|pass on|move on|march on|go on +incheon|1 +(noun)|Inchon|Incheon|Chemulpo|city|metropolis|urban center|port +inchoate|1 +(adj)|incipient|early +inchoative|1 +(adj)|formative|immature +inchoative aspect|1 +(noun)|aspect +inchon|2 +(noun)|Inchon|Incheon|Chemulpo|city|metropolis|urban center|port +(noun)|Inchon|amphibious assault +inchworm|1 +(noun)|measuring worm|looper|caterpillar +incidence|2 +(noun)|relative incidence|frequency|relative frequency +(noun)|optical phenomenon +incidence angle|1 +(noun)|angle of incidence|angle +incident|4 +(adj)|optical phenomenon +(adj)|incidental |omissible|parenthetic|parenthetical|peripheral|secondary +(noun)|happening|occurrence|natural event +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +incidental|5 +(adj)|incidental |incident|omissible|parenthetic|parenthetical|peripheral|secondary +(adj)|accompanying|attendant|concomitant|incidental to|related |related to +(adj)|nonessential|inessential |unessential +(noun)|incidental expense|minor expense|expense +(noun)|item|point +incidental expense|1 +(noun)|incidental|minor expense|expense +incidental music|1 +(noun)|composition|paper|report|theme +incidental to|1 +(adj)|accompanying|attendant|concomitant|incidental|related |related to +incidentally|3 +(adv)|by the way|by the bye +(adv)|accidentally|by chance +(adv)|apropos +incienso|1 +(noun)|brittlebush|brittle bush|Encelia farinosa|wildflower|wild flower +incinerate|2 +(verb)|burn down|burn up|go up +(verb)|burn|change integrity +incineration|1 +(noun)|burning|combustion +incinerator|1 +(noun)|furnace +incipience|1 +(noun)|incipiency|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +incipiency|1 +(noun)|incipience|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +incipient|1 +(adj)|inchoate|early +incise|1 +(verb)|cut +incised|3 +(adj)|compound +(adj)|cut +(adj)|engraved|etched|graven|inscribed|carved |carven +incision|2 +(noun)|scratch|prick|slit|dent|depression|impression|imprint +(noun)|section|surgical incision|cut|cutting +incisive|3 +(adj)|acute|discriminating|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive +(adj)|keen|sharp|intelligent +(adj)|piercing|sharp +incisively|1 +(adv)|precisely|exactly +incisiveness|1 +(noun)|trenchancy|effectiveness|effectivity|effectualness|effectuality +incisor|1 +(noun)|tooth +incisura|1 +(noun)|incisure|notch +incisure|1 +(noun)|incisura|notch +incitation|2 +(noun)|incitement|provocation|psychic energy|mental energy +(noun)|incitement|arousal|rousing +incite|3 +(verb)|motivate|actuate|propel|move|prompt|cause|do|make +(verb)|instigate|set off|stir up|provoke|stimulate +(verb)|prod|egg on +incitement|4 +(noun)|incitation|arousal|rousing +(noun)|provocation|encouragement +(noun)|incitation|provocation|psychic energy|mental energy +(noun)|exhortation|persuasion|suasion +inciter|1 +(noun)|instigator|provoker|instigant|firebrand|troublemaker|trouble maker|troubler|mischief-maker|bad hat +incitive|1 +(adj)|incendiary|inflammatory|instigative|rabble-rousing|seditious|provocative +incivility|1 +(noun)|discourtesy|rudeness +inclemency|2 +(noun)|bad weather|inclementness|weather|weather condition|atmospheric condition +(noun)|severity|harshness|rigor|rigour|hardness|stiffness|sternness|strictness +inclement|2 +(adj)|inclement |filthy|foul|nasty|vile|rainy|pluvial|pluvious|stormy|intemperate +(adj)|inclement |unsparing|merciless|unmerciful +inclementness|1 +(noun)|bad weather|inclemency|weather|weather condition|atmospheric condition +inclination|8 +(noun)|disposition|tendency|attitude|mental attitude +(noun)|inclination of an orbit|angle +(noun)|angle of inclination|angle +(noun)|dip|angle of dip|magnetic dip|magnetic inclination|angle +(noun)|liking +(noun)|tilt|list|lean|leaning|position|spatial relation +(noun)|tendency|disposition +(noun)|inclining|motion|movement|move|motility +inclination of an orbit|1 +(noun)|inclination|angle +incline|7 +(noun)|slope|side|geological formation|formation +(noun)|ramp|inclined plane +(verb)|tend|be given|lean|run|be +(verb)|listen|hear|take heed +(verb)|lower|take down|let down|get down|bring down +(verb)|slope|pitch|lean|tilt|tip|slant|angle +(verb)|dispose|determine|shape|mold|influence|regulate +incline bench press|1 +(noun)|bench press +inclined|4 +(adj)|inclined |apt|disposed|given|minded|tending|fond|partial|minded|prone|accident-prone|willing +(adj)|inclined |atilt|canted|leaning|tilted|tipped|aslant|aslope|diagonal|slanted|slanting|sloped|sloping|high-pitched|low-pitched|pitched|salient|sidelong|skew|skewed|monoclinal|gradual|oblique +(adj)|disposed|fain|prepared|willing +(adj)|bent|bowed|unerect +inclined fault|1 +(noun)|fault|geological fault|shift|fracture|break +inclined plane|1 +(noun)|machine|simple machine +inclining|1 +(noun)|inclination|motion|movement|move|motility +inclinometer|3 +(noun)|navigational instrument +(noun)|dip circle|measuring instrument|measuring system|measuring device +(noun)|clinometer|surveying instrument|surveyor's instrument +inclose|2 +(verb)|enclose|shut in|surround|skirt|border +(verb)|insert|enclose|stick in|put in|introduce|put|set|place|pose|position|lay +inclosure|2 +(noun)|enclosure|document|written document|papers +(noun)|enclosure|enclosing|envelopment|insertion|introduction|intromission +include|3 +(verb)|see|consider|reckon|view|regard +(verb)|add +(verb)|admit|let in|permit|allow|let|countenance +included|1 +(adj)|enclosed +inclusion|4 +(noun)|situation|state of affairs +(noun)|comprehension|involvement +(noun)|inclusion body|cellular inclusion|body +(noun)|increase|step-up +inclusion body|1 +(noun)|cellular inclusion|inclusion|body +inclusion body encephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +inclusion body myositis|1 +(noun)|myositis +inclusive|1 +(adj)|inclusive |comprehensive +incognito|1 +(adj)|concealed +incognizable|1 +(adj)|incognoscible|imperceptible |unperceivable +incognizant|1 +(adj)|incognizant |unaware +incognoscible|1 +(adj)|incognizable|imperceptible |unperceivable +incoherence|2 +(noun)|incoherency|disjunction|disjuncture|disconnection|disconnectedness +(noun)|incoherency|unintelligibility|nonsense|bunk|nonsensicality|meaninglessness|hokum +incoherency|2 +(noun)|incoherence|disjunction|disjuncture|disconnection|disconnectedness +(noun)|incoherence|unintelligibility|nonsense|bunk|nonsensicality|meaninglessness|hokum +incoherent|3 +(adj)|incoherent |confused|disconnected|disjointed|disordered|garbled|illogical|scattered|unconnected|fuzzy|illogical|unlogical|irrational +(adj)|irrational +(adj)|tongue-tied|inarticulate |unarticulate +incombustible|1 +(adj)|noncombustible |fireproof|fire-retardant|fire-resistant|fire-resisting|fire-resistive|flameproof|flame-retardant|nonflammable +income|1 +(noun)|financial gain +income bracket|1 +(noun)|tax bracket|income tax bracket|bracket +income statement|1 +(noun)|earnings report|operating statement|profit-and-loss statement|statement|financial statement +income tax|1 +(noun)|tax|taxation|revenue enhancement +income tax bracket|1 +(noun)|income bracket|tax bracket|bracket +income tax return|1 +(noun)|tax return|return|legal document|legal instrument|official document|instrument +incoming|2 +(adj)|incoming |arriving|inbound|inward|entering|ingoing|designate|elect|future|next|succeeding|in|inflowing|influent|inpouring|future +(noun)|entrance|entering|entry|ingress|arrival +incommensurable|2 +(adj)|incomparable |uncomparable +(adj)|incommensurate +incommensurate|1 +(adj)|incommensurate |disproportionate|incommensurable|unequal +incommode|1 +(verb)|trouble|put out|inconvenience|disoblige|discommode|bother|affect|impact|bear upon|bear on|touch on|touch +incommodious|1 +(adj)|incommodious |cramped +incommodiousness|1 +(noun)|inconvenience|discomfort|uncomfortableness +incommunicado|1 +(adj)|uncommunicative |incommunicative +incommunicative|1 +(adj)|uncommunicative |blank|close|closelipped|closemouthed|secretive|tightlipped|deadpan|expressionless|impassive|poker-faced|unexpressive|guarded|noncommittal|unrevealing|incommunicado|mum|silent|unpronounceable|unutterable|inexpressive|inarticulate|unarticulate|taciturn +incommutability|1 +(noun)|unexchangeability +incommutable|2 +(adj)|incommutable |inconvertible|untransmutable|unalterable +(adj)|unexchangeable +incomparable|1 +(adj)|incomparable |uncomparable|incommensurable|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|alone|unique|unequaled|unequalled|unparalleled|all-time|best|extraordinary +incomparably|1 +(adv)|uncomparably +incompatibility|3 +(noun)|mutual exclusiveness|inconsistency|repugnance|contradictoriness +(noun)|physiological state|physiological condition +(noun)|characteristic +incompatible|9 +(adj)|incompatible |antagonistic|clashing|contradictory|mutually exclusive|uncongenial|different|inharmonious|unharmonious|mismatched|uncongenial +(adj)|antagonistic +(adj)|uncongenial |disagreeable|unsympathetic|unfriendly|unsympathetic +(adj)|incompatible +(adj)|contrastive|antonymous +(adj)|ill-sorted|mismated|unsuited|mismatched +(adj)|discrepant|inconsistent +(adj)|inappropriate|out or keeping|unfitting|incongruous +(adj)|immiscible |unmixable +incompetence|2 +(noun)|incompetency|inability|unfitness +(noun)|disease +incompetency|1 +(noun)|incompetence|inability|unfitness +incompetent|5 +(adj)|incompetent |feckless|inept|incapable|unqualified|ineffective|inefficient|unqualified|unworkmanlike|incapable|inefficient|unqualified|unskilled +(adj)|bungling|clumsy|fumbling|unskilled +(adj)|unskilled|bad +(adj)|incapable|unequal to|inadequate +(noun)|incompetent person|unskilled person +incompetent cervix|1 +(noun)|cervix|uterine cervix|cervix uteri +incompetent person|1 +(noun)|incompetent|unskilled person +incompetently|1 +(adv)|displaying incompetence +incomplete|3 +(adj)|incomplete |uncomplete|broken|half|partial|rudimentary|sketchy|unelaborated|uncompleted|fractional +(adj)|incomplete +(adj)|uncompleted|unfinished +incomplete abortion|1 +(noun)|partial abortion|spontaneous abortion|miscarriage|stillbirth +incomplete fracture|1 +(noun)|fracture|break +incompleteness|1 +(noun)|integrity|unity|wholeness +incomprehensibility|1 +(noun)|quality +incomprehensible|2 +(adj)|inexplicable |cryptic|cryptical|deep|inscrutable|mysterious|mystifying|paradoxical|self-contradictory|unaccountable|unexplainable|unexplained|uncomprehensible|insoluble +(adj)|incomprehensible |uncomprehensible|dark|obscure|enigmatic|enigmatical|puzzling|impenetrable|indecipherable|lost|missed|opaque|unintelligible|unfathomable|inexplicable|unclear|unintelligible +incomprehension|1 +(noun)|inability +incomprehensive|1 +(adj)|noncomprehensive |limited +incompressibility|1 +(noun)|hardness +incompressible|1 +(adj)|incompressible +incomputable|1 +(adj)|inestimable|immeasurable|incalculable +inconceivability|1 +(noun)|inconceivableness|impossibility|impossibleness +inconceivable|1 +(adj)|impossible|out of the question|unimaginable|unthinkable +inconceivableness|1 +(noun)|inconceivability|impossibility|impossibleness +inconclusive|2 +(adj)|inconclusive |equivocal|indeterminate|neck and neck|head-to-head|nip and tuck|nisi|indecisive|indeterminate|undetermined +(adj)|indecisive +inconclusiveness|1 +(noun)|indefiniteness|indeterminateness|indefinity|indetermination|indeterminacy +inconel|1 +(noun)|Inconel|alloy|metal +incongruent|1 +(adj)|incongruent +incongruity|1 +(noun)|incongruousness|incompatibility +incongruous|1 +(adj)|incongruous |discrepant|inconsistent|inappropriate|incompatible|out or keeping|unfitting|ironic|ironical|inharmonious +incongruousness|1 +(noun)|incongruity|incompatibility +inconsequence|1 +(noun)|insignificance +inconsequent|1 +(adj)|inconsequential|unimportant +inconsequential|2 +(adj)|inconsequent|unimportant +(adj)|illogical |unlogical +inconsequentially|1 +(adv)|inconsequently +inconsequently|1 +(adv)|inconsequentially +inconsiderable|1 +(adj)|inconsiderable |insignificant|trivial +inconsiderate|2 +(adj)|inconsiderate |careless|thoughtless|uncaring|unthinking|selfish|tactless|untactful|thoughtless +(adj)|unconsidered|thoughtless +inconsiderately|1 +(adv)|without consideration +inconsiderateness|1 +(noun)|inconsideration|thoughtlessness|unkindness +inconsideration|1 +(noun)|inconsiderateness|thoughtlessness|unkindness +inconsistency|2 +(noun)|incompatibility|mutual exclusiveness|repugnance|contradictoriness +(noun)|nonuniformity +inconsistent|3 +(adj)|inconsistent |at odds|conflicting|contradictory|self-contradictory|discrepant|incompatible|spotty|uneven|unconformable|unreconciled|variable +(adj)|irreconcilable |unreconcilable +(adj)|discrepant|incongruous +inconsolable|1 +(adj)|inconsolable |disconsolate|unconsolable|desolate +inconspicuous|1 +(adj)|inconspicuous |invisible|obscure|unnoticeable +inconspicuousness|1 +(noun)|invisibility|invisibleness +inconstancy|2 +(noun)|faithlessness|falseness|fickleness|infidelity|unfaithfulness +(noun)|changefulness|changeableness|changeability +inconstant|1 +(adj)|inconstant |false|untrue|fickle|volatile|changeable|changeful|unfaithful|unstable|variable|volatile +incontestable|2 +(adj)|incontestable |incontestible|demonstrable|incontrovertible|demonstrated|ironclad|unassailable|unshakable|watertight|bulletproof|unanswerable|inarguable|unarguable|unquestionable +(adj)|indisputable|undisputable|undeniable +incontestible|1 +(adj)|incontestable |demonstrable|incontrovertible|demonstrated|ironclad|unassailable|unshakable|watertight|bulletproof|unanswerable|inarguable|unarguable|unquestionable +incontinence|2 +(noun)|incontinency|elimination|evacuation|excretion|excreting|voiding +(noun)|dissoluteness|self-gratification|indiscipline|undiscipline +incontinency|1 +(noun)|incontinence|elimination|evacuation|excretion|excreting|voiding +incontinent|1 +(adj)|incontinent |leaky +incontrovertibility|1 +(noun)|incontrovertibleness|indisputability|indubitability|unquestionability|unquestionableness +incontrovertible|2 +(adj)|irrefutable|positive|undeniable +(adj)|demonstrable|incontestable |incontestible +incontrovertibleness|1 +(noun)|incontrovertibility|indisputability|indubitability|unquestionability|unquestionableness +incontrovertibly|1 +(adv)|demonstrably|provably +inconvenience|4 +(noun)|incommodiousness|discomfort|uncomfortableness +(noun)|troublesomeness|worriment|difficulty|difficultness +(noun)|unsuitability|unsuitableness|ineptness +(verb)|trouble|put out|disoblige|discommode|incommode|bother|affect|impact|bear upon|bear on|touch on|touch +inconvenience oneself|1 +(verb)|trouble oneself|trouble|bother|strive|reach|strain +inconvenient|2 +(adj)|inconvenient |awkward +(adj)|inopportune +inconvertibility|1 +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +inconvertible|2 +(adj)|inconvertible |unconvertible|unexchangeable|irredeemable +(adj)|untransmutable|incommutable +incoordination|1 +(noun)|unskillfulness +incorporate|5 +(adj)|incorporated|integrated|merged|unified|united +(verb)|integrate|compound|combine +(verb)|contain|comprise|include +(verb)|make|create +(verb)|take in|gather in +incorporated|3 +(adj)|incorporate|integrated|merged|unified|united +(adj)|corporate|organized +(adj)|integrated +incorporation|3 +(noun)|consolidation|integration +(noun)|internalization|internalisation|learning|acquisition +(noun)|inclusion +incorporative|1 +(adj)|increasing +incorporeal|1 +(adj)|incorporeal |immaterial|discorporate|unembodied|bodiless|unbodied|disembodied|spiritual|unbodied +incorporeality|1 +(noun)|immateriality|quality +incorrect|2 +(adj)|incorrect |erroneous|inaccurate|fallacious|false|mistaken|false|improper|inaccurate +(adj)|inappropriate|wrong|improper +incorrectly|2 +(adv)|falsely +(adv)|wrongly|wrong +incorrectness|2 +(noun)|impropriety|improperness +(noun)|wrongness|quality +incorrigible|1 +(adj)|incorrigible |delinquent|depraved|unreformable|unregenerate|uncontrollable|uncorrectable|unmanageable|disobedient +incorrupt|2 +(adj)|incorrupt |antiseptic|incorruptible|uncorrupted|uncorrupted|unspoiled +(adj)|moral +incorruptibility|1 +(noun)|honesty|honestness +incorruptible|1 +(adj)|incorrupt +incorruption|1 +(noun)|incorruptness|honesty|honestness +incorruptness|1 +(noun)|incorruption|honesty|honestness +increase|7 +(noun)|addition|gain|indefinite quantity +(noun)|change|alteration|modification +(noun)|increment|growth|process +(noun)|increment|amount +(noun)|step-up|change of magnitude +(verb)|change magnitude +(verb)|change|alter|modify +increased|1 +(adj)|increased |accrued|accumulated|augmented|enhanced|exaggerated|hyperbolic|inflated|exaggerated|magnified|enlarged|raised|inflated|redoubled|multiplied +increasing|2 +(adj)|increasing |accelerative|acceleratory|accretionary|augmentative|expanding|exploding|flared|flaring|growing|incorporative|maximizing|maximising|multiplicative|profit-maximizing|profit-maximising|progressive|raising|rising|accretive +(adj)|increasing |accelerando|crescendo +increasing monotonic|1 +(adj)|monotonic |monotone +increasingly|1 +(adv)|progressively|more and more +incredibility|1 +(noun)|incredibleness|quality +incredible|1 +(adj)|incredible |unbelievable|astounding|dumbfounding|dumfounding|fabulous|improbable|marvelous|marvellous|tall|undreamed|undreamed of|undreamt|undreamt of|unimagined|implausible|incredulous|unconvincing|unthinkable +incredibleness|1 +(noun)|incredibility|quality +incredibly|1 +(adv)|improbably|implausibly|unbelievably +incredulity|1 +(noun)|disbelief|skepticism|mental rejection|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +incredulous|1 +(adj)|incredulous |disbelieving|skeptical|sceptical|unbelieving|distrustful|distrustful|incredible|unbelievable +incredulously|1 +(adv)|unbelievingly|disbelievingly +increment|2 +(noun)|increase|growth|process +(noun)|increase|amount +incremental|1 +(adj)|progressive +incremental cost|1 +(noun)|marginal cost|differential cost|monetary value|price|cost +incriminate|2 +(verb)|imply|inculpate|suggest|evoke|paint a picture +(verb)|accuse|impeach|criminate|charge|accuse +incriminating|1 +(adj)|criminative|criminatory|incriminatory|inculpatory |inculpative +incrimination|1 +(noun)|inculpation|blame|accusation|accusal +incriminatory|1 +(adj)|criminative|criminatory|incriminating|inculpatory |inculpative +incrust|3 +(verb)|encrust|beset|decorate|adorn|grace|ornament|embellish|beautify +(verb)|encrust|coat|surface +(verb)|encrust|harden|indurate +incrustation|3 +(noun)|encrustation|formation +(noun)|crust|encrustation|covering|natural covering|cover +(noun)|encrustation|decoration|ornament|ornamentation +incubate|2 +(verb)|develop +(verb)|brood|hatch|cover|reproduce|procreate|multiply +incubation|3 +(noun)|care|attention|aid|tending +(noun)|phase|stage +(noun)|brooding|parturition|birth|giving birth|birthing +incubation period|1 +(noun)|time period|period of time|period +incubator|1 +(noun)|brooder|apparatus|setup +incubus|3 +(noun)|devil|fiend|demon|daemon|daimon +(noun)|nightmare|situation +(noun)|unpleasant person|disagreeable person +inculcate|1 +(verb)|instill|infuse|drill +inculcation|1 +(noun)|ingraining|instilling|indoctrination +inculpability|1 +(noun)|blamelessness|inculpableness|guiltlessness|innocence +inculpable|1 +(adj)|blameless|irreproachable|unimpeachable|innocent |guiltless|clean-handed +inculpableness|1 +(noun)|blamelessness|inculpability|guiltlessness|innocence +inculpate|1 +(verb)|incriminate|imply|suggest|evoke|paint a picture +inculpation|1 +(noun)|incrimination|blame|accusation|accusal +inculpative|1 +(adj)|inculpatory |accusative|accusatory|accusing|accusive|comminatory|denunciative|denunciatory|condemnatory|condemning|criminative|criminatory|incriminating|incriminatory|damnatory|damning|recriminative|recriminatory|guilty +inculpatory|1 +(adj)|inculpatory |inculpative|accusative|accusatory|accusing|accusive|comminatory|denunciative|denunciatory|condemnatory|condemning|criminative|criminatory|incriminating|incriminatory|damnatory|damning|recriminative|recriminatory|guilty +incumbency|3 +(noun)|tenure|term of office|term +(noun)|duty|responsibility|obligation +(noun)|position|post|berth|office|spot|billet|place|situation +incumbent|3 +(adj)|superjacent +(adj)|current +(noun)|officeholder|official|functionary +incumbent on|1 +(adj)|obligatory +incumbrance|3 +(noun)|encumbrance|charge +(noun)|burden|load|encumbrance|onus|concern|worry|headache|vexation +(noun)|hindrance|hitch|preventive|preventative|encumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +incur|2 +(verb)|subject +(verb)|receive|get|find|obtain|change +incurability|2 +(noun)|incurableness|characteristic +(noun)|unalterability +incurable|3 +(adj)|incurable +(adj)|unalterable |inalterable +(noun)|sick person|diseased person|sufferer +incurableness|1 +(noun)|incurability|characteristic +incurious|1 +(adj)|incurious |uninterested|uninquiring|uninquisitive +incurrence|1 +(noun)|commitment +incurring|1 +(noun)|acquisition +incursion|3 +(noun)|entrance|entering|entry|ingress|incoming +(noun)|penetration|attack|onslaught|onset|onrush +(noun)|mistake|error|fault +incursive|1 +(adj)|invading|invasive|offensive +incurvate|3 +(adj)|incurved|curved |curving +(verb)|bend|flex +(verb)|flex|bend|deform|twist|turn +incurvation|2 +(noun)|concave shape|concavity|incurvature|solid +(noun)|bending +incurvature|1 +(noun)|concave shape|concavity|incurvation|solid +incurved|1 +(adj)|incurvate|curved |curving +incus|1 +(noun)|anvil|auditory ossicle +indaba|1 +(noun)|council +indapamide|1 +(noun)|Lozal|diuretic drug|diuretic|water pill +indebted|2 +(adj)|obligated +(adj)|obligated +indebtedness|1 +(noun)|liability|financial obligation|obligation +indecency|2 +(noun)|impropriety|improperness +(noun)|impropriety|misbehavior|misbehaviour|misdeed +indecent|3 +(adj)|indecorous|unbecoming|uncomely|unseemly|untoward|improper +(adj)|indecent |coarse|crude|earthy|gross|vulgar|Hollywood|indelicate|obscene|dirty|improper|indecorous|indelicate +(adj)|immodest +indecent exposure|1 +(noun)|public nudity|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +indecipherable|2 +(adj)|unclear|undecipherable|unreadable|illegible +(adj)|incomprehensible |uncomprehensible +indecision|2 +(noun)|indecisiveness|irresolution|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|indecisiveness|irresoluteness|irresolution +indecisive|3 +(adj)|indecisive |hesitant|hesitating|irresolute|on the fence|undecided|suspensive|irresolute +(adj)|indecisive |inconclusive|inconclusive|irresolute +(adj)|indefinite +indecisiveness|2 +(noun)|indecision|irresolution|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|indecision|irresoluteness|irresolution +indecorous|2 +(adj)|indecorous |indelicate|improper|indecent +(adj)|indecent|unbecoming|uncomely|unseemly|untoward|improper +indecorously|1 +(adv)|unbecomingly +indecorousness|1 +(noun)|indecorum|impropriety|improperness +indecorum|2 +(noun)|indecorousness|impropriety|improperness +(noun)|familiarity|impropriety|liberty|misbehavior|misbehaviour|misdeed +indeed|1 +(adv)|so +indefatigability|1 +(noun)|indefatigableness|tirelessness|determination|purpose +indefatigable|1 +(adj)|tireless|unflagging|unwearying|energetic +indefatigableness|1 +(noun)|indefatigability|tirelessness|determination|purpose +indefatigably|1 +(adv)|tirelessly|inexhaustibly +indefeasible|1 +(adj)|indefeasible |unforfeitable|inalienable +indefensible|2 +(adj)|untenable|unreasonable +(adj)|insupportable|unjustifiable|unwarrantable|unwarranted|inexcusable +indefinable|2 +(adj)|undefinable|undefined |vague +(adj)|indescribable|ineffable|unspeakable|untellable|unutterable|inexpressible |unexpressible +indefinite|2 +(adj)|indefinite |coy|indecisive|nebulous|unfixed|one|indistinct|unclear|undefined|vague +(adj)|uncertain +indefinite article|1 +(noun)|article +indefinite integral|1 +(noun)|integral +indefinite quantity|1 +(noun)|measure|quantity|amount +indefiniteness|1 +(noun)|indeterminateness|indefinity|indetermination|indeterminacy|uncertainty|uncertainness +indefinity|1 +(noun)|indefiniteness|indeterminateness|indetermination|indeterminacy|uncertainty|uncertainness +indehiscent|1 +(adj)|indehiscent +indelible|1 +(adj)|unerasable|ineradicable +indelible ink|1 +(noun)|ink +indelicacy|2 +(noun)|impropriety|improperness +(noun)|discourtesy|offense|offence|offensive activity +indelicate|3 +(adj)|off-color|off-colour|tasteless +(adj)|indecorous |improper|indecent +(adj)|indecent +indemnification|2 +(noun)|damages|amends|indemnity|restitution|redress|compensation +(noun)|recompense|compensation +indemnify|2 +(verb)|cover|insure|underwrite +(verb)|compensate|recompense|repair|pay +indemnity|3 +(noun)|insurance|protection|shelter +(noun)|exemption|freedom +(noun)|damages|amends|indemnification|restitution|redress|compensation +indene|1 +(noun)|hydrocarbon +indent|7 +(noun)|order|purchase order +(noun)|indentation|indenture|space|blank space|place +(verb)|format|arrange +(verb)|cut +(verb)|dent|flex|bend|deform|twist|turn +(verb)|notch +(verb)|indenture|oblige|bind|hold|obligate +indentation|4 +(noun)|indenture|concave shape|concavity|incurvation|incurvature +(noun)|pitting|roughness|corrosion|corroding|erosion +(noun)|indent|indenture|space|blank space|place +(noun)|change of shape +indented|2 +(adj)|embattled|crenelated|crenelate|crenellated|crenellate|fancy +(adj)|depressed|concave +indenture|5 +(noun)|indentation|concave shape|concavity|incurvation|incurvature +(noun)|written agreement +(noun)|contract +(noun)|indentation|indent|space|blank space|place +(verb)|indent|oblige|bind|hold|obligate +indentured|1 +(adj)|apprenticed|articled|bound|unfree +independence|3 +(noun)|independency|freedom +(noun)|victory|triumph +(noun)|Independence|city|metropolis|urban center +independence day|1 +(noun)|Independence Day|Fourth of July|July 4|legal holiday|national holiday +independence hall|1 +(noun)|Independence Hall|building|edifice +independency|1 +(noun)|independence|freedom +independent|8 +(adj)|independent |autarkic|autarkical|autonomous|self-directed|self-reliant|autonomous|breakaway|fissiparous|separatist|commutative|free-living|nonparasitic|nonsymbiotic|indie|individual|case-by-case|item-by-item|on one's own|on his own|on her own|on your own|on their own|self-sufficient|self-sufficing|self-sustaining|self-supporting|single-handed|strong-minded|unaffiliated|unconditional|free|separate +(adj)|absolute +(adj)|autonomous|self-governing|sovereign|free +(adj)|unconditional +(adj)|independent +(adj)|nonpartisan |nonpartizan +(noun)|mugwump|fencesitter|individualist +(noun)|freelance|self-employed person|worker +independent agency|1 +(noun)|agency|federal agency|government agency|bureau|office|authority +independent clause|1 +(noun)|main clause|clause +independent state of papua new guinea|1 +(noun)|Papua New Guinea|Independent State of Papua New Guinea|country|state|land +independent state of samoa|1 +(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country|state|land +independent variable|1 +(noun)|experimental variable|variable|variable quantity +independently|1 +(adv)|severally +inderal|1 +(noun)|propanolol|Inderal|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +indescribable|1 +(adj)|indefinable|ineffable|unspeakable|untellable|unutterable|inexpressible |unexpressible +indescribably|1 +(adv)|ineffably|unutterably|unspeakably +indestructibility|1 +(noun)|lastingness|durability|enduringness|strength +indestructible|2 +(adj)|indestructible |undestroyable +(adj)|durable|perdurable|undestroyable|imperishable +indeterminable|2 +(adj)|indeterminable |undeterminable|indeterminate|unascertainable|undiscoverable|unpredictable|incalculable|indeterminate|undetermined +(adj)|incalculable +indeterminacy|1 +(noun)|indefiniteness|indeterminateness|indefinity|indetermination|uncertainty|uncertainness +indeterminacy principle|1 +(noun)|uncertainty principle|scientific theory +indeterminate|5 +(adj)|indeterminate |undetermined|cost-plus|open-ended|inconclusive|indeterminable|undeterminable|uncertain +(adj)|indeterminate |racemose +(adj)|equivocal |ambiguous +(adj)|indeterminable |undeterminable +(adj)|inconclusive +indeterminateness|1 +(noun)|indefiniteness|indefinity|indetermination|indeterminacy|uncertainty|uncertainness +indetermination|1 +(noun)|indefiniteness|indeterminateness|indefinity|indeterminacy|uncertainty|uncertainness +index|8 +(noun)|scale|scale of measurement|graduated table|ordered series +(noun)|index number|indicant|indicator|fact +(noun)|exponent|power|mathematical notation +(noun)|list|listing +(noun)|index finger|forefinger|finger +(verb)|list +(verb)|supply|provide|render|furnish +(verb)|determine|shape|mold|influence|regulate +index case|1 +(noun)|patient +index finger|1 +(noun)|index|forefinger|finger +index fossil|1 +(noun)|guide fossil|fossil +index fund|1 +(noun)|mutual fund|open-end fund|open-end investment company +index number|1 +(noun)|index|indicant|indicator|fact +index of refraction|1 +(noun)|refractive index|ratio +index register|1 +(noun)|register +indexation|1 +(noun)|regulation|regulating +indexer|1 +(noun)|skilled worker|trained worker +indexical|1 +(adj)|fact +indexing|1 +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +indexless|1 +(adj)|list|listing +india|1 +(noun)|India|Republic of India|Bharat|Asian country|Asian nation +india-rubber fig|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree +india-rubber plant|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree +india-rubber tree|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree +india ink|1 +(noun)|India ink|drawing ink|ink +india paper|1 +(noun)|paper +india rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc|latex +indiaman|1 +(noun)|Indiaman|sailing vessel|sailing ship +indian|5 +(adj)|Indian|Asian country|Asian nation +(adj)|Indian|Amerind|Amerindic|native American|Amerindian|Native American +(noun)|Indian|North American Indian|American Indian|Red Indian|Amerindian|Native American +(noun)|Indian|Asian|Asiatic +(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language|tongue +indian agent|1 +(noun)|Indian agent|agent|federal agent +indian arrowroot|1 +(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb|herbaceous plant +indian banyan|1 +(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree +indian bean|2 +(noun)|catalpa|Indian bean|bean tree +(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +indian beech|1 +(noun)|Indian beech|Pongamia glabra|tree +indian beet|1 +(noun)|wild lupine|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub|suffrutex +indian blackwood|1 +(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood|rosewood tree +indian blanket|1 +(noun)|blanket flower|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia +indian breadroot|1 +(noun)|breadroot|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb|herbaceous plant +indian buffalo|1 +(noun)|Indian buffalo|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis +indian button fern|1 +(noun)|Indian button fern|Tectaria macrodonta|fern +indian capital|1 +(noun)|New Delhi|Indian capital|capital of India|national capital +indian cherry|1 +(noun)|Carolina buckthorn|Rhamnus carolinianus|buckthorn +indian chickweed|1 +(noun)|carpetweed|Indian chickweed|Molluga verticillata|weed +indian chief|1 +(noun)|Indian chief|Indian chieftain|headman|tribal chief|chieftain +indian chieftain|1 +(noun)|Indian chief|Indian chieftain|headman|tribal chief|chieftain +indian chocolate|1 +(noun)|water avens|Indian chocolate|purple avens|chocolate root|Geum rivale|avens +indian cholera|1 +(noun)|cholera|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease +indian club|1 +(noun)|Indian club|club +indian cobra|1 +(noun)|Indian cobra|Naja naja|cobra +indian coral tree|1 +(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree|erythrina +indian corn|1 +(noun)|corn|maize|Indian corn|Zea mays|cereal|cereal grass +indian cress|1 +(noun)|garden nasturtium|Indian cress|Tropaeolum majus|nasturtium +indian crocus|1 +(noun)|Indian crocus|orchid|orchidaceous plant +indian currant|1 +(noun)|coralberry|Indian currant|Symphoricarpos orbiculatus|shrub|bush +indian elephant|1 +(noun)|Indian elephant|Elephas maximus|elephant +indian file|1 +(noun)|file|single file|Indian file|line +indian giver|1 +(noun)|Indian giver|donor|giver|presenter +indian grackle|1 +(noun)|hill myna|Indian grackle|grackle|Gracula religiosa|myna|mynah|mina|minah|myna bird|mynah bird +indian hemp|3 +(noun)|Indian hemp|Cannabis indica|cannabis|hemp +(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +(noun)|Indian hemp|rheumatism weed|Apocynum cannabinum|dogbane +indian lettuce|1 +(noun)|Indian lettuce|herb|herbaceous plant +indian lodge|1 +(noun)|lodge|dwelling|home|domicile|abode|habitation|dwelling house +indian lotus|1 +(noun)|lotus|Indian lotus|sacred lotus|Nelumbo nucifera|water lily +indian madder|1 +(noun)|Indian madder|munjeet|Rubia cordifolia|madderwort|rubiaceous plant +indian mallow|2 +(noun)|Indian mallow|Sida spinosa|mallow +(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +indian meal|1 +(noun)|cornmeal|Indian meal|meal +indian millet|2 +(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum +(noun)|mountain rice|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass|rice grass +indian monetary unit|1 +(noun)|Indian monetary unit|monetary unit +indian mongoose|1 +(noun)|Indian mongoose|Herpestes nyula|mongoose +indian mustard|2 +(noun)|chinese mustard|leaf mustard|gai choi|Brassica juncea|mustard +(noun)|mustard|mustard greens|leaf mustard|Indian mustard|cruciferous vegetable +indian mutiny|1 +(noun)|Indian Mutiny|Sepoy Mutiny|rebellion|insurrection|revolt|rising|uprising +indian ocean|1 +(noun)|Indian Ocean|ocean +indian paint|2 +(noun)|hoary puccoon|Indian paint|Lithospermum canescens|herb|herbaceous plant +(noun)|strawberry blite|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot +indian paintbrush|2 +(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +(noun)|Indian paintbrush|painted cup|wildflower|wild flower +indian pea|1 +(noun)|grass pea|Indian pea|khesari|Lathyrus sativus|vetchling +indian pink|2 +(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory +(noun)|cardinal flower|Indian pink|Lobelia cardinalis|lobelia +indian pipe|1 +(noun)|Indian pipe|waxflower|Monotropa uniflora|wildflower|wild flower +indian plantain|1 +(noun)|Indian plantain|herb|herbaceous plant +indian poke|2 +(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore|false hellebore +(noun)|Indian poke|Phytolacca acinosa|pokeweed +indian pony|1 +(noun)|cayuse|Indian pony|pony +indian potato|2 +(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine +(noun)|giant sunflower|tall sunflower|Indian potato|Helianthus giganteus|sunflower|helianthus +indian python|1 +(noun)|Indian python|Python molurus|python +indian race|2 +(noun)|Indian race|race +(noun)|Indian race|Amerindian race|race +indian rat snake|1 +(noun)|Indian rat snake|Ptyas mucosus|rat snake +indian rattlebox|1 +(noun)|Indian rattlebox|Crotalaria spectabilis|crotalaria|rattlebox +indian red|3 +(noun)|Indian red|pigment +(noun)|Indian red|soil|dirt +(noun)|Indian red|reddish brown|sepia|burnt sienna|Venetian red +indian relish|1 +(noun)|chutney|Indian relish|condiment +indian reservation|1 +(noun)|reservation|reserve +indian rhinoceros|1 +(noun)|Indian rhinoceros|Rhinoceros unicornis|rhinoceros|rhino +indian rhododendron|1 +(noun)|Indian rhododendron|Melastoma malabathricum|shrub|bush +indian rhubarb|2 +(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb|herbaceous plant +(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb|rhubarb plant +indian rice|1 +(noun)|wild rice|Indian rice|grain|food grain|cereal +indian rosewood|1 +(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood|rosewood tree +indian rupee|1 +(noun)|Indian rupee|rupee|Indian monetary unit +indian salad|1 +(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +indian senna|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +indian shot|1 +(noun)|achira|arrowroot|Canna indica|Canna edulis|canna +indian summer|1 +(noun)|Indian summer|Saint Martin's summer|time period|period of time|period +indian tapir|1 +(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir +indian tick fever|1 +(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease +indian tobacco|2 +(noun)|wild tobacco|Indian tobacco|Nicotiana rustica|tobacco +(noun)|Indian tobacco|bladderpod|Lobelia inflata|lobelia +indian trail|1 +(noun)|Indian trail|trail +indian turnip|1 +(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum|aroid +indiana|1 +(noun)|Indiana|Hoosier State|IN|American state +indianan|1 +(noun)|Indianan|Hoosier|American +indianapolis|1 +(noun)|Indianapolis|capital of Indiana|state capital +indic|1 +(noun)|Indic|Indo-Aryan|Indo-Iranian|Indo-Iranian language +indicant|2 +(noun)|indication|communication +(noun)|index|index number|indicator|fact +indicate|5 +(verb)|bespeak|betoken|point|signal|tell +(verb)|point|show|inform +(verb)|inform +(verb)|argue|present|represent|lay out +(verb)|suggest|inform +indication|5 +(noun)|indicant|communication +(noun)|denotation|naming +(noun)|reason +(noun)|advice +(noun)|reading|meter reading|datum|data point +indicative|3 +(adj)|declarative|mood|mode|modality +(adj)|indicatory|revelatory|significative|suggestive|revealing +(noun)|indicative mood|declarative mood|declarative|common mood|fact mood|mood|mode|modality +indicative mood|1 +(noun)|indicative|declarative mood|declarative|common mood|fact mood|mood|mode|modality +indicator|4 +(noun)|index|index number|indicant|fact +(noun)|signal|signaling|sign +(noun)|device +(noun)|coloring material|colouring material|color|colour +indicator lamp|1 +(noun)|pilot light|pilot lamp|indicator +indicatoridae|1 +(noun)|Indicatoridae|family Indicatoridae|bird family +indicatory|1 +(adj)|indicative|revelatory|significative|suggestive|revealing +indict|1 +(verb)|charge|accuse +indictability|1 +(noun)|impeachability|guilt|guiltiness +indictable|1 +(adj)|chargeable|guilty +indiction|1 +(noun)|time period|period of time|period +indictment|2 +(noun)|bill of indictment|legal document|legal instrument|official document|instrument +(noun)|accusation|accusal +indie|2 +(adj)|independent +(noun)|pop group +indifference|4 +(noun)|unconcern +(noun)|emotionlessness|impassivity|impassiveness|phlegm|stolidity|unemotionality|apathy +(noun)|apathy|spiritlessness|passivity|passiveness +(noun)|nonchalance|unconcern|carefreeness +indifferent|10 +(adj)|apathetic|uninterested +(adj)|unconcerned +(adj)|deaf|heedless |thoughtless|unheeding +(adj)|immaterial|unimportant +(adj)|inferior +(adj)|inert|neutral|unreactive +(adj)|impartial |fair +(adj)|unbiased|unbiassed|impartial |fair +(adj)|passable|so-so|tolerable|ordinary +(adj)|moderate +indigen|1 +(noun)|native|indigene|person|individual|someone|somebody|mortal|human|soul +indigence|1 +(noun)|need|penury|beggary|pauperism|pauperization|poverty|poorness|impoverishment +indigene|1 +(noun)|native|indigen|person|individual|someone|somebody|mortal|human|soul +indigenous|1 +(adj)|autochthonal|autochthonic|autochthonous|endemic|native +indigenousness|1 +(noun)|autochthony|endemism|nativeness +indigent|1 +(adj)|destitute|impoverished|necessitous|needy|poverty-stricken|poor +indigestibility|1 +(noun)|indigestibleness|edibility|edibleness +indigestible|1 +(adj)|indigestible |flatulent|heavy|nondigestible|undigested|inedible|uneatable +indigestibleness|1 +(noun)|indigestibility|edibility|edibleness +indigestion|1 +(noun)|dyspepsia|stomach upset|upset stomach|symptom +indigirka|1 +(noun)|Indigirka|Indigirka River|river +indigirka river|1 +(noun)|Indigirka|Indigirka River|river +indignant|1 +(adj)|incensed|outraged|umbrageous|angry +indignation|1 +(noun)|outrage|anger|choler|ire +indignity|1 +(noun)|insult|affront +indigo|3 +(noun)|anil|indigotin|dye|dyestuff +(noun)|indigo plant|Indigofera tinctoria|shrub|bush +(noun)|violet|reddish blue +indigo bird|1 +(noun)|indigo bunting|indigo finch|Passerina cyanea|bunting +indigo broom|1 +(noun)|horsefly weed|rattle weed|Baptisia tinctoria|wild indigo|false indigo +indigo bunting|1 +(noun)|indigo finch|indigo bird|Passerina cyanea|bunting +indigo finch|1 +(noun)|indigo bunting|indigo bird|Passerina cyanea|bunting +indigo plant|1 +(noun)|indigo|Indigofera tinctoria|shrub|bush +indigo snake|1 +(noun)|gopher snake|Drymarchon corais|colubrid snake|colubrid +indigo squill|1 +(noun)|wild hyacinth|Camassia scilloides|camas|camass|quamash|camosh|camash +indigofera|1 +(noun)|Indigofera|genus Indigofera|rosid dicot genus +indigofera anil|1 +(noun)|anil|Indigofera suffruticosa|Indigofera anil|indigo|indigo plant|Indigofera tinctoria +indigofera suffruticosa|1 +(noun)|anil|Indigofera suffruticosa|Indigofera anil|indigo|indigo plant|Indigofera tinctoria +indigofera tinctoria|1 +(noun)|indigo|indigo plant|Indigofera tinctoria|shrub|bush +indigotin|1 +(noun)|anil|indigo|dye|dyestuff +indinavir|1 +(noun)|Crixivan|protease inhibitor|PI +indira gandhi|1 +(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman|solon|national leader +indira nehru gandhi|1 +(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman|solon|national leader +indirect|5 +(adj)|mediate +(adj)|indirect |askance|askant|asquint|squint|squint-eyed|squinty|sidelong|devious|circuitous|roundabout|diversionary|meandering|rambling|wandering|winding|crooked +(adj)|collateral |related +(adj)|indirect |allusive|backhanded|circuitous|roundabout|circumlocutious|circumlocutory|periphrastic|ambagious|devious|oblique|digressive|discursive|excursive|rambling|hearsay|mealymouthed|mealy-mouthed|tortuous +(adj)|secondary +indirect antonym|1 +(noun)|antonym|opposite word|opposite +indirect correlation|1 +(noun)|negative correlation|correlation|correlational statistics +indirect discourse|1 +(noun)|report|account +indirect evidence|1 +(noun)|circumstantial evidence|evidence +indirect expression|1 +(noun)|circumlocution|evasion|equivocation +indirect fire|1 +(noun)|fire|firing +indirect immunofluorescence|1 +(noun)|fluorescence microscopy +indirect lighting|1 +(noun)|lighting fixture +indirect object|1 +(noun)|object +indirect request|1 +(noun)|wish|request|asking +indirect tax|1 +(noun)|tax|taxation|revenue enhancement +indirect transmission|1 +(noun)|transmission mechanism +indirection|2 +(noun)|procedure|process +(noun)|deception|deceit|dissembling|dissimulation +indirectness|1 +(noun)|characteristic +indiscernible|2 +(adj)|indiscernible +(adj)|insensible|undetectable|imperceptible |unperceivable +indiscipline|1 +(noun)|undiscipline|trait +indiscreet|1 +(adj)|indiscreet |bigmouthed|blabbermouthed|blabby|talkative|imprudent +indiscreetness|1 +(noun)|injudiciousness|sagacity|sagaciousness|judgment|judgement|discernment +indiscrete|1 +(adj)|indivisible +indiscretion|2 +(noun)|injudiciousness|folly|foolishness|unwiseness +(noun)|peccadillo|misbehavior|misbehaviour|misdeed +indiscriminate|2 +(adj)|undiscriminating |indiscriminating +(adj)|indiscriminate |promiscuous|sweeping|wholesale|general|undiscriminating|indiscriminating +indiscriminately|2 +(adv)|randomly|haphazardly|willy-nilly|arbitrarily|at random|every which way +(adv)|promiscuously +indiscriminating|1 +(adj)|undiscriminating |indiscriminate|uncritical|unperceptive|scattershot|unselective|indiscriminate +indispensability|1 +(noun)|indispensableness|vitalness|essentiality|essentialness +indispensable|3 +(adj)|indispensable |critical|vital|necessary +(adj)|essential|necessary +(adj)|obligatory +indispensableness|1 +(noun)|indispensability|vitalness|essentiality|essentialness +indispose|3 +(verb)|disincline|determine|shape|mold|influence|regulate +(verb)|disqualify|unfit|change|alter|modify +(verb)|change|alter|modify +indisposed|2 +(adj)|ailing|peaked|poorly|sickly|unwell|under the weather|ill |sick +(adj)|antipathetic|antipathetical|averse|loath|loth|disinclined +indisposition|2 +(noun)|illness|unwellness|malady|sickness +(noun)|reluctance|hesitancy|hesitation|disinclination|unwillingness +indisputability|1 +(noun)|indubitability|unquestionability|unquestionableness|certainty|sure thing|foregone conclusion +indisputable|2 +(adj)|incontestable|undisputable|undeniable +(adj)|sure|certain +indissoluble|2 +(adj)|insoluble +(adj)|permanent |lasting +indistinct|1 +(adj)|indistinct |bedimmed|bleary|blurred|blurry|foggy|fuzzy|hazy|muzzy|cloudy|nebulose|nebulous|dim|faint|shadowy|vague|wispy|veiled|faint|indefinite|unclear +indistinctly|1 +(adv)|dimly +indistinctness|1 +(noun)|blurriness|fogginess|fuzziness|opacity|opaqueness +indistinguishability|1 +(noun)|identity|identicalness|sameness +indistinguishable|2 +(adj)|identical|same +(adj)|indistinguishable |undistinguishable +indite|1 +(verb)|write|compose|pen|create verbally +indium|1 +(noun)|In|atomic number 49|metallic element|metal +individual|6 +(adj)|individual |idiosyncratic|individualist|individualistic|one-on-one|man-to-man|respective|several|various|separate|single|single|singular|particular|separate +(adj)|case-by-case|item-by-item|independent +(adj)|separate|single|unshared +(adj)|private|personal +(noun)|person|someone|somebody|mortal|human|soul|organism|being|causal agent|cause|causal agency +(noun)|organism|being +individual retirement account|1 +(noun)|IRA|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program +individualisation|1 +(noun)|individualization|individuation|discrimination|secernment +individualise|2 +(verb)|individualize|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|personalize|personalise|individualize|change|alter|modify +individualised|1 +(adj)|individualized|personalized|personalised|personal +individualism|3 +(noun)|individuality|individuation|trait +(noun)|belief +(noun)|laissez faire|doctrine|philosophy|philosophical system|school of thought|ism +individualist|2 +(adj)|individualistic|individual +(noun)|person|individual|someone|somebody|mortal|human|soul +individualistic|2 +(adj)|individualist|individual +(adj)|laissez-faire|capitalistic |capitalist +individuality|2 +(noun)|individualism|individuation|trait +(noun)|identity|personal identity|personality +individualization|1 +(noun)|individualisation|individuation|discrimination|secernment +individualize|2 +(verb)|individualise|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|personalize|personalise|individualise|change|alter|modify +individualized|1 +(adj)|individualised|personalized|personalised|personal +individually|1 +(adv)|separately|singly|severally|one by one|on an individual basis +individuate|2 +(verb)|characterize|characterise +(verb)|shape|form +individuation|2 +(noun)|individualization|individualisation|discrimination|secernment +(noun)|individuality|individualism|trait +indivisible|1 +(adj)|indivisible |indiscrete|inseparable|undividable|indivisible by +indivisible by|1 +(adj)|undividable|indivisible +indo-aryan|2 +(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person +(noun)|Indic|Indo-Aryan|Indo-Iranian|Indo-Iranian language +indo-european|4 +(adj)|Indo-European|Indo-Germanic|natural language|tongue +(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person +(noun)|Aryan|Indo-European|primitive|primitive person +(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language|tongue +indo-european language|1 +(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language|tongue +indo-germanic|1 +(adj)|Indo-European|Indo-Germanic|natural language|tongue +indo-hittite|1 +(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language|tongue +indo-iranian|1 +(noun)|Indo-Iranian|Indo-Iranian language|Indo-European|Indo-European language|Indo-Hittite +indo-iranian language|1 +(noun)|Indo-Iranian|Indo-Iranian language|Indo-European|Indo-European language|Indo-Hittite +indochina|1 +(noun)|Indochina|Indochinese peninsula|peninsula +indochinese peninsula|1 +(noun)|Indochina|Indochinese peninsula|peninsula +indocile|1 +(adj)|uncontrollable|ungovernable|unruly|unmanageable +indocin|1 +(noun)|indomethacin|Indocin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +indoctrinate|1 +(verb)|teach|learn|instruct +indoctrination|1 +(noun)|teaching|instruction|pedagogy +indoleacetic acid|1 +(noun)|IAA|auxin +indolebutyric acid|1 +(noun)|auxin +indolence|1 +(noun)|laziness|inactiveness|inactivity|inertia +indolent|2 +(adj)|faineant|lazy|otiose|slothful|work-shy|idle +(adj)|inactive +indomethacin|1 +(noun)|Indocin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +indomitability|1 +(noun)|invincibility|strength +indomitable|1 +(adj)|never-say-die|unsubduable|unconquerable +indonesia|1 +(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country|state|land +indonesian|3 +(adj)|Indonesian|country|state|land +(noun)|Indonesian|Asian|Asiatic +(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay +indonesian borneo|1 +(noun)|Indonesian Borneo|Kalimantan|state|province +indonesian monetary unit|1 +(noun)|Indonesian monetary unit|monetary unit +indoor|2 +(adj)|indoor |inside|interior +(adj)|interior +indoor garden|1 +(noun)|conservatory|hothouse|greenhouse|nursery|glasshouse +indoors|1 +(adv)|inside +indorse|4 +(verb)|back|endorse|plump for|plunk for|support|approve|O.K.|okay|sanction +(verb)|second|back|endorse|support|back up +(verb)|certify|endorse|guarantee|warrant +(verb)|endorse|sign +indorsement|5 +(noun)|endorsement|blurb|promotion|publicity|promotional material|packaging +(noun)|second|secondment|endorsement|agreement +(noun)|sanction|countenance|endorsement|warrant|imprimatur|approval|commendation +(noun)|endorsement|signature +(noun)|endorsement|support +indorser|2 +(noun)|subscriber|endorser|ratifier|supporter|protagonist|champion|admirer|booster|friend +(noun)|endorser|signer|signatory +indra|1 +(noun)|Indra|Hindu deity +indrawn|2 +(adj)|withdrawn|reserved +(adj)|inhaled +indri|1 +(noun)|indris|Indri indri|Indri brevicaudatus|lemur +indri brevicaudatus|1 +(noun)|indri|indris|Indri indri|Indri brevicaudatus|lemur +indri indri|1 +(noun)|indri|indris|Indri indri|Indri brevicaudatus|lemur +indriidae|1 +(noun)|Indriidae|family Indriidae|mammal family +indris|2 +(noun)|indri|Indri indri|Indri brevicaudatus|lemur +(noun)|indri|Indri indri|Indri brevicaudatus|lemur +indubitability|1 +(noun)|indisputability|unquestionability|unquestionableness|certainty|sure thing|foregone conclusion +indubitable|1 +(adj)|beyond doubt|unquestionable +induce|5 +(verb)|bring on|generate|bring forth +(verb)|stimulate|cause|have|get|make +(verb)|stimulate|rush|hasten|effect|effectuate|bring about|set up +(verb)|reason|reason out|conclude +(verb)|induct|produce|bring about|give rise +induced|1 +(adj)|induced |elicited|evoked|iatrogenic +induced abortion|1 +(noun)|abortion +inducement|2 +(noun)|incentive|motivator|rational motive +(noun)|inducing|causing|causation +inducer|2 +(noun)|agent +(noun)|persuader|communicator +inducing|1 +(noun)|inducement|causing|causation +inducive|1 +(adj)|inductive|causative +induct|5 +(verb)|invest|seat|install +(verb)|initiate|admit|let in|include +(verb)|receive|take in|invite +(verb)|induce|produce|bring about|give rise +(verb)|teach|learn|instruct +inductance|2 +(noun)|induction|physical property +(noun)|inductor|electrical device +inductance unit|1 +(noun)|electromagnetic unit|emu +inductee|2 +(noun)|member +(noun)|draftee|conscript|serviceman|military man|man|military personnel +induction|8 +(noun)|initiation|installation|ceremony|ceremonial|ceremonial occasion|observance +(noun)|electrical phenomenon +(noun)|generalization|generalisation|inductive reasoning|colligation +(noun)|natural process|natural action|action|activity +(noun)|evocation|elicitation|stimulation|stimulus|stimulant|input +(noun)|inductance|physical property +(noun)|introduction|debut|first appearance|launching|unveiling|entry +(noun)|trigger|initiation|causing|causation +induction accelerator|1 +(noun)|betatron|accelerator|particle accelerator|atom smasher +induction coil|1 +(noun)|coil +induction heating|1 +(noun)|heating|warming +induction of labor|1 +(noun)|induction +inductive|4 +(adj)|colligation +(adj)|physical property +(adj)|inductive |a posteriori|synthetic|synthetical +(adj)|inducive|causative +inductive reasoning|1 +(noun)|generalization|generalisation|induction|colligation +inductor|1 +(noun)|inductance|electrical device +indue|1 +(verb)|endow|gift|empower|invest|endue|enable +indulge|3 +(verb)|gratify|pander|provide|supply|ply|cater +(verb)|luxuriate|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|pamper|featherbed|cosset|cocker|baby|coddle|mollycoddle|spoil|treat|handle|do by +indulgence|5 +(noun)|self-indulgence|indiscipline|undiscipline +(noun)|lenience|leniency|permissiveness|tolerance +(noun)|indulging|pampering|humoring|gratification +(noun)|folly|foolery|tomfoolery|craziness|lunacy|play|frolic|romp|gambol|caper +(noun)|absolution|remission|remittal|remission of sin +indulgent|3 +(adj)|indulgent |decadent|effete|epicurean|luxurious|sybaritic|voluptuary|voluptuous|gay|hedonic|hedonistic|epicurean|intemperate|pampering|dissipated|betting|card-playing|gambling|sporting|self-indulgent|gluttonous +(adj)|lax|lenient|soft|permissive +(adj)|favorable |favourable +indulging|1 +(noun)|indulgence|pampering|humoring|gratification +indument|1 +(noun)|indumentum|covering|natural covering|cover +indumentum|1 +(noun)|indument|covering|natural covering|cover +indurate|5 +(adj)|callous|thick-skinned|pachydermatous|insensitive +(verb)|change +(verb)|harden|change +(verb)|harden|change +(verb)|inure|harden|habituate|accustom +indurated clay|1 +(noun)|soil|dirt +induration|1 +(noun)|sclerosis|pathology +induration of the arteries|1 +(noun)|arteriosclerosis|arterial sclerosis|hardening of the arteries|coronary-artery disease|sclerosis|induration +indus|2 +(noun)|Indus|constellation +(noun)|Indus|Indus River|river +indus river|1 +(noun)|Indus|Indus River|river +indusial|1 +(adj)|covering|natural covering|cover +indusium|1 +(noun)|covering|natural covering|cover +industrial|5 +(adj)|commercial enterprise|business enterprise|business +(adj)|industrial |developed|highly-developed|industrialized|industrialised|postindustrial|progressive +(adj)|commercial enterprise +(adj)|blue-collar +(adj)|heavy-duty +industrial-strength|1 +(adj)|weapons-grade|strong +industrial air pollution|1 +(noun)|air pollution +industrial arts|1 +(noun)|course|course of study|course of instruction|class +industrial bank|1 +(noun)|industrial loan company|consumer finance company|small loan company +industrial disease|1 +(noun)|occupational disease|disease +industrial engineering|1 +(noun)|industrial management|engineering|engineering science|applied science|technology +industrial enterprise|1 +(noun)|industrialization|industrialisation|industry|manufacture +industrial loan company|1 +(noun)|industrial bank|consumer finance company|small loan company +industrial management|1 +(noun)|industrial engineering|engineering|engineering science|applied science|technology +industrial park|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +industrial plant|1 +(noun)|plant|works|building complex|complex +industrial process|1 +(noun)|process +industrial psychology|1 +(noun)|applied psychology|psychology|psychological science +industrial revolution|1 +(noun)|technological revolution|historic period|age +industrial union|1 +(noun)|vertical union|union|labor union|trade union|trades union|brotherhood +industrial watercourse|1 +(noun)|canal +industrial workers of the world|1 +(noun)|Industrial Workers of the World|IWW|I.W.W.|union|labor union|trade union|trades union|brotherhood|labor movement|trade union movement|labor +industrialisation|1 +(noun)|industrialization|industrial enterprise|industry|manufacture +industrialise|2 +(verb)|industrialize|change|alter|modify +(verb)|industrialize|change +industrialised|1 +(adj)|industrialized|industrial +industrialism|1 +(noun)|economy|economic system +industrialist|1 +(noun)|businessman|man of affairs +industrialization|1 +(noun)|industrialisation|industrial enterprise|industry|manufacture +industrialize|2 +(verb)|industrialise|change|alter|modify +(verb)|industrialise|change +industrialized|1 +(adj)|industrialised|industrial +industrious|2 +(adj)|hardworking|tireless|untiring|diligent +(adj)|energetic|gumptious|up-and-coming|enterprising +industriousness|1 +(noun)|diligence|industry|determination|purpose +industry|3 +(noun)|commercial enterprise +(noun)|manufacture|commercial enterprise|business enterprise|business +(noun)|diligence|industriousness|determination|purpose +industry analyst|1 +(noun)|analyst +indwell|1 +(verb)|exist|survive|live|subsist +indweller|2 +(noun)|activation +(noun)|inhabitant|dweller|denizen|person|individual|someone|somebody|mortal|human|soul +indwelling|1 +(adj)|inward +inebriant|1 +(noun)|alcohol|alcoholic beverage|intoxicant|beverage|drink|drinkable|potable|drug of abuse|street drug +inebriate|4 +(noun)|drunkard|drunk|rummy|sot|drinker|imbiber|toper|juicer +(verb)|exhilarate|thrill|exalt|beatify|elate|lift up|uplift|pick up|intoxicate +(verb)|intoxicate|soak|affect +(verb)|souse|soak|hit it up|drink|booze|fuddle +inebriated|1 +(adj)|intoxicated |drunk|bacchanalian|bacchanal|bacchic|carousing|orgiastic|beery|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|bibulous|boozy|drunken|sottish|doped|drugged|narcotized|narcotised|half-seas-over|high|mellow|hopped-up|stoned +inebriation|2 +(noun)|alcoholism|alcohol addiction|drunkenness|drug addiction|white plague +(noun)|drunkenness|inebriety|intoxication|tipsiness|temporary state +inebriety|1 +(noun)|drunkenness|inebriation|intoxication|tipsiness|temporary state +inedible|1 +(adj)|inedible |uneatable|poisonous|indigestible|tough|unpalatable +ineffable|2 +(adj)|indefinable|indescribable|unspeakable|untellable|unutterable|inexpressible |unexpressible +(adj)|unnameable|unspeakable|unutterable|sacred +ineffably|1 +(adv)|indescribably|unutterably|unspeakably +ineffective|3 +(adj)|ineffective |uneffective|ineffectual|toothless|unproductive|idle|inefficacious|inefficient|powerless|weak|useless +(adj)|ineffectual|unable|impotent +(adj)|inefficient|incompetent +ineffectively|1 +(adv)|inefficaciously +ineffectiveness|1 +(noun)|ineffectualness|ineffectuality|powerlessness|impotence|impotency +ineffectual|4 +(adj)|ineffectual |ineffective|uneffective +(adj)|ineffective |uneffective|toothless|unproductive|idle|inefficacious|inefficient|powerless|weak|useless +(adj)|futile|otiose|unavailing|useless +(adj)|ineffective|unable|impotent +ineffectuality|1 +(noun)|ineffectiveness|ineffectualness|powerlessness|impotence|impotency +ineffectualness|1 +(noun)|ineffectiveness|ineffectuality|powerlessness|impotence|impotency +inefficacious|1 +(adj)|inefficacious |ineffective|uneffective|ineffectual +inefficaciously|1 +(adv)|ineffectively +inefficaciousness|1 +(noun)|inefficacy|ineffectiveness|ineffectualness|ineffectuality +inefficacy|1 +(noun)|inefficaciousness|ineffectiveness|ineffectualness|ineffectuality +inefficiency|1 +(noun)|unskillfulness +inefficient|2 +(adj)|inefficient |uneconomical|wasteful|incompetent|ineffective|uneffective|ineffectual +(adj)|ineffective|incompetent +inelaborate|1 +(adj)|unelaborate|plain +inelastic|1 +(adj)|inelastic |dead|springless|nonresilient|inflexible +inelasticity|1 +(noun)|physical property +inelegance|1 +(noun)|quality +inelegant|1 +(adj)|inelegant |gauche|graceless|unpolished|homely|tactless|untactful|tasteless|in poor taste|undignified|unrefined +ineligibility|1 +(noun)|qualification|makings +ineligible|2 +(adj)|ineligible |disqualified|disqualified|undesirable|unsuitable|unentitled|unqualified|unqualified +(adj)|illegal |legal +ineloquently|1 +(adv)|inarticulately +ineluctability|1 +(noun)|unavoidability|certainty|sure thing|foregone conclusion +ineluctable|1 +(adj)|inescapable|unavoidable|inevitable +ineluctably|1 +(adv)|inescapably|inevitably|unavoidably +inept|3 +(adj)|awkward|clumsy|cumbersome|inapt|ill-chosen|infelicitous +(adj)|feckless|incompetent +(adj)|tactless|maladroit +ineptitude|1 +(noun)|awkwardness|clumsiness|ineptness|maladroitness|slowness|unskillfulness +ineptly|1 +(adv)|fecklessly +ineptness|2 +(noun)|awkwardness|clumsiness|ineptitude|maladroitness|slowness|unskillfulness +(noun)|unsuitability|unsuitableness|quality +inequality|1 +(noun)|difference +inequitable|1 +(adj)|inequitable |unjust +inequity|2 +(noun)|unfairness|partiality|partisanship +(noun)|unfairness|injustice|unjustness +ineradicable|1 +(adj)|ineradicable |indelible|unerasable|inexterminable|inextirpable|inexpungible|inexpungeable|permanent|lasting +inerrable|1 +(adj)|inerrant|unerring|infallible +inerrancy|1 +(noun)|infallibility +inerrant|1 +(adj)|inerrable|unerring|infallible +inert|3 +(adj)|nonmoving |unmoving +(adj)|indifferent|neutral|unreactive +(adj)|sluggish|torpid|inactive +inert gas|1 +(noun)|noble gas|argonon|chemical element|element|gas +inertia|2 +(noun)|inactiveness|inactivity|trait +(noun)|mechanical phenomenon +inertial|1 +(adj)|mechanical phenomenon +inertial frame|1 +(noun)|inertial reference frame|coordinate system|frame of reference|reference system|reference frame +inertial guidance|1 +(noun)|inertial navigation|steering|guidance|direction +inertial guidance system|1 +(noun)|inertial navigation system|system +inertial mass|1 +(noun)|mass +inertial navigation|1 +(noun)|inertial guidance|steering|guidance|direction +inertial navigation system|1 +(noun)|inertial guidance system|system +inertial reference frame|1 +(noun)|inertial frame|coordinate system|frame of reference|reference system|reference frame +inertness|1 +(noun)|immobility +inescapable|1 +(adj)|ineluctable|unavoidable|inevitable +inescapably|1 +(adv)|ineluctably|inevitably|unavoidably +inessential|3 +(adj)|inessential |unessential|complemental|complementary|completing|incidental|nonessential|dispensable|expendable|extrinsic|secondary|unimportant|unnecessary|unneeded +(adj)|unnecessary |unneeded +(noun)|nonessential|thing +inessentiality|1 +(noun)|unimportance +inestimable|1 +(adj)|incomputable|immeasurable|incalculable +inevitability|1 +(noun)|inevitableness|certainty|sure thing|foregone conclusion +inevitable|3 +(adj)|inevitable |fatal|fateful|ineluctable|inescapable|unavoidable|necessary +(adj)|predictable +(noun)|destiny|fate +inevitable accident|1 +(noun)|act of God|force majeure|vis major|unavoidable casualty|calamity|catastrophe|disaster|tragedy|cataclysm +inevitableness|1 +(noun)|inevitability|certainty|sure thing|foregone conclusion +inevitably|2 +(adv)|necessarily|of necessity|needs +(adv)|inescapably|ineluctably|unavoidably +inexact|2 +(adj)|inexact |approximate|approximative|rough|free|loose|liberal|odd|round|imprecise|inaccurate +(adj)|inaccurate|imprecise +inexactitude|1 +(noun)|inexactness|inaccuracy +inexactly|1 +(adv)|imprecisely +inexactness|1 +(noun)|inexactitude|inaccuracy +inexcusable|2 +(adj)|inexcusable |indefensible|insupportable|unjustifiable|unwarrantable|unwarranted +(adj)|unforgivable|unpardonable +inexcusably|2 +(adv)|unpardonably|unforgivably +(adv)|unjustifiably +inexhaustible|2 +(adj)|unlimited|infinite +(adj)|inexhaustible |renewable|unfailing +inexhaustibly|1 +(adv)|indefatigably|tirelessly +inexorability|1 +(noun)|relentlessness|inexorableness|mercilessness|unmercifulness +inexorable|2 +(adj)|grim|relentless|stern|unappeasable|unforgiving|unrelenting|implacable +(adj)|adamant|adamantine|intransigent|inflexible +inexorableness|1 +(noun)|relentlessness|inexorability|mercilessness|unmercifulness +inexpedience|1 +(noun)|inexpediency|disadvantage +inexpediency|1 +(noun)|inexpedience|disadvantage +inexpedient|2 +(adj)|inexpedient |inadvisable|disadvantageous|harmful|impolitic +(adj)|unwise|impolitic +inexpensive|1 +(adj)|cheap |bargain-priced|cut-rate|cut-price|catchpenny|dirt cheap|low-budget|low-cost|low-priced|affordable|nickel-and-dime|sixpenny|threepenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny +inexpensively|2 +(adv)|cheaply|tattily +(adv)|cheaply +inexpensiveness|1 +(noun)|monetary value|price|cost +inexperience|1 +(noun)|ignorance +inexperienced|3 +(adj)|inexperienced |apprentice|fledgling|unfledged|raw|new|wet behind the ears|uninitiate|uninitiated|unpracticed|unpractised|unseasoned|untested|untried|unskilled +(adj)|ignorant|naive |naif +(adj)|callow|naive|unsophisticated|immature +inexperienced person|1 +(noun)|innocent|person|individual|someone|somebody|mortal|human|soul +inexpert|1 +(adj)|amateurish|amateur|unskilled|unprofessional +inexpertly|1 +(adv)|artlessly|crudely +inexpiable|1 +(adj)|unpardonable +inexplicable|1 +(adj)|inexplicable |incomprehensible|cryptic|cryptical|deep|inscrutable|mysterious|mystifying|paradoxical|self-contradictory|unaccountable|unexplainable|unexplained|incomprehensible|uncomprehensible|insoluble +inexplicit|1 +(adj)|implicit |implicit in|inherent|underlying|implied|silent|tacit|understood|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|connotative|covert +inexplicitness|1 +(noun)|unclearness +inexpressible|1 +(adj)|inexpressible |unexpressible|indefinable|indescribable|ineffable|unspeakable|untellable|unutterable +inexpressive|1 +(adj)|uncommunicative |incommunicative +inexpugnable|1 +(adj)|impregnable|unconquerable +inexpungeable|1 +(adj)|inexpungible|ineradicable +inexpungible|1 +(adj)|inexpungeable|ineradicable +inextensible|1 +(adj)|nonextensile |nonprotractile +inexterminable|1 +(adj)|inextirpable|ineradicable +inextinguishable|1 +(adj)|inextinguishable +inextirpable|1 +(adj)|inexterminable|ineradicable +inextricable|1 +(adj)|inextricable |unresolvable +infallibility|1 +(noun)|dependability|dependableness|reliability|reliableness +infallible|1 +(adj)|infallible |foolproof|unfailing|inerrable|inerrant|unerring +infamous|1 +(adj)|ill-famed|notorious|disreputable +infamy|2 +(noun)|opprobrium|dishonor|dishonour +(noun)|disrepute|discredit +infancy|2 +(noun)|babyhood|early childhood|time of life +(noun)|babyhood|immaturity|immatureness +infant|1 +(noun)|baby|babe|child|kid +infant's-breath|1 +(noun)|wild madder|white madder|white bedstraw|false baby's breath|Galium mollugo|bedstraw +infant death|1 +(noun)|sudden infant death syndrome|SIDS|crib death|cot death|death|sleep apnea +infant deathrate|1 +(noun)|infant mortality|infant mortality rate|deathrate|death rate|morbidity|mortality|mortality rate|fatality rate +infant feeding|1 +(noun)|feeding|alimentation +infant mortality|1 +(noun)|infant deathrate|infant mortality rate|deathrate|death rate|morbidity|mortality|mortality rate|fatality rate +infant mortality rate|1 +(noun)|infant deathrate|infant mortality|deathrate|death rate|morbidity|mortality|mortality rate|fatality rate +infant prodigy|1 +(noun)|child prodigy|wonder child|prodigy|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +infant school|1 +(noun)|grade school|grammar school|elementary school|primary school +infanticide|2 +(noun)|murderer|liquidator|manslayer +(noun)|murder|slaying|execution +infantile|3 +(adj)|childish|immature +(adj)|time of life +(adj)|young |immature +infantile amaurotic idiocy|1 +(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|lipidosis|autosomal recessive disease|autosomal recessive defect|monogenic disorder|monogenic disease +infantile autism|1 +(noun)|autism +infantile fixation|1 +(noun)|arrested development|fixation|regression|abnormality|abnormalcy|abnormal condition +infantile paralysis|1 +(noun)|poliomyelitis|polio|acute anterior poliomyelitis|infectious disease +infantilism|2 +(noun)|abnormality|abnormalcy|abnormal condition +(noun)|misbehavior|misbehaviour|misdeed +infantry|1 +(noun)|foot|army unit +infantryman|1 +(noun)|marcher|foot soldier|footslogger|soldier +infarct|1 +(noun)|infarction|pathology +infarction|1 +(noun)|infarct|pathology +infatuate|1 +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +infatuated|1 +(adj)|crazy|dotty|gaga|enamored|in love|smitten|soft on|taken with|loving +infatuation|3 +(noun)|passion|passionateness +(noun)|puppy love|calf love|crush|love +(noun)|object +infeasibility|1 +(noun)|unfeasibility|impracticability|impracticableness +infeasible|1 +(adj)|impracticable|unfeasible|unworkable|impossible +infect|4 +(verb)|give +(verb)|taint|pollute|foul|contaminate +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|affect|impress|move|strike +infected|2 +(adj)|contaminated|dirty|pestiferous|septic +(adj)|purulent|pussy|putrid|septic +infection|7 +(noun)|ill health|unhealthiness|health problem +(noun)|linguistic process +(noun)|pathologic process|pathological process +(noun)|contagion|transmission|incident +(noun)|contagion|communication +(noun)|corruptness|corruption +(noun)|illegality +infectious|3 +(adj)|infective|septic +(adj)|infectious |catching|communicable|contagious|contractable|transmissible|transmittable|contagious|corrupting|contaminating +(adj)|ill health|unhealthiness|health problem +infectious agent|1 +(noun)|infective agent|agent +infectious disease|1 +(noun)|communicable disease +infectious hepatitis|1 +(noun)|hepatitis A|viral hepatitis +infectious mononucleosis|1 +(noun)|mononucleosis|mono|glandular fever|kissing disease|infectious disease +infectious polyneuritis|1 +(noun)|Guillain-Barre syndrome|Landry's paralysis|polyneuritis|multiple neuritis +infectiously|1 +(adv)|contagiously +infective|2 +(adj)|morbific|pathogenic|unhealthful +(adj)|infectious|septic +infective agent|1 +(noun)|infectious agent|agent +infelicitous|2 +(adj)|infelicitous |awkward|clumsy|cumbersome|inapt|inept|ill-chosen|unfortunate|unhappy +(adj)|unhappy|unfortunate +infelicity|1 +(noun)|inappropriateness +infer|5 +(verb)|deduce|deduct|derive|reason|reason out|conclude +(verb)|generalize|generalise|extrapolate|reason|reason out|conclude +(verb)|deduce|reason|reason out|conclude +(verb)|guess|solve|work out|figure out|puzzle out|lick|work +(verb)|understand|believe +inference|1 +(noun)|illation|reasoning|logical thinking|abstract thought +inferential|5 +(adj)|illative|reasoning|logical thinking|abstract thought +(adj)|deductive +(adj)|illative|deductive +(adj)|connotative +(adj)|constructive +inferior|9 +(adj)|inferior |humble|low|lowly|modest|small|indifferent|less|lower|low-level|middle-level|outclassed|low|low|subordinate|low-level +(adj)|inferior |bad|base|bum|cheap|cheesy|chintzy|crummy|punk|sleazy|tinny|bush-league|bush|cardboard|flimsy|cheapjack|shoddy|tawdry|coarse|common|coarsened|commercial|deplorable|execrable|miserable|woeful|wretched|less|low-grade|mediocre|poor|second-rate|ropey|ropy|scrawny|scrubby|stunted|second-class|utility|utility-grade|third-rate|worst +(adj)|junior-grade|lower|lower-ranking|lowly|petty|secondary|subaltern|subordinate|junior +(adj)|subscript +(adj)|inferior +(adj)|bottom +(adj)|deficient|substandard|nonstandard +(noun)|follower +(noun)|subscript|character|grapheme|graphic symbol +inferior alveolar artery|1 +(noun)|arteria alveolaris inferior|alveolar artery|arteria alveolaris +inferior cerebellar artery|1 +(noun)|cerebellar artery|arteria cerebelli +inferior cerebral vein|1 +(noun)|venae cerebrum inferior|cerebral vein|vena cerebri +inferior colliculus|1 +(noun)|center|centre|nerve center|nerve centre +inferior conjunction|1 +(noun)|conjunction|alignment +inferior court|1 +(noun)|lower court|court|tribunal|judicature +inferior epigastric vein|1 +(noun)|vena epigastrica inferior|epigastric vein +inferior labial artery|1 +(noun)|arteria labialis inferior|labial artery|arteria labialis +inferior labial vein|1 +(noun)|vena labialis inferior|labial vein|vena labialis +inferior mesenteric artery|1 +(noun)|mesenteric artery|arteria mesenterica +inferior ophthalmic vein|1 +(noun)|ophthalmic vein|vena ophthalmica +inferior planet|1 +(noun)|terrestrial planet +inferior pulmonary vein|1 +(noun)|vena pulmanalis inferior|pulmonary vein|vena pulmonalis +inferior rectus|1 +(noun)|inferior rectus muscle|rectus inferior|ocular muscle|eye muscle +inferior rectus muscle|1 +(noun)|inferior rectus|rectus inferior|ocular muscle|eye muscle +inferior thalamostriate vein|1 +(noun)|striate vein|thalamostriate vein +inferior thyroid vein|1 +(noun)|thyroid vein|vena thyroidea +inferior vena cava|1 +(noun)|postcava|vena cava +inferior vocal cord|1 +(noun)|true vocal cord|true vocal fold|inferior vocal fold|vocal cord|vocal fold|vocal band|plica vocalis +inferior vocal fold|1 +(noun)|true vocal cord|true vocal fold|inferior vocal cord|vocal cord|vocal fold|vocal band|plica vocalis +inferiority|3 +(noun)|lower status|lower rank|low status +(noun)|low quality|quality|caliber|calibre +(noun)|unfavorable position|disadvantage +inferiority complex|1 +(noun)|complex +infernal|6 +(adj)|region|part +(adj)|demonic|diabolic|diabolical|fiendish|hellish|satanic|unholy|evil |wicked +(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|everlasting|goddam|goddamn|goddamned|cursed |curst +(adj)|imaginary place|mythical place +(adj)|infernal |chthonian|chthonic|lower|nether|Hadean|Plutonian|Tartarean|Stygian|evil|wicked +(noun)|dead person|dead soul|deceased person|deceased|decedent|departed +infernal machine|1 +(noun)|time bomb|bomb +infernal region|2 +(noun)|Hell|perdition|Inferno|nether region|the pit|imaginary place|mythical place +(noun)|Hel|Hell|Hades|netherworld|Scheol|underworld|imaginary place|mythical place +infernally|1 +(adv)|hellishly +inferno|3 +(noun)|hell|hell on earth|hellhole|snake pit|the pits|region|part +(noun)|conflagration|fire +(noun)|Hell|perdition|Inferno|infernal region|nether region|the pit|imaginary place|mythical place +infertile|1 +(adj)|sterile |unfertile|sterilized|sterilised|unfertilized|unfertilised|unimpregnated|barren|unfruitful|impotent|unproductive +infertility|1 +(noun)|sterility|physiological state|physiological condition +infest|3 +(verb)|overrun|invade|occupy +(verb)|invade|overrun|inhabit|occupy +(verb)|inhabit|occupy +infestation|2 +(noun)|fullness +(noun)|plague|swarm|cloud +infested|1 +(adj)|overrun|plagued|troubled +infidel|1 +(noun)|heathen|pagan|gentile|nonreligious person +infidelity|1 +(noun)|unfaithfulness|quality +infield|1 +(noun)|baseball diamond|diamond|tract|piece of land|piece of ground|parcel of land|parcel +infielder|1 +(noun)|fielder +infiltrate|4 +(verb)|percolate|sink in|permeate|filter +(verb)|penetrate|join|fall in|get together +(verb)|percolate|sink in|permeate|filter +(verb)|pass through|pass|go through|go across +infiltration|2 +(noun)|penetration|incursion +(noun)|percolation|filtration +infiltrator|2 +(noun)|spy|undercover agent +(noun)|intruder|interloper|trespasser +infinite|4 +(adj)|infinite |boundless|unbounded|limitless|dateless|endless|sempiternal|endless|inexhaustible|unlimited|immortal +(adj)|infinite |non-finite|infinitive +(adj)|countless|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +(adj)|absolute +infinitely|2 +(adv)|boundlessly|immeasurably +(adv)|endlessly +infiniteness|1 +(noun)|infinitude|unboundedness|boundlessness|limitlessness|quality +infinitesimal|1 +(adj)|minute|microscopic|small +infinitesimal calculus|1 +(noun)|calculus|the calculus|pure mathematics +infinitival|1 +(adj)|verb +infinitive|3 +(adj)|verb +(adj)|infinite |non-finite +(noun)|verb +infinitude|2 +(noun)|large indefinite quantity|large indefinite amount +(noun)|infiniteness|unboundedness|boundlessness|limitlessness|quality +infinity|1 +(noun)|eternity|time +infirm|4 +(adj)|bedfast|bedridden|bedrid|sick-abed|ill |sick +(adj)|decrepit|debile|feeble|sapless|weak|weakly|frail +(adj)|irresolute +(adj)|debilitated|enfeebled|seedy|unhealthy +infirmary|1 +(noun)|hospital|medical building|health facility|healthcare facility +infirmity|1 +(noun)|frailty|debility|feebleness|frailness|unfitness|poor shape|bad condition +infix|3 +(noun)|affix +(verb)|insert|enter|introduce|attach +(verb)|affix +infix notation|1 +(noun)|mathematical notation +inflame|5 +(verb)|worsen|aggravate|exacerbate|exasperate +(verb)|kindle|flare up +(verb)|kindle|enkindle|conflagrate|ignite|light +(verb)|stir up|wake|ignite|heat|fire up|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|worsen|decline +inflamed|3 +(adj)|unhealthy +(adj)|ablaze|reddened|light +(adj)|adorned |decorated +inflaming|1 +(noun)|inflammation|arousal|rousing +inflammable|1 +(adj)|burnable|flammable|ignitable|ignitible|combustible +inflammation|4 +(noun)|redness|rubor|symptom +(noun)|excitement|excitation|fervor|fervour|emotional arousal +(noun)|inflaming|arousal|rousing +(noun)|ignition|firing|lighting|kindling|burning|combustion +inflammatory|2 +(adj)|unhealthy +(adj)|incendiary|incitive|instigative|rabble-rousing|seditious|provocative +inflammatory bowel disease|1 +(noun)|colitis|inflammation|redness|rubor +inflammatory disease|1 +(noun)|disease +inflatable|1 +(adj)|expansive +inflatable cushion|1 +(noun)|air cushion|cushion +inflate|5 +(verb)|blow up|expand +(verb)|blow up|expand|amplify|increase +(verb)|change|alter|modify +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|balloon|billow|expand +inflated|4 +(adj)|exaggerated|hyperbolic|increased +(adj)|inflated |blown-up|blown up +(adj)|high-flown|high-sounding|pretentious +(adj)|raised|increased +inflater|1 +(noun)|inflator|air pump|vacuum pump +inflation|4 +(noun)|rising prices|economic process +(noun)|explosion|detonation|blowup +(noun)|ostentation|ostentatiousness|pomposity|pompousness|pretentiousness|splashiness|inelegance +(noun)|expansion|enlargement +inflation rate|1 +(noun)|rate of inflation|rate +inflation therapy|1 +(noun)|therapy +inflationary|1 +(adj)|inflationary +inflationary spiral|1 +(noun)|inflation|rising prices +inflator|1 +(noun)|inflater|air pump|vacuum pump +inflect|2 +(verb)|modify +(verb)|tone|modulate|talk|speak|utter|mouth|verbalize|verbalise +inflected|2 +(adj)|inflected |modulated +(adj)|inflected +inflection|4 +(noun)|inflexion|grammatical relation +(noun)|prosody|manner of speaking|speech|delivery +(noun)|flection|flexion|deviation|divergence|departure|difference +(noun)|modulation|manner of speaking|speech|delivery +inflectional|2 +(adj)|inflectional +(adj)|synthetic +inflectional ending|1 +(noun)|inflectional suffix|ending|termination +inflectional morphology|1 +(noun)|accidence|morphology +inflectional suffix|1 +(noun)|inflectional ending|ending|termination +inflexibility|2 +(noun)|inflexibleness|rigidity|rigidness +(noun)|rigidity|unadaptability +inflexible|4 +(adj)|inflexible |adamant|adamantine|inexorable|intransigent|die-hard|rock-ribbed|flinty|granitic|unyielding|fossilized|fossilised|ossified|hard-core|hardcore|ironclad|brassbound +(adj)|uncompromising |hard-line|hardline|unyielding +(adj)|inflexible |muscle-bound|rigid|stiff|semirigid|stand-up|stiff|stiff|stiffened|inelastic +(adj)|rigid|unbending|unadaptable +inflexibleness|1 +(noun)|inflexibility|rigidity|rigidness +inflexion|1 +(noun)|inflection|grammatical relation +inflict|1 +(verb)|bring down|visit|impose|communicate|intercommunicate +infliction|3 +(noun)|imposition|enforcement +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|annoyance|bother|botheration|pain|pain in the neck|pain in the ass|negative stimulus +infliximab|1 +(noun)|Remicade|anti-TNF compound +inflorescence|2 +(noun)|blossoming|flowering|florescence|anthesis|efflorescence|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|flower|bloom|blossom +inflow|1 +(noun)|influx|flow +inflowing|1 +(adj)|influent|incoming +influence|8 +(noun)|power|powerfulness +(noun)|causing|causation +(noun)|determinant|determiner|determinative|determining factor|causal factor +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|power|force +(verb)|act upon|work|affect|impact|bear upon|bear on|touch on|touch +(verb)|determine|shape|mold|regulate|cause|do|make +(verb)|charm|tempt|persuade +influence peddler|1 +(noun)|fixer|important person|influential person|personage +influent|1 +(adj)|inflowing|incoming +influential|1 +(adj)|influential |authoritative|important|cogent|potent|powerful|prestigious +influential person|1 +(noun)|important person|personage|adult|grownup +influenza|1 +(noun)|flu|grippe|contagious disease|contagion|respiratory disease|respiratory illness|respiratory disorder +influx|1 +(noun)|inflow|flow +info|1 +(noun)|information|message|content|subject matter|substance +infolding|1 +(noun)|invagination|introversion|intussusception|organic process|biological process +infomercial|1 +(noun)|informercial|commercial|commercial message +inform|2 +(verb)|communicate|intercommunicate +(verb)|change|alter|modify +informal|4 +(adj)|informal |casual|everyday|free-and-easy|casual|folksy|unceremonious|unceremonial +(adj)|loose|unofficial +(adj)|informal |colloquial|conversational|common|vernacular|vulgar|epistolary|epistolatory|slangy|subliterary|unliterary|nonliterary|unrhetorical +(adj)|cozy|intimate|friendly +informality|2 +(noun)|manner|personal manner +(noun)|ease|naturalness +informally|3 +(adv)|without formality +(adv)|colloquially|conversationally +(adv)|en famille +informant|2 +(noun)|source|communicator +(noun)|witness|witnesser|perceiver|observer|beholder|speaker|talker|utterer|verbalizer|verbaliser +informatics|1 +(noun)|information science|information processing|IP|science|scientific discipline +information|5 +(noun)|info|message|content|subject matter|substance +(noun)|data|collection|aggregation|accumulation|assemblage +(noun)|cognition|knowledge|noesis +(noun)|selective information|entropy|information measure +(noun)|accusation|accusal +information age|1 +(noun)|modern era +information bulletin|1 +(noun)|bulletin +information gathering|1 +(noun)|operation|military operation +information measure|1 +(noun)|system of measurement|metric +information processing|1 +(noun)|information science|informatics|IP|science|scientific discipline +information processing system|1 +(noun)|computer|computing machine|computing device|data processor|electronic computer|machine +information return|1 +(noun)|tax return|income tax return|return +information science|1 +(noun)|informatics|information processing|IP|science|scientific discipline +information superhighway|1 +(noun)|superhighway|network|electronic network +information system|1 +(noun)|data system|system +information theory|1 +(noun)|scientific theory +information warfare|1 +(noun)|IW|war|warfare +informational rna|1 +(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid|RNA +informative|3 +(adj)|enlightening |instructive +(adj)|instructive |clarifying|elucidative|demonstrative|illustrative|didactic|didactical|doctrinaire|educative|educational|explanatory|expository|expositive|interpretative|interpretive|preachy|ostensive|informatory +(adj)|informative |informatory|advisory|consultative|consultatory|consultive|exemplifying|illustrative|newsy|revealing|telling|telltale|instructive +informatively|1 +(adv)|instructively +informatory|1 +(adj)|informative |advisory|consultative|consultatory|consultive|exemplifying|illustrative|newsy|revealing|telling|telltale|instructive|informative +informed|1 +(adj)|informed |abreast of|au courant|au fait|up on|advised|conversant|familiar|educated|enlightened|hep|hip|hip to|knowing|wise|wise to|aware|knowing|knowledgeable|privy|well-read|educated|enlightened|sophisticated +informed consent|1 +(noun)|consent +informer|1 +(noun)|betrayer|rat|squealer|blabber|informant|source +informer's privilege|1 +(noun)|privilege +informercial|1 +(noun)|infomercial|commercial|commercial message +informing|2 +(noun)|ratting|disclosure|revelation|revealing +(noun)|making known|speech act +infotainment|1 +(noun)|documentary|docudrama|documentary film|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +infra|1 +(adv)|below +infra dig|1 +(adj)|undignified +infract|1 +(verb)|transgress|offend|violate|go against|breach|break|disrespect +infraction|1 +(noun)|misdemeanor|misdemeanour|offence|offense|violation|infringement|crime|law-breaking +infrahuman|1 +(adj)|subhuman +inframaxillary|1 +(adj)|mandibular|jaw|articulator +infrangible|2 +(adj)|unbreakable +(adj)|absolute|inviolable|inalienable |unalienable +infraorbital artery|1 +(noun)|arteria infraorbitalis|artery|arteria|arterial blood vessel +infrared|3 +(adj)|invisible |unseeable +(noun)|infrared frequency|frequency|frequence|oftenness +(noun)|infrared light|infrared radiation|infrared emission|actinic radiation|actinic ray +infrared emission|1 +(noun)|infrared|infrared light|infrared radiation|actinic radiation|actinic ray +infrared frequency|1 +(noun)|infrared|frequency|frequence|oftenness +infrared lamp|1 +(noun)|heat lamp|electric heater|electric fire +infrared light|1 +(noun)|infrared|infrared radiation|infrared emission|actinic radiation|actinic ray +infrared radiation|1 +(noun)|infrared|infrared light|infrared emission|actinic radiation|actinic ray +infrared ray|1 +(noun)|heat ray +infrared spectrum|1 +(noun)|spectrum +infrared therapy|1 +(noun)|therapy +infrasonic|1 +(adj)|inaudible |unhearable +infrastructure|2 +(noun)|substructure|structure +(noun)|base|store|stock|fund +infrequency|1 +(noun)|rarity|rareness|scarcity|scarceness +infrequent|1 +(adj)|infrequent |rare|occasional|sporadic +infrigidation|1 +(noun)|refrigeration|cooling|chilling|temperature reduction|preservation +infringe|2 +(verb)|conflict|run afoul|contravene|transgress|offend|infract|violate|go against|breach|break +(verb)|encroach|impinge|advance|progress|pass on|move on|march on|go on +infringement|2 +(noun)|violation|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|misdemeanor|misdemeanour|infraction|offence|offense|violation|crime|law-breaking +infringement of copyright|1 +(noun)|copyright infringement|violation|infringement +infructescence|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +infundibulum|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +infuriate|1 +(verb)|exasperate|incense|anger +infuriated|1 +(adj)|angered|enraged|furious|maddened|angry +infuriating|1 +(adj)|exasperating|maddening|vexing|displeasing +infuriation|1 +(noun)|enragement|anger|choler|ire +infuscate|1 +(verb)|discolor +infuse|5 +(verb)|inculcate|instill|drill +(verb)|impregnate|instill|tincture|fill|fill up|make full +(verb)|steep +(verb)|steep|soak|imbue +(verb)|inject|shoot +infusion|4 +(noun)|extract|solution +(noun)|extraction +(noun)|instillation|instillment|instilment +(noun)|change of state +infusoria|1 +(noun)|Infusoria|subclass Infusoria|class +infusorian|1 +(noun)|ciliate|ciliated protozoan|ciliophoran +inga|1 +(noun)|tree +inga edulis|1 +(noun)|ice-cream bean|Inga edulis|tree +inga laurina|1 +(noun)|guama|Inga laurina|tree +ingathering|1 +(noun)|solicitation|appeal|collection|request|petition|postulation +inge|2 +(noun)|Inge|William Ralph Inge|the Gloomy Dean|archpriest|hierarch|high priest|prelate|primate +(noun)|Inge|William Inge|dramatist|playwright +ingeminate|1 +(verb)|repeat|reiterate|iterate|restate|retell|tell +ingenious|3 +(adj)|imaginative|inventive|creative |originative +(adj)|adroit|clever|artful +(adj)|clever|cunning|adroit +ingeniousness|2 +(noun)|inventiveness|ingenuity|cleverness|creativity|creativeness|creative thinking +(noun)|ingenuity|cleverness|superiority|high quality +ingenue|3 +(noun)|actor|histrion|player|thespian|role player +(noun)|juvenile|juvenile person +(noun)|character|role|theatrical role|part|persona +ingenuity|2 +(noun)|inventiveness|ingeniousness|cleverness|creativity|creativeness|creative thinking +(noun)|ingeniousness|cleverness|superiority|high quality +ingenuous|2 +(adj)|ingenuous |artless|candid|open|heart-to-heart|undistorted|naive|naif|sincere +(adj)|innocent|naive |naif +ingenuously|1 +(adv)|artlessly +ingenuousness|2 +(noun)|artlessness|innocence|naturalness|naivete|naivety|naiveness +(noun)|candor|candour|candidness|frankness|forthrightness +inger|1 +(noun)|Ingrian|Inger|Ingerman|Russian +ingerman|1 +(noun)|Ingrian|Inger|Ingerman|Russian +ingest|2 +(verb)|consume|take in|take|have +(verb)|absorb|assimilate|take in|learn|larn|acquire +ingesta|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +ingested|1 +(adj)|eaten +ingestion|1 +(noun)|consumption|intake|uptake|bodily process|body process|bodily function|activity +inglenook|1 +(noun)|chimney corner|corner|nook +inglorious|2 +(adj)|black|disgraceful|ignominious|opprobrious|shameful|dishonorable |dishonourable +(adj)|inglorious |dishonorable|obscure|unknown|unsung|dishonorable|dishonourable|unknown +ingloriously|1 +(adv)|disgracefully|ignominiously|discreditably|shamefully|dishonorably|dishonourably +ingmar bergman|1 +(noun)|Bergman|Ingmar Bergman|film director +ingoing|1 +(adj)|entering|incoming +ingot|1 +(noun)|metal bar|block of metal|block +ingot iron|1 +(noun)|iron|Fe|atomic number 26 +ingraft|1 +(verb)|graft|engraft|join|conjoin +ingrain|2 +(verb)|grain|penetrate|perforate +(verb)|impress|instill|affect|impress|move|strike +ingrained|1 +(adj)|deep-rooted|deep-seated|implanted|planted|established |constituted +ingraining|1 +(noun)|inculcation|instilling|indoctrination +ingrate|1 +(noun)|thankless wretch|ungrateful person|unwelcome person|persona non grata +ingratiate|1 +(verb)|manipulate|keep in line|control +ingratiating|2 +(adj)|pleasing +(adj)|ingratiatory|flattering +ingratiation|1 +(noun)|insinuation|blandishment|wheedling +ingratiatory|2 +(adj)|coaxing|persuasive +(adj)|ingratiating|flattering +ingratitude|1 +(noun)|ungratefulness|feeling +ingredient|3 +(noun)|component|constituent|element +(noun)|component|constituent|element|factor|part|section|division +(noun)|fixings|foodstuff|food product +ingres|1 +(noun)|Ingres|Jean Auguste Dominique Ingres|painter +ingress|2 +(noun)|immersion|disappearance +(noun)|entrance|entering|entry|incoming|arrival +ingrian|2 +(noun)|Ingrian|Inger|Ingerman|Russian +(noun)|Ingrian|Baltic-Finnic +ingrid bergman|1 +(noun)|Bergman|Ingrid Bergman|actress +ingroup|1 +(noun)|clique|coterie|inner circle|pack|camp|set|circle|band|lot +ingrowing|1 +(adj)|ingrown|unhealthy +ingrown|1 +(adj)|ingrowing|unhealthy +ingrown hair|1 +(noun)|hair|pilus +ingrown toenail|1 +(noun)|onyxis|toenail +ingrowth|1 +(noun)|growth +inguen|1 +(noun)|groin|area|region +inguinal|1 +(adj)|area|region +inguinal canal|1 +(noun)|canalis inguinalis|duct|epithelial duct|canal|channel +inguinal hernia|1 +(noun)|hernia|herniation +ingurgitate|1 +(verb)|gorge|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +inh|1 +(noun)|isoniazid|INH|Nydrazid|antibacterial|antibacterial drug|bactericide +inhabit|2 +(verb)|dwell|shack|reside|live|people|populate|domicile|domiciliate|be +(verb)|occupy|be +inhabitable|1 +(adj)|habitable|livable |liveable +inhabitancy|1 +(noun)|inhabitation|habitation|occupancy|tenancy +inhabitant|1 +(noun)|dweller|denizen|indweller|person|individual|someone|somebody|mortal|human|soul +inhabitation|1 +(noun)|inhabitancy|habitation|occupancy|tenancy +inhabited|1 +(adj)|inhabited |colonized|colonised|settled|haunted|occupied|tenanted|owner-occupied|peopled|populated|populous|thickly settled|underpopulated +inhalant|3 +(adj)|breath +(noun)|gas +(noun)|inhalation|medicine|medication|medicament|medicinal drug +inhalation|2 +(noun)|inspiration|aspiration|breathing in|breath +(noun)|inhalant|medicine|medication|medicament|medicinal drug +inhalation anaesthetic|1 +(noun)|inhalation anesthetic|inhalation general anesthetic|inhalation general anaesthetic|general anesthetic|general anaesthetic +inhalation anesthesia|1 +(noun)|general anesthesia|general anaesthesia +inhalation anesthetic|1 +(noun)|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic|general anesthetic|general anaesthetic +inhalation anthrax|1 +(noun)|pulmonary anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax +inhalation general anaesthetic|1 +(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|general anesthetic|general anaesthetic +inhalation general anesthetic|1 +(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anaesthetic|general anesthetic|general anaesthetic +inhalator|2 +(noun)|respirator|breathing device|breathing apparatus|breathing machine|ventilator +(noun)|inhaler|dispenser +inhale|2 +(verb)|smoke +(verb)|inspire|breathe in|breathe|take a breath|respire|suspire +inhaled|1 +(adj)|inhaled |indrawn +inhaler|1 +(noun)|inhalator|dispenser +inhaling|1 +(adj)|breathing |eupneic|eupnoeic +inharmonic|1 +(adj)|discordant|disharmonious|dissonant|inharmonious |unharmonious +inharmonious|2 +(adj)|inharmonious |unharmonious|discordant|disharmonious|dissonant|inharmonic|false|off-key|sour|unresolved|dissonant|incompatible +(adj)|incongruous +inharmoniousness|1 +(noun)|disharmony|dissonance +inhere|1 +(verb)|dwell|consist|lie|belong|lie in +inhere in|1 +(verb)|attach to|include +inherence|1 +(noun)|immanence|immanency|presence +inherent|3 +(adj)|built-in|constitutional|inbuilt|integral|intrinsic |intrinsical +(adj)|congenital|inborn|innate|noninheritable |nonheritable +(adj)|implicit in|underlying|implicit |inexplicit +inherent aptitude|1 +(noun)|instinct|aptitude +inherit|2 +(verb)|come into|get|acquire +(verb)|receive|have +inheritable|1 +(adj)|inheritable |heritable|ancestral|hereditary|patrimonial|transmissible|familial|genetic|hereditary|inherited|transmitted|transmissible|monogenic|polygenic|inheriting|nee +inheritance|4 +(noun)|heritage|acquisition +(noun)|heritage|transferred property|transferred possession +(noun)|hereditary pattern|heredity|genetic endowment +(noun)|heritage|attribute +inheritance tax|1 +(noun)|estate tax|death tax|death duty|transfer tax +inherited|1 +(adj)|familial|genetic|hereditary|transmitted|transmissible|inheritable |heritable +inherited disease|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disorder|hereditary disease|hereditary condition|disease +inherited disorder|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|hereditary disease|hereditary condition|disease +inherited wealth|1 +(noun)|wealth|wealthiness +inheriting|1 +(adj)|inheritable |heritable +inheritor|1 +(noun)|heir|heritor|recipient|receiver +inheritress|1 +(noun)|heiress|inheritrix|heir|inheritor|heritor +inheritrix|1 +(noun)|heiress|inheritress|heir|inheritor|heritor +inhibit|2 +(verb)|suppress|stamp down|subdue|conquer|curb|control|hold in|hold|contain|check|curb|moderate +(verb)|restrict|restrain|trammel|limit|bound|confine|throttle +inhibited|1 +(adj)|inhibited |pent-up|repressed|smothered|stifled|strangled|suppressed|reserved|restrained +inhibition|4 +(noun)|suppression|abstinence +(noun)|restraint|control +(noun)|organic process|biological process +(noun)|prohibition|forbiddance|action +inhibitor|1 +(noun)|substance|matter +inhibitory|1 +(adj)|repressive|repressing|restrictive +inhomogeneity|1 +(noun)|irregularity|unregularity +inhomogeneous|1 +(adj)|nonuniform|heterogeneous |heterogenous +inhospitable|2 +(adj)|inhospitable |bare|barren|bleak|desolate|stark|desert|godforsaken|waste|wild|hostile|uncongenial|unfriendly|water-washed|windswept +(adj)|inhospitable |unfriendly +inhospitableness|1 +(noun)|unfriendliness +inhospitality|1 +(noun)|welcome +inhuman|2 +(adj)|cold|cold-blooded|insensate|inhumane +(adj)|nonhuman +inhuman treatment|1 +(noun)|cruelty|maltreatment|ill-treatment|ill-usage|abuse +inhumane|1 +(adj)|inhumane |barbarous|brutal|cruel|fell|roughshod|savage|vicious|beastly|bestial|brute|brutish|brutal|cruel|cannibalic|cold|cold-blooded|inhuman|insensate|pitiless|unkind|painful +inhumaneness|1 +(noun)|inhumanity|quality +inhumanity|2 +(noun)|inhumaneness|quality +(noun)|atrocity|cruelty|inhuman treatment +inhumation|1 +(noun)|burial|entombment|interment|sepulture|funeral +inhume|1 +(verb)|bury|entomb|inter|lay to rest|lay|put down|repose +inhumed|1 +(adj)|buried |interred|belowground +inigo jones|1 +(noun)|Jones|Inigo Jones|architect|designer +inimical|1 +(adj)|unfriendly|hostile +inimitable|1 +(adj)|unreproducible |irreproducible +inimitably|1 +(adv)|unreproducibly +inion|1 +(noun)|craniometric point +iniquitous|1 +(adj)|sinful|ungodly|wicked +iniquity|3 +(noun)|wickedness|darkness|dark|condition|status +(noun)|evil|immorality|wickedness|transgression|evildoing +(noun)|injustice|unfairness|wrongdoing|wrongful conduct|misconduct|actus reus +initial|3 +(adj)|first +(noun)|letter|letter of the alphabet|alphabetic character +(verb)|sign +initial offering|1 +(noun)|initial public offering|IPO|commerce|commercialism|mercantilism +initial public offering|1 +(noun)|IPO|initial offering|commerce|commercialism|mercantilism +initial rhyme|1 +(noun)|alliteration|beginning rhyme|head rhyme|rhyme|rime +initialisation|1 +(noun)|low-level formatting|initialization|format|formatting|data format|data formatting +initialise|2 +(verb)|initialize|determine|set +(verb)|format|initialize|divide|split|split up|separate|dissever|carve up +initialization|1 +(noun)|low-level formatting|initialisation|format|formatting|data format|data formatting +initialize|2 +(verb)|initialise|determine|set +(verb)|format|initialise|divide|split|split up|separate|dissever|carve up +initially|1 +(adv)|ab initio|at first|at the start +initiate|8 +(noun)|novice|beginner|tyro|tiro|unskilled person +(noun)|learned person|pundit|savant|scholar|scholarly person|student +(noun)|enlightened|people +(verb)|originate|start|make|create +(verb)|pioneer|cause|do|make +(verb)|induct|admit|let in|include +(verb)|broach|hash out|discuss|talk over +(verb)|lead up|originate|start +initiation|4 +(noun)|induction|installation|ceremony|ceremonial|ceremonial occasion|observance +(noun)|founding|foundation|institution|origination|creation|innovation|introduction|instauration|beginning|start|commencement +(noun)|knowledgeability|knowledgeableness|wisdom|wiseness +(noun)|trigger|induction|causing|causation +initiative|3 +(adj)|inaugural|initiatory|first|maiden|opening +(noun)|enterprise|enterprisingness|go-ahead|drive +(noun)|first step|opening move|opening|beginning|start|commencement +initiator|1 +(noun)|instigator|leader +initiatory|1 +(adj)|inaugural|initiative|first|maiden|opening +inject|6 +(verb)|shoot|administer|dispense +(verb)|add +(verb)|shoot|insert|enclose|inclose|stick in|put in|introduce +(verb)|drug|do drugs +(verb)|feed|give +(verb)|interject|come in|interpose|put in|throw in|interrupt|disrupt|break up|cut off +injectable|1 +(adj)|injectable +injectant|1 +(noun)|injection|solution +injection|3 +(noun)|insertion|introduction|intromission +(noun)|injectant|solution +(noun)|shot|medical care|medical aid +injector|1 +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|widget +injudicious|1 +(adj)|imprudent +injudiciousness|2 +(noun)|indiscreetness|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|indiscretion|folly|foolishness|unwiseness +injun|1 +(noun)|Redskin|Injun|red man|Indian|North American Indian|American Indian|Red Indian +injunction|2 +(noun)|command|bid|bidding|dictation +(noun)|enjoining|enjoinment|cease and desist order|prohibition|ban|proscription +injure|3 +(verb)|wound|hurt +(verb)|hurt|wound|bruise|offend|spite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|hurt|damage +injured|1 +(adj)|injured |abraded|scraped|skinned|battle-scarred|black-and-blue|livid|blistered|bruised|contused|contusioned|burned|cut|gashed|slashed|disabled|hors de combat|out of action|disjointed|dislocated|separated|eviscerate|harmed|hurt|wounded|lacerate|lacerated|mangled|torn|maimed|mutilated|raw|stabbed|stung|swelling|cut|split|broken|damaged|impaired|unsound +injured party|1 +(noun)|casualty|victim +injurious|2 +(adj)|deleterious|hurtful|harmful +(adj)|evil|harmful|malign +injuriousness|1 +(noun)|harmfulness|destructiveness +injury|4 +(noun)|hurt|harm|trauma|ill health|unhealthiness|health problem +(noun)|accidental injury|accident +(noun)|wound|combat injury|personnel casualty|loss +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +injustice|2 +(noun)|unfairness|iniquity|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|unjustness|unrighteousness +ink|4 +(noun)|liquid +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +(verb)|sign +(verb)|fill|fill up|make full +ink-black|1 +(adj)|inky|inky-black|achromatic +ink-jet|1 +(adj)|dot matrix printer|matrix printer|dot printer +ink-jet printer|1 +(noun)|dot matrix printer|matrix printer|dot printer +ink bottle|1 +(noun)|inkpot|bottle +ink cartridge|1 +(noun)|cartridge +ink eraser|1 +(noun)|eraser +inka|1 +(noun)|Inca|Inka|Incan|Quechua|Kechua +inkberry|1 +(noun)|gallberry|gall-berry|evergreen winterberry|Ilex glabra|holly +inkblot|1 +(noun)|smudge|spot|blot|daub|smear|smirch|slur +inkblot test|1 +(noun)|Rorschach|Rorschach test|projective test|projective device|projective technique +inking pad|1 +(noun)|pad|inkpad|stamp pad|block +inkle|1 +(noun)|tape +inkling|1 +(noun)|intimation|glimmering|glimmer|suggestion +inkpad|1 +(noun)|pad|inking pad|stamp pad|block +inkpot|1 +(noun)|ink bottle|bottle +inkstand|2 +(noun)|inkwell|well +(noun)|tray +inkwell|1 +(noun)|inkstand|well +inky|1 +(adj)|ink-black|inky-black|achromatic +inky-black|1 +(adj)|ink-black|inky|achromatic +inky-cap mushroom|1 +(noun)|inky cap|Coprinus atramentarius|agaric +inky cap|1 +(noun)|inky-cap mushroom|Coprinus atramentarius|agaric +inla|1 +(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +inlaid|1 +(adj)|adorned |decorated +inland|1 +(adj)|inland |interior|midland|upcountry|landlocked +inland bill|1 +(noun)|draft|bill of exchange|order of payment +inland revenue|1 +(noun)|Inland Revenue|IR|administrative unit|administrative body +inland sea|1 +(noun)|Inland Sea|sea +inlay|3 +(noun)|filling +(noun)|decoration|ornament|ornamentation +(verb)|decorate|adorn|grace|ornament|embellish|beautify +inlet|1 +(noun)|recess|body of water|water +inlet manifold|1 +(noun)|manifold +inmarriage|1 +(noun)|endogamy|intermarriage|marriage|matrimony|union|spousal relationship|wedlock +inmarry|1 +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +inmate|3 +(noun)|resident|occupant|occupier +(noun)|inpatient|patient +(noun)|convict|con|jailbird|gaolbird|prisoner|captive +inmost|2 +(adj)|innermost|inward +(adj)|innermost|inner +inn|1 +(noun)|hostel|hostelry|lodge|hotel +innards|1 +(noun)|viscera|entrails|internal organ|viscus +innate|3 +(adj)|unconditioned |unlearned +(adj)|natural|born|intelligent +(adj)|congenital|inborn|inherent|noninheritable |nonheritable +innate immunity|1 +(noun)|natural immunity|immunity|resistance +innate reflex|1 +(noun)|reflex|instinctive reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction|response +inner|6 +(adj)|interior|internal|inward +(adj)|inner |central|inmost|innermost|inside +(adj)|internal|intimate|intrinsic |intrinsical +(adj)|inside|privileged|exclusive +(adj)|exclusive +(adj)|internal +inner circle|1 +(noun)|clique|coterie|ingroup|pack|camp|set|circle|band|lot +inner city|1 +(noun)|center|centre|middle|heart|eye +inner ear|1 +(noun)|internal ear|labyrinth|sense organ|sensory receptor|receptor +inner hebrides|1 +(noun)|Inner Hebrides|archipelago +inner light|1 +(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive|ethics|morals|morality +inner mongolia|1 +(noun)|Inner Mongolia|Nei Monggol|state|province +inner product|1 +(noun)|scalar product|dot product|real number|real +inner resources|1 +(noun)|resource +inner tube|1 +(noun)|tube|tubing +innermost|2 +(adj)|inmost|inward +(adj)|inmost|inner +innersole|1 +(noun)|insole|sole +innervate|2 +(verb)|supply|provide|render|furnish +(verb)|stimulate|excite +innervation|2 +(noun)|excitation|irritation|arousal +(noun)|distribution|dispersion +inning|1 +(noun)|frame|playing period|period of play|play +innings|2 +(noun)|turn|play +(noun)|inning|frame|playing period|period of play|play +innkeeper|1 +(noun)|host|boniface|patron +innocence|3 +(noun)|artlessness|ingenuousness|naturalness|naivete|naivety|naiveness +(noun)|purity|sinlessness|condition|status +(noun)|condition|status +innocense|1 +(noun)|purple chinese houses|Collinsia bicolor|Collinsia heterophylla|wildflower|wild flower +innocent|6 +(adj)|innocent |guiltless|clean-handed|absolved|clear|cleared|exculpated|exonerated|vindicated|acquitted|not guilty|blameless|inculpable|irreproachable|unimpeachable|exculpatory|righteous +(adj)|innocuous|harmless +(adj)|impeccant|sinless|virtuous +(adj)|ingenuous|naive |naif +(adj)|ignorant|unconscious +(noun)|inexperienced person|person|individual|someone|somebody|mortal|human|soul +innocent iii|1 +(noun)|Innocent III|Lotario di Segni|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +innocent of|2 +(adj)|unacquainted with|uninformed +(adj)|barren of|destitute of|devoid of|empty of|void of|empty +innocents' day|1 +(noun)|Holy Innocents' Day|Innocents' Day|Christian holy day +innocuous|4 +(adj)|innocuous |harmless|innoxious|inoffensive|uncontroversial|insipid|harmless +(adj)|harmless|safe +(adj)|unobjectionable|inoffensive +(adj)|innocent|harmless +innominate artery|1 +(noun)|artery|arteria|arterial blood vessel +innominate bone|1 +(noun)|hipbone|bone|os +innominate vein|1 +(noun)|brachiocephalic vein|vena brachiocephalica|vein|vena|venous blood vessel +innovate|1 +(verb)|introduce|initiate|pioneer +innovation|3 +(noun)|invention|creation +(noun)|invention|excogitation|conception|design|creativity|creativeness|creative thinking +(noun)|initiation|founding|foundation|institution|origination|creation|introduction|instauration|beginning|start|commencement +innovational|1 +(adj)|innovative|groundbreaking|original +innovative|2 +(adj)|advanced|forward-looking|modern|progressive +(adj)|innovational|groundbreaking|original +innovativeness|1 +(noun)|originality +innovator|1 +(noun)|pioneer|trailblazer|groundbreaker|originator|conceiver|mastermind +innoxious|1 +(adj)|innocuous |harmless +innsbruck|1 +(noun)|Innsbruck|city|metropolis|urban center +innuendo|1 +(noun)|insinuation|implication +innumerable|1 +(adj)|countless|infinite|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +innumerableness|1 +(noun)|countlessness|number|figure +innumerate|1 +(adj)|innumerate |uneducated|educated +innumerous|1 +(adj)|countless|infinite|innumerable|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +inocor|1 +(noun)|amrinone|Inocor|medicine|medication|medicament|medicinal drug +inoculant|1 +(noun)|inoculum|substance|matter +inoculate|5 +(verb)|inform +(verb)|insert|enclose|inclose|stick in|put in|introduce +(verb)|immunize|immunise|vaccinate|inject|shoot +(verb)|propagate +(verb)|impregnate +inoculating|1 +(noun)|vaccinating|protection +inoculation|1 +(noun)|vaccination|immunization|immunisation +inoculator|1 +(noun)|vaccinator|medical practitioner|medical man +inoculum|1 +(noun)|inoculant|substance|matter +inodorous|1 +(adj)|odorless |odourless|scentless +inoffensive|6 +(adj)|inoffensive |unoffending|offenseless|offenceless +(adj)|savory |savoury +(adj)|inoffensive |innocuous|unobjectionable +(adj)|euphemistic +(adj)|uncontroversial|innocuous |harmless +(adj)|unoffending|harmless +inoic beam|1 +(noun)|ion beam|particle beam +inoperable|2 +(adj)|unusable|unserviceable +(adj)|inoperable +inoperative|1 +(adj)|inoperative |down|dead|defunct +inopportune|1 +(adj)|inopportune |ill-timed|ill timed|unseasonable|untimely|wrong|inconvenient|disadvantageous|harmful +inopportunely|1 +(adv)|malapropos +inopportuneness|1 +(noun)|untimeliness|inconvenience +inordinate|1 +(adj)|excessive|undue|unreasonable|immoderate +inordinately|1 +(adv)|extraordinarily +inordinateness|1 +(noun)|excess|excessiveness|immoderation|immoderateness +inorganic|2 +(adj)|inorganic +(adj)|inorganic |amorphous|unstructured|artificial|mineral +inorganic chemistry|1 +(noun)|chemistry|chemical science +inorganic compound|1 +(noun)|compound|chemical compound +inorganic phosphate|1 +(noun)|phosphate|orthophosphate|salt +inosculate|2 +(verb)|anastomose|join|conjoin +(verb)|anastomose|join|bring together +inosculation|1 +(noun)|anastomosis|junction|conjunction|conjugation|colligation +inositol|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +inpatient|1 +(noun)|inmate|patient +inpour|1 +(noun)|inpouring|inrush|inflow|influx +inpouring|2 +(adj)|incoming +(noun)|inpour|inrush|inflow|influx +input|3 +(noun)|input signal|signal|signaling|sign +(noun)|stimulation|stimulus|stimulant|information +(verb)|insert|infix|enter|introduce +input data|1 +(noun)|input file|computer file +input device|1 +(noun)|data input device|device +input file|1 +(noun)|input data|computer file +input program|1 +(noun)|utility program|utility|service program +input routine|1 +(noun)|utility routine|service routine +input signal|1 +(noun)|input|signal|signaling|sign +inquest|1 +(noun)|inquiry|enquiry +inquietude|1 +(noun)|edginess|uneasiness|disquietude|anxiety +inquire|3 +(verb)|ask|enquire|communicate|intercommunicate +(verb)|wonder|enquire|question|query +(verb)|investigate|enquire|probe|examine +inquirer|1 +(noun)|enquirer|questioner|querier|asker|speaker|talker|utterer|verbalizer|verbaliser +inquiring|2 +(adj)|inquiring |fact-finding|investigative|investigatory|inquisitive|inquisitorial|inquisitorial|inquisitory|probing|searching|curious +(noun)|questioning|request|asking +inquiringly|1 +(adv)|enquiringly +inquiry|3 +(noun)|enquiry|research|problem solving +(noun)|question|enquiry|query|interrogation|questioning|inquiring +(noun)|enquiry|investigation|investigating +inquiry agent|1 +(noun)|private detective|PI|private eye|private investigator|operative|shamus|sherlock +inquisition|2 +(noun)|Inquisition|court|tribunal|judicature +(noun)|interrogation|examination|interrogatory +inquisitive|2 +(adj)|speculative|questioning|wondering|curious +(adj)|inquiring +inquisitively|1 +(adv)|curiously|interrogatively +inquisitiveness|1 +(noun)|curiousness|curiosity|wonder +inquisitor|2 +(noun)|interrogator|inquirer|enquirer|questioner|querier|asker +(noun)|Inquisitor|official|functionary +inquisitorial|3 +(adj)|inquisitorial |inquirer|enquirer|questioner|querier|asker +(adj)|inquiring +(adj)|inquiring +inquisitory|1 +(adj)|probing|searching|inquiring +inr|1 +(noun)|Bureau of Intelligence and Research|INR|agency|federal agency|government agency|bureau|office|authority +inroad|2 +(noun)|trespass|encroachment|violation|intrusion|usurpation +(noun)|invasion +inrush|1 +(noun)|inpouring|inpour|inflow|influx +ins|4 +(noun)|Immigration and Naturalization Service|INS|agency|federal agency|government agency|bureau|office|authority +(noun)|inch|in|linear unit +(noun)|indium|In|atomic number 49|metallic element|metal +(noun)|Indiana|Hoosier State|IN|American state +insalubrious|1 +(adj)|unhealthful|unhealthy|unwholesome +insalubriousness|1 +(noun)|insalubrity|unhealthfulness +insalubrity|1 +(noun)|insalubriousness|unhealthfulness +insane|2 +(adj)|insane |amuck|amok|berserk|demoniac|demoniacal|possessed|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|brainsick|crazy|demented|distracted|disturbed|mad|sick|unbalanced|unhinged|certifiable|certified|crackbrained|idiotic|crazed|deranged|half-crazed|fey|touched|hebephrenic|schizophrenic|lunatic|moonstruck|maniacal|maniac|manic-depressive|maniclike|non compos mentis|of unsound mind|paranoid|psychopathic|psychopathologic|psychopathological|psychotic|raving|raving mad|wild|schizophrenic|screw-loose|screwy|mentally ill|unsound|unstable|irrational|unreasonable +(adj)|harebrained|mad|foolish +insane asylum|1 +(noun)|mental hospital|psychiatric hospital|mental institution|institution|mental home|asylum|hospital|infirmary +insanely|2 +(adv)|crazily|dementedly|madly +(adv)|madly|deadly|deucedly|devilishly +insaneness|1 +(noun)|lunacy|madness|insanity +insanitary|1 +(adj)|unsanitary |unhealthful|unhygienic +insanity|1 +(noun)|mental illness|mental disease|psychopathy +insanity plea|1 +(noun)|plea of insanity|plea +insatiable|1 +(adj)|insatiate |unsatiable|quenchless|unquenchable|unsated|unsatiated|unsatisfied|unsatisfiable +insatiably|2 +(adv)|unsatiably +(adv)|unsatiably +insatiate|1 +(adj)|insatiate |insatiable|unsatiable|quenchless|unquenchable|unsated|unsatiated|unsatisfied|unsatisfiable +inscribe|7 +(verb)|engrave|grave|carve|chip at +(verb)|enroll|enter|enrol|recruit|register +(verb)|trace|draw|line|describe|delineate +(verb)|record|enter|put down +(verb)|autograph|sign +(verb)|encode|code|encipher|cipher|cypher|encrypt|write in code|write +(verb)|dedicate +inscribed|2 +(adj)|written +(adj)|engraved|etched|graven|incised|carved |carven +inscription|3 +(noun)|lettering|writing|written material|piece of writing +(noun)|dedication|message +(noun)|writing|committal to writing +inscrutability|1 +(noun)|incomprehensibility +inscrutable|1 +(adj)|cryptic|cryptical|deep|mysterious|mystifying|inexplicable |incomprehensible +insect|2 +(noun)|arthropod +(noun)|worm|louse|dirt ball|unpleasant person|disagreeable person +insect bite|1 +(noun)|sting|bite|injury|hurt|harm|trauma +insect powder|1 +(noun)|insecticide|pesticide +insect repellant|1 +(noun)|insectifuge|insect repellent|repellent|repellant +insect repellent|1 +(noun)|insectifuge|insect repellant|repellent|repellant +insecta|1 +(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class +insectan|1 +(adj)|arthropod +insecticide|1 +(noun)|insect powder|pesticide +insectifuge|1 +(noun)|insect repellent|insect repellant|repellent|repellant +insectivora|1 +(noun)|Insectivora|order Insectivora|animal order +insectivore|2 +(noun)|placental|placental mammal|eutherian|eutherian mammal +(noun)|animal|animate being|beast|brute|creature|fauna +insectivorous|1 +(adj)|insectivorous |apivorous|myrmecophagous +insectlike|1 +(adj)|animal +insecure|5 +(adj)|insecure |loose|precarious|uncertain|unfixed +(adj)|insecure |unsafe|embattled|precarious|shaky|uncertain|unsure|unguaranteed|unsecured|dangerous|unsafe|unprotected|vulnerable +(adj)|insecure |overanxious|unassured +(adj)|unsafe|vulnerable +(adj)|bad|risky|high-risk|speculative|unsound +insecureness|1 +(noun)|insecurity +insecurity|2 +(noun)|danger +(noun)|anxiety +inseminate|2 +(verb)|sow|sow in|sow|sough|seed +(verb)|fecundate|fertilize|fertilise|change|alter|modify +inseminated|1 +(adj)|fertilized|fertilised|impregnated|fertile +insemination|2 +(noun)|planting +(noun)|bodily process|body process|bodily function|activity +insensate|2 +(adj)|insentient |unfeeling +(adj)|cold|cold-blooded|inhuman|inhumane +insensibility|2 +(noun)|unconsciousness +(noun)|unfeelingness|callousness|hardness|insensitivity|insensitiveness +insensible|4 +(adj)|insensible |anesthetic|anaesthetic|anesthetized|anesthetised|anaesthetized|anaesthetised|asleep|benumbed|numb|sedated|insensitive|insensitive|unaware|unconscious +(adj)|unaffected|insensitive +(adj)|indiscernible|undetectable|imperceptible |unperceivable +(adj)|senseless|unconscious +insensibly|1 +(adv)|numbly +insensitive|2 +(adj)|insensitive |dead|deadened|desensitized|desensitised|unreactive|unresponsive|insensible|unresponsive|unsusceptible|insusceptible +(adj)|insensitive |callous|thick-skinned|indurate|pachydermatous|dead|numb|dull|insensible|unaffected|soulless|unresponsive|desensitized|desensitised|hard|insensible|tough|unresponsive +insensitiveness|1 +(noun)|insensitivity|inability|unfitness +insensitivity|1 +(noun)|insensitiveness|inability|unfitness +insentience|1 +(noun)|inanimateness|lifelessness +insentient|1 +(adj)|insentient |insensate|unfeeling +inseparable|1 +(adj)|indivisible +insert|8 +(noun)|section|subdivision +(noun)|inset|artifact|artefact +(noun)|cut-in|break|interruption|disruption|gap +(noun)|cut-in|break|interruption|disruption|gap +(verb)|infix|enter|introduce|attach +(verb)|enclose|inclose|stick in|put in|introduce|put|set|place|pose|position|lay +(verb)|tuck|enclose|inclose|shut in +(verb)|slip in|stick in|sneak in|add|append|supply +insertion|2 +(noun)|interpolation|message|content|subject matter|substance +(noun)|introduction|intromission|movement +insessores|1 +(noun)|Insessores|order Insessores|perching bird|percher|animal order +inset|4 +(noun)|picture|image|icon|ikon +(noun)|insert|artifact|artefact +(noun)|gusset|piece of cloth|piece of material +(verb)|insert|enclose|inclose|stick in|put in|introduce +inshore|2 +(adj)|inshore |onshore|seaward +(adj)|coastal +inside|12 +(adj)|inside |wrong|internal +(adj)|interior +(adj)|indoor |interior +(adj)|inner|privileged|exclusive +(adj)|inner +(adj)|internal +(noun)|interior|region|part +(noun)|interior|surface +(adv)|indoors +(adv)|within +(adv)|inwardly +(adv)|at heart|at bottom|deep down|in spite of appearance +inside-out|1 +(adj)|wrong-side-out|turned +inside caliper|1 +(noun)|caliper|calipers|calliper|callipers +inside clinch|1 +(noun)|clinch|clench +inside information|1 +(noun)|details|information|info +inside job|1 +(noun)|transgression|evildoing +inside loop|1 +(noun)|loop|loop-the-loop +inside track|2 +(noun)|superiority|favorable position|favourable position +(noun)|path|track|course +insider|1 +(noun)|corporate executive|business executive +insider information|1 +(noun)|information|info +insider trading|1 +(noun)|trading +insidious|3 +(adj)|seductive +(adj)|dangerous |unsafe +(adj)|pernicious|subtle|harmful +insidiously|1 +(adv)|perniciously +insidiousness|2 +(noun)|harmfulness|injuriousness +(noun)|perfidy|perfidiousness|treachery +insight|4 +(noun)|penetration|perception +(noun)|perceptiveness|perceptivity|sensibility +(noun)|brainstorm|brainwave|understanding|apprehension|discernment|savvy +(noun)|sixth sense|intuition +insightful|1 +(adj)|perceptive +insightfulness|1 +(noun)|acumen|shrewdness|astuteness|perspicacity|perspicaciousness +insignia|1 +(noun)|badge +insignia of rank|1 +(noun)|insignia +insignificance|1 +(noun)|unimportance +insignificant|5 +(adj)|trivial|inconsiderable +(adj)|undistinguished|unnoticeable +(adj)|unmeaning|meaningless |nonmeaningful +(adj)|peanut|minor +(adj)|insignificant |unimportant|hole-and-corner|hole-in-corner|inappreciable|light|superficial|trivial|meaningless|nonmeaningful|unimportant +insincere|1 +(adj)|insincere |bootlicking|fawning|obsequious|sycophantic|toadyish|buttery|fulsome|oily|oleaginous|smarmy|unctuous|dissembling|dissimulating|dissimulative|false|hollow|gilded|meretricious|specious|hypocritical|feigned|counterfeit|imitative|dishonest|dishonorable|disingenuous|artful|false|unreal +insincerity|1 +(noun)|falseness|untruthfulness +insinuate|2 +(verb)|bring in|introduce +(verb)|intimate|adumbrate|hint|suggest +insinuation|2 +(noun)|innuendo|implication +(noun)|ingratiation|blandishment|wheedling +insipid|4 +(adj)|bland|flat|flavorless|flavourless|savorless|savourless|vapid|tasteless +(adj)|innocuous |harmless +(adj)|jejune|uninteresting +(adj)|tasteless|unappetizing |unappetising +insipidity|1 +(noun)|blandness|insipidness|unappetizingness|unappetisingness +insipidness|1 +(noun)|blandness|insipidity|unappetizingness|unappetisingness +insist|3 +(verb)|take a firm stand +(verb)|importune|beg|implore|pray +(verb)|assert|postulate|posit +insistence|3 +(noun)|insisting|demand +(noun)|imperativeness|insistency|press|pressure|urgency +(noun)|imperativeness|insistency|instancy|urgency +insistency|2 +(noun)|imperativeness|insistence|press|pressure|urgency +(noun)|imperativeness|insistence|instancy|urgency +insistent|2 +(adj)|repetitive|continual +(adj)|clamant|crying|exigent|instant|imperative +insisting|1 +(noun)|insistence|demand +insofar|1 +(adv)|in so far|to that extent|to that degree +insolate|1 +(verb)|sun|solarize|solarise|expose +insolation|3 +(noun)|sunstroke|thermic fever|siriasis|heatstroke|heat hyperpyrexia +(noun)|solar radiation +(noun)|heliotherapy|therapy +insole|1 +(noun)|innersole|sole +insolence|2 +(noun)|crust|gall|impertinence|impudence|cheekiness|freshness|discourtesy|rudeness +(noun)|discourtesy|offense|offence|offensive activity +insolent|2 +(adj)|impudent|snotty-nosed|flip|disrespectful +(adj)|audacious|barefaced|bodacious|bold-faced|brassy|brazen|brazen-faced|unashamed +insolubility|1 +(noun)|quality +insoluble|3 +(adj)|insoluble |indissoluble +(adj)|insoluble |insolvable|unsoluble|unsolvable|unresolvable|inexplicable|incomprehensible +(adj)|hopeless +insolvable|1 +(adj)|unsoluble|unsolvable|unresolvable|insoluble +insolvency|1 +(noun)|financial condition|economic condition +insolvent|2 +(adj)|insolvent |bankrupt|belly-up +(noun)|bankrupt|failure|loser|nonstarter|unsuccessful person +insomnia|1 +(noun)|sleep disorder +insomniac|2 +(adj)|sleepless|watchful|awake +(noun)|sleepless person|sick person|diseased person|sufferer +insouciance|1 +(noun)|carefreeness|lightheartedness|lightsomeness|cheerfulness|blitheness +insouciant|1 +(adj)|casual|nonchalant|unconcerned +inspan|1 +(verb)|yoke|harness|tackle +inspect|3 +(verb)|examine|see +(verb)|visit +(verb)|audit|scrutinize|scrutinise|analyze|analyse|study|examine|canvass|canvas +inspection|1 +(noun)|review|examination|scrutiny +inspection and repair|1 +(noun)|overhaul|service|care|maintenance|upkeep +inspector|2 +(noun)|policeman|police officer|officer +(noun)|examiner|investigator +inspector general|1 +(noun)|military officer|officer +inspector maigret|1 +(noun)|Inspector Maigret|Commissaire Maigret|fictional character|fictitious character|character +inspectorate|1 +(noun)|body +inspectorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +inspiration|6 +(noun)|idea|thought +(noun)|brainchild|product|production +(noun)|intuition +(noun)|divine guidance|cognitive factor +(noun)|stirring|arousal|rousing +(noun)|inhalation|aspiration|breathing in|breath +inspirational|1 +(adj)|sacred +inspirationally|1 +(adv)|with inspiration +inspiratory|1 +(adj)|breath +inspire|6 +(verb)|animate|invigorate|enliven|exalt|stimulate|shake|shake up|excite|stir +(verb)|occasion +(verb)|prompt|instigate|induce|stimulate|cause|have|get|make +(verb)|cheer|urge|barrack|urge on|exhort|pep up|encourage +(verb)|revolutionize|revolutionise|indoctrinate +(verb)|inhale|breathe in|breathe|take a breath|respire|suspire +inspired|1 +(adj)|divine|elysian|glorious +inspirer|1 +(noun)|galvanizer|galvaniser|leader +inspiring|1 +(adj)|inspiring |ennobling|exalting +inspirit|1 +(verb)|spirit|spirit up|enliven|liven|liven up|invigorate|animate +inspiriting|1 +(adj)|heartening|encouraging +inspissate|3 +(verb)|thicken|change integrity +(verb)|thicken|change|alter|modify +(verb)|thicken|change state|turn +inspissation|2 +(noun)|dehydration|desiccation|drying up|evaporation +(noun)|thickening|condensing|condensation +inst|1 +(adj)|instant|present +instability|4 +(noun)|disorder +(noun)|undependability|undependableness|unreliability|unreliableness +(noun)|imbalance|unbalance|disequilibrium +(noun)|unstableness|unsteadiness +instal|2 +(verb)|install|put in|set up|put|set|place|pose|position|lay +(verb)|install|set up|establish +install|2 +(verb)|instal|put in|set up|put|set|place|pose|position|lay +(verb)|instal|set up|establish +installation|3 +(noun)|installing|installment|instalment|beginning|start|commencement +(noun)|facility|artifact|artefact +(noun)|initiation|induction|ceremony|ceremonial|ceremonial occasion|observance +installation charge|1 +(noun)|charge +installing|1 +(noun)|installation|installment|instalment|beginning|start|commencement +installment|4 +(noun)|payment +(noun)|episode|instalment|broadcast|program|programme +(noun)|instalment|text|textual matter +(noun)|installation|installing|instalment|beginning|start|commencement +installment buying|1 +(noun)|installment plan|time plan|regular payment +installment credit|1 +(noun)|installment loan|consumer credit|loan +installment debt|1 +(noun)|debt +installment loan|1 +(noun)|installment credit|consumer credit|loan +installment plan|1 +(noun)|installment buying|time plan|regular payment +installment rate|1 +(noun)|payment rate|rate of payment|repayment rate|rate|charge per unit +instalment|3 +(noun)|episode|installment|broadcast|program|programme +(noun)|installment|text|textual matter +(noun)|installation|installing|installment|beginning|start|commencement +instance|3 +(noun)|case|example|happening|occurrence|natural event +(noun)|example|illustration|representative|information +(verb)|exemplify|illustrate|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +instancy|2 +(noun)|immediacy|immediateness|instantaneousness|celerity|quickness|rapidity +(noun)|imperativeness|insistence|insistency|urgency +instant|5 +(adj)|instantaneous|fast +(adj)|inst|present +(adj)|clamant|crying|exigent|insistent|imperative +(noun)|blink of an eye|flash|heartbeat|jiffy|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +(noun)|moment|minute|second|point|point in time +instantaneous|1 +(adj)|instant|fast +instantaneous sound pressure|1 +(noun)|sound pressure|pressure|pressure level|force per unit area +instantaneously|1 +(adv)|outright|instantly|in a flash +instantaneousness|1 +(noun)|immediacy|immediateness|instancy|celerity|quickness|rapidity +instantiate|2 +(verb)|represent +(verb)|detect|observe|find|discover|notice +instantiation|1 +(noun)|representation|mental representation|internal representation +instantly|2 +(adv)|immediately|straightaway|straight off|directly|now|right away|at once|forthwith|in real time|like a shot +(adv)|instantaneously|outright|in a flash +instar|1 +(noun)|arthropod +instauration|1 +(noun)|initiation|founding|foundation|institution|origination|creation|innovation|introduction|beginning|start|commencement +instead|2 +(adv)|alternatively|as an alternative|or else +(adv)|rather +instep|2 +(noun)|arch +(noun)|covering +instigant|1 +(noun)|instigator|provoker|inciter|firebrand|troublemaker|trouble maker|troubler|mischief-maker|bad hat +instigate|2 +(verb)|incite|set off|stir up|provoke|stimulate +(verb)|prompt|inspire|induce|stimulate|cause|have|get|make +instigation|2 +(noun)|abetment|encouragement +(noun)|fomentation|trigger|induction|initiation +instigative|1 +(adj)|incendiary|incitive|inflammatory|rabble-rousing|seditious|provocative +instigator|2 +(noun)|provoker|inciter|instigant|firebrand|troublemaker|trouble maker|troubler|mischief-maker|bad hat +(noun)|initiator|leader +instil|1 +(verb)|instill|insert|infix|enter|introduce +instill|5 +(verb)|transfuse|lend|impart|bestow|contribute|add|bring +(verb)|instil|insert|infix|enter|introduce +(verb)|impress|ingrain|affect|impress|move|strike +(verb)|inculcate|infuse|drill +(verb)|impregnate|infuse|tincture|fill|fill up|make full +instillation|2 +(noun)|instillment|instilment|insertion|introduction|intromission +(noun)|liquid +instillator|1 +(noun)|apparatus|setup +instilling|1 +(noun)|inculcation|ingraining|indoctrination +instillment|1 +(noun)|instillation|instilment|insertion|introduction|intromission +instilment|1 +(noun)|instillation|instillment|insertion|introduction|intromission +instinct|2 +(adj)|replete|full +(noun)|inherent aptitude|aptitude +instinctive|1 +(adj)|natural|spontaneous |self-generated +instinctive reflex|1 +(noun)|reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction|response +institute|3 +(noun)|association +(verb)|establish|found|plant|constitute|initiate|pioneer +(verb)|bring|make|create +institution|5 +(noun)|establishment|organization|organisation +(noun)|establishment +(noun)|custom|tradition +(noun)|initiation|founding|foundation|origination|creation|innovation|introduction|instauration|beginning|start|commencement +(noun)|mental hospital|psychiatric hospital|mental institution|mental home|insane asylum|asylum|hospital|infirmary +institutional|2 +(adj)|organization|organisation +(adj)|institutional |institutionalized|institutionalised|uninteresting +institutionalise|1 +(verb)|commit|institutionalize|send|charge|transfer +institutionalised|2 +(adj)|institutionalized +(adj)|institutionalized|institutional +institutionalize|1 +(verb)|commit|institutionalise|send|charge|transfer +institutionalized|2 +(adj)|institutionalized |institutionalised +(adj)|institutionalised|institutional +instroke|1 +(noun)|throw|stroke|cam stroke +instruct|3 +(verb)|teach|learn|inform +(verb)|order|tell|enjoin|say +(verb)|apprise|apprize|inform +instructed|1 +(adj)|schooled|taught|tutored|educated +instruction|4 +(noun)|direction|message|content|subject matter|substance +(noun)|education|teaching|pedagogy|educational activity|activity +(noun)|teaching|pedagogy|education +(noun)|command|statement|program line|code|computer code +instruction book|1 +(noun)|reference book|reference|reference work|book of facts +instruction execution|1 +(noun)|execution|process +instruction manual|1 +(noun)|instructions|book of instructions|operating instructions|manual +instructional|1 +(adj)|education +instructions|5 +(noun)|instruction manual|book of instructions|operating instructions|manual +(noun)|direction|instruction|message|content|subject matter|substance +(noun)|education|instruction|teaching|pedagogy|educational activity|activity +(noun)|teaching|instruction|pedagogy|education +(noun)|instruction|command|statement|program line|code|computer code +instructive|2 +(adj)|instructive |informative|clarifying|elucidative|demonstrative|illustrative|didactic|didactical|doctrinaire|educative|educational|explanatory|expository|expositive|interpretative|interpretive|preachy|ostensive|informative|informatory +(adj)|enlightening |informative +instructively|1 +(adv)|informatively +instructor|1 +(noun)|teacher|educator|pedagogue +instructorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +instructress|1 +(noun)|teacher|instructor +instrument|9 +(noun)|device +(noun)|tool|means|agency|way +(noun)|pawn|cat's-paw|assistant|helper|help|supporter +(noun)|legal document|legal instrument|official document|document|written document|papers +(noun)|instrumental role|semantic role|participant role +(noun)|musical instrument|device +(verb)|equip|fit|fit out|outfit +(verb)|instrumentate|compose|write +(verb)|address|direct +instrument flying|1 +(noun)|navigation|pilotage|piloting +instrument landing|1 +(noun)|aircraft landing|airplane landing +instrument of execution|1 +(noun)|instrument +instrument of punishment|1 +(noun)|instrument +instrument of torture|1 +(noun)|instrument of punishment +instrument panel|1 +(noun)|control panel|control board|board|panel|electrical device +instrumental|2 +(adj)|instrumental |device +(adj)|implemental|helpful +instrumental conditioning|1 +(noun)|operant conditioning +instrumental music|1 +(noun)|music +instrumental role|1 +(noun)|instrument|semantic role|participant role +instrumentalist|1 +(noun)|musician|player|performer|performing artist +instrumentality|3 +(noun)|unit|social unit +(noun)|utility|usefulness +(noun)|instrumentation|artifact|artefact +instrumentate|1 +(verb)|instrument|compose|write +instrumentation|4 +(noun)|instrumentality|artifact|artefact +(noun)|implementation|effectuation +(noun)|musical arrangement|arrangement +(noun)|orchestration|arrangement|arranging|transcription +insubordinate|2 +(adj)|insubordinate |contumacious|disobedient|unruly|mutinous|rebellious|defiant|noncompliant +(adj)|resistant|resistive|defiant |noncompliant +insubordination|2 +(noun)|defiance|rebelliousness +(noun)|rebelliousness|resistance +insubstantial|2 +(adj)|insubstantial |unsubstantial|unreal|aeriform|aerial|airy|aery|ethereal|paper|shadowy|wraithlike|immaterial|nonmaterial +(adj)|jejune|unwholesome +insubstantiality|2 +(noun)|weakness +(noun)|immateriality|incorporeality +insufferable|1 +(adj)|impossible|unacceptable|unsufferable|intolerable +insufficiency|3 +(noun)|inadequacy|failing|weakness +(noun)|inability|unfitness +(noun)|inadequacy|deficiency|amount +insufficient|1 +(adj)|insufficient |deficient|depleted|low|inadequate|poor|short|lean|lean|skimpy|light|scant|short|scarce|shy|too little|meager|meagre|meagerly +insufflate|3 +(verb)|administer +(verb)|treat|care for +(verb)|blow +insufflation|2 +(noun)|blowing +(noun)|blow|puff +insulant|1 +(noun)|insulating material|insulation|building material +insular|3 +(adj)|land|dry land|earth|ground|solid ground|terra firma +(adj)|private +(adj)|parochial|provincial +insularism|1 +(noun)|insulation|insularity|detachment|isolation +insularity|1 +(noun)|insulation|insularism|detachment|isolation +insulate|2 +(verb)|change|alter|modify +(verb)|isolate|discriminate|separate|single out +insulating material|1 +(noun)|insulant|insulation|building material +insulating tape|1 +(noun)|friction tape|adhesive tape +insulation|3 +(noun)|insularity|insularism|detachment|isolation +(noun)|insulating material|insulant|building material +(noun)|protection +insulator|1 +(noun)|dielectric|nonconductor|material|stuff +insulin|1 +(noun)|hormone|endocrine|internal secretion|hypoglycemic agent|hypoglycaemic agent +insulin-dependent diabetes mellitus|1 +(noun)|type I diabetes|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +insulin reaction|1 +(noun)|insulin shock|shock +insulin shock|2 +(noun)|insulin reaction|shock +(noun)|insulin shock therapy|insulin shock treatment|shock therapy|shock treatment +insulin shock therapy|1 +(noun)|insulin shock|insulin shock treatment|shock therapy|shock treatment +insulin shock treatment|1 +(noun)|insulin shock|insulin shock therapy|shock therapy|shock treatment +insult|3 +(noun)|abuse|revilement|contumely|vilification|disrespect|discourtesy +(noun)|affront|discourtesy|offense|offence|offensive activity +(verb)|diss|affront|hurt|wound|injure|bruise|offend|spite +insulted|1 +(adj)|affronted|abused +insulting|2 +(adj)|abusive|opprobrious|scornful|scurrilous|offensive +(adj)|contemptuous|disdainful|scornful|disrespectful +insultingly|1 +(adv)|foully +insuperable|2 +(adj)|insurmountable|unconquerable +(adj)|unconquerable|insurmountable |unsurmountable +insupportable|1 +(adj)|indefensible|unjustifiable|unwarrantable|unwarranted|inexcusable +insurability|1 +(noun)|eligibility +insurable|1 +(adj)|insured +insurable interest|1 +(noun)|interest|stake +insurance|3 +(noun)|security|protection +(noun)|policy|insurance policy|contract +(noun)|indemnity|protection|shelter +insurance agent|1 +(noun)|insurance broker|general agent|underwriter|agent|factor|broker +insurance broker|1 +(noun)|insurance agent|general agent|underwriter|agent|factor|broker +insurance claim|1 +(noun)|claim +insurance company|1 +(noun)|insurance firm|insurer|insurance underwriter|underwriter|nondepository financial institution +insurance coverage|1 +(noun)|coverage|sum|sum of money|amount|amount of money +insurance firm|1 +(noun)|insurance company|insurer|insurance underwriter|underwriter|nondepository financial institution +insurance policy|1 +(noun)|policy|insurance|contract +insurance premium|1 +(noun)|premium|payment +insurance underwriter|1 +(noun)|insurance company|insurance firm|insurer|underwriter|nondepository financial institution +insure|4 +(verb)|see|check|see to it|ensure|control|ascertain|assure|verify +(verb)|guarantee|ensure|assure|secure +(verb)|cover|underwrite|guarantee|warrant +(verb)|protect +insured|2 +(adj)|insured |insurable +(noun)|insured person|person|individual|someone|somebody|mortal|human|soul +insured person|1 +(noun)|insured|person|individual|someone|somebody|mortal|human|soul +insurer|1 +(noun)|insurance company|insurance firm|insurance underwriter|underwriter|nondepository financial institution +insurgence|1 +(noun)|insurgency|rebellion|insurrection|revolt|rising|uprising +insurgency|1 +(noun)|insurgence|rebellion|insurrection|revolt|rising|uprising +insurgent|3 +(adj)|seditious|subversive|disloyal +(noun)|insurrectionist|freedom fighter|rebel|revolutionist|revolutionary|subversive|subverter|reformer|reformist|crusader|meliorist +(noun)|guerrilla|guerilla|irregular|warrior +insurmountable|2 +(adj)|insurmountable |unsurmountable|insuperable|unconquerable|impossible|unconquerable +(adj)|insuperable|unconquerable +insurrection|1 +(noun)|rebellion|revolt|rising|uprising|conflict|struggle|battle +insurrectional|1 +(adj)|insurrectionary|conflict|struggle|battle +insurrectionary|1 +(adj)|insurrectional|conflict|struggle|battle +insurrectionist|1 +(noun)|insurgent|freedom fighter|rebel|revolutionist|revolutionary|subversive|subverter|reformer|reformist|crusader|meliorist +insusceptible|1 +(adj)|unsusceptible |immune|resistant|immunized|immunised|vaccinated|incapable|unpersuadable|unsuasible|unresponsive|insensitive +intact|5 +(adj)|integral|entire|whole +(adj)|unimpaired +(adj)|inviolate|uninjured +(adj)|entire|uncastrated +(adj)|undamaged +intactness|1 +(noun)|perfection|flawlessness|ne plus ultra +intaglio|2 +(noun)|intaglio printing|gravure|printing|printing process +(noun)|diaglyph|glyptic art|glyptography +intaglio printing|1 +(noun)|intaglio|gravure|printing|printing process +intake|2 +(noun)|consumption|ingestion|uptake|bodily process|body process|bodily function|activity +(noun)|opening +intake manifold|1 +(noun)|manifold +intake valve|1 +(noun)|valve +intangibility|1 +(noun)|intangibleness|impalpability|immateriality|incorporeality +intangible|5 +(adj)|intangible +(adj)|intangible |impalpable|abstract +(adj)|unidentifiable +(adj)|nonphysical|immaterial |nonmaterial +(noun)|intangible asset|assets +intangible asset|1 +(noun)|intangible|assets +intangibleness|1 +(noun)|intangibility|impalpability|immateriality|incorporeality +integer|1 +(noun)|whole number|number +integral|3 +(adj)|built-in|constitutional|inbuilt|inherent|intrinsic |intrinsical +(adj)|entire|intact|whole +(noun)|calculation|computation|figuring|reckoning +integral calculus|1 +(noun)|calculus|the calculus|infinitesimal calculus +integrate|4 +(verb)|incorporate|compound|combine +(verb)|desegregate|mix +(verb)|change state|turn +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +integrated|5 +(adj)|incorporate|incorporated|merged|unified|united +(adj)|integrated |coordinated|interconnected|unified|embedded|incorporated|introjected|tight-knit|tightly knit +(adj)|integrated |co-ed|coeducational|desegrated|nonsegregated|unsegregated|interracial|mixed|mainstreamed|integrative|joint|united +(adj)|structured|organic +(adj)|amalgamated|intermingled|mixed|blended +integrated circuit|1 +(noun)|microcircuit|computer circuit +integrated data processing|1 +(noun)|IDP|automatic data processing|ADP +integrated logistic support|1 +(noun)|logistic support|logistic assistance +integrating|1 +(noun)|integration|desegregation|group action +integration|3 +(noun)|integrating|desegregation|group action +(noun)|consolidation|combination|combining|compounding +(noun)|mathematical process|mathematical operation|operation +integrative|2 +(adj)|integrative |combinative|combinatory|combinatorial|compositional|consolidative|unifying|plastic|endogenic|endogenetic|collective|combinative|combinatory|integrated +(adj)|consolidative|centralizing +integrator|1 +(noun)|planimeter|measuring instrument|measuring system|measuring device +integrity|2 +(noun)|unity|wholeness|state +(noun)|honesty|honestness +integument|1 +(noun)|covering|natural covering|cover +integumental|1 +(adj)|integumentary|covering|natural covering|cover +integumentary|1 +(adj)|integumental|covering|natural covering|cover +integumentary system|1 +(noun)|system +intellect|3 +(noun)|mind|intelligence +(noun)|reason|understanding|faculty|mental faculty|module +(noun)|intellectual|person|individual|someone|somebody|mortal|human|soul +intellection|1 +(noun)|thinking|thought|cerebration|mentation|higher cognitive process +intellectual|5 +(adj)|intelligence +(adj)|rational|noetic|mental +(adj)|intellectual |highbrow|highbrowed|rational|reflective|good|serious|sophisticated|educated|mental|scholarly +(adj)|cerebral +(noun)|intellect|person|individual|someone|somebody|mortal|human|soul +intellectual nourishment|1 +(noun)|food|food for thought|content|cognitive content|mental object +intellectual property|1 +(noun)|property|belongings|holding|material possession +intellectualisation|1 +(noun)|intellectualization|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +intellectualization|1 +(noun)|intellectualisation|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +intelligence|5 +(noun)|ability|power +(noun)|intelligence service|intelligence agency|administrative unit|administrative body +(noun)|intelligence information|information|info +(noun)|news|tidings|word|information|info +(noun)|intelligence activity|intelligence operation|information gathering +intelligence activity|1 +(noun)|intelligence|intelligence operation|information gathering +intelligence agency|1 +(noun)|intelligence|intelligence service|administrative unit|administrative body +intelligence agent|1 +(noun)|secret agent|intelligence officer|operative|agent +intelligence analyst|1 +(noun)|analyst +intelligence cell|1 +(noun)|terrorist cell|radical cell +intelligence community|1 +(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence|intelligence service|intelligence agency +intelligence information|1 +(noun)|intelligence|information|info +intelligence officer|1 +(noun)|secret agent|intelligence agent|operative|agent +intelligence operation|1 +(noun)|intelligence|intelligence activity|information gathering +intelligence quotient|1 +(noun)|IQ|I.Q.|ratio +intelligence service|1 +(noun)|intelligence|intelligence agency|administrative unit|administrative body +intelligence test|1 +(noun)|IQ test|test|mental test|mental testing|psychometric test +intelligent|4 +(adj)|intelligent |agile|nimble|alert|apt|clever|brainy|brilliant|smart as a whip|bright|smart|incisive|keen|sharp|natural|born|innate|prehensile|scintillating|searching|trenchant|quick|ready|precocious|smart +(adj)|well-informed|sophisticated +(adj)|healthy|levelheaded|sound|reasonable |sensible +(adj)|reasoning|thinking|rational +intelligently|1 +(adv)|showing intelligence +intelligentsia|1 +(noun)|clerisy|elite|elite group +intelligibility|1 +(noun)|comprehensibility|understandability +intelligible|2 +(adj)|apprehensible|graspable|perceivable|understandable|comprehensible |comprehendible +(adj)|intelligible |comprehensible|comprehendible +intelligibly|1 +(adv)|clearly|understandably +intelnet|1 +(noun)|Intelnet|computer network +intemperance|3 +(noun)|unrestraint +(noun)|intemperateness|vice +(noun)|intemperateness|self-indulgence|indulgence|indulging|pampering|humoring +intemperate|3 +(adj)|intemperate |inclement +(adj)|intemperate |big|heavy|hard|heavy|uncontrolled|unrestrained|untempered|immoderate|intense +(adj)|indulgent +intemperately|1 +(adv)|heavily|hard +intemperateness|2 +(noun)|intemperance|vice +(noun)|intemperance|self-indulgence|indulgence|indulging|pampering|humoring +intend|4 +(verb)|mean|think|will|wish +(verb)|destine|designate|specify|plan +(verb)|mean|convey|impart +(verb)|mean|signify|stand for +intended|2 +(adj)|intended |conscious|witting|deliberate|intentional|knowing|willful|wilful|supposed|well-intentioned|well-meaning|well-meant|motivated|planned|premeditated +(adj)|attached |committed +intense|3 +(adj)|intense |aggravated|bad|big|blood-and-guts|cold|concentrated|consuming|overwhelming|deep|exquisite|keen|extreme|utmost|uttermost|fierce|tearing|vehement|violent|trigger-happy|intensified|intensive|main|pressure-cooker|profound|raging|screaming|severe|terrible|wicked|strong|terrific|thick|deep|unabated|violent|wild|immoderate|intemperate|profound +(adj)|acute|sharp +(adj)|vivid|saturated |pure +intensification|2 +(noun)|increase|step-up +(noun)|increase|step-up +intensified|1 +(adj)|intense +intensifier|1 +(noun)|intensive|modifier|qualifier +intensify|4 +(verb)|escalate|step up|increase +(verb)|compound|heighten|deepen|increase +(verb)|deepen|increase +(verb)|change|alter|modify +intensifying|1 +(adj)|intensifying |aggravating|exacerbating|exasperating|augmentative|enhancive|deepening|gathering|thickening|heightening +intension|1 +(noun)|connotation|meaning|significance|signification|import +intensional|1 +(adj)|connotative +intensity|4 +(noun)|strength|intensity level|magnitude +(noun)|intensiveness|degree|grade|level +(noun)|volume|loudness|sound property +(noun)|saturation|chroma|vividness|color property +intensity level|1 +(noun)|intensity|strength|magnitude +intensive|4 +(adj)|intense +(adj)|modifier|qualifier +(adj)|intensive +(noun)|intensifier|modifier|qualifier +intensive care|1 +(noun)|medical care|medical aid +intensive care unit|1 +(noun)|ICU|unit|social unit +intensiveness|1 +(noun)|intensity|degree|grade|level +intent|4 +(adj)|fixed|concentrated +(adj)|absorbed|engrossed|enwrapped|rapt|wrapped|attentive +(noun)|purpose|intention|aim|design|goal|end +(noun)|purport|spirit|meaning|significance|signification|import +intent on|1 +(adj)|bent|bent on|dead set|out to|resolute +intention|3 +(noun)|purpose|intent|aim|design|goal|end +(noun)|goal|end +(noun)|volition|willing +intentional|3 +(adj)|deliberate|knowing|willful|wilful|intended +(adj)|designed |fashioned +(adj)|willful|wilful|voluntary +intentionality|1 +(noun)|deliberation|deliberateness +intentionally|1 +(adv)|deliberately|designedly|on purpose|purposely|advisedly|by choice|by design +intentness|1 +(noun)|engrossment|assiduity|assiduousness|concentration +inter|1 +(verb)|bury|entomb|inhume|lay to rest|lay|put down|repose +inter-group communication|1 +(noun)|liaison|link|contact|channel|communication channel|line +inter-service support|1 +(noun)|logistic support|logistic assistance +inter-services intelligence|1 +(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency +inter vivos trust|1 +(noun)|living trust|trust +interact|1 +(verb)|act|move +interaction|2 +(noun)|action +(noun)|fundamental interaction|physical phenomenon +interactional|1 +(adj)|interactive|reciprocal |mutual +interactive|2 +(adj)|synergistic +(adj)|interactional|reciprocal |mutual +interactive multimedia|1 +(noun)|hypermedia|hypermedia system|interactive multimedia system|multimedia|multimedia system|object-oriented database management system +interactive multimedia system|1 +(noun)|hypermedia|hypermedia system|interactive multimedia|multimedia|multimedia system|object-oriented database management system +interagency support|1 +(noun)|interdepartmental support|logistic support|logistic assistance +interahamwe|1 +(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization|terrorist group|foreign terrorist organization|FTO +interbank loan|1 +(noun)|bank loan +interbrain|1 +(noun)|diencephalon|betweenbrain|thalmencephalon|neural structure +interbred|3 +(adj)|crossed|hybrid|intercrossed|crossbred +(adj)|crossbred|outbred +(adj)|inbred +interbreed|1 +(verb)|crossbreed|cross|hybridize|hybridise|breed +interbreeding|2 +(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|hybridizing|coupling|mating|pairing|conjugation|union|sexual union +(noun)|miscegenation|crossbreeding|reproduction|procreation|breeding|facts of life +intercalary|1 +(adj)|added +intercalary year|1 +(noun)|leap year|366 days|bissextile year|year|twelvemonth|yr +intercalate|1 +(verb)|add +intercalation|1 +(noun)|embolism|time interval|interval +intercapitular vein|1 +(noun)|vena intercapitalis|vein|vena|venous blood vessel +intercede|1 +(verb)|mediate|intermediate|liaise|arbitrate|negociate|negotiate|talk terms +intercellular|1 +(adj)|living thing|animate thing +intercellular substance|1 +(noun)|matrix|ground substance|body substance +intercept|3 +(noun)|point +(verb)|stop|catch|grab|take hold of +(verb)|wiretap|tap|bug|listen in|eavesdrop +interception|2 +(noun)|prevention|bar +(noun)|catch|grab|snatch|snap +interceptor|1 +(noun)|fighter|fighter aircraft|attack aircraft +intercession|2 +(noun)|prayer|petition|orison +(noun)|intervention|engagement|participation|involvement|involution +intercessor|1 +(noun)|mediator|go-between|intermediator|intermediary|negotiator|negotiant|treater +interchange|6 +(noun)|junction +(noun)|reciprocation|give-and-take|interaction +(noun)|exchange|commerce|commercialism|mercantilism +(verb)|exchange|change|transfer +(verb)|counterchange|transpose|change|alter|modify +(verb)|tack|switch|alternate|flip|flip-flop|change by reversal|turn|reverse +interchangeability|1 +(noun)|exchangeability|interchangeableness|fungibility|changeableness|changeability +interchangeable|3 +(adj)|complementary|reciprocal|reciprocal |mutual +(adj)|symmetrical |symmetric +(adj)|exchangeable|similar|standardized|standardised|replaceable +interchangeableness|1 +(noun)|exchangeability|interchangeability|fungibility|changeableness|changeability +interchurch|1 +(adj)|interdenominational|nonsectarian |unsectarian +intercollegiate|1 +(adj)|extramural +intercom|1 +(noun)|intercommunication system|communication system +intercom speaker|1 +(noun)|squawk box|squawker|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +intercommunicate|2 +(verb)|complect|interconnect|interlink +(verb)|communicate|interact +intercommunication|1 +(noun)|communication|communicating +intercommunication system|1 +(noun)|intercom|communication system +intercommunion|1 +(noun)|Communion|Holy Communion|sacramental manduction|manduction +interconnect|2 +(verb)|complect|interlink|connect|link|link up|join|unite +(verb)|interlink|connect|link|tie|link up +interconnected|2 +(adj)|interrelated|reticulate |reticulated|reticular +(adj)|coordinated|unified|integrated +interconnectedness|1 +(noun)|interconnection|connection|link|connectedness +interconnection|2 +(noun)|interconnectedness|connection|link|connectedness +(noun)|joining|connection|connexion +intercontinental|1 +(adj)|intercontinental |worldwide +intercontinental ballistic missile|1 +(noun)|ICBM|ballistic missile +intercostal|2 +(adj)|bone|os +(noun)|intercostal muscle|musculus intercostalis|skeletal muscle|striated muscle +intercostal artery|1 +(noun)|arteria intercostalis|artery|arteria|arterial blood vessel +intercostal muscle|1 +(noun)|intercostal|musculus intercostalis|skeletal muscle|striated muscle +intercostal vein|1 +(noun)|vena intercostalis|vein|vena|venous blood vessel +intercourse|2 +(noun)|social intercourse|intercommunication +(noun)|sexual intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +intercrossed|1 +(adj)|crossed|hybrid|interbred|crossbred +interdenominational|1 +(adj)|interchurch|nonsectarian |unsectarian +interdepartmental|1 +(adj)|interdepartmental |division +interdepartmental support|1 +(noun)|interagency support|logistic support|logistic assistance +interdepend|1 +(verb)|hang together|connect|link|tie|link up +interdependence|1 +(noun)|mutuality|interdependency|reciprocality|reciprocity +interdependency|1 +(noun)|mutuality|interdependence|reciprocality|reciprocity +interdependent|1 +(adj)|mutualist|mutually beneficial|dependent +interdict|4 +(noun)|censure|animadversion +(noun)|interdiction|court order|prohibition|ban|proscription +(verb)|destroy|destruct +(verb)|forbid|prohibit|proscribe|veto|disallow|command|require|compel +interdiction|2 +(noun)|prohibition +(noun)|interdict|court order|prohibition|ban|proscription +interdiction fire|1 +(noun)|fire|firing +interdisciplinary|1 +(adj)|knowledge domain|knowledge base +interest|10 +(noun)|involvement|curiosity|wonder +(noun)|interestingness|power|powerfulness +(noun)|sake|benefit|welfare +(noun)|fixed charge|fixed cost|fixed costs +(noun)|pastime|pursuit|diversion|recreation +(noun)|stake|share|portion|part|percentage +(noun)|interest group|social group +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|concern|occupy|worry +(verb)|matter to|refer|pertain|relate|concern|come to|bear on|touch|touch on +interest-bearing|1 +(adj)|fixed charge|fixed cost|fixed costs +interest expense|1 +(noun)|expense|disbursal|disbursement +interest group|1 +(noun)|interest|social group +interest rate|1 +(noun)|rate of interest|rate|charge per unit +interested|2 +(adj)|interested |curious|fascinated +(adj)|concerned|involved +interestedness|1 +(noun)|cognitive state|state of mind +interesting|1 +(adj)|interesting |absorbing|engrossing|fascinating|gripping|riveting|intriguing|newsworthy|unputdownable|exciting|stimulating +interestingly enough|1 +(adv)|curiously enough|funnily enough|oddly enough|strangely enough +interestingness|1 +(noun)|interest|power|powerfulness +interface|4 +(noun)|surface +(noun)|user interface|program|programme|computer program|computer programme +(noun)|overlap|convergence|intersection +(noun)|port|computer circuit +interfacial|1 +(adj)|surface +interfacial surface tension|1 +(noun)|interfacial tension|surface tension +interfacial tension|1 +(noun)|interfacial surface tension|surface tension +interfaith|1 +(adj)|religious +interfere|2 +(verb)|impede|hinder +(verb)|intervene|step in|interpose|interact +interference|5 +(noun)|intervention|foreign policy +(noun)|hindrance|act|human action|human activity +(noun)|noise|disturbance|trouble +(noun)|blocking|block|obstruction +(noun)|hindrance|hitch|preventive|preventative|encumbrance|incumbrance|obstruction|obstructor|obstructer|impediment|impedimenta +interfering|1 +(adj)|meddlesome|meddling|officious|busy|busybodied|intrusive +interferometer|1 +(noun)|measuring instrument|measuring system|measuring device +interferon|1 +(noun)|antiviral|antiviral agent|antiviral drug +intergalactic|1 +(adj)|collection|aggregation|accumulation|assemblage +intergalactic space|1 +(noun)|region|part +interim|2 +(adj)|impermanent |temporary +(noun)|lag|time interval|interval +interim overhaul|1 +(noun)|overhaul|inspection and repair|service +interior|8 +(adj)|interior |indoor|inside|indoor|inside +(adj)|home|internal|national|domestic +(adj)|inner|internal|inward +(adj)|internal +(adj)|midland|upcountry|inland +(noun)|inside|region|part +(noun)|inside|surface +(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department +interior angle|1 +(noun)|internal angle|angle +interior decoration|2 +(noun)|decor|decoration|ornament|ornamentation +(noun)|interior design|trade|craft +interior decorator|1 +(noun)|interior designer|designer|house decorator|room decorator|decorator|specialist|specializer|specialiser +interior department|1 +(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department +interior design|2 +(noun)|interior decoration|trade|craft +(noun)|architecture +interior designer|1 +(noun)|designer|interior decorator|house decorator|room decorator|decorator|specialist|specializer|specialiser +interior door|1 +(noun)|door +interior live oak|1 +(noun)|Quercus wislizenii|Quercus wizlizenii|live oak +interior monologue|1 +(noun)|prose +interior secretary|2 +(noun)|Secretary of the Interior|Interior Secretary|secretary +(noun)|Secretary of the Interior|Interior Secretary|secretaryship +interiorise|1 +(verb)|internalize|internalise|interiorize|impute|ascribe|assign|attribute +interiorize|1 +(verb)|internalize|internalise|interiorise|impute|ascribe|assign|attribute +interject|1 +(verb)|come in|interpose|put in|throw in|inject|interrupt|disrupt|break up|cut off +interjection|2 +(noun)|ejaculation|exclamation|exclaiming +(noun)|interposition|interpolation|interpellation|break|interruption|disruption|gap +interlace|2 +(verb)|intertwine|twine|entwine|enlace|lace|twist|twine|distort +(verb)|lock|interlock|hold|take hold +interlaced|1 +(adj)|fretted|latticed|latticelike|reticulate |reticulated|reticular +interlacing|1 +(adj)|interlinking|interlocking|interwoven|complex +interlaken|1 +(noun)|Interlaken|town +interlanguage|1 +(noun)|lingua franca|koine|language|linguistic communication +interlard|1 +(verb)|intersperse|insert|enclose|inclose|stick in|put in|introduce +interlayer|1 +(noun)|layer|bed +interleaf|1 +(noun)|leaf|folio +interleave|3 +(verb)|supply|provide|render|furnish +(verb)|intersperse +(verb)|intersperse|interlard +interleukin|1 +(noun)|lymphokine +interlineal|1 +(adj)|interlinear|text|textual matter +interlinear|1 +(adj)|interlineal|text|textual matter +interlingua|1 +(noun)|Interlingua|artificial language +interlingual rendition|1 +(noun)|translation|rendering|version|written record|written account +interlink|2 +(verb)|complect|interconnect|connect|link|link up|join|unite +(verb)|interconnect|connect|link|tie|link up +interlinking|1 +(adj)|interlacing|interlocking|interwoven|complex +interlock|4 +(noun)|mesh|meshing|interlocking|catch|grab|snatch|snap +(verb)|mesh|organize|organise|coordinate +(verb)|lock|interlace|hold|take hold +(verb)|lock|embrace|hug|bosom|squeeze +interlocking|3 +(adj)|interlacing|interlinking|interwoven|complex +(noun)|engagement|mesh|meshing|contact|impinging|striking +(noun)|mesh|meshing|interlock|catch|grab|snatch|snap +interlocutor|2 +(noun)|middleman|minstrel +(noun)|conversational partner|conversationalist|schmoozer +interlocutory|1 +(adj)|talk|talking +interlocutory injunction|1 +(noun)|temporary injunction|injunction|enjoining|enjoinment|cease and desist order +interlope|1 +(verb)|intervene|step in|interfere|interpose +interloper|1 +(noun)|intruder|trespasser|entrant|unwelcome person|persona non grata +interlude|3 +(noun)|time interval|interval +(noun)|intermezzo|entr'acte|show +(verb)|perform +intermarriage|2 +(noun)|exogamy|marriage|matrimony|union|spousal relationship|wedlock +(noun)|endogamy|inmarriage|marriage|matrimony|union|spousal relationship|wedlock +intermarry|1 +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +intermaxillary suture|1 +(noun)|sutura intermaxillaris|suture|sutura|fibrous joint +intermediary|1 +(noun)|mediator|go-between|intermediator|intercessor|negotiator|negotiant|treater +intermediate|4 +(adj)|intermediate |gray|grey|halfway|in-between|mediate|middle|junior|third-year|next-to-last|second|sophomore|second-year +(adj)|average|medium|moderate +(noun)|chemical +(verb)|intercede|mediate|liaise|arbitrate|negociate|negotiate|talk terms +intermediate host|1 +(noun)|host +intermediate temporal artery|1 +(noun)|arteria temporalis intermedia|temporal artery +intermediate vector bosons|1 +(noun)|gauge boson +intermediate wheatgrass|1 +(noun)|Agropyron intermedium|Elymus hispidus|wheatgrass|wheat-grass +intermediation|1 +(noun)|mediation|intervention|intercession +intermediator|1 +(noun)|mediator|go-between|intermediary|intercessor|negotiator|negotiant|treater +interment|1 +(noun)|burial|entombment|inhumation|sepulture|funeral +intermeshed|2 +(adj)|enmeshed|tangled +(adj)|engaged|meshed|geared +intermezzo|3 +(noun)|movement +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|interlude|entr'acte|show +interminable|1 +(adj)|endless|eternal|long +interminably|1 +(adv)|endlessly +intermingle|1 +(verb)|blend|intermix|immingle|mix|mingle|commix|unify|amalgamate +intermingled|1 +(adj)|amalgamated|mixed|integrated|blended +intermission|2 +(noun)|pause +(noun)|pause|break|interruption|suspension|time interval|interval +intermit|1 +(verb)|pause|break|interrupt|disrupt|break up|cut off +intermittence|1 +(noun)|intermittency|irregularity|unregularity +intermittency|1 +(noun)|intermittence|irregularity|unregularity +intermittent|2 +(adj)|sporadic +(adj)|periodic |periodical +intermittent claudication|1 +(noun)|lameness|limping|gimp|gimpiness|gameness|claudication +intermittent cramp|1 +(noun)|tetany|tetanilla|intermittent tetanus|apyretic tetanus|syndrome +intermittent tetanus|1 +(noun)|tetany|tetanilla|intermittent cramp|apyretic tetanus|syndrome +intermix|1 +(verb)|blend|immingle|intermingle|mix|mingle|commix|unify|amalgamate +intermixture|3 +(noun)|concoction|mixture|foodstuff|food product +(noun)|admixture|ingredient +(noun)|mix|commixture|admixture|mixture|mixing|combination|combining|compounding +intermolecular|1 +(adj)|unit|building block +intermural|1 +(adj)|extramural +intern|3 +(noun)|interne|houseman|medical intern|doctor|doc|physician|MD|Dr.|medico +(verb)|confine|detain +(verb)|work +internal|5 +(adj)|internal |inner|interior|internecine|intrinsic|inside|inside +(adj)|intragroup|intramural +(adj)|home|interior|national|domestic +(adj)|inner|interior|inward +(adj)|inner|intimate|intrinsic |intrinsical +internal-combustion engine|1 +(noun)|ICE|heat engine +internal angle|1 +(noun)|interior angle|angle +internal auditor|1 +(noun)|auditor +internal auditory artery|1 +(noun)|labyrinthine artery|artery of the labyrinth|artery|arteria|arterial blood vessel +internal auditory vein|1 +(noun)|labyrinthine vein|vein|vena|venous blood vessel +internal carotid artery|1 +(noun)|carotid artery|arteria carotis +internal cerebral vein|1 +(noun)|vena cerebrum internus|cerebral vein|vena cerebri +internal combustion|1 +(noun)|combustion|burning +internal control|1 +(noun)|control +internal drive|1 +(noun)|drive +internal ear|1 +(noun)|inner ear|labyrinth|sense organ|sensory receptor|receptor +internal iliac artery|1 +(noun)|hypogastric artery|iliac artery|arteria iliaca +internal iliac vein|1 +(noun)|hypogastric vein|iliac vein|vena iliaca +internal jugular vein|1 +(noun)|jugular vein|vena jugularis|jugular +internal maxillary artery|1 +(noun)|maxillary artery|arteria maxillaris +internal medicine|1 +(noun)|general medicine|medicine|medical specialty +internal organ|1 +(noun)|viscus|organ +internal representation|1 +(noun)|representation|mental representation|content|cognitive content|mental object +internal respiration|1 +(noun)|respiration|cellular respiration|metabolism|metabolic process|metastasis +internal revenue|1 +(noun)|tax income|taxation|tax revenue|revenue +internal revenue agent|1 +(noun)|tax collector|taxman|exciseman|collector of internal revenue|bureaucrat|administrative official +internal revenue service|1 +(noun)|Internal Revenue Service|IRS|agency|federal agency|government agency|bureau|office|authority +internal rhyme|1 +(noun)|rhyme|rime +internal secretion|1 +(noun)|hormone|endocrine|secretion +internal spermatic artery|1 +(noun)|testicular artery|arteria testicularis|artery|arteria|arterial blood vessel +internalisation|1 +(noun)|internalization|incorporation|learning|acquisition +internalise|1 +(verb)|internalize|interiorize|interiorise|impute|ascribe|assign|attribute +internalization|1 +(noun)|internalisation|incorporation|learning|acquisition +internalize|1 +(verb)|internalise|interiorize|interiorise|impute|ascribe|assign|attribute +internasal suture|1 +(noun)|sutura internasalis|suture|sutura|fibrous joint +international|3 +(adj)|international |global|planetary|world|worldwide|internationalist|internationalistic|supranational|multinational|transnational|foreign +(adj)|external|outside|foreign +(noun)|International|socialism|socialist economy +international affairs|1 +(noun)|world affairs|affairs +international ampere|1 +(noun)|ampere|current unit +international association of lions clubs|1 +(noun)|Lions Club|International Association of Lions clubs|service club +international atomic energy agency|1 +(noun)|International Atomic Energy Agency|IAEA|United Nations agency|UN agency +international bank for reconstruction and development|1 +(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency|UN agency +international candle|1 +(noun)|luminous intensity unit|candlepower unit +international civil aviation organization|1 +(noun)|International Civil Aviation Organization|ICAO|United Nations agency|UN agency +international court of justice|1 +(noun)|International Court of Justice|World Court|court|tribunal|judicature +international date line|1 +(noun)|dateline|date line|International Date Line|meridian|longitude|line of longitude +international development association|1 +(noun)|International Development Association|IDA|United Nations agency|UN agency +international finance corporation|1 +(noun)|International Finance Corporation|IFC|United Nations agency|UN agency +international flight|1 +(noun)|flight +international grandmaster|1 +(noun)|International Grandmaster|grandmaster +international intelligence agency|1 +(noun)|intelligence|intelligence service|intelligence agency +international islamic front for jihad against jews and crusaders|1 +(noun)|International Islamic Front for Jihad against Jews and Crusaders|terrorist organization|terrorist group|foreign terrorist organization|FTO +international jihad|1 +(noun)|jihad|jehad|war|warfare +international labor organization|1 +(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency|UN agency +international labour organization|1 +(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency|UN agency +international law|1 +(noun)|law of nations|law|jurisprudence +international law enforcement agency|1 +(noun)|administrative unit|administrative body +international logistic support|1 +(noun)|mutual aid|logistic support|logistic assistance +international maritime organization|1 +(noun)|International Maritime Organization|IMO|United Nations agency|UN agency +international monetary fund|1 +(noun)|International Monetary Fund|IMF|United Nations agency|UN agency +international morse code|1 +(noun)|Morse|Morse code|international Morse code|code +international nautical mile|1 +(noun)|nautical mile|mile|mi|naut mi|knot|air mile|nautical linear unit +international organisation|1 +(noun)|world organization|world organisation|international organization|global organization|alliance|coalition|alignment|alinement +international organization|1 +(noun)|world organization|world organisation|international organisation|global organization|alliance|coalition|alignment|alinement +international pitch|1 +(noun)|concert pitch|philharmonic pitch|pitch +international relations and security network|1 +(noun)|International Relations and Security Network|ISN|international intelligence agency +international scale|1 +(noun)|Celsius scale|centigrade scale|temperature scale +international society for krishna consciousness|1 +(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect|religious sect|religious order +international system|1 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +international system of units|1 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +international terrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +international wanted notice|1 +(noun)|International Wanted Notice|Red Notice|wanted notice|wanted poster +international waters|1 +(noun)|high sea|body of water|water +internationale|1 +(noun)|Internationale|hymn|anthem +internationalisation|1 +(noun)|internationalization|group action +internationalise|2 +(verb)|internationalize|control|command +(verb)|internationalize|change|alter|modify +internationalism|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|internationality|scope|range|reach|orbit|compass|ambit +internationalist|3 +(adj)|internationalistic|international +(noun)|advocate|advocator|proponent|exponent +(noun)|socialist +internationalistic|1 +(adj)|internationalist|international +internationality|1 +(noun)|internationalism|scope|range|reach|orbit|compass|ambit +internationalization|1 +(noun)|internationalisation|group action +internationalize|2 +(verb)|internationalise|control|command +(verb)|internationalise|change|alter|modify +interne|1 +(noun)|intern|houseman|medical intern|doctor|doc|physician|MD|Dr.|medico +internecine|2 +(adj)|internal +(adj)|mutually ruinous|bloody +internee|1 +(noun)|prisoner|captive +internet|1 +(noun)|Internet|Net|cyberspace|computer network +internet site|1 +(noun)|web site|site|computer|computing machine|computing device|data processor|electronic computer|information processing system +internist|1 +(noun)|specialist|medical specialist +internment|3 +(noun)|captivity|imprisonment|incarceration|immurement +(noun)|imprisonment|confinement +(noun)|impoundment|impounding|poundage|seizure +internment camp|1 +(noun)|prison camp|prisoner of war camp|POW camp|camp +internode|1 +(noun)|segment +internship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +internuncio|1 +(noun)|diplomat|diplomatist +interoception|1 +(noun)|sensitivity|sensitiveness|sensibility +interoceptive|1 +(adj)|sensitivity|sensitiveness|sensibility +interoceptor|1 +(noun)|enteroceptor|sense organ|sensory receptor|receptor +interoperability|1 +(noun)|ability +interoperable|1 +(adj)|practical +interparietal suture|1 +(noun)|sagittal suture|sutura sagittalis|suture|sutura|fibrous joint +interpellate|1 +(verb)|question|query +interpellation|2 +(noun)|order|rules of order|parliamentary law|parliamentary procedure +(noun)|interjection|interposition|interpolation|break|interruption|disruption|gap +interpenetrate|2 +(verb)|permeate|penetrate|perforate +(verb)|permeate|pervade|penetrate|diffuse|imbue|penetrate|perforate +interpenetration|2 +(noun)|penetration|incursion +(noun)|permeation|penetration +interpersonal|1 +(adj)|social +interpersonal chemistry|1 +(noun)|chemistry|alchemy|social relation +interphalangeal joint|1 +(noun)|hinge joint|ginglymus|ginglymoid joint +interphone|1 +(noun)|intercommunication system|intercom +interplanetary|1 +(adj)|celestial body|heavenly body +interplanetary dust|1 +(noun)|dust +interplanetary gas|1 +(noun)|plasma +interplanetary medium|1 +(noun)|interplanetary space +interplanetary space|1 +(noun)|region|part +interplay|1 +(noun)|interaction +interpol|1 +(noun)|Interpol|international law enforcement agency +interpolate|2 +(verb)|extrapolate|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|alter|falsify|edit|redact +interpolation|3 +(noun)|insertion|message|content|subject matter|substance +(noun)|calculation|computation|figuring|reckoning +(noun)|interjection|interposition|interpellation|break|interruption|disruption|gap +interpose|3 +(verb)|introduce +(verb)|interject|come in|put in|throw in|inject|interrupt|disrupt|break up|cut off +(verb)|intervene|step in|interfere|interact +interposition|2 +(noun)|interjection|interpolation|interpellation|break|interruption|disruption|gap +(noun)|placement|location|locating|position|positioning|emplacement +interpret|6 +(verb)|construe|see|understand +(verb)|explain|explicate +(verb)|render|perform|execute|do +(verb)|represent|re-create +(verb)|translate|render|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|understand|read|translate|understand +interpretable|1 +(adj)|explainable|explicable +interpretation|4 +(noun)|reading|version|representation|mental representation|internal representation +(noun)|rendition|rendering|performance +(noun)|explanation|account +(noun)|interpreting|rendition|rendering|explanation +interpretative|1 +(adj)|interpretive|instructive |informative +interpretative dance|1 +(noun)|interpretive dance|interpretive dancing|interpretative dancing|modern dance +interpretative dancing|1 +(noun)|interpretive dance|interpretive dancing|interpretative dance|modern dance +interpreted|1 +(adj)|taken|understood +interpreter|4 +(noun)|translator|mediator|go-between|intermediator|intermediary|intercessor +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|spokesperson|representative|voice|advocate|advocator|proponent|exponent +(noun)|interpretive program|program|programme|computer program|computer programme +interpreting|1 +(noun)|interpretation|rendition|rendering|explanation +interpretive|1 +(adj)|interpretative|instructive |informative +interpretive dance|1 +(noun)|interpretive dancing|interpretative dance|interpretative dancing|modern dance +interpretive dancing|1 +(noun)|interpretive dance|interpretative dance|interpretative dancing|modern dance +interpretive program|1 +(noun)|interpreter|program|programme|computer program|computer programme +interracial|2 +(adj)|racial +(adj)|mixed|integrated +interred|1 +(adj)|buried |inhumed|belowground +interreflection|1 +(noun)|reflection|reflexion +interregnum|1 +(noun)|interim|lag +interrelate|2 +(verb)|relate|be +(verb)|associate|tie in|relate|link|colligate|link up|connect +interrelated|1 +(adj)|interconnected|reticulate |reticulated|reticular +interrelatedness|1 +(noun)|interrelation|interrelationship|relation +interrelation|1 +(noun)|interrelationship|interrelatedness|relation +interrelationship|1 +(noun)|interrelation|interrelatedness|relation +interrogate|2 +(verb)|air|send|broadcast|beam|transmit +(verb)|question|ask +interrogation|4 +(noun)|question|interrogative|interrogative sentence|sentence +(noun)|transmission +(noun)|examination|interrogatory|questioning|inquiring +(noun)|question|inquiry|enquiry|query|questioning|inquiring +interrogation point|1 +(noun)|question mark|punctuation|punctuation mark +interrogative|4 +(adj)|mood|mode|modality +(adj)|interrogative +(noun)|question|interrogation|interrogative sentence|sentence +(noun)|interrogative mood|mood|mode|modality +interrogative mood|1 +(noun)|interrogative|mood|mode|modality +interrogative sentence|1 +(noun)|question|interrogation|interrogative|sentence +interrogatively|1 +(adv)|curiously|inquisitively +interrogator|1 +(noun)|inquisitor|inquirer|enquirer|questioner|querier|asker +interrogatory|2 +(adj)|interrogative +(noun)|interrogation|examination|questioning|inquiring +interrupt|4 +(verb)|disrupt|break up|cut off|break|break off|discontinue|stop +(verb)|disturb|act|move +(verb)|disrupt|chime in|cut in|put in|butt in|chisel in|barge in|break in +(verb)|break|end|terminate +interrupted|2 +(adj)|discontinued +(adj)|fitful|off-and-on|broken +interrupted fern|1 +(noun)|Osmunda clatonia|flowering fern|osmund +interrupter|1 +(noun)|device +interruption|3 +(noun)|break|disruption|gap|delay|holdup +(noun)|break|happening|occurrence|natural event +(noun)|pause|intermission|break|suspension|time interval|interval +interscholastic|1 +(adj)|interschool|extramural +interschool|1 +(adj)|interscholastic|extramural +intersect|1 +(verb)|cross|meet|ran into|encounter|run across|come across|see +intersectant|1 +(adj)|decussate|intersecting|crossed |across +intersecting|1 +(adj)|decussate|intersectant|crossed |across +intersection|6 +(noun)|intersection point|point of intersection|point +(noun)|crossroad|crossway|crossing|carrefour|junction +(noun)|set +(noun)|product|cartesian product|set +(noun)|overlap|convergence|representation|mental representation|internal representation +(noun)|joining|connection|connexion +intersection point|1 +(noun)|intersection|point of intersection|point +intersex|1 +(noun)|hermaphrodite|gynandromorph|androgyne|epicine|epicine person|bisexual|bisexual person +intersexual|2 +(adj)|sexual +(adj)|androgynous +interspecies|1 +(adj)|interspecies |interspecific +interspecific|1 +(adj)|interspecies +interspersal|1 +(noun)|interspersion|combination|combining|compounding +intersperse|2 +(verb)|put|set|place|pose|position|lay +(verb)|interlard|insert|enclose|inclose|stick in|put in|introduce +interspersion|1 +(noun)|interspersal|combination|combining|compounding +interstate|1 +(adj)|interstate +interstate commerce commission|1 +(noun)|Interstate Commerce Commission|ICC|independent agency +interstellar|1 +(adj)|celestial body|heavenly body +interstellar medium|1 +(noun)|interstellar space +interstellar space|1 +(noun)|region|part +interstice|2 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|opening +interstitial|1 +(adj)|opening +interstitial cell-stimulating hormone|1 +(noun)|luteinizing hormone|LH|ICSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +interstitial fluid|1 +(noun)|extracellular fluid|ECF +interstitial plasma cell pneumonia|1 +(noun)|pneumocytosis|pneumocystis pneumonia|pneumocystis carinii pneumonia|pneumonia +interstitial pneumonia|1 +(noun)|respiratory disease|respiratory illness|respiratory disorder +interstitial tissue|1 +(noun)|animal tissue|plant tissue +interstratify|1 +(verb)|stratify +intertidal|1 +(adj)|seashore|coast|seacoast|sea-coast +intertribal|1 +(adj)|social group +intertrigo|1 +(noun)|chafing +intertwine|3 +(verb)|twine|entwine|enlace|interlace|lace|twist|twine|distort +(verb)|tat|create from raw material|create from raw stuff +(verb)|loop|knit|entwine +intertwined|1 +(adj)|tangled +interval|4 +(noun)|time interval|measure|quantity|amount +(noun)|set +(noun)|separation|distance +(noun)|musical interval|musical notation +intervene|3 +(verb)|step in|interfere|interpose|interact +(verb)|lie +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +intervening|2 +(adj)|middle +(adj)|disjunctive +intervenor|1 +(noun)|party +intervention|3 +(noun)|intercession|engagement|participation|involvement|involution +(noun)|interference|foreign policy +(noun)|proceeding|legal proceeding|proceedings +interventricular foramen|1 +(noun)|foramen of Monro|Monro's foramen|foramen|hiatus +intervertebral|1 +(adj)|bone|os +intervertebral disc|1 +(noun)|intervertebral disk|disk|disc|saucer +intervertebral disk|1 +(noun)|intervertebral disc|disk|disc|saucer +intervertebral vein|1 +(noun)|vena intervertebralis|vein|vena|venous blood vessel +interview|5 +(noun)|interrogation|examination|interrogatory +(noun)|consultation|audience|conference|group discussion +(verb)|question|converse|discourse +(verb)|converse|discourse +(verb)|converse|discourse +interviewee|1 +(noun)|respondent|responder|answerer +interviewer|1 +(noun)|inquirer|enquirer|questioner|querier|asker +interweave|1 +(verb)|weave|twist|twine|distort +interwoven|1 +(adj)|interlacing|interlinking|interlocking|complex +intestate|1 +(adj)|intestate +intestinal|1 +(adj)|enteric|enteral|internal organ|viscus +intestinal artery|2 +(noun)|jejunal artery|artery|arteria|arterial blood vessel +(noun)|ileal artery|arteria ileum|artery|arteria|arterial blood vessel +intestinal bypass|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +intestinal colic|1 +(noun)|colic|pain|hurting +intestinal flora|1 +(noun)|microorganism +intestinal flu|1 +(noun)|gastroenteritis|stomach flu|inflammatory disease +intestinal juice|1 +(noun)|secretion +intestinal obstruction|1 +(noun)|ileus|obstruction|blockage|enteropathy +intestine|1 +(noun)|bowel|gut|internal organ|viscus +inti|1 +(noun)|Peruvian monetary unit +intifada|1 +(noun)|intifadah|rebellion|insurrection|revolt|rising|uprising +intifadah|1 +(noun)|intifada|rebellion|insurrection|revolt|rising|uprising +intima|1 +(noun)|membrane|tissue layer +intimacy|3 +(noun)|familiarity|closeness|friendliness +(noun)|affair|affaire|liaison|involvement|amour|sexual relationship +(noun)|closeness|belonging +intimal|1 +(adj)|membrane|tissue layer +intimate|9 +(adj)|close +(adj)|cozy|informal|friendly +(adj)|familiar|close +(adj)|sexual|sexy +(adj)|inner|internal|intrinsic |intrinsical +(adj)|intimate with|knowledgeable|knowledgeable about|experienced +(noun)|confidant|friend +(verb)|adumbrate|insinuate|hint|suggest +(verb)|suggest|imply +intimate apparel|1 +(noun)|lingerie|underwear|underclothes|underclothing|nightclothes|nightwear +intimate with|1 +(adj)|intimate|knowledgeable|knowledgeable about|experienced +intimately|2 +(adv)|closely|nearly +(adv)|well +intimation|2 +(noun)|hint|breath|suggestion|proposition|proffer +(noun)|inkling|glimmering|glimmer|suggestion +intimidate|2 +(verb)|frighten|fright|scare|affright +(verb)|restrain|discourage +intimidated|2 +(adj)|timid +(adj)|browbeaten|bullied|cowed|hangdog|afraid +intimidating|1 +(adj)|daunting|discouraging +intimidation|4 +(noun)|bullying|aggression +(noun)|discouragement|disheartenment|dismay +(noun)|fear|fearfulness|fright +(noun)|determent|deterrence|discouragement +into the bargain|1 +(adv)|in the bargain +into the wind|1 +(adv)|upwind|against the wind +intolerable|2 +(adj)|intolerable |bitter|impossible|insufferable|unacceptable|unsufferable|unbearable|unendurable|unsupportable|impermissible +(adj)|unacceptable +intolerably|1 +(adv)|unacceptably +intolerance|2 +(noun)|impatience +(noun)|attitude|mental attitude +intolerant|2 +(adj)|intolerant |bigoted|rigid|strict|uncharitable +(adj)|illiberal|narrow-minded |narrow +intolerant of|1 +(adj)|impatient of|impatient +intolerantly|1 +(adv)|illiberally +intonate|2 +(verb)|intone|pronounce|label|judge +(verb)|chant|intone|cantillate|sing +intonation|4 +(noun)|modulation|pitch contour|prosody|inflection +(noun)|singing|vocalizing +(noun)|chanting|singing|vocalizing +(noun)|music +intonation pattern|1 +(noun)|intonation|modulation|pitch contour +intone|3 +(verb)|tone|chant|talk|speak|utter|mouth|verbalize|verbalise +(verb)|chant|intonate|cantillate|sing +(verb)|intonate|pronounce|label|judge +intoned|1 +(adj)|chantlike|singsong|rhythmical |rhythmic +intoxicant|3 +(adj)|intoxicating|alcoholic +(noun)|alcohol|alcoholic beverage|inebriant|beverage|drink|drinkable|potable|drug of abuse|street drug +(noun)|drug +intoxicate|3 +(verb)|elate|lift up|uplift|pick up|stimulate|shake|shake up|excite|stir +(verb)|soak|inebriate|affect +(verb)|poison +intoxicated|2 +(adj)|intoxicated |drunk|inebriated|bacchanalian|bacchanal|bacchic|carousing|orgiastic|beery|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|bibulous|boozy|drunken|sottish|doped|drugged|narcotized|narcotised|half-seas-over|high|mellow|hopped-up|stoned +(adj)|drunk|excited +intoxicating|2 +(adj)|intoxicant|alcoholic +(adj)|heady|exciting +intoxication|3 +(noun)|poisoning|toxic condition|physiological state|physiological condition +(noun)|drunkenness|inebriation|inebriety|tipsiness|temporary state +(noun)|exhilaration|excitement +intra vires|1 +(adj)|intra vires +intracellular|1 +(adj)|intracellular |living thing|animate thing +intracellular fluid|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +intracerebral|1 +(adj)|neural structure +intracranial aneurysm|1 +(noun)|aneurysm|aneurism +intracranial cavity|1 +(noun)|cranial cavity|cavity|bodily cavity|cavum +intractability|1 +(noun)|intractableness|trait +intractable|1 +(adj)|intractable |recalcitrant|refractory|refractory|stubborn|uncontrollable|unmanageable|unmalleable|balking|balky|defiant|noncompliant|disobedient|stubborn|unmanageable|wild|untamed +intractableness|1 +(noun)|intractability|trait +intracutaneous|1 +(adj)|intradermal|intradermic|connective tissue|body covering +intradepartmental|1 +(adj)|intradepartmental |division +intradermal|1 +(adj)|intradermic|intracutaneous|connective tissue|body covering +intradermal injection|1 +(noun)|injection|shot +intradermal test|1 +(noun)|subcutaneous test|skin test +intradermic|1 +(adj)|intradermal|intracutaneous|connective tissue|body covering +intrados|1 +(noun)|curve|curved shape +intragroup|1 +(adj)|internal|intramural +intralinguistic|1 +(adj)|communication +intramolecular|1 +(adj)|unit|building block +intramural|1 +(adj)|intramural |internal|intragroup +intramuscular|1 +(adj)|contractile organ|contractor +intramuscular injection|1 +(noun)|injection|shot +intranet|1 +(noun)|computer network +intransigence|1 +(noun)|intransigency|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|self-will +intransigency|1 +(noun)|intransigence|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|self-will +intransigent|1 +(adj)|adamant|adamantine|inexorable|inflexible +intransitive|1 +(adj)|intransitive +intransitive verb|1 +(noun)|intransitive verb form|verb +intransitive verb form|1 +(noun)|intransitive verb|verb +intransitiveness|1 +(noun)|intransitivity|grammatical relation +intransitivise|1 +(verb)|detransitivize|detransitivise|intransitivize|change|alter|modify +intransitivity|1 +(noun)|intransitiveness|grammatical relation +intransitivize|1 +(verb)|detransitivize|detransitivise|intransitivise|change|alter|modify +intraocular lens|1 +(noun)|lens|lense|lens system +intraocular pressure|1 +(noun)|pressure|pressure level|force per unit area +intrapulmonary|1 +(adj)|respiratory organ +intraspecies|1 +(adj)|intraspecies |intraspecific +intraspecific|1 +(adj)|intraspecies +intrastate|1 +(adj)|intrastate +intrauterine device|1 +(noun)|IUD|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +intravasation|1 +(noun)|injury|hurt|harm|trauma +intravenous|1 +(adj)|endovenous|blood vessel +intravenous anesthetic|1 +(noun)|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +intravenous drip|1 +(noun)|drip|trickle|dribble +intravenous feeding|1 +(noun)|IV|feeding|alimentation +intravenous injection|1 +(noun)|injection|shot +intravenous pyelogram|1 +(noun)|IVP|pyelogram +intravenous pyelography|1 +(noun)|IVP|pyelography +intraventricular|1 +(adj)|cavity|bodily cavity|cavum +intrench|1 +(verb)|entrench|fasten|fix|secure +intrenchment|1 +(noun)|entrenchment|fortification|munition +intrepid|1 +(adj)|audacious|brave|dauntless|fearless|unfearing|bold +intrepidity|1 +(noun)|dauntlessness|courage|courageousness|bravery +intrepidly|1 +(adv)|fearlessly|dauntlessly +intricacy|1 +(noun)|elaborateness|elaboration|involution|complexity|complexness +intricate|1 +(adj)|Byzantine|convoluted|involved|knotty|labyrinthine|tangled|tortuous|complex +intricately|1 +(adv)|elaborately|in an elaborate way +intrigue|4 +(noun)|machination|plot|secret plan|game +(noun)|love affair|romance +(verb)|fascinate|matter to|interest +(verb)|scheme|connive|plot +intriguer|1 +(noun)|designer|planner|contriver|deviser +intriguing|2 +(adj)|challenging|provocative +(adj)|interesting +intrinsic|2 +(adj)|intrinsic |intrinsical|built-in|constitutional|inbuilt|inherent|integral|inner|internal|intimate|essential|inalienable|unalienable +(adj)|internal +intrinsic factor|1 +(noun)|factor +intrinsic fraud|1 +(noun)|fraud +intrinsical|1 +(adj)|intrinsic |built-in|constitutional|inbuilt|inherent|integral|inner|internal|intimate|essential|inalienable|unalienable +intrinsically|1 +(adv)|per se|as such|in and of itself +intro|2 +(noun)|presentation|introduction|informing|making known +(noun)|passage|musical passage +introduce|10 +(verb)|present|acquaint|inform +(verb)|innovate|initiate|pioneer +(verb)|insert|enclose|inclose|stick in|put in|put|set|place|pose|position|lay +(verb)|bring in +(verb)|establish|give +(verb)|insert|infix|enter|attach +(verb)|bring out|present|acquaint +(verb)|project|propose +(verb)|precede|preface|premise|state|say|tell +(verb)|inaugurate|usher in|begin|lead off|start|commence +introduction|7 +(noun)|section|subdivision +(noun)|debut|first appearance|launching|unveiling|entry|beginning|start|commencement +(noun)|presentation|intro|informing|making known +(noun)|textbook|text|text edition|schoolbook|school text +(noun)|proposal +(noun)|insertion|intromission|movement +(noun)|initiation|founding|foundation|institution|origination|creation|innovation|instauration|beginning|start|commencement +introductory|3 +(adj)|opening +(adj)|basic|first +(adj)|prefatorial|prefatory|preceding +introitus|1 +(noun)|orifice|opening|porta +introject|2 +(noun)|value +(verb)|change +introjected|1 +(adj)|integrated +introjection|2 +(noun)|internalization|internalisation|incorporation +(noun)|internalization|internalisation|incorporation +intromission|1 +(noun)|insertion|introduction|movement +intromit|1 +(verb)|admit|allow in|let in|permit|allow|let|countenance +intron|1 +(noun)|deoxyribonucleic acid|desoxyribonucleic acid|DNA +intropin|1 +(noun)|dopamine|Dopastat|Intropin|monoamine neurotransmitter +introspect|1 +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +introspection|1 +(noun)|self-contemplation|self-examination|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +introspective|1 +(adj)|introspective |introverted|self-examining +introspectiveness|1 +(noun)|thoughtfulness +introuvable|1 +(adj)|absent +introversion|3 +(noun)|invagination|condition +(noun)|invagination|intussusception|infolding|organic process|biological process +(noun)|unsociability|unsociableness +introversive|1 +(adj)|introversive |introvertive|introvertish|shut-in|unsociable +introvert|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|invaginate|draw in|retract +(verb)|change|alter|modify +introverted|1 +(adj)|introspective |self-examining +introvertish|1 +(adj)|shut-in|introversive |introvertive +introvertive|1 +(adj)|introversive |introvertish|shut-in|unsociable +intrude|3 +(verb)|irrupt|enter|come in|get into|get in|go into|go in|move into|intrude on +(verb)|trespass|transgress|offend|infract|violate|go against|breach|break +(verb)|obtrude|inflict|bring down|visit|impose +intrude into|1 +(verb)|poke into|meddle with|horn in|intervene|step in|interfere|interpose +intrude on|1 +(verb)|invade|obtrude upon|encroach upon|enter|come in|get into|get in|go into|go in|move into +intruder|1 +(noun)|interloper|trespasser|entrant|unwelcome person|persona non grata +intruding|1 +(adj)|intrusive +intrusion|5 +(noun)|invasion|encroachment|entrance|entering +(noun)|entrance|entering|entry|ingress|incoming +(noun)|geological process|geologic process +(noun)|rock|stone +(noun)|trespass|encroachment|violation|usurpation|wrongdoing|wrongful conduct|misconduct|actus reus +intrusive|3 +(adj)|intrusive |encroaching|invasive|trespassing|interfering|meddlesome|meddling|officious|busy|busybodied|uninvited +(adj)|intrusive |irruptive|eruptive|plutonic +(adj)|intrusive |intruding|concave +intrusiveness|1 +(noun)|meddlesomeness|officiousness|aggressiveness +intrust|1 +(verb)|entrust|trust|confide|commit|pass|hand|reach|pass on|turn over|give +intubate|1 +(verb)|cannulate|cannulize|cannulise|canulate|insert|infix|enter|introduce +intubation|1 +(noun)|cannulation|canulation|cannulization|cannulisation|canulization|canulisation|insertion|introduction|intromission +intuit|1 +(verb)|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +intuition|2 +(noun)|basic cognitive process +(noun)|hunch|suspicion|impression|feeling|belief|notion|opinion +intuitionism|1 +(noun)|philosophical doctrine|philosophical theory +intuitionist|1 +(adj)|philosophical doctrine|philosophical theory +intuitive|2 +(adj)|spontaneous |self-generated +(adj)|nonrational|visceral|illogical |unlogical +intuitive feeling|1 +(noun)|feeling|intuition +intumesce|2 +(verb)|bubble up|surface|come up|rise up|rise +(verb)|swell|swell up|tumefy|tumesce|expand +intumescence|2 +(noun)|intumescency|swelling|puffiness|lump +(noun)|intumescency|swelling|chemical process|chemical change|chemical action +intumescency|2 +(noun)|intumescence|swelling|puffiness|lump +(noun)|intumescence|swelling|chemical process|chemical change|chemical action +intussuscept|1 +(verb)|invaginate|introvert +intussusception|2 +(noun)|invagination|introversion|infolding|organic process|biological process +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +inuit|1 +(noun)|Eskimo|Esquimau|Inuit|Indian|North American Indian|American Indian|Red Indian +inula|1 +(noun)|herb|herbaceous plant +inula helenium|1 +(noun)|elecampane|Inula helenium|inula +inulin|1 +(noun)|polysaccharide|polyose +inunct|1 +(verb)|anoint|oil|anele|embrocate|bless +inunction|1 +(noun)|unction|anointing|anointment|religious ceremony|religious ritual +inundate|2 +(verb)|deluge|flood|swamp|fill|fill up|make full +(verb)|deluge|submerge|flood +inundated|2 +(adj)|flooded|overcome|overpowered|overwhelmed|swamped|engulfed|powerless |weak +(adj)|afloat|awash|flooded|overflowing|full +inundation|2 +(noun)|flood|deluge|alluvion|geological phenomenon +(noun)|flood|deluge|torrent|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew +inure|1 +(verb)|harden|indurate|habituate|accustom +inured|1 +(adj)|enured|hardened|tough |toughened +inutile|1 +(adj)|unprofitable|useless +inutility|1 +(noun)|uselessness|unusefulness|quality +invade|4 +(verb)|occupy|attack|assail +(verb)|intrude on|obtrude upon|encroach upon|enter|come in|get into|get in|go into|go in|move into +(verb)|overrun|infest|inhabit|occupy +(verb)|interpenetrate|permeate +invader|1 +(noun)|encroacher|intruder|interloper|trespasser +invading|1 +(adj)|incursive|invasive|offensive +invaginate|2 +(verb)|sheathe +(verb)|introvert|draw in|retract +invagination|2 +(noun)|introversion|condition +(noun)|introversion|intussusception|infolding|organic process|biological process +invalid|5 +(adj)|invalid |bad|uncollectible|fallacious|unsound|false|invalidated|nullified|null|void|sophistic|sophistical|specious|spurious|illegitimate +(adj)|expired +(noun)|shut-in|sick person|diseased person|sufferer +(verb)|remove +(verb)|disable|incapacitate|handicap|injure|wound +invalidate|4 +(verb)|annul|quash|void|avoid|nullify|cancel|strike down +(verb)|cancel|score|mark +(verb)|nullify|negate|contradict +(verb)|void|vitiate|change|alter|modify +invalidated|1 +(adj)|nullified|invalid +invalidating|1 +(adj)|disconfirming|unsupportive +invalidation|1 +(noun)|annulment|dissolution|breakup +invalidator|1 +(noun)|voider|nullifier|official|functionary +invalidism|1 +(noun)|ill health|unhealthiness|health problem +invalidity|1 +(noun)|invalidness|illogicality|illogicalness|illogic +invalidness|1 +(noun)|invalidity|illogicality|illogicalness|illogic +invaluable|1 +(adj)|priceless|valuable +invaluableness|1 +(noun)|preciousness|pricelessness|valuableness|value +invar|1 +(noun)|Invar|alloy|metal +invariability|2 +(noun)|evenness|regularity +(noun)|invariableness|invariance|changelessness|unchangeability|unchangeableness|unchangingness +invariable|1 +(adj)|invariable |changeless|constant|invariant|steady|unvarying|fixed-income|hard-and-fast|strict|invariant|consistent|constant +invariableness|1 +(noun)|invariability|invariance|changelessness|unchangeability|unchangeableness|unchangingness +invariance|1 +(noun)|invariability|invariableness|changelessness|unchangeability|unchangeableness|unchangingness +invariant|2 +(adj)|invariable +(adj)|changeless|constant|steady|unvarying|invariable +invasion|3 +(noun)|penetration|incursion +(noun)|encroachment|intrusion|entrance|entering +(noun)|spread|spreading +invasion of iwo|1 +(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault +invasion of privacy|1 +(noun)|tort|civil wrong +invasive|4 +(adj)|invasive +(adj)|invasive |aggressive|fast-growing +(adj)|incursive|invading|offensive +(adj)|encroaching|trespassing|intrusive +invective|1 +(noun)|vituperation|vitriol|abuse|insult|revilement|contumely|vilification +inveigh|2 +(verb)|rail|complain|kick|plain|sound off|quetch|kvetch +(verb)|declaim|protest +inveigle|1 +(verb)|wheedle|cajole|palaver|blarney|coax|sweet-talk|persuade +invent|2 +(verb)|contrive|devise|excogitate|formulate|forge|create by mental act|create mentally +(verb)|fabricate|manufacture|cook up|make up|think up|think of|dream up|hatch|concoct +invented|1 +(adj)|fabricated|fancied|fictional|fictitious|made-up|unreal +invention|3 +(noun)|innovation|excogitation|conception|design|creativity|creativeness|creative thinking +(noun)|innovation|creation +(noun)|creating by mental acts +inventive|1 +(adj)|imaginative|ingenious|creative |originative +inventiveness|1 +(noun)|ingeniousness|ingenuity|cleverness|creativity|creativeness|creative thinking +inventor|1 +(noun)|discoverer|artificer|creator +inventory|6 +(noun)|stock list|list|listing +(noun)|stock|merchandise|wares|product +(noun)|register +(noun)|armory|armoury|resource|resourcefulness|imagination +(noun)|inventorying|stocktaking|listing|itemization|itemisation +(verb)|list +inventory-clearance sale|1 +(noun)|clearance sale|sale|cut-rate sale|sales event +inventory accounting|1 +(noun)|accountancy|accounting +inventory control|1 +(noun)|internal control +inventory item|1 +(noun)|item|point +inventorying|1 +(noun)|inventory|stocktaking|listing|itemization|itemisation +inverse|3 +(adj)|reverse|backward +(adj)|inverse |reciprocal +(noun)|opposite|opposition|oppositeness +inverse function|1 +(noun)|function|mathematical function +inversely|1 +(adv)|reciprocally +inversion|9 +(noun)|atmospheric phenomenon +(noun)|abnormality|abnormalcy|abnormal condition +(noun)|chemical process|chemical change|chemical action +(noun)|mutation|genetic mutation|chromosomal mutation +(noun)|anastrophe|rhetorical device +(noun)|variation +(noun)|sexual inversion|homosexuality|homosexualism|homoeroticism|gayness +(noun)|upending|motion|movement|move|motility +(noun)|eversion|everting|motion|movement|move|motility +invert|2 +(verb)|change|alter|modify +(verb)|reverse|change|alter|modify +invert soap|1 +(noun)|cationic detergent|detergent +invert sugar|1 +(noun)|carbohydrate|saccharide|sugar +invertase|1 +(noun)|saccharase|sucrase|disaccharidase +invertebrate|2 +(adj)|invertebrate +(noun)|animal|animate being|beast|brute|creature|fauna +invertebrate foot|1 +(noun)|foot|organ +inverted|2 +(adj)|upside-down|turned +(adj)|anatropous +inverted comma|1 +(noun)|quotation mark|quote|punctuation|punctuation mark +inverted hang|1 +(noun)|hang +inverted pleat|1 +(noun)|pleat|plait +inverter|1 +(noun)|electrical converter +invertible|1 +(adj)|invertible +invest|5 +(verb)|put|commit|place|spend|expend|drop +(verb)|endow|indue|gift|empower|endue|enable +(verb)|clothe|adorn|equip|fit|fit out|outfit +(verb)|vest|enthrone|install +(verb)|induct|seat|install +invested|1 +(adj)|invested with|endowed +invested with|1 +(adj)|invested|endowed +investigate|2 +(verb)|look into|analyze|analyse|study|examine|canvass|canvas +(verb)|inquire|enquire|probe|examine +investigating|1 +(noun)|investigation|work +investigation|2 +(noun)|probe|inquiry|enquiry|research +(noun)|investigating|work +investigative|1 +(adj)|fact-finding|investigatory|inquiring +investigator|3 +(noun)|research worker|researcher|scientist|man of science +(noun)|expert +(noun)|detective|tec|police detective|policeman|police officer|officer +investigatory|1 +(adj)|fact-finding|investigative|inquiring +investing|1 +(noun)|investment|finance +investiture|2 +(noun)|coronation|enthronement|enthronization|enthronisation|initiation|induction|installation +(noun)|investment|promotion +investment|5 +(noun)|investing|finance +(noun)|investment funds|assets +(noun)|skin|tegument|cutis +(noun)|dressing|grooming +(noun)|investiture|promotion +investment adviser|1 +(noun)|investment advisor|adviser|advisor|consultant +investment advisor|1 +(noun)|investment adviser|adviser|advisor|consultant +investment banker|1 +(noun)|underwriter|agent|factor|broker +investment company|1 +(noun)|investment trust|investment firm|fund|nondepository financial institution +investment firm|1 +(noun)|investment company|investment trust|fund|nondepository financial institution +investment funds|1 +(noun)|investment|assets +investment letter|1 +(noun)|letter of intent +investment trust|1 +(noun)|investment company|investment firm|fund|nondepository financial institution +investor|1 +(noun)|capitalist +investors club|1 +(noun)|club|society|guild|gild|lodge|order +inveterate|1 +(adj)|chronic|confirmed|habitual|addicted +inveterately|1 +(adv)|chronically +invidia|1 +(noun)|envy|mortal sin|deadly sin +invidious|1 +(adj)|discriminatory|unfavorable |unfavourable +invigilate|1 +(verb)|proctor|watch|observe|follow|watch over|keep an eye on +invigilation|1 +(noun)|supervision|supervising|superintendence|oversight +invigilator|1 +(noun)|proctor|monitor +invigorate|4 +(verb)|inspire|animate|enliven|exalt|stimulate|shake|shake up|excite|stir +(verb)|quicken|stimulate|excite +(verb)|enliven|liven|liven up|animate|stimulate|arouse|brace|energize|energise|perk up +(verb)|reinvigorate|stimulate|arouse|brace|energize|energise|perk up +invigorated|1 +(adj)|fresh|refreshed|reinvigorated|rested +invigorating|1 +(adj)|invigorating |animating|enlivening|bracing|brisk|energizing|energising|fresh|refreshing|refreshful|tonic|corroborant|exhilarating|stimulating|fortifying|strengthening|life-giving|vitalizing|renewing|restorative|reviving|revitalizing|revitalising|stimulating +invigoration|2 +(noun)|animation|spiritedness|brio|vivification|activeness|activity +(noun)|vivification|animation|energizing|activating|activation +invigorator|1 +(noun)|quickener|enlivener|agent +invincibility|1 +(noun)|indomitability|strength +invincible|1 +(adj)|unbeatable|unvanquishable|unconquerable +invincible armada|1 +(noun)|The Armada|Spanish Armada|Invincible Armada|armada +inviolable|4 +(adj)|inviolable |unassailable|untouchable|unbreakable +(adj)|impregnable|secure|strong|unassailable|unattackable|invulnerable +(adj)|inviolate|sacrosanct|sacred +(adj)|absolute|infrangible|inalienable |unalienable +inviolate|2 +(adj)|intact|uninjured +(adj)|inviolable|sacrosanct|sacred +invirase|1 +(noun)|saquinavir|Invirase|protease inhibitor|PI +invisibility|1 +(noun)|invisibleness|physical property +invisible|2 +(adj)|invisible |unseeable|camouflaged|concealed|hidden|out of sight|infrared|lightless|ultraviolet|undetectable|unseen|nonvisual|occult|imperceptible|unperceivable|covert +(adj)|inconspicuous |obscure|unnoticeable +invisible balance|1 +(noun)|balance +invisibleness|1 +(noun)|invisibility|physical property +invitation|2 +(noun)|request|asking|letter|missive +(noun)|allure|allurement|temptingness +invitational|1 +(adj)|invited +invitatory|1 +(adj)|inviting +invite|9 +(noun)|invitation +(verb)|ask for|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|ask over|ask round|request|bespeak|call for|quest +(verb)|tempt|stimulate|shake|shake up|excite|stir +(verb)|bid|request +(verb)|pay for|interact|invite out +(verb)|ask in|request|bespeak|call for|quest +(verb)|call for|request|bespeak|call for|quest +(verb)|receive|take in +invite out|1 +(verb)|ask out|take out|request|bespeak|call for|quest +invited|2 +(adj)|invited |invitational|solicited|welcome +(adj)|wanted|welcome +invitee|1 +(noun)|guest|visitor|visitant +inviting|1 +(adj)|inviting |invitatory|tantalizing|tantalising|tempting|tantalizing|tantalising|attractive +invitingly|1 +(adv)|tantalizingly +invocation|4 +(noun)|supplication|prayer|petition|orison +(noun)|incantation|conjuration +(noun)|conjuring|conjuration|conjury|magic +(noun)|implementation|effectuation +invoice|2 +(noun)|bill|account|statement|financial statement +(verb)|charge|bill +invoke|3 +(verb)|raise|conjure|conjure up|evoke|stir|call down|arouse|bring up|put forward|call forth|make|create +(verb)|appeal|mention|advert|bring up|cite|name|refer +(verb)|appeal|request|bespeak|call for|quest +involucrate|1 +(adj)|bract +involucre|1 +(noun)|bract +involuntary|2 +(adj)|involuntary |nonvoluntary|unvoluntary|driven|goaded|forced|unconscious|unwilled|unwilling|unconscious|unwilling +(adj)|involuntary |automatic|reflex|reflexive|autonomic|vegetative +involuntary muscle|1 +(noun)|smooth muscle|muscle|musculus +involuntary trust|1 +(noun)|constructive trust|implied trust +involute|2 +(adj)|rolled|coiled +(adj)|coiled +involution|6 +(noun)|organic process|biological process +(noun)|construction|grammatical construction|expression +(noun)|elaborateness|elaboration|intricacy|complexity|complexness +(noun)|engagement|participation|involvement|group action +(noun)|exponentiation|mathematical process|mathematical operation|operation +(noun)|enfolding|change of shape +involutional depression|1 +(noun)|major depressive episode +involve|8 +(verb)|affect|regard|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|admit|let in|include +(verb)|imply|necessitate|ask|postulate|need|require|take|call for|demand +(verb)|necessitate|ask|postulate|need|require|take|call for|demand +(verb)|include +(verb)|envelop|enfold|enwrap|wrap|enclose +(verb)|absorb|engross|engage|occupy +(verb)|complicate|refine|rarify|elaborate +involved|5 +(adj)|involved |active|participating|caught up|concerned|interested|embroiled|entangled|engaged|implicated|concerned|neck-deep|up to my neck|up to your neck|up to her neck|up to his neck|up to our necks|up to their necks +(adj)|mired|encumbered +(adj)|involved with|attached |committed +(adj)|Byzantine|convoluted|intricate|knotty|labyrinthine|tangled|tortuous|complex +(adj)|enclosed +involved with|1 +(adj)|involved|attached |committed +involvement|5 +(noun)|engagement|participation|involution|group action +(noun)|connection|connexion|connectedness +(noun)|interest|curiosity|wonder +(noun)|affair|affaire|intimacy|liaison|amour|sexual relationship +(noun)|participation|condition|status +invulnerability|2 +(noun)|impregnability|safety +(noun)|strength +invulnerable|1 +(adj)|invulnerable |airtight|air-tight|bombproof|shellproof|defendable|defensible|entrenched|impregnable|inviolable|secure|strong|unassailable|unattackable|tight|untouchable|protected|secure|safe|secure|unconquerable +inward|4 +(adj)|inward |indwelling|inmost|innermost|inner|interior|internal|secret|private|self-whispered +(adj)|arriving|inbound|incoming +(adv)|inwards +(adv)|in|inwards +inward-developing|1 +(adj)|centripetal +inward-moving|1 +(adj)|centripetal +inwardly|1 +(adv)|inside +inwardness|4 +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|cognitive state|state of mind +(noun)|position|spatial relation +(noun)|introversion +inwards|2 +(adv)|in|inward +(adv)|inward +inweave|1 +(verb)|weave|interweave +inwrought|1 +(adj)|adorned |decorated +io|2 +(noun)|Io|maid|maiden +(noun)|Io|Galilean satellite|Galilean +io moth|1 +(noun)|Automeris io|saturniid|saturniid moth +iodic acid|1 +(noun)|acid +iodide|1 +(noun)|halide +iodin|1 +(noun)|iodine|I|atomic number 53|chemical element|element|halogen +iodinate|1 +(verb)|change|alter|modify +iodinated|1 +(adj)|iodized|iodised|chemical element|element|halogen +iodinated protein|1 +(noun)|iodoprotein|protein +iodinating|1 +(adj)|iodinating +iodination|1 +(noun)|chemical process|chemical change|chemical action +iodine|2 +(noun)|iodin|I|atomic number 53|chemical element|element|halogen +(noun)|tincture of iodine|tincture|antiseptic +iodine-125|1 +(noun)|iodine|iodin|I|atomic number 53|radioisotope +iodine-131|1 +(noun)|iodine|iodin|I|atomic number 53|radioisotope +iodise|2 +(verb)|iodize|process|treat +(verb)|iodize|treat|care for +iodised|1 +(adj)|iodinated|iodized|chemical element|element|halogen +iodize|2 +(verb)|iodise|process|treat +(verb)|iodise|treat|care for +iodized|1 +(adj)|iodinated|iodised|chemical element|element|halogen +iodoamino acid|1 +(noun)|amino acid|aminoalkanoic acid +iodochlorhydroxyquin|1 +(noun)|Clioquinol|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +iodocompound|1 +(noun)|compound|chemical compound +iodoform|2 +(noun)|tri-iodomethane|haloform +(noun)|triiodomethane|antiseptic +iodoprotein|1 +(noun)|iodinated protein|protein +iodopsin|1 +(noun)|photopigment +iodothyronine|1 +(noun)|iodoamino acid +iodotyrosine|1 +(noun)|iodoamino acid +ion|1 +(noun)|particle +ion beam|1 +(noun)|inoic beam|particle beam +ion engine|1 +(noun)|reaction-propulsion engine|reaction engine +ion exchange|1 +(noun)|natural process|natural action|action|activity +ion pump|1 +(noun)|air pump|vacuum pump +ionate|1 +(verb)|change|alter|modify +ionesco|1 +(noun)|Ionesco|Eugene Ionesco|dramatist|playwright +ionia|1 +(noun)|Ionia|geographical area|geographic area|geographical region|geographic region +ionian|1 +(noun)|Ionian|Greek|Hellene +ionian order|1 +(noun)|Ionic order|Ionian order|order +ionian sea|1 +(noun)|Ionian Sea|sea +ionic|3 +(adj)|ionic |particle +(adj)|ionic +(noun)|Ionic|Ancient Greek +ionic bond|1 +(noun)|electrovalent bond|electrostatic bond|chemical bond|bond +ionic charge|1 +(noun)|constant +ionic medication|1 +(noun)|iontophoresis|iontotherapy|electromotive drug administration|EMDA|therapy +ionic order|1 +(noun)|Ionic order|Ionian order|order +ionisation|2 +(noun)|ionization|condition|status +(noun)|ionization|natural process|natural action|action|activity +ionise|2 +(verb)|ionize|change +(verb)|ionize|change state|turn +ionised|1 +(adj)|ionized |ionizing|ionising +ionising|1 +(adj)|ionizing|ionized |ionised +ionization|2 +(noun)|ionisation|condition|status +(noun)|ionisation|natural process|natural action|action|activity +ionization chamber|1 +(noun)|ionization tube|measuring instrument|measuring system|measuring device +ionization tube|1 +(noun)|ionization chamber|measuring instrument|measuring system|measuring device +ionize|2 +(verb)|ionise|change +(verb)|ionise|change state|turn +ionized|1 +(adj)|ionized |ionised|ionizing|ionising +ionizing|1 +(adj)|ionising|ionized |ionised +ionizing radiation|1 +(noun)|radiation +ionophoresis|1 +(noun)|electrophoresis|cataphoresis|dielectrolysis|natural process|natural action|action|activity +ionosphere|1 +(noun)|region|part +ionospheric wave|1 +(noun)|sky wave +iontophoresis|1 +(noun)|ionic medication|iontotherapy|electromotive drug administration|EMDA|therapy +iontotherapy|1 +(noun)|iontophoresis|ionic medication|electromotive drug administration|EMDA|therapy +iosif vissarionovich dzhugashvili|1 +(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist|commie +iota|2 +(noun)|shred|scintilla|whit|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +(noun)|letter|letter of the alphabet|alphabetic character +iou|1 +(noun)|IOU|note|promissory note|note of hand +iowa|3 +(noun)|Iowa|Ioway|Sioux|Siouan +(noun)|Iowa|Hawkeye State|IA|American state +(noun)|Iowa|Ioway|Chiwere +iowa crab|1 +(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple|crab apple|crabapple +iowa crab apple|1 +(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple|crab apple|crabapple +iowan|1 +(noun)|Iowan|American +ioway|2 +(noun)|Iowa|Ioway|Sioux|Siouan +(noun)|Iowa|Ioway|Chiwere +ip|1 +(noun)|information science|informatics|information processing|IP|science|scientific discipline +ipecac|1 +(noun)|emetic|vomit|vomitive|nauseant +ipidae|1 +(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family +ipo|1 +(noun)|initial public offering|IPO|initial offering|commerce|commercialism|mercantilism +ipomoea|1 +(noun)|Ipomoea|genus Ipomoea|dicot genus|magnoliopsid genus +ipomoea alba|1 +(noun)|moonflower|belle de nuit|Ipomoea alba|morning glory +ipomoea batatas|1 +(noun)|sweet potato|sweet potato vine|Ipomoea batatas|morning glory +ipomoea coccinea|1 +(noun)|red morning-glory|star ipomoea|Ipomoea coccinea|morning glory +ipomoea fastigiata|1 +(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +ipomoea imperialis|1 +(noun)|imperial Japanese morning glory|Ipomoea imperialis|morning glory +ipomoea leptophylla|1 +(noun)|man-of-the-earth|Ipomoea leptophylla|morning glory +ipomoea nil|1 +(noun)|Japanese morning glory|Ipomoea nil|morning glory +ipomoea orizabensis|1 +(noun)|scammony|Ipomoea orizabensis|morning glory +ipomoea panurata|1 +(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +ipomoea pes-caprae|1 +(noun)|railroad vine|beach morning glory|Ipomoea pes-caprae|morning glory +ipomoea purpurea|1 +(noun)|common morning glory|Ipomoea purpurea|morning glory +ipomoea quamoclit|1 +(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory +ipomoea tricolor|1 +(noun)|common morning glory|Ipomoea tricolor|morning glory +ipratropium bromide|1 +(noun)|Atrovent|bronchodilator +iproclozid|1 +(noun)|monoamine oxidase inhibitor|MAOI +ipse dixit|1 +(noun)|ipsedixitism|assertion|averment|asseveration +ipsedixitism|1 +(noun)|ipse dixit|assertion|averment|asseveration +ipsilateral|1 +(adj)|ipsilateral +ipsus|1 +(noun)|Ipsus|battle of Ipsus|pitched battle +ipv|1 +(noun)|Salk vaccine|IPV|poliovirus vaccine +iq|1 +(noun)|intelligence quotient|IQ|I.Q.|ratio +iq test|1 +(noun)|intelligence test|IQ test|test|mental test|mental testing|psychometric test +ir|2 +(noun)|iridium|Ir|atomic number 77|metallic element|metal +(noun)|Inland Revenue|IR|administrative unit|administrative body +ira|3 +(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|individual retirement account|IRA|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program +(noun)|wrath|anger|ire|mortal sin|deadly sin +ira gershwin|1 +(noun)|Gershwin|Ira Gershwin|lyricist +irak|1 +(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country|Asian nation +iraki|2 +(adj)|Iraqi|Iraki|Asian country|Asian nation +(noun)|Iraqi|Iraki|Asian|Asiatic +iran|1 +(noun)|Iran|Islamic Republic of Iran|Persia|Asian country|Asian nation +iran-iraq war|1 +(noun)|Iran-Iraq War|Gulf War|war|warfare +irani|1 +(noun)|Irani|Iranian|Persian|Asian|Asiatic +iranian|3 +(adj)|Iranian|Persian|Asian country|Asian nation +(noun)|Irani|Iranian|Persian|Asian|Asiatic +(noun)|Iranian|Iranian language|Indo-Iranian|Indo-Iranian language +iranian capital|1 +(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital +iranian dinar|1 +(noun)|Iranian dinar|dinar|Iranian monetary unit +iranian language|1 +(noun)|Iranian|Iranian language|Indo-Iranian|Indo-Iranian language +iranian monetary unit|1 +(noun)|Iranian monetary unit|monetary unit +iranian rial|1 +(noun)|Iranian rial|rial|Iranian monetary unit +iraq|1 +(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country|Asian nation +iraqi|2 +(adj)|Iraqi|Iraki|Asian country|Asian nation +(noun)|Iraqi|Iraki|Asian|Asiatic +iraqi dinar|1 +(noun)|Iraqi dinar|dinar|Iraqi monetary unit +iraqi intelligence service|1 +(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency +iraqi kurdistan|1 +(noun)|Iraqi Kurdistan|geographical area|geographic area|geographical region|geographic region +iraqi monetary unit|1 +(noun)|Iraqi monetary unit|monetary unit +iraqi mukhabarat|1 +(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency +iraqi national congress|1 +(noun)|Iraqi National Congress|INC|opposition +irascibility|1 +(noun)|short temper|spleen|quick temper|bad temper|ill temper +irascible|2 +(adj)|choleric|hotheaded|hot-tempered|quick-tempered|short|short-tempered|ill-natured +(adj)|choleric|angry +irate|1 +(adj)|ireful|angry +ire|2 +(noun)|anger|choler|emotion +(noun)|wrath|anger|ira|mortal sin|deadly sin +ireful|1 +(adj)|irate|angry +ireland|2 +(noun)|Ireland|Eire|Irish Free State|European country|European nation +(noun)|Ireland|Hibernia|Emerald Isle|island +irelander|1 +(noun)|Irish person|Irelander|European +irena|1 +(noun)|Irena|genus Irena|bird genus +irene joliot-curie|1 +(noun)|Joliot-Curie|Irene Joliot-Curie|physicist +irenic|1 +(adj)|peaceful +irenidae|1 +(noun)|Irenidae|family Irenidae|bird family +iresine|1 +(noun)|Iresine|genus Iresine|caryophylloid dicot genus +iresine herbstii|1 +(noun)|beefsteak plant|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf +iresine reticulata|1 +(noun)|beefsteak plant|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf +iridaceae|1 +(noun)|Iridaceae|family Iridaceae|iris family|liliid monocot family +iridaceous|1 +(adj)|liliid monocot family +iridaceous plant|1 +(noun)|bulbous plant +iridectomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +iridesce|1 +(verb)|be +iridescence|1 +(noun)|opalescence|brightness +iridescent|2 +(adj)|changeable|chatoyant|shot|colorful |colourful +(adj)|nacreous|opalescent|opaline|pearlescent|bright +iridic|2 +(adj)|metallic element|metal +(adj)|membrane|tissue layer +iridium|1 +(noun)|Ir|atomic number 77|metallic element|metal +iridocyclitis|1 +(noun)|inflammation|redness|rubor +iridokeratitis|1 +(noun)|inflammation|redness|rubor +iridoncus|1 +(noun)|swelling|puffiness|lump +iridoprocne|1 +(noun)|Iridoprocne|genus Iridoprocne|bird genus +iridoprocne bicolor|1 +(noun)|white-bellied swallow|tree swallow|Iridoprocne bicolor|swallow +iridosmine|1 +(noun)|osmiridium|mineral +iridotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +iris|3 +(noun)|flag|fleur-de-lis|sword lily|iridaceous plant +(noun)|membrane|tissue layer +(noun)|iris diaphragm|diaphragm|stop +iris cristata|1 +(noun)|dwarf iris|Iris cristata|iris|flag|fleur-de-lis|sword lily +iris diaphragm|1 +(noun)|iris|diaphragm|stop +iris family|1 +(noun)|Iridaceae|family Iridaceae|liliid monocot family +iris filifolia|1 +(noun)|Dutch iris|Iris filifolia|beardless iris +iris florentina|1 +(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris +iris foetidissima|1 +(noun)|stinking iris|gladdon|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +iris germanica|1 +(noun)|German iris|Iris germanica|bearded iris +iris germanica florentina|1 +(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris +iris kaempferi|1 +(noun)|Japanese iris|Iris kaempferi|beardless iris +iris kochii|1 +(noun)|German iris|Iris kochii|bearded iris +iris murdoch|1 +(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer|author +iris pallida|1 +(noun)|Dalmatian iris|Iris pallida|bearded iris +iris persica|1 +(noun)|Persian iris|Iris persica|iris|flag|fleur-de-lis|sword lily +iris pseudacorus|1 +(noun)|yellow iris|yellow flag|yellow water flag|Iris pseudacorus|iris|flag|fleur-de-lis|sword lily +iris scanning|1 +(noun)|biometric identification|biometric authentication|identity verification +iris tingitana|1 +(noun)|Dutch iris|Iris tingitana|beardless iris +iris verna|1 +(noun)|dwarf iris|vernal iris|Iris verna|iris|flag|fleur-de-lis|sword lily +iris versicolor|1 +(noun)|blue flag|Iris versicolor|iris|flag|fleur-de-lis|sword lily +iris virginica|1 +(noun)|southern blue flag|Iris virginica|iris|flag|fleur-de-lis|sword lily +iris xiphioides|1 +(noun)|English iris|Iris xiphioides|iris|flag|fleur-de-lis|sword lily +iris xiphium|1 +(noun)|Spanish iris|xiphium iris|Iris xiphium|beardless iris +irish|4 +(adj)|Irish|island +(noun)|Irish|Irish people|the Irish|nation|land|country|a people +(noun)|Irish|Irish whiskey|Irish whisky|whiskey|whisky +(noun)|Irish|Irish Gaelic|Gaelic|Goidelic|Erse +irish bull|1 +(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +irish burgoo|1 +(noun)|mulligan stew|mulligan|Irish burgoo|stew +irish capital|1 +(noun)|Dublin|Irish capital|capital of Ireland|national capital|port +irish coffee|1 +(noun)|Irish coffee|coffee|java +irish free state|1 +(noun)|Ireland|Eire|Irish Free State|European country|European nation +irish gaelic|1 +(noun)|Irish|Irish Gaelic|Gaelic|Goidelic|Erse +irish gorse|1 +(noun)|gorse|furze|whin|Irish gorse|Ulex europaeus|shrub|bush +irish monetary unit|1 +(noun)|Irish monetary unit|monetary unit +irish moss|1 +(noun)|Irish moss|carrageen|carageen|carragheen|Chondrus crispus|red algae +irish national liberation army|1 +(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +irish people|1 +(noun)|Irish|Irish people|the Irish|nation|land|country|a people +irish person|1 +(noun)|Irish person|Irelander|European +irish potato|1 +(noun)|potato|white potato|Irish potato|murphy|spud|tater|root vegetable|solanaceous vegetable +irish pound|1 +(noun)|Irish pound|Irish punt|punt|pound|Irish monetary unit +irish punt|1 +(noun)|Irish pound|Irish punt|punt|pound|Irish monetary unit +irish republican army|1 +(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization|terrorist group|foreign terrorist organization|FTO +irish sea|1 +(noun)|Irish Sea|sea +irish setter|1 +(noun)|Irish setter|red setter|setter +irish soda bread|1 +(noun)|Irish soda bread|quick bread +irish stew|1 +(noun)|Irish stew|stew +irish strawberry|1 +(noun)|strawberry tree|Irish strawberry|Arbutus unedo|arbutus +irish terrier|1 +(noun)|Irish terrier|terrier +irish water spaniel|1 +(noun)|Irish water spaniel|water spaniel +irish whiskey|1 +(noun)|Irish|Irish whiskey|Irish whisky|whiskey|whisky +irish whisky|1 +(noun)|Irish|Irish whiskey|Irish whisky|whiskey|whisky +irish wolfhound|1 +(noun)|Irish wolfhound|wolfhound +irishman|1 +(noun)|Irishman|Irish person|Irelander +irishwoman|1 +(noun)|Irishwoman|Irish person|Irelander +iritic|1 +(adj)|membrane|tissue layer +iritis|1 +(noun)|inflammation|redness|rubor +irk|1 +(verb)|gall|anger +irksome|1 +(adj)|boring|deadening|dull|ho-hum|slow|tedious|tiresome|wearisome|uninteresting +iron|7 +(adj)|cast-iron|robust +(noun)|Fe|atomic number 26|metallic element|metal +(noun)|golf club|golf-club|club +(noun)|irons|chain|chains|shackle|bond|hamper|trammel|trammels +(noun)|branding iron|implement +(noun)|smoothing iron|home appliance|household appliance +(verb)|iron out|press +iron-gray|2 +(adj)|iron-grey|achromatic +(noun)|iron-grey|gray|grayness|grey|greyness +iron-grey|2 +(adj)|iron-gray|achromatic +(noun)|iron-gray|gray|grayness|grey|greyness +iron-storage disease|1 +(noun)|hemochromatosis|iron overload|bronzed diabetes|pathology +iron-tree|2 +(noun)|iron tree|ironwood|ironwood tree|angiospermous tree|flowering tree +(noun)| +iron age|2 +(noun)|Iron Age|time period|period of time|period +(noun)|time period|period of time|period +iron blue|2 +(noun)|steel gray|Davy's gray|gray|grayness|grey|greyness +(noun)|Prussian blue|pigment +iron boot|1 +(noun)|boot|iron heel|instrument of torture +iron cage|1 +(noun)|cage +iron carbide|1 +(noun)|cementite|compound|chemical compound +iron chancellor|1 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +iron collar|1 +(noun)|garrote|garotte|garrotte|instrument of execution +iron curtain|1 +(noun)|ideological barrier +iron deficiency anaemia|1 +(noun)|iron deficiency anemia|anemia|anaemia +iron deficiency anemia|1 +(noun)|iron deficiency anaemia|anemia|anaemia +iron disulfide|1 +(noun)|sulfide|sulphide +iron filing|1 +(noun)|metal filing +iron fist|1 +(noun)|control +iron foundry|1 +(noun)|foundry|metalworks +iron heel|1 +(noun)|boot|iron boot|instrument of torture +iron horse|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +iron lady|1 +(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman +iron lung|1 +(noun)|respirator|inhalator +iron maiden|1 +(noun)|instrument of torture +iron man|2 +(noun)|ironman|man|adult male +(noun)| +iron manganese tungsten|1 +(noun)|wolframite|mineral +iron mold|1 +(noun)|iron mould|stain|discoloration|discolouration +iron mould|1 +(noun)|iron mold|stain|discoloration|discolouration +iron oak|2 +(noun)|post oak|box white oak|brash oak|Quercus stellata|oak|oak tree +(noun)|canyon oak|canyon live oak|maul oak|Quercus chrysolepis|live oak +iron ore|1 +(noun)|ore +iron out|2 +(verb)|straighten out|put right|better|improve|amend|ameliorate|meliorate +(verb)|iron|press +iron overload|1 +(noun)|hemochromatosis|iron-storage disease|bronzed diabetes|pathology +iron perchloride|1 +(noun)|perchloride +iron putty|1 +(noun)|cement +iron pyrite|1 +(noun)|pyrite|fool's gold|mineral +iron trap|1 +(noun)|trap|snare +iron tree|2 +(noun)|iron-tree|ironwood|ironwood tree|angiospermous tree|flowering tree +(noun)| +ironclad|2 +(adj)|brassbound|inflexible +(adj)|unassailable|unshakable|watertight|bulletproof|incontestable |incontestible +ironed|1 +(adj)|ironed |pressed|smoothed|smoothened|smooth +ironic|2 +(adj)|dry|ironical|wry|humorous |humourous +(adj)|ironical|incongruous +ironical|2 +(adj)|ironic|incongruous +(adj)|dry|ironic|wry|humorous |humourous +ironing|2 +(noun)|garment|white goods|household linen +(noun)|work +ironing board|1 +(noun)|board +ironist|1 +(noun)|satirist|ridiculer|humorist|humourist +ironlike|1 +(adj)|strong +ironman|1 +(noun)|iron man|man|adult male +ironmonger|1 +(noun)|hardwareman|trader|bargainer|dealer|monger +ironmongery|1 +(noun)|hardware store|shop|store +irons|6 +(noun)|iron|chain|chains|shackle|bond|hamper|trammel|trammels +(noun)|iron|Fe|atomic number 26|metallic element|metal +(noun)|iron|golf club|golf-club|club +(noun)|iron|chain|chains|shackle|bond|hamper|trammel|trammels +(noun)|iron|branding iron|implement +(noun)|iron|smoothing iron|home appliance|household appliance +ironshod|1 +(adj)|shod |shodden|shoed +ironside|1 +(noun)|man|adult male +ironsides|2 +(noun)|Cromwell|Oliver Cromwell|Ironsides|general|full general|statesman|solon|national leader +(noun)|ironside|man|adult male +ironware|1 +(noun)|hardware|instrumentality|instrumentation +ironweed|1 +(noun)|vernonia|herb|herbaceous plant +ironwood|4 +(noun)|rose chestnut|ironwood tree|Mesua ferrea|tree +(noun)|wood +(noun)|iron tree|iron-tree|ironwood tree|angiospermous tree|flowering tree +(noun)|Eastern hop hornbeam|ironwood tree|Ostrya virginiana|hop hornbeam +ironwood tree|3 +(noun)|rose chestnut|ironwood|Mesua ferrea|tree +(noun)|iron tree|iron-tree|ironwood|angiospermous tree|flowering tree +(noun)|Eastern hop hornbeam|ironwood|Ostrya virginiana|hop hornbeam +ironwork|1 +(noun)|work|piece of work +ironworker|1 +(noun)|maker|shaper +ironworks|2 +(noun)|workplace|work +(noun)|ironwork|work|piece of work +irony|3 +(noun)|sarcasm|satire|caustic remark|wit|humor|humour|witticism|wittiness +(noun)|incongruity|incongruousness +(noun)|trope|figure of speech|figure|image +iroquoian|1 +(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +iroquoian language|1 +(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +iroquois|2 +(noun)|Iroquois|Indian|North American Indian|American Indian|Red Indian +(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +iroquois league|1 +(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league +irradiate|3 +(verb)|enlighten|prophesy|vaticinate +(verb)|lighten|lighten up +(verb)|ray|process|treat +irradiation|6 +(noun)|condition|status +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|light|visible light|visible radiation +(noun)|spread|spreading +(noun)|illusion|semblance +(noun)|generalization|generalisation|stimulus generalization|stimulus generalisation +(noun)|radiotherapy|radiation therapy|radiation|actinotherapy|therapy +irrational|2 +(adj)|irrational |blind|unreasoning|incoherent|reasonless|nonrational|superstitious|illogical|unlogical|incoherent|unreasonable +(adj)|irrational |magnitude relation|quantitative relation +irrational hostility|1 +(noun)|bias|prejudice|preconception +irrational impulse|1 +(noun)|irrational motive +irrational motive|1 +(noun)|motivation|motive|need +irrational number|1 +(noun)|real number|real +irrationality|1 +(noun)|unreason|insanity +irrationally|1 +(adv)|without reasoning +irrawaddy|1 +(noun)|Irrawaddy|Irrawaddy River|river +irrawaddy river|1 +(noun)|Irrawaddy|Irrawaddy River|river +irreality|1 +(noun)|unreality|nonexistence|nonentity +irreclaimable|1 +(adj)|irredeemable|unredeemable|unreformable|wicked +irreconcilable|1 +(adj)|irreconcilable |unreconcilable|hostile|inconsistent +irrecoverable|1 +(adj)|unrecoverable |forgotten|lost|irretrievable|unretrievable|lost +irredeemable|2 +(adj)|irreclaimable|unredeemable|unreformable|wicked +(adj)|inconvertible |unconvertible|unexchangeable +irredenta|1 +(noun)|irridenta|region +irredentism|1 +(noun)|irridentism|doctrine|philosophy|philosophical system|school of thought|ism +irredentist|1 +(noun)|irridentist|advocate|advocator|proponent|exponent +irreducible|1 +(adj)|irreducible +irrefutable|1 +(adj)|incontrovertible|positive|undeniable +irregular|11 +(adj)|irregular |arrhythmic|jerking|jerky|unsteady|asymmetrical|crooked|casual|occasional|improper|unconventional|unlawful|randomized|randomised|strong|substandard|asymmetrical|asymmetric|illegal|rough|unsmooth|unrhythmical|unrhythmic|unsteady|unsystematic +(adj)|irregular +(adj)|unpredictable|sporadic +(adj)|irregular |partisan|partizan +(adj)|atypical|abnormal +(adj)|temporary|part-time +(adj)|uneven +(adj)|guerrilla|guerilla|underground|partisan |partizan +(adj)|maverick|unorthodox|unconventional +(noun)|guerrilla|guerilla|insurgent|warrior +(noun)|second|merchandise|wares|product +irregularity|4 +(noun)|abnormality|misbehavior|misbehaviour|misdeed +(noun)|unregularity|quality +(noun)|geometrical irregularity|asymmetry|imbalance +(noun)|constipation|symptom +irregularly|1 +(adv)|on an irregular basis +irrelevance|1 +(noun)|irrelevancy|unconnectedness +irrelevancy|1 +(noun)|irrelevance|unconnectedness +irrelevant|1 +(adj)|irrelevant |digressive|tangential|extraneous|immaterial|impertinent|orthogonal|inapplicable|unsuitable|moot +irreligion|1 +(noun)|irreligiousness|impiety|impiousness +irreligionist|1 +(noun)|materialist|disbeliever|nonbeliever|unbeliever +irreligious|1 +(adj)|irreligious |atheistic|atheistical|unbelieving|heathen|heathenish|pagan|ethnic|impious|ungodly|lapsed|nonchurchgoing|nonobservant|impious +irreligiousness|1 +(noun)|irreligion|impiety|impiousness +irremediable|1 +(adj)|irremediable +irremovable|1 +(adj)|irremovable |tenured +irreparable|1 +(adj)|irreparable +irreplaceable|2 +(adj)|irreplaceable |unreplaceable|unexpendable +(adj)|unexpendable +irreplaceableness|1 +(noun)|unexchangeability +irrepressibility|1 +(noun)|buoyancy|liveliness|life|spirit|sprightliness +irrepressible|1 +(adj)|uncontrollable|uncontrolled +irreproachable|1 +(adj)|blameless|inculpable|unimpeachable|innocent |guiltless|clean-handed +irreproachably|1 +(adv)|blamelessly +irreproducibility|1 +(noun)|undependability|undependableness|unreliability|unreliableness +irreproducible|1 +(adj)|unreproducible |inimitable|unrepeatable +irresistibility|1 +(noun)|irresistibleness|power|powerfulness +irresistible|2 +(adj)|irresistible |resistless|overpowering|overwhelming +(adj)|attractive +irresistible impulse|1 +(noun)|compulsion|irrational impulse +irresistibleness|1 +(noun)|irresistibility|power|powerfulness +irresistibly|1 +(adv)|overwhelmingly|overpoweringly +irresolute|2 +(adj)|irresolute |discouraged|infirm|unstable|vacillant|vacillating|wavering|weak-kneed|indecisive +(adj)|hesitant|hesitating|indecisive +irresoluteness|1 +(noun)|irresolution|trait +irresolution|2 +(noun)|indecision|indecisiveness|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|irresoluteness|trait +irrespective|1 +(adv)|regardless|disregardless|no matter|disregarding +irresponsibility|1 +(noun)|irresponsibleness|untrustworthiness|untrustiness +irresponsible|1 +(adj)|irresponsible |carefree|devil-may-care|freewheeling|happy-go-lucky|harum-scarum|slaphappy|do-nothing|feckless|flighty|head-in-the-clouds|scatterbrained|idle|loose|trigger-happy|unaccountable|unreliable +irresponsibleness|1 +(noun)|irresponsibility|untrustworthiness|untrustiness +irresponsibly|1 +(adv)|without showing responsibility +irretrievable|1 +(adj)|unretrievable|unrecoverable |irrecoverable +irreverence|2 +(noun)|attitude|mental attitude +(noun)|violation|evil|immorality|wickedness|iniquity +irreverent|3 +(adj)|irreverent |blasphemous|profane|sacrilegious|aweless|awless|disrespectful|disrespectful +(adj)|impertinent|pert|saucy|spirited +(adj)|godless|impious +irreversibility|1 +(noun)|changelessness|unchangeability|unchangeableness|unchangingness +irreversible|2 +(adj)|irreversible |permanent +(adj)|irrevocable |irrevokable +irreversible process|1 +(noun)|process +irrevocable|1 +(adj)|irrevocable |irrevokable|irreversible|sealed +irrevokable|1 +(adj)|irrevocable |irreversible|sealed +irridenta|1 +(noun)|irredenta|region +irridentism|1 +(noun)|irredentism|doctrine|philosophy|philosophical system|school of thought|ism +irridentist|1 +(noun)|irredentist|advocate|advocator|proponent|exponent +irrigate|2 +(verb)|water|wet +(verb)|treat|care for +irrigation|2 +(noun)|provision|supply|supplying +(noun)|medical care|medical aid +irrigation ditch|1 +(noun)|ditch +irritability|3 +(noun)|crossness|fretfulness|fussiness|peevishness|petulance|choler|ill humor|ill humour|distemper +(noun)|excitability|responsiveness|reactivity +(noun)|temper|biliousness|peevishness|pettishness|snappishness|surliness|ill nature +irritable|3 +(adj)|cranky|fractious|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|techy|ill-natured +(adj)|sensitive +(adj)|excitable|sensitive +irritable bowel syndrome|1 +(noun)|spastic colon|mucous colitis|colitis|inflammatory bowel disease +irritably|1 +(adv)|testily|petulantly|pettishly +irritant|1 +(noun)|thorn|annoyance|bother|botheration|pain|infliction|pain in the neck|pain in the ass +irritate|3 +(verb)|annoy|rag|get to|bother|get at|rile|nark|nettle|gravel|vex|chafe|devil|displease +(verb)|worsen|aggravate|exacerbate|exasperate +(verb)|stimulate|excite +irritated|2 +(adj)|worsen|aggravate|exacerbate|exasperate +(adj)|annoyed|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stunng|displeased +irritating|3 +(adj)|annoying|bothersome|galling|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +(adj)|irritative|stimulative +(adj)|painful|uncomfortable +irritation|7 +(noun)|annoyance|vexation|botheration|psychological state|mental state +(noun)|pique|temper|annoyance|chafe|vexation +(noun)|abnormality|abnormalcy|abnormal condition|sensitization|sensitisation +(noun)|excitation|innervation|arousal +(noun)|discomfort|soreness|suffering|hurt +(noun)|aggravation|provocation|aggression +(noun)|annoyance|annoying|vexation|mistreatment +irritative|1 +(adj)|irritating|stimulative +irrupt|3 +(verb)|intrude|enter|come in|get into|get in|go into|go in|move into +(verb)|erupt|flare up|flare|break open|burst out|intensify|deepen +(verb)|explode|increase +irruption|3 +(noun)|entrance|entering|entry|ingress|incoming +(noun)|population growth +(noun)|outbreak|eruption|happening|occurrence|natural event +irruptive|1 +(adj)|eruptive|plutonic|intrusive +irs|1 +(noun)|Internal Revenue Service|IRS|agency|federal agency|government agency|bureau|office|authority +irtish|1 +(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river +irtish river|1 +(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river +irtysh|1 +(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river +irtysh river|1 +(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river +irula|1 +(noun)|Irula|South Dravidian +irving|2 +(noun)|Irving|Washington Irving|writer|author +(noun)|Irving|John Irving|writer|author +irving berlin|1 +(noun)|Berlin|Irving Berlin|Israel Baline|songwriter|songster|ballad maker +irving langmuir|1 +(noun)|Langmuir|Irving Langmuir|chemist +irvingia|1 +(noun)|Irvingia|genus Irvingia|rosid dicot genus +irvingia gabonensis|1 +(noun)|wild mango|dika|wild mango tree|Irvingia gabonensis|fruit tree +isaac|1 +(noun)|Isaac|patriarch +isaac asimov|1 +(noun)|Asimov|Isaac Asimov|writer|author +isaac bashevis singer|1 +(noun)|Singer|Isaac Bashevis Singer|writer|author +isaac hull|1 +(noun)|Hull|Isaac Hull|naval officer +isaac m. singer|1 +(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor|discoverer|artificer|manufacturer|producer +isaac mayer wise|1 +(noun)|Wise|Isaac Mayer Wise|religious leader +isaac merrit singer|1 +(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor|discoverer|artificer|manufacturer|producer +isaac newton|1 +(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician|physicist +isaac stern|1 +(noun)|Stern|Isaac Stern|violinist|fiddler +isaac watts|1 +(noun)|Watts|Isaac Watts|poet|theologian|theologist|theologizer|theologiser +isabella i|1 +(noun)|Isabella I|Isabella the Catholic|queen|queen regnant|female monarch +isabella stewart gardner|1 +(noun)|Gardner|Isabella Stewart Gardner|collector|gatherer|accumulator +isabella the catholic|1 +(noun)|Isabella I|Isabella the Catholic|queen|queen regnant|female monarch +isadora duncan|1 +(noun)|Duncan|Isadora Duncan|dancer|professional dancer +isaiah|2 +(noun)|Isaiah|prophet +(noun)|Isaiah|Book of Isaiah|book +isak dinesen|1 +(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer|author +isamu noguchi|1 +(noun)|Noguchi|Isamu Noguchi|sculptor|sculpturer|carver|statue maker +isarithm|1 +(noun)|isogram|isopleth|line +isatis|1 +(noun)|Isatis|genus Isatis|dilleniid dicot genus +isatis tinctoria|1 +(noun)|dyer's woad|Isatis tinctoria|woad +ischaemia|1 +(noun)|ischemia|anemia|anaemia +ischaemic|1 +(adj)|ischemic|anemia|anaemia +ischaemic stroke|1 +(noun)|ischemic stroke|stroke|apoplexy|cerebrovascular accident|CVA|ischemia|ischaemia +ischemia|1 +(noun)|ischaemia|anemia|anaemia +ischemic|1 +(adj)|ischaemic|anemia|anaemia +ischemic anoxia|1 +(noun)|stagnant anoxia|anoxia +ischemic hypoxia|1 +(noun)|stagnant hypoxia|hypoxia +ischemic stroke|1 +(noun)|ischaemic stroke|stroke|apoplexy|cerebrovascular accident|CVA|ischemia|ischaemia +ischia|2 +(noun)|Ischia|island +(noun)|ischium|ischial bone|os ischii|bone|os +ischial bone|1 +(noun)|ischium|os ischii|bone|os +ischigualastia|1 +(noun)|Ischigualastia|genus Ischigualastia|reptile genus +ischium|1 +(noun)|ischial bone|os ischii|bone|os +isentropic|1 +(adj)|physical property +isere|1 +(noun)|Isere|Isere River|river +isere river|1 +(noun)|Isere|Isere River|river +iseult|1 +(noun)|Iseult|fictional character|fictitious character|character +isfahan|1 +(noun)|Isfahan|Esfahan|Aspadana|city|metropolis|urban center +isherwood|1 +(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer|author +ishmael|2 +(noun)|Ishmael|patriarch +(noun)|outcast|castaway|pariah|Ishmael|unfortunate|unfortunate person +ishtar|1 +(noun)|Ishtar|Mylitta|Semitic deity +isi|1 +(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency +isidor feinstein stone|1 +(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist +isidore auguste marie francois comte|1 +(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher +isinglass|1 +(noun)|mica|mineral|transparent substance|translucent substance +isis|2 +(noun)|Isis|Egyptian deity +(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency +iskcon|1 +(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect|religious sect|religious order +islam|2 +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism +islam nation|1 +(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community +islamabad|1 +(noun)|Islamabad|capital of Pakistan|national capital +islamic|1 +(adj)|Muslim|Moslem|Islamic|monotheism +islamic army of aden|1 +(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic army of aden-abyan|1 +(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic calendar|1 +(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar +islamic calendar month|1 +(noun)|Islamic calendar month|calendar month|month +islamic community|1 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic group|2 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|al-Gama'a al-Islamiyya|Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic group of uzbekistan|1 +(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic jihad|2 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic jihad for the liberation of palestine|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic law|1 +(noun)|shariah|shariah law|sharia|sharia law|Islamic law|law|jurisprudence +islamic party of turkestan|1 +(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic republic of iran|1 +(noun)|Iran|Islamic Republic of Iran|Persia|Asian country|Asian nation +islamic republic of mauritania|1 +(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country|African nation +islamic republic of pakistan|1 +(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country|Asian nation +islamic resistance movement|1 +(noun)|Hamas|Islamic Resistance Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamic state of afghanistan|1 +(noun)|Afghanistan|Islamic State of Afghanistan|Asian country|Asian nation +islamic ummah|1 +(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community +islamic unity|1 +(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization|terrorist group|foreign terrorist organization|FTO +islamise|2 +(verb)|Islamize|Islamise|change|alter|modify +(verb)|Islamize|Islamise|convert +islamism|3 +(noun)|Islamism|religious movement +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism +islamist|1 +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +islamize|2 +(verb)|Islamize|Islamise|change|alter|modify +(verb)|Islamize|Islamise|convert +islamophobia|1 +(noun)|Islamophobia|bias|prejudice|preconception +island|2 +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|zone +island-dweller|1 +(noun)|islander|inhabitant|dweller|denizen|indweller +island dispenser|1 +(noun)|gas pump|gasoline pump|pump +island hop|1 +(verb)|travel|go|move|locomote +islander|1 +(noun)|island-dweller|inhabitant|dweller|denizen|indweller +islands of langerhans|1 +(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland|endocrine|ductless gland +islay|2 +(noun)|holly-leaved cherry|holly-leaf cherry|evergreen cherry|Prunus ilicifolia|wild plum|wild plum tree +(noun)|Islay|island +isle|1 +(noun)|islet|island +isle of man|1 +(noun)|Man|Isle of Man|island +isle of skye|1 +(noun)|Isle of Skye|island +isle of wight|1 +(noun)|Wight|Isle of Wight|isle|islet|county +isle royal national park|1 +(noun)|Isle Royal National Park|national park +isles of langerhans|1 +(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland|endocrine|ductless gland +isles of scilly|1 +(noun)|Scilly Islands|Isles of Scilly|archipelago +islet|1 +(noun)|isle|island +islets of langerhans|1 +(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland|endocrine|ductless gland +ism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|belief +ismaili|2 +(adj)|Ismaili|Shiism +(noun)|Ismaili|Ismailian|disciple|adherent +ismailian|1 +(noun)|Ismaili|Ismailian|disciple|adherent +ismailism|1 +(noun)|Ismailism|Shiism +isn|1 +(noun)|International Relations and Security Network|ISN|international intelligence agency +isoagglutination|1 +(noun)|agglutination +isoagglutinin|1 +(noun)|agglutinin +isoagglutinogen|1 +(noun)|agglutinogen +isoantibody|1 +(noun)|alloantibody|antibody +isobar|1 +(noun)|isogram|isopleth|isarithm +isobilateral|1 +(adj)|bilateral|bilaterally symmetrical|bilaterally symmetric|symmetrical |symmetric +isobutyl nitrite|1 +(noun)|butyl nitrite|vasodilator|vasodilative|stimulant|stimulant drug +isobutylene|1 +(noun)|butylene|butene +isobutylphenyl propionic acid|1 +(noun)|ibuprofen|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +isocarboxazid|1 +(noun)|Marplan|monoamine oxidase inhibitor|MAOI +isochronal|1 +(adj)|isochronous|equal +isochrone|1 +(noun)|isogram|isopleth|isarithm +isochronous|1 +(adj)|isochronal|equal +isocrates|1 +(noun)|Isocrates|orator|speechmaker|rhetorician|public speaker|speechifier +isocyanate|1 +(noun)|salt +isocyanic acid|1 +(noun)|acid +isocyclic|1 +(adj)|homocyclic|cyclic +isoetaceae|1 +(noun)|Isoetaceae|family Isoetaceae|quillwort family|fern family +isoetales|1 +(noun)|Isoetales|order Isoetales|plant order +isoetes|1 +(noun)|Isoetes|genus Isoetes|fern genus +isoflurane|1 +(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +isogamete|1 +(noun)|gamete +isogamy|1 +(noun)|sexual reproduction|amphimixis +isogon|1 +(noun)|polygon|polygonal shape +isogonal line|1 +(noun)|isogonic line|isogone|line +isogone|1 +(noun)|isogonic line|isogonal line|line +isogonic|1 +(adj)|angular |angulate +isogonic line|1 +(noun)|isogonal line|isogone|line +isogram|1 +(noun)|isopleth|isarithm|line +isohel|1 +(noun)|isogram|isopleth|isarithm +isolable|1 +(adj)|separate +isolate|4 +(verb)|insulate|discriminate|separate|single out +(verb)|get|acquire +(verb)|sequester|sequestrate|keep apart|set apart|separate|disunite|divide|part +(verb)|classify|class|sort|assort|sort out|separate +isolated|6 +(adj)|scattered|stray|sporadic +(adj)|detached|separated|set-apart|separate +(adj)|disjunct|separate +(adj)|marooned|stranded|unaccompanied +(adj)|quarantined|segregated |unintegrated +(adj)|apart|obscure|unconnected +isolating|1 +(adj)|analytic |uninflected +isolation|6 +(noun)|separation +(noun)|closing off|separation +(noun)|alienation|disaffection|estrangement +(noun)|reclusiveness|solitariness +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|non-engagement|nonparticipation|non-involvement +isolationism|1 +(noun)|foreign policy +isolationist|2 +(adj)|isolationistic|foreign policy +(noun)|advocate|advocator|proponent|exponent +isolationistic|1 +(adj)|isolationist|foreign policy +isole egadi|1 +(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island +isoleucine|1 +(noun)|essential amino acid +isomer|1 +(noun)|compound|chemical compound +isomerase|1 +(noun)|enzyme +isomeric|1 +(adj)|state +isomerisation|1 +(noun)|isomerization|conversion|transition|changeover +isomerise|2 +(verb)|isomerize|change|alter|modify +(verb)|isomerize|change +isomerism|1 +(noun)|state +isomerization|1 +(noun)|isomerisation|conversion|transition|changeover +isomerize|2 +(verb)|isomerise|change|alter|modify +(verb)|isomerise|change +isometric|5 +(adj)|mapping|map|correspondence +(adj)|isometric +(adj)|isometrical|equal +(adj)|cubic |three-dimensional +(noun)|isometric line|line +isometric exercise|1 +(noun)|isometrics|exercise|exercising|physical exercise|physical exertion|workout +isometric line|1 +(noun)|isometric|line +isometrical|1 +(adj)|isometric|equal +isometrics|2 +(noun)|isometric exercise|exercise|exercising|physical exercise|physical exertion|workout +(noun)|isometric line|isometric|line +isometropia|1 +(noun)|eye condition +isometry|4 +(noun)|growth rate|rate of growth +(noun)|mapping|map|correspondence +(noun)|elevation +(noun)|equality +isomorphic|1 +(adj)|isomorphous|similarity +isomorphism|1 +(noun)|isomorphy|similarity +isomorphous|1 +(adj)|isomorphic|similarity +isomorphy|1 +(noun)|isomorphism|similarity +isoniazid|1 +(noun)|INH|Nydrazid|antibacterial|antibacterial drug|bactericide +isopleth|1 +(noun)|isogram|isarithm|line +isopod|1 +(noun)|malacostracan crustacean +isopoda|1 +(noun)|Isopoda|order Isopoda|animal order +isopropanol|1 +(noun)|isopropyl alcohol|alcohol +isopropyl alcohol|1 +(noun)|isopropanol|alcohol +isoproterenol|1 +(noun)|Isuprel|medicine|medication|medicament|medicinal drug +isoptera|1 +(noun)|Isoptera|order Isoptera|animal order +isopteran|1 +(adj)|animal order +isoptin|1 +(noun)|verapamil|Calan|Isoptin|calcium blocker|calcium-channel blocker +isopyrum|1 +(noun)|Isopyrum|genus Isopyrum|magnoliid dicot genus +isopyrum biternatum|1 +(noun)|false rue anemone|false rue|Isopyrum biternatum|herb|herbaceous plant +isordil|1 +(noun)|isosorbide|Isordil|medicine|medication|medicament|medicinal drug +isoroku yamamoto|1 +(noun)|Yamamoto|Isoroku Yamamoto|admiral|full admiral +isosceles|1 +(adj)|symmetrical |symmetric +isosceles triangle|1 +(noun)|triangle|trigon|trilateral +isosmotic|1 +(adj)|isotonic +isosmotic solution|1 +(noun)|isotonic solution|solution +isosorbide|1 +(noun)|Isordil|medicine|medication|medicament|medicinal drug +isospondyli|1 +(noun)|Isospondyli|order Isospondyli|animal order +isotherm|1 +(noun)|isogram|isopleth|isarithm +isothermal|1 +(adj)|equal +isothermic|1 +(adj)|isogram|isopleth|isarithm +isothiocyanate|1 +(noun)|chemical irritant +isotonic|4 +(adj)|isotonic |isosmotic +(adj)|interval|musical interval +(adj)|isotonic +(adj)|tense +isotonic exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +isotonic solution|1 +(noun)|isosmotic solution|solution +isotope|1 +(noun)|atom +isotopic|1 +(adj)|atom +isotropic|1 +(adj)|isotropic |isotropous|identical +isotropous|1 +(adj)|isotropic |identical +isotropy|1 +(noun)|symmetry|property +israel|2 +(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country|state|land +(noun)|Israel|kingdom +israel baline|1 +(noun)|Berlin|Irving Berlin|Israel Baline|songwriter|songster|ballad maker +israel zangwill|1 +(noun)|Zangwill|Israel Zangwill|writer|author +israeli|2 +(adj)|Israeli|country|state|land +(noun)|Israeli|Asian|Asiatic +israeli defense force|1 +(noun)|Israeli Defense Force|IDF|military unit|military force|military group|force +israeli monetary unit|1 +(noun)|Israeli monetary unit|monetary unit +israelite|2 +(noun)|Israelite|Asian|Asiatic +(noun)|Jew|Hebrew|Israelite|person|individual|someone|somebody|mortal|human|soul +israelites|3 +(noun)|Hebrews|Israelites|ethnic group|ethnos|chosen people +(noun)|Israelite|Asian|Asiatic +(noun)|Jew|Hebrew|Israelite|person|individual|someone|somebody|mortal|human|soul +issachar|1 +(noun)|Issachar|patriarch +issuance|1 +(noun)|issue|issuing|provision|supply|supplying +issue|16 +(noun)|content|cognitive content|mental object +(noun)|number|periodical +(noun)|issuing|issuance|provision|supply|supplying +(noun)|topic|subject|matter|content|cognitive content|mental object +(noun)|military issue|government issue|store|stock|fund +(noun)|offspring|progeny|relative|relation +(noun)|consequence|effect|outcome|result|event|upshot|phenomenon +(noun)|return|proceeds|take|takings|yield|payoff|income +(noun)|emergence|egress|beginning +(noun)|exit|outlet|way out|opening +(noun)|publication|printing +(verb)|publish|bring out|put out|release|publicize|publicise|air|bare +(verb)|supply|distribute +(verb)|communicate|intercommunicate +(verb)|emerge|come out|come forth|go forth|egress +(verb)|write out|make out|cut|write +issue forth|1 +(verb)|come +issuer|1 +(noun)|institution|establishment +issuing|1 +(noun)|issue|issuance|provision|supply|supplying +issus|1 +(noun)|Issus|battle of Issus|pitched battle +istanbul|1 +(noun)|Istanbul|Stambul|Stamboul|Constantinople|city|metropolis|urban center +isthmian|1 +(adj)|land|dry land|earth|ground|solid ground|terra firma +isthmian games|1 +(noun)|Isthmian Games|agon +isthmus|2 +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|tissue +isthmus of corinth|1 +(noun)|Isthmus of Corinth|isthmus +isthmus of kra|1 +(noun)|Isthmus of Kra|isthmus +isthmus of panama|1 +(noun)|Isthmus of Panama|isthmus +isthmus of suez|1 +(noun)|Isthmus of Suez|isthmus +isthmus of tehuantepec|1 +(noun)|Isthmus of Tehuantepec|isthmus +istiophoridae|1 +(noun)|Istiophoridae|family Istiophoridae|fish family +istiophorus|1 +(noun)|Istiophorus|genus Istiophorus|fish genus +istiophorus albicans|1 +(noun)|Atlantic sailfish|Istiophorus albicans|sailfish +isuprel|1 +(noun)|isoproterenol|Isuprel|medicine|medication|medicament|medicinal drug +isuridae|1 +(noun)|Isuridae|family Isuridae|fish family +isurus|1 +(noun)|Isurus|genus Isurus|fish genus +isurus glaucus|1 +(noun)|bonito shark|blue pointed|Isurus glaucus|mako|mako shark +isurus oxyrhincus|1 +(noun)|shortfin mako|Isurus oxyrhincus|mako|mako shark +isurus paucus|1 +(noun)|longfin mako|Isurus paucus|mako|mako shark +itaconic acid|1 +(noun)|acid +italia|1 +(noun)|Italy|Italian Republic|Italia|European country|European nation +italian|3 +(adj)|Italian|European country|European nation +(noun)|Italian|European +(noun)|Italian|Romance|Romance language|Latinian language +italian-speaking|1 +(adj)|Italian-speaking|communicative |communicatory +italian bee|1 +(noun)|Italian bee|honeybee|Apis mellifera +italian bread|1 +(noun)|Italian bread|white bread|light bread +italian capital|1 +(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital +italian clover|1 +(noun)|crimson clover|Italian clover|Trifolium incarnatum|clover|trefoil +italian cypress|1 +(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress|cypress tree +italian dressing|1 +(noun)|Italian dressing|dressing|salad dressing +italian greyhound|1 +(noun)|Italian greyhound|greyhound +italian honeysuckle|1 +(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle +italian lira|1 +(noun)|lira|Italian lira|Italian monetary unit +italian millet|1 +(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail|foxtail grass +italian monetary unit|1 +(noun)|Italian monetary unit|monetary unit +italian parsley|1 +(noun)|Italian parsley|flat-leaf parsley|Petroselinum crispum neapolitanum|parsley|Petroselinum crispum +italian peninsula|1 +(noun)|Italian Peninsula|peninsula +italian region|1 +(noun)|Italian region|state|province +italian renaissance|1 +(noun)|Italian Renaissance|Renaissance +italian republic|1 +(noun)|Italy|Italian Republic|Italia|European country|European nation +italian rice|1 +(noun)|risotto|Italian rice|dish +italian rye|1 +(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass|ryegrass +italian ryegrass|1 +(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass|ryegrass +italian sandwich|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +italian sonnet|1 +(noun)|Petrarchan sonnet|Italian sonnet|sonnet +italian vegetable marrow|1 +(noun)|cocozelle|Italian vegetable marrow|marrow|marrow squash|vegetable marrow +italian vermouth|1 +(noun)|sweet vermouth|Italian vermouth|vermouth +italian woodbine|1 +(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle +italic|5 +(adj)|font|fount|typeface|face +(adj)|Italic|Indo-European|Indo-European language|Indo-Hittite +(noun)|longhand|running hand|cursive|cursive script +(noun)|Italic|Italic language|Indo-European|Indo-European language|Indo-Hittite +(noun)|font|fount|typeface|face +italic language|1 +(noun)|Italic|Italic language|Indo-European|Indo-European language|Indo-Hittite +italicise|1 +(verb)|italicize|print|impress +italicize|1 +(verb)|italicise|print|impress +italo calvino|1 +(noun)|Calvino|Italo Calvino|writer|author +italy|1 +(noun)|Italy|Italian Republic|Italia|European country|European nation +itch|6 +(noun)|scabies|infection +(noun)|urge|desire +(noun)|itchiness|itching|cutaneous sensation|haptic sensation|skin sensation +(verb)|rub|scratch|irritate +(verb)|ache|smart|hurt +(verb)|spoil|desire|want +itch mite|1 +(noun)|sarcoptid|mite +itchiness|1 +(noun)|itch|itching|cutaneous sensation|haptic sensation|skin sensation +itching|1 +(noun)|itch|itchiness|cutaneous sensation|haptic sensation|skin sensation +itchy|1 +(adj)|fidgety|fretful|restless|unquiet +itchy feet|1 +(noun)|wanderlust|urge|impulse +item|5 +(noun)|point|part|portion|component part|component +(noun)|whole|whole thing|unit +(noun)|detail|particular|part|portion|component part|component +(noun)|detail|point|fact +(noun)|token|symbol +item-by-item|1 +(adj)|individual|case-by-case|independent +itemisation|1 +(noun)|listing|itemization|organization|organisation +itemise|2 +(verb)|itemize|number|list +(verb)|enumerate|recite|itemize|name|identify +itemization|1 +(noun)|listing|itemisation|organization|organisation +itemize|2 +(verb)|enumerate|recite|itemise|name|identify +(verb)|itemise|number|list +iterate|1 +(verb)|repeat|reiterate|ingeminate|restate|retell|tell +iteration|3 +(noun)|loop|process +(noun)|looping|process +(noun)|repetition|repeating +iterative|1 +(adj)|reiterative|repetitious|repetitive|unvaried |unvarying +ithaca|2 +(noun)|Ithaca|town +(noun)|Ithaca|Ithaki|island +ithaki|1 +(noun)|Ithaca|Ithaki|island +ithunn|1 +(noun)|Idun|Ithunn|Norse deity +itinerant|3 +(adj)|unsettled +(adj)|road|touring|traveling|moving +(noun)|laborer|manual laborer|labourer|jack +itinerary|3 +(noun)|path|route|line +(noun)|travel guidebook|guidebook|guide +(noun)|travel plan|plan of action +itinerate|1 +(verb)|travel|move around +itineration|1 +(noun)|tour|circuit +itraconazole|1 +(noun)|Sporanox|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +itsy-bitsy|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|small +itty-bitty|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itsy-bitsy|small +iud|1 +(noun)|intrauterine device|IUD|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +iv|3 +(adj)|four|4|cardinal +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +(noun)|intravenous feeding|IV|feeding|alimentation +iva|1 +(noun)|marsh elder|marsh plant|bog plant|swamp plant +iva xanthifolia|1 +(noun)|burweed marsh elder|false ragweed|Iva xanthifolia|marsh elder|iva +ivan iii|1 +(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke +ivan iii vasilievich|1 +(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke +ivan iv|1 +(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar|tsar|tzar +ivan iv vasilievich|1 +(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar|tsar|tzar +ivan lendl|1 +(noun)|Lendl|Ivan Lendl|tennis player +ivan pavlov|1 +(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist +ivan petrovich pavlov|1 +(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist +ivan sergeevich turgenev|1 +(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer|author +ivan the great|1 +(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke +ivan the terrible|1 +(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar|tsar|tzar +ivan turgenev|1 +(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer|author +ivanov|1 +(noun)|Ivanov|Lev Ivanov|choreographer +ives|2 +(noun)|Ives|Charles Edward Ives|composer +(noun)|Ives|James Ives|James Merritt Ives|lithographer +ivied|1 +(adj)|ivy-covered|leafy +ivor armstrong richards|1 +(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic|semanticist|semiotician +ivory|2 +(noun)|tusk|dentine|dentin +(noun)|bone|pearl|off-white|white|whiteness +ivory-billed woodpecker|1 +(noun)|ivorybill|Campephilus principalis|woodpecker|peckerwood|pecker +ivory-nut palm|1 +(noun)|ivory palm|ivory plant|Phytelephas macrocarpa|feather palm +ivory black|1 +(noun)|pigment +ivory coast|1 +(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country|African nation +ivory coast franc|1 +(noun)|Ivory Coast franc|Cote d'Ivoire franc|franc +ivory gull|1 +(noun)|Pagophila eburnea|gull|seagull|sea gull +ivory nut|1 +(noun)|vegetable ivory|apple nut|seed +ivory palm|1 +(noun)|ivory-nut palm|ivory plant|Phytelephas macrocarpa|feather palm +ivory plant|1 +(noun)|ivory palm|ivory-nut palm|Phytelephas macrocarpa|feather palm +ivory tower|1 +(noun)|cognitive state|state of mind +ivory tree|1 +(noun)|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree +ivorybill|1 +(noun)|ivory-billed woodpecker|Campephilus principalis|woodpecker|peckerwood|pecker +ivp|2 +(noun)|intravenous pyelogram|IVP|pyelogram +(noun)|intravenous pyelography|IVP|pyelography +ivry|1 +(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle +ivry la bataille|1 +(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle +ivy|1 +(noun)|common ivy|English ivy|Hedera helix|vine +ivy-covered|1 +(adj)|ivied|leafy +ivy-leaved geranium|1 +(noun)|ivy geranium|hanging geranium|Pelargonium peltatum|geranium +ivy arum|1 +(noun)|golden pothos|pothos|Epipremnum aureum|Scindapsus aureus|liana +ivy family|1 +(noun)|Araliaceae|family Araliaceae|rosid dicot family +ivy geranium|1 +(noun)|ivy-leaved geranium|hanging geranium|Pelargonium peltatum|geranium +ivy league|1 +(noun)|Ivy League|league|conference +ivy leaguer|1 +(noun)|Ivy Leaguer|student|pupil|educatee|alumnus|alumna|alum|graduate|grad +iw|1 +(noun)|information warfare|IW|war|warfare +iwo|1 +(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault +iwo jima|2 +(noun)|Iwo Jima|island +(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault +iww|1 +(noun)|Industrial Workers of the World|IWW|I.W.W.|union|labor union|trade union|trades union|brotherhood|labor movement|trade union movement|labor +ix|2 +(adj)|nine|9|cardinal +(noun)|nine|9|IX|niner|Nina from Carolina|ennead|digit|figure +ixc|1 +(adj)|eighty-nine|89|cardinal +ixia|1 +(noun)|Ixia|genus Ixia|liliid monocot genus +ixl|1 +(adj)|thirty-nine|39|cardinal +ixobrychus|1 +(noun)|Ixobrychus|genus Ixobrychus|bird genus +ixobrychus exilis|1 +(noun)|least bittern|Ixobrychus exilis|bittern +ixodes|1 +(noun)|Ixodes|genus Ixodes|arthropod genus +ixodes dammini|1 +(noun)|Ixodes dammini|deer tick|hard tick|ixodid +ixodes dentatus|1 +(noun)|Ixodes dentatus|hard tick|ixodid +ixodes neotomae|1 +(noun)|Ixodes neotomae|hard tick|ixodid +ixodes pacificus|1 +(noun)|Ixodes pacificus|western black-legged tick|hard tick|ixodid +ixodes persulcatus|1 +(noun)|Ixodes persulcatus|hard tick|ixodid +ixodes ricinus|1 +(noun)|sheep-tick|sheep tick|Ixodes ricinus|hard tick|ixodid +ixodes scapularis|1 +(noun)|Ixodes scapularis|black-legged tick|hard tick|ixodid +ixodes spinipalpis|1 +(noun)|Ixodes spinipalpis|hard tick|ixodid +ixodid|1 +(noun)|hard tick|tick +ixodidae|1 +(noun)|Ixodidae|family Ixodidae|arthropod family +iyar|1 +(noun)|Iyar|Iyyar|Jewish calendar month +iyyar|1 +(noun)|Iyar|Iyyar|Jewish calendar month +iz al-din al-qassam battalions|1 +(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization|terrorist group|foreign terrorist organization|FTO +izaak walton|1 +(noun)|Walton|Izaak Walton|writer|author +izanagi|1 +(noun)|Izanagi|Japanese deity +izanami|1 +(noun)|Izanami|Japanese deity +izar|1 +(noun)|overgarment|outer garment +izmir|1 +(noun)|Izmir|Smyrna|city|metropolis|urban center|port +izzard|1 +(noun)|Z|zee|zed|ezed|letter|letter of the alphabet|alphabetic character +j|2 +(noun)|joule|J|watt second|work unit|heat unit|energy unit +(noun)|J|letter|letter of the alphabet|alphabetic character +j. b. rhine|1 +(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist +j. b. s. haldane|1 +(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist +j. c. maxwell|1 +(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist +j. craig ventner|1 +(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist +j. d. salinger|1 +(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer|author +j. e. johnston|1 +(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general|full general +j. edgar hoover|1 +(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer|attorney +j. j. hill|1 +(noun)|Hill|J. J. Hill|James Jerome Hill|businessman|man of affairs +j. m. barrie|1 +(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist|playwright +j. m. synge|1 +(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist|playwright|poet +j. p. morgan|1 +(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier|moneyman +j. r. firth|1 +(noun)|Firth|J. R. Firth|John Rupert Firth|linguist|linguistic scientist +j.r.r. tolkien|1 +(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist|philologue|writer|author +j particle|1 +(noun)|J particle|psi particle|meson|mesotron +jab|6 +(noun)|jabbing|poke|poking|thrust|thrusting|gesture +(noun)|punch|clout|poke|lick|biff +(noun)|dig|touch|touching +(verb)|prod|stab|poke|dig|thrust +(verb)|strike +(verb)|stab|thrust +jabalpur|1 +(noun)|Jabalpur|Jubbulpore|city|metropolis|urban center +jabat al-tahrir al-filistiniyyah|1 +(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization|terrorist group|foreign terrorist organization|FTO +jabber|2 +(noun)|jabbering|gabble|gibberish|gibber +(verb)|rant|mouth off|spout|rabbit on|rave|talk|speak|utter|mouth|verbalize|verbalise +jabberer|1 +(noun)|driveller|speaker|talker|utterer|verbalizer|verbaliser +jabbering|2 +(adj)|blathering|blithering|babbling|voluble +(noun)|jabber|gabble|gibberish|gibber +jabberwocky|1 +(noun)|nonsense|bunk|nonsensicality|meaninglessness|hokum +jabbing|1 +(noun)|jab|poke|poking|thrust|thrusting|gesture +jabiru|3 +(noun)|policeman bird|black-necked stork|Xenorhyncus asiaticus|stork +(noun)|saddlebill|Ephippiorhynchus senegalensis|stork +(noun)|Jabiru mycteria|stork +jabiru mycteria|1 +(noun)|jabiru|Jabiru mycteria|stork +jaboncillo|1 +(noun)|China tree|false dogwood|chinaberry|Sapindus saponaria|soapberry|soapberry tree +jabot|1 +(noun)|frill|flounce|ruffle|furbelow +jaboticaba|2 +(noun)|jaboticaba tree|Myrciaria cauliflora|fruit tree +(noun)|edible fruit +jaboticaba tree|1 +(noun)|jaboticaba|Myrciaria cauliflora|fruit tree +jacamar|1 +(noun)|piciform bird +jacaranda|1 +(noun)|Brazilian rosewood|caviuna wood|Dalbergia nigra|rosewood|rosewood tree +jacinth|1 +(noun)|hyacinth|zircon|zirconium silicate +jack|13 +(noun)|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +(noun)|laborer|manual laborer|labourer|workman|working man|working person +(noun)|jackfruit|jak|edible fruit +(noun)|electrical device +(noun)|game equipment +(noun)|flag +(noun)|knave|face card|picture card|court card +(noun)|tool +(noun)|carangid fish|carangid +(noun)|jackass|ass +(verb)|jack up|raise|lift|elevate|get up|bring up +(verb)|jacklight|hunt|run|hunt down|track down +jack-a-lantern|1 +(noun)|jack-o-lantern fungus|jack-o-lantern|Omphalotus illudens|agaric +jack-by-the-hedge|1 +(noun)|garlic mustard|hedge garlic|sauce-alone|Alliaria officinalis|crucifer|cruciferous plant +jack-in-the-box|1 +(noun)|plaything|toy +jack-in-the-pulpit|2 +(noun)|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum|aroid +(noun)|cuckoopint|lords-and-ladies|Arum maculatum|arum|aroid +jack-o'-lantern|2 +(noun)|friar's lantern|ignis fatuus|will-o'-the-wisp|light|visible light|visible radiation +(noun)|lantern +jack-o-lantern|1 +(noun)|jack-o-lantern fungus|jack-a-lantern|Omphalotus illudens|agaric +jack-o-lantern fungus|1 +(noun)|jack-o-lantern|jack-a-lantern|Omphalotus illudens|agaric +jack-tar|1 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +jack bean|1 +(noun)|wonder bean|giant stock bean|Canavalia ensiformis|vine +jack benny|1 +(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian|comic +jack crevalle|1 +(noun)|crevalle jack|Caranx hippos|jack +jack dempsey|1 +(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|The Manassa Mauler|prizefighter|gladiator +jack frost|1 +(noun)|Jack Frost|imaginary being|imaginary creature +jack kennedy|1 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +jack kerouac|1 +(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer|author +jack ladder|1 +(noun)|Jacob's ladder|pilot ladder|ladder +jack lemmon|1 +(noun)|Lemmon|Jack Lemmon|John Uhler|actor|histrion|player|thespian|role player +jack london|1 +(noun)|London|Jack London|John Griffith Chaney|writer|author +jack mackerel|1 +(noun)|horse mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad +jack nicklaus|1 +(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer|golf player|linksman +jack oak|2 +(noun)|blackjack oak|blackjack|Quercus marilandica|scrub oak +(noun)|northern pin oak|Quercus ellipsoidalis|oak|oak tree +jack of all trades|2 +(noun)|Jack of all trades|adult|grownup +(noun)|handyman|odd-job man|repairman|repairer|maintenance man|service man|fixer +jack off|1 +(verb)|masturbate|wank|fuck off|she-bop|jerk off|stimulate|excite|stir +jack pine|1 +(noun)|Pinus banksiana|pine|pine tree|true pine +jack plane|1 +(noun)|plane|carpenter's plane|woodworking plane +jack roosevelt robinson|1 +(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer|baseball player +jack salmon|1 +(noun)|walleye|walleyed pike|Stizostedion vitreum|pike-perch|pike perch +jack the ripper|1 +(noun)|Jack the Ripper|murderer|liquidator|manslayer +jack up|1 +(verb)|jack|raise|lift|elevate|get up|bring up +jack william nicklaus|1 +(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer|golf player|linksman +jackal|1 +(noun)|Canis aureus|canine|canid +jackanapes|1 +(noun)|whippersnapper|lightweight|cipher|cypher|nobody|nonentity +jackass|2 +(noun)|fathead|goof|goofball|bozo|goose|cuckoo|twat|zany|fool|sap|saphead|muggins|tomfool +(noun)|jack|ass +jackass bat|1 +(noun)|spotted bat|Euderma maculata|vespertilian bat|vespertilionid +jackass penguin|1 +(noun)|Spheniscus demersus|penguin +jackboot|1 +(noun)|Hessian boot|hessian|Wellington|Wellington boot|boot +jackdaw|1 +(noun)|daw|Corvus monedula|corvine bird +jacket|7 +(noun)|coat +(noun)|wrapping|wrap|wrapper +(noun)|jacket crown|crown +(noun)|peel|skin +(noun)|shell|case|casing +(verb)|cover +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +jacket crown|1 +(noun)|jacket|crown +jacket potato|1 +(noun)|baked potato +jackfruit|2 +(noun)|jackfruit tree|Artocarpus heterophyllus|fruit tree +(noun)|jak|jack|edible fruit +jackfruit tree|1 +(noun)|jackfruit|Artocarpus heterophyllus|fruit tree +jackhammer|1 +(noun)|air hammer|pneumatic hammer|hammer|power hammer +jackie robinson|1 +(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer|baseball player +jacking off|1 +(noun)|jerking off|hand job|wank|masturbation|onanism|self-abuse +jackknife|3 +(noun)|clasp knife|pocketknife|pocket knife +(noun)|dive|diving +(verb)|dive +jackknife-fish|1 +(noun)|Equetus lanceolatus|drum|drumfish +jackknife clam|1 +(noun)|razor clam|knife-handle|clam +jacklight|2 +(noun)|light|light source +(verb)|jack|hunt|run|hunt down|track down +jackpot|2 +(noun)|pot|kitty|stake|stakes|bet|wager +(noun)|prize|award +jackrabbit|1 +(noun)|hare +jacks|13 +(noun)|jackstones|plaything|toy +(noun)|jackstones|knucklebones|child's game +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity|small indefinite amount +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +(noun)|laborer|manual laborer|labourer|jack|workman|working man|working person +(noun)|jackfruit|jak|jack|edible fruit +(noun)|jack|electrical device +(noun)|jack|game equipment +(noun)|jack|flag +(noun)|jack|knave|face card|picture card|court card +(noun)|jack|tool +(noun)|jack|carangid fish|carangid +(noun)|jack|jackass|ass +jackscrew|1 +(noun)|screw jack|jack +jacksmelt|1 +(noun)|Atherinopsis californiensis|silverside|silversides +jacksnipe|2 +(noun)|half snipe|Limnocryptes minima|snipe +(noun)|pectoral sandpiper|Calidris melanotos|sandpiper +jackson|11 +(noun)|Jackson|Glenda Jackson|actress|politician|politico|pol|political leader +(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer|vocalist|vocalizer|vocaliser +(noun)|Jackson|Mahalia Jackson|singer|vocalist|vocalizer|vocaliser +(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader|civil rights worker|civil rights activist|politician|politico|pol|political leader +(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer|author +(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general|full general +(noun)|Jackson|Andrew Jackson|Old Hickory|general|full general|President of the United States|United States President|President|Chief Executive +(noun)|Jackson|town +(noun)|Jackson|town +(noun)|Jackson|capital of Mississippi|state capital +(noun)|Jackson|town +jackson pollock|1 +(noun)|Pollock|Jackson Pollock|painter +jacksonia|1 +(noun)|Jacksonia|genus Jacksonia|rosid dicot genus +jacksonian|1 +(adj)|Jacksonian|general|full general|President of the United States|United States President|President|Chief Executive +jacksonian epilepsy|1 +(noun)|Jacksonian epilepsy|cortical epilepsy|focal epilepsy +jacksonville|1 +(noun)|Jacksonville|city|metropolis|urban center|port of entry|point of entry +jackstones|2 +(noun)|jacks|plaything|toy +(noun)|jacks|knucklebones|child's game +jackstraw|1 +(noun)|spillikin|strip +jackstraws|2 +(noun)|spillikins|child's game +(noun)|jackstraw|spillikin|strip +jacob|2 +(noun)|Jacob|Francois Jacob|biochemist +(noun)|Jacob|patriarch +jacob's ladder|2 +(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +(noun)|Jacob's ladder|jack ladder|pilot ladder|ladder +jacob's rod|1 +(noun)|Jacob's rod|asphodel +jacob's staff|1 +(noun)|ocotillo|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood +jacob epstein|1 +(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor|sculpturer|carver|statue maker +jacob harmensen|1 +(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian|theologist|theologizer|theologiser +jacobean|2 +(adj)|Jacobean|King of England|King of Great Britain +(noun)|Jacobean|Englishman +jacobean lily|1 +(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis +jacobi|1 +(noun)|Jacobi|Karl Gustav Jacob Jacobi|mathematician +jacobin|1 +(noun)|Jacobin|terrorist +jacobinic|1 +(adj)|Jacobinic|Jacobinical|terrorist +jacobinical|1 +(adj)|Jacobinic|Jacobinical|terrorist +jacobinism|1 +(noun)|Jacobinism|radicalism +jacobite|1 +(noun)|Jacobite|supporter|protagonist|champion|admirer|booster|friend +jacobs|5 +(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer|author +(noun)|Jacobs|Jane Jacobs|writer|author +(noun)|Jacobs|Aletta Jacobs|doctor|doc|physician|MD|Dr.|medico +(noun)|Jacob|Francois Jacob|biochemist +(noun)|Jacob|patriarch +jacobus arminius|1 +(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian|theologist|theologizer|theologiser +jaconet|1 +(noun)|fabric|cloth|material|textile +jacopo robusti|1 +(noun)|Tintoretto|Jacopo Robusti|old master +jacquard|3 +(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor|discoverer|artificer +(noun)|fabric|cloth|material|textile +(noun)|Jacquard loom|Jacquard|loom +jacquard loom|1 +(noun)|Jacquard loom|Jacquard|loom +jacqueline cochran|1 +(noun)|Cochran|Jacqueline Cochran|aviator|aeronaut|airman|flier|flyer +jacquemier's sign|1 +(noun)|Jacquemier's sign|symptom +jacques alexandre cesar charles|1 +(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist +jacques anatole francois thibault|1 +(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer|author +jacques bernoulli|1 +(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician +jacques cartier|1 +(noun)|Cartier|Jacques Cartier|navigator +jacques charles|1 +(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist +jacques costeau|1 +(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer|adventurer +jacques derrida|1 +(noun)|Derrida|Jacques Derrida|philosopher|literary critic +jacques etienne montgolfier|1 +(noun)|Montgolfier|Jacques Etienne Montgolfier|balloonist +jacques francois antoine ibert|1 +(noun)|Ibert|Jacques Francois Antoine Ibert|composer +jacques francois fromental elie halevy|1 +(noun)|Halevy|Fromental Halevy|Jacques Francois Fromental Elie Halevy|composer +jacques germain soufflot|1 +(noun)|Soufflot|Jacques Germain Soufflot|architect|designer +jacques lipchitz|1 +(noun)|Lipchitz|Jacques Lipchitz|sculptor|sculpturer|carver|statue maker +jacques loeb|1 +(noun)|Loeb|Jacques Loeb|physiologist +jacques louis david|1 +(noun)|David|Jacques Louis David|painter +jacques lucien monod|1 +(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist +jacques marquette|1 +(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary|missioner +jacques monod|1 +(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist +jacques offenbach|1 +(noun)|Offenbach|Jacques Offenbach|composer +jacques tati|1 +(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker|filmmaker|film producer|movie maker +jacques tatischeff|1 +(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker|filmmaker|film producer|movie maker +jacques yves costeau|1 +(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer|adventurer +jacquinia|1 +(noun)|Jacquinia|genus Jacquinia|dicot genus|magnoliopsid genus +jacquinia armillaris|1 +(noun)|bracelet wood|Jacquinia armillaris|shrub|bush +jacquinia keyensis|1 +(noun)|barbasco|joewood|Jacquinia keyensis|shrub|bush +jactation|1 +(noun)|jactitation|restlessness|uneasiness +jactitate|1 +(verb)|convulse|thresh|thresh about|thrash|thrash about|slash|toss|shake|agitate +jactitation|3 +(noun)|boast|boasting|self-praise|speech act +(noun)|lie|prevarication +(noun)|jactation|restlessness|uneasiness +jaculus|1 +(noun)|Jaculus|genus Jaculus|mammal genus +jaculus jaculus|1 +(noun)|Jaculus jaculus|jerboa +jacuzzi|1 +(noun)|Jacuzzi|bathtub|bathing tub|bath|tub +jade|7 +(adj)|jade-green|chromatic +(noun)|jadestone|opaque gem +(noun)|adulteress|fornicatress|hussy|loose woman|slut|strumpet|trollop|adulterer|fornicator +(noun)|jade green|green|greenness|viridity +(noun)|hack|nag|plug|horse|Equus caballus +(verb)|tire|pall|weary|fatigue|devolve|deteriorate|drop|degenerate +(verb)|tire|wear upon|tire out|wear|weary|wear out|outwear|wear down|fag out|fag|fatigue|indispose +jade-green|1 +(adj)|jade|chromatic +jade green|1 +(noun)|jade|green|greenness|viridity +jade vine|1 +(noun)|emerald creeper|Strongylodon macrobotrys|liana +jaded|2 +(adj)|wearied|tired +(adj)|satiate |satiated +jadeite|1 +(noun)|mineral +jadestone|1 +(noun)|jade|opaque gem +jaeger|1 +(noun)|coastal diving bird +jafar|1 +(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist +jafar umar thalib|1 +(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist +jaffa|1 +(noun)|Jaffa|Joppa|Yafo|city|metropolis|urban center|port +jaffa orange|1 +(noun)|Jaffa orange|sweet orange +jaffar|1 +(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist +jaffar umar thalib|1 +(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist +jafnea semitosta|1 +(noun)|Jafnea semitosta|discomycete|cup fungus +jag|5 +(noun)|projection +(noun)|slit +(noun)|dag|flap +(noun)|intemperance|intemperateness|self-indulgence +(verb)|cut +jagannath|1 +(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar +jagannatha|1 +(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar +jagatai|1 +(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki|Turkic|Turko-Tatar|Turkic language +jagganath|1 +(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar +jaggary|1 +(noun)|jaggery|jagghery|carbohydrate|saccharide|sugar +jagged|2 +(adj)|jaggy|scraggy|uneven +(adj)|erose|jaggy|notched|toothed|rough +jaggedly|1 +(adv)|raggedly +jaggedness|1 +(noun)|unevenness|variability +jagger|1 +(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star +jaggery|1 +(noun)|jagghery|jaggary|carbohydrate|saccharide|sugar +jaggery palm|1 +(noun)|wine palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm +jagghery|1 +(noun)|jaggery|jaggary|carbohydrate|saccharide|sugar +jaggy|2 +(adj)|erose|jagged|notched|toothed|rough +(adj)|jagged|scraggy|uneven +jaghatai|1 +(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki|Turkic|Turko-Tatar|Turkic language +jagua|1 +(noun)|genipap fruit|marmalade box|Genipa Americana|genipa +jaguar|1 +(noun)|panther|Panthera onca|Felis onca|big cat|cat +jaguarondi|1 +(noun)|jaguarundi|jaguarundi cat|eyra|Felis yagouaroundi|wildcat +jaguarundi|1 +(noun)|jaguarundi cat|jaguarondi|eyra|Felis yagouaroundi|wildcat +jaguarundi cat|1 +(noun)|jaguarundi|jaguarondi|eyra|Felis yagouaroundi|wildcat +jahvey|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +jahweh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +jai alai|1 +(noun)|pelota|court game +jail|2 +(noun)|jailhouse|gaol|clink|slammer|correctional institution +(verb)|imprison|incarcerate|lag|immure|put behind bars|jug|gaol|put away|remand|confine|detain +jail cell|1 +(noun)|cell|prison cell|room +jail delivery|1 +(noun)|liberation|release|freeing +jailbird|1 +(noun)|convict|con|inmate|gaolbird|prisoner|captive +jailbreak|1 +(noun)|break|breakout|gaolbreak|prisonbreak|prison-breaking|escape|flight +jailed|1 +(adj)|captive|confined|imprisoned|unfree +jailer|1 +(noun)|prison guard|jailor|gaoler|screw|turnkey|lawman|law officer|peace officer|keeper +jailhouse|1 +(noun)|jail|gaol|clink|slammer|correctional institution +jailor|1 +(noun)|prison guard|jailer|gaoler|screw|turnkey|lawman|law officer|peace officer|keeper +jain|1 +(adj)|Jain|Jainist|religion|faith|religious belief +jainism|2 +(noun)|Jainism|sect|religious sect|religious order +(noun)|Jainism|religion|faith|religious belief +jainist|2 +(adj)|Jain|Jainist|religion|faith|religious belief +(noun)|Jainist|disciple|adherent +jaish-e-muhammad|1 +(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization|terrorist group|foreign terrorist organization|FTO +jaish-i-mohammed|1 +(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization|terrorist group|foreign terrorist organization|FTO +jak|1 +(noun)|jackfruit|jack|edible fruit +jakarta|1 +(noun)|Jakarta|Djakarta|capital of Indonesia|national capital +jakes|1 +(noun)|outhouse|privy|earth-closet|outbuilding +jakob-creutzfeldt disease|1 +(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder|encephalopathy|brain disease +jakob behmen|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +jakob bernoulli|1 +(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician +jakob boehm|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +jakob boehme|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +jakob bohme|1 +(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic|religious mystic +jakob grimm|1 +(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer|author|linguist|linguistic scientist +jakob hermandszoon|1 +(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian|theologist|theologizer|theologiser +jakob liebmann beer|1 +(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer +jakob ludwig felix mendelssohn-bartholdy|1 +(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer +jakob ludwig karl grimm|1 +(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer|author|linguist|linguistic scientist +jakobson|1 +(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist|linguistic scientist +jalalabad|1 +(noun)|Jalalabad|town +jalapeno|2 +(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|long pepper|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +(noun)|jalapeno pepper|chili|chili pepper|chilli|chilly|chile +jalapeno pepper|1 +(noun)|jalapeno|chili|chili pepper|chilli|chilly|chile +jalopy|1 +(noun)|bus|heap|car|auto|automobile|machine|motorcar|dysphemism +jalousie|2 +(noun)|louvered window|window +(noun)|shutter +jam|11 +(noun)|conserve|preserve|conserves|preserves +(noun)|fix|hole|mess|muddle|pickle|kettle of fish|difficulty +(noun)|crush|press|crowd +(noun)|jamming|electronic jamming|electronic countermeasures|ECM +(verb)|throng|mob|pack|pile|crowd|crowd together +(verb)|push|force +(verb)|crush|bruise|contuse +(verb)|block|interrupt|disrupt|break up|cut off +(verb)|malfunction|misfunction +(verb)|jampack|ram|chock up|cram|wad|stuff +(verb)|obstruct|obturate|impede|occlude|block|close up|impede|hinder +jam-pawncked|1 +(adj)|jammed|packed|crowded +jam session|1 +(noun)|musical performance +jamaat ul-fuqra|1 +(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization|terrorist group|foreign terrorist organization|FTO +jamaica|2 +(noun)|Jamaica|country|state|land +(noun)|Jamaica|island +jamaica apple|1 +(noun)|bullock's heart|Jamaica apple|custard apple +jamaica bayberry|1 +(noun)|bayberry|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree +jamaica caper tree|1 +(noun)|caper tree|Jamaica caper tree|Capparis cynophallophora|caper +jamaica dogwood|1 +(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree +jamaica honeysuckle|1 +(noun)|Jamaica honeysuckle|yellow granadilla|Passiflora laurifolia|passionflower|passionflower vine +jamaica quassia|2 +(noun)|Jamaica quassia|quassia +(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree +jamaica rum|1 +(noun)|Jamaica rum|rum +jamaica shorts|1 +(noun)|Bermuda shorts|Jamaica shorts|short pants|shorts|trunks +jamaica sorrel|1 +(noun)|roselle|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +jamaican|2 +(adj)|Jamaican|country|state|land +(noun)|Jamaican|West Indian +jamaican capital|1 +(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital +jamaican cherry|1 +(noun)|Jamaican cherry|calabur tree|calabura|silk wood|silkwood|Muntingia calabura|tree +jamaican dollar|1 +(noun)|Jamaican dollar|dollar +jamais vu|1 +(noun)|confusion|mental confusion|confusedness|disarray +jamb|1 +(noun)|upright|vertical +jambalaya|1 +(noun)|dish +jambeau|1 +(noun)|greave|greaves|armor plate|armour plate|armor plating|plate armor|plate armour +jamberry|2 +(noun)|tomatillo|miltomate|purple ground cherry|Physalis philadelphica|ground cherry|husk tomato +(noun)|tomatillo|Mexican husk tomato|Physalis ixocarpa|ground cherry|husk tomato +jambon|1 +(noun)|ham|gammon|cut of pork +jamboree|1 +(noun)|gala|gala affair|blowout|celebration|festivity +jambos|1 +(noun)|Jambos|genus Jambos|dicot genus|magnoliopsid genus +jambosa|1 +(noun)|rose apple|rose-apple tree|Eugenia jambos|fruit tree +james|7 +(noun)|James|Jesse James|criminal|felon|crook|outlaw|malefactor +(noun)|James|William James|psychologist|philosopher +(noun)|James|Henry James|writer|author +(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle|saint +(noun)|James|James River|river +(noun)|James|James River|river +(noun)|Epistle of James|James|book +james a. garfield|1 +(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States|United States President|President|Chief Executive +james abbott mcneill whistler|1 +(noun)|Whistler|James Abbott McNeill Whistler|painter +james abraham garfield|1 +(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States|United States President|President|Chief Executive +james agee|1 +(noun)|Agee|James Agee|novelist +james albert michener|1 +(noun)|Michener|James Michener|James Albert Michener|writer|author +james alfred van allen|1 +(noun)|Van Allen|James Alfred Van Allen|physicist +james arthur baldwin|1 +(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer|author +james augustine aloysius joyce|1 +(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer|author +james augustus henry murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +james augustus murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +james baldwin|1 +(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer|author +james barrie|1 +(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist|playwright +james bay|1 +(noun)|James Bay|bay +james bernoulli|1 +(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician +james bond|1 +(noun)|Bond|James Bond|fictional character|fictitious character|character +james boswell|1 +(noun)|Boswell|James Boswell|writer|author +james bowie|1 +(noun)|Bowie|Jim Bowie|James Bowie|pioneer +james branch cabell|1 +(noun)|Cabell|James Branch Cabell|writer|author +james buchanan|1 +(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States|United States President|President|Chief Executive +james buchanan brady|1 +(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier|moneyman +james butler hickock|1 +(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal|marshall +james byron dean|1 +(noun)|Dean|James Dean|James Byron Dean|actor|histrion|player|thespian|role player +james cagney|1 +(noun)|Cagney|Jimmy Cagney|James Cagney|actor|histrion|player|thespian|role player +james clark ross|1 +(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer|adventurer +james clerk maxwell|1 +(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist +james cleveland owens|1 +(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete|jock +james cook|1 +(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator +james crichton|1 +(noun)|Crichton|James Crichton|The Admirable Crichton|scholar|scholarly person|student +james dean|1 +(noun)|Dean|James Dean|James Byron Dean|actor|histrion|player|thespian|role player +james dewey watson|1 +(noun)|Watson|James Watson|James Dewey Watson|geneticist +james douglas morrison|1 +(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star +james earl carter|1 +(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States|United States President|President|Chief Executive +james earl carter jr.|1 +(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States|United States President|President|Chief Executive +james edmund scripps|1 +(noun)|Scripps|James Edmund Scripps|publisher|newspaper publisher +james edward meade|1 +(noun)|Meade|James Edward Meade|economist|economic expert +james fenimore cooper|1 +(noun)|Cooper|James Fenimore Cooper|writer|author +james francis thorpe|1 +(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete|jock +james franck|1 +(noun)|Franck|James Franck|physicist +james garfield|1 +(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States|United States President|President|Chief Executive +james george frazer|1 +(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist +james grover thurber|1 +(noun)|Thurber|James Thurber|James Grover Thurber|humorist|humourist|cartoonist +james hargreaves|1 +(noun)|Hargreaves|James Hargreaves|inventor|discoverer|artificer +james harold doolittle|1 +(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator|aeronaut|airman|flier|flyer|general|full general +james harvey robinson|1 +(noun)|Robinson|James Harvey Robinson|historian|historiographer +james henry leigh hunt|1 +(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer|author +james hogg|1 +(noun)|Hogg|James Hogg|poet +james howard meredith|1 +(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader|civil rights worker|civil rights activist +james hutton|1 +(noun)|Hutton|James Hutton|geologist +james i|1 +(noun)|James I|King of England|King of Great Britain +james ii|1 +(noun)|James II|King of England|King of Great Britain +james iv|1 +(noun)|James IV|king|male monarch +james ives|1 +(noun)|Ives|James Ives|James Merritt Ives|lithographer +james jerome hill|1 +(noun)|Hill|J. J. Hill|James Jerome Hill|businessman|man of affairs +james john corbett|1 +(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter|gladiator +james joseph tunney|1 +(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter|gladiator +james joyce|1 +(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer|author +james k. polk|1 +(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States|United States President|President|Chief Executive +james knox polk|1 +(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States|United States President|President|Chief Executive +james langston hughes|1 +(noun)|Hughes|Langston Hughes|James Langston Hughes|writer|author +james leonard farmer|1 +(noun)|Farmer|James Leonard Farmer|civil rights leader|civil rights worker|civil rights activist +james madison|1 +(noun)|Madison|James Madison|President Madison|President of the United States|United States President|President|Chief Executive +james maitland stewart|1 +(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor|histrion|player|thespian|role player +james marshall hendrix|1 +(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist|guitar player +james mason|1 +(noun)|Mason|James Mason|James Neville Mason|actor|histrion|player|thespian|role player +james matthew barrie|1 +(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist|playwright +james mckeen cattell|1 +(noun)|Cattell|James McKeen Cattell|psychologist|editor|editor in chief +james meredith|1 +(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader|civil rights worker|civil rights activist +james merritt ives|1 +(noun)|Ives|James Ives|James Merritt Ives|lithographer +james michener|1 +(noun)|Michener|James Michener|James Albert Michener|writer|author +james mill|1 +(noun)|Mill|James Mill|philosopher +james monroe|1 +(noun)|Monroe|James Monroe|President Monroe|President of the United States|United States President|President|Chief Executive +james murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +james naismith|1 +(noun)|Naismith|James Naismith|educator|pedagogue +james neville mason|1 +(noun)|Mason|James Mason|James Neville Mason|actor|histrion|player|thespian|role player +james parkinson|1 +(noun)|Parkinson|James Parkinson|surgeon|operating surgeon|sawbones +james polk|1 +(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States|United States President|President|Chief Executive +james prescott joule|1 +(noun)|Joule|James Prescott Joule|physicist +james riddle hoffa|1 +(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader +james river|2 +(noun)|James|James River|river +(noun)|James|James River|river +james scott connors|1 +(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player +james thomas farrell|1 +(noun)|Farrell|James Thomas Farrell|writer|author +james thomas harris|1 +(noun)|Harris|Frank Harris|James Thomas Harris|writer|author +james thurber|1 +(noun)|Thurber|James Thurber|James Grover Thurber|humorist|humourist|cartoonist +james tobin|1 +(noun)|Tobin|James Tobin|economist|economic expert +james usher|1 +(noun)|Ussher|James Ussher|Usher|James Usher|archpriest|hierarch|high priest|prelate|primate +james ussher|1 +(noun)|Ussher|James Ussher|Usher|James Usher|archpriest|hierarch|high priest|prelate|primate +james watson|1 +(noun)|Watson|James Watson|James Dewey Watson|geneticist +james watt|1 +(noun)|Watt|James Watt|engineer|applied scientist|technologist|inventor|discoverer|artificer +james whitcomb riley|1 +(noun)|Riley|James Whitcomb Riley|poet +james william fulbright|1 +(noun)|Fulbright|William Fulbright|James William Fulbright|senator +james wilson|1 +(noun)|Wilson|James Wilson|American Revolutionary leader +james wyatt|1 +(noun)|Wyatt|James Wyatt|architect|designer +jamesonia|1 +(noun)|Jamesonia|genus Jamesonia|fern genus +jamestown|1 +(noun)|Jamestown|village|hamlet +jamestown weed|1 +(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple +jamison|1 +(noun)|Jamison|Judith Jamison|dancer|professional dancer|choreographer +jamjar|1 +(noun)|jampot|jar +jammed|1 +(adj)|jam-pawncked|packed|crowded +jammer|1 +(noun)|transmitter|sender +jammies|1 +(noun)|pajamas|pyjamas|pj's|nightclothes|nightwear +jamming|1 +(noun)|electronic jamming|jam|electronic countermeasures|ECM +jammu and kashmir|1 +(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area|geographic area|geographical region|geographic region +jampack|1 +(verb)|jam|ram|chock up|cram|wad|stuff +jampan|1 +(noun)|sedan|sedan chair +jampot|1 +(noun)|jamjar|jar +jan|1 +(noun)|January|Jan|Gregorian calendar month +jan amos komensky|1 +(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator|pedagogue +jan christian smuts|1 +(noun)|Smuts|Jan Christian Smuts|soldier|statesman|solon|national leader +jan evangelista purkinje|1 +(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist +jan hendrix oort|1 +(noun)|Oort|Jan Hendrix Oort|astronomer|uranologist|stargazer +jan hus|1 +(noun)|Huss|John Huss|Hus|Jan Hus|reformer|reformist|crusader|meliorist +jan swammerdam|1 +(noun)|Swammerdam|Jan Swammerdam|naturalist|natural scientist|microscopist +jan tinbergen|1 +(noun)|Tinbergen|Jan Tinbergen|economist|economic expert +jan van der meer|1 +(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master +jan van eyck|1 +(noun)|Eyck|van Eyck|Jan van Eyck|old master +jan vermeer|1 +(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master +jane austen|1 +(noun)|Austen|Jane Austen|writer|author +jane doe|1 +(noun)|Jane Doe|party +jane fonda|1 +(noun)|Fonda|Jane Fonda|actress +jane goodall|1 +(noun)|Goodall|Jane Goodall|zoologist|animal scientist +jane jacobs|1 +(noun)|Jacobs|Jane Jacobs|writer|author +jane seymour|1 +(noun)|Seymour|Jane Seymour|queen +jangle|2 +(noun)|jingle|sound +(verb)|jingle|jingle-jangle|make noise|resound|noise +jangling|1 +(adj)|jangly|cacophonous |cacophonic +jangly|1 +(adj)|jangling|cacophonous |cacophonic +janis joplin|1 +(noun)|Joplin|Janis Joplin|singer|vocalist|vocalizer|vocaliser +janissary|2 +(noun)|follower +(noun)|Janissary|soldier +janitor|1 +(noun)|custodian|keeper|steward +jansen|1 +(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian|theologist|theologizer|theologiser +jansenism|1 +(noun)|Jansenism|theological doctrine|religious doctrine +jansenist|1 +(noun)|Jansenist|advocate|advocator|proponent|exponent +january|1 +(noun)|January|Jan|Gregorian calendar month +january 1|3 +(noun)|Circumcision|Feast of the Circumcision|January 1|feast day|fete day +(noun)|Solemnity of Mary|January 1|holy day of obligation +(noun)|New Year's Day|New Year's|January 1|legal holiday|national holiday +january 19|1 +(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day +january 20|2 +(noun)|Saint Agnes's Eve|January 20|Christian holy day +(noun)|Inauguration Day|January 20|day +january 6|1 +(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day +janus|1 +(noun)|Janus|Roman deity +janus-faced|3 +(adj)|Janus-faced|bipolar +(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest |dishonorable +(adj)|Janus-faced|two-faced|faced +jap|1 +(noun)|Jap|Nip|Japanese|Nipponese +jap clover|1 +(noun)|japanese clover|japan clover|Lespedeza striata|bush clover|lespedeza +japan|5 +(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago +(noun)|Japan|Nippon|Nihon|Asian country|Asian nation +(noun)|lacquerware +(noun)|lacquer +(verb)|lacquer +japan allspice|1 +(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub|bush +japan bittersweet|1 +(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine +japan cedar|1 +(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar|cedar tree +japan clover|1 +(noun)|japanese clover|jap clover|Lespedeza striata|bush clover|lespedeza +japan current|1 +(noun)|Japan current|Kuroshio current|Kuroshio|ocean current +japan tallow|1 +(noun)|Japan wax|Japan tallow|wax +japan trench|1 +(noun)|Japan Trench|trench|deep|oceanic abyss +japan wax|1 +(noun)|Japan wax|Japan tallow|wax +japanese|3 +(adj)|Japanese|Nipponese|Asian country|Asian nation +(noun)|Japanese|Nipponese|Asian|Asiatic +(noun)|Japanese|Altaic|Altaic language +japanese-speaking|1 +(adj)|Japanese-speaking|communicative |communicatory +japanese allspice|1 +(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub|bush +japanese andromeda|1 +(noun)|andromeda|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub|bush +japanese angelica tree|1 +(noun)|Japanese angelica tree|Aralia elata|shrub|bush +japanese apricot|1 +(noun)|Japanese apricot|mei|Prunus mume|apricot|apricot tree +japanese archipelago|1 +(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago +japanese banana|1 +(noun)|Japanese banana|Musa basjoo|banana|banana tree +japanese barberry|1 +(noun)|Japanese barberry|Berberis thunbergii|barberry +japanese barnyard millet|1 +(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet +japanese beech|1 +(noun)|Japanese beech|beech|beech tree +japanese beetle|1 +(noun)|Japanese beetle|Popillia japonica|scarabaeid beetle|scarabaeid|scarabaean +japanese bittersweet|1 +(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine +japanese black pine|1 +(noun)|Japanese black pine|black pine|Pinus thunbergii|pine|pine tree|true pine +japanese brome|1 +(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome|bromegrass +japanese capital|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +japanese carpet grass|1 +(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia +japanese cedar|1 +(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar|cedar tree +japanese cherry|1 +(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry +japanese chess|1 +(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome|bromegrass +japanese chestnut|1 +(noun)|Japanese chestnut|Castanea crenata|chestnut|chestnut tree +japanese clover|1 +(noun)|japan clover|jap clover|Lespedeza striata|bush clover|lespedeza +japanese crab|1 +(noun)|Japanese crab|crab|crabmeat +japanese deer|1 +(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer|cervid +japanese deity|1 +(noun)|Japanese deity|deity|divinity|god|immortal +japanese flowering cherry|2 +(noun)|Japanese flowering cherry|Prunus sieboldii|flowering cherry +(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry +japanese honeysuckle|1 +(noun)|Japanese honeysuckle|Lonicera japonica|honeysuckle +japanese hop|1 +(noun)|Japanese hop|Humulus japonicus|hop|hops +japanese iris|1 +(noun)|Japanese iris|Iris kaempferi|beardless iris +japanese islands|1 +(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago +japanese ivy|1 +(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine +japanese lacquer tree|1 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +japanese lawn grass|1 +(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia +japanese leaf|1 +(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant +japanese leek|1 +(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion|onion plant|Allium cepa +japanese lilac|1 +(noun)|Japanese lilac|Syringa villosa|lilac +japanese lime|1 +(noun)|Japanese linden|Japanese lime|Tilia japonica|linden|linden tree|basswood|lime|lime tree +japanese linden|1 +(noun)|Japanese linden|Japanese lime|Tilia japonica|linden|linden tree|basswood|lime|lime tree +japanese maple|2 +(noun)|Japanese maple|Acer palmatum|maple +(noun)|Japanese maple|full moon maple|Acer japonicum|maple +japanese medlar|1 +(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree +japanese millet|1 +(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet +japanese monetary unit|1 +(noun)|Japanese monetary unit|monetary unit +japanese morning glory|1 +(noun)|Japanese morning glory|Ipomoea nil|morning glory +japanese oak|2 +(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak|oak tree +(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak|Lithocarpus densiflorus +japanese oyster|1 +(noun)|Japanese oyster|Ostrea gigas|oyster +japanese pagoda tree|1 +(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree +japanese persimmon|1 +(noun)|Japanese persimmon|kaki|Diospyros kaki|persimmon|persimmon tree +japanese pink|1 +(noun)|Japanese pink|Dianthus chinensis heddewigii|china pink|rainbow pink|Dianthus chinensis +japanese plum|3 +(noun)|Japanese plum|Prunus salicina|plum|plum tree +(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree +(noun)|loquat|Japanese plum|edible fruit +japanese poinsettia|1 +(noun)|Japanese poinsettia|mole plant|paint leaf|Euphorbia heterophylla|spurge +japanese privet|1 +(noun)|Japanese privet|Ligustrum japonicum|privet +japanese quince|1 +(noun)|Japanese quince|Chaenomeles speciosa|flowering quince +japanese radish|1 +(noun)|daikon|Japanese radish|Raphanus sativus longipinnatus|radish plant +japanese red army|1 +(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization|terrorist group|foreign terrorist organization|FTO +japanese red pine|1 +(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine|pine tree|true pine +japanese rose|1 +(noun)|multiflora|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose +japanese snowbell|1 +(noun)|Japanese snowbell|Styrax japonicum|styrax +japanese spaniel|1 +(noun)|Japanese spaniel|toy dog|toy +japanese spurge|1 +(noun)|Japanese spurge|Pachysandra terminalis|pachysandra +japanese stranglehold|1 +(noun)|Japanese stranglehold|wrestling hold +japanese sumac|1 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +japanese table pine|1 +(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine|pine tree|true pine +japanese tree lilac|1 +(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac +japanese umbrella pine|1 +(noun)|Japanese umbrella pine|Sciadopitys verticillata|conifer|coniferous tree +japanese varnish tree|2 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree +japanese wistaria|1 +(noun)|Japanese wistaria|Wisteria floribunda|wisteria|wistaria +japanese yew|1 +(noun)|Japanese yew|Taxus cuspidata|yew +jape|1 +(noun)|joke|gag|laugh|jest|wit|humor|humour|witticism|wittiness +japheth|1 +(noun)|Japheth|man|adult male +japonica|2 +(noun)|Camellia japonica|camellia|camelia +(noun)|maule's quince|Chaenomeles japonica|flowering quince +jar|8 +(noun)|vessel +(noun)|jarful|containerful +(noun)|jolt|jounce|bump|blow +(verb)|clash|collide|conflict +(verb)|jolt|move +(verb)|shake up|bump around|move|displace +(verb)|affect|impress|move|strike +(verb)|put|set|place|pose|position|lay +jar against|1 +(verb)|run into|bump into|butt against|knock against|hit|strike|impinge on|run into|collide with +jarful|1 +(noun)|jar|containerful +jargon|3 +(noun)|cant|slang|lingo|argot|patois|vernacular|non-standard speech +(noun)|jargoon|zircon|zirconium silicate +(noun)|expressive style|style +jargoon|1 +(noun)|jargon|zircon|zirconium silicate +jaroslav hasek|1 +(noun)|Hasek|Jaroslav Hasek|writer|author +jarrell|1 +(noun)|Jarrell|Randall Jarrell|poet +jarring|2 +(adj)|cacophonous |cacophonic +(adj)|bumpy|jolting|jolty|rough |unsmooth +jarvik artificial heart|1 +(noun)|Jarvik heart|Jarvik artificial heart|artificial heart +jarvik heart|1 +(noun)|Jarvik heart|Jarvik artificial heart|artificial heart +jasmine|1 +(noun)|shrub|bush +jasmine tobacco|1 +(noun)|flowering tobacco|Jasmine tobacco|Nicotiana alata|tobacco +jasminum|1 +(noun)|Jasminum|genus Jasminum|dicot genus|magnoliopsid genus +jasminum mesnyi|1 +(noun)|primrose jasmine|Jasminum mesnyi|jasmine +jasminum nudiflorum|1 +(noun)|winter jasmine|Jasminum nudiflorum|jasmine +jasminum officinale|1 +(noun)|common jasmine|true jasmine|jessamine|Jasminum officinale|jasmine +jasminum sambac|1 +(noun)|Arabian jasmine|Jasminum sambac|jasmine +jason|1 +(noun)|Jason|mythical being +jasper|1 +(noun)|opaque gem +jasper johns|1 +(noun)|Johns|Jasper Johns|artist|creative person +jaspers|2 +(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist|head-shrinker|shrink +(noun)|jasper|opaque gem +jassid|1 +(noun)|leafhopper +jassidae|1 +(noun)|Jassidae|family Jassidae|arthropod family +jat|1 +(noun)|Jat|person|individual|someone|somebody|mortal|human|soul +jati|1 +(noun)|caste +jatropha|1 +(noun)|Jatropha|genus Jatropha|rosid dicot genus +jatropha curcus|1 +(noun)|physic nut|Jatropha curcus|angiospermous tree|flowering tree +jatropha stimulosus|1 +(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +jatropha urens|1 +(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +jaun gris|1 +(noun)|Gris|Jaun Gris|painter +jaundice|4 +(noun)|icterus|symptom +(noun)|bitterness|acrimony|acerbity|disagreeableness +(verb)|deform|distort|strain +(verb)|affect +jaundice of the newborn|1 +(noun)|physiological jaundice of the newborn|icterus neonatorum|jaundice|icterus +jaundiced|2 +(adj)|icteric|yellow|unhealthy +(adj)|prejudiced |discriminatory +jaunt|2 +(noun)|excursion|outing|junket|pleasure trip|expedition|sashay|journey|journeying +(verb)|travel|trip +jauntiness|2 +(noun)|nattiness|dapperness|rakishness|chic|chicness|modishness|smartness|stylishness|swank|last word +(noun)|breeziness|liveliness|life|spirit|sprightliness +jaunting car|1 +(noun)|jaunty car|cart +jaunty|2 +(adj)|dapper|dashing|natty|raffish|rakish|smart|spiffy|snappy|spruce|fashionable |stylish +(adj)|chipper|debonair|debonaire|cheerful +jaunty car|1 +(noun)|jaunting car|cart +java|3 +(noun)|Java|island +(noun)|coffee|beverage|drink|drinkable|potable +(noun)|Java|object-oriented programming language|object-oriented programing language +java finch|1 +(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver|weaverbird|weaver finch +java man|2 +(noun)|Java man|Trinil man|homo erectus +(noun)|Java man|Trinil man|Homo erectus +java olives|1 +(noun)|kalumpang|Java olives|Sterculia foetida|sterculia +java pepper|1 +(noun)|cubeb|cubeb vine|Java pepper|Piper cubeba|true pepper|pepper vine +java sparrow|1 +(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver|weaverbird|weaver finch +javan|2 +(adj)|Javanese|Javan|island +(noun)|Javanese|Javan|Indonesian +javanese|3 +(adj)|Javanese|Javan|island +(noun)|Javanese|Javan|Indonesian +(noun)|Javanese|Indonesian|Bahasa Indonesia|Bahasa +javanthropus|1 +(noun)|Javanthropus|genus Javanthropus|hominid +javel water|1 +(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite +javelin|2 +(noun)|field event +(noun)|spear|lance|shaft|sports equipment|sporting goods +javelina|1 +(noun)|collared peccary|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary|musk hog +javelle water|1 +(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite +jaw|7 +(noun)|bone|os +(noun)|feature|lineament +(noun)|jaws|holding device +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|claver|visit|converse|discourse +(verb)|yack|yack away|rattle on|yap away|talk|speak|utter|mouth|verbalize|verbalise +(verb)|chew|masticate|manducate|grate|grind +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +jawaharlal nehru|1 +(noun)|Nehru|Jawaharlal Nehru|statesman|solon|national leader +jawan|1 +(noun)|Indian|soldier +jawbone|2 +(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jowl|jaw|articulator +(verb)|shmooze|shmoose|schmooze|schmoose|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit +jawbreaker|2 +(noun)|hard candy +(noun)|polysyllable|polysyllabic word +jawfish|1 +(noun)|percoid fish|percoid|percoidean +jawless|1 +(adj)|bone|os +jawless fish|1 +(noun)|jawless vertebrate|agnathan|aquatic vertebrate +jawless vertebrate|1 +(noun)|jawless fish|agnathan|aquatic vertebrate +jaws|4 +(noun)|jaw|holding device +(noun)|jaw|bone|os +(noun)|jaw|feature|lineament +(noun)|jaw|holding device +jaws of life|1 +(noun)|Jaws of Life|tool +jay|2 +(noun)|Jay|John Jay|diplomat|diplomatist|jurist|legal expert +(noun)|corvine bird +jay cooke|1 +(noun)|Cooke|Jay Cooke|financier|moneyman +jay gould|1 +(noun)|Gould|Jay Gould|financier|moneyman +jaybird|1 +(noun)|blue jay|Cyanocitta cristata|New World jay +jayshullah|1 +(noun)|Jayshullah|terrorist organization|terrorist group|foreign terrorist organization|FTO +jaywalk|1 +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +jaywalker|1 +(noun)|pedestrian|walker|footer +jazz|5 +(noun)|wind|idle words|nothingness|talk|talking +(noun)|popular music|popular music genre +(noun)|dance music|danceroom music|ballroom music +(verb)|play|spiel +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +jazz around|1 +(verb)|gallivant|gad|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond +jazz band|1 +(noun)|jazz group|combo|dance band|band|dance orchestra +jazz festival|1 +(noun)|festival|fete +jazz group|1 +(noun)|jazz band|combo|dance band|band|dance orchestra +jazz musician|1 +(noun)|jazzman|musician|instrumentalist|player +jazz up|1 +(verb)|juice up|pep up|ginger up|enliven|liven|liven up|invigorate|animate +jazzman|1 +(noun)|jazz musician|musician|instrumentalist|player +jazzy|2 +(adj)|rhythmical |rhythmic +(adj)|flashy|gaudy|showy|sporty|colorful +jdam|1 +(noun)|Joint Direct Attack Munition|JDAM|guidance system|guidance device +je ne sais quois|1 +(noun)|object|physical object +jealous|2 +(adj)|covetous|envious|desirous +(adj)|green-eyed|overjealous|distrustful +jealously|1 +(adv)|enviously|covetously +jealousy|2 +(noun)|green-eyed monster|envy|enviousness|the green-eyed monster +(noun)|watchfulness|vigilance|alertness +jean|2 +(noun)|blue jean|denim|trousers|pants +(noun)|denim|dungaree|fabric|cloth|material|textile +jean-baptiste poquelin|1 +(noun)|Moliere|Jean-Baptiste Poquelin|dramatist|playwright +jean-claude duvalier|1 +(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator|potentate +jean-frederic joliot|1 +(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist +jean-frederic joliot-curie|1 +(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist +jean-jacques rousseau|1 +(noun)|Rousseau|Jean-Jacques Rousseau|writer|author|philosopher +jean-louis lebris de kerouac|1 +(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer|author +jean-paul sartre|1 +(noun)|Sartre|Jean-Paul Sartre|dramatist|playwright|existentialist +jean-philippe rameau|1 +(noun)|Rameau|Jean-Philippe Rameau|composer +jean anouilh|1 +(noun)|Anouilh|Jean Anouilh|dramatist|playwright +jean antoine watteau|1 +(noun)|Watteau|Jean Antoine Watteau|old master +jean arp|1 +(noun)|Arp|Jean Arp|Hans Arp|artist|creative person|poet +jean auguste dominique ingres|1 +(noun)|Ingres|Jean Auguste Dominique Ingres|painter +jean baptiste camille corot|1 +(noun)|Corot|Jean Baptiste Camille Corot|painter +jean baptiste de lamarck|1 +(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist|natural scientist +jean baptiste donatien de vimeur|1 +(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general|full general +jean baptiste joseph fourier|1 +(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician|physicist +jean baptiste lully|1 +(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer +jean baptiste racine|1 +(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist|playwright|poet +jean bernard leon foucault|1 +(noun)|Foucault|Jean Bernard Leon Foucault|physicist +jean bernoulli|1 +(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician +jean caulvin|1 +(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian|theologist|theologizer|theologiser +jean cauvin|1 +(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian|theologist|theologizer|theologiser +jean chauvin|1 +(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian|theologist|theologizer|theologiser +jean cocteau|1 +(noun)|Cocteau|Jean Cocteau|writer|author|film maker|filmmaker|film producer|movie maker +jean de la fontaine|1 +(noun)|La Fontaine|Jean de La Fontaine|writer|author +jean edouard vuillard|1 +(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter +jean francois champollion|1 +(noun)|Champollion|Jean Francois Champollion|Egyptologist +jean francois millet|1 +(noun)|Millet|Jean Francois Millet|painter +jean genet|1 +(noun)|Genet|Jean Genet|novelist|dramatist|playwright +jean giraudoux|1 +(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist|dramatist|playwright +jean harlow|1 +(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress +jean honore fragonard|1 +(noun)|Fragonard|Jean Honore Fragonard|painter +jean laffite|1 +(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate|buccaneer|sea robber|sea rover +jean lafitte|1 +(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate|buccaneer|sea robber|sea rover +jean louis charles garnier|1 +(noun)|Garnier|Jean Louis Charles Garnier|architect|designer +jean louis rodolphe agassiz|1 +(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist|natural scientist +jean luc godard|1 +(noun)|Godard|Jean Luc Godard|film maker|filmmaker|film producer|movie maker +jean martin charcot|1 +(noun)|Charcot|Jean Martin Charcot|neurologist|brain doctor +jean monnet|1 +(noun)|Monnet|Jean Monnet|economist|economic expert +jean nicholas arthur rimbaud|1 +(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet +jean paul marat|1 +(noun)|Marat|Jean Paul Marat|revolutionist|revolutionary|subversive|subverter +jean piaget|1 +(noun)|Piaget|Jean Piaget|psychologist +jean racine|1 +(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist|playwright|poet +jean sibelius|1 +(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer +jeanne antoinette poisson|1 +(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness|marquise +jeanne d'arc|1 +(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader|martyr +jeannette rankin|1 +(noun)|Rankin|Jeannette Rankin|suffragist|politician|politico|pol|political leader +jebel musa|1 +(noun)|Jebel Musa|Abila|Abyla|promontory|headland|foreland +jed'dah|1 +(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city|metropolis|urban center|port +jeddah|1 +(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city|metropolis|urban center|port +jeep|1 +(noun)|landrover|car|auto|automobile|machine|motorcar +jeer|2 +(noun)|jeering|mockery|scoff|scoffing|derision +(verb)|scoff|flout|barrack|gibe|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +jeerer|1 +(noun)|scoffer|flouter|mocker|unpleasant person|disagreeable person +jeering|2 +(adj)|derisive|gibelike|mocking|taunting|disrespectful +(noun)|jeer|mockery|scoff|scoffing|derision +jeeringly|1 +(adv)|mockingly|gibingly +jeffers|1 +(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet +jefferson|1 +(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States|United States President|President|Chief Executive +jefferson city|1 +(noun)|Jefferson City|capital of Missouri|state capital +jefferson davis|1 +(noun)|Davis|Jefferson Davis|statesman|solon|national leader +jefferson davis' birthday|1 +(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day +jeffersonian|1 +(adj)|Jeffersonian|President of the United States|United States President|President|Chief Executive +jeffrey's pine|1 +(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine|pine tree|true pine +jeffrey pine|1 +(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine|pine tree|true pine +jehad|2 +(noun)|jihad|international jihad|war|warfare +(noun)|jihad|striving|nisus|pains|strain +jehovah|2 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +jehovah's witness|1 +(noun)|Jehovah's Witness|Protestant +jehovah's witnesses|2 +(noun)|Jehovah's Witnesses|Protestant denomination +(noun)|Jehovah's Witness|Protestant +jejunal artery|1 +(noun)|intestinal artery|artery|arteria|arterial blood vessel +jejune|3 +(adj)|insubstantial|unwholesome +(adj)|adolescent|juvenile|puerile|immature +(adj)|insipid|uninteresting +jejunely|1 +(adv)|immaturely +jejuneness|3 +(noun)|callowness|juvenility|immaturity|immatureness +(noun)|jejunity|tameness|vapidity|vapidness|dullness|dulness +(noun)|jejunity|unwholesomeness|morbidness|morbidity +jejunitis|1 +(noun)|inflammation|redness|rubor +jejunity|2 +(noun)|jejuneness|tameness|vapidity|vapidness|dullness|dulness +(noun)|jejuneness|unwholesomeness|morbidness|morbidity +jejunoileitis|1 +(noun)|inflammation|redness|rubor +jejunostomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +jejunum|1 +(noun)|small intestine +jekyll and hyde|1 +(noun)|Jekyll and Hyde|anomaly|unusual person +jell|1 +(verb)|set|congeal|solidify +jell-o|2 +(noun)|jello|Jell-O|gelatin dessert|hydrocolloid +(noun)| +jellaba|1 +(noun)|cloak +jelled|1 +(adj)|congealed|jellied|solid +jellied|1 +(adj)|congealed|jelled|solid +jellify|2 +(verb)|change integrity +(verb)|jelly|change integrity +jello|1 +(noun)|Jell-O|gelatin dessert|hydrocolloid +jelly|4 +(noun)|conserve|preserve|conserves|preserves +(noun)|gelatin|dainty|delicacy|goody|kickshaw|treat +(noun)|substance|matter +(verb)|jellify|change integrity +jelly bean|1 +(noun)|jelly egg|candy +jelly doughnut|1 +(noun)|Berlin doughnut|bismark|raised doughnut +jelly egg|1 +(noun)|jelly bean|candy +jelly fungus|1 +(noun)|fungus +jelly roll morton|1 +(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician|jazzman +jellyfish|2 +(noun)|Portuguese man-of-war|man-of-war|siphonophore +(noun)|medusa|medusan|coelenterate|cnidarian +jellyleaf|1 +(noun)|Queensland hemp|Sida rhombifolia|mallow +jellylike|1 +(adj)|gelatinous|gelatinlike|thick +jellyroll|1 +(noun)|Swiss roll|sponge cake +jem|1 +(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization|terrorist group|foreign terrorist organization|FTO +jemaah islamiyah|1 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +jemmy|1 +(noun)|jimmy|crowbar|wrecking bar|pry|pry bar +jena|1 +(noun)|Jena|Battle of Jena|pitched battle +jenghiz khan|1 +(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Emperor +jenner|1 +(noun)|Jenner|Edward Jenner|doctor|doc|physician|MD|Dr.|medico +jennet|1 +(noun)|jenny|jenny ass|ass +jenny|2 +(noun)|Jenny|William Le Baron Jenny|architect|designer +(noun)|jennet|jenny ass|ass +jenny ass|1 +(noun)|jennet|jenny|ass +jenny lind|1 +(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano +jenny wren|1 +(noun)|wren|passerine|passeriform bird +jens otto harry jespersen|1 +(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist|linguistic scientist +jensen|1 +(noun)|Jensen|Johannes Vilhelm Jensen|writer|author +jeopardise|1 +(verb)|endanger|jeopardize|menace|threaten|imperil|peril|exist|be +jeopardize|2 +(verb)|endanger|jeopardise|menace|threaten|imperil|peril|exist|be +(verb)|venture|hazard|adventure|stake|risk|put on the line|lay on the line +jeopardy|1 +(noun)|hazard|peril|risk|danger +jerboa|1 +(noun)|rodent|gnawer|gnawing animal +jerboa kangaroo|1 +(noun)|kangaroo jerboa|rat kangaroo|kangaroo rat +jerboa rat|1 +(noun)|rat +jeremiad|1 +(noun)|complaint +jeremiah|2 +(noun)|Jeremiah|prophet +(noun)|Jeremiah|Book of Jeremiah|book +jeremy bentham|1 +(noun)|Bentham|Jeremy Bentham|philosopher|jurist|legal expert +jerevan|1 +(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital +jerez|1 +(noun)|Jerez|Jerez de la Frontera|city|metropolis|urban center +jerez de la frontera|1 +(noun)|Jerez|Jerez de la Frontera|city|metropolis|urban center +jericho|1 +(noun)|Jericho|village|hamlet +jerk|9 +(noun)|dork|misfit +(noun)|jerking|jolt|motion|movement|move|motility +(noun)|rate of acceleration|rate +(noun)|tug|pull|pulling +(verb)|yank|pull|draw|force +(verb)|twitch|move +(verb)|twitch|move involuntarily|move reflexively +(verb)|buck|hitch|move +(verb)|flick|push|force +jerk-off|1 +(noun)|tosser|wanker|masturbator|onanist +jerk off|1 +(verb)|masturbate|wank|fuck off|she-bop|jack off|stimulate|excite|stir +jerked meat|1 +(noun)|jerky|meat +jerker|1 +(noun)|yanker|puller +jerkily|1 +(adv)|spasmodically +jerkin|1 +(noun)|jacket +jerkiness|1 +(noun)|fitfulness|irregularity|unregularity +jerking|2 +(adj)|arrhythmic|jerky|unsteady|irregular +(noun)|jerk|jolt|motion|movement|move|motility +jerking off|1 +(noun)|jacking off|hand job|wank|masturbation|onanism|self-abuse +jerkwater|1 +(adj)|one-horse|pokey|poky|provincial +jerky|2 +(adj)|arrhythmic|jerking|unsteady|irregular +(noun)|jerked meat|meat +jeroboam|2 +(noun)|Jeroboam|Jeroboam I|king|male monarch +(noun)|double-magnum|wine bottle +jeroboam i|1 +(noun)|Jeroboam|Jeroboam I|king|male monarch +jerom bos|1 +(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master +jerome|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +jerome david kern|1 +(noun)|Kern|Jerome Kern|Jerome David Kern|composer +jerome david salinger|1 +(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer|author +jerome kern|1 +(noun)|Kern|Jerome Kern|Jerome David Kern|composer +jerome robbins|1 +(noun)|Robbins|Jerome Robbins|choreographer +jerry|1 +(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German +jerry-builder|1 +(noun)|builder|constructor +jerry-building|1 +(noun)|construction|building +jerry-built|1 +(adj)|shoddy|weak +jerry lee lewis|1 +(noun)|Lewis|Jerry Lee Lewis|rock star|pianist|piano player +jersey|3 +(noun)|T-shirt|tee shirt|shirt +(noun)|knit|knitted fabric +(noun)|Jersey|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +jersey city|1 +(noun)|Jersey City|city|metropolis|urban center +jersey elm|1 +(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +jersey fern|1 +(noun)|annual fern|Jersey fern|Anogramma leptophylla|fern +jersey knapweed|1 +(noun)|Jersey knapweed|knapweed +jersey pine|1 +(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine|pine tree|true pine +jerusalem|1 +(noun)|Jerusalem|capital of Israel|national capital +jerusalem artichoke|3 +(noun)|Jerusalem artichoke|tuber +(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower|helianthus +(noun)|Jerusalem artichoke|sunchoke|root vegetable +jerusalem artichoke sunflower|1 +(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower|helianthus +jerusalem cherry|1 +(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade +jerusalem cricket|1 +(noun)|sand cricket|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper|tettigoniid +jerusalem cross|1 +(noun)|Jerusalem cross|cross +jerusalem oak|1 +(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot +jerusalem sage|1 +(noun)|Jerusalem sage|Phlomis fruticosa|subshrub|suffrutex +jerusalem thorn|4 +(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub|bush +(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub|bush +(noun)|Jerusalem thorn|horsebean|Parkinsonia aculeata|shrub|bush +(noun)|catechu|Jerusalem thorn|Acacia catechu|acacia +jerusalem warriors|1 +(noun)|Jerusalem Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +jespersen|1 +(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist|linguistic scientist +jessamine|1 +(noun)|common jasmine|true jasmine|Jasminum officinale|jasmine +jesse jackson|1 +(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader|civil rights worker|civil rights activist|politician|politico|pol|political leader +jesse james|1 +(noun)|James|Jesse James|criminal|felon|crook|outlaw|malefactor +jesse louis jackson|1 +(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader|civil rights worker|civil rights activist|politician|politico|pol|political leader +jesse owens|1 +(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete|jock +jessica lucy mitford|1 +(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer|author +jessica mitford|1 +(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer|author +jessye norman|1 +(noun)|Norman|Jessye Norman|soprano +jest|4 +(noun)|joke|gag|laugh|jape|wit|humor|humour|witticism|wittiness +(noun)|joke|jocularity|diversion|recreation +(verb)|joke|communicate|intercommunicate|jest at +(verb)|joke|act|behave|do +jest at|1 +(verb)|ridicule|roast|guy|blackguard|laugh at|rib|make fun|poke fun|mock|bemock +jester|1 +(noun)|fool|motley fool|clown|buffoon|merry andrew +jesting|1 +(adj)|jocose|jocular|joking|humorous |humourous +jestingly|1 +(adv)|jokingly +jesuit|2 +(adj)|Jesuitical|Jesuitic|Jesuit|religious|Christian theology +(noun)|Jesuit|religious +jesuit's bark|1 +(noun)|cinchona bark|Peruvian bark|Jesuit's bark|bark +jesuit order|1 +(noun)|Jesuit order|Society of Jesus|order|monastic order +jesuitic|1 +(adj)|Jesuitical|Jesuitic|Jesuit|religious|Christian theology +jesuitical|1 +(adj)|Jesuitical|Jesuitic|Jesuit|religious|Christian theology +jesuitism|1 +(noun)|Jesuitism|Jesuitry|Christian theology +jesuitry|1 +(noun)|Jesuitism|Jesuitry|Christian theology +jesuits' nut|1 +(noun)|water caltrop|Jesuits' nut|Trapa natans|water chestnut|water chestnut plant|caltrop +jesus|1 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +jesus christ|1 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +jesus of nazareth|1 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +jet|8 +(adj)|coal-black|jet-black|pitchy|sooty|achromatic +(noun)|jet plane|jet-propelled plane|airplane|aeroplane|plane +(noun)|squirt|spurt|spirt|discharge|outpouring|run +(noun)|lignite|brown coal|wood coal +(noun)|K|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +(noun)|fountain|flow|flowing +(verb)|gush|run|flow|feed|course +(verb)|fly|aviate|pilot +jet-black|1 +(adj)|coal-black|jet|pitchy|sooty|achromatic +jet-propelled|1 +(adj)|reaction propulsion +jet-propelled plane|1 +(noun)|jet|jet plane|airplane|aeroplane|plane +jet black|1 +(noun)|coal black|ebony|pitch black|sable|soot black|black|blackness +jet bridge|1 +(noun)|footbridge|overcrossing|pedestrian bridge +jet engine|1 +(noun)|reaction-propulsion engine|reaction engine +jet lag|1 +(noun)|fatigue|weariness|tiredness +jet plane|1 +(noun)|jet|jet-propelled plane|airplane|aeroplane|plane +jet propulsion|1 +(noun)|reaction propulsion +jet set|1 +(noun)|set|circle|band|lot +jet stream|1 +(noun)|airstream +jeth|1 +(noun)|Jeth|Jyaistha|Hindu calendar month +jetliner|1 +(noun)|jet|jet plane|jet-propelled plane +jets|6 +(noun)|blue jets|atmospheric electricity +(noun)|jet|jet plane|jet-propelled plane|airplane|aeroplane|plane +(noun)|jet|squirt|spurt|spirt|discharge|outpouring|run +(noun)|jet|lignite|brown coal|wood coal +(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +(noun)|fountain|jet|flow|flowing +jetsam|2 +(noun)|part|portion +(noun)|flotsam|wreckage +jetting|1 +(adj)|spouting|spurting|squirting|running +jettison|2 +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|throw +jetty|1 +(noun)|breakwater|groin|groyne|mole|bulwark|seawall|barrier +jeu d'esprit|1 +(noun)|wit|humor|humour|witticism|wittiness +jeune fille|1 +(noun)|lass|lassie|young girl|girl|miss|missy|young lady|young woman|fille +jevons|1 +(noun)|Jevons|William Stanley Jevons|economist|economic expert|logician|logistician +jew|1 +(noun)|Jew|Hebrew|Israelite|person|individual|someone|somebody|mortal|human|soul +jew's-ear|1 +(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus +jew's-ears|2 +(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus +(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus +jew's harp|1 +(noun)|jews' harp|mouth bow|musical instrument|instrument +jew-baiter|1 +(noun)|anti-Semite|Jew-baiter|hater +jew-bush|3 +(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge|slipper plant +(noun)| +(noun)| +jew bush|3 +(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge|slipper plant +(noun)| +(noun)| +jewbush|1 +(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge|slipper plant +jewel|3 +(noun)|gem|precious stone|jewelry|jewellery +(noun)|gem|person|individual|someone|somebody|mortal|human|soul +(verb)|bejewel|decorate|adorn|grace|ornament|embellish|beautify +jewel casket|1 +(noun)|casket|box +jewel orchid|1 +(noun)|orchid|orchidaceous plant +jeweled|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jewelled|sequined|spangled|spangly|adorned |decorated +jeweler|2 +(noun)|jewelry maker|jeweller|maker|shaper +(noun)|jeweller|merchant|merchandiser +jeweler's glass|1 +(noun)|optical instrument +jeweler's loupe|1 +(noun)|loupe|hand glass|simple microscope|magnifying glass +jewelled|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|sequined|spangled|spangly|adorned |decorated +jewelled headdress|1 +(noun)|headdress|headgear +jeweller|2 +(noun)|jewelry maker|jeweler|maker|shaper +(noun)|jeweler|merchant|merchandiser +jewellery|1 +(noun)|jewelry|adornment +jewelry|1 +(noun)|jewellery|adornment +jewelry dealer|1 +(noun)|jewelry store|dealer +jewelry maker|1 +(noun)|jeweler|jeweller|maker|shaper +jewelry store|1 +(noun)|jewelry dealer|dealer +jewels-of-opar|1 +(noun)|Talinum paniculatum|flame flower|flame-flower|flameflower|Talinum aurantiacum +jewelweed|1 +(noun)|lady's earrings|orange balsam|celandine|touch-me-not|Impatiens capensis|herb|herbaceous plant +jewess|1 +(noun)|Jewess|Jew|Hebrew|Israelite +jewfish|2 +(noun)|mulloway|Sciaena antarctica|sciaenid fish|sciaenid +(noun)|Mycteroperca bonaci|grouper +jewish|1 +(adj)|Jewish|Judaic|person|individual|someone|somebody|mortal|human|soul +jewish-orthodox|1 +(adj)|Orthodox|Jewish-Orthodox|monotheism +jewish calendar|1 +(noun)|Jewish calendar|Hebrew calendar|lunisolar calendar +jewish calendar month|1 +(noun)|Jewish calendar month|calendar month|month +jewish holy day|1 +(noun)|Jewish holy day|religious holiday|holy day +jewish new year|1 +(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day|High Holiday|feast day|fete day +jewish orthodoxy|1 +(noun)|Orthodox Judaism|Jewish Orthodoxy|Judaism|Hebraism|Jewish religion +jewish religion|1 +(noun)|Judaism|Hebraism|Jewish religion|religion|faith +jewish rye|1 +(noun)|Jewish rye bread|Jewish rye|rye bread +jewish rye bread|1 +(noun)|Jewish rye bread|Jewish rye|rye bread +jewison|1 +(noun)|Jewison|Norman Jewison|film maker|filmmaker|film producer|movie maker +jewry|1 +(noun)|Jewry|social group +jews' harp|1 +(noun)|jew's harp|mouth bow|musical instrument|instrument +jezebel|2 +(noun)|Jezebel|queen|Jewess +(noun)|woman|adult female +jfk|1 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +jhvh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +ji|1 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +jiao|1 +(noun)|Chinese monetary unit +jib|3 +(noun)|fore-and-aft sail +(verb)|resist|balk|baulk|disobey +(verb)|jibe|gybe|change course|sail +jibboom|1 +(noun)|spar +jibe|3 +(noun)|shot|shaft|slam|dig|barb|gibe|remark|comment +(verb)|match|fit|correspond|check|gibe|tally|agree|equal|be +(verb)|gybe|jib|change course|sail +jidda|1 +(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city|metropolis|urban center|port +jiddah|1 +(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city|metropolis|urban center|port +jiffy|1 +(noun)|blink of an eye|flash|heartbeat|instant|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +jig|3 +(noun)|dance music|danceroom music|ballroom music +(noun)|folk dancing|folk dance +(verb)|dance|trip the light fantastic|trip the light fantastic toe +jigaboo|1 +(noun)|nigger|nigga|spade|coon|nigra|Black|Black person|blackamoor|Negro|Negroid +jigger|3 +(noun)|shot glass|pony|glass|drinking glass +(noun)|jiggermast|mast +(noun)|harvest mite|chigger|redbug|trombiculiid +jiggered|1 +(adj)|surprised +jiggermast|1 +(noun)|jigger|mast +jiggery-pokery|1 +(noun)|trickery|hocus-pocus|slickness|hanky panky|skulduggery|skullduggery|misrepresentation|deceit|deception +jiggle|2 +(noun)|joggle|shaking +(verb)|joggle|wiggle|shake|agitate +jigsaw|2 +(noun)|saber saw|reciprocating saw|power saw|saw|sawing machine +(noun)|scroll saw|fretsaw|power saw|saw|sawing machine +jigsaw puzzle|1 +(noun)|puzzle +jihad|2 +(noun)|jehad|international jihad|war|warfare +(noun)|jehad|striving|nisus|pains|strain +jihadi|1 +(adj)|striving|nisus|pains|strain +jihadist|1 +(noun)|Jihadist|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +jillions|1 +(noun)|millions|billions|trillions|zillions|large indefinite quantity|large indefinite amount +jilt|2 +(noun)|woman|adult female +(verb)|leave +jilted|1 +(adj)|rejected|spurned|unloved +jim bowie|1 +(noun)|Bowie|Jim Bowie|James Bowie|pioneer +jim corbett|1 +(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter|gladiator +jim crow|2 +(noun)|color bar|colour bar|color line|colour line|Jim Crow|ideological barrier +(noun)|crowbar|wrecking bar|pry|pry bar +jim henson|1 +(noun)|Henson|Jim Henson|puppeteer +jim morrison|1 +(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star +jim thorpe|1 +(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete|jock +jimdandy|2 +(noun)|jimhickey|crackerjack|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch +(noun)|jimhickey|crackerjack|thing +jimenez|1 +(noun)|Jimenez|Juan Ramon Jimenez|poet +jimenez de cisneros|1 +(noun)|Jimenez de Cisneros|Francisco Jimenez de Cisneros|archpriest|hierarch|high priest|prelate|primate|Grand Inquisitor +jimhickey|2 +(noun)|jimdandy|crackerjack|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch +(noun)|jimdandy|crackerjack|thing +jimi hendrix|1 +(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist|guitar player +jimmies|2 +(noun)|sprinkles|chocolate candy +(noun)|jimmy|jemmy|crowbar|wrecking bar|pry|pry bar +jimmy|2 +(noun)|jemmy|crowbar|wrecking bar|pry|pry bar +(verb)|pry|prise|prize|lever|open|open up +jimmy cagney|1 +(noun)|Cagney|Jimmy Cagney|James Cagney|actor|histrion|player|thespian|role player +jimmy carter|1 +(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States|United States President|President|Chief Executive +jimmy conors|1 +(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player +jimmy doolittle|1 +(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator|aeronaut|airman|flier|flyer|general|full general +jimmy durante|1 +(noun)|Durante|Jimmy Durante|comedian|comic +jimmy hoffa|1 +(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader +jimmy stewart|1 +(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor|histrion|player|thespian|role player +jimson weed|2 +(noun)|jimsonweed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple +(noun)| +jimsonweed|1 +(noun)|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple +jinghis khan|1 +(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Emperor +jinghpaw|1 +(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin|Kachinic +jinghpo|1 +(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin|Kachinic +jingle|3 +(noun)|jangle|sound +(noun)|doggerel|doggerel verse|verse|rhyme +(verb)|jingle-jangle|jangle|make noise|resound|noise +jingle-jangle|1 +(verb)|jingle|jangle|make noise|resound|noise +jingling|1 +(adj)|jingly|reverberant |ringing +jingly|1 +(adj)|jingling|reverberant |ringing +jingo|1 +(noun)|chauvinist|jingoist|flag-waver|hundred-percenter|patrioteer|patriot|nationalist +jingoism|2 +(noun)|flag waving|demagoguery|demagogy +(noun)|chauvinism|superpatriotism|ultranationalism|patriotism|nationalism +jingoist|1 +(noun)|chauvinist|jingo|flag-waver|hundred-percenter|patrioteer|patriot|nationalist +jingoistic|1 +(adj)|chauvinistic|flag-waving|nationalistic|ultranationalistic|superpatriotic|patriotic |loyal +jinja|1 +(noun)|Jinja|city|metropolis|urban center +jinks|1 +(noun)|high jinks|hijinks|high jinx|merrymaking|conviviality|jollification +jinnah|1 +(noun)|Jinnah|Muhammad Ali Jinnah|statesman|solon|national leader +jinnee|1 +(noun)|genie|jinni|djinni|djinny|spirit|disembodied spirit +jinni|1 +(noun)|genie|jinnee|djinni|djinny|spirit|disembodied spirit +jinrikisha|1 +(noun)|ricksha|rickshaw|cart +jinx|4 +(noun)|jonah|unfortunate|unfortunate person +(noun)|hex|curse|whammy|spell|magic spell|charm +(verb)|hex|bewitch|glamour|witch|enchant|charm|becharm +(verb)|predestine|foreordain|preordain +jinxed|1 +(adj)|hexed|unlucky |luckless +jiqui|1 +(noun)|Malpighia obovata|dicot|dicotyledon|magnoliopsid|exogen +jird|1 +(noun)|gerbil|gerbille +jirga|1 +(noun)|Jirga|council +jirrbal|1 +(noun)|Dyirbal|Jirrbal|Australian|Aboriginal Australian +jitney|1 +(noun)|bus|autobus|coach|charabanc|double-decker|motorbus|motorcoach|omnibus|public transport +jitter|1 +(noun)|noise|interference|disturbance +jitterbug|2 +(noun)|social dancing +(verb)|dance|trip the light fantastic|trip the light fantastic toe +jitteriness|1 +(noun)|jumpiness|nervousness|restiveness|anxiety +jittering|1 +(adj)|changeable |changeful +jitters|2 +(noun)|heebie-jeebies|screaming meemies|nervousness|nerves +(noun)|jitter|noise|interference|disturbance +jittery|1 +(adj)|edgy|high-strung|highly strung|in suspense|jumpy|nervy|overstrung|restive|uptight|tense +jiujitsu|1 +(noun)|jujutsu|jujitsu|martial art +jive|2 +(noun)|swing|swing music|jazz +(verb)|dance|trip the light fantastic|trip the light fantastic toe +jnd|1 +(noun)|just-noticeable difference|difference threshold|differential threshold|difference limen|differential limen +jnr|1 +(noun)|Junior|Jr|Jnr|son|boy +joachim|1 +(noun)|Joachim|Joseph Joachim|violinist|fiddler|composer +joan crawford|1 +(noun)|Crawford|Joan Crawford|actress +joan didion|1 +(noun)|Didion|Joan Didion|writer|author +joan miro|1 +(noun)|Miro|Joan Miro|painter +joan of arc|1 +(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader|martyr +joan sutherland|1 +(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano +joao pessoa|1 +(noun)|Joao Pessoa|city|metropolis|urban center +job|17 +(noun)|occupation|business|line of work|line|activity +(noun)|task|chore|duty +(noun)|work +(noun)|duty|responsibility|obligation +(noun)|workplace|work +(noun)|product|production +(noun)|problem|difficulty +(noun)|work +(noun)|caper|robbery +(noun)|Job|hero +(noun)|Job|unfortunate|unfortunate person +(noun)|application|application program|applications programme +(noun)|Job|Book of Job|book +(verb)|cheat|chisel +(verb)|subcontract|farm out|hire|engage|employ +(verb)|work|do work +(verb)|speculate|invest|put|commit|place +job's comforter|1 +(noun)|Job's comforter|sympathizer|sympathiser|comforter +job's tears|1 +(noun)|Job's tears|seed +job-control language|1 +(noun)|application-oriented language|problem-oriented language +job-oriented terminal|1 +(noun)|terminal +job action|1 +(noun)|direct action +job application|1 +(noun)|application +job candidate|1 +(noun)|applicant|applier +job control|1 +(noun)|program|programme|computer program|computer programme +job description|1 +(noun)|description|verbal description +job interview|1 +(noun)|employment interview|interview +job lot|1 +(noun)|collection|aggregation|accumulation|assemblage +jobber|1 +(noun)|middleman|wholesaler|distributor|distributer +jobbery|1 +(noun)|corruptness|corruption +jobcentre|1 +(noun)|government office +jobholder|1 +(noun)|employee +jobless|1 +(adj)|idle|out of work|unemployed +jocasta|1 +(noun)|Jocasta|mythical being +jock|2 +(noun)|athlete|contestant +(noun)|athletic supporter|supporter|suspensor|jockstrap|protective garment +jock itch|1 +(noun)|tinea cruris|eczema marginatum|tinea|ringworm|roundworm +jockey|5 +(noun)|horseman|equestrian|horseback rider +(noun)|operator|manipulator +(verb)|cheat|chouse|shaft|screw|chicane|beat|beat out|crush|shell|trounce|vanquish +(verb)|manoeuver|maneuver|manoeuvre|operate +(verb)|horse-race +jockey cap|1 +(noun)|baseball cap|golf cap|cap +jockey club|1 +(noun)|club|society|guild|gild|lodge|order +jockey shorts|1 +(noun)|briefs|Jockey shorts|underpants +jockstrap|1 +(noun)|athletic supporter|supporter|suspensor|jock|protective garment +jocose|1 +(adj)|jesting|jocular|joking|humorous |humourous +jocosely|1 +(adv)|jocular +jocoseness|1 +(noun)|jocosity|merriness|humorousness|levity +jocosity|2 +(noun)|jocularity|fun|play|sport +(noun)|jocoseness|merriness|humorousness|levity +jocote|1 +(noun)|mombin|mombin tree|Spondias purpurea|fruit tree +jocular|2 +(adj)|jesting|jocose|joking|humorous |humourous +(adv)|jocosely +jocularity|3 +(noun)|jocundity|gaiety|merriment +(noun)|jocosity|fun|play|sport +(noun)|jest|joke|diversion|recreation +jocund|1 +(adj)|gay|jolly|jovial|merry|mirthful|joyous +jocundity|1 +(noun)|jocularity|gaiety|merriment +jodhpur|2 +(noun)|jodhpur boot|jodhpur shoe|riding boot +(noun)|jodhpur breeches|riding breeches|trousers|pants +jodhpur boot|1 +(noun)|jodhpur|jodhpur shoe|riding boot +jodhpur breeches|1 +(noun)|jodhpur|riding breeches|trousers|pants +jodhpur shoe|1 +(noun)|jodhpur|jodhpur boot|riding boot +joe-pye weed|2 +(noun)|Joe-Pye weed|purple boneset|trumpet weed|marsh milkweed|Eupatorium purpureum|herb|herbaceous plant +(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb|herbaceous plant +joe bloggs|1 +(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner|common man|common person +joe blow|1 +(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner|common man|common person +joe clark|1 +(noun)|Clark|Joe Clark|Charles Joseph Clark|politician|politico|pol|political leader +joe dimaggio|1 +(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer|baseball player +joe louis|1 +(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter|gladiator +joel|2 +(noun)|Joel|prophet +(noun)|Joel|Book of Joel|book +joewood|1 +(noun)|barbasco|Jacquinia keyensis|shrub|bush +joffre|1 +(noun)|Joffre|Joseph Jacques Cesaire Joffre|field marshal +joffrey|1 +(noun)|Joffrey|Robert Joffrey|choreographer +jog|9 +(noun)|angular shape|angularity +(noun)|trot|lope|locomotion|travel +(noun)|nudge|push|pushing +(verb)|ramble on|ramble|continue|go on|carry on|proceed +(verb)|square up|even up|square +(verb)|run +(verb)|trot|clip|run +(verb)|nudge|poke at|prod +(verb)|provoke|stimulate +jog trot|1 +(noun)|gait +jogger|1 +(noun)|runner +jogging|1 +(noun)|cardiopulmonary exercise +joggle|4 +(noun)|dowel|dowel pin|fastener|fastening|holdfast|fixing +(noun)|jiggle|shaking +(verb)|jiggle|wiggle|shake|agitate +(verb)|fasten|fix|secure +johan august strindberg|1 +(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist|playwright|writer|author +johan julius christian sibelius|1 +(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer +johan kepler|1 +(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer|uranologist|stargazer +johann bernoulli|1 +(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician +johann christoph friedrich von schiller|1 +(noun)|Schiller|Johann Christoph Friedrich von Schiller|writer|author +johann friedrich herbart|1 +(noun)|Herbart|Johann Friedrich Herbart|philosopher +johann gottfried von herder|1 +(noun)|Herder|Johann Gottfried von Herder|philosopher +johann gutenberg|1 +(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer|pressman +johann joachim winckelmann|1 +(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist|archaeologist|art historian +johann ludwig uhland|1 +(noun)|Uhland|Johann Ludwig Uhland|poet +johann mendel|1 +(noun)|Mendel|Gregor Mendel|Johann Mendel|monk|monastic|botanist|phytologist|plant scientist +johann muller|1 +(noun)|Muller|Johann Muller|Regiomontanus|mathematician|astronomer|uranologist|stargazer +johann sebastian bach|1 +(noun)|Bach|Johann Sebastian Bach|organist|composer +johann strauss|2 +(noun)|Strauss|Johann Strauss|Strauss the Younger|composer +(noun)|Strauss|Johann Strauss|Strauss the Elder|composer +johann winckelmann|1 +(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist|archaeologist|art historian +johann wolfgang von goethe|1 +(noun)|Goethe|Johann Wolfgang von Goethe|poet|novelist|dramatist|playwright +johannes brahms|1 +(noun)|Brahms|Johannes Brahms|composer +johannes diderik van der waals|1 +(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist +johannes eckhart|1 +(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian|theologist|theologizer|theologiser|mystic|religious mystic +johannes evangelista purkinje|1 +(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist +johannes gutenberg|1 +(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer|pressman +johannes kepler|1 +(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer|uranologist|stargazer +johannes peter muller|1 +(noun)|Muller|Johannes Peter Muller|physiologist|anatomist +johannes van der waals|1 +(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist +johannes vilhelm jensen|1 +(noun)|Jensen|Johannes Vilhelm Jensen|writer|author +johannesburg|1 +(noun)|Johannesburg|city|metropolis|urban center +john|5 +(noun)|toilet|lavatory|lav|can|privy|bathroom|room +(noun)|John|King John|John Lackland|King of England|King of Great Britain +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|whoremaster|whoremonger|customer|client +(noun)|John|Gospel According to John|Gospel|Gospels|evangel|book +john's cabbage|1 +(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +john adams|1 +(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States|United States President|President|Chief Executive +john addington symonds|1 +(noun)|Symonds|John Addington Symonds|writer|author +john amos comenius|1 +(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator|pedagogue +john anthony ciardi|1 +(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet|literary critic +john augustus roebling|1 +(noun)|Roebling|John Roebling|John Augustus Roebling|engineer|applied scientist|technologist +john bach mcmaster|1 +(noun)|McMaster|John Bach McMaster|historian|historiographer +john bardeen|1 +(noun)|Bardeen|John Bardeen|physicist +john barleycorn|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +john barrington wain|1 +(noun)|Wain|John Wain|John Barrington Wain|writer|author +john barrymore|1 +(noun)|Barrymore|John Barrymore|actor|histrion|player|thespian|role player +john barth|1 +(noun)|Barth|John Barth|John Simmons Barth|writer|author +john bartlett|1 +(noun)|Bartlett|John Bartlett|publisher +john bernoulli|1 +(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician +john berry hobbs|1 +(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer +john birks gillespie|1 +(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter|cornetist +john broadus watson|1 +(noun)|Watson|John Broadus Watson|psychologist +john brown|1 +(noun)|Brown|John Brown|abolitionist|emancipationist +john bull|1 +(noun)|limey|John Bull|Englishman +john bunyan|1 +(noun)|Bunyan|John Bunyan|preacher|preacher man|sermonizer|sermoniser|writer|author +john burdon sanderson haldane|1 +(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist +john burgoyne|1 +(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general|full general +john c. fremont|1 +(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer|adventurer +john cabot|1 +(noun)|Cabot|John Cabot|Giovanni Cabato|navigator +john cage|1 +(noun)|Cage|John Cage|John Milton Cage Jr.|composer +john calvin|1 +(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian|theologist|theologizer|theologiser +john chapman|1 +(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer +john charles fremont|1 +(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer|adventurer +john cheever|1 +(noun)|Cheever|John Cheever|writer|author +john chrysostom|1 +(noun)|John Chrysostom|St. John Chrysostom|theologian|theologist|theologizer|theologiser|preacher|preacher man|sermonizer|sermoniser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +john churchill|1 +(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general|full general +john ciardi|1 +(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet|literary critic +john constable|1 +(noun)|Constable|John Constable|painter +john copley|1 +(noun)|Copley|John Copley|John Singleton Copley|painter +john d. rockefeller|1 +(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist|philanthropist|altruist +john dalton|1 +(noun)|Dalton|John Dalton|chemist|physicist +john davis|1 +(noun)|Davys|John Davys|Davis|John Davis|navigator +john davison rockefeller|1 +(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist|philanthropist|altruist +john davys|1 +(noun)|Davys|John Davys|Davis|John Davis|navigator +john deere|1 +(noun)|Deere|John Deere|industrialist +john dewey|1 +(noun)|Dewey|John Dewey|philosopher|educator|pedagogue +john doe|2 +(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner|common man|common person +(noun)|John Doe|party +john donald budge|1 +(noun)|Budge|Don Budge|John Donald Budge|tennis player +john donne|1 +(noun)|Donne|John Donne|poet|clergyman|reverend|man of the cloth +john dory|1 +(noun)|John dory|Zeus faber|dory +john dos passos|1 +(noun)|Dos Passos|John Dos Passos|writer|author +john dowland|1 +(noun)|Dowland|John Dowland|lutist|lutanist|lutenist|composer +john drew|1 +(noun)|Drew|John Drew|actor|histrion|player|thespian|role player +john dryden|1 +(noun)|Dryden|John Dryden|poet|dramatist|playwright +john duns scotus|1 +(noun)|Duns Scotus|John Duns Scotus|theologian|theologist|theologizer|theologiser +john eccles|1 +(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist +john edgar hoover|1 +(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer|attorney +john edward masefield|1 +(noun)|Masefield|John Masefield|John Edward Masefield|poet +john endecott|1 +(noun)|Endecott|Endicott|John Endecott|John Endicott|settler|colonist +john endicott|1 +(noun)|Endecott|Endicott|John Endecott|John Endicott|settler|colonist +john ernst steinbeck|1 +(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer|author +john fitzgerald kennedy|1 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +john fletcher|1 +(noun)|Fletcher|John Fletcher|dramatist|playwright +john florio|1 +(noun)|Florio|John Florio|lexicographer|lexicologist +john ford|1 +(noun)|Ford|John Ford|film maker|filmmaker|film producer|movie maker +john foster dulles|1 +(noun)|Dulles|John Foster Dulles|diplomat|diplomatist +john galbraith|1 +(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist|economic expert|diplomat|diplomatist +john galsworthy|1 +(noun)|Galsworthy|John Galsworthy|writer|author +john glenn|1 +(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut|spaceman|cosmonaut|senator +john greenleaf whittier|1 +(noun)|Whittier|John Greenleaf Whittier|poet +john griffith chaney|1 +(noun)|London|Jack London|John Griffith Chaney|writer|author +john haldane|1 +(noun)|Haldane|John Haldane|John Scott Haldane|physiologist +john hancock|2 +(noun)|Hancock|John Hancock|American Revolutionary leader +(noun)|autograph|John Hancock|signature +john hanning speke|1 +(noun)|Speke|John Speke|John Hanning Speke|explorer|adventurer +john harvard|1 +(noun)|Harvard|John Harvard|philanthropist|altruist +john hasbrouck van vleck|1 +(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist +john heming|1 +(noun)|Heming|Hemminge|John Heming|John Hemminge|actor|histrion|player|thespian|role player +john hemminge|1 +(noun)|Heming|Hemminge|John Heming|John Hemminge|actor|histrion|player|thespian|role player +john henry|1 +(noun)|John Henry|fictional character|fictitious character|character +john henry newman|1 +(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest|hierarch|high priest|prelate|primate|theologian|theologist|theologizer|theologiser +john henry o'hara|1 +(noun)|O'Hara|John Henry O'Hara|writer|author +john herschel|1 +(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer|uranologist|stargazer +john herschel glenn jr.|1 +(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut|spaceman|cosmonaut|senator +john hope franklin|1 +(noun)|Franklin|John Hope Franklin|historian|historiographer +john howard northrop|1 +(noun)|Northrop|John Howard Northrop|biochemist +john hoyer updike|1 +(noun)|Updike|John Updike|John Hoyer Updike|writer|author +john huss|1 +(noun)|Huss|John Huss|Hus|Jan Hus|reformer|reformist|crusader|meliorist +john huston|1 +(noun)|Huston|John Huston|film maker|filmmaker|film producer|movie maker +john irving|1 +(noun)|Irving|John Irving|writer|author +john jacob astor|1 +(noun)|Astor|John Jacob Astor|capitalist +john james audubon|1 +(noun)|Audubon|John James Audubon|ornithologist|bird watcher|artist|creative person +john james osborne|1 +(noun)|Osborne|John Osborne|John James Osborne|dramatist|playwright +john james rickard macleod|1 +(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist +john jay|1 +(noun)|Jay|John Jay|diplomat|diplomatist|jurist|legal expert +john joseph mcgraw|1 +(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer|baseball player|coach|manager|handler +john joseph pershing|1 +(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general|full general +john keats|1 +(noun)|Keats|John Keats|poet +john keble|1 +(noun)|Keble|John Keble|clergyman|reverend|man of the cloth +john kenneth galbraith|1 +(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist|economic expert|diplomat|diplomatist +john knox|1 +(noun)|Knox|John Knox|theologian|theologist|theologizer|theologiser|historian|historiographer +john l. h. down|1 +(noun)|Down|John L. H. Down|doctor|doc|physician|MD|Dr.|medico +john l. lewis|1 +(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader +john lackland|1 +(noun)|John|King John|John Lackland|King of England|King of Great Britain +john le carre|1 +(noun)|le Carre|John le Carre|David John Moore Cornwell|writer|author +john lennon|1 +(noun)|Lennon|John Lennon|rock star|songwriter|songster|ballad maker +john llewelly lewis|1 +(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader +john locke|1 +(noun)|Locke|John Locke|philosopher +john luther jones|1 +(noun)|Jones|Casey Jones|John Luther Jones|engineer|locomotive engineer|railroad engineer|engine driver +john lyly|1 +(noun)|Lyly|John Lyly|writer|author +john m. browning|1 +(noun)|Browning|John M. Browning|John Moses Browning|inventor|discoverer|artificer +john macleod|1 +(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist +john major|1 +(noun)|Major|John Major|John R. Major|John Roy Major|statesman|solon|national leader +john marquand|1 +(noun)|Marquand|John Marquand|John Philip Marquand|writer|author +john marshall|1 +(noun)|Marshall|John Marshall|jurist|legal expert|chief justice +john marstan|1 +(noun)|Marstan|John Marstan|dramatist|playwright +john masefield|1 +(noun)|Masefield|John Masefield|John Edward Masefield|poet +john maynard keynes|1 +(noun)|Keynes|John Maynard Keynes|economist|economic expert +john mccormick|1 +(noun)|McCormick|John McCormick|tenor +john mcgraw|1 +(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer|baseball player|coach|manager|handler +john mercer|1 +(noun)|Mercer|John Mercer|manufacturer|producer +john merven carrere|1 +(noun)|Carrere|John Merven Carrere|architect|designer +john mill|1 +(noun)|Mill|John Mill|John Stuart Mill|philosopher|economist|economic expert +john millington synge|1 +(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist|playwright|poet +john milton|1 +(noun)|Milton|John Milton|poet +john milton cage jr.|1 +(noun)|Cage|John Cage|John Milton Cage Jr.|composer +john mitchell|1 +(noun)|Mitchell|John Mitchell|labor leader +john moses browning|1 +(noun)|Browning|John M. Browning|John Moses Browning|inventor|discoverer|artificer +john muir|1 +(noun)|Muir|John Muir|naturalist|natural scientist +john napier|1 +(noun)|Napier|John Napier|mathematician +john orley allen tate|1 +(noun)|Tate|Allen Tate|John Orley Allen Tate|critic|poet +john osborne|1 +(noun)|Osborne|John Osborne|John James Osborne|dramatist|playwright +john paul i|1 +(noun)|John Paul I|Albino Luciano|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +john paul ii|1 +(noun)|John Paul II|Karol Wojtyla|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +john paul jones|1 +(noun)|Jones|John Paul Jones|naval commander +john philip marquand|1 +(noun)|Marquand|John Marquand|John Philip Marquand|writer|author +john philip sousa|1 +(noun)|Sousa|John Philip Sousa|The March King|bandmaster|composer +john pierpont morgan|1 +(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier|moneyman +john quincy adams|1 +(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States|United States President|President|Chief Executive +john r. major|1 +(noun)|Major|John Major|John R. Major|John Roy Major|statesman|solon|national leader +john reed|1 +(noun)|Reed|John Reed|journalist|communist|commie +john robinson jeffers|1 +(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet +john rock|1 +(noun)|Rock|John Rock|gynecologist|gynaecologist|woman's doctor +john roebling|1 +(noun)|Roebling|John Roebling|John Augustus Roebling|engineer|applied scientist|technologist +john ronald reuel tolkien|1 +(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist|philologue|writer|author +john ross|1 +(noun)|Ross|John Ross|Sir John Ross|explorer|adventurer +john rowlands|1 +(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist|explorer|adventurer +john roy major|1 +(noun)|Major|John Major|John R. Major|John Roy Major|statesman|solon|national leader +john rupert firth|1 +(noun)|Firth|J. R. Firth|John Rupert Firth|linguist|linguistic scientist +john ruskin|1 +(noun)|Ruskin|John Ruskin|art critic +john scopes|1 +(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher|school teacher +john scott haldane|1 +(noun)|Haldane|John Haldane|John Scott Haldane|physiologist +john simmons barth|1 +(noun)|Barth|John Barth|John Simmons Barth|writer|author +john singer sargent|1 +(noun)|Sargent|John Singer Sargent|painter +john singleton copley|1 +(noun)|Copley|John Copley|John Singleton Copley|painter +john smith|1 +(noun)|Smith|John Smith|Captain John Smith|explorer|adventurer +john speke|1 +(noun)|Speke|John Speke|John Hanning Speke|explorer|adventurer +john steinbeck|1 +(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer|author +john stuart mill|1 +(noun)|Mill|John Mill|John Stuart Mill|philosopher|economist|economic expert +john the baptist|1 +(noun)|John the Baptist|St. John the Baptist|hermit|recluse|solitary|solitudinarian|troglodyte|saint +john the divine|1 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +john the evangelist|1 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +john thomas scopes|1 +(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher|school teacher +john tradescant|1 +(noun)|Tradescant|John Tradescant|botanist|phytologist|plant scientist +john trumbull|2 +(noun)|Trumbull|John Trumbull|painter +(noun)|Trumbull|John Trumbull|poet +john tuzo wilson|1 +(noun)|Wilson|John Tuzo Wilson|geophysicist +john tyler|1 +(noun)|Tyler|John Tyler|President Tyler|President of the United States|United States President|President|Chief Executive +john tyndall|1 +(noun)|Tyndall|John Tyndall|physicist +john uhler|1 +(noun)|Lemmon|Jack Lemmon|John Uhler|actor|histrion|player|thespian|role player +john updike|1 +(noun)|Updike|John Updike|John Hoyer Updike|writer|author +john van vleck|1 +(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist +john vanbrugh|1 +(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect|designer +john venn|1 +(noun)|Venn|John Venn|logician|logistician +john von neumann|1 +(noun)|von Neumann|Neumann|John von Neumann|mathematician +john wain|1 +(noun)|Wain|John Wain|John Barrington Wain|writer|author +john walker|1 +(noun)|Walker|John Walker|four-minute man +john wanamaker|1 +(noun)|Wanamaker|John Wanamaker|businessman|man of affairs +john wayne|1 +(noun)|Wayne|John Wayne|Duke Wayne|actor|histrion|player|thespian|role player +john webster|1 +(noun)|Webster|John Webster|dramatist|playwright +john wesley|1 +(noun)|Wesley|John Wesley|clergyman|reverend|man of the cloth +john wickliffe|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +john wiclif|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +john wilkes|1 +(noun)|Wilkes|John Wilkes|reformer|reformist|crusader|meliorist +john wilkes booth|1 +(noun)|Booth|John Wilkes Booth|actor|histrion|player|thespian|role player|assassin|assassinator|bravo +john william strutt|1 +(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist +john witherspoon|1 +(noun)|Witherspoon|John Witherspoon|American Revolutionary leader|educator|pedagogue +john wyclif|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +john wycliffe|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +johnny|1 +(noun)|Rebel|Reb|Johnny Reb|Johnny|grayback|Confederate soldier +johnny-jump-up|2 +(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola +(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet +johnny appleseed|1 +(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer +johnny cake|2 +(noun)|johnnycake|journey cake|cornbread +(noun)| +johnny reb|1 +(noun)|Rebel|Reb|Johnny Reb|Johnny|grayback|Confederate soldier +johnnycake|1 +(noun)|johnny cake|journey cake|cornbread +johns|6 +(noun)|Johns|Jasper Johns|artist|creative person +(noun)|toilet|lavatory|lav|can|john|privy|bathroom|room +(noun)|John|King John|John Lackland|King of England|King of Great Britain +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|whoremaster|whoremonger|john|customer|client +(noun)|John|Gospel According to John|Gospel|Gospels|evangel|book +johns hopkins|2 +(noun)|Hopkins|Johns Hopkins|financier|moneyman|philanthropist|altruist +(noun)|Johns Hopkins|university +johnson|3 +(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer|author|lexicographer|lexicologist +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States|United States President|President|Chief Executive +johnson city|1 +(noun)|Johnson City|town +johnson grass|1 +(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum +johnston|1 +(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general|full general +joie de vivre|1 +(noun)|enjoyment +join|6 +(noun)|articulation|joint|juncture|junction|connection|connexion|link +(noun)|union|sum|set +(verb)|fall in|get together +(verb)|bring together|connect|link|tie|link up +(verb)|conjoin|connect|link|tie|link up +(verb)|connect|link|link up|unite +join battle|1 +(verb)|fight|struggle +join forces|1 +(verb)|collaborate|cooperate|get together|work +joined|2 +(adj)|united|married +(adj)|coupled|linked|connected +joiner|2 +(noun)|member +(noun)|woodworker|woodsman|woodman +joinery|2 +(noun)|woodwork +(noun)|cabinetmaking|carpentry|woodworking|woodwork +joining|1 +(noun)|connection|connexion|change of integrity +joint|13 +(adj)|joint |associated|clannish|combined|concerted|conjunct|conjunctive|cooperative|united|conjoined|conjoint|cosignatory|corporate|collective|sharing|collective|common|integrated|shared|united +(adj)|shared +(adj)|bilateral |two-sided +(noun)|articulation|articulatio|body part +(noun)|spot +(noun)|articulation|join|juncture|junction|connection|connexion|link +(noun)|roast|cut|cut of meat +(noun)|junction|conjunction +(noun)|marijuana cigarette|reefer|stick|spliff|cigarette|cigaret|coffin nail|butt|fag +(verb)|fit|go +(verb)|articulate|supply|provide|render|furnish +(verb)|fasten|fix|secure +(verb)|separate|disunite|divide|part +joint-stock company|1 +(noun)|company +joint author|1 +(noun)|coauthor|writer|author +joint chiefs|1 +(noun)|Joint Chiefs of Staff|Joint Chiefs|executive agency +joint chiefs of staff|1 +(noun)|Joint Chiefs of Staff|Joint Chiefs|executive agency +joint direct attack munition|1 +(noun)|Joint Direct Attack Munition|JDAM|guidance system|guidance device +joint fir|1 +(noun)|ephedra|shrub|bush +joint hinge|1 +(noun)|strap hinge|hinge|flexible joint +joint probability|1 +(noun)|probability|chance +joint resolution|1 +(noun)|resolution|declaration|resolve +joint return|1 +(noun)|tax return|income tax return|return +joint snake|1 +(noun)|glass lizard|glass snake|anguid lizard +joint venture|1 +(noun)|venture +jointed|1 +(adj)|articulated |articulate +jointed charlock|1 +(noun)|wild radish|wild rape|runch|Raphanus raphanistrum|weed +jointed rush|1 +(noun)|Juncus articulatus|rush +jointer|1 +(noun)|jointer plane|jointing plane|long plane|plane|carpenter's plane|woodworking plane +jointer plane|1 +(noun)|jointer|jointing plane|long plane|plane|carpenter's plane|woodworking plane +jointing plane|1 +(noun)|jointer|jointer plane|long plane|plane|carpenter's plane|woodworking plane +jointly|1 +(adv)|collectively|conjointly|together|put together +jointure|2 +(noun)|legal jointure|estate +(noun)|union|unification|uniting|conjugation|combination|combining|compounding +jointworm|1 +(noun)|strawworm|larva +joist|1 +(noun)|beam +joke|6 +(noun)|gag|laugh|jest|jape|wit|humor|humour|witticism|wittiness +(noun)|jest|jocularity|diversion|recreation +(noun)|antic|prank|trick|caper|put-on|diversion|recreation +(noun)|pettiness|triviality|slightness +(verb)|jest|communicate|intercommunicate +(verb)|jest|act|behave|do +joker|2 +(noun)|jokester|comedian|comic +(noun)|turkey|unpleasant person|disagreeable person +jokester|1 +(noun)|joker|comedian|comic +joking|1 +(adj)|jesting|jocose|jocular|humorous |humourous +jokingly|2 +(adv)|jestingly +(adv)|facetiously|tongue-in-cheek +joliet|1 +(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer|adventurer +joliot|1 +(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist +joliot-curie|2 +(noun)|Joliot-Curie|Irene Joliot-Curie|physicist +(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist +jolliet|1 +(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer|adventurer +jollification|1 +(noun)|merrymaking|conviviality|celebration|festivity +jollify|1 +(verb)|revel|racket|make whoopie|make merry|make happy|whoop it up|wassail|celebrate|fete +jollity|1 +(noun)|joviality|good humor|good humour|good temper|amiability|gaiety|merriment +jolly|5 +(adj)|gay|jocund|jovial|merry|mirthful|joyous +(noun)|party +(noun)|jolly boat|yawl +(verb)|kid|chaff|josh|banter|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +(adv)|pretty +jolly along|1 +(verb)|cheer|cheer up|jolly up +jolly boat|1 +(noun)|jolly|yawl +jolly roger|1 +(noun)|black flag|pirate flag|Jolly Roger|flag +jolly up|1 +(verb)|cheer|cheer up|jolly along +jolson|1 +(noun)|Jolson|Al Jolson|Asa Yoelson|singer|vocalist|vocalizer|vocaliser|actor|histrion|player|thespian|role player +jolt|4 +(noun)|jar|jounce|bump|blow +(noun)|jerk|jerking|motion|movement|move|motility +(verb)|jar|move +(verb)|disturb|upset|trouble +jolted|2 +(adj)|agitated +(adj)|shaken|agitated +jolting|1 +(adj)|bumpy|jarring|jolty|rough |unsmooth +jolty|1 +(adj)|bumpy|jarring|jolting|rough |unsmooth +jomada i|1 +(noun)|Jumada I|Jomada I|Islamic calendar month +jomada ii|1 +(noun)|Jumada II|Jomada II|Islamic calendar month +jomo kenyata|1 +(noun)|Kenyata|Jomo Kenyata|statesman|solon|national leader +jonah|3 +(noun)|Jonah|prophet +(noun)|jinx|unfortunate|unfortunate person +(noun)|Jonah|Book of Jonah|book +jonah crab|1 +(noun)|Jonah crab|Cancer borealis|crab +jonas edward salk|1 +(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist +jonas salk|1 +(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist +jonathan|1 +(noun)|Jonathan|eating apple|dessert apple +jonathan edwards|1 +(noun)|Edwards|Jonathan Edwards|theologian|theologist|theologizer|theologiser +jonathan swift|1 +(noun)|Swift|Jonathan Swift|Dean Swift|satirist|ironist|ridiculer +jonathan trumbull|1 +(noun)|Trumbull|Jonathan Trumbull|American Revolutionary leader +jones|6 +(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader +(noun)|Jones|Casey Jones|John Luther Jones|engineer|locomotive engineer|railroad engineer|engine driver +(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer|golf player|linksman +(noun)|Jones|John Paul Jones|naval commander +(noun)|Jones|Inigo Jones|architect|designer +(noun)|Jones|Daniel Jones|phonetician +jones' penstemon|1 +(noun)|Jones' penstemon|Penstemon dolius|wildflower|wild flower +jonesboro|1 +(noun)|Jonesboro|town +jong|1 +(noun)|Jong|Erica Jong|writer|author +jongleur|1 +(noun)|folk singer|minstrel|poet-singer|troubadour|singer|vocalist|vocalizer|vocaliser +jonquil|2 +(noun)|Narcissus jonquilla|narcissus +(noun)|daffodil|Narcissus pseudonarcissus +jons jakob berzelius|1 +(noun)|Berzelius|Jons Jakob Berzelius|chemist +jonson|1 +(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist|playwright|poet +jook|2 +(noun)|congee|gruel +(noun)|juke|juke joint|jook joint|juke house|jook house|joint|marijuana cigarette|reefer|stick|spliff +jook house|1 +(noun)|juke|jook|juke joint|jook joint|juke house|joint|marijuana cigarette|reefer|stick|spliff +jook joint|1 +(noun)|juke|jook|juke joint|juke house|jook house|joint|marijuana cigarette|reefer|stick|spliff +joplin|2 +(noun)|Joplin|Janis Joplin|singer|vocalist|vocalizer|vocaliser +(noun)|Joplin|Scott Joplin|composer +joppa|1 +(noun)|Jaffa|Joppa|Yafo|city|metropolis|urban center|port +jordan|2 +(noun)|Jordan|Jordan River|river +(noun)|Jordan|Hashemite Kingdom of Jordan|Asian country|Asian nation +jordan almond|2 +(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis +(noun)|Jordan almond|almond +jordan curve|1 +(noun)|simple closed curve|Jordan curve|closed curve +jordan river|1 +(noun)|Jordan|Jordan River|river +jordanella|1 +(noun)|Jordanella|genus Jordanella|fish genus +jordanella floridae|1 +(noun)|flagfish|American flagfish|Jordanella floridae|killifish +jordanian|2 +(adj)|Jordanian|Asian country|Asian nation +(noun)|Jordanian|Asian|Asiatic +jordanian dinar|1 +(noun)|Jordanian dinar|dinar|Jordanian monetary unit +jordanian monetary unit|1 +(noun)|Jordanian monetary unit|monetary unit +jorge borges|1 +(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer|author +jorge luis borges|1 +(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer|author +jorge mario pedro vargas llosa|1 +(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer|author +joroslav heyrovsky|1 +(noun)|Heyrovsky|Joroslav Heyrovsky|chemist +jorum|1 +(noun)|bowl +jose clemente orozco|1 +(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist +jose julian marti|1 +(noun)|Marti|Jose Julian Marti|revolutionist|revolutionary|subversive|subverter|poet +jose orozco|1 +(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist +jose ortega y gasset|1 +(noun)|Ortega y Gasset|Jose Ortega y Gasset|philosopher +josef albers|1 +(noun)|Albers|Josef Albers|abstractionist|abstract artist +josef hoffmann|1 +(noun)|Hoffmann|Josef Hoffmann|architect|designer +josef michel montgolfier|1 +(noun)|Montgolfier|Josef Michel Montgolfier|balloonist +josef von sternberg|1 +(noun)|von Sternberg|Josef von Sternberg|film maker|filmmaker|film producer|movie maker +joseph|3 +(noun)|Joseph|Chief Joseph|Indian chief|Indian chieftain|Nez Perce +(noun)|Joseph|patriarch +(noun)|Joseph|carpenter +joseph's coat|1 +(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus|flame nettle +joseph alois schumpeter|1 +(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist|economic expert +joseph banks rhine|1 +(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist +joseph ben matthias|1 +(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general|full general|historian|historiographer|Pharisee +joseph black|1 +(noun)|Black|Joseph Black|chemist +joseph campbell|1 +(noun)|Campbell|Joseph Campbell|mythologist +joseph conrad|1 +(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer|author +joseph deems taylor|1 +(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer|music critic +joseph eggleston johnston|1 +(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general|full general +joseph emerson worcester|1 +(noun)|Worcester|Joseph Emerson Worcester|lexicographer|lexicologist +joseph francis keaton|1 +(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian|comic|actor|histrion|player|thespian|role player +joseph goebbels|1 +(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi|German Nazi|propagandist +joseph greenberg|1 +(noun)|Greenberg|Joseph Greenberg|linguist|polyglot +joseph haydn|1 +(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer +joseph heller|1 +(noun)|Heller|Joseph Heller|writer|author +joseph henry|1 +(noun)|Henry|Joseph Henry|physicist +joseph hilaire peter belloc|1 +(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer|author +joseph hooker|1 +(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general|full general +joseph jacques cesaire joffre|1 +(noun)|Joffre|Joseph Jacques Cesaire Joffre|field marshal +joseph joachim|1 +(noun)|Joachim|Joseph Joachim|violinist|fiddler|composer +joseph john thomson|1 +(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist +joseph lincoln steffens|1 +(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist +joseph lister|1 +(noun)|Lister|Joseph Lister|Baron Lister|surgeon|operating surgeon|sawbones +joseph louis barrow|1 +(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter|gladiator +joseph louis gay-lussac|1 +(noun)|Gay-Lussac|Joseph Louis Gay-Lussac|chemist|physicist +joseph m. jacquard|1 +(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor|discoverer|artificer +joseph mallord william turner|1 +(noun)|Turner|Joseph Mallord William Turner|painter +joseph marie jacquard|1 +(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor|discoverer|artificer +joseph mccarthy|1 +(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician|politico|pol|political leader +joseph oliver|1 +(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician|jazzman +joseph paul dimaggio|1 +(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer|baseball player +joseph paxton|1 +(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect|designer +joseph priestley|1 +(noun)|Priestley|Joseph Priestley|chemist +joseph pulitzer|1 +(noun)|Pulitzer|Joseph Pulitzer|publisher|newspaper publisher +joseph raymond mccarthy|1 +(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician|politico|pol|political leader +joseph rudyard kipling|1 +(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer|author +joseph schumpeter|1 +(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist|economic expert +joseph smith|1 +(noun)|Smith|Joseph Smith|Latter-day Saint|Mormon +joseph stalin|1 +(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist|commie +joseph warren stilwell|1 +(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general|full general +josephus|1 +(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general|full general|historian|historiographer|Pharisee +josh|1 +(verb)|kid|chaff|jolly|banter|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +josh billings|1 +(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist|humourist +joshua|2 +(noun)|Joshua|religious leader +(noun)|Joshua|Josue|Book of Joshua|book +joshua tree|1 +(noun)|Joshua tree|Yucca brevifolia|yucca +josiah quincy|1 +(noun)|Quincy|Josiah Quincy|American Revolutionary leader +josiah spode|1 +(noun)|Spode|Josiah Spode|potter|thrower|ceramicist|ceramist +josiah wedgwood|1 +(noun)|Wedgwood|Josiah Wedgwood|potter|thrower|ceramicist|ceramist +josiah willard gibbs|1 +(noun)|Gibbs|Josiah Willard Gibbs|chemist +josip broz|1 +(noun)|Tito|Marshal Tito|Josip Broz|statesman|solon|national leader +joss|1 +(noun)|idol|graven image|god +joss house|1 +(noun)|temple +joss stick|1 +(noun)|incense +jostle|3 +(noun)|jostling|shove +(verb)|make|work +(verb)|shove|push|force +jostling|1 +(noun)|jostle|shove +josue|1 +(noun)|Joshua|Josue|Book of Joshua|book +jot|3 +(noun)|jotting|note +(noun)|touch|hint|tinge|mite|pinch|speck|soupcon|small indefinite quantity|small indefinite amount +(verb)|jot down|write +jot down|1 +(verb)|jot|write +jotter|1 +(noun)|notebook +jotting|1 +(noun)|jot|note +jotun|1 +(noun)|Jotun|Jotunn|giant +jotunn|1 +(noun)|Jotun|Jotunn|giant +joule|2 +(noun)|J|watt second|work unit|heat unit|energy unit +(noun)|Joule|James Prescott Joule|physicist +jounce|2 +(noun)|jolt|jar|bump|blow +(verb)|bounce|travel|go|move|locomote +journal|5 +(noun)|diary|writing|written material|piece of writing +(noun)|periodical +(noun)|daybook|ledger|leger|account book|book of account|book +(noun)|book|volume +(noun)|axle +journal bearing|1 +(noun)|bearing +journal box|1 +(noun)|housing +journalese|1 +(noun)|expressive style|style +journalism|2 +(noun)|news media|fourth estate|print media +(noun)|profession +journalist|2 +(noun)|writer|author +(noun)|diarist|diary keeper|writer +journalist's privilege|1 +(noun)|privilege +journalistic|1 +(adj)|print media +journey|3 +(noun)|journeying|travel|traveling|travelling +(verb)|travel|travel|trip|jaunt +(verb)|travel|travel|go|move|locomote +journey cake|1 +(noun)|johnnycake|johnny cake|cornbread +journeyer|1 +(noun)|wayfarer|traveler|traveller +journeying|1 +(noun)|journey|travel|traveling|travelling +journeyman|1 +(noun)|craftsman|artisan|artificer|skilled worker|trained worker +joust|2 +(noun)|tilt|struggle|battle +(verb)|fight|struggle +jove|1 +(noun)|Jupiter|Jove|Roman deity +jovial|1 +(adj)|gay|jocund|jolly|merry|mirthful|joyous +joviality|2 +(noun)|jollity|good humor|good humour|good temper|amiability|gaiety|merriment +(noun)|conviviality|sociability|sociableness +jovian|2 +(adj)|Jovian|Jovian planet|gas giant +(adj)|Jovian|Roman deity +jovian planet|1 +(noun)|Jovian planet|gas giant|superior planet +jowett|1 +(noun)|Jowett|Benjamin Jowett|classicist|classical scholar|interpreter|translator +jowl|2 +(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jaw|articulator +(noun)|feature|lineament +jowly|1 +(adj)|double-chinned|loose-jowled|fat +joy|4 +(noun)|joyousness|joyfulness|emotion +(noun)|delight|pleasure|positive stimulus +(verb)|rejoice|feel|experience +(verb)|gladden +joyce|1 +(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer|author +joyce carol oates|1 +(noun)|Oates|Joyce Carol Oates|writer|author +joyful|3 +(adj)|joyful |beatific|overjoyed|happy|joyous +(adj)|elated|gleeful|jubilant|joyous +(adj)|joyous|happy +joyfully|1 +(adv)|gleefully|joyously +joyfulness|1 +(noun)|joy|joyousness|emotion +joyless|1 +(adj)|joyless |funereal|sepulchral|mirthless|unamused|unsmiling|cheerless|uncheerful|sorrowful|unhappy +joylessness|1 +(noun)|cheerlessness|uncheerfulness +joyous|2 +(adj)|joyous |ecstatic|enraptured|rapturous|rhapsodic|elated|gleeful|joyful|jubilant|gala|gay|festal|festive|merry|gay|jocund|jolly|jovial|merry|mirthful|elated|happy|joyful +(adj)|joyful|happy +joyously|1 +(adv)|gleefully|joyfully +joyousness|1 +(noun)|joy|joyfulness|emotion +joyride|2 +(noun)|drive|ride +(verb)|tool|tool around|ride +joystick|2 +(noun)|stick|control stick|lever +(noun)|control|controller|data input device|input device +jr|1 +(noun)|Junior|Jr|Jnr|son|boy +jr.|1 +(adj)|younger|junior +jra|1 +(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization|terrorist group|foreign terrorist organization|FTO +juan carlos|1 +(noun)|Juan Carlos|Juan Carlos Victor Maria de Borbon y Borbon|king|male monarch +juan carlos victor maria de borbon y borbon|1 +(noun)|Juan Carlos|Juan Carlos Victor Maria de Borbon y Borbon|king|male monarch +juan domingo peron|1 +(noun)|Peron|Juan Domingo Peron|soldier +juan ramon jimenez|1 +(noun)|Jimenez|Juan Ramon Jimenez|poet +juarez|1 +(noun)|Ciudad Juarez|Juarez|city|metropolis|urban center +jubbulpore|1 +(noun)|Jabalpur|Jubbulpore|city|metropolis|urban center +jubilance|1 +(noun)|exultation|jubilancy|jubilation|joy|joyousness|joyfulness +jubilancy|1 +(noun)|exultation|jubilance|jubilation|joy|joyousness|joyfulness +jubilant|2 +(adj)|exultant|exulting|prideful|rejoicing|triumphal|triumphant|elated +(adj)|elated|gleeful|joyful|joyous +jubilantly|1 +(adv)|happily|merrily|mirthfully|gayly|blithely|with happiness +jubilate|2 +(verb)|celebrate|fete +(verb)|exult|rejoice|triumph|cheer|cheer up|chirk up +jubilation|3 +(noun)|exultation|jubilance|jubilancy|joy|joyousness|joyfulness +(noun)|celebration|affair|occasion|social occasion|function|social function +(noun)|exultation|rejoicing|utterance|vocalization +jubilee|1 +(noun)|anniversary|day of remembrance +juda|1 +(noun)|Judah|Juda|geographical area|geographic area|geographical region|geographic region +judaea|1 +(noun)|Judea|Judaea|geographical area|geographic area|geographical region|geographic region +judah|2 +(noun)|Judah|patriarch +(noun)|Judah|Juda|geographical area|geographic area|geographical region|geographic region +judaic|2 +(adj)|Judaic|Judaical|monotheism +(adj)|Jewish|Judaic|person|individual|someone|somebody|mortal|human|soul +judaica|1 +(noun)|Judaica|collection|aggregation|accumulation|assemblage +judaical|1 +(adj)|Judaic|Judaical|monotheism +judaism|2 +(noun)|Judaism|Hebraism|Jewish religion|religion|faith +(noun)|Judaism|monotheism +judas|5 +(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle|saint +(noun)|Judas|Judas Iscariot|Apostle +(noun)|Judas|double-crosser|double-dealer|two-timer|betrayer|traitor +(noun)|peephole|spyhole +(noun)|Judah|Juda|geographical area|geographic area|geographical region|geographic region +judas iscariot|1 +(noun)|Judas|Judas Iscariot|Apostle +judas maccabaeus|1 +(noun)|Judas Maccabaeus|leader +judas tree|1 +(noun)|Judas tree|love tree|Circis siliquastrum|angiospermous tree|flowering tree +judder|1 +(verb)|shake|vibrate +jude|2 +(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle|saint +(noun)|Epistle of Jude|Jude|book +judea|1 +(noun)|Judea|Judaea|geographical area|geographic area|geographical region|geographic region +judeo-christian|1 +(adj)|Judeo-Christian|monotheism|religion|faith|religious belief +judeo-spanish|1 +(noun)|Judeo-Spanish|Ladino|Spanish +judge|7 +(noun)|justice|jurist|magistrate|official|functionary|adjudicator +(noun)|evaluator|authority +(verb)|decide|settle|resolve|adjudicate +(verb)|think|cogitate|cerebrate +(verb)|estimate|gauge|approximate|guess|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|pronounce|label|declare|adjudge|hold +(verb)|adjudicate|try|decide|make up one's mind|determine +judge's robe|1 +(noun)|academic gown|academic robe|gown|robe +judge advocate|2 +(noun)|commissioned officer +(noun)|staff officer +judge advocate general|1 +(noun)|commissioned officer +judgement|7 +(noun)|opinion|legal opinion|judgment|legal document|legal instrument|official document|instrument +(noun)|judgment|mind|opinion|sentiment|persuasion|view|thought +(noun)|judgment|judging|decision making|deciding +(noun)|sagacity|sagaciousness|judgment|discernment|wisdom|sapience +(noun)|judgment|sound judgment|sound judgement|perspicacity|trait +(noun)|judgment|judicial decision|due process|due process of law +(noun)|judgment|assessment|act|human action|human activity +judgement by default|1 +(noun)|default judgment|default judgement|judgment by default|judgment|judgement|judicial decision +judgement day|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +judgement in personam|1 +(noun)|judgment in personam|personal judgment|personal judgement|judgment|judgement|judicial decision +judgement in rem|1 +(noun)|judgment in rem|judgment|judgement|judicial decision +judgement of dismissal|1 +(noun)|judgment of dismissal|dismissal|judgment|judgement|judicial decision +judgement on the merits|1 +(noun)|judgment on the merits|judgment|judgement|judicial decision +judgement on the pleadings|1 +(noun)|summary judgment|summary judgement|judgment on the pleadings|judgment|judgement|judicial decision +judges|3 +(noun)|Judges|Book of Judges|book +(noun)|judge|justice|jurist|magistrate|official|functionary|adjudicator +(noun)|evaluator|judge|authority +judgeship|1 +(noun)|judgship|judicature|position|post|berth|office|spot|billet|place|situation +judging|1 +(noun)|judgment|judgement|decision making|deciding +judgment|7 +(noun)|judgement|mind|opinion|sentiment|persuasion|view|thought +(noun)|judgement|assessment|act|human action|human activity +(noun)|judgement|judicial decision|due process|due process of law +(noun)|judgement|judging|decision making|deciding +(noun)|opinion|legal opinion|judgement|legal document|legal instrument|official document|instrument +(noun)|judgement|sound judgment|sound judgement|perspicacity|trait +(noun)|sagacity|sagaciousness|judgement|discernment|wisdom|sapience +judgment by default|1 +(noun)|default judgment|default judgement|judgement by default|judgment|judgement|judicial decision +judgment day|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +judgment in personam|1 +(noun)|judgement in personam|personal judgment|personal judgement|judgment|judgement|judicial decision +judgment in rem|1 +(noun)|judgement in rem|judgment|judgement|judicial decision +judgment lien|1 +(noun)|lien +judgment of conviction|1 +(noun)|conviction|condemnation|sentence|final judgment|final decision +judgment of dismissal|1 +(noun)|judgement of dismissal|dismissal|judgment|judgement|judicial decision +judgment on the merits|1 +(noun)|judgement on the merits|judgment|judgement|judicial decision +judgment on the pleadings|1 +(noun)|summary judgment|summary judgement|judgement on the pleadings|judgment|judgement|judicial decision +judgmental|1 +(adj)|judgmental |faultfinding +judgship|1 +(noun)|judgeship|judicature|position|post|berth|office|spot|billet|place|situation +judicable|1 +(adj)|determinable +judicatory|1 +(noun)|judiciary|judicature|judicial system|system|scheme +judicature|4 +(noun)|court|tribunal|assembly +(noun)|judiciary|judicatory|judicial system|system|scheme +(noun)|justice|administration|disposal +(noun)|judgship|judgeship|position|post|berth|office|spot|billet|place|situation +judicial|4 +(adj)|legal +(adj)|official|functionary|adjudicator +(adj)|juridical|juridic|righteousness|natural virtue +(adj)|discriminative|critical +judicial activism|1 +(noun)|broad interpretation|interpretation|interpreting|rendition|rendering +judicial admission|1 +(noun)|stipulation|concession +judicial branch|1 +(noun)|branch|subdivision|arm +judicial decision|1 +(noun)|judgment|judgement|due process|due process of law +judicial doctrine|1 +(noun)|legal principle|judicial principle|principle +judicial principle|1 +(noun)|legal principle|judicial doctrine|principle +judicial proceeding|1 +(noun)|litigation|proceeding|legal proceeding|proceedings +judicial review|1 +(noun)|review +judicial sale|1 +(noun)|sheriff's sale|execution sale|forced sale|sale|sales agreement +judicial separation|1 +(noun)|legal separation|decree|edict|fiat|order|rescript +judicial system|1 +(noun)|judiciary|judicature|judicatory|system|scheme +judicial writ|1 +(noun)|writ|legal document|legal instrument|official document|instrument +judiciary|2 +(noun)|bench|administration|governance|governing body|establishment|brass|organization|organisation +(noun)|judicature|judicatory|judicial system|system|scheme +judicious|3 +(adj)|responsible +(adj)|sensible|wise|prudent +(adj)|sensible|advisable +judiciousness|2 +(noun)|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|sagacity|sagaciousness|wisdom|wiseness +judith|2 +(noun)|Judith|heroine +(noun)|Judith|Book of Judith|book +judith jamison|1 +(noun)|Jamison|Judith Jamison|dancer|professional dancer|choreographer +judo|1 +(noun)|martial art|sport|athletics +judy garland|1 +(noun)|Garland|Judy Garland|singer|vocalist|vocalizer|vocaliser|actress +jug|4 +(noun)|bottle +(noun)|jugful|containerful +(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|gaol|put away|remand|confine|detain +(verb)|stew +jug band|1 +(noun)|ensemble +jug wine|1 +(noun)|wine|vino +jugal bone|1 +(noun)|cheekbone|zygomatic bone|mala|malar bone|os zygomaticum|bone|os +jugal point|1 +(noun)|jugale|craniometric point +jugale|1 +(noun)|jugal point|craniometric point +jugful|1 +(noun)|jug|containerful +juggernaut|3 +(noun)|steamroller|power|force +(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar +(noun)|Juggernaut|idol|graven image|god +juggle|6 +(noun)|juggling|rearrangement +(noun)|juggling|performance +(verb)|beguile|hoodwink|cheat|rip off|chisel +(verb)|fudge|manipulate|fake|falsify|cook|wangle|misrepresent +(verb)|manage|deal|care|handle +(verb)|throw +juggler|1 +(noun)|performer|performing artist +jugglery|2 +(noun)|trickery|chicanery|chicane|guile|wile|shenanigan +(noun)|maneuver|manoeuvre|play +juggling|2 +(noun)|juggle|rearrangement +(noun)|juggle|performance +juglandaceae|1 +(noun)|Juglandaceae|family Juglandaceae|walnut family|dicot family|magnoliopsid family +juglandales|1 +(noun)|Juglandales|order Juglandales|plant order +juglans|1 +(noun)|Juglans|genus Juglans|dicot genus|magnoliopsid genus +juglans californica|1 +(noun)|California black walnut|Juglans californica|walnut|walnut tree +juglans cinerea|1 +(noun)|butternut|butternut tree|white walnut|Juglans cinerea|walnut|walnut tree +juglans nigra|1 +(noun)|black walnut|black walnut tree|black hickory|Juglans nigra|walnut|walnut tree +juglans regia|1 +(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut|walnut tree +jugoslav|1 +(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European +jugoslavian|1 +(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European +jugoslavija|1 +(noun)|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|Serbia and Montenegro|European country|European nation +jugular|3 +(adj)|external body part +(noun)|jugular vein|vena jugularis|vein|vena|venous blood vessel +(noun)|weak part|weak spot|soft spot +jugular vein|1 +(noun)|vena jugularis|jugular|vein|vena|venous blood vessel +juice|4 +(noun)|foodstuff|food product +(noun)|energy|vim|vitality +(noun)|current|electric current +(noun)|succus|liquid body substance|bodily fluid|body fluid|humor|humour +juice reamer|1 +(noun)|reamer|juicer|squeezer +juice up|1 +(verb)|jazz up|pep up|ginger up|enliven|liven|liven up|invigorate|animate +juiceless|2 +(adj)|juiceless |sapless +(adj)|dry|unstimulating |unexciting +juicer|2 +(noun)|drinker|imbiber|toper|consumer +(noun)|reamer|juice reamer|squeezer +juiciness|1 +(noun)|succulence|appetizingness|appetisingness +juicy|4 +(adj)|juicy |au jus|lush|succulent|sappy +(adj)|luscious|red-hot|voluptuous|sexy +(adj)|fat|profitable +(adj)|blue|gamy|gamey|naughty|racy|risque|spicy|sexy +jujitsu|1 +(noun)|jujutsu|jiujitsu|martial art +juju|2 +(noun)|magic +(noun)|voodoo|hoodoo|fetish|fetich|charm|good luck charm +jujube|3 +(noun)|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub|bush +(noun)|Chinese date|Chinese jujube|edible fruit|drupe|stone fruit +(noun)|gumdrop +jujube bush|1 +(noun)|jujube|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub|bush +jujutsu|1 +(noun)|jujitsu|jiujitsu|martial art +juke|2 +(noun)|jook|juke joint|jook joint|juke house|jook house|joint|marijuana cigarette|reefer|stick|spliff +(noun)|fake|feint +juke house|1 +(noun)|juke|jook|juke joint|jook joint|jook house|joint|marijuana cigarette|reefer|stick|spliff +juke joint|1 +(noun)|juke|jook|jook joint|juke house|jook house|joint|marijuana cigarette|reefer|stick|spliff +jukebox|1 +(noun)|nickelodeon|record player|phonograph +julep|1 +(noun)|mint julep|highball +jules alfred huot de goncourt|1 +(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer|author +jules de goncourt|1 +(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer|author +jules emile frederic massenet|1 +(noun)|Massenet|Jules Emile Frederic Massenet|composer +jules feifer|1 +(noun)|Feifer|Jules Feifer|cartoonist +jules verne|1 +(noun)|Verne|Jules Verne|writer|author +julia evelina smith|1 +(noun)|Smith|Julia Evelina Smith|suffragist +julia ward howe|1 +(noun)|Howe|Julia Ward Howe|suffragist +julian|1 +(adj)|Julian|general|full general|statesman|solon|national leader +julian bond|1 +(noun)|Bond|Julian Bond|civil rights leader|civil rights worker|civil rights activist +julian calendar|1 +(noun)|Julian calendar|Old Style calendar|solar calendar +julienne|1 +(verb)|cut +julio iglesias|1 +(noun)|Iglesias|Julio Iglesias|singer|vocalist|vocalizer|vocaliser +julius caesar|1 +(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general|full general|statesman|solon|national leader +julius erving|1 +(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward +julius marx|1 +(noun)|Marx|Julius Marx|Groucho|comedian|comic +julius ullman|1 +(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor|histrion|player|thespian|role player +julius winfield erving|1 +(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward +july|1 +(noun)|July|Gregorian calendar month +july 1|1 +(noun)|Dominion Day|July 1|legal holiday|national holiday +july 4|1 +(noun)|Independence Day|Fourth of July|July 4|legal holiday|national holiday +jumada i|1 +(noun)|Jumada I|Jomada I|Islamic calendar month +jumada ii|1 +(noun)|Jumada II|Jomada II|Islamic calendar month +jumbal|1 +(noun)|jumble|cake +jumbie bead|1 +(noun)|jumby bead|Ormosia coarctata|necklace tree +jumble|6 +(noun)|clutter|muddle|mare's nest|welter|smother|disorderliness|disorder +(noun)|jumbal|cake +(noun)|patchwork|hodgepodge|theory +(verb)|mingle|be +(verb)|confuse|mix up|assemble|piece|put together|set up|tack|tack together +(verb)|scramble|throw together|disorder|disarray +jumble sale|1 +(noun)|rummage sale|sale|cut-rate sale|sales event +jumbled|1 +(adj)|disorderly|higgledy-piggledy|hugger-mugger|topsy-turvy|untidy +jumbo|1 +(adj)|elephantine|gargantuan|giant|large +jumbo jet|2 +(noun)|jumbojet|jet|jet plane|jet-propelled plane +(noun)| +jumbojet|1 +(noun)|jumbo jet|jet|jet plane|jet-propelled plane +jumby bead|1 +(noun)|jumbie bead|Ormosia coarctata|necklace tree +jumby bean|1 +(noun)|bead tree|jumby tree|Ormosia monosperma|necklace tree +jumby tree|1 +(noun)|bead tree|jumby bean|Ormosia monosperma|necklace tree +jument|1 +(noun)|beast of burden|work animal +jumentous|1 +(adj)|work animal +jump|20 +(noun)|leap|increase +(noun)|leap|saltation|transition +(noun)|transition +(noun)|startle|start|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|parachuting|descent +(noun)|jumping|propulsion|actuation +(verb)|leap|bound|spring|move|jump on +(verb)|startle|start|move +(verb)|assail|assault|set on|attack +(verb)|wax|mount|climb|rise +(verb)|leap out|jump out|stand out|stick out|look|appear|seem +(verb)|enter|participate +(verb)|rise|climb up|change +(verb)|derail|travel|go|move|locomote +(verb)|parachute|dive|plunge|plunk +(verb)|leap +(verb)|jumpstart|jump-start|start|start up +(verb)|pass over|skip|skip over|neglect|pretermit|omit|drop|miss|leave out|overlook|overleap +(verb)|leap|switch|shift|change +(verb)|alternate|change|alter|vary +jump-start|3 +(verb)|jumpstart|jump|start|start up +(verb)|jumpstart|begin|lead off|start|commence +(verb)| +jump ball|1 +(noun)|beginning|start|commencement +jump cut|1 +(noun)|cut +jump for joy|1 +(verb)|exult|walk on air|be on cloud nine|rejoice|joy +jump off|1 +(verb)|get down|begin|get|start out|start|set about|set out|commence +jump on|1 +(verb)|hop on|mount|mount up|get on|climb on|bestride|move +jump out|1 +(verb)|leap out|jump|stand out|stick out|look|appear|seem +jump rope|2 +(noun)|skip rope|skipping rope|rope +(noun)|child's game|cardiopulmonary exercise +jump seat|1 +(noun)|seat +jump shot|1 +(noun)|jumper|basketball shot +jump suit|3 +(noun)|jumpsuit|garment +(noun)|uniform +(noun)| +jumped-up|1 +(adj)|pretentious +jumper|6 +(noun)|athlete|jock +(noun)|bounder|leaper|athlete|jock +(noun)|connection|connexion|connector|connecter|connective +(noun)|jacket +(noun)|pinafore|pinny|dress|frock +(noun)|jump shot|basketball shot +jumper cable|1 +(noun)|jumper lead|lead|jumper|wire|conducting wire +jumper lead|1 +(noun)|jumper cable|lead|jumper|wire|conducting wire +jumpers|7 +(noun)|coverall +(noun)|jumper|athlete|jock +(noun)|bounder|leaper|jumper|athlete|jock +(noun)|jumper|connection|connexion|connector|connecter|connective +(noun)|jumper|jacket +(noun)|jumper|pinafore|pinny|dress|frock +(noun)|jumper|jump shot|basketball shot +jumpiness|1 +(noun)|jitteriness|nervousness|restiveness|anxiety +jumping|2 +(noun)|track and field +(noun)|jump|propulsion|actuation +jumping-off place|1 +(noun)|point of departure|beginning|origin|root|rootage|source +jumping-off point|1 +(noun)|springboard|point of departure|beginning|start|commencement +jumping bean|1 +(noun)|jumping seed|Mexican jumping bean|seed +jumping bristletail|1 +(noun)|machilid|thysanuran insect|thysanuron +jumping gene|1 +(noun)|transposon|deoxyribonucleic acid|desoxyribonucleic acid|DNA +jumping jack|1 +(noun)|plaything|toy +jumping mouse|1 +(noun)|rodent|gnawer|gnawing animal +jumping orchid|1 +(noun)|Catasetum macrocarpum|orchid|orchidaceous plant +jumping plant louse|1 +(noun)|psylla|psyllid|plant louse|louse +jumping seed|1 +(noun)|jumping bean|Mexican jumping bean|seed +jumping up and down|1 +(noun)|jump|jumping +jumpstart|2 +(verb)|jump-start|jump|start|start up +(verb)|jump-start|begin|lead off|start|commence +jumpsuit|1 +(noun)|jump suit|garment +jumpy|1 +(adj)|edgy|high-strung|highly strung|in suspense|jittery|nervy|overstrung|restive|uptight|tense +juncaceae|1 +(noun)|Juncaceae|family Juncaceae|rush family|monocot family|liliopsid family +juncaginaceae|1 +(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family|liliopsid family +junco|1 +(noun)|snowbird|finch +junco hyemalis|1 +(noun)|dark-eyed junco|slate-colored junco|Junco hyemalis|junco|snowbird +junction|5 +(noun)|topographic point|place|spot +(noun)|conjunction|conjugation|colligation|union|unification +(noun)|articulation|join|joint|juncture|connection|connexion|link +(noun)|conjunction|connection|connexion|connector|connecter|connective +(noun)|adjunction|joining|connection|connexion +junction barrier|1 +(noun)|barrier strip|junction|conjunction +junction rectifier|1 +(noun)|diode|semiconductor diode|crystal rectifier|semiconductor device|semiconductor unit|semiconductor +junction transistor|1 +(noun)|transistor|electronic transistor|semiconductor device|semiconductor unit|semiconductor +juncture|3 +(noun)|occasion|happening|occurrence|natural event +(noun)|critical point|crossroads|crisis +(noun)|articulation|join|joint|junction|connection|connexion|link +juncus|1 +(noun)|Juncus|genus Juncus|monocot genus|liliopsid genus +juncus articulatus|1 +(noun)|jointed rush|Juncus articulatus|rush +juncus bufonius|1 +(noun)|toad rush|Juncus bufonius|rush +juncus effusus|1 +(noun)|bulrush|bullrush|common rush|soft rush|Juncus effusus|rush +juncus inflexus|1 +(noun)|hard rush|Juncus inflexus|rush +juncus leseurii|1 +(noun)|salt rush|Juncus leseurii|rush +juncus tenuis|1 +(noun)|slender rush|Juncus tenuis|rush +jund-ul-islam|1 +(noun)|Jund-ul-Islam|Soldiers of God|terrorist organization|terrorist group|foreign terrorist organization|FTO +june|1 +(noun)|June|Gregorian calendar month +june 14|1 +(noun)|Flag Day|June 14|day +june 21|1 +(noun)|summer solstice|June 21|midsummer|solstice +june 23|1 +(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day +june 24|1 +(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day +june 29|1 +(noun)|Saints Peter and Paul|June 29|Christian holy day +june 3|1 +(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day +june beetle|1 +(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle|scarabaeid|scarabaean +june bug|1 +(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle|scarabaeid|scarabaean +june grass|1 +(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass|blue grass +juneau|1 +(noun)|Juneau|capital of Alaska|state capital +juneberry|2 +(noun)|Juneberry|serviceberry|service tree|shadbush|shadblow|shrub|bush +(noun)|saskatoon|serviceberry|shadberry|berry +juneberry holly|1 +(noun)|holly +jung|1 +(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist +jungermanniaceae|1 +(noun)|Jungermanniaceae|family Jungermanniaceae|moss family +jungermanniales|1 +(noun)|Jungermanniales|order Jungermanniales|plant order +jungian|1 +(adj)|Jungian|psychologist +jungian psychology|1 +(noun)|Jungian psychology|psychotherapy|psychotherapeutics|mental hygiene +jungle|3 +(noun)|forest|woodland|timberland|timber +(noun)|location +(noun)|hobo camp|camp +jungle cat|1 +(noun)|Felis chaus|wildcat +jungle cock|1 +(noun)|jungle fowl|gallina +jungle fever|1 +(noun)|malaria +jungle fowl|1 +(noun)|gallina|gallinaceous bird|gallinacean +jungle gym|1 +(noun)|structure|construction|plaything|toy +jungle hen|1 +(noun)|jungle fowl|gallina +jungle rot|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +jungly|1 +(adj)|wooded +junin virus|1 +(noun)|Junin virus|arenavirus +junior|7 +(adj)|junior |junior-grade|inferior|lower|lower-ranking|lowly|petty|secondary|subaltern|subordinate|minor|younger|jr.|young|immature +(adj)|third-year|next-to-last|intermediate +(adj)|young |immature +(noun)|upstart|parvenu|nouveau-riche|arriviste +(noun)|lowerclassman|underclassman +(noun)|man|adult male +(noun)|Junior|Jr|Jnr|son|boy +junior-grade|1 +(adj)|inferior|lower|lower-ranking|lowly|petty|secondary|subaltern|subordinate|junior +junior class|1 +(noun)|class|year +junior college|1 +(noun)|college +junior featherweight|1 +(noun)|boxer|pugilist +junior high|1 +(noun)|junior high school|secondary school|lyceum|lycee|Gymnasium|middle school +junior high school|1 +(noun)|junior high|secondary school|lyceum|lycee|Gymnasium|middle school +junior lightweight|1 +(noun)|boxer|pugilist +junior middleweight|1 +(noun)|boxer|pugilist +junior school|1 +(noun)|grade school|grammar school|elementary school|primary school +junior status|1 +(noun)|subordinateness|subsidiarity +junior varsity|1 +(noun)|JV|team|squad +junior welterweight|1 +(noun)|boxer|pugilist +juniper|2 +(noun)|retem|raetam|juniper bush|Retama raetam|Genista raetam|shrub|bush +(noun)|cypress +juniper berries|2 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|juniper berry|fruit +juniper berry|1 +(noun)|fruit +juniper bush|1 +(noun)|retem|raetam|juniper|Retama raetam|Genista raetam|shrub|bush +juniperic acid|1 +(noun)|hydroxy acid +junipero serra|1 +(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary|missioner +juniperus|1 +(noun)|Juniperus|genus Juniperus|gymnosperm genus +juniperus bermudiana|1 +(noun)|Bermuda cedar|Juniperus bermudiana|pencil cedar|pencil cedar tree +juniperus communis|1 +(noun)|common juniper|Juniperus communis|juniper +juniperus communis depressa|1 +(noun)|ground cedar|dwarf juniper|Juniperus communis depressa|juniper +juniperus flaccida|1 +(noun)|Mexican juniper|drooping juniper|Juniperus flaccida|juniper +juniperus horizontalis|1 +(noun)|creeping juniper|Juniperus horizontalis|juniper +juniperus procera|1 +(noun)|east African cedar|Juniperus procera|pencil cedar|pencil cedar tree +juniperus sabina|1 +(noun)|dwarf juniper|savin|Juniperus sabina|juniper +juniperus silicicola|1 +(noun)|southern red cedar|Juniperus silicicola|juniper +juniperus virginiana|1 +(noun)|eastern red cedar|red cedar|red juniper|Juniperus virginiana|pencil cedar|pencil cedar tree +junk|3 +(noun)|debris|dust|rubble|detritus|rubbish|trash|scrap +(noun)|boat +(verb)|trash|scrap|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +junk bond|1 +(noun)|high-yield bond|bond|bond certificate +junk dna|1 +(noun)|junk DNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +junk e-mail|1 +(noun)|spam|electronic mail|e-mail|email +junk food|1 +(noun)|food +junk heap|1 +(noun)|garbage heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +junk mail|1 +(noun)|third-class mail|third class +junk pile|1 +(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +junk shop|1 +(noun)|shop|store +junked|1 +(adj)|cast-off|discarded|scrap|waste|useless +junker|1 +(noun)|Junker|Prussian +junkers|2 +(noun)|Junkers|Hugo Junkers|engineer|applied scientist|technologist +(noun)|Junker|Prussian +junket|6 +(noun)|dessert|sweet|afters +(noun)|excursion|jaunt|outing|pleasure trip|expedition|sashay|journey|journeying +(noun)|trip +(verb)|travel|trip|jaunt +(verb)|feast|banquet|host +(verb)|feast|banquet|eat +junketing|1 +(noun)|travel|traveling|travelling +junkie|2 +(noun)|drug addict|junky|addict +(noun)|addict|nut|freak|junky|enthusiast|partisan|partizan +junky|2 +(noun)|drug addict|junkie|addict +(noun)|addict|nut|freak|junkie|enthusiast|partisan|partizan +junkyard|1 +(noun)|yard +juno|1 +(noun)|Juno|Roman deity +junoesque|1 +(adj)|Junoesque|statuesque|shapely +junta|1 +(noun)|military junta|clique|coterie|ingroup|inner circle|pack|camp +junto|1 +(noun)|cabal|faction|camarilla|clique|coterie|ingroup|inner circle|pack|camp +jupati|1 +(noun)|jupaty|jupati palm|Raffia taedigera|raffia palm|Raffia farinifera|Raffia ruffia +jupati palm|1 +(noun)|jupati|jupaty|Raffia taedigera|raffia palm|Raffia farinifera|Raffia ruffia +jupaty|1 +(noun)|jupati|jupati palm|Raffia taedigera|raffia palm|Raffia farinifera|Raffia ruffia +jupiter|2 +(noun)|Jupiter|Jovian planet|gas giant +(noun)|Jupiter|Jove|Roman deity +jupiter's beard|1 +(noun)|Jupiter's beard|silverbush|silver-bush|Anthyllis barba-jovis|shrub|bush +jupiter fidius|1 +(noun)|Jupiter Fidius|Protector of Boundaries|Jupiter|Jove +jupiter fulgur|1 +(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter|Jove +jupiter fulminator|1 +(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter|Jove +jupiter optimus maximus|1 +(noun)|Jupiter Optimus Maximus|Best and Greatest|Jupiter|Jove +jupiter pluvius|1 +(noun)|Jupiter Pluvius|Rain-giver|Jupiter|Jove +jupiter tonans|1 +(noun)|Jupiter Tonans|Thunderer|Jupiter|Jove +jural|1 +(adj)|juristic|legal +jurassic|1 +(noun)|Jurassic|Jurassic period|period|geological period +jurassic period|1 +(noun)|Jurassic|Jurassic period|period|geological period +juridic|2 +(adj)|juridical|philosophy +(adj)|judicial|juridical|righteousness|natural virtue +juridical|2 +(adj)|juridic|philosophy +(adj)|judicial|juridic|righteousness|natural virtue +jurisdiction|2 +(noun)|legal power|power|powerfulness +(noun)|district|territory|territorial dominion|dominion +jurisdictional|1 +(adj)|territorial +jurisprudence|2 +(noun)|law|legal philosophy|philosophy +(noun)|law|collection|aggregation|accumulation|assemblage +jurisprudential|1 +(adj)|philosophy +jurist|2 +(noun)|legal expert|expert +(noun)|judge|justice|magistrate|official|functionary|adjudicator +juristic|1 +(adj)|jural|legal +juror|1 +(noun)|juryman|jurywoman|panelist|panellist +jury|2 +(noun)|body +(noun)|panel|committee|commission +jury-rigged|1 +(adj)|improvised|makeshift|impermanent |temporary +jury box|1 +(noun)|box +jury duty|1 +(noun)|civic duty|civic responsibility +jury mast|1 +(noun)|mast +jury system|1 +(noun)|legal system +juryman|1 +(noun)|juror|jurywoman|panelist|panellist +jurywoman|1 +(noun)|juror|juryman|panelist|panellist +jus civile|1 +(noun)|Roman law|Justinian code|civil law|legal code +jus sanguinis|1 +(noun)|legal principle|judicial principle|judicial doctrine +jus soli|1 +(noun)|legal principle|judicial principle|judicial doctrine +jussieu|1 +(noun)|Jussieu|Antoine Laurent de Jussieu|botanist|phytologist|plant scientist +jussive mood|1 +(noun)|imperative mood|imperative|mood|mode|modality +just|9 +(adj)|just |conscionable|fitting|meet|retributive|retributory|vindicatory|rightful|fair|honorable|honourable|right|righteous +(adj)|equitable |evenhanded +(adj)|fair |antimonopoly|antitrust|clean|sporting|sportsmanlike|fair-minded|fair-and-square|impartial|fair|reasonable|sensible +(adj)|good|upright|virtuous|righteous +(adv)|merely|simply|only|but +(adv)|precisely|exactly +(adv)|just now +(adv)|simply +(adv)|barely|hardly|scarcely|scarce +just-noticeable difference|1 +(noun)|jnd|difference threshold|differential threshold|difference limen|differential limen +just about|2 +(adv)|about|almost|most|all but|nearly|near|nigh|virtually|well-nigh +(adv)|approximately|about|close to|some|roughly|more or less|around|or so +just as|1 +(adv)|even as +just deserts|1 +(noun)|poetic justice|result|resultant|final result|outcome|termination +just in case|1 +(adv)|in case +just in time|1 +(adv)|in the nick of time +just now|1 +(adv)|just +just right|1 +(adv)|to a T|to the letter|to perfection +just so|1 +(adv)|with great care +just the ticket|1 +(noun)|ticket|appropriateness +justice|4 +(noun)|justness|righteousness|natural virtue +(noun)|judicature|administration|disposal +(noun)|judge|jurist|magistrate|official|functionary|adjudicator +(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department +justice department|1 +(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department +justice of the peace|1 +(noun)|judge|justice|jurist|magistrate +justiciar|1 +(noun)|justiciary|judge|justice|jurist|magistrate +justiciary|2 +(noun)|justiciar|judge|justice|jurist|magistrate +(noun)|jurisdiction +justifiable|1 +(adj)|excusable +justifiably|1 +(adv)|with reason +justification|3 +(noun)|circumstance|condition|consideration +(noun)|explanation|account +(noun)|vindication|exoneration +justificative|2 +(adj)|defensive|justificatory|apologetic |excusatory +(adj)|justificatory|vindicatory|exculpatory +justificatory|2 +(adj)|defensive|justificative|apologetic |excusatory +(adj)|justificative|vindicatory|exculpatory +justified|1 +(adj)|even +justifiedly|1 +(adv)|rightly|justly +justifier|1 +(noun)|apologist|vindicator|advocate|advocator|proponent|exponent +justify|5 +(verb)|warrant|confirm|reassert +(verb)|vindicate|uphold|maintain +(verb)|apologize|apologise|excuse|rationalize|rationalise|defend|support|fend for +(verb)|absolve|free|forgive +(verb)|adjust|set|correct +justinian|1 +(noun)|Justinian|Justinian I|Justinian the Great|Emperor +justinian code|1 +(noun)|Roman law|Justinian code|civil law|jus civile|legal code +justinian i|1 +(noun)|Justinian|Justinian I|Justinian the Great|Emperor +justinian the great|1 +(noun)|Justinian|Justinian I|Justinian the Great|Emperor +justly|2 +(adv)|rightly|justifiedly +(adv)|right +justness|2 +(noun)|rightness|nicety|conformity|conformance +(noun)|justice|righteousness|natural virtue +jut|3 +(noun)|bulge|bump|hump|gibbosity|gibbousness|prominence|protuberance|protrusion|extrusion|excrescence|projection +(noun)|protrusion|projection|jutting|change of shape +(verb)|stick out|protrude|jut out|project +jut out|1 +(verb)|stick out|protrude|jut|project +jute|2 +(noun)|plant fiber|plant fibre +(noun)|Jute|European +jutish|1 +(noun)|Kentish|Jutish|Old English|Anglo-Saxon +jutland|2 +(noun)|Jutland|Jylland|peninsula +(noun)|Jutland|battle of Jutland|naval battle +jutting|2 +(adj)|projected|projecting|protruding|sticking|sticking out|protrusive +(noun)|protrusion|projection|jut|change of shape +juvenal|1 +(noun)|Juvenal|Decimus Junius Juvenalis|satirist|ironist|ridiculer +juvenescence|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +juvenile|3 +(adj)|time of life +(adj)|adolescent|jejune|puerile|immature +(noun)|juvenile person|person|individual|someone|somebody|mortal|human|soul +juvenile-onset diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +juvenile amaurotic idiocy|1 +(noun)|Spielmeyer-Vogt disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +juvenile body|1 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh +juvenile court|1 +(noun)|court|tribunal|judicature +juvenile delinquency|1 +(noun)|delinquency|misbehavior|misbehaviour|misdeed +juvenile delinquent|1 +(noun)|delinquent|wrongdoer|offender +juvenile diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +juvenile person|1 +(noun)|juvenile|person|individual|someone|somebody|mortal|human|soul +juvenile rheumatoid arthritis|1 +(noun)|Still's disease|rheumatoid arthritis|atrophic arthritis|rheumatism +juvenile wart|1 +(noun)|wart|verruca +juvenility|2 +(noun)|callowness|jejuneness|immaturity|immatureness +(noun)|youth|youthfulness|youngness +juxtapose|1 +(verb)|put|set|place|pose|position|lay +juxtaposed|1 +(adj)|close +juxtaposition|2 +(noun)|apposition|collocation|placement|location|locating|position|positioning|emplacement +(noun)|position|place +jv|1 +(noun)|junior varsity|JV|team|squad +jyaistha|1 +(noun)|Jeth|Jyaistha|Hindu calendar month +jylland|1 +(noun)|Jutland|Jylland|peninsula +jynx|1 +(noun)|Jynx|genus Jynx|bird genus +k|7 +(adj)|thousand|a thousand|one thousand|1000|m|cardinal +(noun)|kelvin|K|temperature unit +(noun)|potassium|K|atomic number 19|metallic element|metal +(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer +(noun)|kilobyte|K|KB|computer memory unit +(noun)|K|letter|letter of the alphabet|alphabetic character +(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +k-dur 20|1 +(noun)|potassium chloride|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +k-lor|1 +(noun)|potassium chloride|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +k-lyte|1 +(noun)|potassium chloride|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +k-meson|1 +(noun)|kaon|kappa-meson|K particle|meson|mesotron +k.e.|1 +(noun)|kinetic energy|K.E.|mechanical energy +k2|1 +(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak +k particle|1 +(noun)|kaon|kappa-meson|k-meson|K particle|meson|mesotron +k ration|1 +(noun)|K ration|field ration +ka|1 +(noun)|Ka|Hindu deity +kaaba|1 +(noun)|Kaaba|Caaba|shrine +kabala|2 +(noun)|cabala|cabbala|cabbalah|kabbala|kabbalah|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +kabbala|2 +(noun)|cabala|cabbala|cabbalah|kabala|kabbalah|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +kabbalah|2 +(noun)|cabala|cabbala|cabbalah|kabala|kabbala|qabala|qabalah|secret|arcanum +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +kabbalism|2 +(noun)|Kabbalism|Cabalism|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|cabalism|attachment|adherence|adhesion +kabbalist|2 +(noun)|cabalist|expert +(noun)|Cabalist|Kabbalist|scholar|scholarly person|student +kabbalistic|1 +(adj)|cabalistic|qabalistic|cryptic|cryptical|sibylline|esoteric +kabob|1 +(noun)|kebab|shish kebab|dish +kabolin|1 +(noun)|nandrolone|Durabolin|Kabolin|androgen|androgenic hormone +kabul|1 +(noun)|Kabul|capital of Afghanistan|national capital +kach|1 +(noun)|Kahane Chai|Kach|terrorist organization|terrorist group|foreign terrorist organization|FTO +kachaturian|1 +(noun)|Kachaturian|Aram Kachaturian|composer +kachin|1 +(noun)|Kachin|Kachinic|Tibeto-Burman|Tibeto-Burman language +kachinic|1 +(noun)|Kachin|Kachinic|Tibeto-Burman|Tibeto-Burman language +kadai|1 +(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan|Sino-Tibetan language +kadai language|1 +(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan|Sino-Tibetan language +kadikoy|1 +(noun)|Chalcedon|Kadikoy|town +kaffir|2 +(noun)|great millet|kafir corn|kaffir corn|Sorghum bicolor|sorghum +(noun)|kafir|caffer|caffre|Black African +kaffir boom|2 +(noun)|Transvaal kafferboom|Erythrina lysistemon|coral tree|erythrina +(noun)|Cape kafferboom|Erythrina caffra|coral tree|erythrina +kaffir bread|1 +(noun)|Encephalartos caffer|cycad +kaffir cat|1 +(noun)|caffer cat|Felis ocreata|wildcat +kaffir corn|1 +(noun)|great millet|kaffir|kafir corn|Sorghum bicolor|sorghum +kaffir pox|1 +(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +kaffiyeh|1 +(noun)|headdress|headgear +kafir|2 +(noun)|kaffir|caffer|caffre|Black African +(noun)|Kafir|Afghan|Afghanistani +kafir corn|1 +(noun)|great millet|kaffir|kaffir corn|Sorghum bicolor|sorghum +kafiri|1 +(noun)|Kafiri|Dard|Dardic|Dardic language +kafka|1 +(noun)|Kafka|Franz Kafka|writer|author +kafkaesque|2 +(adj)|Kafkaesque|writer|author +(adj)|unrealistic +kafocin|1 +(noun)|cephaloglycin|Kafocin|antibiotic|antibiotic drug +kaftan|2 +(noun)|caftan|dress|frock +(noun)|caftan|cloak +kahane chai|1 +(noun)|Kahane Chai|Kach|terrorist organization|terrorist group|foreign terrorist organization|FTO +kahikatea|1 +(noun)|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer|coniferous tree +kahlil gibran|1 +(noun)|Gibran|Kahlil Gibran|writer|author +kahlua|1 +(noun)|Kahlua|coffee liqueur +kahn|1 +(noun)|Kahn|Louis Isadore Kahn|architect|designer +kahoolawe|1 +(noun)|Kahoolawe|Kahoolawe Island|island +kahoolawe island|1 +(noun)|Kahoolawe|Kahoolawe Island|island +kai apple|1 +(noun)|edible fruit +kail|2 +(noun)|kale|cole|borecole|colewort|Brassica oleracea acephala|crucifer|cruciferous plant +(noun)|kale|cole|cabbage|chou +kainite|1 +(noun)|mineral +kainogenesis|1 +(noun)|cenogenesis|kenogenesis|caenogenesis|cainogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +kaiser|1 +(noun)|Kaiser|Emperor +kaiser bill|1 +(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser +kaiser roll|1 +(noun)|bun|roll +kaiser wilhelm|1 +(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser +kakatoe|1 +(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus +kakatoe galerita|1 +(noun)|sulphur-crested cockatoo|Kakatoe galerita|Cacatua galerita|cockatoo +kakatoe leadbeateri|1 +(noun)|pink cockatoo|Kakatoe leadbeateri|cockatoo +kakemono|1 +(noun)|Kakemono|hanging|wall hanging +kaki|2 +(noun)|Japanese persimmon|Diospyros kaki|persimmon|persimmon tree +(noun)|Himantopus novae-zelandiae|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +kakke disease|1 +(noun)|beriberi +kala-azar|2 +(noun)|visceral leishmaniasis|Assam fever|dumdum fever|leishmaniasis|leishmaniosis|kala azar +(noun)|leishmaniasis|leishmaniosis|kala azar|protozoal infection +kala azar|2 +(noun)|leishmaniasis|leishmaniosis|protozoal infection +(noun)|visceral leishmaniasis|kala-azar|Assam fever|dumdum fever|leishmaniasis|leishmaniosis +kalaallit nunaat|1 +(noun)|Greenland|Gronland|Kalaallit Nunaat|island +kalahari|1 +(noun)|Kalahari|Kalahari Desert|desert +kalahari desert|1 +(noun)|Kalahari|Kalahari Desert|desert +kalamazoo|1 +(noun)|Kalamazoo|town +kalansuwa|1 +(noun)|cap +kalantas|1 +(noun)|Philippine mahogany|Philippine cedar|Toona calantas|Cedrela calantas|mahogany|mahogany tree +kalapooia|1 +(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian +kalapooian|1 +(noun)|Kalapooian|Kalapuyan|Penutian +kalapuya|1 +(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian +kalapuyan|1 +(noun)|Kalapooian|Kalapuyan|Penutian +kalashnikov|1 +(noun)|Kalashnikov|submachine gun +kalashnikov culture|1 +(noun)|Kalashnikov culture|culture +kale|3 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|kail|cole|borecole|colewort|Brassica oleracea acephala|crucifer|cruciferous plant +(noun)|kail|cole|cabbage|chou +kaleidoscope|1 +(noun)|plaything|toy +kaleidoscopic|1 +(adj)|kaleidoscopical|changeable |changeful +kaleidoscopical|1 +(adj)|kaleidoscopic|changeable |changeful +kalemia|1 +(noun)|state +kali|2 +(noun)|saltwort|barilla|glasswort|kelpwort|Salsola kali|Salsola soda|shrub|bush +(noun)|Kali|Hindu deity +kalian|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +kalif|1 +(noun)|caliph|calif|kaliph|khalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +kalimantan|2 +(noun)|Indonesian Borneo|Kalimantan|state|province +(noun)|Borneo|Kalimantan|island +kalinin|1 +(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman|solon|national leader +kaliph|1 +(noun)|caliph|calif|kalif|khalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +kaliuresis|1 +(noun)|kaluresis|symptom +kalka|2 +(noun)|Khalkha|Khalka|Kalka|Mongol|Mongolian +(noun)|Khalkha|Khalka|Kalka|Mongolian|Mongolic|Mongolic language +kalki|1 +(noun)|Kalki|avatar +kallman's syndrome|1 +(noun)|Kallman's syndrome|hypogonadism +kalmia|1 +(noun)|shrub|bush +kalmia angustifolia|1 +(noun)|sheep laurel|pig laurel|lambkill|Kalmia angustifolia|kalmia +kalmia latifolia|1 +(noun)|mountain laurel|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia +kalmia polifolia|1 +(noun)|swamp laurel|bog laurel|bog kalmia|Kalmia polifolia|kalmia +kalon tripa|1 +(noun)|Kalon Tripa|president|chairman|chairwoman|chair|chairperson +kalotermes|1 +(noun)|Kalotermes|genus Kalotermes|arthropod genus +kalotermitidae|1 +(noun)|Kalotermitidae|family Kalotermitidae|arthropod family +kalpac|1 +(noun)|calpac|calpack|cap +kaluga|1 +(noun)|Kaluga|city|metropolis|urban center +kalumpang|1 +(noun)|Java olives|Sterculia foetida|sterculia +kaluresis|1 +(noun)|kaliuresis|symptom +kam-sui|1 +(noun)|Kam-Sui|Kadai|Kam-Tai|Kadai language +kam-tai|1 +(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan|Sino-Tibetan language +kam muang|1 +(noun)|Tai Yuan|Kam Muang|Tai +kama|1 +(noun)|Kama|Hindu deity +kamarupan|1 +(noun)|Kamarupan|Tibeto-Burman|Tibeto-Burman language +kamasutra|1 +(noun)|Kamasutra|Sanskrit literature +kamba|1 +(noun)|Kamba|Bantu|Bantoid language +kamchatka peninsula|1 +(noun)|Kamchatka Peninsula|peninsula +kamchatkan sea eagle|1 +(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle +kameez|1 +(noun)|tunic +kamehameha i|1 +(noun)|Kamehameha I|Kamehameha the Great|king|male monarch +kamehameha the great|1 +(noun)|Kamehameha I|Kamehameha the Great|king|male monarch +kamet|1 +(noun)|Kamet|mountain peak +kami|1 +(noun)|Kami|Japanese deity +kamia|2 +(noun)|Kamia|Hokan|Hoka +(noun)|Kamia|Yuman +kamikaze|2 +(noun)|fighter|fighter aircraft|attack aircraft +(noun)|pilot|airplane pilot +kammon strait bridge|1 +(noun)|Kammon Strait Bridge|suspension bridge +kampala|1 +(noun)|Kampala|capital of Uganda|national capital +kampong|1 +(noun)|Kampong|campong|village|hamlet +kampuchea|1 +(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country|Asian nation +kampuchean|2 +(adj)|Cambodian|Kampuchean|Asian country|Asian nation +(noun)|Cambodian|Kampuchean|Asian|Asiatic +kan river|1 +(noun)|Gan Jiang|Kan River|river +kanaf|1 +(noun)|kenaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +kanamycin|1 +(noun)|Kantrex|antibiotic|antibiotic drug +kananga|1 +(noun)|Kananga|Luluabourg|city|metropolis|urban center +kanara|1 +(noun)|Kanara|Canara|geographical area|geographic area|geographical region|geographic region +kanarese|2 +(noun)|Kanarese|Canarese|Dravidian +(noun)|Kannada|Kanarese|South Dravidian +kanawha|1 +(noun)|Kanawha|Kanawha River|river +kanawha river|1 +(noun)|Kanawha|Kanawha River|river +kanchanjanga|1 +(noun)|Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak +kanchenjunga|1 +(noun)|Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak +kanchil|1 +(noun)|Tragulus kanchil|chevrotain|mouse deer +kandahar|1 +(noun)|Kandahar|Qandahar|city|metropolis|urban center +kandinsky|1 +(noun)|Kandinsky|Wassily Kandinsky|painter +kandy|1 +(noun)|Kandy|city|metropolis|urban center +kangaroo|1 +(noun)|marsupial|pouched mammal +kangaroo's-foot|1 +(noun)|kangaroo paw|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb|herbaceous plant +kangaroo-foot plant|1 +(noun)|kangaroo paw|kangaroo's-foot|Australian sword lily|Anigozanthus manglesii|herb|herbaceous plant +kangaroo apple|1 +(noun)|poroporo|Solanum aviculare|nightshade +kangaroo bear|1 +(noun)|koala|koala bear|native bear|Phascolarctos cinereus|phalanger|opossum|possum +kangaroo court|1 +(noun)|court|tribunal|judicature +kangaroo hare|1 +(noun)|hare wallaby|wallaby|brush kangaroo +kangaroo jerboa|1 +(noun)|jerboa kangaroo|rat kangaroo|kangaroo rat +kangaroo mouse|2 +(noun)|dwarf pocket rat|pocket rat +(noun)|jerboa rat +kangaroo paw|1 +(noun)|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb|herbaceous plant +kangaroo rat|2 +(noun)|desert rat|Dipodomys phillipsii|pocket rat +(noun)|rat kangaroo|kangaroo +kannada|1 +(noun)|Kannada|Kanarese|South Dravidian +kannada-speaking|1 +(adj)|Kannada-speaking|communicative |communicatory +kansa|2 +(noun)|Kansa|Kansas|Dhegiha +(noun)|Kansa|Kansas|Dhegiha +kansan|1 +(noun)|Kansan|American +kansas|6 +(noun)|Kansas|Sunflower State|KS|American state +(noun)|Kansa|Kansas|Dhegiha +(noun)|Kansas|Kansas River|Kaw River|river +(noun)|Kansa|Kansas|Dhegiha +(noun)|Kansa|Kansas|Dhegiha +(noun)|Kansa|Kansas|Dhegiha +kansas city|2 +(noun)|Kansas City|city|metropolis|urban center +(noun)|Kansas City|city|metropolis|urban center +kansas river|1 +(noun)|Kansas|Kansas River|Kaw River|river +kansu|1 +(noun)|Gansu|Kansu|Gansu province|state|province +kant|1 +(noun)|Kant|Immanuel Kant|philosopher +kantian|1 +(adj)|Kantian|philosopher +kantrex|1 +(noun)|kanamycin|Kantrex|antibiotic|antibiotic drug +kanzu|1 +(noun)|garment +kaochlor|1 +(noun)|potassium chloride|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +kaoliang|1 +(noun)|grain sorghum +kaolin|1 +(noun)|china clay|china stone|kaoline|porcelain clay|terra alba|clay +kaoline|1 +(noun)|china clay|china stone|kaolin|porcelain clay|terra alba|clay +kaolinite|1 +(noun)|mineral +kaon|1 +(noun)|kappa-meson|k-meson|K particle|meson|mesotron +kaopectate|1 +(noun)|Kaopectate|antidiarrheal|antidiarrheal drug +kapeika|1 +(noun)|Belarusian monetary unit +kaph|1 +(noun)|letter|letter of the alphabet|alphabetic character +kaplan group|1 +(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization|terrorist group|foreign terrorist organization|FTO +kapok|2 +(noun)|silk cotton|vegetable silk|plant fiber|plant fibre +(noun)|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +kaposi's sarcoma|1 +(noun)|Kaposi's sarcoma|sarcoma +kaposi's varicelliform eruption|1 +(noun)|eczema vaccinatum|Kaposi's varicelliform eruption|eczema|eruption +kappa|1 +(noun)|letter|letter of the alphabet|alphabetic character +kappa-meson|1 +(noun)|kaon|k-meson|K particle|meson|mesotron +kapsiki|1 +(noun)|Higi|Kapsiki|Biu-Mandara +kapuka|1 +(noun)|Griselinia littoralis|shrub|bush +kaput|1 +(adj)|done for|gone|destroyed +kara sea|1 +(noun)|Kara Sea|sea +karabiner|1 +(noun)|carabiner|snap ring|hoop|ring|fastener|fastening|holdfast|fixing +karachi|1 +(noun)|Karachi|city|metropolis|urban center +karakalpak|2 +(noun)|Karakalpak|Turki +(noun)|Karakalpak|Turki|Turkic|Turko-Tatar|Turkic language +karakoram|1 +(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +karakoram range|1 +(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +karakorum range|1 +(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +karakul|1 +(noun)|broadtail|caracul|domestic sheep|Ovis aries +karaoke|1 +(noun)|singing|vocalizing +karat|1 +(noun)|Karat|carat|unit of measurement|unit +karate|1 +(noun)|martial art +karaya gum|1 +(noun)|sterculia gum|gum +karbala|1 +(noun)|Kerbala|Karbala|Kerbela|city|metropolis|urban center +karel capek|1 +(noun)|Capek|Karel Capek|writer|author|dramatist|playwright +karelia|1 +(noun)|Karelia|geographical area|geographic area|geographical region|geographic region +karelian|2 +(noun)|Karelian|Carelian|Russian +(noun)|Karelian|Carelian|Baltic-Finnic +karelian isthmus|1 +(noun)|Karelian Isthmus|isthmus +karen|1 +(noun)|Karen|Karenic|Tibeto-Burman|Tibeto-Burman language +karen blixen|1 +(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer|author +karenic|1 +(noun)|Karen|Karenic|Tibeto-Burman|Tibeto-Burman language +karl-marx stadt|1 +(noun)|Chemnitz|Karl-Marx Stadt|city|metropolis|urban center +karl adolf eichmann|1 +(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi|German Nazi +karl adolph verner|1 +(noun)|Verner|Karl Adolph Verner|philologist|philologue +karl alex muller|1 +(noun)|Muller|Karl Alex Muller|nuclear physicist +karl augustus menninger|1 +(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist|head-shrinker|shrink +karl baedeker|1 +(noun)|Baedeker|Karl Baedeker|publisher +karl barth|1 +(noun)|Barth|Karl Barth|theologian|theologist|theologizer|theologiser +karl czerny|1 +(noun)|Czerny|Karl Czerny|pianist|piano player|composer +karl friedrich gauss|1 +(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician +karl friedrich hieronymus von munchhausen|1 +(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist|raconteur +karl gauss|1 +(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician +karl gjellerup|1 +(noun)|Gjellerup|Karl Gjellerup|writer|author +karl gunnar myrdal|1 +(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist|economic expert +karl gustav jacob jacobi|1 +(noun)|Jacobi|Karl Gustav Jacob Jacobi|mathematician +karl jaspers|1 +(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist|head-shrinker|shrink +karl landsteiner|1 +(noun)|Landsteiner|Karl Landsteiner|diagnostician|pathologist +karl linne|1 +(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist|phytologist|plant scientist +karl marx|1 +(noun)|Marx|Karl Marx|philosopher|economist|economic expert|revolutionist|revolutionary|subversive|subverter +karl menninger|1 +(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist|head-shrinker|shrink +karl rudolf gerd von rundstedt|1 +(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal +karl scheele|1 +(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist +karl theodor jaspers|1 +(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist|head-shrinker|shrink +karl von clausewitz|1 +(noun)|Clausewitz|Karl von Clausewitz|general|full general +karl von frisch|1 +(noun)|Frisch|Karl von Frisch|zoologist|animal scientist +karl waldemar ziegler|1 +(noun)|Ziegler|Karl Waldemar Ziegler|chemist +karl wernicke|1 +(noun)|Wernicke|Karl Wernicke|neurologist|brain doctor +karl wilhelm scheele|1 +(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist +karl wilhelm siemens|1 +(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer|applied scientist|technologist +karlfeldt|1 +(noun)|Karlfeldt|Erik Axel Karlfeldt|poet +karloff|1 +(noun)|Karloff|Boris Karloff|William Henry Pratt|actor|histrion|player|thespian|role player +karma|1 +(noun)|destiny|fate +karnataka|1 +(noun)|Karnataka|Mysore|state|province +karok|2 +(noun)|Karok|Hokan|Hoka +(noun)|Karok|Quoratean +karol wojtyla|1 +(noun)|John Paul II|Karol Wojtyla|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +karpov|1 +(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master +karsavina|1 +(noun)|Karsavina|Tamara Karsavina|dancer|professional dancer +kartik|1 +(noun)|Kartik|Karttika|Hindu calendar month +kartikeya|1 +(noun)|Kartikeya|Karttikeya|Hindu deity +karttika|1 +(noun)|Kartik|Karttika|Hindu calendar month +karttikeya|1 +(noun)|Kartikeya|Karttikeya|Hindu deity +karyokinesis|1 +(noun)|organic process|biological process +karyokinetic|1 +(adj)|organic process|biological process +karyolymph|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +karyolysis|1 +(noun)|lysis +karyon|1 +(noun)|nucleus|cell nucleus|organelle|cell organ +karyoplasm|1 +(noun)|nucleoplasm|protoplasm|living substance +karyotype|1 +(noun)|constitution|composition|makeup +kasai|1 +(noun)|Kasai|Kasai River|River Kasai|river +kasai river|1 +(noun)|Kasai|Kasai River|River Kasai|river +kasbah|1 +(noun)|casbah|quarter +kasha|1 +(noun)|hot cereal +kashag|1 +(noun)|Kashag|advisory board|planning board +kashmir|1 +(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area|geographic area|geographical region|geographic region +kashmir goat|1 +(noun)|Cashmere goat|Kashmir goat|domestic goat|Capra hircus +kashmiri|3 +(adj)|Kashmiri|geographical area|geographic area|geographical region|geographic region +(noun)|Kashmiri|Indian +(noun)|Kashmiri|Dard|Dardic|Dardic language +kaspar friedrich wolff|1 +(noun)|Wolff|Kaspar Friedrich Wolff|anatomist +kasparov|1 +(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master +kassite|2 +(noun)|Kassite|Cassite|White|white person|Caucasian +(noun)|Kassite|Cassite|natural language|tongue +kastler|1 +(noun)|Kastler|Alfred Kastler|physicist +kat|1 +(noun)|khat|qat|quat|cat|Arabian tea|African tea|stimulant|stimulant drug +katabatic|1 +(adj)|katabatic |catabatic +katabatic wind|1 +(noun)|catabatic wind|wind|air current|current of air +katabolic|2 +(adj)|catabolic|organic process|biological process +(adj)|catabolic |destructive-metabolic|energy-releasing +katabolism|1 +(noun)|catabolism|dissimilation|destructive metabolism|organic process|biological process +katamorphism|1 +(noun)|metamorphism +katar|2 +(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country|Asian nation +(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula +katar peninsula|1 +(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula +katari|2 +(adj)|Qatari|Katari|Asian country|Asian nation +(noun)|Qatari|Katari|Arab|Arabian +kate chopin|1 +(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer|author +kate o'flaherty chopin|1 +(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer|author +kate smith|1 +(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer|vocalist|vocalizer|vocaliser +katharevusa|1 +(noun)|Katharevusa|Modern Greek +katharine hepburn|1 +(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress +katharine houghton hepburn|1 +(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress +katharobe|1 +(noun)|organism|being +katharobic|1 +(adj)|organism|being +katharometer|1 +(noun)|measuring instrument|measuring system|measuring device +katharsis|2 +(noun)|catharsis|purgation|purge|purging +(noun)|catharsis|abreaction|purge|purging +katherine anne porter|1 +(noun)|Porter|Katherine Anne Porter|writer|author +katherine cornell|1 +(noun)|Cornell|Katherine Cornell|actress +katherine mansfield|1 +(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer|author +kathleen mansfield beauchamp|1 +(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer|author +kathmandu|1 +(noun)|Kathmandu|Katmandu|capital of Nepal|national capital +kathryn elizabeth smith|1 +(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer|vocalist|vocalizer|vocaliser +katmai national park|1 +(noun)|Katmai National Park|national park +katmandu|1 +(noun)|Kathmandu|Katmandu|capital of Nepal|national capital +katsina|1 +(noun)|Katsina|city|metropolis|urban center +katsura tree|1 +(noun)|Cercidiphyllum japonicum|angiospermous tree|flowering tree +katsushika hokusai|1 +(noun)|Hokusai|Katsushika Hokusai|painter +katsuwonidae|1 +(noun)|Katsuwonidae|family Kasuwonidae|fish family +katsuwonus|1 +(noun)|Katsuwonus|genus Katsuwonus|fish genus +katsuwonus pelamis|1 +(noun)|bonito|oceanic bonito|Katsuwonus pelamis|scombroid|scombroid fish +kattegatt|1 +(noun)|Kattegatt|strait|sound +katydid|1 +(noun)|long-horned grasshopper|tettigoniid +katzenjammer|2 +(noun)|hangover|discomfort|uncomfortableness +(noun)|hubbub|uproar|brouhaha|noise +kauai|1 +(noun)|Kauai|Kauai Island|island +kauai island|1 +(noun)|Kauai|Kauai Island|island +kaufman|1 +(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist|playwright +kaunas|1 +(noun)|Kaunas|Kovna|Kovno|city|metropolis|urban center +kaunda|1 +(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman|solon|national leader +kauri|3 +(noun)|kauri copal|kauri resin|kauri gum|copal +(noun)|kaury|Agathis australis|kauri pine|dammar pine +(noun)|wood +kauri copal|1 +(noun)|kauri|kauri resin|kauri gum|copal +kauri gum|1 +(noun)|kauri|kauri copal|kauri resin|copal +kauri pine|1 +(noun)|dammar pine|conifer|coniferous tree +kauri resin|1 +(noun)|kauri|kauri copal|kauri gum|copal +kaury|1 +(noun)|kauri|Agathis australis|kauri pine|dammar pine +kava|1 +(noun)|kavakava|alcohol|alcoholic beverage|intoxicant|inebriant +kavakava|1 +(noun)|kava|alcohol|alcoholic beverage|intoxicant|inebriant +kavrin|1 +(noun)|papaverine|Kavrin|muscle relaxant +kaw river|1 +(noun)|Kansas|Kansas River|Kaw River|river +kawaka|1 +(noun)|Libocedrus plumosa|cedar|cedar tree +kawasaki disease|1 +(noun)|Kawasaki disease|mucocutaneous lymph node syndrome|disease +kay boyle|1 +(noun)|Boyle|Kay Boyle|writer|author +kayak|2 +(noun)|canoe +(verb)|boat +kayo|1 +(verb)|knock cold|knock out|beat|beat up|work over +kayoed|1 +(adj)|knocked out|KO'd|out|stunned|unconscious +kayser-fleischer ring|1 +(noun)|Kayser-Fleischer ring|symptom +kazak|3 +(noun)|Kazak|Kazakh|Turki +(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country|Asian nation +(noun)|Kazak|Kazakh|Turki|Turkic|Turko-Tatar|Turkic language +kazakh|3 +(noun)|Kazak|Kazakh|Turki +(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country|Asian nation +(noun)|Kazak|Kazakh|Turki|Turkic|Turko-Tatar|Turkic language +kazakhstan|1 +(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country|Asian nation +kazakhstani|2 +(adj)|Kazakhstani|Asian country|Asian nation +(noun)|Kazakhstani|Asian|Asiatic +kazakhstani monetary unit|1 +(noun)|Kazakhstani monetary unit|monetary unit +kazakstan|1 +(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country|Asian nation +kazan|1 +(noun)|Kazan|city|metropolis|urban center +kazimir malevich|1 +(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter +kazimir severinovich malevich|1 +(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter +kazoo|1 +(noun)|wind instrument|wind +kb|1 +(noun)|kilobyte|K|KB|computer memory unit +kc|1 +(noun)|kilohertz|kHz|kilocycle per second|kilocycle|rate +kea|1 +(noun)|Nestor notabilis|parrot +kean|1 +(noun)|Kean|Edmund Kean|actor|histrion|player|thespian|role player +keaton|1 +(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian|comic|actor|histrion|player|thespian|role player +keats|1 +(noun)|Keats|John Keats|poet +keb|1 +(noun)|Geb|Keb|Egyptian deity +kebab|1 +(noun)|kabob|shish kebab|dish +keble|1 +(noun)|Keble|John Keble|clergyman|reverend|man of the cloth +kechua|2 +(noun)|Quechua|Kechua|South American Indian +(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +kechuan|2 +(adj)|Quechuan|Kechuan|South American Indian|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +kedgeree|1 +(noun)|dish +keel|3 +(noun)|carina +(noun)|beam +(verb)|stagger|reel|lurch|swag|careen|walk +keel arch|1 +(noun)|ogee arch|pointed arch +keel over|1 +(verb)|tumble|topple +keelboat|1 +(noun)|river boat +keeled|2 +(adj)|ridged|carinate|carinated +(adj)|carinate|carinated|ridged +keeled garlic|1 +(noun)|Allium carinatum|alliaceous plant +keelson|1 +(noun)|beam +keen|8 +(adj)|acute|discriminating|incisive|knifelike|penetrating|penetrative|piercing|sharp|perceptive +(adj)|exquisite|intense +(adj)|incisive|sharp|intelligent +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|neat|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|cutting|knifelike|piercing|stabbing|lancinate|lancinating|sharp +(adj)|sharp +(noun)|dirge|coronach|lament|requiem|threnody +(verb)|lament|express emotion|express feelings +keen-sighted|2 +(adj)|argus-eyed|hawk-eyed|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted +(adj)|eagle-eyed|farseeing|longsighted|farsighted |presbyopic +keenness|3 +(noun)|acuteness|acuity|sharpness|intelligence +(noun)|eagerness|avidity|avidness|enthusiasm +(noun)|sharpness|shape|form|configuration|contour|conformation +keep|25 +(noun)|support|livelihood|living|bread and butter|sustenance|resource +(noun)|donjon|dungeon|stronghold|fastness +(noun)|hold|cell|jail cell|prison cell +(verb)|maintain|hold|keep in|keep out|keep off|keep up|keep off|keep down|keep apart|keep up +(verb)|continue|go on|proceed|go along|act|move +(verb)|hold on|have|have got|hold|keep back|keep back +(verb)|prevent +(verb)|observe +(verb)|observe|maintain +(verb)|have|have got|hold +(verb)|maintain|record|enter|put down +(verb)|lodge|accommodate +(verb)|retain|continue|keep on|keep going|prolong|sustain|keep up +(verb)|sustain|maintain|have|have got|hold +(verb)|stay fresh|stay|remain|rest +(verb)|observe|celebrate +(verb)|restrain|suppress|keep back|hold back|prevent +(verb)|preserve|protect +(verb)|grow|raise|farm|produce +(verb)|keep open|hold open|save|reserve|hold|book +(verb)|store +(verb)|have|have got|hold +(verb)|maintain|have|have got|hold +(verb)|confine|detain +(verb)|preserve|cook|fix|ready|make|prepare +keep abreast|1 +(verb)|keep up|follow +keep an eye on|1 +(verb)|watch|observe|follow|watch over|check|check up on|look into|check out|suss out|check over|go over|check into +keep apart|1 +(verb)|sequester|sequestrate|set apart|isolate|separate|disunite|divide|part +keep away|1 +(verb)|prevent|keep +keep back|3 +(verb)|restrain|suppress|keep|hold back|prevent|keep +(verb)|retain|hold|hold back|keep|hold on +(verb)|withhold|deny|refuse +keep company|1 +(verb)|company|companion|accompany|consort|associate|affiliate|assort +keep down|2 +(verb)|number|limit|circumscribe|confine +(verb)|repress|quash|subdue|subjugate|reduce|oppress|suppress|crush +keep going|4 +(verb)|run on|continue|go on|proceed|go along|keep +(verb)|tide over|bridge over|suffice|do|answer|serve +(verb)|retain|continue|keep|keep on|prolong|sustain|keep up +(verb)|patronize|patronise|patronage|support|foster|nurture +keep guard|1 +(verb)|stand guard|stand watch|stand sentinel|guard +keep in|1 +(verb)|confine|detain +keep in line|1 +(verb)|manipulate|control|interact +keep mum|1 +(verb)|close up|clam up|dummy up|shut up|belt up|button up|be quiet +keep note|1 +(verb)|remember|think of +keep off|2 +(verb)|avoid|abstain|refrain|desist +(verb)|stay off|avoid +keep on|1 +(verb)|retain|continue|keep|keep going|prolong|sustain|keep up +keep one's distance|1 +(verb)|stand back|keep one's eyes off|keep one's hands off|stay away|be +keep one's eyes off|1 +(verb)|stand back|keep one's distance|keep one's hands off|stay away|be +keep one's eyes open|1 +(verb)|keep one's eyes peeled|keep one's eyes skinned|watch|look out|watch out +keep one's eyes peeled|1 +(verb)|keep one's eyes skinned|keep one's eyes open|watch|look out|watch out +keep one's eyes skinned|1 +(verb)|keep one's eyes peeled|keep one's eyes open|watch|look out|watch out +keep one's hands off|1 +(verb)|stand back|keep one's eyes off|keep one's distance|stay away|be +keep one's mouth shut|1 +(verb)|keep quiet|shut one's mouth +keep one's nose to the grindstone|1 +(verb)|plug away|peg away|slog|keep one's shoulder to the wheel|work +keep one's shoulder to the wheel|1 +(verb)|plug away|peg away|slog|keep one's nose to the grindstone|work +keep open|1 +(verb)|hold open|keep|save|reserve|hold|book +keep out|1 +(verb)|exclude|shut out|shut|prevent|keep +keep pace|1 +(verb)|keep step|keep up +keep quiet|1 +(verb)|shut one's mouth|keep one's mouth shut +keep step|1 +(verb)|keep pace|keep up +keep tabs on|1 +(verb)|watch|observe|follow|watch over|keep an eye on +keep to oneself|1 +(verb)|withhold|keep back +keep up|3 +(verb)|prolong|sustain|continue|uphold|carry on|bear on|preserve +(verb)|conserve|preserve|maintain|keep +(verb)|keep abreast|follow +keeper|2 +(noun)|defender|guardian|protector|shielder +(noun)|custodian|steward|defender|guardian|protector|shielder +keeping|3 +(noun)|conformity|conformation|compliance|abidance +(noun)|guardianship|safekeeping|duty|responsibility|obligation +(noun)|retention|holding|possession|ownership +keepsake|1 +(noun)|souvenir|token|relic|object|physical object +keeshond|1 +(noun)|spitz +keflex|1 +(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin|Mefoxin +keflin|1 +(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin|Mefoxin +keftab|1 +(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin|Mefoxin +keg|2 +(noun)|kegful|containerful +(noun)|barrel|cask +kegel exercises|1 +(noun)|Kegel exercises|pubococcygeus exercises|exercise|exercising|physical exercise|physical exertion|workout +kegful|1 +(noun)|keg|containerful +kei apple|1 +(noun)|kei apple bush|Dovyalis caffra|shrub|bush +kei apple bush|1 +(noun)|kei apple|Dovyalis caffra|shrub|bush +keister|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +keith rupert murdoch|1 +(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher +kekchi|2 +(noun)|Kekchi|Mayan|Maya +(noun)|Kekchi|Maya|Mayan|Mayan language +kekule|1 +(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist +kekule formula|1 +(noun)|benzene formula|benzene ring|benzene nucleus|Kekule formula|benzene|benzine|benzol +keller|1 +(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer|writer|author +kellogg|1 +(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer +kelly|3 +(noun)|Kelly|Emmett Kelly|Weary Willie|clown|buffoon|merry andrew +(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress +(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer|professional dancer|actor|histrion|player|thespian|role player +keloid|1 +(noun)|cheloid|scar|cicatrix|cicatrice +kelp|1 +(noun)|brown algae +kelp greenling|1 +(noun)|Hexagrammos decagrammus|greenling +kelpie|2 +(noun)|kelpy|evil spirit +(noun)|shepherd dog|sheepdog|sheep dog +kelpwort|1 +(noun)|saltwort|barilla|glasswort|kali|Salsola kali|Salsola soda|shrub|bush +kelpy|1 +(noun)|kelpie|evil spirit +kelt|1 +(noun)|Celt|Kelt|European +kelter|1 +(noun)|kilter|orderliness|order +kelvin|2 +(noun)|K|temperature unit +(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist +kelvin scale|1 +(noun)|Kelvin scale|absolute scale|temperature scale +kemadrin|1 +(noun)|procyclidine|Kemadrin|muscle relaxant +kemal ataturk|1 +(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman|solon|national leader +kemal pasha|1 +(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman|solon|national leader +kempt|1 +(adj)|tidy|trim|groomed +ken|2 +(noun)|cognizance|knowing +(noun)|sight|compass|range|reach|grasp +ken elton kesey|1 +(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer|author +ken kesey|1 +(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer|author +ken russell|1 +(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker|filmmaker|film producer|movie maker +kenaf|2 +(noun)|deccan hemp|hemp +(noun)|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus +kenai fjords national park|1 +(noun)|Kenai Fjords National Park|national park +kenalog|1 +(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid|corticoid|adrenal cortical steroid +kendal|1 +(noun)|Kendal green|Kendal|dye|dyestuff +kendal green|1 +(noun)|Kendal green|Kendal|dye|dyestuff +kendall|1 +(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist +kendall's tau|1 +(noun)|tau coefficient of correlation|Kendall's tau|Kendall rank correlation|Kendall test +kendall partial rank correlation|1 +(noun)|Kendall partial rank correlation|Kendall test +kendall rank correlation|1 +(noun)|tau coefficient of correlation|Kendall's tau|Kendall rank correlation|Kendall test +kendall test|1 +(noun)|Kendall test|nonparametric statistic|distribution free statistic +kendrew|1 +(noun)|Kendrew|Sir John Cowdery Kendrew|biologist|life scientist +kennedia|1 +(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus +kennedia coccinea|1 +(noun)|coral vine|Kennedia coccinea|coral pea +kennedia prostrata|1 +(noun)|scarlet runner|running postman|Kennedia prostrata|coral pea +kennedy|2 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport|airdrome|aerodrome +kennedy international airport|1 +(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport|airdrome|aerodrome +kennedy interrnational|1 +(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport|airdrome|aerodrome +kennedya|1 +(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus +kennel|2 +(noun)|doghouse|dog house|outbuilding +(verb)|shelter +kennelly|1 +(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer +kennelly-heaviside layer|1 +(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region|part +kennesaw mountain|1 +(noun)|Kennesaw Mountain|pitched battle +kenneth bancroft clark|1 +(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist +kenneth clark|1 +(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist +kenneth david kaunda|1 +(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman|solon|national leader +kenneth grahame|1 +(noun)|Grahame|Kenneth Grahame|writer|author +kenneth kaunda|1 +(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman|solon|national leader +kenneth roberts|1 +(noun)|Roberts|Kenneth Roberts|writer|author +kennewick|1 +(noun)|Kennewick|town +kenning|1 +(noun)|trope|figure of speech|figure|image +keno|1 +(noun)|lotto|bingo|beano|board game +kenogenesis|1 +(noun)|cenogenesis|caenogenesis|cainogenesis|kainogenesis|growth|growing|maturation|development|ontogeny|ontogenesis +kent|2 +(noun)|Kent|county +(noun)|Kent|Rockwell Kent|painter +kentan|1 +(noun)|tiger lily|devil lily|Lilium lancifolium|lily +kentish|2 +(noun)|Kentish|Jutish|Old English|Anglo-Saxon +(noun)|Kentish|Middle English +kentuckian|1 +(noun)|Kentuckian|American +kentucky|1 +(noun)|Kentucky|Bluegrass State|KY|American state +kentucky black bass|1 +(noun)|Kentucky black bass|spotted black bass|Micropterus pseudoplites|black bass +kentucky blue|1 +(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass|blue grass +kentucky bluegrass|1 +(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass|blue grass +kentucky coffee tree|1 +(noun)|Kentucky coffee tree|bonduc|chicot|Gymnocladus dioica|tree +kentucky derby|1 +(noun)|Kentucky Derby|thoroughbred race +kentucky wonder|1 +(noun)|Kentucky wonder|Kentucky wonder bean|green bean +kentucky wonder bean|1 +(noun)|Kentucky wonder|Kentucky wonder bean|green bean +kentucky yellowwood|1 +(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood +kentucy blue grass|1 +(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass|blue grass +kenya|1 +(noun)|Kenya|Republic of Kenya|African country|African nation +kenya fever|1 +(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease +kenyan|2 +(adj)|Kenyan|African country|African nation +(noun)|Kenyan|African +kenyan monetary unit|1 +(noun)|Kenyan monetary unit|monetary unit +kenyan shilling|1 +(noun)|Kenyan shilling|shilling|Kenyan monetary unit +kenyapithecus|1 +(noun)|Kenyapithecus|genus Kenyapithecus|mammal genus +kenyata|1 +(noun)|Kenyata|Jomo Kenyata|statesman|solon|national leader +kenzo tange|1 +(noun)|Tange|Kenzo Tange|architect|designer +keogh plan|1 +(noun)|Keogh plan|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program +keokuk|1 +(noun)|Keokuk|Indian chief|Indian chieftain|Sauk|Sac +kepi|1 +(noun)|peaked cap|service cap|yachting cap|cap +kepler|1 +(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer|uranologist|stargazer +kepler's first law|1 +(noun)|Kepler's first law|Kepler's law|Kepler's law of planetary motion +kepler's law|1 +(noun)|Kepler's law|Kepler's law of planetary motion|law|law of nature +kepler's law of planetary motion|1 +(noun)|Kepler's law|Kepler's law of planetary motion|law|law of nature +kepler's second law|1 +(noun)|Kepler's second law|law of areas|law of equal areas|Kepler's law|Kepler's law of planetary motion +kepler's third law|1 +(noun)|Kepler's third law|harmonic law|Kepler's law|Kepler's law of planetary motion +kept|1 +(adj)|unbroken +kept up|1 +(adj)|maintained|well-kept|preserved +kept woman|1 +(noun)|mistress|fancy woman|woman|adult female|lover +kera|1 +(noun)|Kera|East Chadic +keratalgia|1 +(noun)|pain|hurting +keratectasia|1 +(noun)|astigmatism|astigmia +keratin|1 +(noun)|ceratin|scleroprotein|albuminoid +keratinisation|1 +(noun)|keratinization|organic process|biological process +keratinise|2 +(verb)|keratinize|convert +(verb)|keratinize|change +keratinization|1 +(noun)|keratinisation|organic process|biological process +keratinize|2 +(verb)|keratinise|convert +(verb)|keratinise|change +keratitis|1 +(noun)|inflammation|redness|rubor +keratoacanthoma|1 +(noun)|acanthoma|skin tumor +keratocele|1 +(noun)|hernia|herniation +keratoconjunctivitis|1 +(noun)|inflammation|redness|rubor +keratoconus|1 +(noun)|astigmatism|astigmia +keratoderma|1 +(noun)|keratodermia|skin disease|disease of the skin|skin disorder|skin problem|skin condition +keratoderma blennorrhagica|1 +(noun)|keratosis blennorrhagica|keratosis +keratodermia|1 +(noun)|keratoderma|skin disease|disease of the skin|skin disorder|skin problem|skin condition +keratoiritis|1 +(noun)|inflammation|redness|rubor +keratomalacia|1 +(noun)|symptom +keratomycosis|1 +(noun)|fungal infection|mycosis +keratonosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +keratonosus|1 +(noun)|eye disease +keratoplasty|1 +(noun)|corneal graft|corneal transplant|plastic surgery|reconstructive surgery|anaplasty|transplant|transplantation|organ transplant +keratoscleritis|1 +(noun)|inflammation|redness|rubor +keratoscope|1 +(noun)|medical instrument +keratoscopy|1 +(noun)|examination|scrutiny +keratosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +keratosis blennorrhagica|1 +(noun)|keratoderma blennorrhagica|keratosis +keratosis follicularis|1 +(noun)|Darier's disease|keratosis +keratosis nigricans|1 +(noun)|acanthosis nigricans|skin disease|disease of the skin|skin disorder|skin problem|skin condition +keratosis pilaris|1 +(noun)|keratosis +keratotomy|1 +(noun)|incision|section|surgical incision +kerb|1 +(noun)|curb|curbing|edge +kerb crawler|1 +(noun)|driver +kerbala|1 +(noun)|Kerbala|Karbala|Kerbela|city|metropolis|urban center +kerbela|1 +(noun)|Kerbala|Karbala|Kerbela|city|metropolis|urban center +kerbstone|1 +(noun)|curbstone|paving stone +kerchief|1 +(noun)|scarf +kerensky|1 +(noun)|Kerensky|Aleksandr Feodorovich Kerensky|statesman|solon|national leader +kerfuffle|1 +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|disorder +kerion|1 +(noun)|tinea|ringworm|roundworm +kern|1 +(noun)|Kern|Jerome Kern|Jerome David Kern|composer +kernel|3 +(noun)|meat|plant part|plant structure +(noun)|grain|caryopsis +(noun)|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +kernicterus|1 +(noun)|jaundice|icterus +kernig's sign|1 +(noun)|Kernig's sign|symptom +kernite|1 +(noun)|mineral +kerosene|1 +(noun)|kerosine|lamp oil|coal oil|fuel|hydrocarbon +kerosene heater|1 +(noun)|oil heater|oilstove|kerosine heater|heater|warmer +kerosene lamp|1 +(noun)|oil lamp|kerosine lamp|lamp +kerosine|1 +(noun)|kerosene|lamp oil|coal oil|fuel|hydrocarbon +kerosine heater|1 +(noun)|oil heater|oilstove|kerosene heater|heater|warmer +kerosine lamp|1 +(noun)|oil lamp|kerosene lamp|lamp +kerouac|1 +(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer|author +kerr cell|1 +(noun)|Kerr cell|optical device +kerry blue terrier|1 +(noun)|Kerry blue terrier|terrier +kerugma|1 +(noun)|kerygma|sermon|discourse|preaching +kerygma|1 +(noun)|kerugma|sermon|discourse|preaching +kesey|1 +(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer|author +kestrel|2 +(noun)|sparrow hawk|American kestrel|Falco sparverius|falcon +(noun)|Falco tinnunculus|falcon +ketalar|1 +(noun)|ketamine|ketamine hydrochloride|Ketalar|general anesthetic|general anaesthetic|club drug +ketamine|1 +(noun)|ketamine hydrochloride|Ketalar|general anesthetic|general anaesthetic|club drug +ketamine hydrochloride|1 +(noun)|ketamine|Ketalar|general anesthetic|general anaesthetic|club drug +ketch|1 +(noun)|sailing vessel|sailing ship +ketchup|1 +(noun)|catsup|cetchup|tomato ketchup|condiment +ketchup bottle|1 +(noun)|catsup bottle|bottle +keteleeria|1 +(noun)|conifer|coniferous tree +ketembilla|2 +(noun)|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree +(noun)|kitembilla|kitambilla|edible fruit +ketembilla tree|1 +(noun)|ketembilla|kitembilla|kitambilla|Ceylon gooseberry|Dovyalis hebecarpa|tree +ketoacidosis|1 +(noun)|diabetic acidosis|acidosis +ketoacidosis-prone diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +ketoacidosis-resistant diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +ketoacidosis-resistant diabetes mellitus|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +ketoaciduria|1 +(noun)|ketonuria|acetonuria|symptom +ketohexose|1 +(noun)|ketose|hexose +ketone|1 +(noun)|organic compound +ketone body|1 +(noun)|acetone body|ketone +ketone group|1 +(noun)|group|radical|chemical group +ketonemia|1 +(noun)|ketosis|acetonemia|symptom +ketonuria|1 +(noun)|ketoaciduria|acetonuria|symptom +ketoprofen|1 +(noun)|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ketorolac|1 +(noun)|Torodal|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ketorolac tromethamine|1 +(noun)|Acular|Toradol|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ketose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +ketosis|1 +(noun)|ketonemia|acetonemia|symptom +ketosis-prone diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +ketosis-resistant diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +ketosis-resistant diabetes mellitus|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +ketosteroid|1 +(noun)|steroid +kettering|1 +(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer|applied scientist|technologist +kettle|4 +(noun)|boiler|pot +(noun)|kettleful|containerful +(noun)|kettle hole|hole|hollow +(noun)|kettledrum|tympanum|tympani|timpani|percussion instrument|percussive instrument +kettle hole|1 +(noun)|kettle|hole|hollow +kettle of fish|1 +(noun)|fix|hole|jam|mess|muddle|pickle|difficulty +kettledrum|1 +(noun)|kettle|tympanum|tympani|timpani|percussion instrument|percussive instrument +kettleful|1 +(noun)|kettle|containerful +ketubim|1 +(noun)|Hagiographa|Ketubim|Writings|sacred text|sacred writing|religious writing|religious text +keurboom|2 +(noun)|Virgilia divaricata|tree +(noun)|Virgilia capensis|Virgilia oroboides|tree +key|22 +(adj)|cardinal|central|fundamental|primal|important |of import +(adj)|operative|significant |important +(noun)|device +(noun)|explanation +(noun)|pitch +(noun)|tonality|musical notation +(noun)|kilogram|kg|kilo +(noun)|samara|key fruit|achene +(noun)|Key|Francis Scott Key|lawyer|attorney|poet +(noun)|cay|Florida keys|coral reef +(noun)|paint|space +(noun)|list|listing +(noun)|list|listing +(noun)|positive identification +(noun)|winder|mechanical device +(noun)|keystone|headstone|building block +(noun)|lever +(verb)|identify|discover|key out|distinguish|describe|name +(verb)|supply|provide|render|furnish +(verb)|vandalize|vandalise +(verb)|harmonize|harmonise|chord +(verb)|harmonize|harmonise|reconcile +key fruit|1 +(noun)|samara|key|achene +key lime|1 +(noun)|lime +key out|1 +(verb)|identify|discover|key|distinguish|describe|name +key palm|1 +(noun)|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +key pattern|1 +(noun)|fret|Greek fret|Greek key|architectural ornament +key ring|1 +(noun)|hoop|ring +key signature|1 +(noun)|signature|musical notation +key west|1 +(noun)|Key West|town +key word|2 +(noun)|key +(noun)|word +keyboard|2 +(noun)|device +(noun)|holder +keyboard buffer|1 +(noun)|buffer|buffer storage|buffer store +keyboardist|1 +(noun)|musician|instrumentalist|player +keycard|1 +(noun)|card|identity card +keyed|3 +(adj)|attuned|tuned|adjusted +(adj)|keyed +(adj)|tonal +keyhole|1 +(noun)|hole +keyhole limpet|1 +(noun)|Fissurella apertura|Diodora apertura|limpet +keyhole saw|1 +(noun)|handsaw|carpenter's saw +keyless|1 +(adj)|keyless +keynes|1 +(noun)|Keynes|John Maynard Keynes|economist|economic expert +keynesian|1 +(adj)|Keynesian|economist|economic expert|economic theory +keynesianism|1 +(noun)|Keynesianism|economic theory +keynote|5 +(noun)|subject|topic|theme +(noun)|idea|thought +(noun)|tonic|note|musical note|tone +(verb)|set +(verb)|address|speak +keynote address|1 +(noun)|keynote speech|oratory +keynote speech|1 +(noun)|keynote address|oratory +keypad|1 +(noun)|computer keyboard|keyboard|data input device|input device +keystone|2 +(noun)|anchor|mainstay|backbone|linchpin|lynchpin|support +(noun)|key|headstone|building block +keystone state|1 +(noun)|Pennsylvania|Keystone State|PA|American state +kg|1 +(noun)|kilogram|kilo|metric weight unit|weight unit +kgb|1 +(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency +khabarovsk|2 +(noun)|Khabarovsk|city|metropolis|urban center +(noun)|Khabarovsk|administrative district|administrative division|territorial division +khachaturian|1 +(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer +khadafy|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +khaddar|1 +(noun)|khadi|fabric|cloth|material|textile +khadi|1 +(noun)|khaddar|fabric|cloth|material|textile +khaki|2 +(adj)|chromatic +(noun)|fabric|cloth|material|textile +khalif|1 +(noun)|caliph|calif|kaliph|kalif|khalifah|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +khalifah|1 +(noun)|caliph|calif|kaliph|kalif|khalif|ruler|swayer|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +khalka|2 +(noun)|Khalkha|Khalka|Kalka|Mongol|Mongolian +(noun)|Khalkha|Khalka|Kalka|Mongolian|Mongolic|Mongolic language +khalkha|2 +(noun)|Khalkha|Khalka|Kalka|Mongol|Mongolian +(noun)|Khalkha|Khalka|Kalka|Mongolian|Mongolic|Mongolic language +khalsa|1 +(noun)|Khalsa|religion|faith +khama|1 +(noun)|Khama|Sir Seretse Khama|statesman|solon|national leader +khamsin|1 +(noun)|wind|air current|current of air +khamti|1 +(noun)|Khamti|Tai +khan|2 +(noun)|ruler|swayer +(noun)|caravansary|caravanserai|caravan inn|hostel|hostelry|inn|lodge +khanate|1 +(noun)|position|post|berth|office|spot|billet|place|situation +khanty|2 +(noun)|Ostyak|Khanty|Russian +(noun)|Khanty|Ostyak|Ugric|Ugrian +kharkiv|1 +(noun)|Kharkov|Kharkiv|city|metropolis|urban center +kharkov|1 +(noun)|Kharkov|Kharkiv|city|metropolis|urban center +khartoum|1 +(noun)|Khartoum|capital of Sudan|national capital +khat|1 +(noun)|kat|qat|quat|cat|Arabian tea|African tea|stimulant|stimulant drug +khaya|1 +(noun)|Khaya|genus Khaya|rosid dicot genus +khayr ad-din|1 +(noun)|Barbarossa|Khayr ad-Din|corsair|Barbary pirate +khedive|1 +(noun)|Khedive|viceroy|vicereine +khepera|1 +(noun)|Khepera|Egyptian deity +khesari|1 +(noun)|grass pea|Indian pea|Lathyrus sativus|vetchling +khi|1 +(noun)|chi|letter|letter of the alphabet|alphabetic character +khimar|1 +(noun)|headscarf +khios|1 +(noun)|Chios|Khios|Aegean island +khirghiz|2 +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki|Turkic|Turko-Tatar|Turkic language +khmer|2 +(noun)|Khmer|Mon-Khmer +(noun)|Khmer|Cambodian|Kampuchean +khmer rouge|1 +(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization|terrorist group|foreign terrorist organization|FTO +khnate|1 +(noun)|domain|demesne|land +khoikhoi|1 +(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan|Khoisan language +khoikhoin|1 +(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan|Khoisan language +khoisan|1 +(noun)|Khoisan|Khoisan language|natural language|tongue +khoisan language|1 +(noun)|Khoisan|Khoisan language|natural language|tongue +khomeini|1 +(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader +khoum|1 +(noun)|Mauritanian monetary unit +khowar|1 +(noun)|Khowar|Dard|Dardic|Dardic language +khrushchev|1 +(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman|solon|national leader +khuen|1 +(noun)|Khuen|Tai +khukuri|1 +(noun)|knife +khyber pass|1 +(noun)|Khyber Pass|pass|mountain pass|notch +khz|1 +(noun)|kilohertz|kHz|kilocycle per second|kilocycle|kc|rate +ki|2 +(noun)|qi|chi|ch'i|energy|vim|vitality +(noun)|Ki|Semitic deity +kiaat|1 +(noun)|bloodwood tree|Pterocarpus angolensis|tree +kiang|1 +(noun)|Equus kiang|wild ass +kibbitz|1 +(verb)|kibitz|comment|notice|remark|point out +kibble|2 +(noun)|meal +(noun)|bucket|pail +kibbutz|1 +(noun)|collective farm +kibbutznik|1 +(noun)|member +kibe|1 +(noun)|chilblain|chilblains|pernio +kibitz|1 +(verb)|kibbitz|comment|notice|remark|point out +kibitzer|1 +(noun)|meddler +kibosh|1 +(verb)|stop|halt|block|prevent|forestall|foreclose|preclude|forbid +kichaga|1 +(noun)|Kichaga|Chaga|Chagga|Bantu|Bantoid language +kichai|1 +(noun)|Kichai|Caddo +kick|14 +(noun)|boot|kicking|blow +(noun)|bang|boot|charge|rush|flush|thrill|exhilaration|excitement +(noun)|recoil|movement|motion +(noun)|gripe|beef|bitch|squawk|objection +(noun)|stimulation|stimulus|stimulant|input +(noun)|kicking|motion|movement|move|motility +(verb)|propel|impel +(verb)|move +(verb)|hit|kick out|kick up|kick in|kick down +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|kick back|recoil|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +(verb)|forgo|give up +(verb)|score|hit|tally|rack up +(verb)|complain|plain|sound off|quetch|kvetch +kick about|1 +(verb)|kick around|knock about|exist|be +kick around|3 +(verb)|knock about|kick about|exist|be +(verb)|mistreat|maltreat|abuse|ill-use|step|ill-treat +(verb)|bandy|hash out|discuss|talk over +kick back|2 +(verb)|pay +(verb)|recoil|kick|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +kick down|1 +(verb)|kick in|destroy|ruin +kick downstairs|1 +(verb)|demote|bump|relegate|break|delegate|designate|depute|assign +kick in|3 +(verb)|set in|begin|start +(verb)|contribute|give|chip in|give +(verb)|kick down|destroy|ruin +kick in the butt|1 +(noun)|corporal punishment +kick off|1 +(verb)|inaugurate|start|start up|embark on|commence +kick one's heels|1 +(verb)|cool one's heels|wait +kick out|3 +(verb)|expel|throw out|move|displace +(verb)|oust|throw out|drum out|boot out|expel|remove +(verb)|expel|eject|chuck out|exclude|throw out|turf out|boot out|turn out|move|displace +kick pleat|1 +(noun)|pleat|plait +kick start|1 +(noun)|kick starter|starter|starter motor|starting motor +kick starter|1 +(noun)|kick start|starter|starter motor|starting motor +kick the bucket|1 +(verb)|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +kick turn|1 +(noun)|turn|turning +kick up|3 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +(verb)|raise|lift|elevate|get up|bring up +(verb)|provoke|evoke|call forth|cause|do|make +kick upstairs|1 +(verb)|promote|upgrade|advance|raise|elevate|delegate|designate|depute|assign +kickapoo|2 +(noun)|Kickapoo|Algonquian|Algonquin +(noun)|Kickapoo|Algonquian|Algonquin|Algonquian language +kickback|1 +(noun)|bribe|payoff +kicker|1 +(noun)|football player|footballer +kicking|2 +(noun)|kick|motion|movement|move|motility +(noun)|kick|boot|blow +kickoff|3 +(noun)|place kick|place-kicking|beginning|start|commencement +(noun)|beginning|commencement|first|outset|get-go|start|starting time|showtime|offset|point|point in time +(noun)|send-off|start-off|start +kickshaw|1 +(noun)|dainty|delicacy|goody|treat|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +kicksorter|1 +(noun)|pulse height analyzer|scientific instrument +kid|7 +(noun)|child|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +(noun)|kidskin|leather +(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist|playwright +(noun)|child|offspring|progeny|issue +(noun)|goat|caprine animal +(verb)|pull the leg of|gull|dupe|slang|befool|cod|fool|put on|take in|put one over|put one across +(verb)|chaff|jolly|josh|banter|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +kid-glove|1 +(adj)|tactful|diplomatic |diplomatical +kid glove|1 +(noun)|suede glove|glove|gloves +kidd|1 +(noun)|Kidd|William Kidd|Captain Kidd|master|captain|sea captain|skipper +kiddie porn|1 +(noun)|child pornography|kiddy porn|pornography|porno|porn|erotica|smut +kiddy|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +kiddy porn|1 +(noun)|child pornography|kiddie porn|pornography|porno|porn|erotica|smut +kidnap|1 +(verb)|nobble|abduct|snatch|seize +kidnaped|1 +(adj)|kidnapped|abducted +kidnapped|1 +(adj)|kidnaped|abducted|seize +kidnapper|1 +(noun)|abductor|snatcher|criminal|felon|crook|outlaw|malefactor|captor|capturer +kidnapping|1 +(noun)|snatch|capture|seizure +kidney|1 +(noun)|excretory organ|urinary organ +kidney-shaped|1 +(adj)|reniform|simple |unsubdivided +kidney bean|2 +(noun)|frijol|frijole|common bean|common bean plant|Phaseolus vulgaris +(noun)|common bean +kidney begonia|1 +(noun)|beefsteak begonia|Begonia erythrophylla|Begonia feastii|begonia +kidney disease|1 +(noun)|renal disorder|nephropathy|nephrosis|uropathy +kidney failure|1 +(noun)|renal failure|kidney disease|renal disorder|nephropathy|nephrosis|failure +kidney fern|1 +(noun)|Trichomanes reniforme|bristle fern|filmy fern +kidney pie|1 +(noun)|meat pie +kidney stone|1 +(noun)|urinary calculus|nephrolith|renal calculus|calculus|concretion +kidney vetch|1 +(noun)|Anthyllis vulneraria|herb|herbaceous plant +kidney wort|1 +(noun)|coyote brush|coyote bush|chaparral broom|Baccharis pilularis|shrub|bush +kidskin|1 +(noun)|kid|leather +kierkegaard|1 +(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher +kieselguhr|1 +(noun)|diatomaceous earth|diatomite|earth|ground|filter +kieserite|1 +(noun)|mineral +kieslowski|1 +(noun)|Kieslowski|Krzysztof Kieslowski|film maker|filmmaker|film producer|movie maker +kiev|1 +(noun)|Kyyiv|Kiev|capital of the Ukraine|capital +kigali|1 +(noun)|Kigali|capital of Rwanda|national capital +kiggelaria|1 +(noun)|Kiggelaria|genus Kiggelaria|dilleniid dicot genus +kiggelaria africana|1 +(noun)|wild peach|Kiggelaria africana|shrub|bush +kike|1 +(noun)|hymie|sheeny|Jew|Hebrew|Israelite +kikladhes|1 +(noun)|Cyclades|Kikladhes|Aegean island +kildeer|1 +(noun)|killdeer|killdeer plover|Charadrius vociferus|plover +kilderkin|1 +(noun)|British capacity unit|Imperial capacity unit +kiley|1 +(noun)|kylie|boomerang|throwing stick|throw stick +kilimanjaro|1 +(noun)|Kilimanjaro|Mount Kilimanjaro|mountain peak +kiliwa|2 +(noun)|Kiliwa|Kiliwi|Hokan|Hoka +(noun)|Kiliwa|Kiliwi|Yuman +kiliwi|2 +(noun)|Kiliwa|Kiliwi|Hokan|Hoka +(noun)|Kiliwa|Kiliwi|Yuman +kill|15 +(noun)|killing|putting to death|termination|ending|conclusion +(noun)|destruction|devastation +(verb)|kill off +(verb)|shoot down|defeat|vote down|vote out|veto|blackball|negative +(verb)|stamp out|end|terminate +(verb)|be +(verb)|hurt|ache|suffer +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +(verb)|hit +(verb)|hit +(verb)|toss off|pop|bolt down|belt down|pour down|down|drink down|drink|imbibe +(verb)|obliterate|wipe out|take away|take out +(verb)|exhaust|wash up|beat|tucker|tucker out +(verb)|switch off|cut|turn off|turn out +(verb)|destroy|destruct +kill off|1 +(verb)|exterminate|kill +kill oneself|1 +(verb)|overexert oneself|strive|reach|strain +kill zone|1 +(noun)|killing zone|zone +killable|1 +(adj)|edible |comestible|eatable +killarney fern|1 +(noun)|Killarney fern|Trichomanes speciosum|bristle fern|filmy fern +killdeer|1 +(noun)|kildeer|killdeer plover|Charadrius vociferus|plover +killdeer plover|1 +(noun)|killdeer|kildeer|Charadrius vociferus|plover +killer|4 +(noun)|slayer|person|individual|someone|somebody|mortal|human|soul +(noun)|cause of death|causal agent|cause|causal agency +(noun)|difficulty +(noun)|killer whale|orca|grampus|sea wolf|Orcinus orca|dolphin +killer bee|2 +(noun)|investment banker|underwriter +(noun)|Africanized bee|Africanized honey bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee|Apis mellifera +killer cell|1 +(noun)|killer T cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell|T lymphocyte +killer t cell|1 +(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell|T lymphocyte +killer whale|1 +(noun)|killer|orca|grampus|sea wolf|Orcinus orca|dolphin +killifish|1 +(noun)|cyprinodont +killing|4 +(adj)|sidesplitting|humorous |humourous +(noun)|violent death|fatality|human death +(noun)|kill|putting to death|termination|ending|conclusion +(noun)|cleanup|net income|net|net profit|lucre|profit|profits|earnings +killing field|1 +(noun)|geographical area|geographic area|geographical region|geographic region +killing zone|1 +(noun)|kill zone|zone +killingly|1 +(adv)|sidesplittingly +killjoy|1 +(noun)|spoilsport|wet blanket|party pooper|unwelcome person|persona non grata +kiln|1 +(noun)|oven +kilo|1 +(noun)|kilogram|kg|metric weight unit|weight unit +kilobyte|1 +(noun)|K|KB|computer memory unit +kilocalorie|1 +(noun)|Calorie|kilogram calorie|large calorie|nutritionist's calorie|work unit|heat unit|energy unit +kilocycle|1 +(noun)|kilohertz|kHz|kilocycle per second|kc|rate +kilocycle per second|1 +(noun)|kilohertz|kHz|kilocycle|kc|rate +kilogram|1 +(noun)|kg|kilo|metric weight unit|weight unit +kilogram-meter|1 +(noun)|work unit|heat unit|energy unit +kilogram calorie|1 +(noun)|Calorie|kilocalorie|large calorie|nutritionist's calorie|work unit|heat unit|energy unit +kilohertz|1 +(noun)|kHz|kilocycle per second|kilocycle|kc|rate +kiloliter|1 +(noun)|kilolitre|cubic meter|cubic metre|metric capacity unit +kilolitre|1 +(noun)|kiloliter|cubic meter|cubic metre|metric capacity unit +kilometer|1 +(noun)|kilometre|km|klick|metric linear unit +kilometers per hour|1 +(noun)|kilometres per hour|kph|km/h|rate +kilometre|1 +(noun)|kilometer|km|klick|metric linear unit +kilometres per hour|1 +(noun)|kilometers per hour|kph|km/h|rate +kiloton|2 +(noun)|avoirdupois unit +(noun)|explosive unit +kilovolt|1 +(noun)|kV|potential unit +kilovolt-ampere|1 +(noun)|power unit +kilowatt|1 +(noun)|kW|power unit +kilowatt hour|1 +(noun)|kW-hr|Board of Trade unit|B.T.U.|work unit|heat unit|energy unit +kilroy|1 +(noun)|Kilroy|fictional character|fictitious character|character +kilt|1 +(noun)|skirt +kilter|1 +(noun)|kelter|orderliness|order +kimberley|1 +(noun)|Kimberley|city|metropolis|urban center +kimberlite|1 +(noun)|peridotite +kimono|1 +(noun)|robe +kin|3 +(adj)|akin|blood-related|cognate|consanguine|consanguineous|related +(noun)|kinsperson|family|relative|relation +(noun)|kin group|kinship group|kindred|clan|tribe|social group +kin group|1 +(noun)|kin|kinship group|kindred|clan|tribe|social group +kina|1 +(noun)|Papuan monetary unit +kinaesthesia|1 +(noun)|kinesthesia|feeling of movement|somatosense|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +kinaesthetic|1 +(adj)|kinesthetic|proprioception +kinaesthetically|1 +(adv)|kinesthetically +kinanesthesia|1 +(noun)|proprioception +kinase|1 +(noun)|enzyme +kinchinjunga|1 +(noun)|Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak +kind|11 +(adj)|kind |benignant|gracious|benign|charitable|kindly|sympathetic|large-hearted|gentle|kindhearted|benevolent|good|benign|benignant|good-natured|merciful|soft +(adj)|generous +(adj)|genial|benign |benignant +(adj)|sympathetic +(adj)|merciful|humane +(adj)|hospitable +(adj)|helpful +(adj)|tolerant|forgiving +(adj)|thoughtful|considerate +(adj)|good-hearted|kindly|openhearted|benevolent |good +(noun)|sort|form|variety|category +kind of|1 +(adv)|rather|kinda|sort of +kinda|1 +(adv)|rather|kind of|sort of +kindergarten|1 +(noun)|preschool +kindhearted|1 +(adj)|kind +kindheartedness|1 +(noun)|sympathy|fellow feeling +kindle|3 +(verb)|inflame|flare up +(verb)|enkindle|conflagrate|inflame|ignite|light +(verb)|arouse|elicit|enkindle|evoke|fire|raise|provoke|make|create +kindled|1 +(adj)|ignited|enkindled|lighted |lit +kindliness|1 +(noun)|helpfulness|friendliness +kindling|2 +(noun)|tinder|touchwood|spunk|punk|igniter|ignitor|lighter +(noun)|ignition|firing|lighting|inflammation|burning|combustion +kindly|3 +(adj)|charitable|sympathetic|large-hearted|kind +(adj)|good-hearted|kind|openhearted|benevolent |good +(adj)|benign |benignant +kindness|3 +(noun)|good|goodness +(noun)|forgivingness|mercifulness|mercy +(noun)|benignity|action +kindred|3 +(adj)|akin|related|similar +(adj)|related +(noun)|kin|kin group|kinship group|clan|tribe|social group +kine|1 +(noun)|cattle|cows|oxen|Bos taurus|bovine +kinematics|1 +(noun)|mechanics +kinescope|1 +(noun)|picture tube|television tube|cathode-ray tube|CRT +kinesiology|1 +(noun)|physiology +kinesis|1 +(noun)|reaction|response +kinesthesia|1 +(noun)|kinaesthesia|feeling of movement|somatosense|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +kinesthetic|1 +(adj)|kinaesthetic|proprioception +kinesthetically|1 +(adv)|kinaesthetically +kinetic|3 +(adj)|mechanics +(adj)|moving +(adj)|energizing|energising|dynamic |dynamical +kinetic energy|1 +(noun)|K.E.|mechanical energy +kinetic theory|1 +(noun)|kinetic theory of gases|scientific theory +kinetic theory of gases|1 +(noun)|kinetic theory|scientific theory +kinetic theory of heat|1 +(noun)|kinetic theory|kinetic theory of gases +kinetics|1 +(noun)|dynamics|mechanics +kinetochore|1 +(noun)|centromere|structure|anatomical structure|complex body part|bodily structure|body structure +kinetoscope|1 +(noun)|Kinetoscope|device +kinetosis|1 +(noun)|motion sickness|ailment|complaint|ill|nausea|sickness +kinfolk|1 +(noun)|family|family line|folk|kinsfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +king|10 +(noun)|male monarch|sovereign|crowned head|monarch +(noun)|queen|world-beater|rival|challenger|competitor|competition|contender +(noun)|baron|big businessman|business leader|magnate|mogul|power|top executive|tycoon|businessman|man of affairs +(noun)|eminence|distinction|preeminence|note +(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player +(noun)|King|B. B. King|Riley B King|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player +(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman|reverend|man of the cloth|civil rights leader|civil rights worker|civil rights activist +(noun)|checker +(noun)|face card|picture card|court card +(noun)|chessman|chess piece +king's counsel|1 +(noun)|King's Counsel|Counsel to the Crown +king's english|1 +(noun)|King's English|English|English language +king's evil|1 +(noun)|scrofula|struma|tuberculosis|TB|T.B. +king's ransom|1 +(noun)|treasure|hoarded wealth +king's spear|1 +(noun)|yellow asphodel|Asphodeline lutea|asphodel +king-size|1 +(adj)|king-sized|large +king-sized|1 +(adj)|king-size|large +king arthur|1 +(noun)|Arthur|King Arthur|fictional character|fictitious character|character +king arthur's round table|1 +(noun)|Round Table|King Arthur's Round Table|table +king begonia|1 +(noun)|rex begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia +king camp gilette|1 +(noun)|Gillette|King Camp Gilette|inventor|discoverer|artificer|industrialist +king charles spaniel|1 +(noun)|King Charles spaniel|toy spaniel +king cobra|1 +(noun)|hamadryad|Ophiophagus hannan|Naja hannah|cobra +king crab|4 +(noun)|Alaska king crab|Alaskan king crab|Alaska crab|crab|crabmeat +(noun)|European spider crab|Maja squinado|spider crab +(noun)|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab +(noun)|horseshoe crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod +king devil|1 +(noun)|yellow hawkweed|Hieracium praealtum|weed +king fern|2 +(noun)|crepe fern|Todea barbara|fern +(noun)|royal fern|royal osmund|ditch fern|French bracken|Osmunda regalis|flowering fern|osmund +king harold i|1 +(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England|King of Great Britain +king harold ii|1 +(noun)|Harold II|King Harold II|King of England|King of Great Britain +king hussein|1 +(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king|male monarch +king james bible|1 +(noun)|Authorized Version|King James Version|King James Bible|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +king james version|1 +(noun)|Authorized Version|King James Version|King James Bible|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +king john|1 +(noun)|John|King John|John Lackland|King of England|King of Great Britain +king lear|1 +(noun)|Lear|King Lear|fictional character|fictitious character|character +king mackerel|1 +(noun)|cavalla|cero|Scomberomorus cavalla|Spanish mackerel +king nut|1 +(noun)|big shellbark|big shellbark hickory|big shagbark|king nut hickory|Carya laciniosa|hickory|hickory tree +king nut hickory|1 +(noun)|big shellbark|big shellbark hickory|big shagbark|king nut|Carya laciniosa|hickory|hickory tree +king oedipus|1 +(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being +king of beasts|1 +(noun)|lion|Panthera leo|big cat|cat +king of england|1 +(noun)|King of England|King of Great Britain|king|male monarch +king of france|1 +(noun)|King of France|king|male monarch +king of great britain|1 +(noun)|King of England|King of Great Britain|king|male monarch +king of the herring|1 +(noun)|oarfish|ribbonfish|Regalecus glesne|soft-finned fish|malacopterygian +king oliver|1 +(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician|jazzman +king orange|1 +(noun)|temple orange|temple orange tree|tangor|Citrus nobilis|orange|orange tree +king penguin|1 +(noun)|Aptenodytes patagonica|penguin +king post|1 +(noun)|post +king protea|1 +(noun)|honeypot|Protea cynaroides|protea +king salmon|2 +(noun)|chinook salmon|chinook|salmon +(noun)|chinook|chinook salmon|quinnat salmon|Onchorynchus tshawtscha|salmon +king snake|2 +(noun)|kingsnake|colubrid snake|colubrid +(noun)| +king vulture|1 +(noun)|Sarcorhamphus papa|New World vulture|cathartid +king whiting|1 +(noun)|Menticirrhus americanus|whiting +king william pine|1 +(noun)|King William pine|Athrotaxis selaginoides|conifer|coniferous tree +kingbird|1 +(noun)|Tyrannus tyrannus|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +kingbolt|1 +(noun)|kingpin|swivel pin|bolt +kingcup|2 +(noun)|marsh marigold|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +(noun)|buttercup|butterflower|butter-flower|crowfoot|goldcup|herb|herbaceous plant +kingdom|6 +(noun)|land|realm|sphere|domain|area|orbit|field|arena +(noun)|country|state|land +(noun)|realm|domain|demesne|land +(noun)|monarchy +(noun)|taxonomic group|taxonomic category|taxon +(noun)|group|grouping +kingdom animalia|1 +(noun)|Animalia|kingdom Animalia|animal kingdom|kingdom +kingdom come|2 +(noun)|afterlife|hereafter +(noun)|future|hereafter|futurity|time to come +kingdom fungi|1 +(noun)|Fungi|kingdom Fungi|fungus kingdom|kingdom +kingdom monera|1 +(noun)|Monera|kingdom Monera|kingdom +kingdom of belgium|1 +(noun)|Belgium|Kingdom of Belgium|Belgique|European country|European nation +kingdom of bhutan|1 +(noun)|Bhutan|Kingdom of Bhutan|Asian country|Asian nation +kingdom of cambodia|1 +(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country|Asian nation +kingdom of denmark|1 +(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country|Scandinavian nation +kingdom of god|1 +(noun)|Kingdom of God|domain|demesne|land +kingdom of lesotho|1 +(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country|African nation +kingdom of morocco|1 +(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country|African nation +kingdom of nepal|1 +(noun)|Nepal|Kingdom of Nepal|Asian country|Asian nation +kingdom of norway|1 +(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country|Scandinavian nation +kingdom of saudi arabia|1 +(noun)|Saudi Arabia|Kingdom of Saudi Arabia|Asian country|Asian nation +kingdom of spain|1 +(noun)|Spain|Kingdom of Spain|Espana|European country|European nation +kingdom of swaziland|1 +(noun)|Swaziland|Kingdom of Swaziland|African country|African nation +kingdom of sweden|1 +(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country|Scandinavian nation +kingdom of thailand|1 +(noun)|Thailand|Kingdom of Thailand|Siam|Asian country|Asian nation +kingdom of the netherlands|1 +(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Holland|European country|European nation +kingdom of tonga|1 +(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country|state|land +kingdom plantae|1 +(noun)|Plantae|kingdom Plantae|plant kingdom|kingdom +kingdom protoctista|1 +(noun)|Protoctista|kingdom Protoctista|kingdom +kingfish|5 +(noun)|saltwater fish +(noun)|cero|pintado|Scomberomorus regalis|Spanish mackerel +(noun)|white croaker|chenfish|Genyonemus lineatus|croaker +(noun)|whiting +(noun)|Seriola grandis|jack +kingfisher|1 +(noun)|coraciiform bird +kingfisher daisy|1 +(noun)|Felicia bergeriana|flower +kinglet|1 +(noun)|warbler +kinglike|1 +(adj)|kingly|noble +kingly|1 +(adj)|kinglike|noble +kingmaker|1 +(noun)|important person|influential person|personage +kingpin|3 +(noun)|top banana|bigwig|important person|influential person|personage +(noun)|kingbolt|swivel pin|bolt +(noun)|headpin|bowling pin|pin +kings canyon national park|1 +(noun)|Kings Canyon National Park|national park +kingship|1 +(noun)|rank +kingsnake|1 +(noun)|king snake|colubrid snake|colubrid +kingston|3 +(noun)|Kingston|town +(noun)|Kingston|town +(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital +kingston-upon hull|1 +(noun)|Hull|Kingston-upon Hull|city|metropolis|urban center|port +kingstown|1 +(noun)|Kingstown|national capital +kingwood|2 +(noun)|wood +(noun)|kingwood tree|Dalbergia cearensis|tree +kingwood tree|1 +(noun)|kingwood|Dalbergia cearensis|tree +kinin|1 +(noun)|cytokinin|phytohormone|plant hormone|growth regulator +kink|3 +(noun)|twist|twirl|fold|crease|plication|flexure|crimp|bend +(verb)|crimp|crape|frizzle|frizz|kink up|curl|wave +(verb)|curl|curve|change surface +kink up|1 +(verb)|crimp|crape|frizzle|frizz|kink|curl|wave +kinkajou|2 +(noun)|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid +(noun)|potto|Perodicticus potto|lemur +kinky|3 +(adj)|perverted|abnormal +(adj)|crisp|frizzly|frizzy|nappy|curly +(adj)|far-out|offbeat|quirky|way-out|unconventional +kino|2 +(noun)|gum kino|kino gum|gum +(noun)|Pterocarpus marsupium|tree +kino gum|2 +(noun)|kino|gum kino|gum +(noun)|East India kino|Malabar kino|resin|rosin +kinosternidae|1 +(noun)|Kinosternidae|family Kinosternidae|reptile family +kinosternon|1 +(noun)|Kinosternon|genus Kinosternon|reptile genus +kinsey|1 +(noun)|Kinsey|Alfred Charles Kinsey|zoologist|animal scientist +kinsfolk|1 +(noun)|family|family line|folk|kinfolk|sept|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +kinshasa|1 +(noun)|Kinshasa|Leopoldville|national capital +kinship|2 +(noun)|affinity|relation +(noun)|family relationship|relationship|relation +kinship by marriage|1 +(noun)|affinity|kinship|family relationship|relationship +kinship group|1 +(noun)|kin|kin group|kindred|clan|tribe|social group +kinsman|1 +(noun)|relative|relation +kinsperson|1 +(noun)|kin|family|relative|relation +kinswoman|1 +(noun)|relative|relation +kinyarwanda|1 +(noun)|Kinyarwanda|Bantu|Bantoid language +kiosk|1 +(noun)|booth|cubicle|stall|closet +kiowa|2 +(noun)|Kiowa|Plains Indian|Buffalo Indian +(noun)|Kiowa|Tanoan|Tanoan language +kip|4 +(noun)|sleep|nap +(noun)|Laotian monetary unit +(noun)|upstart|gymnastic exercise +(verb)|sleep|slumber|log Z's|catch some Z's|rest +kip down|1 +(verb)|go to bed|turn in|bed|crawl in|hit the hay|hit the sack|sack out|go to sleep|retire +kipling|1 +(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer|author +kiplingesque|1 +(adj)|Kiplingesque|writer|author +kipp's apparatus|1 +(noun)|Kipp's apparatus|apparatus|setup +kipper|1 +(noun)|kippered herring|herring +kippered herring|1 +(noun)|kipper|herring +kippered salmon|1 +(noun)|salmon +kirchhoff|1 +(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist +kirchhoff's laws|1 +(noun)|Kirchhoff's laws|law|law of nature +kirchner|1 +(noun)|Kirchner|Ernst Ludwig Kirchner|painter +kirghiz|3 +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki|Turkic|Turko-Tatar|Turkic language +kirghizia|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kirghizstan|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kirgiz|3 +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +(noun)|Kirghiz|Kirgiz|Khirghiz|Turki|Turkic|Turko-Tatar|Turkic language +kirgizia|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kirgizstan|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kiribati|1 +(noun)|Kiribati|Republic of Kiribati|country|state|land +kiribati dollar|1 +(noun)|Kiribati dollar|dollar +kirk|1 +(noun)|church|church building +kirkia|1 +(noun)|Kirkia|genus Kirkia|rosid dicot genus +kirkia wilmsii|1 +(noun)|pepper tree|Kirkia wilmsii|tree +kirkuk|1 +(noun)|Kirkuk|city|metropolis|urban center +kirpan|1 +(noun)|dagger|sticker +kirsch|1 +(noun)|brandy +kirtle|2 +(noun)|tunic +(noun)|dress|frock +kishar|1 +(noun)|Kishar|Semitic deity +kishinev|1 +(noun)|Kishinev|Chisinau|capital of Moldova|capital +kishke|1 +(noun)|stuffed derma|dish +kislev|1 +(noun)|Kislev|Chislev|Jewish calendar month +kismat|1 +(noun)|kismet|destiny|fate +kismet|1 +(noun)|kismat|destiny|fate +kiss|6 +(noun)|buss|osculation|touch|touching +(noun)|cookie|cooky|biscuit +(noun)|candy +(noun)|touch|touching +(verb)|buss|osculate|touch +(verb)|touch +kiss-me-over-the-garden-gate|1 +(noun)|prince's-feather|princess feather|prince's-plume|Polygonum orientale|subshrub|suffrutex +kiss curl|1 +(noun)|spit curl|crimp +kiss of death|1 +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +kiss of life|1 +(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|resuscitation|emergency procedure +kiss of peace|1 +(noun)|pax|greeting|salutation +kisser|2 +(noun)|osculator|lover +(noun)|countenance|physiognomy|phiz|visage|smiler|mug|face|human face +kissing|1 +(noun)|caressing|cuddling|fondling|hugging|necking|petting|smooching|snuggling|foreplay|arousal|stimulation +kissing bug|1 +(noun)|conenose|cone-nosed bug|conenose bug|big bedbug|assassin bug|reduviid +kissing cousin|1 +(noun)|kissing kin|relative|relation +kissing disease|1 +(noun)|infectious mononucleosis|mononucleosis|mono|glandular fever|infectious disease +kissing kin|1 +(noun)|kissing cousin|relative|relation +kissinger|1 +(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat|diplomatist +kisumu|1 +(noun)|Kisumu|city|metropolis|urban center|port +kiswahili|1 +(noun)|Kiswahili|Bantu|Bantoid language +kit|4 +(noun)|case +(noun)|outfit|gear|paraphernalia|appurtenances +(noun)|young mammal +(verb)|kit out|kit up|equip|fit|fit out|outfit +kit and boodle|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|whole kit|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +kit and caboodle|1 +(noun)|whole shebang|whole kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +kit bag|2 +(noun)|kitbag|backpack|back pack|knapsack|packsack|rucksack|haversack +(noun)| +kit carson|1 +(noun)|Carson|Kit Carson|Christopher Carson|frontiersman|backwoodsman|mountain man +kit fox|2 +(noun)|Vulpes macrotis|fox +(noun)|prairie fox|Vulpes velox|fox +kit out|1 +(verb)|kit up|kit|equip|fit|fit out|outfit +kit up|1 +(verb)|kit out|kit|equip|fit|fit out|outfit +kitakyushu|1 +(noun)|Kitakyushu|city|metropolis|urban center +kitambilla|2 +(noun)|ketembilla|kitembilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree +(noun)|ketembilla|kitembilla|edible fruit +kitbag|1 +(noun)|kit bag|backpack|back pack|knapsack|packsack|rucksack|haversack +kitchen|1 +(noun)|room +kitchen appliance|1 +(noun)|home appliance|household appliance +kitchen cabinet|1 +(noun)|clique|coterie|ingroup|inner circle|pack|camp +kitchen garden|1 +(noun)|vegetable garden|vegetable patch|garden +kitchen help|1 +(noun)|hired help +kitchen match|1 +(noun)|match|lucifer|friction match +kitchen midden|1 +(noun)|eitchen midden|midden|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +kitchen range|1 +(noun)|stove|kitchen stove|range|cooking stove|kitchen appliance +kitchen sink|1 +(noun)|sink +kitchen stove|1 +(noun)|stove|range|kitchen range|cooking stove|kitchen appliance +kitchen table|1 +(noun)|table +kitchen utensil|1 +(noun)|utensil +kitchener|1 +(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal +kitchenette|1 +(noun)|kitchen +kitchenware|1 +(noun)|kitchen utensil +kite|8 +(noun)|check|bank check|cheque +(noun)|check|bank check|cheque +(noun)|plaything|toy +(noun)|hawk +(verb)|increase +(verb)|obtain +(verb)|glide +(verb)|fly +kite balloon|1 +(noun)|barrage balloon +kite tail|1 +(noun)|bob +kitembilla|2 +(noun)|ketembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree +(noun)|ketembilla|kitambilla|edible fruit +kith|1 +(noun)|social group +kitsch|2 +(adj)|ostentatious|pretentious|tasteless +(noun)|art|fine art +kitten|2 +(noun)|kitty|young mammal +(verb)|give birth|deliver|bear|birth|have +kitten-tails|1 +(noun)|wildflower|wild flower +kittenish|1 +(adj)|frisky|playful +kittiwake|1 +(noun)|gull|seagull|sea gull +kittul|1 +(noun)|wine palm|jaggery palm|kitul|kitul tree|toddy alm|Caryota urens|sago palm +kitty|4 +(noun)|pool|stake|stakes|bet|wager +(noun)|pot|jackpot|stake|stakes|bet|wager +(noun)|kitten|young mammal +(noun)|kitty-cat|puss|pussy|pussycat|domestic cat|house cat|Felis domesticus|Felis catus +kitty-cat|1 +(noun)|kitty|puss|pussy|pussycat|domestic cat|house cat|Felis domesticus|Felis catus +kitty-corner|1 +(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-cornered|oblique +kitty-cornered|1 +(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|oblique +kitty litter|1 +(noun)|Kitty Litter|clay +kitul|1 +(noun)|wine palm|jaggery palm|kittul|kitul tree|toddy alm|Caryota urens|sago palm +kitul tree|1 +(noun)|wine palm|jaggery palm|kitul|kittul|toddy alm|Caryota urens|sago palm +kivu|1 +(noun)|Kivu|Lake Kivu|lake +kiwi|4 +(noun)|Chinese gooseberry|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine +(noun)|New Zealander|Kiwi|inhabitant|dweller|denizen|indweller +(noun)|kiwi fruit|Chinese gooseberry|edible fruit +(noun)|apteryx|ratite|ratite bird|flightless bird +kiwi fruit|1 +(noun)|kiwi|Chinese gooseberry|edible fruit +kiwi vine|1 +(noun)|Chinese gooseberry|kiwi|Actinidia chinensis|Actinidia deliciosa|vine +kkk|1 +(noun)|Ku Klux Klan|Klan|KKK|secret society|terrorist organization|terrorist group|foreign terrorist organization|FTO +klaipeda|1 +(noun)|Klaipeda|Memel|city|metropolis|urban center +klamath|1 +(noun)|Klamath|Klamath River|river +klamath falls|1 +(noun)|Klamath Falls|town +klamath river|1 +(noun)|Klamath|Klamath River|river +klammath weed|1 +(noun)|Hypericum perforatum|St John's wort +klan|1 +(noun)|Ku Klux Klan|Klan|KKK|secret society|terrorist organization|terrorist group|foreign terrorist organization|FTO +klansman|1 +(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist +klaproth|1 +(noun)|Klaproth|Martin Heinrich Klaproth|chemist +klaus fuchs|1 +(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist +klavern|1 +(noun)|unit|social unit +klavier|1 +(noun)|clavier|Klavier|stringed instrument +klaxon|1 +(noun)|claxon|horn +klebs-loeffler bacillus|1 +(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium +klebsiella|1 +(noun)|enteric bacteria|enterobacteria|enterics +klee|1 +(noun)|Klee|Paul Klee|painter +kleenex|1 +(noun)|Kleenex|tissue|tissue paper +klein|3 +(noun)|Klein|Felix Klein|mathematician +(noun)|Klein|Melanie Klein|analyst|psychoanalyst +(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier|fashion designer|clothes designer|designer +klein bottle|1 +(noun)|Klein bottle|surface +kleist|1 +(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist|playwright +klemens metternich|1 +(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman|solon|national leader +kleptomania|1 +(noun)|mania|passion|cacoethes +kleptomaniac|1 +(noun)|appropriator +klick|1 +(noun)|kilometer|kilometre|km|metric linear unit +klieg light|1 +(noun)|carbon arc lamp|carbon arc +klimt|1 +(noun)|Klimt|Gustav Klimt|painter +kline|1 +(noun)|Kline|Franz Kline|Franz Joseph Kline|painter +klinefelter|1 +(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor|doc|physician|MD|Dr.|medico +klinefelter's syndrome|1 +(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome +klinefelter syndrome|1 +(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome +klondike|2 +(noun)|Klondike|geographical area|geographic area|geographical region|geographic region +(noun)|solitaire|patience +klopstock|1 +(noun)|Klopstock|Friedrich Gottlieb Klopstock|poet +klorvess|1 +(noun)|potassium chloride|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +kludge|1 +(noun)|collection|aggregation|accumulation|assemblage +klutz|1 +(noun)|stupid|stupid person|dullard|dolt|pudding head|pudden-head|poor fish|pillock +kluxer|1 +(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist +klystron|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +klyuchevskaya|1 +(noun)|Klyuchevskaya|volcano +km|1 +(noun)|kilometer|kilometre|klick|metric linear unit +km/h|1 +(noun)|kilometers per hour|kilometres per hour|kph|rate +knack|1 +(noun)|bent|hang|endowment|gift|talent|natural endowment +knacker|2 +(noun)|wrecker +(noun)|butcher|slaughterer +knackered|1 +(adj)|drained|tired +knackwurst|1 +(noun)|knockwurst|sausage +knap|2 +(verb)|rap|strike +(verb)|chip|cut off|break off|cut +knapsack|1 +(noun)|backpack|back pack|packsack|rucksack|haversack|bag +knapweed|1 +(noun)|centaury +knave|2 +(noun)|rogue|rascal|rapscallion|scalawag|scallywag|varlet|villain|scoundrel +(noun)|jack|face card|picture card|court card +knavery|1 +(noun)|dishonesty|wrongdoing|wrongful conduct|misconduct|actus reus +knavish|1 +(adj)|crafty|cunning|dodgy|foxy|guileful|slick|sly|tricksy|tricky|wily|artful +knavishly|1 +(adv)|craftily|cunningly|foxily|slyly|trickily|artfully +knawe|1 +(noun)|knawel|Scleranthus annuus|weed +knawel|1 +(noun)|knawe|Scleranthus annuus|weed +knead|2 +(verb)|work|manipulate +(verb)|massage|rub down|manipulate +knee|3 +(noun)|knee joint|articulatio genus|genu|hinge joint|ginglymus|ginglymoid joint +(noun)|stifle|joint|articulation|articulatio +(noun)|cloth covering +knee-deep|2 +(adj)|ankle-deep|shallow +(adv)|knee-high +knee-high|1 +(adv)|knee-deep +knee-jerk reflex|1 +(noun)|knee jerk|patellar reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +knee-length|1 +(adj)|hinge joint|ginglymus|ginglymoid joint +knee bend|1 +(noun)|squat|squatting|leg exercise +knee brace|1 +(noun)|brace +knee breeches|1 +(noun)|breeches|knee pants|knickerbockers|knickers|trousers|pants +knee jerk|1 +(noun)|knee-jerk reflex|patellar reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +knee joint|1 +(noun)|knee|articulatio genus|genu|hinge joint|ginglymus|ginglymoid joint +knee pad|1 +(noun)|protective garment +knee pants|1 +(noun)|breeches|knee breeches|knickerbockers|knickers|trousers|pants +knee piece|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +kneecap|2 +(noun)|patella|kneepan|sesamoid bone|os sesamoideum +(verb)|shoot|hit|pip +kneel|2 +(noun)|kneeling|motion|movement|move|motility +(verb)|rest +kneeler|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|board +kneeling|1 +(noun)|kneel|motion|movement|move|motility +kneepan|1 +(noun)|patella|kneecap|sesamoid bone|os sesamoideum +knell|3 +(noun)|bell|toll +(verb)|ring|peal +(verb)|ring|sound +knesset|1 +(noun)|Knesset|Knesseth|parliament +knesseth|1 +(noun)|Knesset|Knesseth|parliament +knickerbockers|1 +(noun)|breeches|knee breeches|knee pants|knickers|trousers|pants +knickers|2 +(noun)|breeches|knee breeches|knee pants|knickerbockers|trousers|pants +(noun)|bloomers|pants|drawers|underpants +knickknack|2 +(noun)|novelty|article +(noun)|bric-a-brac|nicknack|knickknackery|whatnot|curio|curiosity|oddity|oddment|peculiarity|rarity +knickknackery|1 +(noun)|bric-a-brac|knickknack|nicknack|whatnot|curio|curiosity|oddity|oddment|peculiarity|rarity +knife|4 +(noun)|edge tool +(noun)|weapon|arm|weapon system +(noun)|tongue|projection +(verb)|stab|injure|wound +knife-edge|2 +(noun)|limit|bounds|boundary +(noun)|knife edge|cutting edge|edge +knife-handle|1 +(noun)|razor clam|jackknife clam|clam +knife blade|1 +(noun)|blade +knife edge|2 +(noun)|cutting edge|edge +(noun)|knife-edge|limit|bounds|boundary +knife fight|1 +(noun)|snickersnee|cut-and-thrust|fight|fighting|combat|scrap +knife pleat|1 +(noun)|pleat|plait +knife thrust|1 +(noun)|stab|thrust|blow +knifelike|4 +(adj)|sharp +(adj)|acute|discriminating|incisive|keen|penetrating|penetrative|piercing|sharp|perceptive +(adj)|cutting|keen|piercing|stabbing|lancinate|lancinating|sharp +(adj)|distinct +knight|3 +(noun)|male aristocrat +(noun)|horse|chessman|chess piece +(verb)|dub|ennoble|gentle|entitle +knight's service|1 +(noun)|service +knight-errant|1 +(noun)|knight +knight bachelor|1 +(noun)|bachelor-at-arms|bachelor|knight +knight banneret|1 +(noun)|knight of the square flag|banneret|knight +knight errantry|2 +(noun)|quixotism|idealism +(noun)|code of conduct|code of behavior +knight of the round table|1 +(noun)|Knight of the Round Table|knight +knight of the square flag|1 +(noun)|knight banneret|banneret|knight +knight templar|2 +(noun)|Knight Templar|Freemason|Mason +(noun)|Knight Templar|Templar|knight +knighthood|1 +(noun)|nobility|aristocracy +knightia|1 +(noun)|Knightia|genus Knightia|dicot genus|magnoliopsid genus +knightly|2 +(adj)|chivalric|medieval|past +(adj)|chivalrous|gallant|courteous +kniphofia|1 +(noun)|tritoma|flame flower|flame-flower|flameflower|herb|herbaceous plant +kniphofia praecox|1 +(noun)|red-hot poker|Kniphofia praecox|poker plant|Kniphofia uvaria +kniphofia uvaria|1 +(noun)|poker plant|Kniphofia uvaria|kniphofia|tritoma|flame flower|flame-flower|flameflower +knish|1 +(noun)|dish +knit|6 +(noun)|knitted fabric|fabric|cloth|material|textile +(noun)|knit stitch|plain|plain stitch|knitting stitch +(noun)|knitting|knitwork|needlework|needlecraft +(verb)|create from raw material|create from raw stuff +(verb)|entwine|join|conjoin +(verb)|pucker|rumple|cockle|crumple|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +knit stitch|1 +(noun)|knit|plain|plain stitch|knitting stitch +knitted|1 +(adj)|unwoven +knitted fabric|1 +(noun)|knit|fabric|cloth|material|textile +knitter|1 +(noun)|needleworker +knitting|2 +(noun)|knit|knitwork|needlework|needlecraft +(noun)|handicraft +knitting machine|1 +(noun)|textile machine +knitting needle|1 +(noun)|needle +knitting stitch|1 +(noun)|stitch +knitwear|1 +(noun)|clothing|article of clothing|vesture|wear +knitwork|1 +(noun)|knit|knitting|needlework|needlecraft +knob|4 +(noun)|boss|projection +(noun)|handle|grip|handgrip|hold +(noun)|node|thickening|convex shape|convexity +(noun)|pommel|decoration|ornament|ornamentation +knob celery|1 +(noun)|celeriac|celery root|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb|herbaceous plant +knobbed|1 +(adj)|gnarled|gnarly|knotted|knotty|crooked +knobble|1 +(noun)|knob|boss +knobbly|1 +(adj)|knobby|unshapely +knobby|1 +(adj)|knobbly|unshapely +knobcone pine|1 +(noun)|Pinus attenuata|pine|pine tree|true pine +knobkerrie|1 +(noun)|knobkerry|club +knobkerry|1 +(noun)|knobkerrie|club +knock|11 +(noun)|knocking|sound +(noun)|roast|criticism|critique +(noun)|bash|bang|smash|belt|bump|blow +(noun)|misfortune|bad luck +(noun)|belt|rap|whack|whang|blow +(verb)|strike hard|strike|knock over|knock down|knock out|knock cold +(verb)|rap|knap +(verb)|bump|hit|strike|impinge on|run into|collide with|knock against|knock about +(verb)|tap|rap|pink|sound|go +(verb)|pink|ping|sound|go +(verb)|criticize|criticise|pick apart|comment|notice|remark|point out +knock-down|2 +(adj)|powerful|strong +(adj)|knockdown|collective +knock-down-and-drag-out|1 +(adj)|knockdown-dragout|violent +knock-knee|1 +(noun)|genu valgum|tibia valga|leg|disability|disablement|handicap|impairment +knock-kneed|1 +(adj)|unfit +knock-on effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +knock about|2 +(verb)|buffet|batter|strike +(verb)|kick around|kick about|exist|be +knock against|1 +(verb)|run into|bump into|jar against|butt against|hit|strike|impinge on|run into|collide with +knock back|1 +(verb)|set back|put back|cost|be +knock cold|1 +(verb)|knock out|kayo|beat|beat up|work over +knock down|2 +(verb)|down|cut down|push down|pull down|strike +(verb)|deck|coldcock|dump|floor|beat +knock off|5 +(verb)|neutralize|neutralise|liquidate|waste|do in|kill +(verb)|shave|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|hook|snitch|thieve|cop|glom|steal +(verb)|dash off|toss off|fling off|write|compose|pen|indite +(verb)|drop|discontinue|stop|cease|give up|quit|lay off +knock on|1 +(noun)|play +knock out|5 +(verb)|eliminate|get rid of|do away with +(verb)|knock cold|kayo|beat|beat up|work over +(verb)|remove|take|take away|withdraw +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +(verb)|empty +knock over|1 +(verb)|overturn|tip over|turn over|upset|bowl over|tump over|move|displace +knock rummy|1 +(noun)|gin|gin rummy|rummy|rum +knock up|1 +(verb)|impregnate|bang up|prang up|inseminate|fecundate|fertilize|fertilise +knockabout|3 +(adj)|boisterous|spirited +(adj)|rugged +(noun)|sloop +knockdown|2 +(adj)|collective +(noun)|blow +knockdown-dragout|1 +(adj)|knock-down-and-drag-out|violent +knocked-out|2 +(adj)|damaged +(adj)|knocked out|kayoed|KO'd|out|stunned|unconscious +knocked out|2 +(adj)|kayoed|KO'd|out|stunned|unconscious +(adj)|knocked-out|damaged +knocker|5 +(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|big fish|head honcho +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|detractor|disparager|depreciator|cynic|faultfinder +(noun)|breast|bosom|boob|tit|titty|mammary gland|mamma +(noun)|doorknocker|rapper|device +knocking|1 +(noun)|knock|sound +knockoff|1 +(noun)|clone|copy +knockout|3 +(adj)|hard|severe|strong +(noun)|smasher|stunner|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman|adult female +(noun)|KO|blow +knockout drops|1 +(noun)|Mickey Finn|chloral hydrate +knockout punch|1 +(noun)|haymaker|KO punch|Sunday punch|punch|clout|poke|lick|biff +knockwurst|1 +(noun)|knackwurst|sausage +knoll|1 +(noun)|mound|hillock|hummock|hammock|hill +knossos|1 +(noun)|Knossos|Cnossos|Cnossus|town +knot|10 +(noun)|bunch|clump|cluster|clustering +(noun)|fastener|fastening|holdfast|fixing +(noun)|wood +(noun)|gnarl|distorted shape|distortion +(noun)|nautical mile|mile|mi|naut mi|international nautical mile|air mile|nautical linear unit +(noun)|slub|burl|roughness +(noun)|grayback|Calidris canutus|sandpiper +(verb)|create from raw material|create from raw stuff +(verb)|tie|bind +(verb)|ravel|tangle|intertwine|twine|entwine|enlace|interlace|lace +knotgrass|1 +(noun)|Paspalum distichum|grass +knothole|1 +(noun)|hole +knotted|3 +(adj)|tied |fastened +(adj)|gnarled|gnarly|knotty|knobbed|crooked +(adj)|snarled|snarly|tangled +knotted marjoram|1 +(noun)|sweet marjoram|Origanum majorana|Majorana hortensis|origanum +knottiness|1 +(noun)|complicatedness|complication|complexity|complexness +knotty|3 +(adj)|baffling|problematic|problematical|difficult |hard +(adj)|gnarled|gnarly|knotted|knobbed|crooked +(adj)|Byzantine|convoluted|intricate|involved|labyrinthine|tangled|tortuous|complex +knotty pine|1 +(noun)|pine +knout|1 +(noun)|whip +know|7 +(verb)|cognize|cognise +(verb)|experience|live|experience|undergo|see|go through +(verb)|acknowledge|recognize|recognise|accept +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +(verb)|recognize|recognise|realize|realise|agnize|agnise +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|remember|retrieve|recall|call back|call up|recollect|think +know-all|1 +(noun)|know-it-all|egotist|egoist|swellhead +know-how|1 +(noun)|ability|power +know-it-all|1 +(noun)|know-all|egotist|egoist|swellhead +know-nothing party|1 +(noun)|American Party|Know-Nothing Party|party|political party +know apart|1 +(verb)|discriminate|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +know nothing|1 +(noun)|ignoramus|uneducated person|unskilled person +know the score|1 +(verb)|be with it|be on the ball|know what's going on|know what's what|know +know what's going on|1 +(verb)|know the score|be with it|be on the ball|know what's what|know +know what's what|1 +(verb)|know the score|be with it|be on the ball|know what's going on|know +knowable|1 +(adj)|knowable |cognizable|cognisable|cognoscible +knower|1 +(noun)|apprehender|person|individual|someone|somebody|mortal|human|soul +knowing|5 +(adj)|wise|wise to|informed +(adj)|deliberate|intentional|willful|wilful|intended +(adj)|aware|knowledgeable|informed +(adj)|enlightened|knowledgeable|learned|lettered|well-educated|well-read|educated +(noun)|higher cognitive process +knowingly|1 +(adv)|wittingly +knowingness|2 +(noun)|awareness|consciousness|cognizance|cognisance|knowing +(noun)|shrewdness|astuteness|perspicacity|perspicaciousness +knowledge|1 +(noun)|cognition|noesis|psychological feature +knowledge base|1 +(noun)|knowledge domain|content|cognitive content|mental object +knowledge domain|1 +(noun)|knowledge base|content|cognitive content|mental object +knowledgeability|1 +(noun)|knowledgeableness|initiation|wisdom|wiseness +knowledgeable|4 +(adj)|enlightened|knowing|learned|lettered|well-educated|well-read|educated +(adj)|versed +(adj)|aware|knowing|informed +(adj)|intimate|intimate with|knowledgeable about|experienced +knowledgeable about|1 +(adj)|intimate|intimate with|knowledgeable|experienced +knowledgeableness|1 +(noun)|knowledgeability|initiation|wisdom|wiseness +knowlton's cactus|1 +(noun)|Knowlton's cactus|Pediocactus knowltonii|cactus +known|1 +(adj)|known |best-known|better-known|celebrated|famed|far-famed|famous|illustrious|notable|noted|renowned|identified|legendary|proverbial|well-known|acknowledged|familiar|glorious +known as|1 +(adj)|called|titled +knox|1 +(noun)|Knox|John Knox|theologian|theologist|theologizer|theologiser|historian|historiographer +knoxville|1 +(noun)|Knoxville|city|metropolis|urban center +knuckle|3 +(noun)|knuckle joint|metacarpophalangeal joint|synovial joint|articulatio synovialis|diarthrosis +(verb)|press +(verb)|shoot +knuckle down|1 +(verb)|slave|break one's back|buckle down|work|do work +knuckle duster|1 +(noun)|brass knucks|knucks|brass knuckles|knuckles|weapon|arm|weapon system +knuckle joint|2 +(noun)|knuckle|metacarpophalangeal joint|synovial joint|articulatio synovialis|diarthrosis +(noun)|hinge joint|joint +knuckle under|1 +(verb)|yield|give in|succumb|buckle under|accept|consent|go for +knuckleball|1 +(noun)|knuckler|pitch|delivery +knucklebones|1 +(noun)|jacks|jackstones|child's game +knucklehead|1 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +knuckler|1 +(noun)|knuckleball|pitch|delivery +knuckles|2 +(noun)|brass knucks|knucks|brass knuckles|knuckle duster|weapon|arm|weapon system +(noun)|knuckle|knuckle joint|metacarpophalangeal joint|synovial joint|articulatio synovialis|diarthrosis +knucks|1 +(noun)|brass knucks|brass knuckles|knuckles|knuckle duster|weapon|arm|weapon system +knut|1 +(noun)|Canute|Cnut|Knut|Canute the Great|King of England|King of Great Britain +knut hamsun|1 +(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer|author +knut pedersen|1 +(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer|author +ko|1 +(noun)|knockout|KO|blow +ko'd|1 +(adj)|knocked out|kayoed|KO'd|out|stunned|unconscious +ko punch|1 +(noun)|haymaker|knockout punch|KO punch|Sunday punch|punch|clout|poke|lick|biff +koala|1 +(noun)|koala bear|kangaroo bear|native bear|Phascolarctos cinereus|phalanger|opossum|possum +koala bear|1 +(noun)|koala|kangaroo bear|native bear|Phascolarctos cinereus|phalanger|opossum|possum +koan|1 +(noun)|problem +koasati|2 +(noun)|Koasati|Muskhogean|Muskogean +(noun)|Koasati|Muskhogean|Muskhogean language|Muskogean|Muskogean language +kob|1 +(noun)|Kobus kob|waterbuck +kobenhavn|1 +(noun)|Copenhagen|Kobenhavn|Danish capital|national capital +kobo|1 +(noun)|Nigerian monetary unit +kobuk valley national park|1 +(noun)|Kobuk Valley National Park|national park +kobus|1 +(noun)|Kobus|genus Kobus|mammal genus +kobus kob|1 +(noun)|kob|Kobus kob|waterbuck +kobus leche|1 +(noun)|lechwe|Kobus leche|waterbuck +koch|1 +(noun)|Koch|Robert Koch|bacteriologist +kochia|1 +(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus +kochia scoparia|1 +(noun)|summer cypress|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +kodagu|2 +(noun)|Kodagu|Dravidian +(noun)|Kodagu|South Dravidian +kodiak|2 +(noun)|Kodiak|Kodiak Island|island +(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear|bruin|Ursus arctos +kodiak bear|1 +(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear|bruin|Ursus arctos +kodiak island|1 +(noun)|Kodiak|Kodiak Island|island +koellia|1 +(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus +koestler|1 +(noun)|Koestler|Arthur Koestler|writer|author +kogia|1 +(noun)|Kogia|genus Kogia|mammal genus +kogia breviceps|1 +(noun)|pygmy sperm whale|Kogia breviceps|toothed whale +kogia simus|1 +(noun)|dwarf sperm whale|Kogia simus|toothed whale +kohl|1 +(noun)|makeup|make-up|war paint +kohleria|1 +(noun)|houseplant +kohlrabi|2 +(noun)|Brassica oleracea gongylodes|crucifer|cruciferous plant +(noun)|turnip cabbage|cruciferous vegetable +koine|2 +(noun)|Koine|Greek|Hellenic|Hellenic language +(noun)|lingua franca|interlanguage|language|linguistic communication +koinonia|1 +(noun)|family|fellowship +kok-saghyz|1 +(noun)|Russian dandelion|kok-sagyz|Taraxacum kok-saghyz|dandelion|blowball +kok-sagyz|1 +(noun)|Russian dandelion|kok-saghyz|Taraxacum kok-saghyz|dandelion|blowball +kokka|2 +(adj)|Kokka|sect|religious sect|religious order +(noun)|Kokka Shinto|Kokka|sect|religious sect|religious order +kokka shinto|1 +(noun)|Kokka Shinto|Kokka|sect|religious sect|religious order +kokoi venom|1 +(noun)|venom|neurotoxin|neurolysin +kol nidre|1 +(noun)|Kol Nidre|prayer +kola|2 +(noun)|kola nut|kola nut tree|goora nut|Cola acuminata|nut tree +(noun)|Daba|Kola|Musgoi|Biu-Mandara +kola nut|2 +(noun)|cola nut|nut +(noun)|kola|kola nut tree|goora nut|Cola acuminata|nut tree +kola nut tree|1 +(noun)|kola|kola nut|goora nut|Cola acuminata|nut tree +kola peninsula|1 +(noun)|Kola Peninsula|peninsula +kolam|1 +(noun)|Kolam|Dravidian +kolami|1 +(noun)|Kolami|Central Dravidian +kolkata|1 +(noun)|Kolkata|Calcutta|city|metropolis|urban center +kolkhoz|1 +(noun)|collective farm +kolkhoznik|1 +(noun)|member +kolkwitzia|1 +(noun)|Kolkwitzia|genus Kolkwitzia|asterid dicot genus +kolkwitzia amabilis|1 +(noun)|beauty bush|Kolkwitzia amabilis|shrub|bush +koln|1 +(noun)|Cologne|Koln|city|metropolis|urban center +kolonia|1 +(noun)|Kolonia|national capital +komi|2 +(noun)|Komi|Russian +(noun)|Komi|Zyrian|Permic +komodo dragon|1 +(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor|monitor lizard|varan +komodo lizard|1 +(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor|monitor lizard|varan +komondor|1 +(noun)|shepherd dog|sheepdog|sheep dog +kon tiki|1 +(noun)|balsa raft|Kon Tiki|raft +konakri|1 +(noun)|Conakry|Konakri|capital of Guinea|national capital|port +kongo|1 +(noun)|Kongo|Bantu|Bantoid language +konini|1 +(noun)|tree fuchsia|native fuchsia|Fuchsia excorticata|fuchsia +konoe|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +konoye|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +konrad adenauer|1 +(noun)|Adenauer|Konrad Adenauer|statesman|solon|national leader +konrad lorenz|1 +(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist|animal scientist +konrad von gesner|1 +(noun)|Gesner|Konrad von Gesner|naturalist|natural scientist +konrad zacharias lorenz|1 +(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist|animal scientist +konstantin sergeevich alekseev|1 +(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor|histrion|player|thespian|role player|director|theater director|theatre director +konstantin sergeyevich stanislavsky|1 +(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor|histrion|player|thespian|role player|director|theater director|theatre director +konstantin stanislavsky|1 +(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor|histrion|player|thespian|role player|director|theater director|theatre director +koodoo|1 +(noun)|kudu|koudou|antelope +kook|1 +(noun)|odd fellow|odd fish|queer bird|queer duck|odd man out|anomaly|unusual person +kookaburra|1 +(noun)|laughing jackass|Dacelo gigas|kingfisher +kookie|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +kooky|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +koopmans|1 +(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist|economic expert +kopeck|1 +(noun)|kopek|copeck|Russian monetary unit +kopek|1 +(noun)|kopeck|copeck|Russian monetary unit +kopiyka|1 +(noun)|Ukranian monetary unit +kopje|1 +(noun)|koppie|knoll|mound|hillock|hummock|hammock +koplik's spots|1 +(noun)|Koplik's spots|symptom +koppie|1 +(noun)|kopje|knoll|mound|hillock|hummock|hammock +kor|1 +(noun)|homer|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +koran|1 +(noun)|Koran|Quran|al-Qur'an|Book|sacred text|sacred writing|religious writing|religious text +koranic|1 +(adj)|Koranic|sacred text|sacred writing|religious writing|religious text +korbut|1 +(noun)|Korbut|Olga Korbut|gymnast +korchnoi|1 +(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master +korda|1 +(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker|filmmaker|film producer|movie maker +kordofan|1 +(noun)|Kordofan|district|territory|territorial dominion|dominion +kordofanian|1 +(noun)|Kordofanian|Niger-Kordofanian|Niger-Kordofanian language +kore|1 +(noun)|Persephone|Despoina|Kore|Cora|Greek deity +korea|1 +(noun)|Korea|Korean Peninsula|Choson|peninsula +korea bay|1 +(noun)|Korea Bay|bay +korea strait|1 +(noun)|Korean Strait|Korea Strait|strait|sound +korean|3 +(adj)|Korean|peninsula +(noun)|Korean|Asian|Asiatic +(noun)|Korean|Altaic|Altaic language +korean lawn grass|1 +(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia +korean lespedeza|1 +(noun)|Korean lespedeza|Lespedeza stipulacea|bush clover|lespedeza +korean peninsula|1 +(noun)|Korea|Korean Peninsula|Choson|peninsula +korean strait|1 +(noun)|Korean Strait|Korea Strait|strait|sound +korean velvet grass|1 +(noun)|mascarene grass|Korean velvet grass|Zoysia tenuifolia|zoysia +korean war|1 +(noun)|Korean War|war|warfare +korinthos|1 +(noun)|Corinth|Korinthos|city|metropolis|urban center|port +korsakoff's psychosis|1 +(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +korsakoff's syndrome|1 +(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +korsakov's psychosis|1 +(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +korsakov's syndrome|1 +(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia|dementedness +koruna|2 +(noun)|Slovakian monetary unit +(noun)|Czech monetary unit +korzybski|1 +(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist|semiotician +kos|2 +(noun)|coss|linear unit +(noun)|knockout|KO|blow +kosciusko|1 +(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot|nationalist|soldier +kosciuszko|1 +(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot|nationalist|soldier +kosher|3 +(adj)|cosher|clean +(adj)|proper +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +kosovo|1 +(noun)|Kosovo|state|province +kosteletzya|1 +(noun)|Kosteletzya|genus Kosteletzya|dilleniid dicot genus +kosteletzya virginica|1 +(noun)|salt marsh mallow|Kosteletzya virginica|seashore mallow +kota|2 +(noun)|Kota|Kotar|Dravidian +(noun)|Kota|Kotar|South Dravidian +kotar|2 +(noun)|Kota|Kotar|Dravidian +(noun)|Kota|Kotar|South Dravidian +kotex|1 +(noun)|sanitary napkin|Kotex|pad +koto|1 +(noun)|stringed instrument +koto player|1 +(noun)|musician|instrumentalist|player +kotoko|1 +(noun)|Kotoko|Biu-Mandara +kotow|2 +(noun)|kowtow|bow|bowing|obeisance +(verb)|fawn|toady|truckle|bootlick|kowtow|suck up|flatter|blandish +koudou|1 +(noun)|kudu|koodoo|antelope +koumiss|1 +(noun)|kumis|alcohol|alcoholic beverage|intoxicant|inebriant +koussevitzky|1 +(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor|music director|director +kovna|1 +(noun)|Kaunas|Kovna|Kovno|city|metropolis|urban center +kovno|1 +(noun)|Kaunas|Kovna|Kovno|city|metropolis|urban center +koweit|2 +(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital +(noun)|Kuwait|State of Kuwait|Koweit|Asian country|Asian nation +kowhai|1 +(noun)|Sophora tetraptera|tree +kowtow|3 +(noun)|kotow|bow|bowing|obeisance +(verb)|scrape|genuflect|bow +(verb)|fawn|toady|truckle|bootlick|kotow|suck up|flatter|blandish +kph|1 +(noun)|kilometers per hour|kilometres per hour|km/h|rate +kr|2 +(noun)|krypton|Kr|atomic number 36|chemical element|element|noble gas|inert gas|argonon +(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization|terrorist group|foreign terrorist organization|FTO +kraal|2 +(noun)|village|hamlet +(noun)|pen +krafft-ebing|1 +(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist|brain doctor +kraft|1 +(noun)|kraft paper|wrapping paper +kraft paper|1 +(noun)|kraft|wrapping paper +krait|1 +(noun)|elapid|elapid snake +krakatao|1 +(noun)|Krakatau|Krakatao|Krakatoa|volcano|island +krakatau|1 +(noun)|Krakatau|Krakatao|Krakatoa|volcano|island +krakatoa|1 +(noun)|Krakatau|Krakatao|Krakatoa|volcano|island +krakau|1 +(noun)|Cracow|Krakow|Krakau|city|metropolis|urban center +krakow|1 +(noun)|Cracow|Krakow|Krakau|city|metropolis|urban center +krasner|1 +(noun)|Krasner|Lee Krasner|painter +kraurosis|1 +(noun)|atrophy|wasting|wasting away +kraurosis vulvae|1 +(noun)|kraurosis +kraut|1 +(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German +krauthead|1 +(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German +krebs|1 +(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist +krebs citric acid cycle|1 +(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|tricarboxylic acid cycle|organic process|biological process +krebs cycle|1 +(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|tricarboxylic acid cycle|organic process|biological process +kreisler|1 +(noun)|Kreisler|Fritz Kreisler|violinist|fiddler +kremlin|2 +(noun)|Kremlin|bastion|citadel +(noun)|bastion|citadel +krigia|1 +(noun)|herb|herbaceous plant +krigia bulbosa|1 +(noun)|dwarf dandelion|Krigia dandelion|Krigia bulbosa|krigia +krigia dandelion|1 +(noun)|dwarf dandelion|Krigia dandelion|Krigia bulbosa|krigia +krill|1 +(noun)|malacostracan crustacean +kris|1 +(noun)|creese|crease|dagger|sticker +krishna|1 +(noun)|Krishna|avatar +krishnaism|1 +(noun)|Krishnaism|Hinduism|Hindooism +kriss kringle|1 +(noun)|Santa Claus|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint +kriti|1 +(noun)|Crete|Kriti|island +kroeber|1 +(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist +krona|2 +(noun)|Swedish krona|Swedish monetary unit +(noun)|Icelandic krona|Icelandic monetary unit +krone|2 +(noun)|Norwegian krone|Norwegian monetary unit +(noun)|Danish krone|Danish monetary unit +kronecker|1 +(noun)|Kronecker|Leopold Kronecker|mathematician +kronecker delta|1 +(noun)|Kronecker delta|function|mathematical function +kroon|1 +(noun)|Estonian monetary unit +kropotkin|1 +(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist|nihilist|syndicalist +kroto|1 +(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist +krubi|1 +(noun)|titan arum|Amorphophallus titanum|arum|aroid +kruger|1 +(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman|solon|national leader +krummhorn|1 +(noun)|crumhorn|cromorne|double-reed instrument|double reed +krung thep|1 +(noun)|Bangkok|capital of Thailand|Krung Thep|national capital|port +krupp|2 +(noun)|Krupp|Alfred Krupp|arms manufacturer +(noun)|Krupp|Friedrich Krupp|industrialist +krypterophaneron|1 +(noun)|Krypterophaneron|genus Krypterophaneron|fish genus +krypton|1 +(noun)|Kr|atomic number 36|chemical element|element|noble gas|inert gas|argonon +krzysztof kieslowski|1 +(noun)|Kieslowski|Krzysztof Kieslowski|film maker|filmmaker|film producer|movie maker +ks|1 +(noun)|Kansas|Sunflower State|KS|American state +kshatriya|1 +(noun)|Kshatriya|Hindu|Hindoo|Hindustani +ku|1 +(noun)|rutherfordium|Rf|kurchatovium|Ku|unnilquadium|Unq|element 104|atomic number 104|chemical element|element +ku-chiku|1 +(noun)|giant timber bamboo|madake|Phyllostachys bambusoides|bamboo +ku klux klan|1 +(noun)|Ku Klux Klan|Klan|KKK|secret society|terrorist organization|terrorist group|foreign terrorist organization|FTO +ku kluxer|1 +(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist +kuala lumpur|1 +(noun)|Kuala Lumpur|Malaysian capital|capital of Malaysia|national capital +kuan yin|1 +(noun)|Kwan-yin|Kuan Yin|Chinese deity +kuangchou|1 +(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city|metropolis|urban center|port +kubla khan|1 +(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|Emperor +kublai kaan|1 +(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|Emperor +kublai khan|1 +(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|Emperor +kubrick|1 +(noun)|Kubrick|Stanley Kubrick|film maker|filmmaker|film producer|movie maker +kuchean|1 +(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian +kuchean dialect|1 +(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian +kudos|1 +(noun)|praise|congratulations|approval|commendation +kudu|1 +(noun)|koodoo|koudou|antelope +kudu lily|1 +(noun)|impala lily|mock azalia|desert rose|Adenium obesum|Adenium multiflorum|shrub|bush +kudzu|1 +(noun)|kudzu vine|Pueraria lobata|vine +kudzu vine|1 +(noun)|kudzu|Pueraria lobata|vine +kuenlun|1 +(noun)|Kunlun|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +kuenlun mountains|1 +(noun)|Kunlun|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +kuhn|1 +(noun)|Kuhn|Richard Kuhn|chemist +kui|2 +(noun)|Kui|Dravidian +(noun)|Kui|South-Central Dravidian +kukenaam|1 +(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall|falls +kukenaam falls|1 +(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall|falls +kuki|1 +(noun)|Kuki|Chin|Kuki-Chin|Kamarupan +kuki-chin|1 +(noun)|Kuki|Chin|Kuki-Chin|Kamarupan +kulanapan|1 +(noun)|Kulanapan|Hokan|Hoka +kulun|1 +(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital +kumis|1 +(noun)|koumiss|alcohol|alcoholic beverage|intoxicant|inebriant +kummel|1 +(noun)|liqueur|cordial +kumquat|2 +(noun)|cumquat|kumquat tree|citrus|citrus tree +(noun)|citrus|citrus fruit|citrous fruit +kumquat tree|1 +(noun)|kumquat|cumquat|citrus|citrus tree +kund johan victor rasmussen|1 +(noun)|Rasmussen|Kund Johan Victor Rasmussen|explorer|adventurer|ethnologist +kundt's tube|1 +(noun)|Kundt's tube|measuring instrument|measuring system|measuring device +kung fu|1 +(noun)|Kung Fu|martial art +kung futzu|1 +(noun)|Confucius|Kung futzu|philosopher +kunlun|1 +(noun)|Kunlun|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +kunlun mountains|1 +(noun)|Kunlun|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +kunzite|1 +(noun)|spodumene|transparent gem +kuomintang|1 +(noun)|Kuomintang|Guomindang|party|political party +kupffer's cell|1 +(noun)|Kupffer's cell|cell +kura|1 +(noun)|Kura|Kura River|river +kura river|1 +(noun)|Kura|Kura River|river +kurakkan|1 +(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|Eleusine coracana|millet +kurchatovium|1 +(noun)|rutherfordium|Rf|Ku|unnilquadium|Unq|element 104|atomic number 104|chemical element|element +kurchee|1 +(noun)|ivory tree|conessi|kurchi|Holarrhena pubescens|Holarrhena antidysenterica|tree +kurchi|1 +(noun)|ivory tree|conessi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree +kurd|1 +(noun)|Kurd|Asian|Asiatic|ethnic group|ethnos +kurdish|2 +(adj)|Kurdish|geographical area|geographic area|geographical region|geographic region +(noun)|Kurdish|Iranian|Iranian language +kurdistan|2 +(noun)|Kurdistan|geographical area|geographic area|geographical region|geographic region +(noun)|Kurdistan|rug|carpet|carpeting +kurdistan labor pary|1 +(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization|terrorist group|foreign terrorist organization|FTO +kurdistan workers party|1 +(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization|terrorist group|foreign terrorist organization|FTO +kuri-chiku|1 +(noun)|black bamboo|Phyllostachys nigra|bamboo +kurosawa|1 +(noun)|Kurosawa|Akira Kurosawa|film maker|filmmaker|film producer|movie maker +kuroshio|1 +(noun)|Japan current|Kuroshio current|Kuroshio|ocean current +kuroshio current|1 +(noun)|Japan current|Kuroshio current|Kuroshio|ocean current +kurrajong|1 +(noun)|currajong|Brachychiton populneus|bottle-tree|bottle tree +kurrat|1 +(noun)|wild leek|Levant garlic|Allium ampeloprasum|alliaceous plant +kursk|1 +(noun)|Kursk|city|metropolis|urban center +kurt godel|1 +(noun)|Godel|Kurt Godel|mathematician +kurt vonnegut|1 +(noun)|Vonnegut|Kurt Vonnegut|writer|author +kurt waldheim|1 +(noun)|Waldheim|Kurt Waldheim|diplomat|diplomatist|statesman|solon|national leader +kurt weill|1 +(noun)|Weill|Kurt Weill|composer +kurta|1 +(noun)|shirt +kuru|2 +(noun)|nervous disorder|neurological disorder|neurological disease +(noun)|piaster|piastre|Turkish monetary unit +kurux|1 +(noun)|Kurux|North Dravidian +kusan|2 +(noun)|Kusan|Penutian +(noun)|Kusan|Penutian +kussmaul's coma|1 +(noun)|diabetic coma|Kussmaul's coma|coma|comatoseness +kutch|1 +(noun)|cutch|tannin|tannic acid +kutuzov|1 +(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal +kuvasz|1 +(noun)|watchdog|guard dog +kuvi|1 +(noun)|Kuvi|South-Central Dravidian +kuwait|2 +(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital +(noun)|Kuwait|State of Kuwait|Koweit|Asian country|Asian nation +kuwait city|1 +(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital +kuwaiti|3 +(adj)|Kuwaiti|Asian country|Asian nation +(adj)|Kuwaiti|national capital +(noun)|Kuwaiti|Asian|Asiatic +kuwaiti dinar|1 +(noun)|Kuwaiti dinar|dinar|Kuwaiti monetary unit +kuwaiti dirham|1 +(noun)|Kuwaiti dirham|dirham|Kuwaiti monetary unit +kuwaiti monetary unit|1 +(noun)|Kuwaiti monetary unit|monetary unit +kuznets|1 +(noun)|Kuznets|Simon Kuznets|economist|economic expert +kv|1 +(noun)|kilovolt|kV|potential unit +kvass|1 +(noun)|brew|brewage +kvetch|3 +(noun)|whiner|complainer|moaner|sniveller|crybaby|bellyacher|grumbler|squawker +(noun)|complaint +(verb)|complain|kick|plain|sound off|quetch +kw|1 +(noun)|kilowatt|kW|power unit +kw-hr|1 +(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit|heat unit|energy unit +kwa|1 +(noun)|Kwa|Niger-Congo +kwacha|2 +(noun)|Zambian kwacha|Zambian monetary unit +(noun)|Malawi kwacha|Malawian monetary unit +kwai|1 +(noun)|yuan|Chinese monetary unit +kwajalein|2 +(noun)|Kwajalein|atoll +(noun)|Kwajalein|amphibious assault|atoll +kwakiutl|2 +(noun)|Kwakiutl|Wakashan +(noun)|Kwakiutl|Wakashan|Wakashan language +kwan-yin|1 +(noun)|Kwan-yin|Kuan Yin|Chinese deity +kwangchow|1 +(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city|metropolis|urban center|port +kwangju|1 +(noun)|Kwangju|city|metropolis|urban center +kwangtung|1 +(noun)|Guangdong|Kwangtung|Guangdong province|state|province +kwannon|1 +(noun)|Kwannon|Japanese deity +kwanza|2 +(noun)|Angolan monetary unit +(noun)|Kwanzaa|Kwanza|festival|fete +kwanzaa|1 +(noun)|Kwanzaa|Kwanza|festival|fete +kwashiorkor|1 +(noun)|malnutrition +kweek|1 +(noun)|Bermuda grass|devil grass|Bahama grass|doob|scutch grass|star grass|Cynodon dactylon|grass +kwela|1 +(noun)|dance music|danceroom music|ballroom music +kwell|1 +(noun)|Kwell|lindane +ky|1 +(noun)|Kentucky|Bluegrass State|KY|American state +kyanite|1 +(noun)|cyanite|mineral +kyat|1 +(noun)|Myanmar monetary unit +kyd|1 +(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist|playwright +kylie|1 +(noun)|kiley|boomerang|throwing stick|throw stick +kylix|1 +(noun)|cylix|cup +kymograph|1 +(noun)|cymograph|scientific instrument +kyo-chiku|1 +(noun)|giant bamboo|Dendrocalamus giganteus|bamboo +kyoto|1 +(noun)|Kyoto|city|metropolis|urban center +kyphosidae|1 +(noun)|Kyphosidae|family Kyphosidae|fish family +kyphosis|1 +(noun)|humpback|hunchback|spinal curvature +kyphosus|1 +(noun)|Kyphosus|genus Kyphosus|fish genus +kyphosus sectatrix|1 +(noun)|Bermuda chub|rudderfish|Kyphosus sectatrix|sea chub +kyphotic|1 +(adj)|crookback|crookbacked|humped|humpbacked|hunchback|hunchbacked|gibbous|unfit +kyrgyz republic|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kyrgyzstan|1 +(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country|Asian nation +kyrgyzstani|1 +(adj)|Kyrgyzstani|Asian country|Asian nation +kyrgyzstani monetary unit|1 +(noun)|Kyrgyzstani monetary unit|monetary unit +kyushu|1 +(noun)|Kyushu|island +kyyiv|1 +(noun)|Kyyiv|Kiev|capital of the Ukraine|capital +l|5 +(adj)|fifty|50|cardinal +(noun)|liter|litre|cubic decimeter|cubic decimetre|metric capacity unit +(noun)|fifty|50|L|large integer +(noun)|lambert|L|illumination unit +(noun)|L|letter|letter of the alphabet|alphabetic character +l'aquila|1 +(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city|metropolis|urban center +l'enfant|1 +(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect|designer +l-dopa|1 +(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa|dihydroxyphenylalanine +l-p|2 +(noun)|LP|L-P|phonograph record|phonograph recording|record|disk|disc|platter +(noun)| +l-plate|1 +(noun)|L-plate|plate +l-shaped|1 +(adj)|L-shaped|formed +l. m. montgomery|1 +(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer|author +l. monocytogenes|1 +(noun)|Listeria monocytogenes|L. monocytogenes|listeria +l. ron hubbard|1 +(noun)|Hubbard|L. Ron Hubbard|writer|author +l. s. lowry|1 +(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter +la|3 +(noun)|lanthanum|La|atomic number 57|metallic element|metal +(noun)|Louisiana|Pelican State|LA|American state +(noun)|lah|solfa syllable +la-di-da|1 +(adj)|grandiose|hifalutin|highfalutin|highfaluting|hoity-toity|pretentious +la crosse|2 +(noun)|La Crosse|town +(noun)|lacrosse|field game +la fayette|3 +(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier +(noun)|Lafayette|town +(noun)|Lafayette|town +la fontaine|1 +(noun)|La Fontaine|Jean de La Fontaine|writer|author +la paz|1 +(noun)|La Paz|seat +la plata|1 +(noun)|Rio de la Plata|La Plata|Plata River|estuary +la rochefoucauld|1 +(noun)|La Rochefoucauld|Francois de La Rochefoucauld|writer|author +la spezia|1 +(noun)|La Spezia|city|metropolis|urban center|port +la tour|1 +(noun)|La Tour|Georges de La Tour|old master +laager|1 +(noun)|lager|camp|encampment|cantonment|bivouac +lab|1 +(noun)|laboratory|research lab|research laboratory|science lab|science laboratory|workplace|work +lab bench|1 +(noun)|laboratory bench|workbench|work bench|bench +lab coat|1 +(noun)|laboratory coat|coat +laban|1 +(noun)|Laban|Rudolph Laban|choreographer +labanotation|1 +(noun)|Labanotation|choreography +labdanum|2 +(noun)|gum labdanum|oleoresin +(noun)|ladanum|oleoresin +label|9 +(noun)|description +(noun)|recording label|trade name|brand name|brand|marque +(noun)|radioisotope +(noun)|marker|marking|mark +(verb)|designate|denominate +(verb)|tag|mark|attach +(verb)|pronounce|judge|declare|adjudge|hold +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +labeled|1 +(adj)|labeled |labelled|tagged +labelled|1 +(adj)|labeled |tagged +labetalol|1 +(noun)|labetalol hydrochloride|Trandate|Normodyne|blocker|blocking agent|antihypertensive|antihypertensive drug +labetalol hydrochloride|1 +(noun)|labetalol|Trandate|Normodyne|blocker|blocking agent|antihypertensive|antihypertensive drug +labia majora|1 +(noun)|labium +labia minora|1 +(noun)|labium +labial|3 +(adj)|external body part|articulator +(adj)|lip +(noun)|labial consonant|consonant +labial artery|1 +(noun)|arteria labialis|artery|arteria|arterial blood vessel +labial consonant|1 +(noun)|labial|consonant +labial pipe|1 +(noun)|flue pipe|flue|organ pipe|pipe|pipework +labial stop|1 +(noun)|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive|labial consonant|labial +labial vein|2 +(noun)|vena labialis|vein|vena|venous blood vessel +(noun)|vena labialis|vein|vena|venous blood vessel +labialise|1 +(verb)|round|labialize|pronounce|articulate|enounce|sound out|enunciate|say +labialize|1 +(verb)|round|labialise|pronounce|articulate|enounce|sound out|enunciate|say +labiatae|1 +(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family +labiate|1 +(adj)|liplike|lipped +labile|2 +(adj)|adaptable +(adj)|unstable +labium|1 +(noun)|lip +lablab|1 +(noun)|Lablab|genus Lablab|rosid dicot genus +lablab purpureus|1 +(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine +lablink|1 +(noun)|Department of Defense Laboratory System|LABLINK|agency|federal agency|government agency|bureau|office|authority +labor|10 +(noun)|labour|toil|work +(noun)|labour|working class|proletariat|class|social class|socio-economic class +(noun)|parturiency|labour|confinement|lying-in|travail|childbed|parturition|birth|giving birth|birthing +(noun)|labor movement|trade union movement|reform movement +(noun)|Labour Party|Labour|Labor Party|Labor|party|political party +(noun)|Department of Labor|Labor Department|Labor|DoL|executive department +(noun)|undertaking|project|task|work +(verb)|tug|labour|push|drive|fight|struggle +(verb)|labour|toil|fag|travail|grind|drudge|dig|moil|work|do work +(verb)|labour|experience|receive|have|get|undergo +labor-intensive|1 +(adj)|labour-intensive|effortful +labor agreement|1 +(noun)|labor contract|collective agreement|contract +labor coach|1 +(noun)|monitrice|assistant|helper|help|supporter +labor contract|1 +(noun)|labor agreement|collective agreement|contract +labor day|1 +(noun)|Labor Day|legal holiday|national holiday +labor department|1 +(noun)|Department of Labor|Labor Department|Labor|DoL|executive department +labor force|1 +(noun)|labor pool|labor|labour|working class|proletariat +labor leader|1 +(noun)|leader +labor market|1 +(noun)|market|marketplace +labor movement|1 +(noun)|trade union movement|labor|reform movement +labor of love|1 +(noun)|labour of love|undertaking|project|task|labor +labor organizer|1 +(noun)|organizer|organiser|union representative +labor pain|1 +(noun)|pain|hurting +labor pains|2 +(noun)|birth pangs|labour pains|pang +(noun)|labor pain|pain|hurting +labor party|1 +(noun)|Labour Party|Labour|Labor Party|Labor|party|political party +labor pool|1 +(noun)|labor force|labor|labour|working class|proletariat +labor resources|1 +(noun)|resource +labor secretary|2 +(noun)|Secretary of Labor|Labor Secretary|secretary +(noun)|Secretary of Labor|Labor Secretary|secretaryship +labor union|1 +(noun)|union|trade union|trades union|brotherhood|organization|organisation +laboratory|2 +(noun)|lab|research lab|research laboratory|science lab|science laboratory|workplace|work +(noun)|testing ground|region +laboratory bench|1 +(noun)|lab bench|workbench|work bench|bench +laboratory coat|1 +(noun)|lab coat|coat +labored|2 +(adj)|laboured|strained|awkward +(adj)|heavy|laboured|effortful +laborer|1 +(noun)|manual laborer|labourer|jack|workman|working man|working person +laboring|1 +(adj)|drudging|labouring|toiling|busy +laborious|1 +(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|punishing|toilsome|effortful +laboriousness|1 +(noun)|operoseness|toilsomeness|effortfulness +laborsaving|1 +(adj)|laboursaving|helpful +labour|7 +(noun)|labor|working class|proletariat|class|social class|socio-economic class +(noun)|parturiency|labor|confinement|lying-in|travail|childbed|parturition|birth|giving birth|birthing +(noun)|Labour Party|Labour|Labor Party|Labor|party|political party +(noun)|labor|toil|work +(verb)|labor|toil|fag|travail|grind|drudge|dig|moil|work|do work +(verb)|tug|labor|push|drive|fight|struggle +(verb)|labor|experience|receive|have|get|undergo +labour-intensive|1 +(adj)|labor-intensive|effortful +labour of love|1 +(noun)|labor of love|undertaking|project|task|labor +labour pains|1 +(noun)|birth pangs|labor pains|pang +labour party|1 +(noun)|Labour Party|Labour|Labor Party|Labor|party|political party +laboured|2 +(adj)|labored|strained|awkward +(adj)|heavy|labored|effortful +labourer|1 +(noun)|laborer|manual laborer|jack|workman|working man|working person +labouring|1 +(adj)|drudging|laboring|toiling|busy +labourite|1 +(noun)|Labourite|politician|politico|pol|political leader +laboursaving|1 +(adj)|laborsaving|helpful +labrador|1 +(noun)|Labrador|geographical area|geographic area|geographical region|geographic region +labrador-ungava peninsula|1 +(noun)|Labrador-Ungava Peninsula|Labrador Peninsula|peninsula +labrador peninsula|1 +(noun)|Labrador-Ungava Peninsula|Labrador Peninsula|peninsula +labrador retriever|1 +(noun)|Labrador retriever|retriever +labrador sea|1 +(noun)|Labrador Sea|sea +labrador tea|1 +(noun)|Labrador tea|crystal tea|Ledum groenlandicum|shrub|bush +labridae|1 +(noun)|Labridae|family Labridae|fish family +labrocyte|1 +(noun)|mast cell|mastocyte|somatic cell|vegetative cell +labrouste|1 +(noun)|Labrouste|Henri Labrouste|architect|designer +laburnum|1 +(noun)|Laburnum|genus Laburnum|rosid dicot genus +laburnum alpinum|1 +(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub +laburnum anagyroides|1 +(noun)|common laburnum|golden chain|golden rain|Laburnum anagyroides|flowering shrub +labyrinth|2 +(noun)|maze|system +(noun)|inner ear|internal ear|sense organ|sensory receptor|receptor +labyrinth of minos|1 +(noun)|Labyrinth of Minos|maze|labyrinth +labyrinthian|1 +(adj)|labyrinthine|mazy|complex +labyrinthine|3 +(adj)|sense organ|sensory receptor|receptor +(adj)|labyrinthian|mazy|complex +(adj)|Byzantine|convoluted|intricate|involved|knotty|tangled|tortuous|complex +labyrinthine artery|1 +(noun)|artery of the labyrinth|internal auditory artery|artery|arteria|arterial blood vessel +labyrinthine vein|1 +(noun)|internal auditory vein|vein|vena|venous blood vessel +labyrinthitis|1 +(noun)|otitis interna|otitis +labyrinthodont|1 +(noun)|amphibian +labyrinthodonta|1 +(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order +labyrinthodontia|1 +(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order +lac|1 +(noun)|animal product +lac dye|1 +(noun)|dye|dyestuff +lac wax|1 +(noun)|shellac wax|wax +laccopetalum|1 +(noun)|Laccopetalum|genus Laccopetalum|magnoliid dicot genus +laccopetalum giganteum|1 +(noun)|giant buttercup|Laccopetalum giganteum|herb|herbaceous plant +lace|7 +(noun)|lacing|cord +(noun)|fabric|cloth|material|textile +(verb)|intertwine|twine|entwine|enlace|interlace|twist|twine|distort +(verb)|braid|plait|weave|tissue +(verb)|weave|tissue +(verb)|lace up|tie|bind +(verb)|spike|fortify|change|alter|modify +lace-flower vine|1 +(noun)|Alsobia dianthiflora|Episcia dianthiflora|flower +lace bug|1 +(noun)|leaf bug|plant bug +lace fern|1 +(noun)|Cheilanthes gracillima|fern +lace into|1 +(verb)|lam into|tear into|pitch into|lay into|hit +lace making|1 +(noun)|tatting|handicraft +lace up|1 +(verb)|lace|tie|bind +lacebark|1 +(noun)|ribbonwood|houhere|Hoheria populnea|tree +laced|4 +(adj)|laced |tied +(adj)|patterned +(adj)|spiked|alcoholic +(adj)|adorned |decorated +lacelike|1 +(adj)|lacy|fancy +lacepod|1 +(noun)|fringepod|herb|herbaceous plant +lacer|1 +(noun)|workman|working man|working person +lacerate|4 +(adj)|rough +(adj)|lacerated|mangled|torn|injured +(verb)|tear|rupture|snap|bust +(verb)|hurt|wound|injure|bruise|offend|spite +lacerated|1 +(adj)|lacerate|mangled|torn|injured +laceration|2 +(noun)|wound|lesion +(noun)|tear +lacerta|1 +(noun)|Lacerta|genus Lacerta|reptile genus +lacerta agilis|1 +(noun)|sand lizard|Lacerta agilis|lacertid lizard|lacertid +lacerta viridis|1 +(noun)|green lizard|Lacerta viridis|lacertid lizard|lacertid +lacertid|1 +(noun)|lacertid lizard|lizard +lacertid lizard|1 +(noun)|lacertid|lizard +lacertidae|1 +(noun)|Lacertidae|family Lacertidae|reptile family +lacertilia|1 +(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order +lacertilian|1 +(adj)|saurian|saurian +lacewing|1 +(noun)|lacewing fly|neuropteron|neuropteran|neuropterous insect +lacewing fly|1 +(noun)|lacewing|neuropteron|neuropteran|neuropterous insect +lacewood|1 +(noun)|sycamore|wood +lacework|1 +(noun)|work|piece of work +lachaise|1 +(noun)|Lachaise|Gaston Lachaise|sculptor|sculpturer|carver|statue maker +lachesis|1 +(noun)|Lachesis|Greek deity +lachnolaimus|1 +(noun)|Lachnolaimus|genus Lachnolaimus|fish genus +lachnolaimus maximus|1 +(noun)|hogfish|hog snapper|Lachnolaimus maximus|wrasse +lachrymal|2 +(adj)|lacrimal|drop|driblet +(adj)|lacrimal|exocrine gland|duct gland +lachrymal duct|1 +(noun)|lacrimal duct|tear duct|duct|epithelial duct|canal|channel +lachrymal gland|1 +(noun)|lacrimal gland|tear gland|exocrine gland|duct gland +lachrymal secretion|1 +(noun)|lacrimal secretion|secretion +lachrymation|1 +(noun)|lacrimation|tearing|watering|bodily process|body process|bodily function|activity +lachrymator|1 +(noun)|tear gas|teargas|lacrimator|gas|chemical weapon +lachrymatory|1 +(adj)|lacrimatory|drop|driblet +lachrymose|1 +(adj)|dolorous|dolourous|tearful|weeping|sorrowful +lacing|3 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +(noun)|lace|cord +(noun)|beating|thrashing|licking|drubbing|trouncing|whacking|corporal punishment +laciniate|1 +(adj)|fringed|rough +lack|2 +(noun)|deficiency|want|need|demand +(verb)|miss +lackadaisical|2 +(adj)|dreamy|languid|languorous|lethargic |unergetic +(adj)|idle +lackey|2 +(noun)|flunky|flunkey|servant|retainer +(noun)|sycophant|toady|crawler|flatterer|adulator +lacking|2 +(adj)|missing|nonexistent|wanting|absent +(adj)|deficient|wanting|inadequate +lackluster|2 +(adj)|lacklustre|lusterless|lustreless|dull +(adj)|lacklustre|lusterless|lustreless|dull +lacklustre|2 +(adj)|lackluster|lusterless|lustreless|dull +(adj)|lackluster|lusterless|lustreless|dull +laconia|1 +(noun)|Laconia|geographical area|geographic area|geographical region|geographic region +laconian|1 +(noun)|Laconian|Greek|Hellene +laconic|1 +(adj)|crisp|curt|terse|concise +laconically|1 +(adv)|dryly +laconicism|1 +(noun)|laconism|terseness +laconism|1 +(noun)|laconicism|terseness +lacquer|3 +(noun)|gum +(noun)|coating|coat +(verb)|decorate|adorn|grace|ornament|embellish|beautify +lacquer tree|1 +(noun)|varnish tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +lacquerware|1 +(noun)|work|piece of work +lacrimal|2 +(adj)|lachrymal|drop|driblet +(adj)|lachrymal|exocrine gland|duct gland +lacrimal apparatus|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +lacrimal artery|1 +(noun)|arteria lacrimalis|artery|arteria|arterial blood vessel +lacrimal bone|1 +(noun)|bone|os +lacrimal duct|1 +(noun)|lachrymal duct|tear duct|duct|epithelial duct|canal|channel +lacrimal gland|1 +(noun)|lachrymal gland|tear gland|exocrine gland|duct gland +lacrimal sac|1 +(noun)|tear sac|dacryocyst|vesicle|cyst +lacrimal secretion|1 +(noun)|lachrymal secretion|secretion +lacrimal vein|1 +(noun)|vena lacrimalis|vein|vena|venous blood vessel +lacrimation|1 +(noun)|lachrymation|tearing|watering|bodily process|body process|bodily function|activity +lacrimator|1 +(noun)|tear gas|teargas|lachrymator|gas|chemical weapon +lacrimatory|1 +(adj)|lachrymatory|drop|driblet +lacrosse|1 +(noun)|field game +lacrosse ball|1 +(noun)|ball +lacrosse player|1 +(noun)|athlete|jock|player|participant +lactaid|1 +(noun)|lactase|Lactaid|disaccharidase +lactalbumin|1 +(noun)|albumin|albumen +lactarius|1 +(noun)|Lactarius|genus Lactarius|fungus genus +lactarius delicioso|1 +(noun)|milkcap|Lactarius delicioso|agaric +lactase|1 +(noun)|Lactaid|disaccharidase +lactase deficiency|1 +(noun)|lactose intolerance|milk intolerance|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +lactate|1 +(verb)|breastfeed|bottle-feed|suckle|suck|nurse|wet-nurse|give suck|feed|give +lactating|1 +(adj)|wet |fresh +lactation|3 +(noun)|time period|period of time|period +(noun)|bodily process|body process|bodily function|activity +(noun)|suckling|feeding|alimentation +lacteal|2 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|lymph vessel|lymphatic vessel +lactic|1 +(adj)|dairy product|beverage|drink|drinkable|potable +lactic acid|1 +(noun)|carboxylic acid +lactiferous duct|1 +(noun)|duct|epithelial duct|canal|channel +lactifuge|1 +(noun)|agent +lactobacillaceae|1 +(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family +lactobacillus|1 +(noun)|eubacteria|eubacterium|true bacteria +lactobacteriaceae|1 +(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family +lactoflavin|1 +(noun)|vitamin B2|vitamin G|riboflavin|ovoflavin|hepatoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +lactogen|1 +(noun)|agent +lactogenic|1 +(adj)|agent +lactogenic hormone|1 +(noun)|prolactin|luteotropin|lactogen|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +lactophrys|1 +(noun)|Lactophrys|genus Lactophrys|fish genus +lactophrys quadricornis|1 +(noun)|cowfish|Lactophrys quadricornis|boxfish|trunkfish +lactose|1 +(noun)|milk sugar|disaccharide +lactose intolerance|1 +(noun)|lactase deficiency|milk intolerance|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +lactosuria|1 +(noun)|condition|status +lactuca|1 +(noun)|Lactuca|genus Lactuca|asterid dicot genus +lactuca sativa|1 +(noun)|garden lettuce|common lettuce|Lactuca sativa|lettuce +lactuca sativa asparagina|1 +(noun)|celtuce|stem lettuce|Lactuca sativa asparagina|lettuce +lactuca sativa capitata|1 +(noun)|head lettuce|Lactuca sativa capitata|lettuce +lactuca sativa crispa|1 +(noun)|leaf lettuce|Lactuca sativa crispa|lettuce +lactuca sativa longifolia|1 +(noun)|cos lettuce|romaine lettuce|Lactuca sativa longifolia|lettuce +lactuca scariola|1 +(noun)|prickly lettuce|horse thistle|Lactuca serriola|Lactuca scariola|compass plant|compass flower +lactuca serriola|1 +(noun)|prickly lettuce|horse thistle|Lactuca serriola|Lactuca scariola|compass plant|compass flower +lacuna|2 +(noun)|blank|gap|crack +(noun)|coffer|caisson|panel +lacustrine|1 +(adj)|body of water|water +lacy|2 +(adj)|lacelike|fancy +(adj)|netlike|netted|webbed|weblike|webby|reticulate |reticulated|reticular +lad|2 +(noun)|chap|fellow|feller|gent|fella|blighter|cuss|male|male person +(noun)|cub|laddie|sonny|sonny boy|male child|boy +lad's love|1 +(noun)|common wormwood|absinthe|old man|Artemisia absinthium|wormwood +ladanum|1 +(noun)|labdanum|oleoresin +ladder|4 +(noun)|stairway|staircase|stairs|steps +(noun)|degree|level|stage|point +(noun)|run|ravel|damage|harm|impairment +(verb)|run|break|separate|split up|fall apart|come apart +ladder-back|2 +(noun)|ladder-back chair|chair +(noun)|back|backrest +ladder-back chair|1 +(noun)|ladder-back|chair +ladder-proof|1 +(adj)|runproof|run-resistant|impervious |imperviable +ladder truck|1 +(noun)|aerial ladder truck|fire engine|fire truck +laddie|1 +(noun)|cub|lad|sonny|sonny boy|male child|boy +lade|2 +(verb)|ladle|laden|remove|take|take away|withdraw +(verb)|load|laden|load up|fill|fill up|make full +laden|6 +(adj)|loaded|ladened|full +(adj)|oppressed|burdened +(verb)|ladle|lade|remove|take|take away|withdraw +(verb)|load|lade|load up|fill|fill up|make full +(verb)|ladle|lade|remove|take|take away|withdraw +(verb)|load|lade|load up|fill|fill up|make full +ladened|1 +(adj)|laden|loaded|full +ladies'-eardrop|1 +(noun)|lady's-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia +ladies'-eardrops|2 +(noun)|lady's-eardrop|ladies'-eardrop|lady's-eardrops|Fuchsia coccinea|fuchsia +(noun)|lady's-eardrop|ladies'-eardrop|lady's-eardrops|Fuchsia coccinea|fuchsia +ladies' man|1 +(noun)|seducer|lady killer|libertine|debauchee|rounder +ladies' room|1 +(noun)|powder room|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room +ladies' slipper|1 +(noun)|lady's slipper|lady-slipper|slipper orchid|orchid|orchidaceous plant +ladies' tobacco|1 +(noun)|lady's tobacco|Antennaria plantaginifolia|herb|herbaceous plant +ladies' tresses|1 +(noun)|lady's tresses|orchid|orchidaceous plant +ladin|1 +(noun)|Ladin|Rhaeto-Romance|Rhaeto-Romanic +lading|1 +(noun)|cargo|freight|load|loading|payload|shipment|consignment|merchandise|wares|product +ladino|2 +(noun)|mestizo|person|individual|someone|somebody|mortal|human|soul +(noun)|Judeo-Spanish|Ladino|Spanish +ladle|3 +(noun)|vessel +(verb)|put|set|place|pose|position|lay +(verb)|lade|laden|remove|take|take away|withdraw +ladoga|1 +(noun)|Lake Ladoga|Ladoga|lake +ladrone islands|1 +(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago +lady|3 +(noun)|woman|adult female +(noun)|dame|madam|ma'am|gentlewoman|woman|adult female +(noun)|Lady|noblewoman|peeress|female aristocrat +lady's-eardrop|1 +(noun)|ladies'-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia +lady's-eardrops|2 +(noun)|lady's-eardrop|ladies'-eardrop|ladies'-eardrops|Fuchsia coccinea|fuchsia +(noun)|lady's-eardrop|ladies'-eardrop|ladies'-eardrops|Fuchsia coccinea|fuchsia +lady's-finger|1 +(noun)|okra|gumbo|okra plant|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +lady's earrings|1 +(noun)|jewelweed|orange balsam|celandine|touch-me-not|Impatiens capensis|herb|herbaceous plant +lady's laces|1 +(noun)|reed canary grass|gardener's garters|ribbon grass|Phalaris arundinacea|grass +lady's leek|1 +(noun)|nodding onion|nodding wild onion|Allium cernuum|wild onion +lady's maid|1 +(noun)|maid|maidservant|housemaid|amah +lady's slipper|1 +(noun)|lady-slipper|ladies' slipper|slipper orchid|orchid|orchidaceous plant +lady's smock|1 +(noun)|cuckooflower|cuckoo flower|meadow cress|Cardamine pratensis|bittercress|bitter cress +lady's thistle|1 +(noun)|milk thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb|herbaceous plant +lady's tobacco|1 +(noun)|ladies' tobacco|Antennaria plantaginifolia|herb|herbaceous plant +lady's tresses|1 +(noun)|ladies' tresses|orchid|orchidaceous plant +lady-in-waiting|1 +(noun)|Lady-in-waiting|Lady|noblewoman|peeress +lady-of-the-night|1 +(noun)|Brunfelsia americana|shrub|bush +lady-slipper|1 +(noun)|lady's slipper|ladies' slipper|slipper orchid|orchid|orchidaceous plant +lady beetle|2 +(noun)|ladybug|ladybeetle|ladybird|ladybird beetle|beetle +(noun)| +lady chapel|1 +(noun)|chapel +lady crab|1 +(noun)|American lady crab|calico crab|Ovalipes ocellatus|swimming crab +lady day|1 +(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day +lady diana frances spencer|1 +(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat +lady emma hamilton|1 +(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady|noblewoman|peeress +lady fern|1 +(noun)|Athyrium filix-femina|fern +lady friend|1 +(noun)|girlfriend|girl|woman|adult female|lover +lady godiva|1 +(noun)|Godiva|Lady Godiva|Lady|noblewoman|peeress +lady jane grey|1 +(noun)|Grey|Lady Jane Grey|Queen of England +lady killer|1 +(noun)|seducer|ladies' man|libertine|debauchee|rounder +lady of pleasure|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|woman of the street|woman|adult female +lady of the house|1 +(noun)|housewife|homemaker|woman of the house|wife|married woman +lady palm|1 +(noun)|palm|palm tree +lady peel|1 +(noun)|Lillie|Beatrice Lillie|Lady Peel|actress +lady tulip|1 +(noun)|candlestick tulip|Tulipa clusiana|tulip +ladybeetle|1 +(noun)|ladybug|lady beetle|ladybird|ladybird beetle|beetle +ladybird|1 +(noun)|ladybug|ladybeetle|lady beetle|ladybird beetle|beetle +ladybird beetle|1 +(noun)|ladybug|ladybeetle|lady beetle|ladybird|beetle +ladybug|1 +(noun)|ladybeetle|lady beetle|ladybird|ladybird beetle|beetle +ladyfinger|1 +(noun)|cookie|cooky|biscuit +ladyfish|1 +(noun)|tenpounder|Elops saurus|tarpon|Tarpon atlanticus +ladylike|1 +(adj)|refined +ladylikeness|1 +(noun)|femininity|muliebrity +ladylove|1 +(noun)|sweetheart|sweetie|steady|truelove +ladyship|1 +(noun)|Ladyship|title +laelia|1 +(noun)|orchid|orchidaceous plant +laertes|1 +(noun)|Laertes|mythical being +laetrile|1 +(noun)|amygdalin +laevulose|1 +(noun)|fructose|fruit sugar|levulose|ketohexose +lafayette|3 +(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier +(noun)|Lafayette|town +(noun)|Lafayette|town +laffer|1 +(noun)|Laffer|Arthur Laffer|economist|economic expert +laffer curve|1 +(noun)|Laffer curve|graph|graphical record +laffite|1 +(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate|buccaneer|sea robber|sea rover +lafitte|1 +(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate|buccaneer|sea robber|sea rover +lafora's disease|1 +(noun)|myoclonus epilepsy|Lafora's disease|epilepsy +lag|7 +(noun)|slowdown|retardation|delay|holdup +(noun)|interim|time interval|interval +(noun)|stave|slat|spline +(verb)|dawdle|fall back|fall behind|follow +(verb)|imprison|incarcerate|immure|put behind bars|jail|jug|gaol|put away|remand|confine|detain +(verb)|flip|toss|sky|pitch +(verb)|cover +lag b'omer|1 +(noun)|Lag b'Omer|Jewish holy day +lag bolt|1 +(noun)|lag screw|woodscrew +lag screw|1 +(noun)|lag bolt|woodscrew +lagan|1 +(noun)|lagend|ligan|wreckage +lagarostrobus|1 +(noun)|Lagarostrobus|genus Lagarostrobus|gymnosperm genus +lagarostrobus colensoi|1 +(noun)|westland pine|silver pine|Lagarostrobus colensoi|conifer|coniferous tree +lagarostrobus franklinii|1 +(noun)|huon pine|Lagarostrobus franklinii|Dacrydium franklinii|conifer|coniferous tree +lagenaria|1 +(noun)|Lagenaria|genus Lagenaria|dicot genus|magnoliopsid genus +lagenaria siceraria|1 +(noun)|bottle gourd|calabash|Lagenaria siceraria|gourd|gourd vine +lagend|1 +(noun)|lagan|ligan|wreckage +lagenophera|1 +(noun)|Lagenophera|genus Lagenophera|asterid dicot genus +lager|2 +(noun)|laager|camp|encampment|cantonment|bivouac +(noun)|lager beer|beer +lager beer|1 +(noun)|lager|beer +lagerstroemia|1 +(noun)|Lagerstroemia|genus Lagerstroemia|plant genus +lagerstroemia indica|1 +(noun)|crape myrtle|crepe myrtle|crepe flower|Lagerstroemia indica|shrub|bush +lagerstroemia speciosa|1 +(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree|flowering tree +laggard|3 +(adj)|dilatory|unpunctual +(adj)|dilatory|poky|pokey|slow +(noun)|dawdler|drone|lagger|trailer|idler|loafer|do-nothing|layabout|bum +lagger|1 +(noun)|dawdler|drone|laggard|trailer|idler|loafer|do-nothing|layabout|bum +lagging|1 +(noun)|insulating material|insulant|insulation +lagidium|1 +(noun)|Lagidium|genus Lagidium|mammal genus +lagniappe|1 +(noun)|gift +lagodon|1 +(noun)|Lagodon|genus Lagodon|fish genus +lagodon rhomboides|1 +(noun)|pinfish|sailor's-choice|squirrelfish|Lagodon rhomboides|sparid|sparid fish +lagomorph|1 +(noun)|gnawing mammal|placental|placental mammal|eutherian|eutherian mammal +lagomorpha|1 +(noun)|Lagomorpha|order Lagomorpha|animal order +lagoon|1 +(noun)|laguna|lagune|lake +lagophthalmos|1 +(noun)|abnormality|abnormalcy|abnormal condition +lagopus|1 +(noun)|Lagopus|genus Lagopus|bird genus +lagopus scoticus|1 +(noun)|red grouse|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan +lagorchestes|1 +(noun)|Lagorchestes|genus Lagorchestes|mammal genus +lagos|1 +(noun)|Lagos|city|metropolis|urban center|port +lagostomus|1 +(noun)|Lagostomus|genus Lagostomus|mammal genus +lagostomus maximus|1 +(noun)|viscacha|chinchillon|Lagostomus maximus|rodent|gnawer|gnawing animal +lagothrix|1 +(noun)|Lagothrix|genus Lagothrix|mammal genus +laguna|1 +(noun)|lagoon|lagune|lake +laguncularia|1 +(noun)|Laguncularia|genus Laguncularia|plant genus +laguncularia racemosa|1 +(noun)|white mangrove|Laguncularia racemosa|tree +lagune|1 +(noun)|lagoon|laguna|lake +lah|1 +(noun)|la|solfa syllable +lahar|1 +(noun)|avalanche +lahore|1 +(noun)|Lahore|city|metropolis|urban center +lahu|1 +(noun)|Lahu|Loloish +laic|1 +(adj)|lay|secular|profane +laicise|1 +(verb)|laicize|change|alter|modify +laicize|1 +(verb)|laicise|change|alter|modify +laid|1 +(adj)|set|arranged |ordered +laid-back|1 +(adj)|easygoing|mellow|relaxed |at ease +laid-off|1 +(adj)|discharged|dismissed|fired|pink-slipped|unemployed +laid low|1 +(adj)|stricken|ill |sick +laid paper|1 +(noun)|writing paper +laid up|1 +(adj)|ill |sick +lair|1 +(noun)|den|habitation +laird|1 +(noun)|landowner|landholder|property owner +laissez-faire|1 +(adj)|individualistic|capitalistic |capitalist +laissez-faire economy|1 +(noun)|market economy|free enterprise|economy|economic system +laissez faire|1 +(noun)|individualism|doctrine|philosophy|philosophical system|school of thought|ism +laissez passer|1 +(noun)|pass|permission +laity|1 +(noun)|temporalty|multitude|masses|mass|hoi polloi|people +laius|1 +(noun)|Laius|mythical being +lake|3 +(noun)|body of water|water +(noun)|pigment +(noun)|pigment +lake aral|1 +(noun)|Lake Aral|Aral Sea|lake +lake balaton|1 +(noun)|Balaton|Lake Balaton|Plattensee|lake +lake bed|1 +(noun)|lake bottom|bed|bottom +lake bottom|1 +(noun)|lake bed|bed|bottom +lake cayuga|1 +(noun)|Cayuga Lake|Lake Cayuga|lake +lake chad|1 +(noun)|Lake Chad|Chad|lake +lake champlain|1 +(noun)|Lake Champlain|Champlain|lake +lake chelan|1 +(noun)|Lake Chelan|lake +lake clark national park|1 +(noun)|Lake Clark National Park|national park +lake district|1 +(noun)|Lake District|Lakeland|district|territory|territorial dominion|dominion +lake duck|1 +(noun)|lesser scaup|lesser scaup duck|Aythya affinis|scaup|scaup duck|bluebill|broadbill +lake dwelling|1 +(noun)|pile dwelling|dwelling|home|domicile|abode|habitation|dwelling house +lake erie|1 +(noun)|Lake Erie|Erie|lake +lake eyre|1 +(noun)|Eyre|Lake Eyre|lake +lake geneva|1 +(noun)|Lake Geneva|Lake Leman|lake +lake herring|2 +(noun)|cisco|whitefish +(noun)|cisco|Coregonus artedi|whitefish +lake huron|1 +(noun)|Lake Huron|Huron|lake +lake ilmen|1 +(noun)|Lake Ilmen|Ilmen|lake +lake kivu|1 +(noun)|Kivu|Lake Kivu|lake +lake ladoga|1 +(noun)|Lake Ladoga|Ladoga|lake +lake leman|1 +(noun)|Lake Geneva|Lake Leman|lake +lake mead|1 +(noun)|Lake Mead|reservoir|artificial lake +lake michigan|1 +(noun)|Lake Michigan|Michigan|lake +lake nasser|1 +(noun)|Lake Nasser|Nasser|lake +lake okeechobee|1 +(noun)|Okeechobee|Lake Okeechobee|lake +lake onega|1 +(noun)|Lake Onega|Onega|lake +lake ontario|1 +(noun)|Lake Ontario|Ontario|lake +lake poets|1 +(noun)|school|artistic movement|art movement +lake saint clair|1 +(noun)|Lake St. Clair|Lake Saint Clair|lake +lake salmon|1 +(noun)|landlocked salmon|Atlantic salmon|Salmo salar +lake st. clair|1 +(noun)|Lake St. Clair|Lake Saint Clair|lake +lake superior|1 +(noun)|Lake Superior|Superior|lake +lake tahoe|1 +(noun)|Lake Tahoe|lake +lake tana|1 +(noun)|Lake Tana|Lake Tsana|lake +lake tanganyika|1 +(noun)|Lake Tanganyika|Tanganyika|lake +lake trasimenus|1 +(noun)|Lake Trasimenus|Battle of Lake Trasimenus|pitched battle +lake trout|2 +(noun)|freshwater fish +(noun)|salmon trout|Salvelinus namaycush|trout +lake tsana|1 +(noun)|Lake Tana|Lake Tsana|lake +lake vanern|1 +(noun)|Lake Vanern|Vanern|lake +lake victoria|1 +(noun)|Lake Victoria|Victoria Nyanza|lake +lake whitefish|1 +(noun)|Coregonus clupeaformis|whitefish +lake winnipeg|1 +(noun)|Winnipeg|Lake Winnipeg|lake +lakefront|1 +(noun)|geological formation|formation +lakeland|1 +(noun)|Lake District|Lakeland|district|territory|territorial dominion|dominion +lakeland terrier|1 +(noun)|Lakeland terrier|wirehair|wirehaired terrier|wire-haired terrier +lakeshore|1 +(noun)|lakeside|shore +lakeside|1 +(noun)|lakeshore|shore +lakh|1 +(noun)|hundred thousand|100000|large integer +lakshmi|1 +(noun)|Lakshmi|Hindu deity +lallans|1 +(noun)|Lallans|Scottish Lallans|Scottish|Scots|Scots English +lallation|2 +(noun)|speech disorder|speech defect|defect of speech +(noun)|babble|babbling|gibberish|gibber +lally|1 +(noun)|lally column|support column +lally column|1 +(noun)|lally|support column +lallygag|1 +(verb)|loiter|lounge|footle|lollygag|loaf|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +lalthyrus tingitanus|1 +(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea +lam|3 +(noun)|getaway|escape|flight +(verb)|run|scarper|turn tail|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +(verb)|thrash|thresh|flail|beat|beat up|work over +lam into|1 +(verb)|tear into|lace into|pitch into|lay into|hit +lama|2 +(noun)|priest|non-Christian priest +(noun)|Lama|genus Lama|mammal genus +lama guanicoe|1 +(noun)|guanaco|Lama guanicoe|llama +lama pacos|1 +(noun)|alpaca|Lama pacos|llama +lama peruana|1 +(noun)|domestic llama|Lama peruana|llama +lamaism|1 +(noun)|Lamaism|Tibetan Buddhism|Buddhism +lamaist|1 +(noun)|Lamaist|disciple|adherent +lamarck|1 +(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist|natural scientist +lamarckian|1 +(adj)|Lamarckian|theory of evolution|theory of organic evolution +lamarckism|1 +(noun)|Lamarckism|theory of evolution|theory of organic evolution +lamasery|1 +(noun)|monastery +lamaze|1 +(adj)|Lamaze|natural childbirth +lamaze method|1 +(noun)|Lamaze method of childbirth|Lamaze method|natural childbirth +lamaze method of childbirth|1 +(noun)|Lamaze method of childbirth|Lamaze method|natural childbirth +lamb|6 +(noun)|young mammal +(noun)|Lamb|Charles Lamb|Elia|essayist|litterateur +(noun)|victim|dupe +(noun)|dear|innocent|inexperienced person +(noun)|meat +(verb)|give birth|deliver|bear|birth|have +lamb's-quarter|1 +(noun)|pigweed|wild spinach|greens|green|leafy vegetable +lamb's-quarters|2 +(noun)|pigweed|wild spinach|Chenopodium album|goosefoot +(noun)|lamb's-quarter|pigweed|wild spinach|greens|green|leafy vegetable +lamb's lettuce|1 +(noun)|common corn salad|Valerianella olitoria|Valerianella locusta|corn salad +lamb-chop|3 +(noun)|lamb chop|lambchop|chop +(noun)| +(noun)| +lamb chop|3 +(noun)|lamb-chop|lambchop|chop +(noun)| +(noun)| +lamb curry|1 +(noun)|curry +lamb roast|1 +(noun)|roast lamb|roast|joint +lamb succory|1 +(noun)|dwarf nipplewort|Arnoseris minima|herb|herbaceous plant +lambast|2 +(verb)|cane|flog|lambaste|beat|beat up|work over +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|knock|criticize|criticise|pick apart +lambaste|2 +(verb)|cane|flog|lambast|beat|beat up|work over +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambast|knock|criticize|criticise|pick apart +lambchop|1 +(noun)|lamb chop|lamb-chop|chop +lambda|2 +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|craniometric point +lambda hyperon|1 +(noun)|lambda particle|hyperon +lambda particle|1 +(noun)|lambda hyperon|hyperon +lambdacism|1 +(noun)|speech disorder|speech defect|defect of speech +lambency|1 +(noun)|gleam|gleaming|glow|radiance|radiancy|shine|effulgence|refulgence|refulgency +lambent|1 +(adj)|aglow|glowing|lucent|luminous|bright +lambert|2 +(noun)|L|illumination unit +(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer|conductor|music director|director +lambert-eaton syndrome|1 +(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|carcinomatous myopathy|disease of the neuromuscular junction +lambertia|1 +(noun)|Lambertia|genus Lambertia|dicot genus|magnoliopsid genus +lambertia formosa|1 +(noun)|honeyflower|honey-flower|mountain devil|Lambertia formosa|shrub|bush +lambis|1 +(noun)|Lambis|genus Lambis|mollusk genus +lambkill|1 +(noun)|sheep laurel|pig laurel|Kalmia angustifolia|kalmia +lambkin|1 +(noun)|lamb +lamblike|1 +(adj)|compliant +lamboid suture|1 +(noun)|sutura lamboidea|suture|sutura|fibrous joint +lambrequin|2 +(noun)|scarf +(noun)|hanging|wall hanging +lambskin|2 +(noun)|fur|pelt +(noun)|parchment|sheepskin|animal skin +lame|6 +(adj)|feeble|weak +(adj)|spavined|unfit +(adj)|crippled|halt|halting|game|unfit +(noun)|square|simpleton|simple +(noun)|fabric|cloth|material|textile +(verb)|cripple|maim +lame duck|1 +(noun)|elected official +lamedh|1 +(noun)|letter|letter of the alphabet|alphabetic character +lamella|3 +(noun)|gill|plant organ +(noun)|membrane|tissue layer +(noun)|plate +lamellar mixture|1 +(noun)|mixture +lamellate placentation|1 +(noun)|placentation +lamellibranch|2 +(adj)|pelecypod|pelecypodous|bivalve |bivalved +(noun)|bivalve|pelecypod|mollusk|mollusc|shellfish +lamellibranchia|1 +(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class +lamellicorn beetle|1 +(noun)|beetle +lamellicornia|1 +(noun)|Lamellicornia|superfamily Lamellicornia|arthropod family +lameness|1 +(noun)|limping|gimp|gimpiness|gameness|claudication|disability of walking +lament|5 +(noun)|lamentation|plaint|wail|complaint +(noun)|dirge|coronach|requiem|threnody|song +(noun)|elegy|poem|verse form +(verb)|keen|express emotion|express feelings +(verb)|deplore|bewail|bemoan|complain|kick|plain|sound off|quetch|kvetch +lamentable|2 +(adj)|sorrowful +(adj)|deplorable|distressing|pitiful|sad|sorry|bad +lamentably|1 +(adv)|deplorably|sadly|woefully +lamentation|2 +(noun)|lament|plaint|wail|complaint +(noun)|mourning|activity|expression|manifestation|reflection|reflexion +lamentations|3 +(noun)|Lamentations|Book of Lamentations|book +(noun)|lament|lamentation|plaint|wail|complaint +(noun)|lamentation|mourning|activity|expression|manifestation|reflection|reflexion +lamented|1 +(adj)|lamented +lamenter|1 +(noun)|mourner|griever|sorrower|unfortunate|unfortunate person +lamenting|1 +(adj)|wailing|wailful|sorrowful +lamia|1 +(noun)|vampire|evil spirit +lamiaceae|1 +(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family +lamina|1 +(noun)|plate +lamina arcus vertebrae|1 +(noun)|lamina +laminal|1 +(adj)|laminar|stratified |bedded +laminar|1 +(adj)|laminal|stratified |bedded +laminar flow|1 +(noun)|streamline flow +laminar flow clean room|1 +(noun)|clean room|white room +laminaria|1 +(noun)|Laminaria|genus Laminaria|protoctist genus +laminariaceae|1 +(noun)|Laminariaceae|family Laminariaceae|protoctist family +laminariales|1 +(noun)|Laminariales|order Laminariales|protoctist order +laminate|5 +(noun)|sheet|flat solid|lamination +(verb)|produce|make|create +(verb)|flatten +(verb)|cover +(verb)|cleave|split|rive +laminated glass|1 +(noun)|safety glass|shatterproof glass|glass +lamination|2 +(noun)|structure|construction +(noun)|creating from raw materials +laminator|1 +(noun)|skilled worker|trained worker +laminectomy|1 +(noun)|ablation|extirpation|cutting out|excision +laminitis|1 +(noun)|founder|inflammation|redness|rubor +lamisil|1 +(noun)|terbinafine|Lamisil|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +lamium|1 +(noun)|Lamium|genus Lamium|asterid dicot genus +lamium album|1 +(noun)|white dead nettle|Lamium album|dead nettle +lamium amplexicaule|1 +(noun)|henbit|Lamium amplexicaule|dead nettle +lamivudine|1 +(noun)|3TC|nucleoside reverse transcriptase inhibitor|NRTI +lammas|1 +(noun)|Lammas|Lammas Day|August 1|quarter day +lammas day|1 +(noun)|Lammas|Lammas Day|August 1|quarter day +lammastide|1 +(noun)|Lammastide|season +lammergeier|1 +(noun)|bearded vulture|lammergeyer|Gypaetus barbatus|Old World vulture +lammergeyer|1 +(noun)|bearded vulture|lammergeier|Gypaetus barbatus|Old World vulture +lamna|1 +(noun)|Lamna|genus Lamna|fish genus +lamna nasus|1 +(noun)|porbeagle|Lamna nasus|mackerel shark +lamnidae|1 +(noun)|Lamnidae|family Lamnidae|fish family +lamp|2 +(noun)|source of illumination +(noun)|furniture|piece of furniture|article of furniture +lamp chimney|1 +(noun)|chimney|flue +lamp house|2 +(noun)|lamphouse|lamp housing|housing +(noun)| +lamp housing|1 +(noun)|lamp house|lamphouse|housing +lamp oil|1 +(noun)|kerosene|kerosine|coal oil|fuel|hydrocarbon +lamp shade|2 +(noun)|lampshade|shade +(noun)| +lamp shell|2 +(noun)|brachiopod|lampshell|invertebrate +(noun)| +lampblack|1 +(noun)|carbon black|soot|smut|carbon|C|atomic number 6 +lamper eel|1 +(noun)|lamprey|lamprey eel|jawless vertebrate|jawless fish|agnathan +lamphouse|1 +(noun)|lamp house|lamp housing|housing +lamplight|1 +(noun)|light|visible light|visible radiation +lamplighter|1 +(noun)|worker +lamplit|1 +(adj)|light +lampoon|2 +(noun)|parody|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(verb)|satirize|satirise|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +lampoon artist|1 +(noun)|cartoonist +lampooner|1 +(noun)|parodist|humorist|humourist +lamppost|1 +(noun)|post +lamprey|1 +(noun)|lamprey eel|lamper eel|jawless vertebrate|jawless fish|agnathan +lamprey eel|1 +(noun)|lamprey|lamper eel|jawless vertebrate|jawless fish|agnathan +lampridae|1 +(noun)|Lampridae|family Lampridae|fish family +lampris|1 +(noun)|Lampris|genus Lampris|fish genus +lampris guttatus|1 +(noun)|New World opah|Lampris guttatus|soft-finned fish|malacopterygian +lampris regius|1 +(noun)|opah|moonfish|Lampris regius|soft-finned fish|malacopterygian +lampropeltis|1 +(noun)|Lampropeltis|genus Lampropeltis|reptile genus +lampropeltis getulus|1 +(noun)|common kingsnake|Lampropeltis getulus|king snake|kingsnake +lampropeltis triangulum|1 +(noun)|milk snake|house snake|milk adder|checkered adder|Lampropeltis triangulum|king snake|kingsnake +lampshade|1 +(noun)|lamp shade|shade +lampshell|1 +(noun)|brachiopod|lamp shell|invertebrate +lampyridae|1 +(noun)|Lampyridae|family Lampyridae|arthropod family +lan|1 +(noun)|local area network|LAN|computer network +lanai|2 +(noun)|Lanai|Lanai Island|island +(noun)|veranda|verandah|gallery +lanai island|1 +(noun)|Lanai|Lanai Island|island +lanate|1 +(adj)|woolly|hairy |hirsute +lancashire|1 +(noun)|Lancashire|geographical area|geographic area|geographical region|geographic region +lancaster|2 +(noun)|Lancaster|city|metropolis|urban center +(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty|royalty|royal family|royal line|royal house +lancastrian|4 +(adj)|Lancastrian|dynasty|royalty|royal family|royal line|royal house +(adj)|Lancastrian|city|metropolis|urban center +(noun)|Lancastrian|English person +(noun)|Lancastrian|English person +lancastrian line|1 +(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty|royalty|royal family|royal line|royal house +lance|6 +(noun)|spear|shaft|weapon|arm|weapon system +(noun)|spear|gig|fizgig|fishgig|implement +(noun)|lancet|surgical knife +(verb)|travel|go|move|locomote +(verb)|pierce|thrust +(verb)|open|open up +lance corporal|1 +(noun)|noncommissioned officer|noncom +lancelet|1 +(noun)|amphioxus|cephalochordate +lancelike|1 +(adj)|lanceolate|simple |unsubdivided|pointed +lancelot|1 +(noun)|Lancelot|Sir Lancelot|fictional character|fictitious character|character +lanceolate|1 +(adj)|lancelike|simple |unsubdivided|pointed +lanceolate leaf|1 +(noun)|simple leaf +lanceolate spleenwort|1 +(noun)|Asplenium billotii|spleenwort +lancer|1 +(noun)|cavalryman|trooper +lancers|2 +(noun)|quadrille +(noun)|lancer|cavalryman|trooper +lancet|2 +(noun)|lancet arch|Gothic arch +(noun)|lance|surgical knife +lancet arch|1 +(noun)|lancet|Gothic arch +lancet fish|2 +(noun)|lancetfish|wolffish|soft-finned fish|malacopterygian +(noun)| +lancet window|1 +(noun)|window +lancetfish|1 +(noun)|lancet fish|wolffish|soft-finned fish|malacopterygian +lancewood|2 +(noun)|wood +(noun)|lancewood tree|Oxandra lanceolata|tree +lancewood tree|2 +(noun)|laurelwood|Calophyllum candidissimum|tree +(noun)|lancewood|Oxandra lanceolata|tree +lanchou|1 +(noun)|Lanzhou|Lanchou|Lanchow|city|metropolis|urban center +lanchow|1 +(noun)|Lanzhou|Lanchou|Lanchow|city|metropolis|urban center +lancinate|1 +(adj)|cutting|keen|knifelike|piercing|stabbing|lancinating|sharp +lancinating|1 +(adj)|cutting|keen|knifelike|piercing|stabbing|lancinate|sharp +land|20 +(adj)|land |onshore|overland +(adj)|terrestrial +(noun)|real property|real estate|realty +(noun)|ground|soil|object|physical object +(noun)|dry land|earth|ground|solid ground|terra firma|object|physical object +(noun)|domain|demesne|region +(noun)|country|state|administrative district|administrative division|territorial division +(noun)|kingdom|realm|sphere|domain|area|orbit|field|arena +(noun)|estate|landed estate|acres|demesne|real property|real estate|realty +(noun)|nation|country|a people|people +(noun)|state|nation|country|commonwealth|res publica|body politic|political unit +(noun)|Land|Din Land|Edwin Herbert Land|inventor|discoverer|artificer|industrialist +(noun)|farming|occupation|business|job|line of work|line +(verb)|set down|arrive|get|come +(verb)|put down|bring down|arrive|get|come +(verb)|bring|change|alter|modify +(verb)|bring|convey|take +(verb)|deliver|drive home +(verb)|set ashore|shore|arrive|get|come +(verb)|down|shoot down +land-office business|1 +(noun)|business +land agent|2 +(noun)|realtor|real estate broker|real estate agent|estate agent|house agent|agent|factor|broker +(noun)|administrator|decision maker +land area|1 +(noun)|acreage|area|expanse|surface area +land cress|1 +(noun)|Belle Isle cress|early winter cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress|St. Barbara's herb|scurvy grass +land development|1 +(noun)|exploitation|development +land grant|1 +(noun)|grant|assignment +land line|2 +(noun)|landline|telephone line|phone line|telephone circuit|subscriber line|line +(noun)| +land mile|1 +(noun)|mile|statute mile|stat mi|mi|linear unit +land mine|1 +(noun)|ground-emplaced mine|booby trap|mine +land of enchantment|1 +(noun)|New Mexico|Land of Enchantment|NM|American state +land of lincoln|1 +(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state +land of opportunity|1 +(noun)|Arkansas|Land of Opportunity|AR|American state +land office|1 +(noun)|government office +land rail|1 +(noun)|corncrake|Crex crex|crake +land reform|1 +(noun)|reform +land resources|1 +(noun)|natural resource|natural resources +land site|1 +(noun)|site|tract|piece of land|piece of ground|parcel of land|parcel +land tax|1 +(noun)|property tax|capital levy +land tenure|1 +(noun)|tenure|legal right +land up|2 +(verb)|earth up|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|finish up|fetch up|end up|wind up|finish|act|move +landau|2 +(noun)|Landau|Lev Davidovich Landau|physicist +(noun)|carriage|equipage|rig +landed|1 +(adj)|landed +landed estate|1 +(noun)|estate|land|acres|demesne|real property|real estate|realty +landed gentry|1 +(noun)|squirearchy|gentry|aristocracy +lander|2 +(noun)|Lander|town +(noun)|spacecraft|ballistic capsule|space vehicle +landfall|2 +(noun)|seashore|coast|seacoast|sea-coast +(noun)|sighting +landfill|1 +(noun)|lowland +landgrave|1 +(noun)|count +landholder|1 +(noun)|landowner|property owner|owner|possessor +landholding|2 +(noun)|ownership +(noun)|property|belongings|holding|material possession +landing|4 +(noun)|platform +(noun)|landing place|structure|construction +(noun)|arrival +(noun)|arrival +landing approach|1 +(noun)|approach|approaching|coming +landing craft|1 +(noun)|craft +landing deck|1 +(noun)|flight deck|deck +landing field|1 +(noun)|airfield|flying field|field|facility|installation +landing flap|1 +(noun)|flap|flaps +landing gear|1 +(noun)|undercarriage +landing net|1 +(noun)|fishnet|fishing net +landing party|1 +(noun)|party|company +landing place|1 +(noun)|landing|structure|construction +landing skids|1 +(noun)|landing gear +landing stage|1 +(noun)|platform +landing strip|1 +(noun)|airstrip|flight strip|strip|airfield|landing field|flying field|field +landlady|1 +(noun)|landlord +landler|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|country-dance|country dancing|contredanse|contra danse|contradance +landless|1 +(adj)|landless +landline|1 +(noun)|land line|telephone line|phone line|telephone circuit|subscriber line|line +landlocked|1 +(adj)|inland +landlocked salmon|1 +(noun)|lake salmon|Atlantic salmon|Salmo salar +landlord|1 +(noun)|landowner|landholder|property owner +landlord's lien|1 +(noun)|lien +landlubber|2 +(noun)|landsman|landman|inhabitant|dweller|denizen|indweller +(noun)|lubber|landsman|novice|beginner|tyro|tiro|initiate +landlubberly|1 +(adj)|lubberly|unseamanlike +landman|1 +(noun)|landlubber|landsman|inhabitant|dweller|denizen|indweller +landmark|4 +(noun)|position|place +(noun)|turning point|watershed|juncture|occasion +(noun)|reference point|point of reference|reference +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +landmass|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +landowner|1 +(noun)|landholder|property owner|owner|possessor +landowska|1 +(noun)|Landowska|Wanda Landowska|harpsichordist +landrover|1 +(noun)|jeep|car|auto|automobile|machine|motorcar +landry's paralysis|1 +(noun)|Guillain-Barre syndrome|infectious polyneuritis|Landry's paralysis|polyneuritis|multiple neuritis +landscape|6 +(noun)|scenery +(noun)|painting|picture +(noun)|landscape painting|genre +(noun)|point of view|viewpoint|stand|standpoint +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|garden +landscape architect|1 +(noun)|landscape gardener|landscaper|landscapist|architect|designer +landscape architecture|1 +(noun)|architecture +landscape gardener|1 +(noun)|landscape architect|landscaper|landscapist|architect|designer +landscape gardening|1 +(noun)|landscaping|gardening|horticulture +landscape painting|1 +(noun)|landscape|genre +landscaped|1 +(adj)|improved +landscaper|1 +(noun)|landscape architect|landscape gardener|landscapist|architect|designer +landscaping|2 +(noun)|landscape gardening|gardening|horticulture +(noun)|garden +landscapist|2 +(noun)|painter +(noun)|landscape architect|landscape gardener|landscaper|architect|designer +landside|1 +(noun)|component|constituent|element +landslide|2 +(noun)|victory|triumph +(noun)|landslip|slide +landslip|1 +(noun)|landslide|slide +landsmal|1 +(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian +landsman|2 +(noun)|landlubber|landman|inhabitant|dweller|denizen|indweller +(noun)|landlubber|lubber|novice|beginner|tyro|tiro|initiate +landsteiner|1 +(noun)|Landsteiner|Karl Landsteiner|diagnostician|pathologist +landward|1 +(adv)|landwards +landwards|1 +(adv)|landward +lane|2 +(noun)|way +(noun)|path +lane's prince albert|1 +(noun)|Lane's Prince Albert|cooking apple +laney|1 +(noun)|Laney|Lucy Craft Laney|educator|pedagogue +lang syne|2 +(adv)|long ago|long since +(adv)|langsyne +langbeinite|1 +(noun)|mineral +lange|1 +(noun)|Lange|Dorothea Lange|photographer|lensman +langlauffer|1 +(noun)|skier +langley|2 +(noun)|unit of measurement|unit +(noun)|Langley|Samuel Pierpoint Langley|astronomer|uranologist|stargazer|inventor|discoverer|artificer +langmuir|1 +(noun)|Langmuir|Irving Langmuir|chemist +langobard|1 +(noun)|Lombard|Langobard|European +langouste|2 +(noun)|spiny lobster|rock lobster|crayfish|shellfish +(noun)|spiny lobster|rock lobster|crawfish|crayfish|sea crawfish|lobster +langoustine|1 +(noun)|Norwegian lobster|scampo|lobster +langsat|1 +(noun)|lanseh tree|langset|Lansium domesticum|tree +langset|1 +(noun)|lanseh tree|langsat|Lansium domesticum|tree +langside|1 +(noun)|Langside|battle of Langside|pitched battle +langston hughes|1 +(noun)|Hughes|Langston Hughes|James Langston Hughes|writer|author +langsyne|1 +(noun)|auld langsyne|old times|the good old days|past|past times|yesteryear|yore +langtry|1 +(noun)|Langtry|Lillie Langtry|the Jersey Lillie|Emilie Charlotte le Breton|actress +language|6 +(noun)|linguistic communication|communication +(noun)|speech|speech communication|spoken communication|spoken language|voice communication|oral communication|auditory communication +(noun)|terminology|nomenclature|word +(noun)|linguistic process|higher cognitive process +(noun)|speech|faculty|mental faculty|module +(noun)|lyric|words|text|textual matter +language area|1 +(noun)|language zone|cortical area|cortical region +language barrier|1 +(noun)|barrier|roadblock +language learning|1 +(noun)|learning|acquisition +language lesson|1 +(noun)|lesson +language requirement|1 +(noun)|academic requirement +language school|1 +(noun)|school +language system|1 +(noun)|system|scheme +language teaching|1 +(noun)|teaching|instruction|pedagogy +language unit|1 +(noun)|linguistic unit|part|portion|component part|component +language zone|1 +(noun)|language area|cortical area|cortical region +languas speciosa|1 +(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +langue d'oc|1 +(noun)|Langue d'oc|Langue d'oc French|French +langue d'oc french|1 +(noun)|Langue d'oc|Langue d'oc French|French +langue d'oil|1 +(noun)|Langue d'oil|Langue d'oil French|French +langue d'oil french|1 +(noun)|Langue d'oil|Langue d'oil French|French +languedoc-roussillon|1 +(noun)|Languedoc-Roussillon|French region +languid|1 +(adj)|dreamy|lackadaisical|languorous|lethargic |unergetic +languish|3 +(verb)|pine away|waste|weaken +(verb)|ache|yearn|yen|pine|hanker|long|yearn +(verb)|fade|devolve|deteriorate|drop|degenerate +languisher|1 +(noun)|unfortunate|unfortunate person +languor|3 +(noun)|dreaminess|easiness|relaxation +(noun)|lassitude|listlessness|apathy +(noun)|lethargy|sluggishness|phlegm|inactiveness|inactivity|inertia +languorous|1 +(adj)|dreamy|lackadaisical|languid|lethargic |unergetic +langur|1 +(noun)|Old World monkey|catarrhine +laniard|3 +(noun)|lanyard|cord +(noun)|lanyard|cord +(noun)|lanyard|line +laniary|1 +(adj)|canine|tooth +laniidae|1 +(noun)|Laniidae|family Laniidae|bird family +lanius|1 +(noun)|Lanius|genus Lanius|bird genus +lanius borealis|1 +(noun)|northern shrike|Lanius borealis|butcherbird +lanius excubitor|1 +(noun)|European shrike|Lanius excubitor|butcherbird +lanius lucovicianus|1 +(noun)|loggerhead shrike|Lanius lucovicianus|shrike +lanius ludovicianus excubitorides|1 +(noun)|white-rumped shrike|Lanius ludovicianus excubitorides|butcherbird +lanius ludovicianus migrans|1 +(noun)|migrant shrike|Lanius ludovicianus migrans|shrike +lank|2 +(adj)|long +(adj)|spindly|thin |lean +lankiness|1 +(noun)|physique|build|body-build|habitus +lanky|2 +(adj)|gangling|gangly|rangy|tall +(adj)|gangling|gangly|thin |lean +lanolin|2 +(noun)|wool fat|wool grease|animal oil +(noun)|cream|ointment|emollient +lanoxin|1 +(noun)|digoxin|Lanoxin|digitalis|digitalis glycoside|digitalin +lansa|1 +(noun)|lanseh|lansat|lanset|edible fruit +lansat|1 +(noun)|lanseh|lansa|lanset|edible fruit +lanseh|1 +(noun)|lansa|lansat|lanset|edible fruit +lanseh tree|1 +(noun)|langsat|langset|Lansium domesticum|tree +lanset|1 +(noun)|lanseh|lansa|lansat|edible fruit +lansing|1 +(noun)|Lansing|capital of Michigan|state capital +lansium domesticum|1 +(noun)|lanseh tree|langsat|langset|Lansium domesticum|tree +lansoprazole|1 +(noun)|Prevacid|acid +lantana|1 +(noun)|poisonous plant +lantern|1 +(noun)|lamp +lantern-fly|2 +(noun)|lantern fly|plant hopper|planthopper +(noun)| +lantern-jawed|1 +(adj)|prognathous |prognathic|hypognathous +lantern fly|2 +(noun)|lantern-fly|plant hopper|planthopper +(noun)| +lantern jaw|1 +(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jowl +lantern pinion|1 +(noun)|lantern wheel|pinion +lantern slide|1 +(noun)|slide|foil|transparency +lantern wheel|1 +(noun)|lantern pinion|pinion +lanternfish|1 +(noun)|soft-finned fish|malacopterygian +lanthanide|1 +(noun)|rare earth|rare-earth element|lanthanoid|lanthanon|group|grouping +lanthanide series|1 +(noun)|series +lanthanoid|1 +(noun)|rare earth|rare-earth element|lanthanide|lanthanon|group|grouping +lanthanon|1 +(noun)|rare earth|rare-earth element|lanthanoid|lanthanide|group|grouping +lanthanotidae|1 +(noun)|Lanthanotidae|family Lanthanotidae|reptile family +lanthanotus|1 +(noun)|Lanthanotus|genus Lanthanotus|reptile genus +lanthanotus borneensis|1 +(noun)|Lanthanotus borneensis|lizard +lanthanum|1 +(noun)|La|atomic number 57|metallic element|metal +lanugo|1 +(noun)|down|pile +lanyard|3 +(noun)|laniard|cord +(noun)|laniard|cord +(noun)|laniard|line +lanzhou|1 +(noun)|Lanzhou|Lanchou|Lanchow|city|metropolis|urban center +lao|3 +(adj)|Lao|Asian|Asiatic +(noun)|Lao|Laotian|Asian|Asiatic +(noun)|Lao|Tai +lao-tse|1 +(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher +lao-tzu|1 +(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher +lao-zi|1 +(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher +lao people's democratic republic|1 +(noun)|Laos|Lao People's Democratic Republic|Asian country|Asian nation +laocoon|1 +(noun)|Laocoon|mythical being +laos|3 +(noun)|Laos|Lao People's Democratic Republic|Asian country|Asian nation +(noun)|Lao|Laotian|Asian|Asiatic +(noun)|Lao|Tai +laotian|2 +(adj)|Laotian|Asian country|Asian nation +(noun)|Lao|Laotian|Asian|Asiatic +laotian capital|1 +(noun)|Vientiane|Laotian capital|capital of Laos|national capital +laotian monetary unit|1 +(noun)|Laotian monetary unit|monetary unit +lap|11 +(noun)|thigh +(noun)|sphere|domain|area|orbit|field|arena +(noun)|lap covering|cloth covering +(noun)|overlap|flap +(noun)|circle|circuit|locomotion|travel +(noun)|lick|touch|touching +(verb)|lie +(verb)|lick|stroke|fondle +(verb)|swish|swosh|swoosh|sound|go +(verb)|lap up|lick|drink|imbibe +(verb)|lave|wash|flow +lap-jointed|1 +(adj)|lap-strake|lap-straked|lap-streak|lap-streaked|overlapping|clinker-built |clincher-built +lap-strake|1 +(adj)|lap-jointed|lap-straked|lap-streak|lap-streaked|overlapping|clinker-built |clincher-built +lap-straked|1 +(adj)|lap-jointed|lap-strake|lap-streak|lap-streaked|overlapping|clinker-built |clincher-built +lap-streak|1 +(adj)|lap-jointed|lap-strake|lap-straked|lap-streaked|overlapping|clinker-built |clincher-built +lap-streaked|1 +(adj)|lap-jointed|lap-strake|lap-straked|lap-streak|overlapping|clinker-built |clincher-built +lap choly|1 +(noun)|laparoscopic cholecystectomy|cholecystectomy +lap covering|1 +(noun)|lap|cloth covering +lap joint|1 +(noun)|splice|joint +lap of honour|1 +(noun)|victory lap|lap|circle|circuit +lap of luxury|1 +(noun)|ease|comfort +lap of the gods|1 +(noun)|lap +lap up|1 +(verb)|lap|lick|drink|imbibe +laparocele|1 +(noun)|hernia|herniation +laparoscope|1 +(noun)|endoscope +laparoscopic cholecystectomy|1 +(noun)|lap choly|cholecystectomy +laparoscopy|1 +(noun)|laparotomy +laparotomy|1 +(noun)|incision|section|surgical incision +lapboard|1 +(noun)|writing board +lapdog|1 +(noun)|dog|domestic dog|Canis familiaris +lapel|1 +(noun)|lap|overlap +lapful|1 +(noun)|containerful +lapidarian|1 +(adj)|carved |carven +lapidarist|1 +(noun)|lapidary|expert +lapidary|3 +(adj)|crystal +(noun)|lapidarist|expert +(noun)|lapidist|engraver +lapidate|2 +(verb)|stone|kill +(verb)|pelt|bombard +lapidation|1 +(noun)|stoning|corporal punishment +lapidator|1 +(noun)|stoner|attacker|aggressor|assailant|assaulter +lapidify|1 +(verb)|petrify|fossilize|fossilise +lapidist|1 +(noun)|lapidary|engraver +lapin|2 +(noun)|rabbit|fur|pelt +(noun)|rabbit|coney|cony +lapis lazuli|1 +(noun)|lazuli|opaque gem +laplace|1 +(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician|astronomer|uranologist|stargazer +lapland|1 +(noun)|Lappland|Lapland|geographical area|geographic area|geographical region|geographic region +laportea|1 +(noun)|Laportea|genus Laportea|dicot genus|magnoliopsid genus +laportea canadensis|1 +(noun)|wood nettle|Laportea canadensis|nettle +lapp|2 +(noun)|Lapp|Lapplander|European +(noun)|Lapp|Sami|Lappic|Lappish +lappet|3 +(noun)|wattle|caruncle|caruncula +(noun)|lap|overlap +(noun)|lappet moth|lasiocampid|lasiocampid moth +lappet caterpillar|1 +(noun)|caterpillar +lappet moth|1 +(noun)|lappet|lasiocampid|lasiocampid moth +lappic|1 +(noun)|Lappic|Lappish|Uralic|Uralic language +lapping|1 +(noun)|imbrication|overlapping|covering +lappish|1 +(noun)|Lappic|Lappish|Uralic|Uralic language +lappland|1 +(noun)|Lappland|Lapland|geographical area|geographic area|geographical region|geographic region +lapplander|1 +(noun)|Lapp|Lapplander|European +lappula|1 +(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus +lapse|9 +(noun)|oversight|mistake|error|fault +(noun)|pause|intermission|break|interruption|suspension +(noun)|backsliding|lapsing|relapse|relapsing|reversion|reverting|failure +(verb)|sink|pass|move +(verb)|end|stop|finish|terminate|cease +(verb)|backslide|slip|drop off|drop away|fall away +(verb)|relapse|recidivate|regress|retrogress|fall back|revert|return|retrovert|regress|turn back +(verb)|forfeit|give up|throw overboard|waive|forgo +(verb)|elapse|pass|slip by|glide by|slip away|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +lapsed|1 +(adj)|nonchurchgoing|irreligious +lapsing|1 +(noun)|backsliding|lapse|relapse|relapsing|reversion|reverting|failure +laptev sea|1 +(noun)|Laptev Sea|sea +laptop|1 +(noun)|laptop computer|portable computer +laptop computer|1 +(noun)|laptop|portable computer +laputa|1 +(noun)|Laputa|imaginary place|mythical place +laputan|2 +(adj)|Laputan|imaginary place|mythical place +(adj)|airy|impractical|visionary|Laputan|utopian +lapwing|1 +(noun)|green plover|peewit|pewit|plover +laramie|1 +(noun)|Laramie|town +larboard|2 +(adj)|port|left +(noun)|port|side +larcener|1 +(noun)|larcenist|thief|stealer +larcenist|1 +(noun)|larcener|thief|stealer +larcenous|1 +(noun)|thievishness|dishonesty +larceny|1 +(noun)|theft|thievery|thieving|stealing|felony +larch|2 +(noun)|wood +(noun)|larch tree|conifer|coniferous tree +larch tree|1 +(noun)|larch|conifer|coniferous tree +lard|3 +(noun)|edible fat +(verb)|cook|fix|ready|make|prepare +(verb)|embroider|pad|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +lard oil|1 +(noun)|animal oil +larder|2 +(noun)|commissariat|provisions|provender|viands|victuals +(noun)|pantry|buttery|storeroom|storage room|stowage +lardizabala|1 +(noun)|Lardizabala|genus Lardizabala|magnoliid dicot genus +lardizabala family|1 +(noun)|Lardizabalaceae|family Lardizabalaceae|magnoliid dicot family +lardizabalaceae|1 +(noun)|Lardizabalaceae|family Lardizabalaceae|lardizabala family|magnoliid dicot family +lardner|1 +(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist|humourist|writer|author +laredo|1 +(noun)|Laredo|city|metropolis|urban center|port of entry|point of entry +large|10 +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|bigger|larger|biggest|greatest|largest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|significant |important +(adj)|macroscopic |macroscopical|megascopic|gross +(adj)|bombastic|declamatory|orotund|tumid|turgid|rhetorical +(adj)|big|magnanimous|generous +(adj)|big|prominent|conspicuous |obvious +(adj)|comprehensive +(adj)|big|enceinte|expectant|gravid|great|heavy|with child|pregnant +(noun)|size +(adv)|boastfully|vauntingly|big +large-cap|1 +(adj)|large-capitalization|large-capitalisation|capitalization|capitalisation +large-capitalisation|1 +(adj)|large-capitalization|large-cap|capitalization|capitalisation +large-capitalization|1 +(adj)|large-capitalisation|large-cap|capitalization|capitalisation +large-flowered calamint|1 +(noun)|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint +large-flowered fiddleneck|1 +(noun)|Amsinckia grandiflora|herb|herbaceous plant +large-flowering magnolia|1 +(noun)|southern magnolia|evergreen magnolia|bull bay|Magnolia grandiflora|magnolia +large-hearted|1 +(adj)|charitable|kindly|sympathetic|kind +large-leaved aster|1 +(noun)|Aster macrophyllus|wood aster +large-leaved cucumber tree|1 +(noun)|large-leaved magnolia|great-leaved macrophylla|Magnolia macrophylla|magnolia +large-leaved magnolia|1 +(noun)|large-leaved cucumber tree|great-leaved macrophylla|Magnolia macrophylla|magnolia +large-minded|1 +(adj)|broad|liberal|tolerant|broad-minded +large-scale|3 +(adj)|large +(adj)|large +(adj)|mass|general +large-toothed aspen|1 +(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large tooth aspen|Populus grandidentata|aspen +large calorie|1 +(noun)|Calorie|kilogram calorie|kilocalorie|nutritionist's calorie|work unit|heat unit|energy unit +large cap|1 +(noun)|corporation|corp +large civet|1 +(noun)|Viverra zibetha|civet|civet cat +large crabgrass|1 +(noun)|hairy finger grass|Digitaria sanguinalis|crabgrass|crab grass|finger grass +large cranberry|1 +(noun)|American cranberry|Vaccinium macrocarpon|cranberry +large indefinite amount|1 +(noun)|large indefinite quantity|indefinite quantity +large indefinite quantity|1 +(noun)|large indefinite amount|indefinite quantity +large integer|1 +(noun)|integer|whole number +large intestine|1 +(noun)|intestine|bowel|gut +large magellanic cloud|1 +(noun)|Large Magellanic Cloud|Magellanic Cloud +large number|1 +(noun)|battalion|multitude|plurality|pack|large indefinite quantity|large indefinite amount +large order|1 +(noun)|tall order|undertaking|project|task|labor +large periwinkle|1 +(noun)|Vinca major|periwinkle +large person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +large poodle|1 +(noun)|poodle|poodle dog +large tooth aspen|1 +(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|Populus grandidentata|aspen +large white|1 +(noun)|Pieris brassicae|cabbage butterfly +large white petunia|1 +(noun)|Petunia axillaris|petunia +large yellow lady's slipper|1 +(noun)|Cypripedium calceolus pubescens|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum +largeleaf holly|1 +(noun)|holly +largely|1 +(adv)|mostly|for the most part +largemouth|1 +(noun)|largemouth bass|largemouthed bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass +largemouth bass|2 +(noun)|freshwater bass|bass +(noun)|largemouth|largemouthed bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass +largemouth black bass|1 +(noun)|largemouth|largemouth bass|largemouthed bass|largemouthed black bass|Micropterus salmoides|black bass +largemouthed bass|1 +(noun)|largemouth|largemouth bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass +largemouthed black bass|1 +(noun)|largemouth|largemouth bass|largemouthed bass|largemouth black bass|Micropterus salmoides|black bass +largeness|1 +(noun)|bigness|size +larger|9 +(adj)|bigger|large +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|bigger|biggest|greatest|largest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|large|significant |important +(adj)|macroscopic |macroscopical|large|megascopic|gross +(adj)|bombastic|declamatory|large|orotund|tumid|turgid|rhetorical +(adj)|big|large|magnanimous|generous +(adj)|big|large|prominent|conspicuous |obvious +(adj)|large|comprehensive +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +larger-than-life|1 +(adj)|epic|heroic|large +largess|2 +(noun)|largesse|gift +(noun)|munificence|largesse|magnanimity|openhandedness|liberality|liberalness +largesse|2 +(noun)|largess|gift +(noun)|munificence|largess|magnanimity|openhandedness|liberality|liberalness +largest|10 +(adj)|biggest|greatest|large +(adj)|outside|maximal +(adj)|large |ample|sizable|sizeable|astronomic|astronomical|galactic|bigger|larger|biggest|greatest|biggish|largish|blown-up|enlarged|bouffant|puffy|bulky|capacious|colossal|prodigious|stupendous|cosmic|deep|double|elephantine|gargantuan|giant|jumbo|enormous|tremendous|epic|heroic|larger-than-life|extensive|extended|gigantic|mammoth|great|hulking|hulky|huge|immense|vast|Brobdingnagian|humongous|banging|thumping|whopping|walloping|king-size|king-sized|large-scale|large-scale|life-size|lifesize|life-sized|full-size|macro|man-sized|massive|monolithic|monumental|massive|monstrous|mountainous|outsize|outsized|oversize|oversized|overlarge|too large|plumping|queen-size|queen-sized|rangy|super|titanic|volumed|voluminous|whacking|wide-ranging|broad|spacious|wide +(adj)|large|significant |important +(adj)|macroscopic |macroscopical|large|megascopic|gross +(adj)|bombastic|declamatory|large|orotund|tumid|turgid|rhetorical +(adj)|big|large|magnanimous|generous +(adj)|big|large|prominent|conspicuous |obvious +(adj)|large|comprehensive +(adj)|big|enceinte|expectant|gravid|great|large|heavy|with child|pregnant +larghetto|2 +(adj)|slow +(noun)|musical composition|opus|composition|piece|piece of music +larghissimo|1 +(adj)|slow +largish|1 +(adj)|biggish|large +largo|2 +(adj)|slow +(noun)|musical composition|opus|composition|piece|piece of music|passage|musical passage +lari|2 +(noun)|Georgian monetary unit +(noun)|Lari|suborder Lari|animal order +lariat|1 +(noun)|lasso|riata|reata|rope +laricariidae|1 +(noun)|Laricariidae|family Laricariidae|fish family +larid|1 +(noun)|coastal diving bird +laridae|1 +(noun)|Laridae|family Laridae|bird family +larium|1 +(noun)|mefloquine|mefloquine hydrochloride|Larium|Mephaquine|antimalarial|antimalarial drug +larix|1 +(noun)|Larix|genus Larix|gymnosperm genus +larix decidua|1 +(noun)|European larch|Larix decidua|larch|larch tree +larix laricina|1 +(noun)|American larch|tamarack|black larch|Larix laricina|larch|larch tree +larix lyallii|1 +(noun)|subalpine larch|Larix lyallii|larch|larch tree +larix occidentalis|1 +(noun)|western larch|western tamarack|Oregon larch|Larix occidentalis|larch|larch tree +larix russica|1 +(noun)|Siberian larch|Larix siberica|Larix russica|larch|larch tree +larix siberica|1 +(noun)|Siberian larch|Larix siberica|Larix russica|larch|larch tree +lark|5 +(noun)|meadowlark|New World oriole|American oriole|oriole +(noun)|pipit|titlark|oscine|oscine bird +(noun)|oscine|oscine bird +(noun)|escapade|diversion|recreation +(verb)|frolic|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play +lark about|1 +(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|play +larkspur|1 +(noun)|delphinium +larn|1 +(verb)|learn|acquire +larodopa|1 +(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa|dihydroxyphenylalanine +larotid|1 +(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +larousse|1 +(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer|lexicologist +larrea|1 +(noun)|Larrea|genus Larrea|rosid dicot genus +larrea tridentata|1 +(noun)|creosote bush|coville|hediondilla|Larrea tridentata|shrub|bush +larrup|1 +(verb)|spank|paddle|beat|beat up|work over +lars onsager|1 +(noun)|Onsager|Lars Onsager|chemist +larus|1 +(noun)|Larus|genus Larus|bird genus +larus argentatus|1 +(noun)|herring gull|Larus argentatus|gull|seagull|sea gull +larus canus|1 +(noun)|mew|mew gull|sea mew|Larus canus|gull|seagull|sea gull +larus marinus|1 +(noun)|black-backed gull|great black-backed gull|cob|Larus marinus|gull|seagull|sea gull +larus ridibundus|1 +(noun)|laughing gull|blackcap|pewit|pewit gull|Larus ridibundus|gull|seagull|sea gull +larva|1 +(noun)|animal|animate being|beast|brute|creature|fauna +larvacea|1 +(noun)|Larvacea|class Larvacea|class|category|family +larvacean|1 +(noun)|tunicate|urochordate|urochord +larvacide|1 +(noun)|insecticide|insect powder +larval|2 +(adj)|immature +(adj)|animal|animate being|beast|brute|creature|fauna +larvicide|1 +(noun)|chemical +laryngeal|1 +(adj)|cartilaginous structure|speech organ|vocal organ +laryngeal artery|1 +(noun)|arteria laryngea|artery|arteria|arterial blood vessel +laryngeal vein|1 +(noun)|vena laryngea|vein|vena|venous blood vessel +laryngectomy|1 +(noun)|ablation|extirpation|cutting out|excision +laryngismus|1 +(noun)|spasm +laryngitis|1 +(noun)|inflammation|redness|rubor +laryngopharyngeal|1 +(adj)|cartilaginous structure|speech organ|vocal organ|tubular cavity +laryngopharyngitis|1 +(noun)|inflammation|redness|rubor +laryngopharynx|1 +(noun)|cavity|bodily cavity|cavum +laryngoscope|1 +(noun)|medical instrument +laryngospasm|1 +(noun)|occlusion +laryngostenosis|1 +(noun)|Laryngostenosis|stenosis|stricture +laryngotracheobronchitis|1 +(noun)|inflammation|redness|rubor +larynx|1 +(noun)|voice box|cartilaginous structure|speech organ|vocal organ +las cruces|1 +(noun)|Las Cruces|town +las vegas|1 +(noun)|Las Vegas|city|metropolis|urban center +lasagna|2 +(noun)|lasagne|dish +(noun)|lasagne|pasta|alimentary paste +lasagne|2 +(noun)|lasagna|dish +(noun)|lasagna|pasta|alimentary paste +lasalle|1 +(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer|adventurer +lascar|2 +(noun)|sailor|crewman +(noun)|Lascar|volcano +lascaux|1 +(noun)|Lascaux|cave +lascivious|1 +(adj)|lewd|libidinous|lustful|sexy +lasciviously|1 +(adv)|salaciously +lasciviousness|1 +(noun)|prurience|pruriency|carnality|amorousness|eroticism|erotism|sexiness|amativeness +laser|1 +(noun)|optical maser|optical device +laser-guided bomb|1 +(noun)|LGB|smart bomb +laser beam|1 +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +laser printer|1 +(noun)|electrostatic printer +lash|7 +(noun)|eyelash|cilium|hair +(noun)|thong|leather strip +(noun)|whip|whiplash|blow +(verb)|flog|welt|whip|lather|slash|strap|trounce|beat|beat up|work over +(verb)|swing|sway +(verb)|whip|strike +(verb)|tie|bind +lash-up|1 +(noun)|contrivance|arrangement +lash out|1 +(verb)|attack|round|assail|snipe|assault|knock|criticize|criticise|pick apart +lash together|1 +(verb)|tie|bind +lasher|1 +(noun)|driver +lashing|3 +(adj)|violent +(noun)|whipping|tanning|flogging|flagellation|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +(noun)|rope|fastener|fastening|holdfast|fixing +lashings|3 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|large indefinite quantity|large indefinite amount +(noun)|whipping|tanning|flogging|lashing|flagellation|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +(noun)|lashing|rope|fastener|fastening|holdfast|fixing +lashkar-e-jhangvi|1 +(noun)|Lashkar-e-Jhangvi|terrorist organization|terrorist group|foreign terrorist organization|FTO +lashkar-e-omar|1 +(noun)|Lashkar-e-Omar|Al Qanoon|terrorist organization|terrorist group|foreign terrorist organization|FTO +lashkar-e-taiba|1 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +lashkar-e-tayyiba|1 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +lashkar-e-toiba|1 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +lasiocampa|1 +(noun)|Lasiocampa|genus Lasiocampa|arthropod genus +lasiocampid|1 +(noun)|lasiocampid moth|moth +lasiocampid moth|1 +(noun)|lasiocampid|moth +lasiocampidae|1 +(noun)|Lasiocampidae|family Lasiocampidae|arthropod family +lasiurus|1 +(noun)|Lasiurus|genus Lasiurus|mammal genus +lasiurus borealis|1 +(noun)|red bat|Lasiurus borealis|vespertilian bat|vespertilionid +lasix|1 +(noun)|furosemide|Lasix|diuretic drug|diuretic|water pill +laskar jihad|1 +(noun)|Laskar Jihad|Holy War Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +lass|1 +(noun)|lassie|young girl|jeune fille|girl|miss|missy|young lady|young woman|fille +lassa|1 +(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital +lassa fever|1 +(noun)|Lassa fever|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +lassa virus|1 +(noun)|Lassa virus|arenavirus +lassen volcanic national park|1 +(noun)|Lassen Volcanic National Park|national park +lassie|1 +(noun)|lass|young girl|jeune fille|girl|miss|missy|young lady|young woman|fille +lassitude|3 +(noun)|lethargy|sluggishness|torpor|torpidity +(noun)|languor|listlessness|apathy +(noun)|inanition|lethargy|weakness +lasso|3 +(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer +(noun)|lariat|riata|reata|rope +(verb)|rope|get|catch|capture +last|22 +(adj)|past +(adj)|last |antepenultimate|endmost|terminal|parting|parthian|penultimate|next-to-last|senior|fourth-year|subterminal|sunset|ultimate +(adj)|concluding|final|terminal|closing +(adj)|final|net|ultimate +(adj)|unlikely +(adj)|dying +(adj)|final|unalterable |inalterable +(adj)|last-place|lowest|worst +(adj)|utmost|high +(adj)|latest|newest|up-to-date|cutting-edge|with-it|fashionable |stylish +(noun)|stopping point|finale|finis|finish|conclusion|close|end|ending +(noun)|rank +(noun)|activity +(noun)|death|end|ending +(noun)|weight unit|weight +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|end|final stage|ending|conclusion|finish +(noun)|shoemaker's last|cobbler's last|holding device +(verb)|endure|measure +(verb)|survive|live|live on|go|endure|hold up|hold out +(adv)|most recently +(adv)|lastly|in conclusion|finally +last-ditch|1 +(adj)|ultimate +last-minute|1 +(adj)|unpunctual +last-place|1 +(adj)|last|lowest|worst +last but not least|1 +(adv)|last not least +last day|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +last frontier|1 +(noun)|Alaska|Last Frontier|AK|American state +last gasp|1 +(noun)|end|ending +last half|1 +(noun)|second half|half +last hurrah|1 +(noun)|swan song|performance +last in first out|1 +(noun)|LIFO|inventory accounting +last judgement|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +last judgment|1 +(noun)|Judgment Day|Judgement Day|Day of Judgment|Day of Judgement|Doomsday|Last Judgment|Last Judgement|Last Day|day of reckoning|doomsday|crack of doom|end of the world|day +last laugh|1 +(noun)|victory|triumph +last mentioned|1 +(adj)|latter +last mile|1 +(noun)|walk +last minute|1 +(noun)|eleventh hour|moment|minute|second|instant +last name|1 +(noun)|surname|family name|cognomen|name +last not least|1 +(adv)|last but not least +last out|1 +(verb)|stay|ride out|outride +last quarter|1 +(noun)|half-moon +last resort|1 +(noun)|pis aller|expedient +last respects|1 +(noun)|deference|respect +last rites|2 +(noun)|anointing of the sick|extreme unction|sacrament +(noun)|rite|religious rite +last straw|1 +(noun)|aggravation|irritation|provocation +last supper|1 +(noun)|Last Supper|Lord's Supper|Seder|Passover supper +last word|3 +(noun)|argument|statement +(noun)|authority +(noun)|chic|chicness|modishness|smartness|stylishness|swank|elegance +lastex|1 +(noun)|Lastex|thread|yarn +lasthenia|1 +(noun)|Lasthenia|genus Lasthenia|asterid dicot genus +lasthenia chrysostoma|1 +(noun)|goldfields|Lasthenia chrysostoma|wildflower|wild flower +lasting|5 +(adj)|permanent |abiding|enduring|imperishable|ageless|eternal|everlasting|perpetual|unending|unceasing|indissoluble|standing|ineradicable|stable|unchangeable +(adj)|durable|long-lasting|long-lived|long +(adj)|persistent +(adj)|stable +(adj)|everlasting|eternal|eonian|aeonian|immortal +lastingness|1 +(noun)|durability|enduringness|strength|permanence|permanency +lastly|1 +(adv)|last|in conclusion|finally +lastreopsis|1 +(noun)|Lastreopsis|genus Lastreopsis|fern genus +laszlo lowestein|1 +(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor|histrion|player|thespian|role player +lat|1 +(noun)|latisimus dorsi|skeletal muscle|striated muscle +latanier|1 +(noun)|latanier palm|fan palm +latanier palm|1 +(noun)|latanier|fan palm +latch|3 +(noun)|door latch|lock +(noun)|catch +(verb)|fasten|fix|secure +latch on|2 +(verb)|take up|fasten on|hook on|seize on|espouse|embrace|adopt|sweep up +(verb)|catch on|get wise|get onto|tumble|cotton on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +latched|1 +(adj)|barred|bolted|fast|locked|secured|fastened +latchkey|1 +(noun)|key +latchkey child|1 +(noun)|schoolchild|school-age child|pupil +latchstring|1 +(noun)|opener +late|10 +(adj)|late |advanced|ripe|after-hours|latish|posthumous +(adj)|belated|tardy|unpunctual +(adj)|recent|past +(adj)|dead +(adj)|late |Modern|New|New +(adj)|late |advanced|tardive +(adj)|former|previous|past +(adv)|belatedly|tardily +(adv)|deep +(adv)|recently|lately|of late|latterly +late-night hour|1 +(noun)|hour|time of day +late blight|1 +(noun)|blight +late greek|1 +(noun)|Late Greek|Greek|Hellenic|Hellenic language +late latin|1 +(noun)|Late Latin|Biblical Latin|Latin +late purple aster|1 +(noun)|aster +latecomer|1 +(noun)|arrival|arriver|comer +lateen|2 +(adj)|lateen-rigged|rigged +(noun)|lateen sail|fore-and-aft sail +lateen-rig|1 +(noun)|rig|rigging +lateen-rigged|1 +(adj)|lateen|rigged +lateen sail|1 +(noun)|lateen|fore-and-aft sail +lately|1 +(adv)|recently|late|of late|latterly +latency|3 +(noun)|rotational latency|time interval|interval +(noun)|reaction time|response time|latent period|time interval|interval +(noun)|potential|potentiality|potency +latency period|1 +(noun)|latency stage|latency phase|phase|stage +latency phase|1 +(noun)|latency stage|latency period|phase|stage +latency stage|1 +(noun)|latency phase|latency period|phase|stage +lateness|1 +(noun)|timing +latent|2 +(adj)|potential |possible +(adj)|inactive +latent content|1 +(noun)|message|content|subject matter|substance +latent diabetes|1 +(noun)|chemical diabetes|diabetes mellitus|DM +latent heat|1 +(noun)|heat of transformation|heat|heat energy +latent hostility|1 +(noun)|tension|hostility|enmity|antagonism +latent period|2 +(noun)|reaction time|response time|latency|time interval|interval +(noun)|time interval|interval +latent schizophrenia|1 +(noun)|borderline schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +later|11 +(adj)|future|ulterior|subsequent +(adj)|late |advanced|tardive +(adj)|late |advanced|ripe|after-hours|latish|posthumous +(adj)|belated|late|tardy|unpunctual +(adj)|late|recent|past +(adj)|late|dead +(adj)|late |Modern|New|New +(adj)|late |advanced|tardive +(adj)|former|late|previous|past +(adv)|subsequently|afterwards|afterward|after|later on +(adv)|by and by +later on|1 +(adv)|subsequently|later|afterwards|afterward|after +lateral|3 +(adj)|sidelong|side +(adj)|distal +(noun)|lateral pass|pass|passing play|passing game|passing +lateral cerebral sulcus|1 +(noun)|fissure of Sylvius|Sylvian fissure|sulcus lateralis cerebri|sulcus +lateral condyle|1 +(noun)|condyle +lateral epicondyle|1 +(noun)|epicondyle +lateral epicondylitis|1 +(noun)|tennis elbow|lateral humeral epicondylitis|tendinitis|tendonitis|epicondylitis +lateral geniculate body|1 +(noun)|corpus geniculatum laterale|geniculate body +lateral humeral epicondylitis|1 +(noun)|tennis elbow|lateral epicondylitis|tendinitis|tendonitis|epicondylitis +lateral line|1 +(noun)|lateral line organ|sense organ|sensory receptor|receptor +lateral line organ|1 +(noun)|lateral line|sense organ|sensory receptor|receptor +lateral pass|1 +(noun)|lateral|pass|passing play|passing game|passing +lateral rectus|1 +(noun)|abducens muscle|lateral rectus muscle|rectus lateralis|ocular muscle|eye muscle +lateral rectus muscle|1 +(noun)|abducens muscle|lateral rectus|rectus lateralis|ocular muscle|eye muscle +lateral thinking|1 +(noun)|heuristic|heuristic rule|heuristic program +lateral ventricle|1 +(noun)|ventricle +lateralisation|1 +(noun)|lateralization|laterality|localization of function|localisation of function|localization principle|localisation principle|localization|localisation +laterality|3 +(noun)|lateralization|lateralisation|localization of function|localisation of function|localization principle|localisation principle|localization|localisation +(noun)|handedness|asymmetry|imbalance +(noun)|dominance|bodily property +lateralization|1 +(noun)|lateralisation|laterality|localization of function|localisation of function|localization principle|localisation principle|localization|localisation +lateralize|1 +(verb)|move|displace +lateran|1 +(noun)|Lateran|site|land site +lateran council|1 +(noun)|Lateran Council|council +lateran palace|1 +(noun)|Lateran Palace|palace +lateran treaty|1 +(noun)|Lateran Treaty|covenant|compact|concordat +laterite|1 +(noun)|soil|dirt +latest|9 +(adj)|up-to-the-minute|current +(adj)|last|newest|up-to-date|cutting-edge|with-it|fashionable |stylish +(adj)|late |advanced|ripe|after-hours|latish|posthumous +(adj)|belated|late|tardy|unpunctual +(adj)|late|recent|past +(adj)|late|dead +(adj)|late |Modern|New|New +(adj)|late |advanced|tardive +(adj)|former|late|previous|past +latex|2 +(noun)|exudate|exudation +(noun)|latex paint|rubber-base paint|water-base paint +latex paint|1 +(noun)|latex|rubber-base paint|water-base paint +lath|1 +(noun)|slat|spline +lath and plaster|1 +(noun)|building material +lathe|1 +(noun)|shaper|shaping machine +lathee|1 +(noun)|lathi|club +lather|8 +(noun)|soapsuds|suds|foam|froth +(noun)|fret|stew|sweat|swither|agitation +(noun)|workman|working man|working person +(noun)|foam|froth +(verb)|cover +(verb)|flog|welt|whip|lash|slash|strap|trounce|beat|beat up|work over +(verb)|foam|froth|fizz|effervesce|sparkle +(verb)|soap|cleanse|clean +lathery|1 +(adj)|foam|froth|foam|froth +lathi|1 +(noun)|lathee|club +lathyrus|1 +(noun)|Lathyrus|genus Lathyrus|rosid dicot genus +lathyrus hirsutus|1 +(noun)|singletary pea|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea +lathyrus japonicus|1 +(noun)|beach pea|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea +lathyrus latifolius|1 +(noun)|broad-leaved everlasting pea|perennial pea|Lathyrus latifolius|everlasting pea +lathyrus maritimus|1 +(noun)|beach pea|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea +lathyrus niger|1 +(noun)|black pea|Lathyrus niger|vetchling +lathyrus nissolia|1 +(noun)|grass vetch|grass vetchling|Lathyrus nissolia|vetchling +lathyrus odoratus|1 +(noun)|sweet pea|sweetpea|Lathyrus odoratus|vine +lathyrus palustris|1 +(noun)|marsh pea|Lathyrus palustris|wild pea +lathyrus pratensis|1 +(noun)|common vetchling|meadow pea|yellow vetchling|Lathyrus pratensis|wild pea +lathyrus sativus|1 +(noun)|grass pea|Indian pea|khesari|Lathyrus sativus|vetchling +lathyrus splendens|1 +(noun)|pride of California|Lathyrus splendens|wild pea +lathyrus sylvestris|1 +(noun)|flat pea|narrow-leaved everlasting pea|Lathyrus sylvestris|everlasting pea +lathyrus tuberosus|1 +(noun)|heath pea|earth-nut pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine +lathyrus vernus|1 +(noun)|spring vetchling|spring vetch|Lathyrus vernus|vetchling +laticifer|1 +(noun)|duct +latimeria|1 +(noun)|Latimeria|genus Latimeria|fish genus +latimeria chalumnae|1 +(noun)|coelacanth|Latimeria chalumnae|crossopterygian|lobefin|lobe-finned fish +latimeridae|1 +(noun)|Latimeridae|family Latimeridae|fish family +latin|8 +(adj)|Latin|Italic|Italic language +(adj)|Latin|emotional +(adj)|Latin +(adj)|Romance|Latin|Latin +(adj)|Latin|Italian region +(noun)|Latin|Italic|Italic language +(noun)|Latin|inhabitant|dweller|denizen|indweller +(noun)|Latin|person|individual|someone|somebody|mortal|human|soul +latin-american|1 +(adj)|Latin-American|geographical area|geographic area|geographical region|geographic region +latin alphabet|1 +(noun)|Roman alphabet|Latin alphabet|alphabet +latin america|1 +(noun)|Latin America|geographical area|geographic area|geographical region|geographic region +latin american|1 +(noun)|Latin American|Spanish American|resident|occupant|occupier +latin cross|1 +(noun)|Latin cross|cross +latin quarter|1 +(noun)|Left Bank|Latin Quarter|vicinity|locality|neighborhood|neighbourhood|neck of the woods +latin square|1 +(noun)|Latin square|square matrix +latinate|1 +(adj)|Italic|Italic language +latinesce|1 +(noun)|Latinesce|artificial language +latinian language|1 +(noun)|Romance|Romance language|Latinian language|Latin +latinise|2 +(verb)|Romanize|Romanise|latinize|transliterate|transcribe +(verb)|catholicize|catholicise|latinize|convert +latinist|1 +(noun)|Latinist|classicist|classical scholar +latinize|3 +(verb)|Romanize|Romanise|latinise|transliterate|transcribe +(verb)|translate|interpret|render +(verb)|catholicize|catholicise|latinise|convert +latino|3 +(adj)|Hispanic|Latino|American +(noun)|Spanish American|Hispanic American|Hispanic|Latino|American +(noun)|Latino|artificial language +latino sine flexione|1 +(noun)|Latino sine flexione|Latino +latish|1 +(adj)|late +latisimus dorsi|1 +(noun)|lat|skeletal muscle|striated muscle +latitude|4 +(noun)|angular distance +(noun)|liberty +(noun)|line of latitude|parallel of latitude|parallel|line +(noun)|scope|range|reach|orbit|compass|ambit +latitudinal|1 +(adj)|angular distance +latitudinarian|2 +(adj)|free-thinking|undogmatic|undogmatical|broad-minded +(noun)|liberal|progressive +latium|1 +(noun)|Latium|Lazio|Italian region +latke|1 +(noun)|potato pancake|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +latona|1 +(noun)|Leto|Latona|Greco-Roman deity|Graeco-Roman deity +latria|1 +(noun)|adoration|worship +latrine|1 +(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room +latrobe|1 +(noun)|Latrobe|Benjamin Henry Latrobe|architect|designer +latrodectus|1 +(noun)|Latrodectus|genus Latrodectus|arthropod genus +latrodectus mactans|1 +(noun)|black widow|Latrodectus mactans|spider +lats|2 +(noun)|Latvian monetary unit +(noun)|latisimus dorsi|lat|skeletal muscle|striated muscle +latte|1 +(noun)|caffe latte|espresso +latten|1 +(noun)|brass +latter|2 +(adj)|latter |last mentioned +(noun)|second +latter-day|1 +(adj)|present +latter-day saint|1 +(noun)|Latter-day Saint|Mormon|Protestant +latterly|1 +(adv)|recently|late|lately|of late +lattice|3 +(noun)|arrangement|organization|organisation|system +(noun)|wicket|grille|opening +(noun)|latticework|fretwork|framework|frame|framing +latticed|1 +(adj)|fretted|interlaced|latticelike|reticulate |reticulated|reticular +latticelike|1 +(adj)|fretted|interlaced|latticed|reticulate |reticulated|reticular +latticework|1 +(noun)|lattice|fretwork|framework|frame|framing +latvia|1 +(noun)|Latvia|Republic of Latvia|Baltic State|Baltic Republic +latvian|3 +(adj)|Latvian|Baltic State|Baltic Republic +(noun)|Latvian|European +(noun)|Latvian|Lettish|Baltic|Baltic language +latvian monetary unit|1 +(noun)|Latvian monetary unit|monetary unit +laud|1 +(verb)|extol|exalt|glorify|proclaim|praise +laudable|1 +(adj)|applaudable|commendable|praiseworthy|worthy +laudably|1 +(adv)|admirably|praiseworthily|commendable +laudanum|1 +(noun)|tincture of opium|opiate +laudator|1 +(noun)|lauder|extoller|communicator +laudatory|1 +(adj)|praiseful|praising|complimentary +lauder|2 +(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer|vocalist|vocalizer|vocaliser|comedian|comic +(noun)|laudator|extoller|communicator +laudo|1 +(noun)|Laudo|mountain peak +laugh|4 +(noun)|laughter|utterance|vocalization +(noun)|facial expression|facial gesture +(noun)|joke|gag|jest|jape|wit|humor|humour|witticism|wittiness +(verb)|express joy|express mirth|express emotion|express feelings|laugh off|laugh away|laugh at +laugh at|1 +(verb)|ridicule|roast|guy|blackguard|jest at|rib|make fun|poke fun|mock|bemock +laugh away|1 +(verb)|laugh off|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +laugh line|2 +(noun)|crow's foot|crow's feet|wrinkle|furrow|crease|crinkle|seam|line +(noun)|punch line|gag line|tag line|line +laugh loudly|1 +(verb)|guffaw|laugh|express joy|express mirth +laugh off|1 +(verb)|laugh away|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +laugh softly|1 +(verb)|chuckle|chortle|laugh|express joy|express mirth +laugh track|1 +(noun)|soundtrack +laughable|2 +(adj)|absurd|cockeyed|derisory|idiotic|ludicrous|nonsensical|preposterous|ridiculous|foolish +(adj)|amusing|comic|comical|funny|mirthful|risible|humorous |humourous +laughably|1 +(adv)|ridiculously|ludicrously|preposterously +laugher|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|runaway|blowout|romp|shoo-in|walkaway|victory|triumph +laughing|1 +(adj)|riant|happy +laughing gas|1 +(noun)|nitrous oxide|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +laughing gull|1 +(noun)|blackcap|pewit|pewit gull|Larus ridibundus|gull|seagull|sea gull +laughing hyena|1 +(noun)|spotted hyena|Crocuta crocuta|hyena|hyaena +laughing jackass|2 +(noun)|kookaburra|Dacelo gigas|kingfisher +(noun)|laughing owl|Sceloglaux albifacies|owl|bird of Minerva|bird of night|hooter +laughing owl|1 +(noun)|laughing jackass|Sceloglaux albifacies|owl|bird of Minerva|bird of night|hooter +laughingstock|1 +(noun)|butt|goat|stooge|victim|dupe +laughter|2 +(noun)|laugh|utterance|vocalization +(noun)|activity|expression|manifestation|reflection|reflexion +laughton|1 +(noun)|Laughton|Charles Laughton|actor|histrion|player|thespian|role player +lauhala|1 +(noun)|textile screw pine|Pandanus tectorius|pandanus|screw pine +launce|1 +(noun)|sand lance|sand launce|sand eel|spiny-finned fish|acanthopterygian +launch|8 +(noun)|motorboat|powerboat +(noun)|launching|propulsion|actuation +(verb)|establish|set up|found|open|open up +(verb)|propel|impel +(verb)|set in motion +(verb)|plunge|get down|begin|get|start out|start|set about|set out|commence +(verb)|set in motion|move|displace +(verb)|smooth|smoothen +launch area|1 +(noun)|launching pad|launchpad|launch pad|pad|platform +launch pad|2 +(noun)|launching pad|launchpad|launch area|pad|platform +(noun)| +launcher|2 +(noun)|rocket launcher|armament +(noun)|catapult|device +launching|3 +(noun)|propulsion|actuation +(noun)|introduction|debut|first appearance|unveiling|entry|beginning|start|commencement +(noun)|launch|propulsion|actuation +launching pad|1 +(noun)|launchpad|launch pad|launch area|pad|platform +launching site|1 +(noun)|site|land site +launchpad|1 +(noun)|launching pad|launch pad|launch area|pad|platform +launder|2 +(verb)|wash|clean|make clean +(verb)|change|exchange|commute|convert +launderette|1 +(noun)|Laundromat|laundry +laundering|1 +(noun)|wash|washing|lavation +laundress|1 +(noun)|washwoman|washerwoman|laundrywoman|washer +laundromat|1 +(noun)|launderette|Laundromat|laundry +laundry|2 +(noun)|wash|washing|washables|garment|white goods|household linen +(noun)|workplace|work +laundry basket|1 +(noun)|clothes hamper|clothes basket|voider|hamper +laundry cart|1 +(noun)|handcart|pushcart|cart|go-cart +laundry detergent|1 +(noun)|detergent +laundry truck|1 +(noun)|van +laundryman|1 +(noun)|washerman|washer +laundrywoman|1 +(noun)|washwoman|washerwoman|laundress|washer +lauraceae|1 +(noun)|Lauraceae|family Lauraceae|laurel family|magnoliid dicot family +laurasia|1 +(noun)|Laurasia|continent +laureate|2 +(adj)|honorable |honourable +(noun)|honoree +laurel|2 +(noun)|angiospermous tree|flowering tree +(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian|comic +laurel-tree|1 +(noun)|red bay|Persea borbonia|laurel +laurel and hardy|1 +(noun)|Laurel and Hardy|duet|duette|duo +laurel cherry|2 +(noun)|cherry laurel|Prunus laurocerasus|shrub|bush +(noun)|cherry laurel|mock orange|wild orange|Prunus caroliniana|angiospermous tree|flowering tree +laurel family|1 +(noun)|Lauraceae|family Lauraceae|magnoliid dicot family +laurel oak|2 +(noun)|pin oak|Quercus laurifolia|oak|oak tree +(noun)|shingle oak|Quercus imbricaria|oak|oak tree +laurel sumac|1 +(noun)|Malosma laurina|Rhus laurina|shrub|bush +laurel willow|1 +(noun)|bay willow|Salix pentandra|willow|willow tree +laurel wreath|2 +(noun)|decoration|medal|medallion|palm|ribbon|award|accolade|honor|honour|laurels +(noun)|laurels|bay wreath|wreath|garland|coronal|chaplet|lei +laureled|1 +(adj)|laureled |laurelled|crowned +laurelled|1 +(adj)|laureled |crowned +laurels|5 +(noun)|award|accolade|honor|honour|symbol +(noun)|honor|honour|standing +(noun)|laurel wreath|bay wreath|wreath|garland|coronal|chaplet|lei +(noun)|laurel|angiospermous tree|flowering tree +(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian|comic +laurelwood|1 +(noun)|lancewood tree|Calophyllum candidissimum|tree +laurence olivier|1 +(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor|histrion|player|thespian|role player +laurence stephen lowry|1 +(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter +laurence sterne|1 +(noun)|Sterne|Laurence Sterne|writer|author +laurens|1 +(noun)|Laurens|Henry Laurens|American Revolutionary leader +laurentius|1 +(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr|saint +lauric acid|1 +(noun)|dodecanoic acid|saturated fatty acid +lauritz lebrecht hommel melchior|1 +(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor +lauritz melchior|1 +(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor +laurus|1 +(noun)|Laurus|genus Laurus|magnoliid dicot genus +laurus nobilis|1 +(noun)|true laurel|bay|bay laurel|bay tree|Laurus nobilis|laurel +lauryl alcohol|1 +(noun)|1-dodecanol|alcohol +lausanne|1 +(noun)|Lausanne|city|metropolis|urban center +lautaro faction of the united popular action movement|1 +(noun)|Lautaro Youth Movement|Lautaro Faction of the United Popular Action Movement|Lautaro Popular Rebel Forces|terrorist organization|terrorist group|foreign terrorist organization|FTO +lautaro popular rebel forces|1 +(noun)|Lautaro Youth Movement|Lautaro Faction of the United Popular Action Movement|Lautaro Popular Rebel Forces|terrorist organization|terrorist group|foreign terrorist organization|FTO +lautaro youth movement|1 +(noun)|Lautaro Youth Movement|Lautaro Faction of the United Popular Action Movement|Lautaro Popular Rebel Forces|terrorist organization|terrorist group|foreign terrorist organization|FTO +lav|1 +(noun)|toilet|lavatory|can|john|privy|bathroom|room +lava|1 +(noun)|volcanic rock +lavabo|1 +(noun)|washbasin|handbasin|washbowl|wash-hand basin|basin +lavage|1 +(noun)|irrigation +lavalava|1 +(noun)|skirt +lavalier|1 +(noun)|lavaliere|lavalliere|pendant +lavaliere|1 +(noun)|lavalier|lavalliere|pendant +lavalliere|1 +(noun)|lavaliere|lavalier|pendant +lavandula|1 +(noun)|Lavandula|genus Lavandula|asterid dicot genus +lavandula angustifolia|1 +(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender +lavandula latifolia|1 +(noun)|spike lavender|French lavender|Lavandula latifolia|lavender +lavandula officinalis|1 +(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender +lavandula stoechas|1 +(noun)|French lavender|Lavandula stoechas|lavender +lavatera|1 +(noun)|Lavatera|genus Lavatera|dilleniid dicot genus +lavatera arborea|1 +(noun)|tree mallow|velvetleaf|velvet-leaf|Lavatera arborea|shrub|bush +lavation|1 +(noun)|wash|washing|work +lavatory|3 +(noun)|toilet|lav|can|john|privy|bathroom|room +(noun)|washbasin|basin|washbowl|washstand|sink +(noun)|flush toilet|toilet|can|commode|crapper|pot|potty|stool|throne +lave|3 +(verb)|lap|wash|flow +(verb)|wash|cleanse|clean +(verb)|wash up|freshen|refresh|refreshen|freshen up +lavender|2 +(adj)|lilac|chromatic +(noun)|shrub|bush +lavender cotton|1 +(noun)|Santolina chamaecyparissus|shrub|bush +laver|4 +(noun)|Laver|Rod Laver|Rodney George Laver|tennis player +(noun)|basin +(noun)|red laver|red algae +(noun)|sea lettuce|green algae|chlorophyte +lavish|3 +(adj)|munificent|overgenerous|prodigal|too-generous|unsparing|unstinted|unstinting|generous +(adj)|lucullan|lush|plush|plushy|rich +(verb)|shower|consume|squander|waste|ware +lavishly|2 +(adv)|extravagantly +(adv)|richly|extravagantly +lavishness|2 +(noun)|luxury|sumptuosity|sumptuousness|expensiveness +(noun)|extravagance|prodigality|highlife|high life|waste|wastefulness|dissipation +lavoisier|1 +(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist +lavrenti pavlovich beria|1 +(noun)|Beria|Lavrenti Pavlovich Beria|captain|police captain|police chief +law|7 +(noun)|legal document|legal instrument|official document|instrument +(noun)|jurisprudence|collection|aggregation|accumulation|assemblage +(noun)|law of nature|concept|conception|construct +(noun)|natural law|concept|conception|construct +(noun)|practice of law|learned profession +(noun)|police|police force|constabulary|force|personnel|law enforcement agency +(noun)|jurisprudence|legal philosophy|philosophy +law-abiding|2 +(adj)|peaceful|orderly +(adj)|observant|lawful +law-breaking|1 +(noun)|crime|transgression|evildoing +law-makers|2 +(noun)|legislature|legislative assembly|general assembly|assembly +(noun)|lawgiver|lawmaker|leader +law agent|1 +(noun)|solicitor +law degree|1 +(noun)|academic degree|degree +law enforcement|1 +(noun)|enforcement +law enforcement agency|1 +(noun)|agency|federal agency|government agency|bureau|office|authority +law firm|1 +(noun)|firm|house|business firm +law merchant|1 +(noun)|mercantile law|commercial law|law|jurisprudence +law of action and reaction|1 +(noun)|third law of motion|Newton's third law of motion|Newton's third law|Newton's law of motion|Newton's law|law of motion +law of archimedes|1 +(noun)|Archimedes' principle|law of Archimedes|law|law of nature +law of areas|1 +(noun)|Kepler's second law|law of equal areas|Kepler's law|Kepler's law of planetary motion +law of averages|1 +(noun)|law|law of nature +law of chemical equilibrium|1 +(noun)|equilibrium law|law|law of nature +law of closure|1 +(noun)|closure|Gestalt law of organization|Gestalt principle of organization +law of common fate|1 +(noun)|common fate|Gestalt law of organization|Gestalt principle of organization +law of conservation of energy|1 +(noun)|conservation of energy|first law of thermodynamics|conservation|law of thermodynamics +law of conservation of mass|1 +(noun)|conservation of mass|conservation of matter|law of conservation of matter|conservation +law of conservation of matter|1 +(noun)|conservation of mass|conservation of matter|law of conservation of mass|conservation +law of constant proportion|1 +(noun)|law of definite proportions|law|law of nature +law of continuation|1 +(noun)|good continuation|continuation|Gestalt law of organization|Gestalt principle of organization +law of definite proportions|1 +(noun)|law of constant proportion|law|law of nature +law of diminishing returns|1 +(noun)|law|law of nature +law of effect|1 +(noun)|law|law of nature +law of equal areas|1 +(noun)|Kepler's second law|law of areas|Kepler's law|Kepler's law of planetary motion +law of equivalent proportions|1 +(noun)|law of reciprocal proportions|law|law of nature +law of gravitation|1 +(noun)|Newton's law of gravitation|law|law of nature +law of independent assortment|1 +(noun)|Mendel's law +law of large numbers|1 +(noun)|Bernoulli's law|law|law of nature +law of mass action|1 +(noun)|law|law of nature +law of moses|1 +(noun)|Mosaic law|Law of Moses|law|jurisprudence +law of motion|1 +(noun)|Newton's law of motion|Newton's law|law|law of nature +law of multiple proportions|1 +(noun)|Dalton's law|law|law of nature +law of nations|1 +(noun)|international law|law|jurisprudence +law of nature|1 +(noun)|law|concept|conception|construct +law of parsimony|1 +(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|principle|rule +law of partial pressures|1 +(noun)|Dalton's law|Dalton's law of partial pressures|law|law of nature +law of proximity|1 +(noun)|proximity|Gestalt law of organization|Gestalt principle of organization +law of reciprocal proportions|1 +(noun)|law of equivalent proportions|law|law of nature +law of segregation|1 +(noun)|Mendel's law +law of similarity|1 +(noun)|similarity|Gestalt law of organization|Gestalt principle of organization +law of the land|1 +(noun)|law|jurisprudence +law of thermodynamics|1 +(noun)|law|law of nature +law of volumes|1 +(noun)|Gay-Lussac's law|Charles's law|law|law of nature +law offender|1 +(noun)|violator|lawbreaker|criminal|felon|crook|outlaw|malefactor +law officer|1 +(noun)|lawman|peace officer|defender|guardian|protector|shielder +law practice|1 +(noun)|practice +law school|1 +(noun)|school of law|graduate school|grad school +law student|1 +(noun)|student|pupil|educatee +lawbreaker|1 +(noun)|violator|law offender|criminal|felon|crook|outlaw|malefactor +lawcourt|1 +(noun)|room +lawful|4 +(adj)|lawful |law-abiding|observant|legal|straight +(adj)|orderly|rule-governed|regular +(adj)|true|rightful|legitimate +(adj)|legitimate|licit|legal +lawfully|2 +(adv)|legitimately|licitly +(adv)|legally|wrongfully|de jure +lawfully-begotten|1 +(adj)|legitimate +lawfulness|1 +(noun)|quality +lawgiver|1 +(noun)|lawmaker|leader +lawless|3 +(adj)|anarchic|anarchical|uncontrolled +(adj)|open|wide-open|unlawful +(adj)|outlaw|unlawful +lawlessly|1 +(adv)|illegally|illicitly +lawlessness|2 +(noun)|anarchy|disorder +(noun)|outlawry|illegality +lawmaker|1 +(noun)|lawgiver|leader +lawmaking|1 +(noun)|legislation|legislating|government|governing|governance|government activity +lawman|1 +(noun)|law officer|peace officer|defender|guardian|protector|shielder +lawn|1 +(noun)|field +lawn bowling|1 +(noun)|bowling +lawn cart|1 +(noun)|barrow|garden cart|wheelbarrow|handcart|pushcart|cart|go-cart +lawn chair|1 +(noun)|garden chair|chair +lawn furniture|1 +(noun)|furniture|piece of furniture|article of furniture +lawn mower|1 +(noun)|mower|garden tool|lawn tool +lawn party|1 +(noun)|garden party|fete champetre|party +lawn tennis|1 +(noun)|tennis|court game +lawn tool|1 +(noun)|garden tool|tool +lawrence|7 +(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr|saint +(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier|writer|author +(noun)|Lawrence|Sir Thomas Lawrence|painter +(noun)|Lawrence|Gertrude Lawrence|actress +(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist +(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer|author +(noun)|Lawrence|town +lawrence durrell|1 +(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer|author +lawrence george durrell|1 +(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer|author +lawrence of arabia|1 +(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier|writer|author +lawrence peter berra|1 +(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer|baseball player +lawrencium|1 +(noun)|Lw|atomic number 103|chemical element|element +laws|8 +(noun)|Torah|Pentateuch|Laws|sacred text|sacred writing|religious writing|religious text +(noun)|law|legal document|legal instrument|official document|instrument +(noun)|law|jurisprudence|collection|aggregation|accumulation|assemblage +(noun)|law|law of nature|concept|conception|construct +(noun)|law|natural law|concept|conception|construct +(noun)|law|practice of law|learned profession +(noun)|police|police force|constabulary|law|force|personnel|law enforcement agency +(noun)|jurisprudence|law|legal philosophy|philosophy +lawson's cedar|1 +(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar|cedar tree +lawson's cypress|1 +(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar|cedar tree +lawsuit|1 +(noun)|suit|case|cause|causa|proceeding|legal proceeding|proceedings +lawton|1 +(noun)|Lawton|town +lawyer|1 +(noun)|attorney|professional|professional person +lawyer-client relation|1 +(noun)|attorney-client relation|fiduciary relation +lawyer bush|2 +(noun)|lawyerbush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush +(noun)| +lawyer cane|1 +(noun)|Calamus australis|calamus +lawyerbush|1 +(noun)|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush +lax|6 +(adj)|slack|negligent +(adj)|lax +(adj)|lax |drooping|droopy|sagging|floppy|loose|slack|loose-jointed|relaxed|tensionless|loose +(adj)|flaccid|limp|slack|weak +(adj)|indulgent|lenient|soft|permissive +(adj)|loose|unconstipated |regular +laxation|2 +(noun)|defecation|shitting|elimination|evacuation|excretion|excreting|voiding +(noun)|loosening|alteration|modification|adjustment +laxative|2 +(adj)|laxative |aperient|cathartic|evacuant|purgative +(noun)|purgative|cathartic|physic|aperient +laxity|1 +(noun)|laxness|remissness|negligence|neglect|neglectfulness +laxly|1 +(adv)|leniently +laxness|1 +(noun)|laxity|remissness|negligence|neglect|neglectfulness +lay|16 +(adj)|laic|secular|profane +(adj)|nonprofessional +(noun)|ballad|song +(noun)|ballad|poem|verse form +(verb)|put|set|place|pose|position|move|displace|lay out +(verb)|put down|repose|put|set|place|pose|position|lay over|lay away|lay aside +(verb)|organize|organise|prepare|devise|get up|machinate +(verb)|put down|repose +(verb)|levy|impose +(verb)|lie|be +(verb)|lie +(verb)|dwell|consist|lie|belong|lie in|exist|be +(verb)|lie|be +(verb)|lie|misinform|mislead +(verb)|lie|rest|be +(verb)|lie down|lie|change posture +lay-by|2 +(noun)|layby|pull-off|rest area|rest stop|area +(noun)| +lay-up|2 +(noun)|layup|basketball shot +(noun)| +lay aside|1 +(verb)|save|save up +lay away|1 +(verb)|hoard|stash|cache|hive up|squirrel away|save|lay aside|save up +lay claim|1 +(verb)|claim|arrogate|request|bespeak|call for|quest +lay down|2 +(verb)|establish|make|make|create +(verb)|lie down|lie|change posture +lay eyes on|1 +(verb)|behold|see +lay figure|1 +(noun)|dummy +lay hands on|1 +(verb)|manipulate +lay in|3 +(verb)|store|hive away|put in|salt away|stack away|stash away|keep|hold on +(verb)|dwell|consist|lie|belong|lie in|exist|be +(verb)|lie in +lay into|1 +(verb)|lam into|tear into|lace into|pitch into|hit +lay off|2 +(verb)|discontinue|stop|cease|give up|quit +(verb)|furlough|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +lay on the line|1 +(verb)|risk|put on the line|try|seek|attempt|essay|assay +lay out|4 +(verb)|range|array|set out|arrange|set up +(verb)|set up|set|fix|prepare|set up|ready|gear up|set +(verb)|present|represent|state|say|tell +(verb)|plan +lay over|2 +(verb)|stop over|stop|stop over +(verb)|superimpose|superpose|put|set|place|pose|position|lay +lay reader|1 +(noun)|layman|layperson +lay to rest|1 +(verb)|bury|entomb|inhume|inter|lay|put down|repose +lay up|1 +(verb)|disable|disenable|incapacitate +lay waste to|1 +(verb)|waste|devastate|desolate|ravage|scourge|destroy|ruin +lay witness|1 +(noun)|witness +layabout|1 +(noun)|idler|loafer|do-nothing|bum|nonworker +layby|1 +(noun)|lay-by|pull-off|rest area|rest stop|area +layer|6 +(noun)|bed|sheet|flat solid +(noun)|region|part +(noun)|level|stratum|place +(noun)|hen|biddy +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(verb)|form +layer cake|1 +(noun)|cake +layered|1 +(adj)|superimposed|stratified |bedded +layette|1 +(noun)|kit|outfit +layia|1 +(noun)|Layia|genus Layia|asterid dicot genus +layia platyglossa|1 +(noun)|tidytips|tidy tips|Layia platyglossa|flower +laying|1 +(noun)|egg laying|parturition|birth|giving birth|birthing +laying claim|1 +(noun)|assumption|acquisition +laying on|1 +(noun)|contact +laying on of hands|2 +(noun)|faith healing|faith cure +(noun)|ordination|ordinance +laying waste|1 +(noun)|ruin|ruining|ruination|wrecking|destruction|devastation +layman|1 +(noun)|layperson|commoner|common man|common person +layoff|1 +(noun)|closure|closedown|closing|shutdown +layout|2 +(noun)|design|plan +(noun)|order|ordering +layover|1 +(noun)|stop|stopover|stay +layperson|1 +(noun)|layman|commoner|common man|common person +layup|1 +(noun)|lay-up|basketball shot +lazar|1 +(noun)|leper|sick person|diseased person|sufferer +lazar house|1 +(noun)|lazaretto|lazaret|lazarette|pesthouse|hospital|infirmary +lazaret|1 +(noun)|lazaretto|lazarette|lazar house|pesthouse|hospital|infirmary +lazarette|1 +(noun)|lazaretto|lazaret|lazar house|pesthouse|hospital|infirmary +lazaretto|2 +(noun)|lazaret|lazarette|lazar house|pesthouse|hospital|infirmary +(noun)|glory hole|cabinet|locker|storage locker +lazarus|2 +(noun)|Lazarus|dead person|dead soul|deceased person|deceased|decedent|departed +(noun)|Lazarus|beggar|mendicant +laze|1 +(verb)|idle|slug|stagnate +lazily|1 +(adv)|idly +laziness|2 +(noun)|indolence|inactiveness|inactivity|inertia +(noun)|sloth|acedia|mortal sin|deadly sin +lazio|1 +(noun)|Latium|Lazio|Italian region +lazuli|1 +(noun)|lapis lazuli|opaque gem +lazuline|1 +(noun)|azure|cerulean|sapphire|sky-blue|blue|blueness +lazy|2 +(adj)|slow +(adj)|faineant|indolent|otiose|slothful|work-shy|idle +lazy daisy stitch|1 +(noun)|stitch +lazy susan|1 +(noun)|turntable|lazy Susan|tray +lazybones|1 +(noun)|idler|loafer|do-nothing|layabout|bum +lazzaro spallanzani|1 +(noun)|Spallanzani|Lazzaro Spallanzani|physiologist +lb|1 +(noun)|pound|avoirdupois unit +lbf.|1 +(noun)|pound|force unit +lbj|1 +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +lcd|1 +(noun)|liquid crystal display|LCD|digital display|alphanumeric display +lcm|1 +(noun)|lowest common multiple|least common multiple|multiple +ld.|1 +(noun)|limited company|Ltd.|Ld.|company +ldl|1 +(noun)|low-density lipoprotein|LDL|beta-lipoprotein|lipoprotein +ldl cholesterol|1 +(noun)|LDL cholesterol|cholesterol|cholesterin +le|1 +(noun)|lupus erythematosus|LE|lupus|autoimmune disease|autoimmune disorder +le carre|1 +(noun)|le Carre|John le Carre|David John Moore Cornwell|writer|author +le chatelier|1 +(noun)|le Chatelier|Henry le Chatelier|chemist +le chatelier's law|1 +(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle|rule +le chatelier's principle|1 +(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle|rule +le chatelier-braun principle|1 +(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle|rule +le chatelier principle|1 +(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle|rule +le corbusier|1 +(noun)|Le Corbusier|Charles Edouard Jeanneret|architect|designer +le douanier rousseau|1 +(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter +le duc tho|1 +(noun)|Le Duc Tho|diplomat|diplomatist +le gallienne|1 +(noun)|Le Gallienne|Eva Le Gallienne|actress +le havre|1 +(noun)|Le Havre|city|metropolis|urban center|port +le notre|1 +(noun)|Le Notre|Andre Le Notre|landscape architect|landscape gardener|landscaper|landscapist +lea|2 +(noun)|linear unit +(noun)|pasture|pastureland|grazing land|ley|grassland +leach|4 +(noun)|leaching|natural process|natural action|action|activity +(verb)|remove|take|take away|withdraw +(verb)|percolate|trickle|dribble|filter +(verb)|strip|remove|take|take away|withdraw +leaching|1 +(noun)|leach|natural process|natural action|action|activity +leacock|1 +(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist|economic expert|humorist|humourist +lead|31 +(noun)|Pb|atomic number 82|metallic element|metal +(noun)|advantage|vantage +(noun)|track|trail|evidence|grounds +(noun)|leadership|leading +(noun)|angle +(noun)|lead-in|section|subdivision +(noun)|star|principal|actor|histrion|player|thespian|role player +(noun)|position|place +(noun)|tip|steer|confidential information|wind|hint|guidance|counsel|counseling|counselling|direction +(noun)|lead story|news article|news story|newspaper article +(noun)|spark advance|timing +(noun)|leash|tether|restraint|constraint +(noun)|leading|strip|slip +(noun)|pencil lead|graphite|black lead|plumbago +(noun)|jumper cable|jumper lead|jumper|wire|conducting wire +(noun)|turn|play +(verb)|take|direct|conduct|guide +(verb)|leave|result|bring about +(verb)|leave|result +(verb)|head|precede +(verb)|induce|stimulate|cause|have|get|make +(verb)|run|go|pass|extend|be +(verb)|head|direct +(verb)|top +(verb)|contribute|conduce|promote|advance|boost|further|encourage +(verb)|conduct|direct|perform|execute|do +(verb)|spend|pass +(verb)|go|be +(verb)|precede|travel|go|move|locomote +(verb)|run|pass|make pass +(verb)|moderate|chair|hash out|discuss|talk over +lead-acid accumulator|1 +(noun)|lead-acid battery|storage battery|accumulator +lead-acid battery|1 +(noun)|lead-acid accumulator|storage battery|accumulator +lead-free|1 +(adj)|nonleaded|unleaded |leadless +lead-in|2 +(noun)|lead|section|subdivision +(noun)|wire|conducting wire +lead acetate|1 +(noun)|sugar of lead|acetate|ethanoate|dye|dyestuff +lead arsenate|1 +(noun)|insecticide|insect powder +lead astray|3 +(verb)|lead off|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|mislead|misdirect|misguide|lead|take|direct|conduct|guide +(verb)|deceive|betray|misinform|mislead +lead bank|1 +(noun)|agent bank|depository financial institution|bank|banking concern|banking company +lead by the nose|1 +(verb)|bamboozle|snow|hoodwink|pull the wool over someone's eyes|play false|deceive|betray|lead astray +lead carbonate|1 +(noun)|white lead|pigment +lead chromate|1 +(noun)|chromate +lead colic|1 +(noun)|painter's colic|colic|intestinal colic +lead glass|1 +(noun)|glass +lead line|1 +(noun)|sounding line|plumb line|perpendicular +lead off|2 +(verb)|lead astray|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|begin|start|commence +lead on|2 +(verb)|entice|lure|tempt +(verb)|deceive|delude|cozen|victimize|victimise +lead ore|1 +(noun)|ore +lead pencil|1 +(noun)|pencil +lead plant|2 +(noun)|leadplant|Amorpha canescens|amorpha +(noun)| +lead poisoning|1 +(noun)|plumbism|saturnism|illness|unwellness|malady|sickness +lead sheet|1 +(noun)|sheet music +lead story|1 +(noun)|lead|news article|news story|newspaper article +lead tetraethyl|1 +(noun)|tetraethyl lead|antiknock +lead time|1 +(noun)|time interval|interval +lead tree|1 +(noun)|white popinac|Leucaena glauca|Leucaena leucocephala|tree +lead up|1 +(verb)|initiate|originate|initiate|start +leadbelly|1 +(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player|composer +leaded|3 +(adj)|fixed +(adj)|leaded |antiknock +(adj)|spaced +leaded bronze|1 +(noun)|bronze +leaded gasoline|1 +(noun)|gasoline|gasolene|gas|petrol +leaden|4 +(adj)|dull|gray|grey|cloudy +(adj)|weighted|heavy +(adj)|plodding|effortful +(adj)|heavy|dull +leader|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|drawing card|loss leader|feature +leaders|3 +(noun)|leadership|body +(noun)|leader|person|individual|someone|somebody|mortal|human|soul +(noun)|drawing card|loss leader|leader|feature +leadership|4 +(noun)|leading|activity +(noun)|leaders|body +(noun)|status|position +(noun)|ability|power +leading|7 +(adj)|prima|star|starring|stellar|major +(adj)|leading |directing|directional|directive|guiding|guiding +(adj)|greatest|preeminent|superior +(adj)|ahead|in the lead|up +(adj)|purposeful +(noun)|lead|strip|slip +(noun)|leadership|activity +leading astray|1 +(noun)|leading off|enticement|temptation +leading edge|1 +(noun)|edge +leading indicator|1 +(noun)|index|index number|indicant|indicator +leading lady|1 +(noun)|actress +leading light|1 +(noun)|luminary|guiding light|notable|notability|celebrity|famous person +leading man|1 +(noun)|actor|histrion|player|thespian|role player +leading off|1 +(noun)|leading astray|enticement|temptation +leading question|1 +(noun)|question|interrogation|interrogative|interrogative sentence +leading rein|1 +(noun)|rein +leading tone|1 +(noun)|subtonic|note|musical note|tone +leadless|1 +(adj)|unleaded |lead-free|nonleaded +leadplant|1 +(noun)|lead plant|Amorpha canescens|amorpha +leadwort|1 +(noun)|Plumbago europaea|shrub|bush +leadwort family|1 +(noun)|Plumbaginaceae|family Plumbaginaceae|sea-lavender family|dicot family|magnoliopsid family +leaf|6 +(noun)|leafage|foliage|plant organ +(noun)|folio|sheet|piece of paper|sheet of paper +(noun)|section|segment +(verb)|flick|flip|thumb|riffle|riff|peruse +(verb)|turn|turn over +(verb)|grow|develop|produce|get|acquire +leaf-book|1 +(noun)|codex|manuscript|holograph +leaf-cutter|1 +(noun)|leaf-cutting bee|leaf-cutter bee|bee +leaf-cutter bee|1 +(noun)|leaf-cutting bee|leaf-cutter|bee +leaf-cutting bee|1 +(noun)|leaf-cutter|leaf-cutter bee|bee +leaf-foot bug|1 +(noun)|leaf-footed bug|coreid bug|coreid +leaf-footed bug|1 +(noun)|leaf-foot bug|coreid bug|coreid +leaf-miner|2 +(noun)|leaf miner|insect +(noun)| +leaf-nosed bat|1 +(noun)|leafnose bat|carnivorous bat|microbat +leaf-nosed snake|1 +(noun)|colubrid snake|colubrid +leaf-roller|2 +(noun)|leaf roller|tortricid|tortricid moth +(noun)| +leaf beet|2 +(noun)|chard|Swiss chard|spinach beet|chard plant|Beta vulgaris cicla|beet|common beet|Beta vulgaris +(noun)|chard|Swiss chard|spinach beet|greens|green|leafy vegetable +leaf beetle|1 +(noun)|chrysomelid|beetle +leaf blade|1 +(noun)|blade|leaf|leafage|foliage +leaf blight|1 +(noun)|blight +leaf bud|1 +(noun)|bud +leaf bug|1 +(noun)|plant bug|hemipterous insect|bug|hemipteran|hemipteron +leaf cast|1 +(noun)|needle blight|needle cast|leaf blight +leaf disease|1 +(noun)|plant disease +leaf fat|1 +(noun)|leaf lard|fat +leaf form|1 +(noun)|leaf shape|natural shape +leaf insect|1 +(noun)|walking leaf|phasmid|phasmid insect +leaf lard|1 +(noun)|leaf fat|fat +leaf lettuce|2 +(noun)|Lactuca sativa crispa|lettuce +(noun)|loose-leaf lettuce|lettuce +leaf miner|2 +(noun)|leaf-miner|insect +(noun)| +leaf mold|1 +(noun)|leaf mould|leaf soil|mold|mould +leaf mould|1 +(noun)|leaf mold|leaf soil|mold|mould +leaf mustard|2 +(noun)|chinese mustard|indian mustard|gai choi|Brassica juncea|mustard +(noun)|mustard|mustard greens|Indian mustard|cruciferous vegetable +leaf roller|2 +(noun)|leaf-roller|tortricid|tortricid moth +(noun)| +leaf scorch|1 +(noun)|scorch +leaf shape|1 +(noun)|leaf form|natural shape +leaf soil|1 +(noun)|leaf mold|leaf mould|mold|mould +leaf spring|1 +(noun)|spring +leafage|1 +(noun)|leaf|foliage|plant organ +leafed|1 +(adj)|leaved|leafy +leafhopper|1 +(noun)|homopterous insect|homopteran +leafing|1 +(noun)|foliation|growth|growing|maturation|development|ontogeny|ontogenesis +leafless|1 +(adj)|leafless |aphyllous|bare|defoliate|defoliated|scapose +leaflet|3 +(noun)|cusp|flap +(noun)|leaf|leafage|foliage +(noun)|booklet|brochure|folder|pamphlet|book +leaflike|1 +(adj)|leafy +leafnose bat|1 +(noun)|leaf-nosed bat|carnivorous bat|microbat +leafstalk|1 +(noun)|petiole|stalk|stem +leafy|1 +(adj)|leafy |bifoliate|bowery|foliaceous|foliose|foliaged|foliate|foliolate|ivied|ivy-covered|leafed|leaved|unifoliate|leaflike +leafy liverwort|1 +(noun)|scale moss|liverwort +leafy spurge|1 +(noun)|wolf's milk|Euphorbia esula|spurge +leafy vegetable|1 +(noun)|greens|green|vegetable|veggie +league|4 +(noun)|conference|association +(noun)|union +(noun)|linear unit +(verb)|unite|unify +league of iroquois|1 +(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league +league of nations|1 +(noun)|League of Nations|world organization|world organisation|international organization|international organisation|global organization +league together|1 +(verb)|band oneself|join|fall in|get together +leak|8 +(noun)|hole +(noun)|soft rot +(noun)|wetting|making water|passing water|micturition|urination +(noun)|escape|leakage|outflow|discharge|outpouring|run +(noun)|news leak|disclosure|revelation|revealing +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|leak out|break|get out|get around +(verb)|issue|emerge|come out|come forth|go forth|egress +leak fungus|1 +(noun)|ring rot fungus|Rhizopus stolonifer|rhizoid +leak out|1 +(verb)|leak|break|get out|get around +leakage|1 +(noun)|escape|leak|outflow|discharge|outpouring|run +leaker|1 +(noun)|informant|source +leakey|3 +(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist|palaeontologist|fossilist|anthropologist +(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist|palaeontologist|fossilist|anthropologist +(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist|palaeontologist|fossilist|anthropologist +leaking|1 +(adj)|leaky|unseaworthy +leakproof|1 +(adj)|watertight|seaworthy +leaky|5 +(adj)|leaky |drafty|draughty|drippy|holey|porous|oozing|oozy|seeping|permeable|unseaworthy +(adj)|leaking|unseaworthy +(adj)|permeable +(adj)|incontinent +(adj)|blabbermouthed|talebearing|tattling|communicative |communicatory +leal|1 +(adj)|loyal +lean|11 +(adj)|thin |anorexic|anorectic|bony|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|wasted|deep-eyed|hollow-eyed|sunken-eyed|fine-drawn|gangling|gangly|lanky|lank|spindly|rawboned|reedy|reedlike|twiggy|twiglike|scarecrowish|scraggy|scrawny|skinny|underweight|weedy|shriveled|shrivelled|shrunken|withered|wizen|wizened|slender|slight|slim|slender-waisted|slim-waisted|wasp-waisted|spare|trim|spindle-legged|spindle-shanked|stringy|wiry|wisplike|wispy|ectomorphic|thin +(adj)|lean +(adj)|skimpy|insufficient |deficient +(adj)|insufficient |deficient +(adj)|unprofitable +(noun)|tilt|list|inclination|leaning|position|spatial relation +(verb)|tilt|tip|slant|angle|bend|flex|lean against|lean on +(verb)|put|set|place|pose|position|lay +(verb)|tend|be given|incline|run|be +(verb)|trust|swear|rely|bank +(verb)|list|move +lean-to|1 +(noun)|shelter +lean-to tent|1 +(noun)|tent|collapsible shelter +lean against|1 +(verb)|lean on|rest on|touch|adjoin|meet|contact +lean back|1 +(verb)|recline|lean|tilt|tip|slant|angle +lean on|1 +(verb)|rest on|lean against|touch|adjoin|meet|contact +leander|1 +(noun)|Leander|mythical being +leaner|1 +(noun)|throw +leaning|6 +(adj)|atilt|canted|tilted|tipped|inclined +(adj)|unerect +(noun)|propensity|tendency|inclination +(noun)|proclivity|propensity|inclination|disposition|tendency +(noun)|tilt|list|inclination|lean|position|spatial relation +(noun)|act|human action|human activity +leaning tower|1 +(noun)|Leaning Tower|Leaning Tower of Pisa|campanile|belfry +leaning tower of pisa|1 +(noun)|Leaning Tower|Leaning Tower of Pisa|campanile|belfry +leanness|1 +(noun)|thinness|bodily property +leap|7 +(noun)|leaping|spring|saltation|bound|bounce|jump|jumping +(noun)|jump|saltation|transition +(noun)|jump|increase +(noun)|distance +(verb)|jump|bound|spring|move|leap out +(verb)|jump|switch|shift|change +(verb)|jump +leap day|1 +(noun)|bissextile day|February 29|day +leap out|2 +(verb)|jump out|jump|stand out|stick out|look|appear|seem +(verb)|rush out|sally out|burst forth|appear +leap second|1 +(noun)|second|sec|s +leap year|1 +(noun)|intercalary year|366 days|bissextile year|year|twelvemonth|yr +leaper|1 +(noun)|bounder|jumper|athlete|jock +leapfrog|4 +(noun)|progress|progression|procession|advance|advancement|forward motion|onward motion +(noun)|child's game +(verb)|jump|leap|bound|spring +(verb)|progress|come on|come along|advance|get on|get along|shape up +leaping|1 +(noun)|leap|spring|saltation|bound|bounce|jump|jumping +lear|2 +(noun)|Lear|Edward Lear|artist|creative person|humorist|humourist +(noun)|Lear|King Lear|fictional character|fictitious character|character +learn|6 +(verb)|larn|acquire +(verb)|hear|get word|get wind|pick up|find out|get a line|discover|see +(verb)|memorize|memorise|con|study|hit the books +(verb)|study|read|take +(verb)|teach|instruct|inform +(verb)|determine|check|find out|see|ascertain|watch +learned|4 +(adj)|erudite|scholarly +(adj)|enlightened|knowing|knowledgeable|lettered|well-educated|well-read|educated +(adj)|conditioned +(adj)|noninheritable |nonheritable +learned person|1 +(noun)|initiate|pundit|savant|scholar|scholarly person|student +learned profession|1 +(noun)|profession +learned reaction|1 +(noun)|learned response|reaction|response +learned response|1 +(noun)|learned reaction|reaction|response +learnedly|1 +(adv)|eruditely +learnedness|1 +(noun)|eruditeness|erudition|learning|scholarship|encyclopedism|encyclopaedism|education +learner|2 +(noun)|scholar|assimilator|person|individual|someone|somebody|mortal|human|soul +(noun)|apprentice|prentice|novice|beginner|tyro|tiro|initiate +learner's dictionary|1 +(noun)|school dictionary|dictionary|lexicon +learner's permit|1 +(noun)|license|licence|permit +learning|2 +(noun)|acquisition|basic cognitive process +(noun)|eruditeness|erudition|learnedness|scholarship|encyclopedism|encyclopaedism|education +learning ability|1 +(noun)|brain|brainpower|mental capacity|mentality|wit|intelligence +learning disability|1 +(noun)|learning disorder|disorder|upset +learning disorder|1 +(noun)|learning disability|disorder|upset +leary|1 +(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist +lease|7 +(noun)|rental|letting|property|belongings|holding|material possession +(noun)|contract +(noun)|term of a contract|time period|period of time|period +(verb)|rent|contract|undertake +(verb)|rent|hire|charter|contract|undertake +(verb)|let|rent|give +(verb)|rent|hire|charter|engage|take|get|acquire +lease-lend|1 +(noun)|lend-lease|transfer|transference +lease giver|1 +(noun)|lessor|owner|proprietor +leased|1 +(adj)|chartered |hired +leasehold|1 +(noun)|estate|land|landed estate|acres|demesne +leaseholder|1 +(noun)|lessee|tenant|renter +leash|4 +(noun)|tether|lead|restraint|constraint +(noun)|three|3|III|trio|threesome|tierce|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|collar|restraint +(verb)|rope|tie|bind +least|4 +(adj)|least |slightest +(adj)|lowest|smallest|minimal +(adj)|littlest|smallest|small +(adv)|to the lowest degree +least bittern|1 +(noun)|Ixobrychus exilis|bittern +least common multiple|1 +(noun)|lowest common multiple|lcm|multiple +least effort|1 +(noun)|least resistance|effort|elbow grease|exertion|travail|sweat +least resistance|1 +(noun)|least effort|effort|elbow grease|exertion|travail|sweat +least sandpiper|1 +(noun)|stint|Erolia minutilla|sandpiper +least shrew|1 +(noun)|Cryptotis parva|shrew|shrewmouse +least squares|1 +(noun)|method of least squares|statistical method|statistical procedure +leastways|1 +(adv)|at least|leastwise|at any rate +leastwise|1 +(adv)|at least|leastways|at any rate +leather|1 +(noun)|animal skin +leather carp|1 +(noun)|domestic carp|Cyprinus carpio +leather fern|2 +(noun)|golden fern|Acrostichum aureum|fern +(noun)|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern +leather flower|2 +(noun)|vase-fine|vase vine|Clematis viorna|clematis +(noun)|Clematis versicolor|clematis +leather soap|1 +(noun)|saddle soap|soap +leather strip|1 +(noun)|implement +leatherback|1 +(noun)|leatherback turtle|leathery turtle|Dermochelys coriacea|sea turtle|marine turtle +leatherback turtle|1 +(noun)|leatherback|leathery turtle|Dermochelys coriacea|sea turtle|marine turtle +leathered|1 +(adj)|coriaceous|leatherlike|leathery|tough +leatherette|1 +(noun)|imitation leather|fabric|cloth|material|textile +leatherfish|1 +(noun)|leatherjacket|filefish +leatherjack|1 +(noun)|leatherjacket|jack +leatherjacket|3 +(noun)|leatherfish|filefish +(noun)|leatherjack|jack +(noun)|grub +leatherleaf|2 +(noun)|leathery polypody|coast polypody|Polypodium scouleri|polypody +(noun)|Chamaedaphne calyculata|shrub|bush +leatherleaf fern|1 +(noun)|leather fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern +leatherleaf saxifrage|1 +(noun)|Leptarrhena pyrolifolia|wildflower|wild flower +leatherleaf wood fern|1 +(noun)|marginal wood fern|evergreen wood fern|Dryopteris marginalis|wood fern|wood-fern|woodfern +leatherlike|1 +(adj)|coriaceous|leathered|leathery|tough +leatherneck|1 +(noun)|Marine|devil dog|shipboard soldier|serviceman|military man|man|military personnel +leatherwood|2 +(noun)|cyrilla|white titi|Cyrilla racemiflora|shrub|bush +(noun)|moosewood|moose-wood|wicopy|ropebark|Dirca palustris|shrub|bush +leatherwork|1 +(noun)|work|piece of work +leathery|1 +(adj)|coriaceous|leathered|leatherlike|tough +leathery grape fern|1 +(noun)|Botrychium multifidum|grape fern +leathery polypody|1 +(noun)|leatherleaf|coast polypody|Polypodium scouleri|polypody +leathery turtle|1 +(noun)|leatherback turtle|leatherback|Dermochelys coriacea|sea turtle|marine turtle +leave|16 +(noun)|leave of absence|time off +(noun)|permission +(noun)|farewell|leave-taking|parting|departure|going|going away|leaving +(verb)|go forth|go away +(verb)|make|get +(verb)|leave alone|leave behind|refrain|forbear +(verb)|exit|go out|get out|move +(verb)|allow for|allow|provide|yield|give|afford +(verb)|result|lead|bring about +(verb)|depart|pull up stakes|change +(verb)|entrust|pass|hand|reach|pass on|turn over|give +(verb)|bequeath|will|give|gift|present +(verb)|have +(verb)|leave behind +(verb)|impart|give|pass on|tell +(verb)|forget|lose +leave-taking|1 +(noun)|farewell|leave|parting|departure|going|going away|leaving +leave alone|1 +(verb)|leave|leave behind|refrain|forbear +leave behind|2 +(verb)|leave +(verb)|leave|leave alone|refrain|forbear +leave no stone unturned|1 +(verb)|search|seek|look for +leave of absence|1 +(noun)|leave|time off +leave off|3 +(verb)|discontinue +(verb)|exclude|except|leave out|omit|take out|eliminate|get rid of|do away with +(verb)|discontinue|stop|cease|give up|quit|lay off +leave office|1 +(verb)|quit|step down|resign|leave|depart|pull up stakes +leave out|2 +(verb)|exclude|except|leave off|omit|take out|eliminate|get rid of|do away with +(verb)|neglect|pretermit|omit|drop|miss|overlook|overleap +leaved|1 +(adj)|leafed|leafy +leaven|3 +(noun)|leavening|substance|matter +(noun)|leavening|imponderable +(verb)|raise|prove|raise|lift|elevate|get up|bring up +leavened|1 +(adj)|leavened |light|raised|sourdough +leavening|2 +(noun)|leaven|imponderable +(noun)|leaven|substance|matter +leaver|1 +(noun)|departer|goer|migrant|migrator +leaving|1 +(noun)|departure|going|going away|deed|feat|effort|exploit +lebanese|2 +(adj)|Lebanese|Asian country|Asian nation +(noun)|Lebanese|Asian|Asiatic +lebanese hizballah|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +lebanese monetary unit|1 +(noun)|Lebanese monetary unit|monetary unit +lebanese pound|1 +(noun)|Lebanese pound|pound|Lebanese monetary unit +lebanese republic|1 +(noun)|Lebanon|Lebanese Republic|Asian country|Asian nation +lebanon|1 +(noun)|Lebanon|Lebanese Republic|Asian country|Asian nation +lebensraum|1 +(noun)|living space|room|way|elbow room +lebistes|1 +(noun)|Lebistes|genus Lebistes|fish genus +lebistes reticulatus|1 +(noun)|guppy|rainbow fish|Lebistes reticulatus|cyprinodont +leboyer method|1 +(noun)|Leboyer method of childbirth|Leboyer method|natural childbirth +leboyer method of childbirth|1 +(noun)|Leboyer method of childbirth|Leboyer method|natural childbirth +lecanopteris|1 +(noun)|fern +lecanora|1 +(noun)|lichen +lecanoraceae|1 +(noun)|Lecanoraceae|family Lecanoraceae|fungus family +leccinum|1 +(noun)|Leccinum|genus Leccinum|fungus genus +leccinum fibrillosum|1 +(noun)|Leccinum fibrillosum|bolete +lech|1 +(noun)|satyr|lecher|letch|pervert|deviant|deviate|degenerate +lech after|1 +(verb)|lust after|desire|want +lech walesa|1 +(noun)|Walesa|Lech Walesa|labor leader|statesman|solon|national leader +lechanorales|1 +(noun)|Lechanorales|order Lechanorales|fungus order +lechartelierite|1 +(noun)|mineral +lechatelierite|1 +(noun)|quartz glass|quartz|vitreous silica|crystal|natural glass +lecher|1 +(noun)|satyr|lech|letch|pervert|deviant|deviate|degenerate +lecherous|1 +(adj)|sexy +lecherousness|1 +(noun)|lust|lustfulness|sexual desire|concupiscence|physical attraction +lechery|1 +(noun)|sexual activity|sexual practice|sex|sex activity +lechwe|1 +(noun)|Kobus leche|waterbuck +lecithin|1 +(noun)|phospholipid|emulsifier +leclanche cell|1 +(noun)|Leclanche cell|voltaic cell|galvanic cell|primary cell +lectern|1 +(noun)|reading desk|stand +lectin|1 +(noun)|glycoprotein +lector|2 +(noun)|reader|clergyman|reverend|man of the cloth|holy order|order +(noun)|lecturer|reader|educator|pedagogue +lecture|5 +(noun)|public lecture|talk|address|speech +(noun)|speech|talking to|rebuke|reproof|reproval|reprehension|reprimand +(noun)|lecturing|teaching|instruction|pedagogy +(verb)|talk|teach|learn|instruct +(verb)|call on the carpet|rebuke|rag|trounce|reproof|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +lecture demonstration|1 +(noun)|presentation|presentment|demonstration +lecture room|1 +(noun)|classroom|schoolroom +lecturer|2 +(noun)|lector|reader|educator|pedagogue +(noun)|speaker|talker|utterer|verbalizer|verbaliser +lectureship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +lecturing|1 +(noun)|lecture|teaching|instruction|pedagogy +lecythidaceae|1 +(noun)|Lecythidaceae|family Lecythidaceae|dicot family|magnoliopsid family +led|1 +(noun)|light-emitting diode|LED|diode|semiconductor diode|junction rectifier|crystal rectifier +leda|1 +(noun)|Leda|mythical being +ledbetter|1 +(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player|composer +ledercillin vk|1 +(noun)|penicillin V potassium|Ledercillin VK|penicillin V|phenoxymethyl penicillin +lederhosen|1 +(noun)|short pants|shorts|trunks +ledge|1 +(noun)|shelf|ridge +ledgeman|1 +(noun)|breaker|quarryman|quarrier +ledger|2 +(noun)|leger|account book|book of account|book|record +(noun)|daybook|journal +ledger board|1 +(noun)|rail +ledger entry|1 +(noun)|entry|accounting entry|accounting|accounting system|method of accounting +ledger line|1 +(noun)|leger line|line +ledger paper|1 +(noun)|writing paper +ledum|1 +(noun)|Ledum|genus Ledum|dilleniid dicot genus +ledum groenlandicum|1 +(noun)|Labrador tea|crystal tea|Ledum groenlandicum|shrub|bush +ledum palustre|1 +(noun)|wild rosemary|marsh tea|Ledum palustre|shrub|bush +lee|9 +(adj)|downwind|leeward +(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker|filmmaker|film producer|movie maker +(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler +(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor|histrion|player|thespian|role player +(noun)|Lee|Tsung Dao Lee|nuclear physicist +(noun)|Lee|Richard Henry Lee|American Revolutionary leader +(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier +(noun)|Lee|Robert E. Lee|Robert Edward Lee|general|full general +(noun)|lee side|leeward|side|face +lee's birthday|1 +(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day +lee buck trevino|1 +(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer|golf player|linksman +lee de forest|1 +(noun)|De Forest|Lee De Forest|The Father of Radio|electrical engineer|inventor|discoverer|artificer +lee harvey oswald|1 +(noun)|Oswald|Lee Harvey Oswald|assassin|assassinator|bravo +lee krasner|1 +(noun)|Krasner|Lee Krasner|painter +lee side|1 +(noun)|lee|leeward|side|face +lee tide|1 +(noun)|leeward tide|tide +lee trevino|1 +(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer|golf player|linksman +lee yuen kam|1 +(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor|histrion|player|thespian|role player +leech|3 +(noun)|bloodsucker|hirudinean|annelid|annelid worm|segmented worm +(noun)|parasite|sponge|sponger|follower +(verb)|bleed|phlebotomize|phlebotomise|treat|care for +leech onto|1 +(verb)|attach +leechee|1 +(noun)|litchi|litchi nut|litchee|lichi|lichee|lychee|edible fruit +leechlike|1 +(adj)|parasitic|parasitical|bloodsucking|dependent +leeds|1 +(noun)|Leeds|city|metropolis|urban center +leek|2 +(noun)|scallion|Allium porrum|alliaceous plant +(noun)|vegetable|veggie +leer|3 +(noun)|sneer|contempt|scorn +(noun)|expression|look|aspect|facial expression|face +(verb)|look +leering|2 +(adj)|malicious +(adj)|sexy +leery|1 +(adj)|mistrustful|suspicious|untrusting|wary|distrustful +lees|9 +(noun)|sediment|deposit +(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker|filmmaker|film producer|movie maker +(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler +(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor|histrion|player|thespian|role player +(noun)|Lee|Tsung Dao Lee|nuclear physicist +(noun)|Lee|Richard Henry Lee|American Revolutionary leader +(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier +(noun)|Lee|Robert E. Lee|Robert Edward Lee|general|full general +(noun)|lee|lee side|leeward|side|face +leeuwenhoek|1 +(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist +leeward|4 +(adj)|leeward |downwind|lee +(noun)|direction +(noun)|lee|lee side|side|face +(adv)|upwind +leeward islands|1 +(noun)|Leeward Islands|archipelago +leeward side|1 +(noun)|to leeward|leeward +leeward tide|1 +(noun)|lee tide|tide +leeway|2 +(noun)|drift +(noun)|allowance|margin|tolerance|discrepancy|disagreement|divergence|variance +leflunomide|1 +(noun)|Arava|anti-TNF compound +left|9 +(adj)|left |left-hand|near|nigh|port|larboard|leftmost|left-handed +(adj)|leftover|left over|odd|remaining|unexpended|unexhausted +(adj)|left-hand|left-handed +(adj)|left |far left|leftish|leftist|left-of-center|left-wing|liberal|liberal|socialistic|socialist +(noun)|position|place +(noun)|left wing|faction|sect +(noun)|left hand|hand|manus|mitt|paw +(noun)|left field|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|turn|turning +left-hand|2 +(adj)|left|left-handed +(adj)|left +left-handed|6 +(adj)|left-handed |left|left-hand|sinistral|sinistral|left +(adj)|illegitimate +(adj)|morganatic|legitimate +(adj)|levorotary|levorotatory|counterclockwise |anticlockwise|contraclockwise +(adj)|ambiguous +(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|maladroit +left-handed pitcher|1 +(noun)|left-hander|left hander|lefthander|lefty|southpaw|pitcher|hurler|twirler +left-handedness|1 +(noun)|sinistrality|handedness|laterality +left-hander|4 +(noun)|left-handed pitcher|left hander|lefthander|lefty|southpaw|pitcher|hurler|twirler +(noun)|lefty|southpaw|person|individual|someone|somebody|mortal|human|soul +(noun)| +(noun)| +left-luggage office|1 +(noun)|checkroom|room +left-of-center|1 +(adj)|leftist|left-wing|left +left-slanting|1 +(adj)|backhand|written +left-wing|1 +(adj)|leftist|left-of-center|left +left-winger|1 +(noun)|collectivist|leftist|socialist +left atrioventricular valve|1 +(noun)|mitral valve|bicuspid valve|atrioventricular valve +left atrium|1 +(noun)|left atrium of the heart|atrium sinistrum|atrium cordis|atrium of the heart +left atrium of the heart|1 +(noun)|left atrium|atrium sinistrum|atrium cordis|atrium of the heart +left bank|1 +(noun)|Left Bank|Latin Quarter|vicinity|locality|neighborhood|neighbourhood|neck of the woods +left brain|1 +(noun)|left hemisphere|hemisphere|cerebral hemisphere +left coronary artery|1 +(noun)|coronary artery|arteria coronaria +left field|2 +(noun)|left|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|position +left fielder|1 +(noun)|outfielder +left gastric artery|1 +(noun)|arteria gastrica sinistra|gastric artery|arteria gastrica +left gastric vein|1 +(noun)|vena gastrica sinistra|gastric vein|vena gastrica +left hand|1 +(noun)|left|hand|manus|mitt|paw +left hander|3 +(noun)|left-handed pitcher|left-hander|lefthander|lefty|southpaw|pitcher|hurler|twirler +(noun)|left-hander|lefty|southpaw|person|individual|someone|somebody|mortal|human|soul +(noun)| +left hemisphere|1 +(noun)|left brain|hemisphere|cerebral hemisphere +left over|2 +(adj)|leftover|left|odd|remaining|unexpended|unexhausted +(adj)|leftover|cooked-over|warmed-over|reheated|uneaten +left stage|1 +(noun)|stage left|left +left ventricle|1 +(noun)|ventricle|heart ventricle +left wing|1 +(noun)|left|faction|sect +lefteye flounder|1 +(noun)|lefteyed flounder|flatfish +lefteyed flounder|1 +(noun)|lefteye flounder|flatfish +lefthander|1 +(noun)|left-handed pitcher|left-hander|left hander|lefty|southpaw|pitcher|hurler|twirler +leftish|1 +(adj)|left +leftism|1 +(noun)|political orientation|ideology|political theory +leftist|2 +(adj)|left-of-center|left-wing|left +(noun)|collectivist|left-winger|socialist +leftmost|1 +(adj)|left +leftover|3 +(adj)|left over|left|odd|remaining|unexpended|unexhausted +(adj)|cooked-over|warmed-over|reheated|uneaten +(noun)|remnant|remainder|balance|residual|residue|residuum|rest +leftovers|2 +(noun)|food +(noun)|leftover|remnant|remainder|balance|residual|residue|residuum|rest +lefty|2 +(noun)|left-hander|southpaw|person|individual|someone|somebody|mortal|human|soul +(noun)|left-handed pitcher|left-hander|left hander|lefthander|southpaw|pitcher|hurler|twirler +leg|9 +(noun)|limb +(noun)|limb +(noun)|support +(noun)|branch|fork|ramification|subfigure +(noun)|cut|cut of meat +(noun)|peg|wooden leg|pegleg|prosthesis|prosthetic device +(noun)|cloth covering +(noun)|travel|traveling|travelling|distance|length +(noun)|stage|travel|traveling|travelling +leg-pull|1 +(noun)|leg-pulling|jest|joke|jocularity +leg-pulling|1 +(noun)|leg-pull|jest|joke|jocularity +leg bone|1 +(noun)|long bone|os longum +leg covering|1 +(noun)|legging|legin|garment +leg curl|1 +(noun)|leg curling|leg exercise +leg curling|1 +(noun)|leg curl|leg exercise +leg exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +leg extensor|1 +(noun)|leg exercise +leg it|1 +(verb)|foot|hoof|hoof it|walk +leg of lamb|1 +(noun)|gigot|lamb roast|roast lamb|leg +legacy|1 +(noun)|bequest|gift|inheritance|heritage +legal|5 +(adj)|legal |ineligible|judicial|jural|juristic|lawful|legitimate|licit|ratified|sanctioned|statutory|sub judice|eligible|lawful|legitimate +(adj)|collection|aggregation|accumulation|assemblage +(adj)|sound|valid +(adj)|learned profession +(adj)|eligible +legal action|1 +(noun)|action|action at law|proceeding|legal proceeding|proceedings +legal age|1 +(noun)|majority|age|eld|legal status +legal assistant|1 +(noun)|paralegal|paraprofessional +legal brief|1 +(noun)|brief|legal document|legal instrument|official document|instrument +legal code|1 +(noun)|code|codification +legal community|1 +(noun)|legal profession|bar|profession|community +legal document|1 +(noun)|legal instrument|official document|instrument|document|written document|papers +legal duty|1 +(noun)|duty|responsibility|obligation +legal expert|1 +(noun)|jurist|expert +legal fee|1 +(noun)|fee +legal fraud|1 +(noun)|constructive fraud|fraud +legal guardian|1 +(noun)|trustee|fiduciary +legal holiday|1 +(noun)|national holiday|holiday +legal injury|1 +(noun)|wrong|damage|wrongdoing|wrongful conduct|misconduct|actus reus +legal instrument|1 +(noun)|legal document|official document|instrument|document|written document|papers +legal jointure|1 +(noun)|jointure|estate +legal opinion|1 +(noun)|opinion|judgment|judgement|legal document|legal instrument|official document|instrument +legal ouster|1 +(noun)|eviction|dispossession|due process|due process of law +legal philosophy|1 +(noun)|jurisprudence|law|philosophy +legal power|1 +(noun)|jurisdiction|power|powerfulness +legal principle|1 +(noun)|judicial principle|judicial doctrine|principle +legal proceeding|1 +(noun)|proceeding|proceedings|due process|due process of law +legal profession|1 +(noun)|bar|legal community|profession|community +legal relation|1 +(noun)|professional relation +legal representation|1 +(noun)|representation|delegacy|agency +legal representative|1 +(noun)|personal representative +legal residence|1 +(noun)|domicile|residence|abode +legal right|1 +(noun)|right +legal separation|2 +(noun)|judicial separation|decree|edict|fiat|order|rescript +(noun)|separation|cessation|surcease +legal status|1 +(noun)|status|position +legal system|1 +(noun)|system +legal tender|1 +(noun)|tender|medium of exchange|monetary system +legal transfer|1 +(noun)|delivery|livery|conveyance|conveyance of title|conveyancing|conveying +legalese|1 +(noun)|expressive style|style +legalisation|1 +(noun)|legalization|legitimation|group action +legalise|1 +(verb)|legalize|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +legalism|1 +(noun)|conformity|conformism +legality|1 +(noun)|lawfulness +legalization|1 +(noun)|legalisation|legitimation|group action +legalize|1 +(verb)|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +legally|1 +(adv)|lawfully|wrongfully|de jure +legate|1 +(noun)|official emissary|emissary|envoy +legatee|1 +(noun)|beneficiary|donee +legateship|1 +(noun)|legation|position|post|berth|office|spot|billet|place|situation +legation|2 +(noun)|legateship|position|post|berth|office|spot|billet|place|situation +(noun)|foreign mission|diplomatic mission +legato|1 +(adj)|legato |smooth +legend|2 +(noun)|fable|story +(noun)|caption|title +legendary|2 +(adj)|known +(adj)|fabled|unreal +legendary creature|1 +(noun)|mythical monster|mythical creature +leger|2 +(noun)|ledger|account book|book of account|book|record +(noun)|Leger|Fernand Leger|painter +leger line|1 +(noun)|ledger line|line +legerdemain|1 +(noun)|magic trick|conjuring trick|trick|magic|conjuration|illusion|deception|performance +legerity|1 +(noun)|agility|lightness|lightsomeness|nimbleness|gracefulness +legged|1 +(adj)|legged |three-legged|leglike +legging|1 +(noun)|legin|leg covering|garment +leggy|2 +(adj)|tall-growing|tall +(adj)|long-legged|long-shanked|tall +leghorn|1 +(noun)|boater|Panama|Panama hat|sailor|skimmer|straw hat|hat|chapeau|lid +legibility|2 +(noun)|discernability|distinctness|sharpness +(noun)|readability|comprehensibility|understandability +legible|1 +(adj)|legible |clean|fair|clear|decipherable|readable +legibly|1 +(adv)|decipherably|readably +legin|1 +(noun)|legging|leg covering|garment +legion|4 +(noun)|host|army|regular army|ground forces +(noun)|association +(noun)|military unit|military force|military group|force +(noun)|horde|host|multitude|throng|concourse +legionary|1 +(noun)|legionnaire|soldier +legionary ant|1 +(noun)|army ant|driver ant|ant|emmet|pismire +legionella|1 +(noun)|Legionella pneumophilia|bacteria|bacterium +legionella pneumophilia|1 +(noun)|Legionella pneumophilia|legionella|bacteria|bacterium +legionnaire|2 +(noun)|Legionnaire|veteran|vet|ex-serviceman +(noun)|legionary|soldier +legionnaires' disease|1 +(noun)|Legionnaires' disease|lobar pneumonia +legislate|1 +(verb)|pass|ordain|enact +legislating|1 +(noun)|legislation|lawmaking|government|governing|governance|government activity +legislation|2 +(noun)|statute law|civil law +(noun)|legislating|lawmaking|government|governing|governance|government activity +legislative|2 +(adj)|assembly +(adj)|civil law +legislative act|1 +(noun)|statute|act|enactment +legislative assembly|1 +(noun)|legislature|general assembly|law-makers|assembly +legislative branch|1 +(noun)|branch|subdivision|arm +legislative council|1 +(noun)|legislature|legislative assembly|general assembly|law-makers +legislator|1 +(noun)|lawgiver|lawmaker|politician +legislatorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +legislature|1 +(noun)|legislative assembly|general assembly|law-makers|assembly +legitimacy|2 +(noun)|lawfulness +(noun)|authenticity|genuineness|credibility|credibleness|believability +legitimate|7 +(adj)|legitimate |lawfully-begotten|morganatic|left-handed|true|lawful|rightful|authorized|authorised|legal|valid +(adj)|logical|valid +(adj)|established |constituted +(adj)|lawful|licit|legal +(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimatize|legitimatise|permit|allow|let|countenance +(verb)|justify|vindicate +(verb)|change|alter|modify +legitimately|1 +(adv)|lawfully|licitly +legitimation|2 +(noun)|act|human action|human activity +(noun)|legalization|legalisation|group action +legitimatise|1 +(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|permit|allow|let|countenance +legitimatize|1 +(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatise|permit|allow|let|countenance +legitimise|1 +(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +legitimize|1 +(verb)|legalize|legalise|decriminalize|decriminalise|legitimise|legitimate|legitimatize|legitimatise|permit|allow|let|countenance +legless|1 +(adj)|legless +legless lizard|1 +(noun)|lizard +leglike|1 +(adj)|legged +lego|1 +(noun)|Lego|Lego set|plaything|toy +lego set|1 +(noun)|Lego|Lego set|plaything|toy +legs|10 +(noun)|stamina|staying power|toughness +(noun)|leg|limb +(noun)|leg|limb +(noun)|leg|support +(noun)|branch|fork|leg|ramification|subfigure +(noun)|leg|cut|cut of meat +(noun)|peg|wooden leg|leg|pegleg|prosthesis|prosthetic device +(noun)|leg|cloth covering +(noun)|leg|travel|traveling|travelling|distance|length +(noun)|stage|leg|travel|traveling|travelling +legume|3 +(noun)|leguminous plant|herb|herbaceous plant +(noun)|pod|seedpod +(noun)|vegetable|veggie +legume family|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|pea family|rosid dicot family +leguminious|1 +(adj)|vegetable|veggie +leguminosae|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family +leguminous|1 +(adj)|herb|herbaceous plant +leguminous plant|1 +(noun)|legume|herb|herbaceous plant +lehar|1 +(noun)|Lehar|Franz Lehar|composer +lehigh river|1 +(noun)|Lehigh River|river +lei|3 +(noun)|wreath|garland|coronal|chaplet|flower arrangement +(noun)|leu|Moldovan monetary unit +(noun)|leu|Romanian monetary unit +leibnitz|1 +(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician|philosopher +leibnitzian|1 +(adj)|Leibnizian|Leibnitzian|mathematician|philosopher +leibniz|1 +(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician|philosopher +leibnizian|1 +(adj)|Leibnizian|Leibnitzian|mathematician|philosopher +leicester|2 +(noun)|Leicestershire|Leicester|county +(noun)|Leicester|city|metropolis|urban center +leicestershire|1 +(noun)|Leicestershire|Leicester|county +leichtlin's camas|1 +(noun)|Leichtlin's camas|Camassia leichtlinii|camas|camass|quamash|camosh|camash +leiden|1 +(noun)|Leiden|Leyden|city|metropolis|urban center +leiden jar|1 +(noun)|Leiden jar|Leyden jar|capacitor|capacitance|condenser|electrical condenser +leigh|1 +(noun)|Leigh|Vivien Leigh|actress +leigh hunt|1 +(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer|author +leiomyoma|1 +(noun)|myoma +leiomyosarcoma|1 +(noun)|sarcoma +leiopelma|1 +(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus +leiopelmatidae|1 +(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family +leiophyllum|1 +(noun)|Leiophyllum|genus Leiophyllum|dilleniid dicot genus +leiophyllum buxifolium|1 +(noun)|sand myrtle|Leiophyllum buxifolium|shrub|bush +leipoa|1 +(noun)|mallee fowl|lowan|Leipoa ocellata|megapode|mound bird|mound-bird|mound builder|scrub fowl +leipoa ocellata|1 +(noun)|mallee fowl|leipoa|lowan|Leipoa ocellata|megapode|mound bird|mound-bird|mound builder|scrub fowl +leipzig|1 +(noun)|Leipzig|city|metropolis|urban center +leishmania|1 +(noun)|Leishmania|genus Leishmania|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +leishmaniasis|1 +(noun)|leishmaniosis|kala azar|protozoal infection +leishmaniasis americana|1 +(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|nasopharyngeal leishmaniasis|leishmaniasis|leishmaniosis|kala azar +leishmaniosis|1 +(noun)|leishmaniasis|kala azar|protozoal infection +leister|1 +(noun)|spear|gig|fizgig|fishgig|lance +leisure|2 +(noun)|leisure time|time off +(noun)|rest|ease|repose|relaxation +leisure time|1 +(noun)|leisure|time off +leisure wear|1 +(noun)|clothing|article of clothing|vesture|wear +leisured|1 +(adj)|idle +leisureliness|1 +(noun)|slowness|deliberation|deliberateness|unhurriedness +leisurely|2 +(adj)|easy|easygoing|unhurried +(adv)|at leisure +leitmotif|1 +(noun)|leitmotiv|tune|melody|air|strain|melodic line|line|melodic phrase +leitmotiv|1 +(noun)|leitmotif|tune|melody|air|strain|melodic line|line|melodic phrase +leitneria|1 +(noun)|Leitneria|genus Leitneria|dicot genus|magnoliopsid genus +leitneria floridana|1 +(noun)|corkwood|corkwood tree|Leitneria floridana|shrub|bush +leitneriaceae|1 +(noun)|Leitneriaceae|family Leitneriaceae|corkwood family|dicot family|magnoliopsid family +lek|1 +(noun)|Albanian monetary unit +lekvar|1 +(noun)|filling +leland stanford|1 +(noun)|Stanford|Leland Stanford|businessman|man of affairs +lem|1 +(noun)|lunar excursion module|lunar module|LEM|spacecraft|ballistic capsule|space vehicle +lemaireocereus|1 +(noun)|Lemaireocereus|genus Lemaireocereus|caryophylloid dicot genus +lemaireocereus chichipe|1 +(noun)|chichipe|Lemaireocereus chichipe|cactus +lemaitre|1 +(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist +lemanderin|1 +(noun)|rangpur|rangpur lime|Citrus limonia|citrus|citrus tree +lemma|3 +(noun)|proposition +(noun)|flowering glume|glume +(noun)|heading|header|head +lemming|1 +(noun)|rodent|gnawer|gnawing animal +lemmon|1 +(noun)|Lemmon|Jack Lemmon|John Uhler|actor|histrion|player|thespian|role player +lemmus|1 +(noun)|Lemmus|genus lemmus|mammal genus +lemmus lemmus|1 +(noun)|European lemming|Lemmus lemmus|lemming +lemmus trimucronatus|1 +(noun)|brown lemming|Lemmus trimucronatus|lemming +lemna|1 +(noun)|Lemna|genus Lemna|monocot genus|liliopsid genus +lemna minor|1 +(noun)|common duckweed|lesser duckweed|Lemna minor|duckweed +lemna trisulca|1 +(noun)|star-duckweed|Lemna trisulca|duckweed +lemnaceae|1 +(noun)|Lemnaceae|family Lemnaceae|duckweed family|monocot family|liliopsid family +lemniscus|1 +(noun)|fillet|sensory nerve +lemnos|1 +(noun)|Lemnos|Limnos|island +lemon|5 +(noun)|citrus|citrus fruit|citrous fruit +(noun)|gamboge|lemon yellow|maize|yellow|yellowness +(noun)|lemon tree|Citrus limon|citrus|citrus tree +(noun)|relish|flavor|flavour|sapidity|savor|savour|smack|tang +(noun)|stinker|artifact|artefact +lemon-scented gum|1 +(noun)|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus|eucalypt|eucalyptus tree +lemon-wood|2 +(noun)|lemonwood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree +(noun)|lemonwood|wood +lemon-wood tree|1 +(noun)|lemonwood|lemon-wood|lemonwood tree|Psychotria capensis|tree +lemon balm|2 +(noun)|garden balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb|herbaceous plant +(noun)|herb +lemon butter|1 +(noun)|Meuniere butter|butter +lemon cheese|1 +(noun)|lemon curd|conserve|preserve|conserves|preserves +lemon curd|1 +(noun)|lemon cheese|conserve|preserve|conserves|preserves +lemon drop|1 +(noun)|hard candy +lemon extract|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +lemon geranium|1 +(noun)|Pelargonium limoneum|geranium +lemon grove|1 +(noun)|grove|woodlet|orchard|plantation +lemon juice|1 +(noun)|juice +lemon lily|1 +(noun)|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily|daylily +lemon meringue pie|1 +(noun)|pie +lemon mint|2 +(noun)|horsemint|Monarda citriodora|monarda|wild bergamot +(noun)|bergamot mint|eau de cologne mint|Mentha citrata|mint +lemon oil|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +lemon peel|1 +(noun)|lemon rind|peel|skin +lemon rind|1 +(noun)|lemon peel|peel|skin +lemon shark|1 +(noun)|Negaprion brevirostris|requiem shark +lemon sole|6 +(noun)|winter flounder|flounder +(noun)|English sole|sole|fillet of sole +(noun)|English sole|Parophrys vitulus|sole +(noun)|Solea lascaris|sole +(noun)|Microstomus kitt|righteye flounder|righteyed flounder +(noun)|winter flounder|blackback flounder|Pseudopleuronectes americanus|righteye flounder|righteyed flounder +lemon sumac|1 +(noun)|fragrant sumac|Rhus aromatica|sumac|sumach|shumac +lemon tree|1 +(noun)|lemon|Citrus limon|citrus|citrus tree +lemon yellow|1 +(noun)|gamboge|lemon|maize|yellow|yellowness +lemon zest|1 +(noun)|lemon peel|lemon rind +lemonade|1 +(noun)|fruit drink|ade +lemonade mix|1 +(noun)|ready-mix +lemonlike|1 +(adj)|lemony|sourish|tangy|tart|sour +lemonwood|2 +(noun)|wood +(noun)|lemon-wood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree +lemonwood tree|2 +(noun)|lemonwood|lemon-wood|lemon-wood tree|Psychotria capensis|tree +(noun)|dagame|Calycophyllum candidissimum|tree +lemony|1 +(adj)|lemonlike|sourish|tangy|tart|sour +lempira|1 +(noun)|Honduran monetary unit +lemur|1 +(noun)|primate +lemur catta|1 +(noun)|Madagascar cat|ring-tailed lemur|Lemur catta|lemur +lemuridae|1 +(noun)|Lemuridae|family Lemuridae|mammal family +lemuroidea|1 +(noun)|Lemuroidea|suborder Lemuroidea|animal order +lena|1 +(noun)|Lena|Lena River|river +lena river|1 +(noun)|Lena|Lena River|river +lenard|1 +(noun)|Lenard|Philipp Lenard|physicist +lend|3 +(verb)|impart|bestow|contribute|add|bring|change|alter|modify +(verb)|loan|give +(verb)|be +lend-lease|1 +(noun)|lease-lend|transfer|transference +lend oneself|1 +(verb)|apply +lendable|1 +(adj)|available +lender|1 +(noun)|loaner|investor +lending|1 +(noun)|loaning|disposal|disposition +lending institution|1 +(noun)|financial institution|financial organization|financial organisation +lending library|1 +(noun)|circulating library|library|depository library +lendl|1 +(noun)|Lendl|Ivan Lendl|tennis player +length|5 +(noun)|fundamental quantity|fundamental measure|physical property|dimension +(noun)|duration|temporal property +(noun)|extent +(noun)|distance|size +(noun)|section|segment +length of service|1 +(noun)|longevity|longness +lengthen|2 +(verb)|increase +(verb)|grow +lengthened|1 +(adj)|elongated|extended|prolonged|long +lengthening|1 +(noun)|prolongation|protraction|perpetuation|continuance|continuation +lengthily|1 +(adv)|at length +lengthiness|2 +(noun)|extension|prolongation|longness +(noun)|prolongation|continuation|protraction|duration|length +lengthways|2 +(adj)|lengthwise |axial|end-to-end|fore-and-aft|linear|running|longitudinal +(adv)|lengthwise|longwise|longways|longitudinally +lengthwise|2 +(adj)|lengthwise |lengthways|axial|end-to-end|fore-and-aft|linear|running|longitudinal +(adv)|lengthways|longwise|longways|longitudinally +lengthy|1 +(adj)|drawn-out|extended|prolonged|protracted|long +lenience|3 +(noun)|leniency|mildness|lenity|mercifulness|mercy +(noun)|indulgence|leniency|permissiveness|tolerance +(noun)|leniency|tolerance +leniency|3 +(noun)|lenience|mildness|lenity|mercifulness|mercy +(noun)|indulgence|lenience|permissiveness|tolerance +(noun)|lenience|tolerance +lenient|3 +(adj)|indulgent|lax|soft|permissive +(adj)|easy|undemanding +(adj)|clement +leniently|1 +(adv)|laxly +lenify|1 +(verb)|pacify|conciliate|assuage|appease|mollify|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +lenin|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +leningrad|1 +(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city|metropolis|urban center +leninism|1 +(noun)|Leninism|Marxism-Leninism|communism +lenitive|2 +(adj)|alleviative|alleviatory|mitigative|mitigatory|palliative|moderating +(noun)|remedy|curative|cure +lenity|1 +(noun)|lenience|leniency|mildness|mercifulness|mercy +lennoaceae|1 +(noun)|Lennoaceae|family Lennoaceae|dilleniid dicot family +lennon|1 +(noun)|Lennon|John Lennon|rock star|songwriter|songster|ballad maker +lennox robinson|1 +(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist|playwright +lens|5 +(noun)|lense|lens system|optical device +(noun)|Lens|genus Lens|rosid dicot genus +(noun)|channel|communication channel|line +(noun)|crystalline lens|organ +(noun)|electron lens|electronic equipment +lens cap|1 +(noun)|lens cover|cap +lens capsule|1 +(noun)|membrane|tissue layer +lens cover|1 +(noun)|lens cap|cap +lens culinaris|1 +(noun)|lentil|lentil plant|Lens culinaris|legume|leguminous plant +lens implant|1 +(noun)|implant +lens maker|1 +(noun)|optician|skilled worker|trained worker +lens system|1 +(noun)|lens|lense|optical device +lense|1 +(noun)|lens|lens system|optical device +lensman|1 +(noun)|photographer|artist|creative person +lent|1 +(noun)|Lent|Lententide|season +lent lily|1 +(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily +lente iletin|1 +(noun)|Lente Insulin|Lente Iletin|insulin +lente insulin|1 +(noun)|Lente Insulin|Lente Iletin|insulin +lenten|1 +(adj)|season +lenten rose|1 +(noun)|black hellebore|Helleborus orientalis|hellebore +lententide|1 +(noun)|Lent|Lententide|season +lentia|1 +(noun)|Linz|Lentia|city|metropolis|urban center +lentibulariaceae|1 +(noun)|Lentibulariaceae|family Lentibulariaceae|bladderwort family|plant family +lentic|1 +(adj)|lentic +lenticel|1 +(noun)|stoma|stomate|pore +lenticular|1 +(adj)|biconvex|convexo-convex|lentiform|convex |bulging +lenticular nucleus|1 +(noun)|lentiform nucleus|basal ganglion +lentiform|1 +(adj)|biconvex|convexo-convex|lenticular|convex |bulging +lentiform nucleus|1 +(noun)|lenticular nucleus|basal ganglion +lentiginose|1 +(adj)|freckled|lentiginous|patterned +lentiginous|1 +(adj)|freckled|lentiginose|patterned +lentigo|1 +(noun)|freckle|macule|macula +lentil|3 +(noun)|legume +(noun)|legume +(noun)|lentil plant|Lens culinaris|legume|leguminous plant +lentil plant|1 +(noun)|lentil|Lens culinaris|legume|leguminous plant +lentil soup|1 +(noun)|soup +lentinus|1 +(noun)|Lentinus|genus Lentinus|fungus genus +lentinus edodes|1 +(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus +lentinus lepideus|1 +(noun)|scaly lentinus|Lentinus lepideus|fungus +lentissimo|1 +(adj)|slow +lento|2 +(adj)|slow +(adv)|slowly +leo|3 +(noun)|Leo|Lion|person|individual|someone|somebody|mortal|human|soul +(noun)|Leo|constellation +(noun)|Leo|Leo the Lion|Lion|sign of the zodiac|star sign|sign|mansion|house|planetary house +leo delibes|1 +(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer +leo esaki|1 +(noun)|Esaki|Leo Esaki|physicist +leo i|1 +(noun)|Leo I|St. Leo I|Leo the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint +leo iii|1 +(noun)|Leo III|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +leo szilard|1 +(noun)|Szilard|Leo Szilard|nuclear physicist|molecular biologist +leo the great|1 +(noun)|Leo I|St. Leo I|Leo the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint +leo the lion|1 +(noun)|Leo|Leo the Lion|Lion|sign of the zodiac|star sign|sign|mansion|house|planetary house +leo tolstoy|1 +(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer|author +leo x|1 +(noun)|Leo X|Giovanni de Medici|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +leon|3 +(noun)|Leon|geographical area|geographic area|geographical region|geographic region +(noun)|Leon|city|metropolis|urban center +(noun)|Leon|city|metropolis|urban center +leon battista alberti|1 +(noun)|Alberti|Leon Battista Alberti|architect|designer|painter +leon trotsky|1 +(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik|Bolshevist|revolutionist|revolutionary|subversive|subverter +leonard|1 +(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer|author +leonard bernstein|1 +(noun)|Bernstein|Leonard Bernstein|conductor|music director|director|composer +leonard bloomfield|1 +(noun)|Bloomfield|Leonard Bloomfield|linguist|linguistic scientist +leonard constant lambert|1 +(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer|conductor|music director|director +leonard marx|1 +(noun)|Marx|Leonard Marx|Chico|comedian|comic +leonardesque|1 +(adj)|Leonardesque|old master|sculptor|sculpturer|carver|statue maker|engineer|applied scientist|technologist|architect|designer +leonardo|1 +(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master|sculptor|sculpturer|carver|statue maker|engineer|applied scientist|technologist|architect|designer +leonardo da vinci|1 +(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master|sculptor|sculpturer|carver|statue maker|engineer|applied scientist|technologist|architect|designer +leonberg|1 +(noun)|Leonberg|dog|domestic dog|Canis familiaris +leoncita|1 +(noun)|tamarin|lion monkey|lion marmoset|marmoset +leone|1 +(noun)|Sierra Leone monetary unit +leonhard euler|1 +(noun)|Euler|Leonhard Euler|mathematician +leonid brezhnev|1 +(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman|solon|national leader +leonid fyodorovich myasin|1 +(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer|professional dancer|choreographer +leonid ilyich brezhnev|1 +(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman|solon|national leader +leonidas|1 +(noun)|Leonidas|king|male monarch +leonide fedorovitch massine|1 +(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer|professional dancer|choreographer +leonine|1 +(adj)|big cat|cat +leonotis|1 +(noun)|Leonotis|genus Leonotis|asterid dicot genus +leonotis leonurus|1 +(noun)|dagga|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb|herbaceous plant +leonotis nepetaefolia|1 +(noun)|lion's-ear|Leonotis nepetaefolia|Leonotis nepetifolia|herb|herbaceous plant +leonotis nepetifolia|1 +(noun)|lion's-ear|Leonotis nepetaefolia|Leonotis nepetifolia|herb|herbaceous plant +leontief|1 +(noun)|Leontief|Wassily Leontief|economist|economic expert +leontocebus|1 +(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus +leontocebus oedipus|1 +(noun)|pinche|Leontocebus oedipus|tamarin|lion monkey|lion marmoset|leoncita +leontocebus rosalia|1 +(noun)|silky tamarin|Leontocebus rosalia|tamarin|lion monkey|lion marmoset|leoncita +leontodon|1 +(noun)|Leontodon|genus Leontodon|asterid dicot genus +leontodon autumnalis|1 +(noun)|fall dandelion|arnica bud|Leontodon autumnalis|hawkbit +leontopodium|1 +(noun)|Leontopodium|genus Leontopodium|asterid dicot genus +leontopodium alpinum|1 +(noun)|edelweiss|Leontopodium alpinum|wildflower|wild flower +leontyne price|1 +(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano +leonurus|1 +(noun)|Leonurus|genus Leonurus|asterid dicot genus +leonurus cardiaca|1 +(noun)|motherwort|Leonurus cardiaca|herb|herbaceous plant +leopard|2 +(noun)|fur|pelt +(noun)|Panthera pardus|big cat|cat +leopard's-bane|1 +(noun)|leopardbane|herb|herbaceous plant +leopard cat|1 +(noun)|Felis bengalensis|wildcat +leopard frog|1 +(noun)|spring frog|Rana pipiens|true frog|ranid +leopard lily|3 +(noun)|panther lily|Lilium pardalinum|lily +(noun)|tiger lily|pine lily|Lilium catesbaei|lily +(noun)|blackberry-lily|Belamcanda chinensis|iridaceous plant +leopard lizard|1 +(noun)|iguanid|iguanid lizard +leopard plant|1 +(noun)|herb|herbaceous plant +leopardbane|1 +(noun)|leopard's-bane|herb|herbaceous plant +leopardess|1 +(noun)|leopard|Panthera pardus +leopold antoni stanislaw stokowski|1 +(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor|music director|director +leopold kronecker|1 +(noun)|Kronecker|Leopold Kronecker|mathematician +leopold stokowski|1 +(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor|music director|director +leopoldville|1 +(noun)|Kinshasa|Leopoldville|national capital +leotard|1 +(noun)|unitard|body suit|cat suit|garment +leotards|2 +(noun)|tights|hosiery|hose +(noun)|leotard|unitard|body suit|cat suit|garment +leotia lubrica|1 +(noun)|Leotia lubrica|discomycete|cup fungus +lepadidae|1 +(noun)|Lepadidae|family Lepadidae|arthropod family +lepanto|1 +(noun)|Lepanto|Battle of Lepanto|naval battle +lepas|1 +(noun)|Lepas|genus Lepas|arthropod genus +lepas fascicularis|1 +(noun)|goose barnacle|gooseneck barnacle|Lepas fascicularis|barnacle|cerriped|cerripede +lepechinia|1 +(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus +lepechinia calycina|1 +(noun)|pitcher sage|Lepechinia calycina|Sphacele calycina|shrub|bush +leper|2 +(noun)|lazar|sick person|diseased person|sufferer +(noun)|outcast|castaway|pariah|Ishmael +leper lily|1 +(noun)|snake's head fritillary|guinea-hen flower|checkered daffodil|Fritillaria meleagris|fritillary|checkered lily +lepidium|1 +(noun)|Lepidium|genus Lepidium|dilleniid dicot genus +lepidium alpina|1 +(noun)|chamois cress|Pritzelago alpina|Lepidium alpina|herb|herbaceous plant +lepidium sativum|1 +(noun)|common garden cress|garden pepper cress|pepper grass|pepperwort|Lepidium sativum|cress|cress plant +lepidobotryaceae|1 +(noun)|Lepidobotryaceae|family Lepidobotryaceae|rosid dicot family +lepidobotrys|1 +(noun)|tree +lepidochelys|1 +(noun)|Lepidochelys|genus Lepidochelys|reptile genus +lepidochelys kempii|1 +(noun)|Atlantic ridley|bastard ridley|bastard turtle|Lepidochelys kempii|ridley +lepidochelys olivacea|1 +(noun)|Pacific ridley|olive ridley|Lepidochelys olivacea|ridley +lepidocrocite|1 +(noun)|iron ore +lepidocybium|1 +(noun)|Lepidocybium|genus Lepidocybium|fish genus +lepidocybium flavobrunneum|1 +(noun)|escolar|Lepidocybium flavobrunneum|gempylid +lepidodendraceae|1 +(noun)|Lepidodendraceae|family Lepidodendraceae|fern family +lepidodendrales|1 +(noun)|Lepidodendrales|order Lepidodendrales|plant order +lepidolite|1 +(noun)|mica|isinglass +lepidomelane|1 +(noun)|biotite +lepidophobia|1 +(noun)|zoophobia +lepidoptera|2 +(noun)|Lepidoptera|order Lepidoptera|animal order +(noun)|lepidopterous insect|lepidopteron|lepidopteran|insect +lepidopteran|1 +(noun)|lepidopterous insect|lepidopteron|insect +lepidopterist|1 +(noun)|butterfly collector|entomologist|bugologist|bug-hunter +lepidopteron|1 +(noun)|lepidopterous insect|lepidopteran|insect +lepidopterous insect|1 +(noun)|lepidopteron|lepidopteran|insect +lepidosauria|1 +(noun)|Lepidosauria|subclass Lepidosauria|class +lepidote|1 +(adj)|leprose|scabrous|scaly|scurfy|rough |unsmooth +lepidothamnus|1 +(noun)|Lepidothamnus|genus Lepidothamnus|gymnosperm genus +lepidothamnus fonkii|1 +(noun)|Chilean rimu|Lepidothamnus fonkii|shrub|bush +lepidothamnus laxifolius|1 +(noun)|mountain rimu|Lepidothamnus laxifolius|Dacridium laxifolius|shrub|bush +lepiota|1 +(noun)|agaric +lepiota americana|1 +(noun)|American parasol|Lepiota americana|lepiota +lepiota cepaestipes|1 +(noun)|onion stem|Lepiota cepaestipes|lepiota +lepiota clypeolaria|1 +(noun)|Lepiota clypeolaria|lepiota +lepiota morgani|1 +(noun)|poisonous parasol|Lepiota morgani|lepiota +lepiota naucina|1 +(noun)|Lepiota naucina|lepiota +lepiota procera|1 +(noun)|parasol mushroom|Lepiota procera|agaric +lepiota rhacodes|1 +(noun)|Lepiota rhacodes|lepiota +lepiota rubrotincta|1 +(noun)|Lepiota rubrotincta|lepiota +lepiotaceae|1 +(noun)|Lepiotaceae|family Lepiotaceae|fungus family +lepisma|1 +(noun)|Lepisma|genus Lepisma|arthropod genus +lepisma saccharina|1 +(noun)|silverfish|Lepisma saccharina|thysanuran insect|thysanuron +lepismatidae|1 +(noun)|Lepismatidae|family Lepismatidae|arthropod family +lepisosteidae|1 +(noun)|Lepisosteidae|family Lepisosteidae|fish family +lepisosteus|1 +(noun)|Lepisosteus|genus Lepisosteus|fish genus +lepisosteus osseus|1 +(noun)|gar|garfish|garpike|billfish|Lepisosteus osseus|ganoid|ganoid fish +lepista irina|1 +(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric +lepomis|1 +(noun)|Lepomis|genus Lepomis|fish genus +lepomis gibbosus|1 +(noun)|pumpkinseed|Lepomis gibbosus|sunfish|centrarchid +lepomis macrochirus|1 +(noun)|bluegill|Lepomis macrochirus|freshwater bream|bream +lepomis punctatus|1 +(noun)|spotted sunfish|stumpknocker|Lepomis punctatus|freshwater bream|bream +leporid|1 +(noun)|leporid mammal|lagomorph|gnawing mammal +leporid mammal|1 +(noun)|leporid|lagomorph|gnawing mammal +leporidae|1 +(noun)|Leporidae|family Leporidae|mammal family +leporide|1 +(noun)|Belgian hare|rabbit|coney|cony +leppy|1 +(noun)|dogie|dogy|calf +leprechaun|1 +(noun)|elf|hob|gremlin|pixie|pixy|brownie|imp +lepromatous leprosy|1 +(noun)|leprosy|Hansen's disease +leprose|1 +(adj)|lepidote|scabrous|scaly|scurfy|rough |unsmooth +leprosy|1 +(noun)|Hansen's disease|infectious disease +leprosy bacillus|1 +(noun)|Mycobacterium leprae|mycobacteria|mycobacterium +leprous|1 +(adj)|infectious disease +leptarrhena|1 +(noun)|Leptarrhena|genus Leptarrhena|rosid dicot genus +leptarrhena pyrolifolia|1 +(noun)|leatherleaf saxifrage|Leptarrhena pyrolifolia|wildflower|wild flower +leptinotarsa|1 +(noun)|Leptinotarsa|genus Leptinotarsa|arthropod genus +leptinotarsa decemlineata|1 +(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle|chrysomelid +leptocephalus|1 +(noun)|larva +leptodactylid|1 +(noun)|leptodactylid frog|frog|toad|toad frog|anuran|batrachian|salientian +leptodactylid frog|1 +(noun)|leptodactylid|frog|toad|toad frog|anuran|batrachian|salientian +leptodactylidae|1 +(noun)|Leptodactylidae|family Leptodactylidae|amphibian family +leptodactylus|1 +(noun)|Leptodactylus|genus Leptodactylus|amphibian genus +leptodactylus pentadactylus|1 +(noun)|crapaud|South American bullfrog|Leptodactylus pentadactylus|frog|toad|toad frog|anuran|batrachian|salientian +leptoglossus|1 +(noun)|Leptoglossus|genus Leptoglossus|arthropod genus +leptomeninges|1 +(noun)|meninx|meninges +leptomeningitis|1 +(noun)|meningitis +lepton|2 +(noun)|Greek monetary unit +(noun)|elementary particle|fundamental particle|subatomic particle|fermion +leptopteris|1 +(noun)|Leptopteris|genus Leptopteris|fern genus +leptopteris superba|1 +(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +leptoptilus|1 +(noun)|Leptoptilus|genus Leptoptilus|bird genus +leptoptilus crumeniferus|1 +(noun)|marabou|marabout|marabou stork|Leptoptilus crumeniferus|stork +leptoptilus dubius|1 +(noun)|adjutant bird|adjutant|adjutant stork|Leptoptilus dubius|stork +leptorhine|1 +(adj)|leptorrhine |leptorrhinian|leptorrhinic +leptorrhine|1 +(adj)|leptorrhine |leptorhine|leptorrhinian|leptorrhinic +leptorrhinian|1 +(adj)|leptorrhine |leptorhine|leptorrhinic +leptorrhinic|1 +(adj)|leptorrhine |leptorhine|leptorrhinian +leptospira|1 +(noun)|spirochete|spirochaete +leptospirosis|1 +(noun)|swamp fever|zoonosis|zoonotic disease +leptosporangiate|1 +(adj)|leptosporangiate +leptosporangium|1 +(noun)|sporangium|spore case|spore sac +leptotene|1 +(noun)|phase|stage +leptotyphlopidae|1 +(noun)|Leptotyphlopidae|family Leptotyphlopidae|reptile family +leptotyphlops|1 +(noun)|Leptotyphlops|genus Leptotyphlops|reptile genus +leptotyphlops humilis|1 +(noun)|western blind snake|Leptotyphlops humilis|blind snake|worm snake +lepus|2 +(noun)|Lepus|constellation +(noun)|Lepus|genus Lepus|mammal genus +lepus americanus|1 +(noun)|snowshoe hare|snowshoe rabbit|varying hare|Lepus americanus|hare +lepus arcticus|1 +(noun)|polar hare|Arctic hare|Lepus arcticus|hare +lepus californicus|1 +(noun)|blacktail jackrabbit|Lepus californicus|jackrabbit +lepus europaeus|1 +(noun)|European hare|Lepus europaeus|hare +lepus townsendi|1 +(noun)|white-tailed jackrabbit|whitetail jackrabbit|Lepus townsendi|jackrabbit +ler|1 +(noun)|Lir|Ler|Celtic deity +leresis|1 +(noun)|garrulity|garrulousness|loquaciousness|loquacity|talkativeness +lermontov|1 +(noun)|Lermontov|Mikhail Yurievich Lermontov|writer|author +lerner|1 +(noun)|Lerner|Alan Jay Lerner|lyricist +leroi jones|1 +(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer|author +lerot|1 +(noun)|dormouse +leroy robert paige|1 +(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer|baseball player +lesbian|3 +(adj)|sapphic|homosexual +(noun)|tribade|gay woman|homosexual|homo|gay +(noun)|Lesbian|Greek|Hellene +lesbianism|1 +(noun)|sapphism|homosexuality|homosexualism|homoeroticism|gayness +lesbos|1 +(noun)|Lesbos|Lesvos|Mytilene|Aegean island +lescol|1 +(noun)|fluvastatin|Lescol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +lese majesty|1 +(noun)|treason|high treason|crime|law-breaking +lesion|2 +(noun)|pathology +(noun)|wound|injury|hurt|harm|trauma +leslie howard|1 +(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor|histrion|player|thespian|role player +leslie howard stainer|1 +(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor|histrion|player|thespian|role player +leslie richard groves|1 +(noun)|Groves|Leslie Richard Groves|general|full general +leslie townes hope|1 +(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian|comic +lesotho|1 +(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country|African nation +lesotho monetary unit|1 +(noun)|Lesotho monetary unit|monetary unit +lespedeza|1 +(noun)|bush clover|woody plant|ligneous plant +lespedeza bicolor|1 +(noun)|bicolor lespediza|ezo-yama-hagi|Lespedeza bicolor|bush clover|lespedeza +lespedeza cuneata|1 +(noun)|sericea lespedeza|Lespedeza sericea|Lespedeza cuneata|bush clover|lespedeza +lespedeza sericea|1 +(noun)|sericea lespedeza|Lespedeza sericea|Lespedeza cuneata|bush clover|lespedeza +lespedeza stipulacea|1 +(noun)|Korean lespedeza|Lespedeza stipulacea|bush clover|lespedeza +lespedeza striata|1 +(noun)|japanese clover|japan clover|jap clover|Lespedeza striata|bush clover|lespedeza +lesquerella|1 +(noun)|Lesquerella|genus Lesquerella|dilleniid dicot genus +less|5 +(adj)|less |little +(adj)|inferior +(adj)|lower|inferior +(adj)|fewer +(adv)|to a lesser extent +less-traveled|1 +(adj)|unpopular +less than|1 +(adv)|to a lesser degree +lessee|1 +(noun)|leaseholder|tenant|renter +lessen|3 +(verb)|decrease|diminish|fall|change magnitude +(verb)|decrease|minify|change|alter|modify +(verb)|subside|weaken +lessened|2 +(adj)|diminished|vitiated|weakened|impaired +(adj)|mitigated +lessening|1 +(noun)|decrease|drop-off|change|alteration|modification +lesseps|1 +(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat|diplomatist +lesser|6 +(adj)|lesser +(adj)|small +(adj)|less |little +(adj)|less|inferior +(adj)|less|lower|inferior +(adj)|less|fewer +lesser anteater|1 +(noun)|tamandua|tamandu|Tamandua tetradactyla|anteater|New World anteater +lesser antilles|1 +(noun)|Lesser Antilles|Caribees|archipelago +lesser ape|1 +(noun)|anthropoid ape +lesser bullrush|1 +(noun)|narrow-leaf cattail|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail +lesser burdock|1 +(noun)|common burdock|Arctium minus|burdock|clotbur +lesser butterfly orchid|1 +(noun)|Platanthera bifolia|Habenaria bifolia|orchid|orchidaceous plant +lesser calamint|1 +(noun)|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +lesser celandine|1 +(noun)|pilewort|Ranunculus ficaria|flower +lesser centaury|1 +(noun)|Centaurium minus|centaury +lesser duckweed|1 +(noun)|common duckweed|Lemna minor|duckweed +lesser galangal|1 +(noun)|Alpinia officinarum|Alpinia officinalis|ginger +lesser hemlock|1 +(noun)|fool's parsley|Aethusa cynapium|poisonous plant +lesser knapweed|1 +(noun)|black knapweed|hardheads|Centaurea nigra|knapweed +lesser kudu|1 +(noun)|Tragelaphus imberbis|kudu|koodoo|koudou +lesser omentum|1 +(noun)|omentum +lesser panda|1 +(noun)|red panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid +lesser peritoneal cavity|1 +(noun)|bursa omentalis|omental bursa|cavity|bodily cavity|cavum +lesser prairie chicken|1 +(noun)|Tympanuchus pallidicinctus|prairie chicken|prairie grouse|prairie fowl +lesser rhomboid muscle|1 +(noun)|rhomboid minor muscle|musculus rhomboideus minor|rhomboid|rhomboid muscle +lesser rorqual|1 +(noun)|piked whale|minke whale|Balaenoptera acutorostrata|rorqual|razorback +lesser scaup|1 +(noun)|lesser scaup duck|lake duck|Aythya affinis|scaup|scaup duck|bluebill|broadbill +lesser scaup duck|1 +(noun)|lesser scaup|lake duck|Aythya affinis|scaup|scaup duck|bluebill|broadbill +lesser spearwort|1 +(noun)|Ranunculus flammula|marsh plant|bog plant|swamp plant +lesser sunda islands|1 +(noun)|Lesser Sunda Islands|Nusa Tenggara|archipelago +lesser twayblade|1 +(noun)|Listera cordata|orchid|orchidaceous plant +lesser whitethroat|1 +(noun)|whitethroat|Sylvia curruca|warbler +lesser wintergreen|1 +(noun)|Pyrola minor|wintergreen|pyrola +lesser yellow trefoil|1 +(noun)|hop clover|shamrock|Trifolium dubium|clover|trefoil +lesser yellowlegs|1 +(noun)|Tringa flavipes|yellowlegs +lessing|2 +(noun)|Lessing|Gotthold Ephraim Lessing|dramatist|playwright +(noun)|Lessing|Doris Lessing|Doris May Lessing|writer|author +lesson|4 +(noun)|teaching|instruction|pedagogy +(noun)|example|deterrent example|object lesson|admonition|monition|warning|word of advice +(noun)|moral|meaning|significance|signification|import +(noun)|school assignment|schoolwork +lessor|1 +(noun)|lease giver|owner|proprietor +lester willis young|1 +(noun)|Young|Pres Young|Lester Willis Young|saxophonist|saxist +lesvos|1 +(noun)|Lesbos|Lesvos|Mytilene|Aegean island +let|8 +(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|net ball|serve|service +(verb)|allow|permit +(verb)|induce|stimulate|cause|have|get|make +(verb)|permit|allow|countenance|accept|consent|go for +(verb)|get|have|make|get +(verb)|leave|leave alone|leave behind +(verb)|lease|rent|give +let alone|1 +(adv)|not to mention +let down|2 +(verb)|lower|take down|get down|bring down|move|displace +(verb)|disappoint|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk +let drive|1 +(verb)|loose off|let fly|fire|discharge +let fly|1 +(verb)|loose off|let drive|fire|discharge +let go|2 +(verb)|let go of|release|relinquish +(verb)|be +let go of|1 +(verb)|let go|release|relinquish +let in|2 +(verb)|admit|include|permit|allow|let|countenance +(verb)|admit|allow in|intromit|permit|allow|let|countenance +let it go|1 +(verb)|refrain|forbear +let loose|2 +(verb)|utter|emit|let out +(verb)|unleash|loose|let go of|let go|release|relinquish +let off|1 +(verb)|excuse|relieve|exempt|absolve|justify|free +let on|1 +(verb)|disclose|bring out|reveal|discover|expose|divulge|impart|break|give away|let out|tell +let out|4 +(verb)|utter|emit|let loose +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|tell +(verb)|bring out|let go of|let go|release|relinquish +(verb)|widen|change|alter|vary +let the cat out of the bag|1 +(verb)|spill the beans|talk|tattle|blab|peach|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +let up|2 +(verb)|abate|slack off|slack|die away|decrease|diminish|lessen|fall +(verb)|ease up|ease off|change|alter|modify +letch|1 +(noun)|satyr|lecher|lech|pervert|deviant|deviate|degenerate +letdown|1 +(noun)|disappointment|dissatisfaction +lethal|1 +(adj)|deadly|fatal +lethal agent|1 +(noun)|agent +lethal dose|1 +(noun)|dose +lethal gene|1 +(noun)|gene|cistron|factor +lethality|1 +(noun)|deadliness|unwholesomeness|morbidness|morbidity +lethargic|1 +(adj)|lethargic |unergetic|dazed|foggy|groggy|logy|stuporous|dreamy|lackadaisical|languid|languorous|listless|inactive +lethargic encephalitis|1 +(noun)|sleeping sickness|sleepy sickness|epidemic encephalitis|encephalitis lethargica|encephalitis|cephalitis|phrenitis +lethargically|1 +(adv)|unenergetically +lethargy|3 +(noun)|lassitude|sluggishness|torpor|torpidity +(noun)|inanition|lassitude|weakness +(noun)|languor|sluggishness|phlegm|inactiveness|inactivity|inertia +lethe|1 +(noun)|Lethe|River Lethe|river +leto|1 +(noun)|Leto|Latona|Greco-Roman deity|Graeco-Roman deity +letter|8 +(noun)|missive|text|textual matter|document +(noun)|letter of the alphabet|alphabetic character|character|grapheme|graphic symbol +(noun)|literal interpretation +(noun)|varsity letter|award|accolade|honor|honour|laurels +(noun)|owner|proprietor +(verb)|earn|garner +(verb)|print|impress +(verb)|write +letter-perfect|1 +(adj)|word-perfect|correct +letter bomb|2 +(noun)|parcel bomb|package bomb|bomb +(verb)|bombard|bomb +letter bond|1 +(noun)|letter security +letter box|3 +(noun)|post-office box|POB|call box|compartment +(noun)|postbox|mailbox|maildrop +(noun)|mailbox|box +letter carrier|1 +(noun)|mailman|postman|mail carrier|carrier|deliveryman|delivery boy|deliverer +letter case|1 +(noun)|case +letter of credit|1 +(noun)|document|credit +letter of intent|1 +(noun)|letter|missive +letter of jeremiah|1 +(noun)|Letter of Jeremiah|Epistle of Jeremiah|book +letter of mark and reprisal|1 +(noun)|letter of marque|letters of marque|license|licence|permit +letter of marque|1 +(noun)|letters of marque|letter of mark and reprisal|license|licence|permit +letter of the alphabet|1 +(noun)|letter|alphabetic character|character|grapheme|graphic symbol +letter opener|1 +(noun)|paper knife|paperknife|knife +letter paper|2 +(noun)|writing paper +(noun)|stationery|writing paper +letter security|1 +(noun)|security|certificate +letter stock|1 +(noun)|letter security +letter telegram|1 +(noun)|telegram|wire +letter writer|1 +(noun)|correspondent|communicator +lettercard|1 +(noun)|postcard|post card|postal card|mailing-card +lettered|2 +(adj)|literate +(adj)|enlightened|knowing|knowledgeable|learned|well-educated|well-read|educated +letterer|1 +(noun)|painter +letterhead|1 +(noun)|stationery|letter paper +lettering|1 +(noun)|inscription|writing|written material|piece of writing +letterman|1 +(noun)|athlete|jock +letterpress|1 +(noun)|relief printing|printing|printing process +letters|7 +(noun)|culture +(noun)|eruditeness|erudition|learnedness|learning|scholarship|encyclopedism|encyclopaedism +(noun)|letter|missive|text|textual matter|document +(noun)|letter|letter of the alphabet|alphabetic character|character|grapheme|graphic symbol +(noun)|letter|literal interpretation +(noun)|letter|varsity letter|award|accolade|honor|honour|laurels +(noun)|letter|owner|proprietor +letters of administration|1 +(noun)|legal document|legal instrument|official document|instrument +letters of marque|2 +(noun)|letter of marque|letter of mark and reprisal|license|licence|permit +(noun)|letter of marque|letter of mark and reprisal|license|licence|permit +letters patent|1 +(noun)|patent|legal document|legal instrument|official document|instrument +letters testamentary|1 +(noun)|legal document|legal instrument|official document|instrument +letterset printing|1 +(noun)|offset|offset printing +letting|1 +(noun)|lease|rental|property|belongings|holding|material possession +letting down|1 +(noun)|lowering|movement +lettish|1 +(noun)|Latvian|Lettish|Baltic|Baltic language +lettre de cachet|1 +(noun)|cachet|warrant +lettuce|3 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|herb|herbaceous plant +(noun)|salad green|salad greens +letup|1 +(noun)|lull|pause|intermission|break|interruption|suspension +leu|2 +(noun)|Moldovan monetary unit +(noun)|Romanian monetary unit +leucadendron|1 +(noun)|Leucadendron|genus Leucadendron|dicot genus|magnoliopsid genus +leucadendron argenteum|1 +(noun)|silver tree|Leucadendron argenteum|tree +leucaemia|1 +(noun)|leukemia|leukaemia|cancer of the blood|cancer|malignant neoplastic disease +leucaena|1 +(noun)|Leucaena|genus Leucaena|rosid dicot genus +leucaena glauca|1 +(noun)|lead tree|white popinac|Leucaena glauca|Leucaena leucocephala|tree +leucaena leucocephala|1 +(noun)|lead tree|white popinac|Leucaena glauca|Leucaena leucocephala|tree +leucanthemum|1 +(noun)|Leucanthemum|genus Leucanthemum|asterid dicot genus +leucanthemum lacustre|1 +(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite|composite plant +leucanthemum maximum|1 +(noun)|oxeye daisy|Leucanthemum maximum|Chrysanthemum maximum|composite|composite plant +leucanthemum superbum|1 +(noun)|shasta daisy|Leucanthemum superbum|Chrysanthemum maximum maximum|composite|composite plant +leucanthemum vulgare|1 +(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +leucine|1 +(noun)|essential amino acid +leuciscus|1 +(noun)|Leuciscus|genus Leuciscus|fish genus +leuciscus cephalus|1 +(noun)|chub|Leuciscus cephalus|cyprinid|cyprinid fish +leuciscus leuciscus|1 +(noun)|dace|Leuciscus leuciscus|cyprinid|cyprinid fish +leucocyte|1 +(noun)|leukocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +leucocytosis|1 +(noun)|leukocytosis|blood disease|blood disorder +leucocytozoan|1 +(noun)|leucocytozoon|sporozoan +leucocytozoon|1 +(noun)|leucocytozoan|sporozoan +leucogenes|1 +(noun)|Leucogenes|genus Leucogenes|asterid dicot genus +leucogenes leontopodium|1 +(noun)|north island edelweiss|Leucogenes leontopodium|wildflower|wild flower +leucoma|1 +(noun)|leukoma|eye disease +leucopenia|1 +(noun)|leukopenia|blood disease|blood disorder +leucorrhea|1 +(noun)|leukorrhea|mucus|mucous secretion +leucothoe|1 +(noun)|shrub|bush +leucothoe editorum|1 +(noun)|dog laurel|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub|bush +leucothoe fontanesiana|1 +(noun)|dog laurel|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub|bush +leucothoe racemosa|1 +(noun)|sweet bells|Leucothoe racemosa|shrub|bush +leucotomy|1 +(noun)|lobotomy|leukotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery +leuctra|1 +(noun)|Leuctra|battle of Leuctra|pitched battle +leukaemia|1 +(noun)|leukemia|leucaemia|cancer of the blood|cancer|malignant neoplastic disease +leukemia|1 +(noun)|leukaemia|leucaemia|cancer of the blood|cancer|malignant neoplastic disease +leukeran|1 +(noun)|chlorambucil|Leukeran|alkalating agent +leukocyte|1 +(noun)|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +leukocytosis|1 +(noun)|leucocytosis|blood disease|blood disorder +leukoderma|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +leukoencephalitis|1 +(noun)|encephalitis|cephalitis|phrenitis +leukoma|1 +(noun)|leucoma|eye disease +leukopenia|1 +(noun)|leucopenia|blood disease|blood disorder +leukorrhea|1 +(noun)|leucorrhea|mucus|mucous secretion +leukotomy|1 +(noun)|lobotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery +leuwenhoek|1 +(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist +lev|1 +(noun)|Bulgarian monetary unit +lev davidovich bronstein|1 +(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik|Bolshevist|revolutionist|revolutionary|subversive|subverter +lev davidovich landau|1 +(noun)|Landau|Lev Davidovich Landau|physicist +lev ivanov|1 +(noun)|Ivanov|Lev Ivanov|choreographer +levallorphan|1 +(noun)|Lorfan|drug +levant|3 +(noun)|Levant|Levant morocco|morocco +(noun)|Levant|geographical area|geographic area|geographical region|geographic region +(verb)|abscond|bolt|absquatulate|decamp|run off|go off +levant cotton|1 +(noun)|Levant cotton|Gossypium herbaceum|cotton|cotton plant +levant garlic|1 +(noun)|wild leek|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant +levant morocco|1 +(noun)|Levant|Levant morocco|morocco +levanter|1 +(noun)|east wind|easter|easterly +levantine|2 +(adj)|Levantine|geographical area|geographic area|geographical region|geographic region +(noun)|Levantine|native|indigen|indigene +levee|1 +(noun)|dam|dike|dyke|barrier +level|19 +(adj)|flat|plane|even +(adj)|unwavering|steady +(adj)|horizontal +(adj)|even +(adj)|tied|even|equal +(noun)|degree|grade|magnitude +(noun)|grade|tier|rank +(noun)|degree|stage|point|state +(noun)|altitude|height +(noun)|spirit level|indicator +(noun)|horizontal surface|surface +(noun)|floor|storey|story|structure|construction +(noun)|layer|stratum|place +(verb)|aim|take|train|take aim|direct +(verb)|raze|rase|dismantle|tear down|take down|pull down|destroy|destruct +(verb)|flush|even out|even|change surface +(verb)|charge|point|aim|take|train|take aim|direct +(verb)|talk|speak +(verb)|level off|change surface +level best|1 +(noun)|utmost|uttermost|maximum|limit|bounds|boundary +level crossing|1 +(noun)|grade crossing|intersection|crossroad|crossway|crossing|carrefour +level off|1 +(verb)|level|change surface +leveler|1 +(noun)|leveller|radical +levelheaded|1 +(adj)|healthy|intelligent|sound|reasonable |sensible +leveling|3 +(noun)|grading|construction|building +(noun)|razing|tearing down|demolishing|destruction|devastation +(noun)|equalization|equalisation|deed|feat|effort|exploit +leveller|1 +(noun)|leveler|radical +lever|4 +(noun)|bar +(noun)|machine|simple machine +(noun)|lever tumbler|tumbler +(verb)|pry|prise|prize|jimmy|open|open up +lever hang|1 +(noun)|hang +lever lock|1 +(noun)|lock +lever scale|1 +(noun)|steelyard|beam scale|balance +lever tumbler|1 +(noun)|lever|tumbler +leverage|5 +(noun)|purchase|mechanical phenomenon +(noun)|advantage|vantage +(noun)|leveraging|investing|investment +(verb)|supplement +(verb)|supply|provide|render|furnish +leveraged buyout|1 +(noun)|buyout +leveraging|1 +(noun)|leverage|investing|investment +leveret|1 +(noun)|hare +levi|1 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +levi's|1 +(noun)|Levi's|levis|jean|blue jean|denim +levi-strauss|1 +(noun)|Levi-Strauss|Claude Levi-Strauss|anthropologist +leviathan|2 +(noun)|freak|monster|monstrosity|lusus naturae +(noun)|mythical monster|mythical creature +levirate|1 +(noun)|institution +levis|2 +(noun)|Levi's|jean|blue jean|denim +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +levisticum|1 +(noun)|Levisticum|genus Levisticum|rosid dicot genus +levisticum officinale|1 +(noun)|lovage|Levisticum officinale|herb|herbaceous plant +levitate|2 +(verb)|raise|lift|elevate|get up|bring up +(verb)|hover +levitation|3 +(noun)|phenomenon +(noun)|change of location|travel +(noun)|rise|ascent|ascension|ascending +levite|1 +(noun)|Levite|Jew|Hebrew|Israelite +levitical|1 +(adj)|Levitical|book +leviticus|1 +(noun)|Leviticus|Book of Leviticus|book +levity|2 +(noun)|feeling +(noun)|frivolity|frivolousness +levodopa|1 +(noun)|L-dopa|Bendopa|Brocadopa|Larodopa|dopa|dihydroxyphenylalanine +levorotary|1 +(adj)|levorotatory|left-handed|counterclockwise |anticlockwise|contraclockwise +levorotation|1 +(noun)|counterclockwise rotation|rotation|revolution|gyration +levorotatory|1 +(adj)|levorotary|left-handed|counterclockwise |anticlockwise|contraclockwise +levulose|1 +(noun)|fructose|fruit sugar|laevulose|ketohexose +levy|4 +(noun)|charge +(noun)|levy en masse|conscription|muster|draft|selective service +(verb)|impose|charge|bill +(verb)|recruit|raise|enlist|draft|muster in +levy en masse|1 +(noun)|levy|conscription|muster|draft|selective service +lewd|2 +(adj)|obscene|raunchy|salacious|dirty +(adj)|lascivious|libidinous|lustful|sexy +lewdly|1 +(adv)|obscenely +lewdness|1 +(noun)|obscenity|bawdiness|salaciousness|salacity|indecency +lewis|6 +(noun)|Lewis|Jerry Lee Lewis|rock star|pianist|piano player +(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter|jumper +(noun)|Lewis|Meriwether Lewis|explorer|adventurer +(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader +(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer|author +(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer|author +lewis and clark expedition|1 +(noun)|Lewis and Clark Expedition|expedition +lewis carroll|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +lewis henry morgan|1 +(noun)|Morgan|Lewis Henry Morgan|anthropologist +lewisia|1 +(noun)|Lewisia|genus Lewisia|caryophylloid dicot genus +lewisia cotyledon|1 +(noun)|siskiyou lewisia|Lewisia cotyledon|wildflower|wild flower +lewisia rediviva|1 +(noun)|bitterroot|Lewisia rediviva|wildflower|wild flower +lewiston|2 +(noun)|Lewiston|town +(noun)|Lewiston|town +lexeme|1 +(noun)|language unit|linguistic unit +lexical|2 +(adj)|language unit|linguistic unit +(adj)|wordbook +lexical ambiguity|1 +(noun)|polysemy|ambiguity|equivocalness +lexical database|1 +(noun)|electronic database|on-line database|computer database|electronic information service +lexical disambiguation|1 +(noun)|disambiguation +lexical entry|1 +(noun)|dictionary entry|entry +lexical meaning|1 +(noun)|meaning|significance|signification|import +lexicalisation|1 +(noun)|lexicalization|linguistic process +lexicalise|1 +(verb)|lexicalize|give voice|formulate|word|phrase|articulate +lexicalised|1 +(adj)|lexicalized|linguistic process +lexicalization|1 +(noun)|lexicalisation|linguistic process +lexicalize|1 +(verb)|lexicalise|give voice|formulate|word|phrase|articulate +lexicalized|1 +(adj)|lexicalised|linguistic process +lexicalized concept|1 +(noun)|concept|conception|construct +lexicographer|1 +(noun)|lexicologist|linguist|linguistic scientist +lexicographic|1 +(adj)|lexicographical|writing|authorship|composition|penning +lexicographical|1 +(adj)|lexicographic|writing|authorship|composition|penning +lexicography|1 +(noun)|writing|authorship|composition|penning +lexicologist|1 +(noun)|lexicographer|linguist|linguistic scientist +lexicology|1 +(noun)|linguistics +lexicon|2 +(noun)|vocabulary|mental lexicon|cognition|knowledge|noesis +(noun)|dictionary|wordbook +lexicostatistic|1 +(adj)|etymology +lexicostatistics|1 +(noun)|etymology +lexington|3 +(noun)|Lexington|town +(noun)|Lexington|city|metropolis|urban center +(noun)|Lexington|Concord|Lexington and Concord|pitched battle +lexington and concord|1 +(noun)|Lexington|Concord|Lexington and Concord|pitched battle +lexis|1 +(noun)|cognition|knowledge|noesis +ley|1 +(noun)|pasture|pastureland|grazing land|lea|grassland +leycesteria|1 +(noun)|Leycesteria|genus Leycesteria|asterid dicot genus +leycesteria formosa|1 +(noun)|Himalaya honeysuckle|Leycesteria formosa|shrub|bush +leyden|1 +(noun)|Leiden|Leyden|city|metropolis|urban center +leyden jar|1 +(noun)|Leiden jar|Leyden jar|capacitor|capacitance|condenser|electrical condenser +leydig's cell|1 +(noun)|Leydig cell|Leydig's cell|cell +leydig cell|1 +(noun)|Leydig cell|Leydig's cell|cell +leymus|1 +(noun)|Leymus|genus Leymus|monocot genus|liliopsid genus +leymus arenaria|1 +(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass +leymus condensatus|1 +(noun)|giant ryegrass|Elymus condensatus|Leymus condensatus|lyme grass +leyte|1 +(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault +leyte invasion|1 +(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault +leyte island|1 +(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault +lf|1 +(noun)|low frequency|LF|radio frequency +lgb|1 +(noun)|laser-guided bomb|LGB|smart bomb +lgv|1 +(noun)|lymphogranuloma venereum|LGV|lymphopathia venereum|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +lh|1 +(noun)|luteinizing hormone|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +lhasa|2 +(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital +(noun)|Lhasa|Lhasa apso|terrier +lhasa apso|1 +(noun)|Lhasa|Lhasa apso|terrier +lhotse|1 +(noun)|Lhotse|mountain peak +li|3 +(adj)|fifty-one|51|cardinal +(noun)|lithium|Li|atomic number 3|metallic element|metal +(noun)|linear unit +li po|1 +(noun)|Li Po|poet +liabilities|4 +(noun)|possession +(noun)|liability|susceptibility|susceptibleness +(noun)|indebtedness|liability|financial obligation|obligation +(noun)|liability|bad|badness +liability|3 +(noun)|susceptibility|susceptibleness +(noun)|indebtedness|financial obligation|obligation +(noun)|bad|badness +liability insurance|1 +(noun)|insurance +liable|4 +(adj)|apt|likely +(adj)|nonexempt +(adj)|nonimmune|nonresistant|unresistant|susceptible +(adj)|responsible +liaise|1 +(verb)|intercede|mediate|intermediate|arbitrate|negociate|negotiate|talk terms +liaison|2 +(noun)|affair|affaire|intimacy|involvement|amour|sexual relationship +(noun)|link|contact|inter-group communication|channel|communication channel|line +liakoura|1 +(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak +liam o'flaherty|1 +(noun)|O'Flaherty|Liam O'Flaherty|writer|author +liana|1 +(noun)|vine +liao|1 +(noun)|Liao|Liao dynasty|dynasty +liao dynasty|1 +(noun)|Liao|Liao dynasty|dynasty +liar|1 +(noun)|prevaricator|deceiver|cheat|cheater|trickster|beguiler|slicker +liatris|1 +(noun)|Liatris|genus Liatris|asterid dicot genus +liatris punctata|1 +(noun)|dotted gayfeather|Liatris punctata|blazing star|button snakeroot|gayfeather|gay-feather|snakeroot +liatris pycnostachya|1 +(noun)|dense blazing star|Liatris pycnostachya|blazing star|button snakeroot|gayfeather|gay-feather|snakeroot +libation|3 +(noun)|drink +(noun)|helping|portion|serving +(noun)|religious ceremony|religious ritual +libber|1 +(noun)|feminist|women's rightist|women's liberationist|reformer|reformist|crusader|meliorist +libby|1 +(noun)|Libby|Willard Frank Libby|chemist +libel|3 +(noun)|defamation|calumny|obloquy|traducement|hatchet job|tort|civil wrong +(noun)|complaint +(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +libeler|1 +(noun)|defamer|maligner|slanderer|vilifier|backbiter|traducer|detractor|disparager|depreciator|knocker +libellous|1 +(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libelous|slanderous|harmful +libelous|1 +(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|slanderous|harmful +liberal|7 +(adj)|broad|large-minded|tolerant|broad-minded +(adj)|left +(adj)|liberal |civil-libertarian|liberalistic|neoliberal|progressive|reformist|reform-minded|socialized|socialised|welfarist|welfare-statist|left +(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|openhanded|generous +(adj)|free|loose|inexact +(noun)|progressive|adult|grownup +(noun)|adult|grownup +liberal arts|1 +(noun)|humanistic discipline|humanities|arts|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +liberal party|1 +(noun)|Liberal Party|party|political party +liberalisation|1 +(noun)|liberalization|relaxation|easing|easement|alleviation|relief +liberalise|2 +(verb)|liberalize|change +(verb)|liberalize|change|alter|modify +liberalism|2 +(noun)|political orientation|ideology|political theory +(noun)|economic theory +liberalistic|1 +(adj)|liberal +liberality|2 +(noun)|liberalness|tolerance +(noun)|liberalness|generosity|generousness +liberalization|1 +(noun)|liberalisation|relaxation|easing|easement|alleviation|relief +liberalize|2 +(verb)|liberalise|change|alter|modify +(verb)|liberalise|change +liberally|1 +(adv)|munificently|generously +liberalness|2 +(noun)|liberality|tolerance +(noun)|liberality|generosity|generousness +liberate|3 +(verb)|emancipate|change state|turn +(verb)|free|release|unloose|unloosen|loose +(verb)|set free|free|discharge +liberated|3 +(adj)|free +(adj)|emancipated|freed|free +(adj)|emancipated|free +liberation|3 +(noun)|release|freeing|accomplishment|achievement +(noun)|attempt|effort|endeavor|endeavour|try +(noun)|dismissal|dismission|discharge|firing|release|sack|sacking|termination|ending|conclusion +liberation tigers of tamil eelam|1 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +liberator|1 +(noun)|benefactor|helper +liberia|1 +(noun)|Liberia|Republic of Liberia|African country|African nation +liberian|2 +(adj)|Liberian|African country|African nation +(noun)|Liberian|African +liberian capital|1 +(noun)|Monrovia|Liberian capital|capital of Liberia|national capital|port +liberian coffee|1 +(noun)|Liberian coffee|Coffea liberica|coffee|coffee tree +liberian dollar|1 +(noun)|Liberian dollar|dollar +libertarian|1 +(noun)|philosopher +libertarianism|1 +(noun)|political orientation|ideology|political theory +libertine|2 +(adj)|debauched|degenerate|degraded|dissipated|dissolute|profligate|riotous|fast|immoral +(noun)|debauchee|rounder|bad person +liberty|5 +(noun)|autonomy|independence|independency +(noun)|freedom +(noun)|freedom +(noun)|shore leave|leave|leave of absence +(noun)|familiarity|impropriety|indecorum|misbehavior|misbehaviour|misdeed +liberty bell|1 +(noun)|Liberty Bell|bell +liberty cap|1 +(noun)|cap +liberty chit|1 +(noun)|pass|license|licence|permit +liberty island|1 +(noun)|Liberty Island|Bedloe's Island|island +liberty party|1 +(noun)|Liberty Party|party|political party +liberty ship|1 +(noun)|Liberty ship|cargo ship|cargo vessel +libidinal|1 +(adj)|sexual desire|concupiscence|physical attraction +libidinal energy|1 +(noun)|psychic energy|mental energy +libidinous|1 +(adj)|lascivious|lewd|lustful|sexy +libido|1 +(noun)|sexual desire|concupiscence|physical attraction +libocedrus|1 +(noun)|Libocedrus|genus Libocedrus|gymnosperm genus +libocedrus bidwillii|1 +(noun)|pahautea|Libocedrus bidwillii|mountain pine|cedar|cedar tree +libocedrus decurrens|1 +(noun)|incense cedar|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar|cedar tree +libocedrus plumosa|1 +(noun)|kawaka|Libocedrus plumosa|cedar|cedar tree +libra|3 +(noun)|Libra|Balance|person|individual|someone|somebody|mortal|human|soul +(noun)|Libra|constellation +(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac|star sign|sign|mansion|house|planetary house +libra the balance|1 +(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac|star sign|sign|mansion|house|planetary house +libra the scales|1 +(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac|star sign|sign|mansion|house|planetary house +librarian|1 +(noun)|bibliothec|professional|professional person +librarianship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +library|5 +(noun)|room +(noun)|collection|aggregation|accumulation|assemblage +(noun)|depository library|depository|deposit|repository +(noun)|program library|subroutine library|collection|aggregation|accumulation|assemblage +(noun)|building|edifice +library card|1 +(noun)|borrower's card|card|identity card +library catalog|1 +(noun)|library catalogue|catalog|catalogue +library catalogue|1 +(noun)|library catalog|catalog|catalogue +library fine|1 +(noun)|fine|mulct|amercement +library paste|1 +(noun)|paste|adhesive material|adhesive +library program|1 +(noun)|program|programme|computer program|computer programme +library routine|1 +(noun)|routine|subroutine|subprogram|procedure|function +library science|1 +(noun)|humanistic discipline|humanities|liberal arts|arts +librate|2 +(verb)|weigh|quantify|measure +(verb)|oscillate|vibrate +libration|1 +(noun)|oscillation|variation +librettist|1 +(noun)|writer|author +libretto|1 +(noun)|script|book|playscript +libreville|1 +(noun)|Libreville|capital of Gabon|national capital +libritabs|1 +(noun)|chlordiazepoxide|Librium|Libritabs|benzodiazepine +librium|1 +(noun)|chlordiazepoxide|Librium|Libritabs|benzodiazepine +libya|1 +(noun)|Libya|Socialist People's Libyan Arab Jamahiriya|African country|African nation +libyan|2 +(adj)|Libyan|African country|African nation +(noun)|Libyan|African +libyan desert|1 +(noun)|Libyan Desert|desert +libyan dinar|1 +(noun)|Libyan dinar|dinar|Libyan monetary unit +libyan dirham|1 +(noun)|Libyan dirham|dirham|Libyan monetary unit +libyan fighting group|1 +(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +libyan islamic fighting group|1 +(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +libyan islamic group|1 +(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +libyan monetary unit|1 +(noun)|Libyan monetary unit|monetary unit +licence|4 +(noun)|license|liberty +(noun)|license|liberty +(noun)|license|permit|legal document|legal instrument|official document|instrument +(verb)|license|certify|authorize|authorise|pass|clear +licenced|1 +(adj)|accredited|commissioned|licensed|authorized |authorised +licencee|1 +(noun)|licensee|retailer|retail merchant +license|5 +(noun)|licence|permit|legal document|legal instrument|official document|instrument +(noun)|licence|liberty +(noun)|licence|liberty +(noun)|permission|permit|authorization|authorisation|empowerment +(verb)|licence|certify|authorize|authorise|pass|clear +license fee|1 +(noun)|licensing fee|license tax|fee +license number|1 +(noun)|registration number|number|identification number +license plate|1 +(noun)|numberplate|plate +license tax|1 +(noun)|licensing fee|license fee|fee +licensed|1 +(adj)|accredited|commissioned|licenced|authorized |authorised +licensed practical nurse|1 +(noun)|LPN|practical nurse|nurse +licensee|1 +(noun)|licencee|retailer|retail merchant +licenser|1 +(noun)|official|functionary +licensing agreement|1 +(noun)|contract +licensing fee|1 +(noun)|license fee|license tax|fee +licentiate|1 +(noun)|scholar|scholarly person|student +licentious|1 +(adj)|unchaste +licentiously|1 +(adv)|wantonly|promiscuously +licentiousness|2 +(noun)|wantonness|immorality +(noun)|profligacy|dissipation|dissolution|intemperance|intemperateness|self-indulgence +lichanura|1 +(noun)|Lichanura|genus Lichanura|reptile genus +lichanura trivirgata|1 +(noun)|rosy boa|Lichanura trivirgata|boa +lichee|2 +(noun)|litchi|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree +(noun)|litchi|litchi nut|litchee|lichi|leechee|lychee|edible fruit +lichen|2 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +(noun)|fungus +lichen planus|1 +(noun)|lichen ruber planus|lichen +lichen ruber planus|1 +(noun)|lichen planus|lichen +lichenales|1 +(noun)|Lichenales|order Lichenales|fungus order +lichenes|1 +(noun)|Lichenes|division Lichenes|division +lichgate|1 +(noun)|lychgate|gate +lichi|1 +(noun)|litchi|litchi nut|litchee|leechee|lichee|lychee|edible fruit +lichtenoid eczema|1 +(noun)|chronic eczema|eczema hypertrophicum|eczema +lichtenstein|1 +(noun)|Lichtenstein|Roy Lichtenstein|painter +licit|2 +(adj)|licit +(adj)|lawful|legitimate|legal +licitly|1 +(adv)|legitimately|lawfully +licitness|1 +(noun)|lawfulness +lick|7 +(noun)|salt lick|sediment|deposit +(noun)|lap|touch|touching +(noun)|punch|clout|poke|biff|blow +(verb)|bat|clobber|drub|thrash|beat|beat out|crush|shell|trounce|vanquish +(verb)|lap|stroke|fondle +(verb)|solve|work out|figure out|puzzle out|work|understand +(verb)|lap|lap up|drink|imbibe +licked|1 +(adj)|defeated +lickety cut|1 +(adv)|lickety split|at full speed|with a rush +lickety split|1 +(adv)|lickety cut|at full speed|with a rush +licking|2 +(noun)|defeat|ending|conclusion|finish|failure +(noun)|beating|thrashing|drubbing|lacing|trouncing|whacking|corporal punishment +licorice|2 +(noun)|liquorice|Glycyrrhiza glabra|herb|herbaceous plant +(noun)|liquorice|candy +licorice fern|1 +(noun)|Polypodium glycyrrhiza|polypody +licorice root|1 +(noun)|root +licorice stick|1 +(noun)|B-flat clarinet|clarinet +lid|3 +(noun)|eyelid|palpebra|protective fold +(noun)|top|cover +(noun)|hat|chapeau|headdress|headgear +lidar|1 +(noun)|measuring instrument|measuring system|measuring device +lidded|2 +(adj)|lidded +(adj)|topped +lidless|3 +(adj)|lidless +(adj)|topless +(adj)|sleepless|alert +lido|1 +(noun)|recreational facility|recreation facility +lido deck|1 +(noun)|deck +lidocaine|1 +(noun)|Xylocaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +lie|9 +(noun)|prevarication|falsehood|falsity|untruth|false statement +(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat|diplomatist +(noun)|position|place +(verb)|be +(verb)|dwell|consist|belong|lie in|exist|be +(verb)|be +(verb)|misinform|mislead +(verb)|rest|be +(verb)|lie down|change posture +lie-abed|1 +(noun)|slugabed|idler|loafer|do-nothing|layabout|bum +lie-in|1 +(noun)|rest|ease|repose|relaxation +lie about|1 +(verb)|lie around|idle|laze|slug|stagnate +lie around|1 +(verb)|lie about|idle|laze|slug|stagnate +lie awake|1 +(verb)|lie +lie detector|1 +(noun)|polygraph +lie down|1 +(verb)|lie|change posture +lie in|1 +(verb)|dwell|consist|lie|belong|exist|be +lie in wait|1 +(verb)|ambush|scupper|bushwhack|waylay|lurk|ambuscade|wait +lie low|2 +(verb)|hide|hide out +(verb)|hide|hide out +lie with|1 +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +liebfraumilch|1 +(noun)|Rhine wine|Rhenish|hock +liebig condenser|1 +(noun)|Liebig condenser|condenser +liechtenstein|1 +(noun)|Liechtenstein|Principality of Liechtenstein|European country|European nation +liechtensteiner|2 +(adj)|Liechtensteiner|European country|European nation +(noun)|Liechtensteiner|European +lied|1 +(noun)|song +lieder singer|1 +(noun)|singer|vocalist|vocalizer|vocaliser +liederkranz|1 +(noun)|Liederkranz|cheese +lief|2 +(adj)|glad|willing +(adv)|gladly|fain +liege|3 +(adj)|loyal +(noun)|vassal|liegeman|liege subject|feudatory|follower +(noun)|Liege|Luik|city|metropolis|urban center +liege subject|1 +(noun)|vassal|liege|liegeman|feudatory|follower +liegeman|1 +(noun)|vassal|liege|liege subject|feudatory|follower +lien|2 +(noun)|security interest +(noun)|spleen|lymphatic tissue|lymphoid tissue +lienal|1 +(adj)|splenic|splenetic|lymphatic tissue|lymphoid tissue +lienal artery|1 +(noun)|splenic artery|arteria lienalis|artery|arteria|arterial blood vessel +liepaja|1 +(noun)|Liepaja|city|metropolis|urban center +lietuva|1 +(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State|Baltic Republic +lieu|1 +(noun)|stead|position|place|function|office|part|role +lieutenancy|1 +(noun)|position|post|berth|office|spot|billet|place|situation +lieutenant|4 +(noun)|commissioned military officer +(noun)|police lieutenant|lawman|law officer|peace officer +(noun)|deputy|assistant|helper|help|supporter +(noun)|commissioned naval officer +lieutenant colonel|1 +(noun)|light colonel|colonel +lieutenant commander|1 +(noun)|commissioned naval officer +lieutenant general|1 +(noun)|general officer +lieutenant governor|1 +(noun)|elected official +lieutenant jg|1 +(noun)|lieutenant junior grade|lieutenant JG|commissioned naval officer +lieutenant junior grade|1 +(noun)|lieutenant JG|commissioned naval officer +life|14 +(noun)|being|beingness|existence +(noun)|being|beingness|existence +(noun)|living|experience +(noun)|animation|living|aliveness|being|beingness|existence +(noun)|lifetime|lifespan|time period|period of time|period +(noun)|time period|period of time|period +(noun)|liveliness|spirit|sprightliness|animation|spiritedness|invigoration|brio|vivification +(noun)|biography|life story|life history|history|account|chronicle|story +(noun)|time period|period of time|period +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|living thing|animate thing +(noun)|motivation|motive|need +(noun)|organic phenomenon +(noun)|life sentence|prison term|sentence|time +life-and-death|1 +(adj)|life-or-death|crucial |important +life-giving|1 +(adj)|vitalizing|invigorating +life-of-man|1 +(noun)|American spikenard|petty morel|Aralia racemosa|subshrub|suffrutex +life-or-death|1 +(adj)|life-and-death|crucial |important +life-size|2 +(adj)|lifesize|life-sized|full-size|large +(adj)| +life-sized|1 +(adj)|life-size|lifesize|full-size|large +life-style|3 +(noun)|life style|lifestyle|modus vivendi|manner|mode|style|way|fashion +(noun)| +(noun)| +life-support|1 +(adj)|equipment|equipment +life-support system|2 +(noun)|life support|equipment +(noun)|life support|equipment +life-sustaining|1 +(adj)|vital|essential +life-threatening|1 +(adj)|dangerous|grave|grievous|serious|severe|critical +life assurance|1 +(noun)|life insurance|insurance +life belt|2 +(noun)|safety belt|safety harness|belt|restraint|constraint +(noun)|life buoy|lifesaver|life ring|life preserver|preserver|flotation device +life buoy|1 +(noun)|lifesaver|life belt|life ring|life preserver|preserver|flotation device +life class|1 +(noun)|art class +life cycle|2 +(noun)|organic phenomenon +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +life estate|1 +(noun)|estate for life|estate +life eternal|1 +(noun)|eternal life|animation|life|living|aliveness +life expectancy|1 +(noun)|anticipation|expectancy|life|lifetime|lifespan +life force|1 +(noun)|vital force|vitality|elan vital|force +life form|1 +(noun)|body|organic structure|physical structure +life history|2 +(noun)|biography|life|life story|history|account|chronicle|story +(noun)|career|progress|progression|procession|advance|advancement|forward motion|onward motion +life imprisonment|1 +(noun)|captivity|imprisonment|incarceration|immurement +life insurance|1 +(noun)|life assurance|insurance +life jacket|1 +(noun)|life vest|cork jacket|life preserver|preserver|flotation device +life line|4 +(noun)|line of life|lifeline|wrinkle|furrow|crease|crinkle|seam|line +(noun)|lifeline|support|connection|link|connectedness +(noun)|lifeline|line +(noun)|lifeline|line +life mask|1 +(noun)|cast|casting +life office|1 +(noun)|office|business office +life peer|1 +(noun)|peer +life preserver|1 +(noun)|preserver|flotation device|float|rescue equipment +life principle|1 +(noun)|vital principle|causal agent|cause|causal agency +life raft|1 +(noun)|Carling float|raft +life ring|1 +(noun)|life buoy|lifesaver|life belt|life preserver|preserver|flotation device +life saver|3 +(noun)|Life Saver|candy +(noun)|lifeguard|lifesaver|attendant|attender|tender +(noun)|life buoy|lifesaver|life belt|life ring|life preserver|preserver|flotation device +life science|1 +(noun)|bioscience|natural science +life scientist|1 +(noun)|biologist|scientist|man of science +life sentence|1 +(noun)|life|prison term|sentence|time +life story|1 +(noun)|biography|life|life history|history|account|chronicle|story +life style|3 +(noun)|life-style|lifestyle|modus vivendi|manner|mode|style|way|fashion +(noun)| +(noun)| +life support|2 +(noun)|life-support system|equipment +(noun)|life-support system|equipment +life tenant|1 +(noun)|tenant +life vest|1 +(noun)|life jacket|cork jacket|life preserver|preserver|flotation device +lifeblood|2 +(noun)|blood +(noun)|force +lifeboat|1 +(noun)|sea boat +lifeguard|1 +(noun)|lifesaver|attendant|attender|tender +lifeless|4 +(adj)|exanimate|dead +(adj)|empty +(adj)|dead|unanimated +(adj)|dead +lifelessly|1 +(adv)|deadly +lifelessness|1 +(noun)|inanimateness|physiological property +lifelike|2 +(adj)|graphic|pictorial|vivid|realistic +(adj)|natural|unaffected +lifeline|4 +(noun)|line of life|life line|wrinkle|furrow|crease|crinkle|seam|line +(noun)|support|connection|link|connectedness +(noun)|line +(noun)|line +lifelong|1 +(adj)|womb-to-tomb|long +lifer|1 +(noun)|convict|con|inmate|jailbird|gaolbird +lifesaver|2 +(noun)|lifeguard|attendant|attender|tender +(noun)|life buoy|life belt|life ring|life preserver|preserver|flotation device +lifesaving|1 +(noun)|rescue|deliverance|delivery|saving +lifesize|1 +(adj)|life-size|life-sized|full-size|large +lifespan|1 +(noun)|life|lifetime|time period|period of time|period +lifestyle|1 +(noun)|life style|life-style|modus vivendi|manner|mode|style|way|fashion +lifetime|1 +(noun)|life|lifespan|time period|period of time|period +lifework|1 +(noun)|career|calling|vocation +lifo|1 +(noun)|last in first out|LIFO|inventory accounting +lift|36 +(noun)|aid|assist|assistance|help +(noun)|aerodynamic lift|aerodynamic force +(noun)|elevation|raising|rise|rising|ascent|ascension +(noun)|rise|wave|moving ridge +(noun)|ski tow|ski lift|conveyance|transport +(noun)|device +(noun)|layer|bed +(noun)|elevator|lifting device +(noun)|face lift|facelift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +(noun)|airlift|transportation|transfer|transferral|conveyance +(noun)|drive|ride +(noun)|raise|heave|propulsion|actuation +(verb)|raise|elevate|get up|bring up|move|displace|lift up +(verb)|move|displace +(verb)|raise|move|displace +(verb)|rise|arise|move up|go up|come up|uprise|travel|go|move|locomote +(verb)|utter|emit|let out|let loose +(verb)|revoke|annul|countermand|reverse|repeal|overturn|rescind|vacate|cancel|strike down +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|steal +(verb)|hoist|wind|raise|elevate|get up|bring up +(verb)|raise|better|improve|amend|ameliorate|meliorate +(verb)|raise|elevate|change|alter|modify +(verb)|remove|take|take away|withdraw +(verb)|rise|rear|look|appear|seem +(verb)|liquidate|pay off +(verb)|plagiarize|plagiarise|steal +(verb)|rustle|steal +(verb)|airlift|fly +(verb)|dig|dig out +(verb)|call|send for +(verb)|heave|buckle|warp +(verb)|raise|end|terminate +(verb)|scalp +(verb)|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +(verb)|face-lift|operate on|operate +lift bridge|1 +(noun)|drawbridge|bridge|span +lift off|1 +(verb)|take off|depart|part|start|start out|set forth|set off|set out|take off +lift out|1 +(verb)|scoop|scoop out|scoop up|take up|remove|take|take away|withdraw +lift pump|1 +(noun)|pump +lift up|2 +(verb)|pick up|gather up|raise|lift|elevate|get up|bring up +(verb)|elate|uplift|pick up|intoxicate|stimulate|shake|shake up|excite|stir +lifted|1 +(adj)|upraised|raised +lifter|2 +(noun)|weightlifter|athlete|jock +(noun)|booster|shoplifter|thief|stealer +lifting device|1 +(noun)|device +liftman|1 +(noun)|elevator man|elevator boy|elevator operator +liftoff|1 +(noun)|rise|rising|ascent|ascension +ligament|2 +(noun)|connective tissue +(noun)|attachment|bond +ligamentum teres uteri|1 +(noun)|round ligament of the uterus|ligament +ligan|1 +(noun)|lagan|lagend|wreckage +ligand|1 +(noun)|substance|matter +ligate|3 +(verb)|join|bring together +(verb)|bind +(verb)|bandage +ligation|1 +(noun)|tying|ligature +ligature|6 +(noun)|phrase|musical phrase +(noun)|character|grapheme|graphic symbol +(noun)|band +(noun)|thread|yarn +(noun)|binder|ligament +(noun)|tying|fastening|attachment +liger|1 +(noun)|big cat|cat +light|48 +(adj)|light |airy|buoyant|floaty|feathery|featherlike|lightweight|low-density|featherweight|lighter-than-air +(adj)|light |light-colored|pale|pastel|powdery|palish|white|achromatic +(adj)|light |light-armed|lightly-armed +(adj)|light |easy +(adj)|light |fooling|casual +(adj)|light |ablaze|inflamed|reddened|bioluminescent|bright|candescent|floodlit|floodlighted|fluorescent|illuminated|lighted|lit|well-lighted|illuminating|incandescent|candent|lamplit|lighting-up|livid|phosphorescent|sunlit|sunstruck|white|luminescent +(adj)|unaccented|weak|unstressed |unaccented +(adj)|digestible +(adj)|friable|sandy|loose +(adj)|clean|clear|unclouded|pure +(adj)|lightsome|tripping|light-footed +(adj)|undemanding +(adj)|light |easy|gentle|soft +(adj)|light +(adj)|faint|swooning|light-headed|lightheaded|ill |sick +(adj)|flimsy|thin +(adj)|abstemious|temperate +(adj)|scant|short|insufficient |deficient +(adj)|insignificant |unimportant +(adj)|frivolous +(adj)|idle|frivolous +(adj)|leavened +(adj)|light-duty +(adj)|lite|low-cal|nonfat |fat-free|fatless +(adj)|wakeful|shallow +(adj)|easy|loose|promiscuous|sluttish|wanton|unchaste +(noun)|visible light|visible radiation|actinic radiation|actinic ray +(noun)|light source|source of illumination +(noun)|position|view|perspective +(noun)|luminosity|brightness|brightness level|luminance|luminousness|physical property +(noun)|scene +(noun)|illumination|condition|status +(noun)|lightness|visual property +(noun)|friend +(noun)|insight|brainstorm|brainwave +(noun)|lighting|illumination +(noun)|public knowledge|general knowledge +(noun)|sparkle|spark|vitality|verve|expression|look|aspect|facial expression|face +(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive|ethics|morals|morality +(noun)|visual signal +(noun)|lighter|igniter|ignitor|device +(verb)|illume|illumine|light up|illuminate|lighten|lighten up +(verb)|light up|fire up|ignite +(verb)|alight|perch|land|set down +(verb)|ignite|burn|combust +(verb)|fall|fall|return|pass|devolve +(verb)|unhorse|dismount|get off|get down|descend|fall|go down|come down +(adv)|lightly +light-armed|2 +(adj)|lightly-armed|light +(adj)|armed +light-blue|1 +(adj)|blue|bluish|blueish|dark-blue|blue-black|chromatic +light-colored|1 +(adj)|light |pale|pastel|powdery|palish|white|achromatic +light-duty|1 +(adj)|light-duty |light +light-emitting diode|1 +(noun)|LED|diode|semiconductor diode|junction rectifier|crystal rectifier +light-fingered|1 +(adj)|nimble-fingered|adroit +light-footed|1 +(adj)|light-footed |light|lightsome|tripping +light-green|1 +(adj)|green|greenish|dark-green|chromatic +light-haired|1 +(adj)|blond |blonde|ash-blonde|platinum-blonde|towheaded|fair|fairish|flaxen|sandy|nordic|redheaded +light-handed|1 +(adj)|delicate +light-headed|3 +(adj)|faint|light|swooning|lightheaded|ill |sick +(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|lightheaded|silly|frivolous +(adj)| +light-headedly|1 +(adv)|dizzily|giddily +light-heartedly|1 +(adv)|lightsomely +light-minded|1 +(adj)|flippant|frivolous +light-mindedness|1 +(noun)|flippancy|levity +light-o'-love|1 +(noun)|light-of-love|wanton +light-of-love|1 +(noun)|light-o'-love|wanton +light-sensitive|1 +(adj)|photosensitive|sensitive +light-skinned|1 +(adj)|white |caucasian +light-tight|1 +(adj)|lightproof|dark +light adaptation|1 +(noun)|adaptation +light air|1 +(noun)|breeze|zephyr|gentle wind|air +light ballast|1 +(noun)|ballast|electrical device +light beam|1 +(noun)|beam|beam of light|ray|ray of light|shaft|shaft of light|irradiation|light|visible light|visible radiation +light beer|1 +(noun)|lager|lager beer +light bread|1 +(noun)|white bread|bread|breadstuff|staff of life +light breeze|1 +(noun)|breeze|zephyr|gentle wind|air +light brown|1 +(noun)|brown|brownness +light bulb|2 +(noun)|lightbulb|bulb|incandescent lamp|electric light|electric-light bulb|electric lamp +(noun)| +light circuit|1 +(noun)|lighting circuit|wiring +light colonel|1 +(noun)|lieutenant colonel|colonel +light company|1 +(noun)|power company|power service|electric company|utility|public utility|public-service corporation +light cream|1 +(noun)|coffee cream|single cream|cream +light diet|1 +(noun)|diet +light filter|1 +(noun)|diffusing screen|filter +light flyweight|1 +(noun)|boxer|pugilist +light heavyweight|3 +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +(noun)|cruiserweight|prizefighter|gladiator +light hour|1 +(noun)|astronomy unit +light intensity|1 +(noun)|candlepower|intensity|strength|intensity level +light machine gun|1 +(noun)|submachine gun +light meter|1 +(noun)|exposure meter|photometer|photographic equipment +light microscope|1 +(noun)|microscope +light middleweight|1 +(noun)|boxer|pugilist +light minute|1 +(noun)|astronomy unit +light opera|1 +(noun)|operetta|comic opera|opera bouffe|bouffe|opera comique +light pen|1 +(noun)|electronic stylus|pointer +light reaction|1 +(noun)|photochemical reaction +light reflex|1 +(noun)|pupillary reflex|miosis|myosis|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +light second|1 +(noun)|astronomy unit +light show|1 +(noun)|display|exhibit|showing +light source|1 +(noun)|light|source of illumination +light speed|1 +(noun)|speed of light|c|speed|velocity|constant +light time|1 +(noun)|distance|length +light touch|1 +(noun)|brush|touch|touching +light unit|1 +(noun)|electromagnetic unit|emu +light up|5 +(verb)|erupt|ignite|catch fire|take fire|combust|conflagrate +(verb)|light|illume|illumine|illuminate|lighten|lighten up +(verb)|clear up|clear|brighten +(verb)|ignite|light +(verb)|fire up|light|ignite|light +light upon|1 +(verb)|fall upon|strike|come upon|chance upon|come across|chance on|happen upon|attain|discover|find|regain +light welterweight|1 +(noun)|boxer|pugilist +light whipping cream|1 +(noun)|whipping cream|cream +light within|1 +(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive|ethics|morals|morality +light year|1 +(noun)|astronomy unit +lightbulb|1 +(noun)|light bulb|bulb|incandescent lamp|electric light|electric-light bulb|electric lamp +lighted|2 +(adj)|lighted |lit|ablaze|afire|aflame|aflare|alight|blazing|burning|flaming|on fire|ignited|enkindled|kindled +(adj)|illuminated|lit|well-lighted|light +lighten|5 +(verb)|buoy up|cheer +(verb)|buoy up|cheer|cheer up|chirk up +(verb)|brighten|lighten up|change|alter|modify +(verb)|brighten|change +(verb)|lighten up|change +lighten up|2 +(verb)|brighten|lighten|change|alter|modify +(verb)|lighten|change +lightening|2 +(noun)|descent +(noun)|whitening|change of color +lighter|4 +(noun)|igniter|ignitor|fuel +(noun)|light|igniter|ignitor|device +(noun)|barge|flatboat|hoy|boat +(verb)|transport +lighter-than-air|1 +(adj)|light +lighter-than-air craft|1 +(noun)|aircraft +lighterage|2 +(noun)|fee +(noun)|transportation|transfer|transferral|conveyance +lighterman|1 +(noun)|bargeman|bargee|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +lightheaded|2 +(adj)|faint|light|swooning|light-headed|ill |sick +(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|light-headed|silly|frivolous +lightheadedness|2 +(noun)|dizziness|giddiness|vertigo|symptom +(noun)|heedlessness|mindlessness|rashness +lighthearted|1 +(adj)|blithe|blithesome|lightsome|cheerful +lightheartedness|1 +(noun)|carefreeness|insouciance|lightsomeness|cheerfulness|blitheness +lighthorse harry lee|1 +(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier +lighthouse|1 +(noun)|beacon|beacon light|pharos|tower +lighthouse keeper|1 +(noun)|custodian|keeper|steward +lighting|4 +(noun)|light|illumination +(noun)|apparatus|setup +(noun)|interior decoration|interior design +(noun)|ignition|firing|kindling|inflammation|burning|combustion +lighting-up|1 +(adj)|light +lighting circuit|1 +(noun)|light circuit|wiring +lighting fixture|1 +(noun)|fixture +lighting industry|1 +(noun)|industry +lightless|2 +(adj)|invisible |unseeable +(adj)|unilluminated|unlighted|unlit|dark +lightlessness|1 +(noun)|total darkness|blackness|pitch blackness|black|dark|darkness +lightly|3 +(adv)|light +(adv)|softly|gently +(adv)|thinly +lightly-armed|1 +(adj)|light-armed|light +lightly armored|1 +(adj)|lightly armoured|armored |armoured +lightly armoured|1 +(adj)|lightly armored|armored |armoured +lightness|4 +(noun)|weightlessness|weight +(noun)|agility|legerity|lightsomeness|nimbleness|gracefulness +(noun)|value +(noun)|light|visual property +lightning|2 +(noun)|atmospheric electricity +(noun)|flash +lightning arrester|1 +(noun)|surge suppressor|surge protector|spike suppressor|spike arrester|suppressor|suppresser +lightning bug|1 +(noun)|firefly|beetle +lightning conductor|1 +(noun)|lightning rod|conductor +lightning hurler|1 +(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter|Jove +lightning rod|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|lightning conductor|conductor +lightproof|1 +(adj)|light-tight|dark +lights-out|2 +(noun)|bedtime +(noun)|taps|bugle call +lightship|1 +(noun)|ship +lightsome|2 +(adj)|light|tripping|light-footed +(adj)|blithe|blithesome|lighthearted|cheerful +lightsomely|2 +(adv)|trippingly +(adv)|light-heartedly +lightsomeness|3 +(noun)|carefreeness|insouciance|lightheartedness|cheerfulness|blitheness +(noun)|agility|legerity|lightness|nimbleness|gracefulness +(noun)|giddiness|silliness +lightweight|6 +(adj)|light +(adj)|unimportant +(noun)|prizefighter|gladiator +(noun)|whippersnapper|jackanapes|cipher|cypher|nobody|nonentity +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +lightwood|1 +(noun)|Acacia melanoxylon|blackwood|blackwood tree +ligne|1 +(noun)|linear unit +ligneous|1 +(adj)|woody +ligneous plant|1 +(noun)|woody plant|vascular plant|tracheophyte +lignified|1 +(adj)|woody|hard +lignin|1 +(noun)|polymer +lignite|1 +(noun)|brown coal|wood coal|coal|humate +lignosae|1 +(noun)|woody plant|ligneous plant +lignum|1 +(noun)|plant tissue +lignum vitae|2 +(noun)|guaiac|guaiacum|wood +(noun)|Guaiacum officinale|angiospermous tree|flowering tree +ligularia|1 +(noun)|Ligularia|genus Ligularia|asterid dicot genus +ligule|1 +(noun)|plant part|plant structure +liguria|1 +(noun)|Liguria|Italian region +ligurian sea|1 +(noun)|Ligurian Sea|sea +ligustrum|1 +(noun)|Ligustrum|genus Ligustrum|dicot genus|magnoliopsid genus +ligustrum amurense|1 +(noun)|Amur privet|Ligustrum amurense|privet +ligustrum ibolium|1 +(noun)|ibolium privet|ibota privet|Ligustrum ibolium|privet +ligustrum japonicum|1 +(noun)|Japanese privet|Ligustrum japonicum|privet +ligustrum lucidum|1 +(noun)|Chinese privet|white wax tree|Ligustrum lucidum|privet +ligustrum obtusifolium|1 +(noun)|Ligustrum obtusifolium|privet +ligustrum ovalifolium|1 +(noun)|California privet|Ligustrum ovalifolium|privet +ligustrum vulgare|1 +(noun)|common privet|Ligustrum vulgare|privet +lii|1 +(adj)|fifty-two|52|cardinal +liii|1 +(adj)|fifty-three|53|cardinal +likable|2 +(adj)|sympathetic |appealing|likeable +(adj)|likeable|liked +like|7 +(adj)|like |similar|like-minded|look-alike|suchlike|same +(adj)|like |equal|equivalent|same +(adj)|alike |similar +(adj)|comparable|corresponding|same +(verb)|wish|care|desire|want +(verb)|see|consider|reckon|view|regard +(verb)|desire|want +like-minded|1 +(adj)|like |similar +like a shot|1 +(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|at once|forthwith|in real time +like an amateur|1 +(adv)|amateurishly +like an expert|1 +(adv)|expertly|with expertise +like blue murder|1 +(adv)|flat out +like crazy|1 +(adv)|like hell|like mad|like sin|like thunder|like the devil +like hell|1 +(adv)|like mad|like crazy|like sin|like thunder|like the devil +like kings|1 +(adv)|royally|like royalty +like mad|1 +(adv)|like hell|like crazy|like sin|like thunder|like the devil +like royalty|1 +(adv)|royally|like kings +like sin|1 +(adv)|like hell|like mad|like crazy|like thunder|like the devil +like the devil|1 +(adv)|like hell|like mad|like crazy|like sin|like thunder +like thunder|1 +(adv)|like hell|like mad|like crazy|like sin|like the devil +likeable|2 +(adj)|sympathetic |appealing|likable +(adj)|likable|liked +liked|1 +(adj)|liked |likable|likeable +likelihood|1 +(noun)|likeliness|odds|probability +likeliness|1 +(noun)|likelihood|odds|probability +likely|5 +(adj)|likely |apt|liable|probable|promising|possible +(adj)|probable |plausible|presumed|presumptive|verisimilar|equiprobable +(adj)|expected|potential|prospective +(adj)|plausible|credible |believable +(adv)|probably|in all likelihood|in all probability|belike +liken|1 +(verb)|compare|equate|study|consider +likeness|2 +(noun)|alikeness|similitude|similarity +(noun)|semblance|picture|image|icon|ikon +likening|1 +(noun)|comparison|comparing +likewise|3 +(adv)|similarly +(adv)|besides|too|also|as well +(adv)|alike +liking|1 +(noun)|feeling +likuta|1 +(noun)|Zairese monetary unit +lilac|2 +(adj)|lavender|chromatic +(noun)|shrub|bush +lilangeni|1 +(noun)|Swaziland monetary unit +liliaceae|1 +(noun)|Liliaceae|family Liliaceae|lily family|liliid monocot family +liliaceous|1 +(adj)|liliid monocot family +liliaceous plant|1 +(noun)|bulbous plant +liliales|1 +(noun)|Liliales|order Liliales|plant order +lilian alicia marks|1 +(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer|professional dancer +lilies of the valley|2 +(noun)|lily of the valley|May lily|Convallaria majalis|liliaceous plant +(noun)|lily of the valley|May lily|Convallaria majalis|liliaceous plant +liliid monocot family|1 +(noun)|monocot family|liliopsid family +liliid monocot genus|1 +(noun)|monocot genus|liliopsid genus +liliidae|1 +(noun)|Liliidae|subclass Liliidae|class +liliopsid|1 +(noun)|monocot|monocotyledon|endogen|angiosperm|flowering plant +liliopsid family|1 +(noun)|monocot family|family +liliopsid genus|1 +(noun)|monocot genus|genus +liliopsida|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +lilith|1 +(noun)|Lilith|Semitic deity +lilium|1 +(noun)|Lilium|genus Lilium|liliid monocot genus +lilium auratum|1 +(noun)|mountain lily|Lilium auratum|lily +lilium canadense|1 +(noun)|Canada lily|wild yellow lily|meadow lily|wild meadow lily|Lilium canadense|lily +lilium candidum|1 +(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily +lilium catesbaei|1 +(noun)|tiger lily|leopard lily|pine lily|Lilium catesbaei|lily +lilium columbianum|1 +(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily +lilium lancifolium|1 +(noun)|tiger lily|devil lily|kentan|Lilium lancifolium|lily +lilium longiflorum|1 +(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily +lilium maritinum|1 +(noun)|coast lily|Lilium maritinum|lily +lilium martagon|1 +(noun)|Turk's-cap|martagon|Lilium martagon|lily +lilium michiganense|1 +(noun)|Michigan lily|Lilium michiganense|lily +lilium pardalinum|1 +(noun)|leopard lily|panther lily|Lilium pardalinum|lily +lilium philadelphicum|1 +(noun)|wood lily|Lilium philadelphicum|lily +lilium superbum|1 +(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily +liliuokalani|1 +(noun)|Liliuokalani|Lydia Kamekeha Paki Liliuokalani|queen|queen regnant|female monarch +lille|1 +(noun)|Lille|city|metropolis|urban center +lillian gish|1 +(noun)|Gish|Lillian Gish|actress +lillian hellman|1 +(noun)|Hellman|Lillian Hellman|dramatist|playwright +lillian russell|1 +(noun)|Russell|Lillian Russell|singer|vocalist|vocalizer|vocaliser +lillie|1 +(noun)|Lillie|Beatrice Lillie|Lady Peel|actress +lillie langtry|1 +(noun)|Langtry|Lillie Langtry|the Jersey Lillie|Emilie Charlotte le Breton|actress +lilliput|1 +(noun)|Lilliput|imaginary place|mythical place +lilliputian|5 +(adj)|Lilliputian|imaginary place|mythical place +(adj)|bantam|diminutive|midget|petite|tiny|flyspeck|small +(adj)|fiddling|footling|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +(noun)|small person +(noun)|Lilliputian|fictional character|fictitious character|character +lilo|1 +(noun)|Lilo|air mattress +lilongwe|1 +(noun)|Lilongwe|capital of Malawi|national capital +lilt|2 +(noun)|swing|rhythmicity +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +lilting|1 +(adj)|swinging|swingy|tripping|rhythmical |rhythmic +lily|1 +(noun)|liliaceous plant +lily-livered|1 +(adj)|chicken|chickenhearted|white-livered|yellow|yellow-bellied|cowardly |fearful +lily-of-the-valley tree|1 +(noun)|andromeda|Japanese andromeda|Pieris japonica|shrub|bush +lily-white|2 +(adj)|white|segregated |unintegrated +(adj)|achromatic +lily family|1 +(noun)|Liliaceae|family Liliaceae|liliid monocot family +lily of the incas|1 +(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria +lily of the nile|1 +(noun)|agapanthus|lily of the Nile|liliaceous plant +lily of the valley|1 +(noun)|lilies of the valley|May lily|Convallaria majalis|liliaceous plant +lily pad|1 +(noun)|pad +lily turf|2 +(noun)|lilyturf|Liriope muscari|liliaceous plant +(noun)| +lilyturf|1 +(noun)|lily turf|Liriope muscari|liliaceous plant +lima|1 +(noun)|Lima|capital of Peru|national capital +lima bean|3 +(noun)|sieva bean|butter bean|butter-bean plant|Phaseolus lunatus|shell bean|shell bean plant +(noun)|lima bean plant|Phaseolus limensis|shell bean|shell bean plant +(noun)|shell bean +lima bean plant|1 +(noun)|lima bean|Phaseolus limensis|shell bean|shell bean plant +limacidae|1 +(noun)|Limacidae|family Limacidae|mollusk family +limacine|1 +(adj)|limacoid|gastropod|univalve +limacoid|1 +(adj)|limacine|gastropod|univalve +liman|1 +(noun)|lagoon|laguna|lagune +limanda|1 +(noun)|Limanda|genus Limanda|fish genus +limanda ferruginea|1 +(noun)|yellowtail flounder|Limanda ferruginea|righteye flounder|righteyed flounder +limax|1 +(noun)|Limax|genus Limax|mollusk genus +limb|6 +(noun)|extremity|appendage|member +(noun)|tree branch|branch +(noun)|edge|border +(noun)|part|portion +(noun)|arc +(noun)|arm|branch|projection +limb-girdle muscular dystrophy|1 +(noun)|muscular dystrophy|dystrophy|autosomal recessive disease|autosomal recessive defect +limbed|1 +(adj)|limbed |boughed|sharp-limbed +limber|5 +(adj)|supple|flexible +(adj)|supple|flexible |flexile +(noun)|horse-drawn vehicle +(verb)|limber up|attach +(verb)|warm up +limber pine|1 +(noun)|Pinus flexilis|white pine +limber up|2 +(verb)|limber|attach +(verb)|warm up|loosen up|exercise|work out +limbers|2 +(noun)|channel +(noun)|limber|horse-drawn vehicle +limbic|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +limbic brain|1 +(noun)|limbic system|visceral brain|neural structure +limbic system|1 +(noun)|visceral brain|limbic brain|neural structure +limbless|1 +(adj)|limbless |boughless +limbo|3 +(noun)|oblivion|obscurity +(noun)|imaginary place|mythical place +(noun)|imaginary place|mythical place +limburger|1 +(noun)|Limburger|cheese +limbus|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +lime|8 +(noun)|calcium hydroxide|slaked lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide|hydrated oxide +(noun)|calcium oxide|quicklime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide +(noun)|birdlime|adhesive material|adhesive +(noun)|lime tree|Citrus aurantifolia|citrus|citrus tree +(noun)|linden|linden tree|basswood|lime tree|tree +(noun)|citrus|citrus fruit|citrous fruit +(verb)|birdlime|spread|scatter|spread out +(verb)|cover +lime disease spirochete|1 +(noun)|Borrelia burgdorferi|Lime disease spirochete|spirochete|spirochaete +lime hydrate|1 +(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|calcium hydrate|caustic lime|hydroxide|hydrated oxide +lime juice|1 +(noun)|juice +lime tree|2 +(noun)|lime|Citrus aurantifolia|citrus|citrus tree +(noun)|linden|linden tree|basswood|lime|tree +limeade|1 +(noun)|fruit drink|ade +limeira|1 +(noun)|Limeira|city|metropolis|urban center +limekiln|1 +(noun)|kiln +limelight|2 +(noun)|spotlight|glare|public eye|prominence +(noun)|calcium light|lamp +limen|2 +(noun)|threshold|sensation|sense experience|sense impression|sense datum +(noun)|liman|lagoon|laguna|lagune +limenitis|1 +(noun)|Limenitis|genus Limenitis|arthropod genus +limenitis archippus|1 +(noun)|viceroy|Limenitis archippus|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +limenitis arthemis|1 +(noun)|banded purple|white admiral|Limenitis arthemis|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +limenitis astyanax|1 +(noun)|red-spotted purple|Limenitis astyanax|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +limenitis camilla|1 +(noun)|white admiral|Limenitis camilla|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +limerick|2 +(noun)|Limerick|city|metropolis|urban center|port +(noun)|verse|rhyme +limestone|1 +(noun)|rock|stone|sedimentary rock +limestone fern|1 +(noun)|northern oak fern|Gymnocarpium robertianum|fern +limestone salamander|1 +(noun)|Hydromantes brunus|web-toed salamander +limewater|1 +(noun)|water|H2O +limey|1 +(noun)|John Bull|Englishman +limicolae|1 +(noun)|Limicolae|suborder Limicolae|animal order +limicoline bird|1 +(noun)|shorebird|shore bird|wading bird|wader +limit|9 +(noun)|bounds|boundary|extent +(noun)|terminus ad quem|terminal point|end|ending +(noun)|demarcation|demarcation line|boundary|bound|bounds +(noun)|extremity +(noun)|limit point|point of accumulation|indefinite quantity +(noun)|limitation|indefinite quantity +(verb)|restrict|restrain|trammel|bound|confine|throttle|control|hold in|hold|contain|check|curb|moderate +(verb)|circumscribe|confine|decrease|lessen|minify +(verb)|specify|set|determine|fix|choose|take|select|pick out +limit point|1 +(noun)|limit|point of accumulation|indefinite quantity +limitation|5 +(noun)|restriction|rule|regulation +(noun)|disadvantage +(noun)|limit|indefinite quantity +(noun)|time limit +(noun)|restriction|regulation|regulating +limited|7 +(adj)|limited |constricted|controlled|restricted|minor|modest|small|small-scale|pocket-size|pocket-sized|narrow|narrow +(adj)|circumscribed|restricted +(adj)|noncomprehensive |incomprehensive +(adj)|modified|qualified +(adj)|moderate +(adj)|special|specific +(adj)|finite +limited audit|1 +(noun)|audited account|audit +limited company|1 +(noun)|Ltd.|Ld.|company +limited edition|1 +(noun)|edition +limited liability|1 +(noun)|indebtedness|liability|financial obligation +limited review|1 +(noun)|review|accounting|accounting system|method of accounting +limited war|1 +(noun)|war|warfare +limiter|1 +(noun)|clipper|circuit|electrical circuit|electric circuit +limiting|3 +(adj)|confining|constraining|constrictive|restricting|restrictive +(adj)|restrictive +(noun)|modification|qualifying|grammatical relation +limitless|3 +(adj)|illimitable|measureless|unmeasured|immeasurable |unmeasurable|immensurable +(adj)|unlimited |bottomless|oceanic|untrammeled|untrammelled +(adj)|boundless|unbounded|infinite +limitlessness|1 +(noun)|infiniteness|infinitude|unboundedness|boundlessness|quality +limn|2 +(verb)|delineate|outline|draw +(verb)|portray|depict|represent|interpret +limner|1 +(noun)|portraitist|portrait painter|portrayer|painter +limning|1 +(noun)|delineation|depiction|line drawing|drawing +limnobium|1 +(noun)|Limnobium|genus Limnobium|monocot genus|liliopsid genus +limnocryptes|1 +(noun)|Limnocryptes|genus Limnocryptes|bird genus +limnocryptes minima|1 +(noun)|jacksnipe|half snipe|Limnocryptes minima|snipe +limnodium spongia|1 +(noun)|American frogbit|Limnodium spongia|aquatic plant|water plant|hydrophyte|hydrophytic plant +limnodromus|1 +(noun)|Limnodromus|genus Limnodromus|bird genus +limnodromus griseus|1 +(noun)|grayback|Limnodromus griseus|dowitcher +limnodromus scolopaceus|1 +(noun)|red-breasted snipe|Limnodromus scolopaceus|dowitcher +limnological|1 +(adj)|earth science +limnologist|1 +(noun)|specialist|specializer|specialiser +limnology|1 +(noun)|earth science +limnos|1 +(noun)|Lemnos|Limnos|island +limo|1 +(noun)|limousine|car|auto|automobile|machine|motorcar +limonene|1 +(noun)|terpene +limonite|1 +(noun)|iron ore +limonium|1 +(noun)|Limonium|genus Limonium|dicot genus|magnoliopsid genus +limosa|1 +(noun)|Limosa|genus Limosa|bird genus +limosa haemastica|1 +(noun)|Hudsonian godwit|Limosa haemastica|godwit +limousin|1 +(noun)|Limousin|French region +limousine|1 +(noun)|limo|car|auto|automobile|machine|motorcar +limp|5 +(adj)|flaccid|lax|slack|weak +(adj)|wilted|stale +(noun)|hitch|hobble|gait +(verb)|hobble|hitch|walk +(verb)|proceed|go forward|continue +limpa|1 +(noun)|rye bread +limper|1 +(noun)|hobbler|pedestrian|walker|footer +limpet|2 +(noun)|shellfish +(noun)|seasnail +limpid|3 +(adj)|liquid|clear +(adj)|crystalline|crystal clear|lucid|pellucid|transparent|clear +(adj)|lucid|luculent|pellucid|crystal clear|perspicuous|clear +limpidity|2 +(noun)|clarity|lucidity|pellucidity|clearness|comprehensibility|understandability +(noun)|pellucidness|pellucidity|transparency|transparence|transparentness +limpidly|1 +(adv)|lucidly|pellucidly|perspicuously +limping|1 +(noun)|lameness|gimp|gimpiness|gameness|claudication|disability of walking +limpkin|1 +(noun)|Aramus pictus|wading bird|wader +limpness|1 +(noun)|flabbiness|flaccidity|softness +limpopo|1 +(noun)|Limpopo|Crocodile River|river +limulidae|1 +(noun)|Limulidae|family Limulidae|arthropod family +limulus|1 +(noun)|Limulus|genus Limulus|arthropod genus +limulus polyphemus|1 +(noun)|horseshoe crab|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod +lin|1 +(noun)|Lin|Maya Lin|sculptor|sculpturer|carver|statue maker|architect|designer +linac|1 +(noun)|linear accelerator|accelerator|particle accelerator|atom smasher +linaceae|1 +(noun)|Linaceae|family Linaceae|flax family|dicot family|magnoliopsid family +linage|2 +(noun)|lineage|number +(noun)|lineage|rate|charge per unit +linalool|1 +(noun)|essential oil|volatile oil +linanthus|1 +(noun)|Linanthus|genus Linanthus|plant genus +linanthus dianthiflorus|1 +(noun)|ground pink|fringed pink|moss pink|Linanthus dianthiflorus|phlox +linanthus dichotomus|1 +(noun)|evening-snow|Linanthus dichotomus|phlox +linaria|1 +(noun)|Linaria|genus Linaria|asterid dicot genus +linaria canadensis|1 +(noun)|blue toadflax|old-field toadflax|Linaria canadensis|toadflax|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris +linaria vulgaris|1 +(noun)|toadflax|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris|flower +linchpin|2 +(noun)|anchor|mainstay|keystone|backbone|lynchpin|support +(noun)|lynchpin|pin +lincocin|1 +(noun)|lincomycin|Lincocin|antibiotic|antibiotic drug +lincoln|3 +(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer|attorney|President of the United States|United States President|President|Chief Executive +(noun)|Lincoln|capital of Nebraska|state capital +(noun)|Lincoln|domestic sheep|Ovis aries +lincoln's birthday|1 +(noun)|Lincoln's Birthday|February 12|day +lincoln memorial|1 +(noun)|Lincoln Memorial|memorial|monument +lincoln steffens|1 +(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist +lincolnesque|1 +(adj)|Lincolnesque|Lincolnian|lawyer|attorney|President of the United States|United States President|President|Chief Executive +lincolnian|1 +(adj)|Lincolnesque|Lincolnian|lawyer|attorney|President of the United States|United States President|President|Chief Executive +lincolnshire|1 +(noun)|Lincolnshire|county +lincomycin|1 +(noun)|Lincocin|antibiotic|antibiotic drug +lind|1 +(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano +lindane|1 +(noun)|insecticide|insect powder +lindbergh|1 +(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator|aeronaut|airman|flier|flyer +linden|2 +(noun)|basswood|wood +(noun)|linden tree|basswood|lime|lime tree|tree +linden family|1 +(noun)|Tiliaceae|family Tiliaceae|dilleniid dicot family +linden tree|1 +(noun)|linden|basswood|lime|lime tree|tree +lindera|1 +(noun)|Lindera|genus Lindera|magnoliid dicot genus +lindera benzoin|1 +(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +lindesnes|1 +(noun)|Lindesnes|Naze|cape|ness +lindheimera|1 +(noun)|Lindheimera|genus Lindheimera|asterid dicot genus +lindheimera texana|1 +(noun)|Texas star|Lindheimera texana|flower +lindsay|2 +(noun)|Lindsay|Howard Lindsay|dramatist|playwright +(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet +lindy|1 +(noun)|lindy hop|social dancing +lindy hop|1 +(noun)|lindy|social dancing +line|35 +(noun)|formation +(noun)|mark|print +(noun)|formation +(noun)|shape|form +(noun)|text|textual matter +(noun)|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +(noun)|military position|position +(noun)|argumentation|logical argument|line of reasoning|reasoning|logical thinking|abstract thought +(noun)|cable|transmission line|conductor +(noun)|course|series +(noun)|location +(noun)|wrinkle|furrow|crease|crinkle|seam|depression|impression|imprint +(noun)|pipeline|pipe|pipage|piping +(noun)|railway line|rail line|road|route +(noun)|telephone line|phone line|telephone circuit|subscriber line|connection|connexion|connector|connecter|connective +(noun)|conformity|conformation|compliance|abidance +(noun)|lineage|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|artifact|artefact +(noun)|occupation|business|job|line of work|activity +(noun)|mark|print +(noun)|channel|communication channel|communication|communicating +(noun)|product line|line of products|line of merchandise|business line|line of business|merchandise|wares|product +(noun)|carrier|common carrier +(noun)|agate line|area unit|square measure +(noun)|credit line|line of credit|bank line|personal credit line|personal line of credit|credit +(noun)|tune|melody|air|strain|melodic line|melodic phrase|music +(noun)|note|short letter|billet|personal letter +(noun)|dividing line|demarcation|contrast|differentiation|distinction +(noun)|production line|assembly line|mechanical system +(verb)|run along|lie +(verb)|cover +(verb)|trace|draw|describe|delineate|mark +(verb)|score|nock|mark +(verb)|fill|fill up|make full +(verb)|reinforce|reenforce +line-at-a-time printer|1 +(noun)|line printer|printer|printing machine +line-drive double|1 +(noun)|line double|double|two-base hit|two-bagger|two-baser +line-drive single|1 +(noun)|line single|single +line-drive triple|1 +(noun)|line triple|triple|three-base hit|three-bagger +line-shooter|1 +(noun)|bragger|braggart|boaster|blowhard|vaunter|egotist|egoist|swellhead +line-shooting|1 +(noun)|brag|bragging|crow|crowing|vaporing|gasconade|boast|boasting|self-praise|jactitation +line backer|3 +(noun)|linebacker|football player|footballer +(noun)|linebacker|back +(noun)| +line block|1 +(noun)|linecut|line engraving|engraving +line coach|1 +(noun)|football coach +line double|1 +(noun)|line-drive double|double|two-base hit|two-bagger|two-baser +line drawing|1 +(noun)|delineation|depiction|limning|drawing +line drive|1 +(noun)|liner|fly|fly ball +line duty|1 +(noun)|line function|activity +line engraving|2 +(noun)|linecut|engraving +(noun)|linecut|line block|engraving +line feed|1 +(noun)|printing operation +line function|1 +(noun)|line duty|activity +line item|1 +(noun)|item|point +line judge|1 +(noun)|football official +line management|1 +(noun)|administration|disposal +line of battle|1 +(noun)|line +line of business|2 +(noun)|line|product line|line of products|line of merchandise|business line|merchandise|wares|product +(noun)|field|field of operation|commercial enterprise|business enterprise|business +line of control|1 +(noun)|Line of Control|boundary line|border|borderline|delimitation|mete +line of credit|1 +(noun)|credit line|bank line|line|personal credit line|personal line of credit|credit +line of defence|2 +(noun)|line of defense|organization|organisation +(noun)|line of defense|defensive structure|defense|defence +line of defense|2 +(noun)|line of defence|organization|organisation +(noun)|line of defence|defensive structure|defense|defence +line of descent|2 +(noun)|descent|lineage|filiation|kinship|family relationship|relationship +(noun)|lineage|line|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +line of destiny|1 +(noun)|line of fate|line of Saturn|wrinkle|furrow|crease|crinkle|seam|line +line of duty|1 +(noun)|duty|responsibility|obligation +line of fate|1 +(noun)|line of destiny|line of Saturn|wrinkle|furrow|crease|crinkle|seam|line +line of fire|1 +(noun)|path|route|itinerary +line of flight|1 +(noun)|path|route|itinerary +line of force|1 +(noun)|field line|line +line of gab|1 +(noun)|spiel|patter|line +line of heart|1 +(noun)|heart line|love line|mensal line|wrinkle|furrow|crease|crinkle|seam|line +line of inquiry|1 +(noun)|line of questioning|argumentation|logical argument|line of reasoning|line +line of latitude|1 +(noun)|latitude|parallel of latitude|parallel|line +line of least resistance|1 +(noun)|path of least resistance|fashion +line of life|1 +(noun)|life line|lifeline|wrinkle|furrow|crease|crinkle|seam|line +line of longitude|1 +(noun)|meridian|longitude|great circle +line of march|2 +(noun)|path|route|itinerary +(noun)|line +line of merchandise|1 +(noun)|line|product line|line of products|business line|line of business|merchandise|wares|product +line of poetry|1 +(noun)|line of verse|line +line of products|1 +(noun)|line|product line|line of merchandise|business line|line of business|merchandise|wares|product +line of questioning|1 +(noun)|line of inquiry|argumentation|logical argument|line of reasoning|line +line of reasoning|1 +(noun)|argumentation|logical argument|line|reasoning|logical thinking|abstract thought +line of saturn|1 +(noun)|line of fate|line of destiny|line of Saturn|wrinkle|furrow|crease|crinkle|seam|line +line of scrimmage|1 +(noun)|scrimmage line|line +line of sight|1 +(noun)|line of vision|line +line of succession|1 +(noun)|line +line of thought|1 +(noun)|thinking|thought|cerebration|intellection|mentation +line of verse|1 +(noun)|line of poetry|line +line of vision|1 +(noun)|line of sight|line +line of work|1 +(noun)|occupation|business|job|line|activity +line officer|1 +(noun)|commissioned officer +line one's pockets|1 +(verb)|profit|turn a profit +line organisation|1 +(noun)|line organization|organization|organisation +line organization|1 +(noun)|line organisation|organization|organisation +line personnel|1 +(noun)|force|personnel +line printer|1 +(noun)|line-at-a-time printer|printer|printing machine +line roulette|1 +(noun)|roulette|curve|curved shape +line score|1 +(noun)|summary +line single|1 +(noun)|line-drive single|single +line spectrum|1 +(noun)|spectrum +line squall|1 +(noun)|squall +line storm|1 +(noun)|equinoctial storm|rainstorm +line triple|1 +(noun)|line-drive triple|triple|three-base hit|three-bagger +line up|5 +(verb)|arrange|set up +(verb)|get hold|come up|find|get|acquire +(verb)|queue up|queue|stand|stand up +(verb)|align|aline|adjust|reorient +(verb)|dress|position +line worker|1 +(noun)|employee +lineage|5 +(noun)|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|descent|line of descent|filiation|kinship|family relationship|relationship +(noun)|linage|number +(noun)|linage|rate|charge per unit +(noun)|ancestry|derivation|filiation|inheritance|hereditary pattern +lineal|2 +(adj)|lineal |direct|matrilineal|matrilinear|patrilineal|patrilinear|unilateral|unilateralist|related +(adj)|linear |one-dimensional +lineament|2 +(noun)|quality|character|property|attribute|dimension +(noun)|feature|body part +linear|5 +(adj)|linear |additive|bilinear +(adj)|linear |one-dimensional|collinear|lineal|linelike|rectilinear|rectilineal +(adj)|analogue |analog +(adj)|elongate|simple |unsubdivided +(adj)|running|lengthwise |lengthways +linear a|1 +(noun)|Linear A|orthography|writing system +linear accelerator|1 +(noun)|linac|accelerator|particle accelerator|atom smasher +linear algebra|1 +(noun)|algebra +linear b|1 +(noun)|Linear B|syllabary|syllabic script +linear equation|1 +(noun)|equation +linear leaf|1 +(noun)|elongate leaf|simple leaf +linear measure|1 +(noun)|long measure|measure|quantity|amount +linear operator|1 +(noun)|operator +linear perspective|1 +(noun)|perspective|appearance|visual aspect +linear programming|1 +(noun)|applied mathematics|applied math +linear regression|1 +(noun)|rectilinear regression|regression|simple regression|regression toward the mean|statistical regression +linear unit|1 +(noun)|linear measure|long measure +linearise|1 +(verb)|linearize|adjust|set|correct +linearity|1 +(noun)|one-dimensionality|dimensionality +linearize|1 +(verb)|linearise|adjust|set|correct +lineation|2 +(noun)|outline|boundary|bound|bounds +(noun)|marking +linebacker|2 +(noun)|line backer|football player|footballer +(noun)|line backer|back +linebacker blitzing|1 +(noun)|safety blitz|blitz|maneuver|manoeuvre|play +linecut|2 +(noun)|line engraving|engraving +(noun)|line block|line engraving|engraving +lined|3 +(adj)|bordered +(adj)|seamed|rough |unsmooth +(adj)|lined +lined snake|1 +(noun)|Tropidoclonion lineatum|colubrid snake|colubrid +linelike|1 +(adj)|linear |one-dimensional +lineman|4 +(noun)|football player|footballer +(noun)|surveyor +(noun)|electrician|linesman|skilled worker|trained worker +(noun)|position +linemen|5 +(noun)|line +(noun)|lineman|football player|footballer +(noun)|lineman|surveyor +(noun)|electrician|lineman|linesman|skilled worker|trained worker +(noun)|lineman|position +linen|3 +(noun)|fabric|cloth|material|textile +(noun)|linen paper|paper +(noun)|white goods|household linen +linen paper|1 +(noun)|linen|paper +linendraper|1 +(noun)|draper +liner|3 +(noun)|line drive|fly|fly ball +(noun)|lining|piece of cloth|piece of material +(noun)|ocean liner|passenger ship +liner train|1 +(noun)|freight liner|freight train|rattler +linesman|2 +(noun)|official +(noun)|electrician|lineman|skilled worker|trained worker +lineup|2 +(noun)|batting order|card|roll|roster +(noun)|line +ling|5 +(noun)|ling ko|Trapa bicornis|water chestnut|water chestnut plant|caltrop +(noun)|heather|Scots heather|broom|Calluna vulgaris|heath +(noun)|Molva molva|gadoid|gadoid fish +(noun)|hake +(noun)|burbot|eelpout|cusk|Lota lota|cod|codfish +ling-pao|1 +(noun)|Ling-pao|Mystic Jewel|Chinese deity +ling ko|1 +(noun)|ling|Trapa bicornis|water chestnut|water chestnut plant|caltrop +lingam|1 +(noun)|symbol +lingberry|1 +(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|foxberry|Vaccinium vitis-idaea|cranberry +lingcod|2 +(noun)|saltwater fish +(noun)|Ophiodon elongatus|scorpaenoid|scorpaenoid fish +lingenberry|1 +(noun)|cowberry|mountain cranberry|lingonberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry +linger|5 +(verb)|persist|remain|stay +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|lurk|mill about|mill around|be +(verb)|tarry|leave|go forth|go away +(verb)|dawdle|move|linger over +(verb)|hover|hesitate|waver|waffle +linger over|1 +(verb)|dwell on|hesitate|waver|waffle +lingerer|1 +(noun)|loiterer|dawdler|drone|laggard|lagger|trailer +lingerie|1 +(noun)|intimate apparel|underwear|underclothes|underclothing|nightclothes|nightwear +lingering|2 +(adj)|unforgettable +(noun)|tarriance|delay|holdup +lingeringly|1 +(adv)|protractedly +lingo|1 +(noun)|cant|jargon|slang|argot|patois|vernacular|non-standard speech +lingonberry|2 +(noun)|cowberry|mountain cranberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry +(noun)|mountain cranberry|cowberry|lowbush cranberry|berry +lingua|1 +(noun)|tongue|glossa|clapper|organ|articulator +lingua franca|1 +(noun)|interlanguage|koine|language|linguistic communication +lingual|2 +(adj)|linguistic |communication +(adj)|organ|articulator +lingual artery|1 +(noun)|arteria lingualis|artery|arteria|arterial blood vessel +lingual vein|1 +(noun)|vena lingualis|vein|vena|venous blood vessel +lingually|1 +(adv)|linguistically +lingualumina|1 +(noun)|Lingualumina|artificial language +linguica|1 +(noun)|pork sausage +linguine|1 +(noun)|linguini|pasta|alimentary paste +linguini|1 +(noun)|linguine|pasta|alimentary paste +linguist|2 +(noun)|linguistic scientist|scientist|man of science +(noun)|polyglot|person|individual|someone|somebody|mortal|human|soul +linguistic|2 +(adj)|linguistic |lingual|communication +(adj)|science|scientific discipline +linguistic atlas|1 +(noun)|dialect atlas|atlas|book of maps|map collection +linguistic communication|1 +(noun)|language|communication +linguistic context|1 +(noun)|context|context of use|discourse +linguistic geography|1 +(noun)|dialect geography|linguistics +linguistic process|2 +(noun)|human process +(noun)|language|higher cognitive process +linguistic profiling|1 +(noun)|identification +linguistic relation|1 +(noun)|relation +linguistic rule|1 +(noun)|rule|concept|conception|construct +linguistic scientist|1 +(noun)|linguist|scientist|man of science +linguistic string|1 +(noun)|string of words|word string|string|language|linguistic communication +linguistic unit|1 +(noun)|language unit|part|portion|component part|component +linguistically|1 +(adv)|lingually +linguistics|2 +(noun)|science|scientific discipline +(noun)|philology|humanistic discipline|humanities|liberal arts|arts +linguistics department|1 +(noun)|department of linguistics|academic department +lingulate|1 +(adj)|tongue-shaped|rounded +lingvo kosmopolita|1 +(noun)|Lingvo Kosmopolita|artificial language +liniment|1 +(noun)|embrocation|lotion|application +linin|1 +(noun)|body substance +lining|4 +(noun)|protective covering|protective cover|protection +(noun)|liner|piece of cloth|piece of material +(noun)|facing|application|coating|covering +(noun)|insulation +link|13 +(noun)|nexus|linkage +(noun)|linkup|tie|tie-in|fastener|fastening|holdfast|fixing +(noun)|connection|connectedness|union|unification +(noun)|connection|connexion|shape|form +(noun)|linear unit +(noun)|instruction|command|statement|program line +(noun)|liaison|contact|inter-group communication|channel|communication channel|line +(noun)|radio link|communication system +(noun)|data link|circuit|electrical circuit|electric circuit +(verb)|associate|tie in|relate|colligate|link up|connect|think|cogitate|cerebrate +(verb)|connect|tie|link up +(verb)|connect|link up|join|unite +(verb)|yoke|attach +link-attached station|1 +(noun)|remote terminal|link-attached terminal|remote station|terminal +link-attached terminal|1 +(noun)|remote terminal|remote station|link-attached station|terminal +link trainer|1 +(noun)|Link trainer|flight simulator|trainer +link up|3 +(verb)|connect|link|join|unite +(verb)|connect|link|tie +(verb)|associate|tie in|relate|link|colligate|connect|think|cogitate|cerebrate +linkage|4 +(noun)|connection|connexion|connectedness +(noun)|gene linkage|inheritance|hereditary pattern +(noun)|mechanical system +(noun)|fastening|attachment +linkage editor|1 +(noun)|editor program|editor +linkage group|1 +(noun)|linked genes|gene|cistron|factor +linkboy|1 +(noun)|linkman|attendant|attender|tender +linked|1 +(adj)|coupled|joined|connected +linked genes|1 +(noun)|linkage group|gene|cistron|factor +linking verb|1 +(noun)|copula|copulative|verb +linkman|1 +(noun)|linkboy|attendant|attender|tender +links|10 +(noun)|golf course|golf links|course +(noun)|link|nexus|linkage +(noun)|link|linkup|tie|tie-in|fastener|fastening|holdfast|fixing +(noun)|connection|link|connectedness|union|unification +(noun)|connection|connexion|link|shape|form +(noun)|link|linear unit +(noun)|link|instruction|command|statement|program line +(noun)|liaison|link|contact|inter-group communication|channel|communication channel|line +(noun)|radio link|link|communication system +(noun)|link|data link|circuit|electrical circuit|electric circuit +linksman|1 +(noun)|golfer|golf player|player|participant +linkup|1 +(noun)|link|tie|tie-in|fastener|fastening|holdfast|fixing +linnaea|1 +(noun)|Linnaea|genus Linnaea|asterid dicot genus +linnaea borealis|1 +(noun)|twinflower|Linnaea borealis|subshrub|suffrutex +linnaea borealis americana|1 +(noun)|American twinflower|Linnaea borealis americana|twinflower|Linnaea borealis +linnaean|1 +(adj)|Linnaean|Linnean|botanist|phytologist|plant scientist +linnaeus|1 +(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist|phytologist|plant scientist +linnean|1 +(adj)|Linnaean|Linnean|botanist|phytologist|plant scientist +linnet|2 +(noun)|house finch|Carpodacus mexicanus|finch +(noun)|lintwhite|Carduelis cannabina|finch +lino|1 +(noun)|linoleum|covering material +linocut|2 +(noun)|print +(noun)|design|pattern|figure +linoleic acid|1 +(noun)|linolic acid|polyunsaturated fatty acid +linolenic acid|1 +(noun)|omega-6 fatty acid|omega-6 +linoleum|1 +(noun)|lino|covering material +linoleum cutter|1 +(noun)|linoleum knife|knife +linoleum knife|1 +(noun)|linoleum cutter|knife +linolic acid|1 +(noun)|linoleic acid|polyunsaturated fatty acid +linosyris vulgaris|1 +(noun)|goldilocks|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster +linotype|1 +(noun)|Linotype|Linotype machine|typesetting machine +linotype machine|1 +(noun)|Linotype|Linotype machine|typesetting machine +linseed|1 +(noun)|flaxseed|oilseed +linseed oil|1 +(noun)|flaxseed oil|oil +linsey-woolsey|1 +(noun)|fabric|cloth|material|textile +linstock|1 +(noun)|stick +lint|2 +(noun)|fiber|fibre +(noun)|fabric|cloth|material|textile +lintel|1 +(noun)|header|beam +lintwhite|1 +(noun)|linnet|Carduelis cannabina|finch +linum|1 +(noun)|Linum|genus Linum|plant genus +linuron|1 +(noun)|herbicide|weedkiller|weed killer +linus carl pauling|1 +(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist +linus pauling|1 +(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist +linux|1 +(noun)|Linux|UNIX|UNIX system|UNIX operating system +linz|1 +(noun)|Linz|Lentia|city|metropolis|urban center +liomys|1 +(noun)|Liomys|genus Liomys|mammal genus +liomys irroratus|1 +(noun)|Mexican pocket mouse|Liomys irroratus|pocket mouse +lion|4 +(noun)|king of beasts|Panthera leo|big cat|cat +(noun)|social lion|celebrity|famous person +(noun)|Leo|Lion|person|individual|someone|somebody|mortal|human|soul +(noun)|Leo|Leo the Lion|Lion|sign of the zodiac|star sign|sign|mansion|house|planetary house +lion's-ear|1 +(noun)|Leonotis nepetaefolia|Leonotis nepetifolia|herb|herbaceous plant +lion's beard|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +lion's foot|1 +(noun)|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb|herbaceous plant +lion-hunter|2 +(noun)|social climber|climber +(noun)|hunter|huntsman +lion-jaw forceps|1 +(noun)|forceps +lion cub|1 +(noun)|cub|young carnivore +lion marmoset|1 +(noun)|tamarin|lion monkey|leoncita|marmoset +lion monkey|1 +(noun)|tamarin|lion marmoset|leoncita|marmoset +lionel barrymore|1 +(noun)|Barrymore|Lionel Barrymore|actor|histrion|player|thespian|role player +lionel hampton|1 +(noun)|Hampton|Lionel Hampton|jazz musician|jazzman +lionel trilling|1 +(noun)|Trilling|Lionel Trilling|literary critic +lioness|1 +(noun)|lion|king of beasts|Panthera leo +lionet|1 +(noun)|lion|king of beasts|Panthera leo +lionfish|1 +(noun)|scorpaenid|scorpaenid fish +lionhearted|1 +(adj)|brave |courageous|fearless +lionise|1 +(verb)|lionize|celebrate|respect|honor|honour|abide by|observe +lionize|1 +(verb)|lionise|celebrate|respect|honor|honour|abide by|observe +lions club|1 +(noun)|Lions Club|International Association of Lions clubs|service club +liopelma|1 +(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus +liopelma hamiltoni|1 +(noun)|Liopelma hamiltoni|frog|toad|toad frog|anuran|batrachian|salientian +liopelmidae|1 +(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family +liothyronine|1 +(noun)|triiodothyronine|T|thyroid hormone +lip|3 +(noun)|external body part|articulator +(noun)|sass|sassing|backtalk|back talk|mouth|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +(noun)|brim|rim|edge +lip-gloss|1 +(noun)|makeup|make-up|war paint +lip-read|2 +(verb)|lipread|speech-read|read +(verb)| +lip-sync|1 +(verb)|lip-synch|mouth +lip-synch|1 +(verb)|lip-sync|mouth +lip balm|1 +(noun)|ointment|unction|unguent|balm|salve +lip fern|2 +(noun)|lipfern|fern +(noun)| +lip off|1 +(verb)|shoot one's mouth off|talk|speak|utter|mouth|verbalize|verbalise +lip reader|1 +(noun)|deaf person +lip rouge|1 +(noun)|lipstick|makeup|make-up|war paint +lip service|1 +(noun)|hypocrisy|pretense|pretence|feigning|dissembling +lip sync|1 +(noun)|lip synchronization|lip synchronisation|lip synch|recording|transcription +lip synch|1 +(noun)|lip synchronization|lip synchronisation|lip sync|recording|transcription +lip synchronisation|1 +(noun)|lip synchronization|lip synch|lip sync|recording|transcription +lip synchronization|1 +(noun)|lip synchronisation|lip synch|lip sync|recording|transcription +lipaemia|1 +(noun)|lipemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +liparidae|1 +(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family +liparididae|1 +(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family +liparis|2 +(noun)|orchid|orchidaceous plant +(noun)|Liparis|genus Liparis|fish genus +liparis liparis|1 +(noun)|snailfish|seasnail|sea snail|Liparis liparis|scorpaenoid|scorpaenoid fish +liparis loeselii|1 +(noun)|fen orchid|fen orchis|Liparis loeselii|orchid|orchidaceous plant +lipase|1 +(noun)|enzyme +lipchitz|1 +(noun)|Lipchitz|Jacques Lipchitz|sculptor|sculpturer|carver|statue maker +lipectomy|1 +(noun)|selective lipectomy|plastic surgery|reconstructive surgery|anaplasty +lipemia|1 +(noun)|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +lipfern|1 +(noun)|lip fern|fern +lipid|1 +(noun)|lipide|lipoid|macromolecule|supermolecule +lipid-lowering medication|1 +(noun)|lipid-lowering medicine|statin drug|statin|medicine|medication|medicament|medicinal drug +lipid-lowering medicine|1 +(noun)|lipid-lowering medication|statin drug|statin|medicine|medication|medicament|medicinal drug +lipid granulomatosis|1 +(noun)|xanthomatosis|xanthoma multiplex|cholesterosis cutis|lipoid granulomatosis|xanthoma +lipidaemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +lipide|1 +(noun)|lipid|lipoid|macromolecule|supermolecule +lipidemia|1 +(noun)|lipemia|lipaemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +lipidosis|1 +(noun)|metabolic disorder +lipitor|1 +(noun)|atorvastatin|Lipitor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +lipizzan|1 +(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse|riding horse|mount +lipless|1 +(adj)|lipless |unlipped +liplike|1 +(adj)|labiate|lipped +lipmann|1 +(noun)|Lipmann|Fritz Albert Lipmann|biochemist +lipo-hepin|1 +(noun)|heparin|Lipo-Hepin|Liquaemin|polysaccharide|polyose|anticoagulant|anticoagulant medication|decoagulant +lipo-lutin|1 +(noun)|progesterone|Lipo-Lutin|progestin|progestogen +lipochondrodystrophy|1 +(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|mucopolysaccharidosis|monogenic disorder|monogenic disease +lipogram|1 +(noun)|text|textual matter +lipoid|1 +(noun)|lipid|lipide|macromolecule|supermolecule +lipoid granulomatosis|1 +(noun)|xanthomatosis|xanthoma multiplex|cholesterosis cutis|lipid granulomatosis|xanthoma +lipoidaemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +lipoidemia|1 +(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom +lipoma|1 +(noun)|adipose tumor|tumor|tumour|neoplasm +lipomatosis|1 +(noun)|pathology +lipophilic|1 +(adj)|lipotropic|oleophilic +lipoprotein|1 +(noun)|conjugated protein|compound protein +liposarcoma|1 +(noun)|sarcoma +liposcelis|1 +(noun)|Liposcelis|genus Liposcelis|arthropod genus +liposcelis divinatorius|1 +(noun)|booklouse|book louse|deathwatch|Liposcelis divinatorius|psocopterous insect +liposomal delivery vector|1 +(noun)|transducing vector|gene delivery vector +liposome|1 +(noun)|vesicle|cyst +lipotropic|1 +(adj)|lipophilic|oleophilic +lipotyphla|1 +(noun)|Lipotyphla|suborder Lipotyphla|animal order +lipped|1 +(adj)|lipped |bilabiate|labiate|liplike +lippi|2 +(noun)|Lippi|Filippino Lippi|old master +(noun)|Lippi|Fra Filippo Lippi|old master +lippizan|1 +(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse|riding horse|mount +lippizaner|1 +(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse|riding horse|mount +lippmann|2 +(noun)|Lippmann|Walter Lippmann|journalist +(noun)|Lippmann|Gabriel Lippmann|physicist +lipread|1 +(verb)|lip-read|speech-read|read +lipreading|1 +(noun)|sensing|perception +lipscomb|1 +(noun)|Lipscomb|William Nunn Lipscom Jr.|chemist +lipstick|3 +(noun)|lip rouge|makeup|make-up|war paint +(verb)|delineate|limn|outline +(verb)|make up +lipstick plant|1 +(noun)|Aeschynanthus radicans|aeschynanthus +liquaemin|1 +(noun)|heparin|Lipo-Hepin|Liquaemin|polysaccharide|polyose|anticoagulant|anticoagulant medication|decoagulant +liquefaction|1 +(noun)|phase change|phase transition|state change|physical change +liquefiable|1 +(adj)|liquifiable|liquid +liquefied|2 +(adj)|liquified|liquid +(adj)|molten|liquified|melted |liquid|liquified +liquefied petroleum gas|1 +(noun)|bottled gas|gas|hydrocarbon +liquefy|3 +(verb)|change state|turn +(verb)|liquify|liquidize|liquidise|change|alter|modify +(verb)|flux|liquify|change integrity +liquescent|1 +(adj)|melting|unfrozen +liqueur|1 +(noun)|cordial|alcohol|alcoholic beverage|intoxicant|inebriant +liqueur glass|1 +(noun)|glass|drinking glass +liquid|12 +(adj)|liquid |fluid|runny|liquefied|liquified|semiliquid|watery|liquefiable|liquifiable +(adj)|swimming|watery|tearful +(adj)|limpid|clear +(adj)|melted |liquified|dissolved|molten|liquefied|liquified|fusible|thawed|unfrozen +(adj)|musical +(adj)|soft +(adj)|flowing|fluent|fluid|smooth|graceful +(adj)|fluid|disposable +(noun)|fluid +(noun)|liquidness|liquidity|state of matter|state +(noun)|fluid +(noun)|continuant consonant|continuant +liquid air|1 +(noun)|air|cryogen +liquid assets|1 +(noun)|quick assets|assets +liquid bleach|1 +(noun)|solution +liquid body substance|1 +(noun)|bodily fluid|body fluid|humor|humour|body substance +liquid crystal|1 +(noun)|liquid +liquid crystal display|1 +(noun)|LCD|digital display|alphanumeric display +liquid detergent|1 +(noun)|detergent +liquid diet|1 +(noun)|diet +liquid ecstasy|1 +(noun)|soap|scoop|max|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +liquid measure|1 +(noun)|liquid unit|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +liquid metal reactor|1 +(noun)|nuclear reactor|reactor +liquid nitrogen|1 +(noun)|nitrogen|N|atomic number 7|cryogen +liquid oxygen|1 +(noun)|LOX|oxygen|O|atomic number 8 +liquid pred|1 +(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid|anti-inflammatory|anti-inflammatory drug +liquid soap|1 +(noun)|soap +liquid unit|1 +(noun)|liquid measure|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +liquidambar|2 +(noun)|sweet gum|gum +(noun)|gum tree|gum +liquidambar styraciflua|1 +(noun)|sweet gum|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar +liquidate|4 +(verb)|neutralize|neutralise|waste|knock off|do in|kill +(verb)|pay off|pay up|ante up|pay +(verb)|cash|cash in +(verb)|settle +liquidation|3 +(noun)|settlement|termination|ending|conclusion +(noun)|extermination|destruction|devastation +(noun)|elimination|murder|slaying|execution +liquidator|2 +(noun)|murderer|manslayer|criminal|felon|crook|outlaw|malefactor|killer|slayer +(noun)|receiver|fiduciary +liquidise|1 +(verb)|liquefy|liquify|liquidize|change|alter|modify +liquidiser|1 +(noun)|blender|liquidizer|mixer +liquidity|3 +(noun)|liquid|liquidness|state of matter|state +(noun)|fluidity|fluidness|liquidness|runniness|thinness +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +liquidity crisis|1 +(noun)|credit crunch|squeeze|financial condition|economic condition +liquidize|2 +(verb)|sell out|sell up|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|liquefy|liquify|liquidise|change|alter|modify +liquidizer|1 +(noun)|blender|liquidiser|mixer +liquidness|2 +(noun)|liquid|liquidity|state of matter|state +(noun)|fluidity|fluidness|liquidity|runniness|thinness +liquifiable|1 +(adj)|liquefiable|liquid +liquified|3 +(adj)|melted |liquid|dissolved|molten|liquefied|fusible|thawed|unfrozen +(adj)|liquefied|liquid +(adj)|molten|liquefied|melted |liquid +liquify|2 +(verb)|liquefy|liquidize|liquidise|change|alter|modify +(verb)|liquefy|flux|change integrity +liquor|3 +(noun)|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)|liquid +(noun)|pot liquor|pot likker|broth|stock +liquor licence|1 +(noun)|liquor license|license|licence|permit +liquor license|1 +(noun)|liquor licence|license|licence|permit +liquor store|1 +(noun)|package store|off-licence|shop|store +liquorice|2 +(noun)|licorice|Glycyrrhiza glabra|herb|herbaceous plant +(noun)|licorice|candy +lir|1 +(noun)|Lir|Ler|Celtic deity +lira|3 +(noun)|Maltese lira|Maltese monetary unit +(noun)|Turkish lira|Turkish monetary unit +(noun)|Italian lira|Italian monetary unit +liriodendron|1 +(noun)|Liriodendron|genus Liriodendron|magnoliid dicot genus +liriodendron tulipifera|1 +(noun)|tulip tree|tulip poplar|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree|flowering tree +liriope|1 +(noun)|Liriope|genus Liriope|liliid monocot genus +liriope muscari|1 +(noun)|lilyturf|lily turf|Liriope muscari|liliaceous plant +lis pendens|1 +(noun)|legal action|action|action at law +lisboa|1 +(noun)|Lisbon|Lisboa|capital of Portugal|national capital|port +lisbon|1 +(noun)|Lisbon|Lisboa|capital of Portugal|national capital|port +lise meitner|1 +(noun)|Meitner|Lise Meitner|nuclear physicist +lisinopril|1 +(noun)|Prinivil|Zestril|ACE inhibitor|angiotensin converting enzyme inhibitor +lisle|2 +(noun)|fabric|cloth|material|textile +(noun)|cotton +lisp|3 +(noun)|speech disorder|speech defect|defect of speech +(noun)|LISP|list-processing language|programming language|programing language +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +lisp compiler|1 +(noun)|LISP compiler|compiler|compiling program +lisp program|1 +(noun)|LISP program|program|programme|computer program|computer programme +lisper|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +lissom|1 +(adj)|lissome|lithe|lithesome|slender|supple|svelte|sylphlike|graceful +lissome|1 +(adj)|lissom|lithe|lithesome|slender|supple|svelte|sylphlike|graceful +lissomeness|1 +(noun)|litheness|suppleness|gracefulness +list|7 +(noun)|listing|database +(noun)|tilt|inclination|lean|leaning|position|spatial relation +(verb)|name|enumerate|recite|itemize|itemise +(verb)|register +(verb)|number|name|identify +(verb)|lean|move +(verb)|heel|lean|tilt|tip|slant|angle +list-processing language|1 +(noun)|LISP|programming language|programing language +list price|1 +(noun)|asking price|selling price +list processing|1 +(noun)|data processing +list system|1 +(noun)|scrutin de liste|scrutin de liste system|voting system|electoral system +listed|2 +(adj)|listed |catalogued|recorded|traded +(adj)|enrolled|registered +listed security|1 +(noun)|security|certificate +listen|3 +(verb)|perceive|comprehend|listen in +(verb)|hear|take heed|concentrate|focus|center|centre|pore|rivet +(verb)|heed|mind|obey +listen in|2 +(verb)|listen +(verb)|eavesdrop|listen +listener|1 +(noun)|hearer|auditor|attender|perceiver|observer|beholder +listening|2 +(adj)|attentive +(noun)|hearing|sensing|perception +listening watch|1 +(noun)|continuous receiver watch|watch|vigil +lister|3 +(noun)|Lister|Joseph Lister|Baron Lister|surgeon|operating surgeon|sawbones +(noun)|tax assessor|assessor +(noun)|lister plow|lister plough|middlebreaker|middle buster|moldboard plow|mouldboard plough +lister plough|1 +(noun)|lister|lister plow|middlebreaker|middle buster|moldboard plow|mouldboard plough +lister plow|1 +(noun)|lister|lister plough|middlebreaker|middle buster|moldboard plow|mouldboard plough +listera|1 +(noun)|Listera|genus Listera|monocot genus|liliopsid genus +listera convallarioides|1 +(noun)|broad-leaved twayblade|Listera convallarioides|orchid|orchidaceous plant +listera cordata|1 +(noun)|lesser twayblade|Listera cordata|orchid|orchidaceous plant +listera ovata|1 +(noun)|twayblade|Listera ovata|orchid|orchidaceous plant +listeria|1 +(noun)|eubacteria|eubacterium|true bacteria +listeria meningitis|1 +(noun)|listeriosis|infectious disease +listeria monocytogenes|1 +(noun)|Listeria monocytogenes|L. monocytogenes|listeria +listeriosis|1 +(noun)|listeria meningitis|infectious disease +listing|2 +(noun)|list|database +(noun)|itemization|itemisation|organization|organisation +listless|2 +(adj)|lethargic |unergetic +(adj)|dispirited|spiritless +listlessness|2 +(noun)|languor|lassitude|apathy +(noun)|torpidity|torpidness|torpor|passivity|passiveness +liston|1 +(noun)|Liston|Sonny Liston|Charles Liston|prizefighter|gladiator +lisu|1 +(noun)|Lisu|Loloish +liszt|1 +(noun)|Liszt|Franz Liszt|pianist|piano player|composer +lit|3 +(adj)|illuminated|lighted|well-lighted|light +(adj)|lighted |ablaze|afire|aflame|aflare|alight|blazing|burning|flaming|on fire|ignited|enkindled|kindled +(noun)|literature|literary study +lit crit|1 +(noun)|literary criticism|literary study +litany|2 +(noun)|address|speech +(noun)|Litany|prayer +litas|1 +(noun)|Lithuanian monetary unit +litchee|1 +(noun)|litchi|litchi nut|lichi|leechee|lichee|lychee|edible fruit +litchi|2 +(noun)|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree +(noun)|litchi nut|litchee|lichi|leechee|lichee|lychee|edible fruit +litchi chinensis|1 +(noun)|litchi|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree +litchi nut|1 +(noun)|litchi|litchee|lichi|leechee|lichee|lychee|edible fruit +litchi tree|1 +(noun)|litchi|lichee|Litchi chinensis|Nephelium litchi|fruit tree +lite|1 +(adj)|light|low-cal|nonfat |fat-free|fatless +liter|1 +(noun)|litre|l|cubic decimeter|cubic decimetre|metric capacity unit +literacy|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +literal|7 +(adj)|actual|genuine|real|true +(adj)|exact +(adj)|literal |denotative|explicit|exact|unrhetorical +(adj)|plain|unembellished|unrhetorical +(adj)|pure and simple|plain +(adj)|word-for-word|exact +(noun)|misprint|erratum|typographical error|typo|literal error|error|mistake +literal error|1 +(noun)|misprint|erratum|typographical error|typo|literal|error|mistake +literal interpretation|1 +(noun)|interpretation +literalise|1 +(verb)|literalize|interpret|construe|see +literalism|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|inclination|disposition|tendency +literalize|1 +(verb)|literalise|interpret|construe|see +literally|1 +(adv)|virtually +literalness|1 +(noun)|concreteness +literary|3 +(adj)|writing|written material|piece of writing +(adj)|well-written|literate +(adj)|formal +literary agent|1 +(noun)|agent +literary argument|1 +(noun)|argument|summary +literary composition|1 +(noun)|literary work|writing|written material|piece of writing +literary critic|1 +(noun)|critic +literary criticism|2 +(noun)|criticism|writing|written material|piece of writing +(noun)|lit crit|literary study +literary genre|1 +(noun)|writing style|genre|expressive style|style +literary hack|1 +(noun)|hack|hack writer|writer|author +literary pirate|1 +(noun)|plagiarist|plagiarizer|plagiariser|pirate|thief|stealer +literary review|1 +(noun)|review +literary study|1 +(noun)|humanistic discipline|humanities|liberal arts|arts +literary work|1 +(noun)|literary composition|writing|written material|piece of writing +literate|3 +(adj)|literate |belletristic|lettered|literary|well-written|educated|sophisticated +(adj)|educated +(noun)|literate person|person|individual|someone|somebody|mortal|human|soul +literate person|1 +(noun)|literate|person|individual|someone|somebody|mortal|human|soul +literati|1 +(noun)|intelligentsia|clerisy +literature|4 +(noun)|writing|written material|piece of writing +(noun)|lit|literary study +(noun)|writing|written material|piece of writing +(noun)|profession +lithane|1 +(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +lithe|1 +(adj)|lissome|lissom|lithesome|slender|supple|svelte|sylphlike|graceful +litheness|1 +(noun)|lissomeness|suppleness|gracefulness +lithesome|1 +(adj)|lissome|lissom|lithe|slender|supple|svelte|sylphlike|graceful +lithia water|1 +(noun)|mineral water +lithiasis|1 +(noun)|pathology +lithic|2 +(adj)|metallic element|metal +(adj)|material|stuff +lithium|1 +(noun)|Li|atomic number 3|metallic element|metal +lithium carbonate|1 +(noun)|Lithane|Lithonate|Eskalith|carbonate|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +lithocarpus|1 +(noun)|Lithocarpus|genus Lithocarpus|hamamelid dicot genus +lithocarpus densiflorus|1 +(noun)|tanbark oak|Lithocarpus densiflorus|tree +lithocarpus glaber|1 +(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak|Lithocarpus densiflorus +lithocarpus glabra|1 +(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak|Lithocarpus densiflorus +lithodidae|1 +(noun)|Lithodidae|family Lithodidae|arthropod family +lithoglyptics|1 +(noun)|glyptics|glyptic art|glyptography +lithograph|3 +(noun)|print +(noun)|lithograph machine|duplicator|copier +(verb)|print +lithograph machine|1 +(noun)|lithograph|duplicator|copier +lithographer|1 +(noun)|printmaker|graphic artist +lithographic|1 +(adj)|planographic printing|planography +lithography|2 +(noun)|planographic printing|planography +(noun)|printmaking +lithomancer|1 +(noun)|diviner +lithomancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +lithomantic|1 +(adj)|divination|foretelling|soothsaying|fortune telling +lithonate|1 +(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +lithophragma|1 +(noun)|Lithophragma|genus Lithophragma|rosid dicot genus +lithophragma affine|1 +(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower +lithophragma affinis|1 +(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower +lithophragma parviflorum|1 +(noun)|prairie star|Lithophragma parviflorum|wildflower|wild flower +lithophyte|1 +(noun)|lithophytic plant|rock plant +lithophytic|1 +(adj)|rock plant +lithophytic plant|1 +(noun)|lithophyte|rock plant +lithops|1 +(noun)|living stone|stoneface|stone-face|stone plant|stone life face|flowering stone|succulent +lithospermum|1 +(noun)|Lithospermum|genus Lithospermum|plant genus +lithospermum canescens|1 +(noun)|hoary puccoon|Indian paint|Lithospermum canescens|herb|herbaceous plant +lithospermum caroliniense|1 +(noun)|puccoon|Lithospermum caroliniense|herb|herbaceous plant +lithospermum officinale|1 +(noun)|gromwell|Lithospermum officinale|herb|herbaceous plant +lithosphere|1 +(noun)|geosphere|layer +lithotomy|1 +(noun)|ablation|extirpation|cutting out|excision +lithotomy position|1 +(noun)|position|posture|attitude +lithuania|1 +(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State|Baltic Republic +lithuanian|3 +(adj)|Lithuanian|Baltic State|Baltic Republic +(noun)|Lithuanian|European +(noun)|Lithuanian|Baltic|Baltic language +lithuanian monetary unit|1 +(noun)|Lithuanian monetary unit|monetary unit +lithuresis|1 +(noun)|micturition|urination +litigant|1 +(noun)|litigator|party +litigate|2 +(verb)|challenge +(verb)|action|sue|process|challenge +litigation|1 +(noun)|judicial proceeding|proceeding|legal proceeding|proceedings +litigator|1 +(noun)|litigant|party +litigious|2 +(adj)|proceeding|legal proceeding|proceedings +(adj)|contentious|disputatious|disputative|argumentative +litmus|1 +(noun)|litmus test|acid-base indicator +litmus paper|1 +(noun)|paper +litmus test|2 +(noun)|litmus|acid-base indicator +(noun)|examination|exam|test +litocranius|1 +(noun)|Litocranius|genus Litocranius|mammal genus +litocranius walleri|1 +(noun)|gerenuk|Litocranius walleri|antelope +litoral|1 +(noun)|littoral|littoral zone|sands|seashore|coast|seacoast|sea-coast +litotes|1 +(noun)|meiosis|rhetorical device|understatement +litre|1 +(noun)|liter|l|cubic decimeter|cubic decimetre|metric capacity unit +litter|7 +(noun)|animal group +(noun)|rubbish|trash|scrap +(noun)|conveyance|transport +(noun)|bedding material|bedding|substance|matter +(verb)|be +(verb)|strew|straw +(verb)|give birth|deliver|bear|birth|have +litter-basket|2 +(noun)|litterbin|litter basket|bin +(noun)| +litter-bearer|1 +(noun)|stretcher-bearer|attendant|attender|tender +litter basket|2 +(noun)|litterbin|litter-basket|bin +(noun)| +litter lout|1 +(noun)|litterer|litterbug|slob|sloven|pig|slovenly person +litterateur|1 +(noun)|essayist|writer|author +litterbin|1 +(noun)|litter basket|litter-basket|bin +litterbug|1 +(noun)|litterer|litter lout|slob|sloven|pig|slovenly person +littered|1 +(adj)|cluttered|untidy +litterer|1 +(noun)|litterbug|litter lout|slob|sloven|pig|slovenly person +little|10 +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|littlest|smallest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|smaller|littler|smallish|small-scale|undersize|undersized +(adj)|little |small|slight|less +(adj)|brief|short +(adj)|small|young |immature +(adj)|fiddling|footling|lilliputian|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +(adj)|small|soft +(adj)|little |younger +(adj)|minuscule|small|lowercase +(adj)|emotional +(noun)|small indefinite quantity|small indefinite amount +little-head snakeweed|1 +(noun)|Gutierrezia microcephala|matchweed|matchbush +little-leaf fig|1 +(noun)|Port Jackson fig|rusty rig|Botany Bay fig|Ficus rubiginosa|fig tree +little-league team|1 +(noun)|team|squad +little auk|1 +(noun)|dovekie|Plautus alle|auk +little barley|1 +(noun)|Hordeum pusillum|barley +little bear|1 +(noun)|Little Bear|Ursa Minor|constellation +little bighorn|2 +(noun)|Little Bighorn|Little Bighorn River|Little Horn|river +(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter|massacre|mass murder|carnage|butchery +little bighorn river|1 +(noun)|Little Bighorn|Little Bighorn River|Little Horn|river +little black ant|1 +(noun)|Monomorium minimum|ant|emmet|pismire +little blue heron|1 +(noun)|Egretta caerulea|heron +little brother|1 +(noun)|brother|blood brother +little brown bat|1 +(noun)|little brown myotis|Myotis leucifugus|vespertilian bat|vespertilionid +little brown myotis|1 +(noun)|little brown bat|Myotis leucifugus|vespertilian bat|vespertilionid +little by little|2 +(adv)|piecemeal|bit by bit|in stages +(adv)|by inches|by small degrees +little chief hare|1 +(noun)|Ochotona princeps|pika|mouse hare|rock rabbit|coney|cony +little club moss|1 +(noun)|spikemoss|spike moss|club moss|club-moss|lycopod|Selaginella|genus Selaginella +little clubmoss|1 +(noun)|fir clubmoss|mountain clubmoss|Lycopodium selago|club moss|club-moss|lycopod +little dictionary|1 +(noun)|pocket dictionary|dictionary|lexicon +little dipper|1 +(noun)|Little Dipper|Dipper|asterism +little dog|1 +(noun)|Canis Minor|Little Dog|constellation +little ebony spleenwort|1 +(noun)|black-stem spleenwort|black-stemmed spleenwort|spleenwort +little egret|1 +(noun)|Egretta garzetta|egret +little finger|1 +(noun)|pinkie|pinky|finger +little girl|1 +(noun)|female child|girl|female|female person +little golden zinnia|1 +(noun)|Zinnia grandiflora|zinnia|old maid|old maid flower +little grebe|1 +(noun)|dabchick|Podiceps ruficollis|grebe +little hand|1 +(noun)|hour hand|hand +little horn|1 +(noun)|Little Bighorn|Little Bighorn River|Little Horn|river +little joe|1 +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +little john|1 +(noun)|Little John|fictional character|fictitious character|character +little league|1 +(noun)|baseball league +little leaguer|1 +(noun)|ballplayer|baseball player +little lord fauntleroy|1 +(noun)|Fauntleroy|Little Lord Fauntleroy|male child|boy +little missouri|1 +(noun)|Little Missouri|Little Missouri River|river +little missouri river|1 +(noun)|Little Missouri|Little Missouri River|river +little mo connolly|1 +(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player +little office|1 +(noun)|Little Office|office +little owl|1 +(noun)|Athene noctua|owl|bird of Minerva|bird of night|hooter +little phoebe|1 +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +little potato|1 +(noun)|rosette|russet scab|stem canker|rhizoctinia disease +little red ricing hood|1 +(noun)|Little Red Ricing Hood|fictional character|fictitious character|character +little rhody|1 +(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state +little rock|1 +(noun)|Little Rock|capital of Arkansas|state capital +little sioux river|1 +(noun)|Little Sioux River|river +little sister|1 +(noun)|sister|sis +little skate|1 +(noun)|Raja erinacea|skate +little slam|1 +(noun)|small slam|slam|sweep +little sparrow|1 +(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer|vocalist|vocalizer|vocaliser +little spotted skunk|1 +(noun)|spotted skunk|Spilogale putorius|skunk|polecat|wood pussy +little terror|1 +(noun)|terror|brat|holy terror|imp|scamp|monkey|rascal|rapscallion|scalawag|scallywag +little theater|1 +(noun)|little theatre|theater|theatre|house +little theatre|1 +(noun)|little theater|theater|theatre|house +little toe|1 +(noun)|toe +little wabash|1 +(noun)|Little Wabash|Little Wabash River|river +little wabash river|1 +(noun)|Little Wabash|Little Wabash River|river +littleneck|2 +(noun)|littleneck clam|quahaug|quahog|hard-shell clam|round clam +(noun)|littleneck clam|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria +littleneck clam|2 +(noun)|littleneck|quahaug|quahog|hard-shell clam|round clam +(noun)|littleneck|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria +littleness|1 +(noun)|smallness|size +littler|10 +(adj)|smaller|small +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|littlest|smallest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|smaller|smallish|small-scale|undersize|undersized +(adj)|little |small|slight|less +(adj)|brief|little|short +(adj)|little|small|young |immature +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +(adj)|little|small|soft +(adj)|little |younger +(adj)|little|minuscule|small|lowercase +(adj)|little|emotional +littlest|10 +(adj)|least|smallest|small +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|smallest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|smaller|littler|smallish|small-scale|undersize|undersized +(adj)|little |small|slight|less +(adj)|brief|little|short +(adj)|little|small|young |immature +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +(adj)|little|small|soft +(adj)|little |younger +(adj)|little|minuscule|small|lowercase +(adj)|little|emotional +littoral|2 +(adj)|seashore|coast|seacoast|sea-coast +(noun)|litoral|littoral zone|sands|seashore|coast|seacoast|sea-coast +littoral zone|1 +(noun)|littoral|litoral|sands|seashore|coast|seacoast|sea-coast +littorina|1 +(noun)|Littorina|genus Littorina|mollusk genus +littorinidae|1 +(noun)|Littorinidae|family Littorinidae|mollusk family +littre|1 +(noun)|Littre|Maximilien Paul Emile Littre|lexicographer|lexicologist +liturgical|1 +(adj)|rite|religious rite +liturgics|1 +(noun)|liturgiology|theology|divinity +liturgiology|1 +(noun)|liturgics|theology|divinity +liturgist|1 +(noun)|authority +liturgy|2 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +(noun)|rite|religious rite +liv|1 +(adj)|fifty-four|54|cardinal +livable|1 +(adj)|livable |liveable|habitable|inhabitable +live|16 +(adj)|live |unrecorded|unfilmed|untaped +(adj)|live |in play|living|smoldering|smouldering +(adj)|reverberant |ringing +(adj)|loaded +(adj)|bouncy|lively|resilient|springy|whippy|elastic +(adj)|lively +(adj)|current +(adj)|current +(adj)|hot|charged +(adj)|alive +(adj)|alive|active +(verb)|dwell|shack|reside|inhabit|people|populate|domicile|domiciliate|be|live in|live out +(verb)|survive|last|live on|go|endure|hold up|hold out +(verb)|exist|survive|subsist +(verb)|be +(verb)|know|experience|experience|undergo|see|go through +live-and-die|1 +(noun)|sensitive plant|touch-me-not|shame plant|humble plant|action plant|Mimosa pudica|mimosa +live-bearer|1 +(noun)|topminnow|poeciliid fish|poeciliid|cypriniform fish +live-forever|1 +(noun)|orpine|orpin|livelong|Sedum telephium|sedum +live axle|1 +(noun)|driving axle|axle +live birth|1 +(noun)|birth|nativity|nascency|nascence +live body|1 +(noun)|body|organic structure|physical structure +live down|1 +(verb)|unlive|live +live in|1 +(verb)|sleep in|board +live it up|1 +(verb)|delight|enjoy|revel +live load|1 +(noun)|superload|load|loading|burden +live oak|1 +(noun)|oak|oak tree +live on|1 +(verb)|survive|last|live|go|endure|hold up|hold out +live out|2 +(verb)|survive|last|live|live on|go|endure|hold up|hold out +(verb)|sleep out|commute|travel back and forth +live over|1 +(verb)|relive|know|experience|live +live steam|1 +(noun)|steam +live up to|1 +(verb)|satisfy|fulfill|fulfil|meet|fit|conform to +live wire|1 +(noun)|eager beaver|busy bee|sharpie|sharpy|actor|doer|worker +live with|1 +(verb)|accept|swallow|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +liveable|1 +(adj)|livable |habitable|inhabitable +liveborn|1 +(adj)|alive +liveborn infant|1 +(noun)|neonate|newborn|newborn infant|newborn baby +livedo|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +livelihood|1 +(noun)|support|keep|living|bread and butter|sustenance|resource +liveliness|2 +(noun)|animation|activity +(noun)|life|spirit|sprightliness|animation|spiritedness|invigoration|brio|vivification +livelong|2 +(adj)|whole +(noun)|orpine|orpin|live-forever|Sedum telephium|sedum +lively|7 +(adj)|lively |alive|bouncing|bouncy|peppy|spirited|zippy|breezy|bubbly|bubbling|effervescent|scintillating|sparkling|sparkly|burbling|burbly|effusive|gushing|live|warm|alert|animated|alive|energetic|rested|spirited +(adj)|racy|spirited +(adj)|brisk|merry|rattling|snappy|spanking|zippy|energetic +(adj)|bouncy|live|resilient|springy|whippy|elastic +(adj)|eventful +(adj)|full of life|vital|animated |alive +(adj)|active +liven|1 +(verb)|enliven|liven up|invigorate|animate|stimulate|arouse|brace|energize|energise|perk up +liven up|1 +(verb)|enliven|liven|invigorate|animate|stimulate|arouse|brace|energize|energise|perk up +liveness|1 +(noun)|animateness|aliveness|physiological property +liver|4 +(noun)|internal organ|viscus +(noun)|variety meat|organs +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|inhabitant|dweller|denizen|indweller +liver-spotted dalmatian|1 +(noun)|dalmatian|coach dog|carriage dog +liver cancer|1 +(noun)|cancer of the liver|liver disease|carcinoma +liver chestnut|1 +(noun)|horse|Equus caballus +liver disease|1 +(noun)|disease +liver fluke|1 +(noun)|Fasciola hepatica|fluke|trematode|trematode worm +liver pudding|1 +(noun)|liver sausage|liverwurst|sausage +liver rot|1 +(noun)|black disease|sheep rot|distomatosis|animal disease +liver sausage|1 +(noun)|liver pudding|liverwurst|sausage +liver spot|1 +(noun)|macule|macula +liveried|1 +(adj)|liveried +liverish|2 +(adj)|bilious|livery|ill |sick +(adj)|atrabilious|bilious|dyspeptic|ill-natured +liverleaf|1 +(noun)|hepatica|herb|herbaceous plant +livermore|1 +(noun)|Livermore|Mary Ashton Rice Livermore|suffragist +liverpool|1 +(noun)|Liverpool|city|metropolis|urban center|port +liverpudlian|2 +(adj)|Liverpudlian|city|metropolis|urban center|port +(noun)|Liverpudlian|English person +liverwort|1 +(noun)|bryophyte|nonvascular plant +liverwurst|1 +(noun)|liver pudding|liver sausage|sausage +livery|4 +(adj)|bilious|liverish|ill |sick +(noun)|uniform +(noun)|delivery|legal transfer|conveyance|conveyance of title|conveyancing|conveying +(noun)|care|attention|aid|tending +livery company|1 +(noun)|company +livery driver|1 +(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack driver|hack-driver|driver +livery stable|1 +(noun)|stable|stalls|horse barn +liveryman|1 +(noun)|employee +livestock|1 +(noun)|stock|farm animal|placental|placental mammal|eutherian|eutherian mammal +livid|4 +(adj)|ashen|blanched|bloodless|white|colorless |colourless +(adj)|light +(adj)|angry +(adj)|black-and-blue|injured +lividity|2 +(noun)|fury|rage|madness +(noun)|lividness|luridness|paleness|pallidness|pallor|wanness|achromasia|complexion|skin color|skin colour +lividness|1 +(noun)|lividity|luridness|paleness|pallidness|pallor|wanness|achromasia|complexion|skin color|skin colour +living|11 +(adj)|people +(adj)|realistic +(adj)|be +(adj)|absolute +(adj)|surviving|extant +(adj)|extant +(adj)|live +(noun)|life|experience +(noun)|people +(noun)|animation|life|aliveness|being|beingness|existence +(noun)|support|keep|livelihood|bread and butter|sustenance|resource +living-room|2 +(noun)|living room|sitting room|front room|parlor|parlour|room +(noun)| +living accommodations|1 +(noun)|housing|lodging|structure|construction +living arrangement|1 +(noun)|arrangement|organization|organisation|system +living death|1 +(noun)|misery|wretchedness +living granite|1 +(noun)|living rock|stone mimicry plant|succulent +living quarters|1 +(noun)|quarters|housing|lodging|living accommodations +living rock|2 +(noun)|Ariocarpus fissuratus|cactus +(noun)|living granite|stone mimicry plant|succulent +living room|2 +(noun)|living-room|sitting room|front room|parlor|parlour|room +(noun)| +living space|1 +(noun)|lebensraum|room|way|elbow room +living stone|2 +(noun)|lithops|stoneface|stone-face|stone plant|stone life face|flowering stone|succulent +(noun)|Livingstone|David Livingstone|missionary|explorer|adventurer +living substance|1 +(noun)|protoplasm|substance|matter +living thing|1 +(noun)|animate thing|object|physical object +living together|1 +(noun)|cohabitation|inhabitancy|inhabitation|habitation +living trust|1 +(noun)|inter vivos trust|trust +living wage|1 +(noun)|wage|pay|earnings|remuneration|salary +living will|1 +(noun)|legal document|legal instrument|official document|instrument +livingroom set|1 +(noun)|livingroom suite|suite +livingroom suite|1 +(noun)|livingroom set|suite +livingston|1 +(noun)|Livingston|Robert R. Livingston|American Revolutionary leader +livingstone|1 +(noun)|Livingstone|David Livingstone|missionary|explorer|adventurer +livingstone daisy|1 +(noun)|Dorotheanthus bellidiformis|succulent +livistona|1 +(noun)|Livistona|genus Livistona|plant genus +livistona australis|1 +(noun)|cabbage palm|cabbage tree|Livistona australis|palm|palm tree +livonia|1 +(noun)|Livonia|geographical area|geographic area|geographical region|geographic region +livonian|2 +(noun)|Livonian|Latvian +(noun)|Livonian|Baltic-Finnic +livonian-speaking|1 +(adj)|Livonian-speaking|communicative |communicatory +livy|1 +(noun)|Livy|Titus Livius|historian|historiographer +liza|1 +(noun)|Mugil liza|mullet|gray mullet +lizard|2 +(noun)|saurian +(noun)|lounge lizard|gigolo +lizard's-tail|1 +(noun)|swamp lily|water dragon|Saururus cernuus|marsh plant|bog plant|swamp plant +lizard's-tail family|1 +(noun)|Saururaceae|family Saururaceae|dicot family|magnoliopsid family +lizard orchid|1 +(noun)|Himantoglossum hircinum|orchid|orchidaceous plant +lizardfish|1 +(noun)|snakefish|snake-fish|soft-finned fish|malacopterygian +ljubljana|1 +(noun)|Ljubljana|national capital +llama|1 +(noun)|even-toed ungulate|artiodactyl|artiodactyl mammal +llano|1 +(noun)|plain|field|champaign +llano estacado|1 +(noun)|Llano Estacado|tableland|plateau +llb|1 +(noun)|Bachelor of Laws|LLB|law degree +lld|1 +(noun)|Doctor of Laws|LLD|honorary degree +llew llaw gyffes|1 +(noun)|Llew Llaw Gyffes|Celtic deity +llm|1 +(noun)|Master of Laws|LLM|law degree +lloyd|1 +(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor|histrion|player|thespian|role player +lloyd webber|1 +(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer +llud|1 +(noun)|LLud|Celtic deity +llullaillaco|1 +(noun)|Llullaillaco|mountain peak +llyr|1 +(noun)|Llyr|Celtic deity +lm|1 +(noun)|lumen|luminous flux unit +lo/ovral|1 +(noun)|Lo/Ovral|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +loach|1 +(noun)|cypriniform fish +load|12 +(noun)|loading|burden|weight +(noun)|loading|indefinite quantity +(noun)|cargo|lading|freight|loading|payload|shipment|consignment|merchandise|wares|product +(noun)|indefinite quantity +(noun)|electrical power|electric power|wattage +(noun)|burden|encumbrance|incumbrance|onus|concern|worry|headache|vexation +(noun)|lode|deposit|sedimentation|alluviation +(noun)|warhead|payload|explosive +(noun)|electrical device +(verb)|lade|laden|load up|fill|fill up|make full +(verb)|charge|fill|fill up|make full +(verb)|put|set|place|pose|position|lay +load-bearing|1 +(adj)|supporting|bearing +load-shedding|1 +(noun)|limitation|restriction +load down|1 +(verb)|pack|load|lade|laden|load up +load factor|1 +(noun)|ratio +load line|1 +(noun)|Plimsoll line|Plimsoll mark|Plimsoll|waterline|water line|water level +load up|1 +(verb)|load|lade|laden|fill|fill up|make full +loaded|5 +(adj)|laden|ladened|full +(adj)|loaded |live|undischarged|unexploded +(adj)|prejudiced |discriminatory +(adj)|affluent|flush|moneyed|wealthy|rich +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +loaded down|2 +(adj)|bowed down|overburdened|weighed down|burdened +(adj)|burdened|heavy-laden|encumbered +loader|2 +(noun)|stevedore|longshoreman|docker|dockhand|dock worker|dock-walloper|lumper|laborer|manual laborer|labourer|jack +(noun)|attendant|attender|tender +loading|6 +(adj)|loading +(noun)|load|burden|weight +(noun)|load|indefinite quantity +(noun)|ratio +(noun)|cargo|lading|freight|load|payload|shipment|consignment|merchandise|wares|product +(noun)|handling +loading area|1 +(noun)|loading zone|stop +loading dock|1 +(noun)|dock|platform +loading zone|1 +(noun)|loading area|stop +loads|10 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|load|loading|burden|weight +(noun)|load|loading|indefinite quantity +(noun)|cargo|lading|freight|load|loading|payload|shipment|consignment|merchandise|wares|product +(noun)|load|indefinite quantity +(noun)|load|electrical power|electric power|wattage +(noun)|burden|load|encumbrance|incumbrance|onus|concern|worry|headache|vexation +(noun)|lode|load|deposit|sedimentation|alluviation +(noun)|warhead|payload|load|explosive +(noun)|load|electrical device +loadstar|2 +(noun)|lodestar|star +(noun)|lodestar|model|example +loadstone|1 +(noun)|lodestone|permanent magnet|static magnet +loaf|3 +(noun)|loaf of bread|bread|breadstuff|staff of life +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|frig around|waste one's time|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +(verb)|loiter|lounge|footle|lollygag|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +loaf of bread|1 +(noun)|loaf|bread|breadstuff|staff of life +loaf sugar|1 +(noun)|sugarloaf|sugar loaf|sugar|refined sugar +loafer|2 +(noun)|idler|do-nothing|layabout|bum|nonworker +(noun)|Loafer|shoe +loafing|1 +(noun)|idleness|idling|inactivity +loam|1 +(noun)|soil|dirt +loamless|1 +(adj)|loamless +loamy|1 +(adj)|loamy +loan|3 +(noun)|debt +(noun)|loanword|word +(verb)|lend|give +loan-blend|2 +(noun)|loanblend|hybrid|word +(noun)| +loan application|1 +(noun)|application +loan approval|1 +(noun)|authorization|authorisation|empowerment +loan collection|1 +(noun)|art collection +loan office|2 +(noun)|pawnbroker's shop|pawnshop|shop|store +(noun)|office|business office +loan participation|1 +(noun)|participation loan|participation financing|loan +loan shark|1 +(noun)|usurer|moneylender|shylock|lender|loaner|shark +loan translation|1 +(noun)|calque|saying|expression|locution +loanblend|1 +(noun)|loan-blend|hybrid|word +loaner|2 +(noun)|lender|investor +(noun)|car|auto|automobile|machine|motorcar +loaning|1 +(noun)|lending|disposal|disposition +loanword|1 +(noun)|loan|word +loasa|1 +(noun)|herb|herbaceous plant +loasa family|1 +(noun)|Loasaceae|family Loasaceae|dilleniid dicot family +loasaceae|1 +(noun)|Loasaceae|family Loasaceae|loasa family|dilleniid dicot family +loath|2 +(adj)|loth|reluctant|unwilling +(adj)|antipathetic|antipathetical|averse|indisposed|loth|disinclined +loathe|1 +(verb)|abhor|abominate|execrate|hate|detest +loather|1 +(noun)|abominator|hater +loathing|1 +(noun)|abhorrence|abomination|detestation|execration|odium|hate|hatred|disgust +loathly|1 +(adj)|disgusting|disgustful|distasteful|foul|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +loathsome|2 +(adj)|nauseating|nauseous|noisome|offensive|sickening|vile|unwholesome +(adj)|disgusting|disgustful|distasteful|foul|loathly|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive +loathsomeness|1 +(noun)|repulsiveness|sliminess|vileness|offensiveness|odiousness|distastefulness +lob|3 +(noun)|return +(noun)|propulsion|actuation +(verb)|throw +lobachevsky|1 +(noun)|Lobachevsky|Nikolai Ivanovich Lobachevsky|mathematician +lobar|1 +(adj)|body part +lobar pneumonia|1 +(noun)|pneumonia +lobata|1 +(noun)|Lobata|order Lobata|animal order +lobate|2 +(adj)|lobated|body part +(adj)|lobed|compound +lobate foot|1 +(noun)|bird's foot +lobated|1 +(adj)|lobate|body part +lobby|3 +(noun)|anteroom|antechamber|entrance hall|hall|foyer|vestibule|room +(noun)|pressure group|third house|political unit +(verb)|buttonhole|solicit|beg|tap +lobbying expense|1 +(noun)|expense|disbursal|disbursement +lobbyist|1 +(noun)|persuader|inducer +lobe|4 +(noun)|body part +(noun)|plant part|plant structure +(noun)|loop +(noun)|projection +lobe-finned fish|1 +(noun)|crossopterygian|lobefin|bony fish +lobe of the lung|1 +(noun)|lobe +lobectomy|1 +(noun)|ablation|extirpation|cutting out|excision +lobed|1 +(adj)|lobate|compound +lobed leaf|1 +(noun)|leaf|leafage|foliage +lobed spleenwort|1 +(noun)|Asplenium pinnatifidum|spleenwort +lobefin|1 +(noun)|crossopterygian|lobe-finned fish|bony fish +lobelia|1 +(noun)|herb|herbaceous plant +lobelia cardinalis|1 +(noun)|cardinal flower|Indian pink|Lobelia cardinalis|lobelia +lobelia dortmanna|1 +(noun)|water lobelia|Lobelia dortmanna|lobelia +lobelia family|1 +(noun)|Lobeliaceae|family Lobeliaceae|dicot family|magnoliopsid family +lobelia inflata|1 +(noun)|Indian tobacco|bladderpod|Lobelia inflata|lobelia +lobelia siphilitica|1 +(noun)|great lobelia|blue cardinal flower|Lobelia siphilitica|lobelia +lobeliaceae|1 +(noun)|Lobeliaceae|family Lobeliaceae|lobelia family|dicot family|magnoliopsid family +lobeliaceous|1 +(adj)|dicot family|magnoliopsid family +lobipes|1 +(noun)|Lobipes|genus Lobipes|bird genus +lobipes lobatus|1 +(noun)|northern phalarope|Lobipes lobatus|phalarope +loblolly|1 +(noun)|gruel +loblolly pine|1 +(noun)|frankincense pine|Pinus taeda|pine|pine tree|true pine +lobotes|1 +(noun)|Lobotes|genus Lobotes|fish genus +lobotes pacificus|1 +(noun)|Pacific tripletail|Lobotes pacificus|tripletail +lobotes surinamensis|1 +(noun)|Atlantic tripletail|Lobotes surinamensis|tripletail +lobotidae|1 +(noun)|Lobotidae|family Lobotidae|fish family +lobotomy|1 +(noun)|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery +lobscouse|1 +(noun)|lobscuse|scouse|stew +lobscuse|1 +(noun)|lobscouse|scouse|stew +lobster|2 +(noun)|shellfish +(noun)|decapod crustacean|decapod +lobster-backed|1 +(adj)|red-coated|clothed |clad +lobster a la newburg|1 +(noun)|lobster Newburg|lobster a la Newburg|seafood Newburg +lobster butter|1 +(noun)|spread|paste +lobster newburg|1 +(noun)|lobster Newburg|lobster a la Newburg|seafood Newburg +lobster plant|1 +(noun)|poinsettia|Christmas star|Christmas flower|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +lobster pot|1 +(noun)|trap +lobster stew|1 +(noun)|stew +lobster tail|1 +(noun)|lobster +lobster tart|1 +(noun)|tart +lobster thermidor|1 +(noun)|dish +lobsterback|1 +(noun)|redcoat|soldier +lobsterman|1 +(noun)|skilled worker|trained worker +lobular|1 +(adj)|lobe +lobularia|1 +(noun)|Lobularia|genus Lobularia|dilleniid dicot genus +lobularia maritima|1 +(noun)|sweet alyssum|sweet alison|Lobularia maritima|flower +lobularity|1 +(noun)|shape|form|configuration|contour|conformation +lobule|1 +(noun)|lobe +lobworm|1 +(noun)|lugworm|lug|polychaete|polychete|polychaete worm|polychete worm +local|5 +(adj)|local +(adj)|section +(adj)|local |localized|localised|topical +(noun)|public transport +(noun)|local anesthetic|local anaesthetic|topical anesthetic|topical anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +local anaesthesia|1 +(noun)|local anesthesia|anesthesia|anaesthesia +local anaesthetic|1 +(noun)|local anesthetic|local|topical anesthetic|topical anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +local anesthesia|1 +(noun)|local anaesthesia|anesthesia|anaesthesia +local anesthetic|1 +(noun)|local anaesthetic|local|topical anesthetic|topical anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +local area network|1 +(noun)|LAN|computer network +local authority|1 +(noun)|agency|federal agency|government agency|bureau|office|authority +local call|1 +(noun)|call|phone call|telephone call +local department|1 +(noun)|department of local government|government department +local government|1 +(noun)|government|authorities|regime +local option|1 +(noun)|self-government|self-determination|self-rule +local oscillator|1 +(noun)|heterodyne oscillator|oscillator +local post office|1 +(noun)|post office|branch|subdivision|arm +local road|1 +(noun)|local street|street +local street|1 +(noun)|local road|street +local time|1 +(noun)|civil time|standard time|time +locale|1 +(noun)|venue|locus|scene +localisation|2 +(noun)|localization of function|localisation of function|localization principle|localisation principle|localization|principle|rule +(noun)|localization|location|locating|fix|determination|finding +localisation of function|1 +(noun)|localization of function|localization principle|localisation principle|localization|localisation|principle|rule +localisation principle|1 +(noun)|localization of function|localisation of function|localization principle|localization|localisation|principle|rule +localise|4 +(verb)|place|localize|situate|locate +(verb)|localize|focalize|focalise|lie +(verb)|localize|restrict +(verb)|set|localize|place|stage|present|represent +localised|2 +(adj)|localized|local +(adj)|localized|decentralized |decentralised +localism|2 +(noun)|non-standard speech +(noun)|sectionalism|provincialism|partiality|partisanship +locality|1 +(noun)|vicinity|neighborhood|neighbourhood|neck of the woods|section +localization|2 +(noun)|localisation|location|locating|fix|determination|finding +(noun)|localization of function|localisation of function|localization principle|localisation principle|localisation|principle|rule +localization of function|1 +(noun)|localisation of function|localization principle|localisation principle|localization|localisation|principle|rule +localization principle|1 +(noun)|localization of function|localisation of function|localisation principle|localization|localisation|principle|rule +localize|4 +(verb)|place|localise|situate|locate +(verb)|localise|focalize|focalise|lie +(verb)|localise|restrict +(verb)|set|localise|place|stage|present|represent +localized|2 +(adj)|localised|local +(adj)|localised|decentralized |decentralised +locally|1 +(adv)|topically +locate|4 +(verb)|turn up|find|regain +(verb)|situate|determine|find|find out|ascertain +(verb)|place|site|station|post|base|send|place +(verb)|settle +located|1 +(adj)|placed|set|situated|settled +locater|1 +(noun)|locator|surveyor +locating|2 +(noun)|placement|location|position|positioning|emplacement|activity +(noun)|localization|localisation|location|fix|determination|finding +location|3 +(noun)|entity +(noun)|placement|locating|position|positioning|emplacement|activity +(noun)|localization|localisation|locating|fix|determination|finding +locative|1 +(noun)|locative role|semantic role|participant role +locative role|1 +(noun)|locative|semantic role|participant role +locator|1 +(noun)|locater|surveyor +loch|2 +(noun)|inlet|recess +(noun)|lake +loch achray|1 +(noun)|Loch Achray|loch +loch linnhe|1 +(noun)|Loch Linnhe|loch +loch ness|1 +(noun)|Loch Ness|loch +loch ness monster|1 +(noun)|Loch Ness monster|Nessie|legendary creature +lochaber ax|1 +(noun)|Lochaber ax|battle-ax|battle-axe +lochia|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +lock|15 +(noun)|fastener|fastening|holdfast|fixing +(noun)|curl|ringlet|whorl|hair +(noun)|mechanism +(noun)|lock chamber|enclosure +(noun)|ignition lock|restraint|constraint +(noun)|wrestling hold +(verb)|fasten|fix|secure|lock up|lock up +(verb)|engage|mesh|operate|move|displace +(verb)|engage +(verb)|interlock|interlace|hold|take hold +(verb)|interlock|embrace|hug|bosom|squeeze +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +(verb)|lock in|lock away|put away|shut up|shut away|lock up|confine +(verb)|pass|go through|go across +(verb)|construct|build|make +lock-gate|1 +(noun)|gate +lock-up option|1 +(noun)|option +lock away|1 +(verb)|lock in|lock|put away|shut up|shut away|lock up|confine +lock chamber|1 +(noun)|lock|enclosure +lock in|2 +(verb)|seal in|confine +(verb)|lock away|lock|put away|shut up|shut away|lock up|confine +lock out|1 +(verb)|exclude|keep out|shut out|shut +lock ring|2 +(noun)|lockring|lock washer|washer +(noun)| +lock up|2 +(verb)|fasten|fix|secure +(verb)|lock in|lock away|lock|put away|shut up|shut away|confine +lock washer|1 +(noun)|lockring|lock ring|washer +lockage|3 +(noun)|fee +(noun)|system +(noun)|passage|transit +lockbox|1 +(noun)|safe-deposit|safe-deposit box|safety-deposit|safety deposit box|deposit box|strongbox|deedbox +lockdown|1 +(noun)|imprisonment|internment +locke|1 +(noun)|Locke|John Locke|philosopher +locked|1 +(adj)|barred|bolted|fast|latched|secured|fastened +locker|3 +(noun)|cabinet|storage locker|compartment +(noun)|fastener|fastening|holdfast|fixing +(noun)|footlocker|trunk +locker-room|1 +(adj)|room +locker room|1 +(noun)|room +locket|1 +(noun)|case +locking|1 +(noun)|lockup|protection +locking pliers|1 +(noun)|pliers|pair of pliers|plyers +lockjaw|1 +(noun)|tetanus|infection +lockkeeper|1 +(noun)|lockmaster|lockman|skilled worker|trained worker +lockman|1 +(noun)|lockmaster|lockkeeper|skilled worker|trained worker +lockmaster|1 +(noun)|lockman|lockkeeper|skilled worker|trained worker +locknut|1 +(noun)|safety nut|nut +lockout|1 +(noun)|resistance|opposition +lockring|1 +(noun)|lock ring|lock washer|washer +locksmith|1 +(noun)|smith +lockstep|2 +(noun)|standing operating procedure|standard operating procedure|SOP|standard procedure +(noun)|march|marching +lockstitch|1 +(noun)|machine stitch|sewing-machine stitch +lockup|2 +(noun)|jail|jailhouse|gaol|clink|slammer +(noun)|locking|protection +loco|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +loco disease|1 +(noun)|locoism|animal disease +locoism|1 +(noun)|loco disease|animal disease +locomote|1 +(verb)|travel|go|move +locomotion|2 +(noun)|motive power|motivity|mobility +(noun)|travel|motion|movement|move +locomotive|2 +(adj)|locomotor|motion|movement|move +(noun)|engine|locomotive engine|railway locomotive|self-propelled vehicle +locomotive engine|1 +(noun)|locomotive|engine|railway locomotive|self-propelled vehicle +locomotive engineer|1 +(noun)|engineer|railroad engineer|engine driver|operator|manipulator +locomotor|1 +(adj)|locomotive|motion|movement|move +locomotor ataxia|1 +(noun)|tabes dorsalis|neurosyphilis +locoweed|2 +(noun)|crazyweed|crazy weed|legume|leguminous plant +(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|Mary Jane|cannabis|marijuana|marihuana|ganja +locule|1 +(noun)|loculus|cavity|bodily cavity|cavum +loculus|1 +(noun)|locule|cavity|bodily cavity|cavum +locum|1 +(noun)|locum tenens|stand-in|substitute|relief|reliever|backup|backup man|fill-in +locum tenens|1 +(noun)|locum|stand-in|substitute|relief|reliever|backup|backup man|fill-in +locus|3 +(noun)|venue|locale|scene +(noun)|site|situation +(noun)|set +locus classicus|1 +(noun)|passage +locus niger|1 +(noun)|substantia nigra|nucleus niger|neural structure +locus of infection|1 +(noun)|site|situation +locust|3 +(noun)|short-horned grasshopper|acridid +(noun)|wood +(noun)|locust tree|tree +locust bean|1 +(noun)|carob|carob bean|algarroba bean|algarroba|locust pod|bean|bean plant +locust pod|1 +(noun)|carob|carob bean|algarroba bean|algarroba|locust bean|bean|bean plant +locust tree|1 +(noun)|locust|tree +locusta|1 +(noun)|Locusta|genus Locusta|arthropod genus +locusta migratoria|1 +(noun)|migratory locust|Locusta migratoria|locust +locustidae|1 +(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family +locution|1 +(noun)|saying|expression|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +loddon pondweed|1 +(noun)|Potamogeton nodosus|Potamogeton americanus|pondweed +lode|1 +(noun)|load|deposit|sedimentation|alluviation +lodestar|2 +(noun)|loadstar|star +(noun)|loadstar|model|example +lodestone|1 +(noun)|loadstone|permanent magnet|static magnet +lodge|10 +(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist +(noun)|club|society|guild|gild|order|association +(noun)|gatehouse +(noun)|hunting lodge|house +(noun)|indian lodge|dwelling|home|domicile|abode|habitation|dwelling house +(noun)|hostel|hostelry|inn|hotel +(verb)|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|wedge|stick|deposit|fasten|fix|secure +(verb)|charge|file|accuse|impeach|incriminate|criminate +(verb)|accommodate|house|put up|domiciliate|lodge in +lodge in|1 +(verb)|occupy|reside|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +lodgement|2 +(noun)|lodgment|allegation +(noun)|lodgment|lodging|fastness|fixedness|fixity|fixture|secureness +lodgepole|1 +(noun)|shore pine|lodgepole pine|spruce pine|Pinus contorta|pine|pine tree|true pine +lodgepole pine|1 +(noun)|shore pine|lodgepole|spruce pine|Pinus contorta|pine|pine tree|true pine +lodger|1 +(noun)|boarder|roomer|tenant|renter +lodging|3 +(noun)|housing|living accommodations|structure|construction +(noun)|lodgment|lodgement|fastness|fixedness|fixity|fixture|secureness +(noun)|residency|residence|abidance +lodging house|1 +(noun)|rooming house|house|accommodation +lodgings|4 +(noun)|diggings|digs|domiciliation|pad|living quarters|quarters +(noun)|housing|lodging|living accommodations|structure|construction +(noun)|lodgment|lodgement|lodging|fastness|fixedness|fixity|fixture|secureness +(noun)|lodging|residency|residence|abidance +lodgment|2 +(noun)|lodgement|allegation +(noun)|lodgement|lodging|fastness|fixedness|fixity|fixture|secureness +lodine|1 +(noun)|etodolac|Lodine|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +lodz|1 +(noun)|Lodz|city|metropolis|urban center +loeb|1 +(noun)|Loeb|Jacques Loeb|physiologist +loess|1 +(noun)|soil|dirt +loestrin|1 +(noun)|Loestrin|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +loewe|1 +(noun)|Loewe|Frederick Loewe|composer +loewi|1 +(noun)|Loewi|Otto Loewi|pharmacologist|pharmaceutical chemist +lofortyx|1 +(noun)|Lofortyx|genus Lofortyx|bird genus +lofortyx californicus|1 +(noun)|California quail|Lofortyx californicus|quail +lofoten|1 +(noun)|Lofoten|archipelago +loft|7 +(noun)|floor|level|storey|story +(noun)|attic|garret|floor|level|storey|story +(noun)|pigeon loft|shelter +(verb)|store +(verb)|propel|impel +(verb)|hit +(verb)|lay out +loft bombing|1 +(noun)|toss bombing|bombing run +loftiness|2 +(noun)|highness|height|tallness +(noun)|stateliness|majesty|impressiveness|grandness|magnificence +lofty|3 +(adj)|exalted|high-flown|high-minded|rarefied|rarified|idealistic|noble-minded|noble +(adj)|eminent|soaring|towering|high +(adj)|gallant|majestic|proud|impressive +log|8 +(noun)|wood +(noun)|backlog|firewood +(noun)|logarithm|exponent|power|index +(noun)|written record|written account +(noun)|written record|written account +(noun)|measuring instrument|measuring system|measuring device +(verb)|record|enter|put down|log up +(verb)|lumber|fell|drop|strike down|cut down +log-in|2 +(verb)|log in|log on|access +(verb)| +log cabin|1 +(noun)|cabin +log in|2 +(verb)|log on|log-in|access +(verb)| +log line|1 +(noun)|cord +log off|1 +(verb)|log out|exit|go out|get out|leave +log on|1 +(verb)|log in|log-in|access +log out|1 +(verb)|log off|exit|go out|get out|leave +log up|1 +(verb)|clock up|record|enter|put down +log z's|1 +(verb)|sleep|kip|slumber|log Z's|catch some Z's|rest +logagraphia|1 +(noun)|agraphia|anorthography|brain disorder|encephalopathy|brain disease +logan|1 +(noun)|Logan|Mount Logan|mountain peak +loganberry|2 +(noun)|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry|western dewberry|Rubus ursinus +(noun)|berry +logania|1 +(noun)|Logania|genus Logania|dicot genus|magnoliopsid genus +loganiaceae|1 +(noun)|Loganiaceae|family Loganiaceae|dicot family|magnoliopsid family +logarithm|1 +(noun)|log|exponent|power|index +logarithmic|1 +(adj)|exponent|power|index +logarithmic scale|1 +(noun)|scale|scale of measurement|graduated table|ordered series +logbook|1 +(noun)|record|record book|book +loge|2 +(noun)|balcony +(noun)|box|compartment +logger|1 +(noun)|lumberman|lumberjack|feller|faller +loggerhead|2 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|muttonhead|shithead|fuckhead|simpleton|simple +(noun)|loggerhead turtle|Caretta caretta|sea turtle|marine turtle +loggerhead shrike|1 +(noun)|Lanius lucovicianus|shrike +loggerhead turtle|1 +(noun)|loggerhead|Caretta caretta|sea turtle|marine turtle +loggerheaded|1 +(adj)|blockheaded|boneheaded|fatheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid +loggia|1 +(noun)|arcade|colonnade +logginess|1 +(noun)|loginess|fatigue|weariness|tiredness +logging|1 +(noun)|work +logic|4 +(noun)|philosophy +(noun)|common sense|good sense|gumption|horse sense|sense|mother wit +(noun)|principle +(noun)|logical system|system of logic|system|system of rules +logic bomb|1 +(noun)|slag code|malevolent program +logic diagram|1 +(noun)|logical diagram|multidimensional language +logic element|1 +(noun)|electronic device +logic gate|1 +(noun)|gate|computer circuit +logic operation|1 +(noun)|logical operation|operation +logic programing|1 +(noun)|Prolog|logic programming|programming language|programing language +logic programming|2 +(noun)|Prolog|logic programing|programming language|programing language +(noun)|programming|programing|computer programming|computer programing +logical|5 +(adj)|logical |dianoetic|discursive|formal|ratiocinative|analytic|analytical|coherent|synthetic|synthetical|rational|reasonable|sensible +(adj)|legitimate|valid +(adj)|consistent|ordered|orderly|coherent +(adj)|reasonable |sensible +(adj)|coherent|lucid|rational +logical argument|1 +(noun)|argumentation|line of reasoning|line|reasoning|logical thinking|abstract thought +logical diagram|1 +(noun)|logic diagram|multidimensional language +logical fallacy|1 +(noun)|fallacy|false belief +logical implication|1 +(noun)|implication|conditional relation|logical relation +logical operation|1 +(noun)|logic operation|operation +logical positivism|1 +(noun)|positivism|empiricism|empiricist philosophy|sensationalism +logical positivist|1 +(noun)|positivist|rationalist +logical proof|1 +(noun)|proof +logical quantifier|1 +(noun)|quantifier|word +logical relation|1 +(noun)|relation +logical system|1 +(noun)|logic|system of logic|system|system of rules +logical thinking|1 +(noun)|reasoning|abstract thought|thinking|thought|cerebration|intellection|mentation +logical topology|1 +(noun)|topology|network topology +logicality|1 +(noun)|logicalness|quality +logicalness|1 +(noun)|logicality|quality +logician|1 +(noun)|logistician|expert +logicism|1 +(noun)|philosophical doctrine|philosophical theory +loginess|1 +(noun)|logginess|fatigue|weariness|tiredness +logion|1 +(noun)|saying|expression|locution +logistic|1 +(adj)|logistical|provision|supply|supplying +logistic assessment|1 +(noun)|judgment|judgement|assessment +logistic assistance|1 +(noun)|logistic support|support +logistic support|1 +(noun)|logistic assistance|support +logistical|1 +(adj)|logistic|provision|supply|supplying +logistician|1 +(noun)|logician|expert +logistics|1 +(noun)|provision|supply|supplying +logjam|2 +(noun)|arrest|check|halt|hitch|stay|stop|stoppage +(noun)|mass +logo|1 +(noun)|logotype|trademark +logogram|1 +(noun)|logograph|ideogram|ideograph +logogrammatic|1 +(adj)|logographic|ideogram|ideograph +logograph|1 +(noun)|logogram|ideogram|ideograph +logographic|1 +(adj)|logogrammatic|ideogram|ideograph +logomach|1 +(noun)|logomachist|disputant|controversialist|eristic +logomachist|1 +(noun)|logomach|disputant|controversialist|eristic +logomania|1 +(noun)|logorrhea|mania|passion|cacoethes +logorrhea|1 +(noun)|logomania|mania|passion|cacoethes +logos|2 +(noun)|Son|Word|Logos|hypostasis +(noun)|logo|logotype|trademark +logotype|1 +(noun)|logo|trademark +logroll|1 +(verb)|politick +logrolling|2 +(noun)|exchange +(noun)|birling|spin|twirl|twist|twisting|whirl +logwood|2 +(noun)|wood +(noun)|logwood tree|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood|blackwood tree +logwood tree|1 +(noun)|logwood|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood|blackwood tree +logy|1 +(adj)|dazed|foggy|groggy|stuporous|lethargic |unergetic +lohan|1 +(noun)|Arhat|Arhant|deity|divinity|god|immortal +loin|2 +(noun)|cut|cut of meat +(noun)|lumbus|body part +loin of lamb|1 +(noun)|cut of lamb +loincloth|1 +(noun)|breechcloth|breechclout|G-string|garment +loins|4 +(noun)|pubes|pubic region|area|region +(noun)|body part +(noun)|loin|cut|cut of meat +(noun)|loin|lumbus|body part +loir|1 +(noun)|Glis glis|dormouse +loire|1 +(noun)|Loire|Loire River|river +loire river|1 +(noun)|Loire|Loire River|river +loire vally|1 +(noun)|Loire Vally|valley|vale +loiseleuria|1 +(noun)|Loiseleuria|genus Loiseleuria|dilleniid dicot genus +loiseleuria procumbens|1 +(noun)|alpine azalea|mountain azalea|Loiseleuria procumbens|shrub|bush +loiter|1 +(verb)|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +loiterer|1 +(noun)|lingerer|dawdler|drone|laggard|lagger|trailer +loki|1 +(noun)|Loki|Norse deity +lola montez|1 +(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer|professional dancer +loligo|1 +(noun)|squid +lolita|1 +(noun)|Lolita|lass|lassie|young girl|jeune fille +lolium|1 +(noun)|Lolium|genus Lolium|monocot genus|liliopsid genus +lolium multiflorum|1 +(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass|ryegrass +lolium perenne|1 +(noun)|perennial ryegrass|English ryegrass|Lolium perenne|rye grass|ryegrass +lolium temulentum|1 +(noun)|darnel|tare|bearded darnel|cheat|Lolium temulentum|rye grass|ryegrass +loll|2 +(verb)|droop|dangle|swing|drop +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll around|lounge about|idle|laze|slug|stagnate +loll around|1 +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|lounge about|idle|laze|slug|stagnate +lolling|1 +(adj)|lounging|unerect +lollipop|2 +(noun)|ice lolly|lolly|popsicle|frozen dessert +(noun)|sucker|all-day sucker|candy +lollipop lady|1 +(noun)|lollipop woman|crossing guard +lollipop woman|1 +(noun)|lollipop lady|crossing guard +lollop|1 +(verb)|walk +lolly|2 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|ice lolly|lollipop|popsicle|frozen dessert +lollygag|1 +(verb)|loiter|lounge|footle|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +lolo|1 +(noun)|Lolo|Yi|Loloish +lolo-burmese|1 +(noun)|Lolo-Burmese|Burmese-Yi|Tibeto-Burman|Tibeto-Burman language +loloish|1 +(noun)|Loloish|Lolo-Burmese|Burmese-Yi +lomariopsidaceae|1 +(noun)|Lomariopsidaceae|family Lomariopsidaceae|fern family +lomatia|1 +(noun)|shrub|bush|genus Lomatia +lombard|1 +(noun)|Lombard|Langobard|European +lombard street|1 +(noun)|Lombard Street|street +lombardia|1 +(noun)|Lombardy|Lombardia|Italian region +lombardy|1 +(noun)|Lombardy|Lombardia|Italian region +lombardy poplar|1 +(noun)|Lombardy poplar|Populus nigra italica|black poplar|Populus nigra +lome|1 +(noun)|Lome|capital of Togo|national capital +loment|1 +(noun)|pod|seedpod +lomogramma|1 +(noun)|Lomogramma|genus Lomogramma|fern genus +lomotil|1 +(noun)|Lomotil|antidiarrheal|antidiarrheal drug +lomustine|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +lonas|1 +(noun)|Lonas|genus Lonas|asterid dicot genus +lonas annua|1 +(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower +lonas inodora|1 +(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower +lonchocarpus|1 +(noun)|Lonchocarpus|genus Lonchocarpus|rosid dicot genus +london|2 +(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital +(noun)|London|Jack London|John Griffith Chaney|writer|author +london plane|1 +(noun)|London plane|Platanus acerifolia|plane tree|sycamore|platan +londoner|1 +(noun)|Londoner|English person +lone|3 +(adj)|alone|lonely|solitary|unaccompanied +(adj)|eremitic|eremitical|solitary|unsocial +(adj)|lonesome|only|sole|solitary|single +lone-star state|1 +(noun)|Texas|Lone-Star State|TX|American state +lone hand|1 +(noun)|loner|lone wolf|individualist +lone wolf|1 +(noun)|loner|lone hand|individualist +loneliness|3 +(noun)|solitariness|isolation +(noun)|forlornness|desolation|sadness|unhappiness +(noun)|aloneness|lonesomeness|solitude|disposition|temperament +lonely|4 +(adj)|alone|lone|solitary|unaccompanied +(adj)|lonesome|dejected +(adj)|solitary|unfrequented|inaccessible |unaccessible +(adj)|solitary|unsocial +loner|1 +(noun)|lone wolf|lone hand|individualist +lonesome|2 +(adj)|lone|only|sole|solitary|single +(adj)|lonely|dejected +lonesomeness|1 +(noun)|aloneness|loneliness|solitude|disposition|temperament +long|12 +(adj)|long |agelong|bimestrial|daylong|drawn-out|extended|lengthy|prolonged|protracted|durable|lasting|long-lasting|long-lived|endless|eternal|interminable|hourlong|lifelong|womb-to-tomb|long-acting|long-dated|longish|long-life|longitudinal|long-range|long-run|long-term|semipermanent|longstanding|monthlong|nightlong|overnight|perennial|time-consuming|weeklong|yearlong +(adj)|long |elongate|elongated|elongated|extended|lengthened|prolonged|extendible|extendable|far|in length|lank|long-distance|longer|longest|long-handled|long-range|long-snouted|long-staple|oblong|polysyllabic|sesquipedalian|stretch|long-wool|long-wooled +(adj)|tall +(adj)|long +(adj)|long +(adj)|stressed +(adj)|unsound +(adj)|tenacious|retentive +(adj)|farseeing|farsighted|foresighted|foresightful|longsighted|provident +(adj)|abundant +(noun)|long time|age|years +(verb)|hanker|yearn|desire|want +long-acting|1 +(adj)|long +long-ago|1 +(adj)|old +long-beard|2 +(noun)|bellarmine|longbeard|graybeard|jug +(noun)| +long-billed marsh wren|1 +(noun)|Cistothorus palustris|marsh wren +long-clawed prawn|1 +(noun)|river prawn|Palaemon australis|prawn +long-dated|1 +(adj)|long +long-distance|2 +(adj)|long +(noun)|long-distance call|trunk call|call|phone call|telephone call +long-distance call|1 +(noun)|long-distance|trunk call|call|phone call|telephone call +long-distance runner|1 +(noun)|marathoner|marathon runner|road runner|runner +long-eared bat|1 +(noun)|vespertilian bat|vespertilionid +long-eared owl|1 +(noun)|Asio otus|owl|bird of Minerva|bird of night|hooter +long-faced|2 +(adj)|glum|gloomy|dejected +(adj)|faced +long-familiar|1 +(adj)|well-known|familiar +long-fin tunny|1 +(noun)|albacore|Thunnus alalunga|tuna|tunny +long-haired|1 +(adj)|hairy |hirsute +long-handled|1 +(adj)|long +long-handled spade|1 +(noun)|ditch spade|spade +long-head coneflower|1 +(noun)|prairie coneflower|Ratibida columnifera|wildflower|wild flower +long-headed|1 +(adj)|dolichocephalic |dolichocranial|dolichocranic +long-horned beetle|1 +(noun)|longicorn|longicorn beetle|beetle +long-horned grasshopper|1 +(noun)|tettigoniid|grasshopper|hopper +long-lasting|1 +(adj)|durable|lasting|long-lived|long +long-legged|1 +(adj)|leggy|long-shanked|tall +long-legs|2 +(noun)|stilt|stiltbird|longlegs|stilt plover|Himantopus stilt|shorebird|shore bird|limicoline bird +(noun)| +long-life|1 +(adj)|long +long-lived|1 +(adj)|durable|lasting|long-lasting|long +long-neck clam|2 +(noun)|soft-shell clam|steamer|steamer clam|clam +(noun)|soft-shell clam|steamer|steamer clam|Mya arenaria|clam +long-play|1 +(adj)|long-playing|slow +long-playing|1 +(adj)|long-play|slow +long-range|2 +(adj)|long +(adj)|long +long-run|1 +(adj)|long-term|semipermanent|long +long-shanked|1 +(adj)|leggy|long-legged|tall +long-snouted|1 +(adj)|long +long-spurred violet|1 +(noun)|Viola rostrata|violet +long-staple|1 +(adj)|long +long-sufferance|1 +(noun)|long-suffering|endurance +long-suffering|2 +(adj)|enduring|patient +(noun)|long-sufferance|endurance +long-tailed porcupine|1 +(noun)|Trichys lipura|Old World porcupine +long-tailed weasel|1 +(noun)|longtail weasel|Mustela frenata|weasel +long-term|1 +(adj)|long-run|semipermanent|long +long-term memory|1 +(noun)|LTM|memory|remembering +long-wearing|1 +(adj)|durable|serviceable +long-winded|1 +(adj)|tedious|verbose|windy|wordy|prolix +long-windedly|1 +(adv)|verbosely|windily|wordily +long-windedness|1 +(noun)|prolixity|prolixness|wordiness|verboseness|verbosity +long-wool|1 +(adj)|long-wooled|long +long-wooled|1 +(adj)|long-wool|long +long ago|1 +(adv)|long since|lang syne +long beach|1 +(noun)|Long Beach|city|metropolis|urban center +long beech fern|1 +(noun)|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +long bone|1 +(noun)|os longum|bone|os +long division|1 +(noun)|division +long dozen|1 +(noun)|thirteen|13|XIII|baker's dozen|large integer +long fly|1 +(noun)|gymnastic exercise +long haul|2 +(noun)|journey|journeying +(noun)|long run|time period|period of time|period +long horse|1 +(noun)|vaulting horse|buck|horse +long hundred|1 +(noun)|great hundred|120|large integer +long hundredweight|1 +(noun)|hundredweight|cwt|avoirdupois unit +long iron|1 +(noun)|iron +long island|1 +(noun)|Long Island|island +long island sound|1 +(noun)|Long Island Sound|sound +long johns|1 +(noun)|underwear|underclothes|underclothing +long jump|2 +(noun)|broad jump|field event +(noun)|broad jump|jumping +long measure|1 +(noun)|linear measure|measure|quantity|amount +long moss|1 +(noun)|Spanish moss|old man's beard|black moss|Tillandsia usneoides|air plant|epiphyte|aerophyte|epiphytic plant +long pants|1 +(noun)|long trousers|trousers|pants +long pepper|2 +(noun)|Piper longum|true pepper|pepper vine +(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|jalapeno|Capsicum annuum longum|capsicum|pepper|capsicum pepper plant +long pillow|1 +(noun)|bolster|pillow +long plane|1 +(noun)|jointer|jointer plane|jointing plane|plane|carpenter's plane|woodworking plane +long run|1 +(noun)|long haul|time period|period of time|period +long saphenous vein|1 +(noun)|great saphenous vein|saphenous vein|vena saphena +long shot|3 +(noun)|gamble +(noun)|contestant +(noun)|longshot|photograph|photo|exposure|pic +long since|1 +(adv)|long ago|lang syne +long sleeve|1 +(noun)|sleeve|arm +long suit|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|forte|strong suit|metier|specialty|speciality|strong point|strength|asset|plus +long time|1 +(noun)|age|years|time period|period of time|period +long tom|1 +(noun)|cannon +long ton|1 +(noun)|ton|gross ton|avoirdupois unit +long trousers|1 +(noun)|long pants|trousers|pants +long underwear|1 +(noun)|union suit|undergarment +long wave|1 +(noun)|radio wave|radio emission|radio radiation +long whist|1 +(noun)|whist|short whist|card game|cards +longan|1 +(noun)|lungen|longanberry|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +longanberry|2 +(noun)|longan|lungen|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +(noun)|dragon's eye|edible fruit +longanimity|1 +(noun)|patience|forbearance|good nature +longanimous|1 +(adj)|forbearing|patient +longar palm|1 +(noun)|palmyra|palmyra palm|toddy palm|wine palm|lontar|Borassus flabellifer|fan palm +longbeard|1 +(noun)|bellarmine|long-beard|graybeard|jug +longboat|1 +(noun)|boat +longbow|1 +(noun)|bow +longbowman|1 +(noun)|archer|bowman +longcase clock|1 +(noun)|grandfather clock|pendulum clock +longed-for|1 +(adj)|wished-for|yearned-for|wanted +longer|12 +(adj)|longest|long +(adj)|long |agelong|bimestrial|daylong|drawn-out|extended|lengthy|prolonged|protracted|durable|lasting|long-lasting|long-lived|endless|eternal|interminable|hourlong|lifelong|womb-to-tomb|long-acting|long-dated|longish|long-life|longitudinal|long-range|long-run|long-term|semipermanent|longstanding|monthlong|nightlong|overnight|perennial|time-consuming|weeklong|yearlong +(adj)|long |elongate|elongated|elongated|extended|lengthened|prolonged|extendible|extendable|far|in length|lank|long-distance|longest|long-handled|long-range|long-snouted|long-staple|oblong|polysyllabic|sesquipedalian|stretch|long-wool|long-wooled +(adj)|long|tall +(adj)|long +(adj)|long +(adj)|long|stressed +(adj)|long|unsound +(adj)|long|tenacious|retentive +(adj)|farseeing|farsighted|foresighted|foresightful|long|longsighted|provident +(adj)|long|abundant +(noun)|thirster|yearner|person|individual|someone|somebody|mortal|human|soul +longest|11 +(adj)|longer|long +(adj)|long |agelong|bimestrial|daylong|drawn-out|extended|lengthy|prolonged|protracted|durable|lasting|long-lasting|long-lived|endless|eternal|interminable|hourlong|lifelong|womb-to-tomb|long-acting|long-dated|longish|long-life|longitudinal|long-range|long-run|long-term|semipermanent|longstanding|monthlong|nightlong|overnight|perennial|time-consuming|weeklong|yearlong +(adj)|long |elongate|elongated|elongated|extended|lengthened|prolonged|extendible|extendable|far|in length|lank|long-distance|longer|long-handled|long-range|long-snouted|long-staple|oblong|polysyllabic|sesquipedalian|stretch|long-wool|long-wooled +(adj)|long|tall +(adj)|long +(adj)|long +(adj)|long|stressed +(adj)|long|unsound +(adj)|long|tenacious|retentive +(adj)|farseeing|farsighted|foresighted|foresightful|long|longsighted|provident +(adj)|long|abundant +longevity|2 +(noun)|length of service|longness +(noun)|seniority|oldness +longfellow|1 +(noun)|Longfellow|Henry Wadsworth Longfellow|poet +longfin mako|1 +(noun)|Isurus paucus|mako|mako shark +longhand|2 +(adj)|written +(noun)|running hand|cursive|cursive script|handwriting|hand|script +longheaded thimbleweed|1 +(noun)|Anemone riparia|thimbleweed|Anemone cylindrica +longhorn|1 +(noun)|Texas longhorn|beef|beef cattle +longicorn|1 +(noun)|long-horned beetle|longicorn beetle|beetle +longicorn beetle|1 +(noun)|long-horned beetle|longicorn|beetle +longing|1 +(noun)|yearning|desire +longingly|1 +(adv)|with longing|yearningly +longish|1 +(adj)|long +longitude|1 +(noun)|meridian|line of longitude|great circle +longitudinal|3 +(adj)|great circle +(adj)|lengthwise |lengthways +(adj)|long +longitudinally|1 +(adv)|lengthways|lengthwise|longwise|longways +longleaf pine|1 +(noun)|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine +longlegs|1 +(noun)|stilt|stiltbird|long-legs|stilt plover|Himantopus stilt|shorebird|shore bird|limicoline bird +longness|2 +(noun)|length +(noun)|duration|length +longroot|1 +(noun)|pine-barren sandwort|Arenaria caroliniana|sandwort +longshoreman|1 +(noun)|stevedore|loader|docker|dockhand|dock worker|dock-walloper|lumper|laborer|manual laborer|labourer|jack +longshot|1 +(noun)|photograph|photo|exposure|pic +longsighted|2 +(adj)|eagle-eyed|keen-sighted|farseeing|farsighted |presbyopic +(adj)|farseeing|farsighted|foresighted|foresightful|long|provident +longsightedness|1 +(noun)|hyperopia|hypermetropia|hypermetropy|farsightedness|ametropia +longstanding|1 +(adj)|long +longtail weasel|1 +(noun)|long-tailed weasel|Mustela frenata|weasel +longtime|1 +(adj)|old +longueur|1 +(noun)|duration|continuance +longways|2 +(noun)|longways dance|country-dance|country dancing|contredanse|contra danse|contradance +(adv)|lengthways|lengthwise|longwise|longitudinally +longways dance|1 +(noun)|longways|country-dance|country dancing|contredanse|contra danse|contradance +longwise|1 +(adv)|lengthways|lengthwise|longways|longitudinally +longwool|1 +(noun)|domestic sheep|Ovis aries +longyi|1 +(noun)|lungi|lungyi|piece of cloth|piece of material +lonicera|1 +(noun)|Lonicera|genus Lonicera|asterid dicot genus +lonicera albiflora|1 +(noun)|white honeysuckle|Lonicera albiflora|honeysuckle +lonicera canadensis|1 +(noun)|American fly honeysuckle|fly honeysuckle|Lonicera canadensis|honeysuckle +lonicera caprifolium|1 +(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle +lonicera dioica|1 +(noun)|yellow honeysuckle|Lonicera dioica|honeysuckle +lonicera flava|1 +(noun)|yellow honeysuckle|Lonicera flava|honeysuckle +lonicera hirsuta|1 +(noun)|hairy honeysuckle|Lonicera hirsuta|honeysuckle +lonicera involucrata|1 +(noun)|twinberry|Lonicera involucrata|honeysuckle +lonicera japonica|1 +(noun)|Japanese honeysuckle|Lonicera japonica|honeysuckle +lonicera japonica halliana|1 +(noun)|Hall's honeysuckle|Lonicera japonica halliana|honeysuckle +lonicera morrowii|1 +(noun)|Morrow's honeysuckle|Lonicera morrowii|honeysuckle +lonicera periclymenum|1 +(noun)|woodbine|Lonicera periclymenum|honeysuckle +lonicera sempervirens|1 +(noun)|trumpet honeysuckle|coral honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle +lonicera tatarica|1 +(noun)|bush honeysuckle|Tartarian honeysuckle|Lonicera tatarica|honeysuckle +lonicera xylosteum|1 +(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle +loniten|1 +(noun)|minoxidil|Loniten|Rogaine|vasodilator|vasodilative +lontar|1 +(noun)|palmyra|palmyra palm|toddy palm|wine palm|longar palm|Borassus flabellifer|fan palm +loo|1 +(noun)|water closet|closet|W.C.|toilet|lavatory|lav|can|john|privy|bathroom +loofa|1 +(noun)|loofah|luffa|loufah sponge|fiber|fibre +loofah|2 +(noun)|loofa|luffa|loufah sponge|fiber|fibre +(noun)|vegetable sponge|Luffa cylindrica|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +look|14 +(noun)|expression|aspect|facial expression|face|countenance|visage +(noun)|looking|looking at|sensing|perception +(noun)|appearance|visual aspect +(noun)|spirit|tone|feel|feeling|flavor|flavour|smell|atmosphere|ambiance|ambience +(verb)|look back|look away|look after|look on|look up to|look for|look into|look back|look up +(verb)|appear|seem|be +(verb)|be +(verb)|search|examine|see +(verb)|front|face|lie +(verb)|attend|take care|see|care|give care +(verb)|convey|impart +(verb)|expect|await|wait +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|count|bet|depend|calculate|reckon|trust|swear|rely|bank +look-alike|2 +(adj)|like |similar +(noun)|double|image|person|individual|someone|somebody|mortal|human|soul +look-over|1 +(noun)|once-over|examination|scrutiny +look across|1 +(verb)|look out on|look out over|overlook|lie +look after|1 +(verb)|watch|look out|watch out +look around|1 +(verb)|look +look at|2 +(verb)|consider|take|deal|think about +(verb)|view|consider|analyze|analyse|study|examine|canvass|canvas +look away|1 +(verb)|look +look back|2 +(verb)|look backward|look +(verb)|review|retrospect|remember|think back +look backward|1 +(verb)|look back|look +look for|2 +(verb)|search|seek +(verb)|anticipate|look to|expect|look|await|wait +look forward|1 +(verb)|expect|look|await|wait +look into|2 +(verb)|investigate|analyze|analyse|study|examine|canvass|canvas +(verb)|check|check up on|check out|suss out|check over|go over|check into|analyze|analyse|study|examine|canvass|canvas +look like|1 +(verb)|resemble +look on|2 +(verb)|watch +(verb)|think of|repute|regard as|look upon|esteem|take to be|think|believe|consider|conceive +look out|2 +(verb)|watch|watch out +(verb)|protect +look out on|1 +(verb)|look out over|overlook|look across|lie +look out over|1 +(verb)|look out on|overlook|look across|lie +look sharp|1 +(verb)|rush|hasten|hurry|festinate|act|move +look to|2 +(verb)|expect|look|await|wait +(verb)|anticipate|look for|expect|look|await|wait +look up|1 +(verb)|consult|refer|research +look up to|1 +(verb)|admire|respect|esteem|value|prize|prise +look upon|1 +(verb)|think of|repute|regard as|look on|esteem|take to be|think|believe|consider|conceive +lookdown|1 +(noun)|lookdown fish|Selene vomer|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis +lookdown fish|1 +(noun)|lookdown|Selene vomer|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis +looked-for|1 +(adj)|anticipated|due +looker|2 +(noun)|spectator|witness|viewer|watcher|perceiver|observer|beholder +(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|mantrap|dish|woman|adult female +looker-on|1 +(noun)|onlooker|spectator|witness|viewer|watcher|looker +looking|3 +(adj)|sounding|superficial +(noun)|look|looking at|sensing|perception +(noun)|looking for|search|hunt|hunting +looking-glass plant|1 +(noun)|Heritiera littoralis|angiospermous tree|flowering tree +looking at|1 +(noun)|look|looking|sensing|perception +looking for|1 +(noun)|looking|search|hunt|hunting +looking glass|1 +(noun)|glass|mirror +looking glass tree|1 +(noun)|Heritiera macrophylla|angiospermous tree|flowering tree +lookout|4 +(noun)|lookout man|sentinel|sentry|watch|spotter|scout|picket|watchman|watcher|security guard +(noun)|observation post|post|station +(noun)|observation tower|lookout station|observatory|structure|construction +(noun)|outlook|look|looking|looking at +lookout man|1 +(noun)|lookout|sentinel|sentry|watch|spotter|scout|picket|watchman|watcher|security guard +lookout station|1 +(noun)|lookout|observation tower|observatory|structure|construction +lookup|1 +(noun)|search|operation +loom|4 +(noun)|textile machine +(verb)|look|appear|seem +(verb)|tower|predominate|hulk|rise|lift|rear +(verb)|brood|hover|bulk large|hang +loon|3 +(noun)|idler|loafer|do-nothing|layabout|bum +(noun)|diver|gaviiform seabird +(noun)|addle-head|addlehead|birdbrain|misfit +looney|1 +(noun)|crazy|loony|weirdo|lunatic|madman|maniac +loony|2 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loopy|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +(noun)|crazy|looney|weirdo|lunatic|madman|maniac +loony bin|1 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +loony toons|1 +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +loop|15 +(noun)|cringle|eyelet|grommet|grummet|fastener|fastening|holdfast|fixing +(noun)|simple closed curve|Jordan curve +(noun)|iteration|process +(noun)|clique|coterie|ingroup|inner circle|pack|camp +(noun)|fingerprint +(noun)|program|programme|computer program|computer programme +(noun)|loop topology|topology|network topology +(noun)|intrauterine device|IUD +(noun)|closed circuit|circuit|electrical circuit|electric circuit +(noun)|loop-the-loop|flight maneuver|airplane maneuver +(verb)|circle|circulate +(verb)|intertwine|knit|entwine +(verb)|circle|circulate +(verb)|coil|curl|wind|wrap|roll|twine +(verb)|tie|bind +loop-line|1 +(noun)|branch line|spur track|spur +loop-the-loop|1 +(noun)|loop|flight maneuver|airplane maneuver +loop gain|1 +(noun)|amplification|gain +loop knot|1 +(noun)|knot +loop topology|1 +(noun)|loop|topology|network topology +looped|1 +(adj)|whorled|coiled +looper|1 +(noun)|measuring worm|inchworm|caterpillar +loophole|2 +(noun)|ambiguity +(noun)|hole +looping|1 +(noun)|iteration|process +loopy|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|nuts|nutty|round the bend|around the bend|wacky|whacky|insane +loos|2 +(noun)|Loos|Adolf Loos|architect|designer +(noun)|water closet|closet|W.C.|loo|toilet|lavatory|lav|can|john|privy|bathroom +loose|22 +(adj)|free +(adj)|loose |friable|light|sandy|shifting|unfirm|silty|unconsolidated +(adj)|uncontrolled +(adj)|loose |baggy|loose-fitting|flyaway|lax +(adj)|informal|unofficial +(adj)|free|liberal|inexact +(adj)|lax|unconstipated |regular +(adj)|unaffixed +(adj)|slack|lax +(adj)|open|coarse +(adj)|insecure +(adj)|idle|irresponsible +(adj)|unpackaged +(adj)|phlegmy +(adj)|at large|at liberty|escaped|on the loose|free +(adj)|easy|light|promiscuous|sluttish|wanton|unchaste +(adj)|unbound +(verb)|free|liberate|release|unloose|unloosen +(verb)|unleash|let loose|let go of|let go|release|relinquish +(verb)|loosen|change|alter|modify +(verb)|loosen|relax|weaken +(adv)|free +loose-fitting|1 +(adj)|baggy|loose +loose-jointed|1 +(adj)|lax +loose-jowled|1 +(adj)|double-chinned|jowly|fat +loose-leaf lettuce|1 +(noun)|leaf lettuce|lettuce +loose cannon|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +loose end|1 +(noun)|unfinished business|work +loose off|1 +(verb)|let fly|let drive|fire|discharge +loose sentence|1 +(noun)|complex sentence +loose smut|2 +(noun)|smut +(noun)|smut|smut fungus +loose trousers|1 +(noun)|protective garment +loose woman|1 +(noun)|adulteress|fornicatress|hussy|jade|slut|strumpet|trollop|adulterer|fornicator +looseleaf|1 +(adj)|unbound +loosely|2 +(adv)|slackly +(adv)|broadly|broadly speaking|generally +loosely knit|1 +(adj)|distant +loosen|7 +(verb)|loose|change|alter|modify +(verb)|relax|change|alter|modify +(verb)|relax|change +(verb)|tease|tease apart|disentangle|unsnarl|straighten out +(verb)|untie|undo|change|alter|modify +(verb)|change|alter|modify +(verb)|relax|loose|weaken +loosen up|5 +(verb)|unstuff|free|disengage +(verb)|relax|act|behave|do +(verb)|limber up|warm up|exercise|work out +(verb)|relax|unbend|unwind|decompress|slow down|change state|turn +(verb)|relax|unstrain|unlax|unwind|make relaxed|affect +loosened|1 +(adj)|disentangled|unsnarled|untangled +looseness|1 +(noun)|play|movability|movableness +looseness of the bowels|1 +(noun)|diarrhea|diarrhoea|symptom +loosening|2 +(noun)|relaxation|slackening|weakening +(noun)|laxation|alteration|modification|adjustment +loosestrife|2 +(noun)|subshrub|suffrutex +(noun)|herb|herbaceous plant +loosestrife family|1 +(noun)|Lythraceae|family Lythraceae|dicot family|magnoliopsid family +loot|4 +(noun)|booty|pillage|plunder|prize|swag|dirty money|stolen property +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(verb)|plunder|steal +(verb)|plunder|despoil|reave|strip|rifle|ransack|pillage|foray|take +looted|1 +(adj)|pillaged|plundered|ransacked|empty +looter|1 +(noun)|plunderer|pillager|spoiler|despoiler|raider|freebooter|thief|stealer +looting|1 +(noun)|robbery|plundering|pillage|pillaging +lop|2 +(verb)|discerp|sever|cut +(verb)|snip|clip|crop|trim|dress|prune|cut back|thin out +lop-eared|1 +(adj)|eared +lop off|1 +(verb)|cut off|chop off|detach|come off|come away +lope|3 +(noun)|jog|trot|locomotion|travel +(noun)|canter|gait +(verb)|run +lope de vega|1 +(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist|playwright +lope felix de vega carpio|1 +(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist|playwright +lophiidae|1 +(noun)|Lophiidae|family Lophiidae|fish family +lophius|1 +(noun)|Lophius|genus Lophius|fish genus +lophius americanus|1 +(noun)|goosefish|angler|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +lophodytes|1 +(noun)|Lophodytes|genus Lophodytes|bird genus +lophodytes cucullatus|1 +(noun)|hooded merganser|hooded sheldrake|Lophodytes cucullatus|merganser|fish duck|sawbill|sheldrake +lopholatilus|1 +(noun)|Lopholatilus|genus Lopholatilus|fish genus +lopholatilus chamaeleonticeps|1 +(noun)|tilefish|Lopholatilus chamaeleonticeps|percoid fish|percoid|percoidean +lophophora|1 +(noun)|Lophophora|genus Lophophora|caryophylloid dicot genus +lophophora williamsii|1 +(noun)|mescal|mezcal|peyote|Lophophora williamsii|cactus +lophophorus|1 +(noun)|Lophophorus|genus Lophophorus|bird genus +lophosoria|1 +(noun)|Lophosoria|genus Lophosoria|fern genus +lophosoriaceae|1 +(noun)|Lophosoriaceae|family Lophosoriaceae|fern family +lopid|1 +(noun)|gemfibrozil|Lopid|medicine|medication|medicament|medicinal drug +lopped|1 +(adj)|lopped off|cropped +lopped off|1 +(adj)|lopped|cropped +lopper|1 +(noun)|pruner|pruning hook|edge tool +lopressor|1 +(noun)|metoprolol|Lopressor|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +lopsided|2 +(adj)|ill-proportioned|one-sided|asymmetrical |asymmetric +(adj)|askew|awry|cockeyed|wonky|skew-whiff|crooked +lopsidedly|1 +(adv)|crookedly +lopsidedness|1 +(noun)|skewness|asymmetry|imbalance +loquacious|1 +(adj)|chatty|gabby|garrulous|talkative|talky|voluble +loquaciously|1 +(adv)|garrulously|talkatively|talkily +loquaciousness|1 +(noun)|garrulity|garrulousness|loquacity|talkativeness|communicativeness +loquacity|1 +(noun)|garrulity|garrulousness|loquaciousness|talkativeness|communicativeness +loquat|2 +(noun)|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree +(noun)|Japanese plum|edible fruit +loquat tree|1 +(noun)|loquat|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree +lorado taft|1 +(noun)|Taft|Lorado Taft|sculptor|sculpturer|carver|statue maker +loranthaceae|1 +(noun)|Loranthaceae|family Loranthaceae|mistletoe family|dilleniid dicot family|parasitic plant +loranthus|1 +(noun)|Loranthus|genus Loranthus|dilleniid dicot genus +loranthus europaeus|1 +(noun)|mistletoe|Loranthus europaeus|parasitic plant +lorazepam|1 +(noun)|Ativan|benzodiazepine +lorca|1 +(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet|dramatist|playwright +lorchel|1 +(noun)|fungus +lord|4 +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +(noun)|overlord|master|ruler|swayer +(noun)|Lord|noble|nobleman|male aristocrat +(verb)|ennoble|gentle|entitle +lord's day|1 +(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day|day of rest +lord's prayer|1 +(noun)|Lord's Prayer|prayer +lord's resistance army|1 +(noun)|Lord's Resistance Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +lord's supper|2 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +(noun)|Last Supper|Lord's Supper|Seder|Passover supper +lord's table|1 +(noun)|altar|communion table|Lord's table|table +lord britten of aldeburgh|1 +(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor|music director|director|composer +lord chancellor|1 +(noun)|Lord Chancellor|Lord High Chancellor|cabinet minister +lord george gordon byron|1 +(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet +lord high chancellor|1 +(noun)|Lord Chancellor|Lord High Chancellor|cabinet minister +lord it over|1 +(verb)|queen it over|put on airs|act superior|act|move +lord macaulay|1 +(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian|historiographer +lord nelson|1 +(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral|full admiral +lord of misrule|1 +(noun)|Lord of Misrule|master of ceremonies|emcee|host +lord privy seal|1 +(noun)|Lord Privy Seal|cabinet minister +lord rayleigh|1 +(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist +lordless|1 +(adj)|masterless|uncontrolled +lordliness|2 +(noun)|dignity|gravitas|bearing|comportment|presence|mien +(noun)|arrogance|haughtiness|hauteur|highhandedness|pride +lordly|2 +(adj)|august|grand|noble +(adj)|disdainful|haughty|prideful|sniffy|supercilious|swaggering|proud +lordolatry|1 +(noun)|idolatry|devotion|veneration|cultism +lordosis|1 +(noun)|hollow-back|spinal curvature +lordotic|1 +(adj)|dipped|swayback|swaybacked|unfit +lords-and-ladies|1 +(noun)|cuckoopint|jack-in-the-pulpit|Arum maculatum|arum|aroid +lords spiritual|1 +(noun)|first estate|clergy +lords temporal|1 +(noun)|second estate|nobility|aristocracy +lordship|2 +(noun)|Lordship|title +(noun)|authority|authorization|authorisation|dominance|say-so +lore|1 +(noun)|traditional knowledge|content|cognitive content|mental object +lorelei|1 +(noun)|Lorelei|Siren +loren|1 +(noun)|Loren|Sophia Loren|Sofia Scicolone|actress +lorentz|1 +(noun)|Lorentz|Hendrik Antoon Lorentz|physicist +lorentz force|1 +(noun)|Lorentz force|force +lorenz|1 +(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist|animal scientist +lorenz hart|1 +(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist +lorenz milton hart|1 +(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist +lorenz oken|1 +(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist|natural scientist +lorenz okenfuss|1 +(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist|natural scientist +lorenzo de medici|1 +(noun)|Lorenzo de Medici|Lorenzo the Magnificent|statesman|solon|national leader|scholar|scholarly person|student +lorenzo dressing|1 +(noun)|Lorenzo dressing|dressing|salad dressing +lorenzo the magnificent|1 +(noun)|Lorenzo de Medici|Lorenzo the Magnificent|statesman|solon|national leader|scholar|scholarly person|student +loretta young|1 +(noun)|Young|Loretta Young|actress +lorfan|1 +(noun)|levallorphan|Lorfan|drug +lorgnette|1 +(noun)|spectacles|specs|eyeglasses|glasses +lorica|1 +(noun)|sheath|case +loricata|1 +(noun)|Loricata|order Loricata|animal order +loriinae|1 +(noun)|Loriinae|subfamily Loriinae|bird family +lorikeet|1 +(noun)|lory +loris gracilis|1 +(noun)|slender loris|Loris gracilis|lemur +lorisidae|1 +(noun)|Lorisidae|family Lorisidae|mammal family +lorn|1 +(adj)|desolate|forlorn|godforsaken|forsaken +lorraine|1 +(noun)|Lorraine|Lothringen|French region +lorraine cross|1 +(noun)|Lorraine cross|cross of Lorraine|cross +lorre|1 +(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor|histrion|player|thespian|role player +lorry|2 +(noun)|wagon|waggon +(noun)|camion|truck|motortruck +lory|1 +(noun)|parrot +los alamos|1 +(noun)|Los Alamos|town +los angeles|1 +(noun)|Los Angeles|City of the Angels|city|metropolis|urban center|port of entry|point of entry +lose|6 +(verb)|suffer +(verb)|misplace|mislay|put|set|place|pose|position|lay +(verb)|turn a loss +(verb)|fall back|drop off|fall behind|recede|regress|retrograde|retrogress +(verb)|miss +(verb)|suffer|worsen|decline +lose it|1 +(verb)|break down|snap|act|behave|do +lose one's temper|1 +(verb)|flip one's lid|blow up|throw a fit|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|blow a fuse|go ballistic|rage +lose weight|1 +(verb)|reduce|melt off|slim|slenderize|thin|slim down|change state|turn +loser|3 +(noun)|also-ran|contestant +(noun)|failure|nonstarter|unsuccessful person|unfortunate|unfortunate person +(noun)|gambler +losing streak|1 +(noun)|streak|run +losings|1 +(noun)|losses|financial loss +loss|8 +(noun)|failure +(noun)|transferred property|transferred possession +(noun)|red ink|red|sum|sum of money|amount|amount of money +(noun)|decline|diminution +(noun)|deprivation|disadvantage +(noun)|personnel casualty|casualty +(noun)|experience +(noun)|passing|departure|exit|expiration|going|release|death|decease +loss leader|1 +(noun)|drawing card|leader|feature +loss of consciousness|1 +(noun)|change|alteration|modification +loss ratio|1 +(noun)|ratio +losses|9 +(noun)|losings|financial loss +(noun)|loss|failure +(noun)|loss|transferred property|transferred possession +(noun)|loss|red ink|red|sum|sum of money|amount|amount of money +(noun)|loss|decline|diminution +(noun)|loss|deprivation|disadvantage +(noun)|personnel casualty|loss|casualty +(noun)|loss|experience +(noun)|passing|loss|departure|exit|expiration|going|release|death|decease +lossless|1 +(adj)|lossless +lossy|1 +(adj)|lossy +lost|11 +(adj)|lost |mislaid|misplaced|missing|straying|squandered|wasted|gone +(adj)|confused|disoriented|unoriented +(adj)|lost |cursed|damned|doomed|unredeemed|unsaved|destroyed|ruined|cursed|curst|unregenerate|unregenerated +(adj)|lost |confiscate|forfeit|forfeited +(adj)|unrecoverable |irrecoverable +(adj)|missed|incomprehensible |uncomprehensible +(adj)|bemused|deep in thought|preoccupied|thoughtful +(adj)|forgotten|unrecoverable |irrecoverable +(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|mazed|mixed-up|at sea|perplexed +(adj)|helpless|hopeless +(noun)|doomed|people +lost-and-found|1 +(noun)|depository|deposit|repository +lost cause|1 +(noun)|campaign|cause|crusade|drive|movement|effort +lost tribes|1 +(noun)|Lost Tribes|Tribes of Israel|Twelve Tribes of Israel +lot|9 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|fortune|destiny|fate|luck|circumstances|portion|condition +(noun)|bunch|caboodle|collection|aggregation|accumulation|assemblage +(noun)|set|circle|band|social group +(noun)|draw|object|physical object +(noun)|Lot|Jew|Hebrew|Israelite +(verb)|divide|split|split up|separate|dissever|carve up +(verb)|distribute|administer|mete out|deal|parcel out|dispense|shell out|deal out|dish out|allot|dole out|give +lot's wife|1 +(noun)|Lot's wife|Jewess +lota|2 +(noun)|water bottle +(noun)|Lota|genus Lota|fish genus +lota lota|1 +(noun)|burbot|eelpout|ling|cusk|Lota lota|cod|codfish +lotario di segni|1 +(noun)|Innocent III|Lotario di Segni|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +loth|2 +(adj)|loath|reluctant|unwilling +(adj)|antipathetic|antipathetical|averse|indisposed|loath|disinclined +lothario|1 +(noun)|Lothario|womanizer|womaniser|philanderer +lothian region|1 +(noun)|Lothian Region|district|territory|territorial dominion|dominion +lothringen|1 +(noun)|Lorraine|Lothringen|French region +loti|1 +(noun)|Lesotho monetary unit +lotic|1 +(adj)|lotic +lotion|2 +(noun)|toiletry|toilet article|toiletries +(noun)|application|remedy|curative|cure +lots|8 +(noun)|tons|dozens|heaps|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|lot|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|fortune|destiny|fate|luck|lot|circumstances|portion|condition +(noun)|bunch|lot|caboodle|collection|aggregation|accumulation|assemblage +(noun)|set|circle|band|lot|social group +(noun)|draw|lot|object|physical object +(noun)|Lot|Jew|Hebrew|Israelite +lotte|1 +(noun)|goosefish|angler|anglerfish|angler fish|monkfish|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +lottery|2 +(noun)|accident|fortuity|chance event +(noun)|drawing|game of chance|gambling game +lottery winner|1 +(noun)|prize winner|winner +lotto|1 +(noun)|bingo|beano|keno|board game +lotus|3 +(noun)|Indian lotus|sacred lotus|Nelumbo nucifera|water lily +(noun)|Lotus|genus Lotus|rosid dicot genus +(noun)|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily +lotus-eater|1 +(noun)|stargazer|daydreamer|woolgatherer +lotus americanus|1 +(noun)|prairie bird's-foot trefoil|compass plant|prairie lotus|prairie trefoil|Lotus americanus|subshrub|suffrutex +lotus berthelotii|1 +(noun)|coral gem|Lotus berthelotii|subshrub|suffrutex +lotus corniculatus|1 +(noun)|bird's foot trefoil|bird's foot clover|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub|suffrutex +lotus land|2 +(noun)|lotusland|kingdom|land|realm +(noun)| +lotus position|1 +(noun)|position|posture|attitude +lotus tetragonolobus|1 +(noun)|winged pea|asparagus pea|Lotus tetragonolobus|herb|herbaceous plant +lotus tree|1 +(noun)|Ziziphus lotus|shrub|bush +lotusland|1 +(noun)|lotus land|kingdom|land|realm +lou gehrig|1 +(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer|baseball player +lou gehrig's disease|1 +(noun)|amyotrophic lateral sclerosis|ALS|Lou Gehrig's disease|nervous disorder|neurological disorder|neurological disease|sclerosis|induration +louche|1 +(adj)|shady|disreputable +loud|4 +(adj)|loud |big|blaring|blasting|clarion|deafening|earsplitting|roaring|thunderous|thundery|earthshaking|loud-mouthed|loud-voiced|shattering|shouted|yelled|vocal|audible|hearable|noisy +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|meretricious|tacky|tatty|tawdry|trashy|tasteless +(adj)|forte |fortemente|fortissimo +(adv)|loudly|aloud +loud-hailer|1 +(noun)|bullhorn|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +loud-mouthed|1 +(adj)|loud +loud-voiced|1 +(adj)|loud +loud noise|1 +(noun)|bang|clap|eruption|blast|noise +loud pedal|1 +(noun)|sustaining pedal|pedal|treadle|foot pedal|foot lever +louden|2 +(verb)|change intensity +(verb)|change|alter|modify +loudly|3 +(adv)|loud|aloud +(adv)|obstreperously|clamorously +(adv)|forte +loudmouth|1 +(noun)|blusterer|troublemaker|trouble maker|troubler|mischief-maker|bad hat +loudness|2 +(noun)|volume|intensity|sound property +(noun)|flashiness|garishness|gaudiness|brashness|meretriciousness|tawdriness|glitz|tastelessness +loudspeaker|1 +(noun)|speaker|speaker unit|loudspeaker system|speaker system|electro-acoustic transducer +loudspeaker system|1 +(noun)|loudspeaker|speaker|speaker unit|speaker system|electro-acoustic transducer +loufah sponge|1 +(noun)|loofa|loofah|luffa|fiber|fibre +lough|2 +(noun)|cove +(noun)|lake +louis|1 +(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter|gladiator +louis-hector berlioz|1 +(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer +louis agassiz|1 +(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist|natural scientist +louis antoine de bougainville|1 +(noun)|Bougainville|Louis Antoine de Bougainville|explorer|adventurer +louis aragon|1 +(noun)|Aragon|Louis Aragon|writer|author +louis armstrong|1 +(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician|jazzman|trumpeter|cornetist +louis auchincloss|1 +(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer|author +louis b. mayer|1 +(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker|filmmaker|film producer|movie maker +louis bleriot|1 +(noun)|Bleriot|Louis Bleriot|aviator|aeronaut|airman|flier|flyer +louis braille|1 +(noun)|Braille|Louis Braille|educator|pedagogue +louis burt mayer|1 +(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker|filmmaker|film producer|movie maker +louis charles alfred de musset|1 +(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer|author|poet +louis comfort tiffany|1 +(noun)|Tiffany|Louis Comfort Tiffany|artist|creative person +louis d'or|1 +(noun)|coin +louis d'outremer|1 +(noun)|Louis IV|Louis d'Outremer|King of France +louis eugene felix neel|1 +(noun)|Neel|Louis Eugene Felix Neel|physicist +louis henri sullivan|1 +(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect|designer +louis henry sullivan|1 +(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect|designer +louis i|1 +(noun)|Louis I|Louis the Pious|King of France +louis ii|1 +(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France +louis iii|1 +(noun)|Louis III|King of France +louis isadore kahn|1 +(noun)|Kahn|Louis Isadore Kahn|architect|designer +louis iv|1 +(noun)|Louis IV|Louis d'Outremer|King of France +louis ix|1 +(noun)|Louis IX|Saint Louis|St. Louis|King of France|saint +louis jacques mande daguerre|1 +(noun)|Daguerre|Louis Jacques Mande Daguerre|inventor|discoverer|artificer +louis joliet|1 +(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer|adventurer +louis jolliet|1 +(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer|adventurer +louis le begue|1 +(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France +louis le faineant|1 +(noun)|Louis V|Louis le Faineant|King of France +louis le hutin|1 +(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France +louis leakey|1 +(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist|palaeontologist|fossilist|anthropologist +louis pasteur|1 +(noun)|Pasteur|Louis Pasteur|chemist|biologist|life scientist +louis seymour bazett leakey|1 +(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist|palaeontologist|fossilist|anthropologist +louis stanton auchincloss|1 +(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer|author +louis sullivan|1 +(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect|designer +louis the bruiser|1 +(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France +louis the far|1 +(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France +louis the german|1 +(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France +louis the great|1 +(noun)|Louis XIV|Sun King|Louis the Great|King of France +louis the pious|1 +(noun)|Louis I|Louis the Pious|King of France +louis the quarreller|1 +(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France +louis the stammerer|1 +(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France +louis the wideawake|1 +(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France +louis untermeyer|1 +(noun)|Untermeyer|Louis Untermeyer|writer|author +louis v|1 +(noun)|Louis V|Louis le Faineant|King of France +louis vi|1 +(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France +louis victor de broglie|1 +(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist +louis vii|1 +(noun)|Louis VII|King of France +louis viii|1 +(noun)|Louis VIII|King of France +louis x|1 +(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France +louis xi|1 +(noun)|Louis XI|King of France +louis xii|1 +(noun)|Louis XII|King of France +louis xiii|1 +(noun)|Louis XIII|King of France +louis xiv|1 +(noun)|Louis XIV|Sun King|Louis the Great|King of France +louis xv|1 +(noun)|Louis XV|King of France +louis xvi|1 +(noun)|Louis XVI|King of France +louisa may alcott|1 +(noun)|Alcott|Louisa May Alcott|novelist +louise nevelson|1 +(noun)|Nevelson|Louise Nevelson|sculptor|sculpturer|carver|statue maker +louisiana|1 +(noun)|Louisiana|Pelican State|LA|American state +louisiana purchase|1 +(noun)|Louisiana Purchase|district|territory|territorial dominion|dominion +louisianan|1 +(noun)|Louisianan|Louisianian|American +louisianian|1 +(noun)|Louisianan|Louisianian|American +louisville|1 +(noun)|Louisville|city|metropolis|urban center +lounge|4 +(noun)|sofa|couch|seat +(noun)|waiting room|waiting area|room +(verb)|sit|sit down +(verb)|loiter|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be +lounge about|1 +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|lounge around|loll|loll around|idle|laze|slug|stagnate +lounge around|1 +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|waste one's time|loll|loll around|lounge about|idle|laze|slug|stagnate +lounge car|1 +(noun)|club car|car|railcar|railway car|railroad car +lounge chair|1 +(noun)|easy chair|overstuffed chair|armchair +lounge lizard|1 +(noun)|lizard|gigolo +lounge suit|1 +(noun)|two-piece|two-piece suit|business suit +lounger|3 +(noun)|dallier|dillydallier|dilly-dallier|mope|idler|loafer|do-nothing|layabout|bum +(noun)|recliner|reclining chair|armchair +(noun)|clothing|article of clothing|vesture|wear +lounging|1 +(adj)|lolling|unerect +lounging jacket|1 +(noun)|smoking jacket|jacket +lounging pajamas|1 +(noun)|lounging pyjamas|pajamas|pyjamas|pj's|jammies +lounging pyjamas|1 +(noun)|lounging pajamas|pajamas|pyjamas|pj's|jammies +lounging robe|1 +(noun)|dressing gown|robe-de-chambre|robe +loupe|1 +(noun)|jeweler's loupe|hand glass|simple microscope|magnifying glass +lour|3 +(verb)|lower|devalue +(verb)|turn down|lower|decrease|lessen|minify +(verb)|frown|glower|lower|grimace|make a face|pull a face +louse|4 +(noun)|sucking louse|insect +(noun)|worm|insect|dirt ball|unpleasant person|disagreeable person +(noun)|plant louse|homopterous insect|homopteran +(noun)|bird louse|biting louse|insect +louse fly|1 +(noun)|hippoboscid|dipterous insect|two-winged insects|dipteran|dipteron +louse up|1 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|foul up|mess up|fuck up|fail|go wrong|miscarry +lousiness|1 +(noun)|pediculosis|infestation +lousy|3 +(adj)|icky|crappy|rotten|shitty|stinking|stinky|bad +(adj)|dirty |soiled|unclean +(adj)|dirty|filthy|nasty |awful +lout|1 +(noun)|clod|stumblebum|goon|oaf|lubber|lummox|lump|gawk|clumsy person +loutish|1 +(adj)|boorish|neanderthal|neandertal|oafish|swinish|unrefined +louvar|1 +(noun)|Luvarus imperialis|scombroid|scombroid fish +louver|1 +(noun)|louvre|fin|slat|spline +louvered|1 +(adj)|ventilated +louvered window|1 +(noun)|jalousie|window +louvre|2 +(noun)|Louvre|Louvre Museum|museum +(noun)|louver|fin|slat|spline +louvre museum|1 +(noun)|Louvre|Louvre Museum|museum +lovable|1 +(adj)|lovable |loveable|adorable|endearing|lovely|angelic|angelical|cherubic|seraphic|sweet|cuddlesome|cuddly|amicable|desirable|loving +lovage|2 +(noun)|Levisticum officinale|herb|herbaceous plant +(noun)|herb +lovastatin|1 +(noun)|Mevacor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +love|8 +(noun)|emotion +(noun)|passion|object +(noun)|beloved|dear|dearest|loved one|honey|lover +(noun)|sexual desire|concupiscence|physical attraction +(noun)|score +(noun)|sexual love|lovemaking|making love|love life|sexual activity|sexual practice|sex|sex activity +(verb)|enjoy|like +(verb)|roll in the hay|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +love-in-a-mist|3 +(noun)|running pop|wild water lemon|Passiflora foetida|passionflower|passionflower vine +(noun)|snow-in-summer|Cerastium tomentosum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +(noun)|Nigella damascena|nigella +love-in-idleness|1 +(noun)|wild pansy|Johnny-jump-up|heartsease|pink of my John|Viola tricolor|viola +love-in-winter|1 +(noun)|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa|prince's pine +love-lies-bleeding|1 +(noun)|velvet flower|tassel flower|Amaranthus caudatus|amaranth +love-philter|1 +(noun)|philter|philtre|love-potion|love-philtre|potion +love-philtre|1 +(noun)|philter|philtre|love-potion|love-philter|potion +love-potion|1 +(noun)|philter|philtre|love-philter|love-philtre|potion +love-song|2 +(noun)|love song|song +(noun)| +love-token|1 +(noun)|keepsake|souvenir|token|relic +love affair|1 +(noun)|romance|relationship +love apple|1 +(noun)|tomato|tomato plant|Lycopersicon esculentum|herb|herbaceous plant +love bite|1 +(noun)|hickey|erythema +love child|1 +(noun)|bastard|by-blow|illegitimate child|illegitimate|whoreson|offspring|progeny|issue +love feast|2 +(noun)|social gathering|social affair +(noun)|agape|religious ceremony|religious ritual +love grass|1 +(noun)|bay grass|grass +love handle|1 +(noun)|spare tire|adipose tissue|fat|fatty tissue +love knot|1 +(noun)|lover's knot|knot +love letter|1 +(noun)|billet doux|personal letter +love life|1 +(noun)|sexual love|lovemaking|making love|love|sexual activity|sexual practice|sex|sex activity +love line|1 +(noun)|line of heart|heart line|mensal line|wrinkle|furrow|crease|crinkle|seam|line +love lyric|1 +(noun)|lyric|words|language +love match|1 +(noun)|marriage|wedding|marriage ceremony +love seat|1 +(noun)|tete-a-tete|vis-a-vis|sofa|couch|lounge +love song|2 +(noun)|love-song|song +(noun)| +love story|1 +(noun)|romance|story +love tree|1 +(noun)|Judas tree|Circis siliquastrum|angiospermous tree|flowering tree +love vine|1 +(noun)|Cuscuta gronovii|dodder +loveable|1 +(adj)|lovable |adorable|endearing|lovely|angelic|angelical|cherubic|seraphic|sweet|cuddlesome|cuddly|amicable|desirable|loving +lovebird|2 +(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +(noun)|parrot +loved|1 +(adj)|loved |admired|adored|idolized|idolised|worshipped|beloved|darling|dear|blue-eyed|fair-haired|white-haired|cherished|precious|treasured|wanted|favored|favorite|favourite|pet|preferred|wanted +loved one|1 +(noun)|beloved|dear|dearest|honey|love|lover +lovelace|1 +(noun)|Lovelace|Richard Lovelace|poet +loveless|2 +(adj)|unloving +(adj)|unloved +loveliness|1 +(noun)|comeliness|fairness|beauteousness|beauty +lovell|1 +(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer|uranologist|stargazer +lovelorn|1 +(adj)|bereft|unbeloved|unloved +lovely|3 +(adj)|beautiful +(adj)|adorable|endearing|lovable |loveable +(noun)|cover girl|pin-up|photographer's model +lovemaking|1 +(noun)|sexual love|making love|love|love life|sexual activity|sexual practice|sex|sex activity +lover|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|fan|buff|devotee|follower +(noun)|domestic partner|significant other|spousal equivalent|spouse equivalent +lover's knot|1 +(noun)|love knot|knot +loverlike|1 +(adj)|loverly|loving +loverly|1 +(adj)|loverlike|loving +lovesick|1 +(adj)|unhappy +lovesickness|1 +(noun)|pining +lovesome|1 +(adj)|affectionate|caring|fond|tender|warm|loving +loving|1 +(adj)|loving |admiring|adoring|doting|fond|affectionate|caring|fond|lovesome|tender|warm|affectioned|amative|amorous|amatory|amorous|romantic|captivated|charmed|caressing|caressive|crazy|dotty|gaga|enamored|infatuated|in love|smitten|soft on|taken with|idolatrous|loverlike|loverly|overfond|tenderhearted|touchy-feely|uxorious|fatherly|attached|committed|lovable|loveable|passionate|warmhearted +loving-kindness|1 +(noun)|kindness +loving cup|2 +(noun)|drinking vessel +(noun)|cup|trophy|prize +lovingly|1 +(adv)|fondly +lovingness|2 +(noun)|caring|love +(noun)|affectionateness|fondness|warmth|emotionality|emotionalism +lovoa|1 +(noun)|Lovoa|genus Lovoa|rosid dicot genus +lovoa klaineana|1 +(noun)|African walnut|Lovoa klaineana|tree +low|16 +(adj)|low |debased|devalued|degraded|depressed|down|low-level|poor|reduced|rock-bottom|inferior +(adj)|low |deep|low-level|low-lying|lowset|low-set|nether|under|squat|underslung|down|inferior|short +(adj)|low-toned|soft +(adj)|unrefined +(adj)|low |low-pitched|alto|contralto|baritone|bass|deep|contrabass|double-bass|throaty +(adj)|abject|low-down|miserable|scummy|scurvy|contemptible +(adj)|humble|lowly|modest|small|inferior +(adj)|depleted|insufficient |deficient +(adj)|broken|crushed|humbled|humiliated|humble +(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low-spirited|dejected +(adj)|first|forward +(noun)|low pressure|depression|air mass +(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist +(noun)|degree|grade|level +(noun)|first gear|first|low gear|gear|gear mechanism +(verb)|moo|utter|emit|let out|let loose +low-backed|1 +(adj)|backed +low-beam|1 +(adj)|dimmed |dim +low-birth-weight baby|1 +(noun)|low-birth-weight infant|neonate|newborn|newborn infant|newborn baby +low-birth-weight infant|1 +(noun)|low-birth-weight baby|neonate|newborn|newborn infant|newborn baby +low-budget|1 +(adj)|cheap |inexpensive +low-bush blueberry|1 +(noun)|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry|blueberry bush +low-cal|1 +(adj)|light|lite|nonfat |fat-free|fatless +low-calorie diet|1 +(noun)|reducing diet|obesity diet +low-carbon steel|1 +(noun)|mild steel|soft-cast steel|steel +low-ceilinged|1 +(adj)|ceilinged +low-class|1 +(adj)|lower-class |non-U|proletarian|propertyless|wage-earning|working-class|blue-collar|upper-lower-class|lowborn|proletarian|propertyless +low-cost|1 +(adj)|low-priced|affordable|cheap |inexpensive +low-cut|2 +(adj)|decollete|low-necked|necked +(adj)|backless +low-density|2 +(adj)|light +(adj)|distributed +low-density lipoprotein|1 +(noun)|LDL|beta-lipoprotein|lipoprotein +low-down|3 +(adj)|abject|low|miserable|scummy|scurvy|contemptible +(adj)|funky|emotional +(noun)|dope|poop|the skinny|details|inside information +low-fat diet|1 +(noun)|diet +low-fat milk|1 +(noun)|milk +low-grade|1 +(adj)|inferior +low-key|1 +(adj)|low-keyed|subdued|restrained +low-keyed|1 +(adj)|low-key|subdued|restrained +low-level|4 +(adj)|low +(adj)|subordinate |adjunct|assistant|associate|buck|under|secondary|inferior|subordinate +(adj)|inferior +(adj)|low +low-level formatting|1 +(noun)|initialization|initialisation|format|formatting|data format|data formatting +low-level radioactive waste|1 +(noun)|radioactive waste +low-lying|2 +(adj)|low +(adj)|sea-level|lowland +low-necked|1 +(adj)|decollete|low-cut|necked +low-pitched|2 +(adj)|low |alto|contralto|baritone|bass|deep|contrabass|double-bass|throaty +(adj)|inclined +low-powered|1 +(adj)|powerless |weak +low-pressure|1 +(adj)|unaggressive |nonaggressive +low-priced|1 +(adj)|low-cost|affordable|cheap |inexpensive +low-resolution|1 +(adj)|low-resolution +low-rise|1 +(adj)|low-rise |walk-up +low-salt diet|1 +(noun)|low-sodium diet|salt-free diet|diet +low-set|3 +(adj)|chunky|dumpy|squat|squatty|stumpy|short +(adj)|lowset|low +(adj)| +low-sodium diet|1 +(noun)|low-salt diet|salt-free diet|diet +low-spirited|1 +(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|dejected +low-spiritedness|1 +(noun)|downheartedness|dispiritedness|sadness|unhappiness +low-sudsing|1 +(adj)|low-sudsing +low-tech|1 +(adj)|low-tech +low-tension|1 +(adj)|low-tension |low-voltage +low-toned|1 +(adj)|low|soft +low-voltage|1 +(adj)|low-tension +low-warp-loom|1 +(noun)|handloom +low-water mark|2 +(noun)|nadir|adversity|hardship|hard knocks +(noun)|water line|watermark +low archipelago|1 +(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago +low beam|1 +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +low blow|1 +(noun)|abuse|insult|revilement|contumely|vilification +low blueberry|1 +(noun)|low-bush blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry|blueberry bush +low brass|1 +(noun)|brass +low comedy|1 +(noun)|comedy +low countries|1 +(noun)|Low Countries|geographical area|geographic area|geographical region|geographic region +low density|1 +(noun)|rarity|tenuity|density|denseness +low explosive|1 +(noun)|explosive +low frequency|2 +(noun)|LF|radio frequency +(noun)|low pitch|pitch +low gallberry holly|1 +(noun)|holly +low gear|1 +(noun)|first gear|first|low|gear|gear mechanism +low german|1 +(noun)|Low German|Plattdeutsch|West Germanic|West Germanic language +low latin|1 +(noun)|Low Latin|Latin +low level flight|1 +(noun)|terrain flight|flight|flying +low mass|1 +(noun)|Low Mass|Mass +low pitch|1 +(noun)|low frequency|pitch +low pressure|1 +(noun)|low|depression|air mass +low quality|1 +(noun)|inferiority|quality|caliber|calibre +low relief|1 +(noun)|bas relief|basso relievo|basso rilievo|relief|relievo|rilievo|embossment|sculptural relief +low spirits|1 +(noun)|depression +low st andrew's cross|1 +(noun)|low St Andrew's cross|Hypericum hypericoides|St John's wort +low status|1 +(noun)|status|position +low sunday|1 +(noun)|Low Sunday|Christian holy day +low temperature|1 +(noun)|coldness|cold|temperature|vasoconstrictor|vasoconstrictive +low tide|1 +(noun)|low water|tide +low water|1 +(noun)|low tide|tide +lowan|1 +(noun)|mallee fowl|leipoa|Leipoa ocellata|megapode|mound bird|mound-bird|mound builder|scrub fowl +lowball|1 +(verb)|underestimate|estimate|gauge|approximate|guess|judge +lowborn|1 +(adj)|lowborn |base|baseborn|humble|lowly|common|plebeian|vulgar|unwashed|ignoble|ungentle|untitled|lower-class|low-class|plebeian +lowbred|1 +(adj)|ill-bred|bounderish|rude|underbred|yokelish|unrefined +lowbrow|2 +(adj)|lowbrowed|uncultivated|nonintellectual +(noun)|philistine|plebeian|pleb +lowbrowed|1 +(adj)|lowbrow|uncultivated|nonintellectual +lowbush cranberry|1 +(noun)|lingonberry|mountain cranberry|cowberry|berry +lowbush penstemon|1 +(noun)|shrubby penstemon|Penstemon fruticosus|wildflower|wild flower +lowell|4 +(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet +(noun)|Lowell|Percival Lowell|astronomer|uranologist|stargazer +(noun)|Lowell|Amy Lowell|poet +(noun)|Lowell|Abbott Lawrence Lowell|educator|pedagogue +lowell jackson thomas|1 +(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist +lowell thomas|1 +(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist +lower|21 +(adj)|less|inferior +(adj)|junior-grade|inferior|lower-ranking|lowly|petty|secondary|subaltern|subordinate|junior +(adj)|bottom +(adj)|chthonian|chthonic|nether|infernal +(adj)|low |debased|devalued|degraded|depressed|down|low-level|poor|reduced|rock-bottom|inferior +(adj)|low |deep|low-level|low-lying|lowset|low-set|nether|under|squat|underslung|down|inferior|short +(adj)|low|low-toned|soft +(adj)|low|unrefined +(adj)|low |low-pitched|alto|contralto|baritone|bass|deep|contrabass|double-bass|throaty +(adj)|abject|low|low-down|miserable|scummy|scurvy|contemptible +(adj)|humble|low|lowly|modest|small|inferior +(adj)|depleted|low|insufficient |deficient +(adj)|broken|crushed|humbled|humiliated|low|humble +(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected +(adj)|first|low|forward +(noun)|lower berth|berth|bunk|built in bed +(verb)|take down|let down|get down|bring down|move|displace +(verb)|lour|devalue +(verb)|depress|change|alter|modify +(verb)|turn down|lour|decrease|lessen|minify +(verb)|frown|glower|lour|grimace|make a face|pull a face +lower-case letter|1 +(noun)|small letter|lower case|minuscule|character|grapheme|graphic symbol +lower-class|2 +(adj)|lower-class |low-class|non-U|proletarian|propertyless|wage-earning|working-class|blue-collar|upper-lower-class|lowborn|proletarian|propertyless +(adj)|lower-class |low-class|non-U|proletarian|propertyless|wage-earning|working-class|blue-collar|upper-lower-class|lowborn|proletarian|propertyless +lower-middle-class|1 +(adj)|middle-class +lower-normandy|1 +(noun)|Basse-Normandie|Lower-Normandy|French region +lower-ranking|1 +(adj)|junior-grade|inferior|lower|lowly|petty|secondary|subaltern|subordinate|junior +lower berth|1 +(noun)|lower|berth|bunk|built in bed +lower bound|1 +(noun)|boundary|edge|bound +lower california|1 +(noun)|Lower California|Baja California|peninsula +lower cannon|1 +(noun)|vambrace|cannon +lower carboniferous|1 +(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period|geological period +lower carboniferous period|1 +(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period|geological period +lower case|1 +(noun)|small letter|lower-case letter|minuscule|character|grapheme|graphic symbol +lower class|1 +(noun)|class|social class|socio-economic class +lower court|1 +(noun)|inferior court|court|tribunal|judicature +lower criticism|1 +(noun)|textual criticism +lower deck|1 +(noun)|third deck|deck +lower egypt|1 +(noun)|Lower Egypt|administrative district|administrative division|territorial division +lower jaw|1 +(noun)|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw|articulator +lower jawbone|1 +(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|jawbone|jowl|jaw|articulator +lower limit|2 +(noun)|minimum|extremum|peak|small indefinite quantity|small indefinite amount +(noun)|limit|demarcation|demarcation line +lower mantle|1 +(noun)|layer +lower oneself|1 +(verb)|condescend|stoop|act|move +lower paleolithic|1 +(noun)|Lower Paleolithic|time period|period of time|period +lower peninsula|1 +(noun)|Lower Peninsula|peninsula +lower rank|1 +(noun)|inferiority|lower status|low status +lower respiratory infection|1 +(noun)|respiratory tract infection|respiratory infection +lower respiratory tract|1 +(noun)|respiratory tract +lower respiratory tract smear|1 +(noun)|bronchoscopic smear|sputum smear|smear|cytologic smear|cytosmear +lower saxony|1 +(noun)|Lower Saxony|state|province +lower status|1 +(noun)|inferiority|lower rank|low status +lowercase|1 +(adj)|lowercase |little|minuscule|small|minuscule|minuscular +lowerclassman|1 +(noun)|underclassman|undergraduate|undergrad +lowered|1 +(adj)|lowered |down +lowering|3 +(adj)|heavy|sullen|threatening|cloudy +(noun)|decrease|diminution|reduction|step-down +(noun)|letting down|movement +lowermost|1 +(adj)|bottommost|nethermost|bottom +lowest|14 +(adj)|last|last-place|worst +(adj)|least|smallest|minimal +(adj)|bottom|minimal +(adj)|low |debased|devalued|degraded|depressed|down|low-level|poor|reduced|rock-bottom|inferior +(adj)|low |deep|low-level|low-lying|lowset|low-set|nether|under|squat|underslung|down|inferior|short +(adj)|low|low-toned|soft +(adj)|low|unrefined +(adj)|low |low-pitched|alto|contralto|baritone|bass|deep|contrabass|double-bass|throaty +(adj)|abject|low|low-down|miserable|scummy|scurvy|contemptible +(adj)|humble|low|lowly|modest|small|inferior +(adj)|depleted|low|insufficient |deficient +(adj)|broken|crushed|humbled|humiliated|low|humble +(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected +(adj)|first|low|forward +lowest common multiple|1 +(noun)|least common multiple|lcm|multiple +lowland|2 +(adj)|lowland |low-lying|sea-level +(noun)|natural depression|depression +lowland burrowing treefrog|1 +(noun)|northern casque-headed frog|Pternohyla fodiens|tree toad|tree frog|tree-frog +lowland fir|1 +(noun)|lowland white fir|giant fir|grand fir|Abies grandis|silver fir +lowland white fir|1 +(noun)|lowland fir|giant fir|grand fir|Abies grandis|silver fir +lowlander|1 +(noun)|Lowlander|Scot|Scotsman|Scotchman +lowlands|2 +(noun)|Lowlands|Lowlands of Scotland|lowland +(noun)|lowland|natural depression|depression +lowlands of scotland|1 +(noun)|Lowlands|Lowlands of Scotland|lowland +lowlife|1 +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|scum bag|so-and-so|git|unpleasant person|disagreeable person +lowly|4 +(adj)|humble|low|modest|small|inferior +(adj)|junior-grade|inferior|lower|lower-ranking|petty|secondary|subaltern|subordinate|junior +(adj)|humble|menial|unskilled +(adj)|base|baseborn|humble|lowborn +lowness|1 +(noun)|height|tallness +lowry|2 +(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter +(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer|author +lowset|1 +(adj)|low-set|low +lox|2 +(noun)|liquid oxygen|LOX|oxygen|O|atomic number 8 +(noun)|smoked salmon +loxapine|1 +(noun)|Loxitane|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +loxia|1 +(noun)|Loxia|genus Loxia|bird genus +loxia curvirostra|1 +(noun)|crossbill|Loxia curvirostra|finch +loxitane|1 +(noun)|loxapine|Loxitane|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +loxodonta|1 +(noun)|Loxodonta|genus Loxodonta|mammal genus +loxodonta africana|1 +(noun)|African elephant|Loxodonta africana|elephant +loxodrome|1 +(noun)|rhumb line|rhumb|line +loxoma|1 +(noun)|Loxoma|genus Loxoma|fern genus +loxomataceae|1 +(noun)|Loxomataceae|family Loxomataceae|fern family +loxostege|1 +(noun)|Loxostege|genus Loxostege|arthropod genus +loxostege similalis|2 +(noun)|garden webworm|Loxostege similalis|webworm +(noun)|Loxostege similalis|webworm moth +loya jirga|1 +(noun)|Loya Jirga|Jirga +loyal|3 +(adj)|loyal |allegiant|doglike|hard-core|hardcore|leal|liege|true-blue|patriotic +(adj)|patriotic |chauvinistic|flag-waving|jingoistic|nationalistic|ultranationalistic|superpatriotic +(adj)|firm|truehearted|fast|faithful +loyalist|1 +(noun)|stalwart|supporter|protagonist|champion|admirer|booster|friend +loyalist volunteer force|1 +(noun)|Loyalist Volunteer Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +loyalty|3 +(noun)|fidelity|faithfulness +(noun)|love +(noun)|commitment|allegiance|dedication|cooperation +loyang|1 +(noun)|Luoyang|Loyang|city|metropolis|urban center +loyola|1 +(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian|theologist|theologizer|theologiser|saint +lozal|1 +(noun)|indapamide|Lozal|diuretic drug|diuretic|water pill +lozenge|2 +(noun)|candy +(noun)|pill|tablet|tab|dose +lozier|1 +(noun)|Lozier|Clemence Sophia Harned Lozier|doctor|doc|physician|MD|Dr.|medico +lp|1 +(noun)|LP|L-P|phonograph record|phonograph recording|record|disk|disc|platter +lpn|1 +(noun)|licensed practical nurse|LPN|practical nurse|nurse +lsd|1 +(noun)|lysergic acid diethylamide|LSD|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug|drug of abuse|street drug|controlled substance +ltd.|1 +(noun)|limited company|Ltd.|Ld.|company +ltm|1 +(noun)|long-term memory|LTM|memory|remembering +ltte|1 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +lu|1 +(noun)|lutetium|lutecium|Lu|atomic number 71|metallic element|metal +luanda|1 +(noun)|Luanda|Angolan capital|national capital|port +luba|2 +(noun)|Luba|Bantu +(noun)|Luba|Tshiluba|Bantu|Bantoid language +lubavitch|2 +(noun)|Lubavitch|town +(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement +lubavitch movement|1 +(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement +lubavitcher|1 +(noun)|Lubavitcher|Orthodox Jew +lubber|2 +(noun)|lout|clod|stumblebum|goon|oaf|lummox|lump|gawk|clumsy person +(noun)|landlubber|landsman|novice|beginner|tyro|tiro|initiate +lubber's hole|1 +(noun)|hole +lubber's line|1 +(noun)|lubber line|lubber's mark|lubber's point|reference point|point of reference|reference +lubber's mark|1 +(noun)|lubber's line|lubber line|lubber's point|reference point|point of reference|reference +lubber's point|1 +(noun)|lubber's line|lubber line|lubber's mark|reference point|point of reference|reference +lubber line|1 +(noun)|lubber's line|lubber's mark|lubber's point|reference point|point of reference|reference +lubberly|2 +(adj)|unskilled +(adj)|landlubberly|unseamanlike +lubbock|1 +(noun)|Lubbock|city|metropolis|urban center +lube|1 +(verb)|lubricate|fill|fill up|make full +lubeck|1 +(noun)|Lubeck|city|metropolis|urban center +lubitsch|1 +(noun)|Lubitsch|Ernst Lubitsch|film maker|filmmaker|film producer|movie maker +lublin|1 +(noun)|Lublin|city|metropolis|urban center +lubricant|1 +(noun)|lubricator|lubricating substance|material|stuff +lubricate|3 +(verb)|be +(verb)|lube|fill|fill up|make full +(verb)|change|alter|modify +lubricated|1 +(adj)|lubricated |greased +lubricating oil|1 +(noun)|grease|oil +lubricating substance|1 +(noun)|lubricant|lubricator|material|stuff +lubricating system|1 +(noun)|force-feed lubricating system|force feed|pressure-feed lubricating system|pressure feed|mechanical system +lubrication|2 +(noun)|condition|status +(noun)|application|coating|covering +lubricator|1 +(noun)|lubricant|lubricating substance|material|stuff +lubricious|2 +(adj)|slippery |slippy +(adj)|lustful|prurient|salacious|sexy +lubumbashi|1 +(noun)|Lubumbashi|Elisabethville|city|metropolis|urban center +lucania|1 +(noun)|Basilicata|Lucania|Italian region +lucanidae|1 +(noun)|Lucanidae|family Lucanidae|arthropod family +lucas|1 +(noun)|Lucas|George Lucas|film maker|filmmaker|film producer|movie maker|screenwriter|film writer +luce|2 +(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher +(noun)|Luce|Clare Booth Luce|dramatist|playwright +lucent|1 +(adj)|aglow|glowing|lambent|luminous|bright +lucerne|1 +(noun)|alfalfa|Medicago sativa|medic|medick|trefoil +luchino visconti|1 +(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker|filmmaker|film producer|movie maker +luciano pavarotti|1 +(noun)|Pavarotti|Luciano Pavarotti|tenor +lucid|4 +(adj)|limpid|luculent|pellucid|crystal clear|perspicuous|clear +(adj)|sane +(adj)|coherent|logical|rational +(adj)|crystalline|crystal clear|limpid|pellucid|transparent|clear +lucidity|2 +(noun)|clarity|pellucidity|clearness|limpidity|comprehensibility|understandability +(noun)|sanity|saneness +lucidly|1 +(adv)|pellucidly|limpidly|perspicuously +lucifer|2 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +(noun)|match|friction match|lighter|light|igniter|ignitor +luciferin|1 +(noun)|animal pigment +lucifugal|1 +(adj)|lucifugous|tropism +lucifugous|1 +(adj)|lucifugal|tropism +lucilia|1 +(noun)|Lucilia|genus Lucilia|arthropod genus +lucille ball|1 +(noun)|Ball|Lucille Ball|actress|comedienne +lucite|1 +(noun)|Lucite|Perspex|polymethyl methacrylate +lucius annaeus seneca|1 +(noun)|Seneca|Lucius Annaeus Seneca|statesman|solon|national leader|dramatist|playwright|philosopher +lucius clay|1 +(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general|full general +lucius cornelius sulla felix|1 +(noun)|Sulla|Lucius Cornelius Sulla Felix|general|full general +lucius domitius ahenobarbus|1 +(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor|Emperor of Rome +lucius dubignon clay|1 +(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general|full general +lucius licinius luculus|1 +(noun)|Luculus|Lucius Licinius Luculus|general|full general +lucius quinctius cincinnatus|1 +(noun)|Cincinnatus|Lucius Quinctius Cincinnatus|statesman|solon|national leader +lucius tarquinius superbus|1 +(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king|male monarch +luck|3 +(noun)|fortune|destiny|fate|lot|circumstances|portion|condition +(noun)|fortune|chance|hazard|phenomenon +(noun)|fortune|phenomenon +luck into|1 +(verb)|enter upon|come upon|get|acquire +luck it|1 +(verb)|luck through|gamble|chance|risk|hazard|take chances|adventure|run a risk|take a chance +luck out|1 +(verb)|hit the jackpot|succeed|win|come through|bring home the bacon|deliver the goods +luck through|1 +(verb)|luck it|gamble|chance|risk|hazard|take chances|adventure|run a risk|take a chance +luckily|1 +(adv)|fortunately|fortuitously|as luck would have it +luckless|1 +(adj)|unlucky |hexed|jinxed|unfortunate +lucknow|2 +(noun)|Lucknow|city|metropolis|urban center +(noun)|Lucknow|siege|besieging|beleaguering|military blockade +lucky|3 +(adj)|fortunate +(adj)|lucky |apotropaic|hot|serendipitous|fortunate +(adj)|auspicious|encouraging|favorable|favourable|prosperous|propitious +lucky dip|2 +(noun)|lottery|drawing +(noun)|random sampling +lucky lindy|1 +(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator|aeronaut|airman|flier|flyer +lucrative|1 +(adj)|moneymaking|remunerative|profitable +lucre|2 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money +(noun)|net income|net|net profit|profit|profits|earnings|income +lucretia coffin mott|1 +(noun)|Mott|Lucretia Coffin Mott|suffragist|feminist|women's rightist|women's liberationist|libber +lucretius|1 +(noun)|Lucretius|Titus Lucretius Carus|philosopher|poet +lucrezia borgia|1 +(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady|noblewoman|peeress +lucubrate|1 +(verb)|elaborate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate|clarify|clear up|elucidate +lucubration|2 +(noun)|literary composition|literary work +(noun)|cogitation|study +luculent|1 +(adj)|limpid|lucid|pellucid|crystal clear|perspicuous|clear +lucullan|1 +(adj)|lavish|lush|plush|plushy|rich +luculus|1 +(noun)|Luculus|Lucius Licinius Luculus|general|full general +lucy|1 +(noun)|Lucy|Australopithecus afarensis +lucy craft laney|1 +(noun)|Laney|Lucy Craft Laney|educator|pedagogue +lucy in the sky with diamonds|1 +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +lucy maud montgomery|1 +(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer|author +lucy stone|1 +(noun)|Stone|Lucy Stone|feminist|women's rightist|women's liberationist|libber|suffragist +luda|1 +(noun)|Luda|Luta|conurbation|urban sprawl +luddite|2 +(noun)|Luddite|adversary|antagonist|opponent|opposer|resister +(noun)|Luddite|workman|working man|working person +ludi saeculares|1 +(noun)|Ludi Saeculares|secular games|celebration|festivity +ludian|1 +(noun)|Ludian|Baltic-Finnic +ludicrous|2 +(adj)|farcical|ridiculous|humorous |humourous +(adj)|absurd|cockeyed|derisory|idiotic|laughable|nonsensical|preposterous|ridiculous|foolish +ludicrously|1 +(adv)|laughably|ridiculously|preposterously +ludo|1 +(noun)|board game +ludwig boltzmann|1 +(noun)|Boltzmann|Ludwig Boltzmann|physicist +ludwig josef johan wittgenstein|1 +(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher +ludwig mies van der rohe|1 +(noun)|Mies Van Der Rohe|Ludwig Mies Van Der Rohe|architect|designer +ludwig van beethoven|1 +(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer +ludwig wittgenstein|1 +(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher +lufengpithecus|1 +(noun)|Lufengpithecus|genus Lufengpithecus|mammal genus +luff|3 +(noun)|sailing +(verb)|point|sail +(verb)|roll|undulate|flap|wave +luffa|2 +(noun)|loofa|loofah|loufah sponge|fiber|fibre +(noun)|dishcloth gourd|sponge gourd|rag gourd|strainer vine|vine +luffa acutangula|1 +(noun)|angled loofah|sing-kwa|Luffa acutangula|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +luffa cylindrica|1 +(noun)|loofah|vegetable sponge|Luffa cylindrica|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +lufkin|1 +(noun)|Lufkin|town +luftwaffe|1 +(noun)|Luftwaffe|German Luftwaffe|air force|airforce +lug|6 +(noun)|Lug|Lugh|Celtic deity +(noun)|lugsail|fore-and-aft sail +(noun)|projection +(noun)|lugworm|lobworm|polychaete|polychete|polychaete worm|polychete worm +(verb)|tote|tug|transport|carry +(verb)|stuff|choke up|block|clog|choke off|clog up|back up|congest|choke|foul +lug wrench|1 +(noun)|wrench|spanner +luganda|1 +(noun)|LuGanda|Bantu|Bantoid language +luge|2 +(noun)|sled|sledge|sleigh +(verb)|toboggan|sled|sleigh +luger|2 +(noun)|Luger|semiautomatic pistol|semiautomatic +(noun)|slider|sledder +luggage|1 +(noun)|baggage|case +luggage carousel|1 +(noun)|carousel|carrousel|luggage carrousel|conveyer belt|conveyor belt|conveyer|conveyor|transporter +luggage carrier|1 +(noun)|carrier +luggage carrousel|1 +(noun)|carousel|carrousel|luggage carousel|conveyer belt|conveyor belt|conveyer|conveyor|transporter +luggage compartment|1 +(noun)|automobile trunk|trunk|compartment +luggage rack|1 +(noun)|roof rack|carrier +luggage van|1 +(noun)|baggage car|car|railcar|railway car|railroad car +lugger|1 +(noun)|boat +lugh|1 +(noun)|Lug|Lugh|Celtic deity +luging|1 +(noun)|tobogganing +lugosi|1 +(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor|histrion|player|thespian|role player +lugsail|1 +(noun)|lug|fore-and-aft sail +lugubrious|1 +(adj)|sorrowful +lugubriousness|1 +(noun)|gloominess|uncheerfulness +lugworm|1 +(noun)|lug|lobworm|polychaete|polychete|polychaete worm|polychete worm +luigi barnaba gregorio chiaramonti|1 +(noun)|Pius VII|Luigi Barnaba Gregorio Chiaramonti|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +luigi cherubini|1 +(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer +luigi galvani|1 +(noun)|Galvani|Luigi Galvani|physiologist +luigi pirandello|1 +(noun)|Pirandello|Luigi Pirandello|dramatist|playwright|novelist +luik|1 +(noun)|Liege|Luik|city|metropolis|urban center +luis bunuel|1 +(noun)|Bunuel|Luis Bunuel|film director +luis de gongora y argote|1 +(noun)|Gongora|Luis de Gongora y Argote|poet +lukasiewicz notation|1 +(noun)|prefix notation|Lukasiewicz notation|Polish notation|parenthesis-free notation +luke|2 +(noun)|Luke|Saint Luke|St. Luke|Apostle|Evangelist|saint +(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel|Gospels|evangel|book +lukewarm|2 +(adj)|tepid|warm +(adj)|halfhearted|unenthusiastic +lukewarmly|1 +(adv)|tepidly +lukewarmness|2 +(noun)|tepidity|tepidness|warmth|warmness +(noun)|tepidness|coldness|coolness|frigidity +lule burgas|1 +(noun)|Lule Burgas|battle of Lule Burgas|pitched battle +lull|5 +(noun)|letup|pause|intermission|break|interruption|suspension +(noun)|quiet|calmness +(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|still +(verb)|calm down|hush|quieten|silence|still|shut up|hush up +(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|still|comfort|soothe|console|solace +lullaby|2 +(noun)|cradlesong|berceuse|song +(noun)|cradlesong|song|strain +lulli|1 +(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer +lulling|1 +(adj)|calming|quietening|unalarming +lully|2 +(noun)|Lully|Raymond Lully|Ramon Lully|philosopher +(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer +lulu|1 +(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|looker|mantrap|dish|woman|adult female +luluabourg|1 +(noun)|Kananga|Luluabourg|city|metropolis|urban center +lumbago|1 +(noun)|lumbar pain|backache +lumbar|1 +(adj)|body part +lumbar artery|1 +(noun)|arteria lumbalis|artery|arteria|arterial blood vessel +lumbar nerve|1 +(noun)|spinal nerve|nervus spinalis +lumbar pain|1 +(noun)|lumbago|backache +lumbar plexus|2 +(noun)|plexus lumbalis|plexus|rete +(noun)|plexus lumbalis|nerve plexus +lumbar puncture|1 +(noun)|spinal puncture|spinal tap|centesis +lumbar vein|1 +(noun)|vena lumbalis|vein|vena|venous blood vessel +lumbar vertebra|1 +(noun)|vertebra +lumber|4 +(noun)|timber|building material +(noun)|baseball bat|bat|baseball equipment +(verb)|pound|walk +(verb)|log|fell|drop|strike down|cut down +lumber jacket|1 +(noun)|lumberjack|jacket +lumber room|1 +(noun)|storeroom|storage room|stowage +lumbering|2 +(adj)|heavy|ponderous|heavy-footed +(noun)|trade|craft +lumberjack|2 +(noun)|lumberman|feller|faller|laborer|manual laborer|labourer|jack +(noun)|lumber jacket|jacket +lumberman|1 +(noun)|lumberjack|feller|faller|laborer|manual laborer|labourer|jack +lumbermill|1 +(noun)|sawmill|factory|mill|manufacturing plant|manufactory +lumberyard|1 +(noun)|workplace|work +lumbosacral plexus|1 +(noun)|nerve plexus +lumbus|1 +(noun)|loin|body part +lumen|2 +(noun)|lm|luminous flux unit +(noun)|cavity|bodily cavity|cavum +luminal|1 +(noun)|sodium thiopental|phenobarbital|phenobarbitone|Luminal|purple heart|barbiturate +luminance|1 +(noun)|luminosity|brightness|brightness level|luminousness|light|physical property +luminance unit|1 +(noun)|light unit +luminary|1 +(noun)|leading light|guiding light|notable|notability|celebrity|famous person +luminesce|1 +(verb)|reflect|shine +luminescence|2 +(noun)|light|visible light|visible radiation +(noun)|glow|luminosity|brightness|brightness level|luminance|luminousness|light +luminescent|1 +(adj)|light +luminism|1 +(noun)|artistic movement|art movement +luminosity|1 +(noun)|brightness|brightness level|luminance|luminousness|light|physical property +luminous|1 +(adj)|aglow|glowing|lambent|lucent|bright +luminous energy|1 +(noun)|radiant energy +luminous flux|1 +(noun)|radiant flux +luminous flux unit|1 +(noun)|light unit +luminous intensity unit|1 +(noun)|candlepower unit|light unit +luminousness|1 +(noun)|luminosity|brightness|brightness level|luminance|light|physical property +lumma|1 +(noun)|Armenian monetary unit +lummox|1 +(noun)|lout|clod|stumblebum|goon|oaf|lubber|lump|gawk|clumsy person +lump|6 +(noun)|hunk|part|piece +(noun)|ball|clod|glob|clump|chunk|agglomeration +(noun)|swelling|puffiness|symptom +(noun)|lout|clod|stumblebum|goon|oaf|lubber|lummox|gawk|clumsy person +(verb)|chunk|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|collocate|chunk|group +lump sugar|1 +(noun)|sugar|refined sugar +lump sum|1 +(noun)|payment +lumpectomy|1 +(noun)|ablation|extirpation|cutting out|excision +lumpen|1 +(adj)|lumpish|unthinking|stupid +lumpenus|1 +(noun)|Lumpenus|genus Lumpenus|fish genus +lumpenus lumpretaeformis|1 +(noun)|snakeblenny|Lumpenus lumpretaeformis|prickleback +lumper|2 +(noun)|stevedore|loader|longshoreman|docker|dockhand|dock worker|dock-walloper|laborer|manual laborer|labourer|jack +(noun)|taxonomist|taxonomer|systematist +lumpfish|1 +(noun)|Cyclopterus lumpus|scorpaenoid|scorpaenoid fish +lumpish|1 +(adj)|lumpen|unthinking|stupid +lumpsucker|1 +(noun)|lumpfish|Cyclopterus lumpus +lumpy|2 +(adj)|chunky|unshapely +(adj)|uneven +lumpy jaw|1 +(noun)|cervicofacial actinomycosis|actinomycosis +luna|1 +(noun)|Luna|Roman deity +luna moth|1 +(noun)|Actias luna|saturniid|saturniid moth +lunacy|2 +(noun)|madness|insaneness|insanity +(noun)|folly|foolery|tomfoolery|craziness|indulgence|play|frolic|romp|gambol|caper +lunar|1 +(adj)|satellite +lunar calendar|1 +(noun)|calendar +lunar caustic|1 +(noun)|silver nitrate +lunar crater|1 +(noun)|crater +lunar day|1 +(noun)|day +lunar eclipse|1 +(noun)|eclipse|occultation +lunar excursion module|1 +(noun)|lunar module|LEM|spacecraft|ballistic capsule|space vehicle +lunar latitude|1 +(noun)|line +lunar module|1 +(noun)|lunar excursion module|LEM|spacecraft|ballistic capsule|space vehicle +lunar month|1 +(noun)|moon|lunation|synodic month|month +lunar time period|1 +(noun)|tide|time period|period of time|period +lunar year|1 +(noun)|year +lunaria|1 +(noun)|Lunaria|genus Lunaria|dilleniid dicot genus +lunaria annua|1 +(noun)|honesty|silver dollar|money plant|satin flower|satinpod|Lunaria annua|herb|herbaceous plant +lunate|1 +(adj)|crescent|crescent-shaped|semilunar|rounded +lunate bone|1 +(noun)|semilunar bone|os lunatum|carpal bone|carpal|wrist bone +lunatic|3 +(adj)|moonstruck|insane +(noun)|madman|maniac|sick person|diseased person|sufferer +(noun)|daredevil|madcap|hothead|swashbuckler|harum-scarum|adventurer|venturer +lunatic fringe|1 +(noun)|political unit +lunation|1 +(noun)|lunar month|moon|synodic month|month +lunch|3 +(noun)|luncheon|tiffin|dejeuner|meal|repast +(verb)|eat +(verb)|feed|give +lunch meat|1 +(noun)|luncheon meat|cold cuts +lunch meeting|1 +(noun)|luncheon meeting|meeting|get together +lunch period|1 +(noun)|lunchtime|mealtime +luncheon|1 +(noun)|lunch|tiffin|dejeuner|meal|repast +luncheon meat|1 +(noun)|lunch meat|cold cuts +luncheon meeting|1 +(noun)|lunch meeting|meeting|get together +luncheon voucher|1 +(noun)|meal ticket|coupon|voucher +luncher|1 +(noun)|eater|feeder +lunching|1 +(noun)|eating|feeding +lunchroom|1 +(noun)|restaurant|eating house|eating place +lunchtime|1 +(noun)|lunch period|mealtime +lund|1 +(noun)|Lund|city|metropolis|urban center +lunda|1 +(noun)|Lunda|genus Lunda|bird genus +lunda cirrhata|1 +(noun)|tufted puffin|Lunda cirrhata|puffin +lunette|2 +(noun)|fortification|munition +(noun)|fenestella|opening +lung|1 +(noun)|respiratory organ +lung-power|1 +(noun)|voice +lung cancer|1 +(noun)|carcinoma +lunge|2 +(noun)|lurch|motion|movement|move +(verb)|hurl|hurtle|thrust|move +lungen|1 +(noun)|longan|longanberry|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +lunger|2 +(noun)|mover +(noun)|consumptive|sick person|diseased person|sufferer +lungfish|1 +(noun)|bony fish +lungi|1 +(noun)|lungyi|longyi|piece of cloth|piece of material +lungless salamander|1 +(noun)|plethodont|salamander +lungyi|1 +(noun)|lungi|longyi|piece of cloth|piece of material +lunisolar|1 +(adj)|satellite|star +lunisolar calendar|1 +(noun)|calendar +lunitidal interval|1 +(noun)|time interval|interval +lunkhead|1 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +lunt|1 +(noun)|Lunt|Alfred Lunt|actor|histrion|player|thespian|role player +lunula|2 +(noun)|half-moon|lunule|area|region +(noun)|decoration|ornament|ornamentation +lunule|1 +(noun)|half-moon|lunula|area|region +luo|1 +(noun)|Luo|Nilotic|Nilotic language +luoyang|1 +(noun)|Luoyang|Loyang|city|metropolis|urban center +lupin|1 +(noun)|lupine|woody plant|ligneous plant +lupine|2 +(adj)|canine|canid +(noun)|lupin|woody plant|ligneous plant +lupinus|1 +(noun)|Lupinus|genus Lupinus|rosid dicot genus +lupinus albus|1 +(noun)|white lupine|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine|lupin +lupinus arboreus|1 +(noun)|tree lupine|Lupinus arboreus|shrub|bush +lupinus luteus|1 +(noun)|yellow lupine|Lupinus luteus|lupine|lupin +lupinus perennis|1 +(noun)|wild lupine|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub|suffrutex +lupinus subcarnosus|1 +(noun)|bluebonnet|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine|lupin +lupinus texensis|1 +(noun)|Texas bluebonnet|Lupinus texensis|lupine|lupin +lupus|2 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +(noun)|Lupus|constellation +lupus erythematosus|1 +(noun)|LE|lupus|autoimmune disease|autoimmune disorder +lupus vulgaris|1 +(noun)|lupus|tuberculosis|TB|T.B. +lurch|9 +(noun)|stumble|stagger|gait +(noun)|defeat|licking +(noun)|pitch|pitching|motion|movement|move|motility +(noun)|lunge|motion|movement|move +(verb)|stagger|reel|keel|swag|careen|walk +(verb)|pitch|shift|move +(verb)|travel|go|move|locomote +(verb)|prowl|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around +(verb)|skunk|get the better of|overcome|defeat +lurcher|1 +(noun)|lurker|skulker|waiter +lurching|1 +(adj)|stumbling|staggering|weaving|unsteady +lure|4 +(noun)|enticement|come-on|attraction|attractiveness +(noun)|bait|come-on|hook|sweetener|temptation|enticement +(noun)|bait|decoy|device +(verb)|entice|tempt|provoke|stimulate +lurid|4 +(adj)|violent +(adj)|shocking|sensational +(adj)|bright +(adj)|colorless |colourless +luridness|3 +(noun)|sensationalism|journalese +(noun)|lividness|lividity|paleness|pallidness|pallor|wanness|achromasia|complexion|skin color|skin colour +(noun)|ghastliness|grimness|gruesomeness|frightfulness +lurk|3 +(verb)|skulk|hide|conceal +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|mill about|mill around|be +(verb)|ambush|scupper|bushwhack|waylay|ambuscade|lie in wait|wait +lurker|1 +(noun)|skulker|lurcher|waiter +lurking|2 +(adj)|concealed +(adj)|furtive|skulking|sneak|sneaky|stealthy|surreptitious|concealed +lurking place|1 +(noun)|hiding place +lusaka|1 +(noun)|Lusaka|capital of Zambia|national capital +lusatian|1 +(noun)|Sorbian|Lusatian|Slavic|Slavic language|Slavonic|Slavonic language +luschka's tonsil|1 +(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue|lymphoid tissue +luscinia|1 +(noun)|Luscinia|genus Luscinia|bird genus +luscinia luscinia|1 +(noun)|thrush nightingale|Luscinia luscinia|thrush +luscinia megarhynchos|1 +(noun)|nightingale|Luscinia megarhynchos|thrush +luscious|2 +(adj)|juicy|red-hot|voluptuous|sexy +(adj)|delectable|delicious|pleasant-tasting|scrumptious|toothsome|yummy|tasteful +lusciously|1 +(adv)|deliciously|scrumptiously +lusciousness|1 +(noun)|delectability|deliciousness|toothsomeness|appetizingness|appetisingness +lush|4 +(adj)|exuberant|luxuriant|profuse|riotous|abundant +(adj)|lavish|lucullan|plush|plushy|rich +(adj)|succulent|juicy +(noun)|alcoholic|alky|dipsomaniac|boozer|soaker|souse|drunkard|drunk|rummy|sot|inebriate +lushness|1 +(noun)|luxuriance|abundance|copiousness|teemingness +lushun|1 +(noun)|Lushun|Port Arthur|city|metropolis|urban center|port +lusitania|1 +(noun)|Lusitania|geographical area|geographic area|geographical region|geographic region +lusitanian|2 +(adj)|Portuguese|Lusitanian +(adj)|Lusitanian|geographical area|geographic area|geographical region|geographic region +lust|3 +(noun)|lecherousness|lustfulness|sexual desire|concupiscence|physical attraction +(noun)|luxuria|mortal sin|deadly sin +(verb)|crave|hunger|thirst|starve|desire|want +lust after|1 +(verb)|lech after|desire|want +lust for learning|1 +(noun)|desire to know|thirst for knowledge|curiosity|wonder +luster|3 +(noun)|lustre|brilliancy|splendor|splendour|brightness +(noun)|shininess|sheen|lustre|radiance|radiancy|shine|effulgence|refulgence|refulgency +(noun)|lustre|glaze +lusterless|2 +(adj)|lackluster|lacklustre|lustreless|dull +(adj)|lackluster|lacklustre|lustreless|dull +lusterlessness|1 +(noun)|flatness|lustrelessness|mat|matt|matte|dullness|dulness +lusterware|1 +(noun)|pottery|clayware +lustful|3 +(adj)|lubricious|prurient|salacious|sexy +(adj)|lascivious|lewd|libidinous|sexy +(adj)|lusty|passionate +lustfulness|1 +(noun)|lecherousness|lust|sexual desire|concupiscence|physical attraction +lustiness|1 +(noun)|robustness|hardiness|strength +lustrate|1 +(verb)|purify|purge|sanctify +lustre|3 +(noun)|luster|glaze +(noun)|luster|brilliancy|splendor|splendour|brightness +(noun)|shininess|sheen|luster|radiance|radiancy|shine|effulgence|refulgence|refulgency +lustreless|2 +(adj)|lackluster|lacklustre|lusterless|dull +(adj)|lackluster|lacklustre|lusterless|dull +lustrelessness|1 +(noun)|flatness|lusterlessness|mat|matt|matte|dullness|dulness +lustrous|3 +(adj)|bright|burnished|shining|shiny|polished +(adj)|glorious +(adj)|glistening|glossy|sheeny|shiny|shining|bright +lustrum|2 +(noun)|time period|period of time|period +(noun)|ceremony +lusty|2 +(adj)|lustful|passionate +(adj)|hearty|full-blooded|red-blooded|healthy +lusus naturae|1 +(noun)|freak|monster|monstrosity|mutant|mutation|variation|sport +luta|1 +(noun)|Luda|Luta|conurbation|urban sprawl +lutanist|1 +(noun)|lutist|lutenist|musician|instrumentalist|player +lute|2 +(noun)|luting|sealing material +(noun)|chordophone +luteal|1 +(adj)|endocrine gland|endocrine|ductless gland +luteal phase|1 +(noun)|secretory phase|phase|stage +lutecium|1 +(noun)|lutetium|Lu|atomic number 71|metallic element|metal +lutefisk|1 +(noun)|lutfisk|dish +lutein|1 +(noun)|xanthophyll|xanthophyl|carotenoid +luteinizing hormone|1 +(noun)|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +lutenist|1 +(noun)|lutist|lutanist|musician|instrumentalist|player +luteotropin|1 +(noun)|prolactin|lactogenic hormone|lactogen|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +lutetium|1 +(noun)|lutecium|Lu|atomic number 71|metallic element|metal +lutfisk|1 +(noun)|lutefisk|dish +luther|1 +(noun)|Luther|Martin Luther|theologian|theologist|theologizer|theologiser +luther burbank|1 +(noun)|Burbank|Luther Burbank|horticulturist|plantsman +lutheran|3 +(adj)|Lutheran|theologian|theologist|theologizer|theologiser +(adj)|Lutheran|Protestant denomination +(noun)|Lutheran|disciple|adherent +lutheran church|1 +(noun)|Lutheran Church|Protestant denomination +lutheranism|1 +(noun)|Lutheranism|Protestantism +luthier|1 +(noun)|craftsman|artisan|journeyman|artificer +luting|1 +(noun)|lute|sealing material +lutist|1 +(noun)|lutanist|lutenist|musician|instrumentalist|player +lutjanidae|1 +(noun)|Lutjanidae|family Lutjanidae|fish family +lutjanus|1 +(noun)|Lutjanus|genus Lutjanus|fish genus +lutjanus analis|1 +(noun)|mutton snapper|muttonfish|Lutjanus analis|snapper +lutjanus apodus|1 +(noun)|schoolmaster|Lutjanus apodus|snapper +lutjanus blackfordi|1 +(noun)|red snapper|Lutjanus blackfordi|snapper +lutjanus griseus|1 +(noun)|gray snapper|mangrove snapper|Lutjanus griseus|snapper +lutra|1 +(noun)|Lutra|genus Lutra|mammal genus +lutra canadensis|1 +(noun)|river otter|Lutra canadensis|otter +lutra lutra|1 +(noun)|Eurasian otter|Lutra lutra|otter +lutrinae|1 +(noun)|Lutrinae|subfamily Lutrinae|mammal family +lutyens|1 +(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect|designer +lutzen|1 +(noun)|Lutzen|battle of Lutzen|pitched battle +luvaridae|1 +(noun)|Luvaridae|family Luvaridae|fish family +luvarus|1 +(noun)|Luvarus|genus Luvarus|fish genus +luvarus imperialis|1 +(noun)|louvar|Luvarus imperialis|scombroid|scombroid fish +luvian|1 +(noun)|Luwian|Luvian|Anatolian|Anatolian language +luwian|1 +(noun)|Luwian|Luvian|Anatolian|Anatolian language +lux|1 +(noun)|lx|illumination unit +luxate|1 +(verb)|dislocate|splay|slip|move|displace +luxation|1 +(noun)|shift|displacement +luxe|1 +(adj)|deluxe|de luxe|luxury|elegant +luxembourg|2 +(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital +(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country|European nation +luxembourg-ville|1 +(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital +luxembourg city|1 +(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital +luxembourg franc|1 +(noun)|Luxembourg franc|franc +luxembourger|1 +(noun)|Luxemburger|Luxembourger|European +luxembourgian|1 +(adj)|Luxembourgian|European country|European nation +luxemburg|2 +(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital +(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country|European nation +luxemburger|3 +(adj)|Luxemburger|national capital +(adj)|Luxemburger|European country|European nation +(noun)|Luxemburger|Luxembourger|European +luxor|1 +(noun)|Luxor|El-Aksur|city|metropolis|urban center +luxuria|1 +(noun)|lust|mortal sin|deadly sin +luxuriance|1 +(noun)|lushness|abundance|copiousness|teemingness +luxuriant|2 +(adj)|elaborate|fancy +(adj)|exuberant|lush|profuse|riotous|abundant +luxuriate|3 +(verb)|wanton|consume|squander|waste|ware +(verb)|indulge|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|boom|prosper|thrive|get ahead|flourish|expand +luxurious|2 +(adj)|epicurean|sybaritic|voluptuary|voluptuous|indulgent +(adj)|deluxe|gilded|opulent|princely|sumptuous|rich +luxuriously|1 +(adv)|high|richly +luxuriousness|1 +(noun)|luxury|opulence|sumptuousness|wealth|wealthiness +luxury|4 +(adj)|deluxe|de luxe|luxe|elegant +(noun)|indulgence|self-indulgence +(noun)|lavishness|sumptuosity|sumptuousness|expensiveness +(noun)|luxuriousness|opulence|sumptuousness|wealth|wealthiness +luxury liner|1 +(noun)|express luxury liner|liner|ocean liner +luyia|1 +(noun)|Luyia|Bantu|Bantoid language +luzon|1 +(noun)|Luzon|island +lv|1 +(adj)|fifty-five|55|cardinal +lvi|1 +(adj)|fifty-six|56|cardinal +lvii|1 +(adj)|fifty-seven|57|cardinal +lviii|1 +(adj)|fifty-eight|58|cardinal +lw|1 +(noun)|lawrencium|Lw|atomic number 103|chemical element|element +lwei|1 +(noun)|Angolan monetary unit +lx|3 +(adj)|sixty|60|threescore|cardinal +(noun)|sixty|60|LX|large integer +(noun)|lux|illumination unit +lxi|1 +(adj)|sixty-one|61|cardinal +lxii|1 +(adj)|sixty-two|62|cardinal +lxiii|1 +(adj)|sixty-three|63|cardinal +lxiv|1 +(adj)|sixty-four|64|cardinal +lxv|1 +(adj)|sixty-five|65|cardinal +lxvi|1 +(adj)|sixty-six|66|cardinal +lxvii|1 +(adj)|sixty-seven|67|cardinal +lxviii|1 +(adj)|sixty-eight|68|cardinal +lxx|2 +(adj)|seventy|70|cardinal +(noun)|seventy|70|LXX|large integer +lxxi|1 +(adj)|seventy-one|71|cardinal +lxxii|1 +(adj)|seventy-two|72|cardinal +lxxiii|1 +(adj)|seventy-three|73|cardinal +lxxiv|1 +(adj)|seventy-four|74|cardinal +lxxv|1 +(adj)|seventy-five|75|cardinal +lxxvi|1 +(adj)|seventy-six|76|cardinal +lxxvii|1 +(adj)|seventy-seven|77|cardinal +lxxviii|1 +(adj)|seventy-eight|78|cardinal +lxxx|2 +(adj)|eighty|80|fourscore|cardinal +(noun)|eighty|80|LXXX|fourscore|large integer +lxxxi|1 +(adj)|eighty-one|81|cardinal +lxxxii|1 +(adj)|eighty-two|82|cardinal +lxxxiii|1 +(adj)|eighty-three|83|cardinal +lxxxiv|1 +(adj)|eighty-four|84|cardinal +lxxxv|1 +(adj)|eighty-five|85|cardinal +lxxxvi|1 +(adj)|eighty-six|86|cardinal +lxxxvii|1 +(adj)|eighty-seven|87|cardinal +lxxxviii|1 +(adj)|eighty-eight|88|cardinal +lyallpur|1 +(noun)|Faisalabad|Lyallpur|city|metropolis|urban center +lycaena|1 +(noun)|Lycaena|genus Lycaena|arthropod genus +lycaena hypophlaeas|1 +(noun)|American copper|Lycaena hypophlaeas|copper +lycaenid|1 +(noun)|lycaenid butterfly|butterfly +lycaenid butterfly|1 +(noun)|lycaenid|butterfly +lycaenidae|1 +(noun)|Lycaenidae|family Lycaenidae|arthropod family +lycaeon|1 +(noun)|Lycaeon|genus Lycaeon|mammal genus +lycanthrope|1 +(noun)|werewolf|wolfman|mythical monster|mythical creature +lycanthropy|1 +(noun)|magical ability|magical power +lycaon pictus|1 +(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog +lycee|1 +(noun)|secondary school|lyceum|Gymnasium|middle school|school +lyceum|2 +(noun)|secondary school|lycee|Gymnasium|middle school|school +(noun)|hall +lychee|1 +(noun)|litchi|litchi nut|litchee|lichi|leechee|lichee|edible fruit +lychgate|1 +(noun)|lichgate|gate +lychins chalcedonica|1 +(noun)|scarlet lychnis|maltese cross|Lychins chalcedonica|lychnis|catchfly +lychins floscuculi|1 +(noun)|ragged robin|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis|catchfly +lychnis|1 +(noun)|catchfly|flower +lychnis alba|1 +(noun)|white campion|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene|campion|catchfly +lychnis coronaria|1 +(noun)|mullein pink|rose campion|gardener's delight|dusty miller|Lychnis coronaria|lychnis|catchfly +lychnis dioica|1 +(noun)|red campion|red bird's eye|Silene dioica|Lychnis dioica|silene|campion|catchfly +lychnis flos-cuculi|1 +(noun)|ragged robin|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis|catchfly +lycia|1 +(noun)|Lycia|geographical area|geographic area|geographical region|geographic region +lycian|1 +(noun)|Lycian|Anatolian|Anatolian language +lycium|1 +(noun)|Lycium|genus Lycium|asterid dicot genus +lycium barbarum|1 +(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine|boxthorn +lycium carolinianum|1 +(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub|bush +lycium halimifolium|1 +(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine|boxthorn +lycopene|1 +(noun)|carotenoid +lycoperdaceae|1 +(noun)|Lycoperdaceae|family Lycoperdaceae|fungus family +lycoperdales|1 +(noun)|Lycoperdales|order Lycoperdales|fungus order +lycoperdon|1 +(noun)|Lycoperdon|genus Lycoperdon|fungus genus +lycopersicon|1 +(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus +lycopersicon esculentum|1 +(noun)|tomato|love apple|tomato plant|Lycopersicon esculentum|herb|herbaceous plant +lycopersicon esculentum cerasiforme|1 +(noun)|cherry tomato|Lycopersicon esculentum cerasiforme|tomato|love apple|tomato plant|Lycopersicon esculentum +lycopersicum|1 +(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus +lycophyta|1 +(noun)|Lycophyta|division +lycopod|1 +(noun)|club moss|club-moss|fern ally +lycopodiaceae|1 +(noun)|Lycopodiaceae|family Lycopodiaceae|clubmoss family|fern family +lycopodiales|1 +(noun)|Lycopodiales|order Lycopodiales|plant order +lycopodiate|1 +(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class +lycopodineae|1 +(noun)|Lycopodineae|class Lycopodineae|class +lycopodium|1 +(noun)|Lycopodium|genus Lycopodium|fern genus +lycopodium alopecuroides|1 +(noun)|foxtail grass|Lycopodium alopecuroides|ground pine|Christmas green +lycopodium alpinum|1 +(noun)|alpine clubmoss|Lycopodium alpinum|club moss|club-moss|lycopod +lycopodium clavitum|1 +(noun)|running pine|Lycopodium clavitum|ground pine|Christmas green +lycopodium complanatum|1 +(noun)|ground cedar|staghorn moss|Lycopodium complanatum|ground pine|Christmas green +lycopodium lucidulum|1 +(noun)|shining clubmoss|Lycopodium lucidulum|club moss|club-moss|lycopod +lycopodium obscurum|1 +(noun)|ground fir|princess pine|tree clubmoss|Lycopodium obscurum|ground pine|Christmas green +lycopodium selago|1 +(noun)|fir clubmoss|mountain clubmoss|little clubmoss|Lycopodium selago|club moss|club-moss|lycopod +lycopsida|1 +(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class +lycopus|1 +(noun)|Lycopus|genus Lycopus|asterid dicot genus +lycopus americanus|1 +(noun)|water horehound|Lycopus americanus|herb|herbaceous plant +lycopus europaeus|1 +(noun)|gipsywort|gypsywort|Lycopus europaeus|herb|herbaceous plant +lycopus virginicus|1 +(noun)|bugleweed|Lycopus virginicus|herb|herbaceous plant +lycosa|1 +(noun)|Lycosa|genus Lycosa|arthropod genus +lycosa tarentula|1 +(noun)|European wolf spider|tarantula|Lycosa tarentula|wolf spider|hunting spider +lycosidae|1 +(noun)|Lycosidae|family Lycosidae|arthropod family +lydia|1 +(noun)|Lydia|geographical area|geographic area|geographical region|geographic region +lydia kamekeha paki liliuokalani|1 +(noun)|Liliuokalani|Lydia Kamekeha Paki Liliuokalani|queen|queen regnant|female monarch +lydian|1 +(noun)|Lydian|Anatolian|Anatolian language +lye|1 +(noun)|caustic +lye hominy|1 +(noun)|hominy +lygaeid|1 +(noun)|lygaeid bug|hemipterous insect|bug|hemipteran|hemipteron +lygaeid bug|1 +(noun)|lygaeid|hemipterous insect|bug|hemipteran|hemipteron +lygaeidae|1 +(noun)|Lygaeidae|family Lygaeidae|arthropod family +lyginopteridales|1 +(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order +lyginopteris|1 +(noun)|Lyginopteris|genus Lyginopteris|gymnosperm genus +lygodium|1 +(noun)|Lygodium|genus Lygodium|fern genus +lygodium microphyllum|1 +(noun)|climbing maidenhair|climbing maidenhair fern|snake fern|Lygodium microphyllum|climbing fern +lygodium palmatum|1 +(noun)|creeping fern|Hartford fern|Lygodium palmatum|climbing fern +lygus|1 +(noun)|Lygus|genus Lygus|arthropod genus +lygus bug|1 +(noun)|mirid bug|mirid|capsid +lygus lineolaris|1 +(noun)|tarnished plant bug|Lygus lineolaris|lygus bug +lying|2 +(adj)|mendacious|untruthful +(noun)|prevarication|fabrication|falsification|misrepresentaation +lying-in|1 +(noun)|parturiency|labor|labour|confinement|travail|childbed|parturition|birth|giving birth|birthing +lying in wait|2 +(adj)|concealed +(noun)|ambush|ambuscade|trap|surprise attack|coup de main +lying under oath|1 +(noun)|perjury|bearing false witness|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +lyly|1 +(noun)|Lyly|John Lyly|writer|author +lyman frank brown|1 +(noun)|Baum|Frank Baum|Lyman Frank Brown|writer|author +lymantria|1 +(noun)|Lymantria|genus Lymantria|arthropod genus +lymantria dispar|1 +(noun)|gypsy moth|gipsy moth|Lymantria dispar|lymantriid|tussock moth +lymantriid|1 +(noun)|tussock moth|moth +lymantriidae|1 +(noun)|Lymantriidae|family Lymantriidae|arthropod family +lyme arthritis|1 +(noun)|Lyme disease|Lyme arthritis|zoonosis|zoonotic disease +lyme disease|1 +(noun)|Lyme disease|Lyme arthritis|zoonosis|zoonotic disease +lyme grass|1 +(noun)|grass +lymph|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +lymph cell|1 +(noun)|lymphocyte|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +lymph gland|1 +(noun)|lymph node|node|lymphatic tissue|lymphoid tissue +lymph node|1 +(noun)|lymph gland|node|lymphatic tissue|lymphoid tissue +lymph vessel|1 +(noun)|lymphatic vessel|duct|epithelial duct|canal|channel +lymphadenitis|1 +(noun)|inflammation|redness|rubor +lymphadenoma|1 +(noun)|adenoma +lymphadenopathy|1 +(noun)|pathology +lymphangiectasia|1 +(noun)|lymphangiectasis|ectasia|ectasis +lymphangiectasis|1 +(noun)|lymphangiectasia|ectasia|ectasis +lymphangiogram|1 +(noun)|angiogram +lymphangiography|1 +(noun)|lymphography|angiography +lymphangioma|1 +(noun)|angioma +lymphangitis|1 +(noun)|inflammation|redness|rubor +lymphatic|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +lymphatic system|1 +(noun)|systema lymphaticum|vascular system +lymphatic tissue|1 +(noun)|lymphoid tissue|animal tissue +lymphatic vessel|1 +(noun)|lymph vessel|duct|epithelial duct|canal|channel +lymphedema|1 +(noun)|edema|oedema|hydrops|dropsy +lymphoblast|1 +(noun)|lymphocyte|lymph cell +lymphoblastic leukemia|1 +(noun)|lymphocytic leukemia +lymphocyte|1 +(noun)|lymph cell|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +lymphocytic|1 +(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +lymphocytic choriomeningitis|1 +(noun)|choriomeningitis +lymphocytic leukemia|1 +(noun)|leukemia|leukaemia|leucaemia|cancer of the blood +lymphocytopenia|1 +(noun)|lymphopenia|blood disease|blood disorder +lymphocytosis|1 +(noun)|blood disease|blood disorder +lymphogranuloma venereum|1 +(noun)|LGV|lymphopathia venereum|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +lymphography|1 +(noun)|lymphangiography|angiography +lymphoid|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +lymphoid tissue|1 +(noun)|lymphatic tissue|animal tissue +lymphokine|1 +(noun)|cytokine +lymphoma|1 +(noun)|cancer|malignant neoplastic disease +lymphopathia venereum|1 +(noun)|lymphogranuloma venereum|LGV|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +lymphopenia|1 +(noun)|lymphocytopenia|blood disease|blood disorder +lymphopoiesis|1 +(noun)|organic process|biological process +lymphuria|1 +(noun)|symptom +lympphocytic choriomeningitis virus|1 +(noun)|arenavirus +lynch|1 +(verb)|kill +lynch law|1 +(noun)|practice|pattern +lynch mob|1 +(noun)|mob|rabble|rout +lynchburg|1 +(noun)|Lynchburg|city|metropolis|urban center +lynching|1 +(noun)|murder|slaying|execution +lynchpin|2 +(noun)|anchor|mainstay|keystone|backbone|linchpin|support +(noun)|linchpin|pin +lyndon baines johnson|1 +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +lyndon johnson|1 +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +lynn fontanne|1 +(noun)|Fontanne|Lynn Fontanne|actress +lynx|1 +(noun)|catamount|wildcat +lynx-eyed|1 +(adj)|argus-eyed|hawk-eyed|keen-sighted|quick-sighted|sharp-eyed|sharp-sighted|sighted +lynx canadensis|1 +(noun)|Canada lynx|Lynx canadensis|lynx|catamount +lynx caracal|1 +(noun)|caracal|desert lynx|Lynx caracal|lynx|catamount +lynx lynx|1 +(noun)|common lynx|Lynx lynx|lynx|catamount +lynx pardina|1 +(noun)|spotted lynx|Lynx pardina|lynx|catamount +lynx rufus|1 +(noun)|bobcat|bay lynx|Lynx rufus|lynx|catamount +lyon|1 +(noun)|Lyon|Lyons|city|metropolis|urban center +lyonia|1 +(noun)|Lyonia|genus Lyonia|dilleniid dicot genus +lyonia ligustrina|1 +(noun)|maleberry|male berry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub|bush +lyonia lucida|1 +(noun)|fetterbush|fetter bush|shiny lyonia|Lyonia lucida|shrub|bush +lyonia mariana|1 +(noun)|staggerbush|stagger bush|Lyonia mariana|shrub|bush +lyonnais|1 +(noun)|Lyonnais|geographical area|geographic area|geographical region|geographic region +lyonnaise|1 +(adj)|cooked +lyonnaise sauce|1 +(noun)|Lyonnaise sauce|brown onion sauce|sauce +lyons|2 +(noun)|Lyon|Lyons|city|metropolis|urban center +(noun)|Lyon|Lyons|city|metropolis|urban center +lyophilisation|1 +(noun)|freeze-drying|lyophilization|freeze|freezing|dehydration|desiccation|drying up|evaporation +lyophilise|1 +(verb)|lyophilize|freeze-dry +lyophilised|1 +(adj)|lyophilized|freeze-dried|preserved +lyophilization|1 +(noun)|freeze-drying|lyophilisation|freeze|freezing|dehydration|desiccation|drying up|evaporation +lyophilize|1 +(verb)|lyophilise|freeze-dry +lyophilized|1 +(adj)|lyophilised|freeze-dried|preserved +lypressin|1 +(noun)|antidiuretic|antidiuretic drug|vasoconstrictor|vasoconstrictive +lyra|1 +(noun)|Lyra|constellation +lyrate|1 +(adj)|simple |unsubdivided +lyrate leaf|1 +(noun)|simple leaf +lyre|1 +(noun)|harp +lyre-flower|2 +(noun)|bleeding heart|lyreflower|Dicentra spectabilis|herb|herbaceous plant +(noun)| +lyre snake|1 +(noun)|colubrid snake|colubrid +lyrebird|1 +(noun)|passerine|passeriform bird +lyreflower|1 +(noun)|bleeding heart|lyre-flower|Dicentra spectabilis|herb|herbaceous plant +lyric|7 +(adj)|lyrical|emotional +(adj)|lyric +(adj)|classical music|serious music +(adj)|poem|verse form +(noun)|words|language|text|textual matter +(noun)|lyric poem|poem|verse form +(verb)|write|compose|pen|indite +lyric poem|1 +(noun)|lyric|poem|verse form +lyrical|2 +(adj)|melodious |melodic|musical +(adj)|lyric|emotional +lyricality|1 +(noun)|lyricism|songfulness|musicality|musicalness +lyricism|2 +(noun)|lyricality|songfulness|musicality|musicalness +(noun)|exuberance|enthusiasm|ebullience +lyricist|1 +(noun)|writer|author +lyrurus|1 +(noun)|Lyrurus|genus Lyrurus|bird genus +lyrurus mlokosiewiczi|1 +(noun)|Asian black grouse|Lyrurus mlokosiewiczi|black grouse +lyrurus tetrix|1 +(noun)|European black grouse|heathfowl|Lyrurus tetrix|black grouse +lysander|1 +(noun)|Lysander|general|full general +lysenko|1 +(noun)|Lysenko|Trofim Denisovich Lysenko|geneticist +lysergic acid|1 +(noun)|acid +lysergic acid diethylamide|1 +(noun)|LSD|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug|drug of abuse|street drug|controlled substance +lysichiton|1 +(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus|liliopsid genus +lysichiton americanum|1 +(noun)|skunk cabbage|Lysichiton americanum|marsh plant|bog plant|swamp plant +lysichitum|1 +(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus|liliopsid genus +lysiloma|1 +(noun)|Lysiloma|genus Lysiloma|rosid dicot genus +lysiloma bahamensis|1 +(noun)|wild tamarind|Lysiloma latisiliqua|Lysiloma bahamensis|tree +lysiloma latisiliqua|1 +(noun)|wild tamarind|Lysiloma latisiliqua|Lysiloma bahamensis|tree +lysiloma sabicu|1 +(noun)|sabicu|Lysiloma sabicu|shrub|bush +lysimachia|1 +(noun)|Lysimachia|genus Lysimachia|dicot genus|magnoliopsid genus +lysimachia ciliatum|1 +(noun)|fringed loosestrife|Lysimachia ciliatum|loosestrife +lysimachia clethroides duby|1 +(noun)|gooseneck loosestrife|Lysimachia clethroides Duby|loosestrife +lysimachia nemorum|1 +(noun)|yellow pimpernel|Lysimachia nemorum|loosestrife +lysimachia nummularia|1 +(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife +lysimachia quadrifolia|1 +(noun)|whorled loosestrife|Lysimachia quadrifolia|loosestrife +lysimachia terrestris|1 +(noun)|swamp candles|Lysimachia terrestris|loosestrife +lysimachia vulgaris|1 +(noun)|yellow loosestrife|garden loosestrife|Lysimachia vulgaris|loosestrife +lysimachus|1 +(noun)|Lysimachus|general|full general|Macedonian +lysin|1 +(noun)|substance|matter +lysine|1 +(noun)|essential amino acid +lysine intolerance|1 +(noun)|metabolic disorder +lysinemia|1 +(noun)|inborn error of metabolism +lysippus|1 +(noun)|Lysippus|sculptor|sculpturer|carver|statue maker +lysis|2 +(noun)|convalescence|recuperation|recovery +(noun)|dissolution|disintegration +lysogenic|2 +(adj)|condition +(adj)|dissolution|disintegration +lysogenicity|1 +(noun)|lysogeny|condition +lysogenisation|1 +(noun)|lysogenization|organic process|biological process +lysogenization|1 +(noun)|lysogenisation|organic process|biological process +lysogenize|1 +(verb)|integrate +lysogeny|1 +(noun)|lysogenicity|condition +lysol|1 +(noun)|Lysol|cresol|methyl phenol +lysosome|1 +(noun)|organelle|cell organ +lysozyme|1 +(noun)|muramidase|enzyme +lyssa|1 +(noun)|rabies|hydrophobia|madness|zoonosis|zoonotic disease +lyssavirus|1 +(noun)|animal virus +lythraceae|1 +(noun)|Lythraceae|family Lythraceae|loosestrife family|dicot family|magnoliopsid family +lythrum|1 +(noun)|Lythrum|genus Lythrum|dicot genus|magnoliopsid genus +lythrum hyssopifolia|1 +(noun)|grass poly|hyssop loosestrife|Lythrum hyssopifolia|loosestrife +lythrum salicaria|1 +(noun)|purple loosestrife|spiked loosestrife|Lythrum salicaria|loosestrife +lytton|1 +(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer|author +lytton strachey|1 +(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer +m|5 +(adj)|thousand|a thousand|one thousand|1000|k|cardinal +(noun)|meter|metre|metric linear unit +(noun)|molarity|molar concentration|M|concentration +(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer +(noun)|M|letter|letter of the alphabet|alphabetic character +m-1|2 +(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm|rifle +(noun)|M1|money supply +m-1 rifle|1 +(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm|rifle +m. j. schleiden|1 +(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist|histologist +m.m.|2 +(noun)|beats per minute|bpm|metronome marking|M.M.|pace|gait +(noun)|millimeter|millimetre|mm|metric linear unit +m1|1 +(noun)|M1|money supply +m2|1 +(noun)|M2|money supply +m3|1 +(noun)|M3|money supply +ma|4 +(noun)|mama|mamma|mom|momma|mommy|mammy|mum|mummy|mater|mother|female parent +(noun)|Master of Arts|MA|Artium Magister|AM|master's degree +(noun)|milliampere|mA|current unit +(noun)|Massachusetts|Bay State|Old Colony|MA|American state +ma'am|1 +(noun)|dame|madam|lady|gentlewoman|woman|adult female +maalox|1 +(noun)|Maalox|antacid|gastric antacid|alkalizer|alkaliser|antiacid +maar|1 +(noun)|volcanic crater|crater +maarianhamina|1 +(noun)|Mariehamn|Maarianhamina|town|port +mac|1 +(noun)|macintosh|mackintosh|mack|raincoat|waterproof +macabre|1 +(adj)|ghastly|grim|grisly|gruesome|alarming +macaca|1 +(noun)|Macaca|genus Macaca|mammal genus +macaca irus|1 +(noun)|crab-eating macaque|croo monkey|Macaca irus|macaque +macaca mulatta|1 +(noun)|rhesus|rhesus monkey|Macaca mulatta|macaque +macaca radiata|1 +(noun)|bonnet macaque|bonnet monkey|capped macaque|crown monkey|Macaca radiata|macaque +macaca sylvana|1 +(noun)|Barbary ape|Macaca sylvana|macaque +macadam|2 +(noun)|paving material +(noun)|tarmacadam|tarmac|paved surface +macadamia|1 +(noun)|macadamia tree|nut tree +macadamia integrifolia|1 +(noun)|Macadamia integrifolia|macadamia|macadamia tree +macadamia nut|2 +(noun)|macadamia nut tree|Macadamia ternifolia|macadamia|macadamia tree +(noun)|edible nut +macadamia nut tree|1 +(noun)|macadamia nut|Macadamia ternifolia|macadamia|macadamia tree +macadamia ternifolia|1 +(noun)|macadamia nut|macadamia nut tree|Macadamia ternifolia|macadamia|macadamia tree +macadamia tetraphylla|1 +(noun)|Queensland nut|Macadamia tetraphylla|macadamia|macadamia tree +macadamia tree|1 +(noun)|macadamia|nut tree +macadamise|1 +(verb)|macadamize|tarmac|coat|surface +macadamize|1 +(verb)|macadamise|tarmac|coat|surface +macamba|1 +(noun)|grugru|gri-gri|grugru palm|Acrocomia aculeata|feather palm +macao|1 +(noun)|Macao|Macau|possession +macao monetary unit|1 +(noun)|Macao monetary unit|monetary unit +macaque|1 +(noun)|Old World monkey|catarrhine +macaroni|2 +(noun)|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse +(noun)|pasta|alimentary paste +macaroni and cheese|1 +(noun)|dish +macaroni salad|1 +(noun)|pasta salad +macaroni wheat|1 +(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|wheat|corn +macaronic|1 +(adj)|Italic|Italic language|non-standard speech +macaroon|1 +(noun)|cookie|cooky|biscuit +macarthur|1 +(noun)|MacArthur|Douglas MacArthur|general|full general +macau|1 +(noun)|Macao|Macau|possession +macaulay|1 +(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian|historiographer +macaw|1 +(noun)|parrot +macbeth|1 +(noun)|Macbeth|king|male monarch +macdowell|1 +(noun)|MacDowell|Edward MacDowell|composer +mace|4 +(noun)|Mace|Chemical Mace|chloroacetophenone|CN gas +(noun)|macebearer|macer|official|functionary +(noun)|spice +(noun)|staff +macebearer|1 +(noun)|mace|macer|official|functionary +macedoine|1 +(noun)|dish +macedon|1 +(noun)|Macedon|Macedonia|Makedonija|geographical area|geographic area|geographical region|geographic region +macedonia|2 +(noun)|Macedonia|Balkan country|Balkan nation|Balkan state +(noun)|Macedon|Macedonia|Makedonija|geographical area|geographic area|geographical region|geographic region +macedonian|3 +(adj)|Macedonian|Balkan country|Balkan nation|Balkan state +(noun)|Macedonian|European +(noun)|Macedonian|Slavic|Slavic language|Slavonic|Slavonic language +macedonian war|1 +(noun)|Macedonian War|war|warfare +macer|1 +(noun)|macebearer|mace|official|functionary +macerate|4 +(verb)|separate +(verb)|soften +(verb)|soften +(verb)|waste|emaciate|enfeeble|debilitate|drain +maceration|2 +(noun)|softening +(noun)|bonyness|emaciation|gauntness|leanness|thinness +macerative|1 +(adj)|softening +macgregor|1 +(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal|felon|crook|outlaw|malefactor +mach|1 +(noun)|Mach|Ernst Mach|physicist|philosopher +mach number|1 +(noun)|Mach number|ratio +machaeranthera|1 +(noun)|Machaeranthera|genus Machaeranthera|asterid dicot genus +machaeranthera bigelovii|1 +(noun)|sticky aster|Machaeranthera bigelovii|wildflower|wild flower +machaeranthera tanacetifolia|1 +(noun)|tahoka daisy|tansy leaf aster|Machaeranthera tanacetifolia|wildflower|wild flower +machaeranthera tortifoloia|1 +(noun)|Mojave aster|Machaeranthera tortifoloia|wildflower|wild flower +machete|1 +(noun)|matchet|panga|knife +machiavelli|1 +(noun)|Machiavelli|Niccolo Machiavelli|statesman|solon|national leader|philosopher +machiavellian|1 +(adj)|Machiavellian|statesman|solon|national leader|philosopher|autocracy +machiavellianism|1 +(noun)|Machiavellianism|autocracy +machicolate|1 +(verb)|supply|provide|render|furnish +machicolation|1 +(noun)|parapet|breastwork +machilid|1 +(noun)|jumping bristletail|thysanuran insect|thysanuron +machilidae|1 +(noun)|Machilidae|family Machilidae|arthropod family +machinate|2 +(verb)|organize|organise|prepare|devise|get up|initiate|pioneer +(verb)|conspire|cabal|complot|conjure|plot +machination|1 +(noun)|intrigue|plot|secret plan|game +machinator|1 +(noun)|conspirator|coconspirator|plotter|criminal|felon|crook|outlaw|malefactor +machine|8 +(noun)|device +(noun)|organization|organisation +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|car|auto|automobile|motorcar|motor vehicle|automotive vehicle +(noun)|political machine|organization|organisation +(noun)|simple machine|mechanical device +(verb)|shape|form|work|mold|mould|forge +(verb)|produce|make|create +machine-accessible|1 +(adj)|connected|on-line +machine-controlled|1 +(adj)|automated|machine-driven|automatic +machine-displayable text|1 +(noun)|electronic text +machine-driven|1 +(adj)|automated|machine-controlled|automatic +machine-made|1 +(adj)|machine-made +machine-oriented language|1 +(noun)|computer language|computer-oriented language|machine language|programming language|programing language +machine-readable text|1 +(noun)|electronic text +machine-wash|2 +(verb)|machine wash|wash|launder +(verb)| +machine bolt|1 +(noun)|bolt +machine code|1 +(noun)|machine language|code|computer code +machine gun|2 +(noun)|firearm|piece|small-arm +(verb)|gun +machine gunner|1 +(noun)|artilleryman|cannoneer|gunner|serviceman|military man|man|military personnel +machine language|2 +(noun)|computer language|computer-oriented language|machine-oriented language|programming language|programing language +(noun)|machine code|code|computer code +machine operation|1 +(noun)|computer operation|operation +machine pistol|1 +(noun)|burp gun|submachine gun +machine politician|1 +(noun)|ward-heeler|political hack|hack|politician|politico|pol|political leader +machine readable|1 +(adj)|computer readable|code|computer code +machine readable dictionary|1 +(noun)|MRD|electronic dictionary|lexical database +machine rifle|1 +(noun)|automatic rifle|automatic|automatic firearm|machine gun +machine screw|1 +(noun)|screw +machine shop|1 +(noun)|workshop|shop +machine stitch|1 +(noun)|sewing-machine stitch|stitch +machine tool|1 +(noun)|machine +machine translation|1 +(noun)|MT|artificial intelligence|AI|computational linguistics +machine wash|2 +(verb)|machine-wash|wash|launder +(verb)| +machinelike|1 +(adj)|automatic|automatonlike|robotlike|mechanical +machinery|2 +(noun)|machine +(noun)|system|scheme +machinist|1 +(noun)|mechanic|shop mechanic|craftsman|artisan|journeyman|artificer +machinist's vise|1 +(noun)|metalworking vise|vise|bench vise +machismo|1 +(noun)|masculinity +machmeter|1 +(noun)|speedometer|speed indicator +macho|1 +(adj)|butch|masculine +macho-man|1 +(noun)|stud|he-man|man|adult male +machupo virus|1 +(noun)|Machupo virus|arenavirus +macintosh|2 +(noun)|mackintosh|fabric|cloth|material|textile +(noun)|mackintosh|mac|mack|raincoat|waterproof +mack|1 +(noun)|macintosh|mackintosh|mac|raincoat|waterproof +mack sennett|1 +(noun)|Sennett|Mack Sennett|film maker|filmmaker|film producer|movie maker +mackenzie|2 +(noun)|Mackenzie|Sir Alexander Mackenzie|explorer|adventurer +(noun)|Mackenzie|Mackenzie River|river +mackenzie river|1 +(noun)|Mackenzie|Mackenzie River|river +mackerel|2 +(noun)|saltwater fish +(noun)|scombroid|scombroid fish +mackerel scad|1 +(noun)|mackerel shad|Decapterus macarellus|scad +mackerel shad|1 +(noun)|mackerel scad|Decapterus macarellus|scad +mackerel shark|1 +(noun)|shark +mackerel sky|1 +(noun)|sky +mackinac bridge|1 +(noun)|Mackinac Bridge|suspension bridge +mackinaw|4 +(noun)|Mackinaw coat|coat +(noun)|Mackinaw blanket|blanket|cover +(noun)|Mackinaw boat|boat +(noun)|fabric|cloth|material|textile +mackinaw blanket|1 +(noun)|mackinaw|Mackinaw blanket|blanket|cover +mackinaw boat|1 +(noun)|mackinaw|Mackinaw boat|boat +mackinaw coat|1 +(noun)|mackinaw|Mackinaw coat|coat +mackintosh|2 +(noun)|macintosh|fabric|cloth|material|textile +(noun)|macintosh|mac|mack|raincoat|waterproof +mackle|1 +(noun)|impression|printing +macleaya|1 +(noun)|Macleaya|genus Macleaya|dilleniid dicot genus +macleaya cordata|1 +(noun)|plume poppy|bocconia|Macleaya cordata|poppy +macleish|1 +(noun)|MacLeish|Archibald MacLeish|poet +macleod|1 +(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist +maclura|1 +(noun)|Maclura|genus Maclura|dicot genus|magnoliopsid genus +maclura pomifera|1 +(noun)|osage orange|bow wood|mock orange|Maclura pomifera|angiospermous yellowwood +macon|2 +(noun)|Macon|city|metropolis|urban center +(noun)|maconnais|wine|vino +maconnais|1 +(noun)|macon|wine|vino +macoun|1 +(noun)|Macoun|McIntosh +macowanites|1 +(noun)|Macowanites|genus Macowanites|fungus genus +macowanites americanus|1 +(noun)|Macowanites americanus|fungus +macrame|2 +(noun)|lace +(verb)|knot +macrencephalic|1 +(adj)|macrencephalous|abnormality|abnormalcy|abnormal condition +macrencephalous|1 +(adj)|macrencephalic|abnormality|abnormalcy|abnormal condition +macrencephaly|1 +(noun)|abnormality|abnormalcy|abnormal condition +macro|2 +(adj)|large +(noun)|macro instruction|instruction|command|statement|program line +macro instruction|1 +(noun)|macro|instruction|command|statement|program line +macrobiotic|1 +(adj)|dietetics +macrobiotic diet|1 +(noun)|vegetarianism +macrobiotics|1 +(noun)|dietetics +macrocephalic|1 +(adj)|macrocephalous|abnormality|abnormalcy|abnormal condition +macrocephalon|1 +(noun)|Macrocephalon|genus Macrocephalon|bird genus +macrocephalon maleo|1 +(noun)|maleo|Macrocephalon maleo|megapode|mound bird|mound-bird|mound builder|scrub fowl +macrocephalous|1 +(adj)|macrocephalic|abnormality|abnormalcy|abnormal condition +macrocephaly|1 +(noun)|megacephaly|megalocephaly|abnormality|abnormalcy|abnormal condition +macrocheira|1 +(noun)|Macrocheira|genus Macrocheira|arthropod genus +macrocheira kaempferi|1 +(noun)|giant crab|Macrocheira kaempferi|spider crab +macroclemys|1 +(noun)|Macroclemys|genus Macroclemys|reptile genus +macroclemys temmincki|1 +(noun)|alligator snapping turtle|alligator snapper|Macroclemys temmincki|snapping turtle +macrocosm|1 +(noun)|universe|existence|creation|world|cosmos|natural object +macrocosmic|1 +(adj)|natural object +macrocyte|1 +(noun)|megalocyte|red blood cell|RBC|erythrocyte +macrocytic anaemia|1 +(noun)|macrocytic anemia|anemia|anaemia +macrocytic anemia|1 +(noun)|macrocytic anaemia|anemia|anaemia +macrocytosis|1 +(noun)|pathology +macrodactylus|1 +(noun)|Macrodactylus|genus Macrodactylus|arthropod genus +macrodactylus subspinosus|1 +(noun)|rose chafer|rose bug|Macrodactylus subspinosus|melolonthid beetle +macrodantin|1 +(noun)|nitrofurantoin|Macrodantin|antibacterial|antibacterial drug|bactericide +macroeconomic|1 +(adj)|economics|economic science|political economy +macroeconomic expert|1 +(noun)|macroeconomist|economist|economic expert +macroeconomics|1 +(noun)|economics|economic science|political economy +macroeconomist|1 +(noun)|macroeconomic expert|economist|economic expert +macroevolution|1 +(noun)|evolution|phylogeny|phylogenesis +macroglia|1 +(noun)|astroglia|neuroglia|glia +macroglossia|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +macromolecular|1 +(adj)|molecule|organic compound +macromolecule|1 +(noun)|supermolecule|molecule|organic compound +macron|1 +(noun)|diacritical mark|diacritic +macronectes|1 +(noun)|Macronectes|genus Macronectes|bird genus +macronectes giganteus|1 +(noun)|giant petrel|giant fulmar|Macronectes giganteus|petrel +macrophage|1 +(noun)|phagocyte|scavenger cell +macropodidae|1 +(noun)|Macropodidae|family Macropodidae|mammal family +macropus|1 +(noun)|Macropus|genus Macropus|mammal genus +macropus agiles|1 +(noun)|common wallaby|Macropus agiles|wallaby|brush kangaroo +macropus giganteus|1 +(noun)|giant kangaroo|great gray kangaroo|Macropus giganteus|kangaroo +macrorhamphosidae|1 +(noun)|Macrorhamphosidae|family Macrorhamphosidae|fish family +macroscopic|1 +(adj)|macroscopic |macroscopical|large|megascopic|gross +macroscopic anatomy|1 +(noun)|gross anatomy|anatomy|general anatomy +macroscopical|1 +(adj)|macroscopic |large|megascopic|gross +macrosporangium|1 +(noun)|megasporangium|sporangium|spore case|spore sac +macrospore|1 +(noun)|megaspore|spore +macrothelypteris|1 +(noun)|Macrothelypteris|genus Macrothelypteris|fern genus +macrotis|1 +(noun)|Macrotis|genus Macrotis|mammal genus +macrotis lagotis|1 +(noun)|rabbit-eared bandicoot|rabbit bandicoot|bilby|Macrotis lagotis|bandicoot +macrotus|1 +(noun)|Macrotus californicus|leafnose bat|leaf-nosed bat +macrotus californicus|1 +(noun)|macrotus|Macrotus californicus|leafnose bat|leaf-nosed bat +macrotyloma|1 +(noun)|Macrotyloma|genus Macrotyloma|rosid dicot genus +macrotyloma uniflorum|1 +(noun)|horse gram|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume|leguminous plant +macrouridae|1 +(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family +macrozamia|1 +(noun)|cycad +macrozamia communis|1 +(noun)|burrawong|Macrozamia communis|cycad +macrozamia spiralis|1 +(noun)|burrawong|Macrozamia spiralis|cycad +macrozoarces|1 +(noun)|Macrozoarces|genus Macrozoarces|fish genus +macrozoarces americanus|1 +(noun)|ocean pout|Macrozoarces americanus|eelpout|pout +macruridae|1 +(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family +macula|3 +(noun)|sunspot|topographic point|place|spot +(noun)|macula lutea|macular area|yellow spot|area|region +(noun)|macule|spot|speckle|dapple|patch|fleck|maculation +macula lutea|1 +(noun)|macula|macular area|yellow spot|area|region +macular area|1 +(noun)|macula|macula lutea|yellow spot|area|region +macular degeneration|1 +(noun)|degeneration|devolution +maculate|4 +(adj)|defiled|impure +(adj)|dirty |soiled|unclean +(verb)|tarnish|stain|sully|defile|spot|fleck|blob|blot +(verb)|foul|befoul|defile|dishonor|disgrace|dishonour|attaint|shame +maculation|2 +(noun)|spot|speckle|dapple|patch|fleck|marking +(noun)|staining|spotting|soiling|soilure|dirtying +macule|1 +(noun)|macula|spot|speckle|dapple|patch|fleck|maculation +macumba|2 +(noun)|popular music|popular music genre +(noun)|cult|cultus|religious cult +macushla|1 +(noun)|darling|favorite|favourite|pet|dearie|deary|ducky +mad|4 +(adj)|huffy|sore|angry +(adj)|brainsick|crazy|demented|distracted|disturbed|sick|unbalanced|unhinged|insane +(adj)|delirious|excited|frantic|unrestrained|wild +(adj)|harebrained|insane|foolish +mad-dog skullcap|1 +(noun)|blue pimpernel|blue skullcap|mad-dog weed|Scutellaria lateriflora|herb|herbaceous plant +mad-dog weed|1 +(noun)|blue pimpernel|blue skullcap|mad-dog skullcap|Scutellaria lateriflora|herb|herbaceous plant +mad anthony wayne|1 +(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general|full general +mad apple|2 +(noun)|eggplant|aubergine|brinjal|eggplant bush|garden egg|Solanum melongena|herb|herbaceous plant +(noun)|eggplant|aubergine|solanaceous vegetable +mad cow disease|1 +(noun)|bovine spongiform encephalitis|BSE|animal disease +madagascan|2 +(adj)|Madagascan|African country|African nation +(noun)|Madagascan|African +madagascar|2 +(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country|African nation +(noun)|Madagascar|island +madagascar cat|1 +(noun)|Madagascar cat|ring-tailed lemur|Lemur catta|lemur +madagascar franc|1 +(noun)|Madagascar franc|franc +madagascar jasmine|1 +(noun)|Madagascar jasmine|waxflower|Stephanotis floribunda|stephanotis +madagascar pepper|1 +(noun)|pepper|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +madagascar periwinkle|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +madagascar plum|1 +(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub|bush +madake|1 +(noun)|giant timber bamboo|ku-chiku|Phyllostachys bambusoides|bamboo +madam|2 +(noun)|dame|ma'am|lady|gentlewoman|woman|adult female +(noun)|brothel keeper|businesswoman +madame|1 +(noun)|dame|madam|ma'am|lady|gentlewoman +madame curie|1 +(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist +madame de maintenon|1 +(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness|marquise|consort +madame de stael|1 +(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer|author +madame tussaud|1 +(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler|modeller +madcap|2 +(adj)|hotheaded|impulsive|impetuous|tearaway|brainish|incautious +(noun)|daredevil|hothead|swashbuckler|lunatic|harum-scarum|adventurer|venturer +madden|3 +(verb)|craze +(verb)|torment|rag|bedevil|crucify|dun|frustrate +(verb)|anger +maddened|1 +(adj)|angered|enraged|furious|infuriated|angry +maddening|1 +(adj)|exasperating|infuriating|vexing|displeasing +madder|2 +(noun)|Rubia tinctorum|madderwort|rubiaceous plant +(verb)|redden +madder family|1 +(noun)|Rubiaceae|family Rubiaceae|asterid dicot family +madderwort|1 +(noun)|rubiaceous plant|angiosperm|flowering plant +made|3 +(adj)|ready-made +(adj)|made +(adj)|successful +made-to-order|2 +(adj)|custom-built|custom-made |customized|custom|customised +(adj)|bespoke|bespoken|tailored|tailor-made|custom-made |customized|custom|customised +made-up|4 +(adj)|fabricated|fancied|fictional|fictitious|invented|unreal +(adj)|paved +(adj)|painted +(adj)|assembled|built|collective +made use of|1 +(adj)|employed|exploited +madeira|2 +(noun)|Madeira|Madeira River|river +(noun)|Madeira|fortified wine +madeira cake|1 +(noun)|Madeira cake|Madeira sponge|sponge cake +madeira islands|1 +(noun)|Madeira Islands|island +madeira river|1 +(noun)|Madeira|Madeira River|river +madeira sponge|1 +(noun)|Madeira cake|Madeira sponge|sponge cake +madeira winter cherry|1 +(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade +mademoiselle|1 +(noun)|silver perch|Bairdiella chrysoura|drum|drumfish +madhouse|1 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|nut house|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +madia|1 +(noun)|Madia|genus Madia|asterid dicot genus +madia elegans|1 +(noun)|common madia|common tarweed|Madia elegans|wildflower|wild flower +madia oil|1 +(noun)|vegetable oil|oil +madia oil plant|1 +(noun)|melosa|Chile tarweed|Madia sativa|tarweed +madia sativa|1 +(noun)|melosa|Chile tarweed|madia oil plant|Madia sativa|tarweed +madison|2 +(noun)|Madison|James Madison|President Madison|President of the United States|United States President|President|Chief Executive +(noun)|Madison|capital of Wisconsin|state capital +madly|2 +(adv)|insanely|crazily|dementedly +(adv)|insanely|deadly|deucedly|devilishly +madman|1 +(noun)|lunatic|maniac|sick person|diseased person|sufferer +madnep|1 +(noun)|wild parsnip|parsnip|Pastinaca sativa|weed +madness|3 +(noun)|lunacy|insaneness|insanity +(noun)|rabies|hydrophobia|lyssa|zoonosis|zoonotic disease +(noun)|fury|rage|anger|choler|ire +madonna|2 +(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess|mother|female parent +(noun)|Madonna|Madonna Louise Ciccone|singer|vocalist|vocalizer|vocaliser +madonna lily|1 +(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily +madonna louise ciccone|1 +(noun)|Madonna|Madonna Louise Ciccone|singer|vocalist|vocalizer|vocaliser +madoqua|1 +(noun)|Madoqua|genus Madoqua|mammal genus +madras|3 +(noun)|Tamil Nadu|Madras|state|province +(noun)|Chennai|Madras|city|metropolis|urban center +(noun)|fabric|cloth|material|textile +madrasa|1 +(noun)|madrasah|religious school +madrasah|1 +(noun)|madrasa|religious school +madreporaria|1 +(noun)|Madreporaria|order Madreporaria|animal order +madrepore|1 +(noun)|stony coral|madriporian coral|coral +madrid|1 +(noun)|Madrid|capital of Spain|Spanish capital|national capital +madrigal|2 +(noun)|partsong +(verb)|sing +madrigalist|1 +(noun)|singer|vocalist|vocalizer|vocaliser +madrilene|1 +(noun)|consomme +madriporian coral|1 +(noun)|stony coral|madrepore|coral +madrona|1 +(noun)|madrono|manzanita|Arbutus menziesii|arbutus +madrono|1 +(noun)|madrona|manzanita|Arbutus menziesii|arbutus +madwoman|1 +(noun)|lunatic|madman|maniac +madwort|1 +(noun)|alyssum|crucifer|cruciferous plant +mae west|2 +(noun)|West|Mae West|actress|comedienne +(noun)|Mae West|air jacket|life jacket|life vest|cork jacket +maeandra|1 +(noun)|Maeandra|genus Maeandra|coelenterate genus +maelstrom|1 +(noun)|whirlpool|vortex|current|stream +maenad|2 +(noun)|woman|adult female +(noun)|woman|adult female +maestro|1 +(noun)|master|artist|creative person +maeterlinck|1 +(noun)|Maeterlinck|Count Maurice Maeterlinck|dramatist|playwright +mafa|1 +(noun)|Matakam|Mafa|Biu-Mandara +maffia|3 +(noun)|Mafia|Maffia|Cosa Nostra|syndicate|crime syndicate|mob|family +(noun)|Mafia|Maffia|Sicilian Mafia|organized crime|gangland|gangdom +(noun)|mafia|clique|coterie|ingroup|inner circle|pack|camp +mafia|3 +(noun)|Mafia|Maffia|Cosa Nostra|syndicate|crime syndicate|mob|family +(noun)|Mafia|Maffia|Sicilian Mafia|organized crime|gangland|gangdom +(noun)|maffia|clique|coterie|ingroup|inner circle|pack|camp +mafioso|2 +(noun)|Sicilian +(noun)|criminal|felon|crook|outlaw|malefactor +mag|1 +(noun)|magazine|press|public press|publication +mag tape|1 +(noun)|magnetic tape|tape|memory device|storage device +magadhan|1 +(noun)|Magadhan|Sanskrit|Sanskritic language +magazine|6 +(noun)|mag|press|public press|publication +(noun)|product|production +(noun)|magazine publisher|publisher|publishing house|publishing firm|publishing company +(noun)|cartridge|supply chamber +(noun)|powder store|powder magazine|storehouse|depot|entrepot|storage|store +(noun)|cartridge holder|cartridge clip|clip|supply chamber +magazine article|1 +(noun)|article +magazine publisher|1 +(noun)|magazine|publisher|publishing house|publishing firm|publishing company +magazine rack|1 +(noun)|rack|stand +magdalen|1 +(noun)|sinner|evildoer +magdalena|1 +(noun)|Magdalena|Magdalena River|river +magdalena river|1 +(noun)|Magdalena|Magdalena River|river +magellan|1 +(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator +magellanic cloud|1 +(noun)|Magellanic Cloud|galaxy|extragalactic nebula +magen david|1 +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +magenta|3 +(adj)|chromatic +(noun)|fuchsia|purplish red +(noun)|Magenta|Battle of Magenta|pitched battle +maggot|1 +(noun)|grub +maggoty|1 +(adj)|flyblown|stale +magh|1 +(noun)|Magh|Magha|Hindu calendar month +magha|1 +(noun)|Magh|Magha|Hindu calendar month +maghreb|1 +(noun)|Maghreb|Mahgrib|geographical area|geographic area|geographical region|geographic region +magi|3 +(noun)|Wise Men|Magi|collection|aggregation|accumulation|assemblage +(noun)|magus|sorcerer|magician|wizard|necromancer +(noun)|magus|priest|non-Christian priest +magic|3 +(adj)|charming|magical|sorcerous|witching|wizard|wizardly|supernatural +(noun)|supernaturalism +(noun)|magic trick|conjuring trick|trick|legerdemain|conjuration|illusion|deception|performance +magic bullet|1 +(noun)|remedy|curative|cure +magic eye|1 +(noun)|photoelectric cell|photoconductive cell|photocell|electric eye|transducer|detector|sensor|sensing element +magic lantern|1 +(noun)|slide projector +magic marker|1 +(noun)|felt-tip pen|felt-tipped pen|felt tip|Magic Marker|pen +magic mushroom|1 +(noun)|mescal button|sacred mushroom|plant organ +magic number|1 +(noun)|atomic number +magic realism|1 +(noun)|genre +magic spell|1 +(noun)|spell|charm|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +magic square|1 +(noun)|square matrix +magic trick|1 +(noun)|conjuring trick|trick|magic|legerdemain|conjuration|illusion|deception|performance +magical|1 +(adj)|charming|magic|sorcerous|witching|wizard|wizardly|supernatural +magical ability|1 +(noun)|magical power|ability +magical power|1 +(noun)|magical ability|ability +magically|1 +(adv)|as if by magic +magician|2 +(noun)|prestidigitator|conjurer|conjuror|illusionist|performer|performing artist +(noun)|sorcerer|wizard|necromancer|occultist +magicicada|1 +(noun)|Magicicada|genus Magicicada|arthropod genus +magicicada septendecim|1 +(noun)|seventeen-year locust|periodical cicada|Magicicada septendecim|cicada|cicala +maginot|1 +(noun)|Maginot|Andre Maginot|politician|politico|pol|political leader +maginot line|1 +(noun)|Maginot Line|fortification|munition +magisterial|3 +(adj)|official|functionary|adjudicator +(adj)|autocratic|bossy|dominating|high-and-mighty|peremptory|domineering +(adj)|distinguished|imposing|dignified +magisterially|2 +(adv)|dictatorially|autocratically +(adv)|authoritatively|with authority +magistracy|1 +(noun)|magistrature|position|post|berth|office|spot|billet|place|situation +magistrate|1 +(noun)|judge|justice|jurist|official|functionary|adjudicator +magistrature|1 +(noun)|magistracy|position|post|berth|office|spot|billet|place|situation +maglev|1 +(noun)|magnetic levitation|rail technology|railroading +magma|1 +(noun)|rock|stone +magna carta|1 +(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter +magna charta|1 +(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter +magna cum laude|1 +(adj)|worthy +magna mater|1 +(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity +magnanimity|1 +(noun)|munificence|largess|largesse|openhandedness|liberality|liberalness +magnanimous|2 +(adj)|greathearted|noble +(adj)|big|large|generous +magnanimousness|1 +(noun)|nobility|grandeur|honorableness|honourableness +magnate|1 +(noun)|baron|big businessman|business leader|king|mogul|power|top executive|tycoon|businessman|man of affairs +magnesia|1 +(noun)|periclase|magnesium oxide|mineral +magnesite|1 +(noun)|mineral +magnesium|1 +(noun)|Mg|atomic number 12|metallic element|metal +magnesium bicarbonate|1 +(noun)|bicarbonate|hydrogen carbonate +magnesium hydroxide|1 +(noun)|milk of magnesia|purgative|cathartic|physic|aperient +magnesium nitride|1 +(noun)|nitride +magnesium oxide|1 +(noun)|periclase|magnesia|mineral +magnesium sulfate|1 +(noun)|sulfate|sulphate +magnet|2 +(noun)|device +(noun)|attraction|attractor|attracter|attractive feature|feature|characteristic +magnetic|6 +(adj)|attraction|attractive force +(adj)|magnetic |magnetized|magnetised|attractable +(adj)|magnetic +(adj)|magnetic +(adj)|attractive +(adj)|charismatic|attractive +magnetic attraction|1 +(noun)|magnetism|magnetic force|attraction|attractive force +magnetic bottle|1 +(noun)|container +magnetic bubble memory|1 +(noun)|non-volatile storage|nonvolatile storage +magnetic compass|1 +(noun)|compass +magnetic core|1 +(noun)|core +magnetic declination|1 +(noun)|magnetic variation|variation|angle +magnetic dip|1 +(noun)|dip|angle of dip|magnetic inclination|inclination|angle +magnetic dipole|1 +(noun)|dipole +magnetic dipole moment|1 +(noun)|dipole moment +magnetic disc|1 +(noun)|magnetic disk|disk|disc|memory device|storage device +magnetic disk|1 +(noun)|magnetic disc|disk|disc|memory device|storage device +magnetic equator|1 +(noun)|aclinic line|line +magnetic field|1 +(noun)|magnetic flux|flux|field|field of force|force field +magnetic field strength|1 +(noun)|magnetic intensity|magnetic induction|magnetic flux density|field strength|field intensity +magnetic flux|2 +(noun)|magnetization|magnetisation +(noun)|magnetic field|flux|field|field of force|force field +magnetic flux density|1 +(noun)|magnetic field strength|magnetic intensity|magnetic induction|field strength|field intensity +magnetic flux unit|1 +(noun)|flux unit|magnetic flux +magnetic force|1 +(noun)|magnetism|magnetic attraction|attraction|attractive force +magnetic head|1 +(noun)|electromagnet +magnetic inclination|1 +(noun)|dip|angle of dip|magnetic dip|inclination|angle +magnetic induction|2 +(noun)|magnetization|magnetisation|natural process|natural action|action|activity +(noun)|magnetic field strength|magnetic intensity|magnetic flux density|field strength|field intensity +magnetic ink|1 +(noun)|ink +magnetic intensity|1 +(noun)|magnetic field strength|magnetic induction|magnetic flux density|field strength|field intensity +magnetic iron-ore|1 +(noun)|magnetite|iron ore +magnetic levitation|1 +(noun)|maglev|rail technology|railroading +magnetic line of force|1 +(noun)|line of force|field line +magnetic medium|1 +(noun)|magnetic storage medium|magnetic storage|storage medium|data-storage medium +magnetic meridian|1 +(noun)|meridian|longitude|line of longitude +magnetic mine|1 +(noun)|floating mine|marine mine +magnetic moment|1 +(noun)|moment of a magnet|torsion|torque +magnetic monopole|1 +(noun)|particle +magnetic needle|1 +(noun)|magnet +magnetic north|1 +(noun)|north|compass north|direction +magnetic pole|2 +(noun)|geographic point|geographical point +(noun)|pole|end +magnetic pyrites|1 +(noun)|pyrrhotite|pyrrhotine|mineral +magnetic recorder|1 +(noun)|recorder|recording equipment|recording machine +magnetic resonance|1 +(noun)|resonance +magnetic resonance imaging|1 +(noun)|MRI|imaging|tomography +magnetic storage|1 +(noun)|magnetic storage medium|magnetic medium|storage medium|data-storage medium +magnetic storage medium|1 +(noun)|magnetic medium|magnetic storage|storage medium|data-storage medium +magnetic storm|1 +(noun)|perturbation|disturbance +magnetic stripe|1 +(noun)|magnetic tape|mag tape|tape +magnetic tape|1 +(noun)|mag tape|tape|memory device|storage device +magnetic variation|1 +(noun)|magnetic declination|variation|angle +magnetics|1 +(noun)|magnetism|geophysics|geophysical science +magnetisation|3 +(noun)|magnetization|measure|quantity|amount +(noun)|magnetization|magnetic induction|natural process|natural action|action|activity +(noun)|magnetization|physical property +magnetise|2 +(verb)|magnetize|mesmerize|mesmerise|bewitch|spellbind|charm|influence|tempt +(verb)|magnetize|change|alter|modify +magnetised|1 +(adj)|magnetic |magnetized|attractable +magnetism|2 +(noun)|magnetic attraction|magnetic force|attraction|attractive force +(noun)|magnetics|geophysics|geophysical science +magnetite|1 +(noun)|magnetic iron-ore|iron ore +magnetization|3 +(noun)|magnetisation|measure|quantity|amount +(noun)|magnetisation|magnetic induction|natural process|natural action|action|activity +(noun)|magnetisation|physical property +magnetize|2 +(verb)|magnetise|change|alter|modify +(verb)|mesmerize|mesmerise|magnetise|bewitch|spellbind|charm|influence|tempt +magnetized|1 +(adj)|magnetic |magnetised|attractable +magneto|1 +(noun)|magnetoelectric machine|generator +magnetoelectric machine|1 +(noun)|magneto|generator +magnetohydrodynamics|1 +(noun)|hydrodynamics|hydrokinetics +magnetometer|1 +(noun)|gaussmeter|meter +magnetomotive force|1 +(noun)|force +magnetomotive force unit|1 +(noun)|electromagnetic unit|emu +magneton|1 +(noun)|magnetomotive force unit +magnetosphere|1 +(noun)|magnetic field|magnetic flux|flux +magnetron|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +magnificat|1 +(noun)|Magnificat|canticle +magnification|4 +(noun)|expansion|enlargement +(noun)|ratio +(noun)|exaggeration|overstatement|misrepresentation|deceit|deception +(noun)|enlargement|blowup|photograph|photo|exposure|pic +magnificence|2 +(noun)|impressiveness|grandness|excellence +(noun)|brilliance|splendor|splendour|grandeur|grandness|elegance +magnificent|1 +(adj)|brilliant|glorious|splendid|impressive +magnificently|2 +(adv)|splendidly|famously +(adv)|gorgeously|splendidly|resplendently +magnificio|1 +(noun)|important person|influential person|personage +magnified|1 +(adj)|exaggerated|enlarged|increased +magnifier|1 +(noun)|scientific instrument +magnify|3 +(verb)|amplify|enlarge +(verb)|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|amplify|misinform|mislead +(verb)|blow up|enlarge|increase +magnifying glass|1 +(noun)|hand glass|simple microscope|light microscope +magniloquence|1 +(noun)|grandiosity|grandiloquence|rhetoric|expressive style|style +magniloquent|1 +(adj)|grandiloquent|tall|rhetorical +magniloquently|1 +(adv)|grandiloquently +magnitude|3 +(noun)|property +(noun)|order of magnitude|ratio +(noun)|importance +magnitude relation|1 +(noun)|quantitative relation|relation +magnolia|2 +(noun)|bark +(noun)|angiospermous tree|flowering tree +magnolia acuminata|1 +(noun)|cucumber tree|Magnolia acuminata|magnolia +magnolia family|1 +(noun)|Magnoliaceae|family Magnoliaceae|magnoliid dicot family +magnolia fraseri|1 +(noun)|earleaved umbrella tree|Magnolia fraseri|magnolia +magnolia grandiflora|1 +(noun)|southern magnolia|evergreen magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia +magnolia macrophylla|1 +(noun)|large-leaved magnolia|large-leaved cucumber tree|great-leaved macrophylla|Magnolia macrophylla|magnolia +magnolia soulangiana|1 +(noun)|saucer magnolia|Chinese magnolia|Magnolia soulangiana|magnolia +magnolia state|1 +(noun)|Mississippi|Magnolia State|MS|American state +magnolia stellata|1 +(noun)|star magnolia|Magnolia stellata|magnolia +magnolia tripetala|1 +(noun)|umbrella tree|umbrella magnolia|elkwood|elk-wood|Magnolia tripetala|magnolia +magnolia virginiana|1 +(noun)|sweet bay|swamp bay|swamp laurel|Magnolia virginiana|magnolia +magnoliaceae|1 +(noun)|Magnoliaceae|family Magnoliaceae|magnolia family|magnoliid dicot family +magnoliid dicot family|1 +(noun)|dicot family|magnoliopsid family +magnoliid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +magnoliidae|1 +(noun)|Magnoliidae|subclass Magnoliidae|ranalian complex|class +magnoliophyta|1 +(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class +magnoliopsid|1 +(noun)|dicot|dicotyledon|exogen|angiosperm|flowering plant +magnoliopsid family|1 +(noun)|dicot family|family +magnoliopsid genus|1 +(noun)|dicot genus|genus +magnoliopsida|1 +(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class +magnum|1 +(noun)|wine bottle +magnum opus|1 +(noun)|work of art +magnus hitch|1 +(noun)|rolling hitch +magpie|3 +(noun)|corvine bird +(noun)|scavenger|pack rat|hoarder +(noun)|chatterer|babbler|prater|chatterbox|spouter|speaker|talker|utterer|verbalizer|verbaliser +magritte|1 +(noun)|Magritte|Rene Magritte|painter +maguey|2 +(noun)|Agave atrovirens|agave|century plant|American aloe +(noun)|cantala|Agave cantala|agave|century plant|American aloe +magus|2 +(noun)|sorcerer|magician|wizard|necromancer +(noun)|priest|non-Christian priest +magyar|3 +(adj)|Hungarian|Magyar +(noun)|Hungarian|Magyar|European +(noun)|Hungarian|Magyar|Ugric|Ugrian +magyarorszag|1 +(noun)|Hungary|Republic of Hungary|Magyarorszag|European country|European nation +mah-jongg|1 +(noun)|Mah-Jongg|mahjong|board game +maha|1 +(noun)|Omaha|Maha|Dhegiha +mahabharata|1 +(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text|sacred writing|religious writing|religious text +mahabharatam|1 +(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text|sacred writing|religious writing|religious text +mahabharatum|1 +(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text|sacred writing|religious writing|religious text +mahagua|2 +(noun)|mahoe|majagua|balibago|purau|Hibiscus tiliaceus|hibiscus +(noun)|Cuban bast|blue mahoe|mahoe|majagua|Hibiscus elatus|hibiscus +mahalia jackson|1 +(noun)|Jackson|Mahalia Jackson|singer|vocalist|vocalizer|vocaliser +mahan|1 +(noun)|Mahan|Alfred Thayer Mahan|naval officer|historian|historiographer +maharaja|1 +(noun)|maharajah|prince +maharajah|1 +(noun)|maharaja|prince +maharanee|1 +(noun)|maharani|princess +maharani|1 +(noun)|maharanee|princess +maharashtra|1 +(noun)|Maharashtra|geographical area|geographic area|geographical region|geographic region +mahatma|1 +(noun)|sage +mahatma gandhi|1 +(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader|spiritual leader +mahayana|2 +(noun)|Mahayana|Buddhism +(noun)|Mahayana|Mahayana Buddhism|Buddhism +mahayana buddhism|1 +(noun)|Mahayana|Mahayana Buddhism|Buddhism +mahayanist|1 +(noun)|Mahayanist|disciple|adherent +mahernia verticillata|1 +(noun)|honey bell|honeybells|Hermannia verticillata|Mahernia verticillata|shrub|bush +mahgrib|1 +(noun)|Maghreb|Mahgrib|geographical area|geographic area|geographical region|geographic region +mahican|2 +(noun)|Mohican|Mahican|Algonquian|Algonquin +(noun)|Mohican|Mahican|Algonquian|Algonquin|Algonquian language +mahimahi|2 +(noun)|dolphinfish|saltwater fish +(noun)|dolphinfish|dolphin|percoid fish|percoid|percoidean +mahjong|1 +(noun)|Mah-Jongg|board game +mahler|1 +(noun)|Mahler|Gustav Mahler|composer|conductor|music director|director +mahlstick|1 +(noun)|maulstick|stick +mahoe|2 +(noun)|majagua|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus +(noun)|Cuban bast|blue mahoe|majagua|mahagua|Hibiscus elatus|hibiscus +mahogany|2 +(noun)|wood +(noun)|mahogany tree|tree +mahogany family|1 +(noun)|Meliaceae|family Meliaceae|rosid dicot family +mahogany tree|1 +(noun)|mahogany|tree +mahomet|1 +(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet +mahonia|1 +(noun)|Mahonia|genus Mahonia|magnoliid dicot genus +mahonia aquifolium|1 +(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub|bush +mahonia nervosa|1 +(noun)|Oregon grape|Mahonia nervosa|shrub|bush +mahound|1 +(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet +mahout|1 +(noun)|driver +mahratta|1 +(noun)|Maratha|Mahratta|Indian +mahratti|1 +(noun)|Marathi|Mahratti|Sanskrit|Sanskritic language +mahuang|1 +(noun)|Ephedra sinica|ephedra|joint fir +maia|1 +(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus +maianthemum|1 +(noun)|Maianthemum|genus Maianthemum|liliid monocot genus +maianthemum bifolium|1 +(noun)|false lily of the valley|Maianthemum bifolium|liliaceous plant +maianthemum canadense|1 +(noun)|false lily of the valley|Maianthemum canadense|liliaceous plant +maid|2 +(noun)|maidservant|housemaid|amah|domestic|domestic help|house servant +(noun)|maiden|girl|miss|missy|young lady|young woman|fille +maid of honor|1 +(noun)|bridesmaid|attendant|attender|tender|woman|adult female +maiden|3 +(adj)|inaugural|initiative|initiatory|first|opening +(noun)|maid|girl|miss|missy|young lady|young woman|fille +(noun)|maiden over|over +maiden aunt|1 +(noun)|aunt|auntie|aunty +maiden blue-eyed mary|1 +(noun)|maiden blue-eyed Mary|Collinsia parviflora|wildflower|wild flower +maiden name|1 +(noun)|surname|family name|cognomen|last name +maiden over|1 +(noun)|maiden|over +maiden pink|1 +(noun)|Dianthus deltoides|pink|garden pink +maidenhair|1 +(noun)|maidenhair fern|fern +maidenhair berry|1 +(noun)|creeping snowberry|moxie plum|Gaultheria hispidula|shrublet +maidenhair fern|1 +(noun)|maidenhair|fern +maidenhair spleenwort|1 +(noun)|Asplenium trichomanes|spleenwort +maidenhair tree|1 +(noun)|ginkgo|gingko|Ginkgo biloba|gymnospermous tree +maidenhead|1 +(noun)|hymen|virginal membrane|mucous membrane|mucosa +maidenhood|1 +(noun)|girlhood|maidhood|childhood +maidenlike|1 +(adj)|maidenly|feminine +maidenliness|1 +(noun)|femininity|muliebrity +maidenly|1 +(adj)|maidenlike|feminine +maidhood|1 +(noun)|girlhood|maidenhood|childhood +maidism|1 +(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +maidservant|1 +(noun)|maid|housemaid|amah|domestic|domestic help|house servant +maidu|2 +(noun)|Maidu|Penutian +(noun)|Pujunan|Maidu|Penutian +maiduguri|1 +(noun)|Maiduguri|Yerwa-Maiduguri|city|metropolis|urban center +maieutic method|1 +(noun)|Socratic method|teaching method|pedagogics|pedagogy +maiger|1 +(noun)|maigre|Sciaena aquila|sciaenid fish|sciaenid +maigre|1 +(noun)|maiger|Sciaena aquila|sciaenid fish|sciaenid +maikoa|1 +(noun)|angel's trumpet|Brugmansia arborea|Datura arborea|shrub|bush +mail|7 +(noun)|message +(noun)|mail service|postal service|post|communication|communicating +(noun)|conveyance|transport +(noun)|post|collection|aggregation|accumulation|assemblage +(noun)|chain mail|ring mail|chain armor|chain armour|ring armor|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +(verb)|get off|send|send out +(verb)|post|send|transfer +mail-clad|1 +(adj)|mailed|armored |armoured +mail-order buying|1 +(noun)|catalog buying|buying|purchasing +mail boat|2 +(noun)|mailboat|packet|packet boat|boat +(noun)| +mail call|1 +(noun)|roll call +mail car|1 +(noun)|car|railcar|railway car|railroad car +mail carrier|1 +(noun)|mailman|postman|letter carrier|carrier|deliveryman|delivery boy|deliverer +mail clerk|1 +(noun)|postal clerk|clerk +mail fraud|1 +(noun)|fraud +mail order|1 +(noun)|order|purchase order +mail out|1 +(verb)|send|send out +mail pouch|1 +(noun)|mailbag|pouch +mail service|1 +(noun)|mail|postal service|post|communication|communicating +mail slot|1 +(noun)|slot +mail train|1 +(noun)|train|railroad train +mailbag|2 +(noun)|mail pouch|pouch +(noun)|postbag|bag +mailboat|1 +(noun)|mail boat|packet|packet boat|boat +mailbox|2 +(noun)|letter box|box +(noun)|postbox|letter box|maildrop +maildrop|1 +(noun)|drop +mailed|1 +(adj)|mail-clad|armored |armoured +mailer|4 +(noun)|Mailer|Norman Mailer|writer|author +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|container +mailing|2 +(noun)|mail|post +(noun)|posting|transmission|transmittal|transmitting +mailing-card|1 +(noun)|postcard|post card|postal card|card +mailing address|1 +(noun)|address +mailing list|1 +(noun)|list|listing +maillol|1 +(noun)|Maillol|Aristide Maillol|sculptor|sculpturer|carver|statue maker +maillot|2 +(noun)|tank suit|swimsuit|bathing suit|swimming costume|bathing costume +(noun)|tights|leotards +mailman|1 +(noun)|postman|mail carrier|letter carrier|carrier|deliveryman|delivery boy|deliverer +mailsorter|1 +(noun)|sorter +maim|1 +(verb)|injure|wound +maimed|3 +(adj)|mutilated|injured +(adj)|mutilated|unfit +(noun)|wounded|people +maimer|1 +(noun)|mutilator|mangler|person|individual|someone|somebody|mortal|human|soul +maimonides|1 +(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher +main|5 +(adj)|chief|primary|principal|important |of import +(adj)|independent +(adj)|intense +(noun)|briny|body of water|water +(noun)|pipe|pipage|piping +main-topmast|1 +(noun)|topmast +main-topsail|1 +(noun)|sail|canvas|canvass|sheet +main clause|1 +(noun)|independent clause|clause +main course|2 +(noun)|entree|course +(noun)|mainsail +main deck|1 +(noun)|second deck|deck +main diagonal|1 +(noun)|principal diagonal|diagonal +main drag|1 +(noun)|main street|high street +main entry word|1 +(noun)|citation form|entry word|form|word form|signifier|descriptor +main file|1 +(noun)|master file|computer file +main line|1 +(noun)|path|route|itinerary +main office|1 +(noun)|headquarters|central office|home office|home base|office|business office +main road|1 +(noun)|highway|road|route +main rotor|1 +(noun)|rotor +main street|2 +(noun)|high street|street +(noun)|Main Street|town +main yard|1 +(noun)|yard +maine|1 +(noun)|Maine|Pine Tree State|ME|American state +maine lobster|2 +(noun)|American lobster|Northern lobster|Maine lobster|lobster +(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster +mainer|1 +(noun)|Mainer|Down Easter|American +mainframe|2 +(noun)|mainframe computer|digital computer +(noun)|central processing unit|CPU|C.P.U.|central processor|processor|electronic equipment|hardware|computer hardware +mainframe computer|1 +(noun)|mainframe|digital computer +mainland|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +mainland china|1 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +mainline|1 +(verb)|inject +mainly|1 +(adv)|chiefly|principally|primarily|in the main +mainmast|1 +(noun)|mast +mainsail|1 +(noun)|sail|canvas|canvass|sheet +mainsheet|1 +(noun)|sheet|tack|weather sheet|shroud|line +mainspring|1 +(noun)|spring +mainstay|3 +(noun)|pillar|supporter|protagonist|champion|admirer|booster|friend +(noun)|anchor|keystone|backbone|linchpin|lynchpin|support +(noun)|forestay +mainstream|1 +(noun)|thought +mainstreamed|1 +(adj)|integrated +maintain|10 +(verb)|keep|hold +(verb)|conserve|preserve|keep up|keep +(verb)|sustain|keep|have|have got|hold +(verb)|assert|asseverate|insist|take a firm stand +(verb)|wield|exert|have|have got|hold +(verb)|keep|have|have got|hold +(verb)|keep|record|enter|put down +(verb)|defend|affirm +(verb)|uphold|confirm|reassert +(verb)|observe|keep +maintainable|1 +(adj)|reparable |rectifiable +maintained|3 +(adj)|kept up|well-kept|preserved +(adj)|repaired|serviced|serviceable +(adj)|retained|preserved +maintainer|1 +(noun)|upholder|sustainer|supporter|protagonist|champion|admirer|booster|friend +maintenance|4 +(noun)|care|upkeep|repair|fix|fixing|fixture|mend|mending|reparation +(noun)|support|keep|livelihood|living|bread and butter|sustenance +(noun)|alimony|support payment +(noun)|sustenance|sustentation|sustainment|upkeep|support +maintenance man|1 +(noun)|repairman|repairer|service man|fixer|skilled worker|trained worker +maintenance staff|1 +(noun)|service staff|staff +maintenon|1 +(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness|marquise|consort +maiolica|1 +(noun)|majolica|earthenware +maisonette|2 +(noun)|maisonnette|apartment|flat +(noun)|maisonnette|house +maisonnette|2 +(noun)|maisonette|apartment|flat +(noun)|maisonette|house +maitland|1 +(noun)|Maitland|Frederic William Maitland|historian|historiographer +maitre d'|1 +(noun)|captain|headwaiter|maitre d'hotel|dining-room attendant|restaurant attendant +maitre d'hotel|1 +(noun)|captain|headwaiter|maitre d'|dining-room attendant|restaurant attendant +maitreya|1 +(noun)|Maitreya|Bodhisattva|Boddhisatva +maize|2 +(noun)|corn|Indian corn|Zea mays|cereal|cereal grass +(noun)|gamboge|lemon|lemon yellow|yellow|yellowness +maja|1 +(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus +maja squinado|1 +(noun)|European spider crab|king crab|Maja squinado|spider crab +majagua|2 +(noun)|mahoe|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus +(noun)|Cuban bast|blue mahoe|mahoe|mahagua|Hibiscus elatus|hibiscus +majestic|3 +(adj)|olympian|superior +(adj)|gallant|lofty|proud|impressive +(adj)|imperial|purple|regal|royal|noble +majesty|1 +(noun)|stateliness|loftiness|impressiveness|grandness|magnificence +majidae|1 +(noun)|Majidae|family Majidae|arthropod family +majolica|1 +(noun)|maiolica|earthenware +major|13 +(adj)|major |great|outstanding|leading|prima|star|starring|stellar +(adj)|major +(adj)|major |better +(adj)|major +(adj)|major +(adj)|major +(adj)|major +(adj)|senior +(noun)|commissioned military officer +(noun)|Major|John Major|John R. Major|John Roy Major|statesman|solon|national leader +(noun)|student|pupil|educatee +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(verb)|study +major-domo|1 +(noun)|seneschal|servant|retainer +major-general|1 +(noun)|general officer +major-league club|1 +(noun)|major-league team|team|squad +major-league team|1 +(noun)|major-league club|team|squad +major affective disorder|1 +(noun)|affective disorder|emotional disorder|emotional disturbance|mental disorder|mental disturbance|disturbance|psychological disorder|folie +major axis|1 +(noun)|axis +major depressive episode|1 +(noun)|depressive disorder|clinical depression|depression +major diatonic scale|1 +(noun)|major scale|mode|musical mode +major form class|1 +(noun)|part of speech|form class|word class +major key|1 +(noun)|major mode|key|tonality +major league|1 +(noun)|big league|majors|league|conference +major leaguer|1 +(noun)|big leaguer|ballplayer|baseball player +major lobe|1 +(noun)|lobe +major mode|1 +(noun)|major key|key|tonality +major power|1 +(noun)|world power|great power|power|superpower|state|nation|country|land|commonwealth|res publica|body politic +major premise|1 +(noun)|major premiss|premise|premiss|assumption +major premiss|1 +(noun)|major premise|premise|premiss|assumption +major scale|1 +(noun)|major diatonic scale|mode|musical mode +major suit|1 +(noun)|suit +major surgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +major term|1 +(noun)|term +major tranquilizer|1 +(noun)|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +major tranquilliser|1 +(noun)|major tranquilizer|major tranquillizer|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +major tranquillizer|1 +(noun)|major tranquilizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +majorana|1 +(noun)|Majorana|genus Majorana|asterid dicot genus +majorana hortensis|1 +(noun)|sweet marjoram|knotted marjoram|Origanum majorana|Majorana hortensis|origanum +majorca|1 +(noun)|Majorca|island +majority|3 +(noun)|bulk|number|figure +(noun)|absolute majority|relative quantity +(noun)|legal age|age|eld|legal status +majority leader|1 +(noun)|legislator +majority operation|1 +(noun)|threshold operation +majority opinion|1 +(noun)|opinion|legal opinion|judgment|judgement +majority rule|1 +(noun)|democracy|doctrine|philosophy|philosophical system|school of thought|ism +majors|5 +(noun)|major league|big league|league|conference +(noun)|major|commissioned military officer +(noun)|Major|John Major|John R. Major|John Roy Major|statesman|solon|national leader +(noun)|major|student|pupil|educatee +(noun)|major|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +majuscule|3 +(adj)|majuscule |uppercase +(adj)|capital|great|uppercase +(noun)|capital|capital letter|upper case|upper-case letter|character|grapheme|graphic symbol +mak|1 +(noun)|Maktab al-Khidmat|MAK|terrorist organization|terrorist group|foreign terrorist organization|FTO +makaira|1 +(noun)|Makaira|genus Makaira|fish genus +makaira albida|1 +(noun)|white marlin|Makaira albida|marlin|spearfish +makaira marlina|1 +(noun)|black marlin|Makaira marlina|marlin|spearfish +makaira mazara|1 +(noun)|black marlin|Makaira mazara|marlin|spearfish +makaira mitsukurii|1 +(noun)|striped marlin|Makaira mitsukurii|marlin|spearfish +makaira nigricans|1 +(noun)|blue marlin|Makaira nigricans|marlin|spearfish +makalu|1 +(noun)|Makalu|mountain peak +makataimeshekiakiak|1 +(noun)|Black Hawk|Makataimeshekiakiak|Indian chief|Indian chieftain|Sauk|Sac +make|51 +(noun)|brand|kind|sort|form|variety +(noun)|shuffle|shuffling|reordering +(verb)|do +(verb)|get|change|alter|modify +(verb)|create|make over|make up +(verb)|induce|stimulate|cause|have|get +(verb)|cause|do|create +(verb)|produce|create +(verb)|draw|create by mental act|create mentally +(verb)|cause|do +(verb)|create|create +(verb)|gain|take in|clear|earn|realize|realise|pull in|bring in|get|acquire +(verb)|do|create +(verb)|form|constitute|constitute|represent|make up|comprise|be +(verb)|reach|get to|progress to|achieve|accomplish|attain|reach +(verb)|become +(verb)|create from raw material|create from raw stuff +(verb)|perform|execute|do +(verb)|construct|build|create +(verb)|change|alter|modify +(verb)|act|behave|do +(verb)|name|nominate|appoint|charge +(verb)|have|get|score|hit|tally|rack up +(verb)|reach|attain|hit|arrive at|gain +(verb)|lay down|establish|create +(verb)|perpetrate|commit|pull +(verb)|total|number|add up|come|amount +(verb)|assemble|gather|get together +(verb)|hold|throw|have|give|direct +(verb)|cook|fix|ready|prepare|create from raw material|create from raw stuff +(verb)|make up|tidy|tidy up|clean up|neaten|straighten|straighten out|square away +(verb)|take|head +(verb)|stool|defecate|shit|take a shit|take a crap|ca-ca|crap|excrete|egest|eliminate|pass +(verb)|change +(verb)|be +(verb)|amount +(verb)|constitute|represent|make up|comprise|be +(verb)|look|appear|seem +(verb)|work|pass|go through|go across +(verb)|reach|attain|hit|arrive at|gain +(verb)|create from raw material|create from raw stuff +(verb)|seduce|score|persuade +(verb)|guarantee|ensure|insure|assure|secure +(verb)|pretend|make believe|act|play|represent +(verb)|see|consider|reckon|view|regard +(verb)|estimate|gauge|approximate|guess|judge +(verb)|change|alter|modify +(verb)|develop +(verb)|develop|grow +(verb)|act|behave|do +(verb)|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +make-believe|3 +(adj)|pretend|unreal +(noun)|pretense|pretence|imagination|imaging|imagery|mental imagery +(noun)|pretend|pretense|pretence|pretending|simulation|feigning +make-peace|1 +(noun)|conciliator|pacifier|peacemaker|reconciler|mediator|go-between|intermediator|intermediary|intercessor +make-up|3 +(noun)|makeup|war paint|cosmetic|cosmetics +(noun)|constitution|composition|makeup|property +(noun)|makeup|event +make-work|1 +(noun)|busywork|work +make a face|1 +(verb)|grimace|pull a face|communicate|intercommunicate +make a motion|1 +(verb)|move|propose|suggest|advise +make a point|1 +(verb)|make sure|act|move +make as if|1 +(verb)|act|behave|do +make believe|1 +(verb)|make|pretend|act|play|represent +make bold|1 +(verb)|dare|presume|act|move +make clean|1 +(verb)|clean|change|alter|modify +make do|1 +(verb)|cope|get by|make out|contend|grapple|deal|manage|act|move +make for|1 +(verb)|bring|work|play|wreak|make|create +make full|1 +(verb)|fill|fill up|change|alter|modify +make fun|1 +(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|poke fun|mock|bemock +make good|1 +(verb)|observe|keep +make grow|1 +(verb)|develop|change|alter|modify +make happy|1 +(verb)|revel|racket|make whoopie|make merry|whoop it up|jollify|wassail|celebrate|fete +make hay|1 +(verb)|exploit|work +make headway|1 +(verb)|gain|advance|win|pull ahead|get ahead|gain ground +make it|3 +(verb)|survive|pull through|pull round|come through|get the better of|overcome|defeat +(verb)|arrive|get in|go far|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|pass|succeed|win|come through|bring home the bacon|deliver the goods +make love|1 +(verb)|roll in the hay|love|make out|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +make merry|1 +(verb)|revel|racket|make whoopie|make happy|whoop it up|jollify|wassail|celebrate|fete +make noise|1 +(verb)|resound|noise|sound|go +make out|10 +(verb)|recognize|recognise|distinguish|discern|pick out|tell apart +(verb)|write out|issue|cut|write +(verb)|understand +(verb)|do|fare|come|get along|proceed|go +(verb)|cope|get by|make do|contend|grapple|deal|manage|act|move +(verb)|roll in the hay|love|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +(verb)|neck|pet +(verb)|complete|fill out|fill in +(verb)|suggest|intimate +(verb)|claim +make over|2 +(verb)|rework|retread|work|work on|process +(verb)|remake|refashion|redo|produce|make|create +make pass|1 +(verb)|pass +make peace|1 +(verb)|reconcile|patch up|make up|conciliate|settle +make possible|1 +(verb)|change|alter|modify +make pure|1 +(verb)|purify|sublimate|distill|better|improve|amend|ameliorate|meliorate +make relaxed|1 +(verb)|relax|unstrain|unlax|loosen up|unwind|affect +make sense|1 +(verb)|add up|be +make sure|1 +(verb)|make a point|act|move +make unnecessary|1 +(verb)|save|prevent|forestall|foreclose|preclude|forbid +make up|8 +(verb)|constitute|represent|comprise|be +(verb)|design +(verb)|pay|pay off|compensate|settle +(verb)|catch up with|recover|recoup|recuperate +(verb)|fabricate|manufacture|cook up|invent|think up|think of|dream up|hatch|concoct +(verb)|make|tidy|tidy up|clean up|neaten|straighten|straighten out|square away +(verb)|reconcile|patch up|conciliate|settle|agree|hold|concur|concord +(verb)|groom|neaten +make up one's mind|1 +(verb)|decide|determine +make vibrant sounds|1 +(verb)|purr|resonate|vibrate +make water|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +make way|1 +(verb)|move +make whoopie|1 +(verb)|revel|racket|make merry|make happy|whoop it up|jollify|wassail|celebrate|fete +makedonija|1 +(noun)|Macedon|Macedonia|Makedonija|geographical area|geographic area|geographical region|geographic region +makeover|2 +(noun)|beauty treatment +(noun)|reconstruction +maker|3 +(noun)|shaper|creator +(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God|Supreme Being +(noun)|manufacturer|manufacturing business|business|concern|business concern|business organization|business organisation +makeready|1 +(noun)|preparation|readying +makeshift|2 +(adj)|improvised|jury-rigged|impermanent |temporary +(noun)|stopgap|expedient +makeup|3 +(noun)|constitution|composition|property +(noun)|make-up|war paint|cosmetic|cosmetics +(noun)|event +makeweight|2 +(noun)|filler|object|physical object +(noun)|weight +makin|1 +(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault +making|1 +(noun)|devising|fashioning|production +making known|1 +(noun)|informing|speech act +making love|1 +(noun)|sexual love|lovemaking|love|love life|sexual activity|sexual practice|sex|sex activity +making water|1 +(noun)|leak|wetting|passing water|micturition|urination +makings|3 +(noun)|qualification|fitness|fittingness +(noun)|component|constituent|element +(noun)|devising|fashioning|making|production +mako|1 +(noun)|mako shark|mackerel shark +mako shark|1 +(noun)|mako|mackerel shark +makomako|1 +(noun)|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub|bush +maksim gorky|1 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +maksutov telescope|1 +(noun)|Maksutov telescope|reflecting telescope|reflector +maktab al-khidmat|1 +(noun)|Maktab al-Khidmat|MAK|terrorist organization|terrorist group|foreign terrorist organization|FTO +mal de la rosa|1 +(noun)|pellagra|Alpine scurvy|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +mal de mer|1 +(noun)|seasickness|naupathia|motion sickness|kinetosis +mal rosso|1 +(noun)|pellagra|Alpine scurvy|mal de la rosa|maidism|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +mala|1 +(noun)|cheekbone|zygomatic bone|malar bone|jugal bone|os zygomaticum|bone|os +malabar kino|1 +(noun)|East India kino|Malabar kino|kino gum|resin|rosin +malabo|1 +(noun)|Malabo|national capital +malabsorption|1 +(noun)|assimilation|absorption +malabsorption syndrome|1 +(noun)|syndrome +malacanthidae|1 +(noun)|Malacanthidae|family Malacanthidae|fish family +malacca|2 +(noun)|cane +(noun)|malacca cane|cane +malacca cane|1 +(noun)|malacca|cane +malachi|2 +(noun)|Malachi|Malachias|prophet +(noun)|Malachi|Malachias|Book of Malachi|book +malachias|2 +(noun)|Malachi|Malachias|prophet +(noun)|Malachi|Malachias|Book of Malachi|book +malachite|1 +(noun)|mineral +malacia|1 +(noun)|pathology +malaclemys|1 +(noun)|Malaclemys|genus Malaclemys|reptile genus +malaclemys centrata|1 +(noun)|diamondback terrapin|Malaclemys centrata|terrapin +malaconotinae|1 +(noun)|Malaconotinae|subfamily Malaconotinae|bird family +malacopterygian|1 +(noun)|soft-finned fish|teleost fish|teleost|teleostan +malacopterygii|1 +(noun)|Malacopterygii|superorder Malacopterygii|animal order +malacosoma|1 +(noun)|Malacosoma|genus Malacosoma|arthropod genus +malacosoma americana|1 +(noun)|tent-caterpillar moth|Malacosoma americana|moth +malacosoma disstria|2 +(noun)|forest tent caterpillar|Malacosoma disstria|tent caterpillar +(noun)|tent-caterpillar moth|Malacosoma disstria|lasiocampid|lasiocampid moth +malacostraca|1 +(noun)|Malacostraca|subclass Malacostraca|class|category|family +malacostracan crustacean|1 +(noun)|crustacean +malacothamnus|1 +(noun)|Malacothamnus|genus Malacothamnus|dilleniid dicot genus +malacothamnus fasciculatus|1 +(noun)|chaparral mallow|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow +maladaptive|1 +(adj)|maladaptive |dysfunctional|nonadaptive|maladjustive +maladjusted|3 +(adj)|maladjusted |unadapted|unadjusted +(adj)|disturbed|neurotic |psychoneurotic +(adj)|unadjusted +maladjustive|1 +(adj)|maladaptive +maladjustment|1 +(noun)|personality disorder +maladroit|1 +(adj)|maladroit |bumbling|bungling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|left-handed|inept|tactless|uncoordinated|unmechanical|nonmechanical|awkward +maladroitness|1 +(noun)|awkwardness|clumsiness|ineptness|ineptitude|slowness|unskillfulness +malady|2 +(noun)|condition|status +(noun)|illness|unwellness|sickness|ill health|unhealthiness|health problem +malaga|1 +(noun)|Malaga|city|metropolis|urban center|port +malagasy republic|1 +(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country|African nation +malahini|1 +(noun)|newcomer +malaise|1 +(noun)|unease|uneasiness|discomfort|uncomfortableness +malamud|1 +(noun)|Malamud|Bernard Malamud|writer|author +malamute|1 +(noun)|malemute|Alaskan malamute|sled dog|sledge dog +malanga|1 +(noun)|yautia|tannia|spoonflower|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +malaprop|1 +(noun)|malapropism|misstatement +malapropism|1 +(noun)|malaprop|misstatement +malapropos|2 +(adj)|malapropos |inapposite|out of place|inappropriate +(adv)|inopportunely +malar bone|1 +(noun)|cheekbone|zygomatic bone|mala|jugal bone|os zygomaticum|bone|os +malaria|1 +(noun)|protozoal infection +malaria mosquito|1 +(noun)|malarial mosquito|mosquito +malaria parasite|1 +(noun)|plasmodium|Plasmodium vivax|sporozoan +malarial|1 +(adj)|protozoal infection +malarial mosquito|1 +(noun)|malaria mosquito|mosquito +malathion|1 +(noun)|Malathion|insecticide|insect powder +malathion poisoning|1 +(noun)|pesticide poisoning +malawi|1 +(noun)|Malawi|Republic of Malawi|Nyasaland|African country|African nation +malawi kwacha|1 +(noun)|Malawi kwacha|kwacha|Malawian monetary unit +malawian|2 +(adj)|Malawian|African country|African nation +(noun)|Malawian|African +malawian monetary unit|1 +(noun)|Malawian monetary unit|monetary unit +malaxis|1 +(noun)|Malaxis|genus Malaxis|monocot genus|liliopsid genus +malaxis-unifolia|1 +(noun)|green adder's mouth|Malaxis-unifolia|Malaxis ophioglossoides|orchid|orchidaceous plant +malaxis ophioglossoides|1 +(noun)|green adder's mouth|Malaxis-unifolia|Malaxis ophioglossoides|orchid|orchidaceous plant +malay|3 +(adj)|Malay|Malayan|Asian|Asiatic +(noun)|Malay|Malayan|Asian|Asiatic +(noun)|Malay|Western Malayo-Polynesian +malay archipelago|1 +(noun)|Malay Archipelago|East Indies|East India|archipelago +malay peninsula|1 +(noun)|Malay Peninsula|peninsula +malaya|1 +(noun)|Malaysia|Malaya|Asian country|Asian nation +malayalam|1 +(noun)|Malayalam|South Dravidian +malayan|3 +(adj)|Malaysian|Malayan|Asian country|Asian nation +(adj)|Malay|Malayan|Asian|Asiatic +(noun)|Malay|Malayan|Asian|Asiatic +malayan tapir|1 +(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir +malayo-polynesian|2 +(adj)|Malayo-Polynesian|Austronesian|Austronesian language +(noun)|Malayo-Polynesian|Austronesian|Austronesian language +malaysia|1 +(noun)|Malaysia|Malaya|Asian country|Asian nation +malaysia militant group|1 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +malaysian|3 +(adj)|Malaysian|Malayan|Asian country|Asian nation +(noun)|Malaysian|Asian|Asiatic +(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay +malaysian capital|1 +(noun)|Kuala Lumpur|Malaysian capital|capital of Malaysia|national capital +malaysian monetary unit|1 +(noun)|Malaysian monetary unit|monetary unit +malaysian mujahidin group|1 +(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization|terrorist group|foreign terrorist organization|FTO +malcolm little|1 +(noun)|Malcolm X|Malcolm Little|civil rights leader|civil rights worker|civil rights activist|militant|activist +malcolm lowry|1 +(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer|author +malcolm stock|1 +(noun)|Malcolm stock|stock|flower +malcolm x|1 +(noun)|Malcolm X|Malcolm Little|civil rights leader|civil rights worker|civil rights activist|militant|activist +malcolmia|1 +(noun)|Malcolmia|genus Malcolmia|dilleniid dicot genus +malcolmia maritima|1 +(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower +malcontent|2 +(adj)|disaffected|ill-affected|rebellious|discontented |discontent +(noun)|person|individual|someone|somebody|mortal|human|soul +maldivan|1 +(noun)|Maldivian|Maldivan|Asian|Asiatic +maldive islands|1 +(noun)|Maldives|Maldive Islands|island +maldives|2 +(noun)|Maldives|Republic of Maldives|country|state|land +(noun)|Maldives|Maldive Islands|island +maldivian|1 +(noun)|Maldivian|Maldivan|Asian|Asiatic +maldon|1 +(noun)|Maldon|Battle of Maldon|pitched battle +male|6 +(adj)|male |antheral|staminate|phallic|priapic|priapic|young-begetting|masculine +(adj)|masculine +(adj)|manful|manlike|manly|virile|masculine +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|male person|person|individual|someone|somebody|mortal|human|soul +(noun)|Male|national capital +male-patterned baldness|1 +(noun)|baldness|phalacrosis +male aristocrat|1 +(noun)|aristocrat|blue blood|patrician +male berry|2 +(noun)|maleberry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub|bush +(noun)| +male body|1 +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh +male bonding|1 +(noun)|bonding +male chauvinism|1 +(noun)|chauvinism|antifeminism|sexism +male chauvinist|1 +(noun)|sexist|antifeminist +male chest|1 +(noun)|thorax|chest|pectus +male child|1 +(noun)|boy|male|male person +male erecticle dysfunction|1 +(noun)|erectile dysfunction|ED|impotence|impotency|dysfunction|disfunction +male fern|1 +(noun)|Dryopteris filix-mas|wood fern|wood-fern|woodfern +male genital organ|1 +(noun)|male genitalia|male genitals|family jewels|genitalia|genital organ|genitals|private parts|privates|crotch +male genitalia|1 +(noun)|male genitals|male genital organ|family jewels|genitalia|genital organ|genitals|private parts|privates|crotch +male genitals|1 +(noun)|male genitalia|male genital organ|family jewels|genitalia|genital organ|genitals|private parts|privates|crotch +male horse|1 +(noun)|male +male hypogonadism|1 +(noun)|eunuchoidism|hypogonadism +male internal reproductive organ|1 +(noun)|reproductive organ|sex organ +male monarch|1 +(noun)|king|sovereign|crowned head|monarch +male offspring|1 +(noun)|man-child|child|kid|male|male person +male orchis|1 +(noun)|early purple orchid|Orchis mascula|orchis +male orgasm|1 +(noun)|orgasm|climax|sexual climax|coming +male parent|1 +(noun)|father|begetter|parent +male person|1 +(noun)|male|person|individual|someone|somebody|mortal|human|soul +male plug|1 +(noun)|plug|electrical device +male reproductive gland|1 +(noun)|reproductive organ|sex organ +male reproductive system|1 +(noun)|reproductive system|genital system +male sibling|1 +(noun)|kinsman +maleate|1 +(noun)|ester|antidepressant|antidepressant drug +maleberry|1 +(noun)|male berry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub|bush +malebranche|1 +(noun)|Malebranche|Nicolas de Malebranche|philosopher +malecite|2 +(noun)|Malecite|Algonquian|Algonquin +(noun)|Malecite|Maleseet|Algonquian|Algonquin|Algonquian language +maledict|2 +(adj)|accursed|accurst|cursed |curst +(verb)|curse|beshrew|damn|bedamn|anathemize|anathemise|imprecate|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth +malediction|1 +(noun)|imprecation|execration|condemnation|curse +malefactor|1 +(noun)|criminal|felon|crook|outlaw|wrongdoer|offender +malefic|1 +(adj)|malevolent|malign|evil|maleficent +maleficence|2 +(noun)|malevolence|malignity +(noun)|mischief|balefulness|evil|evilness +maleficent|1 +(adj)|maleficent |baleful|baneful|malefic|malevolent|malign|evil|malevolent|malicious|malign +maleic acid|1 +(noun)|acid +malemute|1 +(noun)|malamute|Alaskan malamute|sled dog|sledge dog +maleness|1 +(noun)|masculinity|sex|gender|sexuality +maleo|1 +(noun)|Macrocephalon maleo|megapode|mound bird|mound-bird|mound builder|scrub fowl +maleseet|1 +(noun)|Malecite|Maleseet|Algonquian|Algonquin|Algonquian language +malevich|1 +(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter +malevolence|2 +(noun)|malignity|hate|hatred +(noun)|malevolency|malice|evil|evilness +malevolency|1 +(noun)|malevolence|malice|evil|evilness +malevolent|3 +(adj)|malevolent |malicious|beady-eyed|bitchy|catty|cattish|poisonous|venomous|vicious|venomed|hateful|maleficent|malign +(adj)|malignant|malign +(adj)|malefic|malign|evil|maleficent +malevolent program|1 +(noun)|program|programme|computer program|computer programme +malfeasance|1 +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +malfeasant|1 +(noun)|wrongdoer|offender +malformation|2 +(noun)|deformity|misshapenness|affliction +(noun)|miscreation|failure +malformed|1 +(adj)|deformed|distorted|ill-shapen|misshapen|unshapely +malfunction|2 +(noun)|failure +(verb)|misfunction|fail|go bad|give way|die|give out|conk out|go|break|break down +malfunctioning|1 +(adj)|malfunctioning |nonfunctional|amiss|awry|haywire|wrong|bad|defective|dead|run-down|out of whack +malheur wire lettuce|1 +(noun)|Stephanomeria malheurensis|crucifer|cruciferous plant +mali|1 +(noun)|Mali|Republic of Mali|French Sudan|African country|African nation +mali franc|1 +(noun)|Mali franc|franc +malian|2 +(adj)|Malian|African country|African nation +(noun)|Malian|African +malice|2 +(noun)|maliciousness|spite|spitefulness|venom|malevolence|malignity +(noun)|malevolence|malevolency|evil|evilness +malice aforethought|1 +(noun)|mens rea|planning|preparation|provision +malicious|2 +(adj)|malicious |despiteful|spiteful|vindictive|leering|vixenish +(adj)|malevolent |beady-eyed|bitchy|catty|cattish|poisonous|venomous|vicious|venomed|hateful|maleficent|malign +malicious gossip|1 +(noun)|scandal|dirt|gossip|comment|scuttlebutt +malicious mischief|1 +(noun)|vandalism|hooliganism|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|destruction|devastation +maliciousness|1 +(noun)|malice|spite|spitefulness|venom|malevolence|malignity +malign|3 +(adj)|malign |cancerous|evil|harmful|injurious|malevolent|malignant|harmful|maleficent|malevolent|malicious|unkind +(adj)|malefic|malevolent|evil|maleficent +(verb)|badmouth|traduce|drag through the mud|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +malignance|2 +(noun)|malignancy|disease +(noun)|malignity|malignancy|evil|evilness +malignancy|2 +(noun)|malignance|disease +(noun)|malignity|malignance|evil|evilness +malignant|2 +(adj)|malignant |cancerous +(adj)|malevolent|malign +malignant anaemia|1 +(noun)|pernicious anemia|pernicious anaemia|malignant anemia|anemia|anaemia +malignant anemia|1 +(noun)|pernicious anemia|pernicious anaemia|malignant anaemia|anemia|anaemia +malignant hepatoma|1 +(noun)|hepatoma|hepatocarcinoma|hepatocellular carcinoma|carcinoma +malignant hypertension|1 +(noun)|high blood pressure|hypertension +malignant hyperthermia|1 +(noun)|autosomal dominant disease|autosomal dominant disorder +malignant melanoma|1 +(noun)|melanoma|skin cancer +malignant neoplasm|1 +(noun)|malignant tumor|metastatic tumor|tumor|tumour|neoplasm|malignancy|malignance +malignant neoplastic disease|1 +(noun)|cancer|malignant tumor|malignant neoplasm|metastatic tumor +malignant neuroma|1 +(noun)|neurosarcoma|sarcoma +malignant pustule|1 +(noun)|cutaneous anthrax|anthrax +malignant tumor|1 +(noun)|malignant neoplasm|metastatic tumor|tumor|tumour|neoplasm|malignancy|malignance +maligned|1 +(adj)|reviled|abused +maligner|1 +(noun)|defamer|slanderer|vilifier|libeler|backbiter|traducer|detractor|disparager|depreciator|knocker +malignity|2 +(noun)|malevolence|hate|hatred +(noun)|malignancy|malignance|evil|evilness +malignment|1 +(noun)|smear|vilification|defamation|calumny|obloquy|traducement|hatchet job +malik|1 +(noun)|leader +malinger|1 +(verb)|skulk|fiddle|shirk|shrink from|goldbrick +malingerer|1 +(noun)|skulker|shammer|slacker|shirker +malingering|1 +(noun)|skulking|evasion|escape|dodging +malinois|1 +(noun)|Belgian sheepdog|Belgian shepherd +malinowski|1 +(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist +mall|2 +(noun)|promenade|walk|walkway|paseo +(noun)|plaza|center|shopping mall|shopping center|shopping centre|mercantile establishment|retail store|sales outlet|outlet +mallard|1 +(noun)|Anas platyrhynchos|duck +mallarme|1 +(noun)|Mallarme|Stephane Mallarme|poet +malleability|1 +(noun)|plasticity|physical property +malleable|2 +(adj)|ductile|tractable |manipulable +(adj)|ductile|pliable|pliant|tensile|tractile|elastic +mallee|1 +(noun)|eucalyptus|eucalypt|eucalyptus tree +mallee fowl|1 +(noun)|leipoa|lowan|Leipoa ocellata|megapode|mound bird|mound-bird|mound builder|scrub fowl +mallee hen|1 +(noun)|mallee fowl|leipoa|lowan|Leipoa ocellata +mallet|3 +(noun)|sports implement +(noun)|drumstick +(noun)|beetle|hammer +malleus|1 +(noun)|hammer|auditory ossicle +mallon|1 +(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier|immune carrier +mallophaga|1 +(noun)|Mallophaga|order Mallophaga|animal order +mallotus|1 +(noun)|Mallotus|genus Mallotus|fish genus +mallow|1 +(noun)|shrub|bush +mallow family|1 +(noun)|Malvaceae|family Malvaceae|dilleniid dicot family +malmo|1 +(noun)|Malmo|city|metropolis|urban center|port +malmsey|1 +(noun)|Madeira +malnourish|1 +(verb)|undernourish|feed|give +malnourished|1 +(adj)|malnourished |foodless|ill-fed|underfed|undernourished|starved|starving|unfed|unnourished +malnourishment|1 +(noun)|undernourishment|hunger|hungriness +malnutrition|1 +(noun)|deficiency disease +malocclusion|1 +(noun)|disorder|upset +malodor|1 +(noun)|malodour|stench|stink|reek|fetor|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +malodorous|1 +(adj)|malodorous |malodourous|bilgy|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|putrid|stinking|fusty|musty|frowsty|gamey|gamy|high|miasmic|mephitic|odoriferous|odorous|sour|rancid|niffy|reeking +malodorousness|1 +(noun)|stinkiness|foulness|rankness|olfactory property|smell|aroma|odor|odour|scent +malodour|1 +(noun)|malodor|stench|stink|reek|fetor|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +malodourous|1 +(adj)|malodorous |bilgy|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|putrid|stinking|fusty|musty|frowsty|gamey|gamy|high|miasmic|mephitic|odoriferous|odorous|sour|rancid|niffy|reeking +malone|1 +(noun)|Malone|Edmund Malone|Edmond Malone|scholar|scholarly person|student +malonylurea|1 +(noun)|barbituric acid|acid +malope|1 +(noun)|Malope trifida|mallow +malope trifida|1 +(noun)|malope|Malope trifida|mallow +malopterurus|1 +(noun)|Malopterurus|genus Malopterurus|fish genus +malopterurus electricus|1 +(noun)|electric catfish|Malopterurus electricus|silurid|silurid fish +malory|1 +(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer|author +malosma|1 +(noun)|Malosma|genus Malosma|dicot genus|magnoliopsid genus +malosma laurina|1 +(noun)|laurel sumac|Malosma laurina|Rhus laurina|shrub|bush +malpighi|1 +(noun)|Malpighi|Marcello Malpighi|histologist +malpighia|1 +(noun)|Malpighia|genus Malpighia|rosid dicot genus +malpighia glabra|1 +(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot|dicotyledon|magnoliopsid|exogen +malpighia obovata|1 +(noun)|jiqui|Malpighia obovata|dicot|dicotyledon|magnoliopsid|exogen +malpighiaceae|1 +(noun)|Malpighiaceae|family Malpighiaceae|rosid dicot family +malpighian body|1 +(noun)|malpighian corpuscle|renal corpuscle|capsule +malpighian corpuscle|1 +(noun)|malpighian body|renal corpuscle|capsule +malpighian layer|1 +(noun)|stratum germinativum|stratum basale|rete Malpighii|stratum +malposed|1 +(adj)|crooked +malposed tooth|1 +(noun)|tooth +malposition|1 +(noun)|misplacement|position|spatial relation +malpractice|2 +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +malpractice insurance|1 +(noun)|insurance +malraux|1 +(noun)|Malraux|Andre Malraux|writer|author +mals|1 +(noun)|Master of Arts in Library Science|MALS|master's degree +malt|7 +(noun)|malted|malted milk|milkshake|milk shake|shake +(noun)|malt liquor|lager|lager beer +(noun)|grain|food grain|cereal +(verb)|process|treat +(verb)|convert +(verb)|convert +(verb)|convert +malt liquor|1 +(noun)|malt|lager|lager beer +malt sugar|1 +(noun)|maltose|disaccharide +malt whiskey|1 +(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whisky|whiskey|whisky +malt whisky|1 +(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|whiskey|whisky +malta|2 +(noun)|Malta|Republic of Malta|country|state|land +(noun)|Malta|island +malta fever|1 +(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +malted|1 +(noun)|malt|malted milk|milkshake|milk shake|shake +malted milk|2 +(noun)|malted|malt|milkshake|milk shake|shake +(noun)|ingredient|fixings +maltese|2 +(adj)|Maltese|country|state|land|island +(noun)|Maltese dog|Maltese|toy dog|toy +maltese cat|1 +(noun)|Maltese cat|domestic cat|house cat|Felis domesticus|Felis catus +maltese cross|2 +(noun)|scarlet lychnis|Lychins chalcedonica|lychnis|catchfly +(noun)|Maltese cross|cross +maltese dog|1 +(noun)|Maltese dog|Maltese|toy dog|toy +maltese lira|1 +(noun)|lira|Maltese lira|Maltese monetary unit +maltese monetary unit|1 +(noun)|Maltese monetary unit|monetary unit +maltha|1 +(noun)|mineral tar|mineral +malthus|1 +(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist|economic expert +malthusian|2 +(adj)|Malthusian|economist|economic expert|economic theory +(noun)|Malthusian|believer|truster +malthusian theory|1 +(noun)|Malthusianism|Malthusian theory|economic theory +malthusianism|1 +(noun)|Malthusianism|Malthusian theory|economic theory +maltman|1 +(noun)|maltster|maker|shaper +malto|2 +(noun)|Malto|Dravidian +(noun)|Malto|North Dravidian +maltose|1 +(noun)|malt sugar|disaccharide +maltreat|1 +(verb)|mistreat|abuse|ill-use|step|ill-treat|treat|handle|do by +maltreated|1 +(adj)|abused |ill-treated|mistreated|assaulted|molested|raped|battered|beaten|misunderstood|cuffed|slapped +maltreater|1 +(noun)|abuser|wrongdoer|offender +maltreatment|1 +(noun)|ill-treatment|ill-usage|abuse|mistreatment +maltster|1 +(noun)|maltman|maker|shaper +malus|1 +(noun)|Malus|genus Malus|rosid dicot genus +malus angustifolia|1 +(noun)|Southern crab apple|flowering crab|Malus angustifolia|crab apple|crabapple|cultivated crab apple +malus baccata|1 +(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple|crabapple|cultivated crab apple +malus coronaria|1 +(noun)|American crab apple|garland crab|Malus coronaria|wild apple|crab apple|crabapple +malus fusca|1 +(noun)|Oregon crab apple|Malus fusca|wild apple|crab apple|crabapple +malus ioensis|1 +(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple|crab apple|crabapple +malus pumila|1 +(noun)|apple|orchard apple tree|Malus pumila|apple tree +malus sylvestris|1 +(noun)|wild crab|Malus sylvestris|wild apple|crab apple|crabapple +malva|1 +(noun)|Malva|genus Malva|dilleniid dicot genus +malva moschata|1 +(noun)|musk mallow|mus rose|Malva moschata|mallow +malva neglecta|1 +(noun)|common mallow|Malva neglecta|mallow +malva sylvestris|1 +(noun)|tall mallow|high mallow|cheese|cheeseflower|Malva sylvestris|mallow +malvaceae|1 +(noun)|Malvaceae|family Malvaceae|mallow family|dilleniid dicot family +malvales|1 +(noun)|Malvales|order Malvales|plant order +malvasia|1 +(noun)|vinifera|vinifera grape|common grape vine|Vitis vinifera +malvastrum|1 +(noun)|Malvastrum|genus Malvastrum|dilleniid dicot genus +malvastrum coccineum|1 +(noun)|prairie mallow|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow|false mallow +malvaviscus|1 +(noun)|Malvaviscus|genus Malvaviscus|dilleniid dicot genus +malversate|1 +(verb)|embezzle|defalcate|peculate|misappropriate|steal +malversation|1 +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +malvina hoffman|1 +(noun)|Hoffman|Malvina Hoffman|sculptor|sculpturer|carver|statue maker +mam|2 +(noun)|Mam|Mayan|Maya +(noun)|Mam|Maya|Mayan|Mayan language +mama|2 +(noun)|ma|mamma|mom|momma|mommy|mammy|mum|mummy|mater|mother|female parent +(noun)|Mama|Semitic deity +mama's boy|1 +(noun)|mother's boy|mamma's boy|son|boy +mamba|1 +(noun)|elapid|elapid snake +mamet|1 +(noun)|Mamet|David Mamet|dramatist|playwright +mamey|2 +(noun)|mammee apple|mammee|mammee tree|Mammea americana|fruit tree +(noun)|mammee|mammee apple|edible fruit +mamilla|1 +(noun)|nipple|mammilla|pap|teat|tit|reproductive organ|sex organ +mamillary body|1 +(noun)|mammillary body|corpus mamillare|neural structure +mamma|2 +(noun)|ma|mama|mom|momma|mommy|mammy|mum|mummy|mater|mother|female parent +(noun)|mammary gland|exocrine gland|duct gland +mamma's boy|1 +(noun)|mother's boy|mama's boy|son|boy +mammal|1 +(noun)|vertebrate|craniate +mammal family|1 +(noun)|family +mammal genus|1 +(noun)|genus +mammal semnopithecus|1 +(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus +mammalia|1 +(noun)|Mammalia|class Mammalia|class +mammalian|1 +(adj)|class +mammalogy|1 +(noun)|zoology|zoological science +mammary|1 +(adj)|exocrine gland|duct gland +mammary gland|1 +(noun)|mamma|exocrine gland|duct gland +mammea|1 +(noun)|Mammea|genus Mammea|dilleniid dicot genus +mammea americana|1 +(noun)|mammee apple|mammee|mamey|mammee tree|Mammea americana|fruit tree +mammee|4 +(noun)|marmalade tree|sapote|Pouteria zapota|Calocarpum zapota|tree +(noun)|mammee apple|mamey|mammee tree|Mammea americana|fruit tree +(noun)|mamey|mammee apple|edible fruit +(noun)|sapote|marmalade plum|edible fruit +mammee apple|2 +(noun)|mammee|mamey|mammee tree|Mammea americana|fruit tree +(noun)|mamey|mammee|edible fruit +mammee tree|1 +(noun)|mammee apple|mammee|mamey|Mammea americana|fruit tree +mammilla|1 +(noun)|nipple|mamilla|pap|teat|tit|reproductive organ|sex organ +mammillaria|1 +(noun)|cactus +mammillaria plumosa|1 +(noun)|feather ball|Mammillaria plumosa|cactus +mammillary body|1 +(noun)|mamillary body|corpus mamillare|neural structure +mammogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +mammography|1 +(noun)|diagnostic procedure|diagnostic technique +mammon|2 +(noun)|wealth|wealthiness +(noun)|Mammon|imaginary being|imaginary creature +mammoth|2 +(adj)|gigantic|large +(noun)|elephant +mammoth cave national park|1 +(noun)|Mammoth Cave National Park|national park +mammothermography|1 +(noun)|thermography +mammut|1 +(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus +mammut americanum|1 +(noun)|American mastodon|American mastodont|Mammut americanum|mastodon|mastodont +mammuthus|1 +(noun)|Mammuthus|genus Mammuthus|mammal genus +mammuthus columbi|1 +(noun)|columbian mammoth|Mammuthus columbi|mammoth +mammuthus primigenius|1 +(noun)|woolly mammoth|northern mammoth|Mammuthus primigenius|mammoth +mammutidae|1 +(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family +mammy|2 +(noun)|nanny|nursemaid|nurse +(noun)|ma|mama|mamma|mom|momma|mommy|mum|mummy|mater|mother|female parent +mamo|1 +(noun)|honeycreeper|Hawaiian honeycreeper +mamoncillo|1 +(noun)|Spanish lime|Spanish lime tree|honey berry|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +man|13 +(noun)|adult male|male|male person +(noun)|serviceman|military man|military personnel|skilled worker|trained worker +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|world|human race|humanity|humankind|human beings|humans|mankind|group|grouping +(noun)|homo|human being|human|hominid +(noun)|subordinate|subsidiary|underling|foot soldier +(noun)|male|male person +(noun)|male|male person|lover +(noun)|valet|valet de chambre|gentleman|gentleman's gentleman|manservant|body servant +(noun)|Man|Isle of Man|island +(noun)|piece|game equipment +(verb)|work|do work +(verb)|staff +man's body|1 +(noun)|adult male body|adult body|male body +man-about-town|1 +(noun)|playboy|Corinthian|hedonist|pleasure seeker +man-at-arms|1 +(noun)|soldier +man-child|1 +(noun)|male offspring|child|kid|male|male person +man-eater|2 +(noun)|cannibal|anthropophagus|anthropophagite|savage|barbarian +(noun)|great white shark|white shark|man-eating shark|Carcharodon carcharias|mackerel shark +man-eating shark|1 +(noun)|great white shark|white shark|man-eater|Carcharodon carcharias|mackerel shark +man-made|1 +(adj)|semisynthetic|synthetic|artificial |unreal +man-made fiber|1 +(noun)|synthetic fiber|fiber|fibre +man-of-the-earth|2 +(noun)|Ipomoea leptophylla|morning glory +(noun)|wild potato vine|wild sweet potato vine|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +man-of-war|2 +(noun)|ship of the line|warship|war vessel|combat ship +(noun)|Portuguese man-of-war|jellyfish|siphonophore +man-of-war bird|1 +(noun)|frigate bird|pelecaniform seabird +man-on-a-horse|1 +(noun)|Tricholoma flavovirens|agaric +man-portable|1 +(adj)|portable +man-sized|2 +(adj)|manly |manful|manlike +(adj)|large +man-to-man|2 +(adj)|direct +(adj)|one-on-one|individual +man and wife|1 +(noun)|marriage|married couple|family|family unit +man friday|1 +(noun)|right-hand man|chief assistant|man Friday|assistant|helper|help|supporter +man hour|1 +(noun)|person hour|hour|hr|60 minutes +man in the street|1 +(noun)|John Doe|Joe Blow|Joe Bloggs|commoner|common man|common person +man jack|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +man of action|1 +(noun)|man of deeds|actor|doer|worker +man of affairs|1 +(noun)|businessman|businessperson|bourgeois +man of deeds|1 +(noun)|man of action|actor|doer|worker +man of letters|1 +(noun)|humanist +man of means|1 +(noun)|rich man|wealthy man|rich person|wealthy person|have +man of science|1 +(noun)|scientist|person|individual|someone|somebody|mortal|human|soul +man of the cloth|1 +(noun)|clergyman|reverend|spiritual leader +man of the world|1 +(noun)|sophisticate|adult|grownup +manacle|2 +(noun)|handcuffs|handcuff|cuffs|cuff|handlock|shackle|bond|hamper|trammel|trammels +(verb)|cuff|handcuff|fetter|shackle +manage|6 +(verb)|pull off|negociate|bring off|carry off|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|deal|care|handle|control|command +(verb)|cope|get by|make out|make do|contend|grapple|deal|act|move +(verb)|oversee|supervise|superintend|administer|administrate +(verb)|wangle|finagle|achieve|accomplish|attain|reach +(verb)|do +manageability|1 +(noun)|manageableness|tractability|tractableness|flexibility +manageable|3 +(adj)|wieldy +(adj)|manageable |administrable|controllable|governable|directed|steerable|dirigible|compliant|obedient|tractable|manipulable +(adj)|tractable |manipulable +manageableness|1 +(noun)|manageability|tractability|tractableness|flexibility +managed economy|1 +(noun)|non-market economy +management|2 +(noun)|direction|social control +(noun)|administration|governance|governing body|establishment|brass|organization|organisation +management consultant|1 +(noun)|adviser|advisor|consultant +management consulting|1 +(noun)|service industry +management control|1 +(noun)|internal control +management personnel|1 +(noun)|force|personnel +manager|2 +(noun)|director|managing director|administrator|decision maker +(noun)|coach|handler|trainer +manageress|1 +(noun)|director|manager|managing director +managerial|1 +(adj)|social control +managership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +managing director|1 +(noun)|director|manager|administrator|decision maker +managing editor|1 +(noun)|editor|editor in chief +managua|1 +(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital +manakin|3 +(noun)|mannequin|manikin|mannikin|fashion model|model|assistant|helper|help|supporter +(noun)|mannequin|manikin|mannikin|form|dummy +(noun)|tyrannid +manama|1 +(noun)|Manama|capital of Bahrain|national capital +manannan|1 +(noun)|Manannan|Celtic deity +manat|2 +(noun)|Turkmen monetary unit +(noun)|Azerbaijani monetary unit +manatee|1 +(noun)|Trichechus manatus|sea cow|sirenian mammal|sirenian +manawydan|1 +(noun)|Manawydan|Manawyddan|Celtic deity +manawyddan|1 +(noun)|Manawydan|Manawyddan|Celtic deity +manchester|2 +(noun)|Manchester|city|metropolis|urban center +(noun)|Manchester|city|metropolis|urban center +manchester terrier|1 +(noun)|Manchester terrier|black-and-tan terrier|rat terrier|ratter +manchu|3 +(noun)|Manchu|Tungusic +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +(noun)|Manchu|Tungusic|Tungusic language +manchu dynasty|1 +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +manchuria|1 +(noun)|Manchuria|geographical area|geographic area|geographical region|geographic region +manchurian|1 +(adj)|Manchurian|geographical area|geographic area|geographical region|geographic region +mancunian|2 +(adj)|Mancunian|city|metropolis|urban center +(noun)|Mancunian|English person +manda|1 +(noun)|Manda|South-Central Dravidian +mandaean|3 +(adj)|Mandaean|Mandean|religionist|religious person|Aramaic +(noun)|Mandaean|Mandean|religionist|religious person +(noun)|Mandaean|Mandean|Aramaic +mandaeanism|1 +(noun)|Mandaeanism|Mandeanism|Gnosticism +mandala|1 +(noun)|design|pattern|figure +mandalay|1 +(noun)|Mandalay|city|metropolis|urban center +mandamus|1 +(noun)|writ of mandamus|writ|judicial writ +mandara|1 +(noun)|Mandara|Wandala|Biu-Mandara +mandarin|6 +(noun)|mandarin orange|mandarin orange tree|Citrus reticulata|citrus|citrus tree +(noun)|elitist +(noun)|official|functionary +(noun)|Chinese +(noun)|mandarin orange|citrus|citrus fruit|citrous fruit +(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese +mandarin chinese|1 +(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese +mandarin dialect|1 +(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese +mandarin duck|1 +(noun)|Aix galericulata|duck +mandarin orange|2 +(noun)|mandarin|mandarin orange tree|Citrus reticulata|citrus|citrus tree +(noun)|mandarin|citrus|citrus fruit|citrous fruit +mandarin orange tree|1 +(noun)|mandarin|mandarin orange|Citrus reticulata|citrus|citrus tree +mandatary|1 +(noun)|mandatory|recipient|receiver +mandate|6 +(noun)|authorization|authorisation|legal document|legal instrument|official document|instrument +(noun)|mandatory|district|territory|territorial dominion|dominion +(noun)|commission|commissioning +(verb)|delegate|designate|depute|assign +(verb)|order|prescribe|dictate +(verb)|delegate|designate|depute|assign +mandator|1 +(noun)|authority +mandatorily|1 +(adv)|compulsorily|obligatorily +mandatory|3 +(adj)|compulsory|required|obligatory +(noun)|mandatary|recipient|receiver +(noun)|mandate|district|territory|territorial dominion|dominion +mandatory injunction|1 +(noun)|injunction|enjoining|enjoinment|cease and desist order +mande|1 +(noun)|Mande|Niger-Congo +mandean|3 +(adj)|Mandaean|Mandean|religionist|religious person|Aramaic +(noun)|Mandaean|Mandean|religionist|religious person +(noun)|Mandaean|Mandean|Aramaic +mandeanism|1 +(noun)|Mandaeanism|Mandeanism|Gnosticism +mandela|1 +(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader|statesman|solon|national leader +mandelamine|1 +(noun)|methenamine|Mandelamine|Urex|antibacterial|antibacterial drug|bactericide +mandelbrot|1 +(noun)|Mandelbrot|Benoit Mandelbrot|mathematician +mandelbrot set|1 +(noun)|Mandelbrot set|set +mandelshtam|1 +(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet +mandelstam|1 +(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet +mandevilla|1 +(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus|magnoliopsid genus +mandevilla boliviensis|1 +(noun)|white dipladenia|Mandevilla boliviensis|Dipladenia boliviensis|liana +mandevilla laxa|1 +(noun)|Chilean jasmine|Mandevilla laxa|liana +mandible|1 +(noun)|lower jaw|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw|articulator +mandibula|1 +(noun)|lower jaw|mandible|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw|articulator +mandibular|1 +(adj)|inframaxillary|jaw|articulator +mandibular bone|1 +(noun)|lower jaw|mandible|mandibula|submaxilla|lower jawbone|jawbone|jowl|jaw|articulator +mandibular condyle|1 +(noun)|condylar process|condyloid process|condyle +mandibular fossa|1 +(noun)|glenoid fossa|pit|fossa +mandibular gland|1 +(noun)|submaxillary gland|submaxillary salivary gland|submandibular gland|submandibular salivary gland|salivary gland +mandibular joint|1 +(noun)|temporomandibular joint|articulatio temporomandibularis|synovial joint|articulatio synovialis|diarthrosis +mandibular notch|1 +(noun)|incisure|incisura +mandibulate|1 +(adj)|jaw|articulator +mandibulofacial|1 +(adj)|external body part +mandioc|1 +(noun)|bitter cassava|manioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +mandioca|1 +(noun)|bitter cassava|manioc|mandioc|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +mandola|1 +(noun)|mandolin +mandolin|1 +(noun)|chordophone +mandragora|1 +(noun)|Mandragora|genus Mandragora|asterid dicot genus +mandragora officinarum|1 +(noun)|mandrake|devil's apples|Mandragora officinarum|herb|herbaceous plant +mandrake|2 +(noun)|mandrake root|root +(noun)|devil's apples|Mandragora officinarum|herb|herbaceous plant +mandrake root|1 +(noun)|mandrake|root +mandrel|1 +(noun)|spindle|mandril|arbor|rotating shaft|shaft +mandril|1 +(noun)|spindle|mandrel|arbor|rotating shaft|shaft +mandrill|1 +(noun)|Mandrillus sphinx|baboon +mandrillus|1 +(noun)|Mandrillus|genus Mandrillus|mammal genus +mandrillus leucophaeus|1 +(noun)|drill|Mandrillus leucophaeus|baboon +mandrillus sphinx|1 +(noun)|mandrill|Mandrillus sphinx|baboon +manduca|1 +(noun)|Manduca|genus Manduca|arthropod genus +manduca quinquemaculata|2 +(noun)|tomato hornworm|potato worm|Manduca quinquemaculata|caterpillar +(noun)|Manduca quinquemaculata|hawkmoth|hawk moth|sphingid|sphinx moth|hummingbird moth +manduca sexta|2 +(noun)|tobacco hornworm|tomato worm|Manduca sexta|caterpillar +(noun)|Manduca sexta|hawkmoth|hawk moth|sphingid|sphinx moth|hummingbird moth +manducate|1 +(verb)|chew|masticate|jaw|grate|grind +manduction|2 +(noun)|Communion|Holy Communion|sacramental manduction|ritual +(noun)|chew|chewing|mastication|change of state +mane|2 +(noun)|hair +(noun)|head of hair|hair +maned sheep|1 +(noun)|aoudad|arui|audad|Barbary sheep|Ammotragus lervia|wild sheep +maned wolf|1 +(noun)|red wolf|Canis rufus|Canis niger|wolf +manes|3 +(noun)|Manes|prophet +(noun)|mane|hair +(noun)|mane|head of hair|hair +manet|1 +(noun)|Manet|Edouard Manet|painter +maneuver|8 +(noun)|manoeuvre|simulated military operation|operation|military operation +(noun)|tactic|manoeuvre|plan of action +(noun)|manoeuvre|play|motion|movement|move +(noun)|manoeuvre|tactical maneuver|tactical manoeuvre|move +(noun)|manoeuvre|evasive action|evasion +(verb)|steer|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise|control|command +(verb)|manoeuver|manoeuvre|act|move +(verb)|manoeuver|manoeuvre|operate|move|go +maneuverability|1 +(noun)|manoeuvrability|mobility +maneuverable|1 +(adj)|manoeuvrable|mobile +maneuverer|1 +(noun)|manoeuvrer|planner|contriver|deviser +manfred eigen|1 +(noun)|Eigen|Manfred Eigen|chemist +manful|2 +(adj)|manly |manlike|doughty|fearless|hardy|man-sized|masculine +(adj)|male|manlike|manly|virile|masculine +manfully|1 +(adv)|manly +manfulness|1 +(noun)|manliness|virility|masculinity +mangabey|1 +(noun)|Old World monkey|catarrhine +manganate|1 +(noun)|salt +manganese|1 +(noun)|Mn|atomic number 25|metallic element|metal +manganese bronze|1 +(noun)|high-strength brass|alpha-beta brass|Muntz metal|yellow metal +manganese steel|1 +(noun)|austenitic manganese steel|alloy steel +manganese tetroxide|1 +(noun)|compound|chemical compound +manganic acid|1 +(noun)|acid +manganite|1 +(noun)|mineral +mange|1 +(noun)|animal disease +mangel-wurzel|2 +(noun)|mangold-wurzel|mangold|Beta vulgaris vulgaris|beet|common beet|Beta vulgaris +(noun)|beet|beetroot +manger|1 +(noun)|trough|container +mangey|1 +(adj)|mangy|worn +mangifera|1 +(noun)|Mangifera|genus Mangifera|dicot genus|magnoliopsid genus +mangifera indica|1 +(noun)|mango|mango tree|Mangifera indica|fruit tree +manginess|1 +(noun)|shabbiness|seediness|inelegance +mangle|5 +(noun)|clothes dryer|clothes drier +(verb)|iron|iron out +(verb)|maul|deface|disfigure|blemish +(verb)|mutilate|murder|falsify|distort|garble|warp +(verb)|mutilate|cut up|damage +mangled|2 +(adj)|lacerate|lacerated|torn|injured +(adj)|mutilated|damaged +mangler|1 +(noun)|mutilator|maimer|person|individual|someone|somebody|mortal|human|soul +manglietia|1 +(noun)|genus manglietia|angiospermous tree|flowering tree +mango|2 +(noun)|mango tree|Mangifera indica|fruit tree +(noun)|edible fruit +mango tree|1 +(noun)|mango|Mangifera indica|fruit tree +mangold|1 +(noun)|mangel-wurzel|mangold-wurzel|Beta vulgaris vulgaris|beet|common beet|Beta vulgaris +mangold-wurzel|1 +(noun)|mangel-wurzel|mangold|Beta vulgaris vulgaris|beet|common beet|Beta vulgaris +mangonel|1 +(noun)|catapult|arbalest|arbalist|ballista|bricole|onager|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +mangosteen|2 +(noun)|mangosteen tree|Garcinia mangostana|fruit tree +(noun)|edible fruit +mangosteen tree|1 +(noun)|mangosteen|Garcinia mangostana|fruit tree +mangrove|1 +(noun)|Rhizophora mangle|angiospermous tree|flowering tree +mangrove family|1 +(noun)|Rhizophoraceae|family Rhizophoraceae|dicot family|magnoliopsid family +mangrove snapper|1 +(noun)|gray snapper|Lutjanus griseus|snapper +mangy|1 +(adj)|mangey|worn +manhandle|1 +(verb)|handle|palm +manhattan|2 +(noun)|Manhattan|borough +(noun)|cocktail +manhattan clam chowder|1 +(noun)|Manhattan clam chowder|clam chowder +manhattan island|1 +(noun)|Manhattan Island|island +manhattan project|2 +(noun)|Manhattan Project|executive agency +(noun)|Manhattan Project|undertaking|project|task|labor +manhole|1 +(noun)|hole +manhole cover|1 +(noun)|top|cover +manhood|3 +(noun)|adulthood +(noun)|humanness|humanity|quality +(noun)|position|post|berth|office|spot|billet|place|situation +manhunt|1 +(noun)|search|hunt|hunting +mania|2 +(noun)|passion|cacoethes|irrational motive +(noun)|manic disorder|affective disorder|major affective disorder|emotional disorder|emotional disturbance +maniac|2 +(adj)|maniacal|insane +(noun)|lunatic|madman|sick person|diseased person|sufferer +maniacal|1 +(adj)|maniac|insane +manic|1 +(adj)|frenzied|wild +manic-depressive|2 +(adj)|insane +(noun)|sick person|diseased person|sufferer +manic-depressive psychosis|1 +(noun)|bipolar disorder|manic depression|manic depressive illness|affective disorder|major affective disorder|emotional disorder|emotional disturbance +manic depression|1 +(noun)|bipolar disorder|manic depressive illness|manic-depressive psychosis|affective disorder|major affective disorder|emotional disorder|emotional disturbance +manic depressive illness|1 +(noun)|bipolar disorder|manic depression|manic-depressive psychosis|affective disorder|major affective disorder|emotional disorder|emotional disturbance +manic disorder|1 +(noun)|mania|affective disorder|major affective disorder|emotional disorder|emotional disturbance +manichaean|3 +(adj)|dualistic|Manichaean|doctrine|philosophy|philosophical system|school of thought|ism +(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief +(noun)|Manichaean|Manichean|Manichee|disciple|adherent +manichaeanism|1 +(noun)|Manichaeism|Manichaeanism|religion|faith|religious belief +manichaeism|1 +(noun)|Manichaeism|Manichaeanism|religion|faith|religious belief +manichean|2 +(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief +(noun)|Manichaean|Manichean|Manichee|disciple|adherent +manichee|2 +(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief +(noun)|Manichaean|Manichean|Manichee|disciple|adherent +maniclike|1 +(adj)|insane +manicotti|1 +(noun)|pasta|alimentary paste +manicure|3 +(noun)|care|attention|aid|tending|beauty treatment +(verb)|cut +(verb)|groom|neaten +manicure set|1 +(noun)|set +manicurist|1 +(noun)|beautician|cosmetician +manidae|1 +(noun)|Manidae|family Manidae|mammal family +manifest|5 +(adj)|apparent|evident|patent|plain|obvious +(noun)|legal document|legal instrument|official document|instrument +(verb)|attest|certify|demonstrate|evidence|testify|bear witness|prove|evidence|show +(verb)|record|enter|put down +(verb)|appear +manifest destiny|1 +(noun)|imperialism +manifestation|5 +(noun)|appearance +(noun)|indication|indicant +(noun)|materialization|materialisation|appearance +(noun)|expression|reflection|reflexion|demonstration|demo +(noun)|demonstration|protest|objection|dissent +manifestly|1 +(adv)|obviously|evidently|patently|apparently|plainly|plain +manifesto|1 +(noun)|pronunciamento|declaration +manifold|6 +(adj)|multiplex|multiple +(noun)|pipe|pipage|piping +(noun)|manifold paper|paper +(noun)|mathematical space|topological space +(verb)|copy|re-create +(verb)|multiply|increase +manifold paper|1 +(noun)|manifold|paper +manihot|1 +(noun)|Manihot|genus Manihot|rosid dicot genus +manihot dulcis|1 +(noun)|sweet cassava|Manihot dulcis|cassava|casava +manihot esculenta|1 +(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +manihot utilissima|1 +(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +manikin|3 +(noun)|mannikin|homunculus|small person +(noun)|mannequin|mannikin|manakin|fashion model|model|assistant|helper|help|supporter +(noun)|mannequin|mannikin|manakin|form|dummy +manila|2 +(noun)|manila paper|manilla|manilla paper|paper +(noun)|Manila|capital of the Philippines|national capital +manila bay|1 +(noun)|Manila Bay|naval battle +manila bean|1 +(noun)|winged bean|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine +manila grass|1 +(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia +manila hemp|2 +(noun)|Manila hemp|Manilla hemp|abaca|hemp +(noun)|abaca|Manila hemp|Musa textilis|banana|banana tree +manila maguey|1 +(noun)|cantala|Cebu maguey|fiber|fibre +manila paper|1 +(noun)|manila|manilla|manilla paper|paper +manila tamarind|1 +(noun)|camachile|huamachil|wild tamarind|Pithecellobium dulce|tree +manilkara|1 +(noun)|Manilkara|genus Manilkara|dicot genus|magnoliopsid genus +manilkara bidentata|1 +(noun)|balata|balata tree|beefwood|bully tree|Manilkara bidentata|tree +manilkara zapota|1 +(noun)|sapodilla|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree +manilla|1 +(noun)|manila|manila paper|manilla paper|paper +manilla hemp|1 +(noun)|Manila hemp|Manilla hemp|abaca|hemp +manilla paper|1 +(noun)|manila|manila paper|manilla|paper +manioc|3 +(noun)|cassava|cassava starch|manioca|starch|amylum +(noun)|cassava|root +(noun)|bitter cassava|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava|casava +manioca|1 +(noun)|cassava|cassava starch|manioc|starch|amylum +manipulability|1 +(noun)|mobility +manipulable|1 +(adj)|tractable |docile|teachable|ductile|malleable|manageable|tamable|tameable|compliant|docile|manageable|obedient|tame|tamed +manipulate|6 +(verb)|pull strings|pull wires|influence|act upon|work +(verb)|handle|palm +(verb)|fudge|fake|falsify|cook|wangle|misrepresent|cheat|chisel +(verb)|rig|price +(verb)|keep in line|control|interact +(verb)|treat|care for +manipulation|2 +(noun)|use|influence +(noun)|handling|touch|touching +manipulative|1 +(adj)|artful +manipulative electronic deception|1 +(noun)|electronic manipulative deception|electronic deception +manipulator|2 +(noun)|operator|causal agent|cause|causal agency +(noun)|person|individual|someone|somebody|mortal|human|soul +manipur|1 +(noun)|Manipur|state|province +maniraptor|1 +(noun)|theropod|theropod dinosaur|bird-footed dinosaur +maniraptora|1 +(noun)|Maniraptora|suborder Maniraptora|animal order +manis|1 +(noun)|Manis|genus Manis|mammal genus +manitoba|1 +(noun)|Manitoba|Canadian province +mankato|1 +(noun)|Mankato|town +mankind|1 +(noun)|world|human race|humanity|humankind|human beings|humans|man|group|grouping +manky|1 +(adj)|worthless +manlike|3 +(adj)|manly |manful|doughty|fearless|hardy|man-sized|masculine +(adj)|male|manful|manly|virile|masculine +(adj)|anthropoid|human +manliness|1 +(noun)|manfulness|virility|masculinity +manly|3 +(adj)|manly |manful|manlike|doughty|fearless|hardy|man-sized|masculine +(adj)|male|manful|manlike|virile|masculine +(adv)|manfully +mann|2 +(noun)|Mann|Horace Mann|educator|pedagogue +(noun)|Mann|Thomas Mann|writer|author +manna|2 +(noun)|sap +(noun)|miraculous food|manna from heaven|food|nutrient +manna ash|1 +(noun)|flowering ash|Fraxinus ornus|ash|ash tree +manna from heaven|2 +(noun)|miraculous food|manna|food|nutrient +(noun)|boom|bonanza|gold rush|gravy|godsend|windfall|bunce|happening|occurrence|natural event +manna grass|1 +(noun)|sweet grass|meadowgrass|meadow grass +manna gum|1 +(noun)|Eucalyptus viminalis|eucalyptus|eucalypt|eucalyptus tree +manna lichen|1 +(noun)|lecanora +manned|1 +(adj)|manned +mannequin|2 +(noun)|manikin|mannikin|manakin|fashion model|model|assistant|helper|help|supporter +(noun)|manikin|mannikin|manakin|form|dummy +manner|3 +(noun)|mode|style|way|fashion|property +(noun)|personal manner|demeanor|demeanour|behavior|behaviour|conduct|deportment +(noun)|kind|sort|form|variety +manner name|1 +(noun)|troponym|word +manner of speaking|1 +(noun)|speech|delivery|expressive style|style +manner of walking|1 +(noun)|walk|carriage|bearing|posture +mannered|1 +(adj)|affected |unnatural +mannerism|2 +(noun)|idiosyncrasy|foible|peculiarity|specialness|specialty|speciality|distinctiveness +(noun)|affectation|pose|affectedness|pretense|pretence|pretending|simulation|feigning +mannerly|1 +(adj)|well-mannered|polite +manners|4 +(noun)|demeanor|demeanour|behavior|behaviour|conduct|deportment +(noun)|manner|mode|style|way|fashion|property +(noun)|manner|personal manner|demeanor|demeanour|behavior|behaviour|conduct|deportment +(noun)|manner|kind|sort|form|variety +mannheim|1 +(noun)|Mannheim|city|metropolis|urban center +mannikin|3 +(noun)|manikin|homunculus|small person +(noun)|mannequin|manikin|manakin|fashion model|model|assistant|helper|help|supporter +(noun)|mannequin|manikin|manakin|form|dummy +mannish|2 +(adj)|unwomanly +(adj)|masculine +mannitol|1 +(noun)|Osmitrol|diuretic drug|diuretic|water pill +manoeuver|3 +(verb)|maneuver|manoeuvre|act|move +(verb)|steer|maneuver|manoeuvre|direct|point|head|guide|channelize|channelise|control|command +(verb)|maneuver|manoeuvre|operate|move|go +manoeuvrability|1 +(noun)|maneuverability|mobility +manoeuvrable|1 +(adj)|maneuverable|mobile +manoeuvre|8 +(noun)|tactic|maneuver|plan of action +(noun)|maneuver|simulated military operation|operation|military operation +(noun)|maneuver|play|motion|movement|move +(noun)|maneuver|tactical maneuver|tactical manoeuvre|move +(noun)|maneuver|evasive action|evasion +(verb)|maneuver|manoeuver|act|move +(verb)|steer|maneuver|manoeuver|direct|point|head|guide|channelize|channelise|control|command +(verb)|manoeuver|maneuver|operate|move|go +manoeuvrer|1 +(noun)|maneuverer|planner|contriver|deviser +manometer|1 +(noun)|pressure gauge|pressure gage +manor|2 +(noun)|manor house|mansion|mansion house|manse|hall|residence +(noun)|estate|land|landed estate|acres|demesne +manor hall|1 +(noun)|hall|room +manor house|1 +(noun)|manor|mansion|mansion house|manse|hall|residence +manorial|1 +(adj)|mansion|mansion house|manse|hall|residence +manpad|1 +(noun)|MANPAD|surface-to-air missile|SAM +manpower|1 +(noun)|work force|workforce|hands|men|force|personnel +manque|1 +(adj)|would-be|ambitious +manroot|1 +(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +mansard|2 +(adj)|hipped +(noun)|mansard roof|curb roof +mansard roof|1 +(noun)|mansard|curb roof +mansart|1 +(noun)|Mansart|Francois Mansart|architect|designer +manse|2 +(noun)|mansion|mansion house|hall|residence|house +(noun)|residence +manservant|1 +(noun)|servant|retainer +mansfield|2 +(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer|author +(noun)|Mansfield|town +mansi|2 +(noun)|Vogul|Mansi|Russian +(noun)|Mansi|Vogul|Ugric|Ugrian +mansion|2 +(noun)|sign of the zodiac|star sign|sign|house|planetary house|region|part +(noun)|mansion house|manse|hall|residence|house +mansion house|1 +(noun)|mansion|manse|hall|residence|house +manslaughter|1 +(noun)|homicide +manslayer|1 +(noun)|murderer|liquidator|criminal|felon|crook|outlaw|malefactor|killer|slayer +manson|1 +(noun)|Manson|Sir Patrick Manson|doctor|doc|physician|MD|Dr.|medico +manta|2 +(noun)|blanket|cover +(noun)|manta ray|devilfish|ray +manta birostris|1 +(noun)|Atlantic manta|Manta birostris|manta|manta ray|devilfish +manta ray|1 +(noun)|manta|devilfish|ray +mantegna|1 +(noun)|Mantegna|Andrea Mantegna|painter|engraver +manteidae|1 +(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family +mantel|1 +(noun)|mantelpiece|mantle|mantlepiece|chimneypiece|shelf +mantelet|2 +(noun)|mantlet|shelter +(noun)|mantilla|cape|mantle +mantell|1 +(noun)|Mantell|Gideon Algernon Mantell|geologist +mantelpiece|1 +(noun)|mantel|mantle|mantlepiece|chimneypiece|shelf +manteodea|1 +(noun)|Manteodea|suborder Manteodea|animal order +mantic|1 +(adj)|divinatory|sibylline|sibyllic|vatic|vatical|prophetic |prophetical +mantichora|1 +(noun)|manticore|manticora|mantiger|mythical monster|mythical creature +manticora|1 +(noun)|manticore|mantichora|mantiger|mythical monster|mythical creature +manticore|1 +(noun)|mantichora|manticora|mantiger|mythical monster|mythical creature +mantid|1 +(noun)|mantis|dictyopterous insect +mantidae|1 +(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family +mantiger|1 +(noun)|manticore|mantichora|manticora|mythical monster|mythical creature +mantilla|2 +(noun)|scarf +(noun)|mantelet|cape|mantle +mantinea|1 +(noun)|Mantinea|Mantineia|pitched battle +mantineia|1 +(noun)|Mantinea|Mantineia|pitched battle +mantis|1 +(noun)|mantid|dictyopterous insect +mantis crab|1 +(noun)|mantis shrimp|stomatopod|stomatopod crustacean +mantis prawn|1 +(noun)|squilla|mantis shrimp|mantis crab +mantis religioso|1 +(noun)|praying mantis|praying mantid|Mantis religioso|mantis|mantid +mantis shrimp|1 +(noun)|mantis crab|stomatopod|stomatopod crustacean +mantispid|1 +(noun)|neuropteron|neuropteran|neuropterous insect +mantispidae|1 +(noun)|Mantispidae|family Mantispidae|arthropod family +mantissa|1 +(noun)|fixed-point part|fraction +mantle|10 +(noun)|symbol +(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer|baseball player +(noun)|layer +(noun)|blanket|covering|natural covering|cover +(noun)|pallium|epidermis|cuticle +(noun)|mantel|mantelpiece|mantlepiece|chimneypiece|shelf +(noun)|curtain|drape|drapery|pall|blind|screen|furnishings +(noun)|cape|cloak +(verb)|diffuse|spread|spread out|fan out +(verb)|cover|spread over +mantled|1 +(adj)|cloaked|clothed|draped|wrapped|covered +mantled ground squirrel|1 +(noun)|Citellus lateralis|ground squirrel|gopher|spermophile +mantlepiece|1 +(noun)|mantel|mantelpiece|mantle|chimneypiece|shelf +mantlet|1 +(noun)|mantelet|shelter +mantophasmatodea|1 +(noun)|Mantophasmatodea|order mantophasmatodea|animal order +mantoux test|1 +(noun)|Mantoux test|tuberculin test|tuberculin skin test +mantra|2 +(noun)|motto|slogan|catchword|shibboleth +(noun)|sacred text|sacred writing|religious writing|religious text +mantrap|2 +(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|dish|woman|adult female +(noun)|trap +mantua|1 +(noun)|gown +manual|5 +(adj)|extremity +(adj)|manual |hand-operated|non-automatic +(adj)|blue-collar +(noun)|handbook|enchiridion|vade mecum +(noun)|manual of arms|exercise|practice|drill|practice session|recitation +manual alphabet|1 +(noun)|finger alphabet|alphabet +manual dexterity|1 +(noun)|dexterity|sleight|adeptness|adroitness|deftness|facility|quickness +manual labor|1 +(noun)|manual labour|labor|labour|toil +manual laborer|1 +(noun)|laborer|labourer|jack|workman|working man|working person +manual labour|1 +(noun)|manual labor|labor|labour|toil +manual of arms|1 +(noun)|manual|exercise|practice|drill|practice session|recitation +manubrium|1 +(noun)|bone|os +manuel de falla|1 +(noun)|Falla|Manuel de Falla|composer|pianist|piano player +manuel rodriquez patriotic front|1 +(noun)|Manuel Rodriquez Patriotic Front|terrorist organization|terrorist group|foreign terrorist organization|FTO +manufactory|1 +(noun)|factory|mill|manufacturing plant|plant|works|industrial plant +manufacture|4 +(noun)|industry|commercial enterprise|business enterprise|business +(noun)|fabrication|creating from raw materials +(verb)|fabricate|construct|make +(verb)|fabricate|cook up|make up|invent|think up|think of|dream up|hatch|concoct +manufactured|1 +(adj)|factory-made +manufactured home|1 +(noun)|mobile home|trailer|house trailer|housing|lodging|living accommodations +manufacturer|2 +(noun)|maker|manufacturing business|business|concern|business concern|business organization|business organisation +(noun)|producer|maker|shaper +manufacturing business|1 +(noun)|manufacturer|maker|business|concern|business concern|business organization|business organisation +manufacturing plant|1 +(noun)|factory|mill|manufactory|plant|works|industrial plant +manul|1 +(noun)|Pallas's cat|Felis manul|wildcat +manumission|1 +(noun)|liberation|release|freeing +manumit|1 +(verb)|emancipate|liberate|set free +manumitter|1 +(noun)|emancipator|liberator +manure|2 +(noun)|organic|organic fertilizer|organic fertiliser +(verb)|muck|spread|scatter|spread out +manus|1 +(noun)|hand|mitt|paw|extremity +manuscript|2 +(noun)|ms|writing|written material|piece of writing +(noun)|holograph|autograph +manx|2 +(adj)|Manx|island +(noun)|Manx|Gaelic|Goidelic|Erse +manx cat|1 +(noun)|Manx cat|domestic cat|house cat|Felis domesticus|Felis catus +manx shearwater|1 +(noun)|Manx shearwater|Puffinus puffinus|shearwater +many|1 +(adj)|many |galore|many a|many an|many another|numerous|some|umpteen|umteen|more|some +many-sided|3 +(adj)|multilateral |multipartite|quadrilateral|four-sided|quadripartite|four-party|tetramerous|three-cornered|trilateral|triangular|three-sided|triangular|trilateral|tripartite|three-party|three-way +(adj)|multifaceted|multifarious|varied +(adj)|colorful +many a|1 +(adj)|many an|many another|many +many an|1 +(adj)|many a|many another|many +many another|1 +(adj)|many a|many an|many +many more|1 +(adj)|more +manzanilla|1 +(noun)|Manzanilla|sherry +manzanita|2 +(noun)|shrub|bush +(noun)|madrona|madrono|Arbutus menziesii|arbutus +manzoni|1 +(noun)|Manzoni|Alessandro Manzoni|writer|author +mao|2 +(noun)|monoamine oxidase|MAO|enzyme +(noun)|Mao|Mao Zedong|Mao Tsetung|communist|commie|revolutionist|revolutionary|subversive|subverter +mao jacket|1 +(noun)|Mao jacket|jacket +mao tsetung|1 +(noun)|Mao|Mao Zedong|Mao Tsetung|communist|commie|revolutionist|revolutionary|subversive|subverter +mao zedong|1 +(noun)|Mao|Mao Zedong|Mao Tsetung|communist|commie|revolutionist|revolutionary|subversive|subverter +maoi|1 +(noun)|monoamine oxidase inhibitor|MAOI|antidepressant|antidepressant drug +maoism|1 +(noun)|Maoism|communism +maoist|2 +(adj)|Maoist|communism +(noun)|Maoist|advocate|advocator|proponent|exponent +maori|2 +(noun)|Maori|ethnic minority +(noun)|Maori|Oceanic|Eastern Malayo-Polynesian +maori hen|1 +(noun)|weka|wood hen|rail +map|8 +(noun)|representation +(noun)|mapping|correspondence|function|mathematical function +(verb)|represent|interpret +(verb)|explore +(verb)|situate|locate +(verb)|map out|plan|project|contrive|design +(verb)|picture|depict|render|show +(verb)|represent|permute|commute|transpose +map-reader|1 +(noun)|reader +map collection|1 +(noun)|atlas|book of maps|reference book|reference|reference work|book of facts +map maker|1 +(noun)|cartographer|geographer +map out|1 +(verb)|map|plan|project|contrive|design +map projection|1 +(noun)|projection +mapinguari|1 +(noun)|mylodontid +maple|2 +(noun)|wood +(noun)|angiospermous tree|flowering tree|Acer|genus Acer +maple-leaf|1 +(noun)|emblem|allegory +maple-leaf begonia|1 +(noun)|grape-leaf begonia|Begonia dregei|begonia +maple-leaved bayur|1 +(noun)|mayeng|Pterospermum acerifolium|tree +maple-like|2 +(adj)|maplelike|branchy +(adj)| +maple family|1 +(noun)|Aceraceae|family Aceraceae|dicot family|magnoliopsid family +maple sugar|1 +(noun)|carbohydrate|saccharide|sugar +maple syrup|1 +(noun)|syrup|sirup +maple syrup urine disease|1 +(noun)|branched chain ketoaciduria|ketonuria|ketoaciduria|acetonuria|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +maplelike|1 +(adj)|maple-like|branchy +mapmaking|1 +(noun)|cartography|devising|fashioning|making +mapper|1 +(noun)|plotter|clerk +mapping|2 +(noun)|map|correspondence|function|mathematical function +(noun)|chromosome mapping|procedure|process +maputo|1 +(noun)|Maputo|capital of Mozambique|national capital +maquiladora|1 +(noun)|assembly plant +maquis|2 +(noun)|Maquis|Maquisard|guerrilla|guerilla|irregular|insurgent +(noun)|Maquis|underground|resistance +maquisard|1 +(noun)|Maquis|Maquisard|guerrilla|guerilla|irregular|insurgent +mar|4 +(noun)|March|Mar|Gregorian calendar month +(noun)|blemish|defect|appearance|visual aspect +(verb)|impair|spoil|deflower|vitiate|damage +(verb)|mutilate|maim +mara|2 +(noun)|Mara|Hindu deity +(noun)|Dolichotis patagonum|rodent|gnawer|gnawing animal +marabou|2 +(noun)|marabout|marabou stork|Leptoptilus crumeniferus|stork +(noun)|feather|plume|plumage +marabou stork|1 +(noun)|marabou|marabout|Leptoptilus crumeniferus|stork +marabout|1 +(noun)|marabou|marabou stork|Leptoptilus crumeniferus|stork +maraca|1 +(noun)|bones|castanets|clappers|finger cymbals|percussion instrument|percussive instrument +maracaibo|1 +(noun)|Maracaibo|city|metropolis|urban center|port +maracan language|1 +(noun)|Maraco|Maracan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +maracay|1 +(noun)|Maracay|city|metropolis|urban center +maraco|2 +(noun)|Maraco|South American Indian +(noun)|Maraco|Maracan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +marang|2 +(noun)|marang tree|Artocarpus odoratissima|fruit tree +(noun)|edible fruit +marang tree|1 +(noun)|marang|Artocarpus odoratissima|fruit tree +maranta|1 +(noun)|herb|herbaceous plant +maranta arundinaceae|1 +(noun)|arrowroot|American arrowroot|obedience plant|Maranta arundinaceae|maranta +marantaceae|1 +(noun)|Marantaceae|family Marantaceae|arrowroot family|monocot family|liliopsid family +marasca|2 +(noun)|fruit +(noun)|marasca cherry|maraschino cherry|Prunus cerasus marasca|sour cherry|sour cherry tree|Prunus cerasus +marasca cherry|1 +(noun)|marasca|maraschino cherry|Prunus cerasus marasca|sour cherry|sour cherry tree|Prunus cerasus +maraschino|2 +(noun)|liqueur|cordial +(noun)|maraschino cherry|sweet|confection|confectionery +maraschino cherry|2 +(noun)|marasca|marasca cherry|Prunus cerasus marasca|sour cherry|sour cherry tree|Prunus cerasus +(noun)|maraschino|sweet|confection|confectionery +marasmius|1 +(noun)|Marasmius|genus Marasmius|fungus genus +marasmius oreades|1 +(noun)|fairy-ring mushroom|Marasmius oreades|agaric +marasmus|1 +(noun)|malnutrition +marat|1 +(noun)|Marat|Jean Paul Marat|revolutionist|revolutionary|subversive|subverter +maratha|1 +(noun)|Maratha|Mahratta|Indian +marathi|1 +(noun)|Marathi|Mahratti|Sanskrit|Sanskritic language +marathon|3 +(noun)|endurance contest|undertaking|project|task|labor +(noun)|footrace|foot race|run +(noun)|Marathon|battle of Marathon|pitched battle +marathon runner|1 +(noun)|marathoner|road runner|long-distance runner|runner +marathoner|1 +(noun)|marathon runner|road runner|long-distance runner|runner +marattia|1 +(noun)|Marattia|genus Marattia|fern genus +marattia salicina|1 +(noun)|potato fern|Marattia salicina|fern +marattiaceae|1 +(noun)|Marattiaceae|family Marattiaceae|fern family +marattiales|1 +(noun)|Marattiales|order Marattiales|plant order +maraud|2 +(noun)|foray|raid|penetration|incursion +(verb)|foray into|raid +marauder|1 +(noun)|predator|vulture|piranha|attacker|aggressor|assailant|assaulter +marauding|1 +(adj)|predatory|raiding|offensive +maravilla|2 +(noun)|desert four o'clock|Colorado four o'clock|Mirabilis multiflora|four o'clock +(noun)|sweet four o'clock|Mirabilis longiflora|four o'clock +marble|4 +(noun)|rock|stone +(noun)|ball +(noun)|sculpture +(verb)|stain +marble-wood|3 +(noun)|marblewood|zebrawood|zebrawood tree +(noun)|marblewood|Andaman marble|Diospyros kurzii|tree +(noun)| +marble bones disease|1 +(noun)|osteopetrosis|Albers-Schonberg disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +marble cake|1 +(noun)|cake +marbled|1 +(adj)|marbleized|marbleised|patterned +marbleisation|1 +(noun)|marbleization|marbleizing|marbleising|texture +marbleise|1 +(verb)|marbleize|change surface +marbleised|1 +(adj)|marbled|marbleized|patterned +marbleising|1 +(noun)|marbleization|marbleisation|marbleizing|texture +marbleization|1 +(noun)|marbleisation|marbleizing|marbleising|texture +marbleize|1 +(verb)|marbleise|change surface +marbleized|1 +(adj)|marbled|marbleised|patterned +marbleizing|1 +(noun)|marbleization|marbleisation|marbleising|texture +marbles|5 +(noun)|child's game +(noun)|wits|intelligence +(noun)|marble|rock|stone +(noun)|marble|ball +(noun)|marble|sculpture +marblewood|2 +(noun)|marble-wood|zebrawood|zebrawood tree +(noun)|marble-wood|Andaman marble|Diospyros kurzii|tree +marbling|1 +(noun)|edible fat +marburg disease|1 +(noun)|Marburg disease|Marburg hemorrhagic fever|green monkey disease|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +marburg hemorrhagic fever|1 +(noun)|Marburg disease|Marburg hemorrhagic fever|green monkey disease|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +marburg virus|1 +(noun)|Marburg virus|filovirus +marc|1 +(noun)|brandy +marc blitzstein|1 +(noun)|Blitzstein|Marc Blitzstein|pianist|piano player|composer +marc chagall|1 +(noun)|Chagall|Marc Chagall|painter +marceau|1 +(noun)|Marceau|Marcel Marceau|mime|mimer|mummer|pantomimer|pantomimist +marcel|2 +(noun)|hairdo|hair style|coiffure +(verb)|wave +marcel duchamp|1 +(noun)|Duchamp|Marcel Duchamp|artist|creative person +marcel lajos breuer|1 +(noun)|Breuer|Marcel Lajos Breuer|architect|designer +marcel marceau|1 +(noun)|Marceau|Marcel Marceau|mime|mimer|mummer|pantomimer|pantomimist +marcel proust|1 +(noun)|Proust|Marcel Proust|novelist +marcello malpighi|1 +(noun)|Malpighi|Marcello Malpighi|histologist +march|14 +(noun)|March|Mar|Gregorian calendar month +(noun)|marching|walk|walking +(noun)|progress|progression|procession|advance|advancement|forward motion|onward motion +(noun)|procession +(noun)|borderland|border district|marchland|district|territory|territorial dominion|dominion +(noun)|marching music|music genre|musical genre|genre|musical style +(noun)|Master of Architecture|MArch|master's degree +(verb)|process|walk +(verb)|walk +(verb)|walk|march on +(verb)|demonstrate|protest|resist|dissent +(verb)|parade|exhibit|walk +(verb)|walk +(verb)|border|adjoin|edge|abut|butt|butt against|butt on|touch|adjoin|meet|contact +march 17|1 +(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day +march 19|1 +(noun)|Saint Joseph|St Joseph|March 19|Christian holy day +march 2|1 +(noun)|Texas Independence Day|March 2|day +march 25|1 +(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day +march equinox|1 +(noun)|vernal equinox|March equinox|spring equinox|equinox +march on|1 +(verb)|advance|progress|pass on|move on|go on|travel|go|move|locomote +march out|1 +(verb)|debouch|march|process +marchand de vin|1 +(noun)|mushroom wine sauce|sauce +marchantia|1 +(noun)|Marchantia|genus Marchantia|moss genus +marchantia polymorpha|1 +(noun)|hepatica|Marchantia polymorpha|liverwort +marchantiaceae|1 +(noun)|Marchantiaceae|family Marchantiaceae|moss family +marchantiales|1 +(noun)|Marchantiales|order Marchantiales|plant order +marche|1 +(noun)|Marche|Marches|Italian region +marched upon|1 +(adj)|walk +marcher|3 +(noun)|inhabitant|dweller|denizen|indweller +(noun)|parader|pedestrian|walker|footer +(noun)|infantryman|foot soldier|footslogger|soldier +marches|2 +(noun)|Marche|Marches|Italian region +(noun)|Marche|Marches|Italian region +marching|1 +(noun)|march|walk|walking +marching music|1 +(noun)|march|music genre|musical genre|genre|musical style +marching order|1 +(noun)|materiel|equipage +marching orders|3 +(noun)|walking papers|dismissal|dismission|pink slip +(noun)|order +(noun)|marching order|materiel|equipage +marchioness|2 +(noun)|wife|married woman +(noun)|marquise|Lady|noblewoman|peeress +marchland|1 +(noun)|borderland|border district|march|district|territory|territorial dominion|dominion +marchpane|1 +(noun)|marzipan|candy +marciano|1 +(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter|gladiator +marcionism|1 +(noun)|Marcionism|theological doctrine|religious doctrine|heresy|unorthodoxy +marco polo|1 +(noun)|Polo|Marco Polo|traveler|traveller +marco polo's sheep|1 +(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep +marco polo sheep|1 +(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep +marconi|1 +(noun)|Marconi|Guglielmo Marconi|electrical engineer +marconi rig|1 +(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig|rigging +marcus annius verus|1 +(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor|Emperor of Rome +marcus antonius|1 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +marcus aurelius|1 +(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor|Emperor of Rome +marcus aurelius antoninus|1 +(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor|Emperor of Rome +marcus cocceius nerva|1 +(noun)|Nerva|Marcus Cocceius Nerva|Roman Emperor|Emperor of Rome +marcus junius brutus|1 +(noun)|Brutus|Marcus Junius Brutus|statesman|solon|national leader +marcus terentius varro|1 +(noun)|Varro|Marcus Terentius Varro|scholar|scholarly person|student +marcus tullius cicero|1 +(noun)|Cicero|Marcus Tullius Cicero|Tully|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader +marcus ulpius traianus|1 +(noun)|Trajan|Marcus Ulpius Traianus|Roman Emperor|Emperor of Rome +marcus vipsanius agrippa|1 +(noun)|Agrippa|Marcus Vipsanius Agrippa|statesman|solon|national leader +marcus whitman|1 +(noun)|Whitman|Marcus Whitman|missionary +marcuse|1 +(noun)|Marcuse|Herbert Marcuse|philosopher +mardi gras|2 +(noun)|Mardi Gras|Shrove Tuesday|pancake day|Christian holy day +(noun)|Mardi Gras|Fat Tuesday|carnival +marduk|1 +(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity +mare|2 +(noun)|female horse|horse|Equus caballus +(noun)|maria|region|part +mare's nest|1 +(noun)|clutter|jumble|muddle|welter|smother|disorderliness|disorder +mare's tail|1 +(noun)|cirrus|cirrus cloud +mare clausum|1 +(noun)|waterway +mare liberum|1 +(noun)|waterway +mare nostrum|1 +(noun)|Mediterranean|Mediterranean Sea +marengo|1 +(noun)|Marengo|pitched battle +marfan's syndrome|1 +(noun)|Marfan's syndrome|autosomal dominant disease|autosomal dominant disorder +margaret court|1 +(noun)|Court|Margaret Court|tennis player +margaret higgins sanger|1 +(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse +margaret hilda thatcher|1 +(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman +margaret mead|1 +(noun)|Mead|Margaret Mead|anthropologist +margaret mitchell|1 +(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer|author +margaret munnerlyn mitchell|1 +(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer|author +margaret sanger|1 +(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse +margaret thatcher|1 +(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman +margarete gertrud zelle|1 +(noun)|Mata Hari|Margarete Gertrud Zelle|spy|undercover agent +margaric acid|1 +(noun)|heptadecanoic acid|saturated fatty acid +margarin|2 +(noun)|glycerol trimargarate|glyceryl ester +(noun)|margarine|oleo|oleomargarine|marge|spread|paste +margarine|1 +(noun)|margarin|oleo|oleomargarine|marge|spread|paste +margarita|1 +(noun)|cocktail +margasivsa|1 +(noun)|Aghan|Margasivsa|Hindu calendar month +margate|1 +(noun)|Haemulon album|grunt +margay|1 +(noun)|margay cat|Felis wiedi|wildcat +margay cat|1 +(noun)|margay|Felis wiedi|wildcat +marge|1 +(noun)|margarine|margarin|oleo|oleomargarine|spread|paste +margin|6 +(noun)|border|perimeter|boundary|edge|bound +(noun)|allowance|leeway|tolerance|discrepancy|disagreement|divergence|variance +(noun)|security deposit|down payment|deposit +(noun)|gross profit|gross profit margin|net income|net|net profit|lucre|profit|profits|earnings +(noun)|space|blank space|place +(noun)|edge|strip|slip +margin account|1 +(noun)|brokerage account +margin call|1 +(noun)|call|demand +margin of error|1 +(noun)|margin of safety|safety margin|index +margin of profit|1 +(noun)|profit margin|gross margin|ratio +margin of safety|1 +(noun)|safety margin|margin of error|index +marginal|6 +(adj)|fringy|peripheral +(adj)|borderline|minimal +(adj)|hardscrabble|meager |meagre|meagerly +(adj)|bare|narrow +(adj)|unprofitable +(adj)|disapproved +marginal cost|1 +(noun)|incremental cost|differential cost|monetary value|price|cost +marginal placentation|1 +(noun)|ventral placentation|placentation +marginal utility|1 +(noun)|utility +marginal wood fern|1 +(noun)|evergreen wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern|wood-fern|woodfern +marginalisation|1 +(noun)|marginalization|social process +marginalise|1 +(verb)|marginalize|interact +marginality|1 +(noun)|position|spatial relation +marginalization|1 +(noun)|marginalisation|social process +marginalize|1 +(verb)|marginalise|interact +marginocephalia|1 +(noun)|Marginocephalia|suborder Marginocephalia|marginocephalian|animal order +marginocephalian|1 +(noun)|Marginocephalia|suborder Marginocephalia|animal order +margosa|1 +(noun)|neem|neem tree|nim tree|arishth|Azadirachta indica|Melia Azadirachta|tree +margrave|2 +(noun)|military governor +(noun)|Lord|noble|nobleman +marguerite|2 +(noun)|oxeye daisy|ox-eyed daisy|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +(noun)|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub|suffrutex +marguerite daisy|1 +(noun)|marguerite|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub|suffrutex +marguerite radclyffe hall|1 +(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer|author +mari|2 +(noun)|Cheremis|Cheremiss|Mari|Russian +(noun)|Cheremis|Cheremiss|Mari|Volgaic +maria|2 +(noun)|mare|region|part +(noun)|Maria|Calophyllum longifolium|tree +maria callas|1 +(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura|coloratura soprano +maria luigi carlo zenobio cherubini|1 +(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer +maria magdalene von losch|1 +(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress|singer|vocalist|vocalizer|vocaliser +maria meneghini callas|1 +(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura|coloratura soprano +maria mitchell|1 +(noun)|Mitchell|Maria Mitchell|astronomer|uranologist|stargazer +maria montesorri|1 +(noun)|Montessori|Maria Montesorri|educator|pedagogue +maria tallchief|1 +(noun)|Tallchief|Maria Tallchief|dancer|professional dancer +mariachi|1 +(noun)|ensemble +marian|1 +(adj)|Marian|Jewess|mother|female parent +marian anderson|1 +(noun)|Anderson|Marian Anderson|contralto +mariana islands|1 +(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago +marianas|1 +(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago +marianne craig moore|1 +(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet +marianne moore|1 +(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet +maricopa|2 +(noun)|Maricopa|Hokan|Hoka +(noun)|Maricopa|Yuman +marie-strumpell disease|1 +(noun)|ankylosing spondylitis|Marie-Strumpell disease|rheumatoid spondylitis|spondylitis|autoimmune disease|autoimmune disorder +marie anne charlotte corday d'armont|1 +(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist|revolutionary|subversive|subverter +marie antoinette|1 +(noun)|Marie Antoinette|queen +marie charlotte carmichael stopes|1 +(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner|birth-control reformer +marie curie|1 +(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist +marie dolores eliza rosanna gilbert|1 +(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer|professional dancer +marie goeppert mayer|1 +(noun)|Mayer|Marie Goeppert Mayer|nuclear physicist +marie grosholtz|1 +(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler|modeller +marie henri beyle|1 +(noun)|Stendhal|Marie Henri Beyle|writer|author +marie jeanne becu|1 +(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier +marie joseph paul yves roch gilbert du motier|1 +(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier +marie louise elisabeth vigee-lebrun|1 +(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter +marie stopes|1 +(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner|birth-control reformer +marie tussaud|1 +(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler|modeller +mariehamn|1 +(noun)|Mariehamn|Maarianhamina|town|port +marigold|1 +(noun)|flower +marihuana|2 +(noun)|marijuana|ganja|Cannabis sativa|cannabis|hemp +(noun)|cannabis|marijuana|ganja|soft drug|controlled substance +marijuana|2 +(noun)|marihuana|ganja|Cannabis sativa|cannabis|hemp +(noun)|cannabis|marihuana|ganja|soft drug|controlled substance +marijuana cigarette|1 +(noun)|joint|reefer|stick|spliff|cigarette|cigaret|coffin nail|butt|fag +marilyn monroe|1 +(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress +marimba|1 +(noun)|xylophone|percussion instrument|percussive instrument +marina|1 +(noun)|dock|dockage|docking facility +marinade|2 +(noun)|condiment +(verb)|marinate|steep|infuse +marinara|1 +(noun)|spaghetti sauce|pasta sauce +marinate|1 +(verb)|marinade|steep|infuse +marine|5 +(adj)|body of water|water +(adj)|nautical|maritime|transportation|shipping|transport +(adj)|naval unit +(adj)|aquatic +(noun)|Marine|devil dog|leatherneck|shipboard soldier|serviceman|military man|man|military personnel +marine animal|1 +(noun)|marine creature|sea animal|sea creature|animal|animate being|beast|brute|creature|fauna +marine archaeology|1 +(noun)|marine archeology|underwater archeology|underwater archaeology|archeology|archaeology +marine archeology|1 +(noun)|marine archaeology|underwater archeology|underwater archaeology|archeology|archaeology +marine corps|1 +(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|naval unit +marine corps intelligence activity|1 +(noun)|Marine Corps Intelligence Activity|MCIA|agency|federal agency|government agency|bureau|office|authority +marine creature|1 +(noun)|marine animal|sea animal|sea creature|animal|animate being|beast|brute|creature|fauna +marine engineer|1 +(noun)|naval engineer|engineer|applied scientist|technologist +marine glue|1 +(noun)|glue|gum|mucilage +marine iguana|1 +(noun)|Amblyrhynchus cristatus|iguanid|iguanid lizard +marine mine|1 +(noun)|floating mine|mine +marine museum|1 +(noun)|aquarium|fish tank|vivarium|tank|storage tank +marine mussel|1 +(noun)|mytilid|mussel +marine turtle|1 +(noun)|sea turtle|turtle +marineland|1 +(noun)|Marineland|aquarium|fish tank|marine museum +mariner|1 +(noun)|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +mariner's compass|1 +(noun)|compass card|magnetic compass +marini|1 +(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet +marino|1 +(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet +mario vargas llosa|1 +(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer|author +marionette|1 +(noun)|puppet|figure +mariotte's law|1 +(noun)|Boyle's law|Mariotte's law|law|law of nature +mariposa|1 +(noun)|mariposa tulip|mariposa lily|liliaceous plant +mariposa lily|1 +(noun)|mariposa|mariposa tulip|liliaceous plant +mariposa tulip|1 +(noun)|mariposa|mariposa lily|liliaceous plant +mariposan|1 +(noun)|Mariposan|Yokuts|Penutian +marital|1 +(adj)|matrimonial|married|marital status +marital bed|1 +(noun)|marital relationship|kinship|family relationship|relationship +marital communications privilege|1 +(noun)|husband-wife privilege|privilege +marital relationship|1 +(noun)|marital bed|kinship|family relationship|relationship +marital status|1 +(noun)|legal status +maritime|2 +(adj)|nautical|marine|transportation|shipping|transport +(adj)|coastal +maritime law|1 +(noun)|admiralty law|law|jurisprudence +maritime provinces|1 +(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area|geographic area|geographical region|geographic region +maritimes|1 +(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area|geographic area|geographical region|geographic region +marjoram|2 +(noun)|oregano|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum +(noun)|oregano|herb +mark|30 +(noun)|grade|score|evaluation|valuation|rating +(noun)|marker|marking|symbol +(noun)|target|reference point|point of reference|reference +(noun)|print|indication|indicant +(noun)|impression|effect +(noun)|stigma|brand|stain|symbol +(noun)|German mark|Deutsche Mark|Deutschmark|German monetary unit +(noun)|Mark|Saint Mark|St. Mark|Apostle|Evangelist|saint +(noun)|chump|fool|gull|patsy|fall guy|sucker|soft touch|mug|victim|dupe +(noun)|written symbol|printed symbol +(noun)|sign|clue|clew|cue +(noun)|Mark|Gospel According to Mark|Gospel|Gospels|evangel|book +(noun)|scratch|scrape|scar|blemish|defect|mar +(noun)|crisscross|cross|marking +(noun)|bell ringer|bull's eye|home run|success +(verb)|tag|label|attach|mark down|mark up +(verb)|bespeak|betoken|indicate|point|signal +(verb)|distinguish|differentiate|qualify|characterize|characterise +(verb)|commemorate|observe|celebrate|keep +(verb)|change|alter|modify|mark off|mark out +(verb)|stigmatize|stigmatise|brand|denounce|label +(verb)|notice|note +(verb)|scar|pock|pit|deface|disfigure|blemish +(verb)|score|nock|notch +(verb)|set|lay down|establish|make +(verb)|score|record|enter|put down +(verb)|cross off|cross out|strike out|strike off|take away|take out +(verb)|check|check off|mark off|tick off|tick|verify +(verb)|grade|score|measure|evaluate|valuate|assess|appraise|value +(verb)|punctuate|add +mark anthony|1 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +mark antony|1 +(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general|full general +mark clark|1 +(noun)|Clark|Mark Clark|Mark Wayne Clark|general|full general +mark down|1 +(verb)|shave|knock off +mark hopkins|1 +(noun)|Hopkins|Mark Hopkins|theologian|theologist|theologizer|theologiser|educator|pedagogue +mark of cain|1 +(noun)|mark of Cain|sin|sinfulness|wickedness +mark off|2 +(verb)|mark out|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|check|check off|mark|tick off|tick|verify +mark out|1 +(verb)|mark off|restrict|restrain|trammel|limit|bound|confine|throttle +mark rothko|1 +(noun)|Rothko|Mark Rothko|painter +mark tobey|1 +(noun)|Tobey|Mark Tobey|painter +mark twain|1 +(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer|author|humorist|humourist +mark up|1 +(verb)|price +mark wayne clark|1 +(noun)|Clark|Mark Clark|Mark Wayne Clark|general|full general +markaz-ud-dawa-wal-irshad|1 +(noun)|Markaz-ud-Dawa-wal-Irshad|MDI|nongovernmental organization|NGO +marked|3 +(adj)|pronounced|noticeable +(adj)|conspicuous |obvious +(adj)|marked |asterisked|starred|well-marked|scarred +marked-up|1 +(adj)|dirty|foul|illegible +marker|3 +(noun)|artifact|artefact +(noun)|marking|mark|symbol +(noun)|writing implement +market|8 +(noun)|marketplace|activity +(noun)|securities industry|industry +(noun)|class|social class|socio-economic class +(noun)|grocery store|grocery|food market|marketplace|mart +(verb)|trade|merchandise +(verb)|shop +(verb)|deal|sell|trade +(verb)|commercialize|commercialise|change|alter|modify +market analysis|1 +(noun)|marketing research|market research +market analyst|1 +(noun)|analyst +market capitalisation|1 +(noun)|market capitalization|capitalization|capitalisation +market capitalization|1 +(noun)|market capitalisation|capitalization|capitalisation +market cross|1 +(noun)|monument +market day|1 +(noun)|day +market economy|1 +(noun)|free enterprise|laissez-faire economy|economy|economic system +market forces|1 +(noun)|economic process +market garden|1 +(noun)|garden +market gardening|1 +(noun)|gardening|horticulture +market keeper|1 +(noun)|shopkeeper|tradesman|storekeeper|merchant|merchandiser +market letter|1 +(noun)|newsletter|newssheet +market order|1 +(noun)|order|purchase order +market penetration|1 +(noun)|penetration +market price|1 +(noun)|market value|value +market research|1 +(noun)|marketing research|research +market square|1 +(noun)|open-air market|open-air marketplace|marketplace|mart +market strategist|1 +(noun)|strategist|strategian +market town|1 +(noun)|town +market value|1 +(noun)|market price|value +marketable|3 +(adj)|in demand|salable |saleable +(adj)|merchantable|sellable|vendable|vendible|salable |saleable +(adj)|exportable +marketer|1 +(noun)|seller|vender|vendor|trafficker|merchant|merchandiser +marketing|3 +(noun)|selling|merchandising|commerce|commercialism|mercantilism +(noun)|commerce|commercialism|mercantilism +(noun)|shopping +marketing cost|1 +(noun)|cost +marketing research|1 +(noun)|market research|research +marketplace|2 +(noun)|market|activity +(noun)|mart|mercantile establishment|retail store|sales outlet|outlet +markhoor|1 +(noun)|markhor|Capra falconeri|wild goat +markhor|1 +(noun)|markhoor|Capra falconeri|wild goat +marking|4 +(noun)|marker|mark|symbol +(noun)|design|pattern|figure +(noun)|grading|scoring|evaluation|rating +(noun)|decoration +marking ink|1 +(noun)|indelible ink +markka|1 +(noun)|Pinnish mark|Finnish monetary unit +markoff|1 +(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician +markoff chain|1 +(noun)|Markov chain|Markoff chain|Markov process|Markoff process +markoff process|1 +(noun)|Markov process|Markoff process|stochastic process +markov|1 +(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician +markov chain|1 +(noun)|Markov chain|Markoff chain|Markov process|Markoff process +markov process|1 +(noun)|Markov process|Markoff process|stochastic process +markova|1 +(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer|professional dancer +markovian|1 +(adj)|Markovian|stochastic process +marks|16 +(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman|man of affairs +(noun)|mark|grade|score|evaluation|valuation|rating +(noun)|marker|marking|mark|symbol +(noun)|target|mark|reference point|point of reference|reference +(noun)|mark|print|indication|indicant +(noun)|mark|impression|effect +(noun)|mark|stigma|brand|stain|symbol +(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit +(noun)|Mark|Saint Mark|St. Mark|Apostle|Evangelist|saint +(noun)|chump|fool|gull|mark|patsy|fall guy|sucker|soft touch|mug|victim|dupe +(noun)|mark|written symbol|printed symbol +(noun)|sign|mark|clue|clew|cue +(noun)|Mark|Gospel According to Mark|Gospel|Gospels|evangel|book +(noun)|scratch|scrape|scar|mark|blemish|defect|mar +(noun)|crisscross|cross|mark|marking +(noun)|bell ringer|bull's eye|mark|home run|success +marksman|1 +(noun)|sharpshooter|crack shot|shot|shooter +marksmanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +markup|2 +(noun)|net income|net|net profit|lucre|profit|profits|earnings +(noun)|direction|instruction +markup language|1 +(noun)|terminology|nomenclature|language +markweed|1 +(noun)|poison ivy|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant +marl|1 +(noun)|soil|dirt +marlberry|1 +(noun)|Ardisia escallonoides|Ardisia paniculata|shrub|bush +marlene dietrich|1 +(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress|singer|vocalist|vocalizer|vocaliser +marley|1 +(noun)|Marley|Robert Nesta Marley|Bob Marley|singer|vocalist|vocalizer|vocaliser +marlin|1 +(noun)|spearfish|billfish +marline|1 +(noun)|small stuff +marlinespike|1 +(noun)|marlinspike|marlingspike|hand tool +marlingspike|1 +(noun)|marlinespike|marlinspike|hand tool +marlinspike|1 +(noun)|marlinespike|marlingspike|hand tool +marlite|1 +(noun)|marlstone|metamorphic rock +marlowe|2 +(noun)|Marlowe|Christopher Marlowe|dramatist|playwright|poet +(noun)|Marlowe|Philip Marlowe|fictional character|fictitious character|character +marlstone|1 +(noun)|marlite|metamorphic rock +marly|1 +(adj)|soil|dirt +marmalade|1 +(noun)|conserve|preserve|conserves|preserves +marmalade box|1 +(noun)|genipap fruit|jagua|Genipa Americana|genipa +marmalade bush|1 +(noun)|fire bush|fire-bush|Streptosolen jamesonii|shrub|bush +marmalade orange|1 +(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|Citrus aurantium|orange|orange tree +marmalade plum|1 +(noun)|sapote|mammee|edible fruit +marmalade tree|1 +(noun)|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree +marmara|1 +(noun)|Marmara|Sea of Marmara|Marmora|Sea of Marmora|sea +marmite|2 +(noun)|soup +(noun)|pot +marmora|1 +(noun)|Marmara|Sea of Marmara|Marmora|Sea of Marmora|sea +marmoreal|2 +(adj)|marmorean|smooth +(adj)|marmorean|hard +marmorean|2 +(adj)|marmoreal|smooth +(adj)|marmoreal|hard +marmoset|1 +(noun)|New World monkey|platyrrhine +marmot|1 +(noun)|rodent|gnawer|gnawing animal +marmota|1 +(noun)|Marmota|genus Marmota|mammal genus +marmota caligata|1 +(noun)|hoary marmot|whistler|whistling marmot|Marmota caligata|marmot +marmota flaviventris|1 +(noun)|yellowbelly marmot|rockchuck|Marmota flaviventris|marmot +marmota monax|1 +(noun)|groundhog|woodchuck|Marmota monax|marmot +marne river|1 +(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle +maroc|2 +(adj)|Moroccan|Maroc|African country|African nation +(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country|African nation +marocain|1 +(noun)|crepe marocain|crepe|crape +maroon|6 +(adj)|brownish-red|chromatic +(noun)|unfortunate|unfortunate person +(noun)|purplish red +(noun)|firework|pyrotechnic +(verb)|strand|abandon|forsake|desolate|desert +(verb)|isolate|insulate +marooned|2 +(adj)|isolated|stranded|unaccompanied +(adj)|forsaken +marplan|1 +(noun)|isocarboxazid|Marplan|monoamine oxidase inhibitor|MAOI +marquand|1 +(noun)|Marquand|John Marquand|John Philip Marquand|writer|author +marque|1 +(noun)|trade name|brand name|brand|name +marquee|2 +(noun)|pavilion|tent|collapsible shelter +(noun)|marquise|canopy +marquesas islands|1 +(noun)|Marquesas Islands|Iles Marquises|archipelago +marquess|2 +(noun)|marquis|Lord|noble|nobleman +(noun)|Marquess|peer +marqueterie|1 +(noun)|marquetry|inlay +marquetry|1 +(noun)|marqueterie|inlay +marquette|2 +(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary|missioner +(noun)|Marquette|town +marquis|2 +(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist|humourist +(noun)|marquess|Lord|noble|nobleman +marquis de lafayette|1 +(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier +marquis de laplace|1 +(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician|astronomer|uranologist|stargazer +marquis de sade|1 +(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer|author +marquise|2 +(noun)|marchioness|Lady|noblewoman|peeress +(noun)|marquee|canopy +marquise de maintenon|1 +(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness|marquise|consort +marquise de montespan|1 +(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness|marquise +marquise de pompdour|1 +(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness|marquise +marrakech|1 +(noun)|Marrakesh|Marrakech|city|metropolis|urban center +marrakesh|1 +(noun)|Marrakesh|Marrakech|city|metropolis|urban center +marrano|1 +(noun)|Marrano|Converso|convert +marred|2 +(adj)|defaced|damaged +(adj)|scarred|blemished +marri|1 +(noun)|red gum|Eucalyptus calophylla|eucalyptus|eucalypt|eucalyptus tree +marriage|4 +(noun)|matrimony|union|spousal relationship|wedlock|marital status +(noun)|married couple|man and wife|family|family unit +(noun)|wedding|marriage ceremony|ritual|rite +(noun)|union|unification +marriage bed|1 +(noun)|bed +marriage broker|1 +(noun)|matchmaker|matcher|mediator|go-between|intermediator|intermediary|intercessor +marriage brokerage|1 +(noun)|marriage mart|brokerage|brokerage firm|securities firm +marriage ceremony|1 +(noun)|marriage|wedding|ritual|rite +marriage contract|1 +(noun)|marriage settlement|contract +marriage counseling|1 +(noun)|guidance|counsel|counseling|counselling|direction +marriage licence|1 +(noun)|marriage license|wedding license|wedding licence|license|licence|permit +marriage license|1 +(noun)|marriage licence|wedding license|wedding licence|license|licence|permit +marriage mart|1 +(noun)|marriage brokerage|brokerage|brokerage firm|securities firm +marriage of convenience|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +marriage offer|1 +(noun)|marriage proposal|proposal of marriage|proposal|offer|offering +marriage proposal|1 +(noun)|proposal of marriage|marriage offer|proposal|offer|offering +marriage settlement|1 +(noun)|marriage contract|contract +marriageability|1 +(noun)|eligibility +marriageable|1 +(adj)|nubile|mature +married|2 +(adj)|married |joined|united|mated|ringed|wed|wedded|mated +(adj)|marital|matrimonial|marital status +married couple|1 +(noun)|marriage|man and wife|family|family unit +married man|1 +(noun)|husband|hubby|spouse|partner|married person|mate|better half +married person|1 +(noun)|spouse|partner|mate|better half|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +married woman|1 +(noun)|wife|woman|adult female|spouse|partner|married person|mate|better half +marrow|5 +(noun)|bone marrow|connective tissue +(noun)|marrow squash|vegetable marrow|summer squash|summer squash vine|Cucurbita pepo melopepo +(noun)|bone marrow|dainty|delicacy|goody|kickshaw|treat +(noun)|vegetable marrow|summer squash +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +marrow squash|1 +(noun)|marrow|vegetable marrow|summer squash|summer squash vine|Cucurbita pepo melopepo +marrowbone|1 +(noun)|bone|os +marrowfat pea|1 +(noun)|pea +marrubium|1 +(noun)|Marrubium|genus Marrubium|asterid dicot genus +marrubium vulgare|1 +(noun)|common horehound|white horehound|Marrubium vulgare|horehound +marruecos|1 +(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country|African nation +marry|2 +(verb)|get married|wed|conjoin|hook up with|get hitched with|espouse|unite|unify +(verb)|wed|tie|splice|officiate +mars|4 +(noun)|Mars|Red Planet|terrestrial planet|superior planet +(noun)|Mars|Roman deity +(noun)|March|Mar|Gregorian calendar month +(noun)|blemish|defect|mar|appearance|visual aspect +marsala|1 +(noun)|Marsala|fortified wine +marseillaise|1 +(noun)|Marseillaise|national anthem +marseille|2 +(noun)|Marseille|Marseilles|city|metropolis|urban center|port +(noun)|fabric|cloth|material|textile +marseilles|3 +(noun)|Marseille|Marseilles|city|metropolis|urban center|port +(noun)|Marseille|Marseilles|city|metropolis|urban center|port +(noun)|marseille|fabric|cloth|material|textile +marseilles fever|1 +(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease +marsh|3 +(noun)|marshland|fen|fenland|wetland +(noun)|Marsh|Reginald Marsh|painter +(noun)|Marsh|Ngaio Marsh|writer|author +marsh andromeda|1 +(noun)|common bog rosemary|Andromeda polifolia|andromeda +marsh bellflower|1 +(noun)|Campanula aparinoides|campanula|bellflower +marsh buggy|1 +(noun)|swamp buggy|amphibian|amphibious vehicle +marsh clematis|1 +(noun)|blue jasmine|blue jessamine|curly clematis|Clematis crispa|clematis +marsh cress|1 +(noun)|yellow watercress|Rorippa islandica|watercress +marsh elder|1 +(noun)|iva|marsh plant|bog plant|swamp plant +marsh felwort|1 +(noun)|Swertia perennia|herb|herbaceous plant +marsh fern|1 +(noun)|Thelypteris palustris|Dryopteris thelypteris|fern +marsh gas|1 +(noun)|methane +marsh gentian|1 +(noun)|calathian violet|Gentiana pneumonanthe|gentian +marsh hare|1 +(noun)|swamp rabbit|Sylvilagus palustris|wood rabbit|cottontail|cottontail rabbit +marsh harrier|1 +(noun)|Circus Aeruginosus|harrier +marsh hawk|1 +(noun)|northern harrier|hen harrier|Circus cyaneus|harrier +marsh hen|2 +(noun)|American coot|mud hen|water hen|Fulica americana|coot +(noun)|gallinule|water hen|swamphen|aquatic bird +marsh horsetail|1 +(noun)|Equisetum palustre|horsetail +marsh mallow|2 +(noun)|white mallow|Althea officinalis|althea|althaea|hollyhock +(noun)|marshmallow|candy +marsh marigold|1 +(noun)|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +marsh milkweed|1 +(noun)|Joe-Pye weed|purple boneset|trumpet weed|Eupatorium purpureum|herb|herbaceous plant +marsh orchid|1 +(noun)|orchid|orchidaceous plant +marsh pea|1 +(noun)|Lathyrus palustris|wild pea +marsh pink|1 +(noun)|American centaury|Sabbatia stellaris|sabbatia +marsh plant|1 +(noun)|bog plant|swamp plant|aquatic plant|water plant|hydrophyte|hydrophytic plant +marsh rosemary|1 +(noun)|sea lavender|statice|subshrub|suffrutex +marsh st-john's wort|1 +(noun)|marsh St-John's wort|Hypericum virginianum|St John's wort +marsh tea|1 +(noun)|wild rosemary|Ledum palustre|shrub|bush +marsh trefoil|1 +(noun)|water shamrock|buckbean|bogbean|bog myrtle|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +marsh wren|1 +(noun)|wren|jenny wren +marshal|6 +(noun)|marshall|lawman|law officer|peace officer +(noun)|marshall|commissioned military officer +(verb)|put|set|place|pose|position|lay +(verb)|arrange|set up +(verb)|mobilize|mobilise|summon|gather|garner|collect|pull together +(verb)|usher|show +marshal saxe|1 +(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general|full general|marshal|marshall +marshal tito|1 +(noun)|Tito|Marshal Tito|Josip Broz|statesman|solon|national leader +marshall|5 +(noun)|Marshall|E. G. Marshall|actor|histrion|player|thespian|role player +(noun)|Marshall|George Marshall|George Catlett Marshall|general|full general|statesman|solon|national leader +(noun)|Marshall|John Marshall|jurist|legal expert|chief justice +(noun)|marshal|commissioned military officer +(noun)|marshal|lawman|law officer|peace officer +marshall islands|2 +(noun)|Marshall Islands|Republic of the Marshall Islands|country|state|land +(noun)|Marshall Islands|archipelago +marshall mcluhan|1 +(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer|author +marshall plan|1 +(noun)|Marshall Plan|European Recovery Program|foreign aid +marshalling yard|1 +(noun)|yard|railway yard +marshals|3 +(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency +(noun)|marshal|marshall|lawman|law officer|peace officer +(noun)|marshal|marshall|commissioned military officer +marshalship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +marshland|1 +(noun)|marsh|fen|fenland|wetland +marshmallow|1 +(noun)|candy +marshmallow fluff|1 +(noun)|spread|paste +marshy|1 +(adj)|boggy|miry|mucky|muddy|quaggy|sloughy|swampy|wet +marsilea|1 +(noun)|Marsilea|genus Marsilea|fern genus +marsilea drummondii|1 +(noun)|nardoo|nardo|common nardoo|Marsilea drummondii|clover fern|pepperwort +marsilea quadrifolia|1 +(noun)|water clover|Marsilea quadrifolia|clover fern|pepperwort +marsileaceae|1 +(noun)|Marsileaceae|family Marsileaceae|fern family +marstan|1 +(noun)|Marstan|John Marstan|dramatist|playwright +marston moor|1 +(noun)|Marston Moor|battle of Marston Moor|pitched battle +marsupial|2 +(adj)|pouch|pocket +(noun)|pouched mammal|metatherian +marsupial mole|1 +(noun)|pouched mole|Notoryctus typhlops|marsupial|pouched mammal +marsupial mouse|1 +(noun)|pouched mouse|marsupial rat|dasyurid marsupial|dasyurid +marsupial rat|1 +(noun)|pouched mouse|marsupial mouse|dasyurid marsupial|dasyurid +marsupialia|1 +(noun)|Marsupialia|order Marsupialia|animal order +marsupium|1 +(noun)|pouch|pocket +mart|1 +(noun)|marketplace|mercantile establishment|retail store|sales outlet|outlet +marta brigit nilsson|1 +(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano +martagon|1 +(noun)|Turk's-cap|Lilium martagon|lily +martello tower|1 +(noun)|fortress|fort +marten|1 +(noun)|marten cat|musteline mammal|mustelid|musteline +marten cat|1 +(noun)|marten|musteline mammal|mustelid|musteline +martensite|1 +(noun)|solid solution|primary solid solution +martes|1 +(noun)|Martes|genus Martes|mammal genus +martes americana|1 +(noun)|American marten|American sable|Martes americana|marten|marten cat +martes foina|1 +(noun)|stone marten|beech marten|Martes foina|marten|marten cat +martes martes|1 +(noun)|pine marten|Martes martes|marten|marten cat +martes pennanti|1 +(noun)|fisher|pekan|fisher cat|black cat|Martes pennanti|marten|marten cat +martes zibellina|1 +(noun)|sable|Martes zibellina|marten|marten cat +martha's vineyard|1 +(noun)|Martha's Vineyard|island +martha beatrice potter webb|1 +(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer|author +martha graham|1 +(noun)|Graham|Martha Graham|dancer|professional dancer|choreographer +martha jane burk|1 +(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman +martha jane burke|1 +(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman +marti|1 +(noun)|Marti|Jose Julian Marti|revolutionist|revolutionary|subversive|subverter|poet +martial|4 +(adj)|soldierly|soldierlike|warriorlike|military +(adj)|warlike|military +(adj)|military +(noun)|Martial|poet +martial art|1 +(noun)|self-defense|self-defence|self-protection +martial law|1 +(noun)|law|jurisprudence +martial music|1 +(noun)|military march|military music|marching music|march +martian|2 +(adj)|Martian|terrestrial planet|superior planet +(noun)|Martian|imaginary being|imaginary creature +martin|5 +(noun)|Martin|St. Martin|bishop|saint +(noun)|Martin|Steve Martin|actor|histrion|player|thespian|role player|comedian|comic +(noun)|Martin|Mary Martin|actress +(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer|vocalist|vocalizer|vocaliser +(noun)|swallow +martin buber|1 +(noun)|Buber|Martin Buber|philosopher +martin cline|1 +(noun)|Cline|Martin Cline|geneticist +martin heidegger|1 +(noun)|Heidegger|Martin Heidegger|philosopher +martin heinrich klaproth|1 +(noun)|Klaproth|Martin Heinrich Klaproth|chemist +martin luther|1 +(noun)|Luther|Martin Luther|theologian|theologist|theologizer|theologiser +martin luther king|1 +(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman|reverend|man of the cloth|civil rights leader|civil rights worker|civil rights activist +martin luther king day|1 +(noun)|Martin Luther King Jr's Birthday|Martin Luther King Day|legal holiday|national holiday +martin luther king jr's birthday|1 +(noun)|Martin Luther King Jr's Birthday|Martin Luther King Day|legal holiday|national holiday +martin luther king jr.|1 +(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman|reverend|man of the cloth|civil rights leader|civil rights worker|civil rights activist +martin scorsese|1 +(noun)|Scorsese|Martin Scorsese|film maker|filmmaker|film producer|movie maker +martin van buren|1 +(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States|United States President|President|Chief Executive +martina navratilova|1 +(noun)|Navratilova|Martina Navratilova|tennis player +martinet|1 +(noun)|disciplinarian|moralist|authoritarian|dictator +martingale|2 +(noun)|stable gear|saddlery|tack +(noun)|dolphin striker|spar +martini|1 +(noun)|cocktail +martinique|1 +(noun)|Martinique|island|French region +martinmas|1 +(noun)|Martinmas|St Martin's Day|11 November|quarter day +martynia|1 +(noun)|Martynia annua|herb|herbaceous plant +martynia annua|1 +(noun)|martynia|Martynia annua|herb|herbaceous plant +martynia arenaria|1 +(noun)|sand devil's claw|Proboscidea arenaria|Martynia arenaria|herb|herbaceous plant +martynia fragrans|1 +(noun)|sweet unicorn plant|Proboscidea fragrans|Martynia fragrans|herb|herbaceous plant +martyniaceae|1 +(noun)|Martyniaceae|family Martyniaceae|plant family +martyr|4 +(noun)|sufferer|victim +(noun)|victim +(verb)|kill +(verb)|martyrize|martyrise|torture|excruciate|torment +martyr operation|1 +(noun)|suicide mission|sacrifice operation|mission|charge|commission +martyrdom|2 +(noun)|death|decease +(noun)|calvary|affliction +martyrise|1 +(verb)|martyr|martyrize|torture|excruciate|torment +martyrize|1 +(verb)|martyr|martyrise|torture|excruciate|torment +martyrs of al-aqsa|1 +(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization|terrorist group|foreign terrorist organization|FTO +marum|1 +(noun)|cat thyme|Teucrium marum|germander +marumi|1 +(noun)|marumi kumquat|round kumquat|Fortunella japonica|kumquat|cumquat|kumquat tree +marumi kumquat|1 +(noun)|marumi|round kumquat|Fortunella japonica|kumquat|cumquat|kumquat tree +marupa|1 +(noun)|Simarouba amara|bitterwood tree +marut|1 +(noun)|Marut|Hindu deity +marvel|3 +(noun)|wonder|happening|occurrence|natural event +(verb)|wonder|react|respond +(verb)|express|verbalize|verbalise|utter|give tongue to +marvel-of-peru|1 +(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock +marvell|1 +(noun)|Marvell|Andrew Marvell|poet +marveller|1 +(noun)|wonderer|admirer +marvellous|3 +(adj)|fantastic|howling|marvelous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary +(adj)|marvelous|miraculous|supernatural +(adj)|improbable|marvelous|tall|incredible |unbelievable +marvellously|1 +(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|terrifically|marvelously +marvelous|3 +(adj)|fantastic|howling|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary +(adj)|improbable|marvellous|tall|incredible |unbelievable +(adj)|marvellous|miraculous|supernatural +marvelously|1 +(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|marvellously|terrifically +marvin neil simon|1 +(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist|playwright +marx|5 +(noun)|Marx|Herbert Marx|Zeppo|comedian|comic +(noun)|Marx|Arthur Marx|Harpo|comedian|comic +(noun)|Marx|Leonard Marx|Chico|comedian|comic +(noun)|Marx|Julius Marx|Groucho|comedian|comic +(noun)|Marx|Karl Marx|philosopher|economist|economic expert|revolutionist|revolutionary|subversive|subverter +marx brothers|1 +(noun)|Marx Brothers|family|family unit +marxism|1 +(noun)|Marxism|communism +marxism-leninism|1 +(noun)|Leninism|Marxism-Leninism|communism +marxist|3 +(adj)|Marxist|communism +(noun)|Marxist|advocate|advocator|proponent|exponent +(noun)|Bolshevik|Marxist|pinko|red|bolshie|radical +marxist-leninist|1 +(adj)|Marxist-Leninist|communism +mary|1 +(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess|mother|female parent +mary ann evans|1 +(noun)|Eliot|George Eliot|Mary Ann Evans|writer|author +mary ashton rice livermore|1 +(noun)|Livermore|Mary Ashton Rice Livermore|suffragist +mary augusta arnold ward|1 +(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer|author +mary baker eddy|1 +(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religionist|religious person +mary douglas leakey|1 +(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist|palaeontologist|fossilist|anthropologist +mary flannery o'connor|1 +(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer|author +mary godwin wollstonecraft shelley|1 +(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer|author +mary harris jones|1 +(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader +mary i|1 +(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England +mary ii|1 +(noun)|Mary II|Queen of England +mary jane|1 +(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +mary leakey|1 +(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist|palaeontologist|fossilist|anthropologist +mary leontyne price|1 +(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano +mary ludwig hays mccauley|1 +(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine +mary magdalen|1 +(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner|evildoer|saint +mary magdalene|1 +(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner|evildoer|saint +mary mallon|1 +(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier|immune carrier +mary martin|1 +(noun)|Martin|Mary Martin|actress +mary mccarthy|1 +(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer|author +mary mccauley|1 +(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine +mary mcleod bethune|1 +(noun)|Bethune|Mary McLeod Bethune|educator|pedagogue +mary morse baker eddy|1 +(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religionist|religious person +mary pickford|1 +(noun)|Pickford|Mary Pickford|Gladys Smith|actress +mary queen of scots|1 +(noun)|Mary Queen of Scots|Mary Stuart|queen|queen regnant|female monarch +mary shelley|1 +(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer|author +mary stuart|1 +(noun)|Mary Queen of Scots|Mary Stuart|queen|queen regnant|female monarch +mary therese mccarthy|1 +(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer|author +mary tudor|1 +(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England +mary wollstonecraft|1 +(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer|author|feminist|women's rightist|women's liberationist|libber +mary wollstonecraft godwin|1 +(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer|author|feminist|women's rightist|women's liberationist|libber +mary wollstonecraft shelley|1 +(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer|author +marya sklodowska|1 +(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist +maryland|2 +(noun)|Maryland|Old Line State|Free State|MD|American state +(noun)|Maryland|Colony +maryland chicken|1 +(noun)|Maryland chicken|dish +maryland golden aster|1 +(noun)|Maryland golden aster|Chrysopsis mariana|golden aster +maryland yellowthroat|1 +(noun)|common yellowthroat|Maryland yellowthroat|Geothlypis trichas|yellowthroat +marzipan|1 +(noun)|marchpane|candy +masa|1 +(noun)|Masa|Chad|Chadic|Chadic language +masai|1 +(noun)|Masai|Nilotic|Nilotic language +mascara|1 +(noun)|makeup|make-up|war paint +mascarene grass|1 +(noun)|Korean velvet grass|Zoysia tenuifolia|zoysia +mascarpone|1 +(noun)|cream cheese +mascot|1 +(noun)|organism|being +masculine|4 +(adj)|masculine +(adj)|masculine |male|butch|macho|male|manful|manlike|manly|virile|mannish|male|manly|manful|manlike +(adj)|stressed +(noun)|gender|grammatical gender +masculinisation|1 +(noun)|masculinization|virilization|virilisation|growth|growing|maturation|development|ontogeny|ontogenesis +masculinise|1 +(verb)|masculinize|virilize|virilise|change|alter|modify +masculinity|2 +(noun)|maleness|sex|gender|sexuality +(noun)|trait +masculinization|1 +(noun)|masculinisation|virilization|virilisation|growth|growing|maturation|development|ontogeny|ontogenesis +masculinize|2 +(verb)|change|alter|modify +(verb)|masculinise|virilize|virilise|change|alter|modify +masdevallia|1 +(noun)|orchid|orchidaceous plant +masefield|1 +(noun)|Masefield|John Masefield|John Edward Masefield|poet +maser|1 +(noun)|amplifier +maseru|1 +(noun)|Maseru|capital of Lesotho|national capital +mash|5 +(noun)|suspension +(noun)|feed|provender +(verb)|squash|crush|squelch|squeeze|press +(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|philander|talk|speak +(verb)|grind|crunch|bray|comminute|break up|fragment|fragmentize|fragmentise +mashed potato|1 +(noun)|potato|white potato|Irish potato|murphy|spud|tater +masher|2 +(noun)|wolf|woman chaser|skirt chaser|womanizer|womaniser|philanderer +(noun)|kitchen utensil +mashhad|1 +(noun)|Mashhad|Meshed|city|metropolis|urban center +mashi|1 +(noun)|Mashi|Bantu|Bantoid language +mashie|1 +(noun)|five iron|iron +mashie niblick|1 +(noun)|seven iron|iron +mashriq|1 +(noun)|Mashriq|Middle East|Mideast|Near East +masjid|1 +(noun)|mosque|musjid|place of worship|house of prayer|house of God|house of worship +mask|8 +(noun)|covering|disguise +(noun)|concealment|concealing|hiding +(noun)|masquerade|masque|party +(noun)|protective covering|protective cover|protection +(verb)|dissemble|cloak|disguise +(verb)|cover +(verb)|cover +(verb)|block out|cover +mask of pregnancy|1 +(noun)|chloasma|melasma|symptom +masked|1 +(adj)|cloaked|disguised|covert +masked ball|1 +(noun)|masquerade ball|fancy-dress ball|ball|masquerade|masque|mask +masked shrew|1 +(noun)|Sorex cinereus|shrew|shrewmouse +masker|1 +(noun)|masquerader|masquer|participant +masking|3 +(noun)|cover|covering|screening|concealment|concealing|hiding +(noun)|sensation|sense experience|sense impression|sense datum +(noun)|masking piece|scenery|scene +masking paper|1 +(noun)|masking tape|adhesive tape +masking piece|1 +(noun)|masking|scenery|scene +masking tape|1 +(noun)|masking paper|adhesive tape +masochism|1 +(noun)|sexual pleasure +masochist|1 +(noun)|pervert|deviant|deviate|degenerate +masochistic|1 +(adj)|masochistic +mason|5 +(noun)|Mason|George Mason|American Revolutionary leader +(noun)|Mason|James Mason|James Neville Mason|actor|histrion|player|thespian|role player +(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer|author +(noun)|stonemason|craftsman|artisan|journeyman|artificer +(noun)|Freemason|Mason|brother +mason's level|1 +(noun)|level|spirit level +mason's trowel|1 +(noun)|brick trowel|trowel +mason-dixon line|1 +(noun)|Mason-Dixon Line|Mason and Dixon Line|Mason and Dixon's Line|state line|state boundary +mason and dixon's line|1 +(noun)|Mason-Dixon Line|Mason and Dixon Line|Mason and Dixon's Line|state line|state boundary +mason and dixon line|1 +(noun)|Mason-Dixon Line|Mason and Dixon Line|Mason and Dixon's Line|state line|state boundary +mason bee|1 +(noun)|bee +mason city|1 +(noun)|Mason City|town +mason jar|1 +(noun)|Mason jar|jar +mason wasp|2 +(noun)|sphecoid wasp|sphecoid +(noun)|vespid|vespid wasp +masonic|2 +(adj)|craftsman|artisan|journeyman|artificer|trade|craft +(adj)|Masonic|brother|secret society +masonite|1 +(noun)|Masonite|fiberboard|fibreboard|particle board +masonry|3 +(noun)|structure|construction +(noun)|Freemasonry|Masonry|secret society +(noun)|trade|craft +masora|1 +(noun)|Masorah|Masora|textual criticism +masorah|1 +(noun)|Masorah|Masora|textual criticism +masorete|1 +(noun)|Masorete|Massorete|Masorite|scholar|scholarly person|student +masoretic|1 +(adj)|Masoretic|textual criticism +masorite|1 +(noun)|Masorete|Massorete|Masorite|scholar|scholarly person|student +masoud|1 +(noun)|Masoud|Ahmad Shah Masoud|leader +masqat|1 +(noun)|Muscat|Masqat|capital of Oman|national capital|port +masque|1 +(noun)|masquerade|mask|party +masquer|1 +(noun)|masquerader|masker|participant +masquerade|5 +(noun)|masque|mask|party +(noun)|fancy dress|masquerade costume|costume|disguise +(noun)|pretense|pretence|pretending|simulation|feigning +(verb)|disguise +(verb)|pose|impersonate|personate +masquerade ball|1 +(noun)|masked ball|fancy-dress ball|ball|masquerade|masque|mask +masquerade costume|1 +(noun)|fancy dress|masquerade|costume|disguise +masquerader|1 +(noun)|masker|masquer|participant +mass|12 +(adj)|large-scale|general +(adj)|aggregate|aggregated|aggregative|collective +(noun)|fundamental quantity|fundamental measure|physical property +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|collection|aggregation|accumulation|assemblage +(noun)|Mass|religious ceremony|religious ritual +(noun)|body +(noun)|multitude|masses|hoi polloi|people|group|grouping +(noun)|bulk|volume|magnitude +(noun)|Mass|religious music|church music +(noun)|Mass|prayer +(verb)|crowd|crowd together +mass-action principle|1 +(noun)|mass action|principle|rule +mass-energy equivalence|1 +(noun)|principle|rule +mass-produce|1 +(verb)|manufacture|fabricate|construct +mass-produced|1 +(adj)|factory-made +mass-spectrometric|1 +(adj)|spectroscope|prism spectroscope +mass action|1 +(noun)|mass-action principle|principle|rule +mass card|1 +(noun)|Mass card|sympathy card +mass culture|1 +(noun)|culture +mass defect|1 +(noun)|mass deficiency|mass +mass deficiency|1 +(noun)|mass defect|mass +mass energy|1 +(noun)|mass +mass hysteria|1 +(noun)|epidemic hysertia|craze|delirium|frenzy|fury|hysteria +mass medium|1 +(noun)|medium|transmission +mass meeting|1 +(noun)|rally|gathering|assemblage +mass murder|1 +(noun)|slaughter|massacre|carnage|butchery|murder|slaying|execution +mass murderer|1 +(noun)|murderer|liquidator|manslayer +mass noun|1 +(noun)|noun +mass number|1 +(noun)|nucleon number|mass unit +mass production|1 +(noun)|production +mass rapid transit|1 +(noun)|rapid transit|public transit +mass spectrograph|1 +(noun)|mass spectrometer|spectrometer +mass spectrometer|1 +(noun)|spectrometer|spectroscope|prism spectroscope +mass spectroscopic|1 +(adj)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis +mass spectroscopy|1 +(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis +mass spectrum|1 +(noun)|spectrum +mass unit|1 +(noun)|unit of measurement|unit +massachuset|2 +(noun)|Massachuset|Massachusetts|Algonquian|Algonquin|Algonquian language +(noun)|Massachuset|Massachusetts|Algonquian|Algonquin +massachusetts|4 +(noun)|Massachusetts|Bay State|Old Colony|MA|American state +(noun)|Massachuset|Massachusetts|Algonquian|Algonquin +(noun)|Massachusetts|Massachusetts Bay Colony|Colony +(noun)|Massachuset|Massachusetts|Algonquian|Algonquin|Algonquian language +massachusetts bay|1 +(noun)|Massachusetts Bay|bay +massachusetts bay colony|1 +(noun)|Massachusetts|Massachusetts Bay Colony|Colony +massachusetts fern|1 +(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern +massachusetts institute of technology|1 +(noun)|Massachusetts Institute of Technology|MIT|university +massacre|2 +(noun)|slaughter|mass murder|carnage|butchery|murder|slaying|execution +(verb)|slaughter|mow down|kill +massage|3 +(noun)|treatment +(verb)|rub down|knead|manipulate +(verb)|treat|care for +massage parlor|2 +(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house +(noun)|place of business|business establishment +massager|1 +(noun)|physical therapist|physiotherapist +massasauga|2 +(noun)|ground rattler|Sistrurus miliaris|rattlesnake|rattler +(noun)|massasauga rattler|Sistrurus catenatus|rattlesnake|rattler +massasauga rattler|1 +(noun)|massasauga|Sistrurus catenatus|rattlesnake|rattler +massasoit|1 +(noun)|Massasoit|Indian chief|Indian chieftain|Wampanoag +massawa|1 +(noun)|Massawa|town|port +masse|1 +(noun)|masse shot|stroke|shot +masse shot|1 +(noun)|masse|stroke|shot +massed|1 +(adj)|accumulated|amassed|assembled|collected|congregate|concentrated +massed fire|1 +(noun)|concentrated fire|fire|firing +massenet|1 +(noun)|Massenet|Jules Emile Frederic Massenet|composer +masses|11 +(noun)|multitude|mass|hoi polloi|people|group|grouping +(noun)|mass|fundamental quantity|fundamental measure|physical property +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|mass|collection|aggregation|accumulation|assemblage +(noun)|Mass|religious ceremony|religious ritual +(noun)|mass|body +(noun)|multitude|mass|hoi polloi|people|group|grouping +(noun)|bulk|mass|volume|magnitude +(noun)|Mass|religious music|church music +(noun)|Mass|prayer +(noun)|masse|masse shot|stroke|shot +masseter|1 +(noun)|facial muscle +masseur|1 +(noun)|massager +masseuse|1 +(noun)|massager +massicot|1 +(noun)|massicotite|lead ore +massicotite|1 +(noun)|massicot|lead ore +massif|1 +(noun)|geological formation|formation +massine|1 +(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer|professional dancer|choreographer +massive|4 +(adj)|monolithic|monumental|large +(adj)|solid +(adj)|large +(adj)|heavy +massiveness|2 +(noun)|bulkiness|largeness|bigness +(noun)|heft|heftiness|ponderousness|ponderosity|heaviness|weightiness +massorete|1 +(noun)|Masorete|Massorete|Masorite|scholar|scholarly person|student +mast|4 +(noun)|spar +(noun)|nut +(noun)|feed|provender +(noun)|pole +mast cell|1 +(noun)|mastocyte|labrocyte|somatic cell|vegetative cell +mastaba|1 +(noun)|mastabah|grave|tomb +mastabah|1 +(noun)|mastaba|grave|tomb +mastalgia|1 +(noun)|pain|hurting +mastectomy|1 +(noun)|ablation|extirpation|cutting out|excision +masted|1 +(adj)|spar +master|14 +(noun)|maestro|artist|creative person +(noun)|overlord|lord|ruler|swayer +(noun)|victor|superior|combatant|battler|belligerent|fighter|scrapper +(noun)|employer +(noun)|headmaster|schoolmaster|principal|school principal|head teacher|head +(noun)|master copy|original|creation +(noun)|captain|sea captain|skipper|officer|ship's officer +(noun)|scholar|scholarly person|student +(noun)|professional|authority +(noun)|passkey|passe-partout|master key|key +(verb)|get the hang|know +(verb)|overcome|get over|subdue|surmount|get the better of|overcome|defeat +(verb)|dominate|control|command +(verb)|control|know +master's degree|1 +(noun)|academic degree|degree +master-at-arms|1 +(noun)|petty officer|PO|P.O. +master bedroom|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +master class|1 +(noun)|class|form|grade +master copy|1 +(noun)|master|original|creation +master cylinder|1 +(noun)|brake cylinder|hydraulic brake cylinder|cylinder|piston chamber +master file|1 +(noun)|main file|computer file +master in business|1 +(noun)|Master in Business|Master in Business Administration|MBA|master's degree +master in business administration|1 +(noun)|Master in Business|Master in Business Administration|MBA|master's degree +master in public affairs|1 +(noun)|Master in Public Affairs|master's degree +master key|1 +(noun)|passkey|passe-partout|master|key +master of architecture|1 +(noun)|Master of Architecture|MArch|master's degree +master of arts|1 +(noun)|Master of Arts|MA|Artium Magister|AM|master's degree +master of arts in library science|1 +(noun)|Master of Arts in Library Science|MALS|master's degree +master of arts in teaching|1 +(noun)|Master of Arts in Teaching|MAT|master's degree +master of ceremonies|1 +(noun)|emcee|host|entertainer +master of divinity|1 +(noun)|Master of Divinity|MDiv|master's degree +master of education|1 +(noun)|Master of Education|MEd|master's degree +master of fine arts|1 +(noun)|Master of Fine Arts|MFA|master's degree +master of laws|1 +(noun)|Master of Laws|LLM|law degree +master of library science|1 +(noun)|Master of Library Science|MLS|master's degree +master of literature|1 +(noun)|Master of Literature|MLitt|master's degree +master of science|1 +(noun)|Master of Science|MS|SM|MSc|master's degree +master of science in engineering|1 +(noun)|Master of Science in Engineering|master's degree +master of theology|1 +(noun)|Master of Theology|ThM|master's degree +master plan|1 +(noun)|plan|program|programme +master race|1 +(noun)|Herrenvolk|race +master sergeant|1 +(noun)|sergeant +mastered|1 +(adj)|down|down pat|perfect +masterful|2 +(adj)|consummate|masterly|virtuoso|skilled +(adj)|imperious|domineering +mastering|2 +(noun)|education +(noun)|recording|transcription +masterless|1 +(adj)|lordless|uncontrolled +masterly|1 +(adj)|consummate|masterful|virtuoso|skilled +mastermind|3 +(noun)|originator|conceiver|creator +(noun)|genius|brain|Einstein|intellectual|intellect +(verb)|engineer|direct|organize|organise|orchestrate|plan +masterpiece|2 +(noun)|chef-d'oeuvre|work|piece of work +(noun)|accomplishment|achievement +masters|11 +(noun)|Masters|Edgar Lee Masters|poet +(noun)|maestro|master|artist|creative person +(noun)|overlord|master|lord|ruler|swayer +(noun)|victor|master|superior|combatant|battler|belligerent|fighter|scrapper +(noun)|master|employer +(noun)|headmaster|schoolmaster|master|principal|school principal|head teacher|head +(noun)|master|master copy|original|creation +(noun)|master|captain|sea captain|skipper|officer|ship's officer +(noun)|master|scholar|scholarly person|student +(noun)|master|professional|authority +(noun)|passkey|passe-partout|master key|master|key +mastership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +masterstroke|1 +(noun)|accomplishment|achievement +masterwort|1 +(noun)|astrantia|herb|herbaceous plant +mastery|3 +(noun)|command|control|skillfulness +(noun)|domination|supremacy|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|subordination|domination +masthead|3 +(noun)|flag|list|listing +(noun)|title +(noun)|top +mastic|2 +(noun)|natural resin +(noun)|cement|filler +masticate|2 +(verb)|knead|work +(verb)|chew|manducate|jaw|grate|grind +mastication|1 +(noun)|chew|chewing|manduction|change of state +masticophis|1 +(noun)|Masticophis|genus Masticophis|reptile genus +masticophis bilineatus|1 +(noun)|Sonoran whipsnake|Masticophis bilineatus|whip-snake|whip snake +masticophis flagellum|1 +(noun)|coachwhip|coachwhip snake|Masticophis flagellum|whip-snake|whip snake +masticophis lateralis|1 +(noun)|California whipsnake|striped racer|Masticophis lateralis|whip-snake|whip snake +mastiff|1 +(noun)|working dog +mastiff bat|1 +(noun)|carnivorous bat|microbat +mastigomycota|1 +(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division +mastigomycotina|1 +(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division +mastigophora|1 +(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class +mastigophoran|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophore|protozoan|protozoon +mastigophore|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|protozoan|protozoon +mastigoproctus|1 +(noun)|Mastigoproctus|genus Mastigoproctus|arthropod genus +mastigoproctus giganteus|1 +(noun)|vinegarroon|Mastigoproctus giganteus|whip-scorpion|whip scorpion +mastitis|1 +(noun)|inflammation|redness|rubor +mastocyte|1 +(noun)|mast cell|labrocyte|somatic cell|vegetative cell +mastodon|1 +(noun)|mastodont|proboscidean|proboscidian +mastodont|1 +(noun)|mastodon|proboscidean|proboscidian +mastoid|2 +(adj)|mastoidal|reproductive organ|sex organ +(noun)|mastoid process|mastoid bone|mastoidal|process|outgrowth|appendage +mastoid bone|1 +(noun)|mastoid|mastoid process|mastoidal|process|outgrowth|appendage +mastoid process|1 +(noun)|mastoid|mastoid bone|mastoidal|process|outgrowth|appendage +mastoidal|3 +(adj)|process|outgrowth|appendage +(adj)|mastoid +(noun)|mastoid|mastoid process|mastoid bone|process|outgrowth|appendage +mastoidale|1 +(noun)|craniometric point +mastoidectomy|1 +(noun)|ablation|extirpation|cutting out|excision +mastoiditis|1 +(noun)|inflammation|redness|rubor +mastopathy|1 +(noun)|mazopathy|pathology +mastopexy|1 +(noun)|plastic surgery|reconstructive surgery|anaplasty +mastotermes|1 +(noun)|Mastotermes|genus Mastotermes|arthropod genus +mastotermes darwiniensis|1 +(noun)|Mastotermes darwiniensis|termite|white ant +mastotermes electrodominicus|1 +(noun)|Mastotermes electrodominicus|termite|white ant +mastotermes electromexicus|1 +(noun)|Mastotermes electromexicus|termite|white ant +mastotermitidae|1 +(noun)|Mastotermitidae|family Mastotermitidae|arthropod family +masturbate|2 +(verb)|stimulate|excite|stir +(verb)|wank|fuck off|she-bop|jack off|jerk off|stimulate|excite|stir +masturbation|1 +(noun)|onanism|self-abuse|autoeroticism|autoerotism +masturbator|1 +(noun)|onanist|person|individual|someone|somebody|mortal|human|soul +mat|9 +(adj)|flat|matt|matte|matted|dull +(noun)|floor cover|floor covering +(noun)|matting|mounting +(noun)|gym mat|sports equipment|sporting goods +(noun)|Master of Arts in Teaching|MAT|master's degree +(noun)|flatness|lusterlessness|lustrelessness|matt|matte|dullness|dulness +(noun)|pad +(verb)|entangle|tangle|snarl|twist|twine|distort +(verb)|felt|felt up|mat up|matt-up|matte up|matte|change +mat up|1 +(verb)|felt|felt up|matt-up|matte up|matte|mat|change +mata hari|1 +(noun)|Mata Hari|Margarete Gertrud Zelle|spy|undercover agent +matabele|1 +(noun)|Ndebele|Matabele|Nguni +matador|1 +(noun)|bullfighter|toreador +matai|1 +(noun)|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer|coniferous tree +matakam|1 +(noun)|Matakam|Mafa|Biu-Mandara +matamoros|1 +(noun)|Matamoros|city|metropolis|urban center +match|19 +(noun)|lucifer|friction match|lighter|light|igniter|ignitor +(noun)|contest|competition +(noun)|lighter|light|igniter|ignitor +(noun)|mate|duplicate|duplication +(noun)|score +(noun)|catch|adult|grownup +(noun)|peer|equal|compeer|person|individual|someone|somebody|mortal|human|soul +(noun)|couple|mates|family|family unit +(noun)|counterpart|opposite number|vis-a-vis +(verb)|fit|correspond|check|jibe|gibe|tally|agree|equal|be +(verb)|supply|provide|render|furnish +(verb)|mate|couple|pair|twin|join|bring together +(verb)|equal|touch|rival|compete|vie|contend +(verb)|fit|adjust|set|correct +(verb)|meet|cope with|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|join|bring together +(verb)|pit|oppose|play off|confront|face +(verb)|adjust|conform|adapt +(verb)|equal|equalize|equalise|equate|change|alter|modify +match-up|2 +(noun)|matchup|pairing +(noun)| +match game|1 +(noun)|test match|matched game|match +match plane|1 +(noun)|tonguing and grooving plane|plane|carpenter's plane|woodworking plane +match play|1 +(noun)|golf|golf game +match point|1 +(noun)|point +matchboard|1 +(noun)|board|plank +matchbook|1 +(noun)|folder +matchbox|1 +(noun)|box +matchbush|1 +(noun)|matchweed|subshrub|suffrutex +matched|2 +(adj)|competitive |competitory +(adj)|matched |compatible|well-matched|coordinated|matching|duplicate|matching|twin|twinned|mated|paired|one-to-one|compatible|mated +matched game|1 +(noun)|test match|match game|match +matcher|1 +(noun)|matchmaker|marriage broker|mediator|go-between|intermediator|intermediary|intercessor +matchet|1 +(noun)|machete|panga|knife +matching|2 +(adj)|duplicate|twin|twinned|matched +(adj)|coordinated|matched +matching funds|1 +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +matchless|1 +(adj)|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +matchlock|1 +(noun)|musket +matchmaker|1 +(noun)|matcher|marriage broker|mediator|go-between|intermediator|intermediary|intercessor +matchstick|1 +(noun)|stick +matchup|1 +(noun)|match-up|pairing +matchweed|1 +(noun)|matchbush|subshrub|suffrutex +matchwood|3 +(noun)|splinters|wood +(noun)|wood +(noun)|bit|chip|flake|fleck|scrap +mate|12 +(noun)|first mate|officer|ship's officer +(noun)|teammate|associate +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|spouse|partner|married person|better half|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +(noun)|match|duplicate|duplication +(noun)|Paraguay tea|Ilex paraguariensis|holly +(noun)|friend +(noun)|beverage|drink|drinkable|potable +(noun)|checkmate|chess move +(verb)|copulate|pair|couple|join|conjoin +(verb)|match|couple|pair|twin|join|bring together +(verb)|checkmate|beat|beat out|crush|shell|trounce|vanquish +mated|3 +(adj)|mated |paired|married|matched +(adj)|paired|matched +(adj)|married +mateless|2 +(adj)|unmated +(adj)|unmarried |single +matelote|1 +(noun)|fish stew +mater|1 +(noun)|ma|mama|mamma|mom|momma|mommy|mammy|mum|mummy|mother|female parent +mater turrita|1 +(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity +materfamilias|1 +(noun)|matriarch|woman|adult female|head of household +materia medica|1 +(noun)|pharmacology|pharmacological medicine|medicine|medical specialty +material|11 +(adj)|worldly +(adj)|material |physical|tangible|touchable|physical|substantial|real +(adj)|material |crucial|relevant +(adj)|physical +(adj)|corporeal |bodily|bodied|corporal|corporate|embodied|incarnate|reincarnate|bodied +(adj)|substantial |real +(noun)|stuff|substance|matter +(noun)|information|info +(noun)|equipment +(noun)|fabric|cloth|textile|artifact|artefact +(noun)|applicant|applier +material body|1 +(noun)|human body|physical body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +material breach|1 +(noun)|breach of contract +material possession|1 +(noun)|property|belongings|holding|possession +material resource|1 +(noun)|assets +material witness|1 +(noun)|witness +materialisation|3 +(noun)|materialization|natural process|natural action|action|activity +(noun)|materialization|manifestation|appearance +(noun)|offspring|materialization|consequence|effect|outcome|result|event|issue|upshot +materialise|1 +(verb)|happen|materialize|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +materialism|2 +(noun)|philistinism|desire +(noun)|physicalism|philosophical doctrine|philosophical theory +materialist|2 +(noun)|capitalist +(noun)|irreligionist|disbeliever|nonbeliever|unbeliever +materialistic|2 +(adj)|mercenary|worldly-minded|worldly +(adj)|bourgeois|conservative|middle-class +materiality|2 +(noun)|relevance|relevancy +(noun)|physicalness|corporeality|quality +materialization|3 +(noun)|materialisation|natural process|natural action|action|activity +(noun)|materialisation|manifestation|appearance +(noun)|offspring|materialisation|consequence|effect|outcome|result|event|issue|upshot +materialize|1 +(verb)|happen|materialise|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +materials handling|1 +(noun)|handling +materiel|1 +(noun)|equipage|equipment +maternal|4 +(adj)|maternal |maternalistic|motherly|motherlike|matriarchal +(adj)|parent +(adj)|parental |paternal +(adj)|enate|enatic|related +maternal-infant bonding|1 +(noun)|bonding +maternal language|1 +(noun)|mother tongue|first language|natural language|tongue +maternal quality|1 +(noun)|motherliness|maternalism|maternity|parental quality +maternalism|2 +(noun)|motherliness|maternal quality|maternity|parental quality +(noun)|care|attention|aid|tending +maternalistic|1 +(adj)|maternal +maternally|1 +(adv)|motherly +maternity|3 +(noun)|pregnancy|gestation|physiological state|physiological condition +(noun)|motherhood|kinship|family relationship|relationship +(noun)|motherliness|maternalism|maternal quality|parental quality +maternity hospital|1 +(noun)|hospital|infirmary +maternity ward|1 +(noun)|ward|hospital ward +mates|10 +(noun)|couple|match|family|family unit +(noun)|mate|first mate|officer|ship's officer +(noun)|teammate|mate|associate +(noun)|mate|animal|animate being|beast|brute|creature|fauna +(noun)|spouse|partner|married person|mate|better half|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +(noun)|match|mate|duplicate|duplication +(noun)|mate|Paraguay tea|Ilex paraguariensis|holly +(noun)|mate|friend +(noun)|mate|beverage|drink|drinkable|potable +(noun)|checkmate|mate|chess move +matey|1 +(adj)|chummy|pally|palsy-walsy|friendly +math|1 +(noun)|mathematics|maths|science|scientific discipline +math teacher|1 +(noun)|mathematics teacher|teacher|instructor +mathematical|5 +(adj)|science|scientific discipline +(adj)|numerical |nonverbal +(adj)|unquestionable +(adj)|possible +(adj)|exact +mathematical function|1 +(noun)|function|mathematical relation +mathematical group|1 +(noun)|group|set +mathematical logic|1 +(noun)|symbolic logic|formal logic|logic|logical system|system of logic +mathematical notation|1 +(noun)|notation|notational system +mathematical operation|1 +(noun)|mathematical process|operation|calculation|computation|computing +mathematical process|1 +(noun)|mathematical operation|operation|calculation|computation|computing +mathematical product|1 +(noun)|product|quantity +mathematical proof|1 +(noun)|proof +mathematical relation|1 +(noun)|relation +mathematical space|1 +(noun)|topological space|space|set +mathematical statement|1 +(noun)|statement +mathematical statistician|1 +(noun)|statistician|mathematician +mathematical symbol|1 +(noun)|character|grapheme|graphic symbol +mathematician|1 +(noun)|scientist|man of science +mathematics|1 +(noun)|math|maths|science|scientific discipline +mathematics department|1 +(noun)|department of mathematics|academic department +mathematics teacher|1 +(noun)|math teacher|teacher|instructor +mathew b. brady|1 +(noun)|Brady|Mathew B. Brady|photographer|lensman +mathias|1 +(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete|jock +maths|2 +(noun)|mathematics|math|science|scientific discipline +(noun)|mathematics|math|science|scientific discipline +matilija poppy|1 +(noun)|California tree poppy|Romneya coulteri|subshrub|suffrutex +matinee|1 +(noun)|theatrical performance|theatrical|representation|histrionics +matinee idol|1 +(noun)|idol|star|principal|lead +mating|1 +(noun)|coupling|pairing|conjugation|union|sexual union|sexual activity|sexual practice|sex|sex activity +matins|1 +(noun)|morning prayer|canonical hour +matisse|1 +(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter +matman|1 +(noun)|wrestler|grappler|combatant|battler|belligerent|fighter|scrapper +matoaka|1 +(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan +matriarch|2 +(noun)|materfamilias|woman|adult female|head of household +(noun)|woman|adult female +matriarchal|1 +(adj)|matriarchal |matriarchic|matricentric|maternal +matriarchate|1 +(noun)|matriarchy|social organization|social organisation|social structure|social system|structure +matriarchic|1 +(adj)|matriarchal +matriarchy|1 +(noun)|matriarchate|social organization|social organisation|social structure|social system|structure +matric|1 +(noun)|matriculation|admission|admittance +matricaria|1 +(noun)|Matricaria|genus Matricaria|asterid dicot genus +matricaria chamomilla|1 +(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb|herbaceous plant +matricaria inodorum|1 +(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +matricaria matricarioides|1 +(noun)|pineapple weed|rayless chamomile|Matricaria matricarioides|herb|herbaceous plant +matricaria oreades|1 +(noun)|turfing daisy|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb|herbaceous plant +matricaria recutita|1 +(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb|herbaceous plant +matricaria tchihatchewii|1 +(noun)|turfing daisy|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb|herbaceous plant +matricentric|1 +(adj)|matriarchal +matricide|2 +(noun)|parricide +(noun)|parricide +matriculate|2 +(noun)|college student|university student +(verb)|enroll|inscribe|enter|enrol|recruit +matriculation|1 +(noun)|matric|admission|admittance +matrikin|1 +(noun)|enate|matrilineal kin|matrisib|matrilineal sib|relative|relation +matrilineage|1 +(noun)|enation|cognation|unilateral descent +matrilineal|1 +(adj)|matrilinear|lineal |direct +matrilineal kin|1 +(noun)|enate|matrikin|matrisib|matrilineal sib|relative|relation +matrilineal sib|1 +(noun)|enate|matrikin|matrilineal kin|matrisib|relative|relation +matrilinear|1 +(adj)|matrilineal|lineal |direct +matrimonial|1 +(adj)|marital|married|marital status +matrimonial law|1 +(noun)|jurisprudence|law|legal philosophy +matrimony|2 +(noun)|marriage|union|spousal relationship|wedlock|marital status +(noun)|sacrament +matrimony vine|1 +(noun)|boxthorn|shrub|bush +matrisib|1 +(noun)|enate|matrikin|matrilineal kin|matrilineal sib|relative|relation +matrix|5 +(noun)|array +(noun)|enclosure|natural enclosure +(noun)|intercellular substance|ground substance|body substance +(noun)|animal tissue +(noun)|mold|mould|cast +matrix addition|1 +(noun)|matrix operation +matrix algebra|1 +(noun)|algebra +matrix inversion|1 +(noun)|matrix operation +matrix multiplication|1 +(noun)|matrix operation +matrix operation|1 +(noun)|mathematical process|mathematical operation|operation +matrix printer|1 +(noun)|dot matrix printer|dot printer|printer +matrix transposition|1 +(noun)|matrix operation +matron|3 +(noun)|wife|married woman +(noun)|wardress +(noun)|head nurse|nurse|woman|adult female +matron of honor|1 +(noun)|attendant|attender|tender +matronly|1 +(adj)|womanly |feminine +matronymic|1 +(noun)|metronymic|name +matsyendra|1 +(noun)|asana +matt|2 +(adj)|flat|mat|matte|matted|dull +(noun)|flatness|lusterlessness|lustrelessness|mat|matte|dullness|dulness +matt-up|1 +(verb)|felt|felt up|mat up|matte up|matte|mat|change +matte|4 +(adj)|flat|mat|matt|matted|dull +(noun)|mixture +(noun)|flatness|lusterlessness|lustrelessness|mat|matt|dullness|dulness +(verb)|felt|felt up|mat up|matt-up|matte up|mat|change +matte up|1 +(verb)|felt|felt up|mat up|matt-up|matte|mat|change +matted|2 +(adj)|tangled +(adj)|flat|mat|matt|matte|dull +matter|7 +(noun)|substance|entity +(noun)|affair|thing|concern +(noun)|topic|subject|issue|content|cognitive content|mental object +(noun)|trouble|problem +(noun)|consequence|import|moment +(noun)|writing|written material|piece of writing +(verb)|count|weigh|be|matter to +matter-of-course|1 +(adj)|expected +matter-of-fact|2 +(adj)|prosaic|unrhetorical +(adj)|pragmatic|pragmatical|practical +matter of course|1 +(noun)|foregone conclusion|ending|conclusion|finish +matter of fact|2 +(noun)|question of fact|question|head +(noun)|fact +matter of law|1 +(noun)|question of law|question|head +matter to|1 +(verb)|interest|refer|pertain|relate|concern|come to|bear on|touch|touch on +matterhorn|1 +(noun)|Matterhorn|mountain peak +matteuccia|1 +(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus +matteuccia struthiopteris|1 +(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +matthew|2 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +(noun)|Matthew|Gospel According to Matthew|Gospel|Gospels|evangel|book +matthew arnold|1 +(noun)|Arnold|Matthew Arnold|poet|literary critic +matthew calbraith perry|1 +(noun)|Perry|Matthew Calbraith Perry|naval officer +matthew flinders|1 +(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer|adventurer +matthew walker|1 +(noun)|Matthew Walker|Matthew Walker knot|stopper knot +matthew walker knot|1 +(noun)|Matthew Walker|Matthew Walker knot|stopper knot +matthias schleiden|1 +(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist|histologist +matthiola|1 +(noun)|Matthiola|genus Matthiola|dilleniid dicot genus +matthiola incana|1 +(noun)|brompton stock|Matthiola incana|stock|gillyflower +matting|2 +(noun)|floor cover|floor covering +(noun)|mat|mounting +mattock|1 +(noun)|pick|pickax|pickaxe +mattole|2 +(noun)|Mattole|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|Mattole|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +mattress|1 +(noun)|pad +mattress cover|1 +(noun)|bedclothes|bed clothing|bedding +mattress pad|1 +(noun)|pad +maturate|3 +(verb)|mature|grow|develop +(verb)|senesce|age|get on|mature|develop +(verb)|fester|suppurate|discharge|expel|eject|release +maturation|3 +(noun)|ripening|maturement|organic process|biological process +(noun)|growth|growing|development|ontogeny|ontogenesis|organic process|biological process +(noun)|festering|suppuration|bodily process|body process|bodily function|activity +maturational|1 +(adj)|organic process|biological process +mature|11 +(adj)|mature |autumnal|mellow|mellowed|ripe +(adj)|matured|developed +(adj)|mature |adult|big|full-grown|fully grown|grown|grownup|abloom|efflorescent|flowering|fruiting|full-blown|matured|headed|marriageable|nubile|overblown|prime|old +(adj)|ripe |aged|ripened|mellow|mellowed|overripe +(adj)|fledged |fledgling|fledgeling|full-fledged|fully fledged +(verb)|maturate|grow|develop +(verb)|explicate|formulate|develop +(verb)|change +(verb)|ripen|change|alter|modify +(verb)|senesce|age|get on|maturate|develop +(verb)|suppurate|draw +mature-onset diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|diabetes mellitus|DM +matured|2 +(adj)|full-blown|mature +(adj)|mature|developed +maturement|1 +(noun)|maturation|ripening|organic process|biological process +matureness|1 +(noun)|maturity|state +maturity|3 +(noun)|adulthood|time of life +(noun)|matureness|state +(noun)|maturity date|due date|date|day of the month +maturity-onset diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|mature-onset diabetes|diabetes mellitus|DM +maturity-onset diabetes mellitus|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +maturity date|1 +(noun)|maturity|due date|date|day of the month +matutinal|1 +(adj)|early +matzah|1 +(noun)|matzo|matzoh|unleavened bread|bread|breadstuff|staff of life +matzah ball|1 +(noun)|matzo ball|matzoh ball|dumpling|dumplings +matzah meal|1 +(noun)|matzo meal|matzoh meal|meal +matzo|1 +(noun)|matzoh|matzah|unleavened bread|bread|breadstuff|staff of life +matzo ball|1 +(noun)|matzoh ball|matzah ball|dumpling|dumplings +matzo meal|1 +(noun)|matzoh meal|matzah meal|meal +matzoh|1 +(noun)|matzo|matzah|unleavened bread|bread|breadstuff|staff of life +matzoh ball|1 +(noun)|matzo ball|matzah ball|dumpling|dumplings +matzoh meal|1 +(noun)|matzo meal|matzah meal|meal +maud gonne|1 +(noun)|Gonne|Maud Gonne|patriot|nationalist +maudlin|1 +(adj)|bathetic|drippy|hokey|mawkish|mushy|schmaltzy|schmalzy|sentimental|slushy|emotional +maugham|1 +(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer|author +maui|1 +(noun)|Maui|Maui Island|island +maui island|1 +(noun)|Maui|Maui Island|island +maul|3 +(noun)|sledge|sledgehammer|hammer +(verb)|cleave|split|rive +(verb)|mangle|deface|disfigure|blemish +maul oak|1 +(noun)|canyon oak|canyon live oak|iron oak|Quercus chrysolepis|live oak +mauldin|1 +(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist +maule's quince|1 +(noun)|japonica|Chaenomeles japonica|flowering quince +mauler|1 +(noun)|combatant|battler|belligerent|fighter|scrapper +maulers|2 +(noun)|hooks|meat hooks|hand|manus|mitt|paw +(noun)|mauler|combatant|battler|belligerent|fighter|scrapper +maulstick|1 +(noun)|mahlstick|stick +mauna kea|1 +(noun)|Mauna Kea|volcano +mauna loa|1 +(noun)|Mauna Loa|volcano +maund|1 +(noun)|weight unit|weight +maunder|3 +(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond +(verb)|mumble|mutter|mussitate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +maundy|1 +(noun)|Maundy|ceremony|ceremonial|ceremonial occasion|observance +maundy money|1 +(noun)|Maundy money|coin +maundy thursday|1 +(noun)|Maundy Thursday|Holy Thursday|Christian holy day +maupassant|1 +(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer|author +maureen catherine connolly|1 +(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player +mauriac|1 +(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer|author +maurice barrymore|1 +(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor|histrion|player|thespian|role player +maurice chevalier|1 +(noun)|Chevalier|Maurice Chevalier|actor|histrion|player|thespian|role player|singer|vocalist|vocalizer|vocaliser +maurice de vlaminck|1 +(noun)|Vlaminck|Maurice de Vlaminck|painter +maurice hugh frederick wilkins|1 +(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist +maurice ravel|1 +(noun)|Ravel|Maurice Ravel|composer +maurice utrillo|1 +(noun)|Utrillo|Maurice Utrillo|painter +maurice wilkins|1 +(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist +mauritania|1 +(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country|African nation +mauritanian|2 +(adj)|Mauritanian|Mauritian|island|country|state|land +(noun)|Mauritanian|African +mauritanian monetary unit|1 +(noun)|Mauritanian monetary unit|monetary unit +mauritanie|1 +(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country|African nation +mauritian|2 +(adj)|Mauritanian|Mauritian|island|country|state|land +(noun)|Mauritian|native|indigen|indigene +mauritian monetary unit|1 +(noun)|Mauritian monetary unit|monetary unit +mauritian rupee|1 +(noun)|Mauritian rupee|rupee|Mauritian monetary unit +mauritius|2 +(noun)|Mauritius|Republic of Mauritius|country|state|land +(noun)|Mauritius|island +maurois|1 +(noun)|Maurois|Andre Maurois|Emile Herzog|writer|author +mauser|2 +(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor|discoverer|artificer|arms manufacturer +(noun)|Mauser|repeating firearm|repeater +mausoleum|1 +(noun)|burial chamber|sepulcher|sepulchre|sepulture +mauve|2 +(adj)|chromatic +(noun)|purple|purpleness|empurpled +maven|1 +(noun)|ace|adept|champion|sensation|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +maverick|3 +(adj)|irregular|unorthodox|unconventional +(noun)|rebel|nonconformist|recusant +(noun)|calf +mavin|1 +(noun)|ace|adept|champion|sensation|maven|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +mavis|1 +(noun)|song thrush|throstle|Turdus philomelos|thrush +maw|1 +(noun)|trap|cakehole|hole|yap|gob|mouth|oral cavity|oral fissure|rima oris +mawkish|1 +(adj)|bathetic|drippy|hokey|maudlin|mushy|schmaltzy|schmalzy|sentimental|slushy|emotional +mawkishly|1 +(adv)|drippily +mawkishness|2 +(noun)|bathos|sentimentality +(noun)|sentimentality|drippiness|emotionality|emotionalism +max|1 +(noun)|soap|scoop|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +max beerbohm|1 +(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer|author|caricaturist +max born|1 +(noun)|Born|Max Born|nuclear physicist +max bruch|1 +(noun)|Bruch|Max Bruch|composer +max delbruck|1 +(noun)|Delbruck|Max Delbruck|biologist|life scientist +max ernst|1 +(noun)|Ernst|Max Ernst|painter +max ferdinand perutz|1 +(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist +max karl ernst ludwig planck|1 +(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist +max muller|1 +(noun)|Muller|Max Muller|Friedrich Max Muller|philologist|philologue +max out|1 +(verb)|reach|hit|attain +max perutz|1 +(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist +max planck|1 +(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist +max weber|2 +(noun)|Weber|Max Weber|painter +(noun)|Weber|Max Weber|sociologist +maxfield frederick parrish|1 +(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter +maxfield parrish|1 +(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter +maxi|1 +(adj)|maxi +maxilla|1 +(noun)|upper jaw|upper jawbone|jaw +maxillaria|1 +(noun)|orchid|orchidaceous plant +maxillary|1 +(adj)|jaw +maxillary artery|1 +(noun)|arteria maxillaris|artery|arteria|arterial blood vessel +maxillary sinus|1 +(noun)|sinus +maxillary vein|1 +(noun)|vena maxillaris|vein|vena|venous blood vessel +maxillodental|1 +(adj)|jaw +maxillofacial|1 +(adj)|external body part +maxillomandibular|1 +(adj)|bone|os +maxim|2 +(noun)|axiom|saying|expression|locution +(noun)|Maxim|Sir Hiram Stevens Maxim|inventor|discoverer|artificer +maxim gorki|1 +(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer|author +maxim gun|1 +(noun)|Maxim gun|machine gun +maximal|1 +(adj)|maximal |greatest|top|highest|peak|largest|outside|supreme +maximation|1 +(noun)|maximization|maximisation|increase|step-up +maximilian's sunflower|1 +(noun)|Maximilian's sunflower|Helianthus maximilianii|sunflower|helianthus +maximilien paul emile littre|1 +(noun)|Littre|Maximilien Paul Emile Littre|lexicographer|lexicologist +maximisation|1 +(noun)|maximization|maximation|increase|step-up +maximise|2 +(verb)|maximize|exploit|tap +(verb)|maximize|increase +maximising|1 +(adj)|maximizing|increasing +maximization|2 +(noun)|mathematical process|mathematical operation|operation +(noun)|maximisation|maximation|increase|step-up +maximize|2 +(verb)|maximise|increase +(verb)|maximise|exploit|tap +maximizing|1 +(adj)|maximising|increasing +maximum|4 +(adj)|maximal |greatest|top|highest|peak|largest|outside|supreme +(noun)|upper limit|extremum|peak|large indefinite quantity|large indefinite amount +(noun)|utmost|uttermost|level best|limit|bounds|boundary +(noun)|limit +maximum and minimum thermometer|1 +(noun)|thermometer +maxmilien de bethune|1 +(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman|solon|national leader +maxmillien marie isidore de robespierre|1 +(noun)|Robespierre|Maxmillien Marie Isidore de Robespierre|revolutionist|revolutionary|subversive|subverter +maxostoma|1 +(noun)|Maxostoma|genus Maxostoma|fish genus +maxwell|2 +(noun)|Mx|flux unit|magnetic flux unit +(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist +maxwell's demon|1 +(noun)|Maxwell's demon|imaginary being|imaginary creature +maxwell's equations|1 +(noun)|Maxwell's equations|differential equation +maxwell-boltzmann distribution law|1 +(noun)|Maxwell-Boltzmann distribution law|Boltzmann distribution law|distribution law +maxwell anderson|1 +(noun)|Anderson|Maxwell Anderson|dramatist|playwright +maxzide|1 +(noun)|Maxzide|antihypertensive|antihypertensive drug +may|2 +(noun)|May|Gregorian calendar month +(noun)|whitethorn|English hawthorn|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +may 1|1 +(noun)|May Day|First of May|May 1|day +may 24|1 +(noun)|Commonwealth Day|Empire day|May 24|legal holiday|national holiday +may apple|3 +(noun)|May apple|fruit +(noun)|mayapple|May apple|wild mandrake|Podophyllum peltatum|herb|herbaceous plant +(noun)| +may beetle|2 +(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle +(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle|scarabaeid|scarabaean +may blob|1 +(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +may bug|2 +(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle +(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle|scarabaeid|scarabaean +may day|2 +(noun)|May Day|First of May|May 1|day +(noun)|Mayday|distress signal|distress call +may fish|2 +(noun)|striped killifish|mayfish|Fundulus majalis|killifish +(noun)| +may lily|1 +(noun)|lily of the valley|lilies of the valley|May lily|Convallaria majalis|liliaceous plant +may queen|1 +(noun)|May queen|queen of the May|girl|miss|missy|young lady|young woman|fille +may wine|1 +(noun)|May wine|punch +maya|3 +(noun)|Mayan|Maya|Indian|North American Indian|American Indian|Red Indian +(noun)|Maya|ethnic minority +(noun)|Maya|Mayan|Mayan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +maya lin|1 +(noun)|Lin|Maya Lin|sculptor|sculpturer|carver|statue maker|architect|designer +mayaca|1 +(noun)|Mayaca|genus Mayaca|monocot genus|liliopsid genus +mayacaceae|1 +(noun)|Mayacaceae|family Mayacaceae|monocot family|liliopsid family +mayakovski|1 +(noun)|Mayakovski|Vladimir Vladimirovich Mayakovski|poet +mayan|2 +(noun)|Mayan|Maya|Indian|North American Indian|American Indian|Red Indian +(noun)|Maya|Mayan|Mayan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +mayan language|1 +(noun)|Maya|Mayan|Mayan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +mayapple|1 +(noun)|May apple|wild mandrake|Podophyllum peltatum|herb|herbaceous plant +maybe|1 +(adv)|possibly|perchance|perhaps|mayhap|peradventure +mayday|1 +(noun)|Mayday|distress signal|distress call +mayeng|1 +(noun)|maple-leaved bayur|Pterospermum acerifolium|tree +mayenne|1 +(noun)|Mayenne|French region +mayer|2 +(noun)|Mayer|Marie Goeppert Mayer|nuclear physicist +(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker|filmmaker|film producer|movie maker +mayetiola|1 +(noun)|Mayetiola|genus Mayetiola|arthropod genus +mayetiola destructor|1 +(noun)|Hessian fly|Mayetiola destructor|gall midge|gallfly|gall gnat +mayfish|1 +(noun)|striped killifish|may fish|Fundulus majalis|killifish +mayflower|2 +(noun)|Mayflower|ship +(noun)|trailing arbutus|Epigaea repens|shrub|bush +mayfly|1 +(noun)|dayfly|shadfly|ephemerid|ephemeropteran +mayhap|1 +(adv)|possibly|perchance|perhaps|maybe|peradventure +mayhaw|1 +(noun)|summer haw|Crataegus aestivalis|hawthorn|haw +mayhem|2 +(noun)|crime|law-breaking +(noun)|havoc|disturbance +mayidism|1 +(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +mayo|1 +(noun)|mayonnaise|dressing|salad dressing +mayonnaise|1 +(noun)|mayo|dressing|salad dressing +mayor|1 +(noun)|city manager|civil authority|politician +mayoral|1 +(adj)|civil authority|politician +mayoralty|1 +(noun)|position|post|berth|office|spot|billet|place|situation +mayoress|2 +(noun)|wife|married woman +(noun)|mayor|city manager +maypole|1 +(noun)|post +maypop|1 +(noun)|Passiflora incarnata|passionflower|passionflower vine +mays|3 +(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|the Say Hey Kid|ballplayer|baseball player +(noun)|May|Gregorian calendar month +(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +mayweed|1 +(noun)|dog fennel|stinking mayweed|stinking chamomile|Anthemis cotula|composite|composite plant +mazama|1 +(noun)|Mazama|genus Mazama|mammal genus +mazar-i-sharif|1 +(noun)|Mazar-i-Sharif|city|metropolis|urban center +mazatlan|1 +(noun)|Mazatlan|city|metropolis|urban center|port +mazdaism|1 +(noun)|Zoroastrianism|Mazdaism|religion|faith|religious belief +maze|2 +(noun)|labyrinth|system +(noun)|tangle|snarl|perplexity +mazed|1 +(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mixed-up|at sea|perplexed +mazer|1 +(noun)|bowl +mazopathy|1 +(noun)|mastopathy|pathology +mazurka|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|folk dancing|folk dance +mazy|1 +(adj)|labyrinthine|labyrinthian|complex +mazzard|1 +(noun)|gean|mazzard cherry|sweet cherry|Prunus avium +mazzard cherry|1 +(noun)|gean|mazzard|sweet cherry|Prunus avium +mazzini|1 +(noun)|Mazzini|Giuseppe Mazzini|patriot|nationalist +mb|2 +(noun)|megabyte|MB|computer memory unit +(noun)|Bachelor of Medicine|MB|bachelor's degree|baccalaureate +mba|1 +(noun)|Master in Business|Master in Business Administration|MBA|master's degree +mbabane|1 +(noun)|Mbabane|capital of Swaziland|national capital +mbd|1 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome +mbundu|1 +(noun)|Mbundu|Ovimbundu|ethnic group|ethnos +mc|1 +(noun)|megahertz|MHz|megacycle per second|megacycle|Mc|rate +mcalester|1 +(noun)|McAlester|town +mcallen|1 +(noun)|McAllen|town +mcardle's disease|1 +(noun)|McArdle's disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +mcburney's point|1 +(noun)|McBurney's point|point +mccarthy|2 +(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer|author +(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician|politico|pol|political leader +mccarthyism|1 +(noun)|McCarthyism|witch-hunt +mccartney|1 +(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star|songwriter|songster|ballad maker +mccauley|1 +(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine +mccormick|2 +(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor|discoverer|artificer|manufacturer|producer +(noun)|McCormick|John McCormick|tenor +mccullers|1 +(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer|author +mcg|1 +(noun)|microgram|metric weight unit|weight unit +mcgraw|1 +(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer|baseball player|coach|manager|handler +mcguffey|1 +(noun)|McGuffey|William Holmes McGuffey|educator|pedagogue +mcguffey eclectic readers|1 +(noun)|McGuffey Eclectic Readers|reader +mcia|1 +(noun)|Marine Corps Intelligence Activity|MCIA|agency|federal agency|government agency|bureau|office|authority +mcintosh|1 +(noun)|McIntosh|eating apple|dessert apple +mckim|1 +(noun)|McKim|Charles Follen McKim|architect|designer +mckinley|2 +(noun)|McKinley|William McKinley|President McKinley|President of the United States|United States President|President|Chief Executive +(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak +mcluhan|1 +(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer|author +mcmaster|1 +(noun)|McMaster|John Bach McMaster|historian|historiographer +mcpherson|1 +(noun)|McPherson|Aimee Semple McPherson|evangelist|revivalist|gospeler|gospeller +md|4 +(noun)|mendelevium|Md|Mv|atomic number 101|chemical element|element +(noun)|doctor|doc|physician|MD|Dr.|medico|medical practitioner|medical man +(noun)|Maryland|Old Line State|Free State|MD|American state +(noun)|Doctor of Medicine|MD|doctor's degree|doctorate +mdi|1 +(noun)|Markaz-ud-Dawa-wal-Irshad|MDI|nongovernmental organization|NGO +mdiv|1 +(noun)|Master of Divinity|MDiv|master's degree +mdma|1 +(noun)|methylenedioxymethamphetamine|MDMA|club drug +me|1 +(noun)|Maine|Pine Tree State|ME|American state +mea culpa|1 +(noun)|acknowledgment|acknowledgement +mead|3 +(noun)|Mead|Margaret Mead|anthropologist +(noun)|Mead|George Herbert Mead|philosopher +(noun)|brew|brewage +mead's milkweed|1 +(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed|silkweed +meade|2 +(noun)|Meade|James Edward Meade|economist|economic expert +(noun)|Meade|George Gordon Meade|general|full general +meadow|1 +(noun)|hayfield|grassland +meadow-beauty family|1 +(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|rosid dicot family +meadow beauty|1 +(noun)|deer grass|subshrub|suffrutex +meadow bright|1 +(noun)|marsh marigold|kingcup|May blob|cowslip|water dragon|Caltha palustris|marsh plant|bog plant|swamp plant +meadow buttercup|1 +(noun)|tall buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +meadow clary|1 +(noun)|Salvia pratensis|sage|salvia +meadow cranesbill|1 +(noun)|Geranium pratense|cranesbill|crane's bill +meadow cress|1 +(noun)|lady's smock|cuckooflower|cuckoo flower|Cardamine pratensis|bittercress|bitter cress +meadow fern|1 +(noun)|snuffbox fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern|Thelypteris palustris|Dryopteris thelypteris +meadow fescue|1 +(noun)|fescue|fescue grass|Festuca elatior|grass +meadow foxtail|1 +(noun)|Alopecurus pratensis|foxtail|foxtail grass +meadow goldenrod|1 +(noun)|Canadian goldenrod|Solidago canadensis|goldenrod +meadow grass|2 +(noun)|meadowgrass|grass +(noun)| +meadow jumping mouse|1 +(noun)|Zapus hudsonius|jumping mouse +meadow leek|1 +(noun)|Canada garlic|rose leek|Allium canadense|alliaceous plant +meadow lily|1 +(noun)|Canada lily|wild yellow lily|wild meadow lily|Lilium canadense|lily +meadow mouse|1 +(noun)|meadow vole|Microtus pennsylvaticus|vole|field mouse +meadow mushroom|1 +(noun)|field mushroom|Agaricus campestris|agaric +meadow pea|1 +(noun)|common vetchling|yellow vetchling|Lathyrus pratensis|wild pea +meadow pipit|1 +(noun)|Anthus pratensis|pipit|titlark|lark +meadow rue|1 +(noun)|wildflower|wild flower +meadow saffron|1 +(noun)|autumn crocus|naked lady|Colchicum autumnale|bulbous plant +meadow salsify|1 +(noun)|goatsbeard|shepherd's clock|Tragopogon pratensis|wildflower|wild flower +meadow saxifrage|1 +(noun)|fair-maids-of-France|Saxifraga granulata|saxifrage|breakstone|rockfoil +meadow spikemoss|1 +(noun)|basket spikemoss|Selaginella apoda|spikemoss|spike moss|little club moss +meadow spittlebug|1 +(noun)|Philaenus spumarius|spittle insect|spittlebug +meadow vole|1 +(noun)|meadow mouse|Microtus pennsylvaticus|vole|field mouse +meadowgrass|1 +(noun)|meadow grass|grass +meadowlark|1 +(noun)|lark|New World oriole|American oriole|oriole +meager|2 +(adj)|meager |meagre|meagerly|bare|scanty|spare|exiguous|hand-to-mouth|hardscrabble|marginal|measly|miserable|paltry|insufficient|deficient|scarce +(adj)|scrimpy|stingy |ungenerous +meagerly|2 +(adj)|meager |meagre|bare|scanty|spare|exiguous|hand-to-mouth|hardscrabble|marginal|measly|miserable|paltry|insufficient|deficient|scarce +(adv)|sparingly|slenderly|meagrely +meagerness|1 +(noun)|meagreness|poorness|scantiness|scantness|exiguity|insufficiency|inadequacy|deficiency +meagre|1 +(adj)|meager |meagerly|bare|scanty|spare|exiguous|hand-to-mouth|hardscrabble|marginal|measly|miserable|paltry|insufficient|deficient|scarce +meagrely|1 +(adv)|meagerly|sparingly|slenderly +meagreness|1 +(noun)|meagerness|poorness|scantiness|scantness|exiguity|insufficiency|inadequacy|deficiency +meal|3 +(noun)|repast|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|occasion +(noun)|foodstuff|food product +meal plan|1 +(noun)|hotel plan|design|plan +meal ticket|2 +(noun)|support|keep|livelihood|living|bread and butter|sustenance +(noun)|luncheon voucher|coupon|voucher +mealberry|1 +(noun)|common bearberry|red bearberry|wild cranberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +mealie|1 +(noun)|ear|spike|capitulum +mealtime|1 +(noun)|hour|time of day +mealworm|1 +(noun)|larva +mealy|1 +(adj)|farinaceous|coarse-grained|grainy|granular|granulose|gritty|sandy|coarse +mealy-mouthed|2 +(adj)|mealymouthed|indirect +(adj)| +mealy bug|2 +(noun)|mealybug|coccid insect +(noun)| +mealy sage|1 +(noun)|blue sage|Salvia farinacea|sage|salvia +mealybug|1 +(noun)|mealy bug|coccid insect +mealymouthed|1 +(adj)|mealy-mouthed|indirect +mean|14 +(adj)|average|normal +(adj)|hateful|nasty |awful +(adj)|base|meanspirited|ignoble +(adj)|skilled +(adj)|beggarly|poor +(adj)|mingy|miserly|tight|stingy |ungenerous +(adj)|beggarly|stingy |ungenerous +(noun)|mean value|average|norm +(verb)|intend|convey|impart +(verb)|entail|imply|necessitate +(verb)|intend|signify|stand for +(verb)|intend|think|will|wish +(verb)|think of|have in mind|associate|tie in|relate|link|colligate|link up|connect +(verb)|intend|destine|designate|specify +mean deviation|1 +(noun)|mean deviation from the mean|deviation +mean deviation from the mean|1 +(noun)|mean deviation|deviation +mean distance|1 +(noun)|distance +mean solar day|1 +(noun)|day|twenty-four hours|solar day|time unit|unit of time +mean solar time|1 +(noun)|mean time|time unit|unit of time +mean sun|1 +(noun)|model|theoretical account|framework +mean time|1 +(noun)|mean solar time|time unit|unit of time +mean value|1 +(noun)|mean|average|norm +meander|2 +(noun)|curve|curved shape +(verb)|weave|wind|thread|wander|travel|go|move|locomote +meandering|1 +(adj)|rambling|wandering|winding|indirect +meanie|1 +(noun)|meany|unkind person|oppressor +meaning|3 +(adj)|pregnant|significant|meaningful +(noun)|significance|signification|import|message|content|subject matter|substance +(noun)|substance|idea|thought +meaningful|1 +(adj)|meaningful |meaty|substantive|meaning|pregnant|significant|purposeful|purposeful|significant|important +meaningfulness|1 +(noun)|significance +meaningless|1 +(adj)|meaningless |nonmeaningful|empty|hollow|vacuous|insignificant|unmeaning|mindless|nonsense|nonsensical|pointless|purposeless|senseless|insignificant|unimportant|purposeless|unimportant +meaninglessness|2 +(noun)|nonsense|bunk|nonsensicality|hokum|message|content|subject matter|substance +(noun)|insignificance +meanly|3 +(adv)|nastily +(adv)|scurvily|basely +(adv)|humbly +meanness|2 +(noun)|beastliness|malevolence|malevolency|malice +(noun)|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess +means|4 +(noun)|agency|way|implementation|effectuation +(noun)|instrumentality|instrumentation +(noun)|substance|capital +(noun)|mean|mean value|average|norm +means grass|1 +(noun)|Johnson grass|Aleppa grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum +means test|1 +(noun)|inquiry|enquiry +meanspirited|2 +(adj)|ungenerous |grudging|uncharitable|unforgiving|stingy|ungenerous +(adj)|base|mean|ignoble +meantime|1 +(adv)|meanwhile|in the meantime +meanwhile|1 +(adv)|meantime|in the meantime +meany|2 +(noun)|Meany|George Meany|labor leader +(noun)|meanie|unkind person|oppressor +mearstone|1 +(noun)|merestone|meerestone|landmark +measles|1 +(noun)|rubeola|morbilli|contagious disease|contagion +measly|1 +(adj)|miserable|paltry|meager |meagre|meagerly +measurability|1 +(noun)|quantifiability|quality +measurable|2 +(adj)|measurable |mensurable +(adj)|important |of import +measure|12 +(noun)|measurement|measuring|mensuration|activity +(noun)|standard|criterion|touchstone|reference point|point of reference|reference +(noun)|quantity|amount|abstraction +(noun)|step|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|bill|legal document|legal instrument|official document|instrument +(noun)|meter|metre|beat|cadence|poetic rhythm|rhythmic pattern|prosody +(noun)|bar|musical notation +(noun)|measuring stick|measuring rod|measuring instrument|measuring system|measuring device +(verb)|mensurate|measure out|decide|make up one's mind|determine +(verb)|quantify|carry|convey|express +(verb)|be|measure up +(verb)|evaluate|valuate|assess|appraise|value|judge +measure out|1 +(verb)|measure|mensurate|decide|make up one's mind|determine +measure up|1 +(verb)|qualify|suffice|do|answer|serve +measured|4 +(adj)|measured |plumbed|sounded +(adj)|metrical|metric|rhythmical |rhythmic +(adj)|calculated|deliberate|premeditated +(adj)|careful|deliberate|unhurried +measuredly|1 +(adv)|deliberately +measureless|1 +(adj)|illimitable|limitless|unmeasured|immeasurable |unmeasurable|immensurable +measurement|1 +(noun)|measuring|measure|mensuration|activity +measurer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +measuring|1 +(noun)|measurement|measure|mensuration|activity +measuring block|1 +(noun)|measuring unit|unit of measurement|unit +measuring cup|1 +(noun)|cup +measuring device|1 +(noun)|measuring instrument|measuring system|instrument +measuring instrument|1 +(noun)|measuring system|measuring device|instrument +measuring rod|1 +(noun)|measuring stick|measure|measuring instrument|measuring system|measuring device +measuring stick|1 +(noun)|measure|measuring rod|measuring instrument|measuring system|measuring device +measuring system|1 +(noun)|measuring instrument|measuring device|instrument +measuring unit|1 +(noun)|measuring block|unit of measurement|unit +measuring worm|1 +(noun)|inchworm|looper|caterpillar +meat|3 +(noun)|food +(noun)|kernel|plant part|plant structure +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +meat-eating|1 +(adj)|flesh-eating|zoophagous|carnivorous +meat-packing business|1 +(noun)|meatpacking|meat packing|packaging +meat and potatoes|1 +(noun)|basis|base|foundation|fundament|groundwork|cornerstone +meat cleaver|1 +(noun)|cleaver|chopper|knife +meat counter|1 +(noun)|counter +meat grinder|2 +(noun)|mill|grinder +(noun)|aggression|hostility +meat hook|1 +(noun)|hook +meat hooks|2 +(noun)|hooks|maulers|hand|manus|mitt|paw +(noun)|meat hook|hook +meat house|2 +(noun)|smokehouse|house +(noun)|house +meat loaf|2 +(noun)|meatloaf|dish +(noun)| +meat market|1 +(noun)|butcher shop|shop|store +meat packer|1 +(noun)|packer|jobber|middleman|wholesaler +meat packing|2 +(noun)|meatpacking|meat-packing business|packaging +(noun)| +meat pie|1 +(noun)|pie +meat safe|1 +(noun)|safe +meat thermometer|1 +(noun)|thermometer +meatball|1 +(noun)|dish +meatless|1 +(adj)|meatless +meatloaf|1 +(noun)|meat loaf|dish +meatman|1 +(noun)|butcher|merchant|merchandiser +meatpacking|1 +(noun)|meat packing|meat-packing business|packaging +meatus|1 +(noun)|passage|passageway +meaty|2 +(adj)|meaty +(adj)|substantive|meaningful +mebaral|1 +(noun)|mephobarbital|Mebaral|barbiturate|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +mebendazole|1 +(noun)|vermifuge|anthelmintic|anthelminthic|helminthic +mecca|2 +(noun)|Mecca|Riyadh|capital of Saudi Arabia +(noun)|topographic point|place|spot +meccano|1 +(noun)|Meccano|Meccano set|plaything|toy +meccano set|1 +(noun)|Meccano|Meccano set|plaything|toy +mechanic|3 +(adj)|mechanical +(noun)|machinist|shop mechanic|craftsman|artisan|journeyman|artificer +(noun)|automobile mechanic|auto-mechanic|car-mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +mechanic's lien|1 +(noun)|lien +mechanical|4 +(adj)|mechanical |automatic|automatonlike|machinelike|robotlike|mechanic|mechanistic|mechanized|mechanised|windup +(adj)|mechanically skillful|machine +(adj)|physics|physical science|natural philosophy +(adj)|mechanistic|nonhuman +mechanical advantage|1 +(noun)|ratio +mechanical device|1 +(noun)|mechanism +mechanical drawing|2 +(noun)|drawing +(noun)|drafting|trade|craft +mechanical energy|1 +(noun)|energy +mechanical engineer|1 +(noun)|engineer|applied scientist|technologist +mechanical engineering|1 +(noun)|engineering|engineering science|applied science|technology +mechanical man|1 +(noun)|android|humanoid|automaton|robot|golem +mechanical mixture|1 +(noun)|mixture +mechanical phenomenon|1 +(noun)|physical phenomenon +mechanical piano|1 +(noun)|Pianola|player piano|piano|pianoforte|forte-piano +mechanical press|1 +(noun)|press|machine +mechanical system|1 +(noun)|system +mechanically|1 +(adv)|automatically +mechanically skillful|1 +(adj)|mechanical|machine +mechanics|4 +(noun)|physics|physical science|natural philosophy +(noun)|mechanism|performance|execution|carrying out|carrying into action +(noun)|machinist|mechanic|shop mechanic|craftsman|artisan|journeyman|artificer +(noun)|automobile mechanic|auto-mechanic|car-mechanic|mechanic|grease monkey|repairman|repairer|maintenance man|service man|fixer +mechanisation|2 +(noun)|mechanization|condition|status +(noun)|automation|mechanization|high technology +mechanise|3 +(verb)|mechanize|motorize|motorise|equip|fit|fit out|outfit +(verb)|mechanize|change|alter|modify +(verb)|mechanize|change|alter|modify +mechanised|2 +(adj)|mechanized|motorized|mobile +(adj)|mechanized|mechanical +mechanism|5 +(noun)|chemical mechanism|chemical process|chemical change|chemical action +(noun)|mechanics|performance|execution|carrying out|carrying into action +(noun)|natural object +(noun)|philosophical doctrine|philosophical theory +(noun)|device +mechanist|1 +(noun)|philosopher +mechanistic|3 +(adj)|mechanical +(adj)|philosophical doctrine|philosophical theory +(adj)|mechanical|nonhuman +mechanization|2 +(noun)|mechanisation|condition|status +(noun)|automation|mechanisation|high technology +mechanize|3 +(verb)|mechanise|motorize|motorise|equip|fit|fit out|outfit +(verb)|mechanise|change|alter|modify +(verb)|mechanise|change|alter|modify +mechanized|2 +(adj)|mechanised|mechanical +(adj)|mechanised|motorized|mobile +mechanized cavalry|1 +(noun)|cavalry +mecholyl|1 +(noun)|methacholine|Mecholyl|medicine|medication|medicament|medicinal drug +meckel's diverticulum|1 +(noun)|Meckel's diverticulum|diverticulum +meclizine|1 +(noun)|meclizine hydrochloride|Antivert|antihistamine +meclizine hydrochloride|1 +(noun)|meclizine|Antivert|antihistamine +meclofenamate|1 +(noun)|meclofenamate sodium|Meclomen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +meclofenamate sodium|1 +(noun)|meclofenamate|Meclomen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +meclomen|1 +(noun)|meclofenamate|meclofenamate sodium|Meclomen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +meconium|1 +(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +meconopsis|1 +(noun)|Meconopsis|genus Meconopsis|dilleniid dicot genus +meconopsis betonicifolia|1 +(noun)|blue poppy|Meconopsis betonicifolia|poppy +meconopsis cambrica|1 +(noun)|Welsh poppy|Meconopsis cambrica|poppy +mecoptera|1 +(noun)|Mecoptera|order Mecoptera|animal order +mecopteran|1 +(noun)|insect +mecopterous|1 +(adj)|insect +med|1 +(noun)|Master of Education|MEd|master's degree +medai guru|1 +(noun)|media consultant|adviser|advisor|consultant +medaille militaire|1 +(noun)|Medaille Militaire|decoration|laurel wreath|medal|medallion|palm|ribbon +medal|1 +(noun)|decoration|laurel wreath|medallion|palm|ribbon|award|accolade|honor|honour|laurels +medal of honor|1 +(noun)|Medal of Honor|Congressional Medal of Honor|decoration|laurel wreath|medal|medallion|palm|ribbon +medal play|1 +(noun)|stroke play|golf|golf game +medal winner|1 +(noun)|medalist|medallist|golfer|golf player|linksman +medalist|2 +(noun)|medallist|winner|victor +(noun)|medallist|medal winner|golfer|golf player|linksman +medallion|4 +(noun)|coin +(noun)|helping|portion|serving +(noun)|emblem|allegory +(noun)|decoration|laurel wreath|medal|palm|ribbon|award|accolade|honor|honour|laurels +medallist|2 +(noun)|medalist|winner|victor +(noun)|medalist|medal winner|golfer|golf player|linksman +medan|1 +(noun)|Medan|city|metropolis|urban center +medawar|1 +(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist +meddle|1 +(verb)|tamper|intervene|step in|interfere|interpose +meddle with|1 +(verb)|poke into|intrude into|horn in|intervene|step in|interfere|interpose +meddler|1 +(noun)|unwelcome person|persona non grata +meddlesome|1 +(adj)|interfering|meddling|officious|busy|busybodied|intrusive +meddlesomeness|1 +(noun)|intrusiveness|officiousness|aggressiveness +meddling|2 +(adj)|interfering|meddlesome|officious|busy|busybodied|intrusive +(noun)|tampering|change of state +medea|1 +(noun)|Medea|mythical being +medellin|1 +(noun)|Medellin|city|metropolis|urban center +medellin cartel|1 +(noun)|Medellin cartel|drug cartel +medevac|1 +(noun)|medical evacuation|medivac|evacuation +medfly|1 +(noun)|Mediterranean fruit fly|Ceratitis capitata|fruit fly|pomace fly +medford|2 +(noun)|Medford|town +(noun)|Medford|town +medgar evers|1 +(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader|civil rights worker|civil rights activist +medgar wiley evers|1 +(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader|civil rights worker|civil rights activist +media consultant|1 +(noun)|medai guru|adviser|advisor|consultant +mediacy|1 +(noun)|mediateness|indirectness +mediaeval|2 +(adj)|medieval|historic period|age +(adj)|medieval|gothic|nonmodern +medial|2 +(adj)|median|mesial +(adj)|median|central +medial condyle|1 +(noun)|condyle +medial geniculate body|1 +(noun)|corpus geniculatum mediale|geniculate body +medial rectus|1 +(noun)|medial rectus muscle|rectus medialis|ocular muscle|eye muscle +medial rectus muscle|1 +(noun)|medial rectus|rectus medialis|ocular muscle|eye muscle +median|4 +(adj)|average|normal +(adj)|medial|mesial +(adj)|medial|central +(noun)|median value|average|norm +median value|1 +(noun)|median|average|norm +mediant|1 +(noun)|note|musical note|tone +mediastinum|1 +(noun)|cavity|bodily cavity|cavum +mediate|4 +(adj)|mediate |indirect|mediated +(adj)|in-between|middle|intermediate +(verb)|intercede|intermediate|liaise|arbitrate|negociate|negotiate|talk terms +(verb)|lie +mediated|1 +(adj)|mediate +mediateness|1 +(noun)|mediacy|indirectness +mediation|2 +(noun)|negotiation|dialogue|talks +(noun)|intermediation|intervention|intercession +mediator|1 +(noun)|go-between|intermediator|intermediary|intercessor|negotiator|negotiant|treater +mediatorial|1 +(adj)|negotiator|negotiant|treater +mediatory|1 +(adj)|negotiation|dialogue|talks|intervention|intercession +mediatrix|1 +(noun)|mediator|go-between|intermediator|intermediary|intercessor +medic|2 +(noun)|medick|trefoil|herb|herbaceous plant +(noun)|medical officer|medical practitioner|medical man +medicago|1 +(noun)|Medicago|genus Medicago|rosid dicot genus|Papilionoideae|subfamily Papilionoideae +medicago arborea|1 +(noun)|moon trefoil|Medicago arborea|medic|medick|trefoil +medicago echinus|1 +(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic|medick|trefoil +medicago falcata|1 +(noun)|sickle alfalfa|sickle lucerne|sickle medick|Medicago falcata|medic|medick|trefoil +medicago intertexta|1 +(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic|medick|trefoil +medicago lupulina|1 +(noun)|black medick|hop clover|yellow trefoil|nonesuch clover|Medicago lupulina|medic|medick|trefoil +medicago sativa|1 +(noun)|alfalfa|lucerne|Medicago sativa|medic|medick|trefoil +medicaid|1 +(noun)|Medicaid|health care +medicaid funds|1 +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +medical|4 +(adj)|learned profession +(adj)|medical +(adj)|aesculapian +(noun)|checkup|medical checkup|medical examination|medical exam|health check|examination|scrutiny +medical aid|1 +(noun)|medical care|treatment +medical assistant|1 +(noun)|health professional|health care provider|caregiver +medical bill|1 +(noun)|doctor's bill|bill|account|invoice +medical building|1 +(noun)|health facility|healthcare facility|building|edifice +medical care|1 +(noun)|medical aid|treatment +medical center|1 +(noun)|center|centre|middle|heart|eye +medical checkup|1 +(noun)|checkup|medical examination|medical exam|medical|health check|examination|scrutiny +medical community|1 +(noun)|medical profession|health profession +medical diagnosis|1 +(noun)|diagnosis|diagnosing +medical dressing|1 +(noun)|dressing|cloth covering +medical evacuation|1 +(noun)|medevac|medivac|evacuation +medical exam|1 +(noun)|checkup|medical checkup|medical examination|medical|health check|examination|scrutiny +medical examination|1 +(noun)|checkup|medical checkup|medical exam|medical|health check|examination|scrutiny +medical examiner|1 +(noun)|coroner|investigator +medical expense|1 +(noun)|expense|disbursal|disbursement +medical extern|1 +(noun)|extern|doctor|doc|physician|MD|Dr.|medico +medical history|1 +(noun)|medical record|anamnesis|case history +medical institution|1 +(noun)|institution|establishment +medical instrument|1 +(noun)|instrument +medical intern|1 +(noun)|intern|interne|houseman|doctor|doc|physician|MD|Dr.|medico +medical literature analysis and retrieval system|1 +(noun)|Medical Literature Analysis and Retrieval System|MEDLARS|relational database +medical man|1 +(noun)|medical practitioner|health professional|health care provider|caregiver +medical officer|1 +(noun)|medic|medical practitioner|medical man +medical practice|1 +(noun)|practice +medical practitioner|1 +(noun)|medical man|health professional|health care provider|caregiver +medical procedure|1 +(noun)|procedure|process +medical profession|1 +(noun)|medical community|health profession +medical prognosis|1 +(noun)|prognosis|prospect|medical diagnosis +medical record|1 +(noun)|medical history|anamnesis|case history +medical relation|1 +(noun)|professional relation +medical report|1 +(noun)|report|study|written report +medical school|1 +(noun)|school of medicine|graduate school|grad school +medical science|1 +(noun)|life science|bioscience +medical scientist|1 +(noun)|scientist|man of science +medical social worker|1 +(noun)|almoner|social worker|caseworker|welfare worker +medical specialist|1 +(noun)|specialist|doctor|doc|physician|MD|Dr.|medico +medical specialty|1 +(noun)|medicine|medical science +medical student|1 +(noun)|medico|student|pupil|educatee +medicament|1 +(noun)|medicine|medication|medicinal drug|drug +medicare|1 +(noun)|Medicare|health care +medicare check|1 +(noun)|medicare payment|check|bank check|cheque +medicare payment|1 +(noun)|medicare check|check|bank check|cheque +medicate|2 +(verb)|impregnate|saturate +(verb)|medicine|treat|care for +medication|2 +(noun)|medicine|medicament|medicinal drug|drug +(noun)|therapy +medicative|1 +(adj)|medicinal|healthful +medici|1 +(noun)|Medici|house +medicinal|1 +(adj)|medicative|healthful +medicinal drug|1 +(noun)|medicine|medication|medicament|drug +medicinal leech|1 +(noun)|Hirudo medicinalis|leech|bloodsucker|hirudinean +medicine|5 +(noun)|medical specialty|medical science +(noun)|medication|medicament|medicinal drug|drug +(noun)|practice of medicine|learned profession +(noun)|music|punishment|penalty|penalization|penalisation +(verb)|medicate|treat|care for +medicine ball|1 +(noun)|ball +medicine cabinet|1 +(noun)|medicine chest|cabinet +medicine chest|1 +(noun)|medicine cabinet|cabinet +medicine man|1 +(noun)|shaman|priest-doctor +medick|1 +(noun)|medic|trefoil|herb|herbaceous plant +medico|2 +(noun)|medical student|student|pupil|educatee +(noun)|doctor|doc|physician|MD|Dr.|medical practitioner|medical man +medicolegal|1 +(adj)|learned profession|collection|aggregation|accumulation|assemblage +mediety|1 +(noun)|moiety|one-half|half +medieval|3 +(adj)|mediaeval|historic period|age +(adj)|mediaeval|gothic|nonmodern +(adj)|chivalric|knightly|past +medieval greek|1 +(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek|Hellenic|Hellenic language +medieval latin|1 +(noun)|Medieval Latin|Low Latin +medieval mode|1 +(noun)|ecclesiastical mode|Gregorian mode|church mode|mode|musical mode +medieval schoolman|1 +(noun)|Schoolman|medieval Schoolman|scholar|scholarly person|student +medina|2 +(noun)|Medina|Al Madinah|city|metropolis|urban center +(noun)|quarter +medinilla|1 +(noun)|Medinilla|genus Medinilla|rosid dicot genus +medinilla magnifica|1 +(noun)|Medinilla magnifica|shrub|bush +mediocre|3 +(adj)|poor|second-rate|inferior +(adj)|average|fair|middling|ordinary +(adj)|bad +mediocrity|2 +(noun)|averageness|ordinariness +(noun)|second-rater|person|individual|someone|somebody|mortal|human|soul +meditate|2 +(verb)|chew over|think over|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +(verb)|study|contemplate|think|cogitate|cerebrate +meditation|2 +(noun)|speculation|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +(noun)|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +meditative|1 +(adj)|brooding|broody|contemplative|musing|pensive|pondering|reflective|ruminative|thoughtful +meditativeness|1 +(noun)|pensiveness|contemplativeness|thoughtfulness +mediterranean|2 +(adj)|Mediterranean|sea +(noun)|Mediterranean|Mediterranean Sea|sea +mediterranean anaemia|1 +(noun)|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia|hypochromic anaemia|monogenic disorder|monogenic disease +mediterranean anchovy|1 +(noun)|Engraulis encrasicholus|anchovy +mediterranean anemia|1 +(noun)|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia|hypochromic anaemia|monogenic disorder|monogenic disease +mediterranean cypress|1 +(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress|cypress tree +mediterranean fever|1 +(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +mediterranean flour moth|1 +(noun)|Mediterranean flour moth|Anagasta kuehniella|pyralid|pyralid moth +mediterranean fruit fly|1 +(noun)|Mediterranean fruit fly|medfly|Ceratitis capitata|fruit fly|pomace fly +mediterranean hackberry|1 +(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry|nettle tree +mediterranean sea|1 +(noun)|Mediterranean|Mediterranean Sea|sea +mediterranean snapdragon|1 +(noun)|Mediterranean snapdragon|Antirrhinum majus|snapdragon +mediterranean water shrew|1 +(noun)|Mediterranean water shrew|Neomys anomalus|water shrew +medium|13 +(adj)|average|intermediate|moderate +(adj)|cooked +(noun)|means +(noun)|environment|environs|surroundings|surround +(noun)|communication|communicating +(noun)|culture medium|substance|matter +(noun)|substance|matter +(noun)|liquid +(noun)|substance|matter +(noun)|state +(noun)|spiritualist|psychic +(noun)|mass medium|transmission +(noun)|metier|occupation|business|job|line of work|line +medium frequency|1 +(noun)|MF|radio frequency +medium of exchange|1 +(noun)|monetary system|standard|criterion|measure|touchstone +medium steel|1 +(noun)|steel +medium wave|1 +(noun)|radio wave|radio emission|radio radiation +medivac|1 +(noun)|medical evacuation|medevac|evacuation +medlar|4 +(noun)|wild medlar|wild medlar tree|Vangueria infausta|tree +(noun)|medlar tree|Mespilus germanica|fruit tree +(noun)|edible fruit +(noun)|edible fruit +medlar tree|1 +(noun)|medlar|Mespilus germanica|fruit tree +medlars|5 +(noun)|Medical Literature Analysis and Retrieval System|MEDLARS|relational database +(noun)|wild medlar|wild medlar tree|medlar|Vangueria infausta|tree +(noun)|medlar|medlar tree|Mespilus germanica|fruit tree +(noun)|medlar|edible fruit +(noun)|medlar|edible fruit +medley|1 +(noun)|potpourri|pastiche|musical composition|opus|composition|piece|piece of music +medline|1 +(noun)|MEDLINE|telephone system|phone system +medoc|1 +(noun)|Medoc|Bordeaux|Bordeaux wine|red wine +medroxyprogesterone|1 +(noun)|Provera|progestin|progestogen +medulla|3 +(noun)|myelin|myeline|fat +(noun)|medulla oblongata|bulb|neural structure +(noun)|animal tissue|plant tissue +medulla oblongata|1 +(noun)|medulla|bulb|neural structure +medulla spinalis|1 +(noun)|spinal cord|neural structure|funiculus +medullary|3 +(adj)|connective tissue +(adj)|neural structure +(adj)|animal tissue|plant tissue +medullary ray|1 +(noun)|vascular ray|vascular tissue +medullary sheath|1 +(noun)|myelin sheath|sheath|case +medullated|1 +(adj)|myelinated |fat +medullated nerve fiber|1 +(noun)|myelinated nerve fiber|nerve fiber|nerve fibre +medusa|3 +(noun)|Medusa|Gorgon +(noun)|jellyfish|medusan|coelenterate|cnidarian +(noun)|coelenterate|cnidarian +medusa's head|2 +(noun)|Euphorbia medusae|Euphorbia caput-medusae|spurge +(noun)|Elymus caput-medusae|wild rye +medusan|1 +(noun)|jellyfish|medusa|coelenterate|cnidarian +medusoid|1 +(adj)|coelenterate|cnidarian +meed|1 +(noun)|reward +meek|3 +(adj)|mild|modest|humble +(adj)|tame|docile +(adj)|compliant|spiritless|submissive +meekly|1 +(adv)|humbly +meekness|2 +(noun)|submission|humility|humbleness +(noun)|humility|humbleness +meerestone|1 +(noun)|merestone|mearstone|landmark +meerkat|1 +(noun)|mierkat|viverrine|viverrine mammal +meerschaum|2 +(noun)|sepiolite|mineral +(noun)|pipe|tobacco pipe +meet|14 +(adj)|fitting|just +(noun)|sports meeting|athletic contest|athletic competition|athletics +(verb)|ran into|encounter|run across|come across|see +(verb)|get together +(verb)|converge +(verb)|satisfy|fill|fulfill|fulfil|provide|supply|ply|cater +(verb)|fit|conform to|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|match|cope with|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|gather|assemble|forgather|foregather|interact +(verb)|gather|assemble|forgather|foregather +(verb)|encounter|play|take on +(verb)|encounter|receive|have|experience +(verb)|suffer|experience|undergo|see|go through +(verb)|touch|adjoin|contact +meet up with|1 +(verb)|meet +meeter|1 +(noun)|attendant|attender|attendee|participant +meeting|6 +(noun)|gathering|assemblage +(noun)|coming together|assembly|assemblage|gathering +(noun)|get together|social gathering|social affair +(noun)|encounter|convergence +(noun)|merging|coming together|convergence|converging|convergency +(noun)|confluence|geographic point|geographical point +meeting house|2 +(noun)|honeysuckle|Aquilegia canadensis|columbine|aquilegia|aquilege +(noun)|conventicle|meetinghouse|place of worship|house of prayer|house of God|house of worship +meeting of minds|1 +(noun)|concurrence|agreement|accord +meeting place|1 +(noun)|forum|assembly|facility|installation +meetinghouse|1 +(noun)|conventicle|place of worship|house of prayer|house of God|house of worship +mefenamic acid|1 +(noun)|Ponstel|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +mefloquine|1 +(noun)|mefloquine hydrochloride|Larium|Mephaquine|antimalarial|antimalarial drug +mefloquine hydrochloride|1 +(noun)|mefloquine|Larium|Mephaquine|antimalarial|antimalarial drug +mefoxin|1 +(noun)|cephalosporin|Mefoxin|antibiotic|antibiotic drug +meg|1 +(noun)|million|1000000|one thousand thousand|large integer +megabat|1 +(noun)|fruit bat|bat|chiropteran +megabit|1 +(noun)|unit of measurement|unit +megabucks|1 +(noun)|pile|bundle|big bucks|big money|money +megabyte|1 +(noun)|MB|computer memory unit +megacardia|1 +(noun)|cardiomegaly|megalocardia|enlarged heart|symptom +megacephaly|1 +(noun)|macrocephaly|megalocephaly|abnormality|abnormalcy|abnormal condition +megachile|1 +(noun)|Megachile|genus Megachile|arthropod genus +megachilidae|1 +(noun)|Megachilidae|family Megachilidae|arthropod family +megachiroptera|1 +(noun)|Megachiroptera|suborder Megachiroptera|animal order +megacolon|1 +(noun)|colon +megacycle|1 +(noun)|megahertz|MHz|megacycle per second|Mc|rate +megacycle per second|1 +(noun)|megahertz|MHz|megacycle|Mc|rate +megadeath|1 +(noun)|death|decease +megaderma|1 +(noun)|Megaderma|genus Megaderma|mammal genus +megaderma lyra|1 +(noun)|big-eared bat|Megaderma lyra|false vampire|false vampire bat +megadermatidae|1 +(noun)|Megadermatidae|family Megadermatidae|mammal family +megaera|1 +(noun)|Megaera|Fury|Eumenides|Erinyes +megaflop|1 +(noun)|MFLOP|million floating point operations per second|unit of measurement|unit +megagametophyte|1 +(noun)|gametophyte +megahertz|1 +(noun)|MHz|megacycle per second|megacycle|Mc|rate +megahit|1 +(noun)|blockbuster|smash hit|hit|smash|smasher|strike|bang +megakaryocyte|1 +(noun)|bone cell +megakaryocytic|1 +(adj)|bone cell +megalith|1 +(noun)|megalithic structure|memorial|monument +megalithic|1 +(adj)|memorial|monument +megalithic structure|1 +(noun)|megalith|memorial|monument +megalobatrachus|1 +(noun)|Megalobatrachus|genus Megalobatrachus|amphibian genus +megalobatrachus maximus|1 +(noun)|giant salamander|Megalobatrachus maximus|salamander +megaloblast|1 +(noun)|red blood cell|RBC|erythrocyte +megaloblastic|1 +(adj)|red blood cell|RBC|erythrocyte +megaloblastic anaemia|1 +(noun)|megaloblastic anemia|pernicious anemia|pernicious anaemia|malignant anemia|malignant anaemia +megaloblastic anemia|1 +(noun)|megaloblastic anaemia|pernicious anemia|pernicious anaemia|malignant anemia|malignant anaemia +megalocardia|1 +(noun)|cardiomegaly|megacardia|enlarged heart|symptom +megalocephaly|1 +(noun)|macrocephaly|megacephaly|abnormality|abnormalcy|abnormal condition +megalocyte|1 +(noun)|macrocyte|red blood cell|RBC|erythrocyte +megalohepatia|1 +(noun)|hepatomegaly|abnormality|abnormalcy|abnormal condition +megalomania|1 +(noun)|mental illness|mental disease|psychopathy +megalomaniac|1 +(noun)|egotist|egoist|swellhead +megalomaniacal|1 +(adj)|megalomanic|neurotic |psychoneurotic +megalomanic|1 +(adj)|megalomaniacal|neurotic |psychoneurotic +megalonychidae|1 +(noun)|Megalonychidae|family Megalonychidae|mammal family +megalopolis|1 +(noun)|urban area|populated area +megaloptera|1 +(noun)|Megaloptera|suborder Megaloptera|animal order +megalosaur|1 +(noun)|megalosaurus|theropod|theropod dinosaur|bird-footed dinosaur +megalosauridae|1 +(noun)|Megalosauridae|family Megalosauridae|reptile family +megalosaurus|1 +(noun)|megalosaur|theropod|theropod dinosaur|bird-footed dinosaur +megalp|1 +(noun)|megilp|medium +megaphone|1 +(noun)|acoustic device +megapode|1 +(noun)|mound bird|mound-bird|mound builder|scrub fowl|gallinaceous bird|gallinacean +megapodiidae|1 +(noun)|Megapodiidae|family Megapodiidae|bird family +megapodius|1 +(noun)|Megapodius|genus-Megapodius|bird genus +megaptera|1 +(noun)|Megaptera|genus Megaptera|mammal genus +megaptera novaeangliae|1 +(noun)|humpback|humpback whale|Megaptera novaeangliae|baleen whale|whalebone whale +megascopic|1 +(adj)|gross|macroscopic |macroscopical|large +megasporangium|1 +(noun)|macrosporangium|sporangium|spore case|spore sac +megaspore|1 +(noun)|macrospore|spore +megasporophyll|1 +(noun)|sporophyll|sporophyl +megathere|1 +(noun)|ground sloth|megatherian|megatheriid|megatherian mammal +megatherian|1 +(noun)|megatheriid|megatherian mammal|edentate +megatherian mammal|1 +(noun)|megatherian|megatheriid|edentate +megatheriid|1 +(noun)|megatherian|megatherian mammal|edentate +megatheriidae|1 +(noun)|Megatheriidae|family Megatheriidae|mammal family +megatherium|1 +(noun)|Megatherium|genus Megatherium|mammal genus +megaton|2 +(noun)|explosive unit +(noun)|avoirdupois unit +megaton bomb|1 +(noun)|nuclear weapon|bomb +megavitamin therapy|1 +(noun)|therapy +megawatt|1 +(noun)|power unit +megesterol|1 +(noun)|megestrol acetate|progestin|progestogen +megestrol acetate|1 +(noun)|megesterol|progestin|progestogen +megillah|2 +(noun)|report|account +(noun)|Megillah|scroll|roll +megilp|1 +(noun)|megalp|medium +megohm|1 +(noun)|resistance unit +megrim|1 +(noun)|migraine|sick headache|hemicrania|headache|head ache|cephalalgia +megrims|2 +(noun)|blues|blue devils|vapors|vapours|depression +(noun)|migraine|megrim|sick headache|hemicrania|headache|head ache|cephalalgia +mehemet ali|1 +(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier +mei|1 +(noun)|Japanese apricot|Prunus mume|apricot|apricot tree +meibomian cyst|1 +(noun)|chalazion|Meibomian cyst|sebaceous cyst|pilar cyst|wen|steatocystoma +meibomian gland|1 +(noun)|Meibomian gland|tarsal gland|sebaceous gland|sebaceous follicle|glandulae sebaceae +meiji tenno|1 +(noun)|Meiji Tenno|Mutsuhito|Emperor +meiosis|2 +(noun)|miosis|reduction division|cell division|cellular division +(noun)|litotes|rhetorical device|understatement +meiotic|1 +(adj)|cell division|cellular division +meir|1 +(noun)|Meir|Golda Meir|statesman|solon|national leader +meissner|2 +(noun)|Meissner|Georg Meissner|anatomist +(noun)|Meissner|Fritz W. Meissner|physicist +meister eckhart|1 +(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian|theologist|theologizer|theologiser|mystic|religious mystic +meitner|1 +(noun)|Meitner|Lise Meitner|nuclear physicist +mek|1 +(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization|terrorist group|foreign terrorist organization|FTO +mekong|1 +(noun)|Mekong|Mekong River|river +mekong river|1 +(noun)|Mekong|Mekong River|river +mel columcille gerard gibson|1 +(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor|histrion|player|thespian|role player +mel gibson|1 +(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor|histrion|player|thespian|role player +melaena|1 +(noun)|melena|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +melagra|1 +(noun)|pain|hurting +melagueta pepper|1 +(noun)|grains of paradise|Guinea grains|Guinea pepper|Aframomum melegueta|herb|herbaceous plant +melamine|1 +(noun)|cyanuramide|base|alkali +melamine resin|1 +(noun)|synthetic resin +melampodium|1 +(noun)|Melampodium|genus Melampodium|asterid dicot genus +melampodium leucanthum|1 +(noun)|blackfoot daisy|Melampodium leucanthum|wildflower|wild flower +melampsora|1 +(noun)|Melampsora|genus Melampsora|fungus genus +melampsora lini|1 +(noun)|flax rust|flax rust fungus|Melampsora lini|rust|rust fungus +melampsoraceae|1 +(noun)|Melampsoraceae|family Melampsoraceae|fungus family +melancholia|1 +(noun)|depression +melancholiac|1 +(noun)|melancholic|depressive +melancholic|2 +(adj)|melancholy|sad +(noun)|melancholiac|depressive +melancholy|4 +(adj)|melancholic|sad +(noun)|sadness|unhappiness +(noun)|depression +(noun)|black bile|liquid body substance|bodily fluid|body fluid|humor|humour +melancholy thistle|1 +(noun)|Cirsium heterophylum|Cirsium helenioides|thistle +melanchthon|1 +(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian|theologist|theologizer|theologiser +melanerpes|1 +(noun)|Melanerpes|genus Melanerpes|bird genus +melanerpes erythrocephalus|1 +(noun)|redheaded woodpecker|redhead|Melanerpes erythrocephalus|woodpecker|peckerwood|pecker +melanesia|1 +(noun)|Melanesia|archipelago +melange|1 +(noun)|odds and ends|oddments|farrago|ragbag|hodgepodge|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +melanie klein|1 +(noun)|Klein|Melanie Klein|analyst|psychoanalyst +melanin|1 +(noun)|animal pigment +melanise|2 +(verb)|melanize|convert +(verb)|blacken|melanize|nigrify|black|discolor|discolour|colour|color +melanism|1 +(noun)|melanosis|skin disease|disease of the skin|skin disorder|skin problem|skin condition +melanitta|1 +(noun)|Melanitta|genus Melanitta|bird genus +melanitta nigra|1 +(noun)|common scoter|Melanitta nigra|scoter|scooter +melanize|2 +(verb)|melanise|convert +(verb)|blacken|melanise|nigrify|black|discolor|discolour|colour|color +melanoblast|1 +(noun)|epidermal cell +melanocyte|1 +(noun)|epidermal cell +melanocyte-stimulating hormone|1 +(noun)|MSH|hormone|endocrine|internal secretion +melanoderma|1 +(noun)|pigmentation +melanogrammus|1 +(noun)|Melanogrammus|genus Melanogrammus|fish genus +melanogrammus aeglefinus|1 +(noun)|haddock|Melanogrammus aeglefinus|gadoid|gadoid fish +melanoma|1 +(noun)|malignant melanoma|skin cancer +melanoplus|1 +(noun)|Melanoplus|genus Melanoplus|arthropod genus +melanosis|1 +(noun)|melanism|skin disease|disease of the skin|skin disorder|skin problem|skin condition +melanotis|1 +(noun)|Melanotis|genus Melanotis|bird genus +melanotis caerulescens|1 +(noun)|blue mockingbird|Melanotis caerulescens|oscine|oscine bird +melanthiaceae|1 +(noun)|Melanthiaceae|family Melanthiaceae|liliid monocot family +melasma|1 +(noun)|chloasma|mask of pregnancy|symptom +melastoma|1 +(noun)|Melastoma|genus Melastoma|rosid dicot genus +melastoma malabathricum|1 +(noun)|Indian rhododendron|Melastoma malabathricum|shrub|bush +melastomaceae|1 +(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family +melastomataceae|1 +(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family +melatonin|1 +(noun)|hormone|endocrine|internal secretion +melba|1 +(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura|coloratura soprano +melba toast|1 +(noun)|Melba toast|toast +melbourne|2 +(noun)|Melbourne|town +(noun)|Melbourne|state capital +melchior|2 +(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor +(noun)|Melchior|sage +melchite|2 +(noun)|Melkite|Melchite|Christian +(noun)|Melkite|Melchite|Christian +meld|4 +(noun)|canasta|basket rummy|rummy|rum +(verb)|announce|denote +(verb)|melt|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|combine|merge +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|combine|merge|change integrity +meleagrididae|1 +(noun)|Meleagrididae|family Meleagrididae|bird family +meleagris|1 +(noun)|Meleagris|genus Meleagris|bird genus +meleagris gallopavo|1 +(noun)|turkey|Meleagris gallopavo|domestic fowl|fowl|poultry +melee|1 +(noun)|scrimmage|battle royal|disturbance +melena|1 +(noun)|melaena|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +meles|1 +(noun)|Meles|genus Meles|mammal genus +meles meles|1 +(noun)|Eurasian badger|Meles meles|badger +melia|1 +(noun)|Melia|genus Melia|rosid dicot genus +melia azadirachta|1 +(noun)|neem|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree +melia azedarach|1 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +melia azederach|1 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +meliaceae|1 +(noun)|Meliaceae|family Meliaceae|mahogany family|rosid dicot family +melicocca|1 +(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus|magnoliopsid genus +melicocca bijuga|1 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +melicocca bijugatus|1 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +melicoccus|1 +(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus|magnoliopsid genus +melicytus|1 +(noun)|Melicytus|genus Melicytus|dilleniid dicot genus +melilot|1 +(noun)|melilotus|sweet clover|woody plant|ligneous plant +melilotus|1 +(noun)|melilot|sweet clover|woody plant|ligneous plant +melilotus alba|1 +(noun)|white sweet clover|white melilot|Melilotus alba|melilotus|melilot|sweet clover +melilotus officinalis|1 +(noun)|yellow sweet clover|Melilotus officinalis|melilotus|melilot|sweet clover +melina mercouri|1 +(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress +melinae|1 +(noun)|Melinae|subfamily Melinae|mammal family +meliorate|2 +(verb)|better|improve|amend|ameliorate|change|alter|modify +(verb)|better|improve|ameliorate|change state|turn +melioration|3 +(noun)|amelioration|betterment|improvement +(noun)|improvement|condition|status +(noun)|drift +meliorative|1 +(adj)|ameliorating|ameliorative|amelioratory|bettering +meliorism|1 +(noun)|belief +meliorist|1 +(noun)|reformer|reformist|crusader|disputant|controversialist|eristic +meliphagidae|1 +(noun)|Meliphagidae|family Meliphagidae|bird family +melissa|1 +(noun)|Melissa|genus Melissa|asterid dicot genus +melissa officinalis|1 +(noun)|lemon balm|garden balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb|herbaceous plant +melkite|2 +(noun)|Melkite|Melchite|Christian +(noun)|Melkite|Melchite|Christian +mellaril|1 +(noun)|thioridazine|Mellaril|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +mellifluous|1 +(adj)|dulcet|honeyed|mellisonant|sweet|melodious |melodic|musical +mellisonant|1 +(adj)|dulcet|honeyed|mellifluous|sweet|melodious |melodic|musical +mellivora|1 +(noun)|Mellivora|genus Mellivora|mammal genus +mellivora capensis|1 +(noun)|ratel|honey badger|Mellivora capensis|musteline mammal|mustelid|musteline +mellon|1 +(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier|moneyman|philanthropist|altruist +mellow|9 +(adj)|easygoing|laid-back|relaxed |at ease +(adj)|mellowed|ripe |mature +(adj)|mellowed|mature +(adj)|mellowing|soft +(adj)|high|intoxicated |drunk|inebriated +(verb)|soften +(verb)|melt|mellow out|change +(verb)|soften +(adv)|mellowly +mellow out|1 +(verb)|mellow|melt|change +mellowed|2 +(adj)|mellow|ripe |mature +(adj)|mellow|mature +mellowing|2 +(adj)|mellow|soft +(noun)|ripening|aging|ageing +mellowly|1 +(adv)|mellow +mellowness|1 +(noun)|fullness|richness|timbre|timber|quality|tone +melocactus|1 +(noun)|Melocactus|genus Melocactus|caryophylloid dicot genus +melodic|2 +(adj)|melodious |musical|ariose|songlike|canorous|songful|cantabile|singing|dulcet|honeyed|mellifluous|mellisonant|sweet|lyrical +(adj)|music +melodic line|1 +(noun)|tune|melody|air|strain|line|melodic phrase|music +melodic phrase|1 +(noun)|tune|melody|air|strain|melodic line|line|music +melodic theme|1 +(noun)|theme|musical theme|idea|tune|melody|air|strain|melodic line|line|melodic phrase +melodious|2 +(adj)|tuneful +(adj)|melodious |melodic|musical|ariose|songlike|canorous|songful|cantabile|singing|dulcet|honeyed|mellifluous|mellisonant|sweet|lyrical +melodiously|1 +(adv)|tunefully +melodiousness|1 +(noun)|tunefulness|musicality|musicalness +melodise|1 +(verb)|melodize|compose|write +melodize|1 +(verb)|melodise|compose|write +melodrama|1 +(noun)|comedy +melodramatic|2 +(adj)|dramatic +(adj)|histrionic|theatrical +melody|2 +(noun)|tune|air|strain|melodic line|line|melodic phrase|music +(noun)|tonal pattern|musical perception +melody pipe|1 +(noun)|chanter|pipe|tabor pipe +melogale|1 +(noun)|Melogale|genus Melogale|mammal genus +meloid|1 +(noun)|blister beetle|beetle +meloidae|1 +(noun)|Meloidae|family Meloidae|arthropod family +melolontha|1 +(noun)|Melolontha|genus Melolontha|arthropod genus +melolontha melolontha|1 +(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle +melolonthid beetle|1 +(noun)|scarabaeid beetle|scarabaeid|scarabaean +melolonthidae|1 +(noun)|Melolonthidae|subfamily Melolonthidae|arthropod family +melon|2 +(noun)|edible fruit +(noun)|melon vine|gourd|gourd vine +melon ball|1 +(noun)|melon +melon tree|1 +(noun)|papaya|papaia|pawpaw|papaya tree|Carica papaya|fruit tree +melon vine|1 +(noun)|melon|gourd|gourd vine +melophagus|1 +(noun)|Melophagus|genus Melophagus|arthropod genus +melophagus ovinus|1 +(noun)|sheep ked|sheep-tick|sheep tick|Melophagus Ovinus|louse fly|hippoboscid +melopsittacus|1 +(noun)|Melopsittacus|genus Melopsittacus|bird genus +melopsittacus undulatus|1 +(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +melosa|1 +(noun)|Chile tarweed|madia oil plant|Madia sativa|tarweed +melospiza|1 +(noun)|Melospiza|genus Melospiza|bird genus +melospiza georgiana|1 +(noun)|swamp sparrow|Melospiza georgiana|New World sparrow +melospiza melodia|1 +(noun)|song sparrow|Melospiza melodia|New World sparrow +melphalan|1 +(noun)|Alkeran|antineoplastic|antineoplastic drug|cancer drug +melpomene|1 +(noun)|Melpomene|Muse +melt|7 +(noun)|thaw|thawing|melting|heating|warming|phase change|phase transition|state change|physical change +(verb)|run|melt down|dissolve|resolve|break up +(verb)|dissolve|thaw|unfreeze|unthaw|dethaw|liquefy|flux|liquify +(verb)|mellow|mellow out|change +(verb)|meld|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|fade|weaken +(verb)|disappear|weaken +melt down|1 +(verb)|melt|run|dissolve|resolve|break up +melt off|1 +(verb)|reduce|lose weight|slim|slenderize|thin|slim down|change state|turn +meltable|1 +(adj)|disintegrable|soluble +meltdown|2 +(noun)|nuclear meltdown|overheating +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +melted|1 +(adj)|melted |liquid|liquified|dissolved|molten|liquefied|liquified|fusible|thawed|unfrozen +melter|1 +(noun)|worker +melting|2 +(adj)|liquescent|unfrozen +(noun)|thaw|melt|thawing|heating|warming|phase change|phase transition|state change|physical change +melting point|1 +(noun)|freezing point|temperature +melting pot|2 +(noun)|environment|environs|surroundings|surround +(noun)|crucible|vessel +meltwater|1 +(noun)|water|H2O +melursus|1 +(noun)|Melursus|genus Melursus|mammal genus +melursus ursinus|1 +(noun)|sloth bear|Melursus ursinus|Ursus ursinus|bear +melvil dewey|1 +(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian|bibliothec +melville|1 +(noun)|Melville|Herman Melville|writer|author +melville bell|1 +(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician +melville louis kossuth dewey|1 +(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian|bibliothec +melvin calvin|1 +(noun)|Calvin|Melvin Calvin|chemist +mem|1 +(noun)|letter|letter of the alphabet|alphabetic character +member|5 +(noun)|associate +(noun)|unit|social unit +(noun)|extremity|appendage|external body part +(noun)|part|portion|component part|component +(noun)|penis|phallus|erectile organ +member bank|1 +(noun)|depository financial institution|bank|banking concern|banking company +member of parliament|1 +(noun)|Parliamentarian|Member of Parliament|legislator +membered|1 +(adj)|membered |three-membered|3-membered|four-membered|4-membered|five-membered|5-membered|six-membered|6-membered|seven-membered|7-membered|eight-membered|8-membered|nine-membered|9-membered|ten-membered|s10-membered +memberless|1 +(adj)|memberless +membership|2 +(noun)|rank|body +(noun)|relationship +membership card|1 +(noun)|card|identity card +membracidae|1 +(noun)|Membracidae|family Membracidae|arthropod family +membrane|2 +(noun)|sheet|flat solid +(noun)|tissue layer|animal tissue +membrane-forming|1 +(adj)|membranous|unhealthy +membrane bone|1 +(noun)|bone|os +membranophone|1 +(noun)|drum|tympan|percussion instrument|percussive instrument +membranous|2 +(adj)|animal tissue +(adj)|membrane-forming|unhealthy +membranous labyrinth|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +meme|1 +(noun)|acculturation|culture +memel|1 +(noun)|Klaipeda|Memel|city|metropolis|urban center +memento|1 +(noun)|souvenir|reminder +memento mori|1 +(noun)|reminder +memo|1 +(noun)|memorandum|memoranda|note +memoir|2 +(noun)|autobiography +(noun)|essay +memorabilia|1 +(noun)|record +memorable|1 +(adj)|unforgettable +memorably|1 +(adv)|unforgettably +memoranda|2 +(noun)|memo|memorandum|note +(noun)|memo|memorandum|note +memorandum|1 +(noun)|memo|memoranda|note +memorial|3 +(noun)|commemoration|remembrance|recognition|credit +(noun)|message|content|subject matter|substance +(noun)|monument|structure|construction +memorial day|1 +(noun)|Memorial Day|Decoration Day|legal holiday|national holiday +memorial park|1 +(noun)|cemetery|graveyard|burial site|burial ground|burying ground|necropolis|site|land site +memorial tablet|1 +(noun)|brass|plaque|memorial|monument +memorialisation|1 +(noun)|commemoration|memorialization|ceremony|ceremonial|ceremonial occasion|observance +memorialise|2 +(verb)|memorialize|address|speak +(verb)|commemorate|memorialize|immortalize|immortalise|record|remind +memorialization|1 +(noun)|commemoration|memorialisation|ceremony|ceremonial|ceremonial occasion|observance +memorialize|2 +(verb)|memorialise|address|speak +(verb)|commemorate|memorialise|immortalize|immortalise|record|remind +memorisation|1 +(noun)|memorization|committal to memory|learning|acquisition +memorise|1 +(verb)|memorize|con|learn|study|hit the books +memoriser|1 +(noun)|memorizer|learner|scholar|assimilator +memorization|1 +(noun)|memorisation|committal to memory|learning|acquisition +memorize|1 +(verb)|memorise|con|learn|study|hit the books +memorizer|1 +(noun)|memoriser|learner|scholar|assimilator +memory|5 +(noun)|representation|mental representation|internal representation +(noun)|remembering|basic cognitive process +(noun)|retention|retentiveness|faculty|mental faculty|module +(noun)|computer memory|storage|computer storage|store|memory board|memory device|storage device|hardware|computer hardware +(noun)|cognitive psychology +memory access|1 +(noun)|access|operation +memory board|1 +(noun)|memory|computer memory|storage|computer storage|store|memory device|storage device|hardware|computer hardware +memory cache|1 +(noun)|cache|buffer|buffer storage|buffer store +memory chip|1 +(noun)|chip|microchip|micro chip|silicon chip +memory device|1 +(noun)|storage device|device +memory image|1 +(noun)|image|mental image +memory loss|1 +(noun)|amnesia|blackout|cognitive state|state of mind +memory picture|1 +(noun)|memory image +memory trace|1 +(noun)|engram|memory +memphis|2 +(noun)|Memphis|city|metropolis|urban center +(noun)|Memphis|city|metropolis|urban center +memsahib|1 +(noun)|sahib +men|12 +(noun)|work force|workforce|manpower|hands|force|personnel +(noun)|man|adult male|male|male person +(noun)|serviceman|military man|man|military personnel|skilled worker|trained worker +(noun)|man|person|individual|someone|somebody|mortal|human|soul +(noun)|world|human race|humanity|humankind|human beings|humans|mankind|man|group|grouping +(noun)|homo|man|human being|human|hominid +(noun)|man|subordinate|subsidiary|underling|foot soldier +(noun)|man|male|male person +(noun)|man|male|male person|lover +(noun)|valet|valet de chambre|gentleman|gentleman's gentleman|man|manservant|body servant +(noun)|Man|Isle of Man|island +(noun)|man|piece|game equipment +men's|1 +(noun)|men's room|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room +men's furnishings|1 +(noun)|haberdashery|drygoods|soft goods +men's room|1 +(noun)|men's|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room +menace|5 +(noun)|threat|danger +(noun)|threat +(verb)|endanger|jeopardize|jeopardise|threaten|imperil|peril|exist|be +(verb)|express|show|evince +(verb)|act|behave|do +menachem begin|1 +(noun)|Begin|Menachem Begin|statesman|solon|national leader +menacing|1 +(adj)|baleful|forbidding|minacious|minatory|ominous|sinister|threatening|ugly|alarming +menacingly|1 +(adv)|threateningly +menadione|1 +(noun)|vitamin K3|vitamin K|naphthoquinone|antihemorrhagic factor +menage|1 +(noun)|family|household|house|home|unit|social unit +menage a trois|1 +(noun)|family|household|house|home|menage +menagerie|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|zoo|zoological garden|facility|installation +menai strait|1 +(noun)|Menai Strait|strait|sound +menander|1 +(noun)|Menander|dramatist|playwright +menarche|1 +(noun)|start +mencken|1 +(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist|literary critic +mend|4 +(noun)|patch|darn|sewing|stitchery +(noun)|repair|fix|fixing|fixture|mending|reparation|improvement +(verb)|repair|fix|bushel|doctor|furbish up|restore|touch on|better|improve|amend|ameliorate|meliorate +(verb)|heal|better|improve|ameliorate|meliorate +mendacious|2 +(adj)|lying|untruthful +(adj)|false +mendaciously|1 +(adv)|untruthfully +mendacity|1 +(noun)|untruthfulness +mendel|1 +(noun)|Mendel|Gregor Mendel|Johann Mendel|monk|monastic|botanist|phytologist|plant scientist +mendel's law|1 +(noun)|Mendel's law|law|law of nature +mendeleev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +mendeleev's law|1 +(noun)|periodic law|Mendeleev's law|law|law of nature +mendelevium|1 +(noun)|Md|Mv|atomic number 101|chemical element|element +mendeleyev|1 +(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist +mendelian|1 +(adj)|Mendelian|monk|monastic|botanist|phytologist|plant scientist +mendelianism|1 +(noun)|Mendelism|Mendelianism|theory of inheritance +mendelism|1 +(noun)|Mendelism|Mendelianism|theory of inheritance +mendelsohn|1 +(noun)|Mendelsohn|Erich Mendelsohn|architect|designer +mendelssohn|1 +(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer +mendenhall glacier|1 +(noun)|Mendenhall Glacier|Great Mendenhall Glacier|Piedmont glacier|Piedmont type of glacier +mender|1 +(noun)|tinker|tinkerer|repairman|repairer|maintenance man|service man|fixer +mendicancy|1 +(noun)|beggary|begging|solicitation +mendicant|3 +(adj)|beseeching +(noun)|friar|religious +(noun)|beggar|pauper|poor man +mending|2 +(noun)|garment +(noun)|repair|fix|fixing|fixture|mend|reparation|improvement +menelaus|1 +(noun)|Menelaus|mythical being +menhaden|1 +(noun)|Brevoortia tyrannis|clupeid fish|clupeid +menhaden oil|1 +(noun)|animal oil +menhir|1 +(noun)|standing stone|megalith|megalithic structure +menial|2 +(adj)|humble|lowly|unskilled +(noun)|dogsbody|servant|retainer +meniere|1 +(noun)|Meniere|Prosper Meniere|ear doctor|ear specialist|otologist +meniere's disease|1 +(noun)|Meniere's disease|disease +meningeal|1 +(adj)|membrane|tissue layer +meningeal artery|1 +(noun)|arteria meningea|artery|arteria|arterial blood vessel +meningeal veins|1 +(noun)|venae meningeae|vein|vena|venous blood vessel +meninges|1 +(noun)|meninx|membrane|tissue layer +meningioma|1 +(noun)|tumor|tumour|neoplasm +meningism|1 +(noun)|symptom +meningitis|1 +(noun)|infectious disease +meningocele|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +meningoencephalitis|1 +(noun)|cerebromeningitis|encephalomeningitis|meningitis|encephalitis|cephalitis|phrenitis +meninx|1 +(noun)|meninges|membrane|tissue layer +menippe|1 +(noun)|Menippe|genus Menippe|arthropod genus +menippe mercenaria|1 +(noun)|stone crab|Menippe mercenaria|crab +meniscectomy|1 +(noun)|ablation|extirpation|cutting out|excision +meniscium|1 +(noun)|Meniscium|genus Meniscium|fern genus +meniscus|1 +(noun)|cartilage|gristle +menispermaceae|1 +(noun)|Menispermaceae|family Menispermaceae|moonseed family|magnoliid dicot family +menispermum|1 +(noun)|Menispermum|genus Menispermum|magnoliid dicot genus +menispermum canadense|1 +(noun)|common moonseed|Canada moonseed|yellow parilla|Menispermum canadense|moonseed +menninger|3 +(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist|head-shrinker|shrink +(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist|head-shrinker|shrink +(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist|head-shrinker|shrink +mennonite|1 +(noun)|Mennonite|Anabaptist +mennonite church|1 +(noun)|Mennonite Church|Protestant denomination +mennonitism|1 +(noun)|Mennonitism|Protestantism +meno mosso|1 +(noun)|tempo|pacing +menominee|1 +(noun)|Menomini|Menominee|Algonquian|Algonquin +menominee whitefish|1 +(noun)|round whitefish|Menominee whitefish|Prosopium cylindraceum|whitefish +menomini|2 +(noun)|Menomini|Menominee|Algonquian|Algonquin +(noun)|Menomini|Algonquian|Algonquin|Algonquian language +menopausal|1 +(adj)|biological time +menopause|1 +(noun)|climacteric|change of life|biological time +menopon|1 +(noun)|Menopon|genus Menopon|arthropod genus +menopon gallinae|1 +(noun)|chicken louse|shaft louse|Menopon palladum|Menopon gallinae|bird louse|biting louse|louse +menopon palladum|1 +(noun)|chicken louse|shaft louse|Menopon palladum|Menopon gallinae|bird louse|biting louse|louse +menorah|2 +(noun)|Menorah|candelabrum|candelabra +(noun)|candelabrum|candelabra +menorrhagia|1 +(noun)|hypermenorrhea|menstruation|menses|menstruum|catamenia|period|flow|symptom +menorrhea|1 +(noun)|menstrual blood|menstrual flow|blood +menotti|1 +(noun)|Menotti|Gian Carlo Menotti|composer +menotyphla|1 +(noun)|Menotyphla|suborder Menotyphla|animal order +mens rea|1 +(noun)|malice aforethought|planning|preparation|provision +mens store|1 +(noun)|clothing store|haberdashery|haberdashery store|shop|store +mensa|1 +(noun)|Mensa|constellation +mensal|1 +(adj)|table +mensal line|1 +(noun)|line of heart|heart line|love line|wrinkle|furrow|crease|crinkle|seam|line +mensch|1 +(noun)|mensh|good person +menses|1 +(noun)|menstruation|menstruum|catamenia|period|flow|discharge|emission|expelling +mensh|1 +(noun)|mensch|good person +menshevik|1 +(noun)|Menshevik|socialist +menstrual|1 +(adj)|catamenial|discharge|emission|expelling +menstrual blood|1 +(noun)|menorrhea|menstrual flow|blood +menstrual cycle|1 +(noun)|cycle|oscillation +menstrual flow|1 +(noun)|menorrhea|menstrual blood|blood +menstrual phase|1 +(noun)|phase|stage +menstruate|1 +(verb)|flow|shed blood|bleed|hemorrhage +menstruating|1 +(adj)|unwell|ill |sick +menstruation|1 +(noun)|menses|menstruum|catamenia|period|flow|discharge|emission|expelling +menstruum|2 +(noun)|solvent|dissolvent|dissolver|dissolving agent|resolvent +(noun)|menstruation|menses|catamenia|period|flow|discharge|emission|expelling +mensurable|1 +(adj)|measurable +mensural|2 +(adj)|abstraction +(adj)|musical notation +mensurate|1 +(verb)|measure|measure out|decide|make up one's mind|determine +mensuration|1 +(noun)|measurement|measuring|measure|activity +mental|5 +(adj)|mental |intellectual|rational|noetic|moral|psychic|psychical|psychogenic|psychological +(adj)|cognition|knowledge|noesis +(adj)|body part +(adj)|genial|body part +(adj)|unhealthy +mental ability|1 +(noun)|capacity|ability|power +mental abnormality|1 +(noun)|abnormality|abnormalcy|abnormal condition +mental age|1 +(noun)|age +mental anguish|1 +(noun)|pain|painfulness +mental attitude|1 +(noun)|attitude|cognition|knowledge|noesis +mental balance|1 +(noun)|mental soundness|mental health +mental block|1 +(noun)|block|inability +mental capacity|1 +(noun)|brain|brainpower|learning ability|mentality|wit|intelligence +mental case|1 +(noun)|neurotic|psychoneurotic|sick person|diseased person|sufferer +mental confusion|1 +(noun)|confusion|confusedness|disarray|cognitive state|state of mind +mental defectiveness|1 +(noun)|abnormality|retardation|mental retardation|backwardness|slowness|subnormality +mental deficiency|1 +(noun)|moronity|retardation|mental retardation|backwardness|slowness|subnormality +mental disease|1 +(noun)|mental illness|psychopathy|psychological state|mental state +mental disorder|1 +(noun)|mental disturbance|disturbance|psychological disorder|folie|disorder|upset +mental disturbance|1 +(noun)|mental disorder|disturbance|psychological disorder|folie|disorder|upset +mental energy|1 +(noun)|psychic energy|motivation|motive|need +mental exhaustion|1 +(noun)|brain-fag|exhaustion +mental faculty|1 +(noun)|faculty|module|ability|power +mental health|1 +(noun)|psychological state|mental state +mental home|1 +(noun)|mental hospital|psychiatric hospital|mental institution|institution|insane asylum|asylum|hospital|infirmary +mental hospital|1 +(noun)|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum|hospital|infirmary +mental hygiene|1 +(noun)|psychotherapy|psychotherapeutics|psychiatry|psychopathology|psychological medicine +mental illness|1 +(noun)|mental disease|psychopathy|psychological state|mental state +mental image|1 +(noun)|image|representation|mental representation|internal representation +mental imagery|1 +(noun)|imagination|imaging|imagery|representational process +mental institution|1 +(noun)|mental hospital|psychiatric hospital|institution|mental home|insane asylum|asylum|hospital|infirmary +mental lexicon|1 +(noun)|vocabulary|lexicon|cognition|knowledge|noesis +mental measurement|1 +(noun)|measurement|measuring|measure|mensuration +mental note|1 +(noun)|attention +mental object|1 +(noun)|content|cognitive content|cognition|knowledge|noesis +mental picture|1 +(noun)|picture|impression|image|mental image +mental process|1 +(noun)|process|cognitive process|operation|cognitive operation|cognition|knowledge|noesis +mental quickness|1 +(noun)|quickness|quick-wittedness|intelligence +mental rejection|1 +(noun)|incredulity|disbelief|skepticism|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +mental representation|1 +(noun)|representation|internal representation|content|cognitive content|mental object +mental reservation|1 +(noun)|reservation|arriere pensee|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +mental retardation|1 +(noun)|retardation|backwardness|slowness|subnormality|stupidity +mental soundness|1 +(noun)|mental balance|mental health +mental state|1 +(noun)|psychological state|condition|status +mental strain|1 +(noun)|strain|nervous strain|nervousness|nerves +mental synthesis|1 +(noun)|construction|thinking|thought|cerebration|intellection|mentation +mental telepathist|1 +(noun)|telepathist|thought-reader|mind reader|communicator +mental test|1 +(noun)|test|mental testing|psychometric test|mental measurement +mental testing|1 +(noun)|test|mental test|psychometric test|mental measurement +mental unsoundness|1 +(noun)|derangement|unbalance|insanity +mentalism|1 +(noun)|philosophical doctrine|philosophical theory +mentality|2 +(noun)|outlook|mindset|mind-set|attitude|mental attitude +(noun)|brain|brainpower|learning ability|mental capacity|wit|intelligence +mentally ill|1 +(adj)|unsound|unstable|insane +mentally retarded|1 +(noun)|people +mentation|1 +(noun)|thinking|thought|cerebration|intellection|higher cognitive process +mentha|1 +(noun)|Mentha|genus Mentha|asterid dicot genus +mentha aquatica|1 +(noun)|water-mint|water mint|Mentha aquatica|mint +mentha arvensis|1 +(noun)|corn mint|field mint|Mentha arvensis|mint +mentha citrata|1 +(noun)|bergamot mint|lemon mint|eau de cologne mint|Mentha citrata|mint +mentha longifolia|1 +(noun)|horsemint|Mentha longifolia|mint +mentha piperita|1 +(noun)|peppermint|Mentha piperita|mint +mentha pulegium|1 +(noun)|pennyroyal|Mentha pulegium|mint +mentha rotundifolia|1 +(noun)|apple mint|applemint|Mentha rotundifolia|Mentha suaveolens|mint +mentha spicata|1 +(noun)|spearmint|Mentha spicata|mint +mentha suaveolens|1 +(noun)|apple mint|applemint|Mentha rotundifolia|Mentha suaveolens|mint +menthol|1 +(noun)|lotion|application +mentholated|1 +(adj)|lotion|application +mentholated salve|1 +(noun)|ointment|unction|unguent|balm|salve +menticirrhus|1 +(noun)|Menticirrhus|genus Menticirrhus|fish genus +menticirrhus americanus|1 +(noun)|king whiting|Menticirrhus americanus|whiting +menticirrhus littoralis|1 +(noun)|silver whiting|Menticirrhus littoralis|whiting +menticirrhus saxatilis|1 +(noun)|northern whiting|Menticirrhus saxatilis|whiting +menticirrhus undulatus|1 +(noun)|corbina|Menticirrhus undulatus|whiting +mention|6 +(noun)|reference|remark|comment +(noun)|citation|acknowledgment|credit|reference|quotation|note|annotation|notation +(noun)|honorable mention|award|accolade|honor|honour|laurels +(verb)|advert|bring up|cite|name|refer|think of|have in mind|mean +(verb)|note|observe|remark|state|say|tell +(verb)|cite|notice|acknowledge +mentioner|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +mentor|2 +(noun)|wise man|intellectual|intellect +(verb)|teach|learn|instruct +mentum|3 +(noun)|plant part|plant structure +(noun)|chin|feature|lineament +(noun)|body part +mentzelia|1 +(noun)|Mentzelia|genus Mentzelia|dilleniid dicot genus +mentzelia laevicaulis|1 +(noun)|blazing star|Mentzelia livicaulis|Mentzelia laevicaulis|flower +mentzelia lindleyi|1 +(noun)|bartonia|Mentzelia lindleyi|flower +mentzelia livicaulis|1 +(noun)|blazing star|Mentzelia livicaulis|Mentzelia laevicaulis|flower +menu|4 +(noun)|bill of fare|card|carte du jour|carte|bill +(noun)|fare +(noun)|computer menu|list|listing +(noun)|fare|agenda|docket|schedule +menuhin|1 +(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist|fiddler +menura|1 +(noun)|Menura|genus Menura|bird genus +menurae|1 +(noun)|Menurae|suborder Menurae|animal order +menuridae|1 +(noun)|Menuridae|family Menuridae|bird family +menyanthaceae|1 +(noun)|Menyanthaceae|family Menyanthaceae|buckbean family|dicot family|magnoliopsid family +menyanthes|1 +(noun)|Menyanthes|genus Menyanthes|dicot genus|magnoliopsid genus +menyanthes trifoliata|1 +(noun)|water shamrock|buckbean|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +menziesia|1 +(noun)|Menziesia|genus Menziesia|dilleniid dicot genus +menziesia ferruginea|1 +(noun)|false azalea|fool's huckleberry|Menziesia ferruginea|shrub|bush +menziesia pilosa|1 +(noun)|minniebush|minnie bush|Menziesia pilosa|shrub|bush +meow|2 +(noun)|mew|miaou|miaow|cry +(verb)|mew|utter|emit|let out|let loose +mepacrine|1 +(noun)|quinacrine|quinacrine hydrochloride|Atabrine|antimalarial|antimalarial drug|vermifuge|anthelmintic|anthelminthic|helminthic +meperidine|1 +(noun)|meperidine hydrochloride|Demerol|narcotic +meperidine hydrochloride|1 +(noun)|meperidine|Demerol|narcotic +mephaquine|1 +(noun)|mefloquine|mefloquine hydrochloride|Larium|Mephaquine|antimalarial|antimalarial drug +mephenytoin|1 +(noun)|Mesantoin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +mephistophelean|1 +(adj)|devilish|diabolic|diabolical|mephistophelian|evil |wicked +mephistopheles|1 +(noun)|Mephistopheles|evil spirit +mephistophelian|1 +(adj)|devilish|diabolic|diabolical|mephistophelean|evil |wicked +mephitic|1 +(adj)|miasmic|malodorous |malodourous +mephitinae|1 +(noun)|Mephitinae|subfamily Mephitinae|mammal family +mephitis|3 +(noun)|gas +(noun)|malodor|malodour|stench|stink|reek|fetor|foetor|smell|odor|odour|olfactory sensation|olfactory perception +(noun)|Mephitis|genus Mephitis|mammal genus +mephitis macroura|1 +(noun)|hooded skunk|Mephitis macroura|skunk|polecat|wood pussy +mephitis mephitis|1 +(noun)|striped skunk|Mephitis mephitis|skunk|polecat|wood pussy +mephobarbital|1 +(noun)|Mebaral|barbiturate|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +meprin|1 +(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +meprobamate|1 +(noun)|Miltown|Equanil|Meprin|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +meq|1 +(noun)|milliequivalent|atomic weight|relative atomic mass +meralgia|1 +(noun)|pain|hurting +merbromine|1 +(noun)|Mercurochrome|antiseptic +mercalli scale|1 +(noun)|Mercalli scale|scale|scale of measurement|graduated table|ordered series +mercantile|3 +(adj)|managed economy +(adj)|mercenary|moneymaking|commercial +(adj)|commercial +mercantile agency|1 +(noun)|commercial agency|agency +mercantile establishment|1 +(noun)|retail store|sales outlet|outlet|place of business|business establishment +mercantile law|1 +(noun)|commercial law|law merchant|law|jurisprudence +mercantile system|1 +(noun)|mercantilism|managed economy +mercantilism|2 +(noun)|mercantile system|managed economy +(noun)|commerce|commercialism|transaction|dealing|dealings +mercaptopurine|1 +(noun)|Purinethol|antimetabolite|immunosuppressant|immunosuppressive drug|immune suppressant drug +mercator|1 +(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer +mercator's projection|1 +(noun)|Mercator projection|Mercator's projection|map projection +mercator projection|1 +(noun)|Mercator projection|Mercator's projection|map projection +merce cunningham|1 +(noun)|Cunningham|Merce Cunningham|dancer|professional dancer|choreographer +mercedario|1 +(noun)|Mercedario|mountain peak +mercenaria|1 +(noun)|Mercenaria|genus Mercenaria|mollusk genus +mercenaria mercenaria|1 +(noun)|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam +mercenary|4 +(adj)|materialistic|worldly-minded|worldly +(adj)|freelance|paid +(adj)|mercantile|moneymaking|commercial +(noun)|soldier of fortune|adventurer|venturer +mercer|2 +(noun)|trader|bargainer|dealer|monger +(noun)|Mercer|John Mercer|manufacturer|producer +mercerise|1 +(verb)|mercerize|process|treat +mercerised|1 +(adj)|mercerized|process|treat +mercerize|1 +(verb)|mercerise|process|treat +mercerized|1 +(adj)|mercerised|process|treat +merchandise|2 +(noun)|wares|product|commodity|trade goods|goods +(verb)|trade +merchandiser|1 +(noun)|merchant|businessperson|bourgeois +merchandising|1 +(noun)|selling|marketing|commerce|commercialism|mercantilism +merchant|1 +(noun)|merchandiser|businessperson|bourgeois +merchant-venturer|1 +(noun)|venturer|merchant|merchandiser +merchant bank|1 +(noun)|acquirer|depository financial institution|bank|banking concern|banking company +merchant marine|2 +(noun)|crew +(noun)|shipping|cargo ships|merchant vessels|conveyance|transport +merchant ship|1 +(noun)|bottom|freighter|merchantman|cargo ship|cargo vessel +merchant vessels|1 +(noun)|shipping|cargo ships|merchant marine|conveyance|transport +merchantability|1 +(noun)|state +merchantable|1 +(adj)|marketable|sellable|vendable|vendible|salable |saleable +merchantman|1 +(noun)|bottom|freighter|merchant ship|cargo ship|cargo vessel +merciful|3 +(adj)|merciful |compassionate|clement|compassionate|humane|kind|soft +(adj)|kind|humane +(adj)|gracious +mercifully|1 +(adv)|with mercy|showing mercy +mercifulness|3 +(noun)|mercy|compassion|compassionateness +(noun)|mercy|humaneness +(noun)|clemency|mercy|lenience|leniency +merciless|1 +(adj)|merciless |unmerciful|cutthroat|fierce|bowelless|mortal|pitiless|remorseless|ruthless|unpitying|tigerish|bloody|hard|inclement|implacable|uncompassionate|unkind +mercilessly|1 +(adv)|pitilessly|unmercifully|remorselessly +mercilessness|2 +(noun)|cruelty|pitilessness|ruthlessness|heartlessness|coldheartedness|hardheartedness +(noun)|unmercifulness|inhumaneness|inhumanity +merckx|1 +(noun)|Merckx|Eddy Merckx|cyclist|bicyclist|bicycler|wheeler +mercouri|1 +(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress +mercurial|4 +(adj)|erratic|fickle|quicksilver|changeable |changeful +(adj)|Mercurial|inferior planet +(adj)|Mercurial|Roman deity +(adj)|metallic element|metal +mercurial ointment|1 +(noun)|ointment|unction|unguent|balm|salve +mercurialis|1 +(noun)|Mercurialis|genus Mercurialis|rosid dicot genus +mercurialis annua|1 +(noun)|herb mercury|herbs mercury|boys-and-girls|Mercurialis annua|herb|herbaceous plant +mercurialis perennis|1 +(noun)|dog's mercury|dog mercury|Mercurialis perennis|herb|herbaceous plant +mercuric|1 +(adj)|mercurous|metallic element|metal +mercuric chloride|1 +(noun)|mercury chloride|bichloride of mercury|corrosive sublimate|sublimate +mercurochrome|1 +(noun)|merbromine|Mercurochrome|antiseptic +mercurous|1 +(adj)|mercuric|metallic element|metal +mercurous chloride|1 +(noun)|calomel|chloride +mercury|4 +(noun)|quicksilver|hydrargyrum|Hg|atomic number 80|metallic element|metal +(noun)|Mercury|Roman deity +(noun)|Mercury|inferior planet +(noun)|temperature +mercury-in-glass clinical thermometer|1 +(noun)|clinical thermometer|mercury thermometer|mercury-in-glass thermometer +mercury-in-glass thermometer|1 +(noun)|mercury thermometer|thermometer +mercury-vapor lamp|1 +(noun)|ultraviolet lamp|ultraviolet source +mercury barometer|1 +(noun)|barometer +mercury cell|1 +(noun)|voltaic cell|galvanic cell|primary cell +mercury chloride|1 +(noun)|mercuric chloride|bichloride of mercury|corrosive sublimate|sublimate +mercury fulminate|1 +(noun)|fulminate of mercury|fulminating mercury|fulminate +mercury poisoning|1 +(noun)|poisoning|toxic condition|intoxication +mercury program|1 +(noun)|Mercury program|space program +mercury thermometer|1 +(noun)|mercury-in-glass thermometer|thermometer +mercy|5 +(noun)|clemency|mercifulness|lenience|leniency +(noun)|mercifulness|humaneness +(noun)|mercifulness|compassion|compassionateness +(noun)|blessing|boon +(noun)|relief|succor|succour|ministration +mercy killing|1 +(noun)|euthanasia|killing|kill|putting to death +mercy seat|2 +(noun)|throne +(noun)|covering +mere|3 +(adj)|specified +(adj)|bare|simple|plain +(noun)|pond|pool +meredith|2 +(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader|civil rights worker|civil rights activist +(noun)|Meredith|George Meredith|novelist|poet +merely|1 +(adv)|simply|just|only|but +merestone|1 +(noun)|meerestone|mearstone|landmark +meretricious|3 +(adj)|woman|adult female +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|tacky|tatty|tawdry|trashy|tasteless +(adj)|gilded|specious|insincere +meretriciously|1 +(adv)|flashily +meretriciousness|2 +(noun)|speciousness|deceptiveness|obliquity +(noun)|flashiness|garishness|gaudiness|loudness|brashness|tawdriness|glitz|tastelessness +merganser|1 +(noun)|fish duck|sawbill|sheldrake|sea duck +merge|3 +(verb)|unify|unite|integrate +(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|change integrity +(verb)|unite|unify|change|alter|modify +merged|1 +(adj)|incorporate|incorporated|integrated|unified|united +mergenthaler|1 +(noun)|Mergenthaler|Ottmar Mergenthaler|inventor|discoverer|artificer +merger|2 +(noun)|amalgamation|uniting|consolidation|integration +(noun)|fusion|unification|union +merger agreement|1 +(noun)|acquisition agreement|contract +merginae|1 +(noun)|Merginae|subfamily Merginae|bird family +merging|4 +(adj)|blending|mingling|blended +(adj)|confluent|convergent +(noun)|meeting|coming together|convergence|converging|convergency +(noun)|confluence|conflux|blend|blending +mergus|1 +(noun)|Mergus|genus Mergus|bird genus +mergus albellus|1 +(noun)|smew|Mergus albellus|merganser|fish duck|sawbill|sheldrake +mergus merganser|1 +(noun)|goosander|Mergus merganser|merganser|fish duck|sawbill|sheldrake +mergus merganser americanus|1 +(noun)|American merganser|Mergus merganser americanus|merganser|fish duck|sawbill|sheldrake +mergus serrator|1 +(noun)|red-breasted merganser|Mergus serrator|merganser|fish duck|sawbill|sheldrake +mericarp|1 +(noun)|carpel +merida|1 +(noun)|Merida|city|metropolis|urban center +meridian|3 +(adj)|hour|time of day +(noun)|Meridian|town +(noun)|longitude|line of longitude|great circle +meridional|2 +(adj)|great circle +(adj)|southern +meringue|1 +(noun)|topping +meringue kiss|1 +(noun)|kiss +merino|1 +(noun)|merino sheep|domestic sheep|Ovis aries +merino sheep|1 +(noun)|merino|domestic sheep|Ovis aries +meriones|1 +(noun)|Meriones|genus Meriones|mammal genus +meriones longifrons|1 +(noun)|sand rat|Meriones longifrons|gerbil|gerbille +meriones unguiculatus|1 +(noun)|tamarisk gerbil|Meriones unguiculatus|gerbil|gerbille +meristem|1 +(noun)|plant tissue +merit|3 +(noun)|virtue|worth +(noun)|deservingness|meritoriousness|worthiness +(verb)|deserve|be +merit badge|1 +(noun)|badge +merit pay|1 +(noun)|wage|pay|earnings|remuneration|salary +merit system|1 +(noun)|system|system of rules +meritable|1 +(adj)|meritorious|worthy +merited|1 +(adj)|merited |condign|deserved|due +meriting|1 +(adj)|deserving|worth|worthy +meritless|1 +(adj)|good-for-nothing|good-for-naught|no-account|no-count|no-good|sorry|worthless +meritocracy|2 +(noun)|social organization|social organisation|social structure|social system|structure +(noun)|political orientation|ideology|political theory +meritocratic|1 +(adj)|social organization|social organisation|social structure|social system|structure +meritorious|1 +(adj)|meritable|worthy +meritoriousness|1 +(noun)|deservingness|merit|worthiness +meriwether lewis|1 +(noun)|Lewis|Meriwether Lewis|explorer|adventurer +merl|1 +(noun)|blackbird|merle|ouzel|ousel|European blackbird|Turdus merula|thrush +merlangus|1 +(noun)|Merlangus|genus Merlangus|fish genus +merlangus merlangus|1 +(noun)|whiting|Merlangus merlangus|Gadus merlangus|gadoid|gadoid fish +merle|1 +(noun)|blackbird|merl|ouzel|ousel|European blackbird|Turdus merula|thrush +merlin|2 +(noun)|Merlin|fictional character|fictitious character|character +(noun)|pigeon hawk|Falco columbarius|falcon +merlon|1 +(noun)|rampart|bulwark|wall +merlot|2 +(noun)|Merlot|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Merlot|red wine +merluccius|1 +(noun)|Merluccius|genus Merluccius|fish genus +merluccius bilinearis|1 +(noun)|silver hake|Merluccius bilinearis|whiting|hake +mermaid|1 +(noun)|imaginary being|imaginary creature +merman|2 +(noun)|Merman|Ethel Merman|singer|vocalist|vocalizer|vocaliser +(noun)|imaginary being|imaginary creature +merodach|1 +(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity +meromelia|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +meronym|1 +(noun)|part name|word +meronymy|1 +(noun)|part to whole relation|semantic relation +meropidae|1 +(noun)|Meropidae|family Meropidae|bird family +merops|1 +(noun)|Merops|genus Merops|bird genus +merostomata|1 +(noun)|Merostomata|class Merostomata|arthropod +merovingian|3 +(adj)|Merovingian|dynasty +(noun)|Merovingian|sovereign|crowned head|monarch +(noun)|Merovingian|Merovingian dynasty|dynasty +merovingian dynasty|1 +(noun)|Merovingian|Merovingian dynasty|dynasty +merozoite|1 +(noun)|sporozoan +merrily|1 +(adv)|happily|mirthfully|gayly|blithely|jubilantly|with happiness +merrimac|1 +(noun)|Merrimac|vessel|watercraft +merrimack|1 +(noun)|Merrimack|Merrimack River|river +merrimack river|1 +(noun)|Merrimack|Merrimack River|river +merriment|2 +(noun)|gaiety|happiness +(noun)|fun|playfulness|diversion|recreation +merriness|1 +(noun)|jocoseness|jocosity|humorousness|levity +merry|3 +(adj)|gay|jocund|jolly|jovial|mirthful|joyous +(adj)|gala|gay|festal|festive|joyous +(adj)|brisk|lively|rattling|snappy|spanking|zippy|energetic +merry-go-round|2 +(noun)|cycle +(noun)|carousel|carrousel|roundabout|whirligig|ride +merry andrew|1 +(noun)|clown|buffoon|comedian|comic +merry bells|1 +(noun)|bellwort|wild oats|flower +merrymaker|1 +(noun)|reveler|reveller|celebrant|celebrator|celebrater +merrymaking|1 +(noun)|conviviality|jollification|celebration|festivity +mertensia|1 +(noun)|Mertensia|genus Mertensia|plant genus +mertensia virginica|1 +(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb|herbaceous plant +merthiolate|1 +(noun)|thimerosal|sodium ethylmercurithiosalicylate|Merthiolate|antiseptic +merton|2 +(noun)|Merton|Thomas Merton|religious|writer|author +(noun)|Merton|Robert Merton|Robert King Merton|sociologist +meryl streep|1 +(noun)|Streep|Meryl Streep|actress +meryta|1 +(noun)|Meryta|genus Meryta|rosid dicot genus +meryta sinclairii|1 +(noun)|puka|Meryta sinclairii|tree +mesa|2 +(noun)|table|tableland|plateau +(noun)|Mesa|city|metropolis|urban center +mesa verde national park|1 +(noun)|Mesa Verde National Park|national park +mesabi range|1 +(noun)|Mesabi Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +mesalliance|1 +(noun)|misalliance +mesantoin|1 +(noun)|mephenytoin|Mesantoin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +mesasamkranti|1 +(noun)|Mesasamkranti|holiday +mescal|2 +(noun)|mezcal|peyote|Lophophora williamsii|cactus +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +mescal bean|1 +(noun)|coral bean|frijolito|frijolillo|Sophora secundiflora|tree +mescal button|1 +(noun)|sacred mushroom|magic mushroom|plant organ +mescaline|1 +(noun)|peyote|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +mesembryanthemum|1 +(noun)|Mesembryanthemum|genus Mesembryanthemum|caryophylloid dicot genus +mesembryanthemum crystallinum|1 +(noun)|ice plant|icicle plant|Mesembryanthemum crystallinum|fig marigold|pebble plant +mesembryanthemum edule|1 +(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent +mesencephalon|1 +(noun)|midbrain|neural structure +mesenchyme|1 +(noun)|mesoderm|mesoblast +mesenteric|1 +(adj)|peritoneum +mesenteric artery|1 +(noun)|arteria mesenterica|artery|arteria|arterial blood vessel +mesenteric plexus|1 +(noun)|plexus mesentericus|nerve plexus +mesenteric vein|1 +(noun)|vena mesenterica|vein|vena|venous blood vessel +mesentery|1 +(noun)|peritoneum +mesh|9 +(noun)|linear unit +(noun)|engagement|meshing|interlocking|contact|impinging|striking +(noun)|mesh topology|topology|network topology +(noun)|net|network|meshing|meshwork|fabric|cloth|material|textile +(noun)|meshing|interlock|interlocking|catch|grab|snatch|snap +(verb)|engage|lock|operate|move|displace +(verb)|interlock|organize|organise|coordinate +(verb)|relate +(verb)|enmesh|ensnarl|entangle|tangle|mat|snarl +mesh topology|1 +(noun)|mesh|topology|network topology +meshed|3 +(adj)|reticulate |reticulated|reticular +(adj)|engaged|intermeshed|geared +(noun)|Mashhad|Meshed|city|metropolis|urban center +meshing|3 +(noun)|engagement|mesh|interlocking|contact|impinging|striking +(noun)|net|network|mesh|meshwork|fabric|cloth|material|textile +(noun)|mesh|interlock|interlocking|catch|grab|snatch|snap +meshuga|1 +(adj)|meshugge|meshugga|meshuggeneh|meshuggener|impractical +meshugaas|1 +(noun)|mishegaas|mishegoss|folly|foolery|tomfoolery|craziness|lunacy|indulgence +meshugga|1 +(adj)|meshugge|meshuga|meshuggeneh|meshuggener|impractical +meshugge|1 +(adj)|meshugga|meshuga|meshuggeneh|meshuggener|impractical +meshuggeneh|2 +(adj)|meshugge|meshugga|meshuga|meshuggener|impractical +(noun)|meshuggener|fool|sap|saphead|muggins|tomfool +meshuggener|2 +(adj)|meshugge|meshugga|meshuga|meshuggeneh|impractical +(noun)|meshuggeneh|fool|sap|saphead|muggins|tomfool +meshwork|1 +(noun)|net|network|mesh|meshing|fabric|cloth|material|textile +mesial|1 +(adj)|mesial |medial|median|sagittal +mesic|2 +(adj)|mesonic|hadron|boson +(adj)|mesic |mesophytic +mesmer|1 +(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor|doc|physician|MD|Dr.|medico +mesmeric|1 +(adj)|hypnotic|mesmerizing|spellbinding|attractive +mesmerise|2 +(verb)|magnetize|mesmerize|magnetise|bewitch|spellbind|charm|influence|tempt +(verb)|hypnotize|hypnotise|mesmerize|sedate|calm|tranquilize|tranquillize|tranquillise +mesmerised|1 +(adj)|fascinated|hypnotized|hypnotised|mesmerized|spellbound|transfixed|enchanted +mesmerism|1 +(noun)|hypnotism|suggestion|influence +mesmerist|1 +(noun)|hypnotist|hypnotizer|hypnotiser|psychologist +mesmerize|2 +(verb)|magnetize|mesmerise|magnetise|bewitch|spellbind|charm|influence|tempt +(verb)|hypnotize|hypnotise|mesmerise|sedate|calm|tranquilize|tranquillize|tranquillise +mesmerized|1 +(adj)|fascinated|hypnotized|hypnotised|mesmerised|spellbound|transfixed|enchanted +mesmerizing|1 +(adj)|hypnotic|mesmeric|spellbinding|attractive +mesne lord|1 +(noun)|Lord|noble|nobleman +mesoamerica|1 +(noun)|Mesoamerica|geographical area|geographic area|geographical region|geographic region +mesoamerican|2 +(adj)|Mesoamerican|American +(noun)|Mesoamerican|American +mesoblast|1 +(noun)|mesoderm|germ layer +mesoblastic|1 +(adj)|mesodermal|germ layer +mesocarp|1 +(noun)|pericarp|seed vessel +mesocolon|1 +(noun)|mesentery +mesocricetus|1 +(noun)|Mesocricetus|genus Mesocricetus|mammal genus +mesocricetus auratus|1 +(noun)|golden hamster|Syrian hamster|Mesocricetus auratus|hamster +mesoderm|1 +(noun)|mesoblast|germ layer +mesodermal|1 +(adj)|mesoblastic|germ layer +mesohippus|1 +(noun)|horse|Equus caballus +mesolithic|2 +(adj)|time period|period of time|period +(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period|period of time|period +mesolithic age|1 +(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period|period of time|period +mesomorph|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +mesomorphic|1 +(adj)|mesomorphic |muscular|athletic +mesomorphy|1 +(noun)|athletic type|body type|somatotype +meson|1 +(noun)|mesotron|hadron|boson +mesonic|1 +(adj)|mesic|hadron|boson +mesophyron|1 +(noun)|glabella|craniometric point +mesophyte|1 +(noun)|mesophytic plant|vascular plant|tracheophyte +mesophytic|1 +(adj)|mesic +mesophytic plant|1 +(noun)|mesophyte|vascular plant|tracheophyte +mesopotamia|1 +(noun)|Mesopotamia|geographical area|geographic area|geographical region|geographic region +mesosphere|1 +(noun)|layer +mesothelioma|1 +(noun)|carcinoma +mesothelium|1 +(noun)|epithelium|epithelial tissue +mesotron|1 +(noun)|meson|hadron|boson +mesozoic|1 +(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era|geological era +mesozoic era|1 +(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era|geological era +mespilus|1 +(noun)|Mespilus|genus Mespilus|rosid dicot genus +mespilus germanica|1 +(noun)|medlar|medlar tree|Mespilus germanica|fruit tree +mesquit|1 +(noun)|mesquite|shrub|bush +mesquite|1 +(noun)|mesquit|shrub|bush +mesquite gum|1 +(noun)|gum +mess|8 +(noun)|messiness|muss|mussiness|disorderliness|disorder +(noun)|fix|hole|jam|muddle|pickle|kettle of fish|difficulty +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|meal|repast +(noun)|mess hall|dining room|dining-room +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(verb)|eat +(verb)|mess up|disorder|disarray +mess-up|1 +(noun)|ballup|balls-up|cockup|mistake|error|fault +mess about|1 +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|tarry|linger|lurk|mill about|mill around|be +mess around|1 +(verb)|putter|potter|tinker|monkey|monkey around|muck about|muck around|work +mess hall|1 +(noun)|mess|dining room|dining-room +mess jacket|1 +(noun)|monkey jacket|shell jacket|jacket +mess kit|1 +(noun)|kit|outfit +mess of pottage|1 +(noun)|value|economic value +mess up|3 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|fuck up|fail|go wrong|miscarry +(verb)|ruffle|ruffle up|rumple|disarrange +(verb)|mess|disorder|disarray +message|5 +(noun)|communication +(noun)|content|subject matter|substance|communication +(verb)|communicate|pass on|pass|put across +(verb)|communicate|pass on|pass|put across +(verb)|communicate +message pad|1 +(noun)|writing pad|pad|pad of paper|tablet +messaging|1 +(noun)|electronic messaging|electronic communication +messenger|1 +(noun)|courier|traveler|traveller +messenger boy|1 +(noun)|errand boy|messenger|courier +messenger rna|1 +(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid|RNA +messiah|3 +(noun)|christ|savior|saviour|rescuer|deliverer +(noun)|Messiah|Son|Word|Logos +(noun)|Messiah|king|male monarch +messiahship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +messianic|1 +(adj)|savior|saviour|rescuer|deliverer +messidor|1 +(noun)|Messidor|Revolutionary calendar month +messily|1 +(adv)|untidily +messina|1 +(noun)|Messina|city|metropolis|urban center|port +messiness|2 +(noun)|mess|muss|mussiness|disorderliness|disorder +(noun)|untidiness|uncleanliness +messmate|1 +(noun)|acquaintance|friend +messuage|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +messy|1 +(adj)|mussy|untidy +mestiza|1 +(noun)|woman|adult female +mestizo|1 +(noun)|ladino|person|individual|someone|somebody|mortal|human|soul +mestranol|1 +(noun)|estrogen|oestrogen +mesua|1 +(noun)|Mesua|genus Mesua|dilleniid dicot genus +mesua ferrea|1 +(noun)|rose chestnut|ironwood|ironwood tree|Mesua ferrea|tree +metabola|1 +(noun)|holometabola|insect +metabolic|2 +(adj)|organic process|biological process +(adj)|metabolic |metabolous +metabolic acidosis|1 +(noun)|acidosis +metabolic alkalosis|1 +(noun)|alkalosis +metabolic disorder|1 +(noun)|disorder|upset +metabolic process|1 +(noun)|metabolism|metastasis|organic process|biological process +metabolic rate|1 +(noun)|rate +metabolise|1 +(verb)|metabolize +metabolism|2 +(noun)|metamorphosis|organic process|biological process +(noun)|metabolic process|metastasis|organic process|biological process +metabolite|1 +(noun)|substance|matter +metabolize|1 +(verb)|metabolise +metabolous|1 +(adj)|metabolic +metacarpal|2 +(adj)|skeletal structure +(noun)|metacarpal bone|bone|os +metacarpal artery|1 +(noun)|arteria metacarpea|artery|arteria|arterial blood vessel +metacarpal bone|1 +(noun)|metacarpal|bone|os +metacarpal vein|1 +(noun)|vena metacarpus|vein|vena|venous blood vessel +metacarpophalangeal joint|1 +(noun)|knuckle|knuckle joint|synovial joint|articulatio synovialis|diarthrosis +metacarpus|1 +(noun)|skeletal structure +metacenter|1 +(noun)|metacentre|intersection|intersection point|point of intersection +metacentre|1 +(noun)|metacenter|intersection|intersection point|point of intersection +metacentric|2 +(adj)|intersection|intersection point|point of intersection +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +metacentric chromosome|1 +(noun)|chromosome +metacyesis|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|pregnancy|gestation|maternity +metadata|1 +(noun)|data|information +metagenesis|1 +(noun)|digenesis|alternation of generations|heterogenesis|xenogenesis +metagrabolised|1 +(adj)|metagrobolized|metagrobolised|metagrabolized|mystified|perplexed +metagrabolized|1 +(adj)|metagrobolized|metagrobolised|metagrabolised|mystified|perplexed +metagrobolised|1 +(adj)|metagrobolized|metagrabolized|metagrabolised|mystified|perplexed +metagrobolized|1 +(adj)|metagrobolised|metagrabolized|metagrabolised|mystified|perplexed +metaknowledge|1 +(noun)|content|cognitive content|mental object +metal|4 +(adj)|metallic |aluminous|aluminiferous|antimonial|argentiferous|auriferous|gold-bearing|bimetal|bimetallic|bronze|gold|golden|gilded|silver|tinny|metallike +(noun)|metallic element|chemical element|element +(noun)|alloy|mixture +(verb)|coat|surface +metal bar|1 +(noun)|ingot|block of metal|block +metal detector|1 +(noun)|detector|sensor|sensing element +metal drum|1 +(noun)|drum|vessel +metal filing|1 +(noun)|filing +metal glove|1 +(noun)|gauntlet|gantlet|glove|gloves +metal money|1 +(noun)|coinage|mintage|specie|currency +metal plating|1 +(noun)|plating|coating|coat +metal saw|1 +(noun)|hacksaw|saw +metal screw|1 +(noun)|screw +metal wood|1 +(noun)|wood +metalanguage|1 +(noun)|language|linguistic communication +metalepsis|1 +(noun)|metonymy +metallic|1 +(adj)|metallic |aluminous|aluminiferous|antimonial|argentiferous|auriferous|gold-bearing|bimetal|bimetallic|bronze|gold|golden|gilded|silver|tinny|metallike +metallic bond|1 +(noun)|chemical bond|bond +metallic element|1 +(noun)|metal|chemical element|element +metallike|1 +(adj)|metallic +metallized dye|1 +(noun)|acid dye +metalloid|1 +(adj)|nonmetallic |nonmetal +metallurgic|1 +(adj)|metallurgical|science|scientific discipline +metallurgical|1 +(adj)|metallurgic|science|scientific discipline +metallurgical engineer|1 +(noun)|metallurgist|engineer|applied scientist|technologist +metallurgist|1 +(noun)|metallurgical engineer|engineer|applied scientist|technologist +metallurgy|1 +(noun)|science|scientific discipline +metalware|1 +(noun)|ware +metalwork|2 +(noun)|work|piece of work +(noun)|metalworking|formation|shaping +metalworker|1 +(noun)|smith|skilled worker|trained worker +metalworking|1 +(noun)|metalwork|formation|shaping +metalworking vise|1 +(noun)|machinist's vise|vise|bench vise +metalworks|3 +(noun)|foundry|factory|mill|manufacturing plant|manufactory +(noun)|metalwork|work|piece of work +(noun)|metalworking|metalwork|formation|shaping +metamathematics|1 +(noun)|pure mathematics +metamere|1 +(noun)|somite|segment +metameric|1 +(adj)|segmental|segmented|divided +metamorphic|2 +(adj)|metamorphous|organic process|biological process +(adj)|metamorphic |epimorphic|hemimetabolous|hemimetabolic|hemimetamorphous|hemimetamorphic|heterometabolous|heterometabolic|holometabolic|holometabolous|metamorphous|changed +metamorphic rock|1 +(noun)|rock|stone +metamorphism|1 +(noun)|geological process|geologic process +metamorphopsia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +metamorphose|2 +(verb)|transfigure|transmogrify|change by reversal|turn|reverse +(verb)|transform|transmute|change +metamorphosis|3 +(noun)|metabolism|organic process|biological process +(noun)|transfiguration|revision|alteration +(noun)|transformation|translation +metamorphous|2 +(adj)|metamorphic|organic process|biological process +(adj)|metamorphic +metaphase|2 +(noun)|phase of cell division +(noun)|phase of cell division +metaphor|1 +(noun)|trope|figure of speech|figure|image +metaphoric|1 +(adj)|metaphorical|figurative |nonliteral +metaphorical|1 +(adj)|metaphoric|figurative |nonliteral +metaphosphoric acid|1 +(noun)|polyphosphoric acid +metaphysical|3 +(adj)|philosophy +(adj)|supernatural +(adj)|theoretical |theoretic +metaphysics|1 +(noun)|philosophy +metaphysis|1 +(noun)|process|outgrowth|appendage +metaplastic anaemia|1 +(noun)|metaplastic anemia|pernicious anemia|pernicious anaemia|malignant anemia|malignant anaemia +metaplastic anemia|1 +(noun)|metaplastic anaemia|pernicious anemia|pernicious anaemia|malignant anemia|malignant anaemia +metaproterenol|1 +(noun)|Alupent|bronchodilator +metarule|1 +(noun)|rule|formula +metasequoia|1 +(noun)|dawn redwood|Metasequoia glyptostrodoides|conifer|coniferous tree +metasequoia glyptostrodoides|1 +(noun)|metasequoia|dawn redwood|Metasequoia glyptostrodoides|conifer|coniferous tree +metastability|1 +(noun)|constancy|stability +metastable|1 +(adj)|constancy|stability +metastasis|2 +(noun)|pathologic process|pathological process +(noun)|metabolism|metabolic process|organic process|biological process +metastasise|1 +(verb)|metastasize|spread|distribute +metastasize|1 +(verb)|metastasise|spread|distribute +metastatic|1 +(adj)|pathologic process|pathological process +metastatic tumor|1 +(noun)|malignant tumor|malignant neoplasm|tumor|tumour|neoplasm|malignancy|malignance +metatarsal|2 +(adj)|skeletal structure +(noun)|bone|os +metatarsal arch|1 +(noun)|arch +metatarsal artery|1 +(noun)|arteria metatarsea|artery|arteria|arterial blood vessel +metatarsal vein|1 +(noun)|vena metatarsus|vein|vena|venous blood vessel +metatarsus|1 +(noun)|skeletal structure +metatheria|1 +(noun)|Metatheria|subclass Metatheria|class +metatherian|1 +(noun)|mammal +metathesis|2 +(noun)|linguistic process +(noun)|double decomposition|double decomposition reaction|chemical reaction|reaction +metaurus river|1 +(noun)|Metaurus River|pitched battle +metazoa|2 +(noun)|Metazoa|subkingdom Metazoa|subkingdom +(noun)|metazoan|animal|animate being|beast|brute|creature|fauna +metazoan|1 +(noun)|animal|animate being|beast|brute|creature|fauna +metchnikoff|1 +(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist +metchnikov|1 +(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist +mete|1 +(noun)|boundary line|border|borderline|delimitation|boundary|bound|bounds +mete out|1 +(verb)|distribute|administer|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give +meted out|1 +(adj)|apportioned|dealt out|doled out|parceled out|distributed +metempsychosis|1 +(noun)|rebirth|phenomenon +metencephalon|1 +(noun)|hindbrain|rhombencephalon +meteor|2 +(noun)|shooting star|light|visible light|visible radiation +(noun)|meteoroid|extraterrestrial object|estraterrestrial body +meteor shower|1 +(noun)|meteor stream|atmospheric phenomenon +meteor stream|1 +(noun)|meteor shower|atmospheric phenomenon +meteor swarm|1 +(noun)|meteoroid|meteor +meteoric|3 +(adj)|meteorologic|meteorological|earth science +(adj)|extraterrestrial object|estraterrestrial body +(adj)|fast +meteorite|1 +(noun)|meteoroid|meteor +meteoritic|1 +(adj)|meteoritical|meteoroid|meteor +meteoritical|1 +(adj)|meteoritic|meteoroid|meteor +meteoroid|1 +(noun)|meteor|extraterrestrial object|estraterrestrial body +meteorologic|1 +(adj)|meteorological|meteoric|earth science +meteorological|1 +(adj)|meteorologic|meteoric|earth science +meteorological balloon|1 +(noun)|balloon +meteorological conditions|1 +(noun)|environmental condition +meteorological observation post|1 +(noun)|weather station|lookout|observation post +meteorological satellite|1 +(noun)|weather satellite|satellite|artificial satellite|orbiter +meteorologist|1 +(noun)|specialist|specializer|specialiser +meteorology|2 +(noun)|weather forecasting|prediction|foretelling|forecasting|prognostication +(noun)|earth science +meteortropism|1 +(noun)|tropism +meter|6 +(noun)|metre|m|metric linear unit +(noun)|measuring instrument|measuring system|measuring device +(noun)|metre|measure|beat|cadence|poetic rhythm|rhythmic pattern|prosody +(noun)|metre|time|rhythmicity +(verb)|quantify|measure +(verb)|stamp +meter maid|1 +(noun)|police matron|policewoman +meter reading|2 +(noun)|reading|indication|datum|data point +(noun)|reading|measurement|measuring|measure|mensuration +meterstick|1 +(noun)|metrestick|rule|ruler +metformin|1 +(noun)|Glucophage|antidiabetic|antidiabetic drug +meth|1 +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +methacholine|1 +(noun)|Mecholyl|medicine|medication|medicament|medicinal drug +methacrylic acid|1 +(noun)|2-methylpropenoic acid|acid +methadon|1 +(noun)|methadone|methadone hydrochloride|dolophine hydrochloride|fixer|synthetic heroin|narcotic +methadone|1 +(noun)|methadone hydrochloride|methadon|dolophine hydrochloride|fixer|synthetic heroin|narcotic +methadone hydrochloride|1 +(noun)|methadone|methadon|dolophine hydrochloride|fixer|synthetic heroin|narcotic +methamphetamine|1 +(noun)|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +methamphetamine hydrochloride|1 +(noun)|methamphetamine|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +methanal|1 +(noun)|formaldehyde|aldehyde|gas +methane|1 +(noun)|methane series|alkane series|alkane|paraffin|gas +methane series|1 +(noun)|alkane series|alkane|paraffin|aliphatic compound +methanogen|1 +(noun)|archaebacteria|archaebacterium|archaeobacteria|archeobacteria +methanol|1 +(noun)|methyl alcohol|wood alcohol|wood spirit|alcohol|fuel +methapyrilene|1 +(noun)|antihistamine +methaqualone|1 +(noun)|Quaalude|sedative-hypnotic|sedative-hypnotic drug +metharbital|1 +(noun)|Gemonil|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +methedrine|1 +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine|pep pill|upper|speed|controlled substance +metheglin|1 +(noun)|mead +methenamine|1 +(noun)|Mandelamine|Urex|antibacterial|antibacterial drug|bactericide +methicillin|1 +(noun)|penicillin +methionine|1 +(noun)|essential amino acid +methocarbamol|1 +(noun)|Robaxin|muscle relaxant +method|1 +(noun)|know-how +method of accounting|1 +(noun)|accounting|accounting system|register +method of choice|1 +(noun)|method +method of fluxions|1 +(noun)|differential calculus|calculus|the calculus|infinitesimal calculus +method of least squares|1 +(noun)|least squares|statistical method|statistical procedure +methodical|1 +(adj)|organized +methodicalness|1 +(noun)|orderliness|regularity +methodism|1 +(noun)|Methodism|Protestantism +methodist|2 +(adj)|Methodist|Wesleyan|Protestant denomination +(noun)|Methodist|Protestant +methodist church|1 +(noun)|Methodist Church|Methodists|Protestant denomination +methodist denomination|1 +(noun)|Methodist denomination|Protestant denomination +methodists|2 +(noun)|Methodist Church|Methodists|Protestant denomination +(noun)|Methodist|Protestant +methodological|1 +(adj)|method +methodological analysis|1 +(noun)|methodology|epistemology +methodology|2 +(noun)|methodological analysis|epistemology +(noun)|method +methotrexate|1 +(noun)|methotrexate sodium|amethopterin|antimetabolite|immunosuppressant|immunosuppressive drug|immune suppressant drug +methotrexate sodium|1 +(noun)|methotrexate|amethopterin|antimetabolite|immunosuppressant|immunosuppressive drug|immune suppressant drug +methuselah|2 +(noun)|Methuselah|patriarch +(noun)|old man|greybeard|graybeard|Methuselah|oldster|old person|senior citizen|golden ager|man|adult male +methyl|1 +(noun)|methyl group|methyl radical|alkyl|alkyl group|alkyl radical +methyl alcohol|1 +(noun)|methanol|wood alcohol|wood spirit|alcohol|fuel +methyl bromide|1 +(noun)|bromide +methyl ethyl ketone|1 +(noun)|butanone|ketone +methyl group|1 +(noun)|methyl|methyl radical|alkyl|alkyl group|alkyl radical +methyl orange|1 +(noun)|azo dye|acid-base indicator +methyl phenol|1 +(noun)|cresol|phenol +methyl radical|1 +(noun)|methyl|methyl group|alkyl|alkyl group|alkyl radical +methyl salicylate|1 +(noun)|birch oil|sweet-birch oil|salicylate +methylated|1 +(adj)|alkyl|alkyl group|alkyl radical +methylated spirit|1 +(noun)|denatured alcohol +methylbenzene|1 +(noun)|toluene|alkylbenzene|solvent|dissolvent|dissolver|dissolving agent|resolvent +methyldopa|1 +(noun)|alpha methyl dopa|Aldomet|antihypertensive|antihypertensive drug +methylene|1 +(noun)|methylene group|methylene radical|group|radical|chemical group +methylene blue|1 +(noun)|methylthionine chloride|stain|thiazine +methylene chloride|1 +(noun)|dichloromethane|chloride +methylene group|1 +(noun)|methylene radical|methylene|group|radical|chemical group +methylene radical|1 +(noun)|methylene group|methylene|group|radical|chemical group +methylenedioxymethamphetamine|1 +(noun)|MDMA|club drug +methylphenidate|1 +(noun)|Ritalin|stimulant|stimulant drug +methyltestosterone|1 +(noun)|androgen|androgenic hormone +methylthionine chloride|1 +(noun)|methylene blue|stain|thiazine +metic|1 +(noun)|foreigner|alien|noncitizen|outlander +metical|1 +(noun)|Mozambique monetary unit +meticorten|1 +(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid|anti-inflammatory|anti-inflammatory drug +meticulosity|1 +(noun)|meticulousness|punctiliousness|scrupulousness|conscientiousness|painstakingness +meticulous|2 +(adj)|punctilious|precise +(adj)|picky|fastidious +meticulousness|1 +(noun)|meticulosity|punctiliousness|scrupulousness|conscientiousness|painstakingness +metier|2 +(noun)|forte|strong suit|long suit|specialty|speciality|strong point|strength|asset|plus +(noun)|medium|occupation|business|job|line of work|line +metis|1 +(noun)|half-breed|breed +metonym|1 +(noun)|word +metonymic|1 +(adj)|metonymical|figurative |nonliteral +metonymical|1 +(adj)|metonymic|figurative |nonliteral +metonymy|1 +(noun)|trope|figure of speech|figure|image +metopion|1 +(noun)|craniometric point +metoprolol|1 +(noun)|Lopressor|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +metralgia|1 +(noun)|pain|hurting +metrazol|1 +(noun)|pentylenetetrazol|pentamethylenetetrazol|Metrazol|medicine|medication|medicament|medicinal drug +metrazol shock|1 +(noun)|metrazol shock therapy|metrazol shock treatment|shock therapy|shock treatment +metrazol shock therapy|1 +(noun)|metrazol shock|metrazol shock treatment|shock therapy|shock treatment +metrazol shock treatment|1 +(noun)|metrazol shock|metrazol shock therapy|shock therapy|shock treatment +metre|3 +(noun)|meter|m|metric linear unit +(noun)|meter|measure|beat|cadence|poetic rhythm|rhythmic pattern|prosody +(noun)|meter|time|rhythmicity +metrestick|1 +(noun)|meterstick|rule|ruler +metric|5 +(adj)|metrical|metric linear unit +(adj)|measured|metrical|rhythmical |rhythmic +(noun)|metric function|function|mathematical function +(noun)|metric unit|unit of measurement|unit +(noun)|system of measurement|measure|quantity|amount +metric capacity unit|1 +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|metric unit|metric +metric function|1 +(noun)|metric|function|mathematical function +metric grain|1 +(noun)|grain|metric weight unit|weight unit +metric hundredweight|1 +(noun)|hundredweight|doppelzentner|centner|metric weight unit|weight unit +metric linear unit|1 +(noun)|linear unit|metric unit|metric +metric space|1 +(noun)|mathematical space|topological space +metric system|1 +(noun)|system of weights and measures +metric ton|1 +(noun)|MT|tonne|t|metric weight unit|weight unit +metric unit|1 +(noun)|metric|unit of measurement|unit +metric weight unit|1 +(noun)|weight unit|mass unit|metric unit|metric +metrical|2 +(adj)|metric|metric linear unit +(adj)|measured|metric|rhythmical |rhythmic +metrical foot|1 +(noun)|foot|metrical unit|meter|metre|measure|beat|cadence +metrical unit|1 +(noun)|metrical foot|foot|meter|metre|measure|beat|cadence +metricate|1 +(verb)|metricize|metricise|metrify|convert|change over +metrication|1 +(noun)|metrification|change +metricise|2 +(verb)|metricize|translate|transform +(verb)|metricize|metrify|metricate|convert|change over +metricize|2 +(verb)|metricise|translate|transform +(verb)|metricise|metrify|metricate|convert|change over +metrics|4 +(noun)|prosody|poetics +(noun)|metric function|metric|function|mathematical function +(noun)|metric unit|metric|unit of measurement|unit +(noun)|system of measurement|metric|measure|quantity|amount +metrification|2 +(noun)|writing|authorship|composition|penning +(noun)|metrication|change +metrify|2 +(verb)|verse|versify|poetize|poetise +(verb)|metricize|metricise|metricate|convert|change over +metritis|1 +(noun)|endometritis|inflammation|redness|rubor +metro|1 +(noun)|subway|tube|underground|railway|railroad|railroad line|railway line|railway system +metrological|1 +(adj)|science|scientific discipline +metrology|1 +(noun)|science|scientific discipline +metronidazole|1 +(noun)|Flagyl|antiprotozoal|antiprotozoal drug +metronome|1 +(noun)|pendulum +metronome marking|1 +(noun)|beats per minute|bpm|M.M.|pace|gait +metronymic|1 +(noun)|matronymic|name +metropolis|2 +(noun)|city|urban center|municipality +(noun)|city|municipality +metropolitan|3 +(adj)|municipality +(noun)|archbishop +(noun)|resident|occupant|occupier +metroptosis|1 +(noun)|descensus uteri|prolapse|prolapsus|descensus +metrorrhagia|1 +(noun)|bleeding|hemorrhage|haemorrhage +metroxylon|1 +(noun)|Metroxylon|genus Metroxylon|monocot genus|liliopsid genus +metroxylon sagu|1 +(noun)|true sago palm|Metroxylon sagu|sago palm +metternich|1 +(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman|solon|national leader +mettle|1 +(noun)|heart|nerve|spunk|courage|courageousness|bravery +mettlesome|2 +(adj)|spirited +(adj)|game|gamy|gamey|gritty|spirited|spunky|brave |courageous|fearless +mettlesomeness|1 +(noun)|high-spiritedness +metycaine|1 +(noun)|piperocaine|piperocaine hydrochloride|Metycaine|spinal anesthetic|spinal anaesthetic +meuniere butter|1 +(noun)|Meuniere butter|lemon butter|butter +meuse|2 +(noun)|Meuse|Meuse River|river +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +meuse-argonne|1 +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +meuse-argonne operation|1 +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +meuse river|2 +(noun)|Meuse|Meuse River|river +(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation|military operation +mevacor|1 +(noun)|lovastatin|Mevacor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +mew|4 +(noun)|meow|miaou|miaow|cry +(noun)|mew gull|sea mew|Larus canus|gull|seagull|sea gull +(verb)|meow|utter|emit|let out|let loose +(verb)|utter|emit|let out|let loose +mew gull|1 +(noun)|mew|sea mew|Larus canus|gull|seagull|sea gull +mewl|1 +(verb)|wail|whimper|pule|cry|weep +mews|3 +(noun)|street +(noun)|meow|mew|miaou|miaow|cry +(noun)|mew|mew gull|sea mew|Larus canus|gull|seagull|sea gull +mexicali|1 +(noun)|Mexicali|city|metropolis|urban center +mexican|2 +(adj)|Mexican|North American country|North American nation +(noun)|Mexican|Central American +mexican-american|1 +(noun)|Mexican-American|Mexicano|Mexican +mexican beaded lizard|1 +(noun)|beaded lizard|Mexican beaded lizard|Heloderma horridum|venomous lizard +mexican bean beetle|1 +(noun)|Mexican bean beetle|bean beetle|Epilachna varivestis|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +mexican black cherry|1 +(noun)|capulin|Mexican black cherry|cherry +mexican capital|1 +(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital +mexican cypress|1 +(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress|cypress tree +mexican fire plant|1 +(noun)|fire-on-the-mountain|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge +mexican flameleaf|1 +(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +mexican freetail bat|1 +(noun)|guano bat|Mexican freetail bat|Tadarida brasiliensis|freetail|free-tailed bat|freetailed bat +mexican green|1 +(noun)|Acapulco gold|Mexican green|cannabis|marijuana|marihuana|ganja +mexican hairless|1 +(noun)|Mexican hairless|dog|domestic dog|Canis familiaris +mexican hat|1 +(noun)|Mexican hat|Ratibida columnaris|wildflower|wild flower +mexican husk tomato|2 +(noun)|tomatillo|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry|husk tomato +(noun)|tomatillo|husk tomato|Mexican husk tomato|solanaceous vegetable +mexican hyssop|1 +(noun)|Mexican hyssop|Agastache mexicana|giant hyssop +mexican jumping bean|1 +(noun)|jumping bean|jumping seed|Mexican jumping bean|seed +mexican juniper|1 +(noun)|Mexican juniper|drooping juniper|Juniperus flaccida|juniper +mexican mint|1 +(noun)|Mexican mint|Salvia divinorum|sage|salvia +mexican monetary unit|1 +(noun)|Mexican monetary unit|monetary unit +mexican nut pine|1 +(noun)|pinon pine|Mexican nut pine|Pinus cembroides|nut pine +mexican onyx|1 +(noun)|alabaster|oriental alabaster|onyx marble|Mexican onyx|calcite +mexican peso|1 +(noun)|Mexican peso|peso|Mexican monetary unit +mexican pocket mouse|1 +(noun)|Mexican pocket mouse|Liomys irroratus|pocket mouse +mexican poppy|1 +(noun)|Mexican poppy|Argemone mexicana|prickly poppy|argemone|white thistle|devil's fig +mexican revolution|1 +(noun)|Mexican Revolution|revolution +mexican spanish|1 +(noun)|Mexican Spanish|Spanish +mexican standoff|1 +(noun)|Mexican standoff|situation +mexican sunflower|1 +(noun)|Mexican sunflower|tithonia|flower +mexican swamp cypress|1 +(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress +mexican tea|2 +(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot +(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot +mexican tulip poppy|1 +(noun)|golden cup|Mexican tulip poppy|Hunnemania fumariifolia|poppy +mexican valium|1 +(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|circle|flunitrazepan|Rohypnol +mexican war|1 +(noun)|Mexican War|war|warfare +mexicano|1 +(noun)|Mexican-American|Mexicano|Mexican +mexico|1 +(noun)|Mexico|United Mexican States|North American country|North American nation +mexico city|1 +(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital +mexiletine|1 +(noun)|Mexitil|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +mexitil|1 +(noun)|mexiletine|Mexitil|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +meyer guggenheim|1 +(noun)|Guggenheim|Meyer Guggenheim|industrialist +meyerbeer|1 +(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer +meyerhof|1 +(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist +mezcal|1 +(noun)|mescal|peyote|Lophophora williamsii|cactus +mezereon|1 +(noun)|February daphne|Daphne mezereum|daphne +mezereum|1 +(noun)|bark +mezuza|1 +(noun)|mezuzah|section|subdivision +mezuzah|1 +(noun)|mezuza|section|subdivision +mezzanine|2 +(noun)|first balcony|balcony +(noun)|mezzanine floor|floor|level|storey|story +mezzanine floor|1 +(noun)|mezzanine|floor|level|storey|story +mezzo|2 +(noun)|mezzo-soprano|soprano +(noun)|mezzo-soprano|singing voice +mezzo-relievo|1 +(noun)|mezzo-rilievo|half-relief|relief|relievo|rilievo|embossment|sculptural relief +mezzo-rilievo|1 +(noun)|mezzo-relievo|half-relief|relief|relievo|rilievo|embossment|sculptural relief +mezzo-soprano|2 +(noun)|mezzo|soprano +(noun)|mezzo|singing voice +mezzotint|1 +(noun)|print +mf|1 +(noun)|medium frequency|MF|radio frequency +mfa|1 +(noun)|Master of Fine Arts|MFA|master's degree +mflop|1 +(noun)|megaflop|MFLOP|million floating point operations per second|unit of measurement|unit +mg|2 +(noun)|milligram|metric weight unit|weight unit +(noun)|magnesium|Mg|atomic number 12|metallic element|metal +mho|1 +(noun)|siemens|reciprocal ohm|S|conductance unit +mhz|1 +(noun)|megahertz|MHz|megacycle per second|megacycle|Mc|rate +mi|8 +(noun)|myocardial infarction|myocardial infarct|MI|infarct|infarction +(noun)|nautical mile|naut mi|mile|geographical mile|Admiralty mile|nautical linear unit +(noun)|nautical mile|mile|naut mi|knot|international nautical mile|air mile|nautical linear unit +(noun)|mile|statute mile|stat mi|land mile|linear unit +(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state +(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency +(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency +(noun)|solfa syllable +miami|2 +(noun)|Miami|Algonquian|Algonquin +(noun)|Miami|city|metropolis|urban center|port of entry|point of entry +miami beach|1 +(noun)|Miami Beach|city|metropolis|urban center +miaou|2 +(noun)|meow|mew|miaow|cry +(verb)|miaow|utter|emit|let out|let loose +miaow|2 +(noun)|meow|mew|miaou|cry +(verb)|miaou|utter|emit|let out|let loose +miasma|2 +(noun)|atmosphere|ambiance|ambience +(noun)|air pollution +miasmal|1 +(adj)|miasmic|vaporous|cloudy +miasmic|2 +(adj)|mephitic|malodorous |malodourous +(adj)|miasmal|vaporous|cloudy +mica|1 +(noun)|isinglass|mineral|transparent substance|translucent substance +micah|2 +(noun)|Micah|Micheas|prophet +(noun)|Micah|Micheas|Book of Micah|book +micawber|1 +(noun)|Micawber|Wilkins Micawber|fictional character|fictitious character|character +micelle|1 +(noun)|particle +michael|1 +(noun)|Michael|archangel +michael assat|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +michael ellis de bakey|1 +(noun)|De Bakey|Michael Ellis De Bakey|surgeon|operating surgeon|sawbones +michael faraday|1 +(noun)|Faraday|Michael Faraday|chemist|physicist +michael gerald tyson|1 +(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter|gladiator +michael jackson|1 +(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer|vocalist|vocalizer|vocaliser +michael joe jackson|1 +(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer|vocalist|vocalizer|vocaliser +michael ondaatje|1 +(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer|author +michael philip jagger|1 +(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star +michaelmas|1 +(noun)|Michaelmas|Michaelmas Day|September 29|quarter day +michaelmas daisy|1 +(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster +michaelmas day|1 +(noun)|Michaelmas|Michaelmas Day|September 29|quarter day +michaelmastide|1 +(noun)|Michaelmastide|season +micheas|2 +(noun)|Micah|Micheas|prophet +(noun)|Micah|Micheas|Book of Micah|book +michel de notredame|1 +(noun)|Nostradamus|Michel de Notredame|astrologer|astrologist +michel eyquem montaigne|1 +(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer|author +michel montaigne|1 +(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer|author +michel ney|1 +(noun)|Ney|Michel Ney|Duc d'Elchingen|general|full general|marshal|marshall +michelangelesque|1 +(adj)|Michelangelesque|sculptor|sculpturer|carver|statue maker|old master|architect|designer +michelangelo|1 +(noun)|Michelangelo|Michelangelo Buonarroti|sculptor|sculpturer|carver|statue maker|old master|architect|designer +michelangelo buonarroti|1 +(noun)|Michelangelo|Michelangelo Buonarroti|sculptor|sculpturer|carver|statue maker|old master|architect|designer +michelangelo merisi da caravaggio|1 +(noun)|Caravaggio|Michelangelo Merisi da Caravaggio|old master +michelson|1 +(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist +michelson-morley experiment|1 +(noun)|Michelson-Morley experiment|experiment|experimentation +michener|1 +(noun)|Michener|James Michener|James Albert Michener|writer|author +michigan|3 +(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state +(noun)|Lake Michigan|Michigan|lake +(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game|cards +michigan lily|1 +(noun)|Michigan lily|Lilium michiganense|lily +michigander|1 +(noun)|Michigander|Wolverine|American +michinomiya hirohito|1 +(noun)|Hirohito|Michinomiya Hirohito|Emperor +mick|1 +(noun)|Paddy|Mick|Mickey|Irishman +mick jagger|1 +(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star +mickey|1 +(noun)|Paddy|Mick|Mickey|Irishman +mickey charles mantle|1 +(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer|baseball player +mickey finn|1 +(noun)|knockout drops|Mickey Finn|chloral hydrate +mickey mantle|1 +(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer|baseball player +mickey mouse|2 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|unimportant +(noun)|Mickey Mouse|fictional animal +mickey spillane|1 +(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer|author +mickle|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +micmac|2 +(noun)|Micmac|Algonquian|Algonquin +(noun)|Micmac|Algonquian|Algonquin|Algonquian language +miconazole|1 +(noun)|Monistat|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +micro|1 +(adj)|small +micro-cook|1 +(verb)|microwave|zap|nuke|cook +micro chip|2 +(noun)|chip|microchip|silicon chip|semiconductor device|semiconductor unit|semiconductor +(noun)| +microbalance|1 +(noun)|balance +microbar|1 +(noun)|barye|bar absolute|pressure unit +microbat|1 +(noun)|carnivorous bat|bat|chiropteran +microbe|1 +(noun)|bug|germ|microorganism +microbial|1 +(adj)|microbic|microorganism +microbic|1 +(adj)|microbial|microorganism +microbiologist|1 +(noun)|biologist|life scientist +microbiology|1 +(noun)|biology|biological science +microbrachia|1 +(noun)|abnormality|abnormalcy|abnormal condition +microbrewery|1 +(noun)|brewery +microcentrum|1 +(noun)|Microcentrum|genus Microcentrum|arthropod genus +microcephalic|1 +(adj)|microcephalous|nanocephalic|abnormality|abnormalcy|abnormal condition +microcephalous|1 +(adj)|microcephalic|nanocephalic|abnormality|abnormalcy|abnormal condition +microcephalus|1 +(noun)|microcephaly|nanocephaly|abnormality|abnormalcy|abnormal condition +microcephaly|1 +(noun)|microcephalus|nanocephaly|abnormality|abnormalcy|abnormal condition +microchip|1 +(noun)|chip|micro chip|silicon chip|semiconductor device|semiconductor unit|semiconductor +microchiroptera|1 +(noun)|Microchiroptera|suborder Microchiroptera|animal order +microcircuit|1 +(noun)|integrated circuit|computer circuit +micrococcaceae|1 +(noun)|Micrococcaceae|family Micrococcaceae|bacteria family +micrococcus|1 +(noun)|Micrococcus|genus Micrococcus|bacteria genus +microcode|1 +(noun)|firmware|code|computer code +microcomputer|1 +(noun)|personal computer|PC|digital computer +microcopy|1 +(verb)|photocopy|run off|xerox +microcosm|1 +(noun)|model|example +microcosmic|1 +(adj)|model|example +microcosmic salt|1 +(noun)|salt +microcrystalline|1 +(adj)|crystalline +microcyte|1 +(noun)|red blood cell|RBC|erythrocyte +microcytic anaemia|1 +(noun)|microcytic anemia|anemia|anaemia +microcytic anemia|1 +(noun)|microcytic anaemia|anemia|anaemia +microcytosis|1 +(noun)|blood disease|blood disorder +microdesmidae|1 +(noun)|Microdesmidae|family Microdesmidae|fish family +microdipodops|1 +(noun)|Microdipodops|genus Microdipodops|mammal genus +microdot|1 +(noun)|photograph|photo|exposure|pic +microeconomic|1 +(adj)|economics|economic science|political economy +microeconomic expert|1 +(noun)|microeconomist|economist|economic expert +microeconomics|1 +(noun)|economics|economic science|political economy +microeconomist|1 +(noun)|microeconomic expert|economist|economic expert +microelectronic|1 +(adj)|electronics +microelectronics|1 +(noun)|electronics +microevolution|1 +(noun)|evolution|phylogeny|phylogenesis +microfiche|1 +(noun)|microfilm +microfilm|2 +(noun)|film|photographic film +(verb)|film +microfossil|1 +(noun)|fossil +microgametophyte|1 +(noun)|gametophyte +microgauss|1 +(noun)|flux density unit +microglia|1 +(noun)|neuroglia|glia +microgliacyte|1 +(noun)|neurogliacyte|neuroglial cell|glial cell +microgram|1 +(noun)|mcg|metric weight unit|weight unit +microgramma|1 +(noun)|Microgramma|genus Microgramma|fern genus +microgramma-piloselloides|1 +(noun)|snake polypody|Microgramma-piloselloides|fern +microhylidae|1 +(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family +micromeria|1 +(noun)|Micromeria|genus Micromeria|asterid dicot genus +micromeria chamissonis|1 +(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb|herbaceous plant +micromeria douglasii|1 +(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb|herbaceous plant +micromeria juliana|1 +(noun)|savory|Micromeria juliana|herb|herbaceous plant +micrometeor|1 +(noun)|micrometeorite|micrometeoroid|meteorite +micrometeoric|1 +(adj)|meteorite +micrometeorite|1 +(noun)|micrometeoroid|micrometeor|meteorite +micrometeoritic|1 +(adj)|meteorite +micrometeoroid|1 +(noun)|micrometeorite|micrometeor|meteorite +micrometer|2 +(noun)|micrometer gauge|micrometer caliper|caliper|calipers|calliper|callipers +(noun)|micron|metric linear unit +micrometer caliper|1 +(noun)|micrometer|micrometer gauge|caliper|calipers|calliper|callipers +micrometer gauge|1 +(noun)|micrometer|micrometer caliper|caliper|calipers|calliper|callipers +micromicron|1 +(noun)|picometer|picometre|metric linear unit +micromillimeter|1 +(noun)|nanometer|nanometre|nm|millimicron|micromillimetre|metric linear unit +micromillimetre|1 +(noun)|nanometer|nanometre|nm|millimicron|micromillimeter|metric linear unit +micromyx|1 +(noun)|Micromyx|genus Micromyx|mammal genus +micromyx minutus|1 +(noun)|harvest mouse|Micromyx minutus|mouse +micron|1 +(noun)|micrometer|metric linear unit +micronase|1 +(noun)|glyburide|DiaBeta|Micronase|antidiabetic|antidiabetic drug +micronesia|2 +(noun)|Micronesia|Federated States of Micronesia|TT|country|state|land +(noun)|Micronesia|archipelago +micronor|1 +(noun)|Micronor|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +micronutrient|1 +(noun)|substance|matter +microorganism|1 +(noun)|organism|being +micropaleontology|1 +(noun)|paleontology|palaeontology|fossilology +micropenis|1 +(noun)|microphallus|penis|phallus|member +microphage|1 +(noun)|neutrophil|neutrophile +microphallus|1 +(noun)|micropenis|penis|phallus|member +microphone|1 +(noun)|mike|electro-acoustic transducer +microphone boom|1 +(noun)|boom|pole +microphoning|1 +(noun)|transduction +microphotometer|1 +(noun)|densitometer +micropogonias|1 +(noun)|Micropogonias|genus Micropogonias|fish genus +micropogonias undulatus|1 +(noun)|Atlantic croaker|Micropogonias undulatus|croaker +microprocessor|1 +(noun)|chip|microchip|micro chip|silicon chip +micropterus|1 +(noun)|Micropterus|genus Micropterus|fish genus +micropterus dolomieu|1 +(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass +micropterus pseudoplites|1 +(noun)|Kentucky black bass|spotted black bass|Micropterus pseudoplites|black bass +micropterus salmoides|1 +(noun)|largemouth|largemouth bass|largemouthed bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass +micropylar|1 +(adj)|aperture +micropyle|1 +(noun)|aperture +microradian|1 +(noun)|angular unit +microscope|1 +(noun)|magnifier +microscope slide|1 +(noun)|slide|plate glass|sheet glass +microscope stage|1 +(noun)|stage|platform +microscopic|4 +(adj)|microscopical|research +(adj)|microscopic |microscopical|small|atomic|atomlike|minute|subatomic|subgross +(adj)|precise +(adj)|infinitesimal|minute|small +microscopic anatomy|1 +(noun)|anatomy|general anatomy +microscopic field|1 +(noun)|field|field of view +microscopical|2 +(adj)|microscopic|research +(adj)|microscopic |small|atomic|atomlike|minute|subatomic|subgross +microscopist|1 +(noun)|scientist|man of science +microscopium|1 +(noun)|Microscopium|constellation +microscopy|1 +(noun)|research +microsecond|1 +(noun)|time unit|unit of time +microseism|1 +(noun)|tremor|earth tremor|earthquake|quake|temblor|seism +microsoft disk operating system|1 +(noun)|MS-DOS|Microsoft disk operating system|DOS|disk operating system +microsomal|1 +(adj)|granule +microsome|1 +(noun)|granule +microsorium|1 +(noun)|Microsorium|genus Microsorium|fern genus +microsorium punctatum|1 +(noun)|climbing bird's nest fern|Microsorium punctatum|fern +microsporangium|1 +(noun)|sporangium|spore case|spore sac +microspore|1 +(noun)|spore +microsporidian|1 +(noun)|sporozoan +microsporophyll|1 +(noun)|sporophyll|sporophyl +microsporum|1 +(noun)|Microsporum|genus Microsporum|fungus genus +microstomus|1 +(noun)|Microstomus|genus Microstomus|fish genus +microstomus kitt|1 +(noun)|lemon sole|Microstomus kitt|righteye flounder|righteyed flounder +microstrobos|1 +(noun)|Microstrobos|genus Microstrobos|gymnosperm genus +microstrobos niphophilus|1 +(noun)|Tasman dwarf pine|Microstrobos niphophilus|shrub|bush +microsurgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +microtome|1 +(noun)|scientific instrument +microtubule|1 +(noun)|tubule +microtus|1 +(noun)|Microtus|genus Microtus|mammal genus +microtus ochrogaster|1 +(noun)|prairie vole|Microtus ochrogaster|vole|field mouse +microtus pennsylvaticus|1 +(noun)|meadow vole|meadow mouse|Microtus pennsylvaticus|vole|field mouse +microtus richardsoni|1 +(noun)|water vole|Richardson vole|Microtus richardsoni|vole|field mouse +microvolt|1 +(noun)|potential unit +microwave|3 +(noun)|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +(noun)|microwave oven|kitchen appliance +(verb)|micro-cook|zap|nuke|cook +microwave bomb|1 +(noun)|E-bomb|bomb +microwave diathermy machine|1 +(noun)|diathermy machine +microwave linear accelerator|1 +(noun)|linear accelerator|linac +microwave oven|1 +(noun)|microwave|kitchen appliance +microwave radar|1 +(noun)|radar|radio detection and ranging|radiolocation|measuring instrument|measuring system|measuring device +microwave spectroscopy|1 +(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis +microwave spectrum|1 +(noun)|spectrum +micruroides|1 +(noun)|Micruroides|genus Micruroides|reptile genus +micruroides euryxanthus|1 +(noun)|western coral snake|Micruroides euryxanthus|coral snake|harlequin-snake|New World coral snake +micrurus|1 +(noun)|Micrurus|genus Micrurus|reptile genus +micrurus fulvius|1 +(noun)|eastern coral snake|Micrurus fulvius|coral snake|harlequin-snake|New World coral snake +micturate|1 +(verb)|make|urinate|piddle|puddle|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +micturition|1 +(noun)|urination|elimination|evacuation|excretion|excreting|voiding +micturition reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +mid|1 +(adj)|middle +mid-april|1 +(noun)|mid-April|time period|period of time|period +mid-atlantic|1 +(adj)|middle Atlantic|mid-Atlantic|eastern +mid-atlantic states|1 +(noun)|Mid-Atlantic states|geographical area|geographic area|geographical region|geographic region +mid-august|1 +(noun)|mid-August|time period|period of time|period +mid-december|1 +(noun)|mid-December|time period|period of time|period +mid-eighties|1 +(noun)|eighties|time of life +mid-february|1 +(noun)|mid-February|time period|period of time|period +mid-fifties|1 +(noun)|fifties|time of life +mid-forties|1 +(noun)|forties|time of life +mid-january|1 +(noun)|mid-January|time period|period of time|period +mid-july|1 +(noun)|mid-July|time period|period of time|period +mid-june|1 +(noun)|mid-June|time period|period of time|period +mid-march|1 +(noun)|mid-March|time period|period of time|period +mid-may|1 +(noun)|mid-May|time period|period of time|period +mid-nineties|1 +(noun)|nineties|time of life +mid-november|1 +(noun)|mid-November|time period|period of time|period +mid-october|1 +(noun)|mid-October|time period|period of time|period +mid-off|1 +(noun)|position +mid-on|1 +(noun)|position +mid-september|1 +(noun)|mid-September|time period|period of time|period +mid-seventies|1 +(noun)|seventies|time of life +mid-sixties|1 +(noun)|sixties|time of life +mid-thirties|1 +(noun)|thirties|thirty-something|time of life +mid-twenties|1 +(noun)|twenties|time of life +mid-water|1 +(noun)|body of water|water +midafternoon|1 +(noun)|day|daytime|daylight +midair|1 +(noun)|point +midas|1 +(noun)|Midas|mythical being +midas touch|1 +(noun)|Midas touch|ability +midazolam|1 +(noun)|Versed|benzodiazepine +midbrain|1 +(noun)|mesencephalon|neural structure +midday|1 +(noun)|noon|twelve noon|high noon|noonday|noontide|hour|time of day +midden|2 +(noun)|eitchen midden|kitchen midden|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +(noun)|dunghill|muckheap|muckhill|pile|heap|mound|cumulus +middle|9 +(adj)|in-between|mediate|intermediate +(adj)|center|halfway|midway|central +(adj)|middle +(adj)|middle |intervening|mid +(noun)|center|centre|heart|eye|area|country +(noun)|part|section|division +(noun)|midriff|midsection|area|region +(noun)|point|point in time +(verb)|put|set|place|pose|position|lay +middle-aged|1 +(adj)|old +middle-aged man|1 +(noun)|man|adult male +middle-class|1 +(adj)|middle-class |bourgeois|bourgeois|conservative|materialistic|lower-middle-class|upper-middle-class +middle-ear deafness|1 +(noun)|conductive hearing loss|conduction deafness|hearing impairment|hearing disorder +middle-level|1 +(adj)|inferior +middle-of-the-road|2 +(adj)|centrist|center +(adj)|moderate +middle age|1 +(noun)|time of life +middle ages|2 +(noun)|Middle Ages|Dark Ages|historic period|age +(noun)|middle age|time of life +middle atlantic|1 +(adj)|middle Atlantic|mid-Atlantic|eastern +middle buster|1 +(noun)|lister|lister plow|lister plough|middlebreaker|moldboard plow|mouldboard plough +middle c|1 +(noun)|middle C|note|musical note|tone +middle cerebral artery|1 +(noun)|cerebral artery|arteria cerebri +middle cerebral vein|1 +(noun)|vena cerebri media|cerebral vein|vena cerebri +middle class|1 +(noun)|bourgeoisie|class|social class|socio-economic class +middle distance|1 +(noun)|view|aspect|prospect|scene|vista|panorama +middle ear|1 +(noun)|tympanic cavity|tympanum|cavity|bodily cavity|cavum +middle east|1 +(noun)|Middle East|Mideast|Near East|geographical area|geographic area|geographical region|geographic region +middle eastern|1 +(adj)|Middle Eastern|geographical area|geographic area|geographical region|geographic region +middle english|1 +(noun)|Middle English|English|English language +middle finger|1 +(noun)|finger +middle greek|1 +(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek|Hellenic|Hellenic language +middle high german|1 +(noun)|Middle High German|German|High German|German language +middle irish|1 +(noun)|Middle Irish|Irish|Irish Gaelic +middle low german|1 +(noun)|Middle Low German|Low German|Plattdeutsch +middle meningeal artery|1 +(noun)|meningeal artery|arteria meningea +middle name|1 +(noun)|name +middle of the roader|1 +(noun)|centrist|moderate|moderationist|adult|grownup +middle paleolithic|1 +(noun)|Middle Paleolithic|time period|period of time|period +middle school|1 +(noun)|secondary school|lyceum|lycee|Gymnasium|school +middle temporal vein|1 +(noun)|temporal vein|vena temporalis +middle term|1 +(noun)|term +middle thyroid vein|1 +(noun)|thyroid vein|vena thyroidea +middle watch|1 +(noun)|graveyard watch|midwatch|night watch|watch +middle west|1 +(noun)|Midwest|Middle West|geographical area|geographic area|geographical region|geographic region +middlebreaker|1 +(noun)|lister|lister plow|lister plough|middle buster|moldboard plow|mouldboard plough +middlebrow|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +middleman|3 +(noun)|jobber|wholesaler|distributor|distributer +(noun)|interlocutor|minstrel +(noun)|contact|representative +middlemost|1 +(adj)|midmost|central +middleton|1 +(noun)|Middleton|Thomas Middleton|dramatist|playwright|pamphleteer +middleweight|4 +(adj)|heavy +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +(noun)|prizefighter|gladiator +middling|3 +(adj)|average|fair|mediocre|ordinary +(noun)|commodity|trade goods|goods +(adv)|reasonably|moderately|within reason|somewhat|fairly|passably +middy|1 +(noun)|middy blouse|blouse +middy blouse|1 +(noun)|middy|blouse +mideast|1 +(noun)|Middle East|Mideast|Near East|geographical area|geographic area|geographical region|geographic region +midfield|1 +(noun)|center|centre|middle|heart|eye +midgard|1 +(noun)|Midgard|imaginary place|mythical place +midge|1 +(noun)|gnat +midget|2 +(adj)|bantam|diminutive|lilliputian|petite|tiny|flyspeck|small +(noun)|dwarf|nanus|small person +midgrass|1 +(noun)|grass +midi|3 +(adj)|midi +(noun)|Midi|geographical area|geographic area|geographical region|geographic region +(noun)|musical instrument digital interface|MIDI|protocol|communications protocol +midi-pyrenees|1 +(noun)|Midi-Pyrenees|French region +midinette|1 +(noun)|salesgirl|saleswoman|saleslady +midiron|1 +(noun)|two iron|iron +midland|3 +(adj)|interior|upcountry|inland +(noun)|Midland|town +(noun)|inside|interior +midline|1 +(noun)|midplane|plane|sheet +midmost|2 +(adj)|middlemost|central +(adv)|in the midst|in the middle +midnight|1 +(noun)|hour|time of day +midnight sun|1 +(noun)|atmospheric phenomenon +midplane|1 +(noun)|midline|plane|sheet +midpoint|1 +(noun)|center|centre|point +midrib|1 +(noun)|midvein|vein|nervure +midriff|2 +(noun)|middle|midsection|area|region +(noun)|diaphragm|muscular structure|musculature|muscle system|membrane|tissue layer +midsection|1 +(noun)|middle|midriff|area|region +midshipman|1 +(noun)|cadet|plebe +midships|1 +(adv)|amidships|amidship +midst|1 +(noun)|thick|inside|interior +midstream|1 +(noun)|center|centre|middle|heart|eye +midsummer|1 +(noun)|summer solstice|June 21|solstice +midsummer's day|1 +(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day +midsummer-men|1 +(noun)|rose-root|Sedum rosea|sedum +midsummer day|1 +(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day +midsummer eve|1 +(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day +midsummer night|1 +(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day +midterm|3 +(noun)|point|point in time +(noun)|point|point in time +(noun)|midterm examination|midterm exam|examination|exam|test +midterm exam|1 +(noun)|midterm examination|midterm|examination|exam|test +midterm examination|1 +(noun)|midterm exam|midterm|examination|exam|test +midvein|1 +(noun)|midrib|vein|nervure +midwatch|1 +(noun)|graveyard watch|middle watch|night watch|watch +midway|4 +(adj)|center|halfway|middle|central +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|Midway|Battle of Midway|naval battle +(adv)|halfway +midway islands|1 +(noun)|Midway Islands|atoll +midweek|1 +(adj)|midweekly|time period|period of time|period +midweekly|1 +(adj)|midweek|time period|period of time|period +midwest|1 +(noun)|Midwest|Middle West|geographical area|geographic area|geographical region|geographic region +midwestern|1 +(adj)|western +midwife|1 +(noun)|accoucheuse|nurse +midwife toad|2 +(noun)|Alytes cisternasi|frog|toad|toad frog|anuran|batrachian|salientian +(noun)|obstetrical toad|Alytes obstetricans|frog|toad|toad frog|anuran|batrachian|salientian +midwifery|2 +(noun)|obstetrics|OB|tocology|medicine|medical specialty +(noun)|delivery|obstetrical delivery +midwinter|1 +(noun)|time period|period of time|period +mien|1 +(noun)|bearing|comportment|presence|manner|personal manner +mierkat|1 +(noun)|meerkat|viverrine|viverrine mammal +mies van der rohe|1 +(noun)|Mies Van Der Rohe|Ludwig Mies Van Der Rohe|architect|designer +mifepristone|1 +(noun)|abortion pill|RU 486|Mifepristone|abortifacient|aborticide|abortion-inducing drug +miff|2 +(noun)|huff|seeing red|irritation|annoyance|vexation|botheration +(verb)|anger +miffed|1 +(adj)|annoyed|irritated|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stunng|displeased +might|1 +(noun)|mightiness|power|strength +might-have-been|1 +(noun)|event +mightiness|1 +(noun)|might|power|strength +mighty|2 +(adj)|powerful +(adv)|powerful|right +mighty mouse|1 +(noun)|Mighty Mouse|fictional animal +mignonette|1 +(noun)|sweet reseda|Reseda odorata|reseda +mignonette family|1 +(noun)|Resedaceae|family Resedaceae|dilleniid dicot family +migraine|1 +(noun)|megrim|sick headache|hemicrania|headache|head ache|cephalalgia +migrant|2 +(adj)|migratory|unsettled +(noun)|migrator|traveler|traveller +migrant shrike|1 +(noun)|Lanius ludovicianus migrans|shrike +migrate|2 +(verb)|transmigrate|move +(verb)|move +migration|4 +(noun)|motion|movement|move +(noun)|people +(noun)|event +(noun)|periodic event|recurrent event +migration route|1 +(noun)|flyway|path|route|itinerary +migrational|1 +(adj)|motion|movement|move|periodic event|recurrent event|event +migrator|2 +(noun)|migrant|traveler|traveller +(noun)|animal|animate being|beast|brute|creature|fauna +migratory|2 +(adj)|migratory +(adj)|migrant|unsettled +migratory grasshopper|1 +(noun)|locust +migratory locust|1 +(noun)|Locusta migratoria|locust +migratory quail|1 +(noun)|Coturnix coturnix|Coturnix communis|Old World quail +miguel de cervantes|1 +(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer|author|dramatist|playwright +miguel de cervantes saavedra|1 +(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer|author|dramatist|playwright +miguel jose serra|1 +(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary|missioner +mihrab|2 +(noun)|design|pattern|figure +(noun)|recess|niche +mikado|1 +(noun)|tenno|Emperor +mikania|1 +(noun)|Mikania|genus Mikania|asterid dicot genus +mikania scandens|1 +(noun)|climbing hempweed|climbing boneset|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine +mike|1 +(noun)|microphone|electro-acoustic transducer +mike tyson|1 +(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter|gladiator +mikhail aleksandrovich bakunin|1 +(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist|nihilist|syndicalist +mikhail bakunin|1 +(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist|nihilist|syndicalist +mikhail baryshnikov|1 +(noun)|Baryshnikov|Mikhail Baryshnikov|dancer|professional dancer|choreographer +mikhail glinka|1 +(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer +mikhail gorbachev|1 +(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman|solon|national leader +mikhail ilarionovich kutuzov|1 +(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal +mikhail ivanovich glinka|1 +(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer +mikhail ivanovich kalinin|1 +(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman|solon|national leader +mikhail kalinin|1 +(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman|solon|national leader +mikhail sergeyevich gorbachev|1 +(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman|solon|national leader +mikhail yurievich lermontov|1 +(noun)|Lermontov|Mikhail Yurievich Lermontov|writer|author +mikir-meithei|1 +(noun)|Mikir-Meithei|Kamarupan +mikolaj kopernik|1 +(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer|uranologist|stargazer +mikvah|1 +(noun)|bath +mil|4 +(noun)|linear unit +(noun)|Cypriot monetary unit +(noun)|milliliter|millilitre|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit +(noun)|angular unit +milady|1 +(noun)|Milady|Lady|noblewoman|peeress +milage|1 +(noun)|mileage|distance +milan|1 +(noun)|Milan|Milano|city|metropolis|urban center +milanese|1 +(adj)|Milanese|city|metropolis|urban center +milano|1 +(noun)|Milan|Milano|city|metropolis|urban center +milch|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +milch cow|1 +(noun)|dairy cattle|dairy cow|milk cow|milcher|milker|cattle|cows|kine|oxen|Bos taurus +milcher|1 +(noun)|dairy cattle|dairy cow|milch cow|milk cow|milker|cattle|cows|kine|oxen|Bos taurus +mild|3 +(adj)|mild |gentle|mild-mannered|moderate|temperate|moderate|temperate +(adj)|meek|modest|humble +(adj)|balmy|clement +mild-mannered|1 +(adj)|mild +mild silver protein|1 +(noun)|Argyrol|antiseptic +mild steel|1 +(noun)|low-carbon steel|soft-cast steel|steel +mildew|3 +(noun)|mold|spoilage|spoiling +(noun)|fungus +(verb)|mold|change +mildly|1 +(adv)|gently +mildness|2 +(noun)|clemency|good weather +(noun)|lenience|leniency|lenity|mercifulness|mercy +mildred ella didrikson|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +mildred ella didrikson zaharias|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +mile|8 +(noun)|statute mile|stat mi|land mile|mi|linear unit +(noun)|nautical mile|mi|naut mi|knot|international nautical mile|air mile|nautical linear unit +(noun)|large indefinite quantity|large indefinite amount +(noun)|sea mile|nautical linear unit +(noun)|nautical mile|naut mi|mi|geographical mile|Admiralty mile|nautical linear unit +(noun)|Roman mile|linear unit +(noun)|Swedish mile|linear unit +(noun)|track event +mile-high city|1 +(noun)|Denver|Mile-High City|capital of Colorado|state capital +mileage|3 +(noun)|milage|distance +(noun)|fuel consumption rate|gasoline mileage|gas mileage|ratio +(noun)|travel allowance +mileometer|1 +(noun)|odometer|hodometer|milometer|meter +milepost|1 +(noun)|milestone|marker|marking|mark +miler|2 +(noun)|linear unit +(noun)|runner +miles davis|1 +(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician|jazzman +miles dewey davis jr.|1 +(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician|jazzman +miles gloriosus|1 +(noun)|egotist|egoist|swellhead +miles per gallon|1 +(noun)|unit of measurement|unit +miles per hour|2 +(noun)|mph|rate +(noun)|mph|reading|meter reading|indication +miles standish|1 +(noun)|Standish|Miles Standish|Myles Standish|settler|colonist +milestone|2 +(noun)|milepost|marker|marking|mark +(noun)|juncture|occasion +milfoil|1 +(noun)|yarrow|Achillea millefolium|achillea +milhaud|1 +(noun)|Milhaud|Darius Milhaud|composer +miliaria|1 +(noun)|prickly heat|heat rash|rash|roseola|efflorescence|skin rash +miliary fever|1 +(noun)|sweating sickness|infectious disease +miliary tuberculosis|1 +(noun)|tuberculosis|TB|T.B. +milieu|1 +(noun)|surroundings|environment +militainment|1 +(noun)|entertainment|amusement +militance|1 +(noun)|combativeness|militancy|aggressiveness +militancy|1 +(noun)|combativeness|militance|aggressiveness +militant|3 +(adj)|belligerent|fighting|war-ridden|warring|unpeaceful +(adj)|competitive|aggressive +(noun)|activist|reformer|reformist|crusader|meliorist +militant tendency|1 +(noun)|Militant Tendency|party|political party +militarisation|1 +(noun)|mobilization|mobilisation|militarization|social control +militarise|2 +(verb)|militarize|change|alter|modify +(verb)|militarize|change|alter|modify +militarised|1 +(adj)|militarized|armed +militarism|1 +(noun)|hawkishness +militarist|1 +(noun)|warmonger|adult|grownup +militaristic|1 +(adj)|military +militarization|1 +(noun)|mobilization|mobilisation|militarisation|social control +militarize|2 +(verb)|militarise|change|alter|modify +(verb)|militarise|change|alter|modify +militarized|1 +(adj)|militarised|armed +military|4 +(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(adj)|military |militaristic|soldierly|soldierlike|warriorlike|martial|warlike|martial +(adj)|military |martial|combatant|expeditionary|noncombatant +(noun)|armed forces|armed services|military machine|war machine|force|personnel +military-industrial complex|1 +(noun)|vested interest +military academy|1 +(noun)|academy +military action|1 +(noun)|action|group action +military adviser|1 +(noun)|military advisor|adviser|advisor|consultant|military officer|officer +military advisor|1 +(noun)|military adviser|adviser|advisor|consultant|military officer|officer +military attache|1 +(noun)|attache +military band|1 +(noun)|concert band|band +military blockade|1 +(noun)|siege|besieging|beleaguering|blockade|encirclement +military campaign|1 +(noun)|campaign|operation|military operation +military capability|1 +(noun)|military strength|strength|military posture|posture|capability|capableness +military censorship|1 +(noun)|censoring|censorship|security review +military ceremony|2 +(noun)|ceremony|ceremonial|ceremonial occasion|observance +(noun)|ceremony +military chaplain|1 +(noun)|padre|Holy Joe|sky pilot|chaplain +military commission|1 +(noun)|commission|certificate|certification|credential|credentials +military control|1 +(noun)|occupation|social control +military court|1 +(noun)|court|tribunal|judicature +military drill|1 +(noun)|exercise|practice|drill|practice session|recitation +military engineer|1 +(noun)|army engineer|engineer|applied scientist|technologist +military expedition|1 +(noun)|expedition|hostile expedition|campaign|military campaign +military force|1 +(noun)|military unit|military group|force|unit|social unit +military formation|1 +(noun)|formation +military governor|1 +(noun)|governor +military greeting|1 +(noun)|salute|greeting|salutation +military group|1 +(noun)|military unit|military force|force|unit|social unit +military headquarters|1 +(noun)|headquarters|HQ|military installation +military hospital|1 +(noun)|hospital|infirmary +military installation|1 +(noun)|facility|installation +military intelligence|2 +(noun)|intelligence|intelligence service|intelligence agency +(noun)|intelligence|intelligence information +military intelligence section 5|1 +(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency +military intelligence section 6|1 +(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency +military issue|1 +(noun)|issue|government issue|store|stock|fund +military junta|1 +(noun)|junta|clique|coterie|ingroup|inner circle|pack|camp +military law|1 +(noun)|law|jurisprudence +military leader|1 +(noun)|leader +military machine|1 +(noun)|military|armed forces|armed services|war machine|force|personnel +military man|1 +(noun)|serviceman|man|military personnel|skilled worker|trained worker +military march|1 +(noun)|military music|martial music|marching music|march +military mission|1 +(noun)|mission|operation|military operation +military music|1 +(noun)|military march|martial music|marching music|march +military officer|1 +(noun)|officer|serviceman|military man|man|military personnel +military operation|1 +(noun)|operation|activity +military pace|1 +(noun)|linear unit +military personnel|2 +(noun)|soldiery|troops|force|personnel +(noun)|serviceman|military man|man|skilled worker|trained worker +military plane|1 +(noun)|warplane|heavier-than-air craft|military vehicle +military police|1 +(noun)|MP|force|personnel +military policeman|1 +(noun)|MP|lawman|law officer|peace officer +military position|1 +(noun)|position|point +military post|1 +(noun)|post|military installation +military posture|1 +(noun)|military capability|military strength|strength|posture|capability|capableness +military press|1 +(noun)|press|weightlifting +military quarters|1 +(noun)|living quarters|quarters +military rank|1 +(noun)|military rating|paygrade|rating|rank +military rating|1 +(noun)|military rank|paygrade|rating|rank +military reserve|1 +(noun)|reserve|military|armed forces|armed services|military machine|war machine +military science|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +military service|2 +(noun)|armed service|service|force|personnel +(noun)|service +military strength|1 +(noun)|military capability|strength|military posture|posture|capability|capableness +military training|1 +(noun)|training|preparation|grooming +military uniform|1 +(noun)|uniform +military unit|1 +(noun)|military force|military group|force|unit|social unit +military vehicle|1 +(noun)|vehicle +military volunteer|1 +(noun)|volunteer|voluntary|serviceman|military man|man|military personnel +militate|1 +(verb)|influence|act upon|work +militia|2 +(noun)|reserves|military unit|military force|military group|force +(noun)|body +militiaman|1 +(noun)|soldier +milium|1 +(noun)|whitehead|blemish|defect|mar +milk|7 +(noun)|dairy product|beverage|drink|drinkable|potable +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|Milk|Milk River|river +(noun)|foodstuff|food product +(verb)|draw|take out +(verb)|exploit|tap +(verb)|add +milk-vetch|2 +(noun)|milk vetch|woody plant|ligneous plant +(noun)| +milk-white|1 +(adj)|achromatic +milk adder|1 +(noun)|milk snake|house snake|checkered adder|Lampropeltis triangulum|king snake|kingsnake +milk bar|1 +(noun)|snack bar|snack counter|buffet +milk can|1 +(noun)|can|tin|tin can +milk chocolate|1 +(noun)|chocolate +milk cow|1 +(noun)|dairy cattle|dairy cow|milch cow|milcher|milker|cattle|cows|kine|oxen|Bos taurus +milk float|1 +(noun)|van +milk glass|1 +(noun)|opal glass|glass +milk intolerance|1 +(noun)|lactose intolerance|lactase deficiency|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +milk leg|1 +(noun)|white leg|phlegmasia alba dolens|thrombosis +milk of magnesia|1 +(noun)|magnesium hydroxide|purgative|cathartic|physic|aperient +milk powder|1 +(noun)|powdered milk|dry milk|dried milk|milk +milk pox|1 +(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +milk punch|1 +(noun)|punch +milk river|1 +(noun)|Milk|Milk River|river +milk shake|2 +(noun)|milkshake|shake|drink +(noun)| +milk sickness|2 +(noun)|trembles|animal disease +(noun)|disease +milk snake|1 +(noun)|house snake|milk adder|checkered adder|Lampropeltis triangulum|king snake|kingsnake +milk sugar|1 +(noun)|lactose|disaccharide +milk thistle|2 +(noun)|sow thistle|shrub|bush +(noun)|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb|herbaceous plant +milk tooth|1 +(noun)|primary tooth|deciduous tooth|baby tooth|tooth +milk vetch|2 +(noun)|milk-vetch|woody plant|ligneous plant +(noun)| +milk wagon|2 +(noun)|milkwagon|wagon|waggon +(noun)| +milk whey|1 +(noun)|whey|serum|blood serum +milkcap|1 +(noun)|Lactarius delicioso|agaric +milker|1 +(noun)|dairy cattle|dairy cow|milch cow|milk cow|milcher|cattle|cows|kine|oxen|Bos taurus +milking machine|1 +(noun)|machine +milking shorthorn|1 +(noun)|dairy cattle|dairy cow|milch cow|milk cow|milcher|milker +milking stool|1 +(noun)|stool +milkless|1 +(adj)|dry +milklike|1 +(adj)|milky|whitish|opaque +milkmaid|1 +(noun)|dairymaid|farmhand|fieldhand|field hand|farm worker +milkman|1 +(noun)|deliveryman|delivery boy|deliverer +milkshake|1 +(noun)|milk shake|shake|drink +milksop|1 +(noun)|sissy|pantywaist|pansy|Milquetoast|coward +milkwagon|1 +(noun)|milk wagon|wagon|waggon +milkweed|2 +(noun)|silkweed|herb|herbaceous plant +(noun)|Sonchus oleraceus|sow thistle|milk thistle +milkweed butterfly|1 +(noun)|monarch|monarch butterfly|Danaus plexippus|danaid|danaid butterfly +milkweed family|1 +(noun)|Asclepiadaceae|family Asclepiadaceae|dicot family|magnoliopsid family +milkwort|1 +(noun)|subshrub|suffrutex +milkwort family|1 +(noun)|Polygalaceae|family Polygalaceae|rosid dicot family +milky|1 +(adj)|milklike|whitish|opaque +milky way|1 +(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy|extragalactic nebula +milky way galaxy|1 +(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy|extragalactic nebula +milky way system|1 +(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy|extragalactic nebula +mill|9 +(noun)|factory|manufacturing plant|manufactory|plant|works|industrial plant +(noun)|Mill|James Mill|philosopher +(noun)|Mill|John Mill|John Stuart Mill|philosopher|economist|economic expert +(noun)|grinder|machine +(noun)|grind|pulverization|pulverisation|crush|crunch|compaction +(verb)|mill about|mill around|move +(verb)|grind|mash|crunch|bray|comminute +(verb)|groove +(verb)|roll out|roll +mill-girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille|mill-hand|factory worker +mill-hand|1 +(noun)|factory worker|workman|working man|working person +mill about|2 +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill around|be +(verb)|mill|mill around|move +mill agent|1 +(noun)|agent +mill around|2 +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|be +(verb)|mill|mill about|move +millais|1 +(noun)|Millais|Sir John Everett Millais|Pre-Raphaelite +millard fillmore|1 +(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States|United States President|President|Chief Executive +millay|1 +(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess +millboard|1 +(noun)|pasteboard +milldam|1 +(noun)|dam|dike|dyke|levee +milled|1 +(adj)|polished|processed +millenarian|2 +(adj)|chiliastic|time period|period of time|period +(noun)|millenarist|chiliast|optimist +millenarianism|1 +(noun)|millenniumism|chiliasm|theological doctrine|religious doctrine +millenarist|1 +(noun)|millenarian|chiliast|optimist +millenary|2 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +(adj)|large integer +millennial|1 +(adj)|millennian|time period|period of time|period +millennian|1 +(adj)|millennial|time period|period of time|period +millennium|3 +(noun)|time period|period of time|period +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|anniversary|day of remembrance +millenniumism|1 +(noun)|millenarianism|chiliasm|theological doctrine|religious doctrine +millepede|1 +(noun)|millipede|milliped|arthropod +miller|6 +(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader +(noun)|Miller|Henry Miller|Henry Valentine Miller|writer|author +(noun)|Miller|Arthur Miller|dramatist|playwright +(noun)|craftsman|artisan|journeyman|artificer +(noun)|milling machine|shaper|shaping machine +(noun)|moth miller|moth +miller's-thumb|1 +(noun)|sculpin +millerite|1 +(noun)|mineral +millet|3 +(noun)|cereal|cereal grass|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family +(noun)|Millet|Jean Francois Millet|painter +(noun)|grain|food grain|cereal +millettia|1 +(noun)|tree +milliammeter|1 +(noun)|ammeter +milliampere|1 +(noun)|mA|current unit +milliard|1 +(noun)|billion|one thousand million|1000000000 +millibar|1 +(noun)|pressure unit +millicurie|1 +(noun)|radioactivity unit +millidegree|1 +(noun)|temperature unit +milliequivalent|1 +(noun)|meq|atomic weight|relative atomic mass +millifarad|1 +(noun)|capacitance unit +milligram|1 +(noun)|mg|metric weight unit|weight unit +millihenry|1 +(noun)|inductance unit +millikan|1 +(noun)|Millikan|Robert Andrews Millikan|physicist +milliliter|1 +(noun)|millilitre|mil|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit +millilitre|1 +(noun)|milliliter|mil|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit +millime|1 +(noun)|Tunisian monetary unit +millimeter|1 +(noun)|millimetre|mm|metric linear unit +millimeter of mercury|1 +(noun)|torr|mm Hg|pressure unit +millimetre|1 +(noun)|millimeter|mm|metric linear unit +millimicron|1 +(noun)|nanometer|nanometre|nm|micromillimeter|micromillimetre|metric linear unit +milline|1 +(noun)|printing unit +milliner|2 +(noun)|merchant|merchandiser +(noun)|hatmaker|hatter|modiste|maker|shaper +millinery|2 +(noun)|hat shop|shop|store +(noun)|woman's hat|hat|chapeau|lid +milling|1 +(noun)|edge +milling machine|1 +(noun)|miller|shaper|shaping machine +million|2 +(adj)|a million|cardinal +(noun)|1000000|one thousand thousand|meg|large integer +million floating point operations per second|1 +(noun)|megaflop|MFLOP|unit of measurement|unit +million instructions per second|1 +(noun)|MIPS|unit of measurement|unit +millionaire|1 +(noun)|rich person|wealthy person|have +millionairess|1 +(noun)|rich person|wealthy person|have +millionfold|1 +(adv)|a million times +millions|2 +(noun)|billions|trillions|zillions|jillions|large indefinite quantity|large indefinite amount +(noun)|million|1000000|one thousand thousand|meg|large integer +millionth|3 +(adj)|ordinal +(noun)|rank +(noun)|one-millionth|common fraction|simple fraction +milliped|1 +(noun)|millipede|millepede|arthropod +millipede|1 +(noun)|millepede|milliped|arthropod +milliradian|1 +(noun)|angular unit +millisecond|1 +(noun)|msec|time unit|unit of time +millivolt|1 +(noun)|mV|potential unit +millivoltmeter|1 +(noun)|voltmeter +milliwatt|1 +(noun)|power unit +millpond|1 +(noun)|pond|pool +millrace|1 +(noun)|millrun|conduit +millrun|1 +(noun)|millrace|conduit +mills|6 +(noun)|Mills|Robert Mills|architect|designer +(noun)|factory|mill|manufacturing plant|manufactory|plant|works|industrial plant +(noun)|Mill|James Mill|philosopher +(noun)|Mill|John Mill|John Stuart Mill|philosopher|economist|economic expert +(noun)|mill|grinder|machine +(noun)|grind|mill|pulverization|pulverisation|crush|crunch|compaction +millstone|3 +(noun)|albatross|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|load|loading|burden +(noun)|stone +millwheel|1 +(noun)|waterwheel|water wheel +millwork|1 +(noun)|woodwork +millwright|1 +(noun)|wright +milne|1 +(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer|author +milo|1 +(noun)|milo maize|grain sorghum +milo maize|1 +(noun)|milo|grain sorghum +milometer|1 +(noun)|odometer|hodometer|mileometer|meter +milontin|1 +(noun)|phensuximide|Milontin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +milord|1 +(noun)|Lord|noble|nobleman +milquetoast|1 +(noun)|sissy|pantywaist|pansy|milksop|Milquetoast|coward +milt|2 +(noun)|soft roe|seafood +(noun)|semen|seed|seminal fluid|ejaculate|cum +miltiades|1 +(noun)|Miltiades|general|full general +miltomate|1 +(noun)|tomatillo|purple ground cherry|jamberry|Physalis philadelphica|ground cherry|husk tomato +milton|1 +(noun)|Milton|John Milton|poet +milton friedman|1 +(noun)|Friedman|Milton Friedman|economist|economic expert +milton snavely hershey|1 +(noun)|Hershey|Milton Snavely Hershey|confectioner|candymaker|philanthropist|altruist +miltonia|1 +(noun)|Miltonia|genus Miltonia|monocot genus|liliopsid genus +miltown|1 +(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +milvus|1 +(noun)|Milvus|genus-Milvus|bird genus +milvus migrans|1 +(noun)|black kite|Milvus migrans|kite +milwaukee|1 +(noun)|Milwaukee|city|metropolis|urban center +mimamsa|1 +(noun)|Mimamsa|Hinduism|Hindooism +mime|4 +(noun)|mimer|mummer|pantomimer|pantomimist|actor|histrion|player|thespian|role player +(noun)|pantomime|dumb show|acting|playing|playacting|performing +(verb)|mimic|imitate|copy|simulate +(verb)|pantomime|act|play|roleplay|playact +mimeo|2 +(noun)|mimeograph|mimeograph machine|Roneo|Roneograph|duplicator|copier +(verb)|mimeograph|copy|re-create +mimeograph|2 +(noun)|mimeo|mimeograph machine|Roneo|Roneograph|duplicator|copier +(verb)|mimeo|copy|re-create +mimeograph machine|1 +(noun)|mimeograph|mimeo|Roneo|Roneograph|duplicator|copier +mimer|1 +(noun)|mime|mummer|pantomimer|pantomimist|actor|histrion|player|thespian|role player +mimesis|3 +(noun)|imitation +(noun)|disease +(noun)|quotation|quote|citation +mimetic|2 +(adj)|representational +(adj)|imitative +mimic|3 +(adj)|imitative +(noun)|mimicker|impersonator|imitator +(verb)|mime|imitate|copy|simulate +mimicker|1 +(noun)|mimic|impersonator|imitator +mimicry|2 +(noun)|apery|impersonation|personation +(noun)|imitation +mimidae|1 +(noun)|Mimidae|family Mimidae|bird family +mimir|1 +(noun)|Mimir|giant +mimosa|3 +(noun)|silver wattle|Acacia dealbata|acacia +(noun)|shrub|bush +(noun)|mixed drink +mimosa bush|1 +(noun)|huisache|cassie|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia +mimosa pudica|1 +(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa +mimosa sensitiva|1 +(noun)|sensitive plant|Mimosa sensitiva|mimosa +mimosaceae|1 +(noun)|Mimosaceae|family Mimosaceae|rosid dicot family +mimosoideae|1 +(noun)|Mimosoideae|subfamily Mimosoideae|rosid dicot family +mimus|1 +(noun)|Mimus|genus Mimus|bird genus +mimus polyglotktos|1 +(noun)|mockingbird|mocker|Mimus polyglotktos|oscine|oscine bird +min|3 +(noun)|minute|time unit|unit of time +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +(noun)|Min|Egyptian deity +min dialect|1 +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +mina|1 +(noun)|myna|mynah|minah|myna bird|mynah bird|starling +minacious|1 +(adj)|baleful|forbidding|menacing|minatory|ominous|sinister|threatening|ugly|alarming +minah|1 +(noun)|myna|mynah|mina|myna bird|mynah bird|starling +minamata bay|1 +(noun)|Minamata Bay|bay +minamata disease|1 +(noun)|Minamata disease|mercury poisoning +minaret|1 +(noun)|tower +minato ohashi bridge|1 +(noun)|Minato Ohashi Bridge|cantilever bridge +minatory|1 +(adj)|baleful|forbidding|menacing|minacious|ominous|sinister|threatening|ugly|alarming +mince|4 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(verb)|soften|moderate|change|alter|modify +(verb)|walk +(verb)|chop|chop up +mince pie|1 +(noun)|pie +mincemeat|1 +(noun)|concoction|mixture|intermixture +mincer|1 +(noun)|mincing machine|kitchen utensil +mincing|1 +(adj)|dainty|niminy-piminy|prim|twee|refined +mincing machine|1 +(noun)|mincer|kitchen utensil +mind|13 +(noun)|head|brain|psyche|nous|cognition|knowledge|noesis +(noun)|recall|recollection|reminiscence +(noun)|judgment|judgement|opinion|sentiment|persuasion|view|thought +(noun)|thinker|creative thinker|intellectual|intellect +(noun)|notice|observation|observance +(noun)|idea|purpose|intent|intention|aim|design +(noun)|intellect|intelligence +(verb)|object +(verb)|think about +(verb)|take care|manage|deal|care|handle +(verb)|heed|listen|obey +(verb)|beware|watch|look out|watch out +(verb)|bear in mind|remember|think of +mind's eye|1 +(noun)|imagination|imaging|imagery|mental imagery +mind-altering|1 +(adj)|psychoactive |psychotropic +mind-altering drug|1 +(noun)|psychoactive drug|consciousness-altering drug|psychoactive substance|drug +mind-bending|1 +(adj)|mind-blowing|psychoactive |psychotropic +mind-blowing|2 +(adj)|mind-bending|psychoactive |psychotropic +(adj)|emotional +mind-boggling|1 +(adj)|impressive +mind-expanding|1 +(adj)|psychoactive |psychotropic +mind-set|2 +(noun)|mentality|outlook|mindset|attitude|mental attitude +(noun)| +mind game|2 +(noun)|game +(noun)|manipulation|use +mind reader|2 +(noun)|telepathist|thought-reader|mental telepathist|communicator +(noun)|telepathist|thought-reader|magician|prestidigitator|conjurer|conjuror|illusionist +mindanao|1 +(noun)|Mindanao|island +minded|3 +(adj)|oriented |orientated +(adj)|inclined +(adj)|apt|disposed|given|tending|inclined +minden|1 +(noun)|Minden|battle of Minden|pitched battle +minder|1 +(noun)|babyminder|baby minder|keeper +mindful|1 +(adj)|mindful |aware|careful|heedful|evocative|redolent|redolent of|remindful|reminiscent|reminiscent of +mindfully|1 +(adv)|heedfully|advertently +mindfulness|1 +(noun)|heedfulness|attentiveness +mindless|5 +(adj)|meaningless |nonmeaningful +(adj)|nonintellectual +(adj)|unmindful |forgetful|amnesic|amnesiac +(adj)|asinine|fatuous|inane|vacuous|foolish +(adj)|reasonless|senseless|unreasonable +mindlessly|1 +(adv)|senselessly +mindlessness|2 +(noun)|inanity|senselessness|vacuity|pointlessness|meaninglessness +(noun)|heedlessness|rashness|imprudence +mindoro|1 +(noun)|Mindoro|island +mindset|1 +(noun)|mentality|outlook|mind-set|attitude|mental attitude +mine|4 +(noun)|excavation|hole in the ground +(noun)|explosive device +(verb)|exploit|tap +(verb)|reinforce|reenforce +mine detector|1 +(noun)|detector|sensor|sensing element +mine disposal|1 +(noun)|disposal|disposition +mine field|2 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|minefield|tract|piece of land|piece of ground|parcel of land|parcel +mine pig|1 +(noun)|pig iron +mine run|1 +(adj)|run-of-the-mill|run-of-the-mine|unexceptional|ordinary +mined|1 +(adj)|mined |deep-mined|well-mined|strip-mined +minefield|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +minelayer|1 +(noun)|ship +minelaying|1 +(noun)|mining|defense|defence|defensive measure +miner|1 +(noun)|mineworker|laborer|manual laborer|labourer|jack +miner's cat|1 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|Bassariscus astutus|procyonid +miner's lettuce|1 +(noun)|winter purslane|Cuban spinach|Montia perfoliata|Indian lettuce +mineral|4 +(adj)|material|stuff +(adj)|mineral |asphaltic|mineralized|petrified|mineralized +(adj)|inorganic +(noun)|material|stuff +mineral deficiency|1 +(noun)|lack|deficiency|want +mineral dressing|1 +(noun)|mineral extraction|mineral processing|ore processing|ore dressing|beneficiation|extraction +mineral extraction|1 +(noun)|mineral processing|mineral dressing|ore processing|ore dressing|beneficiation|extraction +mineral jelly|1 +(noun)|petrolatum|petroleum jelly|jelly|mixture +mineral kingdom|1 +(noun)|kingdom +mineral oil|1 +(noun)|oil +mineral pitch|1 +(noun)|asphalt|mineral +mineral processing|1 +(noun)|mineral extraction|mineral dressing|ore processing|ore dressing|beneficiation|extraction +mineral resources|1 +(noun)|natural resource|natural resources +mineral tar|1 +(noun)|maltha|mineral +mineral vein|1 +(noun)|vein|geological formation|formation +mineral water|1 +(noun)|drinking water +mineral wax|1 +(noun)|ader wax|earth wax|ozokerite|ozocerite|mineral +mineral wool|1 +(noun)|rock wool|insulator|dielectric|nonconductor +mineralized|2 +(adj)|mineral +(adj)|petrified|mineral +mineralocorticoid|1 +(noun)|corticosteroid|corticoid|adrenal cortical steroid +mineralogist|1 +(noun)|scientist|man of science +mineralogy|1 +(noun)|geology +minerva|1 +(noun)|Minerva|Roman deity +mineshaft|1 +(noun)|excavation|hole in the ground +minestrone|1 +(noun)|petite marmite|vegetable soup|soup +minesweeper|1 +(noun)|ship +minesweeping|1 +(noun)|mine disposal +mineworker|1 +(noun)|miner|laborer|manual laborer|labourer|jack +ming|1 +(noun)|Ming|Ming dynasty|dynasty +ming dynasty|1 +(noun)|Ming|Ming dynasty|dynasty +ming tree|2 +(noun)|bonsai +(noun)|bonsai +minge|1 +(noun)|pubic hair|bush|crotch hair|female genitalia|female genitals|female genital organ|fanny +minginess|1 +(noun)|meanness|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess +mingle|2 +(verb)|mix|commix|unify|amalgamate|change|alter|modify +(verb)|jumble|be +mingle-mangle|1 +(noun)|odds and ends|oddments|melange|farrago|ragbag|hodgepodge|mishmash|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +mingling|2 +(adj)|blending|merging|blended +(noun)|social activity +mingy|1 +(adj)|mean|miserly|tight|stingy |ungenerous +mini|1 +(adj)|mini +miniate|2 +(verb)|color|colour|emblazon +(verb)|rubricate|illuminate +miniature|3 +(adj)|small +(noun)|illumination|painting|picture +(noun)|toy|copy +miniature fan palm|1 +(noun)|bamboo palm|fern rhapis|Rhapis excelsa|lady palm +miniature golf|1 +(noun)|golf|golf game +miniature pinscher|1 +(noun)|pinscher +miniature poodle|1 +(noun)|poodle|poodle dog +miniature schnauzer|1 +(noun)|schnauzer +miniaturisation|1 +(noun)|miniaturization|shrinking +miniaturise|1 +(verb)|miniaturize|shrink|reduce +miniaturist|1 +(noun)|painter +miniaturization|1 +(noun)|miniaturisation|shrinking +miniaturize|1 +(verb)|miniaturise|shrink|reduce +minibar|1 +(noun)|cellaret|buffet|counter|sideboard +minibike|1 +(noun)|motorbike|motorcycle|bike +minicab|1 +(noun)|cab|hack|taxi|taxicab|minicar +minicar|1 +(noun)|car|auto|automobile|machine|motorcar +minicomputer|1 +(noun)|digital computer +minify|1 +(verb)|decrease|lessen|change|alter|modify +minim|3 +(noun)|British capacity unit|Imperial capacity unit +(noun)|United States liquid unit +(noun)|half note|note|musical note|tone +minimal|1 +(adj)|minimal |borderline|marginal|bottom|lowest|least|lowest|smallest|negligible|nominal|token|tokenish|stripped|stripped-down +minimal art|1 +(noun)|minimalism|reductivism|artistic movement|art movement +minimal brain damage|1 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|MBD|syndrome +minimal brain dysfunction|1 +(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain damage|MBD|syndrome +minimalism|1 +(noun)|minimal art|reductivism|artistic movement|art movement +minimalist|4 +(adj)|artistic movement|art movement +(adj)|moderate +(noun)|conservative|conservativist +(noun)|artist|creative person +minimally invasive coronary bypass surgery|1 +(noun)|closed-heart surgery +minimisation|1 +(noun)|minimization|decrease|diminution|reduction|step-down +minimise|2 +(verb)|understate|minimize|downplay|inform +(verb)|minimize|decrease|lessen|minify +minimization|1 +(noun)|minimisation|decrease|diminution|reduction|step-down +minimize|3 +(verb)|minimise|decrease|lessen|minify +(verb)|understate|minimise|downplay|inform +(verb)|belittle|denigrate|derogate|disparage|belittle|pick at +minimized|1 +(adj)|decreased |reduced +minimum|3 +(adj)|minimal |borderline|marginal|bottom|lowest|least|lowest|smallest|negligible|nominal|token|tokenish|stripped|stripped-down +(noun)|lower limit|extremum|peak|small indefinite quantity|small indefinite amount +(noun)|limit +minimum wage|1 +(noun)|wage|pay|earnings|remuneration|salary +mining|2 +(noun)|excavation|production +(noun)|minelaying|defense|defence|defensive measure +mining bee|1 +(noun)|andrena|andrenid|bee +mining company|1 +(noun)|company +mining engineer|1 +(noun)|engineer|applied scientist|technologist +mining geology|1 +(noun)|economic geology +minion|1 +(noun)|dependant|dependent +minipress|1 +(noun)|prazosin|Minipress|antihypertensive|antihypertensive drug|alpha blocker|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent +miniscule|1 +(adj)|minuscule|small +miniskirt|1 +(noun)|skirt +minister|6 +(noun)|curate|parson|pastor|rector|clergyman|reverend|man of the cloth +(noun)|government minister|executive|executive director +(noun)|diplomatic minister|diplomat|diplomatist +(noun)|public service +(verb)|attend|take care|look|see +(verb)|work +minister of finance|1 +(noun)|finance minister|minister|government minister +minister plenipotentiary|1 +(noun)|envoy|envoy extraordinary|diplomat|diplomatist +ministerial|2 +(adj)|clergyman|reverend|man of the cloth +(adj)|diplomat|diplomatist +ministering|1 +(adj)|ministrant|attending|helpful +ministrant|2 +(adj)|ministering|attending|helpful +(noun)|curate|minister|parson|pastor|rector +ministration|1 +(noun)|relief|succor|succour|aid|assist|assistance|help +ministry|3 +(noun)|priesthood +(noun)|building|edifice +(noun)|government department +ministry of transportation test|1 +(noun)|MOT|MOT test|Ministry of Transportation test|test|trial|run +minisub|1 +(noun)|minisubmarine|submersible +minisubmarine|1 +(noun)|minisub|submersible +minium|1 +(noun)|red lead|oxide +minivan|1 +(noun)|passenger van|car|auto|automobile|machine|motorcar +miniver|1 +(noun)|trimming|trim|passementerie +mink|3 +(noun)|fur|pelt +(noun)|mink coat|fur coat +(noun)|musteline mammal|mustelid|musteline +mink coat|1 +(noun)|mink|fur coat +minke whale|1 +(noun)|lesser rorqual|piked whale|Balaenoptera acutorostrata|rorqual|razorback +minkowski|1 +(noun)|Minkowski|Hermann Minkowski|mathematician +minneapolis|1 +(noun)|Minneapolis|city|metropolis|urban center +minnesota|1 +(noun)|Minnesota|Gopher State|North Star State|MN|American state +minnesota multiphasic personality inventory|1 +(noun)|Minnesota Multiphasic Personality Inventory|MMPI|self-report personality inventory|self-report inventory +minnesotan|1 +(noun)|Minnesotan|American +minnewit|1 +(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler|colonist +minnie bush|2 +(noun)|minniebush|Menziesia pilosa|shrub|bush +(noun)| +minnie mouse|1 +(noun)|Minnie Mouse|fictional animal +minniebush|1 +(noun)|minnie bush|Menziesia pilosa|shrub|bush +minnow|1 +(noun)|Phoxinus phoxinus|cyprinid|cyprinid fish +minoan|2 +(adj)|Minoan|culture|civilization|civilisation +(noun)|Minoan|Cretan +minoan civilisation|1 +(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture|civilization|civilisation +minoan civilization|1 +(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture|civilization|civilisation +minoan culture|1 +(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture|civilization|civilisation +minocin|1 +(noun)|minocycline|Minocin|tetracycline|Achromycin +minocycline|1 +(noun)|Minocin|tetracycline|Achromycin +minor|11 +(adj)|minor |insignificant|peanut|secondary +(adj)|minor +(adj)|minor +(adj)|minor +(adj)|minor |nonaged|underage +(adj)|minor +(adj)|minor +(adj)|junior +(adj)|venial|pardonable +(adj)|modest|small|small-scale|pocket-size|pocket-sized|limited +(noun)|child|kid|youngster|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +minor-league club|1 +(noun)|minor-league team|team|squad +minor-league team|1 +(noun)|minor-league club|team|squad +minor axis|1 +(noun)|axis +minor diatonic scale|1 +(noun)|minor scale|mode|musical mode +minor expense|1 +(noun)|incidental expense|incidental|expense +minor key|1 +(noun)|minor mode|key|tonality +minor league|1 +(noun)|minors|bush league|league|conference +minor leaguer|1 +(noun)|bush leaguer|ballplayer|baseball player +minor mode|1 +(noun)|minor key|key|tonality +minor planet|1 +(noun)|asteroid|planetoid|planet +minor premise|1 +(noun)|minor premiss|subsumption|premise|premiss|assumption +minor premiss|1 +(noun)|minor premise|subsumption|premise|premiss|assumption +minor role|1 +(noun)|bit part|character|role|theatrical role|part|persona +minor scale|1 +(noun)|minor diatonic scale|mode|musical mode +minor suit|1 +(noun)|suit +minor surgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +minor term|1 +(noun)|term +minor tranquilizer|1 +(noun)|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +minor tranquilliser|1 +(noun)|minor tranquilizer|minor tranquillizer|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +minor tranquillizer|1 +(noun)|minor tranquilizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +minority|3 +(noun)|social group +(noun)|number|figure +(noun)|nonage|age|eld|legal status +minority leader|1 +(noun)|legislator +minors|2 +(noun)|minor league|bush league|league|conference +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +minos|1 +(noun)|Minos|Greek deity +minotaur|1 +(noun)|Minotaur|mythical monster|mythical creature +minoxidil|1 +(noun)|Loniten|Rogaine|vasodilator|vasodilative +minsk|1 +(noun)|Minsk|capital of Belarus|capital +minster|1 +(noun)|cathedral +minstrel|3 +(noun)|folk singer|jongleur|poet-singer|troubadour|singer|vocalist|vocalizer|vocaliser +(noun)|performer|performing artist +(verb)|sing +minstrel show|1 +(noun)|company|troupe +minstrelsy|3 +(noun)|company|troupe +(noun)|ballad|lay +(noun)|art|artistry|prowess +mint|7 +(adj)|perfect +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|herb|herbaceous plant +(noun)|herb +(noun)|mint candy|candy +(noun)|plant|works|industrial plant +(verb)|coin|strike|create from raw material|create from raw stuff +mint candy|1 +(noun)|mint|candy +mint family|1 +(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|asterid dicot family +mint geranium|1 +(noun)|costmary|alecost|bible leaf|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +mint julep|1 +(noun)|julep|highball +mint sauce|1 +(noun)|condiment +mintage|3 +(noun)|coinage|specie|metal money|currency +(noun)|fee +(noun)|trade|craft +minter|1 +(noun)|coiner|moneyer|skilled worker|trained worker +mintmark|1 +(noun)|mark|print +minuartia|1 +(noun)|Minuartia|genus Minuartia|caryophylloid dicot genus +minuend|1 +(noun)|number +minuet|2 +(noun)|ballroom dancing|ballroom dance +(noun)|dance music|danceroom music|ballroom music +minuit|1 +(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler|colonist +minus|3 +(adj)|minus |negative +(adj)|negative|disadvantageous |harmful +(noun)|subtraction|arithmetic operation +minus sign|1 +(noun)|sign +minuscular|1 +(adj)|minuscule |lowercase +minuscule|5 +(adj)|minuscule |minuscular|lowercase +(adj)|little|small|lowercase +(adj)|miniscule|small +(noun)|small letter|lower case|lower-case letter|character|grapheme|graphic symbol +(noun)|longhand|running hand|cursive|cursive script +minute|9 +(adj)|infinitesimal|microscopic|small +(adj)|atomic|atomlike|microscopic |microscopical|small +(adj)|narrow|careful +(noun)|min|time unit|unit of time +(noun)|moment|second|bit|time +(noun)|moment|second|instant|point|point in time +(noun)|arcminute|minute of arc|angular unit +(noun)|note +(noun)|hour|distance +minute book|1 +(noun)|written record|written account +minute gun|1 +(noun)|gun +minute hand|1 +(noun)|big hand|hand +minute of arc|1 +(noun)|minute|arcminute|angular unit +minute steak|1 +(noun)|beefsteak +minutely|1 +(adv)|circumstantially +minuteman|2 +(noun)|Minuteman|militiaman +(noun)|Minuteman|intercontinental ballistic missile|ICBM +minuteness|1 +(noun)|diminutiveness|petiteness|tininess|weeness|smallness|littleness +minutes|7 +(noun)|proceedings|transactions|written record|written account +(noun)|minute|min|time unit|unit of time +(noun)|moment|minute|second|bit|time +(noun)|moment|minute|second|instant|point|point in time +(noun)|minute|arcminute|minute of arc|angular unit +(noun)|minute|note +(noun)|hour|minute|distance +minutia|1 +(noun)|detail|item|point +minx|1 +(noun)|coquette|flirt|vamp|vamper|tease|prickteaser|woman|adult female +minyan|1 +(noun)|quorum +miocene|1 +(noun)|Miocene|Miocene epoch|epoch +miocene epoch|1 +(noun)|Miocene|Miocene epoch|epoch +miosis|2 +(noun)|meiosis|reduction division|cell division|cellular division +(noun)|light reflex|pupillary reflex|myosis|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +miotic|1 +(adj)|myotic|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +mips|1 +(noun)|MIPS|million instructions per second|unit of measurement|unit +mirabeau|1 +(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist|revolutionary|subversive|subverter +mirabilis|1 +(noun)|Mirabilis|genus Mirabilis|caryophylloid dicot genus +mirabilis californica|1 +(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock +mirabilis jalapa|1 +(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock +mirabilis laevis|1 +(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock +mirabilis longiflora|1 +(noun)|sweet four o'clock|maravilla|Mirabilis longiflora|four o'clock +mirabilis multiflora|1 +(noun)|desert four o'clock|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock +mirabilis oblongifolia|1 +(noun)|mountain four o'clock|Mirabilis oblongifolia|four o'clock +mirabilis uniflora|1 +(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock +miracle|2 +(noun)|happening|occurrence|natural event +(noun)|event +miracle-worship|1 +(noun)|thaumatolatry|idolatry|devotion|veneration|cultism +miracle man|1 +(noun)|miracle worker|person|individual|someone|somebody|mortal|human|soul +miracle play|1 +(noun)|play|drama|dramatic play +miracle worker|1 +(noun)|miracle man|person|individual|someone|somebody|mortal|human|soul +miraculous|2 +(adj)|marvelous|marvellous|supernatural +(adj)|heaven-sent|providential|fortunate +miraculous food|1 +(noun)|manna|manna from heaven|food|nutrient +mirage|2 +(noun)|optical illusion +(noun)|misconception +miranda rule|1 +(noun)|Miranda rule|rule|prescript +mirasol|1 +(noun)|common sunflower|Helianthus annuus|sunflower|helianthus +mire|5 +(noun)|quagmire|quag|morass|bog|peat bog +(verb)|entangle|involve +(verb)|bog down +(verb)|grind to a halt|get stuck|bog down|stand still +(verb)|muck|mud|muck up|dirty|soil|begrime|grime|colly|bemire +mired|1 +(adj)|involved|encumbered +miri|1 +(noun)|Miri|Mirish|Abor|Dafla|Kamarupan +mirid|1 +(noun)|mirid bug|capsid|leaf bug|plant bug +mirid bug|1 +(noun)|mirid|capsid|leaf bug|plant bug +miridae|1 +(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family +mirish|1 +(noun)|Miri|Mirish|Abor|Dafla|Kamarupan +mirky|2 +(adj)|cloudy|muddy|murky|turbid|opaque +(adj)|murky|shaded +miro|2 +(noun)|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer|coniferous tree +(noun)|Miro|Joan Miro|painter +mirounga|1 +(noun)|Mirounga|genus Mirounga|mammal genus +mirror|4 +(noun)|reflector +(noun)|depicting|depiction|portraying|portrayal +(verb)|reflect|reverberate +(verb)|reflect +mirror-image relation|1 +(noun)|enantiomorphism|opposition +mirror carp|1 +(noun)|domestic carp|Cyprinus carpio +mirror image|1 +(noun)|reflection|reflexion|likeness|alikeness|similitude +mirror symmetry|1 +(noun)|parity|conservation of parity|space-reflection symmetry|conservation +mirrored|1 +(adj)|reflected +mirrorlike|1 +(adj)|specular|reflective +mirth|1 +(noun)|hilarity|mirthfulness|glee|gleefulness|gaiety|merriment +mirthful|2 +(adj)|gay|jocund|jolly|jovial|merry|joyous +(adj)|amusing|comic|comical|funny|laughable|risible|humorous |humourous +mirthfully|1 +(adv)|happily|merrily|gayly|blithely|jubilantly|with happiness +mirthfulness|1 +(noun)|hilarity|mirth|glee|gleefulness|gaiety|merriment +mirthless|1 +(adj)|unamused|joyless +miry|1 +(adj)|boggy|marshy|mucky|muddy|quaggy|sloughy|swampy|wet +misaddress|1 +(verb)|misdirect|address|direct +misadventure|1 +(noun)|mishap|mischance|misfortune|bad luck +misadvise|1 +(verb)|misguide|advise|counsel +misalign|1 +(verb)|align|ordinate|coordinate +misalignment|1 +(noun)|placement|arrangement +misalliance|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +misally|1 +(verb)|ally +misanthrope|1 +(noun)|misanthropist|grouch|grump|crank|churl|crosspatch +misanthropic|2 +(adj)|cynical|misanthropical|distrustful +(adj)|misanthropical|ill-natured +misanthropical|2 +(adj)|cynical|misanthropic|distrustful +(adj)|misanthropic|ill-natured +misanthropist|1 +(noun)|misanthrope|grouch|grump|crank|churl|crosspatch +misanthropy|2 +(noun)|hate|hatred +(noun)|unfriendliness +misapplication|2 +(noun)|application|practical application +(noun)|embezzlement|peculation|defalcation|misappropriation|larceny|theft|thievery|thieving|stealing +misapply|1 +(verb)|misuse|use|utilize|utilise|apply|employ +misapprehend|1 +(verb)|misconstrue|misinterpret|misconceive|misunderstand|be amiss|interpret|construe|see +misapprehension|1 +(noun)|mistake|misunderstanding|misconception +misappropriate|1 +(verb)|embezzle|defalcate|peculate|malversate|steal +misappropriated|1 +(adj)|embezzled|illegal +misappropriation|2 +(noun)|embezzlement|peculation|defalcation|misapplication|larceny|theft|thievery|thieving|stealing +(noun)|borrowing|adoption +misbegot|1 +(adj)|bastard|bastardly|misbegotten|spurious|illegitimate +misbegotten|1 +(adj)|bastard|bastardly|misbegot|spurious|illegitimate +misbehave|1 +(verb)|misconduct|misdemean|act|move +misbehavior|1 +(noun)|misbehaviour|misdeed|wrongdoing|wrongful conduct|misconduct|actus reus +misbehaviour|1 +(noun)|misbehavior|misdeed|wrongdoing|wrongful conduct|misconduct|actus reus +misbelieve|1 +(verb)|believe +misbeliever|1 +(noun)|heretic|religious outcast|outcast|castaway|pariah|Ishmael +misbranded|1 +(adj)|mislabeled|illegal +miscalculate|2 +(verb)|misestimate|misjudge +(verb)|misestimate|calculate|cipher|cypher|compute|work out|reckon|figure +miscalculation|1 +(noun)|misreckoning|misestimation|mistake|error|fault +miscall|1 +(verb)|misname|call +miscarriage|2 +(noun)|abortion|failure +(noun)|spontaneous abortion|stillbirth|abortion +miscarry|2 +(verb)|fail|go wrong +(verb)|abort +miscast|1 +(verb)|cast +miscegenate|1 +(verb)|cohabit|shack up +miscegenation|1 +(noun)|crossbreeding|interbreeding|reproduction|procreation|breeding|facts of life +miscellanea|1 +(noun)|assortment|mixture|mixed bag|miscellany|variety|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +miscellaneous|2 +(adj)|general +(adj)|assorted|mixed|motley|sundry|heterogeneous |heterogenous +miscellany|2 +(noun)|assortment|mixture|mixed bag|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|florilegium|garland|anthology +misch metal|1 +(noun)|pyrophoric alloy +mischance|2 +(noun)|bad luck|mishap|luck|fortune|chance|hazard +(noun)|mishap|misadventure|misfortune|bad luck +mischief|2 +(noun)|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +(noun)|maleficence|balefulness|evil|evilness +mischief-maker|1 +(noun)|troublemaker|trouble maker|troubler|bad hat|unwelcome person|persona non grata +mischief-making|1 +(noun)|mischief|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +mischievous|3 +(adj)|impish|implike|pixilated|prankish|puckish|playful +(adj)|naughty|bad +(adj)|harmful +mischievously|1 +(adv)|badly|naughtily +mischievousness|3 +(noun)|naughtiness|badness|disobedience +(noun)|impishness|puckishness|whimsicality|playfulness|fun +(noun)|mischief|mischief-making|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +miscible|1 +(adj)|miscible |mixable|compatible +misconceive|1 +(verb)|misconstrue|misinterpret|misunderstand|misapprehend|be amiss|interpret|construe|see +misconception|1 +(noun)|idea|thought +misconduct|4 +(noun)|management|direction +(noun)|wrongdoing|wrongful conduct|actus reus|activity +(verb)|misbehave|misdemean|act|move +(verb)|mismanage|mishandle|manage|deal|care|handle +misconstrual|1 +(noun)|misconstruction|misinterpretation|misunderstanding|mistaking +misconstruction|2 +(noun)|misconstrual|misinterpretation|misunderstanding|mistaking +(noun)|constituent|grammatical constituent +misconstrue|1 +(verb)|misinterpret|misconceive|misunderstand|misapprehend|be amiss|interpret|construe|see +miscount|2 +(noun)|count|counting|numeration|enumeration|reckoning|tally +(verb)|count|number|enumerate|numerate +miscreant|1 +(noun)|reprobate|wrongdoer|offender +miscreate|1 +(verb)|determine|shape|mold|influence|regulate +miscreation|1 +(noun)|malformation|failure +miscue|2 +(noun)|stroke|shot +(noun)|slip|slip-up|parapraxis|mistake|error|fault +misdate|1 +(verb)|date +misdating|1 +(noun)|anachronism|mistiming|timekeeping +misdeal|2 +(noun)|deal +(verb)|deal +misdeed|1 +(noun)|misbehavior|misbehaviour|wrongdoing|wrongful conduct|misconduct|actus reus +misdeliver|1 +(verb)|deliver +misdemean|1 +(verb)|misbehave|misconduct|act|move +misdemeanor|1 +(noun)|misdemeanour|infraction|offence|offense|violation|infringement|crime|law-breaking +misdemeanour|1 +(noun)|misdemeanor|infraction|offence|offense|violation|infringement|crime|law-breaking +misdirect|3 +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|change|alter|modify +(verb)|mislead|misguide|lead astray|lead|take|direct|conduct|guide +(verb)|misaddress|address|direct +misdirection|4 +(noun)|commission|charge|direction +(noun)|direction|instruction +(noun)|mismanagement|management|direction +(noun)|distraction|revision|alteration +misdo|1 +(verb)|do|perform +mise en scene|1 +(noun)|stage setting|setting|stage +miser|1 +(noun)|hoarder +miserable|6 +(adj)|suffering|wretched|unhappy +(adj)|hapless|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate +(adj)|abject|low|low-down|scummy|scurvy|contemptible +(adj)|deplorable|execrable|woeful|wretched|inferior +(adj)|wretched|uncomfortable +(adj)|measly|paltry|meager |meagre|meagerly +miserliness|1 +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness +miserly|1 +(adj)|mean|mingy|tight|stingy |ungenerous +misery|2 +(noun)|wretchedness|ill-being +(noun)|sadness|unhappiness +misestimate|2 +(verb)|miscalculate|misjudge +(verb)|miscalculate|calculate|cipher|cypher|compute|work out|reckon|figure +misestimation|1 +(noun)|miscalculation|misreckoning|mistake|error|fault +misfeasance|1 +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +misfire|3 +(noun)|dud|breakdown|equipment failure +(noun)|miss|failure +(verb)|fail|go bad|give way|die|give out|conk out|go|break|break down +misfit|1 +(noun)|anomaly|unusual person +misfortunate|1 +(adj)|hapless|miserable|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate +misfortune|2 +(noun)|bad luck|trouble +(noun)|bad luck|tough luck|ill luck|fortune|destiny|fate|luck|lot|circumstances|portion +misfunction|1 +(verb)|malfunction|fail|go bad|give way|die|give out|conk out|go|break|break down +misgauge|1 +(verb)|estimate|gauge|approximate|guess|judge +misgive|1 +(verb)|worry|vex +misgiving|3 +(noun)|scruple|qualm|anxiety +(noun)|apprehension|expectation|outlook|prospect +(noun)|mistrust|distrust|suspicion|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +misgovern|1 +(verb)|govern|rule +misgovernment|1 +(noun)|misrule|government|governing|governance|government activity +misguide|2 +(verb)|mislead|misdirect|lead astray|lead|take|direct|conduct|guide +(verb)|misadvise|advise|counsel +misguided|2 +(adj)|ill-conceived|foolish +(adj)|mistaken|wrong +mishandle|2 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|mismanage|misconduct|manage|deal|care|handle +mishap|2 +(noun)|bad luck|mischance|luck|fortune|chance|hazard +(noun)|misadventure|mischance|misfortune|bad luck +mishegaas|1 +(noun)|meshugaas|mishegoss|folly|foolery|tomfoolery|craziness|lunacy|indulgence +mishegoss|1 +(noun)|meshugaas|mishegaas|folly|foolery|tomfoolery|craziness|lunacy|indulgence +mishmash|1 +(noun)|odds and ends|oddments|melange|farrago|ragbag|hodgepodge|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +mishna|1 +(noun)|Mishna|Mishnah|sacred text|sacred writing|religious writing|religious text +mishnah|1 +(noun)|Mishna|Mishnah|sacred text|sacred writing|religious writing|religious text +mishnaic|1 +(adj)|Mishnaic|sacred text|sacred writing|religious writing|religious text +mishpachah|1 +(noun)|mishpocha|kin|kin group|kinship group|kindred|clan|tribe +mishpocha|1 +(noun)|mishpachah|kin|kin group|kinship group|kindred|clan|tribe +misidentify|1 +(verb)|mistake|identify +misinform|1 +(verb)|mislead|inform +misinformation|1 +(noun)|information|info +misinterpret|3 +(verb)|interpret +(verb)|misread|take|read +(verb)|misconstrue|misconceive|misunderstand|misapprehend|be amiss|interpret|construe|see +misinterpretation|1 +(noun)|misunderstanding|mistaking|interpretation +misjudge|1 +(verb)|err|mistake|slip +mislabeled|1 +(adj)|misbranded|illegal +mislaid|1 +(adj)|misplaced|lost +mislay|1 +(verb)|misplace|lose|put|set|place|pose|position|lay +mislead|2 +(verb)|misdirect|misguide|lead astray|lead|take|direct|conduct|guide +(verb)|misinform|inform +misleader|1 +(noun)|leader|deceiver|cheat|cheater|trickster|beguiler|slicker +misleading|1 +(adj)|deceptive|dishonest |dishonorable +misleadingly|1 +(adv)|deceptively|deceivingly +mismanage|1 +(verb)|mishandle|misconduct|manage|deal|care|handle +mismanagement|1 +(noun)|misdirection|management|direction +mismarry|1 +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +mismatch|1 +(verb)|match|mate|couple|pair|twin +mismatched|2 +(adj)|mismatched |ill-sorted|incompatible|mismated|unsuited|odd|unmatched|unmated|unpaired|incompatible +(adj)|uneven|unequal +mismate|1 +(verb)|match|mate|couple|pair|twin +mismated|1 +(adj)|ill-sorted|incompatible|unsuited|mismatched +misname|1 +(verb)|miscall|call +misnomer|1 +(noun)|name +misocainea|1 +(noun)|misoneism +misogamist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +misogamy|1 +(noun)|hate|hatred +misogynic|1 +(adj)|distrustful +misogynism|1 +(noun)|misogyny|hate|hatred +misogynist|1 +(noun)|woman hater|misanthrope|misanthropist +misogynous|1 +(adj)|ill-natured +misogyny|1 +(noun)|misogynism|hate|hatred +misology|1 +(noun)|hate|hatred +misoneism|1 +(noun)|hate|hatred +misopedia|1 +(noun)|hate|hatred +misperceive|1 +(verb)|perceive|comprehend +mispickel|1 +(noun)|arsenopyrite|mineral +misplace|2 +(verb)|mislay|lose|put|set|place|pose|position|lay +(verb)|put|set|place|pose|position|lay +misplaced|2 +(adj)|disarranged +(adj)|mislaid|lost +misplaced modifier|1 +(noun)|dangling modifier|modifier|qualifier +misplacement|1 +(noun)|malposition|position|spatial relation +misplay|3 +(noun)|error|failure +(verb)|play|spiel +(verb)|play +misprint|2 +(noun)|erratum|typographical error|typo|literal error|literal|error|mistake +(verb)|print +mispronounce|1 +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +mispronunciation|1 +(noun)|pronunciation +misquotation|1 +(noun)|quotation|quote|citation +misquote|1 +(verb)|quote|cite +misread|2 +(verb)|read|scan +(verb)|misinterpret|take|read +misreading|1 +(noun)|misinterpretation|misunderstanding|mistaking +misreckoning|1 +(noun)|miscalculation|misestimation|mistake|error|fault +misrelated|1 +(adj)|unrelated +misremember|1 +(verb)|err|mistake|slip +misrepresent|2 +(verb)|belie|represent +(verb)|fudge|manipulate|fake|falsify|cook|wangle|cheat|chisel +misrepresentaation|1 +(noun)|falsification|wrongdoing|wrongful conduct|misconduct|actus reus +misrepresentation|1 +(noun)|deceit|deception|falsehood|falsity|untruth|false statement +misrepresented|1 +(adj)|distorted|perverted|twisted|disingenuous |artful +misrule|1 +(noun)|misgovernment|government|governing|governance|government activity +miss|9 +(noun)|girl|missy|young lady|young woman|fille|woman|adult female +(noun)|misfire|failure +(verb)|lose +(verb)|desire|want +(verb)|fail|neglect +(verb)|neglect|pretermit|omit|drop|leave out|overlook|overleap +(verb)|fail|go wrong|miscarry +(verb)|lack +(verb)|escape|avoid +missal|1 +(noun)|prayer book|prayerbook +missed|1 +(adj)|lost|incomprehensible |uncomprehensible +missel thrush|1 +(noun)|mistle thrush|mistletoe thrush|Turdus viscivorus|thrush +misshapen|1 +(adj)|deformed|distorted|ill-shapen|malformed|unshapely +misshapenness|1 +(noun)|deformity|malformation|affliction +missile|2 +(noun)|rocket +(noun)|projectile|weapon|arm|weapon system +missile defence system|1 +(noun)|missile defense system|naval weaponry +missile defense system|1 +(noun)|missile defence system|naval weaponry +missing|2 +(adj)|lacking|nonexistent|wanting|absent +(adj)|lost +missing link|1 +(noun)|ape-man|primitive|primitive person +mission|5 +(noun)|missionary post|missionary station|foreign mission|nongovernmental organization|NGO +(noun)|military mission|operation|military operation +(noun)|charge|commission|assignment|duty assignment +(noun)|missionary work|work +(noun)|deputation|commission|delegation|delegacy|organization|organisation +mission bells|2 +(noun)|black fritillary|Fritillaria biflora|fritillary|checkered lily +(noun)|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary|checkered lily +mission impossible|1 +(noun)|mission|charge|commission +missionary|2 +(noun)|teacher|instructor +(noun)|missioner|religionist|religious person +missionary position|1 +(noun)|position|posture|attitude +missionary post|1 +(noun)|mission|missionary station|foreign mission|nongovernmental organization|NGO +missionary station|1 +(noun)|mission|missionary post|foreign mission|nongovernmental organization|NGO +missionary work|1 +(noun)|mission|work +missioner|1 +(noun)|missionary|religionist|religious person +missippian period|1 +(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period|geological period +missis|1 +(noun)|missus|wife|married woman +mississippi|2 +(noun)|Mississippi|Mississippi River|river +(noun)|Mississippi|Magnolia State|MS|American state +mississippi river|1 +(noun)|Mississippi|Mississippi River|river +mississippian|2 +(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period|geological period +(noun)|Mississippian|American +missive|1 +(noun)|letter|text|textual matter|document +missoula|1 +(noun)|Missoula|town +missouri|4 +(noun)|Missouri|Show Me State|MO|American state +(noun)|Missouri|Missouri River|river +(noun)|Missouri|Sioux|Siouan +(noun)|Missouri|Chiwere +missouri compromise|1 +(noun)|Missouri Compromise|compromise +missouri goldenrod|1 +(noun)|Missouri goldenrod|Solidago missouriensis|goldenrod +missouri gourd|1 +(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd|gourd vine +missouri primrose|1 +(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose +missouri river|1 +(noun)|Missouri|Missouri River|river +missourian|1 +(noun)|Missourian|American +misspell|1 +(verb)|spell +misspelling|1 +(noun)|spelling +misspend|2 +(verb)|spend|pass +(verb)|spend|expend|drop +misstate|1 +(verb)|state|say|tell +misstatement|1 +(noun)|statement +misstep|1 +(noun)|trip|trip-up|stumble|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +missus|1 +(noun)|missis|wife|married woman +missy|1 +(noun)|girl|miss|young lady|young woman|fille|woman|adult female +mist|4 +(noun)|fog +(verb)|mist over|cover|spread over +(verb)|obscure|befog|becloud|obnubilate|haze over|fog|cloud|hide|conceal +(verb)|spray +mist-flower|2 +(noun)|mistflower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower +(noun)| +mist over|1 +(verb)|mist|cover|spread over +mistake|5 +(noun)|error|fault|nonaccomplishment|nonachievement +(noun)|misunderstanding|misapprehension|misconception +(noun)|error|misstatement +(verb)|misidentify|identify +(verb)|err|slip +mistaken|2 +(adj)|misguided|wrong +(adj)|false|incorrect +mistakenly|1 +(adv)|erroneously +mistaking|1 +(noun)|misinterpretation|misunderstanding|interpretation +mister|1 +(noun)|Mr|man|adult male +mistflower|1 +(noun)|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower +mistily|1 +(adv)|vaguely +mistime|1 +(verb)|clock|time +mistiming|1 +(noun)|anachronism|misdating|timekeeping +mistiness|1 +(noun)|haziness|cloudiness|murkiness|muddiness +mistle thrush|1 +(noun)|missel thrush|mistletoe thrush|Turdus viscivorus|thrush +mistletoe|3 +(noun)|false mistletoe|parasitic plant +(noun)|Viscum album|Old World mistletoe|parasitic plant +(noun)|Loranthus europaeus|parasitic plant +mistletoe cactus|1 +(noun)|cactus +mistletoe family|2 +(noun)|Viscaceae|family Viscaceae|dilleniid dicot family +(noun)|Loranthaceae|family Loranthaceae|dilleniid dicot family|parasitic plant +mistletoe fig|1 +(noun)|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree +mistletoe rubber plant|1 +(noun)|mistletoe fig|Ficus diversifolia|Ficus deltoidea|fig tree +mistletoe thrush|1 +(noun)|missel thrush|mistle thrush|Turdus viscivorus|thrush +mistral|1 +(noun)|north wind|norther|boreas +mistranslate|1 +(verb)|translate|interpret|render +mistranslation|1 +(noun)|translation|interlingual rendition|rendering|version +mistreat|1 +(verb)|maltreat|abuse|ill-use|step|ill-treat|treat|handle|do by +mistreated|1 +(adj)|abused |ill-treated|maltreated|assaulted|molested|raped|battered|beaten|misunderstood|cuffed|slapped +mistreatment|1 +(noun)|practice|pattern +mistress|3 +(noun)|kept woman|fancy woman|woman|adult female|lover +(noun)|schoolmarm|schoolma'am|schoolmistress|schoolteacher|school teacher +(noun)|employer +mistrial|1 +(noun)|trial +mistrust|3 +(noun)|misgiving|distrust|suspicion|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|distrust|distrustfulness|trait +(verb)|distrust|suspect|disbelieve|discredit +mistrustful|1 +(adj)|leery|suspicious|untrusting|wary|distrustful +mistrustfully|1 +(adv)|distrustfully +misty|2 +(adj)|brumous|foggy|hazy|cloudy +(adj)|wet +misty-eyed|1 +(adj)|tearful +misunderstand|1 +(verb)|misconstrue|misinterpret|misconceive|misapprehend|be amiss|interpret|construe|see +misunderstanding|2 +(noun)|misinterpretation|mistaking|interpretation +(noun)|mistake|misapprehension|misconception +misunderstood|2 +(adj)|ununderstood +(adj)|abused |ill-treated|maltreated|mistreated +misuse|3 +(noun)|abuse|use|usage|utilization|utilisation|employment|exercise +(verb)|misapply|use|utilize|utilise|apply|employ +(verb)|pervert|abuse|use|expend +misused|1 +(adj)|misused |abused|exploited|ill-used|put-upon|used|victimized|victimised +mit|1 +(noun)|Massachusetts Institute of Technology|MIT|university +mitchell|6 +(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer +(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator|aeronaut|airman|flier|flyer|general|full general +(noun)|Mitchell|Maria Mitchell|astronomer|uranologist|stargazer +(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer|author +(noun)|Mitchell|John Mitchell|labor leader +(noun)|Mitchell|Arthur Mitchell|dancer|professional dancer +mitchella|1 +(noun)|Mitchella|genus Mitchella|asterid dicot genus +mitchella repens|1 +(noun)|partridgeberry|boxberry|twinberry|Mitchella repens|vine +mitchum|1 +(noun)|Mitchum|Robert Mitchum|actor|histrion|player|thespian|role player +mite|2 +(noun)|touch|hint|tinge|pinch|jot|speck|soupcon|small indefinite quantity|small indefinite amount +(noun)|acarine +mite box|1 +(noun)|poor box|alms box|box +mitella|1 +(noun)|Mitella|genus Mitella|rosid dicot genus +mitella diphylla|1 +(noun)|fairy cup|Mitella diphylla|miterwort|mitrewort|bishop's cap +mitella pentandra|1 +(noun)|five-point bishop's cap|Mitella pentandra|miterwort|mitrewort|bishop's cap +miter|6 +(noun)|miter joint|mitre joint|mitre|joint +(noun)|mitre|surface +(noun)|mitre|headdress|headgear +(verb)|bevel|chamfer +(verb)|confer|bestow +(verb)|join|bring together +miter box|1 +(noun)|mitre box|hand tool +miter joint|1 +(noun)|mitre joint|miter|mitre|joint +miter mushroom|1 +(noun)|Helvella crispa|helvella +miterwort|1 +(noun)|mitrewort|bishop's cap|herb|herbaceous plant +mitford|2 +(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer|author +(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer|author +mithan|1 +(noun)|gayal|Bibos frontalis|Asian wild ox +mithra|1 +(noun)|Mithras|Mithra|Persian deity +mithracin|1 +(noun)|mithramycin|Mithracin|antineoplastic antibiotic +mithraic|1 +(adj)|mithraistic|religion|faith|religious belief +mithraicism|1 +(noun)|Mithraism|Mithraicism|religion|faith|religious belief +mithraism|1 +(noun)|Mithraism|Mithraicism|religion|faith|religious belief +mithraist|1 +(noun)|Mithraist|disciple|adherent +mithraistic|1 +(adj)|mithraic|religion|faith|religious belief +mithramycin|1 +(noun)|Mithracin|antineoplastic antibiotic +mithras|2 +(noun)|Mithras|Mithra|Persian deity +(noun)|Mithras|Mithra|Persian deity +mithridate mustard|1 +(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|Thlaspi arvense|pennycress +mithridates|1 +(noun)|Mithridates|Mithridates VI|Mithridates the Great|king|male monarch +mithridates the great|1 +(noun)|Mithridates|Mithridates VI|Mithridates the Great|king|male monarch +mithridates vi|1 +(noun)|Mithridates|Mithridates VI|Mithridates the Great|king|male monarch +mitigable|1 +(adj)|placable +mitigate|2 +(verb)|extenuate|palliate|apologize|apologise|excuse|justify|rationalize|rationalise +(verb)|decrease|lessen|minify +mitigated|1 +(adj)|mitigated |alleviated|eased|relieved|lessened|quenched|satisfied|slaked +mitigating circumstance|1 +(noun)|circumstance|condition|consideration +mitigation|2 +(noun)|extenuation|palliation|decrease|diminution|reduction|step-down +(noun)|extenuation|excuse|alibi|exculpation|self-justification +mitigative|1 +(adj)|alleviative|alleviatory|lenitive|mitigatory|palliative|moderating +mitigatory|1 +(adj)|alleviative|alleviatory|lenitive|mitigative|palliative|moderating +mitochondrion|1 +(noun)|chondriosome|organelle|cell organ +mitogen|1 +(noun)|agent +mitomycin|1 +(noun)|Mutamycin|antibiotic|antibiotic drug +mitosis|1 +(noun)|cell division|cellular division +mitra|1 +(noun)|Mitra|Hindu deity +mitral|2 +(adj)|atrioventricular valve +(adj)|headdress|headgear +mitral stenosis|1 +(noun)|mitral valve stenosis|stenosis|stricture|valvular heart disease +mitral valve|1 +(noun)|bicuspid valve|left atrioventricular valve|atrioventricular valve +mitral valve prolapse|1 +(noun)|valvular heart disease +mitral valve stenosis|1 +(noun)|mitral stenosis|stenosis|stricture|valvular heart disease +mitre|3 +(noun)|miter joint|mitre joint|miter|joint +(noun)|miter|surface +(noun)|miter|headdress|headgear +mitre box|1 +(noun)|miter box|hand tool +mitre joint|1 +(noun)|miter joint|miter|mitre|joint +mitrewort|1 +(noun)|miterwort|bishop's cap|herb|herbaceous plant +mitrula elegans|1 +(noun)|Mitrula elegans|discomycete|cup fungus +mitsvah|2 +(noun)|mitzvah|teaching|precept|commandment +(noun)|mitzvah|deed|feat|effort|exploit +mitt|2 +(noun)|hand|manus|paw|extremity +(noun)|baseball glove|glove|baseball mitt|baseball equipment +mittelschmerz|1 +(noun)|pain|painful sensation +mitten|1 +(noun)|mittens|glove|gloves +mittens|2 +(noun)|mitten|glove|gloves +(noun)|mitten|glove|gloves +mitterand|1 +(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman|solon|national leader +mitzvah|2 +(noun)|mitsvah|teaching|precept|commandment +(noun)|mitsvah|deed|feat|effort|exploit +miwok|2 +(noun)|Miwok|Penutian +(noun)|Moquelumnan|Miwok|Penutian +mix|9 +(noun)|premix|concoction|mixture|intermixture +(noun)|mixture|combining|combine +(noun)|commixture|admixture|mixture|intermixture|mixing|combination|combining|compounding +(verb)|blend|flux|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity|mix up +(verb)|desegregate|integrate +(verb)|mingle|commix|unify|amalgamate|change|alter|modify +(verb)|compound|combine +(verb)|mix in|add +(verb)|shuffle|ruffle|manipulate +mix-up|1 +(noun)|confusion|mistake|error|fault +mix in|2 +(verb)|blend in|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|mix|add +mix up|2 +(verb)|jumble|confuse|assemble|piece|put together|set up|tack|tack together +(verb)|stump|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound +mixable|1 +(adj)|miscible |compatible +mixed|3 +(adj)|amalgamated|intermingled|integrated|blended +(adj)|assorted|miscellaneous|motley|sundry|heterogeneous |heterogenous +(adj)|interracial|integrated +mixed-blood|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +mixed-up|1 +(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mazed|at sea|perplexed +mixed bag|1 +(noun)|assortment|mixture|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +mixed bud|1 +(noun)|bud +mixed drink|1 +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +mixed economy|1 +(noun)|economy|economic system +mixed farming|1 +(noun)|farming|agriculture|husbandry +mixed marriage|1 +(noun)|marriage|married couple|man and wife +mixed metaphor|1 +(noun)|metaphor +mixed nuisance|1 +(noun)|nuisance +mixer|4 +(noun)|sociable|social|party +(noun)|beverage|drink|drinkable|potable +(noun)|electronic equipment +(noun)|kitchen utensil +mixing|1 +(noun)|mix|commixture|admixture|mixture|intermixture|combination|combining|compounding +mixing bowl|1 +(noun)|bowl +mixing faucet|1 +(noun)|faucet +mixologist|1 +(noun)|bartender|barman|barkeep|barkeeper|employee +mixture|5 +(noun)|substance|matter +(noun)|concoction|intermixture|foodstuff|food product +(noun)|assortment|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|mix|combining|combine +(noun)|mix|commixture|admixture|intermixture|mixing|combination|combining|compounding +mizen|2 +(noun)|mizzenmast|mizenmast|mizzen|mast +(noun)|mizzen|fore-and-aft sail +mizenmast|1 +(noun)|mizzenmast|mizzen|mizen|mast +mizzen|2 +(noun)|mizzenmast|mizenmast|mizen|mast +(noun)|mizen|fore-and-aft sail +mizzen course|1 +(noun)|crossjack|sail|canvas|canvass|sheet +mizzenmast|1 +(noun)|mizenmast|mizzen|mizen|mast +mizzle|2 +(noun)|drizzle|rain|rainfall +(verb)|drizzle|rain|rain down +mko|1 +(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization|terrorist group|foreign terrorist organization|FTO +ml|1 +(noun)|milliliter|millilitre|mil|cubic centimeter|cubic centimetre|cc|metric capacity unit +mlitt|1 +(noun)|Master of Literature|MLitt|master's degree +mls|2 +(noun)|Master of Library Science|MLS|master's degree +(noun)|milliliter|millilitre|mil|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit +mm|1 +(noun)|millimeter|millimetre|metric linear unit +mm hg|1 +(noun)|torr|millimeter of mercury|mm Hg|pressure unit +mmpi|1 +(noun)|Minnesota Multiphasic Personality Inventory|MMPI|self-report personality inventory|self-report inventory +mn|2 +(noun)|manganese|Mn|atomic number 25|metallic element|metal +(noun)|Minnesota|Gopher State|North Star State|MN|American state +mnemonic|1 +(adj)|mnemotechnic|mnemotechnical|method +mnemonics|1 +(noun)|method +mnemonist|1 +(noun)|expert +mnemosyne|1 +(noun)|Mnemosyne|Titaness +mnemotechnic|1 +(adj)|mnemonic|mnemotechnical|method +mnemotechnical|1 +(adj)|mnemonic|mnemotechnic|method +mniaceae|1 +(noun)|Mniaceae|family Mniaceae|moss family +mnium|1 +(noun)|Mnium|genus Mnium|moss genus +mo|2 +(noun)|molybdenum|Mo|atomic number 42|metallic element|metal +(noun)|Missouri|Show Me State|MO|American state +moa|1 +(noun)|ratite|ratite bird|flightless bird +moan|2 +(noun)|groan|utterance|vocalization +(verb)|groan|sough|utter|emit|let out|let loose +moaner|1 +(noun)|whiner|complainer|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person|disagreeable person +moaning|1 +(adj)|groaning|inarticulate |unarticulate +moat|1 +(noun)|fosse|trench +moated|1 +(adj)|protected |secure +mob|4 +(noun)|rabble|rout|crowd +(noun)|syndicate|crime syndicate|family|organized crime|gangland|gangdom +(noun)|gang|pack|ring|association +(verb)|throng|pack|pile|jam|crowd|crowd together +moban|1 +(noun)|molindone|Moban|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +mobbish|1 +(adj)|moblike|disorderly +mobcap|1 +(noun)|cap +mobile|8 +(adj)|mobile |airborne|ambulant|ambulatory|floating|flying|maneuverable|manoeuvrable|mechanized|mechanised|motorized|motile|movable|moveable|transferable|transferrable|transportable|rangy|rotatable|transplantable|waterborne|perambulating|raisable|raiseable|seaborne|versatile|moving +(adj)|nomadic|peregrine|roving|wandering|unsettled +(adj)|moving +(adj)|changeable |changeful +(adj)|fluid|changeable |changeful +(noun)|Mobile|Mobile River|river +(noun)|Mobile|city|metropolis|urban center|port +(noun)|sculpture +mobile bay|1 +(noun)|Mobile Bay|bay +mobile canteen|1 +(noun)|canteen|restaurant|eating house|eating place +mobile home|1 +(noun)|manufactured home|trailer|house trailer|housing|lodging|living accommodations +mobile phone|1 +(noun)|cellular telephone|cellular phone|cellphone|cell|radiotelephone|radiophone|wireless telephone +mobile river|1 +(noun)|Mobile|Mobile River|river +mobilisation|2 +(noun)|mobilization|assembly|assemblage|gathering +(noun)|mobilization|militarization|militarisation|social control +mobilise|4 +(verb)|call up|mobilize|rally|call|send for +(verb)|mobilize|militarize|militarise +(verb)|mobilize|marshal|summon|gather|garner|collect|pull together +(verb)|mobilize|circulate|move|displace +mobility|1 +(noun)|quality +mobilization|2 +(noun)|mobilisation|militarization|militarisation|social control +(noun)|mobilisation|assembly|assemblage|gathering +mobilize|4 +(verb)|mobilise|marshal|summon|gather|garner|collect|pull together +(verb)|call up|mobilise|rally|call|send for +(verb)|mobilise|militarize|militarise +(verb)|mobilise|circulate|move|displace +mobius|1 +(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician +mobius strip|1 +(noun)|Mobius strip|surface +moblike|1 +(adj)|mobbish|disorderly +mobster|1 +(noun)|gangster|criminal|felon|crook|outlaw|malefactor +mobula|1 +(noun)|Mobula|genus Mobula|fish genus +mobula hypostoma|1 +(noun)|devil ray|Mobula hypostoma|manta|manta ray|devilfish +mobulidae|1 +(noun)|Mobulidae|family Mobulidae|fish family +mocambique|1 +(noun)|Mozambique|Republic of Mozambique|Mocambique|African country|African nation +mocassin|1 +(noun)|moccasin|moccasins|shoe +moccasin|1 +(noun)|mocassin|moccasins|shoe +moccasin flower|1 +(noun)|nerveroot|Cypripedium acaule|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +moccasins|2 +(noun)|mocassin|moccasin|shoe +(noun)|mocassin|moccasin|shoe +mocha|3 +(noun)|leather +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|coffee|java +mock|4 +(adj)|counterfeit |imitative +(noun)|derision|ridicule +(verb)|bemock|treat|handle|do by +(verb)|imitate|copy|simulate +mock-heroic|1 +(noun)|caricature|imitation|impersonation +mock-up|1 +(noun)|model|simulation +mock azalia|1 +(noun)|impala lily|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub|bush +mock orange|4 +(noun)|syringa|Philadelphus coronarius|philadelphus +(noun)|southern buckthorn|shittimwood|shittim|Bumelia lycioides|buckthorn +(noun)|cherry laurel|laurel cherry|wild orange|Prunus caroliniana|angiospermous tree|flowering tree +(noun)|osage orange|bow wood|Maclura pomifera|angiospermous yellowwood +mock privet|1 +(noun)|shrub|bush +mock sun|1 +(noun)|parhelion|sundog|topographic point|place|spot +mock turtle soup|1 +(noun)|soup +mock up|1 +(verb)|model|represent|interpret +mocker|2 +(noun)|scoffer|flouter|jeerer|unpleasant person|disagreeable person +(noun)|mockingbird|Mimus polyglotktos|oscine|oscine bird +mockernut|1 +(noun)|mockernut hickory|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory|hickory tree +mockernut hickory|1 +(noun)|mockernut|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory|hickory tree +mockery|3 +(noun)|jeer|jeering|scoff|scoffing|derision +(noun)|parody|lampoon|spoof|sendup|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(noun)|parody|takeoff|apery|mimicry +mocking|2 +(adj)|derisive|gibelike|jeering|taunting|disrespectful +(adj)|teasing|quizzical|playful +mocking thrush|1 +(noun)|thrasher|oscine|oscine bird +mockingbird|1 +(noun)|mocker|Mimus polyglotktos|oscine|oscine bird +mockingly|2 +(adv)|jeeringly|gibingly +(adv)|derisively|scoffingly|derisorily +mod|2 +(adj)|modern|modernistic|fashionable |stylish +(noun)|adolescent|stripling|teenager +mod con|1 +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|widget +modal|3 +(adj)|average|normal +(adj)|diatonic scale +(adj)|grammatical relation +modal logic|2 +(noun)|logic +(noun)|symbolic logic|mathematical logic|formal logic +modal value|1 +(noun)|mode|average|norm +modality|4 +(noun)|mode|logical relation +(noun)|mood|mode|grammatical relation +(noun)|sense modality|sensory system|sense|sensation|sentience|sentiency|sensory faculty +(noun)|treatment +mode|6 +(noun)|manner|style|way|fashion|property +(noun)|condition|status +(noun)|modality|logical relation +(noun)|mood|modality|grammatical relation +(noun)|musical mode|diatonic scale +(noun)|modal value|average|norm +model|16 +(adj)|exemplary|worthy +(noun)|theoretical account|framework|hypothesis|possibility|theory +(noun)|kind|sort|form|variety +(noun)|poser|assistant|helper|help|supporter +(noun)|simulation|representation +(noun)|exemplar|example|good example|ideal +(noun)|role model|leader +(noun)|example|representation|mental representation|internal representation +(noun)|mannequin|manikin|mannikin|manakin|fashion model|assistant|helper|help|supporter +(noun)|modelling|modeling|representation +(verb)|pattern|imitate|copy|simulate +(verb)|mold|mould|shape|form|work|mold|mould|forge +(verb)|pose|sit|posture|expose|exhibit|display +(verb)|expose|exhibit|display +(verb)|simulate|re-create +(verb)|mock up|represent|interpret +model t|1 +(noun)|Model T|car|auto|automobile|machine|motorcar +modeled|1 +(adj)|sculptural|sculptured|sculpturesque|shapely +modeler|1 +(noun)|modeller|creator +modeling|3 +(noun)|mold|mould|molding|moulding|clay sculpture|sculpture +(noun)|modelling|molding|moulding|sculpture|carving +(noun)|model|modelling|representation +modeller|1 +(noun)|modeler|creator +modelling|2 +(noun)|modeling|molding|moulding|sculpture|carving +(noun)|model|modeling|representation +modem|1 +(noun)|electronic equipment +moderate|10 +(adj)|moderate |average|intermediate|medium|cautious|conservative|fair|fairish|reasonable|limited|middle-of-the-road|minimalist|modest|small|indifferent|mild|temperate +(adj)|temperate|mild +(adj)|restrained|temperate +(noun)|centrist|middle of the roader|moderationist|adult|grownup +(verb)|chair|lead|hash out|discuss|talk over +(verb)|decelerate|slow down +(verb)|control|hold in|hold|contain|check|curb|restrain|suppress|keep|keep back|hold back +(verb)|mince|soften|change|alter|modify +(verb)|tone down|tame|change|alter|modify +(verb)|chasten|temper|change|alter|modify +moderate breeze|1 +(noun)|breeze|zephyr|gentle wind|air +moderate gale|1 +(noun)|near gale|gale +moderated|1 +(adj)|qualified|tempered +moderately|2 +(adv)|reasonably|within reason|somewhat|fairly|middling|passably +(adv)|with moderation +moderateness|2 +(noun)|reasonableness|modestness|inexpensiveness +(noun)|moderation|degree|grade|level +moderating|1 +(adj)|moderating |alleviative|alleviatory|lenitive|mitigative|mitigatory|palliative|analgesic|analgetic|anodyne|tempering|weakening +moderation|4 +(noun)|moderateness|degree|grade|level +(noun)|easing|relief|change|alteration|modification +(noun)|temperance|restraint|control|natural virtue +(noun)|decrease|diminution|reduction|step-down +moderationist|2 +(noun)|drinker|imbiber|toper|juicer +(noun)|centrist|middle of the roader|moderate|adult|grownup +moderatism|1 +(noun)|centrism|political orientation|ideology|political theory +moderato|1 +(adj)|slow +moderator|4 +(noun)|inhibitor +(noun)|presiding officer +(noun)|presiding officer +(noun)|mediator|go-between|intermediator|intermediary|intercessor +moderatorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +modern|7 +(adj)|modern |contemporary|modern-day|neo|recent|red-brick|redbrick|ultramodern|Moderne|current|late|new +(adj)|mod|modernistic|fashionable |stylish +(adj)|nonclassical +(adj)|advanced|forward-looking|innovative|progressive +(adj)|Modern|New|late +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|modern font|Bodoni|Bodoni font|proportional font +modern-day|1 +(adj)|contemporary|modern +modern ballet|1 +(noun)|ballet|concert dance +modern dance|1 +(noun)|stage dancing|choreography +modern english|1 +(noun)|Modern English|English|English language +modern era|1 +(noun)|era|epoch +modern font|1 +(noun)|modern|Bodoni|Bodoni font|proportional font +modern greek|1 +(noun)|Modern Greek|Greek|Hellenic|Hellenic language +modern hebrew|1 +(noun)|Modern Hebrew|Hebrew +modern jazz|1 +(noun)|new jazz|neo jazz|jazz +modern man|1 +(noun)|Homo sapiens sapiens|Homo sapiens +modern times|1 +(noun)|times|present time|modern world|contemporary world|present|nowadays +modern world|1 +(noun)|times|modern times|present time|contemporary world|present|nowadays +moderne|1 +(adj)|Moderne|modern +modernisation|1 +(noun)|modernization|improvement +modernise|2 +(verb)|modernize|develop|change +(verb)|overhaul|modernize|regenerate|renew +modernised|1 +(adj)|modernized|progressive +modernism|3 +(noun)|genre +(noun)|modernity|modernness|contemporaneity|contemporaneousness|currentness|currency|up-to-dateness +(noun)|practice|pattern +modernist|2 +(adj)|genre +(noun)|artist|creative person +modernistic|1 +(adj)|mod|modern|fashionable |stylish +modernity|1 +(noun)|modernness|modernism|contemporaneity|contemporaneousness|currentness|currency|up-to-dateness +modernization|2 +(noun)|modernisation|improvement +(noun)|adaptation|version +modernize|2 +(verb)|overhaul|modernise|regenerate|renew +(verb)|modernise|develop|change +modernized|1 +(adj)|modernised|progressive +modernness|1 +(noun)|modernity|modernism|contemporaneity|contemporaneousness|currentness|currency|up-to-dateness +modest|8 +(adj)|modest |retiring|unassuming|humble +(adj)|small|moderate +(adj)|unpretentious +(adj)|modest |coy|demure|overmodest|decent|decent|shamefaced|decent +(adj)|humble|low|lowly|small|inferior +(adj)|meek|mild|humble +(adj)|minor|small|small-scale|pocket-size|pocket-sized|limited +(adj)|restrained|unostentatious|discreet +modest moussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +modest mussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +modest petrovich moussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +modest petrovich mussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +modestly|1 +(adv)|with modesty +modestness|1 +(noun)|reasonableness|moderateness|inexpensiveness +modesty|2 +(noun)|decency +(noun)|reserve|propriety|properness|correctitude +modicon|1 +(noun)|Modicon|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +modicum|1 +(noun)|small indefinite quantity|small indefinite amount +modifiable|1 +(adj)|modifiable +modification|4 +(noun)|alteration|adjustment|change +(noun)|copy +(noun)|qualifying|limiting|grammatical relation +(noun)|change|alteration|happening|occurrence|natural event +modified|2 +(adj)|modified |adapted|altered|restricted|qualified|qualified|varied +(adj)|limited|qualified +modified american plan|1 +(noun)|modified American plan|American plan +modified radical mastectomy|1 +(noun)|mastectomy +modifier|4 +(noun)|qualifier|content word|open-class word +(noun)|moderator +(noun)|changer|person|individual|someone|somebody|mortal|human|soul +(noun)|modifier gene|gene|cistron|factor +modifier gene|1 +(noun)|modifier|gene|cistron|factor +modify|3 +(verb)|change +(verb)|qualify|add +(verb)|change|alter +modigliani|1 +(noun)|Modigliani|Amedeo Modigliano|painter|sculptor|sculpturer|carver|statue maker +modillion|1 +(noun)|bracket +modiolus|1 +(noun)|bone|os +modish|1 +(adj)|a la mode|in style|in vogue|fashionable |stylish +modishly|1 +(adv)|smartly|sprucely +modishness|1 +(noun)|chic|chicness|smartness|stylishness|swank|last word|elegance +modiste|2 +(noun)|hatmaker|hatter|milliner|maker|shaper +(noun)|dressmaker|needlewoman|seamstress|sempstress|garmentmaker|garment-worker|garment worker +mods|2 +(noun)|youth subculture +(noun)|mod|adolescent|stripling|teenager +modular|1 +(adj)|standard +modulate|5 +(verb)|play|spiel +(verb)|tone|inflect|talk|speak|utter|mouth|verbalize|verbalise +(verb)|regulate|adjust|set|correct +(verb)|adjust|set|correct +(verb)|change|alter|vary +modulated|2 +(adj)|modulated |softened +(adj)|inflected +modulation|5 +(noun)|transition|passage|musical passage +(noun)|transmission +(noun)|intonation|pitch contour|prosody|inflection +(noun)|inflection|manner of speaking|speech|delivery +(noun)|revision|alteration +module|4 +(noun)|faculty|mental faculty|ability|power +(noun)|compartment +(noun)|computer circuit +(noun)|component|constituent|element +modulus|3 +(noun)|integer|whole number +(noun)|absolute value +(noun)|coefficient +modulus of elasticity|1 +(noun)|coefficient of elasticity|elastic modulus|modulus +modulus of rigidity|1 +(noun)|coefficient of elasticity|modulus of elasticity|elastic modulus +modus operandi|1 +(noun)|routine|procedure|process +modus vivendi|2 +(noun)|accommodation +(noun)|life style|life-style|lifestyle|manner|mode|style|way|fashion +moehringia|1 +(noun)|Moehringia|genus Moehringia|caryophylloid dicot genus +moehringia lateriflora|1 +(noun)|sandwort|Moehringia lateriflora|flower +moehringia mucosa|1 +(noun)|sandwort|Moehringia mucosa|flower +moeller's glossitis|1 +(noun)|Moeller's glossitis|glossodynia exfoliativa|glossitis +mogadiscio|1 +(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital|port +mogadishu|1 +(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital|port +mogdad coffee|1 +(noun)|coffee senna|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna +mogen david|1 +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +moghul|1 +(noun)|Mogul|Moghul|ruler|swayer +mogul|3 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|Mogul|Moghul|ruler|swayer +(noun)|baron|big businessman|business leader|king|magnate|power|top executive|tycoon|businessman|man of affairs +mogul empire|1 +(noun)|Mogul empire|empire +mohair|1 +(noun)|fabric|cloth|material|textile +mohammad|1 +(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet +mohammadanism|1 +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +mohammed|1 +(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet +mohammed ali|1 +(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier +mohammed reza pahlavi|1 +(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Palavi|Pahlevi|Mohammed Reza Pahlevi|Shah|Shah of Iran +mohammed reza pahlevi|1 +(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Palavi|Pahlevi|Mohammed Reza Pahlevi|Shah|Shah of Iran +mohammedan|2 +(adj)|Muhammadan|Mohammedan|prophet +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +mohammedan calendar|1 +(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar +mohammedanism|2 +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism +mohandas karamchand gandhi|1 +(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader|spiritual leader +moharram|1 +(noun)|Muharram|Moharram|Muharrum|Islamic calendar month +mohave|3 +(noun)|Mohave|Mojave|Hokan|Hoka +(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert +(noun)|Mohave|Mojave|Yuman +mohave desert|1 +(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert +mohawk|2 +(noun)|Mohawk|Iroquois +(noun)|Mohawk|Iroquoian|Iroquois|Iroquoian language +mohawk river|1 +(noun)|Mohawk River|river +mohican|3 +(noun)|Mohican|Mahican|Algonquian|Algonquin +(noun)|Mohican|Mahican|Algonquian|Algonquin|Algonquian language +(noun)|Mohican|Mohican haircut|haircut +mohican haircut|1 +(noun)|Mohican|Mohican haircut|haircut +mohria|1 +(noun)|Mohria|genus Mohria|fern genus +mohria caffrorum|1 +(noun)|scented fern|Mohria caffrorum|fern +mohs scale|1 +(noun)|Mohs scale|scale|scale of measurement|graduated table|ordered series +moiety|2 +(noun)|mediety|one-half|half +(noun)|social group +moil|3 +(verb)|labor|labour|toil|fag|travail|grind|drudge|dig|work|do work +(verb)|churn|boil|roil|move +(verb)|smear +moira shearer|1 +(noun)|Shearer|Moira Shearer|dancer|professional dancer|actress +moirae|1 +(noun)|Moirai|Moirae|Greek deity +moirai|1 +(noun)|Moirai|Moirae|Greek deity +moire|2 +(adj)|watered|patterned +(noun)|watered-silk|fabric|cloth|material|textile +moist|1 +(adj)|damp|dampish|wet +moisten|2 +(verb)|wash|dampen|wet +(verb)|drizzle|sprinkle|splash|splosh +moistener|1 +(noun)|dampener|device +moistening|1 +(noun)|dampening|wetting +moistly|1 +(adv)|damply +moistness|1 +(noun)|damp|dampness|wetness +moisture|1 +(noun)|wet|wetness +moisturise|1 +(verb)|humidify|moisturize|moisten|wash|dampen +moisturize|1 +(verb)|humidify|moisturise|moisten|wash|dampen +mojarra|1 +(noun)|percoid fish|percoid|percoidean +mojave|3 +(noun)|Mohave|Mojave|Hokan|Hoka +(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert +(noun)|Mohave|Mojave|Yuman +mojave aster|1 +(noun)|Mojave aster|Machaeranthera tortifoloia|wildflower|wild flower +mojave desert|1 +(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert +mojave rattlesnake|1 +(noun)|Mojave rattlesnake|Crotalus scutulatus|rattlesnake|rattler +mojo|1 +(noun)|magic +moke|1 +(noun)|domestic ass|donkey|Equus asinus +moksa|1 +(noun)|cycle of rebirth +mokulu|1 +(noun)|Mokulu|East Chadic +mol|1 +(noun)|gram molecule|mole|metric weight unit|weight unit +mola|1 +(noun)|ocean sunfish|sunfish|headfish|plectognath|plectognath fish +mola lanceolata|1 +(noun)|sharptail mola|Mola lanceolata|ocean sunfish|sunfish|mola|headfish +molal|1 +(adj)|molar|metric weight unit|weight unit +molality|1 +(noun)|concentration +molar|5 +(adj)|molal|metric weight unit|weight unit +(adj)|tooth +(adj)|metric weight unit|weight unit +(adj)|molar +(noun)|grinder|tooth +molar concentration|1 +(noun)|molarity|M|concentration +molar pregnancy|1 +(noun)|hydatid mole|hydatidiform mole|abnormality|abnormalcy|abnormal condition +molarity|1 +(noun)|molar concentration|M|concentration +molasses|1 +(noun)|syrup|sirup +molasses cookie|1 +(noun)|cookie|cooky|biscuit +molasses kiss|1 +(noun)|candy kiss|kiss +molasses taffy|1 +(noun)|taffy +mold|12 +(noun)|cast|stamp|solid +(noun)|mould|cast|container +(noun)|mould|soil|dirt +(noun)|mildew|spoilage|spoiling +(noun)|mould|fungus +(noun)|mould|molding|moulding|modeling|clay sculpture|sculpture +(verb)|model|mould|shape|form|work|mould|forge +(verb)|mildew|change +(verb)|cast|mould|shape|form|work|mould|forge +(verb)|shape|form|work|mould|forge|create from raw material|create from raw stuff +(verb)|cling|cleave|adhere|stick|cohere +(verb)|determine|shape|influence|regulate|cause|do|make +moldable|1 +(adj)|fictile|plastic|elastic +moldavia|1 +(noun)|Moldova|Republic of Moldova|Moldavia|European country|European nation +moldboard|1 +(noun)|mouldboard|wedge +moldboard plow|1 +(noun)|mouldboard plough|plow|plough +molded|1 +(adj)|shaped|wrought|formed +molded salad|1 +(noun)|salad +molder|1 +(verb)|decompose|rot|moulder|decay +moldered|1 +(adj)|mouldered|rotten +moldering|1 +(adj)|decomposing|mouldering|rotten +moldiness|1 +(noun)|mustiness|must|staleness +molding|5 +(noun)|casting|creating from raw materials +(noun)|moulding|decoration|ornament|ornamentation +(noun)|moulding|border|edge|margin +(noun)|mold|mould|moulding|modeling|clay sculpture|sculpture +(noun)|modeling|modelling|moulding|sculpture|carving +moldova|1 +(noun)|Moldova|Republic of Moldova|Moldavia|European country|European nation +moldovan|1 +(adj)|Moldovan|European country|European nation +moldovan monetary unit|1 +(noun)|Moldovan monetary unit|monetary unit +moldy|1 +(adj)|mouldy|musty|stale +mole|6 +(noun)|gram molecule|mol|metric weight unit|weight unit +(noun)|counterspy|spy|undercover agent +(noun)|sauce +(noun)|blemish|defect|mar +(noun)|breakwater|groin|groyne|bulwark|seawall|jetty|barrier +(noun)|insectivore +mole cricket|1 +(noun)|cricket +mole plant|2 +(noun)|Japanese poinsettia|paint leaf|Euphorbia heterophylla|spurge +(noun)|caper spurge|myrtle spurge|Euphorbia lathyris|spurge +mole rat|3 +(noun)|rodent|gnawer|gnawing animal +(noun)|rodent|gnawer|gnawing animal +(noun)|bandicoot rat|rat +mole salamander|1 +(noun)|Ambystoma talpoideum|ambystomid|ambystomid salamander +molech|1 +(noun)|Moloch|Molech|Semitic deity +molecular|2 +(adj)|unit|building block +(adj)|molecular +molecular biologist|1 +(noun)|biologist|life scientist +molecular biology|1 +(noun)|biology|biological science +molecular formula|1 +(noun)|formula|chemical formula +molecular genetics|1 +(noun)|genetics|genetic science +molecular weight|1 +(noun)|relative molecular mass|mass +molecule|2 +(noun)|unit|building block +(noun)|atom|particle|corpuscle|mote|speck|material|stuff +molehill|1 +(noun)|knoll|mound|hillock|hummock|hammock +moleskin|1 +(noun)|fabric|cloth|material|textile +molest|2 +(verb)|assail|assault|set on|attack +(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +molestation|2 +(noun)|sexual assault|sexual abuse|sex crime|sex offense +(noun)|harassment|mistreatment +molested|1 +(adj)|assaulted|raped|abused |ill-treated|maltreated|mistreated +molester|1 +(noun)|wrongdoer|offender +molidae|1 +(noun)|Molidae|family Molidae|fish family +moliere|1 +(noun)|Moliere|Jean-Baptiste Poquelin|dramatist|playwright +molindone|1 +(noun)|Moban|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +moline|1 +(noun)|Moline|town +molisch's test|1 +(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator +molisch reaction|1 +(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator +molisch test|1 +(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator +molise|1 +(noun)|Molise|Italian region +moll|1 +(noun)|gun moll|gangster's moll|criminal|felon|crook|outlaw|malefactor +mollah|1 +(noun)|Mullah|Mollah|Mulla|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +molle|1 +(noun)|pepper tree|Peruvian mastic tree|Schinus molle|tree +mollie|1 +(noun)|molly|topminnow|poeciliid fish|poeciliid|live-bearer +mollienesia|1 +(noun)|Mollienesia|genus Mollienesia|fish genus +mollification|2 +(noun)|peaceableness|peacefulness +(noun)|pacification|appeasement|calming +mollify|3 +(verb)|pacify|lenify|conciliate|assuage|appease|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|temper|season|weaken +(verb)|soften +molluga|1 +(noun)|Molluga|genus Molluga|caryophylloid dicot genus +molluga verticillata|1 +(noun)|carpetweed|Indian chickweed|Molluga verticillata|weed +mollusc|1 +(noun)|mollusk|shellfish|invertebrate +mollusca|1 +(noun)|Mollusca|phylum Mollusca|phylum +molluscum|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +molluscum contagiosum|1 +(noun)|molluscum +mollusk|1 +(noun)|mollusc|shellfish|invertebrate +mollusk family|1 +(noun)|family +mollusk genus|1 +(noun)|genus +molly|1 +(noun)|mollie|topminnow|poeciliid fish|poeciliid|live-bearer +molly miller|1 +(noun)|Molly Miller|Scartella cristata|blenny|combtooth blenny +molly pitcher|1 +(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine +mollycoddle|2 +(noun)|darling|favorite|favourite|pet|dearie|deary|ducky +(verb)|pamper|featherbed|cosset|cocker|baby|coddle|spoil|indulge|treat|handle|do by +mollycoddler|1 +(noun)|pamperer|spoiler|coddler|person|individual|someone|somebody|mortal|human|soul +mollymawk|1 +(noun)|albatross|pelagic bird|oceanic bird +molnar|1 +(noun)|Molnar|Ferenc Molnar|dramatist|playwright +moloch|3 +(noun)|Moloch|power|force +(noun)|Moloch|Molech|Semitic deity +(noun)|agamid|agamid lizard +moloch horridus|1 +(noun)|mountain devil|spiny lizard|Moloch horridus|moloch +molokai|1 +(noun)|Molokai|Molokai Island|island +molokai island|1 +(noun)|Molokai|Molokai Island|island +molossidae|1 +(noun)|Molossidae|family Molossidae|mammal family +molothrus|1 +(noun)|Molothrus|genus Molothrus|bird genus +molotov|2 +(noun)|Molotov|Vyacheslav Mikhailovich Molotov|statesman|solon|national leader +(noun)|Perm|Molotov|city|metropolis|urban center +molotov cocktail|1 +(noun)|Molotov cocktail|petrol bomb|gasoline bomb|bomb +molt|2 +(noun)|molting|moult|moulting|ecdysis|shedding|sloughing +(verb)|shed|exuviate|moult|slough|shed|cast|cast off|shake off|throw|throw off|throw away|drop +molten|1 +(adj)|liquefied|liquified|melted |liquid|liquified +molter|1 +(noun)|moulter|animal|animate being|beast|brute|creature|fauna +molting|1 +(noun)|molt|moult|moulting|ecdysis|shedding|sloughing +molucca balm|1 +(noun)|bells of Ireland|Molucella laevis|herb|herbaceous plant +moluccas|1 +(noun)|Moluccas|Spice Islands|island +molucella|1 +(noun)|Molucella|genus Molucella|asterid dicot genus +molucella laevis|1 +(noun)|molucca balm|bells of Ireland|Molucella laevis|herb|herbaceous plant +molva|1 +(noun)|Molva|genus Molva|fish genus +molva molva|1 +(noun)|ling|Molva molva|gadoid|gadoid fish +molybdenite|1 +(noun)|mineral +molybdenum|1 +(noun)|Mo|atomic number 42|metallic element|metal +molybdenum steel|1 +(noun)|alloy steel +mom|1 +(noun)|ma|mama|mamma|momma|mommy|mammy|mum|mummy|mater|mother|female parent +mombasa|1 +(noun)|Mombasa|city|metropolis|urban center|port +mombin|2 +(noun)|mombin tree|jocote|Spondias purpurea|fruit tree +(noun)|edible fruit +mombin tree|1 +(noun)|mombin|jocote|Spondias purpurea|fruit tree +moment|6 +(noun)|minute|second|instant|point|point in time +(noun)|minute|second|bit|time +(noun)|here and now|present moment|present|nowadays +(noun)|consequence|import|significance +(noun)|force +(noun)|statistic +moment of a magnet|1 +(noun)|magnetic moment|torsion|torque +moment of inertia|1 +(noun)|inertia +moment of truth|2 +(noun)|moment|minute|second|instant +(noun)|moment|minute|second|instant +momentaneous|1 +(adj)|fleeting|fugitive|momentary|short +momentarily|2 +(adv)|momently +(adv)|in a moment|momently +momentary|1 +(adj)|fleeting|fugitive|momentaneous|short +momently|2 +(adv)|momentarily +(adv)|momentarily|in a moment +momentous|1 +(adj)|big|significant |important +momentousness|1 +(noun)|importance +momentum|2 +(noun)|impulse|force|forcefulness|strength +(noun)|physical property +momism|1 +(noun)|overprotection|overshielding|protection +momma|1 +(noun)|ma|mama|mamma|mom|mommy|mammy|mum|mummy|mater|mother|female parent +mommsen|1 +(noun)|Mommsen|Theodor Mommsen|historian|historiographer +mommy|1 +(noun)|ma|mama|mamma|mom|momma|mammy|mum|mummy|mater|mother|female parent +momordica|1 +(noun)|Momordica|genus Momordica|dicot genus|magnoliopsid genus +momordica balsamina|1 +(noun)|balsam apple|Momordica balsamina|gourd|gourd vine +momordica charantia|1 +(noun)|balsam pear|Momordica charantia|gourd|gourd vine +momos|1 +(noun)|Momus|Momos|Greek deity +momot|1 +(noun)|motmot|coraciiform bird +momotidae|1 +(noun)|Momotidae|family Momotidae|bird family +momotus|1 +(noun)|Momotus|genus Momotus|bird genus +momus|1 +(noun)|Momus|Momos|Greek deity +mon|3 +(noun)|Monday|Mon|weekday +(noun)|Mon|Buddhist +(noun)|Mon|Mon-Khmer +mon-khmer|1 +(noun)|Mon-Khmer|Austro-Asiatic|Munda-Mon-Khmer +mona|1 +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +monacan|1 +(adj)|Monacan|Monegasque|principality|princedom|European country|European nation +monaco|1 +(noun)|Monaco|Principality of Monaco|principality|princedom|European country|European nation +monaco-ville|1 +(noun)|Monaco-Ville|national capital +monad|2 +(noun)|atom +(noun)|monas|one|1|I|ace|single|unity +monadic operation|1 +(noun)|unary operation|operation +monal|1 +(noun)|monaul|pheasant +monandrous|1 +(adj)|monogamous +monandry|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +monarch|2 +(noun)|sovereign|crowned head|ruler|swayer|head of state|chief of state +(noun)|monarch butterfly|milkweed butterfly|Danaus plexippus|danaid|danaid butterfly +monarch butterfly|1 +(noun)|monarch|milkweed butterfly|Danaus plexippus|danaid|danaid butterfly +monarchal|3 +(adj)|monarchial|monarchic|monarchical|autocracy|autarchy +(adj)|monarchical|noble +(adj)|monarchical|monarchic|undemocratic +monarchial|1 +(adj)|monarchal|monarchic|monarchical|autocracy|autarchy +monarchic|2 +(adj)|monarchal|monarchial|monarchical|autocracy|autarchy +(adj)|monarchal|monarchical|undemocratic +monarchical|3 +(adj)|monarchal|monarchial|monarchic|autocracy|autarchy +(adj)|monarchal|noble +(adj)|monarchal|monarchic|undemocratic +monarchism|1 +(noun)|political orientation|ideology|political theory +monarchist|1 +(noun)|royalist|rightist|right-winger +monarchy|1 +(noun)|autocracy|autarchy +monarda|1 +(noun)|wild bergamot|herb|herbaceous plant +monarda citriodora|1 +(noun)|lemon mint|horsemint|Monarda citriodora|monarda|wild bergamot +monarda clinopodia|1 +(noun)|basil balm|Monarda clinopodia|monarda|wild bergamot +monarda didyma|1 +(noun)|bee balm|beebalm|bergamot mint|oswego tea|Monarda didyma|monarda|wild bergamot +monarda fistulosa|1 +(noun)|bee balm|beebalm|Monarda fistulosa|monarda|wild bergamot +monarda pectinata|1 +(noun)|plains lemon monarda|Monarda pectinata|monarda|wild bergamot +monarda punctata|1 +(noun)|horsemint|Monarda punctata|monarda|wild bergamot +monardella|1 +(noun)|Monardella|genus Monardella|dicot genus|magnoliopsid genus +monardella lanceolata|1 +(noun)|mustang mint|Monardella lanceolata|herb|herbaceous plant +monario|1 +(noun)|Monario|artificial language +monas|2 +(noun)|monad|one|1|I|ace|single|unity +(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island +monastery|1 +(noun)|religious residence|cloister +monastic|2 +(adj)|cloistered|cloistral|conventual|monastical|unworldly +(noun)|monk|religious +monastic habit|1 +(noun)|habit +monastic order|1 +(noun)|order|sect|religious sect|religious order +monastical|1 +(adj)|cloistered|cloistral|conventual|monastic|unworldly +monasticism|1 +(noun)|austerity|asceticism|nonindulgence +monatomic|1 +(adj)|monoatomic|substance|matter +monaul|1 +(noun)|monal|pheasant +monaural|1 +(adj)|monaural |one-eared|mono|monophonic|single-channel +monaurally|1 +(adv)|to one ear|in one ear +monazite|1 +(noun)|mineral +monday|1 +(noun)|Monday|Mon|weekday +mondrian|1 +(noun)|Mondrian|Piet Mondrian|abstractionist|abstract artist +monecious|1 +(adj)|monoecious |monoicous|autoicous|heteroicous|polyoicous|polygamous|paroicous|synoicous|synoecious +monegasque|2 +(adj)|Monacan|Monegasque|principality|princedom|European country|European nation +(noun)|Monegasque|European +monel metal|1 +(noun)|Monel metal|Monell metal|nickel-base alloy|nickel alloy +monell metal|1 +(noun)|Monel metal|Monell metal|nickel-base alloy|nickel alloy +monera|1 +(noun)|Monera|kingdom Monera|kingdom +moneran|2 +(adj)|kingdom +(noun)|moneron|microorganism +moneron|1 +(noun)|moneran|microorganism +moneses|1 +(noun)|Moneses|genus Moneses|dilleniid dicot genus +moneses uniflora|1 +(noun)|one-flowered wintergreen|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb|herbaceous plant +monestrous|1 +(adj)|monoestrous|estrous +monet|1 +(noun)|Monet|Claude Monet|painter +monetarism|1 +(noun)|economic theory +monetarist|1 +(noun)|economist|economic expert +monetary|1 +(adj)|pecuniary|medium of exchange|monetary system +monetary fund|1 +(noun)|fund|money +monetary resource|1 +(noun)|funds|finances|cash in hand|pecuniary resource|assets +monetary standard|1 +(noun)|standard|value +monetary system|1 +(noun)|medium of exchange|standard|criterion|measure|touchstone +monetary unit|1 +(noun)|unit of measurement|unit +monetary value|1 +(noun)|price|cost|value +monetisation|1 +(noun)|monetization|validation|proof|substantiation +monetise|1 +(verb)|monetize|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise +monetization|1 +(noun)|monetisation|validation|proof|substantiation +monetize|1 +(verb)|monetise|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise +money|3 +(noun)|medium of exchange|monetary system +(noun)|wealth +(noun)|currency +money-spinner|1 +(noun)|moneymaker|cash cow|project|projection +money belt|1 +(noun)|belt +money box|2 +(noun)|savings bank|coin bank|bank|container +(noun)|cashbox|till|strongbox|deedbox +money changer|1 +(noun)|exchanger|money handler|money dealer +money cowrie|1 +(noun)|Cypraea moneta|cowrie|cowry +money dealer|1 +(noun)|money handler|person|individual|someone|somebody|mortal|human|soul +money handler|1 +(noun)|money dealer|person|individual|someone|somebody|mortal|human|soul +money laundering|1 +(noun)|concealment|concealing|hiding +money market|1 +(noun)|market|securities industry +money order|1 +(noun)|postal order|draft|bill of exchange|order of payment +money plant|1 +(noun)|honesty|silver dollar|satin flower|satinpod|Lunaria annua|herb|herbaceous plant +money supply|1 +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +moneybag|1 +(noun)|drawstring bag +moneyed|2 +(adj)|moneyed |monied +(adj)|affluent|flush|loaded|wealthy|rich +moneyer|1 +(noun)|coiner|minter|skilled worker|trained worker +moneygrubber|1 +(noun)|moneymaker +moneylender|1 +(noun)|usurer|loan shark|shylock|lender|loaner|shark +moneyless|2 +(adj)|moneyless +(adj)|poor +moneymaker|2 +(noun)|capitalist +(noun)|money-spinner|cash cow|project|projection +moneymaking|3 +(adj)|lucrative|remunerative|profitable +(adj)|mercantile|mercenary|commercial +(noun)|acquisition +moneyman|1 +(noun)|financier|capitalist +moneywort|1 +(noun)|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife +monger|2 +(noun)|trader|bargainer|dealer|merchant|merchandiser +(verb)|peddle|huckster|hawk|vend|pitch|deal|sell|trade +mongo|1 +(noun)|Mongolian monetary unit +mongol|2 +(adj)|Mongol|Mongolian|geographical area|geographic area|geographical region|geographic region +(noun)|Mongol|Mongolian|Oriental|oriental person +mongol dynasty|1 +(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty +mongol tatar|1 +(noun)|Tatar|Tartar|Mongol Tatar|Mongol|Mongolian +mongolia|2 +(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country|Asian nation +(noun)|Mongolia|geographical area|geographic area|geographical region|geographic region +mongolian|4 +(adj)|Mongolian|Asian country|Asian nation +(adj)|Mongol|Mongolian|geographical area|geographic area|geographical region|geographic region +(noun)|Mongol|Mongolian|Oriental|oriental person +(noun)|Mongolian|Mongolic|Mongolic language|Altaic|Altaic language +mongolian monetary unit|1 +(noun)|Mongolian monetary unit|monetary unit +mongolian people's republic|1 +(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country|Asian nation +mongolian race|1 +(noun)|Yellow race|Mongoloid race|Mongolian race|race +mongolianism|1 +(noun)|mongolism|Down's syndrome|Down syndrome|trisomy 21|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +mongolic|1 +(noun)|Mongolian|Mongolic|Mongolic language|Altaic|Altaic language +mongolic language|1 +(noun)|Mongolian|Mongolic|Mongolic language|Altaic|Altaic language +mongolism|1 +(noun)|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +mongoloid|3 +(adj)|Oriental|oriental person +(adj)|Mongoloid|geographical area|geographic area|geographical region|geographic region +(adj)|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +mongoloid race|1 +(noun)|Yellow race|Mongoloid race|Mongolian race|race +mongoose|1 +(noun)|viverrine|viverrine mammal|Herpestes|genus Herpestes +mongrel|2 +(noun)|bastard|variation +(noun)|cur|mutt|dog|domestic dog|Canis familiaris +mongrelise|1 +(verb)|mongrelize|breed +mongrelize|1 +(verb)|mongrelise|breed +monic polynomial|1 +(noun)|polynomial|multinomial +monica seles|1 +(noun)|Seles|Monica Seles|tennis player +monied|1 +(adj)|moneyed +moniker|1 +(noun)|nickname|cognomen|sobriquet|soubriquet|appellation|denomination|designation|appellative +monilia|1 +(noun)|fungus +monilia albicans|1 +(noun)|Candida albicans|Monilia albicans|candida +monilia disease|1 +(noun)|candidiasis|moniliasis|fungal infection|mycosis +moniliaceae|1 +(noun)|Moniliaceae|family Moniliaceae|fungus family +moniliales|1 +(noun)|Moniliales|order Moniliales|fungus order +moniliasis|1 +(noun)|candidiasis|monilia disease|fungal infection|mycosis +monish|2 +(verb)|caution|admonish|warn +(verb)|warn|discourage|admonish|advise|counsel +monism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +monistat|1 +(noun)|miconazole|Monistat|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +monistic|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +monition|3 +(noun)|admonition|admonishment|rebuke|reproof|reproval|reprehension|reprimand +(noun)|admonition|warning|word of advice|advice +(noun)|process of monition|summons|process +monitor|8 +(noun)|monitoring device|display +(noun)|proctor|supervisor +(noun)|admonisher|reminder|defender|guardian|protector|shielder +(noun)|Monitor|vessel|watercraft +(noun)|electronic equipment +(noun)|electronic equipment +(noun)|monitor lizard|varan|lizard +(verb)|supervise|ride herd on|observe +monitor lizard|1 +(noun)|monitor|varan|lizard +monitor program|1 +(noun)|monitoring program|program|programme|computer program|computer programme +monitoring|1 +(noun)|observation|observance|watching +monitoring device|1 +(noun)|monitor|display +monitoring program|1 +(noun)|monitor program|program|programme|computer program|computer programme +monitory|1 +(adj)|admonitory|cautionary|exemplary|warning|dissuasive +monitrice|1 +(noun)|labor coach|assistant|helper|help|supporter +monk|2 +(noun)|monastic|religious +(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician|jazzman +monk's cloth|1 +(noun)|fabric|cloth|material|textile +monkey|4 +(noun)|primate +(noun)|imp|scamp|rascal|rapscallion|scalawag|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(verb)|tamper|fiddle|manipulate +(verb)|putter|mess around|potter|tinker|monkey around|muck about|muck around|work +monkey-bread tree|1 +(noun)|baobab|Adansonia digitata|angiospermous tree|flowering tree +monkey-wrench|2 +(noun)|monkey wrench|adjustable wrench|adjustable spanner +(noun)| +monkey around|1 +(verb)|putter|mess around|potter|tinker|monkey|muck about|muck around|work +monkey bread|1 +(noun)|sour gourd|edible fruit +monkey bridge|2 +(noun)|platform +(noun)|flying bridge|flybridge|fly bridge|bridge|bridge deck +monkey business|1 +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan +monkey dog|1 +(noun)|affenpinscher|monkey pinscher|pinscher +monkey jacket|1 +(noun)|mess jacket|shell jacket|jacket +monkey ladder|1 +(noun)|ladder +monkey nut|1 +(noun)|peanut|earthnut|goober|goober pea|groundnut|edible nut +monkey pinscher|1 +(noun)|affenpinscher|monkey dog|pinscher +monkey pod|2 +(noun)|rain tree|saman|monkeypod|zaman|zamang|Albizia saman|albizzia|albizia +(noun)| +monkey puzzle|1 +(noun)|chile pine|Araucaria araucana|araucaria +monkey wrench|2 +(noun)|monkey-wrench|adjustable wrench|adjustable spanner +(noun)| +monkeypod|1 +(noun)|rain tree|saman|monkey pod|zaman|zamang|Albizia saman|albizzia|albizia +monkfish|3 +(noun)|saltwater fish +(noun)|goosefish|angler|anglerfish|angler fish|lotte|allmouth|Lophius Americanus|spiny-finned fish|acanthopterygian +(noun)|angel shark|angelfish|Squatina squatina|shark +monkish|1 +(adj)|nonindulgent +monkshood|1 +(noun)|helmetflower|helmet flower|Aconitum napellus|aconite +monmouth court house|1 +(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle +monnet|1 +(noun)|Monnet|Jean Monnet|economist|economic expert +mono|2 +(adj)|monophonic|single-channel|monaural +(noun)|infectious mononucleosis|mononucleosis|glandular fever|kissing disease|infectious disease +mono-iodotyrosine|1 +(noun)|iodotyrosine +monoamine|1 +(noun)|amine|aminoalkane +monoamine neurotransmitter|1 +(noun)|monoamine +monoamine oxidase|1 +(noun)|MAO|enzyme +monoamine oxidase inhibitor|1 +(noun)|MAOI|antidepressant|antidepressant drug +monoatomic|1 +(adj)|monatomic|substance|matter +monobasic acid|1 +(noun)|acid +monoblast|1 +(noun)|monocyte +monoblastic leukemia|1 +(noun)|monocytic leukemia|monocytic leukaemia|monoblstic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia|leukaemia|leucaemia|cancer of the blood +monoblstic leukaemia|1 +(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|histiocytic leukemia|histiocytic leukaemia|leukemia|leukaemia|leucaemia|cancer of the blood +monocanthidae|1 +(noun)|Monocanthidae|family Monocanthidae|fish family +monocanthus|1 +(noun)|Monocanthus|genus Monocanthus|fish genus +monocarboxylic|1 +(adj)|group|radical|chemical group +monocarp|1 +(noun)|monocarpic plant|monocarpous plant|plant|flora|plant life +monocarpic|1 +(adj)|plant|flora|plant life +monocarpic plant|1 +(noun)|monocarp|monocarpous plant|plant|flora|plant life +monocarpous plant|1 +(noun)|monocarp|monocarpic plant|plant|flora|plant life +monochamus|1 +(noun)|Monochamus|genus Monochamus|arthropod genus +monochromacy|1 +(noun)|monochromatism|monochromatic vision|monochromia|monochromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +monochromasy|1 +(noun)|monochromacy|monochromatism|monochromatic vision|monochromia|color blindness|colour blindness|color vision deficiency|colour vision deficiency +monochromat|1 +(noun)|color-blind person +monochromatic|3 +(adj)|color blindness|colour blindness|color vision deficiency|colour vision deficiency +(adj)|monochromatic |homochromatic +(adj)|monochrome|monochromic|monochromous|colored |coloured|colorful +monochromatic vision|1 +(noun)|monochromacy|monochromatism|monochromia|monochromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +monochromatism|1 +(noun)|monochromacy|monochromatic vision|monochromia|monochromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +monochrome|3 +(adj)|monochromatic|monochromic|monochromous|colored |coloured|colorful +(noun)|painting|picture +(noun)|black and white|photograph|photo|exposure|pic +monochromia|1 +(noun)|monochromacy|monochromatism|monochromatic vision|monochromasy|color blindness|colour blindness|color vision deficiency|colour vision deficiency +monochromic|1 +(adj)|monochromatic|monochrome|monochromous|colored |coloured|colorful +monochromous|1 +(adj)|monochromatic|monochrome|monochromic|colored |coloured|colorful +monocle|1 +(noun)|eyeglass|lens|lense|lens system +monocled|1 +(adj)|bespectacled|spectacled|adorned |decorated +monoclinal|1 +(adj)|inclined +monocline|1 +(noun)|geological formation|formation +monoclinic|1 +(adj)|monoclinic +monoclinous|1 +(adj)|monoclinous |hermaphroditic +monoclonal|1 +(adj)|organism|being +monoclonal antibody|1 +(noun)|antibody +monocot|1 +(noun)|monocotyledon|liliopsid|endogen|angiosperm|flowering plant +monocot family|1 +(noun)|liliopsid family|family +monocot genus|1 +(noun)|liliopsid genus|genus +monocotyledon|1 +(noun)|monocot|liliopsid|endogen|angiosperm|flowering plant +monocotyledonae|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +monocotyledones|1 +(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class +monocotyledonous|1 +(adj)|monocotyledonous +monocracy|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +monocular vision|1 +(noun)|sight|vision|visual sense|visual modality +monocycle|1 +(noun)|unicycle|wheeled vehicle +monocyte|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +monocytic leukaemia|1 +(noun)|monocytic leukemia|monoblastic leukemia|monoblstic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia|leukaemia|leucaemia|cancer of the blood +monocytic leukemia|1 +(noun)|monocytic leukaemia|monoblastic leukemia|monoblstic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia|leukaemia|leucaemia|cancer of the blood +monocytosis|1 +(noun)|symptom +monod|1 +(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist +monodic|1 +(adj)|monodical|monophonic +monodical|1 +(adj)|monodic|monophonic +monodon|1 +(noun)|Monodon|genus Monodon|mammal genus +monodon monoceros|1 +(noun)|narwhal|narwal|narwhale|Monodon monoceros|whale +monodontidae|1 +(noun)|Monodontidae|family Monodontidae|mammal family +monody|1 +(noun)|monophony|monophonic music|music +monoecious|1 +(adj)|monoecious |monecious|monoicous|autoicous|heteroicous|polyoicous|polygamous|paroicous|synoicous|synoecious +monoestrous|1 +(adj)|monestrous|estrous +monogamist|1 +(noun)|monogynist|spouse|partner|married person|mate|better half +monogamous|1 +(adj)|monogamous |monandrous|monogynous|monogynic +monogamousness|1 +(noun)|monogamy|marriage|matrimony|union|spousal relationship|wedlock +monogamy|1 +(noun)|monogamousness|marriage|matrimony|union|spousal relationship|wedlock +monogenesis|1 +(noun)|sporulation|asexual reproduction|agamogenesis +monogenic|1 +(adj)|inheritable |heritable +monogenic disease|1 +(noun)|monogenic disorder|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +monogenic disorder|1 +(noun)|monogenic disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +monogram|1 +(noun)|symbol +monograph|1 +(noun)|treatise +monogynic|1 +(adj)|monogynous|monogamous +monogynist|1 +(noun)|monogamist|spouse|partner|married person|mate|better half +monogynous|1 +(adj)|monogynic|monogamous +monogyny|1 +(noun)|monogamy|monogamousness +monohybrid|1 +(noun)|hybrid|crossbreed|cross +monohybrid cross|1 +(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +monohydrate|1 +(noun)|hydrate +monoicous|1 +(adj)|monoecious |monecious|autoicous|heteroicous|polyoicous|polygamous|paroicous|synoicous|synoecious +monolatry|1 +(noun)|worship +monolingual|1 +(adj)|monolingual +monolith|1 +(noun)|stone +monolithic|2 +(adj)|massive|monumental|large +(adj)|undiversified |unvaried +monologist|1 +(noun)|performer|performing artist +monologue|3 +(noun)|soliloquy|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|actor's line|speech|words +monologuise|1 +(verb)|monologuize|soliloquize|soliloquise|talk|speak +monologuize|1 +(verb)|monologuise|soliloquize|soliloquise|talk|speak +monomania|1 +(noun)|possession|mania|passion|cacoethes +monomaniac|1 +(noun)|sick person|diseased person|sufferer +monomaniacal|1 +(adj)|neurotic |psychoneurotic +monomer|1 +(noun)|compound|chemical compound +monometallic|1 +(adj)|chemical element|element +monomorium|1 +(noun)|Monomorium|genus Monomorium|arthropod genus +monomorium minimum|1 +(noun)|little black ant|Monomorium minimum|ant|emmet|pismire +monomorium pharaonis|1 +(noun)|pharaoh ant|pharaoh's ant|Monomorium pharaonis|ant|emmet|pismire +mononeuropathy|1 +(noun)|neuropathy +monongahela|1 +(noun)|Monongahela|Monongahela River|river +monongahela river|1 +(noun)|Monongahela|Monongahela River|river +mononuclear|1 +(adj)|mononuclear |mononucleate +mononuclear phagocyte system|1 +(noun)|MPS|system of macrophages|system +mononucleate|1 +(adj)|mononuclear +mononucleosis|1 +(noun)|infectious mononucleosis|mono|glandular fever|kissing disease|infectious disease +mononychus olecranus|1 +(noun)|Mononychus olecranus|maniraptor +monophonic|2 +(adj)|mono|single-channel|monaural +(adj)|monophonic |homophonic|monodic|monodical +monophonic music|1 +(noun)|monophony|monody|music +monophony|1 +(noun)|monophonic music|monody|music +monophthalmos|1 +(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general|full general|Macedonian +monophysite|2 +(adj)|Monophysite|Monophysitic|theological doctrine|religious doctrine|heresy|unorthodoxy +(noun)|Monophysite|disciple|adherent +monophysitic|1 +(adj)|Monophysite|Monophysitic|theological doctrine|religious doctrine|heresy|unorthodoxy +monophysitism|1 +(noun)|Monophysitism|theological doctrine|religious doctrine|heresy|unorthodoxy +monoplane|1 +(noun)|airplane|aeroplane|plane +monoplane flying fish|1 +(noun)|two-wing flying fish|flying fish +monoplegia|1 +(noun)|paralysis|palsy +monoploid|1 +(adj)|haploid |haploidic +monopolisation|1 +(noun)|monopolization|domination +monopolise|2 +(verb)|monopolize|control|command +(verb)|monopolize|have|have got|hold +monopoliser|1 +(noun)|monopolist|monopolizer|selfish person +monopolist|1 +(noun)|monopolizer|monopoliser|selfish person +monopolistic|1 +(adj)|noncompetitive +monopolization|1 +(noun)|monopolisation|domination +monopolize|2 +(verb)|monopolise|control|command +(verb)|monopolise|have|have got|hold +monopolizer|1 +(noun)|monopolist|monopoliser|selfish person +monopoly|3 +(noun)|market|marketplace +(noun)|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|Monopoly|board game +monopoly board|1 +(noun)|board|gameboard +monopsony|1 +(noun)|market|marketplace +monopteral|1 +(adj)|peripteral +monorail|1 +(noun)|railway|railroad|railroad line|railway line|railway system +monorchidism|1 +(noun)|monorchism|cryptorchidy|cryptorchidism|cryptorchism +monorchism|1 +(noun)|monorchidism|cryptorchidy|cryptorchidism|cryptorchism +monosaccharide|1 +(noun)|monosaccharose|simple sugar|carbohydrate|saccharide|sugar +monosaccharose|1 +(noun)|monosaccharide|simple sugar|carbohydrate|saccharide|sugar +monosemous|1 +(adj)|unambiguous +monosemy|1 +(noun)|clarity|lucidity|pellucidity|clearness|limpidity +monosodium glutamate|1 +(noun)|MSG|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +monosomy|1 +(noun)|chromosomal aberration|chromosomal anomaly|chrosomal abnormality|chromosonal disorder +monospaced font|1 +(noun)|typewriter font|constant-width font|fixed-width font|font|fount|typeface|face +monostotic fibrous dysplasia|1 +(noun)|fibrous dysplasia of bone +monosyllabic|1 +(adj)|syllabic +monosyllabic word|1 +(noun)|monosyllable|word +monosyllable|1 +(noun)|monosyllabic word|word +monotheism|1 +(noun)|theism +monotheist|1 +(noun)|believer|worshiper|worshipper +monotheistic|1 +(adj)|monotheistic +monotone|4 +(adj)|monotonic |decreasing monotonic|increasing monotonic +(adj)|monotonic|monotonous|unmelodious |unmelodic|unmusical +(noun)|drone|droning|intonation|modulation|pitch contour +(noun)|note|musical note|tone +monotonic|2 +(adj)|monotonic |monotone|decreasing monotonic|increasing monotonic +(adj)|monotone|monotonous|unmelodious |unmelodic|unmusical +monotonous|2 +(adj)|monotone|monotonic|unmelodious |unmelodic|unmusical +(adj)|humdrum|dull +monotony|2 +(noun)|sameness|unvariedness +(noun)|constancy|stability +monotremata|1 +(noun)|Monotremata|order Monotremata|animal order +monotreme|1 +(noun)|egg-laying mammal|prototherian +monotropa|1 +(noun)|Monotropa|genus Monotropa|dilleniid dicot genus +monotropa hypopithys|1 +(noun)|pinesap|false beachdrops|Monotropa hypopithys|wildflower|wild flower +monotropa uniflora|1 +(noun)|Indian pipe|waxflower|Monotropa uniflora|wildflower|wild flower +monotropaceae|1 +(noun)|Monotropaceae|family Monotropaceae|dilleniid dicot family +monotype|2 +(noun)|taxonomic group|taxonomic category|taxon +(noun)|typesetting machine +monotypic|1 +(adj)|taxonomic group|taxonomic category|taxon +monounsaturated fatty acid|1 +(noun)|unsaturated fatty acid +monovalent|2 +(adj)|monovalent +(adj)|monovalent |univalent +monovular|1 +(adj)|identical +monoxide|1 +(noun)|oxide +monozygotic twin|1 +(noun)|identical twin|monozygous twin|twin +monozygous twin|1 +(noun)|identical twin|monozygotic twin|twin +monro's foramen|1 +(noun)|interventricular foramen|foramen of Monro|Monro's foramen|foramen|hiatus +monroe|4 +(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress +(noun)|Monroe|James Monroe|President Monroe|President of the United States|United States President|President|Chief Executive +(noun)|Monroe|town +(noun)|Monroe|town +monroe doctrine|1 +(noun)|Monroe Doctrine|foreign policy +monrovia|1 +(noun)|Monrovia|Liberian capital|capital of Liberia|national capital|port +mons|4 +(noun)|mons veneris|mons pubis|adipose tissue|fat|fatty tissue +(noun)|Monday|Mon|weekday +(noun)|Mon|Buddhist +(noun)|Mon|Mon-Khmer +mons pubis|1 +(noun)|mons|mons veneris|adipose tissue|fat|fatty tissue +mons veneris|1 +(noun)|mons|mons pubis|adipose tissue|fat|fatty tissue +monsieur|1 +(noun)|Monsieur|man|adult male +monsignor|1 +(noun)|Monsignor|priest +monsoon|3 +(noun)|wind|air current|current of air +(noun)|rainy season +(noun)|wind|air current|current of air|rain|rainfall +monster|5 +(noun)|imaginary being|imaginary creature +(noun)|giant|goliath|behemoth|colossus|anomaly|unusual person +(noun)|freak|monstrosity|lusus naturae|mutant|mutation|variation|sport +(noun)|fiend|devil|demon|ogre|unpleasant person|disagreeable person +(noun)|teras|fetus|foetus +monstera|2 +(noun)|liana +(noun)|ceriman|edible fruit +monstera deliciosa|1 +(noun)|ceriman|Monstera deliciosa|monstera +monstrance|2 +(noun)|demonstration|proof +(noun)|vessel +monstrosity|2 +(noun)|freak|monster|lusus naturae|mutant|mutation|variation|sport +(noun)|malformation|miscreation +monstrous|3 +(adj)|large +(adj)|atrocious|flagitious|grievous|heinous|evil |wicked +(adj)|grotesque|unnatural|ugly +monstrously|3 +(adv)|hideously|horridly +(adv)|heinously +(adv)|grotesquely +mont blanc|1 +(noun)|Mont Blanc|Monte Bianco|mountain peak +montage|1 +(noun)|collage|paste-up|picture|image|icon|ikon +montagu|1 +(noun)|Montagu|Ashley Montagu|anthropologist +montagu's harrier|1 +(noun)|Montagu's harrier|Circus pygargus|harrier +montaigne|1 +(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer|author +montan wax|1 +(noun)|wax +montana|1 +(noun)|Montana|Treasure State|MT|American state +montanan|1 +(noun)|Montanan|American +montane|1 +(adj)|natural elevation|elevation +monte|1 +(noun)|four-card monte|three-card monte|card game|cards +monte bianco|1 +(noun)|Mont Blanc|Monte Bianco|mountain peak +monte carlo|1 +(noun)|Monte Carlo|town +montego bay|1 +(noun)|Montego Bay|city|metropolis|urban center|port +montenegro|1 +(noun)|Montenegro|Crna Gora|geographical area|geographic area|geographical region|geographic region +monterey|1 +(noun)|Monterey|town +monterey bay|1 +(noun)|Monterey Bay|bay +monterey cypress|1 +(noun)|Monterey cypress|Cupressus macrocarpa|cypress|cypress tree +monterey pine|1 +(noun)|Monterey pine|Pinus radiata|pine|pine tree|true pine +monterrey|1 +(noun)|Monterrey|city|metropolis|urban center +montespan|1 +(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness|marquise +montesquieu|1 +(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher +montessori|1 +(noun)|Montessori|Maria Montesorri|educator|pedagogue +monteverdi|1 +(noun)|Monteverdi|Claudio Monteverdi|composer +montevideo|1 +(noun)|Montevideo|capital of Uruguay|national capital +montez|1 +(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer|professional dancer +montezuma|1 +(noun)|Montezuma|tree +montezuma's revenge|1 +(noun)|Montezuma's revenge|diarrhea|diarrhoea|looseness of the bowels +montezuma cypress|1 +(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress +montezuma ii|1 +(noun)|Montezuma II|Emperor +montfort|1 +(noun)|Montfort|Simon de Montfort|Earl of Leicester|Earl +montgolfier|2 +(noun)|Montgolfier|Jacques Etienne Montgolfier|balloonist +(noun)|Montgolfier|Josef Michel Montgolfier|balloonist +montgomery|3 +(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer|author +(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general|full general +(noun)|Montgomery|capital of Alabama|state capital +montgomery's tubercle|1 +(noun)|Montgomery's tubercle|sebaceous gland|sebaceous follicle|glandulae sebaceae +montgomery ward|1 +(noun)|Ward|Montgomery Ward|Asron Montgomery Ward|businessman|man of affairs +month|2 +(noun)|calendar month|time period|period of time|period +(noun)|time unit|unit of time +month of sundays|1 +(noun)|month of Sundays|long time|age|years +monthlong|1 +(adj)|long +monthly|3 +(adj)|time unit|unit of time +(noun)|series|serial|serial publication +(adv)|every month|each month +montia|1 +(noun)|Montia|genus Montia|caryophylloid dicot genus +montia chamissoi|1 +(noun)|toad lily|Montia chamissoi|Indian lettuce +montia cordifolia|1 +(noun)|broad-leaved montia|Montia cordifolia|Indian lettuce +montia lamprosperma|1 +(noun)|blinks|blinking chickweed|water chickweed|Montia lamprosperma|Indian lettuce +montia perfoliata|1 +(noun)|winter purslane|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce +montmartre|1 +(noun)|Montmartre|vicinity|locality|neighborhood|neighbourhood|neck of the woods +montpelier|1 +(noun)|Montpelier|capital of Vermont|state capital +montrachet|1 +(noun)|Montrachet|Burgundy|Burgundy wine|white wine +montreal|1 +(noun)|Montreal|city|metropolis|urban center +montserrat|1 +(noun)|Montserrat|island +montserratian|3 +(adj)|Montserratian|island +(adj)|Montserratian|West Indian +(noun)|Montserratian|West Indian +monument|3 +(noun)|memorial|structure|construction +(noun)|site|land site +(noun)|repository|burial chamber|sepulcher|sepulchre|sepulture +monumental|3 +(adj)|structure|construction +(adj)|significant |important +(adj)|massive|monolithic|large +monumentalise|1 +(verb)|monumentalize|commemorate|memorialize|memorialise|immortalize|immortalise|record +monumentalize|1 +(verb)|monumentalise|commemorate|memorialize|memorialise|immortalize|immortalise|record +moo|2 +(noun)|cry +(verb)|low|utter|emit|let out|let loose +moo-cow|1 +(noun)|cow|cattle|cows|kine|oxen|Bos taurus +moo goo gai pan|1 +(noun)|dish +mooch|1 +(verb)|bum|cadge|grub|sponge|obtain +moocher|1 +(noun)|cadger|scrounger|beggar|mendicant +mood|3 +(noun)|temper|humor|humour|feeling +(noun)|climate|condition|status +(noun)|mode|modality|grammatical relation +moodiness|2 +(noun)|ill humor|ill humour|distemper +(noun)|disposition|temperament +moody|4 +(adj)|dark|dour|glowering|glum|morose|saturnine|sour|sullen|ill-natured +(adj)|temperamental|emotional +(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player +(noun)|Moody|Dwight Lyman Moody|evangelist|revivalist|gospeler|gospeller +moolah|1 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|pelf|scratch|shekels|simoleons|sugar|wampum|money +moon|9 +(noun)|satellite +(noun)|object|physical object +(noun)|lunar month|lunation|synodic month|month +(noun)|moonlight|moonshine|light|visible light|visible radiation +(noun)|Moon|Sun Myung Moon|religious leader +(noun)|satellite +(verb)|daydream|idle|laze|slug|stagnate +(verb)|moon around|moon on|idle|laze|slug|stagnate +(verb)|expose|exhibit|display +moon-curser|2 +(noun)|smuggler|runner|contrabandist|moon curser|criminal|felon|crook|outlaw|malefactor +(noun)| +moon-faced|1 +(adj)|round-faced|faced +moon-ray|2 +(noun)|moonbeam|moon ray|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +(noun)| +moon-round|1 +(adj)|moonlike|round |circular +moon-splashed|1 +(adj)|covered +moon-worship|1 +(noun)|selenolatry|worship +moon about|1 +(verb)|mope|moon around|be +moon around|2 +(verb)|moon|moon on|idle|laze|slug|stagnate +(verb)|mope|moon about|be +moon blindness|2 +(noun)|nyctalopia|night blindness|visual impairment|visual defect|vision defect|visual disorder|avitaminosis|hypovitaminosis +(noun)|mooneye|animal disease +moon carrot|1 +(noun)|stone parsley|herb|herbaceous plant +moon curser|2 +(noun)|smuggler|runner|contrabandist|moon-curser|criminal|felon|crook|outlaw|malefactor +(noun)| +moon daisy|1 +(noun)|oxeye daisy|ox-eyed daisy|marguerite|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +moon on|1 +(verb)|moon|moon around|idle|laze|slug|stagnate +moon ray|2 +(noun)|moonbeam|moon-ray|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +(noun)| +moon shell|2 +(noun)|moonshell|seasnail +(noun)| +moon shot|1 +(noun)|rocket firing|rocket launching +moon trefoil|1 +(noun)|Medicago arborea|medic|medick|trefoil +moonbeam|1 +(noun)|moon ray|moon-ray|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +mooneye|1 +(noun)|moon blindness|animal disease +moonfish|2 +(noun)|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish|carangid +(noun)|opah|Lampris regius|soft-finned fish|malacopterygian +moonflower|1 +(noun)|belle de nuit|Ipomoea alba|morning glory +moonie|1 +(noun)|Moonie|religionist|religious person +moonily|1 +(adv)|dreamily|dreamfully +moonless|1 +(adj)|moonless +moonlight|2 +(noun)|moonshine|moon|light|visible light|visible radiation +(verb)|work|do work +moonlike|1 +(adj)|moon-round|round |circular +moonlit|1 +(adj)|moonlit |moony +moonseed|1 +(noun)|vine +moonseed family|1 +(noun)|Menispermaceae|family Menispermaceae|magnoliid dicot family +moonshell|1 +(noun)|moon shell|seasnail +moonshine|3 +(noun)|moonlight|moon|light|visible light|visible radiation +(noun)|bootleg|corn liquor|corn whiskey|corn whisky|corn +(verb)|distill|extract|distil +moonshiner|1 +(noun)|bootlegger|criminal|felon|crook|outlaw|malefactor +moonstone|1 +(noun)|transparent gem|feldspar|felspar +moonstruck|1 +(adj)|lunatic|insane +moonwalk|2 +(noun)|dance step|step +(noun)|walk +moonwort|1 +(noun)|common moonwort|Botrychium lunaria|grape fern +moony|2 +(adj)|moonlit +(adj)|dreamy|woolgathering|inattentive +moor|5 +(noun)|Moor|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +(noun)|moorland|plain|field|champaign +(verb)|berth|tie up|fasten|fix|secure +(verb)|berth|wharf|dock +(verb)|fasten|fix|secure +moor-bird|2 +(noun)|red grouse|moorfowl|moorbird|moorgame|Lagopus scoticus|ptarmigan +(noun)| +moor berry|1 +(noun)|bog bilberry|bog whortleberry|Vaccinium uliginosum alpinum|blueberry|blueberry bush +moorage|3 +(noun)|fee +(noun)|mooring|berth|slip|anchorage|anchorage ground +(noun)|docking|tying up|arrival +moorbird|1 +(noun)|red grouse|moorfowl|moor-bird|moorgame|Lagopus scoticus|ptarmigan +moorcock|1 +(noun)|red grouse|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus +moore|6 +(noun)|Moore|Douglas Moore|composer +(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor|histrion|player|thespian|role player|comedian|comic +(noun)|Moore|G. E. Moore|George Edward Moore|philosopher +(noun)|Moore|Thomas Moore|poet +(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet +(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor|sculpturer|carver|statue maker +moorfowl|1 +(noun)|red grouse|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan +moorgame|1 +(noun)|red grouse|moorfowl|moorbird|moor-bird|Lagopus scoticus|ptarmigan +moorhen|2 +(noun)|Gallinula chloropus|gallinule|marsh hen|water hen|swamphen +(noun)|red grouse|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus +mooring|2 +(noun)|moorage|berth|slip|anchorage|anchorage ground +(noun)|mooring line|line +mooring anchor|1 +(noun)|anchor|ground tackle +mooring line|1 +(noun)|mooring|line +mooring mast|1 +(noun)|mooring tower|tower +mooring tower|1 +(noun)|mooring mast|tower +moorish|2 +(adj)|Moorish|Moresque|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +(noun)|Moorish|Moorish architecture|architectural style|style of architecture|type of architecture +moorish arch|1 +(noun)|Moorish arch|horseshoe arch|round arch +moorish architecture|1 +(noun)|Moorish|Moorish architecture|architectural style|style of architecture|type of architecture +moorland|1 +(noun)|moor|plain|field|champaign +moorwort|1 +(noun)|bog rosemary|Andromeda glaucophylla|andromeda +moose|1 +(noun)|elk|European elk|Alces alces|deer|cervid +moose-wood|3 +(noun)|moosewood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple +(noun)|leatherwood|moosewood|wicopy|ropebark|Dirca palustris|shrub|bush +(noun)| +moosewood|2 +(noun)|moose-wood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple +(noun)|leatherwood|moose-wood|wicopy|ropebark|Dirca palustris|shrub|bush +moot|4 +(adj)|irrelevant +(adj)|arguable|debatable|disputable|controversial +(noun)|lawsuit|suit|case|cause|causa +(verb)|consider|debate|turn over|deliberate|hash out|discuss|talk over +moot court|1 +(noun)|court|tribunal|judicature +mop|3 +(noun)|swab|swob|cleaning implement +(verb)|wipe up|mop up|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +(verb)|pout|mow|grimace|make a face|pull a face +mop-headed|1 +(adj)|branchy +mop handle|1 +(noun)|handle|grip|handgrip|hold +mop up|4 +(noun)|completion|culmination|closing|windup|termination|ending|conclusion +(verb)|wipe up|mop|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +(verb)|worst|pip|whip|rack up|beat|beat out|crush|shell|trounce|vanquish +(verb)|get through|wrap up|finish off|polish off|clear up|finish up|complete|finish +mopboard|1 +(noun)|baseboard|skirting board|molding|moulding +mope|3 +(noun)|dallier|dillydallier|dilly-dallier|lounger|idler|loafer|do-nothing|layabout|bum +(verb)|mope around|move +(verb)|moon around|moon about|be +mope around|1 +(verb)|mope|move +moped|1 +(noun)|minibike|motorbike +mopes|2 +(noun)|dumps|low spirits +(noun)|dallier|dillydallier|dilly-dallier|mope|lounger|idler|loafer|do-nothing|layabout|bum +mopper|1 +(noun)|worker +mopping|1 +(noun)|swabbing|scrub|scrubbing|scouring +moquelumnan|1 +(noun)|Moquelumnan|Miwok|Penutian +moquette|1 +(noun)|fabric|cloth|material|textile +moraceae|1 +(noun)|Moraceae|family Moraceae|mulberry family|dicot family|magnoliopsid family +moraceous|1 +(adj)|dicot family|magnoliopsid family +moraine|1 +(noun)|earth|ground +moral|7 +(adj)|motivation|motive|need +(adj)|moral |chaste|clean|clean-living|moralistic|righteous|virtuous|incorrupt|chaste|good|honorable|honourable|righteous|virtuous +(adj)|ethical|honorable|honourable|right +(adj)|conscientious +(adj)|mental +(adj)|near |close +(noun)|lesson|meaning|significance|signification|import +moral excellence|1 +(noun)|virtue|virtuousness|good|goodness +moral force|1 +(noun)|dynamic|incentive|inducement|motivator +moral hazard|1 +(noun)|financial loss +moral obligation|1 +(noun)|duty|responsibility|obligation +moral philosophy|1 +(noun)|ethics|philosophy +moral principle|2 +(noun)|ethic|value-system|value orientation|principle +(noun)|principle|precept +morale|2 +(noun)|psychological state|mental state +(noun)|esprit de corps|team spirit|disposition|temperament +morale booster|1 +(noun)|morale building|boost|encouragement +morale builder|1 +(noun)|influence +morale building|1 +(noun)|morale booster|boost|encouragement +moralisation|2 +(noun)|moralizing|moralization|philosophizing +(noun)|moralization|reform +moralise|3 +(verb)|moralize|interpret +(verb)|sermonize|sermonise|preachify|moralize|preach|advocate +(verb)|moralize|reform|reclaim|regenerate|rectify +moralism|2 +(noun)|maxim|axiom +(noun)|value judgment|value judgement +moralist|2 +(noun)|philosopher +(noun)|martinet|disciplinarian|authoritarian|dictator +moralistic|1 +(adj)|moral +morality|2 +(noun)|quality +(noun)|ethical motive|ethics|morals|motivation|motive|need +morality play|1 +(noun)|play|drama|dramatic play +moralization|2 +(noun)|moralizing|moralisation|philosophizing +(noun)|moralisation|reform +moralize|3 +(verb)|moralise|interpret +(verb)|sermonize|sermonise|preachify|moralise|preach|advocate +(verb)|moralise|reform|reclaim|regenerate|rectify +moralizing|1 +(noun)|moralization|moralisation|philosophizing +morally|1 +(adv)|virtuously +morals|2 +(noun)|ethical motive|ethics|morality|motivation|motive|need +(noun)|moral|lesson|meaning|significance|signification|import +moranzanist patriotic front|1 +(noun)|Moranzanist Patriotic Front|terrorist organization|terrorist group|foreign terrorist organization|FTO +morass|1 +(noun)|mire|quagmire|quag|bog|peat bog +moratorium|2 +(noun)|delay|hold|time lag|postponement|wait +(noun)|abeyance|suspension +moravia|1 +(noun)|Moravia|geographical area|geographic area|geographical region|geographic region +moray|1 +(noun)|moray eel|eel +moray eel|1 +(noun)|moray|eel +moray firth|1 +(noun)|Moray Firth|firth +morbid|3 +(adj)|unwholesome +(adj)|ghoulish|offensive +(adj)|diseased|pathologic|pathological|unhealthy +morbidity|3 +(noun)|deathrate|death rate|mortality|mortality rate|fatality rate|rate +(noun)|incidence|relative incidence +(noun)|unwholesomeness|morbidness|quality +morbidness|1 +(noun)|unwholesomeness|morbidity|quality +morbific|1 +(adj)|infective|pathogenic|unhealthful +morbilli|1 +(noun)|measles|rubeola|contagious disease|contagion +morbilliform|1 +(adj)|contagious disease|contagion +morceau|1 +(noun)|piece|musical composition|opus|composition|piece|piece of music +morchella|1 +(noun)|Morchella|genus Morchella|fungus genus +morchella angusticeps|1 +(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel +morchella conica|1 +(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel +morchella crassipes|1 +(noun)|Morchella crassipes|thick-footed morel|morel +morchella esculenta|1 +(noun)|common morel|Morchella esculenta|sponge mushroom|sponge morel|morel +morchella semilibera|1 +(noun)|Morchella semilibera|half-free morel|cow's head|morel +morchellaceae|1 +(noun)|Morchellaceae|family Morchellaceae|fungus family +mordacious|2 +(adj)|barbed|biting|nipping|pungent|sarcastic +(adj)|dangerous |unsafe +mordacity|1 +(noun)|disposition +mordant|2 +(adj)|black|grim|sarcastic +(noun)|coloring material|colouring material|color|colour +mordecai richler|1 +(noun)|Richler|Mordecai Richler|writer|author +mordva|2 +(noun)|Mordva|Mordvin|Mordvinian|Russian +(noun)|Mordva|Mordvin|Mordvinian|Volgaic +mordvin|2 +(noun)|Mordva|Mordvin|Mordvinian|Russian +(noun)|Mordva|Mordvin|Mordvinian|Volgaic +mordvinian|2 +(noun)|Mordva|Mordvin|Mordvinian|Russian +(noun)|Mordva|Mordvin|Mordvinian|Volgaic +more|5 +(adj)|more |more than|much +(adj)|more |more than|many more|many|more than +(adj)|additional|further|added +(noun)|More|Thomas More|Sir Thomas More|statesman|solon|national leader|writer|author +(adv)|to a greater extent +more and more|1 +(adv)|increasingly|progressively +more often than not|1 +(adv)|by and large|generally|mostly +more or less|1 +(adv)|approximately|about|close to|just about|some|roughly|around|or so +more than|3 +(adj)|more |much +(adj)|more +(adv)|to a higher degree +moreen|2 +(adj)|fabric|cloth|material|textile +(noun)|fabric|cloth|material|textile +morel|1 +(noun)|mushroom +morelia spilotes variegatus|1 +(noun)|carpet snake|Python variegatus|Morelia spilotes variegatus|python +morello|2 +(noun)|Prunus cerasus austera|sour cherry|sour cherry tree|Prunus cerasus +(noun)|sour cherry +moreover|1 +(adv)|furthermore|what is more +mores|2 +(noun)|convention|normal|pattern|rule|formula +(noun)|More|Thomas More|Sir Thomas More|statesman|solon|national leader|writer|author +moresque|1 +(adj)|Moorish|Moresque|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +moreton bay|1 +(noun)|Moreton Bay|bay +moreton bay chestnut|1 +(noun)|Moreton Bay chestnut|Australian chestnut|bean tree +moreton bay pine|1 +(noun)|hoop pine|Moreton Bay pine|Araucaria cunninghamii|araucaria +moreton bay tulipwood|1 +(noun)|Moreton Bay tulipwood|Harpullia pendula|harpullia +morgan|6 +(noun)|Morgan|Lewis Henry Morgan|anthropologist +(noun)|Morgan|Thomas Hunt Morgan|biologist|life scientist +(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate|buccaneer|sea robber|sea rover +(noun)|Morgan|Daniel Morgan|soldier +(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier|moneyman +(noun)|Morgan|saddle horse|riding horse|mount +morgan city|1 +(noun)|Morgan City|town +morgan le fay|1 +(noun)|Morgan le Fay|fairy|faery|faerie|sprite +morganatic|1 +(adj)|left-handed|legitimate +morganite|1 +(noun)|transparent gem|beryl +morgantown|1 +(noun)|Morgantown|city|metropolis|urban center +morgen|1 +(noun)|area unit|square measure +morgue|1 +(noun)|mortuary|dead room|building|edifice +moribund|2 +(adj)|stagnant|undynamic |adynamic +(adj)|dying +morion|1 +(noun)|cabasset|helmet +morlett's crocodile|1 +(noun)|Morlett's crocodile|crocodile +morley|1 +(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist +mormon|3 +(adj)|Mormon|Protestant denomination +(noun)|Mormon|prophet +(noun)|Latter-day Saint|Mormon|Protestant +mormon church|1 +(noun)|Mormon Church|Mormons|Church of Jesus Christ of Latter-day Saints|Protestant denomination +mormon cricket|1 +(noun)|Anabrus simplex|katydid +mormon state|1 +(noun)|Utah|Beehive State|Mormon State|UT|American state +mormon tabernacle|1 +(noun)|Tabernacle|Mormon Tabernacle|temple +mormonism|1 +(noun)|Mormonism|Protestantism +mormons|3 +(noun)|Mormon Church|Mormons|Church of Jesus Christ of Latter-day Saints|Protestant denomination +(noun)|Mormon|prophet +(noun)|Latter-day Saint|Mormon|Protestant +morn|1 +(noun)|morning|morning time|forenoon|time period|period of time|period +mornay sauce|1 +(noun)|Mornay sauce|cheese sauce +morning|5 +(adj)|antemeridian +(noun)|morn|morning time|forenoon|time period|period of time|period +(noun)|good morning|greeting|salutation|farewell|word of farewell +(noun)|dawn|dawning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour|time of day +(noun)|dawn|start +morning-after pill|1 +(noun)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +morning-glory family|1 +(noun)|Convolvulaceae|family Convolvulaceae|dicot family|magnoliopsid family +morning coat|1 +(noun)|swallow-tailed coat|swallowtail|jacket +morning dress|2 +(noun)|attire|garb|dress +(noun)|dress|frock +morning glory|1 +(noun)|vine +morning prayer|1 +(noun)|matins|canonical hour +morning room|1 +(noun)|living room|living-room|sitting room|front room|parlor|parlour +morning sickness|1 +(noun)|nausea|sickness +morning star|1 +(noun)|daystar|Phosphorus|planet +morning time|1 +(noun)|morning|morn|forenoon|time period|period of time|period +moro|1 +(noun)|Moro|Filipino +moro islamic liberation front|1 +(noun)|Moro Islamic Liberation Front|terrorist organization|terrorist group|foreign terrorist organization|FTO +moro reflex|1 +(noun)|startle reflex|Moro reflex|startle|jump|start +moroccan|2 +(adj)|Moroccan|Maroc|African country|African nation +(noun)|Moroccan|African +moroccan dirham|1 +(noun)|Moroccan dirham|dirham|Moroccan monetary unit +moroccan monetary unit|1 +(noun)|Moroccan monetary unit|monetary unit +morocco|2 +(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country|African nation +(noun)|leather +moron|1 +(noun)|idiot|imbecile|cretin|changeling|half-wit|retard|simpleton|simple +morone|1 +(noun)|Morone|genus Morone|fish genus +morone americana|1 +(noun)|white perch|silver perch|Morone americana|serranid fish|serranid +morone interrupta|1 +(noun)|yellow bass|Morone interrupta|serranid fish|serranid +moronic|1 +(adj)|unintelligent |stupid +moronity|1 +(noun)|mental deficiency|retardation|mental retardation|backwardness|slowness|subnormality +morose|1 +(adj)|dark|dour|glowering|glum|moody|saturnine|sour|sullen|ill-natured +moroseness|2 +(noun)|glumness|sullenness|moodiness +(noun)|sulkiness|sullenness|sourness|ill nature +morosoph|1 +(noun)|fool|sap|saphead|muggins|tomfool +morph|2 +(verb)|change|alter|modify +(verb)|contort|deform|distort|wring +morphallaxis|1 +(noun)|regeneration +morphea|1 +(noun)|scleroderma|dermatosclerosis +morpheme|1 +(noun)|language unit|linguistic unit +morphemic|1 +(adj)|language unit|linguistic unit +morpheus|1 +(noun)|Morpheus|deity|divinity|god|immortal +morphia|1 +(noun)|morphine|opiate|analgesic|anodyne|painkiller|pain pill +morphine|1 +(noun)|morphia|opiate|analgesic|anodyne|painkiller|pain pill +morphogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +morphologic|3 +(adj)|morphological|structural|biology|biological science +(adj)|morphological|grammar +(adj)|geomorphologic|geomorphological|morphological|structural +morphological|3 +(adj)|morphologic|grammar +(adj)|geomorphologic|geomorphological|morphologic|structural +(adj)|morphologic|structural|biology|biological science +morphological rule|1 +(noun)|rule of morphology|rule|linguistic rule +morphology|4 +(noun)|biology|biological science +(noun)|grammar +(noun)|sound structure|syllable structure|word structure|structure +(noun)|geomorphology|geophysics|geophysical science +morphophoneme|1 +(noun)|allomorph +morphophonemic|1 +(adj)|synchronic linguistics|descriptive linguistics +morphophonemic system|1 +(noun)|language system +morphophonemics|1 +(noun)|synchronic linguistics|descriptive linguistics +morphophysiology|1 +(noun)|functional anatomy|physiological anatomy|anatomy|general anatomy +morrigan|1 +(noun)|Morrigan|Morrigu|Celtic deity +morrigu|1 +(noun)|Morrigan|Morrigu|Celtic deity +morris|4 +(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist +(noun)|Morris|William Morris|poet|craftsman|artisan|journeyman|artificer +(noun)|Morris|Robert Morris|American Revolutionary leader|financier|moneyman +(noun)|Morris|Gouverneur Morris|statesman|solon|national leader +morris chair|1 +(noun)|Morris chair|armchair +morris dance|1 +(noun)|morris dancing|folk dancing|folk dance +morris dancer|1 +(noun)|folk dancer +morris dancing|1 +(noun)|morris dance|folk dancing|folk dance +morrison|2 +(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star +(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer|author +morristown|1 +(noun)|Morristown|town +morrow|1 +(noun)|day|twenty-four hours|solar day|mean solar day +morrow's honeysuckle|1 +(noun)|Morrow's honeysuckle|Lonicera morrowii|honeysuckle +mors|1 +(noun)|Mors|Roman deity +morse|2 +(noun)|Morse|Morse code|international Morse code|code +(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor|discoverer|artificer|painter +morse code|1 +(noun)|Morse|Morse code|international Morse code|code +morsel|2 +(noun)|small indefinite quantity|small indefinite amount +(noun)|bit|bite|taste|mouthful +morta|1 +(noun)|Morta|Roman deity +mortal|5 +(adj)|mortal |earthborn|earthly|finite +(adj)|deadly|unpardonable +(adj)|merciless |unmerciful +(adj)|deadly|deathly|fatal +(noun)|person|individual|someone|somebody|human|soul|organism|being|causal agent|cause|causal agency +mortal enemy|1 +(noun)|foe|enemy +mortal sin|1 +(noun)|deadly sin|sin|sinning +mortality|2 +(noun)|impermanence|impermanency +(noun)|deathrate|death rate|morbidity|mortality rate|fatality rate|rate +mortality rate|1 +(noun)|deathrate|death rate|morbidity|mortality|fatality rate|rate +mortality table|1 +(noun)|actuarial table|statistical table +mortar|4 +(noun)|howitzer|trench mortar|high-angle gun +(noun)|building material +(noun)|vessel +(verb)|plaster|daub +mortar fire|1 +(noun)|artillery fire|cannon fire +mortarboard|2 +(noun)|hawk|board +(noun)|cap +mortgage|2 +(noun)|security interest +(verb)|owe +mortgage-backed security|1 +(noun)|security|certificate +mortgage application|1 +(noun)|loan application +mortgage deed|1 +(noun)|deed|deed of conveyance|title +mortgage holder|1 +(noun)|mortgagee|creditor +mortgage loan|1 +(noun)|real estate loan|loan +mortgaged|1 +(adj)|encumbered +mortgagee|1 +(noun)|mortgage holder|creditor +mortgager|1 +(noun)|mortgagor|debtor +mortgagor|1 +(noun)|mortgager|debtor +mortice|3 +(noun)|mortise|hole +(verb)|mortise|cut +(verb)|mortise|join|bring together +mortician|1 +(noun)|undertaker|funeral undertaker|funeral director|skilled worker|trained worker +mortification|4 +(noun)|chagrin|humiliation|embarrassment +(noun)|necrosis|gangrene|sphacelus|death +(noun)|humiliation|case|instance|example +(noun)|self-denial|self-discipline|self-control +mortified|2 +(adj)|gangrenous|unhealthy +(adj)|embarrassed|humiliated|ashamed +mortify|4 +(verb)|subdue|cricify|discipline|train|check|condition +(verb)|subdue|cricify|control|hold in|hold|contain|check|curb|moderate +(verb)|humiliate|chagrin|humble|abase|hurt|wound|injure|bruise|offend|spite +(verb)|necrose|gangrene|sphacelate|waste|rot +mortifying|2 +(adj)|embarrassing|unpleasant +(adj)|demeaning|humbling|humiliating|undignified +mortimer|1 +(noun)|Mortimer|Roger de Mortimer|Lord|noble|nobleman +mortise|3 +(noun)|mortice|hole +(verb)|mortice|cut +(verb)|mortice|join|bring together +mortise-and-tenon joint|1 +(noun)|mortise joint|joint +mortise joint|2 +(noun)|ankle|ankle joint|articulatio talocruralis|gliding joint|articulatio plana +(noun)|mortise-and-tenon joint|joint +mortmain|2 +(noun)|dead hand|real property|real estate|realty +(noun)|dead hand|dead hand of the past|influence +morton|1 +(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician|jazzman +mortuary|3 +(adj)|organic phenomenon +(adj)|ceremony|ceremonial|ceremonial occasion|observance +(noun)|morgue|dead room|building|edifice +morula|1 +(noun)|embryo|conceptus|fertilized egg +morus|1 +(noun)|Morus|genus Morus|dicot genus|magnoliopsid genus +morus alba|1 +(noun)|white mulberry|Morus alba|mulberry|mulberry tree +morus nigra|1 +(noun)|black mulberry|Morus nigra|mulberry|mulberry tree +morus rubra|1 +(noun)|red mulberry|Morus rubra|mulberry|mulberry tree +mosaic|8 +(adj)|Mosaic|prophet +(adj)|tessellated|adorned |decorated +(noun)|art|fine art +(noun)|plant disease +(noun)|Mosaic|browser|web browser +(noun)|form|shape|pattern +(noun)|transducer +(noun)|photograph|photo|exposure|pic +mosaic culture|1 +(noun)|culture +mosaic gold|1 +(noun)|stannic sulfide|pigment +mosaic law|1 +(noun)|Mosaic law|Law of Moses|law|jurisprudence +mosaicism|1 +(noun)|condition +mosan|1 +(noun)|Mosan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +mosander|1 +(noun)|Mosander|Carl Gustaf Mossander|chemist +moschus|1 +(noun)|Moschus|genus Moschus|mammal genus +moschus moschiferus|1 +(noun)|musk deer|Moschus moschiferus|deer|cervid +moscow|1 +(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital +moselle|1 +(noun)|Moselle|white wine +moses|2 +(noun)|Moses|prophet +(noun)|Moses|Grandma Moses|Anne Mary Robertson Moses|painter +moses maimonides|1 +(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher +mosey|1 +(verb)|amble|walk +mosh|1 +(verb)|slam dance|slam|thrash|dance|trip the light fantastic|trip the light fantastic toe +moshav|1 +(noun)|village|small town|settlement +moshe dayan|1 +(noun)|Dayan|Moshe Dayan|general|full general|statesman|solon|national leader +moslem|2 +(adj)|Muslim|Moslem|Islamic|monotheism +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +moslem calendar|1 +(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar +mosque|1 +(noun)|masjid|musjid|place of worship|house of prayer|house of God|house of worship +mosquito|1 +(noun)|dipterous insect|two-winged insects|dipteran|dipteron +mosquito bite|1 +(noun)|sting|bite|insect bite +mosquito boat|1 +(noun)|PT boat|mosquito craft|motor torpedo boat|torpedo boat +mosquito craft|1 +(noun)|PT boat|mosquito boat|motor torpedo boat|torpedo boat +mosquito fern|1 +(noun)|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern|water fern +mosquito hawk|2 +(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|skeeter hawk|odonate +(noun)|nighthawk|bullbat|goatsucker|nightjar|caprimulgid +mosquito net|1 +(noun)|screen +mosquitofish|1 +(noun)|Gambusia affinis|topminnow|poeciliid fish|poeciliid|live-bearer +moss|1 +(noun)|bryophyte|nonvascular plant +moss-grown|2 +(adj)|mossy|covered +(adj)|fogyish|mossy|stick-in-the-mud|stodgy|unfashionable |unstylish +moss-trooper|1 +(noun)|marauder|predator|vulture|piranha +moss agate|1 +(noun)|agate +moss animal|1 +(noun)|bryozoan|polyzoan|sea mat|sea moss|invertebrate +moss campion|1 +(noun)|Silene acaulis|silene|campion|catchfly +moss family|1 +(noun)|family +moss genus|1 +(noun)|genus +moss green|1 +(adj)|mosstone|chromatic +moss hart|1 +(noun)|Hart|Moss Hart|dramatist|playwright +moss locust|1 +(noun)|bristly locust|rose acacia|Robinia hispida|shrub|bush +moss phlox|1 +(noun)|moss pink|mountain phlox|dwarf phlox|Phlox subulata|phlox +moss pink|2 +(noun)|ground pink|fringed pink|Linanthus dianthiflorus|phlox +(noun)|mountain phlox|moss phlox|dwarf phlox|Phlox subulata|phlox +mossad|1 +(noun)|Mossad|international intelligence agency +mossback|1 +(noun)|conservative|conservativist +mossbauer|1 +(noun)|Mossbauer|Rudolf Ludwig Mossbauer|nuclear physicist +mosstone|1 +(adj)|moss green|chromatic +mossy|2 +(adj)|moss-grown|covered +(adj)|fogyish|moss-grown|stick-in-the-mud|stodgy|unfashionable |unstylish +mossy-cup oak|1 +(noun)|bur oak|burr oak|mossycup oak|Quercus macrocarpa|white oak +mossy saxifrage|1 +(noun)|Saxifraga hypnoides|saxifrage|breakstone|rockfoil +mossycup oak|1 +(noun)|bur oak|burr oak|mossy-cup oak|Quercus macrocarpa|white oak +most|4 +(adj)|most +(adj)|most +(adv)|to the highest degree +(adv)|about|just about|almost|all but|nearly|near|nigh|virtually|well-nigh +most-favored-nation|1 +(adj)|treaty|pact|accord +most-valuable|1 +(adj)|important |of import +most especially|1 +(adv)|above all|most importantly +most evil|1 +(adj)|most wicked|worst +most importantly|2 +(adv)|first and foremost +(adv)|above all|most especially +most recently|1 +(adv)|last +most unattractive|1 +(adj)|most unsuitable|worst +most undesirable|1 +(adj)|most unpleasant|worst +most unpleasant|1 +(adj)|most undesirable|worst +most unsuitable|1 +(adj)|most unattractive|worst +most valuable player|1 +(noun)|MVP|player|participant +most wicked|1 +(adj)|most evil|worst +mostaccioli|1 +(noun)|pasta|alimentary paste +mostly|2 +(adv)|largely|for the most part +(adv)|by and large|generally|more often than not +mosul|1 +(noun)|Mosul|city|metropolis|urban center +mot|2 +(noun)|bon mot|wit|humor|humour|witticism|wittiness +(noun)|MOT|MOT test|Ministry of Transportation test|test|trial|run +mot juste|1 +(noun)|wording|diction|phrasing|phraseology|choice of words|verbiage +mot test|1 +(noun)|MOT|MOT test|Ministry of Transportation test|test|trial|run +motacilla|1 +(noun)|Motacilla|genus Motacilla|bird genus +motacillidae|1 +(noun)|Motacillidae|family Motacillidae|bird family +mote|1 +(noun)|atom|molecule|particle|corpuscle|speck|material|stuff +motel|1 +(noun)|motor hotel|motor inn|motor lodge|tourist court|court +motel room|1 +(noun)|bedroom|sleeping room|chamber|bedchamber +motet|1 +(noun)|musical composition|opus|composition|piece|piece of music +moth|1 +(noun)|lepidopterous insect|lepidopteron|lepidopteran +moth-eaten|3 +(adj)|ratty|shabby|tatty|worn +(adj)|mothy|worn +(adj)|old|stale|unoriginal +moth-resistant|1 +(adj)|mothproof|impervious |imperviable +moth bean|1 +(noun)|Vigna aconitifolia|Phaseolus aconitifolius|legume|leguminous plant +moth miller|1 +(noun)|miller|moth +moth mullein|1 +(noun)|Verbascum blattaria|mullein|flannel leaf|velvet plant +moth orchid|1 +(noun)|moth plant|orchid|orchidaceous plant +moth plant|1 +(noun)|moth orchid|orchid|orchidaceous plant +mothball|2 +(noun)|camphor ball|ball|globe|orb +(verb)|store +mother|6 +(noun)|female parent|parent +(noun)|yeast|barm +(noun)|old woman +(noun)|inspiration +(verb)|fuss|overprotect|care|give care +(verb)|beget|get|engender|father|sire|generate|bring forth|make|create +mother's boy|1 +(noun)|mamma's boy|mama's boy|son|boy +mother's daughter|1 +(noun)|daughter|girl +mother's day|1 +(noun)|Mother's Day|day +mother's milk|1 +(noun)|milk +mother's son|1 +(noun)|male|male person +mother-in-law|1 +(noun)|mother|female parent|in-law|relative-in-law +mother-in-law's tongue|2 +(noun)|snake plant|Sansevieria trifasciata|sansevieria|bowstring hemp +(noun)|dumb cane|mother-in-law plant|Dieffenbachia sequine|arum|aroid +mother-in-law plant|1 +(noun)|dumb cane|mother-in-law's tongue|Dieffenbachia sequine|arum|aroid +mother-naked|1 +(adj)|naked as the day one was born|naked as the day you were born|in one's birthday suit|in your birthday suit|unclothed +mother-of-pearl|1 +(noun)|nacre|shell +mother-of-pearl cloud|1 +(noun)|nacreous cloud|cloud +mother-of-thousands|1 +(noun)|strawberry geranium|strawberry saxifrage|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage|breakstone|rockfoil +mother board|1 +(noun)|CPU board|circuit board|circuit card|board|card +mother carey's chicken|1 +(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel +mother carey's hen|1 +(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel +mother cell|1 +(noun)|cell +mother country|1 +(noun)|fatherland|homeland|motherland|country of origin|native land|country|state|land +mother figure|1 +(noun)|woman|adult female +mother fucker|2 +(noun)|asshole|bastard|cocksucker|dickhead|shit|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)| +mother goose|1 +(noun)|Mother Goose|fictional character|fictitious character|character +mother hen|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|hen|biddy +mother hubbard|1 +(noun)|Mother Hubbard|muumuu|dress|frock +mother jones|1 +(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader +mother lode|1 +(noun)|champion lode|lode|load +mother of thyme|1 +(noun)|basil thyme|basil balm|Acinos arvensis|Satureja acinos|herb|herbaceous plant +mother seton|1 +(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader +mother superior|1 +(noun)|abbess|prioress|superior +mother teresa|1 +(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun|missionary|missioner +mother theresa|1 +(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun|missionary|missioner +mother tongue|1 +(noun)|maternal language|first language|natural language|tongue +mother wit|1 +(noun)|common sense|good sense|gumption|horse sense|sense|sagacity|sagaciousness|judgment|judgement|discernment +motherese|1 +(noun)|baby talk|babytalk|non-standard speech +motherfucker|1 +(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +motherhood|1 +(noun)|maternity|kinship|family relationship|relationship +motherland|1 +(noun)|fatherland|homeland|mother country|country of origin|native land|country|state|land +motherless|1 +(adj)|unparented |parentless +motherlike|1 +(adj)|maternal +motherliness|1 +(noun)|maternalism|maternal quality|maternity|parental quality +motherly|2 +(adj)|maternal +(adv)|maternally +motherwell|1 +(noun)|Motherwell|Robert Motherwell|painter +motherwort|1 +(noun)|Leonurus cardiaca|herb|herbaceous plant +mothproof|2 +(adj)|moth-resistant|impervious |imperviable +(verb)|protect +mothy|2 +(adj)|moth-eaten|worn +(adj)|troubled +motif|3 +(noun)|design|pattern|figure +(noun)|motive|theme|melodic theme|musical theme|idea +(noun)|theme|idea|thought +motile|2 +(adj)|mobile +(noun)|perceiver|observer|beholder +motility|2 +(noun)|mobility +(noun)|motion|movement|move|change +motion|8 +(noun)|movement|happening|occurrence|natural event +(noun)|gesture|visual communication +(noun)|movement|move|motility|change +(noun)|state +(noun)|question|proposal +(noun)|movement|move|change +(noun)|apparent motion|apparent movement|movement|optical illusion +(verb)|gesticulate|gesture|communicate|intercommunicate +motion-picture camera|1 +(noun)|movie camera|cine-camera|camera|photographic camera +motion-picture fan|1 +(noun)|moviegoer|spectator|witness|viewer|watcher|looker +motion-picture film|1 +(noun)|movie film|cine-film|film|photographic film +motion-picture photography|1 +(noun)|filming|cinematography|photography|picture taking +motion-picture show|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|picture show|pic|flick|show +motion picture|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion-picture show|picture show|pic|flick|show +motion sickness|1 +(noun)|kinetosis|ailment|complaint|ill|nausea|sickness +motion study|1 +(noun)|time and motion study|time-and-motion study|time-motion study|time study|work study|examination|scrutiny +motional|1 +(adj)|happening|occurrence|natural event +motionless|1 +(adj)|inactive|static|still|nonmoving |unmoving +motionlessness|1 +(noun)|stillness|state +motivate|1 +(verb)|actuate|propel|move|prompt|incite|cause|do|make +motivated|1 +(adj)|motivated |actuated|driven|impelled|intended +motivating|2 +(adj)|motivative|motive|causative +(noun)|motivation|act|human action|human activity +motivation|3 +(noun)|motive|need|psychological feature +(noun)|condition|status +(noun)|motivating|act|human action|human activity +motivational|1 +(adj)|psychological feature +motivative|1 +(adj)|motive|motivating|causative +motivator|1 +(noun)|incentive|inducement|rational motive +motive|4 +(adj)|motor|causative +(adj)|motivative|motivating|causative +(noun)|motivation|need|psychological feature +(noun)|motif|theme|melodic theme|musical theme|idea +motive power|1 +(noun)|locomotion|motivity|mobility +motiveless|1 +(adj)|unprovoked|wanton|unmotivated +motivity|1 +(noun)|locomotion|motive power|mobility +motley|7 +(adj)|assorted|miscellaneous|mixed|sundry|heterogeneous |heterogenous +(adj)|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|collection|aggregation|accumulation|assemblage +(noun)|garment +(noun)|fabric|cloth|material|textile +(verb)|vary|variegate|diversify +(verb)|parti-color|color|colorize|colorise|colourise|colourize|colour|color in|colour in +motley fool|1 +(noun)|jester|fool|clown|buffoon|merry andrew +motmot|1 +(noun)|momot|coraciiform bird +motoneuron|1 +(noun)|motor neuron|efferent neuron|motor nerve fiber|nerve cell|neuron +motor|5 +(adj)|centrifugal|efferent |motorial +(adj)|motive|causative +(noun)|machine +(noun)|agent +(verb)|drive|travel|go|move|locomote +motor-assisted|1 +(adj)|assisted |aided +motor aphasia|1 +(noun)|Broca's aphasia|ataxic aphasia|expressive aphasia|nonfluent aphasia|aphasia +motor area|1 +(noun)|motor region|motor cortex|Rolando's area|excitable area|cortical area|cortical region +motor ataxia|1 +(noun)|ataxia|ataxy|dyssynergia|nervous disorder|neurological disorder|neurological disease +motor city|1 +(noun)|Detroit|Motor City|Motown|city|metropolis|urban center|port +motor control|1 +(noun)|control +motor cortex|1 +(noun)|motor area|motor region|Rolando's area|excitable area|cortical area|cortical region +motor end plate|1 +(noun)|end-plate|endplate|end organ +motor home|1 +(noun)|camper|camping bus|recreational vehicle|RV +motor horn|1 +(noun)|automobile horn|car horn|horn|hooter|alarm|warning device|alarm system +motor hotel|1 +(noun)|motor inn|motor lodge|tourist court|court|hotel +motor inn|1 +(noun)|motor hotel|motor lodge|tourist court|court|hotel +motor lodge|1 +(noun)|motor hotel|motor inn|tourist court|court|hotel +motor memory|1 +(noun)|muscle memory|long-term memory|LTM +motor mower|1 +(noun)|power mower|lawn mower|mower +motor nerve|1 +(noun)|nerve|nervus +motor nerve fiber|1 +(noun)|motor neuron|efferent neuron|motoneuron|nerve cell|neuron +motor neuron|1 +(noun)|efferent neuron|motor nerve fiber|motoneuron|nerve cell|neuron +motor oil|1 +(noun)|oil|lubricant|lubricator|lubricating substance +motor pool|1 +(noun)|fleet +motor region|1 +(noun)|motor area|motor cortex|Rolando's area|excitable area|cortical area|cortical region +motor scooter|1 +(noun)|scooter|wheeled vehicle +motor torpedo boat|1 +(noun)|PT boat|mosquito boat|mosquito craft|torpedo boat +motor vehicle|1 +(noun)|automotive vehicle|self-propelled vehicle +motorbike|1 +(noun)|minibike|motorcycle|bike +motorboat|1 +(noun)|powerboat|boat +motorbus|1 +(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorcoach|omnibus|public transport +motorcade|1 +(noun)|procession +motorcar|1 +(noun)|car|auto|automobile|machine|motor vehicle|automotive vehicle +motorcoach|1 +(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|omnibus|public transport +motorcycle|2 +(noun)|bike|motor vehicle|automotive vehicle +(verb)|cycle|ride +motorcycle cop|1 +(noun)|motorcycle policeman|speed cop|policeman|police officer|officer +motorcycle policeman|1 +(noun)|motorcycle cop|speed cop|policeman|police officer|officer +motorcycling|1 +(noun)|cycling +motorcyclist|1 +(noun)|traveler|traveller +motored|1 +(adj)|motorized |motorised|bimotored|trimotored +motorial|1 +(adj)|efferent |centrifugal|motor|corticoefferent|corticofugal|corticifugal|neuromotor +motoring|1 +(noun)|driving +motorisation|1 +(noun)|motorization|implementation|effectuation +motorise|1 +(verb)|mechanize|mechanise|motorize|equip|fit|fit out|outfit +motorised|1 +(adj)|motorized |motored|bimotored|trimotored +motorist|1 +(noun)|automobilist|driver +motorization|1 +(noun)|motorisation|implementation|effectuation +motorize|3 +(verb)|equip|fit|fit out|outfit +(verb)|equip|fit|fit out|outfit +(verb)|mechanize|mechanise|motorise|equip|fit|fit out|outfit +motorized|2 +(adj)|motorized |motorised|motored|bimotored|trimotored +(adj)|mechanized|mechanised|mobile +motorized wheelchair|1 +(noun)|wheelchair +motorless|1 +(adj)|unmotorized |unmotorised +motorman|1 +(noun)|operator|manipulator +motormouth|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +motortruck|1 +(noun)|truck|motor vehicle|automotive vehicle +motorway|1 +(noun)|expressway|freeway|pike|state highway|superhighway|throughway|thruway|highway|main road +motown|1 +(noun)|Detroit|Motor City|Motown|city|metropolis|urban center|port +motrin|1 +(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +mott|1 +(noun)|Mott|Lucretia Coffin Mott|suffragist|feminist|women's rightist|women's liberationist|libber +mottle|2 +(verb)|streak|blotch|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|dapple|cloud|spot +mottled|1 +(adj)|dappled|patterned +mottling|1 +(noun)|marking +motto|1 +(noun)|slogan|catchword|shibboleth|saying|expression|locution +moue|1 +(noun)|pout|wry face|grimace|face +moufflon|1 +(noun)|mouflon|Ovis musimon|mountain sheep +mouflon|1 +(noun)|moufflon|Ovis musimon|mountain sheep +moujik|1 +(noun)|muzhik|mujik|muzjik|peasant|provincial|bucolic +moukden|1 +(noun)|Shenyang|Mukden|Moukden|Fengtien|city|metropolis|urban center +mould|7 +(noun)|mold|soil|dirt +(noun)|mold|fungus +(noun)|mold|molding|moulding|modeling|clay sculpture|sculpture +(noun)|mold|cast|container +(verb)|model|mold|shape|form|work|mold|forge +(verb)|cast|mold|shape|form|work|mold|forge +(verb)|shape|form|work|mold|forge|create from raw material|create from raw stuff +mouldboard|1 +(noun)|moldboard|wedge +mouldboard plough|1 +(noun)|moldboard plow|plow|plough +moulder|1 +(verb)|decompose|rot|molder|decay +mouldered|1 +(adj)|moldered|rotten +mouldering|1 +(adj)|decomposing|moldering|rotten +moulding|4 +(noun)|molding|decoration|ornament|ornamentation +(noun)|molding|border|edge|margin +(noun)|mold|mould|molding|modeling|clay sculpture|sculpture +(noun)|modeling|modelling|molding|sculpture|carving +mouldy|1 +(adj)|moldy|musty|stale +moult|2 +(noun)|molt|molting|moulting|ecdysis|shedding|sloughing +(verb)|shed|molt|exuviate|slough|shed|cast|cast off|shake off|throw|throw off|throw away|drop +moulter|1 +(noun)|molter|animal|animate being|beast|brute|creature|fauna +moulting|1 +(noun)|molt|molting|moult|ecdysis|shedding|sloughing +mound|6 +(noun)|hill|pitcher's mound|baseball equipment +(noun)|knoll|hillock|hummock|hammock|hill +(noun)|pile|heap|cumulus|collection|aggregation|accumulation|assemblage +(noun)|hill|structure|construction +(noun)|pitcher|position +(verb)|shape|form|work|mold|mould|forge +mound-bird|2 +(noun)|megapode|mound bird|mound builder|scrub fowl|gallinaceous bird|gallinacean +(noun)| +mound bird|2 +(noun)|megapode|mound-bird|mound builder|scrub fowl|gallinaceous bird|gallinacean +(noun)| +mound builder|2 +(noun)|Mound Builder|primitive|primitive person +(noun)|megapode|mound bird|mound-bird|scrub fowl|gallinaceous bird|gallinacean +mound over|2 +(verb)|cover +(verb)|mound +mounded over|1 +(adj)|mound +mount|13 +(noun)|saddle horse|riding horse|horse|Equus caballus +(noun)|climb|rise|ascent|ascension|ascending +(noun)|mountain|natural elevation|elevation +(noun)|setting|mounting +(noun)|backing|layer|bed|strengthener|reinforcement +(verb)|attach +(verb)|wax|climb|rise|increase +(verb)|fix|prepare|set up|ready|gear up|set +(verb)|initiate|pioneer +(verb)|hop on|mount up|get on|jump on|climb on|bestride|move +(verb)|climb|climb up|go up|rise|lift|arise|move up|go up|come up|uprise +(verb)|put on|organize|organise|prepare|devise|get up|machinate +(verb)|ride|copulate|mate|pair|couple +mount adams|1 +(noun)|Adams|Mount Adams|mountain peak +mount ararat|1 +(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak +mount asama|1 +(noun)|Asama|Mount Asama|volcano +mount athos|1 +(noun)|Athos|Mount Athos|district|territory|territorial dominion|dominion +mount bartle frere|1 +(noun)|Mount Bartle Frere|mountain peak +mount carmel|1 +(noun)|Mount Carmel|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +mount cook lily|1 +(noun)|mountain lily|Mount Cook lily|Ranunculus lyalii|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +mount elbert|1 +(noun)|Mount Elbert|mountain peak +mount etna|1 +(noun)|Etna|Mount Etna|Mt Etna|volcano +mount everest|1 +(noun)|Everest|Mount Everest|Mt. Everest|mountain peak +mount fuji|1 +(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano +mount godwin austen|1 +(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak +mount hubbard|1 +(noun)|Hubbard|Mount Hubbard|mountain peak +mount kilimanjaro|1 +(noun)|Kilimanjaro|Mount Kilimanjaro|mountain peak +mount logan|1 +(noun)|Logan|Mount Logan|mountain peak +mount mckinley|1 +(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak +mount olympus|1 +(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak +mount orizaba|1 +(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano +mount parnassus|1 +(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak +mount pinatubo|1 +(noun)|Pinatubo|Mount Pinatubo|volcano +mount ranier|1 +(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak +mount ranier national park|1 +(noun)|Mount Ranier National Park|national park +mount rushmore|1 +(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak +mount rushmore state|1 +(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state +mount saint helens|1 +(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano +mount shasta|1 +(noun)|Shasta|Mount Shasta|mountain peak +mount sherman|1 +(noun)|Sherman|Mount Sherman|mountain peak +mount sinai|1 +(noun)|Sinai|Mount Sinai|mountain peak +mount st. helens|1 +(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano +mount tacoma|1 +(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak +mount up|1 +(verb)|hop on|mount|get on|jump on|climb on|bestride|move +mount vernon|1 +(noun)|Mount Vernon|residence +mount vesuvius|1 +(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano +mount whitney|1 +(noun)|Whitney|Mount Whitney|mountain peak +mount wilson|1 +(noun)|Wilson|Mount Wilson|mountain peak +mountain|3 +(adj)|upland +(noun)|mount|natural elevation|elevation +(noun)|tons|dozens|heaps|lots|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +mountain alder|2 +(noun)|mountain maple|Acer spicatum|maple +(noun)|white alder|Alnus rhombifolia|alder|alder tree +mountain andromeda|1 +(noun)|fetterbush|mountain fetterbush|Pieris floribunda|shrub|bush +mountain anemone|1 +(noun)|Alpine anemone|Anemone tetonensis|anemone|windflower +mountain ash|3 +(noun)|angiospermous tree|flowering tree +(noun)|Eucalyptus regnans|eucalyptus|eucalypt|eucalyptus tree +(noun)|Fraxinus texensis|ash|ash tree +mountain avens|1 +(noun)|Dryas octopetala|subshrub|suffrutex +mountain azalea|1 +(noun)|alpine azalea|Loiseleuria procumbens|shrub|bush +mountain beaver|1 +(noun)|sewellel|Aplodontia rufa|rodent|gnawer|gnawing animal +mountain bike|1 +(noun)|all-terrain bike|off-roader|bicycle|bike|wheel|cycle +mountain birch|1 +(noun)|swamp birch|water birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +mountain blacksnake|1 +(noun)|black rat snake|blacksnake|pilot blacksnake|Elaphe obsoleta|rat snake +mountain bladder fern|1 +(noun)|Cystopteris montana|bladder fern +mountain blue berry|1 +(noun)|bilberry|thin-leaved bilberry|Viccinium membranaceum|blueberry|blueberry bush +mountain box|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +mountain chain|1 +(noun)|range|mountain range|range of mountains|chain|chain of mountains|geological formation|formation +mountain chinchilla|1 +(noun)|mountain viscacha|rodent|gnawer|gnawing animal +mountain clematis|1 +(noun)|purple clematis|purple virgin's bower|Clematis verticillaris|clematis +mountain climber|1 +(noun)|mountaineer|climber|adventurer|venturer +mountain climbing|1 +(noun)|mountaineering|climb|mount +mountain clubmoss|1 +(noun)|fir clubmoss|little clubmoss|Lycopodium selago|club moss|club-moss|lycopod +mountain cranberry|2 +(noun)|cowberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry +(noun)|lingonberry|cowberry|lowbush cranberry|berry +mountain daisy|1 +(noun)|mountain sandwort|mountain starwort|Arenaria groenlandica|sandwort +mountain devil|2 +(noun)|honeyflower|honey-flower|Lambertia formosa|shrub|bush +(noun)|spiny lizard|Moloch horridus|moloch +mountain ebony|1 +(noun)|orchid tree|Bauhinia variegata|angiospermous tree|flowering tree +mountain everlasting|1 +(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica +mountain fern|1 +(noun)|Oreopteris limbosperma|Dryopteris oreopteris|fern +mountain fetterbush|1 +(noun)|fetterbush|mountain andromeda|Pieris floribunda|shrub|bush +mountain fever|1 +(noun)|Rocky Mountain spotted fever|tick fever|spotted fever +mountain four o'clock|1 +(noun)|Mirabilis oblongifolia|four o'clock +mountain goat|1 +(noun)|Rocky Mountain goat|Oreamnos americanus|goat antelope +mountain gorilla|1 +(noun)|Gorilla gorilla beringei|gorilla|Gorilla gorilla +mountain grape|1 +(noun)|Oregon grape|Oregon holly grape|hollygrape|holly-leaves barberry|Mahonia aquifolium|shrub|bush +mountain heath|1 +(noun)|Phyllodoce caerulea|Bryanthus taxifolius|heath +mountain hemlock|1 +(noun)|black hemlock|Tsuga mertensiana|hemlock|hemlock tree +mountain hollyhock|1 +(noun)|Iliamna ruvularis|Iliamna acerifolia|mallow +mountain lady's slipper|1 +(noun)|Cypripedium montanum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +mountain laurel|2 +(noun)|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|Umbellularia californica|laurel +mountain lily|2 +(noun)|Lilium auratum|lily +(noun)|Mount Cook lily|Ranunculus lyalii|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +mountain lion|1 +(noun)|cougar|puma|catamount|painter|panther|Felis concolor|wildcat +mountain male fern|1 +(noun)|Dryopteris oreades|wood fern|wood-fern|woodfern +mountain man|1 +(noun)|frontiersman|backwoodsman|pioneer +mountain maple|1 +(noun)|mountain alder|Acer spicatum|maple +mountain mint|1 +(noun)|herb|herbaceous plant +mountain nyala|1 +(noun)|Tragelaphus buxtoni|antelope +mountain oak|1 +(noun)|alpine ash|Eucalyptus delegatensis|eucalyptus|eucalypt|eucalyptus tree +mountain paca|1 +(noun)|rodent|gnawer|gnawing animal +mountain parsley fern|1 +(noun)|European parsley fern|Cryptogramma crispa|rock brake +mountain partridge|1 +(noun)|mountain quail|Oreortyx picta palmeri|partridge +mountain pass|1 +(noun)|pass|notch|location +mountain peak|1 +(noun)|peak|crown|crest|top|tip|summit +mountain phlox|1 +(noun)|moss pink|moss phlox|dwarf phlox|Phlox subulata|phlox +mountain pine|3 +(noun)|pahautea|Libocedrus bidwillii|cedar|cedar tree +(noun)|western white pine|silver pine|Pinus monticola|white pine +(noun)|Swiss mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine|pine tree|true pine +mountain pride|1 +(noun)|Penstemon newberryi|wildflower|wild flower +mountain quail|1 +(noun)|mountain partridge|Oreortyx picta palmeri|partridge +mountain range|1 +(noun)|range|range of mountains|chain|mountain chain|chain of mountains|geological formation|formation +mountain rice|1 +(noun)|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass|rice grass +mountain rimu|1 +(noun)|Lepidothamnus laxifolius|Dacridium laxifolius|shrub|bush +mountain rose|1 +(noun)|Rosa pendulina|rose +mountain sandwort|1 +(noun)|mountain starwort|mountain daisy|Arenaria groenlandica|sandwort +mountain sheep|1 +(noun)|wild sheep +mountain sickness|1 +(noun)|altitude sickness +mountain skink|1 +(noun)|Eumeces callicephalus|skink|scincid|scincid lizard +mountain spinach|1 +(noun)|garden orache|Atriplex hortensis|orach|orache +mountain spleenwort|1 +(noun)|Asplenium montanum|spleenwort +mountain standard time|1 +(noun)|Mountain Time|Mountain Standard Time|MST|civil time|standard time|local time +mountain starwort|1 +(noun)|mountain sandwort|mountain daisy|Arenaria groenlandica|sandwort +mountain state|1 +(noun)|West Virginia|Mountain State|WV|American state +mountain sumac|1 +(noun)|dwarf sumac|black sumac|shining sumac|Rhus copallina|sumac|sumach|shumac +mountain swamp gum|1 +(noun)|Eucalyptus camphora|eucalyptus|eucalypt|eucalyptus tree +mountain tea|1 +(noun)|teaberry|wintergreen|checkerberry|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +mountain tent|1 +(noun)|tent|collapsible shelter +mountain time|1 +(noun)|Mountain Time|Mountain Standard Time|MST|civil time|standard time|local time +mountain trail|1 +(noun)|trail +mountain viscacha|1 +(noun)|mountain chinchilla|rodent|gnawer|gnawing animal +mountain watercress|1 +(noun)|American watercress|Cardamine rotundifolia|watercress +mountain zebra|1 +(noun)|Equus zebra zebra|zebra +mountaineer|2 +(noun)|mountain climber|climber|adventurer|venturer +(verb)|climb|climb up|mount|go up +mountaineering|1 +(noun)|mountain climbing|climb|mount +mountainous|3 +(adj)|cragged|craggy|hilly|rough |unsmooth +(adj)|large +(adj)|upland +mountainside|1 +(noun)|versant|slope|incline|side +mountebank|1 +(noun)|charlatan|deceiver|cheat|cheater|trickster|beguiler|slicker +mounted|2 +(adj)|affixed +(adj)|adorned |decorated +mounter|2 +(noun)|skilled worker|trained worker +(noun)|climber|ascender +mountie|1 +(noun)|Mountie|policeman|police officer|officer +mounties|2 +(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police|police force|constabulary|law|international law enforcement agency +(noun)|Mountie|policeman|police officer|officer +mounting|2 +(noun)|climb|climbing|rise|rising|ascent|ascension +(noun)|framework|frame|framing +mourn|2 +(verb)|grieve|sorrow +(verb)|observe|celebrate|keep +mourner|1 +(noun)|griever|sorrower|lamenter|unfortunate|unfortunate person +mournful|2 +(adj)|plaintive|sorrowful +(adj)|doleful|sad +mournful widow|1 +(noun)|sweet scabious|pincushion flower|Scabiosa atropurpurea|scabious|scabiosa +mournfulness|1 +(noun)|sorrowfulness|ruthfulness|sorrow +mourning|3 +(adj)|bereaved|bereft|grief-stricken|grieving|sorrowing|sorrowful +(noun)|bereavement|sadness|sorrow|sorrowfulness +(noun)|lamentation|activity|expression|manifestation|reflection|reflexion +mourning band|1 +(noun)|weeds|band +mourning cloak|1 +(noun)|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +mourning cloak butterfly|1 +(noun)|mourning cloak|Camberwell beauty|Nymphalis antiopa|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +mourning dove|1 +(noun)|Zenaidura macroura|dove +mourning ring|1 +(noun)|ring|band +mouse|4 +(noun)|rodent|gnawer|gnawing animal +(noun)|computer mouse|electronic device +(verb)|sneak|creep|steal|pussyfoot|walk +(verb)|manipulate +mouse's nest|1 +(noun)|mouse nest|nest +mouse-colored|1 +(adj)|mousy|mouselike|chromatic +mouse-ear chickweed|1 +(noun)|mouse eared chickweed|mouse ear|clammy chickweed|chickweed|herb|herbaceous plant +mouse-ear cress|1 +(noun)|Arabidopsis thaliana|cress|cress plant +mouse-ear hawkweed|1 +(noun)|Pilosella officinarum|Hieracium pilocella|hawkweed +mouse-eared bat|1 +(noun)|carnivorous bat|microbat +mouse-tooth forceps|1 +(noun)|forceps +mouse button|1 +(noun)|push button|push|button +mouse click|1 +(noun)|click|depression +mouse deer|1 +(noun)|chevrotain|ruminant +mouse ear|2 +(noun)|forget-me-not|Myosotis scorpiodes|herb|herbaceous plant +(noun)|mouse-ear chickweed|mouse eared chickweed|clammy chickweed|chickweed|herb|herbaceous plant +mouse eared chickweed|1 +(noun)|mouse-ear chickweed|mouse ear|clammy chickweed|chickweed|herb|herbaceous plant +mouse hare|1 +(noun)|pika|rock rabbit|coney|cony|lagomorph|gnawing mammal +mouse mat|1 +(noun)|mousepad|mat +mouse nest|1 +(noun)|mouse's nest|nest +mouselike|1 +(adj)|mousy|mouse-colored|chromatic +mousepad|1 +(noun)|mouse mat|mat +mouser|1 +(noun)|domestic cat|house cat|Felis domesticus|Felis catus +mousetrap|2 +(noun)|trap +(noun)|trap play|maneuver|manoeuvre|play +mousey|1 +(adj)|mousy|timid +moussaka|1 +(noun)|dish +mousse|4 +(noun)|dessert|sweet|afters +(noun)|dish +(noun)|hair mousse|hair gel|toiletry|toilet article|toiletries +(verb)|gel|groom|neaten +mousseline de sole|1 +(noun)|fabric|cloth|material|textile +moussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +moustache|1 +(noun)|mustache|hair +moustache cup|1 +(noun)|mustache cup|cup +moustachio|1 +(noun)|mustachio|handle-bars|mustache|moustache +mousy|2 +(adj)|mousey|timid +(adj)|mouse-colored|mouselike|chromatic +mouth|11 +(noun)|oral cavity|oral fissure|rima oris|rima +(noun)|orifice|opening|porta +(noun)|opening|gap +(noun)|geological formation|formation +(noun)|eater|feeder +(noun)|mouthpiece|spokesperson|interpreter|representative|voice +(noun)|sass|sassing|backtalk|back talk|lip|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +(noun)|opening +(verb)|talk|speak|utter|verbalize|verbalise|communicate|intercommunicate|mouth off +(verb)|feign|sham|pretend|affect|dissemble +(verb)|touch +mouth-to-mouth resuscitation|1 +(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|kiss of life|resuscitation|emergency procedure +mouth-watering|1 +(adj)|savory|savoury|tasty|appetizing |appetising +mouth bow|1 +(noun)|jew's harp|jews' harp|musical instrument|instrument +mouth harp|1 +(noun)|harmonica|mouth organ|harp|free-reed instrument +mouth hole|1 +(noun)|hole +mouth off|1 +(verb)|rant|jabber|spout|rabbit on|rave|talk|speak|utter|mouth|verbalize|verbalise +mouth organ|1 +(noun)|harmonica|harp|mouth harp|free-reed instrument +mouthbreeder|1 +(noun)|fish +mouthful|2 +(noun)|containerful +(noun)|taste|small indefinite quantity|small indefinite amount +mouthless|1 +(adj)|astomatous +mouthlike|1 +(adj)|stomatous +mouthpart|1 +(noun)|extremity|appendage|member +mouthpiece|6 +(noun)|aperture +(noun)|acoustic device +(noun)|mouth|spokesperson|interpreter|representative|voice +(noun)|gumshield|sports equipment|sporting goods +(noun)|tube|tubing +(noun)|embouchure|aperture +mouthwash|1 +(noun)|gargle|solution +mouton|1 +(noun)|mutton|meat +movability|1 +(noun)|movableness|mobility +movable|2 +(adj)|portable +(adj)|moveable|transferable|transferrable|transportable|mobile +movable barrier|1 +(noun)|barrier +movable feast|1 +(noun)|moveable feast|feast day|fete day +movableness|1 +(noun)|movability|mobility +move|20 +(noun)|decision|determination|conclusion +(noun)|relocation|change +(noun)|motion|movement|motility|change +(noun)|motion|movement|change +(noun)|turn|play +(verb)|travel|go|locomote|move on|move out|move back +(verb)|displace +(verb)|move over +(verb)|go|proceed|act +(verb)|be active +(verb)|change|alter|vary +(verb)|act +(verb)|affect|impress|strike +(verb)|motivate|actuate|propel|prompt|incite|cause|do|make +(verb)|affect|impress|strike +(verb)|sell +(verb)|go|run|change +(verb)|live +(verb)|go +(verb)|make a motion|propose|suggest|advise +move around|2 +(verb)|turn|travel|go|move|locomote +(verb)|travel|travel|go|move|locomote +move back|1 +(verb)|withdraw|retreat|pull away|draw back|recede|pull back|retire|travel|go|move|locomote +move back and forth|1 +(verb)|move +move in|3 +(verb)|occupy|reside|lodge in +(verb)|pull in|get in|draw in|arrive|get|come +(verb)|move +move in on|2 +(verb)|intrude|irrupt +(verb)|take hold|take charge|take control +move into|1 +(verb)|enter|come in|get into|get in|go into|go in|move in +move involuntarily|1 +(verb)|move reflexively|move +move on|1 +(verb)|advance|progress|pass on|march on|go on|travel|go|move|locomote +move out|2 +(verb)|take out|remove +(verb)|move +move over|1 +(verb)|give way|give|ease up|yield|move +move reflexively|1 +(verb)|move involuntarily|move +move up|2 +(verb)|rise|lift|arise|go up|come up|uprise|travel|go|move|locomote +(verb)|rise|change +moveable|1 +(adj)|movable|transferable|transferrable|transportable|mobile +moveable feast|1 +(noun)|movable feast|feast day|fete day +moved|1 +(adj)|moved |affected|stirred|touched|enraptured|rapt|captive|affected|emotional +movement|11 +(noun)|motion|move|motility|change +(noun)|motion|happening|occurrence|natural event +(noun)|motion|move|change +(noun)|social movement|front|social group +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|campaign|cause|crusade|drive|effort|venture +(noun)|apparent motion|motion|apparent movement|optical illusion +(noun)|bowel movement|bm|defecation|laxation|shitting +(noun)|drift|trend|inclination|disposition|tendency +(noun)|action|action mechanism +(noun)|change +movement for revenge|1 +(noun)|Tareekh e Kasas|Movement for Revenge|terrorist organization|terrorist group|foreign terrorist organization|FTO +movement of holy warriors|1 +(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization|terrorist group|foreign terrorist organization|FTO +mover|4 +(noun)|workman|working man|working person +(noun)|proposer|originator|conceiver|mastermind +(noun)|traveler|traveller +(noun)|public mover|moving company|removal firm|removal company|company +mover and shaker|1 +(noun)|shaker|person|individual|someone|somebody|mortal|human|soul +movie|1 +(noun)|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show +movie actor|1 +(noun)|screen actor|actor|histrion|player|thespian|role player +movie camera|1 +(noun)|motion-picture camera|cine-camera|camera|photographic camera +movie film|1 +(noun)|motion-picture film|cine-film|film|photographic film +movie house|1 +(noun)|cinema|movie theater|movie theatre|picture palace|theater|theatre|house +movie industry|1 +(noun)|film industry|screenland|industry +movie maker|1 +(noun)|film maker|filmmaker|film producer|producer +movie projector|1 +(noun)|cine projector|film projector|projector +movie star|1 +(noun)|film star|star|principal|lead|screen actor|movie actor +movie theater|1 +(noun)|cinema|movie theatre|movie house|picture palace|theater|theatre|house +movie theatre|1 +(noun)|cinema|movie theater|movie house|picture palace|theater|theatre|house +moviegoer|1 +(noun)|motion-picture fan|spectator|witness|viewer|watcher|looker +movimiento revolucionario tupac anaru|1 +(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization|terrorist group|foreign terrorist organization|FTO +moving|3 +(adj)|moving |active|afoot|agitated|tossing|ahorse|ahorseback|automotive|self-propelled|self-propelling|awheel|riding|billowing|rolling|tumbling|blown|fast-flying|flying|flowing|streaming|hurling|hurtling|kinetic|mobile|oncoming|restless|itinerant|road|touring|traveling|shifting|soaring|spinning|whirling|squirming|twisting|wiggling|wiggly|wriggling|wriggly|writhing|unreeling|unwinding|vibrating|vibratory|whirling|swirling|aflare|flaring|flying|waving|heaving|running|mobile +(adj)|moving |affecting|poignant|touching|haunting|heartwarming|stirring|soul-stirring|emotional|impressive|stimulating +(adj)|moving |animated +moving-coil galvanometer|1 +(noun)|galvanometer +moving-picture show|1 +(noun)|movie|film|picture|moving picture|motion picture|motion-picture show|picture show|pic|flick|show +moving company|1 +(noun)|mover|public mover|removal firm|removal company|company +moving expense|1 +(noun)|expense|disbursal|disbursement +moving in|1 +(noun)|occupation|occupancy|taking possession|acquiring|getting +moving picture|1 +(noun)|movie|film|picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show +moving ridge|1 +(noun)|wave|movement|motion +moving staircase|1 +(noun)|escalator|moving stairway|stairway|staircase|stairs|steps +moving stairway|1 +(noun)|escalator|moving staircase|stairway|staircase|stairs|steps +moving van|1 +(noun)|van +mow|3 +(noun)|hayloft|loft|attic|garret +(verb)|cut down|cut +(verb)|pout|mop|grimace|make a face|pull a face +mow down|1 +(verb)|massacre|slaughter|kill +mower|1 +(noun)|lawn mower|garden tool|lawn tool +mown|1 +(adj)|mown |cut +moxie|1 +(noun)|backbone|grit|guts|sand|gumption|fortitude +moxie plum|1 +(noun)|creeping snowberry|maidenhair berry|Gaultheria hispidula|shrublet +mozambican|3 +(adj)|Mozambican|African country|African nation +(adj)|Mozambican|African +(noun)|Mozambican|African +mozambique|1 +(noun)|Mozambique|Republic of Mozambique|Mocambique|African country|African nation +mozambique channel|1 +(noun)|Mozambique Channel|channel +mozambique monetary unit|1 +(noun)|Mozambique monetary unit|monetary unit +mozart|2 +(noun)|Mozart|Wolfgang Amadeus Mozart|composer +(noun)|Mozart|music +mozartean|1 +(adj)|Mozartian|Mozartean|composer +mozartian|1 +(adj)|Mozartian|Mozartean|composer +mozzarella|1 +(noun)|cheese +mp|2 +(noun)|military policeman|MP|lawman|law officer|peace officer +(noun)|military police|MP|force|personnel +mph|2 +(noun)|miles per hour|rate +(noun)|miles per hour|reading|meter reading|indication +mps|3 +(noun)|mononuclear phagocyte system|MPS|system of macrophages|system +(noun)|military policeman|MP|lawman|law officer|peace officer +(noun)|military police|MP|force|personnel +mr|1 +(noun)|mister|Mr|man|adult male +mr. moto|1 +(noun)|Mr. Moto|fictional character|fictitious character|character +mrd|1 +(noun)|machine readable dictionary|MRD|electronic dictionary|lexical database +mri|1 +(noun)|magnetic resonance imaging|MRI|imaging|tomography +mrna|1 +(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid|RNA +mrs|2 +(noun)|Mrs|wife|married woman +(noun)|mister|Mr|man|adult male +mrs. gandhi|1 +(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman|solon|national leader +mrs. henry wood|1 +(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer|author +mrs. humphrey ward|1 +(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer|author +mrs. simpson|1 +(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee|grass widow +mrta|1 +(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization|terrorist group|foreign terrorist organization|FTO +ms|4 +(noun)|multiple sclerosis|MS|disseminated sclerosis|disseminated multiple sclerosis|sclerosis|induration|degenerative disorder +(noun)|Mississippi|Magnolia State|MS|American state +(noun)|Master of Science|MS|SM|MSc|master's degree +(noun)|manuscript|writing|written material|piece of writing +ms-dos|1 +(noun)|MS-DOS|Microsoft disk operating system|DOS|disk operating system +ms.|5 +(noun)|Ms.|woman|adult female +(noun)|multiple sclerosis|MS|disseminated sclerosis|disseminated multiple sclerosis|sclerosis|induration|degenerative disorder +(noun)|Mississippi|Magnolia State|MS|American state +(noun)|Master of Science|MS|SM|MSc|master's degree +(noun)|manuscript|ms|writing|written material|piece of writing +msasa|1 +(noun)|Brachystegia speciformis|tree +msb|1 +(noun)|mutual savings bank|MSB|savings bank +msc|1 +(noun)|Master of Science|MS|SM|MSc|master's degree +msec|1 +(noun)|millisecond|time unit|unit of time +msg|1 +(noun)|monosodium glutamate|MSG|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +msh|1 +(noun)|melanocyte-stimulating hormone|MSH|hormone|endocrine|internal secretion +mst|1 +(noun)|Mountain Time|Mountain Standard Time|MST|civil time|standard time|local time +mt|3 +(noun)|metric ton|MT|tonne|t|metric weight unit|weight unit +(noun)|Montana|Treasure State|MT|American state +(noun)|machine translation|MT|artificial intelligence|AI|computational linguistics +mt. ararat|1 +(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak +mt. everest|1 +(noun)|Everest|Mount Everest|Mt. Everest|mountain peak +mt. mckinley|1 +(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak +mt. olympus|1 +(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak +mt. ranier|1 +(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak +mt. rushmore|1 +(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak +mt. st. helens|1 +(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano +mt. vesuvius|1 +(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano +mt etna|1 +(noun)|Etna|Mount Etna|Mt Etna|volcano +mt orizaba|1 +(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano +mu|1 +(noun)|letter|letter of the alphabet|alphabetic character +mu-meson|1 +(noun)|muon|negative muon|lepton +muadhdhin|1 +(noun)|muezzin|muazzin|announcer +muammar al-qaddafi|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +muammar el-qaddafi|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +muazzin|1 +(noun)|muezzin|muadhdhin|announcer +mubarak|1 +(noun)|Mubarak|Hosni Mubarak|statesman|solon|national leader +much|5 +(adj)|much |overmuch|some|such|so much|untold|more|more than +(noun)|large indefinite quantity|large indefinite amount +(adv)|a lot|a good deal|a great deal|very much +(adv)|practically +(adv)|a great deal|often +much as|1 +(adv)|very much like +muchness|1 +(noun)|magnitude +mucic acid|1 +(noun)|carboxylic acid +muciferous|1 +(adj)|secretion +mucilage|2 +(noun)|gum +(noun)|glue|gum|cement +mucilaginous|1 +(adj)|gluey|glutinous|gummy|pasty|sticky|viscid|viscous|adhesive +mucin|1 +(noun)|glycoprotein +mucinoid|1 +(adj)|glycoprotein +mucinous|1 +(adj)|glycoprotein +muck|5 +(noun)|sludge|slime|goo|gook|guck|gunk|ooze|substance|matter +(noun)|droppings|dung|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(verb)|remove|take|take away|withdraw +(verb)|manure|spread|scatter|spread out +(verb)|mire|mud|muck up|dirty|soil|begrime|grime|colly|bemire +muck about|1 +(verb)|putter|mess around|potter|tinker|monkey|monkey around|muck around|work +muck around|1 +(verb)|putter|mess around|potter|tinker|monkey|monkey around|muck about|work +muck up|2 +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|spoil|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|mire|muck|mud|dirty|soil|begrime|grime|colly|bemire +muckheap|1 +(noun)|dunghill|midden|muckhill|pile|heap|mound|cumulus +muckhill|1 +(noun)|dunghill|midden|muckheap|pile|heap|mound|cumulus +muckle|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +muckrake|1 +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +muckraker|1 +(noun)|mudslinger|detractor|disparager|depreciator|knocker +muckraking|1 +(noun)|exposure +mucky|2 +(adj)|boggy|marshy|miry|muddy|quaggy|sloughy|swampy|wet +(adj)|muddy|dirty |soiled|unclean +mucocutaneous|1 +(adj)|membrane|tissue layer|connective tissue|body covering +mucocutaneous leishmaniasis|1 +(noun)|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis|leishmaniosis|kala azar +mucocutaneous lymph node syndrome|1 +(noun)|Kawasaki disease|disease +mucoid|2 +(adj)|mucoidal|secretion +(noun)|glycoprotein +mucoidal|1 +(adj)|mucoid|secretion +mucopolysaccharide|1 +(noun)|polysaccharide|polyose +mucopolysaccharidosis|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +mucopurulent|1 +(adj)|secretion|liquid body substance|bodily fluid|body fluid|humor|humour +mucor|1 +(noun)|mold|mould +mucoraceae|1 +(noun)|Mucoraceae|family Mucoraceae|fungus family +mucorales|1 +(noun)|Mucorales|order Mucorales|fungus order +mucosa|1 +(noun)|mucous membrane|membrane|tissue layer +mucosal|1 +(adj)|membrane|tissue layer +mucose|1 +(adj)|mucous|secretion +mucous|1 +(adj)|mucose|secretion +mucous colitis|1 +(noun)|irritable bowel syndrome|spastic colon|colitis|inflammatory bowel disease +mucous membrane|1 +(noun)|mucosa|membrane|tissue layer +mucous secretion|1 +(noun)|mucus|secretion +mucoviscidosis|1 +(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|fibrosis|monogenic disorder|monogenic disease +mucuna|1 +(noun)|shrub|bush +mucuna aterrima|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +mucuna deeringiana|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +mucuna pruriens utilis|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +mucus|1 +(noun)|mucous secretion|secretion +mud|4 +(noun)|clay|soil|dirt +(noun)|slander +(verb)|mire|muck|muck up|dirty|soil|begrime|grime|colly|bemire +(verb)|plaster|daub +mud-beplastered|1 +(adj)|covered +mud-wrestle|2 +(verb)|mudwrestle|wrestle +(verb)| +mud bath|1 +(noun)|bath +mud dauber|1 +(noun)|sphecoid wasp|sphecoid +mud digger|1 +(noun)|ditch digger|digger +mud flat|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +mud hen|1 +(noun)|American coot|marsh hen|water hen|Fulica americana|coot +mud midget|1 +(noun)|bogmat|Wolffiella gladiata|duckweed +mud pie|1 +(noun)|mud|clay +mud plantain|1 +(noun)|water star grass|Heteranthera dubia|aquatic plant|water plant|hydrophyte|hydrophytic plant +mud puddle|1 +(noun)|pool|puddle +mud puppy|3 +(noun)|Necturus maculosus|salamander +(noun)|hellbender|Cryptobranchus alleganiensis|salamander +(noun)|axolotl|Ambystoma mexicanum|ambystomid|ambystomid salamander +mud stain|1 +(noun)|stain|discoloration|discolouration +mud turtle|1 +(noun)|turtle +mudcat|2 +(noun)|catfish|freshwater fish +(noun)|flathead catfish|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish|siluriform fish +mudder|1 +(noun)|racehorse|race horse|bangtail +muddied|1 +(adj)|dirty|dingy|muddy|impure +muddiness|1 +(noun)|cloudiness|murkiness|opacity|opaqueness +muddle|4 +(noun)|clutter|jumble|mare's nest|welter|smother|disorderliness|disorder +(noun)|fix|hole|jam|mess|pickle|kettle of fish|difficulty +(verb)|puddle|roil|rile +(verb)|addle|puddle|jumble|confuse|mix up +muddled|1 +(adj)|addled|befuddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused +muddleheaded|1 +(adj)|addlebrained|addlepated|potty|puddingheaded|confused +muddy|7 +(adj)|boggy|marshy|miry|mucky|quaggy|sloughy|swampy|wet +(adj)|mucky|dirty |soiled|unclean +(adj)|dirty|dingy|muddied|impure +(adj)|cloudy|mirky|murky|turbid|opaque +(verb)|muddy up|dirty|soil|begrime|grime|colly|bemire +(verb)|confuse|blur|obscure|obnubilate +(verb)|change|alter|modify +muddy up|1 +(verb)|muddy|dirty|soil|begrime|grime|colly|bemire +mudguard|1 +(noun)|splash guard|splash-guard|fender|wing +mudhif|1 +(noun)|hovel|hut|hutch|shack|shanty +mudra|1 +(noun)|gesture +mudskipper|1 +(noun)|mudspringer|goby|gudgeon +mudslide|1 +(noun)|landslide|landslip +mudslinger|1 +(noun)|muckraker|detractor|disparager|depreciator|knocker +mudspringer|1 +(noun)|mudskipper|goby|gudgeon +mudwrestle|1 +(verb)|mud-wrestle|wrestle +muenchen|1 +(noun)|Munich|Muenchen|city|metropolis|urban center +muenster|1 +(noun)|Muenster|cheese +muesli|1 +(noun)|breakfast food +muezzin|1 +(noun)|muazzin|muadhdhin|announcer +muff|4 +(noun)|handwear|hand wear +(noun)|fumble|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|fail|neglect +(verb)|botch|bumble|fumble|botch up|blow|flub|screw up|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +muffin|1 +(noun)|gem|quick bread +muffin man|1 +(noun)|peddler|pedlar|packman|hawker|pitchman +muffle|3 +(noun)|kiln +(verb)|smother|stifle|strangle|repress|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|mute|dull|damp|dampen|tone down|soften +muffled|2 +(adj)|dull|muted|softened|soft +(adj)|covered +muffler|3 +(noun)|silencer|acoustic device +(noun)|scarf +(noun)|damper|device +mufti|2 +(noun)|jurist|legal expert +(noun)|civilian clothing|civilian dress|civilian garb|plain clothes +mug|5 +(noun)|mugful|containerful +(noun)|chump|fool|gull|mark|patsy|fall guy|sucker|soft touch|victim|dupe +(noun)|countenance|physiognomy|phiz|visage|kisser|smiler|face|human face +(noun)|drinking vessel +(verb)|hold up|stick up +mug's game|1 +(noun)|attempt|effort|endeavor|endeavour|try +mug book|1 +(noun)|mug file|file|data file +mug file|1 +(noun)|mug book|file|data file +mug shot|2 +(noun)|mugshot|photograph|photo|exposure|pic +(noun)| +mug up|1 +(verb)|cram|grind away|drum|bone up|swot|get up|swot up|bone|study|hit the books +mugful|1 +(noun)|mug|containerful +muggee|1 +(noun)|victim +mugger|1 +(noun)|robber +mugginess|1 +(noun)|humidity|humidness +mugging|1 +(noun)|assault +muggins|1 +(noun)|fool|sap|saphead|tomfool|simpleton|simple +muggy|1 +(adj)|steamy|sticky|wet +mugho pine|1 +(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugo pine|Pinus mugo|pine|pine tree|true pine +mugil|1 +(noun)|Mugil|genus Mugil|fish genus +mugil cephalus|1 +(noun)|striped mullet|Mugil cephalus|mullet|gray mullet +mugil curema|1 +(noun)|white mullet|Mugil curema|mullet|gray mullet +mugil liza|1 +(noun)|liza|Mugil liza|mullet|gray mullet +mugilidae|1 +(noun)|Mugilidae|family Mugilidae|fish family +mugiloidea|1 +(noun)|Mugiloidea|suborder Mugiloidea|animal order +mugo pine|1 +(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|Pinus mugo|pine|pine tree|true pine +mugshot|1 +(noun)|mug shot|photograph|photo|exposure|pic +mugwort|1 +(noun)|wormwood +mugwump|2 +(noun)|Mugwump|politician|politico|pol|political leader +(noun)|independent|fencesitter|individualist +muhammad|2 +(noun)|Muhammad|Elijah Muhammad|Black Muslim +(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet +muhammad ali|2 +(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier +(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter|gladiator +muhammad ali jinnah|1 +(noun)|Jinnah|Muhammad Ali Jinnah|statesman|solon|national leader +muhammadan|2 +(adj)|Muhammadan|Mohammedan|prophet +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +muhammadan calendar|1 +(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar +muhammadanism|2 +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism +muhammedan|1 +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +muharram|1 +(noun)|Muharram|Moharram|Muharrum|Islamic calendar month +muharrum|1 +(noun)|Muharram|Moharram|Muharrum|Islamic calendar month +muhlenbergia|1 +(noun)|Muhlenbergia|genus Muhlenbergia|monocot genus|liliopsid genus +muhlenbergia schreberi|1 +(noun)|nimblewill|nimble Will|Muhlenbergia schreberi|grass +muir|1 +(noun)|Muir|John Muir|naturalist|natural scientist +muishond|1 +(noun)|weasel +mujahadeen|1 +(noun)|mujahidin|mujahedin|mujahedeen|mujahadin|mujahideen|mujahadein|military unit|military force|military group|force +mujahadein|1 +(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahideen|military unit|military force|military group|force +mujahadin|1 +(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahideen|mujahadein|military unit|military force|military group|force +mujahedeen|1 +(noun)|mujahidin|mujahedin|mujahadeen|mujahadin|mujahideen|mujahadein|military unit|military force|military group|force +mujahedeen khalq|1 +(noun)|Mujahedeen Khalq|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahideen|mujahadein +mujahedin|1 +(noun)|mujahidin|mujahedeen|mujahadeen|mujahadin|mujahideen|mujahadein|military unit|military force|military group|force +mujahid|1 +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +mujahideen|1 +(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahadein|military unit|military force|military group|force +mujahidin|1 +(noun)|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahideen|mujahadein|military unit|military force|military group|force +mujahidin-e khalq organization|1 +(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization|terrorist group|foreign terrorist organization|FTO +mujik|1 +(noun)|muzhik|moujik|muzjik|peasant|provincial|bucolic +mujtihad|1 +(noun)|scholar|scholarly person|student|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +mukalla|1 +(noun)|Mukalla|Al-Mukalla|city|metropolis|urban center|port +mukataa|1 +(noun)|headquarters|central office|main office|home office|home base +mukden|1 +(noun)|Shenyang|Mukden|Moukden|Fengtien|city|metropolis|urban center +mulatto|1 +(noun)|Mulatto|mixed-blood +mulberry|2 +(noun)|mulberry tree|fruit tree +(noun)|berry +mulberry family|1 +(noun)|Moraceae|family Moraceae|dicot family|magnoliopsid family +mulberry fig|1 +(noun)|sycamore|sycamore fig|Ficus sycomorus|fig tree +mulberry tree|1 +(noun)|mulberry|fruit tree +mulch|2 +(noun)|protective covering|protective cover|protection +(verb)|cover +mulct|3 +(noun)|fine|amercement|penalty +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|gyp|con|cheat|rip off|chisel +(verb)|levy|impose +mule|2 +(noun)|equine|equid +(noun)|mules|scuff|scuffs|slipper|carpet slipper +mule's ears|1 +(noun)|Wyethia amplexicaulis|wildflower|wild flower +mule deer|1 +(noun)|burro deer|Odocoileus hemionus|deer|cervid +mule driver|1 +(noun)|muleteer|mule skinner|skinner|laborer|manual laborer|labourer|jack +mule fat|1 +(noun)|Baccharis viminea|shrub|bush +mule skinner|1 +(noun)|muleteer|mule driver|skinner|laborer|manual laborer|labourer|jack +mules|3 +(noun)|mule|scuff|scuffs|slipper|carpet slipper +(noun)|mule|equine|equid +(noun)|mule|scuff|scuffs|slipper|carpet slipper +muleteer|1 +(noun)|mule skinner|mule driver|skinner|laborer|manual laborer|labourer|jack +muliebrity|2 +(noun)|womanhood|adulthood +(noun)|femininity|trait +mulish|1 +(adj)|hardheaded|stubborn +mulishly|1 +(adv)|stubbornly|pig-headedly|obdurately|obstinately|cussedly +mulishness|1 +(noun)|stubbornness|obstinacy|obstinance|intractability|intractableness +mull|4 +(noun)|promontory|headland|foreland +(noun)|Mull|island +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull over|ruminate|speculate|think|cogitate|cerebrate +(verb)|sweeten|dulcify|edulcorate|dulcorate +mull over|1 +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|ruminate|speculate|think|cogitate|cerebrate +mulla|1 +(noun)|Mullah|Mollah|Mulla|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +mullah|1 +(noun)|Mullah|Mollah|Mulla|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +mullah mohammed omar|1 +(noun)|Mullah Omar|Mullah Mohammed Omar|politician|politico|pol|political leader +mullah omar|1 +(noun)|Mullah Omar|Mullah Mohammed Omar|politician|politico|pol|political leader +mulled cider|1 +(noun)|sweet cider +mulled wine|1 +(noun)|wine|vino +mullein|1 +(noun)|flannel leaf|velvet plant|herb|herbaceous plant +mullein pink|1 +(noun)|rose campion|gardener's delight|dusty miller|Lychnis coronaria|lychnis|catchfly +muller|9 +(noun)|Muller|Paul Hermann Muller|chemist +(noun)|Muller|Karl Alex Muller|nuclear physicist +(noun)|Muller|Johannes Peter Muller|physiologist|anatomist +(noun)|Muller|Johann Muller|Regiomontanus|mathematician|astronomer|uranologist|stargazer +(noun)|Muller|Max Muller|Friedrich Max Muller|philologist|philologue +(noun)|Muller|Hermann Joseph Muller|geneticist +(noun)|muser|ponderer|ruminator|thinker +(noun)|pestle|pounder|tool +(noun)|vessel +mullet|3 +(noun)|gray mullet|fish +(noun)|gray mullet|percoid fish|percoid|percoidean +(noun)|percoid fish|percoid|percoidean|bottom feeder +mullidae|1 +(noun)|Mullidae|family Mullidae|fish family +mulligan|1 +(noun)|mulligan stew|Irish burgoo|stew +mulligan stew|1 +(noun)|mulligan|Irish burgoo|stew +mulligatawny|1 +(noun)|soup +mullion|1 +(noun)|strip|slip +mullioned|1 +(adj)|divided +mulloidichthys|1 +(noun)|Mulloidichthys|genus Mulloidichthys|fish genus +mulloidichthys martinicus|1 +(noun)|yellow goatfish|Mulloidichthys martinicus|goatfish|red mullet|surmullet|Mullus surmuletus +mulloway|1 +(noun)|jewfish|Sciaena antarctica|sciaenid fish|sciaenid +mullus|1 +(noun)|Mullus|genus Mullus|fish genus +mullus auratus|1 +(noun)|red goatfish|Mullus auratus|goatfish|red mullet|surmullet|Mullus surmuletus +mullus surmuletus|1 +(noun)|goatfish|red mullet|surmullet|Mullus surmuletus|mullet +multi-ethnic|2 +(adj)|multiethnic|social +(adj)| +multi-valued|1 +(adj)|multivalent|ambiguous +multibank holding company|1 +(noun)|bank holding company +multicellular|1 +(adj)|cellular +multichannel recorder|1 +(noun)|recorder|recording equipment|recording machine +multicollinearity|1 +(noun)|multiple regression|multiple correlation +multicolor|1 +(adj)|motley|calico|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +multicolored|1 +(adj)|motley|calico|multicolor|multicolour|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +multicolour|1 +(adj)|motley|calico|multicolor|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +multicoloured|1 +(adj)|motley|calico|multicolor|multicolour|multicolored|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +multicultural|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +multiculturalism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +multidimensional|1 +(adj)|multidimensional |dimensional|two-dimensional|flat|three-dimensional|third-dimensional|three-d|four-dimensional +multidimensional language|1 +(noun)|programming language|programing language +multiengine airplane|1 +(noun)|multiengine plane|airplane|aeroplane|plane +multiengine plane|1 +(noun)|multiengine airplane|airplane|aeroplane|plane +multiethnic|1 +(adj)|multi-ethnic|social +multifaceted|1 +(adj)|many-sided|multifarious|varied +multifactorial|1 +(adj)|complex +multifarious|1 +(adj)|many-sided|multifaceted|varied +multifariously|1 +(adv)|variously|diversely +multifariousness|1 +(noun)|diverseness|diversity|variety|heterogeneity|heterogeneousness +multiflora|1 +(noun)|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose +multiflora rose|1 +(noun)|multiflora|Japanese rose|baby rose|Rosa multiflora|rose +multiform|1 +(adj)|multiform |polymorphic|polymorphous +multigraph|1 +(verb)|print|impress +multilane|1 +(adj)|multilane |divided|dual-lane|two-lane|three-lane|four-lane +multilateral|1 +(adj)|multilateral |many-sided|multipartite|quadrilateral|four-sided|quadripartite|four-party|tetramerous|three-cornered|trilateral|triangular|three-sided|triangular|trilateral|tripartite|three-party|three-way +multilevel|1 +(adj)|structure|construction +multilingual|1 +(adj)|multilingual |bilingual|polyglot|trilingual +multimedia|1 +(noun)|multimedia system|transmission +multimedia system|1 +(noun)|multimedia|transmission +multinational|1 +(adj)|transnational|international +multinomial|2 +(adj)|polynomial|sum|amount|total +(noun)|polynomial|sum|amount|total +multinucleate|1 +(adj)|multinucleate |organelle|cell organ +multiparous|1 +(adj)|multiparous |biparous|twinning +multipartite|1 +(adj)|multilateral |many-sided +multiphase|1 +(adj)|polyphase|point|point in time +multiple|2 +(adj)|multiple |aggregate|bigeminal|binary|double|doubled|twofold|double|dual|duple|double|dual|twofold|treble|threefold|duplex|manifold|multiplex|ternary|treble|triple|triplex|treble|threefold|triple|triune|quadruple|fourfold|quadruple|quadruplicate|quadruplex|fourfold|quaternate|quaternary|quintuple|fivefold|sextuple|sixfold|septuple|sevenfold|octuple|eightfold|nonuple|ninefold|tenfold|denary +(noun)|product|mathematical product +multiple-choice|1 +(adj)|multiple-choice +multiple correlation|1 +(noun)|multiple regression|multivariate analysis +multiple correlation coefficient|1 +(noun)|correlation coefficient|coefficient of correlation|correlation +multiple fruit|1 +(noun)|aggregate fruit|syncarp|fruit +multiple mononeuropathy|1 +(noun)|neuropathy +multiple myeloma|1 +(noun)|myeloma +multiple neuritis|1 +(noun)|polyneuritis|neuritis +multiple personality|1 +(noun)|split personality|dissociative disorder +multiple regression|1 +(noun)|multiple correlation|multivariate analysis +multiple sclerosis|1 +(noun)|MS|disseminated sclerosis|disseminated multiple sclerosis|sclerosis|induration|degenerative disorder +multiple star|1 +(noun)|star +multiple voting|1 +(noun)|vote|ballot|voting|balloting +multiplex|3 +(adj)|manifold|multiple +(adj)|complex +(noun)|telecommunication|telecom +multiplex operation|1 +(noun)|operation +multiplexer|1 +(noun)|electronic device +multiplicand|1 +(noun)|number +multiplication|3 +(noun)|times|arithmetic operation +(noun)|generation|propagation|reproduction|procreation|breeding|facts of life +(noun)|increase|increment|growth +multiplicative|1 +(adj)|increasing +multiplicative inverse|1 +(noun)|reciprocal|inverse|opposite +multiplicity|2 +(noun)|magnitude +(noun)|numerousness|numerosity|number|figure +multiplied|1 +(adj)|increased +multiplier|1 +(noun)|multiplier factor|number +multiplier factor|1 +(noun)|multiplier|number +multiplier onion|1 +(noun)|shallot|eschalot|Allium cepa aggregatum|Allium ascalonicum|onion|onion plant|Allium cepa +multiply|4 +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|manifold|increase +(verb)|breed|reproduce|procreate +(verb)|reproduce|procreate|make|create +multipotent|1 +(adj)|potent |strong +multiprocessing|1 +(noun)|parallel processing|data processing +multiprocessor|1 +(noun)|digital computer +multiprogramming|1 +(noun)|concurrent execution|execution|instruction execution +multipurpose|1 +(adj)|useful |utile +multiracial|1 +(adj)|racial +multistage|1 +(noun)|time period|period of time|period +multistage rocket|1 +(noun)|booster|booster rocket|booster unit|takeoff booster|takeoff rocket|rocket|rocket engine +multistorey|1 +(adj)|multistory|multistoried|high-rise +multistoried|1 +(adj)|multistory|multistorey|high-rise +multistory|1 +(adj)|multistorey|multistoried|high-rise +multitude|3 +(noun)|battalion|large number|plurality|pack|large indefinite quantity|large indefinite amount +(noun)|throng|concourse|gathering|assemblage +(noun)|masses|mass|hoi polloi|people|group|grouping +multitudinous|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +multitudinousness|1 +(noun)|numerousness|numerosity|multiplicity +multivalence|1 +(noun)|polyvalence|polyvalency|multivalency|state +multivalency|1 +(noun)|polyvalence|polyvalency|multivalence|state +multivalent|3 +(adj)|multivalent +(adj)|polyvalent +(adj)|multi-valued|ambiguous +multivariate|1 +(adj)|variable +multivariate analysis|1 +(noun)|statistical method|statistical procedure +multiversity|1 +(noun)|university +multivitamin|1 +(noun)|multivitamin pill|vitamin pill +multivitamin pill|1 +(noun)|multivitamin|vitamin pill +mulwi|1 +(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara +mum|4 +(adj)|silent|uncommunicative |incommunicative +(noun)|florist's chrysanthemum|florists' chrysanthemum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum +(noun)|ma|mama|mamma|mom|momma|mommy|mammy|mummy|mater|mother|female parent +(noun)|secrecy|secretiveness|silence +mumbai|1 +(noun)|Mumbai|Bombay|city|metropolis|urban center +mumble|2 +(verb)|mutter|maunder|mussitate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|gum|chew|masticate|manducate|jaw +mumble-the-peg|1 +(noun)|mumblety-peg|child's game +mumbler|1 +(noun)|mutterer|speaker|talker|utterer|verbalizer|verbaliser +mumblety-peg|1 +(noun)|mumble-the-peg|child's game +mumbling|3 +(adj)|muttering|speaking +(noun)|enunciation|diction +(noun)|gumming|chew|chewing|mastication|manduction +mumbo jumbo|2 +(noun)|gibberish|gibber +(noun)|hugger-mugger|confusion +mumification necrosis|1 +(noun)|dry gangrene|cold gangrene|mummification|gangrene|sphacelus|slough +mummer|1 +(noun)|mime|mimer|pantomimer|pantomimist|actor|histrion|player|thespian|role player +mummery|1 +(noun)|flummery|nonsense|bunk|nonsensicality|meaninglessness|hokum +mummichog|1 +(noun)|Fundulus heteroclitus|killifish +mummification|3 +(noun)|condition|status +(noun)|dry gangrene|cold gangrene|mumification necrosis|gangrene|sphacelus|slough +(noun)|embalmment +mummify|3 +(verb)|continue|uphold|carry on|bear on|preserve +(verb)|embalm +(verb)|dry up|shrivel|shrivel up|shrink|wither +mummy|2 +(noun)|ma|mama|mamma|mom|momma|mommy|mammy|mum|mater|mother|female parent +(noun)|body|dead body +mummy-brown|1 +(adj)|snuff|snuff-brown|chukker-brown|chromatic +mumps|1 +(noun)|epidemic parotitis|infectious disease +mumpsimus|1 +(noun)|notion +munch|3 +(noun)|Munch|Edvard Munch|painter +(noun)|bite|chomp +(verb)|crunch|chew|masticate|manducate|jaw +munchausen|1 +(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist|raconteur +munchausen's syndrome|1 +(noun)|Munchausen's syndrome|Munchausen syndrome|syndrome +munchausen syndrome|1 +(noun)|Munchausen's syndrome|Munchausen syndrome|syndrome +munchener|1 +(noun)|Munich beer|Munchener|lager|lager beer +muncher|1 +(noun)|chewer +munchhausen|1 +(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist|raconteur +muncie|1 +(noun)|Muncie|town +munda|1 +(noun)|Munda|Austro-Asiatic|Munda-Mon-Khmer +munda-mon-khmer|1 +(noun)|Austro-Asiatic|Munda-Mon-Khmer|natural language|tongue +mundane|3 +(adj)|everyday|quotidian|routine|unremarkable|workaday|ordinary +(adj)|terrestrial|worldly +(adj)|terrene|earthly +mundanely|1 +(adv)|terrestrially +mung|1 +(noun)|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +mung bean|1 +(noun)|mung|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +mungo park|1 +(noun)|Park|Mungo Park|explorer|adventurer +munich|1 +(noun)|Munich|Muenchen|city|metropolis|urban center +munich beer|1 +(noun)|Munich beer|Munchener|lager|lager beer +municipal|2 +(adj)|gathering|assemblage +(adj)|domestic +municipal bond|1 +(noun)|bond|bond certificate +municipal center|1 +(noun)|civic center|down town|hub +municipal government|1 +(noun)|local government +municipal note|1 +(noun)|note|promissory note|note of hand +municipality|2 +(noun)|urban area|populated area|administrative district|administrative division|territorial division +(noun)|gathering|assemblage +munificence|1 +(noun)|largess|largesse|magnanimity|openhandedness|liberality|liberalness +munificent|1 +(adj)|lavish|overgenerous|prodigal|too-generous|unsparing|unstinted|unstinting|generous +munificently|1 +(adv)|liberally|generously +muniments|1 +(noun)|title deed +munition|3 +(noun)|weaponry|arms|implements of war|weapons system|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +(noun)|fortification|defensive structure|defense|defence +(verb)|arm +munitions|3 +(noun)|ordnance|ordnance stores|armament +(noun)|weaponry|arms|implements of war|weapons system|munition|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +(noun)|fortification|munition|defensive structure|defense|defence +munitions industry|1 +(noun)|arms industry|industry +munj|1 +(noun)|munja|Saccharum bengalense|Saccharum munja|grass +munja|1 +(noun)|munj|Saccharum bengalense|Saccharum munja|grass +munjeet|1 +(noun)|Indian madder|Rubia cordifolia|madderwort|rubiaceous plant +munjuk|1 +(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara +munro|1 +(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer|author +muntiacus|1 +(noun)|Muntiacus|genus Muntiacus|mammal genus +muntingia|1 +(noun)|Muntingia|genus Muntingia|dilleniid dicot genus +muntingia calabura|1 +(noun)|Jamaican cherry|calabur tree|calabura|silk wood|silkwood|Muntingia calabura|tree +muntjac|1 +(noun)|barking deer|deer|cervid +muntz metal|1 +(noun)|alpha-beta brass|Muntz metal|yellow metal|brass +muon|1 +(noun)|negative muon|mu-meson|lepton +muraenidae|1 +(noun)|Muraenidae|family Muraenidae|fish family +mural|2 +(adj)|partition|divider +(noun)|wall painting|painting|picture +muralist|1 +(noun)|painter +muramidase|1 +(noun)|lysozyme|enzyme +murder|3 +(noun)|slaying|execution|homicide +(verb)|slay|hit|dispatch|bump off|polish off|remove|kill +(verb)|mangle|mutilate|falsify|distort|garble|warp +murder charge|1 +(noun)|murder indictment|indictment|bill of indictment +murder conviction|1 +(noun)|conviction|judgment of conviction|condemnation|sentence +murder indictment|1 +(noun)|murder charge|indictment|bill of indictment +murder mystery|1 +(noun)|mystery|mystery story|whodunit +murder suspect|1 +(noun)|suspect +murdered|1 +(adj)|dead +murderee|1 +(noun)|victim +murderer|1 +(noun)|liquidator|manslayer|criminal|felon|crook|outlaw|malefactor|killer|slayer +murderess|1 +(noun)|murderer|liquidator|manslayer +murderous|1 +(adj)|cutthroat|homicidal|bloody +murderously|1 +(adv)|amok|amuck +murderousness|2 +(noun)|hate|hatred +(noun)|bloodthirstiness|cruelty|cruelness|harshness +murdoch|2 +(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher +(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer|author +muriatic acid|1 +(noun)|hydrochloric acid +muridae|1 +(noun)|Muridae|family Muridae|mammal family +muriel sarah spark|1 +(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer|author +muriel spark|1 +(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer|author +murillo|1 +(noun)|Murillo|Bartolome Esteban Murillo|painter +murine|2 +(adj)|mammal family +(noun)|rodent|gnawer|gnawing animal +murine typhus|1 +(noun)|rat typhus|urban typhus|endemic typhus|typhus|typhus fever +muritaniya|1 +(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country|African nation +murk|2 +(noun)|fog|fogginess|murkiness|atmosphere|atmospheric state +(verb)|darken +murkiness|2 +(noun)|fog|fogginess|murk|atmosphere|atmospheric state +(noun)|cloudiness|muddiness|opacity|opaqueness +murky|2 +(adj)|cloudy|muddy|mirky|turbid|opaque +(adj)|mirky|shaded +murmansk|1 +(noun)|Murmansk|city|metropolis|urban center|port +murmur|6 +(noun)|mutter|muttering|murmuring|murmuration|mussitation|sound +(noun)|murmur vowel|schwa|shwa +(noun)|heart murmur|cardiac murmur|symptom +(noun)|grumble|grumbling|murmuring|mutter|muttering|complaint +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|mutter|grumble|croak|gnarl|complain|kick|plain|sound off|quetch|kvetch +murmur vowel|1 +(noun)|murmur|schwa|shwa +murmuration|1 +(noun)|mutter|muttering|murmur|murmuring|mussitation|sound +murmuring|3 +(adj)|susurrant|whispering|soft +(noun)|mutter|muttering|murmur|murmuration|mussitation|sound +(noun)|grumble|grumbling|murmur|mutter|muttering|complaint +murmurous|1 +(adj)|rustling|soughing|susurrous|soft +muroidea|1 +(noun)|Muroidea|superfamily Muroidea|mammal family +murphy|1 +(noun)|potato|white potato|Irish potato|spud|tater|root vegetable|solanaceous vegetable +murphy's law|1 +(noun)|Murphy's Law|Sod's Law|gnome +murphy bed|1 +(noun)|Murphy bed|bed +murrain|1 +(noun)|animal disease +murray|3 +(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist|classical scholar +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +(noun)|Murray|Murray River|river +murray gell-mann|1 +(noun)|Gell-Mann|Murray Gell-Mann|nuclear physicist +murray river|1 +(noun)|Murray|Murray River|river +murre|1 +(noun)|guillemot +murrow|1 +(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist +murrumbidgee|1 +(noun)|Murrumbidgee|Murrumbidgee River|river +murrumbidgee river|1 +(noun)|Murrumbidgee|Murrumbidgee River|river +mus|2 +(noun)|Mus|genus Mus|mammal genus +(noun)|mu|letter|letter of the alphabet|alphabetic character +mus musculus|1 +(noun)|house mouse|Mus musculus|mouse +mus rose|1 +(noun)|musk mallow|Malva moschata|mallow +musa|1 +(noun)|Musa|genus Musa|monocot genus|liliopsid genus +musa acuminata|1 +(noun)|dwarf banana|Musa acuminata|banana|banana tree +musa basjoo|1 +(noun)|Japanese banana|Musa basjoo|banana|banana tree +musa ensete|1 +(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb|herbaceous plant +musa paradisiaca|1 +(noun)|plantain|plantain tree|Musa paradisiaca|banana|banana tree +musa paradisiaca sapientum|1 +(noun)|edible banana|Musa paradisiaca sapientum|banana|banana tree +musa textilis|1 +(noun)|abaca|Manila hemp|Musa textilis|banana|banana tree +musaceae|1 +(noun)|Musaceae|family Musaceae|banana family|monocot family|liliopsid family +musales|1 +(noun)|Musales|order Musales|plant order +musca|2 +(noun)|Musca|constellation +(noun)|Musca|genus Musca|arthropod genus +musca domestica|1 +(noun)|housefly|Musca domestica|fly +musca volitans|1 +(noun)|muscae volitantes|floater|spots|symptom +muscadel|1 +(noun)|muscat|muscatel|muscadelle|fortified wine +muscadelle|1 +(noun)|muscat|muscatel|muscadel|fortified wine +muscadet|2 +(noun)|Muscadet|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Muscadet|white wine +muscadine|2 +(noun)|Vitis rotundifolia|grape|grapevine +(noun)|bullace grape|grape +muscae volitantes|1 +(noun)|musca volitans|floater|spots|symptom +muscardinus|1 +(noun)|Muscardinus|genus Muscardinus|mammal genus +muscardinus avellanarius|1 +(noun)|hazel mouse|Muscardinus avellanarius|dormouse +muscari|1 +(noun)|Muscari|genus Muscari|liliid monocot genus +muscari comosum|1 +(noun)|tassel hyacinth|Muscari comosum|grape hyacinth +muscari neglectum|1 +(noun)|common grape hyacinth|Muscari neglectum|grape hyacinth +muscat|4 +(noun)|muskat|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Muscat|Masqat|capital of Oman|national capital|port +(noun)|muscatel|muscadel|muscadelle|fortified wine +(noun)|muscatel|muscat grape|vinifera grape +muscat and oman|1 +(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country|Asian nation +muscat grape|1 +(noun)|muscat|muscatel|vinifera grape +muscatel|2 +(noun)|muscat|muscadel|muscadelle|fortified wine +(noun)|muscat|muscat grape|vinifera grape +musci|1 +(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class +muscicapa|1 +(noun)|Muscicapa|genus Muscicapa|bird genus +muscicapa grisola|1 +(noun)|spotted flycatcher|Muscicapa striata|Muscicapa grisola|Old World flycatcher|true flycatcher|flycatcher +muscicapa striata|1 +(noun)|spotted flycatcher|Muscicapa striata|Muscicapa grisola|Old World flycatcher|true flycatcher|flycatcher +muscicapidae|1 +(noun)|Muscicapidae|family Muscicapidae|bird family +muscidae|1 +(noun)|Muscidae|family Muscidae|arthropod family +muscivora|1 +(noun)|Muscivora|genus Muscivora|bird genus +muscivora-forficata|1 +(noun)|scissortail|scissortailed flycatcher|Muscivora-forficata|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +muscle|6 +(noun)|musculus|contractile organ|contractor +(noun)|muscular tissue|animal tissue +(noun)|muscleman|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +(noun)|authority|authorization|authorisation|dominance|say-so +(noun)|brawn|sinew|strength +(verb)|pass|go through|go across +muscle-bound|1 +(adj)|inflexible +muscle-builder|3 +(noun)|bodybuilder|muscle builder|musclebuilder|muscleman|person|individual|someone|somebody|mortal|human|soul +(noun)| +(noun)| +muscle builder|3 +(noun)|bodybuilder|muscle-builder|musclebuilder|muscleman|person|individual|someone|somebody|mortal|human|soul +(noun)| +(noun)| +muscle building|2 +(noun)|bodybuilding|anaerobic exercise|musclebuilding|exercise|exercising|physical exercise|physical exertion|workout +(noun)| +muscle cell|1 +(noun)|muscle fiber|muscle fibre|somatic cell|vegetative cell +muscle contraction|1 +(noun)|contraction|muscular contraction|shortening +muscle fiber|1 +(noun)|muscle cell|muscle fibre|somatic cell|vegetative cell +muscle fibre|1 +(noun)|muscle cell|muscle fiber|somatic cell|vegetative cell +muscle into|1 +(verb)|push|force +muscle memory|1 +(noun)|motor memory|long-term memory|LTM +muscle relaxant|1 +(noun)|relaxant +muscle spasm|1 +(noun)|spasm|cramp|symptom +muscle system|1 +(noun)|muscular structure|musculature|system +muscle tone|1 +(noun)|muscular tonus|tonicity|tonus|tone +musclebuilder|1 +(noun)|bodybuilder|muscle builder|muscle-builder|muscleman|person|individual|someone|somebody|mortal|human|soul +musclebuilding|1 +(noun)|bodybuilding|anaerobic exercise|muscle building|exercise|exercising|physical exercise|physical exertion|workout +muscleman|2 +(noun)|muscle|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +(noun)|bodybuilder|muscle builder|muscle-builder|musclebuilder|person|individual|someone|somebody|mortal|human|soul +muscoidea|1 +(noun)|Muscoidea|superfamily Muscoidea|arthropod family +muscovite|3 +(adj)|Muscovite|Russian +(noun)|mica|isinglass +(noun)|Muscovite|Russian +muscovy|1 +(noun)|Muscovy|principality|princedom +muscovy duck|1 +(noun)|musk duck|Cairina moschata|duck +muscular|4 +(adj)|contractile organ|contractor +(adj)|mesomorphic |athletic +(adj)|powerful +(adj)|brawny|hefty|powerful|sinewy|strong +muscular contraction|1 +(noun)|contraction|muscle contraction|shortening +muscular dystrophy|1 +(noun)|dystrophy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +muscular structure|1 +(noun)|musculature|muscle system|system +muscular tissue|1 +(noun)|muscle|animal tissue +muscular tonus|1 +(noun)|muscle tone|tonicity|tonus|tone +musculature|1 +(noun)|muscular structure|muscle system|system +musculophrenic artery|1 +(noun)|arteria musculophrenica|artery|arteria|arterial blood vessel +musculophrenic vein|1 +(noun)|vena musculophrenica|vein|vena|venous blood vessel +musculoskeletal|1 +(adj)|contractile organ|contractor|system +musculoskeletal system|1 +(noun)|system +musculospiral nerve|1 +(noun)|radial nerve|nervus radialis|nerve|nervus +musculus|1 +(noun)|muscle|contractile organ|contractor +musculus abductor digiti minimi manus|1 +(noun)|abductor|abductor muscle +musculus abductor digiti minimi pedis|1 +(noun)|abductor|abductor muscle +musculus abductor hallucis|1 +(noun)|abductor|abductor muscle +musculus abductor pollicis|1 +(noun)|abductor|abductor muscle +musculus adductor brevis|1 +(noun)|adductor|adductor muscle +musculus adductor hallucis|1 +(noun)|adductor|adductor muscle +musculus adductor longus|1 +(noun)|adductor|adductor muscle +musculus adductor magnus|1 +(noun)|great adductor muscle|adductor|adductor muscle +musculus anconeus|1 +(noun)|anconeous muscle|skeletal muscle|striated muscle +musculus articularis cubiti|1 +(noun)|articular muscle +musculus articularis genus|1 +(noun)|articular muscle +musculus biceps brachii|1 +(noun)|biceps brachii|biceps humeri|biceps +musculus biceps femoris|1 +(noun)|femoral biceps|biceps +musculus buccinator|1 +(noun)|cheek muscle|buccinator muscle|facial muscle +musculus deltoideus|1 +(noun)|deltoid|deltoid muscle|skeletal muscle|striated muscle +musculus intercostalis|1 +(noun)|intercostal|intercostal muscle|skeletal muscle|striated muscle +musculus obliquus externus abdominis|1 +(noun)|external oblique muscle|abdominal external oblique muscle|oblique|abdominal|abdominal muscle|ab +musculus pectoralis|1 +(noun)|pectoral|pectoral muscle|pectoralis|pecs|skeletal muscle|striated muscle +musculus pectoralis major|1 +(noun)|pectoralis major|greater pectoral muscle|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +musculus pectoralis minor|1 +(noun)|pectoralis minor|smaller pectoral muscle|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +musculus quadriceps femoris|1 +(noun)|quadriceps|quadriceps femoris|quad|extensor muscle|extensor +musculus rhomboideus major|1 +(noun)|rhomboideus major muscle|greater rhomboid muscle|rhomboid|rhomboid muscle +musculus rhomboideus minor|1 +(noun)|rhomboid minor muscle|lesser rhomboid muscle|rhomboid|rhomboid muscle +musculus sartorius|1 +(noun)|sartorius|sartorius muscle|skeletal muscle|striated muscle +musculus scalenus|1 +(noun)|scalenus|scalene muscle|skeletal muscle|striated muscle +musculus serratus anterior|1 +(noun)|anterior serratus muscle|serratus anterior|serratus magnus|serratus|serratus muscles +musculus serratus posterior|1 +(noun)|posterior serratus muscle|serratus posterior|serratus|serratus muscles +musculus sphincter ani|1 +(noun)|anal sphincter|sphincter ani|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter ani externus|1 +(noun)|skeletal muscle|striated muscle +musculus sphincter ani internus|1 +(noun)|smooth muscle|involuntary muscle +musculus sphincter ductus choledochi|1 +(noun)|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter ductus pancreatici|1 +(noun)|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter pupillae|1 +(noun)|pupillary sphincter|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter pylori|1 +(noun)|pyloric sphincter|pyloric valve|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter urethrae|1 +(noun)|urethral sphincter|sphincter|anatomical sphincter|sphincter muscle +musculus sphincter vesicae|1 +(noun)|bladder sphincter|sphincter|anatomical sphincter|sphincter muscle +musculus sternocleidomastoideus|1 +(noun)|sternocleidomastoid|sternocleidomastoid muscle|sternocleido mastoideus|skeletal muscle|striated muscle +musculus temporalis|1 +(noun)|temporalis muscle|temporal muscle|temporalis|skeletal muscle|striated muscle +musculus teres major|1 +(noun)|teres major|teres major muscle|teres|teres muscle +musculus teres minor|1 +(noun)|teres minor|teres minor muscle|teres|teres muscle +musculus tibialis|1 +(noun)|tibialis|tibialis muscle|skeletal muscle|striated muscle +musculus transversalis abdominis|1 +(noun)|transversus abdominis muscle|transverse muscle of abdomen|transversus abdominis|abdominal|abdominal muscle|ab +musculus trapezius|1 +(noun)|trapezius|trapezius muscle|cowl muscle|skeletal muscle|striated muscle +musculus triceps brachii|1 +(noun)|triceps brachii|triceps +musd|1 +(noun)|Doctor of Music|DMus|MusD|doctor's degree|doctorate +muse|3 +(noun)|Muse|Greek deity +(noun)|source|seed|germ +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +muser|1 +(noun)|muller|ponderer|ruminator|thinker +musette|1 +(noun)|shepherd's pipe|bagpipe|pipes +musette pipe|1 +(noun)|oboe|hautboy|hautbois +museum|1 +(noun)|depository|deposit|repository +musgoi|1 +(noun)|Daba|Kola|Musgoi|Biu-Mandara +musgu|1 +(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara +mush|6 +(noun)|pulp|mass +(noun)|cornmeal mush|hot cereal +(noun)|treacle|sentimentalism +(noun)|journey|journeying +(verb)|drive +(verb)|sled|sleigh +musher|1 +(noun)|traveler|traveller +mushiness|2 +(noun)|softness +(noun)|schmaltz|shmaltz|schmalz|mawkishness|sentimentality|drippiness +mushroom|6 +(noun)|agaric +(noun)|basidiomycete|basidiomycetous fungi +(noun)|mushroom cloud|mushroom-shaped cloud|cloud +(noun)|vegetable|veggie +(verb)|pick|pluck|cull +(verb)|grow +mushroom-shaped cloud|1 +(noun)|mushroom|mushroom cloud|cloud +mushroom anchor|1 +(noun)|anchor|ground tackle +mushroom cloud|1 +(noun)|mushroom|mushroom-shaped cloud|cloud +mushroom coral|1 +(noun)|stony coral|madrepore|madriporian coral +mushroom pimple|1 +(noun)|Hypocreaceae|family Hypocreaceae +mushroom poisoning|1 +(noun)|food poisoning|gastrointestinal disorder +mushroom sauce|1 +(noun)|sauce +mushroom wine sauce|1 +(noun)|marchand de vin|sauce +mushy|2 +(adj)|soft +(adj)|bathetic|drippy|hokey|maudlin|mawkish|schmaltzy|schmalzy|sentimental|slushy|emotional +mushy peas|1 +(noun)|side dish|entremots +musial|1 +(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer|baseball player +music|5 +(noun)|auditory communication +(noun)|euphony|sound|auditory sensation +(noun)|activity +(noun)|sound|auditory sensation +(noun)|medicine|punishment|penalty|penalization|penalisation +music box|1 +(noun)|musical box|musical instrument|instrument +music critic|1 +(noun)|critic +music department|1 +(noun)|department of music|academic department +music director|1 +(noun)|conductor|director|musician +music genre|1 +(noun)|musical genre|genre|musical style|expressive style|style|music +music hall|2 +(noun)|vaudeville theater|vaudeville theatre|theater|theatre|house +(noun)|vaudeville|variety show|variety +music lesson|1 +(noun)|lesson +music lover|1 +(noun)|concert-goer|consumer +music of the spheres|1 +(noun)|music|euphony +music paper|1 +(noun)|score paper|paper +music rack|1 +(noun)|music stand|rack|stand +music school|2 +(noun)|school of music|conservatory +(noun)|conservatory|conservatoire +music stand|1 +(noun)|music rack|rack|stand +music stool|1 +(noun)|piano stool|stool +music teacher|1 +(noun)|teacher|instructor +musical|5 +(adj)|auditory communication +(adj)|musical |philharmonic +(adj)|musical |chanted|liquid|singable +(adj)|melodious |melodic|ariose|songlike|canorous|songful|cantabile|singing|dulcet|honeyed|mellifluous|mellisonant|sweet|lyrical +(noun)|musical comedy|musical theater|play|music +musical accompaniment|1 +(noun)|accompaniment|backup|support|part|voice +musical arrangement|1 +(noun)|arrangement|musical composition|opus|composition|piece|piece of music +musical box|1 +(noun)|music box|musical instrument|instrument +musical chairs|2 +(noun)|going to Jerusalem|child's game +(noun)|rearrangement +musical comedy|1 +(noun)|musical|musical theater|play|music +musical composition|1 +(noun)|opus|composition|piece|piece of music|music +musical drama|1 +(noun)|opera +musical genre|1 +(noun)|music genre|genre|musical style|expressive style|style|music +musical group|1 +(noun)|musical organization|musical organisation|organization|organisation +musical harmony|1 +(noun)|harmony|music +musical instrument|1 +(noun)|instrument|device +musical instrument digital interface|1 +(noun)|MIDI|protocol|communications protocol +musical interval|1 +(noun)|interval|musical notation +musical mode|1 +(noun)|mode|diatonic scale +musical notation|1 +(noun)|notation|notational system +musical note|1 +(noun)|note|tone|musical notation +musical octave|1 +(noun)|octave|interval|musical interval +musical organisation|1 +(noun)|musical organization|musical group|organization|organisation +musical organization|1 +(noun)|musical organisation|musical group|organization|organisation +musical passage|1 +(noun)|passage|musical composition|opus|composition|piece|piece of music +musical perception|1 +(noun)|auditory perception|sound perception +musical performance|1 +(noun)|performance|performing arts +musical phrase|1 +(noun)|phrase|passage|musical passage +musical rhythm|1 +(noun)|rhythm|beat|musical time +musical scale|1 +(noun)|scale|musical notation +musical score|1 +(noun)|score|sheet music +musical soiree|1 +(noun)|soiree musicale|soiree +musical style|1 +(noun)|music genre|musical genre|genre|expressive style|style|music +musical theater|1 +(noun)|musical|musical comedy|play|music +musical theme|1 +(noun)|theme|melodic theme|idea|tune|melody|air|strain|melodic line|line|melodic phrase +musical time|1 +(noun)|time +musical time signature|1 +(noun)|time signature|musical notation +musicality|1 +(noun)|musicalness|sound property +musicalness|1 +(noun)|musicality|sound property +musician|2 +(noun)|instrumentalist|player|performer|performing artist +(noun)|artist|creative person +musicianship|1 +(noun)|art|artistry|prowess +musicogenic epilepsy|1 +(noun)|reflex epilepsy +musicological|1 +(adj)|humanistic discipline|humanities|liberal arts|arts +musicologist|1 +(noun)|scholar|scholarly person|student +musicology|1 +(noun)|humanistic discipline|humanities|liberal arts|arts +musing|2 +(adj)|brooding|broody|contemplative|meditative|pensive|pondering|reflective|ruminative|thoughtful +(noun)|contemplation|reflection|reflexion|rumination|thoughtfulness|consideration +musjid|1 +(noun)|mosque|masjid|place of worship|house of prayer|house of God|house of worship +musk|2 +(noun)|secretion +(noun)|scent +musk clover|1 +(noun)|muskus grass|white-stemmed filaree|Erodium moschatum|storksbill|heron's bill +musk deer|1 +(noun)|Moschus moschiferus|deer|cervid +musk duck|1 +(noun)|muscovy duck|Cairina moschata|duck +musk hog|1 +(noun)|peccary|even-toed ungulate|artiodactyl|artiodactyl mammal +musk kangaroo|1 +(noun)|Hypsiprymnodon moschatus|kangaroo +musk mallow|2 +(noun)|abelmosk|Abelmoschus moschatus|Hibiscus moschatus|mallow +(noun)|mus rose|Malva moschata|mallow +musk ox|1 +(noun)|musk sheep|Ovibos moschatus|bovid +musk rose|1 +(noun)|Rosa moschata|rose +musk sheep|1 +(noun)|musk ox|Ovibos moschatus|bovid +musk thistle|1 +(noun)|nodding thistle|Carduus nutans|thistle +musk turtle|1 +(noun)|stinkpot|mud turtle +muskat|1 +(noun)|muscat|vinifera|vinifera grape|common grape vine|Vitis vinifera +muskellunge|2 +(noun)|pike +(noun)|Esox masquinongy|pike +musket|1 +(noun)|muzzle loader +musket ball|1 +(noun)|ball|shot|pellet +musketeer|1 +(noun)|infantryman|marcher|foot soldier|footslogger +musketry|2 +(noun)|army unit +(noun)|proficiency|technique +muskhogean|2 +(noun)|Muskhogean|Muskogean|Indian|North American Indian|American Indian|Red Indian +(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +muskhogean language|1 +(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +muskmelon|2 +(noun)|sweet melon|sweet melon vine|Cucumis melo|melon|melon vine +(noun)|sweet melon|melon +muskogean|2 +(noun)|Muskhogean|Muskogean|Indian|North American Indian|American Indian|Red Indian +(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +muskogean language|1 +(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +muskogee|3 +(noun)|Muskogee|Muskhogean|Muskogean +(noun)|Muskogee|town +(noun)|Muskogee|Muskhogean|Muskhogean language|Muskogean|Muskogean language +muskrat|2 +(noun)|fur|pelt +(noun)|musquash|Ondatra zibethica|rodent|gnawer|gnawing animal +muskus grass|1 +(noun)|musk clover|white-stemmed filaree|Erodium moschatum|storksbill|heron's bill +muskwood|1 +(noun)|Olearia argophylla|daisybush|daisy-bush|daisy bush +musky|1 +(adj)|fragrant +muslim|2 +(adj)|Muslim|Moslem|Islamic|monotheism +(noun)|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist|religionist|religious person +muslim calendar|1 +(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar +muslim ummah|1 +(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community +muslimah|1 +(noun)|Muslimah|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +muslimism|2 +(noun)|Islam|Islamism|Muslimism|Muhammadanism|Mohammedanism|Mohammadanism|religion|faith +(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism +muslin|1 +(noun)|fabric|cloth|material|textile +musnud|1 +(noun)|throne +musophaga|1 +(noun)|Musophaga|genus Musophaga|bird genus +musophagidae|1 +(noun)|Musophagidae|family Musophagidae|bird family +musophobia|1 +(noun)|zoophobia +musquash|1 +(noun)|muskrat|Ondatra zibethica|rodent|gnawer|gnawing animal +muss|2 +(noun)|mess|messiness|mussiness|disorderliness|disorder +(verb)|tussle|disarrange +mussel|2 +(noun)|shellfish +(noun)|bivalve|pelecypod|lamellibranch +mussel shrimp|1 +(noun)|seed shrimp|ostracod|crustacean +musset|1 +(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer|author|poet +mussiness|1 +(noun)|mess|messiness|muss|disorderliness|disorder +mussitate|1 +(verb)|mumble|mutter|maunder|talk|speak|utter|mouth|verbalize|verbalise +mussitation|1 +(noun)|mutter|muttering|murmur|murmuring|murmuration|sound +mussolini|1 +(noun)|Mussolini|Benito Mussolini|Il Duce|dictator|potentate +mussorgsky|1 +(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer +mussy|1 +(adj)|messy|untidy +must|4 +(adj)|essential +(noun)|necessity|essential|requirement|requisite|necessary +(noun)|grape juice +(noun)|mustiness|moldiness|staleness +mustache|1 +(noun)|moustache|hair +mustache cup|1 +(noun)|moustache cup|cup +mustached|1 +(adj)|mustachioed|unshaven |unshaved +mustachio|1 +(noun)|moustachio|handle-bars|mustache|moustache +mustachioed|1 +(adj)|mustached|unshaven |unshaved +mustafa kemal|1 +(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman|solon|national leader +mustagh|1 +(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +mustagh range|1 +(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +mustang|1 +(noun)|pony +mustang mint|1 +(noun)|Monardella lanceolata|herb|herbaceous plant +mustard|3 +(noun)|crucifer|cruciferous plant +(noun)|table mustard|condiment +(noun)|mustard greens|leaf mustard|Indian mustard|cruciferous vegetable +mustard agent|1 +(noun)|mustard gas|blistering agent|dichloroethyl sulfide|sulfur mustard|poison gas +mustard family|1 +(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|dilleniid dicot family +mustard gas|1 +(noun)|mustard agent|blistering agent|dichloroethyl sulfide|sulfur mustard|poison gas +mustard greens|1 +(noun)|mustard|leaf mustard|Indian mustard|cruciferous vegetable +mustard plaster|1 +(noun)|sinapism|poultice|cataplasm|plaster +mustard sauce|1 +(noun)|sauce +mustard seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +mustard tree|2 +(noun)|tree tobacco|Nicotiana glauca|tobacco +(noun)|toothbrush tree|Salvadora persica|fruit tree +mustela|1 +(noun)|Mustela|genus Mustela|mammal genus +mustela erminea|1 +(noun)|ermine|shorttail weasel|Mustela erminea|weasel +mustela frenata|1 +(noun)|longtail weasel|long-tailed weasel|Mustela frenata|weasel +mustela nigripes|1 +(noun)|black-footed ferret|ferret|Mustela nigripes|musteline mammal|mustelid|musteline +mustela nivalis|1 +(noun)|Old World least weasel|Mustela nivalis|weasel +mustela putorius|1 +(noun)|polecat|fitch|foulmart|foumart|Mustela putorius|musteline mammal|mustelid|musteline +mustela rixosa|1 +(noun)|New World least weasel|Mustela rixosa|weasel +mustela vison|1 +(noun)|American mink|Mustela vison|mink +mustelid|1 +(noun)|musteline mammal|musteline|carnivore +mustelidae|1 +(noun)|Mustelidae|family Mustelidae|mammal family +musteline|1 +(noun)|musteline mammal|mustelid|carnivore +musteline mammal|1 +(noun)|mustelid|musteline|carnivore +mustelus|1 +(noun)|Mustelus|genus Mustelus|fish genus +mustelus canis|1 +(noun)|American smooth dogfish|Mustelus canis|smooth dogfish +mustelus mustelus|1 +(noun)|smoothhound|smoothhound shark|Mustelus mustelus|smooth dogfish +mustelus norrisi|1 +(noun)|Florida smoothhound|Mustelus norrisi|smooth dogfish +muster|4 +(noun)|gathering|assemblage +(noun)|conscription|draft|selective service|mobilization|mobilisation|militarization|militarisation +(verb)|rally|summon|come up|muster up|gather|garner|collect|pull together +(verb)|call|send for +muster call|1 +(noun)|roll call +muster in|1 +(verb)|enlist|draft|enroll|inscribe|enter|enrol|recruit +muster out|1 +(verb)|discharge|let go of|let go|release|relinquish +muster roll|1 +(noun)|roll|roster +muster up|1 +(verb)|muster|rally|summon|come up|gather|garner|collect|pull together +musth|1 +(noun)|phase|stage +mustiness|1 +(noun)|must|moldiness|staleness +musty|2 +(adj)|moldy|mouldy|stale +(adj)|fusty|frowsty|malodorous |malodourous +mut|1 +(noun)|em|mutton|area unit|square measure +mutability|1 +(noun)|mutableness|changeableness|changeability +mutable|1 +(adj)|mutable |changeable +mutableness|1 +(noun)|mutability|changeableness|changeability +mutafacient|1 +(adj)|agent +mutagen|1 +(noun)|agent +mutagenesis|1 +(noun)|cause +mutagenic|1 +(adj)|agent +mutamycin|1 +(noun)|mitomycin|Mutamycin|antibiotic|antibiotic drug +mutant|3 +(adj)|change|alteration|modification +(noun)|mutation|variation|sport|organism|being +(noun)|animal|animate being|beast|brute|creature|fauna +mutant gene|1 +(noun)|gene|cistron|factor +mutate|1 +(verb)|change +mutation|3 +(noun)|mutant|variation|sport|organism|being +(noun)|genetic mutation|chromosomal mutation|change|alteration|modification +(noun)|change|alteration|modification +mutational|1 +(adj)|change|alteration|modification +mutative|1 +(adj)|change|alteration|modification +mutawa|1 +(noun)|Mutawa'een|Mutawa|police|police force|constabulary|law +mutawa'een|1 +(noun)|Mutawa'een|Mutawa|police|police force|constabulary|law +mutchkin|1 +(noun)|liquid unit|liquid measure +mute|6 +(adj)|tongueless|unspoken|wordless|inarticulate |unarticulate +(adj)|tongueless|nonspeaking |walk-on +(adj)|dumb|silent|inarticulate |unarticulate +(noun)|deaf-mute|deaf-and-dumb person|deaf person +(noun)|acoustic device +(verb)|muffle|dull|damp|dampen|tone down|soften +mute swan|1 +(noun)|Cygnus olor|swan +muted|2 +(adj)|hushed|subdued|quiet|soft +(adj)|dull|muffled|softened|soft +mutely|1 +(adv)|wordlessly|silently|taciturnly +muteness|1 +(noun)|silence|uncommunicativeness +mutilate|3 +(verb)|mangle|cut up|damage +(verb)|mangle|murder|falsify|distort|garble|warp +(verb)|mar|maim +mutilated|3 +(adj)|maimed|injured +(adj)|maimed|unfit +(adj)|mangled|damaged +mutilation|1 +(noun)|injury|accidental injury +mutilator|1 +(noun)|maimer|mangler|person|individual|someone|somebody|mortal|human|soul +mutillidae|1 +(noun)|Mutillidae|family Mutillidae|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +mutineer|1 +(noun)|insurgent|insurrectionist|freedom fighter|rebel +mutinous|2 +(adj)|insubordinate +(adj)|disloyal +mutinus|1 +(noun)|Mutinus|genus Mutinus|fungus genus +mutinus caninus|1 +(noun)|dog stinkhorn|Mutinus caninus|stinkhorn|carrion fungus +mutiny|2 +(noun)|rebellion|insurrection|revolt|rising|uprising +(verb)|rebel|arise|rise|rise up +mutisia|1 +(noun)|shrub|bush +mutism|1 +(noun)|condition|status +muton|1 +(noun)|nucleotide +mutsuhito|1 +(noun)|Meiji Tenno|Mutsuhito|Emperor +mutt|1 +(noun)|cur|mongrel|dog|domestic dog|Canis familiaris +mutter|4 +(noun)|muttering|murmur|murmuring|murmuration|mussitation|sound +(noun)|grumble|grumbling|murmur|murmuring|muttering|complaint +(verb)|mumble|maunder|mussitate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|murmur|grumble|croak|gnarl|complain|kick|plain|sound off|quetch|kvetch +mutterer|1 +(noun)|mumbler|speaker|talker|utterer|verbalizer|verbaliser +muttering|3 +(adj)|mumbling|speaking +(noun)|mutter|murmur|murmuring|murmuration|mussitation|sound +(noun)|grumble|grumbling|murmur|murmuring|mutter|complaint +mutton|2 +(noun)|mouton|meat +(noun)|em|mut|area unit|square measure +mutton chop|2 +(noun)|chop +(noun)|sideburn|burnside|side-whiskers|beard|face fungus|whiskers +mutton snapper|1 +(noun)|muttonfish|Lutjanus analis|snapper +mutton tallow|1 +(noun)|tallow +muttonfish|1 +(noun)|mutton snapper|Lutjanus analis|snapper +muttonhead|1 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|shithead|fuckhead|simpleton|simple +mutual|2 +(adj)|common|shared +(adj)|reciprocal |bilateral|complementary|interchangeable|reciprocal|correlative|interactional|interactive|reciprocating|reciprocatory|reciprocative +mutual affection|1 +(noun)|mutual understanding|sympathy +mutual aid|1 +(noun)|international logistic support|logistic support|logistic assistance +mutual exclusiveness|1 +(noun)|incompatibility|inconsistency|repugnance|contradictoriness +mutual fund|1 +(noun)|open-end fund|open-end investment company|investment company|investment trust|investment firm|fund +mutual inductance|1 +(noun)|coefficient of mutual induction|coefficient +mutual induction|3 +(noun)|induction +(noun)|induction +(noun)|inductance|induction +mutual opposition|1 +(noun)|polarity|opposition|oppositeness +mutual resemblance|1 +(noun)|resemblance +mutual savings bank|1 +(noun)|MSB|savings bank +mutual understanding|1 +(noun)|mutual affection|sympathy +mutualism|1 +(noun)|symbiosis|mutuality|interdependence|interdependency +mutualist|1 +(adj)|interdependent|mutually beneficial|dependent +mutuality|2 +(noun)|mutualness|reciprocality|reciprocity +(noun)|interdependence|interdependency|reciprocality|reciprocity +mutually|1 +(adv)|reciprocally +mutually beneficial|1 +(adj)|interdependent|mutualist|dependent +mutually exclusive|2 +(adj)|contradictory|incompatible +(adj)|alternative|disjunctive +mutually ruinous|1 +(adj)|internecine|bloody +mutualness|1 +(noun)|mutuality|reciprocality|reciprocity +muumuu|1 +(noun)|Mother Hubbard|dress|frock +muybridge|1 +(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor|discoverer|artificer +muz tagh ata|1 +(noun)|Muztagh Ata|Muz Tagh Ata|mountain peak +muzhik|1 +(noun)|moujik|mujik|muzjik|peasant|provincial|bucolic +muzjik|1 +(noun)|muzhik|moujik|mujik|peasant|provincial|bucolic +muztagh ata|1 +(noun)|Muztagh Ata|Muz Tagh Ata|mountain peak +muzzle|7 +(noun)|gun muzzle|opening +(noun)|face +(noun)|restraint|constraint +(noun)|gag|restraint|constraint +(verb)|equip|fit|fit out|outfit +(verb)|gag|hush|quieten|silence|still|shut up|hush up +(verb)|gag|tie|bind +muzzle-loading|1 +(adj)|opening +muzzle loader|1 +(noun)|firearm|piece|small-arm +muzzle velocity|1 +(noun)|speed|velocity +muzzler|1 +(noun)|worker +muzzy|2 +(adj)|bleary|blurred|blurry|foggy|fuzzy|hazy|indistinct +(adj)|addled|befuddled|muddled|woolly|wooly|woolly-headed|wooly-minded|confused +mv|2 +(noun)|millivolt|mV|potential unit +(noun)|mendelevium|Md|Mv|atomic number 101|chemical element|element +mvp|1 +(noun)|most valuable player|MVP|player|participant +mwera|1 +(noun)|Mwera|Bantu|Bantoid language +mx|1 +(noun)|maxwell|Mx|flux unit|magnetic flux unit +mya|1 +(noun)|Mya|genus Mya|mollusk genus +mya arenaria|1 +(noun)|soft-shell clam|steamer|steamer clam|long-neck clam|Mya arenaria|clam +myaceae|1 +(noun)|Myaceae|order Myaceae|animal order +myacidae|1 +(noun)|Myacidae|family Myacidae|mollusk family +myadestes|1 +(noun)|Myadestes|genus Myadestes|bird genus +myalgia|1 +(noun)|myodynia|pain|hurting +myalgic|1 +(adj)|pain|hurting +myanmar|1 +(noun)|Myanmar|Union of Burma|Burma|Asian country|Asian nation +myanmar monetary unit|1 +(noun)|Myanmar monetary unit|monetary unit +myasthenia|2 +(noun)|myasthenia gravis|disease of the neuromuscular junction +(noun)|physiological state|physiological condition +myasthenia gravis|1 +(noun)|myasthenia|disease of the neuromuscular junction +myasthenic syndrome|1 +(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|carcinomatous myopathy|disease of the neuromuscular junction +mycelia sterilia|1 +(noun)|Mycelia Sterilia|order Mycelia Sterilia|fungus order +mycelium|1 +(noun)|plant part|plant structure +mycenae|1 +(noun)|Mycenae|city|metropolis|urban center +mycenaean|1 +(adj)|Mycenaean|city|metropolis|urban center +mycenaean civilisation|1 +(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture|civilization|civilisation +mycenaean civilization|1 +(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture|civilization|civilisation +mycenaean culture|1 +(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture|civilization|civilisation +mycetophilidae|1 +(noun)|Mycetophilidae|family Mycetophylidae|arthropod family +mycobacteria|2 +(noun)|mycobacterium|eubacteria|eubacterium|true bacteria +(noun)|mycobacterium|eubacteria|eubacterium|true bacteria +mycobacteriaceae|1 +(noun)|Mycobacteriaceae|family Mycobacteriaceae|bacteria family +mycobacterium|1 +(noun)|mycobacteria|eubacteria|eubacterium|true bacteria +mycobacterium leprae|1 +(noun)|leprosy bacillus|Mycobacterium leprae|mycobacteria|mycobacterium +mycobacterium tuberculosis|1 +(noun)|tubercle bacillus|Mycobacterium tuberculosis|mycobacteria|mycobacterium +mycologist|1 +(noun)|botanist|phytologist|plant scientist +mycology|1 +(noun)|botany|phytology +mycomycin|1 +(noun)|antibiotic|antibiotic drug +mycophagist|1 +(noun)|eater|feeder +mycoplasma|1 +(noun)|eubacteria|eubacterium|true bacteria +mycoplasmal pneumonia|1 +(noun)|atypical pneumonia|primary atypical pneumonia|respiratory disease|respiratory illness|respiratory disorder +mycoplasmataceae|1 +(noun)|Mycoplasmataceae|family Mycoplasmataceae|bacteria family +mycoplasmatales|1 +(noun)|Mycoplasmatales|order Mycoplasmatales|animal order +mycosis|1 +(noun)|fungal infection|zymosis +mycostatin|1 +(noun)|nystatin|Mycostatin|Nystan|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|antibiotic|antibiotic drug +mycotoxin|1 +(noun)|plant toxin|phytotoxin +mycrosporidia|1 +(noun)|Mycrosporidia|order Mycrosporidia|animal order +mycteria|1 +(noun)|Mycteria|genus Mycteria|bird genus +mycteria americana|1 +(noun)|wood ibis|wood stork|Mycteria americana|stork +mycteroperca|1 +(noun)|Mycteroperca|genus Mycteroperca|fish genus +mycteroperca bonaci|1 +(noun)|jewfish|Mycteroperca bonaci|grouper +myctophidae|1 +(noun)|Myctophidae|family Myctophidae|fish family +mydriasis|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|dilation|dilatation +mydriatic|1 +(noun)|mydriatic drug|drug +mydriatic drug|1 +(noun)|mydriatic|drug +myelatelia|1 +(noun)|defect +myelencephalon|1 +(noun)|neural structure +myelic|1 +(adj)|neural structure|funiculus +myelin|1 +(noun)|myeline|medulla|fat +myelin sheath|1 +(noun)|medullary sheath|sheath|case +myelinated|1 +(adj)|myelinated |medullated|fat +myelinated nerve fiber|1 +(noun)|medullated nerve fiber|nerve fiber|nerve fibre +myeline|1 +(noun)|myelin|medulla|fat +myelinic|1 +(adj)|fat +myelinisation|1 +(noun)|myelinization|growth|growing|maturation|development|ontogeny|ontogenesis +myelinization|1 +(noun)|myelinisation|growth|growing|maturation|development|ontogeny|ontogenesis +myelitis|1 +(noun)|inflammation|redness|rubor +myeloblast|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +myeloblastic leukemia|1 +(noun)|leukemia|leukaemia|leucaemia|cancer of the blood +myelocyte|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +myelocytic leukemia|1 +(noun)|granulocytic leukemia|leukemia|leukaemia|leucaemia|cancer of the blood +myelofibrosis|1 +(noun)|fibrosis +myelogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +myelography|1 +(noun)|roentgenography|X-ray photography +myeloid|2 +(adj)|connective tissue +(adj)|neural structure|funiculus +myeloid leukemia|1 +(noun)|chronic myelocytic leukemia|myelocytic leukemia|granulocytic leukemia|chronic leukemia +myeloma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +myelomeningocele|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +myenteric plexus|1 +(noun)|plexus myentericus|nerve plexus +myg|1 +(noun)|myriagram|metric weight unit|weight unit +myiasis|1 +(noun)|infestation +mylanta|1 +(noun)|Mylanta|antacid|gastric antacid|alkalizer|alkaliser|antiacid +mylar|1 +(noun)|Mylar|plastic +myles standish|1 +(noun)|Standish|Miles Standish|Myles Standish|settler|colonist +myliobatidae|1 +(noun)|Myliobatidae|family Myliobatidae|fish family +mylitta|1 +(noun)|Ishtar|Mylitta|Semitic deity +mylodon|1 +(noun)|edentate +mylodontid|1 +(noun)|edentate +mylodontidae|1 +(noun)|Mylodontidae|family Mylodontidae|mammal family +mym|1 +(noun)|myriameter|myriametre|metric linear unit +myna|1 +(noun)|mynah|mina|minah|myna bird|mynah bird|starling +myna bird|1 +(noun)|myna|mynah|mina|minah|mynah bird|starling +mynah|1 +(noun)|myna|mina|minah|myna bird|mynah bird|starling +mynah bird|1 +(noun)|myna|mynah|mina|minah|myna bird|starling +myocardial|1 +(adj)|cardiac muscle|heart muscle +myocardial infarct|1 +(noun)|myocardial infarction|MI|infarct|infarction +myocardial infarction|1 +(noun)|myocardial infarct|MI|infarct|infarction +myocardial inflammation|1 +(noun)|myocarditis|carditis +myocardiopathy|1 +(noun)|cardiomyopathy|heart disease|heart condition|cardiopathy +myocarditis|1 +(noun)|myocardial inflammation|carditis +myocardium|1 +(noun)|cardiac muscle|heart muscle +myocastor|1 +(noun)|Myocastor|genus Myocastor|mammal genus +myocastor coypus|1 +(noun)|coypu|nutria|Myocastor coypus|rodent|gnawer|gnawing animal +myoclonus|1 +(noun)|spasm|cramp|muscle spasm +myoclonus epilepsy|1 +(noun)|Lafora's disease|epilepsy +myodynia|1 +(noun)|myalgia|pain|hurting +myofibril|1 +(noun)|myofibrilla|sarcostyle|fibril|filament|strand +myofibrilla|1 +(noun)|myofibril|sarcostyle|fibril|filament|strand +myoglobin|1 +(noun)|hemoprotein|haemoprotein +myoglobinuria|1 +(noun)|symptom +myogram|1 +(noun)|graph|graphical record +myoid|1 +(adj)|animal tissue +myology|1 +(noun)|physiology +myoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +myometritis|1 +(noun)|inflammation|redness|rubor +myometrium|1 +(noun)|smooth muscle|involuntary muscle +myomorpha|1 +(noun)|Myomorpha|suborder Myomorpha|animal order +myonecrosis|1 +(noun)|necrosis|mortification|gangrene|sphacelus +myoneural junction|1 +(noun)|neuromuscular junction|synapse +myopathic|1 +(adj)|pathology +myopathy|1 +(noun)|pathology +myope|1 +(noun)|visually handicapped person +myopia|1 +(noun)|nearsightedness|shortsightedness|ametropia +myopic|2 +(adj)|nearsighted +(adj)|short|shortsighted|unforesightful|improvident +myopus|1 +(noun)|Myopus|genus Myopus|mammal genus +myosarcoma|1 +(noun)|sarcoma +myosin|1 +(noun)|globulin +myosis|2 +(noun)|epidemic pleurodynia|epidemic myalgia|diaphragmatic pleurisy|Bornholm disease|epidemic disease +(noun)|light reflex|pupillary reflex|miosis|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +myositis|1 +(noun)|inflammation|redness|rubor +myositis trichinosa|1 +(noun)|trichinosis|trichiniasis|myositis|infestation +myosotis|1 +(noun)|Myosotis|genus Myosotis|plant genus +myosotis scorpiodes|1 +(noun)|forget-me-not|mouse ear|Myosotis scorpiodes|herb|herbaceous plant +myosotis sylvatica|1 +(noun)|garden forget-me-not|Myosotis sylvatica|herb|herbaceous plant +myotactic reflex|1 +(noun)|stretch reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +myotic|1 +(adj)|miotic|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +myotis|1 +(noun)|Myotis|genus Myotis|mammal genus +myotis leucifugus|1 +(noun)|little brown bat|little brown myotis|Myotis leucifugus|vespertilian bat|vespertilionid +myotis velifer|1 +(noun)|cave myotis|Myotis velifer|vespertilian bat|vespertilionid +myotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +myotonia|1 +(noun)|tonicity|tonus|tone +myotonia atrophica|1 +(noun)|myotonic muscular dystrophy|myotonic dystrophy|Steinert's disease|muscular dystrophy|dystrophy +myotonia congenita|1 +(noun)|Thomsen's disease|myotonia +myotonic|1 +(adj)|tonicity|tonus|tone +myotonic dystrophy|1 +(noun)|myotonic muscular dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy|dystrophy +myotonic muscular dystrophy|1 +(noun)|myotonic dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy|dystrophy +myrcia|1 +(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus|magnoliopsid genus +myrciaria|1 +(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus|magnoliopsid genus +myrciaria cauliflora|1 +(noun)|jaboticaba|jaboticaba tree|Myrciaria cauliflora|fruit tree +myrdal|1 +(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist|economic expert +myriad|3 +(adj)|countless|infinite|innumerable|innumerous|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable +(noun)|large indefinite quantity|large indefinite amount +(noun)|ten thousand|10000|large integer +myriagram|1 +(noun)|myg|metric weight unit|weight unit +myriameter|1 +(noun)|myriametre|mym|metric linear unit +myriametre|1 +(noun)|myriameter|mym|metric linear unit +myriapod|1 +(noun)|arthropod +myriapoda|1 +(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class|category|family +myrica|1 +(noun)|Myrica|genus Myrica|dicot genus|magnoliopsid genus +myrica cerifera|1 +(noun)|bay myrtle|puckerbush|Myrica cerifera|wax myrtle +myrica gale|1 +(noun)|sweet gale|Scotch gale|Myrica gale|shrub|bush +myrica pensylvanica|1 +(noun)|bayberry|candleberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle +myricaceae|1 +(noun)|Myricaceae|family Myricaceae|wax-myrtle family|dicot family|magnoliopsid family +myricales|1 +(noun)|Myricales|order Myricales|plant order +myricaria|1 +(noun)|Myricaria|genus Myricaria|dilleniid dicot genus +myricaria germanica|1 +(noun)|false tamarisk|German tamarisk|Myricaria germanica|shrub|bush +myringa|1 +(noun)|eardrum|tympanum|tympanic membrane|membrane|tissue layer +myringectomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +myringoplasty|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +myringotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +myriophyllum|1 +(noun)|Myriophyllum|genus Myriophyllum|dicot genus|magnoliopsid genus +myristic acid|1 +(noun)|tetradecanoic acid|saturated fatty acid +myristica|1 +(noun)|Myristica|genus Myristica|magnoliid dicot genus +myristica fragrans|1 +(noun)|nutmeg|nutmeg tree|Myristica fragrans|spice tree +myristicaceae|1 +(noun)|Myristicaceae|family Myristicaceae|nutmeg family|magnoliid dicot family +myrmecia|1 +(noun)|Myrmecia|genus Myrmecia|arthropod genus +myrmecobius|1 +(noun)|Myrmecobius|genus Myrmecobius|mammal genus +myrmecobius fasciatus|1 +(noun)|numbat|banded anteater|anteater|Myrmecobius fasciatus|dasyurid marsupial|dasyurid +myrmecophaga|1 +(noun)|Myrmecophaga|genus Myrmecophaga|mammal genus +myrmecophaga jubata|1 +(noun)|ant bear|giant anteater|great anteater|tamanoir|Myrmecophaga jubata|anteater|New World anteater +myrmecophagidae|1 +(noun)|Myrmecophagidae|family Myrmecophagidae|mammal family +myrmecophagous|1 +(adj)|insectivorous +myrmecophile|1 +(noun)|organism|being +myrmecophilous|1 +(adj)|dependent +myrmecophyte|1 +(noun)|plant|flora|plant life +myrmecophytic|1 +(adj)|plant|flora|plant life +myrmeleon|1 +(noun)|Myrmeleon|genus Myrmeleon|arthropod genus +myrmeleontidae|1 +(noun)|Myrmeleontidae|family Myrmeleontidae|arthropod family +myrmidon|2 +(noun)|follower +(noun)|Myrmidon|mythical being +myrobalan|1 +(noun)|cherry plum|myrobalan plum|Prunus cerasifera|plum|plum tree +myrobalan plum|1 +(noun)|cherry plum|myrobalan|Prunus cerasifera|plum|plum tree +myroxylon|1 +(noun)|Myroxylon|genus Myroxylon|rosid dicot genus +myroxylon balsamum|1 +(noun)|tolu tree|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree +myroxylon balsamum pereirae|1 +(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree +myroxylon pereirae|1 +(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree +myroxylon toluiferum|1 +(noun)|tolu tree|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree +myrrh|2 +(noun)|gum myrrh|sweet cicely|gum resin +(noun)|gum myrrh|gum resin +myrrh tree|1 +(noun)|Commiphora myrrha|incense tree +myrrhis|1 +(noun)|Myrrhis|genus Myrrhis|rosid dicot genus +myrrhis odorata|1 +(noun)|sweet cicely|Myrrhis odorata|herb|herbaceous plant +myrsinaceae|1 +(noun)|Myrsinaceae|family Myrsinaceae|myrsine family|dicot family|magnoliopsid family +myrsine|1 +(noun)|Myrsine|genus Myrsine|dicot genus|magnoliopsid genus +myrsine family|1 +(noun)|Myrsinaceae|family Myrsinaceae|dicot family|magnoliopsid family +myrtaceae|1 +(noun)|Myrtaceae|family Myrtaceae|myrtle family|dicot family|magnoliopsid family +myrtaceous tree|1 +(noun)|angiospermous tree|flowering tree +myrtales|1 +(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order +myrtillocactus|1 +(noun)|Myrtillocactus|genus Myrtillocactus|caryophylloid dicot genus +myrtillocactus geometrizans|1 +(noun)|garambulla|garambulla cactus|Myrtillocactus geometrizans|cactus +myrtle|2 +(noun)|Vinca minor|periwinkle +(noun)|angiospermous tree|flowering tree +myrtle beech|1 +(noun)|Nothofagus cuninghamii|southern beech|evergreen beech +myrtle bird|1 +(noun)|myrtle warbler|Dendroica coronata|New World warbler|wood warbler +myrtle family|1 +(noun)|Myrtaceae|family Myrtaceae|dicot family|magnoliopsid family +myrtle flag|1 +(noun)|sweet flag|calamus|sweet calamus|flagroot|Acorus calamus|marsh plant|bog plant|swamp plant +myrtle oak|1 +(noun)|seaside scrub oak|Quercus myrtifolia|scrub oak +myrtle spurge|1 +(noun)|caper spurge|mole plant|Euphorbia lathyris|spurge +myrtle warbler|1 +(noun)|myrtle bird|Dendroica coronata|New World warbler|wood warbler +myrtus|1 +(noun)|Myrtus|genus Myrtus|dicot genus|magnoliopsid genus +myrtus communis|1 +(noun)|common myrtle|Myrtus communis|myrtle +mysidacea|1 +(noun)|Mysidacea|order Mysidacea|animal order +mysidae|1 +(noun)|Mysidae|family Mysidae|arthropod family +mysis|1 +(noun)|Mysis|genus Mysis|arthropod genus +mysoline|1 +(noun)|primidone|Mysoline|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +mysophilia|1 +(noun)|liking +mysophobia|1 +(noun)|simple phobia +mysophobic|1 +(adj)|afraid +mysore|2 +(noun)|Mysore|city|metropolis|urban center +(noun)|Karnataka|Mysore|state|province +mysore thorn|1 +(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub|bush +mysterious|2 +(adj)|cryptic|cryptical|deep|inscrutable|mystifying|inexplicable |incomprehensible +(adj)|mystic|mystical|occult|secret|orphic|esoteric +mysteriously|1 +(adv)|cryptically|enigmatically +mystery|2 +(noun)|enigma|secret|closed book|perplexity +(noun)|mystery story|whodunit|story +mystery novel|1 +(noun)|detective novel|novel +mystery play|1 +(noun)|play|drama|dramatic play +mystery story|1 +(noun)|mystery|whodunit|story +mystic|4 +(adj)|mysterious|mystical|occult|secret|orphic|esoteric +(adj)|mystical|thinking|thought|cerebration|intellection|mentation +(adj)|mystical|religion|faith|religious belief +(noun)|religious mystic|believer|worshiper|worshipper +mystic jewel|1 +(noun)|Ling-pao|Mystic Jewel|Chinese deity +mystical|3 +(adj)|mystic|religion|faith|religious belief +(adj)|mystic|thinking|thought|cerebration|intellection|mentation +(adj)|mysterious|mystic|occult|secret|orphic|esoteric +mysticeti|1 +(noun)|Mysticeti|suborder Mysticeti|animal order +mysticism|2 +(noun)|religious mysticism|religion|faith|religious belief +(noun)|thinking|thought|cerebration|intellection|mentation +mystification|3 +(noun)|bewilderment|obfuscation|puzzlement|befuddlement|bafflement|bemusement|confusion|mental confusion|confusedness|disarray +(noun)|artifact|artefact +(noun)|obfuscation|activity +mystified|1 +(adj)|metagrobolized|metagrobolised|metagrabolized|metagrabolised|perplexed +mystifier|1 +(noun)|puzzle|puzzler|teaser|problem +mystify|2 +(verb)|perplex|vex|stick|get|puzzle|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|obscure|bedim|overcloud +mystifying|1 +(adj)|cryptic|cryptical|deep|inscrutable|mysterious|inexplicable |incomprehensible +mystique|1 +(noun)|air|aura|atmosphere +myth|1 +(noun)|story +mythic|2 +(adj)|story +(adj)|fabulous|mythical|mythologic|mythological|unreal +mythical|1 +(adj)|fabulous|mythic|mythologic|mythological|unreal +mythical being|1 +(noun)|imaginary being|imaginary creature +mythical creature|1 +(noun)|mythical monster|monster|mythical being +mythical monster|1 +(noun)|mythical creature|monster|mythical being +mythical place|1 +(noun)|imaginary place|imagination|imaginativeness|vision +mythicise|2 +(verb)|mythicize|interpret|construe|see +(verb)|mythologize|mythologise|mythicize|change|alter|modify +mythicize|2 +(verb)|mythicise|interpret|construe|see +(verb)|mythologize|mythologise|mythicise|change|alter|modify +mythologic|1 +(adj)|fabulous|mythic|mythical|mythological|unreal +mythological|2 +(adj)|fabulous|mythic|mythical|mythologic|unreal +(adj)|social anthropology|cultural anthropology +mythologisation|1 +(noun)|mythologization|restatement +mythologise|2 +(verb)|mythologize|fabricate|manufacture|cook up|make up|invent +(verb)|mythologize|mythicize|mythicise|change|alter|modify +mythologist|1 +(noun)|expert +mythologization|1 +(noun)|mythologisation|restatement +mythologize|2 +(verb)|mythologise|fabricate|manufacture|cook up|make up|invent +(verb)|mythologise|mythicize|mythicise|change|alter|modify +mythology|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|social anthropology|cultural anthropology +mytilene|1 +(noun)|Lesbos|Lesvos|Mytilene|Aegean island +mytilid|1 +(noun)|marine mussel|mussel +mytilidae|1 +(noun)|Mytilidae|family Mytilidae|mollusk family +mytilus|1 +(noun)|Mytilus|genus Mytilus|mollusk genus +mytilus edulis|1 +(noun)|edible mussel|Mytilus edulis|marine mussel|mytilid +myxedema|1 +(noun)|myxoedema|hypothyroidism +myxine|1 +(noun)|Myxine|genus Myxine|fish genus +myxine glutinosa|1 +(noun)|Myxine glutinosa|hagfish|hag|slime eels +myxinidae|1 +(noun)|Myxinidae|family Myxinidae|fish family +myxiniformes|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +myxinikela|1 +(noun)|Myxinikela|genus Myxinikela|fish genus +myxinikela siroka|1 +(noun)|Myxinikela siroka|hagfish|hag|slime eels +myxinoidea|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +myxinoidei|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +myxobacter|1 +(noun)|myxobacteria|myxobacterium|gliding bacteria|slime bacteria|eubacteria|eubacterium|true bacteria +myxobacterales|1 +(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order +myxobacteria|1 +(noun)|myxobacterium|myxobacter|gliding bacteria|slime bacteria|eubacteria|eubacterium|true bacteria +myxobacteriaceae|1 +(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family +myxobacteriales|1 +(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order +myxobacterium|1 +(noun)|myxobacteria|myxobacter|gliding bacteria|slime bacteria|eubacteria|eubacterium|true bacteria +myxocephalus|1 +(noun)|Myxocephalus|genus Myxocephalus|fish genus +myxocephalus aenaeus|1 +(noun)|grubby|Myxocephalus aenaeus|sculpin +myxoedema|1 +(noun)|myxedema|hypothyroidism +myxoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +myxoma virus|1 +(noun)|poxvirus +myxomatosis|1 +(noun)|animal disease +myxomycete|1 +(noun)|true slime mold|acellular slime mold|plasmodial slime mold|slime mold|slime mould +myxomycetes|2 +(noun)|Myxomycetes|class Myxomycetes|class +(noun)|true slime mold|acellular slime mold|plasmodial slime mold|myxomycete|slime mold|slime mould +myxomycota|1 +(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division +myxophyceae|1 +(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family +myxosporidia|1 +(noun)|Myxosporidia|order Myxosporidia|animal order +myxosporidian|1 +(noun)|sporozoan +myxovirus|1 +(noun)|animal virus +n|5 +(noun)|normality|N|relative quantity +(noun)|nitrogen|N|atomic number 7|chemical element|element|gas +(noun)|north|due north|N|cardinal compass point +(noun)|newton|N|force unit +(noun)|N|letter|letter of the alphabet|alphabetic character +n'djamena|1 +(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital +n-type semiconductor|1 +(noun)|semiconductor device|semiconductor unit|semiconductor +n-ways|1 +(adv)|ways +n. y. stock exchange|1 +(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange|stock market|securities market +n.b.|2 +(noun)|nota bene|NB|N.B.|note|annotation|notation +(noun)|niobium|Nb|atomic number 41|metallic element|metal +na|1 +(noun)|sodium|Na|atomic number 11|metallic element|metal +na-dene|1 +(noun)|Na-Dene|Amerind|Amerindian language|American-Indian language|American Indian|Indian +nab|3 +(verb)|tag +(verb)|collar|nail|apprehend|arrest|pick up|cop|seize|prehend|clutch +(verb)|seize|prehend|clutch +nabalus|1 +(noun)|Nabalus|genus Nabalus|asterid dicot genus +nabalus alba|1 +(noun)|white lettuce|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root +nabalus serpentarius|1 +(noun)|lion's foot|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb|herbaceous plant +nabob|2 +(noun)|nawab|governor +(noun)|man of means|rich man|wealthy man +nabokov|1 +(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer|author +naboom|1 +(noun)|cactus euphorbia|Euphorbia ingens|spurge +nabothian cyst|1 +(noun)|nabothian follicle|cyst +nabothian follicle|1 +(noun)|nabothian cyst|cyst +nabothian gland|1 +(noun)|exocrine gland|duct gland +nabu|1 +(noun)|Nabu|Nebo|Semitic deity +nabumetone|1 +(noun)|Relafen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +nac|1 +(noun)|North Atlantic Council|NAC|council +nacelle|1 +(noun)|enclosure +nacho|1 +(noun)|tortilla chip +nacimiento|1 +(noun)|Nacimiento|mountain peak +nacre|1 +(noun)|mother-of-pearl|shell +nacreous|2 +(adj)|shell +(adj)|iridescent|opalescent|opaline|pearlescent|bright +nacreous cloud|1 +(noun)|mother-of-pearl cloud|cloud +nad|1 +(noun)|nicotinamide adenine dinucleotide|NAD|coenzyme +nada|1 +(noun)|nothing|nil|nix|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +nada daiquiri|1 +(noun)|NADA daiquiri|daiquiri|rum cocktail +nadine gordimer|1 +(noun)|Gordimer|Nadine Gordimer|writer|author +nadir|2 +(noun)|low-water mark|adversity|hardship|hard knocks +(noun)|celestial point +nadolol|1 +(noun)|Corgard|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +nadp|1 +(noun)|nicotinamide adenine dinucleotide phosphate|NADP|coenzyme +naegele's rule|1 +(noun)|Naegele's rule|principle|rule +naemorhedus|1 +(noun)|Naemorhedus|genus Naemorhedus|mammal genus +naemorhedus goral|1 +(noun)|goral|Naemorhedus goral|goat antelope +nafcil|1 +(noun)|nafcillin|Nafcil|penicillinase-resistant antibiotic +nafcillin|1 +(noun)|Nafcil|penicillinase-resistant antibiotic +nag|5 +(noun)|scold|scolder|nagger|common scold|unpleasant person|disagreeable person +(noun)|hack|jade|plug|horse|Equus caballus +(verb)|peck|hen-peck|complain|kick|plain|sound off|quetch|kvetch +(verb)|worry|vex +(verb)|remind +nag hammadi|2 +(noun)|Nag Hammadi|town +(noun)|Nag Hammadi|Nag Hammadi Library|collection|aggregation|accumulation|assemblage +nag hammadi library|1 +(noun)|Nag Hammadi|Nag Hammadi Library|collection|aggregation|accumulation|assemblage +naga|1 +(noun)|Naga|Kamarupan +nagami|1 +(noun)|nagami kumquat|oval kumquat|Fortunella margarita|kumquat|cumquat|kumquat tree +nagami kumquat|1 +(noun)|nagami|oval kumquat|Fortunella margarita|kumquat|cumquat|kumquat tree +nagano|1 +(noun)|Nagano|city|metropolis|urban center +nagari|1 +(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary|syllabic script|script +nagari script|1 +(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary|syllabic script|script +nagasaki|1 +(noun)|Nagasaki|city|metropolis|urban center|port +nageia|1 +(noun)|Nageia|genus Nageia|gymnosperm genus +nageia nagi|1 +(noun)|nagi|Nageia nagi|conifer|coniferous tree +nagger|1 +(noun)|scold|scolder|nag|common scold|unpleasant person|disagreeable person +nagging|1 +(adj)|shrewish|ill-natured +nagi|1 +(noun)|Nageia nagi|conifer|coniferous tree +nagoya|1 +(noun)|Nagoya|city|metropolis|urban center +naha city|1 +(noun)|Naha City|city|metropolis|urban center +nahuatl|2 +(noun)|Nahuatl|Indian|North American Indian|American Indian|Red Indian +(noun)|Nahuatl|Uto-Aztecan|Uto-Aztecan language +nahum|2 +(noun)|Nahum|prophet +(noun)|Nahum|Book of Nahum|book +naiad|2 +(noun)|water nymph|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|water nymph +naiad family|1 +(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|monocot family|liliopsid family +naiadaceae|1 +(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family|liliopsid family +naiadales|1 +(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order +naiant|1 +(adj)|swimming|horizontal +naias|1 +(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus|liliopsid genus +naif|1 +(adj)|naive |childlike|wide-eyed|dewy-eyed|simple|credulous|fleeceable|green|gullible|ignorant|inexperienced|innocent|ingenuous|simple-minded|unsophisticated|unworldly|credulous|uninformed|unworldly +naiki|1 +(noun)|Naiki|Central Dravidian +nail|10 +(noun)|horny structure|unguis +(noun)|fastener|fastening|holdfast|fixing +(noun)|linear unit +(verb)|attach|nail down +(verb)|collar|apprehend|arrest|pick up|nab|cop|seize|prehend|clutch +(verb)|smash|boom|blast|hit +(verb)|nail down|peg|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|breeze through|ace|pass with flying colors|sweep through|sail through|pass|make it +(verb)|pinpoint|locate|turn up +(verb)|complete|play +nail-biting|1 +(adj)|cliff-hanging|suspenseful|suspensive|tense +nail-tailed kangaroo|1 +(noun)|nail-tailed wallaby|wallaby|brush kangaroo +nail-tailed wallaby|1 +(noun)|nail-tailed kangaroo|wallaby|brush kangaroo +nail down|3 +(verb)|nail|peg|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|pin down|peg down|narrow down|narrow|specify|determine +(verb)|finalize|finalise|settle|end|terminate +nail enamel|1 +(noun)|nail polish|nail varnish|cosmetic|cosmetics|enamel +nail hole|1 +(noun)|hole +nail polish|1 +(noun)|nail enamel|nail varnish|cosmetic|cosmetics|enamel +nail varnish|1 +(noun)|nail polish|nail enamel|cosmetic|cosmetics|enamel +nailbrush|1 +(noun)|brush +nailer|1 +(noun)|worker +nailfile|1 +(noun)|file +nailhead|2 +(noun)|decoration|ornament|ornamentation +(noun)|knob|boss +nailrod|1 +(noun)|cat's-tail|bullrush|bulrush|reed mace|reedmace|Typha latifolia|cattail +nainsook|1 +(noun)|muslin +naira|1 +(noun)|Nigerian monetary unit +nairobi|1 +(noun)|Nairobi|capital of Kenya|national capital +naismith|1 +(noun)|Naismith|James Naismith|educator|pedagogue +naive|3 +(adj)|naive |naif|childlike|wide-eyed|dewy-eyed|simple|credulous|fleeceable|green|gullible|ignorant|inexperienced|innocent|ingenuous|simple-minded|unsophisticated|unworldly|credulous|uninformed|unworldly +(adj)|callow|inexperienced|unsophisticated|immature +(adj)|unsophisticated|artless +naive art|1 +(noun)|outsider art|self-taught art|vernacular art|primitive art|genre +naive realism|1 +(noun)|realism|philosophical doctrine|philosophical theory +naiveness|1 +(noun)|naivete|naivety|quality +naivete|1 +(noun)|naivety|naiveness|quality +naivety|1 +(noun)|naivete|naiveness|quality +naja|1 +(noun)|Naja|genus Naja|reptile genus +naja haje|1 +(noun)|asp|Egyptian cobra|Naja haje|cobra +naja hannah|1 +(noun)|hamadryad|king cobra|Ophiophagus hannan|Naja hannah|cobra +naja naja|1 +(noun)|Indian cobra|Naja naja|cobra +naja nigricollis|1 +(noun)|black-necked cobra|spitting cobra|Naja nigricollis|cobra +najadaceae|1 +(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family|liliopsid family +najas|2 +(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus|liliopsid genus +(noun)|Naja|genus Naja|reptile genus +najd|1 +(noun)|Nejd|Najd|geographical area|geographic area|geographical region|geographic region|tableland|plateau +naked|4 +(adj)|bare|au naturel|nude|unclothed +(adj)|defenseless|unprotected +(adj)|unaided|unassisted +(adj)|raw|overt |open +naked as a jaybird|1 +(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|stark naked|unclothed +naked as the day one was born|1 +(adj)|mother-naked|naked as the day you were born|in one's birthday suit|in your birthday suit|unclothed +naked as the day you were born|1 +(adj)|mother-naked|naked as the day one was born|in one's birthday suit|in your birthday suit|unclothed +naked eye|1 +(noun)|eye|oculus|optic +naked lady|2 +(noun)|autumn crocus|meadow saffron|Colchicum autumnale|bulbous plant +(noun)|belladonna lily|Amaryllis belladonna|amaryllis +naked mole rat|1 +(noun)|fossorial mammal +naked option|1 +(noun)|option +nakedness|1 +(noun)|nudity|nudeness|condition|status +nakedwood|2 +(noun)|tree +(noun)|Eugenia dicrana|zebrawood|zebrawood tree +nakuru|1 +(noun)|Nakuru|city|metropolis|urban center +nalchik|1 +(noun)|Nalchik|city|metropolis|urban center +nalfon|1 +(noun)|fenoprofen|fenoprofen calcium|Nalfon|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +nalidixic acid|1 +(noun)|NegGram|antibacterial|antibacterial drug|bactericide +nalline|1 +(noun)|nalorphine|Nalline|narcotic antagonist +nalorphine|1 +(noun)|Nalline|narcotic antagonist +naloxone|1 +(noun)|Narcan|narcotic antagonist +naltrexone|1 +(noun)|narcotic antagonist +namby-pamby|2 +(adj)|spineless|wishy-washy|weak +(noun)|weakling|doormat|wuss +name|15 +(noun)|language unit|linguistic unit +(noun)|sanction +(noun)|repute|reputation +(noun)|figure|public figure|important person|influential person|personage +(noun)|gens|family|family line|folk|kinfolk|kinsfolk|sept|phratry +(noun)|epithet|defamation|calumny|obloquy|traducement|hatchet job +(verb)|call|label +(verb)|identify|denote|refer +(verb)|nominate|make|appoint|charge +(verb)|appoint|nominate|constitute|establish|found|plant|constitute|institute +(verb)|specify|set|determine|fix|limit +(verb)|identify|discover|key|key out|distinguish|describe +(verb)|mention|advert|bring up|cite|refer|think of|have in mind|mean +(verb)|list|enumerate|recite|itemize|itemise +(verb)|diagnose|analyze|analyse|study|examine|canvass|canvas +name-dropping|1 +(noun)|mention|reference +name and address|1 +(noun)|address|destination|direction|instruction +name calling|1 +(noun)|names|defamation|calumny|obloquy|traducement|hatchet job +name day|1 +(noun)|saint's day +name dropper|1 +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player +name part|1 +(noun)|title role|character|role|theatrical role|part|persona +name tag|1 +(noun)|tag +named|2 +(adj)|called|titled +(adj)|onymous +namedrop|1 +(verb)|mention|advert|bring up|cite|name|refer +nameko|1 +(noun)|viscid mushroom|Pholiota nameko|agaric +nameless|1 +(adj)|unidentified|unknown|unnamed|anonymous |anon. +namelessness|1 +(noun)|anonymity|obscurity +namely|1 +(adv)|viz.|that is to say|videlicet +nameplate|1 +(noun)|plate +namer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +names|7 +(noun)|name calling|defamation|calumny|obloquy|traducement|hatchet job +(noun)|name|language unit|linguistic unit +(noun)|name|sanction +(noun)|name|repute|reputation +(noun)|name|figure|public figure|important person|influential person|personage +(noun)|name|gens|family|family line|folk|kinfolk|kinsfolk|sept|phratry +(noun)|name|epithet|defamation|calumny|obloquy|traducement|hatchet job +namesake|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +namib desert|1 +(noun)|Namib Desert|desert +namibia|1 +(noun)|Namibia|Republic of Namibia|South West Africa|African country|African nation +namibian|2 +(adj)|Namibian|African country|African nation +(noun)|Namibian|African +naming|3 +(adj)|appellative|denotative |denotive +(noun)|speech act +(noun)|appointment|assignment|designation|decision|determination|conclusion +nammad|1 +(noun)|numdah|numdah rug|rug|carpet|carpeting +nammu|1 +(noun)|Nammu|Semitic deity +namoi|1 +(noun)|Namoi|Namoi River|river +namoi river|1 +(noun)|Namoi|Namoi River|river +nampa|1 +(noun)|Nampa|town +namtar|1 +(noun)|Namtar|Namtaru|Semitic deity +namtaru|1 +(noun)|Namtar|Namtaru|Semitic deity +namur|1 +(noun)|Namur|city|metropolis|urban center +nan|3 +(noun)|grandma|grandmother|granny|grannie|gran +(noun)|Nan|Nan River|river +(noun)|bread|breadstuff|staff of life +nan-chang|2 +(noun)|Nanchang|Nan-chang|city|metropolis|urban center +(noun)| +nan-ning|2 +(noun)|Nanning|Nan-ning|city|metropolis|urban center +(noun)| +nan ling|1 +(noun)|Nan Ling|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +nan river|1 +(noun)|Nan|Nan River|river +nanaimo|1 +(noun)|Nanaimo|town +nanak|1 +(noun)|Nanak|Guru Nanak|religious leader +nance|1 +(noun)|fagot|faggot|fag|fairy|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +nancere|1 +(noun)|Nancere|East Chadic +nanchang|1 +(noun)|Nanchang|Nan-chang|city|metropolis|urban center +nancy|1 +(noun)|Nancy|city|metropolis|urban center +nancy freeman mitford|1 +(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer|author +nancy mitford|1 +(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer|author +nancy witcher astor|1 +(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess|politician|politico|pol|political leader +nand circuit|1 +(noun)|NAND circuit|NAND gate|gate|logic gate +nand gate|1 +(noun)|NAND circuit|NAND gate|gate|logic gate +nanda devi|1 +(noun)|Nanda Devi|mountain peak +nandrolone|1 +(noun)|Durabolin|Kabolin|androgen|androgenic hormone +nandu|1 +(noun)|rhea|Pterocnemia pennata|ratite|ratite bird|flightless bird +nanga parbat|1 +(noun)|Nanga Parbat|mountain peak +nanism|1 +(noun)|dwarfism|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +nanjing|1 +(noun)|Nanjing|Nanking|city|metropolis|urban center +nankeen|1 +(noun)|fabric|cloth|material|textile +nanking|1 +(noun)|Nanjing|Nanking|city|metropolis|urban center +nanna|2 +(noun)|Nanna|Norse deity +(noun)|Nanna|Semitic deity +nanning|1 +(noun)|Nanning|Nan-ning|city|metropolis|urban center +nanny|2 +(noun)|nursemaid|nurse|woman|adult female|keeper +(noun)|nanny-goat|she-goat|goat|caprine animal +nanny-goat|1 +(noun)|nanny|she-goat|goat|caprine animal +nanocephalic|1 +(adj)|microcephalic|microcephalous|abnormality|abnormalcy|abnormal condition +nanocephaly|1 +(noun)|microcephaly|microcephalus|abnormality|abnormalcy|abnormal condition +nanogram|1 +(noun)|ng|metric weight unit|weight unit +nanometer|1 +(noun)|nanometre|nm|millimicron|micromillimeter|micromillimetre|metric linear unit +nanometre|1 +(noun)|nanometer|nm|millimicron|micromillimeter|micromillimetre|metric linear unit +nanomia|1 +(noun)|siphonophore +nanophthalmos|1 +(noun)|abnormality|abnormalcy|abnormal condition +nanosecond|1 +(noun)|time unit|unit of time +nanotechnology|1 +(noun)|engineering|engineering science|applied science|technology +nanotube|1 +(noun)|carbon nanotube|fullerene +nanovolt|1 +(noun)|potential unit +nansen|1 +(noun)|Nansen|Fridtjof Nansen|explorer|adventurer|statesman|solon|national leader +nantes|1 +(noun)|Nantes|city|metropolis|urban center|port +nanticoke|2 +(noun)|Nanticoke|Algonquian|Algonquin +(noun)|Nanticoke|Algonquian|Algonquin|Algonquian language +nantua|1 +(noun)|Nantua|shrimp sauce|sauce +nantucket|1 +(noun)|Nantucket|island +nanus|1 +(noun)|dwarf|midget|small person +naomi|1 +(noun)|Naomi|Noemi|mother-in-law +nap|6 +(noun)|sleep|time period|period of time|period +(noun)|texture +(noun)|pile|thread|yarn +(noun)|catnap|cat sleep|forty winks|short sleep|snooze|sleeping +(noun)|Napoleon|card game|cards +(verb)|catnap|catch a wink|sleep|kip|slumber|log Z's|catch some Z's +napa|1 +(noun)|Chinese cabbage|celery cabbage|pe-tsai|Brassica rapa pekinensis|crucifer|cruciferous plant +napaea|2 +(noun)|Napaea|genus Napaea|dilleniid dicot genus +(noun)|Napaea|Napea|dryad|wood nymph +napaea dioica|1 +(noun)|glade mallow|Napaea dioica|mallow +napalm|1 +(noun)|gasoline|gasolene|gas|petrol +nape|1 +(noun)|scruff|nucha|rear|backside|back end +napea|1 +(noun)|Napaea|Napea|dryad|wood nymph +napery|1 +(noun)|table linen|linen +naphazoline|1 +(noun)|Privine|Sudafed|vasoconstrictor|vasoconstrictive|nasal decongestant +naphtha|1 +(noun)|hydrocarbon|solvent|dissolvent|dissolver|dissolving agent|resolvent +naphthalene|1 +(noun)|hydrocarbon +naphthalene poisoning|1 +(noun)|poisoning|toxic condition|intoxication +naphthol|1 +(noun)|phenol +naphthoquinone|1 +(noun)|vitamin K|antihemorrhagic factor|fat-soluble vitamin +napier|1 +(noun)|Napier|John Napier|mathematician +napier's bones|1 +(noun)|Napier's bones|Napier's rods|calculator|calculating machine +napier's rods|1 +(noun)|Napier's bones|Napier's rods|calculator|calculating machine +napierian logarithm|1 +(noun)|natural logarithm|Napierian logarithm|logarithm|log +napkin|2 +(noun)|table napkin|serviette|table linen|napery +(noun)|diaper|nappy|garment +napkin ring|1 +(noun)|hoop|ring +naples|1 +(noun)|Naples|Napoli|city|metropolis|urban center|port +naples garlic|1 +(noun)|daffodil garlic|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant +napoleon|3 +(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|the Little Corporal|general|full general|Emperor +(noun)|French pastry +(noun)|Napoleon|nap|card game|cards +napoleon bonaparte|1 +(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|the Little Corporal|general|full general|Emperor +napoleon i|1 +(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|the Little Corporal|general|full general|Emperor +napoleon iii|1 +(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|Emperor +napoleonic|1 +(adj)|Napoleonic|general|full general|Emperor +napoleonic wars|1 +(noun)|Napoleonic Wars|war|warfare +napoli|1 +(noun)|Naples|Napoli|city|metropolis|urban center|port +napped|1 +(adj)|brushed|fleecy|soft +napping|1 +(adj)|off-guard|off guard|off one's guard|off his guard|off her guard|off your guard|unready +nappy|2 +(adj)|crisp|frizzly|frizzy|kinky|curly +(noun)|diaper|napkin|garment +naprapath|1 +(noun)|therapist|healer +naprapathy|1 +(noun)|treatment +naprosyn|1 +(noun)|naproxen|Naprosyn|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +naproxen|1 +(noun)|Naprosyn|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +naproxen sodium|1 +(noun)|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +napu|1 +(noun)|Tragulus Javanicus|chevrotain|mouse deer +naqua|1 +(noun)|trichlormethiazide|Naqua|thiazide +nara|1 +(noun)|National Archives and Records Administration|NARA|independent agency +naranjilla|1 +(noun)|Solanum quitoense|shrub|bush +narc|1 +(noun)|nark|narcotics agent|lawman|law officer|peace officer +narcan|1 +(noun)|naloxone|Narcan|narcotic antagonist +narcism|1 +(noun)|self-love|narcissism|egoism|egocentrism|self-interest|self-concern|self-centeredness +narcissism|1 +(noun)|self-love|narcism|egoism|egocentrism|self-interest|self-concern|self-centeredness +narcissist|1 +(noun)|narcist|selfish person +narcissistic|1 +(adj)|egotistic|egotistical|self-loving|selfish +narcissistic personality|1 +(noun)|personality +narcissus|2 +(noun)|bulbous plant +(noun)|Narcissus|mythical being +narcissus jonquilla|1 +(noun)|jonquil|Narcissus jonquilla|narcissus +narcissus papyraceus|1 +(noun)|paper white|Narcissus papyraceus|daffodil|Narcissus pseudonarcissus +narcissus pseudonarcissus|1 +(noun)|daffodil|Narcissus pseudonarcissus|narcissus +narcist|1 +(noun)|narcissist|selfish person +narco-state|1 +(noun)|geographical area|geographic area|geographical region|geographic region +narcolepsy|1 +(noun)|hypersomnia +narcoleptic|3 +(adj)|hypersomnia +(noun)|sick person|diseased person|sufferer +(noun)|soporific|hypnotic +narcosis|1 +(noun)|unconsciousness +narcoterrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +narcotic|4 +(adj)|drug +(adj)|narcotizing|narcotising|depressant +(adj)|soporiferous|soporific|uninteresting +(noun)|drug +narcotic antagonist|1 +(noun)|antagonist +narcotics agent|1 +(noun)|narc|nark|lawman|law officer|peace officer +narcotise|1 +(verb)|narcotize|drug|dose +narcotised|1 +(adj)|doped|drugged|narcotized|intoxicated |drunk|inebriated +narcotising|1 +(adj)|narcotic|narcotizing|depressant +narcotize|1 +(verb)|narcotise|drug|dose +narcotized|1 +(adj)|doped|drugged|narcotised|intoxicated |drunk|inebriated +narcotizing|1 +(adj)|narcotic|narcotising|depressant +narcotraffic|1 +(noun)|drug traffic|drug trafficking|traffic +nard|1 +(noun)|spikenard|cream|ointment|emollient +nardil|1 +(noun)|phenelzine|Nardil|monoamine oxidase inhibitor|MAOI +nardo|1 +(noun)|nardoo|common nardoo|Marsilea drummondii|clover fern|pepperwort +nardoo|1 +(noun)|nardo|common nardoo|Marsilea drummondii|clover fern|pepperwort +nares deep|1 +(noun)|Nares Deep|trench|deep|oceanic abyss +narghile|1 +(noun)|hookah|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +nargileh|1 +(noun)|hookah|narghile|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +narial|1 +(adj)|orifice|opening|porta +naris|1 +(noun)|orifice|opening|porta +nark|4 +(noun)|copper's nark|informer|betrayer|rat|squealer|blabber +(noun)|narc|narcotics agent|lawman|law officer|peace officer +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nettle|gravel|vex|chafe|devil|displease +(verb)|inform +narragansett bay|1 +(noun)|Narragansett Bay|bay +narrate|2 +(verb)|inform +(verb)|tell|recount|recite|inform +narration|3 +(noun)|narrative|story|tale|message|content|subject matter|substance +(noun)|recital|yarn|report|account +(noun)|section|subdivision +narrative|2 +(adj)|communicative |communicatory +(noun)|narration|story|tale|message|content|subject matter|substance +narrator|1 +(noun)|storyteller|teller|speaker|talker|utterer|verbalizer|verbaliser +narrow|10 +(adj)|narrow |constricting|constrictive|narrowing|narrowed|slender|thin|strait|straplike|tapered|tapering|narrowing|limited|narrow-minded|thin +(adj)|limited +(adj)|narrow-minded |close-minded|closed-minded|dogmatic|dogmatical|illiberal|intolerant|opinionated|opinionative|self-opinionated|petty|small-minded +(adj)|narrow |bare|marginal +(adj)|minute|careful +(noun)|strait|sound +(verb)|contract|change|narrow down|narrow down +(verb)|pin down|peg down|nail down|narrow down|specify|determine +(verb)|specialize|specialise|narrow down|change|alter|vary +(verb)|constrict|constringe|tighten +narrow-body|1 +(noun)|narrowbody aircraft|narrow-body aircraft|airliner +narrow-body aircraft|1 +(noun)|narrowbody aircraft|narrow-body|airliner +narrow-leaf cattail|1 +(noun)|lesser bullrush|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail +narrow-leaf penstemon|1 +(noun)|Penstemon linarioides|wildflower|wild flower +narrow-leaved bottletree|1 +(noun)|Queensland bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree|bottle tree +narrow-leaved everlasting pea|1 +(noun)|flat pea|Lathyrus sylvestris|everlasting pea +narrow-leaved flame flower|1 +(noun)|Talinum augustissimum|flame flower|flame-flower|flameflower|Talinum aurantiacum +narrow-leaved plantain|1 +(noun)|English plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain +narrow-leaved reedmace|1 +(noun)|lesser bullrush|narrow-leaf cattail|soft flag|Typha angustifolia|cattail +narrow-leaved spleenwort|1 +(noun)|silvery spleenwort|glade fern|Athyrium pycnocarpon|Diplazium pycnocarpon|fern +narrow-leaved strap fern|1 +(noun)|Central American strap fern|Campyloneurum augustifolium|strap fern +narrow-leaved water plantain|1 +(noun)|water plantain|Alisma plantago-aquatica +narrow-leaved white-topped aster|1 +(noun)|white-topped aster +narrow-minded|3 +(adj)|shockable +(adj)|narrow-minded |narrow|close-minded|closed-minded|dogmatic|dogmatical|illiberal|intolerant|opinionated|opinionative|self-opinionated|petty|small-minded|narrow +(adj)|sectarian +narrow-mindedly|1 +(adv)|small-mindedly +narrow-mindedness|1 +(noun)|narrowness|intolerance +narrow beech fern|1 +(noun)|long beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +narrow boat|2 +(noun)|canal boat|narrowboat|boat +(noun)| +narrow down|3 +(verb)|pin down|peg down|nail down|narrow|specify|determine +(verb)|pin down|focus|focalize|focalise|sharpen +(verb)|specialize|specialise|narrow|change|alter|vary +narrow escape|1 +(noun)|close call|close shave|squeak|squeaker|accomplishment|achievement +narrow gauge|1 +(noun)|railroad track|railroad|railway|gauge +narrow goldenrod|1 +(noun)|Solidago spathulata|goldenrod +narrow wale|1 +(noun)|cord|corduroy +narrowboat|1 +(noun)|canal boat|narrow boat|boat +narrowbody aircraft|1 +(noun)|narrow-body aircraft|narrow-body|airliner +narrowed|3 +(adj)|narrow +(adj)|constricted +(adj)|contracted +narrowhead morel|1 +(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|morel +narrowing|5 +(adj)|tapered|tapering|narrow +(adj)|constricting|constrictive|narrow +(noun)|shape|form|configuration|contour|conformation +(noun)|decrease|decrement +(noun)|change of shape +narrowness|2 +(noun)|width|breadth +(noun)|narrow-mindedness|intolerance +narthecium|1 +(noun)|Narthecium|genus Narthecium|liliid monocot genus +narthecium americanum|1 +(noun)|American bog asphodel|Narthecium americanum|bog asphodel +narthecium ossifragum|1 +(noun)|European bog asphodel|Narthecium ossifragum|bog asphodel +narthex|2 +(noun)|portico +(noun)|anteroom|antechamber|entrance hall|hall|foyer|lobby|vestibule +narwal|1 +(noun)|narwhal|narwhale|Monodon monoceros|whale +narwhal|1 +(noun)|narwal|narwhale|Monodon monoceros|whale +narwhale|1 +(noun)|narwhal|narwal|Monodon monoceros|whale +nary|1 +(adj)|no +nasa|1 +(noun)|National Aeronautics and Space Administration|NASA|independent agency +nasal|4 +(adj)|rhinal|chemoreceptor +(adj)|adenoidal|pinched|high |high-pitched +(noun)|nasal consonant|continuant consonant|continuant +(noun)|nasal bone|os nasale|bone|os +nasal bone|1 +(noun)|nasal|os nasale|bone|os +nasal canthus|1 +(noun)|canthus +nasal cavity|1 +(noun)|cavity|bodily cavity|cavum +nasal concha|1 +(noun)|turbinate bone|turbinate|turbinal|concha +nasal consonant|1 +(noun)|nasal|continuant consonant|continuant +nasal decongestant|1 +(noun)|decongestant +nasal meatus|1 +(noun)|meatus +nasal septum|1 +(noun)|septum +nasal sinus|1 +(noun)|paranasal sinus|sinus paranasales|sinus +nasal twang|1 +(noun)|twang|nasality +nasale|1 +(verb)|utter|emit|let out|let loose +nasalis|1 +(noun)|Nasalis|genus Nasalis|mammal genus +nasalis larvatus|1 +(noun)|proboscis monkey|Nasalis larvatus|Old World monkey|catarrhine +nasalisation|1 +(noun)|nasalization|articulation +nasalise|2 +(verb)|nasalize|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|nasalize|pronounce|label|judge +nasality|1 +(noun)|timbre|timber|quality|tone +nasalization|1 +(noun)|nasalisation|articulation +nasalize|2 +(verb)|nasalise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|nasalise|pronounce|label|judge +nascence|1 +(noun)|birth|nativity|nascency|change|alteration|modification +nascency|1 +(noun)|birth|nativity|nascence|change|alteration|modification +nascent|1 +(adj)|emergent|emerging|aborning +nasdaq|1 +(noun)|National Association of Securities Dealers Automated Quotations|NASDAQ|data system|information system +naseby|1 +(noun)|Naseby|Battle of Naseby|pitched battle +nash|1 +(noun)|Nash|Ogden Nash|writer|author +nash equilibrium|1 +(noun)|Nash equilibrium|equilibrium +nashville|1 +(noun)|Nashville|capital of Tennessee|state capital +nasion|1 +(noun)|craniometric point +nasofrontal vein|1 +(noun)|vena nasofrontalis|vein|vena|venous blood vessel +nasogastric feeding|1 +(noun)|forced feeding|gavage +nasolacrimal duct|1 +(noun)|duct|epithelial duct|canal|channel +nasopharyngeal|1 +(adj)|cavity|bodily cavity|cavum +nasopharyngeal leishmaniasis|1 +(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|leishmaniasis|leishmaniosis|kala azar +nasopharynx|1 +(noun)|cavity|bodily cavity|cavum +nasotracheal tube|1 +(noun)|endotracheal tube +nassau|1 +(noun)|Nassau|capital of the Bahamas|national capital +nasser|2 +(noun)|Nasser|Gamal Abdel Nasser|statesman|solon|national leader +(noun)|Lake Nasser|Nasser|lake +nast|1 +(noun)|Nast|Thomas Nast|cartoonist +nastily|1 +(adv)|meanly +nastiness|3 +(noun)|filth|filthiness|foulness|unsanitariness +(noun)|cattiness|bitchiness|spite|spitefulness|malevolence|malevolency|malice +(noun)|unpleasantness +nasturtium|3 +(noun)|herb|herbaceous plant +(noun)|Nasturtium|genus Nasturtium|dilleniid dicot genus +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +nasturtium amphibium|1 +(noun)|great yellowcress|Rorippa amphibia|Nasturtium amphibium|watercress +nasturtium family|1 +(noun)|Tropaeolaceae|family Tropaeolaceae|rosid dicot family +nasturtium officinale|1 +(noun)|common watercress|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress +nasty|5 +(adj)|nasty |awful|dirty|filthy|lousy|grotty|hateful|mean|unpleasant|unpleasant +(adj)|tight|difficult |hard +(adj)|filthy|foul|vile|inclement +(adj)|filthy|foul|smutty|dirty +(adj)|filthy|foul|dirty |soiled|unclean +nasua|1 +(noun)|Nasua|genus Nasua|mammal genus +nasua narica|1 +(noun)|coati|coati-mondi|coati-mundi|coon cat|Nasua narica|procyonid +nat turner|1 +(noun)|Turner|Nat Turner|slave|insurgent|insurrectionist|freedom fighter|rebel +natal|4 +(adj)|change|alteration|modification +(adj)|body part +(noun)|Natal|district|territory|territorial dominion|dominion +(noun)|Natal|city|metropolis|urban center|port +natal day|1 +(noun)|birthday|date|day of the month +natal plum|3 +(noun)|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa +(noun)|hedge thorn|Carissa bispinosa|carissa +(noun)|carissa plum|edible fruit +natalie wood|1 +(noun)|Wood|Natalie Wood|actress +natality|1 +(noun)|birthrate|birth rate|fertility|fertility rate|rate +natantia|1 +(noun)|Natantia|suborder Natantia|animal order +natator|1 +(noun)|swimmer|bather|traveler|traveller +natatorium|1 +(noun)|swimming pool|swimming bath|pool|athletic facility +natchez|1 +(noun)|Natchez|town +nates|1 +(noun)|buttocks|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +nathan bailey|1 +(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer|lexicologist +nathan birnbaum|1 +(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian|comedian|comic +nathan hale|1 +(noun)|Hale|Nathan Hale|American Revolutionary leader +nathaniel bailey|1 +(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer|lexicologist +nathaniel bowditch|1 +(noun)|Bowditch|Nathaniel Bowditch|mathematician|astronomer|uranologist|stargazer +nathaniel currier|1 +(noun)|Currier|Nathaniel Currier|lithographer +nathaniel hawthorne|1 +(noun)|Hawthorne|Nathaniel Hawthorne|writer|author +naticidae|1 +(noun)|Naticidae|family Naticidae|mollusk family +nation|4 +(noun)|state|country|land|commonwealth|res publica|body politic|political unit +(noun)|land|country|a people|people +(noun)|confederation|confederacy|federation +(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry|prohibitionist +nation of islam|1 +(noun)|Nation of Islam|religious movement +national|8 +(adj)|political unit +(adj)|national |nationalist|nationalistic|domestic +(adj)|national |federal|general +(adj)|public +(adj)|home|interior|internal|domestic +(adj)|people +(adj)|status|position +(noun)|subject|person|individual|someone|somebody|mortal|human|soul +national academy of sciences|1 +(noun)|National Academy of Sciences|academy|honorary society +national aeronautics and space administration|1 +(noun)|National Aeronautics and Space Administration|NASA|independent agency +national anthem|1 +(noun)|anthem +national archives and records administration|1 +(noun)|National Archives and Records Administration|NARA|independent agency +national assistance|1 +(noun)|supplementary benefit|social assistance|social insurance +national association of securities dealers automated quotations|1 +(noun)|National Association of Securities Dealers Automated Quotations|NASDAQ|data system|information system +national bank|1 +(noun)|commercial bank|full service bank +national baseball hall of fame|1 +(noun)|National Baseball Hall of Fame|Hall of Fame +national capital|1 +(noun)|capital|city|metropolis|urban center +national censorship|1 +(noun)|censoring|censorship|security review +national climatic data center|1 +(noun)|National Climatic Data Center|NCDC|agency|federal agency|government agency|bureau|office|authority +national debt|1 +(noun)|debt +national debt ceiling|1 +(noun)|debt limit|debt ceiling +national flag|1 +(noun)|ensign|emblem|allegory|flag +national guard|1 +(noun)|National Guard|home reserve|territorial|territorial reserve +national guard bureau|1 +(noun)|National Guard Bureau|NGB|agency|federal agency|government agency|bureau|office|authority +national holiday|1 +(noun)|legal holiday|holiday +national imagery and mapping agency|1 +(noun)|National Imagery and Mapping Agency|NIMA|agency|federal agency|government agency|bureau|office|authority +national income|1 +(noun)|value +national institute of justice|1 +(noun)|National Institute of Justice|NIJ|law enforcement agency +national institute of standards and technology|1 +(noun)|National Institute of Standards and Technology|NIST|agency|federal agency|government agency|bureau|office|authority +national institutes of health|1 +(noun)|National Institutes of Health|NIH|agency|federal agency|government agency|bureau|office|authority +national insurance|1 +(noun)|social insurance +national intelligence community|1 +(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence|intelligence service|intelligence agency +national labor relations board|1 +(noun)|National Labor Relations Board|NRLB|independent agency +national leader|1 +(noun)|statesman|solon|politician|politico|pol|political leader +national liberation army|2 +(noun)|National Liberation Army|ELN|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization|terrorist group|foreign terrorist organization|FTO +national liberation front of corsica|1 +(noun)|National Liberation Front of Corsica|FLNC|terrorist organization|terrorist group|foreign terrorist organization|FTO +national library of medicine|1 +(noun)|National Library of Medicine|United States National Library of Medicine|U.S. National Library of Medicine|library +national monument|1 +(noun)|memorial|monument +national oceanic and atmospheric administration|1 +(noun)|National Oceanic and Atmospheric Administration|NOAA|agency|federal agency|government agency|bureau|office|authority +national park|1 +(noun)|park|parkland +national park service|1 +(noun)|National Park Service|agency|federal agency|government agency|bureau|office|authority +national reconnaissance office|1 +(noun)|National Reconnaissance Office|NRO|United States intelligence agency +national rifle association|1 +(noun)|National Rifle Association|NRA|lobby|pressure group|third house +national security agency|1 +(noun)|National Security Agency|NSA|United States intelligence agency +national security council|1 +(noun)|National Security Council|NSC|executive agency +national service|1 +(noun)|service +national socialism|1 +(noun)|Nazism|Naziism|socialism|socialist economy +national socialist|1 +(adj)|Nazi|managed economy +national socialist german workers' party|1 +(noun)|National Socialist German Workers' Party|Nazi Party|party|political party +national technical information service|1 +(noun)|National Technical Information Service|NTIS|agency|federal agency|government agency|bureau|office|authority +national trading policy|1 +(noun)|trade policy|foreign policy +national trust|1 +(noun)|National Trust|NT|nongovernmental organization|NGO +national volunteers association|1 +(noun)|Rashtriya Swayamsevak Sangh|National Volunteers Association|secret society +national weather service|1 +(noun)|National Weather Service|agency|federal agency|government agency|bureau|office|authority +nationalisation|3 +(noun)|nationalization|group action +(noun)|nationalization|change +(noun)|nationalization|communization|communisation|social control +nationalise|2 +(verb)|nationalize|change|alter|modify +(verb)|nationalize|change|alter|modify +nationalism|4 +(noun)|patriotism|loyalty +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|ambition|aspiration|dream +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +nationalist|3 +(adj)|nationalistic|national +(noun)|patriot|national|subject +(noun)|advocate|advocator|proponent|exponent +nationalist china|1 +(noun)|Taiwan|China|Nationalist China|Republic of China|island +nationalist leader|1 +(noun)|nationalist|leader +nationalistic|2 +(adj)|chauvinistic|flag-waving|jingoistic|ultranationalistic|superpatriotic|patriotic |loyal +(adj)|nationalist|national +nationality|1 +(noun)|status|position +nationalization|3 +(noun)|nationalisation|group action +(noun)|nationalisation|change +(noun)|nationalisation|communization|communisation|social control +nationalize|2 +(verb)|nationalise|change|alter|modify +(verb)|nationalise|change|alter|modify +nationally|1 +(adv)|nationwide|across the nation|across the country +nationaol science foundation|1 +(noun)|Nationaol Science Foundation|NSF|independent agency +nationwide|2 +(adj)|countrywide|wide |broad +(adv)|nationally|across the nation|across the country +native|6 +(adj)|native |autochthonal|autochthonic|autochthonous|endemic|indigenous|domestic|homegrown|native-born +(adj)|native +(adj)|native |aboriginal +(adj)|pure +(adj)|connatural|inborn|inbred|normal +(noun)|indigen|indigene|person|individual|someone|somebody|mortal|human|soul +native-born|1 +(adj)|native +native alaskan|1 +(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan +native american|2 +(adj)|Indian|Amerind|Amerindic|native American|Amerindian|Native American +(noun)|Amerindian|Native American|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +native australian|1 +(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian|Aussie|ethnic group|ethnos +native bear|1 +(noun)|koala|koala bear|kangaroo bear|Phascolarctos cinereus|phalanger|opossum|possum +native beech|1 +(noun)|flindosa|flindosy|Flindersia australis|silver ash +native cat|1 +(noun)|Dasyurus viverrinus|dasyure +native cranberry|1 +(noun)|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub|bush +native fuchsia|1 +(noun)|konini|tree fuchsia|Fuchsia excorticata|fuchsia +native hawaiian|1 +(noun)|Native Hawaiian|Hawaiian +native holly|1 +(noun)|common flat pea|Playlobium obtusangulum|shrub|bush +native land|1 +(noun)|fatherland|homeland|motherland|mother country|country of origin|country|state|land +native language|1 +(noun)|language|linguistic communication +native orange|1 +(noun)|Capparis mitchellii|caper +native peach|1 +(noun)|quandong|quandang|quantong|edible fruit +native pear|1 +(noun)|woody pear|Xylomelum pyriforme|shrub|bush +native pomegranate|1 +(noun)|Capparis arborea|caper +native speaker|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +native sulfur|1 +(noun)|brimstone|native sulphur|sulfur|S|sulphur|atomic number 16 +native sulphur|1 +(noun)|brimstone|native sulfur|sulfur|S|sulphur|atomic number 16 +nativeness|1 +(noun)|quality +nativism|2 +(noun)|social policy +(noun)|philosophical doctrine|philosophical theory +nativist|3 +(adj)|nativistic|social policy +(adj)|nativistic|philosophical doctrine|philosophical theory +(noun)|philosopher +nativistic|2 +(adj)|nativist|social policy +(adj)|nativist|philosophical doctrine|philosophical theory +nativity|2 +(noun)|birth|nascency|nascence|change|alteration|modification +(noun)|Virgin Birth|Nativity|theological doctrine|religious doctrine +nato|1 +(noun)|North Atlantic Treaty Organization|NATO|world organization|world organisation|international organization|international organisation|global organization +natriuresis|1 +(noun)|symptom +natriuretic|1 +(adj)|symptom +natrix|1 +(noun)|Natrix|genus Natrix|reptile genus +natrix maura|1 +(noun)|viperine grass snake|Natrix maura|grass snake|ring snake|ringed snake|Natrix natrix +natrix natrix|1 +(noun)|grass snake|ring snake|ringed snake|Natrix natrix|water snake +natrix sipedon|1 +(noun)|common water snake|banded water snake|Natrix sipedon|Nerodia sipedon|water snake +natrolite|1 +(noun)|zeolite +natta|1 +(noun)|Natta|Giulio Natta|chemist +natter|1 +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|gossip|jaw|claver|visit|converse|discourse +natterjack|1 +(noun)|Bufo calamita|true toad +nattiness|1 +(noun)|jauntiness|dapperness|rakishness|chic|chicness|modishness|smartness|stylishness|swank|last word +natty|1 +(adj)|dapper|dashing|jaunty|raffish|rakish|smart|spiffy|snappy|spruce|fashionable |stylish +natural|13 +(adj)|natural |earthy|elemental +(adj)|natural |fresh|unbleached|uncolored|undyed +(adj)|natural |physical +(adj)|normal +(adj)|natural +(adj)|instinctive|spontaneous |self-generated +(adj)|raw|rude|unprocessed +(adj)|biological +(adj)|born|innate|intelligent +(adj)|lifelike|unaffected +(noun)|achiever|winner|success|succeeder +(noun)|cancel|musical notation +(noun)|cast|roll +natural ability|1 +(noun)|aptitude +natural action|1 +(noun)|natural process|action|activity|process +natural childbirth|1 +(noun)|childbirth|childbearing|accouchement|vaginal birth +natural covering|1 +(noun)|covering|cover|natural object +natural depression|1 +(noun)|depression|geological formation|formation +natural elevation|1 +(noun)|elevation|geological formation|formation +natural enclosure|1 +(noun)|enclosure|entity +natural endowment|1 +(noun)|endowment|gift|talent|natural ability +natural event|1 +(noun)|happening|occurrence|event +natural family planning|1 +(noun)|birth control|birth prevention|family planning +natural fiber|1 +(noun)|natural fibre|fiber|fibre +natural fibre|1 +(noun)|natural fiber|fiber|fibre +natural gas|1 +(noun)|gas|fossil fuel +natural glass|1 +(noun)|glass +natural history|1 +(noun)|explanation +natural immunity|1 +(noun)|innate immunity|immunity|resistance +natural language|1 +(noun)|tongue|language|linguistic communication +natural language processing|1 +(noun)|NLP|human language technology|information science|informatics|information processing|IP +natural language processing application|1 +(noun)|natural language processor|application|application program|applications programme +natural language processor|1 +(noun)|natural language processing application|application|application program|applications programme +natural law|1 +(noun)|law|concept|conception|construct +natural logarithm|1 +(noun)|Napierian logarithm|logarithm|log +natural number|1 +(noun)|number +natural object|1 +(noun)|object|physical object +natural order|1 +(noun)|universe|existence|creation|world|cosmos|macrocosm +natural phenomenon|1 +(noun)|phenomenon +natural philosophy|1 +(noun)|physics|physical science|natural science +natural process|1 +(noun)|natural action|action|activity|process +natural resin|1 +(noun)|resin|rosin|plant product +natural resource|1 +(noun)|natural resources|resource +natural resources|2 +(noun)|natural resource|resource +(noun)|natural resource|resource +natural science|1 +(noun)|science|scientific discipline +natural scientist|1 +(noun)|naturalist|biologist|life scientist +natural selection|1 +(noun)|survival|survival of the fittest|selection|natural process|natural action|action|activity +natural shape|1 +(noun)|shape|form +natural spring|1 +(noun)|spring|fountain|outflow|outpouring|geological formation|formation +natural state|1 +(noun)|wild|state of nature|state +natural theology|1 +(noun)|theology|theological system +natural virtue|1 +(noun)|cardinal virtue +naturalisation|4 +(noun)|naturalization|naturalness +(noun)|naturalization|proceeding|legal proceeding|proceedings +(noun)|naturalization|introduction|debut|first appearance|launching|unveiling|entry +(noun)|naturalization|borrowing|adoption +naturalise|4 +(verb)|naturalize|adapt|accommodate +(verb)|naturalize|change|alter|modify +(verb)|naturalize|change|alter|modify +(verb)|domesticate|cultivate|naturalize|tame|adapt|accommodate +naturalised|1 +(adj)|naturalized|planted +naturalism|2 +(noun)|philosophical doctrine|philosophical theory +(noun)|realism|artistic movement|art movement +naturalist|2 +(noun)|philosopher +(noun)|natural scientist|biologist|life scientist +naturalistic|1 +(adj)|realistic|representational +naturalization|4 +(noun)|naturalisation|naturalness +(noun)|naturalisation|proceeding|legal proceeding|proceedings +(noun)|naturalisation|introduction|debut|first appearance|launching|unveiling|entry +(noun)|naturalisation|borrowing|adoption +naturalize|5 +(verb)|naturalise|change|alter|modify +(verb)|explain|explicate +(verb)|naturalise|adapt|accommodate +(verb)|naturalise|change|alter|modify +(verb)|domesticate|cultivate|naturalise|tame|adapt|accommodate +naturalized|2 +(adj)|established|foreign +(adj)|naturalised|planted +naturally|2 +(adv)|of course|course +(adv)|by nature +naturally occurring|1 +(adj)|present +naturalness|2 +(noun)|quality +(noun)|artlessness|innocence|ingenuousness|naivete|naivety|naiveness +nature|5 +(noun)|quality +(noun)|causal agent|cause|causal agency +(noun)|universe|existence|creation|world|cosmos|macrocosm +(noun)|trait +(noun)|type +nature study|1 +(noun)|inquiry|enquiry|research +nature worship|1 +(noun)|religion|faith|religious belief +naturism|1 +(noun)|nudism|practice|pattern +naturist|1 +(noun)|nudist|individualist +naturistic|1 +(adj)|practice|pattern +naturopath|1 +(noun)|therapist|healer +naturopathy|1 +(noun)|treatment +nauch|1 +(noun)|nautch|nautch dance|dancing|dance|terpsichore|saltation +nauclea|1 +(noun)|Nauclea|genus Nauclea|asterid dicot genus +nauclea diderrichii|1 +(noun)|opepe|Nauclea diderrichii|Sarcocephalus diderrichii|tree +naucrates|1 +(noun)|Naucrates|genus Naucrates|fish genus +naucrates ductor|1 +(noun)|pilotfish|Naucrates ductor|carangid fish|carangid +naught|2 +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|zero|zilch|zip|relative quantity +(noun)|failure +naughtily|1 +(adv)|badly|mischievously +naughtiness|1 +(noun)|mischievousness|badness|disobedience +naughty|2 +(adj)|blue|gamy|gamey|juicy|racy|risque|spicy|sexy +(adj)|mischievous|bad +naumachia|1 +(noun)|naumachy|spectacle +naumachy|1 +(noun)|naumachia|spectacle +naupathia|1 +(noun)|seasickness|mal de mer|motion sickness|kinetosis +nauru|2 +(noun)|Nauru|Republic of Nauru|country|state|land +(noun)|Nauru|Nauru Island|Pleasant Island|island +nauru island|1 +(noun)|Nauru|Nauru Island|Pleasant Island|island +nauruan|2 +(adj)|Nauruan|country|state|land +(noun)|Nauruan|Austronesian +nausea|2 +(noun)|sickness|symptom +(noun)|disgust +nauseant|1 +(noun)|emetic|vomit|vomitive|remedy|curative|cure +nauseate|2 +(verb)|sicken|turn one's stomach|disgust|gross out|revolt|repel +(verb)|disgust|revolt|sicken|churn up|repel|repulse +nauseated|1 +(adj)|queasy|sick|sickish|ill |sick +nauseating|1 +(adj)|nauseous|noisome|loathsome|offensive|sickening|vile|unwholesome +nauseatingness|1 +(noun)|disgustingness|distastefulness|sickeningness|unsavoriness|unpalatability|unpalatableness +nauseous|1 +(adj)|nauseating|noisome|loathsome|offensive|sickening|vile|unwholesome +naut mi|2 +(noun)|nautical mile|mile|mi|geographical mile|Admiralty mile|nautical linear unit +(noun)|nautical mile|mile|mi|knot|international nautical mile|air mile|nautical linear unit +nautch|1 +(noun)|nauch|nautch dance|dancing|dance|terpsichore|saltation +nautch dance|1 +(noun)|nautch|nauch|dancing|dance|terpsichore|saltation +nautch girl|1 +(noun)|dancer|professional dancer +nautical|1 +(adj)|maritime|marine|transportation|shipping|transport +nautical chain|1 +(noun)|chain +nautical linear unit|1 +(noun)|linear unit +nautical mile|2 +(noun)|naut mi|mile|mi|geographical mile|Admiralty mile|nautical linear unit +(noun)|mile|mi|naut mi|knot|international nautical mile|air mile|nautical linear unit +nautical signal flag|1 +(noun)|code flag|flag|signal flag +nautilidae|1 +(noun)|Nautilidae|family Nautilidae|mollusk family +nautilus|3 +(noun)|nuclear submarine|nuclear-powered submarine|submarine|pigboat|sub|U-boat +(noun)|paper nautilus|Argonaut|Argonauta argo|octopod +(noun)|chambered nautilus|pearly nautilus|cephalopod|cephalopod mollusk +navaho|2 +(noun)|Navaho|Navajo|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|Navaho|Navajo|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +navajo|2 +(noun)|Navaho|Navajo|Athapaskan|Athapascan|Athabaskan|Athabascan +(noun)|Navaho|Navajo|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language +naval|1 +(adj)|military service|armed service|service +naval academy|1 +(noun)|academy +naval air warfare center weapons division|1 +(noun)|Naval Air Warfare Center Weapons Division|NAWCWPNS|agency|federal agency|government agency|bureau|office|authority +naval attache|1 +(noun)|military attache +naval battle|1 +(noun)|battle|conflict|fight|engagement +naval blockade|1 +(noun)|blockade|encirclement +naval brass|1 +(noun)|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass|Muntz metal|yellow metal +naval campaign|1 +(noun)|operation|military operation +naval chart|1 +(noun)|navigational chart|pilot chart|chart +naval commander|1 +(noun)|naval officer +naval division|1 +(noun)|division|naval unit +naval engineer|1 +(noun)|marine engineer|engineer|applied scientist|technologist +naval engineering|1 +(noun)|engineering|engineering science|applied science|technology +naval equipment|1 +(noun)|equipment +naval forces|1 +(noun)|navy|military service|armed service|service +naval gun|1 +(noun)|naval weaponry +naval installation|1 +(noun)|shore station|military installation +naval missile|1 +(noun)|naval weaponry +naval officer|1 +(noun)|military officer|officer +naval radar|1 +(noun)|naval equipment +naval research laboratory|1 +(noun)|Naval Research Laboratory|NRL|agency|federal agency|government agency|bureau|office|authority +naval shipyard|1 +(noun)|navy yard|shipyard +naval special warfare|1 +(noun)|Naval Special Warfare|NSW|agency|federal agency|government agency|bureau|office|authority +naval surface warfare center|1 +(noun)|Naval Surface Warfare Center|NSWC|agency|federal agency|government agency|bureau|office|authority +naval tactical data system|1 +(noun)|shipboard system +naval underwater warfare center|1 +(noun)|Naval Underwater Warfare Center|NUWC|agency|federal agency|government agency|bureau|office|authority +naval unit|1 +(noun)|military unit|military force|military group|force +naval weaponry|1 +(noun)|weaponry|arms|implements of war|weapons system|munition +navane|1 +(noun)|thiothixene|Navane|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +navarino|1 +(noun)|Navarino|battle of Navarino|naval battle +nave|1 +(noun)|area +navel|2 +(noun)|umbilicus|bellybutton|omphalos|omphalus|point +(noun)|navel point|center|centre|midpoint +navel orange|1 +(noun)|sweet orange +navel point|1 +(noun)|navel|center|centre|midpoint +navicular|2 +(adj)|scaphoid|formed +(noun)|scaphoid bone|os scaphoideum|carpal bone|carpal|wrist bone +navigability|1 +(noun)|suitability|suitableness +navigable|1 +(adj)|passable +navigate|3 +(verb)|voyage|sail|travel|journey +(verb)|pilot|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +navigation|3 +(noun)|pilotage|piloting|steering|guidance|direction +(noun)|transportation|shipping|transport +(noun)|seafaring|sailing|employment|work +navigation light|1 +(noun)|light|light source +navigational|1 +(adj)|steering|guidance|direction +navigational chart|1 +(noun)|naval chart|pilot chart|chart +navigational instrument|1 +(noun)|instrument +navigational system|1 +(noun)|system +navigator|3 +(noun)|sailing master|officer|ship's officer +(noun)|aircrewman +(noun)|explorer|adventurer +navratilova|1 +(noun)|Navratilova|Martina Navratilova|tennis player +navvy|1 +(noun)|drudge|peon|galley slave|laborer|manual laborer|labourer|jack +navy|2 +(noun)|naval forces|military service|armed service|service +(noun)|dark blue|navy blue|blue|blueness +navy base|1 +(noun)|base|base of operations +navy bean|1 +(noun)|pea bean|white bean|common bean +navy blue|1 +(noun)|dark blue|navy|blue|blueness +navy cross|1 +(noun)|Navy Cross|decoration|laurel wreath|medal|medallion|palm|ribbon +navy department|1 +(noun)|Navy Department|executive department +navy man|1 +(noun)|bluejacket|sailor|sailor boy|serviceman|military man|man|military personnel +navy seal|1 +(noun)|Navy SEAL|SEAL|bluejacket|navy man|sailor|sailor boy +navy secretary|1 +(noun)|Secretary of the Navy|Navy Secretary|secretaryship +navy yard|1 +(noun)|naval shipyard|shipyard +nawab|1 +(noun)|nabob|governor +nawcwpns|1 +(noun)|Naval Air Warfare Center Weapons Division|NAWCWPNS|agency|federal agency|government agency|bureau|office|authority +nay|1 +(noun)|negative +naysayer|1 +(noun)|obstructionist|obstructor|obstructer|resister|thwarter +naysaying|1 +(noun)|denial +nazarene|5 +(adj)|Nazarene|religionist|religious person +(adj)|Nazarene|town|inhabitant|dweller|denizen|indweller +(noun)|Nazarene|Ebionite|religionist|religious person +(noun)|Nazarene|Christian +(noun)|Nazarene|inhabitant|dweller|denizen|indweller +nazareth|1 +(noun)|Nazareth|town +naze|1 +(noun)|Lindesnes|Naze|cape|ness +nazi|3 +(adj)|Nazi|socialism|socialist economy +(adj)|national socialist|Nazi|managed economy +(noun)|Nazi|German Nazi|fascist +nazi germany|1 +(noun)|Third Reich|Nazi Germany|Reich +nazi party|1 +(noun)|National Socialist German Workers' Party|Nazi Party|party|political party +nazification|1 +(noun)|Nazification|social process +nazify|1 +(verb)|Nazify|change|alter|modify +naziism|1 +(noun)|Nazism|Naziism|national socialism|socialism|socialist economy +nazimova|1 +(noun)|Nazimova|Alla Nazimova|actress +nazism|1 +(noun)|Nazism|Naziism|national socialism|socialism|socialist economy +nb|2 +(noun)|niobium|Nb|atomic number 41|metallic element|metal +(noun)|nota bene|NB|N.B.|note|annotation|notation +nbe|1 +(noun)|north by east|NbE|compass point|point +nbw|1 +(noun)|north by west|NbW|compass point|point +nc|1 +(noun)|North Carolina|Old North State|Tar Heel State|NC|American state +ncdc|1 +(noun)|National Climatic Data Center|NCDC|agency|federal agency|government agency|bureau|office|authority +nd|2 +(noun)|neodymium|Nd|atomic number 60|metallic element|metal +(noun)|North Dakota|Peace Garden State|ND|American state +ndebele|1 +(noun)|Ndebele|Matabele|Nguni +ndjamena|1 +(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital +ne|3 +(noun)|neon|Ne|atomic number 10|chemical element|element|noble gas|inert gas|argonon +(noun)|northeast|nor'-east|NE|compass point|point +(noun)|Nebraska|Cornhusker State|NE|American state +ne'er|1 +(adv)|never +ne'er-do-well|1 +(noun)|goldbrick|goof-off|good-for-nothing|good-for-naught|idler|loafer|do-nothing|layabout|bum +ne plus ultra|1 +(noun)|perfection|flawlessness|state +neandertal|3 +(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human +(adj)|boorish|loutish|neanderthal|oafish|swinish|unrefined +(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo|man|human being|human +neandertal man|1 +(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo|man|human being|human +neanderthal|3 +(adj)|boorish|loutish|neandertal|oafish|swinish|unrefined +(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human +(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo|man|human being|human +neanderthal man|1 +(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo|man|human being|human +neanderthalian|1 +(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human +neap|1 +(noun)|neap tide|high tide|high water|highwater +neap tide|1 +(noun)|neap|high tide|high water|highwater +neapolitan|1 +(adj)|Neapolitan|city|metropolis|urban center|port +neapolitan ice cream|1 +(noun)|Neapolitan ice cream|ice cream +near|9 +(adj)|near |close|adjacent|moral|nearby|nearer|neighbor|neighbour|neighboring|neighbouring|nigh|warm|hot|nighest|nearest +(adj)|nigh|left +(adj)|artificial |unreal +(adj)|cheeseparing|close|penny-pinching|stingy |ungenerous +(adj)|dear|good|close +(adj)|approximate|close +(verb)|approach|come on|go up|draw near|draw close|come near|come|come up +(adv)|nigh|close +(adv)|about|just about|almost|most|all but|nearly|nigh|virtually|well-nigh +near-blind|1 +(adj)|dim-sighted|purblind|sand-blind|visually impaired|visually challenged|blind |unsighted +near-death experience|1 +(noun)|experience +near beer|1 +(noun)|beverage|drink|drinkable|potable +near east|1 +(noun)|Middle East|Mideast|Near East|geographical area|geographic area|geographical region|geographic region +near gale|1 +(noun)|moderate gale|gale +near miss|1 +(noun)|mishap|misadventure|mischance +near thing|1 +(noun)|avoidance|turning away|shunning|dodging +near vision|1 +(noun)|sight|vision|visual sense|visual modality +nearby|1 +(adj)|near |close +nearer|8 +(adj)|near |close +(adj)|near |close|adjacent|moral|nearby|neighbor|neighbour|neighboring|neighbouring|nigh|warm|hot|nighest|nearest +(adj)|near|nigh|left +(adj)|near|artificial |unreal +(adj)|cheeseparing|close|near|penny-pinching|stingy |ungenerous +(adj)|dear|good|near|close +(adj)|approximate|near|close +(adv)|nigher|closer +nearest|8 +(adj)|nighest|near |close +(adj)|near |close|adjacent|moral|nearby|nearer|neighbor|neighbour|neighboring|neighbouring|nigh|warm|hot|nighest +(adj)|near|nigh|left +(adj)|near|artificial |unreal +(adj)|cheeseparing|close|near|penny-pinching|stingy |ungenerous +(adj)|dear|good|near|close +(adj)|approximate|near|close +(adv)|nighest|closest +nearly|2 +(adv)|about|just about|almost|most|all but|near|nigh|virtually|well-nigh +(adv)|closely|intimately +nearness|1 +(noun)|closeness|distance +nearside|1 +(noun)|side +nearsighted|1 +(adj)|nearsighted |myopic +nearsightedness|1 +(noun)|myopia|shortsightedness|ametropia +neat|6 +(adj)|tidy +(adj)|tidy +(adj)|refined|tasteful|elegant +(adj)|clean|adroit +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|nifty|not bad|peachy|slap-up|swell|smashing|good +(adj)|straight|full-strength|undiluted +neat's-foot oil|1 +(noun)|animal oil +neaten|2 +(verb)|tidy|tidy up|clean up|straighten|straighten out|square away|order +(verb)|groom|beautify|embellish|prettify +neatly|1 +(adv)|showing neatness +neatness|2 +(noun)|spruceness|tidiness +(noun)|tidiness|cleanliness +neb|2 +(noun)|snout|nose|olfactory organ +(noun)|beak|bill|nib|pecker|mouth +nebbech|1 +(noun)|nebbish|simpleton|simple +nebbish|1 +(noun)|nebbech|simpleton|simple +nebcin|1 +(noun)|tobramycin|Nebcin|antibiotic|antibiotic drug +nebe|1 +(noun)|northeast by east|NEbE|compass point|point +nebiim|1 +(noun)|Prophets|Nebiim|sacred text|sacred writing|religious writing|religious text +nebn|1 +(noun)|northeast by north|NEbN|compass point|point +nebo|1 +(noun)|Nabu|Nebo|Semitic deity +nebraska|1 +(noun)|Nebraska|Cornhusker State|NE|American state +nebraska fern|1 +(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +nebraskan|1 +(noun)|Nebraskan|Cornhusker|American +nebuchadnezzar|2 +(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king|male monarch +(noun)|wine bottle +nebuchadnezzar ii|1 +(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king|male monarch +nebuchadrezzar|1 +(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king|male monarch +nebuchadrezzar ii|1 +(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king|male monarch +nebula|4 +(noun)|formulation|preparation +(noun)|symptom +(noun)|cloud +(noun)|spot|speckle|dapple|patch|fleck|maculation +nebular|2 +(adj)|cloud +(adj)|cloudlike|cloudy +nebular hypothesis|1 +(noun)|scientific theory +nebulose|1 +(adj)|cloudy|nebulous|indistinct +nebulous|2 +(adj)|cloudy|nebulose|indistinct +(adj)|unfixed|indefinite +nec|1 +(noun)|necrotizing enterocolitis|NEC|inflammatory disease +necessarily|2 +(adv)|needfully +(adv)|inevitably|of necessity|needs +necessary|3 +(adj)|necessary |essential|indispensable|needed|needful|required|requisite|obligatory|essential|indispensable|obligatory +(adj)|inevitable +(noun)|necessity|essential|requirement|requisite|thing +necessitarian|1 +(noun)|philosopher +necessitate|2 +(verb)|ask|postulate|need|require|take|involve|call for|demand +(verb)|bring about +necessitous|1 +(adj)|destitute|impoverished|indigent|needy|poverty-stricken|poor +necessity|2 +(noun)|need|demand +(noun)|essential|requirement|requisite|necessary|thing +neck|5 +(noun)|cervix|external body part +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|cut|cut of meat +(noun)|opening +(verb)|make out|pet +neck-deep|1 +(adj)|up to my neck|up to your neck|up to her neck|up to his neck|up to our necks|up to their necks|involved +neck and neck|2 +(adj)|head-to-head|nip and tuck|inconclusive +(adv)|head-to-head|nip and tuck +neck bone|1 +(noun)|cervical vertebra|vertebra +neck brace|1 +(noun)|brace +neck exercise|1 +(noun)|exercise|exercising|physical exercise|physical exertion|workout +neck of the woods|1 +(noun)|vicinity|locality|neighborhood|neighbourhood|section +neck ruff|1 +(noun)|choker|ruff|ruffle|collar|neckband +neck sweetbread|1 +(noun)|throat sweetbread|variety meat|organs +neckar|1 +(noun)|Neckar|Neckar River|river +neckar river|1 +(noun)|Neckar|Neckar River|river +neckband|3 +(noun)|band|banding|stripe +(noun)|collar|band +(noun)|choker|collar|dog collar|necklace +neckcloth|1 +(noun)|stock|cravat +necked|1 +(adj)|necked |decollete|low-cut|low-necked|high-necked|polo-neck|throated|turtleneck|turtlenecked|necklike +necker|1 +(noun)|lover +neckerchief|1 +(noun)|kerchief +necking|2 +(noun)|gorgerin|molding|moulding +(noun)|caressing|cuddling|fondling|hugging|kissing|petting|smooching|snuggling|foreplay|arousal|stimulation +necklace|1 +(noun)|jewelry|jewellery +necklace poplar|1 +(noun)|Eastern cottonwood|Populus deltoides|cottonwood +necklace tree|1 +(noun)|tree +neckless|1 +(adj)|neckless +necklet|1 +(noun)|decoration|ornament|ornamentation +necklike|1 +(adj)|necked +neckline|1 +(noun)|neck +neckpiece|1 +(noun)|clothing|article of clothing|vesture|wear +necktie|1 +(noun)|tie|neckwear +neckwear|1 +(noun)|garment +necrobiosis|1 +(noun)|cell death|death +necrobiosis lipoidica|1 +(noun)|necrobiosis lipoidica diabeticorum|skin disease|disease of the skin|skin disorder|skin problem|skin condition +necrobiosis lipoidica diabeticorum|1 +(noun)|necrobiosis lipoidica|skin disease|disease of the skin|skin disorder|skin problem|skin condition +necrology|2 +(noun)|obituary|obit|announcement|promulgation +(noun)|list|listing +necrolysis|1 +(noun)|lysis +necromancer|2 +(noun)|sorcerer|magician|wizard|occultist +(noun)|diviner +necromancy|2 +(noun)|sorcery|black magic|black art|magic +(noun)|divination|foretelling|soothsaying|fortune telling +necromania|1 +(noun)|necrophilia|necrophilism|mania|passion|cacoethes +necromantic|2 +(adj)|necromantical|divination|foretelling|soothsaying|fortune telling +(adj)|supernatural +necromantical|1 +(adj)|necromantic|divination|foretelling|soothsaying|fortune telling +necrophagia|1 +(noun)|necrophagy|eating|feeding +necrophagy|1 +(noun)|necrophagia|eating|feeding +necrophilia|1 +(noun)|necrophilism|necromania|mania|passion|cacoethes +necrophilism|1 +(noun)|necrophilia|necromania|mania|passion|cacoethes +necropolis|1 +(noun)|cemetery|graveyard|burial site|burial ground|burying ground|memorial park|site|land site +necropsy|1 +(noun)|autopsy|postmortem|PM|postmortem examination|examination|scrutiny +necrose|1 +(verb)|gangrene|mortify|sphacelate|waste|rot +necrosis|1 +(noun)|mortification|gangrene|sphacelus|death +necrotic|1 +(adj)|death +necrotizing enteritis|1 +(noun)|enteritis +necrotizing enterocolitis|1 +(noun)|NEC|inflammatory disease +nectar|3 +(noun)|secretion +(noun)|fruit juice|fruit crush +(noun)|ambrosia|dainty|delicacy|goody|kickshaw|treat +nectariferous|1 +(adj)|plant organ +nectarine|2 +(noun)|nectarine tree|Prunus persica nectarina|fruit tree +(noun)|edible fruit +nectarine tree|1 +(noun)|nectarine|Prunus persica nectarina|fruit tree +nectarous|1 +(adj)|ambrosial|ambrosian|tasteful +nectary|1 +(noun)|honey gland|plant organ +necturus|1 +(noun)|Necturus|genus Necturus|amphibian genus +necturus maculosus|1 +(noun)|mud puppy|Necturus maculosus|salamander +nee|1 +(adj)|inheritable |heritable +need|6 +(noun)|demand|condition|status +(noun)|want|necessity|essential|requirement|requisite|necessary +(noun)|motivation|motive|psychological feature +(noun)|indigence|penury|beggary|pauperism|pauperization|poverty|poorness|impoverishment +(verb)|necessitate|ask|postulate|require|take|involve|call for|demand +(verb)|want|require|be +needed|1 +(adj)|needful|required|requisite|necessary +needer|1 +(noun)|wanter|person|individual|someone|somebody|mortal|human|soul +needful|1 +(adj)|needed|required|requisite|necessary +needfully|1 +(adv)|necessarily +needle|6 +(noun)|acerate leaf|simple leaf +(noun)|pointer +(noun)|implement +(noun)|phonograph needle|stylus +(verb)|goad|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|prickle|prick +needle-bush|3 +(noun)|needlebush|needle bush|Hakea lissosperma|shrub|bush +(noun)| +(noun)| +needle-shaped|1 +(adj)|acerate|acerose|acicular|simple |unsubdivided|pointed +needle-wood|3 +(noun)|needlewood|needle wood|Hakea leucoptera|shrub|bush +(noun)| +(noun)| +needle bearing|1 +(noun)|ball bearing|roller bearing|bearing +needle biopsy|1 +(noun)|biopsy +needle blight|1 +(noun)|needle cast|leaf cast|leaf blight +needle bush|3 +(noun)|needlebush|needle-bush|Hakea lissosperma|shrub|bush +(noun)| +(noun)| +needle cast|1 +(noun)|needle blight|leaf cast|leaf blight +needle furze|1 +(noun)|broom tree|petty whin|Genista anglica|broom +needle palm|1 +(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|Yucca filamentosa|yucca +needle rush|1 +(noun)|needle spike rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush +needle spike rush|1 +(noun)|needle rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush +needle wood|3 +(noun)|needlewood|needle-wood|Hakea leucoptera|shrub|bush +(noun)| +(noun)| +needlebush|1 +(noun)|needle-bush|needle bush|Hakea lissosperma|shrub|bush +needlecraft|2 +(noun)|needlework|creation +(noun)|needlework|handicraft +needlefish|2 +(noun)|gar|billfish|teleost fish|teleost|teleostan +(noun)|pipefish|teleost fish|teleost|teleostan +needlelike|1 +(adj)|acuate|acute|sharp|pointed +needlenose pliers|1 +(noun)|pliers|pair of pliers|plyers +needlepoint|2 +(noun)|point lace|lace +(noun)|embroidery|fancywork +needless|1 +(adj)|gratuitous|uncalled-for|unnecessary |unneeded +needlewoman|1 +(noun)|dressmaker|modiste|seamstress|sempstress|garmentmaker|garment-worker|garment worker +needlewood|1 +(noun)|needle-wood|needle wood|Hakea leucoptera|shrub|bush +needlework|2 +(noun)|needlecraft|creation +(noun)|needlecraft|handicraft +needleworker|1 +(noun)|maker|shaper +needs|1 +(adv)|inevitably|necessarily|of necessity +needy|1 +(adj)|destitute|impoverished|indigent|necessitous|poverty-stricken|poor +neel|1 +(noun)|Neel|Louis Eugene Felix Neel|physicist +neem|1 +(noun)|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree +neem cake|1 +(noun)|organic|organic fertilizer|organic fertiliser +neem seed|1 +(noun)|seed +neem tree|1 +(noun)|neem|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree +neencephalon|1 +(noun)|neoencephalon|neural structure +nefarious|1 +(adj)|villainous|wicked +nefariousness|1 +(noun)|wickedness|vileness|evil|evilness +nefazodone|1 +(noun)|Serzone|antidepressant|antidepressant drug +nefertiti|1 +(noun)|Nefertiti|queen +neftali ricardo reyes|1 +(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet +negaprion|1 +(noun)|Negaprion|genus Negaprion|fish genus +negaprion brevirostris|1 +(noun)|lemon shark|Negaprion brevirostris|requiem shark +negara brunei darussalam|1 +(noun)|Brunei|Negara Brunei Darussalam|sultanate +negate|4 +(verb)|contradict|belie|deviate|vary|diverge|depart +(verb)|contradict|contravene|disagree|differ|dissent|take issue +(verb)|contradict|prove|demonstrate|establish|show|shew +(verb)|neutralize|neutralise|nullify|weaken +negation|3 +(noun)|statement +(noun)|denial +(noun)|proposition +negative|12 +(adj)|negative |antagonistic|counter|perverse|destructive|pessimistic|unsupportive +(adj)|backward +(adj)|negative |electronegative +(adj)|negative |dissentient|dissenting|dissident|dismissive|disinclined|unfavorable|unfavourable +(adj)|bad +(adj)|negative |disconfirming +(adj)|minus +(adj)|damaging|destructive +(adj)|minus|disadvantageous |harmful +(noun)|denial +(noun)|film|photographic film +(verb)|veto|blackball|oppose|controvert|contradict +negative charge|1 +(noun)|charge|electric charge +negative chemotaxis|1 +(noun)|chemotaxis +negative correlation|1 +(noun)|indirect correlation|correlation|correlational statistics +negative feedback|1 +(noun)|feedback +negative feedback circuit|1 +(noun)|control circuit|feedback circuit|feedback loop +negative identification|1 +(noun)|identification +negative magnetic pole|1 +(noun)|negative pole|south-seeking pole|pole|magnetic pole +negative muon|1 +(noun)|muon|mu-meson|lepton +negative pole|2 +(noun)|terminal|pole +(noun)|negative magnetic pole|south-seeking pole|pole|magnetic pole +negative reinforcer|1 +(noun)|negative reinforcing stimulus|reinforcing stimulus|reinforcer|reinforcement +negative reinforcing stimulus|1 +(noun)|negative reinforcer|reinforcing stimulus|reinforcer|reinforcement +negative stimulation|1 +(noun)|turnoff|stimulation|stimulus|stimulant|input +negative stimulus|1 +(noun)|stimulation|stimulus|stimulant|input +negatively charged|1 +(adj)|charged +negativeness|1 +(noun)|negativity|disagreeableness +negativism|1 +(noun)|negativity|quality +negativist|1 +(noun)|defeatist|pessimist +negativity|3 +(noun)|negativeness|disagreeableness +(noun)|negativism|quality +(noun)|electronegativity|tendency|inclination +negatron|1 +(noun)|electron|lepton +negev|1 +(noun)|Negev|Negev Desert|desert +negev desert|1 +(noun)|Negev|Negev Desert|desert +neggram|1 +(noun)|nalidixic acid|NegGram|antibacterial|antibacterial drug|bactericide +neglect|8 +(noun)|disregard|inattention +(noun)|disuse|decline|declination +(noun)|disregard|mistreatment +(noun)|negligence|neglectfulness|carelessness +(noun)|negligence|carelessness|nonperformance|nonaccomplishment|nonachievement +(verb)|pretermit|omit|drop|miss|leave out|overlook|overleap +(verb)|fail +(verb)|ignore|disregard +neglect of duty|1 +(noun)|negligence|carelessness|neglect|nonperformance +neglected|2 +(adj)|ignored|unheeded|unnoticed +(adj)|unattended|uncared-for +neglecter|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +neglectful|3 +(adj)|neglectful of|unprotective +(adj)|inattentive|negligent +(adj)|derelict|delinquent|remiss|negligent +neglectful of|1 +(adj)|neglectful|unprotective +neglectfulness|1 +(noun)|negligence|neglect|carelessness +neglige|1 +(noun)|negligee|peignoir|wrapper|housecoat|garment +negligee|1 +(noun)|neglige|peignoir|wrapper|housecoat|garment +negligence|2 +(noun)|carelessness|neglect|nonperformance|nonaccomplishment|nonachievement +(noun)|neglect|neglectfulness|carelessness +negligent|2 +(adj)|negligent |derelict|delinquent|neglectful|remiss|lax|slack|hit-and-run|inattentive|neglectful|careless|inattentive +(adj)|careless +negligible|2 +(adj)|minimal +(adj)|paltry|trifling|worthless +negociate|6 +(verb)|pull off|bring off|carry off|manage|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|sell +(verb)|transfer +(verb)|pass|go through|go across +(verb)|hash out|discuss|talk over +(verb)|negotiate|talk terms|hash out|discuss|talk over +negotiable|3 +(adj)|passable +(adj)|on the table|flexible +(adj)|assignable|conveyable|transferable|transferrable|alienable +negotiable instrument|1 +(noun)|legal document|legal instrument|official document|instrument +negotiant|1 +(noun)|negotiator|treater|communicator +negotiate|1 +(verb)|negociate|talk terms|hash out|discuss|talk over +negotiation|2 +(noun)|dialogue|talks|discussion|give-and-take|word +(noun)|activity +negotiator|1 +(noun)|negotiant|treater|communicator +negotiatress|1 +(noun)|negotiatrix|negotiator|negotiant|treater +negotiatrix|1 +(noun)|negotiatress|negotiator|negotiant|treater +negress|1 +(noun)|Negress|Black|Black person|blackamoor|Negro|Negroid +negritude|1 +(noun)|Negritude|political orientation|ideology|political theory +negro|2 +(adj)|black +(noun)|Black|Black person|blackamoor|Negro|Negroid|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +negro peach|1 +(noun)|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub|bush +negro pepper|1 +(noun)|Guinea pepper|Xylopia aethiopica|tree +negro race|1 +(noun)|Black race|Negroid race|Negro race|race +negro spiritual|1 +(noun)|spiritual|Negro spiritual|religious song +negro vine|1 +(noun)|Vincetoxicum hirsutum|Vincetoxicum negrum|vine +negroid|2 +(adj)|black +(noun)|Black|Black person|blackamoor|Negro|Negroid|person|individual|someone|somebody|mortal|human|soul|person of color|person of colour +negroid race|1 +(noun)|Black race|Negroid race|Negro race|race +negus|1 +(noun)|mulled wine +nehemiah|1 +(noun)|Nehemiah|Book of Nehemiah|book +nehru|1 +(noun)|Nehru|Jawaharlal Nehru|statesman|solon|national leader +nei monggol|1 +(noun)|Inner Mongolia|Nei Monggol|state|province +neigh|2 +(noun)|nicker|whicker|whinny|cry +(verb)|nicker|whicker|whinny|utter|emit|let out|let loose +neighbor|5 +(adj)|neighbour|neighboring|neighbouring|near |close +(noun)|neighbour|person|individual|someone|somebody|mortal|human|soul +(noun)|neighbour|object|physical object +(verb)|neighbour|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|neighbour|border|adjoin|edge|abut|march|butt|butt against|butt on +neighborhood|3 +(noun)|vicinity|locality|neighbourhood|neck of the woods|section +(noun)|neighbourhood|community +(noun)|region|indefinite quantity +neighboring|2 +(adj)|neighbor|neighbour|neighbouring|near |close +(adj)|abutting|adjacent|adjoining|conterminous|contiguous|connected +neighborliness|1 +(noun)|neighbourliness|good-neighborliness|good-neighbourliness|friendliness +neighborly|1 +(adj)|neighbourly|friendly +neighbour|5 +(adj)|neighbor|neighboring|neighbouring|near |close +(noun)|neighbor|person|individual|someone|somebody|mortal|human|soul +(noun)|neighbor|object|physical object +(verb)|neighbor|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|neighbor|border|adjoin|edge|abut|march|butt|butt against|butt on +neighbourhood|2 +(noun)|vicinity|locality|neighborhood|neck of the woods|section +(noun)|neighborhood|community +neighbouring|1 +(adj)|neighbor|neighbour|neighboring|near |close +neighbourliness|1 +(noun)|neighborliness|good-neighborliness|good-neighbourliness|friendliness +neighbourly|1 +(adj)|neighborly|friendly +neil armstrong|1 +(noun)|Armstrong|Neil Armstrong|astronaut|spaceman|cosmonaut +neil simon|1 +(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist|playwright +neisseria gonorrhoeae|1 +(noun)|gonococcus|Neisseria gonorrhoeae|bacteria|bacterium +nejd|1 +(noun)|Nejd|Najd|geographical area|geographic area|geographical region|geographic region|tableland|plateau +nekton|1 +(noun)|organism|being +nelfinavir|1 +(noun)|Viracept|protease inhibitor|PI +nell gwynn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +nell gwynne|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +nell gywn|1 +(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne +nellie bly|1 +(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist +nellie ross|1 +(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician|politico|pol|political leader +nellie tayloe ross|1 +(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician|politico|pol|political leader +nelson|1 +(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral|full admiral +nelson algren|1 +(noun)|Algren|Nelson Algren|writer|author +nelson mandela|1 +(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader|statesman|solon|national leader +nelson rolihlahla mandela|1 +(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader|statesman|solon|national leader +nelumbo|1 +(noun)|Nelumbo|genus Nelumbo|magnoliid dicot genus +nelumbo lutea|1 +(noun)|water chinquapin|American lotus|yanquapin|Nelumbo lutea|water lily +nelumbo nucifera|1 +(noun)|lotus|Indian lotus|sacred lotus|Nelumbo nucifera|water lily +nelumbonaceae|1 +(noun)|Nelumbonaceae|subfamily Nelumbonaceae|magnoliid dicot family +nem con|1 +(adv)|unanimously|nemine contradicente +nematocera|1 +(noun)|Nematocera|suborder Nematocera|animal order +nematoda|1 +(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum +nematode|1 +(noun)|nematode worm|roundworm|worm +nematode worm|1 +(noun)|nematode|roundworm|worm +nembutal|1 +(noun)|pentobarbital sodium|pentobarbital|Nembutal|yellow jacket|barbiturate +nemea|1 +(noun)|Nemea|valley|vale +nemean games|1 +(noun)|Nemean Games|agon +nemean lion|1 +(noun)|Nemean lion|mythical monster|mythical creature +nemertea|1 +(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum +nemertean|1 +(noun)|ribbon worm|nemertine|proboscis worm|worm +nemertina|1 +(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum +nemertine|1 +(noun)|ribbon worm|nemertean|proboscis worm|worm +nemesis|2 +(noun)|Nemesis|Greek deity +(noun)|bane|curse|scourge|affliction +nemine contradicente|1 +(adv)|unanimously|nem con +nemophila|1 +(noun)|herb|herbaceous plant +nemophila aurita|1 +(noun)|fiesta flower|Pholistoma auritum|Nemophila aurita|herb|herbaceous plant +nemophila maculata|1 +(noun)|five-spot|Nemophila maculata|nemophila +nemophila menziesii|1 +(noun)|baby blue-eyes|Nemophila menziesii|herb|herbaceous plant +nenets|1 +(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic|Samoyed +nentsi|1 +(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic|Samoyed +nentsy|1 +(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic|Samoyed +neo|1 +(adj)|modern +neo-darwinian|1 +(adj)|neo-Darwinian|Darwinism +neo-darwinism|1 +(noun)|Neo-Darwinism|Darwinism +neo-lamarckian|1 +(adj)|neo-Lamarckian|Lamarckism +neo-lamarckism|1 +(noun)|Neo-Lamarckism|Lamarckism +neo-latin|1 +(noun)|Neo-Latin|New Latin|Latin +neo jazz|1 +(noun)|modern jazz|new jazz|jazz +neobiotic|1 +(noun)|neomycin|fradicin|Neobiotic|antibiotic|antibiotic drug|antiseptic +neoceratodus|1 +(noun)|Neoceratodus|genus Neoceratodus|fish genus +neoceratodus forsteri|1 +(noun)|barramunda|barramundi|Neoceratodus forsteri|lungfish +neoclassic|1 +(adj)|neoclassical|classical +neoclassical|1 +(adj)|neoclassic|classical +neoclassicism|1 +(noun)|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +neoclassicist|2 +(adj)|neoclassicistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +(noun)|advocate|advocator|proponent|exponent +neoclassicistic|1 +(adj)|neoclassicist|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +neocolonialism|1 +(noun)|colonialism +neocon|1 +(noun)|neoconservative|conservative|conservativist +neoconservative|1 +(noun)|neocon|conservative|conservativist +neoconservativism|1 +(noun)|conservatism|conservativism +neocortex|1 +(noun)|neopallium|cerebral cortex|cerebral mantle|pallium|cortex +neocortical|1 +(adj)|cerebral cortex|cerebral mantle|pallium|cortex +neodymium|1 +(noun)|Nd|atomic number 60|metallic element|metal +neoencephalon|1 +(noun)|neencephalon|neural structure +neoexpressionism|1 +(noun)|expressionism +neofiber|1 +(noun)|Neofiber|genus Neofiber|mammal genus +neofiber alleni|1 +(noun)|round-tailed muskrat|Florida water rat|Neofiber alleni|rodent|gnawer|gnawing animal +neohygrophorus|1 +(noun)|Neohygrophorus|genus Neohygrophorus|fungus genus +neohygrophorus angelesianus|1 +(noun)|Neohygrophorus angelesianus|waxycap +neolentinus|1 +(noun)|Neolentinus|genus Neolentinus|fungus genus +neolentinus ponderosus|1 +(noun)|Neolentinus ponderosus|polypore|pore fungus|pore mushroom +neoliberal|2 +(adj)|liberal +(noun)|liberal|progressive +neoliberalism|1 +(noun)|liberalism +neolith|1 +(noun)|tool +neolithic|2 +(adj)|time period|period of time|period +(noun)|Neolithic Age|Neolithic|New Stone Age|time period|period of time|period +neolithic age|1 +(noun)|Neolithic Age|Neolithic|New Stone Age|time period|period of time|period +neologism|2 +(noun)|neology|coinage|word +(noun)|neology|coinage|invention +neologist|1 +(noun)|lexicographer|lexicologist +neology|2 +(noun)|neologism|coinage|word +(noun)|neologism|coinage|invention +neomycin|1 +(noun)|fradicin|Neobiotic|antibiotic|antibiotic drug|antiseptic +neomys|1 +(noun)|Neomys|genus Neomys|mammal genus +neomys anomalus|1 +(noun)|Mediterranean water shrew|Neomys anomalus|water shrew +neomys fodiens|1 +(noun)|European water shrew|Neomys fodiens|water shrew +neon|1 +(noun)|Ne|atomic number 10|chemical element|element|noble gas|inert gas|argonon +neon induction lamp|1 +(noun)|neon lamp|neon tube|lamp +neon lamp|1 +(noun)|neon induction lamp|neon tube|lamp +neon tube|1 +(noun)|neon lamp|neon induction lamp|lamp +neonatal|1 +(adj)|baby|babe|infant +neonatal death|1 +(noun)|death +neonatal hyperbilirubinemia|1 +(noun)|hyperbilirubinemia of the newborn|hyperbilirubinemia +neonatal intensive care unit|1 +(noun)|NICU|intensive care unit|ICU +neonatal mortality|1 +(noun)|neonatal mortality rate|deathrate|death rate|morbidity|mortality|mortality rate|fatality rate +neonatal mortality rate|1 +(noun)|neonatal mortality|deathrate|death rate|morbidity|mortality|mortality rate|fatality rate +neonatal period|1 +(noun)|time of life +neonate|1 +(noun)|newborn|newborn infant|newborn baby|baby|babe|infant +neonatology|1 +(noun)|pediatrics|paediatrics|pediatric medicine +neopallium|1 +(noun)|neocortex|cerebral cortex|cerebral mantle|pallium|cortex +neophobia|1 +(noun)|simple phobia +neophron|1 +(noun)|Neophron|genus Neophron|bird genus +neophron percnopterus|1 +(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture +neophyte|3 +(noun)|plant|flora|plant life +(noun)|newcomer|fledgling|fledgeling|starter|freshman|newbie|entrant|novice|beginner|tyro|tiro|initiate +(noun)|catechumen|student|pupil|educatee +neoplasia|1 +(noun)|pathologic process|pathological process +neoplasm|1 +(noun)|tumor|tumour|growth +neoplastic|1 +(adj)|growth +neoplastic cell|1 +(noun)|somatic cell|vegetative cell +neoplatonism|1 +(noun)|Neoplatonism|philosophical doctrine|philosophical theory|theological doctrine|religious doctrine +neoplatonist|1 +(noun)|Neoplatonist|disciple|adherent +neopolitan|1 +(noun)|Neopolitan|Italian +neoprene|1 +(noun)|synthetic rubber +neoromanticism|1 +(noun)|artistic movement|art movement +neosho|1 +(noun)|Neosho|Neosho River|river +neosho river|1 +(noun)|Neosho|Neosho River|river +neosporin|1 +(noun)|Neosporin|antibacterial|antibacterial drug|bactericide +neostigmine|1 +(noun)|Prostigmin|anticholinesterase +neotenic|1 +(adj)|neotenous|evolutionary trend +neotenous|1 +(adj)|neotenic|evolutionary trend +neoteny|1 +(noun)|evolutionary trend +neotoma|1 +(noun)|Neotoma|genus Neotoma|mammal genus +neotoma cinerea|1 +(noun)|packrat|pack rat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat|wood-rat +neotoma floridana|1 +(noun)|eastern woodrat|Neotoma floridana|wood rat|wood-rat +neotoma fuscipes|1 +(noun)|dusky-footed woodrat|Neotoma fuscipes|packrat|pack rat|trade rat|bushytail woodrat|Neotoma cinerea +nepa|1 +(noun)|Nepa|genus Nepa|arthropod genus +nepal|1 +(noun)|Nepal|Kingdom of Nepal|Asian country|Asian nation +nepal trumpet flower|1 +(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine +nepalese|2 +(adj)|Nepalese|Nepali|Asian country|Asian nation +(noun)|Nepalese|Nepali|Asian|Asiatic +nepalese monetary unit|1 +(noun)|Nepalese monetary unit|monetary unit +nepalese rupee|1 +(noun)|Nepalese rupee|rupee|Nepalese monetary unit +nepali|3 +(adj)|Nepalese|Nepali|Asian country|Asian nation +(noun)|Nepalese|Nepali|Asian|Asiatic +(noun)|Nepali|Indic|Indo-Aryan +nepenthaceae|1 +(noun)|Nepenthaceae|family Nepenthaceae|dicot family|magnoliopsid family +nepenthes|1 +(noun)|Nepenthes|genus Nepenthes|dicot genus|magnoliopsid genus +nepeta|1 +(noun)|Nepeta|genus Nepeta|asterid dicot genus +nepeta cataria|1 +(noun)|catmint|catnip|Nepeta cataria|herb|herbaceous plant +nepeta hederaceae|1 +(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine +nepheline|1 +(noun)|nephelite|mineral +nephelinite|1 +(noun)|mineral +nephelite|1 +(noun)|nepheline|mineral +nephelium|1 +(noun)|Nephelium|genus Nephelium|dicot genus|magnoliopsid genus +nephelium lappaceum|1 +(noun)|rambutan|rambotan|rambutan tree|Nephelium lappaceum|fruit tree +nephelium litchi|1 +(noun)|litchi|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree +nephelium longana|1 +(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphoria litchi|Nephelium longana|fruit tree +nephelium mutabile|1 +(noun)|pulasan|pulassan|pulasan tree|Nephelium mutabile|fruit tree +nephew|1 +(noun)|kinsman +nephology|1 +(noun)|meteorology +nephoscope|1 +(noun)|measuring instrument|measuring system|measuring device +nephralgia|1 +(noun)|pain|hurting +nephrectomy|1 +(noun)|ablation|extirpation|cutting out|excision +nephrite|1 +(noun)|amphibole +nephritic|2 +(adj)|kidney disease|renal disorder|nephropathy|nephrosis +(adj)|renal|excretory organ|urinary organ +nephritis|1 +(noun)|Bright's disease|kidney disease|renal disorder|nephropathy|nephrosis +nephroangiosclerosis|1 +(noun)|nephrosclerosis|kidney disease|renal disorder|nephropathy|nephrosis +nephroblastoma|1 +(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|embryoma of the kidney|sarcoma +nephrocalcinosis|1 +(noun)|nephrolithiasis|renal lithiasis +nephrogenic diabetes insipidus|1 +(noun)|diabetes insipidus +nephrolepis|1 +(noun)|Nephrolepis|genus Nephrolepis|fern genus +nephrolepis exaltata|1 +(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern +nephrolepis exaltata bostoniensis|1 +(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern +nephrolepis pectinata|1 +(noun)|basket fern|toothed sword fern|Nephrolepis pectinata|sword fern +nephrolith|1 +(noun)|kidney stone|urinary calculus|renal calculus|calculus|concretion +nephrolithiasis|1 +(noun)|renal lithiasis|lithiasis +nephrology|1 +(noun)|medicine|medical specialty +nephron|1 +(noun)|uriniferous tubule|tubule +nephropathy|1 +(noun)|kidney disease|renal disorder|nephrosis|uropathy +nephrops|1 +(noun)|Nephrops|genus Nephrops|arthropod genus +nephrops norvegicus|1 +(noun)|Norway lobster|Nephrops norvegicus|lobster +nephropsidae|1 +(noun)|Nephropsidae|family Nephropsidae|arthropod family +nephroptosia|1 +(noun)|nephroptosis|prolapse|prolapsus|descensus +nephroptosis|1 +(noun)|nephroptosia|prolapse|prolapsus|descensus +nephrosclerosis|1 +(noun)|nephroangiosclerosis|kidney disease|renal disorder|nephropathy|nephrosis +nephrosis|2 +(noun)|nephrotic syndrome|syndrome +(noun)|kidney disease|renal disorder|nephropathy|uropathy +nephrotic syndrome|1 +(noun)|nephrosis|syndrome +nephrotomy|1 +(noun)|incision|section|surgical incision +nephrotoxic|1 +(adj)|toxic +nephrotoxin|1 +(noun)|toxin +nephthys|1 +(noun)|Nephthys|Egyptian deity +nephthytis|1 +(noun)|arum|aroid +nephthytis afzelii|1 +(noun)|Nephthytis afzelii|nephthytis +nepidae|1 +(noun)|Nepidae|family Nepidae|arthropod family +nepotism|1 +(noun)|discrimination|favoritism|favouritism +neptune|2 +(noun)|Neptune|Roman deity +(noun)|Neptune|Jovian planet|gas giant +neptunium|1 +(noun)|Np|atomic number 93|metallic element|metal +nerd|1 +(noun)|swot|grind|wonk|dweeb|learner|scholar|assimilator +nereid|1 +(noun)|Nereid|sea nymph +nereus|1 +(noun)|Nereus|Greek deity +nergal|1 +(noun)|Nergal|Semitic deity +nerita|1 +(noun)|neritid|neritid gastropod +nerita peloronta|1 +(noun)|bleeding tooth|Nerita peloronta|neritid|neritid gastropod +neritic|2 +(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +(adj)|shallow +neritic zone|1 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +neritid|1 +(noun)|neritid gastropod|seasnail +neritid gastropod|1 +(noun)|neritid|seasnail +neritidae|1 +(noun)|Neritidae|family Neritidae|mollusk family +neritina|1 +(noun)|neritid|neritid gastropod +nerium|1 +(noun)|Nerium|genus Nerium|dicot genus|magnoliopsid genus +nerium oleander|1 +(noun)|oleander|rose bay|Nerium oleander|poisonous plant +nernst|1 +(noun)|Nernst|Walther Hermann Nernst|chemist|physicist +nero|1 +(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor|Emperor of Rome +nero's crown|1 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +nero claudius caesar drusus germanicus|1 +(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor|Emperor of Rome +nerodia|1 +(noun)|Nerodia|genus Nerodia|reptile genus +nerodia sipedon|1 +(noun)|common water snake|banded water snake|Natrix sipedon|Nerodia sipedon|water snake +neroli oil|1 +(noun)|oil +nerthus|1 +(noun)|Nerthus|Hertha|Teutonic deity +neruda|1 +(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet +nerva|1 +(noun)|Nerva|Marcus Cocceius Nerva|Roman Emperor|Emperor of Rome +nerve|4 +(noun)|nervus|fiber bundle|fibre bundle|fascicle|fasciculus +(noun)|heart|mettle|spunk|courage|courageousness|bravery +(noun)|boldness|brass|face|cheek|aggressiveness +(verb)|steel|brace|poise +nerve-racking|1 +(adj)|nerve-wracking|stressful|trying|disagreeable +nerve-wracking|1 +(adj)|nerve-racking|stressful|trying|disagreeable +nerve agent|1 +(noun)|nerve gas|poison gas|agent +nerve block anaesthesia|1 +(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|block anesthesia|block anaesthesia|anesthesia|anaesthesia +nerve block anesthesia|1 +(noun)|conduction anesthesia|conduction anaesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia|anaesthesia +nerve cell|1 +(noun)|neuron|somatic cell|vegetative cell +nerve center|2 +(noun)|nerve centre|center|centre +(noun)|center|centre|nerve centre|neural structure +nerve centre|2 +(noun)|nerve center|center|centre +(noun)|center|centre|nerve center|neural structure +nerve compression|1 +(noun)|nervous disorder|neurological disorder|neurological disease +nerve deafness|1 +(noun)|sensorineural hearing loss|hearing impairment|hearing disorder +nerve end|1 +(noun)|nerve ending|end +nerve ending|1 +(noun)|nerve end|end +nerve entrapment|1 +(noun)|nerve compression +nerve fiber|1 +(noun)|nerve fibre|fiber|fibre +nerve fibre|1 +(noun)|nerve fiber|fiber|fibre +nerve gas|1 +(noun)|nerve agent|poison gas|agent +nerve growth factor|1 +(noun)|NGF|growth factor +nerve impulse|1 +(noun)|impulse|electrical discharge +nerve pathway|1 +(noun)|tract|nerve tract|pathway|white matter|substantia alba +nerve plexus|1 +(noun)|plexus|rete +nerve tissue|1 +(noun)|nervous tissue|animal tissue +nerve tract|1 +(noun)|nerve pathway|tract|pathway|white matter|substantia alba +nerveless|2 +(adj)|cool|coolheaded|composed +(adj)|feeble|powerless |weak +nervelessly|1 +(adv)|coolly|nonchalantly +nervelessness|1 +(noun)|coolness|fearlessness +nerveroot|1 +(noun)|moccasin flower|Cypripedium acaule|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +nerves|5 +(noun)|nervousness|psychological state|mental state +(noun)|self-control|self-possession|possession|willpower|self-command|self-will +(noun)|nerve|nervus|fiber bundle|fibre bundle|fascicle|fasciculus +(noun)|heart|mettle|nerve|spunk|courage|courageousness|bravery +(noun)|boldness|nerve|brass|face|cheek|aggressiveness +nervi|1 +(noun)|Nervi|Pier Luigi Nervi|architect|designer +nervii olfactorii|1 +(noun)|olfactory nerve|first cranial nerve|cranial nerve +nervily|1 +(adv)|cheekily|brashly +nervous|5 +(adj)|tense +(adj)|anxious|uneasy|unquiet|troubled +(adj)|neural|system +(adj)|aflutter|excited +(adj)|skittish|spooky|excitable +nervous breakdown|1 +(noun)|breakdown|crack-up +nervous disorder|1 +(noun)|neurological disorder|neurological disease|disorder|upset +nervous exhaustion|1 +(noun)|nervous prostration|nervous breakdown +nervous prostration|1 +(noun)|nervous exhaustion|nervous breakdown +nervous strain|1 +(noun)|strain|mental strain|nervousness|nerves +nervous system|1 +(noun)|systema nervosum|system +nervous tissue|1 +(noun)|nerve tissue|animal tissue +nervousness|3 +(noun)|jitteriness|jumpiness|restiveness|anxiety +(noun)|nerves|psychological state|mental state +(noun)|disposition|temperament +nervure|2 +(noun)|vein|vascular bundle|vascular strand|fibrovascular bundle +(noun)|vein|rib +nervus|1 +(noun)|nerve|fiber bundle|fibre bundle|fascicle|fasciculus +nervus abducens|1 +(noun)|abducent|abducent nerve|abducens|abducens nerve|sixth cranial nerve|cranial nerve +nervus accessorius|1 +(noun)|accessory nerve|spinal accessory|eleventh cranial nerve|cranial nerve +nervus coccygeus|1 +(noun)|coccygeal nerve|spinal nerve|nervus spinalis +nervus facialis|1 +(noun)|facial|facial nerve|seventh cranial nerve|cranial nerve +nervus femoralis|1 +(noun)|femoral nerve|anterior crural nerve|spinal nerve|nervus spinalis +nervus glossopharyngeus|1 +(noun)|glossopharyngeal nerve|ninth cranial nerve|cranial nerve +nervus hypoglosus|1 +(noun)|hypoglossal|hypoglossal nerve|twelfth cranial nerve|cranial nerve +nervus ischiadicus|1 +(noun)|sciatic nerve|nerve|nervus +nervus oculomotorius|1 +(noun)|oculomotor|oculomotor nerve|third cranial nerve|cranial nerve +nervus opticus|1 +(noun)|optic nerve|second cranial nerve|optic tract|cranial nerve +nervus phrenicus|1 +(noun)|phrenic nerve|spinal nerve|nervus spinalis +nervus radialis|1 +(noun)|radial nerve|musculospiral nerve|nerve|nervus +nervus saphenus|1 +(noun)|saphenous nerve|nerve|nervus +nervus spinalis|1 +(noun)|spinal nerve|nerve|nervus +nervus trigeminus|1 +(noun)|trigeminal|trigeminal nerve|trigeminus|fifth cranial nerve|cranial nerve +nervus ulnaris|1 +(noun)|ulnar nerve|cubital nerve|nerve|nervus +nervus vagus|1 +(noun)|vagus|vagus nerve|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve +nervus vestibulocochlearis|1 +(noun)|acoustic nerve|auditory nerve|vestibulocochlear nerve|eighth cranial nerve|cranial nerve +nervy|3 +(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|overstrung|restive|uptight|tense +(adj)|bold +(adj)|brash|cheeky|forward +nescience|1 +(noun)|ignorantness|unknowing|unknowingness|ignorance +nescient|2 +(adj)|unbelieving|agnostic |agnostical +(adj)|ignorant|unenlightened|unlearned|unlettered|uneducated +nesokia|1 +(noun)|Nesokia|genus Nesokia|mammal genus +ness|1 +(noun)|cape|land|dry land|earth|ground|solid ground|terra firma +nesselrode|1 +(noun)|Nesselrode|Nesselrode pudding|pudding +nesselrode pudding|1 +(noun)|Nesselrode|Nesselrode pudding|pudding +nessie|1 +(noun)|Loch Ness monster|Nessie|legendary creature +nest|9 +(noun)|natural object +(noun)|gun emplacement|weapons emplacement +(noun)|retreat +(noun)|gang|pack|ring|mob +(noun)|furniture|piece of furniture|article of furniture +(verb)|inhabit|occupy +(verb)|implant|engraft|embed|imbed|plant +(verb)|cuddle|snuggle|nestle|nuzzle|draw close|cling to|hold close|hold tight|clutch +(verb)|gather|garner|collect|pull together +nest egg|2 +(noun)|savings|fund|monetary fund +(noun)|device +nester|2 +(noun)|squatter|homesteader|settler|colonist +(noun)|bird +nesting place|1 +(noun)|topographic point|place|spot +nestle|4 +(noun)|cuddle|snuggle|embrace|embracing +(verb)|cuddle|snuggle|nest|nuzzle|draw close|cling to|hold close|hold tight|clutch +(verb)|lie +(verb)|snuggle|put|set|place|pose|position|lay +nestled|1 +(adj)|snuggled|close +nestling|2 +(noun)|baby bird|young bird +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|juvenile|juvenile person +nestor|2 +(noun)|Nestor|counselor|counsellor +(noun)|Nestor|genus Nestor|bird genus +nestor notabilis|1 +(noun)|kea|Nestor notabilis|parrot +nestor paz zamora commission|1 +(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization|terrorist group|foreign terrorist organization|FTO +nestorian|1 +(adj)|Nestorian|Patriarch|theological doctrine|religious doctrine|heresy|unorthodoxy +nestorian church|1 +(noun)|Nestorian Church|church|Christian church +nestorianism|1 +(noun)|Nestorianism|theological doctrine|religious doctrine|heresy|unorthodoxy +nestorius|1 +(noun)|Nestorius|Patriarch +net|12 +(adj)|net |nett|clear|take-home +(adj)|final|last|ultimate +(noun)|Internet|Net|cyberspace|computer network +(noun)|trap +(noun)|net income|net profit|lucre|profit|profits|earnings|income +(noun)|goal +(noun)|game equipment +(noun)|network|mesh|meshing|meshwork|fabric|cloth|material|textile +(verb)|sack|sack up|clear|profit|gain|benefit +(verb)|clear|yield|pay|bear +(verb)|web|weave|tissue +(verb)|nett|catch|grab|take hold of +net ball|2 +(noun)|let|serve|service +(noun)|netball|court game +net estate|1 +(noun)|estate +net fish|1 +(verb)|fish +net income|1 +(noun)|net|net profit|lucre|profit|profits|earnings|income +net melon|2 +(noun)|netted melon|nutmeg melon|Cucumis melo reticulatus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|netted melon|nutmeg melon|muskmelon|sweet melon +net profit|1 +(noun)|net income|net|lucre|profit|profits|earnings|income +net sales|1 +(noun)|income +net ton|1 +(noun)|short ton|ton|avoirdupois unit +netball|1 +(noun)|court game +nether|3 +(adj)|bottom +(adj)|chthonian|chthonic|lower|infernal +(adj)|under|low +nether region|1 +(noun)|Hell|perdition|Inferno|infernal region|the pit|imaginary place|mythical place +netherlander|1 +(noun)|Netherlander|Dutchman|Hollander|European +netherlands|1 +(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Holland|European country|European nation +netherlands antilles|1 +(noun)|Netherlands Antilles|island +netherlands guiana|1 +(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country|South American nation +nethermost|1 +(adj)|bottommost|lowermost|bottom +netherworld|1 +(noun)|Hel|Hell|Hades|infernal region|Scheol|underworld|imaginary place|mythical place +netkeeper|2 +(noun)|goalkeeper|goalie|goaltender|netminder|soccer player|hockey player|ice-hockey player +(noun)|goalkeeper|goalie|goaltender|position +netlike|1 +(adj)|lacy|netted|webbed|weblike|webby|reticulate |reticulated|reticular +netmail|1 +(verb)|e-mail|email|telecommunicate +netminder|1 +(noun)|goalkeeper|goalie|goaltender|netkeeper|soccer player|hockey player|ice-hockey player +netscape|1 +(noun)|Netscape|browser|web browser +nett|2 +(adj)|net |clear|take-home +(verb)|net|catch|grab|take hold of +netted|1 +(adj)|lacy|netlike|webbed|weblike|webby|reticulate |reticulated|reticular +netted melon|2 +(noun)|net melon|nutmeg melon|Cucumis melo reticulatus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|net melon|nutmeg melon|muskmelon|sweet melon +netting|2 +(noun)|gauze|veiling|net|network|mesh|meshing|meshwork +(noun)|weaving +nettle|3 +(noun)|weed +(verb)|urticate|bite|sting|burn +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|gravel|vex|chafe|devil|displease +nettle-leaved bellflower|1 +(noun)|throatwort|Campanula trachelium|campanula|bellflower +nettle-leaved goosefoot|1 +(noun)|nettleleaf goosefoot|Chenopodium murale|goosefoot +nettle family|1 +(noun)|Urticaceae|family Urticaceae|dicot family|magnoliopsid family +nettle rash|1 +(noun)|urtication|urticaria|hives|rash|roseola|efflorescence|skin rash|hypersensitivity reaction +nettle tree|1 +(noun)|hackberry|tree +nettled|1 +(adj)|annoyed|irritated|miffed|peeved|pissed|pissed off|riled|roiled|steamed|stunng|displeased +nettleleaf goosefoot|1 +(noun)|nettle-leaved goosefoot|Chenopodium murale|goosefoot +nettlesome|2 +(adj)|annoying|bothersome|galling|irritating|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +(adj)|cranky|fractious|irritable|peevish|peckish|pettish|petulant|testy|tetchy|techy|ill-natured +network|6 +(noun)|web|system|scheme +(noun)|communication system|communication equipment +(noun)|net|mesh|meshing|meshwork|fabric|cloth|material|textile +(noun)|system +(noun)|electronic network|system +(verb)|communicate|intercommunicate +network architecture|1 +(noun)|specification|spec +network army|1 +(noun)|people +network programming|1 +(noun)|schedule +network topology|1 +(noun)|topology|configuration|constellation +networklike|1 +(adj)|reticulate |reticulated|reticular +neumann|1 +(noun)|von Neumann|Neumann|John von Neumann|mathematician +neural|2 +(adj)|nervous|system +(adj)|neuronal|neuronic|somatic cell|vegetative cell +neural arch|1 +(noun)|vertebral arch|arch +neural net|2 +(noun)|neural network|computer architecture +(noun)|neural network|reticulum +neural network|2 +(noun)|neural net|computer architecture +(noun)|neural net|reticulum +neural structure|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +neural tube|1 +(noun)|ectoderm|exoderm|ectoblast +neuralgia|1 +(noun)|neuralgy|pain|hurting +neuralgic|1 +(adj)|pain|hurting +neuralgy|1 +(noun)|neuralgia|pain|hurting +neurasthenia|1 +(noun)|nervous breakdown +neurasthenic|2 +(adj)|nervous breakdown +(noun)|sick person|diseased person|sufferer +neurectomy|1 +(noun)|ablation|extirpation|cutting out|excision +neurilemma|1 +(noun)|neurolemma|sheath|case +neurilemoma|1 +(noun)|neurofibroma|tumor|tumour|neoplasm +neurinoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +neuritis|1 +(noun)|inflammation|redness|rubor +neuroanatomic|1 +(adj)|neuroanatomical|anatomy|general anatomy +neuroanatomical|1 +(adj)|neuroanatomic|anatomy|general anatomy +neuroanatomy|1 +(noun)|anatomy|general anatomy +neurobiological|1 +(adj)|biology|biological science +neurobiologist|1 +(noun)|biologist|life scientist +neurobiology|1 +(noun)|biology|biological science +neuroblast|1 +(noun)|embryonic cell|formative cell +neuroblastoma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +neurochemical|1 +(noun)|organic compound +neurodermatitis|1 +(noun)|dermatitis +neuroendocrine|1 +(adj)|system|system +neuroepithelioma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +neuroepithelium|1 +(noun)|epithelium|epithelial tissue +neuroethics|1 +(noun)|bioethics +neurofibroma|1 +(noun)|neurilemoma|tumor|tumour|neoplasm +neurofibromatosis|1 +(noun)|von Recklinghausen's disease|autosomal dominant disease|autosomal dominant disorder|monogenic disorder|monogenic disease +neurogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +neurogenic|1 +(adj)|animal tissue +neurogenic bladder|1 +(noun)|bladder disorder +neuroglia|1 +(noun)|glia|interstitial tissue +neurogliacyte|1 +(noun)|neuroglial cell|glial cell|somatic cell|vegetative cell +neuroglial|1 +(adj)|interstitial tissue +neuroglial cell|1 +(noun)|neurogliacyte|glial cell|somatic cell|vegetative cell +neurohormone|1 +(noun)|hormone|endocrine|internal secretion +neurohypophysis|1 +(noun)|posterior pituitary|posterior pituitary gland|pars nervosa|endocrine gland|endocrine|ductless gland +neurolemma|1 +(noun)|neurilemma|sheath|case +neuroleptic|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +neuroleptic agent|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +neuroleptic drug|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic agent|neuroleptic|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic +neurolinguist|1 +(noun)|neuroscientist|linguist|linguistic scientist +neurolinguistics|1 +(noun)|linguistics +neurologic|1 +(adj)|neurological|medicine|medical specialty +neurological|1 +(adj)|neurologic|medicine|medical specialty +neurological disease|1 +(noun)|nervous disorder|neurological disorder|disorder|upset +neurological disorder|1 +(noun)|nervous disorder|neurological disease|disorder|upset +neurologist|1 +(noun)|brain doctor|specialist|medical specialist +neurology|2 +(noun)|medical science +(noun)|clinical neurology|medicine|medical specialty +neurolysin|1 +(noun)|neurotoxin|toxin +neuroma|1 +(noun)|tumor|tumour|neoplasm +neuromatous|1 +(adj)|tumor|tumour|neoplasm +neuromotor|1 +(adj)|efferent |motorial +neuromuscular|1 +(adj)|contractile organ|contractor|fiber bundle|fibre bundle|fascicle|fasciculus +neuromuscular blocking agent|1 +(noun)|blocker|blocking agent +neuromuscular junction|1 +(noun)|myoneural junction|synapse +neuron|1 +(noun)|nerve cell|somatic cell|vegetative cell +neuronal|1 +(adj)|neural|neuronic|somatic cell|vegetative cell +neuronic|1 +(adj)|neural|neuronal|somatic cell|vegetative cell +neuropathy|1 +(noun)|pathology +neurophysiological|1 +(adj)|neuroscience +neurophysiology|1 +(noun)|neuroscience +neuroplasty|1 +(noun)|plastic surgery|reconstructive surgery|anaplasty +neuropsychiatric|1 +(adj)|medicine|medical specialty +neuropsychiatry|1 +(noun)|medicine|medical specialty +neuropsychological|1 +(adj)|psychology|psychological science +neuropsychology|1 +(noun)|physiological psychology|psychophysiology|psychology|psychological science +neuroptera|2 +(noun)|Neuroptera|order Neuroptera|animal order +(noun)|neuropteron|neuropteran|neuropterous insect|insect +neuropteran|1 +(noun)|neuropteron|neuropterous insect|insect +neuropteron|1 +(noun)|neuropteran|neuropterous insect|insect +neuropterous insect|1 +(noun)|neuropteron|neuropteran|insect +neurosarcoma|1 +(noun)|malignant neuroma|sarcoma +neuroscience|1 +(noun)|neurobiology +neuroscientist|1 +(noun)|neurobiologist +neurosis|1 +(noun)|neuroticism|psychoneurosis|mental disorder|mental disturbance|disturbance|psychological disorder|folie +neurospora|1 +(noun)|Neurospora|genus Neurospora|fungus genus +neurosurgeon|1 +(noun)|brain surgeon|surgeon|operating surgeon|sawbones +neurosurgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +neurosyphilis|1 +(noun)|syphilis|syph|pox +neurotic|3 +(adj)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +(adj)|neurotic |psychoneurotic|abulic|aboulic|compulsive|delusional|disturbed|maladjusted|hypochondriac|hypochondriacal|hysteric|hysterical|megalomaniacal|megalomanic|monomaniacal|nymphomaniacal|nymphomaniac|obsessional|obsessive|obsessive-compulsive|pathological|phobic|psychosomatic|schizoid +(noun)|psychoneurotic|mental case|sick person|diseased person|sufferer +neurotic depression|1 +(noun)|depressive disorder|clinical depression|depression +neuroticism|1 +(noun)|neurosis|psychoneurosis|mental disorder|mental disturbance|disturbance|psychological disorder|folie +neurotoxic|1 +(adj)|toxin +neurotoxin|1 +(noun)|neurolysin|toxin +neurotransmitter|1 +(noun)|neurochemical +neurotrichus|1 +(noun)|Neurotrichus|genus Neurotrichus|mammal genus +neurotrichus gibbsii|1 +(noun)|American shrew mole|Neurotrichus gibbsii|shrew mole +neurotropic|1 +(adj)|tropism +neurotropism|1 +(noun)|tropism +neuter|4 +(adj)|neuter +(adj)|sexless|asexual |nonsexual +(noun)|gender|grammatical gender +(verb)|alter|spay|castrate|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +neutered|1 +(adj)|altered|castrated |unsexed +neutering|1 +(noun)|fixing|altering|sterilization|sterilisation +neutral|9 +(adj)|amoral |unmoral +(adj)|impersonal|objective |nonsubjective +(adj)|inert|indifferent|unreactive +(adj)|nonaligned +(adj)|neutral |electroneutral +(adj)|achromatic +(adj)|neutral |neutralized|neutralised|viewless +(adj)|colorless |colourless +(noun)|person|individual|someone|somebody|mortal|human|soul +neutral spirits|1 +(noun)|ethyl alcohol|alcohol|alcoholic beverage|intoxicant|inebriant +neutralisation|4 +(noun)|neutralization|neutralization reaction|neutralisation reaction|chemical reaction|reaction +(noun)|neutralization|destruction|devastation +(noun)|neutralization|nullification|override +(noun)|neutralization|counteraction|nullification|override +neutralisation reaction|1 +(noun)|neutralization|neutralisation|neutralization reaction|chemical reaction|reaction +neutralise|4 +(verb)|neutralize|liquidate|waste|knock off|do in|kill +(verb)|neutralize|demilitarize|demilitarise +(verb)|neutralize|nullify|negate|weaken +(verb)|neutralize|change|alter|modify +neutralised|1 +(adj)|neutralized|neutral +neutralism|1 +(noun)|foreign policy +neutralist|1 +(noun)|advocate|advocator|proponent|exponent +neutrality|3 +(noun)|non-engagement|nonparticipation|non-involvement +(noun)|disinterest|tolerance +(noun)|pH|pH scale +neutralization|4 +(noun)|neutralisation|neutralization reaction|neutralisation reaction|chemical reaction|reaction +(noun)|neutralisation|nullification|override +(noun)|neutralisation|destruction|devastation +(noun)|neutralisation|counteraction|nullification|override +neutralization fire|1 +(noun)|fire|firing +neutralization reaction|1 +(noun)|neutralization|neutralisation|neutralisation reaction|chemical reaction|reaction +neutralize|6 +(verb)|change|alter|modify +(verb)|neutralise|nullify|negate|weaken +(verb)|counteract|countervail|counterbalance|cancel|offset|set off +(verb)|neutralise|liquidate|waste|knock off|do in|kill +(verb)|neutralise|demilitarize|demilitarise +(verb)|neutralise|change|alter|modify +neutralized|1 +(adj)|neutralised|neutral +neutrino|1 +(noun)|lepton +neutron|1 +(noun)|nucleon +neutron bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|plutonium bomb +neutron flux|1 +(noun)|flux +neutron radiation|1 +(noun)|corpuscular radiation|particulate radiation|ionizing radiation +neutron star|1 +(noun)|star +neutropenia|1 +(noun)|leukopenia|leucopenia +neutrophil|1 +(noun)|neutrophile|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +neutrophile|1 +(noun)|neutrophil|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC +neva|1 +(noun)|Neva|Neva River|river +neva river|1 +(noun)|Neva|Neva River|river +nevada|1 +(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state +nevadan|1 +(noun)|Nevadan|American +nevado de colima|1 +(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano +nevelson|1 +(noun)|Nevelson|Louise Nevelson|sculptor|sculpturer|carver|statue maker +never|1 +(adv)|ne'er +never-ending|1 +(adj)|ceaseless|constant|incessant|perpetual|unceasing|unremitting|continuous |uninterrupted +never-never|2 +(noun)|hire-purchase|installment plan|installment buying|time plan +(noun)|Never-Never|outback +never-never land|1 +(noun)|dreamland|dreamworld|imaginary place|mythical place +never-say-die|1 +(adj)|indomitable|unsubduable|unconquerable +never again|1 +(adv)|nevermore +nevermore|1 +(adv)|never again +nevertheless|1 +(adv)|however|withal|still|yet|all the same|even so|nonetheless|notwithstanding +nevil shute|1 +(noun)|Shute|Nevil Shute|Nevil Shute Norway|writer|author +nevil shute norway|1 +(noun)|Shute|Nevil Shute|Nevil Shute Norway|writer|author +neville chamberlain|1 +(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman|solon|national leader +nevirapine|1 +(noun)|Viramune|non-nucleoside reverse transcriptase inhibitor|NNRTI +nevis|1 +(noun)|Nevis|island +nevoid elephantiasis|1 +(noun)|pachyderma|elephantiasis|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +nevus|1 +(noun)|birthmark|blemish|defect|mar +nevus flammeus|1 +(noun)|port-wine stain|birthmark|nevus +new|12 +(adj)|new |brand-new|bran-new|spic-and-span|spick-and-span|fresh|hot|red-hot|newborn|newly arisen|new-sprung|newfound|novel|refreshing|parvenu|parvenue|recent|revolutionary|radical|rising|sunrise|untested|untried|unused|virgin|current|fresh|modern|unworn|young|immature +(adj)|other +(adj)|unexampled|unprecedented +(adj)|fresh|novel|original +(adj)|raw|wet behind the ears|inexperienced +(adj)|newfangled|original +(adj)|new to|unaccustomed +(adj)|young|early +(adj)|unworn +(adj)|New|late +(adj)|Modern|New|late +(adv)|recently|newly|freshly|fresh +new-made|1 +(adj)|fresh +new-sprung|1 +(adj)|newborn|newly arisen|new +new amsterdam|1 +(noun)|New Amsterdam|colony|settlement +new ballgame|1 +(noun)|ballgame|situation|state of affairs +new britain|1 +(noun)|New Britain|island +new brunswick|2 +(noun)|New Brunswick|town +(noun)|New Brunswick|Canadian province +new caledonia|1 +(noun)|New Caledonia|island +new caledonian|1 +(adj)|New Caledonian|island +new caledonian pine|1 +(noun)|Araucaria columnaris|araucaria +new caledonian yew|1 +(noun)|New Caledonian yew|Austrotaxus spicata|yew +new criticism|1 +(noun)|criticism|literary criticism +new deal|3 +(noun)|New Deal|economic policy +(noun)|New Deal|historic period|age +(noun)|deal +new dealer|1 +(noun)|New Dealer|supporter|protagonist|champion|admirer|booster|friend +new delhi|1 +(noun)|New Delhi|Indian capital|capital of India|national capital +new edition|1 +(noun)|publication +new england|1 +(noun)|New England|geographical area|geographic area|geographical region|geographic region +new england aster|1 +(noun)|New England aster|Aster novae-angliae|aster +new england boiled dinner|1 +(noun)|boiled dinner|New England boiled dinner|dish +new england clam chowder|1 +(noun)|New England clam chowder|clam chowder +new englander|1 +(noun)|New Englander|Yankee|Yank|American +new english bible|1 +(noun)|New English Bible|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +new flower|1 +(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital +new guinea|1 +(noun)|New Guinea|Papua|island +new hampshire|2 +(noun)|New Hampshire|Granite State|NH|American state +(noun)|New Hampshire|Colony +new hampshirite|1 +(noun)|New Hampshirite|American +new haven|1 +(noun)|New Haven|city|metropolis|urban center +new hebrides|1 +(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country|state|land +new ireland|1 +(noun)|New Ireland|island +new jazz|1 +(noun)|modern jazz|neo jazz|jazz +new jersey|2 +(noun)|New Jersey|Garden State|NJ|American state +(noun)|New Jersey|Colony +new jerseyan|1 +(noun)|New Jerseyan|New Jerseyite|American +new jerseyite|1 +(noun)|New Jerseyan|New Jerseyite|American +new latin|1 +(noun)|Neo-Latin|New Latin|Latin +new line|1 +(noun)|printing operation +new london|1 +(noun)|New London|town +new look|1 +(noun)|New Look|vogue|trend|style +new mexico|1 +(noun)|New Mexico|Land of Enchantment|NM|American state +new moon|1 +(noun)|new phase of the moon|phase of the moon +new netherland|1 +(noun)|New Netherland|colony|dependency +new norwegian|1 +(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian +new orleans|1 +(noun)|New Orleans|city|metropolis|urban center|port of entry|point of entry +new penny|1 +(noun)|penny|cent|centime +new people's army|1 +(noun)|New People's Army|NPA|terrorist organization|terrorist group|foreign terrorist organization|FTO +new phase of the moon|1 +(noun)|new moon|phase of the moon +new river|1 +(noun)|New River|river +new river gorge bridge|1 +(noun)|New River Gorge Bridge|steel arch bridge +new scotland yard|1 +(noun)|Scotland Yard|New Scotland Yard|police|police force|constabulary|law +new siberian islands|1 +(noun)|New Siberian Islands|island +new south wales|1 +(noun)|New South Wales|Australian state +new stone age|1 +(noun)|Neolithic Age|Neolithic|New Stone Age|time period|period of time|period +new style calendar|1 +(noun)|Gregorian calendar|New Style calendar|solar calendar +new testament|1 +(noun)|New Testament|will|testament +new to|1 +(adj)|new|unaccustomed +new town|1 +(noun)|urban area|populated area +new wave|2 +(noun)|New Wave|Nouvelle Vague|artistic movement|art movement +(noun)|avant-garde|vanguard|van|artistic movement|art movement +new waver|1 +(noun)|New Waver|film maker|filmmaker|film producer|movie maker +new world|2 +(adj)|New World|hemisphere +(noun)|western hemisphere|occident|New World|hemisphere +new world anteater|1 +(noun)|anteater|New World anteater|edentate +new world beaver|1 +(noun)|New World beaver|Castor canadensis|beaver +new world blackbird|1 +(noun)|New World blackbird|blackbird|New World oriole|American oriole|oriole +new world chat|1 +(noun)|New World chat|chat|New World warbler|wood warbler +new world coral snake|1 +(noun)|coral snake|harlequin-snake|New World coral snake|elapid|elapid snake +new world flycatcher|1 +(noun)|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird|tyrannid +new world goldfinch|1 +(noun)|New world goldfinch|goldfinch|yellowbird|Spinus tristis|finch +new world jay|1 +(noun)|New World jay|jay +new world least weasel|1 +(noun)|New World least weasel|Mustela rixosa|weasel +new world leishmaniasis|1 +(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis|leishmaniosis|kala azar +new world monkey|1 +(noun)|New World monkey|platyrrhine|monkey +new world mouse|1 +(noun)|New World mouse|rodent|gnawer|gnawing animal +new world opah|1 +(noun)|New World opah|Lampris guttatus|soft-finned fish|malacopterygian +new world oriole|1 +(noun)|New World oriole|American oriole|oriole|oscine|oscine bird +new world porcupine|1 +(noun)|New World porcupine|porcupine|hedgehog +new world sparrow|1 +(noun)|New World sparrow|finch +new world tapir|1 +(noun)|New World tapir|Tapirus terrestris|tapir +new world vulture|1 +(noun)|New World vulture|cathartid|vulture +new world warbler|1 +(noun)|New World warbler|wood warbler|warbler +new year|1 +(noun)|New Year|year|twelvemonth|yr +new year's|1 +(noun)|New Year's Day|New Year's|January 1|legal holiday|national holiday +new year's day|1 +(noun)|New Year's Day|New Year's|January 1|legal holiday|national holiday +new year's eve|1 +(noun)|New Year's Eve|December 31|day +new york|3 +(noun)|New York|New York City|Greater New York|city|metropolis|urban center|port of entry|point of entry +(noun)|New York|New York State|Empire State|NY|American state +(noun)|New York|Colony +new york aster|1 +(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster +new york bay|1 +(noun)|New York Bay|bay +new york city|1 +(noun)|New York|New York City|Greater New York|city|metropolis|urban center|port of entry|point of entry +new york fern|1 +(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern +new york minute|1 +(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment|minute|second|bit +new york state|1 +(noun)|New York|New York State|Empire State|NY|American state +new york state barge canal|1 +(noun)|New York State Barge Canal|canal +new york stock exchange|1 +(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange|stock market|securities market +new york strip|1 +(noun)|strip steak|New York strip|beefsteak +new yorker|1 +(noun)|New Yorker|American +new zealand|2 +(noun)|New Zealand|country|state|land +(noun)|New Zealand|island +new zealand beech|1 +(noun)|New Zealand beech|southern beech|evergreen beech +new zealand cotton|1 +(noun)|New Zealand cotton|natural fiber|natural fibre +new zealand dacryberry|1 +(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer|coniferous tree +new zealand daisybush|1 +(noun)|New Zealand daisybush|Olearia haastii|daisybush|daisy-bush|daisy bush +new zealand dollar|1 +(noun)|New Zealand dollar|dollar +new zealand honeysuckle|1 +(noun)|rewa-rewa|New Zealand honeysuckle|angiospermous tree|flowering tree +new zealand mountain pine|1 +(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer|coniferous tree +new zealand spinach|1 +(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb|herbaceous plant +new zealand white pine|1 +(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer|coniferous tree +new zealand wine berry|1 +(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub|bush +new zealand wren|1 +(noun)|New Zealand wren|oscine|oscine bird +new zealander|2 +(adj)|New Zealander|island +(noun)|New Zealander|Kiwi|inhabitant|dweller|denizen|indweller +newari|1 +(noun)|Newari|Himalayish +newark|1 +(noun)|Newark|city|metropolis|urban center +newbie|1 +(noun)|newcomer|fledgling|fledgeling|starter|neophyte|freshman|entrant|novice|beginner|tyro|tiro|initiate +newborn|3 +(adj)|young |immature +(adj)|newly arisen|new-sprung|new +(noun)|neonate|newborn infant|newborn baby|baby|babe|infant +newborn baby|1 +(noun)|neonate|newborn|newborn infant|baby|babe|infant +newborn infant|1 +(noun)|neonate|newborn|newborn baby|baby|babe|infant +newburg sauce|1 +(noun)|Newburg sauce|sauce +newburgh|1 +(noun)|Newburgh|town +newcastle|1 +(noun)|Newcastle|Newcastle-upon-Tyne|city|metropolis|urban center|port +newcastle-upon-tyne|1 +(noun)|Newcastle|Newcastle-upon-Tyne|city|metropolis|urban center|port +newcastle disease|1 +(noun)|Newcastle disease|animal disease +newcomb|1 +(noun)|Newcomb|Simon Newcomb|astronomer|uranologist|stargazer +newcomer|2 +(noun)|fledgling|fledgeling|starter|neophyte|freshman|newbie|entrant|novice|beginner|tyro|tiro|initiate +(noun)|arrival|arriver|comer +newel|2 +(noun)|newel post|post +(noun)|column|pillar +newel post|1 +(noun)|newel|post +newest|12 +(adj)|latest|last|up-to-date|cutting-edge|with-it|fashionable |stylish +(adj)|new |brand-new|bran-new|spic-and-span|spick-and-span|fresh|hot|red-hot|newborn|newly arisen|new-sprung|newfound|novel|refreshing|parvenu|parvenue|recent|revolutionary|radical|rising|sunrise|untested|untried|unused|virgin|current|fresh|modern|unworn|young|immature +(adj)|new|other +(adj)|new|unexampled|unprecedented +(adj)|fresh|new|novel|original +(adj)|raw|new|wet behind the ears|inexperienced +(adj)|newfangled|new|original +(adj)|new|new to|unaccustomed +(adj)|new|young|early +(adj)|new|unworn +(adj)|New|late +(adj)|Modern|New|late +newfangled|1 +(adj)|new|original +newfound|1 +(adj)|new +newfoundland|2 +(noun)|Newfoundland|dog|domestic dog|Canis familiaris +(noun)|Newfoundland|island +newfoundland and labrador|1 +(noun)|Newfoundland and Labrador|Canadian province +newfoundland dwarf birch|1 +(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch|birch tree +newly|1 +(adv)|recently|freshly|fresh|new +newly arisen|1 +(adj)|newborn|new-sprung|new +newlywed|1 +(noun)|honeymooner|spouse|partner|married person|mate|better half +newman|2 +(noun)|Newman|Paul Newman|actor|histrion|player|thespian|role player +(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest|hierarch|high priest|prelate|primate|theologian|theologist|theologizer|theologiser +newmarket|2 +(noun)|coat +(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game|cards +newness|1 +(noun)|age +newport|2 +(noun)|Newport|city|metropolis|urban center|port +(noun)|Newport|city|metropolis|urban center +newport news|1 +(noun)|Newport News|city|metropolis|urban center|port +news|5 +(noun)|intelligence|tidings|word|information|info +(noun)|information|info +(noun)|news program|news show|broadcast|program|programme +(noun)|information|info +(noun)|newsworthiness|interest|interestingness +news agency|1 +(noun)|press agency|wire service|press association|news organization|news organisation|agency +news article|1 +(noun)|news story|newspaper article|article +news bulletin|1 +(noun)|newsflash|flash|newsbreak|bulletin +news conference|1 +(noun)|press conference|conference|group discussion +news event|1 +(noun)|happening|occurrence|natural event +news item|1 +(noun)|item|point +news leak|1 +(noun)|leak|disclosure|revelation|revealing +news media|1 +(noun)|journalism|fourth estate|print media +news organisation|1 +(noun)|news agency|press agency|wire service|press association|news organization|agency +news organization|1 +(noun)|news agency|press agency|wire service|press association|news organisation|agency +news photography|1 +(noun)|photojournalism +news program|1 +(noun)|news show|news|broadcast|program|programme +news reader|2 +(noun)|newsreader|newscaster +(noun)| +news report|1 +(noun)|report|story|account|write up|news +news show|1 +(noun)|news program|news|broadcast|program|programme +news story|1 +(noun)|news article|newspaper article|article +newsagent|1 +(noun)|newsdealer|newsvendor|newsstand operator|shopkeeper|tradesman|storekeeper|market keeper +newsboy|1 +(noun)|carrier|deliveryman|delivery boy|deliverer +newsbreak|1 +(noun)|news bulletin|newsflash|flash|bulletin +newscast|1 +(noun)|news +newscaster|1 +(noun)|announcer +newsdealer|1 +(noun)|newsagent|newsvendor|newsstand operator|shopkeeper|tradesman|storekeeper|market keeper +newsflash|1 +(noun)|news bulletin|flash|newsbreak|bulletin +newsless|2 +(adj)|uninformed +(adj)|uninformative |uninstructive +newsletter|1 +(noun)|newssheet|report|news report|story|account|write up +newsman|1 +(noun)|reporter|newsperson|communicator +newsmonger|1 +(noun)|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|communicator +newspaper|4 +(noun)|paper|press|public press +(noun)|paper|newspaper publisher|publisher|publishing house|publishing firm|publishing company +(noun)|paper|product|production +(noun)|newsprint|paper +newspaper ad|1 +(noun)|newspaper advertisement|ad|advertisement|advertizement|advertising|advertizing|advert +newspaper advertisement|1 +(noun)|newspaper ad|ad|advertisement|advertizement|advertising|advertizing|advert +newspaper article|1 +(noun)|news article|news story|article +newspaper clipping|1 +(noun)|clipping|press clipping|cutting|press cutting|excerpt|extract|selection +newspaper column|1 +(noun)|column|editorial|article +newspaper columnist|1 +(noun)|columnist|editorialist +newspaper critic|1 +(noun)|critic|newspaper columnist +newspaper editor|1 +(noun)|editor|editor in chief +newspaper headline|1 +(noun)|headline|heading|header|head +newspaper publisher|2 +(noun)|publisher|owner|proprietor +(noun)|newspaper|paper|publisher|publishing house|publishing firm|publishing company +newspapering|1 +(noun)|journalism +newspaperman|1 +(noun)|correspondent|newspaperwoman|newswriter|pressman|journalist +newspaperwoman|1 +(noun)|correspondent|newspaperman|newswriter|pressman|journalist +newspeak|1 +(noun)|fabrication|manufacture +newsperson|1 +(noun)|reporter|newsman|communicator +newsprint|1 +(noun)|newspaper|paper +newsreader|1 +(noun)|news reader|newscaster +newsreel|1 +(noun)|short subject +newsroom|3 +(noun)|staff +(noun)|office|business office +(noun)|reading room +newssheet|1 +(noun)|newsletter|report|news report|story|account|write up +newsstand|1 +(noun)|stall|stand|sales booth +newsstand operator|1 +(noun)|newsagent|newsdealer|newsvendor|shopkeeper|tradesman|storekeeper|market keeper +newsvendor|1 +(noun)|newsagent|newsdealer|newsstand operator|shopkeeper|tradesman|storekeeper|market keeper +newswoman|1 +(noun)|reporter|newsman|newsperson +newsworthiness|1 +(noun)|news|interest|interestingness +newsworthy|1 +(adj)|interesting +newswriter|1 +(noun)|correspondent|newspaperman|newspaperwoman|pressman|journalist +newsy|2 +(adj)|informative |informatory +(adj)|chatty|gossipy|communicative |communicatory +newt|1 +(noun)|triton|salamander +newton|2 +(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician|physicist +(noun)|N|force unit +newton's first law|1 +(noun)|first law of motion|Newton's first law of motion|Newton's first law|Newton's law of motion|Newton's law|law of motion +newton's first law of motion|1 +(noun)|first law of motion|Newton's first law of motion|Newton's first law|Newton's law of motion|Newton's law|law of motion +newton's law|1 +(noun)|Newton's law of motion|Newton's law|law of motion|law|law of nature +newton's law of gravitation|1 +(noun)|law of gravitation|Newton's law of gravitation|law|law of nature +newton's law of motion|1 +(noun)|Newton's law of motion|Newton's law|law of motion|law|law of nature +newton's second law|1 +(noun)|second law of motion|Newton's second law of motion|Newton's second law|Newton's law of motion|Newton's law|law of motion +newton's second law of motion|1 +(noun)|second law of motion|Newton's second law of motion|Newton's second law|Newton's law of motion|Newton's law|law of motion +newton's theory of gravitation|1 +(noun)|theory of gravitation|theory of gravity|gravitational theory|Newton's theory of gravitation|scientific theory +newton's third law|1 +(noun)|third law of motion|Newton's third law of motion|Newton's third law|law of action and reaction|Newton's law of motion|Newton's law|law of motion +newton's third law of motion|1 +(noun)|third law of motion|Newton's third law of motion|Newton's third law|law of action and reaction|Newton's law of motion|Newton's law|law of motion +newtonian|2 +(adj)|Newtonian|mathematician|physicist +(noun)|Newtonian|follower +newtonian mechanics|1 +(noun)|classical mechanics|Newtonian mechanics|mechanics +newtonian reflector|1 +(noun)|Newtonian telescope|Newtonian reflector|reflecting telescope|reflector +newtonian telescope|1 +(noun)|Newtonian telescope|Newtonian reflector|reflecting telescope|reflector +newtown wonder|1 +(noun)|Newtown Wonder|cooking apple +next|3 +(adj)|adjacent|side by side|close +(adj)|future|succeeding|incoming +(adj)|following|succeeding +next-to-last|2 +(adj)|penultimate|last +(adj)|junior|third-year|intermediate +next door|1 +(adv)|in the adjacent house|in the adjacent apartment +next friend|1 +(noun)|agent +next of kin|1 +(noun)|relative|relation +nexus|2 +(noun)|link|linkage +(noun)|series +ney|1 +(noun)|Ney|Michel Ney|Duc d'Elchingen|general|full general|marshal|marshall +nez perce|2 +(noun)|Nez Perce|Shahaptian|Sahaptin|Sahaptino +(noun)|Nez Perce|Shahaptian|Sahaptin +ng|1 +(noun)|nanogram|metric weight unit|weight unit +ngaio marsh|1 +(noun)|Marsh|Ngaio Marsh|writer|author +nganasan|2 +(noun)|Nganasan|Russian +(noun)|Nganasan|Samoyedic|Samoyed +ngb|1 +(noun)|National Guard Bureau|NGB|agency|federal agency|government agency|bureau|office|authority +ngf|1 +(noun)|nerve growth factor|NGF|growth factor +ngo|1 +(noun)|nongovernmental organization|NGO|organization|organisation +ngu|1 +(noun)|nongonococcal urethritis|NGU|urethritis +ngultrum|1 +(noun)|Bhutanese monetary unit +nguni|1 +(noun)|Nguni|Bantu|Bantoid language +nguyen tat thanh|1 +(noun)|Ho Chi Minh|Nguyen Tat Thanh|statesman|solon|national leader +ngwee|1 +(noun)|Zambian monetary unit +nh|1 +(noun)|New Hampshire|Granite State|NH|American state +ni|1 +(noun)|nickel|Ni|atomic number 28|metallic element|metal +ni-hard|1 +(noun)|Ni-hard|Ni-hard iron|alloy iron|alloy cast iron +ni-hard iron|1 +(noun)|Ni-hard|Ni-hard iron|alloy iron|alloy cast iron +ni-resist|1 +(noun)|Ni-resist|Ni-resist iron|alloy iron|alloy cast iron +ni-resist iron|1 +(noun)|Ni-resist|Ni-resist iron|alloy iron|alloy cast iron +niacin|1 +(noun)|nicotinic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +niagara|2 +(noun)|Niagara|Niagara Falls|waterfall|falls +(noun)|Niagara|Niagara River|river +niagara falls|2 +(noun)|Niagara|Niagara Falls|waterfall|falls +(noun)|Niagara Falls|city|metropolis|urban center +niagara river|1 +(noun)|Niagara|Niagara River|river +niamey|1 +(noun)|Niamey|capital of Niger|national capital +nib|2 +(noun)|pen nib|point +(noun)|beak|bill|neb|pecker|mouth +nibbed|1 +(adj)|pointed +nibble|5 +(noun)|nybble|computer memory unit +(noun)|bite|chomp +(verb)|bite|seize with teeth +(verb)|bite|seize with teeth +(verb)|pick|piece|eat +nibbler|1 +(noun)|biter +nibelung|2 +(noun)|Nibelung|mythical being +(noun)|Nibelung|gnome|dwarf +nibelungenlied|1 +(noun)|Nibelungenlied|epic poem|heroic poem|epic|epos +niblick|1 +(noun)|nine iron|iron +nicad|1 +(noun)|nickel-cadmium accumulator|storage battery|accumulator +nicaea|1 +(noun)|Nicaea|city|metropolis|urban center +nicaean|1 +(adj)|Nicaean|Nicene|city|metropolis|urban center +nicandra|1 +(noun)|Nicandra|genus Nicandra|asterid dicot genus +nicandra physaloides|1 +(noun)|apple of Peru|shoo fly|Nicandra physaloides|herb|herbaceous plant +nicaragua|1 +(noun)|Nicaragua|Republic of Nicaragua|Central American country|Central American nation +nicaraguan|2 +(adj)|Nicaraguan|Central American country|Central American nation +(noun)|Nicaraguan|Central American +nicaraguan capital|1 +(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital +nicaraguan monetary unit|1 +(noun)|Nicaraguan monetary unit|monetary unit +niccolo machiavelli|1 +(noun)|Machiavelli|Niccolo Machiavelli|statesman|solon|national leader|philosopher +niccolo paganini|1 +(noun)|Paganini|Niccolo Paganini|violinist|fiddler +nice|7 +(adj)|nice |good|pleasant|pleasant +(adj)|decent|respectable +(adj)|skillful|precise +(adj)|dainty|overnice|prissy|squeamish|fastidious +(adj)|discriminate|discriminating +(adj)|courteous|gracious|polite +(noun)|Nice|city|metropolis|urban center +nicene|1 +(adj)|Nicaean|Nicene|city|metropolis|urban center +nicene creed|1 +(noun)|Nicene Creed|religious doctrine|church doctrine|gospel|creed +niceness|3 +(noun)|politeness|courtesy|good manners +(noun)|pleasantness|sweetness +(noun)|subtlety|difficulty|difficultness +nicety|2 +(noun)|justness|rightness|conformity|conformance +(noun)|nuance|shade|subtlety|refinement|meaning|significance|signification|import +niche|4 +(noun)|place|station +(noun)|recess|recession|corner|concave shape|concavity|incurvation|incurvature +(noun)|recess|enclosure +(noun)|ecological niche|condition|status +nicholas|1 +(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop|saint +nicholas i|1 +(noun)|Nicholas I|Czar Nicholas I|czar|tsar|tzar +nicholas ii|1 +(noun)|Nicholas II|czar|tsar|tzar +nicholas vachel lindsay|1 +(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet +nichrome|1 +(noun)|Nichrome|nickel-base alloy|nickel alloy +nick|6 +(noun)|dent|gouge|blemish|defect|mar +(noun)|notch|snick|cut|cutting +(verb)|snick|cut +(verb)|chip|cut +(verb)|change|alter|modify +(verb)|copulate|mate|pair|couple +nickel|4 +(noun)|Ni|atomic number 28|metallic element|metal +(noun)|coin +(noun)|nickel note|fiver|five-spot|five dollar bill +(verb)|plate +nickel-and-dime|4 +(adj)|small-time|unimportant +(adj)|cheap |inexpensive +(verb)|penny-pinch|spend|expend|drop +(verb)|scrape|scrape up|come up +nickel-base alloy|1 +(noun)|nickel alloy|alloy|metal +nickel-cadmium accumulator|1 +(noun)|nicad|storage battery|accumulator +nickel-iron accumulator|1 +(noun)|nickel-iron battery|storage battery|accumulator +nickel-iron battery|1 +(noun)|nickel-iron accumulator|storage battery|accumulator +nickel alloy|1 +(noun)|nickel-base alloy|alloy|metal +nickel bronze|1 +(noun)|bronze +nickel note|1 +(noun)|nickel|fiver|five-spot|five dollar bill +nickel silver|1 +(noun)|German silver|alloy|metal +nickel steel|1 +(noun)|alloy steel +nickelodeon|1 +(noun)|jukebox|record player|phonograph +nicker|2 +(noun)|neigh|whicker|whinny|cry +(verb)|neigh|whicker|whinny|utter|emit|let out|let loose +nicker nut|1 +(noun)|bonduc nut|nicker seed|seed +nicker seed|1 +(noun)|bonduc nut|nicker nut|seed +nicklaus|1 +(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer|golf player|linksman +nicknack|1 +(noun)|bric-a-brac|knickknack|knickknackery|whatnot|curio|curiosity|oddity|oddment|peculiarity|rarity +nickname|3 +(noun)|moniker|cognomen|sobriquet|soubriquet|appellation|denomination|designation|appellative +(noun)|name +(verb)|dub|name|call +nicol prism|1 +(noun)|Nicol prism|optical device +nicola amati|1 +(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker +nicola sacco|1 +(noun)|Sacco|Nicola Sacco|anarchist|nihilist|syndicalist +nicolas de malebranche|1 +(noun)|Malebranche|Nicolas de Malebranche|philosopher +nicolas leonard sadi carnot|1 +(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist +nicolas poussin|1 +(noun)|Poussin|Nicolas Poussin|old master +nicolaus copernicus|1 +(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer|uranologist|stargazer +nicolo amati|1 +(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker +nicolson|1 +(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat|diplomatist|writer|author +nicosia|1 +(noun)|Nicosia|capital of Cyprus|national capital +nicotiana|1 +(noun)|Nicotiana|genus Nicotiana|asterid dicot genus +nicotiana alata|1 +(noun)|flowering tobacco|Jasmine tobacco|Nicotiana alata|tobacco +nicotiana glauca|1 +(noun)|tree tobacco|mustard tree|Nicotiana glauca|tobacco +nicotiana rustica|1 +(noun)|wild tobacco|Indian tobacco|Nicotiana rustica|tobacco +nicotiana tabacum|1 +(noun)|common tobacco|Nicotiana tabacum|tobacco +nicotinamide adenine dinucleotide|1 +(noun)|NAD|coenzyme +nicotinamide adenine dinucleotide phosphate|1 +(noun)|NADP|coenzyme +nicotine|1 +(noun)|plant toxin|phytotoxin|alkaloid|vasoconstrictor|vasoconstrictive +nicotine addiction|1 +(noun)|drug addiction|white plague +nicotine poisoning|1 +(noun)|poisoning|toxic condition|intoxication +nicotinic acid|1 +(noun)|niacin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +nictate|1 +(verb)|blink|wink|nictitate|act involuntarily|act reflexively +nictation|1 +(noun)|blink|eye blink|blinking|wink|winking|nictitation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +nictitate|1 +(verb)|blink|wink|nictate|act involuntarily|act reflexively +nictitating membrane|1 +(noun)|third eyelid|protective fold +nictitation|1 +(noun)|blink|eye blink|blinking|wink|winking|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +nicu|1 +(noun)|neonatal intensive care unit|NICU|intensive care unit|ICU +nidaros|1 +(noun)|Trondheim|Nidaros|city|metropolis|urban center|port +nidation|1 +(noun)|implantation|organic process|biological process +niddm|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +nidicolous|1 +(adj)|nidicolous +nidifugous|1 +(adj)|nidifugous +nidularia|1 +(noun)|Nidularia|genus Nidularia|fungus genus +nidulariaceae|1 +(noun)|Nidulariaceae|family Nidulariaceae|fungus family +nidulariales|1 +(noun)|Nidulariales|order Nidulariales|fungus order +nidus|2 +(noun)|focus|focal point|point +(noun)|nest +niebuhr|2 +(noun)|Niebuhr|Reinhold Niebuhr|theologian|theologist|theologizer|theologiser +(noun)|Niebuhr|Barthold George Niebuhr|historian|historiographer +niece|1 +(noun)|kinswoman +niels abel|1 +(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician +niels bohr|1 +(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist +niels henrik abel|1 +(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician +niels henrik david bohr|1 +(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist +nielson|1 +(noun)|Nielson|Carl Nielson|Carl August Nielson|composer +niemann-pick disease|1 +(noun)|Niemann-Pick disease|inborn error of metabolism|lipidosis|autosomal recessive disease|autosomal recessive defect +nierembergia|1 +(noun)|cupflower|herb|herbaceous plant +nierembergia frutescens|1 +(noun)|tall cupflower|Nierembergia frutescens|cupflower|nierembergia +nierembergia repens|1 +(noun)|whitecup|Nierembergia repens|Nierembergia rivularis|cupflower|nierembergia +nierembergia rivularis|1 +(noun)|whitecup|Nierembergia repens|Nierembergia rivularis|cupflower|nierembergia +nietzsche|1 +(noun)|Nietzsche|Friedrich Wilhelm Nietzsche|philosopher +nifedipine|1 +(noun)|Procardia|calcium blocker|calcium-channel blocker +niff|1 +(noun)|pong|malodor|malodour|stench|stink|reek|fetor|foetor|mephitis +niffy|1 +(adj)|malodorous |malodourous +nifty|1 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|not bad|peachy|slap-up|swell|smashing|good +nigella|1 +(noun)|flower +nigella damascena|1 +(noun)|love-in-a-mist|Nigella damascena|nigella +nigella hispanica|1 +(noun)|fennel flower|Nigella hispanica|nigella +nigella sativa|1 +(noun)|black caraway|nutmeg flower|Roman coriander|Nigella sativa|nigella +niger|2 +(noun)|Niger|Niger River|river +(noun)|Niger|Republic of Niger|African country|African nation +niger-congo|1 +(noun)|Niger-Congo|Niger-Kordofanian|Niger-Kordofanian language +niger-kordofanian|1 +(noun)|Niger-Kordofanian|Niger-Kordofanian language|natural language|tongue +niger-kordofanian language|1 +(noun)|Niger-Kordofanian|Niger-Kordofanian language|natural language|tongue +niger franc|1 +(noun)|Niger franc|franc +niger river|1 +(noun)|Niger|Niger River|river +nigeria|1 +(noun)|Nigeria|Federal Republic of Nigeria|African country|African nation +nigerian|3 +(adj)|Nigerian|African country|African nation +(adj)|Nigerian|Nigerien|African +(noun)|Nigerian|African +nigerian capital|1 +(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital +nigerian monetary unit|1 +(noun)|Nigerian monetary unit|monetary unit +nigerien|2 +(adj)|Nigerian|Nigerien|African +(noun)|Nigerien|African +nigga|1 +(noun)|nigger|spade|coon|jigaboo|nigra|Black|Black person|blackamoor|Negro|Negroid +niggard|1 +(noun)|skinflint|scrooge|churl|hoarder +niggardliness|1 +(noun)|meanness|minginess|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess +niggardly|1 +(adj)|grudging|scrimy|stingy |ungenerous +niggardness|1 +(noun)|meanness|minginess|niggardliness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess +nigger|1 +(noun)|nigga|spade|coon|jigaboo|nigra|Black|Black person|blackamoor|Negro|Negroid +niggle|2 +(verb)|fuss|fret|worry +(verb)|quibble|pettifog|bicker|squabble|brabble|argue|contend|debate|fence +niggler|1 +(noun)|carper|critic +niggling|1 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|piddling|piffling|petty|picayune|trivial|unimportant +nigh|4 +(adj)|near|left +(adj)|near |close +(adv)|near|close +(adv)|about|just about|almost|most|all but|nearly|near|virtually|well-nigh +nigher|1 +(adv)|nearer|closer +nighest|4 +(adj)|nearest|near |close +(adj)|near|nigh|left +(adj)|nigh|near |close +(adv)|nearest|closest +night|8 +(noun)|nighttime|dark|time period|period of time|period +(noun)|time period|period of time|period +(noun)|time period|period of time|period +(noun)|time unit|unit of time +(noun)|dark|darkness +(noun)|twilight|dusk|gloaming|nightfall|evenfall|fall|crepuscule|crepuscle +(noun)|time period|period of time|period +(noun)|Nox|Night|Roman deity +night-blooming cereus|3 +(noun)|cactus +(noun)|cactus +(noun)|cactus +night-light|1 +(noun)|light|light source +night-line|1 +(noun)|fishing line +night-robe|1 +(noun)|nightgown|nightie|nightdress|lingerie|intimate apparel|nightclothes|nightwear +night-sight|1 +(noun)|night vision|scotopic vision|twilight vision|sight|vision|visual sense|visual modality +night-stop|1 +(noun)|stop|stopover|layover +night bell|1 +(noun)|doorbell|bell|buzzer +night bird|2 +(noun)|bird +(noun)|night owl|nighthawk|nightbird|individualist +night blindness|1 +(noun)|nyctalopia|moon blindness|visual impairment|visual defect|vision defect|visual disorder|avitaminosis|hypovitaminosis +night court|1 +(noun)|criminal court +night game|1 +(noun)|outdoor game +night heron|1 +(noun)|night raven|heron +night jasmine|1 +(noun)|night jessamine|Cestrum nocturnum|shrub|bush +night jessamine|1 +(noun)|night jasmine|Cestrum nocturnum|shrub|bush +night latch|1 +(noun)|doorlock +night letter|1 +(noun)|telegram|wire +night lizard|1 +(noun)|lizard +night owl|1 +(noun)|nighthawk|nightbird|individualist +night porter|1 +(noun)|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|ostiary +night raven|2 +(noun)|night heron|heron +(noun)|night bird +night rider|2 +(noun)|nightrider|attacker|aggressor|assailant|assaulter +(noun)| +night school|1 +(noun)|school +night shift|2 +(noun)|graveyard shift|shift|work shift|duty period +(noun)|graveyard shift|shift +night snake|1 +(noun)|Hypsiglena torquata|colubrid snake|colubrid +night soil|1 +(noun)|manure +night terror|1 +(noun)|drama|dramatic event +night vision|1 +(noun)|night-sight|scotopic vision|twilight vision|sight|vision|visual sense|visual modality +night watch|1 +(noun)|graveyard watch|middle watch|midwatch|watch +night watchman|1 +(noun)|watchman|watcher|security guard +nightbird|1 +(noun)|night owl|nighthawk|individualist +nightcap|3 +(noun)|drink +(noun)|cap +(noun)|game +nightclothes|1 +(noun)|nightwear|clothing|article of clothing|vesture|wear +nightclub|1 +(noun)|cabaret|club|nightspot|spot +nightcrawler|1 +(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|crawler|dew worm|red worm|oligochaete|oligochaete worm +nightdress|1 +(noun)|nightgown|nightie|night-robe|lingerie|intimate apparel|nightclothes|nightwear +nighted|1 +(adj)|benighted|unpunctual +nightfall|1 +(noun)|twilight|dusk|gloaming|evenfall|fall|crepuscule|crepuscle|hour|time of day +nightgown|1 +(noun)|nightie|night-robe|nightdress|lingerie|intimate apparel|nightclothes|nightwear +nighthawk|2 +(noun)|night owl|nightbird|individualist +(noun)|bullbat|mosquito hawk|goatsucker|nightjar|caprimulgid +nightie|1 +(noun)|nightgown|night-robe|nightdress|lingerie|intimate apparel|nightclothes|nightwear +nightingale|2 +(noun)|Luscinia megarhynchos|thrush +(noun)|Nightingale|Florence Nightingale|the Lady with the Lamp|nurse +nightjar|1 +(noun)|goatsucker|caprimulgid|caprimulgiform bird +nightlong|1 +(adj)|overnight|long +nightly|2 +(adj)|nighttime +(adv)|every night +nightmare|2 +(noun)|incubus|situation +(noun)|dream|dreaming +nightmarish|1 +(adj)|bloodcurdling|hair-raising|alarming +nightrider|1 +(noun)|night rider|attacker|aggressor|assailant|assaulter +nightshade|1 +(noun)|woody plant|ligneous plant +nightshirt|1 +(noun)|nightclothes|nightwear +nightspot|1 +(noun)|cabaret|nightclub|club|spot +nightstick|1 +(noun)|truncheon|billy|billystick|billy club|club +nighttime|2 +(adj)|nighttime |nightly|nocturnal|nocturnal +(noun)|night|dark|time period|period of time|period +nightwalker|1 +(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +nightwear|1 +(noun)|nightclothes|clothing|article of clothing|vesture|wear +nightwork|1 +(noun)|work +nigra|1 +(noun)|nigger|nigga|spade|coon|jigaboo|Black|Black person|blackamoor|Negro|Negroid +nigrify|1 +(verb)|blacken|melanize|melanise|black|discolor|discolour|colour|color +nigroporus|1 +(noun)|Nigroporus|genus Nigroporus|fungus genus +nigroporus vinosus|1 +(noun)|Nigroporus vinosus|polypore|pore fungus|pore mushroom +nih|1 +(noun)|National Institutes of Health|NIH|agency|federal agency|government agency|bureau|office|authority +nihau|1 +(noun)|Nihau|Nihau Island|island +nihau island|1 +(noun)|Nihau|Nihau Island|island +nihil|1 +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip +nihil obstat|2 +(noun)|sanction|countenance|endorsement|indorsement|warrant|imprimatur +(noun)|sanction +nihilism|3 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|nihilistic delusion|delusion|psychotic belief +(noun)|anarchy|lawlessness +nihilist|2 +(noun)|nonreligious person +(noun)|anarchist|syndicalist|radical +nihilistic|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +nihilistic delusion|1 +(noun)|nihilism|delusion|psychotic belief +nihon|1 +(noun)|Japan|Nippon|Nihon|Asian country|Asian nation +nij|1 +(noun)|National Institute of Justice|NIJ|law enforcement agency +nijinsky|1 +(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer|professional dancer +nijmegen|1 +(noun)|Nijmegen|city|metropolis|urban center +nike|1 +(noun)|Nike|Greek deity +nikita khrushchev|1 +(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman|solon|national leader +nikita sergeyevich khrushchev|1 +(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman|solon|national leader +nikola tesla|1 +(noun)|Tesla|Nikola Tesla|electrical engineer|inventor|discoverer|artificer +nikolaas tinbergen|1 +(noun)|Tinbergen|Nikolaas Tinbergen|zoologist|animal scientist +nikolai andreyevich rimski-korsakov|1 +(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer +nikolai andreyevich rimsky-korsakov|1 +(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer +nikolai ivanovich bukharin|1 +(noun)|Bukharin|Nikolai Ivanovich Bukharin|Bolshevik|Bolshevist +nikolai ivanovich lobachevsky|1 +(noun)|Lobachevsky|Nikolai Ivanovich Lobachevsky|mathematician +nikolai lenin|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +nikolai vasilievich gogol|1 +(noun)|Gogol|Nikolai Vasilievich Gogol|writer|author +nil|1 +(noun)|nothing|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +nile|1 +(noun)|Nile|Nile River|river +nile crocodile|1 +(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile +nile river|1 +(noun)|Nile|Nile River|river +nilgai|1 +(noun)|nylghai|nylghau|blue bull|Boselaphus tragocamelus|antelope +nilgiri hills|1 +(noun)|Nilgiri Hills|hills +nilo-saharan|1 +(noun)|Nilo-Saharan|Nilo-Saharan language|natural language|tongue +nilo-saharan language|1 +(noun)|Nilo-Saharan|Nilo-Saharan language|natural language|tongue +nilotic|3 +(adj)|Nilotic|river +(adj)|Nilotic|Chari-Nile +(noun)|Nilotic|Nilotic language|Chari-Nile +nilotic language|1 +(noun)|Nilotic|Nilotic language|Chari-Nile +nilpotent|1 +(adj)|digit|figure +nilsson|1 +(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano +nim|1 +(noun)|table game +nim tree|1 +(noun)|neem|neem tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree +nima|1 +(noun)|National Imagery and Mapping Agency|NIMA|agency|federal agency|government agency|bureau|office|authority +nimble|2 +(adj)|agile|quick|spry|active +(adj)|agile|intelligent +nimble-fingered|1 +(adj)|light-fingered|adroit +nimble will|2 +(noun)|nimblewill|nimble Will|Muhlenbergia schreberi|grass +(noun)| +nimbleness|1 +(noun)|agility|legerity|lightness|lightsomeness|gracefulness +nimblewill|1 +(noun)|nimble Will|Muhlenbergia schreberi|grass +nimbly|1 +(adv)|agilely +nimbus|2 +(noun)|nimbus cloud|rain cloud|cloud +(noun)|aura|aureole|halo|glory|gloriole|light|lightness +nimbus cloud|1 +(noun)|nimbus|rain cloud|cloud +nimby|1 +(noun)|NIMBY|dissenter|dissident|protester|objector|contestant +nimiety|1 +(noun)|excess|surplus|surplusage|overabundance|overmuch|overmuchness|superabundance +niminy-piminy|1 +(adj)|dainty|mincing|prim|twee|refined +nimitz|1 +(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer +nimravus|1 +(noun)|Nimravus|genus Nimravus|mammal genus +nimrod|1 +(noun)|Nimrod|hunter|huntsman +nin-sin|1 +(noun)|ginseng|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb|herbaceous plant +nina|1 +(noun)|Nina|Semitic deity +nina from carolina|1 +(noun)|nine|9|IX|niner|Nina from Carolina|ennead|digit|figure +nincompoop|1 +(noun)|poop|ninny|simpleton|simple +nine|3 +(adj)|9|ix|cardinal +(noun)|9|IX|niner|Nina from Carolina|ennead|digit|figure +(noun)|baseball club|ball club|club|baseball team +nine-banded armadillo|1 +(noun)|peba|Texas armadillo|Dasypus novemcinctus|armadillo +nine-membered|1 +(adj)|9-membered|membered +nine-spot|1 +(noun)|spot +nine iron|1 +(noun)|niblick|iron +nine times|1 +(adv)|ninefold +ninefold|2 +(adj)|nonuple|multiple +(adv)|nine times +ninepence|1 +(noun)|coin +ninepenny|1 +(adj)|sized +ninepin|1 +(noun)|skittle|skittle pin|bowling pin|pin +ninepin ball|1 +(noun)|skittle ball|ball +ninepins|2 +(noun)|skittles|bowling +(noun)|ninepin|skittle|skittle pin|bowling pin|pin +niner|1 +(noun)|nine|9|IX|Nina from Carolina|ennead|digit|figure +nineteen|2 +(adj)|19|xix|cardinal +(noun)|19|XIX|large integer +nineteenth|2 +(adj)|19th|ordinal +(noun)|rank +nineties|4 +(noun)|1890s|decade|decennary|decennium +(noun)|1990s|decade|decennary|decennium +(noun)|mid-nineties|time of life +(noun)|ninety|90|XC|large integer +ninetieth|2 +(adj)|90th|ordinal +(noun)|rank +ninety|2 +(adj)|90|xc|cardinal +(noun)|90|XC|large integer +ninety-eight|1 +(adj)|98|xcviii|cardinal +ninety-fifth|1 +(adj)|95th|ordinal +ninety-five|1 +(adj)|95|xcv|cardinal +ninety-four|1 +(adj)|94|xciv|cardinal +ninety-nine|1 +(adj)|99|ic|cardinal +ninety-one|1 +(adj)|91|xci|cardinal +ninety-seven|1 +(adj)|97|xcvii|cardinal +ninety-six|1 +(adj)|96|xcvi|cardinal +ninety-three|1 +(adj)|93|xciii|cardinal +ninety-two|1 +(adj)|92|xcii|cardinal +nineveh|1 +(noun)|Nineveh|city|metropolis|urban center +ningal|1 +(noun)|Ningal|Semitic deity +ningirsu|1 +(noun)|Ningirsu|Semitic deity +ningishzida|1 +(noun)|Ningishzida|Semitic deity +ninhursag|1 +(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity +ninib|1 +(noun)|Ninurta|Ninib|Semitic deity +ninigi|1 +(noun)|Ninigi|Ninigino-Mikoto|Japanese deity +ninigino-mikoto|1 +(noun)|Ninigi|Ninigino-Mikoto|Japanese deity +ninja|2 +(noun)|mercenary|soldier of fortune +(noun)|class|social class|socio-economic class +ninjitsu|1 +(noun)|ninjutsu|martial art +ninjutsu|1 +(noun)|ninjitsu|martial art +ninkharsag|1 +(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity +ninkhursag|1 +(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity +ninny|1 +(noun)|nincompoop|poop|simpleton|simple +ninon|1 +(noun)|fabric|cloth|material|textile +ninth|3 +(adj)|9th|ordinal +(noun)|rank +(noun)|one-ninth|common fraction|simple fraction +ninth cranial nerve|1 +(noun)|glossopharyngeal nerve|nervus glossopharyngeus|cranial nerve +ninth of ab|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +ninth of av|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +nintoo|1 +(noun)|Nintu|Nintoo|Semitic deity +nintu|1 +(noun)|Nintu|Nintoo|Semitic deity +ninurta|1 +(noun)|Ninurta|Ninib|Semitic deity +niobite|1 +(noun)|columbite|mineral +niobium|1 +(noun)|Nb|atomic number 41|metallic element|metal +niobrara|1 +(noun)|Niobrara|Niobrara River|river +niobrara river|1 +(noun)|Niobrara|Niobrara River|river +nip|8 +(noun)|shot|small indefinite quantity|small indefinite amount +(noun)|Jap|Nip|Japanese|Nipponese +(noun)|piquance|piquancy|tang|tanginess|zest|spiciness|spice|spicery +(noun)|sip|swallow|drink|deglutition +(noun)|pinch|bite|chomp +(verb)|pinch|squeeze|twinge|tweet|twitch|grip +(verb)|bite|seize with teeth +(verb)|nip off|clip|snip|snip off|cut +nip and tuck|3 +(adj)|neck and neck|head-to-head|inconclusive +(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|plastic surgery|reconstructive surgery|anaplasty +(adv)|neck and neck|head-to-head +nip off|1 +(verb)|nip|clip|snip|snip off|cut +nipa|2 +(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus|liliopsid genus +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +nipa fruticans|1 +(noun)|nipa palm|Nipa fruticans|palm|palm tree +nipa palm|1 +(noun)|Nipa fruticans|palm|palm tree +nipper|2 +(noun)|child|kid|youngster|minor|shaver|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +(noun)|claw|chela|pincer|extremity|appendage|member +nipping|2 +(adj)|barbed|biting|pungent|mordacious|sarcastic +(adj)|crisp|frosty|nippy|snappy|parky|cold +nipple|1 +(noun)|mammilla|mamilla|pap|teat|tit|reproductive organ|sex organ +nipple shield|1 +(noun)|shield +nippon|1 +(noun)|Japan|Nippon|Nihon|Asian country|Asian nation +nipponese|2 +(adj)|Japanese|Nipponese +(noun)|Japanese|Nipponese|Asian|Asiatic +nippy|1 +(adj)|crisp|frosty|nipping|snappy|parky|cold +nipr|1 +(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization|terrorist group|foreign terrorist organization|FTO +niqaabi|1 +(noun)|Muslimah +niqab|1 +(noun)|face veil +nirvana|2 +(noun)|Nirvana|enlightenment|blessedness|beatitude|beatification +(noun)|eden|paradise|heaven|promised land|Shangri-la|region|part +nisan|1 +(noun)|Nisan|Nissan|Jewish calendar month +nisi|1 +(adj)|inconclusive +nissan|1 +(noun)|Nisan|Nissan|Jewish calendar month +nissen hut|1 +(noun)|Nissen hut|Quonset hut|hut|army hut|field hut +nist|1 +(noun)|National Institute of Standards and Technology|NIST|agency|federal agency|government agency|bureau|office|authority +nisus|1 +(noun)|striving|pains|strain|attempt|effort|endeavor|endeavour|try +nit|2 +(noun)|luminance unit +(noun)|egg +nitella|1 +(noun)|Nitella|genus Nitella|protoctist genus +niter|1 +(noun)|potassium nitrate|saltpeter|saltpetre|nitre|nitrate +nitid|1 +(adj)|agleam|gleaming|bright +nitpick|1 +(verb)|knock|criticize|criticise|pick apart +nitpicker|1 +(noun)|critic +nitpicking|1 +(adj)|caviling|carping|pettifogging|quibbling|critical +nitrate|2 +(noun)|compound|chemical compound +(verb)|process|treat +nitrate bacterium|1 +(noun)|nitric bacterium|nitrobacterium +nitrazepam|1 +(noun)|benzodiazepine +nitre|1 +(noun)|potassium nitrate|saltpeter|saltpetre|niter|nitrate +nitric|1 +(adj)|azotic|nitrous|chemical element|element|gas +nitric acid|1 +(noun)|aqua fortis|acid +nitric bacteria|1 +(noun)|nitrobacteria|eubacteria|eubacterium|true bacteria +nitric bacterium|1 +(noun)|nitrate bacterium|nitrobacterium +nitric oxide|1 +(noun)|gas +nitride|1 +(noun)|compound|chemical compound +nitrification|2 +(noun)|chemical process|chemical change|chemical action +(noun)|oxidation|oxidization|oxidisation +nitrify|3 +(verb)|convert|change over +(verb)|nitrogenize|nitrogenise|process|treat +(verb)|fertilize|fertilise|feed +nitril|1 +(noun)|nitrile|cyanide|organic compound +nitrile|1 +(noun)|nitril|cyanide|organic compound +nitrite|1 +(noun)|group|radical|chemical group +nitrite bacterium|1 +(noun)|nitrous bacterium|nitrobacterium +nitro group|1 +(noun)|group|radical|chemical group +nitrobacter|1 +(noun)|Nitrobacter|genus Nitrobacter|bacteria genus +nitrobacteria|1 +(noun)|nitric bacteria|eubacteria|eubacterium|true bacteria +nitrobacteriaceae|1 +(noun)|Nitrobacteriaceae|family Nitrobacteriaceae|bacteria genus +nitrobacterium|1 +(noun)|bacteria|bacterium +nitrobenzene|1 +(noun)|organic compound +nitrocalcite|1 +(noun)|mineral +nitrocellulose|1 +(noun)|cellulose nitrate|guncotton|nitrocotton|cellulose ester|nitrate +nitrochloroform|1 +(noun)|chloropicrin|compound|chemical compound +nitrochloromethane|1 +(noun)|tear gas|teargas|lacrimator|lachrymator +nitrocotton|1 +(noun)|cellulose nitrate|nitrocellulose|guncotton|cellulose ester|nitrate +nitrofuran|1 +(noun)|furan|furane|furfuran +nitrofurantoin|1 +(noun)|Macrodantin|antibacterial|antibacterial drug|bactericide +nitrogen|1 +(noun)|N|atomic number 7|chemical element|element|gas +nitrogen balance|1 +(noun)|balance +nitrogen cycle|1 +(noun)|organic process|biological process +nitrogen dioxide|1 +(noun)|dioxide|gas +nitrogen fixation|1 +(noun)|organic process|biological process +nitrogen mustard|1 +(noun)|compound|chemical compound +nitrogen narcosis|1 +(noun)|narcosis +nitrogen oxide|1 +(noun)|oxide|pollutant +nitrogen trichloride|1 +(noun)|Agene|trichloride +nitrogenase|1 +(noun)|enzyme +nitrogenise|1 +(verb)|nitrify|nitrogenize|process|treat +nitrogenize|1 +(verb)|nitrify|nitrogenise|process|treat +nitrogenous|1 +(adj)|chemical element|element|gas +nitroglycerin|1 +(noun)|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +nitroglycerine|1 +(noun)|nitroglycerin|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +nitrohydrochloric acid|1 +(noun)|aqua regia|acid +nitrosobacteria|1 +(noun)|nitrous bacteria|eubacteria|eubacterium|true bacteria +nitrosomonas|1 +(noun)|Nitrosomonas|genus Nitrosomonas|bacteria genus +nitrospan|2 +(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +(noun)|Nitrospan|Nitrostat|vasodilator|vasodilative +nitrostat|2 +(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +(noun)|Nitrospan|Nitrostat|vasodilator|vasodilative +nitrous|1 +(adj)|azotic|nitric|chemical element|element|gas +nitrous acid|1 +(noun)|acid +nitrous bacteria|1 +(noun)|nitrosobacteria|eubacteria|eubacterium|true bacteria +nitrous bacterium|1 +(noun)|nitrite bacterium|nitrobacterium +nitrous oxide|1 +(noun)|laughing gas|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +nitta tree|1 +(noun)|tree +nitty-gritty|1 +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|content|cognitive content|mental object +nitweed|1 +(noun)|orange grass|pineweed|pine-weed|Hypericum gentianoides|St John's wort +nitwit|1 +(noun)|dimwit|half-wit|doofus|simpleton|simple +nitwitted|1 +(adj)|senseless|soft-witted|witless|stupid +nivose|1 +(noun)|Nivose|Revolutionary calendar month +nix|1 +(noun)|nothing|nil|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +nixon|1 +(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States|United States President|President|Chief Executive +nizhni novgorod|1 +(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city|metropolis|urban center +nizhnyi novgorod|1 +(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city|metropolis|urban center +nj|1 +(noun)|New Jersey|Garden State|NJ|American state +njord|1 +(noun)|Njord|Njorth|Norse deity +njorth|1 +(noun)|Njord|Njorth|Norse deity +nlp|1 +(noun)|natural language processing|NLP|human language technology|information science|informatics|information processing|IP +nm|2 +(noun)|nanometer|nanometre|millimicron|micromillimeter|micromillimetre|metric linear unit +(noun)|New Mexico|Land of Enchantment|NM|American state +nmr|1 +(noun)|nuclear magnetic resonance|NMR|proton magnetic resonance|magnetic resonance +nne|1 +(noun)|north northeast|nor'-nor'-east|NNE|compass point|point +nnrti|1 +(noun)|non-nucleoside reverse transcriptase inhibitor|NNRTI|reverse transcriptase inhibitor +nnw|1 +(noun)|north northwest|nor'-nor'-west|NNW|compass point|point +no|4 +(adj)|no |nary|none|zero +(noun)|negative +(noun)|nobelium|No|atomic number 102|chemical element|element +(adv)|no more +no-account|1 +(adj)|good-for-nothing|good-for-naught|meritless|no-count|no-good|sorry|worthless +no-brainer|1 +(noun)|undertaking|project|task|labor +no-count|1 +(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-good|sorry|worthless +no-frills|1 +(adj)|essential +no-go|1 +(adj)|no-go +no-go area|1 +(noun)|area|country +no-goal|1 +(noun)|goal|end +no-good|2 +(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-count|sorry|worthless +(adj)|rubber|bad +no-hit|1 +(adj)|successful +no-hit game|1 +(noun)|no-hitter|baseball|baseball game|ball +no-hitter|1 +(noun)|no-hit game|baseball|baseball game|ball +no-nonsense|1 +(adj)|direct +no-par-value stock|1 +(noun)|no-par stock|stock +no-par stock|1 +(noun)|no-par-value stock|stock +no-parking zone|1 +(noun)|space +no-see-um|1 +(noun)|punkie|punky|punkey|biting midge|gnat +no-show|2 +(noun)|guest +(noun)|nonattender|truant|wrongdoer|offender +no-win|1 +(adj)|unsuccessful +no-win situation|1 +(noun)|situation +no.|3 +(noun)|ordinal number|ordinal|number +(noun)|no|negative +(noun)|nobelium|No|atomic number 102|chemical element|element +no ball|1 +(noun)|bowling +no doubt|1 +(adv)|to be sure|without doubt +no end|1 +(adv)|without stopping +no fault automobile insurance|1 +(noun)|no fault insurance|automobile insurance|car insurance +no fault insurance|1 +(noun)|no fault automobile insurance|automobile insurance|car insurance +no longer|1 +(adv)|no more +no man's land|3 +(noun)|area|country +(noun)|land +(noun)|twilight zone|ambiguity|equivocalness +no matter|1 +(adv)|regardless|irrespective|disregardless|disregarding +no matter what happens|1 +(adv)|come hell or high water|whatever may come +no more|2 +(adv)|no longer +(adv)|no +noaa|1 +(noun)|National Oceanic and Atmospheric Administration|NOAA|agency|federal agency|government agency|bureau|office|authority +noah|1 +(noun)|Noah|patriarch +noah webster|1 +(noun)|Webster|Noah Webster|lexicographer|lexicologist +noam chomsky|1 +(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist|linguistic scientist +nob|1 +(noun)|toff|man of means|rich man|wealthy man +nob hill|1 +(noun)|Nob Hill|city district +nobble|4 +(verb)|victimize|swindle|rook|goldbrick|diddle|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|lift|steal +(verb)|kidnap|abduct|snatch|seize +(verb)|disable|disenable|incapacitate +nobel|1 +(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist|philanthropist|altruist +nobel laureate|1 +(noun)|Nobelist|Nobel Laureate|laureate +nobel prize|1 +(noun)|Nobel prize|award|accolade|honor|honour|laurels +nobelist|1 +(noun)|Nobelist|Nobel Laureate|laureate +nobelium|1 +(noun)|No|atomic number 102|chemical element|element +nobility|3 +(noun)|aristocracy|elite|elite group +(noun)|magnanimousness|grandeur|honorableness|honourableness +(noun)|noblesse|status|position +noble|6 +(adj)|solid|upstanding|worthy|honorable |honourable +(adj)|baronial|imposing|stately|impressive +(adj)|noble |aristocratic|aristocratical|blue|blue-blooded|gentle|patrician|august|grand|lordly|coroneted|highborn|titled|imperial|majestic|purple|regal|royal|kingly|kinglike|monarchal|monarchical|princely|queenly|queenlike|royal|patrician +(adj)|noble |dignifying|ennobling|exalted|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|greathearted|magnanimous|honorable|honourable +(adj)|unreactive +(noun)|Lord|nobleman|male aristocrat +noble-minded|1 +(adj)|exalted|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble +noble-mindedness|1 +(noun)|high-mindedness|idealism|nobility|magnanimousness|grandeur +noble cane|1 +(noun)|sugarcane|sugar cane|Saccharum officinarum +noble gas|1 +(noun)|inert gas|argonon|chemical element|element|gas +noble metal|1 +(noun)|metallic element|metal +nobleman|1 +(noun)|Lord|noble|male aristocrat +noblesse|2 +(noun)|nobility|status|position +(noun)|nobility|aristocracy +noblesse oblige|1 +(noun)|duty|responsibility|obligation +noblewoman|1 +(noun)|Lady|peeress|female aristocrat +nobody|1 +(noun)|cipher|cypher|nonentity|commoner|common man|common person +noc|1 +(noun)|NOC|secret agent|intelligence officer|intelligence agent|operative +nocent|1 +(adj)|harmful +nociceptive|1 +(adj)|sensitive +nock|1 +(verb)|score|mark|notch +noctambulation|1 +(noun)|sleepwalking|somnambulism|somnambulation|noctambulism|sleeping|walk|walking +noctambulism|1 +(noun)|sleepwalking|somnambulism|somnambulation|noctambulation|sleeping|walk|walking +noctambulist|1 +(noun)|sleepwalker|somnambulist|sleeper|slumberer +noctiluca|1 +(noun)|Noctiluca miliaris|dinoflagellate +noctiluca miliaris|1 +(noun)|noctiluca|Noctiluca miliaris|dinoflagellate +noctilucent|1 +(adj)|bright +noctua|1 +(noun)|Noctua|genus Noctua|arthropod genus +noctuid|1 +(noun)|noctuid moth|owlet moth|moth +noctuid moth|1 +(noun)|noctuid|owlet moth|moth +noctuidae|1 +(noun)|Noctuidae|family Noctuidae|arthropod family +nocturia|1 +(noun)|nycturia|micturition|urination +nocturnal|3 +(adj)|nocturnal |nighttime +(adj)|time period|period of time|period +(adj)|nighttime +nocturnal emission|1 +(noun)|ejaculation +nocturne|1 +(noun)|musical composition|opus|composition|piece|piece of music +nod|6 +(noun)|gesture|motion +(noun)|inclination|inclining +(verb)|gesticulate|gesture|motion +(verb)|communicate|intercommunicate +(verb)|move +(verb)|drowse +nod off|1 +(verb)|fall asleep|dope off|flake out|drift off|drop off|doze off|drowse off +nodal rhythm|1 +(noun)|atrioventricular nodal rhythm|cardiac rhythm|heart rhythm +nodding|1 +(adj)|cernuous|drooping|pendulous|unerect +nodding groundsel|1 +(noun)|Senecio bigelovii|wildflower|wild flower +nodding onion|1 +(noun)|nodding wild onion|lady's leek|Allium cernuum|wild onion +nodding thistle|1 +(noun)|musk thistle|Carduus nutans|thistle +nodding wild onion|1 +(noun)|nodding onion|lady's leek|Allium cernuum|wild onion +noddle|1 +(noun)|mind|head|brain|psyche|nous +node|7 +(noun)|connection|connexion|link +(noun)|knob|thickening|convex shape|convexity +(noun)|point +(noun)|celestial point +(noun)|lymph node|lymph gland|lymphatic tissue|lymphoid tissue +(noun)|solid body substance +(noun)|client|guest|computer|computing machine|computing device|data processor|electronic computer|information processing system +nodes of ranvier|1 +(noun)|Ranvier's nodes|nodes of Ranvier|opening|gap +nodular|2 +(adj)|node +(adj)|nodulated|noduled|unshapely +nodulated|1 +(adj)|nodular|noduled|unshapely +nodule|3 +(noun)|node +(noun)|tubercle|plant process|enation +(noun)|hunk|lump +noduled|1 +(adj)|nodular|nodulated|unshapely +nodulose|1 +(adj)|unshapely +noel|1 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +noel coward|1 +(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist|playwright|actor|histrion|player|thespian|role player|composer +noemi|1 +(noun)|Naomi|Noemi|mother-in-law +noesis|1 +(noun)|cognition|knowledge|psychological feature +noether|1 +(noun)|Noether|Emmy Noether|mathematician +noetic|1 +(adj)|intellectual|rational|mental +nog|2 +(noun)|peg|pin +(noun)|block +nogales|2 +(noun)|Nogales|town|port of entry|point of entry +(noun)|Nogales|town +noggin|1 +(noun)|attic|bean|bonce|noodle|dome|human head +nogging|1 +(noun)|brickwork +noguchi|2 +(noun)|Noguchi|Isamu Noguchi|sculptor|sculpturer|carver|statue maker +(noun)|Noguchi|Hideyo Noguchi|bacteriologist +nohow|1 +(adv)|in no way +noise|7 +(noun)|sound +(noun)|dissonance|racket|sound|auditory sensation +(noun)|interference|disturbance|trouble +(noun)|cry|outcry|call|yell|shout|vociferation +(noun)|incomprehensibility +(noun)|randomness|haphazardness|stochasticity|irregularity|unregularity +(verb)|make noise|resound|sound|go +noise conditions|1 +(noun)|condition|status +noise level|1 +(noun)|background level|amplitude +noise pollution|1 +(noun)|sound pollution|pollution +noiseless|1 +(adj)|quiet +noiselessly|1 +(adv)|soundlessly +noiselessness|1 +(noun)|quietness|soundlessness +noisemaker|1 +(noun)|device +noisiness|1 +(noun)|racketiness|sound +noisome|2 +(adj)|nauseating|nauseous|loathsome|offensive|sickening|vile|unwholesome +(adj)|fetid|foetid|foul|foul-smelling|funky|smelly|putrid|stinking|malodorous |malodourous +noisomeness|1 +(noun)|harmfulness|noxiousness|unwholesomeness|morbidness|morbidity +noisy|1 +(adj)|noisy |blatant|clamant|clamorous|strident|vociferous|abuzz|buzzing|droning|clangorous|clanging|clattering|clattery|creaking|creaky|screaky|crying|howling|yelling|shouting|hissing|rackety|rip-roaring|uproarious|reedy|wheezy|screaming|screeching|shrieking|stertorous|swishing|swishy|whining|whirring|clanking|spluttering|sputtering|thundering|cacophonous|cacophonic|loud +nol. pros.|1 +(verb)|nolle prosequi|nolle pros|announce|declare +nol pros|1 +(noun)|nolle prosequi|entry +noli-me-tangere|1 +(noun)|ulcer|ulceration +nolina|1 +(noun)|Nolina|genus Nolina|liliid monocot genus +nolina microcarpa|1 +(noun)|bear grass|Nolina microcarpa|agave|century plant|American aloe +nolle pros|2 +(verb)|nolle prosequi|nol. pros.|announce|declare +(verb)|drop|knock off +nolle prosequi|2 +(noun)|nol pros|entry +(verb)|nolle pros|nol. pros.|announce|declare +nolo contendere|1 +(noun)|non vult|answer +nom de guerre|1 +(noun)|pseudonym|anonym|name +nom de plume|1 +(noun)|pen name|pseudonym|anonym|nom de guerre +noma|1 +(noun)|ulcer|ulceration +nomad|1 +(noun)|wanderer|roamer|rover|bird of passage +nomadic|1 +(adj)|mobile|peregrine|roving|wandering|unsettled +nombril|1 +(noun)|center|centre|midpoint +nome|1 +(noun)|Nome|town +nomenclature|1 +(noun)|terminology|language|word +nomenklatura|1 +(noun)|patronage +nomia|1 +(noun)|genus Nomia|arthropod genus +nomia melanderi|1 +(noun)|Nomia melanderi|alkali bee|bee +nominal|6 +(adj)|language unit|linguistic unit +(adj)|token|tokenish|minimal +(adj)|major form class +(adj)|nominal +(adj)|nominative|specified +(adj)|titular|formal +nominal aphasia|1 +(noun)|anomic aphasia|anomia|amnesic aphasia|amnestic aphasia|aphasia +nominal damages|1 +(noun)|damages|amends|indemnity|indemnification|restitution|redress +nominal head|1 +(noun)|front man|front|figurehead|straw man|strawman|deceiver|cheat|cheater|trickster|beguiler|slicker +nominal value|1 +(noun)|par value|face value|value +nominalism|1 +(noun)|philosophical doctrine|philosophical theory +nominalistic|1 +(adj)|philosophical doctrine|philosophical theory +nominate|4 +(verb)|put up|put forward|propose +(verb)|propose|choose|take|select|pick out +(verb)|name|make|appoint|charge +(verb)|appoint|name|constitute|establish|found|plant|constitute|institute +nominated|1 +(adj)|nominative|appointive |appointed +nominating address|1 +(noun)|nominating speech|nomination|oratory +nominating speech|1 +(noun)|nominating address|nomination|oratory +nomination|3 +(noun)|appointment|assignment|designation|naming +(noun)|condition|status +(noun)|nominating speech|nominating address|oratory +nominative|4 +(adj)|case|grammatical case +(adj)|nominal|specified +(adj)|nominated|appointive |appointed +(noun)|nominative case|subject case|case|grammatical case +nominative case|1 +(noun)|nominative|subject case|case|grammatical case +nominator|1 +(noun)|proposer|mover +nominee|1 +(noun)|campaigner|candidate|politician|politico|pol|political leader +nomogram|1 +(noun)|nomograph|representation +nomograph|1 +(noun)|nomogram|representation +nomothetic|1 +(adj)|nomothetic +non-automatic|1 +(adj)|hand-operated|manual +non-catholic|1 +(noun)|non-Catholic|religionist|religious person +non-christian priest|1 +(noun)|priest|non-Christian priest|spiritual leader +non-circular|1 +(adj)|ellipsoid|ellipsoidal|spheroidal|rounded +non-dedicated file server|1 +(noun)|file server +non-discrimination|1 +(noun)|fairness|equity +non-engagement|1 +(noun)|nonparticipation|non-involvement|group action +non-euclidean geometry|1 +(noun)|non-Euclidean geometry|geometry +non-finite|1 +(adj)|infinite |infinitive +non-insulin-dependent diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +non-insulin-dependent diabetes mellitus|1 +(noun)|type II diabetes|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +non-invertible|1 +(adj)|non-invertible +non-involvement|1 +(noun)|non-engagement|nonparticipation|group action +non-ionic detergent|1 +(noun)|anionic detergent|anionic|detergent +non-issue|1 +(noun)|dead letter|state +non-jew|1 +(noun)|Gentile|non-Jew|goy|Christian +non-market economy|1 +(noun)|economy|economic system +non-nucleoside reverse transcriptase inhibitor|1 +(noun)|NNRTI|reverse transcriptase inhibitor +non-profit-making|1 +(adj)|nonprofit|noncommercial +non-proliferation|2 +(noun)|nonproliferation|prevention|bar +(noun)| +non-resinous|2 +(adj)|nonresinous|nonresiny|non-resiny|nonadhesive +(adj)| +non-resiny|2 +(adj)|nonresinous|non-resinous|nonresiny|nonadhesive +(adj)| +non-resistant|1 +(noun)|passive resister|reformer|reformist|crusader|meliorist +non-standard speech|1 +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +non-u|1 +(adj)|non-U|lower-class |low-class +non-ugric|1 +(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric|Finno-Ugrian +non-volatile storage|1 +(noun)|nonvolatile storage|memory|computer memory|storage|computer storage|store|memory board +non compos mentis|1 +(adj)|of unsound mind|insane +non pros|1 +(noun)|non prosequitur|judgment|judgement|judicial decision +non prosequitur|1 +(noun)|non pros|judgment|judgement|judicial decision +non sequitur|2 +(noun)|reply|response +(noun)|conclusion +non vult|1 +(noun)|nolo contendere|answer +nona|1 +(noun)|Nona|Roman deity +nonabsorbency|1 +(noun)|impermeability|impermeableness +nonabsorbent|1 +(adj)|nonabsorbent |nonabsorptive|repellent|resistant +nonabsorptive|1 +(adj)|nonabsorbent |repellent|resistant +nonacceptance|1 +(noun)|turndown|rejection +nonaccomplishment|1 +(noun)|nonachievement|act|human action|human activity +nonachievement|1 +(noun)|nonaccomplishment|act|human action|human activity +nonachiever|1 +(noun)|underachiever|underperformer|student|pupil|educatee +nonadaptive|1 +(adj)|dysfunctional|maladaptive +nonaddictive|1 +(adj)|nonaddictive +nonadhesive|1 +(adj)|nonadhesive |nonglutinous|nonviscid|nonresinous|non-resinous|nonresiny|non-resiny|ungummed +nonadjacent|1 +(adj)|distant +nonadsorbent|1 +(adj)|nonadsorbent |nonadsorptive +nonadsorptive|1 +(adj)|nonadsorbent +nonage|1 +(noun)|minority|age|eld|legal status +nonaged|1 +(adj)|minor |underage +nonagenarian|2 +(adj)|old +(noun)|oldster|old person|senior citizen|golden ager +nonaggression|1 +(noun)|foreign policy +nonaggressive|1 +(adj)|unaggressive |low-pressure|peaceful|unassertive +nonagon|1 +(noun)|polygon|polygonal shape +nonalcoholic|1 +(adj)|nonalcoholic |soft +nonaligned|1 +(adj)|nonaligned |neutral +nonalignment|1 +(noun)|nonalinement|social group +nonalinement|1 +(noun)|nonalignment|social group +nonallele|1 +(noun)|gene|cistron|factor +nonappearance|1 +(noun)|nonattendance +nonappointive|1 +(adj)|elective |elected +nonarbitrable|1 +(adj)|nonarbitrable +nonarbitrary|1 +(adj)|nonarbitrary |unarbitrary|prescribed +nonarboreal|1 +(adj)|nonarboreal +nonassertive|1 +(adj)|unassertive +nonassociative|1 +(adj)|nonassociative +nonastringent|1 +(adj)|nonastringent +nonattendance|1 +(noun)|group action +nonattender|1 +(noun)|no-show|truant|wrongdoer|offender +nonautonomous|1 +(adj)|nonsovereign|unfree +nonbearing|1 +(adj)|nonbearing |dividing +nonbeing|1 +(noun)|state +nonbeliever|1 +(noun)|disbeliever|unbeliever|nonreligious person +nonbelligerent|1 +(adj)|peaceful +nonbiodegradable pollution|1 +(noun)|pollution +noncallable bond|1 +(noun)|bond|bond certificate +noncaloric|1 +(adj)|work unit|heat unit|energy unit +noncandidate|1 +(noun)|politician|politico|pol|political leader +noncarbonated|1 +(adj)|uncarbonated|noneffervescent +noncausal|1 +(adj)|noncausative +noncausative|1 +(adj)|noncausative |noncausal +nonce|1 +(noun)|time being|present|nowadays +nonce word|1 +(noun)|hapax legomenon|word +noncellular|1 +(adj)|noncellular |acellular|cell-free|single-celled|one-celled +nonchalance|1 +(noun)|unconcern|indifference|carefreeness +nonchalant|1 +(adj)|casual|insouciant|unconcerned +nonchalantly|2 +(adv)|coolly|nervelessly +(adv)|casually +nonchristian|1 +(adj)|christless|unchristian +nonchurchgoing|1 +(adj)|lapsed|irreligious +noncitizen|1 +(noun)|foreigner|alien|outlander|traveler|traveller +noncivilised|1 +(adj)|noncivilized |barbarian|barbaric|savage|uncivilized|uncivilised|wild|barbarous|preliterate|nonliterate|primitive|uneducated +noncivilized|1 +(adj)|noncivilized |noncivilised|barbarian|barbaric|savage|uncivilized|uncivilised|wild|barbarous|preliterate|nonliterate|primitive|uneducated +nonclassical|1 +(adj)|nonclassical |modern|popular|pop +noncollapsable|1 +(adj)|noncollapsible |nontelescopic|nontelescoping +noncollapsible|1 +(adj)|noncollapsible |noncollapsable|nontelescopic|nontelescoping +noncolumned|1 +(adj)|noncolumned |uncolumned|astylar|unpillared +noncom|1 +(noun)|noncommissioned officer|military officer|officer +noncombatant|3 +(adj)|civilian +(adj)|military +(noun)|serviceman|military man|man|military personnel +noncombinative|1 +(adj)|noncombinative |noncombining +noncombining|1 +(adj)|noncombinative +noncombustible|1 +(adj)|noncombustible |incombustible|fireproof|fire-retardant|fire-resistant|fire-resisting|fire-resistive|flameproof|flame-retardant|nonflammable +noncommercial|1 +(adj)|noncommercial |nonprofit|non-profit-making|uncommercial|uncommercialized|uncommercialised +noncommissioned|1 +(adj)|noncommissioned |enlisted +noncommissioned officer|1 +(noun)|noncom|military officer|officer +noncommital|1 +(adj)|undogmatic|undogmatical|agnostic |agnostical +noncommittal|1 +(adj)|guarded|unrevealing|uncommunicative |incommunicative +noncommunicable|1 +(adj)|noncontagious|nontransmissible|noninfectious +noncompetitive|1 +(adj)|noncompetitive |accommodative|cooperative|monopolistic|uncompetitive +noncompliance|1 +(noun)|disobedience|insubordination|rebelliousness +noncompliant|2 +(adj)|defiant |insubordinate|resistant|resistive|obstreperous|recalcitrant|disobedient|insubordinate|intractable|unmanageable|unwilling +(noun)|balker|baulker|person|individual|someone|somebody|mortal|human|soul +noncomprehensive|1 +(adj)|noncomprehensive |incomprehensive|limited +nonconcentric|1 +(adj)|eccentric |acentric|off-center|off-centered +nonconducting|1 +(adj)|nonconductive +nonconductive|1 +(adj)|nonconductive |nonconducting +nonconductor|1 +(noun)|insulator|dielectric|material|stuff +nonconformance|1 +(noun)|nonconformity|unorthodoxy|heterodoxy|heresy +nonconforming|1 +(adj)|nonconformist|unorthodox +nonconformist|4 +(adj)|nonconformist |unconformist +(adj)|nonconforming|unorthodox +(noun)|Nonconformist|chapelgoer|Protestant +(noun)|recusant|dissenter|dissident|protester|objector|contestant +nonconformity|4 +(noun)|disagreement +(noun)|nonconformance|unorthodoxy|heterodoxy|heresy +(noun)|unorthodoxy|heterodoxy +(noun)|failure +nonconscious|2 +(adj)|unconscious +(adj)|inanimate |nonliving|dead +noncontagious|1 +(adj)|noncommunicable|nontransmissible|noninfectious +noncontentious|1 +(adj)|unargumentative +noncontinuous|1 +(adj)|discontinuous |disjunct|disrupted|sporadic|broken +noncontroversial|1 +(adj)|uncontroversial |accepted|undisputed|agreed upon|stipulatory +nonconvergent|1 +(adj)|nonintersecting|parallel +noncritical|3 +(adj)|noncritical +(adj)|noncritical |noncrucial|acritical +(adj)|uncritical |unscholarly +noncrucial|2 +(adj)|noncrucial +(adj)|noncritical |acritical +noncrystalline|1 +(adj)|noncrystalline |amorphous|uncrystallized|uncrystallised +noncurrent|1 +(adj)|noncurrent |back|dead|disused|obsolete|obsolete|outdated|out-of-date|superannuated|obsolescent|old|past +noncyclic|2 +(adj)|noncyclic |noncyclical +(adj)|aperiodic |nonperiodic +noncyclical|1 +(adj)|noncyclic +nondeductible|1 +(adj)|nondeductible +nondenominational|1 +(adj)|nonsectarian |unsectarian +nondepository financial institution|1 +(noun)|financial institution|financial organization|financial organisation +nondescript|2 +(adj)|characterless|ordinary +(noun)|person|individual|someone|somebody|mortal|human|soul +nondevelopment|1 +(noun)|organic process|biological process +nondigestible|1 +(adj)|indigestible +nondirectional antenna|1 +(noun)|omnidirectional antenna|antenna|aerial|transmitting aerial +nondiscretionary trust|1 +(noun)|fixed investment trust|investment company|investment trust|investment firm|fund +nondisjunction|1 +(noun)|meiosis|miosis|reduction division +nondisposable|2 +(adj)|nondisposable |frozen +(adj)|nondisposable |reusable +nondrinker|1 +(noun)|abstainer|abstinent|person|individual|someone|somebody|mortal|human|soul +nondriver|1 +(noun)|pedestrian|walker|footer +nondurable|1 +(adj)|unserviceable +none|3 +(adj)|no +(noun)|hour|time of day +(noun)|service|religious service|divine service +nonechoic|1 +(adj)|nonechoic +noneffervescent|2 +(adj)|still +(adj)|noneffervescent |flat|noncarbonated|uncarbonated +nonelective|1 +(adj)|appointive |appointed +nonenterprising|1 +(adj)|unenterprising |slowgoing|unenergetic|unadventurous|unambitious|ambitionless +nonentity|3 +(noun)|nonexistence|nonbeing +(noun)|cipher|cypher|nobody|commoner|common man|common person +(noun)|nothing|thing +nonenzymatic|1 +(adj)|protein|catalyst|accelerator +nonequivalence|1 +(noun)|inequality +nonequivalent|1 +(adj)|unequal +nones|3 +(noun)|canonical hour +(noun)|none|hour|time of day +(noun)|none|service|religious service|divine service +nonessential|2 +(adj)|incidental|inessential |unessential +(noun)|inessential|thing +nonesuch|1 +(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonsuch|model|role model +nonesuch clover|1 +(noun)|black medick|hop clover|yellow trefoil|Medicago lupulina|medic|medick|trefoil +nonetheless|1 +(adv)|however|nevertheless|withal|still|yet|all the same|even so|notwithstanding +nonevent|1 +(noun)|event +nonexempt|2 +(adj)|taxable |assessable|dutiable|ratable|rateable|subject +(adj)|nonexempt |liable|taxpaying|unexcused +nonexistence|1 +(noun)|nonentity|nonbeing +nonexistent|2 +(adj)|nonexistent |nonextant|vanished|extinct|inactive +(adj)|lacking|missing|wanting|absent +nonexplorative|1 +(adj)|nonexploratory |unexploratory|unexplorative +nonexploratory|1 +(adj)|nonexploratory |nonexplorative|unexploratory|unexplorative +nonexplosive|1 +(adj)|nonexplosive +nonextant|2 +(adj)|extinct |dead|nonexistent +(adj)|nonexistent +nonextensile|1 +(adj)|nonextensile |inextensible|nonprotractile +nonfat|1 +(adj)|nonfat |fat-free|fatless|light|lite|low-cal|skim|skimmed +nonfat dry milk|1 +(noun)|powdered milk|dry milk|dried milk|milk powder +nonfatal|1 +(adj)|nonfatal |nonlethal +nonfeasance|1 +(noun)|dereliction +nonfiction|1 +(noun)|nonfictional prose|prose +nonfictional|1 +(adj)|nonfictional |prose +nonfictional prose|1 +(noun)|nonfiction|prose +nonfigurative|1 +(adj)|abstract|abstractionist|nonobjective|nonrepresentational +nonfinancial|1 +(adj)|nonfinancial |commercial enterprise|business enterprise|business +nonfissile|1 +(adj)|nonfissile +nonfissionable|1 +(adj)|nonfissionable +nonflammable|1 +(adj)|noncombustible |incombustible +nonflavored|1 +(adj)|unflavored|unflavoured|nonflavoured|tasteless +nonflavoured|1 +(adj)|unflavored|unflavoured|nonflavored|tasteless +nonflowering plant|1 +(noun)|pteridophyte|vascular plant|tracheophyte +nonfluent aphasia|1 +(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|expressive aphasia|aphasia +nonfunctional|2 +(adj)|nonfunctional |cosmetic|decorative|ornamental|nonstructural|unserviceable +(adj)|malfunctioning |amiss|awry|haywire|wrong|bad|defective|dead|run-down|out of whack +nonglutinous|1 +(adj)|nonviscid|nonadhesive +nongonococcal urethritis|1 +(noun)|NGU|urethritis +nongovernmental organization|1 +(noun)|NGO|organization|organisation +nongranular|1 +(adj)|fine +nongregarious|1 +(adj)|nonsocial|solitary|ungregarious +nonhairy|1 +(adj)|hairless +nonharmonic|1 +(adj)|nonharmonic |music +nonhereditary|1 +(adj)|nontransmissible|noninheritable |nonheritable +nonheritable|1 +(adj)|noninheritable |acquired|congenital|inborn|innate|inherent|learned|nonhereditary|nontransmissible|nurtural +nonhierarchic|1 +(adj)|nonhierarchical |ungraded|unordered|unranked +nonhierarchical|1 +(adj)|nonhierarchical |nonhierarchic|ungraded|unordered|unranked +nonhuman|1 +(adj)|nonhuman |anthropoid|anthropoidal|apelike|bloodless|dehumanized|dehumanised|unhuman|mechanical|mechanistic|inhuman +nonimitative|1 +(adj)|nonimitative +nonimmune|1 +(adj)|liable|nonresistant|unresistant|susceptible +nonindulgence|1 +(noun)|austerity|asceticism|self-discipline|self-denial +nonindulgent|2 +(adj)|nonindulgent |austere|stern|blue|puritan|puritanic|puritanical|corrective|disciplinary|disciplinal|monkish|renunciant|renunciative|self-abnegating|self-denying|self-disciplined|severe|spartan|strict|abstemious +(adj)|strict|unpermissive +nonindustrial|1 +(adj)|nonindustrial |developing|underdeveloped|unindustrialized|unindustrialised +noninfectious|1 +(adj)|noninfectious |noncommunicable|noncontagious|nontransmissible +noninflammatory|1 +(adj)|unprovocative |unprovoking +noninheritable|1 +(adj)|noninheritable |nonheritable|acquired|congenital|inborn|innate|inherent|learned|nonhereditary|nontransmissible|nurtural +noninstitutional|1 +(adj)|noninstitutional +noninstitutionalised|1 +(adj)|noninstitutionalized +noninstitutionalized|1 +(adj)|noninstitutionalized |noninstitutionalised +nonintegrated|1 +(adj)|nonintegrated |unintegrated +nonintellectual|1 +(adj)|nonintellectual |anti-intellectual|philistine|lowbrow|lowbrowed|uncultivated|mindless|unscholarly +noninterchangeable|1 +(adj)|asymmetrical |asymmetric +noninterference|1 +(noun)|nonintervention|foreign policy +nonintersecting|1 +(adj)|nonconvergent|parallel +nonintervention|1 +(noun)|noninterference|foreign policy +noninvasive|1 +(adj)|noninvasive +nonionic|2 +(adj)|nonionized |nonionised|unionized|unionised +(adj)|nonionic |nonpolar|particle +nonionised|1 +(adj)|nonionized |unionized|unionised|nonionic +nonionized|1 +(adj)|nonionized |nonionised|unionized|unionised|nonionic +nonjudgmental|1 +(adj)|nonjudgmental +nonkosher|1 +(adj)|tref|terefah|unclean |impure +nonleaded|1 +(adj)|lead-free|unleaded |leadless +nonlegal|1 +(adj)|extralegal|illegal +nonlethal|1 +(adj)|nonfatal +nonlexical|1 +(adj)|language unit|linguistic unit +nonlinear|1 +(adj)|nonlinear +nonlinear correlation|1 +(noun)|curvilinear correlation|skew correlation|correlation|correlational statistics +nonlinear distortion|1 +(noun)|amplitude distortion|distortion +nonlinear system|1 +(noun)|system|scheme +nonlinguistic|1 +(adj)|nonlinguistic |communication +nonliteral|1 +(adj)|figurative |analogical|extended|metaphorical|metaphoric|metonymic|metonymical|poetic|synecdochic|synecdochical|tropical|rhetorical +nonliterary|1 +(adj)|unliterary|informal +nonliterate|1 +(adj)|preliterate|noncivilized |noncivilised +nonliving|1 +(adj)|inanimate |dead|nonconscious +nonmagnetic|1 +(adj)|nonmagnetic +nonmalignant|1 +(adj)|harmless|benign |benignant +nonmalignant neoplasm|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|tumor|tumour|neoplasm +nonmalignant tumor|1 +(noun)|benign tumor|benign tumour|nonmalignant tumour|nonmalignant neoplasm|tumor|tumour|neoplasm +nonmalignant tumour|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant neoplasm|tumor|tumour|neoplasm +nonmandatory|1 +(adj)|nonobligatory|optional +nonmaterial|1 +(adj)|immaterial |intangible|nonphysical|insubstantial|unsubstantial|unreal +nonmeaningful|1 +(adj)|meaningless |empty|hollow|vacuous|insignificant|unmeaning|mindless|nonsense|nonsensical|pointless|purposeless|senseless|insignificant|unimportant|purposeless|unimportant +nonmechanical|2 +(adj)|nonmechanical |nonmechanistic|unmechanized|unmechanised +(adj)|unmechanical|maladroit +nonmechanistic|1 +(adj)|nonmechanical +nonmedicinal|1 +(adj)|unmedicinal|unmedicative|unmedical|unhealthful +nonmember|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +nonmetal|2 +(adj)|nonmetallic |metalloid +(noun)|chemical element|element +nonmetallic|1 +(adj)|nonmetallic |nonmetal|metalloid +nonmetamorphic|1 +(adj)|nonmetamorphic |ametabolic +nonmigratory|1 +(adj)|nonmigratory |resident +nonmilitary|1 +(adj)|unmilitary |unsoldierly +nonmodern|1 +(adj)|nonmodern |antebellum|horse-and-buggy|medieval|mediaeval|gothic|old-world|Victorian|old|past +nonmonotonic|1 +(adj)|nonmonotonic +nonmoral|1 +(adj)|amoral |unmoral +nonmotile|1 +(adj)|immotile|immobile +nonmoving|1 +(adj)|nonmoving |unmoving|becalmed|frozen|rooted|stock-still|inert|sitting|stationary|inactive|motionless|static|still|fixed|set|rigid|immobile +nonmusical|2 +(adj)|unmusical +(adj)|unmusical |dissonant +nonnative|3 +(adj)|nonnative +(adj)|foreign-born|foreign +(adj)|foreign +nonnatural|1 +(adj)|otherworldly|preternatural|transcendental|supernatural +nonnegative|1 +(adj)|plus +nonnomadic|1 +(adj)|settled +nonnormative|1 +(adj)|nonstandard +nonobjective|1 +(adj)|abstract|abstractionist|nonfigurative|nonrepresentational +nonobligatory|1 +(adj)|nonmandatory|optional +nonobservance|1 +(noun)|nonconformity +nonobservant|1 +(adj)|irreligious +nonoccurrence|1 +(noun)|absence +nonopening|1 +(adj)|closed +nonoperational|1 +(adj)|nonoperational |inactive|reserve +nonoscillatory|1 +(adj)|aperiodic |nonperiodic +nonparallel|2 +(adj)|serial|in series|asynchronous +(adj)|oblique +nonparametric|1 +(adj)|statistic +nonparametric statistic|1 +(noun)|distribution free statistic|statistic +nonparametric statistics|2 +(noun)|statistics +(noun)|nonparametric statistic|distribution free statistic|statistic +nonparasitic|1 +(adj)|free-living|nonsymbiotic|independent +nonpareil|4 +(adj)|matchless|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +(noun)|ideal|paragon|saint|apotheosis|nonesuch|nonsuch|model|role model +(noun)|sweet|confection|confectionery +(noun)|chocolate candy +nonparticipant|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +nonparticipation|1 +(noun)|non-engagement|non-involvement|group action +nonparticulate|1 +(adj)|nonparticulate +nonparticulate radiation|1 +(noun)|electromagnetic radiation|electromagnetic wave|radiation +nonpartisan|1 +(adj)|nonpartisan |nonpartizan|bipartisan|bipartizan|two-party|two-way|independent|unbiased|unbiassed +nonpartisanship|1 +(noun)|impartiality|inclination|disposition|tendency +nonpartizan|1 +(adj)|nonpartisan |bipartisan|bipartizan|two-party|two-way|independent|unbiased|unbiassed +nonpasserine|1 +(adj)|nonpasserine |bird +nonpasserine bird|1 +(noun)|bird +nonpayment|3 +(noun)|default|nonremittal|failure +(noun)|default|nonremittal|financial loss +(noun)|evasion|commerce|commercialism|mercantilism +nonperformance|1 +(noun)|negligence|carelessness|neglect|nonaccomplishment|nonachievement +nonperiodic|1 +(adj)|aperiodic |noncyclic|nonoscillatory +nonperson|1 +(noun)|unperson|person|individual|someone|somebody|mortal|human|soul +nonpersonal|1 +(adj)|impersonal +nonphilosophic|1 +(adj)|nonphilosophical +nonphilosophical|1 +(adj)|nonphilosophical |nonphilosophic +nonphotosynthetic|1 +(adj)|nonphotosynthetic |chemical process|chemical change|chemical action +nonphysical|1 +(adj)|intangible|immaterial |nonmaterial +nonplus|1 +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +nonplused|1 +(adj)|at a loss|nonplussed|puzzled|perplexed +nonplussed|1 +(adj)|at a loss|nonplused|puzzled|perplexed +nonpoisonous|2 +(adj)|nontoxic |atoxic +(adj)|nontoxic|edible |comestible|eatable +nonpolar|1 +(adj)|nonionic +nonpolitical|1 +(adj)|nonpolitical |apolitical|unpolitical +nonporous|1 +(adj)|nonporous +nonpregnant|1 +(adj)|nonpregnant +nonprehensile|1 +(adj)|nonprehensile +nonprescription|1 +(adj)|nonprescription +nonproductive|1 +(adj)|unproductive +nonprofessional|1 +(adj)|nonprofessional |amateur|recreational|unpaid|lay +nonprofit|1 +(adj)|non-profit-making|noncommercial +nonprognosticative|1 +(adj)|unprophetic +nonprogressive|1 +(adj)|fusty|standpat|unprogressive|conservative +nonproliferation|1 +(noun)|non-proliferation|prevention|bar +nonproliferation center|1 +(noun)|Nonproliferation Center|NPC|agency|federal agency|government agency|bureau|office|authority +nonproprietary|1 +(adj)|nonproprietary |generic|unpatented +nonprotractile|1 +(adj)|nonextensile |inextensible +nonpsychoactive|1 +(adj)|nonpsychoactive +nonpublic|1 +(adj)|private +nonpurulent|1 +(adj)|antiseptic +nonracial|1 +(adj)|nonracial +nonracist|1 +(adj)|color-blind|colour-blind|unprejudiced |impartial +nonradioactive|1 +(adj)|nonradioactive +nonrandom|1 +(adj)|nonrandom |orderly|systematic|purposive +nonrapid eye movement|1 +(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|NREM|sleep|slumber +nonrapid eye movement sleep|1 +(noun)|orthodox sleep|NREM sleep|nonrapid eye movement|NREM|sleep|slumber +nonrational|2 +(adj)|irrational +(adj)|intuitive|visceral|illogical |unlogical +nonreader|2 +(noun)|student|pupil|educatee +(noun)|illiterate|illiterate person|ignoramus|know nothing|uneducated person +nonreciprocal|1 +(adj)|nonreciprocal |nonreciprocating|unanswered|unreciprocated|unrequited +nonreciprocating|1 +(adj)|nonreciprocal +nonrecreational|1 +(adj)|paid|professional +nonreflecting|1 +(adj)|nonreflective |echoless +nonreflective|1 +(adj)|nonreflective |nonreflecting|echoless +nonreligious person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +nonremittal|2 +(noun)|default|nonpayment|failure +(noun)|nonpayment|default|financial loss +nonrenewable|1 +(adj)|unrenewable +nonrepresentational|1 +(adj)|nonrepresentational |abstract|abstractionist|nonfigurative|nonobjective|conventional|formal|schematic|geometric|geometrical|hieratic|protogeometric|semiabstract|abstract +nonrepresentative|1 +(adj)|nonrepresentative |unsymbolic +nonresident|1 +(adj)|nonresident +nonresidential|1 +(adj)|nonresidential +nonresilient|1 +(adj)|inelastic +nonresinous|1 +(adj)|non-resinous|nonresiny|non-resiny|nonadhesive +nonresiny|1 +(adj)|nonresinous|non-resinous|non-resiny|nonadhesive +nonresistance|1 +(noun)|group action +nonresistant|2 +(adj)|liable|nonimmune|unresistant|susceptible +(adj)|compliant +nonresonant|1 +(adj)|unreverberant |anechoic|dead|dull|thudding +nonrestrictive|1 +(adj)|unrestrictive +nonrestrictive clause|1 +(noun)|descriptive clause|subordinate clause|dependent clause +nonreticulate|1 +(adj)|nonreticulate +nonretractable|1 +(adj)|nonretractile +nonretractile|1 +(adj)|nonretractile |nonretractable +nonreturnable|1 +(adj)|nonreturnable +nonreversible|1 +(adj)|nonreversible |one-sided +nonrhythmic|1 +(adj)|unrhythmical |unrhythmic +nonrigid|1 +(adj)|nonrigid +nonruminant|1 +(adj)|nonruminant |animal order +nonsectarian|1 +(adj)|nonsectarian |unsectarian|ecumenic|oecumenic|ecumenical|oecumenical|interchurch|interdenominational|nondenominational|undenominational +nonsegmental|1 +(adj)|unsegmented|united +nonsegregated|1 +(adj)|desegrated|unsegregated|integrated +nonsense|3 +(adj)|nonsensical|meaningless |nonmeaningful +(noun)|bunk|nonsensicality|meaninglessness|hokum|message|content|subject matter|substance +(noun)|falderal|folderol|frills|gimcrackery|gimcracks|trumpery|decoration|ornament|ornamentation +nonsense verse|1 +(noun)|amphigory|nonsense|bunk|nonsensicality|meaninglessness|hokum +nonsensical|2 +(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|preposterous|ridiculous|foolish +(adj)|nonsense|meaningless |nonmeaningful +nonsensicality|1 +(noun)|nonsense|bunk|meaninglessness|hokum|message|content|subject matter|substance +nonsensitive|1 +(adj)|unrestricted|unclassified +nonsexual|1 +(adj)|asexual |agamic|agamous|agamogenetic|apomictic|parthenogenetic|neuter|sexless|vegetal|vegetative|fissiparous +nonsignificant|1 +(adj)|nonsignificant +nonsingular matrix|1 +(noun)|square matrix +nonskid|1 +(adj)|nonslippery +nonslip|1 +(adj)|nonslippery +nonslippery|1 +(adj)|nonslippery |nonskid|nonslip|rough|unsmooth +nonsmoker|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|nonsmoking car|passenger car|coach|carriage +nonsmoking car|1 +(noun)|nonsmoker|passenger car|coach|carriage +nonsocial|1 +(adj)|nongregarious|solitary|ungregarious +nonsocial infection|1 +(noun)|cross infection|infection +nonsolid color|1 +(noun)|nonsolid colour|dithered color|dithered colour|color|colour|coloring|colouring +nonsolid colour|1 +(noun)|nonsolid color|dithered color|dithered colour|color|colour|coloring|colouring +nonsovereign|1 +(adj)|nonautonomous|unfree +nonspatial|1 +(adj)|nonspatial |abstraction +nonspeaking|1 +(adj)|nonspeaking |walk-on|mute|tongueless +nonspecific|1 +(adj)|nonspecific +nonspecific urethritis|1 +(noun)|NSU|urethritis +nonspherical|1 +(adj)|nonspherical |round shape +nonstandard|3 +(adj)|nonstandard |bad|unacceptable|unaccepted +(adj)|nonstandard |deficient|inferior|substandard|nonnormative +(adj)|nonstandard +nonstarter|2 +(noun)|failure|loser|unsuccessful person|unfortunate|unfortunate person +(noun)|racehorse|race horse|bangtail +nonsteroid|1 +(noun)|nonsteroidal|organic compound +nonsteroidal|2 +(adj)|nonsteroidal |organic compound +(noun)|nonsteroid|organic compound +nonsteroidal anti-inflammatory|1 +(noun)|nonsteroidal anti-inflammatory drug|NSAID|anti-inflammatory|anti-inflammatory drug +nonsteroidal anti-inflammatory drug|1 +(noun)|nonsteroidal anti-inflammatory|NSAID|anti-inflammatory|anti-inflammatory drug +nonstick|1 +(adj)|slippery |slippy +nonstop|3 +(adj)|direct +(adj)|around-the-clock|day-and-night|round-the-clock|continuous |uninterrupted +(noun)|nonstop flight|flight +nonstop flight|1 +(noun)|nonstop|flight +nonstructural|1 +(adj)|nonfunctional +nonsubjective|1 +(adj)|objective |clinical|impersonal|neutral|verifiable +nonsubmergible|1 +(adj)|nonsubmersible +nonsubmersible|1 +(adj)|nonsubmersible |nonsubmergible +nonsuch|1 +(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|model|role model +nonsuppurative|1 +(adj)|nonsuppurative |bodily process|body process|bodily function|activity +nonsurgical|1 +(adj)|nonsurgical |medical procedure +nonsweet|1 +(adj)|sugarless |unsugared|unsweetened|dry +nonsyllabic|2 +(adj)|nonsyllabic |unsyllabic|unsyllabled +(adj)|consonantal |nonvocalic +nonsymbiotic|1 +(adj)|free-living|nonparasitic|independent +nonsynchronous|1 +(adj)|unsynchronized|unsynchronised|unsynchronous|asynchronous +nonsynthetic|1 +(adj)|organic +nontaxable|1 +(adj)|nontaxable |exempt|duty-free|tax-exempt|tax-free|untaxed|unratable|exempt +nontechnical|1 +(adj)|nontechnical |untechnical +nontelescopic|1 +(adj)|nontelescoping|noncollapsible |noncollapsable +nontelescoping|1 +(adj)|nontelescopic|noncollapsible |noncollapsable +nonterritorial|1 +(adj)|nonterritorial +nontextual matter|1 +(noun)|artwork|art|graphics|visual communication +nonthermal|1 +(adj)|nonthermal |energy +nonthrombocytopenic purpura|1 +(noun)|purpura|peliosis +nontoxic|2 +(adj)|nontoxic |atoxic|antitoxic|harmless|nonpoisonous|nonvenomous|harmless +(adj)|nonpoisonous|edible |comestible|eatable +nontraditional|1 +(adj)|nontraditional |untraditional +nontransferable|1 +(adj)|unassignable|untransferable|inalienable |unalienable +nontranslational|1 +(adj)|nontranslational |change of location|travel +nontransmissible|2 +(adj)|nonhereditary|noninheritable |nonheritable +(adj)|noncommunicable|noncontagious|noninfectious +nontricyclic|1 +(noun)|nontricyclic drug|nontricyclic antidepressant|nontricyclic antidepressant drug|antidepressant|antidepressant drug +nontricyclic antidepressant|1 +(noun)|nontricyclic|nontricyclic drug|nontricyclic antidepressant drug|antidepressant|antidepressant drug +nontricyclic antidepressant drug|1 +(noun)|nontricyclic|nontricyclic drug|nontricyclic antidepressant|antidepressant|antidepressant drug +nontricyclic drug|1 +(noun)|nontricyclic|nontricyclic antidepressant|nontricyclic antidepressant drug|antidepressant|antidepressant drug +nonturbulent|1 +(adj)|unagitated +nonuniform|1 +(adj)|inhomogeneous|heterogeneous |heterogenous +nonuniformity|1 +(noun)|dissimilarity|unsimilarity +nonunion|1 +(adj)|nonunion |open|unorganized|unorganised|nonunionized|nonunionised +nonunionised|1 +(adj)|unorganized|unorganised|nonunionized|nonunion +nonunionized|1 +(adj)|unorganized|unorganised|nonunionised|nonunion +nonuple|1 +(adj)|ninefold|multiple +nonvascular organism|1 +(noun)|organism|being +nonvascular plant|1 +(noun)|bryophyte|nonvascular organism +nonvenomous|1 +(adj)|nontoxic |atoxic +nonverbal|4 +(adj)|gestural|communicative |communicatory +(adj)|numerical |mathematical +(adj)|communicative |communicatory +(adj)|communicative |communicatory +nonverbal intelligence|1 +(noun)|intelligence +nonviable|1 +(adj)|dead +nonviolence|1 +(noun)|passive resistance|nonviolent resistance|direct action +nonviolent|2 +(adj)|nonviolent |passive|peaceful|peaceful|unprovocative|unprovoking +(adj)|unbloody|bloodless +nonviolent resistance|1 +(noun)|passive resistance|nonviolence|direct action +nonviscid|1 +(adj)|nonglutinous|nonadhesive +nonvisual|1 +(adj)|invisible |unseeable +nonvocalic|1 +(adj)|consonantal |nonsyllabic +nonvolatile|1 +(adj)|nonvolatile |nonvolatilizable|nonvolatilisable +nonvolatile storage|1 +(noun)|non-volatile storage|memory|computer memory|storage|computer storage|store|memory board +nonvolatilisable|1 +(adj)|nonvolatile |nonvolatilizable +nonvolatilizable|1 +(adj)|nonvolatile |nonvolatilisable +nonvoluntary|1 +(adj)|involuntary |unvoluntary|driven|goaded|forced|unconscious|unwilled|unwilling|unconscious|unwilling +nonwashable|1 +(adj)|nonwashable +nonwoody|1 +(adj)|nonwoody |herbaceous|pulpy +nonworker|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +noodle|2 +(noun)|pasta|alimentary paste +(noun)|attic|bean|bonce|noggin|dome|human head +nook|2 +(noun)|retreat +(noun)|corner|area +nook and cranny|1 +(noun)|nooks and crannies|detail|item|point +nookie|1 +(noun)|fuck|fucking|screw|screwing|ass|nooky|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +nooks and crannies|2 +(noun)|nook and cranny|detail|item|point +(noun)|nook and cranny|detail|item|point +nooky|1 +(noun)|fuck|fucking|screw|screwing|ass|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +noon|1 +(noun)|twelve noon|high noon|midday|noonday|noontide|hour|time of day +noonan's syndrome|1 +(noun)|Noonan's syndrome|syndrome +noonday|1 +(noun)|noon|twelve noon|high noon|midday|noontide|hour|time of day +noontide|1 +(noun)|noon|twelve noon|high noon|midday|noonday|hour|time of day +noose|4 +(noun)|snare|gin|trap +(noun)|running noose|slip noose|loop +(verb)|loop|intertwine +(verb)|fasten|fix|secure +nootka|2 +(noun)|Nootka|Wakashan +(noun)|Nootka|Wakashan|Wakashan language +nootka cypress|1 +(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar|cedar tree +nopal|2 +(noun)|Opuntia lindheimeri|prickly pear|prickly pear cactus +(noun)|cactus +nopalea|1 +(noun)|Nopalea|genus Nopalea|dicot genus|magnoliopsid genus +nor'-east|2 +(noun)|northeast|NE|compass point|point +(adv)|northeast|north-east +nor'-nor'-east|2 +(noun)|north northeast|NNE|compass point|point +(adv)|north-northeast +nor'-west|2 +(noun)|northwest|NW|compass point|point +(adv)|northwest|north-west +nor-q-d|1 +(noun)|Nor-Q-D|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +noradrenaline|1 +(noun)|norepinephrine|catecholamine|monoamine neurotransmitter|vasoconstrictor|vasoconstrictive +norbert wiener|1 +(noun)|Wiener|Norbert Wiener|mathematician +nord-pas-de-calais|1 +(noun)|Nord-Pas-de-Calais|French region +nordic|4 +(adj)|Nordic|Germanic|Germanic language +(adj)|Nordic|geographical area|geographic area|geographical region|geographic region +(adj)|blond |blonde|light-haired +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +noreaster|1 +(noun)|northeaster|storm|violent storm +noreg|1 +(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country|Scandinavian nation +norepinephrine|1 +(noun)|noradrenaline|catecholamine|monoamine neurotransmitter|vasoconstrictor|vasoconstrictive +norethandrolone|1 +(noun)|norethindrone|norethindrone acetate|Norlutin|progestin|progestogen +norethindrone|1 +(noun)|norethindrone acetate|norethandrolone|Norlutin|progestin|progestogen +norethindrone acetate|1 +(noun)|norethindrone|norethandrolone|Norlutin|progestin|progestogen +norethynodrel|1 +(noun)|progestin|progestogen +norflex|1 +(noun)|orphenadrine|Norflex|muscle relaxant +norfolk|1 +(noun)|Norfolk|city|metropolis|urban center|port +norfolk island|1 +(noun)|Norfolk Island|island +norfolk island pine|1 +(noun)|Araucaria heterophylla|Araucaria excelsa|araucaria +norfolk jacket|1 +(noun)|Norfolk jacket|jacket +norfolk terrier|1 +(noun)|Norfolk terrier|terrier +norfolk wherry|1 +(noun)|wherry|Norfolk wherry|barge|flatboat|hoy|lighter +norge|1 +(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country|Scandinavian nation +norgestrel|1 +(noun)|progestin|progestogen +noria|1 +(noun)|waterwheel|water wheel +norinyl|1 +(noun)|Norinyl|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +norlestrin|1 +(noun)|Norlestrin|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +norlutin|1 +(noun)|norethindrone|norethindrone acetate|norethandrolone|Norlutin|progestin|progestogen +norm|2 +(noun)|standard|criterion|measure|touchstone +(noun)|average|statistic +norma|1 +(noun)|Norma|constellation +norma jean baker|1 +(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress +normal|5 +(adj)|normal |average|mean|connatural|inborn|inbred|native|median|average|modal|average|natural|regular|typical|sane|standard +(adj)|normal +(adj)|normal +(adj)|perpendicular +(noun)|convention|pattern|rule|formula|practice +normal curve|1 +(noun)|bell-shaped curve|Gaussian curve|Gaussian shape|curve|curved shape +normal distribution|1 +(noun)|Gaussian distribution|distribution|statistical distribution +normal dwarf|1 +(noun)|primordial dwarf|hypoplastic dwarf|true dwarf|dwarf|midget|nanus +normal fault|1 +(noun)|gravity fault|common fault|inclined fault +normal school|1 +(noun)|teachers college|junior college +normalcy|2 +(noun)|normality|condition|status +(noun)|normality|expectedness +normalisation|1 +(noun)|standardization|standardisation|normalization|social control +normalise|2 +(verb)|normalize|change +(verb)|normalize|renormalize|renormalise|change|alter|modify +normaliser|1 +(noun)|normalizer|changer|modifier +normality|4 +(noun)|N|relative quantity +(noun)|normalcy|condition|status +(noun)|normalcy|expectedness +(noun)|conformity|conformance +normalization|1 +(noun)|standardization|standardisation|normalisation|social control +normalize|3 +(verb)|normalise|change +(verb)|normalise|renormalize|renormalise|change|alter|modify +(verb)|anneal|temper|toughen +normalizer|1 +(noun)|normaliser|changer|modifier +normally|1 +(adv)|usually|unremarkably|commonly|ordinarily +norman|5 +(adj)|Norman|geographical area|geographic area|geographical region|geographic region +(adj)|Norman|Frenchman|Frenchwoman|French person +(noun)|Norman|Jessye Norman|soprano +(noun)|Norman|Greg Norman|Gregory John Norman|golfer|golf player|linksman +(noun)|Norman|Frenchman|Frenchwoman|French person +norman-french|1 +(noun)|Norman-French|Old North French|French +norman architecture|1 +(noun)|Norman architecture|Romanesque|Romanesque architecture +norman conquest|1 +(noun)|Norman Conquest|conquest|conquering|subjection|subjugation +norman jewison|1 +(noun)|Jewison|Norman Jewison|film maker|filmmaker|film producer|movie maker +norman mailer|1 +(noun)|Mailer|Norman Mailer|writer|author +norman mattoon thomas|1 +(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist +norman rockwell|1 +(noun)|Rockwell|Norman Rockwell|illustrator +norman thomas|1 +(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist +normandie|1 +(noun)|Normandie|Normandy|geographical area|geographic area|geographical region|geographic region +normandy|1 +(noun)|Normandie|Normandy|geographical area|geographic area|geographical region|geographic region +normative|4 +(adj)|standard|criterion|measure|touchstone +(adj)|prescriptive +(adj)|prescriptive|standard |received +(adj)|standard +normodyne|1 +(noun)|labetalol|labetalol hydrochloride|Trandate|Normodyne|blocker|blocking agent|antihypertensive|antihypertensive drug +normotensive|1 +(adj)|normotensive +normothermia|1 +(noun)|physiological state|physiological condition +norn|1 +(noun)|Norn|Norse deity +norris|1 +(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer|author +norrish|1 +(noun)|Norrish|Ronald George Wreyford Norrish|chemist +norse|5 +(adj)|Scandinavian|Norse +(adj)|Norwegian|Norse|Scandinavian country|Scandinavian nation +(noun)|Scandinavian|Norse|Northman|European +(noun)|Norwegian|Norseman|Norse|European +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +norse deity|1 +(noun)|Norse deity|deity|divinity|god|immortal +norse mythology|1 +(noun)|Norse mythology|mythology +norseman|1 +(noun)|Norwegian|Norseman|Norse|European +north|8 +(adj)|north |northbound|northward|north-central|northerly|northern|northerly|northern|northernmost|northmost|northeastern|northeasterly|northeast|northeasterly|northeast|northwestern|northwesterly|northwest|northwesterly|northwest|northeastward|northwestward +(noun)|North|geographical area|geographic area|geographical region|geographic region +(noun)|Union|North|United States|United States of America|America|US|U.S.|USA|U.S.A. +(noun)|due north|N|cardinal compass point +(noun)|North|northland|septentrion|region +(noun)|magnetic north|compass north|direction +(noun)|North|Frederick North|Second Earl of Guilford|statesman|solon|national leader +(adv)|to the north|in the north|northerly|northwards|northward +north-central|2 +(adj)|northern +(adj)|north +north-east|2 +(adv)|northeast|nor'-east +(adv)| +north-northeast|1 +(adv)|nor'-nor'-east +north-northwest|1 +(adv)|nor'-nor'-west +north-polar|1 +(adj)|Arctic|polar +north-seeking pole|1 +(noun)|positive pole|positive magnetic pole|pole|magnetic pole +north-west|2 +(adv)|northwest|nor'-west +(adv)| +north africa|1 +(noun)|North Africa|geographical area|geographic area|geographical region|geographic region +north african|1 +(adj)|North African|geographical area|geographic area|geographical region|geographic region +north america|2 +(noun)|North America|continent +(noun)|North America|collection|aggregation|accumulation|assemblage +north american|2 +(adj)|North American|continent +(noun)|North American|American +north american country|1 +(noun)|North American country|North American nation|country|state|land +north american indian|1 +(noun)|Indian|North American Indian|American Indian|Red Indian|Amerindian|Native American +north american nation|1 +(noun)|North American country|North American nation|country|state|land +north atlantic|1 +(noun)|North Atlantic|Atlantic|Atlantic Ocean +north atlantic council|1 +(noun)|North Atlantic Council|NAC|council +north atlantic treaty|1 +(noun)|North Atlantic Treaty|treaty|pact|accord +north atlantic treaty organization|1 +(noun)|North Atlantic Treaty Organization|NATO|world organization|world organisation|international organization|international organisation|global organization +north borneo|1 +(noun)|Sabah|North Borneo|district|territory|territorial dominion|dominion +north by east|1 +(noun)|NbE|compass point|point +north by west|1 +(noun)|NbW|compass point|point +north carolina|2 +(noun)|North Carolina|Old North State|Tar Heel State|NC|American state +(noun)|North Carolina|Colony +north carolinian|1 +(noun)|North Carolinian|American +north cascades national park|1 +(noun)|North Cascades National Park|national park +north celestial pole|1 +(noun)|pole|celestial pole +north channel|1 +(noun)|North Channel|strait|sound +north dakota|1 +(noun)|North Dakota|Peace Garden State|ND|American state +north dakotan|1 +(noun)|North Dakotan|American +north dravidian|1 +(noun)|North Dravidian|Dravidian|Dravidic|Dravidian language +north equatorial current|1 +(noun)|North Equatorial Current|equatorial current +north frigid zone|1 +(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone|polar zone +north germanic|1 +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +north germanic language|1 +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +north island|1 +(noun)|North Island|island +north island edelweiss|1 +(noun)|Leucogenes leontopodium|wildflower|wild flower +north korea|1 +(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country|Asian nation +north korean|2 +(adj)|North Korean|Asian country|Asian nation +(noun)|North Korean|Korean +north korean monetary unit|1 +(noun)|North Korean monetary unit|monetary unit +north korean won|1 +(noun)|North Korean won|won|North Korean monetary unit +north northeast|1 +(noun)|nor'-nor'-east|NNE|compass point|point +north northwest|1 +(noun)|nor'-nor'-west|NNW|compass point|point +north pacific|1 +(noun)|North Pacific|Pacific|Pacific Ocean +north peak|1 +(noun)|North Peak|mountain peak +north platte|2 +(noun)|North Platte|North Platte River|river +(noun)|North Platte|town +north platte river|1 +(noun)|North Platte|North Platte River|river +north pole|1 +(noun)|North Pole|pole +north sea|1 +(noun)|North Sea|sea +north side|1 +(noun)|side +north star|1 +(noun)|Polaris|North Star|pole star|polar star|polestar|variable star|variable|lodestar|loadstar +north star state|1 +(noun)|Minnesota|Gopher State|North Star State|MN|American state +north temperate zone|1 +(noun)|North Temperate Zone|Temperate Zone +north vietnam|1 +(noun)|North Vietnam|Asian country|Asian nation +north vietnamese|1 +(adj)|North Vietnamese|Asian country|Asian nation +north wind|1 +(noun)|norther|boreas|wind|air current|current of air +north yorkshire|1 +(noun)|North Yorkshire|county +northbound|1 +(adj)|northward|north +northeast|5 +(adj)|northeastern|northeasterly|north +(adj)|northeasterly|north +(noun)|nor'-east|NE|compass point|point +(noun)|Northeast|northeastern United States|geographical area|geographic area|geographical region|geographic region +(adv)|north-east|nor'-east +northeast by east|1 +(noun)|NEbE|compass point|point +northeast by north|1 +(noun)|NEbN|compass point|point +northeaster|1 +(noun)|noreaster|storm|violent storm +northeasterly|2 +(adj)|northeast|north +(adj)|northeastern|northeast|north +northeastern|2 +(adj)|northeasterly|northeast|north +(adj)|eastern +northeastern united states|1 +(noun)|Northeast|northeastern United States|geographical area|geographic area|geographical region|geographic region +northeastward|2 +(adj)|north +(adv)|northeastwardly +northeastwardly|1 +(adv)|northeastward +norther|1 +(noun)|north wind|boreas|wind|air current|current of air +northerly|3 +(adj)|northern|north +(adj)|northern|north +(adv)|north|to the north|in the north|northwards|northward +northern|5 +(adj)|northern |blue|Union|Federal|Yankee +(adj)|northerly|north +(adj)|northerly|north +(adj)|northern |boreal|circumboreal|north-central|septrional +(noun)|Northern|Middle English +northern alliance|1 +(noun)|Northern Alliance|United Front|alliance|coalition|alignment|alinement +northern baptist|1 +(noun)|Northern Baptist|Baptist +northern baptist convention|1 +(noun)|American Baptist Convention|Northern Baptist Convention|association +northern bedstraw|1 +(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw +northern beech fern|1 +(noun)|long beech fern|narrow beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +northern bobwhite|1 +(noun)|Colinus virginianus|bobwhite|bobwhite quail|partridge +northern bog lemming|1 +(noun)|Synaptomys borealis|lemming +northern casque-headed frog|1 +(noun)|lowland burrowing treefrog|Pternohyla fodiens|tree toad|tree frog|tree-frog +northern cricket frog|1 +(noun)|Acris crepitans|cricket frog +northern cross|1 +(noun)|Northern Cross|bunch|clump|cluster|clustering +northern dewberry|1 +(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry|dewberry bush|running blackberry +northern dune tansy|1 +(noun)|Tanacetum douglasii|wildflower|wild flower|Tanacetum|genus Tanacetum +northern europe|1 +(noun)|northern Europe|geographical area|geographic area|geographical region|geographic region +northern flying squirrel|1 +(noun)|Glaucomys sabrinus|American flying squirrel +northern harrier|1 +(noun)|marsh hawk|hen harrier|Circus cyaneus|harrier +northern hemisphere|1 +(noun)|hemisphere +northern holly fern|1 +(noun)|Polystichum lonchitis|holly fern +northern ireland|1 +(noun)|Northern Ireland|European country|European nation +northern jacob's ladder|1 +(noun)|northern Jacob's ladder|Polemonium boreale|polemonium +northern lights|1 +(noun)|aurora borealis|aurora +northern lobster|2 +(noun)|American lobster|Northern lobster|Maine lobster|lobster +(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster +northern mammoth|1 +(noun)|woolly mammoth|Mammuthus primigenius|mammoth +northern mariana islands|1 +(noun)|Northern Marianas|Northern Mariana Islands|district|territory|territorial dominion|dominion +northern marianas|1 +(noun)|Northern Marianas|Northern Mariana Islands|district|territory|territorial dominion|dominion +northern oak fern|1 +(noun)|limestone fern|Gymnocarpium robertianum|fern +northern oriole|1 +(noun)|Icterus galbula|New World oriole|American oriole|oriole +northern parula|1 +(noun)|parula warbler|Parula americana|New World warbler|wood warbler +northern phalarope|1 +(noun)|Lobipes lobatus|phalarope +northern pike|1 +(noun)|Esox lucius|pike +northern pin oak|1 +(noun)|jack oak|Quercus ellipsoidalis|oak|oak tree +northern pitch pine|1 +(noun)|pitch pine|Pinus rigida|pine|pine tree|true pine +northern pocket gopher|1 +(noun)|Thomomys talpoides|gopher|pocket gopher|pouched rat|Thomomys|genus Thomomys +northern porgy|1 +(noun)|scup|northern scup|Stenotomus chrysops|porgy +northern red oak|1 +(noun)|Quercus rubra|Quercus borealis|red oak +northern rhodesia|1 +(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country|African nation +northern scup|1 +(noun)|scup|northern porgy|Stenotomus chrysops|porgy +northern sea robin|1 +(noun)|Prionotus carolinus|sea robin|searobin +northern shrike|1 +(noun)|Lanius borealis|butcherbird +northern snakehead|1 +(noun)|fish +northern snow bedstraw|1 +(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw +northern spy|1 +(noun)|Northern Spy|eating apple|dessert apple +northern storm petrel|1 +(noun)|stormy petrel|Hydrobates pelagicus|storm petrel +northern territory|1 +(noun)|Northern Territory|district|territory|territorial dominion|dominion +northern white cedar|1 +(noun)|American arborvitae|white cedar|Thuja occidentalis|arborvitae +northern whiting|1 +(noun)|Menticirrhus saxatilis|whiting +northern woodsia|1 +(noun)|Alpine woodsia|flower-cup fern|Woodsia alpina|woodsia +northerner|2 +(noun)|Northerner|inhabitant|dweller|denizen|indweller +(noun)|Yankee|Yank|Northerner|American +northernmost|1 +(adj)|northmost|north +northernness|1 +(noun)|position|spatial relation +northland|1 +(noun)|North|septentrion|region +northman|1 +(noun)|Scandinavian|Norse|Northman|European +northmost|1 +(adj)|northernmost|north +northrop|1 +(noun)|Northrop|John Howard Northrop|biochemist +northrop frye|1 +(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic +northumberland|1 +(noun)|Northumberland|county +northumbria|1 +(noun)|Northumbria|geographical area|geographic area|geographical region|geographic region +northward|2 +(adj)|northbound|north +(adv)|north|to the north|in the north|northerly|northwards +northwards|1 +(adv)|north|to the north|in the north|northerly|northward +northwest|5 +(adj)|northwestern|northwesterly|north +(adj)|northwesterly|north +(noun)|Northwest|northwestern United States|geographical area|geographic area|geographical region|geographic region +(noun)|nor'-west|NW|compass point|point +(adv)|north-west|nor'-west +northwest by north|1 +(noun)|NWbN|compass point|point +northwest by west|1 +(noun)|NWbW|compass point|point +northwest passage|1 +(noun)|Northwest Passage|path|route|itinerary +northwest territories|1 +(noun)|Northwest Territories|district|territory|territorial dominion|dominion +northwest wind|1 +(noun)|northwester|wind|air current|current of air +northwester|1 +(noun)|northwest wind|wind|air current|current of air +northwesterly|2 +(adj)|northwest|north +(adj)|northwestern|northwest|north +northwestern|2 +(adj)|northwesterly|northwest|north +(adj)|western +northwestern united states|1 +(noun)|Northwest|northwestern United States|geographical area|geographic area|geographical region|geographic region +northwestward|2 +(adj)|north +(adv)|northwestwardly +northwestwardly|1 +(adv)|northwestward +nortriptyline|1 +(noun)|Pamelor|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +noruz|1 +(noun)|Noruz|Nowruz|Nowrooz|vernal equinox|March equinox|spring equinox +norvasc|1 +(noun)|amlodipine besylate|Norvasc|vasodilator|vasodilative +norvir|1 +(noun)|ritonavir|Norvir|protease inhibitor|PI +norway|1 +(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country|Scandinavian nation +norway lobster|1 +(noun)|Norway lobster|Nephrops norvegicus|lobster +norway maple|1 +(noun)|Norway maple|Acer platanoides|maple +norway rat|1 +(noun)|brown rat|Norway rat|Rattus norvegicus|rat +norway spruce|1 +(noun)|Norway spruce|Picea abies|spruce +norwegian|3 +(adj)|Norwegian|Norse|Scandinavian country|Scandinavian nation +(noun)|Norwegian|Norseman|Norse|European +(noun)|Norwegian|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +norwegian elkhound|1 +(noun)|Norwegian elkhound|elkhound|hound|hound dog +norwegian krone|1 +(noun)|Norwegian krone|krone|Norwegian monetary unit +norwegian lobster|1 +(noun)|Norwegian lobster|langoustine|scampo|lobster +norwegian monetary unit|1 +(noun)|Norwegian monetary unit|monetary unit +norwegian sea|1 +(noun)|Norwegian Sea|sea +norwich terrier|1 +(noun)|Norwich terrier|terrier +nose|12 +(noun)|olfactory organ|chemoreceptor +(noun)|front +(noun)|front +(noun)|small indefinite quantity|small indefinite amount +(noun)|skill|science +(noun)|nozzle|spout +(verb)|pry|poke|search|look|nose out +(verb)|advance|bring forward +(verb)|scent|wind|smell +(verb)|push|force +(verb)|nuzzle|caress +(verb)|get the better of|overcome|defeat +nose candy|1 +(noun)|coke|blow|snow|C|cocaine|cocain +nose cone|1 +(noun)|ogive|front +nose count|2 +(noun)|census|nosecount|count|counting|numeration|enumeration|reckoning|tally +(noun)| +nose dive|1 +(noun)|dive|descent +nose drops|1 +(noun)|big H|hell dust|smack|thunder|heroin|diacetylmorphine +nose flute|1 +(noun)|flute|transverse flute +nose job|1 +(noun)|rhinoplasty|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck +nose out|1 +(verb)|sniff out|scent out|smell out +nose ring|1 +(noun)|hoop|ring +nosebag|1 +(noun)|feedbag|bag +nosebleed|1 +(noun)|epistaxis|bleeding|hemorrhage|haemorrhage +nosecount|1 +(noun)|census|nose count|count|counting|numeration|enumeration|reckoning|tally +nosed|1 +(adj)|nosed |pug-nosed|pug-nose|snub-nosed|hook-nosed +nosedive|1 +(verb)|dive|plunge|plunk +nosegay|1 +(noun)|bouquet|corsage|posy|flower arrangement +noseless|1 +(adj)|noseless +nosepiece|2 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|bridge|link|linkup|tie|tie-in +nosewheel|1 +(noun)|wheel +nosey|1 +(adj)|nosy|prying|snoopy|curious +nosey-parker|1 +(noun)|busybody|nosy-parker|meddler +nosh|2 +(noun)|bite|collation|snack +(verb)|snack|eat +nosh-up|1 +(noun)|meal|repast +nosher|1 +(noun)|snacker|eater|feeder +nosiness|1 +(noun)|prying|snoopiness|curiousness|inquisitiveness +nosocomial|1 +(adj)|medical building|health facility|healthcare facility +nosology|1 +(noun)|diagnostics|medicine|medical specialty +nostalgia|1 +(noun)|longing|yearning +nostalgic|1 +(adj)|homesick|unhappy +nostalgically|1 +(adv)|with nostalgia +nostoc|1 +(noun)|cyanobacteria|blue-green algae +nostocaceae|1 +(noun)|Nostocaceae|family Nostocaceae|bacteria family +nostradamus|1 +(noun)|Nostradamus|Michel de Notredame|astrologer|astrologist +nostril|1 +(noun)|anterior naris|naris +nostrum|2 +(noun)|panacea|cure-all|remedy|curative|cure +(noun)|patent medicine +nosy|1 +(adj)|nosey|prying|snoopy|curious +nosy-parker|1 +(noun)|busybody|nosey-parker|meddler +not able|3 +(adj)|unable +(adj)|noteworthy|notable|worthy +(adj)|celebrated|famed|far-famed|famous|illustrious|notable|noted|renowned|known +not absolutely|1 +(adv)|conditionally +not bad|1 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|peachy|slap-up|swell|smashing|good +not by a blame sight|1 +(adv)|by no means|not by a long sight +not by a long sight|1 +(adv)|by no means|not by a blame sight +not delayed|1 +(adv)|on time|not late +not due|1 +(adj)|undue +not far|1 +(adv)|shortly +not fluently|1 +(adv)|haltingly +not guilty|1 +(adj)|acquitted|innocent |guiltless|clean-handed +not intrusive|1 +(adj)|unintrusive +not kin|1 +(adj)|unconnected|unrelated +not late|1 +(adv)|on time|not delayed +not listed|1 +(adj)|ex-directory|unlisted +not long|1 +(adv)|shortly +not suitably|1 +(adv)|inappropriately|unsuitably +not surprised|1 +(adj)|unsurprised +not to mention|1 +(adv)|let alone +not traded|1 +(adj)|unlisted +not very likely|1 +(adv)|in a pig's eye +nota bene|1 +(noun)|NB|N.B.|note|annotation|notation +notability|1 +(noun)|luminary|leading light|guiding light|notable|celebrity|famous person +notable|3 +(adj)|noteworthy|worthy +(adj)|celebrated|famed|far-famed|famous|illustrious|noted|renowned|known +(noun)|luminary|leading light|guiding light|notability|celebrity|famous person +notarise|1 +(verb)|notarize|attest|certify|manifest|demonstrate|evidence +notarize|1 +(verb)|notarise|attest|certify|manifest|demonstrate|evidence +notary|1 +(noun)|notary public|official|functionary +notary public|1 +(noun)|notary|official|functionary +notate|1 +(verb)|write down|set down|get down|put down +notation|3 +(noun)|notational system|writing +(noun)|note|annotation|comment|commentary +(noun)|writing|committal to writing +notational system|1 +(noun)|notation|writing +notch|6 +(noun)|indentation|indenture +(noun)|pass|mountain pass|location +(noun)|indentation|indenture +(noun)|nick|snick|cut|cutting +(verb)|incise +(verb)|record|enter|put down +notched|2 +(adj)|serrate|serrated|saw-toothed|toothed|rough +(adj)|erose|jagged|jaggy|toothed|rough +note|13 +(noun)|short letter|line|billet|personal letter +(noun)|written record|written account +(noun)|air|aura|atmosphere +(noun)|bill|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money|folding money|paper currency +(noun)|musical note|tone|musical notation +(noun)|annotation|notation|comment|commentary +(noun)|eminence|distinction|preeminence|high status +(noun)|tone|tone of voice +(noun)|promissory note|note of hand|debt instrument|certificate of indebtedness +(verb)|observe|mention|remark|state|say|tell +(verb)|notice|mark +(verb)|take note|observe +(verb)|take down|write down|set down|get down|put down +note of hand|1 +(noun)|note|promissory note|debt instrument|certificate of indebtedness +note payable|1 +(noun)|note|promissory note|note of hand +note receivable|1 +(noun)|note|promissory note|note of hand +note value|1 +(noun)|value|time value|duration|continuance +notebook|2 +(noun)|book|volume +(noun)|notebook computer|portable computer +notebook computer|1 +(noun)|notebook|portable computer +notebook entry|1 +(noun)|entry +notecase|1 +(noun)|wallet|billfold|pocketbook|case +notechis|1 +(noun)|Notechis|genus Notechis|reptile genus +notechis scutatus|1 +(noun)|tiger snake|Notechis scutatus|elapid|elapid snake +noted|2 +(adj)|celebrated|famed|far-famed|famous|illustrious|notable|renowned|known +(adj)|noticeable +notemigonus|1 +(noun)|Notemigonus|genus Notemigonus|fish genus +notemigonus crysoleucas|1 +(noun)|golden shiner|Notemigonus crysoleucas|shiner +notepad|1 +(noun)|pad|pad of paper|tablet +notepaper|1 +(noun)|writing paper +noteworthy|2 +(adj)|notable|worthy +(adj)|remarkable|significant |important +nothing|2 +(noun)|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +(noun)|nonentity|thing +nothingness|2 +(noun)|void|nullity|nonexistence|nonentity +(noun)|wind|idle words|jazz|talk|talking +nothings|3 +(noun)|conversation +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +(noun)|nothing|nonentity|thing +nothofagus|1 +(noun)|Nothofagus|genus Nothofagus|hamamelid dicot genus +nothofagus cuninghamii|1 +(noun)|myrtle beech|Nothofagus cuninghamii|southern beech|evergreen beech +nothofagus dombeyi|1 +(noun)|Coigue|Nothofagus dombeyi|southern beech|evergreen beech +nothofagus menziesii|1 +(noun)|silver beech|Nothofagus menziesii|New Zealand beech +nothofagus obliqua|1 +(noun)|roble beech|Nothofagus obliqua|southern beech|evergreen beech +nothofagus procera|1 +(noun)|rauli beech|Nothofagus procera|southern beech|evergreen beech +nothofagus solanderi|1 +(noun)|black beech|Nothofagus solanderi|southern beech|evergreen beech +nothofagus truncata|1 +(noun)|hard beech|Nothofagus truncata|southern beech|evergreen beech +nothosaur|1 +(noun)|archosaur|archosaurian|archosaurian reptile +nothosauria|1 +(noun)|Nothosauria|suborder Nothosauria|animal order +notice|11 +(noun)|announcement|promulgation +(noun)|observation|observance|attention|attending +(noun)|notification|request|asking +(noun)|telling|apprisal|notification +(noun)|poster|posting|placard|bill|card|sign +(noun)|attention|attending +(noun)|review|critique|critical review|review article +(verb)|detect|observe|find|discover|sight +(verb)|mark|note +(verb)|comment|remark|point out|note|observe|mention|remark +(verb)|acknowledge|react|respond +notice board|1 +(noun)|bulletin board|board +noticeability|1 +(noun)|obviousness|noticeableness|patency|conspicuousness +noticeable|4 +(adj)|noticeable |broad|detectable|perceptible|discernible|evident|observable|marked|pronounced|noted +(adj)|detectable|perceptible +(adj)|obtrusive +(adj)|strong +noticeableness|1 +(noun)|obviousness|noticeability|patency|conspicuousness +noticeably|1 +(adv)|perceptibly +noticed|1 +(adj)|noticed |detected +noticer|2 +(noun)|perceiver|observer|beholder +(noun)|official|functionary +notifiable|1 +(adj)|inform +notification|3 +(noun)|presentment|due process|due process of law +(noun)|telling|apprisal|informing|making known +(noun)|notice|request|asking +notify|1 +(verb)|advise|give notice|send word|apprise|apprize|inform +notion|4 +(noun)|impression|feeling|belief|opinion|idea|thought +(noun)|concept|conception|construct +(noun)|whim|whimsy|whimsey|idea|thought +(noun)|article +notional|5 +(adj)|concept|conception|construct +(adj)|fanciful|imaginary|imagined|unreal +(adj)|speculative|theoretical |theoretic +(adj)|fanciful|creative |originative +(adj)|conceptional|ideational|abstract +notions counter|1 +(noun)|counter +notochord|1 +(noun)|spinal column|vertebral column|spine|backbone|back|rachis +notomys|1 +(noun)|Notomys|genus Notomys|mammal genus +notonecta|1 +(noun)|Notonecta|genus Notonecta|arthropod genus +notonecta undulata|1 +(noun)|backswimmer|Notonecta undulata|hemipterous insect|bug|hemipteran|hemipteron +notonectidae|1 +(noun)|Notonectidae|family Notonectidae|arthropod family +notophthalmus|1 +(noun)|Notophthalmus|genus Notophthalmus|amphibian genus +notophthalmus viridescens|1 +(noun)|red eft|Notophthalmus viridescens|newt|triton +notoriety|1 +(noun)|ill fame|infamy +notorious|1 +(adj)|ill-famed|infamous|disreputable +notornis|1 +(noun)|takahe|Notornis mantelli|rail +notornis mantelli|1 +(noun)|notornis|takahe|Notornis mantelli|rail +notoryctidae|1 +(noun)|Notoryctidae|family Notoryctidae|mammal family +notoryctus|1 +(noun)|Notoryctus|genus Notoryctus|mammal genus +notoryctus typhlops|1 +(noun)|pouched mole|marsupial mole|Notoryctus typhlops|marsupial|pouched mammal +notostraca|1 +(noun)|Notostraca|order Notostraca|animal order +notropis|1 +(noun)|Notropis|genus Notropis|fish genus +notropis atherinoides|1 +(noun)|emerald shiner|Notropis atherinoides|shiner +notropis cornutus|1 +(noun)|common shiner|silversides|Notropis cornutus|shiner +notwithstanding|1 +(adv)|however|nevertheless|withal|still|yet|all the same|even so|nonetheless +nouakchott|1 +(noun)|Nouakchott|national capital +nougat|1 +(noun)|candy +nougat bar|1 +(noun)|candy +nought|1 +(noun)|zero|0|cipher|cypher|digit|figure +noughts and crosses|1 +(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tic-tac-toe|tit-tat-toe|board game +noumenon|1 +(noun)|thing-in-itself|content|cognitive content|mental object +noun|2 +(noun)|content word|open-class word|substantive +(noun)|major form class +noun phrase|1 +(noun)|phrase +nourish|2 +(verb)|nurture|sustain|provide|supply|ply|cater +(verb)|nutrify|aliment|feed|give +nourished|2 +(adj)|nourished |full|replete|well-fed|well-nourished|overfed|stall-fed|corn-fed +(adj)|fostered|supported +nourishing|1 +(adj)|alimentary|alimental|nutrient|nutritious|nutritive|wholesome +nourishment|2 +(noun)|nutriment|nutrition|sustenance|aliment|alimentation|victuals|food|nutrient +(noun)|care|attention|aid|tending +nous|2 +(noun)|common sense|good sense|gumption|horse sense|sense|mother wit +(noun)|mind|head|brain|psyche|cognition|knowledge|noesis +nouveau-riche|2 +(adj)|parvenu|parvenue|upstart|pretentious +(noun)|upstart|parvenu|arriviste|unpleasant person|disagreeable person +nouvelle cuisine|1 +(noun)|cuisine|culinary art +nouvelle vague|1 +(noun)|New Wave|Nouvelle Vague|artistic movement|art movement +nov|1 +(noun)|November|Nov|Gregorian calendar month +nov-esperanto|1 +(noun)|Nov-Esperanto|artificial language +nov-latin|1 +(noun)|Nov-Latin|artificial language +nova|1 +(noun)|star +nova scotia|2 +(noun)|Nova Scotia|peninsula +(noun)|Nova Scotia|Canadian province +nova scotia lox|1 +(noun)|Nova scotia lox|lox +nova zembla|1 +(noun)|Novaya Zemlya|Nova Zembla|island +novate|1 +(verb)|replace +novation|1 +(noun)|replacement|replacing +novaya zemlya|1 +(noun)|Novaya Zemlya|Nova Zembla|island +novel|4 +(adj)|fresh|new|original +(adj)|refreshing|new +(noun)|fiction +(noun)|book|volume +novelette|1 +(noun)|novella|novel +novelisation|1 +(noun)|novelization|writing|authorship|composition|penning +novelise|1 +(verb)|novelize|fictionalize|fictionalise|convert +novelist|1 +(noun)|writer|author +novelization|1 +(noun)|novelisation|writing|authorship|composition|penning +novelize|1 +(verb)|novelise|fictionalize|fictionalise|convert +novella|1 +(noun)|novelette|novel +novelty|4 +(noun)|freshness|originality +(noun)|freshness|originality +(noun)|knickknack|article +(noun)|bangle|bauble|gaud|gewgaw|fallal|trinket|adornment +novelty shop|1 +(noun)|gift shop|shop|store +november|1 +(noun)|November|Nov|Gregorian calendar month +november 1|1 +(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation +november 11|1 +(noun)|Veterans' Day|Armistice Day|November 11|legal holiday|national holiday +november 2|1 +(noun)|All Souls' Day|November 2|Christian holy day +november 5|1 +(noun)|November 5|day +novena|1 +(noun)|devotion +novgorod|1 +(noun)|Novgorod|city|metropolis|urban center +novial|1 +(noun)|Novial|artificial language +novice|2 +(noun)|novitiate|religionist|religious person +(noun)|beginner|tyro|tiro|initiate|unskilled person +noviciate|1 +(noun)|novitiate|time period|period of time|period +novillada|1 +(noun)|bullfight|corrida +novillero|1 +(noun)|bullfighter|toreador +novitiate|2 +(noun)|noviciate|time period|period of time|period +(noun)|novice|religionist|religious person +novobiocin|1 +(noun)|antibiotic|antibiotic drug +novocain|1 +(noun)|procaine hydrochloride|novocaine|Novocain|procaine|Ethocaine +novocaine|1 +(noun)|procaine hydrochloride|Novocain|procaine|Ethocaine +novosibirsk|1 +(noun)|Novosibirsk|city|metropolis|urban center +now|4 +(noun)|present|nowadays +(adv)|at present +(adv)|nowadays|today +(adv)|immediately|instantly|straightaway|straight off|directly|right away|at once|forthwith|in real time|like a shot +now and again|1 +(adv)|occasionally|on occasion|once in a while|now and then|at times|from time to time +now and then|1 +(adv)|occasionally|on occasion|once in a while|now and again|at times|from time to time +nowadays|2 +(noun)|present|time +(adv)|now|today +nowhere|1 +(noun)|obscurity +nowise|1 +(adv)|to no degree +nowness|1 +(noun)|presentness|timing +nowrooz|1 +(noun)|Noruz|Nowruz|Nowrooz|vernal equinox|March equinox|spring equinox +nowruz|1 +(noun)|Noruz|Nowruz|Nowrooz|vernal equinox|March equinox|spring equinox +nox|1 +(noun)|Nox|Night|Roman deity +noxious|1 +(adj)|noxious |harmful|baneful|deadly|pernicious|pestilent|corrupting|degrading|vesicatory|vesicant|harmful|toxic|unwholesome +noxiously|1 +(adv)|detrimentally|harmfully +noxiousness|1 +(noun)|harmfulness|noisomeness|unwholesomeness|morbidness|morbidity +noxiptiline|1 +(noun)|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +noyes|1 +(noun)|Noyes|Alfred Noyes|poet +nozzle|2 +(noun)|nose|spout +(noun)|beak|honker|hooter|snoot|snout|schnozzle|schnoz|nose|olfactory organ +np|2 +(noun)|neptunium|Np|atomic number 93|metallic element|metal +(noun)|nurse practitioner|NP|nurse clinician|registered nurse|RN +npa|1 +(noun)|New People's Army|NPA|terrorist organization|terrorist group|foreign terrorist organization|FTO +npc|1 +(noun)|Nonproliferation Center|NPC|agency|federal agency|government agency|bureau|office|authority +nra|1 +(noun)|National Rifle Association|NRA|lobby|pressure group|third house +nrc|1 +(noun)|Nuclear Regulatory Commission|NRC|independent agency +nrem|1 +(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep|slumber +nrem sleep|1 +(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep|slumber +nrl|1 +(noun)|Naval Research Laboratory|NRL|agency|federal agency|government agency|bureau|office|authority +nrlb|1 +(noun)|National Labor Relations Board|NRLB|independent agency +nrna|1 +(noun)|nuclear RNA|nRNA|ribonucleic acid|RNA +nro|1 +(noun)|National Reconnaissance Office|NRO|United States intelligence agency +nrti|1 +(noun)|nucleoside reverse transcriptase inhibitor|NRTI|reverse transcriptase inhibitor +nsa|1 +(noun)|National Security Agency|NSA|United States intelligence agency +nsaid|1 +(noun)|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID|anti-inflammatory|anti-inflammatory drug +nsc|1 +(noun)|National Security Council|NSC|executive agency +nsf|1 +(noun)|Nationaol Science Foundation|NSF|independent agency +nsu|1 +(noun)|nonspecific urethritis|NSU|urethritis +nsw|1 +(noun)|Naval Special Warfare|NSW|agency|federal agency|government agency|bureau|office|authority +nswc|1 +(noun)|Naval Surface Warfare Center|NSWC|agency|federal agency|government agency|bureau|office|authority +nt|1 +(noun)|National Trust|NT|nongovernmental organization|NGO +nth|1 +(adj)|ordinal +ntis|1 +(noun)|National Technical Information Service|NTIS|agency|federal agency|government agency|bureau|office|authority +nu|1 +(noun)|letter|letter of the alphabet|alphabetic character +nuance|1 +(noun)|nicety|shade|subtlety|refinement|meaning|significance|signification|import +nub|3 +(noun)|nubble|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|stub|part|piece +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|pith|sum|nitty-gritty|content|cognitive content|mental object +nubbin|1 +(noun)|nub|stub +nubbiness|1 +(noun)|coarseness|tweediness|roughness +nubble|1 +(noun)|nub|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +nubbly|1 +(adj)|homespun|nubby|slubbed|tweedy|rough |unsmooth +nubby|1 +(adj)|homespun|nubbly|slubbed|tweedy|rough |unsmooth +nubia|1 +(noun)|Nubia|geographical area|geographic area|geographical region|geographic region +nubian|1 +(noun)|Nubian|Egyptian|ethnic group|ethnos +nubian desert|1 +(noun)|Nubian Desert|desert +nubile|1 +(adj)|marriageable|mature +nucellus|1 +(noun)|plant part|plant structure +nucha|1 +(noun)|nape|scruff|rear|backside|back end +nucifraga|1 +(noun)|Nucifraga|genus Nucifraga|bird genus +nucifraga caryocatactes|1 +(noun)|common nutcracker|Nucifraga caryocatactes|nutcracker +nucifraga columbiana|1 +(noun)|Clark's nutcracker|Nucifraga columbiana|nutcracker +nuclear|4 +(adj)|nuclear |atomic|thermonuclear +(adj)|center|centre|midpoint +(adj)|organelle|cell organ +(adj)|central +nuclear-powered ship|1 +(noun)|ship +nuclear-powered submarine|1 +(noun)|nautilus|nuclear submarine|submarine|pigboat|sub|U-boat +nuclear chemist|1 +(noun)|radiochemist|chemist +nuclear chemistry|1 +(noun)|radiochemistry|chemistry|chemical science +nuclear club|1 +(noun)|collection|aggregation|accumulation|assemblage +nuclear deterrence|1 +(noun)|deterrence|doctrine|philosophy|philosophical system|school of thought|ism +nuclear energy|1 +(noun)|atomic energy|energy +nuclear engineering|1 +(noun)|engineering|engineering science|applied science|technology +nuclear explosion|1 +(noun)|atomic explosion|bomb blast +nuclear family|1 +(noun)|conjugal family|family|household|house|home|menage +nuclear fission|1 +(noun)|fission|nuclear reaction +nuclear fuel|1 +(noun)|fuel +nuclear fusion|1 +(noun)|fusion|nuclear fusion reaction|nuclear reaction +nuclear fusion reaction|1 +(noun)|fusion|nuclear fusion|nuclear reaction +nuclear magnetic resonance|1 +(noun)|NMR|proton magnetic resonance|magnetic resonance +nuclear medicine|1 +(noun)|medicine|medical specialty +nuclear meltdown|1 +(noun)|meltdown|overheating +nuclear physicist|1 +(noun)|physicist +nuclear physics|1 +(noun)|atomic physics|nucleonics|physics|physical science|natural philosophy +nuclear power|1 +(noun)|atomic power|atomic energy|nuclear energy +nuclear propulsion|1 +(noun)|propulsion +nuclear reaction|1 +(noun)|natural process|natural action|action|activity +nuclear reactor|1 +(noun)|reactor|apparatus|setup +nuclear regulatory commission|1 +(noun)|Nuclear Regulatory Commission|NRC|independent agency +nuclear resonance|1 +(noun)|resonance +nuclear rna|1 +(noun)|nuclear RNA|nRNA|ribonucleic acid|RNA +nuclear rocket|1 +(noun)|rocket|rocket engine +nuclear submarine|1 +(noun)|nautilus|nuclear-powered submarine|submarine|pigboat|sub|U-boat +nuclear terrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +nuclear transplantation|1 +(noun)|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|biological research +nuclear warhead|1 +(noun)|atomic warhead|thermonuclear warhead|nuke|warhead|payload|load +nuclear weapon|1 +(noun)|weapon of mass destruction|WMD|W.M.D. +nuclear winter|1 +(noun)|catastrophe|cataclysm +nuclease|1 +(noun)|enzyme +nucleate|2 +(adj)|nucleated|organelle|cell organ +(verb)|become|turn +nucleated|1 +(adj)|nucleate|organelle|cell organ +nucleic acid|1 +(noun)|macromolecule|supermolecule +nucleolar organiser|1 +(noun)|nucleolus organizer|nucleolus organiser|nucleolar organizer|structure|anatomical structure|complex body part|bodily structure|body structure +nucleolar organizer|1 +(noun)|nucleolus organizer|nucleolus organiser|nucleolar organiser|structure|anatomical structure|complex body part|bodily structure|body structure +nucleole|1 +(noun)|nucleolus|organelle|cell organ +nucleolus|1 +(noun)|nucleole|organelle|cell organ +nucleolus organiser|1 +(noun)|nucleolus organizer|nucleolar organizer|nucleolar organiser|structure|anatomical structure|complex body part|bodily structure|body structure +nucleolus organizer|1 +(noun)|nucleolus organiser|nucleolar organizer|nucleolar organiser|structure|anatomical structure|complex body part|bodily structure|body structure +nucleon|1 +(noun)|baryon|heavy particle +nucleon number|1 +(noun)|mass number|mass unit +nucleonics|1 +(noun)|nuclear physics|atomic physics|physics|physical science|natural philosophy +nucleoplasm|1 +(noun)|karyoplasm|protoplasm|living substance +nucleoprotein|1 +(noun)|protein +nucleoside|1 +(noun)|glycoside +nucleoside reverse transcriptase inhibitor|1 +(noun)|NRTI|reverse transcriptase inhibitor +nucleosynthesis|1 +(noun)|synthesis +nucleotide|1 +(noun)|ester +nucleus|5 +(noun)|cell nucleus|karyon|organelle|cell organ +(noun)|center|centre|midpoint +(noun)|core|core group|set +(noun)|center|centre|midpoint +(noun)|neural structure +nucleus niger|1 +(noun)|substantia nigra|locus niger|neural structure +nuda|1 +(noun)|Nuda|class Nuda|class +nude|4 +(adj)|bare|au naturel|naked|unclothed +(noun)|nude painting|painting|picture +(noun)|nakedness|nudity|nudeness +(noun)|nude person|person|individual|someone|somebody|mortal|human|soul +nude dancing|1 +(noun)|stage dancing|choreography +nude mouse|1 +(noun)|mouse +nude painting|1 +(noun)|nude|painting|picture +nude person|1 +(noun)|nude|person|individual|someone|somebody|mortal|human|soul +nudeness|1 +(noun)|nakedness|nudity|condition|status +nudge|3 +(noun)|jog|push|pushing +(verb)|poke at|prod|push|force +(verb)|push|bear on +nudger|1 +(noun)|pusher|shover +nudibranch|1 +(noun)|sea slug|gastropod|univalve +nudibranchia|1 +(noun)|Nudibranchia|order Nudibranchia|animal order +nudism|1 +(noun)|naturism|practice|pattern +nudist|1 +(noun)|naturist|individualist +nudity|1 +(noun)|nakedness|nudeness|condition|status +nudnick|1 +(noun)|nudnik|bore|dullard|pest|blighter|cuss|pesterer|gadfly +nudnik|1 +(noun)|nudnick|bore|dullard|pest|blighter|cuss|pesterer|gadfly +nuffield|1 +(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist|philanthropist|altruist +nugatory|1 +(adj)|worthless +nugget|1 +(noun)|hunk|lump +nuisance|2 +(noun)|annoyance|bother|botheration|pain|infliction|pain in the neck|pain in the ass +(noun)|pain|pain in the neck|unpleasant person|disagreeable person +nuisance abatement|1 +(noun)|abatement of a nuisance|abatement +nuisance tax|1 +(noun)|sales tax|excise|excise tax +nuisance value|1 +(noun)|awkwardness|disadvantage +nuke|4 +(noun)|atomic warhead|nuclear warhead|thermonuclear warhead|warhead|payload|load +(verb)|atomize|atomise|zap|bombard|bomb +(verb)|atom-bomb|bombard|bomb +(verb)|microwave|micro-cook|zap|cook +null|2 +(adj)|void|invalid +(noun)|nothing|nil|nix|nada|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity +null set|1 +(noun)|set +null space|1 +(noun)|mathematical space|topological space +nullah|1 +(noun)|valley|vale +nullarbor plain|1 +(noun)|Nullarbor Plain|plain|field|champaign +nullification|2 +(noun)|states' rights +(noun)|override|change of state +nullified|1 +(adj)|invalidated|invalid +nullifier|2 +(noun)|advocate|advocator|proponent|exponent +(noun)|invalidator|voider|official|functionary +nullify|3 +(verb)|invalidate|annul|quash|void|avoid|cancel|strike down +(verb)|invalidate|negate|contradict +(verb)|neutralize|neutralise|negate|weaken +nullipara|1 +(noun)|woman|adult female +nullity|1 +(noun)|nothingness|void|nonexistence|nonentity +numb|4 +(adj)|asleep|benumbed|insensible +(adj)|dead|insensitive +(adj)|petrified|afraid +(verb)|benumb|blunt|dull|desensitize|desensitise +numbat|1 +(noun)|banded anteater|anteater|Myrmecobius fasciatus|dasyurid marsupial|dasyurid +number|17 +(noun)|figure|amount +(noun)|definite quantity +(noun)|act|routine|turn|bit|performance|public presentation +(noun)|identification number|positive identification +(noun)|phone number|telephone number|signal|signaling|sign +(noun)|numeral|symbol +(noun)|issue|periodical +(noun)|company +(noun)|grammatical category|syntactic category +(noun)|merchandise|wares|product +(noun)|size +(verb)|total|add up|come|amount|be +(verb)|designate|denominate +(verb)|list|name|identify +(verb)|count|classify|class|sort|assort|sort out|separate +(verb)|count|enumerate|numerate|determine|find|find out|ascertain +(verb)|keep down|limit|circumscribe|confine +number 1|1 +(noun)|first|number one|ordinal number|ordinal|no. +number agreement|1 +(noun)|agreement|concord +number cruncher|2 +(noun)|calculator|reckoner|figurer|estimator|computer +(noun)|computer|computing machine|computing device|data processor|electronic computer|information processing system +number crunching|1 +(noun)|calculation|computation|computing +number one|3 +(noun)|self +(noun)|first|rank +(noun)|first|number 1|ordinal number|ordinal|no. +number one wood|1 +(noun)|driver|wood +number representation system|1 +(noun)|numeration system|number system|system of numeration|mathematical notation +number system|1 +(noun)|numeration system|number representation system|system of numeration|mathematical notation +number theorist|1 +(noun)|mathematician +numbering|1 +(noun)|enumeration|list|listing +numberless|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|multitudinous|uncounted|unnumberable|unnumbered|unnumerable|incalculable +numberplate|1 +(noun)|license plate|plate +numbers|13 +(noun)|Numbers|Book of Numbers|book +(noun)|numbers pool|numbers game|numbers racket|lottery|drawing +(noun)|number|figure|amount +(noun)|number|definite quantity +(noun)|act|routine|number|turn|bit|performance|public presentation +(noun)|number|identification number|positive identification +(noun)|phone number|telephone number|number|signal|signaling|sign +(noun)|numeral|number|symbol +(noun)|issue|number|periodical +(noun)|number|company +(noun)|number|grammatical category|syntactic category +(noun)|number|merchandise|wares|product +(noun)|number|size +numbers game|1 +(noun)|numbers pool|numbers racket|numbers|lottery|drawing +numbers pool|1 +(noun)|numbers game|numbers racket|numbers|lottery|drawing +numbers racket|1 +(noun)|numbers pool|numbers game|numbers|lottery|drawing +numbfish|1 +(noun)|electric ray|crampfish|torpedo|ray +numbing|1 +(adj)|desensitizing |desensitising +numbly|1 +(adv)|insensibly +numbness|1 +(noun)|symptom +numdah|1 +(noun)|numdah rug|nammad|rug|carpet|carpeting +numdah rug|1 +(noun)|numdah|nammad|rug|carpet|carpeting +numen|1 +(noun)|spirit|disembodied spirit +numenius|1 +(noun)|Numenius|genus Numenius|bird genus +numenius arquata|1 +(noun)|European curlew|Numenius arquata|curlew +numenius borealis|1 +(noun)|Eskimo curlew|Numenius borealis|curlew +numerable|1 +(adj)|countable|denumerable|enumerable|calculable +numeracy|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +numeral|2 +(adj)|numerical|numeric|definite quantity +(noun)|number|symbol +numerate|3 +(adj)|numerate |educated|educated +(verb)|count|number|enumerate|determine|find|find out|ascertain +(verb)|read +numeration|2 +(noun)|naming +(noun)|count|counting|enumeration|reckoning|tally|investigation|investigating +numeration system|1 +(noun)|number system|number representation system|system of numeration|mathematical notation +numerator|1 +(noun)|dividend +numeric|3 +(adj)|numeral|numerical|definite quantity +(adj)|numerical|quantitative +(adj)|numerical|denotative |denotive +numerical|4 +(adj)|numeric|quantitative +(adj)|numeral|numeric|definite quantity +(adj)|numeric|denotative |denotive +(adj)|numerical |mathematical|nonverbal +numerical quantity|1 +(noun)|quantity +numerological|1 +(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +numerologist|1 +(noun)|believer|worshiper|worshipper +numerology|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +numerosity|1 +(noun)|numerousness|multiplicity|number|figure +numerous|1 +(adj)|many +numerousness|1 +(noun)|numerosity|multiplicity|number|figure +numida|1 +(noun)|Numida|genus Numida|bird genus +numida meleagris|1 +(noun)|guinea fowl|guinea|Numida meleagris|domestic fowl|fowl|poultry +numidia|1 +(noun)|Numidia|kingdom|realm +numidian|2 +(adj)|Numidian|kingdom|realm +(noun)|Numidian|inhabitant|dweller|denizen|indweller +numididae|1 +(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family +numidinae|1 +(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family +numinous|2 +(adj)|sacred +(adj)|spirit|disembodied spirit +numismatics|1 +(noun)|numismatology|coin collecting|coin collection|collection|collecting|assembling|aggregation +numismatist|1 +(noun)|numismatologist|coin collector|collector|aggregator +numismatologist|1 +(noun)|numismatist|coin collector|collector|aggregator +numismatology|1 +(noun)|numismatics|coin collecting|coin collection|collection|collecting|assembling|aggregation +nummulite|1 +(noun)|foram|foraminifer +nummulitidae|1 +(noun)|Nummulitidae|family Nummulitidae|protoctist family +numskull|1 +(noun)|dunce|dunderhead|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton|simple +nun|3 +(noun)|religious +(noun)|conical buoy|nun buoy|buoy +(noun)|letter|letter of the alphabet|alphabetic character +nun buoy|1 +(noun)|conical buoy|nun|buoy +nunavut|1 +(noun)|Nunavut|district|territory|territorial dominion|dominion +nunc dimittis|1 +(noun)|Canticle of Simeon|Nunc dimittis|prayer +nuncio|1 +(noun)|papal nuncio|diplomat|diplomatist +nung|1 +(noun)|Nung|Tai +nunnery|1 +(noun)|convent +nuphar|1 +(noun)|Nuphar|genus Nuphar|magnoliid dicot genus +nuphar advena|1 +(noun)|spatterdock|cow lily|yellow pond lily|Nuphar advena|water lily +nuphar lutea|1 +(noun)|yellow water lily|Nuphar lutea|water lily +nuphar sagittifolium|1 +(noun)|southern spatterdock|Nuphar sagittifolium|water lily +nuprin|1 +(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +nuptial|1 +(adj)|bridal|spousal|ceremony|ceremonial|ceremonial occasion|observance +nuptials|1 +(noun)|wedding|wedding ceremony|hymeneals|ceremony|ceremonial|ceremonial occasion|observance +nuptse|1 +(noun)|Nuptse|mountain peak +nuremberg|1 +(noun)|Nuremberg|Nurnberg|city|metropolis|urban center +nureyev|1 +(noun)|Nureyev|Rudolf Nureyev|dancer|professional dancer +nurnberg|1 +(noun)|Nuremberg|Nurnberg|city|metropolis|urban center +nurse|7 +(noun)|health professional|health care provider|caregiver +(noun)|nanny|nursemaid|woman|adult female|keeper +(verb)|treat|care for +(verb)|harbor|harbour|hold|entertain|feel|experience +(verb)|care|give care +(verb)|treat|handle|do by +(verb)|breastfeed|bottle-feed|suckle|suck|wet-nurse|lactate|give suck|feed|give +nurse's aide|1 +(noun)|nursing aide|aide|auxiliary +nurse-midwife|1 +(noun)|registered nurse|RN +nurse-patient relation|1 +(noun)|medical relation +nurse clinician|1 +(noun)|nurse practitioner|NP|registered nurse|RN +nurse log|1 +(noun)|log +nurse practitioner|1 +(noun)|NP|nurse clinician|registered nurse|RN +nurse shark|1 +(noun)|Ginglymostoma cirratum|shark +nursed|1 +(adj)|suckled|breast-fed +nurseling|1 +(noun)|nursling|suckling|baby|babe|infant +nursemaid|1 +(noun)|nanny|nurse|woman|adult female|keeper +nurser|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +nursery|2 +(noun)|baby's room|child's room +(noun)|greenhouse|glasshouse|building|edifice +nursery rhyme|1 +(noun)|narrative|narration|story|tale +nursery school|1 +(noun)|preschool +nurseryman|1 +(noun)|gardener|horticulturist|plantsman +nursing|3 +(noun)|care|attention|aid|tending +(noun)|health profession +(noun)|breast feeding|infant feeding +nursing aide|1 +(noun)|nurse's aide|aide|auxiliary +nursing bottle|1 +(noun)|feeding bottle|bottle +nursing care|1 +(noun)|medical care|medical aid +nursing home|1 +(noun)|home|rest home|institution +nursing school|1 +(noun)|school of nursing|school +nursling|1 +(noun)|nurseling|suckling|baby|babe|infant +nurtural|1 +(adj)|noninheritable |nonheritable +nurturance|1 +(noun)|care|attention|aid|tending +nurturant|1 +(adj)|compassionate +nurture|5 +(noun)|raising|rearing|upbringing +(noun)|breeding|bringing up|fostering|fosterage|raising|rearing|upbringing|socialization|socialisation|acculturation|enculturation +(verb)|foster|encourage +(verb)|rear|raise|bring up|parent +(verb)|nourish|sustain|provide|supply|ply|cater +nusa tenggara|1 +(noun)|Lesser Sunda Islands|Nusa Tenggara|archipelago +nusku|1 +(noun)|Nusku|Semitic deity +nut|8 +(noun)|seed +(noun)|Nut|Egyptian deity +(noun)|block +(noun)|en|linear unit +(noun)|crackpot|crank|nut case|nutcase|fruitcake|screwball|eccentric|eccentric person|flake|oddball|geek +(noun)|addict|freak|junkie|junky|enthusiast|partisan|partizan +(noun)|testis|testicle|orchis|ball|ballock|bollock|egg|male reproductive gland|gonad|sex gland +(verb)|gather|garner|collect|pull together +nut-leaved screw tree|1 +(noun)|Helicteres isora|screw tree +nut and bolt|1 +(noun)|fastener|fastening|holdfast|fixing +nut bar|1 +(noun)|candy +nut bread|1 +(noun)|quick bread +nut butter|1 +(noun)|spread|paste +nut case|2 +(noun)|crackpot|crank|nut|nutcase|fruitcake|screwball|eccentric|eccentric person|flake|oddball|geek +(noun)| +nut grass|2 +(noun)|nutgrass|nutsedge|nut sedge|Cyperus rotundus|sedge +(noun)| +nut house|2 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nuthouse|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +(noun)| +nut pine|1 +(noun)|pinon|pinyon +nut sedge|2 +(noun)|nutgrass|nut grass|nutsedge|Cyperus rotundus|sedge +(noun)| +nut tree|1 +(noun)|angiospermous tree|flowering tree +nutate|1 +(verb)|rock|sway|shake +nutation|1 +(noun)|nod +nutbrown|1 +(adj)|brunet |brunette +nutcase|1 +(noun)|crackpot|crank|nut|nut case|fruitcake|screwball|eccentric|eccentric person|flake|oddball|geek +nutcracker|3 +(noun)|nutcrackers|compound lever +(noun)|nuthatch|oscine|oscine bird +(noun)|corvine bird +nutcrackers|4 +(noun)|nutcracker|compound lever +(noun)|nutcracker|compound lever +(noun)|nuthatch|nutcracker|oscine|oscine bird +(noun)|nutcracker|corvine bird +nutgrass|1 +(noun)|nut grass|nutsedge|nut sedge|Cyperus rotundus|sedge +nuthatch|1 +(noun)|nutcracker|oscine|oscine bird +nuthouse|1 +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|sanatorium|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +nutlet|1 +(noun)|nut +nutlike|2 +(adj)|nutty|tasteful +(adj)|round |circular +nutmeg|2 +(noun)|nutmeg tree|Myristica fragrans|spice tree +(noun)|spice +nutmeg-yew|1 +(noun)|California nutmeg|Torreya californica|yew +nutmeg family|1 +(noun)|Myristicaceae|family Myristicaceae|magnoliid dicot family +nutmeg flower|1 +(noun)|black caraway|Roman coriander|Nigella sativa|nigella +nutmeg geranium|1 +(noun)|apple geranium|Pelargonium odoratissimum|geranium +nutmeg hickory|1 +(noun)|Carya myristicaeformis|Carya myristiciformis|hickory|hickory tree +nutmeg melon|2 +(noun)|net melon|netted melon|Cucumis melo reticulatus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|net melon|netted melon|muskmelon|sweet melon +nutmeg state|1 +(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state +nutmeg tree|1 +(noun)|nutmeg|Myristica fragrans|spice tree +nutria|1 +(noun)|coypu|Myocastor coypus|rodent|gnawer|gnawing animal +nutrient|2 +(adj)|alimentary|alimental|nourishing|nutritious|nutritive|wholesome +(noun)|food|substance|matter +nutrient agar|1 +(noun)|agar|culture medium|medium +nutrient artery|1 +(noun)|arteria nutricia|artery|arteria|arterial blood vessel +nutrify|1 +(verb)|aliment|nourish|feed|give +nutriment|1 +(noun)|nourishment|nutrition|sustenance|aliment|alimentation|victuals|food|nutrient +nutrition|3 +(noun)|organic process|biological process +(noun)|nutriment|nourishment|sustenance|aliment|alimentation|victuals|food|nutrient +(noun)|science|scientific discipline +nutritional|1 +(adj)|nutritionary|organic process|biological process +nutritionary|1 +(adj)|nutritional|organic process|biological process +nutritionist|1 +(noun)|dietician|dietitian|specialist|specializer|specialiser +nutritionist's calorie|1 +(noun)|Calorie|kilogram calorie|kilocalorie|large calorie|work unit|heat unit|energy unit +nutritious|1 +(adj)|alimentary|alimental|nourishing|nutrient|nutritive|wholesome +nutritiousness|1 +(noun)|nutritiveness|wholesomeness +nutritive|1 +(adj)|alimentary|alimental|nourishing|nutrient|nutritious|wholesome +nutritiveness|1 +(noun)|nutritiousness|wholesomeness +nuts|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nutty|round the bend|around the bend|wacky|whacky|insane +nuts and bolts|2 +(noun)|information|info +(noun)|nut and bolt|fastener|fastening|holdfast|fixing +nutsedge|1 +(noun)|nutgrass|nut grass|nut sedge|Cyperus rotundus|sedge +nutshell|1 +(noun)|shell +nuttall's oak|1 +(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak|oak tree +nuttall oak|1 +(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak|oak tree +nutter|1 +(noun)|wacko|whacko|eccentric|eccentric person|flake|oddball|geek +nuttily|1 +(adv)|daftly|dottily|balmily|wackily +nutty|2 +(adj)|nutlike|tasteful +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|round the bend|around the bend|wacky|whacky|insane +nuwc|1 +(noun)|Naval Underwater Warfare Center|NUWC|agency|federal agency|government agency|bureau|office|authority +nux vomica|1 +(noun)|medicine|medication|medicament|medicinal drug +nuytsia|1 +(noun)|Nuytsia|genus Nuytsia|dilleniid dicot genus +nuytsia floribunda|1 +(noun)|flame tree|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant +nuzzle|3 +(verb)|cuddle|snuggle|nestle|nest|draw close|cling to|hold close|hold tight|clutch +(verb)|nose|caress +(verb)|excavate|dig up|turn up +nv|1 +(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state +nw|1 +(noun)|northwest|nor'-west|NW|compass point|point +nwbn|1 +(noun)|northwest by north|NWbN|compass point|point +nwbw|1 +(noun)|northwest by west|NWbW|compass point|point +ny|1 +(noun)|New York|New York State|Empire State|NY|American state +nyala|2 +(noun)|Nyala|city|metropolis|urban center +(noun)|Tragelaphus angasi|harnessed antelope +nyamuragira|1 +(noun)|Nyamuragira|volcano +nyamwezi|1 +(noun)|Nyamwezi|Bantu|Bantoid language +nyasaland|1 +(noun)|Malawi|Republic of Malawi|Nyasaland|African country|African nation +nybble|1 +(noun)|nibble|computer memory unit +nyctaginaceae|1 +(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family +nyctaginia|1 +(noun)|Nyctaginia|genus Nyctaginia|caryophylloid dicot genus +nyctaginia capitata|1 +(noun)|scarlet musk flower|Nyctaginia capitata|flower +nyctalopia|1 +(noun)|night blindness|moon blindness|visual impairment|visual defect|vision defect|visual disorder|avitaminosis|hypovitaminosis +nyctanassa|1 +(noun)|Nyctanassa|genus Nyctanassa|bird genus +nyctanassa violacea|1 +(noun)|yellow-crowned night heron|Nyctanassa violacea|night heron|night raven +nyctereutes|1 +(noun)|Nyctereutes|genus Nyctereutes|mammal genus +nyctereutes procyonides|1 +(noun)|raccoon dog|Nyctereutes procyonides|wild dog +nycticebus|1 +(noun)|Nycticebus|genus Nycticebus|mammal genus +nycticebus pygmaeus|1 +(noun)|slow loris|Nycticebus tardigradua|Nycticebus pygmaeus|lemur +nycticebus tardigradua|1 +(noun)|slow loris|Nycticebus tardigradua|Nycticebus pygmaeus|lemur +nycticorax|1 +(noun)|Nycticorax|genus Nycticorax|bird genus +nycticorax nycticorax|1 +(noun)|black-crowned night heron|Nycticorax nycticorax|night heron|night raven +nyctimene|1 +(noun)|Nyctimene|genus Nyctimene|mammal genus +nyctophobia|1 +(noun)|simple phobia +nycturia|1 +(noun)|nocturia|micturition|urination +nydrazid|1 +(noun)|isoniazid|INH|Nydrazid|antibacterial|antibacterial drug|bactericide +nyiragongo|1 +(noun)|Nyiragongo|volcano +nylghai|1 +(noun)|nilgai|nylghau|blue bull|Boselaphus tragocamelus|antelope +nylghau|1 +(noun)|nilgai|nylghai|blue bull|Boselaphus tragocamelus|antelope +nylon|2 +(noun)|man-made fiber|synthetic fiber|polyamide|polymeric amide +(noun)|fabric|cloth|material|textile +nylon stocking|1 +(noun)|nylons|rayons|rayon stocking|silk stocking|stocking +nylons|3 +(noun)|nylon stocking|rayons|rayon stocking|silk stocking|stocking +(noun)|nylon|man-made fiber|synthetic fiber|polyamide|polymeric amide +(noun)|nylon|fabric|cloth|material|textile +nymph|3 +(noun)|Greco-Roman deity|Graeco-Roman deity +(noun)|larva +(noun)|houri|woman|adult female +nymphaea|1 +(noun)|Nymphaea|genus Nymphaea|magnoliid dicot genus +nymphaea alba|1 +(noun)|European white lily|Nymphaea alba|water lily +nymphaea caerulea|1 +(noun)|blue lotus|Nymphaea caerulea|water lily +nymphaea lotus|1 +(noun)|lotus|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily +nymphaea odorata|1 +(noun)|water nymph|fragrant water lily|pond lily|Nymphaea odorata|water lily +nymphaea stellata|1 +(noun)|blue lotus|Nymphaea stellata|water lily +nymphaeaceae|1 +(noun)|Nymphaeaceae|family Nymphaeaceae|water-lily family|magnoliid dicot family +nymphalid|1 +(noun)|nymphalid butterfly|brush-footed butterfly|four-footed butterfly|butterfly +nymphalid butterfly|1 +(noun)|nymphalid|brush-footed butterfly|four-footed butterfly|butterfly +nymphalidae|1 +(noun)|Nymphalidae|family Nymphalidae|arthropod family +nymphalis|1 +(noun)|Nymphalis|genus Nymphalis|arthropod genus +nymphalis antiopa|1 +(noun)|mourning cloak|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +nymphet|1 +(noun)|woman|adult female +nymphicus|1 +(noun)|Nymphicus|genus Nymphicus|bird genus +nymphicus hollandicus|1 +(noun)|cockateel|cockatiel|cockatoo parrot|Nymphicus hollandicus|parrot +nympho|1 +(noun)|nymphomaniac|pervert|deviant|deviate|degenerate +nympholepsy|1 +(noun)|craze|delirium|frenzy|fury|hysteria +nympholept|1 +(noun)|unfortunate|unfortunate person +nymphomania|1 +(noun)|sexual desire|concupiscence|physical attraction +nymphomaniac|2 +(adj)|nymphomaniacal|neurotic |psychoneurotic +(noun)|nympho|pervert|deviant|deviate|degenerate +nymphomaniacal|1 +(adj)|nymphomaniac|neurotic |psychoneurotic +nynorsk|1 +(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian +nypa|1 +(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus|liliopsid genus +nyquist frequency|1 +(noun)|Nyquist frequency|sampling frequency +nyquist rate|1 +(noun)|Nyquist rate|sampling rate +nyse|1 +(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange|stock market|securities market +nyssa|1 +(noun)|Nyssa|genus Nyssa|dicot genus|magnoliopsid genus +nyssa aquatica|1 +(noun)|water gum|Nyssa aquatica|tupelo|tupelo tree +nyssa sylvatica|1 +(noun)|sour gum|black gum|pepperidge|Nyssa sylvatica|tupelo|tupelo tree +nyssaceae|1 +(noun)|Nyssaceae|family Nyssaceae|sour-gum family|tupelo family|dicot family|magnoliopsid family +nystagmus|1 +(noun)|motion|movement|move|motility +nystan|1 +(noun)|nystatin|Mycostatin|Nystan|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|antibiotic|antibiotic drug +nystatin|1 +(noun)|Mycostatin|Nystan|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|antibiotic|antibiotic drug +nyx|1 +(noun)|Nyx|Greek deity +o|3 +(noun)|O|type O|group O|blood group|blood type +(noun)|oxygen|O|atomic number 8|chemical element|element|gas +(noun)|O|letter|letter of the alphabet|alphabetic character +o'brien|1 +(noun)|O'Brien|Edna O'Brien|writer|author +o'casey|1 +(noun)|O'Casey|Sean O'Casey|dramatist|playwright +o'connor|1 +(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer|author +o'er|1 +(adv)|over +o'flaherty|1 +(noun)|O'Flaherty|Liam O'Flaherty|writer|author +o'hara|1 +(noun)|O'Hara|John Henry O'Hara|writer|author +o'keeffe|1 +(noun)|O'Keeffe|Georgia Okeeffe|painter +o'neill|1 +(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist|playwright +o'toole|1 +(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor|histrion|player|thespian|role player +o. henry|1 +(noun)|Porter|William Sydney Porter|O. Henry|writer|author +o.d.|1 +(verb)|overdose|drug|dose +o.e.d.|2 +(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary +(noun)| +o.k.|7 +(adj)|all right|fine|ok|okay|hunky-dory|satisfactory +(adj)| +(noun)|O.K.|OK|okay|okey|okeh|sanction|countenance|endorsement|indorsement|warrant|imprimatur +(noun)|Oklahoma|Sooner State|OK|American state +(verb)|approve|O.K.|okay|sanction|authorize|authorise|pass|clear +(adv)|okay|O.K.|all right|alright +(adv)|very well|fine|alright|all right|OK +o level|1 +(noun)|O level|grade|level|tier +o ring|1 +(noun)|O ring|gasket +oaf|1 +(noun)|lout|clod|stumblebum|goon|lubber|lummox|lump|gawk|clumsy person +oafish|1 +(adj)|boorish|loutish|neanderthal|neandertal|swinish|unrefined +oahu|1 +(noun)|Oahu|Oahu Island|island +oahu island|1 +(noun)|Oahu|Oahu Island|island +oak|2 +(noun)|wood +(noun)|oak tree|tree +oak-leaved goosefoot|1 +(noun)|oakleaf goosefoot|Chenopodium glaucum|goosefoot +oak apple|1 +(noun)|gall +oak blight|1 +(noun)|plant louse|louse +oak chestnut|1 +(noun)|tree +oak fern|1 +(noun)|Gymnocarpium dryopteris|Thelypteris dryopteris|fern +oak leaf cluster|1 +(noun)|Oak Leaf Cluster|decoration|laurel wreath|medal|medallion|palm|ribbon +oak tree|1 +(noun)|oak|tree +oaken|1 +(adj)|woody +oakland|1 +(noun)|Oakland|city|metropolis|urban center|port +oakleaf goosefoot|1 +(noun)|oak-leaved goosefoot|Chenopodium glaucum|goosefoot +oakley|1 +(noun)|Oakley|Annie Oakley|marksman|sharpshooter|crack shot +oakum|1 +(noun)|fiber|fibre +oar|1 +(noun)|implement +oarfish|1 +(noun)|king of the herring|ribbonfish|Regalecus glesne|soft-finned fish|malacopterygian +oarlock|1 +(noun)|peg|pin|thole|tholepin|rowlock|holder +oarsman|1 +(noun)|rower|boatman|boater|waterman +oarsmanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +oarswoman|1 +(noun)|oarsman|rower +oas|1 +(noun)|Organization of American States|OAS|world organization|world organisation|international organization|international organisation|global organization +oasis|2 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|haven|shelter +oast|1 +(noun)|kiln +oast house|1 +(noun)|house +oat|2 +(noun)|cereal|cereal grass +(noun)|grain|food grain|cereal +oat cell carcinoma|1 +(noun)|small cell carcinoma|carcinoma +oatcake|1 +(noun)|quick bread +oaten|1 +(adj)|grain|food grain|cereal +oates|2 +(noun)|Oates|Titus Oates|conspirator|coconspirator|plotter|machinator +(noun)|Oates|Joyce Carol Oates|writer|author +oath|3 +(noun)|curse|curse word|expletive|swearing|swearword|cuss|profanity +(noun)|swearing|commitment|dedication +(noun)|promise +oatmeal|2 +(noun)|burgoo|porridge +(noun)|rolled oats|meal +oatmeal cookie|1 +(noun)|cookie|cooky|biscuit +oaxaca|1 +(noun)|Oaxaca|Oaxaca de Juarez|city|metropolis|urban center +oaxaca de juarez|1 +(noun)|Oaxaca|Oaxaca de Juarez|city|metropolis|urban center +ob|2 +(noun)|Ob|Ob River|river +(noun)|obstetrics|OB|tocology|midwifery|medicine|medical specialty +ob river|1 +(noun)|Ob|Ob River|river +obadiah|2 +(noun)|Obadiah|Abdias|prophet +(noun)|Obadiah|Abdias|Book of Obadiah|book +obbligato|2 +(noun)|obligato|motif|motive +(noun)|obligato|section|subdivision +obduracy|1 +(noun)|adamance|unyieldingness|resoluteness|firmness|resolve|resolution +obdurate|2 +(adj)|cussed|obstinate|unrepentant|unregenerate |unregenerated +(adj)|flinty|stony|hardhearted |heartless +obdurately|1 +(adv)|stubbornly|pig-headedly|mulishly|obstinately|cussedly +obeah|1 +(noun)|obi|cult|cultus|religious cult +obeche|2 +(noun)|wood +(noun)|obechi|arere|samba|Triplochiton scleroxcylon|tree +obechi|1 +(noun)|obeche|arere|samba|Triplochiton scleroxcylon|tree +obedience|3 +(noun)|obeisance|submission|compliance +(noun)|tractability|tractableness|flexibility +(noun)|respect|filial duty +obedience plant|1 +(noun)|arrowroot|American arrowroot|Maranta arundinaceae|maranta +obedient|1 +(adj)|obedient |acquiescent|biddable|compliant|conformable|dutiful|duteous|Y2K compliant|compliant|docile|good|manageable|submissive|tractable|manipulable +obedient plant|1 +(noun)|false dragonhead|false dragon head|Physostegia virginiana|physostegia +obediently|1 +(adv)|yieldingly +obeisance|2 +(noun)|bow|bowing|gesture|motion +(noun)|obedience|submission|compliance +obelion|1 +(noun)|craniometric point +obelisk|2 +(noun)|column|pillar +(noun)|dagger|character|grapheme|graphic symbol +obese|1 +(adj)|corpulent|weighty|rotund|fat +obesity|1 +(noun)|fleshiness|fatness|fat|blubber|avoirdupois +obesity diet|1 +(noun)|reducing diet|diet +obey|1 +(verb)|adjust|conform|adapt +obfuscate|1 +(verb)|change|alter|modify +obfuscation|3 +(noun)|bewilderment|puzzlement|befuddlement|mystification|bafflement|bemusement|confusion|mental confusion|confusedness|disarray +(noun)|mystification|activity +(noun)|blackening|darkening +obi|1 +(noun)|obeah|cult|cultus|religious cult +obidoxime chloride|1 +(noun)|chloride|antidote|counterpoison +obiism|1 +(noun)|sorcery|black magic|black art|necromancy +obit|1 +(noun)|obituary|necrology|announcement|promulgation +obiter dictum|2 +(noun)|passing comment|remark|comment +(noun)|dictum|opinion|legal opinion|judgment|judgement +obituary|1 +(noun)|obit|necrology|announcement|promulgation +object|6 +(noun)|physical object|entity +(noun)|aim|objective|target|goal|end +(noun)|constituent|grammatical constituent +(noun)|content|cognitive content|mental object +(verb)|disapprove|reject +(verb)|be +object-oriented database|1 +(noun)|electronic database|on-line database|computer database|electronic information service +object-oriented database management system|1 +(noun)|database management system|DBMS +object-oriented programing language|1 +(noun)|object-oriented programming language|programming language|programing language +object-oriented programming language|1 +(noun)|object-oriented programing language|programming language|programing language +object ball|1 +(noun)|billiard ball +object code|1 +(noun)|code|computer code +object glass|1 +(noun)|objective|lens|lense|lens system +object language|2 +(noun)|target language|programming language|programing language +(noun)|target language|language|linguistic communication +object lesson|1 +(noun)|example|deterrent example|lesson|admonition|monition|warning|word of advice +object of a preposition|1 +(noun)|prepositional object|object +object of the verb|1 +(noun)|direct object|object +object program|1 +(noun)|target program|program|programme|computer program|computer programme +object recognition|1 +(noun)|visual perception|beholding|seeing +objectification|2 +(noun)|realization|realisation|actualization|actualisation +(noun)|representation +objectify|2 +(verb)|exteriorize|exteriorise|externalize|externalise|change|alter|modify +(verb)|depersonalize|depersonalise|change|alter|modify +objection|4 +(noun)|expostulation|remonstrance|dissuasion +(noun)|speech act +(noun)|protest|dissent|resistance +(noun)|procedure +objectionable|2 +(adj)|obnoxious|unpleasant|offensive +(adj)|exceptionable|unacceptable +objectionableness|1 +(noun)|hatefulness|obnoxiousness|offensiveness|odiousness|distastefulness +objectionably|1 +(adv)|offensively|obnoxiously +objective|6 +(adj)|objective |nonsubjective|clinical|impersonal|neutral|verifiable +(adj)|accusative|oblique|oblique case +(adj)|representational +(adj)|concrete +(noun)|aim|object|target|goal|end +(noun)|object glass|lens|lense|lens system +objective case|1 +(noun)|accusative|accusative case|oblique|oblique case +objectiveness|1 +(noun)|objectivity|judgment|judgement|sound judgment|sound judgement|perspicacity +objectivity|1 +(noun)|objectiveness|judgment|judgement|sound judgment|sound judgement|perspicacity +objector|1 +(noun)|dissenter|dissident|protester|contestant|person|individual|someone|somebody|mortal|human|soul +objet d'art|1 +(noun)|art object|piece|work of art +objurgate|2 +(verb)|condemn|reprobate|decry|excoriate|denounce +(verb)|chastise|castigate|chasten|correct|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +objurgation|1 +(noun)|chiding|scolding|tongue-lashing|rebuke|reproof|reproval|reprehension|reprimand +oblanceolate|1 +(adj)|simple |unsubdivided +oblanceolate leaf|1 +(noun)|simple leaf +oblate|2 +(adj)|oblate |pumpkin-shaped|rounded +(noun)|religionist|religious person +oblateness|1 +(noun)|ellipticity|roundedness|bulginess +oblation|2 +(noun)|offering|giving|gift +(noun)|Oblation|religious offering|religious ceremony|religious ritual +obligate|4 +(adj)|obligate +(verb)|compel|oblige|induce|stimulate|cause|have|get|make +(verb)|entrust|intrust|trust|confide|commit +(verb)|oblige|bind|hold|relate +obligate anaerobe|1 +(noun)|anaerobe +obligated|1 +(adj)|obligated |beholden|duty-bound|obliged|indebted|indebted|supposed|tributary|responsible +obligation|4 +(noun)|duty|responsibility|social control +(noun)|state +(noun)|personal relation|personal relationship +(noun)|written agreement +obligational|1 +(adj)|written agreement +obligato|2 +(noun)|obbligato|motif|motive +(noun)|obbligato|section|subdivision +obligatorily|1 +(adv)|compulsorily|mandatorily +obligatory|2 +(adj)|obligatory |bounden|compulsory|mandatory|required|de rigueur|imposed|incumbent on|indispensable|prerequisite|necessary +(adj)|necessary +oblige|3 +(verb)|compel|obligate|induce|stimulate|cause|have|get|make +(verb)|bind|hold|obligate|relate +(verb)|accommodate|comply|follow|abide by +obliged|1 +(adj)|duty-bound|obligated +obliger|1 +(noun)|accommodator|benefactor|helper +obliging|2 +(adj)|complying|yielding|compliant +(adj)|complaisant|accommodating |accommodative +obligingly|1 +(adv)|accommodatingly +obligingness|1 +(noun)|complaisance|compliance|compliancy|deference|agreeableness|agreeability +oblique|4 +(adj)|oblique |bias|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|crabwise|sideways|diagonal|nonparallel|convergent|divergent|diverging|inclined +(adj)|devious|indirect +(noun)|oblique case|case|grammatical case +(noun)|external oblique muscle|musculus obliquus externus abdominis|abdominal external oblique muscle|abdominal|abdominal muscle|ab +oblique angle|1 +(noun)|angle +oblique bandage|1 +(noun)|bandage|patch +oblique case|1 +(noun)|oblique|case|grammatical case +oblique triangle|1 +(noun)|triangle|trigon|trilateral +oblique vein of the left atrium|1 +(noun)|vena obliqua atrii sinistri|vein|vena|venous blood vessel +obliquely|2 +(adv)|sidelong|sideways +(adv)|aslant|athwart +obliqueness|2 +(noun)|spatial property|spatiality +(noun)|deviousness|indirectness +obliquity|2 +(noun)|asynclitism|abnormality|abnormalcy|abnormal condition +(noun)|deceptiveness|dishonesty +obliterable|1 +(adj)|removable|eradicable +obliterate|5 +(adj)|blotted out|obliterated|destroyed +(verb)|kill|wipe out|take away|take out +(verb)|obscure|blot out|veil|hide|change|alter|modify +(verb)|efface|blur|dim|slur +(verb)|eliminate|get rid of|do away with +obliterated|1 +(adj)|blotted out|obliterate|destroyed +obliterating|1 +(adj)|obscurant|destructive +obliteration|2 +(noun)|annihilation|destruction|devastation +(noun)|eradication|destruction|demolition|wipeout +obliterator|1 +(noun)|eliminator +oblivion|2 +(noun)|limbo|obscurity +(noun)|obliviousness|forgetfulness +oblivious|2 +(adj)|unmindful|unaware +(adj)|forgetful|inattentive +obliviousness|1 +(noun)|oblivion|forgetfulness +oblong|3 +(adj)|simple |unsubdivided|rounded +(adj)|long +(noun)|plane figure|two-dimensional figure +oblong leaf|1 +(noun)|simple leaf +oblong woodsia|1 +(noun)|rusty woodsia|fragrant woodsia|Woodsia ilvensis|woodsia +oblongness|1 +(noun)|rectangularity|angularity +obloquy|2 +(noun)|opprobrium|shame|disgrace|ignominy +(noun)|defamation|calumny|traducement|hatchet job|disparagement|depreciation|derogation +obnoxious|1 +(adj)|objectionable|unpleasant|offensive +obnoxiously|1 +(adv)|offensively|objectionably +obnoxiousness|1 +(noun)|hatefulness|objectionableness|offensiveness|odiousness|distastefulness +obnubilate|2 +(verb)|obscure|befog|becloud|haze over|fog|cloud|mist|hide|conceal +(verb)|confuse|blur|obscure|change|alter|modify +oboe|1 +(noun)|hautboy|hautbois|double-reed instrument|double reed +oboe d'amore|1 +(noun)|oboe|hautboy|hautbois +oboe da caccia|1 +(noun)|oboe|hautboy|hautbois +oboist|1 +(noun)|musician|instrumentalist|player +obolus|1 +(noun)|weight unit|weight +obovate|1 +(adj)|simple |unsubdivided +obovate leaf|1 +(noun)|simple leaf +obscene|3 +(adj)|indecent +(adj)|abhorrent|detestable|repugnant|repulsive|offensive +(adj)|lewd|raunchy|salacious|dirty +obscenely|1 +(adv)|lewdly +obscenity|3 +(noun)|lewdness|bawdiness|salaciousness|salacity|indecency +(noun)|vulgarism|dirty word|profanity +(noun)|indecency|impropriety +obscurant|1 +(adj)|obliterating|destructive +obscurantism|2 +(noun)|policy +(noun)|deception|deceit|dissembling|dissimulation +obscurantist|1 +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +obscure|11 +(adj)|vague|unclear +(adj)|dark|incomprehensible |uncomprehensible +(adj)|hidden|concealed +(adj)|unknown|unsung|inglorious |dishonorable +(adj)|unnoticeable|inconspicuous |invisible +(adj)|apart|isolated|unconnected +(verb)|befog|becloud|obnubilate|haze over|fog|cloud|mist|hide|conceal +(verb)|confuse|blur|obnubilate|change|alter|modify +(verb)|bedim|overcloud|change|alter|modify +(verb)|blot out|obliterate|veil|hide|change|alter|modify +(verb)|benight|bedim|darken +obscureness|3 +(noun)|humbleness|unimportance|obscurity +(noun)|obscurity|semidarkness +(noun)|obscurity|abstruseness|reconditeness|incomprehensibility +obscurity|3 +(noun)|obscureness|abstruseness|reconditeness|incomprehensibility +(noun)|standing +(noun)|obscureness|semidarkness +obsequious|2 +(adj)|bootlicking|fawning|sycophantic|toadyish|insincere +(adj)|servile +obsequiously|1 +(adv)|subserviently|servilely +obsequiousness|1 +(noun)|servility|subservience|submissiveness +observable|1 +(adj)|discernible|evident|noticeable +observably|1 +(adv)|imperceptibly|unnoticeably +observance|4 +(noun)|observation|watching|look|looking|looking at +(noun)|ceremony|ceremonial|ceremonial occasion|affair|occasion|social occasion|function|social function +(noun)|notice|observation|attention|attending +(noun)|honoring|conformity|conformation|compliance|abidance +observant|3 +(adj)|attentive +(adj)|observing|perceptive +(adj)|law-abiding|lawful +observantly|1 +(adv)|observingly +observation|5 +(noun)|measurement|measuring|measure|mensuration +(noun)|observance|watching|look|looking|looking at +(noun)|fact +(noun)|notice|observance|attention|attending +(noun)|reflection|reflexion|remark|comment +observation dome|1 +(noun)|lookout|observation tower|lookout station|observatory +observation post|1 +(noun)|lookout|post|station +observation station|1 +(noun)|station +observation tower|1 +(noun)|lookout|lookout station|observatory|structure|construction +observational|1 +(adj)|experimental|data-based|empirical |empiric +observatory|2 +(noun)|building|edifice +(noun)|lookout|observation tower|lookout station|structure|construction +observe|9 +(verb)|detect|find|discover|notice|sight +(verb)|note|mention|remark|state|say|tell +(verb)|note|take note +(verb)|watch +(verb)|respect|honor|honour|abide by|accept +(verb)|celebrate|keep +(verb)|watch|follow|watch over|keep an eye on|check|check up on|look into|check out|suss out|check over|go over|check into +(verb)|keep|maintain +(verb)|keep +observed|1 +(adj)|ascertained|discovered|determined +observed fire|1 +(noun)|fire|firing +observer|2 +(noun)|perceiver|beholder|person|individual|someone|somebody|mortal|human|soul +(noun)|commentator|expert +observer's meridian|1 +(noun)|meridian|longitude|line of longitude +observing|1 +(adj)|observant|perceptive +observingly|1 +(adv)|observantly +obsess|2 +(verb)|haunt|ghost|preoccupy +(verb)|worry +obsessed|2 +(adj)|haunted|preoccupied|taken up|concerned +(adj)|possessed|controlled +obsession|2 +(noun)|compulsion|irrational motive +(noun)|fixation|preoccupation +obsessional|1 +(adj)|obsessive|neurotic |psychoneurotic +obsessionally|1 +(adv)|compulsively|obsessively +obsessive|1 +(adj)|obsessional|neurotic |psychoneurotic +obsessive-compulsive|1 +(adj)|neurotic |psychoneurotic +obsessive-compulsive personality|1 +(noun)|personality +obsessively|1 +(adv)|compulsively|obsessionally +obsessiveness|1 +(noun)|obsessivity|compulsiveness|compulsivity +obsessivity|1 +(noun)|obsessiveness|compulsiveness|compulsivity +obsidian|1 +(noun)|volcanic glass +obsolesce|1 +(verb)|change +obsolescence|1 +(noun)|degeneration|devolution +obsolescent|1 +(adj)|noncurrent +obsolete|2 +(adj)|outdated|out-of-date|superannuated|noncurrent +(adj)|disused|noncurrent +obsoleteness|1 +(noun)|superannuation|oldness +obstacle|2 +(noun)|obstruction|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|obstruction|obstructor|obstructer|impediment|impedimenta +obstacle race|1 +(noun)|footrace|foot race|run +obstetric|1 +(adj)|obstetrical|medicine|medical specialty +obstetrical|1 +(adj)|obstetric|medicine|medical specialty +obstetrical delivery|1 +(noun)|delivery|deed|feat|effort|exploit +obstetrical toad|1 +(noun)|midwife toad|Alytes obstetricans|frog|toad|toad frog|anuran|batrachian|salientian +obstetrician|1 +(noun)|accoucheur|specialist|medical specialist +obstetrics|1 +(noun)|OB|tocology|midwifery|medicine|medical specialty +obstinacy|2 +(noun)|stubbornness|obstinance|mulishness|intractability|intractableness +(noun)|stubbornness|bullheadedness|obstinance|pigheadedness|self-will|resoluteness|firmness|resolve|resolution +obstinance|2 +(noun)|stubbornness|obstinacy|mulishness|intractability|intractableness +(noun)|stubbornness|bullheadedness|obstinacy|pigheadedness|self-will|resoluteness|firmness|resolve|resolution +obstinate|4 +(adj)|cussed|obdurate|unrepentant|unregenerate |unregenerated +(adj)|contrary|perverse|wayward|disobedient +(adj)|stubborn|unregenerate|unreconstructed +(verb)|persevere|persist|hang in|hang on|hold on +obstinately|1 +(adv)|stubbornly|pig-headedly|obdurately|mulishly|cussedly +obstipate|1 +(verb)|constipate|bind +obstipation|1 +(noun)|constipation|irregularity +obstreperous|2 +(adj)|defiant |noncompliant +(adj)|aggressive +obstreperously|1 +(adv)|loudly|clamorously +obstreperousness|1 +(noun)|defiance|rebelliousness +obstruct|3 +(verb)|blockade|block|hinder|stymie|stymy|embarrass|prevent|forestall|foreclose|preclude|forbid +(verb)|obturate|impede|occlude|jam|block|close up|impede|hinder +(verb)|block|hide|conceal +obstructed|1 +(adj)|obstructed |barricaded|barred|blockaded|blocked|plugged|choked|clogged|deadlocked|stalemated|impeded|occluded|stopped|stopped-up|stopped up|thrombosed|closed +obstructer|2 +(noun)|obstructionist|obstructor|resister|thwarter|disputant|controversialist|eristic +(noun)|obstruction|obstructor|impediment|impedimenta|structure|construction +obstruction|5 +(noun)|obstructor|obstructer|impediment|impedimenta|structure|construction +(noun)|blockage|physiological state|physiological condition +(noun)|obstacle|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|hindrance|interference +(noun)|maneuver|manoeuvre|play +obstruction of justice|1 +(noun)|obstruction +obstructionism|1 +(noun)|resistance +obstructionist|1 +(noun)|obstructor|obstructer|resister|thwarter|disputant|controversialist|eristic +obstructive|1 +(adj)|clogging|hindering|impeding|preventive |preventative +obstructive shock|1 +(noun)|shock +obstructively|1 +(adv)|hinderingly +obstructor|2 +(noun)|obstructionist|obstructer|resister|thwarter|disputant|controversialist|eristic +(noun)|obstruction|obstructer|impediment|impedimenta|structure|construction +obtain|3 +(verb)|get|acquire +(verb)|receive|get|find|incur|change +(verb)|prevail|hold|exist|be +obtainable|1 +(adj)|gettable|getable|procurable|available +obtainment|1 +(noun)|obtention|acquiring|getting +obtention|1 +(noun)|obtainment|acquiring|getting +obtrude|2 +(verb)|push out|thrust out|push|force +(verb)|intrude|inflict|bring down|visit|impose +obtrude upon|1 +(verb)|intrude on|invade|encroach upon|enter|come in|get into|get in|go into|go in|move into +obtrusive|2 +(adj)|obtrusive |noticeable +(adj)|protrusive +obtrusiveness|1 +(noun)|conspicuousness +obtund|1 +(verb)|deaden|blunt +obturate|1 +(verb)|obstruct|impede|occlude|jam|block|close up|impede|hinder +obturator|1 +(noun)|prosthesis|prosthetic device +obturator vein|1 +(noun)|vena obturatoria|vein|vena|venous blood vessel +obtuse|4 +(adj)|obtuse +(adj)|simple |unsubdivided +(adj)|purblind|undiscerning +(adj)|dense|dim|dull|dumb|slow|stupid +obtuse-angled triangle|1 +(noun)|obtuse triangle|triangle|trigon|trilateral +obtuse angle|1 +(noun)|oblique angle +obtuse leaf|1 +(noun)|simple leaf +obtuse triangle|1 +(noun)|obtuse-angled triangle|triangle|trigon|trilateral +obtusely|1 +(adv)|dumbly|densely +obtuseness|2 +(noun)|dullness|dulness|stupidity +(noun)|dullness|dulness|bluntness +obverse|2 +(noun)|option|alternative|choice +(noun)|side +obviate|2 +(verb)|rid of|eliminate +(verb)|debar|deflect|avert|head off|stave off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +obviating|1 +(adj)|preclusive|preventive |preventative +obviation|1 +(noun)|forestalling|preclusion|prevention|bar +obvious|4 +(adj)|obvious |apparent|evident|manifest|patent|plain|axiomatic|self-evident|taken for granted|demonstrable|provable|frank|open-and-shut|self-explanatory|transparent|writ large +(adj)|perceptible|palpable |tangible +(adj)|conspicuous |attention-getting|eye-catching|big|large|prominent|bold|crying|egregious|flagrant|glaring|gross|rank|featured|in evidence|marked|outstanding|prominent|salient|spectacular|striking|indiscreet +(adj)|visible|overt |open +obviously|1 +(adv)|evidently|manifestly|patently|apparently|plainly|plain +obviousness|1 +(noun)|noticeability|noticeableness|patency|conspicuousness +oca|1 +(noun)|oka|Oxalis tuberosa|Oxalis crenata|oxalis|sorrel|wood sorrel +ocarina|1 +(noun)|sweet potato|wind instrument|wind +occam|1 +(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher +occam's razor|1 +(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|law of parsimony|principle|rule +occasion|6 +(noun)|juncture|happening|occurrence|natural event +(noun)|affair|social occasion|function|social function|social event +(noun)|reason|ground +(noun)|time +(noun)|opportunity|chance +(verb)|cause|do|make +occasional|3 +(adj)|infrequent +(adj)|episodic|unpredictable +(adj)|casual|irregular +occasionally|1 +(adv)|on occasion|once in a while|now and then|now and again|at times|from time to time +occasions|6 +(noun)|business +(noun)|juncture|occasion|happening|occurrence|natural event +(noun)|affair|occasion|social occasion|function|social function|social event +(noun)|occasion|reason|ground +(noun)|occasion|time +(noun)|occasion|opportunity|chance +occident|2 +(noun)|West|Occident|region +(noun)|western hemisphere|New World|hemisphere +occidental|3 +(adj)|Hesperian|western +(noun)|Occidental|inhabitant|dweller|denizen|indweller +(noun)|Occidental|artificial language +occidentalise|1 +(verb)|occidentalize|westernize|westernise|change|alter|modify +occidentalism|2 +(noun)|Occidentalism|humanistic discipline|humanities|liberal arts|arts +(noun)|quality +occidentalize|1 +(verb)|occidentalise|westernize|westernise|change|alter|modify +occipital|1 +(adj)|bone|os +occipital bone|1 +(noun)|membrane bone +occipital gyrus|1 +(noun)|gyrus|convolution +occipital lobe|1 +(noun)|lobe +occipital protuberance|1 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +occipital vein|1 +(noun)|vena occipitalis|vein|vena|venous blood vessel +occipitomastoid suture|1 +(noun)|suture|sutura|fibrous joint +occiput|1 +(noun)|bone|os +occitan|1 +(noun)|Provencal|Occitan|Langue d'oc|Langue d'oc French +occlude|1 +(verb)|obstruct|obturate|impede|jam|block|close up|impede|hinder +occluded|2 +(adj)|obstructed +(adj)|sorbed|combined +occluded front|1 +(noun)|occlusion|front +occlusion|5 +(noun)|attack +(noun)|occluded front|front +(noun)|position|spatial relation +(noun)|blockage|block|closure|stop|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|blockage|closure|obstruction +occlusive|2 +(adj)|attack +(noun)|stop consonant|stop|plosive consonant|plosive speech sound|plosive|consonant +occult|7 +(adj)|invisible |unseeable +(adj)|mysterious|mystic|mystical|secret|orphic|esoteric +(noun)|supernatural|causal agent|cause|causal agency +(noun)|occult arts|practice|pattern +(verb)|eclipse|overshadow +(verb)|change +(verb)|conceal|hold back|hold in +occult arts|1 +(noun)|occult|practice|pattern +occultation|1 +(noun)|eclipse|interruption|break +occultism|2 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|supernaturalism +occultist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +occupancy|2 +(noun)|tenancy|residency|residence|abidance +(noun)|occupation|taking possession|moving in|acquiring|getting +occupancy rate|1 +(noun)|percentage|percent|per centum|pct +occupant|1 +(noun)|resident|occupier|inhabitant|dweller|denizen|indweller +occupation|5 +(noun)|business|job|line of work|line|activity +(noun)|military control|social control +(noun)|activity +(noun)|occupancy|taking possession|moving in|acquiring|getting +(noun)|time period|period of time|period +occupation licence|1 +(noun)|occupation license|license|licence|permit +occupation license|1 +(noun)|occupation licence|license|licence|permit +occupational|1 +(adj)|activity +occupational disease|1 +(noun)|industrial disease|disease +occupational group|1 +(noun)|vocation|body +occupational hazard|1 +(noun)|hazard|jeopardy|peril|risk +occupational safety and health act|1 +(noun)|federal job safety law|legislation|statute law +occupational safety and health administration|1 +(noun)|Occupational Safety and Health Administration|OSHA|agency|federal agency|government agency|bureau|office|authority +occupational therapy|1 +(noun)|physical therapy|physiotherapy|physiatrics +occupied|4 +(adj)|occupied |busy|engaged|in use|filled +(adj)|occupied +(adj)|tenanted|inhabited +(adj)|engaged|busy +occupier|2 +(noun)|resident|occupant|inhabitant|dweller|denizen|indweller +(noun)|serviceman|military man|man|military personnel +occupy|8 +(verb)|inhabit|be +(verb)|busy|work +(verb)|reside|lodge in|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|fill|be +(verb)|concern|interest|worry +(verb)|take|use up|use|expend +(verb)|invade|attack|assail +(verb)|absorb|engross|engage|interest +occur|3 +(verb)|happen|hap|go on|pass off|pass|fall out|come about|take place +(verb)|come|become +(verb)|appear|come along +occurrence|2 +(noun)|happening|natural event|event +(noun)|presence +ocean|2 +(noun)|body of water|water +(noun)|sea|large indefinite quantity|large indefinite amount +ocean bottom|1 +(noun)|ocean floor|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed|bottom +ocean current|1 +(noun)|current|stream +ocean floor|1 +(noun)|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed|bottom +ocean liner|1 +(noun)|liner|passenger ship +ocean perch|2 +(noun)|redfish|rosefish|rockfish +(noun)|rosefish|Sebastodes marinus|rockfish +ocean pout|1 +(noun)|Macrozoarces americanus|eelpout|pout +ocean state|1 +(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state +ocean sunfish|1 +(noun)|sunfish|mola|headfish|plectognath|plectognath fish +ocean trip|1 +(noun)|voyage|water travel|seafaring +oceanaut|1 +(noun)|aquanaut|skilled worker|trained worker +oceanfront|1 +(noun)|geological formation|formation +oceangoing|1 +(adj)|seafaring|seagoing|sea +oceania|1 +(noun)|Oceania|Oceanica|archipelago +oceanic|4 +(adj)|pelagic|body of water|water +(adj)|unlimited |limitless +(adj)|sea +(noun)|Oceanic|Eastern Malayo-Polynesian|Malayo-Polynesian +oceanic abyss|1 +(noun)|trench|deep|natural depression|depression +oceanic bird|1 +(noun)|pelagic bird|seabird|sea bird|seafowl +oceanic bonito|1 +(noun)|bonito|Katsuwonus pelamis|scombroid|scombroid fish +oceanic whitetip shark|1 +(noun)|whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark +oceanica|1 +(noun)|Oceania|Oceanica|archipelago +oceanid|1 +(noun)|Oceanid|sea nymph +oceanites|1 +(noun)|Oceanites|genus Oceanites|bird genus +oceanites oceanicus|1 +(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel +oceanographer|1 +(noun)|scientist|man of science +oceanography|1 +(noun)|earth science +oceanus|1 +(noun)|Oceanus|Titan +ocellated|1 +(adj)|marking +ocellated turkey|1 +(noun)|Agriocharis ocellata|turkey|gallinaceous bird|gallinacean +ocellus|2 +(noun)|simple eye|stemma|eye|oculus|optic +(noun)|eyespot|marking +ocelot|1 +(noun)|panther cat|Felis pardalis|wildcat +ocher|3 +(adj)|ochre|chromatic +(noun)|ochre|orange yellow|saffron +(noun)|ochre|earth color +ochna|1 +(noun)|Ochna|genus Ochna|dilleniid dicot genus +ochna family|1 +(noun)|Ochnaceae|family Ochnaceae|dilleniid dicot family +ochna serrulata|1 +(noun)|bird's-eye bush|Ochna serrulata|shrub|bush +ochnaceae|1 +(noun)|Ochnaceae|family Ochnaceae|ochna family|dilleniid dicot family +ochoa|1 +(noun)|Ochoa|Severo Ochoa|biochemist +ochotona|1 +(noun)|Ochotona|genus Ochotona|mammal genus +ochotona collaris|1 +(noun)|collared pika|Ochotona collaris|pika|mouse hare|rock rabbit|coney|cony +ochotona princeps|1 +(noun)|little chief hare|Ochotona princeps|pika|mouse hare|rock rabbit|coney|cony +ochotonidae|1 +(noun)|Ochotonidae|family Ochotonidae|mammal family +ochre|3 +(adj)|ocher|chromatic +(noun)|ocher|earth color +(noun)|ocher|orange yellow|saffron +ochroma|1 +(noun)|Ochroma|genus Ochroma|dilleniid dicot genus +ochroma lagopus|1 +(noun)|balsa|Ochroma lagopus|angiospermous tree|flowering tree +ochronosis|1 +(noun)|symptom +ochs|1 +(noun)|Ochs|Adolph Simon Ochs|publisher +ocimum|1 +(noun)|Ocimum|genus Ocimum|asterid dicot genus +ocimum basilicum|1 +(noun)|common basil|sweet basil|Ocimum basilicum|basil +ockham|1 +(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher +ockham's razor|1 +(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|law of parsimony|principle|rule +oconee bells|1 +(noun)|Shortia galacifolia|shortia +ocotillo|1 +(noun)|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood +oct|1 +(noun)|October|Oct|Gregorian calendar month +octad|1 +(noun)|eight|8|VIII|eighter|eighter from Decatur|ogdoad|octonary|octet|digit|figure +octadecanoic acid|1 +(noun)|stearic acid|saturated fatty acid +octagon|1 +(noun)|polygon|polygonal shape +octagonal|1 +(adj)|octangular|polygon|polygonal shape +octahedron|1 +(noun)|polyhedron +octal|1 +(adj)|positional notation|positional representation system +octal digit|1 +(noun)|digit|figure +octal notation|1 +(noun)|mathematical notation +octal number system|1 +(noun)|octal numeration system|positional notation|positional representation system +octal numeration system|1 +(noun)|octal number system|positional notation|positional representation system +octameter|1 +(noun)|verse|verse line +octane|1 +(noun)|hydrocarbon +octane number|1 +(noun)|octane rating|measure|quantity|amount +octane rating|1 +(noun)|octane number|measure|quantity|amount +octanedioic acid|1 +(noun)|suberic acid|carboxylic acid +octangular|1 +(adj)|octagonal|polygon|polygonal shape +octans|1 +(noun)|Octans|constellation +octant|1 +(noun)|measuring instrument|measuring system|measuring device +octave|3 +(noun)|religious festival|church festival +(noun)|musical octave|interval|musical interval +(noun)|stanza +octavian|1 +(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman|solon|national leader|Roman Emperor|Emperor of Rome +octavo|1 +(noun)|eightvo|8vo|size +octet|5 +(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|digit|figure +(noun)|octette|musical organization|musical organisation|musical group +(noun)|octette|set +(noun)|octette|eightsome|gathering|assemblage +(noun)|octette|musical composition|opus|composition|piece|piece of music +octette|4 +(noun)|octet|musical organization|musical organisation|musical group +(noun)|octet|set +(noun)|octet|eightsome|gathering|assemblage +(noun)|octet|musical composition|opus|composition|piece|piece of music +october|1 +(noun)|October|Oct|Gregorian calendar month +october 12|1 +(noun)|Columbus Day|Discovery Day|October 12|legal holiday|national holiday +october 24|1 +(noun)|United Nations Day|October 24|day +october revolution|1 +(noun)|Russian Revolution|October Revolution|coup d'etat|coup|putsch|takeover +octoberfest|1 +(noun)|Oktoberfest|Octoberfest|lager|lager beer +octogenarian|2 +(adj)|old +(noun)|oldster|old person|senior citizen|golden ager +octonary|1 +(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octet|digit|figure +octopod|1 +(noun)|cephalopod|cephalopod mollusk +octopoda|1 +(noun)|Octopoda|order Octopoda|animal order +octopodidae|1 +(noun)|Octopodidae|family Octopodidae|mollusk family +octopus|2 +(noun)|seafood +(noun)|devilfish|octopod +octoroon|1 +(noun)|Octoroon|mixed-blood +octosyllabic|2 +(adj)|syllabic +(adj)|syllabic +octosyllable|1 +(noun)|verse|verse line +octroi|1 +(noun)|duty|tariff +octuple|1 +(adj)|eightfold|multiple +ocular|4 +(adj)|optic|optical|opthalmic|sense organ|sensory receptor|receptor +(adj)|optic|optical|visual|modality|sense modality|sensory system|exteroception +(adj)|visual|visible |seeable +(noun)|eyepiece|lens|lense|lens system +ocular muscle|1 +(noun)|eye muscle|muscle|musculus +oculist|2 +(noun)|optometrist|specialist|specializer|specialiser +(noun)|ophthalmologist|eye doctor|specialist|medical specialist +oculomotor|1 +(noun)|oculomotor nerve|nervus oculomotorius|third cranial nerve|cranial nerve +oculomotor nerve|1 +(noun)|oculomotor|nervus oculomotorius|third cranial nerve|cranial nerve +oculopharyngeal muscular dystrophy|1 +(noun)|muscular dystrophy|dystrophy +oculus|1 +(noun)|eye|optic|sense organ|sensory receptor|receptor +oculus dexter|1 +(noun)|OD|eye|oculus|optic +oculus sinister|1 +(noun)|OS|eye|oculus|optic +ocyurus|1 +(noun)|Ocyurus|genus Ocyurus|fish genus +ocyurus chrysurus|1 +(noun)|yellowtail|yellowtail snapper|Ocyurus chrysurus|snapper +od|2 +(noun)|Doctor of Optometry|OD|doctor's degree|doctorate +(noun)|oculus dexter|OD|eye|oculus|optic +odalisque|1 +(noun)|concubine|courtesan|doxy|paramour|mistress|kept woman|fancy woman +odd|6 +(adj)|odd +(adj)|unusual +(adj)|inexact +(adj)|curious|funny|peculiar|queer|rum|rummy|singular|strange |unusual +(adj)|unmatched|unmated|unpaired|mismatched +(adj)|leftover|left over|left|remaining|unexpended|unexhausted +odd-even check|1 +(noun)|parity check|redundant check|confirmation|verification|check|substantiation +odd-job|1 +(adj)|part-time +odd-job man|1 +(noun)|handyman|jack of all trades|repairman|repairer|maintenance man|service man|fixer +odd-leg caliper|1 +(noun)|caliper|calipers|calliper|callipers +odd-pinnate|1 +(adj)|imparipinnate|compound +odd-pinnate leaf|1 +(noun)|pinnate leaf +odd-toed ungulate|1 +(noun)|perissodactyl|perissodactyl mammal|ungulate|hoofed mammal +odd fellow|1 +(noun)|kook|odd fish|queer bird|queer duck|odd man out|anomaly|unusual person +odd fish|1 +(noun)|kook|odd fellow|queer bird|queer duck|odd man out|anomaly|unusual person +odd hassel|1 +(noun)|Hassel|Odd Hassel|chemist +odd man out|1 +(noun)|kook|odd fellow|odd fish|queer bird|queer duck|anomaly|unusual person +oddball|1 +(noun)|eccentric|eccentric person|flake|geek|anomaly|unusual person +oddish|1 +(adj)|strange |unusual +oddity|3 +(noun)|oddness|eccentricity +(noun)|queerness|quirk|quirkiness|crotchet|unfamiliarity|strangeness +(noun)|curio|curiosity|oddment|peculiarity|rarity|object|physical object +oddly|2 +(adv)|curiously|peculiarly +(adv)|queerly|strangely|funnily|funny +oddly enough|1 +(adv)|curiously enough|funnily enough|interestingly enough|strangely enough +oddment|2 +(noun)|end|remainder|remnant|piece of cloth|piece of material +(noun)|curio|curiosity|oddity|peculiarity|rarity|object|physical object +oddments|3 +(noun)|odds and ends|melange|farrago|ragbag|hodgepodge|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|end|remainder|remnant|oddment|piece of cloth|piece of material +(noun)|curio|curiosity|oddity|oddment|peculiarity|rarity|object|physical object +oddness|1 +(noun)|oddity|eccentricity +odds|2 +(noun)|likelihood|likeliness|probability +(noun)|betting odds|ratio +odds-maker|1 +(noun)|handicapper|gambler +odds-on|1 +(adj)|unequal +odds and ends|1 +(noun)|oddments|melange|farrago|ragbag|hodgepodge|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +ode|1 +(noun)|lyric|lyric poem +oder|1 +(noun)|Oder|Oder River|river +oder river|1 +(noun)|Oder|Oder River|river +odesa|1 +(noun)|Odessa|Odesa|city|metropolis|urban center|port +odessa|2 +(noun)|Odessa|Odesa|city|metropolis|urban center|port +(noun)|Odessa|city|metropolis|urban center +odets|1 +(noun)|Odets|Clifford Odets|dramatist|playwright +odin|1 +(noun)|Odin|Norse deity +odious|1 +(adj)|abominable|detestable|execrable|hateful +odiously|1 +(adv)|detestably|repulsively|abominably +odiousness|1 +(noun)|offensiveness|distastefulness|unpleasantness +odium|2 +(noun)|shame|disgrace|ignominy +(noun)|abhorrence|abomination|detestation|execration|loathing|hate|hatred|disgust +odo of lagery|1 +(noun)|Urban II|Odo of Lagery|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +odoacer|1 +(noun)|Odoacer|Odovacar|Odovakar|savage|barbarian +odobenidae|1 +(noun)|Odobenidae|family Odobenidae|mammal family +odobenus|1 +(noun)|Odobenus|genus Odobenus|mammal genus +odobenus divergens|1 +(noun)|Pacific walrus|Odobenus divergens|walrus|seahorse|sea horse +odobenus rosmarus|1 +(noun)|Atlantic walrus|Odobenus rosmarus|walrus|seahorse|sea horse +odocoileus|1 +(noun)|Odocoileus|genus Odocoileus|mammal genus +odocoileus hemionus|1 +(noun)|mule deer|burro deer|Odocoileus hemionus|deer|cervid +odocoileus hemionus columbianus|1 +(noun)|black-tailed deer|blacktail deer|blacktail|Odocoileus hemionus columbianus|mule deer|burro deer|Odocoileus hemionus +odocoileus virginianus|1 +(noun)|Virginia deer|white tail|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer|cervid +odometer|1 +(noun)|hodometer|mileometer|milometer|meter +odonata|1 +(noun)|Odonata|order Odonata|animal order +odonate|1 +(noun)|insect +odontalgia|1 +(noun)|toothache|ache|aching +odontaspididae|1 +(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family +odontaspis|1 +(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus +odontaspis taurus|1 +(noun)|sand tiger|sand shark|Carcharias taurus|Odontaspis taurus|shark +odontiasis|1 +(noun)|teething|dentition|growth|growing|maturation|development|ontogeny|ontogenesis +odontoceti|1 +(noun)|Odontoceti|suborder Odontoceti|animal order +odontoglossum|1 +(noun)|orchid|orchidaceous plant +odontoid process|1 +(noun)|process|outgrowth|appendage +odontology|1 +(noun)|dentistry|dental medicine|medicine|medical specialty +odontophorus|1 +(noun)|Odontophorus|genus Odontophorus|bird genus +odor|2 +(noun)|olfactory property|smell|aroma|odour|scent|property +(noun)|smell|odour|olfactory sensation|olfactory perception|sensation|sense experience|sense impression|sense datum +odoriferous|4 +(adj)|unsavory |unsavoury|offensive +(adj)|odorous +(adj)|odorous|malodorous |malodourous +(adj)|odorous|perfumed|scented|sweet|sweet-scented|sweet-smelling|fragrant +odorize|1 +(verb)|odourise|scent|cause to be perceived +odorless|1 +(adj)|odorless |odourless|inodorous|scentless +odorous|3 +(adj)|odorous |alliaceous|odoriferous|redolent|smelling|scented +(adj)|odoriferous|malodorous |malodourous +(adj)|odoriferous|perfumed|scented|sweet|sweet-scented|sweet-smelling|fragrant +odour|2 +(noun)|smell|odor|olfactory sensation|olfactory perception|sensation|sense experience|sense impression|sense datum +(noun)|olfactory property|smell|aroma|odor|scent|property +odourise|1 +(verb)|odorize|scent|cause to be perceived +odourless|1 +(adj)|odorless |inodorous|scentless +odovacar|1 +(noun)|Odoacer|Odovacar|Odovakar|savage|barbarian +odovakar|1 +(noun)|Odoacer|Odovacar|Odovakar|savage|barbarian +odynophagia|1 +(noun)|pain|hurting +odysseus|1 +(noun)|Odysseus|mythical being +odyssey|2 +(noun)|journey|journeying +(noun)|Odyssey|epic poem|heroic poem|epic|epos +oecanthus|1 +(noun)|Oecanthus|genus Oecanthus|arthropod genus +oecanthus fultoni|1 +(noun)|snowy tree cricket|Oecanthus fultoni|tree cricket +oecumenic|1 +(adj)|ecumenic|ecumenical|oecumenical|nonsectarian |unsectarian +oecumenical|2 +(adj)|ecumenic|oecumenic|ecumenical|nonsectarian |unsectarian +(adj)|cosmopolitan|ecumenical|general|universal|worldwide|comprehensive +oed|1 +(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary +oedema|1 +(noun)|edema|hydrops|dropsy|swelling|puffiness|lump +oedipal complex|1 +(noun)|Oedipus complex|Oedipal complex|complex +oedipus|1 +(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being +oedipus complex|1 +(noun)|Oedipus complex|Oedipal complex|complex +oedipus rex|1 +(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being +oedogoniaceae|1 +(noun)|Oedogoniaceae|family Oedogoniaceae|protoctist family +oedogoniales|1 +(noun)|Oedogoniales|order oedogoniales|protoctist order +oedogonium|1 +(noun)|Oedogonium|genus Oedogonium|protoctist genus +oeil de boeuf|1 +(noun)|window +oenanthe|2 +(noun)|Oenanthe|genus Oenanthe|rosid dicot genus +(noun)|Oenanthe|genus Oenanthe|bird genus +oenanthe aquatica|1 +(noun)|water fennel|Oenanthe aquatica|poisonous plant +oenanthe crocata|1 +(noun)|water dropwort|hemlock water dropwort|Oenanthe crocata|poisonous plant +oengus|1 +(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity +oenologist|1 +(noun)|enologist|fermentologist|specialist|specializer|specialiser +oenology|1 +(noun)|enology|art|artistry|prowess +oenophile|1 +(noun)|oenophilist|wine lover|connoisseur|cognoscenti +oenophilist|1 +(noun)|oenophile|wine lover|connoisseur|cognoscenti +oenothera|1 +(noun)|Oenothera|genus Oenothera|dicot genus|magnoliopsid genus +oenothera biennis|1 +(noun)|common evening primrose|German rampion|Oenothera biennis|evening primrose +oenothera fruticosa|1 +(noun)|sundrops|Oenothera fruticosa|evening primrose +oenothera macrocarpa|1 +(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose +oersted|2 +(noun)|field strength unit +(noun)|Oersted|Hans Christian Oersted|physicist +oesophageal reflux|1 +(noun)|gastroesophageal reflux|esophageal reflux|reflux +oesophageal veins|1 +(noun)|esophageal veins|venae esophageae|vein|vena|venous blood vessel +oesophagitis|1 +(noun)|esophagitis|inflammation|redness|rubor +oesophagogastric junction|1 +(noun)|esophagogastric junction|articulation|join|joint|juncture|junction +oesophagoscope|1 +(noun)|esophagoscope|optical instrument +oesophagus|1 +(noun)|esophagus|gorge|gullet|passage|passageway|muscular structure|musculature|muscle system +oesterreich|1 +(noun)|Austria|Republic of Austria|Oesterreich|European country|European nation +oestradiol|1 +(noun)|estradiol|estrogen|oestrogen +oestridae|1 +(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family +oestriol|1 +(noun)|estriol|estrogen|oestrogen +oestrogen|1 +(noun)|estrogen|steroid hormone|steroid|sex hormone +oestrone|1 +(noun)|estrone|theelin|Estronol|estrogen|oestrogen|ketosteroid +oestrus|2 +(noun)|estrus|heat|rut|physiological state|physiological condition +(noun)|Oestrus|genus Oestrus|arthropod genus +oestrus ovis|1 +(noun)|sheep botfly|sheep gadfly|Oestrus ovis|botfly +oeuvre|1 +(noun)|work|body of work|end product|output +of a sudden|1 +(adv)|suddenly|all of a sudden +of age|1 +(adj)|aged|old +of all time|1 +(adv)|ever +of course|1 +(adv)|naturally|course +of each person|1 +(adv)|per capita|for each person +of her own|1 +(adj)|of one's own|of his own|of my own|of our own|of your own|of their own|personal +of his own|1 +(adj)|of one's own|of her own|of my own|of our own|of your own|of their own|personal +of import|1 +(adj)|important |all-important|all important|crucial|essential|of the essence|alpha|arch|big|burning|cardinal|central|fundamental|key|primal|chief|main|primary|principal|consequential|eventful|Copernican|distinguished|eminent|great|grave|grievous|heavy|weighty|historic|in-chief|measurable|most-valuable|serious|strategic|useful|valuable|of value|beta|essential|significant|important|valuable +of late|1 +(adv)|recently|late|lately|latterly +of my own|1 +(adj)|of one's own|of her own|of his own|of our own|of your own|of their own|personal +of necessity|1 +(adv)|inevitably|necessarily|needs +of one's own|1 +(adj)|of her own|of his own|of my own|of our own|of your own|of their own|personal +of our own|1 +(adj)|of one's own|of her own|of his own|of my own|of your own|of their own|personal +of sound mind|1 +(adj)|compos mentis|sane +of the essence|1 +(adj)|all-important|all important|crucial|essential|important |of import +of their own|1 +(adj)|of one's own|of her own|of his own|of my own|of our own|of your own|personal +of unsound mind|1 +(adj)|non compos mentis|insane +of value|1 +(adj)|useful|valuable|important |of import +of your own|1 +(adj)|of one's own|of her own|of his own|of my own|of our own|of their own|personal +ofactory impairment|1 +(noun)|dysosmia|parosamia|disorder|upset +off|7 +(adj)|off |disconnected +(adj)|unsatisfactory +(adj)|off |cancelled +(adj)|sour|turned|soured +(adj)|off duty|off-duty|inactive +(adv)|away|forth +(adv)|away +off-and-on|1 +(adj)|fitful|interrupted|broken +off-axis reflector|1 +(noun)|Herschelian telescope|reflecting telescope|reflector +off-base|1 +(adj)|peripheral +off-broadway|1 +(noun)|off-Broadway|city district +off-center|1 +(adj)|off-centered|eccentric |nonconcentric +off-centered|1 +(adj)|off-center|eccentric |nonconcentric +off-color|2 +(adj)|indelicate|off-colour|tasteless +(adj)|bawdy|ribald|dirty +off-colour|1 +(adj)|indelicate|off-color|tasteless +off-day|1 +(noun)|day +off-duty|2 +(adj)|off|off duty|inactive +(adj)| +off-guard|2 +(adj)|napping|off guard|off one's guard|off his guard|off her guard|off your guard|unready +(adj)| +off-hand|3 +(adv)|ex tempore +(adv)|offhand|offhanded|offhandedly +(adv)|offhand|offhanded|offhandedly +off-key|1 +(adj)|false|sour|inharmonious |unharmonious +off-licence|1 +(noun)|package store|liquor store|shop|store +off-limits|1 +(adj)|out-of-bounds|restricted +off-line|2 +(adj)|off-line +(adj)|off-line +off-line equipment|1 +(noun)|auxiliary equipment|electronic equipment +off-line operation|1 +(noun)|auxiliary operation|operation +off-peak|1 +(adj)|off-peak |off-season +off-putting|2 +(adj)|displeasing +(adj)|unappealing +off-road|1 +(adj)|cross-country +off-roader|1 +(noun)|mountain bike|all-terrain bike|bicycle|bike|wheel|cycle +off-season|2 +(adj)|off-peak +(noun)|season +off-site|1 +(adj)|off-site +off-speed pitch|1 +(noun)|change-up|change-of-pace|change-of-pace ball|pitch|delivery +off-street|1 +(adj)|off-street +off-the-cuff|1 +(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|unrehearsed|unprepared +off-the-peg|1 +(adj)|off-the-rack|off-the-shelf|ready-to-wear|ready-made +off-the-rack|1 +(adj)|off-the-shelf|off-the-peg|ready-to-wear|ready-made +off-the-shelf|1 +(adj)|off-the-rack|off-the-peg|ready-to-wear|ready-made +off-the-shoulder|1 +(adj)|unclothed +off-the-wall|1 +(adj)|bizarre|eccentric|freakish|freaky|flaky|outlandish|outre|unconventional +off-white|2 +(adj)|whitish|achromatic +(noun)|bone|ivory|pearl|white|whiteness +off and on|1 +(adv)|on and off +off duty|2 +(adj)|off|off-duty|inactive +(adj)| +off guard|2 +(adj)|napping|off-guard|off one's guard|off his guard|off her guard|off your guard|unready +(adj)| +off her guard|1 +(adj)|napping|off-guard|off guard|off one's guard|off his guard|off your guard|unready +off his guard|1 +(adj)|napping|off-guard|off guard|off one's guard|off her guard|off your guard|unready +off one's guard|1 +(adj)|napping|off-guard|off guard|off his guard|off her guard|off your guard|unready +off the beaten track|1 +(adj)|out-of-the-way|far +off the hook|1 +(adj)|safe +off year|2 +(noun)|year|twelvemonth|yr +(noun)|year|twelvemonth|yr +off your guard|1 +(adj)|napping|off-guard|off guard|off one's guard|off his guard|off her guard|unready +offal|1 +(noun)|variety meat|organs +offbeat|1 +(adj)|far-out|kinky|quirky|way-out|unconventional +offenbach|1 +(noun)|Offenbach|Jacques Offenbach|composer +offence|5 +(noun)|offense|offensive|operation|military operation +(noun)|offense|team|squad +(noun)|umbrage|offense|anger|choler|ire +(noun)|discourtesy|offense|offensive activity|behavior|behaviour|conduct|doings +(noun)|misdemeanor|misdemeanour|infraction|offense|violation|infringement|crime|law-breaking +offenceless|1 +(adj)|offenseless|inoffensive |unoffending +offend|4 +(verb)|pique|anger +(verb)|transgress|infract|violate|go against|breach|break|disrespect +(verb)|shock|scandalize|scandalise|appal|appall|outrage|disgust|revolt|nauseate|sicken|churn up +(verb)|hurt|wound|injure|bruise|spite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +offended|1 +(adj)|pained|displeased +offender|1 +(noun)|wrongdoer|bad person +offending|1 +(adj)|offending |offensive|violative|sinning +offense|5 +(noun)|discourtesy|offence|offensive activity|behavior|behaviour|conduct|doings +(noun)|umbrage|offence|anger|choler|ire +(noun)|misdemeanor|misdemeanour|infraction|offence|violation|infringement|crime|law-breaking +(noun)|offence|team|squad +(noun)|offence|offensive|operation|military operation +offenseless|1 +(adj)|offenceless|inoffensive |unoffending +offensive|8 +(adj)|violative|offending +(adj)|offensive |antipersonnel|assaultive|attacking|hit-and-run|tip-and-run|incursive|invading|invasive|marauding|predatory|raiding|on the offensive|aggressive|hostile +(adj)|offensive |abusive|insulting|opprobrious|scornful|scurrilous|disrespectful|harmful +(adj)|unsavory |unsavoury|odoriferous +(adj)|offensive |abhorrent|detestable|obscene|repugnant|repulsive|charnel|ghastly|sepulchral|creepy|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|ghoulish|morbid|hideous|horrid|horrific|outrageous|objectionable|obnoxious|unpleasant|rank|scrimy|verminous|evil|wicked|hateful|unpalatable|unpleasant +(adj)|dysphemistic +(adj)|nauseating|nauseous|noisome|loathsome|sickening|vile|unwholesome +(noun)|offense|offence|operation|military operation +offensive activity|1 +(noun)|discourtesy|offense|offence|behavior|behaviour|conduct|doings +offensively|1 +(adv)|objectionably|obnoxiously +offensiveness|1 +(noun)|odiousness|distastefulness|unpleasantness +offer|16 +(noun)|offering|speech act +(noun)|offering|message|content|subject matter|substance +(noun)|crack|fling|go|pass|whirl|attempt|effort|endeavor|endeavour|try +(verb)|supply|provide|render|furnish +(verb)|proffer|give +(verb)|volunteer|act|move +(verb)|project|propose +(verb)|extend|give|pay +(verb)|market +(verb)|bid|tender +(verb)|produce|bring on|bring out +(verb)|offer up|worship +(verb)|put up|provide|engage|wage +(verb)|extend|supply|provide|render|furnish +(verb)|propose|declare oneself|pop the question|request +(verb)|threaten +offer price|1 +(noun)|asking price|selling price +offer up|1 +(verb)|offer|worship +offerer|1 +(noun)|offeror|benefactor|helper +offering|4 +(noun)|offer|message|content|subject matter|substance +(noun)|contribution|donation +(noun)|offer|speech act +(noun)|oblation|giving|gift +offering protection|1 +(adv)|protectively|giving protection +offeror|1 +(noun)|offerer|benefactor|helper +offertory|2 +(noun)|offering +(noun)|Offertory|Oblation|religious offering +offhand|4 +(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhanded|off-the-cuff|unrehearsed|unprepared +(adj)|offhanded|careless +(adv)|offhanded|offhandedly +(adv)|offhanded|offhandedly +offhanded|4 +(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|off-the-cuff|unrehearsed|unprepared +(adj)|offhand|careless +(adv)|offhand|offhandedly +(adv)|offhand|offhandedly +offhandedly|2 +(adv)|offhand|offhanded +(adv)|offhand|offhanded +office|7 +(noun)|business office|place of business|business establishment +(noun)|agency|federal agency|government agency|bureau|authority|administrative unit|administrative body +(noun)|function|part|role|duty +(noun)|power|state +(noun)|office staff|staff +(noun)|rite|religious rite +(noun)|position|post|berth|spot|billet|place|situation|occupation|business|job|line of work|line +office-bearer|1 +(noun)|incumbent|officeholder +office block|1 +(noun)|office building|building|edifice +office boy|1 +(noun)|employee +office building|1 +(noun)|office block|building|edifice +office furniture|1 +(noun)|furniture|piece of furniture|article of furniture +office of homeland security|1 +(noun)|Homeland Security|Office of Homeland Security|independent agency +office of inspector general|1 +(noun)|Office of Inspector General|OIG|independent agency +office of intelligence support|1 +(noun)|Office of Intelligence Support|OIS|agency|federal agency|government agency|bureau|office|authority +office of management and budget|1 +(noun)|Office of Management and Budget|OMB|executive agency +office of naval intelligence|1 +(noun)|Office of Naval Intelligence|ONI|agency|federal agency|government agency|bureau|office|authority +office staff|1 +(noun)|office|staff +officeholder|2 +(noun)|officer|official|functionary +(noun)|incumbent|official|functionary +officer|5 +(noun)|military officer|serviceman|military man|man|military personnel +(noun)|officeholder|official|functionary +(noun)|policeman|police officer|lawman|law officer|peace officer +(noun)|ship's officer|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +(verb)|command +officer's mess|1 +(noun)|mess|mess hall +official|7 +(adj)|official |authoritative|authorized|authorised|ex officio|formal|formalized|formalised|semiofficial|authorized|authorised +(adj)|administrative unit|administrative body +(adj)|confirmed +(adj)|prescribed|regular +(adj)|established |constituted +(noun)|functionary|skilled worker|trained worker +(noun)|adjudicator +official document|1 +(noun)|legal document|legal instrument|instrument|document|written document|papers +official emissary|1 +(noun)|legate|emissary|envoy +official immunity|1 +(noun)|exemption|immunity|granting immunity +officialdom|1 +(noun)|government officials|administration|governance|governing body|establishment|brass|organization|organisation +officialese|1 +(noun)|expressive style|style +officialise|1 +(verb)|officialize|change|alter|modify +officialize|1 +(verb)|officialise|change|alter|modify +officially|1 +(adv)|formally +officiant|1 +(noun)|clergyman|reverend|man of the cloth +officiate|2 +(verb)|perform +(verb)|function|serve +officiating|1 +(noun)|umpirage|officiation|refereeing|decision making|deciding +officiation|2 +(noun)|umpirage|officiating|refereeing|decision making|deciding +(noun)|performance|execution|carrying out|carrying into action +officious|1 +(adj)|interfering|meddlesome|meddling|busy|busybodied|intrusive +officiousness|1 +(noun)|intrusiveness|meddlesomeness|aggressiveness +offing|2 +(noun)|future|hereafter|futurity|time to come +(noun)|body of water|water +offish|1 +(adj)|standoffish|unapproachable +offload|2 +(verb)|transfer +(verb)|unload|empty +offprint|1 +(noun)|reprint|separate|article +offsaddle|1 +(verb)|unsaddle|remove|take|take away|withdraw +offset|11 +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|point|point in time +(noun)|counterbalance|compensation +(noun)|stolon|runner|plant organ +(noun)|outgrowth|branch|offshoot|consequence|effect|outcome|result|event|issue|upshot +(noun)|offset printing|printing|printing process +(noun)|set-back|setoff|structure|construction +(verb)|countervail|balance|equilibrate|equilibrize|equilibrise +(verb)|cancel|set off|balance|equilibrate|equilibrize|equilibrise +(verb)|transfer +(verb)|make|create +(verb)|print|impress +offset lithography|1 +(noun)|lithography +offset printing|1 +(noun)|offset|printing|printing process +offsetting|1 +(adj)|countervailing|compensatory|compensative|counteractive |antagonistic +offsetting balance|1 +(noun)|compensating balance|balance +offshoot|1 +(noun)|outgrowth|branch|offset|consequence|effect|outcome|result|event|issue|upshot +offshore|2 +(adj)|offshore +(adj)|sea +offshore rig|1 +(noun)|drilling platform|drill rig|drilling rig|oilrig|oil rig +offside|1 +(adj)|offside |offsides +offsides|1 +(adj)|offside +offspring|3 +(noun)|progeny|issue|relative|relation +(noun)|materialization|materialisation|consequence|effect|outcome|result|event|issue|upshot +(noun)|young|animal|animate being|beast|brute|creature|fauna +offstage|3 +(adj)|offstage +(adj)|private +(noun)|wing|backstage|stage +ofo|2 +(noun)|Ofo|Sioux|Siouan +(noun)|Ofo|Siouan|Siouan language +oft|1 +(adv)|frequently|often|oftentimes|ofttimes +often|2 +(adv)|frequently|oftentimes|oft|ofttimes +(adv)|much|a great deal +oftenness|1 +(noun)|frequency|frequence|rate +oftentimes|1 +(adv)|frequently|often|oft|ofttimes +ofttimes|1 +(adv)|frequently|often|oftentimes|oft +ogalala|2 +(noun)|Oglala|Ogalala|Sioux|Siouan +(noun)|Oglala|Ogalala|Siouan|Siouan language +ogcocephalidae|1 +(noun)|Ogcocephalidae|family Ogcocephalidae|fish family +ogden|2 +(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist|semanticist|semiotician +(noun)|Ogden|town +ogden nash|1 +(noun)|Nash|Ogden Nash|writer|author +ogdoad|1 +(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|octonary|octet|digit|figure +ogee arch|1 +(noun)|keel arch|pointed arch +ogive|1 +(noun)|nose cone|front +oglala|2 +(noun)|Oglala|Ogalala|Sioux|Siouan +(noun)|Oglala|Ogalala|Siouan|Siouan language +ogle|1 +(verb)|look +ogler|1 +(noun)|spectator|witness|viewer|watcher|looker +ogre|2 +(noun)|monster|fiend|devil|demon|unpleasant person|disagreeable person +(noun)|giant +ogress|1 +(noun)|ogre +oh|1 +(noun)|Ohio|Buckeye State|OH|American state +ohio|2 +(noun)|Ohio|Buckeye State|OH|American state +(noun)|Ohio|Ohio River|river +ohio buckeye|1 +(noun)|Ohio buckeye|horse chestnut|buckeye|Aesculus hippocastanum +ohio goldenrod|1 +(noun)|Ohio goldenrod|goldenrod +ohio river|1 +(noun)|Ohio|Ohio River|river +ohio state university|1 +(noun)|Ohio State University|university +ohioan|1 +(noun)|Ohioan|Buckeye|American +ohm|2 +(noun)|resistance unit +(noun)|Ohm|Georg Simon Ohm|physicist +ohm's law|1 +(noun)|Ohm's law|law|law of nature +ohmage|1 +(noun)|electric resistance|electrical resistance|impedance|resistance|resistivity|ohmic resistance +ohmic|1 +(adj)|resistance unit +ohmic resistance|1 +(noun)|electric resistance|electrical resistance|impedance|resistance|resistivity|electrical phenomenon +ohmmeter|1 +(noun)|meter +oig|1 +(noun)|Office of Inspector General|OIG|independent agency +oil|5 +(noun)|lipid|lipide|lipoid +(noun)|oil color|oil paint +(noun)|vegetable oil|edible fat +(verb)|cover +(verb)|anoint|inunct|anele|embrocate|bless +oil-bearing|1 +(adj)|productive +oil-fired|1 +(adj)|fueled +oil-hardened steel|1 +(noun)|quenched steel +oil-industry analyst|1 +(noun)|industry analyst +oil-water interface|1 +(noun)|interface +oil beetle|1 +(noun)|blister beetle|meloid +oil burner|1 +(noun)|oil furnace|furnace +oil business|1 +(noun)|oil industry|refining industry|industry +oil cake|1 +(noun)|feed|provender +oil cartel|1 +(noun)|trust|corporate trust|combine|cartel +oil change|1 +(noun)|car care +oil color|1 +(noun)|oil|oil paint +oil company|1 +(noun)|company +oil conservation|1 +(noun)|conservation +oil filter|1 +(noun)|filter +oil furnace|1 +(noun)|oil burner|furnace +oil future|1 +(noun)|petroleum future|future +oil geologist|1 +(noun)|petroleum geologist|geologist +oil gland|1 +(noun)|exocrine gland|duct gland +oil heater|1 +(noun)|oilstove|kerosene heater|kerosine heater|heater|warmer +oil industry|1 +(noun)|refining industry|oil business|industry +oil lamp|1 +(noun)|kerosene lamp|kerosine lamp|lamp +oil meal|1 +(noun)|oil cake +oil nut|1 +(noun)|buffalo nut|elk nut|fruit +oil of cloves|1 +(noun)|clove oil|essential oil|volatile oil +oil of turpentine|1 +(noun)|turpentine|spirit of turpentine|turps|essential oil|volatile oil +oil of vitriol|1 +(noun)|vitriol|sulfuric acid|sulphuric acid|acid +oil of wintergreen|1 +(noun)|wintergreen oil|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +oil paint|1 +(noun)|paint +oil painter|1 +(noun)|painter +oil painting|2 +(noun)|painting|picture +(noun)|painting +oil palm|1 +(noun)|feather palm +oil pipeline|1 +(noun)|pipeline|line +oil pressure|1 +(noun)|pressure|pressure level|force per unit area +oil production|1 +(noun)|boring|drilling|production +oil pump|1 +(noun)|pump +oil refinery|1 +(noun)|petroleum refinery|refinery +oil rig|2 +(noun)|drill rig|drilling rig|oilrig|rig +(noun)| +oil rigger|1 +(noun)|rigger|oilman +oil shale|1 +(noun)|shale +oil slick|1 +(noun)|slick +oil stain|1 +(noun)|stain|discoloration|discolouration +oil tanker|1 +(noun)|oiler|tanker|tank ship|cargo ship|cargo vessel +oil tycoon|1 +(noun)|baron|big businessman|business leader|king|magnate|mogul|power|top executive|tycoon +oil well|1 +(noun)|oiler|well +oilbird|1 +(noun)|guacharo|Steatornis caripensis|caprimulgiform bird +oilcan|1 +(noun)|can|tin|tin can +oilcloth|1 +(noun)|fabric|cloth|material|textile +oiled|1 +(adj)|oiled +oiler|3 +(noun)|worker +(noun)|oil well|well +(noun)|oil tanker|tanker|tank ship|cargo ship|cargo vessel +oilfield|1 +(noun)|field +oilfish|1 +(noun)|Ruvettus pretiosus|gempylid +oiliness|2 +(noun)|greasiness|oleaginousness|fatness|fat|blubber|avoirdupois +(noun)|fulsomeness|oleaginousness|smarminess|unctuousness|unction|hypocrisy +oilman|2 +(noun)|businessman|man of affairs +(noun)|skilled worker|trained worker +oilpaper|1 +(noun)|paper +oilrig|1 +(noun)|drill rig|drilling rig|oil rig|rig +oilseed|1 +(noun)|seed +oilskin|1 +(noun)|slicker|macintosh|mackintosh|mac|mack +oilstone|1 +(noun)|whetstone +oilstove|1 +(noun)|oil heater|kerosene heater|kerosine heater|heater|warmer +oily|4 +(adj)|greasy|sebaceous|oleaginous|fatty |fat +(adj)|buttery|fulsome|oleaginous|smarmy|unctuous|insincere +(adj)|coated +(adj)|greasy|dirty |soiled|unclean +oink|1 +(verb)|squeal|utter|emit|let out|let loose +ointment|2 +(noun)|unction|unguent|balm|salve|remedy|curative|cure +(noun)|cream|emollient|toiletry|toilet article|toiletries +oireachtas|1 +(noun)|Oireachtas|parliament +ois|1 +(noun)|Office of Intelligence Support|OIS|agency|federal agency|government agency|bureau|office|authority +ojibwa|2 +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Algonquian language +ojibway|2 +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Plains Indian|Buffalo Indian +(noun)|Ojibwa|Ojibway|Chippewa|Algonquian|Algonquin|Algonquian language +ojos del salado|1 +(noun)|Ojos del Salado|mountain peak +ok|4 +(adj)|all right|fine|o.k.|okay|hunky-dory|satisfactory +(noun)|Oklahoma|Sooner State|OK|American state +(noun)|O.K.|OK|okay|okey|okeh|sanction|countenance|endorsement|indorsement|warrant|imprimatur +(adv)|very well|fine|alright|all right|OK +oka|3 +(noun)|weight unit|weight +(noun)|liquid unit|liquid measure +(noun)|oca|Oxalis tuberosa|Oxalis crenata|oxalis|sorrel|wood sorrel +okapi|1 +(noun)|Okapia johnstoni|giraffe|camelopard|Giraffa camelopardalis +okapia|1 +(noun)|Okapia|genus Okapia|mammal genus +okapia johnstoni|1 +(noun)|okapi|Okapia johnstoni|giraffe|camelopard|Giraffa camelopardalis +okay|4 +(adj)|all right|fine|ok|o.k.|hunky-dory|satisfactory +(noun)|O.K.|OK|okey|okeh|sanction|countenance|endorsement|indorsement|warrant|imprimatur +(verb)|approve|O.K.|sanction|authorize|authorise|pass|clear +(adv)|O.K.|all right|alright +okeechobee|1 +(noun)|Okeechobee|Lake Okeechobee|lake +okefenokee swamp|1 +(noun)|Okefenokee Swamp|swamp|swampland +okeh|1 +(noun)|O.K.|OK|okay|okey|sanction|countenance|endorsement|indorsement|warrant|imprimatur +oken|1 +(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist|natural scientist +okenfuss|1 +(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist|natural scientist +okey|1 +(noun)|O.K.|OK|okay|okeh|sanction|countenance|endorsement|indorsement|warrant|imprimatur +okinawa|2 +(noun)|Okinawa|island +(noun)|Okinawa|Okinawa campaign|campaign|military campaign +okinawa campaign|1 +(noun)|Okinawa|Okinawa campaign|campaign|military campaign +oklahoma|1 +(noun)|Oklahoma|Sooner State|OK|American state +oklahoma city|1 +(noun)|Oklahoma City|capital of Oklahoma|state capital +okra|3 +(noun)|pod|seedpod +(noun)|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +(noun)|gumbo|vegetable|veggie +okra plant|1 +(noun)|okra|gumbo|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb|herbaceous plant +oktoberfest|2 +(noun)|Oktoberfest|Octoberfest|lager|lager beer +(noun)|Oktoberfest|festival|fete +ola|1 +(noun)|olla|writing paper +olaf ii|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +olav ii|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +old|10 +(adj)|old |aged|elderly|older|senior|aged|of age|aging|ageing|senescent|ancient|anile|centenarian|doddering|doddery|gaga|senile|emeritus|retired|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|middle-aged|nonagenarian|octogenarian|oldish|overage|overaged|superannuated|over-the-hill|venerable|darkened|retired|superannuated|sexagenarian|experienced|mature|senior +(adj)|old |age-old|antique|antediluvian|antiquated|archaic|antique|auld|cold|stale|hand-me-down|hand-down|hoary|rusty|immemorial|long-ago|longtime|patched|secondhand|used|sunset|yellow|yellowed|noncurrent|nonmodern|past|stale|worn +(adj)|past +(adj)|familiar +(adj)|stale|moth-eaten|unoriginal +(adj)|previous|preceding +(adj)|Old|early +(adj)|older|experienced +(adj)|honest-to-god|honest-to-goodness|sure-enough|genuine |echt +(noun)|past|past times|yesteryear|yore +old-age insurance|1 +(noun)|Social Security +old-age pension|1 +(noun)|retirement pension|retirement check|retirement benefit|retirement fund|superannuation|pension +old-age pensioner|1 +(noun)|pensioner|pensionary +old-fashioned|1 +(adj)|antique|demode|ex|old-hat|outmoded|passe|passee|unfashionable |unstylish +old-fashionedness|1 +(noun)|oldness +old-field toadflax|1 +(noun)|blue toadflax|Linaria canadensis|toadflax|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris +old-hat|2 +(adj)|banal|commonplace|hackneyed|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal +(adj)|antique|demode|ex|old-fashioned|outmoded|passe|passee|unfashionable |unstylish +old-maid's bonnet|1 +(noun)|wild lupine|sundial lupine|Indian beet|Lupinus perennis|subshrub|suffrutex +old-maidish|1 +(adj)|old-womanish|fastidious +old-man-of-the-woods|1 +(noun)|Strobilomyces floccopus|bolete +old-time|1 +(adj)|quaint|olde worlde|fashionable |stylish +old-timer|3 +(noun)|veteran|oldtimer|old hand|warhorse|old stager|stager|expert +(noun)|oldtimer|gaffer|old geezer|antique|old man|greybeard|graybeard|Methuselah +(noun)| +old-womanish|1 +(adj)|old-maidish|fastidious +old-world|2 +(adj)|nonmodern +(adj)|Old World|region +old age|1 +(noun)|years|age|eld|geezerhood|time of life +old bag|1 +(noun)|bag|unpleasant woman|disagreeable woman +old bailey|1 +(noun)|Old Bailey|criminal court +old boy|3 +(noun)|old man|man|adult male +(noun)|oldster|old person|senior citizen|golden ager +(noun)|alumnus|alumna|alum|graduate|grad +old boy network|1 +(noun)|network|web +old bulgarian|1 +(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic|Slavic language|Slavonic|Slavonic language +old bullion|1 +(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator +old catholic|1 +(noun)|Old Catholic|Christian +old catholic church|1 +(noun)|Old Catholic Church|Catholic Church +old church slavic|1 +(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic|Slavic language|Slavonic|Slavonic language +old church slavonic|1 +(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic|Slavic language|Slavonic|Slavonic language +old codger|1 +(noun)|codger|old man|greybeard|graybeard|Methuselah +old colony|1 +(noun)|Massachusetts|Bay State|Old Colony|MA|American state +old country|1 +(noun)|fatherland|homeland|motherland|mother country|country of origin|native land +old delhi|1 +(noun)|Delhi|Old Delhi|city|metropolis|urban center +old dominion|1 +(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state +old dominion state|1 +(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state +old english|1 +(noun)|Old English|Anglo-Saxon|English|English language +old english sheepdog|1 +(noun)|Old English sheepdog|bobtail|shepherd dog|sheepdog|sheep dog +old faithful|1 +(noun)|Old Faithful|geyser +old fashioned|1 +(noun)|cocktail +old french|1 +(noun)|Old French|French +old frisian|1 +(noun)|Old Frisian|Frisian +old geezer|1 +(noun)|old-timer|oldtimer|gaffer|antique|old man|greybeard|graybeard|Methuselah +old glory|1 +(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag +old gold|1 +(noun)|yellow|yellowness +old growth|1 +(noun)|virgin forest|forest|wood|woods +old guard|1 +(noun)|faction|sect +old hand|1 +(noun)|veteran|old-timer|oldtimer|warhorse|old stager|stager|expert +old hickory|1 +(noun)|Jackson|Andrew Jackson|Old Hickory|general|full general|President of the United States|United States President|President|Chief Executive +old high german|1 +(noun)|Old High German|German|High German|German language +old icelandic|1 +(noun)|Old Icelandic|Old Norse +old irish|1 +(noun)|Old Irish|Irish|Irish Gaelic +old ironsides|1 +(noun)|Constitution|Old Ironsides|frigate +old italian|1 +(noun)|Old Italian|Italian +old lady|1 +(noun)|wife|married woman +old latin|1 +(noun)|Old Latin|Latin +old line state|1 +(noun)|Maryland|Old Line State|Free State|MD|American state +old maid|5 +(noun)|spinster|unmarried woman +(noun)|zinnia|old maid flower|flower +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|card game|cards +old maid flower|1 +(noun)|zinnia|old maid|flower +old man|5 +(noun)|greybeard|graybeard|Methuselah|oldster|old person|senior citizen|golden ager|man|adult male +(noun)|old boy|man|adult male +(noun)|father|male parent|begetter|dysphemism +(noun)|common wormwood|absinthe|lad's love|Artemisia absinthium|wormwood +(noun)|boss|hirer +old man's beard|3 +(noun)|Spanish moss|black moss|long moss|Tillandsia usneoides|air plant|epiphyte|aerophyte|epiphytic plant +(noun)|traveler's joy|traveller's joy|Clematis vitalba|clematis +(noun)|virgin's bower|devil's darning needle|Clematis virginiana|clematis +old man of the mountain|1 +(noun)|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower|wild flower +old master|1 +(noun)|painter|maestro|master +old money|1 +(noun)|silver spoon|inherited wealth +old nick|1 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +old norse|1 +(noun)|Old Norse|Germanic|Germanic language +old north french|1 +(noun)|Norman-French|Old North French|French +old north state|1 +(noun)|North Carolina|Old North State|Tar Heel State|NC|American state +old person|1 +(noun)|oldster|senior citizen|golden ager|adult|grownup +old prussian|1 +(noun)|Old Prussian|Baltic|Baltic language +old rose|1 +(noun)|rose +old salt|1 +(noun)|mariner|seaman|tar|Jack-tar|Jack|seafarer|gob|sea dog|sailor|crewman +old saxon|1 +(noun)|Old Saxon|Low German|Plattdeutsch +old school|1 +(noun)|class|social class|socio-economic class +old school tie|1 +(noun)|necktie|tie +old sledge|1 +(noun)|seven-up|all fours|high-low-jack +old south|1 +(noun)|Old South|South +old squaw|1 +(noun)|oldwife|Clangula hyemalis|sea duck +old stager|1 +(noun)|veteran|old-timer|oldtimer|old hand|warhorse|stager|expert +old style|1 +(noun)|old style font|proportional font +old style calendar|1 +(noun)|Julian calendar|Old Style calendar|solar calendar +old style font|1 +(noun)|old style|proportional font +old testament|1 +(noun)|Old Testament|will|testament +old times|1 +(noun)|auld langsyne|langsyne|the good old days|past|past times|yesteryear|yore +old witch grass|1 +(noun)|witchgrass|witch grass|old witchgrass|tumble grass|Panicum capillare|panic grass +old witchgrass|1 +(noun)|witchgrass|witch grass|old witch grass|tumble grass|Panicum capillare|panic grass +old wives' tale|1 +(noun)|lore|traditional knowledge +old woman|2 +(noun)|oldster|old person|senior citizen|golden ager|woman|adult female +(noun)|dusty miller|beach wormwood|Artemisia stelleriana|wormwood +old world|3 +(adj)|Old World|region +(adj)|old-world|nonmodern +(noun)|Old World|region +old world beaver|1 +(noun)|Old World beaver|Castor fiber|beaver +old world buffalo|1 +(noun)|Old World buffalo|buffalo|bovid +old world chat|1 +(noun)|Old World chat|chat|thrush +old world coot|1 +(noun)|Old World coot|Fulica atra|coot +old world coral snake|1 +(noun)|coral snake|Old World coral snake|elapid|elapid snake +old world crayfish|1 +(noun)|Old World crayfish|ecrevisse|crayfish|crawfish|crawdad|crawdaddy +old world flycatcher|1 +(noun)|Old World flycatcher|true flycatcher|flycatcher|oscine|oscine bird +old world hop hornbeam|1 +(noun)|Old World hop hornbeam|Ostrya carpinifolia|hop hornbeam +old world jay|1 +(noun)|Old World jay|jay +old world least weasel|1 +(noun)|Old World least weasel|Mustela nivalis|weasel +old world leishmaniasis|1 +(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +old world mistletoe|1 +(noun)|mistletoe|Viscum album|Old World mistletoe|parasitic plant +old world monkey|1 +(noun)|Old World monkey|catarrhine|monkey +old world oriole|1 +(noun)|Old World oriole|oriole|oscine|oscine bird +old world porcupine|1 +(noun)|Old World porcupine|porcupine|hedgehog +old world quail|1 +(noun)|Old World quail|quail +old world rabbit|1 +(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit|coney|cony +old world robin|1 +(noun)|robin|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush +old world scops owl|1 +(noun)|Old World scops owl|Otus scops|scops owl +old world vulture|1 +(noun)|Old World vulture|vulture +old world warbler|1 +(noun)|Old World warbler|true warbler|warbler +old world white pelican|1 +(noun)|Old world white pelican|Pelecanus onocrotalus|pelican +old world yew|1 +(noun)|Old World yew|English yew|Taxus baccata|yew +olde worlde|1 +(adj)|old-time|quaint|fashionable |stylish +olden|1 +(adj)|past +oldenberg|1 +(noun)|Oldenberg|Claes Oldenberg|sculptor|sculpturer|carver|statue maker +older|13 +(adj)|aged|elderly|senior|old +(adj)|big |elder +(adj)|elder|sr.|senior +(adj)|old|experienced +(adj)|old |aged|elderly|senior|aged|of age|aging|ageing|senescent|ancient|anile|centenarian|doddering|doddery|gaga|senile|emeritus|retired|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|middle-aged|nonagenarian|octogenarian|oldish|overage|overaged|superannuated|over-the-hill|venerable|darkened|retired|superannuated|sexagenarian|experienced|mature|senior +(adj)|old |age-old|antique|antediluvian|antiquated|archaic|antique|auld|cold|stale|hand-me-down|hand-down|hoary|rusty|immemorial|long-ago|longtime|patched|secondhand|used|sunset|yellow|yellowed|noncurrent|nonmodern|past|stale|worn +(adj)|old|past +(adj)|old|familiar +(adj)|old|stale|moth-eaten|unoriginal +(adj)|previous|old|preceding +(adj)|Old|early +(adj)|old|experienced +(adj)|honest-to-god|honest-to-goodness|old|sure-enough|genuine |echt +oldest|10 +(adj)|first +(adj)|old |aged|elderly|older|senior|aged|of age|aging|ageing|senescent|ancient|anile|centenarian|doddering|doddery|gaga|senile|emeritus|retired|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|white-haired|middle-aged|nonagenarian|octogenarian|oldish|overage|overaged|superannuated|over-the-hill|venerable|darkened|retired|superannuated|sexagenarian|experienced|mature|senior +(adj)|old |age-old|antique|antediluvian|antiquated|archaic|antique|auld|cold|stale|hand-me-down|hand-down|hoary|rusty|immemorial|long-ago|longtime|patched|secondhand|used|sunset|yellow|yellowed|noncurrent|nonmodern|past|stale|worn +(adj)|old|past +(adj)|old|familiar +(adj)|old|stale|moth-eaten|unoriginal +(adj)|previous|old|preceding +(adj)|Old|early +(adj)|old|older|experienced +(adj)|honest-to-god|honest-to-goodness|old|sure-enough|genuine |echt +oldfield|1 +(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer|race driver|automobile driver +oldie|1 +(noun)|golden oldie|song +oldish|1 +(adj)|old +oldness|2 +(noun)|age +(noun)|age +oldster|1 +(noun)|old person|senior citizen|golden ager|adult|grownup +oldtimer|2 +(noun)|veteran|old-timer|old hand|warhorse|old stager|stager|expert +(noun)|old-timer|gaffer|old geezer|antique|old man|greybeard|graybeard|Methuselah +olduvai gorge|1 +(noun)|Olduvai Gorge|gorge +oldwench|1 +(noun)|queen triggerfish|Bessy cerca|oldwife|Balistes vetula|triggerfish +oldwife|2 +(noun)|queen triggerfish|Bessy cerca|oldwench|Balistes vetula|triggerfish +(noun)|old squaw|Clangula hyemalis|sea duck +olea|1 +(noun)|Olea|genus Olea|dicot genus|magnoliopsid genus +olea cunninghamii|1 +(noun)|black maire|Olea cunninghamii|olive tree +olea europaea|1 +(noun)|olive|European olive tree|Olea europaea|olive tree +olea lanceolata|1 +(noun)|white maire|Olea lanceolata|olive tree +oleaceae|1 +(noun)|Oleaceae|family Oleaceae|olive family|dicot family|magnoliopsid family +oleaceous|1 +(adj)|dicot family|magnoliopsid family +oleaginous|2 +(adj)|buttery|fulsome|oily|smarmy|unctuous|insincere +(adj)|greasy|oily|sebaceous|fatty |fat +oleaginousness|2 +(noun)|greasiness|oiliness|fatness|fat|blubber|avoirdupois +(noun)|fulsomeness|oiliness|smarminess|unctuousness|unction|hypocrisy +oleales|1 +(noun)|Oleales|order Oleales|plant order +oleander|1 +(noun)|rose bay|Nerium oleander|poisonous plant +oleander fern|1 +(noun)|Oleandra neriiformis|Oleandra mollis|fern +oleandra|1 +(noun)|Oleandra|genus Oleandra|fern genus +oleandra mollis|1 +(noun)|oleander fern|Oleandra neriiformis|Oleandra mollis|fern +oleandra neriiformis|1 +(noun)|oleander fern|Oleandra neriiformis|Oleandra mollis|fern +oleandraceae|1 +(noun)|Oleandraceae|family Oleandraceae|fern family +olearia|1 +(noun)|Olearia|genus Olearia|asterid dicot genus +olearia argophylla|1 +(noun)|muskwood|Olearia argophylla|daisybush|daisy-bush|daisy bush +olearia haastii|1 +(noun)|New Zealand daisybush|Olearia haastii|daisybush|daisy-bush|daisy bush +oleaster|1 +(noun)|shrub|bush +oleaster family|1 +(noun)|Elaeagnaceae|family Elaeagnaceae|dicot family|magnoliopsid family +olecranon|1 +(noun)|olecranon process|process|outgrowth|appendage +olecranon process|1 +(noun)|olecranon|process|outgrowth|appendage +olefin|1 +(noun)|alkene|olefine|aliphatic compound +olefine|1 +(noun)|alkene|olefin|aliphatic compound +oleic acid|1 +(noun)|monounsaturated fatty acid +olein|1 +(noun)|triolein|glyceryl ester +oleo|1 +(noun)|margarine|margarin|oleomargarine|marge|spread|paste +oleo oil|1 +(noun)|animal oil +oleomargarine|1 +(noun)|margarine|margarin|oleo|marge|spread|paste +oleophilic|1 +(adj)|oleophilic |lipophilic|lipotropic +oleophobic|1 +(adj)|oleophobic +oleoresin|1 +(noun)|natural resin +oleoresin capiscum|1 +(noun)|oleoresin +olfactive|1 +(adj)|olfactory|modality|sense modality|sensory system|exteroception +olfactory|1 +(adj)|olfactive|modality|sense modality|sensory system|exteroception +olfactory brain|1 +(noun)|rhinencephalon|center|centre|nerve center|nerve centre +olfactory bulb|1 +(noun)|neural structure +olfactory nerve|1 +(noun)|nervii olfactorii|first cranial nerve|cranial nerve +olfactory organ|1 +(noun)|nose|chemoreceptor +olfactory perception|1 +(noun)|smell|odor|odour|olfactory sensation|sensation|sense experience|sense impression|sense datum +olfactory property|1 +(noun)|smell|aroma|odor|odour|scent|property +olfactory sensation|1 +(noun)|smell|odor|odour|olfactory perception|sensation|sense experience|sense impression|sense datum +olfersia|1 +(noun)|Olfersia|genus Olfersia|fern genus +olfersia cervina|1 +(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern +olga korbut|1 +(noun)|Korbut|Olga Korbut|gymnast +olibanum|1 +(noun)|frankincense|gum olibanum|thus|gum +oligarch|1 +(noun)|ruler|swayer +oligarchic|1 +(adj)|oligarchical|political system|form of government +oligarchical|1 +(adj)|oligarchic|political system|form of government +oligarchy|1 +(noun)|political system|form of government +oligocene|1 +(noun)|Oligocene|Oligocene epoch|epoch +oligocene epoch|1 +(noun)|Oligocene|Oligocene epoch|epoch +oligochaeta|1 +(noun)|Oligochaeta|class Oligochaeta|class +oligochaete|1 +(noun)|oligochaete worm|annelid|annelid worm|segmented worm +oligochaete worm|1 +(noun)|oligochaete|annelid|annelid worm|segmented worm +oligoclase|1 +(noun)|plagioclase|feldspar|felspar +oligodactyly|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +oligodendria|1 +(noun)|oligodendroglia|neuroglia|glia +oligodendrocyte|1 +(noun)|neurogliacyte|neuroglial cell|glial cell +oligodendroglia|1 +(noun)|oligodendria|neuroglia|glia +oligodontia|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +oligomenorrhea|1 +(noun)|menstruation|menses|menstruum|catamenia|period|flow +oligoplites|1 +(noun)|Oligoplites|genus Oligoplites|fish genus +oligopoly|1 +(noun)|market|marketplace +oligoporus|1 +(noun)|Oligoporus|genus Oligoporus|fungus genus +oligoporus leucospongia|1 +(noun)|Oligoporus leucospongia|polypore|pore fungus|pore mushroom +oligosaccharide|1 +(noun)|carbohydrate|saccharide|sugar +oligospermia|1 +(noun)|physiological state|physiological condition +oliguria|2 +(noun)|symptom +(noun)|micturition|urination +olimbos|1 +(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak +olive|6 +(adj)|chromatic +(noun)|fruit +(noun)|European olive tree|Olea europaea|olive tree +(noun)|wood +(noun)|relish|drupe|stone fruit +(noun)|chromatic color|chromatic colour|spectral color|spectral colour +olive-brown|1 +(adj)|chromatic +olive-drab|1 +(adj)|chromatic +olive-drab uniform|1 +(noun)|olive drab|military uniform +olive-like|2 +(adj)|olivelike|rounded +(adj)| +olive-tree agaric|1 +(noun)|Pleurotus phosphoreus|agaric +olive branch|1 +(noun)|peace offering|offer|offering +olive brown|1 +(noun)|brown|brownness +olive drab|3 +(noun)|olive +(noun)|olive-drab uniform|military uniform +(noun)|fabric|cloth|material|textile +olive family|1 +(noun)|Oleaceae|family Oleaceae|dicot family|magnoliopsid family +olive green|1 +(noun)|green|greenness|viridity +olive oil|1 +(noun)|vegetable oil|oil +olive ridley|1 +(noun)|Pacific ridley|Lepidochelys olivacea|ridley +olive tree|1 +(noun)|fruit tree +olivelike|1 +(adj)|olive-like|rounded +olivenite|1 +(noun)|mineral +oliver|1 +(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician|jazzman +oliver cromwell|1 +(noun)|Cromwell|Oliver Cromwell|Ironsides|general|full general|statesman|solon|national leader +oliver goldsmith|1 +(noun)|Goldsmith|Oliver Goldsmith|writer|author +oliver hardy|1 +(noun)|Hardy|Oliver Hardy|comedian|comic +oliver hazard perry|1 +(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore +oliver heaviside|1 +(noun)|Heaviside|Oliver Heaviside|physicist|electrical engineer +oliver stone|1 +(noun)|Stone|Oliver Stone|film maker|filmmaker|film producer|movie maker +oliver wendell holmes|1 +(noun)|Holmes|Oliver Wendell Holmes|writer|author +oliver wendell holmes jr.|1 +(noun)|Holmes|Oliver Wendell Holmes Jr.|jurist|legal expert +olivier|1 +(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor|histrion|player|thespian|role player +olivine|1 +(noun)|mineral +olla|1 +(noun)|ola|writing paper +olla podrida|1 +(noun)|Spanish burgoo|stew +ollari|1 +(noun)|Ollari|Central Dravidian +olm|1 +(noun)|Proteus anguinus|salamander +olmec|2 +(adj)|Olmec|Indian|North American Indian|American Indian|Red Indian +(noun)|Olmec|Indian|North American Indian|American Indian|Red Indian +olmsted|1 +(noun)|Olmsted|Frederick Law Olmsted|landscape architect|landscape gardener|landscaper|landscapist +ology|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +olympia|2 +(noun)|Olympia|capital of Washington|state capital +(noun)|Olympia|plain|field|champaign +olympiad|2 +(noun)|Olympiad|time period|period of time|period +(noun)|Olympic Games|Olympics|Olympiad|athletic contest|athletic competition|athletics +olympian|6 +(adj)|Olympian|Olympic|plain|field|champaign +(adj)|Olympian|mountain peak +(adj)|majestic|superior +(adj)|exceeding|exceptional|prodigious|surpassing|extraordinary +(noun)|Olympian|athlete|jock +(noun)|Olympian|Olympic god|Greek deity +olympian games|1 +(noun)|Olympian Games|Olympic Games|agon +olympic|2 +(adj)|Olympic|athletic contest|athletic competition|athletics +(adj)|Olympian|Olympic|plain|field|champaign +olympic games|2 +(noun)|Olympic Games|Olympics|Olympiad|athletic contest|athletic competition|athletics +(noun)|Olympian Games|Olympic Games|agon +olympic god|1 +(noun)|Olympian|Olympic god|Greek deity +olympic national park|1 +(noun)|Olympic National Park|national park +olympic salamander|1 +(noun)|Rhyacotriton olympicus|salamander +olympics|1 +(noun)|Olympic Games|Olympics|Olympiad|athletic contest|athletic competition|athletics +olympus|1 +(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak +omaha|4 +(noun)|Omaha|Maha|Dhegiha +(noun)|Omaha|city|metropolis|urban center +(noun)|Omaha|Dhegiha +(noun)|Omaha|thoroughbred +oman|1 +(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country|Asian nation +omani|2 +(adj)|Omani|Asian country|Asian nation +(noun)|Omani|Arab|Arabian +omani monetary unit|1 +(noun)|Omani monetary unit|monetary unit +omani rial|1 +(noun)|riyal-omani|Omani rial|rial|Omani monetary unit +omar bradley|1 +(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general|full general +omar khayyam|1 +(noun)|Omar Khayyam|poet|mathematician|astronomer|uranologist|stargazer +omar nelson bradley|1 +(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general|full general +omasum|1 +(noun)|psalterium|third stomach|stomach|tummy|tum|breadbasket +omayyad|1 +(noun)|Umayyad|Ommiad|Omayyad|dynasty +omb|1 +(noun)|Office of Management and Budget|OMB|executive agency +ombu|1 +(noun)|bella sombra|Phytolacca dioica|pokeweed +ombudsman|1 +(noun)|investigator +omdurman|2 +(noun)|Omdurman|city|metropolis|urban center +(noun)|Omdurman|battle of Omdurman|pitched battle +omega|2 +(noun)|Z|ending|conclusion|finish +(noun)|letter|letter of the alphabet|alphabetic character +omega-3|1 +(noun)|omega-3 fatty acid|polyunsaturated fatty acid +omega-3 fatty acid|1 +(noun)|omega-3|polyunsaturated fatty acid +omega-6|1 +(noun)|omega-6 fatty acid|polyunsaturated fatty acid +omega-6 fatty acid|1 +(noun)|omega-6|polyunsaturated fatty acid +omega centauri|1 +(noun)|Omega Centauri|bunch|clump|cluster|clustering +omelet|1 +(noun)|omelette|dish +omelet pan|1 +(noun)|omelette pan|pan|cooking pan +omelette|1 +(noun)|omelet|dish +omelette pan|1 +(noun)|omelet pan|pan|cooking pan +omen|3 +(noun)|portent|presage|prognostic|prognostication|prodigy|augury|sign|foretoken|preindication +(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country|Asian nation +(verb)|bode|portend|auspicate|prognosticate|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +omental bursa|1 +(noun)|bursa omentalis|lesser peritoneal cavity|cavity|bodily cavity|cavum +omentum|1 +(noun)|peritoneum +omeprazole|1 +(noun)|Prilosec|antacid|gastric antacid|alkalizer|alkaliser|antiacid +omerta|1 +(noun)|code|codification +omicron|1 +(noun)|letter|letter of the alphabet|alphabetic character +ominous|2 +(adj)|baleful|forbidding|menacing|minacious|minatory|sinister|threatening|ugly|alarming +(adj)|ill|inauspicious|unpropitious +omissible|1 +(adj)|incidental |incident +omission|4 +(noun)|skip|mistake|error|fault +(noun)|neglect|disuse +(noun)|deletion|linguistic process +(noun)|disregard|neglect +omissive|1 +(adj)|disregard|neglect +omit|2 +(verb)|exclude|except|leave out|leave off|take out|eliminate|get rid of|do away with +(verb)|neglect|pretermit|drop|miss|leave out|overlook|overleap +omiya|1 +(noun)|Omiya|city|metropolis|urban center +ommastrephes|1 +(noun)|squid +ommatidium|1 +(noun)|simple eye|stemma|ocellus +ommiad|1 +(noun)|Umayyad|Ommiad|Omayyad|dynasty +omnibus|3 +(adj)|comprehensive +(noun)|anthology +(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|public transport +omnidirectional|1 +(adj)|omnidirectional |position|spatial relation +omnidirectional antenna|1 +(noun)|nondirectional antenna|antenna|aerial|transmitting aerial +omnidirectional radio range|1 +(noun)|omnirange|omnidirectional range|navigational system +omnidirectional range|1 +(noun)|omnirange|omnidirectional radio range|navigational system +omnifarious|1 +(adj)|varied +omnipotence|1 +(noun)|state +omnipotent|1 +(adj)|almighty|all-powerful|powerful +omnipresence|1 +(noun)|ubiquity|ubiquitousness|presence +omnipresent|1 +(adj)|ubiquitous|present +omnirange|1 +(noun)|omnidirectional range|omnidirectional radio range|navigational system +omniscience|1 +(noun)|state +omniscient|1 +(adj)|all-knowing|wise +omnium-gatherum|1 +(noun)|odds and ends|oddments|melange|farrago|ragbag|hodgepodge|mishmash|mingle-mangle|hotchpotch|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +omnivore|2 +(noun)|eater|feeder +(noun)|animal|animate being|beast|brute|creature|fauna +omnivorous|1 +(adj)|omnivorous |all-devouring +omomyid|1 +(noun)|Omomyid|Omomyid group|taxonomic group|taxonomic category|taxon +omomyid group|1 +(noun)|Omomyid|Omomyid group|taxonomic group|taxonomic category|taxon +omophagia|1 +(noun)|eating|feeding +omotic|1 +(noun)|Omotic|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +omphalocele|1 +(noun)|umbilical hernia|hernia|herniation +omphalos|1 +(noun)|navel|umbilicus|bellybutton|omphalus|point +omphaloskepsis|1 +(noun)|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +omphalotus|1 +(noun)|Omphalotus|genus Omphalotus|fungus genus +omphalotus illudens|1 +(noun)|jack-o-lantern fungus|jack-o-lantern|jack-a-lantern|Omphalotus illudens|agaric +omphalus|1 +(noun)|navel|umbilicus|bellybutton|omphalos|point +omsk|1 +(noun)|Omsk|city|metropolis|urban center +on|4 +(adj)|on |connected +(adj)|on |happening +(adj)|on duty|on-duty|active +(adv)|along +on-duty|2 +(adj)|on|on duty|active +(adj)| +on-key|1 +(adj)|true|harmonious +on-license|1 +(noun)|liquor license|liquor licence +on-line|3 +(adj)|on-line +(adj)|on-line |machine-accessible|connected +(adj)|current +on-line database|1 +(noun)|electronic database|computer database|electronic information service|database +on-off switch|1 +(noun)|toggle switch|toggle|on/off switch|switch|electric switch|electrical switch +on-site|1 +(adj)|on-site |on-the-spot|on-the-scene +on-street|1 +(adj)|on-street +on-the-job|3 +(adj)|activity +(adj)|working|on the job|employed +(adj)|on the alert|on the job|alert +on-the-scene|1 +(adj)|on-the-spot|on-site +on-the-spot|1 +(adj)|on-the-scene|on-site +on/off switch|1 +(noun)|toggle switch|toggle|on-off switch|switch|electric switch|electrical switch +on a higher floor|1 +(adv)|upstairs|up the stairs +on a lower floor|1 +(adv)|downstairs|down the stairs|below +on a regular basis|1 +(adv)|regularly +on an individual basis|1 +(adv)|individually|separately|singly|severally|one by one +on an irregular basis|1 +(adv)|irregularly +on and off|1 +(adv)|off and on +on average|1 +(adv)|on the average +on base|1 +(adv)|aboard +on duty|2 +(adj)|on|on-duty|active +(adj)| +on faith|1 +(adv)|without checking +on fire|1 +(adj)|ablaze|afire|aflame|aflare|alight|blazing|burning|flaming|lighted |lit +on guard|1 +(adj)|on one's guard|upon one's guard|on your guard|wary +on hand|1 +(adj)|visible|available +on her own|1 +(adj)|on one's own|on his own|on your own|on their own|independent +on his own|1 +(adj)|on one's own|on her own|on your own|on their own|independent +on it|1 +(adv)|thereon|on that +on land|1 +(adv)|ashore|toward land|onto land +on leave|1 +(adj)|inactive +on occasion|1 +(adv)|occasionally|once in a while|now and then|now and again|at times|from time to time +on one's guard|1 +(adj)|on guard|upon one's guard|on your guard|wary +on one's own|1 +(adj)|on his own|on her own|on your own|on their own|independent +on one hand|1 +(adv)|on the one hand +on paper|3 +(adv)|in writing +(adv)|in theory +(adv)|theoretically|in theory +on purpose|1 +(adv)|intentionally|deliberately|designedly|purposely|advisedly|by choice|by design +on request|1 +(adv)|for the asking +on tap|2 +(adj)|available +(adj)|available +on that|1 +(adv)|thereon|on it +on that point|1 +(adv)|there|in that respect +on the alert|1 +(adj)|on the job|alert +on the average|1 +(adv)|on average +on the books|1 +(adj)|recorded +on the button|2 +(adj)|on the nose|precise +(adv)|precisely|exactly|on the nose|on the dot +on the coattails|1 +(adv)|one one's coattails +on the contrary|1 +(adv)|contrarily|to the contrary|contrariwise +on the dot|1 +(adv)|precisely|exactly|on the nose|on the button +on the face of it|1 +(adv)|apparently|seemingly|ostensibly +on the far side|1 +(adv)|beyond +on the fence|1 +(adj)|undecided|indecisive +on the go|1 +(adj)|active +on the hook|1 +(adj)|dangerous |unsafe +on the job|3 +(adj)|working|employed +(adj)|on the alert|alert +(adj)|on-the-job|activity +on the loose|1 +(adj)|at large|at liberty|escaped|loose|free +on the nose|2 +(adj)|on the button|precise +(adv)|precisely|exactly|on the dot|on the button +on the offensive|1 +(adj)|offensive +on the one hand|1 +(adv)|on one hand +on the other hand|1 +(adv)|then again|but then +on the q.t.|2 +(adv)|secretly|in secret|on the Q.T.|on the QT +(adv)| +on the qt|1 +(adv)|secretly|in secret|on the Q.T.|on the QT +on the qui vive|1 +(noun)|alertness|attentiveness +on the quiet|1 +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|secret|surreptitious|undercover|underground|covert +on the road|1 +(noun)|on tour|travel|traveling|travelling +on the side|1 +(adv)|unofficially +on the sly|1 +(adv)|furtively +on the spur of the moment|1 +(adv)|suddenly +on the table|1 +(adj)|negotiable|flexible +on the way|1 +(adv)|en route +on the whole|1 +(adv)|all in all|altogether|tout ensemble +on the wing|1 +(adv)|in flight +on their own|1 +(adj)|on one's own|on his own|on her own|on your own|independent +on time|2 +(adj)|prompt|punctual +(adv)|not late|not delayed +on tour|1 +(noun)|on the road|travel|traveling|travelling +on trial|1 +(adj)|unproved |unproven +on your guard|1 +(adj)|on guard|on one's guard|upon one's guard|wary +on your own|1 +(adj)|on one's own|on his own|on her own|on their own|independent +onager|2 +(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|trebuchet|trebucket|artillery|heavy weapon|gun|ordnance +(noun)|Equus hemionus|wild ass +onagraceae|1 +(noun)|Onagraceae|family Onagraceae|evening-primrose family|rosid dicot family +onanism|2 +(noun)|masturbation|self-abuse|autoeroticism|autoerotism +(noun)|coitus interruptus|withdrawal method|pulling out|birth control|birth prevention|family planning +onanist|1 +(noun)|masturbator|person|individual|someone|somebody|mortal|human|soul +onboard|1 +(adv)|aboard +once|4 +(adj)|erstwhile|former|onetime|quondam|sometime|past +(adv)|one time|in one case +(adv)|when +(adv)|formerly|at one time|erstwhile|erst +once-over|1 +(noun)|look-over|examination|scrutiny +once again|1 +(adv)|again|once more|over again +once and for all|1 +(adv)|conclusively +once in a while|1 +(adv)|occasionally|on occasion|now and then|now and again|at times|from time to time +once more|1 +(adv)|again|once again|over again +onchocerciasis|1 +(noun)|river blindness|infestation +onchorynchus|1 +(noun)|Onchorynchus|genus Onchorynchus|fish genus +onchorynchus kisutch|1 +(noun)|coho|cohoe|coho salmon|blue jack|silver salmon|Onchorynchus kisutch|salmon +onchorynchus nerka|1 +(noun)|sockeye|sockeye salmon|red salmon|blueback salmon|Onchorynchus nerka|salmon +onchorynchus tshawtscha|1 +(noun)|chinook|chinook salmon|king salmon|quinnat salmon|Onchorynchus tshawtscha|salmon +oncidium|1 +(noun)|dancing lady orchid|butterfly plant|butterfly orchid|orchid|orchidaceous plant +oncidium papilio|1 +(noun)|Psychopsis papilio|Oncidium papilio|butterfly orchid +oncidium papilio kramerianum|1 +(noun)|Psychopsis krameriana|Oncidium papilio kramerianum|butterfly orchid +oncogene|1 +(noun)|transforming gene|gene|cistron|factor +oncologic|1 +(adj)|oncological|medicine|medical specialty +oncological|1 +(adj)|oncologic|medicine|medical specialty +oncologist|1 +(noun)|specialist|medical specialist +oncology|1 +(noun)|medicine|medical specialty +oncoming|2 +(adj)|moving +(noun)|onset|start +oncovin|1 +(noun)|vincristine|Oncovin|periwinkle plant derivative +ondaatje|1 +(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer|author +ondatra|1 +(noun)|Ondatra|genus Ondatra|mammal genus +ondatra zibethica|1 +(noun)|muskrat|musquash|Ondatra zibethica|rodent|gnawer|gnawing animal +one|12 +(adj)|1|i|ane|cardinal +(adj)|unspecified +(adj)|unitary|united +(adj)|same +(adj)|extraordinary +(adj)|indefinite +(adj)|single +(adj)|single +(adj)|combined +(adj)|matchless|nonpareil|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +(noun)|1|I|ace|single|unity|digit|figure +(noun)|unit +one-and-one|1 +(noun)|foul shot|free throw|penalty free throw|charity toss|charity throw|charity shot +one-armed|1 +(adj)|armed +one-armed bandit|1 +(noun)|slot|slot machine|coin machine +one-billionth|1 +(noun)|billionth|common fraction|simple fraction +one-celled|1 +(adj)|single-celled|noncellular |acellular +one-dimensional|2 +(adj)|unidimensional +(adj)|linear |collinear|lineal|linelike|rectilinear|rectilineal +one-dimensional language|1 +(noun)|programming language|programing language +one-dimensionality|1 +(noun)|linearity|dimensionality +one-eared|1 +(adj)|monaural +one-eighth|1 +(noun)|eighth|common fraction|simple fraction +one-eyed|1 +(adj)|eyed +one-fifth|1 +(noun)|fifth|fifth part|twenty percent|common fraction|simple fraction +one-flowered pyrola|1 +(noun)|one-flowered wintergreen|Moneses uniflora|Pyrola uniflora|herb|herbaceous plant +one-flowered wintergreen|1 +(noun)|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb|herbaceous plant +one-fourth|1 +(noun)|fourth|quarter|fourth part|twenty-five percent|quartern|common fraction|simple fraction +one-half|1 +(noun)|half|common fraction|simple fraction +one-hitter|1 +(noun)|1-hitter|baseball|baseball game|ball +one-horse|1 +(adj)|jerkwater|pokey|poky|provincial +one-hundredth|1 +(noun)|hundredth|one percent|common fraction|simple fraction +one-liner|1 +(noun)|joke|gag|laugh|jest|jape +one-man|1 +(adj)|one-person|one-woman|single +one-man rule|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +one-member|1 +(adj)|uninominal|single +one-millionth|1 +(noun)|millionth|common fraction|simple fraction +one-night stand|2 +(noun)|promiscuity|promiscuousness|sleeping around +(noun)|performance +one-ninth|1 +(noun)|ninth|common fraction|simple fraction +one-off|1 +(noun)|happening|occurrence|natural event +one-on-one|3 +(adj)|private +(adj)|man-to-man|individual +(adv)|person-to-person +one-party|1 +(adj)|unilateral |one-sided +one-person|1 +(adj)|one-man|one-woman|single +one-piece|1 +(adj)|one-piece +one-quadrillionth|1 +(noun)|quadrillionth|common fraction|simple fraction +one-quintillionth|1 +(noun)|quintillionth|common fraction|simple fraction +one-seventh|1 +(noun)|seventh|common fraction|simple fraction +one-sided|5 +(adj)|nonreversible +(adj)|unilateral |one-party +(adj)|ill-proportioned|lopsided|asymmetrical |asymmetric +(adj)|biased|colored|coloured|slanted|partial |unfair +(adj)|biased|partisan |partizan +one-sixth|1 +(noun)|sixth|common fraction|simple fraction +one-sixtieth|1 +(noun)|sixtieth|common fraction|simple fraction +one-step|1 +(noun)|ballroom dancing|ballroom dance +one-tenth|1 +(noun)|tenth|tenth part|ten percent|common fraction|simple fraction +one-third|1 +(noun)|third|tierce|common fraction|simple fraction +one-thousandth|1 +(noun)|thousandth|common fraction|simple fraction +one-to-one|1 +(adj)|matched +one-trillionth|1 +(noun)|trillionth|common fraction|simple fraction +one-upmanship|1 +(noun)|practice|pattern +one-way|1 +(adj)|unidirectional +one-way light time|1 +(noun)|OWLT|elapsed time +one-way street|2 +(noun)|unilateralism +(noun)|street +one-woman|1 +(adj)|one-man|one-person|single +one-year|1 +(adj)|annual +one after another|1 +(adv)|one by one|one at a time +one and only|1 +(adj)|matchless|nonpareil|one|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +one and the same|1 +(adj)|identical|selfsame|very|same +one at a time|1 +(adv)|one by one|one after another +one by one|3 +(adv)|one after another|one at a time +(adv)|by the piece +(adv)|individually|separately|singly|severally|on an individual basis +one c|1 +(noun)|hundred|100|C|century|one C|centred|large integer +one dollar bill|1 +(noun)|dollar|dollar bill|buck|clam|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +one hundred|1 +(adj)|hundred|a hundred|100|c|cardinal +one hundred eighty|1 +(adj)|180|clxxx|cardinal +one hundred fifteen|1 +(adj)|115|cxv|cardinal +one hundred fifty|1 +(adj)|150|cl|cardinal +one hundred fifty-five|1 +(adj)|155|clv|cardinal +one hundred five|1 +(adj)|105|cv|cardinal +one hundred forty|1 +(adj)|140|cxl|cardinal +one hundred forty-five|1 +(adj)|145|cxlv|cardinal +one hundred ninety|1 +(adj)|190|xcl|cardinal +one hundred one|1 +(adj)|hundred and one|a hundred and one|101|ci|cardinal +one hundred seventy|1 +(adj)|170|clxx|cardinal +one hundred seventy-five|1 +(adj)|175|clxxv|cardinal +one hundred sixty|1 +(adj)|160|clx|cardinal +one hundred sixty-five|1 +(adj)|165|clxv|cardinal +one hundred ten|1 +(adj)|110|cx|cardinal +one hundred thirty|1 +(adj)|130|cxxx|cardinal +one hundred thirty-five|1 +(adj)|135|cxxxv|cardinal +one hundred twenty|1 +(adj)|120|cxx|cardinal +one hundred twenty-five|1 +(adj)|125|cxxv|cardinal +one iron|1 +(noun)|driving iron|iron +one million million|2 +(noun)|trillion|1000000000000|large integer +(noun)|billion|1000000000000|large integer +one million million million|1 +(noun)|trillion|large integer +one of the boys|1 +(noun)|boy +one of these days|1 +(adv)|eventually|yet|sooner or later|in time +one one's coattails|1 +(adv)|on the coattails +one percent|1 +(noun)|one-hundredth|hundredth|common fraction|simple fraction +one shot|1 +(noun)|round|unit of ammunition|ammunition|ammo +one thousand|2 +(adj)|thousand|a thousand|1000|m|k|cardinal +(noun)|thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer +one thousand million|1 +(noun)|billion|1000000000|large integer +one thousand thousand|1 +(noun)|million|1000000|meg|large integer +one time|1 +(adv)|once|in one case +onega|1 +(noun)|Lake Onega|Onega|lake +oneida|2 +(noun)|Oneida|Iroquois +(noun)|Oneida|Iroquoian|Iroquois|Iroquoian language +oneiric|1 +(adj)|imagination|imaging|imagery|mental imagery +oneirism|1 +(noun)|reverie|revery|daydream|daydreaming|air castle|castle in the air|castle in Spain|dream|dreaming +oneiromancer|1 +(noun)|diviner +oneiromancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +oneness|1 +(noun)|unity|identity|identicalness|indistinguishability +onerous|1 +(adj)|burdensome|taxing|heavy +onerousness|1 +(noun)|burdensomeness|oppressiveness|difficulty|difficultness +onetime|1 +(adj)|erstwhile|former|once|quondam|sometime|past +ongoing|1 +(adj)|in progress|current +oni|1 +(noun)|Office of Naval Intelligence|ONI|agency|federal agency|government agency|bureau|office|authority +onion|3 +(noun)|bulb +(noun)|onion plant|Allium cepa|alliaceous plant +(noun)|vegetable|veggie +onion bagel|1 +(noun)|bagel|beigel +onion bread|1 +(noun)|bread|breadstuff|staff of life +onion butter|1 +(noun)|spread|paste +onion dome|1 +(noun)|dome +onion louse|1 +(noun)|onion thrips|Thrips tobaci|thrips|thrip|thripid +onion mildew|1 +(noun)|Peronospora destructor|downy mildew|false mildew +onion plant|1 +(noun)|onion|Allium cepa|alliaceous plant +onion roll|1 +(noun)|bun|roll +onion salt|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +onion smut|1 +(noun)|Urocystis cepulae|smut|smut fungus +onion stem|1 +(noun)|Lepiota cepaestipes|lepiota +onion thrips|1 +(noun)|onion louse|Thrips tobaci|thrips|thrip|thripid +onion yellow-dwarf virus|1 +(noun)|plant virus +onion yellow dwarf|1 +(noun)|yellow dwarf +onionskin|1 +(noun)|flimsy|typewriter paper|typing paper +oniscidae|1 +(noun)|Oniscidae|family Oniscidae|arthropod family +oniscus|1 +(noun)|Oniscus|genus Oniscus|arthropod genus +onlooker|1 +(noun)|looker-on|spectator|witness|viewer|watcher|looker +only|5 +(adj)|lone|lonesome|sole|solitary|single +(adj)|alone|exclusive +(adv)|merely|simply|just|but +(adv)|entirely|exclusively|solely|alone +(adv)|only if|only when +only if|1 +(adv)|only|only when +only too|1 +(adv)|all too +only when|1 +(adv)|only|only if +ono|1 +(noun)|Ono|Yoko Ono|musician +onobrychis|1 +(noun)|Onobrychis|genus Onobrychis|rosid dicot genus +onobrychis viciaefolia|1 +(noun)|sainfoin|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +onobrychis viciifolia|1 +(noun)|sainfoin|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +onoclea|1 +(noun)|Onoclea|genus Onoclea|fern genus +onoclea sensibilis|1 +(noun)|sensitive fern|bead fern|Onoclea sensibilis|fern +onoclea struthiopteris|1 +(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +onomancer|1 +(noun)|diviner +onomancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +onomastic|1 +(adj)|lexicology +onomasticon|1 +(noun)|wordbook +onomastics|1 +(noun)|lexicology +onomatomania|1 +(noun)|compulsion|obsession +onomatopoeia|1 +(noun)|rhetorical device +onomatopoeic|2 +(adj)|onomatopoetic|rhetorical device +(adj)|echoic |imitative|onomatopoeical|onomatopoetic +onomatopoeical|1 +(adj)|echoic |imitative|onomatopoeic|onomatopoetic +onomatopoetic|2 +(adj)|onomatopoeic|rhetorical device +(adj)|echoic |imitative|onomatopoeic|onomatopoeical +onondaga|2 +(noun)|Onondaga|Iroquois +(noun)|Onondaga|Iroquoian|Iroquois|Iroquoian language +ononis|1 +(noun)|Ononis|genus Ononis|rosid dicot genus +ononis repens|1 +(noun)|restharrow|rest-harrow|Ononis repens|subshrub|suffrutex +ononis spinosa|1 +(noun)|restharrow|rest-harrow|Ononis spinosa|subshrub|suffrutex +onopordon|1 +(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus +onopordon acanthium|1 +(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle +onopordum|1 +(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus +onopordum acanthium|1 +(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle +onosmodium|1 +(noun)|Onosmodium|genus Onosmodium|plant genus +onrush|2 +(noun)|attack|onslaught|onset|operation|military operation +(noun)|rush|spate|surge|upsurge +onsager|1 +(noun)|Onsager|Lars Onsager|chemist +onset|2 +(noun)|oncoming|start +(noun)|attack|onslaught|onrush|operation|military operation +onshore|2 +(adj)|inshore |seaward +(adj)|land +onside|1 +(adj)|onside +onslaught|3 +(noun)|trouble +(noun)|attack|onset|onrush|operation|military operation +(noun)|barrage|outpouring|language|linguistic communication +onstage|1 +(adj)|onstage +ontario|2 +(noun)|Lake Ontario|Ontario|lake +(noun)|Ontario|Canadian province +onto land|1 +(adv)|ashore|on land|toward land +ontogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|organic process|biological process +ontogenetic|1 +(adj)|organic process|biological process +ontogeny|1 +(noun)|growth|growing|maturation|development|ontogenesis|organic process|biological process +ontological|1 +(adj)|metaphysics +ontology|1 +(noun)|metaphysics +onus|1 +(noun)|burden|load|encumbrance|incumbrance|concern|worry|headache|vexation +onward|3 +(adj)|forward|advancing +(adv)|forth|forward +(adv)|ahead|onwards|forward|forwards|forrader +onward motion|1 +(noun)|progress|progression|procession|advance|advancement|forward motion|motion|movement|move +onwards|1 +(adv)|ahead|onward|forward|forwards|forrader +onychium|1 +(noun)|Onychium|genus Onychium|fern genus +onychogalea|1 +(noun)|Onychogalea|genus Onychogalea|mammal genus +onycholysis|1 +(noun)|onychosis +onychomys|1 +(noun)|Onychomys|genus Onychomys|mammal genus +onychophora|1 +(noun)|Onychophora|class Onychophora|class +onychophoran|1 +(noun)|velvet worm|peripatus|arthropod +onychosis|1 +(noun)|disease +onymous|1 +(adj)|onymous |named|pseudonymous +onyx|1 +(noun)|chalcedony|calcedony +onyx marble|1 +(noun)|alabaster|oriental alabaster|Mexican onyx|calcite +onyxis|1 +(noun)|ingrown toenail|toenail +oocyte|1 +(noun)|gametocyte +oodles|1 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|gobs|scads|lashings|large indefinite quantity|large indefinite amount +oogenesis|1 +(noun)|gametogenesis +oolong|1 +(noun)|tea|tea leaf +oom paul kruger|1 +(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman|solon|national leader +oomph|2 +(noun)|sex appeal|desirability|desirableness|attractiveness +(noun)|dynamism|pizzazz|pizzaz|zing|activeness|activity +oomycetes|1 +(noun)|Oomycetes|class Oomycetes|class +oophorectomy|1 +(noun)|ovariectomy|ablation|extirpation|cutting out|excision +oophoritis|1 +(noun)|inflammation|redness|rubor +oophorosalpingectomy|1 +(noun)|ablation|extirpation|cutting out|excision +oort|1 +(noun)|Oort|Jan Hendrix Oort|astronomer|uranologist|stargazer +oort cloud|1 +(noun)|Oort cloud|collection|aggregation|accumulation|assemblage +oosphere|1 +(noun)|gamete +oospore|1 +(noun)|spore +ootid|1 +(noun)|ovum|egg cell +ooze|4 +(noun)|sludge|slime|goo|gook|guck|gunk|muck|substance|matter +(noun)|seepage|oozing|flow|flowing +(verb)|seep|run|flow|feed|course +(verb)|exude|exudate|transude|ooze out|excrete|egest|eliminate|pass +ooze leather|1 +(noun)|leather +ooze out|1 +(verb)|exude|exudate|transude|ooze|excrete|egest|eliminate|pass +ooze through|1 +(verb)|penetrate|perforate +oozing|2 +(adj)|oozy|seeping|leaky +(noun)|seepage|ooze|flow|flowing +oozy|1 +(adj)|oozing|seeping|leaky +op art|1 +(noun)|abstractionism|abstract art +opacification|1 +(noun)|natural process|natural action|action|activity +opacify|2 +(verb)|change|alter|modify +(verb)|change +opacity|3 +(noun)|physical phenomenon +(noun)|opaqueness|incomprehensibility +(noun)|opaqueness|quality +opah|1 +(noun)|moonfish|Lampris regius|soft-finned fish|malacopterygian +opal|1 +(noun)|mineral|opaque gem +opal glass|1 +(noun)|milk glass|glass +opalesce|2 +(verb)|reflect|shine +(verb)|iridesce +opalescence|1 +(noun)|iridescence|brightness +opalescent|1 +(adj)|iridescent|nacreous|opaline|pearlescent|bright +opaline|1 +(adj)|iridescent|nacreous|opalescent|pearlescent|bright +opalise|2 +(verb)|opalize|change|alter|modify +(verb)|opalize|convert +opalize|2 +(verb)|opalise|change|alter|modify +(verb)|opalise|convert +opaque|2 +(adj)|opaque |cloudy|muddy|mirky|murky|turbid|fogged|foggy|frosted|glaucous|milky|milklike|whitish|semiopaque|solid|unclear +(adj)|unintelligible|incomprehensible |uncomprehensible +opaque gem|1 +(noun)|gem|gemstone|stone +opaqueness|2 +(noun)|opacity|incomprehensibility +(noun)|opacity|quality +opcw|1 +(noun)|Organization for the Prohibition of Chemical Weapons|OPcw|world organization|world organisation|international organization|international organisation|global organization +opec|1 +(noun)|Organization of Petroleum-Exporting Countries|OPEC|world organization|world organisation|international organization|international organisation|global organization|oil cartel +opel|1 +(noun)|Opel|Wilhelm von Opel|industrialist +open|42 +(adj)|open |unfastened|ajar|wide-open +(adj)|open |yawning|opened|unstoppered|unfastened|unsealed +(adj)|exposed|unprotected +(adj)|public +(adj)|open |opened|agape|gaping|agaze|staring|round-eyed|wide-eyed|wide|yawning +(adj)|available +(adj)|unrestricted +(adj)|assailable|undefendable|undefended|vulnerable +(adj)|loose|coarse +(adj)|unenclosed +(adj)|unfolded +(adj)|open +(adj)|undecided|undetermined|unresolved|unsettled +(adj)|opened|unsealed +(adj)|unconstricted +(adj)|empty +(adj)|overt |bald|barefaced|naked|raw|obvious|visible|undisguised|explicit|expressed|unconcealed|public +(adj)|unstopped +(adj)|nonunion +(adj)|capable|subject|susceptible +(adj)|unconcealed +(adj)|blatant|blazing|conspicuous|unconcealed +(adj)|clear|unobstructed +(adj)|wide-open|lawless|unlawful +(adj)|candid|heart-to-heart|ingenuous |artless +(adj)|honest |honorable +(adj)|unprejudiced |impartial +(adj)|active +(noun)|clear|area|country +(noun)|outdoors|out-of-doors|open air|outside|exterior +(noun)|tournament|tourney +(noun)|surface|public knowledge|general knowledge +(verb)|open up +(verb)|open up +(verb)|open up|change state|turn +(verb)|start|start up|embark on|commence|open up +(verb)|unfold|spread|spread out|undo +(verb)|open up|yield|give|afford +(verb)|open up|arise|come up +(verb)|move|go +(verb)|afford|give +(verb)|expose|exhibit|display +open-air|1 +(adj)|alfresco|outdoor |out-of-door|outside +open-air market|1 +(noun)|open-air marketplace|market square|marketplace|mart +open-air marketplace|1 +(noun)|open-air market|market square|marketplace|mart +open-and-shut|1 +(adj)|obvious +open-angle glaucoma|1 +(noun)|chronic glaucoma|glaucoma +open-chain|1 +(adj)|acyclic |aliphatic +open-class word|1 +(noun)|content word|word +open-collared|1 +(adj)|unbuttoned |unfastened +open-door policy|1 +(noun)|open door|trade policy|national trading policy +open-end credit|1 +(noun)|revolving credit|charge account credit|consumer credit +open-end fund|1 +(noun)|mutual fund|open-end investment company|investment company|investment trust|investment firm|fund +open-end investment company|1 +(noun)|mutual fund|open-end fund|investment company|investment trust|investment firm|fund +open-end wrench|1 +(noun)|tappet wrench|wrench|spanner +open-ended|3 +(adj)|unrestricted +(adj)|indeterminate |undetermined +(adj)|changeable |changeful +open-eyed|1 +(adj)|argus-eyed|vigilant|wakeful|watchful|alert +open-face sandwich|1 +(noun)|open sandwich|sandwich +open-heart surgery|1 +(noun)|heart surgery +open-hearth process|1 +(noun)|steel production +open-minded|1 +(adj)|broad-minded +open-plan|1 +(adj)|unrestricted +open-source|1 +(adj)|ASCII text file +open account|2 +(noun)|credit account|charge account|open-end credit|revolving credit|charge account credit +(noun)|credit order|bill-me order +open air|1 +(noun)|outdoors|out-of-doors|open|outside|exterior +open chain|1 +(noun)|chain|chemical chain +open circuit|1 +(noun)|circuit|electrical circuit|electric circuit +open door|2 +(noun)|open-door policy|trade policy|national trading policy +(noun)|door +open fire|1 +(verb)|fire|shoot +open fireplace|1 +(noun)|fireplace|hearth|recess|niche +open fracture|1 +(noun)|compound fracture|fracture|break +open frame|1 +(noun)|break|score +open house|1 +(noun)|party +open interval|1 +(noun)|unbounded interval|interval +open letter|1 +(noun)|letter|missive +open marriage|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +open order|1 +(noun)|military formation +open primary|1 +(noun)|direct primary +open sandwich|1 +(noun)|open-face sandwich|sandwich +open secret|1 +(noun)|secret +open sesame|2 +(noun)|means|agency|way +(noun)|command|bid|bidding|dictation +open shop|1 +(noun)|company +open sight|1 +(noun)|gunsight|gun-sight +open society|1 +(noun)|society +open to|1 +(adj)|hospitable|receptive +open university|1 +(noun)|Open University|university +open up|7 +(verb)|open +(verb)|open|arise|come up +(verb)|open|yield|give|afford +(verb)|pioneer|introduce|innovate +(verb)|open +(verb)|open|change state|turn +(verb)|talk|speak|utter|mouth|verbalize|verbalise +open weave|1 +(noun)|weave +openbill|1 +(noun)|stork +opencast|1 +(adj)|opencut|surface +opencast mining|1 +(noun)|strip mining|mining|excavation +opencut|1 +(adj)|opencast|surface +opened|3 +(adj)|open |agape|gaping|agaze|staring|round-eyed|wide-eyed|wide|yawning +(adj)|open +(adj)|open|unsealed +opener|3 +(noun)|start +(noun)|undoer|unfastener|untier|person|individual|someone|somebody|mortal|human|soul +(noun)|hand tool +openhanded|1 +(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|generous +openhandedness|1 +(noun)|munificence|largess|largesse|magnanimity|liberality|liberalness +openhearted|2 +(adj)|communicative |communicatory +(adj)|good-hearted|kind|kindly|benevolent |good +opening|13 +(adj)|opening |beginning|first|inaugural|initiative|initiatory|first|maiden|introductory|starting +(noun)|gap|space +(noun)|ceremony|ceremonial|ceremonial occasion|observance +(noun)|change of integrity +(noun)|opening night|curtain raising|start +(noun)|motion|movement|move|motility +(noun)|opportunity|chance +(noun)|introduction +(noun)|possibility|possible action|option|alternative|choice +(noun)|orifice|porta|passage|passageway +(noun)|artifact|artefact +(noun)|hatchway|scuttle|entrance|entranceway|entryway|entry|entree +(noun)|first step|initiative|opening move|beginning|start|commencement +opening line|1 +(noun)|line +opening move|1 +(noun)|first step|initiative|opening|beginning|start|commencement +opening night|1 +(noun)|opening|curtain raising|start +openmouthed|1 +(adj)|goggle-eyed|popeyed|surprised +openness|3 +(noun)|spacing|spatial arrangement +(noun)|sociability|sociableness +(noun)|receptiveness|receptivity|willingness +openside plane|1 +(noun)|rabbet plane|plane|carpenter's plane|woodworking plane +openwork|1 +(noun)|work|piece of work +opepe|1 +(noun)|Nauclea diderrichii|Sarcocephalus diderrichii|tree +opera|2 +(noun)|classical music|serious music +(noun)|opera house|theater|theatre|house +opera bouffe|1 +(noun)|comic opera|bouffe|opera comique|opera +opera cloak|1 +(noun)|opera hood|cloak +opera comique|1 +(noun)|comic opera|opera bouffe|bouffe|opera +opera company|1 +(noun)|company|troupe +opera glasses|1 +(noun)|binocular|binoculars|field glasses|optical instrument +opera hat|1 +(noun)|dress hat|high hat|silk hat|stovepipe|top hat|topper|beaver|hat|chapeau|lid +opera hood|1 +(noun)|opera cloak|cloak +opera house|1 +(noun)|opera|theater|theatre|house +opera star|1 +(noun)|operatic star|singer|vocalist|vocalizer|vocaliser +operable|3 +(adj)|operable +(adj)|functional|usable|useable|in working order|operational|serviceable +(adj)|practicable|practical +operagoer|1 +(noun)|patron|frequenter +operand|1 +(noun)|quantity +operant|1 +(adj)|at work|operative +operant conditioning|1 +(noun)|conditioning +operate|7 +(verb)|run|direct +(verb)|function|work|go|run +(verb)|control|manipulate +(verb)|manoeuver|maneuver|manoeuvre|move|go +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|engage|mesh|lock|move|displace +(verb)|operate on|treat|care for +operate on|1 +(verb)|operate|treat|care for +operatic|1 +(adj)|classical music|serious music +operatic star|1 +(noun)|opera star|singer|vocalist|vocalizer|vocaliser +operating|1 +(adj)|operational|in operation|operative +operating budget|1 +(noun)|budget +operating capability|1 +(noun)|performance capability|capability|capableness +operating capital|1 +(noun)|capital|working capital +operating cost|1 +(noun)|operating expense|overhead|budget items|expense|disbursal|disbursement +operating expense|1 +(noun)|operating cost|overhead|budget items|expense|disbursal|disbursement +operating instructions|1 +(noun)|instruction manual|instructions|book of instructions|manual +operating microscope|1 +(noun)|binocular microscope +operating procedure|1 +(noun)|procedure|process +operating room|1 +(noun)|OR|operating theater|operating theatre|surgery|hospital room +operating statement|1 +(noun)|income statement|earnings report|profit-and-loss statement|statement|financial statement +operating surgeon|1 +(noun)|surgeon|sawbones|doctor|doc|physician|MD|Dr.|medico +operating system|1 +(noun)|OS|software|software system|software package|package +operating table|1 +(noun)|table +operating theater|1 +(noun)|operating room|OR|operating theatre|surgery|hospital room +operating theatre|1 +(noun)|operating room|OR|operating theater|surgery|hospital room +operation|11 +(noun)|business activity|commercial activity +(noun)|activity +(noun)|procedure|work +(noun)|action|activity|activeness +(noun)|surgery|surgical operation|surgical procedure|surgical process|medical procedure +(noun)|military operation|activity +(noun)|data processing +(noun)|functioning|performance|process +(noun)|mathematical process|mathematical operation|calculation|computation|computing +(noun)|process|cognitive process|mental process|cognitive operation|cognition|knowledge|noesis +(noun)|activity +operation code|1 +(noun)|order code|code|computer code +operation desert storm|1 +(noun)|Operation Desert Storm|operation|military operation +operational|4 +(adj)|work +(adj)|functional|usable|useable|in working order|operable|serviceable +(adj)|operational |active|combat-ready|fighting|effective +(adj)|in operation|operating|operative +operational casualty|1 +(noun)|operational damage|damage|equipment casualty +operational cell|1 +(noun)|terrorist cell|radical cell +operational damage|1 +(noun)|operational casualty|damage|equipment casualty +operationalism|1 +(noun)|philosophical doctrine|philosophical theory +operationalist|1 +(adj)|philosophical doctrine|philosophical theory +operations|12 +(noun)|trading operations|transaction|dealing|dealings +(noun)|operation|business activity|commercial activity +(noun)|operation|activity +(noun)|operation|procedure|work +(noun)|operation|action|activity|activeness +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process|medical procedure +(noun)|operation|military operation|activity +(noun)|operation|data processing +(noun)|operation|functioning|performance|process +(noun)|mathematical process|mathematical operation|operation|calculation|computation|computing +(noun)|process|cognitive process|mental process|operation|cognitive operation|cognition|knowledge|noesis +(noun)|operation|activity +operations research|1 +(noun)|research +operative|7 +(adj)|operative |at work|operant|effective|good|in effect|in force|operational|in operation|operating|working +(adj)|medical procedure +(adj)|surgical |preoperative|postoperative +(adj)|key|significant |important +(adj)|running|functional|working|functioning +(noun)|secret agent|intelligence officer|intelligence agent|agent +(noun)|private detective|PI|private eye|private investigator|shamus|sherlock|detective +operative field|1 +(noun)|field|field of view +operator|5 +(noun)|function|mathematical function +(noun)|manipulator|causal agent|cause|causal agency +(noun)|businessman|man of affairs +(noun)|hustler|wheeler dealer|opportunist|self-seeker +(noun)|speculator|plunger +operator gene|1 +(noun)|gene|cistron|factor +operculate|1 +(adj)|operculated|plate +operculated|1 +(adj)|operculate|plate +operculum|1 +(noun)|plate +operetta|1 +(noun)|light opera|comic opera|opera bouffe|bouffe|opera comique +operon|1 +(noun)|deoxyribonucleic acid|desoxyribonucleic acid|DNA +operoseness|1 +(noun)|laboriousness|toilsomeness|effortfulness +opheodrys|1 +(noun)|Opheodrys|genus Opheodrys|reptile genus +opheodrys aestivus|1 +(noun)|rough green snake|Opheodrys aestivus|green snake|grass snake +opheodrys vernalis|1 +(noun)|smooth green snake|Opheodrys vernalis|green snake|grass snake +ophidia|1 +(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order +ophidian|1 +(noun)|snake|serpent|diapsid|diapsid reptile +ophidiidae|1 +(noun)|Ophidiidae|family Ophidiidae|fish family +ophidism|1 +(noun)|poisoning|toxic condition|intoxication +ophiodon|1 +(noun)|Ophiodon|genus Ophiodon|fish genus +ophiodon elongatus|1 +(noun)|lingcod|Ophiodon elongatus|scorpaenoid|scorpaenoid fish +ophiodontidae|1 +(noun)|Ophiodontidae|family Ophiodontidae|fish family +ophioglossaceae|1 +(noun)|Ophioglossaceae|family Ophioglossaceae|fern family +ophioglossales|1 +(noun)|Ophioglossales|order Ophioglossales|plant order +ophioglossum|1 +(noun)|Ophioglossum|genus Ophioglossum|fern genus +ophioglossum pendulum|1 +(noun)|ribbon fern|Ophioglossum pendulum|adder's tongue|adder's tongue fern +ophiolatry|1 +(noun)|serpent-worship|zoolatry|animal-worship +ophiophagus|1 +(noun)|Ophiophagus|genus Ophiophagus|reptile genus +ophiophagus hannan|1 +(noun)|hamadryad|king cobra|Ophiophagus hannan|Naja hannah|cobra +ophisaurus|1 +(noun)|Ophisaurus|genus Ophisaurus|reptile genus +ophiuchus|1 +(noun)|Ophiuchus|constellation +ophiurida|1 +(noun)|Ophiurida|subclass Ophiurida|class +ophiuroidea|1 +(noun)|Ophiuroidea|class Ophiuroidea|class +ophryon|1 +(noun)|craniometric point +ophrys|1 +(noun)|Ophrys|genus Ophrys|monocot genus|liliopsid genus +ophrys apifera|1 +(noun)|bee orchid|Ophrys apifera|orchid|orchidaceous plant +ophrys insectifera|1 +(noun)|fly orchid|Ophrys insectifera|Ophrys muscifera|orchid|orchidaceous plant +ophrys muscifera|1 +(noun)|fly orchid|Ophrys insectifera|Ophrys muscifera|orchid|orchidaceous plant +ophrys sphegodes|1 +(noun)|early spider orchid|Ophrys sphegodes|spider orchid +ophthalmectomy|1 +(noun)|ablation|extirpation|cutting out|excision +ophthalmia|1 +(noun)|ophthalmitis|conjunctivitis|pinkeye +ophthalmia neonatorum|1 +(noun)|ophthalmia|ophthalmitis +ophthalmic|2 +(adj)|sense organ|sensory receptor|receptor +(adj)|medicine|medical specialty +ophthalmic artery|1 +(noun)|arteria ophthalmica|artery|arteria|arterial blood vessel +ophthalmic vein|1 +(noun)|vena ophthalmica|vein|vena|venous blood vessel +ophthalmitis|1 +(noun)|ophthalmia|conjunctivitis|pinkeye +ophthalmologist|1 +(noun)|eye doctor|oculist|specialist|medical specialist +ophthalmology|1 +(noun)|medicine|medical specialty +ophthalmoplegia|1 +(noun)|paralysis|palsy +ophthalmoscope|1 +(noun)|medical instrument +opiate|1 +(noun)|narcotic +opiliones|1 +(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order +opine|2 +(verb)|speak up|animadvert|sound off|declare +(verb)|think|suppose|imagine|reckon|guess|expect|anticipate +opinion|6 +(noun)|sentiment|persuasion|view|thought|belief +(noun)|public opinion|popular opinion|vox populi|belief +(noun)|view|message|content|subject matter|substance +(noun)|legal opinion|judgment|judgement|legal document|legal instrument|official document|instrument +(noun)|ruling|judgment|judgement|judicial decision +(noun)|impression|feeling|belief|notion|idea|thought +opinion poll|1 +(noun)|poll|public opinion poll|canvass|inquiry|enquiry|research +opinionated|1 +(adj)|opinionative|self-opinionated|narrow-minded |narrow +opinionative|1 +(adj)|opinionated|self-opinionated|narrow-minded |narrow +opisthobranchia|1 +(noun)|Opisthobranchia|subclass Opisthobranchia|class +opisthocomidae|1 +(noun)|Opisthocomidae|family Opisthocomidae|bird family +opisthocomus|1 +(noun)|Opisthocomus|genus Opisthocomus|bird genus +opisthocomus hoazin|1 +(noun)|hoatzin|hoactzin|stinkbird|Opisthocomus hoazin|gallinaceous bird|gallinacean +opisthognathidae|1 +(noun)|Opisthognathidae|family Opisthognathidae|fish family +opisthognathous|1 +(adj)|opisthognathous |chinless +opisthorchiasis|1 +(noun)|infestation +opisthotonos|1 +(noun)|spasm|cramp|muscle spasm +opium|1 +(noun)|narcotic|controlled substance +opium addict|1 +(noun)|opium taker|drug addict|junkie|junky +opium den|1 +(noun)|building|edifice +opium poppy|1 +(noun)|Papaver somniferum|poppy +opium taker|1 +(noun)|opium addict|drug addict|junkie|junky +opopanax|1 +(noun)|gum +oporto|1 +(noun)|Porto|Oporto|city|metropolis|urban center|port +opossum|2 +(noun)|phalanger|possum|marsupial|pouched mammal +(noun)|possum|marsupial|pouched mammal +opossum rat|1 +(noun)|marsupial|pouched mammal +opossum shrimp|1 +(noun)|malacostracan crustacean +opossum wood|1 +(noun)|silver-bell tree|silverbell tree|snowdrop tree|Halesia carolina|Halesia tetraptera|silver bell +oppenheimer|1 +(noun)|Oppenheimer|Robert Oppenheimer|nuclear physicist +opponent|3 +(adj)|opposing|hostile +(noun)|opposition|opposite|contestant +(noun)|adversary|antagonist|opposer|resister|person|individual|someone|somebody|mortal|human|soul +opportune|2 +(adj)|opportune |good|right|ripe|timely|seasonable|well-timed|well timed|advantageous +(adj)|favorable|favourable|convenient +opportuneness|1 +(noun)|patness|timeliness|convenience +opportunism|1 +(noun)|self-interest|self-seeking|expedience|selfishness +opportunist|2 +(adj)|opportunistic|timeserving|expedient +(noun)|self-seeker|selfish person +opportunistic|1 +(adj)|opportunist|timeserving|expedient +opportunistic infection|1 +(noun)|infection +opportunity|1 +(noun)|chance|possibility|possibleness +opportunity cost|1 +(noun)|cost +opposable|1 +(adj)|opposable |apposable +oppose|6 +(verb)|argue|contend|debate|fence +(verb)|fight|fight back|fight down|defend|fight|struggle +(verb)|counterbalance|contrast|counterpoint +(verb)|pit|match|play off|confront|face +(verb)|react|act|move +(verb)|controvert|contradict|refute|rebut +opposed|2 +(adj)|opposing|anti +(adj)|opposed |at odds|conflicting +opposer|1 +(noun)|adversary|antagonist|opponent|resister|person|individual|someone|somebody|mortal|human|soul +opposing|3 +(adj)|opponent|hostile +(adj)|counteractive |antagonistic +(adj)|opposed|anti +opposite|11 +(adj)|other +(adj)|opposite |paired +(adj)|other +(adj)|other +(adj)|different +(adj)|diametric|diametrical|polar|different +(noun)|antonym|opposite word|word +(noun)|reverse|contrary|opposition|oppositeness +(noun)|opposition|opponent|contestant +(noun)|inverse|opposition|oppositeness +(adv)|face-to-face +opposite number|1 +(noun)|counterpart|vis-a-vis|equivalent +opposite word|1 +(noun)|antonym|opposite|word +oppositeness|1 +(noun)|opposition|relation +opposition|8 +(noun)|resistance|action +(noun)|oppositeness|relation +(noun)|confrontation|resistance +(noun)|opponent|opposite|contestant +(noun)|body +(noun)|direction +(noun)|enemy|foe|foeman|adversary|antagonist|opponent|opposer|resister +(noun)|party|political party +oppositive|1 +(adj)|adversative|disjunctive +oppress|2 +(verb)|suppress|crush +(verb)|persecute|torment|rag|bedevil|crucify|dun|frustrate +oppressed|1 +(adj)|laden|burdened +oppression|3 +(noun)|subjugation|persecution +(noun)|subjugation|subjection +(noun)|oppressiveness|depression +oppressive|2 +(adj)|heavy +(adj)|tyrannical|tyrannous|domineering +oppressiveness|2 +(noun)|oppression|depression +(noun)|burdensomeness|onerousness|difficulty|difficultness +oppressor|1 +(noun)|unpleasant person|disagreeable person +opprobrious|2 +(adj)|abusive|insulting|scornful|scurrilous|offensive +(adj)|black|disgraceful|ignominious|inglorious|shameful|dishonorable |dishonourable +opprobrium|2 +(noun)|obloquy|shame|disgrace|ignominy +(noun)|infamy|dishonor|dishonour +oppugn|1 +(verb)|question|call into question|challenge +ops|1 +(noun)|Ops|Roman deity +opsanus tau|1 +(noun)|toadfish|Opsanus tau|spiny-finned fish|acanthopterygian +opsin|1 +(noun)|protein +opsonin|1 +(noun)|antibody +opsonisation|1 +(noun)|opsonization|bodily process|body process|bodily function|activity +opsonization|1 +(noun)|opsonisation|bodily process|body process|bodily function|activity +opsonize|1 +(verb)|change|alter|modify +opt|1 +(verb)|choose|prefer +opt out|1 +(verb)|cop out|choose|prefer|opt +optative|3 +(adj)|decision making|deciding +(adj)|mood|mode|modality +(noun)|optative mood|mood|mode|modality +optative mood|1 +(noun)|optative|mood|mode|modality +optez|1 +(noun)|Optez|artificial language +opthalmic|1 +(adj)|ocular|optic|optical|sense organ|sensory receptor|receptor +optic|3 +(adj)|ocular|optical|opthalmic|sense organ|sensory receptor|receptor +(adj)|ocular|optical|visual|modality|sense modality|sensory system|exteroception +(noun)|eye|oculus|sense organ|sensory receptor|receptor +optic axis|1 +(noun)|principal axis|axis +optic chiasm|1 +(noun)|optic chiasma|chiasma opticum|chiasma|chiasm|decussation +optic chiasma|1 +(noun)|optic chiasm|chiasma opticum|chiasma|chiasm|decussation +optic cup|1 +(noun)|eyecup|calyculus|caliculus|calycle +optic disc|1 +(noun)|blind spot|optic disk|point +optic disk|1 +(noun)|blind spot|optic disc|point +optic nerve|1 +(noun)|nervus opticus|second cranial nerve|optic tract|cranial nerve +optic tract|1 +(noun)|optic nerve|nervus opticus|second cranial nerve|cranial nerve +optical|3 +(adj)|ocular|optic|visual|modality|sense modality|sensory system|exteroception +(adj)|physics|physical science|natural philosophy +(adj)|ocular|optic|opthalmic|sense organ|sensory receptor|receptor +optical aberration|1 +(noun)|aberration|distortion|optical phenomenon +optical bench|1 +(noun)|apparatus|setup +optical condenser|1 +(noun)|condenser|lens|lense|lens system +optical crown|1 +(noun)|crown glass|optical glass +optical device|1 +(noun)|device +optical disc|1 +(noun)|optical disk|memory device|storage device +optical disk|1 +(noun)|optical disc|memory device|storage device +optical fiber|1 +(noun)|glass fiber|optical fibre|glass fibre|fiber|fibre +optical fibre|1 +(noun)|optical fiber|glass fiber|glass fibre|fiber|fibre +optical flint|1 +(noun)|flint glass|optical glass +optical fusion|1 +(noun)|fusion|visual perception|beholding|seeing +optical glass|1 +(noun)|glass +optical illusion|1 +(noun)|optical phenomenon +optical instrument|1 +(noun)|instrument +optical lens|1 +(noun)|camera lens|lens|lense|lens system +optical maser|1 +(noun)|laser|optical device +optical opacity|1 +(noun)|opacity +optical phenomenon|1 +(noun)|physical phenomenon +optical prism|1 +(noun)|prism|optical device +optical pyrometer|1 +(noun)|pyroscope|pyrometer +optical telescope|1 +(noun)|astronomical telescope +optician|1 +(noun)|lens maker|skilled worker|trained worker +optics|2 +(noun)|physics|physical science|natural philosophy +(noun)|eye|oculus|optic|sense organ|sensory receptor|receptor +optimal|1 +(adj)|optimum|best +optimisation|1 +(noun)|optimization|improvement +optimise|3 +(verb)|optimize|perfect|hone +(verb)|optimize|modify +(verb)|optimize|act|behave|do +optimism|2 +(noun)|hope +(noun)|disposition|temperament +optimist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +optimistic|2 +(adj)|optimistic |bullish|cheerful|pollyannaish|upbeat|rose-colored|rosy|starry-eyed|sanguine|hopeful|positive +(adj)|affirmative|positive +optimization|1 +(noun)|optimisation|improvement +optimize|3 +(verb)|optimise|perfect|hone +(verb)|optimise|modify +(verb)|optimise|act|behave|do +optimum|2 +(adj)|optimal|best +(noun)|good|goodness +option|3 +(noun)|derivative instrument|derivative +(noun)|alternative|choice|decision making|deciding +(noun)|choice|selection|pick|action +optional|1 +(adj)|optional |elective|ex gratia|facultative|nonmandatory|nonobligatory +optometrist|1 +(noun)|oculist|specialist|specializer|specialiser +optometry|1 +(noun)|practice +opulence|1 +(noun)|luxury|luxuriousness|sumptuousness|wealth|wealthiness +opulent|1 +(adj)|deluxe|gilded|luxurious|princely|sumptuous|rich +opulently|1 +(adv)|sumptuously +opuntia|1 +(noun)|Opuntia|genus Opuntia|caryophylloid dicot genus +opuntia cholla|1 +(noun)|cholla|Opuntia cholla|cactus +opuntia lindheimeri|1 +(noun)|nopal|Opuntia lindheimeri|prickly pear|prickly pear cactus +opuntia tuna|1 +(noun)|tuna|Opuntia tuna|prickly pear|prickly pear cactus +opuntiales|1 +(noun)|Opuntiales|order Opuntiales|plant order +opus|1 +(noun)|musical composition|composition|piece|piece of music|music +opv|1 +(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine +or|2 +(noun)|Oregon|Beaver State|OR|American state +(noun)|operating room|OR|operating theater|operating theatre|surgery|hospital room +or circuit|1 +(noun)|OR circuit|OR gate|gate|logic gate +or else|1 +(adv)|alternatively|as an alternative|instead +or gate|1 +(noun)|OR circuit|OR gate|gate|logic gate +or so|1 +(adv)|approximately|about|close to|just about|some|roughly|more or less|around +orach|1 +(noun)|orache|herb|herbaceous plant +orache|1 +(noun)|orach|herb|herbaceous plant +oracle|3 +(noun)|prophet|seer|vaticinator|diviner +(noun)|prophecy|divination +(noun)|shrine +oracle of apollo|1 +(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle +oracle of delphi|1 +(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle +oracular|3 +(adj)|prophecy|divination +(adj)|Delphic|prophetic |prophetical +(adj)|enigmatic|ambiguous +oradexon|1 +(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid|corticoid|adrenal cortical steroid|anti-inflammatory|anti-inflammatory drug +oral|5 +(adj)|unwritten|spoken +(adj)|rima +(adj)|oral |buccal|buccal +(adj)|oral +(noun)|oral exam|oral examination|viva voce|viva|examination|exam|test +oral cancer|1 +(noun)|carcinoma +oral cavity|1 +(noun)|mouth|oral fissure|rima oris|rima +oral communication|1 +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|auditory communication +oral contraception|1 +(noun)|contraception|contraceptive method +oral contraceptive|1 +(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|anovulatory drug|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +oral contraceptive pill|1 +(noun)|pill|birth control pill|contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +oral contract|1 +(noun)|agreement|understanding +oral exam|1 +(noun)|oral|oral examination|viva voce|viva|examination|exam|test +oral examination|1 +(noun)|oral|oral exam|viva voce|viva|examination|exam|test +oral fissure|1 +(noun)|mouth|oral cavity|rima oris|rima +oral herpes|1 +(noun)|herpes labialis|cold sore|fever blister|herpes simplex +oral personality|1 +(noun)|personality +oral phase|1 +(noun)|oral stage|phase|stage +oral poliovirus vaccine|1 +(noun)|Sabin vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine +oral presentation|1 +(noun)|public speaking|speechmaking|speaking|address|speech +oral roberts|1 +(noun)|Roberts|Oral Roberts|evangelist|revivalist|gospeler|gospeller +oral sex|1 +(noun)|head|perversion|sexual perversion +oral smear|1 +(noun)|alimentary tract smear +oral stage|1 +(noun)|oral phase|phase|stage +orally|2 +(adv)|by mouth +(adv)|by word of mouth +oran|1 +(noun)|Oran|city|metropolis|urban center|port +orang|1 +(noun)|orangutan|orangutang|Pongo pygmaeus|great ape|pongid +orange|6 +(adj)|orangish|chromatic +(noun)|citrus|citrus fruit|citrous fruit +(noun)|orangeness|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|orange tree|citrus|citrus tree +(noun)|pigment +(noun)|Orange|Orange River|river +orange-blossom orchid|1 +(noun)|Sarcochilus falcatus|orchid|orchidaceous plant +orange-juice concentrate|1 +(noun)|frozen orange juice|orange juice|concentrate +orange balsam|1 +(noun)|jewelweed|lady's earrings|celandine|touch-me-not|Impatiens capensis|herb|herbaceous plant +orange bat|1 +(noun)|orange horseshoe bat|Rhinonicteris aurantius|leafnose bat|leaf-nosed bat +orange daisy|1 +(noun)|orange fleabane|Erigeron aurantiacus|fleabane +orange fleabane|1 +(noun)|orange daisy|Erigeron aurantiacus|fleabane +orange free state|1 +(noun)|Free State|Orange Free State|state|province +orange grass|1 +(noun)|nitweed|pineweed|pine-weed|Hypericum gentianoides|St John's wort +orange group|1 +(noun)|Orange Group|OV|terrorist organization|terrorist group|foreign terrorist organization|FTO +orange grove|1 +(noun)|grove|woodlet|orchard|plantation +orange hawkweed|1 +(noun)|Pilosella aurantiaca|Hieracium aurantiacum|weed +orange horseshoe bat|1 +(noun)|orange bat|Rhinonicteris aurantius|leafnose bat|leaf-nosed bat +orange juice|1 +(noun)|fruit juice|fruit crush +orange liqueur|1 +(noun)|liqueur|cordial +orange marmalade|1 +(noun)|marmalade +orange milkweed|1 +(noun)|butterfly weed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +orange milkwort|1 +(noun)|yellow milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort +orange mushroom pimple|1 +(noun)|mushroom pimple +orange order|1 +(noun)|Orange Order|Association of Orangemen|organization|organisation +orange peel|1 +(noun)|orange rind|peel|skin +orange peel fungus|1 +(noun)|Aleuria aurantia|discomycete|cup fungus +orange pekoe|1 +(noun)|pekoe|black tea +orange red|1 +(noun)|scarlet|vermilion|red|redness +orange rind|1 +(noun)|orange peel|peel|skin +orange river|1 +(noun)|Orange|Orange River|river +orange sneezeweed|1 +(noun)|owlclaws|Helenium hoopesii|sneezeweed +orange soda|1 +(noun)|soft drink +orange toast|1 +(noun)|toast +orange tortrix|1 +(noun)|tortrix|Argyrotaenia citrana|tortricid|tortricid moth +orange tree|1 +(noun)|orange|citrus|citrus tree +orange yellow|1 +(noun)|saffron|yellow|yellowness +orange zest|1 +(noun)|orange peel|orange rind +orangeade|1 +(noun)|fruit drink|ade +orangeman|1 +(noun)|Orangeman|Protestant +orangeness|1 +(noun)|orange|chromatic color|chromatic colour|spectral color|spectral colour +orangewood|1 +(noun)|wood +orangish|1 +(adj)|orange|chromatic +orangutan|1 +(noun)|orang|orangutang|Pongo pygmaeus|great ape|pongid +orangutang|1 +(noun)|orangutan|orang|Pongo pygmaeus|great ape|pongid +orasone|1 +(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid|anti-inflammatory|anti-inflammatory drug +orate|1 +(verb)|talk|speak +oration|1 +(noun)|oratory +orator|1 +(noun)|speechmaker|rhetorician|public speaker|speechifier|speaker|talker|utterer|verbalizer|verbaliser +oratorical|1 +(adj)|rhetorical +oratorio|1 +(noun)|cantata|classical music|serious music +oratory|1 +(noun)|address|speech +orb|2 +(noun)|eyeball|capsule +(noun)|ball|globe|sphere +orb web|1 +(noun)|spider web|spider's web +orbicular|2 +(adj)|orbiculate|simple |unsubdivided|round |circular +(adj)|ball-shaped|global|globose|globular|spheric|spherical|round |circular +orbiculate|1 +(adj)|orbicular|simple |unsubdivided|round |circular +orbiculate leaf|1 +(noun)|simple leaf +orbignya|1 +(noun)|Orbignya|genus Orbignya|monocot genus|liliopsid genus +orbignya cohune|1 +(noun)|cohune palm|Orbignya cohune|cohune|feather palm +orbignya martiana|1 +(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +orbignya phalerata|1 +(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +orbignya spesiosa|1 +(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm +orbison|1 +(noun)|Orbison|Roy Orbison|singer|vocalist|vocalizer|vocaliser|composer +orbit|6 +(noun)|celestial orbit|path|route|itinerary +(noun)|sphere|domain|area|field|arena|environment +(noun)|scope|range|reach|compass|ambit|extent +(noun)|electron orbit|path|route|itinerary +(noun)|eye socket|cranial orbit|orbital cavity|cavity|bodily cavity|cavum +(verb)|revolve|circle|circulate +orbit period|1 +(noun)|period +orbital|2 +(adj)|path|route|itinerary +(adj)|cavity|bodily cavity|cavum +orbital cavity|1 +(noun)|eye socket|orbit|cranial orbit|cavity|bodily cavity|cavum +orbital motion|1 +(noun)|orbital rotation|rotation|revolution|gyration +orbital plane|1 +(noun)|plane|sheet +orbital point|1 +(noun)|orbitale|craniometric point +orbital rotation|1 +(noun)|orbital motion|rotation|revolution|gyration +orbitale|1 +(noun)|orbital point|craniometric point +orbiter|1 +(noun)|satellite|artificial satellite|equipment +orca|1 +(noun)|killer whale|killer|grampus|sea wolf|Orcinus orca|dolphin +orchard|1 +(noun)|grove|woodlet|plantation|garden +orchard apple tree|1 +(noun)|apple|Malus pumila|apple tree +orchard grass|1 +(noun)|cocksfoot|cockspur|Dactylis glomerata|grass +orchard oriole|1 +(noun)|Icterus spurius|New World oriole|American oriole|oriole +orchestia|1 +(noun)|Orchestia|genus Orchestia|arthropod genus +orchestiidae|1 +(noun)|Orchestiidae|family Orchestiidae|arthropod family +orchestra|2 +(noun)|musical organization|musical organisation|musical group +(noun)|seating|seats|seating room|seating area +orchestra pit|1 +(noun)|pit|area +orchestral|1 +(adj)|musical organization|musical organisation|musical group +orchestral bells|1 +(noun)|glockenspiel|percussion instrument|percussive instrument +orchestrate|2 +(verb)|score +(verb)|mastermind|engineer|direct|organize|organise|plan +orchestrated|1 +(adj)|musical organization|musical organisation|musical group +orchestration|3 +(noun)|musical arrangement|arrangement +(noun)|instrumentation|arrangement|arranging|transcription +(noun)|arrangement|arranging|transcription +orchestrator|1 +(noun)|arranger|adapter|transcriber +orchid|1 +(noun)|orchidaceous plant|flower +orchid cactus|1 +(noun)|epiphyllum|cactus +orchid family|1 +(noun)|Orchidaceae|family Orchidaceae|monocot family|liliopsid family +orchid tree|1 +(noun)|mountain ebony|Bauhinia variegata|angiospermous tree|flowering tree +orchidaceae|1 +(noun)|Orchidaceae|family Orchidaceae|orchid family|monocot family|liliopsid family +orchidaceous plant|1 +(noun)|orchid|flower +orchidales|1 +(noun)|Orchidales|order Orchidales|plant order +orchidalgia|1 +(noun)|pain|hurting +orchidectomy|1 +(noun)|orchiectomy|ablation|extirpation|cutting out|excision +orchiectomy|1 +(noun)|orchidectomy|ablation|extirpation|cutting out|excision +orchil|2 +(noun)|archil|cudbear|dye|dyestuff +(noun)|archil|lecanora +orchiopexy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +orchis|2 +(noun)|orchid|orchidaceous plant +(noun)|testis|testicle|ball|ballock|bollock|nut|egg|male reproductive gland|gonad|sex gland +orchis mascula|1 +(noun)|male orchis|early purple orchid|Orchis mascula|orchis +orchis papilionaceae|1 +(noun)|butterfly orchid|butterfly orchis|Orchis papilionaceae|orchis +orchis spectabilis|1 +(noun)|showy orchis|purple orchis|purple-hooded orchis|Orchis spectabilis|orchis +orchitis|1 +(noun)|inflammation|redness|rubor +orchotomy|1 +(noun)|incision|section|surgical incision +orcinus|1 +(noun)|Orcinus|genus Orcinus|mammal genus +orcinus orca|1 +(noun)|killer whale|killer|orca|grampus|sea wolf|Orcinus orca|dolphin +orcus|1 +(noun)|Dis|Orcus|Roman deity +orczy|1 +(noun)|Orczy|Baroness Emmusca Orczy|writer|author +ord kangaroo rat|1 +(noun)|Ord kangaroo rat|Dipodomys ordi|kangaroo rat|desert rat|Dipodomys phillipsii +ordain|4 +(verb)|enact|decree +(verb)|consecrate|ordinate|order|invest|vest|enthrone +(verb)|invest|vest|enthrone +(verb)|decree +ordained|2 +(adj)|appointed|decreed|prescribed|settled +(adj)|consecrated |consecrate|dedicated +ordainer|1 +(noun)|cleric|churchman|divine|ecclesiastic +ordeal|2 +(noun)|experience +(noun)|trial by ordeal|trial +ordeal bean|1 +(noun)|calabar bean|bean +ordeal tree|1 +(noun)|bushman's poison|Acocanthera oppositifolia|Acocanthera venenata|shrub|bush +order|24 +(noun)|command|bid|bidding|dictation +(noun)|order of magnitude|magnitude +(noun)|state +(noun)|ordering|ordination|arrangement +(noun)|orderliness|condition|status +(noun)|decree|edict|fiat|rescript|act|enactment +(noun)|purchase order|commercial document|commercial instrument +(noun)|club|society|guild|gild|lodge|association +(noun)|rules of order|parliamentary law|parliamentary procedure|rule|prescript +(noun)|holy order|status|position +(noun)|monastic order|sect|religious sect|religious order +(noun)|taxonomic group|taxonomic category|taxon +(noun)|request|asking +(noun)|artistic style|idiom +(noun)|ordering|organization|organisation +(verb)|tell|enjoin|say|request +(verb)|request|bespeak|call for|quest +(verb)|prescribe|dictate|inflict|bring down|visit|impose +(verb)|regulate|regularize|regularise|govern|decide|make up one's mind|determine +(verb)|arrange|set up +(verb)|arrange|set up +(verb)|ordain|consecrate|ordinate|invest|vest|enthrone +(verb)|arrange|set up|put|organize|organise +(verb)|rate|rank|range|grade|place|judge +order-chenopodiales|1 +(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order +order acarina|1 +(noun)|Acarina|order Acarina|animal order +order accipitriformes|1 +(noun)|Accipitriformes|order Accipitriformes|bird of prey|raptor|raptorial bird +order actinaria|1 +(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order +order actiniaria|1 +(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order +order actinomycetales|1 +(noun)|Actinomycetales|order Actinomycetales|animal order +order actinomyxidia|1 +(noun)|Actinomyxidia|order Actinomyxidia|animal order +order aepyorniformes|1 +(noun)|Aepyorniformes|order Aepyorniformes|animal order +order agaricales|1 +(noun)|Agaricales|order Agaricales|fungus order +order alcyonaria|1 +(noun)|Alcyonaria|order Alcyonaria|animal order +order alismales|1 +(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order +order amoebida|1 +(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order +order amoebina|1 +(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order +order amphipoda|1 +(noun)|Amphipoda|order Amphipoda|animal order +order anacanthini|1 +(noun)|Anacanthini|order Anacanthini|animal order +order anaspida|1 +(noun)|Anaspida|order Anaspida|animal order +order andreaeales|1 +(noun)|Andreaeales|order Andreaeales|plant order +order anguilliformes|1 +(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order +order anoplura|1 +(noun)|Anoplura|order Anoplura|animal order +order anostraca|1 +(noun)|Anostraca|order Anostraca|animal order +order anseriformes|1 +(noun)|Anseriformes|order Anseriformes|animal order +order anthocerotales|1 +(noun)|Anthocerotales|order Anthocerotales|plant order +order anura|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +order aphyllophorales|1 +(noun)|Aphyllophorales|order Aphyllophorales|fungus order +order aplacophora|1 +(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order +order apodes|1 +(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order +order apodiformes|1 +(noun)|Apodiformes|order Apodiformes|animal order +order apterygiformes|1 +(noun)|Apterygiformes|order Apterygiformes|animal order +order arales|1 +(noun)|Arales|order Arales|plant order +order araneae|1 +(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order +order araneida|1 +(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order +order aristolochiales|1 +(noun)|Aristolochiales|order Aristolochiales|plant order +order arms|1 +(noun)|position|posture|attitude +order artiodactyla|1 +(noun)|Artiodactyla|order Artiodactyla|animal order +order aspergillales|1 +(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order +order auriculariales|1 +(noun)|Auriculariales|order Auriculariales|fungus order +order batoidei|1 +(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order +order batrachia|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +order belemnoidea|1 +(noun)|Belemnoidea|order Belemnoidea|animal order +order bennettitales|1 +(noun)|Bennettitales|order Bennettitales|plant order +order berycomorphi|1 +(noun)|Berycomorphi|order Berycomorphi|animal order +order blastocladiales|1 +(noun)|Blastocladiales|order Blastocladiales|fungus order +order book|2 +(noun)|order paper|order of the day +(noun)|book|volume +order branchiura|1 +(noun)|Branchiura|order Branchiura|animal order +order bryales|1 +(noun)|Bryales|order Bryales|plant order +order campanulales|1 +(noun)|Campanulales|order Campanulales|plant order +order caprimulgiformes|1 +(noun)|Caprimulgiformes|order Caprimulgiformes|animal order +order carnivora|1 +(noun)|Carnivora|order Carnivora|animal order +order caryophyllales|1 +(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order +order casuariiformes|1 +(noun)|Casuariiformes|order Casuariiformes|animal order +order casuarinales|1 +(noun)|Casuarinales|order Casuarinales|plant order +order caudata|1 +(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order +order cestida|1 +(noun)|Cestida|order Cestida|animal order +order cetacea|1 +(noun)|Cetacea|order Cetacea|animal order +order charadriiformes|1 +(noun)|Charadriiformes|order Charadriiformes|animal order +order charales|1 +(noun)|Charales|order Charales|protoctist order +order chelonethida|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +order chelonia|1 +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +order chiroptera|1 +(noun)|Chiroptera|order Chiroptera|animal order +order chlorococcales|1 +(noun)|Chlorococcales|order Chlorococcales|protoctist order +order chytridiales|1 +(noun)|Chytridiales|order Chytridiales|fungus order +order ciconiiformes|1 +(noun)|Ciconiiformes|order Ciconiiformes|animal order +order cilioflagellata|1 +(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order +order coccidia|1 +(noun)|Coccidia|order Coccidia|animal order +order code|1 +(noun)|operation code|code|computer code +order coleoptera|1 +(noun)|Coleoptera|order Coleoptera|animal order +order collembola|1 +(noun)|Collembola|order Collembola|animal order +order columbiformes|1 +(noun)|Columbiformes|order Columbiformes|animal order +order colymbiformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +order commelinales|1 +(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order +order coniferales|1 +(noun)|Coniferales|order Coniferales|plant order +order conodonta|1 +(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order +order conodontophorida|1 +(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order +order coraciiformes|1 +(noun)|Coraciiformes|order Coraciiformes|animal order +order cordaitales|1 +(noun)|Cordaitales|order Cordaitales|plant order +order corrodentia|1 +(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order +order crocodilia|1 +(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order +order crocodylia|1 +(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order +order cuculiformes|1 +(noun)|Cuculiformes|order Cuculiformes|animal order +order cycadales|1 +(noun)|Cycadales|order Cycadales|plant order +order cycadofilicales|1 +(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order +order cyclostomata|1 +(noun)|Cyclostomata|order Cyclostomata|animal order +order cydippea|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +order cydippida|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +order cydippidea|1 +(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order +order cypriniformes|1 +(noun)|Cypriniformes|order Cypriniformes|animal order +order decapoda|2 +(noun)|Decapoda|order Decapoda|animal order +(noun)|Decapoda|order Decapoda|animal order +order dermaptera|1 +(noun)|Dermaptera|order Dermaptera|animal order +order dermoptera|1 +(noun)|Dermoptera|order Dermoptera|animal order +order diapensiales|1 +(noun)|Diapensiales|order Diapensiales|plant order +order dicranales|1 +(noun)|Dicranales|order Dicranales|plant order +order dictyoptera|1 +(noun)|Dictyoptera|order Dictyoptera|animal order +order dinocerata|1 +(noun)|Dinocerata|order Dinocerata|animal order +order dinoflagellata|1 +(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order +order dinornithiformes|1 +(noun)|Dinornithiformes|order Dinornithiformes|animal order +order diptera|1 +(noun)|Diptera|order Diptera|animal order +order discocephali|1 +(noun)|Discocephali|order Discocephali|animal order +order ebenales|1 +(noun)|Ebenales|order Ebenales|plant order +order edentata|1 +(noun)|Edentata|order Edentata|animal order +order embiodea|1 +(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order +order embioptera|1 +(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order +order endomycetales|1 +(noun)|Endomycetales|order Endomycetales|fungus order +order entomophthorales|1 +(noun)|Entomophthorales|order Entomophthorales|fungus order +order ephemerida|1 +(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order +order ephemeroptera|1 +(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order +order equisetales|1 +(noun)|Equisetales|order Equisetales|plant order +order ericales|1 +(noun)|Ericales|order Ericales|plant order +order erysiphales|1 +(noun)|Erysiphales|order Erysiphales|fungus order +order eubacteriales|1 +(noun)|Eubacteriales|order Eubacteriales|animal order +order eubryales|1 +(noun)|Eubryales|order Eubryales|plant order +order euphausiacea|1 +(noun)|Euphausiacea|order Euphausiacea|animal order +order eurotiales|1 +(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order +order eurypterida|1 +(noun)|Eurypterida|order Eurypterida|animal order +order exocycloida|1 +(noun)|Exocycloida|order Exocycloida|animal order +order fagales|1 +(noun)|Fagales|order Fagales|plant order +order falconiformes|1 +(noun)|Falconiformes|order Falconiformes|animal order +order filicales|1 +(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order +order foraminifera|1 +(noun)|Foraminifera|order Foraminifera|animal order +order form|1 +(noun)|form +order fucales|1 +(noun)|Fucales|order Fucales|animal order +order gadiformes|1 +(noun)|Gadiformes|order Gadiformes|animal order +order galliformes|1 +(noun)|Galliformes|order Galliformes|animal order +order ganoidei|1 +(noun)|Ganoidei|order Ganoidei|animal order +order gaviiformes|1 +(noun)|Gaviiformes|order Gaviiformes|animal order +order gentianales|1 +(noun)|Gentianales|order Gentianales|plant order +order geophilomorpha|1 +(noun)|Geophilomorpha|order Geophilomorpha|animal order +order geraniales|1 +(noun)|Geraniales|order Geraniales|plant order +order ginkgoales|1 +(noun)|Ginkgoales|order Ginkgoales|plant order +order gnetales|1 +(noun)|Gnetales|order Gnetales|plant order +order graminales|1 +(noun)|Graminales|order Graminales|plant order +order gregarinida|1 +(noun)|Gregarinida|order Gregarinida|animal order +order gruiformes|1 +(noun)|Gruiformes|order Gruiformes|animal order +order guttiferales|1 +(noun)|Guttiferales|order Guttiferales|plant order +order gymnophiona|1 +(noun)|Gymnophiona|order Gymnophiona|animal order +order haemosporidia|1 +(noun)|Haemosporidia|order Haemosporidia|animal order +order haplosporidia|1 +(noun)|Haplosporidia|order Haplosporidia|animal order +order heliozoa|1 +(noun)|Heliozoa|order Heliozoa|animal order +order helotiales|1 +(noun)|Helotiales|order Helotiales|fungus order +order hemiptera|1 +(noun)|Hemiptera|order Hemiptera|animal order +order heterosomata|1 +(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order +order heterotrichales|1 +(noun)|Heterotrichales|order Heterotrichales|protoctist order +order hymenogastrales|1 +(noun)|Hymenogastrales|order Hymenogastrales|fungus order +order hymenoptera|1 +(noun)|Hymenoptera|order Hymenoptera|animal order +order hypericales|1 +(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order +order hypermastigina|1 +(noun)|Hypermastigina|order Hypermastigina|animal order +order hypocreales|1 +(noun)|Hypocreales|order Hypocreales|fungus order +order hyracoidea|1 +(noun)|Hyracoidea|order Hyracoidea|animal order +order ichthyosauria|1 +(noun)|Ichthyosauria|order Ichthyosauria|animal order +order ictodosauria|1 +(noun)|Ictodosauria|order Ictodosauria|animal order +order insectivora|1 +(noun)|Insectivora|order Insectivora|animal order +order insessores|1 +(noun)|Insessores|order Insessores|perching bird|percher|animal order +order isoetales|1 +(noun)|Isoetales|order Isoetales|plant order +order isopoda|1 +(noun)|Isopoda|order Isopoda|animal order +order isoptera|1 +(noun)|Isoptera|order Isoptera|animal order +order isospondyli|1 +(noun)|Isospondyli|order Isospondyli|animal order +order juglandales|1 +(noun)|Juglandales|order Juglandales|plant order +order jungermanniales|1 +(noun)|Jungermanniales|order Jungermanniales|plant order +order lagomorpha|1 +(noun)|Lagomorpha|order Lagomorpha|animal order +order laminariales|1 +(noun)|Laminariales|order Laminariales|protoctist order +order lechanorales|1 +(noun)|Lechanorales|order Lechanorales|fungus order +order lepidodendrales|1 +(noun)|Lepidodendrales|order Lepidodendrales|plant order +order lepidoptera|1 +(noun)|Lepidoptera|order Lepidoptera|animal order +order lichenales|1 +(noun)|Lichenales|order Lichenales|fungus order +order liliales|1 +(noun)|Liliales|order Liliales|plant order +order lobata|1 +(noun)|Lobata|order Lobata|animal order +order loricata|1 +(noun)|Loricata|order Loricata|animal order +order lycoperdales|1 +(noun)|Lycoperdales|order Lycoperdales|fungus order +order lycopodiales|1 +(noun)|Lycopodiales|order Lycopodiales|plant order +order lyginopteridales|1 +(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order +order madreporaria|1 +(noun)|Madreporaria|order Madreporaria|animal order +order mallophaga|1 +(noun)|Mallophaga|order Mallophaga|animal order +order malvales|1 +(noun)|Malvales|order Malvales|plant order +order mantophasmatodea|1 +(noun)|Mantophasmatodea|animal order +order marattiales|1 +(noun)|Marattiales|order Marattiales|plant order +order marchantiales|1 +(noun)|Marchantiales|order Marchantiales|plant order +order marsupialia|1 +(noun)|Marsupialia|order Marsupialia|animal order +order mecoptera|1 +(noun)|Mecoptera|order Mecoptera|animal order +order moniliales|1 +(noun)|Moniliales|order Moniliales|fungus order +order monotremata|1 +(noun)|Monotremata|order Monotremata|animal order +order mucorales|1 +(noun)|Mucorales|order Mucorales|fungus order +order musales|1 +(noun)|Musales|order Musales|plant order +order myaceae|1 +(noun)|Myaceae|order Myaceae|animal order +order mycelia sterilia|1 +(noun)|Mycelia Sterilia|order Mycelia Sterilia|fungus order +order mycoplasmatales|1 +(noun)|Mycoplasmatales|order Mycoplasmatales|animal order +order mycrosporidia|1 +(noun)|Mycrosporidia|order Mycrosporidia|animal order +order myricales|1 +(noun)|Myricales|order Myricales|plant order +order myrtales|1 +(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order +order mysidacea|1 +(noun)|Mysidacea|order Mysidacea|animal order +order myxobacterales|1 +(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order +order myxobacteria|1 +(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order +order myxobacteriales|1 +(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order +order myxosporidia|1 +(noun)|Myxosporidia|order Myxosporidia|animal order +order naiadales|1 +(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order +order neuroptera|1 +(noun)|Neuroptera|order Neuroptera|animal order +order nidulariales|1 +(noun)|Nidulariales|order Nidulariales|fungus order +order notostraca|1 +(noun)|Notostraca|order Notostraca|animal order +order nudibranchia|1 +(noun)|Nudibranchia|order Nudibranchia|animal order +order octopoda|1 +(noun)|Octopoda|order Octopoda|animal order +order odonata|1 +(noun)|Odonata|order Odonata|animal order +order oedogoniales|1 +(noun)|Oedogoniales|protoctist order +order of business|1 +(noun)|agenda|agendum|list|listing +order of magnitude|2 +(noun)|order|magnitude +(noun)|magnitude|ratio +order of our lady of mount carmel|1 +(noun)|Carmelite order|Order of Our Lady of Mount Carmel|order|monastic order +order of payment|1 +(noun)|draft|bill of exchange|negotiable instrument +order of saint benedict|1 +(noun)|Benedictine order|order of Saint Benedict|order|monastic order +order of the day|1 +(noun)|agenda|agendum|order of business +order of the purple heart|1 +(noun)|Order of the Purple Heart|Purple Heart|decoration|laurel wreath|medal|medallion|palm|ribbon +order oleales|1 +(noun)|Oleales|order Oleales|plant order +order ophioglossales|1 +(noun)|Ophioglossales|order Ophioglossales|plant order +order opiliones|1 +(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order +order opuntiales|1 +(noun)|Opuntiales|order Opuntiales|plant order +order orchidales|1 +(noun)|Orchidales|order Orchidales|plant order +order ornithischia|1 +(noun)|Ornithischia|order Ornithischia|animal order +order orthoptera|1 +(noun)|Orthoptera|order Orthoptera|animal order +order ostariophysi|1 +(noun)|Ostariophysi|order Ostariophysi|soft-finned fish|malacopterygian +order ostracodermi|1 +(noun)|Ostracodermi|order Ostracodermi|animal order +order palmales|1 +(noun)|Palmales|order Palmales|plant order +order pandanales|1 +(noun)|Pandanales|order Pandanales|plant order +order papaverales|1 +(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order +order paper|1 +(noun)|order book|order of the day +order parietales|1 +(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order +order passeriformes|1 +(noun)|Passeriformes|order Passeriformes|animal order +order pectinibranchia|1 +(noun)|Pectinibranchia|order Pectinibranchia|animal order +order pediculati|1 +(noun)|Pediculati|order Pediculati|animal order +order pedipalpi|1 +(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order +order pelecaniformes|1 +(noun)|Pelecaniformes|order Pelecaniformes|animal order +order pelycosauria|1 +(noun)|Pelycosauria|order Pelycosauria|animal order +order perciformes|1 +(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order +order percomorphi|1 +(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order +order perissodactyla|1 +(noun)|Perissodactyla|order Perissodactyla|animal order +order peronosporales|1 +(noun)|Peronosporales|order Peronosporales|fungus order +order pezizales|1 +(noun)|Pezizales|order Pezizales|fungus order +order phalangida|1 +(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order +order phallales|1 +(noun)|Phallales|order Phallales|fungus genus +order phasmatodea|1 +(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order +order phasmida|1 +(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order +order pholidota|1 +(noun)|Pholidota|order Pholidota|animal order +order picariae|1 +(noun)|Picariae|order Picariae|animal order +order piciformes|1 +(noun)|Piciformes|order Piciformes|animal order +order piperales|1 +(noun)|Piperales|order Piperales|plant order +order plantaginales|1 +(noun)|Plantaginales|order Plantaginales|plant order +order platyctenea|1 +(noun)|Platyctenea|order Platyctenea|animal order +order plecoptera|1 +(noun)|Plecoptera|order Plecoptera|animal order +order plectognathi|1 +(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order +order pleuronectiformes|1 +(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order +order plumbaginales|1 +(noun)|Plumbaginales|order Plumbaginales|plant order +order podicipediformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +order podicipitiformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +order polemoniales|1 +(noun)|Polemoniales|order Polemoniales|plant order +order polygonales|1 +(noun)|Polygonales|order Polygonales|plant order +order polymastigina|1 +(noun)|Polymastigina|order Polymastigina|animal order +order polypodiales|1 +(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order +order primates|1 +(noun)|Primates|order Primates|animal order +order primulales|1 +(noun)|Primulales|order Primulales|plant order +order proboscidea|1 +(noun)|Proboscidea|order Proboscidea|animal order +order procellariiformes|1 +(noun)|Procellariiformes|order Procellariiformes|animal order +order proteales|1 +(noun)|Proteales|order Proteales|plant order +order protura|1 +(noun)|Protura|order Protura|animal order +order pseudomonadales|1 +(noun)|Pseudomonadales|order Pseudomonadales|animal order +order pseudoscorpiones|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +order pseudoscorpionida|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +order psilophytales|1 +(noun)|Psilophytales|order Psilophytales|plant order +order psilotales|1 +(noun)|Psilotales|order Psilotales|plant order +order psittaciformes|1 +(noun)|Psittaciformes|order Psittaciformes|animal order +order psocoptera|1 +(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order +order pterosauria|1 +(noun)|Pterosauria|order Pterosauria|animal order +order pulmonata|1 +(noun)|Pulmonata|order Pulmonata|animal order +order pycnogonida|1 +(noun)|Pycnogonida|order Pycnogonida|animal order +order radiolaria|1 +(noun)|Radiolaria|order Radiolaria|animal order +order rajiformes|1 +(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order +order ranales|1 +(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order +order ranunculales|1 +(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order +order raptores|1 +(noun)|Raptores|order Raptores|animal order +order rhamnales|1 +(noun)|Rhamnales|order Rhamnales|plant order +order rheiformes|1 +(noun)|Rheiformes|order Rheiformes|animal order +order rhoeadales|1 +(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order +order rhynchocephalia|1 +(noun)|Rhynchocephalia|order Rhynchocephalia|animal order +order rickettsiales|1 +(noun)|Rickettsiales|order Rickettsiales|animal order +order rodentia|1 +(noun)|Rodentia|order Rodentia|animal order +order rosales|1 +(noun)|Rosales|order Rosales|plant order +order rubiales|1 +(noun)|Rubiales|order Rubiales|plant order +order salicales|1 +(noun)|Salicales|order Salicales|plant order +order salientia|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +order santalales|1 +(noun)|Santalales|order Santalales|plant order +order sapindales|1 +(noun)|Sapindales|order Sapindales|plant order +order saprolegniales|1 +(noun)|Saprolegniales|order Saprolegniales|fungus order +order sarcosporidia|1 +(noun)|Sarcosporidia|order Sarcosporidia|animal order +order sarraceniales|1 +(noun)|Sarraceniales|order Sarraceniales|plant order +order saurischia|1 +(noun)|Saurischia|order Saurischia|animal order +order sauropterygia|1 +(noun)|Sauropterygia|order Sauropterygia|animal order +order scandentia|1 +(noun)|Scandentia|order Scandentia|animal order +order sclerodermatales|1 +(noun)|Sclerodermatales|order Sclerodermatales|fungus order +order scleroparei|1 +(noun)|Scleroparei|order Scleroparei|animal order +order scorpionida|1 +(noun)|Scorpionida|order Scorpionida|animal order +order scrophulariales|1 +(noun)|Scrophulariales|order Scrophulariales|plant order +order secotiales|1 +(noun)|Secotiales|order Secotiales|fungus order +order selaginellales|1 +(noun)|Selaginellales|order Selaginellales|plant order +order siluriformes|1 +(noun)|Siluriformes|order Siluriformes|animal order +order siphonaptera|1 +(noun)|Siphonaptera|order Siphonaptera|animal order +order siphonophora|1 +(noun)|Siphonophora|order Siphonophora|animal order +order sirenia|1 +(noun)|Sirenia|order Sirenia|animal order +order solenichthyes|1 +(noun)|Solenichthyes|order Solenichthyes|animal order +order solenogastres|1 +(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order +order spatangoida|1 +(noun)|Spatangoida|order Spatangoida|animal order +order sphaeriales|1 +(noun)|Sphaeriales|order Sphaeriales|fungus order +order sphaerocarpales|1 +(noun)|Sphaerocarpales|order Sphaerocarpales|plant order +order sphagnales|1 +(noun)|Sphagnales|order Sphagnales|plant order +order sphenisciformes|1 +(noun)|Sphenisciformes|order Sphenisciformes|animal order +order spirochaetales|1 +(noun)|Spirochaetales|order Spirochaetales|animal order +order squamata|1 +(noun)|Squamata|order Squamata|animal order +order stegocephalia|1 +(noun)|Stegocephalia|order Stegocephalia|animal order +order stereospondyli|1 +(noun)|Stereospondyli|order Stereospondyli|animal order +order stomatopoda|1 +(noun)|Stomatopoda|order Stomatopoda|animal order +order strigiformes|1 +(noun)|Strigiformes|order Strigiformes|animal order +order struthioniformes|1 +(noun)|Struthioniformes|order Struthioniformes|animal order +order synentognathi|1 +(noun)|Synentognathi|order Synentognathi|animal order +order taxales|1 +(noun)|Taxales|order Taxales|plant order +order temnospondyli|1 +(noun)|Temnospondyli|order Temnospondyli|animal order +order testacea|1 +(noun)|Testacea|order Testacea|animal order +order testudinata|1 +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +order testudines|1 +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +order tetraodontiformes|1 +(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order +order thecodontia|1 +(noun)|Thecodontia|order Thecodontia|animal order +order therapsida|1 +(noun)|Therapsida|order Therapsida|animal order +order thymelaeales|1 +(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order +order thysanoptera|1 +(noun)|Thysanoptera|order Thysanoptera|animal order +order thysanura|1 +(noun)|Thysanura|order Thysanura|animal order +order tinamiformes|1 +(noun)|Tinamiformes|order Tinamiformes|animal order +order torpediniformes|1 +(noun)|Torpediniformes|order Torpediniformes|animal order +order tremellales|1 +(noun)|Tremellales|order Tremellales|fungus order +order trichoptera|1 +(noun)|Trichoptera|order Trichoptera|animal order +order trogoniformes|1 +(noun)|Trogoniformes|order Trogoniformes|animal order +order tuberales|1 +(noun)|Tuberales|order Tuberales|fungus order +order tubulidentata|1 +(noun)|Tubulidentata|order Tubulidentata|animal order +order tulostomatales|1 +(noun)|Tulostomatales|order Tulostomatales|fungus order +order ulvales|1 +(noun)|Ulvales|order Ulvales|protoctist order +order umbellales|1 +(noun)|Umbellales|order Umbellales|plant order +order uredinales|1 +(noun)|Uredinales|order Uredinales|fungus order +order urodella|1 +(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order +order uropygi|1 +(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order +order urticales|1 +(noun)|Urticales|order Urticales|plant order +order ustilaginales|1 +(noun)|Ustilaginales|order Ustilaginales|fungus order +order volvocales|1 +(noun)|Volvocales|order Volvocales|protoctist order +order xiphosura|1 +(noun)|Xiphosura|order Xiphosura|animal order +order xyridales|1 +(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order +order zeomorphi|1 +(noun)|Zeomorphi|order Zeomorphi|animal order +order zygnemales|1 +(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order +order zygnematales|1 +(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order +ordered|4 +(adj)|ordered |consecutive|sequent|sequential|serial|successive +(adj)|orderly|regulated|organized +(adj)|arranged |laid|set|placed +(adj)|consistent|logical|orderly|coherent +ordered series|1 +(noun)|scale|scale of measurement|graduated table|standard|criterion|measure|touchstone +orderer|2 +(noun)|buyer|purchaser|emptor|vendee +(noun)|systematizer|systematiser|systemizer|systemiser|systematist|organizer|organiser|arranger +ordering|2 +(noun)|order|ordination|arrangement +(noun)|order|organization|organisation +orderliness|2 +(noun)|methodicalness|regularity +(noun)|order|condition|status +orderly|8 +(adj)|orderly |law-abiding|peaceful +(adj)|lawful|rule-governed|regular +(adj)|systematic|nonrandom +(adj)|tidy +(adj)|ordered|regulated|organized +(adj)|consistent|logical|ordered|coherent +(noun)|attendant|attender|tender|soldier +(noun)|hospital attendant|attendant|attender|tender +orderly sergeant|1 +(noun)|first sergeant|sergeant first class +ordinal|3 +(adj)|taxonomic group|taxonomic category|taxon +(adj)|ordinal |zero|zeroth|first|1st|second|2nd|2d|third|3rd|tertiary|fourth|4th|quaternary|fifth|5th|sixth|6th|seventh|7th|eighth|8th|ninth|9th|tenth|10th|eleventh|11th|twelfth|12th|thirteenth|13th|fourteenth|14th|fifteenth|15th|sixteenth|16th|seventeenth|17th|eighteenth|18th|nineteenth|19th|umpteenth|umteenth|umptieth|twentieth|20th|twenty-first|21st|twenty-second|22nd|twenty-third|23rd|twenty-fourth|24th|twenty-fifth|25th|twenty-sixth|26th|twenty-seventh|27th|twenty-eighth|28th|twenty-ninth|29th|thirtieth|30th|thirty-first|31st|thirty-second|32nd|thirty-third|33rd|thirty-fourth|34th|thirty-fifth|35th|thirty-sixth|36th|thirty-seventh|37th|thirty-eighth|38th|thirty-ninth|39th|fortieth|40th|forty-first|41st|forty-second|42nd|forty-third|43rd|forty-fourth|44th|forty-fifth|45th|forty-sixth|46th|forty-seventh|47th|forty-eighth|48th|forty-ninth|49th|fiftieth|50th|fifty-fifth|55th|sixtieth|60th|sixty-fifth|65th|seventieth|70th|seventy-fifth|75th|eightieth|80th|eighty-fifth|85th|ninetieth|90th|ninety-fifth|95th|hundredth|centesimal|100th|hundred-and-first|101st|hundred-and-fifth|105th|hundred-and-tenth|110th|hundred-and-fifteenth|115th|hundred-and-twentieth|120th|hundred-and-twenty-fifth|125th|hundred-and-thirtieth|130th|hundred-and-thirty-fifth|135th|hundred-and-fortieth|140th|hundred-and-forty-fifth|145th|hundred-and-fiftieth|150th|hundred-and-fifty-fifth|155th|hundred-and-sixtieth|160th|hundred-and-sixty-fifth|165th|hundred-and-seventieth|170th|hundred-and-seventy-fifth|175th|hundred-and-eightieth|180th|hundred-and-ninetieth|190th|two-hundredth|200th|three-hundredth|300th|four-hundredth|400th|five-hundredth|500th|thousandth|1000th|millionth|billionth|trillionth|nth +(noun)|ordinal number|no.|number +ordinal number|1 +(noun)|ordinal|no.|number +ordinance|3 +(noun)|regulation|rule|prescript +(noun)|legislative act|statute +(noun)|ordination|appointment|assignment|designation|naming +ordinand|1 +(noun)|clergyman|reverend|man of the cloth +ordinarily|1 +(adv)|normally|usually|unremarkably|commonly +ordinariness|1 +(noun)|quality +ordinary|7 +(adj)|ordinary |average|fair|mediocre|middling|banal|commonplace|trivial|banausic|characterless|nondescript|common|commonplace|cut-and-dried|cut-and-dry|everyday|mundane|quotidian|routine|unremarkable|workaday|indifferent|passable|so-so|tolerable|run-of-the-mill|run-of-the-mine|mine run|unexceptional|common|usual +(adj)|average|common +(noun)|judge|justice|jurist|magistrate +(noun)|condition +(noun)|clergyman|reverend|man of the cloth +(noun)|ordinary bicycle|bicycle|bike|wheel|cycle +(noun)|charge|bearing|heraldic bearing|armorial bearing +ordinary annuity|1 +(noun)|annuity|rente +ordinary bicycle|1 +(noun)|ordinary|bicycle|bike|wheel|cycle +ordinary care|1 +(noun)|due care|reasonable care|care|charge|tutelage|guardianship +ordinary life insurance|1 +(noun)|whole life insurance|straight life insurance|life insurance|life assurance +ordinary shares|1 +(noun)|common stock|common shares|stock +ordinate|3 +(noun)|cartesian coordinate +(verb)|ordain|consecrate|order|invest|vest|enthrone +(verb)|align|coordinate|adjust|set|correct +ordination|3 +(noun)|status|position +(noun)|ordering|order|arrangement +(noun)|ordinance|appointment|assignment|designation|naming +ordnance|2 +(noun)|munitions|ordnance stores|armament +(noun)|artillery|heavy weapon|gun|armament +ordnance stores|1 +(noun)|munitions|ordnance|armament +ordnance survey|1 +(noun)|Ordnance Survey|administrative unit|administrative body +ordovician|1 +(noun)|Ordovician|Ordovician period|period|geological period +ordovician period|1 +(noun)|Ordovician|Ordovician period|period|geological period +ordure|1 +(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|dejection|body waste|excretion|excreta|excrement|excretory product +ore|2 +(noun)|mineral +(noun)|fractional monetary unit|subunit +ore bed|1 +(noun)|bed +ore dressing|1 +(noun)|mineral extraction|mineral processing|mineral dressing|ore processing|beneficiation|extraction +ore processing|1 +(noun)|mineral extraction|mineral processing|mineral dressing|ore dressing|beneficiation|extraction +oread|1 +(noun)|Oread|nymph +oreamnos|1 +(noun)|Oreamnos|genus Oreamnos|mammal genus +oreamnos americanus|1 +(noun)|mountain goat|Rocky Mountain goat|Oreamnos americanus|goat antelope +orectolobidae|1 +(noun)|Orectolobidae|family Orectolobidae|fish family +orectolobus|1 +(noun)|Orectolobus|genus Orectolobus|fish genus +orectolobus barbatus|1 +(noun)|carpet shark|Orectolobus barbatus|shark +oregano|2 +(noun)|marjoram|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum +(noun)|marjoram|herb +oregon|1 +(noun)|Oregon|Beaver State|OR|American state +oregon alder|1 +(noun)|red alder|Oregon alder|Alnus rubra|alder|alder tree +oregon ash|1 +(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash|ash tree +oregon cedar|1 +(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar|cedar tree +oregon crab apple|1 +(noun)|Oregon crab apple|Malus fusca|wild apple|crab apple|crabapple +oregon fir|1 +(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +oregon grape|2 +(noun)|Oregon grape|Mahonia nervosa|shrub|bush +(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub|bush +oregon holly grape|1 +(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub|bush +oregon jargon|1 +(noun)|Chinook Jargon|Oregon Jargon|pidgin +oregon larch|1 +(noun)|western larch|western tamarack|Oregon larch|Larix occidentalis|larch|larch tree +oregon lily|1 +(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily +oregon maple|1 +(noun)|Oregon maple|big-leaf maple|Acer macrophyllum|maple +oregon myrtle|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +oregon oak|1 +(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak +oregon pine|1 +(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +oregon white oak|1 +(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak +oregonian|1 +(noun)|Oregonian|American +oreide|1 +(noun)|oroide|alloy|metal +orelanism|1 +(noun)|Orelanism|political orientation|ideology|political theory +oreo|1 +(noun)|oreo cookie|cookie|cooky|biscuit +oreo cookie|1 +(noun)|oreo|cookie|cooky|biscuit +oreopteris|1 +(noun)|Oreopteris|genus Oreopteris|fern genus +oreopteris limbosperma|1 +(noun)|mountain fern|Oreopteris limbosperma|Dryopteris oreopteris|fern +oreortyx|1 +(noun)|Oreortyx|genus Oreortyx|bird genus +oreortyx picta palmeri|1 +(noun)|mountain quail|mountain partridge|Oreortyx picta palmeri|partridge +orestes|1 +(noun)|Orestes|mythical being +orff|1 +(noun)|Orff|Carl Orff|musician|educator|pedagogue +organ|6 +(noun)|body part +(noun)|agency|federal agency|government agency|bureau|office|authority +(noun)|electric organ|electronic organ|Hammond organ|electronic instrument +(noun)|periodical +(noun)|pipe organ|wind instrument|wind +(noun)|harmonium|reed organ|free-reed instrument +organ-grinder|1 +(noun)|showman|promoter|impresario +organ donor|1 +(noun)|donor +organ loft|1 +(noun)|gallery +organ of corti|1 +(noun)|organ of Corti|organ of hearing +organ of hearing|1 +(noun)|sense organ|sensory receptor|receptor +organ pipe|1 +(noun)|pipe|pipework|wind instrument|wind +organ stop|1 +(noun)|organ pipe|pipe|pipework +organ transplant|1 +(noun)|transplant|transplantation|operation|surgery|surgical operation|surgical procedure|surgical process +organdie|1 +(noun)|organdy|muslin +organdy|1 +(noun)|organdie|muslin +organelle|1 +(noun)|cell organ|organ +organic|8 +(adj)|organic +(adj)|living thing|animate thing +(adj)|organic |integrated|structured|nonsynthetic +(adj)|organic +(adj)|wholesome +(adj)|healthful +(adj)|constituent|constitutional|constitutive|essential +(noun)|organic fertilizer|organic fertiliser|fertilizer|fertiliser|plant food +organic brain syndrome|1 +(noun)|mental abnormality +organic chemistry|1 +(noun)|chemistry|chemical science +organic compound|1 +(noun)|compound|chemical compound +organic disorder|1 +(noun)|disorder|upset +organic fertiliser|1 +(noun)|organic|organic fertilizer|fertilizer|fertiliser|plant food +organic fertilizer|1 +(noun)|organic|organic fertiliser|fertilizer|fertiliser|plant food +organic law|1 +(noun)|fundamental law|constitution|law +organic phenomenon|1 +(noun)|natural phenomenon +organic process|1 +(noun)|biological process|process +organic structure|1 +(noun)|body|physical structure|natural object +organicism|1 +(noun)|scientific theory +organicistic|1 +(adj)|scientific theory +organification|1 +(noun)|organic process|biological process +organisation|7 +(noun)|arrangement|organization|system|structure +(noun)|administration|governance|governing body|establishment|brass|organization|body +(noun)|organization|social group +(noun)|organization|system|orderliness|methodicalness +(noun)|organization|administration|disposal +(noun)|organization|activity +(noun)|constitution|establishment|formation|organization|beginning|start|commencement +organise|6 +(verb)|organize|coordinate|arrange|set up +(verb)|form|organize|make|create +(verb)|unionize|unionise|organize|join|fall in|get together +(verb)|organize|manage|deal|care|handle +(verb)|organize|prepare|devise|get up|machinate|initiate|pioneer +(verb)|mastermind|engineer|direct|organize|orchestrate|plan +organised|1 +(adj)|organized|unionized|unionised|union +organiser|3 +(noun)|organizer|labor organizer|union representative +(noun)|organizer|arranger|thinker +(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organizer|electronic device +organism|2 +(noun)|being|living thing|animate thing +(noun)|system|scheme +organismal|1 +(adj)|organismic|system|scheme +organismic|1 +(adj)|organismal|system|scheme +organist|1 +(noun)|musician|instrumentalist|player +organization|7 +(noun)|organisation|social group +(noun)|arrangement|organisation|system|structure +(noun)|administration|governance|governing body|establishment|brass|organisation|body +(noun)|constitution|establishment|formation|organisation|beginning|start|commencement +(noun)|organisation|administration|disposal +(noun)|organisation|activity +(noun)|organisation|system|orderliness|methodicalness +organization chart|1 +(noun)|chart +organization expense|1 +(noun)|business expense|trade expense +organization for the prohibition of chemical weapons|1 +(noun)|Organization for the Prohibition of Chemical Weapons|OPcw|world organization|world organisation|international organization|international organisation|global organization +organization man|1 +(noun)|employee +organization of american states|1 +(noun)|Organization of American States|OAS|world organization|world organisation|international organization|international organisation|global organization +organization of petroleum-exporting countries|1 +(noun)|Organization of Petroleum-Exporting Countries|OPEC|world organization|world organisation|international organization|international organisation|global organization|oil cartel +organization of the oppressed on earth|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +organizational|1 +(adj)|structure +organize|6 +(verb)|form|organise|make|create +(verb)|organise|manage|deal|care|handle +(verb)|mastermind|engineer|direct|organise|orchestrate|plan +(verb)|organise|coordinate|arrange|set up +(verb)|organise|prepare|devise|get up|machinate|initiate|pioneer +(verb)|unionize|unionise|organise|join|fall in|get together +organized|3 +(adj)|organized |arranged|configured|designed|corporate|incorporated|formed|re-formed|reorganized|reorganised|structured +(adj)|organized |methodical|ordered|orderly|regulated|well-conducted|systematic +(adj)|organised|unionized|unionised|union +organized crime|1 +(noun)|gangland|gangdom|social group +organizer|3 +(noun)|organiser|arranger|thinker +(noun)|organiser|labor organizer|union representative +(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organiser|electronic device +organon|1 +(noun)|system|system of rules +organophosphate|1 +(noun)|insecticide|insect powder +organophosphate nerve agent|1 +(noun)|nerve gas|nerve agent +organs|7 +(noun)|variety meat|meat +(noun)|organ|body part +(noun)|organ|agency|federal agency|government agency|bureau|office|authority +(noun)|electric organ|electronic organ|Hammond organ|organ|electronic instrument +(noun)|organ|periodical +(noun)|organ|pipe organ|wind instrument|wind +(noun)|harmonium|organ|reed organ|free-reed instrument +organza|1 +(noun)|fabric|cloth|material|textile +orgasm|1 +(noun)|climax|sexual climax|coming|consummation +orgiastic|2 +(adj)|sexy +(adj)|bacchanalian|bacchanal|bacchic|carousing|intoxicated |drunk|inebriated +orgy|3 +(noun)|binge|splurge|indulgence|indulging|pampering|humoring +(noun)|rite|religious rite +(noun)|debauch|debauchery|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel|revelry +oriel|1 +(noun)|oriel window|bay window|bow window +oriel window|1 +(noun)|oriel|bay window|bow window +orient|6 +(adj)|eastern +(noun)|East|Orient|Asia +(noun)|eastern hemisphere|hemisphere +(verb)|point|lie +(verb)|orientate|decide|make up one's mind|determine +(verb)|position +oriental|2 +(adj)|Asian|eastern +(noun)|Oriental|oriental person|Asian|Asiatic +oriental alabaster|1 +(noun)|alabaster|onyx marble|Mexican onyx|calcite +oriental arborvitae|1 +(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae +oriental beetle|1 +(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle|scarabaeid|scarabaean +oriental bittersweet|1 +(noun)|Japanese bittersweet|Japan bittersweet|Celastrus orbiculatus|Celastric articulatus|vine +oriental black mushroom|1 +(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus +oriental bush cherry|1 +(noun)|flowering almond|Prunus japonica|almond tree +oriental cherry|1 +(noun)|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry +oriental cockroach|1 +(noun)|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach|roach +oriental garlic|1 +(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant +oriental person|1 +(noun)|Oriental|Asian|Asiatic +oriental plane|1 +(noun)|Platanus orientalis|plane tree|sycamore|platan +oriental poppy|1 +(noun)|Papaver orientale|poppy +oriental roach|1 +(noun)|oriental cockroach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach|roach +oriental scops owl|1 +(noun)|Oriental scops owl|Otus sunia|scops owl +oriental sore|1 +(noun)|cutaneous leishmaniasis|Old World leishmaniasis|tropical sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +oriental spruce|1 +(noun)|Picea orientalis|spruce +oriental studies|1 +(noun)|Orientalism|Oriental Studies|humanistic discipline|humanities|liberal arts|arts +orientalise|1 +(verb)|orientalize|change|alter|modify +orientalism|2 +(noun)|Orientalism|Oriental Studies|humanistic discipline|humanities|liberal arts|arts +(noun)|quality +orientalist|1 +(noun)|specialist|specializer|specialiser +orientalize|1 +(verb)|orientalise|change|alter|modify +orientate|1 +(verb)|orient|decide|make up one's mind|determine +orientated|1 +(adj)|oriented |adjusted|familiarized|familiarised|bound|destined|directed|headed|homeward|homeward-bound|minded|orienting|orientating +orientating|1 +(adj)|orienting |aligning|positioning|dimensioning|familiarizing|familiarising|homing|oriented|orientated +orientation|6 +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|attitude|mental attitude +(noun)|direction +(noun)|predilection|preference|predisposition +(noun)|self-awareness +(noun)|orientation course|course|course of study|course of instruction|class +orientation course|1 +(noun)|orientation|course|course of study|course of instruction|class +oriented|1 +(adj)|oriented |orientated|adjusted|familiarized|familiarised|bound|destined|directed|headed|homeward|homeward-bound|minded|orienting|orientating +orienting|1 +(adj)|orienting |orientating|aligning|positioning|dimensioning|familiarizing|familiarising|homing|oriented|orientated +orifice|1 +(noun)|opening|porta|passage|passageway +oriflamme|2 +(noun)|symbol|symbolization|symbolisation|symbolic representation +(noun)|standard +origami|1 +(noun)|art|artistic creation|artistic production +origanum|1 +(noun)|herb|herbaceous plant +origanum dictamnus|1 +(noun)|dittany of crete|cretan dittany|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum +origanum majorana|1 +(noun)|sweet marjoram|knotted marjoram|Origanum majorana|Majorana hortensis|origanum +origanum vulgare|1 +(noun)|oregano|marjoram|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum +origen|1 +(noun)|Origen|theologian|theologist|theologizer|theologiser|philosopher +origin|5 +(noun)|beginning|root|rootage|source|point +(noun)|descent|extraction|ancestry|lineage|derivation|filiation +(noun)|origination|inception|beginning +(noun)|intersection +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|parentage|stemma|stock|genealogy|family tree +original|6 +(adj)|first +(adj)|primary +(adj)|original |avant-garde|daring|freehand|freehanded|fresh|new|novel|germinal|originative|seminal|innovative|innovational|groundbreaking|newfangled|new|underivative|creative|originative|first|primary|unconventional +(adj)|underived +(noun)|master|master copy|creation +(noun)|archetype|pilot|model|example +original sin|1 +(noun)|sin|sinning +originalism|1 +(noun)|belief +originality|2 +(noun)|ability|power +(noun)|quality +originally|2 +(adv)|primitively|in the beginning +(adv)|in the first place|earlier|in the beginning|to begin with +originate|3 +(verb)|arise|rise|develop|uprise|spring up|grow|become +(verb)|initiate|start|make|create|originate in +(verb)|begin|start +origination|2 +(noun)|origin|inception|beginning +(noun)|initiation|founding|foundation|institution|creation|innovation|introduction|instauration|beginning|start|commencement +origination fee|1 +(noun)|fee +originative|3 +(adj)|creative |fanciful|notional|fictive|imaginative|ingenious|inventive|yeasty|original|productive +(adj)|creative|generative |productive +(adj)|germinal|seminal|original +originator|1 +(noun)|conceiver|mastermind|creator +orinasal|1 +(noun)|orinasal phone|phone|speech sound|sound +orinasal phone|1 +(noun)|orinasal|phone|speech sound|sound +orinase|1 +(noun)|tolbutamide|Orinase|sulfonylurea|hypoglycemic agent|hypoglycaemic agent +orinoco|1 +(noun)|Orinoco|Orinoco River|river +orinoco river|1 +(noun)|Orinoco|Orinoco River|river +oriole|2 +(noun)|Old World oriole|oscine|oscine bird +(noun)|New World oriole|American oriole|oscine|oscine bird +oriolidae|1 +(noun)|Oriolidae|family Oriolidae|bird family +oriolus|1 +(noun)|Oriolus|genus Oriolus|bird genus +oriolus oriolus|1 +(noun)|golden oriole|Oriolus oriolus|Old World oriole|oriole +orion|2 +(noun)|Orion|mythical being +(noun)|Orion|The Hunter|constellation|diffuse nebula|gaseous nebula +orison|1 +(noun)|prayer|petition|request|asking +orissa|1 +(noun)|Orissa|state|province +orites|1 +(noun)|Orites|genus Orites|dicot genus|magnoliopsid genus +orites excelsa|1 +(noun)|prickly ash|Orites excelsa|tree +oriya|2 +(noun)|Oriya|Indian +(noun)|Oriya|Magadhan +orizaba|1 +(noun)|Orizaba|city|metropolis|urban center +orkney islands|1 +(noun)|Orkney Islands|archipelago +orlando|1 +(noun)|Orlando|city|metropolis|urban center +orlando di lasso|1 +(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer +orleanais|1 +(noun)|Orleanais|geographical area|geographic area|geographical region|geographic region +orleanist|1 +(noun)|Orleanist|monarchist|royalist +orleans|2 +(noun)|Orleans|city|metropolis|urban center +(noun)|Orleans|siege of Orleans|siege|besieging|beleaguering|military blockade +orlon|1 +(noun)|Orlon|acrylic +orlop|1 +(noun)|orlop deck|fourth deck|deck +orlop deck|1 +(noun)|orlop|fourth deck|deck +orly|1 +(noun)|Orly|suburb|suburbia|suburban area +orly group|1 +(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization|terrorist group|foreign terrorist organization|FTO +ormandy|1 +(noun)|Ormandy|Eugene Ormandy|conductor|music director|director +ormazd|1 +(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity +ormer|1 +(noun)|sea-ear|Haliotis tuberculata|abalone|ear-shell +ormolu|1 +(noun)|brass +ormosia|1 +(noun)|Ormosia|genus Ormosia|rosid dicot genus +ormosia coarctata|1 +(noun)|jumby bead|jumbie bead|Ormosia coarctata|necklace tree +ormosia monosperma|1 +(noun)|bead tree|jumby bean|jumby tree|Ormosia monosperma|necklace tree +ormuzd|1 +(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity +ornament|3 +(noun)|decoration|ornamentation|artifact|artefact +(verb)|decorate|adorn|grace|embellish|beautify|change|alter|modify +(verb)|deck|adorn|decorate|grace|embellish|beautify +ornamental|2 +(adj)|cosmetic|decorative|nonfunctional +(noun)|plant|flora|plant life +ornamentalist|1 +(noun)|decorator|artist|creative person +ornamentation|3 +(noun)|state +(noun)|decoration|ornament|artifact|artefact +(noun)|embellishment|decoration +ornamented|1 +(adj)|embellished|ornate|adorned |decorated +ornate|2 +(adj)|embellished|ornamented|adorned |decorated +(adj)|flowery|rhetorical +ornateness|1 +(noun)|elaborateness|appearance|visual aspect +orneriness|1 +(noun)|cussedness|contrariness|perversity|perverseness +ornery|1 +(adj)|cantankerous|crotchety|ill-natured +ornithine|1 +(noun)|amino acid|aminoalkanoic acid +ornithischia|1 +(noun)|Ornithischia|order Ornithischia|animal order +ornithischian|1 +(noun)|ornithischian dinosaur|dinosaur +ornithischian dinosaur|1 +(noun)|ornithischian|dinosaur +ornithogalum|1 +(noun)|Ornithogalum|genus Ornithogalum|liliid monocot genus +ornithogalum pyrenaicum|1 +(noun)|bath asparagus|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem +ornithogalum thyrsoides|1 +(noun)|chincherinchee|wonder flower|Ornithogalum thyrsoides|star-of-Bethlehem +ornithogalum umbellatum|1 +(noun)|starflower|sleepy dick|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem +ornithological|1 +(adj)|zoology|zoological science +ornithologist|1 +(noun)|bird watcher|zoologist|animal scientist +ornithology|1 +(noun)|zoology|zoological science +ornithomimid|1 +(noun)|theropod|theropod dinosaur|bird-footed dinosaur +ornithomimida|1 +(noun)|Ornithomimida|suborder Ornithomimida|animal order +ornithopod|1 +(noun)|ornithopod dinosaur|ornithischian|ornithischian dinosaur +ornithopod dinosaur|1 +(noun)|ornithopod|ornithischian|ornithischian dinosaur +ornithopoda|1 +(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order +ornithopter|1 +(noun)|orthopter|heavier-than-air craft +ornithorhynchidae|1 +(noun)|Ornithorhynchidae|family Ornithorhynchidae|mammal family +ornithorhynchus|1 +(noun)|Ornithorhynchus|genus Ornithorhynchus|mammal genus +ornithorhynchus anatinus|1 +(noun)|platypus|duckbill|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme|egg-laying mammal +ornithosis|1 +(noun)|psittacosis|parrot fever|atypical pneumonia|primary atypical pneumonia|mycoplasmal pneumonia +orobanchaceae|1 +(noun)|Orobanchaceae|family Orobanchaceae|broomrape family|dicot family|magnoliopsid family +orogeny|1 +(noun)|geological process|geologic process +orography|1 +(noun)|orology|geology +oroide|1 +(noun)|oreide|alloy|metal +orology|1 +(noun)|orography|geology +orono|1 +(noun)|Orono|town +orontium|1 +(noun)|Orontium|genus Orontium|monocot genus|liliopsid genus +orontium aquaticum|1 +(noun)|golden club|Orontium aquaticum|aquatic plant|water plant|hydrophyte|hydrophytic plant +oropharyngeal|1 +(adj)|cavity|bodily cavity|cavum +oropharynx|1 +(noun)|cavity|bodily cavity|cavum +orotund|2 +(adj)|bombastic|declamatory|large|tumid|turgid|rhetorical +(adj)|rotund|round|pear-shaped|full +orozco|1 +(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist +orphan|6 +(adj)|orphaned|unparented |parentless +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|line +(noun)|young|offspring +(verb)|deprive|strip|divest +orphan site|1 +(noun)|toxic site|toxic waste area|Superfund site +orphanage|2 +(noun)|orphanhood|condition +(noun)|orphans' asylum|institution +orphaned|1 +(adj)|orphan|unparented |parentless +orphanhood|1 +(noun)|orphanage|condition +orphans' asylum|1 +(noun)|orphanage|institution +orphenadrine|1 +(noun)|Norflex|muscle relaxant +orpheus|1 +(noun)|Orpheus|mythical being +orphic|2 +(adj)|Orphic|mythical being +(adj)|mysterious|mystic|mystical|occult|secret|esoteric +orphrey|1 +(noun)|edging +orpiment|1 +(noun)|mineral +orpin|1 +(noun)|orpine|livelong|live-forever|Sedum telephium|sedum +orpine|1 +(noun)|orpin|livelong|live-forever|Sedum telephium|sedum +orpington|1 +(noun)|Orpington|chicken|Gallus gallus +orr|1 +(noun)|Orr|Bobby Orr|Robert Orr|hockey player|ice-hockey player +orrery|1 +(noun)|planetarium +orris|2 +(noun)|Florentine iris|Iris germanica florentina|Iris florentina|bearded iris +(noun)|orrisroot|root +orrisroot|1 +(noun)|orris|root +orson welles|1 +(noun)|Welles|Orson Welles|George Orson Welles|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +ortalis|1 +(noun)|Ortalis|genus Ortalis|bird genus +ortega|1 +(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman|solon|national leader +ortega y gasset|1 +(noun)|Ortega y Gasset|Jose Ortega y Gasset|philosopher +orthicon|1 +(noun)|image orthicon|television-camera tube|television pickup tube +orthilia|1 +(noun)|Orthilia|genus Orthilia|dilleniid dicot genus +orthoboric acid|1 +(noun)|boric acid|acid +orthochorea|1 +(noun)|chorea +orthochromatic film|1 +(noun)|film|photographic film +orthoclase|1 +(noun)|feldspar|felspar +orthodontia|1 +(noun)|orthodontics|orthodonture|dental orthopedics|dental orthopaedics|dentistry|dental medicine|odontology +orthodontic|1 +(adj)|dentistry|dental medicine|odontology +orthodontic treatment|1 +(noun)|treatment +orthodontics|1 +(noun)|orthodontia|orthodonture|dental orthopedics|dental orthopaedics|dentistry|dental medicine|odontology +orthodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +orthodonture|1 +(noun)|orthodontics|orthodontia|dental orthopedics|dental orthopaedics|dentistry|dental medicine|odontology +orthodox|3 +(adj)|Orthodox|Jewish-Orthodox|monotheism +(adj)|orthodox |canonic|canonical|sanctioned|conforming|conformist|conventional|established|traditional|conservative|standard +(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church +orthodox catholic church|1 +(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church +orthodox church|1 +(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church +orthodox jew|1 +(noun)|Orthodox Jew|Jew|Hebrew|Israelite +orthodox judaism|2 +(noun)|Orthodox Judaism|Jewish Orthodoxy|Judaism|Hebraism|Jewish religion +(noun)|Orthodox Judaism|Judaism +orthodox sleep|1 +(noun)|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep|slumber +orthodoxy|2 +(noun)|unoriginality +(noun)|orientation +orthoepist|1 +(noun)|phonologist +orthoepy|2 +(noun)|pronunciation|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|phonology|phonemics +orthogonal|3 +(adj)|extraneous|immaterial|impertinent|irrelevant +(adj)|unrelated +(adj)|rectangular|perpendicular +orthogonal opposition|1 +(noun)|orthogonality|perpendicularity|opposition +orthogonality|2 +(noun)|perpendicularity|orthogonal opposition|opposition +(noun)|rectangularity|oblongness +orthographic|1 +(adj)|writing +orthography|1 +(noun)|writing system|writing +orthomorphic projection|1 +(noun)|conformal projection|map projection +orthomyxovirus|1 +(noun)|myxovirus +orthopaedic|1 +(adj)|orthopedic|orthopedical|medical science +orthopaedics|1 +(noun)|orthopedics|medical science +orthopaedist|1 +(noun)|orthopedist|specialist|medical specialist +orthopedic|1 +(adj)|orthopaedic|orthopedical|medical science +orthopedical|1 +(adj)|orthopedic|orthopaedic|medical science +orthopedics|1 +(noun)|orthopaedics|medical science +orthopedist|1 +(noun)|orthopaedist|specialist|medical specialist +orthophosphate|1 +(noun)|phosphate|inorganic phosphate|salt +orthophosphoric acid|1 +(noun)|phosphoric acid|oxyacid|oxygen acid +orthophosphorous acid|1 +(noun)|hypophosphorous acid|phosphorous acid|oxyacid|oxygen acid +orthopnea|1 +(noun)|dyspnea|dyspnoea +orthopristis|1 +(noun)|Orthopristis|genus Orthopristis|fish genus +orthopristis chrysopterus|1 +(noun)|pigfish|hogfish|Orthopristis chrysopterus|grunt +orthopter|1 +(noun)|ornithopter|heavier-than-air craft +orthoptera|2 +(noun)|Orthoptera|order Orthoptera|animal order +(noun)|orthopterous insect|orthopteron|orthopteran|insect +orthopteran|1 +(noun)|orthopterous insect|orthopteron|insect +orthopteron|1 +(noun)|orthopterous insect|orthopteran|insect +orthopterous insect|1 +(noun)|orthopteron|orthopteran|insect +orthoptic|1 +(adj)|sight|vision|visual sense|visual modality +orthoptics|1 +(noun)|treatment +orthoptist|1 +(noun)|specialist|medical specialist +orthoscope|1 +(noun)|ophthalmoscope +orthostatic|1 +(adj)|erect |vertical|upright +orthostatic hypotension|1 +(noun)|postural hypotension|hypotension +orthotomus|1 +(noun)|Orthotomus|genus Orthotomus|bird genus +orthotomus sutorius|1 +(noun)|tailorbird|Orthotomus sutorius|Old World warbler|true warbler +orthotropous|1 +(adj)|orthotropous +orthotropous ovule|1 +(noun)|ovule +ortilis vetula macalli|1 +(noun)|Texas chachalaca|Ortilis vetula macalli|chachalaca +ortolan|1 +(noun)|ortolan bunting|Emberiza hortulana|bunting +ortolan bunting|1 +(noun)|ortolan|Emberiza hortulana|bunting +ortygan|1 +(noun)|wading bird|wader +orudis|1 +(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +orudis kt|1 +(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +oruvail|1 +(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +orville wright|1 +(noun)|Wright|Orville Wright|inventor|discoverer|artificer +orwell|1 +(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer|author +orwellian|1 +(adj)|Orwellian|writer|author +orycteropodidae|1 +(noun)|Orycteropodidae|family Orycteropodidae|mammal family +orycteropus|1 +(noun)|Orycteropus|genus Orycteropus|mammal genus +orycteropus afer|1 +(noun)|aardvark|ant bear|anteater|Orycteropus afer|placental|placental mammal|eutherian|eutherian mammal +oryctolagus|1 +(noun)|Oryctolagus|genus Oryctolagus|mammal genus +oryctolagus cuniculus|1 +(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit|coney|cony +oryx|1 +(noun)|pasang|antelope +oryx gazella|1 +(noun)|gemsbok|gemsbuck|Oryx gazella|oryx|pasang +oryza|1 +(noun)|Oryza|genus Oryza|monocot genus|liliopsid genus +oryza sativa|1 +(noun)|cultivated rice|Oryza sativa|rice +oryzomys|1 +(noun)|Oryzomys|genus Oryzomys|mammal genus +oryzomys palustris|1 +(noun)|rice rat|Oryzomys palustris|rat +oryzopsis|1 +(noun)|Oryzopsis|genus Oryzopsis|monocot genus|liliopsid genus +oryzopsis hymenoides|1 +(noun)|mountain rice|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass|rice grass +oryzopsis miliacea|1 +(noun)|smilo|smilo grass|Oryzopsis miliacea|ricegrass|rice grass +orzo|1 +(noun)|pasta|alimentary paste +os|5 +(noun)|orifice|opening|porta +(noun)|osmium|Os|atomic number 76|metallic element|metal +(noun)|operating system|OS|software|software system|software package|package +(noun)|oculus sinister|OS|eye|oculus|optic +(noun)|bone|connective tissue +os breve|1 +(noun)|short bone|bone|os +os capitatum|1 +(noun)|capitate|capitate bone|carpal bone|carpal|wrist bone +os frontale|1 +(noun)|frontal bone|forehead|membrane bone +os hamatum|1 +(noun)|hamate|hamate bone|unciform bone|carpal bone|carpal|wrist bone +os hyoideum|1 +(noun)|hyoid|hyoid bone|bone|os +os ischii|1 +(noun)|ischium|ischial bone|bone|os +os longum|1 +(noun)|long bone|bone|os +os lunatum|1 +(noun)|lunate bone|semilunar bone|carpal bone|carpal|wrist bone +os nasale|1 +(noun)|nasal|nasal bone|bone|os +os palatinum|1 +(noun)|palatine|palatine bone|bone|os +os pisiforme|1 +(noun)|pisiform|pisiform bone|carpal bone|carpal|wrist bone +os pubis|1 +(noun)|pubis|pubic bone|bone|os +os scaphoideum|1 +(noun)|scaphoid bone|navicular|carpal bone|carpal|wrist bone +os sesamoideum|1 +(noun)|sesamoid bone|bone|os +os sphenoidale|1 +(noun)|sphenoid bone|sphenoid|bone|os +os tarsi fibulare|1 +(noun)|heelbone|calcaneus|bone|os +os temporale|1 +(noun)|temporal bone|bone|os +os trapezium|1 +(noun)|trapezium|trapezium bone|carpal bone|carpal|wrist bone +os trapezoideum|1 +(noun)|trapezoid|trapezoid bone|carpal bone|carpal|wrist bone +os triquetrum|1 +(noun)|triquetral|triquetral bone|cuneiform bone|pyramidal bone|carpal bone|carpal|wrist bone +os zygomaticum|1 +(noun)|cheekbone|zygomatic bone|mala|malar bone|jugal bone|bone|os +osage|3 +(noun)|Osage|Dhegiha +(noun)|Osage|Osage River|river +(noun)|Osage|Dhegiha +osage orange|1 +(noun)|bow wood|mock orange|Maclura pomifera|angiospermous yellowwood +osage river|1 +(noun)|Osage|Osage River|river +osaka|1 +(noun)|Osaka|city|metropolis|urban center|port +osaka bay|1 +(noun)|Osaka Bay|bay +osama bin laden|1 +(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist +osasco|1 +(noun)|Osasco|city|metropolis|urban center +osborne|1 +(noun)|Osborne|John Osborne|John James Osborne|dramatist|playwright +oscan|2 +(noun)|Oscan|Italian +(noun)|Oscan|Osco-Umbrian +oscan-speaking|1 +(adj)|Oscan-speaking|communicative |communicatory +oscar|1 +(noun)|Academy Award|Oscar|award|accolade|honor|honour|laurels +oscar fingal o'flahertie wills wilde|1 +(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer|author +oscar hammerstein|1 +(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist +oscar hammerstein ii|1 +(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist +oscar palmer robertson|1 +(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard +oscar robertson|1 +(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard +oscar wilde|1 +(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer|author +oscheocele|1 +(noun)|oscheocoele|swelling|puffiness|lump +oscheocoele|1 +(noun)|oscheocele|swelling|puffiness|lump +oscillate|2 +(verb)|hover|vibrate|vacillate|hesitate|waver|waffle +(verb)|vibrate|swing|sway +oscillating|1 +(adj)|oscillatory|periodic |periodical +oscillation|3 +(noun)|natural process|natural action|action|activity +(noun)|vibration|wave|undulation +(noun)|cycle|periodic event|recurrent event +oscillator|1 +(noun)|generator +oscillatoriaceae|1 +(noun)|Oscillatoriaceae|family Oscillatoriaceae|bacteria family +oscillatory|1 +(adj)|oscillating|periodic |periodical +oscillogram|1 +(noun)|recording +oscillograph|1 +(noun)|recorder|recording equipment|recording machine +oscilloscope|1 +(noun)|scope|cathode-ray oscilloscope|CRO|electronic equipment +oscine|2 +(adj)|passerine|passeriform bird +(noun)|oscine bird|passerine|passeriform bird +oscine bird|1 +(noun)|oscine|passerine|passeriform bird +oscines|2 +(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order +(noun)|oscine|oscine bird|passerine|passeriform bird +oscitance|2 +(noun)|oscitancy|sleepiness|drowsiness|somnolence|dullness|dulness|obtuseness +(noun)|yawn|yawning|oscitancy|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +oscitancy|2 +(noun)|oscitance|sleepiness|drowsiness|somnolence|dullness|dulness|obtuseness +(noun)|yawn|yawning|oscitance|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +oscitant|1 +(adj)|drowsy|yawning|inattentive +osco-umbrian|1 +(noun)|Osco-Umbrian|Italic|Italic language +osculate|3 +(verb)|be +(verb)|share +(verb)|kiss|buss|touch +osculating circle|1 +(noun)|circle of curvature|circle +osculation|2 +(noun)|contact +(noun)|kiss|buss|touch|touching +osculator|1 +(noun)|kisser|lover +osha|1 +(noun)|Occupational Safety and Health Administration|OSHA|agency|federal agency|government agency|bureau|office|authority +osier|2 +(noun)|withe|withy +(noun)|willow|willow tree +osip emilevich mandelstam|1 +(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet +osip mandelstam|1 +(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet +osiris|1 +(noun)|Osiris|Egyptian deity +oslo|1 +(noun)|Oslo|Christiania|capital of Norway|national capital|port +osman i|1 +(noun)|Osman I|Othman I|emir|amir|emeer|ameer +osmanli|1 +(noun)|Ottoman|Ottoman Turk|Osmanli|Turk +osmanthus|1 +(noun)|Osmanthus|genus Osmanthus|dicot genus|magnoliopsid genus +osmanthus americanus|1 +(noun)|devilwood|American olive|Osmanthus americanus|tree +osmeridae|1 +(noun)|Osmeridae|family Osmeridae|fish family +osmerus|1 +(noun)|Osmerus|genus Osmerus|fish genus +osmerus eperlanus|1 +(noun)|sparling|European smelt|Osmerus eperlanus|smelt +osmerus mordax|1 +(noun)|rainbow smelt|Osmerus mordax|smelt +osmiridium|1 +(noun)|iridosmine|mineral +osmitrol|1 +(noun)|mannitol|Osmitrol|diuretic drug|diuretic|water pill +osmium|1 +(noun)|Os|atomic number 76|metallic element|metal +osmoreceptor|1 +(noun)|end organ +osmosis|1 +(noun)|diffusion +osmotic|1 +(adj)|diffusion +osmotic pressure|1 +(noun)|pressure|pressure level|force per unit area +osmund|1 +(noun)|flowering fern|fern +osmunda cinnamonea|1 +(noun)|cinnamon fern|fiddlehead|fiddlehead fern|Osmunda cinnamonea|flowering fern|osmund +osmunda clatonia|1 +(noun)|interrupted fern|Osmunda clatonia|flowering fern|osmund +osmunda regalis|1 +(noun)|royal fern|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern|osmund +osmundaceae|1 +(noun)|Osmundaceae|family Osmundaceae|fern family +osprey|1 +(noun)|fish hawk|fish eagle|sea eagle|Pandion haliaetus|hawk +osseous|1 +(adj)|osteal|bony|animal material +osseous labyrinth|1 +(noun)|bony labyrinth|structure|anatomical structure|complex body part|bodily structure|body structure +osseous tissue|1 +(noun)|bone|animal material +ossete|1 +(noun)|Ossete|Iranian|Iranian language +ossicle|1 +(noun)|bonelet|ossiculum|bone|os +ossicular|1 +(adj)|ossiculate|bone|os +ossiculate|1 +(adj)|ossicular|bone|os +ossiculum|1 +(noun)|ossicle|bonelet|bone|os +ossiferous|1 +(adj)|connective tissue +ossification|4 +(noun)|organic process|biological process +(noun)|calcification +(noun)|human process +(noun)|conformity|conventionality|convention|conventionalism +ossified|2 +(adj)|hard +(adj)|fossilized|fossilised|inflexible +ossify|3 +(verb)|change state|turn +(verb)|rigidify|petrify|stiffen +(verb)|change|alter|modify +osso buco|1 +(noun)|dish +ossuary|1 +(noun)|receptacle +ostariophysi|1 +(noun)|Ostariophysi|order Ostariophysi|soft-finned fish|malacopterygian +osteal|2 +(adj)|connective tissue +(adj)|osseous|bony|animal material +osteichthyes|1 +(noun)|Osteichthyes|class Osteichthyes|class +osteitis|1 +(noun)|inflammation|redness|rubor +osteitis deformans|1 +(noun)|Paget's disease|osteitis +ostensible|2 +(adj)|apparent|seeming|superficial +(adj)|ostensive|counterfeit |imitative +ostensibly|1 +(adv)|apparently|seemingly|on the face of it +ostensive|2 +(adj)|instructive |informative +(adj)|ostensible|counterfeit |imitative +ostensive definition|1 +(noun)|definition +ostentate|1 +(verb)|flaunt|flash|show off|swank|expose|exhibit|display +ostentation|3 +(noun)|fanfare|display +(noun)|ostentatiousness|pomposity|pompousness|pretentiousness|splashiness|inflation|inelegance +(noun)|pretentiousness|pretension +ostentatious|2 +(adj)|ostentatious |pretentious|flaunty|showy|splashy +(adj)|pretentious|kitsch|tasteless +ostentatiously|1 +(adv)|showily|with ostentation +ostentatiousness|1 +(noun)|ostentation|pomposity|pompousness|pretentiousness|splashiness|inflation|inelegance +osteoarthritis|1 +(noun)|degenerative arthritis|degenerative joint disease|arthritis +osteoblast|1 +(noun)|bone-forming cell|embryonic cell|formative cell +osteoblastoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +osteochondroma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +osteoclasis|1 +(noun)|treatment +osteoclast|1 +(noun)|bone cell +osteocyte|1 +(noun)|bone cell +osteodystrophy|1 +(noun)|dystrophy +osteogenesis imperfecta|1 +(noun)|autosomal dominant disease|autosomal dominant disorder +osteogenic sarcoma|1 +(noun)|osteosarcoma|sarcoma +osteolysis|1 +(noun)|lysis +osteoma|1 +(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +osteomalacia|1 +(noun)|malacia +osteomyelitis|1 +(noun)|osteitis +osteopath|1 +(noun)|osteopathist|therapist|healer +osteopathist|1 +(noun)|osteopath|therapist|healer +osteopathy|1 +(noun)|treatment +osteopetrosis|1 +(noun)|Albers-Schonberg disease|marble bones disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +osteophyte|1 +(noun)|process|outgrowth|appendage +osteoporosis|1 +(noun)|pathology +osteosarcoma|1 +(noun)|osteogenic sarcoma|sarcoma +osteosclerosis|1 +(noun)|sclerosis|induration +osteosclerosis congenita|1 +(noun)|achondroplasia|achondroplasty|chondrodystrophy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +osteostracan|1 +(noun)|cephalaspid|jawless vertebrate|jawless fish|agnathan +osteostraci|1 +(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order +osteotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +ostiarius|1 +(noun)|doorkeeper|ostiary|clergyman|reverend|man of the cloth|holy order|order +ostiary|2 +(noun)|doorkeeper|ostiarius|clergyman|reverend|man of the cloth|holy order|order +(noun)|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|guard +ostinato|1 +(noun)|phrase|musical phrase +ostiole|1 +(noun)|pore +ostler|1 +(noun)|stableman|stableboy|groom|hostler|hired hand|hand|hired man +ostomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +ostraciidae|1 +(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family +ostracise|2 +(verb)|banish|ban|ostracize|shun|cast out|blackball|expel|throw out|kick out +(verb)|ostracize|exclude|keep out|shut out|shut +ostracism|2 +(noun)|banishment|Coventry|exclusion +(noun)|ejection|exclusion|expulsion|riddance +ostracize|2 +(verb)|banish|ban|ostracise|shun|cast out|blackball|expel|throw out|kick out +(verb)|ostracise|exclude|keep out|shut out|shut +ostracod|1 +(noun)|seed shrimp|mussel shrimp|crustacean +ostracoda|1 +(noun)|Ostracoda|subclass Ostracoda|class +ostracoderm|1 +(noun)|jawless vertebrate|jawless fish|agnathan +ostracodermi|1 +(noun)|Ostracodermi|order Ostracodermi|animal order +ostrava|1 +(noun)|Ostrava|city|metropolis|urban center +ostrea|1 +(noun)|Ostrea|genus Ostrea|mollusk genus +ostrea gigas|1 +(noun)|Japanese oyster|Ostrea gigas|oyster +ostreidae|1 +(noun)|Ostreidae|family Ostreidae|mollusk family +ostrich|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Struthio camelus|ratite|ratite bird|flightless bird +ostrich fern|1 +(noun)|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +ostrogoth|1 +(noun)|Ostrogoth|Goth +ostrya|1 +(noun)|Ostrya|genus Ostrya|hamamelid dicot genus +ostrya carpinifolia|1 +(noun)|Old World hop hornbeam|Ostrya carpinifolia|hop hornbeam +ostrya virginiana|1 +(noun)|Eastern hop hornbeam|ironwood|ironwood tree|Ostrya virginiana|hop hornbeam +ostryopsis|1 +(noun)|Ostryopsis|genus Ostryopsis|hamamelid dicot genus +ostwald|1 +(noun)|Ostwald|Wilhelm Ostwald|chemist +ostwald's theory of indicators|1 +(noun)|theory of indicators|Ostwald's theory of indicators|scientific theory +ostyak|2 +(noun)|Ostyak|Khanty|Russian +(noun)|Khanty|Ostyak|Ugric|Ugrian +ostyak-samoyed|2 +(noun)|Selkup|Ostyak-Samoyed|Russian +(noun)|Selkup|Ostyak-Samoyed|Samoyedic|Samoyed +oswald|1 +(noun)|Oswald|Lee Harvey Oswald|assassin|assassinator|bravo +oswald spengler|1 +(noun)|Spengler|Oswald Spengler|philosopher +oswald veblen|1 +(noun)|Veblen|Oswald Veblen|mathematician +oswego tea|1 +(noun)|bee balm|beebalm|bergamot mint|Monarda didyma|monarda|wild bergamot +otaheite arrowroot|1 +(noun)|Otaheite arrowroot|Otaheite arrowroot starch|starch|amylum +otaheite arrowroot starch|1 +(noun)|Otaheite arrowroot|Otaheite arrowroot starch|starch|amylum +otalgia|1 +(noun)|earache|ache|aching +otaria|1 +(noun)|Otaria|genus Otaria|mammal genus +otaria byronia|1 +(noun)|South American sea lion|Otaria Byronia|sea lion +otariidae|1 +(noun)|Otariidae|family Otariidae|mammal family +otc|1 +(adj)|over-the-counter|unlisted +otc market|1 +(noun)|over-the-counter market|OTC market|stock exchange|stock market|securities market +otc security|1 +(noun)|unlisted security|over the counter security|OTC security|security|certificate +otc stock|1 +(noun)|over the counter stock|OTC stock|unlisted stock|unlisted security|over the counter security|OTC security +othello|1 +(noun)|Othello|fictional character|fictitious character|character +other|5 +(adj)|other |another|different|another|some other|different|else|new|opposite|opposite|other than|otherwise|remaining|opposite|separate +(adj)|extra|additional|added +(adj)|past +(adj)|early|former|past +(adj)|strange |unusual +other than|1 +(adj)|other +otherness|1 +(noun)|distinctness|separateness|difference +otherwise|2 +(adj)|other +(adv)|differently +otherworldliness|1 +(noun)|spirituality|spiritualism|inwardness +otherworldly|1 +(adj)|nonnatural|preternatural|transcendental|supernatural +othman i|1 +(noun)|Osman I|Othman I|emir|amir|emeer|ameer +otho i|1 +(noun)|Otto I|Otho I|Otto the Great|king|male monarch|Holy Roman Emperor +othonna|1 +(noun)|shrub|bush +otic|1 +(adj)|auricular|sense organ|sensory receptor|receptor +otic ganglion|1 +(noun)|otoganglion|autonomic ganglion +otides|1 +(noun)|Otides|suborder Otides|animal order +otididae|1 +(noun)|Otididae|family Otididae|bird family +otiose|3 +(adj)|pointless|superfluous|wasted|worthless +(adj)|futile|ineffectual|unavailing|useless +(adj)|faineant|indolent|lazy|slothful|work-shy|idle +otis|2 +(noun)|Otis|Elisha Graves Otis|inventor|discoverer|artificer|industrialist +(noun)|Otis|genus Otis|bird genus +otis skinner|1 +(noun)|Skinner|Otis Skinner|actor|histrion|player|thespian|role player +otis tarda|1 +(noun)|great bustard|Otis tarda|bustard +otitis|1 +(noun)|inflammation|redness|rubor +otitis externa|1 +(noun)|otitis +otitis interna|1 +(noun)|labyrinthitis|otitis +otitis media|1 +(noun)|otitis +oto|2 +(noun)|Oto|Otoe|Sioux|Siouan +(noun)|Oto|Otoe|Chiwere +otoe|2 +(noun)|Oto|Otoe|Sioux|Siouan +(noun)|Oto|Otoe|Chiwere +otoganglion|1 +(noun)|otic ganglion|autonomic ganglion +otolaryngologist|1 +(noun)|ENT man|ear-nose-and-throat doctor|otorhinolaryngologist|rhinolaryngologist|specialist|medical specialist +otolaryngology|1 +(noun)|otology|medicine|medical specialty +otologist|1 +(noun)|ear doctor|ear specialist|specialist|medical specialist +otology|1 +(noun)|otolaryngology|medicine|medical specialty +otoplasty|1 +(noun)|plastic surgery|reconstructive surgery|anaplasty +otorhinolaryngologist|1 +(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|rhinolaryngologist|specialist|medical specialist +otorrhea|1 +(noun)|pathology +otosclerosis|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +otoscope|1 +(noun)|medical instrument +ototoxic|1 +(adj)|toxic +ottar|1 +(noun)|attar|atar|athar|essential oil|volatile oil +ottava rima|1 +(noun)|stanza +ottawa|2 +(noun)|Ottawa|Algonquian|Algonquin +(noun)|Ottawa|Canadian capital|capital of Canada|national capital +otter|2 +(noun)|fur|pelt +(noun)|musteline mammal|mustelid|musteline +otter hound|2 +(noun)|otterhound|hound|hound dog +(noun)| +otter shrew|1 +(noun)|potamogale|Potamogale velox|insectivore +otterhound|1 +(noun)|otter hound|hound|hound dog +ottmar mergenthaler|1 +(noun)|Mergenthaler|Ottmar Mergenthaler|inventor|discoverer|artificer +otto frisch|1 +(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist +otto fritz meyerhof|1 +(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist +otto hahn|1 +(noun)|Hahn|Otto Hahn|chemist +otto heinrich warburg|1 +(noun)|Warburg|Otto Heinrich Warburg|biochemist +otto i|1 +(noun)|Otto I|Otho I|Otto the Great|king|male monarch|Holy Roman Emperor +otto jespersen|1 +(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist|linguistic scientist +otto loewi|1 +(noun)|Loewi|Otto Loewi|pharmacologist|pharmaceutical chemist +otto meyerhof|1 +(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist +otto neumann sverdrup|1 +(noun)|Sverdrup|Otto Neumann Sverdrup|explorer|adventurer +otto robert frisch|1 +(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist +otto the great|1 +(noun)|Otto I|Otho I|Otto the Great|king|male monarch|Holy Roman Emperor +otto von bismarck|1 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +otto wagner|1 +(noun)|Wagner|Otto Wagner|architect|designer +ottoman|5 +(adj)|Ottoman|empire +(noun)|Ottoman|Ottoman Turk|Osmanli|Turk +(noun)|Ottoman|Ottoman dynasty|dynasty +(noun)|pouf|pouffe|puff|hassock|seat +(noun)|footstool|footrest|stool +ottoman dynasty|1 +(noun)|Ottoman|Ottoman dynasty|dynasty +ottoman empire|1 +(noun)|Ottoman Empire|Turkish Empire|empire +ottoman turk|1 +(noun)|Ottoman|Ottoman Turk|Osmanli|Turk +ottorino respighi|1 +(noun)|Respighi|Ottorino Respighi|composer +ottumwa|1 +(noun)|Ottumwa|town +otus|1 +(noun)|Otus|genus Otus|bird genus +otus asio|1 +(noun)|screech owl|Otus asio|owl|bird of Minerva|bird of night|hooter +otus scops|1 +(noun)|Old World scops owl|Otus scops|scops owl +otus sunia|1 +(noun)|Oriental scops owl|Otus sunia|scops owl +ouachita|1 +(noun)|Ouachita|Ouachita River|river +ouachita river|1 +(noun)|Ouachita|Ouachita River|river +oubliette|1 +(noun)|dungeon +ouguiya|1 +(noun)|Mauritanian monetary unit +ouija|1 +(noun)|Ouija|Ouija board|board|gameboard +ouija board|1 +(noun)|Ouija|Ouija board|board|gameboard +oujda|1 +(noun)|Oujda|city|metropolis|urban center +ounce|3 +(noun)|troy ounce|apothecaries' ounce|apothecaries' unit|apothecaries' weight|troy unit +(noun)|oz.|avoirdupois unit +(noun)|snow leopard|Panthera uncia|big cat|cat +our lady's bedstraw|1 +(noun)|yellow bedstraw|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw +our lady's mild thistle|1 +(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb|herbaceous plant +our lord's candle|1 +(noun)|Our Lord's candle|Yucca whipplei|yucca +ouranopithecus|1 +(noun)|Ouranopithecus|genus Ouranopithecus|mammal genus +ouranos|1 +(noun)|Ouranos|Uranus|Greek deity +ouse|1 +(noun)|Ouse|Ouse River|river +ouse river|1 +(noun)|Ouse|Ouse River|river +ousel|1 +(noun)|blackbird|merl|merle|ouzel|European blackbird|Turdus merula|thrush +oust|2 +(verb)|throw out|drum out|boot out|kick out|expel|remove +(verb)|supplant|replace|supersede|supervene upon +ouster|3 +(noun)|ejector|person|individual|someone|somebody|mortal|human|soul +(noun)|eviction|dispossession|legal ouster +(noun)|ousting|ejection|exclusion|expulsion|riddance +ousting|1 +(noun)|ouster|ejection|exclusion|expulsion|riddance +out|15 +(adj)|out |retired|down +(adj)|extinct|dead +(adj)|impossible +(adj)|unsuccessful +(adj)|forbidden|prohibited|proscribed|taboo|tabu|verboten|impermissible +(adj)|outgoing +(adj)|unfashionable |unstylish +(adj)|exterior +(adj)|outer +(adj)|knocked out|kayoed|KO'd|stunned|unconscious +(noun)|failure +(verb)|come out of the closet|come out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|come out +(adv)|away +out-and-out|1 +(adj)|absolute|downright|rank|right-down|sheer|complete +out-and-outer|1 +(noun)|expert +out-basket|1 +(noun)|out-tray|receptacle +out-herod|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +out-migration|1 +(noun)|emigration|expatriation|migration +out-of-body experience|1 +(noun)|experience +out-of-bounds|2 +(adj)|foul +(adj)|off-limits|restricted +out-of-court settlement|1 +(noun)|settlement +out-of-date|1 +(adj)|obsolete|outdated|superannuated|noncurrent +out-of-door|1 +(adj)|outdoor |outside|alfresco|open-air|outdoorsy|exterior +out-of-doors|1 +(noun)|outdoors|open air|open|outside|exterior +out-of-pocket|1 +(adj)|due |owed +out-of-school|1 +(adj)|free +out-of-the-box thinking|1 +(noun)|divergent thinking|thinking|thought|cerebration|intellection|mentation +out-of-the-way|3 +(adj)|unusual +(adj)|improper +(adj)|off the beaten track|far +out-of-town|1 +(adj)|distant +out-tray|1 +(noun)|out-basket|receptacle +out and away|1 +(adv)|by far|far and away +out front|1 +(adv)|ahead|in the lead +out in|1 +(verb)|call at|enter|come in|get into|get in|go into|go in|move into +out loud|1 +(adv)|aloud +out of action|1 +(adj)|disabled|hors de combat|injured +out of bounds|1 +(noun)|sideline|line +out of breath|1 +(adj)|blown|gasping|panting|pursy|short-winded|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +out of commission|1 +(adj)|out of commission |retired|out of service|out of condition +out of condition|1 +(adj)|out of commission +out of doors|1 +(adv)|outside|outdoors|alfresco +out of focus|1 +(adj)|unfocused |unfocussed +out of gear|1 +(adj)|ungeared +out of hand|1 +(adv)|beyond control +out of nothing|1 +(adv)|out of thin air|from nowhere +out of place|2 +(adj)|inapposite|malapropos +(adj)|disarranged +out of play|1 +(adj)|dead +out of practice|1 +(adj)|rusty|unskilled +out of print|1 +(adj)|discontinued +out of reach|1 +(adj)|unapproachable|unreachable|unreached|inaccessible |unaccessible +out of service|1 +(adj)|retired|out of commission +out of sight|3 +(adj)|concealed|hidden|invisible |unseeable +(adv)|out of view +(adv)|doggo|in hiding +out of stock|1 +(adj)|unavailable +out of the blue|2 +(adj)|unanticipated|unforeseen|unlooked-for|unexpected +(adv)|unexpectedly +out of the question|1 +(adj)|impossible|inconceivable|unimaginable|unthinkable +out of thin air|1 +(adv)|out of nothing|from nowhere +out of true|1 +(adj)|untrue|uneven +out of use|1 +(adj)|blocked|closed +out of view|1 +(adv)|out of sight +out of wedlock|2 +(adv)|illegitimately +(adv)|outside marriage +out of whack|1 +(adj)|malfunctioning |nonfunctional +out of work|1 +(adj)|idle|jobless|unemployed +out or keeping|1 +(adj)|inappropriate|incompatible|unfitting|incongruous +out to|1 +(adj)|bent|bent on|dead set|intent on|resolute +outage|2 +(noun)|indefinite quantity +(noun)|breakdown|equipment failure +outback|2 +(adj)|backwoods|remote|inaccessible |unaccessible +(noun)|bush +outbalance|1 +(verb)|preponderate|outweigh|overbalance|predominate|dominate|rule|reign|prevail +outbid|2 +(verb)|bid|call +(verb)|offer|bid|tender +outboard|3 +(adj)|outboard |portable +(noun)|outboard motorboat|motorboat|powerboat +(noun)|outboard motor|internal-combustion engine|ICE +outboard motor|1 +(noun)|outboard|internal-combustion engine|ICE +outboard motorboat|1 +(noun)|outboard|motorboat|powerboat +outbound|1 +(adj)|departing|outward|outward-bound|outgoing +outbrave|2 +(verb)|resist|hold out|withstand|stand firm +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outbreak|1 +(noun)|eruption|irruption|happening|occurrence|natural event +outbred|1 +(adj)|outbred |crossbred|interbred|crossbred|exogamous|exogamic +outbuilding|1 +(noun)|building|edifice +outburst|3 +(noun)|effusion|gush|blowup|ebullition|expression|manifestation|reflection|reflexion +(noun)|burst|flare-up|happening|occurrence|natural event +(noun)|tumultuous disturbance|disturbance +outcall|1 +(verb)|bid|call +outcast|2 +(adj)|friendless|unwanted +(noun)|castaway|pariah|Ishmael|unfortunate|unfortunate person +outcaste|2 +(adj)|casteless|unwanted +(noun)|person|individual|someone|somebody|mortal|human|soul +outclass|1 +(verb)|subordinate +outclassed|1 +(adj)|inferior +outcome|2 +(noun)|result|resultant|final result|termination|ending|conclusion|finish +(noun)|consequence|effect|result|event|issue|upshot|phenomenon +outcrop|2 +(noun)|outcropping|rock outcrop|rock|stone +(verb)|appear +outcropping|1 +(noun)|outcrop|rock outcrop|rock|stone +outcry|3 +(noun)|cry|call|yell|shout|vociferation|utterance|vocalization +(verb)|outshout|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|exclaim|cry|cry out|call out|shout|express|verbalize|verbalise|utter|give tongue to +outdated|1 +(adj)|obsolete|out-of-date|superannuated|noncurrent +outdistance|1 +(verb)|outstrip|distance|leave behind +outdo|2 +(verb)|surpass|outstrip|outmatch|outgo|exceed|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +(verb)|outflank|trump|best|scoop|beat|beat out|crush|shell|trounce|vanquish +outdoor|2 +(adj)|outdoor |out-of-door|outside|alfresco|open-air|outdoorsy|exterior +(adj)|outside|exterior +outdoor game|1 +(noun)|athletic game +outdoor man|1 +(noun)|sporting man|amateur +outdoor sport|1 +(noun)|field sport|sport|athletics +outdoor stage|1 +(noun)|bandstand|stand|platform +outdoors|2 +(noun)|out-of-doors|open air|open|outside|exterior +(adv)|outside|out of doors|alfresco +outdoorsman|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +outdoorswoman|1 +(noun)|outdoorsman +outdoorsy|1 +(adj)|outdoor |out-of-door|outside +outdraw|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outer|13 +(adj)|outer |out|outermost|outmost|outside|satellite +(adj)|outward +(adj)|external +(adj)|out |retired|down +(adj)|extinct|out|dead +(adj)|out|impossible +(adj)|out|unsuccessful +(adj)|forbidden|out|prohibited|proscribed|taboo|tabu|verboten|impermissible +(adj)|out|outgoing +(adj)|out|unfashionable |unstylish +(adj)|out|exterior +(adj)|out|outer +(adj)|knocked out|kayoed|KO'd|out|stunned|unconscious +outer boundary|1 +(noun)|periphery|fringe|boundary|edge|bound +outer ear|1 +(noun)|external ear|external organ +outer garment|1 +(noun)|overgarment|garment +outer hebrides|1 +(noun)|Outer Hebrides|archipelago +outer mongolia|1 +(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country|Asian nation +outer space|1 +(noun)|space|location +outercourse|1 +(noun)|sexual activity|sexual practice|sex|sex activity +outermost|1 +(adj)|outmost|outer +outerwear|1 +(noun)|overclothes|clothing|article of clothing|vesture|wear +outface|1 +(verb)|stare down|outstare|gaze|stare +outfall|1 +(noun)|exit|issue|outlet|way out +outfield|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +outfielder|2 +(noun)|fielder +(noun)|fielder|fieldsman +outfight|1 +(verb)|beat|beat out|crush|shell|trounce|vanquish +outfit|4 +(noun)|unit|social unit +(noun)|getup|rig|turnout|attire|garb|dress +(noun)|kit|gear|paraphernalia|appurtenances +(verb)|equip|fit|fit out|supply|provide|render|furnish +outfitted|2 +(adj)|fitted out|furnished |equipped +(adj)|equipped |equipt +outfitter|2 +(noun)|garmentmaker|garment-worker|garment worker +(noun)|shop|store +outfitting|1 +(noun)|arming|armament|equipping +outflank|2 +(verb)|go around|travel|go|move|locomote +(verb)|outdo|trump|best|scoop|beat|beat out|crush|shell|trounce|vanquish +outflow|3 +(noun)|escape|leak|leakage|discharge|outpouring|run +(noun)|effluence|efflux|flow +(noun)|spring|fountain|outpouring|natural spring|geological formation|formation +outflowing|1 +(adj)|effluent|outgoing +outfox|2 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|outwit|overreach|outsmart|beat|circumvent|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outgeneral|1 +(verb)|outmaneuver|outmanoeuvre|outsmart +outgo|2 +(noun)|expenditure|outlay|financial loss +(verb)|surpass|outstrip|outmatch|exceed|outdo|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +outgoer|1 +(noun)|emigrant|emigre|emigree|migrant|migrator +outgoing|3 +(adj)|outgoing |departing|outbound|outward|outward-bound|effluent|outflowing|out|past|preceding|retiring|past +(adj)|extroverted|forthcoming|sociable +(adj)|extrovertish|extroversive |extraversive +outgrow|3 +(verb)|develop|grow +(verb)|overgrow|grow +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outgrowth|3 +(noun)|branch|offshoot|offset|consequence|effect|outcome|result|event|issue|upshot +(noun)|emergence|growth|beginning +(noun)|process|appendage|body part +outguess|1 +(verb)|second-guess|predict|foretell|prognosticate|call|forebode|anticipate|promise +outhouse|1 +(noun)|privy|earth-closet|jakes|outbuilding +outing|2 +(noun)|excursion|jaunt|junket|pleasure trip|expedition|sashay|journey|journeying +(noun)|field day|picnic|vacation|holiday +outlander|1 +(noun)|foreigner|alien|noncitizen|traveler|traveller +outlandish|1 +(adj)|bizarre|eccentric|freakish|freaky|flaky|off-the-wall|outre|unconventional +outlandishness|1 +(noun)|bizarreness|weirdness|unfamiliarity|strangeness +outlast|1 +(verb)|outlive|survive +outlaw|4 +(adj)|illegitimate|illicit|outlawed|unlawful|illegal +(adj)|lawless|unlawful +(noun)|criminal|felon|crook|malefactor|wrongdoer|offender +(verb)|criminalize|criminalise|illegalize|illegalise|forbid|prohibit|interdict|proscribe|veto|disallow +outlawed|1 +(adj)|illegitimate|illicit|outlaw|unlawful|illegal +outlawry|1 +(noun)|lawlessness|illegality +outlay|2 +(noun)|spending|disbursement|disbursal|payment|defrayal|defrayment +(noun)|outgo|expenditure|financial loss +outlet|4 +(noun)|mercantile establishment|retail store|sales outlet|place of business|business establishment +(noun)|wall socket|wall plug|electric outlet|electrical outlet|electric receptacle|receptacle +(noun)|exit|issue|way out|opening +(noun)|release|vent|activity +outlet box|1 +(noun)|receptacle +outlier|2 +(noun)|resident|occupant|occupier +(noun)|deviation +outline|6 +(noun)|lineation|boundary|bound|bounds +(noun)|synopsis|abstract|precis|summary +(noun)|schema|scheme|plan|program|programme +(verb)|sketch|adumbrate|describe|depict|draw +(verb)|draft|write|compose|pen|indite +(verb)|delineate|limn|draw +outlined|1 +(adj)|defined|distinct +outlive|1 +(verb)|outlast|survive +outlook|3 +(noun)|mentality|mindset|mind-set|attitude|mental attitude +(noun)|expectation|prospect|belief +(noun)|lookout|look|looking|looking at +outlying|1 +(adj)|far +outmaneuver|1 +(verb)|outmanoeuvre|outsmart|outdo|outflank|trump|best|scoop +outmanoeuvre|1 +(verb)|outmaneuver|outsmart|outdo|outflank|trump|best|scoop +outmarch|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outmatch|1 +(verb)|surpass|outstrip|outgo|exceed|outdo|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +outmode|1 +(verb)|change|alter|modify +outmoded|1 +(adj)|antique|demode|ex|old-fashioned|old-hat|passe|passee|unfashionable |unstylish +outmost|1 +(adj)|outermost|outer +outnumber|1 +(verb)|total|number|add up|come|amount +outpace|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outpatient|1 +(noun)|patient +outperform|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|beat|beat out|crush|shell|trounce|vanquish +outplay|1 +(verb)|beat|beat out|crush|shell|trounce|vanquish +outpoint|2 +(verb)|sail +(verb)|outscore|beat|beat out|crush|shell|trounce|vanquish +outport|1 +(noun)|port +outpost|3 +(noun)|outstation|post|station +(noun)|frontier settlement|colony|settlement +(noun)|military post|post +outpouring|5 +(noun)|spring|fountain|outflow|natural spring|geological formation|formation +(noun)|flush|gush|flow|flowing +(noun)|discharge|run|flow|flowing +(noun)|barrage|onslaught|language|linguistic communication +(noun)|flood|overflow|flow|stream +output|6 +(noun)|end product|product|production +(noun)|yield|production +(noun)|output signal|signal|signaling|sign +(noun)|yield|production|indefinite quantity +(noun)|outturn|turnout|product|production +(verb)|produce|make|create +output-to-input ratio|1 +(noun)|ratio +output contract|1 +(noun)|contract +output file|1 +(noun)|computer file +output program|1 +(noun)|utility program|utility|service program +output routine|1 +(noun)|utility routine|service routine +output signal|1 +(noun)|output|signal|signaling|sign +outrage|7 +(noun)|indignation|anger|choler|ire +(noun)|atrocity|inhumanity +(noun)|scandal|trouble +(noun)|scandalization|scandalisation|insult|affront +(verb)|shock|offend|scandalize|scandalise|appal|appall|disgust|revolt|nauseate|sicken|churn up +(verb)|desecrate|profane|violate|assail|assault|set on|attack +(verb)|rape|ravish|violate|assault|dishonor|dishonour|assail|assault|set on|attack +outraged|1 +(adj)|indignant|incensed|umbrageous|angry +outrageous|2 +(adj)|hideous|horrid|horrific|offensive +(adj)|exorbitant|extortionate|steep|unconscionable|usurious|immoderate +outrageously|1 +(adv)|atrociously +outrageousness|2 +(noun)|exorbitance|excess|excessiveness|inordinateness +(noun)|enormity|indecency +outrange|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outrank|1 +(verb)|rank|excel|stand out|surpass +outre|1 +(adj)|bizarre|eccentric|freakish|freaky|flaky|off-the-wall|outlandish|unconventional +outreach|1 +(noun)|reach|reaching|stretch +outride|2 +(verb)|last out|stay|ride out +(verb)|ride|sit +outrider|1 +(noun)|bodyguard|escort +outrigged|1 +(adj)|rigged +outrigger|1 +(noun)|stabilizer|stabiliser +outrigger canoe|1 +(noun)|canoe +outright|2 +(adj)|straight-out|unlimited|unqualified +(adv)|instantaneously|instantly|in a flash +outrival|1 +(verb)|outvie|rival +outroar|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outrun|1 +(verb)|run +outsail|1 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outscore|1 +(verb)|outpoint|beat|beat out|crush|shell|trounce|vanquish +outsell|2 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outset|1 +(noun)|beginning|commencement|first|get-go|start|kickoff|starting time|showtime|offset|point|point in time +outshine|2 +(verb)|shine|beam +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outshout|1 +(verb)|outcry|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outside|14 +(adj)|outside |after-school|extracurricular|extracurricular|right|external +(adj)|external|extraneous|extrinsic +(adj)|external +(adj)|outdoor |out-of-door|alfresco|open-air|outdoorsy|exterior +(adj)|extramural +(adj)|exterior +(adj)|external|international|foreign +(adj)|largest|maximal +(adj)|remote|unlikely +(adj)|outer +(adj)|away|inaccurate +(noun)|exterior|region|part +(noun)|exterior|surface +(adv)|outdoors|out of doors|alfresco +outside caliper|1 +(noun)|caliper|calipers|calliper|callipers +outside clinch|1 +(noun)|clinch|clench +outside door|1 +(noun)|exterior door|doorway|door|room access|threshold +outside loop|1 +(noun)|loop|loop-the-loop +outside marriage|1 +(adv)|out of wedlock +outside mirror|1 +(noun)|car mirror +outsider|2 +(noun)|foreigner|stranger|alien|unknown +(noun)|contestant +outsider art|1 +(noun)|self-taught art|vernacular art|naive art|primitive art|genre +outsize|2 +(adj)|outsized|oversize|oversized|large +(noun)|size +outsized|1 +(adj)|outsize|oversize|oversized|large +outskirt|1 +(noun)|fringe|city district +outskirts|2 +(noun)|section +(noun)|outskirt|fringe|city district +outsmart|2 +(verb)|outwit|overreach|outfox|beat|circumvent|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|outmaneuver|outmanoeuvre|outdo|outflank|trump|best|scoop +outsole|1 +(noun)|sole +outsource|1 +(verb)|source +outspan|1 +(verb)|unyoke|unharness +outspoken|2 +(adj)|vocal|communicative |communicatory +(adj)|blunt|candid|forthright|frank|free-spoken|plainspoken|point-blank|straight-from-the-shoulder|direct +outspokenness|1 +(noun)|frankness|communicativeness +outspread|1 +(adj)|spread|extended +outstanding|4 +(adj)|superior +(adj)|prominent|salient|spectacular|striking|conspicuous |obvious +(adj)|great|major +(adj)|owed|owing|undischarged|unpaid +outstandingly|1 +(adv)|unusually|remarkably|unco +outstare|1 +(verb)|stare down|outface|gaze|stare +outstation|1 +(noun)|outpost|post|station +outstay|2 +(verb)|overstay|bide|abide|stay +(verb)|last out|stay|ride out|outride +outstretched|1 +(adj)|extended +outstrip|2 +(verb)|surpass|outmatch|outgo|exceed|outdo|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +(verb)|outdistance|distance|leave behind +outstroke|1 +(noun)|throw|stroke|cam stroke +outtake|1 +(noun)|scene|shot +outthrust|1 +(noun)|outcrop|outcropping|rock outcrop +outturn|1 +(noun)|output|turnout|product|production +outvie|1 +(verb)|outrival|rival +outvote|1 +(verb)|vote +outward|3 +(adj)|outward |external|outer|superficial +(adj)|departing|outbound|outward-bound|outgoing +(adv)|outwards +outward-bound|1 +(adj)|departing|outbound|outward|outgoing +outward-developing|1 +(adj)|centrifugal +outward-moving|1 +(adj)|centrifugal +outwardly|1 +(adv)|externally +outwardness|3 +(noun)|cognitive state|state of mind +(noun)|externality|position|spatial relation +(noun)|extraversion|extroversion +outwards|1 +(adv)|outward +outwear|2 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|wear down|fag out|fag|fatigue|indispose +outweigh|2 +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +(verb)|preponderate|overbalance|outbalance|predominate|dominate|rule|reign|prevail +outwit|1 +(verb)|overreach|outsmart|outfox|beat|circumvent|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +outwork|1 +(noun)|defensive structure|defense|defence +ouzel|1 +(noun)|blackbird|merl|merle|ousel|European blackbird|Turdus merula|thrush +ouzo|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +ov|1 +(noun)|Orange Group|OV|terrorist organization|terrorist group|foreign terrorist organization|FTO +oval|2 +(adj)|egg-shaped|elliptic|elliptical|ovate|oviform|ovoid|prolate|rounded +(noun)|ellipse|conic section|conic +oval kumquat|1 +(noun)|nagami|nagami kumquat|Fortunella margarita|kumquat|cumquat|kumquat tree +oval office|1 +(noun)|Oval Office|government office +oval window|1 +(noun)|fenestra ovalis|fenestra vestibuli|fenestra of the vestibule|fenestra +ovalbumin|1 +(noun)|egg white|albumen|ingredient|fixings +ovalipes|1 +(noun)|Ovalipes|genus Ovalipes|arthropod genus +ovalipes ocellatus|1 +(noun)|American lady crab|lady crab|calico crab|Ovalipes ocellatus|swimming crab +ovarian|1 +(adj)|female internal reproductive organ|gonad|sex gland +ovarian artery|1 +(noun)|arteria ovarica|artery|arteria|arterial blood vessel +ovarian cyst|1 +(noun)|cyst +ovarian pregnancy|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis +ovarian vein|1 +(noun)|vena ovarica|vein|vena|venous blood vessel +ovariectomy|1 +(noun)|oophorectomy|ablation|extirpation|cutting out|excision +ovary|2 +(noun)|reproductive structure +(noun)|female internal reproductive organ|gonad|sex gland +ovate|2 +(adj)|simple |unsubdivided +(adj)|egg-shaped|elliptic|elliptical|oval|oviform|ovoid|prolate|rounded +ovate leaf|1 +(noun)|simple leaf +ovation|1 +(noun)|standing ovation|recognition|credit +oven|1 +(noun)|kitchen appliance +oven-ready|1 +(adj)|prepared +oven broil|1 +(verb)|broil|grill +oven stuffer|1 +(noun)|oven stuffer roaster|roaster +oven stuffer roaster|1 +(noun)|oven stuffer|roaster +oven thermometer|1 +(noun)|thermometer +ovenbake|1 +(verb)|bake +ovenbird|2 +(noun)|Seiurus aurocapillus|New World warbler|wood warbler +(noun)|tyrannid +ovenware|1 +(noun)|crockery|dishware +over|4 +(adj)|complete|concluded|ended|all over|terminated|finished +(noun)|playing period|period of play|play +(adv)|across +(adv)|o'er +over-correct|1 +(verb)|overcompensate|right|compensate|redress|correct +over-crowding|1 +(noun)|congestion|crowding +over-embellished|1 +(adj)|embellished|empurpled|purple|rhetorical +over-refine|2 +(verb)|overrefine|polish|refine|fine-tune|down +(verb)| +over-the-counter|2 +(adj)|nonprescription +(adj)|otc|unlisted +over-the-counter drug|1 +(noun)|over-the-counter medicine|medicine|medication|medicament|medicinal drug +over-the-counter market|1 +(noun)|OTC market|stock exchange|stock market|securities market +over-the-counter medicine|1 +(noun)|over-the-counter drug|medicine|medication|medicament|medicinal drug +over-the-hill|1 +(adj)|overage|overaged|superannuated|old +over-the-shoulder bombing|1 +(noun)|loft bombing|toss bombing +over-the-top|1 +(adj)|extraordinary|immoderate +over again|1 +(adv)|again|once again|once more +over and over|1 +(adv)|again and again|over and over again|time and again|time and time again +over and over again|1 +(adv)|over and over|again and again|time and again|time and time again +over here|1 +(adv)|up here +over the counter security|1 +(noun)|unlisted security|OTC security|security|certificate +over the counter stock|1 +(noun)|OTC stock|unlisted stock|unlisted security|over the counter security|OTC security +over the sea|1 +(adv)|overseas|beyond the sea|abroad +overabundance|2 +(noun)|surfeit|excess|fullness +(noun)|overmuch|overmuchness|superabundance|abundance|copiousness|teemingness +overabundant|1 +(adj)|plethoric|rife|abundant +overachieve|1 +(verb)|do|perform +overachievement|1 +(noun)|performance +overachiever|1 +(noun)|student|pupil|educatee +overact|1 +(verb)|ham it up|ham|overplay|act|play|roleplay|playact +overacting|1 +(noun)|hamming|acting|playing|playacting|performing +overactive|1 +(adj)|hyperactive|active +overactivity|1 +(noun)|bodily process|body process|bodily function|activity +overage|1 +(adj)|overaged|superannuated|over-the-hill|old +overaged|1 +(adj)|overage|superannuated|over-the-hill|old +overall|4 +(adj)|general +(adj)|total|gross +(noun)|work-clothing|work-clothes +(noun)|boilersuit|boilers suit|coverall +overambitious|1 +(adj)|ambitious +overanxiety|1 +(noun)|anxiety|anxiousness +overanxious|1 +(adj)|insecure +overappraisal|1 +(noun)|overestimate|overestimation|overvaluation|appraisal|estimate|estimation +overarch|2 +(verb)|predominate|dominate|rule|reign|prevail +(verb)|arch over +overarm|1 +(adj)|overhand |overhanded|round-arm +overawe|1 +(verb)|cow|awe +overawed|1 +(adj)|awed |awestruck|awestricken|in awe of +overbalance|2 +(verb)|preponderate|outweigh|outbalance|predominate|dominate|rule|reign|prevail +(verb)|account|calculate +overbear|3 +(verb)|dominate +(verb)|bear|turn out +(verb)|bear down|compress|constrict|squeeze|compact|contract|press +overbearing|1 +(adj)|authoritarian|dictatorial|domineering +overbearingness|1 +(noun)|imperiousness|domineeringness|arrogance|haughtiness|hauteur|highhandedness|lordliness +overbid|4 +(noun)|bid|tender +(noun)|overcall|bid|bidding +(verb)|bid|call +(verb)|offer|bid|tender +overbite|1 +(noun)|malocclusion +overblown|2 +(adj)|grandiloquent|pompous|pontifical|portentous|pretentious +(adj)|mature +overboil|2 +(verb)|boil over|boil +(verb)|boil +overbold|1 +(adj)|fresh|impertinent|impudent|smart|saucy|sassy|forward +overburden|4 +(noun)|land|ground|soil +(noun)|overload|load|loading|burden +(verb)|charge|saddle|burden +(verb)|burden|burthen|weight|weight down +overburdened|1 +(adj)|bowed down|loaded down|weighed down|burdened +overbusy|1 +(adj)|busy +overcall|1 +(noun)|overbid|bid|bidding +overcapitalisation|1 +(noun)|overcapitalization|capitalization|capitalisation +overcapitalise|3 +(verb)|overcapitalize|capitalize|capitalise +(verb)|overcapitalize|overestimate|overrate +(verb)|overcapitalize|capitalize|capitalise +overcapitalization|1 +(noun)|overcapitalisation|capitalization|capitalisation +overcapitalize|3 +(verb)|overcapitalise|capitalize|capitalise +(verb)|overcapitalise|overestimate|overrate +(verb)|overcapitalise|capitalize|capitalise +overcareful|1 +(adj)|too-careful|careful +overcast|8 +(adj)|cloud-covered|clouded|sunless|cloudy +(noun)|cloudiness|cloud cover|bad weather|inclemency|inclementness +(noun)|cloudiness|semidarkness +(noun)|overcasting|stitch +(noun)|casting|cast +(verb)|cloud|darken +(verb)|sew|run up|sew together|stitch +(verb)|sew|run up|sew together|stitch +overcasting|1 +(noun)|overcast|stitch +overcautious|1 +(adj)|cautious +overcharge|3 +(noun)|charge +(verb)|soak|surcharge|gazump|fleece|plume|pluck|rob|hook|cheat|rip off|chisel +(verb)|overload|surcharge|load|lade|laden|load up +overclothe|1 +(verb)|overdress|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +overclothes|1 +(noun)|outerwear|clothing|article of clothing|vesture|wear +overcloud|2 +(verb)|cloud over|cloud up|darken +(verb)|obscure|bedim|change|alter|modify +overcoat|2 +(noun)|greatcoat|topcoat|coat +(noun)|overcoating|coating|coat +overcoating|1 +(noun)|overcoat|coating|coat +overcome|5 +(adj)|flooded|inundated|overpowered|overwhelmed|swamped|engulfed|powerless |weak +(verb)|get the better of|defeat +(verb)|get over|subdue|surmount|master|get the better of|defeat +(verb)|overwhelm|overpower|sweep over|whelm|overtake|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|get the best|have the best|get the better of|defeat +overcomer|1 +(noun)|subduer|surmounter|restrainer|controller +overcompensate|2 +(verb)|cover|compensate|compensate|counterbalance|correct|even out|even off|even up +(verb)|over-correct|right|compensate|redress|correct +overcompensation|2 +(noun)|compensation +(noun)|compensation +overconfidence|1 +(noun)|certitude|cocksureness|certainty +overconfident|1 +(adj)|cocksure|positive|confident +overcook|1 +(verb)|cook +overcredulity|1 +(noun)|credulity +overcredulous|1 +(adj)|credulous +overcritical|1 +(adj)|hypercritical|critical +overcrop|1 +(verb)|overcultivate|cultivate|crop|work +overcrossing|1 +(noun)|footbridge|pedestrian bridge|bridge|span +overcrowd|2 +(verb)|herd|crowd +(verb)|crowd|crowd together +overcultivate|1 +(verb)|overcrop|cultivate|crop|work +overcup oak|1 +(noun)|Quercus lyrata|oak|oak tree +overcurious|1 +(adj)|curious +overdelicate|1 +(adj)|delicate +overdo|1 +(verb)|exaggerate|make|do +overdone|2 +(adj)|exaggerated|overstated|immoderate +(adj)|cooked +overdose|1 +(verb)|o.d.|drug|dose +overdraft|1 +(noun)|draft|bill of exchange|order of payment +overdraft credit|1 +(noun)|check overdraft credit|open-end credit|revolving credit|charge account credit +overdramatise|1 +(verb)|overdramatize|dramatize|dramatise +overdramatize|1 +(verb)|overdramatise|dramatize|dramatise +overdraw|2 +(verb)|withdraw|draw|take out|draw off +(verb)|overstate|exaggerate|hyperbolize|hyerbolise|magnify|amplify|misinform|mislead +overdress|2 +(verb)|overclothe|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|dress|get dressed +overdressed|1 +(adj)|clothed |clad +overdrive|4 +(noun)|action|activity|activeness +(noun)|high gear|high +(verb)|overwork|exploit +(verb)|overuse|use|utilize|utilise|apply|employ +overdue|1 +(adj)|delinquent|due |owed +overeager|1 +(adj)|eager +overeat|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +overeating|1 +(noun)|gluttony|gula|mortal sin|deadly sin +overemotional|1 +(adj)|emotional +overemphasis|1 +(noun)|vehemence|emphasis +overemphasise|1 +(verb)|overemphasize|overstress|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +overemphasize|1 +(verb)|overemphasise|overstress|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +overenthusiastic|1 +(adj)|enthusiastic +overestimate|4 +(noun)|overestimation|overvaluation|overappraisal|appraisal|estimate|estimation +(noun)|overestimation|overrating|overreckoning|estimate|estimation|approximation|idea +(verb)|overrate|misjudge +(verb)|overvalue|value +overestimation|2 +(noun)|overestimate|overvaluation|overappraisal|appraisal|estimate|estimation +(noun)|overestimate|overrating|overreckoning|estimate|estimation|approximation|idea +overexcited|1 +(adj)|excited +overexert|1 +(verb)|exert +overexert oneself|1 +(verb)|kill oneself|strive|reach|strain +overexertion|1 +(noun)|effort|elbow grease|exertion|travail|sweat +overexploit|1 +(verb)|exploit|tap +overexploitation|1 +(noun)|overuse|overutilization|overutilisation|exploitation|development +overexpose|2 +(verb)|expose +(verb)|expose +overexposure|2 +(noun)|exposure +(noun)|exposure +overextend|1 +(verb)|overstrain|strain|extend +overfamiliar|1 +(adj)|forward +overfatigue|1 +(verb)|overtire|overweary|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +overfed|1 +(adj)|nourished +overfeed|1 +(verb)|feed|give +overfeeding|1 +(noun)|feeding|alimentation +overfill|1 +(verb)|fill|fill up|make full +overflight|1 +(noun)|flight|flying +overflow|4 +(noun)|flood|outpouring|flow|stream +(noun)|runoff|overspill|flow|flowing +(verb)|overrun|well over|run over|brim over|spill|run out +(verb)|bubble over|spill over|seethe|boil +overflow incontinence|1 +(noun)|enuresis|urinary incontinence +overflowing|2 +(adj)|flooding|in flood|swollen|high +(adj)|afloat|awash|flooded|inundated|full +overfly|1 +(verb)|pass over|travel|go|move|locomote +overfond|1 +(adj)|loving +overfull|1 +(adj)|glutted|full +overgarment|1 +(noun)|outer garment|garment +overgeneralise|1 +(verb)|overgeneralize|generalize|generalise|extrapolate|infer +overgeneralize|1 +(verb)|overgeneralise|generalize|generalise|extrapolate|infer +overgenerous|1 +(adj)|lavish|munificent|prodigal|too-generous|unsparing|unstinted|unstinting|generous +overgorge|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +overgreedy|1 +(adj)|too-greedy|gluttonous +overgrow|3 +(verb)|change state|turn +(verb)|grow over|grow +(verb)|outgrow|grow +overgrown|2 +(adj)|covered +(adj)|wooded +overgrowth|2 +(noun)|giantism|gigantism|hypertrophy +(noun)|profusion|profuseness|richness|cornucopia +overhand|2 +(adj)|overhand |overhanded|overarm|round-arm +(adj)|oversewn|handmade |hand-crafted +overhand knot|1 +(noun)|knot +overhand stitch|1 +(noun)|stitch +overhanded|1 +(adj)|overhand |overarm|round-arm +overhang|3 +(noun)|projection +(verb)|stick out|protrude|jut out|jut|project +(verb)|beetle|hang +overhasty|1 +(adj)|hasty|precipitate|precipitant|precipitous|hurried +overhaul|3 +(noun)|inspection and repair|service|care|maintenance|upkeep +(verb)|pass|overtake|advance|progress|pass on|move on|march on|go on +(verb)|modernize|modernise|regenerate|renew +overhead|7 +(adj)|overhead |elevated +(noun)|operating expense|operating cost|budget items|expense|disbursal|disbursement +(noun)|command processing overhead time|command processing overhead|command overhead|processing time +(noun)|disk overhead|disk space|disc space +(noun)|viewgraph|foil|transparency +(noun)|ceiling +(noun)|smash|return +overhead projector|1 +(noun)|projector +overhead railway|1 +(noun)|elevated railway|elevated railroad|el|railway|railroad|railroad line|railway line|railway system +overhear|1 +(verb)|catch|take in|hear +overheat|2 +(verb)|heat|hot up|heat up +(verb)|heat|heat up +overheated|1 +(adj)|hot +overheating|1 +(noun)|heating|warming +overindulge|1 +(verb)|gorge|ingurgitate|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +overindulgence|1 +(noun)|excess|indulgence|indulging|pampering|humoring +overjealous|1 +(adj)|jealous|green-eyed|distrustful +overjoyed|1 +(adj)|joyful +overkill|2 +(noun)|capability|capableness +(noun)|effort|elbow grease|exertion|travail|sweat +overladen|1 +(adj)|overloaded|full +overland|1 +(adj)|land +overlap|5 +(noun)|convergence|intersection|representation|mental representation|internal representation +(noun)|concurrence|coincidence|conjunction|co-occurrence +(noun)|lap|flap +(verb)|coincide|co-occur|cooccur +(verb)|cover|extend +overlapping|3 +(adj)|related |related to +(adj)|lap-jointed|lap-strake|lap-straked|lap-streak|lap-streaked|clinker-built |clincher-built +(noun)|imbrication|lapping|covering +overlarge|1 +(adj)|too large|large +overlay|5 +(noun)|sheathing|overlayer|protective covering|protective cover|protection +(verb)|cover +(verb)|overlie|kill +(verb)|overlie|lie +(verb)|overlie|kill +overlayer|1 +(noun)|sheathing|overlay|protective covering|protective cover|protection +overleap|3 +(verb)|overdo|exaggerate +(verb)|vault|jump|leap|bound|spring +(verb)|neglect|pretermit|omit|drop|miss|leave out|overlook +overlie|2 +(verb)|lie +(verb)|overlay|kill +overload|4 +(noun)|load|loading|burden +(noun)|overburden|load|loading|burden +(verb)|clog|fill|fill up|make full +(verb)|surcharge|overcharge|load|lade|laden|load up +overloaded|1 +(adj)|overladen|full +overlook|6 +(noun)|topographic point|place|spot +(verb)|miss|lose +(verb)|look out on|look out over|look across|lie +(verb)|neglect|pretermit|omit|drop|miss|leave out|overleap +(verb)|dominate|command|overtop|lie +(verb)|survey +overlooked|1 +(adj)|unmarked|unnoted|unnoticed +overlooking|1 +(adj)|commanding|dominating|high +overlord|1 +(noun)|master|lord|ruler|swayer +overlordship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +overly|1 +(adv)|excessively|to a fault|too +overlying|1 +(adj)|superimposed|superjacent +overmantel|1 +(noun)|shelf +overmaster|1 +(verb)|overpower|overwhelm|beat|beat out|crush|shell|trounce|vanquish +overmodest|1 +(adj)|coy|demure|modest +overmuch|3 +(adj)|much +(noun)|overabundance|overmuchness|superabundance|abundance|copiousness|teemingness +(adv)|too much +overmuchness|1 +(noun)|overabundance|overmuch|superabundance|abundance|copiousness|teemingness +overnice|1 +(adj)|dainty|nice|prissy|squeamish|fastidious +overnight|1 +(adj)|nightlong|long +overnight bag|1 +(noun)|overnighter|overnight case|bag|traveling bag|grip|suitcase +overnight case|1 +(noun)|overnighter|overnight bag|bag|traveling bag|grip|suitcase +overnighter|2 +(noun)|guest +(noun)|overnight bag|overnight case|bag|traveling bag|grip|suitcase +overpass|1 +(noun)|flyover|flypast|bridge|span +overpay|1 +(verb)|pay +overpayment|2 +(noun)|payment +(noun)|payment|defrayal|defrayment +overplay|1 +(verb)|overact|ham it up|ham|act|play|roleplay|playact +overplus|1 +(noun)|plethora|superfluity|embarrassment|excess|excessiveness|inordinateness +overpopulate|1 +(verb)|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +overpopulation|1 +(noun)|overspill|population +overpower|2 +(verb)|overmaster|overwhelm|beat|beat out|crush|shell|trounce|vanquish +(verb)|overwhelm|sweep over|whelm|overcome|overtake|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +overpowered|1 +(adj)|flooded|inundated|overcome|overwhelmed|swamped|engulfed|powerless |weak +overpowering|1 +(adj)|overwhelming|irresistible |resistless +overpoweringly|1 +(adv)|overwhelmingly|irresistibly +overpraise|1 +(verb)|overdo|exaggerate +overpressure|1 +(noun)|atmospheric pressure|air pressure +overprice|1 +(verb)|price +overpriced|1 +(adj)|expensive +overprint|2 +(noun)|surprint|print +(verb)|print over|print|impress +overproduce|2 +(verb)|grow|raise|farm|produce +(verb)|produce|make|create +overproduction|1 +(noun)|overrun|production +overprotect|2 +(verb)|mother|fuss|care|give care +(verb)|protect +overprotection|1 +(noun)|momism|overshielding|protection +overprotective|1 +(adj)|protective +overproud|1 +(adj)|proud +overrate|1 +(verb)|overestimate|misjudge +overrating|1 +(noun)|overestimate|overestimation|overreckoning|estimate|estimation|approximation|idea +overreach|2 +(verb)|fail|go wrong|miscarry +(verb)|outwit|outsmart|outfox|beat|circumvent|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +overreaching|1 +(adj)|vaulting|bold +overreact|1 +(verb)|react|respond +overreaction|1 +(noun)|reaction|response +overreckoning|1 +(noun)|overestimate|overestimation|overrating|estimate|estimation|approximation|idea +overrefine|1 +(verb)|over-refine|polish|refine|fine-tune|down +overrefined|1 +(adj)|superfine|refined +overrefinement|1 +(noun)|distortion|straining|torture|twisting|falsification|misrepresentaation +override|6 +(noun)|device +(noun)|nullification|change of state +(verb)|overrule|overturn|overthrow|reverse|rule|decree +(verb)|predominate|dominate|rule|reign|prevail +(verb)|counteract|countervail|neutralize|counterbalance +(verb)|ride|sit +overriding|1 +(adj)|paramount|predominant|predominate|preponderant|preponderating|dominant +overripe|1 +(adj)|ripe |mature +overrule|1 +(verb)|overturn|override|overthrow|reverse|rule|decree +overrun|7 +(adj)|infested|plagued|troubled +(noun)|overproduction|production +(verb)|infest|invade|occupy +(verb)|invade|infest|inhabit|occupy +(verb)|overflow|well over|run over|brim over|spill|run out +(verb)|get the better of|overcome|defeat +(verb)|overshoot +oversea|2 +(adj)|overseas|sea +(adv)|overseas +overseas|4 +(adj)|abroad|foreign +(adj)|oversea|sea +(adv)|oversea +(adv)|beyond the sea|over the sea|abroad +overseas cap|1 +(noun)|garrison cap|cap +overseas telegram|1 +(noun)|cable|cablegram|telegram|wire +oversee|1 +(verb)|supervise|superintend|manage|administer|administrate +overseer|1 +(noun)|superintendent|supervisor +oversensitive|1 +(adj)|sensitive +oversensitiveness|1 +(noun)|sensitivity|sensitiveness +overserious|1 +(adj)|serious +oversew|1 +(verb)|overcast +oversewn|1 +(adj)|overhand|handmade |hand-crafted +oversexed|1 +(adj)|highly-sexed|sexy +overshadow|3 +(verb)|eclipse|excel|stand out|surpass +(verb)|shadow|dwarf|dominate|command|overlook|overtop +(verb)|obscure|befog|becloud|obnubilate|haze over|fog|cloud|mist +overshielding|1 +(noun)|momism|overprotection|protection +overshoe|1 +(noun)|footwear|footgear +overshoot|3 +(noun)|wave-off|go-around|landing approach +(verb)|miss|shoot +(verb)|draw a bead on|aspire|aim|shoot for +overshot|1 +(adj)|protrusive +oversight|3 +(noun)|inadvertence|omission +(noun)|supervision|supervising|superintendence|management|direction +(noun)|lapse|mistake|error|fault +oversimplification|2 +(noun)|simplification +(noun)|simplification +oversimplified|1 +(adj)|simplistic|simple +oversimplify|2 +(verb)|overdo|exaggerate +(verb)|simplify +oversize|1 +(adj)|outsize|outsized|oversized|large +oversized|1 +(adj)|outsize|outsized|oversize|large +overskirt|1 +(noun)|skirt +oversolicitous|1 +(adj)|attentive +overspecialise|1 +(verb)|overspecialize|specialize|specialise|narrow|narrow down +overspecialize|1 +(verb)|overspecialise|specialize|specialise|narrow|narrow down +overspend|2 +(verb)|spend +(verb)|consume|squander|waste|ware +overspill|2 +(noun)|overpopulation|population +(noun)|overflow|runoff|flow|flowing +overspread|1 +(verb)|spread|cover|extend +overstate|1 +(verb)|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify|misinform|mislead +overstated|1 +(adj)|exaggerated|overdone|immoderate +overstatement|1 +(noun)|exaggeration|magnification|misrepresentation|deceit|deception +overstay|1 +(verb)|outstay|bide|abide|stay +overstep|2 +(verb)|transgress|trespass|pass|go through|go across +(verb)|exceed|transcend|pass|go past|top|excel|stand out|surpass +overstock|1 +(verb)|stock|buy in +overstrain|2 +(noun)|strain +(verb)|overextend|strain|extend +overstress|1 +(verb)|overemphasize|overemphasise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +overstretch|1 +(verb)|pull|injure|wound +overstrung|2 +(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|restive|uptight|tense +(adj)|tense +overstuff|1 +(verb)|stuff +overstuffed|1 +(adj)|soft +overstuffed chair|1 +(noun)|easy chair|lounge chair|armchair +oversubscribed|1 +(adj)|sold +oversupply|2 +(noun)|glut|surfeit|overabundance|overmuch|overmuchness|superabundance +(verb)|flood|glut|supply|provide|render|furnish +oversuspicious|1 +(adj)|distrustful +overt|1 +(adj)|overt |open|bald|barefaced|naked|raw|obvious|visible|undisguised|explicit|expressed|unconcealed|public +overt operation|1 +(noun)|intelligence|intelligence activity|intelligence operation +overtake|3 +(verb)|catch|catch up with +(verb)|pass|overhaul|advance|progress|pass on|move on|march on|go on +(verb)|overwhelm|overpower|sweep over|whelm|overcome|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +overtaking|1 +(noun)|passing|reordering +overtax|1 +(verb)|tax +overthrow|4 +(noun)|termination|ending|conclusion +(noun)|upset|derangement|disturbance +(verb)|subvert|overturn|bring down|depose|force out +(verb)|overrule|overturn|override|reverse|rule|decree +overthrust fault|1 +(noun)|thrust fault|reverse fault|inclined fault +overtime|2 +(noun)|work time +(noun)|extra time|time period|period of time|period +overtime period|1 +(noun)|overtime|extra time +overtire|1 +(verb)|overweary|overfatigue|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +overtolerance|1 +(noun)|permissiveness|tolerance +overtone|2 +(noun)|meaning|significance|signification|import +(noun)|partial|partial tone|harmonic +overtop|1 +(verb)|dominate|command|overlook|lie +overtrump|1 +(verb)|trump|ruff +overture|3 +(noun)|music +(noun)|preliminary|prelude|origin|origination|inception +(noun)|advance|approach|feeler|suggestion|proposition|proffer +overturn|8 +(noun)|upset|turnover|inversion|upending +(noun)|upset|success +(verb)|turn over|tip over|tump over|turn +(verb)|tip over|turn over|upset|knock over|bowl over|tump over|move|displace +(verb)|overrule|override|overthrow|reverse|rule|decree +(verb)|overthrow|subvert|bring down|depose|force out +(verb)|revoke|annul|lift|countermand|reverse|repeal|rescind|vacate|cancel|strike down +(verb)|revolutionize|revolutionise|change|alter|modify +overturned|1 +(adj)|upset|upturned|turned +overuse|2 +(noun)|overexploitation|overutilization|overutilisation|exploitation|development +(verb)|overdrive|use|utilize|utilise|apply|employ +overutilisation|1 +(noun)|overexploitation|overuse|overutilization|exploitation|development +overutilization|1 +(noun)|overexploitation|overuse|overutilisation|exploitation|development +overvaliant|1 +(adj)|bold +overvaluation|2 +(noun)|overestimate|overestimation|overappraisal|appraisal|estimate|estimation +(noun)|evaluation|valuation|rating +overvalue|1 +(verb)|overestimate|value +overview|1 +(noun)|summary +overweary|1 +(verb)|overtire|overfatigue|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +overweening|2 +(adj)|excessive|extravagant|exuberant|unrestrained +(adj)|uppity|immodest +overweight|2 +(adj)|fleshy|heavy|fat +(noun)|corpulence|stoutness|adiposis|fleshiness|obesity +overwhelm|4 +(verb)|overpower|sweep over|whelm|overcome|overtake|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|deluge|flood out|charge|saddle|burden +(verb)|submerge|drown|cover|spread over +(verb)|overpower|overmaster|beat|beat out|crush|shell|trounce|vanquish +overwhelmed|1 +(adj)|flooded|inundated|overcome|overpowered|swamped|engulfed|powerless |weak +overwhelming|2 +(adj)|overpowering|irresistible |resistless +(adj)|consuming|intense +overwhelmingly|1 +(adv)|overpoweringly|irresistibly +overwork|3 +(noun)|overworking|labor|labour|toil +(verb)|work|work on|process +(verb)|exploit|work|put to work +overworking|1 +(noun)|overwork|labor|labour|toil +overwrite|1 +(verb)|write +overwrought|1 +(adj)|distraught|agitated +overzealous|1 +(adj)|fanatic|fanatical|rabid|passionate +ovibos|1 +(noun)|Ovibos|genus Ovibos|mammal genus +ovibos moschatus|1 +(noun)|musk ox|musk sheep|Ovibos moschatus|bovid +ovid|1 +(noun)|Ovid|Publius Ovidius Naso|poet +oviduct|1 +(noun)|Fallopian tube|uterine tube|salpinx|female internal reproductive organ +oviedo|1 +(noun)|Oviedo|city|metropolis|urban center +oviform|1 +(adj)|egg-shaped|elliptic|elliptical|oval|ovate|ovoid|prolate|rounded +ovimbundu|1 +(noun)|Mbundu|Ovimbundu|ethnic group|ethnos +ovine|1 +(adj)|bovid +oviparous|1 +(adj)|oviparous |broody +ovipositor|1 +(noun)|organ +oviraptorid|1 +(noun)|maniraptor +ovis|1 +(noun)|Ovis|genus Ovis|mammal genus +ovis ammon|1 +(noun)|argali|argal|Ovis ammon|wild sheep +ovis aries|1 +(noun)|domestic sheep|Ovis aries|sheep +ovis canadensis|1 +(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +ovis montana dalli|1 +(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep +ovis musimon|1 +(noun)|mouflon|moufflon|Ovis musimon|mountain sheep +ovis poli|1 +(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep +ovis vignei|1 +(noun)|urial|Ovis vignei|wild sheep +ovocon|1 +(noun)|Ovocon|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +ovoflavin|1 +(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|hepatoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +ovoid|2 +(adj)|egg-shaped|elliptic|elliptical|oval|ovate|oviform|prolate|rounded +(noun)|solid +ovolo|1 +(noun)|thumb|quarter round|molding|moulding +ovotestis|1 +(noun)|gonad|sex gland +ovoviviparous|1 +(adj)|ovoviviparous +ovral|1 +(noun)|Ovral|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +ovrette|1 +(noun)|Ovrette|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +ovular|2 +(adj)|reproductive structure +(adj)|gamete +ovulate|1 +(verb)|discharge|expel|eject|release +ovulation|1 +(noun)|organic process|biological process +ovulation method|1 +(noun)|ovulation method of family planning|natural family planning +ovulation method of family planning|1 +(noun)|ovulation method|natural family planning +ovule|2 +(noun)|reproductive structure +(noun)|ovum|egg cell +ovulen|1 +(noun)|Ovulen|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant +ovum|1 +(noun)|egg cell|gamete +owe|2 +(verb)|repose on|rest on|build on|build upon +(verb)|be +owed|2 +(adj)|due |callable|collect|cod|collectible|collectable|payable|delinquent|overdue|owing|receivable|out-of-pocket|repayable +(adj)|outstanding|owing|undischarged|unpaid +owen|2 +(noun)|Owen|Robert Owen|industrialist|reformer|reformist|crusader|meliorist +(noun)|Owen|Sir Richard Owen|paleontologist|palaeontologist|fossilist|comparative anatomist +owen glendower|1 +(noun)|Glendower|Owen Glendower|headman|tribal chief|chieftain +owen wister|1 +(noun)|Wister|Owen Wister|writer|author +owens|3 +(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete|jock +(noun)|Owen|Robert Owen|industrialist|reformer|reformist|crusader|meliorist +(noun)|Owen|Sir Richard Owen|paleontologist|palaeontologist|fossilist|comparative anatomist +owensboro|1 +(noun)|Owensboro|town +owing|2 +(adj)|outstanding|owed|undischarged|unpaid +(adj)|due |owed +owl|1 +(noun)|bird of Minerva|bird of night|hooter|bird of prey|raptor|raptorial bird +owlclaws|1 +(noun)|orange sneezeweed|Helenium hoopesii|sneezeweed +owlet|1 +(noun)|owl|bird of Minerva|bird of night|hooter +owlet moth|1 +(noun)|noctuid moth|noctuid|moth +owlish|1 +(adj)|wise +owlt|1 +(noun)|one-way light time|OWLT|elapsed time +own|2 +(adj)|ain|personal +(verb)|have|possess +own goal|1 +(noun)|goal +own right|1 +(noun)|title|claim +owned|1 +(adj)|owned |closely-held|in hand +owner|2 +(noun)|proprietor|businessman|man of affairs +(noun)|possessor|person|individual|someone|somebody|mortal|human|soul +owner-driver|1 +(noun)|driver +owner-occupied|1 +(adj)|inhabited +owner-occupier|1 +(noun)|resident|occupant|occupier +ownerless|1 +(adj)|unowned +ownership|3 +(noun)|relation +(noun)|possession|control +(noun)|state +ox|2 +(noun)|cattle|cows|kine|oxen|Bos taurus +(noun)|wild ox|bovine +ox-eyed|1 +(adj)|eyed +ox-eyed daisy|1 +(noun)|oxeye daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +oxacillin|1 +(noun)|penicillinase-resistant antibiotic +oxalacetate|1 +(noun)|oxaloacetate|salt +oxalacetic acid|1 +(noun)|oxaloacetic acid|acid +oxalate|1 +(noun)|salt +oxalic acid|1 +(noun)|ethanedioic acid|acid +oxalidaceae|1 +(noun)|Oxalidaceae|family Oxalidaceae|wood-sorrel family|rosid dicot family +oxalis|1 +(noun)|sorrel|wood sorrel|herb|herbaceous plant +oxalis acetosella|1 +(noun)|common wood sorrel|cuckoo bread|shamrock|Oxalis acetosella|oxalis|sorrel|wood sorrel +oxalis caprina|1 +(noun)|goatsfoot|goat's foot|Oxalis caprina|oxalis|sorrel|wood sorrel +oxalis cernua|1 +(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis|sorrel|wood sorrel +oxalis corniculata|1 +(noun)|creeping oxalis|creeping wood sorrel|Oxalis corniculata|oxalis|sorrel|wood sorrel +oxalis crenata|1 +(noun)|oca|oka|Oxalis tuberosa|Oxalis crenata|oxalis|sorrel|wood sorrel +oxalis pes-caprae|1 +(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis|sorrel|wood sorrel +oxalis tuberosa|1 +(noun)|oca|oka|Oxalis tuberosa|Oxalis crenata|oxalis|sorrel|wood sorrel +oxalis violacea|1 +(noun)|violet wood sorrel|Oxalis violacea|oxalis|sorrel|wood sorrel +oxaloacetate|1 +(noun)|oxalacetate|salt +oxaloacetic acid|1 +(noun)|oxalacetic acid|acid +oxandra|1 +(noun)|Oxandra|genus Oxandra|magnoliid dicot genus +oxandra lanceolata|1 +(noun)|lancewood|lancewood tree|Oxandra lanceolata|tree +oxaprozin|1 +(noun)|Daypro|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +oxazepam|1 +(noun)|Serax|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +oxblood red|1 +(noun)|dark red +oxbow|3 +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|meander +(noun)|framework|frame|framing +oxbow lake|1 +(noun)|lake +oxbridge|1 +(noun)|Oxbridge|university +oxcart|1 +(noun)|cart +oxen|3 +(noun)|cattle|cows|kine|Bos taurus|bovine +(noun)|ox|cattle|cows|kine|Bos taurus +(noun)|ox|wild ox|bovine +oxeye|3 +(noun)|heliopsis|wildflower|wild flower +(noun)|wildflower|wild flower +(noun)|dormer window +oxeye daisy|2 +(noun)|Leucanthemum maximum|Chrysanthemum maximum|composite|composite plant +(noun)|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +oxford|4 +(noun)|Oxford|city|metropolis|urban center +(noun)|Oxford|town +(noun)|Oxford University|Oxford|university +(noun)|shoe +oxford-gray|1 +(adj)|oxford-grey|achromatic +oxford-grey|1 +(adj)|oxford-gray|achromatic +oxford english|1 +(noun)|Oxford English|English|English language +oxford english dictionary|1 +(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary +oxford gray|1 +(noun)|charcoal|charcoal gray|charcoal grey|oxford grey|gray|grayness|grey|greyness +oxford grey|1 +(noun)|charcoal|charcoal gray|charcoal grey|oxford gray|gray|grayness|grey|greyness +oxford movement|1 +(noun)|Oxford movement|religious movement +oxford university|1 +(noun)|Oxford University|Oxford|university +oxheart|2 +(noun)|heart cherry|oxheart cherry|sweet cherry|Prunus avium +(noun)|heart cherry|oxheart cherry|sweet cherry|black cherry +oxheart cherry|2 +(noun)|heart cherry|oxheart|sweet cherry|Prunus avium +(noun)|heart cherry|oxheart|sweet cherry|black cherry +oxidant|1 +(noun)|oxidizer|oxidiser|oxidizing agent|chemical agent +oxidase|1 +(noun)|enzyme +oxidate|2 +(verb)|oxidise|oxidize|change +(verb)|oxidize|oxidise|change|alter|modify|change +oxidation|1 +(noun)|oxidization|oxidisation|chemical reaction|reaction +oxidation-reduction|1 +(noun)|oxidoreduction|redox|chemical reaction|reaction +oxidation-reduction indicator|1 +(noun)|indicator +oxidation number|1 +(noun)|oxidation state|number +oxidation state|1 +(noun)|oxidation number|number +oxidative|1 +(adj)|aerobic |aerophilic|aerophilous +oxidative phosphorylation|1 +(noun)|organic process|biological process +oxide|1 +(noun)|compound|chemical compound +oxidisation|1 +(noun)|oxidation|oxidization|chemical reaction|reaction +oxidise|2 +(verb)|oxidize|oxidate|change|alter|modify|change +(verb)|oxidize|oxidate|change +oxidised|1 +(adj)|oxidized|change|alter|modify|change +oxidiser|1 +(noun)|oxidant|oxidizer|oxidizing agent|chemical agent +oxidizable|1 +(adj)|reactive +oxidization|1 +(noun)|oxidation|oxidisation|chemical reaction|reaction +oxidize|2 +(verb)|oxidise|oxidate|change +(verb)|oxidise|oxidate|change|alter|modify|change +oxidized|1 +(adj)|oxidised|change|alter|modify|change +oxidized ldl cholesterol|1 +(noun)|oxidized LDL cholesterol|LDL cholesterol +oxidizer|1 +(noun)|oxidant|oxidiser|oxidizing agent|chemical agent +oxidizing agent|1 +(noun)|oxidant|oxidizer|oxidiser|chemical agent +oxidoreductase|1 +(noun)|enzyme +oxidoreduction|1 +(noun)|oxidation-reduction|redox|chemical reaction|reaction +oxime|1 +(noun)|organic compound +oximeter|1 +(noun)|measuring instrument|measuring system|measuring device +oxlip|1 +(noun)|paigle|Primula elatior|primrose|primula +oxonian|3 +(adj)|Oxonian|university +(adj)|Oxonian|city|metropolis|urban center +(noun)|Oxonian|English person +oxtail|1 +(noun)|tail +oxtail soup|1 +(noun)|soup +oxtant|1 +(noun)|angular unit +oxtongue|1 +(noun)|bristly oxtongue|bitterweed|bugloss|Picris echioides|weed +oxyacetylene|2 +(adj)|fueled +(noun)|mixture +oxyacetylene torch|1 +(noun)|blowtorch|torch|blowlamp +oxyacid|1 +(noun)|oxygen acid|acid +oxybelis|1 +(noun)|Oxybelis|genus Oxybelis|reptile genus +oxybenzene|1 +(noun)|carbolic acid|phenol|hydroxybenzene|phenylic acid|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +oxybutyric acid|1 +(noun)|hydroxybutyric acid|butyric acid|butanoic acid +oxycephaly|1 +(noun)|acrocephaly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +oxydendrum|1 +(noun)|Oxydendrum|genus Oxydendrum|dilleniid dicot genus +oxydendrum arboreum|1 +(noun)|sorrel tree|sourwood|titi|Oxydendrum arboreum|angiospermous tree|flowering tree +oxygen|1 +(noun)|O|atomic number 8|chemical element|element|gas +oxygen acid|1 +(noun)|oxyacid|acid +oxygen debt|1 +(noun)|physiological state|physiological condition +oxygen deficit|1 +(noun)|deficit|shortage|shortfall +oxygen mask|1 +(noun)|breathing device|breathing apparatus|breathing machine|ventilator +oxygenase|1 +(noun)|oxidoreductase +oxygenate|1 +(verb)|oxygenize|oxygenise|aerate|process|treat +oxygenated|1 +(adj)|aerated|ventilated +oxygenation|1 +(noun)|natural process|natural action|action|activity +oxygenise|3 +(verb)|oxygenize|change|alter|modify +(verb)|oxygenize|dehydrogenate +(verb)|oxygenate|oxygenize|aerate|process|treat +oxygenize|3 +(verb)|oxygenise|change|alter|modify +(verb)|oxygenise|dehydrogenate +(verb)|oxygenate|oxygenise|aerate|process|treat +oxyhaemoglobin|1 +(noun)|oxyhemoglobin|hemoglobin|haemoglobin|Hb +oxyhemoglobin|1 +(noun)|oxyhaemoglobin|hemoglobin|haemoglobin|Hb +oxylebius|1 +(noun)|Oxylebius|genus Oxylebius|fish genus +oxylebius pictus|1 +(noun)|painted greenling|convict fish|convictfish|Oxylebius pictus|greenling +oxymoron|1 +(noun)|trope|figure of speech|figure|image +oxyopia|1 +(noun)|acuity|visual acuity|sharp-sightedness +oxyphenbutazone|1 +(noun)|Tandearil|anti-inflammatory|anti-inflammatory drug +oxyphencyclimine|1 +(noun)|Daricon|anticholinergic|anticholinergic drug +oxytetracycline|1 +(noun)|hydroxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic|antibiotic drug +oxytetracycline hydrochloride|1 +(noun)|oxytetracycline|hydroxytetracycline|Terramycin|antibiotic|antibiotic drug +oxytocic|1 +(noun)|oxytocic drug|medicine|medication|medicament|medicinal drug +oxytocic drug|1 +(noun)|oxytocic|medicine|medication|medicament|medicinal drug +oxytocin|1 +(noun)|Pitocin|hormone|endocrine|internal secretion +oxytone|1 +(noun)|word +oxytropis|1 +(noun)|Oxytropis|genus Oxytropis|rosid dicot genus +oxytropis lambertii|1 +(noun)|purple locoweed|purple loco|Oxytropis lambertii|locoweed|crazyweed|crazy weed +oxyura|1 +(noun)|Oxyura|genus Oxyura|bird genus +oxyura jamaicensis|1 +(noun)|ruddy duck|Oxyura jamaicensis|duck +oxyuranus|1 +(noun)|Oxyuranus|genus Oxyuranus|reptile genus +oxyuranus scutellatus|1 +(noun)|taipan|Oxyuranus scutellatus|elapid|elapid snake +oxyuridae|1 +(noun)|Oxyuridae|family Oxyuridae|worm family +oyabun|1 +(noun)|supervisor +oyster|4 +(noun)|bivalve|pelecypod|lamellibranch +(noun)|huitre|shellfish +(noun)|helping|portion|serving +(verb)|gather|garner|collect|pull together +oyster-fish|3 +(noun)|oyster fish|oysterfish|toadfish|Opsanus tau +(noun)| +(noun)| +oyster agaric|1 +(noun)|oyster mushroom|oyster fungus|Pleurotus ostreatus|agaric +oyster bank|1 +(noun)|oyster bed|oyster park|workplace|work +oyster bar|1 +(noun)|bar +oyster bed|1 +(noun)|oyster bank|oyster park|workplace|work +oyster catcher|2 +(noun)|oystercatcher|shorebird|shore bird|limicoline bird +(noun)| +oyster crab|1 +(noun)|Pinnotheres ostreum|pea crab +oyster cracker|1 +(noun)|cracker +oyster dressing|1 +(noun)|oyster stuffing|stuffing|dressing +oyster fish|3 +(noun)|oyster-fish|oysterfish|toadfish|Opsanus tau +(noun)| +(noun)| +oyster fungus|1 +(noun)|oyster mushroom|oyster agaric|Pleurotus ostreatus|agaric +oyster mushroom|1 +(noun)|oyster fungus|oyster agaric|Pleurotus ostreatus|agaric +oyster park|1 +(noun)|oyster bed|oyster bank|workplace|work +oyster plant|3 +(noun)|salsify|root +(noun)|salsify|vegetable oyster|Tragopogon porrifolius|herb|herbaceous plant +(noun)|vegetable oyster|salsify +oyster shell|1 +(noun)|shell +oyster stew|1 +(noun)|stew +oyster stuffing|1 +(noun)|oyster dressing|stuffing|dressing +oystercatcher|1 +(noun)|oyster catcher|shorebird|shore bird|limicoline bird +oysterfish|1 +(noun)|oyster fish|oyster-fish|toadfish|Opsanus tau +oysters rockefeller|1 +(noun)|oysters Rockefeller|huitre|oyster +oz.|1 +(noun)|ounce|avoirdupois unit +ozaena|1 +(noun)|ozena|disease +ozark chinkapin|1 +(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut|chestnut tree +ozark chinquapin|1 +(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut|chestnut tree +ozark mountains|1 +(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +ozark plateau|1 +(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +ozark sundrops|1 +(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose +ozarks|1 +(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +ozawa|1 +(noun)|Ozawa|Seiji Ozawa|conductor|music director|director +ozena|1 +(noun)|ozaena|disease +ozocerite|1 +(noun)|ader wax|earth wax|mineral wax|ozokerite|mineral +ozokerite|1 +(noun)|ader wax|earth wax|mineral wax|ozocerite|mineral +ozone|1 +(noun)|gas +ozone hole|1 +(noun)|hole +ozone layer|1 +(noun)|ozonosphere|layer +ozone sickness|1 +(noun)|illness|unwellness|malady|sickness +ozonide|1 +(noun)|compound|chemical compound +ozonium|1 +(noun)|Ozonium|genus Ozonium|fungus genus +ozonosphere|1 +(noun)|ozone layer|layer +ozothamnus|1 +(noun)|Ozothamnus|genus Ozothamnus|asterid dicot genus +ozothamnus secundiflorus|1 +(noun)|cascade everlasting|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting|everlasting flower +p|2 +(noun)|phosphorus|P|atomic number 15|chemical element|element +(noun)|P|letter|letter of the alphabet|alphabetic character +p-n-p transistor|1 +(noun)|transistor|junction transistor|electronic transistor +p-n junction|1 +(noun)|contact|tangency +p-type semiconductor|1 +(noun)|semiconductor device|semiconductor unit|semiconductor +p. g. wodehouse|1 +(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer|author +p. p. von mauser|1 +(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor|discoverer|artificer|arms manufacturer +p. t. barnum|1 +(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman|promoter|impresario +p.a.|6 +(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system +(noun)|dad|dada|daddy|pa|papa|pappa|pater|pop|father|male parent|begetter +(noun)|protactinium|protoactinium|Pa|atomic number 91|metallic element|metal +(noun)|pascal|Pa|pressure unit +(noun)|Pennsylvania|Keystone State|PA|American state +(adv)|per annum|per year|each year|annually +p.a. system|2 +(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system +(noun)| +p.e.|2 +(noun)|potential energy|P.E.|mechanical energy +(noun)|pe|letter|letter of the alphabet|alphabetic character +p.m.|4 +(adj)|post meridiem|pm|postmeridian +(adj)| +(adv)|post meridiem|P.M.|PM +(adv)| +p.o.|4 +(noun)|petty officer|PO|P.O.|noncommissioned officer|noncom +(noun)|polonium|Po|atomic number 84|metallic element|metal +(noun)|Po|Po River|river +(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency +p/e ratio|1 +(noun)|price-to-earnings ratio|P/E ratio|ratio +pa|5 +(noun)|dad|dada|daddy|papa|pappa|pater|pop|father|male parent|begetter +(noun)|protactinium|protoactinium|Pa|atomic number 91|metallic element|metal +(noun)|pascal|Pa|pressure unit +(noun)|Pennsylvania|Keystone State|PA|American state +(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system +pa'anga|1 +(noun)|Tongan monetary unit +pa system|1 +(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system +paba|1 +(noun)|para aminobenzoic acid|PABA|acid +pabir|1 +(noun)|Bura|Pabir|Biu-Mandara +pablo casals|1 +(noun)|Casals|Pablo Casals|cellist +pablo neruda|1 +(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet +pablo picasso|1 +(noun)|Picasso|Pablo Picasso|painter|sculptor|sculpturer|carver|statue maker +pablum|2 +(noun)|Pablum|cereal +(noun)|pap|drivel|garbage +pabulum|2 +(noun)|comestible|edible|eatable|victual|victuals|food|nutrient +(noun)|food|food for thought|intellectual nourishment +pac|1 +(noun)|political action committee|PAC|committee|commission +pac-man strategy|1 +(noun)|shark repellent|porcupine provision +paca|1 +(noun)|Cuniculus paca|rodent|gnawer|gnawing animal +pace|10 +(noun)|gait|rate +(noun)|footstep|step|stride|indefinite quantity +(noun)|rate|temporal property +(noun)|stride|tread|step +(noun)|tempo|rate +(noun)|yard|linear unit +(verb)|walk +(verb)|travel|go|move|locomote +(verb)|step|quantify|measure +(verb)|determine|shape|mold|influence|regulate +pace car|1 +(noun)|car|auto|automobile|machine|motorcar +pace lap|1 +(noun)|lap|circle|circuit +pacemaker|4 +(noun)|pacesetter|exemplar|example|model|good example +(noun)|cardiac pacemaker|sinoatrial node|SA node|cardiac muscle|heart muscle +(noun)|artificial pacemaker|electronic device +(noun)|pacer|pacesetter|racehorse|race horse|bangtail +pacer|2 +(noun)|pacemaker|pacesetter|racehorse|race horse|bangtail +(noun)|horse|Equus caballus +pacesetter|2 +(noun)|pacemaker|exemplar|example|model|good example +(noun)|pacer|pacemaker|racehorse|race horse|bangtail +pacha|1 +(noun)|pasha|authority +pachinko|1 +(noun)|pinball|pinball game +pachisi|1 +(noun)|board game +pachouli|2 +(noun)|patchouli|patchouly|Pogostemon cablin|shrub|bush +(noun)|patchouli|patchouly|perfume|essence +pachuco|1 +(noun)|adolescent|stripling|teenager +pachycephala|1 +(noun)|Pachycephala|genus Pachycephala|bird genus +pachycephalosaur|1 +(noun)|pachycephalosaurus|bone-headed dinosaur +pachycephalosaurus|1 +(noun)|pachycephalosaur|bone-headed dinosaur +pachycheilia|1 +(noun)|abnormality|abnormalcy|abnormal condition +pachyderm|1 +(noun)|placental|placental mammal|eutherian|eutherian mammal +pachyderma|1 +(noun)|nevoid elephantiasis|elephantiasis|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +pachydermal|1 +(adj)|pachydermatous|pachydermic|pachydermous|placental|placental mammal|eutherian|eutherian mammal +pachydermatous|2 +(adj)|pachydermal|pachydermic|pachydermous|placental|placental mammal|eutherian|eutherian mammal +(adj)|callous|thick-skinned|indurate|insensitive +pachydermic|1 +(adj)|pachydermatous|pachydermal|pachydermous|placental|placental mammal|eutherian|eutherian mammal +pachydermous|1 +(adj)|pachydermatous|pachydermal|pachydermic|placental|placental mammal|eutherian|eutherian mammal +pachyrhizus|1 +(noun)|Pachyrhizus|genus Pachyrhizus|rosid dicot genus +pachyrhizus erosus|1 +(noun)|yam bean|Pachyrhizus erosus|vine +pachyrhizus tuberosus|1 +(noun)|yam bean|potato bean|Pachyrhizus tuberosus|vine +pachysandra|1 +(noun)|subshrub|suffrutex +pachysandra procumbens|1 +(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra +pachysandra terminalis|1 +(noun)|Japanese spurge|Pachysandra terminalis|pachysandra +pachytene|1 +(noun)|phase|stage +pacific|4 +(adj)|peaceful +(adj)|Pacific|ocean +(adj)|peaceable|peaceful +(noun)|Pacific|Pacific Ocean|ocean +pacific bonito|1 +(noun)|Pacific bonito|Sarda lineolata|bonito +pacific bottlenose dolphin|1 +(noun)|Pacific bottlenose dolphin|Tursiops gilli|bottlenose dolphin|bottle-nosed dolphin|bottlenose +pacific coast|1 +(noun)|Pacific Coast|seashore|coast|seacoast|sea-coast +pacific cod|1 +(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod|codfish +pacific giant salamander|1 +(noun)|Pacific giant salamander|Dicamptodon ensatus|salamander +pacific halibut|1 +(noun)|Pacific halibut|Hippoglossus stenolepsis|righteye flounder|righteyed flounder +pacific hemlock|1 +(noun)|western hemlock|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock|hemlock tree +pacific herring|1 +(noun)|Pacific herring|Clupea harengus pallasii|herring|Clupea harangus +pacific newt|1 +(noun)|Pacific newt|newt|triton +pacific northwest|1 +(noun)|Pacific Northwest|geographical area|geographic area|geographical region|geographic region +pacific ocean|1 +(noun)|Pacific|Pacific Ocean|ocean +pacific plum|1 +(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum|plum tree +pacific ridley|1 +(noun)|Pacific ridley|olive ridley|Lepidochelys olivacea|ridley +pacific sardine|1 +(noun)|Pacific sardine|Sardinops caerulea|pilchard|sardine|Sardina pilchardus +pacific silver fir|1 +(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir +pacific spiny dogfish|1 +(noun)|Pacific spiny dogfish|Squalus suckleyi|spiny dogfish +pacific standard time|1 +(noun)|Pacific Time|Pacific Standard Time|PST|civil time|standard time|local time +pacific sturgeon|1 +(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon +pacific time|1 +(noun)|Pacific Time|Pacific Standard Time|PST|civil time|standard time|local time +pacific tree toad|1 +(noun)|Pacific tree toad|Hyla regilla|tree toad|tree frog|tree-frog +pacific tripletail|1 +(noun)|Pacific tripletail|Lobotes pacificus|tripletail +pacific walrus|1 +(noun)|Pacific walrus|Odobenus divergens|walrus|seahorse|sea horse +pacific yew|1 +(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew +pacifically|1 +(adv)|peaceably +pacification|3 +(noun)|mollification|appeasement|calming +(noun)|peace|peace treaty|treaty|pact|accord +(noun)|counterinsurgency|conflict|struggle|battle +pacificist|1 +(noun)|pacifist|disarmer|adult|grownup +pacifier|2 +(noun)|conciliator|make-peace|peacemaker|reconciler|mediator|go-between|intermediator|intermediary|intercessor +(noun)|comforter|baby's dummy|teething ring|device +pacifism|2 +(noun)|passivism|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|belief +pacifist|2 +(adj)|pacifistic|dovish|peaceful +(noun)|pacificist|disarmer|adult|grownup +pacifistic|1 +(adj)|pacifist|dovish|peaceful +pacify|2 +(verb)|lenify|conciliate|assuage|appease|mollify|placate|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|establish|give +pacifying|1 +(adj)|assuasive|calming|soothing|reassuring +pacing|2 +(noun)|tempo|musical time +(noun)|gait +pacinian corpuscle|1 +(noun)|Pacinian corpuscle|nerve ending|nerve end +pack|22 +(noun)|battalion|large number|multitude|plurality|large indefinite quantity|large indefinite amount +(noun)|collection|aggregation|accumulation|assemblage +(noun)|package|parcel +(noun)|gang|ring|mob|association +(noun)|clique|coterie|ingroup|inner circle|camp|set|circle|band|lot +(noun)|animal group +(noun)|face pack|corrective|restorative +(noun)|corrective|restorative +(noun)|bundle|sheaf +(verb)|encase|incase|case +(verb)|fill|fill up|make full +(verb)|bundle|wad|compact|arrange|set up +(verb)|transport|carry +(verb)|appoint|name|nominate|constitute +(verb)|carry|take|have|feature +(verb)|throng|mob|pile|jam|crowd|crowd together +(verb)|backpack|hike +(verb)|tamp down|tamp|compress|compact|pack together +(verb)|seal|seal off +(verb)|compact|be +(verb)|load down|load|lade|laden|load up +(verb)|treat|care for +pack animal|1 +(noun)|sumpter|beast of burden|jument +pack ice|1 +(noun)|Ice pack|ice +pack of cards|1 +(noun)|deck of cards|deck|pack +pack on|1 +(verb)|gain|put on +pack rat|3 +(noun)|magpie|scavenger|hoarder +(noun)|packrat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat|wood-rat +(noun)|packrat|collector|gatherer|accumulator +pack riding|1 +(noun)|riding|horseback riding +pack tent|1 +(noun)|backpacking tent|tent|collapsible shelter +pack together|1 +(verb)|compress|compact|wedge|squeeze|force +package|4 +(noun)|bundle|packet|parcel|collection|aggregation|accumulation|assemblage +(noun)|parcel|container +(noun)|software|software system|software package|code|computer code +(verb)|box|encase|incase|case +package bomb|1 +(noun)|letter bomb|parcel bomb|bomb +package holiday|1 +(noun)|package tour|tour|circuit +package store|1 +(noun)|liquor store|off-licence|shop|store +package tour|1 +(noun)|package holiday|tour|circuit +packaged|1 +(adj)|packaged |prepackaged|prepacked +packaged goods|1 +(noun)|grocery|foodstuff +packaging|3 +(noun)|commercial enterprise|business enterprise|business +(noun)|promotion|publicity|promotional material|message|content|subject matter|substance +(noun)|material +packaging company|1 +(noun)|packaging concern|company +packaging concern|1 +(noun)|packaging company|company +packed|2 +(adj)|jammed|jam-pawncked|crowded +(adj)|compact +packed cell volume|1 +(noun)|hematocrit|haematocrit|ratio +packed cells|1 +(noun)|blood cell|blood corpuscle|corpuscle +packer|3 +(noun)|bagger|boxer|workman|working man|working person +(noun)|meat packer|jobber|middleman|wholesaler +(noun)|backpacker|hiker|tramp|tramper +packera|1 +(noun)|Packera|genus Packera|asterid dicot genus +packera aurea|1 +(noun)|golden groundsel|golden ragwort|Packera aurea|Senecio aureus|herb|herbaceous plant +packet|4 +(noun)|package|bundle|parcel|collection|aggregation|accumulation|assemblage +(noun)|message +(noun)|package|parcel +(noun)|mailboat|mail boat|packet boat|boat +packet boat|1 +(noun)|mailboat|mail boat|packet|boat +packhorse|1 +(noun)|workhorse|pack animal|sumpter +packing|3 +(noun)|packing material|wadding|material|stuff +(noun)|boxing|enclosure|enclosing|envelopment|inclosure +(noun)|backpacking|carry +packing box|2 +(noun)|stuffing box|chamber +(noun)|packing case|crate +packing case|1 +(noun)|packing box|crate +packing material|1 +(noun)|packing|wadding|material|stuff +packing needle|1 +(noun)|needle +packing nut|1 +(noun)|stuffing nut|nut +packing plant|1 +(noun)|packinghouse|plant|works|industrial plant +packinghouse|2 +(noun)|building|edifice +(noun)|packing plant|plant|works|industrial plant +packman|1 +(noun)|peddler|pedlar|hawker|pitchman|seller|marketer|vender|vendor|trafficker +packrat|2 +(noun)|collector|gatherer|accumulator +(noun)|pack rat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat|wood-rat +packsack|1 +(noun)|backpack|back pack|knapsack|rucksack|haversack|bag +packsaddle|1 +(noun)|saddle +packthread|1 +(noun)|string|twine +pact|1 +(noun)|treaty|accord|written agreement +pad|11 +(noun)|pad of paper|tablet|paper +(noun)|leaf|leafage|foliage +(noun)|inkpad|inking pad|stamp pad|block +(noun)|padding|cushioning +(noun)|launching pad|launchpad|launch pad|launch area|platform +(noun)|diggings|digs|domiciliation|lodgings|living quarters|quarters +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(verb)|embroider|lard|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|slog|footslog|plod|trudge|tramp|walk +(verb)|fill out|stuff +(verb)|bolster|fill|fill up|make full +pad of paper|1 +(noun)|pad|tablet|paper +padauk|1 +(noun)|padouk|amboyna|Pterocarpus indicus|tree +padda|1 +(noun)|Padda|genus Padda|bird genus +padda oryzivora|1 +(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver|weaverbird|weaver finch +padded|1 +(adj)|cushioned|cushiony|soft +padder|1 +(noun)|footpad|highjacker|highwayman|hijacker|road agent +padding|1 +(noun)|cushioning|artifact|artefact +paddle|10 +(noun)|bat +(noun)|blade|vane +(noun)|instrument of punishment +(noun)|boat paddle|oar +(verb)|boat +(verb)|dabble|splash around|play +(verb)|swim +(verb)|toddle|coggle|totter|dodder|waddle|walk +(verb)|spank|larrup|beat|beat up|work over +(verb)|stir +paddle-box|2 +(noun)|paddle box|covering +(noun)| +paddle-wheeler|1 +(noun)|paddle steamer|steamer|steamship +paddle box|2 +(noun)|paddle-box|covering +(noun)| +paddle steamer|1 +(noun)|paddle-wheeler|steamer|steamship +paddle wheel|2 +(noun)|paddlewheel|wheel +(noun)| +paddlefish|1 +(noun)|duckbill|Polyodon spathula|ganoid|ganoid fish +paddler|1 +(noun)|canoeist|boatman|boater|waterman +paddlewheel|1 +(noun)|paddle wheel|wheel +paddock|1 +(noun)|pen +paddy|3 +(noun)|Paddy|Mick|Mickey|Irishman +(noun)|paddy field|rice paddy|field +(noun)|rice +paddy field|1 +(noun)|paddy|rice paddy|field +paddy wagon|1 +(noun)|police van|police wagon|patrol wagon|wagon|black Maria|van +paddymelon|1 +(noun)|pademelon|wallaby|brush kangaroo +pademelon|1 +(noun)|paddymelon|wallaby|brush kangaroo +paderewski|1 +(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist|piano player|statesman|solon|national leader +padlock|2 +(noun)|lock +(verb)|lock +padouk|1 +(noun)|padauk|amboyna|Pterocarpus indicus|tree +padova|1 +(noun)|Padua|Padova|Patavium|city|metropolis|urban center +padre|2 +(noun)|military chaplain|Holy Joe|sky pilot|chaplain +(noun)|Father|Padre|priest +padrone|2 +(noun)|host|innkeeper|boniface +(noun)|employer +padua|1 +(noun)|Padua|Padova|Patavium|city|metropolis|urban center +paducah|1 +(noun)|Paducah|town +paean|2 +(noun)|encomium|eulogy|panegyric|pean|praise|congratulations|kudos +(noun)|pean|hymn|anthem +paederast|1 +(noun)|pederast|child molester|pervert|deviant|deviate|degenerate +paederastic|1 +(adj)|pederastic|homosexual +paederasty|1 +(noun)|pederasty|homosexuality|homosexualism|homoeroticism|gayness|pedophilia|paedophilia +paediatric|1 +(adj)|pediatric|medicine|medical specialty +paediatrician|1 +(noun)|baby doctor|pediatrician|pediatrist|specialist|medical specialist +paediatrics|1 +(noun)|pediatrics|pediatric medicine|medicine|medical specialty +paedophile|1 +(noun)|pedophile|pervert|deviant|deviate|degenerate +paedophilia|1 +(noun)|pedophilia|paraphilia +paella|1 +(noun)|dish +paeonia|1 +(noun)|Paeonia|genus Paeonia|magnoliid dicot genus +paeoniaceae|1 +(noun)|Paeoniaceae|family Paeoniaceae|peony family|magnoliid dicot family +paeony|1 +(noun)|peony|flower +pagad|1 +(noun)|People against Gangsterism and Drugs|PAGAD|terrorist organization|terrorist group|foreign terrorist organization|FTO +pagan|2 +(adj)|heathen|heathenish|ethnic|irreligious +(noun)|heathen|gentile|infidel|nonreligious person +pagan religion|1 +(noun)|paganism|heathenism|religion|faith|religious belief +paganini|1 +(noun)|Paganini|Niccolo Paganini|violinist|fiddler +paganise|1 +(verb)|paganize|change|alter|modify +paganism|1 +(noun)|pagan religion|heathenism|religion|faith|religious belief +paganize|1 +(verb)|paganise|change|alter|modify +page|9 +(noun)|leaf|folio +(noun)|Page|Sri Frederick Handley Page|industrialist +(noun)|Page|Thomas Nelson Page|writer|author|diplomat|diplomatist +(noun)|pageboy|messenger boy|errand boy +(noun)|attendant|attender|tender +(noun)|varlet|attendant|attender|tender +(verb)|summon +(verb)|work +(verb)|foliate|paginate|number +page-at-a-time printer|1 +(noun)|page printer|printer|printing machine +page number|1 +(noun)|pagination|folio|paging|number +page printer|1 +(noun)|page-at-a-time printer|printer|printing machine +pageant|2 +(noun)|pageantry|representation +(noun)|pageantry|ceremony|ceremonial|ceremonial occasion|observance +pageantry|2 +(noun)|pageant|ceremony|ceremonial|ceremonial occasion|observance +(noun)|pageant|representation +pageboy|2 +(noun)|page|messenger boy|errand boy +(noun)|hairdo|hair style|coiffure +pagellus|1 +(noun)|Pagellus|genus Pagellus|fish genus +pagellus centrodontus|1 +(noun)|European sea bream|Pagellus centrodontus|sea bream|bream +pager|1 +(noun)|beeper|electronic device +paget|1 +(noun)|Paget|Sir James Paget|diagnostician|pathologist +paget's disease|1 +(noun)|Paget's disease|osteitis deformans|osteitis +paginate|1 +(verb)|foliate|page|number +pagination|1 +(noun)|folio|page number|paging|number +paging|2 +(noun)|utterance|vocalization +(noun)|pagination|folio|page number|number +pago pago|1 +(noun)|Pago Pago|Pango Pango|port +pagoda|1 +(noun)|temple +pagoda tree|2 +(noun)|West Indian jasmine|Plumeria alba|frangipani|frangipanni +(noun)|temple tree|Plumeria acutifolia|frangipani|frangipanni +pagophila|1 +(noun)|Pagophila|genus Pagophila|bird genus +pagophila eburnea|1 +(noun)|ivory gull|Pagophila eburnea|gull|seagull|sea gull +pagophilus|1 +(noun)|Pagophilus|genus Pagophilus|mammal genus +pagophilus groenlandicus|1 +(noun)|harp seal|Pagophilus groenlandicus|earless seal|true seal|hair seal +pagrus|1 +(noun)|Pagrus|genus Pagrus|fish genus +pagrus pagrus|1 +(noun)|red porgy|Pagrus pagrus|porgy +paguridae|1 +(noun)|Paguridae|family Paguridae|arthropod family +pagurus|1 +(noun)|Pagurus|genus Pagurus|arthropod genus +pahautea|1 +(noun)|Libocedrus bidwillii|mountain pine|cedar|cedar tree +pahlavi|3 +(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Palavi|Pahlevi|Mohammed Reza Pahlevi|Shah|Shah of Iran +(noun)|Pahlavi|Iranian|Iranian language +(noun)|Pahlavi|script +pahlevi|1 +(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Palavi|Pahlevi|Mohammed Reza Pahlevi|Shah|Shah of Iran +pahoehoe|1 +(noun)|lava +paid|3 +(adj)|paid |cashed|compensable|paying|remunerative|salaried|stipendiary|compensated|remunerated|salaried|stipendiary|mercenary|freelance|paid-up|post-free|postpaid|prepaid|reply-paid|square +(adj)|nonrecreational|professional +(adj)|gainful|paying|profitable +paid-up|1 +(adj)|paid +paid vacation|1 +(noun)|vacation|holiday +paige|1 +(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer|baseball player +paigle|2 +(noun)|oxlip|Primula elatior|primrose|primula +(noun)|cowslip|Primula veris|primrose|primula +pail|2 +(noun)|bucket|vessel +(noun)|pailful|containerful +pailful|1 +(noun)|pail|containerful +paillasse|1 +(noun)|palliasse|mattress +pain|7 +(noun)|hurting|symptom +(noun)|painfulness|feeling +(noun)|painful sensation|somesthesia|somaesthesia|somatesthesia|somatic sensation +(noun)|pain in the neck|nuisance|unpleasant person|disagreeable person +(noun)|annoyance|bother|botheration|infliction|pain in the neck|pain in the ass|negative stimulus +(verb)|afflict|trouble|ail|hurt +(verb)|anguish|hurt|upset|discompose|untune|disconcert|discomfit +pain-free|1 +(adj)|unpainful|painless +pain in the ass|1 +(noun)|annoyance|bother|botheration|pain|infliction|pain in the neck|negative stimulus +pain in the neck|2 +(noun)|pain|nuisance|unpleasant person|disagreeable person +(noun)|annoyance|bother|botheration|pain|infliction|pain in the ass|negative stimulus +pain pill|1 +(noun)|analgesic|anodyne|painkiller|medicine|medication|medicament|medicinal drug +pain threshold|1 +(noun)|absolute threshold +pain unit|1 +(noun)|unit of measurement|unit +paine|2 +(noun)|Paine|Robert Treat Paine|American Revolutionary leader +(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader|pamphleteer +pained|1 +(adj)|offended|displeased +painful|4 +(adj)|painful |aching|achy|agonized|agonised|agonizing|agonising|excruciating|harrowing|torturing|torturous|torturesome|burning|chafed|galled|poignant|racking|wrenching|saddle-sore|sensitive|sore|tender|smarting|traumatic|biting|bitter|prickling|stinging|tingling|harmful|inhumane|prickling|stinging|tingling +(adj)|afflictive|sore|unpleasant +(adj)|atrocious|abominable|awful|dreadful|terrible|unspeakable|bad +(adj)|irritating|uncomfortable +painful sensation|1 +(noun)|pain|somesthesia|somaesthesia|somatesthesia|somatic sensation +painfully|2 +(adv)|distressingly +(adv)|sorely +painfulness|1 +(noun)|pain|feeling +painkiller|1 +(noun)|analgesic|anodyne|pain pill|medicine|medication|medicament|medicinal drug +painless|3 +(adj)|easy +(adj)|painless |pain-free|unpainful|harmless +(adj)|humane +pains|6 +(noun)|striving|nisus|strain|attempt|effort|endeavor|endeavour|try +(noun)|pain|hurting|symptom +(noun)|pain|painfulness|feeling +(noun)|pain|painful sensation|somesthesia|somaesthesia|somatesthesia|somatic sensation +(noun)|pain|pain in the neck|nuisance|unpleasant person|disagreeable person +(noun)|annoyance|bother|botheration|pain|infliction|pain in the neck|pain in the ass|negative stimulus +painstaking|1 +(adj)|conscientious|scrupulous|careful +painstakingly|1 +(adv)|fastidiously +painstakingness|1 +(noun)|conscientiousness|carefulness +paint|7 +(noun)|coating|coat|coloring material|colouring material|color|colour +(noun)|key|space +(noun)|rouge|blusher|makeup|make-up|war paint +(verb)|create +(verb)|coat|surface +(verb)|represent|interpret +(verb)|cover +paint a picture|1 +(verb)|suggest|evoke|express|show|evince +paint leaf|1 +(noun)|Japanese poinsettia|mole plant|Euphorbia heterophylla|spurge +paint roller|1 +(noun)|roller +paint the lily|2 +(verb)|gild the lily|decorate|adorn|grace|ornament|embellish|beautify +(verb)|gild the lily|add +paintable|1 +(adj)|paintable +paintball|2 +(noun)|capsule +(noun)|outdoor game +paintball gun|1 +(noun)|air gun|airgun|air rifle|game equipment +paintbox|1 +(noun)|box +paintbrush|1 +(noun)|brush|applicator|applier +painted|5 +(adj)|delineated |represented|delineate +(adj)|painted |finished|stained|varnished|whitewashed|finished +(adj)|artificial |unreal +(adj)|painted |made-up|rouged +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +painted-leaf begonia|1 +(noun)|rex begonia|king begonia|beefsteak geranium|Begonia rex|begonia +painted beauty|1 +(noun)|Vanessa virginiensis|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +painted cup|1 +(noun)|Indian paintbrush|wildflower|wild flower +painted daisy|1 +(noun)|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower +painted desert|1 +(noun)|Painted Desert|desert +painted greenling|1 +(noun)|convict fish|convictfish|Oxylebius pictus|greenling +painted leaf|2 +(noun)|fire-on-the-mountain|Mexican fire plant|Euphorbia cyathophora|spurge +(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|Euphorbia pulcherrima|spurge +painted nettle|1 +(noun)|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus|flame nettle +painted sandgrouse|1 +(noun)|Pterocles indicus|sandgrouse|sand grouse +painted terrapin|1 +(noun)|painted turtle|painted tortoise|Chrysemys picta|turtle +painted tongue|1 +(noun)|Salpiglossis sinuata|salpiglossis +painted tortoise|1 +(noun)|painted turtle|painted terrapin|Chrysemys picta|turtle +painted turtle|1 +(noun)|painted terrapin|painted tortoise|Chrysemys picta|turtle +painter|4 +(noun)|artist|creative person +(noun)|skilled worker|trained worker +(noun)|line +(noun)|cougar|puma|catamount|mountain lion|panther|Felis concolor|wildcat +painter's colic|1 +(noun)|lead colic|colic|intestinal colic +painterly|1 +(adj)|aesthetic |esthetic|aesthetical|esthetical +painting|4 +(noun)|picture|graphic art +(noun)|art|artistic creation|artistic production|fine arts|beaux arts +(noun)|application|coating|covering +(noun)|house painting|trade|craft +pair|9 +(noun)|brace|set +(noun)|couple|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|gathering|assemblage +(noun)|poker hand +(verb)|pair off|partner off|couple|unite|unify +(verb)|match|mate|couple|twin|join|bring together +(verb)|geminate|occur +(verb)|geminate|arrange|set up +(verb)|copulate|mate|couple|join|conjoin +pair creation|1 +(noun)|pair production|pair formation|natural process|natural action|action|activity +pair formation|1 +(noun)|pair production|pair creation|natural process|natural action|action|activity +pair of pincers|1 +(noun)|pincer|tweezer|pair of tweezers|hand tool +pair of pliers|1 +(noun)|pliers|plyers|hand tool|compound lever +pair of scissors|1 +(noun)|scissors|edge tool|compound lever +pair of tongs|1 +(noun)|tongs|device +pair of tweezers|1 +(noun)|pincer|pair of pincers|tweezer|hand tool +pair of virginals|1 +(noun)|virginal|harpsichord|cembalo +pair off|1 +(verb)|pair|partner off|couple|unite|unify +pair production|1 +(noun)|pair creation|pair formation|natural process|natural action|action|activity +paired|3 +(adj)|mated|matched +(adj)|opposite +(adj)|mated +pairing|2 +(noun)|coupling|mating|conjugation|union|sexual union|sexual activity|sexual practice|sex|sex activity +(noun)|grouping +paisa|1 +(noun)|fractional monetary unit|subunit +paisley|1 +(noun)|fabric|cloth|material|textile +paiute|2 +(noun)|Paiute|Piute|Shoshone|Shoshoni +(noun)|Paiute|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language +paiwanic|1 +(noun)|Paiwanic|Formosan +pajamas|2 +(noun)|pyjamas|pj's|jammies|nightclothes|nightwear +(noun)|pyjamas|trousers|pants +pakchoi|1 +(noun)|bok choy|bok choi|Chinese white cabbage|Brassica rapa chinensis|crucifer|cruciferous plant +pakistan|1 +(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country|Asian nation +pakistani|2 +(adj)|Pakistani|Asian country|Asian nation +(noun)|Pakistani|Asian|Asiatic +pakistani monetary unit|1 +(noun)|Pakistani monetary unit|monetary unit +pakistani rupee|1 +(noun)|Pakistani rupee|rupee|Pakistani monetary unit +pal|2 +(noun)|buddy|brother|chum|crony|sidekick|friend +(verb)|pal up|chum up|befriend +pal up|1 +(verb)|pal|chum up|befriend +palace|4 +(noun)|castle|mansion|mansion house|manse|hall|residence +(noun)|government|authorities|regime +(noun)|exhibition hall|exhibition area +(noun)|residence +palace car|1 +(noun)|parlor car|parlour car|drawing-room car|chair car|passenger car|coach|carriage +palace of versailles|1 +(noun)|Versailles|Palace of Versailles|palace +paladin|1 +(noun)|champion|fighter|hero|defender|guardian|protector|shielder +palaeencephalon|1 +(noun)|paleencephalon|paleoencephalon|neural structure +palaemon|1 +(noun)|Palaemon|genus Palaemon|arthropod genus +palaemon australis|1 +(noun)|long-clawed prawn|river prawn|Palaemon australis|prawn +palaemonidae|1 +(noun)|Palaemonidae|family Palaemonidae|arthropod family +palaeoanthropology|1 +(noun)|paleoanthropology|human paleontology|human palaeontology|anthropology|vertebrate paleontology +palaeobiology|1 +(noun)|paleobiology|paleontology|palaeontology|fossilology|biology|biological science +palaeobotany|1 +(noun)|paleobotany|paleobiology|palaeobiology|botany|phytology +palaeoclimatology|1 +(noun)|paleoclimatology|archeology|archaeology +palaeodendrology|1 +(noun)|paleodendrology|paleobotany|palaeobotany +palaeoecology|1 +(noun)|paleoecology|ecology|bionomics|environmental science +palaeoethnography|1 +(noun)|paleoethnography|archeology|archaeology +palaeogeography|1 +(noun)|paleogeography|archeology|archaeology +palaeogeology|1 +(noun)|paleogeology|geology +palaeolithic|2 +(adj)|paleolithic|time period|period of time|period +(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period|period of time|period +palaeology|1 +(noun)|paleology|archeology|archaeology +palaeontological|1 +(adj)|paleontological|earth science +palaeontologist|1 +(noun)|paleontologist|fossilist|scientist|man of science +palaeontology|1 +(noun)|paleontology|fossilology|earth science +palaeopathology|1 +(noun)|paleopathology|archeology|archaeology|pathology +palaeornithology|1 +(noun)|paleornithology|paleozoology|palaeozoology +palaeozoology|1 +(noun)|paleozoology|paleobiology|palaeobiology|zoology|zoological science +palaestra|1 +(noun)|palestra|playing field|athletic field|playing area|field +palaetiology|1 +(noun)|paletiology|archeology|archaeology +palaic|1 +(noun)|Palaic|Anatolian|Anatolian language +palankeen|1 +(noun)|palanquin|litter +palanquin|1 +(noun)|palankeen|litter +palaquium|1 +(noun)|Palaquium|genus Palaquium|dicot genus|magnoliopsid genus +palaquium gutta|1 +(noun)|gutta-percha tree|Palaquium gutta|tree +palas|1 +(noun)|dhak|dak|Butea frondosa|Butea monosperma|tree +palatability|1 +(noun)|palatableness|taste property +palatable|1 +(adj)|palatable |appetizing|appetising|edible|comestible|eatable|tasteful +palatableness|1 +(noun)|palatability|taste property +palatal|3 +(adj)|palatine|surface +(adj)|palatalized|palatalised|soft +(noun)|semivowel|glide +palatalise|1 +(verb)|palatalize|pronounce|articulate|enounce|sound out|enunciate|say +palatalised|1 +(adj)|palatal|palatalized|soft +palatalize|1 +(verb)|palatalise|pronounce|articulate|enounce|sound out|enunciate|say +palatalized|1 +(adj)|palatal|palatalised|soft +palate|1 +(noun)|roof of the mouth|surface +palatial|2 +(adj)|residence +(adj)|impressive +palatinate|1 +(noun)|Palatinate|Pfalz|district|territory|territorial dominion|dominion +palatine|7 +(adj)|palatal|surface +(adj)|Lord|noble|nobleman +(adj)|residence +(noun)|Roman +(noun)|palsgrave|Lord|noble|nobleman +(noun)|Palatine|hill +(noun)|palatine bone|os palatinum|bone|os +palatine artery|1 +(noun)|arteria palatina|artery|arteria|arterial blood vessel +palatine bone|1 +(noun)|palatine|os palatinum|bone|os +palatine raphe|1 +(noun)|raphe|rhaphe +palatine tonsil|1 +(noun)|tonsil|faucial tonsil|tonsilla|lymphatic tissue|lymphoid tissue +palatine vein|1 +(noun)|vena palatina|vein|vena|venous blood vessel +palatoglossal|1 +(adj)|surface|organ|articulator +palatopharyngoplasty|1 +(noun)|PPP|uvulopalatopharyngoplasty|UPPP|operation|surgery|surgical operation|surgical procedure|surgical process +palau|2 +(noun)|Palau|Republic of Palau|TT|country|state|land +(noun)|Palau|Palau Islands|Belau|Pelew|archipelago +palau islands|1 +(noun)|Palau|Palau Islands|Belau|Pelew|archipelago +palaver|5 +(noun)|blandishment|cajolery|flattery +(noun)|hot air|empty words|empty talk|rhetoric|nonsense|bunk|nonsensicality|meaninglessness|hokum +(verb)|chatter|piffle|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +(verb)|wheedle|cajole|blarney|coax|sweet-talk|inveigle|persuade +(verb)|parley +pale|7 +(adj)|light |light-colored +(adj)|pallid|wan|weak +(adj)|pallid|colorless |colourless +(adj)|pallid|wan|colorless |colourless +(adj)|thin +(noun)|picket|strip +(verb)|blanch|blench|discolor|discolour|colour|color +pale ale|1 +(noun)|ale +pale chrysanthemum aphid|1 +(noun)|greenfly +pale coral root|1 +(noun)|early coral root|Corallorhiza trifida|coral root +pale violet|1 +(noun)|striped violet|cream violet|Viola striata|violet +pale yellow|1 +(noun)|straw|yellow|yellowness +paleacrita|1 +(noun)|Paleacrita|genus Paleacrita|arthropod genus +paleacrita vernata|1 +(noun)|Paleacrita vernata|geometrid|geometrid moth +paleencephalon|1 +(noun)|paleoencephalon|palaeencephalon|neural structure +paleface|1 +(noun)|White|white person|Caucasian +palely|1 +(adv)|pallidly|dimly +paleness|2 +(noun)|lividness|lividity|luridness|pallidness|pallor|wanness|achromasia|complexion|skin color|skin colour +(noun)|blondness|fairness|complexion|skin color|skin colour +paleo-american|1 +(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian|North American Indian|American Indian|Red Indian +paleo-american culture|1 +(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture|civilization|civilisation +paleo-amerind|1 +(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian|North American Indian|American Indian|Red Indian +paleo-amerind culture|1 +(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture|civilization|civilisation +paleo-indian|1 +(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian|North American Indian|American Indian|Red Indian +paleo-indian culture|1 +(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture|civilization|civilisation +paleoanthropological|1 +(adj)|anthropology|vertebrate paleontology +paleoanthropology|1 +(noun)|palaeoanthropology|human paleontology|human palaeontology|anthropology|vertebrate paleontology +paleobiology|1 +(noun)|palaeobiology|paleontology|palaeontology|fossilology|biology|biological science +paleobotany|1 +(noun)|palaeobotany|paleobiology|palaeobiology|botany|phytology +paleocene|1 +(noun)|Paleocene|Paleocene epoch|epoch +paleocene epoch|1 +(noun)|Paleocene|Paleocene epoch|epoch +paleocerebellum|1 +(noun)|neural structure +paleoclimatology|1 +(noun)|palaeoclimatology|archeology|archaeology +paleocortex|1 +(noun)|archipallium|cerebral cortex|cerebral mantle|pallium|cortex +paleocortical|1 +(adj)|cerebral cortex|cerebral mantle|pallium|cortex +paleodendrology|1 +(noun)|palaeodendrology|paleobotany|palaeobotany +paleoecology|1 +(noun)|palaeoecology|ecology|bionomics|environmental science +paleoencephalon|1 +(noun)|paleencephalon|palaeencephalon|neural structure +paleoethnography|1 +(noun)|palaeoethnography|archeology|archaeology +paleogeography|1 +(noun)|palaeogeography|archeology|archaeology +paleogeology|1 +(noun)|palaeogeology|geology +paleography|1 +(noun)|archeology|archaeology +paleolith|1 +(noun)|tool +paleolithic|2 +(adj)|palaeolithic|time period|period of time|period +(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period|period of time|period +paleolithic age|1 +(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period|period of time|period +paleology|1 +(noun)|palaeology|archeology|archaeology +paleomammalogy|1 +(noun)|paleozoology|palaeozoology +paleontological|1 +(adj)|palaeontological|earth science +paleontologist|1 +(noun)|palaeontologist|fossilist|scientist|man of science +paleontology|1 +(noun)|palaeontology|fossilology|earth science +paleopathology|1 +(noun)|palaeopathology|archeology|archaeology|pathology +paleornithology|1 +(noun)|palaeornithology|paleozoology|palaeozoology +paleostriatum|1 +(noun)|pallidum|globus pallidus|basal ganglion +paleozoic|1 +(noun)|Paleozoic|Paleozoic era|era|geological era +paleozoic era|1 +(noun)|Paleozoic|Paleozoic era|era|geological era +paleozoology|1 +(noun)|palaeozoology|paleobiology|palaeobiology|zoology|zoological science +palermo|1 +(noun)|Palermo|city|metropolis|urban center|port +palestine|2 +(noun)|Palestine|mandate|mandatory +(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area|geographic area|geographical region|geographic region +palestine authority|1 +(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit +palestine islamic jihad|1 +(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization|terrorist group|foreign terrorist organization|FTO +palestine liberation front|1 +(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization|terrorist group|foreign terrorist organization|FTO +palestine liberation organization|1 +(noun)|Palestine Liberation Organization|PLO|political movement +palestine national authority|1 +(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit +palestinian|3 +(adj)|Palestinian|mandate|mandatory +(noun)|Palestinian|Palestinian Arab|Arab|Arabian +(noun)|Palestinian|ethnic group|ethnos +palestinian arab|1 +(noun)|Palestinian|Palestinian Arab|Arab|Arabian +palestinian hizballah|1 +(noun)|Palestinian Hizballah|terrorist organization|terrorist group|foreign terrorist organization|FTO +palestinian islamic jihad|1 +(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization|terrorist group|foreign terrorist organization|FTO +palestinian national authority|1 +(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit +palestra|1 +(noun)|palaestra|playing field|athletic field|playing area|field +palestrina|1 +(noun)|Palestrina|Giovanni Pierluigi da Palestrina|composer +paletiology|1 +(noun)|palaetiology|archeology|archaeology +palette|3 +(noun)|pallet|scope|range|reach|orbit|compass|ambit +(noun)|pallet|board +(noun)|pallette|armor plate|armour plate|armor plating|plate armor|plate armour +palette knife|1 +(noun)|spatula +palfrey|1 +(noun)|saddle horse|riding horse|mount +palgrave|1 +(noun)|Palgrave|Francis Turner Palgrave|poet +pali|1 +(noun)|Pali|Prakrit +palilalia|1 +(noun)|pathology +palimony|1 +(noun)|support payment +palimpsest|1 +(noun)|manuscript|holograph +palindrome|1 +(noun)|word +paling|1 +(noun)|picket fence|fence|fencing +palingenesis|1 +(noun)|recapitulation|growth|growing|maturation|development|ontogeny|ontogenesis +palingenetic|1 +(adj)|palingenetic |growth|growing|maturation|development|ontogeny|ontogenesis +palinuridae|1 +(noun)|Palinuridae|family Palinuridae|arthropod family +palinurus|1 +(noun)|Palinurus|genus Palinurus|arthropod genus +palisade|2 +(noun)|fortification|munition +(verb)|wall|fence|fence in|surround|protect +palish|1 +(adj)|light |light-colored +paliurus|1 +(noun)|Paliurus|genus Paliurus|dicot genus|magnoliopsid genus +paliurus spina-christi|1 +(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub|bush +pall|11 +(noun)|chill|apprehension|apprehensiveness|dread +(noun)|shroud|cerement|winding-sheet|winding-clothes|burial garment +(noun)|curtain|drape|drapery|mantle|blind|screen|furnishings +(verb)|dull|change +(verb)|daunt|dash|scare off|frighten off|scare away|frighten away|scare|intimidate|restrain +(verb)|cover +(verb)|cloy|satiate|sate|replete|fill +(verb)|change|alter|modify +(verb)|die|become flat|change +(verb)|weaken +(verb)|tire|weary|fatigue|jade|devolve|deteriorate|drop|degenerate +pall-mall|2 +(noun)|game +(noun)|Pall Mall|street +pall mall|2 +(noun)|Pall Mall|street +(noun)|pall-mall|game +palladian|1 +(adj)|Palladian|architect|designer +palladio|1 +(noun)|Palladio|Andrea Palladio|architect|designer +palladium|1 +(noun)|Pd|atomic number 46|metallic element|metal +pallas|2 +(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity +(noun)|Pallas|asteroid|minor planet|planetoid +pallas's cat|1 +(noun)|manul|Pallas's cat|Felis manul|wildcat +pallas's sandgrouse|1 +(noun)|Syrrhaptes paradoxus|sandgrouse|sand grouse +pallas athena|1 +(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity +pallas athene|1 +(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity +pallasite|1 +(noun)|meteorite +pallbearer|1 +(noun)|bearer|mourner|griever|sorrower|lamenter +pallet|5 +(noun)|palette|scope|range|reach|orbit|compass|ambit +(noun)|platform +(noun)|hand tool +(noun)|mattress +(noun)|palette|board +pallette|1 +(noun)|palette|armor plate|armour plate|armor plating|plate armor|plate armour +palliasse|1 +(noun)|paillasse|mattress +palliate|2 +(verb)|extenuate|mitigate|apologize|apologise|excuse|justify|rationalize|rationalise +(verb)|relieve|alleviate|assuage|better|improve|amend|ameliorate|meliorate +palliation|2 +(noun)|easing|easement|alleviation|relief +(noun)|extenuation|mitigation|decrease|diminution|reduction|step-down +palliative|2 +(adj)|alleviative|alleviatory|lenitive|mitigative|mitigatory|moderating +(noun)|alleviant|alleviator|remedy|curative|cure +pallid|3 +(adj)|pale|wan|colorless |colourless +(adj)|pale|wan|weak +(adj)|pale|colorless |colourless +pallid bat|1 +(noun)|cave bat|Antrozous pallidus|vespertilian bat|vespertilionid +pallidly|1 +(adv)|palely|dimly +pallidness|1 +(noun)|lividness|lividity|luridness|paleness|pallor|wanness|achromasia|complexion|skin color|skin colour +pallidum|1 +(noun)|globus pallidus|paleostriatum|basal ganglion +pallium|4 +(noun)|cerebral cortex|cerebral mantle|cortex|neural structure +(noun)|mantle|epidermis|cuticle +(noun)|vestment +(noun)|cloak +pallone|1 +(noun)|court game +pallor|1 +(noun)|lividness|lividity|luridness|paleness|pallidness|wanness|achromasia|complexion|skin color|skin colour +pally|1 +(adj)|chummy|matey|palsy-walsy|friendly +palm|5 +(noun)|thenar|area|region +(noun)|linear unit +(noun)|palm tree|tree +(noun)|decoration|laurel wreath|medal|medallion|ribbon|award|accolade|honor|honour|laurels +(verb)|handle|touch +palm-shaped|1 +(adj)|palmate|compound +palm beach|1 +(noun)|Palm Beach|town +palm cat|1 +(noun)|palm civet|civet|civet cat +palm civet|1 +(noun)|palm cat|civet|civet cat +palm family|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|monocot family|liliopsid family +palm kernel|1 +(noun)|palm nut|nut +palm nut|1 +(noun)|palm kernel|nut +palm off|1 +(verb)|foist off|fob off|sell +palm oil|1 +(noun)|vegetable oil|oil +palm reading|1 +(noun)|palmistry|chiromancy|chirology|divination|foretelling|soothsaying|fortune telling +palm sunday|1 +(noun)|Palm Sunday|Christian holy day +palm tree|1 +(noun)|palm|tree +palma christ|1 +(noun)|castor-oil plant|castor bean plant|palma christi|Ricinus communis|shrub|bush +palma christi|1 +(noun)|castor-oil plant|castor bean plant|palma christ|Ricinus communis|shrub|bush +palmaceae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +palmae|1 +(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family|liliopsid family +palmales|1 +(noun)|Palmales|order Palmales|plant order +palmar|1 +(adj)|volar|area|region|area|region +palmate|2 +(adj)|webbed +(adj)|palm-shaped|compound +palmate leaf|1 +(noun)|compound leaf +palmatifid|1 +(adj)|compound +palmature|1 +(noun)|abnormality|abnormalcy|abnormal condition +palmer|1 +(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer|golf player|linksman +palmer peninsula|1 +(noun)|Antarctic Peninsula|Palmer Peninsula|peninsula +palmetto|1 +(noun)|fan palm +palmetto state|1 +(noun)|South Carolina|Palmetto State|SC|American state +palmist|1 +(noun)|palmister|chiromancer|fortuneteller|fortune teller +palmister|1 +(noun)|palmist|chiromancer|fortuneteller|fortune teller +palmistry|1 +(noun)|palm reading|chiromancy|chirology|divination|foretelling|soothsaying|fortune telling +palmitic acid|1 +(noun)|hexadecanoic acid|saturated fatty acid +palmitin|1 +(noun)|glyceryl ester +palmlike|1 +(adj)|branchless +palmy|1 +(adj)|booming|flourishing|prospering|prosperous|roaring|thriving|successful +palmyra|1 +(noun)|palmyra palm|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm +palmyra palm|1 +(noun)|palmyra|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm +palo alto|1 +(noun)|Palo Alto|town +palo santo|1 +(noun)|Bulnesia sarmienti|angiospermous tree|flowering tree +palo verde|2 +(noun)|Parkinsonia florida|Cercidium floridum|tree +(noun)|paloverde|shrub|bush +palometa|1 +(noun)|California pompano|Palometa simillima|butterfish|stromateid fish|stromateid +palometa simillima|1 +(noun)|palometa|California pompano|Palometa simillima|butterfish|stromateid fish|stromateid +palomino|1 +(noun)|horse|Equus caballus +palooka|1 +(noun)|stumblebum|boxer|pugilist +paloverde|1 +(noun)|shrub|bush +palpability|1 +(noun)|tangibility|tangibleness|materiality|physicalness|corporeality +palpable|2 +(adj)|palpable |tangible|obvious|perceptible|perceptible +(adj)|perceptible +palpate|1 +(verb)|feel|touch +palpation|1 +(noun)|tactual exploration|examination|scrutiny|touch|touching +palpatory|1 +(adj)|examination|scrutiny|touch|touching +palpebra|1 +(noun)|eyelid|lid|protective fold +palpebra conjunctiva|1 +(noun)|conjunctival layer of eyelids|tunica conjunctiva palpebrarum|conjunctiva +palpebrate|2 +(adj)|protective fold +(verb)|blink|wink|nictitate|nictate +palpebration|1 +(noun)|blink|eye blink|blinking|wink|winking|nictitation|nictation +palpitant|1 +(adj)|palpitating|unsteady +palpitate|3 +(verb)|shake|agitate +(verb)|quiver|quake|tremble +(verb)|flutter|beat|pound|thump +palpitating|1 +(adj)|palpitant|unsteady +palpitation|2 +(noun)|symptom +(noun)|shaking|shakiness|trembling|quiver|quivering|vibration|motion +palsgrave|1 +(noun)|palatine|Lord|noble|nobleman +palsied|1 +(adj)|unsteady +palsy|3 +(noun)|paralysis|dysfunction|disfunction +(noun)|symptom +(verb)|paralyze|paralyse +palsy-walsy|1 +(adj)|chummy|matey|pally|friendly +palter|1 +(verb)|beat around the bush|equivocate|tergiversate|prevaricate|misinform|mislead +paltering|1 +(noun)|fibbing|lying|prevarication|fabrication +paltriness|1 +(noun)|sorriness|worthlessness +paltry|2 +(adj)|negligible|trifling|worthless +(adj)|measly|miserable|meager |meagre|meagerly +pamelor|1 +(noun)|nortriptyline|Pamelor|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +pamlico|2 +(noun)|Pamlico|Algonquian|Algonquin +(noun)|Pamlico|Algonquian|Algonquin|Algonquian language +pampas|1 +(noun)|geographical area|geographic area|geographical region|geographic region +pampas grass|1 +(noun)|Cortaderia selloana|grass +pamper|1 +(verb)|featherbed|cosset|cocker|baby|coddle|mollycoddle|spoil|indulge|treat|handle|do by +pampered|1 +(adj)|coddled|spoiled|soft +pamperer|1 +(noun)|spoiler|coddler|mollycoddler|person|individual|someone|somebody|mortal|human|soul +pampering|2 +(adj)|indulgent +(noun)|indulgence|indulging|humoring|gratification +pamphlet|2 +(noun)|booklet|brochure|folder|leaflet|book +(noun)|tract|treatise +pamphleteer|1 +(noun)|writer|author +pan|7 +(noun)|cooking pan|cooking utensil|cookware +(noun)|Pan|the goat god|Greek deity +(noun)|container +(noun)|Pan|genus Pan|mammal genus +(verb)|travel|go|move|locomote +(verb)|pan out|pan off|wash +(verb)|tear apart|trash|disparage|belittle|pick at +pan-broil|1 +(verb)|broil|oven broil +pan-fry|1 +(verb)|fry +pan-hellenic|2 +(adj)|Panhellenic|Pan-Hellenic|principle +(adj)| +pan american day|1 +(noun)|Pan American Day|April 14|day +pan american union|1 +(noun)|Pan American Union|secretariat|secretariate +pan gravy|1 +(noun)|gravy +pan off|1 +(verb)|pan|pan out|wash +pan out|2 +(verb)|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|pan|pan off|wash +pan paniscus|1 +(noun)|pygmy chimpanzee|bonobo|Pan paniscus|chimpanzee|chimp|Pan troglodytes +pan roast|1 +(verb)|roast +pan troglodytes|1 +(noun)|chimpanzee|chimp|Pan troglodytes|great ape|pongid +pan troglodytes schweinfurthii|1 +(noun)|eastern chimpanzee|Pan troglodytes schweinfurthii|chimpanzee|chimp|Pan troglodytes +pan troglodytes troglodytes|1 +(noun)|central chimpanzee|Pan troglodytes troglodytes|chimpanzee|chimp|Pan troglodytes +pan troglodytes verus|1 +(noun)|western chimpanzee|Pan troglodytes verus|chimpanzee|chimp|Pan troglodytes +panacea|1 +(noun)|nostrum|cure-all|remedy|curative|cure +panache|2 +(noun)|dash|elan|flair|style|elegance +(noun)|plume +panadol|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +panama|2 +(noun)|Panama|Republic of Panama|Central American country|Central American nation +(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat|chapeau|lid +panama canal|1 +(noun)|Panama Canal|ship canal|shipway +panama canal zone|1 +(noun)|Panama Canal Zone|Canal Zone|zone +panama city|2 +(noun)|Panama City|town|port of entry|point of entry +(noun)|Panama City|capital of Panama|Panamanian capital|national capital +panama hat|1 +(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat|chapeau|lid +panama redwood|2 +(noun)|Panama redwood|quira|wood +(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira +panama redwood tree|1 +(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira +panama tree|1 +(noun)|Panama tree|Sterculia apetala|sterculia +panamanian|2 +(adj)|Panamanian|Central American country|Central American nation +(noun)|Panamanian|Central American +panamanian capital|1 +(noun)|Panama City|capital of Panama|Panamanian capital|national capital +panamanian monetary unit|1 +(noun)|Panamanian monetary unit|monetary unit +panamica|1 +(noun)|friendship plant|panamiga|Pilea involucrata|nettle +panamiga|1 +(noun)|friendship plant|panamica|Pilea involucrata|nettle +panatela|1 +(noun)|panetela|panetella|cigar +panax|1 +(noun)|Panax|genus Panax|rosid dicot genus +panax ginseng|1 +(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb|herbaceous plant +panax pseudoginseng|1 +(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb|herbaceous plant +panax quinquefolius|1 +(noun)|American ginseng|sang|Panax quinquefolius|herb|herbaceous plant +panax schinseng|1 +(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb|herbaceous plant +pancake|1 +(noun)|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake +pancake batter|1 +(noun)|batter +pancake day|1 +(noun)|Mardi Gras|Shrove Tuesday|Christian holy day +pancake turner|1 +(noun)|turner|food turner +pancake turtle|1 +(noun)|soft-shelled turtle|turtle +pancarditis|1 +(noun)|carditis +panchayat|1 +(noun)|panchayet|punchayet|council +panchayet|1 +(noun)|panchayat|punchayet|council +panchen lama|1 +(noun)|Panchen Lama|lama +pancho villa|1 +(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist|revolutionary|subversive|subverter +panchromatic film|1 +(noun)|film|photographic film +pancreas|1 +(noun)|exocrine gland|duct gland +pancreatectomy|1 +(noun)|ablation|extirpation|cutting out|excision +pancreatic|1 +(adj)|exocrine gland|duct gland +pancreatic artery|1 +(noun)|arteria pancreatica|artery|arteria|arterial blood vessel +pancreatic cancer|1 +(noun)|carcinoma +pancreatic duct|1 +(noun)|duct|epithelial duct|canal|channel +pancreatic fibrosis|1 +(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|mucoviscidosis|fibrosis|monogenic disorder|monogenic disease +pancreatic juice|1 +(noun)|digestive juice|digestive fluid +pancreatic vein|1 +(noun)|venae pancreatica|vein|vena|venous blood vessel +pancreatin|1 +(noun)|infusion|extract +pancreatitis|1 +(noun)|inflammation|redness|rubor +pancytopenia|1 +(noun)|cytopenia +panda|2 +(noun)|giant panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid +(noun)|lesser panda|red panda|bear cat|cat bear|Ailurus fulgens|procyonid +panda bear|1 +(noun)|giant panda|panda|coon bear|Ailuropoda melanoleuca|procyonid +panda car|1 +(noun)|cruiser|police cruiser|patrol car|police car|prowl car|squad car +pandanaceae|1 +(noun)|Pandanaceae|family Pandanaceae|screw-pine family|monocot family|liliopsid family +pandanales|1 +(noun)|Pandanales|order Pandanales|plant order +pandanus|2 +(noun)|natural fiber|natural fibre +(noun)|screw pine|tree +pandanus tectorius|1 +(noun)|textile screw pine|lauhala|Pandanus tectorius|pandanus|screw pine +pandar|1 +(noun)|pimp|procurer|panderer|pander|fancy man|ponce|wrongdoer|offender +pandean pipe|1 +(noun)|panpipe|syrinx|wind instrument|wind +pandemic|3 +(adj)|epidemic +(adj)|general +(noun)|epidemic +pandemonium|1 +(noun)|chaos|bedlam|topsy-turvydom|topsy-turvyness|confusion +pander|3 +(noun)|pimp|procurer|panderer|pandar|fancy man|ponce|wrongdoer|offender +(verb)|gratify|indulge|provide|supply|ply|cater +(verb)|pimp|procure|provide|supply|ply|cater +panderer|2 +(noun)|pimp|procurer|pander|pandar|fancy man|ponce|wrongdoer|offender +(noun)|bad person +pandiculation|1 +(noun)|stretch|stretching|yawn|yawning|oscitance|oscitancy +pandion|1 +(noun)|Pandion|genus Pandion|bird genus +pandion haliaetus|1 +(noun)|osprey|fish hawk|fish eagle|sea eagle|Pandion haliaetus|hawk +pandionidae|1 +(noun)|Pandionidae|family Pandionidae|bird family +pandora|1 +(noun)|Pandora|mythical being +pandora's box|1 +(noun)|Pandora's box|chest +pandowdy|1 +(noun)|dowdy|pastry +pandurate|1 +(adj)|panduriform|fiddle-shaped|simple |unsubdivided +pandurate leaf|1 +(noun)|panduriform leaf|simple leaf +panduriform|1 +(adj)|pandurate|fiddle-shaped|simple |unsubdivided +panduriform leaf|1 +(noun)|pandurate leaf|simple leaf +pane|3 +(noun)|pane of glass|window glass|plate glass|sheet glass +(noun)|paneling|panelling|panel +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|superman|window pane|Zen|lysergic acid diethylamide|LSD +pane of glass|1 +(noun)|pane|window glass|plate glass|sheet glass +panegyric|2 +(adj)|encomiastic|eulogistic|panegyrical|complimentary +(noun)|encomium|eulogy|paean|pean|praise|congratulations|kudos +panegyrical|1 +(adj)|encomiastic|eulogistic|panegyric|complimentary +panegyrist|1 +(noun)|eulogist|orator|speechmaker|rhetorician|public speaker|speechifier +panel|9 +(noun)|sheet|flat solid +(noun)|jury|committee|commission +(noun)|venire|body +(noun)|body +(noun)|pad +(noun)|dialog box|window +(noun)|control panel|instrument panel|control board|board|electrical device +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|empanel|impanel|choose|take|select|pick out +panel discussion|1 +(noun)|discussion|give-and-take|word +panel heating|1 +(noun)|heating system|heating plant|heating|heat +panel light|1 +(noun)|light|light source +panel truck|1 +(noun)|delivery truck|delivery van|van +paneled|1 +(adj)|wainscoted|adorned |decorated +paneling|1 +(noun)|panelling|pane|panel +panelist|1 +(noun)|panellist|critic +panelling|1 +(noun)|paneling|pane|panel +panellist|1 +(noun)|panelist|critic +panencephalitis|1 +(noun)|encephalitis|cephalitis|phrenitis +panetela|1 +(noun)|panatela|panetella|cigar +panetella|1 +(noun)|panatela|panetela|cigar +panfish|1 +(noun)|fish +pang|3 +(noun)|stab|twinge|feeling +(noun)|sting|pain|hurting +(noun)|pain|hurting +panga|1 +(noun)|machete|matchet|knife +pangaea|1 +(noun)|Pangaea|Pangea|continent +pangea|1 +(noun)|Pangaea|Pangea|continent +pangloss|1 +(noun)|Pangloss|fictional character|fictitious character|character +pango pango|1 +(noun)|Pago Pago|Pango Pango|port +pangolin|1 +(noun)|scaly anteater|anteater|placental|placental mammal|eutherian|eutherian mammal +panhandle|3 +(noun)|geographical area|geographic area|geographical region|geographic region +(noun)|handle|grip|handgrip|hold +(verb)|beg +panhandler|1 +(noun)|beggar|mendicant +panhellenic|1 +(adj)|Panhellenic|Pan-Hellenic|principle +panhysterectomy|1 +(noun)|radical hysterectomy|hysterectomy +panic|4 +(noun)|terror|fear|fearfulness|fright +(noun)|scare|anxiety|anxiousness +(verb)|fear|dread +(verb)|terrify|terrorize|terrorise +panic-stricken|1 +(adj)|panicky|panicked|panic-struck|terrified|frightened|afraid +panic-struck|1 +(adj)|panicky|panicked|panic-stricken|terrified|frightened|afraid +panic attack|1 +(noun)|scare|fear|fearfulness|fright +panic button|1 +(noun)|push button|push|button +panic disorder|1 +(noun)|anxiety disorder +panic grass|1 +(noun)|millet +panicked|1 +(adj)|panicky|panic-stricken|panic-struck|terrified|frightened|afraid +panicky|1 +(adj)|panicked|panic-stricken|panic-struck|terrified|frightened|afraid +panicle|1 +(noun)|raceme +panicled|1 +(adj)|raceme +panicled aster|1 +(noun)|aster +paniculate|1 +(adj)|raceme +panicum|1 +(noun)|Panicum|genus Panicum|monocot genus|liliopsid genus +panicum capillare|1 +(noun)|witchgrass|witch grass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass +panicum miliaceum|1 +(noun)|broomcorn millet|hog millet|Panicum miliaceum|panic grass +panicum texanum|1 +(noun)|goose grass|Texas millet|Panicum Texanum|panic grass +panicum virgatum|1 +(noun)|switch grass|Panicum virgatum|panic grass +panini|1 +(noun)|Panini|grammarian|syntactician +panipat|1 +(noun)|Panipat|battle of Panipat|pitched battle +panjabi|2 +(noun)|Punjabi|Panjabi|Indian +(noun)|Punjabi|Panjabi|Sanskrit|Sanskritic language +panjandrum|1 +(noun)|very important person|VIP|high-up|dignitary|high muckamuck|important person|influential person|personage +pannier|2 +(noun)|wicker basket +(noun)|hoop +pannikin|1 +(noun)|pan +panocha|1 +(noun)|penuche|penoche|panoche|fudge +panoche|1 +(noun)|penuche|penoche|panocha|fudge +panofsky|1 +(noun)|Panofsky|Erwin Panofsky|art historian +panonychus|1 +(noun)|Panonychus|genus Panonychus|arthropod genus +panonychus ulmi|1 +(noun)|red spider|red spider mite|Panonychus ulmi|spider mite|tetranychid +panoplied|2 +(adj)|armored|equipped |equipt +(adj)|arrayed|clothed |clad +panoply|1 +(noun)|array +panoptic|2 +(adj)|panoptical|visible |seeable +(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|wide|comprehensive +panoptical|1 +(adj)|panoptic|visible |seeable +panopticon|2 +(noun)|area +(noun)|prison|prison house +panorama|2 +(noun)|view|aspect|prospect|scene|vista|visual percept|visual image +(noun)|cyclorama|diorama|picture|image|icon|ikon +panoramic|1 +(adj)|bird's-eye|wide |broad +panoramic sight|1 +(noun)|gunsight|gun-sight +panoramic view|1 +(noun)|bird's eye view|position|view|perspective +panorpidae|1 +(noun)|Panorpidae|family Panorpidae|family +panpipe|1 +(noun)|pandean pipe|syrinx|wind instrument|wind +pansa|1 +(noun)|Pus|Pansa|Hindu calendar month +pansexual|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +pansinusitis|1 +(noun)|sinusitis +pansy|3 +(noun)|Viola tricolor hortensis|viola +(noun)|sissy|pantywaist|milksop|Milquetoast|coward +(noun)|fagot|faggot|fag|fairy|nance|queen|queer|poof|poove|pouf|gay man|shirtlifter +pansy orchid|1 +(noun)|orchid|orchidaceous plant +pansy violet|1 +(noun)|bird's-foot violet|Johnny-jump-up|wood violet|Viola pedata|violet +pant|4 +(noun)|noise +(noun)|gasp|inhalation|inspiration|aspiration|breathing in +(verb)|puff|gasp|heave|blow +(verb)|utter|emit|let out|let loose +pant-hoot|1 +(verb)|hoot +pant leg|1 +(noun)|trouser leg|leg +pantaloon|3 +(noun)|Pantaloon|clown|buffoon +(noun)|Pantaloon|fictional character|fictitious character|character +(noun)|trousers|pants +pantalooned|1 +(adj)|breeched|trousered|clothed |clad +pantechnicon|1 +(noun)|moving van +pantheism|2 +(noun)|theism +(noun)|theism +pantheist|2 +(adj)|pantheistic|theism +(noun)|believer|worshiper|worshipper +pantheistic|1 +(adj)|pantheist|theism +pantheon|3 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|memorial|monument +(noun)|temple +panther|3 +(noun)|jaguar|Panthera onca|Felis onca|big cat|cat +(noun)|leopard|Panthera pardus +(noun)|cougar|puma|catamount|mountain lion|painter|Felis concolor|wildcat +panther cat|1 +(noun)|ocelot|Felis pardalis|wildcat +panther lily|1 +(noun)|leopard lily|Lilium pardalinum|lily +panthera|1 +(noun)|Panthera|genus Panthera|mammal genus +panthera leo|1 +(noun)|lion|king of beasts|Panthera leo|big cat|cat +panthera onca|1 +(noun)|jaguar|panther|Panthera onca|Felis onca|big cat|cat +panthera pardus|1 +(noun)|leopard|Panthera pardus|big cat|cat +panthera tigris|1 +(noun)|tiger|Panthera tigris|big cat|cat +panthera uncia|1 +(noun)|snow leopard|ounce|Panthera uncia|big cat|cat +pantie|1 +(noun)|panty|scanty|step-in|underpants +pantile|1 +(noun)|tile|roofing tile +panting|3 +(adj)|blown|gasping|out of breath|pursy|short-winded|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +(noun)|heaving|breathing|external respiration|respiration|ventilation +(noun)|trousering|fabric|cloth|material|textile +pantingly|1 +(adv)|gaspingly +panto|1 +(noun)|mime|pantomime|dumb show +pantograph|1 +(noun)|mechanical device +pantomime|2 +(noun)|mime|dumb show|acting|playing|playacting|performing +(verb)|mime|act|play|roleplay|playact +pantomimer|1 +(noun)|mime|mimer|mummer|pantomimist|actor|histrion|player|thespian|role player +pantomimist|1 +(noun)|mime|mimer|mummer|pantomimer|actor|histrion|player|thespian|role player +pantothen|1 +(noun)|pantothenic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|acid +pantothenic acid|1 +(noun)|pantothen|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|acid +pantotheria|1 +(noun)|Pantotheria|subclass Pantotheria|class +pantropic|1 +(adj)|pantropical|equatorial +pantropical|1 +(adj)|pantropic|equatorial +pantry|1 +(noun)|larder|buttery|storeroom|storage room|stowage +pantryman|1 +(noun)|butler|manservant +pants|4 +(noun)|trousers|garment +(noun)|bloomers|drawers|knickers|underpants +(noun)|pant|noise +(noun)|gasp|pant|inhalation|inspiration|aspiration|breathing in +pants presser|1 +(noun)|trouser press|home appliance|household appliance +pants suit|1 +(noun)|slack suit +panty|1 +(noun)|pantie|scanty|step-in|underpants +panty girdle|1 +(noun)|corset|girdle|stays +pantyhose|1 +(noun)|tights|leotards +pantywaist|1 +(noun)|sissy|pansy|milksop|Milquetoast|coward +panzer|2 +(adj)|armored |armoured +(noun)|tank|army tank|armored combat vehicle|armoured combat vehicle +paola caliari|1 +(noun)|Veronese|Paolo Veronese|Paola Caliari|old master +paolo veronese|1 +(noun)|Veronese|Paolo Veronese|Paola Caliari|old master +pap|3 +(noun)|pablum|drivel|garbage +(noun)|soft diet|spoon food|diet +(noun)|nipple|mammilla|mamilla|teat|tit|reproductive organ|sex organ +pap smear|1 +(noun)|cervical smear|Pap smear|Papanicolaou smear|smear|cytologic smear|cytosmear +pap test|1 +(noun)|Pap test|Papanicolaou test|smear test|diagnostic test|diagnostic assay +papa|1 +(noun)|dad|dada|daddy|pa|pappa|pater|pop|father|male parent|begetter +papa doc|1 +(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator|potentate +papacy|1 +(noun)|pontificate|government|authorities|regime +papaia|1 +(noun)|papaya|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree +papain|1 +(noun)|enzyme +papal|1 +(adj)|apostolic|apostolical|pontifical|spiritual leader|Catholic +papal bull|1 +(noun)|bull|decree|edict|fiat|order|rescript +papal cross|1 +(noun)|cross +papal infallibility|1 +(noun)|Papal infallibility|infallibility +papal nuncio|1 +(noun)|nuncio|diplomat|diplomatist +papanicolaou smear|1 +(noun)|cervical smear|Pap smear|Papanicolaou smear|smear|cytologic smear|cytosmear +papanicolaou test|1 +(noun)|Pap test|Papanicolaou test|smear test|diagnostic test|diagnostic assay +paparazzo|1 +(noun)|photographer|lensman +papaver|1 +(noun)|Papaver|genus Papaver|dilleniid dicot genus +papaver alpinum|1 +(noun)|Iceland poppy|Papaver alpinum|poppy +papaver argemone|1 +(noun)|prickly poppy|Papaver argemone|poppy +papaver californicum|1 +(noun)|western poppy|Papaver californicum|poppy +papaver heterophyllum|1 +(noun)|wind poppy|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy +papaver nudicaule|1 +(noun)|Iceland poppy|arctic poppy|Papaver nudicaule|poppy +papaver orientale|1 +(noun)|oriental poppy|Papaver orientale|poppy +papaver rhoeas|1 +(noun)|corn poppy|field poppy|Flanders poppy|Papaver rhoeas|poppy +papaver somniferum|1 +(noun)|opium poppy|Papaver somniferum|poppy +papaveraceae|1 +(noun)|Papaveraceae|family Papaveraceae|poppy family|dilleniid dicot family +papaverales|1 +(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order +papaverine|1 +(noun)|Kavrin|muscle relaxant +papaw|2 +(noun)|pawpaw|papaw tree|Asimina triloba|custard apple|custard apple tree +(noun)|pawpaw|edible fruit +papaw tree|1 +(noun)|pawpaw|papaw|Asimina triloba|custard apple|custard apple tree +papaya|2 +(noun)|papaia|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree +(noun)|edible fruit +papaya family|1 +(noun)|Caricaceae|family Caricaceae|dilleniid dicot family +papaya juice|1 +(noun)|juice +papaya tree|1 +(noun)|papaya|papaia|pawpaw|melon tree|Carica papaya|fruit tree +papeete|1 +(noun)|Papeete|city|metropolis|urban center +paper|10 +(adj)|insubstantial |unsubstantial|unreal +(noun)|material|stuff +(noun)|composition|report|theme|essay|written assignment|writing assignment +(noun)|newspaper|press|public press +(noun)|article +(noun)|medium +(noun)|newspaper|newspaper publisher|publisher|publishing house|publishing firm|publishing company +(noun)|newspaper|product|production +(verb)|cover +(verb)|wallpaper|cover +paper-back book|1 +(noun)|paperback book|paperback|softback book|softback|soft-cover book|soft-cover|book|volume +paper-pusher|1 +(noun)|bureaucrat|administrative official|clerk +paper bag|1 +(noun)|sack|poke|carrier bag|bag +paper birch|1 +(noun)|American white birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch|birch tree +paper chain|1 +(noun)|chain +paper chase|1 +(noun)|hare and hounds|game +paper chromatography|1 +(noun)|chromatography +paper clip|2 +(noun)|paperclip|gem clip|clip +(noun)| +paper cup|1 +(noun)|Dixie cup|drinking cup|cup +paper currency|1 +(noun)|paper money|folding money|currency +paper cutter|1 +(noun)|cutting implement +paper doll|1 +(noun)|doll|dolly +paper electrophoresis|1 +(noun)|carrier electrophoresis|electrophoresis|cataphoresis|dielectrolysis|ionophoresis +paper fastener|1 +(noun)|fastener|fastening|holdfast|fixing +paper feed|1 +(noun)|device +paper flower|1 +(noun)|Bougainvillea glabra|bougainvillea +paper gold|1 +(noun)|special drawing rights|reserve assets +paper knife|2 +(noun)|letter opener|paperknife|knife +(noun)| +paper loss|1 +(noun)|loss|red ink|red +paper mill|1 +(noun)|factory|mill|manufacturing plant|manufactory +paper money|1 +(noun)|folding money|paper currency|currency +paper mulberry|1 +(noun)|Broussonetia papyrifera|angiospermous tree|flowering tree +paper nautilus|1 +(noun)|nautilus|Argonaut|Argonauta argo|octopod +paper plant|1 +(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|Cyperus papyrus|sedge +paper plate|1 +(noun)|plate +paper profit|1 +(noun)|gain +paper round|1 +(noun)|paper route|path|route|itinerary +paper route|2 +(noun)|paper round|path|route|itinerary +(noun)|employment|work +paper rush|1 +(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper plant|Cyperus papyrus|sedge +paper tape|1 +(noun)|paper +paper thin|1 +(adj)|thin +paper tiger|1 +(noun)|powerlessness|impotence|impotency +paper towel|1 +(noun)|towel +paper toweling|1 +(noun)|paper +paper trail|1 +(noun)|written record|written account +paper wasp|1 +(noun)|vespid|vespid wasp +paper white|1 +(noun)|Narcissus papyraceus|daffodil|Narcissus pseudonarcissus +paperback|2 +(adj)|paperbacked|bound +(noun)|paperback book|paper-back book|softback book|softback|soft-cover book|soft-cover|book|volume +paperback book|1 +(noun)|paper-back book|paperback|softback book|softback|soft-cover book|soft-cover|book|volume +paperbacked|1 +(adj)|paperback|bound +paperbark birch|1 +(noun)|American white birch|paper birch|canoe birch|Betula cordifolia|Betula papyrifera|birch|birch tree +paperboard|1 +(noun)|poster board|posterboard|cardboard|composition board +paperboy|1 +(noun)|deliveryman|delivery boy|deliverer +paperclip|1 +(noun)|paper clip|gem clip|clip +paperer|1 +(noun)|paperhanger|craftsman|artisan|journeyman|artificer +paperhanger|2 +(noun)|forger|counterfeiter +(noun)|paperer|craftsman|artisan|journeyman|artificer +paperhanging|1 +(noun)|papering|application|coating|covering +papering|1 +(noun)|paperhanging|application|coating|covering +paperknife|1 +(noun)|letter opener|paper knife|knife +paperlike|1 +(adj)|chartaceous|papery|material|stuff +papermaking|1 +(noun)|trade|craft +papers|8 +(noun)|document|written document|writing|written material|piece of writing +(noun)|paper|material|stuff +(noun)|composition|paper|report|theme|essay|written assignment|writing assignment +(noun)|newspaper|paper|press|public press +(noun)|paper|article +(noun)|paper|medium +(noun)|newspaper|paper|newspaper publisher|publisher|publishing house|publishing firm|publishing company +(noun)|newspaper|paper|product|production +paperweight|1 +(noun)|weight +paperwork|1 +(noun)|work +papery|2 +(adj)|thin +(adj)|chartaceous|paperlike|material|stuff +paphiopedilum|1 +(noun)|Paphiopedilum|genus Paphiopedilum|monocot genus|liliopsid genus +papier-mache|1 +(noun)|paper +papilionaceae|1 +(noun)|Papilionaceae|family Papilionacea|rosid dicot family +papilionoideae|1 +(noun)|Papilionoideae|subfamily Papilionoideae|rosid dicot family +papilla|2 +(noun)|process|outgrowth|appendage +(noun)|process|outgrowth|appendage +papillary|1 +(adj)|papillose|process|outgrowth|appendage +papillary muscle|1 +(noun)|cardiac muscle|heart muscle +papillary tumor|1 +(noun)|papilloma|villoma|papillary tumour|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +papillary tumour|1 +(noun)|papilloma|villoma|papillary tumor|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +papillate|1 +(adj)|process|outgrowth|appendage +papilledema|1 +(noun)|edema|oedema|hydrops|dropsy +papilliform|1 +(adj)|process|outgrowth|appendage +papilloma|1 +(noun)|villoma|papillary tumor|papillary tumour|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +papillon|1 +(noun)|toy spaniel +papillose|1 +(adj)|papillary|process|outgrowth|appendage +papio|1 +(noun)|Papio|genus Papio|mammal genus +papio ursinus|1 +(noun)|chacma|chacma baboon|Papio ursinus|baboon +papist|2 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papistic|papistical +(noun)|Roman Catholic +papistic|1 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papist|papistical +papistical|1 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papist|papistic +papoose|1 +(noun)|pappoose|baby|babe|infant +papoose root|2 +(noun)|blue cohosh|blueberry root|papooseroot|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +(noun)| +papooseroot|1 +(noun)|blue cohosh|blueberry root|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +papovavirus|1 +(noun)|animal virus +pappa|1 +(noun)|dad|dada|daddy|pa|papa|pater|pop|father|male parent|begetter +pappataci fever|1 +(noun)|sandfly fever|phlebotomus|disease +pappoose|1 +(noun)|papoose|baby|babe|infant +pappose|1 +(adj)|hairy |hirsute +pappus|1 +(noun)|calyx +paprika|2 +(noun)|sweet pepper|bell pepper|pimento|pimiento|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +paprika sauce|1 +(noun)|Hungarian sauce|sauce +paprilus|1 +(noun)|Paprilus|genus Paprilus|fish genus +paprilus alepidotus|1 +(noun)|harvestfish|Paprilus alepidotus|butterfish|stromateid fish|stromateid +papua|1 +(noun)|New Guinea|Papua|island +papua new guinea|1 +(noun)|Papua New Guinea|Independent State of Papua New Guinea|country|state|land +papuan|2 +(adj)|Papuan|island +(noun)|Papuan|Papuan language|natural language|tongue +papuan language|1 +(noun)|Papuan|Papuan language|natural language|tongue +papuan monetary unit|1 +(noun)|Papuan monetary unit|monetary unit +papule|1 +(noun)|pimple|hickey +papulovesicle|1 +(noun)|vesicopapule|papule +papyrus|3 +(noun)|paper +(noun)|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge +(noun)|document|written document|papers +par|3 +(noun)|score +(noun)|equality|equivalence|equation|status|position +(verb)|score|hit|tally|rack up +par value|1 +(noun)|face value|nominal value|value +para|5 +(noun)|parity|pregnancy|gestation|maternity +(noun)|Yugoslavian monetary unit +(noun)|paratrooper|soldier +(noun)|Para|Para River|estuary +(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city|metropolis|urban center|port +para aminobenzoic acid|1 +(noun)|PABA|acid +para i|1 +(noun)|primipara|para I|mother|female parent +para river|1 +(noun)|Para|Para River|estuary +para rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc +para rubber tree|1 +(noun)|caoutchouc tree|Hevea brasiliensis|angiospermous tree|flowering tree +parable|2 +(noun)|fable|allegory|apologue|story +(noun)|story +parabola|1 +(noun)|conic section|conic +parabolic|2 +(adj)|parabolical|story +(adj)|parabolical|rounded +parabolic geometry|1 +(noun)|elementary geometry|Euclidean geometry|geometry +parabolic mirror|1 +(noun)|parabolic reflector|paraboloid reflector +parabolic reflector|1 +(noun)|paraboloid reflector|reflector +parabolical|2 +(adj)|parabolic|story +(adj)|parabolic|rounded +paraboloid|1 +(noun)|plane figure|two-dimensional figure +paraboloid reflector|1 +(noun)|parabolic reflector|reflector +paraboloidal|1 +(adj)|rounded +paracelsus|1 +(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor|doc|physician|MD|Dr.|medico +paracentesis|1 +(noun)|abdominocentesis|centesis +paracentral scotoma|1 +(noun)|scotoma +paracervical block|1 +(noun)|regional anesthesia|regional anaesthesia +paracheirodon|1 +(noun)|Paracheirodon|genus Paracheirodon|fish genus +paracheirodon axelrodi|1 +(noun)|cardinal tetra|Paracheirodon axelrodi|characin|characin fish|characid +parachute|2 +(noun)|chute|rescue equipment +(verb)|jump|dive|plunge|plunk +parachute jumper|1 +(noun)|parachutist|parachuter|adventurer|venturer +parachuter|1 +(noun)|parachutist|parachute jumper|adventurer|venturer +parachuting|1 +(noun)|jump|descent +parachutist|1 +(noun)|parachuter|parachute jumper|adventurer|venturer +paracosm|1 +(noun)|fantasy world|phantasy world|fairyland +parade|5 +(noun)|procession +(noun)|succession +(noun)|display|exhibit|showing +(verb)|exhibit|march|walk +(verb)|troop|promenade|march|process +parade ground|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +parader|1 +(noun)|marcher|pedestrian|walker|footer +paradiddle|1 +(noun)|roll|drum roll|sound +paradigm|4 +(noun)|inflection|inflexion +(noun)|prototype|epitome|image|model|example +(noun)|substitution class|class|category|family +(noun)|position|view|perspective +paradigmatic|3 +(adj)|inflection|inflexion +(adj)|model|example +(adj)|paradigmatic |class|category|family +paradisaeidae|1 +(noun)|Paradisaeidae|family Paradisaeidae|bird family +paradisaic|2 +(adj)|paradisiacal|paradisiac|paradisaical|paradisal|heavenly +(adj)|elysian|paradisiacal|paradisiac|paradisaical|paradisal|paradisial|happy +paradisaical|2 +(adj)|paradisiacal|paradisiac|paradisaic|paradisal|heavenly +(adj)|elysian|paradisiacal|paradisiac|paradisaic|paradisal|paradisial|happy +paradisal|2 +(adj)|paradisiacal|paradisiac|paradisaical|paradisaic|heavenly +(adj)|elysian|paradisiacal|paradisiac|paradisaical|paradisaic|paradisial|happy +paradise|2 +(noun)|eden|nirvana|heaven|promised land|Shangri-la|region|part +(noun)|Paradise|Heaven +paradise flower|1 +(noun)|pride of barbados|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub +paradise tree|1 +(noun)|bitterwood|Simarouba glauca|bitterwood tree +paradisea liliastrum|1 +(noun)|St.-Bruno's-lily|Paradisea liliastrum|spiderwort|dayflower +paradisiac|2 +(adj)|paradisiacal|paradisaical|paradisaic|paradisal|heavenly +(adj)|elysian|paradisiacal|paradisaical|paradisaic|paradisal|paradisial|happy +paradisiacal|2 +(adj)|paradisiac|paradisaical|paradisaic|paradisal|heavenly +(adj)|elysian|paradisiac|paradisaical|paradisaic|paradisal|paradisial|happy +paradisial|1 +(adj)|elysian|paradisiacal|paradisiac|paradisaical|paradisaic|paradisal|happy +paradox|1 +(noun)|contradiction|contradiction in terms +paradoxical|1 +(adj)|self-contradictory|inexplicable |incomprehensible +paradoxical sleep|1 +(noun)|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep|slumber +paradoxurus|1 +(noun)|Paradoxurus|genus Paradoxurus|mammal genus +paraduodenal smear|1 +(noun)|duodenal smear|alimentary tract smear +paraesthesia|1 +(noun)|paresthesia|symptom +paraffin|3 +(noun)|paraffin wax|wax +(noun)|methane series|alkane series|alkane|aliphatic compound +(noun)|paraffin oil|kerosene|kerosine|lamp oil|coal oil +paraffin oil|1 +(noun)|paraffin|kerosene|kerosine|lamp oil|coal oil +paraffin scale|1 +(noun)|scale wax|wax +paraffin wax|1 +(noun)|paraffin|wax +parafovea|1 +(noun)|area|region +paragon|2 +(noun)|idol|perfection|beau ideal|ideal +(noun)|ideal|nonpareil|saint|apotheosis|nonesuch|nonsuch|model|role model +paragonite|1 +(noun)|mica|isinglass +paragraph|4 +(noun)|writing|written material|piece of writing +(verb)|divide|split|split up|separate|dissever|carve up +(verb)|write|compose|pen|indite +(verb)|write|compose|pen|indite +paragrapher|1 +(noun)|writer|author +paraguay|1 +(noun)|Paraguay|Republic of Paraguay|South American country|South American nation +paraguay tea|1 +(noun)|mate|Paraguay tea|Ilex paraguariensis|holly +paraguayan|2 +(adj)|Paraguayan|South American country|South American nation +(noun)|Paraguayan|South American +paraguayan monetary unit|1 +(noun)|Paraguayan monetary unit|monetary unit +parainfluenza virus|1 +(noun)|adenovirus +parakeet|1 +(noun)|parrakeet|parroket|paraquet|paroquet|parroquet|parrot +paralanguage|1 +(noun)|paralinguistic communication|communication +paraldehyde|1 +(noun)|ethanal trimer|aldehyde +paralegal|1 +(noun)|legal assistant|paraprofessional +paraleipsis|1 +(noun)|paralepsis|paralipsis|preterition|rhetorical device +paralepsis|1 +(noun)|paraleipsis|paralipsis|preterition|rhetorical device +paralichthys|1 +(noun)|Paralichthys|genus Paralichthys|fish genus +paralichthys dentatus|1 +(noun)|summer flounder|Paralichthys dentatus|lefteye flounder|lefteyed flounder +paralichthys lethostigmus|1 +(noun)|southern flounder|Paralichthys lethostigmus|lefteye flounder|lefteyed flounder +paralinguistic communication|1 +(noun)|paralanguage|communication +paralipomenon|1 +(noun)|Paralipomenon|sacred text|sacred writing|religious writing|religious text +paralipsis|1 +(noun)|paralepsis|paraleipsis|preterition|rhetorical device +paralithodes|1 +(noun)|Paralithodes|genus Paralithodes|arthropod genus +paralithodes camtschatica|1 +(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab +parallax|1 +(noun)|optical phenomenon +parallel|7 +(adj)|parallel |antiparallel|collateral|nonconvergent|nonintersecting|comparable|symmetrical|symmetric +(adj)|synchronous |synchronal|synchronic +(noun)|analogue|analog|similarity +(noun)|latitude|line of latitude|parallel of latitude|line +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|collimate|change|alter|modify +(verb)|twin|duplicate|match|fit|correspond|check|jibe|gibe|tally|agree +parallel-park|1 +(verb)|park +parallel bars|1 +(noun)|bars|gymnastic apparatus|exerciser +parallel circuit|1 +(noun)|shunt circuit|closed circuit|loop +parallel interface|1 +(noun)|parallel port|interface|port +parallel lives|1 +(noun)|Parallel Lives|biography|life|life story|life history +parallel of latitude|1 +(noun)|latitude|line of latitude|parallel|line +parallel operation|1 +(noun)|simultaneous operation|operation +parallel port|1 +(noun)|parallel interface|interface|port +parallel processing|1 +(noun)|multiprocessing|data processing +parallelepiped|1 +(noun)|parallelopiped|parallelepipedon|parallelopipedon|prism +parallelepipedon|1 +(noun)|parallelepiped|parallelopiped|parallelopipedon|prism +parallelism|1 +(noun)|correspondence|similarity +parallelize|1 +(verb)|put|set|place|pose|position|lay +parallelogram|1 +(noun)|quadrilateral|quadrangle|tetragon +parallelopiped|1 +(noun)|parallelepiped|parallelepipedon|parallelopipedon|prism +parallelopipedon|1 +(noun)|parallelepiped|parallelopiped|parallelepipedon|prism +paralogism|1 +(noun)|fallacy|false belief +paralyse|2 +(verb)|paralyze|inactivate|deactivate +(verb)|paralyze|immobilize|immobilise +paralysis|1 +(noun)|palsy|dysfunction|disfunction +paralysis agitans|1 +(noun)|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder|encephalopathy|brain disease|degenerative disorder +paralytic|3 +(adj)|paralytical|dysfunction|disfunction +(adj)|paralyzed|unfit +(noun)|handicapped person +paralytic abasia|1 +(noun)|abasia +paralytical|1 +(adj)|paralytic|dysfunction|disfunction +paralyze|2 +(verb)|paralyse|inactivate|deactivate +(verb)|paralyse|immobilize|immobilise +paralyzed|1 +(adj)|paralytic|unfit +paramagnet|1 +(noun)|magnet +paramagnetic|1 +(adj)|magnet +paramagnetism|1 +(noun)|magnetism|magnetic attraction|magnetic force +paramaribo|1 +(noun)|Paramaribo|capital of Suriname|national capital|port +paramecia|2 +(noun)|paramecium|ciliate|ciliated protozoan|ciliophoran +(noun)|paramecium|ciliate|ciliated protozoan|ciliophoran +paramecium|1 +(noun)|paramecia|ciliate|ciliated protozoan|ciliophoran +paramedic|1 +(noun)|paramedical|paraprofessional +paramedical|2 +(adj)|paraprofessional +(noun)|paramedic|paraprofessional +parameter|3 +(noun)|parametric quantity|constant|constant quantity +(noun)|factor +(noun)|quantity +parametric|1 +(adj)|constant|constant quantity +parametric quantity|1 +(noun)|parameter|constant|constant quantity +parametric statistic|1 +(noun)|statistic +parametritis|1 +(noun)|inflammation|redness|rubor +paramilitary|2 +(adj)|force|personnel +(noun)|paramilitary force|paramilitary unit|paramilitary organization|paramilitary organisation|force|personnel +paramilitary force|1 +(noun)|paramilitary|paramilitary unit|paramilitary organization|paramilitary organisation|force|personnel +paramilitary organisation|1 +(noun)|paramilitary|paramilitary force|paramilitary unit|paramilitary organization|force|personnel +paramilitary organization|1 +(noun)|paramilitary|paramilitary force|paramilitary unit|paramilitary organisation|force|personnel +paramilitary unit|1 +(noun)|paramilitary|paramilitary force|paramilitary organization|paramilitary organisation|force|personnel +paramnesia|1 +(noun)|cognitive state|state of mind +paramount|1 +(adj)|overriding|predominant|predominate|preponderant|preponderating|dominant +paramountcy|1 +(noun)|dominion|rule +paramour|2 +(noun)|fancy man|lover +(noun)|concubine|courtesan|doxy|odalisque|mistress|kept woman|fancy woman +paramyxovirus|1 +(noun)|myxovirus +parana|1 +(noun)|Parana|Parana River|river +parana river|1 +(noun)|Parana|Parana River|river +paranasal|1 +(adj)|cavity|bodily cavity|cavum +paranasal sinus|1 +(noun)|sinus paranasales|nasal sinus|sinus +parang|1 +(noun)|knife +paranoia|1 +(noun)|psychosis +paranoiac|1 +(noun)|paranoid|psychotic|psychotic person|psycho +paranoic type schizophrenia|1 +(noun)|paranoid schizophrenia|paraphrenic schizophrenia|paraphrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +paranoid|2 +(adj)|insane +(noun)|paranoiac|psychotic|psychotic person|psycho +paranoid schizophrenia|1 +(noun)|paranoic type schizophrenia|paraphrenic schizophrenia|paraphrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +paranormal|2 +(adj)|extrasensory |clairvoyant|telegnostic|telepathic +(adj)|paranormal |parapsychological|psychic|psychical|psychokinetic|supernormal|supranormal|extrasensory|unnatural +paranthias|1 +(noun)|Paranthias|genus Paranthias|fish genus +paranthias furcifer|1 +(noun)|creole-fish|Paranthias furcifer|grouper +paranthropus|1 +(noun)|Paranthropus|genus Paranthropus|australopithecine +paraparesis|1 +(noun)|paresis +parapet|2 +(noun)|wall +(noun)|breastwork|fortification|munition +paraph|1 +(noun)|flourish +paraphernalia|1 +(noun)|gear|appurtenances|equipment +paraphilia|1 +(noun)|perversion|sexual perversion +paraphrase|2 +(noun)|paraphrasis|rewording|recasting|rephrasing +(verb)|rephrase|reword|repeat|reiterate|ingeminate|iterate|restate|retell +paraphrasis|1 +(noun)|paraphrase|rewording|recasting|rephrasing +paraphrastic|1 +(adj)|altered +paraphrenia|1 +(noun)|paranoid schizophrenia|paranoic type schizophrenia|paraphrenic schizophrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +paraphrenic schizophrenia|1 +(noun)|paranoid schizophrenia|paranoic type schizophrenia|paraphrenia|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +paraphysis|1 +(noun)|fibril|filament|strand +paraplegia|1 +(noun)|paralysis|palsy +paraplegic|2 +(adj)|unfit +(noun)|handicapped person +parapodium|1 +(noun)|extremity|appendage|member +parapraxis|1 +(noun)|slip|slip-up|miscue|mistake|error|fault +paraprofessional|1 +(noun)|assistant|helper|help|supporter +parapsychological|1 +(adj)|paranormal +parapsychologist|1 +(noun)|psychologist +parapsychology|1 +(noun)|psychic phenomena|psychic phenomenon|psychic communication|psychical communication|anomalous communication +paraquat|1 +(noun)|herbicide|weedkiller|weed killer +paraquat poisoning|1 +(noun)|poisoning|toxic condition|intoxication +paraquet|1 +(noun)|parakeet|parrakeet|parroket|paroquet|parroquet|parrot +parasail|1 +(noun)|parachute|chute +parasailing|1 +(noun)|glide|gliding|sailplaning|soaring|sailing +parascalops|1 +(noun)|Parascalops|genus Parascalops|mammal genus +parascalops breweri|1 +(noun)|brewer's mole|hair-tailed mole|Parascalops breweri|mole +parashurama|1 +(noun)|Parashurama|Rama +parasitaemia|1 +(noun)|parasitemia|blood disease|blood disorder +parasitaxus|1 +(noun)|Parasitaxus|genus Parasitaxus|gymnosperm genus +parasitaxus ustus|1 +(noun)|parasite yew|Parasitaxus ustus|parasitic plant +parasite|2 +(noun)|organism|being +(noun)|leech|sponge|sponger|follower +parasite yew|1 +(noun)|Parasitaxus ustus|parasitic plant +parasitemia|1 +(noun)|parasitaemia|blood disease|blood disorder +parasitic|3 +(adj)|parasitical|organism|being +(adj)|epenthetic|articulation +(adj)|parasitical|leechlike|bloodsucking|dependent +parasitic jaeger|1 +(noun)|arctic skua|Stercorarius parasiticus|jaeger +parasitic plant|1 +(noun)|parasite +parasitic worm|1 +(noun)|helminth|worm +parasitical|2 +(adj)|parasitic|organism|being +(adj)|parasitic|leechlike|bloodsucking|dependent +parasiticidal|1 +(adj)|anthelmintic|anthelminthic|helminthic|healthful +parasitism|1 +(noun)|mutuality|interdependence|interdependency +parasol|1 +(noun)|sunshade|shade +parasol mushroom|1 +(noun)|Lepiota procera|agaric +parasympathetic|2 +(adj)|nervous system|systema nervosum +(noun)|parasympathetic nervous system|nervous system|systema nervosum +parasympathetic nervous system|1 +(noun)|parasympathetic|nervous system|systema nervosum +parasympathomimetic|1 +(adj)|nervous system|systema nervosum +parathelypteris|1 +(noun)|Parathelypteris|genus Parathelypteris|fern genus +parathelypteris novae-boracensis|1 +(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern +parathelypteris simulata|1 +(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern +parathion|1 +(noun)|insecticide|insect powder +parathion poisoning|1 +(noun)|pesticide poisoning +parathormone|1 +(noun)|parathyroid hormone|hormone|endocrine|internal secretion +parathyroid|1 +(noun)|parathyroid gland|endocrine gland|endocrine|ductless gland +parathyroid gland|1 +(noun)|parathyroid|endocrine gland|endocrine|ductless gland +parathyroid hormone|1 +(noun)|parathormone|hormone|endocrine|internal secretion +paratrooper|1 +(noun)|para|soldier +paratroops|1 +(noun)|infantry|foot +paratyphoid|1 +(noun)|paratyphoid fever|infectious disease +paratyphoid fever|1 +(noun)|paratyphoid|infectious disease +paraumbilical vein|1 +(noun)|vena paraumbilicalis|vein|vena|venous blood vessel +parazoa|2 +(noun)|Parazoa|subkingdom Parazoa|subkingdom +(noun)|sponge|poriferan|parazoan|invertebrate +parazoan|1 +(noun)|sponge|poriferan|invertebrate +parboil|1 +(verb)|blanch|cook +parcae|1 +(noun)|Parcae|Roman deity +parcel|7 +(noun)|package|container +(noun)|portion|share|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +(noun)|tract|piece of land|piece of ground|parcel of land|geographical area|geographic area|geographical region|geographic region +(noun)|package|bundle|packet|collection|aggregation|accumulation|assemblage +(verb)|divide|split|split up|separate|dissever|carve up +(verb)|cover +(verb)|wrap|wrap up +parcel bomb|1 +(noun)|letter bomb|package bomb|bomb +parcel of land|1 +(noun)|tract|piece of land|piece of ground|parcel|geographical area|geographic area|geographical region|geographic region +parcel out|1 +(verb)|distribute|administer|mete out|deal|lot|dispense|shell out|deal out|dish out|allot|dole out|give +parcel post|1 +(noun)|mail +parceled out|1 +(adj)|apportioned|dealt out|doled out|meted out|distributed +parceling|1 +(noun)|allotment|apportionment|apportioning|allocation|parcelling|assignation|distribution +parcellation|1 +(noun)|division +parcelling|1 +(noun)|allotment|apportionment|apportioning|allocation|parceling|assignation|distribution +parch|1 +(verb)|sear|dry|dry out +parched|2 +(adj)|adust|baked|scorched|sunbaked|dry +(adj)|cooked +parcheesi|1 +(noun)|Parcheesi|pachisi +parchment|2 +(noun)|paper +(noun)|sheepskin|lambskin|animal skin +pardner|1 +(noun)|collaborator|cooperator|partner|associate +pardon|5 +(noun)|forgiveness|kindness|benignity +(noun)|amnesty|warrant +(noun)|amnesty|free pardon|clemency|mercifulness|mercy +(verb)|excuse|forgive +(verb)|forgive +pardonable|1 +(adj)|pardonable |excusable|forgivable|venial|expiable|minor|venial +pardonably|1 +(adv)|excusably|forgivably +pardoner|2 +(noun)|forgiver|excuser|person|individual|someone|somebody|mortal|human|soul +(noun)|cleric|churchman|divine|ecclesiastic +pare|4 +(verb)|pare down|decrease|lessen|minify +(verb)|whittle|cut +(verb)|skin|peel|strip +(verb)|trim|cut +pare down|1 +(verb)|pare|decrease|lessen|minify +paregmenon|1 +(noun)|rhetorical device +paregoric|1 +(noun)|camphorated tincture of opium|medicine|medication|medicament|medicinal drug +parenchyma|2 +(noun)|animal tissue +(noun)|plant tissue +parent|2 +(noun)|genitor +(verb)|rear|raise|bring up|nurture +parentage|3 +(noun)|parenthood|adulthood +(noun)|birth|kinship|family relationship|relationship +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|stemma|stock|genealogy|family tree +parental|2 +(adj)|parental |genitor +(adj)|parental |maternal|paternal +parental quality|1 +(noun)|quality +parented|1 +(adj)|parented |fostered +parenteral|1 +(adj)|duct|epithelial duct|canal|channel +parenthesis|2 +(noun)|punctuation|punctuation mark +(noun)|digression|aside|excursus|divagation|message|content|subject matter|substance +parenthesis-free notation|1 +(noun)|mathematical notation +parenthetic|2 +(adj)|parenthetical|message|content|subject matter|substance +(adj)|parenthetical|incidental |incident +parenthetical|3 +(adj)|parenthetic|message|content|subject matter|substance +(adj)|parenthetic|incidental |incident +(noun)|parenthetical expression|adjunct +parenthetical expression|1 +(noun)|parenthetical|adjunct +parenthood|1 +(noun)|parentage|adulthood +parentless|1 +(adj)|unparented |orphan|orphaned|fatherless|motherless +parer|2 +(noun)|manicurist +(noun)|paring knife|knife +paresis|1 +(noun)|paralysis|palsy +paresthesia|1 +(noun)|paraesthesia|symptom +paretic|1 +(noun)|paralytic +pareto|1 +(noun)|Pareto|Vilfredo Pareto|sociologist|economist|economic expert +pareve|1 +(adj)|parve|edible |comestible|eatable +parfait|1 +(noun)|frozen dessert +parfait glass|1 +(noun)|glass|drinking glass +parget|2 +(noun)|pargeting|pargetting|plaster +(verb)|plaster|daub +pargeting|3 +(noun)|parget|pargetting|plaster +(noun)|pargetting|pargetry|plaster|plasterwork +(noun)|pargetting|plastering|daubing +pargetry|1 +(noun)|pargeting|pargetting|plaster|plasterwork +pargetting|3 +(noun)|parget|pargeting|plaster +(noun)|pargeting|pargetry|plaster|plasterwork +(noun)|pargeting|plastering|daubing +parheliacal|1 +(adj)|parhelic|topographic point|place|spot +parhelic|1 +(adj)|parheliacal|topographic point|place|spot +parhelic circle|1 +(noun)|solar halo|parhelic ring|halo +parhelic ring|1 +(noun)|solar halo|parhelic circle|halo +parhelion|1 +(noun)|mock sun|sundog|topographic point|place|spot +pari-mutuel machine|1 +(noun)|totalizer|totaliser|totalizator|totalisator|computer|computing machine|computing device|data processor|electronic computer|information processing system +pari passu|1 +(adv)|at an equal rate +pariah|1 +(noun)|outcast|castaway|Ishmael|unfortunate|unfortunate person +pariah dog|1 +(noun)|pye-dog|pie-dog|cur|mongrel|mutt +paridae|1 +(noun)|Paridae|family Paridae|bird family +paries|1 +(noun)|wall|stratum +parietal|1 +(adj)|membrane bone +parietal bone|1 +(noun)|membrane bone +parietal gyrus|1 +(noun)|gyrus|convolution +parietal lobe|1 +(noun)|lobe +parietal pericardium|1 +(noun)|serous membrane|serosa +parietal placentation|1 +(noun)|placentation +parietal pleura|1 +(noun)|pleura +parietales|1 +(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order +parietaria|1 +(noun)|Parietaria|genus Parietaria|dicot genus|magnoliopsid genus +parietaria difussa|1 +(noun)|pellitory-of-the-wall|wall pellitory|pellitory|Parietaria difussa|herb|herbaceous plant +parieto-occipital fissure|1 +(noun)|parieto-occipital sulcus|sulcus +parieto-occipital sulcus|1 +(noun)|parieto-occipital fissure|sulcus +parietomastoid suture|1 +(noun)|suture|sutura|fibrous joint +parimutuel|1 +(noun)|bet|wager +paring|2 +(noun)|sliver|shaving|fragment +(noun)|object|physical object +paring knife|1 +(noun)|parer|knife +paripinnate|1 +(adj)|even-pinnate|abruptly-pinnate|compound +paris|3 +(noun)|Paris|City of Light|French capital|capital of France|national capital +(noun)|Paris|genus Paris|plant genus +(noun)|Paris|town +paris daisy|1 +(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub|suffrutex +paris green|2 +(noun)|Paris green|double salt|pigment|insecticide|insect powder +(noun)|yellow green|yellowish green|chartreuse|Paris green|pea green|green|greenness|viridity +paris quadrifolia|1 +(noun)|herb Paris|Paris quadrifolia|herb|herbaceous plant +paris university|1 +(noun)|Paris University|University of Paris|Sorbonne|university +parish|2 +(noun)|community +(noun)|jurisdiction +parishioner|1 +(noun)|churchgoer|church member +parisian|2 +(adj)|Parisian|national capital +(noun)|Parisian|Frenchman|Frenchwoman|French person +parisology|1 +(noun)|ambiguity +parity|5 +(noun)|para|pregnancy|gestation|maternity +(noun)|mathematical relation +(noun)|parity bit|check bit|bit +(noun)|conservation of parity|space-reflection symmetry|mirror symmetry|conservation +(noun)|equivalence +parity bit|1 +(noun)|parity|check bit|bit +parity check|1 +(noun)|redundant check|odd-even check|confirmation|verification|check|substantiation +parjanya|1 +(noun)|Parjanya|Hindu deity +parji|1 +(noun)|Parji|Central Dravidian +park|8 +(noun)|parkland|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|commons|common|green|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|ballpark|stadium|bowl|arena|sports stadium +(noun)|Park|Mungo Park|explorer|adventurer +(noun)|parking lot|car park|parking area|lot +(noun)|gear|gear mechanism +(verb)|put|set|place|pose|position|lay +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +park ave.|1 +(noun)|Park Avenue|Park Ave.|street +park avenue|1 +(noun)|Park Avenue|Park Ave.|street +park bench|1 +(noun)|bench +park commissioner|1 +(noun)|commissioner +parka|1 +(noun)|windbreaker|windcheater|anorak|jacket +parka squirrel|1 +(noun)|Arctic ground squirrel|Citellus parryi|ground squirrel|gopher|spermophile +parked|1 +(adj)|put|set|place|pose|position|lay +parker|2 +(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist|saxist +(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer|author +parker house roll|1 +(noun)|Parker House roll|bun|roll +parkeriaceae|1 +(noun)|Parkeriaceae|family Parkeriaceae|fern family +parkersburg|1 +(noun)|Parkersburg|city|metropolis|urban center +parkia|1 +(noun)|Parkia|genus Parkia|rosid dicot genus +parkia javanica|1 +(noun)|Parkia javanica|nitta tree +parking|2 +(noun)|room|way|elbow room +(noun)|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +parking area|1 +(noun)|parking lot|car park|park|lot +parking brake|1 +(noun)|hand brake|emergency|emergency brake|brake +parking lot|1 +(noun)|car park|park|parking area|lot +parking meter|1 +(noun)|timer +parking space|1 +(noun)|parking zone|space +parking ticket|1 +(noun)|ticket +parking zone|1 +(noun)|parking space|space +parkinson|2 +(noun)|Parkinson|James Parkinson|surgeon|operating surgeon|sawbones +(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian|historiographer +parkinson's|1 +(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder|encephalopathy|brain disease|degenerative disorder +parkinson's disease|1 +(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder|encephalopathy|brain disease|degenerative disorder +parkinson's law|2 +(noun)|Parkinson's law|observation|reflection|reflexion +(noun)|Parkinson's law|observation|reflection|reflexion +parkinson's syndrome|1 +(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder|encephalopathy|brain disease|degenerative disorder +parkinsonia|1 +(noun)|Parkinsonia|genus Parkinsonia|rosid dicot genus +parkinsonia aculeata|1 +(noun)|Jerusalem thorn|horsebean|Parkinsonia aculeata|shrub|bush +parkinsonia florida|1 +(noun)|palo verde|Parkinsonia florida|Cercidium floridum|tree +parkinsonism|1 +(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder|encephalopathy|brain disease|degenerative disorder +parkland|1 +(noun)|park|tract|piece of land|piece of ground|parcel of land|parcel +parks|7 +(noun)|Parks|Rosa Parks|civil rights leader|civil rights worker|civil rights activist +(noun)|park|parkland|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|park|commons|common|green|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|ballpark|park|stadium|bowl|arena|sports stadium +(noun)|Park|Mungo Park|explorer|adventurer +(noun)|parking lot|car park|park|parking area|lot +(noun)|park|gear|gear mechanism +parkway|1 +(noun)|drive|road|route +parky|1 +(adj)|crisp|frosty|nipping|nippy|snappy|cold +parlance|1 +(noun)|idiom|formulation|expression +parlay|1 +(verb)|double up|bet on|back|gage|stake|game|punt +parley|2 +(noun)|negotiation|dialogue|talks +(verb)|negociate +parliament|2 +(noun)|legislature|legislative assembly|general assembly|law-makers +(noun)|fantan|sevens|card game|cards +parliamentarian|2 +(noun)|Parliamentarian|Member of Parliament|legislator +(noun)|expert +parliamentary|3 +(adj)|legislature|legislative assembly|general assembly|law-makers +(adj)|democratic +(adj)|democratic +parliamentary agent|1 +(noun)|agent +parliamentary democracy|1 +(noun)|democracy|republic|commonwealth +parliamentary law|1 +(noun)|order|rules of order|parliamentary procedure|rule|prescript +parliamentary monarchy|1 +(noun)|monarchy +parliamentary procedure|1 +(noun)|order|rules of order|parliamentary law|rule|prescript +parlor|2 +(noun)|parlour|reception room +(noun)|living room|living-room|sitting room|front room|parlour|room +parlor car|1 +(noun)|parlour car|drawing-room car|palace car|chair car|passenger car|coach|carriage +parlor game|1 +(noun)|parlour game|game +parlor grand|1 +(noun)|baby grand|baby grand piano|parlor grand piano|parlour grand|parlour grand piano|grand piano|grand +parlor grand piano|1 +(noun)|baby grand|baby grand piano|parlor grand|parlour grand|parlour grand piano|grand piano|grand +parlormaid|1 +(noun)|parlourmaid|maid|maidservant|housemaid|amah +parlour|2 +(noun)|parlor|reception room +(noun)|living room|living-room|sitting room|front room|parlor|room +parlour car|1 +(noun)|parlor car|drawing-room car|palace car|chair car|passenger car|coach|carriage +parlour game|1 +(noun)|parlor game|game +parlour grand|1 +(noun)|baby grand|baby grand piano|parlor grand|parlor grand piano|parlour grand piano|grand piano|grand +parlour grand piano|1 +(noun)|baby grand|baby grand piano|parlor grand|parlor grand piano|parlour grand|grand piano|grand +parlourmaid|1 +(noun)|parlormaid|maid|maidservant|housemaid|amah +parlous|1 +(adj)|perilous|precarious|touch-and-go|dangerous |unsafe +parmelia|1 +(noun)|Parmelia|genus Parmelia|fungus genus +parmeliaceae|1 +(noun)|Parmeliaceae|family Parmeliaceae|fungus family +parmenides|1 +(noun)|Parmenides|philosopher +parmesan|1 +(noun)|Parmesan|cheese +parnahiba|1 +(noun)|Parnaiba|Parnahiba|river +parnaiba|1 +(noun)|Parnaiba|Parnahiba|river +parnassia|1 +(noun)|grass-of-Parnassus|marsh plant|bog plant|swamp plant +parnassia fimbriata|1 +(noun)|fringed grass of Parnassus|Parnassia fimbriata|wildflower|wild flower +parnassia palustris|1 +(noun)|bog star|Parnassia palustris|parnassia|grass-of-Parnassus +parnassus|1 +(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak +parnell|1 +(noun)|Parnell|Charles Stewart Parnell|nationalist leader +parochetus|1 +(noun)|Parochetus|genus Parochetus|rosid dicot genus +parochetus communis|1 +(noun)|shamrock pea|Parochetus communis|herb|herbaceous plant +parochial|2 +(adj)|jurisdiction +(adj)|insular|provincial +parochial school|1 +(noun)|church school|religious school +parochialism|1 +(noun)|narrow-mindedness|narrowness +parodist|1 +(noun)|lampooner|humorist|humourist +parody|4 +(noun)|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(noun)|mockery|takeoff|apery|mimicry +(verb)|act|play|represent +(verb)|spoof|burlesque|mock +paroicous|1 +(adj)|monoecious |monecious|monoicous +parol evidence rule|1 +(noun)|rule of evidence +parole|4 +(noun)|word|word of honor|promise +(noun)|password|watchword|word|countersign|positive identification|secret|arcanum +(noun)|liberation|release|freeing +(verb)|free|liberate|release|unloose|unloosen|loose +parolee|1 +(noun)|probationer|criminal|felon|crook|outlaw|malefactor +paronomasia|1 +(noun)|pun|punning|wordplay|fun|play|sport +paronychia|2 +(noun)|infection +(noun)|Paronychia|genus Paronychia|caryophylloid dicot genus +parophrys|1 +(noun)|Parophrys|genus Parophrys|fish genus +parophrys vitulus|1 +(noun)|English sole|lemon sole|Parophrys vitulus|sole +paroquet|1 +(noun)|parakeet|parrakeet|parroket|paraquet|parroquet|parrot +parosamia|1 +(noun)|dysosmia|ofactory impairment|disorder|upset +parotid|1 +(adj)|salivary gland +parotid gland|1 +(noun)|salivary gland +parotid vein|1 +(noun)|vein|vena|venous blood vessel +parotitis|1 +(noun)|inflammation|redness|rubor +parous|1 +(adj)|pregnancy|gestation|maternity +parousia|1 +(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation +paroxetime|1 +(noun)|Paxil|selective-serotonin reuptake inhibitor|SSRI +paroxysm|1 +(noun)|fit|convulsion|attack +paroxysmal|1 +(adj)|attack +paroxysmal trepidant abasia|1 +(noun)|abasia +paroxytone|1 +(noun)|word +parquet|2 +(noun)|parquet floor|floor|flooring +(noun)|seating|seats|seating room|seating area +parquet circle|1 +(noun)|parterre|seating|seats|seating room|seating area +parquet floor|1 +(noun)|parquet|floor|flooring +parqueterie|1 +(noun)|parquetry|inlay|floor cover|floor covering +parquetry|1 +(noun)|parqueterie|inlay|floor cover|floor covering +parr|3 +(noun)|Parr|Catherine Parr|queen +(noun)|young fish +(noun)|young fish +parrakeet|1 +(noun)|parakeet|parroket|paraquet|paroquet|parroquet|parrot +parricide|2 +(noun)|murderer|liquidator|manslayer +(noun)|murder|slaying|execution +parrish|1 +(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter +parroket|1 +(noun)|parakeet|parrakeet|paraquet|paroquet|parroquet|parrot +parroquet|1 +(noun)|parakeet|parrakeet|parroket|paraquet|paroquet|parrot +parrot|3 +(noun)|bird +(noun)|copycat|imitator|emulator|ape|aper +(verb)|repeat|echo +parrot's beak|1 +(noun)|parrot's bill|Clianthus puniceus|glory pea|clianthus +parrot's bill|1 +(noun)|parrot's beak|Clianthus puniceus|glory pea|clianthus +parrot disease|1 +(noun)|psittacosis|animal disease +parrot fever|1 +(noun)|psittacosis|ornithosis|atypical pneumonia|primary atypical pneumonia|mycoplasmal pneumonia +parrotfish|1 +(noun)|polly fish|pollyfish|percoid fish|percoid|percoidean +parrotia|1 +(noun)|Parrotia|genus Parrotia|plant genus +parrotiopsis|1 +(noun)|Parrotiopsis|genus Parrotiopsis|plant genus +parrotlike|1 +(adj)|imitative +parry|3 +(noun)|counterpunch|counter|punch|clout|poke|lick|biff +(verb)|block|deflect|fence +(verb)|hedge|fudge|evade|put off|circumvent|elude|skirt|dodge|duck|sidestep|avoid +parry's penstemon|1 +(noun)|Parry's penstemon|Penstemon parryi|wildflower|wild flower +parry's pinyon|1 +(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon|pinyon +parry manzanita|1 +(noun)|Parry manzanita|Arctostaphylos manzanita|manzanita +pars anterior|1 +(noun)|pars distilis|endocrine gland|endocrine|ductless gland +pars distilis|1 +(noun)|pars anterior|endocrine gland|endocrine|ductless gland +pars intermedia|1 +(noun)|endocrine gland|endocrine|ductless gland +pars nervosa|1 +(noun)|posterior pituitary|posterior pituitary gland|neurohypophysis|endocrine gland|endocrine|ductless gland +parse|1 +(verb)|analyze|analyse|break down|dissect|take apart +parsec|1 +(noun)|secpar|astronomy unit +parsee|1 +(noun)|Parsee|Parsi|religionist|religious person +parseeism|1 +(noun)|Parsiism|Parseeism|Zoroastrianism|Mazdaism +parser|1 +(noun)|program|programme|computer program|computer programme +parsi|1 +(noun)|Parsee|Parsi|religionist|religious person +parsiism|1 +(noun)|Parsiism|Parseeism|Zoroastrianism|Mazdaism +parsimonious|1 +(adj)|penurious|stingy |ungenerous +parsimoniousness|2 +(noun)|parsimony|thrift|penny-pinching|frugality|frugalness +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|tightness|tightfistedness|closeness|stinginess +parsimony|2 +(noun)|parsimoniousness|thrift|penny-pinching|frugality|frugalness +(noun)|meanness|minginess|niggardliness|niggardness|parsimoniousness|tightness|tightfistedness|closeness|stinginess +parsley|2 +(noun)|Petroselinum crispum|herb|herbaceous plant +(noun)|herb +parsley-leaved thorn|1 +(noun)|parsley haw|Crataegus apiifolia|Crataegus marshallii|hawthorn|haw +parsley haw|1 +(noun)|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn|haw +parsnip|3 +(noun)|root +(noun)|Pastinaca sativa|herb|herbaceous plant +(noun)|root vegetable +parson|1 +(noun)|curate|minister|pastor|rector|clergyman|reverend|man of the cloth +parson's nose|1 +(noun)|pope's nose|helping|portion|serving +parsonage|1 +(noun)|vicarage|rectory|residence +parsons|2 +(noun)|Parsons|Talcott Parsons|sociologist +(noun)|curate|minister|parson|pastor|rector|clergyman|reverend|man of the cloth +parsons table|1 +(noun)|Parsons table|table +part|18 +(noun)|portion|component part|component|relation +(noun)|region|location +(noun)|concern +(noun)|portion|object|physical object +(noun)|section|division|concept|conception|construct +(noun)|function|office|role|duty +(noun)|piece|thing +(noun)|character|role|theatrical role|persona|portrayal|characterization|enactment|personation +(noun)|share|portion|percentage|assets +(noun)|contribution|share|attempt|effort|endeavor|endeavour|try +(noun)|voice|tune|melody|air|strain|melodic line|line|melodic phrase +(noun)|line +(verb)|separate|split|move +(verb)|separate|split up|split|break|break up +(verb)|depart|start|start out|set forth|set off|set out|take off|leave|go forth|go away|part with +(verb)|separate|divide|change +(verb)|separate|disunite|divide|move|displace +(adv)|partially|partly +part-owner|1 +(noun)|owner|possessor +part-singing|1 +(noun)|singing|vocalizing +part-time|2 +(adj)|part-time |half-time|irregular|temporary|odd-job|underemployed +(adv)|half-time +part-timer|1 +(noun)|worker +part music|1 +(noun)|music +part name|1 +(noun)|meronym|word +part of speech|1 +(noun)|form class|word class|grammatical category|syntactic category +part to whole relation|1 +(noun)|meronymy|semantic relation +part with|1 +(verb)|spare|give up|dispense with|give +partake|3 +(verb)|share +(verb)|share|partake in|get|acquire +(verb)|touch|consume|ingest|take in|take|have +partake in|2 +(verb)|participate|take part +(verb)|partake|share|get|acquire +partaker|1 +(noun)|sharer|participant +parted|1 +(adj)|compound +parted leaf|1 +(noun)|leaf|leafage|foliage +parterre|2 +(noun)|flower garden +(noun)|parquet circle|seating|seats|seating room|seating area +parthenium|1 +(noun)|Parthenium|genus Parthenium|asterid dicot genus +parthenium argentatum|1 +(noun)|guayule|Parthenium argentatum|subshrub|suffrutex +parthenium hysterophorus|1 +(noun)|bastard feverfew|Parthenium hysterophorus|weed +parthenium integrifolium|1 +(noun)|American feverfew|wild quinine|prairie dock|Parthenium integrifolium|subshrub|suffrutex +parthenocarpy|1 +(noun)|apomixis +parthenocissus|1 +(noun)|Parthenocissus|genus Parthenocissus|dicot genus|magnoliopsid genus +parthenocissus quinquefolia|1 +(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine +parthenocissus tricuspidata|1 +(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine +parthenogenesis|2 +(noun)|parthenogeny|virgin birth|asexual reproduction|agamogenesis +(noun)|parthenogeny|apomixis +parthenogenetic|1 +(adj)|agamic|agamous|agamogenetic|apomictic|asexual |nonsexual +parthenogeny|2 +(noun)|parthenogenesis|virgin birth|asexual reproduction|agamogenesis +(noun)|parthenogenesis|apomixis +parthenon|1 +(noun)|Parthenon|temple +parthenote|1 +(noun)|cell +parthia|1 +(noun)|Parthia|geographical area|geographic area|geographical region|geographic region +parthian|3 +(adj)|Parthian|geographical area|geographic area|geographical region|geographic region +(adj)|parting|last +(noun)|Parthian|Asian|Asiatic +parti-color|1 +(verb)|motley|color|colorize|colorise|colourise|colourize|colour|color in|colour in +parti pris|1 +(noun)|preconception|prepossession|preconceived opinion|preconceived idea|preconceived notion|opinion|sentiment|persuasion|view|thought +partial|5 +(adj)|incomplete |uncomplete +(adj)|partial |unfair|biased|colored|coloured|one-sided|slanted|unfair|unjust +(adj)|fond|inclined +(noun)|partial derivative|derived function|derivative|differential coefficient|differential|first derivative +(noun)|overtone|partial tone|harmonic +partial abortion|1 +(noun)|incomplete abortion|spontaneous abortion|miscarriage|stillbirth +partial breach|1 +(noun)|breach of contract +partial correlation|1 +(noun)|correlation|correlational statistics +partial denture|1 +(noun)|denture|dental plate|plate +partial derivative|1 +(noun)|partial|derived function|derivative|differential coefficient|differential|first derivative +partial differential equation|1 +(noun)|differential equation +partial eclipse|1 +(noun)|eclipse|occultation +partial tone|1 +(noun)|overtone|partial|harmonic +partial veil|1 +(noun)|velum|plant part|plant structure +partial verdict|1 +(noun)|verdict|finding of fact +partiality|2 +(noun)|fondness|fancy|liking +(noun)|partisanship|inclination|disposition|tendency +partially|1 +(adv)|partly|part +partialness|1 +(noun)|incompleteness +partible|1 +(adj)|divisible +participant|2 +(noun)|associate +(noun)|player|contestant +participant role|1 +(noun)|semantic role|grammatical category|syntactic category +participate|2 +(verb)|take part|act|move +(verb)|enter +participating|1 +(adj)|active|involved +participation|2 +(noun)|engagement|involvement|involution|group action +(noun)|involvement|condition|status +participation financing|1 +(noun)|participation loan|loan participation|loan +participation loan|1 +(noun)|loan participation|participation financing|loan +participatory|1 +(adj)|democratic +participial|2 +(adj)|verb +(noun)|participle|verb +participle|1 +(noun)|participial|verb +particle|3 +(noun)|atom|molecule|corpuscle|mote|speck|material|stuff +(noun)|body +(noun)|function word|closed-class word +particle accelerator|1 +(noun)|accelerator|atom smasher|scientific instrument +particle beam|1 +(noun)|beam|ray|electron beam +particle board|1 +(noun)|fiberboard|fibreboard|wallboard +particle physics|1 +(noun)|high-energy physics|high energy physics|physics|physical science|natural philosophy +particolored|1 +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particoloured|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +particolored buckeye|1 +(noun)|horse chestnut|buckeye|Aesculus hippocastanum +particoloured|1 +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|piebald|pied|varicolored|varicoloured|colored |coloured|colorful +particular|9 +(adj)|peculiar|special|specific +(adj)|individual +(adj)|specific +(adj)|especial|exceptional|special|uncommon +(adj)|special|primary +(adj)|finical|finicky|fussy|fastidious +(adj)|careful +(noun)|specific|fact +(noun)|detail|item|part|portion|component part|component +particular baptist|1 +(noun)|Calvinistic Baptist|Particular Baptist|Baptist denomination +particularisation|1 +(noun)|particularization|detailing|description +particularise|1 +(verb)|specify|particularize|specialize|specialise|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +particularised|1 +(adj)|particularized|specific +particularism|1 +(noun)|focus|focusing|focussing|direction|centering +particularistic|1 +(adj)|focus|focusing|focussing|direction|centering +particularity|1 +(noun)|quality +particularization|1 +(noun)|particularisation|detailing|description +particularize|1 +(verb)|specify|particularise|specialize|specialise|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +particularized|1 +(adj)|particularised|specific +particularly|3 +(adv)|peculiarly|especially|specially +(adv)|in particular +(adv)|peculiarly +particulate|2 +(adj)|particulate +(noun)|particulate matter|material|stuff +particulate matter|1 +(noun)|particulate|material|stuff +particulate radiation|1 +(noun)|corpuscular radiation|radiation|radioactivity +parting|2 +(adj)|parthian|last +(noun)|farewell|leave|leave-taking|departure|going|going away|leaving +partisan|5 +(adj)|partisan |partizan|guerrilla|guerilla|underground|irregular|one-sided|biased|party-spirited|tendentious|tendencious +(adj)|denominational|sectarian +(noun)|zealot|drumbeater|advocate|advocator|proponent|exponent +(noun)|enthusiast|partizan|supporter|protagonist|champion|admirer|booster|friend +(noun)|partizan|pike +partisanship|1 +(noun)|partiality|inclination|disposition|tendency +partition|5 +(noun)|divider|structure|construction +(noun)|division|partitioning|segmentation|sectionalization|sectionalisation|separation +(noun)|computer memory unit +(verb)|partition off|separate|divide|part +(verb)|zone|separate|divide +partition off|1 +(verb)|partition|separate|divide|part +partitioned|1 +(adj)|partitioned off|divided +partitioned off|1 +(adj)|partitioned|divided +partitioning|2 +(noun)|breakdown|analysis|analytic thinking +(noun)|division|partition|segmentation|sectionalization|sectionalisation|separation +partitionist|1 +(noun)|advocate|advocator|proponent|exponent +partitive|4 +(adj)|relation +(adj)|separation +(adj)|separative|disjunctive +(noun)|word +partiya karkeran kurdistan|1 +(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization|terrorist group|foreign terrorist organization|FTO +partizan|3 +(adj)|partisan |guerrilla|guerilla|underground|irregular|one-sided|biased|party-spirited|tendentious|tendencious +(noun)|enthusiast|partisan|supporter|protagonist|champion|admirer|booster|friend +(noun)|partisan|pike +partly|1 +(adv)|partially|part +partner|5 +(noun)|spouse|married person|mate|better half|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +(noun)|collaborator|cooperator|pardner|associate +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|supply|provide|render|furnish +(verb)|act|move +partner in crime|1 +(noun)|confederate|collaborator|henchman|accessory|accessary +partner off|1 +(verb)|pair|pair off|couple|unite|unify +partner relation|1 +(noun)|fiduciary relation +partnership|2 +(noun)|business|concern|business concern|business organization|business organisation +(noun)|contract +partnership certificate|1 +(noun)|security|certificate +partridge|5 +(noun)|wildfowl +(noun)|tinamou|game bird +(noun)|phasianid +(noun)|bobwhite|bobwhite quail|quail +(noun)|ruffed grouse|Bonasa umbellus|grouse +partridge pea|1 +(noun)|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub|suffrutex +partridgeberry|1 +(noun)|boxberry|twinberry|Mitchella repens|vine +parts|13 +(noun)|environment|environs|surroundings|surround +(noun)|part|portion|component part|component|relation +(noun)|region|part|location +(noun)|part|concern +(noun)|part|portion|object|physical object +(noun)|part|section|division|concept|conception|construct +(noun)|function|office|part|role|duty +(noun)|part|piece|thing +(noun)|character|role|theatrical role|part|persona|portrayal|characterization|enactment|personation +(noun)|share|portion|part|percentage|assets +(noun)|contribution|part|share|attempt|effort|endeavor|endeavour|try +(noun)|part|voice|tune|melody|air|strain|melodic line|line|melodic phrase +(noun)|part|line +parts bin|1 +(noun)|bin +parts catalog|1 +(noun)|parts catalogue|catalog|catalogue +parts catalogue|1 +(noun)|parts catalog|catalog|catalogue +parts department|1 +(noun)|business department +parts inventory|1 +(noun)|inventory|stock list +partsong|1 +(noun)|song +parturiency|1 +(noun)|labor|labour|confinement|lying-in|travail|childbed|parturition|birth|giving birth|birthing +parturient|2 +(adj)|organic process|biological process +(adj)|in labor|aborning +parturition|1 +(noun)|birth|giving birth|birthing|organic process|biological process +party|6 +(noun)|political party|organization|organisation +(noun)|affair|occasion|social occasion|function|social function +(noun)|company|set|circle|band|lot +(noun)|social gathering|social affair +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|celebrate|fete +party-spirited|1 +(adj)|partisan |partizan +party boss|1 +(noun)|political boss|boss|politician|politico|pol|political leader +party favor|1 +(noun)|party favour|favor|favour|keepsake|souvenir|token|relic +party favour|1 +(noun)|party favor|favor|favour|keepsake|souvenir|token|relic +party game|1 +(noun)|game +party girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille +party line|2 +(noun)|policy +(noun)|telephone line|phone line|telephone circuit|subscriber line|line +party liner|1 +(noun)|party man|politician|politico|pol|political leader +party man|1 +(noun)|party liner|politician|politico|pol|political leader +party of democratic kampuchea|1 +(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization|terrorist group|foreign terrorist organization|FTO +party of god|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +party pooper|1 +(noun)|spoilsport|killjoy|wet blanket|unwelcome person|persona non grata +party spirit|1 +(noun)|devotion +party to the action|1 +(noun)|party to the transaction|party|company +party to the transaction|1 +(noun)|party to the action|party|company +party wall|1 +(noun)|wall +party whip|1 +(noun)|whip|legislator +partygoer|1 +(noun)|attendant|attender|attendee|meeter +parula|1 +(noun)|Parula|genus Parula|bird genus +parula americana|1 +(noun)|parula warbler|northern parula|Parula americana|New World warbler|wood warbler +parula warbler|1 +(noun)|northern parula|Parula americana|New World warbler|wood warbler +parulidae|1 +(noun)|Parulidae|family Parulidae|bird family +parus|1 +(noun)|Parus|genus Parus|bird genus +parus atricapillus|1 +(noun)|black-capped chickadee|blackcap|Parus atricapillus|chickadee +parus bicolor|1 +(noun)|tufted titmouse|Parus bicolor|titmouse|tit +parus caeruleus|1 +(noun)|blue tit|tomtit|Parus caeruleus|titmouse|tit +parus carolinensis|1 +(noun)|Carolina chickadee|Parus carolinensis|chickadee +parvati|1 +(noun)|Parvati|Anapurna|Annapurna|Hindu deity +parve|1 +(adj)|pareve|edible |comestible|eatable +parvenu|3 +(adj)|nouveau-riche|parvenue|upstart|pretentious +(adj)|parvenue|new +(noun)|upstart|nouveau-riche|arriviste|unpleasant person|disagreeable person +parvenue|2 +(adj)|nouveau-riche|parvenu|upstart|pretentious +(adj)|parvenu|new +parvis|1 +(noun)|court|courtyard +parvo|1 +(noun)|parvovirus|animal virus +parvovirus|1 +(noun)|parvo|animal virus +pas|6 +(noun)|step +(noun)|dad|dada|daddy|pa|papa|pappa|pater|pop|father|male parent|begetter +(noun)|protactinium|protoactinium|Pa|atomic number 91|metallic element|metal +(noun)|pascal|Pa|pressure unit +(noun)|Pennsylvania|Keystone State|PA|American state +(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system +pas de calais|1 +(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait|sound +pas de deux|1 +(noun)|duet|dancing|dance|terpsichore|saltation +pas de quatre|1 +(noun)|dancing|dance|terpsichore|saltation +pas de trois|1 +(noun)|dancing|dance|terpsichore|saltation +pas seul|1 +(noun)|variation|dancing|dance|terpsichore|saltation +pasadena|1 +(noun)|Pasadena|city|metropolis|urban center +pasang|2 +(noun)|oryx|antelope +(noun)|bezoar goat|Capra aegagrus|wild goat +pascal|3 +(noun)|Pa|pressure unit +(noun)|Pascal|Blaise Pascal|mathematician|philosopher +(noun)|Pascal|programming language|programing language +pascal's law|1 +(noun)|Pascal's law|Pascal's law of fluid pressures|law|law of nature +pascal's law of fluid pressures|1 +(noun)|Pascal's law|Pascal's law of fluid pressures|law|law of nature +pascal celery|1 +(noun)|Paschal celery|celery +pascal compiler|1 +(noun)|Pascal compiler|compiler|compiling program +pasch|2 +(noun)|Pasch|Pascha|Passover|Pesach|Pesah|Feast of the Unleavened Bread +(noun)|Pasch|Pascha|Easter +pascha|2 +(noun)|Pasch|Pascha|Passover|Pesach|Pesah|Feast of the Unleavened Bread +(noun)|Pasch|Pascha|Easter +paschal|1 +(adj)|Easter +paschal celery|1 +(noun)|pascal celery|Paschal celery|celery +paschal lamb|1 +(noun)|Agnus Dei|Paschal Lamb|emblem|allegory +paseo|1 +(noun)|walk|walkway|path +pasha|1 +(noun)|pacha|authority +pashto|1 +(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian|Iranian language +pashtoon|1 +(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan|Afghanistani +pashtu|1 +(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian|Iranian language +pashtun|2 +(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan|Afghanistani +(noun)|Pathan|Pashtun|ethnic minority +pasigraphy|1 +(noun)|Pasigraphy|artificial language +pasiphae|1 +(noun)|Pasiphae|Greek deity +paso doble|2 +(noun)|ballroom dancing|ballroom dance +(noun)|dance music|danceroom music|ballroom music +paspalum|1 +(noun)|dallisgrass|dallis grass|Paspalum dilatatum|grass +paspalum dilatatum|1 +(noun)|dallisgrass|dallis grass|paspalum|Paspalum dilatatum|grass +paspalum distichum|1 +(noun)|knotgrass|Paspalum distichum|grass +paspalum notatum|1 +(noun)|Bahia grass|Paspalum notatum|grass +pasque flower|2 +(noun)|pasqueflower|wildflower|wild flower +(noun)| +pasqueflower|1 +(noun)|pasque flower|wildflower|wild flower +pasquinade|1 +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|put-on|caricature|imitation|impersonation +pass|43 +(adj)|passing +(noun)|base on balls|walk|accomplishment|achievement +(noun)|leave|leave of absence +(noun)|passing play|passing game|passing|football play +(noun)|mountain pass|notch|location +(noun)|passport|permission +(noun)|laissez passer|permission +(noun)|flight|flying +(noun)|strait|straits|situation +(noun)|head|straits|juncture|occasion +(noun)|cycle|oscillation +(noun)|bye|concession|conceding|yielding +(noun)|liberty chit|license|licence|permit +(noun)|ticket +(noun)|crack|fling|go|whirl|offer|attempt|effort|endeavor|endeavour|try +(noun)|toss|flip|throw +(noun)|passing|qualifying|success +(verb)|go through|go across|travel|go|move|locomote|pass over|pass over|pass over +(verb)|travel by|pass by|surpass|go past|go by|travel|go|move|locomote +(verb)|legislate|ordain|enact +(verb)|elapse|lapse|slip by|glide by|slip away|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +(verb)|hand|reach|pass on|turn over|give|transfer|pass on|pass on|pass on|pass on +(verb)|run|go|lead|extend|be +(verb)|overtake|overhaul|advance|progress|pass on|move on|march on|go on +(verb)|happen|hap|go on|pass off|occur|fall out|come about|take place +(verb)|clear|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|spend +(verb)|guide|run|draw|pass over|pass around +(verb)|communicate|pass on|put across|convey|transmit|communicate +(verb)|evanesce|fade|blow over|pass off|fleet|disappear|vanish|go away +(verb)|make it|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|exceed|transcend|overstep|go past|top|excel|stand out|surpass +(verb)|judge +(verb)|let|allow|permit +(verb)|change +(verb)|sink|lapse|move +(verb)|be +(verb)|throw +(verb)|fall|return|devolve|change hands +(verb)|make pass +(verb)|authorize|authorise|clear|permit|allow|let|countenance +(verb)|die|decease|perish|go|exit|pass away|expire|change state|turn +(verb)|excrete|egest|eliminate|discharge|expel|eject|release +pass across|1 +(verb)|transit|pass through|pass over|pass|go through|go across +pass around|2 +(verb)|circulate|pass on|distribute|move|displace +(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|publicize|publicise|air|bare +pass away|2 +(verb)|die|decease|perish|go|exit|expire|pass|change state|turn +(verb)|end|stop|finish|terminate|cease +pass by|1 +(verb)|travel by|surpass|go past|go by|pass|travel|go|move|locomote +pass catcher|1 +(noun)|receiver|pass receiver|football player|footballer +pass completion|1 +(noun)|completion|maneuver|manoeuvre|play +pass off|6 +(verb)|look|appear|seem +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +(verb)|pass|make pass +(verb)|evanesce|fade|blow over|fleet|pass|disappear|vanish|go away +(verb)|happen|hap|go on|occur|pass|fall out|come about|take place +(verb)|emit|breathe|discharge|expel|eject|release +pass on|7 +(verb)|pass|hand|reach|turn over|give|transfer +(verb)|impart|leave|give|tell +(verb)|advance|progress|move on|march on|go on|travel|go|move|locomote +(verb)|bequeath|will|leave +(verb)|relegate|submit|submit|subject +(verb)|circulate|pass around|distribute|move|displace +(verb)|communicate|pass|put across|convey|transmit|communicate +pass out|2 +(verb)|faint|conk|swoon|zonk out|black out +(verb)|zonk out|black out|change state|turn +pass over|5 +(verb)|transit|pass through|pass across|pass|go through|go across +(verb)|jump|skip|skip over|neglect|pretermit|omit|drop|miss|leave out|overlook|overleap +(verb)|traverse|track|cover|cross|get over|get across|cut through|cut across|pass|go through|go across +(verb)|overfly|travel|go|move|locomote +(verb)|wipe|rub|pass1 +pass receiver|1 +(noun)|receiver|pass catcher|football player|footballer +pass through|3 +(verb)|transit|pass across|pass over|pass|go through|go across +(verb)|pass|make pass +(verb)|infiltrate|pass|go through|go across +pass up|2 +(verb)|refuse|reject|turn down|decline +(verb)|ignore +pass water|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|excrete|egest|eliminate|pass +pass with flying colors|1 +(verb)|breeze through|ace|sweep through|sail through|nail|pass|make it +passable|3 +(adj)|passable |navigable|surmountable|climbable|traversable|travelable|negotiable +(adj)|adequate|fair to middling|satisfactory +(adj)|indifferent|so-so|tolerable|ordinary +passably|1 +(adv)|reasonably|moderately|within reason|somewhat|fairly|middling +passage|10 +(noun)|transition|change of state +(noun)|section|subdivision +(noun)|way +(noun)|enactment|legislation|legislating|lawmaking +(noun)|transit|journey|journeying +(noun)|musical passage|musical composition|opus|composition|piece|piece of music +(noun)|passageway|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|passing|reaction|response +(noun)|passing|movement|motion +(noun)|handing over|delivery|bringing +passageway|2 +(noun)|passage +(noun)|passage|structure|anatomical structure|complex body part|bodily structure|body structure +passamaquody|1 +(noun)|Passamaquody|Algonquian|Algonquin +passant|1 +(adj)|erect |vertical|upright +passbook|1 +(noun)|bankbook|record +passbook savings account|1 +(noun)|savings account +passe|1 +(adj)|antique|demode|ex|old-fashioned|old-hat|outmoded|passee|unfashionable |unstylish +passe-partout|2 +(noun)|passkey|master key|master|key +(noun)|mounting +passed ball|1 +(noun)|pitch|delivery +passee|1 +(adj)|antique|demode|ex|old-fashioned|old-hat|outmoded|passe|unfashionable |unstylish +passementerie|1 +(noun)|trimming|trim|adornment +passenger|1 +(noun)|rider|traveler|traveller +passenger car|1 +(noun)|coach|carriage|car|railcar|railway car|railroad car +passenger pigeon|1 +(noun)|Ectopistes migratorius|pigeon +passenger ship|1 +(noun)|ship +passenger train|1 +(noun)|train|railroad train +passenger van|1 +(noun)|van +passer|5 +(noun)|passerby|passer-by|pedestrian|walker|footer +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|student|pupil|educatee|testee|examinee +(noun)|forward passer|ball carrier +(noun)|Passer|genus Passer|bird genus +passer-by|2 +(noun)|passerby|passer|pedestrian|walker|footer +(noun)| +passer domesticus|1 +(noun)|English sparrow|house sparrow|Passer domesticus|sparrow|true sparrow +passer montanus|1 +(noun)|tree sparrow|Passer montanus|sparrow|true sparrow +passerby|1 +(noun)|passer-by|passer|pedestrian|walker|footer +passeres|1 +(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order +passeridae|1 +(noun)|Passeridae|family Passeridae|bird family +passeriform bird|1 +(noun)|passerine|bird +passeriformes|1 +(noun)|Passeriformes|order Passeriformes|animal order +passerina|1 +(noun)|Passerina|genus Passerina|bird genus +passerina cyanea|1 +(noun)|indigo bunting|indigo finch|indigo bird|Passerina cyanea|bunting +passerine|2 +(adj)|passerine |bird +(noun)|passeriform bird|bird +passero|1 +(noun)|Passero|Cape Passero|Passero Cape|naval battle +passero cape|1 +(noun)|Passero|Cape Passero|Passero Cape|naval battle +passiflora|1 +(noun)|Passiflora|genus Passiflora|dilleniid dicot genus +passiflora edulis|1 +(noun)|granadilla|purple granadillo|Passiflora edulis|passionflower|passionflower vine +passiflora foetida|1 +(noun)|love-in-a-mist|running pop|wild water lemon|Passiflora foetida|passionflower|passionflower vine +passiflora incarnata|1 +(noun)|maypop|Passiflora incarnata|passionflower|passionflower vine +passiflora laurifolia|1 +(noun)|Jamaica honeysuckle|yellow granadilla|Passiflora laurifolia|passionflower|passionflower vine +passiflora ligularis|1 +(noun)|granadilla|sweet granadilla|Passiflora ligularis|passionflower|passionflower vine +passiflora maliformis|1 +(noun)|sweet calabash|Passiflora maliformis|passionflower|passionflower vine +passiflora mollissima|1 +(noun)|banana passion fruit|Passiflora mollissima|passionflower|passionflower vine +passiflora quadrangularis|1 +(noun)|granadilla|giant granadilla|Passiflora quadrangularis|passionflower|passionflower vine +passifloraceae|1 +(noun)|Passifloraceae|family Passifloraceae|passionflower family|dilleniid dicot family +passim|1 +(adv)|throughout +passing|12 +(adj)|ephemeral|short-lived|transient|transitory|fugacious|impermanent |temporary +(adj)|passing +(adj)|satisfactory +(adj)|casual|cursory|perfunctory|careless +(noun)|pass|passing play|passing game|football play +(noun)|loss|departure|exit|expiration|going|release|death|decease +(noun)|passage|movement|motion +(noun)|end|last|final stage +(noun)|passage|reaction|response +(noun)|overtaking|reordering +(noun)|pass|qualifying|success +(adv)|exceedingly|extremely +passing comment|1 +(noun)|obiter dictum|remark|comment +passing game|1 +(noun)|pass|passing play|passing|football play +passing note|1 +(noun)|passing tone|note|musical note|tone +passing play|1 +(noun)|pass|passing game|passing|football play +passing shot|1 +(noun)|return +passing tone|1 +(noun)|passing note|note|musical note|tone +passing water|1 +(noun)|leak|wetting|making water|micturition|urination +passion|7 +(noun)|passionateness|feeling +(noun)|heat|warmth|emotionality|emotionalism +(noun)|rage|desire +(noun)|mania|cacoethes|irrational motive +(noun)|sexual desire|concupiscence|physical attraction +(noun)|love|object +(noun)|Passion|Passion of Christ|agony|suffering|excruciation +passion fruit|1 +(noun)|edible fruit +passion of christ|1 +(noun)|Passion|Passion of Christ|agony|suffering|excruciation +passion play|1 +(noun)|Passion play|play|drama|dramatic play +passion sunday|1 +(noun)|Passion Sunday|Christian holy day +passion week|1 +(noun)|Holy Week|Passion Week|week|hebdomad +passionate|1 +(adj)|passionate |ablaze|aflame|aroused|turned on|ardent|burning|fervent|fervid|fiery|impassioned|perfervid|torrid|choleric|demon-ridden|fanatic|fanatical|overzealous|rabid|lustful|lusty|wild|emotional|enthusiastic|hot|loving +passionately|1 +(adv)|stormily|turbulently +passionateness|1 +(noun)|passion|feeling +passionflower|1 +(noun)|passionflower vine|vine +passionflower family|1 +(noun)|Passifloraceae|family Passifloraceae|dilleniid dicot family +passionflower vine|1 +(noun)|passionflower|vine +passionless|2 +(adj)|passionless |platonic|unimpassioned|cold|unemotional|unenthusiastic +(adj)|emotionless|cold +passive|4 +(adj)|passive |inactive|hands-off|resistless|supine|unresisting +(adj)|peaceful|nonviolent +(adj)|passive +(noun)|passive voice|voice +passive air defense|1 +(noun)|air defense +passive immunity|1 +(noun)|acquired immunity +passive matrix display|1 +(noun)|liquid crystal display|LCD +passive resistance|1 +(noun)|nonviolent resistance|nonviolence|direct action +passive resister|1 +(noun)|non-resistant|reformer|reformist|crusader|meliorist +passive source|1 +(noun)|informant|source +passive transport|1 +(noun)|transport +passive trust|1 +(noun)|trust +passive voice|1 +(noun)|passive|voice +passiveness|2 +(noun)|passivity|submissiveness +(noun)|passivity|inactiveness|inactivity|inertia +passivism|1 +(noun)|pacifism|doctrine|philosophy|philosophical system|school of thought|ism +passivity|2 +(noun)|passiveness|inactiveness|inactivity|inertia +(noun)|passiveness|submissiveness +passkey|1 +(noun)|passe-partout|master key|master|key +passover|1 +(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast|moveable feast +passover supper|1 +(noun)|Seder|Passover supper|supper +passport|3 +(noun)|pass|permission +(noun)|legal document|legal instrument|official document|instrument +(noun)|recommendation|characteristic +password|1 +(noun)|watchword|word|parole|countersign|positive identification|secret|arcanum +past|7 +(adj)|past |ancient|bygone|bypast|departed|foregone|gone|chivalric|knightly|medieval|early|former|other|erstwhile|former|once|onetime|quondam|sometime|former|late|previous|historic|historical|last|late|recent|old|olden|prehistoric|prehistorical|then|ultimo|ult|ago|agone|other|noncurrent|old|outgoing +(adj)|preceding|retiring|outgoing +(adj)|tense +(noun)|past times|yesteryear|yore|time +(noun)|time period|period of time|period +(noun)|past tense|tense +(adv)|by +past master|2 +(noun)|master|professional +(noun)|expert +past participle|1 +(noun)|perfect participle|participle|participial +past perfect|1 +(noun)|past perfect tense|pluperfect|pluferfect tense|perfective|perfective tense|perfect|perfect tense +past perfect tense|1 +(noun)|past perfect|pluperfect|pluferfect tense|perfective|perfective tense|perfect|perfect tense +past progressive|1 +(noun)|past progressive tense|progressive|progressive tense|imperfect|imperfect tense|continuous tense +past progressive tense|1 +(noun)|past progressive|progressive|progressive tense|imperfect|imperfect tense|continuous tense +past tense|1 +(noun)|past|tense +past times|1 +(noun)|past|yesteryear|yore|time +pasta|1 +(noun)|alimentary paste|food +pasta salad|1 +(noun)|salad +pasta sauce|1 +(noun)|spaghetti sauce|sauce +paste|6 +(noun)|composition +(noun)|library paste|adhesive material|adhesive +(noun)|spread|condiment +(verb)|glue|attach +(verb)|beat +(verb)|cover +paste-up|1 +(noun)|composition +pasteboard|1 +(noun)|cardboard|composition board +pasted|1 +(adj)|glued|affixed +pastel|3 +(adj)|delicate +(adj)|light |light-colored +(noun)|chromatic color|chromatic colour|spectral color|spectral colour +pastelike|1 +(adj)|pasty|colorless |colourless +paster|2 +(noun)|workman|working man|working person +(noun)|gummed label|sticker|label +pastern|1 +(noun)|fetter bone|bone|os +pasternak|1 +(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer|author +pasteur|1 +(noun)|Pasteur|Louis Pasteur|chemist|biologist|life scientist +pasteurellosis|1 +(noun)|hemorrhagic septicemia|animal disease +pasteurian|1 +(adj)|Pasteurian|chemist|biologist|life scientist +pasteurisation|1 +(noun)|pasteurization|sterilization|sterilisation +pasteurise|1 +(verb)|pasteurize|change integrity +pasteurised|1 +(adj)|pasteurized|change integrity +pasteurization|1 +(noun)|pasteurisation|sterilization|sterilisation +pasteurize|1 +(verb)|pasteurise|change integrity +pasteurized|1 +(adj)|pasteurised|change integrity +pasteurized milk|1 +(noun)|milk +pastiche|2 +(noun)|medley|potpourri|musical composition|opus|composition|piece|piece of music +(noun)|work of art +pasties|2 +(noun)|patch +(noun)|pasty|meat pie +pastil|1 +(noun)|cough drop|troche|pastille|lozenge +pastille|1 +(noun)|cough drop|troche|pastil|lozenge +pastime|1 +(noun)|interest|pursuit|diversion|recreation +pastinaca|1 +(noun)|Pastinaca|genus Pastinaca|rosid dicot genus|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family +pastinaca sativa|1 +(noun)|parsnip|Pastinaca sativa|herb|herbaceous plant +pastis|1 +(noun)|liqueur|cordial +pastness|1 +(noun)|timing +pasto|1 +(noun)|Galeras|Pasto|volcano +pastor|2 +(noun)|curate|minister|parson|rector|clergyman|reverend|man of the cloth +(noun)|Pastor|subgenus Pastor|bird genus +pastor roseus|1 +(noun)|rose-colored starling|rose-colored pastor|Pastor sturnus|Pastor roseus|starling +pastor sturnus|1 +(noun)|rose-colored starling|rose-colored pastor|Pastor sturnus|Pastor roseus|starling +pastoral|7 +(adj)|clergyman|reverend|man of the cloth +(adj)|bucolic|herder|herdsman|drover +(adj)|arcadian|bucolic|rustic|rural +(adj)|idyllic|pleasant +(noun)|pastorale|idyll|musical composition|opus|composition|piece|piece of music +(noun)|letter|missive +(noun)|literary composition|literary work +pastorale|1 +(noun)|pastoral|idyll|musical composition|opus|composition|piece|piece of music +pastorate|2 +(noun)|clergy +(noun)|pastorship|position|post|berth|office|spot|billet|place|situation +pastorship|1 +(noun)|pastorate|position|post|berth|office|spot|billet|place|situation +pastrami|1 +(noun)|beef|boeuf +pastry|2 +(noun)|pastry dough|dough +(noun)|baked goods +pastry cart|1 +(noun)|serving cart +pastry cook|1 +(noun)|chef +pastry dough|1 +(noun)|pastry|dough +pasturage|2 +(noun)|herbage|herb|herbaceous plant +(noun)|eatage|forage|pasture|grass|feed|provender +pasture|4 +(noun)|pastureland|grazing land|lea|ley|grassland +(noun)|eatage|forage|pasturage|grass|feed|provender +(verb)|crop|graze|feed|give +(verb)|crop|browse|graze|range|feed|eat +pasture brake|1 +(noun)|bracken|brake|Pteridium aquilinum|fern +pastureland|1 +(noun)|pasture|grazing land|lea|ley|grassland +pasturized milk|1 +(noun)|milk +pasty|3 +(adj)|pastelike|colorless |colourless +(adj)|gluey|glutinous|gummy|mucilaginous|sticky|viscid|viscous|adhesive +(noun)|meat pie +pat|6 +(adj)|glib|slick|plausible +(adj)|appropriate +(noun)|rap|tap|sound +(noun)|tap|dab|touch|touching +(verb)|chuck|caress +(verb)|dab|strike +pataca|1 +(noun)|Macao monetary unit +patagonia|1 +(noun)|Patagonia|geographical area|geographic area|geographical region|geographic region +patagonian desert|1 +(noun)|Patagonian Desert|desert +patas|1 +(noun)|hussar monkey|Erythrocebus patas|Old World monkey|catarrhine +patavium|1 +(noun)|Padua|Padova|Patavium|city|metropolis|urban center +patch|13 +(noun)|spot|speckle|dapple|fleck|maculation|marking +(noun)|plot|plot of ground|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|piece of cloth|piece of material +(noun)|while|piece|spell|time +(noun)|program|programme|computer program|computer programme +(noun)|temporary hookup|connection|connexion|connector|connecter|connective|lash-up|contrivance +(noun)|mend|darn|sewing|stitchery +(noun)|eyepatch|cloth covering +(noun)|bandage|dressing|medical dressing +(verb)|piece|join|conjoin +(verb)|supply|provide|render|furnish +(verb)|patch up|repair|mend|fix|bushel|doctor|furbish up|restore|touch on|patch up +(verb)|piece|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +patch pocket|1 +(noun)|pocket +patch test|1 +(noun)|skin test +patch up|2 +(verb)|patch|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +(verb)|reconcile|make up|conciliate|settle|agree|hold|concur|concord +patchboard|1 +(noun)|switchboard|plugboard|central|telephone exchange|exchange +patchcord|1 +(noun)|wire|conducting wire +patched|2 +(adj)|old +(adj)|spotted|patterned +patchiness|1 +(noun)|unevenness|variability +patching|1 +(noun)|repair|fix|fixing|fixture|mend|mending|reparation +patchouli|2 +(noun)|patchouly|pachouli|Pogostemon cablin|shrub|bush +(noun)|patchouly|pachouli|perfume|essence +patchouly|2 +(noun)|patchouli|pachouli|Pogostemon cablin|shrub|bush +(noun)|patchouli|pachouli|perfume|essence +patchwork|3 +(noun)|hodgepodge|jumble|theory +(noun)|patchwork quilt|quilt|comforter|puff +(noun)|sewing|stitchery +patchwork quilt|1 +(noun)|patchwork|quilt|comforter|puff +patchy|1 +(adj)|uneven +pate|2 +(noun)|spread|paste +(noun)|poll|crown|top|top side|upper side|upside +pate a choux|1 +(noun)|puff batter|pouf paste|batter +pate de foie gras|1 +(noun)|foie gras|pate +pate feuillete|1 +(noun)|puff paste|pastry|pastry dough +patella|2 +(noun)|kneecap|kneepan|sesamoid bone|os sesamoideum +(noun)|Patella|genus Patella|mollusk genus +patella vulgata|1 +(noun)|common limpet|Patella vulgata|limpet +patellar|1 +(adj)|sesamoid bone|os sesamoideum +patellar reflex|1 +(noun)|knee jerk|knee-jerk reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +patellidae|1 +(noun)|Patellidae|family Patellidae|mollusk family +patency|2 +(noun)|openness +(noun)|obviousness|noticeability|noticeableness|conspicuousness +patent|7 +(adj)|unobstructed +(adj)|apparent|evident|manifest|plain|obvious +(noun)|patent of invention|document|written document|papers +(noun)|letters patent|legal document|legal instrument|official document|instrument +(verb)|procure|secure +(verb)|register +(verb)|change|alter|modify +patent and trademark office database|1 +(noun)|Patent and Trademark Office Database|Patent Office|agency|federal agency|government agency|bureau|office|authority +patent application|1 +(noun)|application +patent ductus arteriosus|1 +(noun)|ductus arteriosus +patent infringement|1 +(noun)|violation|infringement +patent law|1 +(noun)|jurisprudence|law|legal philosophy +patent leather|1 +(noun)|leather +patent log|1 +(noun)|screw log|taffrail log|log +patent medicine|1 +(noun)|medicine|medication|medicament|medicinal drug +patent of invention|1 +(noun)|patent|document|written document|papers +patent office|1 +(noun)|Patent and Trademark Office Database|Patent Office|agency|federal agency|government agency|bureau|office|authority +patent right|1 +(noun)|legal right +patent system|1 +(noun)|legal system +patented|1 +(adj)|proprietary +patentee|1 +(noun)|inventor|discoverer|artificer +patently|1 +(adv)|obviously|evidently|manifestly|apparently|plainly|plain +pater|1 +(noun)|dad|dada|daddy|pa|papa|pappa|pop|father|male parent|begetter +paterfamilias|1 +(noun)|patriarch|man|adult male|head of household +paternal|4 +(adj)|parent +(adj)|paternal |fatherly|fatherlike|paternalistic|patriarchal +(adj)|parental |maternal +(adj)|agnate|agnatic|related +paternal quality|1 +(noun)|fatherliness|parental quality +paternalism|1 +(noun)|attitude|mental attitude +paternalistic|1 +(adj)|paternal +paternity|3 +(noun)|state +(noun)|fatherhood|kinship|family relationship|relationship +(noun)|authorship|initiation|founding|foundation|institution|origination|creation|innovation|introduction|instauration +paternity suit|1 +(noun)|bastardy proceeding|lawsuit|suit|case|cause|causa +paternity test|1 +(noun)|assay|check +paternoster|2 +(noun)|Paternoster|Lord's Prayer +(noun)|elevator|lift +paterson|2 +(noun)|Paterson|William Patterson|American Revolutionary leader +(noun)|Paterson|city|metropolis|urban center +path|4 +(noun)|way|way of life|course|course of action +(noun)|way +(noun)|route|itinerary|line +(noun)|track|course|line +path of least resistance|1 +(noun)|line of least resistance|fashion +pathan|2 +(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan|Afghanistani +(noun)|Pathan|Pashtun|ethnic minority +pathetic|3 +(adj)|hapless|miserable|misfortunate|piteous|pitiable|pitiful|poor|wretched|unfortunate +(adj)|pitiable|pitiful|contemptible +(adj)|ridiculous|silly|undignified +pathetic fallacy|1 +(noun)|fallacy|false belief +pathetically|1 +(adv)|pitiably +pathfinder|1 +(noun)|scout|guide|expert +pathless|1 +(adj)|roadless|trackless|untracked|untrod|untrodden|inaccessible |unaccessible +pathogen|1 +(noun)|microorganism|infectious agent|infective agent +pathogenesis|1 +(noun)|pathologic process|pathological process +pathogenic|1 +(adj)|infective|morbific|unhealthful +pathologic|2 +(adj)|diseased|morbid|pathological|unhealthy +(adj)|pathological|medical science +pathologic process|1 +(noun)|pathological process|organic process|biological process +pathological|3 +(adj)|pathologic|medical science +(adj)|neurotic |psychoneurotic +(adj)|diseased|morbid|pathologic|unhealthy +pathological process|1 +(noun)|pathologic process|organic process|biological process +pathological state|1 +(noun)|condition|status +pathologist|1 +(noun)|diagnostician|specialist|medical specialist +pathology|2 +(noun)|medical science +(noun)|ill health|unhealthiness|health problem +pathos|3 +(noun)|poignancy|quality +(noun)|commiseration|pity|ruth|sympathy|fellow feeling +(noun)|expressive style|style +pathway|2 +(noun)|nerve pathway|tract|nerve tract|white matter|substantia alba +(noun)|footpath|path +patience|2 +(noun)|forbearance|longanimity|good nature +(noun)|solitaire|card game|cards +patient|4 +(adj)|patient |diligent|persevering|enduring|long-suffering|forbearing|longanimous|tolerant|patient of|unhurried|tolerant|uncomplaining +(adj)|uncomplaining +(noun)|case|sick person|diseased person|sufferer +(noun)|affected role|patient role|semantic role|participant role +patient of|1 +(adj)|tolerant|patient +patient role|1 +(noun)|affected role|patient|semantic role|participant role +patiently|1 +(adv)|with patience +patina|1 +(noun)|coating|coat +patinate|1 +(verb)|patinize|patinise|coat|surface +patinise|1 +(verb)|patinate|patinize|coat|surface +patinize|1 +(verb)|patinate|patinise|coat|surface +patio|1 +(noun)|terrace|area +patisserie|1 +(noun)|bakery|bakeshop|bakehouse +patka|1 +(noun)|scarf +patness|1 +(noun)|opportuneness|timeliness|convenience +patois|2 +(noun)|cant|jargon|slang|lingo|argot|vernacular|non-standard speech +(noun)|dialect|idiom|accent +paton|1 +(noun)|Paton|Alan Paton|Alan Stewart Paton|writer|author +patrai|1 +(noun)|Patras|Patrai|city|metropolis|urban center|port +patras|1 +(noun)|Patras|Patrai|city|metropolis|urban center|port +patrial|1 +(noun)|Britisher|Briton|Brit +patriarch|4 +(noun)|Patriarch|spiritual leader +(noun)|paterfamilias|man|adult male|head of household +(noun)|forefather|father|sire +(noun)|old man|greybeard|graybeard|Methuselah +patriarchal|1 +(adj)|patriarchal |patriarchic|patricentric|paternal +patriarchal cross|1 +(noun)|cross +patriarchate|2 +(noun)|jurisdiction +(noun)|patriarchy|social organization|social organisation|social structure|social system|structure +patriarchic|1 +(adj)|patriarchal +patriarchy|1 +(noun)|patriarchate|social organization|social organisation|social structure|social system|structure +patricentric|1 +(adj)|patriarchal +patrician|4 +(adj)|patrician |noble +(adj)|aristocratic|aristocratical|blue|blue-blooded|gentle|noble +(noun)|adult|grownup +(noun)|aristocrat|blue blood|leader +patricide|2 +(noun)|parricide +(noun)|parricide +patrick|1 +(noun)|Patrick|Saint Patrick|St. Patrick|Apostle|patron saint +patrick henry|1 +(noun)|Henry|Patrick Henry|American Revolutionary leader|orator|speechmaker|rhetorician|public speaker|speechifier +patrick victor martindale white|1 +(noun)|White|Patrick White|Patrick Victor Martindale White|writer|author +patrick white|1 +(noun)|White|Patrick White|Patrick Victor Martindale White|writer|author +patrikin|1 +(noun)|agnate|patrilineal kin|patrisib|patrilineal sib|relative|relation +patrilineage|1 +(noun)|agnation|unilateral descent +patrilineal|1 +(adj)|patrilinear|lineal |direct +patrilineal kin|1 +(noun)|agnate|patrikin|patrisib|patrilineal sib|relative|relation +patrilineal sib|1 +(noun)|agnate|patrikin|patrilineal kin|patrisib|relative|relation +patrilinear|1 +(adj)|patrilineal|lineal |direct +patrimonial|1 +(adj)|ancestral|hereditary|transmissible|inheritable |heritable +patrimony|2 +(noun)|endowment|endowment fund +(noun)|birthright|inheritance|heritage +patriot|1 +(noun)|nationalist|national|subject +patriot's day|1 +(noun)|Patriot's Day|day +patrioteer|1 +(noun)|chauvinist|jingoist|jingo|flag-waver|hundred-percenter|patriot|nationalist +patriotic|1 +(adj)|patriotic |loyal|chauvinistic|flag-waving|jingoistic|nationalistic|ultranationalistic|superpatriotic|loyal +patriotism|1 +(noun)|nationalism|loyalty +patrisib|1 +(noun)|agnate|patrikin|patrilineal kin|patrilineal sib|relative|relation +patristic|1 +(adj)|patristical|theologian|theologist|theologizer|theologiser +patristical|1 +(adj)|patristic|theologian|theologist|theologizer|theologiser +patristics|2 +(noun)|patrology|writing +(noun)|patrology|Christian theology +patroclus|1 +(noun)|Patroclus|mythical being +patrol|4 +(noun)|detachment +(noun)|protection +(noun)|force|personnel +(verb)|police|guard +patrol boat|1 +(noun)|patrol ship|vessel|watercraft +patrol car|1 +(noun)|cruiser|police cruiser|police car|prowl car|squad car|car|auto|automobile|machine|motorcar +patrol ship|1 +(noun)|patrol boat|vessel|watercraft +patrol wagon|1 +(noun)|police van|police wagon|paddy wagon|wagon|black Maria|van +patroller|1 +(noun)|watchman|watcher|security guard +patrolman|1 +(noun)|flatfoot|lawman|law officer|peace officer +patrology|2 +(noun)|patristics|writing +(noun)|patristics|Christian theology +patron|3 +(noun)|frequenter|customer|client +(noun)|owner|proprietor +(noun)|sponsor|supporter|benefactor|helper +patron saint|1 +(noun)|defender|guardian|protector|shielder|saint +patronage|7 +(noun)|backing|backup|championship|blessing|approval|approving +(noun)|clientele|business|people +(noun)|condescension|disdain|disparagement|depreciation|derogation +(noun)|social control +(noun)|trade|business +(verb)|sustain|keep|maintain +(verb)|patronize|patronise|support|keep going|foster|nurture +patroness|1 +(noun)|patronne|patron|sponsor|supporter +patronise|4 +(verb)|patronize|shop|shop at|buy at|frequent|sponsor|support|back up +(verb)|sponsor|patronize|support +(verb)|patronize|condescend|interact +(verb)|patronize|patronage|support|keep going|foster|nurture +patronised|1 +(adj)|patronized +patronising|1 +(adj)|arch|condescending|patronizing|superior +patronisingly|1 +(adv)|condescendingly|patronizingly +patronize|4 +(verb)|sponsor|patronise|support +(verb)|patronise|shop|shop at|buy at|frequent|sponsor|support|back up +(verb)|patronise|condescend|interact +(verb)|patronise|patronage|support|keep going|foster|nurture +patronized|1 +(adj)|patronized |patronised +patronizing|1 +(adj)|arch|condescending|patronising|superior +patronizingly|1 +(adv)|condescendingly|patronisingly +patronless|1 +(adj)|unpatronized |unpatronised|briefless +patronne|1 +(noun)|patroness|patron|sponsor|supporter +patronymic|2 +(adj)|name +(noun)|name +patsy|1 +(noun)|chump|fool|gull|mark|fall guy|sucker|soft touch|mug|victim|dupe +patten|1 +(noun)|clog|geta|sabot|footwear|footgear +patter|4 +(noun)|spiel|line of gab|line +(noun)|sound +(verb)|sprinkle|spit|spatter|pitter-patter|rain|rain down +(verb)|pitter-patter|sound|go +pattern|10 +(noun)|form|shape|structure +(noun)|practice|activity +(noun)|design|figure|decoration|ornament|ornamentation +(noun)|convention|normal|rule|formula|practice +(noun)|exemplar|example|model|good example +(noun)|blueprint|design|plan|program|programme +(noun)|traffic pattern|approach pattern|path|route|itinerary +(noun)|radiation pattern|radiation diagram|graph|graphical record +(verb)|model|imitate|copy|simulate +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +pattern-bomb|1 +(verb)|bombard|bomb +patterned|1 +(adj)|patterned |banded|blotched|blotchy|splotched|brindled|brindle|brinded|tabby|burled|checked|checkered|chequered|dappled|mottled|dotted|flecked|specked|speckled|stippled|figured|floral|flowered|freckled|lentiginous|lentiginose|laced|marbled|marbleized|marbleised|moire|watered|patched|spotted|pinstriped|pinstripe|pointilist|pointillistic|slashed|sprigged|streaked|streaky|striped|stripy|tessellated|veined|venose|veinlike +patterned advance|1 +(noun)|progression|series +patternmaker|1 +(noun)|maker|shaper +patty|3 +(noun)|cake|dish +(noun)|pie +(noun)|candy +patty-pan|1 +(noun)|pan|cooking pan +patty shell|1 +(noun)|bouchee|pastry +pattypan squash|2 +(noun)|cymling|summer squash|summer squash vine|Cucurbita pepo melopepo +(noun)|summer squash +patwin|2 +(noun)|Patwin|Penutian +(noun)|Patwin|Copehan +patzer|1 +(noun)|chess player +paucity|1 +(noun)|dearth|scarcity|scarceness +paul|2 +(noun)|Paul|Alice Paul|feminist|women's rightist|women's liberationist|libber +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +paul adrien maurice dirac|1 +(noun)|Dirac|Paul Adrien Maurice Dirac|nuclear physicist +paul bunyan|1 +(noun)|Bunyan|Paul Bunyan|fictional character|fictitious character|character|lumberman|lumberjack|feller|faller +paul bustill robeson|1 +(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer|vocalist|vocalizer|vocaliser|civil rights leader|civil rights worker|civil rights activist +paul cezanne|1 +(noun)|Cezanne|Paul Cezanne|painter +paul dukas|1 +(noun)|Dukas|Paul Dukas|composer +paul ehrlich|1 +(noun)|Ehrlich|Paul Ehrlich|bacteriologist +paul gauguin|1 +(noun)|Gauguin|Paul Gauguin|painter +paul hermann muller|1 +(noun)|Muller|Paul Hermann Muller|chemist +paul heyse|1 +(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer|author +paul hindemith|1 +(noun)|Hindemith|Paul Hindemith|composer|conductor|music director|director +paul johann ludwig von heyse|1 +(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer|author +paul johannes tillich|1 +(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian|theologist|theologizer|theologiser +paul john flory|1 +(noun)|Flory|Paul John Flory|chemist +paul joseph goebbels|1 +(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi|German Nazi|propagandist +paul klee|1 +(noun)|Klee|Paul Klee|painter +paul ludwig von beneckendorff und von hindenburg|1 +(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general|full general|field marshal|statesman|solon|national leader +paul mccartney|1 +(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star|songwriter|songster|ballad maker +paul newman|1 +(noun)|Newman|Paul Newman|actor|histrion|player|thespian|role player +paul revere|1 +(noun)|Revere|Paul Revere|silversmith|silverworker|silver-worker|American Revolutionary leader +paul robeson|1 +(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer|vocalist|vocalizer|vocaliser|civil rights leader|civil rights worker|civil rights activist +paul simon|1 +(noun)|Simon|Paul Simon|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +paul the apostle|1 +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +paul tillich|1 +(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian|theologist|theologizer|theologiser +paul verlaine|1 +(noun)|Verlaine|Paul Verlaine|poet +paul vernier|1 +(noun)|Vernier|Paul Vernier|mathematician +paul von hindenburg|1 +(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general|full general|field marshal|statesman|solon|national leader +pauli|1 +(noun)|Pauli|Wolfgang Pauli|nuclear physicist +pauli exclusion principle|1 +(noun)|Pauli exclusion principle|exclusion principle|law|law of nature +pauline|1 +(adj)|Pauline|Apostle|missionary|missioner|saint +pauling|1 +(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist +paulo afonso|1 +(noun)|Paulo Afonso|Paulo Afonso Falls|waterfall|falls +paulo afonso falls|1 +(noun)|Paulo Afonso|Paulo Afonso Falls|waterfall|falls +paumotu archipelago|1 +(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago +paunch|1 +(noun)|belly|adipose tissue|fat|fatty tissue +paunchiness|1 +(noun)|abdominousness|fatness|fat|blubber|avoirdupois +paunchy|1 +(adj)|abdominous|potbellied|fat +pauper|1 +(noun)|poor man|poor person|have-not +pauperisation|1 +(noun)|pauperization|impoverishment|privation|deprivation +pauperise|1 +(verb)|beggar|pauperize|impoverish +pauperism|1 +(noun)|indigence|need|penury|beggary|pauperization|poverty|poorness|impoverishment +pauperization|2 +(noun)|indigence|need|penury|beggary|pauperism|poverty|poorness|impoverishment +(noun)|pauperisation|impoverishment|privation|deprivation +pauperize|1 +(verb)|beggar|pauperise|impoverish +pauropoda|1 +(noun)|Pauropoda|class Pauropoda|class +pause|4 +(noun)|intermission|break|interruption|suspension|time interval|interval +(noun)|inactivity +(verb)|hesitate|delay +(verb)|intermit|break|interrupt|disrupt|break up|cut off +pavage|2 +(noun)|tax|taxation|revenue enhancement +(noun)|paving|application|coating|covering +pavan|2 +(noun)|pavane|dance music|danceroom music|ballroom music +(noun)|pavane|dancing|dance|terpsichore|saltation +pavane|2 +(noun)|pavan|dance music|danceroom music|ballroom music +(noun)|pavan|dancing|dance|terpsichore|saltation +pavarotti|1 +(noun)|Pavarotti|Luciano Pavarotti|tenor +pave|2 +(noun)|mount|setting +(verb)|coat|surface +paved|1 +(adj)|paved |made-up|sealed +paved surface|1 +(noun)|horizontal surface|level +pavement|3 +(noun)|paving|paved surface +(noun)|paving|paving material +(noun)|sidewalk|walk|walkway|paseo +pavement artist|1 +(noun)|draftsman|drawer +pavilion|1 +(noun)|marquee|tent|collapsible shelter +paving|3 +(noun)|pavement|paving material +(noun)|pavement|paved surface +(noun)|pavage|application|coating|covering +paving machine|1 +(noun)|pavior|paviour|machine +paving material|1 +(noun)|artifact|artefact +paving stone|1 +(noun)|stone +pavior|1 +(noun)|paviour|paving machine|machine +paviour|1 +(noun)|pavior|paving machine|machine +pavis|1 +(noun)|pavise|shield|buckler +pavise|1 +(noun)|pavis|shield|buckler +pavlov|1 +(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist +pavlova|1 +(noun)|Pavlova|Anna Pavlova|dancer|professional dancer +pavlovian|1 +(adj)|Pavlovian|physiologist +pavo|2 +(noun)|Pavo|constellation +(noun)|Pavo|genus Pavo|bird genus +pavo cristatus|1 +(noun)|blue peafowl|Pavo cristatus|peafowl|bird of Juno +pavo muticus|1 +(noun)|green peafowl|Pavo muticus|peafowl|bird of Juno +pavonia|1 +(noun)|shrub|bush +pavor nocturnus|1 +(noun)|sleep terror disorder|sleep disorder +paw|4 +(noun)|animal foot|foot +(noun)|hand|manus|mitt|extremity +(verb)|scrape|grate +(verb)|caress +pawer|1 +(noun)|unpleasant person|disagreeable person +pawky|1 +(adj)|artful +pawl|1 +(noun)|detent|click|dog|catch|stop +pawn|5 +(noun)|pledge +(noun)|instrument|cat's-paw|assistant|helper|help|supporter +(noun)|chessman|chess piece +(noun)|borrowing +(verb)|soak|hock|consign|charge +pawn ticket|1 +(noun)|receipt +pawnbroker|1 +(noun)|lender|loaner|pledgee +pawnbroker's shop|1 +(noun)|pawnshop|loan office|shop|store +pawnee|2 +(noun)|Pawnee|Caddo +(noun)|Pawnee|Caddo|Caddoan|Caddoan language +pawnshop|1 +(noun)|pawnbroker's shop|loan office|shop|store +pawpaw|3 +(noun)|papaya|papaia|papaya tree|melon tree|Carica papaya|fruit tree +(noun)|papaw|papaw tree|Asimina triloba|custard apple|custard apple tree +(noun)|papaw|edible fruit +pax|1 +(noun)|kiss of peace|greeting|salutation +pax romana|1 +(noun)|Pax Romana|peace +paxil|1 +(noun)|paroxetime|Paxil|selective-serotonin reuptake inhibitor|SSRI +paxto|1 +(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian|Iranian language +paxton|1 +(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect|designer +pay|12 +(noun)|wage|earnings|remuneration|salary|regular payment +(verb)|give|fund|pay off|pay off|pay off|pay out +(verb)|give|communicate|intercommunicate +(verb)|pay off|make up|compensate|settle|pay back|pay off +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +(verb)|pay up|ante up +(verb)|yield|bear|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|make +(verb)|be +(verb)|give|devote|think|cogitate|cerebrate +(verb)|settle +(verb)|requite|repay +pay-phone|1 +(noun)|pay-station|telephone|phone|telephone set +pay-station|1 +(noun)|pay-phone|telephone|phone|telephone set +pay as you earn|1 +(noun)|PAYE|withholding tax|withholding +pay back|2 +(verb)|reward|repay|act|move +(verb)|pay off|get|fix|get even|get back +pay cash|1 +(verb)|pay +pay claim|1 +(noun)|wage claim|demand +pay cut|1 +(noun)|salary cut|cut +pay dirt|2 +(noun)|ore +(noun)|success +pay envelope|1 +(noun)|pay packet|wage|pay|earnings|remuneration|salary +pay for|1 +(verb)|invite|interact +pay heed|1 +(verb)|attend|hang|advert|give ear|listen +pay off|6 +(verb)|yield|pay|bear +(verb)|liquidate|pay up|ante up|pay +(verb)|redeem|pay +(verb)|pay|make up|compensate|settle +(verb)|buy off|bribe|corrupt|buy|grease one's palms +(verb)|pay back|get|fix|get even|get back +pay out|1 +(verb)|disburse|pay +pay packet|1 +(noun)|pay envelope|wage|pay|earnings|remuneration|salary +pay rate|1 +(noun)|rate of pay|rate|charge per unit +pay up|1 +(verb)|ante up|pay|pay +payable|1 +(adj)|collectible|collectable|due |owed +payables|1 +(noun)|liabilities +payback|2 +(noun)|return|issue|proceeds|take|takings|yield|payoff +(noun)|vengeance|retribution|retaliation|revenge +paycheck|1 +(noun)|payroll check|check|bank check|cheque +payday|1 +(noun)|day +paye|1 +(noun)|PAYE|pay as you earn|withholding tax|withholding +payee|1 +(noun)|recipient|receiver +payena|1 +(noun)|Payena|genus Payena|dicot genus|magnoliopsid genus +payer|1 +(noun)|remunerator|money handler|money dealer +paygrade|1 +(noun)|military rank|military rating|rating|rank +paying|2 +(adj)|gainful|paid|profitable +(adj)|compensable|remunerative|salaried|stipendiary|paid +paying attention|2 +(noun)|attentiveness|heed|regard|attention|attending +(adv)|attentively|with attention +paying back|1 +(noun)|return|getting even|group action +payload|2 +(noun)|warhead|load|explosive +(noun)|cargo|lading|freight|load|loading|shipment|consignment|merchandise|wares|product +paymaster|1 +(noun)|payer|remunerator +payment|2 +(noun)|cost +(noun)|defrayal|defrayment|commerce|commercialism|mercantilism +payment rate|1 +(noun)|rate of payment|repayment rate|installment rate|rate|charge per unit +payne's gray|1 +(noun)|Payne's gray|pigment|blue|blueness +paynim|1 +(noun)|heathen|pagan|gentile|infidel +payoff|4 +(noun)|final payment|payment +(noun)|bribe|payment +(noun)|return|issue|proceeds|take|takings|yield|income +(noun)|wages|reward|consequence|aftermath +payola|1 +(noun)|bribe|payoff +payroll|3 +(noun)|paysheet|register +(noun)|paysheet|sum|sum of money|amount|amount of money +(noun)|payroll department|department|section +payroll check|1 +(noun)|paycheck|check|bank check|cheque +payroll department|1 +(noun)|payroll|department|section +pays de la loire|1 +(noun)|Pays de la Loire|French region +paysheet|2 +(noun)|payroll|sum|sum of money|amount|amount of money +(noun)|payroll|register +payslip|1 +(noun)|record +pb|1 +(noun)|lead|Pb|atomic number 82|metallic element|metal +pbs|2 +(noun)|phosphate buffer solution|PBS|buffer solution +(noun)|lead|Pb|atomic number 82|metallic element|metal +pc|1 +(noun)|personal computer|PC|microcomputer|digital computer +pc board|1 +(noun)|PC board|circuit board|circuit card|board|card +pcp|1 +(noun)|phencyclidine|phencyclidine hydrochloride|PCP|angel dust|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +pct|1 +(noun)|percentage|percent|per centum|proportion|proportionality +pd|1 +(noun)|palladium|Pd|atomic number 46|metallic element|metal +pda|1 +(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organizer|organiser|electronic device +pdflp|1 +(noun)|Democratic Front for the Liberation of Palestine|DFLP|Popular Democratic Front for the Liberation of Palestine|PDFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +pdl|1 +(noun)|poundal|force unit +pe|1 +(noun)|letter|letter of the alphabet|alphabetic character +pe-tsai|1 +(noun)|Chinese cabbage|celery cabbage|napa|Brassica rapa pekinensis|crucifer|cruciferous plant +pea|3 +(noun)|legume +(noun)|legume +(noun)|pea plant|legume|leguminous plant +pea-chick|2 +(noun)|peachick|peafowl|bird of Juno +(noun)| +pea-green|1 +(adj)|chromatic +pea-souper|1 +(noun)|pea soup|fog +pea bean|1 +(noun)|navy bean|white bean|common bean +pea crab|1 +(noun)|crab +pea family|1 +(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|rosid dicot family +pea flour|1 +(noun)|meal +pea green|1 +(noun)|yellow green|yellowish green|chartreuse|Paris green|green|greenness|viridity +pea jacket|1 +(noun)|peacoat|jacket +pea plant|1 +(noun)|pea|legume|leguminous plant +pea pod|1 +(noun)|peasecod|pod|cod|seedcase +pea shooter|1 +(noun)|tube|tubing|plaything|toy +pea soup|2 +(noun)|soup +(noun)|pea-souper|fog +pea tree|1 +(noun)|caragana|shrub|bush +pea weevil|1 +(noun)|Bruchus pisorum|seed beetle|seed weevil +peabody|1 +(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator|pedagogue +peace|5 +(noun)|order +(noun)|harmony|concord|concordance +(noun)|peacefulness|peace of mind|repose|serenity|heartsease|ataraxis|tranquillity|tranquility|quietness|quietude +(noun)|public security|security +(noun)|peace treaty|pacification|treaty|pact|accord +peace-loving|1 +(adj)|peaceable|peaceful +peace advocacy|1 +(noun)|dovishness +peace corps|1 +(noun)|Peace Corps|organization|organisation +peace garden state|1 +(noun)|North Dakota|Peace Garden State|ND|American state +peace initiative|1 +(noun)|first step|initiative|opening move|opening +peace lily|1 +(noun)|spathiphyllum|spathe flower|flower +peace march|1 +(noun)|protest march +peace of mind|1 +(noun)|peace|peacefulness|repose|serenity|heartsease|ataraxis|tranquillity|tranquility|quietness|quietude +peace of westphalia|1 +(noun)|Peace of Westphalia|peace|peace treaty|pacification +peace offering|1 +(noun)|olive branch|offer|offering +peace officer|1 +(noun)|lawman|law officer|defender|guardian|protector|shielder +peace pipe|1 +(noun)|calumet|pipe of peace|pipe|tobacco pipe +peace process|1 +(noun)|social process +peace treaty|1 +(noun)|peace|pacification|treaty|pact|accord +peaceable|2 +(adj)|peace-loving|peaceful +(adj)|pacific|peaceful +peaceableness|1 +(noun)|peacefulness|amity +peaceably|1 +(adv)|pacifically +peaceful|3 +(adj)|peaceful |calm|serene|tranquil|halcyon|irenic|nonbelligerent|pacific|pacific|peaceable|pacifist|pacifistic|dovish|peaceable|peace-loving|undisturbed|amicable|calm|nonviolent|quiet|unaggressive|nonaggressive +(adj)|passive|nonviolent +(adj)|law-abiding|orderly +peacefulness|2 +(noun)|peaceableness|amity +(noun)|peace|peace of mind|repose|serenity|heartsease|ataraxis|tranquillity|tranquility|quietness|quietude +peacekeeper|3 +(noun)|soldier +(noun)|defender|guardian|protector|shielder +(noun)|pistol|handgun|side arm|shooting iron +peacekeeping|2 +(adj)|operation|military operation +(noun)|peacekeeping mission|peacekeeping operation|operation|military operation +peacekeeping mission|1 +(noun)|peacekeeping|peacekeeping operation|operation|military operation +peacekeeping operation|1 +(noun)|peacekeeping|peacekeeping mission|operation|military operation +peacemaker|2 +(noun)|conciliator|make-peace|pacifier|reconciler|mediator|go-between|intermediator|intermediary|intercessor +(noun)|Browning machine gun|Peacemaker|machine gun +peacenik|1 +(noun)|dove|pacifist|pacificist|disarmer +peacetime|1 +(noun)|time period|period of time|period +peach|5 +(noun)|peach tree|Prunus persica|fruit tree +(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|lulu|looker|mantrap|dish|woman|adult female +(noun)|edible fruit|drupe|stone fruit +(noun)|yellowish pink|apricot|salmon pink|pink +(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +peach-leaved willow|1 +(noun)|peachleaf willow|almond-leaves willow|Salix amygdaloides|willow|willow tree +peach-wood|2 +(noun)|brazilwood|peachwood|pernambuco wood|Caesalpinia echinata|tree +(noun)| +peach bell|1 +(noun)|peach bells|willow bell|Campanula persicifolia|campanula|bellflower +peach bells|2 +(noun)|peach bell|willow bell|Campanula persicifolia|campanula|bellflower +(noun)|peach bell|willow bell|Campanula persicifolia|campanula|bellflower +peach blight|1 +(noun)|blight +peach ice cream|1 +(noun)|ice cream +peach melba|1 +(noun)|dessert|sweet|afters +peach orchard|1 +(noun)|grove|woodlet|orchard|plantation +peach pit|1 +(noun)|stone|pit|endocarp +peach sauce|1 +(noun)|sauce +peach state|1 +(noun)|Georgia|Empire State of the South|Peach State|GA|American state +peach tree|1 +(noun)|peach|Prunus persica|fruit tree +peachick|1 +(noun)|pea-chick|peafowl|bird of Juno +peachleaf willow|1 +(noun)|peach-leaved willow|almond-leaves willow|Salix amygdaloides|willow|willow tree +peachwood|1 +(noun)|brazilwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree +peachy|1 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|slap-up|swell|smashing|good +peacoat|1 +(noun)|pea jacket|jacket +peacock|2 +(noun)|peacock butterfly|Inachis io|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +(noun)|peafowl|bird of Juno +peacock-blue|1 +(adj)|chromatic +peacock-throne|1 +(noun)|throne +peacock blue|1 +(noun)|greenish blue|aqua|aquamarine|turquoise|cobalt blue|blue|blueness +peacock butterfly|1 +(noun)|peacock|Inachis io|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +peacock flower|1 +(noun)|royal poinciana|flamboyant|flame tree|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +peacock flower fence|1 +(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|Adenanthera pavonina|tree +peacock ore|1 +(noun)|bornite|mineral +peafowl|1 +(noun)|bird of Juno|pheasant +peag|1 +(noun)|wampum|wampumpeag|beads|string of beads +peahen|1 +(noun)|peafowl|bird of Juno +peak|10 +(adj)|peak |high-season|peak-seaason +(adj)|highest|maximal +(noun)|extremum|limit|limitation +(noun)|flower|prime|heyday|bloom|blossom|efflorescence|flush|time period|period of time|period +(noun)|acme|height|elevation|pinnacle|summit|superlative|top|degree|level|stage|point +(noun)|crown|crest|top|tip|summit|topographic point|place|spot +(noun)|point|tip|convex shape|convexity +(noun)|vertex|apex|acme|extreme point|extreme|extremum +(noun)|bill|eyeshade|visor|vizor|brim +(verb)|reach|make|attain|hit|arrive at|gain +peak-seaason|1 +(adj)|high-season|peak +peak season|1 +(noun)|high season|season +peaked|2 +(adj)|ailing|indisposed|poorly|sickly|unwell|under the weather|ill |sick +(adj)|pointed +peaked cap|1 +(noun)|kepi|service cap|yachting cap|cap +peaky|1 +(adj)|spiky|high |high-pitched +peal|3 +(noun)|pealing|roll|rolling|sound +(verb)|ring +(verb)|ring|sound|go +pealing|1 +(noun)|peal|roll|rolling|sound +pean|2 +(noun)|paean|hymn|anthem +(noun)|encomium|eulogy|panegyric|paean|praise|congratulations|kudos +peanut|5 +(adj)|insignificant|minor +(noun)|pod|seedpod +(noun)|peanut vine|Arachis hypogaea|legume|leguminous plant +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(noun)|earthnut|goober|goober pea|groundnut|monkey nut|edible nut +peanut bar|1 +(noun)|candy +peanut brittle|1 +(noun)|brittle|toffee|toffy +peanut butter|1 +(noun)|spread|paste +peanut gallery|2 +(noun)|people +(noun)|second balcony|family circle|upper balcony|area +peanut oil|1 +(noun)|groundnut oil|vegetable oil|oil +peanut vine|1 +(noun)|peanut|Arachis hypogaea|legume|leguminous plant +peanut worm|1 +(noun)|sipunculid|invertebrate +peanuts|5 +(noun)|sum|sum of money|amount|amount of money +(noun)|peanut|pod|seedpod +(noun)|peanut|peanut vine|Arachis hypogaea|legume|leguminous plant +(noun)|peanut|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(noun)|peanut|earthnut|goober|goober pea|groundnut|monkey nut|edible nut +pear|2 +(noun)|edible fruit|pome|false fruit +(noun)|pear tree|Pyrus communis|fruit tree +pear-shaped|2 +(adj)|round |circular +(adj)|orotund|rotund|round|full +pear blight|1 +(noun)|fire blight|leaf blight +pear haw|1 +(noun)|blackthorn|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn|haw +pear hawthorn|1 +(noun)|blackthorn|pear haw|Crataegus calpodendron|Crataegus tomentosa|hawthorn|haw +pear tree|1 +(noun)|pear|Pyrus communis|fruit tree +pearl|4 +(noun)|jewel|gem|precious stone +(noun)|bone|ivory|off-white|white|whiteness +(noun)|drop|bead|round shape +(verb)|gather|garner|collect|pull together +pearl-fish|2 +(noun)|pearlfish|percoid fish|percoid|percoidean +(noun)| +pearl-weed|2 +(noun)|pearlwort|pearlweed|groundcover|ground cover +(noun)| +pearl ash|1 +(noun)|potassium carbonate +pearl bailey|1 +(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer|vocalist|vocalizer|vocaliser +pearl barley|1 +(noun)|barley|barleycorn +pearl buck|1 +(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer|author|missionary|missioner +pearl diver|1 +(noun)|pearler|diver|frogman|underwater diver +pearl fishery|1 +(noun)|fishery|piscary +pearl harbor|1 +(noun)|Pearl Harbor|seaport|haven|harbor|harbour +pearl hominy|1 +(noun)|hominy +pearl mae bailey|1 +(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer|vocalist|vocalizer|vocaliser +pearl millet|1 +(noun)|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal|cereal grass +pearl oyster|1 +(noun)|Pinctada margaritifera|oyster +pearl sago|1 +(noun)|sago +pearl sydenstricker buck|1 +(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer|author|missionary|missioner +pearler|1 +(noun)|pearl diver|diver|frogman|underwater diver +pearlescent|1 +(adj)|iridescent|nacreous|opalescent|opaline|bright +pearlfish|1 +(noun)|pearl-fish|percoid fish|percoid|percoidean +pearlite|1 +(noun)|lamellar mixture +pearlweed|1 +(noun)|pearlwort|pearl-weed|groundcover|ground cover +pearlwort|1 +(noun)|pearlweed|pearl-weed|groundcover|ground cover +pearly|2 +(adj)|pearly-white|achromatic +(noun)|chopper|tooth +pearly-shelled mussel|1 +(noun)|freshwater mussel|freshwater clam +pearly-white|1 +(adj)|pearly|achromatic +pearly everlasting|1 +(noun)|cottonweed|Anaphalis margaritacea|everlasting|everlasting flower +pearly nautilus|1 +(noun)|chambered nautilus|nautilus|cephalopod|cephalopod mollusk +pearly razorfish|1 +(noun)|Hemipteronatus novacula|razor fish|razor-fish +pearmain|1 +(noun)|Pearmain|eating apple|dessert apple +pearson product-moment correlation coefficient|1 +(noun)|product-moment correlation coefficient|Pearson product-moment correlation coefficient|correlation coefficient|coefficient of correlation|correlation +peary|1 +(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer|adventurer +peasant|3 +(noun)|provincial|bucolic|rustic +(noun)|agricultural laborer|agricultural labourer +(noun)|barbarian|boor|churl|Goth|tyke|tike|unpleasant person|disagreeable person +peasant's revolt|1 +(noun)|Peasant's Revolt|Great Revolt|rebellion|insurrection|revolt|rising|uprising +peasanthood|2 +(noun)|uncleanliness +(noun)|position|post|berth|office|spot|billet|place|situation +peasantry|1 +(noun)|class|social class|socio-economic class +pease pudding|1 +(noun)|pudding +peasecod|1 +(noun)|pea pod|pod|cod|seedcase +peat|1 +(noun)|vegetable matter|humate +peat bog|1 +(noun)|bog|wetland +peat moss|1 +(noun)|sphagnum|sphagnum moss|bog moss|moss +peaty|1 +(adj)|vegetable matter|humate +peavey|1 +(noun)|peavy|cant dog|lever +peavy|1 +(noun)|peavey|cant dog|lever +peba|1 +(noun)|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo +pebble|1 +(noun)|rock|stone +pebble plant|1 +(noun)|fig marigold|flower +pebbly|1 +(adj)|gravelly|shingly|beachy |beachlike +pecan|3 +(noun)|wood +(noun)|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree +(noun)|edible nut +pecan pie|1 +(noun)|pie +pecan tree|1 +(noun)|pecan|Carya illinoensis|Carya illinoinsis|nut tree +peccable|1 +(adj)|peccant|wicked +peccadillo|1 +(noun)|indiscretion|misbehavior|misbehaviour|misdeed +peccant|1 +(adj)|peccable|wicked +peccari angulatus|1 +(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary|musk hog +peccary|1 +(noun)|musk hog|even-toed ungulate|artiodactyl|artiodactyl mammal +peck|8 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|British capacity unit|Imperial capacity unit +(noun)|United States dry unit +(verb)|pick|beak|strike +(verb)|pick up|eat +(verb)|smack|kiss|buss|osculate +(verb)|pick at|peck at|eat +(verb)|nag|hen-peck|complain|kick|plain|sound off|quetch|kvetch +peck at|1 +(verb)|pick at|peck|eat +pecker|3 +(noun)|cock|prick|dick|shaft|peter|tool|putz|penis|phallus|member +(noun)|woodpecker|peckerwood|piciform bird +(noun)|beak|bill|neb|nib|mouth +peckerwood|1 +(noun)|woodpecker|pecker|piciform bird +pecking order|1 +(noun)|hierarchy|power structure|organization|organisation +peckish|2 +(adj)|hungry +(adj)|cranky|fractious|irritable|nettlesome|peevish|pettish|petulant|testy|tetchy|techy|ill-natured +pecopteris|1 +(noun)|fern +pecos|1 +(noun)|Pecos|Pecos River|river +pecos river|1 +(noun)|Pecos|Pecos River|river +pecs|1 +(noun)|pectoral|pectoral muscle|pectoralis|musculus pectoralis|skeletal muscle|striated muscle +pecten irradians|1 +(noun)|bay scallop|Pecten irradians|scallop|scollop|escallop +pecten magellanicus|1 +(noun)|sea scallop|giant scallop|Pecten magellanicus|scallop|scollop|escallop +pectic|1 +(adj)|cellulose +pectic acid|1 +(noun)|acid +pectin|1 +(noun)|cellulose +pectinate|1 +(adj)|rough +pectineal|1 +(adj)|bone|os +pectinibranchia|1 +(noun)|Pectinibranchia|order Pectinibranchia|animal order +pectinidae|1 +(noun)|Pectinidae|family Pectinidae|mollusk family +pectoral|3 +(adj)|thoracic|body part +(noun)|pectoral muscle|pectoralis|musculus pectoralis|pecs|skeletal muscle|striated muscle +(noun)|pectoral medallion|adornment +pectoral arch|1 +(noun)|shoulder girdle|arch +pectoral fin|1 +(noun)|fin +pectoral girdle|1 +(noun)|girdle +pectoral medallion|1 +(noun)|pectoral|adornment +pectoral muscle|1 +(noun)|pectoral|pectoralis|musculus pectoralis|pecs|skeletal muscle|striated muscle +pectoral sandpiper|1 +(noun)|jacksnipe|Calidris melanotos|sandpiper +pectoral vein|1 +(noun)|vena pectoralis|vein|vena|venous blood vessel +pectoralis|1 +(noun)|pectoral|pectoral muscle|musculus pectoralis|pecs|skeletal muscle|striated muscle +pectoralis major|1 +(noun)|musculus pectoralis major|greater pectoral muscle|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +pectoralis minor|1 +(noun)|musculus pectoralis minor|smaller pectoral muscle|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +pectus|1 +(noun)|thorax|chest|body part +peculate|1 +(verb)|embezzle|defalcate|misappropriate|malversate|steal +peculation|1 +(noun)|embezzlement|defalcation|misapplication|misappropriation|larceny|theft|thievery|thieving|stealing +peculator|1 +(noun)|embezzler|defalcator|thief|stealer +peculiar|4 +(adj)|curious|funny|odd|queer|rum|rummy|singular|strange |unusual +(adj)|particular|special|specific +(adj)|unusual +(adj)|characteristic +peculiar velocity|1 +(noun)|speed|velocity +peculiarity|3 +(noun)|distinctive feature|distinguishing characteristic|feature|characteristic +(noun)|specialness|specialty|speciality|distinctiveness|individuality|individualism|individuation +(noun)|curio|curiosity|oddity|oddment|rarity|object|physical object +peculiarly|3 +(adv)|particularly +(adv)|curiously|oddly +(adv)|particularly|especially|specially +pecuniary|1 +(adj)|monetary|medium of exchange|monetary system +pecuniary resource|1 +(noun)|funds|finances|monetary resource|cash in hand|assets +pedagogic|1 +(adj)|pedagogical|education +pedagogical|1 +(adj)|pedagogic|education +pedagogically|1 +(adv)|didactically +pedagogics|1 +(noun)|teaching method|pedagogy|method +pedagogue|1 +(noun)|educator|professional|professional person +pedagogy|3 +(noun)|teaching method|pedagogics|method +(noun)|teaching|instruction|education +(noun)|education|instruction|teaching|educational activity|activity +pedal|5 +(adj)|extremity|appendage|member +(noun)|pedal point|note|musical note|tone +(noun)|treadle|foot pedal|foot lever|lever +(verb)|bicycle|cycle|bike|wheel|ride +(verb)|operate|control +pedal extremity|1 +(noun)|vertebrate foot|extremity|appendage|member +pedal point|1 +(noun)|pedal|note|musical note|tone +pedal pusher|1 +(noun)|toreador pant|trousers|pants +pedaler|1 +(noun)|pedaller|rider +pedaliaceae|1 +(noun)|Pedaliaceae|family Pedaliaceae|sesame family|plant family +pedaller|1 +(noun)|pedaler|rider +pedant|1 +(noun)|bookworm|scholastic|scholar|scholarly person|student +pedantic|1 +(adj)|academic|donnish|scholarly +pedantry|1 +(noun)|ostentation|fanfare +pedate|2 +(adj)|compound +(adj)|footed +pedate leaf|1 +(noun)|palmate leaf +peddle|1 +(verb)|monger|huckster|hawk|vend|pitch|deal|sell|trade +peddler|2 +(noun)|pedlar|packman|hawker|pitchman|seller|marketer|vender|vendor|trafficker +(noun)|pusher|drug peddler|drug dealer|drug trafficker|dealer|criminal|felon|crook|outlaw|malefactor +peddling|1 +(noun)|vending|hawking|vendition|selling|merchandising|marketing +pederast|1 +(noun)|paederast|child molester|pervert|deviant|deviate|degenerate +pederastic|1 +(adj)|paederastic|homosexual +pederasty|1 +(noun)|paederasty|homosexuality|homosexualism|homoeroticism|gayness|pedophilia|paedophilia +pedesis|1 +(noun)|Brownian movement|Brownian motion|movement|motion +pedestal|3 +(noun)|base|stand|support +(noun)|status|position +(noun)|plinth|footstall|support +pedestal table|1 +(noun)|table +pedestrian|2 +(adj)|prosaic|prosy|earthbound|uninteresting +(noun)|walker|footer|traveler|traveller +pedestrian bridge|1 +(noun)|footbridge|overcrossing|bridge|span +pedestrian crossing|1 +(noun)|zebra crossing|crossing|crosswalk|crossover +pedestrian traffic|1 +(noun)|foot traffic|traffic +pediamycin|1 +(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic|antibiotic drug +pediapred|1 +(noun)|prednisolone|Pediapred|Prelone|glucocorticoid|anti-inflammatory|anti-inflammatory drug +pediatric|1 +(adj)|paediatric|medicine|medical specialty +pediatric medicine|1 +(noun)|pediatrics|paediatrics|medicine|medical specialty +pediatrician|1 +(noun)|baby doctor|pediatrist|paediatrician|specialist|medical specialist +pediatrics|1 +(noun)|paediatrics|pediatric medicine|medicine|medical specialty +pediatrist|1 +(noun)|baby doctor|pediatrician|paediatrician|specialist|medical specialist +pedicab|1 +(noun)|cycle rickshaw|tricycle|trike|velocipede +pedicel|1 +(noun)|pedicle|peduncle +pedicle|1 +(noun)|pedicel|peduncle +pediculati|1 +(noun)|Pediculati|order Pediculati|animal order +pediculicide|1 +(noun)|pesticide +pediculidae|1 +(noun)|Pediculidae|family Pediculidae|arthropod family +pediculosis|1 +(noun)|lousiness|infestation +pediculosis capitis|1 +(noun)|head lice|pediculosis|lousiness +pediculosis corporis|1 +(noun)|pediculosis|lousiness +pediculosis pubis|1 +(noun)|crabs|pediculosis|lousiness +pediculus|1 +(noun)|Pediculus|genus Pediculus|arthropod genus +pediculus capitis|1 +(noun)|head louse|Pediculus capitis|louse|sucking louse +pediculus corporis|1 +(noun)|body louse|cootie|Pediculus corporis|louse|sucking louse +pediculus humanus|1 +(noun)|common louse|Pediculus humanus|louse|sucking louse +pedicure|2 +(noun)|care|attention|aid|tending|beauty treatment +(verb)|groom|neaten +pedigree|4 +(adj)|pedigreed|pureblood|pureblooded|thoroughbred|purebred +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|breed|strain|stock +(noun)|bloodline|ancestry|lineage|derivation|filiation +pedigreed|1 +(adj)|pedigree|pureblood|pureblooded|thoroughbred|purebred +pedilanthus|1 +(noun)|Pedilanthus|genus Pedilanthus|rosid dicot genus +pedilanthus bracteatus|1 +(noun)|candelilla|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge|slipper plant +pedilanthus pavonis|1 +(noun)|candelilla|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge|slipper plant +pedilanthus tithymaloides|1 +(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge|slipper plant +pediment|1 +(noun)|gable|gable end|gable wall +pediocactus|1 +(noun)|Pediocactus|genus Pediocactus|caryophylloid dicot genus +pediocactus knowltonii|1 +(noun)|Knowlton's cactus|Pediocactus knowltonii|cactus +pedioecetes|1 +(noun)|Pedioecetes|genus Pedioecetes|bird genus +pedioecetes phasianellus|1 +(noun)|sharp-tailed grouse|sprigtail|sprig tail|Pedioecetes phasianellus|grouse +pedionomus|1 +(noun)|Pedionomus|genus Pedionomus|bird genus +pedionomus torquatus|1 +(noun)|plain wanderer|Pedionomus torquatus|wading bird|wader +pedipalpi|1 +(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order +pedlar|1 +(noun)|peddler|packman|hawker|pitchman|seller|marketer|vender|vendor|trafficker +pedodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +pedometer|1 +(noun)|measuring instrument|measuring system|measuring device +pedophile|1 +(noun)|paedophile|pervert|deviant|deviate|degenerate +pedophilia|1 +(noun)|paedophilia|paraphilia +pedro calderon de la barca|1 +(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist|playwright|poet +peduncle|3 +(noun)|growth +(noun)|scape|flower stalk +(noun)|cerebral peduncle|nerve pathway|tract|nerve tract|pathway +pedunculate|1 +(adj)|pedunculate |stalked +pedunculate oak|1 +(noun)|common oak|English oak|Quercus robur|white oak +pedunculated polyp|1 +(noun)|polyp|polypus +pedwood|1 +(noun)|common European dogwood|red dogwood|blood-twig|Cornus sanguinea|dogwood|dogwood tree|cornel +pee|3 +(noun)|urine|piss|piddle|weewee|water|body waste|excretion|excreta|excrement|excretory product +(noun)|peeing|pissing|piss|micturition|urination +(verb)|make|urinate|piddle|puddle|micturate|piss|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +pee-pee|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +pee dee|1 +(noun)|Pee Dee|Pee Dee River|river +pee dee river|1 +(noun)|Pee Dee|Pee Dee River|river +peeing|1 +(noun)|pee|pissing|piss|micturition|urination +peek|2 +(noun)|peep|look|looking|looking at +(verb)|glance|glint|look +peekaboo|1 +(noun)|bopeep|child's game +peel|6 +(noun)|skin|rind|plant tissue +(noun)|Peel|Robert Peel|Sir Robert Peel|politician|politico|pol|political leader +(noun)|skin|rind +(verb)|skin|pare|strip +(verb)|peel off|flake off|flake|chip|chip off|come off|break away|break off +(verb)|undress|discase|uncase|unclothe|strip|strip down|disrobe|take off +peel of|1 +(verb)|depart|take leave|quit +peel off|5 +(verb)|skin|peel|pare +(verb)|take off +(verb)|swerve|sheer|curve|trend|veer|slue|slew|cut +(verb)|peel|flake off|flake|chip|chip off|come off|break away|break off +(verb)|desquamate|shed|molt|exuviate|moult|slough +peeled|1 +(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|naked as a jaybird|stark naked|unclothed +peeler|3 +(noun)|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|performer|performing artist +(noun)|worker +(noun)|device +peeling|2 +(adj)|damaged +(noun)|desquamation|shedding|organic phenomenon +peen|1 +(noun)|part|portion +peep|7 +(noun)|cheep|cry +(noun)|peek|look|looking|looking at +(verb)|look +(verb)|show +(verb)|twirp|cheep|chirp|chirrup|utter|emit|let out|let loose +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|appear +peep sight|1 +(noun)|gunsight|gun-sight +peeper|3 +(noun)|voyeur|Peeping Tom|spectator|witness|viewer|watcher|looker +(noun)|eye|oculus|optic +(noun)|animal|animate being|beast|brute|creature|fauna +peephole|1 +(noun)|spyhole|hole +peeping tom|1 +(noun)|voyeur|Peeping Tom|peeper|spectator|witness|viewer|watcher|looker +peepshow|2 +(noun)|raree-show|exhibition|exposition|expo +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +peepul|1 +(noun)|pipal|pipal tree|pipul|sacred fig|bo tree|Ficus religiosa|fig tree +peer|3 +(noun)|equal|match|compeer|person|individual|someone|somebody|mortal|human|soul +(noun)|Lord|noble|nobleman|peerage|baronage +(verb)|look +peer group|1 +(noun)|coevals|contemporaries|generation +peer of the realm|1 +(noun)|peer +peer review|1 +(verb)|referee|review|critique +peerage|1 +(noun)|baronage|nobility|aristocracy +peeress|1 +(noun)|Lady|noblewoman|female aristocrat +peerless|1 +(adj)|matchless|nonpareil|one|one and only|unmatched|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +peeve|1 +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +peeved|1 +(adj)|annoyed|irritated|miffed|nettled|pissed|pissed off|riled|roiled|steamed|stunng|displeased +peevish|1 +(adj)|cranky|fractious|irritable|nettlesome|peckish|pettish|petulant|testy|tetchy|techy|ill-natured +peevishly|1 +(adv)|querulously|fractiously +peevishness|2 +(noun)|irritability|crossness|fretfulness|fussiness|petulance|choler|ill humor|ill humour|distemper +(noun)|temper|biliousness|irritability|pettishness|snappishness|surliness|ill nature +peewee|2 +(noun)|runt|shrimp|half-pint|small person +(noun)|pewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +peewit|2 +(noun)|lapwing|green plover|pewit|plover +(noun)|pewee|peewee|pewit|wood pewee|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +peg|10 +(noun)|nog|pin +(noun)|pin|marker|marking|mark +(noun)|pin|stick|leg +(noun)|wooden leg|leg|pegleg|prosthesis|prosthetic device +(noun)|regulator +(noun)|pin|thole|tholepin|rowlock|oarlock|holder +(verb)|nail down|nail|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|pierce|thrust +(verb)|peg down|attach|peg down +(verb)|stabilize|stabilise +peg away|1 +(verb)|plug away|slog|keep one's nose to the grindstone|keep one's shoulder to the wheel|work +peg down|2 +(verb)|peg|attach +(verb)|pin down|nail down|narrow down|narrow|specify|determine +peg top|1 +(noun)|top|whirligig|teetotum|spinning top +pegasus|2 +(noun)|Pegasus|flying horse|mythical being +(noun)|Pegasus|constellation +pegboard|1 +(noun)|board|gameboard +pegged-down|1 +(adj)|fastened +pegleg|1 +(noun)|peg|wooden leg|leg|prosthesis|prosthetic device +pegmatite|1 +(noun)|igneous rock +pei|1 +(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect|designer +peignoir|1 +(noun)|negligee|neglige|wrapper|housecoat|garment +peiping|1 +(noun)|Beijing|Peking|Peiping|capital of Red China|national capital +peirce|2 +(noun)|Peirce|Benjamin Peirce|mathematician|astronomer|uranologist|stargazer +(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher|logician|logistician +peireskia|1 +(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus +pejorative|1 +(adj)|dyslogistic|dislogistic|uncomplimentary +pekan|1 +(noun)|fisher|fisher cat|black cat|Martes pennanti|marten|marten cat +peke|1 +(noun)|Pekinese|Pekingese|Peke|toy dog|toy +pekinese|1 +(noun)|Pekinese|Pekingese|Peke|toy dog|toy +peking|1 +(noun)|Beijing|Peking|Peiping|capital of Red China|national capital +peking man|2 +(noun)|Peking man|homo erectus +(noun)|Peking man|Homo erectus +pekingese|2 +(noun)|Pekinese|Pekingese|Peke|toy dog|toy +(noun)|Pekinese|Pekingese|Peke|toy dog|toy +pekoe|1 +(noun)|orange pekoe|black tea +pel|1 +(noun)|pixel|picture element|component|constituent|element +pelage|1 +(noun)|coat|hair +pelagic|1 +(adj)|oceanic|body of water|water +pelagic bird|1 +(noun)|oceanic bird|seabird|sea bird|seafowl +pelargonium|1 +(noun)|Pelargonium|genus Pelargonium|rosid dicot genus +pelargonium graveolens|1 +(noun)|rose geranium|sweet-scented geranium|Pelargonium graveolens|geranium +pelargonium hortorum|1 +(noun)|fish geranium|bedding geranium|zonal pelargonium|Pelargonium hortorum|geranium +pelargonium limoneum|1 +(noun)|lemon geranium|Pelargonium limoneum|geranium +pelargonium odoratissimum|1 +(noun)|apple geranium|nutmeg geranium|Pelargonium odoratissimum|geranium +pelargonium peltatum|1 +(noun)|ivy geranium|ivy-leaved geranium|hanging geranium|Pelargonium peltatum|geranium +pelecanidae|1 +(noun)|Pelecanidae|family Pelecanidae|bird family +pelecaniform seabird|1 +(noun)|seabird|sea bird|seafowl +pelecaniformes|1 +(noun)|Pelecaniformes|order Pelecaniformes|animal order +pelecanoididae|1 +(noun)|Pelecanoididae|family Pelecanoididae|bird family +pelecanus|1 +(noun)|Pelecanus|genus Pelecanus|bird genus +pelecanus erythrorhynchos|1 +(noun)|white pelican|Pelecanus erythrorhynchos|pelican +pelecanus onocrotalus|1 +(noun)|Old world white pelican|Pelecanus onocrotalus|pelican +pelecypod|2 +(adj)|lamellibranch|pelecypodous|bivalve |bivalved +(noun)|bivalve|lamellibranch|mollusk|mollusc|shellfish +pelecypodous|1 +(adj)|lamellibranch|pelecypod|bivalve |bivalved +peleus|1 +(noun)|Peleus|mythical being +pelew|1 +(noun)|Palau|Palau Islands|Belau|Pelew|archipelago +pelf|1 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|scratch|shekels|simoleons|sugar|wampum|money +pelham|1 +(noun)|Pelham|bit +pelham grenville wodehouse|1 +(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer|author +pelican|1 +(noun)|pelecaniform seabird +pelican crossing|1 +(noun)|pedestrian crossing|zebra crossing +pelican state|1 +(noun)|Louisiana|Pelican State|LA|American state +peliosis|1 +(noun)|purpura|blood disease|blood disorder +pelisse|1 +(noun)|cape|mantle +pell-mell|2 +(adj)|helter-skelter|hurried +(adv)|harum-scarum +pellaea|1 +(noun)|Pellaea|genus Pellaea|fern genus +pellaea andromedifolia|1 +(noun)|coffee fern|Pellaea andromedifolia|cliff brake|cliff-brake|rock brake +pellaea atropurpurea|1 +(noun)|purple rock brake|Pellaea atropurpurea|cliff brake|cliff-brake|rock brake +pellaea mucronata|1 +(noun)|bird's-foot fern|Pellaea mucronata|Pellaea ornithopus|cliff brake|cliff-brake|rock brake +pellaea ornithopus|1 +(noun)|bird's-foot fern|Pellaea mucronata|Pellaea ornithopus|cliff brake|cliff-brake|rock brake +pellaea rotundifolia|1 +(noun)|button fern|Pellaea rotundifolia|fern +pellagra|1 +(noun)|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +pellet|2 +(noun)|ball|globe|orb +(noun)|shot|projectile|missile +pellicle|1 +(noun)|investment +pellicularia|1 +(noun)|Pellicularia|genus Pellicularia|fungus genus +pellicularia filamentosa|1 +(noun)|potato fungus|Pellicularia filamentosa|Rhizoctinia solani|fungus +pellicularia koleroga|1 +(noun)|coffee fungus|Pellicularia koleroga|fungus +pellitory|2 +(noun)|pellitory-of-the-wall|wall pellitory|Parietaria difussa|herb|herbaceous plant +(noun)|pellitory-of-Spain|Anacyclus pyrethrum|herb|herbaceous plant +pellitory-of-spain|1 +(noun)|pellitory|pellitory-of-Spain|Anacyclus pyrethrum|herb|herbaceous plant +pellitory-of-the-wall|1 +(noun)|wall pellitory|pellitory|Parietaria difussa|herb|herbaceous plant +pellucid|2 +(adj)|crystalline|crystal clear|limpid|lucid|transparent|clear +(adj)|limpid|lucid|luculent|crystal clear|perspicuous|clear +pellucidity|2 +(noun)|clarity|lucidity|clearness|limpidity|comprehensibility|understandability +(noun)|pellucidness|limpidity|transparency|transparence|transparentness +pellucidly|1 +(adv)|lucidly|limpidly|perspicuously +pellucidness|1 +(noun)|pellucidity|limpidity|transparency|transparence|transparentness +pelmet|1 +(noun)|cornice|valance|valance board|framework|frame|framing +pelobatidae|1 +(noun)|Pelobatidae|family Pelobatidae|amphibian family +peloponnese|1 +(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula +peloponnesian|1 +(adj)|Peloponnesian|peninsula +peloponnesian peninsula|1 +(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula +peloponnesian war|1 +(noun)|Peloponnesian War|war|warfare +peloponnesus|1 +(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula +pelota|1 +(noun)|jai alai|court game +pelt|5 +(noun)|fur|animal skin +(noun)|hide|skin|body covering +(verb)|bombard|throw +(verb)|pepper|attack|assail +(verb)|pour|stream|rain cats and dogs|rain buckets|rain|rain down +pelt along|1 +(verb)|rush|hotfoot|hasten|hie|speed|race|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +peltandra|1 +(noun)|Peltandra|genus Peltandra|monocot genus|liliopsid genus +peltandra virginica|1 +(noun)|green arrow arum|tuckahoe|Peltandra virginica|arrow arum +peltate|1 +(adj)|shield-shaped|simple |unsubdivided +peltate leaf|1 +(noun)|simple leaf +pelter|2 +(noun)|downpour|cloudburst|deluge|waterspout|torrent|soaker|rain|rainfall +(noun)|thrower +pelting|1 +(noun)|rain|sequence|chronological sequence|succession|successiveness|chronological succession +peltiphyllum|1 +(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus +peltiphyllum peltatum|1 +(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb|herbaceous plant +peludo|1 +(noun)|poyou|Euphractus sexcinctus|armadillo +pelvic|1 +(adj)|girdle +pelvic arch|1 +(noun)|pelvis|pelvic girdle|hip|girdle +pelvic cavity|1 +(noun)|cavity|bodily cavity|cavum +pelvic fin|1 +(noun)|ventral fin|fin +pelvic girdle|1 +(noun)|pelvis|pelvic arch|hip|girdle +pelvic inflammatory disease|1 +(noun)|PID|inflammatory disease +pelvimeter|1 +(noun)|measuring instrument|measuring system|measuring device +pelvimetry|1 +(noun)|measurement|measuring|measure|mensuration +pelvis|2 +(noun)|pelvic girdle|pelvic arch|hip|girdle +(noun)|renal pelvis|cavity|bodily cavity|cavum +pelycosaur|1 +(noun)|synapsid|synapsid reptile +pelycosauria|1 +(noun)|Pelycosauria|order Pelycosauria|animal order +pembroke|1 +(noun)|Pembroke|Pembroke Welsh corgi|corgi|Welsh corgi +pembroke welsh corgi|1 +(noun)|Pembroke|Pembroke Welsh corgi|corgi|Welsh corgi +pemican|1 +(noun)|pemmican|meat +pemmican|1 +(noun)|pemican|meat +pempheridae|1 +(noun)|Pempheridae|family Pempheridae|fish family +pemphigous|1 +(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +pemphigus|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +pen|6 +(noun)|writing implement +(noun)|enclosure +(noun)|playpen|enclosure +(noun)|penitentiary|correctional institution +(noun)|swan +(verb)|write|compose|indite|create verbally +pen-and-ink|1 +(noun)|drawing +pen-friend|1 +(noun)|pen pal|correspondent|letter writer +pen-tail|2 +(noun)|pentail|pen-tailed tree shrew|tree shrew +(noun)| +pen-tailed tree shrew|1 +(noun)|pentail|pen-tail|tree shrew +pen name|1 +(noun)|nom de plume|pseudonym|anonym|nom de guerre +pen nib|1 +(noun)|nib|point +pen pal|1 +(noun)|pen-friend|correspondent|letter writer +pen up|1 +(verb)|fold|restrain|confine|hold +penal|3 +(adj)|social control +(adj)|punitive |punitory +(adj)|punishable|illegal +penal code|1 +(noun)|legal code +penal colony|1 +(noun)|penal institution|penal facility +penal facility|1 +(noun)|penal institution|institution +penal institution|1 +(noun)|penal facility|institution +penalisation|1 +(noun)|punishment|penalty|penalization|social control +penalise|1 +(verb)|punish|penalize +penalised|1 +(adj)|fined|penalized|punished +penalization|1 +(noun)|punishment|penalty|penalisation|social control +penalize|1 +(verb)|punish|penalise +penalized|1 +(adj)|fined|penalised|punished +penally|1 +(adv)|punitively|punitorily +penalty|4 +(noun)|punishment|penalization|penalisation|social control +(noun)|payment +(noun)|disadvantage +(noun)|handicap +penalty box|1 +(noun)|bench +penalty free throw|1 +(noun)|foul shot|free throw|charity toss|charity throw|charity shot|basketball shot +penance|3 +(noun)|repentance|penitence|compunction|remorse|self-reproach +(noun)|sacrament +(noun)|self-mortification|self-abasement|punishment|penalty|penalization|penalisation +penchant|1 +(noun)|preference|predilection|taste|liking +pencil|5 +(noun)|writing implement +(noun)|graphite|black lead|plumbago +(noun)|figure +(noun)|cosmetic|cosmetics +(verb)|draw +pencil box|1 +(noun)|pencil case|box +pencil case|1 +(noun)|pencil box|box +pencil cedar|2 +(noun)|pencil cedar tree|juniper +(noun)|red cedar +pencil cedar tree|1 +(noun)|pencil cedar|juniper +pencil eraser|1 +(noun)|rubber eraser|rubber|eraser +pencil lead|1 +(noun)|lead|graphite|black lead|plumbago +pencil pusher|1 +(noun)|penpusher|clerk +penciled|1 +(adj)|pencilled|draw +pencilled|1 +(adj)|penciled|draw +pendant|2 +(noun)|adornment +(noun)|chandelier|lighting fixture +pendant earring|1 +(noun)|drop earring|eardrop|earring +pending|1 +(adj)|unfinished +pendragon|1 +(noun)|headman|tribal chief|chieftain +pendulous|1 +(adj)|cernuous|drooping|nodding|unerect +pendulum|1 +(noun)|apparatus|setup +pendulum clock|1 +(noun)|clock +pendulum watch|1 +(noun)|watch|ticker +peneidae|1 +(noun)|Peneidae|family Peneidae|arthropod family +penelope|2 +(noun)|Penelope|mythical being +(noun)|Penelope|genus Penelope|bird genus +peneplain|1 +(noun)|peneplane|plain|field|champaign +peneplane|1 +(noun)|peneplain|plain|field|champaign +penetrability|1 +(noun)|perviousness|permeability|permeableness +penetrable|2 +(adj)|penetrable +(adj)|vulnerable +penetralia|1 +(noun)|inside|interior +penetrate|7 +(verb)|perforate|enter|come in|get into|get in|go into|go in|move into +(verb)|fathom|bottom|understand +(verb)|click|get through|dawn|come home|get across|sink in|fall into place +(verb)|infiltrate|join|fall in|get together +(verb)|advance|progress|pass on|move on|march on|go on +(verb)|insert|infix|enter|introduce +(verb)|permeate|pervade|interpenetrate|diffuse|imbue|perforate +penetrating|2 +(adj)|acute|discriminating|incisive|keen|knifelike|penetrative|piercing|sharp|perceptive +(adj)|penetrative|sharp +penetrating injury|1 +(noun)|penetrating trauma|injury|hurt|harm|trauma +penetrating trauma|1 +(noun)|penetrating injury|injury|hurt|harm|trauma +penetratingly|1 +(adv)|penetratively +penetration|6 +(noun)|incursion|attack|onslaught|onset|onrush +(noun)|insight|perception +(noun)|entrance|entering|entry|ingress|incoming +(noun)|ability +(noun)|depth +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +penetration bomb|1 +(noun)|bomb +penetrative|2 +(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|piercing|sharp|perceptive +(adj)|penetrating|sharp +penetratively|1 +(adv)|penetratingly +penetrator|1 +(noun)|intruder|interloper|trespasser +peneus|1 +(noun)|Peneus|genus Peneus|arthropod genus +pengo|2 +(noun)|Hungarian monetary unit +(noun)|Pengo|South-Central Dravidian +penguin|1 +(noun)|sphenisciform seabird +penial|1 +(adj)|penile|erectile organ +penicillamine|1 +(noun)|Cuprimine|medicine|medication|medicament|medicinal drug +penicillin|1 +(noun)|antibiotic|antibiotic drug +penicillin-resistant|1 +(adj)|antibiotic|antibiotic drug +penicillin-resistant bacteria|1 +(noun)|bacteria|bacterium +penicillin f|1 +(noun)|penicillin F|penicillin +penicillin g|1 +(noun)|penicillin G|benzylpenicillin|penicillin +penicillin o|1 +(noun)|penicillin O|penicillin +penicillin v|1 +(noun)|penicillin V|phenoxymethyl penicillin|penicillin +penicillin v potassium|1 +(noun)|penicillin V potassium|Ledercillin VK|penicillin V|phenoxymethyl penicillin +penicillinase|1 +(noun)|beta-lactamase|enzyme +penicillinase-resistant antibiotic|1 +(noun)|penicillin +penicillium|1 +(noun)|Penicillium|genus Penicillium|fungus genus +penile|1 +(adj)|penial|erectile organ +penile implant|1 +(noun)|implant +peninsula|1 +(noun)|land|dry land|earth|ground|solid ground|terra firma +peninsular|1 +(adj)|land|dry land|earth|ground|solid ground|terra firma +penis|1 +(noun)|phallus|member|erectile organ +penis envy|1 +(noun)|envy|enviousness|the green-eyed monster +penitence|1 +(noun)|repentance|penance|compunction|remorse|self-reproach +penitent|2 +(adj)|penitent |contrite|remorseful|rueful|ruthful|sorry|penitential|ashamed +(noun)|religionist|religious person +penitential|2 +(adj)|compunction|remorse|self-reproach +(adj)|penitent +penitentially|1 +(adv)|penitently|repentantly +penitentiary|2 +(adj)|punitive |punitory +(noun)|pen|correctional institution +penitently|1 +(adv)|penitentially|repentantly +penknife|1 +(noun)|pocketknife|pocket knife +penlight|1 +(noun)|flashlight|torch +penman|1 +(noun)|scribe|scribbler|journalist +penmanship|1 +(noun)|calligraphy|handwriting|hand|script +penn|2 +(noun)|Penn|William Penn|Friend|Quaker +(noun)|University of Pennsylvania|Pennsylvania|Penn|university +penn'orth|1 +(noun)|pennyworth|worth +pennant|3 +(noun)|crown|award|accolade|honor|honour|laurels +(noun)|flag|signal flag +(noun)|pennon|streamer|waft|flag +pennate|1 +(adj)|feathered +pennatula|1 +(noun)|Pennatula|genus Pennatula|coelenterate genus +pennatulidae|1 +(noun)|Pennatulidae|family Pennatulidae|coelenterate family +penne|1 +(noun)|pasta|alimentary paste +penned|1 +(adj)|confined|fenced in|enclosed +penni|1 +(noun)|Finnish monetary unit +penniless|1 +(adj)|hard up|impecunious|in straitened circumstances|penurious|pinched|poor +pennilessness|1 +(noun)|impecuniousness|penuriousness|poverty|poorness|impoverishment +pennine chain|1 +(noun)|Pennines|Pennine Chain|hills +pennines|1 +(noun)|Pennines|Pennine Chain|hills +penning|1 +(noun)|writing|authorship|composition|verbal creation +pennisetum|1 +(noun)|Pennisetum|genus Pennisetum|monocot genus|liliopsid genus +pennisetum americanum|1 +(noun)|pearl millet|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal|cereal grass +pennisetum cenchroides|1 +(noun)|buffel grass|Cenchrus ciliaris|Pennisetum cenchroides|burgrass|bur grass +pennisetum glaucum|1 +(noun)|pearl millet|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal|cereal grass +pennisetum ruppelii|1 +(noun)|fountain grass|Pennisetum ruppelii|Pennisetum setaceum|grass +pennisetum setaceum|1 +(noun)|fountain grass|Pennisetum ruppelii|Pennisetum setaceum|grass +pennistum villosum|1 +(noun)|feathertop|feathertop grass|Pennistum villosum|grass +pennon|2 +(noun)|pennant|streamer|waft|flag +(noun)|pinion|wing +pennoncel|1 +(noun)|penoncel|pennoncelle|pennant|pennon|streamer|waft +pennoncelle|1 +(noun)|pennoncel|penoncel|pennant|pennon|streamer|waft +pennsylvania|3 +(noun)|Pennsylvania|Keystone State|PA|American state +(noun)|Pennsylvania|Colony +(noun)|University of Pennsylvania|Pennsylvania|Penn|university +pennsylvania dutch|1 +(noun)|Pennsylvania Dutch|German|High German|German language +pennsylvanian|2 +(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period|geological period +(noun)|Pennsylvanian|American +pennsylvanian period|1 +(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period|geological period +penny|2 +(noun)|fractional monetary unit|subunit +(noun)|cent|centime|coin +penny-pinch|1 +(verb)|nickel-and-dime|spend|expend|drop +penny-pinching|2 +(adj)|cheeseparing|close|near|stingy |ungenerous +(noun)|parsimony|parsimoniousness|thrift|frugality|frugalness +penny-wise|1 +(adj)|thrifty +penny ante|2 +(noun)|deal|trade|business deal +(noun)|penny ante poker|poker|poker game +penny ante poker|1 +(noun)|penny ante|poker|poker game +penny arcade|1 +(noun)|arcade +penny bank|1 +(noun)|piggy bank|savings bank|coin bank|money box|bank +penny dreadful|1 +(noun)|dime novel|novel +penny grass|1 +(noun)|field pennycress|French weed|fanweed|stinkweed|mithridate mustard|Thlaspi arvense|pennycress +penny pincher|1 +(noun)|hoarder +penny stock|1 +(noun)|over the counter stock|OTC stock|unlisted stock +pennycress|1 +(noun)|weed +pennyroyal|2 +(noun)|Mentha pulegium|mint +(noun)|American pennyroyal|Hedeoma pulegioides|herb|herbaceous plant +pennyroyal oil|2 +(noun)|oil +(noun)|hedeoma oil|oil +pennyweight|1 +(noun)|troy unit +pennywhistle|1 +(noun)|tin whistle|whistle|fipple flute|fipple pipe|recorder|vertical flute +pennyworth|1 +(noun)|penn'orth|worth +penobscot|2 +(noun)|Penobscot|Algonquian|Algonquin +(noun)|Penobscot|Penobscot River|river +penobscot bay|1 +(noun)|Penobscot Bay|bay +penobscot river|1 +(noun)|Penobscot|Penobscot River|river +penoche|1 +(noun)|penuche|panoche|panocha|fudge +penologist|1 +(noun)|social scientist +penology|1 +(noun)|poenology|criminology +penoncel|1 +(noun)|pennoncel|pennoncelle|pennant|pennon|streamer|waft +penpusher|1 +(noun)|pencil pusher|clerk +pensacola|1 +(noun)|Pensacola|town +pension|2 +(noun)|regular payment +(verb)|pension off|award|grant +pension account|1 +(noun)|pension plan|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program|plan|program|programme +pension fund|2 +(noun)|superannuation fund|fund|monetary fund +(noun)|nondepository financial institution +pension off|3 +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|pension|award|grant +(verb)|retire|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +pension plan|1 +(noun)|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program|plan|program|programme +pensionable|1 +(adj)|eligible +pensionary|2 +(noun)|pensioner|beneficiary|donee +(noun)|hireling|employee +pensioner|1 +(noun)|pensionary|beneficiary|donee +pensive|2 +(adj)|brooding|broody|contemplative|meditative|musing|pondering|reflective|ruminative|thoughtful +(adj)|wistful|sad +pensiveness|2 +(noun)|brooding|melancholy +(noun)|meditativeness|contemplativeness|thoughtfulness +penstemon|1 +(noun)|Penstemon|genus Penstemon|asterid dicot genus +penstemon barbatus|1 +(noun)|golden-beard penstemon|Penstemon barbatus|wildflower|wild flower +penstemon centranthifolius|1 +(noun)|scarlet bugler|Penstemon centranthifolius|wildflower|wild flower +penstemon cyananthus|1 +(noun)|Platte River penstemon|Penstemon cyananthus|wildflower|wild flower +penstemon davidsonii|1 +(noun)|Davidson's penstemon|Penstemon davidsonii|wildflower|wild flower +penstemon deustus|1 +(noun)|hot-rock penstemon|Penstemon deustus|wildflower|wild flower +penstemon dolius|1 +(noun)|Jones' penstemon|Penstemon dolius|wildflower|wild flower +penstemon fruticosus|1 +(noun)|shrubby penstemon|lowbush penstemon|Penstemon fruticosus|wildflower|wild flower +penstemon linarioides|1 +(noun)|narrow-leaf penstemon|Penstemon linarioides|wildflower|wild flower +penstemon newberryi|1 +(noun)|mountain pride|Penstemon newberryi|wildflower|wild flower +penstemon palmeri|1 +(noun)|balloon flower|scented penstemon|Penstemon palmeri|wildflower|wild flower +penstemon parryi|1 +(noun)|Parry's penstemon|Penstemon parryi|wildflower|wild flower +penstemon rupicola|1 +(noun)|rock penstemon|cliff penstemon|Penstemon rupicola|wildflower|wild flower +penstemon rydbergii|1 +(noun)|Rydberg's penstemon|Penstemon rydbergii|wildflower|wild flower +penstemon serrulatus|1 +(noun)|cascade penstemon|Penstemon serrulatus|wildflower|wild flower +penstemon whippleanus|1 +(noun)|Whipple's penstemon|Penstemon whippleanus|wildflower|wild flower +penstock|2 +(noun)|sluicegate|sluice valve|floodgate|head gate|water gate|regulator +(noun)|sluice|sluiceway|conduit +pent|1 +(adj)|shut up|confined +pent-up|1 +(adj)|repressed|inhibited +pentacle|1 +(noun)|pentagram|star +pentad|1 +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|fin|Phoebe|Little Phoebe|digit|figure +pentaerythritol|1 +(noun)|Peritrate|vasodilator|vasodilative +pentagon|3 +(noun)|Pentagon|government building +(noun)|Pentagon|bureaucracy|bureaucratism +(noun)|polygon|polygonal shape +pentagon gang|1 +(noun)|Pentagon Gang|terrorist organization|terrorist group|foreign terrorist organization|FTO +pentagonal|1 +(adj)|pentangular|polygon|polygonal shape +pentagram|1 +(noun)|pentacle|star +pentahedron|1 +(noun)|polyhedron +pentail|1 +(noun)|pen-tail|pen-tailed tree shrew|tree shrew +pentamerous|1 +(adj)|divided +pentameter|1 +(noun)|verse|verse line +pentamethylenetetrazol|1 +(noun)|pentylenetetrazol|Metrazol|medicine|medication|medicament|medicinal drug +pentangular|1 +(adj)|pentagonal|polygon|polygonal shape +pentanoic acid|1 +(noun)|valeric acid|carboxylic acid +pentastomid|1 +(noun)|tongue worm|arthropod +pentastomida|1 +(noun)|Pentastomida|subphylum Pentastomida|phylum +pentasyllabic|1 +(adj)|syllabic +pentateuch|1 +(noun)|Torah|Pentateuch|Laws|sacred text|sacred writing|religious writing|religious text +pentathlete|1 +(noun)|athlete|jock +pentathlon|1 +(noun)|athletic contest|athletic competition|athletics +pentatonic|1 +(adj)|gapped scale +pentatonic scale|1 +(noun)|gapped scale +pentavalent|1 +(adj)|power|powerfulness +pentazocine|1 +(noun)|Talwin|analgesic|anodyne|painkiller|pain pill +pentecost|2 +(noun)|Pentecost|Whitsunday|quarter day +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +pentecostal|3 +(adj)|Protestant Church|Protestant +(adj)|quarter day +(noun)|Pentecostal|Pentecostalist|Protestant +pentecostal religion|1 +(noun)|Pentecostal religion|Protestant Church|Protestant +pentecostalism|1 +(noun)|Protestantism +pentecostalist|1 +(noun)|Pentecostal|Pentecostalist|Protestant +penthouse|1 +(noun)|apartment|flat +pentimento|1 +(noun)|painting|picture +pentlandite|1 +(noun)|mineral +pentobarbital|1 +(noun)|pentobarbital sodium|Nembutal|yellow jacket|barbiturate +pentobarbital sodium|1 +(noun)|pentobarbital|Nembutal|yellow jacket|barbiturate +pentode|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +pentose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +pentothal|1 +(noun)|thiopental|thiopental sodium|thiopentobarbital sodium|Pentothal|barbiturate|truth serum|truth drug +pentoxide|1 +(noun)|oxide +pentoxifylline|1 +(noun)|Trental|drug +pentylenetetrazol|1 +(noun)|pentamethylenetetrazol|Metrazol|medicine|medication|medicament|medicinal drug +penuche|1 +(noun)|penoche|panoche|panocha|fudge +penuchle|1 +(noun)|pinochle|pinocle|bezique|card game|cards +penult|1 +(noun)|penultima|penultimate|syllable +penultima|1 +(noun)|penult|penultimate|syllable +penultimate|2 +(adj)|next-to-last|last +(noun)|penult|penultima|syllable +penumbra|1 +(noun)|shadow +penumbral|1 +(adj)|shadow +penurious|2 +(adj)|hard up|impecunious|in straitened circumstances|penniless|pinched|poor +(adj)|parsimonious|stingy |ungenerous +penuriousness|2 +(noun)|impecuniousness|pennilessness|poverty|poorness|impoverishment +(noun)|stinginess +penury|1 +(noun)|indigence|need|beggary|pauperism|pauperization|poverty|poorness|impoverishment +penutian|2 +(noun)|Penutian|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Penutian|Indian|North American Indian|American Indian|Red Indian +peon|1 +(noun)|drudge|navvy|galley slave|laborer|manual laborer|labourer|jack +peonage|2 +(noun)|subjugation|subjection +(noun)|practice|pattern +peony|1 +(noun)|paeony|flower +peony family|1 +(noun)|Paeoniaceae|family Paeoniaceae|magnoliid dicot family +people|6 +(noun)|group|grouping +(noun)|citizenry|group|grouping +(noun)|multitude|masses|mass|hoi polloi|group|grouping +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|phratry +(verb)|populate|fill|fill up|make full +(verb)|dwell|shack|reside|live|inhabit|populate|domicile|domiciliate|be +people's liberation army|1 +(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +people's mujahidin of iran|1 +(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization|terrorist group|foreign terrorist organization|FTO +people's party|1 +(noun)|People's Party|Populist Party|party|political party +people's republic of bangladesh|1 +(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country|Asian nation +people's republic of china|1 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +people's republican army|1 +(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization|terrorist group|foreign terrorist organization|FTO +people against gangsterism and drugs|1 +(noun)|People against Gangsterism and Drugs|PAGAD|terrorist organization|terrorist group|foreign terrorist organization|FTO +people of color|1 +(noun)|color|colour|people of colour|race +people of colour|1 +(noun)|color|colour|people of color|race +peopled|1 +(adj)|inhabited +peoria|1 +(noun)|Peoria|city|metropolis|urban center +pep|1 +(noun)|peppiness|ginger|liveliness|life|spirit|sprightliness +pep pill|1 +(noun)|amphetamine|upper|speed|stimulant|stimulant drug|drug of abuse|street drug +pep rally|1 +(noun)|rally|mass meeting +pep talk|1 +(noun)|exhortation|incitement +pep up|2 +(verb)|cheer|inspire|urge|barrack|urge on|exhort|encourage +(verb)|jazz up|juice up|ginger up|enliven|liven|liven up|invigorate|animate +pepcid|1 +(noun)|famotidine|Pepcid|histamine blocker +peperomia|1 +(noun)|herb|herbaceous plant +peperomia argyreia|1 +(noun)|watermelon begonia|Peperomia argyreia|Peperomia sandersii|peperomia +peperomia sandersii|1 +(noun)|watermelon begonia|Peperomia argyreia|Peperomia sandersii|peperomia +peplos|1 +(noun)|peplus|peplum|garment +peplum|2 +(noun)|frill|flounce|ruffle|furbelow +(noun)|peplos|peplus|garment +peplus|1 +(noun)|peplos|peplum|garment +pepper|6 +(noun)|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +(noun)|capsicum|capsicum pepper plant|shrub|bush +(noun)|peppercorn|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|solanaceous vegetable +(verb)|zest|spice|spice up +(verb)|pelt|attack|assail +pepper-and-salt|1 +(noun)|fabric|cloth|material|textile +pepper box|1 +(noun)|pepper shaker|pepper pot|shaker +pepper bush|1 +(noun)|sweet pepperbush|summer sweet|white alder|Clethra alnifolia|shrub|bush +pepper family|1 +(noun)|Piperaceae|family Piperaceae|dicot family|magnoliopsid family +pepper grass|1 +(noun)|common garden cress|garden pepper cress|pepperwort|Lepidium sativum|cress|cress plant +pepper grinder|1 +(noun)|pepper mill|mill|grinder +pepper mill|1 +(noun)|pepper grinder|mill|grinder +pepper pot|2 +(noun)|Philadelphia pepper pot|soup +(noun)|pepper shaker|pepper box|shaker +pepper root|1 +(noun)|crinkleroot|crinkle-root|crinkle root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +pepper sauce|1 +(noun)|Poivrade|sauce +pepper shaker|1 +(noun)|pepper box|pepper pot|shaker +pepper shrub|1 +(noun)|Pseudowintera colorata|Wintera colorata|shrub|bush +pepper spray|1 +(noun)|aerosol|aerosol container|aerosol can|aerosol bomb|spray can|chemical weapon +pepper steak|2 +(noun)|steak au poivre|peppered steak|dish +(noun)|dish +pepper tree|2 +(noun)|molle|Peruvian mastic tree|Schinus molle|tree +(noun)|Kirkia wilmsii|tree +pepper vine|1 +(noun)|true pepper|vine +peppercorn|1 +(noun)|pepper|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +peppercorn rent|1 +(noun)|rent +peppered steak|1 +(noun)|steak au poivre|pepper steak|dish +pepperidge|1 +(noun)|sour gum|black gum|Nyssa sylvatica|tupelo|tupelo tree +pepperiness|1 +(noun)|hotness|spiciness|spice|spicery +peppermint|3 +(noun)|Mentha piperita|mint +(noun)|red gum|peppermint gum|Eucalyptus amygdalina|eucalyptus|eucalypt|eucalyptus tree +(noun)|peppermint candy|mint|mint candy +peppermint candy|1 +(noun)|peppermint|mint|mint candy +peppermint gum|1 +(noun)|red gum|peppermint|Eucalyptus amygdalina|eucalyptus|eucalypt|eucalyptus tree +peppermint oil|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +peppermint patty|1 +(noun)|patty +pepperoni|1 +(noun)|sausage +pepperoni pizza|1 +(noun)|pizza|pizza pie +pepperwood|1 +(noun)|California laurel|California bay tree|Oregon myrtle|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +pepperwort|2 +(noun)|clover fern|aquatic fern|water fern +(noun)|common garden cress|garden pepper cress|pepper grass|Lepidium sativum|cress|cress plant +peppery|1 +(adj)|gingery|hot|spicy|pungent +peppiness|1 +(noun)|pep|ginger|liveliness|life|spirit|sprightliness +peppy|1 +(adj)|bouncing|bouncy|spirited|zippy|lively +pepsi|1 +(noun)|Pepsi|Pepsi Cola|cola|dope +pepsi cola|1 +(noun)|Pepsi|Pepsi Cola|cola|dope +pepsin|1 +(noun)|enzyme +pepsinogen|1 +(noun)|enzyme +peptic|1 +(adj)|organic process|biological process +peptic ulcer|1 +(noun)|peptic ulceration|ulcer|ulceration +peptic ulceration|1 +(noun)|peptic ulcer|ulcer|ulceration +peptidase|1 +(noun)|protease|proteinase|proteolytic enzyme|enzyme +peptide|1 +(noun)|amide +peptide bond|1 +(noun)|peptide linkage|chemical bond|bond +peptide linkage|1 +(noun)|peptide bond|chemical bond|bond +peptisation|1 +(noun)|peptization|chemical process|chemical change|chemical action +peptise|1 +(verb)|peptize|separate +peptising|1 +(adj)|peptizing|separate +peptization|1 +(noun)|peptisation|chemical process|chemical change|chemical action +peptize|1 +(verb)|peptise|separate +peptizing|1 +(adj)|peptising|separate +pepto-bismal|1 +(noun)|Pepto-bismal|antacid|gastric antacid|alkalizer|alkaliser|antiacid +peptone|1 +(noun)|organic compound +pepys|1 +(noun)|Pepys|Samuel Pepys|diarist|diary keeper|journalist +per annum|1 +(adv)|p.a.|per year|each year|annually +per capita|2 +(adj)|proportionate +(adv)|for each person|of each person +per capita income|1 +(noun)|income +per centum|1 +(noun)|percentage|percent|pct|proportion|proportionality +per diem|1 +(adv)|by the day +per se|1 +(adv)|intrinsically|as such|in and of itself +per year|1 +(adv)|per annum|p.a.|each year|annually +peradventure|1 +(adv)|possibly|perchance|perhaps|maybe|mayhap +perambulate|2 +(verb)|inspect +(verb)|walk about|walk around|walk +perambulating|1 +(adj)|mobile +perambulation|2 +(noun)|walk +(noun)|amble|promenade|ramble|saunter|stroll|walk +perambulator|1 +(noun)|baby buggy|baby carriage|carriage|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle +peramelidae|1 +(noun)|Peramelidae|family Peramelidae|mammal family +perboric acid|1 +(noun)|boric acid|boracic acid +perca|1 +(noun)|Perca|genus Perca|fish genus +perca flavescens|1 +(noun)|yellow perch|Perca flavescens|perch +perca fluviatilis|1 +(noun)|European perch|Perca fluviatilis|perch +percale|1 +(noun)|fabric|cloth|material|textile +perceivable|2 +(adj)|perceptible +(adj)|apprehensible|intelligible|graspable|understandable|comprehensible |comprehendible +perceive|2 +(verb)|comprehend +(verb)|understand|realize|realise|see +perceived|2 +(adj)|sensed|detected +(adj)|detected +perceiver|1 +(noun)|observer|beholder|person|individual|someone|somebody|mortal|human|soul +percent|1 +(noun)|percentage|per centum|pct|proportion|proportionality +percent sign|1 +(noun)|percentage sign|character|grapheme|graphic symbol +percentage|2 +(noun)|percent|per centum|pct|proportion|proportionality +(noun)|share|portion|part|assets +percentage point|1 +(noun)|decimal point|mathematical notation +percentage sign|1 +(noun)|percent sign|character|grapheme|graphic symbol +percentile|1 +(noun)|centile|mark|grade|score +percept|1 +(noun)|perception|perceptual experience|representation|mental representation|internal representation +perceptibility|1 +(noun)|physical property +perceptible|3 +(adj)|perceptible |detectable|noticeable|discernible|faint|palpable|perceivable|recognizable|sensible|audible|hearable|visible|seeable +(adj)|obvious|palpable |tangible +(adj)|detectable|noticeable +perceptibly|1 +(adv)|noticeably +perception|5 +(noun)|percept|perceptual experience|representation|mental representation|internal representation +(noun)|conceptualization|conceptualisation|conceptuality +(noun)|basic cognitive process +(noun)|cognition|knowledge|noesis +(noun)|sensing|sensory activity +perceptive|2 +(adj)|sensory activity +(adj)|perceptive |acute|discriminating|incisive|keen|knifelike|penetrating|penetrative|piercing|sharp|apperceptive|insightful|observant|observing|quick-sighted|sharp-sighted|sharp-eyed|subtle|understanding|apprehensive|discerning +perceptiveness|4 +(noun)|insight|perceptivity|sensibility +(noun)|taste|appreciation|discernment|discrimination|secernment +(noun)|discernment|perception +(noun)|sensitivity|sensitiveness +perceptivity|1 +(noun)|insight|perceptiveness|sensibility +perceptual|1 +(adj)|sensory activity +perceptual experience|1 +(noun)|percept|perception|representation|mental representation|internal representation +perch|10 +(noun)|support +(noun)|rod|pole|linear unit +(noun)|rod|pole|area unit|square measure +(noun)|seat|place +(noun)|freshwater fish +(noun)|percoid fish|percoid|percoidean +(noun)|percoid fish|percoid|percoidean +(verb)|roost|rest|sit|sit down +(verb)|alight|light|land|set down +(verb)|put|set|place|pose|position|lay +perchance|2 +(adv)|by chance +(adv)|possibly|perhaps|maybe|mayhap|peradventure +perched|1 +(adj)|perked|perked up|alert +percher|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Insessores|order Insessores|perching bird|animal order +perching bird|1 +(noun)|Insessores|order Insessores|percher|animal order +perchlorate|1 +(noun)|salt +perchloric acid|1 +(noun)|acid +perchloride|1 +(noun)|chloride +perchloromethane|1 +(noun)|carbon tetrachloride|carbon tet|tetrachloromethane|solvent|dissolvent|dissolver|dissolving agent|resolvent|tetrachloride +percidae|1 +(noun)|Percidae|family Percidae|fish family +perciformes|1 +(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order +percina|1 +(noun)|Percina|genus Percina|fish genus +percina tanasi|1 +(noun)|snail darter|Percina tanasi|perch +percipient|1 +(adj)|clear|discerning +percival lowell|1 +(noun)|Lowell|Percival Lowell|astronomer|uranologist|stargazer +percoid|1 +(noun)|percoid fish|percoidean|spiny-finned fish|acanthopterygian +percoid fish|1 +(noun)|percoid|percoidean|spiny-finned fish|acanthopterygian +percoidea|1 +(noun)|Percoidea|suborder Percoidea|animal order +percoidean|1 +(noun)|percoid fish|percoid|spiny-finned fish|acanthopterygian +percolate|5 +(noun)|filtrate +(verb)|leach|trickle|dribble|filter +(verb)|diffuse|spread|spread out|fan out +(verb)|sink in|permeate|filter|penetrate|perforate +(verb)|perk up|perk|pick up|gain vigor|recuperate|recover|convalesce +percolation|3 +(noun)|infiltration|filtration +(noun)|cooking|cookery|preparation +(noun)|filtration +percolator|1 +(noun)|coffeepot +percomorphi|1 +(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order +percophidae|1 +(noun)|Percophidae|family Percophidae|fish family +percuss|1 +(verb)|tap|tip +percussion|4 +(noun)|music +(noun)|detonation +(noun)|percussion section|rhythm section|section +(noun)|pleximetry|auscultation +percussion cap|1 +(noun)|detonator|detonating device|cap +percussion instrument|1 +(noun)|percussive instrument|musical instrument|instrument +percussion section|1 +(noun)|percussion|rhythm section|section +percussionist|1 +(noun)|musician|instrumentalist|player +percussive|1 +(adj)|music +percussive instrument|1 +(noun)|percussion instrument|musical instrument|instrument +percussor|1 +(noun)|plexor|plessor|hammer +percutaneous|1 +(adj)|transdermal|transdermic|transcutaneous|connective tissue|body covering +percy|2 +(noun)|Percy|Walker Percy|writer|author +(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier +percy aldridge grainger|1 +(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer +percy bysshe shelley|1 +(noun)|Shelley|Percy Bysshe Shelley|poet +percy grainger|1 +(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer +perdicidae|1 +(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family +perdicinae|1 +(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family +perdition|1 +(noun)|Hell|Inferno|infernal region|nether region|the pit|imaginary place|mythical place +perdix|1 +(noun)|Perdix|genus Perdix|bird genus +perdix perdix|1 +(noun)|Hungarian partridge|gray partridge|Perdix perdix|partridge +perdurability|1 +(noun)|permanence|permanency +perdurable|1 +(adj)|durable|indestructible|undestroyable|imperishable +pere david's deer|1 +(noun)|elaphure|Elaphurus davidianus|deer|cervid +pere jacques marquette|1 +(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary|missioner +peregrinate|1 +(verb)|travel|trip|jaunt +peregrination|1 +(noun)|travel|traveling|travelling +peregrine|2 +(adj)|mobile|nomadic|roving|wandering|unsettled +(noun)|peregrine falcon|Falco peregrinus|falcon +peregrine falcon|1 +(noun)|peregrine|Falco peregrinus|falcon +perejil|1 +(noun)|Perejil|isle|islet +peremptorily|1 +(adv)|imperatively +peremptory|3 +(adj)|autocratic|bossy|dominating|high-and-mighty|magisterial|domineering +(adj)|imperative +(adj)|decisive +perennate|1 +(verb)|survive|last|live|live on|go|endure|hold up|hold out +perennation|1 +(noun)|organic process|biological process +perennial|4 +(adj)|perennial +(adj)|long +(adj)|recurrent|repeated|continual +(noun)|plant|flora|plant life +perennial pea|1 +(noun)|broad-leaved everlasting pea|Lathyrus latifolius|everlasting pea +perennial ragweed|1 +(noun)|western ragweed|Ambrosia psilostachya|ragweed|ambrosia|bitterweed +perennial ryegrass|1 +(noun)|English ryegrass|Lolium perenne|rye grass|ryegrass +perennial salt marsh aster|1 +(noun)|aster +pereskia|1 +(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus +pereskia aculeata|1 +(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine +perestroika|1 +(noun)|economic policy +perfect|5 +(adj)|perfect |clean|clear|cold|complete|consummate|down|down pat|mastered|errorless|faultless|immaculate|impeccable|flawless|unflawed|ideal|idealized|idealised|idyllic|mint|perfectible|pluperfect|uncorrupted|undefiled|exact|unblemished|unbroken|utopian +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated +(adj)|exact +(noun)|perfective|perfective tense|perfect tense|tense +(verb)|hone|better|improve|amend|ameliorate|meliorate +perfect game|1 +(noun)|baseball|baseball game|ball +perfect gas|1 +(noun)|ideal gas|gas +perfect participle|1 +(noun)|past participle|participle|participial +perfect tense|1 +(noun)|perfective|perfective tense|perfect|tense +perfecta|1 +(noun)|exacta|bet|wager +perfectability|1 +(noun)|perfectibility|capability|capableness|potentiality +perfected|1 +(adj)|formed +perfecter|1 +(noun)|skilled worker|trained worker +perfectibility|1 +(noun)|perfectability|capability|capableness|potentiality +perfectible|1 +(adj)|perfect +perfection|3 +(noun)|flawlessness|ne plus ultra|state +(noun)|paragon|idol|beau ideal|ideal +(noun)|improvement +perfectionism|1 +(noun)|disposition|temperament +perfectionist|1 +(noun)|compulsive +perfective|2 +(noun)|perfective tense|perfect|perfect tense|tense +(noun)|perfective aspect|aspect +perfective aspect|1 +(noun)|perfective|aspect +perfective tense|1 +(noun)|perfective|perfect|perfect tense|tense +perfectly|1 +(adv)|absolutely|utterly|dead +perfervid|1 +(adj)|ardent|burning|fervent|fervid|fiery|impassioned|torrid|passionate +perfidious|1 +(adj)|punic|treacherous|unfaithful +perfidiousness|1 +(noun)|perfidy|treachery|disloyalty +perfidy|2 +(noun)|perfidiousness|treachery|disloyalty +(noun)|treachery|betrayal|treason|dishonesty|knavery +perfluorocarbon|1 +(noun)|PFC|fluorocarbon|greenhouse gas|greenhouse emission +perfoliate|1 +(adj)|simple |unsubdivided +perfoliate leaf|1 +(noun)|simple leaf +perforate|3 +(adj)|pierced|perforated|punctured|cut +(verb)|punch|pierce +(verb)|penetrate|enter|come in|get into|get in|go into|go in|move into +perforated|2 +(adj)|pierced|perforate|punctured|cut +(adj)|cut +perforated eardrum|1 +(noun)|eardrum|tympanum|tympanic membrane|myringa +perforating vein|1 +(noun)|vena perforantis|vein|vena|venous blood vessel +perforation|3 +(noun)|hole +(noun)|hole +(noun)|puncture +perform|4 +(verb)|execute|do +(verb)|act|move +(verb)|re-create +(verb)|do|carry through|accomplish|execute|carry out|action|fulfill|fulfil +performance|5 +(noun)|public presentation|show +(noun)|execution|carrying out|carrying into action|action +(noun)|presentation|presentment|demonstration +(noun)|operation|functioning|process +(noun)|accomplishment|achievement +performance bond|1 +(noun)|surety bond|bond|bond certificate +performance capability|1 +(noun)|operating capability|capability|capableness +performer|1 +(noun)|performing artist|entertainer +performing|1 +(noun)|acting|playing|playacting|activity|performing arts +performing artist|1 +(noun)|performer|entertainer +performing arts|1 +(noun)|humanistic discipline|humanities|liberal arts|arts +perfume|4 +(noun)|essence|toiletry|toilet article|toiletries +(noun)|aroma|fragrance|scent|smell|odor|odour|olfactory sensation|olfactory perception +(verb)|aromatize|aromatise|odorize|odourise|scent +(verb)|scent|groom|neaten +perfumed|2 +(adj)|scented|fragrant +(adj)|odoriferous|odorous|scented|sweet|sweet-scented|sweet-smelling|fragrant +perfumer|1 +(noun)|maker|shaper +perfumery|4 +(noun)|perfume|essence +(noun)|shop|store +(noun)|establishment +(noun)|art|artistic creation|artistic production +perfunctorily|1 +(adv)|as a formality|pro forma +perfunctory|2 +(adj)|casual|cursory|passing|careless +(adj)|pro forma|formal +perfuse|2 +(verb)|flush +(verb)|suffuse|flush +perfusion|1 +(noun)|insertion|introduction|intromission +pergamum|1 +(noun)|Pergamum|city|metropolis|urban center +pergola|1 +(noun)|arbor|arbour|bower|framework|frame|framing +perhaps|1 +(adv)|possibly|perchance|maybe|mayhap|peradventure +peri|2 +(noun)|girl|miss|missy|young lady|young woman|fille +(noun)|spirit|disembodied spirit +periactin|1 +(noun)|cyproheptadine|Periactin|antihistamine +perianal|1 +(adj)|orifice|opening|porta +perianth|1 +(noun)|chlamys|floral envelope|perigone|perigonium|plant organ|covering|natural covering|cover +periapsis|1 +(noun)|point of periapsis|celestial point +periarterial plexus|1 +(noun)|plexus periarterialis|nerve plexus +periarteritis|1 +(noun)|arteritis +periarteritis nodosa|1 +(noun)|polyarteritis nodosa|disease +pericallis|1 +(noun)|Pericallis|genus Pericallis|asterid dicot genus +pericallis cruenta|1 +(noun)|cineraria|Pericallis cruenta|Senecio cruentus|flower +pericallis hybrida|1 +(noun)|florest's cineraria|Pericallis hybrida|flower +pericardiac|1 +(adj)|pericardial|serous membrane|serosa +pericardial|1 +(adj)|pericardiac|serous membrane|serosa +pericardial cavity|1 +(noun)|pericardial space|cavity|bodily cavity|cavum +pericardial sac|1 +(noun)|sac +pericardial space|1 +(noun)|pericardial cavity|cavity|bodily cavity|cavum +pericardial vein|1 +(noun)|vena pericardiaca|vein|vena|venous blood vessel +pericarditis|1 +(noun)|carditis +pericardium|1 +(noun)|serous membrane|serosa +pericarp|1 +(noun)|seed vessel|covering|natural covering|cover +pericementoclasia|1 +(noun)|pyorrhea|pyorrhoea|pyorrhea alveolaris|Riggs' disease +periclase|1 +(noun)|magnesia|magnesium oxide|mineral +pericles|1 +(noun)|Pericles|statesman|solon|national leader +peridinian|1 +(noun)|dinoflagellate +peridiniidae|1 +(noun)|Peridiniidae|family Peridiniidae|protoctist family +peridinium|1 +(noun)|Peridinium|genus Peridinium|protoctist genus +peridium|1 +(noun)|covering|natural covering|cover +peridot|1 +(noun)|transparent gem|chrysolite +peridotite|1 +(noun)|igneous rock +perigee|1 +(noun)|periapsis|point of periapsis +perigon|1 +(noun)|round angle|angle +perigonal|1 +(adj)|plant organ|covering|natural covering|cover +perigone|1 +(noun)|perianth|chlamys|floral envelope|perigonium|plant organ|covering|natural covering|cover +perigonium|1 +(noun)|perianth|chlamys|floral envelope|perigone|plant organ|covering|natural covering|cover +perihelion|1 +(noun)|periapsis|point of periapsis +perijove|1 +(noun)|periapsis|point of periapsis +peril|5 +(noun)|hazard|jeopardy|risk|danger +(noun)|riskiness|danger +(noun)|risk|danger|venture +(verb)|endanger|jeopardize|jeopardise|menace|threaten|imperil|exist|be +(verb)|queer|expose|scupper|endanger|affect|impact|bear upon|bear on|touch on|touch +perilla|1 +(noun)|Perilla|genus Perilla|asterid dicot genus +perilla frutescens crispa|1 +(noun)|beefsteak plant|Perilla frutescens crispa|herb|herbaceous plant +perilous|1 +(adj)|parlous|precarious|touch-and-go|dangerous |unsafe +perilously|1 +(adv)|hazardously|dangerously +perilousness|1 +(noun)|hazardousness|danger +perilune|1 +(noun)|periselene|periapsis|point of periapsis +perilymph|1 +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +perimeter|3 +(noun)|margin|border|boundary|edge|bound +(noun)|line +(noun)|circumference|size +perinasal|1 +(adj)|perirhinal|chemoreceptor +perinatal|1 +(adj)|perinatal +perinatologist|1 +(noun)|obstetrician|accoucheur +perinatology|1 +(noun)|obstetrics|OB|tocology|midwifery +perineal|1 +(adj)|area|region +perineal artery|1 +(noun)|arteria perinealis|artery|arteria|arterial blood vessel +perineotomy|1 +(noun)|incision|section|surgical incision +perineum|1 +(noun)|area|region +perineurium|1 +(noun)|connective tissue +period|8 +(noun)|time period|period of time|fundamental quantity|fundamental measure +(noun)|playing period|period of play|play +(noun)|historic period|historical period|time period|period of time +(noun)|time interval|interval +(noun)|menstruation|menses|menstruum|catamenia|flow|discharge|emission|expelling +(noun)|point|full stop|stop|full point|punctuation|punctuation mark +(noun)|geological period|geological time|geologic time +(noun)|end|ending +period of play|1 +(noun)|playing period|play|measure|quantity|amount +period of time|1 +(noun)|time period|period|fundamental quantity|fundamental measure +period piece|1 +(noun)|work of art +periodic|3 +(adj)|periodic |periodical|cyclic|oscillatory|oscillating|intermittent|pulsed +(adj)|rhythmical |rhythmic +(adj)|sporadic +periodic acid|1 +(noun)|oxyacid|oxygen acid +periodic apnea of the newborn|1 +(noun)|apnea +periodic breathing|1 +(noun)|Cheyne-Stokes respiration|breathing|external respiration|respiration|ventilation +periodic event|1 +(noun)|recurrent event|happening|occurrence|natural event +periodic law|1 +(noun)|Mendeleev's law|law|law of nature +periodic motion|1 +(noun)|periodic movement|movement|motion +periodic movement|1 +(noun)|periodic motion|movement|motion +periodic sentence|1 +(noun)|complex sentence +periodic table|1 +(noun)|table|tabular array +periodical|2 +(adj)|periodic |cyclic|oscillatory|oscillating|intermittent|pulsed +(noun)|publication +periodical cicada|1 +(noun)|seventeen-year locust|Magicicada septendecim|cicada|cicala +periodically|1 +(adv)|sporadically +periodicity|1 +(noun)|cyclicity|regularity +periodontal|1 +(adj)|periodontic|dentistry|dental medicine|odontology +periodontal disease|1 +(noun)|periodontitis|disease +periodontia|1 +(noun)|periodontics|dentistry|dental medicine|odontology +periodontic|1 +(adj)|periodontal|dentistry|dental medicine|odontology +periodontics|1 +(noun)|periodontia|dentistry|dental medicine|odontology +periodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +periodontitis|1 +(noun)|periodontal disease|disease +periophthalmus|1 +(noun)|Periophthalmus|genus Periophthalmus|fish genus +periosteum|1 +(noun)|membrane|tissue layer +peripatetic|3 +(adj)|wayfaring|unsettled +(noun)|pedestrian|walker|footer +(noun)|Aristotelian|Aristotelean|Peripatetic|disciple|adherent +peripatidae|1 +(noun)|Peripatidae|family Peripatidae|arthropod family +peripatopsidae|1 +(noun)|Peripatopsidae|family Peripatopsidae|arthropod family +peripatopsis|1 +(noun)|Peripatopsis|genus Peripatopsis|arthropod genus +peripatus|1 +(noun)|onychophoran|velvet worm|arthropod +peripeteia|1 +(noun)|peripetia|peripety|surprise +peripetia|1 +(noun)|peripeteia|peripety|surprise +peripety|1 +(noun)|peripeteia|peripetia|surprise +peripheral|3 +(adj)|peripheral |circumferential|fringy|marginal|encircling|skirting|off-base +(adj)|incidental |incident +(noun)|computer peripheral|peripheral device|electronic equipment +peripheral device|1 +(noun)|peripheral|computer peripheral|electronic equipment +peripheral nervous system|1 +(noun)|systema nervosum periphericum|system +peripheral vision|1 +(noun)|sight|vision|visual sense|visual modality +periphery|1 +(noun)|fringe|outer boundary|boundary|edge|bound +periphrasis|1 +(noun)|circumlocution|ambage|verboseness|verbosity +periphrastic|1 +(adj)|circumlocutious|circumlocutory|ambagious|indirect +periplaneta|1 +(noun)|Periplaneta|genus Periplaneta|arthropod genus +periplaneta americana|1 +(noun)|American cockroach|Periplaneta americana|cockroach|roach +periplaneta australasiae|1 +(noun)|Australian cockroach|Periplaneta australasiae|cockroach|roach +periploca|1 +(noun)|Periploca|genus Periploca|dicot genus|magnoliopsid genus +periploca graeca|1 +(noun)|silk vine|Periploca graeca|vine +peripteral|1 +(adj)|peripteral |monopteral|peristylar|pseudoperipteral +perirhinal|1 +(adj)|perinasal|chemoreceptor +periscope|1 +(noun)|optical instrument +periselene|1 +(noun)|perilune|periapsis|point of periapsis +perish|1 +(verb)|die|decease|go|exit|pass away|expire|pass|change state|turn +perishable|1 +(adj)|perishable |biodegradable|decayable|putrescible|putrefiable|spoilable|destructible +perishables|1 +(noun)|spoilables|foodstuff|food product +perisher|1 +(noun)|cad|bounder|blackguard|dog|hound|heel +perisoreus|1 +(noun)|Perisoreus|genus Perisoreus|bird genus +perisoreus canadensis|1 +(noun)|Canada jay|gray jay|camp robber|whisker jack|Perisoreus canadensis|jay +perisoreus canadensis capitalis|1 +(noun)|Rocky Mountain jay|Perisoreus canadensis capitalis|Canada jay|gray jay|camp robber|whisker jack|Perisoreus canadensis +perisperm|1 +(noun)|plant tissue +perissodactyl|1 +(noun)|odd-toed ungulate|perissodactyl mammal|ungulate|hoofed mammal +perissodactyl mammal|1 +(noun)|odd-toed ungulate|perissodactyl|ungulate|hoofed mammal +perissodactyla|1 +(noun)|Perissodactyla|order Perissodactyla|animal order +peristalsis|1 +(noun)|vermiculation|bodily process|body process|bodily function|activity +peristediinae|1 +(noun)|Peristediinae|subfamily Peristediinae|fish family +peristedion|1 +(noun)|Peristedion|genus Peristedion|fish genus +peristedion miniatum|1 +(noun)|armored searobin|armored sea robin|Peristedion miniatum|sea robin|searobin +peristome|2 +(noun)|plant process|enation +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +peristylar|1 +(adj)|pseudoperipteral|peripteral +peristyle|1 +(noun)|colonnade +perithecium|1 +(noun)|ascocarp +perithelial|1 +(adj)|membrane|tissue layer +perithelium|1 +(noun)|membrane|tissue layer +peritoneal|1 +(adj)|serous membrane|serosa +peritoneal cavity|1 +(noun)|greater peritoneal sac|cavity|bodily cavity|cavum +peritoneal inflammation|1 +(noun)|peritonitis|inflammation|redness|rubor +peritoneum|1 +(noun)|serous membrane|serosa +peritonitis|1 +(noun)|peritoneal inflammation|inflammation|redness|rubor +peritonsillar abscess|1 +(noun)|quinsy|angina +peritrate|1 +(noun)|pentaerythritol|Peritrate|vasodilator|vasodilative +peritrichous|1 +(adj)|covered +periwig|1 +(noun)|peruke|wig +periwigged|1 +(adj)|peruked|wigged +periwinkle|4 +(noun)|subshrub|suffrutex +(noun)|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +(noun)|winkle|seafood +(noun)|winkle|seasnail +periwinkle plant derivative|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +perjure|1 +(verb)|lie +perjurer|1 +(noun)|false witness|liar|prevaricator +perjury|1 +(noun)|bearing false witness|lying under oath|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +perk|2 +(noun)|fringe benefit|perquisite|benefit +(verb)|perk up|percolate|pick up|gain vigor|recuperate|recover|convalesce +perk up|2 +(verb)|perk|percolate|pick up|gain vigor|recuperate|recover|convalesce +(verb)|stimulate|arouse|brace|energize|energise|affect +perked|1 +(adj)|perched|perked up|alert +perked up|2 +(adj)|enlivened +(adj)|perched|perked|alert +perkily|1 +(adv)|saucily +perkiness|2 +(noun)|buoyancy|cheerfulness|blitheness +(noun)|impertinence|pertness|sauciness|archness|playfulness|fun +perky|1 +(adj)|buoyant|chirpy|cheerful +perleche|1 +(noun)|cheilosis|disorder|upset +perm|3 +(noun)|Perm|Molotov|city|metropolis|urban center +(noun)|permanent wave|permanent|wave +(verb)|wave +permafrost|1 +(noun)|land|ground|soil +permalloy|1 +(noun)|Permalloy|nickel-base alloy|nickel alloy +permanence|1 +(noun)|permanency|duration|length +permanency|1 +(noun)|permanence|duration|length +permanent|3 +(adj)|permanent |lasting|abiding|enduring|imperishable|ageless|eternal|everlasting|perpetual|unending|unceasing|indissoluble|standing|ineradicable|stable|unchangeable +(adj)|irreversible +(noun)|permanent wave|perm|wave +permanent-press|1 +(adj)|drip-dry|unironed |wrinkled +permanent-press fabric|1 +(noun)|permanent press|durable press|durable-press fabric|fabric|cloth|material|textile +permanent injunction|1 +(noun)|final injunction|injunction|enjoining|enjoinment|cease and desist order +permanent magnet|1 +(noun)|static magnet|magnet +permanent press|1 +(noun)|permanent-press fabric|durable press|durable-press fabric|fabric|cloth|material|textile +permanent tooth|1 +(noun)|adult tooth|tooth +permanent wave|1 +(noun)|permanent|perm|wave +permanently|1 +(adv)|for good +permanganate|1 +(noun)|salt +permanganate of potash|1 +(noun)|potassium permanganate|permanganate +permanganic acid|1 +(noun)|acid +permeability|1 +(noun)|permeableness|porosity|porousness +permeable|1 +(adj)|permeable |porous|leaky|semipermeable|leaky|pervious +permeableness|1 +(noun)|permeability|porosity|porousness +permeant|1 +(adj)|permeating|permeative|pervasive|distributive +permeate|3 +(verb)|pervade|penetrate|interpenetrate|diffuse|imbue|penetrate|perforate +(verb)|percolate|sink in|filter|penetrate|perforate +(verb)|interpenetrate|penetrate|perforate +permeated|1 +(adj)|penetrate|perforate +permeating|1 +(adj)|permeant|permeative|pervasive|distributive +permeation|2 +(noun)|pervasion|suffusion|diffusion +(noun)|interpenetration|penetration +permeative|1 +(adj)|permeant|permeating|pervasive|distributive +permed|1 +(adj)|curly +permian|1 +(noun)|Permian|Permian period|period|geological period +permian period|1 +(noun)|Permian|Permian period|period|geological period +permic|1 +(noun)|Permic|Fennic|Finnic|Non-Ugric +permissibility|1 +(noun)|admissibility +permissible|2 +(adj)|permissible |allowable|permitted|tolerable +(adj)|admissible +permissibly|1 +(adv)|allowably +permission|2 +(noun)|approval|commendation +(noun)|license|permit|authorization|authorisation|empowerment +permissive|2 +(adj)|permissive |admitting of|allowing of|permitting of|bailable +(adj)|permissive |indulgent|lax|lenient|soft +permissive waste|1 +(noun)|waste|act|human action|human activity +permissiveness|1 +(noun)|tolerance|disposition|temperament +permit|6 +(noun)|license|licence|legal document|legal instrument|official document|instrument +(noun)|license|permission|authorization|authorisation|empowerment +(noun)|Trachinotus falcatus|pompano +(verb)|allow|let|countenance|accept|consent|go for +(verb)|let|allow +(verb)|allow|tolerate|allow|let|countenance +permitted|1 +(adj)|allowable|permissible +permitting of|1 +(adj)|admitting of|allowing of|permissive +permutability|1 +(noun)|permutableness|transposability|exchangeability|interchangeability|interchangeableness|fungibility +permutable|1 +(adj)|transposable|exchangeable +permutableness|1 +(noun)|permutability|transposability|exchangeability|interchangeability|interchangeableness|fungibility +permutation|4 +(noun)|substitution|transposition|replacement|switch|variation|fluctuation +(noun)|mathematical process|mathematical operation|operation +(noun)|transformation|translation +(noun)|reordering +permute|1 +(verb)|commute|transpose|change by reversal|turn|reverse +pernambuco|1 +(noun)|Recife|Pernambuco|city|metropolis|urban center|port +pernambuco wood|1 +(noun)|brazilwood|peachwood|peach-wood|Caesalpinia echinata|tree +pernicious|2 +(adj)|baneful|deadly|pestilent|noxious |harmful +(adj)|insidious|subtle|harmful +pernicious anaemia|1 +(noun)|pernicious anemia|malignant anemia|malignant anaemia|anemia|anaemia +pernicious anemia|1 +(noun)|pernicious anaemia|malignant anemia|malignant anaemia|anemia|anaemia +perniciously|2 +(adv)|insidiously +(adv)|banefully +perniciousness|1 +(noun)|toxicity|unwholesomeness|morbidness|morbidity +pernickety|1 +(adj)|persnickety|fastidious +pernio|1 +(noun)|chilblain|chilblains|blain +pernis|1 +(noun)|Pernis|genus Pernis|bird genus +pernis apivorus|1 +(noun)|honey buzzard|Pernis apivorus|hawk +pernod|1 +(noun)|Pernod|liqueur|cordial +pernyi moth|1 +(noun)|Antheraea pernyi|saturniid|saturniid moth +perodicticus|1 +(noun)|Perodicticus|genus Perodicticus|mammal genus +perodicticus potto|1 +(noun)|potto|kinkajou|Perodicticus potto|lemur +perognathus|1 +(noun)|Perognathus|genus Perognathus|mammal genus +perognathus flavescens|1 +(noun)|plains pocket mouse|Perognathus flavescens|pocket mouse +perognathus flavus|1 +(noun)|silky pocket mouse|Perognathus flavus|pocket mouse +perognathus hispidus|1 +(noun)|hispid pocket mouse|Perognathus hispidus|pocket mouse +peromyscus|1 +(noun)|Peromyscus|genus Peromyscus|mammal genus +peromyscus eremicus|1 +(noun)|cactus mouse|Peromyscus eremicus|wood mouse +peromyscus gossypinus|1 +(noun)|cotton mouse|Peromyscus gossypinus|wood mouse +peromyscus leucopus|1 +(noun)|white-footed mouse|vesper mouse|Peromyscus leucopus|wood mouse +peromyscus maniculatus|1 +(noun)|deer mouse|Peromyscus maniculatus|wood mouse +peron|1 +(noun)|Peron|Juan Domingo Peron|soldier +peroneal|1 +(adj)|leg bone +peroneal vein|1 +(noun)|fibular vein|vena peroneus|vein|vena|venous blood vessel +peroneus|1 +(noun)|skeletal muscle|striated muscle +peronospora|1 +(noun)|Peronospora|genus Peronospora|fungus genus +peronospora destructor|1 +(noun)|onion mildew|Peronospora destructor|downy mildew|false mildew +peronospora hyoscyami|1 +(noun)|tobacco mildew|Peronospora hyoscyami|downy mildew|false mildew +peronospora tabacina|1 +(noun)|blue mold fungus|Peronospora tabacina|downy mildew|false mildew +peronosporaceae|1 +(noun)|Peronosporaceae|family Peronosporaceae|fungus family +peronosporales|1 +(noun)|Peronosporales|order Peronosporales|fungus order +perorate|2 +(verb)|conclude +(verb)|declaim|recite +peroration|2 +(noun)|oration +(noun)|conclusion|end|close|closing|ending +peroxidase|1 +(noun)|oxidase +peroxide|3 +(noun)|hydrogen peroxide|oxide +(noun)|oxide +(verb)|bleach +peroxide blond|1 +(noun)|peroxide blonde|blond|blonde +peroxide blonde|1 +(noun)|peroxide blond|blond|blonde +perpendicular|7 +(adj)|perpendicular |normal|orthogonal|rectangular|right +(adj)|vertical |plumb|upended|upright|unsloped|steep|straight +(adj)|steep +(noun)|straight line +(noun)|perpendicular style|English-Gothic|English-Gothic architecture|Gothic|Gothic architecture +(noun)|plumb line|cord +(noun)|face +perpendicular style|1 +(noun)|perpendicular|English-Gothic|English-Gothic architecture|Gothic|Gothic architecture +perpendicularity|2 +(noun)|orthogonality|orthogonal opposition|opposition +(noun)|rectangularity|oblongness +perpendicularly|1 +(adv)|sheer +perpetrate|1 +(verb)|commit|pull|act|move +perpetration|1 +(noun)|commission|committal|crime|law-breaking +perpetrator|1 +(noun)|culprit|wrongdoer|offender +perpetual|3 +(adj)|ageless|eternal|everlasting|unending|unceasing|permanent |lasting +(adj)|ceaseless|constant|incessant|never-ending|unceasing|unremitting|continuous |uninterrupted +(adj)|incessant|endless|continual +perpetual calendar|1 +(noun)|calendar +perpetual motion|1 +(noun)|motion +perpetual motion machine|1 +(noun)|machine +perpetual warrant|1 +(noun)|warrant|stock warrant|stock-purchase warrant +perpetually|1 +(adv)|constantly +perpetuate|1 +(verb)|continue|uphold|carry on|bear on|preserve +perpetuation|1 +(noun)|prolongation|protraction|lengthening|continuance|continuation +perpetuity|1 +(noun)|sempiternity|permanence|permanency +perphenazine|1 +(noun)|Triavil|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +perplex|2 +(verb)|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|complicate|change|alter|modify +perplexed|1 +(adj)|perplexed |at a loss|nonplused|nonplussed|puzzled|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|metagrobolized|metagrobolised|metagrabolized|metagrabolised|mystified|questioning|quizzical|stuck|confused +perplexedly|1 +(adv)|confoundedly +perplexing|1 +(adj)|confusing|puzzling|unclear +perplexity|1 +(noun)|confusion|mental confusion|confusedness|disarray +perquisite|2 +(noun)|fringe benefit|perk|benefit +(noun)|prerogative|privilege|exclusive right|right +perry|4 +(noun)|Perry|Ralph Barton Perry|philosopher +(noun)|Perry|Matthew Calbraith Perry|naval officer +(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +perry mason|1 +(noun)|Perry Mason|fictional character|fictitious character|character +persea|1 +(noun)|Persea|genus Persea|magnoliid dicot genus +persea americana|1 +(noun)|avocado|avocado tree|Persea Americana|fruit tree +persea borbonia|1 +(noun)|laurel-tree|red bay|Persea borbonia|laurel +persecute|1 +(verb)|oppress|torment|rag|bedevil|crucify|dun|frustrate +persecution|1 +(noun)|maltreatment|ill-treatment|ill-usage|abuse +persecutor|1 +(noun)|tormentor|tormenter|oppressor +persephone|1 +(noun)|Persephone|Despoina|Kore|Cora|Greek deity +persepolis|1 +(noun)|Persepolis|city|metropolis|urban center +perseus|2 +(noun)|Perseus|mythical being +(noun)|Perseus|constellation +perseverance|2 +(noun)|doggedness|persistence|persistency|tenacity|tenaciousness|pertinacity|determination|purpose +(noun)|persistence|perseveration|continuance|continuation +perseverate|1 +(verb)|repeat|reiterate|ingeminate|iterate|restate|retell +perseveration|2 +(noun)|inclination|disposition|tendency +(noun)|perseverance|persistence|continuance|continuation +persevere|1 +(verb)|persist|hang in|hang on|hold on|continue|uphold|carry on|bear on|preserve +persevering|1 +(adj)|diligent|patient +pershing|1 +(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general|full general +persia|2 +(noun)|Persia|Persian Empire|empire +(noun)|Iran|Islamic Republic of Iran|Persia|Asian country|Asian nation +persian|3 +(adj)|Iranian|Persian +(noun)|Irani|Iranian|Persian|Asian|Asiatic +(noun)|Persian|Farsi|Iranian|Iranian language +persian cat|1 +(noun)|Persian cat|domestic cat|house cat|Felis domesticus|Felis catus +persian deity|1 +(noun)|Persian deity|deity|divinity|god|immortal +persian empire|1 +(noun)|Persia|Persian Empire|empire +persian gulf|1 +(noun)|Persian Gulf|gulf +persian gulf illness|1 +(noun)|Gulf War syndrome|Persian Gulf illness|syndrome +persian gulf war|1 +(noun)|Persian Gulf War|Gulf War|war|warfare +persian iris|1 +(noun)|Persian iris|Iris persica|iris|flag|fleur-de-lis|sword lily +persian lamb|2 +(noun)|Persian lamb|lambskin +(noun)|Persian lamb|lamb +persian lilac|2 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +(noun)|Persian lilac|Syringa persica|lilac +persian melon|2 +(noun)|winter melon|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|Persian melon|winter melon +persian violet|1 +(noun)|Persian violet|Exacum affine|houseplant +persian walnut|1 +(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut|walnut tree +persiflage|1 +(noun)|banter|raillery|give-and-take|backchat +persimmon|2 +(noun)|persimmon tree|fruit tree +(noun)|berry +persimmon tree|1 +(noun)|persimmon|fruit tree +persist|3 +(verb)|prevail|die hard|run|endure|continue +(verb)|persevere|hang in|hang on|hold on|continue|uphold|carry on|bear on|preserve +(verb)|remain|stay +persist in|1 +(verb)|continue|act|move +persistence|3 +(noun)|continuity|lastingness|durability|enduringness|strength +(noun)|doggedness|perseverance|persistency|tenacity|tenaciousness|pertinacity|determination|purpose +(noun)|perseverance|perseveration|continuance|continuation +persistency|1 +(noun)|doggedness|perseverance|persistence|tenacity|tenaciousness|pertinacity|determination|purpose +persistent|3 +(adj)|relentless|unrelenting|continual +(adj)|haunting|unforgettable +(adj)|persistent |lasting +persisting|1 +(adj)|dogging|continuous |uninterrupted +persnickety|2 +(adj)|bigheaded|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud +(adj)|pernickety|fastidious +person|3 +(noun)|individual|someone|somebody|mortal|human|soul|organism|being|causal agent|cause|causal agency +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh +(noun)|grammatical category|syntactic category +person-to-person|2 +(adj)|personal +(adv)|one-on-one +person agreement|1 +(noun)|agreement|concord +person hour|1 +(noun)|man hour|hour|hr|60 minutes +person of color|1 +(noun)|person of colour|person|individual|someone|somebody|mortal|human|soul +person of colour|1 +(noun)|person of color|person|individual|someone|somebody|mortal|human|soul +persona|2 +(noun)|character|role|theatrical role|part|portrayal|characterization|enactment|personation +(noun)|image|appearance|visual aspect +persona grata|1 +(noun)|diplomat|diplomatist +persona non grata|2 +(noun)|diplomat|diplomatist +(noun)|unwelcome person|person|individual|someone|somebody|mortal|human|soul +personable|1 +(adj)|attractive +personableness|1 +(noun)|personality +personage|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|important person|influential person|adult|grownup +personal|6 +(adj)|personal |ad hominem|face-to-face|individual|private|individualized|individualised|personalized|personalised|of one's own|of her own|of his own|of my own|of our own|of your own|of their own|own|ain|personalized|person-to-person|in-person|in person|in the flesh|private|private +(adj)|subjective +(adj)|attribute +(adj)|physical +(adj)|grammatical category|syntactic category +(noun)|news article|news story|newspaper article +personal appeal|1 +(noun)|charisma|personal magnetism|attractiveness +personal business|1 +(noun)|personal matters|affairs|concern +personal care|1 +(noun)|care|attention|aid|tending +personal chattel|1 +(noun)|chattel|personal property|personal estate|personalty|private property +personal check|1 +(noun)|personal cheque|check|bank check|cheque +personal cheque|1 +(noun)|personal check|check|bank check|cheque +personal computer|1 +(noun)|PC|microcomputer|digital computer +personal credit line|1 +(noun)|credit line|line of credit|bank line|line|personal line of credit|credit +personal digital assistant|1 +(noun)|PDA|personal organizer|personal organiser|organizer|organiser|electronic device +personal effects|1 +(noun)|effects|personal property|personal estate|personalty|private property +personal equation|1 +(noun)|unevenness|variability +personal estate|1 +(noun)|personal property|personalty|private property|property|belongings|holding|material possession +personal expense|1 +(noun)|expense|disbursal|disbursement +personal foul|1 +(noun)|foul +personal identification number|1 +(noun)|PIN|PIN number|number|identification number +personal identity|1 +(noun)|identity|individuality|personality +personal income|1 +(noun)|income +personal judgement|1 +(noun)|judgment in personam|judgement in personam|personal judgment|judgment|judgement|judicial decision +personal judgment|1 +(noun)|judgment in personam|judgement in personam|personal judgement|judgment|judgement|judicial decision +personal letter|1 +(noun)|letter|missive +personal line of credit|1 +(noun)|credit line|line of credit|bank line|line|personal credit line|credit +personal loan|1 +(noun)|consumer loan|loan +personal magnetism|1 +(noun)|charisma|personal appeal|attractiveness +personal manner|1 +(noun)|manner|demeanor|demeanour|behavior|behaviour|conduct|deportment +personal matters|1 +(noun)|personal business|affairs|concern +personal memory|1 +(noun)|episodic memory|long-term memory|LTM +personal organiser|1 +(noun)|personal digital assistant|PDA|personal organizer|organizer|organiser|electronic device +personal organizer|1 +(noun)|personal digital assistant|PDA|personal organiser|organizer|organiser|electronic device +personal pronoun|1 +(noun)|pronoun +personal property|1 +(noun)|personal estate|personalty|private property|property|belongings|holding|material possession +personal relation|1 +(noun)|personal relationship|relationship|human relationship +personal relationship|1 +(noun)|personal relation|relationship|human relationship +personal representative|1 +(noun)|representative +personalise|1 +(verb)|personalize|individualize|individualise|change|alter|modify +personalised|1 +(adj)|individualized|individualised|personalized|personal +personality|2 +(noun)|attribute +(noun)|celebrity|famous person +personality assessment|1 +(noun)|personality inventory|questionnaire|personality test +personality disorder|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +personality inventory|1 +(noun)|personality assessment|questionnaire|personality test +personality test|1 +(noun)|test|mental test|mental testing|psychometric test +personalize|1 +(verb)|personalise|individualize|individualise|change|alter|modify +personalized|2 +(adj)|individualized|individualised|personalised|personal +(adj)|personal +personally|1 +(adv)|in person +personalty|1 +(noun)|personal property|personal estate|private property|property|belongings|holding|material possession +personate|2 +(verb)|pose|impersonate|deceive|betray|lead astray +(verb)|personify|impute|ascribe|assign|attribute +personation|2 +(noun)|impersonation|acting|playing|playacting|performing +(noun)|portrayal|characterization|enactment|acting|playing|playacting|performing +personhood|1 +(noun)|identity|personal identity|individuality +personification|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|prosopopoeia|trope|figure of speech|figure|image +(noun)|incarnation|embodiment +personify|3 +(verb)|body|embody|be +(verb)|embody|be|typify|symbolize|symbolise|stand for|represent +(verb)|personate|impute|ascribe|assign|attribute +personnel|2 +(noun)|force|organization|organisation +(noun)|personnel department|personnel office|staff office|department|section +personnel carrier|1 +(noun)|military vehicle|self-propelled vehicle +personnel casualty|1 +(noun)|loss|casualty +personnel department|1 +(noun)|personnel office|personnel|staff office|department|section +personnel office|1 +(noun)|personnel department|personnel|staff office|department|section +personnel pouch|1 +(noun)|body bag|human remains pouch|bag +persoonia|1 +(noun)|Persoonia|genus Persoonia|dicot genus|magnoliopsid genus +perspective|2 +(noun)|position|view|orientation +(noun)|linear perspective|appearance|visual aspect +perspex|1 +(noun)|Lucite|Perspex|polymethyl methacrylate +perspicacious|2 +(adj)|sagacious|sapient|wise +(adj)|clear-eyed|clear-sighted|discerning +perspicaciousness|1 +(noun)|shrewdness|astuteness|perspicacity|intelligence +perspicacity|2 +(noun)|shrewdness|astuteness|perspicaciousness|intelligence +(noun)|judgment|judgement|sound judgment|sound judgement|trait +perspicuity|1 +(noun)|perspicuousness|plainness|clarity|lucidity|pellucidity|clearness|limpidity +perspicuous|1 +(adj)|limpid|lucid|luculent|pellucid|crystal clear|clear +perspicuously|1 +(adv)|lucidly|pellucidly|limpidly +perspicuousness|1 +(noun)|perspicuity|plainness|clarity|lucidity|pellucidity|clearness|limpidity +perspiration|2 +(noun)|sweat|sudor|secretion +(noun)|sweating|diaphoresis|sudation|hidrosis|bodily process|body process|bodily function|activity +perspire|1 +(verb)|sweat|sudate|excrete|egest|eliminate|pass +perspirer|1 +(noun)|sweater|person|individual|someone|somebody|mortal|human|soul +perspiring|1 +(adj)|sweating|sweaty|wet +persuadable|1 +(adj)|convincible|persuasible|suasible|susceptible +persuade|2 +(verb)|carry|sway|influence|act upon|work +(verb)|induce|stimulate|cause|have|get|make +persuader|1 +(noun)|inducer|communicator +persuasible|1 +(adj)|convincible|persuadable|suasible|susceptible +persuasion|3 +(noun)|suasion|communication|communicating +(noun)|opinion|sentiment|view|thought|belief +(noun)|influence +persuasive|2 +(adj)|persuasive |coaxing|ingratiatory|compelling|glib|glib-tongued|smooth-tongued|convincing +(adj)|convincing +persuasiveness|1 +(noun)|strength|power|powerfulness +pert|1 +(adj)|impertinent|irreverent|saucy|spirited +pertain|2 +(verb)|refer|relate|concern|come to|bear on|touch|touch on +(verb)|appertain|dwell|consist|lie|belong|lie in +pertainym|1 +(noun)|relational adjective|classifying adjective +perth|1 +(noun)|Perth|state capital +pertinacious|1 +(adj)|bulldog|dogged|dour|tenacious|unyielding|stubborn +pertinacity|1 +(noun)|doggedness|perseverance|persistence|persistency|tenacity|tenaciousness|determination|purpose +pertinence|1 +(noun)|applicability|pertinency|relevance|relevancy +pertinency|1 +(noun)|applicability|pertinence|relevance|relevancy +pertinent|2 +(adj)|to the point|relevant +(adj)|apposite|appropriate|apt|apropos +pertly|1 +(adv)|impertinently|saucily|freshly|impudently +pertness|1 +(noun)|impertinence|perkiness|sauciness|archness|playfulness|fun +perturb|4 +(verb)|unhinge|disquiet|trouble|cark|distract|disorder|disturb|upset|trouble +(verb)|deviate +(verb)|deviate +(verb)|derange|throw out of kilter|disorder|disarray +perturbation|5 +(noun)|disturbance|upset|agitation +(noun)|influence +(noun)|disturbance|activity +(noun)|fluster|discomposure +(noun)|disruption|disturbance +perturbed|1 +(adj)|flustered|hot and bothered|rattled|discomposed +perturbing|1 +(adj)|distressing|distressful|disturbing|troubling|worrisome|worrying|heavy +pertusaria|1 +(noun)|Pertusaria|genus Pertusaria|fungus genus +pertusariaceae|1 +(noun)|Pertusariaceae|family Pertusariaceae|fungus family +pertussis|1 +(noun)|whooping cough|infectious disease|respiratory disease|respiratory illness|respiratory disorder +peru|1 +(noun)|Peru|Republic of Peru|South American country|South American nation +peruke|1 +(noun)|periwig|wig +peruked|1 +(adj)|periwigged|wigged +perusal|1 +(noun)|perusing|poring over|studying|reading +peruse|1 +(verb)|examine|see +perusing|1 +(noun)|perusal|poring over|studying|reading +perutz|1 +(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist +peruvian|2 +(adj)|Peruvian|South American country|South American nation +(noun)|Peruvian|South American +peruvian balsam|1 +(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree +peruvian bark|1 +(noun)|cinchona bark|Peruvian bark|Jesuit's bark|bark +peruvian cotton|1 +(noun)|Peruvian cotton|Gossypium peruvianum|cotton|cotton plant +peruvian current|1 +(noun)|Peruvian current|Humboldt current|ocean current +peruvian lily|1 +(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria +peruvian mastic tree|1 +(noun)|pepper tree|molle|Peruvian mastic tree|Schinus molle|tree +peruvian monetary unit|1 +(noun)|Peruvian monetary unit|monetary unit +pervade|1 +(verb)|permeate|penetrate|interpenetrate|diffuse|imbue|penetrate|perforate +pervading|1 +(adj)|pervasive|general +pervaporate|2 +(verb)|evaporate|vaporise +(verb)|evaporate|vaporise +pervaporation|1 +(noun)|concentration +pervasion|1 +(noun)|permeation|suffusion|diffusion +pervasive|2 +(adj)|pervading|general +(adj)|permeant|permeating|permeative|distributive +pervasiveness|1 +(noun)|generality +perverse|3 +(adj)|negative +(adj)|contrary|obstinate|wayward|disobedient +(adj)|depraved|immoral|perverted|reprobate|corrupt +perversely|1 +(adv)|contrarily|contrariwise +perverseness|1 +(noun)|contrariness|perversity|unruliness|fractiousness|willfulness|wilfulness +perversion|3 +(noun)|curve|curved shape +(noun)|sexual perversion|sexual activity|sexual practice|sex|sex activity +(noun)|wrongdoing|wrongful conduct|misconduct|actus reus +perversity|2 +(noun)|contrariness|perverseness|unruliness|fractiousness|willfulness|wilfulness +(noun)|evil|evilness +perversive|1 +(adj)|corruptive|pestiferous|evil |wicked +pervert|4 +(noun)|deviant|deviate|degenerate|reprobate|miscreant +(verb)|corrupt|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|twist|twist around|convolute|sophisticate|denote|refer +(verb)|misuse|abuse|use|expend +perverted|3 +(adj)|kinky|abnormal +(adj)|distorted|misrepresented|twisted|disingenuous |artful +(adj)|depraved|immoral|perverse|reprobate|corrupt +pervious|1 +(adj)|pervious |receptive|permeable +perviousness|1 +(noun)|penetrability|permeability|permeableness +pes|2 +(noun)|foot|human foot|vertebrate foot|pedal extremity +(noun)|pe|letter|letter of the alphabet|alphabetic character +pes cavus|1 +(noun)|clawfoot|deformity|malformation|misshapenness +pes planus|1 +(noun)|flatfoot|splayfoot|foot|human foot|pes +pesach|1 +(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast|moveable feast +pesah|1 +(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast|moveable feast +pesantran|1 +(noun)|pesantren|religious school +pesantren|1 +(noun)|pesantran|religious school +peseta|1 +(noun)|Spanish peseta|Spanish monetary unit +pesewa|1 +(noun)|Ghanian monetary unit +pesh merga|2 +(noun)|Pesh Merga|guerrilla force|guerilla force +(noun)|peshmerga|Kurd +peshawar|1 +(noun)|Peshawar|city|metropolis|urban center +peshmerga|1 +(noun)|Kurd +pesky|1 +(adj)|annoying|bothersome|galling|irritating|nettlesome|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +peso|8 +(noun)|Uruguayan peso|Uruguayan monetary unit +(noun)|Philippine peso|Philippine monetary unit +(noun)|Mexican peso|Mexican monetary unit +(noun)|Guinea-Bissau peso|Guinea-Bissau monetary unit +(noun)|Dominican peso|Dominican monetary unit +(noun)|Cuban peso|Cuban monetary unit +(noun)|Colombian peso|Colombian monetary unit +(noun)|Chilean peso|Chilean monetary unit +pessary|1 +(noun)|diaphragm|contraceptive diaphragm|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +pessimal|1 +(adj)|pessimum|worst +pessimism|2 +(noun)|despair +(noun)|disposition|temperament +pessimist|1 +(noun)|skeptic|sceptic|doubter +pessimistic|1 +(adj)|pessimistic |bearish|demoralized|demoralised|discouraged|disheartened|hopeless|negative +pessimum|1 +(adj)|pessimal|worst +pest|1 +(noun)|blighter|cuss|pesterer|gadfly|tormentor|tormenter|persecutor +pester|1 +(verb)|tease|badger|bug|beleaguer|torment|rag|bedevil|crucify|dun|frustrate +pestered|1 +(adj)|annoyed|harassed|harried|vexed|troubled +pesterer|1 +(noun)|pest|blighter|cuss|gadfly|tormentor|tormenter|persecutor +pestering|1 +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +pesthole|1 +(noun)|breeding ground +pesthouse|1 +(noun)|lazaretto|lazaret|lazarette|lazar house|hospital|infirmary +pesticide|1 +(noun)|chemical +pesticide poisoning|1 +(noun)|poisoning|toxic condition|intoxication +pestiferous|4 +(adj)|contaminated|dirty|infected|septic +(adj)|pestilent|pestilential|plaguey|epidemic +(adj)|corruptive|perversive|evil |wicked +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|plaguy|plaguey|teasing|vexatious|vexing|disagreeable +pestilence|2 +(noun)|plague|epidemic disease +(noun)|influence +pestilent|2 +(adj)|baneful|deadly|pernicious|noxious |harmful +(adj)|pestilential|pestiferous|plaguey|epidemic +pestilential|1 +(adj)|pestilent|pestiferous|plaguey|epidemic +pestle|4 +(noun)|stamp|machine +(noun)|muller|pounder|tool +(noun)|hand tool +(verb)|grind|mash|crunch|bray|comminute +pet|7 +(adj)|favored|favorite|favourite|preferred|loved +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|darling|favorite|favourite|dearie|deary|ducky|lover +(noun)|irritability|crossness|fretfulness|fussiness|peevishness|petulance|choler +(noun)|positron emission tomography|PET|imaging|tomography +(verb)|caress +(verb)|caress +pet-food|3 +(noun)|petfood|pet food|feed|provender +(noun)| +(noun)| +pet food|3 +(noun)|petfood|pet-food|feed|provender +(noun)| +(noun)| +pet name|1 +(noun)|hypocorism|name +pet peeve|1 +(noun)|complaint +pet scanner|1 +(noun)|positron emission tomography scanner|PET scanner|tomograph +pet shop|1 +(noun)|shop|store +pet sitter|1 +(noun)|critter sitter|custodian|keeper|steward +pet sitting|1 +(noun)|care|attention|aid|tending +petabyte|1 +(noun)|computer memory unit +petal|1 +(noun)|flower petal|floral leaf +petaled|1 +(adj)|petalous |petalled|gamopetalous|sympetalous|polypetalous|salverform +petalled|1 +(adj)|petalous |petaled|gamopetalous|sympetalous|polypetalous|salverform +petalless|1 +(adj)|apetalous +petaloid|1 +(adj)|floral leaf +petalous|1 +(adj)|petalous |petaled|petalled|gamopetalous|sympetalous|polypetalous|salverform +petard|1 +(noun)|explosive device +petasites|1 +(noun)|Petasites|genus Petasites|asterid dicot genus +petasites fragrans|1 +(noun)|winter heliotrope|sweet coltsfoot|Petasites fragrans|herb|herbaceous plant +petasites hybridus|1 +(noun)|butterbur|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb|herbaceous plant +petasites sagitattus|1 +(noun)|sweet coltsfoot|Petasites sagitattus|herb|herbaceous plant +petasites vulgaris|1 +(noun)|butterbur|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb|herbaceous plant +petaurista|1 +(noun)|Petaurista|genus Petaurista|mammal genus +petaurista petaurista|1 +(noun)|taguan|flying marmot|flying cat|Petaurista petaurista|Asiatic flying squirrel +petauristidae|1 +(noun)|Petauristidae|subfamily Petauristidae|mammal family +petaurus|1 +(noun)|Petaurus|genus Petaurus|mammal genus +petchary|1 +(noun)|gray kingbird|Tyrannus domenicensis domenicensis|kingbird|Tyrannus tyrannus +petcock|1 +(noun)|regulator +pete seeger|1 +(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer|jongleur|minstrel|poet-singer|troubadour +petechia|1 +(noun)|bruise|contusion +peter|2 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +(noun)|cock|prick|dick|shaft|pecker|tool|putz|penis|phallus|member +peter's gland|1 +(noun)|Peyer's patch|Peter's gland|lymph node|lymph gland|node +peter's pence|1 +(noun)|hearth money|Peter's pence|offering +peter abelard|1 +(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher|theologian|theologist|theologizer|theologiser +peter alexander ustinov|1 +(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor|histrion|player|thespian|role player|dramatist|playwright +peter behrens|1 +(noun)|Behrens|Peter Behrens|architect|designer +peter carl faberge|1 +(noun)|Faberge|Peter Carl Faberge|goldsmith|goldworker|gold-worker +peter carl goldmark|1 +(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor|discoverer|artificer +peter cooper|1 +(noun)|Cooper|Peter Cooper|industrialist|philanthropist|altruist +peter goldmark|1 +(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor|discoverer|artificer +peter i|1 +(noun)|Peter I|Czar Peter I|Peter the Great|czar|tsar|tzar +peter ilich tchaikovsky|1 +(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer +peter lorre|1 +(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor|histrion|player|thespian|role player +peter mark roget|1 +(noun)|Roget|Peter Mark Roget|doctor|doc|physician|MD|Dr.|medico +peter medawar|1 +(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist +peter minnewit|1 +(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler|colonist +peter minuit|1 +(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler|colonist +peter o'toole|1 +(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor|histrion|player|thespian|role player +peter out|2 +(verb)|taper off|fizzle out|fizzle|discontinue +(verb)|poop out|run down|run out|conk out|tire|pall|weary|fatigue|jade +peter pan|2 +(noun)|Peter Pan|man|adult male +(noun)|Peter Pan|fictional character|fictitious character|character +peter pan collar|1 +(noun)|Peter Pan collar|collar|neckband +peter paul mauser|1 +(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor|discoverer|artificer|arms manufacturer +peter paul rubens|1 +(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master +peter seamus o'toole|1 +(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor|histrion|player|thespian|role player +peter seeger|1 +(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer|jongleur|minstrel|poet-singer|troubadour +peter sellers|1 +(noun)|Sellers|Peter Sellers|actor|histrion|player|thespian|role player +peter stuyvesant|1 +(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator|executive +peter tchaikovsky|1 +(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer +peter the great|1 +(noun)|Peter I|Czar Peter I|Peter the Great|czar|tsar|tzar +peterburg|1 +(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city|metropolis|urban center +petersburg|1 +(noun)|Petersburg|Petersburg Campaign|campaign|military campaign|siege|besieging|beleaguering|military blockade +petersburg campaign|1 +(noun)|Petersburg|Petersburg Campaign|campaign|military campaign|siege|besieging|beleaguering|military blockade +petfood|1 +(noun)|pet-food|pet food|feed|provender +petiole|1 +(noun)|leafstalk|stalk|stem +petiolule|1 +(noun)|stalk|stem +petit bourgeois|2 +(noun)|bourgeois|burgher +(noun)|petite bourgeoisie|petty bourgeoisie|middle class|bourgeoisie +petit dejeuner|1 +(noun)|continental breakfast|breakfast +petit four|1 +(noun)|cake +petit juror|1 +(noun)|petty juror|juror|juryman|jurywoman +petit jury|1 +(noun)|petty jury|jury +petit larceny|1 +(noun)|petty larceny|larceny|theft|thievery|thieving|stealing +petit mal|1 +(noun)|epilepsia minor|epileptic seizure +petit mal epilepsy|1 +(noun)|absence|epilepsy +petit point|2 +(noun)|tent stitch|stitch +(noun)|needlepoint +petite|2 +(adj)|bantam|diminutive|lilliputian|midget|tiny|flyspeck|small +(noun)|size +petite bourgeoisie|1 +(noun)|petit bourgeois|petty bourgeoisie|middle class|bourgeoisie +petite marmite|1 +(noun)|minestrone|vegetable soup|soup +petiteness|1 +(noun)|diminutiveness|minuteness|tininess|weeness|smallness|littleness +petitio|1 +(noun)|petitio principii|logical fallacy +petitio principii|1 +(noun)|petitio|logical fallacy +petition|3 +(noun)|request|postulation|message|content|subject matter|substance +(noun)|prayer|orison|request|asking +(verb)|request|bespeak|call for|quest +petitionary|1 +(adj)|beseeching +petitioner|2 +(noun)|suppliant|supplicant|applicant|applier +(noun)|suer|plaintiff|complainant +petrarca|1 +(noun)|Petrarch|Petrarca|Francesco Petrarca|poet +petrarch|1 +(noun)|Petrarch|Petrarca|Francesco Petrarca|poet +petrarchan sonnet|1 +(noun)|Petrarchan sonnet|Italian sonnet|sonnet +petrel|1 +(noun)|pelagic bird|oceanic bird +petri dish|1 +(noun)|Petri dish|dish +petrifaction|2 +(noun)|petrification|fossilization|fossilisation +(noun)|rock|stone +petrification|1 +(noun)|petrifaction|fossilization|fossilisation +petrified|3 +(adj)|hard +(adj)|mineralized|mineral +(adj)|numb|afraid +petrified forest national park|1 +(noun)|Petrified Forest National Park|national park +petrify|3 +(verb)|deaden|blunt +(verb)|lapidify|fossilize|fossilise +(verb)|rigidify|ossify|stiffen +petrifying|1 +(adj)|alarming +petrissage|1 +(noun)|massage +petrochemical|1 +(noun)|organic compound +petrocoptis|1 +(noun)|Petrocoptis|genus Petrocoptis|caryophylloid dicot genus +petrogale|1 +(noun)|Petrogale|genus Petrogale|mammal genus +petrograd|1 +(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city|metropolis|urban center +petrol|1 +(noun)|gasoline|gasolene|gas|fuel|hydrocarbon +petrol bomb|1 +(noun)|Molotov cocktail|gasoline bomb|bomb +petrol station|1 +(noun)|gasoline station|gas station|filling station|service station +petrolatum|1 +(noun)|petroleum jelly|mineral jelly|jelly|mixture +petrolatum gauze|1 +(noun)|gauze|gauze bandage +petroleum|1 +(noun)|crude oil|crude|rock oil|fossil oil|oil|fossil fuel +petroleum future|1 +(noun)|oil future|future +petroleum geologist|1 +(noun)|oil geologist|geologist +petroleum geology|1 +(noun)|economic geology +petroleum jelly|1 +(noun)|petrolatum|mineral jelly|jelly|mixture +petroleum refinery|1 +(noun)|oil refinery|refinery +petrology|1 +(noun)|morphology|geomorphology +petromyzon|1 +(noun)|Petromyzon|genus Petromyzon|fish genus +petromyzon marinus|1 +(noun)|sea lamprey|Petromyzon marinus|lamprey|lamprey eel|lamper eel +petromyzoniformes|1 +(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order +petromyzontidae|1 +(noun)|Petromyzontidae|family Petromyzontidae|fish family +petronius|1 +(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer|author +petronius arbiter|1 +(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer|author +petroselinum|1 +(noun)|Petroselinum|genus Petroselinum|rosid dicot genus +petroselinum crispum|1 +(noun)|parsley|Petroselinum crispum|herb|herbaceous plant +petroselinum crispum neapolitanum|1 +(noun)|Italian parsley|flat-leaf parsley|Petroselinum crispum neapolitanum|parsley|Petroselinum crispum +petroselinum crispum tuberosum|1 +(noun)|Hamburg parsley|turnip-rooted parsley|Petroselinum crispum tuberosum|parsley|Petroselinum crispum +petrous|1 +(adj)|stonelike|hard +petrus stuyvesant|1 +(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator|executive +petter|1 +(noun)|fondler|lover +petteria|1 +(noun)|Petteria|genus Petteria|rosid dicot genus +petteria ramentacea|1 +(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub|bush +petticoat|1 +(noun)|half-slip|underskirt|undergarment +petticoated|1 +(adj)|clothed |clad +pettifog|1 +(verb)|quibble|niggle|bicker|squabble|brabble|argue|contend|debate|fence +pettifogger|2 +(noun)|shyster|wrongdoer|offender +(noun)|quibbler|caviller|caviler|disputant|controversialist|eristic +pettifoggery|1 +(noun)|bicker|bickering|spat|tiff|squabble|fuss|quarrel|wrangle|row|words|run-in|dustup +pettifogging|1 +(adj)|caviling|carping|nitpicking|quibbling|critical +pettiness|3 +(noun)|narrow-mindedness|narrowness +(noun)|triviality|slightness|unimportance +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness +petting|1 +(noun)|caressing|cuddling|fondling|hugging|kissing|necking|smooching|snuggling|foreplay|arousal|stimulation +petting zoo|1 +(noun)|collection|aggregation|accumulation|assemblage +pettish|1 +(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|petulant|testy|tetchy|techy|ill-natured +pettishly|1 +(adv)|testily|irritably|petulantly +pettishness|1 +(noun)|temper|biliousness|irritability|peevishness|snappishness|surliness|ill nature +petty|3 +(adj)|junior-grade|inferior|lower|lower-ranking|lowly|secondary|subaltern|subordinate|junior +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|picayune|trivial|unimportant +(adj)|small-minded|narrow-minded |narrow +petty apartheid|1 +(noun)|racial segregation +petty bourgeoisie|1 +(noun)|petit bourgeois|petite bourgeoisie|middle class|bourgeoisie +petty cash|1 +(noun)|fund|monetary fund +petty criticism|1 +(noun)|detraction|disparagement|depreciation|derogation +petty juror|1 +(noun)|petit juror|juror|juryman|jurywoman +petty jury|1 +(noun)|petit jury|jury +petty larceny|1 +(noun)|petit larceny|larceny|theft|thievery|thieving|stealing +petty morel|1 +(noun)|American spikenard|life-of-man|Aralia racemosa|subshrub|suffrutex +petty officer|1 +(noun)|PO|P.O.|noncommissioned officer|noncom +petty spurge|1 +(noun)|devil's milk|Euphorbia peplus|spurge +petty whin|1 +(noun)|broom tree|needle furze|Genista anglica|broom +petulance|1 +(noun)|irritability|crossness|fretfulness|fussiness|peevishness|choler|ill humor|ill humour|distemper +petulant|1 +(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|testy|tetchy|techy|ill-natured +petulantly|1 +(adv)|testily|irritably|pettishly +petunia|1 +(noun)|flower +petunia axillaris|1 +(noun)|large white petunia|Petunia axillaris|petunia +petunia hybrida|1 +(noun)|hybrid petunia|Petunia hybrida|petunia +petunia integrifolia|1 +(noun)|violet-flowered petunia|Petunia integrifolia|petunia +peul|1 +(noun)|Fula|Ful|Fulani|Peul|West African +pew|1 +(noun)|church bench|bench +pewee|1 +(noun)|peewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +pewit|3 +(noun)|laughing gull|blackcap|pewit gull|Larus ridibundus|gull|seagull|sea gull +(noun)|lapwing|green plover|peewit|plover +(noun)|pewee|peewee|peewit|wood pewee|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +pewit gull|1 +(noun)|laughing gull|blackcap|pewit|Larus ridibundus|gull|seagull|sea gull +pewter|1 +(noun)|alloy|metal +peyer's patch|1 +(noun)|Peyer's patch|Peter's gland|lymph node|lymph gland|node +peyote|2 +(noun)|mescal|mezcal|Lophophora williamsii|cactus +(noun)|mescaline|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +peyton rous|1 +(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician|pathologist +peziza|1 +(noun)|Peziza|genus Peziza|fungus genus +peziza coccinea|1 +(noun)|blood cup|fairy cup|Peziza coccinea|discomycete|cup fungus +peziza domicilina|1 +(noun)|Peziza domicilina|discomycete|cup fungus +pezizaceae|1 +(noun)|Pezizaceae|family Pezizaceae|fungus family +pezizales|1 +(noun)|Pezizales|order Pezizales|fungus order +pezophaps|1 +(noun)|Pezophaps|genus Pezophaps|bird genus +pezophaps solitaria|1 +(noun)|solitaire|Pezophaps solitaria|columbiform bird +pfalz|1 +(noun)|Palatinate|Pfalz|district|territory|territorial dominion|dominion +pfannkuchen|1 +(noun)|german pancake|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +pfc|1 +(noun)|perfluorocarbon|PFC|fluorocarbon|greenhouse gas|greenhouse emission +pfennig|1 +(noun)|German monetary unit +pflp|1 +(noun)|Popular Front for the Liberation of Palestine|PFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +pflp-gc|1 +(noun)|Popular Front for the Liberation of Palestine-General Command|PFLP-GC|terrorist organization|terrorist group|foreign terrorist organization|FTO +ph|1 +(noun)|pH|pH scale|hydrogen ion concentration +ph.d.|2 +(noun)|Ph.D.|PhD|Doctor of Philosophy +(noun)| +ph scale|1 +(noun)|pH|pH scale|hydrogen ion concentration +phacelia|1 +(noun)|scorpionweed|scorpion weed|flower +phacelia campanularia|1 +(noun)|California bluebell|Phacelia campanularia|scorpionweed|scorpion weed|phacelia +phacelia minor|1 +(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed|scorpion weed|phacelia +phacelia tanacetifolia|1 +(noun)|fiddleneck|Phacelia tanacetifolia|scorpionweed|scorpion weed|phacelia +phacelia whitlavia|1 +(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed|scorpion weed|phacelia +phacochoerus|1 +(noun)|Phacochoerus|genus Phacochoerus|mammal genus +phaeochromocytoma|1 +(noun)|pheochromocytoma|tumor|tumour|neoplasm +phaeophyceae|1 +(noun)|Phaeophyceae|class Phaeophyceae|class +phaeophyta|1 +(noun)|Phaeophyta|division Phaeophyta|division +phaethon|2 +(noun)|Phaethon|Greek deity +(noun)|Phaethon|genus Phaethon|bird genus +phaethontidae|1 +(noun)|Phaethontidae|family Phaethontidae|bird family +phaeton|1 +(noun)|touring car|tourer|car|auto|automobile|machine|motorcar +phage|1 +(noun)|bacteriophage|virus +phagocyte|1 +(noun)|scavenger cell|somatic cell|vegetative cell +phagocytic|1 +(adj)|somatic cell|vegetative cell +phagocytosis|1 +(noun)|bodily process|body process|bodily function|activity +phagun|1 +(noun)|Phagun|Phalguna|Hindu calendar month +phaius|1 +(noun)|orchid|orchidaceous plant +phalacrocoracidae|1 +(noun)|Phalacrocoracidae|family Phalacrocoracidae|bird family +phalacrocorax|1 +(noun)|Phalacrocorax|genus Phalacrocorax|bird genus +phalacrocorax carbo|1 +(noun)|cormorant|Phalacrocorax carbo|pelecaniform seabird +phalacrosis|1 +(noun)|baldness|hairlessness|depilation +phalaenopsis|1 +(noun)|Phalaenopsis|genus Phalaenopsis|monocot genus|liliopsid genus +phalaenopsis amabilis|1 +(noun)|butterfly plant|Phalaenopsis amabilis|moth orchid|moth plant +phalaenoptilus|1 +(noun)|Phalaenoptilus|genus Phalaenoptilus|bird genus +phalaenoptilus nuttallii|1 +(noun)|poorwill|Phalaenoptilus nuttallii|goatsucker|nightjar|caprimulgid +phalangeal|1 +(adj)|bone|os +phalanger|1 +(noun)|opossum|possum|marsupial|pouched mammal +phalangeridae|1 +(noun)|Phalangeridae|family Phalangeridae|mammal family +phalangida|1 +(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order +phalangiidae|1 +(noun)|Phalangiidae|family Phalangiidae|arthropod family +phalangitis|1 +(noun)|inflammation|redness|rubor +phalangium|1 +(noun)|Phalangium|genus Phalangium|arthropod genus +phalangium opilio|1 +(noun)|harvestman|daddy longlegs|Phalangium opilio|arachnid|arachnoid +phalanx|3 +(noun)|bone|os +(noun)|crowd +(noun)|military unit|military force|military group|force +phalaris|1 +(noun)|Phalaris|genus Phalaris|monocot genus|liliopsid genus +phalaris aquatica|1 +(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass +phalaris arundinacea|1 +(noun)|reed canary grass|gardener's garters|lady's laces|ribbon grass|Phalaris arundinacea|grass +phalaris canariensis|1 +(noun)|canary grass|birdseed grass|Phalaris canariensis|grass +phalaris tuberosa|1 +(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass +phalarope|1 +(noun)|shorebird|shore bird|limicoline bird +phalaropidae|1 +(noun)|Phalaropidae|family Phalaropidae|bird family +phalaropus|1 +(noun)|Phalaropus|genus Phalaropus|bird genus +phalaropus fulicarius|1 +(noun)|red phalarope|Phalaropus fulicarius|phalarope +phalguna|1 +(noun)|Phagun|Phalguna|Hindu calendar month +phallaceae|1 +(noun)|Phallaceae|family Phallaceae|fungus family +phallales|1 +(noun)|Phallales|order Phallales|fungus genus +phallic|2 +(adj)|erectile organ +(adj)|priapic|male +phallic phase|1 +(noun)|phallic stage|phase|stage +phallic stage|1 +(noun)|phallic phase|phase|stage +phalloplasty|1 +(noun)|plastic surgery|reconstructive surgery|anaplasty +phallus|2 +(noun)|Phallus|genus Phallus|fungus genus +(noun)|penis|member|erectile organ +phallus impudicus|1 +(noun)|common stinkhorn|Phallus impudicus|stinkhorn|carrion fungus +phallus ravenelii|1 +(noun)|Phallus ravenelii|stinkhorn|carrion fungus +phalsa|1 +(noun)|Grewia asiatica|shrub|bush +phanerogam|1 +(noun)|spermatophyte|seed plant|vascular plant|tracheophyte +phanerogamae|1 +(noun)|Phanerogamae|division +phaneromania|1 +(noun)|mania|passion|cacoethes +phanerozoic|1 +(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon|aeon +phanerozoic aeon|1 +(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon|aeon +phanerozoic eon|1 +(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon|aeon +phantasm|2 +(noun)|apparition|phantom|phantasma|specter|spectre|spirit|disembodied spirit +(noun)|apparition|phantom|phantasma|shadow|illusion|semblance +phantasma|2 +(noun)|apparition|phantom|phantasm|specter|spectre|spirit|disembodied spirit +(noun)|apparition|phantom|phantasm|shadow|illusion|semblance +phantasmagoria|1 +(noun)|representation|mental representation|internal representation +phantasmagoric|1 +(adj)|phantasmagorical|surreal|surrealistic|unrealistic +phantasmagorical|1 +(adj)|phantasmagoric|surreal|surrealistic|unrealistic +phantasmal|1 +(adj)|apparitional|ghostlike|ghostly|spectral|spiritual|supernatural +phantasy|3 +(noun)|illusion|fantasy|fancy|misconception +(noun)|fantasy|fiction +(noun)|fantasy|imagination|imaginativeness|vision +phantasy life|1 +(noun)|fantasy life|fantasy|phantasy +phantasy world|1 +(noun)|fantasy world|fairyland|fantasy|phantasy +phantom|3 +(adj)|unreal +(noun)|apparition|phantasm|phantasma|specter|spectre|spirit|disembodied spirit +(noun)|apparition|phantasm|phantasma|shadow|illusion|semblance +phantom limb|1 +(noun)|illusion|semblance +phantom limb pain|1 +(noun)|pain|painful sensation +phantom limb syndrome|1 +(noun)|syndrome +phantom orchid|1 +(noun)|snow orchid|Eburophyton austinae|orchid|orchidaceous plant +pharaoh|1 +(noun)|Pharaoh|Pharaoh of Egypt|ruler|swayer +pharaoh's ant|1 +(noun)|pharaoh ant|Monomorium pharaonis|ant|emmet|pismire +pharaoh's chicken|1 +(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture +pharaoh ant|1 +(noun)|pharaoh's ant|Monomorium pharaonis|ant|emmet|pismire +pharaoh of egypt|1 +(noun)|Pharaoh|Pharaoh of Egypt|ruler|swayer +pharaonic|1 +(adj)|Pharaonic|ruler|swayer +pharisaic|1 +(adj)|holier-than-thou|pietistic|pietistical|pharisaical|sanctimonious|self-righteous|pious +pharisaical|1 +(adj)|holier-than-thou|pietistic|pietistical|pharisaic|sanctimonious|self-righteous|pious +pharisee|2 +(noun)|unpleasant person|disagreeable person +(noun)|Pharisee|Jew|Hebrew|Israelite +pharma|1 +(noun)|drug company|pharmaceutical company|company +pharmaceutic|1 +(adj)|pharmaceutical|medicine|medical specialty|health professional|health care provider|caregiver +pharmaceutical|3 +(adj)|pharmaceutic|medicine|medical specialty|health professional|health care provider|caregiver +(adj)|medicine|medication|medicament|medicinal drug +(noun)|medicine|medication|medicament|medicinal drug +pharmaceutical chemist|1 +(noun)|pharmacologist|pharmacist|druggist|chemist|apothecary|pill pusher|pill roller +pharmaceutical company|1 +(noun)|drug company|pharma|company +pharmaceutics|1 +(noun)|pharmacy|medicine|medical specialty +pharmacist|1 +(noun)|druggist|chemist|apothecary|pill pusher|pill roller|health professional|health care provider|caregiver +pharmacogenetics|1 +(noun)|genetics|genetic science +pharmacokinetics|1 +(noun)|pharmacology|pharmacological medicine|materia medica +pharmacologic|1 +(adj)|pharmacological|medicine|medical specialty +pharmacological|1 +(adj)|pharmacologic|medicine|medical specialty +pharmacological medicine|1 +(noun)|pharmacology|materia medica|medicine|medical specialty +pharmacologist|1 +(noun)|pharmaceutical chemist|pharmacist|druggist|chemist|apothecary|pill pusher|pill roller +pharmacology|1 +(noun)|pharmacological medicine|materia medica|medicine|medical specialty +pharmacopeia|1 +(noun)|formulary|book +pharmacopoeia|1 +(noun)|collection|aggregation|accumulation|assemblage +pharmacy|2 +(noun)|pharmaceutics|medicine|medical specialty +(noun)|drugstore|apothecary's shop|chemist's|chemist's shop|shop|store +pharomacrus|1 +(noun)|Pharomacrus|genus Pharomacrus|bird genus +pharomacrus mocino|1 +(noun)|resplendent quetzel|resplendent trogon|Pharomacrus mocino|quetzal|quetzal bird +pharos|1 +(noun)|beacon|lighthouse|beacon light|tower +pharsalus|1 +(noun)|Pharsalus|battle of Pharsalus|pitched battle +pharyngeal|1 +(adj)|tubular cavity +pharyngeal recess|1 +(noun)|recess|recession|niche|corner +pharyngeal reflex|1 +(noun)|gag reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +pharyngeal tonsil|1 +(noun)|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue|lymphoid tissue +pharyngeal vein|1 +(noun)|vena pharyngeus|vein|vena|venous blood vessel +pharyngitis|1 +(noun)|sore throat|raw throat|inflammatory disease +pharynx|1 +(noun)|throat|tubular cavity +phascogale|1 +(noun)|Phascogale|genus Phascogale|mammal genus +phascolarctos|1 +(noun)|Phascolarctos|genus Phascolarctos|mammal genus +phascolarctos cinereus|1 +(noun)|koala|koala bear|kangaroo bear|native bear|Phascolarctos cinereus|phalanger|opossum|possum +phase|6 +(noun)|form|state of matter|state +(noun)|stage|time period|period of time|period +(noun)|phase angle|point|point in time +(noun)|appearance|visual aspect +(verb)|stage|bring about|arrange +(verb)|synchronize|synchronise|sync +phase angle|1 +(noun)|phase|point|point in time +phase change|1 +(noun)|phase transition|state change|physical change|natural process|natural action|action|activity +phase i|1 +(noun)|phase I clinical trial|phase I|clinical trial|clinical test +phase i clinical trial|1 +(noun)|phase I clinical trial|phase I|clinical trial|clinical test +phase ii|1 +(noun)|phase II clinical trial|phase II|clinical trial|clinical test +phase ii clinical trial|1 +(noun)|phase II clinical trial|phase II|clinical trial|clinical test +phase iii|1 +(noun)|phase III clinical trial|phase III|clinical trial|clinical test +phase iii clinical trial|1 +(noun)|phase III clinical trial|phase III|clinical trial|clinical test +phase in|1 +(verb)|introduce|innovate +phase iv|1 +(noun)|phase IV clinical trials|phase IV|clinical trial|clinical test +phase iv clinical trials|1 +(noun)|phase IV clinical trials|phase IV|clinical trial|clinical test +phase modulation|1 +(noun)|PM|modulation +phase of cell division|1 +(noun)|phase|stage +phase of the moon|1 +(noun)|time period|period of time|period|phase +phase out|1 +(verb)|end|terminate +phase space|1 +(noun)|space +phase transition|1 +(noun)|phase change|state change|physical change|natural process|natural action|action|activity +phaseolus|1 +(noun)|Phaseolus|genus Phaseolus|rosid dicot genus +phaseolus aconitifolius|1 +(noun)|moth bean|Vigna aconitifolia|Phaseolus aconitifolius|legume|leguminous plant +phaseolus acutifolius latifolius|1 +(noun)|tepary bean|Phaseolus acutifolius latifolius|shell bean|shell bean plant +phaseolus angularis|1 +(noun)|adzuki bean|adsuki bean|Vigna angularis|Phaseolus angularis|legume|leguminous plant +phaseolus aureus|1 +(noun)|mung|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +phaseolus caracalla|1 +(noun)|snailflower|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +phaseolus coccineus|1 +(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +phaseolus limensis|1 +(noun)|lima bean|lima bean plant|Phaseolus limensis|shell bean|shell bean plant +phaseolus lunatus|1 +(noun)|sieva bean|butter bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean|shell bean plant +phaseolus multiflorus|1 +(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +phaseolus vulgaris|1 +(noun)|common bean|common bean plant|Phaseolus vulgaris|bean|bean plant +phasianid|1 +(noun)|game bird +phasianidae|1 +(noun)|Phasianidae|family Phasianidae|bird family +phasianus|1 +(noun)|Phasianus|genus Phasianus|bird genus +phasianus colchicus|1 +(noun)|ring-necked pheasant|Phasianus colchicus|pheasant +phasmatidae|1 +(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family +phasmatodea|1 +(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order +phasmid|1 +(noun)|phasmid insect|insect +phasmid insect|1 +(noun)|phasmid|insect +phasmida|1 +(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order +phasmidae|1 +(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family +phasmidia|1 +(noun)|Phasmidia|class Phasmidia|class +phatic communication|1 +(noun)|phatic speech|conversation +phatic speech|1 +(noun)|phatic communication|conversation +phd|1 +(noun)|Ph.D.|PhD|Doctor of Philosophy +pheasant|2 +(noun)|phasianid +(noun)|wildfowl +pheasant's-eye|1 +(noun)|Adonis annua|flower +pheasant coucal|1 +(noun)|pheasant cuckoo|Centropus phasianinus|coucal +pheasant cuckoo|1 +(noun)|pheasant coucal|Centropus phasianinus|coucal +pheasant under glass|1 +(noun)|dish +phegopteris|1 +(noun)|Phegopteris|genus Phegopteris|fern genus +phegopteris connectilis|1 +(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +phegopteris hexagonoptera|1 +(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern +pheidias|1 +(noun)|Phidias|Pheidias|sculptor|sculpturer|carver|statue maker +phellem|1 +(noun)|cork|bark +phellodendron|1 +(noun)|Phellodendron|genus Phellodendron|rosid dicot genus +phellodendron amurense|1 +(noun)|cork tree|Phellodendron amurense|tree +phenacetin|1 +(noun)|acetophenetidin|acetphenetidin|analgesic|anodyne|painkiller|pain pill +phenacomys|1 +(noun)|vole|field mouse +phenaphen|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +phenazopyridine|1 +(noun)|Pyridium|analgesic|anodyne|painkiller|pain pill +phencyclidine|1 +(noun)|phencyclidine hydrochloride|PCP|angel dust|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +phencyclidine hydrochloride|1 +(noun)|phencyclidine|PCP|angel dust|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +phenelzine|1 +(noun)|Nardil|monoamine oxidase inhibitor|MAOI +phenergan|1 +(noun)|promethazine|Phenergan|antihistamine|antiemetic|antiemetic drug +phenicia|1 +(noun)|Phoenicia|Phenicia|geographical area|geographic area|geographical region|geographic region +pheniramine|1 +(noun)|antihistamine +pheno-safranine|1 +(noun)|safranine|safranin|saffranine +phenobarbital|1 +(noun)|sodium thiopental|phenobarbitone|Luminal|purple heart|barbiturate +phenobarbitone|1 +(noun)|sodium thiopental|phenobarbital|Luminal|purple heart|barbiturate +phenol|2 +(noun)|organic compound +(noun)|carbolic acid|hydroxybenzene|oxybenzene|phenylic acid|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +phenolic|1 +(noun)|phenolic resin|phenoplast|synthetic resin +phenolic plastic|1 +(noun)|phenolic urea|plastic +phenolic resin|1 +(noun)|phenolic|phenoplast|synthetic resin +phenolic urea|1 +(noun)|phenolic plastic|plastic +phenolphthalein|1 +(noun)|laxative|acid-base indicator +phenomenal|1 +(adj)|fantastic|extraordinary +phenomenology|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +phenomenon|1 +(noun)|development +phenoplast|1 +(noun)|phenolic resin|phenolic|synthetic resin +phenothiazine|1 +(noun)|thiodiphenylamine|thiazine +phenotype|1 +(noun)|constitution|composition|makeup +phenotypic|1 +(adj)|phenotypical|constitution|composition|makeup +phenotypical|1 +(adj)|phenotypic|constitution|composition|makeup +phenoxymethyl penicillin|1 +(noun)|penicillin V|penicillin +phensuximide|1 +(noun)|Milontin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +phentolamine|1 +(noun)|Vasomax|virility drug|anit-impotence drug +phenyl salicylate|1 +(noun)|salol|salicylate +phenylacetamide|1 +(noun)|acetanilide|acetanilid|analgesic|anodyne|painkiller|pain pill +phenylalanine|1 +(noun)|essential amino acid +phenylamine|1 +(noun)|aniline|aniline oil|aminobenzine|amine|aminoalkane +phenylbutazone|1 +(noun)|Butazolidin|anti-inflammatory|anti-inflammatory drug +phenylephrine|1 +(noun)|adrenergic|adrenergic drug +phenylethylene|1 +(noun)|styrene|cinnamene|vinylbenzene|vinyl polymer|vinyl resin|polyvinyl resin +phenylic acid|1 +(noun)|carbolic acid|phenol|hydroxybenzene|oxybenzene|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent +phenylketonuria|1 +(noun)|PKU|inborn error of metabolism +phenylpropanolamine|1 +(noun)|adrenergic|adrenergic drug +phenyltoloxamine|1 +(noun)|antihistamine +phenytoin|1 +(noun)|diphenylhydantoin|Dilantin|hydantoin +pheochromocytoma|1 +(noun)|phaeochromocytoma|tumor|tumour|neoplasm +pheresis|1 +(noun)|apheresis|dialysis +pheromone|1 +(noun)|secretion +phi|1 +(noun)|letter|letter of the alphabet|alphabetic character +phi coefficient|1 +(noun)|phi correlation|fourfold point correlation|nonparametric statistic|distribution free statistic +phi correlation|1 +(noun)|phi coefficient|fourfold point correlation|nonparametric statistic|distribution free statistic +phial|1 +(noun)|vial|ampule|ampul|ampoule|bottle +phidias|1 +(noun)|Phidias|Pheidias|sculptor|sculpturer|carver|statue maker +phil anderson|1 +(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist +philadelphaceae|1 +(noun)|Philadelphaceae|subfamily Philadelphaceae|rosid dicot family +philadelphia|1 +(noun)|Philadelphia|City of Brotherly Love|city|metropolis|urban center +philadelphia fleabane|1 +(noun)|Philadelphia fleabane|Erigeron philadelphicus|fleabane +philadelphia pepper pot|1 +(noun)|pepper pot|Philadelphia pepper pot|soup +philadelphus|1 +(noun)|shrub|bush +philadelphus coronarius|1 +(noun)|mock orange|syringa|Philadelphus coronarius|philadelphus +philaenus|1 +(noun)|Philaenus|genus Philaenus|arthropod genus +philaenus spumarius|1 +(noun)|meadow spittlebug|Philaenus spumarius|spittle insect|spittlebug +philander|2 +(verb)|womanize|womanise|interact +(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|mash|talk|speak +philanderer|1 +(noun)|womanizer|womaniser|libertine|debauchee|rounder|man|adult male +philanthropic|2 +(adj)|beneficent|benevolent|eleemosynary|charitable +(adj)|financial aid +philanthropic foundation|1 +(noun)|charity +philanthropic gift|1 +(noun)|philanthropy|financial aid +philanthropist|1 +(noun)|altruist|donor|giver|presenter +philanthropy|1 +(noun)|philanthropic gift|financial aid +philatelic|1 +(adj)|philatelical|collection|collecting|assembling|aggregation +philatelical|1 +(adj)|philatelic|collection|collecting|assembling|aggregation +philatelist|1 +(noun)|stamp collector|collector|aggregator +philately|1 +(noun)|stamp collecting|stamp collection|collection|collecting|assembling|aggregation +philemon|3 +(noun)|Philemon|countryman +(noun)|Philemon|Colossian +(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|book|New Testament +philharmonic|2 +(adj)|musical organization|musical organisation|musical group +(adj)|musical +philharmonic pitch|1 +(noun)|concert pitch|international pitch|pitch +philhellene|2 +(adj)|philhellenic|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend +(noun)|philhellenist|Graecophile|supporter|protagonist|champion|admirer|booster|friend +philhellenic|1 +(adj)|philhellene|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend +philhellenist|1 +(noun)|philhellene|Graecophile|supporter|protagonist|champion|admirer|booster|friend +philibert de l'orme|1 +(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect|designer +philibert delorme|1 +(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect|designer +philip|1 +(noun)|Philip|Prince Philip|Duke of Edinburgh|prince +philip anderson|1 +(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist +philip augustus|1 +(noun)|Philip II|Philip Augustus|king|male monarch +philip dormer stanhope|1 +(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman|solon|national leader +philip ii|3 +(noun)|Philip II|Philip Augustus|king|male monarch +(noun)|Philip II|Philip II of Macedon|king|male monarch +(noun)|Philip II|Philip II of Spain|king|male monarch +philip ii of macedon|1 +(noun)|Philip II|Philip II of Macedon|king|male monarch +philip ii of spain|1 +(noun)|Philip II|Philip II of Spain|king|male monarch +philip marlowe|1 +(noun)|Marlowe|Philip Marlowe|fictional character|fictitious character|character +philip michael ondaatje|1 +(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer|author +philip milton roth|1 +(noun)|Roth|Philip Roth|Philip Milton Roth|writer|author +philip of valois|1 +(noun)|Philip VI|Philip of Valois|king|male monarch +philip roth|1 +(noun)|Roth|Philip Roth|Philip Milton Roth|writer|author +philip v|1 +(noun)|Philip V|king|male monarch +philip vi|1 +(noun)|Philip VI|Philip of Valois|king|male monarch +philip warren anderson|1 +(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist +philipp lenard|1 +(noun)|Lenard|Philipp Lenard|physicist +philipp melanchthon|1 +(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian|theologist|theologizer|theologiser +philipp schwarzerd|1 +(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian|theologist|theologizer|theologiser +philippi|2 +(noun)|Philippi|city|metropolis|urban center +(noun)|Philippi|battle of Philippi|pitched battle +philippian|1 +(noun)|Philippian|Macedonian +philippians|2 +(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|book +(noun)|Philippian|Macedonian +philippic|1 +(noun)|tirade|broadside|denunciation|denouncement|declamation +philippine|2 +(adj)|Filipino|Philippine|country|state|land +(noun)|Philippine|Filipino|Western Malayo-Polynesian +philippine cedar|1 +(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany|mahogany tree +philippine islands|1 +(noun)|Philippines|Philippine Islands|archipelago +philippine mahogany|2 +(noun)|Philippine mahogany|mahogany +(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany|mahogany tree +philippine monetary unit|1 +(noun)|Philippine monetary unit|monetary unit +philippine peso|1 +(noun)|Philippine peso|peso|Philippine monetary unit +philippine sea|1 +(noun)|Philippine Sea|battle of the Philippine Sea|naval battle +philippines|3 +(noun)|Philippines|Republic of the Philippines|country|state|land +(noun)|Philippines|Philippine Islands|archipelago +(noun)|Philippine|Filipino|Western Malayo-Polynesian +philippopolis|1 +(noun)|Plovdiv|Philippopolis|city|metropolis|urban center +philippus aureolus paracelsus|1 +(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor|doc|physician|MD|Dr.|medico +philistia|1 +(noun)|Philistia|geographical area|geographic area|geographical region|geographic region +philistine|4 +(adj)|Philistine|inhabitant|dweller|denizen|indweller|geographical area|geographic area|geographical region|geographic region +(adj)|anti-intellectual|nonintellectual +(noun)|lowbrow|plebeian|pleb +(noun)|Philistine|inhabitant|dweller|denizen|indweller +philistinism|1 +(noun)|materialism|desire +phillidae|1 +(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family +phillips screw|1 +(noun)|Phillips screw|screw +phillips screwdriver|1 +(noun)|Phillips screwdriver|screwdriver +phillipsite|1 +(noun)|zeolite +phillis wheatley|1 +(noun)|Wheatley|Phillis Wheatley|poet +phillyrea|1 +(noun)|Phillyrea|genus Phillyrea|dicot genus|magnoliopsid genus +philodendron|1 +(noun)|liana +philohela|1 +(noun)|Philohela|genus Philohela|bird genus +philohela minor|1 +(noun)|American woodcock|woodcock snipe|Philohela minor|woodcock +philological|1 +(adj)|humanistic discipline|humanities|liberal arts|arts +philologist|1 +(noun)|philologue|humanist +philologue|1 +(noun)|philologist|humanist +philology|1 +(noun)|linguistics|humanistic discipline|humanities|liberal arts|arts +philomachus|1 +(noun)|Philomachus|genus Philomachus|bird genus +philomachus pugnax|1 +(noun)|ruff|Philomachus pugnax|sandpiper +philophylla|1 +(noun)|Philophylla|genus Philophylla|arthropod genus +philosopher|2 +(noun)|scholar|scholarly person|student +(noun)|person|individual|someone|somebody|mortal|human|soul +philosopher's stone|1 +(noun)|substance|matter +philosopher's wool|1 +(noun)|zinc oxide|flowers of zinc|oxide +philosophic|3 +(adj)|philosophical|humanistic discipline|humanities|liberal arts|arts +(adj)|philosophical |ideological|ideologic +(adj)|philosophical|unemotional +philosophical|3 +(adj)|philosophic|humanistic discipline|humanities|liberal arts|arts +(adj)|philosophic|unemotional +(adj)|philosophical |philosophic|ideological|ideologic +philosophical doctrine|1 +(noun)|philosophical theory|doctrine|philosophy|philosophical system|school of thought|ism +philosophical system|1 +(noun)|doctrine|philosophy|school of thought|ism|belief +philosophical theory|1 +(noun)|philosophical doctrine|doctrine|philosophy|philosophical system|school of thought|ism +philosophise|1 +(verb)|philosophize|think|cogitate|cerebrate +philosophiser|1 +(noun)|philosophizer|thinker +philosophize|1 +(verb)|philosophise|think|cogitate|cerebrate +philosophizer|1 +(noun)|philosophiser|thinker +philosophizing|1 +(noun)|exposition|expounding +philosophy|3 +(noun)|doctrine|philosophical system|school of thought|ism|belief +(noun)|humanistic discipline|humanities|liberal arts|arts +(noun)|belief +philosophy department|1 +(noun)|department of philosophy|academic department +philter|1 +(noun)|philtre|love-potion|love-philter|love-philtre|potion +philtre|1 +(noun)|philter|love-potion|love-philter|love-philtre|potion +phimosis|1 +(noun)|abnormality|abnormalcy|abnormal condition +phineas taylor barnum|1 +(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman|promoter|impresario +phintias|1 +(noun)|Phintias|Pythias|friend +phiz|2 +(noun)|Browne|Hablot Knight Browne|Phiz|illustrator +(noun)|countenance|physiognomy|visage|kisser|smiler|mug|face|human face +phlebectomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +phlebitis|1 +(noun)|inflammation|redness|rubor +phlebodium|1 +(noun)|Phlebodium|genus Phlebodium|fern genus +phlebodium aureum|1 +(noun)|golden polypody|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern +phlebogram|1 +(noun)|venogram|roentgenogram|X ray|X-ray picture|X-ray photograph +phlebothrombosis|1 +(noun)|venous thrombosis|thrombosis +phlebotomise|1 +(verb)|bleed|leech|phlebotomize|treat|care for +phlebotomize|1 +(verb)|bleed|leech|phlebotomise|treat|care for +phlebotomus|2 +(noun)|sandfly fever|pappataci fever|disease +(noun)|Phlebotomus|genus Phlebotomus|arthropod genus +phlebotomus papatasii|1 +(noun)|sand fly|sandfly|Phlebotomus papatasii|gnat +phlebotomy|1 +(noun)|venesection|incision|section|surgical incision|bloodletting +phlegm|3 +(noun)|emotionlessness|impassivity|impassiveness|indifference|stolidity|unemotionality|apathy +(noun)|sputum|mucus|mucous secretion|liquid body substance|bodily fluid|body fluid|humor|humour +(noun)|languor|lethargy|sluggishness|inactiveness|inactivity|inertia +phlegmasia alba dolens|1 +(noun)|milk leg|white leg|thrombosis +phlegmatic|1 +(adj)|phlegmatical|unemotional +phlegmatical|1 +(adj)|phlegmatic|unemotional +phlegmy|1 +(adj)|phlegmy |loose +phleum|1 +(noun)|Phleum|genus Phleum|monocot genus|liliopsid genus +phleum pratense|1 +(noun)|timothy|herd's grass|Phleum pratense|grass +phloem|1 +(noun)|bast|vascular tissue +phlogiston|1 +(noun)|substance|matter +phlogopite|1 +(noun)|mica|isinglass +phlomis|1 +(noun)|subshrub|suffrutex +phlomis fruticosa|1 +(noun)|Jerusalem sage|Phlomis fruticosa|subshrub|suffrutex +phlox|1 +(noun)|herb|herbaceous plant +phlox bifida|1 +(noun)|chickweed phlox|sand phlox|Phlox bifida|Phlox stellaria|phlox +phlox family|1 +(noun)|Polemoniaceae|family Polemoniaceae|asterid dicot family +phlox stellaria|1 +(noun)|chickweed phlox|sand phlox|Phlox bifida|Phlox stellaria|phlox +phlox subulata|1 +(noun)|moss pink|mountain phlox|moss phlox|dwarf phlox|Phlox subulata|phlox +phnom penh|1 +(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital +phobia|1 +(noun)|phobic disorder|phobic neurosis|anxiety disorder +phobic|1 +(adj)|neurotic |psychoneurotic +phobic disorder|1 +(noun)|phobia|phobic neurosis|anxiety disorder +phobic neurosis|1 +(noun)|phobia|phobic disorder|anxiety disorder +phobophobia|1 +(noun)|simple phobia +phobos|1 +(noun)|Phobos|satellite +phoca|1 +(noun)|Phoca|genus Phoca|mammal genus +phoca vitulina|1 +(noun)|harbor seal|common seal|Phoca vitulina|earless seal|true seal|hair seal +phocaena|1 +(noun)|Phocaena|genus Phocaena|mammal genus +phocaena phocaena|1 +(noun)|harbor porpoise|herring hog|Phocaena phocaena|porpoise +phocaena sinus|1 +(noun)|vaquita|Phocaena sinus|porpoise +phocidae|1 +(noun)|Phocidae|family Phocidae|mammal family +phocine|1 +(adj)|pinniped mammal|pinniped|pinnatiped +phocomelia|1 +(noun)|seal limbs|meromelia +phoebe|3 +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|Phoebe|Titaness +(noun)|phoebe bird|Sayornis phoebe|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +phoebe bird|1 +(noun)|phoebe|Sayornis phoebe|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +phoebus|1 +(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity +phoebus apollo|1 +(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity +phoenicia|1 +(noun)|Phoenicia|Phenicia|geographical area|geographic area|geographical region|geographic region +phoenician|2 +(noun)|Phoenician|Semite +(noun)|Phoenician|Canaanitic|Canaanitic language +phoenicophorium|1 +(noun)|Phoenicophorium|genus Phoenicophorium|monocot genus|liliopsid genus +phoenicopteridae|1 +(noun)|Phoenicopteridae|family Phoenicopteridae|bird family +phoeniculidae|1 +(noun)|Phoeniculidae|family Phoeniculidae|bird family +phoeniculus|1 +(noun)|Phoeniculus|genus Phoeniculus|bird genus +phoenicurus|1 +(noun)|Phoenicurus|genus Phoenicurus|bird genus +phoenix|4 +(noun)|Phoenix|capital of Arizona|state capital +(noun)|Phoenix|genus Phoenix|monocot genus|liliopsid genus +(noun)|Phoenix|mythical being +(noun)|Phoenix|constellation +phoenix dactylifera|1 +(noun)|date palm|Phoenix dactylifera|feather palm +phoenix tree|1 +(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|Firmiana simplex|tree +pholadidae|1 +(noun)|Pholadidae|family Pholadidae|mollusk family +pholas|1 +(noun)|Pholas|genus Pholas|mollusk genus +pholidae|1 +(noun)|Pholidae|family Pholidae|family Pholididae|fish family +pholidota|2 +(noun)|Pholidota|genus Pholidota|monocot genus|liliopsid genus +(noun)|Pholidota|order Pholidota|animal order +pholiota|1 +(noun)|Pholiota|genus Pholiota|fungus genus +pholiota astragalina|1 +(noun)|Pholiota astragalina|agaric +pholiota aurea|1 +(noun)|Pholiota aurea|golden pholiota|agaric +pholiota destruens|1 +(noun)|Pholiota destruens|agaric +pholiota flammans|1 +(noun)|Pholiota flammans|agaric +pholiota flavida|1 +(noun)|Pholiota flavida|agaric +pholiota nameko|1 +(noun)|nameko|viscid mushroom|Pholiota nameko|agaric +pholiota squarrosa|1 +(noun)|Pholiota squarrosa|scaly pholiota|agaric +pholiota squarrosa-adiposa|1 +(noun)|Pholiota squarrosa-adiposa|agaric +pholiota squarrosoides|1 +(noun)|Pholiota squarrosoides|agaric +pholis|1 +(noun)|Pholis|genus Pholis|fish genus +pholis gunnellus|1 +(noun)|rock gunnel|butterfish|Pholis gunnellus|gunnel|bracketed blenny +pholistoma|1 +(noun)|Pholistoma|genus Pholistoma|asterid dicot genus +pholistoma auritum|1 +(noun)|fiesta flower|Pholistoma auritum|Nemophila aurita|herb|herbaceous plant +phon|1 +(noun)|sound unit +phonate|1 +(verb)|vocalize|vocalise|talk|speak|utter|mouth|verbalize|verbalise +phonation|1 +(noun)|voice|vocalization|vocalisation|vox|communication +phone|4 +(noun)|telephone|telephone set|electronic equipment +(noun)|speech sound|sound|language unit|linguistic unit +(noun)|earphone|earpiece|headphone|electro-acoustic transducer +(verb)|call|telephone|call up|ring|telecommunicate +phone-in|1 +(noun)|talk show|chat show +phone bill|1 +(noun)|telephone bill|bill|account|invoice +phone book|2 +(noun)|phonebook|telephone book|telephone directory|directory +(noun)| +phone booth|1 +(noun)|telephone booth|call box|telephone box|telephone kiosk|booth|cubicle|stall|kiosk +phone call|1 +(noun)|call|telephone call|telephone|telephony +phone card|1 +(noun)|calling card|credit card|charge card|charge plate +phone company|1 +(noun)|telephone company|telephone service|phone service|telco|utility|public utility|public-service corporation +phone cord|1 +(noun)|telephone cord|telephone wire|telephone line|telegraph wire|telegraph line +phone jack|1 +(noun)|telephone jack|jack +phone line|1 +(noun)|telephone line|telephone circuit|subscriber line|line|connection|connexion|connector|connecter|connective +phone message|1 +(noun)|telephone message|message +phone number|1 +(noun)|telephone number|number|signal|signaling|sign +phone plug|1 +(noun)|telephone plug|plug|male plug +phone service|1 +(noun)|telephone company|telephone service|phone company|telco|utility|public utility|public-service corporation +phone system|1 +(noun)|telephone system|communication system +phone tapper|1 +(noun)|tapper|wiretapper|eavesdropper +phonebook|1 +(noun)|phone book|telephone book|telephone directory|directory +phoneme|1 +(noun)|phone|speech sound|sound +phonemic|1 +(adj)|phone|speech sound|sound +phonemic system|1 +(noun)|language system +phonemics|1 +(noun)|phonology|synchronic linguistics|descriptive linguistics +phoner|1 +(noun)|caller|caller-up|telephoner|speaker|talker|utterer|verbalizer|verbaliser +phonetic|2 +(adj)|phonic|language unit|linguistic unit +(adj)|acoustics +phonetic alphabet|1 +(noun)|sound alphabet|alphabet +phonetic symbol|1 +(noun)|character|grapheme|graphic symbol +phonetic transcription|1 +(noun)|transcription|written text +phonetician|1 +(noun)|linguist|linguistic scientist +phonetics|1 +(noun)|acoustics +phoney|2 +(adj)|bogus|fake|phony|bastard|counterfeit |imitative +(noun)|hypocrite|dissembler|phony|pretender|deceiver|cheat|cheater|trickster|beguiler|slicker +phonic|3 +(adj)|teaching reading +(adj)|faculty|mental faculty|module +(adj)|phonetic|language unit|linguistic unit +phonics|1 +(noun)|teaching reading +phonogram|1 +(noun)|written symbol|printed symbol +phonogramic|1 +(adj)|written symbol|printed symbol +phonograph|1 +(noun)|record player|machine +phonograph album|1 +(noun)|record album|album +phonograph needle|1 +(noun)|needle|stylus +phonograph record|1 +(noun)|phonograph recording|record|disk|disc|platter|sound recording|audio recording +phonograph recording|1 +(noun)|phonograph record|record|disk|disc|platter|sound recording|audio recording +phonograph recording disk|1 +(noun)|acetate disk|disk|disc +phonologic|1 +(adj)|phonological|synchronic linguistics|descriptive linguistics +phonologic system|1 +(noun)|phonological system|language system +phonological|1 +(adj)|phonologic|synchronic linguistics|descriptive linguistics +phonological system|1 +(noun)|phonologic system|language system +phonologist|1 +(noun)|linguist|linguistic scientist +phonology|1 +(noun)|phonemics|synchronic linguistics|descriptive linguistics +phonophobia|1 +(noun)|acousticophobia|simple phobia +phony|2 +(adj)|bogus|fake|phoney|bastard|counterfeit |imitative +(noun)|hypocrite|dissembler|phoney|pretender|deceiver|cheat|cheater|trickster|beguiler|slicker +phoradendron|1 +(noun)|Phoradendron|genus Phoradendron|dilleniid dicot genus +phoradendron flavescens|1 +(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe|false mistletoe +phoradendron serotinum|1 +(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe|false mistletoe +phoronid|1 +(noun)|invertebrate +phoronida|1 +(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum +phoronidea|1 +(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum +phosgene|1 +(noun)|gas +phosphatase|1 +(noun)|enzyme +phosphate|2 +(noun)|orthophosphate|inorganic phosphate|salt +(noun)|soft drink +phosphate buffer solution|1 +(noun)|PBS|buffer solution +phosphine|1 +(noun)|gas|pesticide +phosphocreatine|1 +(noun)|creatine phosphate|creatine phosphoric acid|organic compound +phospholipid|1 +(noun)|lipid|lipide|lipoid +phosphoprotein|1 +(noun)|protein +phosphor bronze|1 +(noun)|bronze +phosphoresce|1 +(verb)|exhibit +phosphorescence|1 +(noun)|fluorescence +phosphorescent|1 +(adj)|light +phosphoric|1 +(adj)|phosphorous|chemical element|element +phosphoric acid|1 +(noun)|orthophosphoric acid|oxyacid|oxygen acid +phosphorous|1 +(adj)|phosphoric|chemical element|element +phosphorous acid|1 +(noun)|hypophosphorous acid|orthophosphorous acid|oxyacid|oxygen acid +phosphorus|2 +(noun)|P|atomic number 15|chemical element|element +(noun)|morning star|daystar|Phosphorus|planet +phot|1 +(noun)|illumination unit +photalgia|1 +(noun)|photophobia|pain|hurting +photic|1 +(adj)|actinic radiation|actinic ray +photinia|1 +(noun)|Photinia|genus Photinia|rosid dicot genus +photinia arbutifolia|1 +(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +photo|1 +(noun)|photograph|exposure|pic|picture|image|icon|ikon +photo-offset|1 +(noun)|photo-offset printing|offset|offset printing +photo-offset printing|1 +(noun)|photo-offset|offset|offset printing +photo credit|1 +(noun)|citation|acknowledgment|credit|reference|mention|quotation +photo finish|1 +(noun)|finish +photo op|1 +(noun)|photo opportunity|affair|occasion|social occasion|function|social function +photo opportunity|1 +(noun)|photo op|affair|occasion|social occasion|function|social function +photoblepharon|1 +(noun)|Photoblepharon|genus Photoblepharon|fish genus +photoblepharon palpebratus|1 +(noun)|flashlight fish|Photoblepharon palpebratus|spiny-finned fish|acanthopterygian +photocathode|1 +(noun)|cathode +photocell|1 +(noun)|photoelectric cell|photoconductive cell|electric eye|magic eye|transducer|detector|sensor|sensing element +photochemical|1 +(adj)|chemistry|chemical science +photochemical exchange|1 +(noun)|exchange +photochemical reaction|1 +(noun)|chemical reaction|reaction +photochemistry|1 +(noun)|chemistry|chemical science +photocoagulation|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +photocoagulator|1 +(noun)|surgical instrument +photoconduction|1 +(noun)|photoconductivity|electrical conduction +photoconductive|1 +(adj)|electrical conduction +photoconductive cell|1 +(noun)|photoelectric cell|photocell|electric eye|magic eye|transducer|detector|sensor|sensing element +photoconductivity|1 +(noun)|photoconduction|electrical conduction +photocopier|1 +(noun)|duplicator|copier +photocopy|2 +(noun)|photograph|photo|exposure|pic|copy +(verb)|run off|xerox|reproduce +photoelectric|1 +(adj)|photoelectrical|physical phenomenon +photoelectric cell|1 +(noun)|photoconductive cell|photocell|electric eye|magic eye|transducer|detector|sensor|sensing element +photoelectric emission|1 +(noun)|emission +photoelectrical|1 +(adj)|photoelectric|electricity +photoelectricity|1 +(noun)|electricity +photoelectron|1 +(noun)|electron|negatron +photoemission|1 +(noun)|emission +photoemissive|1 +(adj)|emission +photoengraving|1 +(noun)|halftone|halftone engraving|engraving +photoflash|1 +(noun)|flash|flash lamp|flashgun|flashbulb|flash bulb|lamp|photographic equipment +photoflood|1 +(noun)|flood|floodlight|flood lamp|light|light source +photogelatin process|1 +(noun)|collotype|collotype printing|planographic printing|planography +photogenic|1 +(adj)|attractive +photogenic epilepsy|1 +(noun)|reflex epilepsy +photograph|2 +(noun)|photo|exposure|pic|picture|image|icon|ikon +(verb)|snap|shoot|record|enter|put down +photograph album|1 +(noun)|album +photographer|1 +(noun)|lensman|artist|creative person +photographer's model|1 +(noun)|model|poser +photographic|2 +(adj)|pictorial representation|picturing +(adj)|exact +photographic camera|1 +(noun)|camera|photographic equipment +photographic emulsion|1 +(noun)|emulsion|coating|coat +photographic equipment|1 +(noun)|equipment +photographic film|1 +(noun)|film|photographic paper|photographic material +photographic material|1 +(noun)|photographic paper|photographic equipment +photographic paper|1 +(noun)|photographic material|photographic equipment +photographic plate|1 +(noun)|plate|sheet|flat solid +photographic print|1 +(noun)|print|photograph|photo|exposure|pic +photography|3 +(noun)|picture taking|pictorial representation|picturing +(noun)|process +(noun)|occupation|business|job|line of work|line +photogravure|3 +(noun)|intaglio printing|intaglio|gravure +(noun)|gravure|heliogravure|print +(noun)|rotogravure|gravure +photojournalism|1 +(noun)|journalism|news media|fourth estate +photojournalist|1 +(noun)|journalist +photolithograph|1 +(noun)|lithograph +photolithography|1 +(noun)|lithography +photomechanical|1 +(adj)|process +photomechanics|2 +(noun)|photoplatemaking|process +(noun)|technique +photometer|2 +(noun)|measuring instrument|measuring system|measuring device +(noun)|light meter|exposure meter|photographic equipment +photometric|1 +(adj)|photometrical|measurement|measuring|measure|mensuration +photometrical|1 +(adj)|photometric|measurement|measuring|measure|mensuration +photometrician|1 +(noun)|photometrist|measurer +photometrist|1 +(noun)|photometrician|measurer +photometry|1 +(noun)|measurement|measuring|measure|mensuration +photomicrograph|1 +(noun)|photograph|photo|exposure|pic +photomontage|1 +(noun)|collage|montage +photon|1 +(noun)|gauge boson +photophobia|2 +(noun)|simple phobia +(noun)|photalgia|pain|hurting +photopic vision|1 +(noun)|daylight vision|sight|vision|visual sense|visual modality +photopigment|1 +(noun)|pigment +photoplatemaking|1 +(noun)|photomechanics|process +photoretinitis|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +photosensitise|1 +(verb)|photosensitize|sensitize|sensitise +photosensitive|1 +(adj)|light-sensitive|sensitive +photosensitivity|1 +(noun)|radiosensitivity|sensitivity|sensitiveness|sensibility +photosensitize|1 +(verb)|photosensitise|sensitize|sensitise +photosphere|1 +(noun)|surface +photostat|3 +(noun)|photocopy +(noun)|Photostat|Photostat machine|duplicator|copier +(verb)|photocopy|run off|xerox +photostat machine|1 +(noun)|Photostat|Photostat machine|duplicator|copier +photosynthesis|1 +(noun)|chemical process|chemical change|chemical action +photosynthetic|1 +(adj)|photosynthetic |chemical process|chemical change|chemical action +phototherapy|1 +(noun)|radiotherapy|radiation therapy|radiation|actinotherapy|irradiation +phototrophic bacteria|1 +(noun)|phototropic bacteria|eubacteria|eubacterium|true bacteria +phototropic bacteria|1 +(noun)|phototrophic bacteria|eubacteria|eubacterium|true bacteria +phototropism|1 +(noun)|tropism +photovoltaic|1 +(adj)|electrical phenomenon +photovoltaic cell|1 +(noun)|solar cell|cell|electric cell +phoxinus|1 +(noun)|Phoxinus|genus Phoxinus|fish genus +phoxinus phoxinus|1 +(noun)|minnow|Phoxinus phoxinus|cyprinid|cyprinid fish +phragmacone|1 +(noun)|phragmocone|shell +phragmipedium|1 +(noun)|Phragmipedium|genus Phragmipedium|monocot genus|liliopsid genus +phragmites|1 +(noun)|Phragmites|genus Phragmites|monocot genus|liliopsid genus +phragmites communis|1 +(noun)|ditch reed|common reed|carrizo|Phragmites communis|reed|Phragmites|genus Phragmites +phragmocone|1 +(noun)|phragmacone|shell +phrasal|1 +(adj)|construction|grammatical construction|expression +phrasal idiom|1 +(noun)|idiom|idiomatic expression|set phrase|phrase|saying|expression|locution +phrasal verb|1 +(noun)|verb +phrase|4 +(noun)|construction|grammatical construction|expression +(noun)|musical phrase|passage|musical passage +(noun)|idiom|idiomatic expression|phrasal idiom|set phrase|saying|expression|locution +(verb)|give voice|formulate|word|articulate|express|show|evince +phrase book|1 +(noun)|book +phrase structure|1 +(noun)|syntax|sentence structure|structure +phraseology|1 +(noun)|wording|diction|phrasing|choice of words|verbiage|formulation|expression +phrasing|2 +(noun)|grouping +(noun)|wording|diction|phraseology|choice of words|verbiage|formulation|expression +phratry|1 +(noun)|family|family line|folk|kinfolk|kinsfolk|sept|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +phreatic|1 +(adj)|water|H2O +phrenetic|1 +(adj)|frantic|frenetic|frenzied|agitated +phrenic|1 +(adj)|muscular structure|musculature|muscle system|membrane|tissue layer +phrenic nerve|1 +(noun)|nervus phrenicus|spinal nerve|nervus spinalis +phrenic vein|1 +(noun)|vena phrenica|vein|vena|venous blood vessel +phrenitis|1 +(noun)|encephalitis|cephalitis|inflammation|redness|rubor +phrenological|1 +(adj)|life science|bioscience +phrenologist|1 +(noun)|craniologist|mountebank|charlatan +phrenology|1 +(noun)|life science|bioscience +phrontistery|1 +(noun)|establishment +phrygia|1 +(noun)|Phrygia|geographical area|geographic area|geographical region|geographic region +phrygian|2 +(noun)|Phrygian|inhabitant|dweller|denizen|indweller +(noun)|Phrygian|Thraco-Phrygian +phrygian deity|1 +(noun)|Phrygian deity|deity|divinity|god|immortal +phrynosoma|1 +(noun)|Phrynosoma|genus Phrynosoma|reptile genus +phrynosoma cornutum|1 +(noun)|Texas horned lizard|Phrynosoma cornutum|horned lizard|horned toad|horny frog +phs|2 +(noun)|United States Public Health Service|PHS|agency|federal agency|government agency|bureau|office|authority +(noun)|pH|pH scale|hydrogen ion concentration +phthalic acid|1 +(noun)|acid +phthalic anhydride|1 +(noun)|anhydride +phthiriidae|1 +(noun)|Phthiriidae|family Phthiriidae|arthropod family +phthirius|1 +(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus +phthirius pubis|1 +(noun)|crab louse|pubic louse|crab|Phthirius pubis|louse|sucking louse +phthirus|1 +(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus +phthisis|1 +(noun)|pulmonary tuberculosis|consumption|wasting disease|white plague|tuberculosis|TB|T.B. +phthorimaea|1 +(noun)|Phthorimaea|genus Phthorimaea|arthropod genus +phthorimaea operculella|2 +(noun)|potato tuberworm|Phthorimaea operculella|caterpillar +(noun)|potato moth|potato tuber moth|splitworm|Phthorimaea operculella|gelechiid|gelechiid moth +phycobilin|1 +(noun)|pigment +phycocyanin|1 +(noun)|pigment +phycoerythrin|1 +(noun)|pigment +phycomycetes|1 +(noun)|Phycomycetes|Phycomycetes group|taxonomic group|taxonomic category|taxon +phycomycetes group|1 +(noun)|Phycomycetes|Phycomycetes group|taxonomic group|taxonomic category|taxon +phycomycosis|1 +(noun)|fungal infection|mycosis +phylactery|1 +(noun)|tefillin|reminder +phyle|1 +(noun)|tribe|folk +phyletic|1 +(adj)|phylogenetic|organic process|biological process +phyllidae|1 +(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family +phylliform|1 +(adj)|formed +phyllitis|1 +(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus +phyllitis scolopendrium|1 +(noun)|hart's-tongue|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern +phyllium|1 +(noun)|Phyllium|genus Phyllium|arthropod genus +phyllo|1 +(noun)|puff paste|pate feuillete +phylloclad|1 +(noun)|cladode|cladophyll|phylloclade|stalk|stem +phyllocladaceae|1 +(noun)|Phyllocladaceae|family Phyllocladaceae|gymnosperm family +phylloclade|1 +(noun)|cladode|cladophyll|phylloclad|stalk|stem +phyllocladus|1 +(noun)|Phyllocladus|genus Phyllocladus|gymnosperm genus +phyllocladus alpinus|1 +(noun)|Alpine celery pine|Phyllocladus alpinus|celery pine +phyllocladus asplenifolius|1 +(noun)|celery top pine|celery-topped pine|Phyllocladus asplenifolius|celery pine +phyllocladus trichomanoides|1 +(noun)|tanekaha|Phyllocladus trichomanoides|celery pine +phyllode|1 +(noun)|petiole|leafstalk +phyllodial|1 +(adj)|petiole|leafstalk +phyllodoce|1 +(noun)|Phyllodoce|genus Phyllodoce|dilleniid dicot genus +phyllodoce breweri|1 +(noun)|purple heather|Brewer's mountain heather|Phyllodoce breweri|heath +phyllodoce caerulea|1 +(noun)|mountain heath|Phyllodoce caerulea|Bryanthus taxifolius|heath +phylloporus|1 +(noun)|Phylloporus|genus Phylloporus|fungus genus +phylloporus boletinoides|1 +(noun)|Phylloporus boletinoides|bolete +phylloquinone|1 +(noun)|vitamin K1|phytonadione|vitamin K|naphthoquinone|antihemorrhagic factor +phyllorhynchus|1 +(noun)|Phyllorhynchus|genus Phyllorhynchus|reptile genus +phylloscopus|1 +(noun)|Phylloscopus|genus Phylloscopus|bird genus +phylloscopus sibilatrix|1 +(noun)|wood warbler|Phylloscopus sibilatrix|Old World warbler|true warbler +phyllostachys|1 +(noun)|Phyllostachys|genus Phyllostachys|monocot genus|liliopsid genus +phyllostachys aurea|1 +(noun)|fishpole bamboo|gosan-chiku|hotei-chiku|Phyllostachys aurea|bamboo +phyllostachys bambusoides|1 +(noun)|giant timber bamboo|madake|ku-chiku|Phyllostachys bambusoides|bamboo +phyllostachys nigra|1 +(noun)|black bamboo|kuri-chiku|Phyllostachys nigra|bamboo +phyllostomatidae|1 +(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family +phyllostomidae|1 +(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family +phyllostomus|1 +(noun)|Phyllostomus|genus Phyllostomus|mammal genus +phyllostomus hastatus|1 +(noun)|Phyllostomus hastatus|leafnose bat|leaf-nosed bat +phylloxera|1 +(noun)|Phylloxera|genus Phylloxera|arthropod genus +phylloxera vitifoleae|1 +(noun)|grape louse|grape phylloxera|Phylloxera vitifoleae|plant louse|louse +phylloxeridae|1 +(noun)|Phylloxeridae|family Phylloxeridae|arthropod family +phylogenesis|1 +(noun)|evolution|phylogeny|organic process|biological process +phylogenetic|1 +(adj)|phyletic|organic process|biological process +phylogenetic relation|1 +(noun)|affinity|kinship|family relationship|relationship +phylogeny|1 +(noun)|evolution|phylogenesis|organic process|biological process +phylum|2 +(noun)|social group +(noun)|taxonomic group|taxonomic category|taxon +phylum acanthocephala|1 +(noun)|Acanthocephala|phylum Acanthocephala|phylum +phylum annelida|1 +(noun)|Annelida|phylum Annelida|phylum +phylum arthropoda|1 +(noun)|Arthropoda|phylum Arthropoda|phylum +phylum aschelminthes|1 +(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum +phylum brachiopoda|1 +(noun)|Brachiopoda|phylum Brachiopoda|phylum +phylum bryozoa|1 +(noun)|Bryozoa|phylum Bryozoa|polyzoa|phylum +phylum chaetognatha|1 +(noun)|Chaetognatha|phylum Chaetognatha|phylum +phylum chordata|1 +(noun)|Chordata|phylum Chordata|phylum +phylum cnidaria|1 +(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum +phylum coelenterata|1 +(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum +phylum cryptophyta|1 +(noun)|Cryptophyta|phylum Cryptophyta|phylum +phylum ctenophora|1 +(noun)|Ctenophora|phylum Ctenophora|phylum +phylum cycliophora|1 +(noun)|Cycliophora|phylum Cycliophora|phylum +phylum echinodermata|1 +(noun)|Echinodermata|phylum Echinodermata|phylum +phylum ectoprocta|1 +(noun)|Ectoprocta|phylum Ectoprocta|phylum +phylum entoprocta|1 +(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum +phylum mollusca|1 +(noun)|Mollusca|phylum Mollusca|phylum +phylum nematoda|1 +(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum +phylum nemertea|1 +(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum +phylum nemertina|1 +(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum +phylum phoronida|1 +(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum +phylum platyhelminthes|1 +(noun)|Platyhelminthes|phylum Platyhelminthes|phylum +phylum pogonophora|1 +(noun)|Pogonophora|phylum Pogonophora|phylum +phylum porifera|1 +(noun)|Porifera|phylum Porifera|phylum +phylum protozoa|1 +(noun)|Protozoa|phylum Protozoa|phylum +phylum pyrrophyta|1 +(noun)|Pyrrophyta|phylum Pyrrophyta|phylum +phylum rotifera|1 +(noun)|Rotifera|phylum Rotifera|phylum +phylum sipuncula|1 +(noun)|Sipuncula|phylum Sipuncula|phylum +physa|1 +(noun)|gastropod|univalve +physalia|1 +(noun)|Physalia|genus Physalia|coelenterate genus +physalis|1 +(noun)|Physalis|genus Physalis|asterid dicot genus +physalis alkekengi|1 +(noun)|Chinese lantern plant|winter cherry|bladder cherry|Physalis alkekengi|ground cherry|husk tomato +physalis ixocarpa|1 +(noun)|tomatillo|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry|husk tomato +physalis peruviana|1 +(noun)|cape gooseberry|purple ground cherry|Physalis peruviana|ground cherry|husk tomato +physalis philadelphica|1 +(noun)|tomatillo|miltomate|purple ground cherry|jamberry|Physalis philadelphica|ground cherry|husk tomato +physalis pruinosa|1 +(noun)|strawberry tomato|dwarf cape gooseberry|Physalis pruinosa|ground cherry|husk tomato +physalis pubescens|1 +(noun)|downy ground cherry|strawberry tomato|Physalis pubescens|ground cherry|husk tomato +physalis viscosa|1 +(noun)|yellow henbane|Physalis viscosa|ground cherry|husk tomato +physaria|1 +(noun)|Physaria|genus Physaria|dilleniid dicot genus +physeter|1 +(noun)|Physeter|genus Physeter|mammal genus +physeter catodon|1 +(noun)|sperm whale|cachalot|black whale|Physeter catodon|toothed whale +physeteridae|1 +(noun)|Physeteridae|family Physeteridae|mammal family +physiatrics|1 +(noun)|physical therapy|physiotherapy|therapy +physic|1 +(noun)|purgative|cathartic|aperient|medicine|medication|medicament|medicinal drug +physic nut|1 +(noun)|Jatropha curcus|angiospermous tree|flowering tree +physical|7 +(adj)|physical |animal|carnal|fleshly|sensual|bodily|corporal|corporeal|somatic|material|personal|physiologic|physiological|somatogenic|somatogenetic +(adj)|natural science +(adj)|tangible|touchable|material +(adj)|natural +(adj)|active|energetic +(adj)|material +(adj)|forcible|strong-arm|forceful +physical ability|1 +(noun)|ability +physical anthropology|1 +(noun)|anthropology +physical attraction|1 +(noun)|sexual desire|concupiscence|desire +physical body|1 +(noun)|human body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +physical change|1 +(noun)|phase change|phase transition|state change|natural process|natural action|action|activity +physical chemistry|1 +(noun)|chemistry|chemical science +physical education|1 +(noun)|education +physical exercise|1 +(noun)|exercise|exercising|physical exertion|workout|effort|elbow grease|exertion|travail|sweat +physical exertion|1 +(noun)|exercise|exercising|physical exercise|workout|effort|elbow grease|exertion|travail|sweat +physical fitness|1 +(noun)|fitness|good shape|good condition|condition|shape +physical geography|1 +(noun)|physiography|geography|geographics +physical object|1 +(noun)|object|entity +physical pendulum|1 +(noun)|compound pendulum|pendulum +physical phenomenon|1 +(noun)|natural phenomenon +physical property|1 +(noun)|property +physical rehabilitation|1 +(noun)|physical restoration|therapeutic rehabilitation|rehabilitation +physical restoration|1 +(noun)|physical rehabilitation|therapeutic rehabilitation|rehabilitation +physical science|1 +(noun)|physics|natural philosophy|natural science +physical structure|1 +(noun)|body|organic structure|natural object +physical therapist|1 +(noun)|physiotherapist|therapist|healer +physical therapy|1 +(noun)|physiotherapy|physiatrics|therapy +physical topology|1 +(noun)|topology|network topology +physical value|1 +(noun)|reproduction cost|cost +physicalism|1 +(noun)|materialism|philosophical doctrine|philosophical theory +physicality|1 +(noun)|animalism|disposition|temperament +physicalness|1 +(noun)|materiality|corporeality|quality +physician|1 +(noun)|doctor|doc|MD|Dr.|medico|medical practitioner|medical man +physician-assisted suicide|1 +(noun)|assisted suicide +physician-patient privilege|1 +(noun)|privilege +physicist|1 +(noun)|scientist|man of science +physicochemical|1 +(adj)|chemistry|chemical science +physics|2 +(noun)|physical science|natural philosophy|natural science +(noun)|purgative|cathartic|physic|aperient|medicine|medication|medicament|medicinal drug +physics class|1 +(noun)|class|form|grade +physics department|1 +(noun)|department of physics|academic department +physics lab|1 +(noun)|physics laboratory|lab|laboratory|research lab|research laboratory|science lab|science laboratory +physics laboratory|1 +(noun)|physics lab|lab|laboratory|research lab|research laboratory|science lab|science laboratory +physidae|1 +(noun)|Physidae|family Physidae|mollusk family +physiognomy|1 +(noun)|countenance|phiz|visage|kisser|smiler|mug|face|human face +physiography|1 +(noun)|physical geography|geography|geographics +physiologic|1 +(adj)|physiological|physical +physiological|2 +(adj)|biology|biological science +(adj)|physiologic|physical +physiological anatomy|1 +(noun)|functional anatomy|morphophysiology|anatomy|general anatomy +physiological condition|1 +(noun)|physiological state|state +physiological jaundice of the newborn|1 +(noun)|jaundice of the newborn|icterus neonatorum|jaundice|icterus +physiological nystagmus|1 +(noun)|nystagmus +physiological property|1 +(noun)|bodily property +physiological psychology|1 +(noun)|neuropsychology|psychophysiology|psychology|psychological science +physiological reaction|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|reaction|response +physiological sphincter|1 +(noun)|sphincter|anatomical sphincter|sphincter muscle +physiological state|1 +(noun)|physiological condition|state +physiologist|1 +(noun)|biologist|life scientist +physiology|2 +(noun)|biology|biological science +(noun)|bodily property +physiotherapeutic|1 +(adj)|therapy +physiotherapist|1 +(noun)|physical therapist|therapist|healer +physiotherapy|1 +(noun)|physical therapy|physiatrics|therapy +physique|2 +(noun)|build|body-build|habitus|bodily property +(noun)|human body|physical body|material body|soma|build|figure|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +physostegia|1 +(noun)|herb|herbaceous plant +physostegia virginiana|1 +(noun)|false dragonhead|false dragon head|obedient plant|Physostegia virginiana|physostegia +physostigma|1 +(noun)|Physostigma|genus Physostigma|plant genus +physostigma venenosum|1 +(noun)|calabar-bean vine|Physostigma venenosum|vine +physostigmine|1 +(noun)|alkaloid +phytelephas|1 +(noun)|Phytelephas|genus Phytelephas|plant genus +phytelephas macrocarpa|1 +(noun)|ivory palm|ivory-nut palm|ivory plant|Phytelephas macrocarpa|feather palm +phytohormone|1 +(noun)|plant hormone|growth regulator|plant product +phytolacca|1 +(noun)|Phytolacca|genus Phytolacca|caryophylloid dicot genus +phytolacca acinosa|1 +(noun)|Indian poke|Phytolacca acinosa|pokeweed +phytolacca americana|1 +(noun)|poke|pigeon berry|garget|scoke|Phytolacca americana|pokeweed +phytolacca dioica|1 +(noun)|ombu|bella sombra|Phytolacca dioica|pokeweed +phytolaccaceae|1 +(noun)|Phytolaccaceae|family Phytolaccaceae|pokeweed family|caryophylloid dicot family +phytologist|1 +(noun)|botanist|plant scientist|biologist|life scientist +phytology|1 +(noun)|botany|biology|biological science +phytomastigina|1 +(noun)|Phytomastigina|subclass Phytomastigina|class +phytonadione|1 +(noun)|vitamin K1|phylloquinone|vitamin K|naphthoquinone|antihemorrhagic factor +phytophagic|1 +(adj)|plant-eating|phytophagous|phytophilous|herbivorous +phytophagous|1 +(adj)|plant-eating|phytophagic|phytophilous|herbivorous +phytophilous|1 +(adj)|plant-eating|phytophagic|phytophagous|herbivorous +phytophthora|1 +(noun)|Phytophthora|genus Phytophthora|fungus genus +phytophthora citrophthora|1 +(noun)|Phytophthora citrophthora|fungus +phytophthora infestans|1 +(noun)|Phytophthora infestans|fungus +phytoplankton|1 +(noun)|plant|flora|plant life +phytotherapy|1 +(noun)|herbal therapy|botanical medicine|therapy +phytotoxin|1 +(noun)|plant toxin|toxin +pi|5 +(noun)|3.14159265358979323846...|irrational number +(noun)|private detective|PI|private eye|private investigator|operative|shamus|sherlock|detective +(noun)|principal investigator|PI|scientist|man of science +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|protease inhibitor|PI|antiviral|antiviral agent|antiviral drug +pi-meson|1 +(noun)|pion|meson|mesotron +pia|1 +(noun)|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb|herbaceous plant +pia mater|1 +(noun)|meninx|meninges +piaf|1 +(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer|vocalist|vocalizer|vocaliser +piaffe|1 +(noun)|dressage +piaget|1 +(noun)|Piaget|Jean Piaget|psychologist +piagetian|1 +(adj)|Piagetian|psychologist +pianism|1 +(noun)|performance|public presentation +pianissimo|3 +(adj)|piano |soft +(noun)|piano|softness +(adv)|very softly +pianissimo assai|1 +(adj)|piano |soft +pianist|1 +(noun)|piano player|musician|instrumentalist|player +pianistic|2 +(adj)|musician|instrumentalist|player +(adj)|stringed instrument|percussion instrument|percussive instrument +piano|4 +(adj)|piano |soft|pianissimo|pianissimo assai +(noun)|pianoforte|forte-piano|stringed instrument|percussion instrument|percussive instrument +(noun)|pianissimo|softness +(adv)|softly +piano accordion|1 +(noun)|accordion|squeeze box|free-reed instrument +piano action|1 +(noun)|action|action mechanism +piano damper|1 +(noun)|damper block|damper|muffler +piano keyboard|1 +(noun)|fingerboard|clavier|keyboard +piano lesson|1 +(noun)|music lesson +piano maker|1 +(noun)|maker|shaper +piano music|2 +(noun)|sheet music +(noun)|music +piano player|1 +(noun)|pianist|musician|instrumentalist|player +piano sonata|1 +(noun)|sonata +piano stool|1 +(noun)|music stool|stool +piano teacher|1 +(noun)|music teacher +piano tuner|1 +(noun)|tuner|skilled worker|trained worker +piano wire|1 +(noun)|wire +pianoforte|1 +(noun)|piano|forte-piano|stringed instrument|percussion instrument|percussive instrument +pianola|1 +(noun)|mechanical piano|Pianola|player piano|piano|pianoforte|forte-piano +piassava palm|1 +(noun)|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm +piaster|2 +(noun)|piastre|fractional monetary unit|subunit +(noun)|kuru|piastre|Turkish monetary unit +piastre|2 +(noun)|piaster|fractional monetary unit|subunit +(noun)|kuru|piaster|Turkish monetary unit +piazza|1 +(noun)|plaza|place|public square|square +pibgorn|1 +(noun)|hornpipe|stockhorn|single-reed instrument|single-reed woodwind +pibroch|1 +(noun)|military march|military music|martial music +pic|2 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|flick|show +(noun)|photograph|photo|exposure|picture|image|icon|ikon +pica|3 +(noun)|em|pica em|linear unit +(noun)|Pica|genus Pica|bird genus +(noun)|geophagy|geophagia|eating|feeding +pica-pica|2 +(noun)|spurge nettle|tread-softly|devil nettle|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +(noun)|European magpie|Pica pica|magpie +pica em|1 +(noun)|em|pica|linear unit +pica pica|2 +(noun)|European magpie|Pica pica|magpie +(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +pica pica hudsonia|1 +(noun)|American magpie|Pica pica hudsonia|magpie +picador|1 +(noun)|bullfighter|toreador|horseman|equestrian|horseback rider +picaninny|1 +(noun)|pickaninny|piccaninny|Black|Black person|blackamoor|Negro|Negroid|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +picardie|1 +(noun)|Picardie|Picardy|French region +picardy|1 +(noun)|Picardie|Picardy|French region +picaresque|1 +(adj)|dishonest |dishonorable +picariae|1 +(noun)|Picariae|order Picariae|animal order +picasso|1 +(noun)|Picasso|Pablo Picasso|painter|sculptor|sculpturer|carver|statue maker +picayune|1 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|trivial|unimportant +piccalilli|1 +(noun)|relish +piccaninny|1 +(noun)|pickaninny|picaninny|Black|Black person|blackamoor|Negro|Negroid|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +piccolo|1 +(noun)|flute|transverse flute +picea|1 +(noun)|Picea|genus Picea|gymnosperm genus +picea abies|1 +(noun)|Norway spruce|Picea abies|spruce +picea breweriana|1 +(noun)|weeping spruce|Brewer's spruce|Picea breweriana|spruce +picea engelmannii|1 +(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce +picea glauca|1 +(noun)|white spruce|Picea glauca|spruce +picea mariana|1 +(noun)|black spruce|Picea mariana|spruce pine|spruce +picea obovata|1 +(noun)|Siberian spruce|Picea obovata|spruce +picea orientalis|1 +(noun)|oriental spruce|Picea orientalis|spruce +picea pungens|1 +(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce +picea rubens|1 +(noun)|red spruce|eastern spruce|yellow spruce|Picea rubens|spruce +picea sitchensis|1 +(noun)|Sitka spruce|Picea sitchensis|spruce +pichi|1 +(noun)|Fabiana imbricata|shrub|bush +pichiciago|1 +(noun)|pichiciego|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo +pichiciego|1 +(noun)|pichiciago|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo +picidae|1 +(noun)|Picidae|family Picidae|bird family +piciform bird|1 +(noun)|bird +piciformes|1 +(noun)|Piciformes|order Piciformes|animal order +pick|21 +(noun)|choice|selection|decision making|deciding +(noun)|picking|output|yield|production +(noun)|cream|elite|elite group +(noun)|woof|weft|filling|thread|yarn +(noun)|plectrum|plectron|device +(noun)|hand tool +(noun)|pickax|pickaxe|edge tool +(noun)|basketball play +(noun)|choice|selection|option|action +(verb)|choose|take|select|pick out +(verb)|pluck|cull|gather|garner|collect|pull together|pick up|pick up|pick up|pick off|pick over|pick up +(verb)|blame|find fault|knock|criticize|criticise|pick apart +(verb)|provoke|evoke|call forth|kick up +(verb)|remove|take|take away|withdraw +(verb)|clean|remove|take|take away|withdraw +(verb)|rob +(verb)|foot|pay +(verb)|pluck|plunk|pull|draw|force +(verb)|break up|pierce +(verb)|peck|beak|strike +(verb)|nibble|piece|eat +pick's disease|1 +(noun)|Pick's disease|presenile dementia +pick-me-up|2 +(noun)|pickup|corrective|restorative +(noun)|bracer|tonic|restorative +pick apart|1 +(verb)|knock|criticize|criticise|comment|notice|remark|point out +pick at|3 +(verb)|pluck at|pull at|pull +(verb)|peck at|peck|eat +(verb)|disparage|belittle|knock|criticize|criticise|pick apart +pick off|2 +(verb)|shoot|pip +(verb)|pluck|tweak|pull off|pull|draw|force +pick out|2 +(verb)|choose|take|select|decide|make up one's mind|determine +(verb)|recognize|recognise|distinguish|discern|make out|tell apart +pick over|1 +(verb)|sieve out|choose|take|select|pick out +pick up|16 +(verb)|lift up|gather up|raise|lift|elevate|get up|bring up +(verb)|touch +(verb)|transport +(verb)|collect|gather up|call for|get|acquire +(verb)|learn|hear|get word|get wind|find out|get a line|discover|see +(verb)|get|acquire +(verb)|collar|nail|apprehend|arrest|nab|cop|seize|prehend|clutch +(verb)|buy|purchase +(verb)|receive|perceive|comprehend +(verb)|bring out|set off +(verb)|meet|get together +(verb)|elate|lift up|uplift|intoxicate|stimulate|shake|shake up|excite|stir +(verb)|turn around|better|improve|ameliorate|meliorate +(verb)|catch|perceive|comprehend +(verb)|peck|eat +(verb)|perk up|perk|percolate|gain vigor|recuperate|recover|convalesce +pick up the gauntlet|1 +(verb)|take a dare|try|seek|attempt|essay|assay +pickaback|2 +(adv)|piggyback|pig-a-back +(adv)|piggyback|pig-a-back +pickaback plant|1 +(noun)|piggyback plant|youth-on-age|Tolmiea menziesii|herb|herbaceous plant +pickaninny|1 +(noun)|piccaninny|picaninny|Black|Black person|blackamoor|Negro|Negroid|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +pickax|1 +(noun)|pick|pickaxe|edge tool +pickaxe|1 +(noun)|pick|pickax|edge tool +pickelhaube|1 +(noun)|helmet +picker|2 +(noun)|chooser|selector|person|individual|someone|somebody|mortal|human|soul +(noun)|farmhand|fieldhand|field hand|farm worker +pickerel|2 +(noun)|pike +(noun)|pike +pickerel frog|1 +(noun)|Rana palustris|true frog|ranid +pickerel weed|2 +(noun)|pickerelweed|wampee|Pontederia cordata|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)| +pickerelweed|1 +(noun)|pickerel weed|wampee|Pontederia cordata|aquatic plant|water plant|hydrophyte|hydrophytic plant +pickerelweed family|1 +(noun)|Pontederiaceae|family Pontederiaceae|monocot family|liliopsid family +pickeringia|1 +(noun)|Pickeringia|genus Pickeringia|rosid dicot genus +pickeringia montana|1 +(noun)|chaparral pea|stingaree-bush|Pickeringia montana|shrub|bush +picket|7 +(noun)|lookout|lookout man|sentinel|sentry|watch|spotter|scout|watchman|watcher|security guard +(noun)|detachment +(noun)|demonstrator|protester +(noun)|military vehicle +(noun)|pale|strip +(verb)|demonstrate|march +(verb)|fasten|fix|secure +picket boat|1 +(noun)|picket +picket fence|1 +(noun)|paling|fence|fencing +picket line|1 +(noun)|line +picket ship|1 +(noun)|picket +pickett|1 +(noun)|Pickett|George Edward Pickett|general|full general +pickford|1 +(noun)|Pickford|Mary Pickford|Gladys Smith|actress +picking|2 +(noun)|pick|output|yield|production +(noun)|manual labor|manual labour +pickings|3 +(noun)|taking|action +(noun)|picking|pick|output|yield|production +(noun)|picking|manual labor|manual labour +pickle|3 +(noun)|relish +(noun)|fix|hole|jam|mess|muddle|kettle of fish|difficulty +(verb)|preserve|keep +pickle barrel|1 +(noun)|barrel|cask +pickle relish|1 +(noun)|relish +pickled|1 +(adj)|preserved +pickled herring|1 +(noun)|herring +picklepuss|1 +(noun)|sourpuss|gloomy Gus|pouter|unwelcome person|persona non grata +picknicker|1 +(noun)|picnicker|eater|feeder +pickpocket|1 +(noun)|cutpurse|dip|thief|stealer +pickup|9 +(noun)|pickup truck|truck|motortruck +(noun)|bench warrant|arrest warrant +(noun)|pick-me-up|corrective|restorative +(noun)|acquaintance|friend +(noun)|getaway|acceleration +(noun)|tone arm|pickup arm|mechanical device +(noun)|cartridge|electro-acoustic transducer +(noun)|collection|collecting|assembling|aggregation +(noun)|acquiring|getting +pickup arm|1 +(noun)|tone arm|pickup|mechanical device +pickup truck|1 +(noun)|pickup|truck|motortruck +picky|1 +(adj)|meticulous|fastidious +picnic|4 +(noun)|field day|outing|vacation|holiday +(noun)|cinch|breeze|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking|project|task|labor +(noun)|meal|repast +(verb)|eat +picnic area|1 +(noun)|picnic ground|tract|piece of land|piece of ground|parcel of land|parcel +picnic ground|1 +(noun)|picnic area|tract|piece of land|piece of ground|parcel of land|parcel +picnic ham|1 +(noun)|picnic shoulder|cut of pork +picnic shoulder|1 +(noun)|picnic ham|cut of pork +picnicker|1 +(noun)|picknicker|eater|feeder +pico de orizaba|1 +(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano +picofarad|1 +(noun)|capacitance unit +picoides|1 +(noun)|Picoides|genus Picoides|bird genus +picometer|1 +(noun)|picometre|micromicron|metric linear unit +picometre|1 +(noun)|picometer|micromicron|metric linear unit +picornavirus|1 +(noun)|animal virus +picosecond|1 +(noun)|time unit|unit of time +picot|1 +(noun)|stitch +picovolt|1 +(noun)|potential unit +picrasma|1 +(noun)|Picrasma|genus Picrasma|rosid dicot genus +picrasma excelsa|1 +(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree +picrasma excelsum|1 +(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree +picric acid|1 +(noun)|acid +picris|1 +(noun)|Picris|genus Picris|asterid dicot genus +picris echioides|1 +(noun)|oxtongue|bristly oxtongue|bitterweed|bugloss|Picris echioides|weed +pictograph|1 +(noun)|character|grapheme|graphic symbol +pictographic|1 +(adj)|character|grapheme|graphic symbol +pictor|1 +(noun)|Pictor|constellation +pictorial|3 +(adj)|pictural|illustration +(adj)|graphic|lifelike|vivid|realistic +(noun)|periodical +pictorial matter|1 +(noun)|picture|illustration +pictorial representation|1 +(noun)|picturing|representation +pictural|1 +(adj)|pictorial|illustration +picture|11 +(noun)|image|icon|ikon|representation +(noun)|painting|graphic art +(noun)|mental picture|impression|image|mental image +(noun)|scene|situation|state of affairs +(noun)|pictorial matter|illustration +(noun)|movie|film|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show +(noun)|video|visual communication +(noun)|word picture|word-painting|delineation|depiction|characterization|characterisation|description|verbal description +(noun)|typification|exemplification +(verb)|visualize|visualise|envision|project|fancy|see|figure|image|imagine|conceive of|ideate|envisage +(verb)|depict|render|show|represent|interpret +picture book|1 +(noun)|book|volume +picture card|1 +(noun)|face card|court card|playing card +picture element|1 +(noun)|pixel|pel|component|constituent|element +picture frame|1 +(noun)|framework|frame|framing +picture gallery|1 +(noun)|gallery|art gallery|room +picture hat|1 +(noun)|millinery|woman's hat +picture palace|1 +(noun)|cinema|movie theater|movie theatre|movie house|theater|theatre|house +picture plane|1 +(noun)|plane|sheet +picture postcard|1 +(noun)|postcard|post card|postal card|mailing-card +picture rail|1 +(noun)|rail +picture show|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|pic|flick|show +picture taking|1 +(noun)|photography|pictorial representation|picturing +picture tube|1 +(noun)|kinescope|television tube|cathode-ray tube|CRT +picture window|1 +(noun)|window +picture writing|1 +(noun)|orthography|writing system +pictured|2 +(adj)|envisioned|visualized|visualised|unreal +(adj)|depicted|portrayed|delineated |represented|delineate +picturesque|2 +(adj)|beautiful +(adj)|colorful +picturesqueness|1 +(noun)|beauty +picturing|2 +(noun)|envisioning|imagination|imaging|imagery|mental imagery +(noun)|pictorial representation|representation +picul|1 +(noun)|weight unit|weight +piculet|1 +(noun)|woodpecker|peckerwood|pecker +picumnus|1 +(noun)|Picumnus|genus Picumnus|bird genus +picus|1 +(noun)|Picus|genus Picus|bird genus +picus viridis|1 +(noun)|green woodpecker|Picus viridis|woodpecker|peckerwood|pecker +pid|1 +(noun)|pelvic inflammatory disease|PID|inflammatory disease +piddle|3 +(noun)|urine|piss|pee|weewee|water|body waste|excretion|excreta|excrement|excretory product +(verb)|wanton|wanton away|piddle away|trifle|spend|pass +(verb)|make|urinate|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +piddle away|1 +(verb)|piddle|wanton|wanton away|trifle|spend|pass +piddling|1 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piffling|petty|picayune|trivial|unimportant +piddock|1 +(noun)|bivalve|pelecypod|lamellibranch +pidgin|1 +(noun)|artificial language +pidlimdi|1 +(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara +pie|2 +(noun)|pastry +(noun)|Proto-Indo European|PIE|Indo-European|Indo-European language|Indo-Hittite +pie-dog|1 +(noun)|pariah dog|pye-dog|cur|mongrel|mutt +pie-eyed|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +pie chart|1 +(noun)|chart +pie crust|1 +(noun)|pie shell|pastry +pie plant|2 +(noun)|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb|rhubarb plant +(noun)|pieplant|rhubarb|vegetable|veggie +pie shell|1 +(noun)|pie crust|pastry +piebald|1 +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|pied|varicolored|varicoloured|colored |coloured|colorful +piece|18 +(noun)|part|portion +(noun)|item +(noun)|part|thing +(noun)|musical composition|opus|composition|piece of music|music +(noun)|bit|case|instance|example +(noun)|creation +(noun)|firearm|small-arm|gun +(noun)|slice|helping|portion|serving +(noun)|distance +(noun)|objet d'art|art object|work of art +(noun)|while|spell|patch|time +(noun)|slice|share|portion|part|percentage +(noun)|man|game equipment +(verb)|patch|join|conjoin +(verb)|assemble|put together|set up|tack|tack together|join|bring together|make|create +(verb)|splice +(verb)|nibble|pick|eat +(verb)|patch|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +piece-dye|1 +(verb)|dye +piece de resistance|2 +(noun)|collector's item|showpiece|curio|curiosity|oddity|oddment|peculiarity|rarity +(noun)|dish +piece goods|1 +(noun)|yard goods|merchandise|wares|product +piece of ass|1 +(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +piece of cake|1 +(noun)|cinch|breeze|picnic|snap|duck soup|child's play|pushover|walkover|undertaking|project|task|labor +piece of cloth|1 +(noun)|piece of material|piece|fabric|cloth|material|textile +piece of eight|1 +(noun)|coin +piece of furniture|1 +(noun)|furniture|article of furniture|furnishings +piece of ground|1 +(noun)|tract|piece of land|parcel of land|parcel|geographical area|geographic area|geographical region|geographic region +piece of land|1 +(noun)|tract|piece of ground|parcel of land|parcel|geographical area|geographic area|geographical region|geographic region +piece of leather|1 +(noun)|piece|leather +piece of material|1 +(noun)|piece of cloth|piece|fabric|cloth|material|textile +piece of music|1 +(noun)|musical composition|opus|composition|piece|music +piece of paper|1 +(noun)|sheet|sheet of paper|paper +piece of tail|1 +(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +piece of work|1 +(noun)|work|product|production +piece of writing|1 +(noun)|writing|written material|written communication|written language +piecemeal|2 +(adj)|bit-by-bit|in small stages|step-by-step|stepwise|gradual +(adv)|little by little|bit by bit|in stages +piecework|1 +(noun)|employment|work +pied|1 +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|varicolored|varicoloured|colored |coloured|colorful +pied-a-terre|1 +(noun)|housing|lodging|living accommodations +pied-billed grebe|1 +(noun)|Podilymbus podiceps|grebe +pied lemming|1 +(noun)|lemming +piedmont|2 +(noun)|Piedmont|geographical area|geographic area|geographical region|geographic region +(noun)|Piedmont|Piemonte|Italian region +piedmont glacier|1 +(noun)|Piedmont glacier|Piedmont type of glacier|glacier +piedmont type of glacier|1 +(noun)|Piedmont glacier|Piedmont type of glacier|glacier +piemonte|1 +(noun)|Piedmont|Piemonte|Italian region +pieplant|1 +(noun)|rhubarb|vegetable|veggie +pier|3 +(noun)|wharf|wharfage|dock|platform +(noun)|support +(noun)|support +pier arch|1 +(noun)|arch +pier glass|1 +(noun)|pier mirror|mirror +pier luigi nervi|1 +(noun)|Nervi|Pier Luigi Nervi|architect|designer +pier mirror|1 +(noun)|pier glass|mirror +pier table|1 +(noun)|table +pierce|6 +(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States|United States President|President|Chief Executive +(verb)|penetrate|perforate +(verb)|affect|impress|move|strike +(verb)|sound +(verb)|thrust|penetrate|perforate +(verb)|penetrate|perforate +pierced|1 +(adj)|perforated|perforate|punctured|cut +piercing|5 +(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|penetrative|sharp|perceptive +(adj)|shrill|sharp|high |high-pitched +(adj)|cutting|keen|knifelike|stabbing|lancinate|lancinating|sharp +(adj)|incisive|sharp +(adj)|cacophonous |cacophonic +piercingly|2 +(adv)|bitterly|bitingly|bitter +(adv)|shrilly +pierid|1 +(noun)|pierid butterfly|butterfly +pierid butterfly|1 +(noun)|pierid|butterfly +pieridae|1 +(noun)|Pieridae|family Pieridae|arthropod family +pieris|2 +(noun)|Pieris|genus Pieris|dilleniid dicot genus +(noun)|Pieris|genus Pieris|arthropod genus +pieris brassicae|1 +(noun)|large white|Pieris brassicae|cabbage butterfly +pieris floribunda|1 +(noun)|fetterbush|mountain fetterbush|mountain andromeda|Pieris floribunda|shrub|bush +pieris japonica|1 +(noun)|andromeda|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub|bush +pieris protodice|1 +(noun)|southern cabbage butterfly|Pieris protodice|cabbage butterfly +pieris rapae|2 +(noun)|cabbageworm|Pieris rapae|caterpillar +(noun)|small white|Pieris rapae|cabbage butterfly +pierre|1 +(noun)|Pierre|capital of South Dakota|state capital +pierre-paul broca|1 +(noun)|Broca|Pierre-Paul Broca|anthropologist +pierre abelard|1 +(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher|theologian|theologist|theologizer|theologiser +pierre athanase larousse|1 +(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer|lexicologist +pierre auguste renoir|1 +(noun)|Renoir|Pierre Auguste Renoir|old master +pierre boulez|1 +(noun)|Boulez|Pierre Boulez|composer +pierre charles l'enfant|1 +(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect|designer +pierre corneille|1 +(noun)|Corneille|Pierre Corneille|dramatist|playwright|poet +pierre curie|1 +(noun)|Curie|Pierre Curie|physicist +pierre de fermat|1 +(noun)|Fermat|Pierre de Fermat|mathematician +pierre de terrail|1 +(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier +pierre joseph proudhon|1 +(noun)|Proudhon|Pierre Joseph Proudhon|socialist +pierre laporte bridge|1 +(noun)|Pierre Laporte Bridge|suspension bridge +pierre larousse|1 +(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer|lexicologist +pierre simon de laplace|1 +(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician|astronomer|uranologist|stargazer +pierre teilhard de chardin|1 +(noun)|Teilhard de Chardin|Pierre Teilhard de Chardin|paleontologist|palaeontologist|fossilist|philosopher +pierre terrail|1 +(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier +pierrot|1 +(noun)|Pierrot|fictional character|fictitious character|character +piet mondrian|1 +(noun)|Mondrian|Piet Mondrian|abstractionist|abstract artist +pieta|1 +(noun)|representation +pieter breughel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +pieter bruegel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +pieter brueghel|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +pieter brueghel the elder|1 +(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master +pieter zeeman|1 +(noun)|Zeeman|Pieter Zeeman|physicist +pietism|2 +(noun)|Pietism|religious movement +(noun)|religiosity|religiousism|devoutness|religiousness +pietistic|2 +(adj)|pietistical|religious movement +(adj)|holier-than-thou|pietistical|pharisaic|pharisaical|sanctimonious|self-righteous|pious +pietistical|2 +(adj)|pietistic|religious movement +(adj)|holier-than-thou|pietistic|pharisaic|pharisaical|sanctimonious|self-righteous|pious +piety|1 +(noun)|piousness|righteousness +piezo effect|1 +(noun)|piezoelectricity|piezoelectric effect|electricity +piezoelectric|1 +(adj)|electricity +piezoelectric crystal|1 +(noun)|crystal +piezoelectric effect|1 +(noun)|piezoelectricity|piezo effect|electricity +piezoelectricity|1 +(noun)|piezoelectric effect|piezo effect|electricity +piezometer|1 +(noun)|measuring instrument|measuring system|measuring device +piffle|3 +(noun)|balderdash|fiddle-faddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +(verb)|chatter|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +(verb)|act|behave|do +piffling|1 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|petty|picayune|trivial|unimportant +pig|9 +(noun)|hog|grunter|squealer|Sus scrofa|swine +(noun)|slob|sloven|slovenly person|vulgarian +(noun)|hog|selfish person +(noun)|bull|cop|copper|fuzz|policeman|police officer|officer +(noun)|pig bed|mold|mould|cast +(noun)|ingot|metal bar|block of metal +(verb)|pig it|live +(verb)|devour|guttle|raven|eat +(verb)|farrow|litter +pig's ears|1 +(noun)|Cantharellus clavatus|agaric +pig-a-back|2 +(adv)|piggyback|pickaback +(adv)|piggyback|pickaback +pig-headedly|1 +(adv)|stubbornly|obdurately|mulishly|obstinately|cussedly +pig bed|1 +(noun)|pig|mold|mould|cast +pig farm|1 +(noun)|piggery|farm +pig iron|1 +(noun)|iron|Fe|atomic number 26 +pig it|1 +(verb)|pig|live +pig laurel|1 +(noun)|sheep laurel|lambkill|Kalmia angustifolia|kalmia +pig lead|1 +(noun)|lead|Pb|atomic number 82 +pig out|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|satiate|scarf out|eat +pigboat|1 +(noun)|submarine|sub|U-boat|submersible|submersible warship +pigeon|1 +(noun)|columbiform bird +pigeon-breasted|1 +(adj)|chicken-breasted|unshapely +pigeon-pea plant|1 +(noun)|pigeon pea|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub|bush +pigeon-toed|1 +(adj)|pigeon-toed +pigeon berry|1 +(noun)|poke|garget|scoke|Phytolacca americana|pokeweed +pigeon breast|1 +(noun)|chicken breast|deformity|malformation|misshapenness +pigeon droppings|1 +(noun)|droppings|dung|muck +pigeon guillemot|1 +(noun)|Cepphus columba|guillemot +pigeon hawk|1 +(noun)|merlin|Falco columbarius|falcon +pigeon loft|1 +(noun)|loft|shelter +pigeon pea|2 +(noun)|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub|bush +(noun)|cajan pea|dahl|pea +pigeon toes|1 +(noun)|disability|disablement|handicap|impairment +pigeonhole|4 +(noun)|category +(noun)|cubbyhole|compartment +(verb)|put|set|place|pose|position|lay +(verb)|stereotype|stamp|classify|class|sort|assort|sort out|separate +pigeonholing|1 +(noun)|grouping|classification system +pigfish|2 +(noun)|giant pigfish|Achoerodus gouldii|wrasse +(noun)|hogfish|Orthopristis chrysopterus|grunt +piggery|1 +(noun)|pig farm|farm +piggish|1 +(adj)|hoggish|piggy|porcine|swinish|gluttonous +piggishness|1 +(noun)|greediness|hoggishness|gluttony +piggy|2 +(adj)|hoggish|piggish|porcine|swinish|gluttonous +(noun)|piglet|shoat|young mammal +piggy bank|1 +(noun)|penny bank|savings bank|coin bank|money box|bank +piggyback|7 +(verb)|ride +(verb)|haul +(verb)|haul +(verb)|bear +(verb)|hold|carry|bear +(adv)|pickaback|pig-a-back +(adv)|pickaback|pig-a-back +piggyback plant|1 +(noun)|pickaback plant|youth-on-age|Tolmiea menziesii|herb|herbaceous plant +pigheaded|1 +(adj)|bullheaded|bullet-headed|stubborn +pigheadedness|1 +(noun)|stubbornness|bullheadedness|obstinacy|obstinance|self-will|resoluteness|firmness|resolve|resolution +piglet|1 +(noun)|piggy|shoat|young mammal +pigman|1 +(noun)|swineherd|herder|herdsman|drover +pigment|3 +(noun)|coloring material|colouring material|color|colour +(verb)|hue +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +pigmentation|2 +(noun)|deposition|deposit +(noun)|coloration|colouration +pigmy|2 +(noun)|pygmy|small person +(noun)|Pygmy|Pigmy|small person +pigmy talinum|1 +(noun)|Talinum brevifolium|flame flower|flame-flower|flameflower|Talinum aurantiacum +pignolia|1 +(noun)|pine nut|pinon nut|edible nut +pignut|1 +(noun)|pignut hickory|brown hickory|black hickory|Carya glabra|hickory|hickory tree +pignut hickory|1 +(noun)|pignut|brown hickory|black hickory|Carya glabra|hickory|hickory tree +pigpen|1 +(noun)|sty|pigsty|pen +pigs' feet|1 +(noun)|pigs' knuckles|pork|porc +pigs' knuckles|1 +(noun)|pigs' feet|pork|porc +pigs in blankets|1 +(noun)|hors d'oeuvre +pigskin|1 +(noun)|leather +pigsticking|1 +(noun)|hunt|hunting +pigsty|1 +(noun)|sty|pigpen|pen +pigswill|1 +(noun)|slop|slops|swill|pigwash|feed|provender +pigtail|1 +(noun)|braid|plait|tress|twist +pigwash|1 +(noun)|slop|slops|swill|pigswill|feed|provender +pigweed|3 +(noun)|lamb's-quarters|wild spinach|Chenopodium album|goosefoot +(noun)|Amaranthus hypochondriacus|amaranth +(noun)|lamb's-quarter|wild spinach|greens|green|leafy vegetable +pij|1 +(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization|terrorist group|foreign terrorist organization|FTO +pika|1 +(noun)|mouse hare|rock rabbit|coney|cony|lagomorph|gnawing mammal +pike|5 +(noun)|expressway|freeway|motorway|state highway|superhighway|throughway|thruway|highway|main road +(noun)|freshwater fish +(noun)|point +(noun)|weapon|arm|weapon system +(noun)|percoid fish|percoid|percoidean +pike's peak|1 +(noun)|Pike's Peak|mountain peak +pike-perch|2 +(noun)|pike perch|perch +(noun)| +pike perch|2 +(noun)|pike-perch|perch +(noun)| +pikeblenny|1 +(noun)|blennioid fish|blennioid +piked reverse hang|1 +(noun)|reverse hang +piked whale|1 +(noun)|lesser rorqual|minke whale|Balaenoptera acutorostrata|rorqual|razorback +pikestaff|1 +(noun)|staff +pilaf|1 +(noun)|pilaff|pilau|pilaw|dish +pilaff|1 +(noun)|pilaf|pilau|pilaw|dish +pilar|1 +(adj)|filament|filum +pilar cyst|1 +(noun)|sebaceous cyst|wen|steatocystoma|cyst +pilary|1 +(adj)|pilous|pilose|hairy |hirsute +pilaster|1 +(noun)|column|pillar +pilau|1 +(noun)|pilaf|pilaff|pilaw|dish +pilaw|1 +(noun)|pilaf|pilaff|pilau|dish +pilchard|2 +(noun)|sardine|saltwater fish +(noun)|sardine|Sardina pilchardus|clupeid fish|clupeid +pile|11 +(noun)|heap|mound|cumulus|collection|aggregation|accumulation|assemblage +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|bundle|big bucks|megabucks|big money|money +(noun)|down|hair +(noun)|voltaic pile|galvanic pile|battery|electric battery +(noun)|spile|piling|stilt|column|pillar +(noun)|nap|thread|yarn +(noun)|atomic pile|atomic reactor|chain reactor|nuclear reactor|reactor +(verb)|stack|heap|arrange|set up|pile up +(verb)|throng|mob|pack|jam|crowd|crowd together +(verb)|put|set|place|pose|position|lay +pile driver|1 +(noun)|machine +pile dwelling|1 +(noun)|lake dwelling|dwelling|home|domicile|abode|habitation|dwelling house +pile up|3 +(verb)|accumulate|cumulate|conglomerate|gather|amass|increase +(verb)|heap up|stack up|gather|garner|collect|pull together +(verb)|roll up|collect|accumulate|amass|compile|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +pilea|1 +(noun)|Pilea|genus Pilea|dicot genus|magnoliopsid genus +pilea involucrata|1 +(noun)|friendship plant|panamica|panamiga|Pilea involucrata|nettle +pilea microphylla|1 +(noun)|artillery plant|Pilea microphylla|nettle +pilea pumilla|1 +(noun)|richweed|clearweed|dead nettle|Pilea pumilla|nettle +piled|1 +(adj)|heaped|heaped-up|cumulous|concentrated +piles|10 +(noun)|hemorrhoid|haemorrhoid|pain|hurting +(noun)|tons|dozens|heaps|lots|mountain|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|pile|heap|mound|cumulus|collection|aggregation|accumulation|assemblage +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|pile|bundle|big bucks|megabucks|big money|money +(noun)|down|pile|hair +(noun)|voltaic pile|pile|galvanic pile|battery|electric battery +(noun)|pile|spile|piling|stilt|column|pillar +(noun)|pile|nap|thread|yarn +(noun)|atomic pile|atomic reactor|pile|chain reactor|nuclear reactor|reactor +pileup|1 +(noun)|collision +pileus|1 +(noun)|cap|plant part|plant structure +pilewort|1 +(noun)|lesser celandine|Ranunculus ficaria|flower +pilfer|1 +(verb)|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal +pilferage|1 +(noun)|larceny|theft|thievery|thieving|stealing +pilferer|1 +(noun)|sneak thief|snitcher|thief|stealer +pilgrim|3 +(noun)|wayfarer|journeyer +(noun)|Pilgrim|Pilgrim Father|settler|colonist +(noun)|believer|worshiper|worshipper +pilgrim's journey|1 +(noun)|pilgrimage|journey|journeying +pilgrim's progress|1 +(noun)|Pilgrim's Progress|fable|parable|allegory|apologue +pilgrim father|1 +(noun)|Pilgrim|Pilgrim Father|settler|colonist +pilgrimage|1 +(noun)|pilgrim's journey|journey|journeying +piling|1 +(noun)|pile|spile|stilt|column|pillar +pill|5 +(noun)|thing +(noun)|lozenge|tablet|tab|dose +(noun)|unpleasant person|disagreeable person +(noun)|burden|load|encumbrance|incumbrance|onus +(noun)|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +pill bottle|1 +(noun)|bottle +pill bug|1 +(noun)|woodlouse|slater +pill head|1 +(noun)|head +pill pusher|1 +(noun)|pharmacist|druggist|chemist|apothecary|pill roller|health professional|health care provider|caregiver +pill roller|1 +(noun)|pharmacist|druggist|chemist|apothecary|pill pusher|health professional|health care provider|caregiver +pillage|3 +(noun)|loot|booty|plunder|prize|swag|dirty money|stolen property +(noun)|plundering|pillaging|aggression|hostility +(verb)|plunder|despoil|loot|reave|strip|rifle|ransack|foray|take +pillaged|2 +(adj)|looted|plundered|ransacked|empty +(adj)|despoiled|raped|ravaged|sacked|destroyed +pillager|1 +(noun)|plunderer|looter|spoiler|despoiler|raider|freebooter|thief|stealer +pillaging|1 +(noun)|plundering|pillage|aggression|hostility +pillar|5 +(noun)|principle|rule +(noun)|column|tower|shape|form +(noun)|mainstay|supporter|protagonist|champion|admirer|booster|friend +(noun)|column|structure|construction +(noun)|column|upright|vertical +pillar box|1 +(noun)|postbox|mailbox|letter box +pillar of islam|1 +(noun)|pillar of Islam|pillar +pillar of strength|1 +(noun)|tower of strength|patron|sponsor|supporter +pillared|1 +(adj)|columned +pillars of hercules|1 +(noun)|Pillars of Hercules|geological formation|formation +pillbox|3 +(noun)|toque|turban|millinery|woman's hat +(noun)|case +(noun)|gun emplacement|weapons emplacement +pillion|1 +(noun)|seat +pillock|1 +(noun)|stupid|stupid person|dullard|dolt|pudding head|pudden-head|poor fish|simpleton|simple +pillory|4 +(noun)|stocks|instrument of punishment +(verb)|gibbet|expose|exhibit|display +(verb)|punish|penalize|penalise +(verb)|savage|crucify|knock|criticize|criticise|pick apart +pillow|2 +(noun)|cushion +(verb)|rest|put|set|place|pose|position|lay +pillow block|1 +(noun)|support +pillow fight|1 +(noun)|child's game +pillow lace|1 +(noun)|bobbin lace|lace +pillow lava|1 +(noun)|lava +pillow sham|1 +(noun)|bed linen +pillow slip|1 +(noun)|case|pillowcase|slip|bed linen +pillow talk|1 +(noun)|tete-a-tete +pillowcase|1 +(noun)|case|slip|pillow slip|bed linen +pillwort|1 +(noun)|Pilularia globulifera|aquatic fern|water fern +pilocarpine|1 +(noun)|alkaloid +pilomotor reflex|1 +(noun)|gooseflesh|goose bump|goose pimple|goose skin|horripilation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +pilose|1 +(adj)|pilous|pilary|hairy |hirsute +pilosebaceous|1 +(adj)|follicle|oil gland +pilosella|1 +(noun)|Pilosella|genus Pilosella|asterid dicot genus +pilosella aurantiaca|1 +(noun)|orange hawkweed|Pilosella aurantiaca|Hieracium aurantiacum|weed +pilosella officinarum|1 +(noun)|mouse-ear hawkweed|Pilosella officinarum|Hieracium pilocella|hawkweed +pilot|8 +(noun)|airplane pilot|aviator|aeronaut|airman|flier|flyer +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +(noun)|pilot program|pilot film|television program|TV program|television show|TV show +(noun)|original|archetype|model|example +(noun)|pilot burner|pilot light|gas burner|gas jet +(noun)|fender|buffer|cowcatcher|framework|frame|framing +(verb)|fly|aviate|operate|control +(verb)|navigate|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +pilot balloon|1 +(noun)|meteorological balloon +pilot biscuit|1 +(noun)|hardtack|pilot bread|sea biscuit|ship biscuit|biscuit +pilot bit|1 +(noun)|bit +pilot blacksnake|1 +(noun)|black rat snake|blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake +pilot boat|1 +(noun)|boat +pilot bread|1 +(noun)|hardtack|pilot biscuit|sea biscuit|ship biscuit|biscuit +pilot burner|1 +(noun)|pilot light|pilot|gas burner|gas jet +pilot chart|1 +(noun)|naval chart|navigational chart|chart +pilot cloth|1 +(noun)|fabric|cloth|material|textile +pilot engine|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +pilot experiment|1 +(noun)|experiment|experimentation +pilot film|1 +(noun)|pilot program|pilot|television program|TV program|television show|TV show +pilot ladder|1 +(noun)|Jacob's ladder|jack ladder|ladder +pilot lamp|1 +(noun)|pilot light|indicator lamp|indicator +pilot light|2 +(noun)|pilot burner|pilot|gas burner|gas jet +(noun)|pilot lamp|indicator lamp|indicator +pilot program|2 +(noun)|pilot project|test|trial|run +(noun)|pilot film|pilot|television program|TV program|television show|TV show +pilot project|1 +(noun)|pilot program|test|trial|run +pilot whale|1 +(noun)|black whale|common blackfish|blackfish|Globicephala melaena|dolphin +pilotage|2 +(noun)|navigation|piloting|steering|guidance|direction +(noun)|piloting|trade|craft +pilotfish|1 +(noun)|Naucrates ductor|carangid fish|carangid +pilothouse|1 +(noun)|wheelhouse|compartment +piloting|2 +(noun)|navigation|pilotage|steering|guidance|direction +(noun)|pilotage|trade|craft +pilotless|1 +(adj)|unmanned |remote-controlled +pilotless aircraft|1 +(noun)|drone|radio-controlled aircraft|heavier-than-air craft +pilous|1 +(adj)|pilose|pilary|hairy |hirsute +pilsen|1 +(noun)|Pilsen|Plzen|town +pilsener|1 +(noun)|Pilsner|Pilsener|lager|lager beer +pilsner|1 +(noun)|Pilsner|Pilsener|lager|lager beer +piltdown hoax|1 +(noun)|Piltdown man|Piltdown hoax|primitive|primitive person|fraud|fraudulence|dupery|hoax|humbug|put-on +piltdown man|1 +(noun)|Piltdown man|Piltdown hoax|primitive|primitive person|fraud|fraudulence|dupery|hoax|humbug|put-on +pilularia|1 +(noun)|Pilularia|genus Pilularia|fern genus +pilularia globulifera|1 +(noun)|pillwort|Pilularia globulifera|aquatic fern|water fern +pilus|2 +(noun)|hair|filament|filum +(noun)|hair +pima|2 +(noun)|Pima|Plains Indian|Buffalo Indian +(noun)|Pima|Uto-Aztecan|Uto-Aztecan language +pimenta|1 +(noun)|Pimenta|genus Pimenta|dicot genus|magnoliopsid genus +pimenta acris|1 +(noun)|bayberry|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree +pimenta dioica|1 +(noun)|allspice|allspice tree|pimento tree|Pimenta dioica|spice tree +pimenta officinalis|1 +(noun)|allspice tree|Pimenta officinalis|spice tree +pimento|2 +(noun)|sweet pepper|bell pepper|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +(noun)|pimiento|sweet pepper +pimento butter|1 +(noun)|spread|paste +pimento tree|1 +(noun)|allspice|allspice tree|Pimenta dioica|spice tree +pimiento|2 +(noun)|sweet pepper|bell pepper|pimento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +(noun)|pimento|sweet pepper +pimlico|1 +(noun)|Pimlico|dirt track +pimozide|1 +(noun)|diphenylbutyl piperidine +pimp|2 +(noun)|procurer|panderer|pander|pandar|fancy man|ponce|wrongdoer|offender +(verb)|pander|procure|provide|supply|ply|cater +pimpernel|2 +(noun)|salad burnet|burnet bloodwort|Poterium sanguisorba|herb|herbaceous plant +(noun)|herb|herbaceous plant +pimpinella|1 +(noun)|Pimpinella|genus Pimpinella|rosid dicot genus +pimpinella anisum|1 +(noun)|anise|anise plant|Pimpinella anisum|herb|herbaceous plant +pimple|1 +(noun)|hickey|symptom +pimpled|1 +(adj)|acned|pimply|pustulate|blemished +pimply|1 +(adj)|acned|pimpled|pustulate|blemished +pin|15 +(noun)|jewelry|jewellery +(noun)|fall|victory|triumph +(noun)|peg|marker|marking|mark +(noun)|personal identification number|PIN|PIN number|number|identification number +(noun)|peg|stick|leg +(noun)|pivot|axis|axis of rotation +(noun)|tumbler +(noun)|flag|golf equipment +(noun)|fastener|fastening|holdfast|fixing +(noun)|peg|thole|tholepin|rowlock|oarlock|holder +(noun)|bowling pin|bowling equipment +(verb)|trap|immobilize|immobilise +(verb)|fasten|fix|secure +(verb)|transfix|impale|empale|spike +(verb)|attack|aggress +pin-tailed duck|1 +(noun)|pintail|Anas acuta|duck +pin-tailed grouse|1 +(noun)|pin-tailed sandgrouse|Pterocles alchata|sandgrouse|sand grouse +pin-tailed sandgrouse|1 +(noun)|pin-tailed grouse|Pterocles alchata|sandgrouse|sand grouse +pin-up|1 +(noun)|cover girl|lovely|photographer's model +pin bone|1 +(noun)|cut of beef +pin cherry|1 +(noun)|Prunus pensylvanica|bird cherry|bird cherry tree +pin clover|1 +(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin grass|Erodium cicutarium|storksbill|heron's bill +pin curl|1 +(noun)|crimp +pin down|3 +(verb)|peg down|nail down|narrow down|narrow|specify|determine +(verb)|pin up|attach +(verb)|narrow down|focus|focalize|focalise|sharpen +pin grass|1 +(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin clover|Erodium cicutarium|storksbill|heron's bill +pin money|1 +(noun)|pocket money|spending money|cash|hard cash|hard currency +pin number|1 +(noun)|personal identification number|PIN|PIN number|number|identification number +pin oak|2 +(noun)|swamp oak|Quercus palustris|oak|oak tree +(noun)|laurel oak|Quercus laurifolia|oak|oak tree +pin table|1 +(noun)|pinball machine|game equipment +pin up|1 +(verb)|pin down|attach +pin wrench|1 +(noun)|wrench|spanner +pina cloth|1 +(noun)|fabric|cloth|material|textile +pina colada|1 +(noun)|mixed drink +pinaceae|1 +(noun)|Pinaceae|family Pinaceae|pine family|gymnosperm family +pinafore|1 +(noun)|jumper|pinny|dress|frock +pinata|1 +(noun)|plaything|toy +pinatubo|1 +(noun)|Pinatubo|Mount Pinatubo|volcano +pinball|1 +(noun)|pinball game|game +pinball game|1 +(noun)|pinball|game +pinball machine|1 +(noun)|pin table|game equipment +pince-nez|1 +(noun)|spectacles|specs|eyeglasses|glasses +pincer|2 +(noun)|pair of pincers|tweezer|pair of tweezers|hand tool +(noun)|claw|chela|nipper|extremity|appendage|member +pinch|12 +(noun)|difficulty +(noun)|injury|hurt|harm|trauma +(noun)|touch|hint|tinge|mite|jot|speck|soupcon|small indefinite quantity|small indefinite amount +(noun)|emergency|exigency|crisis +(noun)|nip|bite|chomp +(noun)|tweak|squeeze|squeezing +(noun)|apprehension|arrest|catch|collar|taking into custody|capture|gaining control|seizure +(verb)|squeeze|twinge|tweet|nip|twitch|grip +(verb)|crimp|fold|fold up|turn up +(verb)|pilfer|cabbage|purloin|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal +(verb)|top|snip|clip|crop|trim|lop|dress|prune|cut back +(verb)|vellicate|irritate +pinch bar|1 +(noun)|lever +pinch hitter|1 +(noun)|substitute|reserve|batter|hitter|slugger|batsman +pinchas zukerman|1 +(noun)|Zukerman|Pinchas Zukerman|violinist|fiddler +pinchbeck|2 +(adj)|counterfeit |imitative +(noun)|alloy|metal +pinche|1 +(noun)|Leontocebus oedipus|tamarin|lion monkey|lion marmoset|leoncita +pinched|4 +(adj)|adenoidal|nasal|high |high-pitched +(adj)|bony|cadaverous|emaciated|gaunt|haggard|skeletal|wasted|thin |lean +(adj)|hard up|impecunious|in straitened circumstances|penniless|penurious|poor +(adj)|constricted +pinchgut|1 +(noun)|niggard|skinflint|scrooge|churl +pinckneya|1 +(noun)|Pinckneya|genus Pinckneya|asterid dicot genus +pinckneya pubens|1 +(noun)|fever tree|Georgia bark|bitter-bark|Pinckneya pubens|shrub|bush +pinctada|1 +(noun)|Pinctada|genus Pinctada|mollusk genus +pinctada margaritifera|1 +(noun)|pearl oyster|Pinctada margaritifera|oyster +pincurl clip|1 +(noun)|cartridge holder|cartridge clip|clip|magazine +pincus|1 +(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist +pincushion|1 +(noun)|cushion +pincushion flower|1 +(noun)|sweet scabious|mournful widow|Scabiosa atropurpurea|scabious|scabiosa +pincushion hakea|1 +(noun)|cushion flower|Hakea laurina|shrub|bush +pindar|1 +(noun)|Pindar|poet +pindaric|1 +(noun)|Pindaric ode|Pindaric|ode +pindaric ode|1 +(noun)|Pindaric ode|Pindaric|ode +pindolol|1 +(noun)|Visken|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +pine|3 +(noun)|pine tree|true pine|conifer|coniferous tree +(noun)|wood +(verb)|ache|yearn|yen|languish|hanker|long|yearn +pine-barren sandwort|1 +(noun)|longroot|Arenaria caroliniana|sandwort +pine-tar rag|1 +(noun)|rag|shred|tag|tag end|tatter|baseball equipment +pine-weed|2 +(noun)|orange grass|nitweed|pineweed|Hypericum gentianoides|St John's wort +(noun)| +pine away|1 +(verb)|waste|languish|weaken +pine bluff|1 +(noun)|Pine Bluff|town +pine family|1 +(noun)|Pinaceae|family Pinaceae|gymnosperm family +pine fern|1 +(noun)|Anemia adiantifolia|fern +pine finch|1 +(noun)|pine siskin|Spinus pinus|finch +pine grosbeak|1 +(noun)|Pinicola enucleator|grosbeak|grossbeak +pine hyacinth|1 +(noun)|Clematis baldwinii|Viorna baldwinii|clematis +pine knot|1 +(noun)|firewood +pine leaf aphid|1 +(noun)|Pineus pinifoliae|adelgid +pine lily|1 +(noun)|tiger lily|leopard lily|Lilium catesbaei|lily +pine lizard|1 +(noun)|eastern fence lizard|Sceloporus undulatus|fence lizard +pine marten|1 +(noun)|Martes martes|marten|marten cat +pine mouse|1 +(noun)|pine vole|Pitymys pinetorum|vole|field mouse +pine nut|1 +(noun)|pignolia|pinon nut|edible nut +pine sawyer|1 +(noun)|sawyer|sawyer beetle +pine siskin|1 +(noun)|pine finch|Spinus pinus|finch +pine snake|1 +(noun)|bull snake|bull-snake +pine spittlebug|1 +(noun)|spittle insect|spittlebug +pine tar|1 +(noun)|wood tar +pine tree|1 +(noun)|pine|true pine|conifer|coniferous tree +pine tree state|1 +(noun)|Maine|Pine Tree State|ME|American state +pine vole|1 +(noun)|pine mouse|Pitymys pinetorum|vole|field mouse +pineal|2 +(adj)|endocrine gland|endocrine|ductless gland +(adj)|rounded +pineal body|1 +(noun)|pineal gland|epiphysis cerebri|epiphysis|endocrine gland|endocrine|ductless gland +pineal eye|1 +(noun)|third eye|sense organ|sensory receptor|receptor +pineal gland|1 +(noun)|pineal body|epiphysis cerebri|epiphysis|endocrine gland|endocrine|ductless gland +pinealoma|1 +(noun)|tumor|tumour|neoplasm +pineapple|2 +(noun)|pineapple plant|Ananas comosus|herb|herbaceous plant +(noun)|ananas|edible fruit +pineapple family|1 +(noun)|Bromeliaceae|family Bromeliaceae|monocot family|liliopsid family +pineapple guava|1 +(noun)|feijoa|edible fruit +pineapple juice|1 +(noun)|fruit juice|fruit crush +pineapple plant|1 +(noun)|pineapple|Ananas comosus|herb|herbaceous plant +pineapple weed|1 +(noun)|rayless chamomile|Matricaria matricarioides|herb|herbaceous plant +pinecone|1 +(noun)|cone|strobilus|strobile +pinesap|1 +(noun)|false beachdrops|Monotropa hypopithys|wildflower|wild flower +pinetum|1 +(noun)|tree farm +pineus|1 +(noun)|Pineus|genus Pineus|arthropod genus +pineus pinifoliae|1 +(noun)|pine leaf aphid|Pineus pinifoliae|adelgid +pineweed|1 +(noun)|orange grass|nitweed|pine-weed|Hypericum gentianoides|St John's wort +pinfish|1 +(noun)|sailor's-choice|squirrelfish|Lagodon rhomboides|sparid|sparid fish +pinfold|1 +(noun)|pen +ping|7 +(noun)|Ping|Ping River|river +(noun)|sound +(verb)|hit|strike|impinge on|run into|collide with +(verb)|pink|knock|sound|go +(verb)|sound|go +(verb)|reach|get through|get hold of|contact +(verb)|reach|get through|get hold of|contact +ping-pong|1 +(noun)|table tennis|Ping-Pong|table game +ping-pong ball|1 +(noun)|ball +ping-pong table|1 +(noun)|table-tennis table|pingpong table|table +ping river|1 +(noun)|Ping|Ping River|river +pinger|1 +(noun)|pulse generator +pingpong paddle|1 +(noun)|table-tennis racquet|table-tennis bat|paddle +pingpong table|1 +(noun)|table-tennis table|ping-pong table|table +pinguecula|1 +(noun)|conjunctiva +pinguicula|1 +(noun)|Pinguicula|genus Pinguicula|plant genus +pinguinus|1 +(noun)|Pinguinus|genus Pinguinus|bird genus +pinguinus impennis|1 +(noun)|great auk|Pinguinus impennis|auk +pinhead|2 +(noun)|dumbbell|dummy|dope|boob|booby|simpleton|simple +(noun)|head +pinhole|1 +(noun)|puncture +pinicola|1 +(noun)|Pinicola|genus Pinicola|bird genus +pinicola enucleator|1 +(noun)|pine grosbeak|Pinicola enucleator|grosbeak|grossbeak +pining|1 +(noun)|longing|yearning +pinion|5 +(noun)|gear|gear wheel|cogwheel +(noun)|flight feather|quill|quill feather|feather|plume|plumage +(noun)|pennon|wing +(verb)|shackle|restrain|confine|hold +(verb)|disable|disenable|incapacitate +pinion and crown wheel|1 +(noun)|bevel gear|pinion and ring gear|gear|gear wheel|cogwheel +pinion and ring gear|1 +(noun)|bevel gear|pinion and crown wheel|gear|gear wheel|cogwheel +pinioned|2 +(adj)|winged +(adj)|bound +pinite|1 +(noun)|mineral +pink|6 +(adj)|pinkish|chromatic +(noun)|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|garden pink|flower +(verb)|tap|rap|knock|sound|go +(verb)|ping|knock|sound|go +(verb)|cut +pink-and-white everlasting|1 +(noun)|pink paper daisy|Acroclinium roseum|everlasting|everlasting flower +pink-collar|1 +(adj)|white-collar +pink-slipped|1 +(adj)|discharged|dismissed|fired|laid-off|unemployed +pink bollworm|1 +(noun)|Gelechia gossypiella|bollworm +pink calla|1 +(noun)|Zantedeschia rehmanii|calla lily|calla|arum lily|Zantedeschia aethiopica +pink cockatoo|1 +(noun)|Kakatoe leadbeateri|cockatoo +pink disease|1 +(noun)|plant disease +pink disease fungus|1 +(noun)|Corticium salmonicolor|fungus +pink elephants|1 +(noun)|visual hallucination +pink family|1 +(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|caryophylloid dicot family +pink fivecorner|1 +(noun)|Styphelia triflora|shrub|bush +pink fritillary|1 +(noun)|adobe lily|Fritillaria pluriflora|fritillary|checkered lily +pink lady|1 +(noun)|cocktail +pink of my john|1 +(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola +pink paper daisy|1 +(noun)|pink-and-white everlasting|Acroclinium roseum|everlasting|everlasting flower +pink sand verbena|1 +(noun)|beach sand verbena|Abronia umbellata|sand verbena +pink shower|1 +(noun)|pink shower tree|horse cassia|Cassia grandis|cassia +pink shower tree|1 +(noun)|pink shower|horse cassia|Cassia grandis|cassia +pink slip|1 +(noun)|dismissal|dismission|notice +pink wine|1 +(noun)|blush wine|rose|rose wine|wine|vino +pinkeye|1 +(noun)|conjunctivitis|inflammation|redness|rubor +pinkie|1 +(noun)|pinky|little finger|finger +pinkify|1 +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +pinkish|1 +(adj)|pink|chromatic +pinko|1 +(noun)|Bolshevik|Marxist|red|bolshie|radical +pinkroot|1 +(noun)|plant disease +pinky|1 +(noun)|pinkie|little finger|finger +pinna|2 +(noun)|pinnule|leaflet +(noun)|auricle|ear|cartilaginous structure +pinnace|1 +(noun)|tender|ship's boat|cutter|boat +pinnacle|5 +(noun)|steeple|spire +(noun)|acme|height|elevation|peak|summit|superlative|top|degree|level|stage|point +(noun)|peak|crown|crest|top|tip|summit +(verb)|surmount +(verb)|raise|lift|elevate|get up|bring up +pinnate|1 +(adj)|pinnated|compound +pinnate leaf|1 +(noun)|compound leaf +pinnated|1 +(adj)|pinnate|compound +pinnatifid|1 +(adj)|compound +pinnatiped|1 +(noun)|pinniped mammal|pinniped|aquatic mammal +pinnatisect|1 +(adj)|compound +pinned|1 +(adj)|stapled|fastened +pinner|1 +(noun)|cap +pinning|1 +(noun)|promise +pinniped|1 +(noun)|pinniped mammal|pinnatiped|aquatic mammal +pinniped mammal|1 +(noun)|pinniped|pinnatiped|aquatic mammal +pinnipedia|1 +(noun)|Pinnipedia|suborder Pinnipedia|animal order +pinnish mark|1 +(noun)|markka|Pinnish mark|Finnish monetary unit +pinnotheres|1 +(noun)|Pinnotheres|genus Pinnotheres|arthropod genus +pinnotheres ostreum|1 +(noun)|oyster crab|Pinnotheres ostreum|pea crab +pinnotheridae|1 +(noun)|Pinnotheridae|family Pinnotheridae|arthropod family +pinnule|1 +(noun)|pinna|leaflet +pinny|1 +(noun)|jumper|pinafore|dress|frock +pinochle|1 +(noun)|pinocle|penuchle|bezique|card game|cards +pinocle|1 +(noun)|pinochle|penuchle|bezique|card game|cards +pinocytosis|1 +(noun)|bodily process|body process|bodily function|activity +pinon|1 +(noun)|pinyon|pine|pine tree|true pine +pinon nut|1 +(noun)|pine nut|pignolia|edible nut +pinon pine|1 +(noun)|Mexican nut pine|Pinus cembroides|nut pine +pinophytina|1 +(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class +pinopsida|1 +(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class +pinot|1 +(noun)|Pinot|Pinot grape|vinifera|vinifera grape|common grape vine|Vitis vinifera +pinot blanc|2 +(noun)|Pinot blanc|Pinot|Pinot grape +(noun)|Pinot blanc|white wine +pinot chardonnay|1 +(noun)|Chardonnay|Pinot Chardonnay|white wine +pinot grape|1 +(noun)|Pinot|Pinot grape|vinifera|vinifera grape|common grape vine|Vitis vinifera +pinot noir|2 +(noun)|Pinot noir|Pinot|Pinot grape +(noun)|Pinot noir|red wine +pinpoint|5 +(adj)|precise +(noun)|moment|minute|second|instant +(noun)|speck|spot|speckle|dapple|patch|fleck|maculation +(noun)|point +(verb)|nail|locate|turn up +pinprick|2 +(noun)|irritation|annoyance|vexation|botheration +(noun)|puncture +pins and needles|1 +(noun)|prickling|tingle|tingling +pinscher|1 +(noun)|watchdog|guard dog +pinsk|1 +(noun)|Pinsk|city|metropolis|urban center +pinstripe|1 +(adj)|pinstriped|patterned +pinstriped|1 +(adj)|pinstripe|patterned +pint|3 +(noun)|British capacity unit|Imperial capacity unit +(noun)|dry pint|United States dry unit +(noun)|United States liquid unit +pint-size|1 +(adj)|pint-sized|runty|sawed-off|sawn-off|short +pint-sized|1 +(adj)|pint-size|runty|sawed-off|sawn-off|short +pintado|1 +(noun)|cero|kingfish|Scomberomorus regalis|Spanish mackerel +pintail|1 +(noun)|pin-tailed duck|Anas acuta|duck +pinter|1 +(noun)|Pinter|Harold Pinter|dramatist|playwright +pintle|1 +(noun)|pivot|pin +pinto|1 +(noun)|horse|Equus caballus +pinto bean|1 +(noun)|common bean +pinus|1 +(noun)|Pinus|genus Pinus|gymnosperm genus +pinus albicaulis|1 +(noun)|whitebark pine|whitebarked pine|Pinus albicaulis|white pine +pinus aristata|1 +(noun)|bristlecone pine|Rocky Mountain bristlecone pine|Pinus aristata|pine|pine tree|true pine +pinus attenuata|1 +(noun)|knobcone pine|Pinus attenuata|pine|pine tree|true pine +pinus banksiana|1 +(noun)|jack pine|Pinus banksiana|pine|pine tree|true pine +pinus californiarum|1 +(noun)|California single-leaf pinyon|Pinus californiarum|pinon|pinyon +pinus cembra|1 +(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine|pine tree|true pine +pinus cembroides|1 +(noun)|pinon pine|Mexican nut pine|Pinus cembroides|nut pine +pinus contorta|1 +(noun)|shore pine|lodgepole|lodgepole pine|spruce pine|Pinus contorta|pine|pine tree|true pine +pinus contorta murrayana|1 +(noun)|Sierra lodgepole pine|Pinus contorta murrayana|pine|pine tree|true pine +pinus densiflora|1 +(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine|pine tree|true pine +pinus echinata|1 +(noun)|shortleaf pine|short-leaf pine|shortleaf yellow pine|Pinus echinata|yellow pine +pinus edulis|1 +(noun)|Rocky mountain pinon|Pinus edulis|nut pine +pinus flexilis|1 +(noun)|limber pine|Pinus flexilis|white pine +pinus glabra|1 +(noun)|spruce pine|Pinus glabra|pine|pine tree|true pine +pinus jeffreyi|1 +(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine|pine tree|true pine +pinus longaeva|1 +(noun)|ancient pine|Pinus longaeva|pine|pine tree|true pine +pinus monophylla|1 +(noun)|single-leaf|single-leaf pine|single-leaf pinyon|Pinus monophylla|nut pine +pinus monticola|1 +(noun)|western white pine|silver pine|mountain pine|Pinus monticola|white pine +pinus mugo|1 +(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine|pine tree|true pine +pinus muricata|1 +(noun)|bishop pine|bishop's pine|Pinus muricata|pinon|pinyon +pinus nigra|1 +(noun)|black pine|Pinus nigra|pine|pine tree|true pine +pinus palustris|1 +(noun)|longleaf pine|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine +pinus parryana|1 +(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon|pinyon +pinus pinea|1 +(noun)|stone pine|umbrella pine|European nut pine|Pinus pinea|pine|pine tree|true pine +pinus ponderosa|1 +(noun)|ponderosa|ponderosa pine|western yellow pine|bull pine|Pinus ponderosa|yellow pine +pinus pungens|1 +(noun)|table-mountain pine|prickly pine|hickory pine|Pinus pungens|pine|pine tree|true pine +pinus quadrifolia|1 +(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon|pinyon +pinus radiata|1 +(noun)|Monterey pine|Pinus radiata|pine|pine tree|true pine +pinus resinosa|1 +(noun)|red pine|Canadian red pine|Pinus resinosa|pine|pine tree|true pine +pinus rigida|1 +(noun)|pitch pine|northern pitch pine|Pinus rigida|pine|pine tree|true pine +pinus serotina|1 +(noun)|pond pine|Pinus serotina|pine|pine tree|true pine +pinus strobiformis|1 +(noun)|southwestern white pine|Pinus strobiformis|white pine +pinus strobus|1 +(noun)|American white pine|eastern white pine|weymouth pine|Pinus strobus|white pine +pinus sylvestris|1 +(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine|pine tree|true pine +pinus taeda|1 +(noun)|loblolly pine|frankincense pine|Pinus taeda|pine|pine tree|true pine +pinus thunbergii|1 +(noun)|Japanese black pine|black pine|Pinus thunbergii|pine|pine tree|true pine +pinus torreyana|1 +(noun)|Torrey pine|Torrey's pine|soledad pine|gray-leaf pine|sabine pine|Pinus torreyana|pine|pine tree|true pine +pinus virginiana|1 +(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine|pine tree|true pine +pinwheel|2 +(noun)|Aeonium haworthii|subshrub|suffrutex +(noun)|catherine wheel|firework|pyrotechnic +pinwheel flower|1 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +pinwheel roll|1 +(noun)|sweet roll|coffee roll +pinworm|1 +(noun)|threadworm|Enterobius vermicularis|nematode|nematode worm|roundworm +pinyon|1 +(noun)|pinon|pine|pine tree|true pine +piolet|1 +(noun)|ice ax|ice axe|ax|axe +pion|1 +(noun)|pi-meson|meson|mesotron +pioneer|5 +(noun)|innovator|trailblazer|groundbreaker|originator|conceiver|mastermind +(noun)|settler|colonist +(verb)|open up|introduce|innovate +(verb)|initiate|cause|do|make +(verb)|explore +pious|2 +(adj)|pious |devotional|godly|reverent|worshipful|holier-than-thou|pietistic|pietistical|pharisaic|pharisaical|sanctimonious|self-righteous|prayerful|religious|sacred|unworldly|virtuous +(adj)|devout|god-fearing|religious +pious platitude|1 +(noun)|cant|talk|talking +piously|1 +(adv)|devoutly +piousness|1 +(noun)|piety|righteousness +pip|8 +(noun)|animal disease +(noun)|ailment|complaint|ill +(noun)|seed +(noun)|spot|marker|marking|mark +(noun)|blip|radar target|radar echo +(verb)|shoot|kill +(verb)|shoot|hit|injure|wound +(verb)|worst|mop up|whip|rack up|beat|beat out|crush|shell|trounce|vanquish +pip-squeak|1 +(noun)|squirt|small fry|cipher|cypher|nobody|nonentity +pip out|1 +(verb)|buy it|die|decease|perish|go|exit|pass away|expire|pass +pipa|1 +(noun)|Pipa|genus Pipa|amphibian genus +pipa americana|1 +(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog +pipa pipa|1 +(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog +pipage|2 +(noun)|fee +(noun)|pipe|piping|tube|tubing +pipal|1 +(noun)|pipal tree|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree +pipal tree|1 +(noun)|pipal|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree +pipe|9 +(noun)|tobacco pipe|tube|tubing +(noun)|pipage|piping|tube|tubing +(noun)|tube|cylinder +(noun)|tabor pipe|wind instrument|wind +(noun)|organ pipe|pipework|wind instrument|wind +(verb)|shriek|shrill|pipe up|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|transport +(verb)|play|pipe up +(verb)|decorate|adorn|grace|ornament|embellish|beautify +pipe-clay|1 +(verb)|clean|make clean +pipe bomb|1 +(noun)|bomb +pipe bowl|1 +(noun)|bowl|container +pipe clamp|1 +(noun)|pipe vise|clamp +pipe cleaner|1 +(noun)|cleaning implement +pipe cutter|1 +(noun)|hand tool +pipe down|1 +(verb)|quieten|hush|quiet|quiesce|quiet down|change intensity +pipe dream|1 +(noun)|dream|fantasy|phantasy +pipe fitter|1 +(noun)|plumber|craftsman|artisan|journeyman|artificer +pipe fitting|2 +(noun)|pipefitting|fitting +(noun)| +pipe in|2 +(verb)|transport|carry +(verb)|conduct|transmit|convey|carry|channel +pipe major|1 +(noun)|piper|bagpiper +pipe of peace|1 +(noun)|calumet|peace pipe|pipe|tobacco pipe +pipe organ|1 +(noun)|organ|wind instrument|wind +pipe rack|1 +(noun)|rack +pipe smoker|1 +(noun)|smoker|tobacco user +pipe up|2 +(verb)|perform|execute|do +(verb)|shriek|shrill|pipe|shout|shout out|cry|call|yell|scream|holler|hollo|squall +pipe vine|1 +(noun)|Dutchman's-pipe|Aristolochia macrophylla|Aristolochia durior|birthwort|Aristolochia clematitis +pipe vise|1 +(noun)|pipe clamp|clamp +pipe wrench|1 +(noun)|tube wrench|adjustable wrench|adjustable spanner +pipeclay|1 +(noun)|terra alba|clay +pipefish|1 +(noun)|needlefish|teleost fish|teleost|teleostan +pipefitting|1 +(noun)|pipe fitting|fitting +pipeful|1 +(noun)|containerful +pipeline|2 +(noun)|grapevine|word of mouth|gossip|comment|scuttlebutt +(noun)|line|pipe|pipage|piping +pipeline company|1 +(noun)|company +piper|2 +(noun)|bagpiper|musician|instrumentalist|player +(noun)|Piper|genus Piper|dicot genus|magnoliopsid genus +piper betel|1 +(noun)|betel|betel pepper|Piper betel|true pepper|pepper vine +piper cubeba|1 +(noun)|cubeb|cubeb vine|Java pepper|Piper cubeba|true pepper|pepper vine +piper longum|1 +(noun)|long pepper|Piper longum|true pepper|pepper vine +piper nigrum|1 +(noun)|pepper|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +piperaceae|1 +(noun)|Piperaceae|family Piperaceae|pepper family|dicot family|magnoliopsid family +piperacillin|1 +(noun)|Pipracil|penicillin +piperales|1 +(noun)|Piperales|order Piperales|plant order +piperazine|1 +(noun)|vermifuge|anthelmintic|anthelminthic|helminthic +piperin|1 +(noun)|piperine|chemical irritant +piperine|1 +(noun)|piperin|chemical irritant +piperocaine|1 +(noun)|piperocaine hydrochloride|Metycaine|spinal anesthetic|spinal anaesthetic +piperocaine hydrochloride|1 +(noun)|piperocaine|Metycaine|spinal anesthetic|spinal anaesthetic +pipes|6 +(noun)|bagpipe|wind instrument|wind +(noun)|pipe|tobacco pipe|tube|tubing +(noun)|pipe|pipage|piping|tube|tubing +(noun)|pipe|tube|cylinder +(noun)|pipe|tabor pipe|wind instrument|wind +(noun)|organ pipe|pipe|pipework|wind instrument|wind +pipestem clematis|1 +(noun)|Clematis lasiantha|clematis +pipet|1 +(noun)|pipette|measuring instrument|measuring system|measuring device +pipette|1 +(noun)|pipet|measuring instrument|measuring system|measuring device +pipework|1 +(noun)|organ pipe|pipe|wind instrument|wind +pipewort|1 +(noun)|Eriocaulon aquaticum|aquatic plant|water plant|hydrophyte|hydrophytic plant +pipewort family|1 +(noun)|Eriocaulaceae|family Eriocaulaceae|monocot family|liliopsid family +pipidae|1 +(noun)|Pipidae|family Pipidae|amphibian family +pipile|1 +(noun)|Pipile|genus Pipile|bird genus +pipilo|1 +(noun)|Pipilo|genus Pipilo|bird genus +pipilo erythrophthalmus|1 +(noun)|chewink|cheewink|Pipilo erythrophthalmus|towhee +piping|5 +(adj)|high |high-pitched +(noun)|cord +(noun)|pipe|pipage|tube|tubing +(noun)|playing +(adv)|steaming +piping crow|1 +(noun)|piping crow-shrike|Gymnorhina tibicen|Australian magpie +piping crow-shrike|1 +(noun)|piping crow|Gymnorhina tibicen|Australian magpie +piping guan|1 +(noun)|guan +piping plover|1 +(noun)|Charadrius melodus|plover +pipistrel|1 +(noun)|pipistrelle|Pipistrellus pipistrellus|vespertilian bat|vespertilionid +pipistrelle|1 +(noun)|pipistrel|Pipistrellus pipistrellus|vespertilian bat|vespertilionid +pipistrellus|1 +(noun)|Pipistrellus|genus Pipistrellus|mammal genus +pipistrellus pipistrellus|1 +(noun)|pipistrelle|pipistrel|Pipistrellus pipistrellus|vespertilian bat|vespertilionid +pipistrellus subflavus|1 +(noun)|eastern pipistrel|Pipistrellus subflavus|vespertilian bat|vespertilionid +pipit|1 +(noun)|titlark|lark|oscine|oscine bird +pippin|1 +(noun)|Pippin|eating apple|dessert apple +pipra|1 +(noun)|Pipra|genus Pipra|bird genus +pipracil|1 +(noun)|piperacillin|Pipracil|penicillin +pipridae|1 +(noun)|Pipridae|family Pipridae|bird family +pipsissewa|1 +(noun)|prince's pine|herb|herbaceous plant +piptadenia|1 +(noun)|Piptadenia|genus Piptadenia|rosid dicot genus +piptadenia macrocarpa|1 +(noun)|Anadenanthera colubrina|Piptadenia macrocarpa|shrub|bush +pipturus|1 +(noun)|Pipturus|genus Pipturus|dicot genus|magnoliopsid genus +pipturus albidus|1 +(noun)|Pipturus albidus|angiospermous tree|flowering tree +pipturus argenteus|1 +(noun)|Queensland grass-cloth plant|Pipturus argenteus|woody plant|ligneous plant +pipul|1 +(noun)|pipal|pipal tree|peepul|sacred fig|bo tree|Ficus religiosa|fig tree +piquance|1 +(noun)|nip|piquancy|tang|tanginess|zest|spiciness|spice|spicery +piquancy|1 +(noun)|nip|piquance|tang|tanginess|zest|spiciness|spice|spicery +piquant|3 +(adj)|savory|savoury|spicy|zesty|tasteful +(adj)|salty|stimulating +(adj)|engaging|attractive +piquantly|1 +(adv)|spicily +pique|3 +(noun)|fabric|cloth|material|textile +(noun)|temper|irritation|annoyance|chafe|vexation +(verb)|offend|anger +piqueria|1 +(noun)|Piqueria|genus Piqueria|asterid dicot genus +piquet|1 +(noun)|card game|cards +piracy|2 +(noun)|buccaneering|robbery +(noun)|plagiarism|plagiarization|plagiarisation|copyright infringement|infringement of copyright +pirana|1 +(noun)|piranha|caribe|characin|characin fish|characid +pirandello|1 +(noun)|Pirandello|Luigi Pirandello|dramatist|playwright|novelist +piranga|1 +(noun)|Piranga|genus Piranga|bird genus +piranga flava hepatica|1 +(noun)|hepatic tanager|Piranga flava hepatica|tanager +piranga ludoviciana|1 +(noun)|western tanager|Piranga ludoviciana|tanager +piranga olivacea|1 +(noun)|scarlet tanager|Piranga olivacea|redbird|firebird|tanager +piranga rubra|1 +(noun)|summer tanager|summer redbird|Piranga rubra|tanager +piranha|2 +(noun)|marauder|predator|vulture|attacker|aggressor|assailant|assaulter +(noun)|pirana|caribe|characin|characin fish|characid +pirate|5 +(noun)|plagiarist|plagiarizer|plagiariser|literary pirate|thief|stealer +(noun)|buccaneer|sea robber|sea rover|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter +(noun)|pirate ship|ship +(verb)|steal +(verb)|commandeer|hijack|highjack|seize +pirate flag|1 +(noun)|black flag|Jolly Roger|flag +pirate ship|1 +(noun)|pirate|ship +piratical|2 +(adj)|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter +(adj)|copyright infringement|infringement of copyright +piriform area|1 +(noun)|pyriform area|pyriform lobe|piriform lobe|neural structure +piriform lobe|1 +(noun)|pyriform area|piriform area|pyriform lobe|neural structure +pirogi|1 +(noun)|piroshki|pirozhki|turnover +pirogue|1 +(noun)|dugout canoe|dugout|canoe +piroplasm|1 +(noun)|sporozoan +piroshki|1 +(noun)|pirogi|pirozhki|turnover +pirouette|2 +(noun)|spin|twirl|twist|twisting|whirl +(verb)|pivot|swivel +piroxicam|1 +(noun)|Feldene|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +pirozhki|1 +(noun)|pirogi|piroshki|turnover +pis aller|1 +(noun)|last resort|expedient +pisa|1 +(noun)|Pisa|city|metropolis|urban center +pisang wax|1 +(noun)|wax +pisanosaur|1 +(noun)|pisanosaurus|ornithischian|ornithischian dinosaur +pisanosaurus|1 +(noun)|pisanosaur|ornithischian|ornithischian dinosaur +piscary|1 +(noun)|fishery|workplace|work +piscatorial|1 +(adj)|piscatory|commercial enterprise|business enterprise|business +piscatory|1 +(adj)|piscatorial|commercial enterprise|business enterprise|business +pisces|4 +(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|Pisces|Fish|person|individual|someone|somebody|mortal|human|soul +(noun)|Pisces|constellation +(noun)|Pisces|division +pisces the fishes|1 +(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac|star sign|sign|mansion|house|planetary house +piscidia|1 +(noun)|Piscidia|genus Piscidia|rosid dicot genus +piscidia erythrina|1 +(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree +piscidia piscipula|1 +(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree +piscine|1 +(adj)|aquatic vertebrate +piscivorous|1 +(adj)|carnivorous +pisha paysha|1 +(noun)|card game|cards +pisiform|1 +(noun)|pisiform bone|os pisiforme|carpal bone|carpal|wrist bone +pisiform bone|1 +(noun)|pisiform|os pisiforme|carpal bone|carpal|wrist bone +pismire|1 +(noun)|ant|emmet|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +pisonia|1 +(noun)|Pisonia|genus Pisonia|caryophylloid dicot genus +pisonia aculeata|1 +(noun)|cockspur|Pisonia aculeata|tree +piss|3 +(noun)|urine|pee|piddle|weewee|water|body waste|excretion|excreta|excrement|excretory product +(noun)|peeing|pee|pissing|micturition|urination +(verb)|make|urinate|piddle|puddle|micturate|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +piss-up|1 +(noun)|bust|tear|binge|bout +pissaba palm|1 +(noun)|piassava palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm +pissed|2 +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed off|riled|roiled|steamed|stunng|displeased +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +pissed off|1 +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|riled|roiled|steamed|stunng|displeased +pisser|2 +(noun)|urinator|person|individual|someone|somebody|mortal|human|soul +(noun)|difficulty +pissing|1 +(noun)|peeing|pee|piss|micturition|urination +pissis|1 +(noun)|Pissis|mountain peak +pistachio|2 +(noun)|Pistacia vera|pistachio tree|nut tree +(noun)|pistachio nut|edible nut +pistachio nut|1 +(noun)|pistachio|edible nut +pistachio tree|1 +(noun)|pistachio|Pistacia vera|nut tree +pistacia|1 +(noun)|Pistacia|genus Pistacia|dicot genus|magnoliopsid genus +pistacia terebinthus|1 +(noun)|terebinth|Pistacia terebinthus|angiospermous tree|flowering tree +pistacia vera|1 +(noun)|pistachio|Pistacia vera|pistachio tree|nut tree +piste|1 +(noun)|ski run|ski trail +pistia|1 +(noun)|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant|water plant|hydrophyte|hydrophytic plant +pistia stratiotes|1 +(noun)|pistia|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant|water plant|hydrophyte|hydrophytic plant +pistia stratoites|1 +(noun)|pistia|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant|water plant|hydrophyte|hydrophytic plant +pistil|1 +(noun)|reproductive structure +pistillate|2 +(adj)|carpellate +(adj)|female +pistillode|1 +(noun)|pistil +pistol|1 +(noun)|handgun|side arm|shooting iron|firearm|piece|small-arm +pistol-whip|1 +(verb)|beat|beat up|work over +pistol grip|1 +(noun)|stock|gunstock +pistol shrimp|1 +(noun)|snapping shrimp|shrimp +pistoleer|1 +(noun)|soldier +piston|2 +(noun)|Piston|Walter Piston|composer +(noun)|plunger|mechanical device +piston chamber|1 +(noun)|cylinder|chamber +piston ring|1 +(noun)|seal +piston rod|1 +(noun)|connecting rod +pisum|1 +(noun)|Pisum|genus Pisum|rosid dicot genus +pisum arvense|1 +(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea|pea plant +pisum sativum|1 +(noun)|garden pea|garden pea plant|common pea|Pisum sativum|pea|pea plant +pisum sativum arvense|1 +(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea|pea plant +pisum sativum macrocarpon|1 +(noun)|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon|pea|pea plant +pit|10 +(noun)|cavity|hole|hollow +(noun)|fossa|concave shape|concavity|incurvation|incurvature|cavity|bodily cavity|cavum +(noun)|stone|endocarp|pericarp|seed vessel +(noun)|pitfall|trap +(noun)|quarry|stone pit|excavation|hole in the ground +(noun)|orchestra pit|area +(noun)|colliery|workplace|work +(verb)|oppose|match|play off|confront|face +(verb)|scar|mark|pock|deface|disfigure|blemish +(verb)|stone|remove|take|take away|withdraw +pit-a-pat|2 +(adv)|pitty-patty|pitty-pat|pitter-patter +(adv)|pitty-patty|pitty-pat|pitter-patter +pit-run gravel|1 +(noun)|bank gravel|pit run|gravel|crushed rock +pit bull terrier|1 +(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|bullterrier|bull terrier +pit of the stomach|1 +(noun)|epigastric fossa|pit|fossa +pit run|1 +(noun)|bank gravel|pit-run gravel|gravel|crushed rock +pit stop|2 +(noun)|stop|stopover|layover +(noun)|stop|stopover|layover +pit viper|1 +(noun)|viper +pita|1 +(noun)|pocket bread|flatbread +pitahaya|2 +(noun)|pitahaya cactus|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus +(noun)|edible fruit +pitahaya cactus|1 +(noun)|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus +pitanga|1 +(noun)|Surinam cherry|Eugenia uniflora|fruit tree +pitch|22 +(noun)|sound property +(noun)|delivery|throw +(noun)|position|place +(noun)|sales talk|sales pitch|promotion|publicity|promotional material|packaging +(noun)|rake|slant|gradient|slope +(noun)|tar|bitumen +(noun)|pitch shot|approach|approach shot +(noun)|auction pitch|all fours|high-low-jack +(noun)|lurch|pitching|motion|movement|move|motility +(noun)|throw +(verb)|flip|toss|sky|fling +(verb)|lurch|shift|move +(verb)|descend|fall|go down|come down +(verb)|set +(verb)|peddle|monger|huckster|hawk|vend|deal|sell|trade +(verb)|slope|incline|lean|tilt|tip|slant|angle +(verb)|cant|cant over|tilt|slant|move +(verb)|set up|rear|erect +(verb)|deliver|throw +(verb)|hit +(verb)|play +(verb)|gear|adapt|accommodate +pitch-black|1 +(adj)|black|pitch-dark|dark +pitch-dark|1 +(adj)|black|pitch-black|dark +pitch accent|1 +(noun)|tonic accent|stress|emphasis|accent +pitch apple|1 +(noun)|strangler fig|Clusia rosea|Clusia major|strangler|strangler tree +pitch black|1 +(noun)|coal black|ebony|jet black|sable|soot black|black|blackness +pitch blackness|1 +(noun)|total darkness|lightlessness|blackness|black|dark|darkness +pitch contour|1 +(noun)|intonation|modulation|prosody|inflection +pitch in|1 +(verb)|dig in|eat +pitch into|1 +(verb)|lam into|tear into|lace into|lay into|hit +pitch pine|2 +(noun)|longleaf pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine +(noun)|northern pitch pine|Pinus rigida|pine|pine tree|true pine +pitch pipe|1 +(noun)|pipe|tabor pipe +pitch shot|1 +(noun)|pitch|approach|approach shot +pitchblende|1 +(noun)|uraninite|mineral|uranium ore +pitched|2 +(adj)|set +(adj)|inclined +pitched battle|1 +(noun)|battle|conflict|fight|engagement +pitcher|4 +(noun)|hurler|twirler|thrower|ballplayer|baseball player +(noun)|ewer|vessel +(noun)|pitcherful|containerful +(noun)|mound|position +pitcher's mound|1 +(noun)|mound|hill|baseball equipment +pitcher-plant family|1 +(noun)|Sarraceniaceae|family Sarraceniaceae|dicot family|magnoliopsid family +pitcher plant|1 +(noun)|carnivorous plant +pitcher sage|2 +(noun)|Salvia spathacea|sage|salvia +(noun)|Lepechinia calycina|Sphacele calycina|shrub|bush +pitcherful|1 +(noun)|pitcher|containerful +pitchfork|2 +(noun)|hand tool +(verb)|fork|lift +pitching|2 +(noun)|playing +(noun)|lurch|pitch|motion|movement|move|motility +pitching change|1 +(noun)|replacement|replacing +pitching coach|1 +(noun)|baseball coach|baseball manager +pitching wedge|1 +(noun)|wedge +pitchman|2 +(noun)|salesman +(noun)|peddler|pedlar|packman|hawker|seller|marketer|vender|vendor|trafficker +pitchstone|1 +(noun)|volcanic glass +pitchy|2 +(adj)|coal-black|jet|jet-black|sooty|achromatic +(adj)|resinous|resiny|tarry|adhesive +piteous|1 +(adj)|hapless|miserable|misfortunate|pathetic|pitiable|pitiful|poor|wretched|unfortunate +pitfall|2 +(noun)|booby trap|difficulty +(noun)|pit|trap +pith|2 +(noun)|plant tissue +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|sum|nitty-gritty|content|cognitive content|mental object +pith hat|1 +(noun)|pith helmet|sun helmet|topee|topi|hat|chapeau|lid|shade +pith helmet|1 +(noun)|pith hat|sun helmet|topee|topi|hat|chapeau|lid|shade +pithead|1 +(noun)|entrance|entranceway|entryway|entry|entree +pithecanthropus|1 +(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid +pithecanthropus erectus|1 +(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid +pithecellobium|1 +(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus +pithecellobium dulce|1 +(noun)|manila tamarind|camachile|huamachil|wild tamarind|Pithecellobium dulce|tree +pithecellodium unguis-cati|1 +(noun)|cat's-claw|catclaw|black bead|Pithecellodium unguis-cati|shrub|bush +pithecia|1 +(noun)|Pithecia|genus Pithecia|mammal genus +pithecolobium|1 +(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus +pithiness|1 +(noun)|conciseness|concision|succinctness|terseness +pithy|2 +(adj)|sententious|concise +(adv)|sententiously +pitiable|2 +(adj)|pathetic|pitiful|contemptible +(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiful|poor|wretched|unfortunate +pitiably|1 +(adv)|pathetically +pitiful|3 +(adj)|pathetic|pitiable|contemptible +(adj)|deplorable|distressing|lamentable|sad|sorry|bad +(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|poor|wretched|unfortunate +pitiless|2 +(adj)|remorseless|ruthless|unpitying|merciless |unmerciful +(adj)|unkind|inhumane +pitilessly|1 +(adv)|mercilessly|unmercifully|remorselessly +pitilessness|2 +(noun)|cruelty|mercilessness|ruthlessness|heartlessness|coldheartedness|hardheartedness +(noun)|ruthlessness|mercilessness|unmercifulness +pitman|2 +(noun)|Pitman|Sir Isaac Pitman|educator|pedagogue +(noun)|coal miner|collier|miner|mineworker +pitocin|1 +(noun)|oxytocin|Pitocin|hormone|endocrine|internal secretion +piton|1 +(noun)|spike +pitot-static tube|1 +(noun)|Pitot-static tube|Pitot tube|measuring instrument|measuring system|measuring device +pitot tube|2 +(noun)|Pitot tube|measuring instrument|measuring system|measuring device +(noun)|Pitot-static tube|Pitot tube|measuring instrument|measuring system|measuring device +pitprop|1 +(noun)|sprag|prop +pitressin|1 +(noun)|vasopressin|antidiuretic hormone|ADH|Pitressin|hormone|endocrine|internal secretion|vasoconstrictor|vasoconstrictive +pitsaw|1 +(noun)|two-handed saw|whipsaw +pitt|3 +(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist|playwright +(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman|solon|national leader +(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman|solon|national leader +pitt the elder|1 +(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman|solon|national leader +pitt the younger|1 +(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman|solon|national leader +pitta|1 +(noun)|tyrannid +pittance|1 +(noun)|payment +pitted|1 +(adj)|alveolate|faveolate|cavitied|honeycombed|cellular +pitter-patter|5 +(noun)|pat|rap|tap +(verb)|sprinkle|spit|spatter|patter|rain|rain down +(verb)|patter|sound|go +(adv)|pit-a-pat|pitty-patty|pitty-pat +(adv)|pit-a-pat|pitty-patty|pitty-pat +pittidae|1 +(noun)|Pittidae|family Pittidae|bird family +pitting|1 +(noun)|roughness|indentation|corrosion|corroding|erosion +pittsburgh|1 +(noun)|Pittsburgh|city|metropolis|urban center +pittsburgh of the south|1 +(noun)|Birmingham|Pittsburgh of the South|city|metropolis|urban center +pittsfield|1 +(noun)|Pittsfield|town|Massachusetts|Bay State|Old Colony|MA +pitty-pat|2 +(adv)|pit-a-pat|pitty-patty|pitter-patter +(adv)|pit-a-pat|pitty-patty|pitter-patter +pitty-patty|2 +(adv)|pit-a-pat|pitty-pat|pitter-patter +(adv)|pit-a-pat|pitty-pat|pitter-patter +pituitary|3 +(adj)|endocrine gland|endocrine|ductless gland +(adj)|acromegalic|unshapely +(noun)|pituitary gland|pituitary body|hypophysis|endocrine gland|endocrine|ductless gland +pituitary body|1 +(noun)|pituitary|pituitary gland|hypophysis|endocrine gland|endocrine|ductless gland +pituitary gland|1 +(noun)|pituitary|pituitary body|hypophysis|endocrine gland|endocrine|ductless gland +pituophis|1 +(noun)|Pituophis|genus Pituophis|reptile genus +pituophis melanoleucus|1 +(noun)|gopher snake|Pituophis melanoleucus|bull snake|bull-snake +pity|4 +(noun)|commiseration|ruth|pathos|sympathy|fellow feeling +(noun)|shame|misfortune|bad luck +(noun)|compassion|mercifulness|mercy +(verb)|feel for|compassionate|condole with|sympathize with|grieve|sorrow +pitying|1 +(adj)|sorry|sorry for|compassionate +pityingly|1 +(adv)|compassionately|with compassion|with pity +pitymys|1 +(noun)|Pitymys|genus Pitymys|mammal genus +pitymys pinetorum|1 +(noun)|pine vole|pine mouse|Pitymys pinetorum|vole|field mouse +pityriasis|1 +(noun)|dermatosis +pityriasis alba|1 +(noun)|pityriasis +pityriasis rosea|1 +(noun)|pityriasis +pityrogramma|1 +(noun)|Pityrogramma|genus Pityrogramma|fern genus +pityrogramma argentea|1 +(noun)|silver fern|Pityrogramma argentea|fern +pityrogramma calomelanos|1 +(noun)|silver fern|Pityrogramma calomelanos|fern +pityrogramma calomelanos aureoflava|1 +(noun)|golden fern|Pityrogramma calomelanos aureoflava|fern +pityrogramma chrysophylla|1 +(noun)|gold fern|Pityrogramma chrysophylla|fern +pius ii|1 +(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +pius v|1 +(noun)|Pius V|Antonio Ghislieri|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +pius vii|1 +(noun)|Pius VII|Luigi Barnaba Gregorio Chiaramonti|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +pius x|1 +(noun)|Pius X|Giuseppe Melchiorre Sarto|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +pius xi|1 +(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +pius xii|1 +(noun)|Pius XII|Eugenio Pacelli|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +piute|1 +(noun)|Paiute|Piute|Shoshone|Shoshoni +pivot|4 +(noun)|pivot man|marcher|parader +(noun)|pin|axis|axis of rotation +(noun)|rotation|rotary motion +(verb)|swivel|turn +pivot joint|1 +(noun)|rotary joint|rotatory joint|articulatio trochoidea|synovial joint|articulatio synovialis|diarthrosis +pivot man|1 +(noun)|pivot|marcher|parader +pivot shot|1 +(noun)|basketball shot +pivotal|1 +(adj)|polar|crucial |important +pivoting window|1 +(noun)|window +pix|2 +(noun)|pyx|pyx chest|pix chest|chest +(noun)|pyx|receptacle +pix chest|1 +(noun)|pyx|pix|pyx chest|chest +pixel|1 +(noun)|pel|picture element|component|constituent|element +pixie|2 +(noun)|elf|hob|gremlin|pixy|brownie|imp|fairy|faery|faerie|sprite +(noun)|pyxie|pixy|Pyxidanthera barbulata|shrub|bush +pixilated|2 +(adj)|impish|implike|mischievous|prankish|puckish|playful +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +pixy|2 +(noun)|pyxie|pixie|Pyxidanthera barbulata|shrub|bush +(noun)|elf|hob|gremlin|pixie|brownie|imp|fairy|faery|faerie|sprite +pizarro|1 +(noun)|Pizarro|Francisco Pizarro|explorer|adventurer +pizza|1 +(noun)|pizza pie|dish +pizza parlor|1 +(noun)|pizzeria|pizza shop|shop|store +pizza pie|1 +(noun)|pizza|dish +pizza shop|1 +(noun)|pizzeria|pizza parlor|shop|store +pizzaz|1 +(noun)|dynamism|pizzazz|oomph|zing|activeness|activity +pizzazz|1 +(noun)|dynamism|pizzaz|oomph|zing|activeness|activity +pizzeria|1 +(noun)|pizza shop|pizza parlor|shop|store +pizzicato|1 +(adj)|plucked +pj's|1 +(noun)|pajamas|pyjamas|jammies|nightclothes|nightwear +pkd|1 +(noun)|polycystic kidney disease|PKD|kidney disease|renal disorder|nephropathy|nephrosis +pku|1 +(noun)|phenylketonuria|PKU|inborn error of metabolism +pku test|1 +(noun)|PKU test|diagnostic test|diagnostic assay +placable|1 +(adj)|placable |appeasable|conciliable|mitigable +placard|3 +(noun)|poster|posting|notice|bill|card|sign +(verb)|post +(verb)|bill|post +placate|1 +(verb)|pacify|lenify|conciliate|assuage|appease|mollify|gentle|gruntle|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +placating|1 +(adj)|appeasing|placative|placatory|conciliatory |conciliative +placation|1 +(noun)|conciliation|propitiation|appeasement|calming +placative|1 +(adj)|appeasing|placating|placatory|conciliatory |conciliative +placatory|1 +(adj)|appeasing|placating|placative|conciliatory |conciliative +place|32 +(noun)|topographic point|spot|point +(noun)|property|geographical area|geographic area|geographical region|geographic region +(noun)|cognition|knowledge|noesis +(noun)|vicinity|locality|neighborhood|neighbourhood|neck of the woods +(noun)|stead|position|lieu|function|office|part|role +(noun)|shoes|situation|position +(noun)|home|residence|abode +(noun)|position|post|berth|office|spot|billet|situation|occupation|business|job|line of work|line +(noun)|position|point +(noun)|station|social station|social status|social rank|rank +(noun)|seat|space +(noun)|passage +(noun)|condition|status +(noun)|plaza|piazza|public square|square +(noun)|position|item|point +(noun)|space|blank space|area|expanse|surface area +(verb)|put|set|pose|position|lay|move|displace +(verb)|delegate|designate|depute|assign +(verb)|rate|rank|range|order|grade|judge +(verb)|locate|site|station|post|base|send +(verb)|order +(verb)|come in|come out|rank +(verb)|target|aim|direct|point|aim|take|train|take aim|direct +(verb)|identify|determine|set +(verb)|delegate|designate|depute|assign +(verb)|set|localize|localise|stage|present|represent +(verb)|put|set|estimate|gauge|approximate|guess|judge +(verb)|localize|localise|situate|locate +(verb)|invest|put|commit|spend|expend|drop +(verb)|station|post|base|send|move|displace +(verb)|race|run +(verb)|sing +place-kick|2 +(verb)|kick +(verb)|kick +place-kicker|2 +(noun)|placekicker|kicker +(noun)| +place-kicking|1 +(noun)|place kick|kick|boot|kicking +place-worship|1 +(noun)|topolatry|idolatry|devotion|veneration|cultism +place bet|1 +(noun)|bet|wager +place down|1 +(verb)|set down|put down|put|set|place|pose|position|lay +place kick|1 +(noun)|place-kicking|kick|boot|kicking +place mat|1 +(noun)|mat|table linen|napery +place name|1 +(noun)|toponym|name +place of birth|1 +(noun)|birthplace|topographic point|place|spot +place of business|1 +(noun)|business establishment|establishment +place of origin|1 +(noun)|birthplace|cradle|provenance|beginning|origin|root|rootage|source +place of worship|1 +(noun)|house of prayer|house of God|house of worship|building|edifice +place setting|1 +(noun)|setting|service|table service +place upright|1 +(verb)|stand|stand up|put|set|place|pose|position|lay +placeable|1 +(adj)|recognizable|recognisable|identifiable +placebo|2 +(noun)|medicine|medication|medicament|medicinal drug +(noun)|vesper +placebo effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +placed|2 +(adj)|located|set|situated|settled +(adj)|arranged |ordered +placeholder|2 +(noun)|proxy|procurator|agent +(noun)|variable +placekicker|1 +(noun)|place-kicker|kicker +placeman|1 +(noun)|placeseeker|appointee +placement|3 +(noun)|arrangement|position|spatial relation +(noun)|contact +(noun)|location|locating|position|positioning|emplacement|activity +placement center|1 +(noun)|placement office|administrative unit|administrative body +placement office|1 +(noun)|placement center|administrative unit|administrative body +placenta|2 +(noun)|reproductive structure +(noun)|vascular structure +placenta previa|1 +(noun)|pregnancy|gestation|maternity +placental|2 +(adj)|placental |transplacental +(noun)|placental mammal|eutherian|eutherian mammal|mammal +placental mammal|1 +(noun)|placental|eutherian|eutherian mammal|mammal +placentation|2 +(noun)|bodily process|body process|bodily function|activity +(noun)|reproductive structure +placer|1 +(noun)|alluvial sediment|alluvial deposit|alluvium|alluvion +placer miner|1 +(noun)|miner|mineworker +placer mining|1 +(noun)|mining|excavation +placeseeker|1 +(noun)|placeman|appointee +placid|4 +(adj)|quiet|still|tranquil|unruffled|calm +(adj)|equable|even-tempered|good-tempered|good-natured +(adj)|quiet|uneventful +(adj)|easygoing|contented |content +placidity|2 +(noun)|placidness|calmness +(noun)|repose|quiet|serenity|tranquillity|tranquility|composure|calm|calmness|equanimity +placidness|1 +(noun)|placidity|calmness +placido domingo|1 +(noun)|Domingo|Placido Domingo|tenor +placidyl|1 +(noun)|ethchlorvynol|Placidyl|sedative-hypnotic|sedative-hypnotic drug +placket|1 +(noun)|piece of cloth|piece of material +placoderm|1 +(noun)|aquatic vertebrate +placodermi|1 +(noun)|Placodermi|class Placodermi|class +placoid|1 +(adj)|platelike|planar |two-dimensional +placuna|1 +(noun)|Placuna|genus Placuna|mollusk genus +placuna placenta|1 +(noun)|window oyster|windowpane oyster|capiz|Placuna placenta|oyster +plagal cadence|1 +(noun)|amen cadence|cadence +plage|1 +(noun)|beach +plagianthus|1 +(noun)|Plagianthus|genus Plagianthus|dilleniid dicot genus +plagianthus betulinus|1 +(noun)|ribbon tree|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree +plagianthus regius|1 +(noun)|ribbon tree|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree +plagiarisation|1 +(noun)|plagiarism|plagiarization|piracy|copyright infringement|infringement of copyright +plagiarise|1 +(verb)|plagiarize|lift|steal +plagiarised|1 +(adj)|plagiaristic|plagiarized|derived +plagiariser|1 +(noun)|plagiarist|plagiarizer|literary pirate|pirate|thief|stealer +plagiarism|2 +(noun)|writing|written material|piece of writing +(noun)|plagiarization|plagiarisation|piracy|copyright infringement|infringement of copyright +plagiarist|1 +(noun)|plagiarizer|plagiariser|literary pirate|pirate|thief|stealer +plagiaristic|1 +(adj)|plagiarized|plagiarised|derived +plagiarization|1 +(noun)|plagiarism|plagiarisation|piracy|copyright infringement|infringement of copyright +plagiarize|1 +(verb)|plagiarise|lift|steal +plagiarized|1 +(adj)|plagiaristic|plagiarised|derived +plagiarizer|1 +(noun)|plagiarist|plagiariser|literary pirate|pirate|thief|stealer +plagiocephaly|1 +(noun)|deformity|malformation|misshapenness|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +plagioclase|1 +(noun)|oligoclase|feldspar|felspar +plagioclastic|1 +(adj)|feldspar|felspar +plague|7 +(noun)|epidemic disease +(noun)|pestilence|epidemic disease +(noun)|infestation|swarm|cloud +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +(noun)|annoyance|bother|botheration|pain|infliction|pain in the neck|pain in the ass +(verb)|blight|afflict|smite +(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|molest|provoke|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +plague spot|1 +(noun)|macule|macula +plagued|1 +(adj)|infested|overrun|troubled +plaguey|3 +(adj)|pestilent|pestilential|pestiferous|epidemic +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|teasing|vexatious|vexing|disagreeable +(adv)|plaguy|plaguily +plaguily|1 +(adv)|plaguey|plaguy +plaguy|2 +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguey|teasing|vexatious|vexing|disagreeable +(adv)|plaguey|plaguily +plaice|2 +(noun)|flounder +(noun)|Pleuronectes platessa|righteye flounder|righteyed flounder +plaid|1 +(noun)|tartan|fabric|cloth|material|textile +plain|13 +(adj)|apparent|evident|manifest|patent|obvious +(adj)|plain |austere|severe|stark|bare|mere|simple|dry|dry|featureless|homely|inelaborate|unelaborate|literal|pure and simple|tailored|trim|chaste|simple|simple|unadorned|undecorated|unrhetorical|unpretentious +(adj)|plain |unpatterned|solid|self-colored|self-coloured +(adj)|sheer|unmingled|unmixed|pure +(adj)|unvarnished|direct +(adj)|unembellished|unornamented|unadorned |undecorated +(adj)|literal|unembellished|unrhetorical +(adj)|popular|general +(adj)|homely|unattractive +(noun)|field|champaign|land|dry land|earth|ground|solid ground|terra firma +(noun)|knit|knit stitch|plain stitch|knitting stitch +(verb)|complain|kick|sound off|quetch|kvetch +(adv)|obviously|evidently|manifestly|patently|apparently|plainly +plain-woven|1 +(adj)|woven +plain clothes|1 +(noun)|civilian clothing|civilian dress|civilian garb|clothing|article of clothing|vesture|wear +plain flour|1 +(noun)|flour +plain sailing|1 +(noun)|clear sailing|easy going|progress|progression|procession|advance|advancement|forward motion|onward motion +plain stitch|1 +(noun)|knit|knit stitch|plain|knitting stitch +plain turkey|1 +(noun)|Choriotis australis|bustard +plain wanderer|1 +(noun)|Pedionomus torquatus|wading bird|wader +plain weave|1 +(noun)|taffeta weave|weave +plainchant|1 +(noun)|plainsong|Gregorian chant|chant +plainclothesman|1 +(noun)|detective|investigator|tec|police detective +plainly|2 +(adv)|obviously|evidently|manifestly|patently|apparently|plain +(adv)|simply +plainness|4 +(noun)|purity|pureness +(noun)|perspicuity|perspicuousness|clarity|lucidity|pellucidity|clearness|limpidity +(noun)|appearance|visual aspect +(noun)|homeliness|appearance|visual aspect +plains indian|1 +(noun)|Plains Indian|Buffalo Indian|Indian|North American Indian|American Indian|Red Indian +plains lemon monarda|1 +(noun)|Monarda pectinata|monarda|wild bergamot +plains pocket gopher|1 +(noun)|Geomys bursarius|gopher|pocket gopher|pouched rat +plains pocket mouse|1 +(noun)|Perognathus flavescens|pocket mouse +plains spadefoot|1 +(noun)|Scaphiopus bombifrons|spadefoot|spadefoot toad +plainsman|1 +(noun)|inhabitant|dweller|denizen|indweller +plainsong|1 +(noun)|plainchant|Gregorian chant|chant +plainspoken|2 +(adj)|unrhetorical +(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|point-blank|straight-from-the-shoulder|direct +plaint|2 +(noun)|allegation +(noun)|lament|lamentation|wail|complaint +plaintiff|1 +(noun)|complainant|litigant|litigator +plaintiff in error|1 +(noun)|appellant|litigant|litigator +plaintive|1 +(adj)|mournful|sorrowful +plaintiveness|1 +(noun)|mournfulness|sorrowfulness|ruthfulness +plait|4 +(noun)|braid|tress|twist|hairdo|hair style|coiffure +(noun)|pleat|fold|crease|plication|flexure|crimp|bend +(verb)|braid|lace|weave|tissue +(verb)|weave|interweave +plaiter|1 +(noun)|skilled worker|trained worker +plan|7 +(noun)|program|programme|idea|thought +(noun)|design|arrangement|organization|organisation|system +(noun)|architectural plan|drawing +(verb)|be after|intend|mean|think +(verb)|think|cogitate|cerebrate +(verb)|project|contrive|design|create by mental act|create mentally +(verb)|design|create by mental act|create mentally +plan of action|1 +(noun)|plan|program|programme +plan of attack|1 +(noun)|approach|attack|conceptualization|conceptualisation|formulation +planar|1 +(adj)|planar |two-dimensional|coplanar|flat|planate|flattened|tabular|placoid|platelike +planaria|1 +(noun)|planarian|flatworm|platyhelminth +planarian|1 +(noun)|planaria|flatworm|platyhelminth +planate|1 +(adj)|flattened|planar |two-dimensional +planation|1 +(noun)|erosion|eroding|eating away|wearing|wearing away +planchet|1 +(noun)|coin blank|disk|disc +planchette|1 +(noun)|board +planck|1 +(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist +planck's constant|1 +(noun)|Planck's constant|h|factor of proportionality|constant of proportionality +planck's law|1 +(noun)|Planck's law|law|law of nature +planck's radiation law|1 +(noun)|Planck's radiation law|law|law of nature +plane|9 +(adj)|flat|level|even +(noun)|airplane|aeroplane|heavier-than-air craft +(noun)|sheet|shape|form +(noun)|degree|level|stage|point +(noun)|planer|planing machine|power tool +(noun)|carpenter's plane|woodworking plane|edge tool|hand tool +(verb)|shave|cut +(verb)|skim|glide +(verb)|smooth|smoothen +plane-polarized|1 +(adj)|optical phenomenon +plane-tree family|1 +(noun)|Platanaceae|family Platanaceae|rosid dicot family +plane angle|1 +(noun)|angle +plane figure|1 +(noun)|two-dimensional figure|figure +plane geometry|1 +(noun)|geometry +plane seat|1 +(noun)|seat +plane section|1 +(noun)|section|area|country +plane table|1 +(noun)|surveying instrument|surveyor's instrument +plane ticket|1 +(noun)|airplane ticket|ticket +plane tree|1 +(noun)|sycamore|platan|tree +planeness|1 +(noun)|two-dimensionality|flatness|dimensionality +planer|1 +(noun)|plane|planing machine|power tool +planera|1 +(noun)|Planera|genus Planera|dicot genus|magnoliopsid genus +planet|2 +(noun)|celestial body|heavenly body +(noun)|satellite|follower +planet gear|1 +(noun)|planetary gear|epicyclic gear|planet wheel|gear|gear wheel|cogwheel +planet wheel|1 +(noun)|planetary gear|epicyclic gear|planet gear|gear|gear wheel|cogwheel +planetal|1 +(adj)|planetary|celestial body|heavenly body +planetarium|3 +(noun)|building|edifice +(noun)|optical device +(noun)|model|simulation +planetary|4 +(adj)|planetal|celestial body|heavenly body +(adj)|terrestrial|terrestrial planet +(adj)|erratic|wandering|unsettled +(adj)|global|world|worldwide|international +planetary gear|1 +(noun)|epicyclic gear|planet wheel|planet gear|gear|gear wheel|cogwheel +planetary house|1 +(noun)|sign of the zodiac|star sign|sign|mansion|house|region|part +planetary nebula|1 +(noun)|nebula +planetesimal|1 +(noun)|celestial body|heavenly body +planetesimal hypothesis|1 +(noun)|scientific theory +planetoid|1 +(noun)|asteroid|minor planet|planet +plangency|1 +(noun)|resonance|reverberance|ringing|sonorousness|sonority|vibrancy|timbre|timber|quality|tone +plangent|1 +(adj)|full +planimeter|1 +(noun)|integrator|measuring instrument|measuring system|measuring device +planing machine|1 +(noun)|plane|planer|power tool +plank|5 +(noun)|board|lumber|timber +(noun)|policy +(verb)|plank over|cover +(verb)|flump|plonk|plop|plunk|plump down|plunk down|plump|set down|put down|place down +(verb)|serve|serve up|dish out|dish up|dish +plank-bed|1 +(noun)|bed +plank down|1 +(verb)|plonk down|plump down|drop +plank over|1 +(verb)|plank|cover +planking|3 +(noun)|lumber|timber +(noun)|covering +(noun)|manual labor|manual labour +plankton|1 +(noun)|organism|being +planktonic|1 +(adj)|organism|being +planktonic algae|1 +(noun)|phytoplankton +planless|1 +(adj)|adrift|afloat|aimless|directionless|rudderless|undirected|purposeless +planned|2 +(adj)|planned |conceived|formed|deep-laid|designed|prearranged|projected|proposed|put-up|contrived|preset|predetermined|intended|premeditated +(adj)|aforethought|plotted|premeditated +planner|2 +(noun)|contriver|deviser|person|individual|someone|somebody|mortal|human|soul +(noun)|notebook|notebook computer +planning|3 +(noun)|preparation|readying +(noun)|design|designing +(noun)|preparation|provision|thinking|thought|cerebration|intellection|mentation +planning board|1 +(noun)|advisory board|board +planning commission|1 +(noun)|committee|commission +plano|1 +(noun)|Plano|city|metropolis|urban center +planococcus|1 +(noun)|Planococcus|genus Planococcus|arthropod genus +planococcus citri|1 +(noun)|citrus mealybug|Planococcus citri|mealybug|mealy bug +planoconcave|1 +(adj)|concave +planoconvex|1 +(adj)|convex |bulging +planographic|1 +(adj)|printing|printing process +planographic printing|1 +(noun)|planography|printing|printing process +planography|1 +(noun)|planographic printing|printing|printing process +plant|10 +(noun)|works|industrial plant|building complex|complex +(noun)|flora|plant life|organism|being +(noun)|contrivance|stratagem|dodge +(noun)|actor|histrion|player|thespian|role player +(verb)|set|put|set|place|pose|position|lay +(verb)|implant|engraft|embed|imbed|insert|infix|enter|introduce +(verb)|establish|found|constitute|institute|initiate|pioneer +(verb)|stock +(verb)|put|set|place|pose|position|lay +(verb)|implant|communicate|pass on|pass|put across +plant-eating|1 +(adj)|phytophagic|phytophagous|phytophilous|herbivorous +plant bug|1 +(noun)|leaf bug|hemipterous insect|bug|hemipteran|hemipteron +plant closing|1 +(noun)|closure|closedown|closing|shutdown +plant department|1 +(noun)|building department|business department +plant disease|1 +(noun)|disease +plant family|1 +(noun)|family +plant fiber|1 +(noun)|plant fibre|natural fiber|natural fibre|plant product +plant fibre|1 +(noun)|plant fiber|natural fiber|natural fibre|plant product +plant food|1 +(noun)|fertilizer|fertiliser|chemical +plant genus|1 +(noun)|genus +plant hopper|2 +(noun)|planthopper|homopterous insect|homopteran +(noun)| +plant hormone|1 +(noun)|phytohormone|growth regulator|plant product +plant kingdom|1 +(noun)|Plantae|kingdom Plantae|kingdom +plant life|1 +(noun)|plant|flora|organism|being +plant louse|1 +(noun)|louse|homopterous insect|homopteran +plant material|1 +(noun)|material|stuff +plant order|1 +(noun)|order +plant organ|1 +(noun)|plant part|plant structure +plant part|1 +(noun)|plant structure|natural object +plant process|1 +(noun)|enation|process|outgrowth|appendage +plant product|1 +(noun)|plant material +plant scientist|1 +(noun)|botanist|phytologist|biologist|life scientist +plant structure|1 +(noun)|plant part|natural object +plant tissue|1 +(noun)|plant part|plant structure +plant toxin|1 +(noun)|phytotoxin|toxin +plant virus|1 +(noun)|virus +plantae|1 +(noun)|Plantae|kingdom Plantae|plant kingdom|kingdom +plantagenet|1 +(noun)|Plantagenet|Plantagenet line|dynasty|royalty|royal family|royal line|royal house +plantagenet line|1 +(noun)|Plantagenet|Plantagenet line|dynasty|royalty|royal family|royal line|royal house +plantaginaceae|1 +(noun)|Plantaginaceae|family Plantaginaceae|plantain family|dicot family|magnoliopsid family +plantaginales|1 +(noun)|Plantaginales|order Plantaginales|plant order +plantago|1 +(noun)|Plantago|genus Plantago|dicot genus|magnoliopsid genus +plantago lanceolata|1 +(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain +plantago major|1 +(noun)|broad-leaved plantain|common plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain +plantago media|1 +(noun)|hoary plantain|Plantago media|plantain +plantago psyllium|1 +(noun)|fleawort|psyllium|Spanish psyllium|Plantago psyllium|plantain +plantago rugelii|1 +(noun)|rugel's plantain|broad-leaved plantain|Plantago rugelii|plantain +plantago virginica|1 +(noun)|hoary plantain|Plantago virginica|plantain +plantain|3 +(noun)|herb|herbaceous plant +(noun)|plantain tree|Musa paradisiaca|banana|banana tree +(noun)|vegetable|veggie +plantain-leaved pussytoes|1 +(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica +plantain family|1 +(noun)|Plantaginaceae|family Plantaginaceae|dicot family|magnoliopsid family +plantain lily|1 +(noun)|day lily|herb|herbaceous plant +plantain tree|1 +(noun)|plantain|Musa paradisiaca|banana|banana tree +plantal|1 +(adj)|organism|being +plantar|1 +(adj)|area|region +plantar reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +plantar wart|1 +(noun)|wart|verruca +plantation|3 +(noun)|estate|land|landed estate|acres|demesne +(noun)|Plantation|colony|settlement +(noun)|grove|woodlet|orchard|garden +plantation owner|1 +(noun)|planter|farmer|husbandman|granger|sodbuster +plantation walking horse|1 +(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse|riding horse|mount +planted|2 +(adj)|deep-rooted|deep-seated|implanted|ingrained|established |constituted +(adj)|planted |cropped|naturalized|naturalised|potbound|rootbound|quickset|seeded|sown|self-seeded|self-sown|self-sowed +planter|3 +(noun)|plantation owner|farmer|husbandman|granger|sodbuster +(noun)|worker +(noun)|pot|flowerpot +planter's punch|1 +(noun)|cocktail +planthopper|1 +(noun)|plant hopper|homopterous insect|homopteran +plantigrade|1 +(adj)|plantigrade +plantigrade mammal|1 +(noun)|placental|placental mammal|eutherian|eutherian mammal +planting|3 +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|collection|aggregation|accumulation|assemblage +(noun)|farming|agriculture|husbandry +plantlet|1 +(noun)|plant|flora|plant life +plantlike flagellate|1 +(noun)|protozoan|protozoon +plantsman|1 +(noun)|horticulturist|expert +planula|1 +(noun)|hydrozoan|hydroid +plaque|2 +(noun)|spot|speckle|dapple|patch|fleck|maculation +(noun)|brass|memorial tablet|memorial|monument +plaquenil|1 +(noun)|hydroxychloroquine|Plaquenil|anti-inflammatory|anti-inflammatory drug +plash|3 +(noun)|splash|noise +(verb)|pleach|intertwine|twine|entwine|enlace|interlace|lace +(verb)|spatter|splatter|splash|splosh|swash|scatter|sprinkle|dot|dust|disperse +plasm|2 +(noun)|germ plasm|protoplasm|living substance +(noun)|plasma|extracellular fluid|ECF +plasma|3 +(noun)|plasm|extracellular fluid|ECF +(noun)|chalcedony|calcedony +(noun)|state of matter|state +plasma cell|1 +(noun)|plasmacyte|lymphocyte|lymph cell +plasma membrane|1 +(noun)|cell wall|cell membrane|cytomembrane|semipermeable membrane +plasma physics|1 +(noun)|physics|physical science|natural philosophy +plasma protein|1 +(noun)|protein +plasma thromboplastin antecedent|1 +(noun)|factor XI|coagulation factor|clotting factor +plasmablast|1 +(noun)|plasma cell|plasmacyte +plasmacyte|1 +(noun)|plasma cell|lymphocyte|lymph cell +plasmacytoma|1 +(noun)|tumor|tumour|neoplasm +plasmapheresis|1 +(noun)|apheresis|pheresis +plasmid|1 +(noun)|inclusion body|cellular inclusion|inclusion +plasmin|1 +(noun)|fibrinolysin|enzyme +plasminogen|1 +(noun)|plasmin|fibrinolysin +plasminogen activator|1 +(noun)|urokinase|protease|peptidase|proteinase|proteolytic enzyme +plasmodial slime mold|1 +(noun)|true slime mold|acellular slime mold|myxomycete|slime mold|slime mould +plasmodiidae|1 +(noun)|Plasmodiidae|family Plasmodiidae|protoctist family +plasmodiophora|1 +(noun)|Plasmodiophora|genus Plasmodiophora|fungus genus +plasmodiophora brassicae|1 +(noun)|clubroot fungus|Plasmodiophora brassicae|fungus +plasmodiophoraceae|1 +(noun)|Plasmodiophoraceae|family Plasmodiophoraceae|fungus family +plasmodium|2 +(noun)|cytoplasm +(noun)|Plasmodium vivax|malaria parasite|sporozoan +plasmodium vivax|1 +(noun)|plasmodium|Plasmodium vivax|malaria parasite|sporozoan +plassey|1 +(noun)|Plassey|battle of Plassey|pitched battle +plaster|11 +(noun)|mixture|covering material +(noun)|plaster of Paris|calcium sulphate|calcium sulfate +(noun)|poultice|cataplasm|dressing|medical dressing +(noun)|plasterwork|surface +(noun)|adhesive plaster|sticking plaster|adhesive tape +(verb)|cover +(verb)|affix|stick on +(verb)|cover +(verb)|plaster over|stick on|cover +(verb)|daub|coat|surface +(verb)|poultice|dress +plaster bandage|1 +(noun)|cast|plaster cast|bandage|patch +plaster cast|1 +(noun)|cast|plaster bandage|bandage|patch +plaster of paris|1 +(noun)|plaster of Paris|plaster|calcium sulphate|calcium sulfate +plaster over|1 +(verb)|plaster|stick on|cover +plaster saint|1 +(noun)|good person +plasterboard|1 +(noun)|gypsum board|wallboard +plastered|3 +(adj)|slicked|groomed +(adj)|sealed|covered +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +plasterer|1 +(noun)|skilled worker|trained worker +plasterer's float|1 +(noun)|float|hand tool +plastering|1 +(noun)|daubing|application|coating|covering +plastering trowel|1 +(noun)|trowel +plasterwork|1 +(noun)|plaster|surface +plastic|4 +(adj)|integrative +(adj)|fictile|moldable|elastic +(adj)|pliant|impressionable |impressible +(noun)|solid +plastic art|1 +(noun)|art|fine art +plastic bag|1 +(noun)|bag +plastic bomb|1 +(noun)|bomb +plastic explosive|1 +(noun)|plastique|explosive compound +plastic film|1 +(noun)|film|sheet|flat solid|wrapping|wrap|wrapper +plastic laminate|1 +(noun)|laminate +plastic surgeon|1 +(noun)|cosmetic surgeon|surgeon|operating surgeon|sawbones +plastic surgery|1 +(noun)|reconstructive surgery|anaplasty|operation|surgery|surgical operation|surgical procedure|surgical process +plastic wrap|1 +(noun)|wrapping|wrap|wrapper +plasticine|1 +(noun)|Plasticine|synthetic +plasticise|2 +(verb)|plasticize|change +(verb)|plasticize|change|alter|modify +plasticiser|1 +(noun)|plasticizer|softener +plasticity|1 +(noun)|malleability|physical property +plasticize|2 +(verb)|plasticise|change +(verb)|plasticise|change|alter|modify +plasticizer|1 +(noun)|plasticiser|softener +plastics industry|1 +(noun)|industry +plastid|1 +(noun)|granule +plastinate|1 +(verb)|conserve|preserve|maintain|keep up +plastination|1 +(noun)|preservation +plastique|1 +(noun)|plastic explosive|explosive compound +plastron|5 +(noun)|shirtfront +(noun)|shirtfront +(noun)|breastplate|aegis|egis +(noun)|pad +(noun)|exoskeleton +plat|2 +(noun)|map +(verb)|plot|map +plata river|1 +(noun)|Rio de la Plata|La Plata|Plata River|estuary +plataea|1 +(noun)|Plataea|battle of Plataea|pitched battle +platalea|1 +(noun)|Platalea|genus Platalea|bird genus +platalea leucorodia|1 +(noun)|common spoonbill|Platalea leucorodia|spoonbill +plataleidae|1 +(noun)|Plataleidae|family Plataleidae|bird family +platan|1 +(noun)|plane tree|sycamore|tree +platanaceae|1 +(noun)|Platanaceae|family Platanaceae|plane-tree family|rosid dicot family +platanistidae|1 +(noun)|Platanistidae|family Platanistidae|mammal family +platanthera|1 +(noun)|Platanthera|genus Platanthera|monocot genus|liliopsid genus +platanthera bifolia|1 +(noun)|lesser butterfly orchid|Platanthera bifolia|Habenaria bifolia|orchid|orchidaceous plant +platanthera chlorantha|1 +(noun)|greater butterfly orchid|Platanthera chlorantha|Habenaria chlorantha|orchid|orchidaceous plant +platanthera leucophea|1 +(noun)|prairie white-fringed orchid|Platanthera leucophea|orchid|orchidaceous plant +platanus|1 +(noun)|Platanus|genus Platanus|rosid dicot genus +platanus acerifolia|1 +(noun)|London plane|Platanus acerifolia|plane tree|sycamore|platan +platanus occidentalis|1 +(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree|sycamore|platan +platanus orientalis|1 +(noun)|oriental plane|Platanus orientalis|plane tree|sycamore|platan +platanus racemosa|1 +(noun)|California sycamore|Platanus racemosa|plane tree|sycamore|platan +platanus wrightii|1 +(noun)|Arizona sycamore|Platanus wrightii|plane tree|sycamore|platan +plate|17 +(noun)|sheet|flat solid +(noun)|home plate|home base|home|base|bag +(noun)|illustration +(noun)|flatware +(noun)|plateful|containerful +(noun)|crustal plate|crust|Earth's crust +(noun)|cut of beef +(noun)|entree|main course +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|anode +(noun)|photographic plate|sheet|flat solid +(noun)|structural member +(noun)|collection plate|receptacle +(noun)|scale|shell|shield +(noun)|denture|dental plate|dental appliance +(noun)|catcher|position +(verb)|coat|surface +plate armor|1 +(noun)|armor plate|armour plate|armor plating|plate armour|plate|scale|shell +plate armour|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate|scale|shell +plate glass|1 +(noun)|sheet glass|sheet|flat solid +plate iron|1 +(noun)|plate +plate rack|1 +(noun)|rack +plate rail|1 +(noun)|rail +plate tectonic theory|1 +(noun)|tectonics|plate tectonics|morphology|geomorphology +plate tectonics|1 +(noun)|tectonics|plate tectonic theory|morphology|geomorphology +plateau|1 +(noun)|tableland|highland|upland +plateau striped whiptail|1 +(noun)|Cnemidophorus velox|whiptail|whiptail lizard +plateful|1 +(noun)|plate|containerful +platelayer|1 +(noun)|tracklayer|laborer|manual laborer|labourer|jack +platelet|1 +(noun)|blood platelet|thrombocyte|protoplasm|living substance +plateletpheresis|1 +(noun)|apheresis|pheresis +platelike|1 +(adj)|placoid|planar |two-dimensional +platen|3 +(noun)|table +(noun)|plate +(noun)|roller +plater|1 +(noun)|skilled worker|trained worker +platform|5 +(noun)|horizontal surface|level +(noun)|political platform|political program|program|document|written document|papers +(noun)|computer system|computing system|automatic data processing system|ADP system|ADPS +(noun)|weapons platform|structure|construction +(noun)|chopine|chopines|platforms|shoe +platform bed|1 +(noun)|bed +platform rocker|1 +(noun)|rocking chair|rocker +platforms|6 +(noun)|chopine|chopines|platform|shoe +(noun)|platform|horizontal surface|level +(noun)|platform|political platform|political program|program|document|written document|papers +(noun)|platform|computer system|computing system|automatic data processing system|ADP system|ADPS +(noun)|platform|weapons platform|structure|construction +(noun)|chopine|chopines|platform|shoe +plath|1 +(noun)|Plath|Sylvia Plath|writer|author|poet +platichthys|1 +(noun)|Platichthys|genus Platichthys|fish genus +platichthys flesus|1 +(noun)|European flatfish|Platichthys flesus|righteye flounder|righteyed flounder +plating|2 +(noun)|metal plating|coating|coat +(noun)|application|coating|covering +platinum|1 +(noun)|Pt|atomic number 78|noble metal +platinum-blonde|1 +(adj)|ash-blonde|towheaded|blond |blonde|light-haired +platinum black|1 +(noun)|catalyst|accelerator +platinum thermometer|1 +(noun)|resistance thermometer|thermometer +platitude|1 +(noun)|cliche|banality|commonplace|bromide|remark|comment|truism +platitudinal|1 +(adj)|bromidic|corny|platitudinous|unoriginal +platitudinarian|1 +(noun)|bore|dullard +platitudinous|1 +(adj)|bromidic|corny|platitudinal|unoriginal +plato|1 +(noun)|Plato|philosopher +plato's academy|1 +(noun)|Plato's Academy|academy +platonic|2 +(adj)|Platonic|philosopher +(adj)|passionless +platonic body|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron +platonic solid|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron +platonic year|1 +(noun)|great year|Platonic year|time period|period of time|period +platonism|1 +(noun)|Platonism|realism|philosophical doctrine|philosophical theory +platonist|1 +(noun)|Platonist|advocate|advocator|proponent|exponent +platonistic|1 +(adj)|Platonistic|philosophical doctrine|philosophical theory +platoon|3 +(noun)|army unit +(noun)|police squad +(noun)|social group +platt national park|1 +(noun)|Platt National Park|national park +plattdeutsch|1 +(noun)|Low German|Plattdeutsch|West Germanic|West Germanic language +platte|1 +(noun)|Platte|Platte River|river +platte river|1 +(noun)|Platte|Platte River|river +platte river penstemon|1 +(noun)|Platte River penstemon|Penstemon cyananthus|wildflower|wild flower +plattensee|1 +(noun)|Balaton|Lake Balaton|Plattensee|lake +platter|2 +(noun)|flatware +(noun)|phonograph record|phonograph recording|record|disk|disc|sound recording|audio recording +platy|1 +(noun)|Platypoecilus maculatus|topminnow|poeciliid fish|poeciliid|live-bearer +platycephalidae|1 +(noun)|Platycephalidae|family Platycephalidae|fish family +platycerium|1 +(noun)|Platycerium|genus Platycerium|fern genus +platycerium alcicorne|1 +(noun)|common staghorn fern|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern +platycerium andinum|1 +(noun)|South American staghorn|Platycerium andinum|staghorn fern +platycerium bifurcatum|1 +(noun)|common staghorn fern|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern +platycladus orientalis|1 +(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae +platyctenea|1 +(noun)|Platyctenea|order Platyctenea|animal order +platyctenean|1 +(noun)|ctenophore|comb jelly +platyhelminth|1 +(noun)|flatworm|worm +platyhelminthes|1 +(noun)|Platyhelminthes|phylum Platyhelminthes|phylum +platylobium|1 +(noun)|Platylobium|genus Platylobium|rosid dicot genus +platylobium formosum|1 +(noun)|flat pea|Platylobium formosum|shrub|bush +platymiscium|1 +(noun)|Platymiscium|genus Platymiscium|rosid dicot genus +platymiscium pinnatum|1 +(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira +platymiscium trinitatis|1 +(noun)|roble|Platymiscium trinitatis|quira +platypoecilus|1 +(noun)|Platypoecilus|genus Platypoecilus|fish genus +platypoecilus maculatus|1 +(noun)|platy|Platypoecilus maculatus|topminnow|poeciliid fish|poeciliid|live-bearer +platypus|1 +(noun)|duckbill|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme|egg-laying mammal +platyrhine|1 +(adj)|platyrrhine |platyrrhinian|platyrhinian|platyrrhinic|broadnosed +platyrhinian|1 +(adj)|platyrrhine |platyrrhinian|platyrhine|platyrrhinic|broadnosed +platyrrhine|2 +(adj)|platyrrhine |platyrrhinian|platyrhine|platyrhinian|platyrrhinic|broadnosed +(noun)|New World monkey|monkey +platyrrhini|1 +(noun)|Platyrrhini|superfamily Platyrrhini|mammal family +platyrrhinian|1 +(adj)|platyrrhine |platyrhine|platyrhinian|platyrrhinic|broadnosed +platyrrhinic|1 +(adj)|platyrrhine |platyrrhinian|platyrhine|platyrhinian|broadnosed +platysma|1 +(noun)|facial muscle +platystemon|1 +(noun)|Platystemon|genus Platystemon|dilleniid dicot genus +platystemon californicus|1 +(noun)|creamcups|Platystemon californicus|poppy +plaudit|1 +(noun)|acclaim|acclamation|plaudits|eclat|approval|commendation +plaudits|2 +(noun)|acclaim|acclamation|plaudit|eclat|approval|commendation +(noun)|acclaim|acclamation|plaudit|eclat|approval|commendation +plausibility|1 +(noun)|plausibleness|credibility|credibleness|believability +plausible|4 +(adj)|plausible |arguable|glib|pat|slick|credible|believable +(adj)|probable |likely|presumed|presumptive|verisimilar|equiprobable +(adj)|likely|credible |believable +(adj)|credible|convincing +plausibleness|1 +(noun)|plausibility|credibility|credibleness|believability +plausibly|1 +(adv)|credibly|believably|probably +plausive|1 +(adj)|approving|approbative|approbatory|favorable |favourable +plautus|2 +(noun)|Plautus|Titus Maccius Plautus|dramatist|playwright +(noun)|Plautus|genus Plautus|bird genus +plautus alle|1 +(noun)|little auk|dovekie|Plautus alle|auk +plavix|1 +(noun)|clopidogrel bisulfate|Plavix|medicine|medication|medicament|medicinal drug +play|50 +(noun)|drama|dramatic play|dramatic composition|dramatic work +(noun)|show +(noun)|plan of action +(noun)|maneuver|manoeuvre|motion|movement|move +(noun)|action|activity|activeness +(noun)|use|usage|utilization|utilisation|employment|exercise +(noun)|bid|attempt|effort|endeavor|endeavour|try +(noun)|child's play|diversion|recreation +(noun)|playing period|period of play|measure|quantity|amount +(noun)|free rein|freedom +(noun)|shimmer|change|alteration|modification +(noun)|fun|sport|wit|humor|humour|witticism|wittiness +(noun)|looseness|movability|movableness +(noun)|frolic|romp|gambol|caper|diversion|recreation +(noun)|gambling|gaming|diversion|recreation|vice +(noun)|turn|activity +(noun)|swordplay|action +(verb)|compete|vie|contend|play out +(verb)|act|move +(verb)|perform +(verb)|act|represent|re-create +(verb)|act +(verb)|spiel|re-create +(verb)|sound +(verb)|act|act as|act|behave|do +(verb)|travel|go|move|locomote +(verb)|gamble +(verb)|recreate +(verb)|simulate|assume|sham|feign +(verb)|sound +(verb)|perform +(verb)|deploy +(verb)|toy|act|behave|do +(verb)|act|move +(verb)|run +(verb)|toy|fiddle|diddle|manipulate +(verb)|exploit|work +(verb)|dally|trifle|consider|take|deal|look at +(verb)|dally|toy|flirt|act|move +(verb)|move|displace +(verb)|act|roleplay|playact|perform +(verb)|bring|work|wreak|make for|make|create +(verb)|discharge +(verb)|bet|wager +(verb)|bet|wager|gamble +(verb)|hit +(verb)|use|utilize|utilise|apply|employ +(verb)|use|utilize|utilise|apply|employ +(verb)|meet|encounter|take on +(verb)|exhaust|wash up|beat|tucker|tucker out +play-actor|2 +(noun)|barnstormer|playactor|trouper|actor|histrion|player|thespian|role player +(noun)| +play-box|2 +(noun)|playbox|box +(noun)| +play a joke on|1 +(verb)|hoax|pull someone's leg|deceive|lead on|delude|cozen +play a trick on|1 +(verb)|trick|fob|fox|pull a fast one on|deceive|lead on|delude|cozen +play along|2 +(verb)|go along|collaborate|join forces|cooperate|get together +(verb)|accompany|follow|play +play around|2 +(verb)|fool around|cheat on|cheat|cuckold|betray|wander +(verb)|dabble|smatter|busy|occupy +play back|1 +(verb)|replay|reproduce +play down|1 +(verb)|background|downplay|stress|emphasize|emphasise|punctuate|accent|accentuate +play false|1 +(verb)|bamboozle|snow|hoodwink|pull the wool over someone's eyes|lead by the nose|deceive|betray|lead astray +play group|1 +(noun)|playschool|preschool +play hooky|1 +(verb)|bunk off|cut|skip +play it by ear|1 +(verb)|act|move +play list|2 +(noun)|playlist|list|listing +(noun)| +play off|1 +(verb)|pit|oppose|match|confront|face +play out|4 +(verb)|run down|exhaust|sap|tire|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|perform +(verb)|play +(verb)|change +play possum|1 +(verb)|feign|sham|pretend|affect|dissemble +play reading|1 +(noun)|performance|public presentation +play therapy|1 +(noun)|psychotherapy +play up|2 +(verb)|foreground|highlight|spotlight|bring out|set off +(verb)|cozy up|cotton up|shine up|sidle up|suck up|ingratiate +playable|1 +(adj)|playable +playact|1 +(verb)|act|play|roleplay|perform +playacting|1 +(noun)|acting|playing|performing|activity|performing arts +playactor|1 +(noun)|barnstormer|play-actor|trouper|actor|histrion|player|thespian|role player +playback|2 +(noun)|sound reproduction +(noun)|electronic equipment +playbill|1 +(noun)|bill|program|programme +playbook|3 +(noun)|notebook +(noun)|book +(noun)|scheme|strategy +playbox|1 +(noun)|play-box|box +playboy|1 +(noun)|man-about-town|Corinthian|hedonist|pleasure seeker +playday|1 +(noun)|playtime|leisure|leisure time +played|1 +(adj)|compete|vie|contend +played out|2 +(adj)|exhausted|dog-tired|fagged|fatigued|spent|washed-out|worn-out|worn out|tired +(adj)|worn +player|4 +(noun)|participant|contestant +(noun)|musician|instrumentalist|performer|performing artist +(noun)|actor|histrion|thespian|role player|performer|performing artist +(noun)|participant +player piano|1 +(noun)|mechanical piano|Pianola|piano|pianoforte|forte-piano +playfellow|1 +(noun)|playmate|companion|comrade|fellow|familiar|associate +playful|1 +(adj)|playful |coltish|frolicsome|frolicky|rollicking|sportive|devilish|rascally|roguish|elfin|elfish|elvish|impish|implike|mischievous|pixilated|prankish|puckish|kittenish|frisky|mocking|teasing|quizzical +playfulness|3 +(noun)|gaiety|levity +(noun)|fun|frivolity|frivolousness +(noun)|fun|merriment|diversion|recreation +playgoer|1 +(noun)|theatergoer|theatregoer|spectator|witness|viewer|watcher|looker +playground|2 +(noun)|resort area|vacation spot|area|country +(noun)|yard|grounds|curtilage +playground ball|1 +(noun)|softball|ball +playhouse|1 +(noun)|wendy house|plaything|toy +playing|3 +(noun)|musical performance +(noun)|action +(noun)|acting|playacting|performing|activity|performing arts +playing area|1 +(noun)|playing field|athletic field|field|tract|piece of land|piece of ground|parcel of land|parcel +playing card|1 +(noun)|card +playing field|2 +(noun)|circumstance +(noun)|athletic field|playing area|field|tract|piece of land|piece of ground|parcel of land|parcel +playing period|1 +(noun)|period of play|play|measure|quantity|amount +playlet|1 +(noun)|play|drama|dramatic play +playlist|1 +(noun)|play list|list|listing +playlobium obtusangulum|1 +(noun)|common flat pea|native holly|Playlobium obtusangulum|shrub|bush +playmate|1 +(noun)|playfellow|companion|comrade|fellow|familiar|associate +playoff|1 +(noun)|contest|competition +playoff game|1 +(noun)|game +playpen|1 +(noun)|pen|enclosure +playroom|1 +(noun)|rumpus room|game room|recreation room|rec room +playschool|1 +(noun)|play group|preschool +playscript|1 +(noun)|script|book|dramatic composition|dramatic work +playsuit|1 +(noun)|outfit|getup|rig|turnout +plaything|1 +(noun)|toy|artifact|artefact +playtime|1 +(noun)|playday|leisure|leisure time +playwright|1 +(noun)|dramatist|writer|author +plaza|2 +(noun)|place|piazza|public square|square +(noun)|mall|center|shopping mall|shopping center|shopping centre|mercantile establishment|retail store|sales outlet|outlet +plea|3 +(noun)|supplication|entreaty|prayer|appeal +(noun)|answer +(noun)|due process|due process of law +plea-bargain|1 +(verb)|agree +plea bargain|1 +(noun)|plea bargaining|bargaining +plea bargaining|1 +(noun)|plea bargain|bargaining +plea of insanity|1 +(noun)|insanity plea|plea +pleach|2 +(verb)|braid|weave|interweave +(verb)|plash|intertwine|twine|entwine|enlace|interlace|lace +plead|4 +(verb)|appeal|invoke +(verb)|apologize|apologise|excuse|justify|rationalize|rationalise +(verb)|declare +(verb)|allege|aver|say +pleader|1 +(noun)|advocate|counsel|counselor|counsellor|counselor-at-law|lawyer|attorney +pleading|2 +(adj)|appealing|imploring|importunate|beseeching +(noun)|statement +pleading in the alternative|1 +(noun)|alternative pleading|pleading +pleadingly|1 +(adv)|beseechingly|importunately|imploringly|entreatingly +pleasance|2 +(noun)|retreat +(noun)|pleasure|feeling +pleasant|2 +(adj)|pleasant |dulcet|enjoyable|gratifying|pleasurable|fine|grateful|idyllic|pastoral|beautiful|good-natured|nice|pleasing +(adj)|nice +pleasant-tasting|1 +(adj)|delectable|delicious|luscious|scrumptious|toothsome|yummy|tasteful +pleasant island|1 +(noun)|Nauru|Nauru Island|Pleasant Island|island +pleasantly|2 +(adv)|cheerily|sunnily +(adv)|agreeably|enjoyably +pleasantness|2 +(noun)|pleasure|pleasance +(noun)|sweetness|quality +pleasantry|1 +(noun)|jest|joke|jocularity +please|3 +(verb)|delight|satisfy|gratify +(verb)|wish|care|like +(verb)|satisfy|gratify +pleased|3 +(adj)|pleased |amused|diverted|entertained|bucked up|encouraged|chuffed|delighted|gratified|contented|content +(adj)|proud of|proud +(adj)|happy|glad +pleaser|1 +(noun)|entertainer +pleasing|5 +(adj)|pleasing |admirable|charming|delightful|delicious|disarming|easy|fabulous|fab|good|gratifying|sweet|ingratiating|sweet|attractive|beautiful|humorous|humourous|pleasant +(adj)|aesthetic|esthetic|artistic|tasteful +(adj)|appreciated|gratifying|satisfying|rewarding +(adj)|favorable |favourable +(noun)|gratification +pleasingness|2 +(noun)|tastiness|palatability|palatableness +(noun)|beauty +pleasurable|1 +(adj)|enjoyable|gratifying|pleasant +pleasurably|1 +(adv)|deliciously +pleasure|5 +(noun)|pleasance|feeling +(noun)|joy|delight|positive stimulus +(noun)|choice|pick|selection +(noun)|activity +(noun)|sexual activity|sexual practice|sex|sex activity +pleasure-pain principle|1 +(noun)|pleasure principle|pleasure-unpleasure principle|principle +pleasure-unpleasure principle|1 +(noun)|pleasure principle|pleasure-pain principle|principle +pleasure boat|1 +(noun)|cabin cruiser|cruiser|pleasure craft|motorboat|powerboat +pleasure craft|1 +(noun)|cabin cruiser|cruiser|pleasure boat|motorboat|powerboat +pleasure ground|1 +(noun)|amusement park|funfair|park|commons|common|green +pleasure principle|1 +(noun)|pleasure-pain principle|pleasure-unpleasure principle|principle +pleasure seeker|1 +(noun)|hedonist|sensualist +pleasure trip|1 +(noun)|excursion|jaunt|outing|junket|expedition|sashay|journey|journeying +pleat|3 +(noun)|plait|fold|crease|plication|flexure|crimp|bend +(verb)|ruffle|fold|fold up|turn up +(verb)|plicate|fold|fold up|turn up +pleated|1 +(adj)|folded +pleating|1 +(noun)|plication|fold|folding +pleb|1 +(noun)|plebeian|commoner|common man|common person +plebe|1 +(noun)|cadet|trainee +plebeian|3 +(adj)|plebeian |middle-class +(adj)|common|vulgar|unwashed|lowborn +(noun)|pleb|commoner|common man|common person +plebiscite|1 +(noun)|vote +plecoptera|1 +(noun)|Plecoptera|order Plecoptera|animal order +plecopteran|1 +(noun)|stonefly|stone fly|insect +plecotus|1 +(noun)|Plecotus|genus Plecotus|mammal genus +plecotus townsendi|1 +(noun)|western big-eared bat|Plecotus townsendi|long-eared bat +plectania|1 +(noun)|Plectania|genus Plectania|fungus genus +plectognath|1 +(noun)|plectognath fish|spiny-finned fish|acanthopterygian +plectognath fish|1 +(noun)|plectognath|spiny-finned fish|acanthopterygian +plectognathi|1 +(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order +plectomycetes|1 +(noun)|Plectomycetes|class Plectomycetes|class +plectophera|1 +(noun)|Plectophera|ephemerid|ephemeropteran +plectorrhiza|1 +(noun)|Plectorrhiza|genus Plectorrhiza|monocot genus|liliopsid genus +plectranthus|1 +(noun)|houseplant +plectranthus amboinicus|1 +(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus|flame nettle +plectron|1 +(noun)|pick|plectrum|device +plectrophenax|1 +(noun)|Plectrophenax|genus Plectrophenax|bird genus +plectrophenax nivalis|1 +(noun)|snow bunting|snowbird|snowflake|Plectrophenax nivalis|bunting +plectrum|1 +(noun)|pick|plectron|device +pledge|9 +(noun)|security interest +(noun)|member +(noun)|toast|drink +(noun)|assurance|commitment|dedication +(verb)|plight|promise|assure +(verb)|subscribe|donate +(verb)|toast|drink|salute|wassail|honor|honour|reward +(verb)|consign|charge +(verb)|oblige|bind|hold|obligate +pledge taker|1 +(noun)|volunteer|unpaid worker +pledged|2 +(adj)|sworn|committed +(adj)|affianced|bespoken|betrothed|engaged|attached |committed +pledgee|1 +(noun)|adult|grownup +pledger|1 +(noun)|adult|grownup +pleiades|2 +(noun)|Pleiades|nymph +(noun)|Pleiades|bunch|clump|cluster|clustering +pleione|1 +(noun)|Pleione|genus Pleione|monocot genus|liliopsid genus +pleiospilos|1 +(noun)|Pleiospilos|genus Pleiospilos|caryophylloid dicot genus +pleistocene|1 +(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch +pleistocene epoch|1 +(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch +plenary|1 +(adj)|comprehensive +plenipotentiary|1 +(noun)|diplomat|diplomatist +plenitude|1 +(noun)|plenty|plentifulness|plenteousness|plentitude|abundance|copiousness|teemingness +plenteous|1 +(adj)|ample|copious|plentiful|rich|abundant +plenteously|1 +(adv)|bountifully|bounteously|plentifully +plenteousness|1 +(noun)|plenty|plentifulness|plenitude|plentitude|abundance|copiousness|teemingness +plentiful|3 +(adj)|abundant +(adj)|ample|copious|plenteous|rich|abundant +(adj)|bountiful|fruitful +plentifully|1 +(adv)|bountifully|bounteously|plenteously +plentifulness|1 +(noun)|plenty|plenteousness|plenitude|plentitude|abundance|copiousness|teemingness +plentitude|1 +(noun)|plenty|plentifulness|plenteousness|plenitude|abundance|copiousness|teemingness +plenty|3 +(noun)|plentifulness|plenteousness|plenitude|plentitude|abundance|copiousness|teemingness +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(adv)|enough +plenum|2 +(noun)|meeting +(noun)|enclosure +pleochroic|1 +(adj)|optical phenomenon +pleochroism|1 +(noun)|optical phenomenon +pleomorphic|1 +(adj)|organic phenomenon +pleomorphic rhabdomyosarcoma|1 +(noun)|pleomorphic rhabdosarcoma|rhabdomyosarcoma|rhabdosarcoma +pleomorphic rhabdosarcoma|1 +(noun)|pleomorphic rhabdomyosarcoma|rhabdomyosarcoma|rhabdosarcoma +pleomorphism|2 +(noun)|polymorphism|chemical phenomenon +(noun)|organic phenomenon +pleonasm|1 +(noun)|verboseness|verbosity +pleonaste|1 +(noun)|Ceylonite|spinel +pleonastic|1 +(adj)|redundant|tautologic|tautological|prolix +pleopod|1 +(noun)|swimmeret|extremity|appendage|member +plesianthropus|1 +(noun)|Plesianthropus|genus Plesianthropus|mammal genus +plesiosaur|1 +(noun)|plesiosaurus|archosaur|archosaurian|archosaurian reptile +plesiosauria|1 +(noun)|Plesiosauria|suborder Plesiosauria|animal order +plesiosaurus|1 +(noun)|plesiosaur|archosaur|archosaurian|archosaurian reptile +plessimeter|1 +(noun)|pleximeter|plate +plessor|1 +(noun)|plexor|percussor|hammer +plethodon|1 +(noun)|Plethodon|genus Plethodon|amphibian genus +plethodon cinereus|1 +(noun)|eastern red-backed salamander|Plethodon cinereus|salamander +plethodon vehiculum|1 +(noun)|western red-backed salamander|Plethodon vehiculum|salamander +plethodont|1 +(noun)|lungless salamander|salamander +plethodontidae|1 +(noun)|Plethodontidae|family Plethodontidae|amphibian family +plethora|1 +(noun)|overplus|superfluity|embarrassment|excess|excessiveness|inordinateness +plethoric|1 +(adj)|overabundant|rife|abundant +plethysmograph|1 +(noun)|measuring instrument|measuring system|measuring device +pleura|1 +(noun)|serous membrane|serosa +pleural|1 +(adj)|serous membrane|serosa +pleural cavity|1 +(noun)|cavity|bodily cavity|cavum +pleural space|1 +(noun)|space +pleuralgia|1 +(noun)|pleurodynia|costalgia|pain|hurting +pleurisy|1 +(noun)|inflammatory disease +pleurisy root|1 +(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +pleurobrachia|1 +(noun)|Pleurobrachia|genus Pleurobrachia|ctenophore genus +pleurobrachiidae|1 +(noun)|Pleurobrachiidae|family Pleurobrachiidae|ctenophore family +pleurocarp|1 +(noun)|pleurocarpous moss|moss +pleurocarpous|1 +(adj)|pleurocarpous +pleurocarpous moss|1 +(noun)|pleurocarp|moss +pleurodont|1 +(noun)|animal|animate being|beast|brute|creature|fauna +pleurodynia|1 +(noun)|pleuralgia|costalgia|pain|hurting +pleuronectes|1 +(noun)|Pleuronectes|genus Pleuronectes|fish genus +pleuronectes platessa|1 +(noun)|plaice|Pleuronectes platessa|righteye flounder|righteyed flounder +pleuronectidae|1 +(noun)|Pleuronectidae|family Pleuronectidae|fish family +pleuropneumonia|1 +(noun)|pleurisy|pneumonia +pleuropneumonialike organism|1 +(noun)|PPLO|mycoplasma +pleurosorus|1 +(noun)|Pleurosorus|genus Pleurosorus|fern genus +pleurothallis|1 +(noun)|orchid|orchidaceous plant +pleurotus|1 +(noun)|Pleurotus|genus Pleurotus|fungus genus +pleurotus ostreatus|1 +(noun)|oyster mushroom|oyster fungus|oyster agaric|Pleurotus ostreatus|agaric +pleurotus phosphoreus|1 +(noun)|olive-tree agaric|Pleurotus phosphoreus|agaric +pleven|1 +(noun)|Plevna|Pleven|siege|besieging|beleaguering|military blockade +plevna|1 +(noun)|Plevna|Pleven|siege|besieging|beleaguering|military blockade +plexiglas|1 +(noun)|Plexiglas|plexiglass|polymethyl methacrylate +plexiglass|1 +(noun)|Plexiglas|polymethyl methacrylate +pleximeter|1 +(noun)|plessimeter|plate +pleximetry|1 +(noun)|percussion|auscultation +plexor|1 +(noun)|plessor|percussor|hammer +plexus|1 +(noun)|rete|structure|anatomical structure|complex body part|bodily structure|body structure +plexus autonomici|1 +(noun)|autonomic plexus|nerve plexus +plexus brachialis|1 +(noun)|brachial plexus|nerve plexus +plexus cardiacus|1 +(noun)|cardiac plexus|nerve plexus +plexus caroticus|1 +(noun)|carotid plexus|nerve plexus +plexus celiacus|1 +(noun)|solar plexus|coeliac plexus|abdominal nerve plexus|nerve plexus +plexus cervicalis|1 +(noun)|cervical plexus|nerve plexus +plexus choroideus|1 +(noun)|choroid plexus|plexus|rete +plexus coccygeus|1 +(noun)|coccygeal plexus|nerve plexus +plexus dentalis|1 +(noun)|nerve plexus +plexus hypogastricus|1 +(noun)|hypogastric plexus|nerve plexus +plexus lumbalis|2 +(noun)|lumbar plexus|plexus|rete +(noun)|lumbar plexus|nerve plexus +plexus mesentericus|1 +(noun)|mesenteric plexus|nerve plexus +plexus myentericus|1 +(noun)|myenteric plexus|nerve plexus +plexus periarterialis|1 +(noun)|periarterial plexus|nerve plexus +plexus pulmonalis|1 +(noun)|pulmonary plexis|nerve plexus +plexus sacralis|1 +(noun)|sacral plexus|nerve plexus +plf|1 +(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization|terrorist group|foreign terrorist organization|FTO +pliability|2 +(noun)|bendability|flexibility|flexibleness +(noun)|pliancy|pliantness|adaptability +pliable|4 +(adj)|fictile|susceptible +(adj)|elastic|flexible|pliant|adaptable +(adj)|bendable|pliant|flexible |flexile +(adj)|ductile|malleable|pliant|tensile|tractile|elastic +pliancy|2 +(noun)|pliantness|suppleness|bendability|pliability +(noun)|pliability|pliantness|adaptability +pliant|4 +(adj)|plastic|impressionable |impressible +(adj)|elastic|flexible|pliable|adaptable +(adj)|bendable|pliable|flexible |flexile +(adj)|ductile|malleable|pliable|tensile|tractile|elastic +pliantness|2 +(noun)|pliancy|suppleness|bendability|pliability +(noun)|pliability|pliancy|adaptability +plica|1 +(noun)|fold|structure|anatomical structure|complex body part|bodily structure|body structure +plica vocalis|1 +(noun)|vocal cord|vocal fold|vocal band|fold|plica +plicate|2 +(adj)|accordion|folded +(verb)|pleat|fold|fold up|turn up +plication|2 +(noun)|fold|crease|flexure|crimp|bend|angular shape|angularity +(noun)|pleating|fold|folding +plicatoperipatus|1 +(noun)|Plicatoperipatus|genus Plicatoperipatus|arthropod genus +plicatoperipatus jamaicensis|1 +(noun)|Plicatoperipatus jamaicensis|onychophoran|velvet worm|peripatus +plier|1 +(noun)|plyer|worker +pliers|2 +(noun)|pair of pliers|plyers|hand tool|compound lever +(noun)|plier|plyer|worker +plight|4 +(noun)|predicament|quandary|difficulty +(noun)|troth|assurance|pledge +(verb)|betroth|engage|affiance|vow +(verb)|pledge|promise|assure +plimsoll|2 +(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline|water line|water level +(noun)|gym shoe|sneaker|tennis shoe +plimsoll line|1 +(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline|water line|water level +plimsoll mark|1 +(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline|water line|water level +plinian eruption|1 +(noun)|Plinian eruption|volcanic eruption|eruption +plinth|1 +(noun)|pedestal|footstall|support +pliny|2 +(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer|author +(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer|author +pliny the elder|1 +(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer|author +pliny the younger|1 +(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer|author +pliocene|1 +(noun)|Pliocene|Pliocene epoch|epoch +pliocene epoch|1 +(noun)|Pliocene|Pliocene epoch|epoch +plo|1 +(noun)|Palestine Liberation Organization|PLO|political movement +ploce|1 +(noun)|repetition +ploceidae|1 +(noun)|Ploceidae|family Ploceidae|bird family +ploceus|1 +(noun)|Ploceus|genus Ploceus|bird genus +ploceus philippinus|1 +(noun)|baya|Ploceus philippinus|weaver|weaverbird|weaver finch +plod|1 +(verb)|slog|footslog|trudge|pad|tramp|walk +plodder|3 +(noun)|trudger|slogger|pedestrian|walker|footer +(noun)|slogger|hack|drudge|hacker +(noun)|slowpoke|stick-in-the-mud|slowcoach|dawdler|drone|laggard|lagger|trailer +plodding|3 +(adj)|leaden|effortful +(noun)|drudgery|grind|donkeywork|labor|labour|toil +(noun)|walk|walking +plonk|3 +(noun)|wine|vino +(noun)|noise +(verb)|plank|flump|plop|plunk|plump down|plunk down|plump|set down|put down|place down +plonk down|1 +(verb)|plump down|plank down|drop +plop|5 +(noun)|noise +(verb)|drop +(verb)|descend|fall|go down|come down +(verb)|plank|flump|plonk|plunk|plump down|plunk down|plump|set down|put down|place down +(adv)|plunk +plosion|1 +(noun)|explosion|release|tone ending +plosive|2 +(adj)|hard +(noun)|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|consonant +plosive consonant|1 +(noun)|stop consonant|stop|occlusive|plosive speech sound|plosive|consonant +plosive speech sound|1 +(noun)|stop consonant|stop|occlusive|plosive consonant|plosive|consonant +plot|7 +(noun)|secret plan|game|scheme|strategy +(noun)|plot of ground|patch|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|story +(noun)|chart +(verb)|plan +(verb)|diagram|draw +(verb)|plat|map +plot line|1 +(noun)|storyline|plot +plot of ground|1 +(noun)|plot|patch|tract|piece of land|piece of ground|parcel of land|parcel +plotinus|1 +(noun)|Plotinus|philosopher +plott hound|1 +(noun)|Plott hound|hound|hound dog +plotted|1 +(adj)|aforethought|planned|premeditated +plotter|4 +(noun)|schemer|planner|contriver|deviser +(noun)|mapper|clerk +(noun)|conspirator|coconspirator|machinator|criminal|felon|crook|outlaw|malefactor +(noun)|instrument +plough|4 +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|plow|tool +(verb)|plow|travel|go|move|locomote +(verb)|plow|turn|till +plough horse|1 +(noun)|plow horse|workhorse +plough on|1 +(verb)|press on|push on|advance|progress|pass on|move on|march on|go on +ploughboy|1 +(noun)|plowboy|male child|boy +ploughed|1 +(adj)|plowed |tilled +ploughing|1 +(noun)|plowing|tilling +ploughland|1 +(noun)|cultivated land|farmland|plowland|tilled land|tillage|tilth|land|ground|soil +ploughman|1 +(noun)|plowman|plower|farmhand|fieldhand|field hand|farm worker +ploughman's lunch|1 +(noun)|meal|repast +ploughshare|1 +(noun)|plowshare|share|wedge +ploughwright|1 +(noun)|plowwright|wright +plovdiv|1 +(noun)|Plovdiv|Philippopolis|city|metropolis|urban center +plover|1 +(noun)|shorebird|shore bird|limicoline bird +plow|4 +(noun)|plough|tool +(verb)|plough|turn|till +(verb)|cover|treat|handle|deal|address|broach|initiate +(verb)|plough|travel|go|move|locomote +plow ahead|1 +(verb)|go ahead|act|move +plow horse|1 +(noun)|plough horse|workhorse +plowboy|1 +(noun)|ploughboy|male child|boy +plowed|1 +(adj)|plowed |ploughed|tilled +plower|1 +(noun)|plowman|ploughman|farmhand|fieldhand|field hand|farm worker +plowing|1 +(noun)|ploughing|tilling +plowland|1 +(noun)|cultivated land|farmland|ploughland|tilled land|tillage|tilth|land|ground|soil +plowman|1 +(noun)|ploughman|plower|farmhand|fieldhand|field hand|farm worker +plowshare|1 +(noun)|ploughshare|share|wedge +plowwright|1 +(noun)|ploughwright|wright +ploy|2 +(noun)|gambit|remark|comment +(noun)|gambit|stratagem|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +ployurethan|1 +(noun)|polyurethane|polymer +pluck|8 +(noun)|gutsiness|pluckiness|fearlessness +(noun)|pull|pulling +(verb)|tweak|pull off|pick off|pull|draw|force +(verb)|hustle|roll|steal +(verb)|overcharge|soak|surcharge|gazump|fleece|plume|rob|hook|cheat|rip off|chisel +(verb)|plunk|pick|pull|draw|force +(verb)|pull|tear|deplume|deplumate|displume|strip +(verb)|pick|cull|gather|garner|collect|pull together +pluck at|1 +(verb)|pick at|pull at|pull +plucked|2 +(adj)|plucked |pizzicato +(adj)|unfeathered |featherless +pluckiness|1 +(noun)|gutsiness|pluck|fearlessness +plucky|2 +(adj)|feisty|spunky|spirited +(adj)|gutsy +pluferfect tense|1 +(noun)|past perfect|past perfect tense|pluperfect|perfective|perfective tense|perfect|perfect tense +plug|11 +(noun)|stopper|stopple|blockage|block|closure|occlusion|stop|stoppage +(noun)|chew|chaw|cud|quid|wad|morsel|bit|bite +(noun)|ballyhoo|hoopla|hype|promotion|publicity|promotional material|packaging +(noun)|spark plug|sparking plug|electrical device +(noun)|male plug|electrical device +(noun)|fireplug|fire hydrant|hydrant +(noun)|hack|jade|nag|horse|Equus caballus +(verb)|stop up|secure|close|fill up +(verb)|plug away|persevere|persist|hang in|hang on|hold on +(verb)|punch|hit +(verb)|advertise|advertize|promote|push +plug-ugly|1 +(noun)|tough guy|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +plug away|2 +(verb)|peg away|slog|keep one's nose to the grindstone|keep one's shoulder to the wheel|work +(verb)|plug|persevere|persist|hang in|hang on|hold on +plug fuse|1 +(noun)|fuse|electrical fuse +plug hat|1 +(noun)|bowler hat|bowler|derby|hat|chapeau|lid +plug in|1 +(verb)|connect|insert|infix|enter|introduce +plugboard|1 +(noun)|switchboard|patchboard|central|telephone exchange|exchange +plugged|1 +(adj)|blocked|obstructed +plugger|1 +(noun)|promoter|booster|advertiser|advertizer|adman +plughole|1 +(noun)|hole +plum|4 +(noun)|plum tree|fruit tree +(noun)|edible fruit|drupe|stone fruit +(adv)|plumb +(adv)|clean|plumb +plum-fruited yew|1 +(noun)|Prumnopitys andina|Prumnopitys elegans|conifer|coniferous tree +plum-yew|1 +(noun)|conifer|coniferous tree +plum-yew family|1 +(noun)|Cephalotaxaceae|family Cephalotaxaceae|gymnosperm family +plum pudding|1 +(noun)|Christmas pudding|pudding +plum sauce|1 +(noun)|sauce +plum tomato|2 +(noun)|cherry tomato|Lycopersicon esculentum cerasiforme +(noun)|cherry tomato +plum tree|1 +(noun)|plum|fruit tree +plumage|1 +(noun)|feather|plume|body covering|animal material +plumaged|1 +(adj)|feathered +plumate|1 +(adj)|plumed|plumose|feathered +plumb|8 +(adj)|vertical |perpendicular +(noun)|plumb bob|plummet|bob +(verb)|quantify|measure +(verb)|burden|burthen|weight|weight down +(verb)|explore +(verb)|adjust|set|correct +(adv)|clean|plum +(adv)|plum +plumb bob|1 +(noun)|plumb|plummet|bob +plumb level|1 +(noun)|carpenter's level +plumb line|1 +(noun)|perpendicular|cord +plumb rule|1 +(noun)|plumb line|perpendicular +plumbable|1 +(adj)|soundable|fathomable +plumbaginaceae|1 +(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|sea-lavender family|dicot family|magnoliopsid family +plumbaginaceous|1 +(adj)|dicot family|magnoliopsid family +plumbaginales|1 +(noun)|Plumbaginales|order Plumbaginales|plant order +plumbago|2 +(noun)|graphite|black lead|carbon|C|atomic number 6 +(noun)|herb|herbaceous plant +plumbago europaea|1 +(noun)|leadwort|Plumbago europaea|shrub|bush +plumbed|1 +(adj)|sounded|measured +plumber|1 +(noun)|pipe fitter|craftsman|artisan|journeyman|artificer +plumber's helper|1 +(noun)|plunger|hand tool +plumber's snake|1 +(noun)|auger|snake|hand tool +plumbery|1 +(noun)|plumbing|trade|craft +plumbic|1 +(adj)|plumbous|metallic element|metal +plumbing|3 +(noun)|plumbing system|utility +(noun)|plumbery|trade|craft +(noun)|bathymetry|measurement|measuring|measure|mensuration +plumbing fixture|1 +(noun)|fixture +plumbing system|1 +(noun)|plumbing|utility +plumbism|1 +(noun)|lead poisoning|saturnism|illness|unwellness|malady|sickness +plumbous|1 +(adj)|plumbic|metallic element|metal +plumcot|2 +(noun)|plumcot tree|fruit tree +(noun)|edible fruit +plumcot tree|1 +(noun)|plumcot|fruit tree +plume|8 +(noun)|adornment +(noun)|feather|plumage|body covering|animal material +(verb)|overcharge|soak|surcharge|gazump|fleece|pluck|rob|hook|cheat|rip off|chisel +(verb)|pride|congratulate|feel|experience +(verb)|deck|bedight|bedeck +(verb)|preen|arrange|set up|clean|make clean +(verb)|shape|form +(verb)|preen|primp|dress|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +plume grass|1 +(noun)|grass +plume poppy|1 +(noun)|bocconia|Macleaya cordata|poppy +plume thistle|1 +(noun)|plumed thistle|thistle +plumed|3 +(adj)|plumy|feathered +(adj)|plumate|plumose|feathered +(adj)|crested|adorned |decorated +plumed scorpionfish|1 +(noun)|Scorpaena grandicornis|scorpionfish|scorpion fish|sea scorpion +plumed thistle|1 +(noun)|plume thistle|thistle +plumed tussock|1 +(noun)|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass +plumelike|1 +(adj)|plumy|feathered +plumeria|1 +(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus|magnoliopsid genus +plumeria acutifolia|1 +(noun)|pagoda tree|temple tree|Plumeria acutifolia|frangipani|frangipanni +plumeria alba|1 +(noun)|West Indian jasmine|pagoda tree|Plumeria alba|frangipani|frangipanni +plumiera|1 +(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus|magnoliopsid genus +plumlike|1 +(adj)|rounded +plummet|2 +(noun)|plumb bob|plumb|bob +(verb)|plump|drop +plummy|2 +(adj)|desirable +(adj)|affected |unnatural +plumose|1 +(adj)|plumate|plumed|feathered +plump|6 +(adj)|buxom|chubby|embonpoint|zaftig|zoftig|fat +(noun)|noise +(verb)|plummet|drop +(verb)|plank|flump|plonk|plop|plunk|plump down|plunk down|set down|put down|place down +(verb)|fatten|fat|flesh out|fill out|plump out|fatten out|fatten up|change|alter|modify +(verb)|go|choose|take|select|pick out +plump down|2 +(verb)|plonk down|plank down|drop +(verb)|plank|flump|plonk|plop|plunk|plunk down|plump|set down|put down|place down +plump for|1 +(verb)|back|endorse|indorse|plunk for|support|approve|O.K.|okay|sanction +plump in|1 +(verb)|arrive|get|come +plump out|2 +(verb)|depart|take leave|quit +(verb)|fatten|fat|flesh out|fill out|plump|fatten out|fatten up|change|alter|modify +plump up|1 +(verb)|fluff up|shake up|shake|agitate +plumping|1 +(adj)|large +plumpness|1 +(noun)|embonpoint|fleshiness|obesity +plumule|1 +(noun)|down|down feather +plumy|3 +(adj)|plumelike|feathered +(adj)|plumed|feathered +(adj)|feathery|feathered|adorned |decorated +plunder|5 +(noun)|loot|booty|pillage|prize|swag|dirty money|stolen property +(verb)|loot|steal +(verb)|sack|take +(verb)|despoil|loot|reave|strip|rifle|ransack|pillage|foray|take +(verb)|rape|spoil|despoil|violate|destroy|ruin +plunderage|1 +(noun)|embezzlement|peculation|defalcation|misapplication|misappropriation +plundered|1 +(adj)|looted|pillaged|ransacked|empty +plunderer|1 +(noun)|pillager|looter|spoiler|despoiler|raider|freebooter|thief|stealer +plundering|2 +(adj)|acquisitive +(noun)|pillage|pillaging|aggression|hostility +plunge|10 +(noun)|dip|swimming|swim +(noun)|drop|fall +(verb)|immerse|penetrate|perforate +(verb)|dive|plunk|descend|fall|go down|come down +(verb)|dart|dash|scoot|scud|flash|shoot +(verb)|launch|get down|begin|get|start out|start|set about|set out|commence +(verb)|immerse +(verb)|dump|drop +(verb)|dunk|dip|souse|douse|immerse +(verb)|steep|immerse|engulf|engross|absorb|soak up|concentrate|focus|center|centre|pore|rivet +plunger|4 +(noun)|speculator|adventurer|venturer|gambler +(noun)|diver|swimmer +(noun)|plumber's helper|hand tool +(noun)|piston|mechanical device +plunk|7 +(noun)|sound +(noun)|plunker|hit|hitting|striking +(verb)|clop|clump|clunk|sound|go +(verb)|plank|flump|plonk|plop|plump down|plunk down|plump|set down|put down|place down +(verb)|dive|plunge|descend|fall|go down|come down +(verb)|pluck|pick|pull|draw|force +(adv)|plop +plunk down|1 +(verb)|plank|flump|plonk|plop|plunk|plump down|plump|set down|put down|place down +plunk for|1 +(verb)|back|endorse|indorse|plump for|support|approve|O.K.|okay|sanction +plunker|1 +(noun)|plunk|hit|hitting|striking +pluperfect|2 +(adj)|perfect +(noun)|past perfect|past perfect tense|pluferfect tense|perfective|perfective tense|perfect|perfect tense +plural|2 +(adj)|plural |dual +(noun)|plural form|form|word form|signifier|descriptor +plural form|1 +(noun)|plural|form|word form|signifier|descriptor +pluralism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +pluralist|2 +(noun)|philosopher +(noun)|liberal|progressive +pluralistic|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +plurality|3 +(noun)|state +(noun)|battalion|large number|multitude|pack|large indefinite quantity|large indefinite amount +(noun)|relative majority|relative quantity +plus|4 +(adj)|plus |positive|nonnegative +(adj)|positive|advantageous +(noun)|asset|quality +(noun)|summation|addition|arithmetic operation +plus fours|1 +(noun)|breeches|knee breeches|knee pants|knickerbockers|knickers +plus sign|1 +(noun)|sign +plush|2 +(adj)|lavish|lucullan|lush|plushy|rich +(noun)|fabric|cloth|material|textile +plushy|1 +(adj)|lavish|lucullan|lush|plush|rich +plutarch|1 +(noun)|Plutarch|biographer +pluteaceae|1 +(noun)|Pluteaceae|family Pluteaceae|fungus family +pluteus|1 +(noun)|Pluteus|genus Pluteus|roof mushroom|fungus genus +pluteus aurantiorugosus|1 +(noun)|Pluteus aurantiorugosus|agaric +pluteus cervinus|1 +(noun)|deer mushroom|Pluteus cervinus|agaric +pluteus magnus|1 +(noun)|Pluteus magnus|swadust mushroom|agaric +pluto|3 +(noun)|Pluto|fictional character|fictitious character|character +(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity +(noun)|Pluto|superior planet +plutocracy|1 +(noun)|political system|form of government +plutocrat|1 +(noun)|rich person|wealthy person|have +plutocratic|1 +(adj)|plutocratical|rich person|wealthy person|have +plutocratical|1 +(adj)|plutocratic|rich person|wealthy person|have +pluton|1 +(noun)|batholith|batholite|plutonic rock|igneous rock +plutonian|1 +(adj)|Hadean|Plutonian|Tartarean|infernal +plutonic|1 +(adj)|irruptive|eruptive|intrusive +plutonic rock|1 +(noun)|batholith|batholite|pluton|igneous rock +plutonium|1 +(noun)|Pu|atomic number 94|chemical element|element +plutonium 239|1 +(noun)|plutonium|Pu|atomic number 94 +plutonium bomb|1 +(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|nuclear weapon|bomb +plutonium pit|1 +(noun)|plutonium trigger|trigger +plutonium trigger|1 +(noun)|plutonium pit|trigger +pluvial|1 +(adj)|rainy|pluvious|inclement +pluvialis|1 +(noun)|Pluvialis|genus Pluvialis|bird genus +pluvianus|1 +(noun)|Pluvianus|genus Pluvianus|bird genus +pluvianus aegyptius|1 +(noun)|crocodile bird|Pluvianus aegyptius|courser +pluviometer|1 +(noun)|rain gauge|rain gage|udometer|gauge|gage +pluviose|1 +(noun)|Pluviose|Revolutionary calendar month +pluvious|1 +(adj)|rainy|pluvial|inclement +ply|7 +(noun)|strand +(noun)|layer|bed +(verb)|provide|supply|cater|give +(verb)|do|perform +(verb)|run|travel|trip|jaunt +(verb)|wield|handle +(verb)|use|utilize|utilise|apply|employ +plyboard|1 +(noun)|plywood|laminate +plyer|1 +(noun)|plier|worker +plyers|2 +(noun)|pliers|pair of pliers|hand tool|compound lever +(noun)|plier|plyer|worker +plymouth|1 +(noun)|Plymouth|town +plymouth colony|1 +(noun)|Plymouth Colony|Plymouth|colony|settlement +plymouth rock|2 +(noun)|Plymouth Rock|boulder|bowlder +(noun)|Plymouth Rock|domestic fowl|fowl|poultry +plywood|1 +(noun)|plyboard|laminate +plzen|1 +(noun)|Pilsen|Plzen|town +pm|6 +(adj)|post meridiem|p.m.|postmeridian +(noun)|autopsy|necropsy|postmortem|PM|postmortem examination|examination|scrutiny +(noun)|promethium|Pm|atomic number 61|metallic element|metal +(noun)|Prime Minister|PM|premier|head of state|chief of state +(noun)|phase modulation|PM|modulation +(adv)|post meridiem|P.M.|PM +pms|5 +(noun)|premenstrual syndrome|PMS|syndrome +(noun)|autopsy|necropsy|postmortem|PM|postmortem examination|examination|scrutiny +(noun)|promethium|Pm|atomic number 61|metallic element|metal +(noun)|Prime Minister|PM|premier|head of state|chief of state +(noun)|phase modulation|PM|modulation +pneumatic|1 +(adj)|gas +pneumatic caisson|1 +(noun)|caisson|cofferdam|chamber +pneumatic drill|1 +(noun)|power drill +pneumatic hammer|1 +(noun)|air hammer|jackhammer|hammer|power hammer +pneumatic tire|1 +(noun)|pneumatic tyre|tire|tyre +pneumatic tyre|1 +(noun)|pneumatic tire|tire|tyre +pneumatics|1 +(noun)|mechanics +pneumatophore|1 +(noun)|root +pneumococcal|1 +(adj)|diplococcus +pneumococcal pneumonia|1 +(noun)|pneumonia +pneumococcal vaccine|1 +(noun)|Pneumovax|vaccine|vaccinum +pneumococcus|1 +(noun)|Diplococcus pneumoniae|diplococcus +pneumoconiosis|1 +(noun)|pneumonoconiosis|respiratory disease|respiratory illness|respiratory disorder +pneumocystis carinii pneumonia|1 +(noun)|pneumocytosis|pneumocystis pneumonia|interstitial plasma cell pneumonia|pneumonia +pneumocystis pneumonia|1 +(noun)|pneumocytosis|pneumocystis carinii pneumonia|interstitial plasma cell pneumonia|pneumonia +pneumocytosis|1 +(noun)|pneumocystis pneumonia|pneumocystis carinii pneumonia|interstitial plasma cell pneumonia|pneumonia +pneumoencephalogram|1 +(noun)|encephalogram|roentgenogram|X ray|X-ray picture|X-ray photograph +pneumogastric|3 +(adj)|vagal|cranial nerve +(adj)|respiratory organ|internal organ|viscus +(noun)|vagus|vagus nerve|nervus vagus|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve +pneumogastric nerve|1 +(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|tenth cranial nerve|wandering nerve|cranial nerve +pneumonectomy|1 +(noun)|ablation|extirpation|cutting out|excision +pneumonia|1 +(noun)|respiratory disease|respiratory illness|respiratory disorder +pneumonic|2 +(adj)|respiratory disease|respiratory illness|respiratory disorder +(adj)|pulmonary|pulmonic|respiratory organ +pneumonic plague|1 +(noun)|plague +pneumonitis|1 +(noun)|inflammation|redness|rubor +pneumonoconiosis|1 +(noun)|pneumoconiosis|respiratory disease|respiratory illness|respiratory disorder +pneumothorax|1 +(noun)|abnormality|abnormalcy|abnormal condition +pneumovax|1 +(noun)|pneumococcal vaccine|Pneumovax|vaccine|vaccinum +pnom penh|1 +(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital +po|4 +(noun)|polonium|Po|atomic number 84|metallic element|metal +(noun)|petty officer|PO|P.O.|noncommissioned officer|noncom +(noun)|Po|Po River|river +(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency +po-faced|1 +(adj)|humorless |humourless|unhumorous +po box no|1 +(noun)|post-office box number|PO box number|PO Box No|mailing address +po box number|1 +(noun)|post-office box number|PO box number|PO Box No|mailing address +po river|1 +(noun)|Po|Po River|river +poa|1 +(noun)|Poa|genus Poa|monocot genus|liliopsid genus +poa nemoralis|1 +(noun)|wood meadowgrass|Poa nemoralis|Agrostis alba|meadowgrass|meadow grass +poa pratensis|1 +(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass|blue grass +poaceae|1 +(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family|liliopsid family +poach|2 +(verb)|hunt|run|hunt down|track down +(verb)|cook +poached|1 +(adj)|boiled|stewed|cooked +poached egg|1 +(noun)|dropped egg|dish +poacher|3 +(noun)|appropriator +(noun)|cooking utensil|cookware|vessel +(noun)|sea poacher|sea poker|scorpaenoid|scorpaenoid fish +poaching|1 +(noun)|cooking|cookery|preparation +pob|1 +(noun)|post-office box|POB|call box|letter box|compartment +pobeda peak|1 +(noun)|Pobeda Peak|Pobedy Peak|mountain peak +pobedy peak|1 +(noun)|Pobeda Peak|Pobedy Peak|mountain peak +pocahontas|1 +(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan +pocatello|1 +(noun)|Pocatello|town +pochard|1 +(noun)|Aythya ferina|duck +pock|2 +(noun)|pustule +(verb)|scar|mark|pit|deface|disfigure|blemish +pocked|2 +(adj)|pockmarked|potholed|rough |unsmooth +(adj)|pockmarked|blemished +pocket|11 +(noun)|pouch +(noun)|pouch|sac|sack|cavity|enclosed space +(noun)|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|space +(noun)|scoop|concave shape|concavity|incurvation|incurvature +(noun)|air pocket|air hole|atmospheric phenomenon +(noun)|people +(noun)|pouch|sac +(noun)|opening|gap +(verb)|take +(verb)|bag|steal +pocket-handkerchief|1 +(noun)|handkerchief|hankie|hanky|hankey +pocket-size|2 +(adj)|minor|modest|small|small-scale|pocket-sized|limited +(adj)|pocket-sized|pocketable|small +pocket-sized|2 +(adj)|minor|modest|small|small-scale|pocket-size|limited +(adj)|pocket-size|pocketable|small +pocket battleship|1 +(noun)|battleship|battlewagon +pocket billiards|1 +(noun)|pool|table game +pocket book|4 +(noun)|pocketbook|pocket edition|paperback book|paper-back book|paperback|softback book|softback|soft-cover book|soft-cover +(noun)|pocketbook|means|substance +(noun)|wallet|billfold|notecase|pocketbook|case +(noun)|bag|handbag|pocketbook|purse|container +pocket borough|1 +(noun)|borough +pocket bread|1 +(noun)|pita|flatbread +pocket calculator|1 +(noun)|hand calculator|calculator|calculating machine +pocket comb|2 +(noun)|pocketcomb|comb +(noun)| +pocket dictionary|1 +(noun)|little dictionary|dictionary|lexicon +pocket edition|1 +(noun)|pocketbook|pocket book|paperback book|paper-back book|paperback|softback book|softback|soft-cover book|soft-cover +pocket flap|1 +(noun)|flap +pocket flask|1 +(noun)|hipflask|flask +pocket gopher|1 +(noun)|gopher|pouched rat|pocket rat +pocket knife|2 +(noun)|pocketknife|knife +(noun)| +pocket lighter|1 +(noun)|cigar lighter|cigarette lighter|lighter|light|igniter|ignitor +pocket money|1 +(noun)|pin money|spending money|cash|hard cash|hard currency +pocket mouse|1 +(noun)|pocket rat +pocket rat|1 +(noun)|rat +pocket veto|1 +(noun)|veto +pocket watch|1 +(noun)|watch|ticker +pocketable|1 +(adj)|pocket-size|pocket-sized|small +pocketbook|4 +(noun)|means|substance +(noun)|wallet|billfold|notecase|case +(noun)|pocket book|pocket edition|paperback book|paper-back book|paperback|softback book|softback|soft-cover book|soft-cover +(noun)|bag|handbag|purse|container +pocketcomb|1 +(noun)|pocket comb|comb +pocketed bat|1 +(noun)|pocketed freetail bat|Tadirida femorosacca|freetail|free-tailed bat|freetailed bat +pocketed freetail bat|1 +(noun)|pocketed bat|Tadirida femorosacca|freetail|free-tailed bat|freetailed bat +pocketful|1 +(noun)|containerful +pocketknife|1 +(noun)|pocket knife|knife +pockmark|1 +(verb)|scar|mark|pock|pit +pockmarked|2 +(adj)|pocked|potholed|rough |unsmooth +(adj)|pocked|blemished +pod|6 +(noun)|cod|seedcase|husk +(noun)|seedpod|fruit +(noun)|animal group +(noun)|fuel pod|container +(verb)|shell +(verb)|grow|develop|produce|get|acquire +podalgia|1 +(noun)|pain|hurting +podalyria|1 +(noun)|Podalyria|genus Podalyria|rosid dicot genus +podargidae|1 +(noun)|Podargidae|family Podargidae|bird family +podargus|1 +(noun)|Podargus|genus Podargus|bird genus +podaxaceae|1 +(noun)|Podaxaceae|gasteromycete|gastromycete +podetium|1 +(noun)|plant process|enation +podgy|1 +(adj)|dumpy|pudgy|tubby|fat +podiatrist|1 +(noun)|chiropodist|foot doctor|specialist|medical specialist +podiatry|1 +(noun)|chiropody|medicine|medical specialty +podiceps|1 +(noun)|Podiceps|genus Podiceps|bird genus +podiceps cristatus|1 +(noun)|great crested grebe|Podiceps cristatus|grebe +podiceps grisegena|1 +(noun)|red-necked grebe|Podiceps grisegena|grebe +podiceps nigricollis|1 +(noun)|black-necked grebe|eared grebe|Podiceps nigricollis|grebe +podiceps ruficollis|1 +(noun)|dabchick|little grebe|Podiceps ruficollis|grebe +podicipedidae|1 +(noun)|Podicipedidae|family Podicipedidae|bird family +podicipediformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +podicipitiform seabird|1 +(noun)|seabird|sea bird|seafowl +podicipitiformes|1 +(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order +podilymbus|1 +(noun)|Podilymbus|genus Podilymbus|bird genus +podilymbus podiceps|1 +(noun)|pied-billed grebe|Podilymbus podiceps|grebe +podium|1 +(noun)|dais|pulpit|rostrum|ambo|stump|soapbox|platform +podlike|1 +(adj)|sheathed +podocarp|1 +(noun)|conifer|coniferous tree +podocarpaceae|1 +(noun)|Podocarpaceae|family Podocarpaceae|podocarpus family|gymnosperm family +podocarpus|1 +(noun)|Podocarpus|genus Podocarpus|gymnosperm genus +podocarpus amara|1 +(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer|coniferous tree +podocarpus coriaceus|1 +(noun)|yacca|yacca podocarp|Podocarpus coriaceus|conifer|coniferous tree +podocarpus dacrydioides|1 +(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer|coniferous tree +podocarpus elatus|1 +(noun)|brown pine|Rockingham podocarp|Podocarpus elatus|conifer|coniferous tree +podocarpus elongatus|1 +(noun)|cape yellowwood|African yellowwood|Podocarpus elongatus|conifer|coniferous tree +podocarpus family|1 +(noun)|Podocarpaceae|family Podocarpaceae|gymnosperm family +podocarpus ferruginea|1 +(noun)|miro|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer|coniferous tree +podocarpus latifolius|1 +(noun)|South-African yellowwood|Podocarpus latifolius|gymnospermous yellowwood +podocarpus nivalis|1 +(noun)|alpine totara|Podocarpus nivalis|shrub|bush +podocarpus spicata|1 +(noun)|matai|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer|coniferous tree +podocarpus totara|1 +(noun)|totara|Podocarpus totara|conifer|coniferous tree +podophyllum|1 +(noun)|Podophyllum|genus Podophyllum|magnoliid dicot genus +podophyllum peltatum|1 +(noun)|mayapple|May apple|wild mandrake|Podophyllum peltatum|herb|herbaceous plant +podsol|1 +(noun)|podzol|podzol soil|podsol soil|podsolic soil|soil|dirt +podsol soil|1 +(noun)|podzol|podzol soil|podsol|podsolic soil|soil|dirt +podsolic soil|1 +(noun)|podzol|podzol soil|podsol|podsol soil|soil|dirt +podzol|1 +(noun)|podzol soil|podsol|podsol soil|podsolic soil|soil|dirt +podzol soil|1 +(noun)|podzol|podsol|podsol soil|podsolic soil|soil|dirt +poe|1 +(noun)|Poe|Edgar Allen Poe|writer|author|poet +poeciliid|1 +(noun)|topminnow|poeciliid fish|live-bearer|cypriniform fish +poeciliid fish|1 +(noun)|topminnow|poeciliid|live-bearer|cypriniform fish +poeciliidae|1 +(noun)|Poeciliidae|family Poeciliidae|fish family +poecilocapsus|1 +(noun)|Poecilocapsus|genus Poecilocapsus|arthropod genus +poecilocapsus lineatus|1 +(noun)|four-lined plant bug|four-lined leaf bug|Poecilocapsus lineatus|mirid bug|mirid|capsid +poecilogale|1 +(noun)|Poecilogale|genus Poecilogale|mammal genus +poecilogale albinucha|1 +(noun)|snake muishond|Poecilogale albinucha|muishond +poem|1 +(noun)|verse form|literary composition|literary work +poenology|1 +(noun)|penology|criminology +poephila|1 +(noun)|Poephila|genus Poephila|bird genus +poephila castanotis|1 +(noun)|zebra finch|Poephila castanotis|grassfinch|grass finch +poesy|1 +(noun)|poetry|verse|writing style|literary genre|genre +poet|1 +(noun)|writer|author +poet-singer|1 +(noun)|folk singer|jongleur|minstrel|troubadour|singer|vocalist|vocalizer|vocaliser +poet laureate|1 +(noun)|Poet Laureate|poet|laureate +poetess|1 +(noun)|poet +poetic|4 +(adj)|poetical|writing style|literary genre|genre +(adj)|figurative |nonliteral +(adj)|writer|author +(adj)|poetical|rhetorical +poetic justice|1 +(noun)|just deserts|result|resultant|final result|outcome|termination +poetic license|1 +(noun)|license|licence +poetic rhythm|1 +(noun)|rhythmic pattern|prosody|versification +poetical|2 +(adj)|poetic|writing style|literary genre|genre +(adj)|poetic|rhetorical +poetics|1 +(noun)|literary study +poetise|1 +(verb)|verse|versify|poetize|write|compose|pen|indite +poetiser|1 +(noun)|rhymer|rhymester|versifier|poetizer|writer|author +poetize|1 +(verb)|verse|versify|poetise|write|compose|pen|indite +poetizer|1 +(noun)|rhymer|rhymester|versifier|poetiser|writer|author +poetry|2 +(noun)|poesy|verse|writing style|literary genre|genre +(noun)|expressive style|style +pogey|1 +(noun)|dole|pogy|social welfare|welfare +pogge|1 +(noun)|armed bullhead|Agonus cataphractus|poacher|sea poacher|sea poker +pogo stick|1 +(noun)|plaything|toy +pogonia|1 +(noun)|orchid|orchidaceous plant +pogonia divaricata|1 +(noun)|spreading pogonia|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid|orchidaceous plant +pogonia rosea|1 +(noun)|rosebud orchid|Cleistes rosea|Pogonia rosea|orchid|orchidaceous plant +pogonion|1 +(noun)|craniometric point +pogonip|1 +(noun)|ice fog|fog +pogonophora|1 +(noun)|Pogonophora|phylum Pogonophora|phylum +pogonophoran|1 +(noun)|beard worm|worm +pogostemon|1 +(noun)|Pogostemon|genus Pogostemon|asterid dicot genus +pogostemon cablin|1 +(noun)|patchouli|patchouly|pachouli|Pogostemon cablin|shrub|bush +pogrom|1 +(noun)|persecution +pogy|1 +(noun)|dole|pogey|social welfare|welfare +poi|1 +(noun)|dish +poignance|1 +(noun)|poignancy|sadness|sorrow|sorrowfulness +poignancy|2 +(noun)|poignance|sadness|sorrow|sorrowfulness +(noun)|pathos|quality +poignant|2 +(adj)|affecting|touching|moving +(adj)|painful +poignantly|1 +(adv)|affectingly|touchingly +poikilotherm|1 +(noun)|ectotherm|animal|animate being|beast|brute|creature|fauna +poikilothermic|1 +(adj)|poikilothermous|heterothermic|ectothermic|cold-blooded +poikilothermous|1 +(adj)|poikilothermic|heterothermic|ectothermic|cold-blooded +poilu|1 +(noun)|purloo|chicken purloo|stew +poinciana|2 +(noun)|Poinciana|subgenus Poinciana|rosid dicot genus +(noun)|bird of paradise|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub +poinciana gilliesii|1 +(noun)|bird of paradise|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub +poinciana pulcherrima|1 +(noun)|pride of barbados|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub +poinciana regia|1 +(noun)|royal poinciana|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +poinsettia|1 +(noun)|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge +poinsettia strain|1 +(noun)|superbug|Bemisia tabaci|sweet-potato whitefly +point|37 +(noun)|component|constituent|element|factor|ingredient +(noun)|location +(noun)|meaning|significance|signification|import +(noun)|degree|level|stage|state +(noun)|detail|item|fact +(noun)|point in time|measure|quantity|amount +(noun)|aim|object|objective|target +(noun)|tip|peak|convex shape|convexity +(noun)|dot|disk|disc|saucer +(noun)|unit of measurement|unit +(noun)|promontory|headland|foreland +(noun)|item|part|portion|component part|component +(noun)|relevance|relevancy +(noun)|spot|characteristic +(noun)|end +(noun)|compass point|direction +(noun)|linear unit +(noun)|period|full stop|stop|full point|punctuation|punctuation mark +(noun)|head|mark +(noun)|pointedness|taper +(noun)|characteristic +(noun)|gunpoint|gun muzzle|muzzle +(noun)|power point|wall socket|wall plug|electric outlet|electrical outlet|outlet|electric receptacle +(noun)|distributor point|breaker point|contact|tangency +(verb)|indicate|show|inform +(verb)|orient|lie +(verb)|charge|level|aim|take|train|take aim|direct +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|head|guide|channelize|channelise|control|command +(verb)|bespeak|betoken|indicate|signal|tell +(verb)|luff|sail +(verb)|tag|label|mark +(verb)|tag|label|mark +(verb)|tag|label|mark +(verb)|be +(verb)|target|aim|place|direct|aim|take|train|take aim|direct +(verb)|sharpen|taper|change shape|change form|deform +(verb)|repoint|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +point-and-shoot camera|1 +(noun)|camera|photographic camera +point-blank|2 +(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|plainspoken|straight-from-the-shoulder|direct +(adj)|direct +point-of-sale|1 +(adj)|location +point after|1 +(noun)|extra point|conversion +point duty|1 +(noun)|traffic control +point in time|1 +(noun)|point|measure|quantity|amount +point jam|1 +(verb)|jam|block +point lace|1 +(noun)|needlepoint|lace +point man|2 +(noun)|leader +(noun)|soldier +point mutation|1 +(noun)|gene mutation|mutation|genetic mutation|chromosomal mutation +point of accumulation|1 +(noun)|limit|limit point|indefinite quantity +point of apoapsis|1 +(noun)|apoapsis|celestial point +point of departure|2 +(noun)|jumping-off place|beginning|origin|root|rootage|source +(noun)|springboard|jumping-off point|beginning|start|commencement +point of entry|1 +(noun)|port of entry|port +point of honor|1 +(noun)|concern +point of intersection|1 +(noun)|intersection|intersection point|point +point of no return|1 +(noun)|Rubicon|line|dividing line|demarcation|contrast +point of order|1 +(noun)|order|rules of order|parliamentary law|parliamentary procedure +point of periapsis|1 +(noun)|periapsis|celestial point +point of reference|1 +(noun)|reference point|reference|indicator +point of view|2 +(noun)|viewpoint|stand|standpoint|position|stance|posture +(noun)|position|spatial relation +point out|3 +(verb)|comment|notice|remark|note|observe|mention|remark +(verb)|signalize|signalise|call attention|indicate|point|show +(verb)|remonstrate|inform +point source|1 +(noun)|beginning|origin|root|rootage|source +point system|3 +(noun)|system|system of rules +(noun)|system of measurement|metric +(noun)|orthography|writing system +point the way|1 +(verb)|direct +point up|1 +(verb)|stress|emphasize|emphasise|punctuate|accent|accentuate +point woman|1 +(noun)|leader +pointed|2 +(adj)|pointed |acanthoid|acanthous|spinous|acuate|acute|sharp|needlelike|barreled|barrelled|fusiform|spindle-shaped|cigar-shaped|nibbed|peaked|sharpened|spiked|spiked|tapering|tapered|pyramidal|pyramidic|pyramidical|spikelike|acerate|acerose|acicular|needle-shaped|acuminate|apiculate|ensiform|sword-shaped|swordlike|bladelike|hastate|spearhead-shaped|lanceolate|lancelike|sagittate|sagittiform|arrow-shaped|angular|angulate|sharp0 +(adj)|direct +pointed-leaf maple|1 +(noun)|Acer argutum|maple +pointed-toe|1 +(adj)|pointy-toed|toed |toe +pointed arch|1 +(noun)|arch +pointedness|1 +(noun)|point|taper +pointel|1 +(noun)|graver|graving tool|pointrel|hand tool +pointer|4 +(noun)|arrow|mark +(noun)|indicator +(noun)|cursor|indicator +(noun)|Spanish pointer|sporting dog|gun dog +pointilism|1 +(noun)|genre +pointilist|2 +(adj)|pointillistic|patterned +(noun)|painter +pointillism|1 +(noun)|school|artistic movement|art movement +pointillistic|1 +(adj)|pointilist|patterned +pointing|1 +(adj)|inform +pointing out|1 +(noun)|indication|indicant +pointing trowel|1 +(noun)|trowel +pointless|3 +(adj)|pointless |unpointed|blunt +(adj)|otiose|superfluous|wasted|worthless +(adj)|purposeless|senseless|meaningless |nonmeaningful +pointlessness|1 +(noun)|inanity|senselessness|mindlessness|vacuity|meaninglessness +pointrel|1 +(noun)|graver|graving tool|pointel|hand tool +pointsman|1 +(noun)|traffic cop +pointy-toed|1 +(adj)|pointed-toe|toed |toe +poise|7 +(noun)|unit of viscosity +(noun)|equilibrium +(noun)|aplomb|assuredness|cool|sang-froid|composure|calm|calmness|equanimity +(verb)|hover +(verb)|brace|fix|prepare|set up|ready|gear up|set +(verb)|put|set|place|pose|position|lay +(verb)|balance|hold|carry|bear +poised|2 +(adj)|balanced +(adj)|collected|equanimous|self-collected|self-contained|self-possessed|composed +poison|7 +(noun)|poisonous substance|substance|matter +(noun)|destructiveness +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|kill +(verb)|kill +(verb)|envenom|change|alter|modify +(verb)|drug|dose +poison-berry|2 +(noun)|black nightshade|common nightshade|poisonberry|Solanum nigrum|nightshade +(noun)| +poison arrow plant|1 +(noun)|winter sweet|Acocanthera oblongifolia|Acocanthera spectabilis|shrub|bush +poison ash|1 +(noun)|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant +poison bush|2 +(noun)|poison pea|gastrolobium|shrub|bush +(noun)|darling pea|subshrub|suffrutex +poison camas|1 +(noun)|Zigadenus nuttalli|death camas|zigadene +poison dogwood|1 +(noun)|poison ash|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant +poison gas|1 +(noun)|gas|chemical weapon +poison hemlock|1 +(noun)|hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +poison ivy|2 +(noun)|Rhus dermatitis +(noun)|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant +poison mercury|1 +(noun)|poison ivy|markweed|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant +poison milkweed|1 +(noun)|horsetail milkweed|Asclepias subverticillata|milkweed|silkweed +poison oak|2 +(noun)|Rhus dermatitis +(noun)|poison ivy|markweed|poison mercury|Toxicodendron radicans|Rhus radicans|poisonous plant +poison parsley|1 +(noun)|hemlock|poison hemlock|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant +poison pea|1 +(noun)|poison bush|gastrolobium|shrub|bush +poison pill|1 +(noun)|shark repellent|porcupine provision +poison sumac|2 +(noun)|Rhus dermatitis +(noun)|poison ash|poison dogwood|Toxicodendron vernix|Rhus vernix|poisonous plant +poisonberry|1 +(noun)|black nightshade|common nightshade|poison-berry|Solanum nigrum|nightshade +poisoner|1 +(noun)|killer|slayer +poisoning|2 +(noun)|toxic condition|intoxication|physiological state|physiological condition +(noun)|killing|kill|putting to death +poisonous|3 +(adj)|toxicant|toxic +(adj)|inedible |uneatable +(adj)|venomous|vicious|malevolent |malicious +poisonous nightshade|1 +(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|woody nightshade|Solanum dulcamara|nightshade +poisonous parasol|1 +(noun)|Lepiota morgani|lepiota +poisonous plant|1 +(noun)|plant|flora|plant life +poisonous substance|1 +(noun)|poison|substance|matter +poisonously|1 +(adv)|venomously +poisson distribution|1 +(noun)|Poisson distribution|distribution|statistical distribution +poitier|1 +(noun)|Poitier|Sidney Poitier|actor|histrion|player|thespian|role player +poitiers|2 +(noun)|Poitiers|battle of Poitiers|pitched battle +(noun)|Poitier|Sidney Poitier|actor|histrion|player|thespian|role player +poitou|1 +(noun)|Poitou-Charentes|Poitou|French region +poitou-charentes|1 +(noun)|Poitou-Charentes|Poitou|French region +poitrine d'agneau|1 +(noun)|breast of lamb|cut of lamb +poivrade|1 +(noun)|pepper sauce|Poivrade|sauce +poke|9 +(noun)|pigeon berry|garget|scoke|Phytolacca americana|pokeweed +(noun)|sack|paper bag|carrier bag|bag +(noun)|jab|jabbing|poking|thrust|thrusting|gesture +(noun)|punch|clout|lick|biff|blow +(verb)|jab|prod|stab|dig|thrust|poke into +(verb)|pry|nose|search|look +(verb)|agitate|vex|disturb|commove|shake up|stir up|raise up +(verb)|thump|pound|hit +(verb)|pierce +poke at|1 +(verb)|nudge|prod|push|force +poke bonnet|1 +(noun)|bonnet|hat|chapeau|lid +poke check|1 +(noun)|check +poke fun|1 +(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|mock|bemock +poke into|3 +(verb)|penetrate|perforate +(verb)|intrude into|meddle with|horn in|intervene|step in|interfere|interpose +(verb)|probe|dig into|penetrate|perforate +poke milkweed|1 +(noun)|Asclepias exaltata|milkweed|silkweed +poke out|1 +(verb)|extend|reach out|be +poker|2 +(noun)|stove poker|fire hook|salamander|fire iron +(noun)|poker game|card game|cards +poker-faced|1 +(adj)|deadpan|expressionless|impassive|unexpressive|uncommunicative |incommunicative +poker alumroot|1 +(noun)|poker heuchera|Heuchera cylindrica|alumroot|alumbloom +poker chip|1 +(noun)|chip|counter +poker face|1 +(noun)|countenance|visage +poker game|1 +(noun)|poker|card game|cards +poker hand|1 +(noun)|hand|deal +poker heuchera|1 +(noun)|poker alumroot|Heuchera cylindrica|alumroot|alumbloom +poker plant|1 +(noun)|Kniphofia uvaria|kniphofia|tritoma|flame flower|flame-flower|flameflower +pokeweed|1 +(noun)|herb|herbaceous plant +pokeweed family|1 +(noun)|Phytolaccaceae|family Phytolaccaceae|caryophylloid dicot family +pokey|3 +(adj)|dilatory|laggard|poky|slow +(adj)|jerkwater|one-horse|poky|provincial +(noun)|jail|jailhouse|gaol|clink|slammer +poking|1 +(noun)|jab|jabbing|poke|thrust|thrusting|gesture +pokomo|1 +(noun)|Pokomo|Bantu|Bantoid language +poky|2 +(adj)|dilatory|laggard|pokey|slow +(adj)|jerkwater|one-horse|pokey|provincial +pol|1 +(noun)|politician|politico|political leader|leader +polack|1 +(noun)|Pole +poland|1 +(noun)|Poland|Republic of Poland|Polska|European country|European nation +polanisia|1 +(noun)|Polanisia|genus Polanisia|dilleniid dicot genus +polanisia dodecandra|1 +(noun)|clammyweed|Polanisia graveolens|Polanisia dodecandra|herb|herbaceous plant +polanisia graveolens|1 +(noun)|clammyweed|Polanisia graveolens|Polanisia dodecandra|herb|herbaceous plant +polar|6 +(adj)|charged +(adj)|diametric|diametrical|opposite|different +(adj)|geographic point|geographical point +(adj)|polar |circumpolar|north-polar|Arctic|south-polar|Antarctic +(adj)|arctic|frigid|gelid|glacial|icy|cold +(adj)|pivotal|crucial |important +polar bear|1 +(noun)|ice bear|Ursus Maritimus|Thalarctos maritimus|bear +polar body|1 +(noun)|cell +polar circle|1 +(noun)|latitude|line of latitude|parallel of latitude|parallel +polar coordinate|1 +(noun)|coordinate|co-ordinate +polar front|1 +(noun)|cold front|front +polar glacier|1 +(noun)|continental glacier +polar hare|1 +(noun)|Arctic hare|Lepus arcticus|hare +polar opposition|1 +(noun)|gradable opposition +polar star|1 +(noun)|Polaris|North Star|pole star|polestar|variable star|variable|lodestar|loadstar +polar zone|1 +(noun)|Frigid Zone|climatic zone +polarimeter|1 +(noun)|polariscope|optical device +polaris|1 +(noun)|Polaris|North Star|pole star|polar star|polestar|variable star|variable|lodestar|loadstar +polarisation|2 +(noun)|polarization|condition|status +(noun)|polarization|optical phenomenon +polariscope|1 +(noun)|polarimeter|optical device +polarise|3 +(verb)|polarize|change|alter|modify +(verb)|polarize|separate|disunite|divide|part +(verb)|polarize|separate|divide|part +polarity|2 +(noun)|mutual opposition|opposition|oppositeness +(noun)|sign|opposition|oppositeness +polarization|2 +(noun)|polarisation|optical phenomenon +(noun)|polarisation|condition|status +polarize|3 +(verb)|polarise|change|alter|modify +(verb)|polarise|separate|disunite|divide|part +(verb)|polarise|separate|divide|part +polarographic|1 +(adj)|chemical analysis|qualitative analysis +polarography|1 +(noun)|chemical analysis|qualitative analysis +polaroid|1 +(noun)|Polaroid|film|plastic film +polaroid camera|1 +(noun)|Polaroid camera|Polaroid Land camera|camera|photographic camera +polaroid land camera|1 +(noun)|Polaroid camera|Polaroid Land camera|camera|photographic camera +pole|13 +(noun)|rod +(noun)|Pole|European +(noun)|opinion|sentiment|persuasion|view|thought +(noun)|perch|rod|linear unit +(noun)|perch|rod|area unit|square measure +(noun)|celestial pole|celestial point +(noun)|geographic point|geographical point +(noun)|terminal|contact|tangency +(noun)|sports implement +(noun)|magnetic pole|end +(verb)|punt|propel|impel +(verb)|hold|support|sustain|hold up +(verb)|deoxidize|deoxidise|reduce +pole horse|2 +(noun)|trotting horse|trotter +(noun)|poler|draft horse|draught horse|dray horse +pole jump|1 +(noun)|pole vault|pole vaulting|pole jumping|field event +pole jumper|1 +(noun)|vaulter|pole vaulter|athlete|jock +pole jumping|1 +(noun)|pole vault|pole vaulting|pole jump|field event +pole position|1 +(noun)|position|place +pole star|2 +(noun)|Polaris|North Star|polar star|polestar|variable star|variable|lodestar|loadstar +(noun)| +pole vault|1 +(noun)|pole vaulting|pole jump|pole jumping|field event +pole vaulter|1 +(noun)|vaulter|pole jumper|athlete|jock +pole vaulting|1 +(noun)|pole vault|pole jump|pole jumping|field event +poleax|3 +(noun)|poleaxe|ax|axe +(noun)|poleaxe|battle-ax|battle-axe +(verb)|poleaxe|fell|drop|strike down|cut down +poleaxe|3 +(noun)|poleax|ax|axe +(noun)|poleax|battle-ax|battle-axe +(verb)|poleax|fell|drop|strike down|cut down +polecat|2 +(noun)|skunk|wood pussy|musteline mammal|mustelid|musteline +(noun)|fitch|foulmart|foumart|Mustela putorius|musteline mammal|mustelid|musteline +polecat weed|1 +(noun)|skunk cabbage|foetid pothos|Symplocarpus foetidus|marsh plant|bog plant|swamp plant +polemic|3 +(adj)|polemical|controversial +(noun)|polemicist|polemist|writer|author +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +polemical|1 +(adj)|polemic|controversial +polemically|1 +(adv)|controversially +polemicise|1 +(verb)|polemize|polemise|polemicize|quarrel|dispute|scrap|argufy|altercate +polemicist|1 +(noun)|polemist|polemic|writer|author +polemicize|1 +(verb)|polemize|polemise|polemicise|quarrel|dispute|scrap|argufy|altercate +polemics|3 +(noun)|Christian theology +(noun)|polemicist|polemist|polemic|writer|author +(noun)|polemic|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +polemise|1 +(verb)|polemize|polemicize|polemicise|quarrel|dispute|scrap|argufy|altercate +polemist|1 +(noun)|polemicist|polemic|writer|author +polemize|1 +(verb)|polemise|polemicize|polemicise|quarrel|dispute|scrap|argufy|altercate +polemoniaceae|1 +(noun)|Polemoniaceae|family Polemoniaceae|phlox family|asterid dicot family +polemoniaceous|1 +(adj)|asterid dicot family +polemoniales|1 +(noun)|Polemoniales|order Polemoniales|plant order +polemonium|1 +(noun)|herb|herbaceous plant +polemonium boreale|1 +(noun)|northern Jacob's ladder|Polemonium boreale|polemonium +polemonium caeruleum|1 +(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +polemonium reptans|1 +(noun)|Greek valerian|Polemonium reptans|polemonium +polemonium van-bruntiae|1 +(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +polemonium viscosum|1 +(noun)|skunkweed|skunk-weed|Polemonium viscosum|polemonium +polenta|1 +(noun)|mush|cornmeal mush +poler|1 +(noun)|pole horse|draft horse|draught horse|dray horse +polestar|1 +(noun)|Polaris|North Star|pole star|polar star|variable star|variable|lodestar|loadstar +polianthes|1 +(noun)|Polianthes|genus Polianthes|liliid monocot genus +polianthes tuberosa|1 +(noun)|tuberose|Polianthes tuberosa|flower +police|2 +(noun)|police force|constabulary|law|force|personnel|law enforcement agency +(verb)|patrol|guard +police academy|1 +(noun)|academy +police action|1 +(noun)|military action|action +police blotter|1 +(noun)|blotter|day book|rap sheet|charge sheet|written record|written account +police boat|1 +(noun)|boat +police captain|1 +(noun)|captain|police chief|policeman|police officer|officer +police car|1 +(noun)|cruiser|police cruiser|patrol car|prowl car|squad car|car|auto|automobile|machine|motorcar +police chief|1 +(noun)|captain|police captain|policeman|police officer|officer +police commissioner|1 +(noun)|commissioner +police constable|1 +(noun)|constable|policeman|police officer|officer +police court|1 +(noun)|court|tribunal|judicature +police cruiser|1 +(noun)|cruiser|patrol car|police car|prowl car|squad car|car|auto|automobile|machine|motorcar +police department|1 +(noun)|local department|department of local government +police detective|1 +(noun)|detective|investigator|tec|policeman|police officer|officer +police dog|1 +(noun)|working dog +police force|1 +(noun)|police|constabulary|law|force|personnel|law enforcement agency +police headquarters|1 +(noun)|police station|station house|police office|station +police investigation|1 +(noun)|police work|investigation|investigating +police lieutenant|1 +(noun)|lieutenant|lawman|law officer|peace officer +police matron|1 +(noun)|policewoman|policeman|police officer|officer +police office|1 +(noun)|police station|police headquarters|station house|station +police officer|1 +(noun)|policeman|officer|lawman|law officer|peace officer +police precinct|1 +(noun)|precinct +police sergeant|1 +(noun)|sergeant|lawman|law officer|peace officer +police squad|1 +(noun)|team|squad +police state|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny +police station|1 +(noun)|police headquarters|station house|police office|station +police van|1 +(noun)|police wagon|paddy wagon|patrol wagon|wagon|black Maria|van +police wagon|1 +(noun)|police van|paddy wagon|patrol wagon|wagon|black Maria|van +police work|1 +(noun)|police investigation|investigation|investigating +policeman|1 +(noun)|police officer|officer|lawman|law officer|peace officer +policeman bird|1 +(noun)|black-necked stork|jabiru|Xenorhyncus asiaticus|stork +policewoman|1 +(noun)|police matron|policeman|police officer|officer +policy|3 +(noun)|argumentation|logical argument|line of reasoning|line +(noun)|plan of action +(noun)|insurance policy|insurance|contract +policy-making|1 +(adj)|political +policy change|1 +(noun)|about-face|volte-face|reversal|change +policy maker|1 +(noun)|important person|influential person|personage +policyholder|1 +(noun)|customer|client +polio|1 +(noun)|poliomyelitis|infantile paralysis|acute anterior poliomyelitis|infectious disease +poliomyelitis|1 +(noun)|polio|infantile paralysis|acute anterior poliomyelitis|infectious disease +polioptila|1 +(noun)|Polioptila|genus Polioptila|bird genus +poliosis|1 +(noun)|depigmentation +poliovirus|1 +(noun)|enterovirus +poliovirus vaccine|1 +(noun)|vaccine|vaccinum +polish|8 +(adj)|Polish|European country|European nation +(noun)|gloss|glossiness|burnish|radiance|radiancy|shine|effulgence|refulgence|refulgency|smoothness +(noun)|refinement|culture|cultivation|finish|perfection|flawlessness|ne plus ultra +(noun)|formulation|preparation +(noun)|Polish|Slavic|Slavic language|Slavonic|Slavonic language +(verb)|smooth|smoothen|shine|beautify|embellish|prettify +(verb)|refine|fine-tune|down|better|improve|amend|ameliorate|meliorate +(verb)|round|round off|polish up|brush up|perfect|hone +polish monetary unit|1 +(noun)|Polish monetary unit|monetary unit +polish notation|1 +(noun)|prefix notation|Lukasiewicz notation|Polish notation|parenthesis-free notation +polish off|3 +(verb)|get through|wrap up|finish off|mop up|clear up|finish up|complete|finish +(verb)|murder|slay|hit|dispatch|bump off|remove|kill +(verb)|eat up|finish|eat +polish up|1 +(verb)|polish|round|round off|brush up|perfect|hone +polished|4 +(adj)|polished |bright|burnished|lustrous|shining|shiny|finished|bright +(adj)|refined|svelte|urbane|sophisticated +(adj)|milled|processed +(adj)|dressed|finished +polished rice|1 +(noun)|white rice|rice +polisher|1 +(noun)|buffer|power tool +polishing|1 +(noun)|shining|work +polistes|1 +(noun)|Polistes|genus Polistes|arthropod genus +polistes annularis|1 +(noun)|Polistes annularis|paper wasp +politburo|1 +(noun)|committee|commission +polite|3 +(adj)|polite |courteous|gracious|nice|mannerly|well-mannered +(adj)|civilized|civilised|cultivated|cultured|genteel|refined +(adj)|civil +politely|1 +(adv)|courteously|with courtesy|in a well mannered way|with politeness +politeness|2 +(noun)|niceness|courtesy|good manners +(noun)|civility|formality +politesse|1 +(noun)|chivalry|gallantry|courtesy|good manners +politic|2 +(adj)|politic |expedient|sagacious|diplomatic|diplomatical +(adj)|smooth|suave|diplomatic |diplomatical +political|3 +(adj)|political |governmental|policy-making|semipolitical +(adj)|opinion|sentiment|persuasion|view|thought +(adj)|profession +political action committee|1 +(noun)|PAC|committee|commission +political arena|1 +(noun)|political sphere|sphere|domain|area|orbit|field|arena +political boss|1 +(noun)|party boss|boss|politician|politico|pol|political leader +political campaign|2 +(noun)|campaign|run|race +(noun)|campaigning|candidacy|candidature|electioneering|campaign|cause|crusade|drive|movement|effort +political commissar|1 +(noun)|commissar|official|functionary +political contribution|1 +(noun)|political donation|contribution|donation +political correctitude|1 +(noun)|political correctness|correctness +political correctness|1 +(noun)|political correctitude|correctness +political detainee|1 +(noun)|detainee|prisoner|captive +political dissident|1 +(noun)|dissenter|dissident|protester|objector|contestant +political donation|1 +(noun)|political contribution|contribution|donation +political economy|1 +(noun)|economics|economic science|social science +political hack|1 +(noun)|machine politician|ward-heeler|hack|politician|politico|pol|political leader +political incorrectness|1 +(noun)|incorrectness +political leader|1 +(noun)|politician|politico|pol|leader +political liberty|1 +(noun)|civil liberty|freedom +political machine|1 +(noun)|machine|organization|organisation +political movement|1 +(noun)|movement|social movement|front +political orientation|1 +(noun)|ideology|political theory|orientation +political party|1 +(noun)|party|organization|organisation +political platform|1 +(noun)|platform|political program|program|document|written document|papers +political prisoner|1 +(noun)|prisoner|captive +political program|1 +(noun)|platform|political platform|program|document|written document|papers +political relation|1 +(noun)|politics|social relation +political science|1 +(noun)|politics|government|social science +political scientist|1 +(noun)|social scientist +political sphere|1 +(noun)|political arena|sphere|domain|area|orbit|field|arena +political sympathies|1 +(noun)|politics|opinion|sentiment|persuasion|view|thought +political system|1 +(noun)|form of government|social group +political theory|1 +(noun)|political orientation|ideology|orientation +political unit|1 +(noun)|unit|social unit +politically correct|1 +(adj)|correctness +politically incorrect|1 +(adj)|incorrectness +politician|3 +(noun)|leader +(noun)|politico|pol|political leader|leader +(noun)|schemer|plotter +politicise|1 +(verb)|politicize|change|alter|modify +politicize|1 +(verb)|politicise|change|alter|modify +politick|1 +(verb)|prosecute|engage|pursue +politico|1 +(noun)|politician|pol|political leader|leader +politics|4 +(noun)|political relation|social relation +(noun)|political science|government|social science +(noun)|profession +(noun)|political sympathies|opinion|sentiment|persuasion|view|thought +polity|3 +(noun)|civil order|order +(noun)|organization|organisation +(noun)|administration|disposal +polk|1 +(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States|United States President|President|Chief Executive +polka|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|folk dancing|folk dance +polka dot|1 +(noun)|design|pattern|figure +poll|9 +(noun)|opinion poll|public opinion poll|canvass|inquiry|enquiry|research +(noun)|pate|crown|top|top side|upper side|upside +(noun)|top|top side|upper side|upside +(noun)|poll parrot|parrot +(noun)|count|counting|numeration|enumeration|reckoning|tally +(verb)|canvass|canvas|survey +(verb)|vote +(verb)|get|acquire +(verb)|pollard|snip|clip|crop|trim|lop|dress|prune|cut back +poll parrot|1 +(noun)|poll|parrot +poll taker|1 +(noun)|pollster|headcounter|canvasser|inquirer|enquirer|questioner|querier|asker +poll tax|1 +(noun)|capitation +pollachius|1 +(noun)|Pollachius|genus Pollachius|fish genus +pollachius pollachius|1 +(noun)|pollack|pollock|Pollachius pollachius|gadoid|gadoid fish +pollack|3 +(noun)|Pollack|Sydney Pollack|film maker|filmmaker|film producer|movie maker +(noun)|pollock|saltwater fish +(noun)|pollock|Pollachius pollachius|gadoid|gadoid fish +pollard|3 +(noun)|tree +(noun)|ruminant +(verb)|poll|snip|clip|crop|trim|lop|dress|prune|cut back +pollen|1 +(noun)|spore +pollen count|1 +(noun)|count +pollen tube|1 +(noun)|plant part|plant structure +pollenate|1 +(verb)|pollinate|cross-pollinate|inseminate|fecundate|fertilize|fertilise +pollenation|1 +(noun)|pollination|fertilization|fertilisation|fecundation|impregnation +pollex|1 +(noun)|thumb|finger +pollinate|1 +(verb)|pollenate|cross-pollinate|inseminate|fecundate|fertilize|fertilise +pollination|1 +(noun)|pollenation|fertilization|fertilisation|fecundation|impregnation +pollinator|1 +(noun)|insect +polling booth|1 +(noun)|booth|cubicle|stall|kiosk +polling day|1 +(noun)|election day|day +polling place|1 +(noun)|polling station|topographic point|place|spot +polling station|1 +(noun)|polling place|topographic point|place|spot +pollinium|1 +(noun)|pollen +pollinosis|1 +(noun)|hay fever|allergic rhinitis +polliwog|1 +(noun)|tadpole|pollywog|larva +pollock|3 +(noun)|Pollock|Jackson Pollock|painter +(noun)|pollack|saltwater fish +(noun)|pollack|Pollachius pollachius|gadoid|gadoid fish +polls|6 +(noun)|position|place +(noun)|poll|opinion poll|public opinion poll|canvass|inquiry|enquiry|research +(noun)|pate|poll|crown|top|top side|upper side|upside +(noun)|poll|top|top side|upper side|upside +(noun)|poll|poll parrot|parrot +(noun)|poll|count|counting|numeration|enumeration|reckoning|tally +pollster|1 +(noun)|poll taker|headcounter|canvasser|inquirer|enquirer|questioner|querier|asker +pollucite|1 +(noun)|mineral +pollutant|1 +(noun)|waste|waste material|waste matter|waste product +pollute|1 +(verb)|foul|contaminate|dirty|soil|begrime|grime|colly|bemire +polluted|1 +(adj)|contaminated|impure +polluter|1 +(noun)|defiler|bad person +pollution|3 +(noun)|environmental condition|impurity|impureness +(noun)|befoulment|defilement|dirtiness|uncleanness +(noun)|contamination|soiling|soilure|dirtying +pollux|1 +(noun)|Pollux|star +polly fish|2 +(noun)|parrotfish|pollyfish|percoid fish|percoid|percoidean +(noun)| +pollyannaish|1 +(adj)|cheerful|upbeat|optimistic +pollyfish|1 +(noun)|parrotfish|polly fish|percoid fish|percoid|percoidean +pollywog|1 +(noun)|tadpole|polliwog|larva +polo|2 +(noun)|Polo|Marco Polo|traveler|traveller +(noun)|field game +polo-neck|2 +(adj)|necked +(noun)|turtleneck|sweater|jersey|T-shirt|tee shirt +polo-neck collar|1 +(noun)|turtleneck collar|collar|neckband +polo ball|1 +(noun)|ball +polo mallet|1 +(noun)|polo stick|mallet +polo pony|1 +(noun)|horse|Equus caballus +polo shirt|1 +(noun)|sport shirt|shirt +polo stick|1 +(noun)|polo mallet|mallet +polonaise|1 +(noun)|dress|frock +polonium|1 +(noun)|Po|atomic number 84|metallic element|metal +polony|1 +(noun)|bologna|Bologna sausage +polska|1 +(noun)|Poland|Republic of Poland|Polska|European country|European nation +poltergeist|1 +(noun)|ghost +poltroon|2 +(adj)|cowardly |fearful +(noun)|craven|recreant|coward +poltroonery|1 +(noun)|pusillanimity|pusillanimousness +polyamide|1 +(noun)|polymeric amide|polymer +polyandrist|1 +(noun)|polygamist +polyandrous|1 +(adj)|polygamous +polyandry|1 +(noun)|polygamy +polyangiaceae|1 +(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family +polyangium|1 +(noun)|Polyangium|genus Polyangium|bacteria genus +polyanthus|1 +(noun)|Primula polyantha|primrose|primula +polyarteritis|1 +(noun)|arteritis +polyarteritis nodosa|1 +(noun)|periarteritis nodosa|disease +polyatomic|1 +(adj)|substance|matter +polyborus|1 +(noun)|Polyborus|genus Polyborus|bird genus +polyborus cheriway audubonii|1 +(noun)|Audubon's caracara|Polyborus cheriway audubonii|caracara +polyborus plancus|1 +(noun)|carancha|Polyborus plancus|caracara +polybotria|1 +(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus +polybotria cervina|1 +(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern +polybotrya|1 +(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus +polybotrya cervina|1 +(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern +polybutene|1 +(noun)|polybutylene|butylene|butene +polybutylene|1 +(noun)|polybutene|butylene|butene +polychaeta|1 +(noun)|Polychaeta|class Polychaeta|class +polychaete|1 +(noun)|polychete|polychaete worm|polychete worm|annelid|annelid worm|segmented worm +polychaete worm|1 +(noun)|polychaete|polychete|polychete worm|annelid|annelid worm|segmented worm +polychete|1 +(noun)|polychaete|polychaete worm|polychete worm|annelid|annelid worm|segmented worm +polychete worm|1 +(noun)|polychaete|polychete|polychaete worm|annelid|annelid worm|segmented worm +polychromatic|2 +(adj)|polychromatic +(adj)|polychrome|polychromic|colored |coloured|colorful +polychrome|2 +(adj)|polychromatic|polychromic|colored |coloured|colorful +(verb)|polychromize|polychromise|color|colorize|colorise|colourise|colourize|colour|color in|colour in +polychromic|1 +(adj)|polychromatic|polychrome|colored |coloured|colorful +polychromise|1 +(verb)|polychrome|polychromize|color|colorize|colorise|colourise|colourize|colour|color in|colour in +polychromize|1 +(verb)|polychrome|polychromise|color|colorize|colorise|colourise|colourize|colour|color in|colour in +polycillin|1 +(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin +polycirrus|1 +(noun)|Polycirrus|genus Polycirrus|worm genus +polyconic projection|1 +(noun)|conic projection|conical projection +polycrystalline|1 +(adj)|crystalline +polycystic kidney disease|1 +(noun)|PKD|kidney disease|renal disorder|nephropathy|nephrosis +polycythemia|1 +(noun)|blood disease|blood disorder +polydactyl|1 +(adj)|polydactylous|extremity|appendage|member +polydactylous|1 +(adj)|polydactyl|extremity|appendage|member +polydactylus|1 +(noun)|Polydactylus|genus Polydactylus|fish genus +polydactylus virginicus|1 +(noun)|barbu|Polydactylus virginicus|threadfin +polydactyly|1 +(noun)|hyperdactyly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +polydipsia|1 +(noun)|thirst +polyelectrolyte|1 +(noun)|electrolyte +polyergus|1 +(noun)|Polyergus|genus Polyergus|arthropod genus +polyergus rufescens|1 +(noun)|Amazon ant|Polyergus rufescens|slave-making ant|slave-maker +polyester|3 +(noun)|synthetic resin +(noun)|ester|plastic +(noun)|fabric|cloth|material|textile +polyester fiber|1 +(noun)|polyester +polyestrous|1 +(adj)|polyoestrous|estrous +polyethylene|1 +(noun)|polythene|synthetic resin +polyfoam|1 +(noun)|polyurethane foam|polyurethane|ployurethan +polygala|1 +(noun)|Polygala|genus Polygala|rosid dicot genus +polygala alba|1 +(noun)|senega|Polygala alba|milkwort +polygala lutea|1 +(noun)|orange milkwort|yellow milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort +polygala paucifolia|1 +(noun)|flowering wintergreen|gaywings|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort +polygala senega|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort +polygala vulgaris|1 +(noun)|common milkwort|gand flower|Polygala vulgaris|milkwort +polygalaceae|1 +(noun)|Polygalaceae|family Polygalaceae|milkwort family|rosid dicot family +polygamist|1 +(noun)|spouse|partner|married person|mate|better half +polygamous|2 +(adj)|polygamous |bigamous|polyandrous|polygynous +(adj)|heteroicous|polyoicous|monoecious |monecious|monoicous +polygamy|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +polygene|1 +(noun)|gene|cistron|factor +polygenic|1 +(adj)|inheritable |heritable +polygenic disease|1 +(noun)|polygenic disorder|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +polygenic disorder|1 +(noun)|polygenic disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +polyglot|2 +(adj)|multilingual +(noun)|linguist|person|individual|someone|somebody|mortal|human|soul +polygon|1 +(noun)|polygonal shape|plane figure|two-dimensional figure +polygonaceae|1 +(noun)|Polygonaceae|family Polygonaceae|buckwheat family|dicot family|magnoliopsid family +polygonal|1 +(adj)|plane figure|two-dimensional figure +polygonal shape|1 +(noun)|polygon|plane figure|two-dimensional figure +polygonales|1 +(noun)|Polygonales|order Polygonales|plant order +polygonatum|1 +(noun)|Polygonatum|genus Polygonatum|liliid monocot genus +polygonatum biflorum|1 +(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal +polygonatum commutatum|1 +(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal +polygonia|1 +(noun)|Polygonia|genus Polygonia|arthropod genus +polygonia comma|1 +(noun)|comma|comma butterfly|Polygonia comma|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +polygonum|1 +(noun)|Polygonum|genus Polygonum|dicot genus|magnoliopsid genus +polygonum aubertii|1 +(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine +polygonum fagopyrum|1 +(noun)|buckwheat|Polygonum fagopyrum|Fagopyrum esculentum|herb|herbaceous plant +polygonum orientale|1 +(noun)|prince's-feather|princess feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub|suffrutex +polygraph|1 +(noun)|medical instrument +polygynist|1 +(noun)|polygamist +polygynous|1 +(adj)|polygamous +polygyny|1 +(noun)|polygamy +polyhedral|1 +(adj)|solid +polyhedral angle|1 +(noun)|angle +polyhedron|1 +(noun)|solid +polyhidrosis|1 +(noun)|hyperhidrosis|hyperidrosis|perspiration|sweating|diaphoresis|sudation|hidrosis +polyhymnia|1 +(noun)|Polyhymnia|Muse +polymastigina|1 +(noun)|Polymastigina|order Polymastigina|animal order +polymastigote|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +polymath|1 +(noun)|initiate|learned person|pundit|savant +polymer|1 +(noun)|compound|chemical compound +polymerase|1 +(noun)|enzyme +polymeric|1 +(adj)|compound|chemical compound +polymeric amide|1 +(noun)|polyamide|polymer +polymerisation|1 +(noun)|polymerization|chemical process|chemical change|chemical action +polymerise|2 +(verb)|polymerize|change integrity +(verb)|polymerize|change integrity +polymerization|1 +(noun)|polymerisation|chemical process|chemical change|chemical action +polymerize|2 +(verb)|polymerise|change integrity +(verb)|polymerise|change integrity +polymethyl methacrylate|1 +(noun)|acrylic|acrylic resin|acrylate resin +polymonium caeruleum van-bruntiae|1 +(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium +polymorph|1 +(noun)|organism|being +polymorphic|3 +(adj)|polymorphous|chemical phenomenon +(adj)|polymorphous|organic phenomenon +(adj)|polymorphous|multiform +polymorphism|2 +(noun)|pleomorphism|chemical phenomenon +(noun)|organic phenomenon +polymorphous|3 +(adj)|polymorphic|chemical phenomenon +(adj)|polymorphic|organic phenomenon +(adj)|polymorphic|multiform +polymox|1 +(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +polymyositis|1 +(noun)|myositis +polymyxin|1 +(noun)|antibiotic|antibiotic drug +polynemidae|1 +(noun)|Polynemidae|family Polynemidae|fish family +polynesia|1 +(noun)|Polynesia|archipelago +polynesian|1 +(noun)|Polynesian|Austronesian +polynesian tattler|1 +(noun)|Polynesian tattler|Heteroscelus incanus|tattler +polyneuritic psychosis|1 +(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|dementia|dementedness +polyneuritis|1 +(noun)|multiple neuritis|neuritis +polynomial|2 +(adj)|multinomial|sum|amount|total +(noun)|multinomial|sum|amount|total +polyodon|1 +(noun)|Polyodon|genus Polyodon|fish genus +polyodon spathula|1 +(noun)|paddlefish|duckbill|Polyodon spathula|ganoid|ganoid fish +polyodontidae|1 +(noun)|Polyodontidae|family Polyodontidae|fish family +polyoestrous|1 +(adj)|polyestrous|estrous +polyoicous|1 +(adj)|heteroicous|polygamous|monoecious |monecious|monoicous +polyoma|1 +(noun)|polyoma virus|papovavirus +polyoma virus|1 +(noun)|polyoma|papovavirus +polyose|1 +(noun)|polysaccharide|carbohydrate|saccharide|sugar +polyostotic fibrous dysplasia|1 +(noun)|Albright's disease|fibrous dysplasia of bone +polyp|2 +(noun)|polypus|growth +(noun)|coelenterate|cnidarian +polypectomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +polypedates|1 +(noun)|Polypedates|genus Polypedates|amphibian genus +polypedatidae|1 +(noun)|Polypedatidae|family Polypedatidae|amphibian family +polypeptide|1 +(noun)|peptide +polypetalous|1 +(adj)|petalous |petaled|petalled +polyphase|1 +(adj)|multiphase|point|point in time +polyphemus moth|1 +(noun)|Antheraea polyphemus|saturniid|saturniid moth +polyphone|1 +(noun)|polyphonic letter|letter|letter of the alphabet|alphabetic character +polyphonic|3 +(adj)|letter|letter of the alphabet|alphabetic character +(adj)|polyphonous|music +(adj)|polyphonic |contrapuntal +polyphonic letter|1 +(noun)|polyphone|letter|letter of the alphabet|alphabetic character +polyphonic music|1 +(noun)|polyphony|concerted music|music +polyphonic prose|1 +(noun)|prose +polyphonous|1 +(adj)|polyphonic|music +polyphony|1 +(noun)|polyphonic music|concerted music|music +polyphosphate|1 +(noun)|salt +polyphosphoric acid|1 +(noun)|oxyacid|oxygen acid +polyplacophora|1 +(noun)|Polyplacophora|class Polyplacophora|class +polyplacophore|1 +(noun)|chiton|coat-of-mail shell|sea cradle|mollusk|mollusc|shellfish +polyploid|2 +(adj)|polyploid |triploid +(noun)|organism|being +polyploidy|1 +(noun)|condition +polypodiaceae|1 +(noun)|Polypodiaceae|family Polypodiaceae|fern family +polypodiales|1 +(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order +polypodium|1 +(noun)|Polypodium|genus Polypodium|fern genus +polypodium aureum|1 +(noun)|golden polypody|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern +polypodium glycyrrhiza|1 +(noun)|licorice fern|Polypodium glycyrrhiza|polypody +polypodium polypodioides|1 +(noun)|gray polypody|resurrection fern|Polypodium polypodioides|polypody +polypodium scouleri|1 +(noun)|leatherleaf|leathery polypody|coast polypody|Polypodium scouleri|polypody +polypodium virgianum|1 +(noun)|rock polypody|rock brake|American wall fern|Polypodium virgianum|polypody +polypodium vulgare|1 +(noun)|common polypody|adder's fern|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody +polypody|1 +(noun)|fern +polyporaceae|1 +(noun)|Polyporaceae|family Polyporaceae|fungus family +polypore|1 +(noun)|pore fungus|pore mushroom|basidiomycete|basidiomycetous fungi +polyporus|1 +(noun)|Polyporus|genus Polyporus|fungus genus +polyporus frondosus|1 +(noun)|hen-of-the-woods|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus +polyporus squamosus|1 +(noun)|Polyporus squamosus|scaly polypore|polypore|pore fungus|pore mushroom +polyporus tenuiculus|1 +(noun)|Polyporus tenuiculus|polypore|pore fungus|pore mushroom +polyprion|1 +(noun)|Polyprion|genus Polyprion|fish genus +polyprion americanus|1 +(noun)|stone bass|wreckfish|Polyprion americanus|sea bass +polypropene|1 +(noun)|polypropylene|plastic +polypropenonitrile|1 +(noun)|Acrilan|acrylic|acrylic resin|acrylate resin +polypropylene|1 +(noun)|polypropene|plastic +polyptoton|1 +(noun)|repetition +polypus|1 +(noun)|polyp|growth +polysaccharide|1 +(noun)|polyose|carbohydrate|saccharide|sugar +polysemant|1 +(noun)|polysemantic word|polysemous word|word +polysemantic|1 +(adj)|polysemous|ambiguous +polysemantic word|1 +(noun)|polysemant|polysemous word|word +polysemous|1 +(adj)|polysemantic|ambiguous +polysemous word|1 +(noun)|polysemant|polysemantic word|word +polysemy|1 +(noun)|lexical ambiguity|ambiguity|equivocalness +polysomy|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +polystichum|1 +(noun)|Polystichum|genus Polystichum|fern genus +polystichum acrostichoides|1 +(noun)|Christmas fern|canker brake|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern +polystichum aculeatum|1 +(noun)|holly fern|Cyrtomium aculeatum|Polystichum aculeatum|fern +polystichum adiantiformis|1 +(noun)|leather fern|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern +polystichum braunii|1 +(noun)|Braun's holly fern|prickly shield fern|Polystichum braunii|holly fern +polystichum lonchitis|1 +(noun)|northern holly fern|Polystichum lonchitis|holly fern +polystichum scopulinum|1 +(noun)|western holly fern|Polystichum scopulinum|holly fern +polystichum setiferum|1 +(noun)|soft shield fern|Polystichum setiferum|shield fern|buckler fern +polystyrene|1 +(noun)|styrene|cinnamene|phenylethylene|vinylbenzene +polysyllabic|2 +(adj)|syllabic +(adj)|sesquipedalian|long +polysyllabic word|1 +(noun)|polysyllable|word +polysyllable|1 +(noun)|polysyllabic word|word +polysyndeton|1 +(noun)|rhetorical device +polysynthetic|1 +(adj)|agglutinative|synthetic +polytechnic|1 +(noun)|polytechnic institute|engineering school|technical school|tech +polytechnic institute|1 +(noun)|polytechnic|engineering school|technical school|tech +polytetrafluoroethylene|1 +(noun)|Teflon|plastic +polytheism|1 +(noun)|theism +polytheistic|1 +(adj)|polytheistic +polythene|1 +(noun)|polyethylene|synthetic resin +polytonal|1 +(adj)|tonal +polytonalism|1 +(noun)|polytonality|music +polytonality|1 +(noun)|polytonalism|music +polyunsaturated|1 +(adj)|unsaturated +polyunsaturated fat|1 +(noun)|fat +polyunsaturated fatty acid|1 +(noun)|unsaturated fatty acid +polyurethane|1 +(noun)|ployurethan|polymer +polyurethane foam|1 +(noun)|polyfoam|polyurethane|ployurethan +polyuria|1 +(noun)|kidney disease|renal disorder|nephropathy|nephrosis +polyvalence|1 +(noun)|polyvalency|multivalence|multivalency|state +polyvalency|1 +(noun)|polyvalence|multivalence|multivalency|state +polyvalent|2 +(adj)|polyvalent +(adj)|polyvalent |multivalent +polyvinyl-formaldehyde|1 +(noun)|plastic +polyvinyl acetate|1 +(noun)|PVA|vinyl polymer|vinyl resin|polyvinyl resin +polyvinyl chloride|1 +(noun)|PVC|vinyl polymer|vinyl resin|polyvinyl resin +polyvinyl resin|1 +(noun)|vinyl polymer|vinyl resin|synthetic resin +polyzoa|2 +(noun)|Bryozoa|phylum Bryozoa|phylum +(noun)|bryozoan|polyzoan|sea mat|sea moss|moss animal|invertebrate +polyzoan|1 +(noun)|bryozoan|sea mat|sea moss|moss animal|invertebrate +pom|1 +(noun)|pommy|English person +pom-pom|2 +(noun)|pompon|adornment +(noun)|antiaircraft|antiaircraft gun|flak|flack|ack-ack|ack-ack gun|gun +pomacanthus|1 +(noun)|Pomacanthus|genus Pomacanthus|fish genus +pomace fly|1 +(noun)|fruit fly|dipterous insect|two-winged insects|dipteran|dipteron +pomacentridae|1 +(noun)|Pomacentridae|family Pomacentridae|fish family +pomacentrus|1 +(noun)|Pomacentrus|genus Pomacentrus|fish genus +pomacentrus leucostictus|1 +(noun)|beaugregory|Pomacentrus leucostictus|damselfish|demoiselle +pomade|2 +(noun)|pomatum|hairdressing|hair tonic|hair oil|hair grease +(verb)|groom|neaten +pomaded|1 +(adj)|groomed +pomaderris|1 +(noun)|Pomaderris|genus Pomaderris|dicot genus|magnoliopsid genus +pomaderris apetala|1 +(noun)|hazel|hazel tree|Pomaderris apetala|tree +pomatomidae|1 +(noun)|Pomatomidae|family Pomatomidae|fish family +pomatomus|1 +(noun)|Pomatomus|genus Pomatomus|fish genus +pomatomus saltatrix|1 +(noun)|bluefish|Pomatomus saltatrix|percoid fish|percoid|percoidean +pomatum|1 +(noun)|pomade|hairdressing|hair tonic|hair oil|hair grease +pome|1 +(noun)|false fruit|fruit +pomegranate|2 +(noun)|pomegranate tree|Punica granatum|fruit tree +(noun)|edible fruit +pomegranate tree|1 +(noun)|pomegranate|Punica granatum|fruit tree +pomelo|2 +(noun)|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +(noun)|shaddock|citrus|citrus fruit|citrous fruit +pomelo tree|1 +(noun)|pomelo|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +pomeranian|1 +(noun)|Pomeranian|spitz +pomfret|1 +(noun)|Brama raii|sea bream|bream +pomme blanche|1 +(noun)|breadroot|Indian breadroot|pomme de prairie|Psoralea esculenta|herb|herbaceous plant +pomme de prairie|1 +(noun)|breadroot|Indian breadroot|pomme blanche|Psoralea esculenta|herb|herbaceous plant +pommel|4 +(noun)|handle|grip|handgrip|hold +(noun)|saddlebow|handle|grip|handgrip|hold +(noun)|knob|decoration|ornament|ornamentation +(verb)|pummel|biff|hit +pommel horse|1 +(noun)|side horse|horse +pommy|1 +(noun)|pom|English person +pomo|2 +(noun)|Pomo|Hokan|Hoka +(noun)|Pomo|Kulanapan +pomolobus|1 +(noun)|Pomolobus|genus Pomolobus|fish genus +pomolobus pseudoharengus|1 +(noun)|alewife|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish|clupeid +pomology|1 +(noun)|botany|phytology +pomoxis|1 +(noun)|Pomoxis|genus Pomoxis|fish genus +pomoxis annularis|1 +(noun)|white crappie|Pomoxis annularis|crappie +pomoxis nigromaculatus|1 +(noun)|black crappie|Pomoxis nigromaculatus|crappie +pomp|1 +(noun)|eclat|elegance +pompadour|3 +(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness|marquise +(noun)|hairdo|hair style|coiffure +(verb)|style +pompano|2 +(noun)|saltwater fish +(noun)|carangid fish|carangid +pompeii|1 +(noun)|Pompeii|city|metropolis|urban center +pompey|2 +(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general|full general|statesman|solon|national leader +(noun)|Portsmouth|Pompey|port|city|metropolis|urban center +pompey the great|1 +(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general|full general|statesman|solon|national leader +pompon|2 +(noun)|pom-pom|adornment +(noun)|black margate|Anisotremus surinamensis|grunt +pomposity|1 +(noun)|ostentation|ostentatiousness|pompousness|pretentiousness|splashiness|inflation|inelegance +pompous|1 +(adj)|grandiloquent|overblown|pontifical|portentous|pretentious +pompousness|1 +(noun)|ostentation|ostentatiousness|pomposity|pretentiousness|splashiness|inflation|inelegance +ponca|2 +(noun)|Ponca|Ponka|Dhegiha +(noun)|Ponca|Ponka|Dhegiha +ponce|1 +(noun)|pimp|procurer|panderer|pander|pandar|fancy man|wrongdoer|offender +poncho|1 +(noun)|cloak +poncirus|1 +(noun)|Poncirus|genus Poncirus|rosid dicot genus +poncirus trifoliata|1 +(noun)|trifoliate orange|trifoliata|wild orange|Poncirus trifoliata|tree +pond|1 +(noun)|pool|lake +pond-apple tree|1 +(noun)|pond apple|Annona glabra|custard apple|custard apple tree +pond-scum parasite|1 +(noun)|fungus +pond-skater|1 +(noun)|water strider|water skater|water bug +pond apple|2 +(noun)|pond-apple tree|Annona glabra|custard apple|custard apple tree +(noun)|custard apple +pond bald cypress|1 +(noun)|bald cypress|swamp cypress|southern cypress|Taxodium distichum|cypress +pond cypress|1 +(noun)|bald cypress|Taxodium ascendens|cypress +pond lily|1 +(noun)|water nymph|fragrant water lily|Nymphaea odorata|water lily +pond pine|1 +(noun)|Pinus serotina|pine|pine tree|true pine +pond scum|1 +(noun)|green algae|chlorophyte +ponder|1 +(verb)|chew over|think over|meditate|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +ponderable|2 +(adj)|ponderable |assessable +(adj)|cogitable|thinkable +ponderer|1 +(noun)|muser|muller|ruminator|thinker +pondering|1 +(adj)|brooding|broody|contemplative|meditative|musing|pensive|reflective|ruminative|thoughtful +ponderosa|1 +(noun)|ponderosa pine|western yellow pine|bull pine|Pinus ponderosa|yellow pine +ponderosa pine|1 +(noun)|ponderosa|western yellow pine|bull pine|Pinus ponderosa|yellow pine +ponderosity|1 +(noun)|heft|heftiness|massiveness|ponderousness|heaviness|weightiness +ponderous|3 +(adj)|heavy|lumbering|heavy-footed +(adj)|heavy +(adj)|uninteresting +ponderousness|1 +(noun)|heft|heftiness|massiveness|ponderosity|heaviness|weightiness +pondweed|2 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|Elodea|genus Elodea|ditchmoss|monocot genus|liliopsid genus +pondweed family|1 +(noun)|Potamogetonaceae|family Potamogetonaceae|monocot family|liliopsid family +pone|1 +(noun)|cornpone|cornbread +pong|1 +(noun)|niff|malodor|malodour|stench|stink|reek|fetor|foetor|mephitis +pongamia|1 +(noun)|Pongamia|genus Pongamia|rosid dicot genus +pongamia glabra|1 +(noun)|Indian beech|Pongamia glabra|tree +pongee|1 +(noun)|fabric|cloth|material|textile +pongid|1 +(noun)|great ape|anthropoid ape +pongidae|1 +(noun)|Pongidae|family Pongidae|mammal family +pongo|1 +(noun)|Pongo|genus Pongo|mammal genus +pongo pygmaeus|1 +(noun)|orangutan|orang|orangutang|Pongo pygmaeus|great ape|pongid +poniard|2 +(noun)|bodkin|dagger|sticker +(verb)|knife|stab +ponka|2 +(noun)|Ponca|Ponka|Dhegiha +(noun)|Ponca|Ponka|Dhegiha +pons|1 +(noun)|pons Varolii|neural structure +pons asinorum|1 +(noun)|problem +pons varolii|1 +(noun)|pons|pons Varolii|neural structure +ponstel|1 +(noun)|mefenamic acid|Ponstel|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +ponte 25 de abril|1 +(noun)|Ponte 25 de Abril|suspension bridge +pontederia|1 +(noun)|Pontederia|genus Pontederia|monocot genus|liliopsid genus +pontederia cordata|1 +(noun)|pickerelweed|pickerel weed|wampee|Pontederia cordata|aquatic plant|water plant|hydrophyte|hydrophytic plant +pontederiaceae|1 +(noun)|Pontederiaceae|family Pontederiaceae|pickerelweed family|monocot family|liliopsid family +pontiac|1 +(noun)|Pontiac|Shawnee +pontifex|1 +(noun)|priest +pontiff|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +pontifical|3 +(adj)|papal|apostolic|apostolical|spiritual leader|Catholic +(adj)|episcopal|priest +(adj)|grandiloquent|overblown|pompous|portentous|pretentious +pontificate|3 +(noun)|papacy|government|authorities|regime +(verb)|administer|administrate +(verb)|talk|speak +pontoon|2 +(noun)|barge|flatboat|hoy|lighter +(noun)|float +pontoon bridge|1 +(noun)|bateau bridge|floating bridge|bridge|span +pontoon plane|1 +(noun)|floatplane|seaplane|hydroplane +pontos|1 +(noun)|Pontus|Pontos|Greek deity +pontus|2 +(noun)|Pontus|Pontos|Greek deity +(noun)|Pontus|geographical area|geographic area|geographical region|geographic region +pony|5 +(noun)|horse|Equus caballus +(noun)|racehorse|race horse|bangtail +(noun)|trot|crib|translation|interlingual rendition|rendering|version +(noun)|shot glass|jigger|glass|drinking glass +(noun)|horse|Equus caballus +pony-trekking|1 +(noun)|riding|horseback riding|equitation +pony cart|2 +(noun)|ponycart|donkey cart|tub-cart|cart +(noun)| +pony express|1 +(noun)|express|express mail +pony up|1 +(verb)|cough up|spit up|give +ponycart|1 +(noun)|pony cart|donkey cart|tub-cart|cart +ponytail|1 +(noun)|hairdo|hair style|coiffure +pooch|2 +(noun)|doggie|doggy|barker|bow-wow|dog|domestic dog|Canis familiaris +(verb)|pooch out|purse +pooch out|1 +(verb)|pooch|purse +pood|1 +(noun)|weight unit|weight +poodle|1 +(noun)|poodle dog|dog|domestic dog|Canis familiaris +poodle dog|1 +(noun)|poodle|dog|domestic dog|Canis familiaris +pooecetes|1 +(noun)|Pooecetes|genus Pooecetes|bird genus +pooecetes gramineus|1 +(noun)|vesper sparrow|grass finch|Pooecetes gramineus|New World sparrow +poof|1 +(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poove|pouf|gay man|shirtlifter +pooh-bah|1 +(noun)|high-muck-a-muck|important person|influential person|personage +pooh-pooh|2 +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|reject|spurn|freeze off|scorn|disdain|turn down|refuse|decline +pool|11 +(noun)|excavation|hole in the ground +(noun)|pond|lake +(noun)|organization|organisation +(noun)|consortium|syndicate|association +(noun)|reserve account|reserve fund +(noun)|puddle|body of water|water +(noun)|kitty|stake|stakes|bet|wager +(noun)|puddle|topographic point|place|spot +(noun)|pocket billiards|table game +(verb)|share +(verb)|group|aggroup +pool ball|1 +(noun)|ball +pool cue|1 +(noun)|cue|cue stick|pool stick|sports implement +pool player|1 +(noun)|player|participant +pool stick|1 +(noun)|cue|cue stick|pool cue|sports implement +pool table|1 +(noun)|billiard table|snooker table|table|game equipment +pooler|1 +(noun)|partaker|sharer +pooling of interest|1 +(noun)|accounting|accounting system|method of accounting +poolroom|1 +(noun)|room +poon|2 +(noun)|wood +(noun)|tree +poop|4 +(noun)|crap|dirt|shit|shite|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|nincompoop|ninny|simpleton|simple +(noun)|dope|the skinny|low-down|details|inside information +(noun)|stern|after part|quarter|tail|rear|back +poop deck|1 +(noun)|weather deck|shelter deck +poop out|1 +(verb)|peter out|run down|run out|conk out|tire|pall|weary|fatigue|jade +poor|9 +(adj)|mediocre|second-rate|inferior +(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|wretched|unfortunate +(adj)|poor |broke|bust|skint|stone-broke|stony-broke|destitute|impoverished|indigent|necessitous|needy|poverty-stricken|hard up|impecunious|in straitened circumstances|penniless|penurious|pinched|moneyless|unprovided for|underprivileged +(adj)|poor |beggarly|mean|slummy +(adj)|low +(adj)|poor |resourceless +(adj)|inadequate|short|insufficient |deficient +(adj)|bad +(adj)|hardscrabble|unfruitful +poor-spirited|1 +(adj)|pusillanimous|unmanly|cowardly |fearful +poor box|1 +(noun)|alms box|mite box|box +poor boy|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +poor devil|1 +(noun)|wretch|victim +poor fish|1 +(noun)|stupid|stupid person|dullard|dolt|pudding head|pudden-head|pillock|simpleton|simple +poor law|1 +(noun)|law +poor man|1 +(noun)|pauper|poor person|have-not +poor man's orchid|1 +(noun)|butterfly flower|schizanthus|flower +poor man's pulse|1 +(noun)|horse gram|horse grain|Macrotyloma uniflorum|Dolichos biflorus|legume|leguminous plant +poor man's weatherglass|1 +(noun)|scarlet pimpernel|red pimpernel|Anagallis arvensis|pimpernel +poor person|1 +(noun)|have-not|unfortunate|unfortunate person +poor rates|1 +(noun)|rates +poor shape|1 +(noun)|unfitness|bad condition|ill health|unhealthiness|health problem +poor speller|1 +(noun)|speller|good speller|writer +poor white|1 +(noun)|white trash|poor white trash|White|white person|Caucasian +poor white trash|1 +(noun)|white trash|poor white|White|white person|Caucasian +poorest|10 +(adj)|bottom|worst +(adj)|mediocre|poor|second-rate|inferior +(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate +(adj)|poor |broke|bust|skint|stone-broke|stony-broke|destitute|impoverished|indigent|necessitous|needy|poverty-stricken|hard up|impecunious|in straitened circumstances|penniless|penurious|pinched|moneyless|unprovided for|underprivileged +(adj)|poor |beggarly|mean|slummy +(adj)|poor|low +(adj)|poor |resourceless +(adj)|inadequate|poor|short|insufficient |deficient +(adj)|poor|bad +(adj)|hardscrabble|poor|unfruitful +poorhouse|1 +(noun)|establishment +poorly|2 +(adj)|ailing|indisposed|peaked|sickly|unwell|under the weather|ill |sick +(adv)|ill|badly +poorness|4 +(noun)|poverty|impoverishment|financial condition|economic condition +(noun)|fruitlessness|aridity|barrenness +(noun)|meagerness|meagreness|scantiness|scantness|exiguity|insufficiency|inadequacy|deficiency +(noun)|inferiority|low quality +poorwill|1 +(noun)|Phalaenoptilus nuttallii|goatsucker|nightjar|caprimulgid +poove|1 +(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poof|pouf|gay man|shirtlifter +pop|18 +(adj)|popular|nonclassical +(noun)|dad|dada|daddy|pa|papa|pappa|pater|father|male parent|begetter +(noun)|soda|soda pop|soda water|tonic|soft drink +(noun)|popping|sound +(noun)|pop music|popular music|popular music genre +(verb)|protrude|pop out|bulge|bulge out|bug out|come out|change shape|change form|deform +(verb)|hit +(verb)|sound|go +(verb)|fire|discharge +(verb)|sound +(verb)|crop up|pop up|appear +(verb)|throw|thrust +(verb)|let go of|let go|release|relinquish +(verb)|hit +(verb)|toss off|bolt down|belt down|pour down|down|drink down|kill|drink|imbibe +(verb)|inject +(verb)|collapse|burst +(verb)|burst|split|break open +pop art|1 +(noun)|Pop Art|artistic movement|art movement +pop bottle|1 +(noun)|soda bottle|bottle +pop fly|1 +(noun)|fly|fly ball +pop group|1 +(noun)|ensemble +pop in|1 +(verb)|enter|come in|get into|get in|go into|go in|move into +pop music|1 +(noun)|pop|popular music|popular music genre +pop off|2 +(verb)|leave|go forth|go away +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|choke|croak|snuff it|die|decease|perish|go|exit|pass away|expire|pass +pop out|4 +(verb)|burst out|appear +(verb)|come out|fall out|issue|emerge|come out|come forth|go forth|egress +(verb)|protrude|pop|bulge|bulge out|bug out|come out|change shape|change form|deform +(verb)|exit|go out|get out|leave +pop quiz|1 +(noun)|quiz +pop tent|1 +(noun)|tent|collapsible shelter +pop the question|1 +(verb)|propose|declare oneself|offer|request +pop up|1 +(verb)|crop up|pop|appear +popcorn|2 +(noun)|Zea mays everta|corn|maize|Indian corn|Zea mays +(noun)|corn|edible corn +popcorn ball|1 +(noun)|candy +pope|2 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +(noun)|Pope|Alexander Pope|poet +pope's nose|1 +(noun)|parson's nose|helping|portion|serving +pope alexander vi|1 +(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +popery|1 +(noun)|practice|pattern +popeyed|2 +(adj)|goggle-eyed|openmouthed|surprised +(adj)|eyed +popgun|1 +(noun)|plaything|toy +popillia|1 +(noun)|Popillia|genus Popillia|arthropod genus +popillia japonica|1 +(noun)|Japanese beetle|Popillia japonica|scarabaeid beetle|scarabaeid|scarabaean +popinjay|2 +(noun)|egotist|egoist|swellhead +(noun)|parrot +popish|1 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|papist|papistic|papistical +poplar|2 +(noun)|wood +(noun)|poplar tree|angiospermous tree|flowering tree +poplar bluff|1 +(noun)|Poplar Bluff|town +poplar tree|1 +(noun)|poplar|angiospermous tree|flowering tree +poplin|1 +(noun)|fabric|cloth|material|textile +popliteal|1 +(adj)|hinge joint|ginglymus|ginglymoid joint +popliteal artery|1 +(noun)|arteria poplitea|artery|arteria|arterial blood vessel +popliteal vein|1 +(noun)|vena poplitea|vein|vena|venous blood vessel +popover|1 +(noun)|muffin|gem +popper|2 +(noun)|stimulant|stimulant drug +(noun)|cooker +poppet|1 +(noun)|poppet valve|valve +poppet valve|1 +(noun)|poppet|valve +popping|1 +(noun)|pop|sound +poppy|1 +(noun)|flower +poppy day|1 +(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday +poppy family|1 +(noun)|Papaveraceae|family Papaveraceae|dilleniid dicot family +poppy mallow|1 +(noun)|mallow +poppy seed|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +poppycock|1 +(noun)|stuff|stuff and nonsense|hooey|nonsense|bunk|nonsensicality|meaninglessness|hokum +popsicle|1 +(noun)|ice lolly|lolly|lollipop|frozen dessert +populace|1 +(noun)|public|world|people +popular|5 +(adj)|popular |best-selling|fashionable|popular with|favorite|favourite|hot|touristed|touristy +(adj)|democratic +(adj)|democratic|common +(adj)|plain|general +(adj)|pop|nonclassical +popular democratic front for the liberation of palestine|1 +(noun)|Democratic Front for the Liberation of Palestine|DFLP|Popular Democratic Front for the Liberation of Palestine|PDFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +popular front|1 +(noun)|alliance|coalition|alignment|alinement +popular front for the liberation of palestine|1 +(noun)|Popular Front for the Liberation of Palestine|PFLP|terrorist organization|terrorist group|foreign terrorist organization|FTO +popular front for the liberation of palestine-general command|1 +(noun)|Popular Front for the Liberation of Palestine-General Command|PFLP-GC|terrorist organization|terrorist group|foreign terrorist organization|FTO +popular music|1 +(noun)|popular music genre|music genre|musical genre|genre|musical style +popular music genre|1 +(noun)|popular music|music genre|musical genre|genre|musical style +popular opinion|1 +(noun)|public opinion|opinion|vox populi|belief +popular struggle front|1 +(noun)|Popular Struggle Front|PSF|terrorist organization|terrorist group|foreign terrorist organization|FTO +popular with|1 +(adj)|fashionable|popular +popularisation|2 +(noun)|popularization|interpretation +(noun)|popularization|vulgarization|vulgarisation|degradation|debasement +popularise|2 +(verb)|popularize|vulgarize|vulgarise|generalize|generalise|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|popularize|gear|pitch +populariser|1 +(noun)|popularizer|vulgarizer|vulgariser|communicator +popularism|1 +(noun)|music +popularity|1 +(noun)|quality +popularity contest|1 +(noun)|contest +popularization|2 +(noun)|popularisation|interpretation +(noun)|popularisation|vulgarization|vulgarisation|degradation|debasement +popularize|2 +(verb)|popularise|vulgarize|vulgarise|generalize|generalise|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|popularise|gear|pitch +popularizer|1 +(noun)|populariser|vulgarizer|vulgariser|communicator +populate|2 +(verb)|dwell|shack|reside|live|inhabit|people|domicile|domiciliate|be +(verb)|people|fill|fill up|make full +populated|1 +(adj)|inhabited +populated area|1 +(noun)|urban area|geographical area|geographic area|geographical region|geographic region +population|5 +(noun)|people +(noun)|group|grouping +(noun)|universe|collection|aggregation|accumulation|assemblage +(noun)|integer|whole number +(noun)|colonization|colonisation|settlement +population commission|1 +(noun)|Population Commission|Economic and Social Council commission|ECOSOC commission +population control|1 +(noun)|social control +population growth|1 +(noun)|increase|increment|growth +population profile|1 +(noun)|profile +population scientist|1 +(noun)|demographer|demographist|sociologist +population shift|1 +(noun)|transformation|transmutation|shift +populism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +populist|1 +(noun)|democrat|advocate|advocator|proponent|exponent +populist party|1 +(noun)|People's Party|Populist Party|party|political party +populous|1 +(adj)|thickly settled|inhabited +populus|1 +(noun)|Populus|genus Populus|hamamelid dicot genus +populus alba|1 +(noun)|white poplar|white aspen|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar|poplar tree +populus balsamifera|1 +(noun)|balsam poplar|hackmatack|tacamahac|Populus balsamifera|poplar|poplar tree +populus canescens|1 +(noun)|gray poplar|Populus canescens|poplar|poplar tree +populus deltoides|1 +(noun)|Eastern cottonwood|necklace poplar|Populus deltoides|cottonwood +populus grandidentata|1 +(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen +populus heterophylla|1 +(noun)|swamp cottonwood|black cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood +populus nigra|1 +(noun)|black poplar|Populus nigra|poplar|poplar tree +populus nigra italica|1 +(noun)|Lombardy poplar|Populus nigra italica|black poplar|Populus nigra +populus tremula|1 +(noun)|quaking aspen|European quaking aspen|Populus tremula|aspen +populus tremuloides|1 +(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen +populus trichocarpa|1 +(noun)|black cottonwood|Western balsam poplar|Populus trichocarpa|cottonwood +porbeagle|1 +(noun)|Lamna nasus|mackerel shark +porc|1 +(noun)|pork|meat +porcelain|1 +(noun)|ceramic ware +porcelain clay|1 +(noun)|china clay|china stone|kaolin|kaoline|terra alba|clay +porcellio|1 +(noun)|Porcellio|genus Porcellio|arthropod genus +porcellionidae|1 +(noun)|Porcellionidae|family Porcellionidae|arthropod family +porch|1 +(noun)|structure|construction +porcine|3 +(adj)|even-toed ungulate|artiodactyl|artiodactyl mammal +(adj)|gross|fat +(adj)|hoggish|piggish|piggy|swinish|gluttonous +porcupine|1 +(noun)|hedgehog|rodent|gnawer|gnawing animal +porcupine ball|1 +(noun)|porcupines|meatball +porcupine fish|2 +(noun)|porcupinefish|Diodon hystrix|spiny puffer +(noun)| +porcupine provision|1 +(noun)|shark repellent|measure|step +porcupinefish|1 +(noun)|porcupine fish|Diodon hystrix|spiny puffer +porcupines|2 +(noun)|porcupine ball|meatball +(noun)|porcupine|hedgehog|rodent|gnawer|gnawing animal +pore|4 +(noun)|hole +(noun)|duct|epithelial duct|canal|channel +(noun)|stoma|stomate|aperture +(verb)|concentrate|focus|center|centre|rivet|think|cogitate|cerebrate +pore fungus|1 +(noun)|polypore|pore mushroom|basidiomycete|basidiomycetous fungi +pore mushroom|1 +(noun)|polypore|pore fungus|basidiomycete|basidiomycetous fungi +porgy|2 +(noun)|scup|saltwater fish +(noun)|sea bream|bream +porifera|1 +(noun)|Porifera|phylum Porifera|phylum +poriferan|1 +(noun)|sponge|parazoan|invertebrate +poriferous|1 +(adj)|porous |porose +poring over|1 +(noun)|perusal|perusing|studying|reading +pork|2 +(noun)|porc|meat +(noun)|pork barrel|appropriation +pork-and-veal goulash|1 +(noun)|goulash|Hungarian goulash|gulyas +pork-barreling|1 +(noun)|acquisition +pork-fish|2 +(noun)|porkfish|Anisotremus virginicus|grunt +(noun)| +pork and beans|1 +(noun)|dish +pork barrel|1 +(noun)|pork|appropriation +pork belly|1 +(noun)|side of pork +pork butcher|1 +(noun)|butcher|meatman +pork loin|1 +(noun)|cut of pork +pork pie|2 +(noun)|pasty +(noun)|porkpie|porkpie hat|hat|chapeau|lid +pork roast|1 +(noun)|roast pork|roast|joint +pork sausage|1 +(noun)|sausage +pork tenderloin|1 +(noun)|tenderloin|undercut +porkchop|1 +(noun)|chop +porker|1 +(noun)|hog|pig|grunter|squealer|Sus scrofa +porkfish|1 +(noun)|pork-fish|Anisotremus virginicus|grunt +porkholt|1 +(noun)|goulash|Hungarian goulash|gulyas +porkpie|1 +(noun)|porkpie hat|hat|chapeau|lid +porkpie hat|1 +(noun)|porkpie|hat|chapeau|lid +porn|1 +(noun)|pornography|porno|erotica|smut|creation|creative activity +porn merchant|1 +(noun)|pornographer|showman|promoter|impresario +porno|1 +(noun)|pornography|porn|erotica|smut|creation|creative activity +pornographer|1 +(noun)|porn merchant|showman|promoter|impresario +pornographic|1 +(adj)|sexy +pornography|1 +(noun)|porno|porn|erotica|smut|creation|creative activity +poronotus|1 +(noun)|Poronotus|genus Poronotus|fish genus +poronotus triacanthus|1 +(noun)|dollarfish|Poronotus triacanthus|butterfish|stromateid fish|stromateid +poroporo|1 +(noun)|kangaroo apple|Solanum aviculare|nightshade +porose|1 +(adj)|porous |poriferous +porosity|1 +(noun)|porousness|consistency|consistence|body +porous|3 +(adj)|permeable +(adj)|porous |poriferous|porose +(adj)|holey|leaky +porousness|1 +(noun)|porosity|consistency|consistence|body +porphyra|1 +(noun)|Porphyra|genus Porphyra|protoctist genus +porphyria|1 +(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +porphyrin|1 +(noun)|pigment +porphyrio|1 +(noun)|Porphyrio|genus Porphyrio|bird genus +porphyrio porphyrio|1 +(noun)|European gallinule|Porphyrio porphyrio|purple gallinule +porphyritic|1 +(adj)|igneous rock +porphyritic rock|1 +(noun)|porphyry|igneous rock +porphyrula|1 +(noun)|Porphyrula|genus Porphyrula|bird genus +porphyrula martinica|1 +(noun)|American gallinule|Porphyrula martinica|purple gallinule +porphyry|1 +(noun)|porphyritic rock|igneous rock +porpoise|1 +(noun)|dolphin +porpoise oil|1 +(noun)|animal oil +porridge|1 +(noun)|dish +porringer|1 +(noun)|bowl +port|13 +(adj)|larboard|left +(noun)|geographic point|geographical point +(noun)|port wine|fortified wine +(noun)|embrasure|porthole|opening +(noun)|larboard|side +(noun)|interface|computer circuit +(verb)|transfer +(verb)|turn +(verb)|land|set down +(verb)|turn +(verb)|transport|carry +(verb)|transport|carry +(verb)|drink|booze|fuddle +port-access coronary bypass surgery|1 +(noun)|closed-heart surgery +port-au-prince|1 +(noun)|Port-au-Prince|Haitian capital|national capital +port-of-spain|2 +(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital +(noun)| +port-wine stain|1 +(noun)|nevus flammeus|birthmark|nevus +port arthur|2 +(noun)|Lushun|Port Arthur|city|metropolis|urban center|port +(noun)|Port Arthur|pitched battle +port jackson fig|1 +(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree +port jackson heath|1 +(noun)|Port Jackson heath|Epacris purpurascens|epacris +port jackson pine|1 +(noun)|Port Jackson pine|Callitris cupressiformis|cypress pine +port louis|1 +(noun)|Port Louis|national capital|port +port moresby|1 +(noun)|Port Moresby|capital of Papua New Guinea|national capital +port of call|1 +(noun)|seaport|haven|harbor|harbour +port of entry|1 +(noun)|point of entry|port +port of spain|2 +(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital +(noun)| +port orford cedar|2 +(noun)|Port Orford cedar|cedar|cedarwood +(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar|cedar tree +port sudan|1 +(noun)|Port Sudan|city|metropolis|urban center|port +port vila|1 +(noun)|Port Vila|Vila|capital of Vanuatu|national capital +port watcher|2 +(noun)|portwatcher|watchman|watcher|security guard +(noun)| +port wine|1 +(noun)|port|fortified wine +porta|1 +(noun)|orifice|opening|passage|passageway +porta hepatis|1 +(noun)|orifice|opening|porta +portability|1 +(noun)|movability|movableness +portable|3 +(adj)|portable |man-portable|movable|takeout|take-away +(adj)|outboard +(noun)|typewriter +portable computer|1 +(noun)|personal computer|PC|microcomputer +portable saw|1 +(noun)|circular saw|buzz saw +portacaval shunt|1 +(noun)|shunt +portage|3 +(noun)|cost +(noun)|track|cart track|cartroad +(noun)|carry +portal|3 +(noun)|entrance|entranceway|entryway|entry|entree +(noun)|portal site|web site|internet site|site +(noun)|portal vein|hepatic portal vein|vena portae|vein|vena|venous blood vessel +portal hypertension|1 +(noun)|malignant hypertension +portal site|1 +(noun)|portal|web site|internet site|site +portal system|1 +(noun)|vascular system +portal vein|1 +(noun)|hepatic portal vein|portal|vena portae|vein|vena|venous blood vessel +portcullis|1 +(noun)|gate +porte|1 +(noun)|Porte|Sublime Porte|court|royal court +porte-cochere|2 +(noun)|entrance|entranceway|entryway|entry|entree +(noun)|canopy +portend|1 +(verb)|bode|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +portent|1 +(noun)|omen|presage|prognostic|prognostication|prodigy|augury|sign|foretoken|preindication +portentous|3 +(adj)|prodigious|significant |important +(adj)|fateful|foreboding|prophetic |prophetical +(adj)|grandiloquent|overblown|pompous|pontifical|pretentious +porter|8 +(noun)|laborer|manual laborer|labourer|jack +(noun)|doorkeeper|doorman|door guard|hall porter|gatekeeper|ostiary|guard +(noun)|Porter|Katherine Anne Porter|writer|author +(noun)|Porter|Cole Porter|Cole Albert Porter|composer +(noun)|Porter|William Sydney Porter|O. Henry|writer|author +(noun)|Pullman porter|employee +(noun)|porter's beer|ale +(verb)|transport|carry +porter's beer|1 +(noun)|porter|ale +porterage|2 +(noun)|charge +(noun)|carry +porterhouse|1 +(noun)|porterhouse steak|beefsteak +porterhouse steak|1 +(noun)|porterhouse|beefsteak +portfolio|3 +(noun)|case +(noun)|list|listing +(noun)|function|office|part|role +porthole|2 +(noun)|window +(noun)|port|embrasure|opening +portia tree|1 +(noun)|bendy tree|seaside mahoe|Thespesia populnea|tulipwood tree +portico|1 +(noun)|porch +porticoed|1 +(adj)|amphiprostylar|amphiprostyle|amphistylar|apteral +portiere|1 +(noun)|curtain|drape|drapery|mantle|pall +portion|7 +(noun)|part|component part|component|relation +(noun)|part|object|physical object +(noun)|parcel|share|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +(noun)|share|part|percentage|assets +(noun)|fortune|destiny|fate|luck|lot|circumstances|condition +(noun)|helping|serving|small indefinite quantity|small indefinite amount +(verb)|assign|allot|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +portion out|1 +(verb)|share|divvy up|apportion|deal|distribute|give out|hand out +portland|2 +(noun)|Portland|city|metropolis|urban center|port of entry|point of entry +(noun)|Portland|city|metropolis|urban center +portland cement|1 +(noun)|hydraulic cement|Portland cement|cement +portly|1 +(adj)|stout|fat +portmanteau|2 +(noun)|blend|portmanteau word|neologism|neology|coinage +(noun)|Gladstone|Gladstone bag|bag|traveling bag|grip|suitcase +portmanteau word|1 +(noun)|blend|portmanteau|neologism|neology|coinage +porto|1 +(noun)|Porto|Oporto|city|metropolis|urban center|port +porto novo|1 +(noun)|Porto Novo|capital of Benin|national capital +porto rico|2 +(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth +(noun)|Puerto Rico|Porto Rico|island +portrait|3 +(noun)|painting|picture +(noun)|portrayal|portraiture|word picture|word-painting|delineation|depiction|picture|characterization|characterisation +(noun)|portrayal|likeness|semblance +portrait camera|1 +(noun)|camera|photographic camera +portrait lens|1 +(noun)|camera lens|optical lens +portrait painter|1 +(noun)|portraitist|portrayer|limner|painter +portraitist|1 +(noun)|portrait painter|portrayer|limner|painter +portraiture|2 +(noun)|portrayal|portrait|word picture|word-painting|delineation|depiction|picture|characterization|characterisation +(noun)|depiction|delineation|portrayal +portray|4 +(verb)|represent +(verb)|depict|limn|represent|interpret +(verb)|impersonate|act|play|represent +(verb)|present|represent|interpret +portrayal|5 +(noun)|portraiture|portrait|word picture|word-painting|delineation|depiction|picture|characterization|characterisation +(noun)|characterization|enactment|personation|acting|playing|playacting|performing +(noun)|depicting|depiction|portraying|representational process +(noun)|portrait|likeness|semblance +(noun)|depiction|delineation|pictorial representation|picturing +portrayed|1 +(adj)|depicted|pictured|delineated |represented|delineate +portrayer|1 +(noun)|portraitist|portrait painter|limner|painter +portraying|1 +(noun)|depicting|depiction|portrayal|representational process +portsmouth|3 +(noun)|Portsmouth|city|metropolis|urban center|port +(noun)|Portsmouth|town|port +(noun)|Portsmouth|Pompey|port|city|metropolis|urban center +portugal|1 +(noun)|Portugal|Portuguese Republic|European country|European nation +portuguese|3 +(adj)|Portuguese|Lusitanian|European country|European nation +(noun)|Portuguese|Romance|Romance language|Latinian language +(noun)|Portuguese|European +portuguese cypress|1 +(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress|cypress tree +portuguese escudo|1 +(noun)|Portuguese escudo|escudo|Portuguese monetary unit +portuguese guinea|1 +(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country|African nation +portuguese heath|1 +(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica|true heath +portuguese man-of-war|1 +(noun)|Portuguese man-of-war|man-of-war|jellyfish|siphonophore +portuguese monetary unit|1 +(noun)|Portuguese monetary unit|monetary unit +portuguese republic|1 +(noun)|Portugal|Portuguese Republic|European country|European nation +portulaca|1 +(noun)|flower +portulaca grandiflora|1 +(noun)|rose moss|sun plant|Portulaca grandiflora|portulaca +portulaca oleracea|1 +(noun)|common purslane|pussley|pusly|verdolagas|Portulaca oleracea|purslane +portulacaceae|1 +(noun)|Portulacaceae|family Portulacaceae|purslane family|caryophylloid dicot family +portunidae|1 +(noun)|Portunidae|family Portunidae|arthropod family +portunus|1 +(noun)|Portunus|genus Portunus|arthropod genus +portunus puber|1 +(noun)|English lady crab|Portunus puber|swimming crab +portwatcher|1 +(noun)|port watcher|watchman|watcher|security guard +porzana|1 +(noun)|Porzana|genus Porzana|bird genus +porzana porzana|1 +(noun)|spotted crake|Porzana porzana|crake +pose|9 +(noun)|airs|affectedness +(noun)|position|posture|attitude +(noun)|affectation|mannerism|affectedness|pretense|pretence|pretending|simulation|feigning +(verb)|present|constitute|represent|make up|comprise|be +(verb)|model|sit|posture|expose|exhibit|display +(verb)|impersonate|personate|deceive|betray|lead astray +(verb)|posture|behave|acquit|bear|deport|conduct|comport|carry +(verb)|put|set|place|position|lay|move|displace +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +posed|1 +(adj)|posed |expose|exhibit|display +poseidon|1 +(noun)|Poseidon|Greek deity +poser|3 +(noun)|poseur|exhibitionist|show-off +(noun)|model|assistant|helper|help|supporter +(noun)|stumper|toughie|sticker|problem +poseur|1 +(noun)|poser|exhibitionist|show-off +poseuse|1 +(noun)|poseur|poser +posh|1 +(adj)|classy|swish|stylish |fashionable +posing|1 +(noun)|sitting|motion|movement|move|motility +posit|4 +(noun)|postulate|proposition +(verb)|situate|fix|deposit|put|set|place|pose|position|lay +(verb)|submit|state|put forward|propose|suggest|advise +(verb)|postulate|presuppose|suppose +position|18 +(noun)|place|point +(noun)|military position|point +(noun)|view|perspective|orientation +(noun)|posture|attitude|bodily property +(noun)|status|state +(noun)|post|berth|office|spot|billet|place|situation|occupation|business|job|line of work|line +(noun)|spatial relation|relation +(noun)|point +(noun)|role +(noun)|placement|location|locating|positioning|emplacement|activity +(noun)|situation|condition|status +(noun)|place|item|point +(noun)|stance|posture|attitude|mental attitude +(noun)|side|opinion|view +(noun)|stead|place|lieu|function|office|part|role +(noun)|assumption +(verb)|put|set|place|pose|lay +(verb)|put|set|place|pose|lay|move|displace +position effect|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +position paper|2 +(noun)|report|study|written report +(noun)|aide-memoire|memo|memorandum|memoranda +positionable|1 +(adj)|activity +positional|1 +(adj)|point +positional notation|1 +(noun)|positional representation system|numeration system|number system|number representation system|system of numeration +positional representation system|1 +(noun)|positional notation|numeration system|number system|number representation system|system of numeration +positioner|1 +(noun)|rotary actuator|actuator +positioning|2 +(adj)|aligning|orienting |orientating +(noun)|placement|location|locating|position|emplacement|activity +positive|12 +(adj)|positive |affirmative|optimistic|constructive|affirmative|affirmatory|constructive|optimistic|supportive +(adj)|positive |electropositive +(adj)|plus|advantageous +(adj)|positive |confirming +(adj)|prescribed|formal +(adj)|incontrovertible|irrefutable|undeniable +(adj)|positivist|positivistic|empiricism|empiricist philosophy|sensationalism +(adj)|plus +(adj)|cocksure|overconfident|confident +(adj)|convinced|confident|certain +(adj)|favorable|affirmative |affirmatory +(noun)|film|photographic film +positive charge|1 +(noun)|charge|electric charge +positive chemotaxis|1 +(noun)|chemotaxis +positive correlation|1 +(noun)|direct correlation|correlation|correlational statistics +positive feedback|1 +(noun)|regeneration|feedback +positive fraud|1 +(noun)|fraud in fact|fraud +positive identification|1 +(noun)|identification +positive magnetic pole|1 +(noun)|positive pole|north-seeking pole|pole|magnetic pole +positive muon|1 +(noun)|antimuon|antilepton +positive pole|2 +(noun)|terminal|pole +(noun)|positive magnetic pole|north-seeking pole|pole|magnetic pole +positive reinforcer|1 +(noun)|positive reinforcing stimulus|reinforcing stimulus|reinforcer|reinforcement +positive reinforcing stimulus|1 +(noun)|positive reinforcer|reinforcing stimulus|reinforcer|reinforcement +positive stimulus|1 +(noun)|stimulation|stimulus|stimulant|input +positively charged|1 +(adj)|charged +positiveness|1 +(noun)|positivism|positivity +positivism|2 +(noun)|logical positivism|empiricism|empiricist philosophy|sensationalism +(noun)|positivity|quality +positivist|2 +(adj)|positivistic|positive|empiricism|empiricist philosophy|sensationalism +(noun)|rationalist|nonreligious person +positivistic|1 +(adj)|positivist|positive|empiricism|empiricist philosophy|sensationalism +positivity|1 +(noun)|positivism|quality +positron|1 +(noun)|antielectron|antilepton +positron emission tomography|1 +(noun)|PET|imaging|tomography +positron emission tomography scanner|1 +(noun)|PET scanner|tomograph +posology|1 +(noun)|pharmacology|pharmacological medicine|materia medica +posse|1 +(noun)|posse comitatus|police|police force|constabulary|law +posse comitatus|1 +(noun)|posse|police|police force|constabulary|law +posseman|1 +(noun)|man|adult male +possess|3 +(verb)|have|feature +(verb)|own|have +(verb)|dominate +possessed|2 +(adj)|obsessed|controlled +(adj)|amuck|amok|berserk|demoniac|demoniacal|insane +possession|6 +(noun)|ownership|control +(noun)|enchantment|spell|trance +(noun)|monomania|mania|passion|cacoethes +(noun)|district|territory|territorial dominion|dominion +(noun)|self-control|self-possession|willpower|self-command|self-will|resoluteness|firmness|resolve|resolution +(noun)|control +possessive|3 +(adj)|genitive|oblique|oblique case +(adj)|acquisitive +(adj)|dominant +possessive case|1 +(noun)|genitive|genitive case|oblique|oblique case +possessiveness|1 +(noun)|greed +possessor|1 +(noun)|owner|person|individual|someone|somebody|mortal|human|soul +posset|1 +(noun)|drink +possibility|4 +(noun)|expectation|outlook|prospect +(noun)|possibleness|being|beingness|existence +(noun)|hypothesis|theory|concept|conception|construct +(noun)|possible action|opening|option|alternative|choice +possible|5 +(adj)|possible |accomplishable|achievable|doable|realizable|affirmable|assertable|allegeable|attainable|come-at-able|gettable|getable|attemptable|conceivable|contingent|feasible|executable|practicable|viable|workable|fermentable|mathematical|researchable|likely|practical|realistic|thinkable +(adj)|potential |latent +(adj)|conceivable|imaginable|thinkable +(noun)|possibility|possible action|opening +(noun)|applicant|applier +possible action|1 +(noun)|possibility|opening|option|alternative|choice +possibleness|1 +(noun)|possibility|being|beingness|existence +possibly|2 +(adv)|perchance|perhaps|maybe|mayhap|peradventure +(adv)|potentially +possum|2 +(noun)|opossum|marsupial|pouched mammal +(noun)|phalanger|opossum|marsupial|pouched mammal +possum haw|1 +(noun)|bearberry|winterberry|Ilex decidua|holly +possum oak|1 +(noun)|water oak|Quercus nigra|oak|oak tree +possumwood|1 +(noun)|American persimmon|Diospyros virginiana|persimmon|persimmon tree +post|23 +(noun)|station|position|place +(noun)|military post|military installation +(noun)|position|berth|office|spot|billet|place|situation|occupation|business|job|line of work|line +(noun)|upright|vertical +(noun)|Post|Wiley Post|aviator|aeronaut|airman|flier|flyer +(noun)|Post|Emily Post|Emily Price Post|writer|author +(noun)|Post|C. W. Post|Charles William Post|food manufacturer +(noun)|mail|collection|aggregation|accumulation|assemblage +(noun)|stake|visual signal +(noun)|mail|mail service|postal service|communication|communicating +(noun)|delivery|bringing +(verb)|affix|stick on +(verb)|announce|denote +(verb)|delegate|designate|depute|assign +(verb)|station|base|send|place|move|displace +(verb)|record|enter|put down +(verb)|list +(verb)|carry|transfer +(verb)|ride horseback +(verb)|stake|mark +(verb)|put up|install|instal|put in|set up +(verb)|mail|send|transfer +(verb)|brand|call +post-free|2 +(adj)|paid +(adv)|post-paid +post-hole digger|1 +(noun)|posthole digger|shovel +post-impressionist|2 +(noun)|Postimpressionist|Post-impressionist|painter +(noun)| +post-it|1 +(noun)|Post-It|notepaper +post-obit bond|1 +(noun)|bond|bond certificate +post-office box|1 +(noun)|POB|call box|letter box|compartment +post-office box number|1 +(noun)|PO box number|PO Box No|mailing address +post-paid|1 +(adv)|post-free +post-rotational nystagmus|1 +(noun)|nystagmus +post and lintel|1 +(noun)|structure|construction +post card|2 +(noun)|postcard|postal card|mailing-card|card +(noun)| +post chaise|1 +(noun)|carriage|equipage|rig +post doc|3 +(noun)|postdoc|grant-in-aid +(noun)|postdoc|scholar|scholarly person|student|research worker|researcher|investigator +(noun)| +post exchange|1 +(noun)|PX|commissary +post hoc|1 +(noun)|post hoc ergo propter hoc|logical fallacy +post hoc ergo propter hoc|1 +(noun)|post hoc|logical fallacy +post hole|2 +(noun)|posthole|hole +(noun)| +post horn|1 +(noun)|wind instrument|wind +post horse|1 +(noun)|poster|horse|Equus caballus +post meridiem|2 +(adj)|p.m.|pm|postmeridian +(adv)|P.M.|PM +post oak|1 +(noun)|box white oak|brash oak|iron oak|Quercus stellata|oak|oak tree +post office|3 +(noun)|local post office|branch|subdivision|arm +(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency +(noun)|child's game +post road|1 +(noun)|road|route +postage|2 +(noun)|charge +(noun)|postage stamp|stamp|token|item +postage meter|1 +(noun)|meter +postage stamp|1 +(noun)|postage|stamp|token|item +postal|1 +(adj)|communication|communicating +postal card|1 +(noun)|postcard|post card|mailing-card|card +postal clerk|1 +(noun)|mail clerk|clerk +postal code|1 +(noun)|zip code|postcode|code +postal order|1 +(noun)|money order|draft|bill of exchange|order of payment +postal rate commission|1 +(noun)|Postal Rate Commission|independent agency +postal service|1 +(noun)|mail|mail service|post|communication|communicating +postbag|1 +(noun)|mailbag|bag +postbox|1 +(noun)|mailbox|letter box|maildrop +postcard|1 +(noun)|post card|postal card|mailing-card|card +postcava|1 +(noun)|inferior vena cava|vena cava +postcentral gyrus|1 +(noun)|central gyrus +postcode|1 +(noun)|zip code|postal code|code +postdate|2 +(verb)|follow +(verb)|chronologize|chronologise +postdoc|2 +(noun)|post doc|grant-in-aid +(noun)|post doc|scholar|scholarly person|student|research worker|researcher|investigator +poste restante|2 +(noun)|general delivery|unit|social unit +(noun)|note|annotation|notation +posted|1 +(adj)|announce|denote +poster|3 +(noun)|posting|placard|notice|bill|card|sign +(noun)|bill poster|bill sticker|worker +(noun)|post horse|horse|Equus caballus +poster board|2 +(noun)|paperboard|posterboard|cardboard|composition board +(noun)| +poster boy|1 +(noun)|poster child +poster child|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +poster color|1 +(noun)|tempera|poster paint|poster colour|water-base paint +poster colour|1 +(noun)|tempera|poster paint|poster color|water-base paint +poster girl|1 +(noun)|poster child +poster paint|1 +(noun)|tempera|poster color|poster colour|water-base paint +posterboard|1 +(noun)|paperboard|poster board|cardboard|composition board +posterior|3 +(adj)|posterior |back|hind|hinder|caudal|retral|back +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|back tooth|tooth +posterior cardinal vein|1 +(noun)|cardinal vein +posterior cerebral artery|1 +(noun)|cerebral artery|arteria cerebri +posterior facial vein|1 +(noun)|retromandibular vein|vena retromandibularis|facial vein|vena facialis +posterior labial veins|1 +(noun)|venae labiales posteriores|labial vein|vena labialis +posterior meningeal artery|1 +(noun)|meningeal artery|arteria meningea +posterior naris|1 +(noun)|naris +posterior pituitary|1 +(noun)|posterior pituitary gland|neurohypophysis|pars nervosa|endocrine gland|endocrine|ductless gland +posterior pituitary gland|1 +(noun)|posterior pituitary|neurohypophysis|pars nervosa|endocrine gland|endocrine|ductless gland +posterior serratus muscle|1 +(noun)|serratus posterior|musculus serratus posterior|serratus|serratus muscles +posterior synechia|1 +(noun)|synechia +posterior temporal artery|1 +(noun)|arteria temporalis posterior|temporal artery +posterior vein of the left ventricle|1 +(noun)|vena posterior ventriculi sinistri|vein|vena|venous blood vessel +posteriority|2 +(noun)|position|spatial relation +(noun)|subsequentness|subsequence|lateness +posterity|2 +(noun)|descendants|biological group +(noun)|generation +postern|1 +(noun)|gate +postexilic|1 +(adj)|exile|deportation|expatriation|transportation +postfix|1 +(noun)|suffix|affix|ending|termination +postfix notation|1 +(noun)|suffix notation|reverse Polish notation|parenthesis-free notation +postganglionic|1 +(adj)|neural structure +postgraduate|2 +(adj)|graduate|high +(noun)|graduate student|grad student|collegian|college man|college boy +posthitis|1 +(noun)|inflammation|redness|rubor +posthole|1 +(noun)|post hole|hole +posthole digger|1 +(noun)|post-hole digger|shovel +posthumous|1 +(adj)|late +posthumous birth|2 +(noun)|birth|nativity|nascency|nascence +(noun)|birth|nativity|nascency|nascence +posthypnotic amnesia|1 +(noun)|selective amnesia +posthypnotic suggestion|1 +(noun)|suggestion +postiche|2 +(noun)|hairpiece|false hair|attire|garb|dress +(noun)|fake|sham|imitation|counterfeit|forgery +postictal|1 +(adj)|attack +postilion|1 +(noun)|postillion|horseman|equestrian|horseback rider +postillion|1 +(noun)|postilion|horseman|equestrian|horseback rider +postimpressionist|1 +(noun)|Postimpressionist|Post-impressionist|painter +postindustrial|1 +(adj)|industrial +posting|3 +(noun)|poster|placard|notice|bill|card|sign +(noun)|list|listing +(noun)|mailing|transmission|transmittal|transmitting +postman|1 +(noun)|mailman|mail carrier|letter carrier|carrier|deliveryman|delivery boy|deliverer +postmark|2 +(noun)|marker|marking|mark +(verb)|frank|stamp +postmaster|1 +(noun)|master +postmaster general|1 +(noun)|official|functionary +postmature infant|1 +(noun)|neonate|newborn|newborn infant|newborn baby +postmenopausal|1 +(adj)|biological time +postmeridian|1 +(adj)|postmeridian |post meridiem|p.m.|pm +postmillennial|1 +(adj)|doctrine|philosophy|philosophical system|school of thought|ism +postmistress|1 +(noun)|postmaster +postmodern|1 +(adj)|postmodernist|genre +postmodernism|1 +(noun)|genre +postmodernist|1 +(adj)|postmodern|genre +postmortal|1 +(adj)|postmortem +postmortem|4 +(adj)|postmortem |postmortal +(adj)|succeeding +(noun)|discussion|give-and-take|word +(noun)|autopsy|necropsy|PM|postmortem examination|examination|scrutiny +postmortem examination|1 +(noun)|autopsy|necropsy|postmortem|PM|examination|scrutiny +postnasal drip|1 +(noun)|symptom +postnatal|1 +(adj)|postnatal |postpartum +postnuptial|1 +(adj)|postnuptial |ceremony|ceremonial|ceremonial occasion|observance +postoperative|1 +(adj)|surgical |operative +postpaid|1 +(adj)|prepaid|paid +postpartum|1 +(adj)|postnatal +postpone|1 +(verb)|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off|delay +postponed|1 +(adj)|deferred|delayed +postponement|2 +(noun)|delay|hold|time lag|wait|pause|intermission|break|interruption|suspension +(noun)|deferment|deferral|delay|holdup +postponer|1 +(noun)|procrastinator|cunctator|delayer +postpose|1 +(verb)|put|set|place|pose|position|lay +postposition|1 +(noun)|place|position +postpositive|1 +(adj)|place|position +postprandial|1 +(adj)|postprandial +postscript|2 +(noun)|PS|note|annotation|notation +(noun)|addendum|supplement|matter +posttraumatic amnesia|1 +(noun)|anterograde amnesia|amnesia|memory loss|blackout +posttraumatic epilepsy|1 +(noun)|traumatic epilepsy|epilepsy +posttraumatic stress disorder|1 +(noun)|PTSD|anxiety disorder +postulant|1 +(noun)|petitioner|suppliant|supplicant +postulate|4 +(noun)|posit|proposition +(verb)|contend|claim +(verb)|posit|presuppose|suppose +(verb)|necessitate|ask|need|require|take|involve|call for|demand +postulation|2 +(noun)|predication|declaration +(noun)|request|petition|message|content|subject matter|substance +postulational|1 +(adj)|axiomatic|axiomatical +postulator|2 +(noun)|clergyman|reverend|man of the cloth +(noun)|asserter|declarer|affirmer|asseverator|avower +postum|1 +(noun)|Postum|coffee substitute +postural|1 +(adj)|bodily property +postural hypotension|1 +(noun)|orthostatic hypotension|hypotension +posture|6 +(noun)|position|attitude|bodily property +(noun)|carriage|bearing|bodily property +(noun)|position|stance|attitude|mental attitude +(noun)|military capability|military strength|strength|military posture|capability|capableness +(verb)|pose|behave|acquit|bear|deport|conduct|comport|carry +(verb)|model|pose|sit|expose|exhibit|display +posturing|1 +(noun)|conceit|vanity +postwar|1 +(adj)|postwar +posy|1 +(noun)|bouquet|corsage|nosegay|flower arrangement +pot|10 +(noun)|cooking utensil|cookware|vessel +(noun)|toilet|can|commode|crapper|potty|stool|throne|plumbing fixture +(noun)|potful|containerful +(noun)|flowerpot|container +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|jackpot|kitty|stake|stakes|bet|wager +(noun)|potbelly|bay window|corporation|tummy|belly|paunch +(noun)|potentiometer|potential divider|voltage divider +(noun)|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(verb)|implant|engraft|embed|imbed|plant +pot-au-feu|1 +(noun)|stew +pot-trained|1 +(adj)|potty-trained|toilet-trained|trained +pot cheese|1 +(noun)|cottage cheese|farm cheese|farmer's cheese|cheese +pot farm|1 +(noun)|garden +pot likker|1 +(noun)|liquor|pot liquor|broth|stock +pot liquor|1 +(noun)|liquor|pot likker|broth|stock +pot marigold|1 +(noun)|common marigold|ruddles|Scotch marigold|Calendula officinalis|calendula +pot marjoram|1 +(noun)|oregano|marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum +pot metal|2 +(noun)|cast iron +(noun)|alloy|metal +pot plant|1 +(noun)|plant|flora|plant life +pot roast|1 +(noun)|roast|joint +potable|2 +(adj)|drinkable +(noun)|beverage|drink|drinkable|food|nutrient|liquid +potage|1 +(noun)|pottage|soup +potage st. germain|1 +(noun)|green pea soup|potage St. Germain|soup +potamogale|1 +(noun)|otter shrew|Potamogale velox|insectivore +potamogale velox|1 +(noun)|otter shrew|potamogale|Potamogale velox|insectivore +potamogalidae|1 +(noun)|Potamogalidae|family Potamogalidae|mammal family +potamogeton|1 +(noun)|Potamogeton|genus Potamogeton|monocot genus|liliopsid genus +potamogeton americanus|1 +(noun)|loddon pondweed|Potamogeton nodosus|Potamogeton americanus|pondweed +potamogeton crispus|1 +(noun)|curleyleaf pondweed|curled pondweed|Potamogeton crispus|pondweed +potamogeton gramineous|1 +(noun)|variously-leaved pondweed|Potamogeton gramineous|pondweed +potamogeton nodosus|1 +(noun)|loddon pondweed|Potamogeton nodosus|Potamogeton americanus|pondweed +potamogetonaceae|1 +(noun)|Potamogetonaceae|family Potamogetonaceae|pondweed family|monocot family|liliopsid family +potamophis|1 +(noun)|Potamophis|genus Potamophis|reptile genus +potamophis striatula|1 +(noun)|eastern ground snake|Potamophis striatula|Haldea striatula|colubrid snake|colubrid +potash|1 +(noun)|caustic potash|potassium hydroxide|hydroxide|hydrated oxide +potash alum|1 +(noun)|alum|potassium alum|aluminum|aluminium|Al|atomic number 13|double salt +potassium|1 +(noun)|K|atomic number 19|metallic element|metal +potassium-argon dating|1 +(noun)|dating|geological dating +potassium acid carbonate|1 +(noun)|potassium bicarbonate|potassium hydrogen carbonate|bicarbonate|hydrogen carbonate +potassium alum|1 +(noun)|alum|potash alum|aluminum|aluminium|Al|atomic number 13|double salt +potassium bicarbonate|1 +(noun)|potassium acid carbonate|potassium hydrogen carbonate|bicarbonate|hydrogen carbonate +potassium bromide|1 +(noun)|salt|restrainer +potassium carbonate|1 +(noun)|carbonate +potassium chlorate|1 +(noun)|salt +potassium chloride|1 +(noun)|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride +potassium cyanide|1 +(noun)|cyanide +potassium dichromate|1 +(noun)|salt +potassium ferrocyanide|1 +(noun)|yellow prussiate of potash|ferrocyanide +potassium hydrogen carbonate|1 +(noun)|potassium bicarbonate|potassium acid carbonate|bicarbonate|hydrogen carbonate +potassium hydrogen tartrate|1 +(noun)|cream of tartar|tartar|salt +potassium hydroxide|1 +(noun)|potash|caustic potash|hydroxide|hydrated oxide +potassium iodide|1 +(noun)|iodide +potassium nitrate|1 +(noun)|saltpeter|saltpetre|niter|nitre|nitrate +potassium permanganate|1 +(noun)|permanganate of potash|permanganate +potation|2 +(noun)|draft|draught|tipple|drink +(noun)|drinking|imbibing|imbibition +potato|2 +(noun)|white potato|Irish potato|murphy|spud|tater|root vegetable|solanaceous vegetable +(noun)|white potato|white potato vine|Solanum tuberosum|vine +potato bean|3 +(noun)|yam bean|Pachyrhizus tuberosus|vine +(noun)|groundnut|groundnut vine|Indian potato|wild bean|Apios americana|Apios tuberosa|vine +(noun)|groundnut|wild bean|tuber +potato beetle|1 +(noun)|Colorado potato beetle|Colorado beetle|potato bug|Leptinotarsa decemlineata|leaf beetle|chrysomelid +potato blight|1 +(noun)|potato mold|potato disease|potato mildew|potato murrain|blight +potato bug|1 +(noun)|Colorado potato beetle|Colorado beetle|potato beetle|Leptinotarsa decemlineata|leaf beetle|chrysomelid +potato chip|1 +(noun)|chip|crisp|Saratoga chip|snack food +potato disease|1 +(noun)|potato blight|potato mold|potato mildew|potato murrain|blight +potato family|1 +(noun)|Solanaceae|family Solanaceae|asterid dicot family +potato fern|2 +(noun)|Marattia salicina|fern +(noun)|Solanopteris bifrons|fern +potato fungus|1 +(noun)|Pellicularia filamentosa|Rhizoctinia solani|fungus +potato mildew|1 +(noun)|potato blight|potato mold|potato disease|potato murrain|blight +potato mold|1 +(noun)|potato blight|potato disease|potato mildew|potato murrain|blight +potato mosaic|1 +(noun)|mosaic +potato moth|1 +(noun)|potato tuber moth|splitworm|Phthorimaea operculella|gelechiid|gelechiid moth +potato murrain|1 +(noun)|potato blight|potato mold|potato disease|potato mildew|blight +potato nose|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|hammer nose|copper nose|rhinopathy +potato pancake|1 +(noun)|latke|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +potato peel|1 +(noun)|potato skin|potato peelings|snack food +potato peelings|1 +(noun)|potato skin|potato peel|snack food +potato race|1 +(noun)|race +potato salad|1 +(noun)|salad +potato scab bacteria|1 +(noun)|Streptomyces scabies|streptomyces +potato skin|1 +(noun)|potato peel|potato peelings|snack food +potato tree|2 +(noun)|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub|bush +(noun)|Solanum crispum|vine +potato tuber moth|1 +(noun)|potato moth|splitworm|Phthorimaea operculella|gelechiid|gelechiid moth +potato tuberworm|1 +(noun)|Phthorimaea operculella|caterpillar +potato vine|2 +(noun)|giant potato creeper|Solanum wendlandii|vine +(noun)|Solanum jasmoides|vine +potato wart|1 +(noun)|plant disease +potato wart fungus|1 +(noun)|Synchytrium endobioticum|fungus +potato worm|1 +(noun)|tomato hornworm|Manduca quinquemaculata|caterpillar +potato yellow-dwarf virus|1 +(noun)|plant virus +potato yellow dwarf|1 +(noun)|yellow dwarf of potato|yellow dwarf +potawatomi|2 +(noun)|Potawatomi|Algonquian|Algonquin +(noun)|Potawatomi|Algonquian|Algonquin|Algonquian language +potbellied|1 +(adj)|abdominous|paunchy|fat +potbelly|2 +(noun)|pot|bay window|corporation|tummy|belly|paunch +(noun)|potbelly stove|stove|kitchen stove|range|kitchen range|cooking stove +potbelly stove|1 +(noun)|potbelly|stove|kitchen stove|range|kitchen range|cooking stove +potboiler|1 +(noun)|literary composition|literary work +potbound|1 +(adj)|rootbound|planted +potboy|1 +(noun)|potman|employee +poteen|1 +(noun)|Irish|Irish whiskey|Irish whisky +potency|3 +(noun)|effectiveness|strength|power|powerfulness +(noun)|potential|potentiality|possibility|possibleness +(noun)|physiological state|physiological condition +potent|4 +(adj)|cogent|powerful|influential +(adj)|strong|powerful +(adj)|potent |strong|effectual|equipotent|multipotent|effective|effectual|efficacious|fertile|powerful +(adj)|potent |virile +potentate|1 +(noun)|dictator|ruler|swayer +potential|4 +(adj)|potential |possible|latent +(adj)|expected|likely|prospective +(noun)|potentiality|potency|possibility|possibleness +(noun)|electric potential|potential difference|potential drop|voltage|electrical phenomenon +potential difference|1 +(noun)|electric potential|potential|potential drop|voltage|electrical phenomenon +potential divider|1 +(noun)|voltage divider|resistor|resistance +potential drop|1 +(noun)|electric potential|potential|potential difference|voltage|electrical phenomenon +potential energy|1 +(noun)|P.E.|mechanical energy +potential unit|1 +(noun)|electromagnetic unit|emu +potentiality|2 +(noun)|potential|potency|possibility|possibleness +(noun)|capability|capableness|aptitude +potentially|1 +(adv)|possibly +potentiate|1 +(verb)|enhance|heighten|raise +potentiation|1 +(noun)|synergy|synergism +potentilla|1 +(noun)|Potentilla|genus Potentilla|rosid dicot genus +potentilla anserina|1 +(noun)|silverweed|goose-tansy|goose grass|Potentilla anserina|cinquefoil|five-finger +potentiometer|2 +(noun)|measuring instrument|measuring system|measuring device +(noun)|pot|potential divider|voltage divider +potently|1 +(adv)|powerfully +poterium|1 +(noun)|Poterium|genus Poterium|rosid dicot genus +poterium sanguisorba|1 +(noun)|salad burnet|burnet bloodwort|pimpernel|Poterium sanguisorba|herb|herbaceous plant +potful|1 +(noun)|pot|containerful +pothead|1 +(noun)|head +pother|3 +(noun)|dither|fuss|tizzy|flap|agitation +(verb)|agitate|rouse|turn on|charge|commove|excite|charge up +(verb)|dither|flap|fuss|niggle|fret +potherb|1 +(noun)|vegetable|veggie +potholder|1 +(noun)|pad +pothole|1 +(noun)|chuckhole|hole|hollow +potholed|1 +(adj)|pocked|pockmarked|rough |unsmooth +potholer|1 +(noun)|spelunker|speleologist|spelaeologist|explorer|adventurer +pothook|1 +(noun)|hook|claw +pothos|2 +(noun)|liana +(noun)|golden pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana +pothouse|1 +(noun)|public house|pub|saloon|gin mill|taphouse|tavern|tap house +pothunter|3 +(noun)|archeologist|archaeologist +(noun)|contestant +(noun)|hunter|huntsman +potion|1 +(noun)|beverage|drink|drinkable|potable +potluck|1 +(noun)|meal|repast +potman|1 +(noun)|potboy|employee +potomac|2 +(noun)|Potomac|Potomac River|river +(noun)|Potomac|Foggy Bottom|Washington|Washington D.C.|American capital|capital of the United States +potomac river|1 +(noun)|Potomac|Potomac River|river +potomania|1 +(noun)|dipsomania|alcoholism|mania|passion|cacoethes +potoroinae|1 +(noun)|Potoroinae|subfamily Potoroinae|mammal family +potoroo|1 +(noun)|rat kangaroo|kangaroo rat +potorous|1 +(noun)|Potorous|genus Potorous|mammal genus +potos|1 +(noun)|Potos|genus Potos|mammal genus +potos caudivolvulus|1 +(noun)|kinkajou|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid +potos flavus|1 +(noun)|kinkajou|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid +potpie|1 +(noun)|dish +potpourri|3 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|motley|collection|aggregation|accumulation|assemblage +(noun)|medley|pastiche|musical composition|opus|composition|piece|piece of music +(noun)|perfume|essence +potsherd|1 +(noun)|shard|sherd|fragment +potshot|2 +(noun)|shooting|shot +(noun)|criticism|unfavorable judgment +pott's disease|1 +(noun)|Pott's disease|tuberculosis|TB|T.B. +pottage|2 +(noun)|stew +(noun)|potage|soup +potted|3 +(adj)|potted +(adj)|preserved +(adj)|abridged +potter|4 +(noun)|thrower|ceramicist|ceramist|craftsman|artisan|journeyman|artificer +(verb)|putter|mess around|tinker|monkey|monkey around|muck about|muck around|work +(verb)|putter|busy|occupy +(verb)|putter|potter around|putter around|move +potter's clay|1 +(noun)|potter's earth|clay +potter's earth|1 +(noun)|potter's clay|clay +potter's field|1 +(noun)|cemetery|graveyard|burial site|burial ground|burying ground|memorial park|necropolis +potter's wheel|1 +(noun)|wheel +potter around|1 +(verb)|putter|potter|putter around|move +potter bee|1 +(noun)|bee +potter wasp|1 +(noun)|vespid|vespid wasp +potterer|1 +(noun)|putterer|dawdler|drone|laggard|lagger|trailer +pottery|3 +(noun)|clayware|ceramic ware +(noun)|trade|craft +(noun)|workshop|shop +pottle|1 +(noun)|pot +potto|2 +(noun)|kinkajou|honey bear|Potos flavus|Potos caudivolvulus|procyonid +(noun)|kinkajou|Perodicticus potto|lemur +potty|5 +(adj)|unimportant +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +(adj)|addlebrained|addlepated|puddingheaded|muddleheaded|confused +(noun)|toilet|can|commode|crapper|pot|stool|throne|plumbing fixture +(noun)|chamberpot|thunder mug|receptacle +potty-trained|1 +(adj)|pot-trained|toilet-trained|trained +potty chair|1 +(noun)|potty seat|toilet|can|commode|crapper|pot|potty|stool|throne +potty seat|1 +(noun)|potty chair|toilet|can|commode|crapper|pot|potty|stool|throne +pouch|6 +(noun)|bag +(noun)|sac|sack|pocket|cavity|enclosed space +(noun)|pocket|sac +(verb)|bag +(verb)|mail|get off +(verb)|bulge|protrude|change shape|change form|deform +pouch-shaped|1 +(adj)|bursiform|pouchlike|saclike|concave +pouched|1 +(adj)|sac +pouched mammal|1 +(noun)|marsupial|metatherian +pouched mole|1 +(noun)|marsupial mole|Notoryctus typhlops|marsupial|pouched mammal +pouched mouse|1 +(noun)|marsupial mouse|marsupial rat|dasyurid marsupial|dasyurid +pouched rat|1 +(noun)|gopher|pocket gopher|pocket rat +pouchlike|1 +(adj)|bursiform|pouch-shaped|saclike|concave +poudrin|1 +(noun)|ice crystal|snow mist|diamond dust|ice needle|frost snow|frost mist|crystal +pouf|2 +(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poof|poove|gay man|shirtlifter +(noun)|ottoman|pouffe|puff|hassock|seat +pouf paste|1 +(noun)|puff batter|pate a choux|batter +pouffe|1 +(noun)|ottoman|pouf|puff|hassock|seat +poulenc|1 +(noun)|Poulenc|Francis Poulenc|composer +poulet|1 +(noun)|chicken|volaille|poultry +poulette|1 +(noun)|sauce +poulterer|1 +(noun)|poultryman|merchant|merchandiser +poultice|2 +(noun)|cataplasm|plaster|dressing|medical dressing +(verb)|plaster|dress +poultry|2 +(noun)|domestic fowl|fowl|gallinaceous bird|gallinacean +(noun)|bird|fowl +poultryman|1 +(noun)|poulterer|merchant|merchandiser +pounce|2 +(noun)|leap|leaping|spring|saltation|bound|bounce +(verb)|swoop|descend|fall|go down|come down +pound|20 +(noun)|lb|avoirdupois unit +(noun)|British pound|pound sterling|quid|British monetary unit +(noun)|Syrian pound|Syrian monetary unit +(noun)|Sudanese pound|Sudanese monetary unit +(noun)|Lebanese pound|Lebanese monetary unit +(noun)|Irish pound|Irish punt|punt|Irish monetary unit +(noun)|Egyptian pound|Egyptian monetary unit +(noun)|Cypriot pound|Cypriot monetary unit +(noun)|lbf.|force unit +(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer|author|poet +(noun)|dog pound|enclosure +(noun)|hammer|hammering|pounding|blow +(verb)|thump|poke|hit +(verb)|ram|ram down|thrust +(verb)|lumber|walk +(verb)|beat|thump|move +(verb)|pound off|partition|partition off +(verb)|pound up|restrain|confine|hold +(verb)|impound|restrain|confine|hold +(verb)|break up|fragment|fragmentize|fragmentise +pound-foolish|1 +(adj)|wasteful +pound cake|1 +(noun)|cake +pound net|1 +(noun)|trap +pound off|1 +(verb)|pound|partition|partition off +pound sterling|1 +(noun)|British pound|pound|quid|British monetary unit +pound up|1 +(verb)|pound|restrain|confine|hold +poundage|4 +(noun)|charge +(noun)|fee +(noun)|weight +(noun)|impoundment|impounding|internment|seizure +poundal|1 +(noun)|pdl|force unit +pounder|2 +(noun)|force unit +(noun)|pestle|muller|tool +pounding|3 +(noun)|buffeting|bump|blow +(noun)|throb|throbbing|pulse|pulsation|heartbeat|beat +(noun)|hammer|pound|hammering|blow +pounds per square inch|1 +(noun)|psi|pressure unit +pour|6 +(verb)|move|displace|pour down +(verb)|swarm|stream|teem|pullulate|crowd|crowd together +(verb)|decant|pour out +(verb)|run|flow|feed|course +(verb)|supply|provide|render|furnish +(verb)|pelt|stream|rain cats and dogs|rain buckets|rain|rain down +pour cold water on|1 +(verb)|throw cold water on|discourage +pour down|1 +(verb)|toss off|pop|bolt down|belt down|down|drink down|kill|drink|imbibe +pour forth|1 +(verb)|spill|shed|pour +pour out|4 +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|decant|pour|pour +(verb)|spill over|spill out|pour|swarm|stream|teem|pullulate +(verb)|effuse|pour +pourboire|1 +(noun)|gratuity|tip|baksheesh|bakshish|bakshis|backsheesh|fringe benefit|perquisite|perk +pouring|1 +(adj)|gushing|running +pousse-cafe|1 +(noun)|liqueur|cordial +poussin|1 +(noun)|Poussin|Nicolas Poussin|old master +pout|5 +(noun)|moue|wry face|grimace|face +(noun)|eelpout|blennioid fish|blennioid +(noun)|horned pout|hornpout|Ameiurus Melas|bullhead +(verb)|sulk|brood +(verb)|mop|mow|grimace|make a face|pull a face +pouter|2 +(noun)|sourpuss|picklepuss|gloomy Gus|unwelcome person|persona non grata +(noun)|pouter pigeon|pigeon +pouter pigeon|1 +(noun)|pouter|pigeon +pouteria|1 +(noun)|Pouteria|genus Pouteria|dicot genus|magnoliopsid genus +pouteria campechiana nervosa|1 +(noun)|canistel|canistel tree|Pouteria campechiana nervosa|fruit tree +pouteria zapota|1 +(noun)|marmalade tree|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree +poverty|1 +(noun)|poorness|impoverishment|financial condition|economic condition +poverty-stricken|1 +(adj)|destitute|impoverished|indigent|necessitous|needy|poor +poverty grass|1 +(noun)|beach heather|Hudsonia tomentosa|subshrub|suffrutex +poverty level|1 +(noun)|poverty line|personal income +poverty line|1 +(noun)|poverty level|personal income +poverty trap|1 +(noun)|situation|position +pow|1 +(noun)|prisoner of war|POW|prisoner|captive +pow camp|1 +(noun)|prison camp|internment camp|prisoner of war camp|POW camp|camp +powder|5 +(noun)|pulverization|pulverisation|solid +(noun)|gunpowder|explosive +(noun)|toiletry|toilet article|toiletries|medicine|medication|medicament|medicinal drug +(verb)|make up +(verb)|powderize|powderise|pulverize|pulverise|disintegrate +powder-post termite|1 +(noun)|Cryptotermes brevis|termite|white ant +powder-puff|1 +(adj)|feminine +powder and shot|1 +(noun)|ammunition|ammo +powder blue|2 +(adj)|chromatic +(noun)|blue|blueness +powder compact|1 +(noun)|compact|case +powder flask|1 +(noun)|powder horn|container +powder horn|1 +(noun)|powder flask|container +powder keg|2 +(noun)|danger +(noun)|keg +powder magazine|1 +(noun)|magazine|powder store|storehouse|depot|entrepot|storage|store +powder metallurgy|1 +(noun)|metallurgy +powder method|1 +(noun)|powder photography|powder technique|photography +powder monkey|1 +(noun)|assistant|helper|help|supporter +powder photography|1 +(noun)|powder method|powder technique|photography +powder room|1 +(noun)|ladies' room|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room +powder store|1 +(noun)|magazine|powder magazine|storehouse|depot|entrepot|storage|store +powder technique|1 +(noun)|powder photography|powder method|photography +powdered|1 +(adj)|powdery|pulverized|pulverised|small-grained|fine-grained|fine +powdered ginger|1 +(noun)|ginger|spice +powdered milk|1 +(noun)|dry milk|dried milk|milk powder|milk +powdered mustard|1 +(noun)|dry mustard|emetic|vomit|vomitive|nauseant|mustard|table mustard +powdered sugar|1 +(noun)|granulated sugar +powderer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +powderiness|1 +(noun)|fineness|smoothness +powderise|2 +(verb)|powderize|pulverize|pulverise|disintegrate +(verb)|powderize|powder|pulverize|pulverise|disintegrate +powderize|2 +(verb)|pulverize|pulverise|powderise|disintegrate +(verb)|powderise|powder|pulverize|pulverise|disintegrate +powderpuff|1 +(noun)|puff|pad +powdery|2 +(adj)|powdered|pulverized|pulverised|small-grained|fine-grained|fine +(adj)|light |light-colored +powdery mildew|1 +(noun)|mildew +powell|2 +(noun)|Powell|Colin Powell|Colin luther Powell|general|full general|statesman|solon|national leader +(noun)|Powell|Cecil Frank Powell|physicist +power|10 +(noun)|powerfulness|quality +(noun)|physical phenomenon +(noun)|ability|cognition|knowledge|noesis +(noun)|world power|major power|great power|superpower|state|nation|country|land|commonwealth|res publica|body politic +(noun)|office|state +(noun)|force|causal agent|cause|causal agency +(noun)|might|mightiness|strength +(noun)|exponent|index|mathematical notation +(noun)|baron|big businessman|business leader|king|magnate|mogul|top executive|tycoon|businessman|man of affairs +(verb)|provide|supply|ply|cater +power-assisted|1 +(adj)|assisted |aided +power-assisted steering|1 +(noun)|power steering|steering system|steering mechanism +power-dive|1 +(verb)|dive|plunge|plunk +power-driven|1 +(adj)|powered +power-station worker|1 +(noun)|power worker|skilled worker|trained worker +power breakfast|1 +(noun)|meeting|get together|breakfast +power broker|2 +(noun)|powerbroker|important person|influential person|personage +(noun)| +power cable|1 +(noun)|power line|cable|line|transmission line +power company|1 +(noun)|power service|electric company|light company|utility|public utility|public-service corporation +power cord|1 +(noun)|cord|electric cord +power couple|1 +(noun)|couple|mates|match +power dive|1 +(noun)|dive|nose dive +power drill|1 +(noun)|power tool|drill +power failure|1 +(noun)|power outage|breakdown|equipment failure +power grid|1 +(noun)|power system|grid|facility|installation +power hammer|1 +(noun)|hammer|power tool +power hunger|1 +(noun)|status seeking|ambition|ambitiousness +power law|1 +(noun)|Stevens' law|Stevens' power law|law|law of nature +power line|1 +(noun)|power cable|cable|line|transmission line +power loading|1 +(noun)|loading +power loom|1 +(noun)|loom +power meter|1 +(noun)|electric meter|meter +power module|1 +(noun)|module +power mower|1 +(noun)|motor mower|lawn mower|mower +power of appointment|1 +(noun)|authority|authorization|authorisation|dominance|say-so +power of attorney|1 +(noun)|legal document|legal instrument|official document|instrument +power outage|1 +(noun)|power failure|breakdown|equipment failure +power pack|1 +(noun)|electrical converter +power plant|1 +(noun)|power station|powerhouse|station +power play|1 +(noun)|squeeze play|squeeze|attempt|effort|endeavor|endeavour|try +power point|1 +(noun)|point|wall socket|wall plug|electric outlet|electrical outlet|outlet|electric receptacle +power politics|1 +(noun)|gunboat diplomacy|diplomacy|diplomatic negotiations +power pylon|1 +(noun)|pylon|tower +power saw|1 +(noun)|saw|sawing machine|power tool +power series|1 +(noun)|series +power service|1 +(noun)|power company|electric company|light company|utility|public utility|public-service corporation +power shovel|1 +(noun)|excavator|digger|shovel|machine +power station|1 +(noun)|power plant|powerhouse|station +power steering|1 +(noun)|power-assisted steering|steering system|steering mechanism +power structure|1 +(noun)|hierarchy|pecking order|organization|organisation +power system|1 +(noun)|power grid|grid|facility|installation +power takeoff|1 +(noun)|PTO|device +power tool|1 +(noun)|machine|tool +power train|1 +(noun)|gearing|gears|geartrain|train|wheelwork +power trip|1 +(noun)|control +power unit|1 +(noun)|electromagnetic unit|emu +power user|1 +(noun)|computer user +power walking|1 +(noun)|cardiopulmonary exercise +power worker|1 +(noun)|power-station worker|skilled worker|trained worker +powerboat|1 +(noun)|motorboat|boat +powerbroker|1 +(noun)|power broker|important person|influential person|personage +powered|1 +(adj)|powered |battery-powered|high-powered|hopped-up|power-driven|steam-powered|supercharged +powerful|6 +(adj)|powerful |almighty|all-powerful|omnipotent|coercive|compelling|mighty|muscular|potent|strong|puissant|regent|regnant|reigning|ruling|effective|effectual|efficacious|potent|strong|strong +(adj)|knock-down|strong +(adj)|cogent|potent|influential +(adj)|brawny|hefty|muscular|sinewy|strong +(adj)|herculean|superhuman +(adv)|mighty|right +powerfully|2 +(adv)|strongly +(adv)|potently +powerfulness|1 +(noun)|power|quality +powerhouse|3 +(noun)|human dynamo|ball of fire|fireball|actor|doer|worker +(noun)|team|squad +(noun)|power station|power plant|station +powerless|1 +(adj)|powerless |weak|feeble|nerveless|helpless|incapacitated|flooded|inundated|overcome|overpowered|overwhelmed|swamped|engulfed|low-powered|impotent|ineffective|uneffective|ineffectual|weak +powerlessness|1 +(noun)|impotence|impotency|quality +powerwash|1 +(verb)|pressure-wash|wash|launder +powhatan|3 +(noun)|Powhatan|Wahunsonacock|Indian chief|Indian chieftain|Algonquian|Algonquin +(noun)|Powhatan|Algonquian|Algonquin +(noun)|Powhatan|Algonquian|Algonquin|Algonquian language +powwow|2 +(noun)|huddle|conference|group discussion +(verb)|hash out|discuss|talk over +pox|2 +(noun)|syphilis|syph|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +(noun)|contagious disease|contagion +poxvirus|1 +(noun)|animal virus +poyou|1 +(noun)|peludo|Euphractus sexcinctus|armadillo +pozsony|1 +(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital +ppk|1 +(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization|terrorist group|foreign terrorist organization|FTO +pplo|1 +(noun)|pleuropneumonialike organism|PPLO|mycoplasma +ppp|1 +(noun)|palatopharyngoplasty|PPP|uvulopalatopharyngoplasty|UPPP|operation|surgery|surgical operation|surgical procedure|surgical process +pr|3 +(noun)|praseodymium|Pr|atomic number 59|metallic element|metal +(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth +(noun)|public relations|PR|promotion|publicity|promotional material|packaging +pr man|1 +(noun)|press agent|publicity man|public relations man|PR man|publicist|publicizer|publiciser +practicability|1 +(noun)|practicableness|utility|usefulness +practicable|2 +(adj)|operable|practical +(adj)|feasible|executable|viable|workable|possible +practicableness|1 +(noun)|practicability|utility|usefulness +practicably|1 +(adv)|feasible +practical|4 +(adj)|practical |applicable|applicative|applicatory|functional|matter-of-fact|pragmatic|pragmatical|operable|practicable|serviceable|unimaginative|useful|working|applied|interoperable|concrete|possible|realistic|serviceable +(adj)|hardheaded|hard-nosed|pragmatic|realistic +(adj)|virtual|realistic +(adj)|applied +practical application|1 +(noun)|application|use|usage|utilization|utilisation|employment|exercise +practical joke|1 +(noun)|antic|joke|prank|trick|caper|put-on +practical joker|1 +(noun)|prankster|cut-up|trickster|tricker|hoaxer|troublemaker|trouble maker|troubler|mischief-maker|bad hat +practical nurse|1 +(noun)|licensed practical nurse|LPN|nurse +practical politics|1 +(noun)|realpolitik|politics|political science|government +practicality|1 +(noun)|utility|usefulness +practically|1 +(adv)|much +practice|9 +(noun)|pattern|activity +(noun)|exercise|drill|practice session|recitation|training|preparation|grooming +(noun)|praxis|implementation|effectuation +(noun)|use|usage|utilization|utilisation|employment|exercise +(noun)|cognition|knowledge|noesis +(verb)|drill|exercise|practise|learn|study|read|take +(verb)|apply|use +(verb)|practise|exercise|do +(verb)|rehearse|practise|perform|execute|do +practice bundling|1 +(verb)|bundle|sleep|kip|slumber|log Z's|catch some Z's +practice game|1 +(noun)|exhibition game|game +practice of law|1 +(noun)|law|learned profession +practice of medicine|1 +(noun)|medicine|learned profession +practice range|1 +(noun)|range +practice session|1 +(noun)|exercise|practice|drill|recitation|training|preparation|grooming +practice teacher|1 +(noun)|student teacher|college student|university student +practiced|2 +(adj)|adept|expert|good|proficient|skillful|skilful|skilled +(adj)|practised|experienced +practician|1 +(noun)|practitioner|professional|professional person +practicing|1 +(adj)|active +practise|3 +(verb)|rehearse|practice|perform|execute|do +(verb)|practice|exercise|do +(verb)|drill|exercise|practice|learn|study|read|take +practised|1 +(adj)|practiced|experienced +practitioner|1 +(noun)|practician|professional|professional person +praenomen|1 +(noun)|first name|given name|forename +praesidium|1 +(noun)|presidium|committee|commission +praetor|1 +(noun)|pretor|judge|justice|jurist|magistrate +praetorial|1 +(adj)|praetorian|pretorian|pretorial|judge|justice|jurist|magistrate +praetorian|2 +(adj)|praetorial|pretorian|pretorial|judge|justice|jurist|magistrate +(adj)|pretorian|corrupt +praetorian guard|2 +(noun)|Praetorian Guard|bodyguard|escort +(noun)|Praetorian Guard|guard|bodyguard +praetorium|1 +(noun)|pretorium|tent|collapsible shelter +praetorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +prag|1 +(noun)|Prague|Praha|Prag|Czech capital|national capital +pragmatic|3 +(adj)|matter-of-fact|pragmatical|practical +(adj)|pragmatical|philosophical doctrine|philosophical theory +(adj)|hardheaded|hard-nosed|practical|realistic +pragmatic sanction|1 +(noun)|imperial decree +pragmatical|2 +(adj)|pragmatic|philosophical doctrine|philosophical theory +(adj)|matter-of-fact|pragmatic|practical +pragmatics|1 +(noun)|linguistics +pragmatism|2 +(noun)|philosophical doctrine|philosophical theory +(noun)|realism|practicality +pragmatist|2 +(noun)|realist +(noun)|realist +prague|1 +(noun)|Prague|Praha|Prag|Czech capital|national capital +praha|1 +(noun)|Prague|Praha|Prag|Czech capital|national capital +praia|1 +(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital +prairia sabbatia|1 +(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia +prairial|1 +(noun)|Prairial|Revolutionary calendar month +prairie|1 +(noun)|grassland +prairie anemone|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +prairie aster|1 +(noun)|Aster turbinellis|aster +prairie berry|1 +(noun)|trompillo|white horse nettle|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +prairie bird's-foot trefoil|1 +(noun)|compass plant|prairie lotus|prairie trefoil|Lotus americanus|subshrub|suffrutex +prairie chicken|1 +(noun)|prairie grouse|prairie fowl|grouse +prairie coneflower|2 +(noun)|Ratibida tagetes|wildflower|wild flower +(noun)|long-head coneflower|Ratibida columnifera|wildflower|wild flower +prairie cordgrass|1 +(noun)|freshwater cordgrass|slough grass|Spartina pectinmata|cordgrass|cord grass +prairie crab|1 +(noun)|Iowa crab|Iowa crab apple|western crab apple|Malus ioensis|wild apple|crab apple|crabapple +prairie dock|1 +(noun)|American feverfew|wild quinine|Parthenium integrifolium|subshrub|suffrutex +prairie dog|1 +(noun)|prairie marmot|rodent|gnawer|gnawing animal +prairie fowl|1 +(noun)|prairie chicken|prairie grouse|grouse +prairie fox|1 +(noun)|kit fox|Vulpes velox|fox +prairie gentian|1 +(noun)|tulip gentian|bluebell|Eustoma grandiflorum|wildflower|wild flower +prairie golden aster|1 +(noun)|hairy golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower|wild flower +prairie gourd|2 +(noun)|fruit +(noun)|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd|gourd vine +prairie gourd vine|1 +(noun)|prairie gourd|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd|gourd vine +prairie grass|1 +(noun)|broom beard grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass +prairie grouse|1 +(noun)|prairie chicken|prairie fowl|grouse +prairie lotus|1 +(noun)|prairie bird's-foot trefoil|compass plant|prairie trefoil|Lotus americanus|subshrub|suffrutex +prairie mallow|1 +(noun)|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow|false mallow +prairie marmot|1 +(noun)|prairie dog|rodent|gnawer|gnawing animal +prairie mimosa|1 +(noun)|prickle-weed|Desmanthus ilinoensis|herb|herbaceous plant +prairie orchid|1 +(noun)|prairie white-fringed orchis|Habenaria leucophaea|fringed orchis|fringed orchid +prairie rattler|1 +(noun)|prairie rattlesnake|Western rattlesnake|Crotalus viridis|rattlesnake|rattler +prairie rattlesnake|1 +(noun)|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake|rattler +prairie rocket|2 +(noun)|flower +(noun)|flower +prairie sage|1 +(noun)|western mugwort|white sage|cudweed|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +prairie sagewort|1 +(noun)|wormwood sage|Artemisia frigida|wormwood +prairie schooner|1 +(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|wagon|waggon +prairie smoke|1 +(noun)|purple avens|Geum triflorum|avens +prairie soil|1 +(noun)|soil|dirt +prairie star|1 +(noun)|Lithophragma parviflorum|wildflower|wild flower +prairie state|1 +(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state +prairie sunflower|1 +(noun)|Helianthus petiolaris|sunflower|helianthus +prairie trefoil|1 +(noun)|prairie bird's-foot trefoil|compass plant|prairie lotus|Lotus americanus|subshrub|suffrutex +prairie trillium|1 +(noun)|prairie wake-robin|Trillium recurvatum|trillium|wood lily|wake-robin +prairie vole|1 +(noun)|Microtus ochrogaster|vole|field mouse +prairie wagon|1 +(noun)|covered wagon|Conestoga wagon|Conestoga|prairie schooner|wagon|waggon +prairie wake-robin|1 +(noun)|prairie trillium|Trillium recurvatum|trillium|wood lily|wake-robin +prairie white-fringed orchid|1 +(noun)|Platanthera leucophea|orchid|orchidaceous plant +prairie white-fringed orchis|1 +(noun)|prairie orchid|Habenaria leucophaea|fringed orchis|fringed orchid +prairie willow|1 +(noun)|Salix humilis|willow|willow tree +prairie wolf|1 +(noun)|coyote|brush wolf|Canis latrans|wolf +praise|3 +(noun)|congratulations|kudos|approval|commendation +(noun)|worship +(verb)|measure|evaluate|valuate|assess|appraise|value +praiseful|1 +(adj)|laudatory|praising|complimentary +praiseworthily|1 +(adv)|admirably|laudably|commendable +praiseworthiness|1 +(noun)|worthiness +praiseworthy|1 +(adj)|applaudable|commendable|laudable|worthy +praising|1 +(adj)|laudatory|praiseful|complimentary +praisworthiness|1 +(noun)|worth +prajapati|1 +(noun)|Prajapati|Hindu deity +prakrit|2 +(noun)|Prakrit|Indic|Indo-Aryan +(noun)|Prakrit|Indic|Indo-Aryan +prakritic|1 +(adj)|Prakritic|Indic|Indo-Aryan +praline|1 +(noun)|candy +pram|1 +(noun)|baby buggy|baby carriage|carriage|perambulator|stroller|go-cart|pushchair|pusher|wheeled vehicle +prance|5 +(noun)|strut|swagger|gait +(verb)|swagger|ruffle|strut|sashay|cock|walk +(verb)|travel|go|move|locomote +(verb)|ride|sit +(verb)|ride horseback +prancer|1 +(noun)|saddle horse|riding horse|mount +prandial|1 +(adj)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +prang|2 +(noun)|crash|wreck +(verb)|crash +prang up|1 +(verb)|impregnate|knock up|bang up|inseminate|fecundate|fertilize|fertilise +prank|4 +(noun)|buffoonery|clowning|frivolity|harlequinade|folly|foolery|tomfoolery|craziness|lunacy|indulgence +(noun)|antic|joke|trick|caper|put-on|diversion|recreation +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +prankish|1 +(adj)|impish|implike|mischievous|pixilated|puckish|playful +prankishness|1 +(noun)|rascality|roguishness|naughtiness|mischievousness|badness +prankster|1 +(noun)|cut-up|trickster|tricker|hoaxer|practical joker|troublemaker|trouble maker|troubler|mischief-maker|bad hat +praseodymium|1 +(noun)|Pr|atomic number 59|metallic element|metal +prat|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +prate|2 +(noun)|prattle|idle talk|blether|chin music|yak|yack|yakety-yak|chatter|cackle +(verb)|chatter|piffle|palaver|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +prater|1 +(noun)|chatterer|babbler|chatterbox|magpie|spouter|speaker|talker|utterer|verbalizer|verbaliser +pratincole|1 +(noun)|glareole|shorebird|shore bird|limicoline bird +prattle|2 +(noun)|prate|idle talk|blether|chin music|yak|yack|yakety-yak|chatter|cackle +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +prattler|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +praunus|1 +(noun)|Praunus|genus Praunus|arthropod genus +pravachol|1 +(noun)|pravastatin|Pravachol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +pravastatin|1 +(noun)|Pravachol|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +prawn|3 +(noun)|shrimp|seafood +(noun)|decapod crustacean|decapod +(verb)|fish +praxis|1 +(noun)|practice|implementation|effectuation +praxiteles|1 +(noun)|Praxiteles|sculptor|sculpturer|carver|statue maker +pray|2 +(verb)|commune +(verb)|beg|implore|plead +praya|1 +(noun)|siphonophore +prayer|5 +(noun)|supplication|worship +(noun)|petition|orison|request|asking +(noun)|entreaty|appeal|request|asking +(noun)|sacred text|sacred writing|religious writing|religious text +(noun)|supplicant|religionist|religious person +prayer beads|1 +(noun)|rosary|beads|string of beads +prayer book|2 +(noun)|prayerbook|book +(noun)| +prayer mat|1 +(noun)|prayer rug|rug|carpet|carpeting +prayer meeting|1 +(noun)|prayer service|service|religious service|divine service +prayer of azariah and song of the three children|1 +(noun)|Prayer of Azariah and Song of the Three Children|book +prayer rug|1 +(noun)|prayer mat|rug|carpet|carpeting +prayer service|1 +(noun)|prayer meeting|service|religious service|divine service +prayer shawl|1 +(noun)|tallith|tallis|shawl +prayer wheel|1 +(noun)|prayer|petition|orison +prayerbook|1 +(noun)|prayer book|book +prayerful|1 +(adj)|pious +praying mantid|1 +(noun)|praying mantis|Mantis religioso|mantis|mantid +praying mantis|1 +(noun)|praying mantid|Mantis religioso|mantis|mantid +prazosin|1 +(noun)|Minipress|antihypertensive|antihypertensive drug|alpha blocker|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent +prc|1 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +pre-columbian|1 +(adj)|pre-Columbian +pre-eclampsia|2 +(noun)|preeclampsia|toxemia of pregnancy|toxaemia of pregnancy|toxemia|toxaemia +(noun)| +pre-eminently|2 +(adv)|preeminently +(adv)| +pre-emption|5 +(noun)|preemption|legal principle|judicial principle|judicial doctrine +(noun)|preemption|legal right +(noun)|preemption|right +(noun)|preemption|appropriation +(noun)| +pre-emptive strike|1 +(noun)|surprise attack|coup de main +pre-emptor|3 +(noun)|preemptor|appropriator +(noun)|preemptor|bidder +(noun)| +pre-existent|2 +(adj)|preexistent|preexisting|pre-existing|antecedent |preceding +(adj)| +pre-existing|2 +(adj)|preexistent|pre-existent|preexisting|antecedent |preceding +(adj)| +pre-raphaelite|2 +(adj)|Pre-Raphaelite|artist|creative person +(noun)|Pre-Raphaelite|artist|creative person +preach|2 +(verb)|prophesy|lecture|talk +(verb)|advocate|urge|urge on|press|exhort +preacher|1 +(noun)|preacher man|sermonizer|sermoniser|clergyman|reverend|man of the cloth +preacher man|1 +(noun)|preacher|sermonizer|sermoniser|clergyman|reverend|man of the cloth +preachification|1 +(noun)|moralizing|moralization|moralisation +preachify|1 +(verb)|sermonize|sermonise|moralize|moralise|preach|advocate +preaching|2 +(noun)|sermon|discourse|address|speech +(noun)|sermon|lecture|speech|talking to +preachment|1 +(noun)|homily|sermon|discourse|preaching +preachy|1 +(adj)|instructive |informative +preadolescent|1 +(adj)|preteen|young |immature +preakness|1 +(noun)|Preakness|thoroughbred race +preamble|2 +(noun)|introduction +(verb)|precede|preface|premise|introduce +preanal|1 +(adj)|orifice|opening|porta +prearrange|1 +(verb)|arrange|set +prearranged|1 +(adj)|planned +prearrangement|1 +(noun)|agreement|arrangement +preassemble|1 +(verb)|prefabricate|produce|make|create +prebend|1 +(noun)|stipend +prebendary|1 +(noun)|canon +precambrian|1 +(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon|aeon +precambrian aeon|1 +(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon|aeon +precambrian eon|1 +(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon|aeon +precambrian period|1 +(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon|aeon +precancerous|1 +(adj)|malignant tumor|malignant neoplasm|metastatic tumor +precarious|4 +(adj)|unstable|uneasy +(adj)|parlous|perilous|touch-and-go|dangerous |unsafe +(adj)|insecure +(adj)|shaky|insecure |unsafe +precariousness|1 +(noun)|dangerousness +precast|1 +(adj)|formed +precative|1 +(adj)|precatory|beseeching +precatory|1 +(adj)|precative|beseeching +precaution|3 +(noun)|safeguard|guard|measure|step +(noun)|circumspection|caution +(noun)|caution|care|forethought|judiciousness +precautional|1 +(adj)|precautionary|preventive |preventative +precautionary|1 +(adj)|precautional|preventive |preventative +precava|1 +(noun)|superior vena cava|vena cava +precede|5 +(verb)|predate|forego|antecede|antedate +(verb)|predate|lie +(verb)|come before +(verb)|lead|travel|go|move|locomote +(verb)|preface|premise|introduce|state|say|tell +precedence|3 +(noun)|precedency|priority|high status +(noun)|priority|antecedence|antecedency|anteriority|precedency|earliness +(noun)|precession|precedency|activity +precedency|3 +(noun)|precedence|priority|high status +(noun)|priority|antecedence|antecedency|anteriority|precedence|earliness +(noun)|precession|precedence|activity +precedent|5 +(adj)|preceding +(noun)|case in point|example|illustration|instance|representative +(noun)|case law|common law|civil law +(noun)|common law|case law|law|jurisprudence +(noun)|subject|topic|theme +precedented|1 +(adj)|precedented +precedential|1 +(adj)|senior +preceding|3 +(adj)|preceding |above|above-mentioned|above-named|foregoing|introductory|prefatorial|prefatory|precedent|preparatory|preparative|propaedeutic|pretrial|previous|old|premedical|antecedent +(adj)|antecedent |anterior|prior|anticipatory|prevenient|preexistent|pre-existent|preexisting|pre-existing +(adj)|past|retiring|outgoing +precentor|1 +(noun)|choirmaster|cantor|musician +precentorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +precentral gyrus|1 +(noun)|central gyrus +precept|2 +(noun)|principle|rule|prescript +(noun)|teaching|commandment|doctrine|philosophy|philosophical system|school of thought|ism +preceptor|1 +(noun)|don|teacher|instructor +preceptorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +precess|1 +(verb)|travel|go|move|locomote +precession|2 +(noun)|motion +(noun)|precedence|precedency|activity +precession of the equinoxes|1 +(noun)|natural process|natural action|action|activity +prechlorination|1 +(noun)|chlorination +precinct|1 +(noun)|city district +preciosity|1 +(noun)|affectedness +precious|4 +(adj)|cherished|treasured|wanted|loved +(adj)|valuable +(adj)|cute|artful +(adv)|preciously +precious coral|1 +(noun)|coral|red coral|opaque gem +precious metal|1 +(noun)|valuable +precious stone|1 +(noun)|jewel|gem|jewelry|jewellery +preciously|1 +(adv)|precious +preciousness|1 +(noun)|invaluableness|pricelessness|valuableness|value +precipice|1 +(noun)|cliff|drop|drop-off +precipitance|1 +(noun)|abruptness|precipitateness|precipitancy|suddenness|haste|hastiness|hurry|hurriedness|precipitation +precipitancy|1 +(noun)|abruptness|precipitateness|precipitance|suddenness|haste|hastiness|hurry|hurriedness|precipitation +precipitant|2 +(adj)|hasty|overhasty|precipitate|precipitous|hurried +(noun)|agent +precipitate|7 +(adj)|hasty|overhasty|precipitant|precipitous|hurried +(noun)|solid +(verb)|change state|turn +(verb)|effect|effectuate|bring about|set up +(verb)|come down|fall +(verb)|descend|fall|go down|come down +(verb)|hurl|hurtle|cast +precipitately|1 +(adv)|headlong +precipitateness|1 +(noun)|abruptness|precipitance|precipitancy|suddenness|haste|hastiness|hurry|hurriedness|precipitation +precipitating|1 +(adj)|causative +precipitation|6 +(noun)|indefinite quantity +(noun)|chemical process|chemical change|chemical action +(noun)|downfall|weather|weather condition|atmospheric condition +(noun)|drop|fall +(noun)|acceleration +(noun)|haste|hastiness|hurry|hurriedness|speed|swiftness|fastness +precipitator|1 +(noun)|Cottrell precipitator|electrical device +precipitin|1 +(noun)|antibody +precipitous|3 +(adj)|hasty|overhasty|precipitate|precipitant|hurried +(adj)|cliffy |clifflike +(adj)|abrupt|sharp|steep +precipitously|1 +(adv)|sharply +precipitousness|1 +(noun)|abruptness|steepness|gradient|slope +precis|2 +(noun)|outline|synopsis|abstract|summary +(verb)|sum up|summarize|summarise|resume +precise|2 +(adj)|precise |dead|fine|finespun|hairsplitting|meticulous|punctilious|microscopic|nice|skillful|on the nose|on the button|pinpoint|very|accurate|distinct|exact|specific +(adj)|accurate|exact|correct +precisely|3 +(adv)|exactly|just +(adv)|incisively|exactly +(adv)|exactly|on the nose|on the dot|on the button +preciseness|2 +(noun)|clearcutness|clarity|lucidity|pellucidity|clearness|limpidity +(noun)|precision|exactness|exactitude +precision|1 +(noun)|preciseness|exactness|exactitude +precision cookie|1 +(noun)|cookie +precision rifle|1 +(noun)|sniper rifle|rifle +preclinical|1 +(adj)|presymptomatic|diagnosis|diagnosing +preclinical phase|1 +(noun)|preclinical trial|preclinical test|test|trial|run +preclinical test|1 +(noun)|preclinical trial|preclinical phase|test|trial|run +preclinical trial|1 +(noun)|preclinical test|preclinical phase|test|trial|run +preclude|2 +(verb)|prevent|forestall|foreclose|forbid +(verb)|rule out|close out|obviate|rid of|eliminate +preclusion|1 +(noun)|obviation|forestalling|prevention|bar +preclusive|1 +(adj)|obviating|preventive |preventative +precocial|1 +(adj)|precocial +precocious|2 +(adj)|precocious |advanced|gifted|talented|intelligent +(adj)|early +precocious dentition|1 +(noun)|teething|dentition|odontiasis +precociousness|1 +(noun)|precocity|intelligence +precocity|1 +(noun)|precociousness|intelligence +precognition|1 +(noun)|foreknowledge|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP +precognitive|1 +(adj)|clairvoyant|second-sighted|prophetic |prophetical +preconceive|1 +(verb)|gestate|conceive|conceptualize|conceptualise +preconceived|1 +(adj)|create by mental act|create mentally +preconceived idea|1 +(noun)|preconception|prepossession|parti pris|preconceived opinion|preconceived notion|opinion|sentiment|persuasion|view|thought +preconceived notion|1 +(noun)|preconception|prepossession|parti pris|preconceived opinion|preconceived idea|opinion|sentiment|persuasion|view|thought +preconceived opinion|1 +(noun)|preconception|prepossession|parti pris|preconceived idea|preconceived notion|opinion|sentiment|persuasion|view|thought +preconception|2 +(noun)|prepossession|parti pris|preconceived opinion|preconceived idea|preconceived notion|opinion|sentiment|persuasion|view|thought +(noun)|bias|prejudice|partiality|partisanship +preconcerted|1 +(adj)|settled +precondition|4 +(noun)|condition|stipulation|premise|premiss|assumption +(noun)|given|presumption|assumption|supposition|supposal +(noun)|prerequisite|requirement +(verb)|fix|prepare|set up|ready|gear up|set +preconditioned|1 +(adj)|prepared +precook|1 +(verb)|cook|fix|ready|make|prepare +precooked|1 +(adj)|prepared +precooled|1 +(adj)|cool +precordial|1 +(adj)|external organ +precordium|1 +(noun)|external organ +precursor|3 +(noun)|substance|matter +(noun)|forerunner|person|individual|someone|somebody|mortal|human|soul +(noun)|harbinger|forerunner|herald|indication|indicant +precursory|1 +(adj)|premonitory|prophetic |prophetical +predaceous|2 +(adj)|predacious|carnivorous +(adj)|predacious|predatory|acquisitive +predacious|2 +(adj)|predaceous|carnivorous +(adj)|predaceous|predatory|acquisitive +predate|4 +(verb)|precede|forego|antecede|antedate +(verb)|precede|lie +(verb)|raven|prey|forage +(verb)|antedate|foredate|chronologize|chronologise +predation|2 +(noun)|depredation|plundering|pillage|pillaging +(noun)|hunt|hunting +predator|2 +(noun)|marauder|vulture|piranha|attacker|aggressor|assailant|assaulter +(noun)|predatory animal|animal|animate being|beast|brute|creature|fauna +predatory|3 +(adj)|marauding|raiding|offensive +(adj)|rapacious|raptorial|ravening|vulturine|vulturous|aggressive +(adj)|predaceous|predacious|acquisitive +predatory animal|1 +(noun)|predator|animal|animate being|beast|brute|creature|fauna +predecease|1 +(verb)|die|decease|perish|go|exit|pass away|expire|pass +predecessor|1 +(noun)|precursor|forerunner +predestinarian|2 +(adj)|theological doctrine|religious doctrine +(noun)|fatalist|determinist|predestinationist|necessitarian +predestinarianism|1 +(noun)|Protestantism +predestinate|2 +(adj)|foreordained|predestined|certain |sure +(verb)|predestine|foreordain|predetermine +predestination|2 +(noun)|destiny|fate +(noun)|foreordination|preordination|predetermination|theological doctrine|religious doctrine +predestinationist|1 +(noun)|fatalist|determinist|predestinarian|necessitarian +predestine|3 +(verb)|ordain +(verb)|predestinate|foreordain|predetermine +(verb)|foreordain|preordain|predetermine +predestined|1 +(adj)|foreordained|predestinate|certain |sure +predeterminaation|1 +(noun)|decision|determination|conclusion +predetermination|2 +(noun)|predestination|foreordination|preordination|theological doctrine|religious doctrine +(noun)|determination|finding +predetermine|2 +(verb)|determine|shape|mold|influence|regulate +(verb)|bias|prejudice|prepossess +predetermined|1 +(adj)|preset|planned +predicament|1 +(noun)|quandary|plight|difficulty +predicate|5 +(noun)|term +(noun)|verb phrase|phrase +(verb)|relate|interrelate +(verb)|proclaim|assert|asseverate|maintain +(verb)|connote|imply +predicate calculus|1 +(noun)|functional calculus|symbolic logic|mathematical logic|formal logic +predication|1 +(noun)|postulation|declaration +predicative|1 +(adj)|predicative +predicator|1 +(noun)|construction|grammatical construction|expression +predict|2 +(verb)|foretell|prognosticate|call|forebode|anticipate|promise|guess|venture|pretend|hazard +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|bespeak|betoken|indicate|point|signal +predictability|1 +(noun)|certainty|sure thing|foregone conclusion +predictable|1 +(adj)|predictable |foreseeable|inevitable|certain|sure +predicted|1 +(adj)|foreseen|foretold|expected +prediction|2 +(noun)|anticipation|prevision|reasoning|logical thinking|abstract thought +(noun)|foretelling|forecasting|prognostication|statement +predictive|1 +(adj)|prognostic|prognosticative|prophetic |prophetical +predictor|3 +(noun)|forecaster|prognosticator|soothsayer|visionary|illusionist|seer +(noun)|information +(noun)|computer|computing machine|computing device|data processor|electronic computer|information processing system +predictor variable|1 +(noun)|variable|variable quantity +predigest|1 +(verb)|digest +predigested|1 +(adj)|digestible +predilection|2 +(noun)|preference|orientation|predisposition +(noun)|preference|penchant|taste|liking +predispose|1 +(verb)|dispose|incline +predisposed|1 +(adj)|susceptible +predisposition|3 +(noun)|sensitivity|susceptibility|susceptibleness +(noun)|inclination|disposition|tendency +(noun)|disposition +prednisolone|1 +(noun)|Pediapred|Prelone|glucocorticoid|anti-inflammatory|anti-inflammatory drug +prednisone|1 +(noun)|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid|anti-inflammatory|anti-inflammatory drug +predominance|2 +(noun)|predomination|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|predomination|obviousness|noticeability|noticeableness|patency +predominant|2 +(adj)|prevailing|frequent +(adj)|overriding|paramount|predominate|preponderant|preponderating|dominant +predominantly|1 +(adv)|preponderantly +predominate|3 +(adj)|overriding|paramount|predominant|preponderant|preponderating|dominant +(verb)|dominate|rule|reign|prevail +(verb)|loom|tower|hulk|rise|lift|rear +predomination|2 +(noun)|predominance|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|predominance|obviousness|noticeability|noticeableness|patency +preeclampsia|1 +(noun)|pre-eclampsia|toxemia of pregnancy|toxaemia of pregnancy|toxemia|toxaemia +preemie|1 +(noun)|premature baby|preterm baby|premature infant|preterm infant|premie|neonate|newborn|newborn infant|newborn baby +preeminence|1 +(noun)|eminence|distinction|note|high status +preeminent|1 +(adj)|greatest|leading|superior +preeminently|1 +(adv)|pre-eminently +preemployment training program|1 +(noun)|training program +preempt|2 +(verb)|get|acquire +(verb)|bid|call +preemption|4 +(noun)|pre-emption|legal principle|judicial principle|judicial doctrine +(noun)|pre-emption|legal right +(noun)|pre-emption|right +(noun)|pre-emption|appropriation +preemptive|1 +(adj)|preventive |preventative +preemptive bid|1 +(noun)|bid|bidding +preemptive right|1 +(noun)|preemption|pre-emption +preemptor|2 +(noun)|pre-emptor|appropriator +(noun)|pre-emptor|bidder +preen|3 +(verb)|plume|arrange|set up|clean|make clean +(verb)|congratulate|gloat|triumph|crow +(verb)|primp|plume|dress|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +preen gland|1 +(noun)|uropygial gland|oil gland +preexist|1 +(verb)|exist|be +preexistence|1 +(noun)|being|beingness|existence +preexistent|1 +(adj)|pre-existent|preexisting|pre-existing|antecedent |preceding +preexisting|1 +(adj)|preexistent|pre-existent|pre-existing|antecedent |preceding +prefab|2 +(adj)|prefabricated|ready-made +(noun)|structure|construction +prefabricate|2 +(verb)|preassemble|produce|make|create +(verb)|produce|make|create +prefabricated|1 +(adj)|prefab|ready-made +prefabrication|1 +(noun)|fabrication|manufacture +preface|2 +(noun)|foreword|prolusion|introduction +(verb)|precede|premise|introduce|state|say|tell +prefaded|1 +(adj)|colorless |colourless +prefatorial|1 +(adj)|introductory|prefatory|preceding +prefatory|1 +(adj)|introductory|prefatorial|preceding +prefect|1 +(noun)|administrator|executive +prefectural|1 +(adj)|administrative district|administrative division|territorial division +prefecture|2 +(noun)|administrative district|administrative division|territorial division +(noun)|position|post|berth|office|spot|billet|place|situation +prefer|4 +(verb)|like +(verb)|choose|opt +(verb)|favor|favour|promote|upgrade|advance|kick upstairs|raise|elevate +(verb)|pay +preferable|1 +(adj)|preferred|desirable +preferably|1 +(adv)|sooner|rather +preference|4 +(noun)|penchant|predilection|taste|liking +(noun)|predilection|orientation|predisposition +(noun)|druthers|option|alternative|choice +(noun)|advantage|vantage +preference shares|1 +(noun)|preferred stock|preferred shares|stock +preferential|1 +(adj)|discriminatory|advantageous +preferment|2 +(noun)|promotion +(noun)|accusation|accusal +preferred|2 +(adj)|preferable|desirable +(adj)|favored|favorite|favourite|pet|loved +preferred shares|1 +(noun)|preferred stock|preference shares|stock +preferred stock|1 +(noun)|preferred shares|preference shares|stock +prefiguration|2 +(noun)|model|example +(noun)|foreshadowing|adumbration|prediction|anticipation|prevision +prefigurative|1 +(adj)|adumbrative|foreshadowing|prophetic |prophetical +prefigure|2 +(verb)|imagine|conceive of|ideate|envisage +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|forecast|predict|bespeak|betoken|indicate|point|signal +prefix|2 +(noun)|affix +(verb)|affix +prefix notation|1 +(noun)|Lukasiewicz notation|Polish notation|parenthesis-free notation +prefixation|1 +(noun)|affixation +preform|2 +(verb)|shape|form|work|mold|mould|forge +(verb)|shape|form|work|mold|mould|forge +preformation|1 +(noun)|theory of preformation|theory +prefrontal|1 +(adj)|anterior +prefrontal leucotomy|1 +(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|frontal lobotomy|psychosurgery +prefrontal leukotomy|1 +(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery +prefrontal lobe|1 +(noun)|lobe +prefrontal lobotomy|1 +(noun)|lobotomy|leukotomy|leucotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery +pregnancy|1 +(noun)|gestation|maternity|physiological state|physiological condition +pregnancy test|1 +(noun)|bioassay +pregnanediol|1 +(noun)|compound|chemical compound +pregnant|3 +(adj)|pregnant |big|enceinte|expectant|gravid|great|large|heavy|with child +(adj)|meaning|significant|meaningful +(adj)|fraught|full +pregnant chad|1 +(noun)|dimpled chad|dimple|chad +preheat|1 +(verb)|heat|heat up +prehend|1 +(verb)|seize|clutch|take|get hold of +prehensile|3 +(adj)|prehensile +(adj)|intelligent +(adj)|avaricious|covetous|grabby|grasping|greedy|acquisitive +prehension|1 +(noun)|grasping|taking hold|seizing|control +prehistoric|3 +(adj)|prehistorical|past +(adj)|time period|period of time|period +(adj)|unfashionable |unstylish +prehistoric culture|1 +(noun)|prehistory|time period|period of time|period +prehistorical|1 +(adj)|prehistoric|past +prehistory|1 +(noun)|prehistoric culture|time period|period of time|period +preindication|1 +(noun)|augury|sign|foretoken|experience +preinvasive cancer|1 +(noun)|carcinoma in situ|carcinoma +preisolate|1 +(verb)|isolate +prejudge|1 +(verb)|judge +prejudgement|1 +(noun)|prejudgment|judgment|judgement|judging +prejudgment|1 +(noun)|prejudgement|judgment|judgement|judging +prejudice|3 +(noun)|bias|preconception|partiality|partisanship +(verb)|disadvantage|disfavor|disfavour +(verb)|prepossess|influence|act upon|work +prejudiced|2 +(adj)|subjective +(adj)|prejudiced |discriminatory|homophobic|jaundiced|loaded|racist|antiblack|anti-Semitic|anti-Semite|sexist +prejudicial|1 +(adj)|damaging|detrimental|prejudicious|harmful +prejudicious|1 +(adj)|damaging|detrimental|prejudicial|harmful +prelacy|2 +(noun)|prelature|clergy +(noun)|prelature|position|post|berth|office|spot|billet|place|situation +prelapsarian|1 +(adj)|descent|gravitation +prelate|1 +(noun)|archpriest|hierarch|high priest|primate|priest +prelature|2 +(noun)|prelacy|clergy +(noun)|prelacy|position|post|berth|office|spot|billet|place|situation +prelim|2 +(noun)|preliminary|athletic contest|athletic competition|athletics +(noun)|preliminary examination|preliminary exam|examination|exam|test +preliminary|3 +(adj)|exploratory |explorative +(noun)|prelim|athletic contest|athletic competition|athletics +(noun)|overture|prelude|origin|origination|inception +preliminary exam|1 +(noun)|preliminary examination|prelim|examination|exam|test +preliminary examination|1 +(noun)|preliminary exam|prelim|examination|exam|test +preliminary prospectus|1 +(noun)|red herring|course catalog|course catalogue|prospectus +prelims|3 +(noun)|front matter|matter +(noun)|preliminary|prelim|athletic contest|athletic competition|athletics +(noun)|preliminary examination|preliminary exam|prelim|examination|exam|test +preliterate|2 +(adj)|illiterate +(adj)|nonliterate|noncivilized |noncivilised +prelone|1 +(noun)|prednisolone|Pediapred|Prelone|glucocorticoid|anti-inflammatory|anti-inflammatory drug +prelude|4 +(noun)|preliminary|overture|origin|origination|inception +(noun)|music +(verb)|serve|function +(verb)|play|spiel +premarital|1 +(adj)|prenuptial |antenuptial|ceremony|ceremonial|ceremonial occasion|observance +premature|3 +(adj)|premature |immature +(adj)|previous|early +(adj)|untimely|early +premature baby|1 +(noun)|preterm baby|premature infant|preterm infant|preemie|premie|neonate|newborn|newborn infant|newborn baby +premature ejaculation|1 +(noun)|ejaculation +premature infant|1 +(noun)|premature baby|preterm baby|preterm infant|preemie|premie|neonate|newborn|newborn infant|newborn baby +premature labor|1 +(noun)|premature labour|parturiency|labor|labour|confinement|lying-in|travail|childbed +premature labour|1 +(noun)|premature labor|parturiency|labor|labour|confinement|lying-in|travail|childbed +premature ventricular contraction|1 +(noun)|PVC|cardiac arrhythmia|arrhythmia +prematurely|1 +(adv)|untimely +prematureness|1 +(noun)|prematurity|immaturity|immatureness +prematurity|1 +(noun)|prematureness|immaturity|immatureness +premedical|2 +(adj)|learned profession +(adj)|preceding +premeditate|2 +(verb)|consider|debate|moot|turn over|deliberate +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +premeditated|1 +(adj)|premeditated |aforethought|planned|plotted|calculated|deliberate|measured|designed|studied|intended|planned +premeditation|2 +(noun)|forethought|planning|preparation|provision +(noun)|mens rea|malice aforethought +premenopausal|1 +(adj)|biological time +premenstrual|1 +(adj)|discharge|emission|expelling +premenstrual syndrome|1 +(noun)|PMS|syndrome +premie|1 +(noun)|premature baby|preterm baby|premature infant|preterm infant|preemie|neonate|newborn|newborn infant|newborn baby +premier|6 +(adj)|prime|first +(adj)|premiere|first +(noun)|Prime Minister|PM|head of state|chief of state +(noun)|chancellor|prime minister|head of state|chief of state +(verb)|premiere +(verb)|premiere|perform|execute|do +premiere|4 +(adj)|premier|first +(noun)|performance|public presentation +(verb)|premier +(verb)|premier|perform|execute|do +premiership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +premise|4 +(noun)|premiss|assumption|postulate|posit +(verb)|set forth|expound|exposit +(verb)|precede|preface|introduce|state|say|tell +(verb)|premiss|presuppose|suppose +premises|2 +(noun)|site|land site +(noun)|premise|premiss|assumption|postulate|posit +premiss|2 +(noun)|premise|assumption|postulate|posit +(verb)|premise|presuppose|suppose +premium|4 +(adj)|superior +(noun)|insurance premium|payment +(noun)|agio|agiotage|exchange premium|charge +(noun)|bounty|reward +premium bond|1 +(noun)|Premium Bond|bond|bond certificate +premix|1 +(noun)|mix|concoction|mixture|intermixture +premolar|1 +(noun)|bicuspid|tooth +premonition|2 +(noun)|foreboding|presentiment|boding|apprehension|apprehensiveness|dread +(noun)|forewarning|warning +premonitory|1 +(adj)|precursory|prophetic |prophetical +prenanthes|1 +(noun)|Prenanthes|genus Prenanthes|asterid dicot genus +prenanthes alba|1 +(noun)|white lettuce|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root +prenanthes purpurea|1 +(noun)|rattlesnake root|Prenanthes purpurea|herb|herbaceous plant +prenanthes serpentaria|1 +(noun)|lion's foot|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb|herbaceous plant +prenatal|1 +(adj)|prenatal |antenatal|antepartum +prenatal diagnosis|1 +(noun)|diagnostic procedure|diagnostic technique +prenominal|1 +(adj)|attributive |attributive genitive +prentice|1 +(noun)|apprentice|learner|novice|beginner|tyro|tiro|initiate +prenuptial|1 +(adj)|prenuptial |premarital|antenuptial|ceremony|ceremonial|ceremonial occasion|observance +preoccupancy|2 +(noun)|preoccupation|absorption|engrossment|cognitive state|state of mind +(noun)|preoccupation|occupation|occupancy|taking possession|moving in +preoccupation|3 +(noun)|idea|thought +(noun)|preoccupancy|absorption|engrossment|cognitive state|state of mind +(noun)|preoccupancy|occupation|occupancy|taking possession|moving in +preoccupied|2 +(adj)|bemused|deep in thought|lost|thoughtful +(adj)|haunted|obsessed|taken up|concerned +preoccupy|2 +(verb)|control|command +(verb)|assume|usurp|seize|take over|arrogate +preoperative|1 +(adj)|surgical |operative +preordain|1 +(verb)|predestine|foreordain|predetermine +preordination|1 +(noun)|predestination|foreordination|predetermination|theological doctrine|religious doctrine +prep|1 +(noun)|homework|preparation|school assignment|schoolwork +prep school|1 +(noun)|preparatory school|secondary school|lyceum|lycee|Gymnasium|middle school +prepackaged|1 +(adj)|prepacked|packaged +prepacked|1 +(adj)|prepackaged|packaged +prepaid|1 +(adj)|postpaid|paid +preparation|8 +(noun)|readying|activity +(noun)|formulation|compound|chemical compound +(noun)|planning|provision|thinking|thought|cerebration|intellection|mentation +(noun)|readiness|preparedness|state +(noun)|harmony|musical harmony +(noun)|training|grooming|activity +(noun)|homework|prep|school assignment|schoolwork +(noun)|cooking|cookery|change of state +preparation fire|1 +(noun)|fire|firing +preparative|1 +(adj)|preparatory|propaedeutic|preceding +preparatory|1 +(adj)|preparative|propaedeutic|preceding +preparatory school|1 +(noun)|prep school|secondary school|lyceum|lycee|Gymnasium|middle school +prepare|8 +(verb)|fix|set up|ready|gear up|set|change|alter|modify +(verb)|cook|fix|ready|make|create from raw material|create from raw stuff +(verb)|make|create +(verb)|organize|organise|devise|get up|machinate|initiate|pioneer +(verb)|groom|train|educate +(verb)|train|develop|educate|teach|learn|instruct +(verb)|sound +(verb)|train|learn|study|read|take +prepare for|1 +(verb)|steel oneself against|steel onself for|brace oneself for|inure|harden|indurate +prepared|3 +(adj)|prepared |braced|embattled|equipped|fitted out|oven-ready|preconditioned|precooked|processed|ready|spread|up|ready +(adj)|disposed|fain|inclined|willing +(adj)|equipped |equipt +preparedness|1 +(noun)|readiness|preparation|state +prepay|1 +(verb)|pay +prepayment|1 +(noun)|payment|defrayal|defrayment +preponderance|3 +(noun)|power|powerfulness +(noun)|prevalence|number|figure +(noun)|heaviness|weightiness +preponderant|1 +(adj)|overriding|paramount|predominant|predominate|preponderating|dominant +preponderantly|1 +(adv)|predominantly +preponderate|1 +(verb)|outweigh|overbalance|outbalance|predominate|dominate|rule|reign|prevail +preponderating|1 +(adj)|overriding|paramount|predominant|predominate|preponderant|dominant +prepose|1 +(verb)|put|set|place|pose|position|lay +preposition|2 +(noun)|function word|closed-class word +(noun)|place|position +prepositional|1 +(adj)|function word|closed-class word +prepositional object|1 +(noun)|object of a preposition|object +prepositional phrase|1 +(noun)|phrase +prepossess|4 +(verb)|own|have|possess +(verb)|preoccupy +(verb)|impress +(verb)|prejudice|influence|act upon|work +prepossessing|1 +(adj)|attractive +prepossession|2 +(noun)|condition|status +(noun)|preconception|parti pris|preconceived opinion|preconceived idea|preconceived notion|opinion|sentiment|persuasion|view|thought +preposterous|1 +(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|ridiculous|foolish +preposterously|1 +(adv)|laughably|ridiculously|ludicrously +preprandial|1 +(adj)|preprandial +prepubertal|1 +(adj)|prepubescent|immature +prepuberty|1 +(noun)|time of life +prepubescent|1 +(adj)|prepubertal|immature +prepuce|2 +(noun)|foreskin|skin|tegument|cutis +(noun)|foreskin|skin|tegument|cutis +prepupal|1 +(adj)|immature +prepyloric vein|1 +(noun)|vena pylorica|vein|vena|venous blood vessel +prerecord|1 +(verb)|record|tape +prerecorded|1 +(adj)|recorded +prerequisite|2 +(adj)|obligatory +(noun)|requirement|duty|responsibility|obligation +prerogative|1 +(noun)|privilege|perquisite|exclusive right|right +pres young|1 +(noun)|Young|Pres Young|Lester Willis Young|saxophonist|saxist +presage|3 +(noun)|foreboding|premonition|presentiment|boding +(noun)|omen|portent|prognostic|prognostication|prodigy|augury|sign|foretoken|preindication +(verb)|bode|portend|auspicate|prognosticate|omen|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +presbyope|1 +(noun)|visually handicapped person +presbyopia|1 +(noun)|hyperopia|hypermetropia|hypermetropy|farsightedness|longsightedness +presbyopic|1 +(adj)|farsighted |eagle-eyed|keen-sighted|farseeing|longsighted|hyperopic|hypermetropic|telescopic +presbyter|1 +(noun)|elder +presbyterian|1 +(noun)|Presbyterian|Protestant +presbyterian church|1 +(noun)|Presbyterian Church|Protestant denomination +presbyterianism|1 +(noun)|Presbyterianism|Protestantism +presbytery|1 +(noun)|building|edifice +presbytes|1 +(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus +presbytes entellus|1 +(noun)|entellus|hanuman|Presbytes entellus|Semnopithecus entellus|langur +preschool|1 +(noun)|educational institution +preschooler|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +prescience|1 +(noun)|prevision|capacity|mental ability +prescient|1 +(adj)|discerning +presciently|1 +(adv)|cannily +prescott|1 +(noun)|Prescott|town +prescribe|1 +(verb)|order|dictate|inflict|bring down|visit|impose +prescribed|4 +(adj)|nonarbitrary |unarbitrary +(adj)|appointed|decreed|ordained|settled +(adj)|official|regular +(adj)|positive|formal +prescript|1 +(noun)|rule|direction|instruction +prescription|5 +(adj)|prescription +(noun)|direction|instruction +(noun)|prescription drug|prescription medicine|ethical drug|medicine|medication|medicament|medicinal drug +(noun)|written communication|written language +(noun)|written communication|written language +prescription drug|1 +(noun)|prescription|prescription medicine|ethical drug|medicine|medication|medicament|medicinal drug +prescription medicine|1 +(noun)|prescription drug|prescription|ethical drug|medicine|medication|medicament|medicinal drug +prescriptive|2 +(adj)|prescriptive |normative +(adj)|normative|standard |received +preseason|1 +(noun)|season +presence|6 +(noun)|being|beingness|existence +(noun)|front|proximity +(noun)|spirit|disembodied spirit +(noun)|impression|feeling|belief|notion|opinion +(noun)|bearing|comportment|mien|manner|personal manner +(noun)|attendance|attending +presence chamber|1 +(noun)|room +presence of mind|1 +(noun)|self-control|self-possession|possession|willpower|self-command|self-will +presenile dementia|1 +(noun)|dementia|dementedness +present|18 +(adj)|present |existing|immediate|instant|inst|latter-day +(adj)|present |attending|in attendance|ever-present|existing|here|omnipresent|ubiquitous|naturally occurring +(noun)|nowadays|time +(noun)|gift +(noun)|present tense|tense +(verb)|show|demo|exhibit|demonstrate|show +(verb)|represent|lay out|state|say|tell +(verb)|stage|represent|re-create +(verb)|submit|give +(verb)|pose|constitute|represent|make up|comprise|be +(verb)|award|allocate|apportion +(verb)|give|gift +(verb)|deliver|talk|speak|utter|mouth|verbalize|verbalise +(verb)|introduce|acquaint|inform +(verb)|portray|represent|interpret +(verb)|confront|face +(verb)|introduce|acquaint +(verb)|salute|greet|recognize|recognise +present-day|1 +(adj)|contemporary|current +present moment|1 +(noun)|here and now|moment|present|nowadays +present participle|1 +(noun)|participle|participial +present perfect|1 +(noun)|present perfect tense|perfective|perfective tense|perfect|perfect tense +present perfect tense|1 +(noun)|present perfect|perfective|perfective tense|perfect|perfect tense +present progressive|1 +(noun)|present progressive tense|progressive|progressive tense|imperfect|imperfect tense|continuous tense +present progressive tense|1 +(noun)|present progressive|progressive|progressive tense|imperfect|imperfect tense|continuous tense +present tense|1 +(noun)|present|tense +present time|1 +(noun)|times|modern times|modern world|contemporary world|present|nowadays +presentable|1 +(adj)|respectable +presentation|7 +(noun)|ceremony +(noun)|display +(noun)|presentment|demonstration|show +(noun)|proposal|proposition +(noun)|display|representation +(noun)|introduction|intro|informing|making known +(noun)|position|posture|attitude +presentational|1 +(adj)|display +presented|1 +(adj)|bestowed|conferred|given +presenter|3 +(noun)|communicator +(noun)|sponsor|advocate|advocator|proponent|exponent +(noun)|donor|giver|benefactor|helper +presentiment|1 +(noun)|foreboding|premonition|boding|apprehension|apprehensiveness|dread +presentism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +presentist|1 +(noun)|theologian|theologist|theologizer|theologiser +presently|2 +(adv)|soon|shortly|before long +(adv)|currently +presentment|3 +(noun)|notification|due process|due process of law +(noun)|charge|billing +(noun)|presentation|demonstration|show +presentness|1 +(noun)|nowness|timing +preservable|1 +(adj)|preserved +preservation|4 +(noun)|saving|protection +(noun)|condition|status +(noun)|process +(noun)|conservation|improvement|betterment|advance +preservationist|1 +(noun)|reformer|reformist|crusader|meliorist +preservative|2 +(adj)|protective +(noun)|compound|chemical compound +preserve|9 +(noun)|sphere|domain|area|orbit|field|arena +(noun)|reservation|reserve +(noun)|conserve|conserves|preserves|confiture +(verb)|continue|uphold|carry on|bear on|keep|maintain|hold +(verb)|conserve|maintain|keep up|keep +(verb)|save|keep|hold on +(verb)|keep|cook|fix|ready|make|prepare +(verb)|keep|protect +(verb)|keep|maintain|hold +preserved|2 +(adj)|preserved |aged|cured|candied|crystalized|crystalised|glace|canned|tinned|corned|cured|cured|dried|dehydrated|desiccated|flash-frozen|quick-frozen|frozen|freeze-dried|lyophilized|lyophilised|freeze-dried|pickled|potted|salted|salt-cured|smoked|smoke-cured|smoke-dried|sun-dried +(adj)|preserved |conserved|kept up|maintained|well-kept|preservable|protected|saved|retained|maintained +preserver|4 +(noun)|refinisher|renovator|restorer|skilled worker|trained worker +(noun)|cook +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|life preserver|flotation device|float|rescue equipment +preserves|4 +(noun)|conserve|preserve|conserves|confiture +(noun)|preserve|sphere|domain|area|orbit|field|arena +(noun)|preserve|reservation|reserve +(noun)|conserve|preserve|conserves|confiture +preserving|1 +(adj)|conserving|protective +preset|1 +(adj)|predetermined|planned +preside|1 +(verb)|control|command +presidency|2 +(noun)|presidential term|administration|tenure|term of office|incumbency +(noun)|presidentship|position|post|berth|office|spot|billet|place|situation +president|6 +(noun)|corporate executive|business executive +(noun)|President of the United States|United States President|President|Chief Executive|head of state|chief of state +(noun)|head of state|chief of state +(noun)|chairman|chairwoman|chair|chairperson|presiding officer +(noun)|prexy|academic administrator +(noun)|President of the United States|President|Chief Executive|presidency|presidentship +president abraham lincoln|1 +(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer|attorney|President of the United States|United States President|President|Chief Executive +president adams|2 +(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States|United States President|President|Chief Executive +(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States|United States President|President|Chief Executive +president andrew johnson|1 +(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States|United States President|President|Chief Executive +president arthur|1 +(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States|United States President|President|Chief Executive +president benjamin harrison|1 +(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States|United States President|President|Chief Executive +president buchanan|1 +(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States|United States President|President|Chief Executive +president bush|2 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States|United States President|President|Chief Executive +president carter|1 +(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States|United States President|President|Chief Executive +president cleveland|1 +(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States|United States President|President|Chief Executive +president clinton|1 +(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States|United States President|President|Chief Executive +president coolidge|1 +(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States|United States President|President|Chief Executive +president eisenhower|1 +(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general|full general|President of the United States|United States President|President|Chief Executive +president fillmore|1 +(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States|United States President|President|Chief Executive +president ford|1 +(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States|United States President|President|Chief Executive +president franklin roosevelt|1 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +president garfield|1 +(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States|United States President|President|Chief Executive +president george w. bush|1 +(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States|United States President|President|Chief Executive +president grant|1 +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +president harding|1 +(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States|United States President|President|Chief Executive +president harrison|2 +(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States|United States President|President|Chief Executive +(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States|United States President|President|Chief Executive +president hayes|1 +(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States|United States President|President|Chief Executive +president hoover|1 +(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States|United States President|President|Chief Executive +president jefferson|1 +(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States|United States President|President|Chief Executive +president john adams|1 +(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States|United States President|President|Chief Executive +president john f. kennedy|1 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +president john quincy adams|1 +(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States|United States President|President|Chief Executive +president johnson|2 +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States|United States President|President|Chief Executive +president kennedy|1 +(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States|United States President|President|Chief Executive +president lincoln|1 +(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer|attorney|President of the United States|United States President|President|Chief Executive +president lyndon johnson|1 +(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States|United States President|President|Chief Executive +president madison|1 +(noun)|Madison|James Madison|President Madison|President of the United States|United States President|President|Chief Executive +president mckinley|1 +(noun)|McKinley|William McKinley|President McKinley|President of the United States|United States President|President|Chief Executive +president monroe|1 +(noun)|Monroe|James Monroe|President Monroe|President of the United States|United States President|President|Chief Executive +president nixon|1 +(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States|United States President|President|Chief Executive +president of the united states|2 +(noun)|President of the United States|United States President|President|Chief Executive|head of state|chief of state +(noun)|President of the United States|President|Chief Executive|presidency|presidentship +president pierce|1 +(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States|United States President|President|Chief Executive +president polk|1 +(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States|United States President|President|Chief Executive +president reagan|1 +(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States|United States President|President|Chief Executive +president roosevelt|2 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States|United States President|President|Chief Executive +president taft|1 +(noun)|Taft|William Howard Taft|President Taft|President of the United States|United States President|President|Chief Executive +president taylor|1 +(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States|United States President|President|Chief Executive +president theodore roosevelt|1 +(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States|United States President|President|Chief Executive +president truman|1 +(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States|United States President|President|Chief Executive +president tyler|1 +(noun)|Tyler|John Tyler|President Tyler|President of the United States|United States President|President|Chief Executive +president van buren|1 +(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States|United States President|President|Chief Executive +president washington|1 +(noun)|Washington|George Washington|President Washington|general|full general|President of the United States|United States President|President|Chief Executive +president william henry harrison|1 +(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States|United States President|President|Chief Executive +president wilson|1 +(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States|United States President|President|Chief Executive +presidential|2 +(adj)|head of state|chief of state +(adj)|presidential |statesmanlike|statesmanly +presidential directive|1 +(noun)|Presidential Directive|directive +presidential term|1 +(noun)|presidency|administration|tenure|term of office|incumbency +presidents' day|1 +(noun)|Presidents' Day|legal holiday|national holiday +presidentship|1 +(noun)|presidency|position|post|berth|office|spot|billet|place|situation +presiding officer|1 +(noun)|leader +presidio|1 +(noun)|fortress|fort +presidium|1 +(noun)|praesidium|committee|commission +presley|1 +(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star +presocratic|1 +(adj)|philosopher|Athenian +press|23 +(noun)|fourth estate|estate|estate of the realm +(noun)|imperativeness|insistence|insistency|pressure|urgency +(noun)|public press|print media +(noun)|printing press|machine +(noun)|crush|jam|crowd +(noun)|wardrobe|closet|furniture|piece of furniture|article of furniture +(noun)|clamp +(noun)|mechanical press|machine +(noun)|military press|weightlifting +(noun)|pressure|pressing|push|pushing +(verb)|touch +(verb)|urge|urge on|exhort|advise|counsel +(verb)|weigh|count|matter|weigh +(verb)|flatten|flatten out +(verb)|compress|constrict|squeeze|compact|contract|tighten +(verb)|mass +(verb)|make|create +(verb)|be +(verb)|crusade|fight|campaign|push|agitate|advertise|advertize|promote|push +(verb)|press out|cast|mold|mould +(verb)|push|push|force +(verb)|weight-lift|weightlift|exercise|work out +(verb)|bid|beseech|entreat|adjure|conjure|plead +press-up|1 +(noun)|pushup|arm exercise +press agency|1 +(noun)|news agency|wire service|press association|news organization|news organisation|agency +press agent|1 +(noun)|publicity man|public relations man|PR man|publicist|publicizer|publiciser +press association|1 +(noun)|news agency|press agency|wire service|news organization|news organisation|agency +press box|1 +(noun)|box +press clipping|1 +(noun)|clipping|newspaper clipping|cutting|press cutting|excerpt|extract|selection +press conference|1 +(noun)|news conference|conference|group discussion +press corps|1 +(noun)|press|fourth estate +press cutting|1 +(noun)|clipping|newspaper clipping|press clipping|cutting|excerpt|extract|selection +press down|1 +(verb)|depress|move|displace +press down on|1 +(verb)|drag down|bear down|bear down on|weigh down|press +press gallery|1 +(noun)|area +press gang|1 +(noun)|detachment +press home|1 +(verb)|drive home|ram home|stress|emphasize|emphasise|punctuate|accent|accentuate +press lord|1 +(noun)|publisher|newspaper publisher +press of canvas|1 +(noun)|press of sail|sail|canvas|canvass|sheet +press of sail|1 +(noun)|press of canvas|sail|canvas|canvass|sheet +press on|1 +(verb)|push on|plough on|advance|progress|pass on|move on|march on|go on +press out|3 +(verb)|stub out|crush out|extinguish|end|terminate +(verb)|press|cast|mold|mould +(verb)|express|extract|get|acquire +press photographer|1 +(noun)|photographer|lensman +press release|1 +(noun)|handout|release|announcement|promulgation +press run|1 +(noun)|print run|run +press stud|1 +(noun)|snap|snap fastener|fastener|fastening|holdfast|fixing +pressburg|1 +(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital +pressed|1 +(adj)|ironed +pressing|3 +(adj)|urgent|imperative +(noun)|press|pressure|push|pushing +(noun)|part|portion +pressman|2 +(noun)|printer|skilled worker|trained worker +(noun)|correspondent|newspaperman|newspaperwoman|newswriter|journalist +pressmark|1 +(noun)|call mark|call number|mark +pressor|1 +(adj)|vital sign|pressure|pressure level|force per unit area +pressure|8 +(noun)|pressure level|force per unit area|physical phenomenon +(noun)|force +(noun)|press|pressing|push|pushing +(noun)|imperativeness|insistence|insistency|press|urgency +(noun)|pressure sensation|somesthesia|somaesthesia|somatesthesia|somatic sensation +(noun)|distress +(verb)|coerce|hale|squeeze|force|compel|oblige|obligate +(verb)|blackmail|blackjack|influence|act upon|work +pressure-cook|1 +(verb)|cook +pressure-cooker|1 +(adj)|intense +pressure-feed lubricating system|1 +(noun)|lubricating system|force-feed lubricating system|force feed|pressure feed|mechanical system +pressure-wash|1 +(verb)|powerwash|wash|launder +pressure cabin|1 +(noun)|cabin +pressure cooker|1 +(noun)|autoclave|sterilizer|steriliser +pressure dome|1 +(noun)|dome +pressure feed|1 +(noun)|lubricating system|force-feed lubricating system|force feed|pressure-feed lubricating system|mechanical system +pressure gage|1 +(noun)|pressure gauge|gauge|gage +pressure gauge|1 +(noun)|pressure gage|gauge|gage +pressure group|1 +(noun)|lobby|third house|political unit +pressure level|1 +(noun)|pressure|force per unit area|physical phenomenon +pressure point|1 +(noun)|point +pressure sensation|1 +(noun)|pressure|somesthesia|somaesthesia|somatesthesia|somatic sensation +pressure sore|1 +(noun)|bedsore|decubitus ulcer|ulcer|ulceration +pressure suit|1 +(noun)|protective garment +pressure unit|1 +(noun)|unit of measurement|unit +pressurise|3 +(verb)|supercharge|pressurize|change|alter|modify +(verb)|pressurize|keep|maintain|hold +(verb)|pressurize|adjust|set|correct +pressurised|1 +(adj)|pressurized|controlled +pressurize|3 +(verb)|supercharge|pressurise|change|alter|modify +(verb)|pressurise|keep|maintain|hold +(verb)|pressurise|adjust|set|correct +pressurized|1 +(adj)|pressurised|controlled +pressurized water reactor|1 +(noun)|PWR|water-cooled reactor +prestidigitation|1 +(noun)|sleight of hand|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|illusion|deception +prestidigitator|1 +(noun)|magician|conjurer|conjuror|illusionist|performer|performing artist +prestige|1 +(noun)|prestigiousness|standing +prestigious|2 +(adj)|esteemed|honored|reputable +(adj)|influential +prestigiousness|1 +(noun)|prestige|standing +prestissimo|1 +(adj)|fast +presto|1 +(adj)|fast +presumable|1 +(adj)|supposable|surmisable|thinkable +presumably|1 +(adv)|presumptively +presume|4 +(verb)|assume|take for granted|expect|anticipate +(verb)|make bold|dare|act|move +(verb)|testify|bear witness|prove|evidence|show +(verb)|act|behave|do +presumed|1 +(adj)|probable |likely|plausible +presumption|4 +(noun)|given|precondition|assumption|supposition|supposal +(noun)|inference|illation +(noun)|presumptuousness|effrontery|assumption|audacity|audaciousness +(noun)|discourtesy|offense|offence|offensive activity +presumptive|2 +(adj)|probable |likely|plausible +(adj)|credible |believable +presumptively|1 +(adv)|presumably +presumptuous|1 +(adj)|assumptive|assuming|forward +presumptuousness|1 +(noun)|presumption|effrontery|assumption|audacity|audaciousness +presuppose|2 +(verb)|suppose|assume|presume|take for granted +(verb)|suppose|imply +presupposition|1 +(noun)|supposition|supposal +presymptomatic|1 +(adj)|preclinical|diagnosis|diagnosing +preteen|2 +(adj)|preadolescent|young |immature +(noun)|preteenager|juvenile|juvenile person +preteenager|1 +(noun)|preteen|juvenile|juvenile person +pretence|5 +(noun)|pretension|pretense|artificiality +(noun)|guise|pretense|pretext|semblance|gloss|color|colour +(noun)|pretense|feigning|dissembling|misrepresentation|deceit|deception +(noun)|pretense|make-believe|imagination|imaging|imagery|mental imagery +(noun)|pretense|pretending|simulation|feigning|deception|deceit|dissembling|dissimulation +pretend|8 +(adj)|make-believe|unreal +(noun)|make-believe|pretense|pretence|pretending|simulation|feigning +(verb)|feign|sham|affect|dissemble|misrepresent|belie +(verb)|dissemble|act +(verb)|claim|lay claim|arrogate +(verb)|guess|venture|hazard|speculate +(verb)|make|make believe|act|play|represent +(verb)|profess|claim +pretended|1 +(adj)|assumed|false|fictitious|fictive|put on|sham|counterfeit |imitative +pretender|3 +(noun)|Pretender|claimant +(noun)|imposter|impostor|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|hypocrite|dissembler|phony|phoney|deceiver|cheat|cheater|trickster|beguiler|slicker +pretending|1 +(noun)|pretense|pretence|simulation|feigning|deception|deceit|dissembling|dissimulation +pretense|5 +(noun)|pretence|pretending|simulation|feigning|deception|deceit|dissembling|dissimulation +(noun)|pretence|feigning|dissembling|misrepresentation|deceit|deception +(noun)|pretence|make-believe|imagination|imaging|imagery|mental imagery +(noun)|pretension|pretence|artificiality +(noun)|guise|pretence|pretext|semblance|gloss|color|colour +pretension|3 +(noun)|pretense|pretence|artificiality +(noun)|claim +(noun)|pretentiousness|unnaturalness +pretentious|3 +(adj)|pretentious |arty|artsy-craftsy|arty-crafty|grandiloquent|overblown|pompous|pontifical|portentous|grandiose|hifalutin|highfalutin|highfaluting|hoity-toity|la-di-da|high-flown|high-sounding|inflated|jumped-up|nouveau-riche|parvenu|parvenue|upstart|sententious|sesquipedalian|tasteless|in poor taste +(adj)|ostentatious |flaunty|showy|splashy +(adj)|ostentatious|kitsch|tasteless +pretentiousness|2 +(noun)|ostentation|ostentatiousness|pomposity|pompousness|splashiness|inflation|inelegance +(noun)|pretension|unnaturalness +preterist|1 +(noun)|theologian|theologist|theologizer|theologiser +preterit|1 +(noun)|preterite|past|past tense +preterite|1 +(noun)|preterit|past|past tense +preterition|1 +(noun)|paralepsis|paraleipsis|paralipsis|rhetorical device +preterm baby|1 +(noun)|premature baby|premature infant|preterm infant|preemie|premie|neonate|newborn|newborn infant|newborn baby +preterm infant|1 +(noun)|premature baby|preterm baby|premature infant|preemie|premie|neonate|newborn|newborn infant|newborn baby +pretermission|1 +(noun)|omission +pretermit|2 +(verb)|neglect|ignore|disregard +(verb)|neglect|omit|drop|miss|leave out|overlook|overleap +preternatural|2 +(adj)|extraordinary +(adj)|nonnatural|otherworldly|transcendental|supernatural +preternaturally|1 +(adv)|supernaturally +pretext|2 +(noun)|stalking-horse|pretense|pretence|feigning|dissembling +(noun)|guise|pretense|pretence|semblance|gloss|color|colour +pretor|1 +(noun)|praetor|judge|justice|jurist|magistrate +pretoria|1 +(noun)|Pretoria|capital of South Africa|national capital +pretorial|1 +(adj)|praetorian|praetorial|pretorian|judge|justice|jurist|magistrate +pretorian|2 +(adj)|praetorian|praetorial|pretorial|judge|justice|jurist|magistrate +(adj)|praetorian|corrupt +pretorium|1 +(noun)|praetorium|tent|collapsible shelter +pretrial|2 +(adj)|preceding +(noun)|pretrial conference|conference|group discussion +pretrial conference|1 +(noun)|pretrial|conference|group discussion +prettify|1 +(verb)|beautify|embellish|better|improve|amend|ameliorate|meliorate +prettiness|1 +(noun)|cuteness|beauty +pretty|3 +(adj)|beautiful +(adj)|bad +(adv)|jolly +pretty-pretty|1 +(adj)|beautiful +pretty up|1 +(verb)|doll up|do up|glam up|groom|neaten +pretzel|1 +(noun)|cracker +preussen|1 +(noun)|Prussia|Preussen|geographical area|geographic area|geographical region|geographic region +prevacid|1 +(noun)|lansoprazole|Prevacid|acid +prevail|5 +(verb)|predominate|dominate|rule|reign +(verb)|hold|obtain|exist|be +(verb)|persist|die hard|run|endure|continue +(verb)|triumph|win +(verb)|persuade +prevailing|2 +(adj)|predominant|frequent +(adj)|prevalent|rife|current +prevailing party|1 +(noun)|litigant|litigator +prevailing westerly|1 +(noun)|westerly|west wind|wester +prevailing wind|1 +(noun)|wind|air current|current of air +prevalence|3 +(noun)|generality +(noun)|ratio +(noun)|preponderance|number|figure +prevalent|1 +(adj)|prevailing|rife|current +prevaricate|1 +(verb)|beat around the bush|equivocate|tergiversate|palter|misinform|mislead +prevarication|3 +(noun)|lie|falsehood|falsity|untruth|false statement +(noun)|equivocation|evasiveness|untruthfulness|ambiguity|equivocalness +(noun)|lying|fabrication|falsification|misrepresentaation +prevaricator|1 +(noun)|liar|deceiver|cheat|cheater|trickster|beguiler|slicker +prevenient|1 +(adj)|anticipatory|antecedent |preceding +prevent|2 +(verb)|forestall|foreclose|preclude|forbid +(verb)|keep +preventable|1 +(adj)|preventable +preventative|5 +(adj)|preventive |blockading|clogging|hindering|impeding|obstructive|deterrent|frustrating|frustrative|thwarting|precautionary|precautional|preclusive|obviating|preemptive|prohibitive|prohibitory|protective +(adj)|preventive|prophylactic|healthful +(noun)|preventive|prophylactic|remedy|curative|cure +(noun)|hindrance|hitch|preventive|encumbrance|incumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|contraceptive|preventive|contraceptive device|prophylactic device|birth control device|device +prevention|1 +(noun)|bar|hindrance|interference +preventive|6 +(adj)|preventative|prophylactic|healthful +(adj)|preventive |preventative|blockading|clogging|hindering|impeding|obstructive|deterrent|frustrating|frustrative|thwarting|precautionary|precautional|preclusive|obviating|preemptive|prohibitive|prohibitory|protective +(adj)|cautionary|prophylactic|protective +(noun)|preventative|prophylactic|remedy|curative|cure +(noun)|hindrance|hitch|preventative|encumbrance|incumbrance|interference|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|contraceptive|preventative|contraceptive device|prophylactic device|birth control device|device +preventive attack|1 +(noun)|preventive strike|strike +preventive medicine|1 +(noun)|medicine|practice of medicine +preventive strike|1 +(noun)|preventive attack|strike +preview|3 +(noun)|prevue|trailer|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|screening|showing|viewing +(verb)|watch|view|see|catch|take in +previous|3 +(adj)|former|late|past +(adj)|premature|early +(adj)|old|preceding +previous question|1 +(noun)|gesture|motion|order|rules of order|parliamentary law|parliamentary procedure +previously|1 +(adv)|antecedently +previse|2 +(verb)|forewarn|warn +(verb)|anticipate|foreknow|foresee|know +prevision|4 +(noun)|vision +(noun)|prescience|capacity|mental ability +(noun)|foresight|prospicience|knowing +(noun)|prediction|anticipation|reasoning|logical thinking|abstract thought +prevue|1 +(noun)|preview|trailer|ad|advertisement|advertizement|advertising|advertizing|advert +prewar|1 +(adj)|prewar +prewpub|1 +(noun)|brewery|restaurant|eating house|eating place +prexy|1 +(noun)|president|academic administrator +prey|4 +(noun)|quarry|target|fair game|victim +(noun)|quarry|animal|animate being|beast|brute|creature|fauna +(verb)|feed|exploit|work +(verb)|raven|predate|forage +priacanthidae|1 +(noun)|Priacanthidae|family Priacanthidae|fish family +priacanthus|1 +(noun)|Priacanthus|genus Priacanthus|fish genus +priacanthus arenatus|1 +(noun)|catalufa|Priacanthus arenatus|percoid fish|percoid|percoidean +priam|1 +(noun)|Priam|mythical being +priapic|2 +(adj)|male +(adj)|phallic|male +priapism|1 +(noun)|pathology +priapus|1 +(noun)|Priapus|Greco-Roman deity|Graeco-Roman deity +price|9 +(noun)|terms|damage|cost +(noun)|monetary value|cost|value +(noun)|cost|toll|value +(noun)|worth +(noun)|reward +(noun)|cost +(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano +(verb)|determine|set +(verb)|ascertain +price-controlled|1 +(adj)|controlled +price-fixing|1 +(noun)|control +price-to-earnings ratio|1 +(noun)|P/E ratio|ratio +price bracket|1 +(noun)|bracket +price competition|1 +(noun)|price war|competition +price control|1 +(noun)|control +price cut|1 +(noun)|price cutting|cut +price cutting|1 +(noun)|price cut|cut +price floor|1 +(noun)|floor|base +price freeze|1 +(noun)|freeze +price gouging|1 +(noun)|pricing +price increase|1 +(noun)|increase|increment +price index|1 +(noun)|price level|index|index number|indicant|indicator +price level|1 +(noun)|price index|index|index number|indicant|indicator +price list|1 +(noun)|list|listing +price of admission|1 +(noun)|entrance fee|admission|admission charge|admission fee|admission price|entrance money|fee +price reduction|1 +(noun)|discount|deduction|decrease|diminution|reduction|step-down +price support|1 +(noun)|subsidy +price tag|1 +(noun)|tag +price war|1 +(noun)|price competition|competition +priceless|1 +(adj)|invaluable|valuable +pricelessness|1 +(noun)|invaluableness|preciousness|valuableness|value +pricey|1 +(adj)|costly|dear|high-priced|pricy|expensive +pricing|1 +(noun)|evaluation|valuation|rating +pricing system|1 +(noun)|system +prick|11 +(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)|incision|scratch|slit|dent|depression|impression|imprint +(noun)|cock|dick|shaft|pecker|peter|tool|putz|penis|phallus|member +(noun)|pricking|puncture +(verb)|prickle|pierce +(verb)|sting|twinge|hurt|ache|suffer +(verb)|prick up|cock up|rear|erect +(verb)|goad|stab|jab +(verb)|prickle|sting|twinge +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|sting|bite|pierce +prick up|1 +(verb)|prick|cock up|rear|erect +pricker|2 +(noun)|spine|thorn|prickle|sticker|aculeus +(noun)|bradawl|awl +pricket|2 +(noun)|spike +(noun)|deer|cervid +pricking|1 +(noun)|prick|puncture +prickle|4 +(noun)|spine|thorn|pricker|sticker|aculeus +(verb)|prick|prick|sting|twinge +(verb)|tingle|itch +(verb)|prick|pierce +prickle-weed|1 +(noun)|prairie mimosa|Desmanthus ilinoensis|herb|herbaceous plant +prickle cell|1 +(noun)|skin cell +prickleback|2 +(noun)|blennioid fish|blennioid +(noun)|stickleback|spiny-finned fish|acanthopterygian +prickling|2 +(adj)|stinging|tingling|painful +(noun)|tingle|tingling|somesthesia|somaesthesia|somatesthesia|somatic sensation +prickly|2 +(adj)|bristly|splenetic|waspish|ill-natured +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|setose|setaceous|spiny|thorny|armed +prickly-seeded spinach|1 +(noun)|spinach|spinach plant|Spinacia oleracea|vegetable +prickly ash|2 +(noun)|tree +(noun)|Orites excelsa|tree +prickly custard apple|1 +(noun)|soursop|soursop tree|Annona muricata|custard apple|custard apple tree +prickly heat|1 +(noun)|heat rash|miliaria|rash|roseola|efflorescence|skin rash +prickly lettuce|1 +(noun)|horse thistle|Lactuca serriola|Lactuca scariola|compass plant|compass flower +prickly pear|2 +(noun)|prickly pear cactus|cactus +(noun)|edible fruit +prickly pear cactus|1 +(noun)|prickly pear|cactus +prickly pine|1 +(noun)|table-mountain pine|hickory pine|Pinus pungens|pine|pine tree|true pine +prickly poppy|2 +(noun)|argemone|white thistle|devil's fig|herb|herbaceous plant +(noun)|Papaver argemone|poppy +prickly shield fern|1 +(noun)|Braun's holly fern|Polystichum braunii|holly fern +prickteaser|1 +(noun)|coquette|flirt|vamp|vamper|minx|tease|woman|adult female +pricy|1 +(adj)|costly|dear|high-priced|pricey|expensive +pride|6 +(noun)|pridefulness|feeling +(noun)|satisfaction +(noun)|trait +(noun)|animal group +(noun)|superbia|mortal sin|deadly sin +(verb)|plume|congratulate|feel|experience +pride-of-india|2 +(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree +(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree|flowering tree +pride of barbados|1 +(noun)|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub +pride of bolivia|1 +(noun)|tipu|tipu tree|yellow jacaranda|pride of Bolivia|tree +pride of california|1 +(noun)|pride of California|Lathyrus splendens|wild pea +pride of place|1 +(noun)|position|place +pride oneself|1 +(verb)|take pride|feel|experience +prideful|2 +(adj)|disdainful|haughty|lordly|sniffy|supercilious|swaggering|proud +(adj)|exultant|exulting|jubilant|rejoicing|triumphal|triumphant|elated +pridefulness|1 +(noun)|pride|feeling +prie-dieu|1 +(noun)|bench +priest|2 +(noun)|clergyman|reverend|man of the cloth|holy order|order +(noun)|non-Christian priest|spiritual leader +priest-doctor|1 +(noun)|shaman|priest|non-Christian priest +priest-penitent privilege|1 +(noun)|privilege +priest-ridden|1 +(adj)|controlled +priestcraft|2 +(noun)|intrigue|machination +(noun)|craft|craftsmanship|workmanship +priestess|1 +(noun)|priest +priesthood|1 +(noun)|profession|community +priestley|1 +(noun)|Priestley|Joseph Priestley|chemist +priestlike|1 +(adj)|priestly +priestly|2 +(adj)|hieratic|hieratical|sacerdotal|profession|community +(adj)|priestly |priestlike +prig|1 +(noun)|snob|snot|unpleasant person|disagreeable person +priggish|1 +(adj)|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +priggishness|1 +(noun)|primness|propriety|properness|correctitude +prilosec|1 +(noun)|omeprazole|Prilosec|antacid|gastric antacid|alkalizer|alkaliser|antiacid +prim|5 +(adj)|dainty|mincing|niminy-piminy|twee|refined +(adj)|priggish|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +(verb)|change +(verb)|compress|constrict|squeeze|compact|contract|press +(verb)|prim up|prim out|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +prim out|1 +(verb)|prim|prim up|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +prim up|1 +(verb)|prim|prim out|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +prima|2 +(adj)|leading|star|starring|stellar|major +(noun)|Prima|eating apple|dessert apple +prima ballerina|1 +(noun)|ballerina|danseuse +prima donna|2 +(noun)|unpleasant person|disagreeable person +(noun)|diva|opera star|operatic star +prima facie|1 +(adj)|clear +primacy|1 +(noun)|importance|grandness +primaeval|1 +(adj)|aboriginal|primal|primeval|primordial|early +primal|2 +(adj)|cardinal|central|fundamental|key|important |of import +(adj)|aboriginal|primeval|primaeval|primordial|early +primality|1 +(noun)|property +primaquine|1 +(noun)|antimalarial|antimalarial drug +primarily|2 +(adv)|chiefly|principally|mainly|in the main +(adv)|in the first place +primary|8 +(adj)|primary |capital|direct|firsthand|first-string|original|particular|special|essential|first|original +(adj)|underived +(adj)|chief|main|principal|important |of import +(adj)|elementary|basic +(adj)|basal|basic|essential +(noun)|primary election|election +(noun)|primary feather|primary quill|flight feather|pinion|quill|quill feather +(noun)|primary coil|primary winding|coil +primary amenorrhea|1 +(noun)|amenorrhea|amenorrhoea|amenia +primary atypical pneumonia|1 +(noun)|atypical pneumonia|mycoplasmal pneumonia|respiratory disease|respiratory illness|respiratory disorder +primary care|1 +(noun)|medical care|medical aid +primary care physician|1 +(noun)|doctor|doc|physician|MD|Dr.|medico +primary cell|1 +(noun)|voltaic cell|galvanic cell|cell|electric cell +primary censorship|1 +(noun)|armed forces censorship +primary coil|1 +(noun)|primary winding|primary|coil +primary dentition|1 +(noun)|dentition|teeth +primary dysmenorrhea|1 +(noun)|dysmenorrhea +primary election|1 +(noun)|primary|election +primary feather|1 +(noun)|primary|primary quill|flight feather|pinion|quill|quill feather +primary health care|1 +(noun)|health care +primary quill|1 +(noun)|primary|primary feather|flight feather|pinion|quill|quill feather +primary school|1 +(noun)|grade school|grammar school|elementary school|school +primary sex character|1 +(noun)|primary sex characteristic|sex characteristic|sex character +primary sex characteristic|1 +(noun)|primary sex character|sex characteristic|sex character +primary solid solution|1 +(noun)|solid solution|solution +primary syphilis|1 +(noun)|syphilis|syph|pox +primary tooth|1 +(noun)|deciduous tooth|baby tooth|milk tooth|tooth +primary winding|1 +(noun)|primary coil|primary|coil +primate|2 +(noun)|archpriest|hierarch|high priest|prelate|priest +(noun)|placental|placental mammal|eutherian|eutherian mammal +primates|3 +(noun)|Primates|order Primates|animal order +(noun)|archpriest|hierarch|high priest|prelate|primate|priest +(noun)|primate|placental|placental mammal|eutherian|eutherian mammal +primateship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +primatology|1 +(noun)|mammalogy +primaxin|1 +(noun)|Primaxin|antibiotic|antibiotic drug +prime|12 +(adj)|premier|first +(adj)|first +(adj)|choice|prize|quality|select|superior +(adj)|prime quantity +(adj)|mature +(noun)|prime quantity|number +(noun)|flower|peak|heyday|bloom|blossom|efflorescence|flush|time period|period of time|period +(noun)|canonical hour +(noun)|prime of life|adulthood|maturity +(verb)|fix|prepare|set up|ready|gear up|set +(verb)|ground|undercoat|paint +(verb)|fill|fill up|make full +prime factor|1 +(noun)|divisor|factor +prime interest rate|1 +(noun)|interest rate|rate of interest +prime meridian|1 +(noun)|meridian|longitude|line of longitude +prime minister|2 +(noun)|Prime Minister|PM|premier|head of state|chief of state +(noun)|chancellor|premier|head of state|chief of state +prime mover|1 +(noun)|first cause|primum mobile|causal agent|cause|causal agency +prime number|1 +(noun)|prime|prime quantity +prime of life|1 +(noun)|prime|adulthood|maturity +prime quantity|1 +(noun)|prime|number +prime time|1 +(noun)|clock time|time +primed|1 +(adj)|fit|set|ready +primer|3 +(noun)|textbook|text|text edition|schoolbook|school text +(noun)|fuse|fuze|fusee|fuzee|priming|lighter|light|igniter|ignitor +(noun)|flat coat|ground|priming|primer coat|priming coat|undercoat|coat of paint +primer coat|1 +(noun)|flat coat|ground|primer|priming|priming coat|undercoat|coat of paint +primeval|1 +(adj)|aboriginal|primal|primaeval|primordial|early +primidone|1 +(noun)|Mysoline|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +primigravida|1 +(noun)|gravida I|gravida +priming|3 +(noun)|preparation|readying +(noun)|fuse|fuze|fusee|fuzee|primer|lighter|light|igniter|ignitor +(noun)|flat coat|ground|primer|primer coat|priming coat|undercoat|coat of paint +priming coat|1 +(noun)|flat coat|ground|primer|priming|primer coat|undercoat|coat of paint +primipara|1 +(noun)|para I|mother|female parent +primiparous|1 +(adj)|mother|female parent +primitive|7 +(adj)|crude|rude|early +(adj)|archaic|early +(adj)|noncivilized |noncivilised +(adj)|untrained +(noun)|primitive person|person|individual|someone|somebody|mortal|human|soul +(noun)|formula|expression +(noun)|word +primitive art|1 +(noun)|outsider art|self-taught art|vernacular art|naive art|genre +primitive person|1 +(noun)|primitive|person|individual|someone|somebody|mortal|human|soul +primitively|1 +(adv)|originally|in the beginning +primitiveness|1 +(noun)|crudeness|crudity|primitivism|rudeness|wild|natural state|state of nature +primitivism|2 +(noun)|crudeness|crudity|primitiveness|rudeness|wild|natural state|state of nature +(noun)|genre +primly|1 +(adv)|prissily +primness|2 +(noun)|prudishness|prudery|Grundyism|modesty +(noun)|priggishness|propriety|properness|correctitude +primo|2 +(adj)|best +(noun)|part|voice +primogenitor|1 +(noun)|progenitor|ancestor|ascendant|ascendent|antecedent|root +primogeniture|1 +(noun)|inheritance|heritage +primordial|1 +(adj)|aboriginal|primal|primeval|primaeval|early +primordial dwarf|1 +(noun)|hypoplastic dwarf|true dwarf|normal dwarf|dwarf|midget|nanus +primordium|1 +(noun)|anlage|organ +primp|1 +(verb)|preen|plume|dress|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +primping|1 +(noun)|dressing|grooming +primrose|1 +(noun)|primula|herb|herbaceous plant +primrose family|1 +(noun)|Primulaceae|family Primulaceae|dicot family|magnoliopsid family +primrose jasmine|1 +(noun)|Jasminum mesnyi|jasmine +primrose path|1 +(noun)|way|path|way of life +primula|1 +(noun)|primrose|herb|herbaceous plant +primula auricula|1 +(noun)|auricula|bear's ear|Primula auricula|primrose|primula +primula elatior|1 +(noun)|oxlip|paigle|Primula elatior|primrose|primula +primula polyantha|1 +(noun)|polyanthus|Primula polyantha|primrose|primula +primula sinensis|1 +(noun)|Chinese primrose|Primula sinensis|primrose|primula +primula veris|1 +(noun)|cowslip|paigle|Primula veris|primrose|primula +primula vulgaris|1 +(noun)|English primrose|Primula vulgaris|primrose|primula +primulaceae|1 +(noun)|Primulaceae|family Primulaceae|primrose family|dicot family|magnoliopsid family +primulales|1 +(noun)|Primulales|order Primulales|plant order +primum mobile|1 +(noun)|first cause|prime mover|causal agent|cause|causal agency +primus|2 +(noun)|bishop +(noun)|Primus stove|Primus|stove|kitchen stove|range|kitchen range|cooking stove +primus stove|1 +(noun)|Primus stove|Primus|stove|kitchen stove|range|kitchen range|cooking stove +prince|1 +(noun)|aristocrat|blue blood|patrician +prince's-feather|2 +(noun)|princess feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub|suffrutex +(noun)|gentleman's-cane|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +prince's-plume|3 +(noun)|prince's-feather|princess feather|kiss-me-over-the-garden-gate|Polygonum orientale|subshrub|suffrutex +(noun)|desert plume|Stanleya pinnata|Cleome pinnata|subshrub|suffrutex +(noun)|prince's-feather|gentleman's-cane|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +prince's pine|1 +(noun)|pipsissewa|herb|herbaceous plant +prince-of-wales'-heath|1 +(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica|true heath +prince-of-wales feather|1 +(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +prince-of-wales fern|1 +(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +prince-of-wales plume|1 +(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +prince albert|2 +(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort +(noun)|Prince Albert|frock coat +prince albert's yew|1 +(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer|coniferous tree +prince albert yew|1 +(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer|coniferous tree +prince charles|1 +(noun)|Charles|Prince Charles|Prince of Wales +prince charming|1 +(noun)|suitor|suer|wooer +prince consort|1 +(noun)|prince|consort +prince edward|1 +(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince +prince edward island|1 +(noun)|Prince Edward Island|Canadian province +prince eugene of savoy|1 +(noun)|Eugene|Prince Eugene of Savoy|general|full general +prince fumimaro konoe|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +prince fumimaro konoye|1 +(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman|solon|national leader +prince klemens wenzel nepomuk lothar von metternich|1 +(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman|solon|national leader +prince of darkness|1 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +prince of smolensk|1 +(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal +prince of wales|1 +(noun)|Prince of Wales|prince +prince of wales heath|1 +(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica|true heath +prince otto eduard leopold von bismarck|1 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +prince otto von bismarck|1 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +prince peter kropotkin|1 +(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist|nihilist|syndicalist +prince philip|1 +(noun)|Philip|Prince Philip|Duke of Edinburgh|prince +prince rupert|1 +(noun)|Rupert|Prince Rupert|prince +princedom|2 +(noun)|rank +(noun)|principality|domain|demesne|land +princely|2 +(adj)|deluxe|gilded|luxurious|opulent|sumptuous|rich +(adj)|noble +princess|1 +(noun)|aristocrat|blue blood|patrician +princess diana|1 +(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat +princess feather|1 +(noun)|prince's-feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub|suffrutex +princess grace of monaco|1 +(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress +princess of wales|1 +(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat +princess pine|1 +(noun)|ground fir|tree clubmoss|Lycopodium obscurum|ground pine|Christmas green +princess royal|1 +(noun)|princess +princeton|2 +(noun)|Princeton|town +(noun)|Princeton University|Princeton|university +princeton university|1 +(noun)|Princeton University|Princeton|university +princeton wordnet|1 +(noun)|WordNet|Princeton WordNet|lexical database +princewood|2 +(noun)|Spanish elm|Cordia gerascanthus|tree +(noun)|Spanish elm|Equador laurel|salmwood|cypre|Cordia alliodora|angiospermous tree|flowering tree +principal|6 +(adj)|chief|main|primary|important |of import +(noun)|debt +(noun)|school principal|head teacher|head|educator|pedagogue +(noun)|star|lead|actor|histrion|player|thespian|role player +(noun)|corpus|principal sum|capital +(noun)|dealer|financier|moneyman +principal axis|1 +(noun)|optic axis|axis +principal diagonal|1 +(noun)|main diagonal|diagonal +principal investigator|1 +(noun)|PI|scientist|man of science +principal sum|1 +(noun)|principal|corpus|capital +principality|1 +(noun)|princedom|domain|demesne|land +principality of andorra|1 +(noun)|Andorra|Principality of Andorra|European country|European nation +principality of liechtenstein|1 +(noun)|Liechtenstein|Principality of Liechtenstein|European country|European nation +principality of monaco|1 +(noun)|Monaco|Principality of Monaco|principality|princedom|European country|European nation +principally|1 +(adv)|chiefly|primarily|mainly|in the main +principalship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +principe|1 +(noun)|Principe|island +principen|1 +(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin +principle|6 +(noun)|rule|generalization|generalisation|generality +(noun)|value +(noun)|law|natural law +(noun)|rule|law|law of nature +(noun)|precept|rule|prescript +(noun)|rationale|explanation +principle of equivalence|1 +(noun)|principle|rule +principle of liquid displacement|1 +(noun)|principle|rule +principle of parsimony|1 +(noun)|Occam's Razor|Ockham's Razor|law of parsimony|principle|rule +principle of relativity|1 +(noun)|law|law of nature +principle of superposition|2 +(noun)|superposition principle|superposition|principle|rule +(noun)|Huygens' principle of superposition|principle|rule +principled|1 +(adj)|principled |high-principled|scrupulous +prinia|1 +(noun)|Prinia|genus Prinia|bird genus +prinivil|1 +(noun)|lisinopril|Prinivil|Zestril|ACE inhibitor|angiotensin converting enzyme inhibitor +prink|2 +(verb)|dress|get dressed +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +print|10 +(noun)|black and white|written communication|written language +(noun)|graphic art +(noun)|mark|indication|indicant +(noun)|copy +(noun)|fabric|cloth|material|textile +(noun)|photographic print|photograph|photo|exposure|pic +(verb)|publish|produce|make|create +(verb)|write +(verb)|reproduce +(verb)|impress|write +print buffer|1 +(noun)|buffer|buffer storage|buffer store +print media|1 +(noun)|medium +print over|1 +(verb)|overprint|print|impress +print run|1 +(noun)|press run|run +print seller|1 +(noun)|art dealer +print shop|1 +(noun)|workshop|shop +printable|1 +(adj)|printable +printed|1 +(adj)|written +printed circuit|1 +(noun)|computer circuit +printed symbol|1 +(noun)|written symbol|symbol +printer|3 +(noun)|pressman|skilled worker|trained worker +(noun)|peripheral|computer peripheral|peripheral device +(noun)|printing machine|machine +printer's devil|1 +(noun)|apprentice|learner|prentice +printer's ink|1 +(noun)|printing ink|ink +printer cable|1 +(noun)|cable|line|transmission line +printing|4 +(noun)|writing +(noun)|commercial enterprise|business enterprise|business +(noun)|printing process|writing +(noun)|impression|publication +printing business|1 +(noun)|printing concern|printing company|company +printing company|1 +(noun)|printing concern|printing business|company +printing concern|1 +(noun)|printing business|printing company|company +printing ink|1 +(noun)|printer's ink|ink +printing machine|1 +(noun)|printer|machine +printing operation|1 +(noun)|operation +printing press|1 +(noun)|press|machine +printing process|1 +(noun)|printing|writing +printing unit|1 +(noun)|unit of measurement|unit +printmaker|1 +(noun)|graphic artist|artist|creative person +printmaking|1 +(noun)|art|artistic creation|artistic production +printout|1 +(noun)|output signal|output +priodontes|1 +(noun)|Priodontes|genus Priodontes|mammal genus +priodontes giganteus|1 +(noun)|giant armadillo|tatou|tatu|Priodontes giganteus|armadillo +prion|1 +(noun)|particle +prionace|1 +(noun)|Prionace|genus Prionace|fish genus +prionace glauca|1 +(noun)|blue shark|great blue shark|Prionace glauca|requiem shark +prionotus|1 +(noun)|Prionotus|genus Prionotus|fish genus +prionotus carolinus|1 +(noun)|northern sea robin|Prionotus carolinus|sea robin|searobin +prior|2 +(adj)|anterior|antecedent |preceding +(noun)|superior +prioress|1 +(noun)|abbess|mother superior|superior +prioritise|1 +(verb)|prioritize|rate|rank|range|order|grade|place +prioritize|1 +(verb)|prioritise|rate|rank|range|order|grade|place +priority|2 +(noun)|precedence|precedency|high status +(noun)|antecedence|antecedency|anteriority|precedence|precedency|earliness +priority mail|1 +(noun)|first class|1st class|first-class mail|1st-class mail|mail +priority processing|1 +(noun)|data processing +priorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +priory|1 +(noun)|religious residence|cloister +priscoan|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +priscoan aeon|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +priscoan eon|1 +(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon|aeon +prise|3 +(verb)|pry|prize|lever|jimmy|open|open up +(verb)|pry|extort|wring from +(verb)|respect|esteem|value|prize|see|consider|reckon|view|regard +prism|2 +(noun)|polyhedron +(noun)|optical prism|optical device +prism spectroscope|1 +(noun)|spectroscope|optical instrument +prismatic|2 +(adj)|optical device +(adj)|colorful |colourful +prismatoid|1 +(noun)|polyhedron +prismoid|1 +(noun)|prismatoid +prison|2 +(noun)|prison house|correctional institution +(noun)|prison house|situation|state of affairs +prison-breaking|1 +(noun)|break|breakout|jailbreak|gaolbreak|prisonbreak|escape|flight +prison camp|2 +(noun)|internment camp|prisoner of war camp|POW camp|camp +(noun)|work camp|prison farm|camp +prison cell|1 +(noun)|cell|jail cell|room +prison chaplain|1 +(noun)|chaplain +prison farm|1 +(noun)|work camp|prison camp|camp +prison guard|1 +(noun)|jailer|jailor|gaoler|screw|turnkey|lawman|law officer|peace officer|keeper +prison house|2 +(noun)|prison|situation|state of affairs +(noun)|prison|correctional institution +prison term|1 +(noun)|sentence|time|term +prisonbreak|1 +(noun)|break|breakout|jailbreak|gaolbreak|prison-breaking|escape|flight +prisoner|1 +(noun)|captive|unfortunate|unfortunate person +prisoner's base|1 +(noun)|game +prisoner of war|1 +(noun)|POW|prisoner|captive +prisoner of war camp|1 +(noun)|prison camp|internment camp|POW camp|camp +prisoner of war censorship|1 +(noun)|military censorship +prisonlike|1 +(adj)|unfree +prissily|1 +(adv)|primly +prissy|2 +(adj)|priggish|prim|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +(adj)|dainty|nice|overnice|squeamish|fastidious +pristidae|1 +(noun)|Pristidae|family Pristidae|fish family +pristine|2 +(adj)|pure +(adj)|clean +pristis|1 +(noun)|Pristis|genus Pristis|fish genus +pristis pectinatus|1 +(noun)|smalltooth sawfish|Pristis pectinatus|sawfish +pritzelago|1 +(noun)|Pritzelago|genus Pritzelago|dilleniid dicot genus +pritzelago alpina|1 +(noun)|chamois cress|Pritzelago alpina|Lepidium alpina|herb|herbaceous plant +privacy|2 +(noun)|privateness|seclusion|reclusiveness|isolation +(noun)|privateness|secrecy|concealment|isolation +private|5 +(adj)|private |backstage|clannish|cliquish|clubby|snobbish|snobby|cloistered|reclusive|secluded|sequestered|close|closet|confidential|secret|confidential|insular|nonpublic|offstage|one-on-one|privy|secluded|secret|semiprivate|tete-a-tete|head-to-head|toffee-nosed|closed-door|esoteric|personal +(adj)|personal +(adj)|individual|personal +(adj)|secret|inward +(noun)|buck private|common soldier|enlisted man +private-enterprise|1 +(adj)|competitive|free-enterprise|capitalistic |capitalist +private corporation|1 +(noun)|closed corporation|close corporation|privately held corporation|corporation|corp +private detective|1 +(noun)|PI|private eye|private investigator|operative|shamus|sherlock|detective +private eye|1 +(noun)|private detective|PI|private investigator|operative|shamus|sherlock|detective +private foundation|1 +(noun)|charity +private instructor|1 +(noun)|coach|tutor|teacher|instructor +private investigator|1 +(noun)|private detective|PI|private eye|operative|shamus|sherlock|detective +private line|1 +(noun)|telephone line|phone line|telephone circuit|subscriber line|line +private nuisance|1 +(noun)|nuisance +private parts|1 +(noun)|genitalia|genital organ|genitals|privates|crotch|reproductive organ|sex organ +private property|1 +(noun)|personal property|personal estate|personalty|property|belongings|holding|material possession +private road|1 +(noun)|driveway|drive|road|route +private school|1 +(noun)|school +private security force|1 +(noun)|security force|force|personnel +private treaty|1 +(noun)|selling|merchandising|marketing +privateer|2 +(noun)|privateersman|officer|ship's officer|crewman|crew member +(noun)|warship|war vessel|combat ship +privateersman|1 +(noun)|privateer|officer|ship's officer|crewman|crew member +privately|1 +(adv)|in private|in camera +privately held corporation|1 +(noun)|closed corporation|close corporation|private corporation|corporation|corp +privateness|2 +(noun)|privacy|secrecy|concealment|isolation +(noun)|privacy|seclusion|reclusiveness|isolation +privates|2 +(noun)|genitalia|genital organ|genitals|private parts|crotch|reproductive organ|sex organ +(noun)|private|buck private|common soldier|enlisted man +privation|2 +(noun)|want|deprivation|poverty|poorness|impoverishment +(noun)|deprivation|social control +privatise|1 +(verb)|privatize|denationalize|denationalise +privatize|1 +(verb)|privatise|denationalize|denationalise +privet|1 +(noun)|shrub|bush +privet andromeda|1 +(noun)|maleberry|male berry|he-huckleberry|Lyonia ligustrina|shrub|bush +privet hedge|1 +(noun)|hedge|hedgerow +privilege|4 +(noun)|advantage|vantage +(noun)|prerogative|perquisite|exclusive right|right +(noun)|right +(verb)|favor|favour|permit|allow|let|countenance +privilege against self incrimination|1 +(noun)|freedom from self-incrimination|civil right|civil rights +privilege of the floor|1 +(noun)|prerogative|privilege|perquisite|exclusive right +privileged|3 +(adj)|privileged |advantaged|favored|sweetheart|fortunate|rich +(adj)|exempt +(adj)|inside|inner|exclusive +privine|1 +(noun)|naphazoline|Privine|Sudafed|vasoconstrictor|vasoconstrictive|nasal decongestant +privy|4 +(adj)|secluded|secret|private +(adj)|informed +(noun)|toilet|lavatory|lav|can|john|bathroom|room +(noun)|outhouse|earth-closet|jakes|outbuilding +privy council|1 +(noun)|council +privy purse|1 +(noun)|allowance +prix de rome|1 +(noun)|Prix de Rome|award|accolade|honor|honour|laurels +prix fixe|2 +(adj)|table d'hote +(noun)|menu|bill of fare|card|carte du jour|carte +prix goncourt|1 +(noun)|Prix Goncourt|award|accolade|honor|honour|laurels +prize|7 +(adj)|choice|prime|quality|select|superior +(noun)|award|gift +(noun)|loot|booty|pillage|plunder|swag|dirty money|stolen property +(noun)|trophy|award|accolade|honor|honour|laurels +(verb)|value|treasure|appreciate|see|consider|reckon|view|regard +(verb)|pry|prise|lever|jimmy|open|open up +(verb)|respect|esteem|value|prise|see|consider|reckon|view|regard +prize money|1 +(noun)|prize|award +prize ring|1 +(noun)|boxing ring|ring +prize winner|1 +(noun)|lottery winner|winner +prizefight|2 +(noun)|boxing match +(verb)|box +prizefighter|1 +(noun)|gladiator|boxer|pugilist +prizewinning|1 +(adj)|champion|best +prn|1 +(adv)|as needed|as required|pro re nata|PRN +pro|3 +(adj)|pro |affirmative|favoring +(noun)|professional|athlete|jock +(noun)|argument|statement +pro-american|1 +(adj)|pro-American |North American country|North American nation +pro-choice|1 +(adj)|pro-choice +pro-choice faction|1 +(noun)|faction|sect +pro-inflammatory|2 +(adj)|proinflammatory|unhealthy +(adj)| +pro-life|1 +(adj)|pro-life +pro-life faction|1 +(noun)|faction|sect +pro-lifer|1 +(noun)|advocate|advocator|proponent|exponent +pro bono|1 +(adj)|unpaid +pro forma|2 +(adj)|perfunctory|formal +(adv)|perfunctorily|as a formality +pro rata|1 +(adv)|proportionately +pro re nata|1 +(adv)|as needed|as required|PRN +pro tem|2 +(adj)|pro tempore|impermanent |temporary +(adv)|pro tempore +pro tempore|2 +(adj)|pro tem|impermanent |temporary +(adv)|pro tem +proaccelerin|1 +(noun)|prothrombin accelerator|accelerator factor|factor V|coagulation factor|clotting factor +proactive|2 +(adj)|proactive +(adj)|active +probabilism|2 +(noun)|casuistry +(noun)|philosophical doctrine|philosophical theory +probabilistic|2 +(adj)|casuistry +(adj)|measure|quantity|amount +probability|2 +(noun)|chance|measure|quantity|amount +(noun)|quality +probability theorist|1 +(noun)|mathematician +probability theory|1 +(noun)|applied mathematics|applied math +probable|3 +(adj)|probable |likely|plausible|presumed|presumptive|verisimilar|equiprobable +(adj)|likely +(noun)|applicant|applier +probable cause|1 +(noun)|evidence|grounds +probably|2 +(adv)|likely|in all likelihood|in all probability|belike +(adv)|credibly|believably|plausibly +probate|4 +(noun)|probate will|certificate|certification|credential|credentials +(noun)|validation|proof|substantiation +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +(verb)|validate|formalize|formalise +probate court|1 +(noun)|court|tribunal|judicature +probate will|1 +(noun)|probate|certificate|certification|credential|credentials +probation|3 +(noun)|trial period|test period +(noun)|trial period|test period +(noun)|liberation|release|freeing +probation officer|1 +(noun)|officeholder|officer +probationary|1 +(adj)|provisional|provisionary|tentative|conditional +probationer|2 +(noun)|student nurse|nurse +(noun)|parolee|criminal|felon|crook|outlaw|malefactor +probative|1 +(adj)|significant |important +probe|6 +(noun)|investigation|inquiry|enquiry|research +(noun)|surgical instrument +(noun)|exploration +(noun)|research +(verb)|examine|investigate|look into +(verb)|dig into|poke into|penetrate|perforate +probenecid|1 +(noun)|medicine|medication|medicament|medicinal drug +probing|1 +(adj)|inquisitory|searching|inquiring +probity|1 +(noun)|integrity +problem|3 +(noun)|job|difficulty +(noun)|trouble|difficulty +(noun)|question|head +problem-oriented language|1 +(noun)|application-oriented language|source language +problem solver|1 +(noun)|solver|convergent thinker|thinker +problem solving|2 +(noun)|cognitive psychology +(noun)|thinking|thought|cerebration|intellection|mentation +problematic|2 +(adj)|debatable|problematical|questionable +(adj)|baffling|knotty|problematical|difficult |hard +problematical|2 +(adj)|debatable|problematic|questionable +(adj)|baffling|knotty|problematic|difficult |hard +proboscidea|2 +(noun)|Proboscidea|genus Proboscidea|plant genus +(noun)|Proboscidea|order Proboscidea|animal order +proboscidea arenaria|1 +(noun)|sand devil's claw|Proboscidea arenaria|Martynia arenaria|herb|herbaceous plant +proboscidea fragrans|1 +(noun)|sweet unicorn plant|Proboscidea fragrans|Martynia fragrans|herb|herbaceous plant +proboscidea louisianica|1 +(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb|herbaceous plant +proboscidean|1 +(noun)|proboscidian|placental|placental mammal|eutherian|eutherian mammal +proboscidian|1 +(noun)|proboscidean|placental|placental mammal|eutherian|eutherian mammal +proboscis|2 +(noun)|nose|olfactory organ +(noun)|trunk|snout|neb +proboscis flower|1 +(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|ram's horn|Proboscidea louisianica|herb|herbaceous plant +proboscis monkey|1 +(noun)|Nasalis larvatus|Old World monkey|catarrhine +proboscis worm|1 +(noun)|ribbon worm|nemertean|nemertine|worm +procaine|1 +(noun)|Ethocaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +procaine hydrochloride|1 +(noun)|novocaine|Novocain|procaine|Ethocaine +procarbazine|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +procardia|1 +(noun)|nifedipine|Procardia|calcium blocker|calcium-channel blocker +procaryote|1 +(noun)|prokaryote|organism|being +procaryotic|1 +(adj)|prokaryotic |organism|being +procavia|1 +(noun)|Procavia|genus Procavia|mammal genus +procavia capensis|1 +(noun)|rock hyrax|rock rabbit|Procavia capensis|hyrax|coney|cony|dassie|das +procaviidae|1 +(noun)|Procaviidae|family Procaviidae|mammal family +procedural|2 +(adj)|proceeding|legal proceeding|proceedings +(adj)|adjective +procedure|4 +(noun)|process|activity +(noun)|operation|work +(noun)|routine|subroutine|subprogram|function|software|software system|software package|package +(noun)|proceeding|legal proceeding|proceedings +proceed|5 +(verb)|continue|go on|carry on|talk|speak +(verb)|go forward|continue|travel|go|move|locomote +(verb)|go|move|act|move +(verb)|go|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|continue|go on|go along|keep|act|move +proceeding|1 +(noun)|legal proceeding|proceedings|due process|due process of law +proceedings|3 +(noun)|proceeding|legal proceeding|due process|due process of law +(noun)|minutes|transactions|written record|written account +(noun)|proceeding|legal proceeding|due process|due process of law +proceeds|1 +(noun)|return|issue|take|takings|yield|payoff|income +procellaria|1 +(noun)|Procellaria|genus Procellaria|bird genus +procellaria aequinoctialis|1 +(noun)|white-chinned petrel|Procellaria aequinoctialis|petrel +procellariidae|1 +(noun)|Procellariidae|family Procellariidae|bird family +procellariiform seabird|1 +(noun)|pelagic bird|oceanic bird +procellariiformes|1 +(noun)|Procellariiformes|order Procellariiformes|animal order +process|13 +(noun)|procedure|activity +(noun)|phenomenon +(noun)|cognitive process|mental process|operation|cognitive operation|cognition|knowledge|noesis +(noun)|summons|writ|judicial writ +(noun)|unconscious process|cognition|knowledge|noesis +(noun)|outgrowth|appendage|body part +(verb)|manage|deal|care|handle +(verb)|treat|affect|impact|bear upon|bear on|touch on|touch +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|action|sue|litigate|challenge +(verb)|work|work on|transform|transmute|transubstantiate +(verb)|serve|swear out|deliver +(verb)|march|walk +process-server|1 +(noun)|messenger|courier +process cheese|1 +(noun)|processed cheese|cheese +process of monition|1 +(noun)|monition|summons|process +process printing|1 +(noun)|printing|printing process +processed|3 +(adj)|prepared +(adj)|refined +(adj)|processed |clarified|computerized|computerised|cured|vulcanized|vulcanised|rubberized|rubberised|semi-processed|milled|polished|finished|pure|treated +processed cheese|1 +(noun)|process cheese|cheese +processing|1 +(noun)|process +processing time|1 +(noun)|time interval|interval +procession|3 +(noun)|emanation|rise|origin|origination|inception +(noun)|group action|collection|aggregation|accumulation|assemblage +(noun)|progress|progression|advance|advancement|forward motion|onward motion|motion|movement|move +processional|3 +(adj)|group action|collection|aggregation|accumulation|assemblage +(adj)|group action|collection|aggregation|accumulation|assemblage +(noun)|prosodion|religious music|church music +processional march|1 +(noun)|recessional march|marching music|march +processor|3 +(noun)|business|concern|business concern|business organization|business organisation +(noun)|worker +(noun)|central processing unit|CPU|C.P.U.|central processor|mainframe|electronic equipment|hardware|computer hardware +processus coronoideus|1 +(noun)|coronoid process|process|outgrowth|appendage +prochlorperazine|1 +(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|antiemetic|antiemetic drug +prociphilus|1 +(noun)|Prociphilus|genus Prociphilus|arthropod genus +prociphilus tessellatus|1 +(noun)|woolly alder aphid|Prociphilus tessellatus|woolly aphid|woolly plant louse +proclaim|4 +(verb)|entitle|title +(verb)|exclaim|promulgate|declare +(verb)|predicate|assert|asseverate|maintain +(verb)|laud|extol|exalt|glorify|praise +proclaimed|1 +(adj)|announced|declared +proclamation|2 +(noun)|announcement|annunciation|declaration|statement +(noun)|promulgation|act|human action|human activity +proclivity|1 +(noun)|propensity|leaning|inclination|disposition|tendency +procnias|1 +(noun)|Procnias|genus Procnias|bird genus +proconsul|3 +(noun)|official|functionary +(noun)|governor +(noun)|hominoid +proconsular|1 +(adj)|official|functionary +proconsulate|1 +(noun)|proconsulship|position|post|berth|office|spot|billet|place|situation +proconsulship|1 +(noun)|proconsulate|position|post|berth|office|spot|billet|place|situation +proconvertin|1 +(noun)|cothromboplastin|stable factor|factor VII|coagulation factor|clotting factor +procrastinate|2 +(verb)|stall|drag one's feet|drag one's heels|shillyshally|dilly-dally|dillydally|delay +(verb)|stall|drag one's feet|drag one's heels|shillyshally|dilly-dally|dillydally|delay +procrastination|2 +(noun)|cunctation|shillyshally|delay|holdup +(noun)|dilatoriness|slowness|deliberation|deliberateness|unhurriedness +procrastinator|1 +(noun)|postponer|cunctator|delayer +procreate|1 +(verb)|reproduce|multiply|make|create +procreation|1 +(noun)|reproduction|breeding|facts of life|sexual activity|sexual practice|sex|sex activity +procreative|1 +(adj)|generative|reproductive|fruitful +procrustes|1 +(noun)|Procrustes|mythical being +proctalgia|1 +(noun)|pain|hurting +proctitis|1 +(noun)|inflammation|redness|rubor +proctocele|1 +(noun)|rectocele|colpocele|vaginocele +proctologist|1 +(noun)|specialist|medical specialist +proctology|1 +(noun)|medicine|medical specialty +proctoplasty|1 +(noun)|rectoplasty|plastic surgery|reconstructive surgery|anaplasty +proctor|2 +(noun)|monitor|supervisor +(verb)|invigilate|watch|observe|follow|watch over|keep an eye on +proctorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +proctoscope|1 +(noun)|endoscope +proctoscopy|1 +(noun)|endoscopy +procumbent|1 +(adj)|unerect +procurable|1 +(adj)|gettable|getable|obtainable|available +procural|1 +(noun)|procurement|procurance|acquisition +procurance|1 +(noun)|procurement|procural|acquisition +procurator|2 +(noun)|proxy|placeholder|agent +(noun)|bureaucrat|administrative official +procure|2 +(verb)|secure|obtain +(verb)|pander|pimp|provide|supply|ply|cater +procurement|1 +(noun)|procurance|procural|acquisition +procurer|2 +(noun)|pimp|panderer|pander|pandar|fancy man|ponce|wrongdoer|offender +(noun)|securer|acquirer +procuress|1 +(noun)|pimp|procurer|panderer|pander|pandar|fancy man|ponce +procursive epilepsy|1 +(noun)|epilepsy +procyclidine|1 +(noun)|Kemadrin|muscle relaxant +procyon|2 +(noun)|Procyon|binary star|binary|double star +(noun)|Procyon|genus Procyon|mammal genus +procyon cancrivorus|1 +(noun)|crab-eating raccoon|Procyon cancrivorus|raccoon|racoon +procyon lotor|1 +(noun)|common raccoon|common racoon|coon|ringtail|Procyon lotor|raccoon|racoon +procyonid|1 +(noun)|carnivore +procyonidae|1 +(noun)|Procyonidae|family Procyonidae|mammal family +prod|5 +(noun)|goad|goading|prodding|urging|spur|spurring|encouragement +(noun)|goad|device +(verb)|nudge|poke at|push|force +(verb)|incite|egg on +(verb)|jab|stab|poke|dig|thrust +prodding|1 +(noun)|goad|goading|prod|urging|spur|spurring|encouragement +prodigal|4 +(adj)|lavish|munificent|overgenerous|too-generous|unsparing|unstinted|unstinting|generous +(adj)|extravagant|profligate|spendthrift|wasteful +(adj)|improvident +(noun)|profligate|squanderer|consumer +prodigality|2 +(noun)|extravagance|profligacy|improvidence|shortsightedness +(noun)|extravagance|lavishness|highlife|high life|waste|wastefulness|dissipation +prodigally|1 +(adv)|wastefully +prodigious|3 +(adj)|colossal|stupendous|large +(adj)|portentous|significant |important +(adj)|exceeding|exceptional|olympian|surpassing|extraordinary +prodigy|3 +(noun)|genius|mastermind|brain|Einstein +(noun)|omen|portent|presage|prognostic|prognostication|augury|sign|foretoken|preindication +(noun)|exemplar|example|model|good example +prodroma|1 +(noun)|prodrome|symptom +prodromal|1 +(adj)|prodromic|symptom +prodrome|1 +(noun)|prodroma|symptom +prodromic|1 +(adj)|prodromal|symptom +produce|8 +(noun)|green goods|green groceries|garden truck|food +(verb)|bring forth|make|create +(verb)|make|create +(verb)|bring about|give rise|make|create +(verb)|bring forth|expose|exhibit|display +(verb)|bring on|bring out +(verb)|grow|raise|farm|cultivate +(verb)|grow|develop|get|acquire|change +produced|1 +(adj)|make|create +producer|3 +(noun)|manufacturer|maker|shaper +(noun)|creator +(noun)|cause +producer gas|1 +(noun)|air gas|gas +producer price index|1 +(noun)|wholesale price index|price index|price level +product|6 +(noun)|merchandise|wares|commodity|trade goods|goods +(noun)|production|creation +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|chemical +(noun)|mathematical product|quantity +(noun)|intersection|cartesian product|set +product-moment correlation coefficient|1 +(noun)|Pearson product-moment correlation coefficient|correlation coefficient|coefficient of correlation|correlation +product development|1 +(noun)|development +product introduction|1 +(noun)|introduction|debut|first appearance|launching|unveiling|entry +product line|1 +(noun)|line|line of products|line of merchandise|business line|line of business|merchandise|wares|product +product research|1 +(noun)|marketing research|market research +production|8 +(noun)|industry|manufacture +(noun)|presentation +(noun)|act|human action|human activity +(noun)|product|creation +(noun)|exhibition +(noun)|output|yield|indefinite quantity +(noun)|display +(noun)|creation|creative activity +production cost|1 +(noun)|cost +production line|1 +(noun)|assembly line|line|mechanical system +production order|1 +(noun)|order|purchase order +productive|4 +(adj)|productive |amentiferous|amentaceous|arable|cultivable|cultivatable|tillable|bearing|fecund|fertile|prolific|fruitful|profitable|oil-bearing|rich|creative|originative|fertile|fruitful|profitable|successful +(adj)|generative |creative|originative +(adj)|successful +(adj)|fat|fertile|rich|fruitful +productively|1 +(adv)|fruitfully|profitably +productiveness|1 +(noun)|productivity|fruitfulness|fecundity +productivity|2 +(noun)|productiveness|fruitfulness|fecundity +(noun)|ratio +proenzyme|1 +(noun)|zymogen|organic compound +prof|1 +(noun)|professor|academician|academic|faculty member +profanation|2 +(noun)|desecration|blasphemy|sacrilege|irreverence|violation +(noun)|degradation|debasement +profanatory|1 +(adj)|profane +profane|6 +(adj)|blasphemous|blue|dirty +(adj)|profane |laic|lay|secular|profanatory|secularized|secularised|temporal|worldly|earthly|impious +(adj)|unconsecrated|unsanctified|unholy |unhallowed +(adj)|blasphemous|sacrilegious|irreverent +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|vitiate|deprave|misdirect|change|alter|modify +(verb)|desecrate|outrage|violate|assail|assault|set on|attack +profaned|1 +(adj)|violated|desecrated +profaneness|2 +(noun)|irreverence +(noun)|unsanctification|unholiness +profanity|1 +(noun)|utterance|vocalization +profess|7 +(verb)|claim +(verb)|declare +(verb)|concede|confess|admit|acknowledge +(verb)|declare +(verb)|accept|admit|take|take on +(verb)|vow +(verb)|pretend|claim +professed|3 +(adj)|professional +(adj)|declared +(adj)|avowed|declared +professedly|1 +(adv)|avowedly +professing|1 +(noun)|profession|avowal|avouchment|affirmation +profession|4 +(noun)|community|occupational group|vocation +(noun)|occupation|business|job|line of work|line +(noun)|professing|avowal|avouchment|affirmation +(noun)|affirmation +professional|8 +(adj)|professional |nonrecreational|paid|professed +(adj)|occupational group|vocation +(adj)|professional +(adj)|occupation|business|job|line of work|line +(adj)|white-collar +(noun)|professional person|adult|grownup +(noun)|pro|athlete|jock +(noun)|master|authority +professional association|1 +(noun)|association +professional baseball|1 +(noun)|baseball|baseball game|ball|sport +professional basketball|1 +(noun)|basketball|basketball game|hoops|sport +professional boxing|1 +(noun)|boxing|pugilism|fisticuffs|sport +professional dancer|1 +(noun)|dancer|performer|performing artist +professional football|1 +(noun)|football|football game|sport +professional golf|1 +(noun)|golf|golf game|sport +professional golfer|1 +(noun)|golf pro|golfer|golf player|linksman +professional life|1 +(noun)|business life|career|calling|vocation +professional organisation|1 +(noun)|professional organization|organization|organisation +professional organization|1 +(noun)|professional organisation|organization|organisation +professional person|1 +(noun)|professional|adult|grownup +professional relation|1 +(noun)|social relation +professional tennis|1 +(noun)|tennis|lawn tennis|sport +professional tennis player|1 +(noun)|tennis pro|tennis player +professional wrestling|1 +(noun)|wrestling|rassling|grappling|sport +professionalisation|1 +(noun)|professionalization|social process +professionalise|2 +(verb)|professionalize|change +(verb)|professionalize|change|alter|modify +professionalism|1 +(noun)|expertness|expertise +professionalization|1 +(noun)|professionalisation|social process +professionalize|2 +(verb)|professionalise|change +(verb)|professionalise|change|alter|modify +professor|1 +(noun)|prof|academician|academic|faculty member +professorial|1 +(adj)|academician|academic|faculty member +professorship|1 +(noun)|chair|position|post|berth|office|spot|billet|place|situation +proffer|2 +(noun)|suggestion|proposition|proposal +(verb)|offer|give +proficiency|2 +(noun)|competence|competency +(noun)|technique|skillfulness +proficient|1 +(adj)|adept|expert|good|practiced|skillful|skilful|skilled +profile|7 +(noun)|chart +(noun)|side view +(noun)|biography|life|life story|life history +(noun)|visibility|salience|saliency|strikingness +(noun)|cross section +(verb)|write|compose|pen|indite +(verb)|represent|interpret +profiling|1 +(noun)|identification +profit|4 +(noun)|net income|net|net profit|lucre|profits|earnings|income +(noun)|gain|advantage|vantage +(verb)|gain|benefit|get|acquire +(verb)|turn a profit|gain|take in|clear|make|earn|realize|realise|pull in|bring in +profit-and-loss statement|1 +(noun)|income statement|earnings report|operating statement|statement|financial statement +profit-maximising|1 +(adj)|profit-maximizing|increasing +profit-maximizing|1 +(adj)|profit-maximising|increasing +profit and loss|1 +(noun)|profit and loss account|account|accounting|account statement +profit and loss account|1 +(noun)|profit and loss|account|accounting|account statement +profit margin|1 +(noun)|margin of profit|gross margin|ratio +profit sharing|1 +(noun)|share|portion|part|percentage +profit taker|1 +(noun)|stock trader +profitability|1 +(noun)|profitableness|profit|gain +profitable|4 +(adj)|profitable |bankable|fat|juicy|gainful|paid|paying|economic|lucrative|moneymaking|remunerative|advantageous|productive|useful|utile +(adj)|advantageous +(adj)|rewarding +(adj)|fruitful|productive +profitableness|1 +(noun)|profitability|profit|gain +profitably|1 +(adv)|productively|fruitfully +profiteer|2 +(noun)|capitalist +(verb)|profit|gain|benefit +profitless|1 +(adj)|unprofitable|unrewarding +profitlessly|1 +(adv)|unprofitably|gainlessly +profits|4 +(noun)|net income|net|net profit|lucre|profit|earnings|income +(noun)|winnings|win|financial gain +(noun)|net income|net|net profit|lucre|profit|earnings|income +(noun)|profit|gain|advantage|vantage +profligacy|2 +(noun)|extravagance|prodigality|improvidence|shortsightedness +(noun)|dissipation|dissolution|licentiousness|intemperance|intemperateness|self-indulgence +profligate|4 +(adj)|extravagant|prodigal|spendthrift|wasteful +(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|riotous|fast|immoral +(noun)|rake|rip|blood|roue|libertine|debauchee|rounder +(noun)|prodigal|squanderer|consumer +profligately|1 +(adv)|dissolutely +profound|6 +(adj)|profound |deep|thoughtful|intense|scholarly +(adj)|intense +(adj)|fundamental|significant |important +(adj)|deep +(adj)|heavy|sound|wakeless|deep +(adj)|unfathomed|unplumbed|unsounded|deep +profoundly|1 +(adv)|deeply +profoundly deaf|1 +(adj)|stone-deaf|deaf as a post|unhearing|deaf +profoundness|4 +(noun)|reconditeness|abstruseness|abstrusity|profundity|wisdom +(noun)|astuteness|profundity|depth|wisdom|sapience +(noun)|deepness|profundity|depth +(noun)|profundity|depth +profundity|4 +(noun)|reconditeness|abstruseness|abstrusity|profoundness|wisdom +(noun)|profoundness|depth +(noun)|astuteness|profoundness|depth|wisdom|sapience +(noun)|deepness|profoundness|depth +profuse|1 +(adj)|exuberant|lush|luxuriant|riotous|abundant +profusely|1 +(adv)|abundantly|copiously|extravagantly +profuseness|1 +(noun)|profusion|richness|cornucopia|abundance|copiousness|teemingness +profusion|1 +(noun)|profuseness|richness|cornucopia|abundance|copiousness|teemingness +progenitor|1 +(noun)|primogenitor|ancestor|ascendant|ascendent|antecedent|root +progeny|1 +(noun)|offspring|issue|relative|relation +progeria|1 +(noun)|abnormality|abnormalcy|abnormal condition +progestational|2 +(adj)|progestin|progestogen +(adj)|physiological state|physiological condition +progesterone|1 +(noun)|Lipo-Lutin|progestin|progestogen +progestin|1 +(noun)|progestogen|steroid hormone|steroid|sex hormone +progestogen|1 +(noun)|progestin|steroid hormone|steroid|sex hormone +prognathic|1 +(adj)|prognathous |hypognathous|lantern-jawed +prognathous|1 +(adj)|prognathous |prognathic|hypognathous|lantern-jawed +progne|1 +(noun)|Progne|genus Progne|bird genus +progne subis|1 +(noun)|purple martin|Progne subis|martin +prognosis|2 +(noun)|forecast|prediction|foretelling|forecasting|prognostication +(noun)|prospect|medical prognosis|medical diagnosis +prognostic|2 +(adj)|predictive|prognosticative|prophetic |prophetical +(noun)|omen|portent|presage|prognostication|prodigy|augury|sign|foretoken|preindication +prognosticate|2 +(verb)|predict|foretell|call|forebode|anticipate|promise|guess|venture|pretend|hazard +(verb)|bode|portend|auspicate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak|betoken|indicate|point|signal +prognostication|3 +(noun)|omen|portent|presage|prognostic|prodigy|augury|sign|foretoken|preindication +(noun)|prediction|foretelling|forecasting|statement +(noun)|prophecy|vaticination|prediction|anticipation|prevision +prognosticative|1 +(adj)|predictive|prognostic|prophetic |prophetical +prognosticator|1 +(noun)|forecaster|predictor|soothsayer|visionary|illusionist|seer +program|10 +(noun)|programme|system|system of rules +(noun)|plan|programme|idea|thought +(noun)|programme|computer program|computer programme|software|software system|software package|package +(noun)|course of study|programme|curriculum|syllabus|information|info +(noun)|broadcast|programme|show +(noun)|programme|performance +(noun)|platform|political platform|political program|document|written document|papers +(noun)|programme|announcement|promulgation +(verb)|programme|schedule +(verb)|programme|create by mental act|create mentally +program library|1 +(noun)|library|subroutine library|collection|aggregation|accumulation|assemblage +program line|1 +(noun)|instruction|command|statement|code|computer code +program music|1 +(noun)|programme music|musical composition|opus|composition|piece|piece of music +program trading|1 +(noun)|trading +programing|2 +(noun)|scheduling|programming|planning +(noun)|programming|computer programming|computer programing|creating by mental acts +programing language|1 +(noun)|programming language|artificial language +programma|1 +(noun)|decree|edict|fiat|order|rescript +programme|9 +(noun)|program|announcement|promulgation +(noun)|course of study|program|curriculum|syllabus|information|info +(noun)|broadcast|program|show +(noun)|program|computer program|computer programme|software|software system|software package|package +(noun)|program|system|system of rules +(noun)|plan|program|idea|thought +(noun)|program|performance +(verb)|program|create by mental act|create mentally +(verb)|program|schedule +programme music|1 +(noun)|program music|musical composition|opus|composition|piece|piece of music +programmed cell death|1 +(noun)|apoptosis|caspase-mediated cell death|necrobiosis|cell death +programmer|1 +(noun)|computer programmer|coder|software engineer|engineer|applied scientist|technologist|computer user +programming|2 +(noun)|scheduling|programing|planning +(noun)|programing|computer programming|computer programing|creating by mental acts +programming error|1 +(noun)|software error|error|computer error +programming language|1 +(noun)|programing language|artificial language +progress|6 +(noun)|advancement|development +(noun)|progression|procession|advance|advancement|forward motion|onward motion|motion|movement|move +(noun)|progression|advance|change of location|travel +(verb)|come on|come along|advance|get on|get along|shape up|develop +(verb)|advance|pass on|move on|march on|go on|travel|go|move|locomote +(verb)|build up|work up|build|develop +progress report|1 +(noun)|report|study|written report +progress to|1 +(verb)|reach|make|get to|achieve|accomplish|attain|reach +progression|3 +(noun)|patterned advance|series +(noun)|progress|advance|change of location|travel +(noun)|progress|procession|advance|advancement|forward motion|onward motion|motion|movement|move +progressive|7 +(adj)|progressive |advanced|forward-looking|innovative|modern|advancing|forward|forward-moving|incremental|modernized|modernised|state-of-the-art|forward|industrial +(adj)|reformist|reform-minded|liberal +(adj)|progressive |degressive|graduated|proportional +(adj)|increasing +(adj)|active +(noun)|progressive tense|imperfect|imperfect tense|continuous tense|tense +(noun)|liberal|adult|grownup +progressive aspect|1 +(noun)|durative|durative aspect +progressive emphysematous necrosis|1 +(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|gangrene|sphacelus|slough +progressive party|1 +(noun)|Progressive Party|Bull Moose Party|party|political party +progressive rock|1 +(noun)|art rock|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +progressive tax|1 +(noun)|tax|taxation|revenue enhancement +progressive tense|1 +(noun)|progressive|imperfect|imperfect tense|continuous tense|tense +progressive vaccinia|1 +(noun)|vaccinia gangrenosa|vaccinia|vaccina|variola vaccine|variola vaccinia|variola vaccina +progressively|1 +(adv)|increasingly|more and more +progressiveness|1 +(noun)|progressivity|changeableness|changeability +progressivism|1 +(noun)|political orientation|ideology|political theory +progressivity|1 +(noun)|progressiveness|changeableness|changeability +progymnosperm|1 +(noun)|gymnosperm +prohibit|1 +(verb)|forbid|interdict|proscribe|veto|disallow|command|require|compel +prohibited|2 +(adj)|forbidden|out|proscribed|taboo|tabu|verboten|impermissible +(adj)|banned|illegal +prohibition|5 +(noun)|law +(noun)|ban|proscription|decree|edict|fiat|order|rescript +(noun)|prohibition era|time period|period of time|period +(noun)|refusal +(noun)|inhibition|forbiddance|action +prohibition era|1 +(noun)|prohibition|time period|period of time|period +prohibition party|1 +(noun)|Prohibition Party|party|political party +prohibitionist|1 +(noun)|dry|reformer|reformist|crusader|meliorist +prohibitive|1 +(adj)|prohibitory|preventive |preventative +prohibitory|1 +(adj)|prohibitive|preventive |preventative +proinflammatory|1 +(adj)|pro-inflammatory|unhealthy +project|14 +(noun)|undertaking|task|labor|work +(noun)|projection|plan|program|programme +(verb)|communicate|intercommunicate +(verb)|stick out|protrude|jut out|jut +(verb)|transmit|transfer|transport|channel|channelize|channelise +(verb)|show +(verb)|cause to be perceived +(verb)|draw +(verb)|plan|contrive|design|create by mental act|create mentally +(verb)|propose|plan +(verb)|visualize|visualise|envision|fancy|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|cast|contrive|throw|send|direct +(verb)|send off|propel|impel +(verb)|externalize|externalise|impute|ascribe|assign|attribute +projected|2 +(adj)|proposed|planned +(adj)|jutting|projecting|protruding|sticking|sticking out|protrusive +projectile|2 +(adj)|dynamic |dynamical +(noun)|missile|weapon|arm|weapon system +projecting|1 +(adj)|jutting|projected|protruding|sticking|sticking out|protrusive +projection|10 +(noun)|prediction|anticipation|prevision +(noun)|visual communication +(noun)|project|plan|program|programme +(noun)|structure|construction +(noun)|convex shape|convexity +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|acoustic projection|sound projection|acoustic phenomenon +(noun)|representation +(noun)|protrusion|jut|jutting|change of shape +(noun)|expulsion|ejection|forcing out|propulsion|actuation +projection screen|1 +(noun)|screen|silver screen|surface +projectionist|1 +(noun)|skilled worker|trained worker +projective device|1 +(noun)|projective test|projective technique|personality test +projective geometry|1 +(noun)|descriptive geometry|geometry +projective technique|1 +(noun)|projective test|projective device|personality test +projective test|1 +(noun)|projective device|projective technique|personality test +projector|2 +(noun)|optical device +(noun)|optical instrument +prokaryote|1 +(noun)|procaryote|organism|being +prokaryotic|1 +(adj)|prokaryotic |organism|being +prokhorov|1 +(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist +prokofiev|1 +(noun)|Prokofiev|Sergei Sergeyevich Prokofiev|composer +prolactin|1 +(noun)|lactogenic hormone|luteotropin|lactogen|gonadotropin|gonadotrophin|gonadotropic hormone|gonadotrophic hormone +prolamine|1 +(noun)|simple protein +prolapse|2 +(noun)|prolapsus|descensus|disability|disablement|handicap|impairment +(verb)|descend|fall|go down|come down +prolapsus|1 +(noun)|prolapse|descensus|disability|disablement|handicap|impairment +prolate|2 +(adj)|prolate |watermelon-shaped|rounded +(adj)|egg-shaped|elliptic|elliptical|oval|ovate|oviform|ovoid|rounded +prolate cycloid|1 +(noun)|cycloid +prole|1 +(noun)|proletarian|worker|commoner|common man|common person +prolepsis|1 +(noun)|rhetorical device +proletarian|3 +(adj)|proletarian |propertyless|lowborn|lower-class|low-class +(adj)|lower-class |low-class +(noun)|prole|worker|commoner|common man|common person +proletariat|1 +(noun)|labor|labour|working class|class|social class|socio-economic class +proliferate|2 +(verb)|grow +(verb)|multiply|manifold +proliferation|2 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|increase|increment|growth +prolific|2 +(adj)|fecund|fertile|productive +(adj)|fertile|fruitful +prolificacy|1 +(noun)|richness|fertility|fruitfulness|fecundity +proline|1 +(noun)|amino acid|aminoalkanoic acid +prolix|1 +(adj)|prolix |diffuse|long-winded|tedious|verbose|windy|wordy|verbal|pleonastic|redundant|tautologic|tautological|redundant|wordy|voluble +prolixity|1 +(noun)|prolixness|long-windedness|wordiness|verboseness|verbosity +prolixness|1 +(noun)|prolixity|long-windedness|wordiness|verboseness|verbosity +prolog|1 +(noun)|Prolog|logic programing|logic programming|programming language|programing language +prologise|1 +(verb)|prologize|prologuize|precede|preface|premise|introduce +prologize|1 +(verb)|prologuize|prologise|precede|preface|premise|introduce +prologue|1 +(noun)|introduction +prologuize|1 +(verb)|prologize|prologise|precede|preface|premise|introduce +prolong|2 +(verb)|protract|extend|draw out|lengthen +(verb)|sustain|keep up|continue|uphold|carry on|bear on|preserve +prolongation|3 +(noun)|protraction|perpetuation|lengthening|continuance|continuation +(noun)|extension|lengthiness|longness +(noun)|lengthiness|continuation|protraction|duration|length +prolonge|1 +(noun)|rope +prolonge knot|1 +(noun)|sailor's breastplate|knot +prolonged|3 +(adj)|drawn-out|extended|lengthy|protracted|long +(adj)|elongated|extended|lengthened|long +(adj)|chronic +prolusion|2 +(noun)|foreword|preface|introduction +(noun)|warm-up|tune-up|preparation|readying +prolusory|1 +(adj)|introduction +prom|1 +(noun)|promenade|ball +promenade|7 +(noun)|prom|ball +(noun)|mall|walk|walkway|paseo +(noun)|country-dance|country dancing|contredanse|contra danse|contradance +(noun)|march|marching +(noun)|amble|ramble|saunter|stroll|perambulation|walk +(verb)|parade|troop|march|process +(verb)|walk +promenade deck|1 +(noun)|hurricane deck|hurricane roof|awning deck|deck +promethazine|1 +(noun)|Phenergan|antihistamine|antiemetic|antiemetic drug +prometheus|1 +(noun)|Prometheus|Titan +promethium|1 +(noun)|Pm|atomic number 61|metallic element|metal +prominence|3 +(noun)|standing +(noun)|importance +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|protuberance|protrusion|extrusion|excrescence|projection +prominent|2 +(adj)|outstanding|salient|spectacular|striking|conspicuous |obvious +(adj)|big|large|conspicuous |obvious +prominently|1 +(adv)|conspicuously +promiscuity|1 +(noun)|promiscuousness|sleeping around|sexual activity|sexual practice|sex|sex activity +promiscuous|2 +(adj)|indiscriminate +(adj)|easy|light|loose|sluttish|wanton|unchaste +promiscuously|2 +(adv)|indiscriminately +(adv)|licentiously|wantonly +promiscuousness|1 +(noun)|promiscuity|sleeping around|sexual activity|sexual practice|sex|sex activity +promise|6 +(noun)|speech act|commitment|dedication +(noun)|hope|expectation|outlook|prospect +(verb)|assure|declare +(verb)|declare +(verb)|predict|foretell|prognosticate|call|forebode|anticipate|guess|venture|pretend|hazard +(verb)|be +promised|1 +(adj)|secure +promised land|3 +(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area|geographic area|geographical region|geographic region +(noun)|eden|paradise|nirvana|heaven|Shangri-la|region|part +(noun)|Promised Land|Heaven +promisee|1 +(noun)|communicator +promiser|1 +(noun)|promisor|communicator +promising|2 +(adj)|likely +(adj)|bright|auspicious +promisor|1 +(noun)|promiser|communicator +promissory|1 +(adj)|speech act|commitment|dedication +promissory note|1 +(noun)|note|note of hand|debt instrument|certificate of indebtedness +promontory|1 +(noun)|headland|foreland|natural elevation|elevation +promote|5 +(verb)|advance|boost|further|encourage|support|back up +(verb)|upgrade|advance|kick upstairs|raise|elevate|delegate|designate|depute|assign +(verb)|advertise|advertize|push|praise +(verb)|change +(verb)|play +promoter|2 +(noun)|booster|plugger|advertiser|advertizer|adman +(noun)|showman|impresario|booker|booking agent +promotion|4 +(noun)|publicity|promotional material|packaging|message|content|subject matter|substance +(noun)|change +(noun)|furtherance|advancement|encouragement +(noun)|forwarding|furtherance|advancement|progress +promotion system|1 +(noun)|system +promotional|2 +(adj)|message|content|subject matter|substance +(adj)|encouragement +promotional expense|1 +(noun)|business expense|trade expense +promotional material|1 +(noun)|promotion|publicity|packaging|message|content|subject matter|substance +promotive|1 +(adj)|encouraging +prompt|9 +(adj)|on time|punctual +(adj)|expeditious|timesaving|efficient +(adj)|ready +(adj)|immediate|quick|straightaway|fast +(noun)|prompting|cue +(noun)|command prompt|electronic communication +(verb)|motivate|actuate|propel|move|incite|cause|do|make +(verb)|inspire|instigate|induce|stimulate|cause|have|get|make +(verb)|remind|cue|inform +prompt box|1 +(noun)|prompter's box|booth|cubicle|stall|kiosk +prompt copy|1 +(noun)|promptbook|script|book|playscript +promptbook|1 +(noun)|prompt copy|script|book|playscript +prompter|2 +(noun)|theater prompter|assistant|helper|help|supporter +(noun)|autocue|device +prompter's box|1 +(noun)|prompt box|booth|cubicle|stall|kiosk +prompting|2 +(noun)|suggestion|persuasion|suasion +(noun)|prompt|cue +promptitude|1 +(noun)|promptness|celerity|quickness|rapidity +promptly|3 +(adv)|quickly|quick +(adv)|readily|pronto|without delay +(adv)|right away +promptness|2 +(noun)|promptitude|celerity|quickness|rapidity +(noun)|punctuality|timing +promulgate|2 +(verb)|proclaim|exclaim|declare +(verb)|announce|declare +promulgated|1 +(adj)|published|publicized |publicised +promulgation|3 +(noun)|announcement|statement +(noun)|announcement|proclamation|annunciation|declaration +(noun)|proclamation|act|human action|human activity +promulgator|1 +(noun)|lawgiver|lawmaker +promycelium|1 +(noun)|basidium +pronate|1 +(verb)|turn +pronation|1 +(noun)|rotation|rotary motion +pronator|1 +(noun)|muscle|musculus +prone|2 +(adj)|prostrate|unerect +(adj)|inclined +prone float|1 +(noun)|dead-man's float|floating +proneness|1 +(noun)|disposition +prong|1 +(noun)|projection +prongbuck|1 +(noun)|pronghorn|pronghorn antelope|American antelope|Antilocapra americana|ruminant +pronged|2 +(adj)|tined|divided +(adj)|bifurcate|biramous|branched|forked|forficate|prongy|divided +pronghorn|1 +(noun)|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant +pronghorn antelope|1 +(noun)|pronghorn|prongbuck|American antelope|Antilocapra americana|ruminant +prongy|1 +(adj)|bifurcate|biramous|branched|forked|forficate|pronged|divided +pronk|1 +(verb)|jump|leap|bound|spring +pronominal|1 +(adj)|function word|closed-class word +pronominal phrase|1 +(noun)|phrase +pronoun|1 +(noun)|function word|closed-class word +pronounce|2 +(verb)|articulate|enounce|sound out|enunciate|say +(verb)|label|judge|declare|adjudge|hold +pronounceable|1 +(adj)|pronounceable |rolled|rolling|trilled +pronounced|2 +(adj)|marked|noticeable +(adj)|articulate +pronouncement|1 +(noun)|dictum|say-so|declaration +pronto|1 +(adv)|promptly|readily|without delay +pronucleus|1 +(noun)|nucleus|cell nucleus|karyon +pronunciamento|1 +(noun)|manifesto|declaration +pronunciation|2 +(noun)|utterance|vocalization +(noun)|orthoepy|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +proof|12 +(adj)|impervious |imperviable +(noun)|cogent evidence|evidence|grounds +(noun)|argument|statement +(noun)|measure|quantity|amount +(noun)|test copy|trial impression|impression|printing +(noun)|photographic print|print +(noun)|validation|substantiation|determination|finding +(verb)|produce|make|create +(verb)|knead|work +(verb)|proofread|see|check|insure|see to it|ensure|control|ascertain|assure +(verb)|change|alter|modify +(verb)|strengthen +proof spirit|1 +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +proofed|1 +(adj)|treated +proofread|1 +(verb)|proof|see|check|insure|see to it|ensure|control|ascertain|assure +proofreader|1 +(noun)|reader|printer|pressman +prop|4 +(noun)|support +(noun)|property|object|physical object +(noun)|airplane propeller|airscrew|propeller|propellor +(verb)|prop up|shore up|shore|hold|support|sustain|hold up +prop root|1 +(noun)|root +prop up|1 +(verb)|prop|shore up|shore|hold|support|sustain|hold up +propaedeutic|2 +(adj)|preparatory|preparative|preceding +(noun)|propaedeutics|course|course of study|course of instruction|class +propaedeutics|2 +(noun)|propaedeutic|course|course of study|course of instruction|class +(noun)|propaedeutic|course|course of study|course of instruction|class +propaganda|1 +(noun)|information|info +propagandise|2 +(verb)|propagandize|tell +(verb)|propagandize|advertise|advertize|promote|push +propagandist|2 +(adj)|propagandistic|communicator +(noun)|communicator +propagandistic|1 +(adj)|propagandist|communicator +propagandize|2 +(verb)|propagandise|tell +(verb)|propagandise|advertise|advertize|promote|push +propagate|8 +(verb)|pass on +(verb)|travel|go|move|locomote +(verb)|transmit|transfer|transport|channel|channelize|channelise +(verb)|spread|move +(verb)|spread|distribute +(verb)|circulate|circularize|circularise|distribute|disseminate|broadcast|spread|diffuse|disperse|pass around|publicize|publicise|air|bare +(verb)|process|treat +(verb)|reproduce|procreate|multiply +propagation|3 +(noun)|extension|dissemination|airing|public exposure|spreading +(noun)|generation|multiplication|reproduction|procreation|breeding|facts of life +(noun)|physical phenomenon +propagative|1 +(adj)|reproduction|procreation|breeding|facts of life +propagator|2 +(noun)|botanist|phytologist|plant scientist +(noun)|disseminator|communicator +propanal|1 +(noun)|propionaldehyde|aldehyde +propanamide|1 +(noun)|proprionamide|amide +propane|1 +(noun)|gas|fuel +propanediol|1 +(noun)|propylene glycol|antifreeze|humectant +propanoic acid|1 +(noun)|propionic acid|carboxylic acid +propanol|1 +(noun)|propyl alcohol|alcohol +propanolol|1 +(noun)|Inderal|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +propanone|1 +(noun)|acetone|dimethyl ketone|ketone|solvent|dissolvent|dissolver|dissolving agent|resolvent +proparoxytone|1 +(noun)|word +propel|2 +(verb)|impel|move|displace +(verb)|motivate|actuate|move|prompt|incite|cause|do|make +propellant|2 +(adj)|propellent|propelling|propulsive|dynamic |dynamical +(noun)|propellent|substance|matter +propellant explosive|1 +(noun)|impulse explosive|explosive +propellent|2 +(adj)|propellant|propelling|propulsive|dynamic |dynamical +(noun)|propellant|substance|matter +propeller|1 +(noun)|propellor|mechanical device +propeller plane|1 +(noun)|airplane|aeroplane|plane +propelling|1 +(adj)|propellant|propellent|propulsive|dynamic |dynamical +propellor|1 +(noun)|propeller|mechanical device +propenal|1 +(noun)|acrolein|aldehyde +propene|1 +(noun)|propylene|gas +propenoate|1 +(noun)|acrylate|salt +propenoic acid|1 +(noun)|acrylic acid|carboxylic acid +propenonitrile|1 +(noun)|acrylonitrile|vinyl cyanide|nitrile|nitril|cyanide +propensity|3 +(noun)|leaning|tendency|inclination +(noun)|proclivity|leaning|inclination|disposition|tendency +(noun)|aptness|disposition +propenyl alcohol|1 +(noun)|allyl alcohol|alcohol +proper|4 +(adj)|proper |becoming|comely|comme il faut|decent|decorous|seemly|correct|right|correct|right|fitting|halal|kosher|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|appropriate|correct|right|decent|decorous|right +(adj)|specific +(adj)|right|suitable|appropriate +(adj)|real +proper fraction|1 +(noun)|fraction +proper name|1 +(noun)|proper noun|noun +proper noun|1 +(noun)|proper name|noun +properly|2 +(adv)|decently|decent|in good order|right|the right way +(adv)|by rights +properly speaking|1 +(adv)|strictly speaking|to be precise +properness|1 +(noun)|propriety|correctitude|demeanor|demeanour|behavior|behaviour|conduct|deportment +propertied|1 +(adj)|property-owning|upper-class +property|5 +(noun)|place|geographical area|geographic area|geographical region|geographic region +(noun)|belongings|holding|material possession|possession +(noun)|attribute +(noun)|attribute|dimension|concept|conception|construct +(noun)|prop|object|physical object +property-owning|1 +(adj)|propertied|upper-class +property line|1 +(noun)|boundary line|border|borderline|delimitation|mete +property man|1 +(noun)|propman|property master|stagehand|stage technician +property master|1 +(noun)|property man|propman|stagehand|stage technician +property owner|1 +(noun)|landowner|landholder|owner|possessor +property right|1 +(noun)|ownership +property settlement|1 +(noun)|settlement +property tax|1 +(noun)|land tax|capital levy +propertyless|2 +(adj)|proletarian |lowborn|lower-class|low-class +(adj)|wage-earning|working-class|blue-collar|lower-class |low-class +prophase|2 +(noun)|phase of cell division +(noun)|phase of cell division +prophecy|2 +(noun)|prognostication|vaticination|prediction|anticipation|prevision +(noun)|divination|prediction|foretelling|forecasting|prognostication +prophesy|2 +(verb)|vaticinate|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|preach|lecture|talk +prophet|2 +(noun)|oracle|seer|vaticinator|diviner +(noun)|religionist|religious person +prophetess|1 +(noun)|prophet|oracle|seer|vaticinator +prophetic|1 +(adj)|prophetic |prophetical|adumbrative|foreshadowing|prefigurative|apocalyptic|apocalyptical|revelatory|clairvoyant|precognitive|second-sighted|Delphic|oracular|divinatory|mantic|sibylline|sibyllic|vatic|vatical|fateful|foreboding|portentous|predictive|prognostic|prognosticative|precursory|premonitory +prophetical|1 +(adj)|prophetic |adumbrative|foreshadowing|prefigurative|apocalyptic|apocalyptical|revelatory|clairvoyant|precognitive|second-sighted|Delphic|oracular|divinatory|mantic|sibylline|sibyllic|vatic|vatical|fateful|foreboding|portentous|predictive|prognostic|prognosticative|precursory|premonitory +prophets|3 +(noun)|Prophets|Nebiim|sacred text|sacred writing|religious writing|religious text +(noun)|prophet|oracle|seer|vaticinator|diviner +(noun)|prophet|religionist|religious person +prophylactic|5 +(adj)|contraceptive|antifertility|protective +(adj)|cautionary|preventive|protective +(adj)|preventive|preventative|healthful +(noun)|preventive|preventative|remedy|curative|cure +(noun)|condom|rubber|safety|safe|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +prophylactic device|1 +(noun)|contraceptive|preventive|preventative|contraceptive device|birth control device|device +prophylaxis|1 +(noun)|prevention|bar +prophyll|1 +(noun)|plant part|plant structure +propinquity|1 +(noun)|proximity|nearness|closeness +propionaldehyde|1 +(noun)|propanal|aldehyde +propionic acid|1 +(noun)|propanoic acid|carboxylic acid +propitiate|1 +(verb)|appease|reconcile|patch up|make up|conciliate|settle +propitiation|2 +(noun)|placation|conciliation|appeasement|calming +(noun)|expiation|atonement|redemption|salvation +propitiative|1 +(adj)|propitiatory|conciliatory |conciliative +propitiatory|2 +(adj)|expiatory|expiative +(adj)|propitiative|conciliatory |conciliative +propitious|1 +(adj)|propitious |auspicious|encouraging|favorable|favourable|lucky|prosperous|gracious|auspicious|favorable|favourable +propitiously|1 +(adv)|auspiciously +propitiousness|1 +(noun)|auspiciousness|favorableness|favourableness|advantageousness +propjet|1 +(noun)|turboprop|turbo-propeller plane|propeller plane +propman|1 +(noun)|property man|property master|stagehand|stage technician +proponent|1 +(noun)|advocate|advocator|exponent|person|individual|someone|somebody|mortal|human|soul +proportion|6 +(noun)|proportionality|quotient +(noun)|dimension|magnitude +(noun)|symmetry|balance|equilibrium|equipoise|counterbalance +(noun)|balance|placement|arrangement +(verb)|harmonize|harmonise +(verb)|adjust|set|correct +proportionable|1 +(adj)|proportionate +proportional|3 +(adj)|relative|proportionate +(adj)|graduated|progressive +(noun)|quantity +proportional counter|1 +(noun)|proportional counter tube|counter tube +proportional counter tube|1 +(noun)|proportional counter|counter tube +proportional font|1 +(noun)|font|fount|typeface|face +proportional representation|1 +(noun)|representation +proportional sample|1 +(noun)|stratified sample|representative sample|sample distribution|sample|sampling +proportional sampling|1 +(noun)|stratified sampling|representative sampling|sampling +proportionality|1 +(noun)|proportion|quotient +proportionally|1 +(adv)|proportionately +proportionate|3 +(adj)|proportionate |proportional|relative|per capita|proportionable +(adj)|corresponding|in proportion to|commensurate +(adj)|harmonious|symmetrical|balanced +proportionately|2 +(adv)|proportionally +(adv)|pro rata +proportionateness|1 +(noun)|commensurateness|correspondence|proportion|proportionality +proposal|3 +(noun)|message|content|subject matter|substance +(noun)|marriage proposal|proposal of marriage|marriage offer|offer|offering +(noun)|proposition|speech act +proposal of marriage|1 +(noun)|marriage proposal|marriage offer|proposal|offer|offering +propose|5 +(verb)|suggest|advise|declare +(verb)|project|plan +(verb)|aim|purpose|purport|intend|mean|think +(verb)|nominate|choose|take|select|pick out +(verb)|declare oneself|offer|pop the question|request +proposed|1 +(adj)|projected|planned +proposer|2 +(noun)|suggester|originator|conceiver|mastermind +(noun)|mover|originator|conceiver|mastermind +proposition|6 +(noun)|statement +(noun)|suggestion|proffer|proposal +(noun)|offer|offering +(noun)|proposal|speech act +(noun)|undertaking|project|task|labor +(verb)|propose|suggest|advise +propositional calculus|1 +(noun)|propositional logic|symbolic logic|mathematical logic|formal logic +propositional logic|1 +(noun)|propositional calculus|symbolic logic|mathematical logic|formal logic +propositus|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +propound|1 +(verb)|advise|counsel +propoxyphene|1 +(noun)|propoxyphene hydrochloride|Darvon|analgesic|anodyne|painkiller|pain pill +propoxyphene hydrochloride|1 +(noun)|propoxyphene|Darvon|analgesic|anodyne|painkiller|pain pill +propping up|1 +(noun)|shoring|shoring up|support|supporting +proprietary|2 +(adj)|proprietary |branded|copyrighted|patented|trademarked +(noun)|proprietorship|ownership +proprietary colony|1 +(noun)|colony|settlement +proprietary drug|1 +(noun)|brand-name drug|drug +proprietor|1 +(noun)|owner|businessman|man of affairs +proprietorship|1 +(noun)|proprietary|ownership +proprietorship certificate|1 +(noun)|security|certificate +proprietress|1 +(noun)|owner|proprietor +propriety|1 +(noun)|properness|correctitude|demeanor|demeanour|behavior|behaviour|conduct|deportment +proprioception|1 +(noun)|interoception +proprioceptive|1 +(adj)|interoception +proprioceptor|1 +(noun)|nerve ending|nerve end +proprionamide|1 +(noun)|propanamide|amide +props|4 +(noun)|deference|respect +(noun)|prop|support +(noun)|property|prop|object|physical object +(noun)|airplane propeller|airscrew|prop|propeller|propellor +propulsion|2 +(noun)|force +(noun)|actuation|deed|feat|effort|exploit +propulsion system|1 +(noun)|system +propulsive|2 +(adj)|force +(adj)|propellant|propellent|propelling|dynamic |dynamical +propyl|1 +(noun)|propyl group|propyl radical|group|radical|chemical group +propyl alcohol|1 +(noun)|propanol|alcohol +propyl group|1 +(noun)|propyl|propyl radical|group|radical|chemical group +propyl radical|1 +(noun)|propyl|propyl group|group|radical|chemical group +propylene|1 +(noun)|propene|gas +propylene glycol|1 +(noun)|propanediol|antifreeze|humectant +propylthiouracil|1 +(noun)|organic compound +prorate|2 +(verb)|settle +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +proration|1 +(noun)|coordination +prorogation|1 +(noun)|postponement|deferment|deferral +prorogue|2 +(verb)|postpone|hold over|put over|table|shelve|set back|defer|remit|put off|delay +(verb)|adjourn|withdraw|retire +prosaic|3 +(adj)|matter-of-fact|unrhetorical +(adj)|pedestrian|prosy|earthbound|uninteresting +(adj)|commonplace|humdrum|unglamorous|unglamourous|unexciting +prosaically|1 +(adv)|unimaginatively +prosaicness|1 +(noun)|prosiness|commonness|commonplaceness|everydayness +prosauropoda|1 +(noun)|Prosauropoda|suborder Prosauropoda|animal order +proscenium|2 +(noun)|apron|forestage|stage +(noun)|proscenium wall|wall +proscenium arch|1 +(noun)|arch +proscenium wall|1 +(noun)|proscenium|wall +prosciuto|1 +(noun)|ham|jambon|gammon +proscribe|1 +(verb)|forbid|prohibit|interdict|veto|disallow|command|require|compel +proscribed|1 +(adj)|forbidden|out|prohibited|taboo|tabu|verboten|impermissible +proscription|2 +(noun)|prohibition|ban|decree|edict|fiat|order|rescript +(noun)|banishment|rejection +prose|2 +(noun)|writing style|literary genre|genre +(noun)|expressive style|style +prose poem|1 +(noun)|prose +prosecute|2 +(verb)|act|move +(verb)|engage|pursue|act|move +prosecuting attorney|1 +(noun)|prosecutor|public prosecutor|prosecuting officer|official|functionary|lawyer|attorney +prosecuting officer|1 +(noun)|prosecutor|public prosecutor|prosecuting attorney|official|functionary|lawyer|attorney +prosecution|3 +(noun)|criminal prosecution|legal action|action|action at law +(noun)|collection|aggregation|accumulation|assemblage +(noun)|pursuance|continuance|continuation +prosecutor|1 +(noun)|public prosecutor|prosecuting officer|prosecuting attorney|official|functionary|lawyer|attorney +proselyte|1 +(noun)|convert +proselytise|1 +(verb)|proselytize|convert|win over|convince +proselytism|2 +(noun)|persuasion|suasion +(noun)|conversion|rebirth|spiritual rebirth +proselytize|1 +(verb)|proselytise|convert|win over|convince +prosencephalon|1 +(noun)|forebrain|neural structure +proserpina|1 +(noun)|Proserpina|Proserpine|Roman deity +proserpine|1 +(noun)|Proserpina|Proserpine|Roman deity +prosimian|1 +(noun)|primate +prosimii|1 +(noun)|Prosimii|suborder Prosimii|animal order +prosiness|1 +(noun)|prosaicness|commonness|commonplaceness|everydayness +prosodic|1 +(adj)|manner of speaking|speech|delivery +prosodic system|1 +(noun)|accentual system|language system +prosodion|1 +(noun)|processional|religious music|church music +prosody|3 +(noun)|inflection|manner of speaking|speech|delivery +(noun)|poetic rhythm|rhythmic pattern|versification +(noun)|metrics|poetics +prosom|1 +(noun)|estazolam|ProSom|benzodiazepine +prosopis|1 +(noun)|Prosopis|genus Prosopis|rosid dicot genus +prosopis glandulosa|1 +(noun)|honey mesquite|Western honey mesquite|Prosopis glandulosa|mesquite|mesquit +prosopis juliflora|1 +(noun)|algarroba|Prosopis juliflora|Prosopis juliiflora|mesquite|mesquit +prosopis juliiflora|1 +(noun)|algarroba|Prosopis juliflora|Prosopis juliiflora|mesquite|mesquit +prosopis pubescens|1 +(noun)|screw bean|screwbean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite|mesquit +prosopium|1 +(noun)|Prosopium|genus Prosopium|fish genus +prosopium cylindraceum|1 +(noun)|round whitefish|Menominee whitefish|Prosopium cylindraceum|whitefish +prosopium williamsonii|1 +(noun)|Rocky Mountain whitefish|Prosopium williamsonii|whitefish +prosopopoeia|1 +(noun)|personification|trope|figure of speech|figure|image +prospect|7 +(noun)|potential|potentiality|potency +(noun)|expectation|outlook|belief +(noun)|candidate|person|individual|someone|somebody|mortal|human|soul +(noun)|view|aspect|scene|vista|panorama|visual percept|visual image +(noun)|prognosis|medical prognosis|medical diagnosis +(verb)|search|look +(verb)|research|search|explore +prospective|2 +(adj)|prospective |expected|likely|potential|future|future +(adj)|future +prospector|1 +(noun)|miner|mineworker +prospectus|2 +(noun)|offer|offering +(noun)|course catalog|course catalogue|catalog|catalogue +prosper|2 +(verb)|boom|thrive|get ahead|flourish|expand|grow +(verb)|thrive|fly high|flourish|change state|turn +prosper meniere|1 +(noun)|Meniere|Prosper Meniere|ear doctor|ear specialist|otologist +prospering|1 +(adj)|booming|flourishing|palmy|prosperous|roaring|thriving|successful +prosperity|2 +(noun)|financial condition|economic condition +(noun)|successfulness|good fortune|good luck +prosperous|4 +(adj)|comfortable|easy|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich +(adj)|booming|flourishing|palmy|prospering|roaring|thriving|successful +(adj)|golden|halcyon|happy +(adj)|auspicious|encouraging|favorable|favourable|lucky|propitious +prospicience|1 +(noun)|prevision|foresight|knowing +prostaglandin|1 +(noun)|autacoid|autocoid +prostate|2 +(adj)|prostatic|endocrine gland|endocrine|ductless gland +(noun)|prostate gland|endocrine gland|endocrine|ductless gland +prostate cancer|1 +(noun)|prostatic adenocarcinoma|adenocarcinoma|glandular cancer|glandular carcinoma +prostate gland|1 +(noun)|prostate|endocrine gland|endocrine|ductless gland +prostate specific antigen|1 +(noun)|PSA|protein +prostatectomy|1 +(noun)|ablation|extirpation|cutting out|excision +prostatic|1 +(adj)|prostate|endocrine gland|endocrine|ductless gland +prostatic adenocarcinoma|1 +(noun)|prostate cancer|adenocarcinoma|glandular cancer|glandular carcinoma +prostatitis|1 +(noun)|inflammation|redness|rubor +prostheon|1 +(noun)|prosthion|alveolar point|craniometric point +prosthesis|1 +(noun)|prosthetic device|corrective|restorative +prosthetic|2 +(adj)|medicine|medical specialty +(adj)|corrective|restorative +prosthetic device|1 +(noun)|prosthesis|corrective|restorative +prosthetics|1 +(noun)|medicine|medical specialty +prosthetist|1 +(noun)|expert +prosthion|1 +(noun)|prostheon|alveolar point|craniometric point +prosthodontia|1 +(noun)|prosthodontics|dentistry|dental medicine|odontology +prosthodontic|1 +(adj)|dentistry|dental medicine|odontology +prosthodontics|1 +(noun)|prosthodontia|dentistry|dental medicine|odontology +prosthodontist|1 +(noun)|dentist|tooth doctor|dental practitioner +prostigmin|1 +(noun)|neostigmine|Prostigmin|anticholinesterase +prostitute|2 +(noun)|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +(verb)|sell +prostitution|1 +(noun)|harlotry|whoredom|vice crime +prostrate|5 +(adj)|flat|unerect +(adj)|prone|unerect +(verb)|bow down|lie down|lie +(verb)|change|alter|modify +(verb)|throw +prostration|3 +(noun)|heat exhaustion|heat prostration|heatstroke|heat hyperpyrexia +(noun)|submission|compliance +(noun)|motion|movement|move|motility +prostyle|1 +(adj)|pseudoprostyle|apteral +prosy|1 +(adj)|pedestrian|prosaic|earthbound|uninteresting +protactinium|1 +(noun)|protoactinium|Pa|atomic number 91|metallic element|metal +protagonist|2 +(noun)|supporter|champion|admirer|booster|friend|advocate|advocator|proponent|exponent +(noun)|agonist|fictional character|fictitious character|character +protamine|1 +(noun)|simple protein +protanopia|1 +(noun)|red-blindness|red-green dichromacy|red-green color blindness|red-green colour blindness +protanopic|1 +(adj)|red-blind|blind |unsighted +protea|1 +(noun)|shrub|bush +protea cynaroides|1 +(noun)|honeypot|king protea|Protea cynaroides|protea +protea family|1 +(noun)|Proteaceae|family Proteaceae|dicot family|magnoliopsid family +protea mellifera|1 +(noun)|honeyflower|honey-flower|Protea mellifera|protea +proteaceae|1 +(noun)|Proteaceae|family Proteaceae|protea family|dicot family|magnoliopsid family +proteales|1 +(noun)|Proteales|order Proteales|plant order +protean|1 +(adj)|variable +protease|1 +(noun)|peptidase|proteinase|proteolytic enzyme|enzyme +protease inhibitor|1 +(noun)|PI|antiviral|antiviral agent|antiviral drug +protect|2 +(verb)|defend +(verb)|assist +protected|2 +(adj)|protected |secure|bastioned|fortified|battlemented|burglarproof|covert|moated|sheltered|shielded|snug|stormproof|weatherproof|invulnerable|secure +(adj)|saved|preserved +protecting|1 +(adj)|protective +protection|7 +(noun)|activity +(noun)|protective covering|protective cover|covering +(noun)|security|assets +(noun)|shelter|security +(noun)|auspices|aegis|endorsement|indorsement +(noun)|trade protection|imposition|infliction +(noun)|tribute|extortion +protectionism|1 +(noun)|economic policy +protectionist|1 +(noun)|advocate|advocator|proponent|exponent +protective|3 +(adj)|protective |antifouling|conserving|preserving|contraceptive|prophylactic|antifertility|custodial|guardian|tutelary|tutelar|defensive|evasive|overprotective|preservative|protecting|restrictive|safety-related|cautionary|preventive|prophylactic|defensive|preventive|preventative +(adj)|caring|tender +(adj)|careful +protective coloration|1 +(noun)|coloration|colouration +protective cover|1 +(noun)|protective covering|protection|covering +protective covering|2 +(noun)|protective cover|protection|covering +(noun)|body covering +protective embankment|1 +(noun)|escarpment|escarp|scarp|fortification|munition +protective fold|1 +(noun)|flap +protective garment|1 +(noun)|clothing|article of clothing|vesture|wear +protective tariff|1 +(noun)|duty|tariff +protectively|1 +(adv)|giving protection|offering protection +protectiveness|1 +(noun)|affection|affectionateness|fondness|tenderness|heart|warmheartedness +protector|1 +(noun)|defender|guardian|shielder|preserver +protector of boundaries|1 +(noun)|Jupiter Fidius|Protector of Boundaries|Jupiter|Jove +protectorate|1 +(noun)|associated state|district|territory|territorial dominion|dominion +protectorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +protege|1 +(noun)|recipient|receiver +protegee|1 +(noun)|protege +proteidae|1 +(noun)|Proteidae|family Proteidae|amphibian genus +protein|1 +(noun)|macromolecule|supermolecule +protein folding|1 +(noun)|folding|organic process|biological process +protein molecule|1 +(noun)|molecule +proteinaceous|1 +(adj)|macromolecule|supermolecule +proteinase|1 +(noun)|protease|peptidase|proteolytic enzyme|enzyme +proteinuria|1 +(noun)|albuminuria|symptom +proteles|1 +(noun)|Proteles|genus Proteles|mammal genus +proteles cristata|1 +(noun)|aardwolf|Proteles cristata|hyena|hyaena +proteolysis|1 +(noun)|chemical process|chemical change|chemical action +proteolytic|1 +(adj)|chemical process|chemical change|chemical action +proteolytic enzyme|1 +(noun)|protease|peptidase|proteinase|enzyme +proteome|1 +(noun)|protein +proteomics|1 +(noun)|genetics|genetic science +proterochampsa|1 +(noun)|Proterochampsa|genus Proterochampsa|reptile genus +proterozoic|2 +(adj)|early +(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon|aeon +proterozoic aeon|1 +(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon|aeon +proterozoic eon|1 +(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon|aeon +protest|6 +(noun)|protestation|objection +(noun)|objection|dissent|resistance +(noun)|objection +(verb)|complain|kick|plain|sound off|quetch|kvetch +(verb)|resist|dissent|oppose|controvert|contradict +(verb)|affirm|verify|assert|avow|aver|swan|swear +protest march|1 +(noun)|civil disobedience|demonstration|manifestation +protestant|4 +(adj)|Protestant|Christian|Christianity|Christian religion +(adj)|protesting|complaining |complaintive +(noun)|Protestant|Christian +(noun)|Protestant Church|Protestant|church|Christian church +protestant church|1 +(noun)|Protestant Church|Protestant|church|Christian church +protestant deacon|1 +(noun)|deacon|Protestant deacon|church officer +protestant denomination|1 +(noun)|Protestant denomination|denomination +protestant episcopal church|1 +(noun)|Episcopal Church|Protestant Episcopal Church|Anglican Church|Anglican Communion|Church of England +protestant reformation|1 +(noun)|Reformation|Protestant Reformation|religious movement +protestantism|1 +(noun)|Protestantism|Christianity|Christian religion +protestation|2 +(noun)|protest|objection +(noun)|declaration +protester|2 +(noun)|dissenter|dissident|objector|contestant|person|individual|someone|somebody|mortal|human|soul +(noun)|demonstrator|reformer|reformist|crusader|meliorist +protesting|1 +(adj)|protestant|complaining |complaintive +proteus|2 +(noun)|Proteus|Greek deity +(noun)|Proteus|genus Proteus|amphibian genus +proteus anguinus|1 +(noun)|olm|Proteus anguinus|salamander +prothorax|1 +(noun)|thorax +prothrombin|1 +(noun)|factor II|coagulation factor|clotting factor +prothrombin accelerator|1 +(noun)|proaccelerin|accelerator factor|factor V|coagulation factor|clotting factor +prothrombinase|1 +(noun)|factor X|coagulation factor|clotting factor +protirelin|1 +(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|hormone|endocrine|internal secretion +protist|1 +(noun)|protistan|microorganism +protista|1 +(noun)|Protista|division Protista|division +protistan|1 +(noun)|protist|microorganism +protium|1 +(noun)|Protium|genus Protium|rosid dicot genus +protium guianense|1 +(noun)|Protium guianense|incense tree +protium heptaphyllum|1 +(noun)|Protium heptaphyllum|incense tree +proto|1 +(adj)|early +proto-indo european|1 +(noun)|Proto-Indo European|PIE|Indo-European|Indo-European language|Indo-Hittite +proto-norse|1 +(noun)|Proto-Norse|Germanic|Germanic language +proto-oncogene|1 +(noun)|gene|cistron|factor +protoactinium|1 +(noun)|protactinium|Pa|atomic number 91|metallic element|metal +protoanthropology|1 +(noun)|protohistory|archeology|archaeology +protoarchaeology|1 +(noun)|protoarcheology|protohistory|protoanthropology +protoarcheology|1 +(noun)|protoarchaeology|protohistory|protoanthropology +protoavis|1 +(noun)|bird +protoceratops|1 +(noun)|ceratopsian|horned dinosaur +protocol|3 +(noun)|communications protocol|rule|prescript +(noun)|etiquette +(noun)|code of conduct|code of behavior +protoctist|1 +(noun)|microorganism +protoctist family|1 +(noun)|family +protoctist genus|1 +(noun)|genus +protoctist order|1 +(noun)|order +protoctista|1 +(noun)|Protoctista|kingdom Protoctista|kingdom +protogeometric|1 +(adj)|nonrepresentational +protoheme|1 +(noun)|heme|haem|hematin|haemitin|pigment +protohemin|1 +(noun)|hemin|chloride +protohippus|1 +(noun)|horse|Equus caballus +protohistory|1 +(noun)|protoanthropology|archeology|archaeology +protology|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +protomammal|1 +(noun)|therapsid|synapsid|synapsid reptile +proton|1 +(noun)|nucleon +proton accelerator|1 +(noun)|collider +proton magnetic resonance|1 +(noun)|nuclear magnetic resonance|NMR|magnetic resonance +protoplasm|1 +(noun)|living substance|substance|matter +protoplasmic astrocyte|1 +(noun)|astrocyte +protoplast|1 +(noun)|energid|body part +prototheria|1 +(noun)|Prototheria|subclass Prototheria|class +prototherian|1 +(noun)|mammal +prototypal|1 +(adj)|archetypal|archetypical|prototypic|prototypical|first +prototype|1 +(noun)|paradigm|epitome|image|model|example +prototypic|1 +(adj)|archetypal|archetypical|prototypal|prototypical|first +prototypical|1 +(adj)|archetypal|archetypical|prototypal|prototypic|first +protozoa|2 +(noun)|Protozoa|phylum Protozoa|phylum +(noun)|protozoan|protozoon|protoctist +protozoal|1 +(adj)|protozoan|protozoic|phylum +protozoal infection|1 +(noun)|infection +protozoan|2 +(adj)|protozoal|protozoic|phylum +(noun)|protozoon|protoctist +protozoic|1 +(adj)|protozoal|protozoan|phylum +protozoologist|1 +(noun)|zoologist|animal scientist +protozoology|1 +(noun)|zoology|zoological science +protozoon|1 +(noun)|protozoan|protoctist +protract|1 +(verb)|prolong|extend|draw out|lengthen +protracted|1 +(adj)|drawn-out|extended|lengthy|prolonged|long +protractedly|1 +(adv)|lingeringly +protractible|1 +(adj)|protractile|extensile |extensible +protractile|1 +(adj)|protractible|extensile |extensible +protraction|2 +(noun)|lengthiness|prolongation|continuation|duration|length +(noun)|prolongation|perpetuation|lengthening|continuance|continuation +protractor|1 +(noun)|drafting instrument +protriptyline|1 +(noun)|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +protropin|1 +(noun)|Protropin|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone +protrude|3 +(verb)|stick out|jut out|jut|project +(verb)|pop|pop out|bulge|bulge out|bug out|come out|change shape|change form|deform +(verb)|bulge|pouch|change shape|change form|deform +protruding|1 +(adj)|jutting|projected|projecting|sticking|sticking out|protrusive +protrusible|1 +(adj)|protrusile|extensile |extensible +protrusile|1 +(adj)|protrusible|extensile |extensible +protrusion|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|extrusion|excrescence|projection +(noun)|projection|jut|jutting|change of shape +protrusive|1 +(adj)|protrusive |beetle|beetling|bellied|bellying|bulbous|bulging|bulgy|protuberant|obtrusive|overshot|jutting|projected|projecting|protruding|sticking|sticking out|ventricose|ventricous|starting|underhung|undershot|underslung|convex|bulging +protuberance|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protrusion|extrusion|excrescence|projection +(noun)|condition|status +protuberant|1 +(adj)|bellied|bellying|bulbous|bulging|bulgy|protrusive +protuberate|1 +(verb)|bulge|bag +protura|1 +(noun)|Protura|order Protura|animal order +proturan|1 +(noun)|telsontail|insect +proud|2 +(adj)|proud |arrogant|chesty|self-important|beaming|big|swelled|vainglorious|bigheaded|persnickety|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|dignified|self-respecting|self-respectful|disdainful|haughty|lordly|prideful|sniffy|supercilious|swaggering|glorious|illustrious|redoubtable|respected|gratifying|house-proud|overproud|pleased|proud of|purse-proud|shabby-genteel|conceited|egotistic|egotistical|self-conceited|swollen|swollen-headed|vain|immodest +(adj)|gallant|lofty|majestic|impressive +proud flesh|1 +(noun)|granulation|granulation tissue +proud of|1 +(adj)|pleased|proud +proudhon|1 +(noun)|Proudhon|Pierre Joseph Proudhon|socialist +proudly|1 +(adv)|with pride +proust|1 +(noun)|Proust|Marcel Proust|novelist +proustian|1 +(adj)|Proustian|novelist +provability|1 +(noun)|demonstrability|indisputability|indubitability|unquestionability|unquestionableness +provable|1 +(adj)|demonstrable|obvious +provably|1 +(adv)|demonstrably|incontrovertibly +prove|9 +(verb)|turn out|turn up|be +(verb)|demonstrate|establish|show|shew|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|testify|bear witness|evidence|show|inform +(verb)|demonstrate|establish|show|shew +(verb)|test|try|try out|examine|essay|judge +(verb)|rise|grow +(verb)|raise|leaven|raise|lift|elevate|get up|bring up +(verb)|print|impress +(verb)|authenticate +prove oneself|1 +(verb)|prove|demonstrate|establish|show|shew +proved|1 +(adj)|proved |proven|established|evidenced|tested|tried|well-tried|verified +proven|1 +(adj)|proved |established|evidenced|tested|tried|well-tried|verified +provenance|1 +(noun)|birthplace|cradle|place of origin|beginning|origin|root|rootage|source +provencal|1 +(noun)|Provencal|Occitan|Langue d'oc|Langue d'oc French +provence|1 +(noun)|Provence|French region +provender|2 +(noun)|feed|food|nutrient +(noun)|commissariat|provisions|viands|victuals|food|nutrient +proventil|1 +(noun)|albuterol|Ventolin|Proventil|bronchodilator +provera|1 +(noun)|medroxyprogesterone|Provera|progestin|progestogen +proverb|1 +(noun)|adage|saw|byword|saying|expression|locution +proverbial|2 +(adj)|saying|expression|locution +(adj)|known +proverbs|2 +(noun)|Proverbs|Book of Proverbs|book +(noun)|proverb|adage|saw|byword|saying|expression|locution +provide|7 +(verb)|supply|render|furnish|give +(verb)|supply|ply|cater|give +(verb)|stipulate|qualify|condition|specify +(verb)|put up|offer|engage|wage +(verb)|leave|allow for|allow|yield|give|afford +(verb)|bring home the bacon|support +(verb)|fix|prepare|set up|ready|gear up|set +provided with|1 +(adj)|furnished with|supplied with|furnished |equipped +providence|4 +(noun)|Providence|capital of Rhode Island|state capital +(noun)|care|charge|tutelage|guardianship +(noun)|fortune|destiny|fate|luck|lot|circumstances|portion +(noun)|prudence +provident|2 +(adj)|provident |careful|thrifty|farseeing|farsighted|foresighted|foresightful|long|longsighted|forehanded|forethoughtful|farsighted|presbyopic|prudent|thrifty +(adj)|prudent +providential|3 +(adj)|heaven-sent|miraculous|fortunate +(adj)|fortune|destiny|fate|luck|lot|circumstances|portion +(adj)|divine|heavenly +providentially|1 +(adv)|prudently +provider|2 +(noun)|supplier|businessperson|bourgeois +(noun)|benefactor|helper +province|2 +(noun)|state|administrative district|administrative division|territorial division +(noun)|responsibility|sphere|domain|area|orbit|field|arena +provincial|4 +(adj)|administrative district|administrative division|territorial division +(adj)|provincial |bumpkinly|hick|rustic|unsophisticated|insular|parochial|jerkwater|one-horse|pokey|poky|stay-at-home|corn-fed +(noun)|official|functionary +(noun)|peasant|bucolic|rustic +provincial capital|1 +(noun)|capital|city|metropolis|urban center +provincialism|2 +(noun)|narrow-mindedness|narrowness +(noun)|sectionalism|localism|partiality|partisanship +proving ground|1 +(noun)|workplace|work +provision|5 +(noun)|proviso|condition|precondition|stipulation +(noun)|supply|supplying|activity +(noun)|planning|preparation|thinking|thought|cerebration|intellection|mentation +(noun)|store|stock|fund +(verb)|purvey|supply|provide|render|furnish +provisional|1 +(adj)|probationary|provisionary|tentative|conditional +provisional ira|1 +(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization|terrorist group|foreign terrorist organization|FTO +provisional irish republican army|1 +(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization|terrorist group|foreign terrorist organization|FTO +provisionary|1 +(adj)|probationary|provisional|tentative|conditional +provisioner|1 +(noun)|sutler|victualer|victualler|supplier|provider +provisions|5 +(noun)|commissariat|provender|viands|victuals|food|nutrient +(noun)|provision|proviso|condition|precondition|stipulation +(noun)|provision|supply|supplying|activity +(noun)|planning|preparation|provision|thinking|thought|cerebration|intellection|mentation +(noun)|provision|store|stock|fund +proviso|1 +(noun)|provision|condition|precondition|stipulation +provisory|1 +(adj)|conditional +provitamin|1 +(noun)|hydrocarbon +provitamin a|1 +(noun)|provitamin A|carotene|carotin|provitamin +provo|1 +(noun)|Provo|city|metropolis|urban center +provocateur|1 +(noun)|agent provocateur|secret agent|intelligence officer|intelligence agent|operative +provocation|3 +(noun)|aggravation|irritation|aggression +(noun)|incitement|incitation|psychic energy|mental energy +(noun)|incitement|encouragement +provocative|2 +(adj)|provocative |agitative|agitating|provoking|challenging|intriguing|charged|incendiary|incitive|inflammatory|instigative|rabble-rousing|seditious|rousing|exciting +(adj)|sexy +provocatively|1 +(adv)|provokingly +provoke|4 +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|make|create +(verb)|evoke|call forth|kick up|cause|do|make +(verb)|stimulate|challenge +(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +provoked|1 +(adj)|aggravated|angry +provoker|1 +(noun)|instigator|inciter|instigant|firebrand|troublemaker|trouble maker|troubler|mischief-maker|bad hat +provoking|1 +(adj)|agitative|agitating|provocative +provokingly|1 +(adv)|provocatively +provos|2 +(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|Provo|city|metropolis|urban center +provost|1 +(noun)|academic administrator +provost court|1 +(noun)|military court +provost guard|1 +(noun)|detachment +provost marshal|1 +(noun)|military policeman|MP +prow|1 +(noun)|bow|fore|stem|front +prowess|1 +(noun)|art|artistry|superior skill +prowl|3 +(noun)|walk|walking +(verb)|walk +(verb)|lurch|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around +prowl car|1 +(noun)|cruiser|police cruiser|patrol car|police car|squad car|car|auto|automobile|machine|motorcar +prowler|1 +(noun)|sneak|stalker|intruder|interloper|trespasser +prox|1 +(adj)|proximo|future +proxemics|1 +(noun)|social science +proxima|1 +(noun)|Proxima|Proxima Centauri|flare star +proxima centauri|1 +(noun)|Proxima|Proxima Centauri|flare star +proximal|1 +(adj)|proximal +proximate|2 +(adj)|proximate |immediate +(adj)|close +proximity|3 +(noun)|propinquity|nearness|closeness +(noun)|vicinity|locality|neighborhood|neighbourhood|neck of the woods +(noun)|law of proximity|Gestalt law of organization|Gestalt principle of organization +proximo|1 +(adj)|prox|future +proxy|2 +(noun)|placeholder|procurator|agent +(noun)|power of attorney +proxy fight|1 +(noun)|takeover attempt +proxy war|1 +(noun)|war|state of war +prozac|1 +(noun)|fluoxetine|Prozac|selective-serotonin reuptake inhibitor|SSRI +prude|1 +(noun)|puritan|unpleasant person|disagreeable person +prudence|2 +(noun)|discretion|discernment|natural virtue +(noun)|discretion|discreetness|circumspection|sagacity|sagaciousness|judgment|judgement|discernment +prudent|2 +(adj)|prudent |circumspect|discreet|judicious|sensible|wise|provident|prudential|careful|provident|responsible|wise +(adj)|discreet +prudential|1 +(adj)|prudent +prudently|1 +(adv)|providentially +prudery|1 +(noun)|primness|prudishness|Grundyism|modesty +prudhoe bay|1 +(noun)|Prudhoe Bay|bay +prudish|1 +(adj)|priggish|prim|prissy|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +prudishly|1 +(adv)|puritanically +prudishness|1 +(noun)|primness|prudery|Grundyism|modesty +prumnopitys|1 +(noun)|Prumnopitys|genus Prumnopitys|gymnosperm genus +prumnopitys amara|1 +(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer|coniferous tree +prumnopitys andina|1 +(noun)|plum-fruited yew|Prumnopitys andina|Prumnopitys elegans|conifer|coniferous tree +prumnopitys elegans|1 +(noun)|plum-fruited yew|Prumnopitys andina|Prumnopitys elegans|conifer|coniferous tree +prumnopitys ferruginea|1 +(noun)|miro|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer|coniferous tree +prumnopitys taxifolia|1 +(noun)|matai|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer|coniferous tree +prune|3 +(noun)|dried fruit +(verb)|snip|clip|crop|trim|lop|dress|cut back|thin out +(verb)|cut|rationalize|rationalise|eliminate|get rid of|do away with +prune cake|1 +(noun)|cake +prune whip|1 +(noun)|whip +pruned|1 +(adj)|cropped +prunella|2 +(noun)|Prunella|genus Prunella|asterid dicot genus +(noun)|Prunella|genus Prunella|bird genus +prunella modularis|1 +(noun)|hedge sparrow|sparrow|dunnock|Prunella modularis|accentor +prunella vulgaris|1 +(noun)|self-heal|heal all|Prunella vulgaris|herb|herbaceous plant +prunellidae|1 +(noun)|Prunellidae|family Prunellidae|bird family +pruner|2 +(noun)|trimmer|worker +(noun)|pruning hook|lopper|edge tool +pruning|2 +(noun)|cutting +(noun)|trim|trimming|clipping +pruning hook|1 +(noun)|pruner|lopper|edge tool +pruning knife|1 +(noun)|knife +pruning saw|1 +(noun)|handsaw|carpenter's saw +pruning shears|1 +(noun)|shear|shears +pruno|1 +(noun)|hooch|hootch +prunus|1 +(noun)|Prunus|genus Prunus|rosid dicot genus +prunus alleghaniensis|1 +(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum|wild plum tree +prunus americana|1 +(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum|wild plum tree +prunus amygdalus|1 +(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree +prunus angustifolia|1 +(noun)|chickasaw plum|hog plum|hog plum bush|Prunus angustifolia|wild plum|wild plum tree +prunus armeniaca|1 +(noun)|common apricot|Prunus armeniaca|apricot|apricot tree +prunus avium|1 +(noun)|sweet cherry|Prunus avium|cherry|cherry tree +prunus besseyi|1 +(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub|suffrutex +prunus capuli|1 +(noun)|capulin|capulin tree|Prunus capuli|cherry|cherry tree +prunus caroliniana|1 +(noun)|cherry laurel|laurel cherry|mock orange|wild orange|Prunus caroliniana|angiospermous tree|flowering tree +prunus cerasifera|1 +(noun)|cherry plum|myrobalan|myrobalan plum|Prunus cerasifera|plum|plum tree +prunus cerasus|1 +(noun)|sour cherry|sour cherry tree|Prunus cerasus|cherry|cherry tree +prunus cerasus austera|1 +(noun)|morello|Prunus cerasus austera|sour cherry|sour cherry tree|Prunus cerasus +prunus cerasus caproniana|1 +(noun)|amarelle|Prunus cerasus caproniana|sour cherry|sour cherry tree|Prunus cerasus +prunus cerasus marasca|1 +(noun)|marasca|marasca cherry|maraschino cherry|Prunus cerasus marasca|sour cherry|sour cherry tree|Prunus cerasus +prunus cuneata|1 +(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub|bush +prunus dasycarpa|1 +(noun)|purple apricot|black apricot|Prunus dasycarpa|apricot|apricot tree +prunus demissa|1 +(noun)|western chokecherry|Prunus virginiana demissa|Prunus demissa|chokecherry|chokecherry tree|Prunus virginiana +prunus domestica|1 +(noun)|common plum|Prunus domestica|plum|plum tree +prunus domestica insititia|1 +(noun)|damson plum|damson plum tree|Prunus domestica insititia|bullace|Prunus insititia +prunus dulcis|1 +(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree +prunus dulcis amara|1 +(noun)|bitter almond|Prunus dulcis amara|Amygdalus communis amara|almond tree +prunus glandulosa|1 +(noun)|dwarf flowering almond|Prunus glandulosa|almond tree +prunus ilicifolia|1 +(noun)|holly-leaved cherry|holly-leaf cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum|wild plum tree +prunus incisa|1 +(noun)|fuji|fuji cherry|Prunus incisa|flowering cherry +prunus insititia|1 +(noun)|bullace|Prunus insititia|plum|plum tree +prunus japonica|1 +(noun)|flowering almond|oriental bush cherry|Prunus japonica|almond tree +prunus laurocerasus|1 +(noun)|cherry laurel|laurel cherry|Prunus laurocerasus|shrub|bush +prunus lyonii|1 +(noun)|Catalina cherry|Prunus lyonii|cherry|cherry tree +prunus maritima|1 +(noun)|beach plum|beach plum bush|Prunus maritima|wild plum|wild plum tree +prunus mexicana|1 +(noun)|big-tree plum|Prunus mexicana|plum|plum tree +prunus mume|1 +(noun)|Japanese apricot|mei|Prunus mume|apricot|apricot tree +prunus nigra|1 +(noun)|Canada plum|Prunus nigra|plum|plum tree +prunus padus|1 +(noun)|hagberry tree|European bird cherry|common bird cherry|Prunus padus|bird cherry|bird cherry tree +prunus pensylvanica|1 +(noun)|pin cherry|Prunus pensylvanica|bird cherry|bird cherry tree +prunus persica|1 +(noun)|peach|peach tree|Prunus persica|fruit tree +prunus persica nectarina|1 +(noun)|nectarine|nectarine tree|Prunus persica nectarina|fruit tree +prunus pumila|1 +(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub|bush +prunus pumilla susquehanae|1 +(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub|bush +prunus salicina|1 +(noun)|Japanese plum|Prunus salicina|plum|plum tree +prunus serotina|1 +(noun)|black cherry|black cherry tree|rum cherry|Prunus serotina|wild cherry|wild cherry tree +prunus serrulata|1 +(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry +prunus sieboldii|1 +(noun)|Japanese flowering cherry|Prunus sieboldii|flowering cherry +prunus spinosa|1 +(noun)|blackthorn|sloe|Prunus spinosa|shrub|bush +prunus subcordata|1 +(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum|plum tree +prunus subhirtella|1 +(noun)|rosebud cherry|winter flowering cherry|Prunus subhirtella|flowering cherry +prunus susquehanae|1 +(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub|bush +prunus tenella|1 +(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree +prunus triloba|1 +(noun)|flowering almond|Prunus triloba|almond tree +prunus virginiana|1 +(noun)|chokecherry|chokecherry tree|Prunus virginiana|cherry|cherry tree +prunus virginiana demissa|1 +(noun)|western chokecherry|Prunus virginiana demissa|Prunus demissa|chokecherry|chokecherry tree|Prunus virginiana +prurience|1 +(noun)|pruriency|lasciviousness|carnality|amorousness|eroticism|erotism|sexiness|amativeness +pruriency|1 +(noun)|prurience|lasciviousness|carnality|amorousness|eroticism|erotism|sexiness|amativeness +prurient|1 +(adj)|lubricious|lustful|salacious|sexy +prurigo|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +pruritus|1 +(noun)|itch|itchiness|itching +pruritus ani|1 +(noun)|pruritus +pruritus vulvae|1 +(noun)|pruritus +prussia|1 +(noun)|Prussia|Preussen|geographical area|geographic area|geographical region|geographic region +prussian|2 +(adj)|Prussian|geographical area|geographic area|geographical region|geographic region +(noun)|Prussian|German +prussian asparagus|1 +(noun)|bath asparagus|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem +prussian blue|2 +(noun)|iron blue|Prussian blue|pigment +(noun)|Prussian blue|blue|blueness +prussic acid|1 +(noun)|hydrocyanic acid|acid +pry|5 +(noun)|crowbar|wrecking bar|pry bar|lever +(verb)|prise|prize|lever|jimmy|open|open up +(verb)|ask|inquire|enquire +(verb)|nose|poke|search|look +(verb)|prise|extort|wring from +pry bar|1 +(noun)|crowbar|wrecking bar|pry|lever +prying|2 +(adj)|nosy|nosey|snoopy|curious +(noun)|nosiness|snoopiness|curiousness|inquisitiveness +przevalski's horse|1 +(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse +przewalski's horse|1 +(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse +ps|1 +(noun)|postscript|PS|note|annotation|notation +psa|1 +(noun)|prostate specific antigen|PSA|protein +psa blood test|1 +(noun)|PSA blood test|blood test +psalm|3 +(noun)|Psalm|sacred text|sacred writing|religious writing|religious text +(noun)|sacred text|sacred writing|religious writing|religious text +(verb)|sing +psalmist|1 +(noun)|composer +psalmody|1 +(noun)|hymnody|singing|vocalizing +psalms|3 +(noun)|Psalms|Book of Psalms|book +(noun)|Psalm|sacred text|sacred writing|religious writing|religious text +(noun)|psalm|sacred text|sacred writing|religious writing|religious text +psalter|1 +(noun)|Psalter|Book of Psalms|prayer book|prayerbook +psalterium|1 +(noun)|omasum|third stomach|stomach|tummy|tum|breadbasket +psaltery|1 +(noun)|stringed instrument +psaltriparus|1 +(noun)|Psaltriparus|genus Psaltriparus|bird genus +psammoma|1 +(noun)|sand tumor|tumor|tumour|neoplasm +psenes|1 +(noun)|Psenes|genus Psenes|fish genus +psephologist|1 +(noun)|sociologist +psephology|1 +(noun)|sociology +psephurus|1 +(noun)|Psephurus|genus Psephurus|fish genus +psephurus gladis|1 +(noun)|Chinese paddlefish|Psephurus gladis|ganoid|ganoid fish +psetta|1 +(noun)|Psetta|genus Psetta|fish genus +psetta maxima|1 +(noun)|turbot|Psetta maxima|lefteye flounder|lefteyed flounder +psettichthys|1 +(noun)|Psettichthys|genus Psettichthys|fish genus +psettichthys melanostichus|1 +(noun)|sand sole|Psettichthys melanostichus|sole +pseud|1 +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +pseudacris|1 +(noun)|Pseudacris|genus Pseudacris|amphibian genus +pseudaletia|1 +(noun)|Pseudaletia|genus Pseudaletia|arthropod genus +pseudaletia unipuncta|2 +(noun)|armyworm|army worm|Pseudaletia unipuncta|caterpillar +(noun)|armyworm|Pseudaletia unipuncta|noctuid moth|noctuid|owlet moth +pseudechis|1 +(noun)|Pseudechis|genus Pseudechis|reptile genus +pseudechis porphyriacus|1 +(noun)|Australian blacksnake|Pseudechis porphyriacus|elapid|elapid snake +pseudemys|1 +(noun)|Pseudemys|genus Pseudemys|reptile genus +pseudemys concinna|1 +(noun)|cooter|river cooter|Pseudemys concinna|turtle +pseudemys rubriventris|1 +(noun)|red-bellied terrapin|red-bellied turtle|redbelly|Pseudemys rubriventris|turtle +pseudemys scripta|1 +(noun)|slider|yellow-bellied terrapin|Pseudemys scripta|turtle +pseudepigrapha|1 +(noun)|Pseudepigrapha|sacred text|sacred writing|religious writing|religious text +pseudo|2 +(adj)|counterfeit |imitative +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +pseudobombax|1 +(noun)|Pseudobombax|genus Pseudobombax|dilleniid dicot genus +pseudobombax ellipticum|1 +(noun)|shaving-brush tree|Pseudobombax ellipticum|tree +pseudocarp|1 +(noun)|accessory fruit|fruit +pseudococcidae|1 +(noun)|Pseudococcidae|family Pseudococcidae|arthropod family +pseudococcus|1 +(noun)|Pseudococcus|genus Pseudococcus|arthropod genus +pseudococcus comstocki|1 +(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug|mealy bug +pseudococcus fragilis|1 +(noun)|citrophilous mealybug|citrophilus mealybug|Pseudococcus fragilis|mealybug|mealy bug +pseudocolus|1 +(noun)|Pseudocolus|genus Pseudocolus|fungus genus +pseudocolus fusiformis|1 +(noun)|stinky squid|Pseudocolus fusiformis|stinkhorn|carrion fungus +pseudocyesis|1 +(noun)|false pregnancy|physiological state|physiological condition +pseudoephedrine|1 +(noun)|alkaloid +pseudohallucination|1 +(noun)|hallucination +pseudohermaphrodite|2 +(adj)|pseudohermaphroditic|androgynous +(noun)|bisexual|bisexual person +pseudohermaphroditic|1 +(adj)|pseudohermaphrodite|androgynous +pseudohermaphroditism|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +pseudohypertrophic dystrophy|1 +(noun)|Duchenne's muscular dystrophy|muscular dystrophy|dystrophy +pseudolarix|1 +(noun)|Pseudolarix|genus Pseudolarix|gymnosperm genus +pseudolarix amabilis|1 +(noun)|golden larch|Pseudolarix amabilis|conifer|coniferous tree +pseudomonad|1 +(noun)|eubacteria|eubacterium|true bacteria +pseudomonadales|1 +(noun)|Pseudomonadales|order Pseudomonadales|animal order +pseudomonas|1 +(noun)|Pseudomonas|genus Pseudomonas|bacteria genus +pseudomonas pyocanea|1 +(noun)|Pseudomonas pyocanea|bacteria species +pseudomonas solanacearum|1 +(noun)|ring rot bacteria|Pseudomonas solanacearum|pseudomonad +pseudomonodaceae|1 +(noun)|Pseudomonodaceae|family Pseudomonodaceae|bacteria family +pseudonym|1 +(noun)|anonym|nom de guerre|name +pseudonymous|1 +(adj)|onymous +pseudoperipteral|1 +(adj)|peristylar|peripteral +pseudophloem|1 +(noun)|plant tissue +pseudopleuronectes|1 +(noun)|Pseudopleuronectes|genus Pseudopleuronectes|fish genus +pseudopleuronectes americanus|1 +(noun)|winter flounder|blackback flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder|righteyed flounder +pseudopod|1 +(noun)|pseudopodium|process|outgrowth|appendage +pseudopodium|1 +(noun)|pseudopod|process|outgrowth|appendage +pseudoprostyle|1 +(adj)|prostyle|apteral +pseudorubella|1 +(noun)|exanthema subitum|roseola infantum|roseola infantilis|disease +pseudoryx|1 +(noun)|Pseudoryx|genus Pseudoryx|mammal genus +pseudoryx nghetinhensis|1 +(noun)|forest goat|spindle horn|Pseudoryx nghetinhensis|bovid +pseudoscience|1 +(noun)|fallacy|false belief +pseudoscientific|1 +(adj)|unscientific +pseudoscorpion|1 +(noun)|false scorpion|arachnid|arachnoid +pseudoscorpiones|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +pseudoscorpionida|1 +(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order +pseudosmallpox|1 +(noun)|alastrim|variola minor|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +pseudotaxus|1 +(noun)|Pseudotaxus|genus Pseudotaxus|gymnosperm genus +pseudotaxus chienii|1 +(noun)|white-berry yew|Pseudotaxus chienii|yew +pseudotsuga|1 +(noun)|Pseudotsuga|genus Pseudotsuga|gymnosperm genus +pseudotsuga macrocarpa|1 +(noun)|big-cone spruce|big-cone douglas fir|Pseudotsuga macrocarpa|douglas fir +pseudotsuga menziesii|1 +(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir +pseudovariola|1 +(noun)|alastrim|variola minor|pseudosmallpox|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +pseudowintera|1 +(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus +pseudowintera colorata|1 +(noun)|pepper shrub|Pseudowintera colorata|Wintera colorata|shrub|bush +psf|1 +(noun)|Popular Struggle Front|PSF|terrorist organization|terrorist group|foreign terrorist organization|FTO +psi|2 +(noun)|pounds per square inch|pressure unit +(noun)|letter|letter of the alphabet|alphabetic character +psi particle|1 +(noun)|J particle|meson|mesotron +psidium|1 +(noun)|Psidium|genus Psidium|dicot genus|magnoliopsid genus +psidium cattleianum|1 +(noun)|cattley guava|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree +psidium guajava|1 +(noun)|guava|true guava|guava bush|Psidium guajava|fruit tree +psidium guineense|1 +(noun)|Brazilian guava|Psidium guineense|fruit tree +psidium littorale|1 +(noun)|guava|strawberry guava|yellow cattley guava|Psidium littorale|fruit tree +psidium littorale longipes|1 +(noun)|cattley guava|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree +psilocin|1 +(noun)|psilocybin|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +psilocybin|1 +(noun)|psilocin|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +psilomelane|1 +(noun)|mineral +psilophytaceae|1 +(noun)|Psilophytaceae|family Psilophytaceae|fern family +psilophytales|1 +(noun)|Psilophytales|order Psilophytales|plant order +psilophyte|1 +(noun)|vascular plant|tracheophyte +psilophyton|1 +(noun)|vascular plant|tracheophyte +psilopsida|1 +(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class +psilosis|1 +(noun)|epilation|bodily process|body process|bodily function|activity +psilotaceae|1 +(noun)|Psilotaceae|family Psilotaceae|fern family +psilotales|1 +(noun)|Psilotales|order Psilotales|plant order +psilotatae|1 +(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class +psilotum|1 +(noun)|Psilotum|genus Psilotum|fern genus +psilotum nudum|1 +(noun)|skeleton fork fern|Psilotum nudum|whisk fern +psithyrus|1 +(noun)|Psithyrus|genus Psithyrus|arthropod genus +psittacidae|1 +(noun)|Psittacidae|family Psittacidae|bird family +psittaciformes|1 +(noun)|Psittaciformes|order Psittaciformes|animal order +psittacosaur|1 +(noun)|psittacosaurus|ceratopsian|horned dinosaur +psittacosaurus|1 +(noun)|psittacosaur|ceratopsian|horned dinosaur +psittacosis|2 +(noun)|parrot disease|animal disease +(noun)|parrot fever|ornithosis|atypical pneumonia|primary atypical pneumonia|mycoplasmal pneumonia +psittacula|1 +(noun)|Psittacula|genus Psittacula|bird genus +psittacula krameri|1 +(noun)|ring-necked parakeet|Psittacula krameri|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +psittacus|1 +(noun)|Psittacus|genus Psittacus|bird genus +psittacus erithacus|1 +(noun)|African gray|Psittacus erithacus|parrot +psoas|1 +(noun)|skeletal muscle|striated muscle +psocid|1 +(noun)|psocopterous insect +psocidae|1 +(noun)|Psocidae|family Psocidae|arthropod family +psocoptera|1 +(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order +psocopterous insect|1 +(noun)|insect +psophia|1 +(noun)|Psophia|genus Psophia|bird genus +psophia crepitans|1 +(noun)|Brazilian trumpeter|Psophia crepitans|trumpeter +psophiidae|1 +(noun)|Psophiidae|family Psophiidae|bird family +psophocarpus|1 +(noun)|Psophocarpus|genus Psophocarpus|rosid dicot genus +psophocarpus tetragonolobus|1 +(noun)|winged bean|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine +psoralea|1 +(noun)|Psoralea|genus Psoralea|rosid dicot genus +psoralea esculenta|1 +(noun)|breadroot|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb|herbaceous plant +psoriasis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +psoriatic arthritis|1 +(noun)|rheumatoid arthritis|atrophic arthritis|rheumatism +pst|1 +(noun)|Pacific Time|Pacific Standard Time|PST|civil time|standard time|local time +psych up|1 +(verb)|hype up|agitate|rouse|turn on|charge|commove|excite|charge up +psyche|3 +(noun)|mind|head|brain|nous|cognition|knowledge|noesis +(noun)|soul|spirit +(noun)|Psyche|mythical being +psychedelia|1 +(noun)|subculture +psychedelic|3 +(adj)|psychoactive |psychotropic +(adj)|colorful |colourful +(adj)|agitated +psychedelic drug|1 +(noun)|hallucinogen|hallucinogenic drug|psychodelic drug|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +psychedelic rock|1 +(noun)|acid rock|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +psychiatric|1 +(adj)|psychiatrical|medicine|medical specialty +psychiatric hospital|1 +(noun)|mental hospital|mental institution|institution|mental home|insane asylum|asylum|hospital|infirmary +psychiatrical|1 +(adj)|psychiatric|medicine|medical specialty +psychiatrist|1 +(noun)|head-shrinker|shrink|specialist|medical specialist +psychiatry|1 +(noun)|psychopathology|psychological medicine|medicine|medical specialty +psychic|4 +(adj)|psychical|cognition|knowledge|noesis +(adj)|psychical|mental +(adj)|psychical|paranormal +(noun)|occultist +psychic communication|1 +(noun)|psychical communication|anomalous communication|communication +psychic energy|1 +(noun)|mental energy|motivation|motive|need +psychic phenomena|2 +(noun)|psychic phenomenon|parapsychology|psychic communication|psychical communication|anomalous communication +(noun)|psychic phenomenon|parapsychology|psychic communication|psychical communication|anomalous communication +psychic phenomenon|1 +(noun)|psychic phenomena|parapsychology|psychic communication|psychical communication|anomalous communication +psychic trauma|1 +(noun)|trauma|psychological state|mental state +psychical|3 +(adj)|psychic|mental +(adj)|psychic|cognition|knowledge|noesis +(adj)|psychic|paranormal +psychical communication|1 +(noun)|psychic communication|anomalous communication|communication +psycho|1 +(noun)|psychotic|psychotic person|sick person|diseased person|sufferer +psychoactive|1 +(adj)|psychoactive |psychotropic|hallucinogenic|mind-altering|mind-bending|mind-blowing|psychedelic|mind-expanding +psychoactive drug|1 +(noun)|mind-altering drug|consciousness-altering drug|psychoactive substance|drug +psychoactive substance|1 +(noun)|psychoactive drug|mind-altering drug|consciousness-altering drug|drug +psychoanalyse|1 +(verb)|analyze|analyse|psychoanalyze|treat|care for +psychoanalysis|1 +(noun)|analysis|depth psychology|psychotherapy +psychoanalyst|1 +(noun)|analyst|psychiatrist|head-shrinker|shrink +psychoanalytic|1 +(adj)|psychoanalytical|psychotherapy +psychoanalytic process|1 +(noun)|human process +psychoanalytical|1 +(adj)|psychoanalytic|psychotherapy +psychoanalyze|1 +(verb)|analyze|analyse|psychoanalyse|treat|care for +psychobabble|1 +(noun)|jargon +psychodelic drug|1 +(noun)|hallucinogen|hallucinogenic drug|psychedelic drug|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +psychodid|1 +(noun)|gnat +psychodidae|1 +(noun)|Psychodidae|family Psychodidae|arthropod family +psychogalvanic response|1 +(noun)|galvanic skin response|GSR|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +psychogenic|1 +(adj)|mental +psychogenic fugue|1 +(noun)|fugue|dissociative disorder +psychokinesis|1 +(noun)|telekinesis|psychic phenomena|psychic phenomenon|parapsychology +psychokinetic|1 +(adj)|paranormal +psycholinguist|1 +(noun)|psychologist|linguist|linguistic scientist +psycholinguistic|1 +(adj)|cognitive psychology +psycholinguistics|1 +(noun)|cognitive psychology +psychological|2 +(adj)|mental +(adj)|science|scientific discipline +psychological disorder|1 +(noun)|mental disorder|mental disturbance|disturbance|folie|disorder|upset +psychological medicine|1 +(noun)|psychiatry|psychopathology|medicine|medical specialty +psychological moment|1 +(noun)|moment|minute|second|instant +psychological operation|1 +(noun)|psyop|operation|military operation +psychological science|1 +(noun)|psychology|science|scientific discipline +psychological state|1 +(noun)|mental state|condition|status +psychological warfare|1 +(noun)|war of nerves|war|warfare +psychologist|1 +(noun)|scientist|man of science +psychology|1 +(noun)|psychological science|science|scientific discipline +psychology department|1 +(noun)|department of psychology|academic department +psychometric|1 +(adj)|psychology|psychological science +psychometric test|1 +(noun)|test|mental test|mental testing|mental measurement +psychometrics|1 +(noun)|psychometry|psychometrika|psychology|psychological science +psychometrika|1 +(noun)|psychometry|psychometrics|psychology|psychological science +psychometry|1 +(noun)|psychometrics|psychometrika|psychology|psychological science +psychomotor|1 +(adj)|content|cognitive content|mental object|bodily process|body process|bodily function|activity +psychomotor development|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +psychomotor epilepsy|1 +(noun)|temporal lobe epilepsy|epilepsy +psychoneurosis|1 +(noun)|neurosis|neuroticism|mental disorder|mental disturbance|disturbance|psychological disorder|folie +psychoneurotic|2 +(adj)|neurotic |abulic|aboulic|compulsive|delusional|disturbed|maladjusted|hypochondriac|hypochondriacal|hysteric|hysterical|megalomaniacal|megalomanic|monomaniacal|nymphomaniacal|nymphomaniac|obsessional|obsessive|obsessive-compulsive|pathological|phobic|psychosomatic|schizoid +(noun)|neurotic|mental case|sick person|diseased person|sufferer +psychonomics|1 +(noun)|experimental psychology|psychology|psychological science +psychopath|1 +(noun)|sociopath|neurotic|psychoneurotic|mental case +psychopathic|1 +(adj)|psychopathologic|psychopathological|insane +psychopathic personality|1 +(noun)|antisocial personality disorder|sociopathic personality|personality disorder +psychopathologic|1 +(adj)|psychopathic|psychopathological|insane +psychopathological|1 +(adj)|psychopathic|psychopathologic|insane +psychopathology|2 +(noun)|abnormal psychology|psychology|psychological science +(noun)|psychiatry|psychological medicine|medicine|medical specialty +psychopathy|1 +(noun)|mental illness|mental disease|psychological state|mental state +psychopharmacological|1 +(adj)|pharmacology|pharmacological medicine|materia medica +psychopharmacology|1 +(noun)|pharmacology|pharmacological medicine|materia medica +psychophysicist|1 +(noun)|psychologist +psychophysics|1 +(noun)|experimental psychology|psychonomics +psychophysiology|1 +(noun)|physiological psychology|neuropsychology|psychology|psychological science +psychopomp|1 +(noun)|imaginary being|imaginary creature +psychopsis|1 +(noun)|Psychopsis|genus Psychopsis|monocot genus|liliopsid genus +psychopsis krameriana|1 +(noun)|Psychopsis krameriana|Oncidium papilio kramerianum|butterfly orchid +psychopsis papilio|1 +(noun)|Psychopsis papilio|Oncidium papilio|butterfly orchid +psychosexual|1 +(adj)|representation|mental representation|internal representation +psychosexual development|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +psychosexuality|1 +(noun)|representation|mental representation|internal representation +psychosis|1 +(noun)|mental illness|mental disease|psychopathy +psychosomatic|1 +(adj)|neurotic |psychoneurotic +psychosomatic disorder|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +psychosurgery|1 +(noun)|brain surgery +psychotherapeutic|2 +(adj)|psychiatry|psychopathology|psychological medicine +(adj)|cathartic|healthful +psychotherapeutics|1 +(noun)|psychotherapy|mental hygiene|psychiatry|psychopathology|psychological medicine +psychotherapist|1 +(noun)|clinical psychologist|therapist|healer +psychotherapy|2 +(noun)|psychotherapeutics|mental hygiene|psychiatry|psychopathology|psychological medicine +(noun)|therapy +psychotherapy group|1 +(noun)|meeting +psychotic|2 +(adj)|insane +(noun)|psychotic person|psycho|sick person|diseased person|sufferer +psychotic belief|1 +(noun)|delusion|psychological state|mental state +psychotic depression|1 +(noun)|depressive disorder|clinical depression|depression +psychotic person|1 +(noun)|psychotic|psycho|sick person|diseased person|sufferer +psychotria|1 +(noun)|Psychotria|genus Psychotria|asterid dicot genus +psychotria capensis|1 +(noun)|lemonwood|lemon-wood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree +psychotropic|1 +(adj)|psychoactive |hallucinogenic|mind-altering|mind-bending|mind-blowing|psychedelic|mind-expanding +psychotropic agent|1 +(noun)|drug +psychrometer|1 +(noun)|hygrometer +psylla|1 +(noun)|jumping plant louse|psyllid|plant louse|louse +psyllid|1 +(noun)|jumping plant louse|psylla|plant louse|louse +psyllidae|1 +(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family +psyllium|1 +(noun)|fleawort|Spanish psyllium|Plantago psyllium|plantain +psyop|1 +(noun)|psychological operation|operation|military operation +pt|1 +(noun)|platinum|Pt|atomic number 78|noble metal +pt boat|1 +(noun)|PT boat|mosquito boat|mosquito craft|motor torpedo boat|torpedo boat +ptah|1 +(noun)|Ptah|Egyptian deity +ptarmigan|1 +(noun)|grouse +pteretis|1 +(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus +pteretis struthiopteris|1 +(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +pteridaceae|1 +(noun)|Pteridaceae|family Pteridaceae|fern family +pteridium|1 +(noun)|Pteridium|genus Pteridium|fern genus +pteridium aquilinum|1 +(noun)|bracken|pasture brake|brake|Pteridium aquilinum|fern +pteridium esculentum|1 +(noun)|bracken|Pteridium esculentum|fern +pteridological|1 +(adj)|botany|phytology +pteridologist|1 +(noun)|expert +pteridology|1 +(noun)|botany|phytology +pteridophyta|1 +(noun)|Pteridophyta|division Pteridophyta|division +pteridophyte|1 +(noun)|nonflowering plant|vascular plant|tracheophyte +pteridosperm|1 +(noun)|seed fern|gymnosperm +pteridospermae|1 +(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group|taxonomic category|taxon +pteridospermaphyta|1 +(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group|taxonomic category|taxon +pteridospermopsida|1 +(noun)|Pteridospermopsida|class Pteridospermopsida|class +pteriidae|1 +(noun)|Pteriidae|family Pteriidae|mollusk family +pterion|1 +(noun)|craniometric point +pteris|1 +(noun)|Pteris|genus Pteris|fern genus +pteris cretica|1 +(noun)|Pteris cretica|fern +pteris multifida|1 +(noun)|spider brake|spider fern|Pteris multifida|fern +pteris serrulata|1 +(noun)|ribbon fern|spider fern|Pteris serrulata|fern +pternohyla|1 +(noun)|Pternohyla|genus Pternohyla|amphibian genus +pternohyla fodiens|1 +(noun)|lowland burrowing treefrog|northern casque-headed frog|Pternohyla fodiens|tree toad|tree frog|tree-frog +pterocarpus|1 +(noun)|Pterocarpus|genus Pterocarpus|rosid dicot genus +pterocarpus angolensis|1 +(noun)|bloodwood tree|kiaat|Pterocarpus angolensis|tree +pterocarpus indicus|1 +(noun)|padauk|padouk|amboyna|Pterocarpus indicus|tree +pterocarpus macrocarpus|1 +(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree +pterocarpus marsupium|1 +(noun)|kino|Pterocarpus marsupium|tree +pterocarpus santalinus|1 +(noun)|red sandalwood|red sanders|red sanderswood|red saunders|Pterocarpus santalinus|tree +pterocarya|1 +(noun)|Pterocarya|genus Pterocarya|dicot genus|magnoliopsid genus +pterocarya fraxinifolia|1 +(noun)|Caucasian walnut|Pterocarya fraxinifolia|wing nut|wing-nut +pterocles|1 +(noun)|Pterocles|genus Pterocles|bird genus +pterocles alchata|1 +(noun)|pin-tailed sandgrouse|pin-tailed grouse|Pterocles alchata|sandgrouse|sand grouse +pterocles indicus|1 +(noun)|painted sandgrouse|Pterocles indicus|sandgrouse|sand grouse +pteroclididae|1 +(noun)|Pteroclididae|family Pteroclididae|bird family +pterocnemia|1 +(noun)|Pterocnemia|genus Pterocnemia|bird genus +pterocnemia pennata|1 +(noun)|rhea|nandu|Pterocnemia pennata|ratite|ratite bird|flightless bird +pterodactyl|1 +(noun)|pterosaur|flying reptile +pterodactylidae|1 +(noun)|Pterodactylidae|family Pterodactylidae|reptile family +pterodactylus|1 +(noun)|Pterodactylus|genus Pterodactylus|reptile genus +pterois|1 +(noun)|Pterois|genus Pterois|fish genus +pteropogon|1 +(noun)|Pteropogon humboltianum|herb|herbaceous plant +pteropogon humboltianum|1 +(noun)|pteropogon|Pteropogon humboltianum|herb|herbaceous plant +pteropsida|1 +(noun)|Pteropsida|subdivision Pteropsida|division +pteropus|1 +(noun)|Pteropus|genus Pteropus|mammal genus +pteropus capestratus|1 +(noun)|Pteropus capestratus|fruit bat|megabat +pteropus hypomelanus|1 +(noun)|Pteropus hypomelanus|fruit bat|megabat +pterosaur|1 +(noun)|flying reptile|archosaur|archosaurian|archosaurian reptile +pterosauria|1 +(noun)|Pterosauria|order Pterosauria|animal order +pterospermum|1 +(noun)|Pterospermum|genus Pterospermum|dilleniid dicot genus +pterospermum acerifolium|1 +(noun)|mayeng|maple-leaved bayur|Pterospermum acerifolium|tree +pterostylis|1 +(noun)|Pterostylis|genus Pterostylis|monocot genus|liliopsid genus +pteroylglutamic acid|1 +(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +pteroylmonoglutamic acid|1 +(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +pterygium|1 +(noun)|conjunctiva +pterygoid muscle|1 +(noun)|skeletal muscle|striated muscle +pterygoid plexus|1 +(noun)|plexus|rete +pterygoid process|1 +(noun)|process|outgrowth|appendage +ptilocercus|1 +(noun)|Ptilocercus|genus Ptilocercus|mammal genus +ptilocrinus|1 +(noun)|Ptilocrinus|genus Ptilocrinus|echinoderm genus +ptilonorhynchidae|1 +(noun)|Ptilonorhynchidae|family Ptilonorhynchidae|bird family +ptilonorhynchus|1 +(noun)|Ptilonorhynchus|genus Ptilonorhynchus|bird genus +ptilonorhynchus violaceus|1 +(noun)|satin bowerbird|satin bird|Ptilonorhynchus violaceus|bowerbird|catbird +ptloris|1 +(noun)|Ptloris|genus Ptloris|bird genus +ptloris paradisea|1 +(noun)|riflebird|Ptloris paradisea|bird of paradise +pto|1 +(noun)|power takeoff|PTO|device +ptolemaic|2 +(adj)|Ptolemaic|astronomer|uranologist|stargazer +(adj)|Ptolemaic|geocentric +ptolemaic dynasty|1 +(noun)|Ptolemy|Ptolemaic dynasty|dynasty +ptolemaic system|1 +(noun)|Ptolemaic system|model|theoretical account|framework +ptolemy|2 +(noun)|Ptolemy|Claudius Ptolemaeus|astronomer|uranologist|stargazer +(noun)|Ptolemy|Ptolemaic dynasty|dynasty +ptolemy i|1 +(noun)|Ptolemy I|king|male monarch +ptolemy ii|1 +(noun)|Ptolemy II|king|male monarch +ptomain|1 +(noun)|ptomaine|amine|aminoalkane +ptomaine|2 +(noun)|ptomain|amine|aminoalkane +(noun)|ptomaine poisoning|food poisoning|gastrointestinal disorder +ptomaine poisoning|1 +(noun)|ptomaine|food poisoning|gastrointestinal disorder +ptosis|1 +(noun)|prolapse|prolapsus|descensus +ptsd|1 +(noun)|posttraumatic stress disorder|PTSD|anxiety disorder +ptyalin|1 +(noun)|amylase +ptyalise|1 +(verb)|spit|ptyalize|spew|spue|expectorate|cough up|cough out|spit up|spit out +ptyalism|1 +(noun)|salivation +ptyalith|1 +(noun)|calculus|concretion +ptyalize|1 +(verb)|spit|ptyalise|spew|spue|expectorate|cough up|cough out|spit up|spit out +ptyas|1 +(noun)|Ptyas|genus Ptyas|reptile genus +ptyas mucosus|1 +(noun)|Indian rat snake|Ptyas mucosus|rat snake +ptychozoon|1 +(noun)|Ptychozoon|genus Ptychozoon|reptile genus +ptychozoon homalocephalum|1 +(noun)|flying gecko|fringed gecko|Ptychozoon homalocephalum|gecko +pu|1 +(noun)|plutonium|Pu|atomic number 94|chemical element|element +pub|1 +(noun)|public house|saloon|pothouse|gin mill|taphouse|tavern|tap house +pub-crawl|1 +(verb)|bar hop|drink|booze|fuddle +pub crawl|1 +(noun)|tour|circuit +pubertal|1 +(adj)|time of life +puberty|1 +(noun)|pubescence|time of life +puberulent|1 +(adj)|downy|pubescent|sericeous|hairy |hirsute +pubes|2 +(noun)|pubic region|loins|area|region +(noun)|pubis|pubic bone|os pubis|bone|os +pubescence|1 +(noun)|puberty|time of life +pubescent|2 +(adj)|immature +(adj)|downy|puberulent|sericeous|hairy |hirsute +pubic|1 +(adj)|bone|os +pubic bone|1 +(noun)|pubis|os pubis|bone|os +pubic hair|1 +(noun)|bush|crotch hair|hair +pubic louse|1 +(noun)|crab louse|crab|Phthirius pubis|louse|sucking louse +pubic region|1 +(noun)|pubes|loins|area|region +pubis|1 +(noun)|pubic bone|os pubis|bone|os +public|4 +(adj)|public |in the public eye|national|open|semipublic|state-supported|unexclusive|unrestricted|exoteric|overt|open7 +(adj)|common +(noun)|populace|world|people +(noun)|body +public-relations campaign|1 +(noun)|advertising campaign|ad campaign|ad blitz +public-service corporation|1 +(noun)|utility|public utility|service +public-spirited|1 +(adj)|unselfish +public address system|1 +(noun)|P.A. system|PA system|P.A.|PA|communication system +public charity|1 +(noun)|charity +public convenience|1 +(noun)|public toilet|comfort station|convenience|public lavatory|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +public debate|1 +(noun)|debate|disputation|public speaking|speechmaking|speaking|oral presentation +public debt|1 +(noun)|debt +public defender|1 +(noun)|lawyer|attorney +public discussion|1 +(noun)|ventilation|discussion|give-and-take|word +public domain|1 +(noun)|property right +public easement|1 +(noun)|easement +public executioner|1 +(noun)|executioner|killer|slayer +public exposure|1 +(noun)|dissemination|airing|spreading|transmission +public eye|1 +(noun)|limelight|spotlight|glare|prominence +public figure|1 +(noun)|name|figure|important person|influential person|personage +public house|1 +(noun)|pub|saloon|pothouse|gin mill|taphouse|tavern|tap house +public housing|1 +(noun)|housing project|housing development +public knowledge|1 +(noun)|general knowledge|cognition|knowledge|noesis +public lavatory|1 +(noun)|public toilet|comfort station|public convenience|convenience|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +public law|1 +(noun)|law +public lecture|1 +(noun)|lecture|talk|address|speech +public library|1 +(noun)|library +public mover|1 +(noun)|mover|moving company|removal firm|removal company|company +public nudity|1 +(noun)|indecent exposure|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +public nuisance|1 +(noun)|common nuisance|nuisance +public office|1 +(noun)|position|post|berth|office|spot|billet|place|situation +public opinion|1 +(noun)|popular opinion|opinion|vox populi|belief +public opinion poll|1 +(noun)|poll|opinion poll|canvass|inquiry|enquiry|research +public presentation|1 +(noun)|performance|show +public press|1 +(noun)|press|print media +public property|1 +(noun)|property|belongings|holding|material possession +public prosecutor|1 +(noun)|prosecutor|prosecuting officer|prosecuting attorney|official|functionary|lawyer|attorney +public relations|1 +(noun)|PR|promotion|publicity|promotional material|packaging +public relations man|1 +(noun)|press agent|publicity man|PR man|publicist|publicizer|publiciser +public relations person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +public school|2 +(noun)|school +(noun)|secondary school|lyceum|lycee|Gymnasium|middle school +public security|1 +(noun)|peace|security +public servant|1 +(noun)|employee +public service|2 +(noun)|community service|service +(noun)|employment|work +public speaker|1 +(noun)|orator|speechmaker|rhetorician|speechifier|speaker|talker|utterer|verbalizer|verbaliser +public speaking|1 +(noun)|speechmaking|speaking|oral presentation|address|speech +public square|2 +(noun)|square|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|agora|forum|marketplace|mart +public toilet|1 +(noun)|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +public transit|1 +(noun)|transportation system|transportation|transit +public transport|1 +(noun)|conveyance|transport +public treasury|1 +(noun)|trough|till|treasury|exchequer +public trust|1 +(noun)|charitable trust|trust +public utility|1 +(noun)|utility|public-service corporation|service +public violence|1 +(noun)|riot|violence|force +public works|1 +(noun)|structure|construction +publically|1 +(adv)|publicly|in public +publican|1 +(noun)|tavern keeper|bartender|barman|barkeep|barkeeper|mixologist +publication|3 +(noun)|work|piece of work +(noun)|issue|printing +(noun)|publishing|commercial enterprise|business enterprise|business +publicise|2 +(verb)|advertise|publicize|advertize|announce|denote +(verb)|publicize|air|bare|tell +publicised|1 +(adj)|publicized |advertised|heralded|promulgated|published +publiciser|1 +(noun)|publicist|publicizer|communicator +publicist|1 +(noun)|publicizer|publiciser|communicator +publicity|1 +(noun)|promotion|promotional material|packaging|message|content|subject matter|substance +publicity man|1 +(noun)|press agent|public relations man|PR man|publicist|publicizer|publiciser +publicize|2 +(verb)|publicise|air|bare|tell +(verb)|advertise|advertize|publicise|announce|denote +publicized|1 +(adj)|publicized |publicised|advertised|heralded|promulgated|published +publicizer|1 +(noun)|publicist|publiciser|communicator +publicizing|1 +(noun)|advertising|commercial enterprise|business enterprise|business +publicly|1 +(adv)|publically|in public +publish|3 +(verb)|print|produce|make|create +(verb)|bring out|put out|issue|release|publicize|publicise|air|bare +(verb)|write|create verbally +publishable|1 +(adj)|publishable +published|2 +(adj)|published +(adj)|promulgated|publicized |publicised +publisher|3 +(noun)|publishing house|publishing firm|publishing company|firm|house|business firm +(noun)|professional|professional person +(noun)|newspaper publisher|owner|proprietor +publishing|1 +(noun)|publication|commercial enterprise|business enterprise|business +publishing company|1 +(noun)|publisher|publishing house|publishing firm|firm|house|business firm +publishing conglomerate|1 +(noun)|publishing empire|conglomerate|empire +publishing empire|1 +(noun)|publishing conglomerate|conglomerate|empire +publishing firm|1 +(noun)|publisher|publishing house|publishing company|firm|house|business firm +publishing house|1 +(noun)|publisher|publishing firm|publishing company|firm|house|business firm +publius aelius hadrianus|1 +(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor|Emperor of Rome +publius cornelius scipio|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +publius cornelius scipio africanus major|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +publius ovidius naso|1 +(noun)|Ovid|Publius Ovidius Naso|poet +publius terentius afer|1 +(noun)|Terence|Publius Terentius Afer|dramatist|playwright +publius vergilius maro|1 +(noun)|Virgil|Vergil|Publius Vergilius Maro|poet +pubococcygeus exercises|1 +(noun)|Kegel exercises|exercise|exercising|physical exercise|physical exertion|workout +puccini|1 +(noun)|Puccini|Giacomo Puccini|composer +puccinia|1 +(noun)|Puccinia|genus Puccinia|fungus genus +puccinia graminis|1 +(noun)|wheat rust|Puccinia graminis|rust|rust fungus +pucciniaceae|1 +(noun)|Pucciniaceae|family Pucciniaceae|fungus family +puccoon|2 +(noun)|Lithospermum caroliniense|herb|herbaceous plant +(noun)|bloodroot|redroot|tetterwort|Sanguinaria canadensis|herb|herbaceous plant +puce|1 +(noun)|brown|brownness +puck|2 +(noun)|Puck|Robin Goodfellow|fairy|faery|faerie|sprite +(noun)|hockey puck|disk|disc +pucka|1 +(adj)|pukka|superior +pucker|4 +(noun)|ruck|fold|crease|plication|flexure|crimp|bend +(verb)|rumple|cockle|crumple|knit|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +(verb)|gather|tuck|sew|run up|sew together|stitch +(verb)|ruck|ruck up|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +puckerbush|1 +(noun)|bay myrtle|Myrica cerifera|wax myrtle +puckered|1 +(adj)|puckered-up|wrinkled +puckered-up|1 +(adj)|puckered|wrinkled +puckish|1 +(adj)|impish|implike|mischievous|pixilated|prankish|playful +puckishly|1 +(adv)|impishly +puckishness|1 +(noun)|impishness|mischievousness|whimsicality|playfulness|fun +pud|1 +(noun)|pudding|course +pudden-head|1 +(noun)|stupid|stupid person|dullard|dolt|pudding head|poor fish|pillock|simpleton|simple +pudding|3 +(noun)|dish +(noun)|pud|course +(noun)|dessert|sweet|afters +pudding-face|2 +(noun)|pudding face|countenance|physiognomy|phiz|visage|kisser|smiler|mug +(noun)| +pudding-wife|2 +(noun)|puddingwife|Halicoeres radiatus|wrasse +(noun)| +pudding berry|1 +(noun)|bunchberry|dwarf cornel|crackerberry|Cornus canadensis|dogwood|dogwood tree|cornel +pudding face|2 +(noun)|pudding-face|countenance|physiognomy|phiz|visage|kisser|smiler|mug +(noun)| +pudding head|1 +(noun)|stupid|stupid person|dullard|dolt|pudden-head|poor fish|pillock|simpleton|simple +pudding pipe tree|1 +(noun)|golden shower tree|drumstick tree|purging cassia|canafistola|canafistula|Cassia fistula|cassia +pudding stone|1 +(noun)|conglomerate|rock|stone +puddingheaded|1 +(adj)|addlebrained|addlepated|potty|muddleheaded|confused +puddingwife|1 +(noun)|pudding-wife|Halicoeres radiatus|wrasse +puddle|12 +(noun)|covering material +(noun)|pool|body of water|water +(noun)|pool|topographic point|place|spot +(verb)|wade +(verb)|shape|form|work|mold|mould|forge +(verb)|plant|set +(verb)|pack|bundle|wad|compact +(verb)|putter|mess around|potter|tinker|monkey|monkey around|muck about|muck around +(verb)|muddle|roil|rile +(verb)|spatter|splatter|plash|splash|splosh|swash +(verb)|addle|muddle|jumble|confuse|mix up +(verb)|make|urinate|piddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +puddler|1 +(noun)|ironworker +pudendal|1 +(adj)|genitalia|genital organ|genitals|private parts|privates|crotch +pudendal artery|1 +(noun)|arteria pudenda|artery|arteria|arterial blood vessel +pudendal block|1 +(noun)|regional anesthesia|regional anaesthesia +pudendal cleavage|1 +(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal slit|vulvar slit|rima +pudendal cleft|1 +(noun)|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima +pudendal slit|1 +(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|vulvar slit|rima +pudendal vein|1 +(noun)|venae pudendum|vein|vena|venous blood vessel +pudendum|1 +(noun)|genitalia|genital organ|genitals|private parts|privates|crotch +pudge|1 +(noun)|endomorph +pudginess|1 +(noun)|chubbiness|tubbiness|rolypoliness|plumpness|embonpoint +pudgy|1 +(adj)|dumpy|podgy|tubby|fat +puebla|1 +(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city|metropolis|urban center +puebla de zaragoza|1 +(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city|metropolis|urban center +pueblo|3 +(noun)|Pueblo|Indian|North American Indian|American Indian|Red Indian +(noun)|Pueblo|city|metropolis|urban center +(noun)|village|hamlet +pueraria|1 +(noun)|Pueraria|genus Pueraria|rosid dicot genus +pueraria lobata|1 +(noun)|kudzu|kudzu vine|Pueraria lobata|vine +puerile|2 +(adj)|offspring|progeny|issue +(adj)|adolescent|jejune|juvenile|immature +puerility|2 +(noun)|childhood|immaturity|immatureness +(noun)|childishness|youngness +puerpera|1 +(noun)|mother|female parent +puerperal|1 +(adj)|parturition|birth|giving birth|birthing|time period|period of time|period|mother|female parent +puerperal fever|1 +(noun)|childbed fever|blood poisoning|septicemia|septicaemia +puerperium|1 +(noun)|time period|period of time|period +puerto rican|1 +(noun)|Puerto Rican|American +puerto rico|2 +(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth +(noun)|Puerto Rico|Porto Rico|island +puff|17 +(adj)|puffed|fancy +(noun)|puff of air|whiff|gust|blast|blow +(noun)|pastry +(noun)|recommendation|testimonial|good word +(noun)|quilt|comforter|bedclothes|bed clothing|bedding +(noun)|powderpuff|pad +(noun)|ottoman|pouf|pouffe|hassock|seat +(noun)|drag|pull|inhalation|inspiration|aspiration|breathing in +(noun)|blow|exhalation|expiration|breathing out +(verb)|whiff|smoke +(verb)|drag|draw|inhale|inspire|breathe in +(verb)|pant|gasp|heave|blow +(verb)|elate|lift up|uplift|pick up|intoxicate +(verb)|puff up|praise +(verb)|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade +(verb)|puff up|blow up|puff out|swell|swell up|intumesce|tumefy|tumesce +(verb)|huff|chuff|blow +puff adder|2 +(noun)|Bitis arietans|viper +(noun)|hognose snake|sand viper|colubrid snake|colubrid +puff batter|1 +(noun)|pouf paste|pate a choux|batter +puff of air|1 +(noun)|puff|whiff|gust|blast|blow +puff out|1 +(verb)|puff|puff up|blow up|swell|swell up|intumesce|tumefy|tumesce +puff paste|1 +(noun)|pate feuillete|pastry|pastry dough +puff up|4 +(verb)|inflate|blow up|expand|amplify +(verb)|puff|blow up|puff out|swell|swell up|intumesce|tumefy|tumesce +(verb)|swell|act|behave|do +(verb)|puff|praise +puffball|2 +(noun)|true puffball|fungus +(noun)|earthball|false truffle|hard-skinned puffball|fungus +puffbird|1 +(noun)|piciform bird +puffed|2 +(adj)|bloated|distended|puffy|swollen|tumescent|tumid|turgid|unhealthy +(adj)|puff|fancy +puffed rice|1 +(noun)|cold cereal|dry cereal +puffed wheat|1 +(noun)|cold cereal|dry cereal +puffer|2 +(noun)|blowfish|sea squab|saltwater fish +(noun)|blowfish|globefish|plectognath|plectognath fish +puffin|1 +(noun)|seabird|sea bird|seafowl +puffiness|1 +(noun)|swelling|lump|symptom +puffing|3 +(adj)|huffing|puffy|breathing |eupneic|eupnoeic +(noun)|smoke|smoking +(noun)|huffing|snorting|exhalation|expiration|breathing out +puffinus|1 +(noun)|Puffinus|genus Puffinus|bird genus +puffinus puffinus|1 +(noun)|Manx shearwater|Puffinus puffinus|shearwater +puffy|3 +(adj)|bouffant|large +(adj)|bloated|distended|puffed|swollen|tumescent|tumid|turgid|unhealthy +(adj)|huffing|puffing|breathing |eupneic|eupnoeic +pug|1 +(noun)|pug-dog|dog|domestic dog|Canis familiaris +pug-dog|1 +(noun)|pug|dog|domestic dog|Canis familiaris +pug-nose|1 +(adj)|pug-nosed|snub-nosed|nosed +pug-nosed|1 +(adj)|pug-nose|snub-nosed|nosed +pug nose|1 +(noun)|nose|olfactory organ +puget sound|1 +(noun)|Puget Sound|sound +pugilism|1 +(noun)|boxing|fisticuffs|contact sport +pugilist|1 +(noun)|boxer|combatant|battler|belligerent|fighter|scrapper +pugilistic|1 +(adj)|contact sport|combatant|battler|belligerent|fighter|scrapper +pugin|1 +(noun)|Pugin|Augustus Welby Northmore Pugin|architect|designer +puglia|1 +(noun)|Puglia|Apulia|Italian region +pugnacious|2 +(adj)|hard-bitten|hard-boiled|tough +(adj)|rough|aggressive +pugnacity|1 +(noun)|aggressiveness|contentiousness|belligerence|quarrelsomeness|disagreeableness +puissance|1 +(noun)|power|powerfulness +puissant|1 +(adj)|powerful +pujunan|1 +(noun)|Pujunan|Maidu|Penutian +puka|2 +(noun)|Griselinia lucida|shrub|bush +(noun)|Meryta sinclairii|tree +puka inti|1 +(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization|terrorist group|foreign terrorist organization|FTO +puke|3 +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|vomit|vomitus|body waste|excretion|excreta|excrement|excretory product +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +puking|1 +(noun)|vomit|vomiting|emesis|regurgitation|disgorgement|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +pukka|1 +(adj)|pucka|superior +puku|1 +(noun)|Adenota vardoni|antelope +pul|1 +(noun)|Afghan monetary unit +pula|1 +(noun)|Botswana monetary unit +pulasan|2 +(noun)|pulassan|pulasan tree|Nephelium mutabile|fruit tree +(noun)|pulassan|edible fruit +pulasan tree|1 +(noun)|pulasan|pulassan|Nephelium mutabile|fruit tree +pulassan|2 +(noun)|pulasan|pulasan tree|Nephelium mutabile|fruit tree +(noun)|pulasan|edible fruit +pulchritude|1 +(noun)|beauty +pulchritudinous|1 +(adj)|beautiful +pule|1 +(verb)|wail|whimper|mewl|cry|weep +pulex|1 +(noun)|Pulex|genus Pulex|arthropod genus +pulex irritans|1 +(noun)|Pulex irritans|flea +pulicaria|1 +(noun)|Pulicaria|genus Pulicaria|asterid dicot genus +pulicaria dysenterica|1 +(noun)|fleabane|feabane mullet|Pulicaria dysenterica|herb|herbaceous plant +pulicidae|1 +(noun)|Pulicidae|family Pulicidae|arthropod family +pulitzer|1 +(noun)|Pulitzer|Joseph Pulitzer|publisher|newspaper publisher +pull|24 +(noun)|pulling|propulsion|actuation +(noun)|force +(noun)|clout|advantage|vantage +(noun)|device +(noun)|wrench|twist|injury|hurt|harm|trauma +(noun)|puff|drag|inhalation|inspiration|aspiration|breathing in +(noun)|effort|elbow grease|exertion|travail|sweat +(verb)|draw|force|move|displace|pull down|pull off|pull up|pull out|pull along|pull in|pull back +(verb)|attract|pull in|draw|draw in|draw|force +(verb)|drive +(verb)|force +(verb)|perpetrate|commit|act|move +(verb)|draw|pull out|get out|take out|remove|take|take away|withdraw +(verb)|drive +(verb)|overstretch|injure|wound +(verb)|move|displace +(verb)|row +(verb)|rein|rein in +(verb)|rend|rip|rive|tear|rupture|snap|bust +(verb)|hit +(verb)|pluck|tear|deplume|deplumate|displume|strip +(verb)|extract|pull out|pull up|take out|draw out|remove|take|take away|withdraw +(verb)|side|root|back|endorse|indorse|plump for|plunk for|support +(verb)|remove|take|take away|withdraw +pull-in|1 +(noun)|pull-up|cafe|coffeehouse|coffee shop|coffee bar +pull-off|1 +(noun)|layby|lay-by|rest area|rest stop|area +pull-through|1 +(noun)|cleaning implement +pull-up|2 +(noun)|pull-in|cafe|coffeehouse|coffee shop|coffee bar +(noun)|chin-up|arm exercise +pull a face|1 +(verb)|grimace|make a face|communicate|intercommunicate +pull a fast one on|1 +(verb)|trick|fob|fox|play a trick on|deceive|lead on|delude|cozen +pull ahead|1 +(verb)|gain|advance|win|make headway|get ahead|gain ground +pull along|1 +(verb)|shlep|schlep|drag +pull at|1 +(verb)|pick at|pluck at|pull +pull away|1 +(verb)|withdraw|retreat|draw back|recede|pull back|retire|move back|travel|go|move|locomote +pull back|5 +(verb)|withdraw|retreat|pull away|draw back|recede|retire|move back|travel|go|move|locomote +(verb)|retract|draw back|pull +(verb)|pull|draw|force +(verb)|draw|stretch +(verb)|retreat|back out|back away|crawfish|crawfish out|pull in one's horns|withdraw +pull chain|1 +(noun)|chain|pull +pull down|2 +(verb)|level|raze|rase|dismantle|tear down|take down|destroy|destruct +(verb)|down|knock down|cut down|push down|strike +pull in|4 +(verb)|attract|pull|draw|draw in|pull|draw|force +(verb)|gain|take in|clear|make|earn|realize|realise|bring in|get|acquire +(verb)|get in|move in|draw in|arrive|get|come +(verb)|collect|roll up|collect|accumulate|pile up|amass|compile|hoard +pull in one's horns|1 +(verb)|retreat|pull back|back out|back away|crawfish|crawfish out|withdraw +pull off|4 +(verb)|pluck|tweak|pick off|pull|draw|force +(verb)|remove +(verb)|negociate|bring off|carry off|manage|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|draw off|draw away|remove|take|take away|withdraw +pull one's weight|1 +(verb)|work +pull out|4 +(verb)|get out|leave|go forth|go away +(verb)|draw|pull|get out|take out|remove|take|take away|withdraw +(verb)|extract|pull|pull up|take out|draw out|remove|take|take away|withdraw +(verb)|chicken out|back off|back down|bow out|retire|withdraw +pull out all the stops|1 +(verb)|use|utilize|utilise|apply|employ +pull over|1 +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +pull round|1 +(verb)|survive|pull through|come through|make it|get the better of|overcome|defeat +pull someone's leg|1 +(verb)|hoax|play a joke on|deceive|lead on|delude|cozen +pull strings|1 +(verb)|manipulate|pull wires|influence|act upon|work +pull the leg of|1 +(verb)|kid|gull|dupe|slang|befool|cod|fool|put on|take in|put one over|put one across +pull the plug|1 +(verb)|discontinue|stop|cease|give up|quit|lay off +pull the wool over someone's eyes|1 +(verb)|bamboozle|snow|hoodwink|lead by the nose|play false|deceive|betray|lead astray +pull through|2 +(verb)|survive|pull round|come through|make it|get the better of|overcome|defeat +(verb)|save|carry through|bring through +pull together|1 +(verb)|gather|garner|collect +pull up|4 +(verb)|draw up|haul up|stop|halt +(verb)|draw up|straighten up|straighten +(verb)|draw up|stop +(verb)|extract|pull out|pull|take out|draw out|remove|take|take away|withdraw +pull up short|1 +(verb)|stop|halt +pull up stakes|1 +(verb)|leave|depart|change +pull wires|1 +(verb)|manipulate|pull strings|influence|act upon|work +pullback|2 +(noun)|tieback|holding device +(noun)|withdrawal +pulled|1 +(adj)|force +puller|2 +(noun)|mover +(noun)|tugger|dragger|worker +pullet|2 +(noun)|fryer|frier|chicken|poulet|volaille +(noun)|hen|biddy +pulley|1 +(noun)|pulley-block|block|machine|simple machine +pulley-block|1 +(noun)|pulley|block|machine|simple machine +pulling|1 +(noun)|pull|propulsion|actuation +pulling out|1 +(noun)|coitus interruptus|withdrawal method|onanism|birth control|birth prevention|family planning +pullman|1 +(noun)|Pullman|Pullman car|passenger car|coach|carriage +pullman car|1 +(noun)|Pullman|Pullman car|passenger car|coach|carriage +pullman porter|1 +(noun)|porter|Pullman porter|employee +pullorum disease|1 +(noun)|bacillary white diarrhea|bacillary white diarrhoea|animal disease +pullout|1 +(noun)|disengagement|fallback|retreat +pullover|1 +(noun)|slipover|sweater +pullulate|5 +(verb)|teem|swarm|hum|buzz|seethe +(verb)|pour|swarm|stream|teem|crowd|crowd together +(verb)|shoot|spud|germinate|bourgeon|burgeon forth|sprout|grow +(verb)|increase +(verb)|breed|multiply +pullulate with|1 +(verb)|abound in|teem in|occur +pullulation|2 +(noun)|gemmation|asexual reproduction|agamogenesis +(noun)|increase|increment|growth +pulmonary|1 +(adj)|pneumonic|pulmonic|respiratory organ +pulmonary anthrax|1 +(noun)|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax +pulmonary artery|1 +(noun)|arteria pulmonalis|artery|arteria|arterial blood vessel +pulmonary circulation|1 +(noun)|circulation +pulmonary congestion|1 +(noun)|congestion +pulmonary embolism|1 +(noun)|embolism +pulmonary emphysema|1 +(noun)|emphysema|respiratory disease|respiratory illness|respiratory disorder +pulmonary plexis|1 +(noun)|plexus pulmonalis|nerve plexus +pulmonary reserve|1 +(noun)|reserve +pulmonary stenosis|1 +(noun)|stenosis|stricture +pulmonary trunk|1 +(noun)|truncus pulmonalis|pulmonary artery|arteria pulmonalis +pulmonary tuberculosis|1 +(noun)|consumption|phthisis|wasting disease|white plague|tuberculosis|TB|T.B. +pulmonary valve|1 +(noun)|semilunar valve +pulmonary vein|1 +(noun)|vena pulmonalis|vein|vena|venous blood vessel +pulmonata|1 +(noun)|Pulmonata|order Pulmonata|animal order +pulmonic|1 +(adj)|pneumonic|pulmonary|respiratory organ +pulp|7 +(noun)|mush|mass +(noun)|flesh|plant tissue +(noun)|cellulose +(noun)|pulp magazine|magazine|mag +(noun)|vascular structure +(verb)|take out +(verb)|grind|mash|crunch|bray|comminute +pulp cavity|1 +(noun)|cavity|bodily cavity|cavum +pulp magazine|1 +(noun)|pulp|magazine|mag +pulpit|1 +(noun)|dais|podium|rostrum|ambo|stump|soapbox|platform +pulpwood|1 +(noun)|softwood|deal +pulpy|1 +(adj)|nonwoody +pulque|1 +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +pulsar|1 +(noun)|neutron star +pulsate|3 +(verb)|throb|pulse|beat|pound|thump +(verb)|beat|quiver|move +(verb)|pulse|produce|make|create +pulsatilla|1 +(noun)|Pulsatilla|genus Pulsatilla|magnoliid dicot genus +pulsatilla occidentalis|1 +(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower|pasque flower +pulsatilla patens|1 +(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +pulsatilla vulgaris|1 +(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower|pasque flower +pulsating|1 +(adj)|beating|pulsing|rhythmical |rhythmic +pulsation|3 +(noun)|pulsing|pulse|impulse|wave|undulation +(noun)|phenomenon +(noun)|pulse|heartbeat|beat|periodic event|recurrent event +pulse|7 +(noun)|pulsation|pulsing|impulse|wave|undulation +(noun)|pulsation|heartbeat|beat|periodic event|recurrent event +(noun)|pulse rate|heart rate|vital sign|rate +(noun)|legume +(verb)|pulsate|throb|beat|pound|thump +(verb)|pulsate|produce|make|create +(verb)|move|displace +pulse-time modulation|1 +(noun)|pulse modulation +pulse counter|1 +(noun)|counter|tabulator +pulse generator|1 +(noun)|generator +pulse height analyzer|1 +(noun)|kicksorter|scientific instrument +pulse modulation|1 +(noun)|modulation +pulse rate|1 +(noun)|pulse|heart rate|vital sign|rate +pulse timing circuit|1 +(noun)|circuit|electrical circuit|electric circuit +pulsed|1 +(adj)|periodic |periodical +pulseless|1 +(adj)|breathless|inanimate|dead +pulseless disease|1 +(noun)|Takayasu's arteritis|arteritis +pulsing|2 +(adj)|beating|pulsating|rhythmical |rhythmic +(noun)|pulsation|pulse|impulse|wave|undulation +pulverisation|3 +(noun)|powder|pulverization|solid +(noun)|grind|mill|pulverization|crush|crunch|compaction +(noun)|pulverization|annihilation|obliteration +pulverise|3 +(verb)|demolish|pulverize|destroy|destruct +(verb)|powderize|pulverize|powderise|disintegrate +(verb)|powderize|powderise|powder|pulverize|disintegrate +pulverised|1 +(adj)|powdered|powdery|pulverized|small-grained|fine-grained|fine +pulverization|3 +(noun)|powder|pulverisation|solid +(noun)|grind|mill|pulverisation|crush|crunch|compaction +(noun)|pulverisation|annihilation|obliteration +pulverize|3 +(verb)|powderize|powderise|powder|pulverise|disintegrate +(verb)|demolish|pulverise|destroy|destruct +(verb)|powderize|pulverise|powderise|disintegrate +pulverized|1 +(adj)|powdered|powdery|pulverised|small-grained|fine-grained|fine +puma|1 +(noun)|cougar|catamount|mountain lion|painter|panther|Felis concolor|wildcat +pumice|1 +(noun)|pumice stone|rock|stone +pumice stone|1 +(noun)|pumice|rock|stone +pummel|1 +(verb)|pommel|biff|hit +pummelo|1 +(noun)|pomelo|pomelo tree|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +pump|11 +(noun)|mechanical device +(noun)|heart|ticker|internal organ|viscus +(noun)|pumps|shoe +(verb)|wield|handle +(verb)|shoot +(verb)|draw|take out +(verb)|supply|provide|render|furnish +(verb)|spurt|spirt|gush|spout +(verb)|move|displace +(verb)|raise|lift|elevate|get up|bring up +(verb)|question|query +pump-and-dump scheme|1 +(noun)|contrivance|stratagem|dodge +pump-type pliers|1 +(noun)|pliers|pair of pliers|plyers +pump action|1 +(noun)|slide action|action|action mechanism +pump house|1 +(noun)|pumping station|house +pump priming|2 +(noun)|deficit spending|compensatory spending|spending|disbursement|disbursal|outlay +(noun)|care|maintenance|upkeep +pump room|1 +(noun)|pump house|pumping station +pump well|1 +(noun)|well +pumped|1 +(adj)|pumped-up|pumped up|wired|tense +pumped-up|2 +(adj)|pumped up|pumped|wired|tense +(adj)| +pumped up|2 +(adj)|pumped-up|pumped|wired|tense +(adj)| +pumpernickel|1 +(noun)|black bread|rye bread +pumping station|1 +(noun)|pump house|house +pumpkin|2 +(noun)|pumpkin vine|autumn pumpkin|Cucurbita pepo|squash|squash vine +(noun)|vegetable|veggie +pumpkin-shaped|1 +(adj)|oblate |rounded +pumpkin ash|1 +(noun)|Fraxinus tomentosa|ash|ash tree +pumpkin pie|1 +(noun)|pie +pumpkin seed|2 +(noun)|edible seed +(noun)|pumpkinseed|Lepomis gibbosus|sunfish|centrarchid +pumpkin vine|1 +(noun)|pumpkin|autumn pumpkin|Cucurbita pepo|squash|squash vine +pumpkinseed|1 +(noun)|Lepomis gibbosus|sunfish|centrarchid +pumps|4 +(noun)|pump|shoe +(noun)|pump|mechanical device +(noun)|heart|pump|ticker|internal organ|viscus +(noun)|pump|shoe +pun|2 +(noun)|punning|wordplay|paronomasia|fun|play|sport +(verb)|joke|jest +punch|6 +(noun)|clout|poke|lick|biff|blow +(noun)|mixed drink +(noun)|puncher|tool +(verb)|plug|hit +(verb)|thrust +(verb)|perforate|pierce +punch-drunk|1 +(adj)|silly|slaphappy|confused +punch-up|1 +(noun)|fistfight|fisticuffs|slugfest +punch bag|1 +(noun)|punching bag|punching ball|punchball|ball +punch bowl|1 +(noun)|bowl +punch card|1 +(noun)|punched card|Hollerith card|card +punch in|1 +(verb)|clock in|clock on|record|enter|put down +punch line|1 +(noun)|laugh line|gag line|tag line|line +punch out|1 +(verb)|clock out|clock off|report +punch pliers|1 +(noun)|punch|puncher +punch press|1 +(noun)|press|mechanical press +punchayet|1 +(noun)|panchayat|panchayet|council +punchball|1 +(noun)|punching bag|punch bag|punching ball|ball +punchboard|1 +(noun)|board|gameboard +punched card|1 +(noun)|punch card|Hollerith card|card +puncher|3 +(noun)|cowboy|cowpuncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand +(noun)|boxer|pugilist +(noun)|punch|tool +punching bag|2 +(noun)|victim +(noun)|punch bag|punching ball|punchball|ball +punching ball|1 +(noun)|punching bag|punch bag|punchball|ball +punctilio|2 +(noun)|etiquette +(noun)|honoring|observance +punctilious|1 +(adj)|meticulous|precise +punctiliousness|1 +(noun)|meticulousness|meticulosity|scrupulousness|conscientiousness|painstakingness +punctual|1 +(adj)|punctual |on time|prompt|timely +punctuality|1 +(noun)|promptness|timing +punctually|1 +(adv)|duly +punctuate|3 +(verb)|mark|add +(verb)|stress|emphasize|emphasise|accent|accentuate|express|show|evince +(verb)|interrupt|disrupt|break up|cut off +punctuated equilibrium|1 +(noun)|theory of punctuated equilibrium|theory of evolution|theory of organic evolution +punctuation|3 +(noun)|interruption|break +(noun)|punctuation mark|mark +(noun)|grouping +punctuation mark|1 +(noun)|punctuation|mark +punctum|1 +(noun)|point +puncturable|1 +(adj)|puncturable +puncture|8 +(noun)|mishap|misadventure|mischance +(noun)|hole +(noun)|activity +(verb)|pierce +(verb)|make|create +(verb)|deflate|deprecate|depreciate +(verb)|depressurize|depressurise|decompress +(verb)|break|separate|split up|fall apart|come apart +punctured|1 +(adj)|pierced|perforated|perforate|cut +punctureless|1 +(adj)|punctureless |self-sealing +pundit|1 +(noun)|initiate|learned person|savant|scholar|scholarly person|student +pung|1 +(noun)|sled|sledge|sleigh +pungapung|1 +(noun)|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum|aroid +pungency|2 +(noun)|bite|wit|humor|humour|witticism|wittiness +(noun)|bite|sharpness|spiciness|spice|spicery +pungent|2 +(adj)|pungent |acrid|gingery|hot|peppery|spicy|tasteful +(adj)|barbed|biting|nipping|mordacious|sarcastic +punic|3 +(adj)|Carthaginian|Punic +(adj)|perfidious|treacherous|unfaithful +(noun)|Punic|Phoenician +punic war|1 +(noun)|Punic War|war|warfare +punica|1 +(noun)|Punica|genus Punica|dicot genus|magnoliopsid genus +punica granatum|1 +(noun)|pomegranate|pomegranate tree|Punica granatum|fruit tree +punicaceae|1 +(noun)|Punicaceae|family Punicaceae|dicot family|magnoliopsid family +puniness|1 +(noun)|runtiness|stuntedness|smallness|littleness +punish|1 +(verb)|penalize|penalise +punishable|2 +(adj)|guilty +(adj)|penal|illegal +punished|1 +(adj)|punished |admonished|chastened|rebuked|reprimanded|reproved|censured|chastised|corrected|disciplined|fined|penalized|penalised|tarred-and-feathered|tortured +punishing|1 +(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|toilsome|effortful +punishment|1 +(noun)|penalty|penalization|penalisation|social control +punitive|1 +(adj)|punitive |punitory|correctional|penal|penitentiary|retaliatory|relatiative|retributive|retributory|vindicatory +punitive damages|1 +(noun)|exemplary damages|smart money|damages|amends|indemnity|indemnification|restitution|redress +punitively|1 +(adv)|punitorily|penally +punitorily|1 +(adv)|punitively|penally +punitory|1 +(adj)|punitive |correctional|penal|penitentiary|retaliatory|relatiative|retributive|retributory|vindicatory +punjab|1 +(noun)|Punjab|geographical area|geographic area|geographical region|geographic region +punjabi|2 +(noun)|Punjabi|Panjabi|Indian +(noun)|Punjabi|Panjabi|Sanskrit|Sanskritic language +punk|6 +(adj)|bum|cheap|cheesy|chintzy|crummy|sleazy|tinny|inferior +(noun)|hood|hoodlum|goon|thug|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +(noun)|igniter|ignitor|lighter +(noun)|kindling|tinder|touchwood|spunk|igniter|ignitor|lighter +(noun)|punk rocker|adolescent|stripling|teenager +(noun)|punk rock|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +punk rock|1 +(noun)|punk|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +punk rocker|1 +(noun)|punk|adolescent|stripling|teenager +punkah|1 +(noun)|fan +punkey|1 +(noun)|punkie|punky|no-see-um|biting midge|gnat +punkie|1 +(noun)|punky|punkey|no-see-um|biting midge|gnat +punks|6 +(noun)|youth subculture +(noun)|hood|hoodlum|goon|punk|thug|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +(noun)|punk|igniter|ignitor|lighter +(noun)|kindling|tinder|touchwood|spunk|punk|igniter|ignitor|lighter +(noun)|punk rocker|punk|adolescent|stripling|teenager +(noun)|punk rock|punk|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|rock music +punky|1 +(noun)|punkie|punkey|no-see-um|biting midge|gnat +punnet|1 +(noun)|basket|handbasket +punning|1 +(noun)|pun|wordplay|paronomasia|fun|play|sport +punster|1 +(noun)|humorist|humourist +punt|6 +(noun)|Irish pound|Irish punt|pound|Irish monetary unit +(noun)|boat +(noun)|punting|kick|boot|kicking +(verb)|kick +(verb)|pole|propel|impel +(verb)|bet on|back|gage|stake|game|bet|wager|play +punta arenas|1 +(noun)|Punta Arenas|city|metropolis|urban center +punter|3 +(noun)|boatman|boater|waterman +(noun)|kicker +(noun)|bettor|better|wagerer|gambler +punting|1 +(noun)|punt|kick|boot|kicking +puny|2 +(adj)|weak +(adj)|runty|shrimpy|small +pup|3 +(noun)|whelp|young mammal +(noun)|puppy|young person|youth|younker|spring chicken +(verb)|whelp|litter +pup tent|1 +(noun)|shelter tent|tent|collapsible shelter +pupa|1 +(noun)|insect +pupal|1 +(adj)|immature +pupate|1 +(verb)|grow|develop|produce|get|acquire +pupet regime|1 +(noun)|puppet government|puppet state|government|authorities|regime +pupil|3 +(noun)|student|educatee|enrollee +(noun)|aperture +(noun)|schoolchild|school-age child|young person|youth|younker|spring chicken +pupillary|1 +(adj)|aperture +pupillary reflex|1 +(noun)|light reflex|miosis|myosis|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +pupillary sphincter|1 +(noun)|musculus sphincter pupillae|sphincter|anatomical sphincter|sphincter muscle +puppet|3 +(noun)|marionette|figure +(noun)|creature|tool|slave +(noun)|doll|dolly +puppet government|1 +(noun)|puppet state|pupet regime|government|authorities|regime +puppet leader|1 +(noun)|puppet ruler|ruler|swayer|leader +puppet play|1 +(noun)|puppet show|show +puppet ruler|1 +(noun)|puppet leader|ruler|swayer|leader +puppet show|1 +(noun)|puppet play|show +puppet state|1 +(noun)|puppet government|pupet regime|government|authorities|regime +puppeteer|1 +(noun)|performer|performing artist +puppetry|2 +(noun)|art|artistry|prowess +(noun)|dramatization|dramatisation +puppis|1 +(noun)|Puppis|constellation +puppy|2 +(noun)|pup|whelp +(noun)|pup|young person|youth|younker|spring chicken +puppy chow|1 +(noun)|dog food +puppy fat|1 +(noun)|adipose tissue|fat|fatty tissue +puppy love|1 +(noun)|calf love|crush|infatuation|love +puppyish|1 +(adj)|puppylike|young |immature +puppylike|1 +(adj)|puppyish|young |immature +purace|1 +(noun)|Purace|volcano +purana|1 +(noun)|Purana|Sanskrit literature +puranic|1 +(adj)|Puranic|Sanskrit literature +purau|1 +(noun)|mahoe|majagua|mahagua|balibago|Hibiscus tiliaceus|hibiscus +purblind|2 +(adj)|dim-sighted|near-blind|sand-blind|visually impaired|visually challenged|blind |unsighted +(adj)|obtuse|undiscerning +purcell|1 +(noun)|Purcell|Henry Purcell|organist|composer +purchasable|2 +(adj)|corruptible|bribable|dishonest|venal|corrupt +(adj)|for sale|available +purchase|5 +(noun)|acquisition +(noun)|acquisition +(noun)|influence +(noun)|leverage|mechanical phenomenon +(verb)|buy|get|acquire +purchase agreement|1 +(noun)|purchase contract|contract +purchase contract|1 +(noun)|purchase agreement|contract +purchase order|1 +(noun)|order|commercial document|commercial instrument +purchase price|1 +(noun)|price|terms|damage +purchaser|1 +(noun)|buyer|emptor|vendee|customer|client +purchasing|1 +(noun)|buying|purchase +purchasing agent|1 +(noun)|agent +purchasing department|1 +(noun)|business department +purdah|3 +(noun)|solitude|isolation +(noun)|sex segregation|segregation|separatism +(noun)|screen +pure|8 +(adj)|pure |axenic|clean|fresh|clean|clear|light|unclouded|fine|f.|native|plain|sheer|unmingled|unmixed|pristine|purified|refined|sublimate|unadulterated|unalloyed|uncontaminated|unpolluted|virginal|clean|processed +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|sodding|stark|staring|thoroughgoing|utter|unmitigated +(adj)|theoretical +(adj)|saturated |intense|vivid +(adj)|harmonious +(adj)|pure |immaculate|undefiled|white|chaste +(adj)|vestal|virgin|virginal|virtuous|chaste +(adj)|unmixed|undiluted|absolute +pure absence|1 +(noun)|simple absence|petit mal epilepsy|absence +pure and simple|1 +(adj)|literal|plain +pure binary numeration system|1 +(noun)|binary numeration system|binary number system|binary system|positional notation|positional representation system +pure imaginary number|1 +(noun)|complex number|complex quantity|imaginary number +pure mathematics|1 +(noun)|mathematics|math|maths +pure tone|1 +(noun)|tone|sound|auditory sensation +pureblood|2 +(adj)|pedigree|pedigreed|pureblooded|thoroughbred|purebred +(noun)|thoroughbred|purebred|animal|animate being|beast|brute|creature|fauna +pureblooded|1 +(adj)|pedigree|pedigreed|pureblood|thoroughbred|purebred +purebred|2 +(adj)|purebred |full-blooded|full-blood|blooded|pedigree|pedigreed|pureblood|pureblooded|thoroughbred +(noun)|thoroughbred|pureblood|animal|animate being|beast|brute|creature|fauna +puree|2 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(verb)|strain|rub +purely|1 +(adv)|strictly +pureness|1 +(noun)|purity|condition|status +purgation|3 +(noun)|catharsis|katharsis|purge|purging +(noun)|purification|ceremony +(noun)|purge|purging|clearing +purgative|2 +(adj)|cathartic|evacuant|laxative +(noun)|cathartic|physic|aperient|medicine|medication|medicament|medicinal drug +purgatorial|2 +(adj)|purging|purifying|clearing +(adj)|imaginary place|mythical place +purgatory|2 +(noun)|situation +(noun)|imaginary place|mythical place +purge|9 +(noun)|purging|purgation|clearing +(noun)|purging|cleaning|cleansing|cleanup +(verb)|persecute|oppress +(verb)|acquit|assoil|clear|discharge|exonerate|exculpate +(verb)|purify|sanctify|change|alter|modify +(verb)|purify|sublimate|make pure|distill +(verb)|flush|scour|rinse|rinse off +(verb)|vomit|vomit up|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +(verb)|treat|care for +purging|3 +(adj)|purgatorial|purifying|clearing +(noun)|purge|cleaning|cleansing|cleanup +(noun)|purge|purgation|clearing +purging cassia|1 +(noun)|golden shower tree|drumstick tree|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia +purification|4 +(noun)|cleaning|cleansing|cleanup +(noun)|refining|refinement|processing +(noun)|purgation|ceremony +(noun)|purge|purging|purgation +purified|1 +(adj)|refined|sublimate|pure +purifier|1 +(noun)|apparatus|setup +purify|3 +(verb)|sublimate|make pure|distill|better|improve|amend|ameliorate|meliorate +(verb)|purge|sanctify|change|alter|modify +(verb)|change +purifying|3 +(adj)|purgatorial|purging|clearing +(adj)|purifying |ablutionary|cleansing|detergent|detersive|antiseptic +(adj)|cleansing|antiseptic +purim|1 +(noun)|Purim|Jewish holy day +purine|2 +(noun)|base|alkali +(noun)|base|alkali +purinethol|1 +(noun)|mercaptopurine|Purinethol|antimetabolite|immunosuppressant|immunosuppressive drug|immune suppressant drug +purist|1 +(noun)|pedant|bookworm|scholastic +puritan|3 +(adj)|blue|puritanic|puritanical|nonindulgent +(noun)|abstainer|ascetic +(noun)|prude|unpleasant person|disagreeable person +puritanic|1 +(adj)|blue|puritan|puritanical|nonindulgent +puritanical|3 +(adj)|abstainer|ascetic|Protestantism +(adj)|priggish|prim|prissy|prudish|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +(adj)|blue|puritan|puritanic|nonindulgent +puritanically|1 +(adv)|prudishly +puritanism|2 +(noun)|Puritanism|Protestantism +(noun)|Puritanism|sternness|strictness +purity|3 +(noun)|pureness|condition|status +(noun)|sinlessness|innocence|condition|status +(noun)|honor|honour|virtue|chastity|sexual morality +purkinje|1 +(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist +purkinje's system|1 +(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle|heart muscle +purkinje's tissue|1 +(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle|heart muscle +purkinje cell|1 +(noun)|Purkinje cell|brain cell +purkinje fiber|1 +(noun)|Purkinje fiber|cardiac muscle|heart muscle +purkinje network|1 +(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle|heart muscle +purl|7 +(noun)|thread|yarn +(noun)|purl stitch|knitting stitch +(verb)|eddy|whirlpool|swirl|whirl|run|flow|feed|course +(verb)|make noise|resound|noise +(verb)|knit +(verb)|embroider|broider +(verb)|embroider|broider +purl stitch|2 +(noun)|purl|knitting stitch +(verb)|knit|entwine +purloin|1 +(verb)|pilfer|cabbage|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal +purloined|1 +(adj)|stolen|taken +purloo|1 +(noun)|chicken purloo|poilu|stew +purple|7 +(adj)|violet|purplish|chromatic +(adj)|embellished|empurpled|over-embellished|rhetorical +(adj)|imperial|majestic|regal|royal|noble +(noun)|purpleness|empurpled|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|nobility|noblesse +(verb)|discolor|discolour|colour|color +(verb)|empurple|purpurate|color|colorize|colorise|colourise|colourize|colour|color in|colour in +purple-flowering raspberry|1 +(noun)|flowering raspberry|Rubus odoratus|thimbleberry|raspberry|raspberry bush +purple-fringed orchid|2 +(noun)|purple-fringed orchis|Habenaria psycodes|fringed orchis|fringed orchid +(noun)|purple-fringed orchis|Habenaria fimbriata|fringed orchis|fringed orchid +purple-fringed orchis|2 +(noun)|purple-fringed orchid|Habenaria psycodes|fringed orchis|fringed orchid +(noun)|purple-fringed orchid|Habenaria fimbriata|fringed orchis|fringed orchid +purple-hooded orchis|1 +(noun)|showy orchis|purple orchis|Orchis spectabilis|orchis +purple-staining cortinarius|1 +(noun)|Cortinarius mutabilis|purple-staining Cortinarius|agaric +purple-stemmed aster|1 +(noun)|aster +purple amaranth|1 +(noun)|prince's-feather|gentleman's-cane|prince's-plume|red amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +purple anise|1 +(noun)|Illicium floridanum|anise tree +purple apricot|1 +(noun)|black apricot|Prunus dasycarpa|apricot|apricot tree +purple avens|2 +(noun)|prairie smoke|Geum triflorum|avens +(noun)|water avens|Indian chocolate|chocolate root|Geum rivale|avens +purple bacteria|1 +(noun)|phototrophic bacteria|phototropic bacteria +purple beech|1 +(noun)|copper beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech|beech tree +purple boneset|1 +(noun)|Joe-Pye weed|trumpet weed|marsh milkweed|Eupatorium purpureum|herb|herbaceous plant +purple chinese houses|1 +(noun)|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower|wild flower +purple clematis|1 +(noun)|purple virgin's bower|mountain clematis|Clematis verticillaris|clematis +purple clover|1 +(noun)|red clover|Trifolium pratense|clover|trefoil +purple cress|1 +(noun)|Cardamine douglasii|bittercress|bitter cress +purple emperor|1 +(noun)|Apatura iris|emperor butterfly|emperor +purple finch|1 +(noun)|Carpodacus purpureus|finch +purple fringeless orchid|1 +(noun)|purple fringeless orchis|Habenaria peramoena|fringed orchis|fringed orchid +purple fringeless orchis|1 +(noun)|purple fringeless orchid|Habenaria peramoena|fringed orchis|fringed orchid +purple gallinule|1 +(noun)|gallinule|marsh hen|water hen|swamphen +purple grackle|1 +(noun)|Quiscalus quiscula|grackle|crow blackbird +purple granadillo|1 +(noun)|granadilla|Passiflora edulis|passionflower|passionflower vine +purple ground cherry|2 +(noun)|tomatillo|miltomate|jamberry|Physalis philadelphica|ground cherry|husk tomato +(noun)|cape gooseberry|Physalis peruviana|ground cherry|husk tomato +purple heart|2 +(noun)|Order of the Purple Heart|Purple Heart|decoration|laurel wreath|medal|medallion|palm|ribbon +(noun)|sodium thiopental|phenobarbital|phenobarbitone|Luminal|barbiturate +purple heather|1 +(noun)|Brewer's mountain heather|Phyllodoce breweri|heath +purple loco|1 +(noun)|purple locoweed|Oxytropis lambertii|locoweed|crazyweed|crazy weed +purple locoweed|1 +(noun)|purple loco|Oxytropis lambertii|locoweed|crazyweed|crazy weed +purple loosestrife|1 +(noun)|spiked loosestrife|Lythrum salicaria|loosestrife +purple martin|1 +(noun)|Progne subis|martin +purple milk vetch|1 +(noun)|Astragalus danicus|milk vetch|milk-vetch +purple mullein|1 +(noun)|Verbascum phoeniceum|mullein|flannel leaf|velvet plant +purple nightshade|1 +(noun)|trompillo|white horse nettle|prairie berry|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +purple onion|1 +(noun)|red onion|Spanish onion +purple orchis|1 +(noun)|showy orchis|purple-hooded orchis|Orchis spectabilis|orchis +purple osier|1 +(noun)|purple willow|red willow|red osier|basket willow|Salix purpurea|osier +purple passage|1 +(noun)|passage +purple pea|1 +(noun)|hovea|shrub|bush +purple poppy mallow|1 +(noun)|Callirhoe involucrata|poppy mallow +purple rock brake|1 +(noun)|Pellaea atropurpurea|cliff brake|cliff-brake|rock brake +purple sage|1 +(noun)|chaparral sage|Salvia leucophylla|sage|salvia +purple sanicle|1 +(noun)|Sanicula bipinnatifida|sanicle|snakeroot +purple saxifrage|1 +(noun)|Saxifraga oppositifolia|saxifrage|breakstone|rockfoil +purple silkweed|1 +(noun)|Asclepias purpurascens|milkweed|silkweed +purple strawberry guava|1 +(noun)|cattley guava|Psidium cattleianum|Psidium littorale longipes|fruit tree +purple trillium|1 +(noun)|red trillium|birthroot|Trillium erectum|trillium|wood lily|wake-robin +purple velvet plant|1 +(noun)|velvet plant|royal velvet plant|Gynura aurantiaca|houseplant +purple virgin's bower|1 +(noun)|purple clematis|mountain clematis|Clematis verticillaris|clematis +purple willow|1 +(noun)|red willow|red osier|basket willow|purple osier|Salix purpurea|osier +purpleness|1 +(noun)|purple|empurpled|chromatic color|chromatic colour|spectral color|spectral colour +purplish|1 +(adj)|purple|violet|chromatic +purplish blue|1 +(noun)|royal blue|blue|blueness +purplish pink|1 +(noun)|solferino|pink +purplish red|1 +(noun)|red|redness +purport|4 +(noun)|intent|spirit|meaning|significance|signification|import +(noun)|drift|tenor|strain +(verb)|claim +(verb)|aim|purpose|propose|intend|mean|think +purported|1 +(adj)|putative|reputed|supposed|acknowledged +purportedly|1 +(adv)|supposedly +purpose|5 +(noun)|intent|intention|aim|design|goal|end +(noun)|function|role|use|utility|usefulness +(noun)|determination|resoluteness|firmness|resolve|resolution +(verb)|aim|purport|propose|intend|mean|think +(verb)|resolve|decide|make up one's mind|determine +purpose-built|1 +(adj)|purpose-made|purposeful +purpose-made|1 +(adj)|purpose-built|purposeful +purposeful|2 +(adj)|purposeful |businesslike|earnest|goal-directed|purposive|leading|purpose-built|purpose-made|meaningful|resolute +(adj)|meaningful +purposeless|2 +(adj)|purposeless |adrift|afloat|aimless|directionless|planless|rudderless|undirected|desultory|meaningless|nonmeaningful +(adj)|pointless|senseless|meaningless |nonmeaningful +purposelessness|1 +(noun)|aimlessness|meaninglessness +purposely|1 +(adv)|intentionally|deliberately|designedly|on purpose|advisedly|by choice|by design +purposive|2 +(adj)|nonrandom +(adj)|goal-directed|purposeful +purpura|1 +(noun)|peliosis|blood disease|blood disorder +purpura hemorrhagica|1 +(noun)|thrombocytopenic purpura|idiopathic thrombocytopenic purpura|Werlhof's disease|purpura|peliosis|autoimmune disease|autoimmune disorder +purpurate|1 +(verb)|purple|empurple|color|colorize|colorise|colourise|colourize|colour|color in|colour in +purr|3 +(noun)|sound +(verb)|whizz|whiz|whirr|whir|birr|sound|go +(verb)|make vibrant sounds|resonate|vibrate +purse|6 +(noun)|bag|handbag|pocketbook|container +(noun)|sum|sum of money|amount|amount of money +(noun)|bag +(noun)|sum|sum of money|amount|amount of money +(verb)|round|round out|round off +(verb)|wrinkle|contract +purse-proud|1 +(adj)|proud +purse-string operation|1 +(noun)|Shirodkar's operation|operation|surgery|surgical operation|surgical procedure|surgical process +purse seine|1 +(noun)|seine +purse string|1 +(noun)|drawstring|drawing string|string +purser|1 +(noun)|officer|ship's officer +purslane|1 +(noun)|herb|herbaceous plant +purslane family|1 +(noun)|Portulacaceae|family Portulacaceae|caryophylloid dicot family +purslane speedwell|1 +(noun)|Veronica peregrina|veronica|speedwell +pursuance|2 +(noun)|pursuit|quest|search +(noun)|prosecution|continuance|continuation +pursuant|1 +(adj)|consistent +pursue|4 +(verb)|prosecute|engage|act|move +(verb)|follow|travel|go|move|locomote +(verb)|quest for|go after|quest after|search|seek|look for +(verb)|follow up on|act on|react|oppose +pursued|2 +(adj)|travel|go|move|locomote +(noun)|chased|hunted person +pursuer|2 +(noun)|chaser|follower +(noun)|person|individual|someone|somebody|mortal|human|soul +pursuing|1 +(adj)|following +pursuit|3 +(noun)|chase|following|motion|movement|move +(noun)|pursuance|quest|search +(noun)|pastime|interest|diversion|recreation +pursy|1 +(adj)|blown|gasping|out of breath|panting|short-winded|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +purulence|2 +(noun)|purulency|symptom +(noun)|pus|suppuration|ichor|sanies|festering|liquid body substance|bodily fluid|body fluid|humor|humour +purulency|1 +(noun)|purulence|symptom +purulent|1 +(adj)|infected|pussy|putrid|septic +purulent pleurisy|1 +(noun)|pleurisy|empyema +purus|1 +(noun)|Purus|Purus River|river +purus river|1 +(noun)|Purus|Purus River|river +purvey|1 +(verb)|provision|supply|provide|render|furnish +purveyance|1 +(noun)|provision|supply|supplying +purveyor|1 +(noun)|supplier|provider +purview|1 +(noun)|horizon|view|scope|range|reach|orbit|compass|ambit +pus|3 +(noun)|Pus|Pansa|Hindu calendar month +(noun)|purulence|suppuration|ichor|sanies|festering|liquid body substance|bodily fluid|body fluid|humor|humour +(noun)|plutonium|Pu|atomic number 94|chemical element|element +pusan|1 +(noun)|Pusan|city|metropolis|urban center|port +pusey|1 +(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian|theologist|theologizer|theologiser +puseyism|1 +(noun)|Tractarianism|Puseyism|Christianity|Christian religion +push|15 +(noun)|pushing|propulsion|actuation +(noun)|thrust|force +(noun)|energy|get-up-and-go|drive +(noun)|push button|button|switch|electric switch|electrical switch +(noun)|progress|progression|procession|advance|advancement|forward motion|onward motion +(verb)|force|move|displace +(verb)|bear on|urge|urge on|press|exhort +(verb)|advertise|advertize|promote|praise +(verb)|tug|labor|labour|drive|fight|struggle|push on +(verb)|press +(verb)|crowd|approach|near|come on|go up|draw near|draw close|come near +(verb)|crusade|fight|press|campaign|agitate|advertise|advertize|promote +(verb)|deal|sell|trade +(verb)|travel|go|move|locomote +(verb)|press|force +push-bike|1 +(noun)|bicycle|bike|wheel|cycle +push-button radio|1 +(noun)|radio receiver|receiving set|radio set|radio|tuner|wireless +push-down list|1 +(noun)|push-down stack|stack|list|listing +push-down queue|1 +(noun)|queue +push-down stack|1 +(noun)|push-down list|stack|list|listing +push-down storage|1 +(noun)|push-down store|stack|memory device|storage device +push-down store|1 +(noun)|push-down storage|stack|memory device|storage device +push around|1 +(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|hector|intimidate +push aside|2 +(verb)|push away|push|force +(verb)|dismiss|disregard|brush aside|brush off|discount|ignore|reject +push away|1 +(verb)|push aside|push|force +push back|2 +(noun)|rollback|offense|offence|offensive +(verb)|repel|drive|repulse|force back|beat back|push|force +push broom|1 +(noun)|broom +push button|1 +(noun)|push|button|switch|electric switch|electrical switch +push down|1 +(verb)|down|knock down|cut down|pull down|strike +push forward|1 +(verb)|barge|thrust ahead|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +push on|1 +(verb)|press on|plough on|advance|progress|pass on|move on|march on|go on +push out|1 +(verb)|obtrude|thrust out|push|force +push through|1 +(verb)|erupt|come out|break through|appear +push up|2 +(verb)|push|force +(verb)|thrust|stick out|protrude|jut out|jut|project +pushan|1 +(noun)|Pushan|Hindu deity +pushball|1 +(noun)|field game +pushcart|1 +(noun)|handcart|cart|go-cart|wheeled vehicle +pushchair|1 +(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|go-cart|pusher|wheeled vehicle +pusher|5 +(noun)|thruster|intruder|interloper|trespasser +(noun)|drug peddler|peddler|drug dealer|drug trafficker|dealer|criminal|felon|crook|outlaw|malefactor +(noun)|shover|mover +(noun)|zori|sandal +(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|go-cart|pushchair|wheeled vehicle +pushful|1 +(adj)|aggressive|enterprising|pushing|pushy|ambitious +pushiness|1 +(noun)|bumptiousness|cockiness|forwardness|assertiveness|self-assertiveness +pushing|2 +(adj)|aggressive|enterprising|pushful|pushy|ambitious +(noun)|push|propulsion|actuation +pushkin|1 +(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet +pushover|2 +(noun)|flunky|flunkey|stooge|yes-man +(noun)|cinch|breeze|picnic|snap|duck soup|child's play|walkover|piece of cake|undertaking|project|task|labor +pushpin|1 +(noun)|thumbtack|drawing pin|tack|paper fastener +pushtun|1 +(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan|Afghanistani +pushup|1 +(noun)|press-up|arm exercise +pushy|1 +(adj)|aggressive|enterprising|pushful|pushing|ambitious +pusillanimity|1 +(noun)|pusillanimousness|fearfulness +pusillanimous|1 +(adj)|poor-spirited|unmanly|cowardly |fearful +pusillanimously|1 +(adv)|simperingly +pusillanimousness|1 +(noun)|pusillanimity|fearfulness +pusly|1 +(noun)|common purslane|pussley|verdolagas|Portulaca oleracea|purslane +puss|2 +(noun)|cunt|pussy|slit|snatch|twat|female genitalia|female genitals|female genital organ|fanny +(noun)|kitty|kitty-cat|pussy|pussycat|domestic cat|house cat|Felis domesticus|Felis catus +pussley|1 +(noun)|common purslane|pusly|verdolagas|Portulaca oleracea|purslane +pussy|3 +(adj)|infected|purulent|putrid|septic +(noun)|cunt|puss|slit|snatch|twat|female genitalia|female genitals|female genital organ|fanny +(noun)|kitty|kitty-cat|puss|pussycat|domestic cat|house cat|Felis domesticus|Felis catus +pussy's-paw|1 +(noun)|pussy-paw|pussy-paws|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +pussy-paw|1 +(noun)|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +pussy-paws|2 +(noun)|pussy-paw|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +(noun)|pussy-paw|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +pussy willow|2 +(noun)|Salix discolor|willow|willow tree +(noun)|goat willow|florist's willow|Salix caprea|sallow +pussycat|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|kitty|kitty-cat|puss|pussy|domestic cat|house cat|Felis domesticus|Felis catus +pussyfoot|1 +(verb)|sneak|mouse|creep|steal|walk +pussytoes|1 +(noun)|cat's foot|cat's feet|Antennaria dioica|herb|herbaceous plant +pustulate|1 +(adj)|acned|pimpled|pimply|blemished +pustule|1 +(noun)|pimple|hickey|blister|bulla|bleb +put|10 +(noun)|put option|option +(verb)|set|place|pose|position|lay|move|displace|put over|put back|put back|put off|put down|put away|put together|put on|put up|put down|put across +(verb)|change|alter|modify|put off|put down|put off|put out|put to sleep|put out|put under|put away|put through|put to sleep|put up|put through|put out +(verb)|frame|redact|cast|couch|give voice|formulate|word|phrase|articulate +(verb)|assign|use|utilize|utilise|apply|employ +(verb)|invest|commit|place|spend|expend|drop +(verb)|place|set|estimate|gauge|approximate|guess|judge +(verb)|subject +(verb)|arrange|set +(verb)|arrange|set up|order|organize|organise +put-down|1 +(noun)|squelch|squelcher|takedown|derision +put-on|3 +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|caricature|imitation|impersonation +(noun)|fraud|fraudulence|dupery|hoax|humbug|trickery|chicanery|chicane|guile|wile|shenanigan +(noun)|antic|joke|prank|trick|caper|diversion|recreation +put-put|1 +(noun)|gasoline engine +put-up|1 +(adj)|planned +put-upon|1 +(adj)|exploited|ill-used|used|victimized|victimised|misused +put across|1 +(verb)|communicate|pass on|pass|convey|transmit|communicate +put away|6 +(verb)|lock in|lock away|lock|shut up|shut away|lock up|confine +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|get rid of|remove +(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|gaol|remand|confine|detain +(verb)|put to sleep|kill +(verb)|tuck in|tuck away|eat up|finish|polish off +(verb)|interrupt|disrupt|break up|cut off +put back|2 +(verb)|replace|put|set|place|pose|position|lay +(verb)|set back|knock back|cost|be +put behind bars|1 +(verb)|imprison|incarcerate|lag|immure|jail|jug|gaol|put away|remand|confine|detain +put differently|1 +(adv)|in other words +put down|7 +(verb)|set down|place down|put|set|place|pose|position|lay +(verb)|lay|repose|put|set|place|pose|position|lay|put +(verb)|land|bring down|arrive|get|come +(verb)|take down|degrade|disgrace|demean|humiliate|mortify|chagrin|humble|abase +(verb)|drop|set down|unload|discharge|deliver +(verb)|write down|set down|get down|write +(verb)|record|enter|save|preserve +put forward|5 +(verb)|submit|state|posit|propose|suggest|advise +(verb)|assert|behave|acquit|bear|deport|conduct|comport|carry +(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|call forth|make|create +(verb)|stick|put|set|place|pose|position|lay +(verb)|nominate|put up|nominate|propose +put in|7 +(verb)|insert|enclose|inclose|stick in|introduce|put|set|place|pose|position|lay +(verb)|spend|pass +(verb)|store|hive away|lay in|salt away|stack away|stash away|keep|hold on +(verb)|chime in|cut in|butt in|chisel in|barge in|break in|interrupt|disrupt|break up|cut off +(verb)|install|instal|set up|put|set|place|pose|position|lay +(verb)|submit|apply +(verb)|interject|come in|interpose|throw in|inject|interrupt|disrupt|break up|cut off +put off|5 +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|delay +(verb)|turn off|repel|repulse +(verb)|dishearten|discourage +(verb)|confuse|flurry|disconcert|embarrass|abash +(verb)|hedge|fudge|evade|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid +put on|10 +(adj)|assumed|false|fictitious|fictive|pretended|sham|counterfeit |imitative +(verb)|wear|get into|don|assume|dress|get dressed +(verb)|add +(verb)|cook|fix|ready|make|prepare +(verb)|turn in|make|create +(verb)|add +(verb)|mount|organize|organise|prepare|devise|get up|machinate +(verb)|apply|cover +(verb)|gull|dupe|slang|befool|cod|fool|take in|put one over|put one across|deceive|betray|lead astray +(verb)|gain|change state|turn +put on airs|1 +(verb)|lord it over|queen it over|act superior|act|move +put on the line|1 +(verb)|risk|lay on the line|try|seek|attempt|essay|assay +put one across|1 +(verb)|gull|dupe|slang|befool|cod|fool|put on|take in|put one over|deceive|betray|lead astray +put one over|1 +(verb)|gull|dupe|slang|befool|cod|fool|put on|take in|put one across|deceive|betray|lead astray +put option|2 +(noun)|stock option +(noun)|put|option +put out|10 +(verb)|trouble|inconvenience|disoblige|discommode|incommode|bother|affect|impact|bear upon|bear on|touch on|touch +(verb)|produce|make|create +(verb)|smother|snuff out|extinguish +(verb)|exsert|stretch out|extend|hold out|stretch forth|gesticulate|gesture|motion +(verb)|douse|snuff out|blow out|extinguish|quench +(verb)|be +(verb)|retire|toy|fiddle|diddle|play +(verb)|play +(verb)|publish|bring out|issue|release|publicize|publicise|air|bare +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|drug|dose +put out feelers|1 +(verb)|explore +put over|2 +(verb)|get across|communicate|pass on|pass|put across +(verb)|postpone|prorogue|hold over|table|shelve|set back|defer|remit|put off|delay +put right|1 +(verb)|iron out|straighten out|better|improve|amend|ameliorate|meliorate +put through|2 +(verb)|follow through|follow up|follow out|carry out|implement|go through|complete|finish +(verb)|connect|link|tie|link up +put to death|1 +(verb)|execute|kill|punish|penalize|penalise +put to sleep|3 +(verb)|put +(verb)|put away|kill +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put under|put out|drug|dose +put to work|1 +(verb)|work|use|utilize|utilise|apply|employ +put together|2 +(verb)|assemble|piece|set up|tack|tack together|join|bring together|make|create +(adv)|jointly|collectively|conjointly|together +put under|1 +(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put out|drug|dose +put up|8 +(verb)|post|install|instal|put in|set up +(verb)|provide|offer|engage|wage +(verb)|raise|erect|rear|set up|construct|build|make +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|permit|allow|let|countenance +(verb)|contribute|pay +(verb)|can|tin|preserve|keep +(verb)|house|domiciliate|shelter +(verb)|nominate|put forward|nominate|propose +putamen|1 +(noun)|basal ganglion +putative|1 +(adj)|purported|reputed|supposed|acknowledged +putdownable|1 +(adj)|uninteresting +putin|1 +(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman|solon|national leader +putoff|1 +(noun)|pretext|stalking-horse +putout|1 +(noun)|out +putrefacient|1 +(adj)|putrefactive|septic +putrefaction|2 +(noun)|rot|decay +(noun)|decomposition|rot|rotting|decay +putrefactive|1 +(adj)|putrefacient|septic +putrefiable|1 +(adj)|decayable|putrescible|spoilable|perishable +putrefied|1 +(adj)|putrified|putrid|rotten +putrefy|1 +(verb)|decay +putrescence|2 +(noun)|putridness|rottenness|corruption|putrefaction|rot +(noun)|rottenness|unwholesomeness|morbidness|morbidity +putrescent|1 +(adj)|rotten +putrescible|1 +(adj)|decayable|putrefiable|spoilable|perishable +putrescine|1 +(noun)|ptomaine|ptomain +putrid|5 +(adj)|decay +(adj)|infected|purulent|pussy|septic +(adj)|putrefied|putrified|rotten +(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|stinking|malodorous |malodourous +(adj)|corrupt +putridity|1 +(noun)|impurity|impureness +putridness|1 +(noun)|putrescence|rottenness|corruption|putrefaction|rot +putrified|1 +(adj)|putrefied|putrid|rotten +putsch|1 +(noun)|coup d'etat|coup|takeover|group action +putt|3 +(noun)|putting|golf stroke|golf shot|swing +(verb)|hit +(verb)|play +puttee|1 +(noun)|puttees|legging|legin|leg covering +puttees|2 +(noun)|puttee|legging|legin|leg covering +(noun)|puttee|legging|legin|leg covering +putter|5 +(noun)|golfer|golf player|linksman +(noun)|putting iron|iron +(verb)|potter|busy|occupy +(verb)|mess around|potter|tinker|monkey|monkey around|muck about|muck around|work +(verb)|potter|potter around|putter around|move +putter around|1 +(verb)|putter|potter|potter around|move +putterer|1 +(noun)|potterer|dawdler|drone|laggard|lagger|trailer +putting|1 +(noun)|putt|golf stroke|golf shot|swing +putting green|1 +(noun)|green|site|land site +putting iron|1 +(noun)|putter|iron +putting to death|1 +(noun)|killing|kill|termination|ending|conclusion +putty|2 +(noun)|cement|filler +(verb)|put on|apply +putty knife|1 +(noun)|spatula +puttyroot|1 +(noun)|adam-and-eve|Aplectrum hyemale|orchid|orchidaceous plant +putz|2 +(noun)|fool|sap|saphead|muggins|tomfool +(noun)|cock|prick|dick|shaft|pecker|peter|tool|penis|phallus|member +puzzle|4 +(noun)|puzzler|mystifier|teaser|problem +(noun)|plaything|toy +(verb)|perplex|vex|stick|get|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate|puzzle over|puzzle out +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +puzzle out|1 +(verb)|solve|work out|figure out|lick|work|understand +puzzle over|1 +(verb)|think|cogitate|cerebrate +puzzled|1 +(adj)|at a loss|nonplused|nonplussed|perplexed +puzzlement|1 +(noun)|bewilderment|obfuscation|befuddlement|mystification|bafflement|bemusement|confusion|mental confusion|confusedness|disarray +puzzler|1 +(noun)|puzzle|mystifier|teaser|problem +puzzling|2 +(adj)|enigmatic|enigmatical|incomprehensible |uncomprehensible +(adj)|confusing|perplexing|unclear +pva|1 +(noun)|polyvinyl acetate|PVA|vinyl polymer|vinyl resin|polyvinyl resin +pvc|2 +(noun)|polyvinyl chloride|PVC|vinyl polymer|vinyl resin|polyvinyl resin +(noun)|premature ventricular contraction|PVC|cardiac arrhythmia|arrhythmia +pwr|1 +(noun)|pressurized water reactor|PWR|water-cooled reactor +px|1 +(noun)|post exchange|PX|commissary +pya|1 +(noun)|Myanmar monetary unit +pyaemia|1 +(noun)|pyemia|blood poisoning|septicemia|septicaemia +pyaemic|1 +(adj)|pyemic|blood poisoning|septicemia|septicaemia +pycnanthemum|1 +(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus +pycnanthemum virginianum|1 +(noun)|basil mint|Pycnanthemum virginianum|mountain mint +pycnidium|1 +(noun)|plant part|plant structure +pycnodysostosis|1 +(noun)|dwarfism|nanism +pycnogonid|1 +(noun)|sea spider|arthropod +pycnogonida|1 +(noun)|Pycnogonida|order Pycnogonida|animal order +pycnosis|1 +(noun)|pyknosis|disease +pycnotic|1 +(adj)|pyknotic|disease +pydna|1 +(noun)|Pydna|Battle of Pydna|pitched battle +pye-dog|1 +(noun)|pariah dog|pie-dog|cur|mongrel|mutt +pyelogram|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph +pyelography|1 +(noun)|roentgenography|X-ray photography +pyelonephritis|1 +(noun)|urinary tract infection +pyemia|1 +(noun)|pyaemia|blood poisoning|septicemia|septicaemia +pyemic|1 +(adj)|pyaemic|blood poisoning|septicemia|septicaemia +pygmalion|1 +(noun)|Pygmalion|mythical being +pygmy|2 +(noun)|pigmy|small person +(noun)|Pygmy|Pigmy|small person +pygmy chimpanzee|1 +(noun)|bonobo|Pan paniscus|chimpanzee|chimp|Pan troglodytes +pygmy cypress|1 +(noun)|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress|cypress tree +pygmy marmoset|1 +(noun)|Cebuella pygmaea|marmoset +pygmy mouse|1 +(noun)|Baiomys taylori|wood mouse +pygmy sperm whale|1 +(noun)|Kogia breviceps|toothed whale +pygopodidae|1 +(noun)|Pygopodidae|family Pygopodidae|reptile family +pygopus|1 +(noun)|Pygopus|genus Pygopus|reptile genus +pygoscelis|1 +(noun)|Pygoscelis|genus Pygoscelis|bird genus +pygoscelis adeliae|1 +(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin +pyinma|1 +(noun)|wood +pyjama|1 +(noun)|trousers|pants +pyjamas|3 +(noun)|pajamas|trousers|pants +(noun)|pajamas|pj's|jammies|nightclothes|nightwear +(noun)|pyjama|trousers|pants +pyknic|1 +(adj)|endomorphic |fat|rounded|fat +pyknic type|1 +(noun)|endomorphy|body type|somatotype +pyknosis|1 +(noun)|pycnosis|disease +pyknotic|1 +(adj)|pycnotic|disease +pylodictus|1 +(noun)|Pylodictus|genus Pylodictus|fish genus +pylodictus olivaris|1 +(noun)|flathead catfish|mudcat|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish|siluriform fish +pylon|2 +(noun)|tower +(noun)|power pylon|tower +pyloric|1 +(adj)|orifice|opening|porta +pyloric sphincter|1 +(noun)|pyloric valve|musculus sphincter pylori|sphincter|anatomical sphincter|sphincter muscle +pyloric stenosis|1 +(noun)|stenosis|stricture +pyloric valve|1 +(noun)|pyloric sphincter|musculus sphincter pylori|sphincter|anatomical sphincter|sphincter muscle +pyloric vein|1 +(noun)|right gastric vein|vena gastrica-dextra|gastric vein|vena gastrica +pylorus|1 +(noun)|orifice|opening|porta +pynchon|1 +(noun)|Pynchon|Thomas Pynchon|writer|author +pyocyanase|1 +(noun)|antibiotic|antibiotic drug +pyocyanin|1 +(noun)|antibiotic|antibiotic drug +pyogenic|1 +(adj)|pathology +pyongyang|1 +(noun)|Pyongyang|capital of North Korea|national capital +pyorrhea|2 +(noun)|pyorrhoea|pathology +(noun)|pyorrhoea|pyorrhea alveolaris|Riggs' disease|periodontal disease|periodontitis +pyorrhea alveolaris|1 +(noun)|pyorrhea|pyorrhoea|Riggs' disease|periodontal disease|periodontitis +pyorrhoea|2 +(noun)|pyorrhea|pathology +(noun)|pyorrhea|pyorrhea alveolaris|Riggs' disease|periodontal disease|periodontitis +pyotr alexeyevich kropotkin|1 +(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist|nihilist|syndicalist +pyotr ilych tchaikovsky|1 +(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer +pyotr tchaikovsky|1 +(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer +pyracanth|1 +(noun)|Pyracantha|fire thorn|firethorn|shrub|bush +pyracantha|1 +(noun)|Pyracantha|pyracanth|fire thorn|firethorn|shrub|bush +pyralid|1 +(noun)|pyralid moth|moth +pyralid moth|1 +(noun)|pyralid|moth +pyralidae|1 +(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family +pyralididae|1 +(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family +pyralis|1 +(noun)|Pyralis|genus Pyralis|arthropod genus +pyramid|7 +(noun)|polyhedron +(noun)|speculation|venture +(noun)|Pyramid|Great Pyramid|memorial|monument +(verb)|profit|gain|benefit +(verb)|deal|sell|trade +(verb)|arrange|set up +(verb)|increase +pyramid bugle|1 +(noun)|Ajuga pyramidalis|bugle|bugleweed +pyramid plant|1 +(noun)|columbo|American columbo|deer's-ear|deer's-ears|American gentian|herb|herbaceous plant +pyramid scheme|1 +(noun)|scheme|strategy +pyramidal|1 +(adj)|pyramidic|pyramidical|pointed +pyramidal bone|1 +(noun)|triquetral|triquetral bone|os triquetrum|cuneiform bone|carpal bone|carpal|wrist bone +pyramidal motor system|1 +(noun)|pyramidal tract|corticospinal tract|motor nerve +pyramidal tent|1 +(noun)|tent|collapsible shelter +pyramidal tract|1 +(noun)|pyramidal motor system|corticospinal tract|motor nerve +pyramidic|1 +(adj)|pyramidal|pyramidical|pointed +pyramidical|1 +(adj)|pyramidal|pyramidic|pointed +pyramiding|1 +(noun)|swindle|cheat|rig +pyrausta|1 +(noun)|Pyrausta|genus Pyrausta|arthropod genus +pyrausta nubilalis|2 +(noun)|corn borer|Pyrausta nubilalis|caterpillar +(noun)|corn borer|European corn borer|corn borer moth|Pyrausta nubilalis|pyralid|pyralid moth +pyre|1 +(noun)|funeral pyre|pile|heap|mound|cumulus +pyrectic|2 +(adj)|substance|matter +(noun)|pyrogen|substance|matter +pyrene|2 +(noun)|hydrocarbon +(noun)|nutlet +pyrenees|1 +(noun)|Pyrenees|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +pyrenees daisy|1 +(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite|composite plant +pyrenomycetes|1 +(noun)|Pyrenomycetes|class Pyrenomycetes|class +pyrethrum|4 +(noun)|insecticide|insect powder +(noun)|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb|herbaceous plant +(noun)|painted daisy|Tanacetum coccineum|Chrysanthemum coccineum|flower +(noun)|Pyrethrum|genus Pyrethrum|asterid dicot genus +pyretic|1 +(adj)|pyretic +pyrex|1 +(noun)|Pyrex|glass +pyrexia|1 +(noun)|fever|febrility|febricity|feverishness|symptom +pyridine|1 +(noun)|base|alkali +pyridium|1 +(noun)|phenazopyridine|Pyridium|analgesic|anodyne|painkiller|pain pill +pyridoxal|1 +(noun)|vitamin B6|pyridoxine|pyridoxamine|adermin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +pyridoxamine|1 +(noun)|vitamin B6|pyridoxine|pyridoxal|adermin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +pyridoxine|1 +(noun)|vitamin B6|pyridoxal|pyridoxamine|adermin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +pyriform area|1 +(noun)|piriform area|pyriform lobe|piriform lobe|neural structure +pyriform lobe|1 +(noun)|pyriform area|piriform area|piriform lobe|neural structure +pyrilamine|1 +(noun)|antihistamine +pyrimidine|2 +(noun)|base|alkali +(noun)|organic compound +pyrite|1 +(noun)|iron pyrite|fool's gold|mineral +pyrites|2 +(noun)|sulfide|sulphide +(noun)|pyrite|iron pyrite|fool's gold|mineral +pyrocellulose|1 +(noun)|cellulose nitrate|nitrocellulose|guncotton|nitrocotton +pyrocephalus|1 +(noun)|Pyrocephalus|genus Pyrocephalus|bird genus +pyrocephalus rubinus mexicanus|1 +(noun)|vermillion flycatcher|firebird|Pyrocephalus rubinus mexicanus|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +pyrochemical|1 +(adj)|material|stuff +pyrochemical process|1 +(noun)|pyrochemistry|chemical process|chemical change|chemical action +pyrochemistry|1 +(noun)|pyrochemical process|chemical process|chemical change|chemical action +pyroelectric|1 +(adj)|pyroelectrical|electrical phenomenon +pyroelectrical|1 +(adj)|pyroelectric|electrical phenomenon +pyroelectricity|1 +(noun)|electrical phenomenon +pyrogallic|1 +(adj)|phenol +pyrogallic acid|1 +(noun)|pyrogallol|phenol +pyrogallol|1 +(noun)|pyrogallic acid|phenol +pyrogen|1 +(noun)|pyrectic|substance|matter +pyrogenetic|1 +(adj)|pyrogenic|pyrogenous|substance|matter +pyrogenic|2 +(adj)|pyrogenous|pyrogenetic|substance|matter +(adj)|igneous|pyrogenous|temperature +pyrogenous|2 +(adj)|pyrogenic|pyrogenetic|substance|matter +(adj)|igneous|pyrogenic|temperature +pyrograph|1 +(noun)|design|pattern|figure +pyrographer|1 +(noun)|artist|creative person +pyrographic|1 +(adj)|drawing|draftsmanship|drafting +pyrography|1 +(noun)|drawing|draftsmanship|drafting +pyrola|1 +(noun)|wintergreen|herb|herbaceous plant +pyrola americana|1 +(noun)|false wintergreen|Pyrola americana|Pyrola rotundifolia americana|wintergreen|pyrola +pyrola elliptica|1 +(noun)|wild lily of the valley|shinleaf|Pyrola elliptica|wintergreen|pyrola +pyrola minor|1 +(noun)|lesser wintergreen|Pyrola minor|wintergreen|pyrola +pyrola rotundifolia|1 +(noun)|wild lily of the valley|Pyrola rotundifolia|wintergreen|pyrola +pyrola rotundifolia americana|1 +(noun)|false wintergreen|Pyrola americana|Pyrola rotundifolia americana|wintergreen|pyrola +pyrola uniflora|1 +(noun)|one-flowered wintergreen|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb|herbaceous plant +pyrolaceae|1 +(noun)|Pyrolaceae|family Pyrolaceae|wintergreen family|dilleniid dicot family +pyrolatry|1 +(noun)|fire-worship|worship +pyroligneous|1 +(adj)|pyrolignic|transformation|transmutation|shift +pyroligneous acid|1 +(noun)|wood vinegar|liquid +pyrolignic|1 +(adj)|pyroligneous|transformation|transmutation|shift +pyrolusite|1 +(noun)|mineral +pyrolysis|1 +(noun)|transformation|transmutation|shift +pyrolytic|1 +(adj)|transformation|transmutation|shift +pyromancer|1 +(noun)|diviner +pyromancy|1 +(noun)|divination|foretelling|soothsaying|fortune telling +pyromania|1 +(noun)|mania|passion|cacoethes +pyromaniac|1 +(noun)|lunatic|madman|maniac +pyrometer|1 +(noun)|thermometer +pyrometric cone|1 +(noun)|pyrometer +pyromorphite|1 +(noun)|green lead ore|mineral +pyrope|1 +(noun)|garnet +pyrophobia|1 +(noun)|simple phobia +pyrophoric alloy|1 +(noun)|alloy|metal +pyrophorus|1 +(noun)|Pyrophorus|genus Pyrophorus|arthropod genus +pyrophorus noctiluca|1 +(noun)|firefly|fire beetle|Pyrophorus noctiluca|elaterid beetle|elater|elaterid +pyrophosphate|1 +(noun)|salt +pyrophosphoric acid|1 +(noun)|polyphosphoric acid +pyrophyllite|1 +(noun)|mineral +pyroscope|1 +(noun)|optical pyrometer|pyrometer +pyrosis|1 +(noun)|heartburn|symptom +pyrostat|1 +(noun)|thermostat|thermoregulator +pyrotechnic|3 +(adj)|pyrotechnical|trade|craft +(adj)|extraordinary +(noun)|firework|low explosive +pyrotechnical|1 +(adj)|pyrotechnic|trade|craft +pyrotechnics|3 +(noun)|brilliance|genius +(noun)|pyrotechny|trade|craft +(noun)|firework|pyrotechnic|low explosive +pyrotechny|1 +(noun)|pyrotechnics|trade|craft +pyroxene|1 +(noun)|mineral +pyroxylin|1 +(noun)|pyroxyline|cellulose nitrate|nitrocellulose|guncotton|nitrocotton +pyroxyline|1 +(noun)|pyroxylin|cellulose nitrate|nitrocellulose|guncotton|nitrocotton +pyrrhic|5 +(adj)|ritual dancing|ritual dance|ceremonial dance +(adj)|metrical foot|foot|metrical unit +(adj)|king|male monarch +(noun)|dibrach|metrical foot|foot|metrical unit +(noun)|ritual dancing|ritual dance|ceremonial dance +pyrrhic victory|1 +(noun)|Pyrrhic victory|victory|triumph +pyrrhocoridae|1 +(noun)|Pyrrhocoridae|family Pyrrhocoridae|arthropod family +pyrrhotine|1 +(noun)|pyrrhotite|magnetic pyrites|mineral +pyrrhotite|1 +(noun)|pyrrhotine|magnetic pyrites|mineral +pyrrhula|1 +(noun)|Pyrrhula|genus Pyrrhula|bird genus +pyrrhula pyrrhula|1 +(noun)|bullfinch|Pyrrhula pyrrhula|finch +pyrrhuloxia|1 +(noun)|Pyrrhuloxia sinuata|finch +pyrrhuloxia sinuata|1 +(noun)|pyrrhuloxia|Pyrrhuloxia sinuata|finch +pyrrhus|1 +(noun)|Pyrrhus|king|male monarch +pyrrophyta|1 +(noun)|Pyrrophyta|phylum Pyrrophyta|phylum +pyrrosia|1 +(noun)|Pyrrosia|genus Pyrrosia|fern genus +pyrrosia lingua|1 +(noun)|felt fern|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern +pyrularia|1 +(noun)|Pyrularia|genus Pyrularia|dilleniid dicot genus +pyrularia pubera|1 +(noun)|rabbitwood|buffalo nut|Pyrularia pubera|parasitic plant +pyrus|1 +(noun)|Pyrus|genus Pyrus|rosid dicot genus +pyrus communis|1 +(noun)|pear|pear tree|Pyrus communis|fruit tree +pyruvic acid|1 +(noun)|acid +pythagoras|1 +(noun)|Pythagoras|mathematician|philosopher +pythagorean|1 +(adj)|Pythagorean|mathematician|philosopher +pythia|1 +(noun)|Pythia|Pythoness|Greek deity +pythiaceae|1 +(noun)|Pythiaceae|family Pythiaceae|fungus family +pythian games|1 +(noun)|Pythian Games|agon +pythias|2 +(noun)|Phintias|Pythias|friend +(noun)|Pythia|Pythoness|Greek deity +pythium|1 +(noun)|fungus +pythium debaryanum|1 +(noun)|damping off fungus|Pythium debaryanum|pythium +pythius|1 +(noun)|Pythius|Apollo|Phoebus|Phoebus Apollo +python|3 +(noun)|boa +(noun)|spirit|disembodied spirit +(noun)|Python|mythical monster|mythical creature +python molurus|1 +(noun)|Indian python|Python molurus|python +python reticulatus|1 +(noun)|reticulated python|Python reticulatus|python +python sebae|1 +(noun)|rock python|rock snake|Python sebae|python +python variegatus|1 +(noun)|carpet snake|Python variegatus|Morelia spilotes variegatus|python +pythoness|2 +(noun)|witch +(noun)|Pythia|Pythoness|Greek deity +pythonidae|1 +(noun)|Pythonidae|family Pythonidae|reptile family +pythoninae|1 +(noun)|Pythoninae|subfamily Pythoninae|reptile family +pyuria|1 +(noun)|symptom +pyx|2 +(noun)|pix|pyx chest|pix chest|chest +(noun)|pix|receptacle +pyx chest|1 +(noun)|pyx|pix|pix chest|chest +pyxidanthera|1 +(noun)|Pyxidanthera|genus Pyxidanthera|dilleniid dicot genus +pyxidanthera barbulata|1 +(noun)|pyxie|pixie|pixy|Pyxidanthera barbulata|shrub|bush +pyxidium|1 +(noun)|pyxis|fruit +pyxie|1 +(noun)|pixie|pixy|Pyxidanthera barbulata|shrub|bush +pyxis|3 +(noun)|pyxidium|fruit +(noun)|Pyxis|constellation +(noun)|box +q|1 +(noun)|Q|letter|letter of the alphabet|alphabetic character +q fever|1 +(noun)|Q fever|rickettsial disease|rickettsiosis +qabala|1 +(noun)|cabala|cabbala|cabbalah|kabala|kabbala|kabbalah|qabalah|secret|arcanum +qabalah|1 +(noun)|cabala|cabbala|cabbalah|kabala|kabbala|kabbalah|qabala|secret|arcanum +qabalistic|1 +(adj)|cabalistic|kabbalistic|cryptic|cryptical|sibylline|esoteric +qabbala|1 +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +qabbalah|1 +(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy +qaddafi|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +qadhafi|1 +(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader +qadi|1 +(noun)|judge|justice|jurist|magistrate +qaeda|1 +(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization|terrorist group|foreign terrorist organization|FTO +qandahar|1 +(noun)|Kandahar|Qandahar|city|metropolis|urban center +qassam brigades|1 +(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization|terrorist group|foreign terrorist organization|FTO +qat|1 +(noun)|kat|khat|quat|cat|Arabian tea|African tea|stimulant|stimulant drug +qatar|2 +(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country|Asian nation +(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula +qatar peninsula|1 +(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula +qatari|2 +(adj)|Qatari|Katari|Asian country|Asian nation +(noun)|Qatari|Katari|Arab|Arabian +qatari dirham|1 +(noun)|Qatari dirham|dirham|Qatari monetary unit +qatari monetary unit|1 +(noun)|Qatari monetary unit|monetary unit +qatari riyal|1 +(noun)|Qatari riyal|riyal|Qatari monetary unit +qcd|1 +(noun)|quantum chromodynamics|QCD|quantum field theory +qed|1 +(noun)|quantum electrodynamics|QED|quantum field theory +qepiq|1 +(noun)|Azerbaijani monetary unit +qi|1 +(noun)|chi|ch'i|ki|energy|vim|vitality +qiang|1 +(noun)|Qiang|Qiangic|Tibeto-Burman|Tibeto-Burman language +qiangic|1 +(noun)|Qiang|Qiangic|Tibeto-Burman|Tibeto-Burman language +qibla|2 +(noun)|direction|way +(noun)|Qibla|terrorist organization|terrorist group|foreign terrorist organization|FTO +qindarka|1 +(noun)|qintar|Albanian monetary unit +qing|1 +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +qing dynasty|1 +(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty +qintar|1 +(noun)|qindarka|Albanian monetary unit +qoph|1 +(noun)|letter|letter of the alphabet|alphabetic character +quaalude|1 +(noun)|methaqualone|Quaalude|sedative-hypnotic|sedative-hypnotic drug +quack|5 +(adj)|unqualified +(noun)|doctor|doc|physician|MD|Dr.|medico|mountebank|charlatan +(noun)|sound +(verb)|utter|emit|let out|let loose +(verb)|act|behave|do +quack-quack|1 +(noun)|duck +quack grass|2 +(noun)|dog grass|couch grass|quackgrass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +(noun)| +quackery|2 +(noun)|empiricism|medical practice +(noun)|charlatanism|dishonesty|knavery +quackgrass|1 +(noun)|dog grass|couch grass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +quad|4 +(noun)|quadruplet|sibling|sib +(noun)|quadriceps|quadriceps femoris|musculus quadriceps femoris|extensor muscle|extensor +(noun)|space|type +(noun)|quadrangle|area +quadragesima|1 +(noun)|Quadragesima|Quadrigesima Sunday|Christian holy day +quadrangle|2 +(noun)|quadrilateral|tetragon|polygon|polygonal shape +(noun)|quad|area +quadrangular|1 +(adj)|polygon|polygonal shape +quadrangular prism|1 +(noun)|prism +quadrant|5 +(noun)|right angle|angular unit +(noun)|quarter-circle|line +(noun)|area|country +(noun)|area|country +(noun)|measuring instrument|measuring system|measuring device +quadrantanopia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +quadraphonic|1 +(adj)|quadriphonic|quadrasonic|quadrisonic|stereo|stereo system|stereophonic system +quadraphonic system|1 +(noun)|quadraphony|quadriphonic system|stereo|stereo system|stereophonic system +quadraphony|1 +(noun)|quadraphonic system|quadriphonic system|stereo|stereo system|stereophonic system +quadrasonic|1 +(adj)|quadraphonic|quadriphonic|quadrisonic|stereo|stereo system|stereophonic system +quadrate|3 +(adj)|square +(noun)|cube|regular hexahedron +(noun)|square|foursquare +quadratic|4 +(adj)|rectangle|regular polygon +(adj)|number +(noun)|quadratic equation|equation +(noun)|quadratic polynomial|polynomial|multinomial +quadratic equation|1 +(noun)|quadratic|equation +quadratic polynomial|1 +(noun)|quadratic|polynomial|multinomial +quadratics|3 +(noun)|algebra +(noun)|quadratic equation|quadratic|equation +(noun)|quadratic|quadratic polynomial|polynomial|multinomial +quadrature|1 +(noun)|construction +quadric|1 +(noun)|quadric surface|curve|curved shape +quadric surface|1 +(noun)|quadric|curve|curved shape +quadriceps|1 +(noun)|quadriceps femoris|musculus quadriceps femoris|quad|extensor muscle|extensor +quadriceps femoris|1 +(noun)|quadriceps|musculus quadriceps femoris|quad|extensor muscle|extensor +quadrigesima sunday|1 +(noun)|Quadragesima|Quadrigesima Sunday|Christian holy day +quadrilateral|2 +(adj)|four-sided|multilateral |many-sided +(noun)|quadrangle|tetragon|polygon|polygonal shape +quadrille|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|square dance|square dancing +quadrillion|2 +(noun)|large integer +(noun)|large integer +quadrillionth|1 +(noun)|one-quadrillionth|common fraction|simple fraction +quadripara|1 +(noun)|mother|female parent +quadripartite|1 +(adj)|four-party|multilateral |many-sided +quadriphonic|1 +(adj)|quadraphonic|quadrasonic|quadrisonic|stereo|stereo system|stereophonic system +quadriphonic system|1 +(noun)|quadraphony|quadraphonic system|stereo|stereo system|stereophonic system +quadriplegia|1 +(noun)|paralysis|palsy +quadriplegic|1 +(noun)|handicapped person +quadrisonic|1 +(adj)|quadraphonic|quadriphonic|quadrasonic|stereo|stereo system|stereophonic system +quadroon|1 +(noun)|Quadroon|mixed-blood +quadrumvirate|1 +(noun)|quartet|quartette|foursome +quadruped|2 +(adj)|quadrupedal |four-footed +(noun)|tetrapod +quadrupedal|1 +(adj)|quadrupedal |four-footed +quadruple|4 +(adj)|quadruplicate|quadruplex|fourfold|multiple +(adj)|fourfold|multiple +(noun)|multiple +(verb)|multiply|manifold +quadruple time|1 +(noun)|common time|four-four time|common measure|musical time +quadruplet|3 +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|foursome|Little Joe|digit|figure +(noun)|quad|sibling|sib +(noun)|quartet|quartette|set +quadruplex|1 +(adj)|quadruple|quadruplicate|fourfold|multiple +quadruplicate|3 +(adj)|quadruple|quadruplex|fourfold|multiple +(noun)|copy +(verb)|reproduce +quadrupling|1 +(noun)|multiplication +quaestor|1 +(noun)|official|functionary +quaff|2 +(noun)|draft|draught|potation|tipple +(verb)|gulp|swig|drink|imbibe +quaffer|1 +(noun)|drinker +quag|1 +(noun)|mire|quagmire|morass|bog|peat bog +quagga|1 +(noun)|Equus quagga|equine|equid +quaggy|1 +(adj)|boggy|marshy|miry|mucky|muddy|sloughy|swampy|wet +quagmire|1 +(noun)|mire|quag|morass|bog|peat bog +quahaug|2 +(noun)|quahog|hard-shell clam|round clam|clam +(noun)|quahog|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam +quahog|2 +(noun)|quahaug|hard-shell clam|round clam|clam +(noun)|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam +quai d'orsay|2 +(noun)|Quai d'Orsay|street +(noun)|French foreign office|Quai d'Orsay|foreign office +quail|3 +(noun)|wildfowl +(noun)|phasianid +(verb)|flinch|squinch|funk|cringe|shrink|wince|recoil|move +quail at|1 +(verb)|apprehend|anticipate|look for|look to +quail brush|1 +(noun)|quail bush|white thistle|Atriplex lentiformis|saltbush +quail bush|1 +(noun)|quail brush|white thistle|Atriplex lentiformis|saltbush +quaint|3 +(adj)|strange |unusual +(adj)|strange |unusual +(adj)|old-time|olde worlde|fashionable |stylish +quaintness|2 +(noun)|old-fashionedness +(noun)|unfamiliarity|strangeness +quake|3 +(noun)|earthquake|temblor|seism|geological phenomenon +(verb)|quiver|palpitate|tremble +(verb)|tremor|shake|agitate +quaker|2 +(noun)|Friend|Quaker|Christian +(noun)|trembler|coward +quaker gun|1 +(noun)|Quaker gun|gun +quakerism|1 +(noun)|Quakerism|theological doctrine|religious doctrine +quakers|3 +(noun)|Religious Society of Friends|Society of Friends|Quakers|sect|religious sect|religious order +(noun)|Friend|Quaker|Christian +(noun)|quaker|trembler|coward +quaking|1 +(adj)|quivering|shaking|shaky|shivering|trembling|unsteady +quaking aspen|1 +(noun)|European quaking aspen|Populus tremula|aspen +qualification|3 +(noun)|makings|fitness|fittingness +(noun)|revision|alteration +(noun)|reservation|statement +qualified|7 +(adj)|qualified |well-qualified|competent|eligible +(adj)|qualified |conditional|hedged|weasel-worded|limited|modified|conditional|modified +(adj)|certified|registered +(adj)|restricted|modified +(adj)|moderated|tempered +(adj)|dependent|dependant|conditional +(adj)|competent +qualifier|2 +(noun)|contestant +(noun)|modifier|content word|open-class word +qualify|7 +(verb)|measure up|suffice|do|answer|serve +(verb)|pronounce|label|judge +(verb)|restrict|modify +(verb)|dispose|prepare|groom|train +(verb)|stipulate|condition|specify|contract|undertake +(verb)|characterize|characterise|remember|think of +(verb)|modify|add +qualifying|3 +(adj)|relative +(noun)|modification|limiting|grammatical relation +(noun)|passing|pass|success +qualifying adjective|1 +(noun)|descriptive adjective|adjective +qualitative|2 +(adj)|qualitative +(adj)|analysis +qualitative analysis|1 +(noun)|chemical analysis|analysis +quality|7 +(adj)|choice|prime|prize|select|superior +(adj)|upper-class +(noun)|attribute +(noun)|caliber|calibre|degree|grade|level +(noun)|character|lineament|property|attribute|dimension +(noun)|timbre|timber|tone|sound property +(noun)|social station|social status|social rank|rank +quality control|1 +(noun)|internal control +quality of life|1 +(noun)|gratification|satisfaction +qualm|2 +(noun)|scruple|misgiving|anxiety +(noun)|queasiness|squeamishness|nausea|sickness +quamash|1 +(noun)|camas|camass|camosh|camash|liliaceous plant +quamassia|1 +(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus +quamoclit pennata|1 +(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory +quandang|2 +(noun)|quandong|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree +(noun)|quandong|quantong|native peach|edible fruit +quandary|2 +(noun)|predicament|plight|difficulty +(noun)|dilemma|perplexity +quandong|4 +(noun)|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree +(noun)|blue fig|fruit +(noun)|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree +(noun)|quandang|quantong|native peach|edible fruit +quandong nut|1 +(noun)|edible nut +quandong tree|2 +(noun)|quandong|quandang|Eucarya acuminata|Fusanus acuminatus|tree +(noun)|quandong|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree +quango|1 +(noun)|quasi-NGO|organization|organisation +quantal|1 +(adj)|quantized|measure|quantity|amount +quantifiability|1 +(noun)|measurability|quality +quantifiable|1 +(adj)|quantitative +quantification|2 +(noun)|restriction|limitation +(noun)|measurement|measuring|measure|mensuration +quantifier|2 +(noun)|logical quantifier|word +(noun)|word +quantify|2 +(verb)|specify|set|determine|fix|limit +(verb)|measure|carry|convey|express +quantisation|1 +(noun)|quantization|division +quantise|2 +(verb)|quantize|estimate|gauge|approximate|guess|judge +(verb)|quantize|calculate|cipher|cypher|compute|work out|reckon|figure +quantitative|3 +(adj)|quantitative |decimal|decimal|denary|duodecimal|numeric|numerical|valued|vicenary|quantifiable|three-figure +(adj)|amount +(adj)|quantitative +quantitative analysis|1 +(noun)|quantitative chemical analysis|chemical analysis|qualitative analysis|measurement|measuring|measure|mensuration +quantitative chemical analysis|1 +(noun)|quantitative analysis|chemical analysis|qualitative analysis|measurement|measuring|measure|mensuration +quantitative relation|1 +(noun)|magnitude relation|relation +quantity|3 +(noun)|measure|amount|abstraction +(noun)|amount +(noun)|concept|conception|construct +quantity unit|1 +(noun)|charge unit|electromagnetic unit|emu +quantization|1 +(noun)|quantisation|division +quantize|2 +(verb)|quantise|estimate|gauge|approximate|guess|judge +(verb)|quantise|calculate|cipher|cypher|compute|work out|reckon|figure +quantized|1 +(adj)|quantal|measure|quantity|amount +quantong|1 +(noun)|quandong|quandang|native peach|edible fruit +quantum|2 +(noun)|quantity +(noun)|measure|quantity|amount +quantum chromodynamics|1 +(noun)|QCD|quantum field theory +quantum electrodynamics|1 +(noun)|QED|quantum field theory +quantum field theory|1 +(noun)|quantum physics +quantum jump|2 +(noun)|leap|jump|saltation +(noun)|quantum leap|jump|leap +quantum leap|1 +(noun)|quantum jump|jump|leap +quantum mechanics|1 +(noun)|quantum physics +quantum physics|1 +(noun)|physics|physical science|natural philosophy +quantum theory|1 +(noun)|scientific theory +quapaw|2 +(noun)|Quapaw|Dhegiha +(noun)|Quapaw|Dhegiha +quarantine|3 +(noun)|isolation +(noun)|isolation|closing off +(verb)|isolate|insulate +quarantined|1 +(adj)|isolated|segregated |unintegrated +quark|2 +(noun)|elementary particle|fundamental particle|subatomic particle +(noun)|quark cheese|cheese +quark cheese|1 +(noun)|quark|cheese +quarrel|3 +(noun)|wrangle|row|words|run-in|dustup|dispute|difference|difference of opinion|conflict +(noun)|arrow +(verb)|dispute|scrap|argufy|altercate|argue|contend|debate|fence +quarreler|1 +(noun)|quarreller|disputant|controversialist|eristic +quarreller|1 +(noun)|quarreler|disputant|controversialist|eristic +quarrelsome|1 +(adj)|argumentative +quarrelsomeness|1 +(noun)|aggressiveness|contentiousness|belligerence|pugnacity|disagreeableness +quarrier|1 +(noun)|quarryman|worker +quarry|4 +(noun)|prey|target|fair game|victim +(noun)|pit|stone pit|excavation|hole in the ground +(noun)|prey|animal|animate being|beast|brute|creature|fauna +(verb)|exploit|tap +quarrying|1 +(noun)|production +quarryman|1 +(noun)|quarrier|worker +quart|3 +(noun)|United States liquid unit +(noun)|British capacity unit|Imperial capacity unit +(noun)|dry quart|United States dry unit +quartan|1 +(adj)|fundamental quantity|fundamental measure +quarter|17 +(noun)|one-fourth|fourth|fourth part|twenty-five percent|quartern|common fraction|simple fraction +(noun)|city district +(noun)|playing period|period of play|play +(noun)|time unit|unit of time +(noun)|school term|academic term|academic session|session +(noun)|time period|period of time|period +(noun)|orientation +(noun)|avoirdupois unit +(noun)|British capacity unit|Imperial capacity unit +(noun)|coin +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|stern|after part|poop|tail|rear|back +(noun)|piece of leather +(verb)|billet|canton|lodge|accommodate +(verb)|draw|draw and quarter|kill +(verb)|segment|section +(verb)|divide|fraction +quarter-century|1 +(noun)|time period|period of time|period +quarter-circle|1 +(noun)|quadrant|line +quarter-hour|1 +(noun)|15 minutes|time unit|unit of time +quarter-tone|2 +(noun)|quarter tone|interval|musical interval +(noun)| +quarter-vine|2 +(noun)|cross vine|trumpet flower|quartervine|Bignonia capreolata|vine +(noun)| +quarter crack|1 +(noun)|sand crack +quarter day|1 +(noun)|Christian holy day +quarter horse|1 +(noun)|saddle horse|riding horse|mount +quarter mile|1 +(noun)|440 yards|linear unit +quarter note|1 +(noun)|crotchet|note|musical note|tone +quarter plate|1 +(noun)|plate|photographic plate +quarter rest|1 +(noun)|rest +quarter round|1 +(noun)|ovolo|thumb|molding|moulding +quarter section|1 +(noun)|area unit|square measure +quarter sessions|1 +(noun)|court|tribunal|judicature +quarter stock|1 +(noun)|stock +quarter tone|2 +(noun)|quarter-tone|interval|musical interval +(noun)| +quarterback|3 +(noun)|signal caller|field general|back +(noun)|signal caller|field general|back +(verb)|play +quarterdeck|1 +(noun)|deck +quarterfinal|1 +(noun)|match +quartering|3 +(noun)|coat of arms|arms|blazon|blazonry +(noun)|housing|lodging|living accommodations +(noun)|division +quarterlight|1 +(noun)|car window +quarterly|3 +(adj)|time period|period of time|period +(noun)|series|serial|serial publication +(adv)|every quarter +quartermaster|1 +(noun)|army officer +quartermaster general|1 +(noun)|staff officer +quartern|1 +(noun)|one-fourth|fourth|quarter|fourth part|twenty-five percent|common fraction|simple fraction +quarters|14 +(noun)|living quarters|housing|lodging|living accommodations +(noun)|one-fourth|fourth|quarter|fourth part|twenty-five percent|quartern|common fraction|simple fraction +(noun)|quarter|city district +(noun)|quarter|playing period|period of play|play +(noun)|quarter|time unit|unit of time +(noun)|quarter|school term|academic term|academic session|session +(noun)|quarter|time period|period of time|period +(noun)|quarter|orientation +(noun)|quarter|avoirdupois unit +(noun)|quarter|British capacity unit|Imperial capacity unit +(noun)|quarter|coin +(noun)|quarter|person|individual|someone|somebody|mortal|human|soul +(noun)|stern|after part|quarter|poop|tail|rear|back +(noun)|quarter|piece of leather +quarterstaff|1 +(noun)|staff +quartervine|1 +(noun)|cross vine|trumpet flower|quarter-vine|Bignonia capreolata|vine +quartet|5 +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quadruplet|foursome|Little Joe|digit|figure +(noun)|quartette|musical organization|musical organisation|musical group +(noun)|quartette|quadruplet|set +(noun)|quartette|foursome|gathering|assemblage +(noun)|quartette|musical composition|opus|composition|piece|piece of music +quartette|4 +(noun)|quartet|musical organization|musical organisation|musical group +(noun)|quartet|quadruplet|set +(noun)|quartet|foursome|gathering|assemblage +(noun)|quartet|musical composition|opus|composition|piece|piece of music +quartic|1 +(noun)|biquadrate|biquadratic|fourth power|number +quartic polynomial|1 +(noun)|biquadratic|biquadratic polynomial|polynomial|multinomial +quartile|1 +(noun)|mark|grade|score +quarto|1 +(noun)|4to|size +quartz|2 +(noun)|quartz glass|vitreous silica|lechatelierite|crystal|natural glass +(noun)|mineral +quartz battery|1 +(noun)|quartz mill|stamp mill|stamping mill +quartz crystal|1 +(noun)|quartz +quartz glass|1 +(noun)|quartz|vitreous silica|lechatelierite|crystal|natural glass +quartz lamp|1 +(noun)|mercury-vapor lamp +quartz mill|1 +(noun)|quartz battery|stamp mill|stamping mill +quartz oscillator|1 +(noun)|crystal oscillator|oscillator +quartzite|1 +(noun)|rock|stone +quartzose|1 +(adj)|mineral +quasar|1 +(noun)|quasi-stellar radio source|celestial body|heavenly body +quash|2 +(verb)|repress|keep down|subdue|subjugate|reduce|oppress|suppress|crush +(verb)|invalidate|annul|void|avoid|nullify|cancel|strike down +quasi|1 +(adj)|similar +quasi-ngo|1 +(noun)|quango|quasi-NGO|organization|organisation +quasi-religious|1 +(adj)|sacred +quasi-royal|1 +(adj)|uncrowned |crownless +quasi-stellar radio source|1 +(noun)|quasar|celestial body|heavenly body +quasi contract|1 +(noun)|contract +quasiparticle|1 +(noun)|quantum +quassia|2 +(noun)|organic compound +(noun)|bitterwood|Quassia amara|bitterwood tree +quassia amara|1 +(noun)|quassia|bitterwood|Quassia amara|bitterwood tree +quassia family|1 +(noun)|Simaroubaceae|family Simaroubaceae|rosid dicot family +quat|1 +(noun)|kat|khat|qat|cat|Arabian tea|African tea|stimulant|stimulant drug +quatercentenary|1 +(noun)|quatercentennial|anniversary|day of remembrance +quatercentennial|1 +(noun)|quatercentenary|anniversary|day of remembrance +quatern|1 +(noun)|four|4|IV|tetrad|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +quaternary|4 +(adj)|quaternate|multiple +(adj)|fourth|4th|ordinal +(noun)|Quaternary|Quaternary period|Age of Man|period|geological period +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +quaternary ammonium compound|1 +(noun)|organic compound +quaternary period|1 +(noun)|Quaternary|Quaternary period|Age of Man|period|geological period +quaternate|1 +(adj)|quaternary|multiple +quaternion|1 +(noun)|four|4|IV|tetrad|quatern|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +quaternity|1 +(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quartet|quadruplet|foursome|Little Joe|digit|figure +quatrain|1 +(noun)|stanza +quattrocento|1 +(noun)|century +quaver|4 +(noun)|sound +(noun)|eighth note|note|musical note|tone +(verb)|waver|voice|sound|vocalize|vocalise +(verb)|warble|trill|sing +quavering|1 +(adj)|tremulous|unsteady +quay|1 +(noun)|pier|wharf|wharfage|dock +queasiness|1 +(noun)|squeamishness|qualm|nausea|sickness +queasy|1 +(adj)|nauseated|sick|sickish|ill |sick +quebec|2 +(noun)|Quebec|Quebec City|provincial capital +(noun)|Quebec|Canadian province +quebec bridge|1 +(noun)|Quebec Bridge|cantilever bridge +quebec city|1 +(noun)|Quebec|Quebec City|provincial capital +quebecois|2 +(adj)|Quebecois|Canadian province +(noun)|Quebecois|Canadian +quechua|2 +(noun)|Quechua|Kechua|South American Indian +(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +quechuan|2 +(adj)|Quechuan|Kechuan|South American Indian|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +quechuan language|1 +(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind|Amerindian language|American-Indian language|American Indian|Indian +queckenstedt's test|1 +(noun)|Queckenstedt's test|diagnostic test|diagnostic assay +queen|12 +(noun)|insect +(noun)|queen regnant|female monarch|female aristocrat +(noun)|female aristocrat +(noun)|personification +(noun)|king|world-beater|rival|challenger|competitor|competition|contender +(noun)|fagot|faggot|fag|fairy|nance|pansy|queer|poof|poove|pouf|gay man|shirtlifter +(noun)|face card|picture card|court card +(noun)|chessman|chess piece +(noun)|naked mole rat +(noun)|tabby|domestic cat|house cat|Felis domesticus|Felis catus +(verb)|promote +(verb)|promote +queen's counsel|1 +(noun)|Queen's Counsel|Counsel to the Crown +queen's crape myrtle|1 +(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree|flowering tree +queen's cup|1 +(noun)|bride's bonnet|Clintonia uniflora|clintonia|Clinton's lily +queen-size|1 +(adj)|queen-sized|large +queen-sized|1 +(adj)|queen-size|large +queen anne's lace|1 +(noun)|wild carrot|Queen Anne's lace|Daucus carota|wildflower|wild flower +queen bee|1 +(noun)|queen +queen charlotte sound|1 +(noun)|Queen Charlotte Sound|sound +queen consort|1 +(noun)|queen +queen dowager|1 +(noun)|queen +queen it over|1 +(verb)|lord it over|put on airs|act superior|act|move +queen maud land|1 +(noun)|Queen Maud Land|geographical area|geographic area|geographical region|geographic region +queen mother|1 +(noun)|queen dowager +queen of england|1 +(noun)|Queen of England|queen|queen regnant|female monarch +queen of the may|1 +(noun)|May queen|queen of the May|girl|miss|missy|young lady|young woman|fille +queen of the night|1 +(noun)|Selenicereus grandiflorus|night-blooming cereus +queen post|1 +(noun)|post +queen regent|1 +(noun)|queen +queen regnant|1 +(noun)|queen|female monarch|female aristocrat +queen triggerfish|1 +(noun)|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish +queen victoria|1 +(noun)|Victoria|Queen Victoria|Queen of England|Empress +queenfish|1 +(noun)|white croaker|Seriphus politus|croaker +queenlike|1 +(adj)|queenly|noble +queenly|1 +(adj)|queenlike|noble +queens|11 +(noun)|Queens|borough +(noun)|queen|insect +(noun)|queen|queen regnant|female monarch|female aristocrat +(noun)|queen|female aristocrat +(noun)|queen|personification +(noun)|king|queen|world-beater|rival|challenger|competitor|competition|contender +(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man|shirtlifter +(noun)|queen|face card|picture card|court card +(noun)|queen|chessman|chess piece +(noun)|queen|naked mole rat +(noun)|tabby|queen|domestic cat|house cat|Felis domesticus|Felis catus +queensboro bridge|1 +(noun)|Queensboro Bridge|cantilever bridge +queensland|1 +(noun)|Queensland|Australian state +queensland bottletree|1 +(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree|bottle tree +queensland grass-cloth plant|1 +(noun)|Queensland grass-cloth plant|Pipturus argenteus|woody plant|ligneous plant +queensland hemp|1 +(noun)|Queensland hemp|jellyleaf|Sida rhombifolia|mallow +queensland kauri|1 +(noun)|dundathu pine|smooth bark kauri|Agathis robusta|kauri pine|dammar pine +queensland nut|1 +(noun)|Queensland nut|Macadamia tetraphylla|macadamia|macadamia tree +queer|6 +(adj)|curious|funny|odd|peculiar|rum|rummy|singular|strange |unusual +(adj)|fishy|funny|shady|suspect|suspicious|questionable +(adj)|gay|homophile|homosexual +(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|poof|poove|pouf|gay man|shirtlifter +(verb)|thwart|spoil|scotch|foil|cross|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|expose|scupper|endanger|peril|affect|impact|bear upon|bear on|touch on|touch +queer bird|1 +(noun)|kook|odd fellow|odd fish|queer duck|odd man out|anomaly|unusual person +queer duck|1 +(noun)|kook|odd fellow|odd fish|queer bird|odd man out|anomaly|unusual person +queerly|2 +(adv)|strangely|oddly|funnily|funny +(adv)|fishily +queerness|1 +(noun)|oddity|quirk|quirkiness|crotchet|unfamiliarity|strangeness +quell|2 +(verb)|squelch|quench|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|stay|appease|meet|satisfy|fill|fulfill|fulfil +quelled|1 +(adj)|quenched|squelched|suppressed +quelling|1 +(noun)|suppression|crushing|stifling|prevention|bar +quellung|1 +(noun)|quellung reaction|organic process|biological process +quellung reaction|1 +(noun)|quellung|organic process|biological process +quench|6 +(verb)|slake|allay|assuage|meet|satisfy|fill|fulfill|fulfil +(verb)|snuff out|blow out|extinguish +(verb)|restrain|suppress|keep|keep back|hold back +(verb)|squelch|quell|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|cool|chill|cool down +quenched|2 +(adj)|satisfied|slaked|mitigated +(adj)|quelled|squelched|suppressed +quenched steel|1 +(noun)|steel +quenching|1 +(noun)|extinction|extinguishing|termination|ending|conclusion +quenchless|1 +(adj)|unquenchable|insatiate |insatiable|unsatiable +quentin jerome tarantino|1 +(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker|filmmaker|film producer|movie maker +quentin tarantino|1 +(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker|filmmaker|film producer|movie maker +quercitron|2 +(noun)|dye|dyestuff +(noun)|black oak|yellow oak|quercitron oak|Quercus velutina|oak|oak tree +quercitron oak|1 +(noun)|black oak|yellow oak|quercitron|Quercus velutina|oak|oak tree +quercus|1 +(noun)|Quercus|genus Quercus|hamamelid dicot genus +quercus agrifolia|1 +(noun)|coast live oak|California live oak|Quercus agrifolia|live oak +quercus alba|1 +(noun)|American white oak|Quercus alba|white oak +quercus arizonica|1 +(noun)|Arizona white oak|Quercus arizonica|white oak +quercus bicolor|1 +(noun)|swamp white oak|swamp oak|Quercus bicolor|white oak +quercus borealis|1 +(noun)|northern red oak|Quercus rubra|Quercus borealis|red oak +quercus cerris|1 +(noun)|European turkey oak|turkey oak|Quercus cerris|oak|oak tree +quercus chrysolepis|1 +(noun)|canyon oak|canyon live oak|maul oak|iron oak|Quercus chrysolepis|live oak +quercus coccinea|1 +(noun)|scarlet oak|Quercus coccinea|oak|oak tree +quercus ellipsoidalis|1 +(noun)|jack oak|northern pin oak|Quercus ellipsoidalis|oak|oak tree +quercus falcata|1 +(noun)|southern red oak|swamp red oak|turkey oak|Quercus falcata|red oak +quercus garryana|1 +(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak +quercus grosseserrata|1 +(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak|oak tree +quercus ilex|1 +(noun)|holm oak|holm tree|holly-leaved oak|evergreen oak|Quercus ilex|oak|oak tree +quercus ilicifolia|1 +(noun)|bear oak|Quercus ilicifolia|scrub oak +quercus imbricaria|1 +(noun)|shingle oak|laurel oak|Quercus imbricaria|oak|oak tree +quercus incana|1 +(noun)|bluejack oak|turkey oak|Quercus incana|oak|oak tree +quercus kelloggii|1 +(noun)|California black oak|Quercus kelloggii|oak|oak tree +quercus laevis|1 +(noun)|American turkey oak|turkey oak|Quercus laevis|oak|oak tree +quercus laurifolia|1 +(noun)|laurel oak|pin oak|Quercus laurifolia|oak|oak tree +quercus lobata|1 +(noun)|California white oak|valley oak|valley white oak|roble|Quercus lobata|white oak +quercus lyrata|1 +(noun)|overcup oak|Quercus lyrata|oak|oak tree +quercus macrocarpa|1 +(noun)|bur oak|burr oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak +quercus marilandica|1 +(noun)|blackjack oak|blackjack|jack oak|Quercus marilandica|scrub oak +quercus michauxii|1 +(noun)|swamp chestnut oak|Quercus michauxii|chestnut oak +quercus mongolica|1 +(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak|oak tree +quercus montana|1 +(noun)|basket oak|cow oak|Quercus prinus|Quercus montana|chestnut oak +quercus muehlenbergii|1 +(noun)|chinquapin oak|chinkapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak +quercus myrtifolia|1 +(noun)|myrtle oak|seaside scrub oak|Quercus myrtifolia|scrub oak +quercus nigra|1 +(noun)|water oak|possum oak|Quercus nigra|oak|oak tree +quercus nuttalli|1 +(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak|oak tree +quercus palustris|1 +(noun)|pin oak|swamp oak|Quercus palustris|oak|oak tree +quercus petraea|1 +(noun)|durmast|Quercus petraea|Quercus sessiliflora|white oak +quercus phellos|1 +(noun)|willow oak|Quercus phellos|oak|oak tree +quercus prinoides|1 +(noun)|dwarf chinkapin oak|dwarf chinquapin oak|dwarf oak|Quercus prinoides|chestnut oak +quercus prinus|1 +(noun)|basket oak|cow oak|Quercus prinus|Quercus montana|chestnut oak +quercus robur|1 +(noun)|common oak|English oak|pedunculate oak|Quercus robur|white oak +quercus rubra|1 +(noun)|northern red oak|Quercus rubra|Quercus borealis|red oak +quercus sessiliflora|1 +(noun)|durmast|Quercus petraea|Quercus sessiliflora|white oak +quercus shumardii|1 +(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak +quercus stellata|1 +(noun)|post oak|box white oak|brash oak|iron oak|Quercus stellata|oak|oak tree +quercus suber|1 +(noun)|cork oak|Quercus suber|oak|oak tree +quercus texana|1 +(noun)|Spanish oak|Quercus texana|oak|oak tree +quercus vaccinifolia|1 +(noun)|huckleberry oak|Quercus vaccinifolia|shrub|bush +quercus variabilis|1 +(noun)|Chinese cork oak|Quercus variabilis|oak|oak tree +quercus velutina|1 +(noun)|black oak|yellow oak|quercitron|quercitron oak|Quercus velutina|oak|oak tree +quercus virginiana|1 +(noun)|southern live oak|Quercus virginiana|live oak +quercus wislizenii|1 +(noun)|interior live oak|Quercus wislizenii|Quercus wizlizenii|live oak +quercus wizlizenii|1 +(noun)|interior live oak|Quercus wislizenii|Quercus wizlizenii|live oak +querier|1 +(noun)|inquirer|enquirer|questioner|asker|speaker|talker|utterer|verbalizer|verbaliser +quern|1 +(noun)|mill|grinder +querulous|1 +(adj)|fretful|whiney|whining|whiny|complaining |complaintive +querulously|1 +(adv)|peevishly|fractiously +querulousness|1 +(noun)|temper|biliousness|irritability|peevishness|pettishness|snappishness|surliness +query|2 +(noun)|question|inquiry|enquiry|interrogation|questioning|inquiring +(verb)|question|ask +query language|1 +(noun)|command language|search language|source language +quest|7 +(noun)|pursuit|pursuance|search +(noun)|seeking|search|hunt|hunting +(verb)|seek +(verb)|chase|chase after|trail|tail|tag|give chase|dog|go after|track +(verb)|bay|bark +(verb)|solicit|beg|tap +(verb)|request|bespeak|call for|communicate|pass on|pass|put across +quest after|1 +(verb)|quest for|go after|pursue|search|seek|look for +quest for|1 +(verb)|go after|quest after|pursue|search|seek|look for +quester|1 +(noun)|seeker|searcher|person|individual|someone|somebody|mortal|human|soul +question|11 +(noun)|inquiry|enquiry|query|interrogation|questioning|inquiring +(noun)|head|subject|topic|theme +(noun)|interrogation|interrogative|interrogative sentence|sentence +(noun)|doubt|dubiousness|doubtfulness|uncertainty|uncertainness +(noun)|motion|proposal +(noun)|marriage proposal|proposal of marriage|marriage offer|proposal +(verb)|oppugn|call into question|challenge +(verb)|interrogate|ask +(verb)|query|ask +(verb)|interview|converse|discourse +(verb)|wonder|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +question mark|1 +(noun)|interrogation point|punctuation|punctuation mark +question master|1 +(noun)|quizmaster|master of ceremonies|emcee|host +question of fact|1 +(noun)|matter of fact|question|head +question of law|1 +(noun)|matter of law|question|head +question sheet|1 +(noun)|test paper|examination paper|exam paper|examination|exam|test +question time|1 +(noun)|time period|period of time|period +questionable|2 +(adj)|questionable |alleged|so-called|supposed|apocryphal|debatable|problematic|problematical|doubtful|dubious|dubitable|in question|equivocal|fishy|funny|queer|shady|suspect|suspicious|impugnable|self-styled|soi-disant|contestable +(adj)|refutable|confutable|confutative|deniable +questionably|1 +(adv)|dubiously +questioner|1 +(noun)|inquirer|enquirer|querier|asker|speaker|talker|utterer|verbalizer|verbaliser +questioning|4 +(adj)|quizzical|perplexed +(adj)|doubting|skeptical|sceptical|distrustful +(adj)|inquisitive|speculative|wondering|curious +(noun)|inquiring|request|asking +questioningly|2 +(adv)|wonderingly +(adv)|quizzically +questionnaire|1 +(noun)|form +quetch|1 +(verb)|complain|kick|plain|sound off|kvetch +quetzal|2 +(noun)|Guatemalan monetary unit +(noun)|quetzal bird|trogon +quetzal bird|1 +(noun)|quetzal|trogon +quetzalcoatl|1 +(noun)|Quetzalcoatl|deity|divinity|god|immortal +queue|4 +(noun)|waiting line|line +(noun)|list|listing +(noun)|braid|plait|tress|twist +(verb)|line up|queue up|stand|stand up +queue up|1 +(verb)|line up|queue|stand|stand up +quezon city|1 +(noun)|Quezon City|city|metropolis|urban center +qui vive|1 +(noun)|alert|readiness|preparedness|preparation +quiaquia|1 +(noun)|round scad|cigarfish|Decapterus punctatus|scad +quibble|3 +(noun)|quiddity|cavil|evasion|equivocation +(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep +(verb)|niggle|pettifog|bicker|squabble|brabble|argue|contend|debate|fence +quibbler|1 +(noun)|caviller|caviler|pettifogger|disputant|controversialist|eristic +quibbling|1 +(adj)|caviling|carping|nitpicking|pettifogging|critical +quiche|3 +(noun)|Quiche|Mayan|Maya +(noun)|tart +(noun)|Quiche|Maya|Mayan|Mayan language +quiche lorraine|1 +(noun)|quiche Lorraine|quiche +quick|8 +(adj)|speedy|fast +(adj)|flying|fast|hurried +(adj)|agile|nimble|spry|active +(adj)|ready|intelligent +(adj)|immediate|prompt|straightaway|fast +(adj)|warm|excitable +(noun)|area|region +(adv)|promptly|quickly +quick-change|1 +(adj)|changeable |changeful +quick-eared|1 +(adj)|sharp-eared|hearing +quick-freeze|1 +(verb)|flash-freeze|freeze +quick-frozen|1 +(adj)|flash-frozen|frozen|preserved +quick-sighted|2 +(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|sharp-eyed|sharp-sighted|sighted +(adj)|sharp-sighted|sharp-eyed|perceptive +quick-tempered|1 +(adj)|choleric|irascible|hotheaded|hot-tempered|short|short-tempered|ill-natured +quick-witted|1 +(adj)|adroit +quick-wittedness|1 +(noun)|mental quickness|quickness|intelligence +quick assets|1 +(noun)|liquid assets|assets +quick bread|1 +(noun)|bread|breadstuff|staff of life +quick buck|1 +(noun)|fast buck|net income|net|net profit|lucre|profit|profits|earnings +quick fix|1 +(noun)|band aid|quickie|quicky|repair|fix|fixing|fixture|mend|mending|reparation +quick grass|1 +(noun)|dog grass|couch grass|quackgrass|quack grass|witch grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +quick march|1 +(noun)|march|marching +quick study|1 +(noun)|sponge|learner|scholar|assimilator +quick temper|1 +(noun)|irascibility|short temper|spleen|bad temper|ill temper +quick time|1 +(noun)|pace|gait +quicken|5 +(verb)|accelerate|speed up|speed|intensify|deepen +(verb)|whet|stimulate|excite|stir +(verb)|invigorate|stimulate|excite +(verb)|move +(verb)|animate|recreate|reanimate|revive|renovate|repair|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +quickener|1 +(noun)|invigorator|enlivener|agent +quickening|3 +(noun)|organic process|biological process +(noun)|degree|level|stage|point +(noun)|acceleration|speedup|speed|speeding|hurrying +quicker|1 +(adv)|faster +quickest|1 +(adv)|fastest +quickie|1 +(noun)|band aid|quick fix|quicky|repair|fix|fixing|fixture|mend|mending|reparation +quicklime|1 +(noun)|calcium oxide|lime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide +quickly|3 +(adv)|rapidly|speedily|chop-chop|apace +(adv)|promptly|quick +(adv)|cursorily +quickness|3 +(noun)|adeptness|adroitness|deftness|facility|skillfulness +(noun)|mental quickness|quick-wittedness|intelligence +(noun)|celerity|rapidity|pace|rate +quicksand|2 +(noun)|situation +(noun)|pit|cavity +quickset|2 +(adj)|planted +(noun)|cutting|slip +quicksilver|2 +(adj)|erratic|fickle|mercurial|changeable |changeful +(noun)|mercury|hydrargyrum|Hg|atomic number 80|metallic element|metal +quickstep|3 +(noun)|military march|military music|martial music +(noun)|ballroom dancing|ballroom dance +(verb)|dance|trip the light fantastic|trip the light fantastic toe +quicky|1 +(noun)|band aid|quick fix|quickie|repair|fix|fixing|fixture|mend|mending|reparation +quid|3 +(noun)|British pound|pound|pound sterling|British monetary unit +(noun)|quid pro quo|retainer|consideration +(noun)|chew|chaw|cud|plug|wad|morsel|bit|bite +quid pro quo|1 +(noun)|quid|retainer|consideration +quiddity|2 +(noun)|quibble|cavil|evasion|equivocation +(noun)|haecceity|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +quiesce|1 +(verb)|quieten|hush|quiet|quiet down|pipe down|change intensity +quiescence|2 +(noun)|dormancy|quiescency|inaction|inactivity|inactiveness +(noun)|quiescency|dormancy|sleeping|rest|ease|repose|relaxation +quiescency|2 +(noun)|dormancy|quiescence|inaction|inactivity|inactiveness +(noun)|quiescence|dormancy|sleeping|rest|ease|repose|relaxation +quiescent|4 +(adj)|inactive +(adj)|quiet +(adj)|dormant |inactive +(adj)|inactive +quiet|14 +(adj)|quiet |quiescent|relaxing|restful|reposeful|slumberous|slumbrous|untroubled|peaceful|tame|unagitated +(adj)|quiet |noiseless|stilly|silent|soundless|still|tiptoe|inaudible|unhearable|soft +(adj)|restrained|unostentatious |unpretentious|unpretending +(adj)|hushed|muted|subdued|soft +(adj)|placid|uneventful +(adj)|placid|still|tranquil|unruffled|calm +(adj)|quiet +(noun)|lull|calmness +(noun)|tranquillity|order +(noun)|silence|sound property +(noun)|repose|placidity|serenity|tranquillity|tranquility|composure|calm|calmness|equanimity +(verb)|quieten|hush|quiesce|quiet down|pipe down|change intensity +(verb)|calm|calm down|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort|soothe|console|solace +(adv)|quietly +quiet down|1 +(verb)|quieten|hush|quiet|quiesce|pipe down|change intensity +quieten|3 +(verb)|hush|quiet|quiesce|quiet down|pipe down|change intensity +(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|lull|still|comfort|soothe|console|solace +(verb)|hush|silence|still|shut up|hush up|suppress|stamp down|inhibit|subdue|conquer|curb +quietening|1 +(adj)|calming|lulling|unalarming +quietism|1 +(noun)|mysticism|religious mysticism +quietist|1 +(noun)|mystic|religious mystic +quietly|3 +(adv)|softly +(adv)|quiet +(adv)|restfully +quietness|2 +(noun)|soundlessness|silence|quiet +(noun)|tranquillity|tranquility|quietude|calmness +quietude|1 +(noun)|tranquillity|tranquility|quietness|calmness +quietus|1 +(noun)|rest|eternal rest|sleep|eternal sleep|death +quiff|1 +(noun)|forelock +quill|4 +(noun)|quill pen|pen +(noun)|spine +(noun)|flight feather|pinion|quill feather|feather|plume|plumage +(noun)|calamus|shaft|rib +quill feather|1 +(noun)|flight feather|pinion|quill|feather|plume|plumage +quill pen|1 +(noun)|quill|pen +quillwort|1 +(noun)|fern ally +quillwort family|1 +(noun)|Isoetaceae|family Isoetaceae|fern family +quilt|3 +(noun)|comforter|puff|bedclothes|bed clothing|bedding +(verb)|join|conjoin +(verb)|sew|tailor|tailor-make +quilted|1 +(adj)|thick +quilted bedspread|1 +(noun)|bedspread|bedcover|bed cover|bed covering|counterpane|spread +quilting|2 +(noun)|stitch +(noun)|fabric|cloth|material|textile +quilting bee|1 +(noun)|bee +quin|1 +(noun)|quintuplet|quint|sibling|sib +quinacrine|1 +(noun)|quinacrine hydrochloride|mepacrine|Atabrine|antimalarial|antimalarial drug|vermifuge|anthelmintic|anthelminthic|helminthic +quinacrine hydrochloride|1 +(noun)|quinacrine|mepacrine|Atabrine|antimalarial|antimalarial drug|vermifuge|anthelmintic|anthelminthic|helminthic +quince|2 +(noun)|quince bush|Cydonia oblonga|fruit tree +(noun)|edible fruit|pome|false fruit +quince bush|1 +(noun)|quince|Cydonia oblonga|fruit tree +quincentenary|2 +(adj)|quincentennial|anniversary|day of remembrance +(noun)|quincentennial|anniversary|day of remembrance +quincentennial|2 +(adj)|quincentenary|anniversary|day of remembrance +(noun)|quincentenary|anniversary|day of remembrance +quincy|1 +(noun)|Quincy|Josiah Quincy|American Revolutionary leader +quine|1 +(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher|logician|logistician +quinidex|1 +(noun)|quinidine|Quinidex|Quinora|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +quinidine|1 +(noun)|Quinidex|Quinora|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +quinine|1 +(noun)|antimalarial|antimalarial drug +quinine water|1 +(noun)|tonic|tonic water|soft drink +quinnat salmon|1 +(noun)|chinook|chinook salmon|king salmon|Onchorynchus tshawtscha|salmon +quinone|1 +(noun)|benzoquinone|compound|chemical compound +quinora|1 +(noun)|quinidine|Quinidex|Quinora|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +quinquagesima|1 +(noun)|Quinquagesima|Quinquagesima Sunday|Christian holy day +quinquagesima sunday|1 +(noun)|Quinquagesima|Quinquagesima Sunday|Christian holy day +quinquefoliate|1 +(adj)|compound +quinquefoliate leaf|1 +(noun)|compound leaf +quinsy|1 +(noun)|peritonsillar abscess|angina +quint|2 +(noun)|five|5|V|cinque|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|quintuplet|quin|sibling|sib +quintal|2 +(noun)|metric weight unit|weight unit +(noun)|hundredweight|cwt|short hundredweight|centner|cental|avoirdupois unit +quintessence|3 +(noun)|ether|element +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +(noun)|example|illustration|instance|representative +quintessential|1 +(adj)|example|illustration|instance|representative +quintet|5 +(noun)|quintette|musical composition|opus|composition|piece|piece of music +(noun)|five|5|V|cinque|quint|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|quintette|musical organization|musical organisation|musical group +(noun)|quintette|set +(noun)|quintette|fivesome|gathering|assemblage +quintette|4 +(noun)|quintet|musical organization|musical organisation|musical group +(noun)|quintet|set +(noun)|quintet|fivesome|gathering|assemblage +(noun)|quintet|musical composition|opus|composition|piece|piece of music +quintillion|1 +(noun)|large integer +quintillionth|1 +(noun)|one-quintillionth|common fraction|simple fraction +quintipara|1 +(noun)|mother|female parent +quintuple|2 +(adj)|fivefold|multiple +(verb)|multiply|manifold +quintuplet|2 +(noun)|five|5|V|cinque|quint|quintet|fivesome|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|quint|quin|sibling|sib +quintupling|1 +(noun)|multiplication +quintus septimius florens tertullianus|1 +(noun)|Tertullian|Quintus Septimius Florens Tertullianus|theologian|theologist|theologizer|theologiser +quip|3 +(noun)|epigram|saying|expression|locution +(noun)|wisecrack|crack|sally|remark|comment +(verb)|gag|joke|jest +quipu|1 +(noun)|calculator|calculating machine +quira|2 +(noun)|Panama redwood|wood +(noun)|tree +quire|1 +(noun)|definite quantity +quirk|3 +(noun)|oddity|queerness|quirkiness|crotchet|unfamiliarity|strangeness +(noun)|groove|channel +(verb)|twist +quirk bead|1 +(noun)|bead and quirk|beading|bead|beadwork|astragal +quirk molding|1 +(noun)|quirk moulding|molding|moulding +quirk moulding|1 +(noun)|quirk molding|molding|moulding +quirkiness|1 +(noun)|oddity|queerness|quirk|crotchet|unfamiliarity|strangeness +quirky|1 +(adj)|far-out|kinky|offbeat|way-out|unconventional +quirt|1 +(noun)|whip +quiscalus|1 +(noun)|Quiscalus|genus Quiscalus|bird genus +quiscalus quiscula|1 +(noun)|purple grackle|Quiscalus quiscula|grackle|crow blackbird +quisling|1 +(noun)|collaborator|collaborationist|traitor|treasonist +quislingism|1 +(noun)|collaboration|collaborationism|cooperation +quit|5 +(verb)|discontinue|stop|cease|give up|lay off +(verb)|leave office|step down|resign|leave|depart|pull up stakes +(verb)|depart|take leave|leave|go forth|go away +(verb)|foreswear|renounce|relinquish|abandon|give up +(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in|throw in the towel|chuck up the sponge +quitclaim|2 +(noun)|quitclaim deed|conveyance +(noun)|transfer|transference +quitclaim deed|1 +(noun)|quitclaim|conveyance +quite|2 +(adv)|rather +(adv)|quite a|quite an +quite a|1 +(adv)|quite|quite an +quite a little|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +quite an|1 +(adv)|quite|quite a +quito|1 +(noun)|Quito|capital of Ecuador|national capital +quits|1 +(adj)|equal +quittance|2 +(noun)|document +(noun)|repayment|payment +quitter|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +quiver|7 +(noun)|frisson|shiver|chill|shudder|thrill|tingle|fear|fearfulness|fright +(noun)|shaking|shakiness|trembling|quivering|vibration|palpitation|motion +(noun)|case +(noun)|vibration|quivering|motion|movement|move|motility +(verb)|quake|palpitate|tremble +(verb)|flicker|waver|flitter|flutter|move back and forth +(verb)|pulsate|beat|move +quivering|3 +(adj)|quaking|shaking|shaky|shivering|trembling|unsteady +(noun)|shaking|shakiness|trembling|quiver|vibration|palpitation|motion +(noun)|vibration|quiver|motion|movement|move|motility +quixotic|1 +(adj)|romantic|wild-eyed|impractical +quixotism|1 +(noun)|knight errantry|idealism +quiz|2 +(noun)|examination|exam|test +(verb)|test|examine +quiz program|1 +(noun)|game show|giveaway +quizmaster|1 +(noun)|question master|master of ceremonies|emcee|host +quizzer|1 +(noun)|examiner|tester|inquirer|enquirer|questioner|querier|asker +quizzical|2 +(adj)|mocking|teasing|playful +(adj)|questioning|perplexed +quizzically|1 +(adv)|questioningly +qum|1 +(noun)|Qum|city|metropolis|urban center +quo warranto|1 +(noun)|hearing +quodlibet|1 +(noun)|issue +quoin|3 +(noun)|coign|coigne|wedge +(noun)|coign|coigne|keystone|key|headstone +(noun)|corner|structure|construction +quoit|1 +(noun)|game equipment +quoits|2 +(noun)|horseshoes|outdoor game +(noun)|quoit|game equipment +quondam|1 +(adj)|erstwhile|former|once|onetime|sometime|past +quonset hut|1 +(noun)|Nissen hut|Quonset hut|hut|army hut|field hut +quoratean|1 +(noun)|Quoratean|Hokan|Hoka +quorum|1 +(noun)|gathering|assemblage +quota|3 +(noun)|number +(noun)|allotment|allocation +(noun)|trade barrier|import barrier +quotability|1 +(noun)|worthiness +quotable|2 +(adj)|repeatable +(adj)|worthy +quotation|4 +(noun)|citation|acknowledgment|credit|reference|mention|note|annotation|notation +(noun)|quote|citation|excerpt|extract|selection +(noun)|statement +(noun)|practice|pattern +quotation mark|1 +(noun)|quote|inverted comma|punctuation|punctuation mark +quote|6 +(noun)|quotation mark|inverted comma|punctuation|punctuation mark +(noun)|quotation|citation|excerpt|extract|selection +(verb)|cite|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|give +(verb)|cite|mention|advert|bring up|cite|name|refer +(verb)|punctuate|mark +quoter|1 +(noun)|communicator +quotidian|1 +(adj)|everyday|mundane|routine|unremarkable|workaday|ordinary +quotient|2 +(noun)|ratio +(noun)|number +quotient verdict|1 +(noun)|compromise verdict +quran|1 +(noun)|Koran|Quran|al-Qur'an|Book|sacred text|sacred writing|religious writing|religious text +qurush|1 +(noun)|Saudi Arabian monetary unit +qwerty keyboard|1 +(noun)|QWERTY keyboard|typewriter keyboard +r|4 +(noun)|roentgen|R|radioactivity unit +(noun)|gas constant|universal gas constant|R|constant +(noun)|R|letter|letter of the alphabet|alphabetic character +(noun)|radius|length +r-2|1 +(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|circle|flunitrazepan|Rohypnol +r. b. cattell|1 +(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist +r. buckminster fuller|1 +(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect|designer|engineer|applied scientist|technologist +r. j. mitchell|1 +(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer +r.c.|1 +(adj)|Roman|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity +r and b|1 +(noun)|rhythm and blues|R and B|popular music|popular music genre|black music|African-American music +ra|3 +(noun)|radium|Ra|atomic number 88|metallic element|metal +(noun)|right ascension|RA|celestial longitude|angular distance +(noun)|Ra|Re|Egyptian deity +rabat|1 +(noun)|Rabat|capital of Morocco|national capital +rabato|1 +(noun)|rebato|collar|neckband +rabbet|3 +(noun)|rebate|groove|channel +(verb)|join|bring together +(verb)|cut out +rabbet joint|1 +(noun)|joint +rabbet plane|1 +(noun)|openside plane|plane|carpenter's plane|woodworking plane +rabbi|2 +(noun)|spiritual leader +(noun)|Rabbi|title|title of respect +rabbi moses ben maimon|1 +(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher +rabbinate|1 +(noun)|priesthood +rabbinic|1 +(adj)|rabbinical|spiritual leader +rabbinical|1 +(adj)|rabbinic|spiritual leader +rabbit|4 +(noun)|coney|cony|leporid|leporid mammal +(noun)|lapin|fur|pelt +(noun)|hare|game +(verb)|hunt|run|hunt down|track down +rabbit's-foot fern|1 +(noun)|golden polypody|serpent fern|Phlebodium aureum|Polypodium aureum|fern +rabbit-eared bandicoot|1 +(noun)|rabbit bandicoot|bilby|Macrotis lagotis|bandicoot +rabbit-eye blueberry|1 +(noun)|rabbiteye blueberry|rabbiteye|Vaccinium ashei|blueberry|blueberry bush +rabbit-weed|2 +(noun)|rabbitweed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +(noun)| +rabbit bandicoot|1 +(noun)|rabbit-eared bandicoot|bilby|Macrotis lagotis|bandicoot +rabbit brush|1 +(noun)|rabbit bush|Chrysothamnus nauseosus|goldenbush +rabbit burrow|1 +(noun)|rabbit hole|hole|hollow +rabbit bush|1 +(noun)|rabbit brush|Chrysothamnus nauseosus|goldenbush +rabbit ears|1 +(noun)|television antenna|tv-antenna +rabbit fever|1 +(noun)|tularemia|tularaemia|deer fly fever|yatobyo|zoonosis|zoonotic disease +rabbit food|1 +(noun)|raw vegetable|vegetable|veggie +rabbit hole|1 +(noun)|rabbit burrow|hole|hollow +rabbit hutch|1 +(noun)|hutch +rabbit on|1 +(verb)|rant|mouth off|jabber|spout|rave|talk|speak|utter|mouth|verbalize|verbalise +rabbit punch|1 +(noun)|punch|clout|poke|lick|biff +rabbit test|1 +(noun)|Friedman test|pregnancy test +rabbit warren|2 +(noun)|warren|residential district|residential area|community +(noun)|warren|burrow|tunnel +rabbiteye|1 +(noun)|rabbiteye blueberry|rabbit-eye blueberry|Vaccinium ashei|blueberry|blueberry bush +rabbiteye blueberry|1 +(noun)|rabbit-eye blueberry|rabbiteye|Vaccinium ashei|blueberry|blueberry bush +rabbitfish|1 +(noun)|Chimaera monstrosa|chimaera +rabbitweed|1 +(noun)|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +rabbitwood|1 +(noun)|buffalo nut|Pyrularia pubera|parasitic plant +rabble|2 +(noun)|mob|rout|crowd +(noun)|riffraff|ragtag|ragtag and bobtail|folk|common people +rabble-rouser|1 +(noun)|demagogue|demagog|orator|speechmaker|rhetorician|public speaker|speechifier +rabble-rousing|1 +(adj)|incendiary|incitive|inflammatory|instigative|seditious|provocative +rabelais|1 +(noun)|Rabelais|Francois Rabelais|satirist|ironist|ridiculer +rabelaisian|1 +(adj)|Rabelaisian|satirist|ironist|ridiculer +rabi i|1 +(noun)|Rabi I|Islamic calendar month +rabi ii|1 +(noun)|Rabi II|Islamic calendar month +rabid|1 +(adj)|fanatic|fanatical|overzealous|passionate +rabies|1 +(noun)|hydrophobia|lyssa|madness|zoonosis|zoonotic disease +raccoon|2 +(noun)|fur|pelt +(noun)|racoon|procyonid +raccoon dog|1 +(noun)|Nyctereutes procyonides|wild dog +raccoon fox|1 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +race|10 +(noun)|contest|competition +(noun)|group|grouping +(noun)|contest|competition +(noun)|slipstream|airstream|backwash|wash|flow +(noun)|subspecies|taxonomic group|taxonomic category|taxon +(noun)|raceway|canal +(verb)|rush|hotfoot|hasten|hie|speed|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +(verb)|run|compete|vie|contend +(verb)|act|move +(verb)|rush|move|displace +race car|1 +(noun)|racer|racing car|car|auto|automobile|machine|motorcar +race driver|1 +(noun)|racer|automobile driver|driver +race horse|2 +(noun)|racehorse|bangtail|horse|Equus caballus +(noun)| +race meeting|1 +(noun)|meet|sports meeting +race murder|1 +(noun)|genocide|racial extermination|killing|kill|putting to death +race problem|1 +(noun)|problem|job +race riot|1 +(noun)|riot|public violence +race runner|2 +(noun)|racerunner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail|whiptail lizard +(noun)| +raceabout|1 +(noun)|sloop +racecard|1 +(noun)|program|programme +racecourse|1 +(noun)|racetrack|raceway|track|course +racehorse|1 +(noun)|race horse|bangtail|horse|Equus caballus +raceme|1 +(noun)|flower cluster +racemic acid|1 +(noun)|tartaric acid +racemose|1 +(adj)|indeterminate +racer|4 +(noun)|race driver|automobile driver|driver +(noun)|race car|racing car|car|auto|automobile|machine|motorcar +(noun)|animal|animate being|beast|brute|creature|fauna +(noun)|colubrid snake|colubrid +racerunner|1 +(noun)|race runner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail|whiptail lizard +racetrack|1 +(noun)|racecourse|raceway|track|course +racetrack tout|1 +(noun)|tipster|tout +raceway|2 +(noun)|race|canal +(noun)|racetrack|racecourse|track|course +rachel|1 +(noun)|Rachel|wife|married woman +rachel carson|1 +(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist|life scientist|environmentalist|conservationist +rachel louise carson|1 +(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist|life scientist|environmentalist|conservationist +rachet|1 +(noun)|ratchet|ratch|mechanical device +rachet up|1 +(verb)|ratchet|ratchet down|advance|progress|pass on|move on|march on|go on +rachis|2 +(noun)|axis +(noun)|spinal column|vertebral column|spine|backbone|back|skeletal structure +rachischisis|1 +(noun)|spina bifida|schistorrhachis|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +rachitic|1 +(adj)|avitaminosis|hypovitaminosis +rachitis|2 +(noun)|inflammation|redness|rubor +(noun)|rickets|avitaminosis|hypovitaminosis +rachmaninoff|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +rachmaninov|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +rachycentridae|1 +(noun)|Rachycentridae|family Rachycentridae|fish family +rachycentron|1 +(noun)|Rachycentron|genus Rachycentron|fish genus +rachycentron canadum|1 +(noun)|cobia|Rachycentron canadum|sergeant fish|percoid fish|percoid|percoidean +racial|2 +(adj)|group|grouping +(adj)|racial |biracial|interracial|multiracial|racist +racial discrimination|1 +(noun)|racism|racialism|discrimination|favoritism|favouritism +racial extermination|1 +(noun)|genocide|race murder|killing|kill|putting to death +racial immunity|1 +(noun)|natural immunity|innate immunity +racial profiling|1 +(noun)|racism|racialism|racial discrimination +racial segregation|1 +(noun)|segregation|separatism +racialism|1 +(noun)|racism|racial discrimination|discrimination|favoritism|favouritism +racialist|1 +(noun)|racist|bigot +racine|2 +(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist|playwright|poet +(noun)|Racine|city|metropolis|urban center +raciness|1 +(noun)|gaminess|ribaldry|spiciness|indelicacy +racing|1 +(noun)|sport|athletics +racing boat|1 +(noun)|small boat +racing car|1 +(noun)|racer|race car|car|auto|automobile|machine|motorcar +racing circuit|1 +(noun)|circuit|racetrack|racecourse|raceway|track +racing gig|1 +(noun)|racing boat +racing shell|1 +(noun)|shell|racing boat +racing skate|1 +(noun)|speed skate|ice skate +racing skiff|1 +(noun)|single shell|shell|racing shell +racing start|1 +(noun)|start +racing yacht|1 +(noun)|yacht|vessel|watercraft +racism|2 +(noun)|bias|prejudice|preconception +(noun)|racialism|racial discrimination|discrimination|favoritism|favouritism +racist|3 +(adj)|racial +(adj)|antiblack|anti-Semitic|anti-Semite|prejudiced |discriminatory +(noun)|racialist|bigot +rack|17 +(noun)|framework|frame|framing +(noun)|cut|cut of meat +(noun)|wrack|destruction|demolition|wipeout +(noun)|wheel|instrument of torture +(noun)|stand|support +(noun)|single-foot|gait +(verb)|single-foot|pace +(verb)|try|strain|stress +(verb)|work|put to work +(verb)|extort|squeeze|gouge|wring|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|hook +(verb)|scud|sail +(verb)|fly|wing +(verb)|draw|take out +(verb)|torment|torture|excruciate|pain|anguish|hurt +(verb)|work|work on|process +(verb)|seize|prehend|clutch +(verb)|torture|excruciate|torment +rack and pinion|1 +(noun)|gear|gear wheel|cogwheel +rack of lamb|1 +(noun)|crown roast|lamb roast|roast lamb|rack +rack railway|1 +(noun)|cog railway|railway|railroad|railroad line|railway line|railway system +rack rent|1 +(noun)|rent +rack up|4 +(verb)|score|hit|tally|gain|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|put|set|place|pose|position|lay +(verb)|worst|pip|mop up|whip|beat|beat out|crush|shell|trounce|vanquish +(verb)|fill|fill up +racker|1 +(noun)|attendant|attender|tender +racket|7 +(noun)|noise +(noun)|fraudulent scheme|illegitimate enterprise|enterprise|endeavor|endeavour +(noun)|noise|dissonance|sound|auditory sensation +(noun)|racquet|sports implement +(verb)|revel|make whoopie|make merry|make happy|whoop it up|jollify|wassail|celebrate|fete +(verb)|make noise|resound|noise +(verb)|hit +racket club|1 +(noun)|club|society|guild|gild|lodge|order +racketeer|2 +(noun)|criminal|felon|crook|outlaw|malefactor +(verb)|conduct|carry on|deal +racketeer influenced and corrupt organizations act|1 +(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law +racketeering|1 +(noun)|felony +racketiness|1 +(noun)|noisiness|sound +rackety|1 +(adj)|rip-roaring|uproarious|noisy +racking|1 +(adj)|wrenching|painful +racon|1 +(noun)|radar beacon|electronic signal +raconteur|1 +(noun)|anecdotist|narrator|storyteller|teller +racoon|1 +(noun)|raccoon|procyonid +racquet|1 +(noun)|racket|sports implement +racquetball|2 +(noun)|ball +(noun)|court game +racy|2 +(adj)|lively|spirited +(adj)|blue|gamy|gamey|juicy|naughty|risque|spicy|sexy +rad|2 +(noun)|radioactivity unit +(noun)|radian|angular unit +radar|1 +(noun)|microwave radar|radio detection and ranging|radiolocation|measuring instrument|measuring system|measuring device +radar beacon|1 +(noun)|racon|electronic signal +radar dome|1 +(noun)|radome|housing +radar echo|1 +(noun)|electronic signal +radar fire|1 +(noun)|fire|firing +radar target|1 +(noun)|blip|pip|radar echo +radclyffe hall|1 +(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer|author +raddle|3 +(noun)|ruddle|reddle|iron ore +(verb)|ruddle|weave|interweave +(verb)|mark +raddled|2 +(adj)|worn-out|worn +(adj)|careworn|drawn|haggard|worn|tired +radhakrishnan|1 +(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher|statesman|solon|national leader +radial|5 +(adj)|arm bone +(adj)|straight line +(adj)|light|visible light|visible radiation +(adj)|stellate|symmetrical |symmetric +(noun)|radial tire|radial-ply tire|pneumatic tire|pneumatic tyre +radial-ply|1 +(adj)|tire|tyre +radial-ply tire|1 +(noun)|radial|radial tire|pneumatic tire|pneumatic tyre +radial artery|1 +(noun)|arteria radialis|artery|arteria|arterial blood vessel +radial asymmetry|1 +(noun)|asymmetry|imbalance +radial engine|1 +(noun)|rotary engine|internal-combustion engine|ICE +radial keratotomy|1 +(noun)|keratotomy +radial nerve|1 +(noun)|nervus radialis|musculospiral nerve|nerve|nervus +radial pulse|1 +(noun)|pulse|pulse rate|heart rate +radial symmetry|1 +(noun)|symmetry|symmetricalness|correspondence|balance +radial tire|1 +(noun)|radial|radial-ply tire|pneumatic tire|pneumatic tyre +radial vein|1 +(noun)|vena radialis|vein|vena|venous blood vessel +radial velocity|1 +(noun)|speed|velocity +radially symmetrical|1 +(adj)|centrosymmetric|symmetrical |symmetric +radian|1 +(noun)|rad|angular unit +radiance|3 +(noun)|glow|glowing|light|visible light|visible radiation +(noun)|radiancy|shine|effulgence|refulgence|refulgency|brightness +(noun)|happiness|felicity|good health|healthiness +radiancy|1 +(noun)|radiance|shine|effulgence|refulgence|refulgency|brightness +radiant|1 +(adj)|beaming|beamy|effulgent|refulgent|bright +radiant energy|1 +(noun)|energy +radiant flux|1 +(noun)|flux +radiant heating|1 +(noun)|heating|warming +radiate|8 +(verb)|emit|give out|give off +(verb)|emit|breathe|pass off +(verb)|ray|run|go|pass|lead|extend +(verb)|glow|beam|shine|look|appear|seem +(verb)|cause to be perceived +(verb)|glow|beam|shine|feel|experience +(verb)|issue|emerge|come out|come forth|go forth|egress +(verb)|diversify|change|alter|vary +radiating|1 +(adj)|divergent |diverging +radiation|7 +(noun)|energy +(noun)|emission|emanation +(noun)|radiation sickness|radiation syndrome|syndrome +(noun)|radioactivity|emission +(noun)|natural process|natural action|action|activity|spread|spreading +(noun)|neural structure +(noun)|radiotherapy|radiation therapy|actinotherapy|irradiation|therapy +radiation diagram|1 +(noun)|radiation pattern|pattern|graph|graphical record +radiation field|1 +(noun)|field|field of force|force field +radiation pattern|1 +(noun)|radiation diagram|pattern|graph|graphical record +radiation pressure|1 +(noun)|corpuscular-radiation pressure|pressure|pressure level|force per unit area +radiation pyrometer|1 +(noun)|pyrometer +radiation sickness|1 +(noun)|radiation syndrome|radiation|syndrome +radiation syndrome|1 +(noun)|radiation sickness|radiation|syndrome +radiation therapy|1 +(noun)|radiotherapy|radiation|actinotherapy|irradiation|therapy +radiator|3 +(noun)|natural object +(noun)|heater|warmer +(noun)|mechanism +radiator cap|1 +(noun)|cap +radiator grille|1 +(noun)|grille|grate|grating +radiator hose|1 +(noun)|hose|hosepipe +radical|11 +(adj)|extremist|ultra|immoderate +(adj)|revolutionary|new +(adj)|basic +(adj)|form|word form|signifier|descriptor +(adj)|radical |basal +(noun)|group|chemical group|unit|building block +(noun)|free radical|atom +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|character|grapheme|graphic symbol +(noun)|radical sign|mathematical notation +(noun)|root|root word|base|stem|theme|form|word form|signifier|descriptor +radical cell|1 +(noun)|terrorist cell|cell|cadre +radical chic|1 +(noun)|affectation|mannerism|pose|affectedness +radical hysterectomy|1 +(noun)|panhysterectomy|hysterectomy +radical mastectomy|1 +(noun)|mastectomy +radical sign|1 +(noun)|radical|mathematical notation +radicalism|1 +(noun)|political orientation|ideology|political theory +radicchio|1 +(noun)|chicory|curly endive +radicle|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +radiculitis|1 +(noun)|inflammation|redness|rubor +radiigera|1 +(noun)|Radiigera|genus Radiigera|fungus genus +radiigera fuscogleba|1 +(noun)|Radiigera fuscogleba|fungus +radio|5 +(adj)|energy +(noun)|radiocommunication|wireless|broadcasting +(noun)|radio receiver|receiving set|radio set|tuner|wireless|receiver|receiving system +(noun)|wireless|communication system +(verb)|communicate|intercommunicate +radio-controlled|1 +(adj)|guided +radio-controlled aircraft|1 +(noun)|drone|pilotless aircraft|heavier-than-air craft +radio-frequency spectrum|1 +(noun)|radio spectrum|spectrum +radio-gramophone|1 +(noun)|radio-phonograph|electronic equipment +radio-opacity|1 +(noun)|radiopacity|opacity +radio-opaque|1 +(adj)|radiopaque +radio-phonograph|1 +(noun)|radio-gramophone|electronic equipment +radio aerial|1 +(noun)|radio antenna|omnidirectional antenna|nondirectional antenna +radio announcer|1 +(noun)|announcer +radio antenna|1 +(noun)|radio aerial|omnidirectional antenna|nondirectional antenna +radio astronomy|1 +(noun)|astronomy|uranology +radio beacon|2 +(noun)|signal|signaling|sign +(noun)|beacon|radio station +radio beam|1 +(noun)|beam|signal|signaling|sign +radio brightness|1 +(noun)|intensity|strength|intensity level +radio broadcast|1 +(noun)|broadcast +radio chassis|1 +(noun)|chassis +radio compass|1 +(noun)|direction finder +radio detection and ranging|1 +(noun)|radar|microwave radar|radiolocation|measuring instrument|measuring system|measuring device +radio emission|1 +(noun)|radio wave|radio radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +radio frequency|1 +(noun)|frequency|frequence|oftenness +radio interferometer|1 +(noun)|radio telescope|radio reflector +radio link|1 +(noun)|link|communication system +radio news|1 +(noun)|newscast +radio noise|1 +(noun)|static|atmospherics|atmospheric static +radio observation|1 +(noun)|observation +radio operator|1 +(noun)|operator|manipulator +radio radiation|1 +(noun)|radio wave|radio emission|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +radio receiver|1 +(noun)|receiving set|radio set|radio|tuner|wireless|receiver|receiving system +radio reflector|1 +(noun)|radio telescope|astronomical telescope +radio set|1 +(noun)|radio receiver|receiving set|radio|tuner|wireless|receiver|receiving system +radio signal|1 +(noun)|radio wave|radio emission|radio radiation +radio source|1 +(noun)|radiator +radio spectrum|1 +(noun)|radio-frequency spectrum|spectrum +radio station|1 +(noun)|station +radio telescope|1 +(noun)|radio reflector|astronomical telescope +radio transmitter|1 +(noun)|transmitter|sender +radio wave|1 +(noun)|radio emission|radio radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +radioactive|1 +(adj)|radioactive |hot +radioactive dating|1 +(noun)|measurement|measuring|measure|mensuration +radioactive decay|1 +(noun)|decay|disintegration|nuclear reaction +radioactive dust|1 +(noun)|fallout|dust +radioactive iodine excretion test|1 +(noun)|radioactive iodine test +radioactive iodine test|1 +(noun)|diagnostic test|diagnostic assay +radioactive iodine uptake test|1 +(noun)|RAIU|radioactive iodine test +radioactive material|1 +(noun)|material|stuff +radioactive waste|1 +(noun)|radioactive material +radioactivity|1 +(noun)|radiation|emission +radioactivity unit|1 +(noun)|electromagnetic unit|emu +radiobiology|1 +(noun)|biology|biological science +radiocarbon|1 +(noun)|carbon 14|carbon|C|atomic number 6 +radiocarbon dating|1 +(noun)|carbon dating|carbon-14 dating|dating|geological dating +radiocarpal joint|1 +(noun)|wrist|carpus|wrist joint|articulatio radiocarpea|gliding joint|articulatio plana +radiochemist|1 +(noun)|nuclear chemist|chemist +radiochemistry|1 +(noun)|nuclear chemistry|chemistry|chemical science +radiochlorine|1 +(noun)|chlorine|Cl|atomic number 17 +radiocommunication|1 +(noun)|radio|wireless|broadcasting +radiogram|2 +(noun)|message +(noun)|radiograph|shadowgraph|skiagraph|skiagram|photograph|photo|exposure|pic +radiograph|1 +(noun)|radiogram|shadowgraph|skiagraph|skiagram|photograph|photo|exposure|pic +radiographer|1 +(noun)|specialist|medical specialist +radiographic|1 +(adj)|photography|picture taking +radiography|2 +(noun)|skiagraphy|photography +(noun)|photography|picture taking +radioimmunoassay|1 +(noun)|immunoassay|immunochemical assay +radioisotope|1 +(noun)|isotope +radiolaria|1 +(noun)|Radiolaria|order Radiolaria|animal order +radiolarian|1 +(noun)|actinopod +radiolocate|1 +(verb)|situate|locate +radiolocation|1 +(noun)|radar|microwave radar|radio detection and ranging|measuring instrument|measuring system|measuring device +radiologic technologist|1 +(noun)|scientist|man of science +radiological|1 +(adj)|imaging|tomography +radiologist|1 +(noun)|radiotherapist|specialist|medical specialist +radiology|2 +(noun)|medical science +(noun)|radioscopy|imaging|tomography +radiolucent|1 +(adj)|radiolucent +radiolysis|1 +(noun)|lysis +radiometer|1 +(noun)|meter +radiomicrometer|1 +(noun)|radiometer +radiopacity|1 +(noun)|radio-opacity|opacity +radiopaque|1 +(adj)|radiopaque |radio-opaque +radiopaque dye|1 +(noun)|dye|dyestuff +radiopharmaceutical|1 +(noun)|pharmaceutical +radiophone|1 +(noun)|radiotelephone|wireless telephone|telephone|phone|telephone set +radiophonic|1 +(adj)|radiotelephonic|wireless +radiophoto|1 +(noun)|radiophotograph|telephotograph +radiophotograph|1 +(noun)|radiophoto|telephotograph +radiophotography|1 +(noun)|telephotography +radioprotection|1 +(noun)|protection|shelter +radioscopy|1 +(noun)|radiology|imaging|tomography +radiosensitive|1 +(adj)|sensitive +radiosensitivity|1 +(noun)|photosensitivity|sensitivity|sensitiveness|sensibility +radiotelegraph|2 +(noun)|radiotelegraphy|wireless telegraphy|wireless +(noun)|radiotelegraphy|wireless telegraph|wireless telegraphy|radio|wireless +radiotelegraphic signal|1 +(noun)|telegraphic signal|signal|signaling|sign +radiotelegraphy|2 +(noun)|radiotelegraph|wireless telegraphy|wireless +(noun)|radiotelegraph|wireless telegraph|wireless telegraphy|radio|wireless +radiotelephone|2 +(noun)|radiotelephony|wireless telephone|wireless +(noun)|radiophone|wireless telephone|telephone|phone|telephone set +radiotelephonic|1 +(adj)|radiophonic|wireless +radiotelephony|1 +(noun)|radiotelephone|wireless telephone|wireless +radiotherapist|1 +(noun)|radiologist|specialist|medical specialist +radiotherapy|1 +(noun)|radiation therapy|radiation|actinotherapy|irradiation|therapy +radiotherapy equipment|1 +(noun)|equipment +radiothorium|1 +(noun)|thorium-228|thorium|Th|atomic number 90 +radish|3 +(noun)|root vegetable|cruciferous vegetable +(noun)|root +(noun)|Raphanus sativus|radish plant +radish plant|1 +(noun)|crucifer|cruciferous plant +radium|1 +(noun)|Ra|atomic number 88|metallic element|metal +radium therapy|1 +(noun)|Curietherapy|radiotherapy|radiation therapy|radiation|actinotherapy|irradiation +radius|5 +(noun)|r|length +(noun)|straight line +(noun)|region|part +(noun)|arm bone +(noun)|spoke|support +radius of curvature|1 +(noun)|radius|r +radius vector|2 +(noun)|vector +(noun)|vector +radix|1 +(noun)|base|number +radome|1 +(noun)|radar dome|housing +radon|1 +(noun)|Rn|atomic number 86|chemical element|element|noble gas|inert gas|argonon +radyera|1 +(noun)|Radyera|genus Radyera|dilleniid dicot genus +radyera farragei|1 +(noun)|bush hibiscus|Radyera farragei|Hibiscus farragei|shrub|bush +raetam|1 +(noun)|retem|juniper bush|juniper|Retama raetam|Genista raetam|shrub|bush +raf|2 +(noun)|Royal Air Force|RAF|air force|airforce +(noun)|Red Army Faction|RAF|terrorist organization|terrorist group|foreign terrorist organization|FTO +raffaello santi|1 +(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master +raffaello sanzio|1 +(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master +raffia|3 +(noun)|raphia|plant fiber|plant fibre +(noun)|fiber|fibre +(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus|liliopsid genus +raffia farinifera|1 +(noun)|raffia palm|Raffia farinifera|Raffia ruffia|palm|palm tree +raffia palm|1 +(noun)|Raffia farinifera|Raffia ruffia|palm|palm tree +raffia ruffia|1 +(noun)|raffia palm|Raffia farinifera|Raffia ruffia|palm|palm tree +raffia taedigera|1 +(noun)|jupati|jupaty|jupati palm|Raffia taedigera|raffia palm|Raffia farinifera|Raffia ruffia +raffia vinifera|1 +(noun)|bamboo palm|Raffia vinifera|raffia palm|Raffia farinifera|Raffia ruffia +raffinose|1 +(noun)|trisaccharide +raffish|2 +(adj)|dapper|dashing|jaunty|natty|rakish|smart|spiffy|snappy|spruce|fashionable |stylish +(adj)|devil-may-care|rakish|unconventional +raffishly|1 +(adv)|rakishly|carelessly +raffle|2 +(noun)|lottery|drawing +(verb)|raffle off|give|gift|present +raffle off|1 +(verb)|raffle|give|gift|present +raffles|2 +(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator|executive +(noun)|raffle|lottery|drawing +rafflesiaceae|1 +(noun)|Rafflesiaceae|family Rafflesiaceae|dicot family|magnoliopsid family +raft|5 +(noun)|float +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(verb)|transport +(verb)|travel|go|move|locomote +(verb)|manufacture|fabricate|construct +raft foundation|1 +(noun)|foundation|base|fundament|foot|groundwork|substructure|understructure +rafter|3 +(noun)|balk|baulk|beam +(noun)|raftsman|raftman|traveler|traveller +(verb)|supply|provide|render|furnish +raftered|1 +(adj)|ceilinged +raftman|1 +(noun)|raftsman|rafter|traveler|traveller +rafts|3 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|raft|float +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +raftsman|1 +(noun)|raftman|rafter|traveler|traveller +rag|11 +(noun)|shred|tag|tag end|tatter|piece of cloth|piece of material +(noun)|rag week|week|hebdomad +(noun)|ragtime|dance music|danceroom music|ballroom music +(noun)|tabloid|sheet|newspaper|paper +(noun)|practical joke +(verb)|torment|bedevil|crucify|dun|frustrate|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|annoy|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease +(verb)|play|spiel +(verb)|tease|razz|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock|bemock +(verb)|call on the carpet|rebuke|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +(verb)|break up|fragment|fragmentize|fragmentise +rag day|1 +(noun)|day +rag doll|1 +(noun)|doll|dolly +rag gourd|1 +(noun)|luffa|dishcloth gourd|sponge gourd|strainer vine|vine +rag paper|1 +(noun)|writing paper +rag trade|1 +(noun)|apparel industry|garment industry|fashion industry|fashion business|industry +rag week|1 +(noun)|rag|week|hebdomad +ragamuffin|1 +(noun)|tatterdemalion|urchin +ragbag|2 +(noun)|odds and ends|oddments|melange|farrago|hodgepodge|mishmash|mingle-mangle|hotchpotch|omnium-gatherum|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|bag +rage|7 +(noun)|fury|madness|anger|choler|ire +(noun)|anger|angriness +(noun)|passion|desire +(noun)|violence +(noun)|fad|craze|furor|furore|cult|fashion +(verb)|ramp|storm|act|behave|do +(verb)|be +ragee|1 +(noun)|finger millet|ragi|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet +ragged|3 +(adj)|worn +(adj)|tired +(adj)|uneven +ragged-fringed orchid|1 +(noun)|ragged orchid|ragged orchis|green fringed orchis|Habenaria lacera|fringed orchis|fringed orchid +ragged orchid|1 +(noun)|ragged orchis|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis|fringed orchid +ragged orchis|1 +(noun)|ragged orchid|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis|fringed orchid +ragged robin|1 +(noun)|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis|catchfly +raggedly|3 +(adv)|unevenly +(adv)|stragglingly +(adv)|jaggedly +raggedness|1 +(noun)|shabbiness|seediness|manginess +ragi|1 +(noun)|finger millet|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet +raging|3 +(adj)|hot|violent +(adj)|intense +(adj)|angry|furious|tempestuous|wild|stormy +raglan|1 +(noun)|garment +raglan sleeve|1 +(noun)|sleeve|arm +ragnar anton kittil frisch|1 +(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist|economic expert +ragnar frisch|1 +(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist|economic expert +ragnarok|1 +(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth +ragout|1 +(noun)|stew +ragpicker|1 +(noun)|unskilled person +ragpicker's disease|1 +(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax +ragsorter|1 +(noun)|worker +ragsorter's disease|1 +(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|woolsorter's pneumonia|woolsorter's disease|anthrax +ragtag|1 +(noun)|rabble|riffraff|ragtag and bobtail|folk|common people +ragtag and bobtail|1 +(noun)|rabble|riffraff|ragtag|folk|common people +ragtime|1 +(noun)|rag|dance music|danceroom music|ballroom music +ragusa|1 +(noun)|Dubrovnik|Ragusa|city|metropolis|urban center|port +ragweed|2 +(noun)|ragwort|tansy ragwort|benweed|Senecio jacobaea|weed +(noun)|ambrosia|bitterweed|weed +ragweed pollen|1 +(noun)|pollen|allergen +ragwort|2 +(noun)|tansy ragwort|ragweed|benweed|Senecio jacobaea|weed +(noun)|butterweed|Senecio glabellus|wildflower|wild flower +rahu|1 +(noun)|Rahu|Hindu deity +raid|6 +(noun)|foray|maraud|penetration|incursion +(noun)|embezzlement|peculation|defalcation|misapplication|misappropriation +(verb)|bust|attack|assail +(verb)|foray into|intrude on|invade|obtrude upon|encroach upon +(verb)|assume|usurp|seize|take over|arrogate +(verb)|search +raider|2 +(noun)|plunderer|pillager|looter|spoiler|despoiler|freebooter|thief|stealer +(noun)|corporate investor +raiding|1 +(adj)|marauding|predatory|offensive +rail|15 +(noun)|railing|barrier +(noun)|railway|railroad|railroad line|railway line|railway system +(noun)|track|rails|bar +(noun)|bar +(noun)|wading bird|wader +(verb)|inveigh|complain|kick|plain|sound off|quetch|kvetch +(verb)|rail in|enclose|hold in|confine +(verb)|supply|provide|render|furnish +(verb)|rail off|separate|divide +(verb)|transport +(verb)|train|ride +(verb)|lay|put down|repose +(verb)|fish +(verb)|vilify|revile|vituperate|abuse|clapperclaw|blackguard|shout +(verb)|fulminate|denounce +rail-splitter|1 +(noun)|splitter|laborer|manual laborer|labourer|jack +rail fence|1 +(noun)|fence|fencing +rail in|1 +(verb)|rail|enclose|hold in|confine +rail line|1 +(noun)|line|railway line|road|route +rail off|1 +(verb)|rail|separate|divide +rail technology|1 +(noun)|railroading|technology|engineering +railbird|1 +(noun)|sports fan|fan +railcar|1 +(noun)|car|railway car|railroad car|wheeled vehicle +railhead|2 +(noun)|storehouse|depot|entrepot|storage|store +(noun)|end +railing|2 +(noun)|rail|barrier +(noun)|material +raillery|1 +(noun)|banter|give-and-take|backchat|repartee +railroad|5 +(noun)|railway|railroad line|railway line|railway system|line +(noun)|railroad track|railway|track +(verb)|dragoon|sandbag|coerce|hale|squeeze|pressure|force +(verb)|supply|provide|render|furnish +(verb)|transport|send|ship +railroad bed|1 +(noun)|bed +railroad car|1 +(noun)|car|railcar|railway car|wheeled vehicle +railroad engineer|1 +(noun)|engineer|locomotive engineer|engine driver|operator|manipulator +railroad flat|1 +(noun)|apartment|flat +railroad line|1 +(noun)|railway|railroad|railway line|railway system|line +railroad man|1 +(noun)|trainman|railroader|railwayman|railway man|employee +railroad siding|1 +(noun)|siding|turnout|sidetrack|railroad track|railroad|railway +railroad station|1 +(noun)|railway station|railroad terminal|train station|train depot|terminal|terminus|depot +railroad terminal|1 +(noun)|railway station|railroad station|train station|train depot|terminal|terminus|depot +railroad ticket|1 +(noun)|train ticket|ticket +railroad tie|1 +(noun)|tie|crosstie|sleeper|brace|bracing +railroad track|1 +(noun)|railroad|railway|track +railroad train|1 +(noun)|train|public transport +railroad tunnel|1 +(noun)|tunnel +railroad vine|1 +(noun)|beach morning glory|Ipomoea pes-caprae|morning glory +railroad worm|1 +(noun)|apple maggot|Rhagoletis pomonella|fruit fly|pomace fly +railroader|1 +(noun)|trainman|railroad man|railwayman|railway man|employee +railroading|1 +(noun)|rail technology|technology|engineering +rails|6 +(noun)|track|rail|bar +(noun)|railing|rail|barrier +(noun)|rail|railway|railroad|railroad line|railway line|railway system +(noun)|track|rail|bar +(noun)|rail|bar +(noun)|rail|wading bird|wader +railway|2 +(noun)|railroad|railroad line|railway line|railway system|line +(noun)|railroad track|railroad|track +railway car|1 +(noun)|car|railcar|railroad car|wheeled vehicle +railway junction|1 +(noun)|junction +railway line|2 +(noun)|railway|railroad|railroad line|railway system|line +(noun)|line|rail line|road|route +railway locomotive|1 +(noun)|locomotive|engine|locomotive engine|self-propelled vehicle +railway man|2 +(noun)|trainman|railroader|railroad man|railwayman|employee +(noun)| +railway station|1 +(noun)|railroad station|railroad terminal|train station|train depot|terminal|terminus|depot +railway system|1 +(noun)|railway|railroad|railroad line|railway line|line +railway yard|1 +(noun)|yard|tract|piece of land|piece of ground|parcel of land|parcel +railwayman|1 +(noun)|trainman|railroader|railroad man|railway man|employee +raiment|2 +(noun)|array|regalia|clothing|article of clothing|vesture|wear +(verb)|dress|clothe|enclothe|garb|tog|garment|habilitate|fit out|apparel|change state|turn +raimentless|1 +(adj)|clothesless|garmentless|unclothed +rain|4 +(noun)|rainfall|precipitation|downfall +(noun)|rainwater|fresh water +(noun)|pelting|sequence|chronological sequence|succession|successiveness|chronological succession +(verb)|rain down|precipitate|come down|fall +rain-giver|1 +(noun)|Jupiter Pluvius|Rain-giver|Jupiter|Jove +rain-in-the-face|1 +(noun)|Rain-in-the-Face|Indian chief|Indian chieftain|Sioux|Siouan +rain-wash|1 +(noun)|washout|wash +rain barrel|1 +(noun)|cistern +rain buckets|1 +(verb)|pour|pelt|stream|rain cats and dogs|rain|rain down +rain cats and dogs|1 +(verb)|pour|pelt|stream|rain buckets|rain|rain down +rain check|2 +(noun)|promise +(noun)|stub|ticket stub +rain cloud|1 +(noun)|nimbus|nimbus cloud|cloud +rain dance|1 +(noun)|ritual dancing|ritual dance|ceremonial dance +rain date|1 +(noun)|date +rain down|1 +(verb)|rain|precipitate|come down|fall +rain forest|2 +(noun)|rainforest|forest|woodland|timberland|timber +(noun)| +rain gage|1 +(noun)|rain gauge|pluviometer|udometer|gauge|gage +rain gauge|1 +(noun)|rain gage|pluviometer|udometer|gauge|gage +rain out|1 +(verb)|wash out|prevent|keep +rain shadow|1 +(noun)|area|country +rain shower|1 +(noun)|shower|rain|rainfall +rain stick|1 +(noun)|percussion instrument|percussive instrument +rain tree|1 +(noun)|saman|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia|albizia +rainbow|2 +(noun)|bow|arc +(noun)|promise|hope +rainbow cactus|1 +(noun)|cactus +rainbow fish|1 +(noun)|guppy|Lebistes reticulatus|cyprinodont +rainbow lorikeet|1 +(noun)|Trichoglossus moluccanus|lorikeet +rainbow perch|1 +(noun)|rainbow seaperch|Hipsurus caryi|surfperch|surffish|surf fish +rainbow pink|1 +(noun)|china pink|Dianthus chinensis|pink|garden pink +rainbow runner|1 +(noun)|Elagatis bipinnulata|jack +rainbow seaperch|1 +(noun)|rainbow perch|Hipsurus caryi|surfperch|surffish|surf fish +rainbow shower|1 +(noun)|Cassia javonica|cassia +rainbow smelt|2 +(noun)|American smelt|smelt +(noun)|Osmerus mordax|smelt +rainbow trout|2 +(noun)|trout +(noun)|Salmo gairdneri|trout +raincoat|1 +(noun)|waterproof|coat +raindrop|1 +(noun)|drop|driblet +rainer maria rilke|1 +(noun)|Rilke|Rainer Maria Rilke|poet +rainfall|1 +(noun)|rain|precipitation|downfall +rainfly|1 +(noun)|tent-fly|fly sheet|fly|tent flap|flap +rainforest|1 +(noun)|rain forest|forest|woodland|timberland|timber +raining|1 +(adj)|descending +rainless|1 +(adj)|dry +rainmaker|2 +(noun)|executive|executive director +(noun)|medicine man +rainmaking|1 +(noun)|production +rainproof|1 +(adj)|waterproof|waterproofed|tight +rainstorm|1 +(noun)|storm|violent storm|rain|rainfall +rainwater|1 +(noun)|rain|fresh water +rainy|2 +(adj)|showery|wet +(adj)|pluvial|pluvious|inclement +rainy day|1 +(noun)|time period|period of time|period +rainy season|1 +(noun)|season|time of year +raisable|1 +(adj)|raiseable|mobile +raise|31 +(noun)|rise|wage hike|hike|wage increase|salary increase|increase|increment +(noun)|ascent|acclivity|rise|climb|upgrade|slope|incline|side +(noun)|gamble +(noun)|lift|heave|propulsion|actuation +(verb)|increase +(verb)|lift|elevate|get up|bring up|move|displace +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|collect|take in +(verb)|grow|farm|produce|cultivate +(verb)|rear|bring up|nurture|parent +(verb)|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make|create +(verb)|lift|move|displace +(verb)|erect|rear|set up|put up|construct|build|make +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|provoke|make|create +(verb)|make|create +(verb)|lift|elevate|change|alter|modify +(verb)|enhance|heighten|intensify|compound|heighten|deepen +(verb)|promote|upgrade|advance|kick upstairs|elevate|delegate|designate|depute|assign +(verb)|leaven|prove|lift|elevate|get up|bring up +(verb)|bid|call +(verb)|bet|wager|play +(verb)|recruit|levy|enlist|draft|muster in +(verb)|bring up|mention|advert|bring up|cite|name|refer +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|incite|instigate|set off|stir up +(verb)|reach|get through|get hold of|contact +(verb)|multiply +(verb)|bring out|set off +(verb)|lift|better|improve|amend|ameliorate|meliorate +(verb)|lift|end|terminate +(verb)|resurrect|upraise|resuscitate|revive +raise hell|1 +(verb)|object +raise the roof|1 +(verb)|anger|see red +raise up|1 +(verb)|agitate|vex|disturb|commove|shake up|stir up|move|displace +raiseable|1 +(adj)|raisable|mobile +raised|4 +(adj)|raised |elevated|up|upraised|lifted +(adj)|brocaded|embossed|adorned |decorated +(adj)|leavened +(adj)|inflated|increased +raised doughnut|1 +(noun)|doughnut|donut|sinker +raiser|2 +(noun)|bridge partner +(noun)|agriculturist|cultivator|grower|farmer|husbandman|granger|sodbuster +raisin|1 +(noun)|dried fruit +raisin-nut cookie|1 +(noun)|cookie|cooky|biscuit +raisin bran|1 +(noun)|cold cereal|dry cereal +raisin bread|1 +(noun)|bread|breadstuff|staff of life +raisin cookie|1 +(noun)|cookie|cooky|biscuit +raisin moth|1 +(noun)|Cadra figulilella|pyralid|pyralid moth +raising|4 +(adj)|increasing +(noun)|elevation|lift|rise|rising|ascent|ascension +(noun)|rearing|nurture|upbringing +(noun)|breeding|bringing up|fostering|fosterage|nurture|rearing|upbringing|socialization|socialisation|acculturation|enculturation +raising hell|1 +(noun)|hell raising|aggression +raison d'etre|2 +(noun)|rationalization|rationalisation +(noun)|function|purpose|role|use +raita|1 +(noun)|side dish|entremots +raiu|1 +(noun)|radioactive iodine uptake test|RAIU|radioactive iodine test +raj|1 +(noun)|dominion|rule +raja|2 +(noun)|rajah|aristocrat|blue blood|patrician +(noun)|Raja|genus Raja|fish genus +raja batis|1 +(noun)|gray skate|Raja batis|skate +raja erinacea|1 +(noun)|little skate|Raja erinacea|skate +raja laevis|1 +(noun)|barndoor skate|Raja laevis|skate +raja radiata|1 +(noun)|thorny skate|Raja radiata|skate +rajab|1 +(noun)|Rajab|Islamic calendar month +rajah|1 +(noun)|raja|aristocrat|blue blood|patrician +rajanya|1 +(noun)|varna +rajidae|1 +(noun)|Rajidae|family Rajidae|fish family +rajiformes|1 +(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order +rajpoot|1 +(noun)|Rajput|Rajpoot|Hindu|Hindoo|Hindustani +rajput|1 +(noun)|Rajput|Rajpoot|Hindu|Hindoo|Hindustani +rakaposhi|1 +(noun)|Rakaposhi|mountain peak +rake|9 +(noun)|profligate|rip|blood|roue|libertine|debauchee|rounder +(noun)|pitch|slant|gradient|slope +(noun)|tool +(verb)|move|displace +(verb)|smooth|smoothen +(verb)|sweep +(verb)|scan|skim|glance over|run down|examine|see +(verb)|gather|garner|collect|pull together|rake off|rake in +(verb)|graze|crease|brush +rake-off|1 +(noun)|vigorish|cut +rake handle|1 +(noun)|handle|grip|handgrip|hold +rake in|1 +(verb)|shovel in|gain|take in|clear|make|earn|realize|realise|pull in|bring in +rake off|1 +(verb)|gain|take in|clear|make|earn|realize|realise|pull in|bring in +rake up|1 +(verb)|discover|find +rakish|2 +(adj)|dapper|dashing|jaunty|natty|raffish|smart|spiffy|snappy|spruce|fashionable |stylish +(adj)|devil-may-care|raffish|unconventional +rakishly|1 +(adv)|raffishly|carelessly +rakishness|2 +(noun)|dissoluteness|incontinence|self-gratification +(noun)|jauntiness|nattiness|dapperness|chic|chicness|modishness|smartness|stylishness|swank|last word +rale|1 +(noun)|rattle|rattling|noise +ralegh|1 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +raleigh|2 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +(noun)|Raleigh|capital of North Carolina|state capital +rallentando|1 +(adj)|ritardando|ritenuto|rit.|decreasing +rallidae|1 +(noun)|Rallidae|family Rallidae|bird family +rally|10 +(noun)|mass meeting|gathering|assemblage +(noun)|rallying|deed|feat|effort|exploit +(noun)|convalescence|recuperation|recovery +(noun)|automobile race|auto race|car race +(noun)|exchange|group action +(verb)|beat up|drum up|collect|pull in +(verb)|call up|mobilize|mobilise|call|send for +(verb)|muster|summon|come up|muster up|gather|garner|collect|pull together +(verb)|rebound|recover|go back|recuperate +(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|ride|mock|bemock +rallying|3 +(adj)|encouraging +(noun)|mobilization|mobilisation +(noun)|rally|deed|feat|effort|exploit +rallying cry|2 +(noun)|war cry|battle cry|cry|watchword|motto|slogan|catchword|shibboleth +(noun)|war cry|war whoop|battle cry|cry|outcry|call|yell|shout|vociferation +rallying point|1 +(noun)|point +ralph barton perry|1 +(noun)|Perry|Ralph Barton Perry|philosopher +ralph bunche|1 +(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat|diplomatist +ralph ellison|1 +(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer|author +ralph johnson bunche|1 +(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat|diplomatist +ralph richardson|1 +(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor|histrion|player|thespian|role player +ralph vaughan williams|1 +(noun)|Vaughan Williams|Ralph Vaughan Williams|composer +ralph waldo ellison|1 +(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer|author +ralph waldo emerson|1 +(noun)|Emerson|Ralph Waldo Emerson|writer|author +ram|9 +(noun)|random-access memory|random access memory|random memory|RAM|read/write memory|volatile storage +(noun)|Aries|Ram|person|individual|someone|somebody|mortal|human|soul +(noun)|Aries|Aries the Ram|Ram|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|tool +(noun)|tup|sheep +(verb)|ram down|pound|thrust +(verb)|force|drive|thrust|ram down +(verb)|crash|collide|clash +(verb)|jam|jampack|chock up|cram|wad|stuff +ram's-head|1 +(noun)|ram's-head lady's slipper|Cypripedium arietinum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +ram's-head lady's slipper|1 +(noun)|ram's-head|Cypripedium arietinum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +ram's horn|1 +(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|proboscis flower|Proboscidea louisianica|herb|herbaceous plant +ram disk|1 +(noun)|RAM disk|drive +ram down|2 +(verb)|ram|pound|thrust +(verb)|hammer in|drill in|beat in|drill +ram home|1 +(verb)|drive home|press home|stress|emphasize|emphasise|punctuate|accent|accentuate +rama|1 +(noun)|Rama|avatar +ramachandra|1 +(noun)|Ramachandra|Rama +ramadan|2 +(noun)|Ramadan|Islamic calendar month +(noun)|Ramadan|fast|fasting +ramalina|1 +(noun)|Ramalina|genus Ramalina|fungus genus +ramanavami|1 +(noun)|Ramanavami|holiday +ramate|1 +(adj)|branched|branching|ramose|ramous|branchy +ramayana|1 +(noun)|Ramayana|Sanskrit literature +ramble|3 +(noun)|amble|promenade|saunter|stroll|perambulation|walk +(verb)|ramble on|jog|continue|go on|carry on|proceed +(verb)|roll|wander|swan|stray|tramp|roam|cast|rove|range|drift|vagabond|travel|go|move|locomote +ramble on|1 +(verb)|ramble|jog|continue|go on|carry on|proceed +rambler|2 +(noun)|pedestrian|walker|footer +(noun)|communicator +rambling|2 +(adj)|digressive|discursive|excursive|indirect +(adj)|meandering|wandering|winding|indirect +ramblingly|1 +(adv)|discursively +rambotan|2 +(noun)|rambutan|rambutan tree|Nephelium lappaceum|fruit tree +(noun)|rambutan|edible fruit +rambouillet|1 +(noun)|Rambouillet|domestic sheep|Ovis aries +rambunctious|1 +(adj)|boisterous|robustious|rumbustious|unruly|disorderly +rambutan|2 +(noun)|rambotan|rambutan tree|Nephelium lappaceum|fruit tree +(noun)|rambotan|edible fruit +rambutan tree|1 +(noun)|rambutan|rambotan|Nephelium lappaceum|fruit tree +rameau|1 +(noun)|Rameau|Jean-Philippe Rameau|composer +ramee|1 +(noun)|ramie|Chinese silk plant|China grass|Boehmeria nivea|false nettle|bog hemp +ramekin|2 +(noun)|ramequin|dish +(noun)|ramequin|dish +ramequin|2 +(noun)|ramekin|dish +(noun)|ramekin|dish +rameses|1 +(noun)|Rameses|Ramesses|Ramses|king|male monarch +rameses ii|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +rameses the great|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +ramesses|1 +(noun)|Rameses|Ramesses|Ramses|king|male monarch +ramesses ii|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +ramesses the great|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +ramie|1 +(noun)|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle|bog hemp +ramification|4 +(noun)|branching|fork|forking|division +(noun)|branch|fork|leg|subfigure +(noun)|complication|development +(noun)|placement|arrangement +ramify|3 +(verb)|complexify|change +(verb)|branch|grow +(verb)|branch|fork|furcate|separate|diverge +ramjet|1 +(noun)|ramjet engine|atherodyde|athodyd|flying drainpipe|jet engine +ramjet engine|1 +(noun)|ramjet|atherodyde|athodyd|flying drainpipe|jet engine +ramman|1 +(noun)|Ramman|Semitic deity +rammer|1 +(noun)|ram +ramon lully|1 +(noun)|Lully|Raymond Lully|Ramon Lully|philosopher +ramon y cajal|1 +(noun)|Ramon y Cajal|Santiago Ramon y Cajal|histologist +ramona|1 +(noun)|common sage|Salvia officinalis|sage|salvia +ramontchi|1 +(noun)|governor's plum|governor plum|Madagascar plum|batoko palm|Flacourtia indica|shrub|bush +ramose|1 +(adj)|branched|branching|ramous|ramate|branchy +ramous|1 +(adj)|branched|branching|ramose|ramate|branchy +ramp|8 +(noun)|incline|inclined plane +(noun)|wild leek|Allium tricoccum|alliaceous plant +(noun)|stairway|staircase|stairs|steps +(verb)|rage|storm|act|behave|do +(verb)|supply|provide|render|furnish +(verb)|model|pose|sit|posture +(verb)|climb|climb up|mount|go up +(verb)|stand|stand up +ramp up|1 +(verb)|build up|work up|build|increase +rampage|2 +(noun)|violent disorder|disturbance +(verb)|act|move +rampageous|1 +(adj)|violent +rampant|2 +(adj)|uncontrolled +(adj)|rearing|erect |vertical|upright +rampant arch|1 +(noun)|arch +rampantly|1 +(adv)|wild +rampart|1 +(noun)|bulwark|wall|embankment +ramphastidae|1 +(noun)|Ramphastidae|family Ramphastidae|bird family +ramphomicron|1 +(noun)|Ramphomicron|genus Ramphomicron|bird genus +rampion|1 +(noun)|rampion bellflower|Campanula rapunculus|campanula|bellflower +rampion bellflower|1 +(noun)|rampion|Campanula rapunculus|campanula|bellflower +ramrod|3 +(noun)|rod +(noun)|overseer|superintendent +(noun)|rod +ramsay hunt syndrome|1 +(noun)|Ramsay Hunt syndrome|syndrome +ramses|1 +(noun)|Rameses|Ramesses|Ramses|king|male monarch +ramses ii|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +ramses the great|1 +(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses|Ramesses|Ramses +ramshackle|1 +(adj)|bedraggled|broken-down|dilapidated|tatterdemalion|tumble-down|unsound|damaged +ramsons|1 +(noun)|wild garlic|wood garlic|Ramsons|Allium ursinum|alliaceous plant +ramus|1 +(noun)|bone|os +ran into|4 +(verb)|meet|encounter|run across|come across|see +(verb)|run into|encounter|be +(verb)|run into|bump into|jar against|butt against|knock against|hit|strike|impinge on|run into|collide with +(verb)|hit|strike|impinge on|run into|collide with|touch +rana|1 +(noun)|Rana|genus Rana|amphibian genus +rana cascadae|1 +(noun)|cascades frog|Rana cascadae|true frog|ranid +rana catesbeiana|1 +(noun)|bullfrog|Rana catesbeiana|true frog|ranid +rana clamitans|1 +(noun)|green frog|spring frog|Rana clamitans|true frog|ranid +rana goliath|1 +(noun)|goliath frog|Rana goliath|true frog|ranid +rana palustris|1 +(noun)|pickerel frog|Rana palustris|true frog|ranid +rana pipiens|1 +(noun)|leopard frog|spring frog|Rana pipiens|true frog|ranid +rana sylvatica|1 +(noun)|wood-frog|wood frog|Rana sylvatica|true frog|ranid +rana tarahumarae|1 +(noun)|tarahumara frog|Rana tarahumarae|true frog|ranid +rana temporaria|1 +(noun)|grass frog|Rana temporaria|true frog|ranid +ranales|1 +(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order +ranalian complex|1 +(noun)|Magnoliidae|subclass Magnoliidae|class +ranatra|1 +(noun)|Ranatra|genus Ranatra|arthropod genus +ranch|2 +(noun)|spread|cattle ranch|cattle farm|farm +(verb)|farm +ranch hand|1 +(noun)|hired hand|hand|hired man +ranch house|1 +(noun)|house +rancher|1 +(noun)|farmer|husbandman|granger|sodbuster +ranching|1 +(noun)|farming|agriculture|husbandry +rancid|2 +(adj)|stale +(adj)|sour|malodorous |malodourous +rancor|1 +(noun)|resentment|bitterness|gall|rancour|hostility|enmity|ill will +rancorous|1 +(adj)|resentful +rancour|1 +(noun)|resentment|bitterness|gall|rancor|hostility|enmity|ill will +rand|3 +(noun)|South African monetary unit +(noun)|Rand|Ayn Rand|writer|author +(noun)|Witwatersrand|Rand|Reef|region|part +randall jarrell|1 +(noun)|Jarrell|Randall Jarrell|poet +random|2 +(adj)|random |ergodic|haphazard|hit-or-miss|stochastic +(adj)|unselected +random-access memory|2 +(noun)|random access memory|random memory|RAM|read/write memory|volatile storage +(noun)| +random access memory|1 +(noun)|random-access memory|random memory|RAM|read/write memory|volatile storage +random memory|1 +(noun)|random-access memory|random access memory|RAM|read/write memory|volatile storage +random number generator|1 +(noun)|routine|subroutine|subprogram|procedure|function +random sample|2 +(noun)|sample distribution|sample|sampling +(noun)|sample +random sampling|1 +(noun)|sampling +random variable|1 +(noun)|variate|variant|stochastic variable|chance variable|variable|variable quantity +random walk|1 +(noun)|stochastic process +randomisation|1 +(noun)|randomization|organization|organisation +randomise|1 +(verb)|randomize|disarrange +randomised|1 +(adj)|randomized|irregular +randomization|1 +(noun)|randomisation|organization|organisation +randomize|1 +(verb)|randomise|disarrange +randomized|1 +(adj)|randomised|irregular +randomly|1 +(adv)|indiscriminately|haphazardly|willy-nilly|arbitrarily|at random|every which way +randomness|2 +(noun)|entropy|S|physical property +(noun)|haphazardness|stochasticity|noise|irregularity|unregularity +randy|1 +(adj)|aroused|horny|ruttish|turned on|sexy +ranee|1 +(noun)|rani|aristocrat|blue blood|patrician +range|16 +(noun)|scope|reach|orbit|compass|ambit|extent +(noun)|reach|limit +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|mountain range|range of mountains|chain|mountain chain|chain of mountains|geological formation|formation +(noun)|facility|installation +(noun)|limit|limit point|point of accumulation +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|compass|reach|grasp|capability|capableness|potentiality +(noun)|stove|kitchen stove|kitchen range|cooking stove|kitchen appliance +(verb)|run|be +(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|drift|vagabond|travel|go|move|locomote +(verb)|straddle|constitute|represent|make up|comprise|be +(verb)|array|lay out|set out|arrange|set up +(verb)|crop|browse|graze|pasture|feed|eat +(verb)|feed|give +(verb)|rate|rank|order|grade|place|judge +range animal|1 +(noun)|animal|animate being|beast|brute|creature|fauna +range finder|2 +(noun)|rangefinder|measuring instrument|measuring system|measuring device +(noun)| +range hood|1 +(noun)|hood|exhaust hood +range in|1 +(verb)|home in|zero in|target|aim|place|direct|point +range of mountains|1 +(noun)|range|mountain range|chain|mountain chain|chain of mountains|geological formation|formation +range pole|1 +(noun)|ranging pole|flagpole|surveying instrument|surveyor's instrument +rangefinder|1 +(noun)|range finder|measuring instrument|measuring system|measuring device +rangeland|1 +(noun)|land|ground|soil +ranger|3 +(noun)|Texas Ranger|Ranger|lawman|law officer|peace officer +(noun)|fire warden|forest fire fighter|official|functionary|fireman|firefighter|fire fighter|fire-eater +(noun)|commando|serviceman|military man|man|military personnel +rangifer|1 +(noun)|Rangifer|genus Rangifer|mammal genus +rangifer arcticus|1 +(noun)|barren ground caribou|Rangifer arcticus|caribou|reindeer|Greenland caribou|Rangifer tarandus +rangifer caribou|1 +(noun)|woodland caribou|Rangifer caribou|caribou|reindeer|Greenland caribou|Rangifer tarandus +rangifer tarandus|1 +(noun)|caribou|reindeer|Greenland caribou|Rangifer tarandus|deer|cervid +ranging|1 +(adj)|travel|go|move|locomote +ranging pole|1 +(noun)|range pole|flagpole|surveying instrument|surveyor's instrument +rangoon|1 +(noun)|Yangon|Rangoon|national capital +rangpur|1 +(noun)|rangpur lime|lemanderin|Citrus limonia|citrus|citrus tree +rangpur lime|1 +(noun)|rangpur|lemanderin|Citrus limonia|citrus|citrus tree +rangy|3 +(adj)|gangling|gangly|lanky|tall +(adj)|mobile +(adj)|large +rani|1 +(noun)|ranee|aristocrat|blue blood|patrician +ranid|1 +(noun)|true frog|frog|toad|toad frog|anuran|batrachian|salientian +ranidae|1 +(noun)|Ranidae|family Ranidae|amphibian family +ranier|1 +(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak +ranitidine|1 +(noun)|Zantac|histamine blocker|antacid|gastric antacid|alkalizer|alkaliser|antiacid +rank|13 +(adj)|fertile +(adj)|offensive +(adj)|crying|egregious|flagrant|glaring|gross|conspicuous |obvious +(adj)|absolute|downright|out-and-out|right-down|sheer|complete +(adj)|abundant +(noun)|line +(noun)|status|position +(noun)|rank and file|force|personnel +(noun)|social station|social status|social rank|status|position +(noun)|membership|body +(verb)|be +(verb)|rate|range|order|grade|place|judge +(verb)|outrank|excel|stand out|surpass +rank-difference correlation|1 +(noun)|rank-order correlation coefficient|rank-order correlation|rank-difference correlation coefficient|nonparametric statistic|distribution free statistic +rank-difference correlation coefficient|1 +(noun)|rank-order correlation coefficient|rank-order correlation|rank-difference correlation|nonparametric statistic|distribution free statistic +rank-order correlation|1 +(noun)|rank-order correlation coefficient|rank-difference correlation coefficient|rank-difference correlation|nonparametric statistic|distribution free statistic +rank-order correlation coefficient|1 +(noun)|rank-order correlation|rank-difference correlation coefficient|rank-difference correlation|nonparametric statistic|distribution free statistic +rank and file|2 +(noun)|rank|force|personnel +(noun)|people +rank order|1 +(noun)|order|ordering +ranked|1 +(adj)|graded|stratified|hierarchical |hierarchal|hierarchic +ranker|2 +(noun)|commissioned officer +(noun)|soldier +rankin|1 +(noun)|Rankin|Jeannette Rankin|suffragist|politician|politico|pol|political leader +rankine|1 +(noun)|Rankine|temperature unit +rankine scale|1 +(noun)|Rankine scale|temperature scale +ranking|3 +(adj)|commanding|top-level|top-ranking|superior +(adj)|superior|higher-ranking|senior +(noun)|standing +rankle|1 +(verb)|eat into|fret|grate|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +rankness|1 +(noun)|malodorousness|stinkiness|foulness|olfactory property|smell|aroma|odor|odour|scent +ransack|2 +(verb)|plunder|despoil|loot|reave|strip|rifle|pillage|foray|take +(verb)|comb|search +ransacked|1 +(adj)|looted|pillaged|plundered|empty +ransacking|1 +(noun)|rummage|search|hunt|hunting +ransom|4 +(noun)|ransom money|cost +(noun)|payment|defrayal|defrayment +(noun)|recovery|retrieval +(verb)|redeem|exchange|change|interchange +ransom money|1 +(noun)|ransom|cost +ransomed|2 +(adj)|redeemed|saved +(adj)|saved +rant|3 +(noun)|harangue|ranting|declamation +(noun)|bombast|fustian|claptrap|blah|grandiosity|magniloquence|grandiloquence|rhetoric +(verb)|mouth off|jabber|spout|rabbit on|rave|talk|speak|utter|mouth|verbalize|verbalise +ranter|1 +(noun)|raver|speaker|talker|utterer|verbalizer|verbaliser +ranting|1 +(noun)|harangue|rant|declamation +ranula|1 +(noun)|cyst +ranunculaceae|1 +(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|crowfoot family|magnoliid dicot family +ranunculales|1 +(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order +ranunculus|1 +(noun)|Ranunculus|genus Ranunculus|magnoliid dicot genus +ranunculus acris|1 +(noun)|meadow buttercup|tall buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranunculus aquatilis|1 +(noun)|water crowfoot|water buttercup|Ranunculus aquatilis|aquatic plant|water plant|hydrophyte|hydrophytic plant +ranunculus bulbosus|1 +(noun)|common buttercup|Ranunculus bulbosus|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranunculus ficaria|1 +(noun)|lesser celandine|pilewort|Ranunculus ficaria|flower +ranunculus flammula|1 +(noun)|lesser spearwort|Ranunculus flammula|marsh plant|bog plant|swamp plant +ranunculus glaberrimus|1 +(noun)|sagebrush buttercup|Ranunculus glaberrimus|wildflower|wild flower +ranunculus lingua|1 +(noun)|greater spearwort|Ranunculus lingua|marsh plant|bog plant|swamp plant +ranunculus lyalii|1 +(noun)|mountain lily|Mount Cook lily|Ranunculus lyalii|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranunculus occidentalis|1 +(noun)|western buttercup|Ranunculus occidentalis|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranunculus repens|1 +(noun)|creeping buttercup|creeping crowfoot|Ranunculus repens|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranunculus sceleratus|1 +(noun)|cursed crowfoot|celery-leaved buttercup|Ranunculus sceleratus|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +ranvier's nodes|1 +(noun)|Ranvier's nodes|nodes of Ranvier|opening|gap +raoul dufy|1 +(noun)|Dufy|Raoul Dufy|painter +raoulia|1 +(noun)|Raoulia|genus Raoulia|asterid dicot genus +raoulia australis|1 +(noun)|sheep plant|vegetable sheep|Raoulia lutescens|Raoulia australis|herb|herbaceous plant +raoulia lutescens|1 +(noun)|sheep plant|vegetable sheep|Raoulia lutescens|Raoulia australis|herb|herbaceous plant +rap|10 +(noun)|blame|reproach +(noun)|strike|tap|bump|blow +(noun)|pat|tap|sound +(noun)|conversation +(noun)|rap music|hip-hop|popular music|popular music genre|black music|African-American music +(noun)|knock|belt|whack|whang|blow +(verb)|knap|strike +(verb)|tap|knock|pink|sound|go +(verb)|perform +(verb)|talk|speak +rap group|1 +(noun)|gathering|assemblage +rap music|1 +(noun)|rap|hip-hop|popular music|popular music genre|black music|African-American music +rap session|1 +(noun)|conversation +rap sheet|1 +(noun)|blotter|day book|police blotter|charge sheet|written record|written account +rapacious|3 +(adj)|predatory|raptorial|ravening|vulturine|vulturous|aggressive +(adj)|ravening|voracious|acquisitive +(adj)|edacious|esurient|ravening|ravenous|voracious|wolfish|gluttonous +rapaciousness|1 +(noun)|edacity|esurience|rapacity|voracity|voraciousness|gluttony +rapacity|2 +(noun)|edacity|esurience|rapaciousness|voracity|voraciousness|gluttony +(noun)|avarice|greed|covetousness|avaritia|mortal sin|deadly sin +rapateaceae|1 +(noun)|Rapateaceae|family Rapateaceae|monocot family|liliopsid family +rape|5 +(noun)|colza|Brassica napus|mustard +(noun)|rapine|plundering|pillage|pillaging +(noun)|violation|assault|ravishment|sexual assault|sexual abuse|sex crime|sex offense +(verb)|ravish|violate|assault|dishonor|dishonour|outrage|assail|assault|set on|attack +(verb)|spoil|despoil|violate|plunder|destroy|ruin +rape conviction|1 +(noun)|conviction|judgment of conviction|condemnation|sentence +rape oil|1 +(noun)|rapeseed oil|colza oil|oil +rape suspect|1 +(noun)|suspect +raped|2 +(adj)|despoiled|pillaged|ravaged|sacked|destroyed +(adj)|assaulted|molested|abused |ill-treated|maltreated|mistreated +raper|1 +(noun)|rapist|attacker|aggressor|assailant|assaulter|criminal|felon|crook|outlaw|malefactor +rapeseed|1 +(noun)|oilseed +rapeseed oil|1 +(noun)|rape oil|colza oil|oil +raphael|2 +(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master +(noun)|Raphael|archangel +raphanus|1 +(noun)|Raphanus|genus raphanus|dilleniid dicot genus +raphanus raphanistrum|1 +(noun)|jointed charlock|wild radish|wild rape|runch|Raphanus raphanistrum|weed +raphanus sativus|1 +(noun)|radish|Raphanus sativus|radish plant +raphanus sativus longipinnatus|1 +(noun)|daikon|Japanese radish|Raphanus sativus longipinnatus|radish plant +raphe|1 +(noun)|rhaphe|ridge +raphia|2 +(noun)|raffia|plant fiber|plant fibre +(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus|liliopsid genus +raphicerus|1 +(noun)|Raphicerus|genus Raphicerus|mammal genus +raphicerus campestris|1 +(noun)|steenbok|steinbok|Raphicerus campestris|antelope +raphidae|1 +(noun)|Raphidae|family Raphidae|bird family +raphidiidae|1 +(noun)|Raphidiidae|family Raphidiidae|arthropod family +raphus|1 +(noun)|Raphus|genus Raphus|bird genus +raphus cucullatus|1 +(noun)|dodo|Raphus cucullatus|columbiform bird +rapid|3 +(adj)|fast +(adj)|speedy|fast +(noun)|waterway +rapid city|1 +(noun)|Rapid City|town +rapid climb|1 +(noun)|rapid growth|zoom|rise|rising|ascent|ascension +rapid eye movement|1 +(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|REM|sleep|slumber +rapid eye movement sleep|1 +(noun)|paradoxical sleep|REM sleep|rapid eye movement|REM|sleep|slumber +rapid growth|1 +(noun)|rapid climb|zoom|rise|rising|ascent|ascension +rapid transit|1 +(noun)|mass rapid transit|public transit +rapidity|1 +(noun)|celerity|quickness|pace|rate +rapidly|1 +(adv)|quickly|speedily|chop-chop|apace +rapier|1 +(noun)|tuck|sword|blade|brand|steel +rapine|1 +(noun)|rape|plundering|pillage|pillaging +rapist|1 +(noun)|raper|attacker|aggressor|assailant|assaulter|criminal|felon|crook|outlaw|malefactor +rappee|1 +(noun)|snuff +rappel|1 +(verb)|abseil|rope down|descend|fall|go down|come down +rapper|2 +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|knocker|doorknocker|device +rapport|3 +(noun)|resonance|affinity|kinship +(noun)|compatibility|sympathy|fellow feeling +(noun)|accord|compatibility +rapporteur|1 +(noun)|registrar|record-keeper|recorder +rapprochement|1 +(noun)|reconciliation|cooperation +rapscallion|2 +(noun)|rogue|knave|rascal|scalawag|scallywag|varlet|villain|scoundrel +(noun)|imp|scamp|monkey|rascal|scalawag|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +rapt|2 +(adj)|enraptured|captive|moved +(adj)|absorbed|engrossed|enwrapped|intent|wrapped|attentive +raptor|1 +(noun)|bird of prey|raptorial bird|bird +raptores|1 +(noun)|Raptores|order Raptores|animal order +raptorial|2 +(adj)|bird +(adj)|predatory|rapacious|ravening|vulturine|vulturous|aggressive +raptorial bird|1 +(noun)|bird of prey|raptor|bird +rapture|2 +(noun)|ecstasy|transport|exaltation|raptus|emotional state|spirit +(noun)|ecstasy|bliss|blissfulness|cloud nine|seventh heaven|walking on air +rapturous|1 +(adj)|ecstatic|enraptured|rhapsodic|joyous +rapturously|1 +(adv)|ecstatically|rhapsodically +raptus|2 +(noun)|seizure|ictus|attack +(noun)|ecstasy|rapture|transport|exaltation|emotional state|spirit +raptus hemorrhagicus|1 +(noun)|seizure|ictus|raptus +rara avis|1 +(noun)|rare bird|anomaly|unusual person +rare|6 +(adj)|uncommon +(adj)|infrequent +(adj)|scarce +(adj)|uncommon|extraordinary +(adj)|rarefied|rarified|thin +(adj)|raw +rare-earth element|1 +(noun)|rare earth|lanthanoid|lanthanide|lanthanon|group|grouping +rare bird|1 +(noun)|rara avis|anomaly|unusual person +rare earth|1 +(noun)|rare-earth element|lanthanoid|lanthanide|lanthanon|group|grouping +rarebit|1 +(noun)|Welsh rarebit|Welsh rabbit|dish +raree-show|2 +(noun)|peepshow|exhibition|exposition|expo +(noun)|show +rarefaction|1 +(noun)|concentration +rarefied|3 +(adj)|rare|rarified|thin +(adj)|rarified|reserved +(adj)|exalted|high-flown|high-minded|lofty|rarified|idealistic|noble-minded|noble +rarefy|3 +(verb)|change|alter|modify +(verb)|sublimate|subtilize|change|alter|modify +(verb)|attenuate|weaken +rarely|1 +(adv)|seldom +rareness|1 +(noun)|rarity|infrequency|scarcity|scarceness +rarified|3 +(adj)|rare|rarefied|thin +(adj)|rarefied|reserved +(adj)|exalted|high-flown|high-minded|lofty|rarefied|idealistic|noble-minded|noble +rarify|1 +(verb)|complicate|refine|elaborate|change|alter|modify +raring|1 +(adj)|impatient|eager +rariora|1 +(noun)|collector's item|showpiece|piece de resistance +rarity|3 +(noun)|rareness|infrequency|scarcity|scarceness +(noun)|tenuity|low density|density|denseness +(noun)|curio|curiosity|oddity|oddment|peculiarity|object|physical object +ras|4 +(noun)|reticular activating system|RAS|neural network|neural net +(noun)|radium|Ra|atomic number 88|metallic element|metal +(noun)|right ascension|RA|celestial longitude|angular distance +(noun)|Ra|Re|Egyptian deity +ras tafari|2 +(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|Emperor +(noun)|Rastafari|Rastas|youth subculture|religious movement +ras tafari makonnen|1 +(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|Emperor +rascal|2 +(noun)|rogue|knave|rapscallion|scalawag|scallywag|varlet|villain|scoundrel +(noun)|imp|scamp|monkey|rapscallion|scalawag|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +rascality|3 +(noun)|prankishness|roguishness|naughtiness|mischievousness|badness +(noun)|shiftiness|slipperiness|trickiness|dishonesty +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|roguery|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +rascally|2 +(adj)|devilish|roguish|playful +(adj)|roguish|scoundrelly|blackguardly|dishonest |dishonorable +rase|1 +(verb)|level|raze|dismantle|tear down|take down|pull down|destroy|destruct +rash|4 +(adj)|imprudent +(adj)|foolhardy|reckless|bold +(noun)|roseola|efflorescence|skin rash|eruption +(noun)|blizzard|series +rasher|1 +(noun)|vermillion rockfish|Sebastodes miniatus|rockfish +rashly|1 +(adv)|headlong +rashness|2 +(noun)|heedlessness|mindlessness|imprudence +(noun)|recklessness|foolhardiness|unthoughtfulness|thoughtlessness +rasht|1 +(noun)|Rasht|Resht|city|metropolis|urban center +rashtriya swayamsevak sangh|1 +(noun)|Rashtriya Swayamsevak Sangh|National Volunteers Association|secret society +rask|1 +(noun)|Rask|Rasmus Christian Rask|philologist|philologue +raskolnikov|1 +(noun)|Raskolnikov|Rodya Raskolnikov|fictional character|fictitious character|character +rasmus christian rask|1 +(noun)|Rask|Rasmus Christian Rask|philologist|philologue +rasmussen|1 +(noun)|Rasmussen|Kund Johan Victor Rasmussen|explorer|adventurer|ethnologist +rasp|4 +(noun)|rasping|utterance|vocalization +(noun)|wood file|file +(verb)|abrade|corrade|abrase|rub down|rub off +(verb)|talk|speak|utter|mouth|verbalize|verbalise +rasp fern|1 +(noun)|doodia|fern +raspberry|3 +(noun)|raspberry bush|bramble bush +(noun)|berry|drupelet +(noun)|boo|hoot|Bronx cheer|hiss|razzing|snort|bird|cry|outcry|call|yell|shout|vociferation +raspberry bush|1 +(noun)|raspberry|bramble bush +rasping|2 +(adj)|grating|gravel|gravelly|raspy|rough|cacophonous |cacophonic +(noun)|rasp|utterance|vocalization +raspingly|1 +(adv)|gratingly|harshly +rasputin|1 +(noun)|Rasputin|Grigori Efimovich Rasputin|starets +raspy|1 +(adj)|grating|gravel|gravelly|rasping|rough|cacophonous |cacophonic +rassling|1 +(noun)|wrestling|grappling|contact sport +rasta|1 +(noun)|Rastafarian|Rasta|disciple|adherent +rastafari|1 +(noun)|Rastafari|Rastas|youth subculture|religious movement +rastafarian|2 +(adj)|Rastafarian|cult|cultus|religious cult +(noun)|Rastafarian|Rasta|disciple|adherent +rastafarianism|1 +(noun)|Rastafarianism|cult|cultus|religious cult +rastas|2 +(noun)|Rastafari|Rastas|youth subculture|religious movement +(noun)|Rastafarian|Rasta|disciple|adherent +raster|1 +(noun)|formation +raster font|1 +(noun)|screen font|font|fount|typeface|face +rat|11 +(noun)|rodent|gnawer|gnawing animal +(noun)|scab|strikebreaker|blackleg|worker +(noun)|rotter|dirty dog|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|informer|betrayer|squealer|blabber|informant|source +(noun)|pad +(verb)|defect|desert +(verb)|hire|engage|employ +(verb)|scab|blackleg|work|do work +(verb)|pad|fill out +(verb)|capture|catch +(verb)|denounce|tell on|betray|give away|grass|shit|shop|snitch|stag|inform +rat's-tail cactus|1 +(noun)|rattail cactus|Aporocactus flagelliformis|cactus +rat-a-tat|1 +(noun)|rat-a-tat-tat|rat-tat|tapping +rat-a-tat-tat|1 +(noun)|rat-a-tat|rat-tat|tapping +rat-catcher|1 +(noun)|disinfestation officer|workman|working man|working person +rat-tail file|1 +(noun)|file +rat-tat|1 +(noun)|rat-a-tat-tat|rat-a-tat|tapping +rat chinchilla|1 +(noun)|abrocome|chinchilla rat|rodent|gnawer|gnawing animal +rat kangaroo|1 +(noun)|kangaroo rat|kangaroo +rat race|1 +(noun)|routine|modus operandi +rat snake|1 +(noun)|colubrid snake|colubrid +rat terrier|1 +(noun)|ratter|terrier +rat typhus|1 +(noun)|murine typhus|urban typhus|endemic typhus|typhus|typhus fever +ratability|2 +(noun)|rateability|liability +(noun)|quantifiability|measurability +ratable|1 +(adj)|rateable|taxable |nonexempt +ratables|1 +(noun)|rateables|property|belongings|holding|material possession +ratafee|1 +(noun)|ratafia|liqueur|cordial +ratafia|2 +(noun)|ratafee|liqueur|cordial +(noun)|ratafia biscuit|macaroon +ratafia biscuit|1 +(noun)|ratafia|macaroon +ratan|1 +(noun)|rattan|switch +rataplan|1 +(noun)|rub-a-dub|drumbeat|sound +ratbite fever|1 +(noun)|infectious disease +ratbite fever bacterium|1 +(noun)|Spirillum minus|spirillum +ratch|1 +(noun)|ratchet|rachet|mechanical device +ratchet|2 +(noun)|rachet|ratch|mechanical device +(verb)|rachet up|ratchet down|advance|progress|pass on|move on|march on|go on +ratchet down|1 +(verb)|ratchet|rachet up|advance|progress|pass on|move on|march on|go on +ratchet screwdriver|1 +(noun)|spiral ratchet screwdriver|screwdriver +ratchet wheel|1 +(noun)|wheel +rate|6 +(noun)|charge per unit|charge +(noun)|magnitude relation|quantitative relation +(noun)|pace|temporal property +(verb)|rank|range|order|grade|place|judge +(verb)|be +(verb)|value|measure|evaluate|valuate|assess|appraise|value +rate of acceleration|1 +(noun)|jerk|rate +rate of attrition|1 +(noun)|attrition rate|rate +rate of depreciation|1 +(noun)|depreciation rate|rate|charge per unit +rate of exchange|1 +(noun)|exchange rate|rate|charge per unit +rate of flow|1 +(noun)|flow|flow rate|rate +rate of growth|1 +(noun)|growth rate|rate +rate of inflation|1 +(noun)|inflation rate|rate +rate of interest|1 +(noun)|interest rate|rate|charge per unit +rate of pay|1 +(noun)|pay rate|rate|charge per unit +rate of payment|1 +(noun)|payment rate|repayment rate|installment rate|rate|charge per unit +rate of respiration|1 +(noun)|respiratory rate|vital sign|rate +rateability|1 +(noun)|ratability|liability +rateable|1 +(adj)|ratable|taxable |nonexempt +rateables|1 +(noun)|ratables|property|belongings|holding|material possession +ratel|1 +(noun)|honey badger|Mellivora capensis|musteline mammal|mustelid|musteline +ratepayer|1 +(noun)|taxpayer +rates|4 +(noun)|tax|taxation|revenue enhancement +(noun)|rate|charge per unit|charge +(noun)|rate|magnitude relation|quantitative relation +(noun)|pace|rate|temporal property +rather|4 +(adv)|instead +(adv)|kind of|kinda|sort of +(adv)|preferably|sooner +(adv)|quite +rathole|2 +(noun)|hole +(noun)|room +rathskeller|1 +(noun)|tavern|tap house +ratibida|1 +(noun)|Ratibida|genus Ratibida|asterid dicot genus +ratibida columnaris|1 +(noun)|Mexican hat|Ratibida columnaris|wildflower|wild flower +ratibida columnifera|1 +(noun)|long-head coneflower|prairie coneflower|Ratibida columnifera|wildflower|wild flower +ratibida tagetes|1 +(noun)|prairie coneflower|Ratibida tagetes|wildflower|wild flower +ratification|1 +(noun)|confirmation|agreement|approval|commendation +ratified|1 +(adj)|sanctioned|legal +ratifier|1 +(noun)|subscriber|endorser|indorser|supporter|protagonist|champion|admirer|booster|friend +ratify|1 +(verb)|sign|validate|formalize|formalise +rating|4 +(noun)|evaluation|valuation|appraisal|assessment +(noun)|evaluation|judgment|judgement|assessment +(noun)|standing +(noun)|military rank|military rating|paygrade|rank +rating system|1 +(noun)|scoring system|classification system +ratio|1 +(noun)|magnitude relation|quantitative relation +ratiocinate|1 +(verb)|reason +ratiocination|2 +(noun)|conclusion|proposition +(noun)|reasoning|logical thinking|abstract thought +ratiocinative|1 +(adj)|logical +ratiocinator|1 +(noun)|reasoner|thinker +ration|4 +(noun)|fare +(noun)|share|portion|part|percentage +(verb)|limit|circumscribe|confine +(verb)|ration out|allocate|apportion +ration card|1 +(noun)|card|identity card +ration out|1 +(verb)|ration|allocate|apportion +rational|4 +(adj)|rational |coherent|logical|lucid|demythologized|demythologised|intelligent|reasoning|thinking|reasonable|sane|logical|reasonable|sensible|sane +(adj)|intellectual|noetic|mental +(adj)|rational |magnitude relation|quantitative relation +(adj)|intellectual +rational motive|1 +(noun)|motivation|motive|need +rational number|1 +(noun)|real number|real +rationale|1 +(noun)|principle|explanation +rationalisation|5 +(noun)|rationalization|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|rationalization|explanation +(noun)|rationalization|simplification +(noun)|rationalization|organization|organisation +(noun)|systematization|systematisation|rationalization|organization|organisation +rationalise|5 +(verb)|rationalize|organize|organise +(verb)|apologize|apologise|excuse|justify|rationalize|defend|support|fend for +(verb)|rationalize|think|cogitate|cerebrate +(verb)|rationalize|change|alter|modify +(verb)|cut|prune|rationalize|eliminate|get rid of|do away with +rationalise away|1 +(verb)|rationalize away|reason +rationalism|3 +(noun)|philosophical doctrine|philosophical theory +(noun)|theological doctrine|religious doctrine +(noun)|freethinking|doctrine|philosophy|philosophical system|school of thought|ism +rationalist|2 +(adj)|philosophical doctrine|philosophical theory +(noun)|positivist|nonreligious person +rationalistic|1 +(adj)|philosophical doctrine|philosophical theory +rationality|2 +(noun)|reason|reasonableness|sanity|saneness +(noun)|rationalness|logicality|logicalness +rationalization|5 +(noun)|rationalisation|explanation +(noun)|rationalisation|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|rationalisation|simplification +(noun)|rationalisation|organization|organisation +(noun)|systematization|systematisation|rationalisation|organization|organisation +rationalize|5 +(verb)|apologize|apologise|excuse|justify|rationalise|defend|support|fend for +(verb)|cut|prune|rationalise|eliminate|get rid of|do away with +(verb)|rationalise|organize|organise +(verb)|rationalise|think|cogitate|cerebrate +(verb)|rationalise|change|alter|modify +rationalize away|1 +(verb)|rationalise away|reason +rationalness|1 +(noun)|rationality|logicality|logicalness +rationed|1 +(adj)|distributed +rationing|1 +(noun)|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +ratitae|1 +(noun)|Ratitae|superorder Ratitae|animal order +ratite|1 +(noun)|ratite bird|flightless bird|bird +ratite bird|1 +(noun)|ratite|flightless bird|bird +ratlike|1 +(adj)|rodent|gnawer|gnawing animal +ratlin|1 +(noun)|ratline|line +ratline|1 +(noun)|ratlin|line +rattail|1 +(noun)|grenadier|rattail fish|gadoid|gadoid fish +rattail cactus|1 +(noun)|rat's-tail cactus|Aporocactus flagelliformis|cactus +rattail fish|1 +(noun)|grenadier|rattail|gadoid|gadoid fish +rattan|3 +(noun)|rattan palm|Calamus rotang|calamus +(noun)|rattan cane|cane +(noun)|ratan|switch +rattan cane|1 +(noun)|rattan|cane +rattan palm|1 +(noun)|rattan|Calamus rotang|calamus +ratter|2 +(noun)|deserter|apostate|renegade|turncoat|recreant|quitter +(noun)|rat terrier|terrier +rattigan|1 +(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist|playwright +ratting|1 +(noun)|informing|disclosure|revelation|revealing +rattle|5 +(noun)|rattling|rale|noise +(noun)|plaything|toy +(noun)|tail +(verb)|sound|go|rattle off|rattle down|rattle on +(verb)|shake|agitate +rattle-top|1 +(noun)|black cohosh|black snakeroot|Cimicifuga racemosa|bugbane +rattle down|1 +(verb)|rattle off|reel off|spiel off|roll off|recite +rattle off|1 +(verb)|rattle down|reel off|spiel off|roll off|recite +rattle on|1 +(verb)|yack|jaw|yack away|yap away|talk|speak|utter|mouth|verbalize|verbalise +rattle weed|1 +(noun)|indigo broom|horsefly weed|Baptisia tinctoria|wild indigo|false indigo +rattlebox|1 +(noun)|crotalaria|herb|herbaceous plant +rattlebrained|1 +(adj)|rattlepated|scatterbrained|scatty|foolish +rattled|1 +(adj)|flustered|hot and bothered|perturbed|discomposed +rattlepated|1 +(adj)|rattlebrained|scatterbrained|scatty|foolish +rattler|2 +(noun)|rattlesnake|pit viper +(noun)|freight train|train|railroad train +rattlesnake|1 +(noun)|rattler|pit viper +rattlesnake's master|1 +(noun)|rattlesnake master|button snakeroot|Eryngium yuccifolium|perennial +rattlesnake fern|1 +(noun)|Botrychium virginianum|grape fern +rattlesnake master|1 +(noun)|rattlesnake's master|button snakeroot|Eryngium yuccifolium|perennial +rattlesnake orchid|1 +(noun)|orchid|orchidaceous plant +rattlesnake plantain|1 +(noun)|helleborine|orchid|orchidaceous plant +rattlesnake root|2 +(noun)|Prenanthes purpurea|herb|herbaceous plant +(noun)|herb|herbaceous plant +rattlesnake weed|1 +(noun)|Hieracium venosum|hawkweed +rattling|4 +(adj)|fantastic|howling|marvelous|marvellous|terrific|tremendous|wonderful|wondrous|extraordinary +(adj)|brisk|lively|merry|snappy|spanking|zippy|energetic +(noun)|rattle|rale|noise +(adv)|very|really|real +rattrap|3 +(noun)|difficulty +(noun)|housing|lodging|living accommodations +(noun)|trap +rattus|1 +(noun)|Rattus|genus Rattus|mammal genus +rattus norvegicus|1 +(noun)|brown rat|Norway rat|Rattus norvegicus|rat +rattus rattus|1 +(noun)|black rat|roof rat|Rattus rattus|rat +ratty|1 +(adj)|moth-eaten|shabby|tatty|worn +rau-sed|1 +(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive|antihypertensive drug +raucous|2 +(adj)|strident|cacophonous |cacophonic +(adj)|rowdy|disorderly +raucously|1 +(adv)|rowdily +raudixin|1 +(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive|antihypertensive drug +rauli beech|1 +(noun)|Nothofagus procera|southern beech|evergreen beech +raunch|1 +(noun)|coarseness|commonness|grossness|vulgarity|vulgarism|inelegance +raunchy|3 +(adj)|sexy +(adj)|lewd|obscene|salacious|dirty +(adj)|begrimed|dingy|grimy|grubby|grungy|dirty |soiled|unclean +rauvolfia|1 +(noun)|rauwolfia|shrub|bush +rauwolfia|2 +(noun)|alkaloid +(noun)|rauvolfia|shrub|bush +rauwolfia serpentina|1 +(noun)|snakewood|Rauwolfia serpentina|rauwolfia|rauvolfia +ravage|3 +(noun)|depredation|destruction|demolition|wipeout +(verb)|harry|destroy|ruin +(verb)|lay waste to|waste|devastate|desolate|scourge|destroy|ruin +ravaged|2 +(adj)|despoiled|pillaged|raped|sacked|destroyed +(adj)|blasted|desolate|desolated|devastated|ruined|wasted|destroyed +ravaging|2 +(adj)|destructive +(noun)|devastation|plundering|pillage|pillaging +rave|5 +(noun)|dance +(noun)|review|critique|critical review|review article +(verb)|party +(verb)|rant|mouth off|jabber|spout|rabbit on|talk|speak|utter|mouth|verbalize|verbalise +(verb)|gush|praise +rave-up|1 +(noun)|gathering|assemblage +ravehook|1 +(noun)|hand tool +ravel|4 +(noun)|Ravel|Maurice Ravel|composer +(noun)|run|ladder|damage|harm|impairment +(verb)|unravel|ravel out|disentangle|unsnarl|straighten out +(verb)|tangle|knot|intertwine|twine|entwine|enlace|interlace|lace +ravel out|1 +(verb)|ravel|unravel|disentangle|unsnarl|straighten out +raveling|1 +(noun)|ravelling|fiber|fibre +ravelling|1 +(noun)|raveling|fiber|fibre +raven|5 +(noun)|Corvus corax|corvine bird +(verb)|seize +(verb)|prey|predate|forage +(verb)|devour|guttle|pig|eat +(verb)|feed|eat +ravenala|1 +(noun)|traveler's tree|traveller's tree|Ravenala madagascariensis|woody plant|ligneous plant +ravenala madagascariensis|1 +(noun)|traveler's tree|traveller's tree|ravenala|Ravenala madagascariensis|woody plant|ligneous plant +ravening|3 +(adj)|predatory|rapacious|raptorial|vulturine|vulturous|aggressive +(adj)|rapacious|voracious|acquisitive +(adj)|edacious|esurient|rapacious|ravenous|voracious|wolfish|gluttonous +ravenna|1 +(noun)|Ravenna|Battle of Ravenna|pitched battle +ravenna grass|1 +(noun)|Ravenna grass|wool grass|Erianthus ravennae|plume grass +ravenous|2 +(adj)|famished|sharp-set|starved|esurient|hungry +(adj)|edacious|esurient|rapacious|ravening|voracious|wolfish|gluttonous +ravenously|1 +(adv)|hungrily +ravenousness|1 +(noun)|edacity|esurience|voracity|voraciousness|hunger|hungriness +raver|2 +(noun)|dancer|social dancer +(noun)|ranter|speaker|talker|utterer|verbalizer|verbaliser +ravi shankar|1 +(noun)|Shankar|Ravi Shankar|sitar player +ravigote|1 +(noun)|sauce +ravine|1 +(noun)|valley|vale +raving|3 +(adj)|raving mad|wild|insane +(noun)|declamation +(adv)|ravingly +raving mad|1 +(adj)|raving|wild|insane +ravingly|1 +(adv)|raving +ravioli|1 +(noun)|cappelletti|pasta|alimentary paste +ravish|2 +(verb)|rape|violate|assault|dishonor|dishonour|outrage|assail|assault|set on|attack +(verb)|enchant|enrapture|transport|enthrall|enthral|delight|please|delight +ravisher|2 +(noun)|violator|debaucher|libertine|debauchee|rounder +(noun)|smasher|stunner|knockout|beauty|sweetheart|peach|lulu|looker|mantrap|dish|woman|adult female +ravishing|1 +(adj)|beautiful +ravishment|2 +(noun)|entrancement|delight|delectation +(noun)|rape|violation|assault|sexual assault|sexual abuse|sex crime|sex offense +raw|14 +(adj)|natural|rude|unprocessed +(adj)|injured +(adj)|raw |half-baked|underdone|rare|uncooked|untoasted +(adj)|untreated +(adj)|naked|overt |open +(adj)|unfair |unjust +(adj)|crude|unanalyzed +(adj)|unpolished +(adj)|bleak|cutting|cold +(adj)|sore|unhealthy +(adj)|unsanded|unfinished +(adj)|new|wet behind the ears|inexperienced +(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|peeled|naked as a jaybird|stark naked|unclothed +(noun)|altogether|birthday suit|nakedness|nudity|nudeness +raw beauty|1 +(noun)|beauty +raw data|1 +(noun)|data|information +raw deal|1 +(noun)|deal +raw material|1 +(noun)|staple|material|stuff +raw meat|1 +(noun)|meat +raw milk|1 +(noun)|milk +raw recruit|1 +(noun)|recruit +raw sienna|2 +(noun)|yellowish brown|buff|caramel|caramel brown|brown|brownness +(noun)|sienna +raw talent|1 +(noun)|endowment|gift|talent|natural endowment +raw throat|1 +(noun)|sore throat|pharyngitis|inflammatory disease +raw umber|1 +(noun)|umber +raw vegetable|1 +(noun)|rabbit food|vegetable|veggie +raw weather|1 +(noun)|bad weather|inclemency|inclementness +raw wood|1 +(noun)|wood +raw wool|1 +(noun)|wool +raw wound|1 +(noun)|wound|lesion +rawalpindi|1 +(noun)|Rawalpindi|city|metropolis|urban center +rawboned|1 +(adj)|thin |lean +rawhide|1 +(noun)|hide|fell +ray|10 +(noun)|beam|beam of light|light beam|ray of light|shaft|shaft of light|irradiation|light|visible light|visible radiation +(noun)|pedicel|pedicle +(noun)|vector +(noun)|beam|electron beam|electromagnetic radiation|electromagnetic wave|nonparticulate radiation +(noun)|re|solfa syllable +(noun)|spine +(noun)|elasmobranch|selachian +(verb)|emit|give out|give off +(verb)|radiate|run|go|pass|lead|extend +(verb)|irradiate|process|treat +ray bradbury|1 +(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer|author +ray cattell|1 +(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist +ray douglas bradbury|1 +(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer|author +ray floret|1 +(noun)|ray flower|flower|bloom|blossom +ray flower|1 +(noun)|ray floret|flower|bloom|blossom +ray m. dolby|1 +(noun)|Dolby|Ray M. Dolby|electrical engineer +ray of light|1 +(noun)|beam|beam of light|light beam|ray|shaft|shaft of light|irradiation|light|visible light|visible radiation +ray robinson|1 +(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter|gladiator +rayleigh|1 +(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist +rayleigh disk|1 +(noun)|Rayleigh disk|radiometer +rayless|1 +(adj)|pedicel|pedicle +rayless chamomile|1 +(noun)|pineapple weed|Matricaria matricarioides|herb|herbaceous plant +raymond b. cattell|1 +(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist +raymond bernard cattell|1 +(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist +raymond chandler|1 +(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer|author +raymond lully|1 +(noun)|Lully|Raymond Lully|Ramon Lully|philosopher +raymond thornton chandler|1 +(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer|author +raynaud's sign|1 +(noun)|acrocyanosis|Raynaud's sign|cyanosis +rayon|1 +(noun)|fabric|cloth|material|textile +rayon stocking|1 +(noun)|nylons|nylon stocking|rayons|silk stocking|stocking +rayons|2 +(noun)|nylons|nylon stocking|rayon stocking|silk stocking|stocking +(noun)|rayon|fabric|cloth|material|textile +raze|1 +(verb)|level|rase|dismantle|tear down|take down|pull down|destroy|destruct +razed|1 +(adj)|demolished|dismantled|destroyed +razing|2 +(noun)|wrecking|destruction|demolition|wipeout +(noun)|leveling|tearing down|demolishing|destruction|devastation +razmataz|1 +(noun)|razzle-dazzle|razzle|razzmatazz|play +razor|2 +(noun)|edge tool +(verb)|shave +razor-backed|1 +(adj)|razorback|backed +razor-billed auk|1 +(noun)|razorbill|Alca torda|auk +razor-fish|2 +(noun)|razor fish|wrasse +(noun)| +razor-sharp|2 +(adj)|distinct +(adj)|sharp +razor clam|1 +(noun)|jackknife clam|knife-handle|clam +razor edge|1 +(noun)|edge +razor fish|2 +(noun)|razor-fish|wrasse +(noun)| +razorback|3 +(adj)|razor-backed|backed +(noun)|razorback hog|razorbacked hog|swine +(noun)|rorqual|baleen whale|whalebone whale +razorback hog|1 +(noun)|razorback|razorbacked hog|swine +razorbacked hog|1 +(noun)|razorback|razorback hog|swine +razorbill|1 +(noun)|razor-billed auk|Alca torda|auk +razorblade|1 +(noun)|blade +razz|1 +(verb)|tease|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock|bemock +razzing|1 +(noun)|boo|hoot|Bronx cheer|hiss|raspberry|snort|bird|cry|outcry|call|yell|shout|vociferation +razzle|1 +(noun)|razzle-dazzle|razzmatazz|razmataz|play +razzle-dazzle|1 +(noun)|razzle|razzmatazz|razmataz|play +razzmatazz|1 +(noun)|razzle-dazzle|razzle|razmataz|play +rb|1 +(noun)|rubidium|Rb|atomic number 37|metallic element|metal +rbc|1 +(noun)|red blood cell|RBC|erythrocyte|blood cell|blood corpuscle|corpuscle +rbi|1 +(noun)|run batted in|run|tally +rcmp|1 +(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police|police force|constabulary|law|international law enforcement agency +re|3 +(noun)|rhenium|Re|atomic number 75|metallic element|metal +(noun)|Ra|Re|Egyptian deity +(noun)|ray|solfa syllable +re-address|1 +(verb)|address|direct +re-afforest|1 +(verb)|afforest|forest +re-afforestation|1 +(noun)|reforestation|reclamation|renewal|rehabilitation +re-argue|1 +(verb)|argue|reason +re-arm|2 +(verb)|rearm|arm|build up|fortify|gird +(verb)|rearm|arm +re-assume|1 +(verb)|assume|acquire|adopt|take on|take +re-create|7 +(verb)|make|create +(verb)|copy|make|create +(verb)|create by mental act|create mentally +(verb)|animate|recreate|reanimate|revive|renovate|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +(verb)|play|recreate +(verb)|cheer|hearten|recreate|embolden|encourage +(verb)|recreate|make|create +re-created|1 +(adj)|make|create +re-creation|3 +(noun)|creation|creative activity +(noun)|diversion|recreation|activity +(noun)|refreshment|recreation|rejuvenation +re-echo|1 +(noun)|echo|reverberation|sound reflection|replication +re-emerge|1 +(verb)|reappear|appear +re-emphasise|1 +(verb)|re-emphasize|stress|emphasize|emphasise|punctuate|accent|accentuate +re-emphasize|1 +(verb)|re-emphasise|stress|emphasize|emphasise|punctuate|accent|accentuate +re-enter|1 +(verb)|enter|come in|get into|get in|go into|go in|move into +re-entrant|2 +(adj)|re-entrant |reentrant +(adj)| +re-equip|1 +(verb)|rejig|equip|fit|fit out|outfit +re-establishment|1 +(noun)|restoration +re-examine|2 +(verb)|probe|examine +(verb)|review|reexamine|analyze|analyse|study|examine|canvass|canvas +re-experiencing|1 +(noun)|reliving|experience +re-explain|1 +(verb)|reinterpret|interpret +re-explore|1 +(verb)|research|search|explore +re-formation|4 +(noun)|regeneration|reconstruction +(noun)|reformation|improvement|melioration +(noun)|Reformation|Protestant Reformation|religious movement +(noun)|reclamation|reformation|rescue|deliverance|delivery|saving +re-formed|3 +(adj)|organized +(adj)|Reformed|unorthodox +(adj)|reformed|regenerate +re-incorporate|1 +(verb)|integrate|incorporate +re-introduce|2 +(verb)|reintroduce|introduce|present|acquaint +(verb)| +re-introduction|2 +(noun)|proposal +(noun)|reintroduction|presentation|introduction|intro +re-sentencing|1 +(noun)|commutation|clemency|mercifulness|mercy +re-uptake|2 +(noun)|reuptake|uptake +(noun)| +rea silvia|1 +(noun)|Rhea Silvia|Rea Silvia|vestal virgin +reabsorb|1 +(verb)|resorb|absorb +reabsorption|1 +(noun)|resorption|organic process|biological process +reach|13 +(noun)|range|limit +(noun)|scope|range|orbit|compass|ambit|extent +(noun)|reaching|stretch|motion|movement|move|motility +(noun)|compass|range|grasp|capability|capableness|potentiality +(verb)|make|attain|hit|arrive at|gain +(verb)|hit|attain|arrive|get|come +(verb)|reach out|move|reach out +(verb)|get through|get hold of|contact|communicate|intercommunicate +(verb)|achieve|accomplish|attain|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|extend to|touch|be|reach out|reach into +(verb)|make|get to|progress to|achieve|accomplish|attain +(verb)|pass|hand|pass on|turn over|give|transfer +(verb)|strive|strain|tug|labor|labour|push|drive +reach into|1 +(verb)|reach|extend to|touch +reach out|3 +(verb)|reach|move +(verb)|extend|poke out|be +(verb)|interact +reachable|1 +(adj)|approachable|accessible +reaching|2 +(noun)|reach|stretch|motion|movement|move|motility +(noun)|arrival|accomplishment|achievement +reacquaint|1 +(verb)|introduce|present|acquaint +reacquired stock|1 +(noun)|treasury stock|treasury shares|stock +react|3 +(verb)|respond|act|move +(verb)|change state|turn +(verb)|oppose|act|move +reactance|1 +(noun)|electrical phenomenon +reactant|1 +(noun)|chemical +reaction|7 +(noun)|response +(noun)|response|bodily process|body process|bodily function|activity +(noun)|chemical reaction|chemical process|chemical change|chemical action +(noun)|idea|thought +(noun)|resistance|opposition +(noun)|conservatism|conservativism +(noun)|force +reaction-propulsion engine|1 +(noun)|reaction engine|engine +reaction engine|1 +(noun)|reaction-propulsion engine|engine +reaction formation|1 +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +reaction propulsion|1 +(noun)|propulsion +reaction time|1 +(noun)|response time|latency|latent period|time interval|interval +reaction turbine|1 +(noun)|turbine +reactionary|2 +(adj)|reactionist|far-right|right +(noun)|ultraconservative|extreme right-winger|conservative|conservativist +reactionism|1 +(noun)|political orientation|ideology|political theory +reactionist|1 +(adj)|reactionary|far-right|right +reactivate|1 +(verb)|activate +reactive|2 +(adj)|reactive |activated|excited|unstable|oxidizable +(adj)|sensitive +reactive depression|1 +(noun)|exogenous depression|depressive disorder|clinical depression|depression +reactive schizophrenia|1 +(noun)|acute schizophrenic episode|schizophrenia|schizophrenic disorder|schizophrenic psychosis|dementia praecox +reactivity|2 +(noun)|responsiveness|sensitivity|sensitiveness|sensibility +(noun)|susceptibility|susceptibleness +reactor|2 +(noun)|electrical device +(noun)|nuclear reactor|apparatus|setup +read|12 +(noun)|publication +(verb)|interpret|construe|see +(verb)|say|have|feature +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|scan|interpret|construe|see +(verb)|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|take|interpret|construe|see +(verb)|register|show|record|indicate +(verb)|learn|study|take +(verb)|audition|try out +(verb)|understand +(verb)|understand|interpret|translate|understand +read-only file|1 +(noun)|computer file +read-only memory|1 +(noun)|ROM|read-only storage|fixed storage|memory|computer memory|storage|computer storage|store|memory board +read-only memory chip|1 +(noun)|memory chip +read-only storage|1 +(noun)|read-only memory|ROM|fixed storage|memory|computer memory|storage|computer storage|store|memory board +read/write head|1 +(noun)|head|coil +read/write memory|1 +(noun)|random-access memory|random access memory|random memory|RAM|volatile storage +read between the lines|1 +(verb)|interpret|construe|see +read method|1 +(noun)|Read method of childbirth|Read method|natural childbirth +read method of childbirth|1 +(noun)|Read method of childbirth|Read method|natural childbirth +readability|2 +(noun)|intelligibility +(noun)|legibility|comprehensibility|understandability +readable|1 +(adj)|clear|decipherable|legible +readably|1 +(adv)|legibly|decipherably +readapt|2 +(verb)|adjust|conform|adapt +(verb)|readjust|adjust|conform|adapt +reader|8 +(noun)|scholar|scholarly person|student +(noun)|subscriber|customer|client +(noun)|literate|literate person +(noun)|reviewer|referee|critic +(noun)|proofreader|printer|pressman +(noun)|lector|clergyman|reverend|man of the cloth|holy order|order +(noun)|lector|lecturer|educator|pedagogue +(noun)|textbook|text|text edition|schoolbook|school text +readership|1 +(noun)|audience +readily|1 +(adv)|promptly|pronto|without delay +readiness|4 +(noun)|preparedness|preparation|state +(noun)|willingness +(noun)|set|cognitive state|state of mind +(noun)|facility|effortlessness +reading|8 +(noun)|linguistic process|language +(noun)|meter reading|indication|datum|data point +(noun)|interpretation +(noun)|reading material|written communication|written language +(noun)|interpretation|version|representation|mental representation|internal representation +(noun)|Reading|city|metropolis|urban center +(noun)|recitation|recital|public speaking|speechmaking|speaking|oral presentation +(noun)|meter reading|measurement|measuring|measure|mensuration +reading assignment|1 +(noun)|lesson +reading clinic|1 +(noun)|clinic +reading desk|1 +(noun)|lectern|stand +reading lamp|1 +(noun)|lamp +reading material|1 +(noun)|reading|written communication|written language +reading program|1 +(noun)|course of study|program|programme|curriculum|syllabus +reading room|1 +(noun)|room +reading teacher|1 +(noun)|teacher|instructor +readjust|2 +(verb)|readapt|adjust|conform|adapt +(verb)|reset|adjust|set|correct +readjustment|2 +(noun)|accommodation +(noun)|adjustment|registration|calibration|standardization|standardisation +readmission|1 +(noun)|admission|admittance +readmit|2 +(verb)|admit|allow in|let in|intromit +(verb)|admit|let in|include +ready|8 +(adj)|ready |at the ready|fit|primed|set|in order|prompt|ripe|waiting|ready and waiting|prepared|willing +(adj)|available +(adj)|willing +(adj)|prepared +(adj)|quick|intelligent +(noun)|readiness|preparedness|preparation +(verb)|cook|fix|make|prepare|create from raw material|create from raw stuff +(verb)|fix|prepare|set up|gear up|set|change|alter|modify +ready-made|3 +(adj)|ready-made |made|off-the-rack|off-the-shelf|off-the-peg|ready-to-wear|prefab|prefabricated +(adj)|cliched|unoriginal +(adj)|factory-made +ready-mix|1 +(noun)|convenience food|mix|premix +ready-to-wear|1 +(adj)|off-the-rack|off-the-shelf|off-the-peg|ready-made +ready and waiting|1 +(adj)|waiting|ready +ready cash|1 +(noun)|cold cash|ready money|cash|hard cash|hard currency +ready money|1 +(noun)|ready cash|cold cash|cash|hard cash|hard currency +ready reckoner|1 +(noun)|reckoner|handbook|enchiridion|vade mecum +ready to hand|1 +(adj)|convenient|handy|accessible +readying|1 +(noun)|preparation|activity +reaffiliation|1 +(noun)|affiliation +reaffirm|1 +(verb)|affirm +reaffirmation|1 +(noun)|reassertion|avowal|avouchment|affirmation +reagan|1 +(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States|United States President|President|Chief Executive +reagan administration|1 +(noun)|Reagan administration|executive +reagent|1 +(noun)|chemical agent +reagin|1 +(noun)|immunoglobulin E|IgE +real|14 +(adj)|real |existent|actual|actual|factual|historical|concrete|genuine|echt|realistic|sincere +(adj)|real |proper|true +(adj)|actual|genuine|literal|true +(adj)|true|genuine |echt +(adj)|serious +(adj)|tangible|concrete +(adj)|real +(adj)|substantial |material|material +(adj)|tangible +(adj)|veridical|realistic +(adj)|realistic +(noun)|real number|complex number|complex quantity|imaginary number +(noun)|coin +(adv)|very|really|rattling +real-estate business|1 +(noun)|commercial enterprise|business enterprise|business +real-time|1 +(adj)|time period|period of time|period +real-time operation|1 +(noun)|real-time processing|data processing +real-time processing|1 +(noun)|real-time operation|data processing +real estate|1 +(noun)|real property|realty|property|belongings|holding|material possession +real estate agent|1 +(noun)|realtor|real estate broker|estate agent|land agent|house agent|agent|factor|broker +real estate broker|1 +(noun)|realtor|real estate agent|estate agent|land agent|house agent|agent|factor|broker +real estate investment trust|1 +(noun)|Real Estate Investment Trust|REIT|investment company|investment trust|investment firm|fund +real estate loan|1 +(noun)|mortgage loan|loan +real gnp|1 +(noun)|real gross national product|real GNP|gross national product|GNP +real gross national product|1 +(noun)|real GNP|gross national product|GNP +real ira|1 +(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +real irish republican army|1 +(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +real life|1 +(noun)|real world|world|reality +real matrix|1 +(noun)|matrix +real mccoy|1 +(noun)|real McCoy|real thing|real stuff|authenticity|genuineness|legitimacy +real number|1 +(noun)|real|complex number|complex quantity|imaginary number +real presence|1 +(noun)|religious doctrine|church doctrine|gospel|creed +real property|1 +(noun)|real estate|realty|property|belongings|holding|material possession +real storage|1 +(noun)|memory|computer memory|storage|computer storage|store|memory board +real stuff|1 +(noun)|real McCoy|real thing|authenticity|genuineness|legitimacy +real tennis|1 +(noun)|royal tennis|court tennis|tennis|lawn tennis +real thing|1 +(noun)|real McCoy|real stuff|authenticity|genuineness|legitimacy +real time|2 +(noun)|time period|period of time|period +(noun)|time period|period of time|period +real world|1 +(noun)|real life|world|reality +realgar|1 +(noun)|mineral +realign|1 +(verb)|realine|align|aline|line up|adjust +realine|1 +(verb)|realign|align|aline|line up|adjust +realisation|6 +(noun)|realization|musical composition|opus|composition|piece|piece of music +(noun)|realization|recognition|understanding|apprehension|discernment|savvy +(noun)|realization|sale|cut-rate sale|sales event +(noun)|realization|composing|composition +(noun)|realization|actualization|actualisation|creating by mental acts +(noun)|realization|fruition|consummation +realise|6 +(verb)|gain|take in|clear|make|earn|realize|pull in|bring in|get|acquire +(verb)|realize|sell +(verb)|realize|harmonize|harmonise +(verb)|realize|actualize|actualise|substantiate|make|create +(verb)|recognize|recognise|realize|agnize|agnise|know|cognize|cognise +(verb)|understand|realize|see +realised|1 +(adj)|accomplished|completed|realized|complete +realism|5 +(noun)|pragmatism|practicality +(noun)|naive realism|philosophical doctrine|philosophical theory +(noun)|reality|realness|actuality +(noun)|naturalism|artistic movement|art movement +(noun)|Platonism|philosophical doctrine|philosophical theory +realist|3 +(noun)|philosopher +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|painter +realistic|3 +(adj)|realistic |down-to-earth|earthy|graphic|lifelike|pictorial|vivid|hardheaded|hard-nosed|practical|pragmatic|living|real|true-to-life|true to life|virtual|practical|veridical|real|possible|practical|real|existent +(adj)|naturalistic|representational +(adj)|philosophical doctrine|philosophical theory +reality|4 +(noun)|world|experience +(noun)|realness|realism|actuality +(noun)|actuality +(noun)|materiality|physicalness|corporeality +reality principle|1 +(noun)|principle +realizable|2 +(adj)|tangible +(adj)|accomplishable|achievable|doable|possible +realization|6 +(noun)|realisation|recognition|understanding|apprehension|discernment|savvy +(noun)|realisation|actualization|actualisation|creating by mental acts +(noun)|realisation|musical composition|opus|composition|piece|piece of music +(noun)|realisation|sale|cut-rate sale|sales event +(noun)|realisation|composing|composition +(noun)|realisation|fruition|consummation +realize|6 +(verb)|recognize|recognise|realise|agnize|agnise|know|cognize|cognise +(verb)|understand|realise|see +(verb)|realise|actualize|actualise|substantiate|make|create +(verb)|gain|take in|clear|make|earn|realise|pull in|bring in|get|acquire +(verb)|realise|sell +(verb)|realise|harmonize|harmonise +realized|1 +(adj)|accomplished|completed|realised|complete +reallocate|1 +(verb)|reapportion|allocate|apportion +reallocation|2 +(noun)|allotment|allocation +(noun)|reallotment|reapportionment|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +reallot|1 +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out +reallotment|1 +(noun)|reapportionment|reallocation|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +really|4 +(adv)|truly|genuinely +(adv)|actually +(adv)|in truth|truly +(adv)|very|real|rattling +realm|3 +(noun)|kingdom|land|sphere|domain|area|orbit|field|arena +(noun)|domain|region|knowledge domain|knowledge base +(noun)|kingdom|domain|demesne|land +realness|1 +(noun)|reality|realism|actuality +realpolitik|1 +(noun)|practical politics|politics|political science|government +realtor|1 +(noun)|real estate broker|real estate agent|estate agent|land agent|house agent|agent|factor|broker +realty|1 +(noun)|real property|real estate|property|belongings|holding|material possession +ream|5 +(noun)|large indefinite quantity|large indefinite amount +(noun)|definite quantity +(verb)|press out|express|extract +(verb)|remove|take|take away|withdraw +(verb)|enlarge +reamer|2 +(noun)|juicer|juice reamer|squeezer +(noun)|drill +reanimate|1 +(verb)|animate|recreate|revive|renovate|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +reanimated|1 +(adj)|revived|animated |alive +reap|2 +(verb)|harvest|glean|gather|garner|collect|pull together +(verb)|draw|derive|gain +reap hook|1 +(noun)|sickle|reaping hook|edge tool +reaper|3 +(noun)|harvester|farmhand|fieldhand|field hand|farm worker +(noun)|Grim Reaper|Reaper|Death +(noun)|harvester|farm machine +reaper binder|1 +(noun)|binder|harvester|reaper +reaping hook|1 +(noun)|sickle|reap hook|edge tool +reappear|1 +(verb)|re-emerge|appear +reappearance|2 +(noun)|appearance +(noun)|return|appearance +reapportion|1 +(verb)|reallocate|allocate|apportion +reapportionment|1 +(noun)|reallotment|reallocation|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +reappraisal|1 +(noun)|revaluation|review|reassessment|appraisal|assessment +reappraise|1 +(verb)|judge +rear|11 +(adj)|rearward|back +(noun)|formation +(noun)|backside|back end|side|face +(noun)|back|position|place +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|back|side +(verb)|rise up|straighten +(verb)|raise|bring up|nurture|parent +(verb)|rise|lift|look|appear|seem +(verb)|erect|raise|lift|elevate|get up|bring up +(verb)|raise|erect|set up|put up|construct|build|make +rear-end|1 +(verb)|hit|strike|impinge on|run into|collide with +rear admiral|1 +(noun)|flag officer +rear back|2 +(verb)|rear|rise up +(verb)|startle|jump|start +rear end|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +rear lamp|1 +(noun)|taillight|tail lamp|rear light|lamp +rear light|1 +(noun)|taillight|tail lamp|rear lamp|lamp +rear of barrel|1 +(noun)|breech|rear of tube|opening +rear of tube|1 +(noun)|breech|rear of barrel|opening +rear window|1 +(noun)|car window +rearguard|1 +(noun)|detachment +rearing|3 +(adj)|rampant|erect |vertical|upright +(noun)|raising|nurture|upbringing +(noun)|breeding|bringing up|fostering|fosterage|nurture|raising|upbringing|socialization|socialisation|acculturation|enculturation +rearm|2 +(verb)|arm +(verb)|re-arm|arm|build up|fortify|gird +rearmament|1 +(noun)|arming|armament|equipping +rearmost|1 +(adj)|backmost|hindermost|hindmost|back +rearrange|1 +(verb)|arrange|set up +rearrangement|1 +(noun)|arrangement|arranging|transcription +rearview mirror|1 +(noun)|car mirror +rearward|4 +(adj)|reverse|backward +(adj)|rear|back +(noun)|rear|backside|back end +(adv)|back|backward|backwards|rearwards +rearwards|1 +(adv)|back|backward|backwards|rearward +reason|9 +(noun)|ground|rational motive +(noun)|explanation|account +(noun)|understanding|intellect|faculty|mental faculty|module +(noun)|rationality|reasonableness|sanity|saneness +(noun)|cause|grounds|justification +(noun)|fact +(verb)|reason out|conclude|think|cogitate|cerebrate +(verb)|argue|present|represent|lay out +(verb)|think|cogitate|cerebrate +reason out|1 +(verb)|reason|conclude|think|cogitate|cerebrate +reasonable|3 +(adj)|reasonable |sensible|commonsense|commonsensible|commonsensical|healthy|intelligent|levelheaded|sound|logical|tenable|well-founded|fair|just|logical|rational|valid +(adj)|fair|fairish|moderate +(adj)|sane|rational +reasonable care|1 +(noun)|due care|ordinary care|care|charge|tutelage|guardianship +reasonableness|5 +(noun)|rationality|reason|sanity|saneness +(noun)|wisdom|wiseness|soundness +(noun)|moderateness|modestness|inexpensiveness +(noun)|moderation|moderateness +(noun)|tenability|tenableness|plausibility|plausibleness +reasonably|2 +(adv)|moderately|within reason|somewhat|fairly|middling|passably +(adv)|sanely|sensibly +reasoned|2 +(adj)|sound|well-grounded|valid +(adj)|considered|well thought out|thoughtful +reasoner|1 +(noun)|ratiocinator|thinker +reasoning|2 +(adj)|intelligent|thinking|rational +(noun)|logical thinking|abstract thought|thinking|thought|cerebration|intellection|mentation +reasoning backward|1 +(noun)|regress|reasoning|logical thinking|abstract thought +reasoning by elimination|1 +(noun)|elimination|analysis|analytic thinking +reasonless|3 +(adj)|mindless|senseless|unreasonable +(adj)|irrational +(adj)|causeless|unmotivated +reassail|1 +(verb)|assail|assault|set on|attack +reassemble|1 +(verb)|assemble|piece|put together|set up|tack|tack together +reassembly|1 +(noun)|refabrication|reconstruction +reassert|1 +(verb)|confirm|affirm +reassertion|1 +(noun)|reaffirmation|avowal|avouchment|affirmation +reassess|1 +(verb)|reevaluate|measure|evaluate|valuate|assess|appraise|value +reassessment|1 +(noun)|reappraisal|revaluation|review|appraisal|assessment +reassign|1 +(verb)|transfer|delegate|designate|depute|assign +reassignment|1 +(noun)|assignment|duty assignment +reassurance|1 +(noun)|support +reassure|2 +(verb)|assure|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still +(verb)|assure +reassured|1 +(adj)|confident +reassuring|1 +(adj)|reassuring |assuasive|calming|pacifying|soothing|assuring|comforting|consolatory|consoling|encouraging +reata|1 +(noun)|lasso|lariat|riata|rope +reattribute|1 +(verb)|impute|ascribe|assign|attribute +reaumur|1 +(noun)|Reaumur|Rene Antoine Ferchault de Reaumur|physicist +reaumur scale|1 +(noun)|Reaumur scale|temperature scale +reaumur thermometer|1 +(noun)|Reaumur thermometer|thermometer +reave|1 +(verb)|plunder|despoil|loot|strip|rifle|ransack|pillage|foray|take +reawaken|1 +(verb)|awaken|wake|waken|rouse|wake up|arouse +reb|1 +(noun)|Rebel|Reb|Johnny Reb|Johnny|grayback|Confederate soldier +rebarbative|1 +(adj)|repellent|repellant|unpleasant +rebate|5 +(noun)|discount|refund +(noun)|rabbet|groove|channel +(verb)|discount +(verb)|cut +(verb)|join|bring together +rebato|1 +(noun)|rabato|collar|neckband +rebecca|1 +(noun)|Rebecca|Rebekah|wife|married woman +rebecca rolfe|1 +(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan +rebecca west|1 +(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer|author +rebekah|1 +(noun)|Rebecca|Rebekah|wife|married woman +rebel|7 +(adj)|southern +(adj)|rebelling|rebellious|disloyal +(noun)|Rebel|Reb|Johnny Reb|Johnny|grayback|Confederate soldier +(noun)|insurgent|insurrectionist|freedom fighter|revolutionist|revolutionary|subversive|subverter|reformer|reformist|crusader|meliorist +(noun)|maverick|nonconformist|recusant +(verb)|arise|rise|rise up|protest|resist|dissent +(verb)|renegade|protest|resist|dissent +rebelling|1 +(adj)|rebel|rebellious|disloyal +rebellion|2 +(noun)|resistance +(noun)|insurrection|revolt|rising|uprising|conflict|struggle|battle +rebellious|3 +(adj)|insubordinate +(adj)|disaffected|ill-affected|malcontent|discontented |discontent +(adj)|rebel|rebelling|disloyal +rebelliously|1 +(adv)|contumaciously|defiantly +rebelliousness|2 +(noun)|defiance|intractability|intractableness +(noun)|insubordination|resistance +rebind|1 +(verb)|bind +rebirth|4 +(noun)|metempsychosis|phenomenon +(noun)|reincarnation|birth|nativity|nascency|nascence +(noun)|Renaissance|renascence|revival|resurgence|revitalization|revitalisation|revivification +(noun)|conversion|spiritual rebirth|redemption|salvation +reboot|1 +(verb)|boot|bring up|resuscitate|revive +reborn|1 +(adj)|born-again|converted|regenerate +rebound|5 +(noun)|recoil|repercussion|backlash|movement|motion +(noun)|reaction|response +(noun)|catch|grab|snatch|snap +(verb)|bounce|resile|take a hop|spring|bound|recoil|reverberate|ricochet|jump|leap|bound|spring +(verb)|rally|recover|go back|recuperate +rebound tenderness|1 +(noun)|tenderness|soreness|symptom +reboxetine|1 +(noun)|Edronax|antidepressant|antidepressant drug +rebozo|1 +(noun)|scarf +rebroadcast|1 +(verb)|rerun|air|send|broadcast|beam|transmit +rebuff|4 +(noun)|slight|discourtesy|offense|offence|offensive activity +(noun)|snub|repulse|rejection +(verb)|snub|repel|reject|spurn|freeze off|scorn|pooh-pooh|disdain|turn down +(verb)|repel|repulse|fight off|drive back|fight|oppose|fight back|fight down|defend +rebuild|1 +(verb)|reconstruct|construct|build|make +rebuilding|1 +(noun)|reconstruction +rebuilt|1 +(adj)|remodeled|restored +rebuke|2 +(noun)|reproof|reproval|reprehension|reprimand|criticism|unfavorable judgment +(verb)|call on the carpet|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +rebuked|1 +(adj)|admonished|chastened|reprimanded|reproved|punished +rebuker|1 +(noun)|upbraider|reprover|reproacher|authority +reburial|1 +(noun)|reburying|burying|burial +rebury|1 +(verb)|lay|put down|repose +reburying|1 +(noun)|reburial|burying|burial +rebus|1 +(noun)|problem +rebut|2 +(verb)|refute|renounce|repudiate +(verb)|refute|controvert|disprove|confute +rebuttal|2 +(noun)|refutation|defense|defence +(noun)|rebutter|pleading +rebutter|2 +(noun)|disprover|refuter|confuter|debater|arguer +(noun)|rebuttal|pleading +rec room|1 +(noun)|recreation room|room +recalcitrance|1 +(noun)|refractoriness|unmanageableness|recalcitrancy|intractability|intractableness +recalcitrancy|1 +(noun)|refractoriness|unmanageableness|recalcitrance|intractability|intractableness +recalcitrant|2 +(adj)|refractory|intractable +(adj)|defiant |noncompliant +recalcitrate|1 +(verb)|fight|oppose|fight back|fight down|defend +recalculate|1 +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +recalculation|1 +(noun)|calculation|computation|computing +recall|12 +(noun)|callback|request|asking +(noun)|call +(noun)|bugle call +(noun)|recollection|reminiscence|memory|remembering +(noun)|abrogation|repeal|annulment +(verb)|remember|retrieve|call back|call up|recollect|think +(verb)|hark back|return|come back|denote|refer +(verb)|echo|resemble +(verb)|call back|call|send for +(verb)|concentrate|focus|center|centre|pore|rivet +(verb)|cancel|strike down +(verb)|call in|call back|withdraw|take +recall dose|1 +(noun)|booster|booster dose|booster shot|dose +recant|1 +(verb)|abjure|forswear|retract|resile|renounce|repudiate +recantation|1 +(noun)|retraction|abjuration|disavowal|disclaimer +recap|3 +(noun)|recapitulation|review|capitulation +(noun)|retread|car tire|automobile tire|auto tire|rubber tire +(verb)|recapitulate|sum up|summarize|summarise|resume +recapitualtion|1 +(noun)|composing|composition +recapitulate|3 +(verb)|recap|sum up|summarize|summarise|resume +(verb)|duplicate|reduplicate|double|repeat|replicate +(verb)|reprise|reprize|repeat|play|spiel +recapitulation|3 +(noun)|palingenesis|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|section|subdivision +(noun)|recap|review|capitulation +recapture|6 +(noun)|seizure +(noun)|retaking|recovery|retrieval +(verb)|feel|experience +(verb)|capture +(verb)|retake|take +(verb)|retake|get|catch|capture +recast|3 +(verb)|cast +(verb)|remold|remould|cast|mold|mould +(verb)|reforge|remodel|remake|refashion|redo|make over +recasting|1 +(noun)|rewording|rephrasing|rewriting|revising +recce|1 +(noun)|recco|reccy|reconnaissance|reconnaissance mission +recco|1 +(noun)|recce|reccy|reconnaissance|reconnaissance mission +reccy|1 +(noun)|recce|recco|reconnaissance|reconnaissance mission +recede|4 +(verb)|withdraw|retreat|pull away|draw back|pull back|retire|move back|travel|go|move|locomote +(verb)|fall back|retire|withdraw|retreat|pull away|draw back|pull back|retire|move back +(verb)|fall back|lose|drop off|fall behind|regress|retrograde|retrogress +(verb)|change +receding|4 +(adj)|retiring|retreating +(adj)|backward +(noun)|fadeout|disappearance +(noun)|recession|withdrawal +receipt|4 +(noun)|reception|acquiring|getting +(noun)|acknowledgment|acknowledgement +(verb)|acknowledge|communicate|pass on|pass|put across +(verb)|check|check off|mark|mark off|tick off|tick +receipts|3 +(noun)|gross|revenue|income +(noun)|reception|receipt|acquiring|getting +(noun)|receipt|acknowledgment|acknowledgement +receivable|1 +(adj)|due |owed +receivables|1 +(noun)|assets +receive|13 +(verb)|have|get|acquire +(verb)|get|find|obtain|incur|change +(verb)|pick up|perceive|comprehend +(verb)|experience|have|get|undergo +(verb)|take in|invite +(verb)|accept +(verb)|welcome|greet|recognize|recognise +(verb)|convert +(verb)|meet|encounter|have|experience +(verb)|celebrate|fete +(verb)|get +(verb)|partake|touch +(verb)|see|consider|reckon|view|regard +received|2 +(adj)|standard |acceptable|accepted|normative|prescriptive +(adj)|accepted|conventional +receiver|5 +(noun)|receiving system|set +(noun)|liquidator|fiduciary +(noun)|telephone receiver|earphone|earpiece|headphone|phone +(noun)|recipient|acquirer +(noun)|pass receiver|pass catcher|football player|footballer +receiver-creditor relation|1 +(noun)|fiduciary relation +receivership|3 +(noun)|state +(noun)|proceeding|legal proceeding|proceedings +(noun)|position|post|berth|office|spot|billet|place|situation +receiving set|1 +(noun)|radio receiver|radio set|radio|tuner|wireless|receiver|receiving system +receiving system|1 +(noun)|receiver|set +recency|2 +(noun)|recentness|pastness +(noun)|recentness|newness +recent|3 +(adj)|new +(adj)|late|past +(adj)|modern +recent epoch|1 +(noun)|Holocene|Holocene epoch|Recent epoch|epoch +recently|2 +(adv)|late|lately|of late|latterly +(adv)|newly|freshly|fresh|new +recentness|2 +(noun)|recency|pastness +(noun)|recency|newness +receptacle|3 +(noun)|container +(noun)|plant part|plant structure +(noun)|fitting +reception|5 +(noun)|response|greeting|salutation +(noun)|party +(noun)|broadcasting +(noun)|receipt|acquiring|getting +(noun)|catch|grab|snatch|snap +reception desk|1 +(noun)|counter +reception line|1 +(noun)|queue|waiting line +reception room|1 +(noun)|room +receptionist|1 +(noun)|secretary|secretarial assistant +receptive|3 +(adj)|pervious +(adj)|receptive |acceptive|acceptant|hospitable|open to|admissive +(adj)|centripetal|sensory|afferent +receptive aphasia|1 +(noun)|Wernicke's aphasia|fluent aphasia|sensory aphasia|impressive aphasia|aphasia +receptiveness|1 +(noun)|receptivity|openness|willingness +receptivity|1 +(noun)|receptiveness|openness|willingness +receptor|2 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|sense organ|sensory receptor|organ +recess|8 +(noun)|deferral|abeyance|suspension +(noun)|recession|niche|corner|concave shape|concavity|incurvation|incurvature +(noun)|inlet|body of water|water +(noun)|niche|enclosure +(noun)|respite|break|time out|pause +(verb)|put|set|place|pose|position|lay +(verb)|indent +(verb)|adjourn|break up|end|stop|finish|terminate|cease +recessed|2 +(adj)|deep-set|sunken|hollow +(adj)|concave +recession|5 +(noun)|financial condition|economic condition +(noun)|recess|niche|corner|concave shape|concavity|incurvation|incurvature +(noun)|recessional|procession +(noun)|ceding back|cession|ceding +(noun)|receding|withdrawal +recessional|3 +(adj)|withdrawal +(noun)|recession|procession +(noun)|hymn|anthem +recessional march|1 +(noun)|processional march|marching music|march +recessionary|1 +(adj)|recessive|financial condition|economic condition +recessive|2 +(adj)|recessionary|financial condition|economic condition +(adj)|recessive +recessive gene|1 +(noun)|gene|cistron|factor +recharge|2 +(verb)|reload|load|charge +(verb)|charge +rechargeable|1 +(adj)|reversible +rechauffe|1 +(noun)|cuisine|culinary art +recherche|1 +(adj)|exquisite|elegant +rechewed food|1 +(noun)|cud|feed|provender +recidivate|1 +(verb)|relapse|lapse|regress|retrogress|fall back|revert|return|retrovert|regress|turn back +recidivism|1 +(noun)|backsliding|lapse|lapsing|relapse|relapsing|reversion|reverting +recidivist|2 +(noun)|repeater|habitual criminal|criminal|felon|crook|outlaw|malefactor +(noun)|backslider|reversionist|wrongdoer|offender +recife|1 +(noun)|Recife|Pernambuco|city|metropolis|urban center|port +recipe|1 +(noun)|formula|direction|instruction +recipient|2 +(noun)|receiver|acquirer +(noun)|recipient role|semantic role|participant role +recipient role|1 +(noun)|recipient|semantic role|participant role +reciprocal|6 +(adj)|reciprocal |mutual|bilateral|complementary|interchangeable|correlative|interactional|interactive|reciprocating|reciprocatory|reciprocative +(adj)|complementary|interchangeable|reciprocal |mutual +(adj)|inverse +(noun)|reciprocality|reciprocity +(noun)|multiplicative inverse|inverse|opposite +(noun)|reciprocal cross|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +reciprocal-inhibition therapy|1 +(noun)|reciprocal inhibition|behavior therapy|behavior modification +reciprocal cross|1 +(noun)|reciprocal|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +reciprocal inhibition|1 +(noun)|reciprocal-inhibition therapy|behavior therapy|behavior modification +reciprocal ohm|1 +(noun)|mho|siemens|S|conductance unit +reciprocal pronoun|1 +(noun)|pronoun +reciprocality|1 +(noun)|reciprocity|relation +reciprocally|3 +(adv)|in return +(adv)|mutually +(adv)|inversely +reciprocate|2 +(verb)|act|move +(verb)|move +reciprocating|1 +(adj)|reciprocatory|reciprocal |mutual +reciprocating engine|1 +(noun)|internal-combustion engine|ICE +reciprocating saw|1 +(noun)|saber saw|jigsaw|power saw|saw|sawing machine +reciprocation|3 +(noun)|return|paying back|getting even +(noun)|motion|movement|move|motility +(noun)|interchange|give-and-take|interaction +reciprocative|1 +(adj)|reciprocal |mutual +reciprocatory|1 +(adj)|reciprocating|reciprocal |mutual +reciprocity|2 +(noun)|reciprocality|relation +(noun)|interchange|reciprocation|give-and-take +recission|1 +(noun)|rescission|cancellation +recital|5 +(noun)|narration|yarn|report|account +(noun)|performance|public presentation +(noun)|recitation|reading|public speaking|speechmaking|speaking|oral presentation +(noun)|statement +(noun)|history|account|chronicle|story +recitalist|1 +(noun)|soloist +recitation|4 +(noun)|matter +(noun)|recital|reading|public speaking|speechmaking|speaking|oral presentation +(noun)|course session|class period|session +(noun)|exercise|practice|drill|practice session|training|preparation|grooming +recitative|1 +(noun)|passage|musical passage +recite|5 +(verb)|declaim|perform|execute|do +(verb)|repeat|echo +(verb)|retell|re-create +(verb)|tell|narrate|recount|inform +(verb)|enumerate|itemize|itemise|name|identify +reciter|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +reckless|2 +(adj)|foolhardy|rash|bold +(adj)|heedless|careless +recklessness|1 +(noun)|foolhardiness|rashness|unthoughtfulness|thoughtlessness +reckon|6 +(verb)|think|opine|suppose|imagine|guess|expect|anticipate +(verb)|calculate|estimate|count on|figure|forecast|judge +(verb)|see|consider|view|regard|think|believe|consider|conceive +(verb)|calculate|cipher|cypher|compute|work out|figure|reason +(verb)|count|bet|depend|look|calculate|trust|swear|rely|bank +(verb)|count|estimate|gauge|approximate|guess|judge +reckoner|2 +(noun)|calculator|figurer|estimator|computer|expert +(noun)|ready reckoner|handbook|enchiridion|vade mecum +reckoning|3 +(noun)|calculation|computation|figuring|problem solving +(noun)|tally|bill|account|invoice +(noun)|count|counting|numeration|enumeration|tally|investigation|investigating +reclaim|5 +(verb)|repossess|get|acquire +(verb)|recover|recycle|reprocess|reuse +(verb)|reform|regenerate|rectify|change|alter|modify +(verb)|convert|change over +(verb)|domesticate|domesticize|domesticise|tame|change|alter|modify +reclaimable|1 +(adj)|recyclable|reusable|useful |utile +reclaimed|1 +(adj)|rescued|saved +reclamation|3 +(noun)|renewal|rehabilitation|restoration +(noun)|reformation|rescue|deliverance|delivery|saving +(noun)|recovery|retrieval +reclassification|1 +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +reclassify|1 +(verb)|classify|class|sort|assort|sort out|separate +recline|3 +(verb)|lean back|lean|tilt|tip|slant|angle +(verb)|put|set|place|pose|position|lay +(verb)|recumb|repose|lie +recliner|1 +(noun)|reclining chair|lounger|armchair +reclining|2 +(adj)|accumbent|decumbent|recumbent|unerect +(noun)|motion|movement|move|motility +reclining chair|1 +(noun)|recliner|lounger|armchair +recluse|2 +(adj)|reclusive|withdrawn|unsocial +(noun)|hermit|solitary|solitudinarian|troglodyte|loner|lone wolf|lone hand +reclusive|2 +(adj)|recluse|withdrawn|unsocial +(adj)|cloistered|secluded|sequestered|private +reclusiveness|1 +(noun)|isolation|solitariness +recode|1 +(verb)|rearrange +recoding|1 +(noun)|cryptography|coding|secret writing +recognisable|1 +(adj)|recognizable|placeable|identifiable +recognisance|1 +(noun)|recognizance|security|surety +recognise|8 +(verb)|recognize|prize|value|treasure|appreciate +(verb)|accredit|recognize|license|licence|certify +(verb)|recognize|distinguish|discern|pick out|make out|tell apart +(verb)|greet|recognize|address|accost|come up to +(verb)|acknowledge|recognize|thank|give thanks +(verb)|recognize|realize|realise|agnize|agnise|know|cognize|cognise +(verb)|recognize|remember|retrieve|recall|call back|call up|recollect|think +(verb)|acknowledge|recognize|know|accept +recognised|2 +(adj)|recognized|established |constituted +(adj)|accepted|recognized|acknowledged +recognition|8 +(noun)|acknowledgment|acknowledgement|acceptance +(noun)|identification|memory|remembering +(noun)|credit|approval|commendation +(noun)|realization|realisation|understanding|apprehension|discernment|savvy +(noun)|organic phenomenon +(noun)|diplomacy|diplomatic negotiations +(noun)|credence|acceptance +(noun)|appointment|assignment|designation|naming +recognizable|2 +(adj)|perceptible +(adj)|recognisable|placeable|identifiable +recognizance|1 +(noun)|recognisance|security|surety +recognize|9 +(verb)|acknowledge|recognise|know|accept +(verb)|recognise|realize|realise|agnize|agnise|know|cognize|cognise +(verb)|recognise|distinguish|discern|pick out|make out|tell apart +(verb)|recognise|remember|retrieve|recall|call back|call up|recollect|think +(verb)|accredit|recognise|license|licence|certify +(verb)|greet|recognise|address|accost|come up to +(verb)|acknowledge|recognise|thank|give thanks +(verb)|be +(verb)|recognise|prize|value|treasure|appreciate +recognized|2 +(adj)|accepted|recognised|acknowledged +(adj)|recognised|established |constituted +recoil|5 +(noun)|kick|movement|motion +(noun)|repercussion|rebound|backlash|movement|motion +(verb)|flinch|squinch|funk|cringe|shrink|wince|quail|move +(verb)|bounce|resile|take a hop|spring|bound|rebound|reverberate|ricochet|jump|leap|bound|spring +(verb)|kick back|kick|bounce|resile|take a hop|spring|bound|rebound|reverberate|ricochet +recoilless|1 +(adj)|movement|motion +recollect|1 +(verb)|remember|retrieve|recall|call back|call up|think +recollection|3 +(noun)|remembrance|anamnesis|memory|retention|retentiveness +(noun)|recall|reminiscence|memory|remembering +(noun)|memory +recollective|1 +(adj)|retentive +recombinant deoxyribonucleic acid|1 +(noun)|recombinant DNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +recombinant dna|1 +(noun)|recombinant deoxyribonucleic acid|recombinant DNA|deoxyribonucleic acid|desoxyribonucleic acid|DNA +recombinant dna technology|1 +(noun)|genetic engineering|gene-splicing|recombinant DNA technology|biotechnology +recombinant human insulin|1 +(noun)|Humulin|insulin +recombination|2 +(noun)|combining|combine +(noun)|combining|combine +recombine|3 +(verb)|change +(verb)|change|alter|modify +(verb)|compound|combine +recommence|2 +(verb)|begin|lead off|start|commence +(verb)|get down|begin|get|start out|start|set about|set out|commence +recommencement|1 +(noun)|resumption|beginning|start|commencement +recommend|3 +(verb)|urge|advocate|propose|suggest|advise +(verb)|commend|praise +(verb)|change|alter|modify +recommendation|3 +(noun)|advice +(noun)|testimonial|good word|praise|congratulations|kudos +(noun)|passport|characteristic +recommended|1 +(adj)|suggested|advisable +recommit|3 +(verb)|perpetrate|commit|pull +(verb)|entrust|intrust|trust|confide|commit +(verb)|refer +recompense|4 +(noun)|payment +(noun)|compensation|correction|rectification +(verb)|compensate|repair|indemnify|pay +(verb)|compensate|remunerate|pay +reconcilable|1 +(adj)|reconcilable |harmonizable|resolvable +reconcile|4 +(verb)|accommodate|conciliate|harmonize|harmonise +(verb)|harmonize|harmonise|adjust|set|correct +(verb)|patch up|make up|conciliate|settle|agree|hold|concur|concord +(verb)|resign|submit|accept +reconciled|2 +(adj)|reconciled |resigned +(adj)|consistent +reconciler|1 +(noun)|conciliator|make-peace|pacifier|peacemaker|mediator|go-between|intermediator|intermediary|intercessor +reconciliation|2 +(noun)|rapprochement|cooperation +(noun)|balancing|equalization|equalisation|leveling +reconciling|1 +(adj)|accommodative|adaptive |adaptative +recondite|1 +(adj)|abstruse|deep|esoteric +reconditeness|2 +(noun)|abstruseness|abstrusity|profoundness|profundity|wisdom +(noun)|obscureness|obscurity|abstruseness|incomprehensibility +recondition|1 +(verb)|condition +reconditioned|1 +(adj)|repaired|fixed|restored +reconfirm|1 +(verb)|confirm|reassert +reconnaissance|1 +(noun)|reconnaissance mission|intelligence|intelligence activity|intelligence operation +reconnaissance by fire|1 +(noun)|reconnaissance|reconnaissance mission +reconnaissance in force|1 +(noun)|reconnaissance|reconnaissance mission +reconnaissance mission|1 +(noun)|reconnaissance|intelligence|intelligence activity|intelligence operation +reconnaissance plane|1 +(noun)|airplane|aeroplane|plane|warplane|military plane +reconnaissance vehicle|1 +(noun)|scout car|military vehicle|self-propelled vehicle +reconnoiter|1 +(verb)|scout|reconnoitre|observe +reconnoitering|1 +(noun)|scouting|exploratory survey|reconnoitring|reconnaissance|reconnaissance mission +reconnoitre|1 +(verb)|scout|reconnoiter|observe +reconnoitring|1 +(noun)|scouting|exploratory survey|reconnoitering|reconnaissance|reconnaissance mission +reconquer|1 +(verb)|recapture|retake +reconsecrate|1 +(verb)|consecrate|bless|hallow|sanctify +reconsider|2 +(verb)|see|consider|reckon|view|regard +(verb)|see|consider|reckon|view|regard +reconsideration|2 +(noun)|consideration +(noun)|second thought|afterthought|rethink|reversal|change of mind|flip-flop|turnabout|turnaround +reconstitute|1 +(verb)|restructure|structure +reconstruct|5 +(verb)|construct|retrace|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +(verb)|rebuild|construct|build|make +(verb)|change|alter|modify +(verb)|restore|regenerate|renew +(verb)|remodel|redo|change|alter|modify +reconstructed|1 +(adj)|reconstructed +reconstruction|4 +(noun)|Reconstruction|Reconstruction Period|historic period|age +(noun)|repair|fix|fixing|fixture|mend|mending|reparation +(noun)|interpretation +(noun)|reconstructive memory|recall|recollection|reminiscence +reconstruction period|1 +(noun)|Reconstruction|Reconstruction Period|historic period|age +reconstructive|1 +(adj)|rehabilitative|constructive +reconstructive memory|1 +(noun)|reconstruction|recall|recollection|reminiscence +reconstructive surgery|1 +(noun)|plastic surgery|anaplasty|operation|surgery|surgical operation|surgical procedure|surgical process +reconvene|1 +(verb)|convene +reconvert|1 +(verb)|convert +reconvict|1 +(verb)|convict +recopy|1 +(verb)|copy +record|13 +(noun)|evidence +(noun)|number +(noun)|attainment +(noun)|phonograph record|phonograph recording|disk|disc|platter|sound recording|audio recording +(noun)|track record|accomplishment|achievement +(noun)|criminal record|list|listing +(noun)|record book|book|fact +(noun)|document +(verb)|enter|put down|save|preserve +(verb)|tape|enter|put down +(verb)|read|register|show|indicate +(verb)|register +(verb)|commemorate|memorialize|memorialise|immortalize|immortalise|remind +record-breaker|1 +(noun)|record-holder|champion|champ|title-holder +record-breaking|1 +(adj)|best +record-holder|1 +(noun)|record-breaker|champion|champ|title-holder +record-keeper|1 +(noun)|registrar|recorder|official|functionary +record album|2 +(noun)|album|medium +(noun)|phonograph album|album +record book|1 +(noun)|record|book|fact +record changer|1 +(noun)|auto-changer|changer|mechanical device +record company|1 +(noun)|company +record cover|1 +(noun)|record sleeve|sleeve +record hop|1 +(noun)|hop|dance +record jacket|1 +(noun)|jacket +record player|1 +(noun)|phonograph|machine +record sleeve|1 +(noun)|record cover|sleeve +recorded|4 +(adj)|recorded |canned|transcribed|filmed|prerecorded|taped|tape-recorded +(adj)|recorded |on the books +(adj)|registered +(adj)|listed +recorder|4 +(noun)|recording equipment|recording machine|equipment +(noun)|registrar|record-keeper|official|functionary +(noun)|judge|justice|jurist|magistrate +(noun)|fipple flute|fipple pipe|vertical flute|woodwind|woodwind instrument|wood +recorder player|1 +(noun)|musician|instrumentalist|player +recording|3 +(noun)|signal|signaling|sign +(noun)|transcription|creating from raw materials +(noun)|memory device|storage device +recording equipment|1 +(noun)|recorder|recording machine|equipment +recording label|1 +(noun)|label|trade name|brand name|brand|marque +recording machine|1 +(noun)|recorder|recording equipment|equipment +recording studio|1 +(noun)|studio +recording system|1 +(noun)|audio system|sound system +recount|3 +(noun)|count|counting|numeration|enumeration|reckoning|tally +(verb)|tell|narrate|recite|inform +(verb)|count|number|enumerate|numerate +recounting|1 +(noun)|relation|telling|narration|recital|yarn +recoup|3 +(verb)|reimburse|compensate|recompense|remunerate +(verb)|recover|recuperate|get|acquire +(verb)|withhold|deduct|keep|hold on +recourse|2 +(noun)|resort|refuge|aid|assist|assistance|help +(noun)|refuge|resort|resource +recover|6 +(verb)|retrieve|find|regain|get|acquire +(verb)|recuperate|convalesce|better|improve|ameliorate|meliorate +(verb)|go back|recuperate|revert|return|retrovert|regress|turn back +(verb)|recoup|recuperate|get|acquire +(verb)|reclaim|recycle|reprocess|reuse +(verb)|cover +recoverable|1 +(adj)|recoverable |redeemable|retrievable +recovered|2 +(adj)|cured|healed|well +(adj)|found +recoverer|1 +(noun)|rescuer|saver|person|individual|someone|somebody|mortal|human|soul +recovering|1 +(adj)|convalescent|ill |sick +recovery|3 +(noun)|improvement|betterment|advance +(noun)|convalescence|recuperation|healing +(noun)|retrieval|deed|feat|effort|exploit +recovery room|1 +(noun)|hospital room +recreant|4 +(adj)|renegade|disloyal +(adj)|craven|cowardly |fearful +(noun)|poltroon|craven|coward +(noun)|deserter|apostate|renegade|turncoat|ratter|quitter +recreate|4 +(verb)|animate|reanimate|revive|renovate|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +(verb)|play +(verb)|cheer|hearten|embolden|encourage +(verb)|make|create +recreation|2 +(noun)|diversion|activity +(noun)|refreshment|rejuvenation +recreation facility|1 +(noun)|recreational facility|facility|installation +recreation room|1 +(noun)|rec room|room +recreational|2 +(adj)|activity +(adj)|amateur|unpaid|nonprofessional +recreational drug|1 +(noun)|narcotic +recreational facility|1 +(noun)|recreation facility|facility|installation +recreational vehicle|1 +(noun)|RV|self-propelled vehicle +recriminate|1 +(verb)|accuse|impeach|incriminate|criminate +recrimination|1 +(noun)|accusation|accusal +recriminative|1 +(adj)|recriminatory|inculpatory |inculpative +recriminatory|1 +(adj)|recriminative|inculpatory |inculpative +recrudesce|2 +(verb)|break|develop|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|erupt|break out|afflict|trouble|ail|pain +recrudescence|1 +(noun)|outbreak|eruption|irruption +recruit|5 +(noun)|enlisted man +(noun)|enlistee|newcomer|fledgling|fledgeling|starter|neophyte|freshman|newbie|entrant +(verb)|enroll|inscribe|enter|enrol|register +(verb)|engage|enlist +(verb)|levy|raise|enlist|draft|muster in +recruiter|2 +(noun)|supplier|provider +(noun)|official|functionary +recruiting-sergeant|1 +(noun)|sergeant|recruiter +recruitment|1 +(noun)|enlisting|accomplishment|achievement +rectal|1 +(adj)|body part +rectal artery|1 +(noun)|arteria rectalis|artery|arteria|arterial blood vessel +rectal reflex|1 +(noun)|defecation reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +rectal vein|1 +(noun)|hemorrhoidal vein|vena rectalis|vein|vena|venous blood vessel +rectangle|1 +(noun)|parallelogram +rectangular|2 +(adj)|angular |angulate +(adj)|orthogonal|perpendicular +rectangularity|1 +(noun)|oblongness|angularity +rectifiable|1 +(adj)|reparable |maintainable +rectification|4 +(noun)|refining|refinement|purification +(noun)|conversion|transition|changeover +(noun)|correction|improvement +(noun)|determination|finding +rectified|1 +(adj)|corrected +rectifier|2 +(noun)|electrical device +(noun)|person|individual|someone|somebody|mortal|human|soul +rectify|6 +(verb)|determine|find|find out|ascertain +(verb)|refine|purify|sublimate|make pure|distill +(verb)|reform|reclaim|regenerate|change|alter|modify +(verb)|remediate|remedy|repair|amend|correct|right +(verb)|correct|right|change by reversal|turn|reverse +(verb)|change|exchange|commute|convert +rectifying tube|1 +(noun)|diode|rectifying valve|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +rectifying valve|1 +(noun)|diode|rectifying tube|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +rectilineal|1 +(adj)|rectilinear|linear |one-dimensional +rectilinear|1 +(adj)|rectilineal|linear |one-dimensional +rectilinear regression|1 +(noun)|linear regression|regression|simple regression|regression toward the mean|statistical regression +rectitude|1 +(noun)|uprightness|righteousness +recto|1 +(noun)|page +rectocele|1 +(noun)|proctocele|colpocele|vaginocele +rectoplasty|1 +(noun)|proctoplasty|plastic surgery|reconstructive surgery|anaplasty +rector|1 +(noun)|curate|minister|parson|pastor|clergyman|reverend|man of the cloth +rectory|1 +(noun)|parsonage|vicarage|residence +rectosigmoid|1 +(adj)|colon|body part +rectum|1 +(noun)|body part +rectus|1 +(noun)|muscle|musculus +rectus inferior|1 +(noun)|inferior rectus muscle|inferior rectus|ocular muscle|eye muscle +rectus lateralis|1 +(noun)|abducens muscle|lateral rectus muscle|lateral rectus|ocular muscle|eye muscle +rectus medialis|1 +(noun)|medial rectus muscle|medial rectus|ocular muscle|eye muscle +rectus superior|1 +(noun)|superior rectus muscle|superior rectus|ocular muscle|eye muscle +recumb|1 +(verb)|repose|recline|lie +recumbent|1 +(adj)|accumbent|decumbent|reclining|unerect +recuperate|4 +(verb)|recover|recoup|get|acquire +(verb)|recover|go back|revert|return|retrovert|regress|turn back +(verb)|bring around|cure|heal +(verb)|recover|convalesce|better|improve|ameliorate|meliorate +recuperation|1 +(noun)|convalescence|recovery|healing +recuperative|1 +(adj)|restorative|healthful +recur|3 +(verb)|repeat|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|go back|hark back|return|come back|recall +(verb)|fall back|resort|use|utilize|utilise|apply|employ +recurrence|1 +(noun)|return|repeat|repetition +recurrent|1 +(adj)|perennial|repeated|continual +recurrent event|1 +(noun)|periodic event|happening|occurrence|natural event +recurrent fever|1 +(noun)|relapsing fever|infectious disease +recurring|1 +(adj)|revenant|continual +recurring decimal|1 +(noun)|circulating decimal|repeating decimal|decimal fraction|decimal +recursion|1 +(noun)|rule|formula +recursive|1 +(adj)|algorithmic +recursive definition|1 +(noun)|definition +recursive routine|1 +(noun)|routine|subroutine|subprogram|procedure|function +recurvate|1 +(adj)|recurved|curved |curving +recurve|1 +(verb)|crook|curve +recurved|1 +(adj)|recurvate|curved |curving +recurvirostra|1 +(noun)|Recurvirostra|genus Recurvirostra|bird genus +recurvirostridae|1 +(noun)|Recurvirostridae|family Recurvirostridae|bird family +recusal|1 +(noun)|recusation|disqualification +recusancy|1 +(noun)|direct action +recusant|3 +(adj)|dissentient|unorthodox +(adj)|disobedient +(noun)|nonconformist|dissenter|dissident|protester|objector|contestant +recusation|2 +(noun)|recusal|disqualification +(noun)|objection +recuse|2 +(verb)|disqualify +(verb)|reject +recyclable|1 +(adj)|reclaimable|reusable|useful |utile +recycle|2 +(verb)|cycle +(verb)|reprocess|reuse|use|utilize|utilise|apply|employ +recycling|1 +(noun)|use|usage|utilization|utilisation|employment|exercise +recycling bin|1 +(noun)|bin +recycling plant|1 +(noun)|plant|works|industrial plant +red|8 +(adj)|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +(adj)|crimson|violent|bloody +(adj)|crimson|reddened|red-faced|flushed|colored |coloured|colorful +(adj)|bloody +(noun)|redness|chromatic color|chromatic colour|spectral color|spectral colour +(noun)|Red|Red River|river +(noun)|Bolshevik|Marxist|pinko|bolshie|radical +(noun)|loss|red ink|sum|sum of money|amount|amount of money +red-backed lemming|1 +(noun)|gray lemming|lemming +red-backed mouse|1 +(noun)|redback vole|vole|field mouse +red-backed sandpiper|1 +(noun)|dunlin|Erolia alpina|sandpiper +red-bellied snake|1 +(noun)|Storeria occipitamaculata|colubrid snake|colubrid +red-bellied terrapin|1 +(noun)|red-bellied turtle|redbelly|Pseudemys rubriventris|turtle +red-bellied turtle|1 +(noun)|red-bellied terrapin|redbelly|Pseudemys rubriventris|turtle +red-berried elder|2 +(noun)|European red elder|Sambucus racemosa|elder|elderberry bush +(noun)|American red elder|stinking elder|Sambucus pubens|elder|elderberry bush +red-berry|3 +(noun)|redberry|Rhamnus croceus|buckthorn +(noun)|red baneberry|redberry|snakeberry|Actaea rubra|baneberry|cohosh|herb Christopher +(noun)| +red-blind|1 +(adj)|protanopic|blind |unsighted +red-blindness|1 +(noun)|protanopia|red-green dichromacy|red-green color blindness|red-green colour blindness +red-blooded|1 +(adj)|hearty|full-blooded|lusty|healthy +red-breasted merganser|1 +(noun)|Mergus serrator|merganser|fish duck|sawbill|sheldrake +red-breasted nuthatch|1 +(noun)|Sitta canadensis|nuthatch|nutcracker +red-breasted sapsucker|1 +(noun)|Sphyrapicus varius ruber|sapsucker +red-breasted snipe|1 +(noun)|Limnodromus scolopaceus|dowitcher +red-brick|2 +(adj)|redbrick|modern +(adj)| +red-carpet|2 +(adj)|red carpet|uncommon +(adj)| +red-coated|1 +(adj)|lobster-backed|clothed |clad +red-eye|1 +(verb)|fly +red-eyed vireo|1 +(noun)|Vireo olivaceous|vireo +red-faced|2 +(adj)|crimson|red|reddened|flushed|colored |coloured|colorful +(adj)|blushful|blushing|discomposed +red-flowered silky oak|1 +(noun)|Grevillea banksii|silk oak +red-green color blindness|1 +(noun)|red-green dichromacy|red-green colour blindness|dichromacy|dichromatism|dichromatopsia|dichromia|dichromasy +red-green colour blindness|1 +(noun)|red-green dichromacy|red-green color blindness|dichromacy|dichromatism|dichromatopsia|dichromia|dichromasy +red-green dichromacy|1 +(noun)|red-green color blindness|red-green colour blindness|dichromacy|dichromatism|dichromatopsia|dichromia|dichromasy +red-handed|1 +(adj)|guilty +red-header|2 +(noun)|redhead|redheader|carrottop|person|individual|someone|somebody|mortal|human|soul +(noun)| +red-hot|5 +(adj)|juicy|luscious|voluptuous|sexy +(adj)|hot|new +(adj)|sizzling|hot +(adj)|hot +(adj)|blistering|hot|fast +red-hot poker|1 +(noun)|Kniphofia praecox|poker plant|Kniphofia uvaria +red-ink|1 +(verb)|mark +red-lead putty|1 +(noun)|cement +red-legged partridge|1 +(noun)|Alectoris ruffa|partridge +red-letter day|1 +(noun)|day +red-light district|1 +(noun)|city district +red-necked grebe|1 +(noun)|Podiceps grisegena|grebe +red-rimmed|1 +(adj)|rimmed +red-shafted flicker|1 +(noun)|Colaptes caper collaris|flicker +red-shouldered hawk|1 +(noun)|Buteo lineatus|hawk +red-skinned onion|1 +(noun)|Allium haematochiton|onion|onion plant|Allium cepa +red-spotted purple|1 +(noun)|Limenitis astyanax|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +red-tailed hawk|1 +(noun)|redtail|Buteo jamaicensis|hawk +red-veined pie plant|1 +(noun)|Himalayan rhubarb|Indian rhubarb|Rheum australe|Rheum emodi|rhubarb|rhubarb plant +red-winged blackbird|1 +(noun)|redwing|Agelaius phoeniceus|New World blackbird|blackbird +red admiral|1 +(noun)|Vanessa atalanta|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +red alder|1 +(noun)|Oregon alder|Alnus rubra|alder|alder tree +red alert|1 +(noun)|alert|qui vive +red algae|1 +(noun)|alga|algae +red amaranth|1 +(noun)|prince's-feather|gentleman's-cane|prince's-plume|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth +red angel's trumpet|1 +(noun)|Brugmansia sanguinea|Datura sanguinea|shrub|bush +red army faction|1 +(noun)|Red Army Faction|RAF|terrorist organization|terrorist group|foreign terrorist organization|FTO +red ash|1 +(noun)|downy ash|Fraxinus pennsylvanica|ash|ash tree +red baneberry|1 +(noun)|redberry|red-berry|snakeberry|Actaea rubra|baneberry|cohosh|herb Christopher +red bat|1 +(noun)|Lasiurus borealis|vespertilian bat|vespertilionid +red bay|1 +(noun)|laurel-tree|Persea borbonia|laurel +red bearberry|1 +(noun)|common bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +red beech|2 +(noun)|American beech|white beech|Fagus grandifolia|Fagus americana|beech|beech tree +(noun)|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +red birch|1 +(noun)|black birch|river birch|Betula nigra|birch|birch tree +red bird's eye|1 +(noun)|red campion|Silene dioica|Lychnis dioica|silene|campion|catchfly +red blood cell|1 +(noun)|RBC|erythrocyte|blood cell|blood corpuscle|corpuscle +red bone marrow|1 +(noun)|red marrow|marrow|bone marrow +red bordeaux|1 +(noun)|claret|red Bordeaux|Bordeaux|Bordeaux wine|red wine +red brass|1 +(noun)|guinea gold|brass +red brigades|1 +(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization|terrorist group|foreign terrorist organization|FTO +red bryony|1 +(noun)|wild hop|Bryonia dioica|bryony|briony +red buckeye|1 +(noun)|horse chestnut|buckeye|Aesculus hippocastanum +red cabbage|2 +(noun)|head cabbage|head cabbage plant|Brassica oleracea capitata +(noun)|head cabbage +red campion|1 +(noun)|red bird's eye|Silene dioica|Lychnis dioica|silene|campion|catchfly +red carpet|3 +(adj)|red-carpet|uncommon +(adj)| +(noun)|rug|carpet|carpeting +red cedar|4 +(noun)|western red cedar|canoe cedar|Thuja plicata|arborvitae +(noun)|eastern red cedar|red juniper|Juniperus virginiana|pencil cedar|pencil cedar tree +(noun)|incense cedar|Calocedrus decurrens|Libocedrus decurrens|cedar|cedar tree +(noun)|cedar|cedarwood +red cent|1 +(noun)|damn|darn|hoot|shit|shucks|tinker's damn|tinker's dam|worthlessness +red china|1 +(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country|Asian nation +red clay|1 +(noun)|clay|mineral +red clintonia|1 +(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia|Clinton's lily +red cloud|1 +(noun)|Red Cloud|Indian chief|Indian chieftain|Oglala|Ogalala +red clover|1 +(noun)|purple clover|Trifolium pratense|clover|trefoil +red cole|1 +(noun)|horseradish|horse radish|Armoracia rusticana|herb|herbaceous plant +red coral|2 +(noun)|coral|precious coral|opaque gem +(noun)|gorgonian|gorgonian coral +red cross|1 +(noun)|Red Cross|nongovernmental organization|NGO +red currant|2 +(noun)|garden current|Ribes rubrum|currant|currant bush +(noun)|currant +red cypress pine|1 +(noun)|black cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine +red dagga|1 +(noun)|dagga|Cape dagga|wilde dagga|Leonotis leonurus|herb|herbaceous plant +red deer|1 +(noun)|Cervus elaphus|deer|cervid +red delicious|1 +(noun)|Red Delicious|Delicious +red devil|1 +(noun)|secobarbital sodium|secobarbital|Seconal|barbiturate +red dogwood|2 +(noun)|common European dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood|dogwood tree|cornel +(noun)|red osier|red osier dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood|dogwood tree|cornel +red drum|1 +(noun)|channel bass|redfish|Sciaenops ocellatus|drum|drumfish +red dwarf|1 +(noun)|red dwarf star|star +red dwarf star|1 +(noun)|red dwarf|star +red eft|1 +(noun)|Notophthalmus viridescens|newt|triton +red elm|2 +(noun)|September elm|Ulmus serotina|elm|elm tree +(noun)|slippery elm|Ulmus rubra|elm|elm tree +red false mallow|1 +(noun)|prairie mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow|false mallow +red fire|1 +(noun)|fuel +red flag|3 +(noun)|flag|signal flag|alarm|alert|warning signal|alarum +(noun)|emblem|allegory +(noun)|annoyance|annoying|irritation|vexation +red fox|3 +(noun)|Celosia argentea|herb|herbaceous plant +(noun)|Vulpes fulva|fox +(noun)|Vulpes vulpes|fox +red giant|1 +(noun)|red giant star|star +red giant star|1 +(noun)|red giant|star +red ginger|1 +(noun)|Alpinia purpurata|ginger +red goatfish|1 +(noun)|Mullus auratus|goatfish|red mullet|surmullet|Mullus surmuletus +red goosefoot|2 +(noun)|French spinach|Chenopodium rubrum|goosefoot +(noun)|sowbane|Chenopodium hybridum|goosefoot +red gram|1 +(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|dhal|dahl|Cajanus cajan|shrub|bush +red grouse|1 +(noun)|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan +red guard|1 +(noun)|Red Guard|political movement +red gum|5 +(noun)|eucalyptus gum|eucalyptus kino|gum +(noun)|marri|Eucalyptus calophylla|eucalyptus|eucalypt|eucalyptus tree +(noun)|peppermint|peppermint gum|Eucalyptus amygdalina|eucalyptus|eucalypt|eucalyptus tree +(noun)|sweet gum|satin walnut|hazelwood|gumwood|gum +(noun)|sweet gum|sweet gum tree|bilsted|American sweet gum|Liquidambar styraciflua|liquidambar +red hand defenders|1 +(noun)|Red Hand Defenders|RHD|terrorist organization|terrorist group|foreign terrorist organization|FTO +red haw|2 +(noun)|Crataegus pedicellata|Crataegus coccinea|hawthorn|haw +(noun)|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn|haw +red heat|1 +(noun)|fieriness|hotness|heat|high temperature +red helleborine|1 +(noun)|Cephalanthera rubra|helleborine +red herring|3 +(noun)|diversion|deviation|digression|deflection|deflexion|divagation +(noun)|smoked herring|herring +(noun)|preliminary prospectus|course catalog|course catalogue|prospectus +red hot|1 +(noun)|hotdog|hot dog|sandwich +red indian|1 +(noun)|Indian|North American Indian|American Indian|Red Indian|Amerindian|Native American +red ink|1 +(noun)|loss|red|sum|sum of money|amount|amount of money +red jungle fowl|1 +(noun)|Gallus gallus|jungle fowl|gallina +red juniper|1 +(noun)|eastern red cedar|red cedar|Juniperus virginiana|pencil cedar|pencil cedar tree +red kauri|1 +(noun)|Agathis lanceolata|kauri pine|dammar pine +red lauan|2 +(noun)|wood +(noun)|red lauan tree|Shorea teysmanniana|dipterocarp +red lauan tree|1 +(noun)|red lauan|Shorea teysmanniana|dipterocarp +red laver|1 +(noun)|laver|red algae +red lead|1 +(noun)|minium|oxide +red light|2 +(noun)|warning light|visual signal +(noun)|traffic light|traffic signal|stoplight +red line|1 +(noun)|line +red maids|2 +(noun)|redmaids|Calandrinia ciliata|wildflower|wild flower +(noun)| +red man|1 +(noun)|Redskin|Injun|Indian|North American Indian|American Indian|Red Indian +red maple|1 +(noun)|scarlet maple|swamp maple|Acer rubrum|maple +red marrow|1 +(noun)|red bone marrow|marrow|bone marrow +red meat|1 +(noun)|meat +red morning-glory|1 +(noun)|star ipomoea|Ipomoea coccinea|morning glory +red mulberry|1 +(noun)|Morus rubra|mulberry|mulberry tree +red mullet|1 +(noun)|goatfish|surmullet|Mullus surmuletus|mullet +red notice|1 +(noun)|International Wanted Notice|Red Notice|wanted notice|wanted poster +red oak|1 +(noun)|oak|oak tree +red onion|1 +(noun)|purple onion|Spanish onion +red osier|2 +(noun)|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood|dogwood tree|cornel +(noun)|purple willow|red willow|basket willow|purple osier|Salix purpurea|osier +red osier dogwood|1 +(noun)|red osier|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood|dogwood tree|cornel +red panda|1 +(noun)|lesser panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid +red pepper|2 +(noun)|cayenne|cayenne pepper|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|tabasco|hot pepper +red periwinkle|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +red phalarope|1 +(noun)|Phalaropus fulicarius|phalarope +red pimpernel|1 +(noun)|scarlet pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel +red pine|2 +(noun)|rimu|imou pine|Dacrydium cupressinum|conifer|coniferous tree +(noun)|Canadian red pine|Pinus resinosa|pine|pine tree|true pine +red planet|1 +(noun)|Mars|Red Planet|terrestrial planet|superior planet +red poll|3 +(noun)|cattle|cows|kine|oxen|Bos taurus +(noun)|redpoll|Carduelis hornemanni|finch +(noun)|redpoll|Carduelis flammea|finch +red porgy|1 +(noun)|Pagrus pagrus|porgy +red raspberry|1 +(noun)|raspberry|raspberry bush +red rat snake|1 +(noun)|corn snake|Elaphe guttata|rat snake +red region|1 +(noun)|hellfire|Hell|perdition|Inferno|infernal region|nether region|the pit +red river|1 +(noun)|Red|Red River|river +red rockfish|2 +(noun)|saltwater fish +(noun)|Sebastodes ruberrimus|rockfish +red salmon|2 +(noun)|sockeye|sockeye salmon|salmon +(noun)|sockeye|sockeye salmon|blueback salmon|Onchorynchus nerka|salmon +red sandalwood|3 +(noun)|ruby wood|wood +(noun)|red sanders|red sanderswood|red saunders|Pterocarpus santalinus|tree +(noun)|coralwood|coral-wood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree +red sanders|1 +(noun)|red sandalwood|red sanderswood|red saunders|Pterocarpus santalinus|tree +red sanderswood|1 +(noun)|red sandalwood|red sanders|red saunders|Pterocarpus santalinus|tree +red saunders|1 +(noun)|red sandalwood|red sanders|red sanderswood|Pterocarpus santalinus|tree +red scare|1 +(noun)|panic|scare +red sea|1 +(noun)|Red Sea|sea +red setter|1 +(noun)|Irish setter|setter +red shift|1 +(noun)|Doppler effect|Doppler shift +red shrubby penstemon|1 +(noun)|redwood penstemon|shrub|bush +red silk-cotton tree|1 +(noun)|simal|Bombax ceiba|Bombax malabarica|tree +red silk cotton|1 +(noun)|kapok|silk cotton|vegetable silk +red silver fir|1 +(noun)|amabilis fir|white fir|Pacific silver fir|Christmas tree|Abies amabilis|silver fir +red siskin|1 +(noun)|Carduelis cucullata|finch +red snapper|2 +(noun)|snapper +(noun)|Lutjanus blackfordi|snapper +red sorrel|1 +(noun)|roselle|rozelle|sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +red spider|1 +(noun)|red spider mite|Panonychus ulmi|spider mite|tetranychid +red spider mite|1 +(noun)|red spider|Panonychus ulmi|spider mite|tetranychid +red sprites|1 +(noun)|sprites|atmospheric electricity +red spruce|1 +(noun)|eastern spruce|yellow spruce|Picea rubens|spruce +red squirrel|2 +(noun)|American red squirrel|spruce squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel +(noun)|cat squirrel|Sciurus vulgaris|tree squirrel +red sun|1 +(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization|terrorist group|foreign terrorist organization|FTO +red tai|1 +(noun)|Red Tai|Tai +red tape|1 +(noun)|bureaucratic procedure|procedure +red tide|1 +(noun)|seawater|saltwater|brine +red trillium|2 +(noun)|toadshade|sessile trillium|Trillium sessile|trillium|wood lily|wake-robin +(noun)|purple trillium|birthroot|Trillium erectum|trillium|wood lily|wake-robin +red underwing|1 +(noun)|Catocala nupta|underwing +red valerian|1 +(noun)|French honeysuckle|Centranthus ruber|flower +red water|1 +(noun)|animal disease +red willow|1 +(noun)|purple willow|red osier|basket willow|purple osier|Salix purpurea|osier +red wine|1 +(noun)|wine|vino +red wolf|1 +(noun)|maned wolf|Canis rufus|Canis niger|wolf +red worm|1 +(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|oligochaete|oligochaete worm +redact|3 +(noun)|redactor|reviser|rewriter|rewrite man|editor|editor in chief +(verb)|frame|cast|put|couch|give voice|formulate|word|phrase|articulate +(verb)|edit|change|alter|modify +redaction|2 +(noun)|editing|writing|written material|piece of writing +(noun)|writing|authorship|composition|penning +redactor|1 +(noun)|redact|reviser|rewriter|rewrite man|editor|editor in chief +redback vole|1 +(noun)|red-backed mouse|vole|field mouse +redbelly|1 +(noun)|red-bellied terrapin|red-bellied turtle|Pseudemys rubriventris|turtle +redberry|2 +(noun)|red-berry|Rhamnus croceus|buckthorn +(noun)|red baneberry|red-berry|snakeberry|Actaea rubra|baneberry|cohosh|herb Christopher +redbird|2 +(noun)|scarlet tanager|Piranga olivacea|firebird|tanager +(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|finch +redbird cactus|1 +(noun)|Jewbush|Jew-bush|Jew bush|redbird flower|Pedilanthus tithymaloides|slipper spurge|slipper plant +redbird flower|1 +(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|Pedilanthus tithymaloides|slipper spurge|slipper plant +redbone|1 +(noun)|hound|hound dog +redbreast|1 +(noun)|robin|robin redbreast|Old World robin|Erithacus rubecola|thrush +redbrick|1 +(adj)|red-brick|modern +redbrick university|1 +(noun)|university +redbrush|1 +(noun)|red osier|red osier dogwood|red dogwood|American dogwood|Cornus stolonifera|dogwood|dogwood tree|cornel +redbud|1 +(noun)|Cercis canadenis|angiospermous tree|flowering tree +redbug|1 +(noun)|harvest mite|chigger|jigger|trombiculiid +redcap|2 +(noun)|military policeman|MP +(noun)|porter +redcoat|1 +(noun)|lobsterback|soldier +redden|3 +(verb)|blush|crimson|flush|discolor|discolour|colour|color +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|discolor|discolour|colour|color +reddened|2 +(adj)|crimson|red|red-faced|flushed|colored |coloured|colorful +(adj)|ablaze|inflamed|light +redding|1 +(noun)|Redding|town +reddish|1 +(adj)|red|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +reddish-brown|1 +(adj)|auburn|chromatic |achromatic +reddish blue|1 +(noun)|violet|purple|purpleness|empurpled +reddish brown|1 +(noun)|sepia|burnt sienna|Venetian red|brown|brownness +reddish orange|1 +(noun)|orange|orangeness +reddish purple|1 +(noun)|royal purple|purple|purpleness|empurpled +reddle|1 +(noun)|ruddle|raddle|iron ore +redecorate|1 +(verb)|decorate|adorn|grace|ornament|embellish|beautify +rededicate|1 +(verb)|give|dedicate|consecrate|commit|devote +rededication|1 +(noun)|dedication +redeem|4 +(verb)|deliver|save +(verb)|ransom|exchange|change|interchange +(verb)|pay off|pay +(verb)|cash|cash in +redeemable|3 +(adj)|recoverable +(adj)|cashable|convertible |exchangeable +(adj)|reformable|corrigible +redeemed|1 +(adj)|ransomed|saved +redeemer|2 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(noun)|money handler|money dealer +redeeming|2 +(adj)|redemptive|saving|good +(adj)|good +redefine|2 +(verb)|specify|define|delineate|delimit|delimitate +(verb)|define +redefinition|1 +(noun)|definition +redemption|3 +(noun)|salvation|rescue|deliverance|delivery|saving +(noun)|repayment|quittance +(noun)|repurchase|buyback|purchase +redemptional|1 +(adj)|redemptive|redemptory|rescue|deliverance|delivery|saving +redemptive|2 +(adj)|redemptional|redemptory|rescue|deliverance|delivery|saving +(adj)|redeeming|saving|good +redemptory|1 +(adj)|redemptive|redemptional|rescue|deliverance|delivery|saving +redeploy|1 +(verb)|deploy +redeployment|1 +(noun)|redisposition|deployment +redeposit|2 +(verb)|deposit|bank +(verb)|lodge|wedge|stick|deposit +redeposition|1 +(noun)|deposition|deposit +redesign|1 +(verb)|design|plan +redetermination|1 +(noun)|determination|finding +redetermine|1 +(verb)|determine|find|find out|ascertain +redevelop|3 +(verb)|develop +(verb)|reformulate|explicate|formulate|develop +(verb)|build up|develop +redevelopment|1 +(noun)|renovation|improvement +redevelopment authority|1 +(noun)|administrative unit|administrative body +redeye|1 +(noun)|redeye flight|flight +redeye flight|1 +(noun)|redeye|flight +redfin pickerel|1 +(noun)|barred pickerel|Esox americanus|pickerel +redfish|3 +(noun)|rosefish|ocean perch|rockfish +(noun)|red drum|channel bass|Sciaenops ocellatus|drum|drumfish +(noun)|salmon +redford|1 +(noun)|Redford|Robert Redford|Charles Robert Redford|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +redhead|3 +(noun)|redheader|red-header|carrottop|person|individual|someone|somebody|mortal|human|soul +(noun)|Aythya americana|duck +(noun)|redheaded woodpecker|Melanerpes erythrocephalus|woodpecker|peckerwood|pecker +redheaded|1 +(adj)|blond |blonde|light-haired +redheaded woodpecker|1 +(noun)|redhead|Melanerpes erythrocephalus|woodpecker|peckerwood|pecker +redheader|1 +(noun)|redhead|red-header|carrottop|person|individual|someone|somebody|mortal|human|soul +redhorse|1 +(noun)|redhorse sucker|sucker +redhorse sucker|1 +(noun)|redhorse|sucker +rediffusion|1 +(noun)|Rediffusion|broadcasting +redirect|1 +(verb)|airt|send|direct +redirect examination|1 +(noun)|reexamination|interrogation|examination|interrogatory +rediscover|1 +(verb)|discover +rediscovery|1 +(noun)|discovery|find|uncovering +redispose|1 +(verb)|dispose +redisposition|1 +(noun)|redeployment|deployment +redistribute|1 +(verb)|spread|distribute +redistributed|1 +(adj)|decentralized |decentralised +redistribution|1 +(noun)|distribution +redline|1 +(verb)|discriminate|separate|single out +redmaids|1 +(noun)|red maids|Calandrinia ciliata|wildflower|wild flower +redneck|1 +(noun)|cracker|rustic +redness|2 +(noun)|inflammation|rubor|symptom +(noun)|red|chromatic color|chromatic colour|spectral color|spectral colour +redo|2 +(verb)|remake|refashion|make over|produce|make|create +(verb)|remodel|reconstruct|change|alter|modify +redolence|1 +(noun)|bouquet|fragrance|sweetness|olfactory property|smell|aroma|odor|odour|scent +redolent|3 +(adj)|evocative|redolent of|remindful|reminiscent|reminiscent of|mindful |aware +(adj)|smelling|odorous +(adj)|aromatic|fragrant +redolent of|1 +(adj)|evocative|redolent|remindful|reminiscent|reminiscent of|mindful |aware +redonda|1 +(noun)|Redonda|island +redouble|3 +(verb)|escalate|intensify|step up +(verb)|double|duplicate +(verb)|intensify|deepen +redoubled|1 +(adj)|increased +redoubt|1 +(noun)|sconce|stronghold|fastness +redoubtable|2 +(adj)|formidable|unnerving|alarming +(adj)|glorious|illustrious|respected|proud +redound|4 +(verb)|predominate|dominate|rule|reign|prevail +(verb)|reflect +(verb)|accrue +(verb)|affect|impact|bear upon|bear on|touch on|touch +redox|1 +(noun)|oxidation-reduction|oxidoreduction|chemical reaction|reaction +redpoll|2 +(noun)|Carduelis hornemanni|finch +(noun)|Carduelis flammea|finch +redraft|1 +(noun)|draft|bill of exchange|order of payment +redress|3 +(noun)|damages|amends|indemnity|indemnification|restitution|compensation +(noun)|remedy|remediation|correction|rectification +(verb)|right|compensate|correct|change|alter|modify +redroot|1 +(noun)|bloodroot|puccoon|tetterwort|Sanguinaria canadensis|herb|herbaceous plant +redshank|1 +(noun)|Tringa totanus|sandpiper +redskin|1 +(noun)|Redskin|Injun|red man|Indian|North American Indian|American Indian|Red Indian +redstart|2 +(noun)|American redstart|Setophaga ruticilla|flycatching warbler +(noun)|redtail|thrush +redstem storksbill|1 +(noun)|alfilaria|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill|heron's bill +redtail|2 +(noun)|red-tailed hawk|Buteo jamaicensis|hawk +(noun)|redstart|thrush +reduce|19 +(verb)|cut down|cut back|trim|trim down|trim back|cut|bring down|decrease|lessen|minify +(verb)|simplify +(verb)|demote|bump|relegate|break|kick downstairs +(verb)|substitute|replace +(verb)|take down|degrade|disgrace|demean|put down +(verb)|come down|boil down|become|turn +(verb)|shrink|decrease|lessen|minify +(verb)|impoverish +(verb)|scale down|shrink +(verb)|deoxidize|deoxidise|change +(verb)|tighten|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|repress|quash|keep down|subdue|subjugate|oppress|suppress|crush +(verb)|separate|divide|part +(verb)|reposition +(verb)|abridge|foreshorten|abbreviate|shorten|cut|contract|decrease|lessen|minify +(verb)|boil down|decoct|concentrate|decrease|diminish|lessen|fall +(verb)|boil down|concentrate|decrease|lessen|minify +(verb)|dilute|thin|thin out|cut|weaken +(verb)|melt off|lose weight|slim|slenderize|thin|slim down|change state|turn +reduced|2 +(adj)|decreased |ablated|attenuate|attenuated|faded|weakened|bated|belittled|diminished|small|cut|slashed|diminished|minimized|remittent|shriveled|shrivelled|shrunken|attenuated +(adj)|rock-bottom|low +reduced instruction set computer|1 +(noun)|reduced instruction set computing|RISC|computer architecture|architecture +reduced instruction set computing|1 +(noun)|reduced instruction set computer|RISC|computer architecture|architecture +reducer|2 +(noun)|reducing agent|reductant|chemical agent +(noun)|pipefitting|pipe fitting +reducible|1 +(adj)|reducible +reducing|2 +(noun)|reduction|chemical reaction|reaction +(noun)|loss +reducing agent|1 +(noun)|reducer|reductant|chemical agent +reducing diet|1 +(noun)|obesity diet|diet +reductant|1 +(noun)|reducing agent|reducer|chemical agent +reductase|1 +(noun)|enzyme +reductio|1 +(noun)|reductio ad absurdum|disproof|falsification|refutation +reductio ad absurdum|1 +(noun)|reductio|disproof|falsification|refutation +reduction|3 +(noun)|decrease|diminution|step-down|change of magnitude +(noun)|reducing|chemical reaction|reaction +(noun)|simplification|change +reduction division|1 +(noun)|meiosis|miosis|cell division|cellular division +reduction gear|1 +(noun)|gearing|gears|geartrain|power train|train +reductionism|2 +(noun)|theory +(noun)|analysis|analytic thinking +reductionist|1 +(adj)|theory +reductive|1 +(adj)|subtractive +reductivism|1 +(noun)|minimalism|minimal art|artistic movement|art movement +redundance|1 +(noun)|redundancy|overplus|plethora|superfluity|embarrassment +redundancy|4 +(noun)|repetitiveness|repetitiousness +(noun)|redundance|overplus|plethora|superfluity|embarrassment +(noun)|configuration|constellation +(noun)|repetition|repeating +redundant|3 +(adj)|excess|extra|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary |unneeded +(adj)|wordy|prolix +(adj)|pleonastic|tautologic|tautological|prolix +redundant check|1 +(noun)|parity check|odd-even check|confirmation|verification|check|substantiation +reduplicate|2 +(verb)|geminate|duplicate|double|repeat|replicate +(verb)|duplicate|double|repeat|replicate|reproduce +reduplication|4 +(noun)|anadiplosis|repetition +(noun)|syllable +(noun)|word +(noun)|reiteration|repetition|repeating +reduviid|1 +(noun)|assassin bug|heteropterous insect +reduviidae|1 +(noun)|Reduviidae|family Reduviidae|arthropod family +redux|1 +(adj)|revived +redwing|2 +(noun)|red-winged blackbird|Agelaius phoeniceus|New World blackbird|blackbird +(noun)|Turdus iliacus|thrush +redwood|2 +(noun)|wood +(noun)|sequoia|cypress +redwood family|1 +(noun)|Taxodiaceae|subfamily Taxodiaceae|gymnosperm family +redwood national park|1 +(noun)|Redwood National Park|national park +redwood penstemon|1 +(noun)|red shrubby penstemon|shrub|bush +reecho|3 +(verb)|resound|echo|ring|reverberate +(verb)|resound|echo|ring|reverberate +(verb)|repeat|echo +reechoing|1 +(adj)|echoing|reverberant |ringing +reed|5 +(noun)|gramineous plant|graminaceous plant +(noun)|Reed|John Reed|journalist|communist|commie +(noun)|Reed|Walter Reed|surgeon|operating surgeon|sawbones +(noun)|vibrating reed|vibrator +(noun)|beating-reed instrument|woodwind|woodwind instrument|wood +reed bunting|1 +(noun)|Emberiza schoeniclus|bunting +reed canary grass|1 +(noun)|gardener's garters|lady's laces|ribbon grass|Phalaris arundinacea|grass +reed grass|1 +(noun)|grass +reed mace|2 +(noun)|cat's-tail|bullrush|bulrush|nailrod|reedmace|Typha latifolia|cattail +(noun)| +reed meadow grass|1 +(noun)|Glyceria grandis|manna grass|sweet grass +reed organ|1 +(noun)|harmonium|organ|free-reed instrument +reed pipe|1 +(noun)|organ pipe|pipe|pipework +reed rhapis|1 +(noun)|slender lady palm|Rhapis humilis|lady palm +reed section|1 +(noun)|section +reed stop|1 +(noun)|organ stop +reedbird|2 +(noun)|bobolink|ricebird|Dolichonyx oryzivorus|New World oriole|American oriole|oriole +(noun)|sedge warbler|sedge bird|sedge wren|Acrocephalus schoenobaenus|Old World warbler|true warbler +reedlike|1 +(adj)|reedy|thin |lean +reedmace|1 +(noun)|cat's-tail|bullrush|bulrush|nailrod|reed mace|Typha latifolia|cattail +reedy|2 +(adj)|wheezy|noisy +(adj)|reedlike|thin |lean +reef|5 +(noun)|ridge +(noun)|Witwatersrand|Rand|Reef|region|part +(verb)|lower|take down|let down|get down|bring down +(verb)|roll up|furl +(verb)|shrink|reduce +reef knot|1 +(noun)|flat knot|square knot +reef squirrelfish|1 +(noun)|Holocentrus coruscus|squirrelfish +reef whitetip shark|1 +(noun)|whitetip shark|Triaenodon obseus|smooth dogfish +reefer|1 +(noun)|joint|marijuana cigarette|stick|spliff|cigarette|cigaret|coffin nail|butt|fag +reefy|1 +(adj)|shelfy|shelvy|shoaly|shallow +reek|5 +(noun)|malodor|malodour|stench|stink|fetor|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +(verb)|smack|suggest|evoke|paint a picture +(verb)|stink|smell +(verb)|fume|exude|exudate|transude|ooze out|ooze +(verb)|emit|give out|give off +reeking|2 +(adj)|dripping|watery|wet +(adj)|malodorous |malodourous +reel|9 +(noun)|film|photographic film +(noun)|dance music|danceroom music|ballroom music +(noun)|winder +(noun)|bobbin|spool|winder +(noun)|Scottish reel|square dance|square dancing +(noun)|Virginia reel|longways|longways dance +(verb)|stagger|keel|lurch|swag|careen|walk +(verb)|spin|spin around|whirl|gyrate|revolve|go around|rotate +(verb)|wind|wrap|roll|twine +reel off|2 +(verb)|unreel|reel +(verb)|rattle down|rattle off|spiel off|roll off|recite +reelect|1 +(verb)|return|elect +reelection|1 +(noun)|election +reeler|2 +(noun)|staggerer|totterer|pedestrian|walker|footer +(noun)|folk dancer +reenact|3 +(verb)|re-create +(verb)|ordain|enact +(verb)|enact|act out|act|play|represent +reenforce|1 +(verb)|reinforce|strengthen|beef up|fortify +reenforcement|2 +(noun)|reinforcement|confirmation +(noun)|support|reinforcement|operation|military operation +reentering angle|1 +(noun)|reentrant angle|interior angle|internal angle +reentering polygon|1 +(noun)|reentrant polygon|concave polygon +reentrant|1 +(adj)|re-entrant +reentrant angle|1 +(noun)|reentering angle|interior angle|internal angle +reentrant polygon|1 +(noun)|reentering polygon|concave polygon +reentry|1 +(noun)|return +reestablish|1 +(verb)|restore|reinstate|change|alter|modify +reevaluate|1 +(verb)|reassess|measure|evaluate|valuate|assess|appraise|value +reevaluation|1 +(noun)|evaluation|valuation|rating +reeve|4 +(noun)|ruff|Philomachus pugnax +(verb)|pass through +(verb)|pass through +(verb)|pass through +reexamination|2 +(noun)|redirect examination|interrogation|examination|interrogatory +(noun)|follow-up|followup|review|examination|scrutiny +reexamine|1 +(verb)|review|analyze|analyse|study|examine|canvass|canvas +ref|1 +(noun)|referee|official +refabrication|1 +(noun)|reassembly|reconstruction +reface|2 +(verb)|face +(verb)|face +refashion|1 +(verb)|remake|redo|make over|produce|make|create +refection|1 +(noun)|meal|repast +refectory|1 +(noun)|dining-hall +refectory table|1 +(noun)|dining table|board +refer|6 +(verb)|mention|advert|bring up|cite|name|think of|have in mind|mean +(verb)|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|classify|class|sort|assort|sort out|separate +(verb)|send|direct +(verb)|consult|look up|research +(verb)|denote|mean|intend +referable|1 +(adj)|ascribable|due to|imputable|attributable +referee|5 +(noun)|ref|official +(noun)|reviewer|reader|critic +(noun)|lawyer|attorney +(verb)|umpire|judge +(verb)|peer review|review|critique +refereeing|1 +(noun)|umpirage|officiation|officiating|decision making|deciding +reference|10 +(noun)|mention|remark|comment +(noun)|citation|acknowledgment|credit|mention|quotation|note|annotation|notation +(noun)|reference point|point of reference|indicator +(noun)|reference book|reference work|book of facts|book +(noun)|character|character reference|recommendation|testimonial|good word +(noun)|denotation|extension|meaning|substance +(noun)|consultation|action +(noun)|source|publication +(noun)|meaning|substance +(verb)|cite|write|compose|pen|indite +reference book|1 +(noun)|reference|reference work|book of facts|book +reference frame|1 +(noun)|coordinate system|frame of reference|reference system|arrangement|organization|organisation|system +reference grid|1 +(noun)|grid|network +reference manual|1 +(noun)|manual +reference point|1 +(noun)|point of reference|reference|indicator +reference system|1 +(noun)|coordinate system|frame of reference|reference frame|arrangement|organization|organisation|system +reference to|1 +(noun)|regard to|relation to|respect to|relevance|relevancy +reference work|1 +(noun)|reference book|reference|book of facts|book +referenced|1 +(adj)|documented +referendum|1 +(noun)|vote +referent|3 +(noun)|meaning|significance|signification|import +(noun)|term +(noun)|term +referential|1 +(adj)|denotative |denotive +referral|2 +(noun)|recommendation +(noun)|forwarding +referred pain|1 +(noun)|pain|hurting +refill|3 +(noun)|prescription drug|prescription|prescription medicine|ethical drug +(noun)|merchandise|wares|product +(verb)|replenish|fill again|fill|fill up|make full +refilling|1 +(noun)|replenishment|replacement|renewal|filling +refinance|1 +(verb)|finance +refine|6 +(verb)|polish|fine-tune|down|better|improve|amend|ameliorate|meliorate +(verb)|complicate|rarify|elaborate|change|alter|modify +(verb)|process|treat +(verb)|rectify|purify|sublimate|make pure|distill +(verb)|attenuate +(verb)|change|alter|modify +refined|6 +(adj)|refined |civilized|civilised|cultivated|cultured|genteel|polite|couth|dainty|mincing|niminy-piminy|prim|twee|debonair|debonaire|debonnaire|suave|finespun|delicate|gentlemanlike|gentlemanly|ladylike|overrefined|superfine|well-bred|well-mannered|civilized|civilised|elegant|fastidious|gracious|polished +(adj)|refined |processed +(adj)|polished|svelte|urbane|sophisticated +(adj)|purified|sublimate|pure +(adj)|elegant|graceful|gracious +(adj)|neat|tasteful|elegant +refined sugar|1 +(noun)|sugar|sweetening|sweetener +refinement|5 +(noun)|polish|culture|cultivation|finish|perfection|flawlessness|ne plus ultra +(noun)|elaboration|improvement|betterment|advance +(noun)|refining|purification|processing +(noun)|nuance|nicety|shade|subtlety|meaning|significance|signification|import +(noun)|civilization|civilisation|excellence +refiner|1 +(noun)|skilled worker|trained worker +refinery|1 +(noun)|plant|works|industrial plant +refining|1 +(noun)|refinement|purification|processing +refining industry|1 +(noun)|oil industry|oil business|industry +refinish|1 +(verb)|coat|surface +refinisher|1 +(noun)|renovator|restorer|preserver|skilled worker|trained worker +refit|2 +(noun)|outfitting +(verb)|equip|fit|fit out|outfit +reflate|4 +(verb)|change +(verb)|inflate|change|alter|modify +(verb)|inflate|blow up +(verb)|balloon|inflate|billow +reflation|1 +(noun)|inflation|rising prices +reflect|6 +(verb)|indicate|point|show +(verb)|reverberate +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +(verb)|shine|emit|give out|give off +(verb)|attest|certify|manifest|demonstrate|evidence +(verb)|attest|certify|manifest|demonstrate|evidence +reflectance|1 +(noun)|coefficient of reflection|reflection factor|reflectivity|coefficient +reflected|1 +(adj)|reflected |echoic|echolike|mirrored +reflecting|1 +(adj)|reflective +reflecting telescope|1 +(noun)|reflector|optical telescope +reflection|8 +(noun)|contemplation|reflexion|rumination|musing|thoughtfulness|consideration +(noun)|reflexion|physical phenomenon +(noun)|expression|manifestation|reflexion|demonstration|demo +(noun)|reflexion|picture|image|icon|ikon +(noun)|mirror image|reflexion|likeness|alikeness|similitude +(noun)|transformation +(noun)|observation|reflexion|remark|comment +(noun)|reflexion|reflectivity|physical property +reflection factor|1 +(noun)|coefficient of reflection|reflectance|reflectivity|coefficient +reflective|3 +(adj)|brooding|broody|contemplative|meditative|musing|pensive|pondering|ruminative|thoughtful +(adj)|reflective |mirrorlike|specular|reflecting +(adj)|intellectual +reflective power|1 +(noun)|albedo|ratio +reflectivity|2 +(noun)|coefficient of reflection|reflection factor|reflectance|coefficient +(noun)|reflection|reflexion|physical property +reflectometer|1 +(noun)|meter +reflector|2 +(noun)|device +(noun)|reflecting telescope|optical telescope +reflectorise|1 +(verb)|reflectorize|supply|provide|render|furnish +reflectorize|1 +(verb)|reflectorise|supply|provide|render|furnish +reflex|2 +(adj)|automatic|reflexive|involuntary +(noun)|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction|response +reflex angle|1 +(noun)|angle +reflex arc|1 +(noun)|neural structure +reflex camera|1 +(noun)|camera|photographic camera +reflex epilepsy|1 +(noun)|epilepsy +reflexed|1 +(adj)|crooked +reflexion|7 +(noun)|reflection|physical phenomenon +(noun)|expression|manifestation|reflection|demonstration|demo +(noun)|observation|reflection|remark|comment +(noun)|contemplation|reflection|rumination|musing|thoughtfulness|consideration +(noun)|reflection|reflectivity|physical property +(noun)|mirror image|reflection|likeness|alikeness|similitude +(noun)|reflection|picture|image|icon|ikon +reflexive|3 +(adj)|automatic|reflex|involuntary +(adj)|self-referent|backward +(noun)|reflexive pronoun|personal pronoun +reflexive pronoun|1 +(noun)|reflexive|personal pronoun +reflexive verb|1 +(noun)|verb +reflexiveness|1 +(noun)|reflexivity|coreference +reflexivity|2 +(noun)|reflexiveness|coreference +(noun)|logical relation|mathematical relation +refloat|1 +(verb)|float +reflux|2 +(noun)|pathology +(noun)|ebb|flow|flowing +reflux condenser|1 +(noun)|condenser +refocus|3 +(verb)|focus +(verb)|concenter|concentre|focalize|focalise|focus +(verb)|focus|focalize|focalise|sharpen +refocusing|1 +(noun)|focalization|focalisation|focusing +reforest|1 +(verb)|afforest|forest +reforestation|1 +(noun)|re-afforestation|reclamation|renewal|rehabilitation +reforge|1 +(verb)|recast|remodel|remake|refashion|redo|make over +reform|9 +(noun)|improvement +(noun)|campaign|cause|crusade|drive|movement|effort +(noun)|self-improvement|self-reformation +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|reclaim|regenerate|rectify|change|alter|modify +(verb)|create from raw material|create from raw stuff +(verb)|change integrity +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|straighten out|see the light|better|improve|ameliorate|meliorate +reform-minded|1 +(adj)|progressive|reformist|liberal +reform jew|1 +(noun)|Reform Jew|Jew|Hebrew|Israelite +reform judaism|2 +(noun)|Reform Judaism|Judaism|Hebraism|Jewish religion +(noun)|Reform Judaism|Judaism +reform movement|1 +(noun)|movement|social movement|front +reform school|1 +(noun)|reformatory|training school|correctional institution +reformable|1 +(adj)|redeemable|corrigible +reformation|3 +(noun)|improvement|melioration +(noun)|Reformation|Protestant Reformation|religious movement +(noun)|reclamation|rescue|deliverance|delivery|saving +reformative|1 +(adj)|reformatory|helpful +reformatory|2 +(adj)|reformative|helpful +(noun)|reform school|training school|correctional institution +reformed|2 +(adj)|Reformed|unorthodox +(adj)|regenerate +reformer|2 +(noun)|reformist|crusader|meliorist|disputant|controversialist|eristic +(noun)|apparatus|setup +reformism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +reformist|2 +(adj)|progressive|reform-minded|liberal +(noun)|reformer|crusader|meliorist|disputant|controversialist|eristic +reformulate|1 +(verb)|redevelop|explicate|formulate|develop +refract|2 +(verb)|subject +(verb)|determine|find|find out|ascertain +refractile|1 +(adj)|refractive|physical phenomenon +refracting telescope|1 +(noun)|optical telescope +refraction|2 +(noun)|physical phenomenon +(noun)|deflection|deflexion|bending|bend +refractive|2 +(adj)|refractile|physical phenomenon +(adj)|deflective|crooked +refractive index|1 +(noun)|index of refraction|ratio +refractiveness|1 +(noun)|refractivity|deflection|deflexion|bending +refractivity|1 +(noun)|refractiveness|deflection|deflexion|bending +refractometer|1 +(noun)|measuring instrument|measuring system|measuring device +refractoriness|1 +(noun)|unmanageableness|recalcitrance|recalcitrancy|intractability|intractableness +refractory|5 +(adj)|uncooperative +(adj)|stubborn|intractable +(adj)|recalcitrant|intractable +(adj)|fractious|disobedient +(noun)|furnace lining|lining +refractory-lined|1 +(adj)|lining +refractory anaemia|1 +(noun)|refractory anemia|anemia|anaemia +refractory anemia|1 +(noun)|refractory anaemia|anemia|anaemia +refractory period|1 +(noun)|biological time +refractory pot|1 +(noun)|bone-ash cup|cupel|vessel +refracture|1 +(verb)|fracture +refrain|3 +(noun)|chorus|music +(verb)|forbear +(verb)|abstain|desist +refresh|4 +(verb)|review|brush up|remember|retrieve|recall|call back|call up|recollect|think +(verb)|freshen|regenerate|renew +(verb)|freshen|refreshen|freshen up|change +(verb)|freshen|refreshen|change|alter|modify +refreshed|1 +(adj)|fresh|invigorated|reinvigorated|rested +refreshen|2 +(verb)|freshen|refresh|freshen up|change +(verb)|refresh|freshen|change|alter|modify +refresher|3 +(noun)|legal fee +(noun)|beverage|drink|drinkable|potable +(noun)|refresher course|course|course of study|course of instruction|class +refresher course|1 +(noun)|refresher|course|course of study|course of instruction|class +refreshful|1 +(adj)|bracing|brisk|energizing|energising|fresh|refreshing|tonic|invigorating +refreshfully|1 +(adv)|refreshingly +refreshing|2 +(adj)|bracing|brisk|energizing|energising|fresh|refreshful|tonic|invigorating +(adj)|novel|new +refreshingly|1 +(adv)|refreshfully +refreshment|2 +(noun)|bite|collation|snack +(noun)|recreation|rejuvenation +refried beans|1 +(noun)|frijoles refritos|dish +refrigerant|2 +(adj)|refrigerating|cold +(noun)|substance|matter +refrigerate|2 +(verb)|preserve|keep +(verb)|cool|chill|cool down +refrigerated|1 +(adj)|cold +refrigerating|1 +(adj)|refrigerant|cold +refrigeration|2 +(noun)|infrigidation|cooling|chilling|temperature reduction|preservation +(noun)|therapy +refrigeration system|1 +(noun)|cooling system|cooling +refrigerator|1 +(noun)|icebox|white goods +refrigerator car|1 +(noun)|freight car +refrigerator cookie|1 +(noun)|cookie|cooky|biscuit +refuel|2 +(verb)|fuel +(verb)|fuel +refueling|1 +(noun)|fueling|provision|supply|supplying +refuge|4 +(noun)|safety|area|country +(noun)|recourse|resort|resource +(noun)|sanctuary|asylum|shelter +(noun)|recourse|resort|aid|assist|assistance|help +refugee|1 +(noun)|exile|expatriate +refugee camp|1 +(noun)|camp|shelter +refulgence|1 +(noun)|radiance|radiancy|shine|effulgence|refulgency|brightness +refulgency|1 +(noun)|radiance|radiancy|shine|effulgence|refulgence|brightness +refulgent|1 +(adj)|beaming|beamy|effulgent|radiant|bright +refund|3 +(noun)|payment +(noun)|repayment|payment|defrayal|defrayment +(verb)|return|repay|give back|pay +refurbish|1 +(verb)|renovate|freshen up|regenerate|renew +refurbishment|1 +(noun)|renovation|restoration|improvement|melioration +refurnish|1 +(verb)|furnish +refusal|2 +(noun)|denial +(noun)|message|content|subject matter|substance +refuse|7 +(noun)|garbage|food waste|scraps|waste|waste material|waste matter|waste product +(verb)|decline|react|respond +(verb)|reject|pass up|turn down|decline +(verb)|defy|resist|elude|escape +(verb)|deny|keep|hold on +(verb)|resist|reject|react|respond +(verb)|reject|turn down|turn away +refuse collector|1 +(noun)|garbage man|garbage collector|dustman|employee +refuse heap|1 +(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +refutable|1 +(adj)|questionable|confutable|confutative|deniable +refutation|3 +(noun)|defense|defence|answer +(noun)|disproof|falsification|evidence|grounds +(noun)|falsification|falsifying|disproof|determination|finding +refute|2 +(verb)|rebut|renounce|repudiate +(verb)|rebut|controvert|disprove|confute +refuter|1 +(noun)|rebutter|disprover|confuter|debater|arguer +regain|2 +(verb)|recover|retrieve|find|get|acquire +(verb)|find|get|acquire +regaining|1 +(noun)|restitution|return|restoration|acquisition +regal|1 +(adj)|imperial|majestic|purple|royal|noble +regale|1 +(verb)|treat|provide|supply|ply|cater +regalecidae|1 +(noun)|Regalecidae|family Regalecidae|fish family +regalecus glesne|1 +(noun)|oarfish|king of the herring|ribbonfish|Regalecus glesne|soft-finned fish|malacopterygian +regalia|2 +(noun)|gear|paraphernalia|appurtenances +(noun)|array|raiment|clothing|article of clothing|vesture|wear +regard|10 +(noun)|respect|detail|item|point +(noun)|attentiveness|heed|paying attention|attention|attending +(noun)|wish|compliments|greeting|salutation +(noun)|gaze|stare +(noun)|esteem|respect|honor|honour|laurels +(noun)|respect|affection|affectionateness|fondness|tenderness|heart|warmheartedness +(noun)|respect|esteem|attitude|mental attitude +(verb)|see|consider|reckon|view|think|believe|consider|conceive +(verb)|consider|look +(verb)|involve|affect|refer|pertain|relate|concern|come to|bear on|touch|touch on +regard as|1 +(verb)|think of|repute|look upon|look on|esteem|take to be|think|believe|consider|conceive +regard to|1 +(noun)|reference to|relation to|respect to|relevance|relevancy +regardant|1 +(adj)|backward +regardful|1 +(adj)|deferent|deferential|respectful +regardless|2 +(adj)|careless|thoughtless|heedless |thoughtless|unheeding +(adv)|irrespective|disregardless|no matter|disregarding +regatta|1 +(noun)|meet|sports meeting +regency|5 +(adj)|rule +(adj)|Regency|rule +(noun)|rule +(noun)|Regency|rule +(noun)|position|post|berth|office|spot|billet|place|situation +regenerate|10 +(adj)|regenerate |born-again|converted|reborn|reformed|saved +(verb)|renew|re-create +(verb)|increase +(verb)|reform|reclaim|rectify|change|alter|modify +(verb)|restore|rejuvenate|renew +(verb)|re-create +(verb)|form|take form|take shape|spring +(verb)|make|create +(verb)|change +(verb)|revitalize|better|improve|amend|ameliorate|meliorate +regenerating|1 +(adj)|make|create +regeneration|4 +(noun)|organic process|biological process +(noun)|positive feedback|feedback +(noun)|revival|resurgence|revitalization|revitalisation|revivification +(noun)|re-formation|reconstruction +regent|3 +(adj)|powerful +(noun)|trustee|committee member +(noun)|ruler|swayer +reggae|1 +(noun)|popular music|popular music genre +reggane|1 +(noun)|Reggane|town +regicide|2 +(noun)|killer|slayer +(noun)|homicide +regime|2 +(noun)|government|authorities|polity +(noun)|regimen|plan|program|programme +regimen|1 +(noun)|regime|plan|program|programme +regiment|4 +(noun)|army unit +(verb)|control|command +(verb)|form|organize|organise +(verb)|delegate|designate|depute|assign +regimental|1 +(adj)|army unit +regimentals|1 +(noun)|military uniform +regimentation|1 +(noun)|imposition|infliction +regimented|1 +(adj)|controlled +regina|1 +(noun)|Regina|provincial capital +reginald carey harrison|1 +(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor|histrion|player|thespian|role player +reginald joseph mitchell|1 +(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer +reginald marsh|1 +(noun)|Marsh|Reginald Marsh|painter +regiomontanus|1 +(noun)|Muller|Johann Muller|Regiomontanus|mathematician|astronomer|uranologist|stargazer +region|5 +(noun)|part|location +(noun)|area|body part +(noun)|location +(noun)|neighborhood|indefinite quantity +(noun)|domain|realm|knowledge domain|knowledge base +regional|2 +(adj)|location +(adj)|territorial +regional anaesthesia|1 +(noun)|regional anesthesia|anesthesia|anaesthesia +regional anatomy|1 +(noun)|topographic anatomy|topology|anatomy|general anatomy +regional anesthesia|1 +(noun)|regional anaesthesia|anesthesia|anaesthesia +regional enteritis|1 +(noun)|regional ileitis|Crohn's disease|colitis|inflammatory bowel disease +regional ileitis|1 +(noun)|regional enteritis|Crohn's disease|colitis|inflammatory bowel disease +regionalism|3 +(noun)|non-standard speech +(noun)|foreign policy +(noun)|loyalty +register|17 +(noun)|registry|written record|written account +(noun)|timbre|timber|quality|tone +(noun)|record +(noun)|memory device|storage device +(noun)|air passage|air duct|airway +(noun)|regulator +(noun)|cash register|cashbox|money box|till +(verb)|record|enter|put down +(verb)|file +(verb)|enroll|inscribe|enter|enrol|recruit +(verb)|record +(verb)|read|show|record|indicate +(verb)|cross-file|campaign|run +(verb)|show|show up +(verb)|play +(verb)|mail|post|send +(verb)|affect +register language|1 +(noun)|tone language|tonal language +registered|3 +(adj)|registered +(adj)|registered |certified|qualified|enrolled|listed|recorded +(adj)|documented +registered bond|1 +(noun)|bond|bond certificate|registered security +registered mail|1 +(noun)|registered post|mail +registered nurse|1 +(noun)|RN|nurse +registered post|1 +(noun)|registered mail|mail +registered representative|1 +(noun)|account executive|account representative|customer's broker|customer's man|businessperson|bourgeois +registered security|1 +(noun)|security|certificate +registrant|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +registrar|3 +(noun)|employee +(noun)|academic administrator +(noun)|record-keeper|recorder|official|functionary +registration|5 +(noun)|enrollment|enrolment|entrance|entering|entry|ingress|incoming +(noun)|enrollment|body +(noun)|certificate|certification|credential|credentials +(noun)|sound property +(noun)|adjustment|readjustment|calibration|standardization|standardisation +registration fire|1 +(noun)|fire|firing +registration number|1 +(noun)|license number|number|identification number +registry|1 +(noun)|register|written record|written account +regius professor|1 +(noun)|Regius professor|professor|prof +reglaecus|1 +(noun)|Reglaecus|genus Regalecus|fish genus +regnant|1 +(adj)|reigning|ruling|powerful +regnellidium|1 +(noun)|Regnellidium diphyllum|aquatic fern|water fern +regnellidium diphyllum|1 +(noun)|regnellidium|Regnellidium diphyllum|aquatic fern|water fern +regorge|1 +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +regosol|1 +(noun)|soil|dirt +regress|6 +(noun)|reasoning backward|reasoning|logical thinking|abstract thought +(noun)|regression|reversion|retrogression|retroversion|reversal +(verb)|change +(verb)|revert|return|retrovert|turn back|change by reversal|turn|reverse +(verb)|retrograde|retrogress|worsen|decline +(verb)|relapse|lapse|recidivate|retrogress|fall back|revert|return|retrovert|turn back +regression|4 +(noun)|arrested development|fixation|infantile fixation|abnormality|abnormalcy|abnormal condition +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|simple regression|regression toward the mean|statistical regression|statistical method|statistical procedure +(noun)|regress|reversion|retrogression|retroversion|reversal +regression analysis|1 +(noun)|multivariate analysis +regression coefficient|1 +(noun)|parametric statistic +regression curve|1 +(noun)|regression line|curve +regression equation|1 +(noun)|regression of y on x|equation +regression line|1 +(noun)|regression curve|curve +regression of y on x|1 +(noun)|regression equation|equation +regression toward the mean|1 +(noun)|regression|simple regression|statistical regression|statistical method|statistical procedure +regressive|2 +(adj)|regressive |flat|fixed|graduated +(adj)|regressive |atavistic|throwback|retrograde|retrogressive|returning|reverting|unmodernized|unmodernised|backward +regret|5 +(noun)|sorrow|rue|ruefulness|sadness|unhappiness +(verb)|repent|rue|feel|experience +(verb)|miss +(verb)|refuse|decline +(verb)|inform +regretful|1 +(adj)|regretful |sorry +regrets|2 +(noun)|declination|refusal|acknowledgment|acknowledgement +(noun)|sorrow|regret|rue|ruefulness|sadness|unhappiness +regrettable|1 +(adj)|too bad|unfortunate +regrettably|1 +(adv)|unfortunately|unluckily|alas +regroup|2 +(verb)|reorganize|reorganise|form|organize|organise +(verb)|group +regrow|1 +(verb)|grow|develop|produce|get|acquire +regular|17 +(adj)|regular |daily|day-to-day|day-after-day|every day|first-string|lawful|orderly|rule-governed|official|prescribed|regularized|regularised|routine|standard|stock|timed|well-ordered|uniform|weak|rhythmical|rhythmic|symmetrical|symmetric|systematic +(adj)|veritable|typical +(adj)|standard +(adj)|regular +(adj)|scheduled +(adj)|usual +(adj)|even|steady +(adj)|steady|frequent +(adj)|regular |standing +(adj)|unconstipated |diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|lax|loose +(adj)|even|symmetrical |symmetric +(adj)|normal +(adj)|full-time +(noun)|habitue|fixture|patron|frequenter +(noun)|soldier +(noun)|follower +(noun)|size +regular army|1 +(noun)|army|ground forces|military service|armed service|service +regular convex polyhedron|1 +(noun)|regular polyhedron|regular convex solid|Platonic body|Platonic solid|ideal solid|polyhedron +regular convex solid|1 +(noun)|regular polyhedron|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron +regular dodecahedron|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +regular hexagon|1 +(noun)|hexagon +regular hexahedron|1 +(noun)|cube|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +regular icosahedron|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +regular octahedron|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +regular payment|1 +(noun)|payment +regular polygon|1 +(noun)|isogon +regular polyhedron|1 +(noun)|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron +regular recurrence|1 +(noun)|rhythm|cyclicity|periodicity +regular tetrahedron|1 +(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid +regularisation|2 +(noun)|regularization|condition|status +(noun)|regulation|regularization|control +regularise|2 +(verb)|regulate|regularize|order|govern|decide|make up one's mind|determine +(verb)|regularize|arrange|set up +regularised|1 +(adj)|regularized|regular +regularity|2 +(noun)|geometrical regularity|symmetry|symmetricalness|correspondence|balance +(noun)|quality +regularization|2 +(noun)|regularisation|condition|status +(noun)|regulation|regularisation|control +regularize|2 +(verb)|regulate|regularise|order|govern|decide|make up one's mind|determine +(verb)|regularise|arrange|set up +regularized|1 +(adj)|regularised|regular +regularly|1 +(adv)|on a regular basis +regulate|4 +(verb)|modulate|adjust|set|correct +(verb)|regularize|regularise|order|govern|decide|make up one's mind|determine +(verb)|determine|shape|mold|influence|cause|do|make +(verb)|baffle|restrict|restrain|trammel|limit|bound|confine|throttle +regulated|2 +(adj)|regulated |thermostated +(adj)|ordered|orderly|organized +regulating|1 +(noun)|regulation|control +regulation|7 +(adj)|standard +(noun)|ordinance|rule|prescript +(noun)|rule|concept|conception|construct +(noun)|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|organic process|biological process +(noun)|regularization|regularisation|control +(noun)|regulating|control +regulation time|1 +(noun)|time period|period of time|period +regulative|1 +(adj)|regulatory|restrictive +regulator|3 +(noun)|control|controller +(noun)|official|functionary +(noun)|governor|control|controller +regulator gene|1 +(noun)|regulatory gene|gene|cistron|factor +regulatory|1 +(adj)|regulative|restrictive +regulatory agency|1 +(noun)|regulatory authority|administrative unit|administrative body +regulatory authority|1 +(noun)|regulatory agency|administrative unit|administrative body +regulatory gene|1 +(noun)|regulator gene|gene|cistron|factor +regulatory offence|1 +(noun)|statutory offense|statutory offence|regulatory offense|crime|law-breaking +regulatory offense|1 +(noun)|statutory offense|statutory offence|regulatory offence|crime|law-breaking +regulus|2 +(noun)|Regulus|star +(noun)|Regulus|genus Regulus|bird genus +regulus calendula|1 +(noun)|ruby-crowned kinglet|ruby-crowned wren|Regulus calendula|kinglet +regulus regulus|1 +(noun)|goldcrest|golden-crested kinglet|Regulus regulus|kinglet +regulus satrata|1 +(noun)|gold-crowned kinglet|Regulus satrata|kinglet +regur|1 +(noun)|regur soil|loam +regur soil|1 +(noun)|regur|loam +regurgitate|4 +(verb)|pour +(verb)|feed|give +(verb)|reproduce|repeat|echo +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|throw up|excrete|egest|eliminate|pass +regurgitation|3 +(noun)|backflow|backflowing +(noun)|recall|recollection|reminiscence +(noun)|vomit|vomiting|emesis|disgorgement|puking|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +rehabilitate|3 +(verb)|reinstate +(verb)|restore|reconstruct +(verb)|restore|reconstruct +rehabilitated|1 +(adj)|restored +rehabilitation|4 +(noun)|restoration +(noun)|reclamation|renewal|restoration +(noun)|vindication|exoneration +(noun)|physical therapy|physiotherapy|physiatrics +rehabilitation program|1 +(noun)|program|programme +rehabilitative|2 +(adj)|rehabilitative +(adj)|reconstructive|constructive +reharmonisation|1 +(noun)|reharmonization|harmonization|harmonisation +reharmonise|1 +(verb)|reharmonize|harmonize|harmonise +reharmonization|1 +(noun)|reharmonisation|harmonization|harmonisation +reharmonize|1 +(verb)|reharmonise|harmonize|harmonise +rehash|3 +(noun)|material +(verb)|recycle|reprocess|reuse +(verb)|retrograde|hash over|recapitulate|recap +rehear|1 +(verb)|retry|hear|try +rehearing|1 +(noun)|relistening|listening|hearing +rehearsal|2 +(noun)|dry run|exercise|practice|drill|practice session|recitation +(noun)|exercise|practice|drill|practice session|recitation +rehearse|1 +(verb)|practise|practice|perform|execute|do +reheat|1 +(verb)|heat|heat up +reheated|1 +(adj)|leftover|cooked-over|warmed-over|uneaten +reheel|1 +(verb)|heel|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +rehnquist|1 +(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|jurist|legal expert +rehouse|1 +(verb)|house|put up|domiciliate +reich|3 +(noun)|Reich|state|nation|country|land|commonwealth|res publica|body politic +(noun)|Reich|Wilhelm Reich|analyst|psychoanalyst +(noun)|Reich|Steve Reich|Stephen Michael Reich|composer +reichstein|1 +(noun)|Reichstein|Tadeus Reichstein|chemist +reid|1 +(noun)|Reid|Thomas Reid|philosopher +reification|2 +(noun)|hypostatization|hypostatisation|objectification +(noun)|depersonalization|depersonalisation|objectification +reify|1 +(verb)|see|consider|reckon|view|regard +reign|5 +(noun)|time period|period of time|period +(noun)|historic period|age +(noun)|sovereignty|dominion|rule +(verb)|govern|rule +(verb)|predominate|dominate|rule|prevail +reign of terror|2 +(noun)|reign +(noun)|Reign of Terror|historic period|age +reigning|1 +(adj)|regnant|ruling|powerful +reignite|1 +(verb)|ignite|light +reimburse|2 +(verb)|refund|return|repay|give back +(verb)|recoup|compensate|recompense|remunerate +reimbursement|1 +(noun)|compensation +reimpose|1 +(verb)|levy|impose +reimposition|1 +(noun)|imposition|infliction +reims|1 +(noun)|Rheims|Reims|city|metropolis|urban center +rein|6 +(noun)|strap +(noun)|control +(verb)|harness|rein in|draw rein|control|command +(verb)|rein in|stop|halt +(verb)|rein in|stop +(verb)|rule|harness|restrict|restrain|trammel|limit|bound|confine|throttle +rein in|3 +(verb)|rein|stop|halt +(verb)|harness|draw rein|rein|control|command +(verb)|rein|stop +rein orchid|1 +(noun)|rein orchis|orchid|orchidaceous plant +rein orchis|1 +(noun)|rein orchid|orchid|orchidaceous plant +reincarnate|3 +(adj)|corporeal |material +(verb)|transmigrate|be born +(verb)|renew|regenerate|restore|rejuvenate +reincarnation|3 +(noun)|embodiment|incarnation|avatar +(noun)|rebirth|birth|nativity|nascency|nascence +(noun)|theological doctrine|religious doctrine +reincarnationism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +reindeer|1 +(noun)|caribou|Greenland caribou|Rangifer tarandus|deer|cervid +reindeer lichen|1 +(noun)|reindeer moss|arctic moss|Cladonia rangiferina|lichen +reindeer moss|1 +(noun)|reindeer lichen|arctic moss|Cladonia rangiferina|lichen +reinforce|2 +(verb)|reenforce|strengthen|beef up|fortify +(verb)|reward|teach|learn|instruct +reinforced|2 +(adj)|strengthened|strong +(adj)|built|improved +reinforced concrete|1 +(noun)|ferroconcrete|concrete +reinforcement|5 +(noun)|support|reenforcement|operation|military operation +(noun)|reenforcement|confirmation +(noun)|reinforcing stimulus|reinforcer|stimulation|stimulus|stimulant|input +(noun)|strengthener|device +(noun)|reward|blessing|approval|approving +reinforcer|1 +(noun)|reinforcing stimulus|reinforcement|stimulation|stimulus|stimulant|input +reinforcing stimulus|1 +(noun)|reinforcer|reinforcement|stimulation|stimulus|stimulant|input +reinhold niebuhr|1 +(noun)|Niebuhr|Reinhold Niebuhr|theologian|theologist|theologizer|theologiser +reins|3 +(noun)|power|powerfulness +(noun)|rein|strap +(noun)|rein|control +reinstall|1 +(verb)|install|instal|put in|set up +reinstate|2 +(verb)|restore|reconstruct +(verb)|restore|reestablish|change|alter|modify +reinstatement|2 +(noun)|condition|status +(noun)|restoration +reinsurance|1 +(noun)|insurance +reinsure|3 +(verb)|insure +(verb)|insure +(verb)|cover|insure|underwrite +reintegrate|1 +(verb)|integrate|incorporate +reinterpret|2 +(verb)|re-explain|interpret +(verb)|interpret|construe|see +reinterpretation|2 +(noun)|interpretation|reading|version +(noun)|rendition|rendering|interpretation +reintroduce|1 +(verb)|re-introduce|introduce|present|acquaint +reintroduction|1 +(noun)|presentation|introduction|intro +reinvent|2 +(verb)|create +(verb)|recreate +reinvigorate|1 +(verb)|invigorate|stimulate|arouse|brace|energize|energise|perk up +reinvigorated|1 +(adj)|fresh|invigorated|refreshed|rested +reissue|3 +(noun)|reprint|reprinting|publication +(verb)|reprint|reproduce +(verb)|issue|supply +reit|1 +(noun)|Real Estate Investment Trust|REIT|investment company|investment trust|investment firm|fund +reiter|1 +(noun)|Reiter|Hans Conrad Julius Reiter|bacteriologist +reiter's disease|1 +(noun)|Reiter's syndrome|Reiter's disease|syndrome +reiter's syndrome|1 +(noun)|Reiter's syndrome|Reiter's disease|syndrome +reiterate|1 +(verb)|repeat|ingeminate|iterate|restate|retell|tell +reiteration|1 +(noun)|reduplication|repetition|repeating +reiterative|1 +(adj)|iterative|repetitious|repetitive|unvaried |unvarying +reithrodontomys|1 +(noun)|Reithrodontomys|genus Reithrodontomys|mammal genus +reject|8 +(noun)|cull|decision making|deciding +(verb)|judge +(verb)|refuse|pass up|turn down|decline +(verb)|disapprove|judge +(verb)|spurn|freeze off|scorn|pooh-pooh|disdain|turn down|refuse|decline +(verb)|resist|refuse|react|respond +(verb)|turn down|turn away|refuse +(verb)|rule out|eliminate +rejected|3 +(adj)|castaway|forsaken +(adj)|jilted|spurned|unloved +(adj)|disapproved +rejection|4 +(noun)|act|human action|human activity +(noun)|situation|state of affairs +(noun)|organic phenomenon +(noun)|speech act +rejective|1 +(adj)|rejective |repudiative +rejig|1 +(verb)|re-equip|equip|fit|fit out|outfit +rejoice|3 +(verb)|joy|feel|experience +(verb)|exult|triumph|jubilate|cheer|cheer up|chirk up +(verb)|wallow|triumph|exult|walk on air|be on cloud nine|jump for joy +rejoicing|3 +(adj)|exultant|exulting|jubilant|prideful|triumphal|triumphant|elated +(noun)|happiness +(noun)|exultation|jubilation|utterance|vocalization +rejoicing in the law|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +rejoicing of the law|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +rejoicing over the law|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +rejoin|2 +(verb)|join|fall in|get together +(verb)|retort|come back|repay|return|riposte|answer|reply|respond +rejoinder|2 +(noun)|retort|return|riposte|replication|comeback|counter|reply|response +(noun)|pleading +rejuvenate|5 +(verb)|provoke|stimulate +(verb)|change +(verb)|regenerate|revitalize +(verb)|regenerate|restore|regenerate|renew +(verb)|regenerate +rejuvenation|2 +(noun)|greening|organic phenomenon +(noun)|restoration +rekindle|2 +(verb)|kindle|enkindle|conflagrate|inflame +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +relace|1 +(verb)|lace|lace up +relafen|1 +(noun)|nabumetone|Relafen|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +relapse|3 +(noun)|backsliding|lapse|lapsing|relapsing|reversion|reverting|failure +(verb)|get worse|change state|turn +(verb)|lapse|recidivate|regress|retrogress|fall back|revert|return|retrovert|regress|turn back +relapsing|1 +(noun)|backsliding|lapse|lapsing|relapse|reversion|reverting|failure +relapsing fever|1 +(noun)|recurrent fever|infectious disease +relate|5 +(verb)|associate|tie in|link|colligate|link up|connect|think|cogitate|cerebrate +(verb)|refer|pertain|concern|come to|bear on|touch|touch on +(verb)|tell|narrate|recount|recite +(verb)|interrelate|be +(verb)|interact +related|4 +(adj)|related |related to|accompanying|attendant|concomitant|incidental|incidental to|affiliated|attached|connected|associated|connected|cognate|concerned|connate|cognate|correlative|correlate|correlated|corresponding|overlapping|bound up|side by side +(adj)|related |affinal|affine|agnate|agnatic|paternal|akin|blood-related|cognate|consanguine|consanguineous|kin|allied|enate|enatic|maternal|kindred|collateral|indirect|lineal|direct +(adj)|akin|kindred|similar +(adj)|germane|relevant +related to|1 +(adj)|related |accompanying|attendant|concomitant|incidental|incidental to|affiliated|attached|connected|associated|connected|cognate|concerned|connate|cognate|correlative|correlate|correlated|corresponding|overlapping|bound up|side by side +relatedness|1 +(noun)|connection|connexion|connectedness +relatiative|1 +(adj)|retaliatory|retributive|retributory|vindicatory|punitive |punitory +relation|6 +(noun)|abstraction +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +(noun)|relative|person|individual|someone|somebody|mortal|human|soul +(noun)|telling|recounting|narration|recital|yarn +(noun)|relation back|legal principle|judicial principle|judicial doctrine +(noun)|dealings|traffic +relation back|1 +(noun)|relation|legal principle|judicial principle|judicial doctrine +relation to|1 +(noun)|reference to|regard to|respect to|relevance|relevancy +relational|1 +(adj)|relative +relational adjective|1 +(noun)|classifying adjective|adjective +relational database|1 +(noun)|electronic database|on-line database|computer database|electronic information service +relational database management system|1 +(noun)|database management system|DBMS +relations|7 +(noun)|dealings|social relation +(noun)|relation|abstraction +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +(noun)|relative|relation|person|individual|someone|somebody|mortal|human|soul +(noun)|relation|telling|recounting|narration|recital|yarn +(noun)|relation back|relation|legal principle|judicial principle|judicial doctrine +(noun)|relation|dealings|traffic +relationship|4 +(noun)|human relationship|relation +(noun)|state +(noun)|state +(noun)|kinship|family relationship|relation +relative|4 +(adj)|relative |comparative|qualifying|relational +(adj)|proportional|proportionate +(noun)|relation|person|individual|someone|somebody|mortal|human|soul +(noun)|congener|congenator|organism|being +relative-in-law|1 +(noun)|in-law|relative|relation +relative atomic mass|1 +(noun)|atomic weight|mass +relative clause|1 +(noun)|clause +relative density|1 +(noun)|density|denseness +relative frequency|1 +(noun)|frequency|ratio +relative humidity|1 +(noun)|ratio +relative incidence|1 +(noun)|incidence|frequency|relative frequency +relative majority|1 +(noun)|plurality|relative quantity +relative molecular mass|1 +(noun)|molecular weight|mass +relative pronoun|1 +(noun)|pronoun +relative quantity|1 +(noun)|measure|quantity|amount +relatively|1 +(adv)|comparatively +relativise|1 +(verb)|relativize|see|consider|reckon|view|regard +relativism|1 +(noun)|philosophical doctrine|philosophical theory +relativistic|2 +(adj)|scientific theory +(adj)|philosophical doctrine|philosophical theory +relativistic mass|1 +(noun)|mass +relativity|1 +(noun)|theory of relativity|relativity theory|Einstein's theory of relativity|scientific theory +relativity theory|1 +(noun)|relativity|theory of relativity|Einstein's theory of relativity|scientific theory +relativize|1 +(verb)|relativise|see|consider|reckon|view|regard +relatum|1 +(noun)|term +relax|8 +(verb)|loosen up|unbend|unwind|decompress|slow down|change state|turn +(verb)|unbend|loosen|loose +(verb)|loosen|loose|weaken +(verb)|unstrain|unlax|loosen up|unwind|make relaxed|affect +(verb)|loosen up|act|behave|do +(verb)|loosen|change|alter|modify +(verb)|loosen|change +(verb)|slack|slacken|slack up|decrease|lessen|minify +relaxant|2 +(adj)|depressant +(noun)|drug|treatment +relaxation|7 +(noun)|increase|increment|growth +(noun)|relaxation behavior|exponential decay|exponential return +(noun)|easiness|tranquillity|tranquility|quietness|quietude +(noun)|loosening|slackening|weakening +(noun)|rest|ease|repose|inactivity +(noun)|relaxation method|mathematical process|mathematical operation|operation +(noun)|liberalization|liberalisation|easing|easement|alleviation|relief +relaxation behavior|1 +(noun)|relaxation|exponential decay|exponential return +relaxation method|1 +(noun)|relaxation|mathematical process|mathematical operation|operation +relaxation time|1 +(noun)|time constant +relaxed|2 +(adj)|relaxed |at ease|degage|easygoing|laid-back|mellow|unstrained|easy|at ease|unagitated +(adj)|lax +relaxer|1 +(noun)|agent +relaxin|1 +(noun)|hormone|endocrine|internal secretion +relaxing|1 +(adj)|restful|reposeful|quiet +relay|4 +(noun)|passage|handing over +(noun)|electrical relay|electrical device +(verb)|communicate|pass on|pass|put across +(verb)|operate|control +relay links|1 +(noun)|boosters|booster amplifier|booster stations|relay stations|relay transmitters|amplifier +relay race|1 +(noun)|relays|race +relay stations|1 +(noun)|boosters|booster amplifier|booster stations|relay links|relay transmitters|amplifier +relay transmitters|1 +(noun)|boosters|booster amplifier|booster stations|relay links|relay stations|amplifier +relays|3 +(noun)|relay race|race +(noun)|relay|passage|handing over +(noun)|relay|electrical relay|electrical device +relearn|1 +(verb)|learn|larn|acquire +release|20 +(noun)|merchandise|wares|product +(noun)|liberation|freeing|accomplishment|achievement +(noun)|natural process|natural action|action|activity +(noun)|handout|press release|announcement|promulgation +(noun)|dismissal|dismission|discharge|firing|liberation|sack|sacking|termination|ending|conclusion +(noun)|passing|loss|departure|exit|expiration|going|death|decease +(noun)|acquittance|legal document|legal instrument|official document|instrument +(noun)|outlet|vent|activity +(noun)|spill|spillage|flow|stream +(noun)|waiver|discharge|relinquishment|relinquishing +(noun)|tone ending|termination|ending|conclusion +(verb)|let go of|let go|relinquish +(verb)|free|liberate|unloose|unloosen|loose +(verb)|turn|transmit|transfer|transport|channel|channelize|channelise +(verb)|discharge|expel|eject +(verb)|publish|bring out|put out|issue|publicize|publicise|air|bare +(verb)|secrete|exude|exudate|transude|ooze out|ooze +(verb)|free|issue|supply +(verb)|relinquish|resign|free|give up|pass|hand|reach|pass on|turn over|give +(verb)|unblock|unfreeze|free|issue|supply +released|1 +(adj)|discharged|free +releasing|1 +(adj)|cathartic|emotional +releasing factor|2 +(noun)|releasing hormone|RF|factor +(noun)|releasing hormone|RH|hypothalamic releasing hormone|hypothalamic releasing factor|hormone|endocrine|internal secretion +releasing hormone|2 +(noun)|releasing factor|RF|factor +(noun)|RH|releasing factor|hypothalamic releasing hormone|hypothalamic releasing factor|hormone|endocrine|internal secretion +relegate|4 +(verb)|pass on|submit|submit|subject +(verb)|demote|bump|break|kick downstairs|delegate|designate|depute|assign +(verb)|banish|bar|expel|throw out|kick out +(verb)|classify|assign|attribute +relegating|1 +(noun)|delegating|delegation|relegation|deputation|authorization|authorisation|empowerment +relegation|3 +(noun)|delegating|delegation|relegating|deputation|authorization|authorisation|empowerment +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +(noun)|banishment|proscription +relent|1 +(verb)|yield|soften +relentless|2 +(adj)|grim|inexorable|stern|unappeasable|unforgiving|unrelenting|implacable +(adj)|persistent|unrelenting|continual +relentlessly|1 +(adv)|unrelentingly +relentlessness|1 +(noun)|inexorability|inexorableness|mercilessness|unmercifulness +relevance|1 +(noun)|relevancy|connection|connexion|connectedness +relevancy|1 +(noun)|relevance|connection|connexion|connectedness +relevant|2 +(adj)|relevant |applicable|at issue|in dispute|in hand|in question|under consideration|germane|related|pertinent|to the point +(adj)|crucial|material +reliability|1 +(noun)|dependability|dependableness|reliableness|responsibility|responsibleness +reliable|3 +(adj)|reliable |certain|sure|straight|tested|time-tested|tried|tried and true|true|undeviating|trustworthy|trusty +(adj)|authentic|trustworthy |trusty +(adj)|dependable|honest|true|trustworthy |trusty +reliableness|1 +(noun)|dependability|dependableness|reliability|responsibility|responsibleness +reliably|1 +(adv)|faithfully|dependably +reliance|2 +(noun)|trust|certainty +(noun)|dependence|dependance|dependency +reliant|1 +(adj)|dependent +relic|2 +(noun)|antiquity +(noun)|keepsake|souvenir|token|object|physical object +relict|2 +(noun)|organism|being +(noun)|geological formation|formation +relief|11 +(noun)|alleviation|assuagement|comfort +(noun)|ease|comfort|comfortableness +(noun)|damages|amends|indemnity|indemnification|restitution|redress +(noun)|stand-in|substitute|reliever|backup|backup man|fill-in|peer|equal|match|compeer +(noun)|succor|succour|ministration|aid|assist|assistance|help +(noun)|respite|rest|rest period|pause|intermission|break|interruption|suspension +(noun)|easing|moderation|change|alteration|modification +(noun)|social welfare|welfare +(noun)|easing|easement|alleviation|decrease|diminution|reduction|step-down +(noun)|relievo|rilievo|embossment|sculptural relief|sculpture +(noun)|liberation|release|freeing +relief map|1 +(noun)|contour map|map +relief pitcher|1 +(noun)|reliever|fireman|pitcher|hurler|twirler +relief printing|1 +(noun)|letterpress|printing|printing process +relief valve|1 +(noun)|safety valve|escape valve|escape cock|escape|valve|regulator +relieve|11 +(verb)|alleviate|palliate|assuage|better|improve|amend|ameliorate|meliorate +(verb)|take over|free|discharge +(verb)|exempt|free +(verb)|still|allay|ease|comfort|soothe|console|solace +(verb)|salvage|salve|save|rescue|deliver +(verb)|unbosom|confide +(verb)|mitigate +(verb)|remedy|treat|care for +(verb)|rid|free|disembarrass +(verb)|take +(verb)|excuse|let off|exempt|absolve|justify|free +relieve oneself|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +relieved|1 +(adj)|alleviated|eased|mitigated +reliever|3 +(noun)|stand-in|substitute|relief|backup|backup man|fill-in|peer|equal|match|compeer +(noun)|allayer|comforter|person|individual|someone|somebody|mortal|human|soul +(noun)|relief pitcher|fireman|pitcher|hurler|twirler +relievo|1 +(noun)|relief|rilievo|embossment|sculptural relief|sculpture +religion|2 +(noun)|faith|religious belief|belief|theological virtue|supernatural virtue +(noun)|faith|institution|establishment +religionist|1 +(noun)|religious person|person|individual|someone|somebody|mortal|human|soul +religiosity|1 +(noun)|religiousism|pietism|devoutness|religiousness +religious|4 +(adj)|spiritual|sacred +(adj)|religious |churchgoing|churchlike|churchly|devout|god-fearing|pious|interfaith|pious +(adj)|scrupulous +(noun)|religionist|religious person +religious belief|1 +(noun)|religion|faith|belief|theological virtue|supernatural virtue +religious ceremony|1 +(noun)|religious ritual|ceremony +religious cult|1 +(noun)|cult|cultus|religion|faith|religious belief +religious doctrine|2 +(noun)|church doctrine|gospel|creed|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|theological doctrine|doctrine|philosophy|philosophical system|school of thought|ism +religious festival|1 +(noun)|church festival|festival +religious holiday|1 +(noun)|holy day|holiday +religious leader|1 +(noun)|religionist|religious person|leader +religious movement|1 +(noun)|movement|social movement|front +religious music|1 +(noun)|church music|music genre|musical genre|genre|musical style +religious mystic|1 +(noun)|mystic|believer|worshiper|worshipper +religious mysticism|1 +(noun)|mysticism|religion|faith|religious belief +religious offering|1 +(noun)|Oblation|religious ceremony|religious ritual +religious order|1 +(noun)|sect|religious sect|religion|faith +religious orientation|1 +(noun)|orientation +religious outcast|1 +(noun)|heretic|misbeliever|outcast|castaway|pariah|Ishmael +religious person|1 +(noun)|religionist|person|individual|someone|somebody|mortal|human|soul +religious residence|1 +(noun)|cloister|residence +religious right|1 +(noun)|right|right wing +religious rite|1 +(noun)|rite|religious ceremony|religious ritual +religious ritual|1 +(noun)|religious ceremony|ceremony +religious school|1 +(noun)|school +religious sect|1 +(noun)|sect|religious order|religion|faith +religious service|1 +(noun)|service|divine service|religious ceremony|religious ritual +religious society of friends|1 +(noun)|Religious Society of Friends|Society of Friends|Quakers|sect|religious sect|religious order +religious song|1 +(noun)|religious music|church music|song +religious text|1 +(noun)|sacred text|sacred writing|religious writing|writing|written material|piece of writing +religious trance|1 +(noun)|ecstatic state|trance +religious writing|1 +(noun)|sacred text|sacred writing|religious text|writing|written material|piece of writing +religiousism|1 +(noun)|religiosity|pietism|devoutness|religiousness +religiously|2 +(adv)|sacredly +(adv)|scrupulously|conscientiously +religiousness|1 +(noun)|devoutness|piety|piousness +reline|2 +(verb)|line +(verb)|line +relinquish|5 +(verb)|release|resign|free|give up|pass|hand|reach|pass on|turn over|give +(verb)|surrender|yield +(verb)|waive|forgo|foreswear|dispense with +(verb)|foreswear|renounce|quit|abandon|give up +(verb)|let go of|let go|release +relinquished|2 +(adj)|unoccupied +(adj)|surrendered|given +relinquishing|2 +(noun)|relinquishment|renunciation|renouncement +(noun)|relinquishment|termination|ending|conclusion +relinquishment|2 +(noun)|relinquishing|renunciation|renouncement +(noun)|relinquishing|termination|ending|conclusion +reliquary|1 +(noun)|container +relish|4 +(noun)|gusto|zest|zestfulness|enjoyment|enthusiasm +(noun)|condiment +(noun)|flavor|flavour|sapidity|savor|savour|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(verb)|enjoy|bask|savor|savour +relishing|1 +(noun)|tasting|savoring|savouring|degustation|eating|feeding +relistening|1 +(noun)|rehearing|listening|hearing +relive|1 +(verb)|live over|know|experience|live +reliving|1 +(noun)|re-experiencing|experience +reload|2 +(verb)|recharge|load|charge +(verb)|load|lade|laden|load up +relocatable program|1 +(noun)|program|programme|computer program|computer programme +relocate|2 +(verb)|move +(verb)|move|displace +relocated|1 +(adj)|resettled|settled +relocation|2 +(noun)|resettlement|transplantation|transportation|transfer|transferral|conveyance +(noun)|move|change +reluctance|2 +(noun)|electrical phenomenon +(noun)|hesitancy|hesitation|disinclination|indisposition|unwillingness +reluctant|3 +(adj)|loath|loth|unwilling +(adj)|disinclined +(adj)|uneager +reluctivity|1 +(noun)|physical property +rely|1 +(verb)|trust|swear|bank|believe +relyric|1 +(verb)|lyric +rem|2 +(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep|slumber +(noun)|REM|radioactivity unit +rem sleep|1 +(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep|slumber +remain|4 +(verb)|stay|rest|be +(verb)|stay|stay on|continue|be +(verb)|be +(verb)|persist|stay +remain down|1 +(verb)|take the count|lose +remain firm|1 +(verb)|stand|resist|hold out|withstand|stand firm +remainder|5 +(noun)|balance|residual|residue|residuum|rest|part|portion|component part|component +(noun)|number +(noun)|difference|number +(noun)|end|remnant|oddment|piece of cloth|piece of material +(verb)|sell +remaining|2 +(adj)|other +(adj)|leftover|left over|left|odd|unexpended|unexhausted +remains|2 +(noun)|object|physical object +(noun)|cadaver|corpse|stiff|clay|body|dead body +remake|2 +(noun)|remaking|creation +(verb)|refashion|redo|make over|produce|make|create +remaking|1 +(noun)|remake|creation +remand|3 +(noun)|return +(verb)|remit|send back|challenge +(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|gaol|put away|confine|detain +remark|4 +(noun)|comment|statement +(noun)|notice|observation|observance +(verb)|note|observe|mention|state|say|tell +(verb)|comment|notice|point out|note|observe|mention +remarkable|2 +(adj)|singular|extraordinary +(adj)|noteworthy|significant |important +remarkably|2 +(adv)|unusually|outstandingly|unco +(adv)|signally|unmistakably +remarriage|1 +(noun)|marriage|wedding|marriage ceremony +remarry|1 +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +rematch|1 +(noun)|replay|repeat|repetition +rembrandt|1 +(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master +rembrandt harmensz van rijn|1 +(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master +rembrandt van rijn|1 +(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master +rembrandt van ryn|1 +(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master +rembrandtesque|1 +(adj)|Rembrandtesque|old master +remediable|1 +(adj)|remediable +remedial|2 +(adj)|bettering +(adj)|curative|healing|alterative|sanative|therapeutic|healthful +remediate|1 +(verb)|rectify|remedy|repair|amend|correct|rectify|right +remediation|1 +(noun)|redress|remedy|correction|rectification +remedy|4 +(noun)|redress|remediation|correction|rectification +(noun)|curative|cure|medicine|medication|medicament|medicinal drug +(verb)|rectify|remediate|repair|amend|correct|rectify|right +(verb)|relieve|treat|care for +remember|8 +(verb)|retrieve|recall|call back|call up|recollect|think +(verb)|think of +(verb)|think back +(verb)|bequeath|will|leave +(verb)|mention|advert|bring up|cite|name|refer +(verb)|commend|mention|advert|bring up|cite|name|refer +(verb)|associate|tie in|relate|link|colligate|link up|connect +(verb)|commemorate +remember oneself|1 +(verb)|behave|comport +remembering|1 +(noun)|memory|basic cognitive process +remembrance|2 +(noun)|recollection|anamnesis|memory|retention|retentiveness +(noun)|memorial|commemoration|recognition|credit +remembrance day|1 +(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday +remembrance sunday|1 +(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday +remicade|1 +(noun)|infliximab|Remicade|anti-TNF compound +remilegia|1 +(noun)|Remilegia|genus Remilegia|fish genus +remilegia australis|1 +(noun)|whale sucker|whalesucker|Remilegia australis|remora|suckerfish|sucking fish +remilitarisation|1 +(noun)|remilitarization|mobilization|mobilisation|militarization|militarisation +remilitarise|1 +(verb)|remilitarize|militarize|militarise +remilitarization|1 +(noun)|remilitarisation|mobilization|mobilisation|militarization|militarisation +remilitarize|1 +(verb)|remilitarise|militarize|militarise +remind|1 +(verb)|prompt|cue|inform +reminder|3 +(noun)|message|content|subject matter|substance +(noun)|experience +(noun)|admonisher|monitor|defender|guardian|protector|shielder +remindful|1 +(adj)|evocative|redolent|redolent of|reminiscent|reminiscent of|mindful |aware +reminisce|1 +(verb)|remember|think back +reminiscence|2 +(noun)|memory +(noun)|recall|recollection|memory|remembering +reminiscent|1 +(adj)|evocative|redolent|redolent of|remindful|reminiscent of|mindful |aware +reminiscent of|1 +(adj)|evocative|redolent|redolent of|remindful|reminiscent|mindful |aware +remiss|1 +(adj)|derelict|delinquent|neglectful|negligent +remission|4 +(noun)|remittal|subsidence|suspension|respite|reprieve|hiatus|abatement +(noun)|remittance|remittal|remitment|payment +(noun)|remitment|remit|referral +(noun)|absolution|remittal|remission of sin|redemption|salvation +remission of sin|1 +(noun)|absolution|remission|remittal|redemption|salvation +remissness|1 +(noun)|laxness|laxity|negligence|neglect|neglectfulness +remit|8 +(noun)|remission|remitment|referral +(verb)|pay +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|put off|delay +(verb)|cancel|strike down +(verb)|remand|send back|challenge +(verb)|forgive +(verb)|slacken|loosen|loose +(verb)|decrease|diminish|lessen|fall +remitment|2 +(noun)|remittance|remittal|remission|payment +(noun)|remission|remit|referral +remittal|3 +(noun)|remittance|remission|remitment|payment +(noun)|remission|subsidence|suspension|respite|reprieve|hiatus|abatement +(noun)|absolution|remission|remission of sin|redemption|salvation +remittance|1 +(noun)|remittal|remission|remitment|payment +remittance man|1 +(noun)|exile|expatriate +remittent|1 +(adj)|decreased |reduced +remnant|2 +(noun)|leftover|remainder|balance|residual|residue|residuum|rest +(noun)|end|remainder|oddment|piece of cloth|piece of material +remodel|2 +(verb)|reconstruct|redo|change|alter|modify +(verb)|recast|reforge|remake|refashion|redo|make over +remodeled|1 +(adj)|rebuilt|restored +remold|3 +(verb)|recast|remould|cast|mold|mould +(verb)|reshape|shape|form|work|mold|mould|forge +(verb)|retread|remould|regenerate|renew +remonstrance|1 +(noun)|expostulation|objection|dissuasion +remonstrate|3 +(verb)|object +(verb)|point out|inform +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +remora|1 +(noun)|suckerfish|sucking fish|spiny-finned fish|acanthopterygian +remorse|1 +(noun)|compunction|self-reproach|sorrow|regret|rue|ruefulness +remorseful|1 +(adj)|contrite|rueful|ruthful|sorry|penitent +remorsefully|1 +(adv)|ruefully|contritely +remorseless|1 +(adj)|pitiless|ruthless|unpitying|merciless |unmerciful +remorselessly|1 +(adv)|mercilessly|pitilessly|unmercifully +remote|6 +(adj)|distant|removed|far +(adj)|outside|unlikely +(adj)|distant|removed|far +(adj)|backwoods|outback|inaccessible |unaccessible +(adj)|removed|distant +(noun)|remote control|device +remote-access data processing|1 +(noun)|distributed data processing|teleprocessing|data processing +remote-control bomb|1 +(noun)|bomb +remote-controlled|1 +(adj)|unmanned |pilotless +remote control|1 +(noun)|remote|device +remote station|1 +(noun)|remote terminal|link-attached terminal|link-attached station|terminal +remote terminal|1 +(noun)|link-attached terminal|remote station|link-attached station|terminal +remoteness|2 +(noun)|farness|farawayness|distance +(noun)|aloofness|standoffishness|withdrawnness|unsociability|unsociableness +remotion|1 +(noun)|removal|separation +remoulade sauce|1 +(noun)|sauce +remould|2 +(verb)|recast|remold|cast|mold|mould +(verb)|retread|remold|regenerate|renew +remount|4 +(noun)|saddle horse|riding horse|mount +(verb)|hop on|mount|mount up|get on|jump on|climb on|bestride +(verb)|mount +(verb)|horse +removable|2 +(adj)|removable |dismissible|extractable|extractible +(adj)|obliterable|eradicable +removable disk|1 +(noun)|hard disc|hard disk|fixed disk +removal|2 +(noun)|remotion|separation +(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +removal company|1 +(noun)|mover|public mover|moving company|removal firm|company +removal firm|1 +(noun)|mover|public mover|moving company|removal company|company +remove|8 +(noun)|distance +(verb)|take|take away|withdraw +(verb)|get rid of +(verb)|take out|move out +(verb)|transfer|transfer|shift +(verb)|absent|disappear|vanish|go away +(verb)|murder|slay|hit|dispatch|bump off|polish off|kill +(verb)|take away +removed|5 +(adj)|abstracted|separate +(adj)|remote|distant +(adj)|distant|remote|far +(adj)|distant +(adj)|distant|remote|far +remover|2 +(noun)|solvent|dissolvent|dissolver|dissolving agent|resolvent +(noun)|mover +remuda|1 +(noun)|herd +remunerate|1 +(verb)|compensate|recompense|pay +remunerated|1 +(adj)|compensated|salaried|stipendiary|paid +remuneration|2 +(noun)|wage|pay|earnings|salary|regular payment +(noun)|payment|defrayal|defrayment +remunerative|2 +(adj)|compensable|paying|salaried|stipendiary|paid +(adj)|lucrative|moneymaking|profitable +remunerator|1 +(noun)|payer|money handler|money dealer +remus|1 +(noun)|Remus|mythical being +renaissance|2 +(noun)|Renaissance|historic period|age +(noun)|rebirth|Renaissance|renascence|revival|resurgence|revitalization|revitalisation|revivification +renaissance man|2 +(noun)|Renaissance man|generalist|scholar|scholarly person|student +(noun)|Renaissance man|scholar|scholarly person|student +renal|1 +(adj)|nephritic|excretory organ|urinary organ +renal artery|1 +(noun)|arteria renalis|artery|arteria|arterial blood vessel +renal calculus|1 +(noun)|kidney stone|urinary calculus|nephrolith|calculus|concretion +renal colic|1 +(noun)|pain|hurting +renal corpuscle|1 +(noun)|malpighian body|malpighian corpuscle|capsule +renal cortex|1 +(noun)|cortex +renal disorder|1 +(noun)|kidney disease|nephropathy|nephrosis|uropathy +renal failure|1 +(noun)|kidney failure|kidney disease|renal disorder|nephropathy|nephrosis|failure +renal insufficiency|1 +(noun)|insufficiency|kidney disease|renal disorder|nephropathy|nephrosis +renal lithiasis|1 +(noun)|nephrolithiasis|lithiasis +renal pelvis|1 +(noun)|pelvis|cavity|bodily cavity|cavum +renal vein|1 +(noun)|vena renalis|vein|vena|venous blood vessel +rename|2 +(verb)|name|call +(verb)|name|nominate|make +renascence|1 +(noun)|rebirth|Renaissance|revival|resurgence|revitalization|revitalisation|revivification +renascent|1 +(adj)|resurgent|dynamic |dynamical +renata tebaldi|1 +(noun)|Tebaldi|Renata Tebaldi|soprano +rend|1 +(verb)|rip|rive|pull|tear|rupture|snap|bust +render|14 +(noun)|stucco +(verb)|make|get +(verb)|supply|provide|furnish|give +(verb)|interpret|perform|execute|do +(verb)|yield|return|give|generate|produce|make|create +(verb)|deliver|return|communicate|pass on|pass|put across +(verb)|submit|give|gift|present +(verb)|return|give +(verb)|hand over|fork over|fork out|fork up|turn in|get in|deliver|pass|hand|reach|pass on|turn over|give +(verb)|picture|depict|show|represent|interpret +(verb)|coat|surface +(verb)|give|communicate|intercommunicate +(verb)|translate|interpret|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|try|melt|run|melt down +render-set|1 +(verb)|plaster|daub +rendering|7 +(noun)|rendition|performance|public presentation +(noun)|interpretation|interpreting|rendition|explanation +(noun)|rendition|interpretation|performance +(noun)|translation|interlingual rendition|version|written record|written account +(noun)|coating|coat +(noun)|drawing +(noun)|payment|defrayal|defrayment +rendezvous|4 +(noun)|meeting|coming together +(noun)|topographic point|place|spot +(noun)|tryst|date|appointment|engagement +(verb)|meet|get together +rending|1 +(adj)|ripping|splitting|cacophonous |cacophonic +rendition|3 +(noun)|rendering|performance|public presentation +(noun)|interpretation|interpreting|rendering|explanation +(noun)|rendering|interpretation|performance +rene-robert cavelier|1 +(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer|adventurer +rene antoine ferchault de reaumur|1 +(noun)|Reaumur|Rene Antoine Ferchault de Reaumur|physicist +rene descartes|1 +(noun)|Descartes|Rene Descartes|mathematician|philosopher +rene magritte|1 +(noun)|Magritte|Rene Magritte|painter +renegade|4 +(adj)|recreant|disloyal +(noun)|deserter|defector +(noun)|deserter|apostate|turncoat|recreant|ratter|quitter +(verb)|rebel|protest|resist|dissent +renegade state|1 +(noun)|rogue state|rogue nation|state|nation|country|land|commonwealth|res publica|body politic +renege|2 +(noun)|revoke|mistake|error|fault +(verb)|renege on|renegue on|go back on|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate +renege on|1 +(verb)|renege|renegue on|go back on|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate +renegociate|2 +(verb)|renegotiate|negociate +(verb)|renegotiate|negociate|negotiate|talk terms +renegotiate|2 +(verb)|renegociate|negociate +(verb)|renegociate|negociate|negotiate|talk terms +renegue on|1 +(verb)|renege|renege on|go back on|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate +renew|2 +(verb)|regenerate|re-create +(verb)|reincarnate|regenerate|restore|rejuvenate +renewable|2 +(adj)|renewable +(adj)|inexhaustible +renewable resource|1 +(noun)|natural resource|natural resources +renewal|3 +(noun)|reclamation|rehabilitation|restoration +(noun)|repetition|repeating +(noun)|refilling|replenishment|replacement|filling +renewed|1 +(adj)|revived +renewing|1 +(adj)|restorative|reviving|revitalizing|revitalising|invigorating +reniform|1 +(adj)|kidney-shaped|simple |unsubdivided +reniform leaf|1 +(noun)|simple leaf +renin|1 +(noun)|protease|peptidase|proteinase|proteolytic enzyme +rennet|1 +(noun)|organic compound +rennin|1 +(noun)|chymosin|enzyme|coagulase +reno|1 +(noun)|Reno|city|metropolis|urban center +renoir|1 +(noun)|Renoir|Pierre Auguste Renoir|old master +renormalise|1 +(verb)|normalize|normalise|renormalize|change|alter|modify +renormalize|1 +(verb)|normalize|normalise|renormalise|change|alter|modify +renounce|4 +(verb)|abdicate|vacate|resign|give up +(verb)|vacate|resign|give up|leave office|quit|step down|resign +(verb)|foreswear|quit|relinquish|abandon|give up +(verb)|repudiate|reject +renouncement|1 +(noun)|renunciation|resignation +renovate|3 +(verb)|restitute|regenerate|renew +(verb)|refurbish|freshen up|regenerate|renew +(verb)|animate|recreate|reanimate|revive|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +renovated|1 +(adj)|restored +renovation|2 +(noun)|redevelopment|improvement +(noun)|restoration|refurbishment|improvement|melioration +renovator|1 +(noun)|refinisher|restorer|preserver|skilled worker|trained worker +renown|1 +(noun)|fame|celebrity|honor|honour|laurels +renowned|1 +(adj)|celebrated|famed|far-famed|famous|illustrious|notable|noted|known +rensselaerite|1 +(noun)|talc|talcum +rent|9 +(noun)|annuity in advance +(noun)|rip|snag|split|tear|opening|gap +(noun)|economic rent|return|issue|proceeds|take|takings|yield|payoff +(noun)|rip|split|tear +(verb)|lease|contract|undertake +(verb)|lease|let|give|rent out +(verb)|lease|hire|charter|engage|take|get|acquire +(verb)|hire|charter|lease|contract|undertake +(verb)|rend|rip|rive|pull|tear|rupture|snap|bust +rent-a-car|1 +(noun)|car rental|hire car|self-drive|u-drive|you-drive|lease|rental|letting +rent-free|1 +(adj)|unpaid +rent-rebate|1 +(noun)|rebate|discount +rent-roll|1 +(noun)|register|registry +rent collector|1 +(noun)|collector|gatherer|accumulator +rent out|1 +(verb)|hire out|farm out|lend|loan +rentable|1 +(adj)|rentable +rental|4 +(adj)|property|belongings|holding|material possession +(adj)|annuity in advance +(noun)|lease|letting|property|belongings|holding|material possession +(noun)|renting|transaction|dealing|dealings +rental collection|1 +(noun)|library +rental income|1 +(noun)|income +rente|1 +(noun)|annuity|regular payment +renter|2 +(noun)|tenant|payer|remunerator +(noun)|owner|proprietor +rentier|1 +(noun)|investor +renting|1 +(noun)|rental|transaction|dealing|dealings +renunciant|1 +(adj)|renunciative|self-abnegating|self-denying|nonindulgent +renunciation|4 +(noun)|repudiation|rejection +(noun)|apostasy|defection|rejection +(noun)|renouncement|resignation +(noun)|forgoing|forswearing|rejection +renunciative|1 +(adj)|renunciant|self-abnegating|self-denying|nonindulgent +reopen|1 +(verb)|open|open up +reorder|2 +(verb)|rate|rank|range|order|grade|place +(verb)|order +reordering|1 +(noun)|rearrangement +reorganisation|1 +(noun)|reorganization|shake-up|shakeup|organization|organisation +reorganise|2 +(verb)|reorganize|regroup|form|organize|organise +(verb)|reorganize|shake up|organize|organise +reorganised|1 +(adj)|reorganized|organized +reorganization|2 +(noun)|reorganisation|shake-up|shakeup|organization|organisation +(noun)|revision|alteration +reorganize|2 +(verb)|reorganise|shake up|organize|organise +(verb)|reorganise|regroup|form|organize|organise +reorganized|1 +(adj)|reorganised|organized +reorient|3 +(verb)|reorientate|orient|orientate +(verb)|turn +(verb)|change +reorientate|1 +(verb)|reorient|orient|orientate +reorientation|2 +(noun)|orientation +(noun)|change of direction|change +reoviridae|1 +(noun)|Reoviridae|arbovirus|arborvirus +reovirus|1 +(noun)|animal virus +rep|2 +(noun)|congressman|congresswoman|representative +(noun)|repp|fabric|cloth|material|textile +repaint|3 +(verb)|paint +(verb)|paint +(verb)|paint +repair|8 +(noun)|fix|fixing|fixture|mend|mending|reparation|improvement +(noun)|condition|status +(noun)|haunt|hangout|resort|stamping ground|area|country +(verb)|mend|fix|bushel|doctor|furbish up|restore|touch on|better|improve|amend|ameliorate|meliorate +(verb)|compensate|recompense|indemnify|pay +(verb)|resort|travel|go|move|locomote +(verb)|rectify|remediate|remedy|amend|correct|rectify|right +(verb)|animate|recreate|reanimate|revive|renovate|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +repair shed|1 +(noun)|airdock|hangar|structure|construction +repair shop|1 +(noun)|fix-it shop|shop|store +repairable|1 +(adj)|fixable|serviceable +repaired|2 +(adj)|reconditioned|fixed|restored +(adj)|maintained|serviced|serviceable +repairer|1 +(noun)|repairman|maintenance man|service man|fixer|skilled worker|trained worker +repairman|1 +(noun)|repairer|maintenance man|service man|fixer|skilled worker|trained worker +repand|1 +(adj)|smooth +reparable|1 +(adj)|reparable |rectifiable|maintainable +reparation|4 +(noun)|compensation +(noun)|compensation +(noun)|repair|fix|fixing|fixture|mend|mending|improvement +(noun)|amends|expiation|atonement|propitiation +repartee|1 +(noun)|wit|humor|humour|witticism|wittiness +repast|1 +(noun)|meal|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +repatriate|3 +(noun)|citizen +(verb)|extradite|deliver|deport +(verb)|admit|allow in|let in|intromit +repatriation|1 +(noun)|return|homecoming +repay|4 +(verb)|refund|return|give back|pay +(verb)|requite|give +(verb)|reward|pay back|act|move +(verb)|retort|come back|return|riposte|rejoin|answer|reply|respond +repayable|1 +(adj)|due |owed +repayment|2 +(noun)|refund|payment|defrayal|defrayment +(noun)|quittance|payment +repayment rate|1 +(noun)|payment rate|rate of payment|installment rate|rate|charge per unit +repeal|2 +(noun)|abrogation|annulment|cancellation +(verb)|revoke|annul|lift|countermand|reverse|overturn|rescind|vacate|cancel|strike down +repeat|7 +(noun)|repetition|periodic event|recurrent event +(verb)|reiterate|ingeminate|iterate|restate|retell|tell +(verb)|duplicate|reduplicate|double|replicate|reproduce +(verb)|recur|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|echo|utter|emit|let out|let loose +(verb)|take over|act|move +(verb)|reprise|reprize|recapitulate|play|spiel +repeatable|1 +(adj)|repeatable +repeated|1 +(adj)|perennial|recurrent|continual +repeater|4 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|recidivist|habitual criminal|criminal|felon|crook|outlaw|malefactor +(noun)|repeating firearm|firearm|piece|small-arm +(noun)|electronic device +repeating|1 +(noun)|repetition|continuance|continuation +repeating decimal|1 +(noun)|circulating decimal|recurring decimal|decimal fraction|decimal +repeating firearm|1 +(noun)|repeater|firearm|piece|small-arm +repechage|1 +(noun)|race +repel|5 +(verb)|drive|repulse|force back|push back|beat back|push|force +(verb)|repulse|displease +(verb)|repulse|fight off|rebuff|drive back|fight|oppose|fight back|fight down|defend +(verb)|rebuff|snub|reject|spurn|freeze off|scorn|pooh-pooh|disdain|turn down +(verb)|disgust|gross out|revolt|stimulate|excite|stir +repellant|5 +(adj)|rebarbative|repellent|unpleasant +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repelling|revolting|skanky|wicked|yucky|offensive +(noun)|repellent|compound|chemical compound +(noun)|repellent|compound|chemical compound +(noun)|repellent|power|powerfulness +repellent|6 +(adj)|rebarbative|repellant|unpleasant +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellant|repelling|revolting|skanky|wicked|yucky|offensive +(adj)|resistant|nonabsorbent |nonabsorptive +(noun)|repellant|compound|chemical compound +(noun)|repellant|compound|chemical compound +(noun)|repellant|power|powerfulness +repellently|1 +(adv)|repellingly +repelling|1 +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|revolting|skanky|wicked|yucky|offensive +repellingly|1 +(adv)|repellently +repent|2 +(verb)|atone +(verb)|regret|rue|feel|experience +repentance|1 +(noun)|penitence|penance|compunction|remorse|self-reproach +repentant|1 +(adj)|penitent |contrite|remorseful|rueful|ruthful|sorry|penitential|ashamed +repentantly|1 +(adv)|penitently|penitentially +repercuss|1 +(verb)|affect|impact|bear upon|bear on|touch on|touch +repercussion|2 +(noun)|reverberation|consequence|effect|outcome|result|event|issue|upshot +(noun)|recoil|rebound|backlash|movement|motion +repertoire|2 +(noun)|repertory|collection|aggregation|accumulation|assemblage +(noun)|collection|aggregation|accumulation|assemblage +repertory|2 +(noun)|depository|deposit|repository +(noun)|repertoire|collection|aggregation|accumulation|assemblage +repertory company|1 +(noun)|stock company|theater company +repetition|3 +(noun)|repeat|periodic event|recurrent event +(noun)|repeating|continuance|continuation +(noun)|rhetorical device +repetitious|1 +(adj)|iterative|reiterative|repetitive|unvaried |unvarying +repetitiousness|1 +(noun)|repetitiveness|verboseness|verbosity +repetitive|2 +(adj)|insistent|continual +(adj)|iterative|reiterative|repetitious|unvaried |unvarying +repetitiveness|1 +(noun)|repetitiousness|verboseness|verbosity +rephrase|1 +(verb)|paraphrase|reword|repeat|reiterate|ingeminate|iterate|restate|retell +rephrasing|1 +(noun)|rewording|recasting|rewriting|revising +repine|1 +(verb)|complain|kick|plain|sound off|quetch|kvetch +repining|1 +(adj)|complaining |complaintive +replace|4 +(verb)|regenerate|renew +(verb)|supplant|supersede|supervene upon|succeed|come after|follow +(verb)|substitute|exchange|change|interchange +(verb)|put back|put|set|place|pose|position|lay +replaceability|1 +(noun)|substitutability|commutability|exchangeability|interchangeability|interchangeableness|fungibility +replaceable|1 +(adj)|replaceable |exchangeable|interchangeable|similar|standardized|standardised|expendable +replacement|6 +(noun)|substitution|permutation|transposition|switch|variation|fluctuation +(noun)|replacing|substitution|exchange|commutation +(noun)|surrogate|alternate|stand-in|substitute|relief|reliever|backup|backup man|fill-in +(noun)|substitute|equivalent +(noun)|refilling|replenishment|renewal|filling +(noun)|successor|peer|equal|match|compeer +replacement cost|1 +(noun)|cost +replacing|1 +(noun)|replacement|substitution|exchange|commutation +replant|1 +(verb)|plant|set +replay|6 +(noun)|rematch|repeat|repetition +(noun)|action replay|reproduction|replication +(verb)|play back|reproduce +(verb)|play|spiel +(verb)|meet|encounter|play|take on +(verb)|play +replenish|1 +(verb)|refill|fill again|fill|fill up|make full +replenishment|1 +(noun)|refilling|replacement|renewal|filling +replete|3 +(adj)|full|nourished +(adj)|instinct|full +(verb)|satiate|sate|fill|consume|ingest|take in|take|have +repletion|2 +(noun)|satiety|satiation|fullness +(noun)|surfeit|eating|feeding +replica|1 +(noun)|replication|reproduction|copy +replicate|3 +(verb)|retroflex|bend|flex +(verb)|copy|duplicate|reduplicate|double|repeat +(verb)|duplicate|reduplicate|double|repeat|reproduce +replication|7 +(noun)|reproduction|copying +(noun)|organic process|biological process +(noun)|rejoinder|retort|return|riposte|comeback|counter|reply|response +(noun)|pleading +(noun)|echo|reverberation|sound reflection|reflection|reflexion|reflectivity +(noun)|replica|reproduction|copy +(noun)|repetition|repeating +reply|3 +(noun)|answer|response|statement +(noun)|response|speech act +(verb)|answer|respond|state|say|tell +reply-paid|1 +(adj)|paid +repoint|1 +(verb)|point|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +report|13 +(noun)|study|written report|document|written document|papers +(noun)|news report|story|account|write up|news +(noun)|account|informing|making known +(noun)|noise +(noun)|report card|information|info +(noun)|composition|paper|theme|essay|written assignment|writing assignment +(noun)|reputation|estimate|estimation +(verb)|describe|account|inform +(verb)|announce|denote +(verb)|announce|denote +(verb)|inform +(verb)|cover|inform +(verb)|complain|kick|plain|sound off|quetch|kvetch +report card|1 +(noun)|report|information|info +report out|1 +(verb)|return +reportable|2 +(adj)|reportable +(adj)|reported +reportage|1 +(noun)|coverage|reporting|news +reported|1 +(adj)|reported |according|reportable|rumored +reporter|1 +(noun)|newsman|newsperson|communicator +reporting|1 +(noun)|coverage|reportage|news +reporting weight|1 +(noun)|body weight +repose|9 +(noun)|rest|ease|relaxation|inactivity +(noun)|peace|peacefulness|peace of mind|serenity|heartsease|ataraxis|tranquillity|tranquility|quietness|quietude +(noun)|quiet|placidity|serenity|tranquillity|tranquility|composure|calm|calmness|equanimity +(verb)|put|assign +(verb)|rest|reside|inhere in|attach to +(verb)|lie +(verb)|recumb|recline|lie +(verb)|lay|put down|put|set|place|pose|position|lay|repose on +(verb)|put|set|place|pose|position|lay +repose on|1 +(verb)|rest on|build on|build upon|depend on|devolve on|depend upon|ride|turn on|hinge on|hinge upon +reposeful|1 +(adj)|relaxing|restful|quiet +reposit|1 +(verb)|store +repositing|1 +(noun)|reposition|storage|warehousing|deposit|deposition +reposition|3 +(noun)|repositing|storage|warehousing|deposit|deposition +(verb)|shift|dislodge|move|displace +(verb)|put|set|place|pose|position|lay +repositioning|1 +(noun)|placement|location|locating|position|positioning|emplacement +repository|3 +(noun)|depository|deposit|facility|installation +(noun)|secretary|confidant|intimate +(noun)|monument|burial chamber|sepulcher|sepulchre|sepulture +repossess|2 +(verb)|reclaim|get|acquire +(verb)|take back|take +repossession|1 +(noun)|recovery|retrieval +repot|1 +(verb)|pot +repp|1 +(noun)|rep|fabric|cloth|material|textile +reprehend|1 +(verb)|knock|criticize|criticise|pick apart +reprehensibility|1 +(noun)|evil|evilness +reprehensible|1 +(adj)|condemnable|criminal|deplorable|wrong +reprehensibly|1 +(adv)|culpably +reprehension|1 +(noun)|rebuke|reproof|reproval|reprimand|criticism|unfavorable judgment +reprehensively|1 +(adv)|criminally +represent|15 +(verb)|stand for|correspond|equal|be +(verb)|typify|symbolize|symbolise|stand for|mean|intend +(verb)|be +(verb)|serve +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|exemplify|embody|be|personify +(verb)|constitute|make up|comprise|be +(verb)|defend +(verb)|interpret|re-create +(verb)|act|play|re-create +(verb)|stage|present|re-create +(verb)|describe|depict|draw +(verb)|remonstrate|point out +(verb)|present|lay out|state|say|tell +(verb)|map|permute|commute|transpose +representable|1 +(adj)|expressible +representation|10 +(noun)|mental representation|internal representation|content|cognitive content|mental object +(noun)|creation +(noun)|cooperation +(noun)|delegacy|agency|state +(noun)|body +(noun)|statement +(noun)|theatrical performance|theatrical|histrionics|performance|public presentation +(noun)|statement +(noun)|right +(noun)|activity +representational|1 +(adj)|representational |delineative|depictive|eidetic|figural|figurative|naturalistic|realistic|objective|mimetic +representational process|1 +(noun)|basic cognitive process +representative|7 +(adj)|typical +(adj)|representative |allegorical|allegoric|emblematic|emblematical|symbolic|symbolical +(adj)|democratic +(noun)|negotiator|negotiant|treater +(noun)|spokesperson|interpreter|voice|advocate|advocator|proponent|exponent +(noun)|congressman|congresswoman|legislator +(noun)|example|illustration|instance|information +representative sample|1 +(noun)|stratified sample|proportional sample|sample distribution|sample|sampling +representative sampling|1 +(noun)|stratified sampling|proportional sampling|sampling +represented|1 +(adj)|delineated |delineate|depicted|pictured|portrayed|diagrammatic|diagrammatical|drawn|painted|described +repress|3 +(verb)|quash|keep down|subdue|subjugate|reduce|oppress|suppress|crush +(verb)|smother|stifle|strangle|muffle|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|suppress|forget|bury +repressed|1 +(adj)|pent-up|inhibited +represser|1 +(noun)|repressor|agent +repressing|1 +(adj)|inhibitory|repressive|restrictive +repression|3 +(noun)|subjugation|subjection +(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|defence +(noun)|control +repressive|1 +(adj)|inhibitory|repressing|restrictive +repressor|1 +(noun)|represser|agent +repressor gene|1 +(noun)|gene|cistron|factor +reprieve|6 +(noun)|respite|relief|ease +(noun)|suspension|respite|hiatus|abatement|interruption|break +(noun)|warrant +(noun)|respite|clemency|mercifulness|mercy +(verb)|respite|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +(verb)|rescue|deliver +reprimand|3 +(noun)|rebuke|reproof|reproval|reprehension|criticism|unfavorable judgment +(verb)|censure|criminate|knock|criticize|criticise|pick apart +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +reprimanded|1 +(adj)|admonished|chastened|rebuked|reproved|punished +reprint|3 +(noun)|reissue|reprinting|publication +(noun)|offprint|separate|article +(verb)|reissue|reproduce +reprinting|1 +(noun)|reissue|reprint|publication +reprisal|1 +(noun)|retaliation|revenge +reprise|1 +(verb)|reprize|repeat|recapitulate|play|spiel +reprize|1 +(verb)|reprise|repeat|recapitulate|play|spiel +reproach|3 +(noun)|rebuke|reproof|reproval|reprehension|reprimand +(noun)|shame|disgrace|ignominy +(verb)|upbraid|accuse|impeach|incriminate|criminate +reproacher|1 +(noun)|upbraider|reprover|rebuker|authority +reproachful|1 +(adj)|admonitory|admonishing|reproving|unfavorable |unfavourable +reproachfully|1 +(adv)|reprovingly +reprobate|5 +(adj)|depraved|immoral|perverse|perverted|corrupt +(noun)|miscreant|wrongdoer|offender +(verb)|reject +(verb)|sentence|condemn|doom +(verb)|condemn|decry|objurgate|excoriate|denounce +reprobation|2 +(noun)|rejection +(noun)|disfavor|disfavour|dislike|disapproval +reprocess|1 +(verb)|recycle|reuse|use|utilize|utilise|apply|employ +reproduce|4 +(verb)|produce|make|create +(verb)|procreate|multiply|make|create +(verb)|re-create +(verb)|regurgitate|repeat|echo +reproducer|1 +(noun)|audio system|sound system +reproducibility|1 +(noun)|duplicability|dependability|dependableness|reliability|reliableness +reproducible|1 +(adj)|reproducible |consistent|duplicable|duplicatable +reproduction|5 +(noun)|organic process|biological process +(noun)|reproductive memory|recall|recollection|reminiscence +(noun)|replica|replication|copy +(noun)|replication|copying +(noun)|procreation|breeding|facts of life|sexual activity|sexual practice|sex|sex activity +reproduction cost|1 +(noun)|physical value|cost +reproductive|1 +(adj)|generative|procreative|fruitful +reproductive cell|1 +(noun)|germ cell|sex cell|cell +reproductive cloning|1 +(noun)|cloning +reproductive memory|1 +(noun)|reproduction|recall|recollection|reminiscence +reproductive organ|1 +(noun)|sex organ|organ +reproductive structure|1 +(noun)|plant organ +reproductive system|1 +(noun)|genital system|system +reproof|2 +(noun)|rebuke|reproval|reprehension|reprimand|criticism|unfavorable judgment +(verb)|call on the carpet|rebuke|rag|trounce|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +reproval|1 +(noun)|rebuke|reproof|reprehension|reprimand|criticism|unfavorable judgment +reprove|1 +(verb)|admonish|knock|criticize|criticise|pick apart +reproved|1 +(adj)|admonished|chastened|rebuked|reprimanded|punished +reprover|1 +(noun)|upbraider|reproacher|rebuker|authority +reproving|1 +(adj)|admonitory|admonishing|reproachful|unfavorable |unfavourable +reprovingly|1 +(adv)|reproachfully +reptantia|1 +(noun)|Reptantia|suborder Reptantia|animal order +reptile|1 +(noun)|reptilian|vertebrate|craniate +reptile family|1 +(noun)|family +reptile genus|1 +(noun)|genus +reptilia|1 +(noun)|Reptilia|class Reptilia|class +reptilian|2 +(adj)|class +(noun)|reptile|vertebrate|craniate +republic|2 +(noun)|democracy|commonwealth|political system|form of government +(noun)|political system|form of government +republic of albania|1 +(noun)|Albania|Republic of Albania|Balkan country|Balkan nation|Balkan state +republic of angola|1 +(noun)|Angola|Republic of Angola|African country|African nation +republic of armenia|1 +(noun)|Armenia|Republic of Armenia|Hayastan|Asian country|Asian nation +republic of austria|1 +(noun)|Austria|Republic of Austria|Oesterreich|European country|European nation +republic of belarus|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +republic of benin|1 +(noun)|Benin|Republic of Benin|Dahomey|African country|African nation +republic of bolivia|1 +(noun)|Bolivia|Republic of Bolivia|South American country|South American nation +republic of bosnia and herzegovina|1 +(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country|European nation +republic of botswana|1 +(noun)|Botswana|Republic of Botswana|African country|African nation +republic of bulgaria|1 +(noun)|Bulgaria|Republic of Bulgaria|Balkan country|Balkan nation|Balkan state +republic of burundi|1 +(noun)|Burundi|Republic of Burundi|African country|African nation +republic of cameroon|1 +(noun)|Cameroon|Republic of Cameroon|Cameroun|African country|African nation +republic of cape verde|1 +(noun)|Cape Verde|Republic of Cape Verde|country|state|land +republic of chad|1 +(noun)|Chad|Republic of Chad|Tchad|African country|African nation +republic of chile|1 +(noun)|Chile|Republic of Chile|South American country|South American nation +republic of china|1 +(noun)|Taiwan|China|Nationalist China|Republic of China|island +republic of colombia|1 +(noun)|Colombia|Republic of Colombia|South American country|South American nation +republic of costa rica|1 +(noun)|Costa Rica|Republic of Costa Rica|Central American country|Central American nation +republic of cote d'ivoire|1 +(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country|African nation +republic of croatia|1 +(noun)|Croatia|Republic of Croatia|Hrvatska|European country|European nation +republic of cuba|1 +(noun)|Cuba|Republic of Cuba|country|state|land +republic of cyprus|1 +(noun)|Cyprus|Republic of Cyprus|country|state|land +republic of djibouti|1 +(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country|African nation +republic of ecuador|1 +(noun)|Ecuador|Republic of Ecuador|South American country|South American nation +republic of el salvador|1 +(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country|Central American nation +republic of equitorial guinea|1 +(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country|African nation +republic of estonia|1 +(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State|Baltic Republic +republic of fiji|1 +(noun)|Fiji|Republic of Fiji|country|state|land +republic of finland|1 +(noun)|Finland|Republic of Finland|Suomi|European country|European nation +republic of ghana|1 +(noun)|Ghana|Republic of Ghana|Gold Coast|African country|African nation +republic of guatemala|1 +(noun)|Guatemala|Republic of Guatemala|Central American country|Central American nation +republic of guinea|1 +(noun)|Guinea|Republic of Guinea|French Guinea|African country|African nation +republic of guinea-bissau|1 +(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country|African nation +republic of haiti|1 +(noun)|Haiti|Republic of Haiti|country|state|land +republic of honduras|1 +(noun)|Honduras|Republic of Honduras|Central American country|Central American nation +republic of hungary|1 +(noun)|Hungary|Republic of Hungary|Magyarorszag|European country|European nation +republic of iceland|1 +(noun)|Iceland|Republic of Iceland|European country|European nation +republic of india|1 +(noun)|India|Republic of India|Bharat|Asian country|Asian nation +republic of indonesia|1 +(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country|state|land +republic of iraq|1 +(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country|Asian nation +republic of kazakhstan|1 +(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country|Asian nation +republic of kenya|1 +(noun)|Kenya|Republic of Kenya|African country|African nation +republic of kiribati|1 +(noun)|Kiribati|Republic of Kiribati|country|state|land +republic of korea|1 +(noun)|South Korea|Republic of Korea|Asian country|Asian nation +republic of latvia|1 +(noun)|Latvia|Republic of Latvia|Baltic State|Baltic Republic +republic of liberia|1 +(noun)|Liberia|Republic of Liberia|African country|African nation +republic of lithuania|1 +(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State|Baltic Republic +republic of madagascar|1 +(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country|African nation +republic of malawi|1 +(noun)|Malawi|Republic of Malawi|Nyasaland|African country|African nation +republic of maldives|1 +(noun)|Maldives|Republic of Maldives|country|state|land +republic of mali|1 +(noun)|Mali|Republic of Mali|French Sudan|African country|African nation +republic of malta|1 +(noun)|Malta|Republic of Malta|country|state|land +republic of mauritius|1 +(noun)|Mauritius|Republic of Mauritius|country|state|land +republic of moldova|1 +(noun)|Moldova|Republic of Moldova|Moldavia|European country|European nation +republic of mozambique|1 +(noun)|Mozambique|Republic of Mozambique|Mocambique|African country|African nation +republic of namibia|1 +(noun)|Namibia|Republic of Namibia|South West Africa|African country|African nation +republic of nauru|1 +(noun)|Nauru|Republic of Nauru|country|state|land +republic of nicaragua|1 +(noun)|Nicaragua|Republic of Nicaragua|Central American country|Central American nation +republic of niger|1 +(noun)|Niger|Republic of Niger|African country|African nation +republic of palau|1 +(noun)|Palau|Republic of Palau|TT|country|state|land +republic of panama|1 +(noun)|Panama|Republic of Panama|Central American country|Central American nation +republic of paraguay|1 +(noun)|Paraguay|Republic of Paraguay|South American country|South American nation +republic of peru|1 +(noun)|Peru|Republic of Peru|South American country|South American nation +republic of poland|1 +(noun)|Poland|Republic of Poland|Polska|European country|European nation +republic of san marino|1 +(noun)|San Marino|Republic of San Marino|European country|European nation +republic of senegal|1 +(noun)|Senegal|Republic of Senegal|African country|African nation +republic of seychelles|1 +(noun)|Seychelles|Republic of Seychelles|country|state|land +republic of sierra leone|1 +(noun)|Sierra Leone|Republic of Sierra Leone|African country|African nation +republic of singapore|1 +(noun)|Singapore|Republic of Singapore|Asian country|Asian nation +republic of slovenia|1 +(noun)|Slovenia|Republic of Slovenia|Slovenija|European country|European nation +republic of south africa|1 +(noun)|South Africa|Republic of South Africa|African country|African nation +republic of suriname|1 +(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country|South American nation +republic of tajikistan|1 +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +republic of the congo|1 +(noun)|Congo|Republic of the Congo|French Congo|African country|African nation +republic of the gambia|1 +(noun)|Gambia|The Gambia|Republic of The Gambia|African country|African nation +republic of the marshall islands|1 +(noun)|Marshall Islands|Republic of the Marshall Islands|country|state|land +republic of the philippines|1 +(noun)|Philippines|Republic of the Philippines|country|state|land +republic of the sudan|1 +(noun)|Sudan|Republic of the Sudan|Soudan|African country|African nation +republic of trinidad and tobago|1 +(noun)|Trinidad and Tobago|Republic of Trinidad and Tobago|country|state|land +republic of tunisia|1 +(noun)|Tunisia|Republic of Tunisia|African country|African nation +republic of turkey|1 +(noun)|Turkey|Republic of Turkey|country|state|land +republic of uganda|1 +(noun)|Uganda|Republic of Uganda|African country|African nation +republic of uzbekistan|1 +(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country|Asian nation +republic of vanuatu|1 +(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country|state|land +republic of venezuela|1 +(noun)|Venezuela|Republic of Venezuela|South American country|South American nation +republic of yemen|1 +(noun)|Yemen|Republic of Yemen|Asian country|Asian nation +republic of zambia|1 +(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country|African nation +republic of zimbabwe|1 +(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country|African nation +republican|5 +(adj)|party|political party +(adj)|democratic +(noun)|Republican|politician|politico|pol|political leader +(noun)|advocate|advocator|proponent|exponent +(noun)|Republican|Republican River|river +republican guard|1 +(noun)|Republican Guard|military unit|military force|military group|force +republican party|1 +(noun)|Republican Party|GOP|party|political party +republican river|1 +(noun)|Republican|Republican River|river +republicanism|1 +(noun)|political orientation|ideology|political theory +republication|2 +(noun)|publication +(noun)|republishing|publication|publishing +republish|2 +(verb)|print|publish +(verb)|revive|resurrect +republishing|1 +(noun)|republication|publication|publishing +repudiate|4 +(verb)|renounce|reject +(verb)|reject +(verb)|refuse|decline +(verb)|deny +repudiated|1 +(adj)|disowned|unacknowledged +repudiation|3 +(noun)|renunciation|rejection +(noun)|refusal +(noun)|debunking|exposure +repudiative|1 +(adj)|rejective +repugn|1 +(verb)|contest|contend|oppose +repugnance|2 +(noun)|repulsion|revulsion|horror|disgust +(noun)|incompatibility|mutual exclusiveness|inconsistency|contradictoriness +repugnant|1 +(adj)|abhorrent|detestable|obscene|repulsive|offensive +repulse|4 +(noun)|rebuff|snub|rejection +(verb)|repel|fight off|rebuff|drive back|fight|oppose|fight back|fight down|defend +(verb)|repel|displease +(verb)|repel|drive|force back|push back|beat back|push|force +repulsion|3 +(noun)|repulsive force|force +(noun)|repugnance|revulsion|horror|disgust +(noun)|standoff|stand +repulsive|3 +(adj)|abhorrent|detestable|obscene|repugnant|offensive +(adj)|repulsive +(adj)|hideous|ugly +repulsive force|1 +(noun)|repulsion|force +repulsively|1 +(adv)|detestably|abominably|odiously +repulsiveness|1 +(noun)|loathsomeness|sliminess|vileness|offensiveness|odiousness|distastefulness +repurchase|2 +(noun)|redemption|buyback|purchase +(verb)|buy back|buy|purchase +reputability|1 +(noun)|respectability|honorableness|honourableness +reputable|1 +(adj)|reputable |esteemed|honored|prestigious|estimable|good|honorable|respectable|respected|well-thought-of|honorable|honourable|respectable +reputation|3 +(noun)|repute|honor|honour|laurels +(noun)|notoriety|ill fame +(noun)|report|estimate|estimation +repute|2 +(noun)|reputation|honor|honour|laurels +(verb)|think of|regard as|look upon|look on|esteem|take to be|think|believe|consider|conceive +reputed|1 +(adj)|putative|purported|supposed|acknowledged +request|5 +(noun)|petition|postulation|message|content|subject matter|substance +(noun)|asking|speech act +(verb)|bespeak|call for|quest|communicate|pass on|pass|put across +(verb)|ask +(verb)|wonder|inquire|enquire +requested|1 +(adj)|requested +requiem|3 +(noun)|dirge|coronach|lament|threnody|song +(noun)|Requiem|Mass +(noun)|Requiem|Mass +requiem shark|1 +(noun)|shark +requiescat|1 +(noun)|prayer|petition|orison +require|4 +(verb)|necessitate|ask|postulate|need|take|involve|call for|demand +(verb)|ask|expect|demand +(verb)|command|compel|order|tell|enjoin|say +(verb)|want|need|be +required|2 +(adj)|needed|needful|requisite|necessary +(adj)|compulsory|mandatory|obligatory +requirement|3 +(noun)|demand|duty|responsibility|obligation +(noun)|necessity|essential|requisite|necessary|thing +(noun)|prerequisite|duty|responsibility|obligation +requirements contract|1 +(noun)|contract +requisite|2 +(adj)|needed|needful|required|necessary +(noun)|necessity|essential|requirement|necessary|thing +requisiteness|1 +(noun)|necessity +requisition|5 +(noun)|demand +(noun)|requisition form|form +(noun)|sequestration|appropriation +(verb)|command|require|compel +(verb)|claim|lay claim|arrogate +requisition form|1 +(noun)|requisition|form +requital|2 +(noun)|retribution|penalty +(noun)|return|paying back|getting even +requite|1 +(verb)|repay|give +reread|1 +(verb)|read +rerebrace|1 +(noun)|upper cannon|cannon +reredos|1 +(noun)|altarpiece|screen +rerun|5 +(noun)|broadcast|program|programme +(verb)|rebroadcast|air|send|broadcast|beam|transmit +(verb)|mount|put on +(verb)|campaign|run +(verb)|run +res|4 +(noun)|reticuloendothelial system|RES|system +(noun)|rhenium|Re|atomic number 75|metallic element|metal +(noun)|Ra|Re|Egyptian deity +(noun)|re|ray|solfa syllable +res adjudicata|1 +(noun)|res judicata|topic|subject|issue|matter +res gestae|2 +(noun)|rule of evidence +(noun)|action +res ipsa loquitur|1 +(noun)|rule of evidence +res judicata|1 +(noun)|res adjudicata|topic|subject|issue|matter +res publica|1 +(noun)|state|nation|country|land|commonwealth|body politic|political unit +resale|1 +(noun)|selling|merchandising|marketing +rescale|1 +(verb)|resize +reschedule|1 +(verb)|schedule +rescind|1 +(verb)|revoke|annul|lift|countermand|reverse|repeal|overturn|vacate|cancel|strike down +rescindable|1 +(adj)|voidable|revocable |revokable +rescission|1 +(noun)|recission|cancellation +rescript|4 +(noun)|answer|reply|response +(noun)|decree|edict|fiat|order|act|enactment +(noun)|revision|revisal|revise|rewriting|revising +(noun)|rewrite|revision|writing|written material|piece of writing +rescriptor|1 +(noun)|delavirdine|Rescriptor|non-nucleoside reverse transcriptase inhibitor|NNRTI +rescue|3 +(noun)|deliverance|delivery|saving|recovery|retrieval +(verb)|deliver|save|carry through|pull through|bring through +(verb)|take +rescue equipment|1 +(noun)|equipment +rescue operation|1 +(noun)|operation +rescue party|1 +(noun)|party|company +rescued|1 +(adj)|reclaimed|saved +rescuer|2 +(noun)|savior|saviour|deliverer|benefactor|helper +(noun)|recoverer|saver|person|individual|someone|somebody|mortal|human|soul +reseal|1 +(verb)|seal|seal off +research|4 +(noun)|investigation|investigating +(noun)|inquiry|enquiry|problem solving +(verb)|search|explore|investigate|look into +(verb)|investigate|look into +research center|1 +(noun)|research facility|center|centre +research colloquium|1 +(noun)|colloquium +research director|1 +(noun)|director of research|supervisor +research effort|1 +(noun)|attempt|effort|endeavor|endeavour|try +research facility|1 +(noun)|research center|center|centre +research lab|1 +(noun)|lab|laboratory|research laboratory|science lab|science laboratory|workplace|work +research laboratory|1 +(noun)|lab|laboratory|research lab|science lab|science laboratory|workplace|work +research project|1 +(noun)|scientific research|research +research rocket|1 +(noun)|test rocket|test instrument vehicle|rocket +research staff|1 +(noun)|staff +research worker|1 +(noun)|researcher|investigator|scientist|man of science +researchable|1 +(adj)|possible +researcher|1 +(noun)|research worker|investigator|scientist|man of science +reseat|3 +(verb)|seat +(verb)|seat +(verb)|seat|sit|sit down +reseau|2 +(noun)|net|network|mesh|meshing|meshwork +(noun)|network +resect|1 +(verb)|eviscerate|remove|take|take away|withdraw +resection|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +reseda|1 +(noun)|herb|herbaceous plant +reseda luteola|1 +(noun)|dyer's rocket|dyer's mignonette|weld|Reseda luteola|reseda +reseda odorata|1 +(noun)|mignonette|sweet reseda|Reseda odorata|reseda +resedaceae|1 +(noun)|Resedaceae|family Resedaceae|mignonette family|dilleniid dicot family +reseed|2 +(verb)|seed +(verb)|sustain|keep|maintain +resell|1 +(verb)|sell +resemblance|1 +(noun)|likeness|alikeness|similitude +resemble|1 +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +resent|2 +(verb)|dislike +(verb)|begrudge +resentful|1 +(adj)|resentful |acrimonious|bitter|rancorous +resentment|1 +(noun)|bitterness|gall|rancor|rancour|hostility|enmity|ill will +reserpine|1 +(noun)|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive|antihypertensive drug +reservation|7 +(noun)|reserve|administrative district|administrative division|territorial division +(noun)|qualification|statement +(noun)|mental reservation|arriere pensee|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|booking|employment|engagement +(noun)|agreement|understanding +(noun)|prearrangement +(noun)|preservation|saving +reserve|13 +(adj)|inactive|nonoperational +(adj)|spare|unnecessary |unneeded +(noun)|modesty|propriety|properness|correctitude +(noun)|backlog|stockpile|accumulation +(noun)|substitute|athlete|jock +(noun)|indefinite quantity +(noun)|reservation|administrative district|administrative division|territorial division +(noun)|military reserve|military|armed forces|armed services|military machine|war machine +(noun)|reticence|taciturnity|uncommunicativeness +(verb)|withhold|keep back +(verb)|allow|appropriate|earmark|set aside|assign|allot|portion +(verb)|request|bespeak|call for|quest +(verb)|hold|book|request|bespeak|call for|quest +reserve account|1 +(noun)|reserve fund|reserve|backlog|stockpile +reserve assets|1 +(noun)|assets +reserve bank|1 +(noun)|Federal Reserve Bank|depository financial institution|bank|banking concern|banking company +reserve clause|1 +(noun)|article|clause +reserve fund|1 +(noun)|reserve account|reserve|backlog|stockpile +reserve officers training corps|1 +(noun)|Reserve Officers Training Corps|ROTC|corps +reserved|3 +(adj)|reserved |booked|engaged|set-aside|bookable|rarefied|rarified +(adj)|reserved |aloof|distant|upstage|diffident|indrawn|withdrawn|backward|inhibited|restrained|undemonstrative +(adj)|restrained|reticent|unemotional|undemonstrative +reserves|8 +(noun)|militia|military unit|military force|military group|force +(noun)|modesty|reserve|propriety|properness|correctitude +(noun)|reserve|backlog|stockpile|accumulation +(noun)|substitute|reserve|athlete|jock +(noun)|reserve|indefinite quantity +(noun)|reservation|reserve|administrative district|administrative division|territorial division +(noun)|military reserve|reserve|military|armed forces|armed services|military machine|war machine +(noun)|reserve|reticence|taciturnity|uncommunicativeness +reservist|1 +(noun)|soldier +reservoir|4 +(noun)|supply +(noun)|artificial lake|lake +(noun)|tank|storage tank +(noun)|source|thing +reset|4 +(noun)|device +(verb)|specify|set|determine|fix|limit +(verb)|set +(verb)|readjust|adjust|set|correct +reset button|1 +(noun)|push button|push|button +resettle|1 +(verb)|settle|locate +resettled|1 +(adj)|relocated|settled +resettlement|1 +(noun)|transplantation|relocation|transportation|transfer|transferral|conveyance +resew|1 +(verb)|sew|run up|sew together|stitch +resh|1 +(noun)|letter|letter of the alphabet|alphabetic character +reshape|2 +(verb)|determine|shape|mold|influence|regulate +(verb)|remold|shape|form|work|mold|mould|forge +reship|1 +(verb)|ship +reshipment|1 +(noun)|dispatch|despatch|shipment +reshoot|1 +(verb)|film|shoot|take +resht|1 +(noun)|Rasht|Resht|city|metropolis|urban center +reshuffle|4 +(noun)|reallotment|reapportionment|reallocation +(noun)|reshuffling|shuffle|shuffling|make +(verb)|shuffle|ruffle|mix +(verb)|rearrange +reshuffling|1 +(noun)|reshuffle|shuffle|shuffling|make +resid|1 +(noun)|residual oil|petroleum|crude oil|crude|rock oil|fossil oil +reside|3 +(verb)|dwell|shack|live|inhabit|people|populate|domicile|domiciliate|be +(verb)|occupy|lodge in|dwell|shack|live|inhabit|people|populate|domicile|domiciliate +(verb)|rest|repose|inhere in|attach to +residence|4 +(noun)|abode|address +(noun)|house +(noun)|residency|abidance|act|human action|human activity +(noun)|mansion|mansion house|manse|hall|house +residence hall|1 +(noun)|dormitory|dorm|hall|student residence|living quarters|quarters|building|edifice +residence time|1 +(noun)|duration|continuance +residency|2 +(noun)|residence|abidance|act|human action|human activity +(noun)|position|post|berth|office|spot|billet|place|situation +resident|4 +(adj)|resident +(adj)|nonmigratory +(noun)|occupant|occupier|inhabitant|dweller|denizen|indweller +(noun)|house physician|resident physician|doctor|doc|physician|MD|Dr.|medico +resident commissioner|1 +(noun)|representative +resident physician|1 +(noun)|house physician|resident|doctor|doc|physician|MD|Dr.|medico +residential|2 +(adj)|residential +(adj)|act|human action|human activity +residential area|1 +(noun)|residential district|community|district|territory|territorial dominion|dominion +residential district|1 +(noun)|residential area|community|district|territory|territorial dominion|dominion +residual|3 +(adj)|residuary|substance|matter +(noun)|remainder|balance|residue|residuum|rest|part|portion|component part|component +(noun)|payment +residual clay|1 +(noun)|residual soil|soil|dirt +residual oil|1 +(noun)|resid|petroleum|crude oil|crude|rock oil|fossil oil +residual soil|1 +(noun)|residual clay|soil|dirt +residuary|2 +(adj)|part|portion|component part|component +(adj)|residual|substance|matter +residue|2 +(noun)|substance|matter +(noun)|remainder|balance|residual|residuum|rest|part|portion|component part|component +residuum|1 +(noun)|remainder|balance|residual|residue|rest|part|portion|component part|component +resift|1 +(verb)|sift|sieve|strain +resign|4 +(verb)|vacate|renounce|give up|leave office|quit|step down +(verb)|leave office|quit|step down|leave|depart|pull up stakes +(verb)|release|relinquish|free|give up|pass|hand|reach|pass on|turn over|give +(verb)|reconcile|submit|accept +resignation|3 +(noun)|surrender|despair +(noun)|speech act +(noun)|document|written document|papers +resigned|2 +(adj)|reconciled +(adj)|abject|unhopeful|hopeless +resignedly|1 +(adv)|abjectly +resile|4 +(verb)|chicken out|back off|pull out|back down|bow out +(verb)|bounce|take a hop|spring|bound|rebound|recoil|reverberate|ricochet|jump|leap|bound|spring +(verb)|abjure|recant|forswear|retract|renounce|repudiate +(verb)|revert|return|retrovert|regress|turn back +resilience|2 +(noun)|resiliency|elasticity|snap +(noun)|resiliency|recoil|repercussion|rebound|backlash +resiliency|2 +(noun)|resilience|recoil|repercussion|rebound|backlash +(noun)|resilience|elasticity|snap +resilient|2 +(adj)|spirited +(adj)|bouncy|live|lively|springy|whippy|elastic +resin|1 +(noun)|rosin|organic compound +resinate|1 +(verb)|season|flavor|flavour +resinated|1 +(adj)|organic compound +resinlike|1 +(adj)|organic compound +resinoid|1 +(noun)|plastic +resinous|1 +(adj)|pitchy|resiny|tarry|adhesive +resiny|1 +(adj)|pitchy|resinous|tarry|adhesive +resist|6 +(verb)|defy|refuse|elude|escape +(verb)|hold out|withstand|stand firm|fight|oppose|fight back|fight down|defend +(verb)|protest|dissent|oppose|controvert|contradict +(verb)|stand|fend|fight|oppose|fight back|fight down|defend +(verb)|reject|refuse|react|respond +(verb)|balk|baulk|jib|disobey +resistance|10 +(noun)|opposition|action +(noun)|mechanical phenomenon +(noun)|electric resistance|electrical resistance|impedance|resistivity|ohmic resistance|electrical phenomenon +(noun)|military action|action +(noun)|immunity|condition|status +(noun)|underground|revolutionary group +(noun)|unresponsiveness +(noun)|unwillingness +(noun)|resistor|electrical device +(noun)|group action +resistance pyrometer|1 +(noun)|pyrometer +resistance thermometer|1 +(noun)|platinum thermometer|thermometer +resistance unit|1 +(noun)|electromagnetic unit|emu +resistant|4 +(adj)|immune|unsusceptible |insusceptible +(adj)|impervious |imperviable +(adj)|insubordinate|resistive|defiant |noncompliant +(adj)|repellent|nonabsorbent |nonabsorptive +resister|2 +(noun)|obstructionist|obstructor|obstructer|thwarter|disputant|controversialist|eristic +(noun)|adversary|antagonist|opponent|opposer|person|individual|someone|somebody|mortal|human|soul +resistible|1 +(adj)|resistible +resisting arrest|1 +(noun)|assault|battery|assault and battery +resistive|2 +(adj)|electrical phenomenon +(adj)|insubordinate|resistant|defiant |noncompliant +resistivity|1 +(noun)|electric resistance|electrical resistance|impedance|resistance|ohmic resistance|electrical phenomenon +resistless|2 +(adj)|irresistible |overpowering|overwhelming +(adj)|supine|unresisting|passive |inactive +resistor|1 +(noun)|resistance|electrical device +resize|1 +(verb)|size +resmudge|1 +(verb)|smear|blur|smudge|smutch +resole|1 +(verb)|sole|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +resolute|2 +(adj)|resolute |bent|bent on|dead set|intent on|out to|desperate|do-or-die|determined|firm|steadfast|steady|unbendable|unfaltering|unshakable|unwavering|hell-bent|single-minded|resolved|spartan|stalwart|stout|undaunted|undismayed|unshaken|undeterred|undiscouraged|foursquare|brave|courageous|fearless|decisive|purposeful +(adj)|unhesitating|decisive +resolutely|1 +(adv)|decisively +resoluteness|1 +(noun)|firmness|resolve|resolution|trait +resolution|11 +(noun)|declaration|resolve|document|written document|papers +(noun)|resolving power|physical phenomenon +(noun)|resoluteness|firmness|resolve|trait +(noun)|solving|determination|finding +(noun)|settlement|closure|decision making|deciding +(noun)|resolving|breakdown|partitioning +(noun)|physical phenomenon +(noun)|remission|remittal|subsidence +(noun)|harmony|musical harmony +(noun)|solution|answer|result|solvent|statement +(noun)|decision|determination|conclusion +resolvable|2 +(adj)|solvable|soluble +(adj)|reconcilable +resolve|9 +(noun)|resoluteness|firmness|resolution|trait +(noun)|resolution|declaration|document|written document|papers +(verb)|decide|settle|adjudicate|end|terminate +(verb)|conclude|agree|hold|concur|concord +(verb)|purpose|decide|make up one's mind|determine +(verb)|answer|solve|work out|figure out|puzzle out|lick|work +(verb)|recognize|recognise|distinguish|discern|pick out|make out|tell apart +(verb)|solve|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|dissolve|break up|change integrity +resolved|2 +(adj)|single-minded|resolute +(adj)|solved +resolvent|1 +(noun)|solvent|dissolvent|dissolver|dissolving agent|medium +resolving|1 +(noun)|resolution|breakdown|partitioning +resolving power|1 +(noun)|resolution|physical phenomenon +resonance|5 +(noun)|physical phenomenon +(noun)|oscillation|vibration +(noun)|plangency|reverberance|ringing|sonorousness|sonority|vibrancy|timbre|timber|quality|tone +(noun)|rapport|affinity|kinship +(noun)|timbre|timber|quality|tone +resonant|2 +(adj)|reverberant |ringing +(adj)|resonating|resounding|reverberating|reverberative|rolling|reverberant |ringing +resonant circuit|1 +(noun)|resonator|circuit|electrical circuit|electric circuit +resonate|2 +(verb)|vibrate|sound|go +(verb)|come across +resonating|1 +(adj)|resonant|resounding|reverberating|reverberative|rolling|reverberant |ringing +resonating chamber|1 +(noun)|resonator|cavity resonator|chamber +resonator|3 +(noun)|cavity resonator|resonating chamber|chamber +(noun)|resonant circuit|circuit|electrical circuit|electric circuit +(noun)|system +resorb|1 +(verb)|reabsorb|absorb +resorcinol|1 +(noun)|phenol +resorcinolphthalein|1 +(noun)|fluorescein|fluoresceine|fluorescent dye|dye|dyestuff|absorption indicator +resorption|1 +(noun)|reabsorption|organic process|biological process +resort|6 +(noun)|resort hotel|holiday resort|hotel +(noun)|haunt|hangout|repair|stamping ground|area|country +(noun)|recourse|refuge|resource +(noun)|recourse|refuge|aid|assist|assistance|help +(verb)|fall back|recur|use|utilize|utilise|apply|employ +(verb)|repair|travel|go|move|locomote +resort area|1 +(noun)|playground|vacation spot|area|country +resort hotel|2 +(noun)|resort|holiday resort|hotel +(noun)|spa|hotel +resound|2 +(verb)|echo|ring|reverberate|sound|go +(verb)|make noise|noise|sound|go +resounding|1 +(adj)|resonant|resonating|reverberating|reverberative|rolling|reverberant |ringing +resource|3 +(noun)|assets +(noun)|asset|plus +(noun)|resourcefulness|imagination|inventiveness|ingeniousness|ingenuity|cleverness +resourceful|1 +(adj)|capable +resourcefulness|2 +(noun)|resource +(noun)|resource|imagination|inventiveness|ingeniousness|ingenuity|cleverness +resourceless|1 +(adj)|poor +respect|9 +(noun)|regard|detail|item|point +(noun)|esteem|regard|honor|honour|laurels +(noun)|esteem|regard|attitude|mental attitude +(noun)|deference|politeness|civility +(noun)|obedience|filial duty +(noun)|regard|affection|affectionateness|fondness|tenderness|heart|warmheartedness +(noun)|deference|respectfulness|courtesy|good manners +(verb)|esteem|value|prize|prise|see|consider|reckon|view|regard +(verb)|honor|honour|abide by|observe|accept +respect to|1 +(noun)|reference to|regard to|relation to|relevance|relevancy +respectability|1 +(noun)|reputability|honorableness|honourableness +respectable|3 +(adj)|respectable |decent|nice|fair|presentable|worthy|good|reputable +(adj)|estimable|good|honorable|reputable +(adj)|goodly|goodish|hefty|sizable|sizeable|tidy|considerable +respectably|1 +(adv)|creditably +respected|2 +(adj)|well-thought-of|reputable +(adj)|glorious|illustrious|redoubtable|proud +respecter|1 +(noun)|follower +respectful|2 +(adj)|respectful |deferent|deferential|regardful|honorific|courteous|humble|reverent +(adj)|reverential|venerating|reverent +respectfully|1 +(adv)|with all respect +respectfulness|1 +(noun)|deference|respect|courtesy|good manners +respective|1 +(adj)|several|various|individual +respectively|1 +(adv)|severally +respects|8 +(noun)|message|content|subject matter|substance +(noun)|respect|regard|detail|item|point +(noun)|esteem|regard|respect|honor|honour|laurels +(noun)|respect|esteem|regard|attitude|mental attitude +(noun)|deference|respect|politeness|civility +(noun)|obedience|respect|filial duty +(noun)|regard|respect|affection|affectionateness|fondness|tenderness|heart|warmheartedness +(noun)|deference|respect|respectfulness|courtesy|good manners +respighi|1 +(noun)|Respighi|Ottorino Respighi|composer +respiration|3 +(noun)|internal respiration|cellular respiration|metabolism|metabolic process|metastasis +(noun)|bodily process|body process|bodily function|activity +(noun)|breathing|external respiration|ventilation|bodily process|body process|bodily function|activity +respirator|2 +(noun)|inhalator|breathing device|breathing apparatus|breathing machine|ventilator +(noun)|gasmask|gas helmet|mask +respiratory|1 +(adj)|metabolism|metabolic process|metastasis +respiratory acidosis|1 +(noun)|carbon dioxide acidosis|acidosis +respiratory alkalosis|1 +(noun)|alkalosis +respiratory center|1 +(noun)|center|centre|nerve center|nerve centre +respiratory disease|1 +(noun)|respiratory illness|respiratory disorder|disease +respiratory disorder|1 +(noun)|respiratory disease|respiratory illness|disease +respiratory distress syndrome|1 +(noun)|respiratory distress syndrome of the newborn|hyaline membrane disease|respiratory disease|respiratory illness|respiratory disorder +respiratory distress syndrome of the newborn|1 +(noun)|respiratory distress syndrome|hyaline membrane disease|respiratory disease|respiratory illness|respiratory disorder +respiratory illness|1 +(noun)|respiratory disease|respiratory disorder|disease +respiratory infection|1 +(noun)|respiratory tract infection|infection +respiratory organ|1 +(noun)|internal organ|viscus +respiratory quotient|1 +(noun)|ratio +respiratory rate|1 +(noun)|rate of respiration|vital sign|rate +respiratory syncytial virus|1 +(noun)|paramyxovirus +respiratory system|1 +(noun)|systema respiratorium|system +respiratory tract|1 +(noun)|tract +respiratory tract infection|1 +(noun)|respiratory infection|infection +respire|3 +(verb)|breathe|take a breath|suspire +(verb)|experience|receive|have|get|undergo +(verb)|breathe|take a breath|suspire +respite|6 +(noun)|reprieve|relief|ease +(noun)|recess|break|time out|pause +(noun)|suspension|reprieve|hiatus|abatement|interruption|break +(noun)|rest|relief|rest period|pause|intermission|break|interruption|suspension +(noun)|reprieve|clemency|mercifulness|mercy +(verb)|reprieve|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +resplend|1 +(verb)|reflect|shine +resplendence|1 +(noun)|glory|resplendency|beauty +resplendency|1 +(noun)|glory|resplendence|beauty +resplendent|2 +(adj)|glorious|splendid|splendiferous|beautiful +(adj)|flamboyant|unrestrained|colorful +resplendent quetzel|1 +(noun)|resplendent trogon|Pharomacrus mocino|quetzal|quetzal bird +resplendent trogon|1 +(noun)|resplendent quetzel|Pharomacrus mocino|quetzal|quetzal bird +resplendently|1 +(adv)|gorgeously|splendidly|magnificently +respond|3 +(verb)|react|act|move +(verb)|answer|reply|state|say|tell +(verb)|react +respondent|3 +(adj)|answering|responsive +(noun)|codefendant|co-defendant +(noun)|responder|answerer|communicator +responder|1 +(noun)|respondent|answerer|communicator +response|6 +(noun)|consequence|effect|outcome|result|event|issue|upshot +(noun)|reaction|bodily process|body process|bodily function|activity +(noun)|answer|reply|statement +(noun)|reception|greeting|salutation +(noun)|phrase +(noun)|reply|speech act +response time|1 +(noun)|reaction time|latency|latent period|time interval|interval +responsibility|3 +(noun)|duty|obligation|social control +(noun)|province|sphere|domain|area|orbit|field|arena +(noun)|responsibleness|trustworthiness|trustiness +responsible|3 +(adj)|responsible |accountable|answerable|amenable|judicious|liable|trustworthy|obligated|prudent|trustworthy|trusty +(adj)|responsible for|causative +(adj)|creditworthy|trustworthy |trusty +responsible for|1 +(adj)|responsible|causative +responsibleness|1 +(noun)|responsibility|trustworthiness|trustiness +responsive|4 +(adj)|antiphonal|phrase +(adj)|responsive |answering|respondent|hair-trigger|sensitive|sensitive +(adj)|amenable|tractable|susceptible +(adj)|sensitive +responsiveness|2 +(noun)|reactivity|sensitivity|sensitiveness|sensibility +(noun)|quality +rest|16 +(noun)|remainder|balance|residual|residue|residuum|part|portion|component part|component +(noun)|ease|repose|relaxation|inactivity +(noun)|respite|relief|rest period|pause|intermission|break|interruption|suspension +(noun)|inaction|inactivity|inactiveness +(noun)|eternal rest|sleep|eternal sleep|quietus|death +(noun)|support +(noun)|musical notation +(verb)|be|rest on|rest on +(verb)|breathe|catch one's breath|take a breather|pause|intermit|break +(verb)|lie|be +(verb)|recumb|repose|recline +(verb)|stay|remain|be +(verb)|reside|repose|inhere in|attach to +(verb)|put|set|place|pose|position|lay +(verb)|perch|roost|sit|sit down +(verb)|pillow|put|set|place|pose|position|lay +rest-cure|1 +(noun)|treatment +rest-harrow|3 +(noun)|restharrow|Ononis spinosa|subshrub|suffrutex +(noun)|restharrow|Ononis repens|subshrub|suffrutex +(noun)| +rest area|1 +(noun)|layby|lay-by|pull-off|rest stop|area +rest day|1 +(noun)|day of rest|day of the week +rest energy|1 +(noun)|energy +rest home|1 +(noun)|home|nursing home|institution +rest house|1 +(noun)|building|edifice +rest mass|1 +(noun)|mass +rest on|2 +(verb)|lean on|lean against|touch|adjoin|meet|contact +(verb)|repose on|build on|build upon|depend on|devolve on|depend upon|ride|turn on|hinge on|hinge upon +rest period|1 +(noun)|respite|rest|relief|pause|intermission|break|interruption|suspension +rest stop|1 +(noun)|layby|lay-by|pull-off|rest area|area +restart|2 +(verb)|start|start up +(verb)|resume|continue|uphold|carry on|bear on|preserve +restate|1 +(verb)|repeat|reiterate|ingeminate|iterate|retell|tell +restatement|1 +(noun)|statement +restaurant|1 +(noun)|eating house|eating place|building|edifice +restaurant attendant|1 +(noun)|dining-room attendant|employee +restaurant chain|1 +(noun)|chain +restauranter|1 +(noun)|restaurateur|owner|proprietor +restaurateur|1 +(noun)|restauranter|owner|proprietor +rested|1 +(adj)|rested |fresh|invigorated|refreshed|reinvigorated|untired|unwearied|unweary|lively +rester|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +restful|1 +(adj)|relaxing|reposeful|quiet +restfully|1 +(adv)|quietly +restfulness|1 +(noun)|inactiveness|inactivity|inertia +restharrow|2 +(noun)|rest-harrow|Ononis spinosa|subshrub|suffrutex +(noun)|rest-harrow|Ononis repens|subshrub|suffrutex +resting potential|1 +(noun)|electric potential|potential|potential difference|potential drop|voltage +restitute|2 +(verb)|restore|refund|return|repay|give back +(verb)|renovate|regenerate|renew +restitution|3 +(noun)|damages|amends|indemnity|indemnification|redress|compensation +(noun)|repair|fix|fixing|fixture|mend|mending|reparation +(noun)|return|restoration|regaining|acquisition +restive|2 +(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|uptight|tense +(adj)|impatient +restiveness|2 +(noun)|jitteriness|jumpiness|nervousness|anxiety +(noun)|skittishness|nervousness +restless|4 +(adj)|fidgety|fretful|itchy|unquiet +(adj)|ungratified|unsatisfied|discontented |discontent +(adj)|moving +(adj)|uneasy|unquiet +restless legs|1 +(noun)|restless legs syndrome|Ekbom syndrome|syndrome +restless legs syndrome|1 +(noun)|restless legs|Ekbom syndrome|syndrome +restlessness|4 +(noun)|mobility +(noun)|impatience|irritation|annoyance|vexation|botheration +(noun)|fidget|fidgetiness|agitation +(noun)|uneasiness|nervousness +restock|1 +(verb)|stock +restoration|7 +(noun)|Restoration|historic period|age +(noun)|repair|fix|fixing|fixture|mend|mending|reparation +(noun)|restitution|return|regaining|acquisition +(noun)|renovation|refurbishment|improvement|melioration +(noun)|artifact|artefact +(noun)|model|simulation +(noun)|Restoration|group action +restorative|4 +(adj)|renewing|reviving|revitalizing|revitalising|invigorating +(adj)|recuperative|healthful +(noun)|tonic|medicine|medication|medicament|medicinal drug +(noun)|corrective|device +restore|5 +(verb)|reconstruct|regenerate|renew +(verb)|regenerate|rejuvenate|regenerate|renew +(verb)|restitute|refund|return|repay|give back +(verb)|repair|mend|fix|bushel|doctor|furbish up|touch on|better|improve|amend|ameliorate|meliorate +(verb)|reinstate|reestablish|change|alter|modify +restored|1 +(adj)|restored |fixed up|rebuilt|remodeled|reconditioned|repaired|fixed|rehabilitated|renovated|improved +restorer|1 +(noun)|refinisher|renovator|preserver|skilled worker|trained worker +restoril|1 +(noun)|temazepam|Restoril|benzodiazepine +restrain|5 +(verb)|suppress|keep|keep back|hold back|prevent|keep +(verb)|restrict|trammel|limit|bound|confine|throttle|control|hold in|hold|contain|check|curb|moderate +(verb)|confine|hold|disable|disenable|incapacitate +(verb)|encumber|cumber|constrain|restrict|trammel|limit|bound|confine|throttle +(verb)|intimidate|discourage +restrained|6 +(adj)|reserved|reticent|unemotional|undemonstrative +(adj)|restrained |bated|checked|curbed|close|confined|contained|low-key|low-keyed|subdued|unexpansive|controlled|inhibited|reserved +(adj)|moderate|temperate +(adj)|quiet|unostentatious |unpretentious|unpretending +(adj)|modest|unostentatious|discreet +(adj)|guarded|cautious +restrainer|2 +(noun)|chemical +(noun)|controller|person|individual|someone|somebody|mortal|human|soul +restraint|6 +(noun)|control +(noun)|control|discipline +(noun)|constraint|confinement +(noun)|restriction|limitation +(noun)|chasteness|simplicity|plainness +(noun)|constraint|device +restraint of trade|1 +(noun)|restraint +restrengthen|1 +(verb)|strengthen|beef up|fortify +restrict|4 +(verb)|curtail|curb|cut back|limit|circumscribe|confine +(verb)|control|hold in|hold|contain|check|curb|moderate +(verb)|restrain|trammel|limit|bound|confine|throttle|control|hold in|hold|contain|check|curb|moderate +(verb)|qualify|modify +restricted|4 +(adj)|restricted |circumscribed|limited|closed|off-limits|out-of-bounds|classified|confined|unfree +(adj)|qualified|modified +(adj)|controlled|limited +(adj)|classified +restricting|1 +(adj)|confining|constraining|constrictive|limiting|restrictive +restriction|3 +(noun)|limitation|rule|regulation +(noun)|limitation|regulation|regulating +(noun)|restraint +restriction endonuclease|1 +(noun)|restriction nuclease|restriction enzyme|endonuclease +restriction enzyme|1 +(noun)|restriction endonuclease|restriction nuclease|endonuclease +restriction fragment|1 +(noun)|fragment +restriction nuclease|1 +(noun)|restriction endonuclease|restriction enzyme|endonuclease +restriction site|1 +(noun)|site|situation +restrictive|2 +(adj)|restrictive |confining|constraining|constrictive|limiting|restricting|inhibitory|repressive|repressing|limiting|regulative|regulatory|sumptuary|suppressive +(adj)|protective +restrictive clause|1 +(noun)|subordinate clause|dependent clause +restrictiveness|1 +(noun)|modification|qualifying|limiting +restroom|1 +(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|toilet facility|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +restructure|1 +(verb)|reconstitute|structure +resublime|1 +(verb)|sublime|sublimate +resublimed|1 +(adj)|sublime|sublimate +resubmit|1 +(verb)|feed back|render|return +result|6 +(noun)|consequence|effect|outcome|event|issue|upshot|phenomenon +(noun)|solution|answer|resolution|solvent|statement +(noun)|resultant|final result|outcome|termination|ending|conclusion|finish +(noun)|resultant role|semantic role|participant role +(verb)|ensue|prove|turn out|turn up +(verb)|leave|lead|bring about +resultant|4 +(adj)|consequent|ensuant|resulting|sequent|subsequent +(noun)|end point|degree|level|stage|point +(noun)|result|final result|outcome|termination|ending|conclusion|finish +(noun)|vector sum|vector +resultant role|1 +(noun)|result|semantic role|participant role +resulting|1 +(adj)|consequent|ensuant|resultant|sequent|subsequent +resulting trust|1 +(noun)|implied trust +resume|6 +(noun)|sketch|survey|summary +(noun)|curriculum vitae|CV|summary +(verb)|restart|continue|uphold|carry on|bear on|preserve +(verb)|take up|change +(verb)|assume|adopt|take on|take over +(verb)|sum up|summarize|summarise|repeat|reiterate|ingeminate|iterate|restate|retell +resumption|1 +(noun)|recommencement|beginning|start|commencement +resupine|1 +(adj)|supine|unerect +resurface|3 +(verb)|surface|come up|rise up|rise +(verb)|coat|surface +(verb)|reappear|re-emerge +resurge|1 +(verb)|originate|arise|rise|develop|uprise|spring up|grow +resurgence|1 +(noun)|revival|revitalization|revitalisation|revivification|improvement|betterment|advance +resurgent|2 +(adj)|revived +(adj)|renascent|dynamic |dynamical +resurrect|3 +(verb)|raise|upraise|resuscitate|revive +(verb)|revive|regenerate|restore|rejuvenate +(verb)|rise|uprise|return|go back|get back|come back +resurrection|2 +(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle +(noun)|revival|resurgence|revitalization|revitalisation|revivification +resurrection fern|1 +(noun)|gray polypody|Polypodium polypodioides|polypody +resurrection of christ|1 +(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle +resurrection plant|2 +(noun)|rose of Jericho|Selaginella lepidophylla|spikemoss|spike moss|little club moss +(noun)|rose of Jericho|Anastatica hierochuntica|crucifer|cruciferous plant +resurvey|1 +(noun)|survey|study +resuscitate|2 +(verb)|revive|bring to|bring back|bring round|bring around +(verb)|come to|revive|change state|turn +resuscitated|1 +(adj)|revived +resuscitation|1 +(noun)|revival|resurgence|revitalization|revitalisation|revivification +resuscitator|1 +(noun)|breathing device|breathing apparatus|breathing machine|ventilator +resuspend|1 +(verb)|suspend +resuspension|1 +(noun)|suspension +ret|1 +(verb)|drench|douse|dowse|soak|sop|souse +retail|4 +(adj)|retail +(noun)|selling|merchandising|marketing +(verb)|sell +(verb)|sell +retail chain|1 +(noun)|chain|distributor +retail merchant|1 +(noun)|retailer|merchant|merchandiser|distributor|distributer +retail price index|1 +(noun)|price index|price level +retail store|1 +(noun)|mercantile establishment|sales outlet|outlet|place of business|business establishment +retailer|1 +(noun)|retail merchant|merchant|merchandiser|distributor|distributer +retailing|1 +(noun)|selling|merchandising|marketing +retain|4 +(verb)|hold|bear|carry|contain +(verb)|continue|keep|keep on|keep going|prolong|sustain|keep up +(verb)|hold|keep back|hold back|keep|hold on +(verb)|remember|think of +retained|1 +(adj)|maintained|preserved +retained object|1 +(noun)|object +retainer|3 +(noun)|consideration|fee +(noun)|servant|worker +(noun)|dental appliance +retaining|1 +(adj)|holding|retentive +retaining wall|1 +(noun)|wall +retake|4 +(noun)|take +(verb)|recapture|take +(verb)|recapture|get|catch|capture +(verb)|photograph|snap|shoot +retaking|1 +(noun)|recapture|recovery|retrieval +retaliate|2 +(verb)|revenge|avenge|punish|penalize|penalise +(verb)|strike back|strike|hit +retaliation|1 +(noun)|revenge|return|paying back|getting even +retaliator|1 +(noun)|avenger|attacker|aggressor|assailant|assaulter +retaliatory|1 +(adj)|relatiative|retributive|retributory|vindicatory|punitive |punitory +retaliatory eviction|1 +(noun)|eviction|dispossession|legal ouster +retama|1 +(noun)|Retama|genus Retama|rosid dicot genus +retama raetam|1 +(noun)|retem|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub|bush +retard|5 +(noun)|idiot|imbecile|cretin|moron|changeling|half-wit|simpleton|simple +(verb)|check|delay|change|alter|modify +(verb)|decelerate|slow down +(verb)|be +(verb)|decelerate|slow|slow down|slow up|decrease|diminish|lessen|fall +retardant|1 +(noun)|retardent|retardation|agent +retardation|5 +(noun)|deceleration|slowing|speed|swiftness|fastness +(noun)|delay|hold|time lag|postponement|wait +(noun)|retardant|retardent|agent +(noun)|mental retardation|backwardness|slowness|subnormality|stupidity +(noun)|slowdown|lag|delay|holdup +retarded|1 +(adj)|retarded |backward|feebleminded|dim-witted|half-witted|simple|simple-minded|cretinous|delayed|unintelligent|stupid +retarded depression|1 +(noun)|depressive disorder|clinical depression|depression +retardent|1 +(noun)|retardant|retardation|agent +retarding force|1 +(noun)|drag|resistance +retch|3 +(noun)|heave|spasm +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +(verb)|gag|heave +rete|1 +(noun)|plexus|structure|anatomical structure|complex body part|bodily structure|body structure +rete malpighii|1 +(noun)|stratum germinativum|stratum basale|malpighian layer|rete Malpighii|stratum +rete testis|1 +(noun)|plexus|rete +retell|3 +(verb)|recite|re-create +(verb)|fictionalize|fictionalise|re-create +(verb)|repeat|reiterate|ingeminate|iterate|restate|tell +retem|1 +(noun)|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub|bush +retention|3 +(noun)|keeping|holding|possession|ownership +(noun)|memory|retentiveness|faculty|mental faculty|module +(noun)|retentiveness|retentivity|impermeability|impermeableness +retentive|1 +(adj)|retentive |recollective|holding|retaining|long|tenacious|mindful|aware +retentiveness|3 +(noun)|memory|retention|faculty|mental faculty|module +(noun)|acquisitiveness +(noun)|retentivity|retention|impermeability|impermeableness +retentivity|1 +(noun)|retentiveness|retention|impermeability|impermeableness +rethink|2 +(noun)|reconsideration|second thought|afterthought|reversal|change of mind|flip-flop|turnabout|turnaround +(verb)|think|believe|consider|conceive +reticence|1 +(noun)|reserve|taciturnity|uncommunicativeness +reticent|3 +(adj)|untalkative|taciturn +(adj)|reserved|restrained|unemotional|undemonstrative +(adj)|self-effacing|unassertive +retick|1 +(verb)|tick|sew|run up|sew together|stitch +reticle|1 +(noun)|reticule|graticule|network +reticular|1 +(adj)|reticulate |reticulated|cancellate|cancellated|clathrate|crisscross|crisscrossed|fretted|interlaced|latticed|latticelike|interconnected|interrelated|lacy|netlike|netted|webbed|weblike|webby|meshed|networklike +reticular activating system|1 +(noun)|RAS|neural network|neural net +reticular formation|1 +(noun)|RF|neural network|neural net +reticulate|4 +(adj)|reticulate |reticulated|reticular|cancellate|cancellated|clathrate|crisscross|crisscrossed|fretted|interlaced|latticed|latticelike|interconnected|interrelated|lacy|netlike|netted|webbed|weblike|webby|meshed|networklike +(verb)|change +(verb)|distribute +(verb)|form +reticulated|1 +(adj)|reticulate |reticular|cancellate|cancellated|clathrate|crisscross|crisscrossed|fretted|interlaced|latticed|latticelike|interconnected|interrelated|lacy|netlike|netted|webbed|weblike|webby|meshed|networklike +reticulated python|1 +(noun)|Python reticulatus|python +reticulation|2 +(noun)|formation +(noun)|network +reticule|2 +(noun)|bag|handbag|pocketbook|purse +(noun)|reticle|graticule|network +reticulitermes|1 +(noun)|Reticulitermes|genus Reticulitermes|arthropod genus +reticulitermes flanipes|1 +(noun)|Reticulitermes flanipes|termite|white ant +reticulitermes lucifugus|1 +(noun)|Reticulitermes lucifugus|termite|white ant +reticulocyte|1 +(noun)|red blood cell|RBC|erythrocyte +reticuloendothelial system|1 +(noun)|RES|system +reticulum|3 +(noun)|Reticulum|constellation +(noun)|network|web +(noun)|second stomach|stomach|tummy|tum|breadbasket +retie|1 +(verb)|tie|bind +retina|1 +(noun)|membrane|tissue layer +retinal|2 +(adj)|membrane|tissue layer +(noun)|retinene|pigment +retinal cone|1 +(noun)|cone|cone cell|visual cell +retinal detachment|1 +(noun)|detachment of the retina|detached retina|visual impairment|visual defect|vision defect|visual disorder +retinal purple|1 +(noun)|visual purple|rhodopsin|photopigment +retinal rod|1 +(noun)|rod|rod cell|visual cell +retinal scanning|1 +(noun)|biometric identification|biometric authentication|identity verification +retinene|1 +(noun)|retinal|pigment +retinitis|1 +(noun)|inflammation|redness|rubor +retinoblastoma|1 +(noun)|malignant tumor|malignant neoplasm|metastatic tumor +retinol|1 +(noun)|vitamin A1|vitamin A|antiophthalmic factor|axerophthol|A +retinue|1 +(noun)|cortege|suite|entourage|gathering|assemblage +retire|12 +(verb)|leave office|quit|step down|resign +(verb)|withdraw|discontinue|stop|cease|give up|quit|lay off +(verb)|withdraw|retreat|pull away|draw back|recede|pull back|move back|travel|go|move|locomote +(verb)|recede|fall back|withdraw|retreat|pull away|draw back|recede|pull back|move back +(verb)|recall +(verb)|adjourn|withdraw|close|fold|shut down|close down +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|pension off|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|withdraw|tire|pall|weary|fatigue|jade +(verb)|put out|toy|fiddle|diddle|play +(verb)|strike out +(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep +retired|5 +(adj)|inactive +(adj)|emeritus|old +(adj)|out |down +(adj)|out of service|out of commission +(adj)|superannuated|old +retired person|1 +(noun)|retiree|nonworker +retiree|1 +(noun)|retired person|nonworker +retirement|3 +(noun)|status|position +(noun)|termination|ending|conclusion +(noun)|retreat|withdrawal +retirement account|1 +(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement program|plan|program|programme +retirement benefit|1 +(noun)|old-age pension|retirement pension|retirement check|retirement fund|superannuation|pension +retirement check|1 +(noun)|old-age pension|retirement pension|retirement benefit|retirement fund|superannuation|pension +retirement fund|1 +(noun)|old-age pension|retirement pension|retirement check|retirement benefit|superannuation|pension +retirement pension|1 +(noun)|old-age pension|retirement check|retirement benefit|retirement fund|superannuation|pension +retirement plan|1 +(noun)|pension plan|pension account|retirement savings plan|retirement savings account|retirement account|retirement program|plan|program|programme +retirement program|1 +(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|plan|program|programme +retirement savings account|1 +(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement account|retirement program|plan|program|programme +retirement savings plan|1 +(noun)|pension plan|pension account|retirement plan|retirement savings account|retirement account|retirement program|plan|program|programme +retiring|4 +(adj)|unassertive|unobtrusive |unnoticeable +(adj)|receding|retreating +(adj)|unassuming|modest +(adj)|past|preceding|outgoing +retool|2 +(verb)|revise|reorganize|reorganise|shake up +(verb)|substitute|replace +retort|3 +(noun)|rejoinder|return|riposte|replication|comeback|counter|reply|response +(noun)|vessel +(verb)|come back|repay|return|riposte|rejoin|answer|reply|respond +retouch|2 +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|touch up|enhance +retrace|2 +(verb)|trace|return|go back|get back|come back +(verb)|reconstruct|construct|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose +retract|4 +(verb)|abjure|recant|forswear|resile|renounce|repudiate +(verb)|shrink back|flinch|squinch|funk|cringe|shrink|wince|recoil|quail +(verb)|pull back|draw back|pull +(verb)|draw in|attract|pull|pull in|draw|draw in +retractable|1 +(adj)|retractile +retracted|1 +(adj)|backward +retractile|1 +(adj)|retractile |retractable +retraction|2 +(noun)|abjuration|recantation|disavowal|disclaimer +(noun)|motion|movement|move|motility +retractor|1 +(noun)|surgical instrument +retrain|2 +(verb)|train|develop|prepare|educate +(verb)|train|prepare +retraining|1 +(noun)|training|preparation|grooming +retral|2 +(adj)|retrograde|backward +(adj)|posterior +retranslate|1 +(verb)|translate|interpret|render +retransmit|1 +(verb)|conduct|transmit|convey|carry|channel +retread|3 +(noun)|recap|car tire|automobile tire|auto tire|rubber tire +(verb)|rework|make over|work|work on|process +(verb)|remold|remould|regenerate|renew +retreat|10 +(noun)|withdrawal +(noun)|area|country +(noun)|signal|signaling|sign +(noun)|bugle call +(noun)|hideaway|area +(noun)|retirement|withdrawal +(verb)|withdraw|pull away|draw back|recede|pull back|retire|move back|travel|go|move|locomote +(verb)|travel|go|move|locomote +(verb)|retrograde|recede|fall back|retire +(verb)|pull back|back out|back away|crawfish|crawfish out|pull in one's horns|withdraw +retreatant|1 +(noun)|participant +retreated|1 +(noun)|people +retreating|1 +(adj)|retreating |receding|retiring|withdrawing +retrench|2 +(verb)|conserve|husband|economize|economise +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +retrenchment|2 +(noun)|entrenchment|intrenchment +(noun)|curtailment|downsizing|economy|saving +retrial|1 +(noun)|trial +retribution|3 +(noun)|requital|penalty +(noun)|correction|rectification +(noun)|vengeance|payback|retaliation|revenge +retributive|2 +(adj)|retaliatory|relatiative|retributory|vindicatory|punitive |punitory +(adj)|retributory|vindicatory|just +retributory|2 +(adj)|retaliatory|relatiative|retributive|vindicatory|punitive |punitory +(adj)|retributive|vindicatory|just +retrievable|1 +(adj)|recoverable +retrieval|3 +(noun)|computer operation|machine operation +(noun)|memory|remembering +(noun)|recovery|deed|feat|effort|exploit +retrieve|3 +(verb)|recover|find|regain|get|acquire +(verb)|bring|get|convey|fetch +(verb)|remember|recall|call back|call up|recollect|think +retriever|1 +(noun)|sporting dog|gun dog +retro|2 +(adj)|ex post facto|retroactive|retrospective +(noun)|fashion +retroactive|2 +(adj)|retroactive +(adj)|ex post facto|retro|retrospective +retrobulbar neuritis|1 +(noun)|neuritis +retrofit|5 +(noun)|component|constituent|element +(noun)|addition +(verb)|supply|provide|render|furnish +(verb)|install|instal|put in|set up +(verb)|overhaul|modernize|modernise +retroflection|3 +(noun)|retroversion|retroflexion|abnormality|abnormalcy|abnormal condition +(noun)|retroflexion|articulation +(noun)|retroflexion|motion|movement|move|motility +retroflex|4 +(adj)|retroflexed|backward +(adj)|cacuminal|backward +(verb)|replicate|bend|flex +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +retroflexed|1 +(adj)|retroflex|backward +retroflexion|3 +(noun)|retroversion|retroflection|abnormality|abnormalcy|abnormal condition +(noun)|retroflection|articulation +(noun)|retroflection|motion|movement|move|motility +retrograde|9 +(adj)|retrograde +(adj)|retrograde +(adj)|retrogressive|regressive +(adj)|retral|backward +(verb)|orbit|revolve +(verb)|travel|go|move|locomote +(verb)|retreat|recede|fall back|retire +(verb)|rehash|hash over|recapitulate|recap +(verb)|regress|retrogress|worsen|decline +retrograde amnesia|1 +(noun)|amnesia|memory loss|blackout +retrogress|2 +(verb)|regress|retrograde|worsen|decline +(verb)|relapse|lapse|recidivate|regress|fall back|revert|return|retrovert|regress|turn back +retrogression|2 +(noun)|degeneration|transformation|transmutation|shift +(noun)|regression|regress|reversion|retroversion|reversal +retrogressive|1 +(adj)|retrograde|regressive +retromandibular vein|1 +(noun)|vena retromandibularis|posterior facial vein|facial vein|vena facialis +retrophyllum|1 +(noun)|Retrophyllum|genus Retrophyllum|gymnosperm genus +retrorocket|1 +(noun)|rocket|rocket engine +retrorse|1 +(adj)|retrorse |decurved +retrospect|2 +(noun)|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +(verb)|review|look back|remember|think back +retrospection|2 +(noun)|mention|reference +(noun)|memory|remembering +retrospective|2 +(adj)|retrospective |ex post facto|retroactive|retro|backward +(noun)|art exhibition +retrousse|1 +(adj)|tip-tilted|upturned|shapely +retroversion|3 +(noun)|retroflection|retroflexion|abnormality|abnormalcy|abnormal condition +(noun)|translation|interlingual rendition|rendering|version +(noun)|regression|regress|reversion|retrogression|reversal +retrovert|1 +(verb)|revert|return|regress|turn back|change by reversal|turn|reverse +retrovir|1 +(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor|NRTI +retrovirus|1 +(noun)|animal virus +retrovision|1 +(noun)|vision +retry|1 +(verb)|rehear|hear|try +retsina|1 +(noun)|wine|vino +return|29 +(noun)|tax return|income tax return|legal document|legal instrument|official document|instrument +(noun)|homecoming|arrival +(noun)|coming back|turning|turn +(noun)|restitution|restoration|regaining|acquisition +(noun)|motion|movement|move +(noun)|issue|proceeds|take|takings|yield|payoff|income +(noun)|recurrence|repeat|repetition +(noun)|rejoinder|retort|riposte|replication|comeback|counter|reply|response +(noun)|return key|key +(noun)|paying back|getting even|group action +(noun)|tennis stroke|tennis shot +(noun)|run|running|running play|running game +(noun)|reappearance|appearance +(verb)|go back|get back|come back|travel|go|move|locomote +(verb)|render|give +(verb)|revert|retrovert|regress|turn back|change by reversal|turn|reverse +(verb)|hark back|come back|recall|denote|refer +(verb)|take back|bring back|bring|convey|take +(verb)|reciprocate +(verb)|transport|carry +(verb)|retort|come back|repay|riposte|rejoin|answer|reply|respond +(verb)|come back|reappear|re-emerge +(verb)|refund|repay|give back|pay +(verb)|render|deliver|communicate|pass on|pass|put across +(verb)|reelect|elect +(verb)|fall|pass|devolve|change hands +(verb)|go back|get back|come back +(verb)|render|yield|give|generate|produce|make|create +(verb)|submit|subject +return address|1 +(noun)|address|destination|name and address +return key|1 +(noun)|return|key +return ticket|1 +(noun)|round-trip ticket|ticket +returnable|1 +(adj)|returnable |revertible +returning|2 +(adj)|reverting|regressive +(adj)|reversive|backward +returning officer|1 +(noun)|official|functionary +reuben|2 +(noun)|Reuben|patriarch +(noun)|Reuben|sandwich +reuben lucius goldberg|1 +(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist +reunification|1 +(noun)|reunion|union|unification|uniting|conjugation|jointure +reunify|1 +(verb)|reunite|unite|unify +reunion|2 +(noun)|party +(noun)|reunification|union|unification|uniting|conjugation|jointure +reunite|2 +(verb)|meet|get together +(verb)|reunify|unite|unify +reuptake|1 +(noun)|re-uptake|uptake +reusable|2 +(adj)|nondisposable +(adj)|reclaimable|recyclable|useful |utile +reusable program|1 +(noun)|program|programme|computer program|computer programme +reusable routine|1 +(noun)|routine|subroutine|subprogram|procedure|function +reuse|1 +(verb)|recycle|reprocess|use|utilize|utilise|apply|employ +rev|2 +(noun)|revolutions per minute|rpm|rate +(verb)|rev up|increase +rev up|2 +(verb)|step up|increase +(verb)|rev|increase +revaluation|1 +(noun)|reappraisal|review|reassessment|appraisal|assessment +revalue|2 +(verb)|appreciate|apprize|apprise|increase +(verb)|rate|value +revamp|2 +(verb)|regenerate|renew +(verb)|vamp|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +reveal|4 +(verb)|uncover|bring out|unveil|show +(verb)|disclose|let on|bring out|discover|expose|divulge|impart|break|give away|let out|tell +(verb)|display|show|communicate|pass on|pass|put across +(verb)|disclose|let on|bring out|discover|expose|divulge|impart|break|give away|let out +revealed|1 +(adj)|discovered|disclosed|unconcealed +revealed religion|1 +(noun)|religion|faith|religious belief +revealing|3 +(adj)|telling|telltale|informative |informatory +(adj)|revealing |betraying|disclosing|indicative|indicatory|revelatory|significative|suggestive +(noun)|disclosure|revelation|speech act +reveille|2 +(noun)|wake-up signal|bugle call +(noun)|awakening|wakening|waking up +revel|3 +(noun)|revelry|merrymaking|conviviality|jollification +(verb)|delight|enjoy +(verb)|racket|make whoopie|make merry|make happy|whoop it up|jollify|wassail|celebrate|fete +revelation|4 +(noun)|disclosure|revealing|speech act +(noun)|insight|brainstorm|brainwave +(noun)|informing|making known +(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book +revelation of saint john the divine|1 +(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book +revelatory|2 +(adj)|indicative|indicatory|significative|suggestive|revealing +(adj)|apocalyptic|apocalyptical|prophetic |prophetical +reveler|1 +(noun)|reveller|merrymaker|celebrant|celebrator|celebrater +reveller|1 +(noun)|reveler|merrymaker|celebrant|celebrator|celebrater +revelry|1 +(noun)|revel|merrymaking|conviviality|jollification +revenant|4 +(adj)|ghost +(adj)|recurring|continual +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|ghost +revenge|2 +(noun)|retaliation|return|paying back|getting even +(verb)|avenge|retaliate|punish|penalize|penalise +revengeful|1 +(adj)|vindictive|vengeful|unforgiving +revengefully|1 +(adv)|vengefully|vindictively +revenue|2 +(noun)|gross|receipts|income +(noun)|tax income|taxation|tax revenue|government income|government revenue +revenue bond|1 +(noun)|bond|bond certificate +revenue enhancement|1 +(noun)|tax|taxation|levy +revenue sharing|1 +(noun)|distribution +revenue stamp|1 +(noun)|stamp|impression +revenue tariff|1 +(noun)|duty|tariff +revenuer|1 +(noun)|government agent +reverberance|1 +(noun)|plangency|resonance|ringing|sonorousness|sonority|vibrancy|timbre|timber|quality|tone +reverberant|1 +(adj)|reverberant |ringing|bright|brilliant|clinking|echoing|reechoing|hollow|jingling|jingly|live|resonant|resonant|resonating|resounding|reverberating|reverberative|rolling|tinkling|tinkly +reverberate|6 +(verb)|resound|echo|ring|sound|go +(verb)|prevail|persist|die hard|run|endure +(verb)|reflect +(verb)|reflect +(verb)|bounce|resile|take a hop|spring|bound|rebound|recoil|ricochet|jump|leap|bound|spring +(verb)|process|treat +reverberating|1 +(adj)|resonant|resonating|resounding|reverberative|rolling|reverberant |ringing +reverberation|2 +(noun)|echo|sound reflection|replication|reflection|reflexion|reflectivity +(noun)|repercussion|consequence|effect|outcome|result|event|issue|upshot +reverberative|1 +(adj)|resonant|resonating|resounding|reverberating|rolling|reverberant |ringing +revere|4 +(noun)|Revere|Paul Revere|silversmith|silverworker|silver-worker|American Revolutionary leader +(noun)|revers|lapel +(verb)|idolize|idolise|worship|hero-worship|adore +(verb)|reverence|fear|venerate|respect|esteem|value|prize|prise +revered|2 +(adj)|august|venerable|honorable |honourable +(adj)|reverenced|reverend|sublime|venerated|sacred +reverence|3 +(noun)|fear|awe|veneration|emotion +(noun)|attitude|mental attitude +(verb)|fear|revere|venerate|respect|esteem|value|prize|prise +reverenced|1 +(adj)|revered|reverend|sublime|venerated|sacred +reverend|3 +(adj)|revered|reverenced|sublime|venerated|sacred +(noun)|clergyman|man of the cloth|spiritual leader +(noun)|Reverend|title|title of respect +reverend dodgson|1 +(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer|author +reverent|2 +(adj)|reverent |adoring|worshipful|awed|awful|respectful|reverential|venerating|respectful +(adj)|godly|worshipful|pious +reverential|1 +(adj)|respectful|venerating|reverent +reverentially|1 +(adv)|reverently +reverently|1 +(adv)|reverentially +reverie|2 +(noun)|revery|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream|dreaming +(noun)|revery|abstractedness|abstraction +revers|1 +(noun)|revere|lapel +reversal|8 +(noun)|change of state +(noun)|reverse|setback|blow|black eye|happening|occurrence|natural event +(noun)|turn around|turning|turn +(noun)|change of mind|flip-flop|turnabout|turnaround|decision making|deciding +(noun)|judgment|judgement|judicial decision +(noun)|reversion|reverse|turnabout|turnaround|change of direction|reorientation +(noun)|transposition|reordering +(noun)|about-face|volte-face|policy change|change +reverse|13 +(adj)|rearward|backward +(adj)|inverse|backward +(adj)|reverse +(noun)|contrary|opposite|opposition|oppositeness +(noun)|gear|gear mechanism +(noun)|reversal|setback|blow|black eye|happening|occurrence|natural event +(noun)|verso|side +(noun)|run|running|running play|running game +(noun)|reversion|reversal|turnabout|turnaround|change of direction|reorientation +(verb)|change by reversal|turn|change +(verb)|invert|change|alter|modify +(verb)|overrule|overturn|override|overthrow|rule|decree +(verb)|revoke|annul|lift|countermand|repeal|overturn|rescind|vacate|cancel|strike down +reverse fault|1 +(noun)|thrust fault|overthrust fault|inclined fault +reverse hang|1 +(noun)|hang +reverse polish notation|1 +(noun)|postfix notation|suffix notation|reverse Polish notation|parenthesis-free notation +reverse split|1 +(noun)|reverse stock split|split down|decrease|diminution|reduction|step-down +reverse stock split|1 +(noun)|reverse split|split down|decrease|diminution|reduction|step-down +reverse transcriptase|1 +(noun)|polymerase +reverse transcriptase inhibitor|1 +(noun)|antiviral|antiviral agent|antiviral drug +reversed|2 +(adj)|turned +(adj)|converse|transposed|backward +reversibility|1 +(noun)|changeableness|changeability +reversible|5 +(adj)|reversible |correctable|rechargeable +(adj)|reversible |two-sided|double-faced +(adj)|revocable |revokable +(adj)|changeable |changeful +(noun)|garment +reversible process|1 +(noun)|process +reversing thermometer|1 +(noun)|thermometer +reversion|6 +(noun)|interest|stake +(noun)|mutation|genetic mutation|chromosomal mutation +(noun)|atavism|throwback|recurrence|return +(noun)|reverse|reversal|turnabout|turnaround|change of direction|reorientation +(noun)|regression|regress|retrogression|retroversion|reversal +(noun)|backsliding|lapse|lapsing|relapse|relapsing|reverting|failure +reversionary|1 +(adj)|interest|stake +reversionary annuity|1 +(noun)|survivorship annuity|annuity|rente +reversioner|1 +(noun)|party +reversionist|1 +(noun)|recidivist|backslider|wrongdoer|offender +reversive|1 +(adj)|returning|backward +revert|2 +(verb)|return|retrovert|regress|turn back|change by reversal|turn|reverse +(verb)|mutate +revertible|1 +(adj)|returnable +reverting|2 +(adj)|returning|regressive +(noun)|backsliding|lapse|lapsing|relapse|relapsing|reversion|failure +revery|2 +(noun)|reverie|abstractedness|abstraction +(noun)|reverie|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream|dreaming +revet|2 +(verb)|construct|build|make +(verb)|face +revetement|1 +(noun)|revetment|stone facing|facing|cladding +revetment|2 +(noun)|barrier +(noun)|revetement|stone facing|facing|cladding +review|15 +(noun)|reappraisal|revaluation|reassessment|appraisal|assessment +(noun)|critique|critical review|review article|criticism|literary criticism +(noun)|follow-up|followup|reexamination|examination|scrutiny +(noun)|limited review|accounting|accounting system|method of accounting +(noun)|revue|variety show|variety +(noun)|periodical +(noun)|recapitulation|recap|capitulation +(noun)|proceeding|legal proceeding|proceedings +(noun)|brushup|exercise|practice|drill|practice session|recitation +(noun)|inspection|examination|scrutiny +(verb)|reexamine|analyze|analyse|study|examine|canvass|canvas +(verb)|critique|judge +(verb)|go over|survey|inspect +(verb)|brush up|refresh|remember|retrieve|recall|call back|call up|recollect|think +(verb)|look back|retrospect|remember|think back +review article|1 +(noun)|review|critique|critical review|criticism|literary criticism +review copy|1 +(noun)|book +reviewer|2 +(noun)|referee|reader|critic +(noun)|commentator|writer|author +reviewing stand|1 +(noun)|stand|stands +revile|1 +(verb)|vilify|vituperate|rail|abuse|clapperclaw|blackguard|shout +reviled|1 +(adj)|maligned|abused +revilement|1 +(noun)|abuse|insult|contumely|vilification|disrespect|discourtesy +revisal|1 +(noun)|revision|revise|rescript|rewriting|revising +revise|3 +(noun)|revision|revisal|rescript|rewriting|revising +(verb)|rewrite +(verb)|retool|reorganize|reorganise|shake up +revised|2 +(adj)|altered +(adj)|amended +revised standard version|1 +(noun)|Revised Standard Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +revised version|1 +(noun)|Revised Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +reviser|1 +(noun)|redact|redactor|rewriter|rewrite man|editor|editor in chief +revising|1 +(noun)|rewriting|editing|redaction +revision|3 +(noun)|alteration|transformation|translation +(noun)|revisal|revise|rescript|rewriting|revising +(noun)|rewrite|rescript|writing|written material|piece of writing +revisionism|2 +(noun)|Bolshevism|collectivism|sovietism +(noun)|Bolshevism|collectivism|sovietism +revisionist|1 +(noun)|communist|commie +revisit|1 +(verb)|return|go back|get back|come back +revitalisation|1 +(noun)|revival|resurgence|revitalization|revivification|improvement|betterment|advance +revitalise|1 +(verb)|revitalize|regenerate|renew +revitalised|1 +(adj)|revitalized|revived +revitalising|1 +(adj)|renewing|restorative|reviving|revitalizing|invigorating +revitalization|1 +(noun)|revival|resurgence|revitalisation|revivification|improvement|betterment|advance +revitalize|2 +(verb)|regenerate|better|improve|amend|ameliorate|meliorate +(verb)|revitalise|regenerate|renew +revitalized|1 +(adj)|revitalised|revived +revitalizing|1 +(adj)|renewing|restorative|reviving|revitalising|invigorating +revival|2 +(noun)|resurgence|revitalization|revitalisation|revivification|improvement|betterment|advance +(noun)|revival meeting|rally|mass meeting +revival meeting|1 +(noun)|revival|rally|mass meeting +revivalism|1 +(noun)|evangelicalism +revivalist|1 +(noun)|evangelist|gospeler|gospeller|preacher|preacher man|sermonizer|sermoniser +revivalistic|1 +(adj)|evangelicalism +revive|5 +(verb)|resuscitate|bring to|bring back|bring round|bring around +(verb)|animate|recreate|reanimate|renovate|repair|quicken|vivify|revivify|stimulate|arouse|brace|energize|energise|perk up +(verb)|boom|prosper|thrive|get ahead|flourish|expand +(verb)|resurrect|regenerate|restore|rejuvenate +(verb)|come to|resuscitate|change state|turn +revived|2 +(adj)|revived |redux|renewed|resurgent|resuscitated|revitalized|revitalised +(adj)|reanimated|animated |alive +revivification|1 +(noun)|revival|resurgence|revitalization|revitalisation|improvement|betterment|advance +revivify|1 +(verb)|animate|recreate|reanimate|revive|renovate|repair|quicken|vivify|stimulate|arouse|brace|energize|energise|perk up +reviving|1 +(adj)|renewing|restorative|revitalizing|revitalising|invigorating +revocable|1 +(adj)|revocable |revokable|rescindable|voidable|reversible +revocation|2 +(noun)|annulment|state +(noun)|abrogation|repeal|annulment +revokable|1 +(adj)|revocable |rescindable|voidable|reversible +revoke|3 +(noun)|renege|mistake|error|fault +(verb)|play +(verb)|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate|cancel|strike down +revolt|4 +(noun)|rebellion|insurrection|rising|uprising|conflict|struggle|battle +(verb)|rebel|arise|rise|rise up +(verb)|disgust|gross out|repel|stimulate|excite|stir +(verb)|disgust|nauseate|sicken|churn up|repel|repulse +revolting|1 +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|skanky|wicked|yucky|offensive +revoltingly|1 +(adv)|disgustingly|distastefully|sickeningly +revolution|3 +(noun)|change|alteration|modification +(noun)|group action +(noun)|rotation|gyration|turning|turn +revolutionary|4 +(adj)|radical|new +(adj)|group action +(adj)|revolutionary +(noun)|revolutionist|subversive|subverter|radical +revolutionary armed forces of colombia|1 +(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary calendar|1 +(noun)|Revolutionary calendar|solar calendar +revolutionary calendar month|1 +(noun)|Revolutionary calendar month|calendar month|month +revolutionary group|1 +(noun)|political unit +revolutionary justice organization|1 +(noun)|Hizballah|Hezbollah|Hizbollah|Hizbullah|Lebanese Hizballah|Party of God|Islamic Jihad|Islamic Jihad for the Liberation of Palestine|Revolutionary Justice Organization|Organization of the Oppressed on Earth|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary organization 17 november|1 +(noun)|Revolutionary Organization 17 November|17 November|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary organization of socialist muslims|1 +(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary people's liberation front|1 +(noun)|Revolutionary People's Liberation Party|Revolutionary People's Liberation Front|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary people's liberation party|1 +(noun)|Revolutionary People's Liberation Party|Revolutionary People's Liberation Front|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary people's struggle|1 +(noun)|Revolutionary People's Struggle|ELA|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary proletarian army|1 +(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary proletarian initiative nuclei|1 +(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary proletarian nucleus|1 +(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionary united front|1 +(noun)|Revolutionary United Front|RUF|terrorist organization|terrorist group|foreign terrorist organization|FTO +revolutionise|2 +(verb)|revolutionize|inspire|indoctrinate +(verb)|revolutionize|overturn|change|alter|modify +revolutionist|1 +(noun)|revolutionary|subversive|subverter|radical +revolutionize|3 +(verb)|revolutionise|overturn|change|alter|modify +(verb)|overthrow|subvert|overturn|bring down +(verb)|revolutionise|inspire|indoctrinate +revolutions per minute|1 +(noun)|rpm|rev|rate +revolve|3 +(verb)|go around|rotate|turn|revolve around +(verb)|orbit|circle|circulate +(verb)|roll|move|displace +revolve about|1 +(verb)|focus on|center on|revolve around|concentrate on|center|refer|pertain|relate|concern|come to|bear on|touch|touch on +revolve around|2 +(verb)|focus on|center on|revolve about|concentrate on|center|refer|pertain|relate|concern|come to|bear on|touch|touch on +(verb)|circle around|circle round|circle +revolved|1 +(adj)|rotated|turned +revolver|2 +(noun)|six-gun|six-shooter|pistol|handgun|side arm|shooting iron +(noun)|revolving door|door +revolving charge account|1 +(noun)|credit account|charge account|open account +revolving credit|1 +(noun)|open-end credit|charge account credit|consumer credit +revolving door|2 +(noun)|social group +(noun)|revolver|door +revolving fund|1 +(noun)|fund|monetary fund +revue|1 +(noun)|review|variety show|variety +revulsion|1 +(noun)|repugnance|repulsion|horror|disgust +rewa-rewa|1 +(noun)|New Zealand honeysuckle|angiospermous tree|flowering tree +reward|8 +(noun)|wages|payoff|consequence|aftermath +(noun)|payment +(noun)|reinforcement|blessing|approval|approving +(noun)|offer|offering +(noun)|advantage|benefit|welfare +(verb)|honor|honour|recognize|recognise +(verb)|reinforce|teach|learn|instruct +(verb)|repay|pay back|act|move +rewardable|1 +(adj)|rewarding +rewardful|1 +(adj)|rewarding +rewarding|1 +(adj)|rewarding |appreciated|gratifying|pleasing|satisfying|bountied|profitable|rewardful|rewardable +rewire|1 +(verb)|wire +reword|1 +(verb)|paraphrase|rephrase|repeat|reiterate|ingeminate|iterate|restate|retell +rewording|1 +(noun)|recasting|rephrasing|rewriting|revising +rework|1 +(verb)|make over|retread|work|work on|process +rewrite|3 +(noun)|revision|rescript|writing|written material|piece of writing +(verb)|write +(verb)|write|compose|pen|indite +rewrite man|1 +(noun)|redact|redactor|reviser|rewriter|editor|editor in chief +rewriter|1 +(noun)|redact|redactor|reviser|rewrite man|editor|editor in chief +rewriting|1 +(noun)|revising|editing|redaction +rex begonia|1 +(noun)|king begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia +rex harrison|1 +(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor|histrion|player|thespian|role player +reye's syndrome|1 +(noun)|Reye's syndrome|syndrome +reyes|1 +(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet +reykjavik|1 +(noun)|Reykjavik|capital of Iceland|national capital|port +reynard|1 +(noun)|Reynard|fox +reynolds|1 +(noun)|Reynolds|Sir Joshua Reynolds|painter +rf|3 +(noun)|releasing factor|releasing hormone|RF|factor +(noun)|rutherfordium|Rf|kurchatovium|Ku|unnilquadium|Unq|element 104|atomic number 104|chemical element|element +(noun)|reticular formation|RF|neural network|neural net +rh|3 +(noun)|rhesus factor|Rh factor|Rh|antigen +(noun)|rhodium|Rh|atomic number 45|metallic element|metal +(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing hormone|hypothalamic releasing factor|hormone|endocrine|internal secretion +rh-negative|1 +(adj)|rh-negative +rh-negative blood|1 +(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group|blood type +rh-negative blood type|1 +(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group|blood type +rh-positive|1 +(adj)|rh-positive +rh-positive blood type|1 +(noun)|Rh-positive blood type|Rh positive|blood group|blood type +rh antibody|1 +(noun)|Rh antibody|antibody +rh factor|1 +(noun)|rhesus factor|Rh factor|Rh|antigen +rh incompatibility|1 +(noun)|Rh incompatibility|incompatibility +rh negative|1 +(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group|blood type +rh positive|1 +(noun)|Rh-positive blood type|Rh positive|blood group|blood type +rhabdomancer|1 +(noun)|water witch|dowser|diviner +rhabdomancy|1 +(noun)|dowse|dowsing|divination|foretelling|soothsaying|fortune telling +rhabdomyoma|1 +(noun)|myoma +rhabdomyosarcoma|1 +(noun)|rhabdosarcoma|sarcoma +rhabdosarcoma|1 +(noun)|rhabdomyosarcoma|sarcoma +rhabdoviridae|1 +(noun)|Rhabdoviridae|arbovirus|arborvirus +rhabdovirus|1 +(noun)|animal virus +rhadamnathus|1 +(noun)|Rhadamnathus|Greek deity +rhaeto-romance|1 +(noun)|Rhaeto-Romance|Rhaeto-Romanic|Romance|Romance language|Latinian language +rhaeto-romanic|1 +(noun)|Rhaeto-Romance|Rhaeto-Romanic|Romance|Romance language|Latinian language +rhagades|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +rhagoletis|1 +(noun)|Rhagoletis|genus Rhagoletis|arthropod genus +rhagoletis pomonella|1 +(noun)|apple maggot|railroad worm|Rhagoletis pomonella|fruit fly|pomace fly +rhamnaceae|1 +(noun)|Rhamnaceae|family Rhamnaceae|buckthorn family|dicot family|magnoliopsid family +rhamnales|1 +(noun)|Rhamnales|order Rhamnales|plant order +rhamnus|1 +(noun)|Rhamnus|genus Rhamnus|dicot genus|magnoliopsid genus +rhamnus californicus|1 +(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn +rhamnus carolinianus|1 +(noun)|Carolina buckthorn|indian cherry|Rhamnus carolinianus|buckthorn +rhamnus croceus|1 +(noun)|redberry|red-berry|Rhamnus croceus|buckthorn +rhamnus frangula|1 +(noun)|alder buckthorn|alder dogwood|Rhamnus frangula|buckthorn +rhamnus purshianus|1 +(noun)|cascara buckthorn|bearberry|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn +rhaphe|1 +(noun)|raphe|ridge +rhapis|1 +(noun)|Rhapis|genus Rhapis|monocot genus|liliopsid genus +rhapis excelsa|1 +(noun)|miniature fan palm|bamboo palm|fern rhapis|Rhapis excelsa|lady palm +rhapis humilis|1 +(noun)|reed rhapis|slender lady palm|Rhapis humilis|lady palm +rhapsodic|1 +(adj)|ecstatic|enraptured|rapturous|joyous +rhapsodically|1 +(adv)|ecstatically|rapturously +rhapsodise|2 +(verb)|rhapsodize|tell|narrate|recount|recite +(verb)|rhapsodize|enthuse +rhapsodize|2 +(verb)|rhapsodise|tell|narrate|recount|recite +(verb)|rhapsodise|enthuse +rhapsody|1 +(noun)|epic poem|heroic poem|epic|epos +rhd|1 +(noun)|Red Hand Defenders|RHD|terrorist organization|terrorist group|foreign terrorist organization|FTO +rhea|3 +(noun)|Rhea|Titaness +(noun)|nandu|Pterocnemia pennata|ratite|ratite bird|flightless bird +(noun)|Rhea americana|ratite|ratite bird|flightless bird +rhea americana|1 +(noun)|rhea|Rhea americana|ratite|ratite bird|flightless bird +rhea silvia|1 +(noun)|Rhea Silvia|Rea Silvia|vestal virgin +rheidae|1 +(noun)|Rheidae|family Rheidae|bird family +rheiformes|1 +(noun)|Rheiformes|order Rheiformes|animal order +rheims|1 +(noun)|Rheims|Reims|city|metropolis|urban center +rheims-douay bible|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +rheims-douay version|1 +(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +rhein|1 +(noun)|Rhine|Rhine River|Rhein|river +rheinland|1 +(noun)|Rhineland|Rheinland|geographical area|geographic area|geographical region|geographic region +rhenish|2 +(adj)|Rhenish|river +(noun)|Rhine wine|Rhenish|hock|white wine +rhenium|1 +(noun)|Re|atomic number 75|metallic element|metal +rheologic|1 +(adj)|rheological|physics|physical science|natural philosophy +rheological|1 +(adj)|rheologic|physics|physical science|natural philosophy +rheology|1 +(noun)|physics|physical science|natural philosophy +rheostat|1 +(noun)|variable resistor|resistor|resistance +rhesus|1 +(noun)|rhesus monkey|Macaca mulatta|macaque +rhesus factor|1 +(noun)|Rh factor|Rh|antigen +rhesus monkey|1 +(noun)|rhesus|Macaca mulatta|macaque +rhetoric|4 +(noun)|expressive style|style +(noun)|grandiosity|magniloquence|grandiloquence|expressive style|style +(noun)|palaver|hot air|empty words|empty talk|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|literary study +rhetorical|2 +(adj)|expressive style|style +(adj)|rhetorical |anapestic|anapaestic|bombastic|declamatory|large|orotund|tumid|turgid|flowery|ornate|forensic|grandiloquent|magniloquent|tall|oratorical|stylistic|embellished|empurpled|over-embellished|purple|poetic|poetical|fancy|figurative|nonliteral|formal +rhetorical device|1 +(noun)|device +rhetorical question|1 +(noun)|statement +rhetorician|1 +(noun)|orator|speechmaker|public speaker|speechifier|speaker|talker|utterer|verbalizer|verbaliser +rheum|2 +(noun)|discharge|emission +(noun)|Rheum|genus Rheum|dicot genus|magnoliopsid genus +rheum australe|1 +(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb|rhubarb plant +rheum cultorum|1 +(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb|rhubarb plant +rheum emodi|1 +(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb|rhubarb plant +rheum palmatum|1 +(noun)|Chinese rhubarb|Rheum palmatum|rhubarb|rhubarb plant +rheum rhabarbarum|1 +(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb|rhubarb plant +rheum rhaponticum|1 +(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb|rhubarb plant +rheumatic|2 +(adj)|arthritic|creaky|rheumatoid|rheumy|unhealthy +(noun)|sick person|diseased person|sufferer +rheumatic aortitis|1 +(noun)|aortitis +rheumatic fever|1 +(noun)|infectious disease +rheumatic heart disease|1 +(noun)|heart disease|heart condition|cardiopathy +rheumatism|2 +(noun)|disease +(noun)|rheumatoid arthritis|atrophic arthritis|arthritis|autoimmune disease|autoimmune disorder +rheumatism weed|2 +(noun)|Indian hemp|Apocynum cannabinum|dogbane +(noun)|common dogbane|spreading dogbane|Apocynum androsaemifolium|dogbane +rheumatoid|1 +(adj)|arthritic|creaky|rheumatic|rheumy|unhealthy +rheumatoid arthritis|1 +(noun)|atrophic arthritis|rheumatism|arthritis|autoimmune disease|autoimmune disorder +rheumatoid factor|1 +(noun)|autoantibody +rheumatoid spondylitis|1 +(noun)|ankylosing spondylitis|Marie-Strumpell disease|spondylitis|autoimmune disease|autoimmune disorder +rheumatologist|1 +(noun)|specialist|medical specialist +rheumatology|1 +(noun)|medicine|medical specialty +rheumy|2 +(adj)|wet +(adj)|arthritic|creaky|rheumatic|rheumatoid|unhealthy +rhexia|1 +(noun)|Rhexia|genus Rhexia|rosid dicot genus +rhibhus|1 +(noun)|Ribhus|Rhibhus|Hindu deity +rhinal|1 +(adj)|nasal|chemoreceptor +rhincodon|1 +(noun)|Rhincodon|genus Rhincodon|fish genus +rhincodon typus|1 +(noun)|whale shark|Rhincodon typus|shark +rhincodontidae|1 +(noun)|Rhincodontidae|family Rhincodontidae|fish family +rhine|2 +(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist +(noun)|Rhine|Rhine River|Rhein|river +rhine river|1 +(noun)|Rhine|Rhine River|Rhein|river +rhine wine|1 +(noun)|Rhine wine|Rhenish|hock|white wine +rhineland|1 +(noun)|Rhineland|Rheinland|geographical area|geographic area|geographical region|geographic region +rhinencephalon|1 +(noun)|olfactory brain|center|centre|nerve center|nerve centre +rhinestone|1 +(noun)|rock crystal|transparent quartz +rhinion|1 +(noun)|craniometric point +rhinitis|1 +(noun)|coryza|inflammation|redness|rubor +rhino|1 +(noun)|rhinoceros|odd-toed ungulate|perissodactyl|perissodactyl mammal +rhinobatidae|1 +(noun)|Rhinobatidae|family Rhinobatidae|fish family +rhinoceros|1 +(noun)|rhino|odd-toed ungulate|perissodactyl|perissodactyl mammal +rhinoceros antiquitatis|1 +(noun)|woolly rhinoceros|Rhinoceros antiquitatis|rhinoceros|rhino +rhinoceros beetle|1 +(noun)|scarabaeid beetle|scarabaeid|scarabaean +rhinoceros family|1 +(noun)|Rhinocerotidae|family Rhinocerotidae|mammal family +rhinoceros unicornis|1 +(noun)|Indian rhinoceros|Rhinoceros unicornis|rhinoceros|rhino +rhinocerotidae|1 +(noun)|Rhinocerotidae|family Rhinocerotidae|rhinoceros family|mammal family +rhinolaryngologist|1 +(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|otorhinolaryngologist|specialist|medical specialist +rhinolophidae|1 +(noun)|Rhinolophidae|family Rhinolophidae|mammal family +rhinonicteris|1 +(noun)|Rhinonicteris|genus Rhinonicteris|mammal genus +rhinonicteris aurantius|1 +(noun)|orange bat|orange horseshoe bat|Rhinonicteris aurantius|leafnose bat|leaf-nosed bat +rhinopathy|1 +(noun)|pathology +rhinophyma|1 +(noun)|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy +rhinoplasty|1 +(noun)|nose job|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck +rhinoptera|1 +(noun)|Rhinoptera|genus Rhinoptera|fish genus +rhinoptera bonasus|1 +(noun)|cownose ray|cow-nosed ray|Rhinoptera bonasus|eagle ray +rhinorrhea|1 +(noun)|symptom +rhinoscope|1 +(noun)|medical instrument +rhinoscopy|1 +(noun)|examination|scrutiny +rhinosporidiosis|1 +(noun)|fungal infection|mycosis|rhinopathy +rhinostenosis|1 +(noun)|stenosis|stricture|rhinopathy +rhinotermitidae|1 +(noun)|Rhinotermitidae|family Rhinotermitidae|arthropod family +rhinotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +rhinotracheitis|1 +(noun)|animal disease +rhinovirus|1 +(noun)|picornavirus +rhipsalis|1 +(noun)|Rhipsalis|genus Rhipsalis|caryophylloid dicot genus +rhiptoglossa|1 +(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family +rhizobiaceae|1 +(noun)|Rhizobiaceae|family Rhizobiaceae|bacteria family +rhizobium|1 +(noun)|Rhizobium|genus Rhizobium|bacteria genus +rhizoctinia|1 +(noun)|fungus +rhizoctinia disease|1 +(noun)|plant disease +rhizoctinia solani|1 +(noun)|potato fungus|Pellicularia filamentosa|Rhizoctinia solani|fungus +rhizoid|1 +(noun)|fibril|filament|strand +rhizoidal|1 +(adj)|fibril|filament|strand +rhizomatous|1 +(adj)|stalk|stem +rhizomatous begonia|1 +(noun)|begonia +rhizome|1 +(noun)|rootstock|rootstalk|stalk|stem +rhizomorph|1 +(noun)|hypha +rhizophora|1 +(noun)|Rhizophora|genus Rhizophora|dicot genus|magnoliopsid genus +rhizophora mangle|1 +(noun)|mangrove|Rhizophora mangle|angiospermous tree|flowering tree +rhizophoraceae|1 +(noun)|Rhizophoraceae|family Rhizophoraceae|mangrove family|dicot family|magnoliopsid family +rhizopod|1 +(noun)|rhizopodan|protozoan|protozoon +rhizopoda|1 +(noun)|Rhizopoda|subclass Rhizopoda|class +rhizopodan|1 +(noun)|rhizopod|protozoan|protozoon +rhizopogon|1 +(noun)|Rhizopogon|genus Rhizopogon|fungus genus +rhizopogon idahoensis|1 +(noun)|Rhizopogon idahoensis|false truffle +rhizopogonaceae|1 +(noun)|Rhizopogonaceae|family Rhizopogonaceae|fungus family +rhizopus|1 +(noun)|mold|mould +rhizopus nigricans|1 +(noun)|bread mold|Rhizopus nigricans|rhizopus +rhizopus stolonifer|1 +(noun)|leak fungus|ring rot fungus|Rhizopus stolonifer|rhizoid +rhizotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +rho|1 +(noun)|letter|letter of the alphabet|alphabetic character +rhodanthe|1 +(noun)|Swan River everlasting|Rhodanthe manglesii|Helipterum manglesii|everlasting|everlasting flower +rhodanthe manglesii|1 +(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting|everlasting flower +rhode island|2 +(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state +(noun)|Rhode Island|Colony +rhode island bent|1 +(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent|bent grass|bent-grass +rhode island red|1 +(noun)|Rhode Island red|chicken|Gallus gallus +rhode islander|1 +(noun)|Rhode Islander|American +rhodes|2 +(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier|moneyman|colonizer|coloniser +(noun)|Rhodes|Rodhos|Aegean island +rhodes grass|1 +(noun)|Rhodes grass|Chloris gayana|finger grass +rhodes scholar|1 +(noun)|Rhodes scholar|scholar +rhodesia|1 +(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country|African nation +rhodesian|1 +(adj)|Rhodesian|African country|African nation +rhodesian man|1 +(noun)|Rhodesian man|Homo rhodesiensis|homo|man|human being|human +rhodesian ridgeback|1 +(noun)|Rhodesian ridgeback|hunting dog +rhodium|1 +(noun)|Rh|atomic number 45|metallic element|metal +rhodochrosite|1 +(noun)|mineral +rhododendron|1 +(noun)|shrub|bush +rhododendron californicum|1 +(noun)|coast rhododendron|Rhododendron californicum|rhododendron +rhododendron maxima|1 +(noun)|rosebay|Rhododendron maxima|rhododendron +rhododendron viscosum|1 +(noun)|swamp azalea|swamp honeysuckle|white honeysuckle|Rhododendron viscosum|rhododendron +rhodolite|1 +(noun)|garnet +rhodomontade|1 +(noun)|braggadocio|bluster|rodomontade|boast|boasting|self-praise|jactitation +rhodonite|1 +(noun)|mineral +rhodope mountains|1 +(noun)|Rhodope Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +rhodophyceae|1 +(noun)|Rhodophyceae|class Rhodophyceae|class +rhodophyta|1 +(noun)|Rhodophyta|division Rhodophyta|division +rhodopsin|1 +(noun)|visual purple|retinal purple|photopigment +rhodosphaera|1 +(noun)|Rhodosphaera|genus Rhodosphaera|dicot genus|magnoliopsid genus +rhodosphaera rhodanthema|1 +(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood +rhodymenia|1 +(noun)|Rhodymenia|genus Rhodymenia|protoctist genus +rhodymenia palmata|1 +(noun)|dulse|Rhodymenia palmata|red algae +rhodymeniaceae|1 +(noun)|Rhodymeniaceae|family Rhodymeniaceae|protoctist family +rhoeadales|1 +(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order +rhomb|1 +(noun)|rhombus|parallelogram +rhombencephalon|1 +(noun)|hindbrain|neural structure +rhombic|1 +(adj)|parallelogram +rhombohedral|1 +(adj)|trigonal|symmetrical |symmetric +rhombohedron|1 +(noun)|parallelepiped|parallelopiped|parallelepipedon|parallelopipedon|hexahedron +rhomboid|3 +(adj)|rhomboidal|parallelogram +(noun)|parallelogram +(noun)|rhomboid muscle|skeletal muscle|striated muscle +rhomboid minor muscle|1 +(noun)|lesser rhomboid muscle|musculus rhomboideus minor|rhomboid|rhomboid muscle +rhomboid muscle|1 +(noun)|rhomboid|skeletal muscle|striated muscle +rhomboidal|1 +(adj)|rhomboid|parallelogram +rhomboideus major muscle|1 +(noun)|greater rhomboid muscle|musculus rhomboideus major|rhomboid|rhomboid muscle +rhombus|1 +(noun)|rhomb|parallelogram +rhonchus|1 +(noun)|noise +rhone|1 +(noun)|Rhone|Rhone River|river +rhone-alpes|1 +(noun)|Rhone-Alpes|French region +rhone river|1 +(noun)|Rhone|Rhone River|river +rhone wine|1 +(noun)|Rhone wine|wine|vino +rhubarb|2 +(noun)|pieplant|vegetable|veggie +(noun)|rhubarb plant|herb|herbaceous plant +rhubarb pie|1 +(noun)|pie +rhubarb plant|1 +(noun)|rhubarb|herb|herbaceous plant +rhumb|1 +(noun)|rhumb line|loxodrome|line +rhumb line|1 +(noun)|rhumb|loxodrome|line +rhumba|2 +(noun)|rumba|dance music|danceroom music|ballroom music +(verb)|dance|trip the light fantastic|trip the light fantastic toe +rhus|1 +(noun)|Rhus|genus Rhus|dicot genus|magnoliopsid genus +rhus aromatica|1 +(noun)|fragrant sumac|lemon sumac|Rhus aromatica|sumac|sumach|shumac +rhus copallina|1 +(noun)|dwarf sumac|mountain sumac|black sumac|shining sumac|Rhus copallina|sumac|sumach|shumac +rhus dermatitis|1 +(noun)|Rhus dermatitis|contact dermatitis +rhus diversiloba|1 +(noun)|western poison oak|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant +rhus glabra|1 +(noun)|smooth sumac|scarlet sumac|vinegar tree|Rhus glabra|sumac|sumach|shumac +rhus laurina|1 +(noun)|laurel sumac|Malosma laurina|Rhus laurina|shrub|bush +rhus ovata|1 +(noun)|sugar-bush|sugar sumac|Rhus ovata|sumac|sumach|shumac +rhus quercifolia|1 +(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant +rhus radicans|1 +(noun)|poison ivy|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant +rhus rhodanthema|1 +(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood +rhus toxicodenedron|1 +(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant +rhus trilobata|1 +(noun)|squawbush|squaw-bush|skunkbush|Rhus trilobata|sumac|sumach|shumac +rhus typhina|1 +(noun)|staghorn sumac|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac|sumach|shumac +rhus verniciflua|1 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +rhus vernix|1 +(noun)|poison ash|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant +rhyacotriton|1 +(noun)|Rhyacotriton|genus Rhyacotriton|amphibian genus +rhyacotriton olympicus|1 +(noun)|olympic salamander|Rhyacotriton olympicus|salamander +rhyme|4 +(noun)|rime|versification +(noun)|verse|poem|verse form +(verb)|rime|create verbally +(verb)|rime|match|fit|correspond|check|jibe|gibe|tally|agree +rhyme royal|1 +(noun)|stanza +rhymed|1 +(adj)|rhymed |rhyming|riming|alliterative|assonant|end-rhymed +rhymeless|1 +(adj)|unrhymed |unrimed|rimeless +rhymer|1 +(noun)|rhymester|versifier|poetizer|poetiser|writer|author +rhymester|1 +(noun)|rhymer|versifier|poetizer|poetiser|writer|author +rhyming|1 +(adj)|rhymed |riming|alliterative|assonant|end-rhymed +rhyming slang|1 +(noun)|cant|jargon|slang|lingo|argot|patois|vernacular +rhynchocephalia|1 +(noun)|Rhynchocephalia|order Rhynchocephalia|animal order +rhynchoelaps|1 +(noun)|Rhynchoelaps|genus Rhynchoelaps|reptile genus +rhynchoelaps australis|1 +(noun)|Australian coral snake|Rhynchoelaps australis|coral snake|Old World coral snake +rhyncostylis|1 +(noun)|Rhyncostylis|genus Rhyncostylis|monocot genus|liliopsid genus +rhynia|1 +(noun)|Rhynia|genus Rhynia|fern genus +rhyniaceae|1 +(noun)|Rhyniaceae|family Rhyniaceae|fern family +rhyolite|1 +(noun)|igneous rock +rhythm|5 +(noun)|beat|musical rhythm|musical time +(noun)|regular recurrence|cyclicity|periodicity +(noun)|cycle|round|time interval|interval +(noun)|speech rhythm|prosody|inflection|template|templet|guide +(noun)|rhythm method of birth control|rhythm method|calendar method of birth control|calendar method|natural family planning +rhythm and blues|1 +(noun)|R and B|popular music|popular music genre|black music|African-American music +rhythm and blues musician|1 +(noun)|musician|instrumentalist|player +rhythm method|1 +(noun)|rhythm method of birth control|rhythm|calendar method of birth control|calendar method|natural family planning +rhythm method of birth control|1 +(noun)|rhythm method|rhythm|calendar method of birth control|calendar method|natural family planning +rhythm section|1 +(noun)|percussion section|percussion|section +rhythmic|1 +(adj)|rhythmical |beating|pulsating|pulsing|cadenced|cadent|danceable|jazzy|lilting|swinging|swingy|tripping|measured|metrical|metric|periodic|sapphic|chantlike|intoned|singsong|syncopated|throbbing|regular +rhythmic pattern|1 +(noun)|poetic rhythm|prosody|versification +rhythmical|1 +(adj)|rhythmical |rhythmic|beating|pulsating|pulsing|cadenced|cadent|danceable|jazzy|lilting|swinging|swingy|tripping|measured|metrical|metric|periodic|sapphic|chantlike|intoned|singsong|syncopated|throbbing|regular +rhythmicity|1 +(noun)|sound property +rhytidectomy|1 +(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidoplasty|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +rhytidoplasty|1 +(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|nip and tuck|plastic surgery|reconstructive surgery|anaplasty +ri|1 +(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state +rial|3 +(noun)|Yemeni rial|Yemeni monetary unit +(noun)|riyal-omani|Omani rial|Omani monetary unit +(noun)|Iranian rial|Iranian monetary unit +riant|1 +(adj)|laughing|happy +riata|1 +(noun)|lasso|lariat|reata|rope +rib|8 +(noun)|support +(noun)|costa|bone|os +(noun)|cut|cut of meat +(noun)|remark|comment +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|molding|moulding +(verb)|knit +(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|make fun|poke fun|mock|bemock +rib cage|1 +(noun)|skeletal structure +rib joint pliers|1 +(noun)|pliers|pair of pliers|plyers +rib roast|1 +(noun)|standing rib roast|roast|joint +ribald|2 +(adj)|bawdy|off-color|dirty +(noun)|vulgarian +ribaldry|2 +(noun)|wit|humor|humour|witticism|wittiness +(noun)|gaminess|raciness|spiciness|indelicacy +riband|1 +(noun)|ribband|ribbon +ribavirin|1 +(noun)|Virazole|antiviral|antiviral agent|antiviral drug +ribband|1 +(noun)|riband|ribbon +ribbed|2 +(adj)|ribbed |costate|riblike +(adj)|costate|rough |unsmooth +ribbed toad|1 +(noun)|tailed frog|bell toad|tailed toad|Ascaphus trui|frog|toad|toad frog|anuran|batrachian|salientian +ribbed vault|1 +(noun)|vault +ribbing|2 +(noun)|framework|frame|framing +(noun)|tease|teasing|harassment|molestation +ribbon|4 +(noun)|thread|object|physical object +(noun)|decoration|laurel wreath|medal|medallion|palm|award|accolade|honor|honour|laurels +(noun)|typewriter ribbon|strip|slip +(noun)|notion +ribbon-leaved water plantain|1 +(noun)|water plantain|Alisma plantago-aquatica +ribbon development|1 +(noun)|building complex|complex +ribbon fern|3 +(noun)|spider fern|Pteris serrulata|fern +(noun)|grass fern|Vittaria lineata|fern +(noun)|Ophioglossum pendulum|adder's tongue|adder's tongue fern +ribbon grass|1 +(noun)|reed canary grass|gardener's garters|lady's laces|Phalaris arundinacea|grass +ribbon snake|1 +(noun)|Thamnophis sauritus|garter snake|grass snake +ribbon tree|1 +(noun)|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree +ribbon worm|1 +(noun)|nemertean|nemertine|proboscis worm|worm +ribbonfish|2 +(noun)|oarfish|king of the herring|Regalecus glesne|soft-finned fish|malacopterygian +(noun)|soft-finned fish|malacopterygian +ribbonlike|1 +(adj)|ribbony|thin +ribbonwood|2 +(noun)|ribbon tree|Plagianthus regius|Plagianthus betulinus|tree +(noun)|lacebark|houhere|Hoheria populnea|tree +ribbony|1 +(adj)|ribbonlike|thin +ribes|1 +(noun)|Ribes|genus Ribes|plant genus +ribes grossularia|1 +(noun)|gooseberry|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub|bush +ribes nigrum|1 +(noun)|black currant|European black currant|Ribes nigrum|currant|currant bush +ribes rubrum|1 +(noun)|red currant|garden current|Ribes rubrum|currant|currant bush +ribes sanguineum|1 +(noun)|winter currant|Ribes sanguineum|currant|currant bush +ribes sativum|1 +(noun)|white currant|Ribes sativum|currant|currant bush +ribes uva-crispa|1 +(noun)|gooseberry|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub|bush +ribgrass|1 +(noun)|English plantain|narrow-leaved plantain|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain +ribhus|1 +(noun)|Ribhus|Rhibhus|Hindu deity +ribier|1 +(noun)|vinifera grape +ribless|1 +(adj)|ribless +riblike|1 +(adj)|ribbed +riboflavin|1 +(noun)|vitamin B2|vitamin G|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +ribonuclease|1 +(noun)|ribonucleinase|RNase|transferase +ribonucleic acid|1 +(noun)|RNA|polymer +ribonucleinase|1 +(noun)|ribonuclease|RNase|transferase +ribose|1 +(noun)|carbohydrate|saccharide|sugar +ribosome|1 +(noun)|organelle|cell organ +ribwort|1 +(noun)|English plantain|narrow-leaved plantain|ribgrass|ripple-grass|buckthorn|Plantago lanceolata|plantain +ricardo|1 +(noun)|Ricardo|David Ricardo|economist|economic expert +rice|5 +(noun)|grain|food grain|cereal +(noun)|cereal|cereal grass +(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist +(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist|playwright +(verb)|sift|sieve|strain +rice-grain fritillary|1 +(noun)|mission bells|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary|checkered lily +rice beer|1 +(noun)|sake|saki|alcohol|alcoholic beverage|intoxicant|inebriant +rice grass|2 +(noun)|ricegrass|cereal|cereal grass +(noun)| +rice paddy|1 +(noun)|paddy|paddy field|field +rice paper|1 +(noun)|paper +rice rat|1 +(noun)|Oryzomys palustris|rat +rice weevil|1 +(noun)|black weevil|Sitophylus oryzae|weevil +ricebird|2 +(noun)|bobolink|reedbird|Dolichonyx oryzivorus|New World oriole|American oriole|oriole +(noun)|Java sparrow|Java finch|Padda oryzivora|weaver|weaverbird|weaver finch +ricegrass|1 +(noun)|rice grass|cereal|cereal grass +ricer|1 +(noun)|kitchen utensil +rich|12 +(adj)|rich |affluent|flush|loaded|moneyed|wealthy|comfortable|easy|prosperous|well-fixed|well-heeled|well-off|well-situated|well-to-do|abundant|privileged +(adj)|rich +(adj)|valuable +(adj)|fat|fertile|productive|fruitful +(adj)|deep|colorful |colourful +(adj)|productive +(adj)|rich +(adj)|rich |deluxe|gilded|luxurious|opulent|princely|sumptuous|lavish|lucullan|lush|plush|plushy +(adj)|full-bodied|robust|tasteful +(adj)|fancy +(adj)|full +(adj)|ample|copious|plenteous|plentiful|abundant +rich man|1 +(noun)|man of means|wealthy man|rich person|wealthy person|have +rich person|1 +(noun)|wealthy person|have|person|individual|someone|somebody|mortal|human|soul +richard adolph zsigmondy|1 +(noun)|Zsigmondy|Richard Adolph Zsigmondy|chemist +richard august carl emil erlenmeyer|1 +(noun)|Erlenmeyer|Richard August Carl Emil Erlenmeyer|chemist +richard brinsley sheridan|1 +(noun)|Sheridan|Richard Brinsley Sheridan|dramatist|playwright +richard buckminster fuller|1 +(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect|designer|engineer|applied scientist|technologist +richard burbage|1 +(noun)|Burbage|Richard Burbage|actor|histrion|player|thespian|role player +richard burdon haldane|1 +(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman|solon|national leader +richard burton|2 +(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer|adventurer +(noun)|Burton|Richard Burton|actor|histrion|player|thespian|role player +richard coeur de lion|1 +(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England|King of Great Britain +richard d'oyly carte|1 +(noun)|D'Oyly Carte|Richard D'Oyly Carte|showman|promoter|impresario +richard d. fosbury|1 +(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete|jock +richard e. byrd|1 +(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer|adventurer|naval officer +richard e. smalley|1 +(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist +richard errett smalley|1 +(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist +richard erskine leakey|1 +(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist|palaeontologist|fossilist|anthropologist +richard evelyn byrd|1 +(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer|adventurer|naval officer +richard feynman|1 +(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist +richard haldane|1 +(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman|solon|national leader +richard henry lee|1 +(noun)|Lee|Richard Henry Lee|American Revolutionary leader +richard henry tawney|1 +(noun)|Tawney|Richard Henry Tawney|economist|economic expert +richard hooker|1 +(noun)|Hooker|Richard Hooker|theologian|theologist|theologizer|theologiser +richard horatio edgar wallace|1 +(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer|author +richard i|1 +(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England|King of Great Britain +richard ii|1 +(noun)|Richard II|King of England|King of Great Britain +richard iii|1 +(noun)|Richard III|King of England|King of Great Britain +richard j. roberts|1 +(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist +richard john roberts|1 +(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist +richard jordan gatling|1 +(noun)|Gatling|Richard Jordan Gatling|inventor|discoverer|artificer +richard kuhn|1 +(noun)|Kuhn|Richard Kuhn|chemist +richard leakey|1 +(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist|palaeontologist|fossilist|anthropologist +richard lovelace|1 +(noun)|Lovelace|Richard Lovelace|poet +richard m. nixon|1 +(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States|United States President|President|Chief Executive +richard milhous nixon|1 +(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States|United States President|President|Chief Executive +richard morris hunt|1 +(noun)|Hunt|Richard Morris Hunt|architect|designer +richard neville|1 +(noun)|Warwick|Earl of Warwick|Richard Neville|the Kingmaker|statesman|solon|national leader +richard nixon|1 +(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States|United States President|President|Chief Executive +richard phillips feynman|1 +(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist +richard rodgers|1 +(noun)|Rodgers|Richard Rodgers|composer +richard roe|1 +(noun)|Richard Roe|party +richard smalley|1 +(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist +richard starkey|1 +(noun)|Starr|Ringo Starr|Richard Starkey|rock star|drummer +richard strauss|1 +(noun)|Strauss|Richard Strauss|composer +richard the lion-hearted|1 +(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England|King of Great Britain +richard the lionheart|1 +(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England|King of Great Britain +richard trevithick|1 +(noun)|Trevithick|Richard Trevithick|engineer|applied scientist|technologist +richard upjohn|1 +(noun)|Upjohn|Richard Upjohn|architect|designer +richard von krafft-ebing|1 +(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist|brain doctor +richard wagner|1 +(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer +richard wright|1 +(noun)|Wright|Richard Wright|writer|author +richards|1 +(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic|semanticist|semiotician +richardson|2 +(noun)|Richardson|Henry Hobson Richardson|architect|designer +(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor|histrion|player|thespian|role player +richardson's geranium|1 +(noun)|Richardson's geranium|Geranium richardsonii|cranesbill|crane's bill +richardson ground squirrel|1 +(noun)|flickertail|Richardson ground squirrel|Citellus richardsoni|ground squirrel|gopher|spermophile +richardson vole|1 +(noun)|water vole|Richardson vole|Microtus richardsoni|vole|field mouse +richea|1 +(noun)|Richea|genus Richea|dilleniid dicot genus +richea dracophylla|1 +(noun)|Australian grass tree|Richea dracophylla|Australian heath +richea pandanifolia|1 +(noun)|tree heath|grass tree|Richea pandanifolia|Australian heath +richelieu|1 +(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +riches|1 +(noun)|wealth|material resource +richler|1 +(noun)|Richler|Mordecai Richler|writer|author +richly|3 +(adv)|amply +(adv)|high|luxuriously +(adv)|lavishly|extravagantly +richmond|1 +(noun)|Richmond|capital of Virginia|state capital +richmondena|1 +(noun)|Richmondena|genus Richmondena|bird genus +richmondena cardinalis|1 +(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch +richness|4 +(noun)|profusion|profuseness|cornucopia|abundance|copiousness|teemingness +(noun)|affluence|wealth|wealthiness +(noun)|fullness|mellowness|timbre|timber|quality|tone +(noun)|prolificacy|fertility|fruitfulness|fecundity +richter scale|1 +(noun)|Richter scale|scale|scale of measurement|graduated table|ordered series +richweed|2 +(noun)|horse balm|horseweed|stoneroot|stone-root|stone root|Collinsonia canadensis|herb|herbaceous plant +(noun)|clearweed|dead nettle|Pilea pumilla|nettle +ricin|1 +(noun)|ricin toxin|albumin|albumen|toxin +ricin toxin|1 +(noun)|ricin|albumin|albumen|toxin +ricinoleic acid|1 +(noun)|unsaturated fatty acid +ricinus|1 +(noun)|Ricinus|genus Ricinus|rosid dicot genus +ricinus communis|1 +(noun)|castor-oil plant|castor bean plant|palma christi|palma christ|Ricinus communis|shrub|bush +rick|4 +(noun)|crick|wrick|spasm|cramp|muscle spasm +(noun)|haystack|hayrick|stack +(verb)|stack|pile|heap +(verb)|twist|sprain|wrench|turn|wrick|injure|wound +rickenbacker|1 +(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot +ricketiness|1 +(noun)|shakiness|instability|unstableness +rickets|1 +(noun)|rachitis|avitaminosis|hypovitaminosis +rickettsia|1 +(noun)|Rickettsia|bacteria|bacterium +rickettsiaceae|1 +(noun)|Rickettsiaceae|family Rickettsiaceae|bacteria family +rickettsial|1 +(adj)|bacteria|bacterium +rickettsial disease|1 +(noun)|rickettsiosis|infectious disease +rickettsiales|1 +(noun)|Rickettsiales|order Rickettsiales|animal order +rickettsialpox|1 +(noun)|rickettsial disease|rickettsiosis +rickettsias|2 +(noun)|eubacteria|eubacterium|true bacteria +(noun)|Rickettsia|bacteria|bacterium +rickettsiosis|1 +(noun)|rickettsial disease|infectious disease +rickety|1 +(adj)|shaky|wobbly|wonky|unstable +rickey|1 +(noun)|mixed drink +rickover|1 +(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer +rickrack|1 +(noun)|ricrac|trimming|trim|passementerie +ricksha|1 +(noun)|jinrikisha|rickshaw|cart +rickshaw|1 +(noun)|jinrikisha|ricksha|cart +rico|1 +(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law +rico act|1 +(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law +ricochet|2 +(noun)|carom|recoil|repercussion|rebound|backlash +(verb)|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|jump|leap|bound|spring +ricotta|1 +(noun)|cheese +ricrac|1 +(noun)|rickrack|trimming|trim|passementerie +rictus|1 +(noun)|gape +rid|1 +(verb)|free|disembarrass|rid of +rid of|1 +(verb)|obviate|eliminate +riddance|2 +(noun)|elimination|removal|remotion +(noun)|ejection|exclusion|expulsion|banishment|proscription +riddle|7 +(noun)|conundrum|enigma|brain-teaser|problem +(noun)|sieve|screen +(verb)|pierce +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound +(verb)|screen|sift|sieve|strain +(verb)|communicate|intercommunicate +(verb)|solve|work out|figure out|puzzle out|lick|work +riddle canon|1 +(noun)|enigma canon|enigmatic canon|enigmatical canon|canon +riddled|2 +(adj)|damaged +(adj)|full +ride|16 +(noun)|drive|journey|journeying +(noun)|mechanical device +(verb)|sit|travel|go|move|locomote +(verb)|travel +(verb)|continue|go on|proceed|go along|keep +(verb)|travel|go|move|locomote +(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|mock|bemock +(verb)|float +(verb)|drive +(verb)|depend on|devolve on|depend upon|turn on|hinge on|hinge upon +(verb)|lie +(verb)|travel|go|move|locomote +(verb)|climb|climb up|mount|go up +(verb)|travel|journey +(verb)|engage|mesh|lock|operate +(verb)|mount|copulate|mate|pair|couple +ride away|1 +(verb)|ride off|leave|go forth|go away +ride herd|1 +(verb)|ride|sit +ride herd on|1 +(verb)|monitor|supervise|observe +ride horseback|1 +(verb)|ride|sit +ride off|1 +(verb)|ride away|leave|go forth|go away +ride out|1 +(verb)|last out|stay|outride +ride roughshod|1 +(verb)|run roughshod|treat|handle|do by +ride the bench|1 +(verb)|warm the bench|idle|laze|slug|stagnate +rider|4 +(noun)|traveler|traveller +(noun)|article|clause +(noun)|traveler|traveller +(noun)|passenger|traveler|traveller +rider haggard|1 +(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer|author +rider plate|1 +(noun)|beam +ridge|10 +(noun)|natural elevation|elevation +(noun)|convex shape|convexity +(noun)|geological formation|formation +(noun)|process|outgrowth|appendage +(noun)|ridgepole|rooftree|beam +(verb)|cover|extend +(verb)|plow|plough|turn +(verb)|throw +(verb)|spade +(verb)|shape|form +ridge rope|1 +(noun)|lifeline +ridge tile|1 +(noun)|tile|roofing tile +ridged|2 +(adj)|carinate|carinated|keeled|shape|form +(adj)|carinate|carinated|keeled +ridgel|1 +(noun)|ridgeling|ridgling|ridgil|colt +ridgeling|1 +(noun)|ridgling|ridgel|ridgil|colt +ridgepole|1 +(noun)|ridge|rooftree|beam +ridgil|1 +(noun)|ridgeling|ridgling|ridgel|colt +ridgling|1 +(noun)|ridgeling|ridgel|ridgil|colt +ridicule|3 +(noun)|disrespect|discourtesy +(noun)|derision|discourtesy|offense|offence|offensive activity +(verb)|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun|mock|bemock +ridiculer|1 +(noun)|satirist|ironist|humorist|humourist +ridiculous|3 +(adj)|pathetic|silly|undignified +(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|foolish +(adj)|farcical|ludicrous|humorous |humourous +ridiculously|1 +(adv)|laughably|ludicrously|preposterously +ridiculousness|1 +(noun)|absurdity|absurdness|nonsense|bunk|nonsensicality|meaninglessness|hokum +riding|3 +(adj)|awheel|moving +(noun)|horseback riding|equitation|sport|athletics +(noun)|horseback riding|travel|traveling|travelling +riding bitt|1 +(noun)|bollard|bitt +riding boot|1 +(noun)|boot +riding breeches|1 +(noun)|jodhpur|jodhpur breeches|trousers|pants +riding crop|1 +(noun)|hunting crop|whip +riding habit|1 +(noun)|habit +riding horse|1 +(noun)|saddle horse|mount|horse|Equus caballus +riding lamp|1 +(noun)|anchor light|riding light|light|light source +riding light|1 +(noun)|anchor light|riding lamp|light|light source +riding master|1 +(noun)|teacher|instructor +riding mower|1 +(noun)|power mower|motor mower +riding school|1 +(noun)|school +ridley|1 +(noun)|sea turtle|marine turtle +riel|1 +(noun)|Cambodian monetary unit +riemann|1 +(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician +riemannian|1 +(adj)|Riemannian|mathematician +riemannian geometry|1 +(noun)|elliptic geometry|Riemannian geometry|non-Euclidean geometry +riesling|2 +(noun)|Riesling|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Riesling|Rhine wine|Rhenish|hock +riesman|1 +(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist +rifadin|1 +(noun)|rifampin|Rifadin|Rimactane|antibacterial|antibacterial drug|bactericide +rifampin|1 +(noun)|Rifadin|Rimactane|antibacterial|antibacterial drug|bactericide +rife|2 +(adj)|prevailing|prevalent|current +(adj)|overabundant|plethoric|abundant +riff|4 +(noun)|Riff|Riffian|Berber +(noun)|ostinato +(verb)|flick|flip|thumb|riffle|leaf|peruse +(verb)|play|spiel +riffian|1 +(noun)|Riff|Riffian|Berber +riffle|6 +(noun)|ripple|rippling|wavelet|wave|moving ridge +(noun)|shuffle|shuffling|make +(verb)|flick|ruffle|move|displace +(verb)|flick|flip|thumb|leaf|riff|peruse +(verb)|ripple|ruffle|cockle|undulate|flow|flux +(verb)|shuffle|ruffle|mix +riffraff|1 +(noun)|rabble|ragtag|ragtag and bobtail|folk|common people +rifle|3 +(noun)|firearm|piece|small-arm +(verb)|plunder|despoil|loot|reave|strip|ransack|pillage|foray|take +(verb)|go|search +rifle ball|1 +(noun)|bullet|slug +rifle butt|1 +(noun)|butt|butt end +rifle grenade|1 +(noun)|grenade +rifle range|2 +(noun)|rifle shot|range|reach +(noun)|range +rifle shot|1 +(noun)|rifle range|range|reach +riflebird|1 +(noun)|Ptloris paradisea|bird of paradise +rifled|1 +(adj)|rifled +rifleman|2 +(noun)|marksman|sharpshooter|crack shot +(noun)|soldier +rifleman bird|1 +(noun)|Acanthisitta chloris|New Zealand wren +rifling|1 +(noun)|grooving|formation|shaping +rift|3 +(noun)|opening|gap +(noun)|crack|cleft|crevice|fissure|scissure +(noun)|rupture|breach|break|severance|falling out|separation|breakup|detachment +rift valley|1 +(noun)|valley|vale +rift valley fever|1 +(noun)|Rift Valley fever|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF +rig|11 +(noun)|gear|paraphernalia|appurtenances +(noun)|trailer truck|tractor trailer|trucking rig|articulated lorry|semi|truck|motortruck +(noun)|rigging|formation +(noun)|outfit|getup|turnout|attire|garb|dress +(noun)|fishing gear|tackle|fishing tackle|fishing rig|gear|paraphernalia|appurtenances +(noun)|carriage|equipage|horse-drawn vehicle +(noun)|swindle|cheat|fraud +(verb)|set up|cheat|chisel +(verb)|manipulate|price +(verb)|fasten|fix|secure +(verb)|set|set up|equip|fit|fit out|outfit +rig-veda|1 +(noun)|Rig-Veda|Samhita +rig out|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|tog up|tog out|overdress|dress|get dressed +rig up|1 +(verb)|assemble|piece|put together|set up|tack|tack together +riga|1 +(noun)|Riga|capital of Latvia|capital|port +rigamarole|2 +(noun)|rigmarole|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|rigmarole|procedure|process +rigatoni|1 +(noun)|pasta|alimentary paste +rigel|1 +(noun)|Rigel|Beta Orionis|binary star|binary|double star +rigged|1 +(adj)|rigged |lateen|lateen-rigged|outrigged|square-rigged +rigger|4 +(noun)|craftsman|artisan|journeyman|artificer +(noun)|rigger brush|sable|sable brush|sable's hair pencil +(noun)|oil rigger|oilman +(noun)|sailing vessel|sailing ship +rigger brush|1 +(noun)|rigger|sable|sable brush|sable's hair pencil +rigging|2 +(noun)|tackle|gear|paraphernalia|appurtenances +(noun)|rig|formation +riggs' disease|1 +(noun)|pyorrhea|pyorrhoea|pyorrhea alveolaris|Riggs' disease|periodontal disease|periodontitis +right|31 +(adj)|correct |accurate|exact|precise|letter-perfect|word-perfect|straight|accurate|proper|true +(adj)|right |far|right-hand|starboard|rightmost|right-handed +(adj)|correct|proper +(adj)|right |ethical|honorable|honourable|moral|ethical|good|just|proper +(adj)|right |correct|right-minded +(adj)|proper|suitable|appropriate +(adj)|right |conservative|reactionary|reactionist|far-right|rightish|rightist|right-wing|conservative +(adj)|satisfactory +(adj)|right-hand|right-handed +(adj)|correct|proper +(adj)|perpendicular +(adj)|outside +(adj)|good|ripe|opportune +(noun)|abstraction|abstract +(noun)|interest|stake +(noun)|position|place +(noun)|turn|turning +(noun)|right wing|faction|sect +(noun)|rightfulness|justice|justness +(noun)|right hand|hand|manus|mitt|paw +(noun)|right field|tract|piece of land|piece of ground|parcel of land|parcel +(verb)|compensate|redress|correct|change|alter|modify +(verb)|change|alter|modify +(verb)|change posture +(verb)|correct|rectify|change by reversal|turn|reverse +(adv)|flop +(adv)|properly|decently|decent|in good order|the right way +(adv)|right on +(adv)|mighty|powerful +(adv)|justly +(adv)|correctly|aright +right-angled|1 +(adj)|square +right-angled triangle|1 +(noun)|right triangle|triangle|trigon|trilateral +right-down|1 +(adj)|absolute|downright|out-and-out|rank|sheer|complete +right-hand|3 +(adj)|right +(adj)|right|right-handed +(adj)|helpful +right-hand man|1 +(noun)|chief assistant|man Friday|assistant|helper|help|supporter +right-handed|2 +(adj)|right-handed |dextral|right|right-hand|dextral|right +(adj)|dextrorotary|dextrorotatory|clockwise +right-handed pitcher|1 +(noun)|right-hander|pitcher|hurler|twirler +right-handedness|1 +(noun)|dextrality|handedness|laterality +right-hander|4 +(noun)|right-handed pitcher|pitcher|hurler|twirler +(noun)|right hander|righthander|person|individual|someone|somebody|mortal|human|soul +(noun)| +(noun)| +right-minded|1 +(adj)|right |correct +right-side-out|1 +(adj)|unturned +right-side-up|1 +(adj)|unturned +right-wing|1 +(adj)|rightist|right +right-winger|1 +(noun)|rightist|conservative|conservativist +right along|1 +(adv)|all along +right angle|2 +(noun)|angle +(noun)|quadrant|angular unit +right ascension|2 +(noun)|RA|celestial longitude|angular distance +(noun)|celestial equator|equinoctial circle|equinoctial line|equinoctial +right atrioventricular valve|1 +(noun)|tricuspid valve|atrioventricular valve +right atrium|1 +(noun)|right atrium of the heart|atrium dextrum|atrium cordis|atrium of the heart +right atrium of the heart|1 +(noun)|right atrium|atrium dextrum|atrium cordis|atrium of the heart +right away|2 +(adv)|immediately|instantly|straightaway|straight off|directly|now|at once|forthwith|in real time|like a shot +(adv)|promptly +right bank|1 +(noun)|Right Bank|vicinity|locality|neighborhood|neighbourhood|neck of the woods +right brain|1 +(noun)|right hemisphere|hemisphere|cerebral hemisphere +right coronary artery|1 +(noun)|coronary artery|arteria coronaria +right field|2 +(noun)|right|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|position +right fielder|1 +(noun)|outfielder +right gastric artery|1 +(noun)|ateria gastrica dextra|gastric artery|arteria gastrica +right gastric vein|1 +(noun)|pyloric vein|vena gastrica-dextra|gastric vein|vena gastrica +right hand|1 +(noun)|right|hand|manus|mitt|paw +right hander|3 +(noun)|right-hander|righthander|person|individual|someone|somebody|mortal|human|soul +(noun)|right-handed pitcher|right-hander|pitcher|hurler|twirler +(noun)| +right hemisphere|1 +(noun)|right brain|hemisphere|cerebral hemisphere +right of election|1 +(noun)|legal right +right of entry|1 +(noun)|legal right +right of first publication|1 +(noun)|copyright|document|written document|papers|legal right +right of offset|1 +(noun)|legal right +right of privacy|1 +(noun)|legal right +right of re-entry|1 +(noun)|legal right +right of search|1 +(noun)|right +right of way|3 +(noun)|easement +(noun)|right +(noun)|passage +right on|1 +(adv)|right +right smart|2 +(adj)|considerable +(adv)|way +right stage|1 +(noun)|stage right|right +right to an attorney|1 +(noun)|civil right|civil rights +right to confront accusors|1 +(noun)|civil right|civil rights +right to due process|1 +(noun)|civil right|civil rights +right to liberty|1 +(noun)|human right +right to life|1 +(noun)|human right +right to privacy|1 +(noun)|human right +right to speedy and public trial by jury|1 +(noun)|civil right|civil rights +right to the pursuit of happiness|1 +(noun)|human right +right to vote|1 +(noun)|vote|suffrage|franchise|enfranchisement +right triangle|1 +(noun)|right-angled triangle|triangle|trigon|trilateral +right ventricle|1 +(noun)|ventricle|heart ventricle +right whale|1 +(noun)|baleen whale|whalebone whale +right wing|1 +(noun)|right|faction|sect +righteous|2 +(adj)|righteous |good|just|upright|virtuous|sound|good|innocent|guiltless|clean-handed|just|moral|virtuous|worthy +(adj)|moral +righteousness|1 +(noun)|morality +righteye flounder|1 +(noun)|righteyed flounder|flatfish +righteyed flounder|1 +(noun)|righteye flounder|flatfish +rightful|2 +(adj)|just +(adj)|true|lawful|legitimate +rightfully|1 +(adv)|truly +rightfulness|1 +(noun)|right|justice|justness +righthander|1 +(noun)|right-hander|right hander|person|individual|someone|somebody|mortal|human|soul +rightish|1 +(adj)|right +rightism|1 +(noun)|political orientation|ideology|political theory +rightist|2 +(adj)|right-wing|right +(noun)|right-winger|conservative|conservativist +rightly|1 +(adv)|justly|justifiedly +rightmost|1 +(adj)|right +rightness|4 +(noun)|morality +(noun)|appropriateness|propriety|properness|correctitude +(noun)|correctness|quality +(noun)|justness|nicety|conformity|conformance +rights issue|1 +(noun)|rights offering|offer|offering +rights offering|1 +(noun)|rights issue|offer|offering +rigid|5 +(adj)|stiff|inflexible +(adj)|strict|intolerant +(adj)|inflexible|unbending|unadaptable +(adj)|fixed|set|nonmoving |unmoving +(adj)|rigid |semirigid +rigidification|1 +(noun)|stiffening|rigidifying|natural process|natural action|action|activity +rigidify|2 +(verb)|stiffen +(verb)|ossify|petrify|stiffen +rigidifying|1 +(noun)|stiffening|rigidification|natural process|natural action|action|activity +rigidity|2 +(noun)|rigidness|inelasticity +(noun)|inflexibility|unadaptability +rigidly|1 +(adv)|stiffly|bolt +rigidness|1 +(noun)|rigidity|inelasticity +rigil|1 +(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star|binary|double star +rigil kent|1 +(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star|binary|double star +rigmarole|2 +(noun)|rigamarole|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|rigamarole|procedure|process +rigor|3 +(noun)|asperity|grimness|hardship|rigour|severity|rigorousness|difficulty|difficultness +(noun)|cogency|validity|rigour|credibility|credibleness|believability +(noun)|severity|harshness|rigour|inclemency|hardness|stiffness|sternness|strictness +rigor mortis|2 +(noun)|physiological state|physiological condition +(noun)|stiffening|rigidifying|rigidification +rigorous|3 +(adj)|strict|exact +(adj)|stringent|tight|demanding +(adj)|brutal|cruel|harsh|unkind|hard +rigorously|1 +(adv)|strictly +rigorousness|1 +(noun)|asperity|grimness|hardship|rigor|rigour|severity|difficulty|difficultness +rigour|3 +(noun)|cogency|validity|rigor|credibility|credibleness|believability +(noun)|asperity|grimness|hardship|rigor|severity|rigorousness|difficulty|difficultness +(noun)|severity|harshness|rigor|inclemency|hardness|stiffness|sternness|strictness +rigout|1 +(noun)|costume +rijstafel|1 +(noun)|rijsttaffel|rijstaffel|dish +rijstaffel|1 +(noun)|rijsttaffel|rijstafel|dish +rijsttaffel|1 +(noun)|rijstaffel|rijstafel|dish +riksmal|1 +(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian +rile|2 +(verb)|annoy|rag|get to|bother|get at|irritate|nark|nettle|gravel|vex|chafe|devil|displease +(verb)|roil|agitate|vex|disturb|commove|shake up|stir up|raise up +riled|1 +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|roiled|steamed|stunng|displeased +riley|1 +(noun)|Riley|James Whitcomb Riley|poet +riley b king|1 +(noun)|King|B. B. King|Riley B King|singer|vocalist|vocalizer|vocaliser|guitarist|guitar player +rilievo|1 +(noun)|relief|relievo|embossment|sculptural relief|sculpture +rilke|1 +(noun)|Rilke|Rainer Maria Rilke|poet +rill|2 +(noun)|rivulet|run|runnel|streamlet|stream|watercourse +(noun)|channel +rim|8 +(noun)|boundary|edge|bound|round shape +(noun)|hoop|ring +(noun)|hoop|ring +(noun)|flange|projection +(noun)|brim|lip|edge +(verb)|line|run along +(verb)|supply|provide|render|furnish +(verb)|roll|turn over +rim blight|1 +(noun)|blight +rima|1 +(noun)|orifice|opening|porta +rima glottidis|1 +(noun)|rima vocalis|true glottis|glottis vera|rima +rima oris|1 +(noun)|mouth|oral cavity|oral fissure|rima +rima pudendi|1 +(noun)|pudendal cleft|urogenital cleft|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima +rima respiratoria|1 +(noun)|rima vestibuli|false glottis|glottis spuria|rima +rima vestibuli|1 +(noun)|rima respiratoria|false glottis|glottis spuria|rima +rima vocalis|1 +(noun)|rima glottidis|true glottis|glottis vera|rima +rima vulvae|1 +(noun)|pudendal cleft|urogenital cleft|rima pudendi|pudendal cleavage|pudendal slit|vulvar slit|rima +rimactane|1 +(noun)|rifampin|Rifadin|Rimactane|antibacterial|antibacterial drug|bactericide +rimbaud|1 +(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet +rime|4 +(noun)|frost|hoar|hoarfrost|ice|water ice +(noun)|rhyme|versification +(verb)|rhyme|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|rhyme|create verbally +rimed|1 +(adj)|frosty|rimy|cold +rimeless|1 +(adj)|unrhymed |unrimed|rhymeless +riming|1 +(adj)|rhymed |rhyming|alliterative|assonant|end-rhymed +rimless|1 +(adj)|rimless +rimmed|1 +(adj)|rimmed |horn-rimmed|red-rimmed +rimose|1 +(adj)|rough +rimski-korsakov|1 +(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer +rimsky-korsakov|1 +(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer +rimu|1 +(noun)|imou pine|red pine|Dacrydium cupressinum|conifer|coniferous tree +rimy|1 +(adj)|frosty|rimed|cold +rind|2 +(noun)|skin|peel|plant tissue +(noun)|material|stuff +rinderpest|1 +(noun)|cattle plague|animal disease +ring|15 +(noun)|sound +(noun)|halo|annulus|anulus|doughnut|anchor ring|toroid +(noun)|hoop|band +(noun)|closed chain|chain|chemical chain +(noun)|gang|pack|mob|association +(noun)|ringing|tintinnabulation|sound +(noun)|platform +(noun)|band|jewelry|jewellery +(noun)|band|strip|slip +(verb)|peal|sound|go|ring out +(verb)|resound|echo|reverberate|sound|go +(verb)|knell|sound +(verb)|surround|environ|encircle|circle|round|hold|bear|carry|contain +(verb)|call|telephone|call up|phone|telecommunicate +(verb)|band|attach +ring-a-rosy|1 +(noun)|ring-around-the-rosy|ring-around-a-rosy|game +ring-around-a-rosy|1 +(noun)|ring-around-the-rosy|ring-a-rosy|game +ring-around-the-rosy|1 +(noun)|ring-around-a-rosy|ring-a-rosy|game +ring-binder|1 +(noun)|binder|protective covering|protective cover|protection +ring-necked parakeet|1 +(noun)|Psittacula krameri|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +ring-necked pheasant|1 +(noun)|Phasianus colchicus|pheasant +ring-necked snake|1 +(noun)|ringneck snake|ring snake|colubrid snake|colubrid +ring-shaped|1 +(adj)|annular|annulate|annulated|circinate|circular|ringed|doughnut-shaped|rounded +ring-stalked fungus|1 +(noun)|Stropharia|genus Stropharia|fungus genus +ring-tailed cat|1 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|civet cat|miner's cat|Bassariscus astutus|procyonid +ring-tailed lemur|1 +(noun)|Madagascar cat|Lemur catta|lemur +ring armor|1 +(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +ring armour|1 +(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armor|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +ring blackbird|1 +(noun)|ring ouzel|ring thrush|Turdus torquatus|thrush +ring containment|1 +(noun)|containment +ring dance|1 +(noun)|round dance|folk dancing|folk dance +ring disease|1 +(noun)|ring rot|tobacco wilt|brown rot +ring finger|1 +(noun)|annualry|finger +ring girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille +ring lardner|1 +(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist|humourist|writer|author +ring mail|1 +(noun)|chain mail|mail|chain armor|chain armour|ring armor|ring armour|body armor|body armour|suit of armor|suit of armour|coat of mail|cataphract +ring of color|1 +(noun)|areola|area|region +ring out|5 +(verb)|make noise|resound|noise +(verb)|rout|rout out|expel|get the better of|overcome|defeat +(verb)|rout|root|rootle|dig|delve|cut into|turn over +(verb)|rout|gouge|hollow|hollow out|core out +(verb)|spread-eagle|spreadeagle|rout|beat|beat out|crush|shell|trounce|vanquish +ring ouzel|1 +(noun)|ring blackbird|ring thrush|Turdus torquatus|thrush +ring road|1 +(noun)|bypass|circumferential|road|route +ring rot|1 +(noun)|ring disease|tobacco wilt|brown rot +ring rot bacteria|1 +(noun)|Pseudomonas solanacearum|pseudomonad +ring rot fungus|1 +(noun)|leak fungus|Rhizopus stolonifer|rhizoid +ring snake|2 +(noun)|grass snake|ringed snake|Natrix natrix|water snake +(noun)|ringneck snake|ring-necked snake|colubrid snake|colubrid +ring thrush|1 +(noun)|ring ouzel|ring blackbird|Turdus torquatus|thrush +ring up|1 +(verb)|record|enter|put down +ring vaccination|1 +(noun)|inoculating|vaccinating +ringdove|2 +(noun)|Streptopelia risoria|turtledove +(noun)|wood pigeon|cushat|Columba palumbus|pigeon +ringed|3 +(adj)|annular|annulate|annulated|circinate|circular|ring-shaped|doughnut-shaped|rounded +(adj)|married +(adj)|encircled|wreathed|adorned |decorated +ringed snake|1 +(noun)|grass snake|ring snake|Natrix natrix|water snake +ringer|4 +(noun)|toller|bell ringer|signaler|signaller +(noun)|dead ringer|clone|double|image|look-alike +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player +(noun)|throw +ringer's solution|1 +(noun)|Ringer's solution|Ringer solution|isotonic solution|isosmotic solution +ringer solution|1 +(noun)|Ringer's solution|Ringer solution|isotonic solution|isosmotic solution +ringgit|1 +(noun)|Malaysian monetary unit +ringgold wilmer lardner|1 +(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist|humourist|writer|author +ringhals|1 +(noun)|rinkhals|spitting snake|Hemachatus haemachatus|elapid|elapid snake +ringing|4 +(adj)|reverberant |bright|brilliant|clinking|echoing|reechoing|hollow|jingling|jingly|live|resonant|resonant|resonating|resounding|reverberating|reverberative|rolling|tinkling|tinkly +(noun)|ring|tintinnabulation|sound +(noun)|betrothal|troth|engagement +(noun)|plangency|resonance|reverberance|sonorousness|sonority|vibrancy|timbre|timber|quality|tone +ringleader|1 +(noun)|instigator|provoker|inciter|instigant|firebrand +ringlet|4 +(noun)|coil|whorl|roll|curl|curlicue|gyre|scroll|round shape +(noun)|lock|curl|whorl|hair +(noun)|ring|band +(noun)|ringlet butterfly|butterfly +ringlet butterfly|1 +(noun)|ringlet|butterfly +ringleted|1 +(adj)|curly +ringlike|1 +(adj)|round |circular +ringling|1 +(noun)|Ringling|Charles Ringling|showman|promoter|impresario +ringmaster|1 +(noun)|master of ceremonies|emcee|host +ringneck snake|1 +(noun)|ring-necked snake|ring snake|colubrid snake|colubrid +ringo starr|1 +(noun)|Starr|Ringo Starr|Richard Starkey|rock star|drummer +rings|10 +(noun)|gymnastic apparatus|exerciser +(noun)|ring|sound +(noun)|ring|halo|annulus|anulus|doughnut|anchor ring|toroid +(noun)|hoop|ring|band +(noun)|closed chain|ring|chain|chemical chain +(noun)|gang|pack|ring|mob|association +(noun)|ring|ringing|tintinnabulation|sound +(noun)|ring|platform +(noun)|ring|band|jewelry|jewellery +(noun)|band|ring|strip|slip +ringside|1 +(noun)|ringside seat|seating|seats|seating room|seating area +ringside seat|1 +(noun)|ringside|seating|seats|seating room|seating area +ringtail|4 +(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid +(noun)|common raccoon|common racoon|coon|Procyon lotor|raccoon|racoon +(noun)|capuchin|Cebus capucinus|New World monkey|platyrrhine +(noun)|golden eagle|Aquila chrysaetos +ringworm|1 +(noun)|tinea|roundworm|fungal infection|mycosis +ringworm bush|1 +(noun)|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna +ringworm cassia|1 +(noun)|ringworm bush|ringworm shrub|Senna alata|Cassia alata|senna +ringworm shrub|1 +(noun)|ringworm bush|ringworm cassia|Senna alata|Cassia alata|senna +rink|1 +(noun)|skating rink|building|edifice +rinkhals|1 +(noun)|ringhals|spitting snake|Hemachatus haemachatus|elapid|elapid snake +rinse|7 +(noun)|hair dye|hair coloring +(noun)|rinsing|removal|remotion +(noun)|hair coloring +(noun)|wash|washing|lavation +(verb)|rinse off|wash|launder +(verb)|wash|wash|launder +(verb)|gargle|wash|lave +rinse off|1 +(verb)|rinse|wash|launder +rinsing|1 +(noun)|rinse|removal|remotion +rio|1 +(noun)|Rio de Janeiro|Rio|city|metropolis|urban center +rio bravo|1 +(noun)|Rio Grande|Rio Bravo|river +rio de janeiro|1 +(noun)|Rio de Janeiro|Rio|city|metropolis|urban center +rio de la plata|1 +(noun)|Rio de la Plata|La Plata|Plata River|estuary +rio grande|1 +(noun)|Rio Grande|Rio Bravo|river +rio nunez coffee|1 +(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee|coffee tree +rioja|1 +(noun)|Rioja|red wine +riot|6 +(noun)|public violence|violence|force +(noun)|rioting|disorder +(noun)|belly laugh|sidesplitter|howler|thigh-slapper|scream|wow|joke|gag|laugh|jest|jape +(noun)|orgy|debauch|debauchery|saturnalia|bacchanal|bacchanalia|drunken revelry|revel|revelry +(verb)|rampage +(verb)|carouse|roister|revel|racket|make whoopie|make merry|make happy|whoop it up|jollify|wassail +riot act|2 +(noun)|rebuke|reproof|reproval|reprehension|reprimand +(noun)|Riot Act|law +riot control|1 +(noun)|riot control operations|control +riot control operations|1 +(noun)|riot control|control +riot gun|1 +(noun)|firearm|piece|small-arm +rioter|1 +(noun)|troublemaker|trouble maker|troubler|mischief-maker|bad hat +rioting|1 +(noun)|riot|disorder +riotous|3 +(adj)|exuberant|lush|luxuriant|profuse|abundant +(adj)|disruptive|troubled|tumultuous|turbulent|unquiet +(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|profligate|fast|immoral +riotously|2 +(adv)|tumultuously +(adv)|exuberantly +rip|8 +(noun)|rake|profligate|blood|roue|libertine|debauchee|rounder +(noun)|rent|snag|split|tear|opening|gap +(noun)|riptide|tide rip|crosscurrent|countercurrent|turbulence|turbulency +(noun)|rent|split|tear +(verb)|rend|rive|pull|tear|rupture|snap|bust +(verb)|tear|shoot|shoot down|charge|buck +(verb)|cut +(verb)|attack|round|assail|lash out|snipe|assault +rip-off|1 +(noun)|heist|robbery +rip-roaring|1 +(adj)|rackety|uproarious|noisy +rip current|1 +(noun)|riptide|current|stream +rip off|1 +(verb)|cheat|chisel|victimize|victimise +rip out|1 +(verb)|burst out +rip up|1 +(verb)|shred|tear up|tear|rupture|snap|bust +rip van winkle|2 +(noun)|Rip van Winkle|traditionalist|diehard +(noun)|Rip van Winkle|sleeper|slumberer +riparia|1 +(noun)|Riparia|genus Riparia|bird genus +riparia riparia|1 +(noun)|bank martin|bank swallow|sand martin|Riparia riparia|martin +riparian|1 +(adj)|bank +riparian forest|1 +(noun)|forest|woodland|timberland|timber +riparian right|1 +(noun)|water right|right +ripcord|2 +(noun)|cord +(noun)|cord +ripe|5 +(adj)|ripe |mature|aged|ripened|mellow|mellowed|overripe +(adj)|ready +(adj)|good|right|opportune +(adj)|mature +(adj)|advanced|late +ripe olive|1 +(noun)|black olive|olive +ripen|2 +(verb)|mature|change|alter|modify +(verb)|mature|maturate|grow +ripened|1 +(adj)|aged|ripe |mature +ripeness|1 +(noun)|maturity|matureness +ripening|2 +(noun)|maturation|maturement|organic process|biological process +(noun)|aging|ageing|organic process|biological process +riposte|2 +(noun)|rejoinder|retort|return|replication|comeback|counter|reply|response +(verb)|retort|come back|repay|return|rejoin|answer|reply|respond +ripper|1 +(noun)|murderer|liquidator|manslayer +ripping|1 +(adj)|rending|splitting|cacophonous |cacophonic +ripping bar|1 +(noun)|lever +ripping chisel|1 +(noun)|chisel +ripple|4 +(noun)|rippling|riffle|wavelet|wave|moving ridge +(noun)|oscillation|vibration +(verb)|ruffle|riffle|cockle|undulate|flow|flux +(verb)|babble|guggle|burble|bubble|gurgle|sound|go +ripple-grass|1 +(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|buckthorn|Plantago lanceolata|plantain +ripple mark|1 +(noun)|ridge +rippled|2 +(adj)|crinkled|crinkly|wavy|wavelike|uneven +(adj)|ruffled|agitated +rippling|1 +(noun)|ripple|riffle|wavelet|wave|moving ridge +ripsaw|1 +(noun)|splitsaw|handsaw|carpenter's saw +riptide|2 +(noun)|rip|tide rip|crosscurrent|countercurrent|turbulence|turbulency +(noun)|rip current|current|stream +rira|1 +(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization|terrorist group|foreign terrorist organization|FTO +risc|1 +(noun)|reduced instruction set computing|reduced instruction set computer|RISC|computer architecture|architecture +rise|26 +(noun)|emergence|outgrowth|growth +(noun)|ascent|ascension|ascending|motion|movement|move +(noun)|ascent|acclivity|raise|climb|upgrade|slope|incline|side +(noun)|rising|ascent|ascension|change of location|travel +(noun)|raise|wage hike|hike|wage increase|salary increase|increase|increment +(noun)|upgrade|rising slope|grade +(noun)|lift|wave|moving ridge +(noun)|emanation|procession|origin|origination|inception +(noun)|boost|hike|cost increase|increase|increment +(noun)|advance|increase|step-up +(verb)|lift|arise|move up|go up|come up|uprise|travel|go|move|locomote|rise up +(verb)|go up|climb|grow +(verb)|arise|uprise|get up|stand up|change posture +(verb)|lift|rear|look|appear|seem +(verb)|surface|come up|rise up|ascend|go up +(verb)|heighten|increase +(verb)|originate|arise|develop|uprise|spring up|grow|become +(verb)|move up|change +(verb)|wax|mount|climb|increase +(verb)|get up|turn out|arise|uprise +(verb)|jump|climb up|change +(verb)|prove|grow +(verb)|undertake|tackle|take on +(verb)|rebel|arise|rise up|protest|resist|dissent +(verb)|come up|uprise|ascend|lift|arise|move up|go up|come up|uprise +(verb)|resurrect|uprise|return|go back|get back|come back +rise to power|1 +(noun)|accession|attainment +rise up|3 +(verb)|surface|come up|rise|ascend|go up +(verb)|rebel|arise|rise|protest|resist|dissent +(verb)|rear|straighten +risen|1 +(adj)|up +riser|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|riser pipe|riser pipeline|riser main|pipe|pipage|piping +(noun)|structural member +riser main|1 +(noun)|riser|riser pipe|riser pipeline|pipe|pipage|piping +riser pipe|1 +(noun)|riser|riser pipeline|riser main|pipe|pipage|piping +riser pipeline|1 +(noun)|riser|riser pipe|riser main|pipe|pipage|piping +risibility|1 +(noun)|good nature +risible|1 +(adj)|amusing|comic|comical|funny|laughable|mirthful|humorous |humourous +rising|8 +(adj)|rising |improving|up +(adj)|rising +(adj)|increasing +(adj)|acclivitous|uphill|ascending +(adj)|emerging|future +(adj)|new +(noun)|rise|ascent|ascension|change of location|travel +(noun)|rebellion|insurrection|revolt|uprising|conflict|struggle|battle +rising prices|1 +(noun)|inflation|economic process +rising slope|1 +(noun)|upgrade|rise|grade +rising tide|1 +(noun)|flood tide|tide +rising trot|1 +(noun)|trot +risk|6 +(noun)|hazard|jeopardy|peril|danger +(noun)|peril|danger|venture +(noun)|risk of infection|probability|chance +(noun)|risk of exposure|probability|chance +(verb)|put on the line|lay on the line|try|seek|attempt|essay|assay +(verb)|gamble|chance|hazard|take chances|adventure|run a risk|take a chance|try|seek|attempt|essay|assay +risk-free|1 +(adj)|riskless|unhazardous|safe +risk arbitrage|1 +(noun)|takeover arbitrage|arbitrage +risk capital|1 +(noun)|venture capital|capital|working capital +risk of exposure|1 +(noun)|risk|probability|chance +risk of infection|1 +(noun)|risk|probability|chance +risk taker|1 +(noun)|gambler|adventurer|venturer +riskiness|1 +(noun)|peril|danger +riskless|1 +(adj)|risk-free|unhazardous|safe +risklessness|1 +(noun)|safety +risky|2 +(adj)|hazardous|venturesome|venturous|dangerous |unsafe +(adj)|bad|insecure|high-risk|speculative|unsound +risky venture|1 +(noun)|adventure|escapade|dangerous undertaking|undertaking|project|task|labor +risotto|1 +(noun)|Italian rice|dish +risque|1 +(adj)|blue|gamy|gamey|juicy|naughty|racy|spicy|sexy +riss glaciation|1 +(noun)|Riss glaciation|glaciation +rissa|1 +(noun)|Rissa|genus Rissa|bird genus +rissole|1 +(noun)|dish +rit.|1 +(adj)|rallentando|ritardando|ritenuto|decreasing +ritalin|1 +(noun)|methylphenidate|Ritalin|stimulant|stimulant drug +ritardando|1 +(adj)|rallentando|ritenuto|rit.|decreasing +rite|2 +(noun)|religious rite|religious ceremony|religious ritual +(noun)|ritual|custom|usage|usance +rite of passage|1 +(noun)|ritual|rite +ritenuto|1 +(adj)|rallentando|ritardando|rit.|decreasing +ritonavir|1 +(noun)|Norvir|protease inhibitor|PI +rittenhouse|1 +(noun)|Rittenhouse|David Rittenhouse|astronomer|uranologist|stargazer +ritual|5 +(adj)|religious ceremony|religious ritual +(adj)|custom|usage|usance +(noun)|rite|custom|usage|usance +(noun)|practice|pattern +(noun)|habit|use|wont +ritual dance|1 +(noun)|ritual dancing|ceremonial dance|dancing|dance|terpsichore|saltation +ritual dancing|1 +(noun)|ritual dance|ceremonial dance|dancing|dance|terpsichore|saltation +ritual killing|1 +(noun)|sacrifice|killing|kill|putting to death +ritualise|1 +(verb)|ritualize|formalize|formalise +ritualism|2 +(noun)|social anthropology|cultural anthropology +(noun)|practice|pattern +ritualist|2 +(noun)|advocate|advocator|proponent|exponent +(noun)|social anthropologist +ritualistic|1 +(adj)|practice|pattern +ritualize|1 +(verb)|ritualise|formalize|formalise +ritually|1 +(adv)|ceremonially +ritz|3 +(noun)|Ritz|Cesar Ritz|hotelier|hotelkeeper|hotel manager|hotelman|hosteller +(noun)|ostentation|fanfare +(noun)|Ritz|hotel +ritzy|1 +(adj)|elegant +rival|3 +(noun)|challenger|competitor|competition|contender|contestant +(verb)|equal|touch|match|compete|vie|contend +(verb)|compete|vie|contend +rivalrous|1 +(adj)|emulous|competitive |competitory +rivalry|1 +(noun)|competition|contention|group action +rive|2 +(verb)|rend|rip|pull|tear|rupture|snap|bust +(verb)|cleave|split|tear +river|1 +(noun)|stream|watercourse +river acheron|1 +(noun)|Acheron|River Acheron|river +river adige|1 +(noun)|Adige|River Adige|river +river aire|1 +(noun)|Aire|River Aire|Aire River|river +river arno|1 +(noun)|Arno|Arno River|River Arno|river +river avon|2 +(noun)|Avon|River Avon|river +(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river +river basin|1 +(noun)|basin|geographical area|geographic area|geographical region|geographic region +river birch|1 +(noun)|black birch|red birch|Betula nigra|birch|birch tree +river blindness|1 +(noun)|onchocerciasis|infestation +river boat|1 +(noun)|boat +river bottom|1 +(noun)|riverbed|bed|bottom +river boulder|1 +(noun)|boulder|bowlder +river cam|1 +(noun)|Cam|River Cam|Cam River|river +river cocytus|1 +(noun)|Cocytus|River Cocytus|river +river cooter|1 +(noun)|cooter|Pseudemys concinna|turtle +river dolphin|1 +(noun)|dolphin +river gum|1 +(noun)|river red gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus|eucalypt|eucalyptus tree +river horse|1 +(noun)|hippopotamus|hippo|Hippopotamus amphibius|even-toed ungulate|artiodactyl|artiodactyl mammal +river kasai|1 +(noun)|Kasai|Kasai River|River Kasai|river +river lethe|1 +(noun)|Lethe|River Lethe|river +river limpet|1 +(noun)|freshwater limpet|Ancylus fluviatilis|gastropod|univalve +river otter|1 +(noun)|Lutra canadensis|otter +river pear|1 +(noun)|anchovy pear|edible fruit +river prawn|2 +(noun)|prawn|shrimp +(noun)|long-clawed prawn|Palaemon australis|prawn +river red gum|1 +(noun)|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus|eucalypt|eucalyptus tree +river severn|1 +(noun)|Severn|River Severn|Severn River|river +river shad|1 +(noun)|Alosa chrysocloris|shad +river styx|1 +(noun)|Styx|River Styx|river +river thames|1 +(noun)|Thames|River Thames|Thames River|river +river trent|1 +(noun)|Trent|River Trent|Trent River|river +river tyne|1 +(noun)|Tyne|River Tyne|Tyne River|river +rivera|1 +(noun)|Rivera|Diego Rivera|muralist +riverbank|1 +(noun)|riverside|bank +riverbed|1 +(noun)|river bottom|bed|bottom +riverside|2 +(noun)|riverbank|bank +(noun)|Riverside|city|metropolis|urban center +rivet|5 +(noun)|stud|decoration|ornament|ornamentation +(noun)|pin +(verb)|concentrate|focus|center|centre|pore|think|cogitate|cerebrate +(verb)|fasten|fix|secure +(verb)|absorb|engross|engage|occupy +rivet line|1 +(noun)|line +riveter|2 +(noun)|rivetter|skilled worker|trained worker +(noun)|riveting machine|rivetter|machine +riveting|1 +(adj)|absorbing|engrossing|fascinating|gripping|interesting +riveting machine|1 +(noun)|riveter|rivetter|machine +rivetter|2 +(noun)|riveter|skilled worker|trained worker +(noun)|riveting machine|riveter|machine +riviera|1 +(noun)|Riviera|geographical area|geographic area|geographical region|geographic region +rivina|1 +(noun)|Rivina|genus Rivina|caryophylloid dicot genus +rivina humilis|1 +(noun)|bloodberry|blood berry|rougeberry|rouge plant|Rivina humilis|houseplant +rivulet|1 +(noun)|rill|run|runnel|streamlet|stream|watercourse +rivulus|1 +(noun)|killifish +riyadh|1 +(noun)|Riyadh|capital of Saudi Arabia|national capital +riyal|2 +(noun)|Saudi Arabian riyal|Saudi Arabian monetary unit +(noun)|Qatari riyal|Qatari monetary unit +riyal-omani|1 +(noun)|Omani rial|rial|Omani monetary unit +rn|2 +(noun)|radon|Rn|atomic number 86|chemical element|element|noble gas|inert gas|argonon +(noun)|registered nurse|RN|nurse +rna|1 +(noun)|ribonucleic acid|RNA|polymer +rnase|1 +(noun)|ribonuclease|ribonucleinase|RNase|transferase +ro|1 +(noun)|Ro|artificial language +roach|4 +(noun)|butt|stub +(noun)|R-2|Mexican valium|rophy|rope|roofy|forget me drug|circle|flunitrazepan|Rohypnol +(noun)|cockroach|dictyopterous insect +(noun)|Rutilus rutilus|cyprinid|cyprinid fish +roach clip|1 +(noun)|roach holder|pincer|pair of pincers|tweezer|pair of tweezers +roach holder|1 +(noun)|roach clip|pincer|pair of pincers|tweezer|pair of tweezers +road|4 +(adj)|road |roadworthy +(adj)|itinerant|touring|traveling|moving +(noun)|route|way +(noun)|means|agency|way +road agent|1 +(noun)|highjacker|highwayman|hijacker|holdup man|stickup man +road builder|1 +(noun)|builder|constructor +road construction|1 +(noun)|construction|building +road game|1 +(noun)|away game|game +road gang|1 +(noun)|gang|crew|work party +road hog|2 +(noun)|roadhog|driver +(noun)| +road map|2 +(noun)|guideline|plan|program|programme|guidance|counsel|counseling|counselling|direction +(noun)|map +road mender|1 +(noun)|roadman|workman|working man|working person +road metal|1 +(noun)|rock|stone +road rage|1 +(noun)|violence|force +road roller|1 +(noun)|steamroller|vehicle +road runner|2 +(noun)|marathoner|marathon runner|long-distance runner|runner +(noun)|roadrunner|chaparral cock|Geococcyx californianus|cuckoo +road sense|1 +(noun)|common sense|good sense|gumption|horse sense|sense|mother wit +road show|1 +(noun)|show +road surface|1 +(noun)|paved surface +road test|1 +(noun)|trial|trial run|test|tryout +road to damascus|1 +(noun)|road to Damascus|landmark|turning point|watershed +roadbed|1 +(noun)|bed +roadblock|2 +(noun)|barrier|obstacle|obstruction +(noun)|barricade|barrier +roadbook|1 +(noun)|guidebook|guide +roadhog|1 +(noun)|road hog|driver +roadhouse|1 +(noun)|hostel|hostelry|inn|lodge +roadless|1 +(adj)|pathless|trackless|untracked|untrod|untrodden|inaccessible |unaccessible +roadman|2 +(noun)|traveling salesman|travelling salesman|commercial traveler|commercial traveller|bagman|salesman|spokesperson|interpreter|representative|voice +(noun)|road mender|workman|working man|working person +roadrunner|1 +(noun)|chaparral cock|Geococcyx californianus|cuckoo +roads|3 +(noun)|roadstead|anchorage|anchorage ground +(noun)|road|route|way +(noun)|road|means|agency|way +roadside|1 +(noun)|wayside|edge|margin +roadstead|1 +(noun)|roads|anchorage|anchorage ground +roadster|2 +(noun)|runabout|two-seater|car|auto|automobile|machine|motorcar +(noun)|buggy|carriage|equipage|rig +roadway|1 +(noun)|road|route +roadworthiness|1 +(noun)|worthiness +roadworthy|1 +(adj)|road +roald amundsen|1 +(noun)|Amundsen|Roald Amundsen|explorer|adventurer +roald hoffmann|1 +(noun)|Hoffmann|Roald Hoffmann|chemist +roam|1 +(verb)|roll|wander|swan|stray|tramp|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +roamer|1 +(noun)|wanderer|rover|bird of passage|traveler|traveller +roan|3 +(adj)|colored |coloured|colorful +(noun)|leather +(noun)|horse|Equus caballus +roanoke|1 +(noun)|Roanoke|city|metropolis|urban center +roar|9 +(noun)|boom|roaring|thunder|noise +(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roaring|yowl|cry|outcry|call|yell|shout|vociferation +(noun)|cry +(verb)|howl|make noise|resound|noise +(verb)|thunder|shout +(verb)|howl|ululate|wail|yawl|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|proceed|go forward|continue +(verb)|bellow|utter|emit|let out|let loose +(verb)|howl|laugh|express joy|express mirth +roar off|1 +(verb)|depart|part|start|start out|set forth|set off|set out|take off +roarer|1 +(noun)|bawler|bellower|screamer|screecher|shouter|yeller|communicator +roaring|4 +(adj)|booming|flourishing|palmy|prospering|prosperous|thriving|successful +(adj)|deafening|earsplitting|thunderous|thundery|loud +(noun)|boom|roar|thunder|noise +(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roar|yowl|cry|outcry|call|yell|shout|vociferation +roast|5 +(adj)|roasted|cooked +(noun)|joint|cut|cut of meat +(noun)|knock|criticism|critique +(verb)|cook +(verb)|ridicule|guy|blackguard|laugh at|jest at|rib|make fun|poke fun|mock|bemock +roast beef|1 +(noun)|beef roast|roast|joint +roast beef plant|1 +(noun)|stinking iris|gladdon|gladdon iris|stinking gladwyn|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +roast lamb|1 +(noun)|lamb roast|roast|joint +roast pork|1 +(noun)|pork roast|roast|joint +roast veal|1 +(noun)|veal roast|roast|joint +roasted|1 +(adj)|roast|cooked +roaster|4 +(noun)|critic +(noun)|cook +(noun)|chicken|poulet|volaille +(noun)|pan|cooking pan +roasting|1 +(noun)|cooking|cookery|preparation +rob|2 +(verb)|steal +(verb)|overcharge|soak|surcharge|gazump|fleece|plume|pluck|hook|cheat|rip off|chisel +rob roy|2 +(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal|felon|crook|outlaw|malefactor +(noun)|Rob Roy|manhattan +robaxin|1 +(noun)|methocarbamol|Robaxin|muscle relaxant +robber|1 +(noun)|thief|stealer +robber fly|1 +(noun)|bee killer|dipterous insect|two-winged insects|dipteran|dipteron +robber frog|2 +(noun)|barking frog|Hylactophryne augusti|frog|toad|toad frog|anuran|batrachian|salientian +(noun)|frog|toad|toad frog|anuran|batrachian|salientian +robbery|2 +(noun)|larceny|theft|thievery|thieving|stealing +(noun)|looting|plundering|pillage|pillaging +robbery conviction|1 +(noun)|conviction|judgment of conviction|condemnation|sentence +robbery suspect|1 +(noun)|suspect +robbins|1 +(noun)|Robbins|Jerome Robbins|choreographer +robe|3 +(noun)|garment +(noun)|gown|outerwear|overclothes +(verb)|vest|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +robe-de-chambre|1 +(noun)|dressing gown|lounging robe|robe +robed|1 +(adj)|appareled|attired|dressed|garbed|garmented|habilimented|clothed |clad +robert|1 +(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian +robert's rules of order|1 +(noun)|Robert's Rules of Order|order|rules of order|parliamentary law|parliamentary procedure +robert a. heinlein|1 +(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer|author +robert abram bartlett|1 +(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer|adventurer +robert adam|1 +(noun)|Adam|Robert Adam|architect|designer +robert alexander schumann|1 +(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer +robert andrews millikan|1 +(noun)|Millikan|Robert Andrews Millikan|physicist +robert anson heinlein|1 +(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer|author +robert barany|1 +(noun)|Barany|Robert Barany|doctor|doc|physician|MD|Dr.|medico +robert bartlett|1 +(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer|adventurer +robert benchley|1 +(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist|humourist|writer|author +robert boyle|1 +(noun)|Boyle|Robert Boyle|chemist +robert brown|1 +(noun)|Brown|Robert Brown|botanist|phytologist|plant scientist +robert browning|1 +(noun)|Browning|Robert Browning|poet +robert bruce mathias|1 +(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete|jock +robert bunsen|1 +(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist +robert burns|1 +(noun)|Burns|Robert Burns|poet +robert burns woodward|1 +(noun)|Woodward|Robert Burns Woodward|chemist +robert charles benchley|1 +(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist|humourist|writer|author +robert charles venturi|1 +(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect|designer +robert clive|1 +(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general|full general|statesman|solon|national leader +robert curl|1 +(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist +robert de niro|1 +(noun)|De Niro|Robert De Niro|actor|histrion|player|thespian|role player +robert e. lee|1 +(noun)|Lee|Robert E. Lee|Robert Edward Lee|general|full general +robert e. peary|1 +(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer|adventurer +robert e lee's birthday|1 +(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day +robert e lee day|1 +(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day +robert edward lee|1 +(noun)|Lee|Robert E. Lee|Robert Edward Lee|general|full general +robert edwin peary|1 +(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer|adventurer +robert emmet sherwood|1 +(noun)|Sherwood|Robert Emmet Sherwood|dramatist|playwright +robert f. curl|1 +(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist +robert falcon scott|1 +(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer|adventurer +robert floyd curl jr.|1 +(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist +robert frost|1 +(noun)|Frost|Robert Frost|Robert Lee Frost|poet +robert fulton|1 +(noun)|Fulton|Robert Fulton|inventor|discoverer|artificer +robert graves|1 +(noun)|Graves|Robert Graves|Robert Ranke Graves|writer|author +robert gray|1 +(noun)|Gray|Robert Gray|navigator +robert herrick|1 +(noun)|Herrick|Robert Herrick|poet +robert hooke|1 +(noun)|Hooke|Robert Hooke|scientist|man of science +robert hutchings goddard|1 +(noun)|Goddard|Robert Hutchings Goddard|physicist +robert i|1 +(noun)|Bruce|Robert the Bruce|Robert I|king|male monarch +robert james fischer|1 +(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master +robert jemison van de graaff|1 +(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist +robert joffrey|1 +(noun)|Joffrey|Robert Joffrey|choreographer +robert king merton|1 +(noun)|Merton|Robert Merton|Robert King Merton|sociologist +robert koch|1 +(noun)|Koch|Robert Koch|bacteriologist +robert lee frost|1 +(noun)|Frost|Robert Frost|Robert Lee Frost|poet +robert louis balfour stevenson|1 +(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer|author +robert louis stevenson|1 +(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer|author +robert lowell|1 +(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet +robert m. yerkes|1 +(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist +robert macgregor|1 +(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal|felon|crook|outlaw|malefactor +robert maynard hutchins|1 +(noun)|Hutchins|Robert Maynard Hutchins|educator|pedagogue +robert mearns yerkes|1 +(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist +robert merton|1 +(noun)|Merton|Robert Merton|Robert King Merton|sociologist +robert mills|1 +(noun)|Mills|Robert Mills|architect|designer +robert mitchum|1 +(noun)|Mitchum|Robert Mitchum|actor|histrion|player|thespian|role player +robert morris|1 +(noun)|Morris|Robert Morris|American Revolutionary leader|financier|moneyman +robert motherwell|1 +(noun)|Motherwell|Robert Motherwell|painter +robert nesta marley|1 +(noun)|Marley|Robert Nesta Marley|Bob Marley|singer|vocalist|vocalizer|vocaliser +robert oppenheimer|1 +(noun)|Oppenheimer|Robert Oppenheimer|nuclear physicist +robert orr|1 +(noun)|Orr|Bobby Orr|Robert Orr|hockey player|ice-hockey player +robert owen|1 +(noun)|Owen|Robert Owen|industrialist|reformer|reformist|crusader|meliorist +robert peary|1 +(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer|adventurer +robert peel|1 +(noun)|Peel|Robert Peel|Sir Robert Peel|politician|politico|pol|political leader +robert penn warren|1 +(noun)|Warren|Robert Penn Warren|writer|author|poet +robert r. livingston|1 +(noun)|Livingston|Robert R. Livingston|American Revolutionary leader +robert ranke graves|1 +(noun)|Graves|Robert Graves|Robert Ranke Graves|writer|author +robert redford|1 +(noun)|Redford|Robert Redford|Charles Robert Redford|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +robert robinson|1 +(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist +robert schumann|1 +(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer +robert scott|1 +(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer|adventurer +robert southey|1 +(noun)|Southey|Robert Southey|poet +robert the bruce|1 +(noun)|Bruce|Robert the Bruce|Robert I|king|male monarch +robert traill spence lowell jr.|1 +(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet +robert treat paine|1 +(noun)|Paine|Robert Treat Paine|American Revolutionary leader +robert tyre jones|1 +(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer|golf player|linksman +robert van de graaff|1 +(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist +robert venturi|1 +(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect|designer +robert walpole|1 +(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman|solon|national leader +robert wilhelm bunsen|1 +(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist +robert william service|1 +(noun)|Service|Robert William Service|writer|author +robert woodrow wilson|1 +(noun)|Wilson|Robert Woodrow Wilson|physicist +roberto francesco romolo bellarmine|1 +(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal|theologian|theologist|theologizer|theologiser +roberts|5 +(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist +(noun)|Roberts|Oral Roberts|evangelist|revivalist|gospeler|gospeller +(noun)|Roberts|Kenneth Roberts|writer|author +(noun)|Roberts|Bartholomew Roberts|pirate|buccaneer|sea robber|sea rover +(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian +robertson|1 +(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard +robeson|1 +(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer|vocalist|vocalizer|vocaliser|civil rights leader|civil rights worker|civil rights activist +robespierre|1 +(noun)|Robespierre|Maxmillien Marie Isidore de Robespierre|revolutionist|revolutionary|subversive|subverter +robin|2 +(noun)|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush +(noun)|American robin|Turdus migratorius|thrush +robin's plantain|1 +(noun)|Erigeron pulchellus|fleabane +robin goodfellow|1 +(noun)|Puck|Robin Goodfellow|fairy|faery|faerie|sprite +robin hood|1 +(noun)|Robin Hood|fictional character|fictitious character|character +robin redbreast|1 +(noun)|robin|redbreast|Old World robin|Erithacus rubecola|thrush +robinia|1 +(noun)|Robinia|genus Robinia|rosid dicot genus +robinia hispida|1 +(noun)|bristly locust|rose acacia|moss locust|Robinia hispida|shrub|bush +robinia pseudoacacia|1 +(noun)|black locust|yellow locust|Robinia pseudoacacia|locust tree|locust +robinia viscosa|1 +(noun)|clammy locust|Robinia viscosa|locust tree|locust +robinson|7 +(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist +(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter|gladiator +(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist|playwright +(noun)|Robinson|James Harvey Robinson|historian|historiographer +(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer|baseball player +(noun)|Robinson|Edwin Arlington Robinson|poet +(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor|histrion|player|thespian|role player +robinson crusoe|1 +(noun)|Robinson Crusoe|fictional character|fictitious character|character +robinson jeffers|1 +(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet +robitussin|1 +(noun)|Robitussin|expectorant|expectorator +roble|2 +(noun)|Platymiscium trinitatis|quira +(noun)|California white oak|valley oak|valley white oak|Quercus lobata|white oak +roble beech|1 +(noun)|Nothofagus obliqua|southern beech|evergreen beech +robolo|1 +(noun)|percoid fish|percoid|percoidean +robot|1 +(noun)|automaton|golem|mechanism +robot bomb|1 +(noun)|buzz bomb|flying bomb|doodlebug|V-1|guided missile +robot pilot|1 +(noun)|autopilot|automatic pilot|device +robotic telesurgery|1 +(noun)|microsurgery +robotics|1 +(noun)|artificial intelligence|AI +robotics equipment|1 +(noun)|equipment +robotlike|1 +(adj)|automatic|automatonlike|machinelike|mechanical +robust|4 +(adj)|robust |beefy|burly|husky|strapping|buirdly|big-boned|big-chested|chesty|big-shouldered|broad-shouldered|square-shouldered|cast-iron|iron|hardy|stalwart|stout|sturdy|heavy-armed|square-built|vigorous|rugged |healthy|strong +(adj)|full-bodied|rich|tasteful +(adj)|strong +(adj)|unrefined +robusta coffee|1 +(noun)|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee|coffee tree +robustious|1 +(adj)|boisterous|rambunctious|rumbustious|unruly|disorderly +robustness|1 +(noun)|hardiness|lustiness|strength +roc|1 +(noun)|mythical monster|mythical creature +rocambole|1 +(noun)|sand leek|giant garlic|Spanish garlic|Allium scorodoprasum|alliaceous plant +roccella|1 +(noun)|Roccella tinctoria|lichen +roccella tinctoria|1 +(noun)|roccella|Roccella tinctoria|lichen +roccellaceae|1 +(noun)|Roccellaceae|family Roccellaceae|fungus family +rocco marciano|1 +(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter|gladiator +roccus|1 +(noun)|Roccus|genus Roccus|fish genus +roccus saxatilis|1 +(noun)|striped bass|striper|Roccus saxatilis|rockfish|sea bass +rocephin|1 +(noun)|ceftriaxone|Rocephin|cephalosporin|Mefoxin +rochambeau|1 +(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general|full general +rochelle powder|1 +(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative|cathartic|physic|aperient +rochelle salt|1 +(noun)|Rochelle salt|Rochelle salts|double salt +rochelle salts|2 +(noun)|Rochelle salt|Rochelle salts|double salt +(noun)|Rochelle salt|Rochelle salts|double salt +rochester|2 +(noun)|Rochester|city|metropolis|urban center +(noun)|Rochester|town +rochon prism|1 +(noun)|Rochon prism|Wollaston prism|optical device +rock|9 +(noun)|stone|natural object +(noun)|stone|material|stuff +(noun)|Rock|John Rock|gynecologist|gynaecologist|woman's doctor +(noun)|good person +(noun)|rock candy|candy +(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock music|popular music|popular music genre +(noun)|careen|sway|tilt|lurch|pitch|pitching +(verb)|sway|shake|move back and forth +(verb)|sway|move|displace +rock'n'roll|1 +(noun)|rock 'n' roll|rock-and-roll|rock and roll|rock|rock music|popular music|popular music genre +rock-and-roll|2 +(noun)|rock 'n' roll|rock'n'roll|rock and roll|rock|rock music|popular music|popular music genre +(noun)| +rock-bottom|1 +(adj)|reduced|low +rock-ribbed|2 +(adj)|rockbound|cliffy |clifflike +(adj)|die-hard|inflexible +rock-steady|1 +(adj)|dependable|steady-going|steady +rock and roll|2 +(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock|rock music|popular music|popular music genre +(noun)| +rock band|1 +(noun)|rock group|dance band|band|dance orchestra +rock barnacle|1 +(noun)|acorn barnacle|Balanus balanoides|barnacle|cerriped|cerripede +rock bass|2 +(noun)|rock sea bass|Centropristis philadelphica|sea bass +(noun)|rock sunfish|Ambloplites rupestris|sunfish|centrarchid +rock beauty|1 +(noun)|Holocanthus tricolor|butterfly fish +rock bit|1 +(noun)|roller bit|drilling bit|drill bit +rock bottom|1 +(noun)|bottom +rock brake|3 +(noun)|cliff brake|cliff-brake|fern +(noun)|fern +(noun)|rock polypody|American wall fern|Polypodium virgianum|polypody +rock cake|1 +(noun)|cake +rock candy|2 +(noun)|rock|candy +(noun)|candy +rock climber|1 +(noun)|cragsman|climber +rock climbing|1 +(noun)|sport|athletics|climb|mount +rock concert|1 +(noun)|concert +rock cornish|1 +(noun)|Rock Cornish|domestic fowl|fowl|poultry +rock cornish hen|1 +(noun)|Rock Cornish hen|poultry +rock crab|1 +(noun)|Cancer irroratus|crab +rock cress|2 +(noun)|rockcress|cress|cress plant +(noun)|yellow rocket|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed +rock crystal|1 +(noun)|transparent quartz|quartz +rock dove|1 +(noun)|rock pigeon|Columba livia|pigeon +rock drill|1 +(noun)|bore bit|borer|stone drill|drill +rock elm|2 +(noun)|Ulmus thomasii|elm|elm tree +(noun)|American elm|white elm|water elm|Ulmus americana|elm|elm tree +rock fever|1 +(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +rock garden|1 +(noun)|rockery|garden +rock geranium|1 +(noun)|Heuchera americana|alumroot|alumbloom +rock group|1 +(noun)|rock band|dance band|band|dance orchestra +rock gunnel|1 +(noun)|butterfish|Pholis gunnellus|gunnel|bracketed blenny +rock harlequin|1 +(noun)|Roman wormwood|Corydalis sempervirens|Fumaria sempervirens|Corydalis|genus Corydalis +rock hind|1 +(noun)|Epinephelus adscensionis|hind +rock hopper|1 +(noun)|crested penguin|penguin +rock hyrax|1 +(noun)|rock rabbit|Procavia capensis|hyrax|coney|cony|dassie|das +rock island|1 +(noun)|Rock Island|town +rock kangaroo|1 +(noun)|rock wallaby|wallaby|brush kangaroo +rock lobster|2 +(noun)|spiny lobster|langouste|crayfish|shellfish +(noun)|spiny lobster|langouste|crawfish|crayfish|sea crawfish|lobster +rock maple|1 +(noun)|sugar maple|Acer saccharum|maple +rock music|1 +(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|popular music|popular music genre +rock of gibraltar|1 +(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony|settlement|promontory|headland|foreland +rock oil|1 +(noun)|petroleum|crude oil|crude|fossil oil|oil|fossil fuel +rock opera|1 +(noun)|concept album +rock outcrop|1 +(noun)|outcrop|outcropping|rock|stone +rock partridge|1 +(noun)|Greek partridge|Alectoris graeca|partridge +rock penstemon|1 +(noun)|cliff penstemon|Penstemon rupicola|wildflower|wild flower +rock pigeon|1 +(noun)|rock dove|Columba livia|pigeon +rock pink|1 +(noun)|Talinum calycinum|flame flower|flame-flower|flameflower|Talinum aurantiacum +rock plant|1 +(noun)|plant|flora|plant life +rock polypody|1 +(noun)|rock brake|American wall fern|Polypodium virgianum|polypody +rock purslane|1 +(noun)|herb|herbaceous plant +rock python|1 +(noun)|rock snake|Python sebae|python +rock rabbit|2 +(noun)|rock hyrax|Procavia capensis|hyrax|coney|cony|dassie|das +(noun)|pika|mouse hare|coney|cony|lagomorph|gnawing mammal +rock rattlesnake|1 +(noun)|Crotalus lepidus|rattlesnake|rattler +rock rose|3 +(noun)|rockrose|helianthemum|sunrose|sun rose +(noun)|rockrose|shrub|bush +(noun)| +rock salmon|1 +(noun)|fish +rock salt|1 +(noun)|halite|sodium chloride|common salt|mineral +rock sandwort|1 +(noun)|Arenaria stricta|sandwort +rock sea bass|1 +(noun)|rock bass|Centropristis philadelphica|sea bass +rock snake|1 +(noun)|rock python|Python sebae|python +rock spikemoss|1 +(noun)|dwarf lycopod|Selaginella rupestris|spikemoss|spike moss|little club moss +rock springs|1 +(noun)|Rock Springs|town +rock squirrel|1 +(noun)|Citellus variegatus|ground squirrel|gopher|spermophile +rock star|1 +(noun)|rocker|rock 'n' roll musician|singer|vocalist|vocalizer|vocaliser +rock sunfish|1 +(noun)|rock bass|Ambloplites rupestris|sunfish|centrarchid +rock wallaby|1 +(noun)|rock kangaroo|wallaby|brush kangaroo +rock wool|1 +(noun)|mineral wool|insulator|dielectric|nonconductor +rock wren|2 +(noun)|Xenicus gilviventris|New Zealand wren +(noun)|Salpinctes obsoletus|wren|jenny wren +rockabilly|1 +(noun)|popular music|popular music genre +rockbound|1 +(adj)|rock-ribbed|cliffy |clifflike +rockchuck|1 +(noun)|yellowbelly marmot|Marmota flaviventris|marmot +rockcress|2 +(noun)|yellow rocket|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed +(noun)|rock cress|cress|cress plant +rockefeller|1 +(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist|philanthropist|altruist +rocker|7 +(noun)|attendant|attender|tender +(noun)|rock 'n' roll musician|musician|instrumentalist|player +(noun)|adolescent|stripling|teenager +(noun)|rocking chair|chair +(noun)|cradle|trough +(noun)|ice skate +(noun)|support +rocker arm|1 +(noun)|valve rocker|lever +rockers|8 +(noun)|bikers|youth subculture +(noun)|rocker|attendant|attender|tender +(noun)|rocker|rock 'n' roll musician|musician|instrumentalist|player +(noun)|rocker|adolescent|stripling|teenager +(noun)|rocking chair|rocker|chair +(noun)|rocker|cradle|trough +(noun)|rocker|ice skate +(noun)|rocker|support +rockery|1 +(noun)|rock garden|garden +rocket|7 +(noun)|vehicle +(noun)|rocket engine|jet engine +(noun)|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +(noun)|skyrocket|visual signal +(noun)|skyrocket|firework|pyrotechnic +(verb)|skyrocket|rise|lift|arise|move up|go up|come up|uprise +(verb)|propel|impel +rocket-propelled|1 +(adj)|reaction propulsion +rocket base|1 +(noun)|base|base of operations +rocket cress|1 +(noun)|yellow rocket|rockcress|Barbarea vulgaris|Sisymbrium barbarea|weed +rocket engine|1 +(noun)|rocket|jet engine +rocket engineer|1 +(noun)|rocket scientist|engineer|applied scientist|technologist +rocket firing|1 +(noun)|rocket launching|launching|launch +rocket fuel|1 +(noun)|rocket propellant|rocket propellent|charge|burster|bursting charge|explosive charge|propellant|propellent +rocket larkspur|1 +(noun)|Consolida ambigua|Delphinium ajacis|flower +rocket launcher|1 +(noun)|launcher|armament +rocket launching|1 +(noun)|rocket firing|launching|launch +rocket propellant|1 +(noun)|rocket fuel|rocket propellent|charge|burster|bursting charge|explosive charge|propellant|propellent +rocket propellent|1 +(noun)|rocket fuel|rocket propellant|charge|burster|bursting charge|explosive charge|propellant|propellent +rocket propulsion|1 +(noun)|reaction propulsion +rocket range|1 +(noun)|firing range|target range +rocket salad|1 +(noun)|rocket|roquette|garden rocket|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +rocket scientist|2 +(noun)|thinker +(noun)|rocket engineer|engineer|applied scientist|technologist +rocketry|1 +(noun)|engineering|engineering science|applied science|technology +rockfish|3 +(noun)|saltwater fish +(noun)|scorpaenid|scorpaenid fish +(noun)|striped bass|striper|Roccus saxatilis|sea bass +rockfoil|1 +(noun)|saxifrage|breakstone|herb|herbaceous plant +rockford|1 +(noun)|Rockford|city|metropolis|urban center +rockies|1 +(noun)|Rockies|Rocky Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +rocking chair|1 +(noun)|rocker|chair +rocking horse|1 +(noun)|hobby|hobbyhorse|plaything|toy +rockingham|1 +(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman|solon|national leader +rockingham podocarp|1 +(noun)|brown pine|Rockingham podocarp|Podocarpus elatus|conifer|coniferous tree +rocklike|1 +(adj)|granitic|granitelike|stony|hard +rockrose|2 +(noun)|rock rose|helianthemum|sunrose|sun rose +(noun)|rock rose|shrub|bush +rockrose family|1 +(noun)|Cistaceae|family Cistaceae|dilleniid dicot family +rockslide|1 +(noun)|landslide|landslip +rockweed|1 +(noun)|brown algae +rockwell|1 +(noun)|Rockwell|Norman Rockwell|illustrator +rockwell kent|1 +(noun)|Kent|Rockwell Kent|painter +rocky|3 +(adj)|bouldery|bouldered|stony|rough |unsmooth +(adj)|unstable +(adj)|rough|difficult |hard +rocky-mountain maple|1 +(noun)|dwarf maple|Rocky-mountain maple|Acer glabrum|maple +rocky marciano|1 +(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter|gladiator +rocky mountain|1 +(adj)|Rocky Mountain|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +rocky mountain bee plant|1 +(noun)|Rocky Mountain bee plant|stinking clover|Cleome serrulata|spiderflower|cleome +rocky mountain bighorn|1 +(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +rocky mountain bristlecone pine|1 +(noun)|bristlecone pine|Rocky Mountain bristlecone pine|Pinus aristata|pine|pine tree|true pine +rocky mountain dogbane|1 +(noun)|Rocky Mountain dogbane|Apocynum pumilum|dogbane +rocky mountain goat|1 +(noun)|mountain goat|Rocky Mountain goat|Oreamnos americanus|goat antelope +rocky mountain jay|1 +(noun)|Rocky Mountain jay|Perisoreus canadensis capitalis|Canada jay|gray jay|camp robber|whisker jack|Perisoreus canadensis +rocky mountain national park|1 +(noun)|Rocky Mountain National Park|national park +rocky mountain pinon|1 +(noun)|Rocky mountain pinon|Pinus edulis|nut pine +rocky mountain sheep|1 +(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep +rocky mountain spotted fever|1 +(noun)|Rocky Mountain spotted fever|mountain fever|tick fever|spotted fever +rocky mountain whitefish|1 +(noun)|Rocky Mountain whitefish|Prosopium williamsonii|whitefish +rocky mountains|1 +(noun)|Rockies|Rocky Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +rocky mountains cherry|1 +(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub|suffrutex +rococo|2 +(adj)|fancy +(noun)|artistic style|idiom +rocroi|1 +(noun)|Rocroi|Battle of Rocroi|pitched battle +rod|6 +(noun)|perch|pole|linear unit +(noun)|implement +(noun)|bacteria|bacterium +(noun)|perch|pole|area unit|square measure +(noun)|rod cell|retinal rod|visual cell +(noun)|gat|pistol|handgun|side arm|shooting iron +rod-shaped|2 +(adj)|baccilar|bacillary|bacilliform|baculiform|formed +(adj)|rodlike|rounded +rod cell|1 +(noun)|rod|retinal rod|visual cell +rod laver|1 +(noun)|Laver|Rod Laver|Rodney George Laver|tennis player +rodent|1 +(noun)|gnawer|gnawing animal|placental|placental mammal|eutherian|eutherian mammal +rodentia|1 +(noun)|Rodentia|order Rodentia|animal order +rodeo|2 +(noun)|exhibition +(noun)|pen +rodeo rider|1 +(noun)|cowboy|performer|performing artist +rodgers|1 +(noun)|Rodgers|Richard Rodgers|composer +rodhos|1 +(noun)|Rhodes|Rodhos|Aegean island +rodin|1 +(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor|sculpturer|carver|statue maker +rodlike|1 +(adj)|rod-shaped|rounded +rodney george laver|1 +(noun)|Laver|Rod Laver|Rodney George Laver|tennis player +rodolia|1 +(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus +rodolia cardinalis|1 +(noun)|vedalia|Rodolia cardinalis|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +rodomontade|1 +(noun)|braggadocio|bluster|rhodomontade|boast|boasting|self-praise|jactitation +rodrigo borgia|1 +(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +rodya raskolnikov|1 +(noun)|Raskolnikov|Rodya Raskolnikov|fictional character|fictitious character|character +roe|4 +(noun)|hard roe|seafood +(noun)|egg +(noun)|spawn +(noun)|egg +roe deer|1 +(noun)|Capreolus capreolus|deer|cervid +roebling|1 +(noun)|Roebling|John Roebling|John Augustus Roebling|engineer|applied scientist|technologist +roebuck|1 +(noun)|roe deer|Capreolus capreolus +roentgen|2 +(noun)|R|radioactivity unit +(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist +roentgen ray|1 +(noun)|X ray|X-radiation|electromagnetic radiation|electromagnetic wave|nonparticulate radiation|ionizing radiation +roentgenogram|1 +(noun)|X ray|X-ray picture|X-ray photograph|radiogram|radiograph|shadowgraph|skiagraph|skiagram +roentgenographic|1 +(adj)|radiography|diagnostic procedure|diagnostic technique +roentgenography|1 +(noun)|X-ray photography|radiography|diagnostic procedure|diagnostic technique +roentgenoscope|1 +(noun)|fluoroscope|X-ray machine +rofecoxib|1 +(noun)|Vioxx|Cox-2 inhibitor +rogaine|1 +(noun)|minoxidil|Loniten|Rogaine|vasodilator|vasodilative +rogation|1 +(noun)|invocation|supplication +rogation day|1 +(noun)|Rogation Day|Christian holy day +roger bacon|1 +(noun)|Bacon|Roger Bacon|monk|monastic|scientist|man of science +roger bannister|1 +(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man +roger brooke taney|1 +(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice +roger de mortimer|1 +(noun)|Mortimer|Roger de Mortimer|Lord|noble|nobleman +roger eliot fry|1 +(noun)|Fry|Roger Fry|Roger Eliot Fry|painter|art critic +roger fry|1 +(noun)|Fry|Roger Fry|Roger Eliot Fry|painter|art critic +roger huntington sessions|1 +(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer +roger sessions|1 +(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer +roger sherman|1 +(noun)|Sherman|Roger Sherman|American Revolutionary leader +roger taney|1 +(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice +roger williams|1 +(noun)|Williams|Roger Williams|clergyman|reverend|man of the cloth|settler|colonist +rogers|3 +(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist|humourist +(noun)|Rogers|Ginger Rogers|Virginia McMath|dancer|professional dancer|actress +(noun)|Rogers|Carl Rogers|psychologist +roget|1 +(noun)|Roget|Peter Mark Roget|doctor|doc|physician|MD|Dr.|medico +rogue|1 +(noun)|knave|rascal|rapscallion|scalawag|scallywag|varlet|villain|scoundrel +rogue's gallery|2 +(noun)|galere|clique|coterie|ingroup|inner circle|pack|camp +(noun)|collection|aggregation|accumulation|assemblage +rogue elephant|1 +(noun)|elephant +rogue nation|1 +(noun)|rogue state|renegade state|state|nation|country|land|commonwealth|res publica|body politic +rogue state|1 +(noun)|renegade state|rogue nation|state|nation|country|land|commonwealth|res publica|body politic +roguery|1 +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguishness|shenanigan|misbehavior|misbehaviour|misdeed +roguish|2 +(adj)|devilish|rascally|playful +(adj)|rascally|scoundrelly|blackguardly|dishonest |dishonorable +roguishness|2 +(noun)|prankishness|rascality|naughtiness|mischievousness|badness +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|shenanigan|misbehavior|misbehaviour|misdeed +rohypnol|1 +(noun)|flunitrazepan|Rohypnol|club drug +roil|2 +(verb)|churn|boil|moil|move +(verb)|rile|agitate|vex|disturb|commove|shake up|stir up|raise up +roiled|2 +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|steamed|stunng|displeased +(adj)|churning|roiling|roily|turbulent|agitated +roiling|1 +(adj)|churning|roiled|roily|turbulent|agitated +roily|1 +(adj)|churning|roiling|roiled|turbulent|agitated +roister|1 +(verb)|carouse|riot|revel|racket|make whoopie|make merry|make happy|whoop it up|jollify|wassail +roisterer|1 +(noun)|reveler|reveller|merrymaker +rolaids|1 +(noun)|Rolaids|antacid|gastric antacid|alkalizer|alkaliser|antiacid +roland de lassus|1 +(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer +rolando's area|1 +(noun)|motor area|motor region|motor cortex|Rolando's area|excitable area|cortical area|cortical region +rolando's fissure|1 +(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus centralis|sulcus +role|4 +(noun)|function|office|part|duty +(noun)|character|theatrical role|part|persona|portrayal|characterization|enactment|personation +(noun)|function|purpose|use|utility|usefulness +(noun)|activity +role model|1 +(noun)|model|leader +role player|2 +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|actor|histrion|player|thespian|performer|performing artist +roleplay|1 +(verb)|act|play|playact|perform +roleplaying|1 +(noun)|acting|playing|playacting|performing +rolf|1 +(noun)|Rollo|Rolf|Hrolf|headman|tribal chief|chieftain +roll|33 +(noun)|axial rotation|axial motion|rotation|revolution|gyration +(noun)|roster|list|listing +(noun)|roller|rolling wave|wave|moving ridge +(noun)|film|photographic film +(noun)|coil|whorl|curl|curlicue|ringlet|gyre|scroll|round shape +(noun)|bankroll|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|bun|bread|breadstuff|staff of life +(noun)|peal|pealing|rolling|sound +(noun)|paradiddle|drum roll|sound +(noun)|scroll|manuscript|holograph +(noun)|cylinder +(noun)|cast|throw +(noun)|gait +(noun)|flight maneuver|airplane maneuver +(noun)|propulsion|actuation +(verb)|turn over|turn|roll down|roll over +(verb)|wheel|travel|go|move|locomote +(verb)|undulate +(verb)|roll out|flatten +(verb)|sound|go +(verb)|wind|wrap|twine|move|displace|roll up +(verb)|function|work|operate|go|run +(verb)|shape|form +(verb)|tumble +(verb)|hustle|pluck|steal +(verb)|undulate|flap|wave|move +(verb)|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +(verb)|rock|sway|shake +(verb)|revolve|move|displace +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|seethe|churn|boil|moil|roil +(verb)|change shape|change form|deform +(verb)|roll up|change +roll-on|2 +(noun)|dispenser +(noun)|foundation garment|foundation +roll-on roll-off|1 +(noun)|conveyance|transport +roll around|1 +(verb)|come around|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +roll call|1 +(noun)|utterance|vocalization +roll down|1 +(verb)|avalanche|descend|fall|go down|come down +roll film|1 +(noun)|film|photographic film +roll in|1 +(verb)|appear +roll in the hay|2 +(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +(verb)|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +roll of tobacco|1 +(noun)|smoke|tobacco|baccy +roll off|1 +(verb)|rattle down|rattle off|reel off|spiel off|recite +roll out|2 +(verb)|roll|flatten +(verb)|straighten|unwind|disentangle +roll over|3 +(verb)|turn +(verb)|renegociate|renegotiate +(verb)|invest|put|commit|place +roll up|6 +(verb)|furl|change shape|change form|deform +(verb)|collect|accumulate|pile up|amass|compile|hoard|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|arrive|get|come +(verb)|bundle|bundle up|pack +(verb)|wrap up|change surface +(verb)|roll|change +rollback|2 +(noun)|push back|offense|offence|offensive +(noun)|decrease|diminution|reduction|step-down +rolled|4 +(adj)|involute|coiled +(adj)|rolling|trilled|pronounceable +(adj)|rolled-up|folded +(adj)|furled|bound +rolled-up|1 +(adj)|rolled|folded +rolled biscuit|1 +(noun)|biscuit +rolled into one|1 +(adj)|combined +rolled oats|1 +(noun)|oatmeal|meal +rolled out|1 +(adj)|unrolled|extended +roller|7 +(noun)|grounder|ground ball|groundball|hopper +(noun)|roll|rolling wave|wave|moving ridge +(noun)|wheel +(noun)|cylinder +(noun)|curler|hair curler|crimper|mechanical device +(noun)|coraciiform bird +(noun)|tumbler|tumbler pigeon|domestic pigeon +roller-skater|1 +(noun)|skater +roller bandage|1 +(noun)|bandage|patch +roller bearing|1 +(noun)|ball bearing|needle bearing|bearing +roller bit|1 +(noun)|rock bit|drilling bit|drill bit +roller blade|2 +(noun)|in-line skate|skate +(verb)|skate +roller blind|1 +(noun)|window shade +roller coaster|2 +(noun)|turbulence|upheaval|Sturm und Drang +(noun)|big dipper|chute-the-chute|elevated railway|elevated railroad|el|overhead railway|ride +roller skate|2 +(noun)|skate +(verb)|skate +roller skating|1 +(noun)|skating +roller towel|1 +(noun)|towel +rollick|1 +(verb)|frolic|lark|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play +rollicking|1 +(adj)|coltish|frolicsome|frolicky|sportive|playful +rollickingly|1 +(adv)|boisterously +rolling|6 +(adj)|resonant|resonating|resounding|reverberating|reverberative|reverberant |ringing +(adj)|rolled|trilled|pronounceable +(adj)|billowing|tumbling|moving +(noun)|peal|pealing|roll|sound +(noun)|robbery +(noun)|wheeling|propulsion|actuation +rolling hitch|1 +(noun)|hitch +rolling mill|1 +(noun)|steel mill|steelworks|steel plant|steel factory +rolling paper|1 +(noun)|cigarette paper|tissue|tissue paper +rolling pin|1 +(noun)|kitchen utensil +rolling stock|1 +(noun)|wheeled vehicle +rolling wave|1 +(noun)|roller|roll|wave|moving ridge +rollmops|1 +(noun)|pickled herring|hors d'oeuvre +rollo|1 +(noun)|Rollo|Rolf|Hrolf|headman|tribal chief|chieftain +rollover|1 +(noun)|change +roly-poly|2 +(noun)|fatso|fatty|fat person|butterball|large person +(noun)|roly-poly pudding|pudding +roly-poly pudding|1 +(noun)|roly-poly|pudding +rolypoliness|1 +(noun)|chubbiness|pudginess|tubbiness|plumpness|embonpoint +rom|1 +(noun)|read-only memory|ROM|read-only storage|fixed storage|memory|computer memory|storage|computer storage|store|memory board +roma|3 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital +(noun)|read-only memory|ROM|read-only storage|fixed storage|memory|computer memory|storage|computer storage|store|memory board +romaic|2 +(adj)|Balkan country|Balkan nation|Balkan state +(noun)|Romaic|Demotic|Modern Greek +romaine|1 +(noun)|cos|cos lettuce|romaine lettuce|lettuce +romaine lettuce|2 +(noun)|cos lettuce|Lactuca sativa longifolia|lettuce +(noun)|cos|cos lettuce|romaine|lettuce +roman|7 +(adj)|Roman|Italian +(adj)|Roman|national capital +(adj)|Roman|proportional font +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity +(noun)|Roman|Italian +(noun)|Roman|European +(noun)|roman type|roman letters|roman print|proportional font +roman a clef|1 +(noun)|novel +roman alphabet|1 +(noun)|Roman alphabet|Latin alphabet|alphabet +roman arch|1 +(noun)|Roman arch|semicircular arch|round arch +roman architecture|1 +(noun)|Roman architecture|classical architecture|Greco-Roman architecture +roman building|1 +(noun)|Roman building|building|edifice|antiquity +roman calendar|1 +(noun)|Roman calendar|lunar calendar +roman candle|1 +(noun)|Roman candle|firework|pyrotechnic +roman catholic|3 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity +(noun)|Roman Catholic|Catholic +(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church +roman catholic church|1 +(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church +roman catholic pope|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +roman catholicism|1 +(noun)|Romanism|Roman Catholicism|Catholicism|Catholicity +roman church|1 +(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church +roman collar|1 +(noun)|clerical collar|Roman collar|dog collar|collar|neckband +roman coriander|1 +(noun)|black caraway|nutmeg flower|Roman coriander|Nigella sativa|nigella +roman deity|1 +(noun)|Roman deity|deity|divinity|god|immortal +roman emperor|1 +(noun)|Roman Emperor|Emperor of Rome|Emperor +roman empire|1 +(noun)|Roman Empire|empire +roman fleuve|1 +(noun)|novel +roman hyacinth|1 +(noun)|Roman hyacinth|Hyacinthus orientalis albulus|hyacinth +roman jakobson|1 +(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist|linguistic scientist +roman law|1 +(noun)|Roman law|Justinian code|civil law|jus civile|legal code +roman legion|1 +(noun)|Roman Legion|host|legion +roman letters|1 +(noun)|roman|roman type|roman print|proportional font +roman mile|1 +(noun)|mile|Roman mile|linear unit +roman mythology|1 +(noun)|Roman mythology|classical mythology +roman nettle|1 +(noun)|Roman nettle|Urtica pipulifera|nettle +roman nose|1 +(noun)|Roman nose|hooknose|nose|olfactory organ +roman numeral|1 +(noun)|Roman numeral|numeral|number +roman osipovich jakobson|1 +(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist|linguistic scientist +roman pace|1 +(noun)|Roman pace|linear unit +roman print|1 +(noun)|roman|roman type|roman letters|proportional font +roman republic|1 +(noun)|Roman Republic|republic +roman type|1 +(noun)|roman|roman letters|roman print|proportional font +roman wormwood|2 +(noun)|Roman wormwood|Artemis pontica|wormwood +(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis|genus Corydalis +romanal|1 +(noun)|Romanal|artificial language +romance|10 +(adj)|Romance|Latin|Latin +(noun)|love affair|relationship +(noun)|romanticism|quality +(noun)|Romance|Romance language|Latinian language|Latin +(noun)|love story|story +(noun)|novel +(verb)|woo|court|solicit|act|move +(verb)|love +(verb)|chat up|flirt|dally|butterfly|coquet|coquette|philander|mash|talk|speak +(verb)|lie +romance language|1 +(noun)|Romance|Romance language|Latinian language|Latin +romanesque|1 +(noun)|Romanesque|Romanesque architecture|architectural style|style of architecture|type of architecture +romanesque architecture|1 +(noun)|Romanesque|Romanesque architecture|architectural style|style of architecture|type of architecture +romani|1 +(adj)|Romany|Romani|itinerant +romania|1 +(noun)|Romania|Roumania|Rumania|Balkan country|Balkan nation|Balkan state +romanian|3 +(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state +(noun)|Romanian|Rumanian|European +(noun)|Romanian|Rumanian|Romance|Romance language|Latinian language +romanian monetary unit|1 +(noun)|Romanian monetary unit|monetary unit +romanise|1 +(verb)|Romanize|Romanise|latinize|latinise|transliterate|transcribe +romanism|1 +(noun)|Romanism|Roman Catholicism|Catholicism|Catholicity +romanist|1 +(adj)|Roman|r.c.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity +romanize|1 +(verb)|Romanize|Romanise|latinize|latinise|transliterate|transcribe +romanoff|1 +(noun)|Romanov|Romanoff|royalty|royal family|royal line|royal house|dynasty +romanov|1 +(noun)|Romanov|Romanoff|royalty|royal family|royal line|royal house|dynasty +romans|4 +(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|book +(noun)|Roman|Italian +(noun)|Roman|European +(noun)|roman|roman type|roman letters|roman print|proportional font +romansh|2 +(adj)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic +(noun)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic +romantic|5 +(adj)|romanticist|romanticistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +(adj)|amatory|amorous|loving +(adj)|quixotic|wild-eyed|impractical +(noun)|idealist|dreamer +(noun)|romanticist|artist|creative person +romantic realism|1 +(noun)|Hudson River school|artistic movement|art movement +romanticisation|1 +(noun)|sentimentalization|sentimentalisation|romanticization|idealization|idealisation|glorification +romanticise|2 +(verb)|romanticize|glamorize|glamourise|idealize|idealise +(verb)|romanticize|change|alter|modify +romanticism|3 +(noun)|idealism +(noun)|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +(noun)|romance|quality +romanticist|3 +(adj)|romantic|romanticistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +(noun)|sentimentalist|person|individual|someone|somebody|mortal|human|soul +(noun)|romantic|artist|creative person +romanticistic|1 +(adj)|romantic|romanticist|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom +romanticization|1 +(noun)|sentimentalization|sentimentalisation|romanticisation|idealization|idealisation|glorification +romanticize|3 +(verb)|romanticise|glamorize|glamourise|idealize|idealise +(verb)|romanticise|change|alter|modify +(verb)|act|behave|do +romany|3 +(adj)|Romany|Romani|itinerant +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +(noun)|Romany|Gypsy|Sanskrit|Sanskritic language +romberg|1 +(noun)|Romberg|Sigmund Romberg|composer +rome|2 +(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital +(noun)|Rome|leadership|leaders +rome beauty|1 +(noun)|Rome Beauty|cooking apple +romeo|1 +(noun)|Romeo|lover +romish|1 +(adj)|Roman|r.c.|Romanist|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity +rommany|1 +(noun)|Gypsy|Gipsy|Romany|Rommany|Roma|Bohemian|itinerant +rommel|1 +(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal +romneya|1 +(noun)|Romneya|genus Romneya|dilleniid dicot genus +romneya coulteri|1 +(noun)|matilija poppy|California tree poppy|Romneya coulteri|subshrub|suffrutex +romp|6 +(noun)|runaway|blowout|laugher|shoo-in|walkaway|victory|triumph +(noun)|tomboy|hoyden|girl|miss|missy|young lady|young woman|fille +(noun)|play|frolic|gambol|caper|diversion|recreation +(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|run around|lark about|play +(verb)|run +(verb)|win +romper|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|rompers|romper suit|garment +romper suit|1 +(noun)|romper|rompers|garment +rompers|3 +(noun)|romper|romper suit|garment +(noun)|romper|person|individual|someone|somebody|mortal|human|soul +(noun)|romper|romper suit|garment +romulus|1 +(noun)|Romulus|mythical being +ron|1 +(noun)|Ron|Bokkos|Daffo|West Chadic +ronald george wreyford norrish|1 +(noun)|Norrish|Ronald George Wreyford Norrish|chemist +ronald reagan|1 +(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States|United States President|President|Chief Executive +ronald wilson reagan|1 +(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States|United States President|President|Chief Executive +rondeau|2 +(noun)|rondo|classical music|serious music +(noun)|rondel|poem|verse form +rondel|1 +(noun)|rondeau|poem|verse form +rondelet|1 +(noun)|rondeau|rondel +rondo|1 +(noun)|rondeau|classical music|serious music +roneo|2 +(noun)|mimeograph|mimeo|mimeograph machine|Roneo|Roneograph|duplicator|copier +(verb)|copy|re-create +roneograph|1 +(noun)|mimeograph|mimeo|mimeograph machine|Roneo|Roneograph|duplicator|copier +rontgen|1 +(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist +rood|1 +(noun)|crucifix|rood-tree|cross +rood-tree|1 +(noun)|crucifix|rood|cross +rood screen|1 +(noun)|screen +roof|3 +(noun)|protective covering|protective cover|protection +(noun)|protective covering|protective cover|protection +(verb)|cover +roof garden|1 +(noun)|garden +roof mushroom|1 +(noun)|Pluteus|genus Pluteus|fungus genus +roof of the mouth|1 +(noun)|palate|surface +roof peak|1 +(noun)|vertex|peak|apex|acme +roof rack|1 +(noun)|luggage rack|carrier +roof rat|1 +(noun)|black rat|Rattus rattus|rat +roofed|1 +(adj)|roofed +roofer|1 +(noun)|craftsman|artisan|journeyman|artificer +roofing|2 +(noun)|material +(noun)|trade|craft +roofing material|1 +(noun)|building material +roofing paper|1 +(noun)|tar paper|paper|roofing material +roofing tile|1 +(noun)|tile|roofing material +roofless|2 +(adj)|roofless +(adj)|dispossessed|homeless|unfortunate +rooftop|1 +(noun)|top|top side|upper side|upside +rooftree|1 +(noun)|ridge|ridgepole|beam +roofy|1 +(noun)|R-2|Mexican valium|rophy|rope|roach|forget me drug|circle|flunitrazepan|Rohypnol +rooibos|1 +(noun)|Aspalathus linearis|Aspalathus cedcarbergensis|shrub|bush +rook|3 +(noun)|castle|chessman|chess piece +(noun)|Corvus frugilegus|corvine bird +(verb)|victimize|swindle|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +rookery|1 +(noun)|breeding ground +rookie|1 +(noun)|cub|greenhorn|novice|beginner|tyro|tiro|initiate +room|5 +(noun)|area +(noun)|way|elbow room|position|spatial relation +(noun)|opportunity|chance +(noun)|gathering|assemblage +(verb)|board|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +room access|1 +(noun)|doorway|door|threshold|entrance|entranceway|entryway|entry|entree +room clerk|1 +(noun)|desk clerk|hotel desk clerk|hotel clerk +room decorator|1 +(noun)|interior designer|designer|interior decorator|house decorator|decorator|specialist|specializer|specialiser +room light|1 +(noun)|light|light source +room rate|1 +(noun)|rate|charge per unit +room temperature|1 +(noun)|temperature +roomer|1 +(noun)|lodger|boarder|tenant|renter +roomette|1 +(noun)|compartment +roomful|1 +(noun)|containerful +roomily|1 +(adv)|spaciously +roominess|1 +(noun)|capaciousness|spaciousness|commodiousness|largeness|bigness +rooming house|1 +(noun)|lodging house|house|accommodation +roommate|1 +(noun)|friend +rooms|5 +(noun)|suite|apartment|flat +(noun)|room|area +(noun)|room|way|elbow room|position|spatial relation +(noun)|room|opportunity|chance +(noun)|room|gathering|assemblage +roomy|1 +(adj)|spacious|commodious |convenient +roosevelt|3 +(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States|United States President|President|Chief Executive +(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat|diplomatist|writer|author +(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States|United States President|President|Chief Executive +rooseveltian|1 +(adj)|Rooseveltian|President of the United States|United States President|President|Chief Executive +roost|4 +(noun)|shelter +(noun)|perch +(verb)|perch|rest|sit|sit down +(verb)|settle|root|take root|steady down|settle down +rooster|1 +(noun)|cock|chicken|Gallus gallus +root|15 +(noun)|plant organ +(noun)|root word|base|stem|theme|radical|form|word form|signifier|descriptor +(noun)|beginning|origin|rootage|source|point +(noun)|number +(noun)|solution|set +(noun)|ancestor|ascendant|ascendent|antecedent|relative|relation +(noun)|etymon|form|word form|signifier|descriptor +(noun)|tooth root|structure|anatomical structure|complex body part|bodily structure|body structure +(verb)|grow +(verb)|become +(verb)|plant|set +(verb)|rout|rootle|dig|delve|cut into|turn over +(verb)|side|pull|back|endorse|indorse|plump for|plunk for|support +(verb)|settle|take root|steady down|settle down|stabilize|stabilise +(verb)|grow +root beer|1 +(noun)|soft drink +root beer float|1 +(noun)|ice-cream soda|ice-cream float|float +root canal|1 +(noun)|passage|passageway +root cap|1 +(noun)|plant organ +root celery|1 +(noun)|celeriac|celery root|knob celery|turnip-rooted celery|Apium graveolens rapaceum|herb|herbaceous plant +root cellar|1 +(noun)|cellar|excavation|hole in the ground|storage space +root climber|1 +(noun)|climber +root crop|1 +(noun)|crop|harvest +root hair|1 +(noun)|plant organ +root out|1 +(verb)|uproot|extirpate|deracinate|move|displace +root rot|1 +(noun)|plant disease +root system|1 +(noun)|rootage|system|scheme +root vegetable|1 +(noun)|vegetable|veggie +root word|1 +(noun)|root|base|stem|theme|radical|form|word form|signifier|descriptor +rootage|3 +(noun)|stationariness|immobility|fixedness +(noun)|root system|system|scheme +(noun)|beginning|origin|root|source|point +rootbound|2 +(adj)|potbound|planted +(adj)|tangled +rooted|1 +(adj)|frozen|stock-still|nonmoving |unmoving +rooter skunk|1 +(noun)|hog-nosed skunk|hognosed skunk|badger skunk|Conepatus leuconotus|skunk|polecat|wood pussy +rooting|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +rooting reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +rootle|1 +(verb)|rout|root|dig|delve|cut into|turn over +rootless|1 +(adj)|vagabond|unsettled +rootlet|1 +(noun)|root +rootlike|1 +(adj)|vegetable +roots|9 +(noun)|condition +(noun)|root|plant organ +(noun)|root|root word|base|stem|theme|radical|form|word form|signifier|descriptor +(noun)|beginning|origin|root|rootage|source|point +(noun)|root|number +(noun)|solution|root|set +(noun)|ancestor|ascendant|ascendent|antecedent|root|relative|relation +(noun)|etymon|root|form|word form|signifier|descriptor +(noun)|root|tooth root|structure|anatomical structure|complex body part|bodily structure|body structure +rootstalk|1 +(noun)|rhizome|rootstock|stalk|stem +rootstock|2 +(noun)|rhizome|rootstalk|stalk|stem +(noun)|stock +rope|4 +(noun)|line +(noun)|R-2|Mexican valium|rophy|roofy|roach|forget me drug|circle|flunitrazepan|Rohypnol +(verb)|lasso|get|catch|capture +(verb)|leash|tie|bind|rope in +rope-a-dope|1 +(noun)|boxing|pugilism|fisticuffs +rope-maker|2 +(noun)|ropemaker|roper|craftsman|artisan|journeyman|artificer +(noun)| +rope bridge|1 +(noun)|bridge|span +rope burn|1 +(noun)|abrasion|scratch|scrape|excoriation +rope down|1 +(verb)|rappel|abseil|descend|fall|go down|come down +rope in|2 +(verb)|rope off|cordon off|enclose|inclose|shut in +(verb)|persuade +rope ladder|1 +(noun)|ladder +rope off|1 +(verb)|rope in|cordon off|enclose|inclose|shut in +rope tow|1 +(noun)|ski tow|ski lift|lift +rope up|1 +(verb)|fasten|fix|secure +rope yard|1 +(noun)|ropewalk|workplace|work +rope yarn|1 +(noun)|strand +ropebark|1 +(noun)|leatherwood|moosewood|moose-wood|wicopy|Dirca palustris|shrub|bush +ropedancer|1 +(noun)|ropewalker|aerialist +ropemaker|1 +(noun)|rope-maker|roper|craftsman|artisan|journeyman|artificer +roper|3 +(noun)|decoy|steerer +(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +(noun)|ropemaker|rope-maker|craftsman|artisan|journeyman|artificer +ropewalk|1 +(noun)|rope yard|workplace|work +ropewalker|1 +(noun)|ropedancer|aerialist +ropeway|1 +(noun)|tramway|tram|aerial tramway|cable tramway|conveyance|transport +ropey|2 +(adj)|ropy|stringy|thready|thick +(adj)|ropy|inferior +rophy|1 +(noun)|R-2|Mexican valium|rope|roofy|roach|forget me drug|circle|flunitrazepan|Rohypnol +ropiness|1 +(noun)|cohesiveness|glueyness|gluiness|gumminess|viscidity|viscidness|viscosity|viscousness +roping|1 +(noun)|labor|labour|toil +ropy|2 +(adj)|ropey|stringy|thready|thick +(adj)|ropey|inferior +roquefort|1 +(noun)|Roquefort|bleu|blue cheese +roquefort dressing|1 +(noun)|blue cheese dressing|Roquefort dressing|dressing|salad dressing +roquette|1 +(noun)|rocket|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb|herbaceous plant +roridula|1 +(noun)|carnivorous plant +roridulaceae|1 +(noun)|Roridulaceae|family Roridulaceae|dicot family|magnoliopsid family +rorippa|1 +(noun)|Rorippa|genus Rorippa|dilleniid dicot genus +rorippa amphibia|1 +(noun)|great yellowcress|Rorippa amphibia|Nasturtium amphibium|watercress +rorippa islandica|1 +(noun)|marsh cress|yellow watercress|Rorippa islandica|watercress +rorippa nasturtium-aquaticum|1 +(noun)|common watercress|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress +rorqual|1 +(noun)|razorback|baleen whale|whalebone whale +rorschach|1 +(noun)|Rorschach|Rorschach test|inkblot test|projective test|projective device|projective technique +rorschach test|1 +(noun)|Rorschach|Rorschach test|inkblot test|projective test|projective device|projective technique +rosa|1 +(noun)|Rosa|genus Rosa|rosid dicot genus +rosa banksia|1 +(noun)|banksia rose|Rosa banksia|rose +rosa canina|1 +(noun)|dog rose|Rosa canina|rose +rosa chinensis|1 +(noun)|China rose|Bengal rose|Rosa chinensis|rose +rosa damascena|1 +(noun)|damask rose|summer damask rose|Rosa damascena|rose +rosa eglanteria|1 +(noun)|sweetbrier|sweetbriar|brier|briar|eglantine|Rosa eglanteria|rose +rosa laevigata|1 +(noun)|Cherokee rose|Rosa laevigata|rose +rosa moschata|1 +(noun)|musk rose|Rosa moschata|rose +rosa multiflora|1 +(noun)|multiflora|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose +rosa odorata|1 +(noun)|tea rose|Rosa odorata|rose +rosa parks|1 +(noun)|Parks|Rosa Parks|civil rights leader|civil rights worker|civil rights activist +rosa pendulina|1 +(noun)|mountain rose|Rosa pendulina|rose +rosa spithamaea|1 +(noun)|ground rose|Rosa spithamaea|rose +rosacea|1 +(noun)|acne rosacea|acne +rosaceae|1 +(noun)|Rosaceae|family Rosaceae|rose family|rosid dicot family +rosaceous|2 +(adj)|rosid dicot family +(adj)|rose|roseate|chromatic +rosales|1 +(noun)|Rosales|order Rosales|plant order +rosary|1 +(noun)|prayer beads|beads|string of beads +rose|4 +(adj)|roseate|rosaceous|chromatic +(noun)|shrub|bush +(noun)|blush wine|pink wine|rose wine|wine|vino +(noun)|pink +rose-apple tree|1 +(noun)|rose apple|jambosa|Eugenia jambos|fruit tree +rose-cheeked|1 +(adj)|flushed|rosy|rosy-cheeked|healthy +rose-colored|1 +(adj)|rosy|optimistic +rose-colored pastor|1 +(noun)|rose-colored starling|Pastor sturnus|Pastor roseus|starling +rose-colored starling|1 +(noun)|rose-colored pastor|Pastor sturnus|Pastor roseus|starling +rose-red|1 +(adj)|chromatic +rose-root|1 +(noun)|midsummer-men|Sedum rosea|sedum +rose acacia|1 +(noun)|bristly locust|moss locust|Robinia hispida|shrub|bush +rose apple|2 +(noun)|rose-apple tree|jambosa|Eugenia jambos|fruit tree +(noun)|edible fruit +rose bay|2 +(noun)|oleander|Nerium oleander|poisonous plant +(noun)|rosebay|Rhododendron maxima|rhododendron +rose bed|1 +(noun)|bed of roses|flowerbed|flower bed|bed of flowers +rose beetle|1 +(noun)|rose chafer|Cetonia aurata|scarabaeid beetle|scarabaeid|scarabaean +rose bug|1 +(noun)|rose chafer|Macrodactylus subspinosus|melolonthid beetle +rose campion|1 +(noun)|mullein pink|gardener's delight|dusty miller|Lychnis coronaria|lychnis|catchfly +rose chafer|2 +(noun)|rose beetle|Cetonia aurata|scarabaeid beetle|scarabaeid|scarabaean +(noun)|rose bug|Macrodactylus subspinosus|melolonthid beetle +rose chestnut|1 +(noun)|ironwood|ironwood tree|Mesua ferrea|tree +rose family|1 +(noun)|Rosaceae|family Rosaceae|rosid dicot family +rose garden|1 +(noun)|garden +rose geranium|1 +(noun)|sweet-scented geranium|Pelargonium graveolens|geranium +rose globe lily|1 +(noun)|Calochortus amoenus|globe lily|fairy lantern +rose gum|1 +(noun)|Eucalypt grandis|flooded gum +rose hip|2 +(noun)|hip|rosehip|fruit +(noun)| +rose leek|1 +(noun)|Canada garlic|meadow leek|Allium canadense|alliaceous plant +rose louise hovick|1 +(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler +rose mallow|2 +(noun)|swamp mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus +(noun)|Alcea rosea|Althea rosea|hollyhock +rose moss|1 +(noun)|sun plant|Portulaca grandiflora|portulaca +rose of china|1 +(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus +rose of jericho|2 +(noun)|resurrection plant|rose of Jericho|Selaginella lepidophylla|spikemoss|spike moss|little club moss +(noun)|rose of Jericho|resurrection plant|Anastatica hierochuntica|crucifer|cruciferous plant +rose of sharon|1 +(noun)|rose of Sharon|Hibiscus syriacus|hibiscus +rose oil|1 +(noun)|attar of roses|attar|atar|athar|ottar +rose periwinkle|1 +(noun)|periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +rose pink|1 +(noun)|bitter floom|American centaury|Sabbatia Angularis|sabbatia +rose quartz|1 +(noun)|quartz +rose water|1 +(noun)|perfume|essence +rose window|1 +(noun)|rosette|window +rose wine|1 +(noun)|blush wine|pink wine|rose|wine|vino +roseate|1 +(adj)|rose|rosaceous|chromatic +roseate spoonbill|1 +(noun)|Ajaia ajaja|spoonbill +roseau|1 +(noun)|Roseau|national capital +rosebay|1 +(noun)|Rhododendron maxima|rhododendron +rosebay willowherb|1 +(noun)|fireweed|giant willowherb|wickup|Epilobium angustifolium|willowherb +rosebud|2 +(noun)|bud +(noun)|girl|miss|missy|young lady|young woman|fille +rosebud cherry|1 +(noun)|winter flowering cherry|Prunus subhirtella|flowering cherry +rosebud orchid|1 +(noun)|Cleistes rosea|Pogonia rosea|orchid|orchidaceous plant +rosefish|2 +(noun)|redfish|ocean perch|rockfish +(noun)|ocean perch|Sebastodes marinus|rockfish +rosehip|1 +(noun)|hip|rose hip|fruit +roselle|1 +(noun)|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +rosellinia|1 +(noun)|Rosellinia|genus Rosellinia|fungus genus +rosemaling|1 +(noun)|decoration|ornament|ornamentation +rosemary|2 +(noun)|Rosmarinus officinalis|herb|herbaceous plant +(noun)|herb +roseola|1 +(noun)|rash|efflorescence|skin rash|eruption +roseola infantilis|1 +(noun)|exanthema subitum|roseola infantum|pseudorubella|disease +roseola infantum|1 +(noun)|exanthema subitum|roseola infantilis|pseudorubella|disease +rosetta stone|1 +(noun)|Rosetta stone|inscription|lettering +rosette|4 +(noun)|adornment +(noun)|little potato|russet scab|stem canker|rhizoctinia disease +(noun)|leaf|leafage|foliage +(noun)|rose window|window +rosewood|2 +(noun)|wood +(noun)|rosewood tree|tree +rosewood tree|1 +(noun)|rosewood|tree +rosh chodesh|1 +(noun)|Rosh Hodesh|Rosh Chodesh|Jewish holy day +rosh hashana|1 +(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day|High Holiday|feast day|fete day +rosh hashanah|1 +(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day|High Holiday|feast day|fete day +rosh hashona|1 +(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day|High Holiday|feast day|fete day +rosh hashonah|1 +(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day|High Holiday|feast day|fete day +rosh hodesh|1 +(noun)|Rosh Hodesh|Rosh Chodesh|Jewish holy day +rosicrucianism|1 +(noun)|Rosicrucianism|theological doctrine|religious doctrine +rosid dicot family|1 +(noun)|dicot family|magnoliopsid family +rosid dicot genus|1 +(noun)|dicot genus|magnoliopsid genus +rosidae|1 +(noun)|Rosidae|subclass Rosidae|class +rosilla|1 +(noun)|Helenium puberulum|sneezeweed +rosin|2 +(noun)|resin|organic compound +(verb)|rub +rosin bag|1 +(noun)|bag|baseball equipment +rosiness|2 +(noun)|bloom|blush|flush|good health|healthiness +(noun)|ruddiness|complexion|skin color|skin colour +rosinweed|2 +(noun)|Silphium laciniatum|compass plant|compass flower +(noun)|gumweed|gum plant|tarweed|herb|herbaceous plant +rosita|1 +(noun)|Centaurium calycosum|centaury +rosmarinus|1 +(noun)|Rosmarinus|genus Rosmarinus|asterid dicot genus +rosmarinus officinalis|1 +(noun)|rosemary|Rosmarinus officinalis|herb|herbaceous plant +ross|5 +(noun)|Ross|John Ross|Sir John Ross|explorer|adventurer +(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer|adventurer +(noun)|Ross|Sir Ronald Ross|doctor|doc|physician|MD|Dr.|medico +(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician|politico|pol|political leader +(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker|modiste|needlewoman|seamstress|sempstress +ross sea|1 +(noun)|Ross Sea|sea +rossbach|1 +(noun)|Rossbach|battle of Rossbach|pitched battle +rossetti|1 +(noun)|Rossetti|Dante Gabriel Rossetti|Pre-Raphaelite +rossini|1 +(noun)|Rossini|Giloacchino Antonio Rossini|composer +rostand|1 +(noun)|Rostand|Edmond Rostand|dramatist|playwright|poet +roster|1 +(noun)|roll|list|listing +rostock|1 +(noun)|Rostock|city|metropolis|urban center +rostov|1 +(noun)|Rostov|Rostov on Don|Rostov na Donu|city|metropolis|urban center|port +rostov na donu|1 +(noun)|Rostov|Rostov on Don|Rostov na Donu|city|metropolis|urban center|port +rostov on don|1 +(noun)|Rostov|Rostov on Don|Rostov na Donu|city|metropolis|urban center|port +rostrate|1 +(adj)|beaked +rostrum|2 +(noun)|dais|podium|pulpit|ambo|stump|soapbox|platform +(noun)|snout|nose|olfactory organ +roswell|1 +(noun)|Roswell|town +rosy|4 +(adj)|rose-colored|optimistic +(adj)|flushed|rose-cheeked|rosy-cheeked|healthy +(adj)|blushful|chromatic +(adj)|fortunate|hopeful|auspicious +rosy-cheeked|1 +(adj)|flushed|rose-cheeked|rosy|healthy +rosy boa|1 +(noun)|Lichanura trivirgata|boa +rot|5 +(noun)|putrefaction|decay +(noun)|decomposition|rotting|putrefaction|decay +(noun)|bunk|bunkum|buncombe|guff|hogwash|drivel|garbage +(verb)|decompose|molder|moulder|decay +(verb)|waste|devolve|deteriorate|drop|degenerate +rota|2 +(noun)|Rota|court|tribunal|judicature +(noun)|roll|roster +rotarian|1 +(noun)|Rotarian|member +rotary|4 +(adj)|turning|turn +(adj)|circular|cyclic |cyclical +(noun)|traffic circle|circle|roundabout|junction +(noun)|synchronous converter|rotary converter|electrical converter +rotary actuator|1 +(noun)|positioner|actuator +rotary club|1 +(noun)|Rotary Club|Rotary International|service club +rotary converter|1 +(noun)|synchronous converter|rotary|electrical converter +rotary engine|2 +(noun)|internal-combustion engine|ICE +(noun)|radial engine|internal-combustion engine|ICE +rotary international|1 +(noun)|Rotary Club|Rotary International|service club +rotary joint|1 +(noun)|pivot joint|rotatory joint|articulatio trochoidea|synovial joint|articulatio synovialis|diarthrosis +rotary motion|1 +(noun)|rotation|motion|movement|move|motility +rotary press|1 +(noun)|press|printing press +rotary wing|1 +(noun)|rotor blade|airfoil|aerofoil|control surface|surface +rotatable|1 +(adj)|mobile +rotate|6 +(verb)|revolve|go around|turn +(verb)|alternate +(verb)|circumvolve|turn +(verb)|serve +(verb)|turn out|splay|spread out|turn +(verb)|grow +rotated|1 +(adj)|revolved|turned +rotating mechanism|1 +(noun)|mechanism +rotating shaft|1 +(noun)|shaft|rod +rotation|4 +(noun)|rotary motion|motion|movement|move|motility +(noun)|transformation +(noun)|revolution|gyration|turning|turn +(noun)|sequence|chronological sequence|succession|successiveness|chronological succession +rotational|1 +(adj)|motion|movement|move|motility +rotational latency|1 +(noun)|latency|time interval|interval +rotational nystagmus|1 +(noun)|nystagmus +rotator cuff|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +rotatory|1 +(adj)|turning|turn +rotatory joint|1 +(noun)|pivot joint|rotary joint|articulatio trochoidea|synovial joint|articulatio synovialis|diarthrosis +rotavirus|1 +(noun)|reovirus +rotc|1 +(noun)|Reserve Officers Training Corps|ROTC|corps +rote|1 +(noun)|rote learning|memorization|memorisation|committal to memory +rote learning|1 +(noun)|rote|memorization|memorisation|committal to memory +rotenone|1 +(noun)|insecticide|insect powder +rotgut|1 +(noun)|alcohol|alcoholic beverage|intoxicant|inebriant +roth|1 +(noun)|Roth|Philip Roth|Philip Milton Roth|writer|author +rothko|1 +(noun)|Rothko|Mark Rothko|painter +rothschild|1 +(noun)|Rothschild|banker +rotifer|1 +(noun)|invertebrate +rotifera|1 +(noun)|Rotifera|phylum Rotifera|phylum +rotisserie|2 +(noun)|oven +(noun)|restaurant|eating house|eating place +rotl|1 +(noun)|weight unit|weight +rotogravure|3 +(noun)|photogravure +(noun)|photojournalism +(noun)|photogravure|gravure +rotor|3 +(noun)|rotor coil|armature +(noun)|bar +(noun)|rotating mechanism +rotor blade|1 +(noun)|rotary wing|airfoil|aerofoil|control surface|surface +rotor coil|1 +(noun)|rotor|armature +rotor head|1 +(noun)|rotor shaft|axis|axis of rotation +rotor shaft|1 +(noun)|rotor head|axis|axis of rotation +rotted|1 +(adj)|decayed|rotten|unsound +rotten|3 +(adj)|icky|crappy|lousy|shitty|stinking|stinky|bad +(adj)|rotten |corrupt|tainted|decayed|decomposed|decomposing|moldering|mouldering|moldered|mouldered|putrefied|putrified|putrid|putrescent +(adj)|decayed|rotted|unsound +rotten borough|1 +(noun)|borough +rottenly|1 +(adv)|terribly|atrociously|awfully|abominably|abysmally +rottenness|2 +(noun)|putrescence|putridness|corruption|putrefaction|rot +(noun)|putrescence|unwholesomeness|morbidness|morbidity +rottenstone|1 +(noun)|tripoli|limestone +rotter|1 +(noun)|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +rotterdam|1 +(noun)|Rotterdam|city|metropolis|urban center +rotting|1 +(noun)|decomposition|rot|putrefaction|decay +rottweiler|1 +(noun)|Rottweiler|shepherd dog|sheepdog|sheep dog +rotund|3 +(adj)|rounded +(adj)|orotund|round|pear-shaped|full +(adj)|corpulent|obese|weighty|fat +rotunda|2 +(noun)|building|edifice +(noun)|room +rotundity|1 +(noun)|sphericity|sphericalness|globosity|globularness|roundness +rotundly|1 +(adv)|sonorously +rouble|1 +(noun)|ruble|Russian monetary unit +roue|1 +(noun)|rake|profligate|rip|blood|libertine|debauchee|rounder +rouge|2 +(noun)|paint|blusher|makeup|make-up|war paint +(verb)|make up +rouge et noir|1 +(noun)|trente-et-quarante|card game|cards +rouge plant|1 +(noun)|bloodberry|blood berry|rougeberry|Rivina humilis|houseplant +rougeberry|1 +(noun)|bloodberry|blood berry|rouge plant|Rivina humilis|houseplant +rouged|1 +(adj)|painted +rough|16 +(adj)|rough |unsmooth|abrasive|scratchy|alligatored|cracked|barky|broken|rugged|bullate|bumpy|jarring|jolting|jolty|chapped|cracked|roughened|corded|twilled|costate|ribbed|cragged|craggy|hilly|mountainous|crushed|homespun|nubby|nubbly|slubbed|tweedy|lepidote|leprose|scabrous|scaly|scurfy|squamulose|lined|seamed|pocked|pockmarked|potholed|rocky|bouldery|bouldered|stony|roughish|rugose|scabby|textured|rough-textured|verrucose|warty|wartlike|imbricate|imbricated|sandpapery|shagged|shaggy|coarse|irregular|nonslippery|uneven|unironed|wrinkled|unpolished +(adj)|unrefined +(adj)|approximate|approximative|inexact +(adj)|rocky|difficult |hard +(adj)|boisterous|fierce|stormy +(adj)|grating|gravel|gravelly|rasping|raspy|cacophonous |cacophonic +(adj)|pugnacious|aggressive +(adj)|rough |angulate|bidentate|biserrate|ciliate|ciliated|crenate|crenated|scalloped|crenulate|crenulated|crispate|dentate|denticulate|emarginate|erose|jagged|jaggy|notched|toothed|fimbriate|fringed|laciniate|lacerate|pectinate|runcinate|serrate|serrated|saw-toothed|toothed|notched|serrulate|rimose|spinose|simple|unsubdivided|compound +(adj)|uncut |unsheared +(adj)|crude|unskilled +(adj)|unpolished +(adj)|harsh|unpleasant +(noun)|site|land site +(verb)|rough in|rough out|prepare +(adv)|roughly +(adv)|roughly +rough-and-ready|1 +(adj)|effective |effectual|efficacious +rough-and-tumble|2 +(adj)|bare-knuckle|bare-knuckled|disorderly +(noun)|hassle|scuffle|tussle|dogfingt|fight|fighting|combat|scrap +rough-cut|2 +(adj)|coarse|common|uncouth|vulgar|unrefined +(adj)|roughhewn|unfinished +rough-dry|1 +(verb)|dry|dry out +rough-hew|1 +(verb)|roughcast|hew|hew out +rough-house|1 +(verb)|treat|handle|do by +rough-leaved aster|1 +(noun)|aster +rough-legged hawk|1 +(noun)|roughleg|Buteo lagopus|hawk +rough-sand|1 +(verb)|sandpaper|sand +rough-skinned newt|1 +(noun)|Taricha granulosa|Pacific newt +rough-spoken|1 +(adj)|unrefined +rough-stemmed goldenrod|1 +(noun)|goldenrod +rough-textured|1 +(adj)|textured|rough |unsmooth +rough bindweed|1 +(noun)|Smilax aspera|sarsaparilla +rough bristlegrass|1 +(noun)|green bristlegrass|green foxtail|bottle-grass|bottle grass|Setaria viridis|foxtail|foxtail grass +rough cut|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +rough drawing|1 +(noun)|draft|sketch|study +rough fish|1 +(noun)|fish +rough green snake|1 +(noun)|Opheodrys aestivus|green snake|grass snake +rough horsetail|1 +(noun)|scouring rush|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail +rough in|1 +(verb)|rough|rough out|prepare +rough out|1 +(verb)|rough in|rough|prepare +rough pea|1 +(noun)|singletary pea|Caley pea|wild winterpea|Lathyrus hirsutus|wild pea +rough rider|2 +(noun)|Rough Rider|cavalryman|trooper +(noun)|roughrider|horseman|equestrian|horseback rider +rough sledding|1 +(noun)|hard time|difficulty +rough up|1 +(verb)|beat|beat up|work over +rough water|1 +(noun)|choppiness|roughness|storminess +roughage|1 +(noun)|foodstuff|food product +roughcast|5 +(noun)|plaster +(noun)|model|simulation +(verb)|shape|form|work|mold|mould|forge +(verb)|plaster|daub +(verb)|rough-hew|hew|hew out +roughdried|1 +(adj)|unironed |wrinkled +roughen|1 +(verb)|change surface +roughened|1 +(adj)|chapped|cracked|rough |unsmooth +roughhewn|1 +(adj)|rough-cut|unfinished +roughish|1 +(adj)|rough |unsmooth +roughleg|1 +(noun)|rough-legged hawk|Buteo lagopus|hawk +roughly|3 +(adv)|approximately|about|close to|just about|some|more or less|around|or so +(adv)|rough +(adv)|rough +roughneck|1 +(noun)|bully|tough|hooligan|ruffian|rowdy|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +roughness|6 +(noun)|texture +(noun)|harshness|timbre|timber|quality|tone +(noun)|crudeness|inelegance +(noun)|choppiness|rough water|storminess +(noun)|rowdiness|rowdyism|disorderliness|disorder +(noun)|pitting|indentation|corrosion|corroding|erosion +roughrider|1 +(noun)|horseman|equestrian|horseback rider +roughshod|3 +(adj)|shod |shodden|shoed +(adj)|barbarous|brutal|cruel|fell|savage|vicious|inhumane +(adj)|heavy-handed|domineering +roughtail stingray|1 +(noun)|Dasyatis centroura|stingray +roulade|2 +(noun)|dish +(noun)|tune|melody|air|strain|melodic line|line|melodic phrase +rouleau|2 +(noun)|roll +(noun)|roll +roulette|3 +(noun)|line roulette|curve|curved shape +(noun)|toothed wheel|wheel +(noun)|game of chance|gambling game +roulette ball|1 +(noun)|ball +roulette wheel|1 +(noun)|wheel|game equipment +roumania|1 +(noun)|Romania|Roumania|Rumania|Balkan country|Balkan nation|Balkan state +roumanian|1 +(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state +round|26 +(adj)|round |circular|ball-shaped|global|globose|globular|orbicular|spheric|spherical|bulblike|bulbous|capitate|coccoid|cumuliform|discoid|discoidal|disklike|moonlike|moon-round|nutlike|pear-shaped|ringlike|roundish|orbiculate|orbicular|rounded +(adj)|orotund|rotund|pear-shaped|full +(adj)|inexact +(noun)|unit of ammunition|one shot|ammunition|ammo +(noun)|cycle|rhythm|time interval|interval +(noun)|beat|path|route|itinerary +(noun)|call +(noun)|round of golf|golf|golf game +(noun)|daily round|habitude +(noun)|turn|bout|playing period|period of play|play +(noun)|path|track|course +(noun)|round of drinks|helping|portion|serving +(noun)|cut of beef +(noun)|troll|partsong +(noun)|applause|hand clapping|clapping +(noun)|rung|stave|crosspiece +(noun)|circle|rotating mechanism +(verb)|travel|go|move|locomote +(verb)|round out|round off|shape|form +(verb)|surround|environ|encircle|circle|ring|hold|bear|carry|contain +(verb)|labialize|labialise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|attack|assail|lash out|snipe|assault|knock|criticize|criticise|pick apart +(verb)|polish|round off|polish up|brush up|perfect|hone +(verb)|round off|round down|round out|change|alter|modify +(verb)|flesh out|fill out|gain|put on +(adv)|around +round-arm|1 +(adj)|overhand |overhanded|overarm +round-backed|1 +(adj)|hunched|round-shouldered|stooped|stooping|crooked|unerect +round-bottom|1 +(adj)|round-bottomed|bottomed +round-bottom flask|1 +(noun)|flask +round-bottomed|1 +(adj)|round-bottom|bottomed +round-eyed|2 +(adj)|wide-eyed|wide|open |opened +(adj)|saucer-eyed|eyed +round-faced|1 +(adj)|moon-faced|faced +round-headed leek|1 +(noun)|Allium sphaerocephalum|alliaceous plant +round-leaved rein orchid|1 +(noun)|Habenaria orbiculata|rein orchid|rein orchis +round-shouldered|1 +(adj)|hunched|round-backed|stooped|stooping|crooked|unerect +round-spored gyromitra|1 +(noun)|Gyromitra sphaerospora|gyromitra +round-table conference|1 +(noun)|round table|roundtable|conference|group discussion +round-tailed muskrat|1 +(noun)|Florida water rat|Neofiber alleni|rodent|gnawer|gnawing animal +round-the-clock|1 +(adj)|around-the-clock|day-and-night|nonstop|continuous |uninterrupted +round-the-clock patrol|1 +(noun)|patrol +round-trip light time|1 +(noun)|RTLT|elapsed time +round-trip ticket|1 +(noun)|return ticket|ticket +round angle|1 +(noun)|perigon|angle +round arch|1 +(noun)|arch +round bone|1 +(noun)|bone|os +round clam|2 +(noun)|quahaug|quahog|hard-shell clam|clam +(noun)|quahog|quahaug|hard-shell clam|Venus mercenaria|Mercenaria mercenaria|clam +round dance|2 +(noun)|ring dance|folk dancing|folk dance +(noun)|round dancing|ballroom dancing|ballroom dance +round dancing|1 +(noun)|round dance|ballroom dancing|ballroom dance +round down|1 +(verb)|round off|round out|round|change|alter|modify +round file|1 +(noun)|file +round hand|1 +(noun)|longhand|running hand|cursive|cursive script +round kumquat|1 +(noun)|marumi|marumi kumquat|Fortunella japonica|kumquat|cumquat|kumquat tree +round ligament of the uterus|1 +(noun)|ligamentum teres uteri|ligament +round of drinks|1 +(noun)|round|helping|portion|serving +round of golf|1 +(noun)|round|golf|golf game +round off|3 +(verb)|round|round out|shape|form +(verb)|polish|round|polish up|brush up|perfect|hone +(verb)|round down|round out|round|change|alter|modify +round out|4 +(verb)|finish out|complete|finish +(verb)|fill out|enrich +(verb)|round off|round down|round|change|alter|modify +(verb)|round|round off|shape|form +round robin|2 +(noun)|tournament|tourney +(noun)|letter|missive +round scad|1 +(noun)|cigarfish|quiaquia|Decapterus punctatus|scad +round shape|1 +(noun)|shape|form +round shot|1 +(noun)|cannonball|cannon ball|projectile|missile +round steak|1 +(noun)|beefsteak +round table|3 +(noun)|roundtable|round-table conference|conference|group discussion +(noun)|Round Table|King Arthur's Round Table|table +(noun)| +round the bend|1 +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|around the bend|wacky|whacky|insane +round the clock|1 +(adv)|around the clock|for 24 hours +round top|1 +(noun)|circus tent|big top|top|canvas tent|canvas|canvass +round trip|1 +(noun)|trip +round up|1 +(verb)|gather|garner|collect|pull together +round whitefish|1 +(noun)|Menominee whitefish|Prosopium cylindraceum|whitefish +round window|1 +(noun)|fenestra rotunda|fenestra cochleae|fenestra of the cochlea|fenestra +roundabout|4 +(adj)|circuitous|indirect +(adj)|devious|circuitous|indirect +(noun)|traffic circle|circle|rotary|junction +(noun)|carousel|carrousel|merry-go-round|whirligig|ride +roundabout way|1 +(noun)|detour|road|route +rounded|2 +(adj)|rounded |allantoid|sausage-shaped|almond-shaped|amygdaliform|amygdaloid|amygdaloidal|annular|annulate|annulated|circinate|circular|ringed|ring-shaped|doughnut-shaped|aspheric|aspherical|auriform|ear-shaped|crescent|crescent-shaped|semilunar|lunate|bowfront|cycloid|cycloidal|cylindrical|tube-shaped|tubelike|vasiform|disciform|domed|vaulted|egg-shaped|elliptic|elliptical|oval|ovate|oviform|ovoid|prolate|ellipsoid|ellipsoidal|spheroidal|non-circular|hyperboloidal|lingulate|tongue-shaped|olivelike|olive-like|parabolic|parabolical|paraboloidal|pineal|rotund|terete|umbrellalike|plumlike|rod-shaped|rodlike|elliptic|oblong|spatulate|spatula-shaped|coiled|fat|oblate|pumpkin-shaped|prolate|watermelon-shaped|round|circular +(adj)|fat|endomorphic |pyknic +roundedness|1 +(noun)|bulginess|convexity|convexness +roundel|3 +(noun)|rondeau|rondel +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|annulet|charge|bearing|heraldic bearing|armorial bearing +roundelay|1 +(noun)|song +rounder|2 +(noun)|libertine|debauchee|bad person +(noun)|tool +rounders|3 +(noun)|baseball|baseball game|ball +(noun)|libertine|debauchee|rounder|bad person +(noun)|rounder|tool +roundhead|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Roundhead|supporter|protagonist|champion|admirer|booster|friend +roundheaded|1 +(adj)|broad-headed|short-headed|brachycephalic |brachycranial|brachycranic +roundhouse|2 +(noun)|workplace|work +(noun)|hook +rounding|1 +(noun)|rounding error|miscalculation|misreckoning|misestimation +rounding error|1 +(noun)|rounding|miscalculation|misreckoning|misestimation +roundish|1 +(adj)|round |circular +roundly|1 +(adv)|bluffly|bluntly|brusquely|flat out +roundness|1 +(noun)|shape|form|configuration|contour|conformation +roundsman|1 +(noun)|workman|working man|working person +roundtable|1 +(noun)|round table|round-table conference|conference|group discussion +roundup|3 +(noun)|ranching +(noun)|summary +(noun)|police work|police investigation +roundworm|2 +(noun)|tinea|ringworm|fungal infection|mycosis +(noun)|nematode|nematode worm|worm +rous|1 +(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician|pathologist +rouse|4 +(verb)|bestir|be active|move +(verb)|rout out|drive out|force out|move|displace +(verb)|agitate|turn on|charge|commove|excite|charge up|disturb|upset|trouble +(verb)|awaken|wake|waken|wake up|arouse|change|alter|modify +rouser|1 +(noun)|waker|arouser|attendant|attender|tender +rousing|3 +(adj)|stirring|stimulating +(adj)|provocative +(noun)|arousal|change of state +rousseau|2 +(noun)|Rousseau|Jean-Jacques Rousseau|writer|author|philosopher +(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter +rousseauan|1 +(adj)|Rousseauan|writer|author|philosopher +roustabout|1 +(noun)|deckhand|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +rout|6 +(noun)|mob|rabble|crowd +(noun)|defeat|licking +(verb)|rout out|expel|get the better of|overcome|defeat +(verb)|root|rootle|dig|delve|cut into|turn over +(verb)|gouge|hollow|hollow out|core out +(verb)|spread-eagle|spreadeagle|beat|beat out|crush|shell|trounce|vanquish +rout out|3 +(verb)|rout up|find|regain +(verb)|drive out|force out|rouse|move|displace +(verb)|rout|expel|get the better of|overcome|defeat +rout up|1 +(verb)|rout out|find|regain +route|5 +(noun)|path|itinerary|line +(noun)|road|way +(verb)|dispatch|despatch|send off +(verb)|send|direct +(verb)|divert +routemarch|1 +(noun)|march|marching +router|3 +(noun)|skilled worker|trained worker +(noun)|device +(noun)|power tool +router plane|1 +(noun)|plane|carpenter's plane|woodworking plane +routine|5 +(adj)|regular +(adj)|everyday|mundane|quotidian|unremarkable|workaday|ordinary +(noun)|modus operandi|procedure|process +(noun)|act|number|turn|bit|performance|public presentation +(noun)|subroutine|subprogram|procedure|function|software|software system|software package|package +routinely|1 +(adv)|habitually +roux|1 +(noun)|concoction|mixture|intermixture +rove|4 +(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|range|drift|vagabond|travel|go|move|locomote +(verb)|reeve|pass through +(verb)|reeve|pass through +(verb)|reeve|pass through +rove beetle|1 +(noun)|beetle +rover|2 +(noun)|wanderer|roamer|bird of passage|traveler|traveller +(noun)|scouter|boy scout +roving|2 +(adj)|mobile|nomadic|peregrine|wandering|unsettled +(noun)|wandering|vagabondage|peregrination +row|8 +(noun)|line +(noun)|quarrel|wrangle|words|run-in|dustup|dispute|difference|difference of opinion|conflict +(noun)|strip +(noun)|course|layer|bed +(noun)|array +(noun)|sequence|chronological sequence|succession|successiveness|chronological succession +(noun)|rowing|sport|athletics +(verb)|boat +row house|1 +(noun)|town house|house +row of bricks|1 +(noun)|course|row +rowan|1 +(noun)|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash +rowan tree|1 +(noun)|rowan|European mountain ash|Sorbus aucuparia|mountain ash +rowanberry|1 +(noun)|fruit +rowboat|1 +(noun)|dinghy|dory|small boat +rowdily|1 +(adv)|raucously +rowdiness|1 +(noun)|rowdyism|roughness|disorderliness|disorder +rowdy|2 +(adj)|raucous|disorderly +(noun)|bully|tough|hooligan|ruffian|roughneck|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +rowdyism|1 +(noun)|rowdiness|roughness|disorderliness|disorder +rowel|1 +(noun)|wheel +rower|1 +(noun)|oarsman|boatman|boater|waterman +rowing|1 +(noun)|row|sport|athletics +rowing boat|1 +(noun)|dinghy|dory|rowboat +rowing club|1 +(noun)|club|society|guild|gild|lodge|order +rowlock|1 +(noun)|peg|pin|thole|tholepin|oarlock|holder +rowlock arch|1 +(noun)|arch +roy chapman andrews|1 +(noun)|Andrews|Roy Chapman Andrews|naturalist|natural scientist +roy lichtenstein|1 +(noun)|Lichtenstein|Roy Lichtenstein|painter +roy orbison|1 +(noun)|Orbison|Roy Orbison|singer|vocalist|vocalizer|vocaliser|composer +roy wilkins|1 +(noun)|Wilkins|Roy Wilkins|civil rights leader|civil rights worker|civil rights activist +royal|7 +(adj)|ruler|swayer|head of state|chief of state +(adj)|house +(adj)|noble +(adj)|imperial|majestic|purple|regal|noble +(adj)|crowned +(noun)|sail|canvas|canvass|sheet +(noun)|royal stag|stag +royal academy|1 +(noun)|Royal Academy|Royal Academy of Arts|academy|honorary society +royal academy of arts|1 +(noun)|Royal Academy|Royal Academy of Arts|academy|honorary society +royal agaric|1 +(noun)|Caesar's agaric|Amanita caesarea|agaric +royal air force|1 +(noun)|Royal Air Force|RAF|air force|airforce +royal blue|1 +(noun)|purplish blue|blue|blueness +royal brace|1 +(noun)|brace +royal canadian mounted police|1 +(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police|police force|constabulary|law|international law enforcement agency +royal casino|1 +(noun)|casino|cassino +royal charter|1 +(noun)|charter +royal court|2 +(noun)|court|cortege|retinue|suite|entourage +(noun)|court|government|authorities|regime +royal family|1 +(noun)|royalty|royal line|royal house|house +royal fern|1 +(noun)|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern|osmund +royal flush|1 +(noun)|poker hand +royal house|1 +(noun)|royalty|royal family|royal line|house +royal jelly|1 +(noun)|secretion +royal line|1 +(noun)|royalty|royal family|royal house|house +royal mast|1 +(noun)|topmast +royal national eisteddfod|1 +(noun)|Royal National Eisteddfod|eisteddfod +royal osmund|1 +(noun)|royal fern|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern|osmund +royal palm|1 +(noun)|Roystonea regia|palm|palm tree +royal poinciana|1 +(noun)|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree|flowering tree +royal purple|1 +(noun)|reddish purple|purple|purpleness|empurpled +royal road|1 +(noun)|road +royal society|1 +(noun)|Royal Society|Royal Society of London for Improving Natual Knowledge|academy|honorary society +royal society of london for improving natual knowledge|1 +(noun)|Royal Society|Royal Society of London for Improving Natual Knowledge|academy|honorary society +royal stag|1 +(noun)|royal|stag +royal tennis|1 +(noun)|real tennis|court tennis|tennis|lawn tennis +royal velvet plant|1 +(noun)|velvet plant|purple velvet plant|Gynura aurantiaca|houseplant +royalism|1 +(noun)|attachment|adherence|adhesion +royalist|1 +(noun)|monarchist|rightist|right-winger +royally|1 +(adv)|like kings|like royalty +royalty|2 +(noun)|payment +(noun)|royal family|royal line|royal house|house +roystonea|1 +(noun)|Roystonea|genus Roystonea|monocot genus|liliopsid genus +roystonea oleracea|1 +(noun)|cabbage palm|Roystonea oleracea|palm|palm tree +roystonea regia|1 +(noun)|royal palm|Roystonea regia|palm|palm tree +rozelle|1 +(noun)|roselle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +rpa-abb|1 +(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization|terrorist group|foreign terrorist organization|FTO +rpm|1 +(noun)|revolutions per minute|rev|rate +rtlt|1 +(noun)|round-trip light time|RTLT|elapsed time +ru|1 +(noun)|ruthenium|Ru|atomic number 44|metallic element|metal +ru 486|1 +(noun)|abortion pill|RU 486|Mifepristone|abortifacient|aborticide|abortion-inducing drug +ruanda|1 +(noun)|Rwanda|Rwandese Republic|Ruanda|African country|African nation +ruandan|1 +(adj)|Rwandan|Ruandan|African country|African nation +rub|5 +(noun)|hang-up|hitch|snag|obstacle|obstruction +(noun)|wipe|contact +(verb)|guide|run|draw|pass|rub down|rub off|rub down|rub out +(verb)|fray|fret|chafe|scratch|touch|adjoin|meet|contact +(verb)|scratch|itch|irritate +rub-a-dub|1 +(noun)|rataplan|drumbeat|sound +rub along|1 +(verb)|scrape along|scrape by|scratch along|squeak by|squeeze by|cope|get by|make out|make do|contend|grapple|deal|manage +rub down|2 +(verb)|abrade|corrade|abrase|rub off|wear away|wear off +(verb)|massage|knead|manipulate +rub off|1 +(verb)|abrade|corrade|abrase|rub down|wear away|wear off +rub out|1 +(verb)|erase|score out|efface|wipe off|delete|cancel +rub up|1 +(noun)|review|brushup +rubato|1 +(noun)|tempo|pacing +rubber|7 +(adj)|rubberized|rubberised|impermeable +(adj)|no-good|bad +(noun)|India rubber|gum elastic|caoutchouc|latex +(noun)|rubber eraser|pencil eraser|eraser +(noun)|condom|safety|safe|prophylactic|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +(noun)|arctic|galosh|golosh|gumshoe|overshoe +(verb)|rubberize|rubberise|coat|surface +rubber-base paint|1 +(noun)|latex paint|latex|water-base paint +rubber-necking|1 +(noun)|sightseeing|look|looking|looking at +rubber band|1 +(noun)|elastic band|elastic|band|elastic device +rubber boa|1 +(noun)|tow-headed snake|Charina bottae|boa +rubber boot|1 +(noun)|gum boot|boot +rubber bullet|1 +(noun)|bullet|slug +rubber cement|1 +(noun)|adhesive material|adhesive +rubber eraser|1 +(noun)|rubber|pencil eraser|eraser +rubber plant|1 +(noun)|India-rubber tree|India-rubber plant|India-rubber fig|Assam rubber|Ficus elastica|fig tree +rubber stamp|2 +(noun)|handstamp|seal|stamp +(noun)|authorization|authorisation|empowerment +rubber tire|1 +(noun)|car tire|automobile tire|auto tire|tire|tyre +rubberise|1 +(verb)|rubberize|rubber|coat|surface +rubberised|2 +(adj)|rubberized|processed +(adj)|rubber|rubberized|impermeable +rubberize|1 +(verb)|rubberise|rubber|coat|surface +rubberized|2 +(adj)|rubberised|processed +(adj)|rubber|rubberised|impermeable +rubberlike|1 +(adj)|rubbery|elastic +rubberneck|3 +(noun)|sightseer|excursionist|tripper|tourist|tourer|holidaymaker +(noun)|spectator|witness|viewer|watcher|looker +(verb)|watch +rubberstamp|2 +(verb)|handstamp|stamp +(verb)|approve +rubbery|2 +(adj)|rubberlike|elastic +(adj)|cartilaginous|gristly|tough +rubbing|3 +(noun)|friction|resistance +(noun)|representation +(noun)|friction|detrition|effort|elbow grease|exertion|travail|sweat +rubbing alcohol|1 +(noun)|lotion|application +rubbish|3 +(noun)|trash|scrap|waste|waste material|waste matter|waste product +(noun)|folderol|tripe|trumpery|trash|wish-wash|applesauce|codswallop|drivel|garbage +(verb)|attack|round|assail|lash out|snipe|assault +rubbish dump|1 +(noun)|dump|garbage dump|trash dump|wasteyard|waste-yard|dumpsite|site|land site +rubbish heap|1 +(noun)|garbage heap|junk heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +rubbishy|1 +(adj)|trashy|worthless +rubble|1 +(noun)|debris|dust|junk|detritus|rubbish|trash|scrap +rubdown|1 +(noun)|massage +rube|1 +(noun)|yokel|hick|yahoo|hayseed|bumpkin|chawbacon|rustic +rube goldberg|1 +(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist +rubefacient|1 +(noun)|medicine|medication|medicament|medicinal drug +rubel|1 +(noun)|Belarusian monetary unit +rubella|1 +(noun)|German measles|three-day measles|epidemic roseola|measles|rubeola|morbilli +rubella panencephalitis|1 +(noun)|panencephalitis +rubens|1 +(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master +rubeola|1 +(noun)|measles|morbilli|contagious disease|contagion +rubia|1 +(noun)|Rubia|genus Rubia|asterid dicot genus +rubia cordifolia|1 +(noun)|Indian madder|munjeet|Rubia cordifolia|madderwort|rubiaceous plant +rubia tinctorum|1 +(noun)|madder|Rubia tinctorum|madderwort|rubiaceous plant +rubiaceae|1 +(noun)|Rubiaceae|family Rubiaceae|madder family|asterid dicot family +rubiaceous plant|1 +(noun)|madderwort|angiosperm|flowering plant +rubiales|1 +(noun)|Rubiales|order Rubiales|plant order +rubicelle|1 +(noun)|spinel ruby|ruby spinel +rubicon|2 +(noun)|Rubicon|boundary|bound|bounds +(noun)|Rubicon|point of no return|line|dividing line|demarcation|contrast +rubicund|1 +(adj)|ruddy|sanguine|healthy +rubidium|1 +(noun)|Rb|atomic number 37|metallic element|metal +rubidium-strontium dating|1 +(noun)|dating|geological dating +rubify|1 +(verb)|redden +rubin test|1 +(noun)|Rubin test|diagnostic test|diagnostic assay +rubinstein|2 +(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist|piano player +(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer|pianist|piano player +ruble|2 +(noun)|Tajikistani monetary unit +(noun)|rouble|Russian monetary unit +rubor|1 +(noun)|inflammation|redness|symptom +rubric|7 +(noun)|rule|prescript +(noun)|gloss|explanation|account +(noun)|direction|instruction +(noun)|title|statute title|heading|header|head +(noun)|heading|header|head|title +(noun)|category +(verb)|rubify +rubricate|4 +(verb)|recognize|recognise +(verb)|format|arrange +(verb)|miniate|illuminate +(verb)|sign|subscribe +rubus|1 +(noun)|Rubus|genus Rubus|rosid dicot genus +rubus australis|1 +(noun)|lawyerbush|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush +rubus caesius|1 +(noun)|European dewberry|Rubus caesius|dewberry|dewberry bush|running blackberry +rubus canadensis|1 +(noun)|American dewberry|Rubus canadensis|dewberry|dewberry bush|running blackberry +rubus chamaemorus|1 +(noun)|cloudberry|dwarf mulberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +rubus cissoides|1 +(noun)|lawyerbush|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush +rubus cuneifolius|1 +(noun)|sand blackberry|Rubus cuneifolius|blackberry|blackberry bush +rubus flagellaris|1 +(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry|dewberry bush|running blackberry +rubus fruticosus|1 +(noun)|true blackberry|Rubus fruticosus|blackberry|blackberry bush +rubus hispidus|1 +(noun)|swamp dewberry|swamp blackberry|Rubus hispidus|dewberry|dewberry bush|running blackberry +rubus idaeus|1 +(noun)|wild raspberry|European raspberry|framboise|Rubus idaeus|red raspberry +rubus idaeus strigosus|1 +(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry +rubus loganobaccus|1 +(noun)|loganberry|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry|western dewberry|Rubus ursinus +rubus occidentalis|1 +(noun)|black raspberry|blackcap|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry|raspberry bush +rubus odoratus|1 +(noun)|flowering raspberry|purple-flowering raspberry|Rubus odoratus|thimbleberry|raspberry|raspberry bush +rubus parviflorus|1 +(noun)|salmonberry|salmon berry|thimbleberry|Rubus parviflorus|raspberry|raspberry bush +rubus phoenicolasius|1 +(noun)|wineberry|Rubus phoenicolasius|raspberry|raspberry bush +rubus saxatilis|1 +(noun)|stone bramble|Rubus saxatilis|bramble bush +rubus spectabilis|1 +(noun)|salmonberry|Rubus spectabilis|raspberry|raspberry bush +rubus strigosus|1 +(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry +rubus trivialis|1 +(noun)|Southern dewberry|Rubus trivialis|dewberry|dewberry bush|running blackberry +rubus ursinus|1 +(noun)|western blackberry|western dewberry|Rubus ursinus|blackberry|blackberry bush +rubus ursinus loganobaccus|1 +(noun)|loganberry|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry|western dewberry|Rubus ursinus +ruby|4 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby-red|scarlet|chromatic +(noun)|jewel|gem|precious stone +(noun)|transparent gem|corundom|corundum +(noun)|crimson|deep red|red|redness +ruby-crowned kinglet|1 +(noun)|ruby-crowned wren|Regulus calendula|kinglet +ruby-crowned wren|1 +(noun)|ruby-crowned kinglet|Regulus calendula|kinglet +ruby-red|1 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|scarlet|chromatic +ruby spinel|1 +(noun)|spinel ruby|spinel +ruby wood|1 +(noun)|red sandalwood|wood +ruck|3 +(noun)|herd|multitude|throng|concourse +(noun)|pucker|fold|crease|plication|flexure|crimp|bend +(verb)|pucker|ruck up|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +ruck up|1 +(verb)|pucker|ruck|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +ruckle|2 +(verb)|rattle +(verb)|wrinkle|crease|crinkle|scrunch|scrunch up|crisp|fold|fold up|turn up +rucksack|1 +(noun)|backpack|back pack|knapsack|packsack|haversack|bag +ruckus|1 +(noun)|commotion|din|ruction|rumpus|tumult|disturbance +ruction|1 +(noun)|commotion|din|ruckus|rumpus|tumult|disturbance +rudaceous rock|1 +(noun)|sedimentary rock +rudapithecus|1 +(noun)|Dryopithecus Rudapithecus hungaricus|dryopithecine +rudbeckia|1 +(noun)|Rudbeckia|genus Rudbeckia|asterid dicot genus +rudbeckia hirta|1 +(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower +rudbeckia laciniata|1 +(noun)|cutleaved coneflower|Rudbeckia laciniata|coneflower +rudbeckia laciniata hortensia|1 +(noun)|golden glow|double gold|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower|Rudbeckia laciniata +rudbeckia serotina|1 +(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower +rudd|1 +(noun)|Scardinius erythrophthalmus|cyprinid|cyprinid fish +rudder|2 +(noun)|airfoil|aerofoil|control surface|surface +(noun)|steering system|steering mechanism +rudder blade|1 +(noun)|blade|vane +rudderfish|2 +(noun)|Bermuda chub|Kyphosus sectatrix|sea chub +(noun)|banded rudderfish|Seriola zonata|jack +rudderless|1 +(adj)|adrift|afloat|aimless|directionless|planless|undirected|purposeless +rudderpost|1 +(noun)|rudderstock|post +rudderstock|1 +(noun)|rudderpost|post +ruddiness|1 +(noun)|rosiness|complexion|skin color|skin colour +ruddle|3 +(noun)|reddle|raddle|iron ore +(verb)|raddle|weave|interweave +(verb)|redden +ruddles|2 +(noun)|common marigold|pot marigold|Scotch marigold|Calendula officinalis|calendula +(noun)|ruddle|reddle|raddle|iron ore +ruddy|2 +(adj)|rubicund|sanguine|healthy +(adj)|red|reddish|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic +ruddy duck|1 +(noun)|Oxyura jamaicensis|duck +ruddy turnstone|1 +(noun)|Arenaria interpres|turnstone +rude|5 +(adj)|ill-mannered|unmannered|unmannerly|impolite +(adj)|ill-bred|bounderish|lowbred|underbred|yokelish|unrefined +(adj)|uncivil +(adj)|natural|raw|unprocessed +(adj)|crude|primitive|early +rudely|1 +(adv)|impolitely|discourteously|showing bad manners +rudeness|2 +(noun)|discourtesy|manner|personal manner +(noun)|crudeness|crudity|primitiveness|primitivism|wild|natural state|state of nature +rudiment|2 +(noun)|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +(noun)|body part +rudimentary|3 +(adj)|fundamental|underlying|basic +(adj)|incomplete |uncomplete +(adj)|vestigial|undeveloped +rudiments|3 +(noun)|basics|fact +(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals|basics|fundamental principle|basic principle|bedrock +(noun)|rudiment|body part +rudolf bultmann|1 +(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian|theologist|theologizer|theologiser +rudolf christian karl diesel|1 +(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer|applied scientist|technologist +rudolf diesel|1 +(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer|applied scientist|technologist +rudolf hess|1 +(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi|German Nazi +rudolf karl bultmann|1 +(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian|theologist|theologizer|theologiser +rudolf karl virchow|1 +(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician|pathologist +rudolf ludwig mossbauer|1 +(noun)|Mossbauer|Rudolf Ludwig Mossbauer|nuclear physicist +rudolf nureyev|1 +(noun)|Nureyev|Rudolf Nureyev|dancer|professional dancer +rudolf serkin|1 +(noun)|Serkin|Rudolf Serkin|pianist|piano player +rudolf virchow|1 +(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician|pathologist +rudolf wurlitzer|1 +(noun)|Wurlitzer|Rudolf Wurlitzer|businessman|man of affairs +rudolph laban|1 +(noun)|Laban|Rudolph Laban|choreographer +rudra|1 +(noun)|Rudra|Hindu deity +rudyard kipling|1 +(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer|author +rue|5 +(noun)|herb of grace|Ruta graveolens|herb|herbaceous plant +(noun)|herb +(noun)|sorrow|regret|ruefulness|sadness|unhappiness +(noun)|street +(verb)|repent|regret|feel|experience +rue anemone|1 +(noun)|Anemonella thalictroides|flower +rue family|1 +(noun)|Rutaceae|family Rutaceae|rosid dicot family +rueful|1 +(adj)|contrite|remorseful|ruthful|sorry|penitent +ruefully|1 +(adv)|contritely|remorsefully +ruefulness|1 +(noun)|sorrow|regret|rue|sadness|unhappiness +ruf|1 +(noun)|Revolutionary United Front|RUF|terrorist organization|terrorist group|foreign terrorist organization|FTO +ruff|4 +(noun)|choker|ruffle|neck ruff|collar|neckband +(noun)|Philomachus pugnax|sandpiper +(noun)|trumping|turn|play +(verb)|trump|move|go +ruffed grouse|1 +(noun)|partridge|Bonasa umbellus|grouse +ruffian|1 +(noun)|bully|tough|hooligan|roughneck|rowdy|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +ruffianism|1 +(noun)|misbehavior|misbehaviour|misdeed +ruffianly|1 +(adj)|tough|violent +ruffle|12 +(noun)|frill|flounce|furbelow|adornment +(noun)|choker|ruff|neck ruff|collar|neckband +(noun)|affray|disturbance|fray|fight|fighting|combat|scrap +(verb)|ripple|riffle|cockle|undulate|flow|flux +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil +(verb)|swagger|prance|strut|sashay|cock|walk +(verb)|fluster +(verb)|flick|riffle|move|displace +(verb)|shuffle|mix|manipulate +(verb)|fluff|loosen +(verb)|ruffle up|rumple|mess up|disarrange +(verb)|pleat|fold|fold up|turn up +ruffle up|1 +(verb)|ruffle|rumple|mess up|disarrange +ruffled|2 +(adj)|rippled|agitated +(adj)|frilled|frilly|adorned |decorated +rufous rubber cup|1 +(noun)|Rufous rubber cup|Sarcosomataceae +rug|1 +(noun)|carpet|carpeting|floor cover|floor covering|furnishings +rug beater|1 +(noun)|carpet beater|beater +rug merchant|1 +(noun)|merchant|merchandiser +rug pad|1 +(noun)|carpet pad|underlay|underlayment|pad +ruga|1 +(noun)|fold|plica +rugby|1 +(noun)|rugby football|rugger|football|football game +rugby ball|1 +(noun)|ball +rugby football|1 +(noun)|rugby|rugger|football|football game +rugel's plantain|1 +(noun)|broad-leaved plantain|Plantago rugelii|plantain +rugelach|1 +(noun)|rugulah|ruggelach|pastry +rugged|4 +(adj)|rugged |hardy|knockabout|sturdy|tough|robust |robust|strong|tough|toughened +(adj)|broken|rough |unsmooth +(adj)|craggy|cliffy |clifflike +(adj)|tough|difficult |hard +rugged individualism|1 +(noun)|individualism +ruggedisation|1 +(noun)|ruggedization|protection +ruggedise|1 +(verb)|ruggedize|strengthen|beef up|fortify +ruggedization|1 +(noun)|ruggedisation|protection +ruggedize|1 +(verb)|ruggedise|strengthen|beef up|fortify +ruggedness|1 +(noun)|huskiness|toughness|strength +ruggelach|1 +(noun)|rugulah|rugelach|pastry +rugger|1 +(noun)|rugby|rugby football|football|football game +rugose|1 +(adj)|rough |unsmooth +rugulah|1 +(noun)|rugelach|ruggelach|pastry +ruholla khomeini|1 +(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader +ruhr|2 +(noun)|Ruhr|Ruhr River|river +(noun)|Ruhr|Ruhr Valley|geographical area|geographic area|geographical region|geographic region +ruhr river|1 +(noun)|Ruhr|Ruhr River|river +ruhr valley|1 +(noun)|Ruhr|Ruhr Valley|geographical area|geographic area|geographical region|geographic region +ruin|12 +(noun)|ruination|devastation|desolation +(noun)|building|edifice +(noun)|dilapidation|decay +(noun)|ruination|destruction|demolition|wipeout +(noun)|downfall|ruination|failure +(noun)|laying waste|ruining|ruination|wrecking|destruction|devastation +(verb)|destroy +(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk +(verb)|bankrupt|break|smash|impoverish +(verb)|lay waste to|waste|devastate|desolate|ravage|scourge +(verb)|deflower|copulate|mate|pair|couple +(verb)|decay|crumble|delapidate +ruination|4 +(noun)|ruin|devastation|desolation +(noun)|ruin|destruction|demolition|wipeout +(noun)|downfall|ruin|failure +(noun)|laying waste|ruin|ruining|wrecking|destruction|devastation +ruined|4 +(adj)|destroyed|lost +(adj)|done for|sunk|undone|washed-up|unsuccessful +(adj)|finished|destroyed +(adj)|blasted|desolate|desolated|devastated|ravaged|wasted|destroyed +ruiner|1 +(noun)|destroyer|undoer|waster|uprooter|bad person +ruining|1 +(noun)|laying waste|ruin|ruination|wrecking|destruction|devastation +ruinous|2 +(adj)|catastrophic|harmful +(adj)|blasting|destructive +rule|19 +(noun)|regulation|concept|conception|construct +(noun)|convention|normal|pattern|formula|practice +(noun)|prescript|direction|instruction +(noun)|linguistic rule|concept|conception|construct +(noun)|principle|generalization|generalisation|generality +(noun)|principle|law|law of nature +(noun)|duration|continuance +(noun)|dominion|dominance|ascendance|ascendence|ascendancy|ascendency|control +(noun)|direction|instruction +(noun)|direction|instruction +(noun)|formula|procedure|process +(noun)|ruler|measuring stick|measure|measuring rod +(verb)|govern|control|command +(verb)|decree|decide|make up one's mind|determine|rule out +(verb)|predominate|dominate|reign|prevail +(verb)|find|pronounce|label|judge +(verb)|attach to|accompany|come with|go with +(verb)|draw +(verb)|harness|rein|restrict|restrain|trammel|limit|bound|confine|throttle +rule-governed|1 +(adj)|lawful|orderly|regular +rule book|1 +(noun)|book|collection|aggregation|accumulation|assemblage +rule in|1 +(verb)|rule out|rule|decree +rule of cy pres|1 +(noun)|cy pres|cy pres doctrine|rule|regulation +rule of evidence|1 +(noun)|rule|prescript +rule of grammar|1 +(noun)|grammatical rule|rule|linguistic rule +rule of law|1 +(noun)|order +rule of morphology|1 +(noun)|morphological rule|rule|linguistic rule +rule of thumb|1 +(noun)|guidepost|guideline|rule|regulation +rule out|3 +(verb)|preclude|close out|obviate|rid of|eliminate +(verb)|rule in|rule|decree +(verb)|eliminate|reject +ruled|1 +(adj)|subordinate +ruler|2 +(noun)|rule|measuring stick|measure|measuring rod +(noun)|swayer|person|individual|someone|somebody|mortal|human|soul +rulership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +rules of order|1 +(noun)|order|parliamentary law|parliamentary procedure|rule|prescript +ruling|2 +(adj)|regnant|reigning|powerful +(noun)|opinion|judgment|judgement|judicial decision +ruling class|1 +(noun)|upper class|upper crust +ruly|1 +(adj)|tidy +rum|3 +(adj)|curious|funny|odd|peculiar|queer|rummy|singular|strange |unusual +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +(noun)|rummy|card game|cards +rum-blossom|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|potato nose|hammer nose|copper nose|rhinopathy +rum baba|1 +(noun)|baba au rhum|baba +rum cherry|1 +(noun)|black cherry|black cherry tree|Prunus serotina|wild cherry|wild cherry tree +rum cocktail|1 +(noun)|daiquiri|cocktail +rum nose|1 +(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy +rum sling|1 +(noun)|sling +rumania|1 +(noun)|Romania|Roumania|Rumania|Balkan country|Balkan nation|Balkan state +rumanian|3 +(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state +(noun)|Romanian|Rumanian|Romance|Romance language|Latinian language +(noun)|Romanian|Rumanian|European +rumansh|2 +(adj)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic +(noun)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic +rumba|3 +(noun)|rhumba|dance music|danceroom music|ballroom music +(noun)|folk dancing|folk dance +(noun)|ballroom dancing|ballroom dance +rumble|5 +(noun)|rumbling|grumble|grumbling|noise +(noun)|seat +(noun)|gang fight|fight|fighting|combat|scrap +(verb)|grumble|sound|go +(verb)|grumble|growl|utter|emit|let out|let loose +rumble seat|1 +(noun)|seat +rumbling|2 +(adj)|grumbling|full +(noun)|rumble|grumble|grumbling|noise +rumbustious|1 +(adj)|boisterous|rambunctious|robustious|unruly|disorderly +rumen|1 +(noun)|first stomach|stomach|tummy|tum|breadbasket +rumex|1 +(noun)|Rumex|genus Rumex|dicot genus|magnoliopsid genus +rumex acetosa|1 +(noun)|sour dock|garden sorrel|Rumex acetosa|dock|sorrel|sour grass +rumex acetosella|1 +(noun)|sheep sorrel|sheep's sorrel|Rumex acetosella|dock|sorrel|sour grass +rumex obtusifolius|1 +(noun)|bitter dock|broad-leaved dock|yellow dock|Rumex obtusifolius|dock|sorrel|sour grass +rumex scutatus|1 +(noun)|French sorrel|garden sorrel|Rumex scutatus|dock|sorrel|sour grass +ruminant|2 +(adj)|ruminant |animal order +(noun)|even-toed ungulate|artiodactyl|artiodactyl mammal +ruminantia|1 +(noun)|Ruminantia|suborder Ruminantia|animal order +ruminate|2 +(verb)|eat +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|speculate|think|cogitate|cerebrate +rumination|3 +(noun)|contemplation|reflection|reflexion|musing|thoughtfulness|consideration +(noun)|chew|chewing|mastication|manduction +(noun)|vomit|vomiting|emesis|regurgitation|disgorgement|puking +ruminative|1 +(adj)|brooding|broody|contemplative|meditative|musing|pensive|pondering|reflective|thoughtful +ruminator|1 +(noun)|muser|muller|ponderer|thinker +rummage|3 +(noun)|clutter|jumble|muddle|mare's nest|welter|smother +(noun)|ransacking|search|hunt|hunting +(verb)|search +rummage sale|1 +(noun)|jumble sale|sale|cut-rate sale|sales event +rummer|1 +(noun)|glass|drinking glass +rummy|3 +(adj)|curious|funny|odd|peculiar|queer|rum|singular|strange |unusual +(noun)|drunkard|drunk|sot|inebriate|drinker|imbiber|toper|juicer +(noun)|rum|card game|cards +rumohra|1 +(noun)|Rumohra|genus Rumohra|fern genus +rumohra adiantiformis|1 +(noun)|leather fern|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern +rumor|2 +(noun)|rumour|hearsay|gossip|comment|scuttlebutt +(verb)|rumour|bruit|dish the dirt|gossip +rumored|1 +(adj)|reported +rumormonger|1 +(noun)|gossip|gossiper|gossipmonger|rumourmonger|newsmonger|communicator +rumour|2 +(noun)|rumor|hearsay|gossip|comment|scuttlebutt +(verb)|rumor|bruit|dish the dirt|gossip +rumourmonger|1 +(noun)|gossip|gossiper|gossipmonger|rumormonger|newsmonger|communicator +rump|3 +(noun)|hindquarters|croup|croupe|body part +(noun)|cut of beef +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +rump roast|1 +(noun)|roast|joint +rump steak|1 +(noun)|beefsteak +rumpelstiltskin|1 +(noun)|Rumpelstiltskin|fictional character|fictitious character|character +rumple|3 +(verb)|ruffle|ruffle up|mess up|disarrange +(verb)|pucker|cockle|crumple|knit|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|crisp +(verb)|crumple|wrinkle|crease|crinkle|fold|fold up +rumpled|2 +(adj)|disheveled|dishevelled|frowzled|tousled|untidy +(adj)|crumpled|creased|wrinkled +rumpus|2 +(noun)|commotion|din|ruction|ruckus|tumult|disturbance +(verb)|agitate|foment|stir up +rumpus room|1 +(noun)|playroom|game room|recreation room|rec room +rumrunner|1 +(noun)|smuggler|runner|contrabandist|moon curser|moon-curser +run|56 +(noun)|tally|score +(noun)|test|trial|attempt|effort|endeavor|endeavour|try +(noun)|footrace|foot race|race +(noun)|streak|succession +(noun)|running|running play|running game|football play +(noun)|trip +(noun)|running|locomotion|travel +(noun)|time period|period of time|period +(noun)|liberty +(noun)|indefinite quantity +(noun)|rivulet|rill|runnel|streamlet|stream|watercourse +(noun)|political campaign|campaign|race +(noun)|ladder|ravel|damage|harm|impairment +(noun)|discharge|outpouring|flow|flowing +(noun)|sequence|chronological sequence|succession|successiveness|chronological succession +(noun)|trip +(verb)|travel rapidly|speed|hurry|zip|run around|run away +(verb)|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +(verb)|go|pass|lead|extend|be|run along +(verb)|operate|direct +(verb)|go|be +(verb)|flow|feed|course|move|run over +(verb)|function|work|operate|go +(verb)|range|be +(verb)|campaign|race +(verb)|play +(verb)|travel|go|move|locomote +(verb)|tend|be given|lean|incline|be +(verb)|execute|enforce|implement|apply +(verb)|function|work|operate|go +(verb)|become|go|get +(verb)|process|treat +(verb)|incur +(verb)|prevail|persist|die hard|endure|continue +(verb)|occur +(verb)|carry|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|carry through|accomplish|execute|carry out|action|fulfill|fulfil +(verb)|guide|draw|pass +(verb)|lead|pass|make pass +(verb)|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|black market|trade|merchandise +(verb)|move|displace +(verb)|bleed|diffuse|spread|spread out|fan out +(verb)|sail +(verb)|pass|go through|go across +(verb)|run for|last|endure +(verb)|free|liberate|release|unloose|unloosen|loose +(verb)|consort|accompany +(verb)|travel|go|move|locomote +(verb)|ply|travel|trip|jaunt +(verb)|hunt|hunt down|track down|capture|catch +(verb)|race|compete|vie|contend|run off +(verb)|move|go|change +(verb)|melt|melt down|dissolve|resolve|break up +(verb)|ladder|break|separate|split up|fall apart|come apart +(verb)|unravel|disintegrate +run-down|2 +(adj)|creaky|decrepit|flea-bitten|woebegone|worn +(adj)|malfunctioning |nonfunctional +run-in|1 +(noun)|quarrel|wrangle|row|words|dustup|dispute|difference|difference of opinion|conflict +run-of-the-mill|1 +(adj)|run-of-the-mine|mine run|unexceptional|ordinary +run-of-the-mine|1 +(adj)|run-of-the-mill|mine run|unexceptional|ordinary +run-on|1 +(adj)|run-on +run-on sentence|1 +(noun)|sentence +run-resistant|1 +(adj)|runproof|ladder-proof|impervious |imperviable +run-through|1 +(noun)|rehearsal|dry run +run-time|2 +(noun)|point|point in time +(noun)|run +run-time error|1 +(noun)|semantic error|runtime error|software error|programming error +run-up|3 +(noun)|runup|increase +(noun)|approach|approaching|coming +(noun)| +run a risk|1 +(verb)|gamble|chance|risk|hazard|take chances|adventure|take a chance|try|seek|attempt|essay|assay +run across|1 +(verb)|meet|ran into|encounter|come across|see +run afoul|1 +(verb)|conflict|infringe|contravene|transgress|offend|infract|violate|go against|breach|break +run aground|3 +(verb)|ground|land +(verb)|ground|reach|make|attain|hit|arrive at|gain +(verb)|get stranded|grind to a halt|get stuck|bog down|mire +run along|1 +(verb)|line|lie +run around|1 +(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|lark about|play +run away|2 +(verb)|run|scarper|turn tail|lam|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +(verb)|escape|get away|break loose +run bases|1 +(verb)|run +run batted in|1 +(noun)|rbi|run|tally +run by|1 +(verb)|travel by|pass by|surpass|go past|go by|pass +run down|7 +(verb)|check out|pursue|follow up on|act on +(verb)|run|flow|feed|course +(verb)|run over|injure|wound +(verb)|poop out|peter out|run out|conk out|tire|pall|weary|fatigue|jade +(verb)|scan|skim|rake|glance over|examine|see +(verb)|exhaust|play out|sap|tire|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|chase|chase after|trail|tail|tag|give chase|dog|go after|track +run dry|1 +(verb)|dry out|dry|dry out +run for|1 +(verb)|run|last|endure +run into|3 +(verb)|encounter|be +(verb)|bump into|jar against|butt against|knock against|hit|strike|impinge on|collide with +(verb)|hit|strike|impinge on|collide with|touch +run low|1 +(verb)|run short|go|end|stop|finish|terminate|cease +run off|7 +(verb)|abscond|bolt|absquatulate|decamp|go off|flee|fly|take flight +(verb)|run out|bolt|bolt out|beetle off|leave|go forth|go away +(verb)|chase away|drive out|turn back|drive away|dispel|drive off|move|displace +(verb)|elope|flee|fly|take flight +(verb)|waste|run|flow|feed|course +(verb)|photocopy|xerox|reproduce +(verb)|compete|vie|contend +run on|2 +(verb)|speak|talk +(verb)|keep going|continue|go on|proceed|go along|keep +run out|8 +(verb)|end|stop|finish|terminate|cease +(verb)|drain|run|flow|feed|course +(verb)|run off|bolt|bolt out|beetle off|leave|go forth|go away +(verb)|expire|discontinue +(verb)|spill|run|flow|feed|course +(verb)|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|fail|give out +(verb)|poop out|peter out|run down|conk out|tire|pall|weary|fatigue|jade +run over|2 +(verb)|run down|injure|wound +(verb)|overflow|overrun|well over|brim over|spill|run out +run roughshod|1 +(verb)|ride roughshod|treat|handle|do by +run short|1 +(verb)|run low|go|end|stop|finish|terminate|cease +run through|2 +(verb)|work through|go through|work +(verb)|consume|eat up|use up|eat|deplete|exhaust|wipe out|spend|expend|drop +run up|5 +(verb)|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|hoist|raise|lift|elevate|get up|bring up +(verb)|sew|sew together|stitch|fasten|fix|secure +(verb)|chalk up|owe +(verb)|sew|tailor|tailor-make +runabout|1 +(noun)|roadster|two-seater|car|auto|automobile|machine|motorcar +runaway|3 +(adj)|uncontrolled +(noun)|blowout|romp|laugher|shoo-in|walkaway|victory|triumph +(noun)|fugitive|person|individual|someone|somebody|mortal|human|soul +runaway robin|1 +(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|Glechoma hederaceae|Nepeta hederaceae|vine +runch|1 +(noun)|jointed charlock|wild radish|wild rape|Raphanus raphanistrum|weed +runcible spoon|1 +(noun)|spoon +runcinate|1 +(adj)|rough +runcinate leaf|1 +(noun)|leaf|leafage|foliage +rundle|1 +(noun)|spoke|rung|crosspiece +rundown|1 +(noun)|summation|summing up|summary +rundstedt|1 +(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal +rune|1 +(noun)|runic letter|character|grapheme|graphic symbol +rung|2 +(noun)|round|stave|crosspiece +(noun)|rundle|spoke|crosspiece +runic|1 +(adj)|character|grapheme|graphic symbol +runic letter|1 +(noun)|rune|character|grapheme|graphic symbol +runnel|1 +(noun)|rivulet|rill|run|streamlet|stream|watercourse +runner|9 +(noun)|smuggler|contrabandist|moon curser|moon-curser|criminal|felon|crook|outlaw|malefactor +(noun)|traveler|traveller +(noun)|messenger|courier +(noun)|base runner|ballplayer|baseball player +(noun)|stolon|offset|plant organ +(noun)|athlete|jock +(noun)|rug|carpet|carpeting +(noun)|device +(noun)|blue runner|Caranx crysos|jack +runner-up|1 +(noun)|second best|rival|challenger|competitor|competition|contender +runner-up finish|1 +(noun)|second-place finish|finish +runner bean|2 +(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +(noun)|scarlet runner|scarlet runner bean|English runner bean|green bean +runniness|1 +(noun)|fluidity|fluidness|liquidity|liquidness|thinness +running|12 +(adj)|moving +(adj)|running |flowing|streaming|gushing|pouring|jetting|spouting|spurting|squirting +(adj)|continual +(adj)|running +(adj)|running |flying +(adj)|linear|lengthwise |lengthways +(adj)|operative|functional|working|functioning +(noun)|run|running play|running game|football play +(noun)|run|locomotion|travel +(noun)|operation +(noun)|administration|disposal +(noun)|track|track and field +running away|1 +(noun)|deed|feat|effort|exploit +running back|1 +(noun)|back +running blackberry|1 +(noun)|dewberry|dewberry bush|blackberry|blackberry bush +running board|1 +(noun)|footboard +running game|1 +(noun)|run|running|running play|football play +running hand|1 +(noun)|longhand|cursive|cursive script|handwriting|hand|script +running head|1 +(noun)|running headline|heading|header|head +running headline|1 +(noun)|running head|heading|header|head +running light|1 +(noun)|sidelight|light|light source +running mate|1 +(noun)|campaigner|candidate|nominee +running noose|1 +(noun)|noose|slip noose|loop +running pine|1 +(noun)|Lycopodium clavitum|ground pine|Christmas green +running play|1 +(noun)|run|running|running game|football play +running pop|1 +(noun)|love-in-a-mist|wild water lemon|Passiflora foetida|passionflower|passionflower vine +running postman|1 +(noun)|scarlet runner|Kennedia prostrata|coral pea +running shoe|1 +(noun)|shoe +running start|2 +(noun)|flying start|racing start +(noun)|flying start|start +running stitch|1 +(noun)|stitch +running suit|1 +(noun)|sportswear|athletic wear|activewear +running time|1 +(noun)|time period|period of time|period +running title|1 +(noun)|running head|running headline +runny|1 +(adj)|fluid|liquid +runoff|2 +(noun)|overflow|overspill|flow|flowing +(noun)|election +runproof|1 +(adj)|ladder-proof|run-resistant|impervious |imperviable +runt|1 +(noun)|shrimp|peewee|half-pint|small person +runtime error|1 +(noun)|semantic error|run-time error|software error|programming error +runtiness|1 +(noun)|puniness|stuntedness|smallness|littleness +runty|2 +(adj)|pint-size|pint-sized|sawed-off|sawn-off|short +(adj)|puny|shrimpy|small +runup|1 +(noun)|run-up|increase +runway|2 +(noun)|platform +(noun)|paved surface +runyon|1 +(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer|author +rupee|6 +(noun)|Sri Lanka rupee|Sri Lankan monetary unit +(noun)|Seychelles rupee|Seychelles monetary unit +(noun)|Nepalese rupee|Nepalese monetary unit +(noun)|Mauritian rupee|Mauritian monetary unit +(noun)|Pakistani rupee|Pakistani monetary unit +(noun)|Indian rupee|Indian monetary unit +rupert|1 +(noun)|Rupert|Prince Rupert|prince +rupert brooke|1 +(noun)|Brooke|Rupert Brooke|poet +rupert murdoch|1 +(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher +rupestral|1 +(adj)|rupicolous|material|stuff +rupestral plant|1 +(noun)|rupestrine plant|rupicolous plant|saxicolous plant|rock plant +rupestrine plant|1 +(noun)|rupestral plant|rupicolous plant|saxicolous plant|rock plant +rupiah|1 +(noun)|Indonesian monetary unit +rupicapra|1 +(noun)|Rupicapra|genus Rupicapra|mammal genus +rupicapra rupicapra|1 +(noun)|chamois|Rupicapra rupicapra|goat antelope +rupicola|1 +(noun)|Rupicola|genus Rupicola|bird genus +rupicola peruviana|1 +(noun)|cock of the rock|Rupicola peruviana|cotinga|chatterer +rupicola rupicola|1 +(noun)|cock of the rock|Rupicola rupicola|cotinga|chatterer +rupicolous|1 +(adj)|rupestral|material|stuff +rupicolous plant|1 +(noun)|rupestral plant|rupestrine plant|saxicolous plant|rock plant +ruptiliocarpon|1 +(noun)|Ruptiliocarpon|genus Ruptiliocarpon|rosid dicot genus +ruptiliocarpon caracolito|1 +(noun)|caracolito|Ruptiliocarpon caracolito|tree +rupture|4 +(noun)|injury|hurt|harm|trauma +(noun)|breach|break|severance|rift|falling out|separation|breakup|detachment +(noun)|breakage|break|breaking +(verb)|tear|snap|bust|separate|disunite|divide|part +ruptured|1 +(adj)|burst|busted|damaged +ruptured intervertebral disc|1 +(noun)|herniated disc|slipped disc|rupture +rupturewort|1 +(noun)|Hernaria glabra|groundcover|ground cover +rural|2 +(adj)|rural |agrarian|agricultural|farming|agrestic|rustic|arcadian|bucolic|pastoral|rustic|campestral|countrified|countryfied|rustic|country-bred|country-style|cracker-barrel|folksy|homespun|hobnailed +(adj)|geographical area|geographic area|geographical region|geographic region +rural area|1 +(noun)|country|geographical area|geographic area|geographical region|geographic region +ruralism|2 +(noun)|rusticism|idiom|idiomatic expression|phrasal idiom|set phrase|phrase +(noun)|rurality|characteristic|trait +ruralist|1 +(noun)|advocate|advocator|proponent|exponent +rurality|1 +(noun)|ruralism|characteristic|trait +ruritania|1 +(noun)|Ruritania|imaginary place|mythical place +ruritanian|2 +(adj)|Ruritanian|imaginary place|mythical place +(noun)|Ruritanian|fictional character|fictitious character|character +rus|2 +(noun)|Rus|country|state|land +(noun)|ruthenium|Ru|atomic number 44|metallic element|metal +ruscaceae|1 +(noun)|Ruscaceae|family Ruscaceae|liliid monocot family +ruscus|1 +(noun)|Ruscus|genus Ruscus|liliid monocot genus +ruscus aculeatus|1 +(noun)|butcher's broom|Ruscus aculeatus|shrub|bush +ruse|1 +(noun)|artifice|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +rush|16 +(adj)|first-come-first-serve|unreserved +(adj)|rushed|hurried +(noun)|haste|hurry|rushing|motion|movement|move +(noun)|spate|surge|upsurge|flow|flowing +(noun)|marsh plant|bog plant|swamp plant +(noun)|Rush|Benjamin Rush|doctor|doc|physician|MD|Dr.|medico|American Revolutionary leader +(noun)|bang|boot|charge|flush|thrill|kick|exhilaration|excitement +(noun)|outburst|burst|flare-up +(noun)|rushing|run|running|running play|running game +(verb)|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote +(verb)|assail|assault|set on|attack +(verb)|hurry|urge|urge on|press|exhort +(verb)|hasten|hurry|look sharp|festinate|act|move +(verb)|run +(verb)|race|move|displace +(verb)|induce|stimulate|hasten|effect|effectuate|bring about|set up +rush-grass|2 +(noun)|rush grass|grass +(noun)| +rush along|1 +(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|cannonball along|bucket along|belt along|travel|go|move|locomote +rush aster|1 +(noun)|aster +rush away|1 +(verb)|rush off|leave|go forth|go away +rush candle|1 +(noun)|rushlight|candle|taper|wax light +rush family|1 +(noun)|Juncaceae|family Juncaceae|monocot family|liliopsid family +rush grass|2 +(noun)|rush-grass|grass +(noun)| +rush hour|1 +(noun)|hour|time of day +rush nut|1 +(noun)|chufa|yellow nutgrass|earth almond|ground almond|Cyperus esculentus|sedge +rush off|1 +(verb)|rush away|leave|go forth|go away +rush out|1 +(verb)|leap out|sally out|burst forth|appear +rush rose|1 +(noun)|Helianthemum scoparium|helianthemum|sunrose|sun rose +rushdie|1 +(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer|author +rushed|1 +(adj)|rush|hurried +rusher|3 +(noun)|ball carrier +(noun)|migrant|migrator +(noun)|person|individual|someone|somebody|mortal|human|soul +rushing|2 +(noun)|rush|run|running|running play|running game +(noun)|haste|hurry|rush|motion|movement|move +rushlight|1 +(noun)|rush candle|candle|taper|wax light +rushlike|1 +(adj)|sedgelike|grassy +rushmore|1 +(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak +rushy|1 +(adj)|wooded +rusk|1 +(noun)|zwieback|Brussels biscuit|twice-baked bread|toast +ruskin|1 +(noun)|Ruskin|John Ruskin|art critic +russel crouse|1 +(noun)|Crouse|Russel Crouse|dramatist|playwright +russell|7 +(noun)|Russell|Charles Taze Russell|religious leader +(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker|filmmaker|film producer|movie maker +(noun)|Russell|Bill Russell|William Felton Russell|center +(noun)|Russell|Lillian Russell|singer|vocalist|vocalizer|vocaliser +(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer|uranologist|stargazer +(noun)|Russell|George William Russell|A.E.|writer|author +(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician|logistician|philosopher +russell's body|1 +(noun)|Russell's body|cancer body|inclusion body|cellular inclusion|inclusion +russet|2 +(adj)|chromatic +(noun)|homespun|homespun fabric +russet scab|1 +(noun)|little potato|rosette|stem canker|rhizoctinia disease +russia|4 +(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country|state|land +(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic +(noun)|Russia|empire +(noun)|Russia|Russian Federation|country|state|land +russia leather|1 +(noun)|Russia leather|leather +russian|3 +(adj)|Russian|country|state|land +(noun)|Russian|native|indigen|indigene +(noun)|Russian|Slavic|Slavic language|Slavonic|Slavonic language +russian-speaking|1 +(adj)|Russian-speaking|communicative |communicatory +russian agency|1 +(noun)|Russian agency|administrative unit|administrative body +russian almond|1 +(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree +russian bank|1 +(noun)|Russian bank|crapette|solitaire|patience +russian cactus|1 +(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub|bush +russian capital|1 +(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital +russian dandelion|1 +(noun)|Russian dandelion|kok-saghyz|kok-sagyz|Taraxacum kok-saghyz|dandelion|blowball +russian dressing|1 +(noun)|Russian dressing|Russian mayonnaise|dressing|salad dressing +russian federation|1 +(noun)|Russia|Russian Federation|country|state|land +russian mayonnaise|1 +(noun)|Russian dressing|Russian mayonnaise|dressing|salad dressing +russian monetary unit|1 +(noun)|Russian monetary unit|monetary unit +russian olive|1 +(noun)|Russian olive|silver berry|Elaeagnus augustifolia|oleaster +russian orthodox|1 +(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church +russian orthodox church|1 +(noun)|Russian Orthodox Church|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox +russian revolution|2 +(noun)|Russian Revolution|October Revolution|coup d'etat|coup|putsch|takeover +(noun)|Russian Revolution|February Revolution|revolution +russian river|1 +(noun)|Russian River|river +russian roulette|1 +(noun)|Russian roulette|stunt +russian soviet federated socialist republic|1 +(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic +russian thistle|1 +(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub|bush +russian tumbleweed|1 +(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub|bush +russian vine|1 +(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine +russian wolfhound|1 +(noun)|borzoi|Russian wolfhound|wolfhound +russo-japanese war|1 +(noun)|Russo-Japanese War|war|warfare +russula|1 +(noun)|Russula|genus Russula|fungus genus +russulaceae|1 +(noun)|Russulaceae|family Russulaceae|fungus family +rust|8 +(adj)|rusty|chromatic +(noun)|ferric oxide +(noun)|plant disease +(noun)|rusting|corrosion|corroding|erosion|oxidation|oxidization|oxidisation +(noun)|rust fungus|fungus +(verb)|corrode|decay|crumble|delapidate +(verb)|corrode|eat|damage +(verb)|oxidise|oxidize|oxidate +rust-free|1 +(adj)|unrusted|rustless +rust fungus|1 +(noun)|rust|fungus +rust inhibitor|1 +(noun)|antioxidant +rust mite|1 +(noun)|mite +rustbelt|1 +(noun)|Rustbelt|urban area|populated area +rusted|1 +(adj)|rusted |rusty +rustic|5 +(adj)|countrified|countryfied|rural +(adj)|bumpkinly|hick|unsophisticated|provincial +(adj)|arcadian|bucolic|pastoral|rural +(adj)|agrestic|rural +(noun)|commoner|common man|common person +rusticate|5 +(verb)|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +(verb)|banish|ban +(verb)|send down|suspend|debar +(verb)|rebate +(verb)|change|alter|modify +rustication|5 +(noun)|condition|status +(noun)|construction|building +(noun)|retirement +(noun)|suspension|temporary removal +(noun)|banishment|proscription +rusticism|1 +(noun)|ruralism|idiom|idiomatic expression|phrasal idiom|set phrase|phrase +rusticity|1 +(noun)|gaucherie|awkwardness|clumsiness|gracelessness|stiffness +rusting|1 +(noun)|rust|corrosion|corroding|erosion|oxidation|oxidization|oxidisation +rustle|3 +(noun)|rustling|whisper|whispering|noise +(verb)|sound|go +(verb)|lift|steal +rustler|1 +(noun)|cattle thief|thief|stealer +rustless|1 +(adj)|rustless |rust-free|unrusted|rustproof|rustproofed|undercoated|undersealed +rustling|3 +(adj)|murmurous|soughing|susurrous|soft +(noun)|larceny|theft|thievery|thieving|stealing +(noun)|rustle|whisper|whispering|noise +rustproof|1 +(adj)|rustproofed|rustless +rustproofed|1 +(adj)|rustproof|rustless +rusty|4 +(adj)|rusted +(adj)|rust|chromatic +(adj)|out of practice|unskilled +(adj)|hoary|old +rusty blackbird|1 +(noun)|rusty grackle|Euphagus carilonus|New World blackbird|blackbird +rusty grackle|1 +(noun)|rusty blackbird|Euphagus carilonus|New World blackbird|blackbird +rusty rig|1 +(noun)|Port Jackson fig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree +rusty woodsia|1 +(noun)|fragrant woodsia|oblong woodsia|Woodsia ilvensis|woodsia +rut|5 +(noun)|groove|channel +(noun)|groove|routine|modus operandi +(noun)|estrus|oestrus|heat|physiological state|physiological condition +(verb)|be +(verb)|furrow|groove|dig|delve|cut into|turn over +ruta|1 +(noun)|Ruta|genus Ruta|rosid dicot genus +ruta graveolens|1 +(noun)|rue|herb of grace|Ruta graveolens|herb|herbaceous plant +rutabaga|2 +(noun)|swede|swedish turnip|yellow turnip|turnip +(noun)|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant +rutabaga plant|1 +(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|Brassica napus napobrassica|turnip plant +rutaceae|1 +(noun)|Rutaceae|family Rutaceae|rue family|rosid dicot family +ruth|4 +(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer|baseball player +(noun)|Ruth|wife|married woman +(noun)|commiseration|pity|pathos|sympathy|fellow feeling +(noun)|Ruth|Book of Ruth|book +ruth benedict|1 +(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist +ruth fulton|1 +(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist +ruth saint denis|1 +(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer|professional dancer|choreographer +ruth st. denis|1 +(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer|professional dancer|choreographer +ruthenium|1 +(noun)|Ru|atomic number 44|metallic element|metal +rutherford|3 +(noun)|radioactivity unit +(noun)|Rutherford|Daniel Rutherford|chemist +(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist +rutherford atom|1 +(noun)|Rutherford atom|atomic theory +rutherford b. hayes|1 +(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States|United States President|President|Chief Executive +rutherford birchard hayes|1 +(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States|United States President|President|Chief Executive +rutherfordium|1 +(noun)|Rf|kurchatovium|Ku|unnilquadium|Unq|element 104|atomic number 104|chemical element|element +ruthful|1 +(adj)|contrite|remorseful|rueful|sorry|penitent +ruthfulness|1 +(noun)|mournfulness|sorrowfulness|sorrow +ruthless|1 +(adj)|pitiless|remorseless|unpitying|merciless |unmerciful +ruthlessness|2 +(noun)|pitilessness|mercilessness|unmercifulness +(noun)|cruelty|mercilessness|pitilessness|heartlessness|coldheartedness|hardheartedness +rutile|1 +(noun)|mineral +rutilus|1 +(noun)|Rutilus|genus Rutilus|fish genus +rutilus rutilus|1 +(noun)|roach|Rutilus rutilus|cyprinid|cyprinid fish +rutland|1 +(noun)|Rutland|town +rutted|1 +(adj)|rutty|furrowed +ruttish|1 +(adj)|aroused|horny|randy|turned on|sexy +rutty|1 +(adj)|rutted|furrowed +ruvettus pretiosus|1 +(noun)|oilfish|Ruvettus pretiosus|gempylid +rv|1 +(noun)|recreational vehicle|RV|self-propelled vehicle +rwanda|1 +(noun)|Rwanda|Rwandese Republic|Ruanda|African country|African nation +rwanda franc|1 +(noun)|Rwanda franc|franc +rwandan|2 +(adj)|Rwandan|Ruandan|African country|African nation +(noun)|Rwandan|African +rwandese republic|1 +(noun)|Rwanda|Rwandese Republic|Ruanda|African country|African nation +rya|1 +(noun)|rya rug|shag rug +rya rug|1 +(noun)|rya|shag rug +rydberg|1 +(noun)|rydberg constant|rydberg unit|wave number +rydberg's penstemon|1 +(noun)|Rydberg's penstemon|Penstemon rydbergii|wildflower|wild flower +rydberg constant|1 +(noun)|rydberg|rydberg unit|wave number +rydberg unit|1 +(noun)|rydberg|rydberg constant|wave number +rye|3 +(noun)|grain|caryopsis +(noun)|Secale cereale|cereal|cereal grass +(noun)|rye whiskey|rye whisky|whiskey|whisky +rye bread|1 +(noun)|bread|breadstuff|staff of life +rye ergot|1 +(noun)|ergot|Claviceps purpurea +rye grass|2 +(noun)|ryegrass|grass +(noun)| +rye whiskey|1 +(noun)|rye|rye whisky|whiskey|whisky +rye whisky|1 +(noun)|rye|rye whiskey|whiskey|whisky +ryegrass|1 +(noun)|rye grass|grass +rynchopidae|1 +(noun)|Rynchopidae|family Rynchopidae|bird family +rynchops|1 +(noun)|Rynchops|genus Rynchops|bird genus +rypticus|1 +(noun)|Rypticus|genus Rypticus|fish genus +ryukyu islands|1 +(noun)|Ryukyu Islands|archipelago +ryukyuan|2 +(noun)|Ryukyuan|Japanese|Nipponese +(noun)|Ryukyuan|Japanese +s|6 +(noun)|second|sec|time unit|unit of time +(noun)|sulfur|S|sulphur|atomic number 16|chemical element|element +(noun)|south|due south|S|cardinal compass point +(noun)|mho|siemens|reciprocal ohm|S|conductance unit +(noun)|S|letter|letter of the alphabet|alphabetic character +(noun)|randomness|entropy|S|physical property +s-shape|1 +(noun)|S-shape|curve|curved shape +s-shaped|1 +(adj)|formed +s. s. van dine|1 +(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer|author +s. smith stevens|1 +(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist +s.t.p.|2 +(noun)|STP|standard temperature|standard atmosphere|atmosphere|atm|standard pressure +(noun)| +s.u.v.|1 +(noun)|sport utility|sport utility vehicle|S.U.V.|car|auto|automobile|machine|motorcar +s/n|1 +(noun)|signal-to-noise ratio|signal-to-noise|signal/noise ratio|signal/noise|S/N|ratio +s10-membered|1 +(adj)|ten-membered|membered +s wrench|1 +(noun)|S wrench|open-end wrench|tappet wrench +sa|1 +(noun)|SA|Sturmarbeiteilung|Storm Troops|militia|reserves +sa node|1 +(noun)|pacemaker|cardiac pacemaker|sinoatrial node|SA node|cardiac muscle|heart muscle +saale|1 +(noun)|Saale|Saale River|river +saale glaciation|1 +(noun)|Saale glaciation|glaciation +saale river|1 +(noun)|Saale|Saale River|river +saarinen|2 +(noun)|Saarinen|Eliel Saarinen|architect|designer +(noun)|Saarinen|Eero Saarinen|architect|designer +saba|1 +(noun)|Saba|island +sabah|1 +(noun)|Sabah|North Borneo|district|territory|territorial dominion|dominion +sabahan|2 +(adj)|Sabahan|district|territory|territorial dominion|dominion +(noun)|Sabahan|Malaysian +sabal|1 +(noun)|Sabal|genus Sabal|monocot genus|liliopsid genus +sabal palmetto|1 +(noun)|cabbage palmetto|cabbage palm|Sabal palmetto|palmetto +sabaoth|1 +(noun)|Sabaoth|host|legion +sabaton|1 +(noun)|solleret|armor plate|armour plate|armor plating|plate armor|plate armour +sabayon|1 +(noun)|zabaglione|dessert|sweet|afters +sabbat|1 +(noun)|witches' Sabbath|assembly +sabbatarian|2 +(adj)|Sabbatarian|rest day|day of rest +(noun)|Sabbatarian|religionist|religious person +sabbath|1 +(noun)|Sabbath|rest day|day of rest +sabbath school|1 +(noun)|Sunday school|Sabbath school|school +sabbatia|1 +(noun)|marsh plant|bog plant|swamp plant +sabbatia angularis|1 +(noun)|rose pink|bitter floom|American centaury|Sabbatia Angularis|sabbatia +sabbatia campestris|1 +(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia +sabbatia stellaris|1 +(noun)|marsh pink|American centaury|Sabbatia stellaris|sabbatia +sabbatic|1 +(adj)|sabbatical|rest day|day of rest +sabbatical|3 +(adj)|sabbatic|rest day|day of rest +(adj)|leave|leave of absence +(noun)|sabbatical leave|leave|leave of absence +sabbatical leave|1 +(noun)|sabbatical|leave|leave of absence +sabbatical year|1 +(noun)|sabbatical|sabbatical leave +sabbatum|1 +(noun)|Saturday|Sabbatum|Sat|weekday +sabellian|1 +(noun)|Sabellian|Osco-Umbrian +saber|4 +(noun)|sabre|fencing sword +(noun)|cavalry sword|sabre|sword|blade|brand|steel +(verb)|sabre|cut +(verb)|sabre|kill +saber-toothed|2 +(adj)|sabertoothed|sabre-toothed|toothed +(adj)| +saber-toothed tiger|1 +(noun)|sabertooth|big cat|cat +saber rattling|1 +(noun)|sabre rattling|military action|action +saber saw|1 +(noun)|jigsaw|reciprocating saw|power saw|saw|sawing machine +sabertooth|1 +(noun)|saber-toothed tiger|big cat|cat +sabertoothed|1 +(adj)|saber-toothed|sabre-toothed|toothed +sabicu|2 +(noun)|sabicu wood|wood +(noun)|Lysiloma sabicu|shrub|bush +sabicu wood|1 +(noun)|sabicu|wood +sabin|2 +(noun)|absorption unit +(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist +sabin vaccine|1 +(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine +sabine|1 +(noun)|Sabine|Sabine River|river +sabine pine|1 +(noun)|Torrey pine|Torrey's pine|soledad pine|gray-leaf pine|Pinus torreyana|pine|pine tree|true pine +sabine river|1 +(noun)|Sabine|Sabine River|river +sabinea|1 +(noun)|Sabinea|genus Sabinea|rosid dicot genus +sabinea carinalis|1 +(noun)|carib wood|Sabinea carinalis|tree +sable|6 +(adj)|achromatic +(noun)|sable brush|sable's hair pencil|brush +(noun)|fur|pelt +(noun)|coal black|ebony|jet black|pitch black|soot black|black|blackness +(noun)|scarf +(noun)|Martes zibellina|marten|marten cat +sable's hair pencil|1 +(noun)|sable|sable brush|brush +sable antelope|1 +(noun)|Hippotragus niger|antelope +sable brush|1 +(noun)|sable|sable's hair pencil|brush +sable coat|1 +(noun)|fur coat +sabot|2 +(noun)|wooden shoe|shoe +(noun)|clog|geta|patten|footwear|footgear +sabotage|2 +(noun)|destruction|devastation +(verb)|undermine|countermine|counteract|subvert|weaken|disobey +saboteur|2 +(noun)|wrecker|diversionist|destroyer|ruiner|undoer|waster|uprooter +(noun)|fifth columnist|traitor|treasonist +sabra|1 +(noun)|Israeli +sabre|4 +(noun)|saber|fencing sword +(noun)|cavalry sword|saber|sword|blade|brand|steel +(verb)|saber|cut +(verb)|saber|kill +sabre-toothed|1 +(adj)|saber-toothed|sabertoothed|toothed +sabre rattling|1 +(noun)|saber rattling|military action|action +sac|4 +(noun)|pouch|sack|pocket|cavity|enclosed space +(noun)|theca|covering|natural covering|cover +(noun)|Sauk|Sac|Algonquian|Algonquin +(noun)|cavity|bodily cavity|cavum +sac fungus|1 +(noun)|fungus +saccharase|1 +(noun)|invertase|sucrase|disaccharidase +saccharic acid|1 +(noun)|carboxylic acid +saccharide|1 +(noun)|carbohydrate|sugar|macromolecule|supermolecule +saccharify|2 +(verb)|sugar|sweeten|dulcify|edulcorate|dulcorate +(verb)|hydrolize|hydrolise +saccharin|1 +(noun)|sweetening|sweetener +saccharine|1 +(adj)|cloying|syrupy|treacly|sweet +saccharinity|1 +(noun)|sweetness|sweet +saccharomyces|1 +(noun)|Saccharomyces|genus Saccharomyces|fungus genus +saccharomyces cerevisiae|1 +(noun)|baker's yeast|brewer's yeast|Saccharomyces cerevisiae|yeast +saccharomyces ellipsoides|1 +(noun)|wine-maker's yeast|Saccharomyces ellipsoides|yeast +saccharomycetaceae|1 +(noun)|Saccharomycetaceae|family Saccharomycetaceae|fungus family +saccharose|1 +(noun)|sucrose|disaccharide|plant product +saccharum|1 +(noun)|Saccharum|genus Saccharum|monocot genus|liliopsid genus +saccharum bengalense|1 +(noun)|munj|munja|Saccharum bengalense|Saccharum munja|grass +saccharum munja|1 +(noun)|munj|munja|Saccharum bengalense|Saccharum munja|grass +saccharum officinarum|1 +(noun)|sugarcane|sugar cane|Saccharum officinarum|gramineous plant|graminaceous plant +sacco|1 +(noun)|Sacco|Nicola Sacco|anarchist|nihilist|syndicalist +sacculate|1 +(adj)|sacculated|sac +sacculated|1 +(adj)|sacculate|sac +saccule|1 +(noun)|sacculus|sac +sacculus|1 +(noun)|saccule|sac +sacerdotal|2 +(adj)|belief +(adj)|priestly|hieratic|hieratical|profession|community +sacerdotalism|1 +(noun)|belief +saceur|1 +(noun)|Supreme Allied Commander Europe|SACEUR|commanding officer|commandant|commander +sachem|2 +(noun)|politician|politico|pol|political leader +(noun)|sagamore|Indian chief|Indian chieftain +sachet|1 +(noun)|bag +sachs disease|1 +(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis|autosomal recessive disease|autosomal recessive defect|monogenic disorder|monogenic disease +sachsen|1 +(noun)|Saxony|Sachsen|Saxe|geographical area|geographic area|geographical region|geographic region +sack|13 +(noun)|poke|paper bag|carrier bag|bag +(noun)|pouch|sac|pocket|cavity|enclosed space +(noun)|sackful|containerful +(noun)|white wine +(noun)|sacque|jacket +(noun)|hammock|bed +(noun)|chemise|shift|dress|frock +(noun)|plundering|pillage|pillaging +(noun)|dismissal|dismission|discharge|firing|liberation|release|sacking|termination|ending|conclusion +(verb)|plunder|take +(verb)|fire|give notice|can|dismiss|give the axe|send away|force out|give the sack|terminate|remove +(verb)|net|sack up|clear|profit|gain|benefit +(verb)|encase|incase|case|sack up +sack coat|1 +(noun)|coat +sack out|1 +(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|go to sleep|retire +sack race|1 +(noun)|race +sack up|1 +(verb)|net|sack|clear|profit|gain|benefit +sackbut|1 +(noun)|trombone +sackcloth|2 +(noun)|garment +(noun)|fabric|cloth|material|textile +sackcloth and ashes|1 +(noun)|display +sacked|1 +(adj)|despoiled|pillaged|raped|ravaged|destroyed +sackful|1 +(noun)|sack|containerful +sacking|2 +(noun)|bagging|fabric|cloth|material|textile +(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|termination|ending|conclusion +saclant|1 +(noun)|Supreme Allied Commander Atlantic|SACLANT|commanding officer|commandant|commander +saclike|1 +(adj)|bursiform|pouch-shaped|pouchlike|concave +sacque|1 +(noun)|sack|jacket +sacral|2 +(adj)|bone|os +(adj)|sacred +sacral nerve|1 +(noun)|spinal nerve|nervus spinalis +sacral plexus|1 +(noun)|plexus sacralis|nerve plexus +sacral vein|1 +(noun)|vena sacralis|vein|vena|venous blood vessel +sacral vertebra|1 +(noun)|vertebra +sacrament|1 +(noun)|religious ceremony|religious ritual +sacrament of the eucharist|1 +(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament +sacramental|1 +(adj)|religious ceremony|religious ritual +sacramental manduction|1 +(noun)|Communion|Holy Communion|manduction|ritual +sacramental oil|1 +(noun)|chrism|chrisom|holy oil|ointment|unction|unguent|balm|salve +sacramental wine|1 +(noun)|altar wine|wine|vino +sacramento|1 +(noun)|Sacramento|capital of California|state capital +sacramento mountains|1 +(noun)|Sacramento Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +sacramento river|1 +(noun)|Sacramento River|river +sacramento sturgeon|1 +(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon +sacred|5 +(adj)|sacred |ineffable|unnameable|unspeakable|unutterable|inspirational|inviolable|inviolate|sacrosanct|numinous|religious|spiritual|revered|reverenced|reverend|sublime|venerated|sacral|taboo|tabu|divine|quasi-religious|consecrated|consecrate|dedicated|heavenly|pious +(adj)|worthy +(adj)|consecrated|sanctified|holy +(adj)|hallowed|holy +(adj)|dedicated +sacred college|1 +(noun)|Sacred College|College of Cardinals|body +sacred cow|1 +(noun)|important person|influential person|personage +sacred fig|1 +(noun)|pipal|pipal tree|pipul|peepul|bo tree|Ficus religiosa|fig tree +sacred ibis|1 +(noun)|Threskiornis aethiopica|ibis +sacred lotus|1 +(noun)|lotus|Indian lotus|Nelumbo nucifera|water lily +sacred mushroom|1 +(noun)|mescal button|magic mushroom|plant organ +sacred scripture|1 +(noun)|scripture|sacred text|sacred writing|religious writing|religious text +sacred text|1 +(noun)|sacred writing|religious writing|religious text|writing|written material|piece of writing +sacred trinity|1 +(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah +sacred writing|1 +(noun)|sacred text|religious writing|religious text|writing|written material|piece of writing +sacredly|1 +(adv)|religiously +sacredness|1 +(noun)|holiness|sanctity +sacrifice|9 +(noun)|forfeit|forfeiture|act|human action|human activity +(noun)|personnel casualty|loss +(noun)|loss +(noun)|ritual killing|killing|kill|putting to death +(noun)|putout +(verb)|give|release|relinquish|resign|free|give up +(verb)|kill +(verb)|sell +(verb)|offer|offer up +sacrifice fly|1 +(noun)|sacrifice +sacrifice operation|1 +(noun)|suicide mission|martyr operation|mission|charge|commission +sacrificeable|1 +(adj)|expendable +sacrificer|1 +(noun)|religionist|religious person +sacrificial|1 +(adj)|killing|kill|putting to death +sacrilege|1 +(noun)|profanation|desecration|blasphemy|irreverence|violation +sacrilegious|1 +(adj)|blasphemous|profane|irreverent +sacrilegiousness|1 +(noun)|profaneness|unsanctification +sacristan|1 +(noun)|sexton|church officer|caretaker +sacristy|1 +(noun)|vestry|room +sacrosanct|1 +(adj)|inviolable|inviolate|sacred +sacrum|1 +(noun)|bone|os +sad|3 +(adj)|sad |bittersweet|depressing|depressive|gloomy|saddening|doleful|mournful|heavyhearted|melancholy|melancholic|pensive|wistful|tragic|tragical|tragicomic|tragicomical|wistful|yearning +(adj)|sorrowful +(adj)|deplorable|distressing|lamentable|pitiful|sorry|bad +sad sack|1 +(noun)|bungler|blunderer|fumbler|bumbler|stumbler|botcher|butcher|fuckup|incompetent|incompetent person +sadat|1 +(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman|solon|national leader +saddam|1 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +saddam's martyrs|1 +(noun)|Fedayeen Saddam|Saddam's Martyrs|paramilitary|paramilitary force|paramilitary unit|paramilitary organization|paramilitary organisation +saddam bin hussein at-takriti|1 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +saddam hussein|1 +(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader +sadden|2 +(verb)|affect|impress|move|strike +(verb)|feel|experience +saddening|1 +(adj)|depressing|depressive|gloomy|sad +saddhu|1 +(noun)|sadhu|Hindu|Hindoo +saddle|9 +(noun)|seat +(noun)|saddleback|pass|mountain pass|notch +(noun)|cut|cut of meat +(noun)|piece of leather +(noun)|bicycle seat|seat +(noun)|body part +(verb)|attach +(verb)|burden|burthen|weight|weight down +(verb)|charge|burden|command|require|compel +saddle-sore|1 +(adj)|painful +saddle blanket|1 +(noun)|saddlecloth|horse blanket|stable gear|saddlery|tack +saddle block anaesthesia|1 +(noun)|saddle block anesthesia|spinal anesthesia|spinal anaesthesia|spinal +saddle block anesthesia|1 +(noun)|saddle block anaesthesia|spinal anesthesia|spinal anaesthesia|spinal +saddle feather|1 +(noun)|saddle hackle|hackle +saddle hackle|1 +(noun)|saddle feather|hackle +saddle horn|1 +(noun)|horn|pommel|saddlebow +saddle horse|1 +(noun)|riding horse|mount|horse|Equus caballus +saddle of lamb|1 +(noun)|cut of lamb +saddle oxford|1 +(noun)|saddle shoe|oxford +saddle oyster|1 +(noun)|Anomia ephippium|oyster +saddle roof|1 +(noun)|gable roof|saddleback|saddleback roof|roof +saddle shoe|1 +(noun)|saddle oxford|oxford +saddle soap|1 +(noun)|leather soap|soap +saddle sore|2 +(noun)|gall|animal disease +(noun)|gall +saddle stitch|1 +(noun)|stitch +saddleback|2 +(noun)|saddle|pass|mountain pass|notch +(noun)|gable roof|saddle roof|saddleback roof|roof +saddleback roof|1 +(noun)|gable roof|saddle roof|saddleback|roof +saddlebag|1 +(noun)|bag +saddlebill|1 +(noun)|jabiru|Ephippiorhynchus senegalensis|stork +saddlebow|1 +(noun)|pommel|handle|grip|handgrip|hold +saddlecloth|1 +(noun)|saddle blanket|horse blanket|stable gear|saddlery|tack +saddled|2 +(adj)|saddled +(adj)|burdened +saddled-shaped false morel|1 +(noun)|Gyromitra infula|gyromitra +saddler|1 +(noun)|maker|shaper +saddlery|2 +(noun)|stable gear|tack|gear|paraphernalia|appurtenances +(noun)|workshop|shop +sadducean|1 +(adj)|Sadducean|Jew|Hebrew|Israelite +sadducee|1 +(noun)|Sadducee|Jew|Hebrew|Israelite +sade|1 +(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer|author +sadhe|1 +(noun)|letter|letter of the alphabet|alphabetic character +sadhu|1 +(noun)|saddhu|Hindu|Hindoo +sadi carnot|1 +(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist +sadism|1 +(noun)|sexual pleasure +sadist|1 +(noun)|pervert|deviant|deviate|degenerate +sadistic|1 +(adj)|sadistic +sadleria|1 +(noun)|Sadleria|genus Sadleria|fern genus +sadly|2 +(adv)|unhappily +(adv)|deplorably|lamentably|woefully +sadness|2 +(noun)|unhappiness|feeling +(noun)|sorrow|sorrowfulness|unhappiness +sadomasochism|1 +(noun)|sadism|masochism +sadomasochist|1 +(noun)|pervert|deviant|deviate|degenerate +sadomasochistic|1 +(adj)|sadism|masochism +saek|1 +(noun)|Saek|Tai +safaqis|1 +(noun)|Sfax|Safaqis|city|metropolis|urban center +safar|1 +(noun)|Safar|Saphar|Islamic calendar month +safari|1 +(noun)|campaign|hunting expedition|expedition +safari park|1 +(noun)|park|parkland +safe|8 +(adj)|safe |fail-safe|harmless|innocuous|off the hook|risk-free|riskless|unhazardous|safe and sound|unhurt|harmless|invulnerable|secure|uninjured +(adj)|unadventurous +(adj)|safe +(adj)|dependable|good|secure|sound +(adj)|secure +(noun)|strongbox|deedbox +(noun)|cupboard|closet +(noun)|condom|rubber|safety|prophylactic|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +safe-conduct|1 +(noun)|safeguard|pass|passport +safe-deposit|2 +(adj)|safety-deposit|secure +(noun)|safe-deposit box|safety-deposit|safety deposit box|deposit box|lockbox|strongbox|deedbox +safe-deposit box|1 +(noun)|safe-deposit|safety-deposit|safety deposit box|deposit box|lockbox|strongbox|deedbox +safe and sound|1 +(adj)|unhurt|safe +safe harbor|1 +(noun)|shark repellent|porcupine provision +safe house|1 +(noun)|house|refuge|sanctuary|asylum +safe period|1 +(noun)|phase|stage +safe sex|1 +(noun)|sexual activity|sexual practice|sex|sex activity +safebreaker|1 +(noun)|safecracker|cracksman|thief|stealer +safecracker|1 +(noun)|safebreaker|cracksman|thief|stealer +safeguard|4 +(noun)|precaution|guard|measure|step +(noun)|safe-conduct|pass|passport +(verb)|protect +(verb)|escort +safehold|1 +(noun)|refuge|sanctuary|asylum +safekeeping|1 +(noun)|guardianship|keeping|duty|responsibility|obligation +safeness|1 +(noun)|characteristic +safety|6 +(noun)|condition|status +(noun)|refuge|area|country +(noun)|guard|safety device|device +(noun)|base hit|bingle|hit +(noun)|condom|rubber|safe|prophylactic|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +(noun)|score +safety-deposit|2 +(adj)|safe-deposit|secure +(noun)|safe-deposit|safe-deposit box|safety deposit box|deposit box|lockbox|strongbox|deedbox +safety-related|1 +(adj)|protective +safety arch|1 +(noun)|arch|strengthener|reinforcement +safety belt|1 +(noun)|life belt|safety harness|belt|restraint|constraint +safety bicycle|1 +(noun)|safety bike|bicycle|bike|wheel|cycle +safety bike|1 +(noun)|safety bicycle|bicycle|bike|wheel|cycle +safety blitz|1 +(noun)|linebacker blitzing|blitz|maneuver|manoeuvre|play +safety bolt|1 +(noun)|safety lock|bolt|deadbolt +safety catch|1 +(noun)|safety lock|guard|safety|safety device +safety curtain|1 +(noun)|theater curtain|theatre curtain +safety deposit box|1 +(noun)|safe-deposit|safe-deposit box|safety-deposit|deposit box|lockbox|strongbox|deedbox +safety device|1 +(noun)|guard|safety|device +safety factor|1 +(noun)|factor of safety|ratio +safety feature|1 +(noun)|feature|characteristic +safety fuse|1 +(noun)|fuse|fuze|fusee|fuzee|primer|priming +safety glass|1 +(noun)|laminated glass|shatterproof glass|glass +safety harness|1 +(noun)|safety belt|life belt|belt|restraint|constraint +safety hat|1 +(noun)|hard hat|tin hat|helmet +safety island|1 +(noun)|traffic island|safety isle|safety zone|island +safety isle|1 +(noun)|traffic island|safety island|safety zone|island +safety lamp|1 +(noun)|Davy lamp|oil lamp|kerosene lamp|kerosine lamp +safety lock|2 +(noun)|safety catch|guard|safety|safety device +(noun)|safety bolt|bolt|deadbolt +safety margin|1 +(noun)|margin of safety|margin of error|index +safety match|1 +(noun)|book matches|match|lucifer|friction match +safety net|2 +(noun)|guarantee +(noun)|net|network|mesh|meshing|meshwork +safety nut|1 +(noun)|locknut|nut +safety pin|1 +(noun)|pin +safety rail|1 +(noun)|guardrail|railing|rail +safety razor|1 +(noun)|razor +safety squeeze|1 +(noun)|safety squeeze play|squeeze play +safety squeeze play|1 +(noun)|safety squeeze|squeeze play +safety valve|1 +(noun)|relief valve|escape valve|escape cock|escape|valve|regulator +safety zone|1 +(noun)|traffic island|safety island|safety isle|island +safflower|1 +(noun)|false saffron|Carthamus tinctorius|herb|herbaceous plant +safflower oil|2 +(noun)|oil +(noun)|vegetable oil|oil +safflower seed|1 +(noun)|seed +saffranine|1 +(noun)|safranine|safranin|dye|dyestuff +saffron|3 +(noun)|saffron crocus|Crocus sativus|crocus +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|orange yellow|yellow|yellowness +saffron crocus|1 +(noun)|saffron|Crocus sativus|crocus +safranin|1 +(noun)|safranine|saffranine|dye|dyestuff +safranine|1 +(noun)|safranin|saffranine|dye|dyestuff +sag|3 +(noun)|droop|depression|impression|imprint +(verb)|droop|swag|flag|sink|drop|drop down +(verb)|sag down|sink|drop|drop down +sag down|1 +(verb)|sag|sink|drop|drop down +saga|1 +(noun)|adventure story|heroic tale +sagacious|2 +(adj)|perspicacious|sapient|wise +(adj)|politic +sagaciously|1 +(adv)|astutely|shrewdly|sapiently +sagaciousness|2 +(noun)|sagacity|judgment|judgement|discernment|wisdom|sapience +(noun)|judiciousness|sagacity|wisdom|wiseness +sagacity|2 +(noun)|sagaciousness|judgment|judgement|discernment|wisdom|sapience +(noun)|judiciousness|sagaciousness|wisdom|wiseness +sagamore|1 +(noun)|sachem|Indian chief|Indian chieftain +sage|5 +(adj)|wise +(adj)|sage-green|chromatic +(noun)|mentor|wise man +(noun)|herb +(noun)|salvia|herb|herbaceous plant +sage-green|1 +(adj)|sage|chromatic +sage brush|2 +(noun)|sagebrush|subshrub|suffrutex +(noun)| +sage green|1 +(noun)|green|greenness|viridity +sage grouse|1 +(noun)|sage hen|Centrocercus urophasianus|grouse +sage hen|1 +(noun)|sage grouse|Centrocercus urophasianus|grouse +sage willow|2 +(noun)|dwarf gray willow|Salix tristis|willow|willow tree +(noun)|hoary willow|Salix candida|willow|willow tree +sagebrush|1 +(noun)|sage brush|subshrub|suffrutex +sagebrush buttercup|1 +(noun)|Ranunculus glaberrimus|wildflower|wild flower +sagebrush lizard|1 +(noun)|Sceloporus graciosus|spiny lizard +sagebrush mariposa tulip|1 +(noun)|Calochortus macrocarpus|mariposa|mariposa tulip|mariposa lily +sagebrush state|1 +(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state +sagely|1 +(adv)|wisely|with wisdom|showing wisdom +sagging|1 +(adj)|drooping|droopy|lax +sagina|1 +(noun)|Sagina|genus Sagina|caryophylloid dicot genus +saginaw|1 +(noun)|Saginaw|town|port of entry|point of entry +sagitta|2 +(noun)|Sagitta|constellation +(noun)|arrowworm|chaetognath +sagittal|1 +(adj)|mesial +sagittal suture|1 +(noun)|interparietal suture|sutura sagittalis|suture|sutura|fibrous joint +sagittaria|1 +(noun)|Sagittaria|genus Sagittaria|monocot genus|liliopsid genus +sagittariidae|1 +(noun)|Sagittariidae|family Sagittariidae|bird family +sagittarius|4 +(noun)|Sagittarius|Archer|person|individual|someone|somebody|mortal|human|soul +(noun)|Sagittarius|constellation +(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|Sagittarius|genus Sagittarius|bird genus +sagittarius serpentarius|1 +(noun)|secretary bird|Sagittarius serpentarius|bird of prey|raptor|raptorial bird +sagittarius the archer|1 +(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac|star sign|sign|mansion|house|planetary house +sagittate|1 +(adj)|sagittiform|arrow-shaped|simple |unsubdivided|pointed +sagittate-leaf|1 +(noun)|sagittiform leaf|simple leaf +sagittiform|1 +(adj)|sagittate|arrow-shaped|simple |unsubdivided|pointed +sagittiform leaf|1 +(noun)|sagittate-leaf|simple leaf +sago|1 +(noun)|starch|amylum +sago fern|1 +(noun)|silver tree fern|black tree fern|Cyathea medullaris|tree fern +sago palm|2 +(noun)|palm|palm tree +(noun)|Cycas revoluta|cycad +saguaro|1 +(noun)|sahuaro|Carnegiea gigantea|cactus +sahaptin|2 +(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian +(noun)|Shahaptian|Sahaptin|Penutian +sahaptino|1 +(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian +sahara|1 +(noun)|Sahara|Sahara Desert|desert +sahara desert|1 +(noun)|Sahara|Sahara Desert|desert +saharan|2 +(adj)|Saharan|desert +(noun)|Saharan|Nilo-Saharan|Nilo-Saharan language +sahib|1 +(noun)|European +sahuaro|1 +(noun)|saguaro|Carnegiea gigantea|cactus +said|1 +(adj)|aforesaid|aforementioned|same +saida|1 +(noun)|Saida|Sidon|city|metropolis|urban center +saiga|1 +(noun)|Saiga tatarica|antelope +saiga tatarica|1 +(noun)|saiga|Saiga tatarica|antelope +saigon|1 +(noun)|Ho Chi Minh City|Saigon|city|metropolis|urban center +saigon cinnamon|1 +(noun)|Saigon cinnamon|Cinnamomum loureirii|laurel +sail|6 +(noun)|canvas|canvass|sheet|piece of cloth|piece of material +(noun)|cruise|ocean trip|voyage +(verb)|travel|journey +(verb)|sweep|move|sail through +(verb)|boat +(verb)|voyage|navigate|travel|journey +sail through|1 +(verb)|breeze through|ace|pass with flying colors|sweep through|nail|pass|make it +sailboat|1 +(noun)|sailing boat|sailing vessel|sailing ship +sailcloth|1 +(noun)|fabric|cloth|material|textile +sailfish|2 +(noun)|saltwater fish +(noun)|scombroid|scombroid fish +sailing|5 +(adj)|at sea|afloat +(noun)|seafaring|navigation|employment|work +(noun)|water travel|seafaring +(noun)|departure|going|going away|leaving +(noun)|glide|gliding|sailplaning|soaring|flight|flying +sailing-race|1 +(noun)|yacht race|boat race +sailing boat|1 +(noun)|sailboat|sailing vessel|sailing ship +sailing master|1 +(noun)|navigator|officer|ship's officer +sailing ship|1 +(noun)|sailing vessel|vessel|watercraft +sailing vessel|1 +(noun)|sailing ship|vessel|watercraft +sailmaker|1 +(noun)|maker|shaper +sailor|3 +(noun)|crewman|skilled worker|trained worker +(noun)|bluejacket|navy man|sailor boy|serviceman|military man|man|military personnel +(noun)|boater|leghorn|Panama|Panama hat|skimmer|straw hat|hat|chapeau|lid +sailor's-choice|2 +(noun)|pinfish|squirrelfish|Lagodon rhomboides|sparid|sparid fish +(noun)|sailors choice|Haemulon parra|grunt +sailor's breastplate|1 +(noun)|prolonge knot|knot +sailor boy|1 +(noun)|bluejacket|navy man|sailor|serviceman|military man|man|military personnel +sailor cap|1 +(noun)|cap +sailor suit|1 +(noun)|ensemble +sailors choice|1 +(noun)|sailor's-choice|Haemulon parra|grunt +sailplane|2 +(noun)|glider|heavier-than-air craft +(verb)|soar|glide +sailplaning|1 +(noun)|glide|gliding|soaring|sailing|flight|flying +saimiri|1 +(noun)|Saimiri|genus Saimiri|mammal genus +saimiri sciureus|1 +(noun)|squirrel monkey|Saimiri sciureus|New World monkey|platyrrhine +sainfoin|1 +(noun)|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +saint|5 +(noun)|deity|divinity|god|immortal +(noun)|holy man|holy person|angel|good person +(noun)|ideal|paragon|nonpareil|apotheosis|nonesuch|nonsuch|model|role model +(verb)|enshrine|reverence|fear|revere|venerate +(verb)|canonize|canonise|declare|adjudge|hold +saint's day|1 +(noun)|day +saint-bernard's-lily|1 +(noun)|Saint-Bernard's-lily|Anthericum liliago|liliaceous plant +saint-john's-bread|1 +(noun)|carob|carob powder|Saint-John's-bread|foodstuff|food product +saint-mihiel|1 +(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle +saint-saens|1 +(noun)|Saint-Saens|Charles Camille Saint-Saens|pianist|piano player|composer +saint agnes's eve|1 +(noun)|Saint Agnes's Eve|January 20|Christian holy day +saint ambrose|1 +(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop|theologian|theologist|theologizer|theologiser|composer|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +saint andrew|1 +(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle|saint +saint andrew the apostle|1 +(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle|saint +saint anselm|1 +(noun)|Anselm|Saint Anselm|St. Anselm|archbishop|saint +saint anthony's fire|1 +(noun)|Saint Anthony's fire|skin disease|disease of the skin|skin disorder|skin problem|skin condition +saint athanasius|1 +(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian|theologist|theologizer|theologiser|saint|Church Father|Father of the Church|Father|Doctor of the Church|Doctor +saint augustine|2 +(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +(noun)|St. Augustine|Saint Augustine|city|metropolis|urban center +saint baeda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +saint beda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +saint bede|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +saint benedict|1 +(noun)|Benedict|Saint Benedict|St. Benedict|monk|monastic|saint +saint bernard|1 +(noun)|Saint Bernard|St Bernard|working dog +saint boniface|1 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +saint bride|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +saint bridget|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +saint brigid|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +saint bruno|1 +(noun)|Bruno|Saint Bruno|St. Bruno|cleric|churchman|divine|ecclesiastic|saint +saint christopher|2 +(noun)|Christopher|Saint Christopher|St. Christopher|patron saint +(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island +saint christopher-nevis|1 +(noun)|Saint Kitts and Nevis|Federation of Saint Kitts and Nevis|Saint Christopher-Nevis|St. Christopher-Nevis|St. Kitts and Nevis|country|state|land +saint cloud|1 +(noun)|Saint Cloud|St. Cloud|town +saint crispin|1 +(noun)|Crispin|Saint Crispin|St. Crispin|patron saint +saint david|1 +(noun)|David|Saint David|St. David|patron saint +saint denis|1 +(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer|professional dancer|choreographer +saint dominic|1 +(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest|saint +saint edward the confessor|1 +(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England|King of Great Britain|saint +saint edward the martyr|1 +(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England|King of Great Britain|saint +saint elizabeth ann bayley seton|1 +(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader +saint elmo's fire|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +saint elmo's light|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +saint emilion|1 +(noun)|Saint Emilion|claret|red Bordeaux +saint eustatius|1 +(noun)|Saint Eustatius|St. Eustatius|island +saint francis|2 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river +saint francis of assisi|1 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +saint francis river|1 +(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river +saint francis xavier|1 +(noun)|Xavier|Saint Francis Xavier|missionary +saint george|1 +(noun)|George|Saint George|St. George|martyr|patron saint +saint gregory i|1 +(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor +saint ignatius|1 +(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop|saint +saint ignatius' itch|1 +(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis|hypovitaminosis +saint ignatius of loyola|1 +(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian|theologist|theologizer|theologiser|saint +saint james|1 +(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle|saint +saint james the apostle|1 +(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle|saint +saint jerome|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +saint joan|1 +(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader|martyr +saint john|3 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|Saint John|Saint John River|St. John|St. John River|river +(noun)|Saint John|St. John|city|metropolis|urban center|port +saint john's|2 +(noun)|Saint John's|St. John's|provincial capital|port +(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital +saint john river|1 +(noun)|Saint John|Saint John River|St. John|St. John River|river +saint john the apostle|1 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +saint johns|4 +(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|Saint John|Saint John River|St. John|St. John River|river +(noun)|Saint John|St. John|city|metropolis|urban center|port +saint johns river|2 +(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river +(noun)|Saint John|Saint John River|St. John|St. John River|river +saint joseph|2 +(noun)|Saint Joseph|St Joseph|March 19|Christian holy day +(noun)|Saint Joseph|St. Joseph|town +saint jude|1 +(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle|saint +saint kitts|1 +(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island +saint kitts and nevis|1 +(noun)|Saint Kitts and Nevis|Federation of Saint Kitts and Nevis|Saint Christopher-Nevis|St. Christopher-Nevis|St. Kitts and Nevis|country|state|land +saint lawrence|2 +(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr|saint +(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river +saint lawrence river|1 +(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river +saint lawrence seaway|1 +(noun)|Saint Lawrence Seaway|St. Lawrence Seaway|seaway|sea lane|ship route|trade route +saint louis|2 +(noun)|Louis IX|Saint Louis|St. Louis|King of France|saint +(noun)|Saint Louis|St. Louis|Gateway to the West|city|metropolis|urban center|port +saint lucia|2 +(noun)|Saint Lucia|St. Lucia|country|state|land +(noun)|Saint Lucia|St. Lucia|island +saint luke|1 +(noun)|Luke|Saint Luke|St. Luke|Apostle|Evangelist|saint +saint maarten|1 +(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island +saint mark|1 +(noun)|Mark|Saint Mark|St. Mark|Apostle|Evangelist|saint +saint martin|1 +(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island +saint martin's summer|1 +(noun)|Indian summer|Saint Martin's summer|time period|period of time|period +saint matthew|1 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +saint matthew the apostle|1 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +saint nicholas|1 +(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop|saint +saint nick|1 +(noun)|Santa Claus|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint +saint olaf|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +saint olav|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +saint patrick|1 +(noun)|Patrick|Saint Patrick|St. Patrick|Apostle|patron saint +saint patrick's day|1 +(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day +saint paul|2 +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital +saint peter|1 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +saint peter's wreath|1 +(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea|spiraea +saint peter the apostle|1 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +saint petersburg|2 +(noun)|St. Petersburg|Saint Petersburg|city|metropolis|urban center +(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city|metropolis|urban center +saint thomas|2 +(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle|saint +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +saint thomas a becket|1 +(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop|martyr|saint +saint thomas aquinas|1 +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +saint ulmo's fire|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +saint ulmo's light|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +saint valentine's day|1 +(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day +saint vincent|1 +(noun)|Saint Vincent|St. Vincent|island +saint vincent and the grenadines|1 +(noun)|Saint Vincent and the Grenadines|St. Vincent and the Grenadines|country|state|land +saint vitus dance|1 +(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea +sainted|1 +(adj)|angelic|angelical|beatific|saintlike|saintly|good +sainthood|2 +(noun)|group|grouping +(noun)|position|post|berth|office|spot|billet|place|situation +saintlike|1 +(adj)|angelic|angelical|beatific|saintly|sainted|good +saintliness|1 +(noun)|good|goodness +saintly|1 +(adj)|angelic|angelical|beatific|saintlike|sainted|good +saintpaulia|1 +(noun)|Saintpaulia|genus Saintpaulia|asterid dicot genus +saintpaulia ionantha|1 +(noun)|African violet|Saintpaulia ionantha|flower +saints peter and paul|1 +(noun)|Saints Peter and Paul|June 29|Christian holy day +saipan|2 +(noun)|Saipan|island +(noun)|Saipan|amphibious assault +sajama|1 +(noun)|Sajama|mountain peak +sakartvelo|1 +(noun)|Georgia|Sakartvelo|Asian country|Asian nation +sake|3 +(noun)|interest|benefit|welfare +(noun)|saki|rice beer|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)|purpose|intent|intention|aim|design +sakharov|1 +(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist +saki|3 +(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer|author +(noun)|sake|rice beer|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)|New World monkey|platyrrhine +sakkara|1 +(noun)|Saqqara|Saqqarah|Sakkara|town +sakti|1 +(noun)|Shakti|Sakti|Hindu deity +saktism|2 +(noun)|Shaktism|Saktism|sect|religious sect|religious order +(noun)|Shaktism|Saktism|Hinduism|Hindooism +sal ammoniac|1 +(noun)|ammonium chloride|salt +sal soda|1 +(noun)|sodium carbonate|washing soda|soda ash|soda|salt +sal volatile|1 +(noun)|spirits of ammonia|solution +salaah|1 +(noun)|salat|salaat|salah|pillar of Islam|worship +salaam|2 +(noun)|bow|bowing|obeisance +(verb)|salute +salaat|1 +(noun)|salat|salah|salaah|pillar of Islam|worship +salable|1 +(adj)|salable |saleable|in demand|marketable|marketable|merchantable|sellable|vendable|vendible +salacious|2 +(adj)|lubricious|lustful|prurient|sexy +(adj)|lewd|obscene|raunchy|dirty +salaciously|1 +(adv)|lasciviously +salaciousness|1 +(noun)|obscenity|lewdness|bawdiness|salacity|indecency +salacity|1 +(noun)|obscenity|lewdness|bawdiness|salaciousness|indecency +salad|1 +(noun)|dish +salad bar|1 +(noun)|bar +salad bowl|2 +(noun)|salad plate|plate +(noun)|bowl +salad burnet|2 +(noun)|burnet bloodwort|pimpernel|Poterium sanguisorba|herb|herbaceous plant +(noun)|salad green|salad greens +salad cream|1 +(noun)|dressing|salad dressing +salad days|1 +(noun)|bloom|bloom of youth|time of life +salad dressing|1 +(noun)|dressing|sauce +salad fork|1 +(noun)|fork +salad green|1 +(noun)|salad greens|greens|green|leafy vegetable +salad greens|2 +(noun)|salad green|greens|green|leafy vegetable +(noun)|salad green|greens|green|leafy vegetable +salad nicoise|1 +(noun)|salad +salad oil|1 +(noun)|vegetable oil|oil +salad plate|1 +(noun)|salad bowl|plate +saladin|1 +(noun)|Saladin|Salah-ad-Din Yusuf ibn-Ayyub|sultan|grand Turk +salafast group for call and combat|1 +(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization|terrorist group|foreign terrorist organization|FTO +salafi movement|1 +(noun)|Salafism|Salafi movement|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism +salafism|1 +(noun)|Salafism|Salafi movement|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism +salafist group|1 +(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization|terrorist group|foreign terrorist organization|FTO +salah|1 +(noun)|salat|salaat|salaah|pillar of Islam|worship +salah-ad-din yusuf ibn-ayyub|1 +(noun)|Saladin|Salah-ad-Din Yusuf ibn-Ayyub|sultan|grand Turk +salah al-din battalions|1 +(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization|terrorist group|foreign terrorist organization|FTO +salai|1 +(noun)|Boswellia serrata|incense tree +salal|1 +(noun)|shallon|Gaultheria shallon|shrub|bush +salamander|3 +(noun)|amphibian +(noun)|mythical monster|mythical creature +(noun)|poker|stove poker|fire hook|fire iron +salamandra|1 +(noun)|Salamandra|genus Salamandra|amphibian genus +salamandra atra|1 +(noun)|alpine salamander|Salamandra atra|salamander +salamandra maculosa|1 +(noun)|spotted salamander|fire salamander|Salamandra maculosa|salamander +salamandra salamandra|1 +(noun)|European fire salamander|Salamandra salamandra|salamander +salamandridae|1 +(noun)|Salamandridae|family Salamandridae|amphibian family +salamandriform|1 +(adj)|amphibian +salami|1 +(noun)|sausage +salaried|3 +(adj)|salaried +(adj)|compensated|remunerated|stipendiary|paid +(adj)|compensable|paying|remunerative|stipendiary|paid +salary|1 +(noun)|wage|pay|earnings|remuneration|regular payment +salary cut|1 +(noun)|pay cut|cut +salary increase|1 +(noun)|raise|rise|wage hike|hike|wage increase|increase|increment +salat|1 +(noun)|salaat|salah|salaah|pillar of Islam|worship +sale|5 +(noun)|selling|merchandising|marketing +(noun)|selling|merchandising|marketing +(noun)|merchantability +(noun)|cut-rate sale|sales event|occasion +(noun)|sales agreement|agreement|understanding +sale in gross|1 +(noun)|contract of hazard|contract +saleable|1 +(adj)|salable |in demand|marketable|marketable|merchantable|sellable|vendable|vendible +salem|3 +(noun)|Salem|capital of Oregon|state capital +(noun)|Salem|city|metropolis|urban center +(noun)|Salem|city|metropolis|urban center +saleratus|1 +(noun)|bicarbonate of soda|sodium hydrogen carbonate|sodium bicarbonate|baking soda|bicarbonate|hydrogen carbonate +salerno|1 +(noun)|Salerno|amphibious assault +saleroom|1 +(noun)|showroom|salesroom|panopticon +sales|6 +(noun)|gross sales|gross revenue|income +(noun)|sale|selling|merchandising|marketing +(noun)|sale|selling|merchandising|marketing +(noun)|sale|merchantability +(noun)|sale|cut-rate sale|sales event|occasion +(noun)|sale|sales agreement|agreement|understanding +sales agreement|1 +(noun)|sale|agreement|understanding +sales booth|1 +(noun)|stall|stand|booth +sales campaign|1 +(noun)|advertising campaign|ad campaign|ad blitz +sales demonstrator|1 +(noun)|demonstrator|salesperson +sales department|1 +(noun)|sales division|sales force|business department +sales division|1 +(noun)|sales department|sales force|business department +sales event|1 +(noun)|sale|cut-rate sale|occasion +sales finance company|1 +(noun)|finance company +sales force|1 +(noun)|sales department|sales division|business department +sales incentive|1 +(noun)|bonus|incentive +sales outlet|1 +(noun)|mercantile establishment|retail store|outlet|place of business|business establishment +sales pitch|1 +(noun)|sales talk|pitch|promotion|publicity|promotional material|packaging +sales promotion|1 +(noun)|promotion|publicity|promotional material|packaging +sales resistance|1 +(noun)|resistance +sales staff|1 +(noun)|staff +sales talk|1 +(noun)|sales pitch|pitch|promotion|publicity|promotional material|packaging +sales tax|1 +(noun)|nuisance tax|excise|excise tax +salesclerk|1 +(noun)|shop clerk|clerk|salesperson +salesgirl|1 +(noun)|saleswoman|saleslady|salesperson +saleslady|1 +(noun)|salesgirl|saleswoman|salesperson +salesman|1 +(noun)|salesperson +salesmanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +salesperson|1 +(noun)|employee +salesroom|1 +(noun)|showroom|saleroom|panopticon +saleswoman|1 +(noun)|salesgirl|saleslady|salesperson +salian|1 +(noun)|Salian Frank|Salian|Frank +salian frank|1 +(noun)|Salian Frank|Salian|Frank +salic law|1 +(noun)|Salic law|legal code +salicaceae|1 +(noun)|Salicaceae|family Salicaceae|willow family|hamamelid dicot family +salicales|1 +(noun)|Salicales|order Salicales|plant order +salicornia|1 +(noun)|Salicornia|genus Salicornia|caryophylloid dicot genus +salicornia europaea|1 +(noun)|glasswort|samphire|Salicornia europaea|herb|herbaceous plant +salicylate|1 +(noun)|salt|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +salicylate poisoning|1 +(noun)|poisoning|toxic condition|intoxication +salicylic acid|1 +(noun)|2-hydroxybenzoic acid|hydroxy acid +salience|1 +(noun)|saliency|strikingness|prominence +saliency|1 +(noun)|salience|strikingness|prominence +salient|4 +(adj)|outstanding|prominent|spectacular|striking|conspicuous |obvious +(adj)|salient +(adj)|inclined +(noun)|projection +salient angle|1 +(noun)|angle +salientia|1 +(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order +salientian|2 +(adj)|anuran|batrachian|animal order +(noun)|frog|toad|toad frog|anuran|batrachian|amphibian +saliferous|1 +(adj)|salt +salim|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +salina|1 +(noun)|Salina|town +salinate|1 +(verb)|change +saline|2 +(adj)|salty|salt +(noun)|saline solution|isotonic solution|isosmotic solution +saline solution|1 +(noun)|saline|isotonic solution|isosmotic solution +salinger|1 +(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer|author +salinity|2 +(noun)|salt|saltiness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|brininess|saltiness +salinometer|1 +(noun)|hydrometer|gravimeter +salisbury|1 +(noun)|Harare|Salisbury|capital of Zimbabwe|national capital +salisbury steak|1 +(noun)|Salisbury steak|dish +salish|2 +(noun)|Salish|Salishan|Mosan +(noun)|Salish|Indian|North American Indian|American Indian|Red Indian +salishan|1 +(noun)|Salish|Salishan|Mosan +saliva|1 +(noun)|spit|spittle|secretion +salivary|1 +(adj)|secretion +salivary calculus|1 +(noun)|sialolith|calculus|concretion +salivary duct|1 +(noun)|duct|epithelial duct|canal|channel +salivary gland|1 +(noun)|exocrine gland|duct gland +salivate|2 +(verb)|act involuntarily|act reflexively +(verb)|drool|covet +salivation|1 +(noun)|secretion|secernment +salix|1 +(noun)|Salix|genus Salix|hamamelid dicot genus +salix alba|1 +(noun)|white willow|Huntingdon willow|Salix alba|willow|willow tree +salix alba caerulea|1 +(noun)|cricket-bat willow|Salix alba caerulea|willow|willow tree +salix alba sericea|1 +(noun)|silver willow|silky willow|Salix alba sericea|Salix sericea|willow|willow tree +salix alba vitellina|1 +(noun)|golden willow|Salix alba vitellina|Salix vitellina|osier +salix amygdalina|1 +(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier +salix amygdaloides|1 +(noun)|peachleaf willow|peach-leaved willow|almond-leaves willow|Salix amygdaloides|willow|willow tree +salix arctica|1 +(noun)|arctic willow|Salix arctica|willow|willow tree +salix babylonica|1 +(noun)|weeping willow|Babylonian weeping willow|Salix babylonica|willow|willow tree +salix blanda|1 +(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow|willow tree +salix candida|1 +(noun)|hoary willow|sage willow|Salix candida|willow|willow tree +salix caprea|1 +(noun)|goat willow|florist's willow|pussy willow|Salix caprea|sallow +salix cinerea|1 +(noun)|gray willow|Salix cinerea|willow|willow tree +salix discolor|1 +(noun)|pussy willow|Salix discolor|willow|willow tree +salix fragilis|1 +(noun)|crack willow|brittle willow|snap willow|Salix fragilis|willow|willow tree +salix herbacea|1 +(noun)|dwarf willow|Salix herbacea|willow|willow tree +salix humilis|1 +(noun)|prairie willow|Salix humilis|willow|willow tree +salix lasiolepis|1 +(noun)|arroyo willow|Salix lasiolepis|willow|willow tree +salix lucida|1 +(noun)|shining willow|Salix lucida|willow|willow tree +salix nigra|1 +(noun)|swamp willow|black willow|Salix nigra|willow|willow tree +salix pendulina|1 +(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow|willow tree +salix pendulina blanda|1 +(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow|willow tree +salix pentandra|1 +(noun)|bay willow|laurel willow|Salix pentandra|willow|willow tree +salix purpurea|1 +(noun)|purple willow|red willow|red osier|basket willow|purple osier|Salix purpurea|osier +salix pyrifolia|1 +(noun)|balsam willow|Salix pyrifolia|willow|willow tree +salix repens|1 +(noun)|creeping willow|Salix repens|willow|willow tree +salix sericea|1 +(noun)|silver willow|silky willow|Salix alba sericea|Salix sericea|willow|willow tree +salix sitchensis|1 +(noun)|Sitka willow|silky willow|Salix sitchensis|willow|willow tree +salix triandra|1 +(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier +salix tristis|1 +(noun)|dwarf gray willow|sage willow|Salix tristis|willow|willow tree +salix uva-ursi|1 +(noun)|bearberry willow|Salix uva-ursi|willow|willow tree +salix viminalis|1 +(noun)|common osier|hemp willow|velvet osier|Salix viminalis|osier +salix vitellina|1 +(noun)|golden willow|Salix alba vitellina|Salix vitellina|osier +salk|1 +(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist +salk vaccine|1 +(noun)|Salk vaccine|IPV|poliovirus vaccine +sallade|1 +(noun)|sallet|helmet +sallet|1 +(noun)|sallade|helmet +sallow|3 +(adj)|sickly|unhealthy +(noun)|willow|willow tree +(verb)|discolor +sallowness|1 +(noun)|complexion|skin color|skin colour +sally|3 +(noun)|wisecrack|crack|quip|remark|comment +(noun)|sortie|military action|action +(noun)|sallying forth|venture +sally forth|1 +(verb)|sally out|depart|part|start|start out|set forth|set off|set out|take off +sally lunn|1 +(noun)|Sally Lunn|teacake +sally out|2 +(verb)|sally forth|depart|part|start|start out|set forth|set off|set out|take off +(verb)|leap out|rush out|burst forth|appear +sallying forth|1 +(noun)|sally|venture +salmacis|1 +(noun)|Salmacis|nymph +salmagundi|2 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|salad +salman rushdie|1 +(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer|author +salmi|1 +(noun)|ragout +salmo|1 +(noun)|Salmo|genus Salmo|fish genus +salmo gairdneri|1 +(noun)|rainbow trout|Salmo gairdneri|trout +salmo salar|1 +(noun)|Atlantic salmon|Salmo salar|salmon +salmo trutta|1 +(noun)|brown trout|salmon trout|Salmo trutta|trout +salmon|3 +(noun)|salmonid|food fish +(noun)|Salmon|Salmon River|river +(noun)|fish +salmon berry|3 +(noun)|salmonberry|thimbleberry|Rubus parviflorus|raspberry|raspberry bush +(noun)|cloudberry|dwarf mulberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry|raspberry bush +(noun)|salmonberry|Rubus spectabilis|raspberry|raspberry bush +salmon loaf|1 +(noun)|fish loaf +salmon oil|1 +(noun)|animal oil +salmon pink|1 +(noun)|yellowish pink|apricot|peach|pink +salmon river|1 +(noun)|Salmon|Salmon River|river +salmon trout|3 +(noun)|sea trout|trout +(noun)|lake trout|Salvelinus namaycush|trout +(noun)|brown trout|Salmo trutta|trout +salmonberry|3 +(noun)|cloudberry|dwarf mulberry|bakeapple|baked-apple berry|Rubus chamaemorus|raspberry|raspberry bush +(noun)|salmon berry|thimbleberry|Rubus parviflorus|raspberry|raspberry bush +(noun)|Rubus spectabilis|raspberry|raspberry bush +salmonella|1 +(noun)|enteric bacteria|enterobacteria|enterics +salmonella enteritidis|1 +(noun)|Salmonella enteritidis|Gartner's bacillus|salmonella +salmonella typhi|1 +(noun)|typhoid bacillus|Salmonella typhosa|Salmonella typhi|salmonella +salmonella typhimurium|1 +(noun)|Salmonella typhimurium|salmonella +salmonella typhosa|1 +(noun)|typhoid bacillus|Salmonella typhosa|Salmonella typhi|salmonella +salmonellosis|1 +(noun)|food poisoning|gastrointestinal disorder +salmonid|1 +(noun)|soft-finned fish|malacopterygian +salmonidae|1 +(noun)|Salmonidae|family Salmonidae|fish family +salmwood|1 +(noun)|Spanish elm|Equador laurel|cypre|princewood|Cordia alliodora|angiospermous tree|flowering tree +salol|1 +(noun)|phenyl salicylate|salicylate +salome|1 +(noun)|Salome|dancer|professional dancer +salomon|1 +(noun)|Salomon|Haym Salomon|American Revolutionary leader|financier|moneyman +salon|3 +(noun)|gallery|art gallery|picture gallery +(noun)|beauty salon|beauty parlor|beauty parlour|beauty shop|shop|store +(noun)|living room|living-room|sitting room|front room|parlor|parlour +salonica|1 +(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city|metropolis|urban center|port +salonika|1 +(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city|metropolis|urban center|port +saloon|2 +(noun)|barroom|bar|ginmill|taproom|room +(noun)|public house|pub|pothouse|gin mill|taphouse|tavern|tap house +saloon keeper|1 +(noun)|owner|proprietor +salp|1 +(noun)|salpa|tunicate|urochordate|urochord +salpa|1 +(noun)|salp|tunicate|urochordate|urochord +salpichroa|1 +(noun)|Salpichroa|genus Salpichroa|asterid dicot genus +salpichroa organifolia|1 +(noun)|cock's eggs|Salpichroa organifolia|Salpichroa rhomboidea|vine +salpichroa rhomboidea|1 +(noun)|cock's eggs|Salpichroa organifolia|Salpichroa rhomboidea|vine +salpidae|1 +(noun)|Salpidae|family Salpidae|chordate family +salpiglossis|1 +(noun)|herb|herbaceous plant +salpiglossis sinuata|1 +(noun)|painted tongue|Salpiglossis sinuata|salpiglossis +salpinctes|1 +(noun)|Salpinctes|genus Salpinctes|bird genus +salpinctes obsoletus|1 +(noun)|rock wren|Salpinctes obsoletus|wren|jenny wren +salpingectomy|1 +(noun)|ablation|extirpation|cutting out|excision +salpingitis|1 +(noun)|inflammation|redness|rubor +salpinx|1 +(noun)|tube|tube-shaped structure +salsa|1 +(noun)|condiment +salsify|3 +(noun)|oyster plant|root +(noun)|oyster plant|vegetable oyster|Tragopogon porrifolius|herb|herbaceous plant +(noun)|root vegetable +salsilla|2 +(noun)|Bomarea salsilla|vine +(noun)|Bomarea edulis|vine +salsola|1 +(noun)|Salsola|genus Salsola|caryophylloid dicot genus +salsola kali|1 +(noun)|saltwort|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub|bush +salsola kali tenuifolia|1 +(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub|bush +salsola soda|1 +(noun)|saltwort|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub|bush +salt|11 +(adj)|salt |brackish|briny|saliferous|saline|salty|saltish|tasteful +(adj)|sharp +(adj)|salty|tasteful +(noun)|compound|chemical compound +(noun)|table salt|common salt|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|Strategic Arms Limitation Talks|SALT|diplomacy|diplomatic negotiations +(noun)|saltiness|salinity|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(verb)|season|flavor|flavour +(verb)|sprinkle|splash|splosh +(verb)|spice|spice up +(verb)|preserve|keep +salt-cured|1 +(adj)|salted|preserved +salt-free diet|1 +(noun)|low-sodium diet|low-salt diet|diet +salt-rising bread|1 +(noun)|bread|breadstuff|staff of life +salt away|1 +(verb)|store|hive away|lay in|put in|stack away|stash away|keep|hold on +salt cod|1 +(noun)|cod|codfish +salt depletion|1 +(noun)|depletion +salt flat|1 +(noun)|salt plain|flat +salt i|1 +(noun)|SALT I|treaty|pact|accord +salt ii|1 +(noun)|SALT II|treaty|pact|accord +salt lake city|1 +(noun)|Salt Lake City|capital of Utah|state capital +salt lick|1 +(noun)|lick|sediment|deposit +salt marsh mallow|1 +(noun)|Kosteletzya virginica|seashore mallow +salt merchant|1 +(noun)|salter|merchant|merchandiser +salt mine|2 +(noun)|mine +(noun)|treadmill|occupation|business|job|line of work|line +salt plain|1 +(noun)|salt flat|flat +salt pork|1 +(noun)|pork|porc +salt reed grass|1 +(noun)|Spartina cynosuroides|cordgrass|cord grass +salt rush|1 +(noun)|Juncus leseurii|rush +salt shaker|2 +(noun)|saltshaker|shaker +(noun)| +salt tree|1 +(noun)|Halimodendron halodendron|Halimodendron argenteum|shrub|bush +saltate|2 +(verb)|move|displace +(verb)|jump|leap|bound|spring +saltation|5 +(noun)|natural process|natural action|action|activity +(noun)|mutation|genetic mutation|chromosomal mutation +(noun)|leap|jump|transition +(noun)|dancing|dance|terpsichore|diversion|recreation|performing arts +(noun)|leap|leaping|spring|bound|bounce|jump|jumping +saltbox|1 +(noun)|house +saltbush|1 +(noun)|shrub|bush +saltcellar|1 +(noun)|container +salted|1 +(adj)|salt-cured|preserved +salter|2 +(noun)|preserver +(noun)|salt merchant|merchant|merchandiser +saltine|1 +(noun)|cracker +saltiness|2 +(noun)|salt|salinity|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|property +salting|1 +(noun)|seasoning +saltire|1 +(noun)|St. Andrew's cross|cross +saltish|1 +(adj)|salt +salton sea|1 +(noun)|Salton Sea|lake +saltpan|1 +(noun)|basin +saltpeter|1 +(noun)|potassium nitrate|saltpetre|niter|nitre|nitrate +saltpetre|1 +(noun)|potassium nitrate|saltpeter|niter|nitre|nitrate +saltshaker|1 +(noun)|salt shaker|shaker +saltwater|1 +(noun)|seawater|brine|water|H2O +saltwater fish|1 +(noun)|seafood +saltworks|1 +(noun)|plant|works|industrial plant +saltwort|2 +(noun)|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub|bush +(noun)|Batis maritima|shrub|bush +saltwort family|1 +(noun)|Batidaceae|family Batidaceae|caryophylloid dicot family +salty|3 +(adj)|piquant|stimulating +(adj)|saline|salt +(adj)|salt|tasteful +salubrious|2 +(adj)|healthy|good for you|wholesome +(adj)|wholesome +salubriousness|1 +(noun)|salubrity|healthfulness +salubrity|1 +(noun)|salubriousness|healthfulness +saluki|1 +(noun)|Saluki|gazelle hound|hound|hound dog +salutary|1 +(adj)|beneficial|good|healthful +salutation|3 +(noun)|salute|recognition|credit +(noun)|greeting|acknowledgment|acknowledgement +(noun)|opening +salutatorian|1 +(noun)|salutatory speaker|scholar|scholarly person|student +salutatory speaker|1 +(noun)|salutatorian|scholar|scholarly person|student +salute|9 +(noun)|salutation|recognition|credit +(noun)|military greeting|greeting|salutation +(noun)|greeting|salutation +(verb)|toast|drink|pledge|wassail|honor|honour|reward +(verb)|greet|recognize|recognise +(verb)|praise +(verb)|smell +(verb)|greet|recognize|recognise +(verb)|present|greet|recognize|recognise +saluter|1 +(noun)|greeter|welcomer|person|individual|someone|somebody|mortal|human|soul +salvador|1 +(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country|Central American nation +salvadora|1 +(noun)|Salvadora|genus Salvadora|dicot genus|magnoliopsid genus +salvadora family|1 +(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family|magnoliopsid family +salvadora persica|1 +(noun)|toothbrush tree|mustard tree|Salvadora persica|fruit tree +salvadoraceae|1 +(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family|magnoliopsid family +salvadoran|2 +(adj)|Salvadoran|Salvadorean|Central American country|Central American nation +(noun)|Salvadoran|Salvadorian|Salvadorean|South American +salvadoran capital|1 +(noun)|San Salvador|Salvadoran capital|national capital +salvadorean|2 +(adj)|Salvadoran|Salvadorean|Central American country|Central American nation +(noun)|Salvadoran|Salvadorian|Salvadorean|South American +salvadorian|1 +(noun)|Salvadoran|Salvadorian|Salvadorean|South American +salvage|5 +(noun)|property|belongings|holding|material possession|commodity|trade goods|goods +(noun)|rescue|deliverance|delivery|saving +(noun)|rescue|deliverance|delivery|saving +(verb)|salve|relieve|save|rescue|deliver +(verb)|scavenge|gather|garner|collect|pull together +salvageable|1 +(adj)|saved +salvager|1 +(noun)|salvor|rescuer|recoverer|saver +salvation|4 +(noun)|redemption|rescue|deliverance|delivery|saving +(noun)|means|agency|way +(noun)|safety +(noun)|rescue|deliverance|delivery|saving +salvation army|1 +(noun)|Salvation Army|nongovernmental organization|NGO +salve|4 +(noun)|ointment|unction|unguent|balm|remedy|curative|cure +(noun)|redress|remedy|remediation +(verb)|salvage|relieve|save|rescue|deliver +(verb)|medicate|medicine +salvelinus|1 +(noun)|Salvelinus|genus Salvelinus|fish genus +salvelinus alpinus|1 +(noun)|Arctic char|Salvelinus alpinus|char +salvelinus fontinalis|1 +(noun)|brook trout|speckled trout|Salvelinus fontinalis|trout +salvelinus namaycush|1 +(noun)|lake trout|salmon trout|Salvelinus namaycush|trout +salver|1 +(noun)|tray +salverform|1 +(adj)|petalous |petaled|petalled +salvia|1 +(noun)|sage|herb|herbaceous plant +salvia azurea|1 +(noun)|blue sage|Salvia azurea|sage|salvia +salvia clarea|1 +(noun)|clary sage|Salvia clarea|sage|salvia +salvia divinorum|1 +(noun)|Mexican mint|Salvia divinorum|sage|salvia +salvia farinacea|1 +(noun)|blue sage|mealy sage|Salvia farinacea|sage|salvia +salvia lancifolia|1 +(noun)|blue sage|Salvia reflexa|Salvia lancifolia|sage|salvia +salvia leucophylla|1 +(noun)|purple sage|chaparral sage|Salvia leucophylla|sage|salvia +salvia lyrata|1 +(noun)|cancerweed|cancer weed|Salvia lyrata|sage|salvia +salvia officinalis|1 +(noun)|common sage|ramona|Salvia officinalis|sage|salvia +salvia pratensis|1 +(noun)|meadow clary|Salvia pratensis|sage|salvia +salvia reflexa|1 +(noun)|blue sage|Salvia reflexa|Salvia lancifolia|sage|salvia +salvia sclarea|1 +(noun)|clary|Salvia sclarea|sage|salvia +salvia spathacea|1 +(noun)|pitcher sage|Salvia spathacea|sage|salvia +salvia verbenaca|1 +(noun)|wild sage|wild clary|vervain sage|Salvia verbenaca|sage|salvia +salvidor dali|1 +(noun)|Dali|Salvidor Dali|painter +salvific|1 +(adj)|rescue|deliverance|delivery|saving +salving|1 +(adj)|demulcent|emollient|softening|soft +salvinia|1 +(noun)|Salvinia|genus Salvinia|fern genus +salvinia auriculata|1 +(noun)|floating-moss|Salvinia rotundifolia|Salvinia auriculata|aquatic fern|water fern +salvinia rotundifolia|1 +(noun)|floating-moss|Salvinia rotundifolia|Salvinia auriculata|aquatic fern|water fern +salviniaceae|1 +(noun)|Salviniaceae|family Salviniaceae|fern family +salvinorin|1 +(noun)|hallucinogen|hallucinogenic drug|psychedelic drug|psychodelic drug +salvo|3 +(noun)|outburst|burst|flare-up +(noun)|fusillade|volley|burst|fire|firing +(noun)|cheer +salvor|1 +(noun)|salvager|rescuer|recoverer|saver +salwar|1 +(noun)|shalwar|trousers|pants +salyut|1 +(noun)|Salyut|space station|space platform|space laboratory +salzburg|1 +(noun)|Salzburg|city|metropolis|urban center +sam|1 +(noun)|surface-to-air missile|SAM|guided missile +sam adams|1 +(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader +sam browne belt|1 +(noun)|Sam Browne belt|belt +sam goldwyn|1 +(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker|filmmaker|film producer|movie maker +sam houston|1 +(noun)|Houston|Sam Houston|Samuel Houston|politician|politico|pol|political leader|general|full general +sam shepard|1 +(noun)|Shepard|Sam Shepard|dramatist|playwright +sam snead|1 +(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer|golf player|linksman +sama-veda|1 +(noun)|Sama-Veda|Samhita +saman|1 +(noun)|rain tree|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia|albizia +samanala|1 +(noun)|Adam's Peak|Samanala|mountain peak +samara|1 +(noun)|key fruit|key|achene +samarang|1 +(noun)|Semarang|Samarang|city|metropolis|urban center|port +samarcand|1 +(noun)|Samarkand|Samarcand|city|metropolis|urban center +samaritan|1 +(noun)|good Samaritan|Samaritan|benefactor|helper +samarium|1 +(noun)|Sm|atomic number 62|metallic element|metal +samarkand|1 +(noun)|Samarkand|Samarcand|city|metropolis|urban center +samarskite|1 +(noun)|mineral +samba|5 +(noun)|obeche|obechi|arere|Triplochiton scleroxcylon|tree +(noun)|dance music|danceroom music|ballroom music +(noun)|ballroom dancing|ballroom dance +(noun)|canasta|basket rummy|meld +(verb)|dance|trip the light fantastic|trip the light fantastic toe +sambar|1 +(noun)|sambur|Cervus unicolor|deer|cervid +sambre|1 +(noun)|Sambre|Sambre River|river +sambre river|1 +(noun)|Sambre|Sambre River|river +sambuca|1 +(noun)|liqueur|cordial +sambucus|1 +(noun)|Sambucus|genus Sambucus|asterid dicot genus +sambucus caerulea|1 +(noun)|blue elder|blue elderberry|Sambucus caerulea|elder|elderberry bush +sambucus canadensis|1 +(noun)|American elder|black elderberry|sweet elder|Sambucus canadensis|elder|elderberry bush +sambucus ebulus|1 +(noun)|dwarf elder|danewort|Sambucus ebulus|elder|elderberry bush +sambucus nigra|1 +(noun)|bourtree|black elder|common elder|elderberry|European elder|Sambucus nigra|elder|elderberry bush +sambucus pubens|1 +(noun)|American red elder|red-berried elder|stinking elder|Sambucus pubens|elder|elderberry bush +sambucus racemosa|1 +(noun)|European red elder|red-berried elder|Sambucus racemosa|elder|elderberry bush +sambur|1 +(noun)|sambar|Cervus unicolor|deer|cervid +same|4 +(adj)|same |aforesaid|aforementioned|said|identical|one and the same|selfsame|very|self +(adj)|same |assonant|comparable|corresponding|like|cookie-cutter|duplicate|identical|indistinguishable|one|synoptic|synoptical|homophonic|equal|like|similar|similar|unvaried|unvarying +(adj)|like |equal|equivalent +(adj)|unchanged +same-sex marriage|1 +(noun)|couple|twosome|duo|duet +samekh|1 +(noun)|letter|letter of the alphabet|alphabetic character +sameness|2 +(noun)|quality +(noun)|monotony|unvariedness +samhita|1 +(noun)|Samhita|Vedic literature|Veda +sami|1 +(noun)|Lapp|Sami|Lappic|Lappish +samia|1 +(noun)|Samia|genus Samia|arthropod genus +samia cynthia|2 +(noun)|ailanthus silkworm|Samia cynthia|silkworm|giant silkworm|wild wilkworm +(noun)|cynthia moth|Samia cynthia|Samia walkeri|giant silkworm moth|silkworm moth +samia walkeri|1 +(noun)|cynthia moth|Samia cynthia|Samia walkeri|giant silkworm moth|silkworm moth +samian ware|1 +(noun)|terra sigillata|Samian ware|earthenware +samiel|1 +(noun)|simoom|simoon|wind|air current|current of air +samisen|1 +(noun)|shamisen|stringed instrument +samite|1 +(noun)|fabric|cloth|material|textile +samizdat|1 +(noun)|underground press|print media +samnite|1 +(noun)|Samnite|Italian +samoa|2 +(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country|state|land +(noun)|Samoa|Samoan Islands|island +samoa i sisifo|1 +(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country|state|land +samoan|2 +(adj)|Samoan|country|state|land +(noun)|Samoan|Polynesian +samoan islands|1 +(noun)|Samoa|Samoan Islands|island +samolus|1 +(noun)|Samolus|genus Samolus|dicot genus|magnoliopsid genus +samolus floribundus|1 +(noun)|brookweed|Samolus parviflorus|Samolus floribundus|water pimpernel +samolus parviflorus|1 +(noun)|brookweed|Samolus parviflorus|Samolus floribundus|water pimpernel +samolus valerandii|1 +(noun)|brookweed|Samolus valerandii|water pimpernel +samosa|1 +(noun)|turnover +samovar|1 +(noun)|urn +samoyed|3 +(noun)|Samoyed|Russian +(noun)|Samoyedic|Samoyed|Uralic|Uralic language +(noun)|Samoyed|Samoyede|spitz +samoyede|1 +(noun)|Samoyed|Samoyede|spitz +samoyedic|1 +(noun)|Samoyedic|Samoyed|Uralic|Uralic language +samoyedic-speaking|1 +(adj)|Samoyedic-speaking|communicative |communicatory +sampan|1 +(noun)|skiff +samphire|1 +(noun)|glasswort|Salicornia europaea|herb|herbaceous plant +sample|4 +(noun)|example|illustration|instance|representative +(noun)|sample distribution|sampling|distribution|statistical distribution +(noun)|natural object +(verb)|try|try out|taste|consume|ingest|take in|take|have +sample distribution|1 +(noun)|sample|sampling|distribution|statistical distribution +sampler|4 +(noun)|sampling station|observation station +(noun)|taster|taste tester|taste-tester|critic +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|embroidery|fancywork +sampling|3 +(noun)|choice|selection|option|pick +(noun)|sample distribution|sample|distribution|statistical distribution +(noun)|measurement|measuring|measure|mensuration +sampling frequency|1 +(noun)|frequency|frequence|oftenness +sampling rate|1 +(noun)|rate +sampling station|1 +(noun)|sampler|observation station +samsara|1 +(noun)|cycle +samson|2 +(noun)|Samson|judge|justice|jurist|magistrate +(noun)|bull|bruiser|strapper|Samson|man|adult male +samuel|1 +(noun)|Samuel|prophet +samuel adams|1 +(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader +samuel barber|1 +(noun)|Barber|Samuel Barber|composer +samuel beckett|1 +(noun)|Beckett|Samuel Beckett|writer|author|dramatist|playwright +samuel dashiell hammett|1 +(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer|author +samuel de champlain|1 +(noun)|Champlain|Samuel de Champlain|explorer|adventurer +samuel f. b. morse|1 +(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor|discoverer|artificer|painter +samuel finley breese morse|1 +(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor|discoverer|artificer|painter +samuel goldwyn|1 +(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker|filmmaker|film producer|movie maker +samuel gompers|1 +(noun)|Gompers|Samuel Gompers|labor leader +samuel houston|1 +(noun)|Houston|Sam Houston|Samuel Houston|politician|politico|pol|political leader|general|full general +samuel huntington|1 +(noun)|Huntington|Samuel Huntington|American Revolutionary leader +samuel jackson snead|1 +(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer|golf player|linksman +samuel johnson|1 +(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer|author|lexicographer|lexicologist +samuel langhorne clemens|1 +(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer|author|humorist|humourist +samuel morse|1 +(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor|discoverer|artificer|painter +samuel pepys|1 +(noun)|Pepys|Samuel Pepys|diarist|diary keeper|journalist +samuel pierpoint langley|1 +(noun)|Langley|Samuel Pierpoint Langley|astronomer|uranologist|stargazer|inventor|discoverer|artificer +samuel rawson gardiner|1 +(noun)|Gardiner|Samuel Rawson Gardiner|historian|historiographer +samuel rosenstock|1 +(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet +samuel taylor coleridge|1 +(noun)|Coleridge|Samuel Taylor Coleridge|poet +samuel wiesenthal|1 +(noun)|Wiesenthal|Samuel Wiesenthal|investigator +samuel wilder|1 +(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker|filmmaker|film producer|movie maker +samurai|2 +(noun)|warrior +(noun)|nobility|aristocracy +san andreas fault|1 +(noun)|San Andreas Fault|fault|geological fault|shift|fracture|break +san angelo|1 +(noun)|San Angelo|town +san antonio|1 +(noun)|San Antonio|city|metropolis|urban center +san bernadino|1 +(noun)|San Bernadino|city|metropolis|urban center +san carlos apache|1 +(noun)|San Carlos Apache|Apache +san diego|1 +(noun)|San Diego|city|metropolis|urban center|port of entry|point of entry +san diego bay|1 +(noun)|San Diego Bay|bay +san fernando valley|1 +(noun)|San Fernando Valley|valley|vale +san francisco|1 +(noun)|San Francisco|city|metropolis|urban center|port of entry|point of entry +san francisco bay|1 +(noun)|San Francisco Bay|bay +san joaquin river|1 +(noun)|San Joaquin River|river +san joaquin valley|1 +(noun)|San Joaquin Valley|valley|vale +san jose|2 +(noun)|San Jose|city|metropolis|urban center +(noun)|San Jose|capital of Costa Rica|national capital +san jose scale|1 +(noun)|San Jose scale|Aspidiotus perniciosus|armored scale +san juan|1 +(noun)|San Juan|city|metropolis|urban center +san juan mountains|1 +(noun)|San Juan Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +san luis potosi|1 +(noun)|San Luis Potosi|city|metropolis|urban center +san marinese|2 +(adj)|San Marinese|European country|European nation +(noun)|San Marinese|European +san marino|2 +(noun)|San Marino|capital of San Marino|national capital +(noun)|San Marino|Republic of San Marino|European country|European nation +san mateo|1 +(noun)|San Mateo|town +san pablo|1 +(noun)|San Pablo|town +san pedro sula|1 +(noun)|San Pedro Sula|city|metropolis|urban center +san salvador|1 +(noun)|San Salvador|Salvadoran capital|national capital +san sebastian|1 +(noun)|San Sebastian|city|metropolis|urban center +sana|1 +(noun)|Sana|Sanaa|Sana'a|national capital +sana'a|1 +(noun)|Sana|Sanaa|Sana'a|national capital +sanaa|1 +(noun)|Sana|Sanaa|Sana'a|national capital +sanatarium|1 +(noun)|sanatorium|sanitarium|hospital|infirmary +sanative|1 +(adj)|curative|healing|alterative|remedial|therapeutic|healthful +sanatorium|2 +(noun)|sanatarium|sanitarium|hospital|infirmary +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|snake pit|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +sanchez|1 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +sanctification|1 +(noun)|religious ceremony|religious ritual +sanctified|1 +(adj)|consecrated|sacred|holy +sanctify|2 +(verb)|consecrate|bless|hallow|declare +(verb)|purify|purge|change|alter|modify +sanctimonious|1 +(adj)|holier-than-thou|pietistic|pietistical|pharisaic|pharisaical|self-righteous|pious +sanctimoniously|1 +(adv)|self-righteously +sanctimoniousness|1 +(noun)|sanctimony|hypocrisy +sanctimony|1 +(noun)|sanctimoniousness|hypocrisy +sanction|7 +(noun)|countenance|endorsement|indorsement|warrant|imprimatur|approval|commendation +(noun)|social control +(noun)|authority|authorization|authorisation|permission +(noun)|authorization|authorisation|empowerment +(verb)|approve|O.K.|okay|authorize|authorise|pass|clear +(verb)|empower|authorise|authorize +(verb)|approve|O.K.|okay +sanctionative|1 +(adj)|sanctioning|enabling +sanctioned|3 +(adj)|canonic|canonical|orthodox +(adj)|ratified|legal +(adj)|approved|authorized |authorised +sanctioning|1 +(adj)|sanctionative|enabling +sanctity|1 +(noun)|holiness|quality +sanctuary|3 +(noun)|place|property +(noun)|refuge|asylum|shelter +(noun)|chancel|bema|area +sanctum|2 +(noun)|sanctum sanctorum|retreat +(noun)|holy place|holy|topographic point|place|spot +sanctum sanctorum|2 +(noun)|sanctum|retreat +(noun)|holy of holies|sanctuary +sand|4 +(noun)|soil|dirt +(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer|author +(noun)|backbone|grit|guts|moxie|gumption|fortitude +(verb)|sandpaper|smooth|smoothen +sand-blind|1 +(adj)|dim-sighted|near-blind|purblind|visually impaired|visually challenged|blind |unsighted +sand badger|1 +(noun)|hog badger|hog-nosed badger|Arctonyx collaris|badger +sand bar|2 +(noun)|sandbar|bar +(noun)| +sand berry|2 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +(noun)| +sand blackberry|1 +(noun)|Rubus cuneifolius|blackberry|blackberry bush +sand cast|1 +(verb)|cast|mold|mould +sand cat|1 +(noun)|wildcat +sand cherry|1 +(noun)|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub|bush +sand crack|1 +(noun)|animal disease +sand cricket|1 +(noun)|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper|tettigoniid +sand dab|2 +(noun)|flounder +(noun)|lefteye flounder|lefteyed flounder +sand devil's claw|1 +(noun)|Proboscidea arenaria|Martynia arenaria|herb|herbaceous plant +sand dollar|1 +(noun)|sea urchin +sand dropseed|1 +(noun)|Sporobolus cryptandrus|dropseed|drop-seed +sand dune|1 +(noun)|dune|ridge +sand eel|1 +(noun)|sand lance|sand launce|launce|spiny-finned fish|acanthopterygian +sand flea|1 +(noun)|beach flea|sand hopper|sandhopper|amphipod +sand fly|2 +(noun)|sandfly|Phlebotomus papatasii|gnat +(noun)| +sand grouse|2 +(noun)|sandgrouse|columbiform bird +(noun)| +sand hopper|2 +(noun)|beach flea|sandhopper|sand flea|amphipod +(noun)| +sand lance|1 +(noun)|sand launce|sand eel|launce|spiny-finned fish|acanthopterygian +sand launce|1 +(noun)|sand lance|sand eel|launce|spiny-finned fish|acanthopterygian +sand leek|1 +(noun)|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant +sand lizard|2 +(noun)|Lacerta agilis|lacertid lizard|lacertid +(noun)|side-blotched lizard|Uta stansburiana|iguanid|iguanid lizard +sand martin|1 +(noun)|bank martin|bank swallow|Riparia riparia|martin +sand myrtle|1 +(noun)|Leiophyllum buxifolium|shrub|bush +sand painting|1 +(noun)|painting|picture +sand phlox|1 +(noun)|chickweed phlox|Phlox bifida|Phlox stellaria|phlox +sand rat|2 +(noun)|rodent|gnawer|gnawing animal +(noun)|Meriones longifrons|gerbil|gerbille +sand reed|1 +(noun)|sand sedge|Carex arenaria|sedge +sand sage|1 +(noun)|silvery wormwood|Artemisia filifolia|sagebrush|sage brush +sand sedge|1 +(noun)|sand reed|Carex arenaria|sedge +sand shark|1 +(noun)|sand tiger|Carcharias taurus|Odontaspis taurus|shark +sand snake|1 +(noun)|colubrid snake|colubrid +sand sole|1 +(noun)|Psettichthys melanostichus|sole +sand spurry|1 +(noun)|sea spurry|Spergularia rubra|weed +sand stargazer|1 +(noun)|percoid fish|percoid|percoidean +sand tiger|1 +(noun)|sand shark|Carcharias taurus|Odontaspis taurus|shark +sand trap|1 +(noun)|bunker|trap|hazard +sand tumor|1 +(noun)|psammoma|tumor|tumour|neoplasm +sand verbena|1 +(noun)|wildflower|wild flower +sand viper|2 +(noun)|horned viper|cerastes|horned asp|Cerastes cornutus|viper +(noun)|hognose snake|puff adder|colubrid snake|colubrid +sand wedge|1 +(noun)|wedge +sandal|1 +(noun)|shoe +sandaled|1 +(adj)|sandalled|shod |shodden|shoed +sandalled|1 +(adj)|sandaled|shod |shodden|shoed +sandalwood|1 +(noun)|wood +sandalwood family|1 +(noun)|Santalaceae|family Santalaceae|dilleniid dicot family +sandalwood tree|1 +(noun)|true sandalwood|Santalum album|tree +sandarac|3 +(noun)|citronwood|wood +(noun)|sandarach|natural resin +(noun)|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress +sandarac tree|1 +(noun)|sandarac|Tetraclinis articulata|Callitris quadrivalvis|cypress +sandarach|1 +(noun)|sandarac|natural resin +sandbag|6 +(noun)|bag +(verb)|wrong +(verb)|dragoon|railroad|coerce|hale|squeeze|pressure|force +(verb)|stun|hit +(verb)|misinform|mislead +(verb)|strengthen +sandbagger|1 +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +sandbank|1 +(noun)|bank +sandbar|1 +(noun)|sand bar|bar +sandbar shark|2 +(noun)|blacktip shark|Carcharhinus limbatus|requiem shark +(noun)|Carcharhinus plumbeus|requiem shark +sandberry|1 +(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +sandblast|2 +(noun)|gust|blast|blow +(verb)|smooth|smoothen +sandblaster|1 +(noun)|hand tool +sandbox|2 +(noun)|mold|mould|cast +(noun)|sandpile|plaything|toy +sandboy|1 +(noun)|peddler|pedlar|packman|hawker|pitchman +sandbur|1 +(noun)|sandspur|field sandbur|Cenchrus tribuloides|grass +sandburg|1 +(noun)|Sandburg|Carl Sandburg|writer|author +sander|1 +(noun)|drum sander|electric sander|smoother|power tool +sanderling|1 +(noun)|Crocethia alba|sandpiper +sandfish|2 +(noun)|percoid fish|percoid|percoidean +(noun)|beaked salmon|Gonorhynchus gonorhynchus|soft-finned fish|malacopterygian +sandfly|1 +(noun)|sand fly|Phlebotomus papatasii|gnat +sandfly fever|1 +(noun)|pappataci fever|phlebotomus|disease +sandglass|1 +(noun)|timepiece|timekeeper +sandgrouse|1 +(noun)|sand grouse|columbiform bird +sandhi|1 +(noun)|articulation +sandhopper|1 +(noun)|beach flea|sand hopper|sand flea|amphipod +sandiness|1 +(noun)|coarseness|graininess|granularity +sandlike|1 +(adj)|arenaceous |sandy +sandlot|1 +(noun)|vacant lot|building site +sandman|1 +(noun)|elf|hob|gremlin|pixie|pixy|brownie|imp +sandor kellner|1 +(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker|filmmaker|film producer|movie maker +sandpaper|2 +(noun)|emery paper|abrasive|abradant|abrasive material +(verb)|sand|smooth|smoothen +sandpapery|1 +(adj)|rough |unsmooth +sandpile|1 +(noun)|sandbox|plaything|toy +sandpiper|1 +(noun)|shorebird|shore bird|limicoline bird +sandpit|1 +(noun)|pit|cavity +sandril|1 +(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive|antihypertensive drug +sandro botticelli|1 +(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master +sands|4 +(noun)|littoral|litoral|littoral zone|seashore|coast|seacoast|sea-coast +(noun)|sand|soil|dirt +(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer|author +(noun)|backbone|grit|guts|moxie|sand|gumption|fortitude +sandspur|1 +(noun)|sandbur|field sandbur|Cenchrus tribuloides|grass +sandstone|1 +(noun)|arenaceous rock +sandstorm|1 +(noun)|dust storm|duster|sirocco|windstorm +sandwich|3 +(noun)|snack food +(verb)|organize|organise|prepare|devise|get up|machinate +(verb)|insert|infix|enter|introduce +sandwich board|1 +(noun)|signboard|sign +sandwich islands|1 +(noun)|Hawaiian Islands|Sandwich Islands|archipelago +sandwich plate|1 +(noun)|dish +sandwichman|1 +(noun)|employee +sandwort|3 +(noun)|Moehringia mucosa|flower +(noun)|Moehringia lateriflora|flower +(noun)|flower +sandy|5 +(adj)|farinaceous|coarse-grained|grainy|granular|granulose|gritty|mealy|coarse +(adj)|friable|light|loose +(adj)|flaxen|blond |blonde|light-haired +(adj)|arenaceous |sandlike +(adj)|beachy |beachlike +sandy mushroom|1 +(noun)|Tricholoma populinum|agaric +sane|2 +(adj)|sane |compos mentis|of sound mind|in his right mind|in her right mind|in their right minds|lucid|rational +(adj)|reasonable|rational +sanely|1 +(adv)|sensibly|reasonably +saneness|1 +(noun)|sanity|mental health +sanfoin|1 +(noun)|sainfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb|herbaceous plant +sang|1 +(noun)|American ginseng|Panax quinquefolius|herb|herbaceous plant +sang-froid|1 +(noun)|aplomb|assuredness|cool|poise|composure|calm|calmness|equanimity +sangapenum|1 +(noun)|gum sangapenum|gum +sangaree|1 +(noun)|sangria|drink +sangay|1 +(noun)|Sangay|volcano +sanger|2 +(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist +(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse +sango|1 +(noun)|Sango|Niger-Congo +sangoma|1 +(noun)|therapist|healer +sangraal|1 +(noun)|grail|Holy Grail|Sangraal|chalice|goblet +sangria|1 +(noun)|sangaree|drink +sanguification|1 +(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|organic process|biological process +sanguinaria|1 +(noun)|Sanguinaria|genus Sanguinaria|dilleniid dicot genus +sanguinaria canadensis|1 +(noun)|bloodroot|puccoon|redroot|tetterwort|Sanguinaria canadensis|herb|herbaceous plant +sanguinary|2 +(adj)|gory|sanguineous|slaughterous|butcherly|bloody +(adj)|bloodthirsty|bloody-minded|bloody +sanguinary ant|1 +(noun)|Formica sanguinea|slave-making ant|slave-maker +sanguine|2 +(adj)|optimistic +(adj)|rubicund|ruddy|healthy +sanguineness|1 +(noun)|sanguinity|optimism +sanguineous|1 +(adj)|gory|sanguinary|slaughterous|butcherly|bloody +sanguinity|1 +(noun)|sanguineness|optimism +sanicle|1 +(noun)|snakeroot|herb|herbaceous plant +sanicula|1 +(noun)|Sanicula|genus Sanicula|rosid dicot genus +sanicula arctopoides|1 +(noun)|footsteps-of-spring|Sanicula arctopoides|sanicle|snakeroot +sanicula bipinnatifida|1 +(noun)|purple sanicle|Sanicula bipinnatifida|sanicle|snakeroot +sanicula europaea|1 +(noun)|European sanicle|Sanicula Europaea|sanicle|snakeroot +sanies|1 +(noun)|pus|purulence|suppuration|ichor|festering|liquid body substance|bodily fluid|body fluid|humor|humour +sanious|1 +(adj)|ichorous|liquid body substance|bodily fluid|body fluid|humor|humour +sanitariness|1 +(noun)|sanitary condition +sanitarium|1 +(noun)|sanatorium|sanatarium|hospital|infirmary +sanitary|1 +(adj)|sanitary |healthful|hygienic|hygienical +sanitary code|1 +(noun)|health code|code|codification +sanitary condition|1 +(noun)|condition|status +sanitary landfill|1 +(noun)|landfill +sanitary napkin|1 +(noun)|Kotex|pad +sanitate|1 +(verb)|supply|provide|render|furnish +sanitation|2 +(noun)|sanitariness +(noun)|sanitization|sanitisation|cleaning|cleansing|cleanup +sanitisation|1 +(noun)|sanitation|sanitization|cleaning|cleansing|cleanup +sanitise|2 +(verb)|sanitize|hygienize|hygienise|clean|make clean +(verb)|sanitize|change|alter|modify +sanitised|1 +(adj)|sanitized|change|alter|modify +sanitization|1 +(noun)|sanitation|sanitisation|cleaning|cleansing|cleanup +sanitize|2 +(verb)|sanitise|hygienize|hygienise|clean|make clean +(verb)|sanitise|change|alter|modify +sanitized|1 +(adj)|sanitised|change|alter|modify +sanity|1 +(noun)|saneness|mental health +sannup|1 +(noun)|Indian|North American Indian|American Indian|Red Indian +sannyasi|1 +(noun)|sannyasin|sanyasi|beggar|mendicant|Hindu|Hindoo +sannyasin|1 +(noun)|sannyasi|sanyasi|beggar|mendicant|Hindu|Hindoo +sans serif|1 +(noun)|Helvetica|font|fount|typeface|face +sansevieria|1 +(noun)|bowstring hemp|agave|century plant|American aloe +sansevieria guineensis|1 +(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria|bowstring hemp +sansevieria trifasciata|1 +(noun)|mother-in-law's tongue|snake plant|Sansevieria trifasciata|sansevieria|bowstring hemp +sansevieria zeylanica|1 +(noun)|Ceylon bowstring hemp|Sansevieria zeylanica|sansevieria|bowstring hemp +sanskrit|1 +(noun)|Sanskrit|Sanskritic language|Indic|Indo-Aryan +sanskrit literature|1 +(noun)|Sanskrit literature|literature +sanskritic language|1 +(noun)|Sanskrit|Sanskritic language|Indic|Indo-Aryan +sanson-flamsteed projection|1 +(noun)|sinusoidal projection|Sanson-Flamsteed projection|equal-area projection|equal-area map projection +santa ana|4 +(noun)|Santa Ana|wind|air current|current of air +(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general|full general +(noun)|Santa Ana|city|metropolis|urban center +(noun)|Santa Ana|city|metropolis|urban center +santa anna|1 +(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general|full general +santa barbara|1 +(noun)|Santa Barbara|town +santa catalina|1 +(noun)|Santa Catalina|Catalina Island|island +santa clara|1 +(noun)|Santa Clara|city|metropolis|urban center +santa claus|1 +(noun)|Santa Claus|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint +santa cruz|2 +(noun)|Santa Cruz|town +(noun)|Santa Cruz|city|metropolis|urban center +santa cruz cypress|1 +(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress|cypress tree +santa fe|1 +(noun)|Santa Fe|capital of New Mexico|state capital +santa fe trail|1 +(noun)|Santa Fe Trail|trail +santa gertrudis|1 +(noun)|Santa Gertrudis|beef|beef cattle +santa lucia fir|1 +(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir|fir tree|true fir +santa maria de belem|1 +(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city|metropolis|urban center|port +santa maria del tule|1 +(noun)|Santa Maria del Tule|town +santa maria tree|1 +(noun)|calaba|Santa Maria tree|Calophyllum calaba|tree +santalaceae|1 +(noun)|Santalaceae|family Santalaceae|sandalwood family|dilleniid dicot family +santalales|1 +(noun)|Santalales|order Santalales|plant order +santalum|1 +(noun)|Santalum|genus Santalum|dilleniid dicot genus +santalum album|1 +(noun)|sandalwood tree|true sandalwood|Santalum album|tree +santee|2 +(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux|Siouan +(noun)|Santee|Siouan|Siouan language +santee dakota|1 +(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux|Siouan +santee sioux|1 +(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux|Siouan +santiago|4 +(noun)|Santiago de los Caballeros|Santiago|city|metropolis|urban center +(noun)|Santiago de Cuba|Santiago|city|metropolis|urban center|port +(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital +(noun)|Santiago|Santiago de Cuba|naval battle +santiago de chile|1 +(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital +santiago de cuba|2 +(noun)|Santiago de Cuba|Santiago|city|metropolis|urban center|port +(noun)|Santiago|Santiago de Cuba|naval battle +santiago de los caballeros|1 +(noun)|Santiago de los Caballeros|Santiago|city|metropolis|urban center +santiago ramon y cajal|1 +(noun)|Ramon y Cajal|Santiago Ramon y Cajal|histologist +santims|1 +(noun)|Latvian monetary unit +santo domingo|1 +(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital +santolina|1 +(noun)|Santolina|genus Santolina|asterid dicot genus +santolina chamaecyparissus|1 +(noun)|lavender cotton|Santolina chamaecyparissus|shrub|bush +santos|1 +(noun)|Santos|city|metropolis|urban center|port +sanvitalia|1 +(noun)|Sanvitalia|genus Sanvitalia|asterid dicot genus +sanvitalia procumbens|1 +(noun)|creeping zinnia|Sanvitalia procumbens|herb|herbaceous plant +sanwa millet|1 +(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|Echinochloa frumentacea|millet +sanyasi|1 +(noun)|sannyasi|sannyasin|beggar|mendicant|Hindu|Hindoo +sao bernardo do campo|1 +(noun)|Sao Bernardo do Campo|city|metropolis|urban center +sao goncalo|1 +(noun)|Sao Goncalo|city|metropolis|urban center +sao joao de meriti|1 +(noun)|Sao Joao de Meriti|city|metropolis|urban center +sao jose dos campos|1 +(noun)|Sao Jose dos Campos|city|metropolis|urban center +sao louis|1 +(noun)|Sao Louis|city|metropolis|urban center +sao paulo|1 +(noun)|Sao Paulo|city|metropolis|urban center|port +sao thome e principe|1 +(noun)|Sao Tome and Principe|Democratic Republic of Sao Tome and Principe|Sao Tome e Principe|Sao Thome e Principe|St. Thomas and Principe|country|state|land +sao thome e principe monetary unit|1 +(noun)|Sao Thome e Principe monetary unit|monetary unit +sao tiago island|1 +(noun)|Sao Tiago Island|island +sao tome|1 +(noun)|Sao Tome|national capital +sao tome and principe|1 +(noun)|Sao Tome and Principe|Democratic Republic of Sao Tome and Principe|Sao Tome e Principe|Sao Thome e Principe|St. Thomas and Principe|country|state|land +sao tome e principe|1 +(noun)|Sao Tome and Principe|Democratic Republic of Sao Tome and Principe|Sao Tome e Principe|Sao Thome e Principe|St. Thomas and Principe|country|state|land +saone|1 +(noun)|Saone|Saone River|river +saone river|1 +(noun)|Saone|Saone River|river +sap|5 +(noun)|solution +(noun)|fool|saphead|muggins|tomfool|simpleton|simple +(noun)|blackjack|cosh|bludgeon +(verb)|run down|exhaust|play out|tire|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|cave|undermine +sapele mahogany|1 +(noun)|African scented mahogany|cedar mahogany|Entandrophragma cylindricum|mahogany|mahogany tree +saphar|1 +(noun)|Safar|Saphar|Islamic calendar month +saphead|1 +(noun)|fool|sap|muggins|tomfool|simpleton|simple +saphenous nerve|1 +(noun)|nervus saphenus|nerve|nervus +saphenous vein|1 +(noun)|vena saphena|vein|vena|venous blood vessel +sapid|1 +(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|flavoursome|saporous|tasteful +sapidity|2 +(noun)|relish|flavor|flavour|savor|savour|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sapidness|flavorsomeness|flavoutsomeness|savoriness +sapidness|1 +(noun)|sapidity|flavorsomeness|flavoutsomeness|savoriness +sapience|1 +(noun)|wisdom|know-how +sapiens|1 +(adj)|homo|man|human being|human +sapient|1 +(adj)|perspicacious|sagacious|wise +sapiential|1 +(adj)|wise +sapiential book|1 +(noun)|wisdom book|wisdom literature|sacred text|sacred writing|religious writing|religious text +sapiently|1 +(adv)|astutely|shrewdly|sagaciously +sapindaceae|1 +(noun)|Sapindaceae|family Sapindaceae|soapberry family|dicot family|magnoliopsid family +sapindales|1 +(noun)|Sapindales|order Sapindales|plant order +sapindus|1 +(noun)|Sapindus|genus Sapindus|dicot genus|magnoliopsid genus +sapindus drumondii|1 +(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry|soapberry tree +sapindus marginatus|1 +(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry|soapberry tree +sapindus saponaria|1 +(noun)|China tree|false dogwood|jaboncillo|chinaberry|Sapindus saponaria|soapberry|soapberry tree +sapir|1 +(noun)|Sapir|Edward Sapir|anthropologist|linguist|linguistic scientist +sapless|2 +(adj)|decrepit|debile|feeble|infirm|weak|weakly|frail +(adj)|juiceless +sapling|1 +(noun)|tree +sapodilla|2 +(noun)|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree +(noun)|sapodilla plum|sapota|edible fruit +sapodilla family|1 +(noun)|Sapotaceae|family Sapotaceae|dicot family|magnoliopsid family +sapodilla plum|1 +(noun)|sapodilla|sapota|edible fruit +sapodilla tree|1 +(noun)|sapodilla|Manilkara zapota|Achras zapota|fruit tree +saponaceous|1 +(adj)|soapy|cleansing agent|cleanser|cleaner +saponaria|1 +(noun)|Saponaria|genus Saponaria|caryophylloid dicot genus +saponaria officinalis|1 +(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower +saponaria vaccaria|1 +(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower +saponification|1 +(noun)|chemical reaction|reaction +saponified|1 +(adj)|saponified |change|alter|modify +saponify|2 +(verb)|change +(verb)|change|alter|modify +saponin|1 +(noun)|glucoside +saporous|1 +(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|flavoursome|sapid|tasteful +sapota|1 +(noun)|sapodilla|sapodilla plum|edible fruit +sapotaceae|1 +(noun)|Sapotaceae|family Sapotaceae|sapodilla family|dicot family|magnoliopsid family +sapote|2 +(noun)|marmalade tree|mammee|Pouteria zapota|Calocarpum zapota|tree +(noun)|mammee|marmalade plum|edible fruit +sapper|2 +(noun)|army engineer|military engineer +(noun)|army engineer|military engineer +sapphic|2 +(adj)|rhythmical |rhythmic +(adj)|lesbian|homosexual +sapphic ode|1 +(noun)|Horatian ode|Sapphic ode|ode +sapphire|4 +(adj)|chromatic +(noun)|transparent gem|corundom|corundum +(noun)|jewel|gem|precious stone +(noun)|azure|cerulean|lazuline|sky-blue|blue|blueness +sapphire berry|1 +(noun)|Asiatic sweetleaf|Symplocus paniculata|flowering shrub +sapphirine|2 +(adj)|transparent gem|corundom|corundum +(noun)|mineral +sapphism|1 +(noun)|lesbianism|homosexuality|homosexualism|homoeroticism|gayness +sappho|1 +(noun)|Sappho|poetess|Lesbian +sapporo|1 +(noun)|Sapporo|city|metropolis|urban center +sappy|2 +(adj)|cockamamie|cockamamy|goofy|silly|wacky|whacky|zany|unreasonable|foolish +(adj)|juicy +sapraemia|1 +(noun)|sapremia|sepsis +sapremia|1 +(noun)|sapraemia|sepsis +saprobe|1 +(noun)|organism|being +saprobic|1 +(adj)|organism|being +saprolegnia|1 +(noun)|Saprolegnia|genus Saprolegnia|fungus genus +saprolegnia ferax|1 +(noun)|white fungus|Saprolegnia ferax|fungus +saprolegniales|1 +(noun)|Saprolegniales|order Saprolegniales|fungus order +saprolite|1 +(noun)|earth|ground +sapropel|1 +(noun)|sludge|slime|goo|gook|guck|gunk|muck|ooze +saprophagous|1 +(adj)|saprozoic|herbivorous +saprophyte|1 +(noun)|saprophytic organism|organism|being +saprophytic|2 +(adj)|organism|being +(adj)|herbivorous +saprophytic organism|1 +(noun)|saprophyte|organism|being +saprozoic|1 +(adj)|saprophagous|herbivorous +sapsago|1 +(noun)|Swiss cheese +sapsucker|1 +(noun)|woodpecker|peckerwood|pecker +sapwood|1 +(noun)|wood +saqqara|1 +(noun)|Saqqara|Saqqarah|Sakkara|town +saqqarah|1 +(noun)|Saqqara|Saqqarah|Sakkara|town +saquinavir|1 +(noun)|Invirase|protease inhibitor|PI +sara teasdale|1 +(noun)|Teasdale|Sara Teasdale|poet +saraband|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|dancing|dance|terpsichore|saltation +saracen|3 +(noun)|Saracen|nomad +(noun)|Saracen|Arab|Arabian +(noun)|Saracen|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +saragossa|1 +(noun)|Zaragoza|Saragossa|city|metropolis|urban center +sarah|1 +(noun)|Sarah|wife|married woman +sarah bernhardt|1 +(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress +sarah kemble siddons|1 +(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress +sarah siddons|1 +(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress +sarah vaughan|1 +(noun)|Vaughan|Sarah Vaughan|singer|vocalist|vocalizer|vocaliser +sarajevo|1 +(noun)|Sarajevo|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia +saran|1 +(noun)|thermoplastic|thermoplastic resin +saran wrap|1 +(noun)|cling film|clingfilm|Saran Wrap|plastic wrap +sarape|1 +(noun)|serape|shawl +sarasota|1 +(noun)|Sarasota|town +sarasvati|1 +(noun)|Sarasvati|Hindu deity +saratoga|1 +(noun)|Saratoga|battle of Saratoga|pitched battle +saratoga chip|1 +(noun)|chip|crisp|potato chip|Saratoga chip|snack food +saratoga spittlebug|1 +(noun)|Saratoga spittlebug|Aphrophora saratogensis|spittle insect|spittlebug +saratoga springs|1 +(noun)|Saratoga Springs|town +saratov|1 +(noun)|Saratov|city|metropolis|urban center +sarawak|1 +(noun)|Sarawak|district|territory|territorial dominion|dominion +sarawakian|2 +(adj)|Sarawakian|district|territory|territorial dominion|dominion +(noun)|Sarawakian|Malaysian +sarazen|1 +(noun)|Sarazen|Gene Sarazen|golfer|golf player|linksman +sarcasm|1 +(noun)|irony|satire|caustic remark|wit|humor|humour|witticism|wittiness +sarcastic|1 +(adj)|sarcastic |barbed|biting|nipping|pungent|mordacious|black|grim|mordant|sardonic|wry|satirical|satiric|saturnine|critical|disrespectful +sarcastically|1 +(adv)|sardonically +sarcobatus|1 +(noun)|Sarcobatus|genus Sarcobatus|caryophylloid dicot genus +sarcobatus vermiculatus|1 +(noun)|greasewood|black greasewood|Sarcobatus vermiculatus|shrub|bush +sarcocephalus|1 +(noun)|Sarcocephalus|genus Sarcocephalus|asterid dicot genus +sarcocephalus diderrichii|1 +(noun)|opepe|Nauclea diderrichii|Sarcocephalus diderrichii|tree +sarcocephalus esculentus|1 +(noun)|negro peach|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub|bush +sarcocephalus latifolius|1 +(noun)|negro peach|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub|bush +sarcochilus|1 +(noun)|Sarcochilus|genus Sarcochilus|monocot genus|liliopsid genus +sarcochilus falcatus|1 +(noun)|orange-blossom orchid|Sarcochilus falcatus|orchid|orchidaceous plant +sarcocystidean|1 +(noun)|sarcosporidian|sarcocystieian|sporozoan +sarcocystieian|1 +(noun)|sarcosporidian|sarcocystidean|sporozoan +sarcocystis|1 +(noun)|Sarcocystis|genus Sarcocystis|protoctist genus +sarcodes|1 +(noun)|Sarcodes|genus Sarcodes|dilleniid dicot genus +sarcodes sanguinea|1 +(noun)|snow plant|Sarcodes sanguinea|wildflower|wild flower +sarcodina|1 +(noun)|Sarcodina|class Sarcodina|class +sarcodine|1 +(noun)|sarcodinian|protozoan|protozoon +sarcodinian|1 +(noun)|sarcodine|protozoan|protozoon +sarcoid|1 +(adj)|fleshy +sarcoidosis|1 +(noun)|pathology +sarcolemma|1 +(noun)|membrane|tissue layer +sarcolemmal|1 +(adj)|membrane|tissue layer +sarcolemmic|1 +(adj)|sarcolemnous|membrane|tissue layer +sarcolemnous|1 +(adj)|sarcolemmic|membrane|tissue layer +sarcoma|1 +(noun)|cancer|malignant neoplastic disease +sarcomere|1 +(noun)|segment +sarcophaga|1 +(noun)|Sarcophaga|genus Sarcophaga|arthropod genus +sarcophaga carnaria|1 +(noun)|flesh fly|Sarcophaga carnaria|fly +sarcophagus|1 +(noun)|coffin|casket +sarcophilus|1 +(noun)|Sarcophilus|genus Sarcophilus|mammal genus +sarcophilus hariisi|1 +(noun)|Tasmanian devil|ursine dasyure|Sarcophilus hariisi|dasyurid marsupial|dasyurid +sarcoplasm|1 +(noun)|cytoplasm +sarcoptes|1 +(noun)|Sarcoptes|genus Sarcoptes|arthropod genus +sarcoptid|1 +(noun)|itch mite|mite +sarcoptidae|1 +(noun)|Sarcoptidae|family Sarcoptidae|arthropod family +sarcorhamphus|1 +(noun)|Sarcorhamphus|genus Sarcorhamphus|bird genus +sarcorhamphus papa|1 +(noun)|king vulture|Sarcorhamphus papa|New World vulture|cathartid +sarcoscypha coccinea|1 +(noun)|Sarcoscypha coccinea|scarlet cup|discomycete|cup fungus +sarcoscyphaceae|1 +(noun)|Sarcoscyphaceae|family Sarcoscyphaceae|fungus family +sarcosine|1 +(noun)|amino acid|aminoalkanoic acid +sarcosomal|1 +(adj)|mitochondrion|chondriosome +sarcosomataceae|1 +(noun)|Sarcosomataceae|ascomycete|ascomycetous fungus +sarcosome|1 +(noun)|mitochondrion|chondriosome +sarcosporidia|1 +(noun)|Sarcosporidia|order Sarcosporidia|animal order +sarcosporidian|1 +(noun)|sarcocystidean|sarcocystieian|sporozoan +sarcostemma|1 +(noun)|Sarcostemma|genus Sarcostemma|dicot genus|magnoliopsid genus +sarcostemma acidum|1 +(noun)|soma|haoma|Sarcostemma acidum|vine +sarcostyle|1 +(noun)|myofibril|myofibrilla|fibril|filament|strand +sard|1 +(noun)|sardine|sardius|chalcedony|calcedony +sarda|1 +(noun)|Sarda|genus Sarda|fish genus +sarda chiliensis|1 +(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito +sarda lineolata|1 +(noun)|Pacific bonito|Sarda lineolata|bonito +sarda sarda|1 +(noun)|skipjack|Atlantic bonito|Sarda sarda|bonito +sardegna|2 +(noun)|Sardinia|Sardegna|Italian region +(noun)|Sardinia|Sardegna|island +sardina|1 +(noun)|Sardina|genus Sardina|genus Sardinia|fish genus +sardina pilchardus|1 +(noun)|pilchard|sardine|Sardina pilchardus|clupeid fish|clupeid +sardine|4 +(noun)|pilchard|saltwater fish +(noun)|clupeid fish|clupeid|food fish +(noun)|sard|sardius|chalcedony|calcedony +(noun)|pilchard|Sardina pilchardus|clupeid fish|clupeid +sardine oil|1 +(noun)|animal oil +sardinia|2 +(noun)|Sardinia|Sardegna|Italian region +(noun)|Sardinia|Sardegna|island +sardinian|3 +(adj)|Sardinian|Italian region +(noun)|Sardinian|Italian +(noun)|Sardinian|Italian +sardinops|1 +(noun)|Sardinops|genus Sardinops|fish genus +sardinops caerulea|1 +(noun)|Pacific sardine|Sardinops caerulea|pilchard|sardine|Sardina pilchardus +sardis|1 +(noun)|Sardis|city|metropolis|urban center +sardius|1 +(noun)|sard|sardine|chalcedony|calcedony +sardonic|1 +(adj)|wry|sarcastic +sardonically|1 +(adv)|sarcastically +sardonyx|1 +(noun)|onyx +saree|1 +(noun)|sari|dress|frock +sargasso|1 +(noun)|gulfweed|sargassum|Sargassum bacciferum|brown algae +sargasso sea|1 +(noun)|Sargasso Sea|sea +sargassum|1 +(noun)|gulfweed|sargasso|Sargassum bacciferum|brown algae +sargassum bacciferum|1 +(noun)|gulfweed|sargassum|sargasso|Sargassum bacciferum|brown algae +sargassum fish|1 +(noun)|spiny-finned fish|acanthopterygian +sargent|1 +(noun)|Sargent|John Singer Sargent|painter +sari|1 +(noun)|saree|dress|frock +sarin|1 +(noun)|GB|organophosphate nerve agent +sarnoff|1 +(noun)|Sarnoff|David Sarnoff|businessman|man of affairs +sarong|1 +(noun)|skirt +saronic gulf|1 +(noun)|Saronic Gulf|Gulf of Aegina|inlet|recess +saroyan|1 +(noun)|Saroyan|William Saroyan|writer|author +sarpanitu|1 +(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity +sarpedon|1 +(noun)|Sarpedon|mythical being +sarracenia|1 +(noun)|Sarracenia|genus Sarracenia|dicot genus|magnoliopsid genus +sarracenia flava|1 +(noun)|huntsman's horn|huntsman's horns|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant +sarracenia minor|1 +(noun)|hooded pitcher plant|Sarracenia minor|pitcher plant +sarracenia purpurea|1 +(noun)|common pitcher plant|huntsman's cup|huntsman's cups|Sarracenia purpurea|pitcher plant +sarraceniaceae|1 +(noun)|Sarraceniaceae|family Sarraceniaceae|pitcher-plant family|dicot family|magnoliopsid family +sarraceniales|1 +(noun)|Sarraceniales|order Sarraceniales|plant order +sars|1 +(noun)|severe acute respiratory syndrome|SARS|respiratory disease|respiratory illness|respiratory disorder +sarsaparilla|2 +(noun)|vine +(noun)|soft drink +sarsaparilla root|1 +(noun)|root +sartor|1 +(noun)|tailor|seamster|garmentmaker|garment-worker|garment worker +sartorial|2 +(adj)|skeletal muscle|striated muscle +(adj)|garmentmaker|garment-worker|garment worker|trade|craft +sartorius|1 +(noun)|sartorius muscle|musculus sartorius|skeletal muscle|striated muscle +sartorius muscle|1 +(noun)|sartorius|musculus sartorius|skeletal muscle|striated muscle +sartre|1 +(noun)|Sartre|Jean-Paul Sartre|dramatist|playwright|existentialist +sarvepalli radhakrishnan|1 +(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher|statesman|solon|national leader +sas|2 +(noun)|Special Air Service|SAS|commando +(noun)|SA|Sturmarbeiteilung|Storm Troops|militia|reserves +sash|2 +(noun)|window sash|framework|frame|framing +(noun)|girdle|cincture|waistband|waistcloth|band +sash cord|1 +(noun)|sash line|cord +sash fastener|1 +(noun)|sash lock|window lock|lock +sash line|1 +(noun)|sash cord|cord +sash lock|1 +(noun)|sash fastener|window lock|lock +sash weight|1 +(noun)|counterweight|counterbalance|counterpoise|balance|equalizer|equaliser +sash window|1 +(noun)|window +sashay|6 +(noun)|country-dance|country dancing|contredanse|contra danse|contradance +(noun)|chasse|dance step|step +(noun)|excursion|jaunt|outing|junket|pleasure trip|expedition|journey|journeying +(verb)|sidle|move +(verb)|swagger|ruffle|prance|strut|cock|walk +(verb)|chasse|dance +sashimi|1 +(noun)|dish +saskatchewan|1 +(noun)|Saskatchewan|Canadian province +saskatoon|2 +(noun)|Saskatoon|city|metropolis|urban center +(noun)|serviceberry|shadberry|juneberry|berry +sasquatch|1 +(noun)|Bigfoot|Sasquatch|legendary creature +sass|2 +(noun)|sassing|backtalk|back talk|lip|mouth|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +(verb)|answer|reply|respond +sassaby|1 +(noun)|topi|Damaliscus lunatus|antelope +sassafras|2 +(noun)|sassafras tree|Sassafras albidum|laurel +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +sassafras albidum|1 +(noun)|sassafras|sassafras tree|Sassafras albidum|laurel +sassafras laurel|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|California olive|mountain laurel|Umbellularia californica|laurel +sassafras oil|1 +(noun)|oil +sassafras tree|1 +(noun)|sassafras|Sassafras albidum|laurel +sassenach|1 +(noun)|Sassenach|English person +sassing|1 +(noun)|sass|backtalk|back talk|lip|mouth|impudence|cheek|impertinence|rejoinder|retort|return|riposte|replication|comeback|counter +sassy|1 +(adj)|fresh|impertinent|impudent|overbold|smart|saucy|forward +sat|1 +(noun)|Saturday|Sabbatum|Sat|weekday +satan|1 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +satang|1 +(noun)|Thai monetary unit +satanic|2 +(adj)|demonic|diabolic|diabolical|fiendish|hellish|infernal|unholy|evil |wicked +(adj)|Satanic|spiritual being|supernatural being +satanism|1 +(noun)|diabolism|demonism|Satanism|sorcery|black magic|black art|necromancy +satanist|1 +(noun)|Satanist|diabolist|disciple|adherent +satanophobia|1 +(noun)|social phobia +satchel|1 +(noun)|baggage|luggage +satchel paige|1 +(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer|baseball player +satchmo|1 +(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician|jazzman|trumpeter|cornetist +sate|1 +(verb)|satiate|replete|fill|consume|ingest|take in|take|have +sated|1 +(adj)|gorged|surfeited|satiate |satiated +sateen|1 +(noun)|fabric|cloth|material|textile +satellite|5 +(adj)|outer +(noun)|artificial satellite|orbiter|equipment +(noun)|planet|follower +(noun)|celestial body|heavenly body +(verb)|air|send|broadcast|beam|transmit +satellite receiver|1 +(noun)|receiver|receiving system +satellite television|1 +(noun)|satellite TV|television|television system +satellite transmitter|1 +(noun)|transmitter|sender +satellite tv|1 +(noun)|satellite television|satellite TV|television|television system +satiable|1 +(adj)|satisfiable|satiate |satiated +satiate|3 +(adj)|satiate |satiated|gorged|sated|surfeited|satiable|satisfiable|jaded +(verb)|sate|replete|fill|consume|ingest|take in|take|have +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|scarf out|eat +satiated|1 +(adj)|satiate |gorged|sated|surfeited|satiable|satisfiable|jaded +satiation|2 +(noun)|repletion|satiety|fullness +(noun)|gratification +satie|1 +(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer +satiety|1 +(noun)|repletion|satiation|fullness +satin|1 +(noun)|fabric|cloth|material|textile +satin bird|1 +(noun)|satin bowerbird|Ptilonorhynchus violaceus|bowerbird|catbird +satin bowerbird|1 +(noun)|satin bird|Ptilonorhynchus violaceus|bowerbird|catbird +satin flower|1 +(noun)|honesty|silver dollar|money plant|satinpod|Lunaria annua|herb|herbaceous plant +satin leaf|2 +(noun)|satinleaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree|flowering tree +(noun)| +satin stitch|1 +(noun)|stitch +satin walnut|1 +(noun)|sweet gum|hazelwood|red gum|gumwood|gum +satin weave|1 +(noun)|weave +satinleaf|1 +(noun)|satin leaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree|flowering tree +satinpod|1 +(noun)|honesty|silver dollar|money plant|satin flower|Lunaria annua|herb|herbaceous plant +satinwood|3 +(noun)|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood +(noun)|wood +(noun)|satinwood tree|Chloroxylon swietenia|tree +satinwood tree|1 +(noun)|satinwood|Chloroxylon swietenia|tree +satiny|1 +(adj)|glossy|sleek|silken|silky|silklike|slick|smooth +satire|1 +(noun)|sarcasm|irony|caustic remark|wit|humor|humour|witticism|wittiness +satiric|1 +(adj)|satirical|sarcastic +satirical|1 +(adj)|satiric|sarcastic +satirise|1 +(verb)|satirize|lampoon|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +satirist|1 +(noun)|ironist|ridiculer|humorist|humourist +satirize|1 +(verb)|satirise|lampoon|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +satisfaction|4 +(noun)|contentment +(noun)|gratification|emotional state|spirit +(noun)|atonement|expiation|damages|amends|indemnity|indemnification|restitution|redress +(noun)|change +satisfactoriness|1 +(noun)|quality +satisfactory|2 +(adj)|satisfactory |adequate|passable|fair to middling|all right|fine|ok|o.k.|okay|hunky-dory|comforting|cheering|satisfying|copacetic|copasetic|copesetic|copesettic|passing|right|alright|acceptable|adequate +(adj)|acceptable|good +satisfiable|1 +(adj)|satiable|satiate |satiated +satisfice|1 +(verb)|staisfise|act|move +satisfied|2 +(adj)|contented |content +(adj)|quenched|slaked|mitigated +satisfier|1 +(noun)|agent +satisfy|3 +(verb)|fulfill|fulfil|live up to|meet|fit|conform to +(verb)|gratify +(verb)|meet|fill|fulfill|fulfil|provide|supply|ply|cater +satisfying|3 +(adj)|appreciated|gratifying|pleasing|rewarding +(adj)|hearty|solid|substantial|wholesome +(adj)|comforting|cheering|satisfactory +satisfyingly|1 +(adv)|gratifyingly +satori|1 +(noun)|enlightenment +satrap|1 +(noun)|governor +satsuma|2 +(noun)|satsuma tree|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +(noun)|mandarin|mandarin orange +satsuma tree|1 +(noun)|satsuma|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +saturate|2 +(verb)|change|alter|modify +(verb)|impregnate|fill|fill up|make full +saturated|4 +(adj)|saturated |concentrated|supersaturated +(adj)|drenched|soaked|soaking|sodden|sopping|soppy|wet +(adj)|saturated +(adj)|saturated |pure|intense|vivid +saturated fatty acid|1 +(noun)|fatty acid +saturation|4 +(noun)|impregnation|permeation|pervasion|suffusion +(noun)|filling +(noun)|condition|status +(noun)|chroma|intensity|vividness|color property +saturation bombing|1 +(noun)|carpet bombing|area bombing|bombing|bombardment +saturation point|1 +(noun)|saturation +saturday|1 +(noun)|Saturday|Sabbatum|Sat|weekday +saturday night special|1 +(noun)|Saturday night special|pistol|handgun|side arm|shooting iron +satureia|1 +(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus +satureia hortensis|1 +(noun)|summer savory|Satureja hortensis|Satureia hortensis|savory +satureia montana|1 +(noun)|winter savory|Satureja montana|Satureia montana|savory +satureja|1 +(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus +satureja acinos|1 +(noun)|basil thyme|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb|herbaceous plant +satureja calamintha glandulosa|1 +(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +satureja calamintha officinalis|1 +(noun)|common calamint|Calamintha sylvatica|Satureja calamintha officinalis|calamint +satureja douglasii|1 +(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb|herbaceous plant +satureja grandiflora|1 +(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint +satureja hortensis|1 +(noun)|summer savory|Satureja hortensis|Satureia hortensis|savory +satureja montana|1 +(noun)|winter savory|Satureja montana|Satureia montana|savory +satureja nepeta|1 +(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint +satureja vulgaris|1 +(noun)|wild basil|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb|herbaceous plant +saturn|2 +(noun)|Saturn|Jovian planet|gas giant +(noun)|Saturn|Roman deity +saturnalia|2 +(noun)|Saturnalia|festival|fete +(noun)|orgy|debauch|debauchery|riot|bacchanal|bacchanalia|drunken revelry|revel|revelry +saturnia|1 +(noun)|Saturnia|genus Saturnia|arthropod genus +saturnia pavonia|1 +(noun)|emperor|emperor moth|Saturnia pavonia|saturniid|saturniid moth +saturniid|1 +(noun)|saturniid moth|moth +saturniid moth|1 +(noun)|saturniid|moth +saturniidae|1 +(noun)|Saturniidae|family Saturniidae|arthropod family +saturnine|2 +(adj)|sarcastic +(adj)|dark|dour|glowering|glum|moody|morose|sour|sullen|ill-natured +saturnism|1 +(noun)|lead poisoning|plumbism|illness|unwellness|malady|sickness +satyagraha|1 +(noun)|Satyagraha|passive resistance|nonviolent resistance|nonviolence +satyendra n. bose|1 +(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist +satyendra nath bose|1 +(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist +satyr|2 +(noun)|lecher|lech|letch|pervert|deviant|deviate|degenerate +(noun)|forest god|Greek deity +satyr orchid|1 +(noun)|Coeloglossum bracteatum|orchid|orchidaceous plant +satyr play|1 +(noun)|play|drama|dramatic play +satyriasis|1 +(noun)|sexual desire|concupiscence|physical attraction +satyric|1 +(adj)|satyrical|Greek deity +satyrical|1 +(adj)|satyric|Greek deity +satyridae|1 +(noun)|Satyridae|family Satyridae|arthropod family +sauce|4 +(noun)|condiment +(verb)|act|behave|do +(verb)|season|flavor|flavour +(verb)|change|alter|modify +sauce-alone|1 +(noun)|garlic mustard|hedge garlic|jack-by-the-hedge|Alliaria officinalis|crucifer|cruciferous plant +sauce albert|1 +(noun)|horseradish sauce|sauce Albert|sauce +sauce chausseur|1 +(noun)|hunter's sauce|sauce +sauce espagnole|1 +(noun)|brown sauce|sauce Espagnole|sauce +sauce espanole|1 +(noun)|espanole|sauce +sauce louis|1 +(noun)|sauce Louis|dressing|salad dressing +sauce verte|1 +(noun)|green mayonnaise|mayonnaise|mayo +sauce vinaigrette|1 +(noun)|French dressing|vinaigrette|dressing|salad dressing +sauceboat|1 +(noun)|gravy boat|gravy holder|boat|dish +saucepan|1 +(noun)|pan|cooking pan +saucepot|1 +(noun)|pot +saucer|4 +(noun)|disk|disc|round shape +(noun)|flatware +(noun)|dish|dish aerial|dish antenna|directional antenna +(noun)|discus|disk|disc|sports equipment|sporting goods +saucer-eyed|1 +(adj)|round-eyed|eyed +saucer magnolia|1 +(noun)|Chinese magnolia|Magnolia soulangiana|magnolia +saucily|2 +(adv)|perkily +(adv)|impertinently|pertly|freshly|impudently +sauciness|1 +(noun)|impertinence|perkiness|pertness|archness|playfulness|fun +saucy|2 +(adj)|impertinent|irreverent|pert|spirited +(adj)|fresh|impertinent|impudent|overbold|smart|sassy|forward +saudi|2 +(adj)|Saudi-Arabian|Saudi|Asian country|Asian nation +(noun)|Saudi|Saudi Arabian|Arab|Arabian +saudi-arabian|1 +(adj)|Saudi-Arabian|Saudi|Asian country|Asian nation +saudi arabia|1 +(noun)|Saudi Arabia|Kingdom of Saudi Arabia|Asian country|Asian nation +saudi arabian|1 +(noun)|Saudi|Saudi Arabian|Arab|Arabian +saudi arabian monetary unit|1 +(noun)|Saudi Arabian monetary unit|monetary unit +saudi arabian riyal|1 +(noun)|Saudi Arabian riyal|riyal|Saudi Arabian monetary unit +sauerbraten|1 +(noun)|dish +sauerkraut|1 +(noun)|dish +sauk|1 +(noun)|Sauk|Sac|Algonquian|Algonquin +saul|2 +(noun)|Saul|king|male monarch +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +saul bellow|1 +(noun)|Bellow|Saul Bellow|writer|author +saul of tarsus|1 +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +saul steinberg|1 +(noun)|Steinberg|Saul Steinberg|cartoonist +sault sainte marie|1 +(noun)|Sault Sainte Marie|town +sauna|1 +(noun)|sweat room|steam bath|steam room|vapor bath|vapour bath +saunter|3 +(noun)|gait +(noun)|amble|promenade|ramble|stroll|perambulation|walk +(verb)|stroll|walk +saunterer|1 +(noun)|stroller|ambler|pedestrian|walker|footer +saurel|2 +(noun)|horse mackerel|Trachurus trachurus|scad +(noun)|horse mackerel|jack mackerel|Spanish mackerel|Trachurus symmetricus|scad +sauria|1 +(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order +saurian|2 +(adj)|lacertilian +(noun)|diapsid|diapsid reptile +saurischia|1 +(noun)|Saurischia|order Saurischia|animal order +saurischian|1 +(noun)|saurischian dinosaur|dinosaur +saurischian dinosaur|1 +(noun)|saurischian|dinosaur +sauromalus|1 +(noun)|Sauromalus|genus Sauromalus|reptile genus +sauromalus obesus|1 +(noun)|chuckwalla|Sauromalus obesus|iguanid|iguanid lizard +sauropod|1 +(noun)|sauropod dinosaur|saurischian|saurischian dinosaur +sauropod dinosaur|1 +(noun)|sauropod|saurischian|saurischian dinosaur +sauropoda|1 +(noun)|Sauropoda|suborder Sauropoda|animal order +sauropodomorpha|1 +(noun)|Sauropodomorpha|suborder Sauropodomorpha|animal order +sauropterygia|1 +(noun)|Sauropterygia|order Sauropterygia|animal order +saurosuchus|1 +(noun)|Saurosuchus|genus Saurosuchus|reptile genus +saururaceae|1 +(noun)|Saururaceae|family Saururaceae|lizard's-tail family|dicot family|magnoliopsid family +saururus|1 +(noun)|Saururus|genus Saururus|dicot genus|magnoliopsid genus +saururus cernuus|1 +(noun)|lizard's-tail|swamp lily|water dragon|Saururus cernuus|marsh plant|bog plant|swamp plant +saury|1 +(noun)|billfish|Scomberesox saurus|teleost fish|teleost|teleostan +sausage|2 +(noun)|meat +(noun)|blimp|sausage balloon|airship|dirigible +sausage-shaped|1 +(adj)|allantoid|rounded +sausage balloon|1 +(noun)|blimp|sausage|airship|dirigible +sausage curl|1 +(noun)|lock|curl|ringlet|whorl +sausage dog|1 +(noun)|sausage hound|dachshund|dachsie|badger dog +sausage hound|1 +(noun)|sausage dog|dachshund|dachsie|badger dog +sausage meat|1 +(noun)|meat +sausage pizza|1 +(noun)|pizza|pizza pie +sausage roll|1 +(noun)|pastry +saussure|1 +(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist|polyglot +saussurea|1 +(noun)|Saussurea|genus Saussurea|asterid dicot genus +saussurea costus|1 +(noun)|costusroot|Saussurea costus|Saussurea lappa|herb|herbaceous plant +saussurea lappa|1 +(noun)|costusroot|Saussurea costus|Saussurea lappa|herb|herbaceous plant +saute|2 +(adj)|sauteed|cooked +(verb)|fry +sauteed|1 +(adj)|saute|cooked +sauteing|1 +(noun)|frying|cooking|cookery|preparation +sauterne|1 +(noun)|Sauterne|Sauternes|white wine +sauternes|2 +(noun)|Sauterne|Sauternes|white wine +(noun)|Sauterne|Sauternes|white wine +sauvignon blanc|2 +(noun)|Sauvignon blanc|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Sauvignon blanc|white wine +sauvignon grape|1 +(noun)|Sauvignon grape|vinifera|vinifera grape|common grape vine|Vitis vinifera +savage|8 +(adj)|barbarous|brutal|cruel|fell|roughshod|vicious|inhumane +(adj)|feral|ferine|wild |untamed +(adj)|barbarian|barbaric|uncivilized|uncivilised|wild|noncivilized |noncivilised +(adj)|ferocious|fierce|furious|violent +(noun)|barbarian|primitive|primitive person +(noun)|beast|wolf|brute|wildcat|attacker|aggressor|assailant|assaulter +(verb)|assail|assault|set on|attack +(verb)|pillory|crucify|knock|criticize|criticise|pick apart +savagely|1 +(adv)|viciously|brutally +savageness|1 +(noun)|ferociousness|brutality|viciousness|savagery|cruelty|cruelness|harshness +savagery|2 +(noun)|ferociousness|brutality|viciousness|savageness|cruelty|cruelness|harshness +(noun)|brutality|barbarity|barbarism|atrocity|inhumanity +savanna|1 +(noun)|savannah|grassland +savannah|3 +(noun)|Savannah|city|metropolis|urban center|port +(noun)|Savannah|Savannah River|river +(noun)|savanna|grassland +savannah river|1 +(noun)|Savannah|Savannah River|river +savant|1 +(noun)|initiate|learned person|pundit|scholar|scholarly person|student +savara|2 +(noun)|Savara|Dravidian +(noun)|Savara|South-Central Dravidian +savarin|1 +(noun)|cake +save|10 +(noun)|prevention|bar +(verb)|salvage|salve|relieve|rescue|deliver +(verb)|preserve|keep|hold on +(verb)|carry through|pull through|bring through +(verb)|lay aside|save up +(verb)|make unnecessary|prevent|forestall|foreclose|preclude|forbid +(verb)|deliver|redeem +(verb)|spare|refrain|forbear +(verb)|economize|economise|spend|expend|drop +(verb)|keep open|hold open|keep|reserve|hold|book +save-all|3 +(noun)|receptacle +(noun)|sail|canvas|canvass|sheet +(noun)|net|network|mesh|meshing|meshwork +save up|1 +(verb)|save|lay aside +saved|2 +(adj)|saved |blessed|ransomed|rescued|reclaimed|ransomed|redeemed|salvageable|blessed|blest|found|regenerate +(adj)|protected|preserved +saved up|1 +(adj)|stored-up|stored up|concentrated +saveloy|1 +(noun)|pork sausage +saver|2 +(noun)|rescuer|recoverer|person|individual|someone|somebody|mortal|human|soul +(noun)|owner|possessor +savin|1 +(noun)|dwarf juniper|Juniperus sabina|juniper +saving|5 +(adj)|redemptive|redeeming|good +(adj)|thrifty +(noun)|economy|action +(noun)|rescue|deliverance|delivery|recovery|retrieval +(noun)|preservation|protection +saving grace|1 +(noun)|grace|state of grace|state +savings|4 +(noun)|nest egg|fund|monetary fund +(noun)|economy|saving|action +(noun)|rescue|deliverance|delivery|saving|recovery|retrieval +(noun)|preservation|saving|protection +savings account|1 +(noun)|bank account +savings account trust|1 +(noun)|savings bank trust|trust account|trustee account|Totten trust|trust +savings and loan|1 +(noun)|savings and loan association|thrift institution +savings and loan association|1 +(noun)|savings and loan|thrift institution +savings bank|2 +(noun)|thrift institution +(noun)|coin bank|money box|bank|container +savings bank trust|1 +(noun)|savings account trust|trust account|trustee account|Totten trust|trust +savings bond|1 +(noun)|government bond +savior|2 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(noun)|saviour|rescuer|deliverer|benefactor|helper +saviour|2 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +(noun)|savior|rescuer|deliverer|benefactor|helper +savitar|1 +(noun)|Savitar|Hindu deity +savoir-faire|1 +(noun)|address|tact|tactfulness +savonarola|1 +(noun)|Savonarola|Girolamo Savonarola|Dominican|Black Friar|Blackfriar|friar preacher|reformer|reformist|crusader|meliorist +savor|5 +(noun)|relish|flavor|flavour|sapidity|savour|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(verb)|enjoy|bask|relish|savour +(verb)|taste|savour +(verb)|savour|taste +(verb)|savour|season|flavor|flavour +savoriness|1 +(noun)|flavorsomeness|flavoutsomeness|appetizingness|appetisingness +savoring|1 +(noun)|tasting|savouring|relishing|degustation|eating|feeding +savorless|1 +(adj)|bland|flat|flavorless|flavourless|insipid|savourless|vapid|tasteless +savorlessness|1 +(noun)|flavorlessness|flavourlessness|savourlessness|tastelessness|unappetizingness|unappetisingness +savory|7 +(adj)|savory |savoury|inoffensive +(adj)|piquant|savoury|spicy|zesty|tasteful +(adj)|mouth-watering|savoury|tasty|appetizing |appetising +(noun)|herb|herbaceous plant +(noun)|Micromeria juliana|herb|herbaceous plant +(noun)|savoury|herb +(noun)|savoury|dainty|delicacy|goody|kickshaw|treat +savour|5 +(noun)|relish|flavor|flavour|sapidity|savor|smack|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(verb)|taste|savor +(verb)|savor|season|flavor|flavour +(verb)|savor|taste +(verb)|enjoy|bask|relish|savor +savouring|1 +(noun)|tasting|savoring|relishing|degustation|eating|feeding +savourless|1 +(adj)|bland|flat|flavorless|flavourless|insipid|savorless|vapid|tasteless +savourlessness|1 +(noun)|flavorlessness|flavourlessness|savorlessness|tastelessness|unappetizingness|unappetisingness +savoury|5 +(adj)|savory |inoffensive +(adj)|piquant|savory|spicy|zesty|tasteful +(adj)|mouth-watering|savory|tasty|appetizing |appetising +(noun)|savory|herb +(noun)|savory|dainty|delicacy|goody|kickshaw|treat +savoy|1 +(noun)|savoy cabbage|head cabbage +savoy cabbage|2 +(noun)|head cabbage|head cabbage plant|Brassica oleracea capitata +(noun)|savoy|head cabbage +savoyard|2 +(noun)|Savoyard|performer|performing artist +(noun)|Savoyard|Frenchman|Frenchwoman|French person +savvy|2 +(noun)|understanding|apprehension|discernment|knowing +(verb)|get the picture|comprehend|dig|grasp|compass|apprehend|understand +saw|28 +(noun)|proverb|adage|byword|saying|expression|locution +(noun)|hand tool +(noun)|power saw|sawing machine|power tool +(verb)|cut +(verb)|see|perceive|comprehend +(verb)|understand|realize|realise|see +(verb)|witness|find|see|experience|undergo|see|go through +(verb)|visualize|visualise|envision|project|fancy|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|see|consider|reckon|view|regard|think|believe|consider|conceive +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +(verb)|watch|view|see|catch|take in|watch +(verb)|determine|check|find out|see|ascertain|watch|learn +(verb)|meet|ran into|encounter|run across|come across|see +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure|verify +(verb)|see|visit|call in|call +(verb)|see|visit|call in|call +(verb)|visit|see|tour +(verb)|attend|take care|look|see|care|give care +(verb)|see|receive|take in|invite +(verb)|go steady|go out|date|see|consort|associate|affiliate|assort +(verb)|see|see +(verb)|see|consider|debate|moot|turn over|deliberate +(verb)|see|detect|observe|find|discover|notice +(verb)|examine|see +(verb)|experience|undergo|see|go through|participate|take part +(verb)|see|escort|accompany +(verb)|see|bet|wager|play +(verb)|interpret|construe|see|understand +saw-toothed|1 +(adj)|serrate|serrated|toothed|notched|rough +saw log|1 +(noun)|log +saw logs|1 +(verb)|snore|saw wood|breathe|take a breath|respire|suspire +saw palmetto|1 +(noun)|scrub palmetto|Serenoa repens|fan palm +saw set|1 +(noun)|tool +saw wood|1 +(verb)|snore|saw logs|breathe|take a breath|respire|suspire +sawan|1 +(noun)|Sawan|Sravana|Hindu calendar month +sawbill|1 +(noun)|merganser|fish duck|sheldrake|sea duck +sawbones|1 +(noun)|surgeon|operating surgeon|doctor|doc|physician|MD|Dr.|medico +sawbuck|1 +(noun)|sawhorse|horse|buck|framework|frame|framing +sawdust|1 +(noun)|wood +sawdust doll|1 +(noun)|doll|dolly +sawdust saloon|1 +(noun)|barroom|bar|saloon|ginmill|taproom +sawed-off|2 +(adj)|pint-size|pint-sized|runty|sawn-off|short +(adj)|sawn-off|shortened|short +sawed-off shotgun|1 +(noun)|shotgun|scattergun +sawfish|1 +(noun)|ray +sawfly|1 +(noun)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +sawhorse|1 +(noun)|horse|sawbuck|buck|framework|frame|framing +sawing machine|1 +(noun)|power saw|saw|power tool +sawm|1 +(noun)|pillar of Islam|abstinence +sawmill|2 +(noun)|power saw|saw|sawing machine +(noun)|lumbermill|factory|mill|manufacturing plant|manufactory +sawn-off|2 +(adj)|pint-size|pint-sized|runty|sawed-off|short +(adj)|sawed-off|shortened|short +sawpit|1 +(noun)|pit|cavity +sawtooth|1 +(noun)|serration +sawwort|1 +(noun)|Serratula tinctoria|herb|herbaceous plant +sawyer|2 +(noun)|laborer|manual laborer|labourer|jack +(noun)|sawyer beetle|long-horned beetle|longicorn|longicorn beetle +sawyer beetle|1 +(noun)|sawyer|long-horned beetle|longicorn|longicorn beetle +sax|2 +(noun)|Sax|Adolphe Sax|maker|shaper +(noun)|saxophone|single-reed instrument|single-reed woodwind +saxatile|1 +(adj)|saxicolous|saxicoline|rock plant +saxe|2 +(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general|full general|marshal|marshall +(noun)|Saxony|Sachsen|Saxe|geographical area|geographic area|geographical region|geographic region +saxe-coburg-gotha|1 +(noun)|Saxe-Coburg-Gotha|dynasty|royalty|royal family|royal line|royal house +saxe-gothea|2 +(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus +(noun)| +saxe-gothea conspicua|1 +(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer|coniferous tree +saxegothea|1 +(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus +saxhorn|1 +(noun)|brass +saxicola|1 +(noun)|Saxicola|genus Saxicola|bird genus +saxicola rubetra|1 +(noun)|whinchat|Saxicola rubetra|Old World chat|chat +saxicola torquata|1 +(noun)|stonechat|Saxicola torquata|Old World chat|chat +saxicoline|1 +(adj)|saxicolous|saxatile|rock plant +saxicolous|1 +(adj)|saxatile|saxicoline|rock plant +saxicolous plant|1 +(noun)|rupestral plant|rupestrine plant|rupicolous plant|rock plant +saxifraga|1 +(noun)|Saxifraga|genus Saxifraga|rosid dicot genus +saxifraga aizoides|1 +(noun)|yellow mountain saxifrage|Saxifraga aizoides|saxifrage|breakstone|rockfoil +saxifraga granulata|1 +(noun)|meadow saxifrage|fair-maids-of-France|Saxifraga granulata|saxifrage|breakstone|rockfoil +saxifraga hypnoides|1 +(noun)|mossy saxifrage|Saxifraga hypnoides|saxifrage|breakstone|rockfoil +saxifraga occidentalis|1 +(noun)|western saxifrage|Saxifraga occidentalis|saxifrage|breakstone|rockfoil +saxifraga oppositifolia|1 +(noun)|purple saxifrage|Saxifraga oppositifolia|saxifrage|breakstone|rockfoil +saxifraga sarmentosam|1 +(noun)|strawberry geranium|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage|breakstone|rockfoil +saxifraga stellaris|1 +(noun)|star saxifrage|starry saxifrage|Saxifraga stellaris|saxifrage|breakstone|rockfoil +saxifraga stolonifera|1 +(noun)|strawberry geranium|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage|breakstone|rockfoil +saxifragaceae|1 +(noun)|Saxifragaceae|family Saxifragaceae|saxifrage family|rosid dicot family +saxifrage|1 +(noun)|breakstone|rockfoil|herb|herbaceous plant +saxifrage family|1 +(noun)|Saxifragaceae|family Saxifragaceae|rosid dicot family +saxist|1 +(noun)|saxophonist|musician|instrumentalist|player +saxitoxin|1 +(noun)|neurotoxin|neurolysin +saxo grammaticus|1 +(noun)|Saxo Grammaticus|historian|historiographer +saxon|2 +(adj)|Saxon|European +(noun)|Saxon|European +saxony|1 +(noun)|Saxony|Sachsen|Saxe|geographical area|geographic area|geographical region|geographic region +saxophone|1 +(noun)|sax|single-reed instrument|single-reed woodwind +saxophonist|1 +(noun)|saxist|musician|instrumentalist|player +say|11 +(noun)|opportunity|chance +(verb)|state|tell|express|verbalize|verbalise|utter|give tongue to +(verb)|allege|aver|assert|asseverate|maintain +(verb)|suppose|speculate +(verb)|read|have|feature +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|order|tell|enjoin|request +(verb)|pronounce|articulate|enounce|sound out|enunciate +(verb)|recite +(verb)|convey|impart +(verb)|read|register|show|record +say-so|3 +(noun)|affirmation|assertion|statement +(noun)|pronouncement|dictum|declaration +(noun)|authority|authorization|authorisation|dominance|control +say farewell|1 +(verb)|greet|recognize|recognise +sayanci|1 +(noun)|Zaar|Sayanci|West Chadic +sayeret|1 +(noun)|Sayeret Matkal|Sayeret Mat'kal|commando +sayeret mat'kal|1 +(noun)|Sayeret Matkal|Sayeret Mat'kal|sayeret|commando +sayeret matkal|1 +(noun)|Sayeret Matkal|Sayeret Mat'kal|sayeret|commando +sayers|1 +(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer|author +saying|1 +(noun)|expression|locution|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +sayonara|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|so long|farewell|word of farewell +sayornis|1 +(noun)|Sayornis|genus Sayornis|bird genus +sayornis phoebe|1 +(noun)|phoebe|phoebe bird|Sayornis phoebe|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +sazerac|1 +(noun)|Sazerac|cocktail +sb|2 +(noun)|antimony|Sb|atomic number 51|metallic element|metal +(noun)|Bachelor of Science|BS|SB|bachelor's degree|baccalaureate +sba|1 +(noun)|Small Business Administration|SBA|independent agency +sbe|1 +(noun)|south by east|SbE|compass point|point +sbw|1 +(noun)|south by west|SbW|compass point|point +sc|3 +(noun)|scandium|Sc|atomic number 21|metallic element|metal +(noun)|South Carolina|Palmetto State|SC|American state +(noun)|Security Council|SC|council +scab|4 +(noun)|strikebreaker|blackleg|rat|worker +(noun)|solid body substance +(verb)|heal +(verb)|rat|blackleg|work|do work +scabbard|1 +(noun)|sheath +scabby|1 +(adj)|rough |unsmooth +scabicide|1 +(noun)|pesticide +scabies|1 +(noun)|itch|infection +scabiosa|1 +(noun)|scabious|flower +scabiosa arvensis|1 +(noun)|field scabious|Scabiosa arvensis|scabious|scabiosa +scabiosa atropurpurea|1 +(noun)|sweet scabious|pincushion flower|mournful widow|Scabiosa atropurpurea|scabious|scabiosa +scabious|1 +(noun)|scabiosa|flower +scabrous|2 +(adj)|lepidote|leprose|scaly|scurfy|rough |unsmooth +(adj)|dirty +scad|1 +(noun)|carangid fish|carangid +scads|2 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|lashings|large indefinite quantity|large indefinite amount +(noun)|scad|carangid fish|carangid +scaffold|3 +(noun)|platform +(noun)|arrangement +(verb)|hold|support|sustain|hold up +scaffolding|1 +(noun)|staging|system +scalability|1 +(noun)|quantifiability|measurability +scalable|1 +(adj)|scalable |ascendable|ascendible|climbable +scalage|2 +(noun)|estimate|estimation +(noun)|scaling +scalar|2 +(adj)|magnitude relation|quantitative relation +(noun)|variable|variable quantity +scalar field|1 +(noun)|field +scalar matrix|1 +(noun)|diagonal matrix +scalar product|1 +(noun)|inner product|dot product|real number|real +scalawag|3 +(noun)|scallywag|bad person +(noun)|rogue|knave|rascal|rapscallion|scallywag|varlet|villain|scoundrel +(noun)|imp|scamp|monkey|rascal|rapscallion|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +scald|6 +(noun)|burn +(noun)|burn +(verb)|blister|whip|attack|round|assail|lash out|snipe|assault +(verb)|process|treat +(verb)|heat|heat up +(verb)|burn +scalded milk|1 +(noun)|milk +scalding|1 +(adj)|scathing|blistering|vituperative|critical +scale|18 +(noun)|scale of measurement|graduated table|ordered series|standard|criterion|measure|touchstone +(noun)|magnitude relation|quantitative relation +(noun)|proportion|proportionality +(noun)|indicator +(noun)|scale leaf|leaf|leafage|foliage +(noun)|scurf|exfoliation|bit|chip|flake|fleck|scrap +(noun)|musical scale|musical notation +(noun)|weighing machine|measuring instrument|measuring system|measuring device +(noun)|plate|shell|shield +(noun)|covering|natural covering|cover +(verb)|measure +(verb)|model|pattern +(verb)|take +(verb)|surmount|reach|make|attain|hit|arrive at|gain +(verb)|climb|climb up|mount|go up +(verb)|descale|remove|take|take away|withdraw +(verb)|quantify|measure +(verb)|size +scale down|2 +(verb)|rescale|proportion +(verb)|reduce|shrink|reduce +scale factor|1 +(noun)|multiplier|multiplier factor +scale fern|1 +(noun)|scaly fern|Asplenium ceterach|Ceterach officinarum|fern +scale insect|1 +(noun)|coccid insect +scale leaf|1 +(noun)|scale|leaf|leafage|foliage +scale moss|1 +(noun)|leafy liverwort|liverwort +scale of measurement|1 +(noun)|scale|graduated table|ordered series|standard|criterion|measure|touchstone +scale up|1 +(verb)|proportion|rescale +scale value|1 +(noun)|value +scale wax|1 +(noun)|paraffin scale|wax +scaled|2 +(adj)|scaly|scaley|armored |armoured +(adj)|armored |armoured +scaleless|1 +(adj)|unarmored |unarmoured +scalelike|1 +(adj)|close +scalene|2 +(adj)|triangle|trigon|trilateral +(adj)|skeletal muscle|striated muscle +scalene muscle|1 +(noun)|scalenus|musculus scalenus|skeletal muscle|striated muscle +scalene triangle|1 +(noun)|triangle|trigon|trilateral +scalenus|1 +(noun)|scalene muscle|musculus scalenus|skeletal muscle|striated muscle +scalenus syndrome|1 +(noun)|syndrome +scaler|1 +(noun)|pulse counter +scaley|1 +(adj)|scaly|scaled|armored |armoured +scalic|1 +(adj)|musical notation +scaling|3 +(noun)|grading|order|ordering +(noun)|measurement|measuring|measure|mensuration +(noun)|climb|mount +scaling ladder|1 +(noun)|ladder +scallion|2 +(noun)|leek|Allium porrum|alliaceous plant +(noun)|green onion|onion +scallop|8 +(noun)|crenation|crenature|crenel|crenelle|curve|curved shape +(noun)|scollop|escallop|shellfish +(noun)|cutlet|scollop|escallop|piece|slice +(noun)|scollop|escallop|bivalve|pelecypod|lamellibranch +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|scollop|hollow|hollow out|core out +(verb)|scollop|fish +(verb)|scollop|shape|form +scallop shell|1 +(noun)|shell +scalloped|1 +(adj)|crenate|crenated|rough +scallopine|1 +(noun)|scallopini|dish +scallopini|1 +(noun)|scallopine|dish +scallywag|3 +(noun)|scalawag|bad person +(noun)|rogue|knave|rascal|rapscallion|scalawag|varlet|villain|scoundrel +(noun)|imp|scamp|monkey|rascal|rapscallion|scalawag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +scalp|3 +(noun)|skin|tegument|cutis +(verb)|sell +(verb)|remove|take|take away|withdraw +scalp lock|1 +(noun)|hairdo|hair style|coiffure +scalpel|1 +(noun)|surgical knife +scalper|1 +(noun)|speculator|plunger +scaly|2 +(adj)|lepidote|leprose|scabrous|scurfy|rough |unsmooth +(adj)|scaley|scaled|armored |armoured +scaly anteater|1 +(noun)|pangolin|anteater|placental|placental mammal|eutherian|eutherian mammal +scaly fern|1 +(noun)|scale fern|Asplenium ceterach|Ceterach officinarum|fern +scaly lentinus|1 +(noun)|Lentinus lepideus|fungus +scaly pholiota|1 +(noun)|Pholiota squarrosa|agaric +scaly polypore|1 +(noun)|Polyporus squamosus|polypore|pore fungus|pore mushroom +scam|2 +(noun)|cozenage|swindle|cheat|rig +(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|mulct|gyp|con|cheat|rip off|chisel +scammer|1 +(noun)|swindler|chiseller|chiseler|gouger|grifter|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +scammony|3 +(noun)|Ipomoea orizabensis|morning glory +(noun)|natural resin +(noun)|Convolvulus scammonia|convolvulus +scammonyroot|1 +(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +scamp|2 +(noun)|imp|monkey|rascal|rapscallion|scalawag|scallywag|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(verb)|perform|execute|do +scamper|2 +(noun)|scramble|scurry|haste|hurry|rush|rushing +(verb)|scurry|skitter|scuttle|run +scampi|1 +(noun)|dish +scampo|1 +(noun)|Norwegian lobster|langoustine|lobster +scan|9 +(noun)|examination|scrutiny +(noun)|CAT scan|picture|image|icon|ikon +(verb)|examine|see +(verb)|skim|rake|glance over|run down|examine|see +(verb)|search +(verb)|conform +(verb)|move|displace +(verb)|declaim|recite +(verb)|read|interpret|construe|see +scandal|2 +(noun)|dirt|malicious gossip|gossip|comment|scuttlebutt +(noun)|outrage|trouble +scandalisation|2 +(noun)|scandalization|condition|status +(noun)|scandalization|outrage|insult|affront +scandalise|1 +(verb)|shock|offend|scandalize|appal|appall|outrage|disgust|revolt|nauseate|sicken|churn up +scandalization|2 +(noun)|scandalisation|condition|status +(noun)|scandalisation|outrage|insult|affront +scandalize|1 +(verb)|shock|offend|scandalise|appal|appall|outrage|disgust|revolt|nauseate|sicken|churn up +scandalmonger|1 +(noun)|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +scandalmongering|2 +(adj)|sensationalistic|yellow|sensational +(noun)|gossiping|gossipmongering +scandalous|1 +(adj)|disgraceful|shameful|shocking|immoral +scandalousness|1 +(noun)|shamefulness|disgracefulness|ignominiousness +scandent|1 +(adj)|ascending +scandentia|1 +(noun)|Scandentia|order Scandentia|animal order +scandinavia|2 +(noun)|Scandinavia|Scandinavian Peninsula|peninsula +(noun)|Scandinavia|geographical area|geographic area|geographical region|geographic region +scandinavian|3 +(adj)|Scandinavian|Norse|geographical area|geographic area|geographical region|geographic region +(noun)|Scandinavian|Norse|Northman|European +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +scandinavian country|1 +(noun)|Scandinavian country|Scandinavian nation|European country|European nation +scandinavian language|1 +(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic|Germanic language +scandinavian lox|1 +(noun)|Scandinavian lox|lox +scandinavian nation|1 +(noun)|Scandinavian country|Scandinavian nation|European country|European nation +scandinavian peninsula|1 +(noun)|Scandinavia|Scandinavian Peninsula|peninsula +scandium|1 +(noun)|Sc|atomic number 21|metallic element|metal +scanner|4 +(noun)|reviewer|referee|reader +(noun)|digital scanner|image scanner|electronic device|data input device|input device +(noun)|dish|dish aerial|dish antenna|saucer +(noun)|electronic scanner|detector +scanning|2 +(noun)|photography +(noun)|reproduction|replication +scansion|1 +(noun)|meter|metre|measure|beat|cadence +scant|4 +(adj)|light|short|insufficient |deficient +(verb)|skimp|work +(verb)|skimp|restrict +(verb)|stint|skimp|supply|provide|render|furnish +scantily|1 +(adv)|barely +scantily clad|1 +(adj)|half-clothed|underclothed|unclothed +scantiness|1 +(noun)|meagerness|meagreness|poorness|scantness|exiguity|insufficiency|inadequacy|deficiency +scantling|1 +(noun)|stud|upright|vertical +scantness|1 +(noun)|meagerness|meagreness|poorness|scantiness|exiguity|insufficiency|inadequacy|deficiency +scanty|2 +(adj)|bare|spare|meager |meagre|meagerly +(noun)|pantie|panty|step-in|underpants +scape|2 +(noun)|flower stalk|stalk|stem +(noun)|shaft|upright|vertical +scapegoat|1 +(noun)|whipping boy|victim +scapegrace|1 +(noun)|black sheep|reprobate|miscreant +scaphiopus|1 +(noun)|Scaphiopus|genus Scaphiopus|amphibian genus +scaphiopus bombifrons|1 +(noun)|plains spadefoot|Scaphiopus bombifrons|spadefoot|spadefoot toad +scaphiopus hammondii|1 +(noun)|western spadefoot|Scaphiopus hammondii|spadefoot|spadefoot toad +scaphiopus multiplicatus|1 +(noun)|southern spadefoot|Scaphiopus multiplicatus|spadefoot|spadefoot toad +scaphocephaly|1 +(noun)|deformity|malformation|misshapenness|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +scaphoid|1 +(adj)|navicular|formed +scaphoid bone|1 +(noun)|os scaphoideum|navicular|carpal bone|carpal|wrist bone +scaphopod|1 +(noun)|mollusk|mollusc|shellfish +scaphopoda|1 +(noun)|Scaphopoda|class Scaphopoda|class +scaphosepalum|1 +(noun)|Scaphosepalum|genus Scaphosepalum|monocot genus|liliopsid genus +scapose|1 +(adj)|leafless +scapula|1 +(noun)|shoulder blade|shoulder bone|bone|os +scapular|3 +(adj)|bone|os +(noun)|feather|plume|plumage +(noun)|scapulary|garment +scapulary|1 +(noun)|scapular|garment +scapulohumeral|1 +(adj)|bone|os|arm bone +scar|3 +(noun)|cicatrix|cicatrice|symptom +(noun)|scratch|scrape|mark|blemish|defect|mar +(verb)|mark|pock|pit|deface|disfigure|blemish +scar tissue|1 +(noun)|connective tissue +scarab|1 +(noun)|scarabaeus|Scarabaeus sacer|dung beetle +scarabaean|1 +(noun)|scarabaeid beetle|scarabaeid|lamellicorn beetle +scarabaeid|1 +(noun)|scarabaeid beetle|scarabaean|lamellicorn beetle +scarabaeid beetle|1 +(noun)|scarabaeid|scarabaean|lamellicorn beetle +scarabaeidae|1 +(noun)|Scarabaeidae|family Scarabaeidae|arthropod family +scarabaeus|1 +(noun)|scarab|Scarabaeus sacer|dung beetle +scarabaeus sacer|1 +(noun)|scarab|scarabaeus|Scarabaeus sacer|dung beetle +scaramouch|1 +(noun)|Scaramouch|Scaramouche|fictional character|fictitious character|character +scaramouche|1 +(noun)|Scaramouch|Scaramouche|fictional character|fictitious character|character +scarce|3 +(adj)|insufficient |deficient +(adj)|scarce |rare|tight|meager|meagre|meagerly +(adv)|barely|hardly|just|scarcely +scarcely|2 +(adv)|barely|hardly|just|scarce +(adv)|hardly +scarceness|1 +(noun)|scarcity|insufficiency|inadequacy|deficiency +scarcity|1 +(noun)|scarceness|insufficiency|inadequacy|deficiency +scardinius|1 +(noun)|Scardinius|genus Scardinius|fish genus +scardinius erythrophthalmus|1 +(noun)|rudd|Scardinius erythrophthalmus|cyprinid|cyprinid fish +scare|4 +(noun)|panic|anxiety|anxiousness +(noun)|panic attack|fear|fearfulness|fright +(verb)|frighten|fright|affright|stimulate|shake|shake up|excite|stir +(verb)|daunt|dash|scare off|pall|frighten off|scare away|frighten away|intimidate|restrain +scare away|1 +(verb)|daunt|dash|scare off|pall|frighten off|frighten away|scare|intimidate|restrain +scare off|1 +(verb)|daunt|dash|pall|frighten off|scare away|frighten away|scare|intimidate|restrain +scare quote|1 +(noun)|quotation mark|quote|inverted comma +scarecrow|1 +(noun)|straw man|strawman|bird-scarer|scarer|effigy|image|simulacrum +scarecrowish|1 +(adj)|thin |lean +scared|1 +(adj)|frightened|afraid +scaremonger|1 +(noun)|stirrer|alarmist +scarer|1 +(noun)|scarecrow|straw man|strawman|bird-scarer|effigy|image|simulacrum +scarey|1 +(adj)|chilling|scary|shivery|shuddery|alarming +scarf|5 +(noun)|garment +(noun)|scarf joint|joint +(verb)|masturbate|wank|fuck off|she-bop|jack off|jerk off +(verb)|join|bring together +(verb)|wear|put on|get into|don|assume +scarf bandage|1 +(noun)|sling|triangular bandage|bandage|patch +scarf joint|1 +(noun)|scarf|joint +scarf out|1 +(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|eat +scarface|1 +(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster|mobster +scarfpin|1 +(noun)|tie tack|tiepin|pin +scaridae|1 +(noun)|Scaridae|family Scaridae|fish family +scarify|3 +(verb)|puncture +(verb)|score|nock|mark +(verb)|loosen +scarily|1 +(adv)|frighteningly +scarlatina|1 +(noun)|scarlet fever|contagious disease|contagion +scarlet|2 +(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|chromatic +(noun)|vermilion|orange red|red|redness +scarlet bugler|1 +(noun)|Penstemon centranthifolius|wildflower|wild flower +scarlet bush|1 +(noun)|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia +scarlet clematis|1 +(noun)|Clematis texensis|clematis +scarlet cup|1 +(noun)|Sarcoscypha coccinea|discomycete|cup fungus +scarlet fever|1 +(noun)|scarlatina|contagious disease|contagion +scarlet fritillary|1 +(noun)|Fritillaria recurva|fritillary|checkered lily +scarlet hamelia|1 +(noun)|scarlet bush|coloradillo|Hamelia patens|Hamelia erecta|hamelia +scarlet haw|1 +(noun)|Crataegus biltmoreana|hawthorn|haw +scarlet letter|1 +(noun)|emblem|allegory +scarlet lychnis|1 +(noun)|maltese cross|Lychins chalcedonica|lychnis|catchfly +scarlet maple|1 +(noun)|red maple|swamp maple|Acer rubrum|maple +scarlet musk flower|1 +(noun)|Nyctaginia capitata|flower +scarlet oak|1 +(noun)|Quercus coccinea|oak|oak tree +scarlet pimpernel|1 +(noun)|red pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel +scarlet plume|1 +(noun)|Euphorbia fulgens|spurge +scarlet runner|3 +(noun)|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +(noun)|running postman|Kennedia prostrata|coral pea +(noun)|scarlet runner bean|runner bean|English runner bean|green bean +scarlet runner bean|2 +(noun)|scarlet runner|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|bean|bean plant +(noun)|scarlet runner|runner bean|English runner bean|green bean +scarlet strawberry|1 +(noun)|Virginia strawberry|Fragaria virginiana|strawberry +scarlet sumac|1 +(noun)|smooth sumac|vinegar tree|Rhus glabra|sumac|sumach|shumac +scarlet tanager|1 +(noun)|Piranga olivacea|redbird|firebird|tanager +scarlet wisteria tree|1 +(noun)|vegetable hummingbird|Sesbania grandiflora|tree +scarp|2 +(noun)|escarpment|slope|incline|side +(noun)|escarpment|escarp|protective embankment|fortification|munition +scarper|1 +(verb)|run|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +scarred|2 +(adj)|marked +(adj)|marred|blemished +scartella|1 +(noun)|Scartella|genus Scartella|fish genus +scartella cristata|1 +(noun)|Molly Miller|Scartella cristata|blenny|combtooth blenny +scary|1 +(adj)|chilling|scarey|shivery|shuddery|alarming +scat|1 +(noun)|scat singing|singing|vocalizing|jazz +scat singing|1 +(noun)|scat|singing|vocalizing|jazz +scathe|1 +(noun)|damage|harm|hurt|change of integrity +scathing|1 +(adj)|blistering|scalding|vituperative|critical +scathingly|1 +(adv)|unsparingly +scatological|1 +(adj)|dirty +scatology|2 +(noun)|obscenity|vulgarism|dirty word +(noun)|chemical analysis|qualitative analysis +scatophagy|1 +(noun)|eating|feeding +scatter|8 +(noun)|spread|distribution|dispersion +(noun)|scattering|strewing|spread|spreading +(verb)|disperse|dissipate|dispel|break up|separate|divide +(verb)|disperse|dissipate|spread out|separate|part|split +(verb)|sprinkle|dot|dust|disperse|discharge +(verb)|sow|sough|seed +(verb)|break up|disperse|change integrity +(verb)|spread|spread out|circulate|pass around|pass on|distribute +scatter pin|1 +(noun)|pin +scatter rug|1 +(noun)|throw rug|rug|carpet|carpeting +scatterbrain|1 +(noun)|forgetful person|simpleton|simple +scatterbrained|2 +(adj)|rattlebrained|rattlepated|scatty|foolish +(adj)|flighty|head-in-the-clouds|irresponsible +scattered|4 +(adj)|distributed +(adj)|isolated|stray|sporadic +(adj)|strewn|distributed +(adj)|confused|disconnected|disjointed|disordered|garbled|illogical|unconnected|incoherent +scattergood|1 +(noun)|spendthrift|spend-all|spender|prodigal|profligate|squanderer +scattergun|1 +(noun)|shotgun|firearm|piece|small-arm +scattering|6 +(adj)|diffusing|diffusive|dispersive|disseminative|disseminating|spreading|distributive +(noun)|natural process|natural action|action|activity +(noun)|sprinkling|small indefinite quantity|small indefinite amount +(noun)|sprinkle|sprinkling|shower|rain shower +(noun)|dispersion|spread|spreading +(noun)|scatter|strewing|spread|spreading +scattershot|1 +(adj)|undiscriminating |indiscriminating +scatty|2 +(adj)|rattlebrained|rattlepated|scatterbrained|foolish +(adj)|absent|absentminded|abstracted|inattentive +scaup|1 +(noun)|scaup duck|bluebill|broadbill|duck +scaup duck|1 +(noun)|scaup|bluebill|broadbill|duck +scavenge|4 +(verb)|clean|make clean +(verb)|salvage|gather|garner|collect|pull together +(verb)|feed|give +(verb)|clean|remove|take|take away|withdraw +scavenger|3 +(noun)|chemical agent +(noun)|magpie|pack rat|hoarder +(noun)|animal|animate being|beast|brute|creature|fauna +scavenger cell|1 +(noun)|phagocyte|somatic cell|vegetative cell +scavenging|2 +(adj)|thrifty +(adj)|gluttonous +scd|1 +(noun)|Doctor of Science|DS|ScD|honorary degree +sceliphron|1 +(noun)|Sceliphron|genus Sceliphron|arthropod genus +sceloglaux|1 +(noun)|Sceloglaux|genus Sceloglaux|bird genus +sceloglaux albifacies|1 +(noun)|laughing owl|laughing jackass|Sceloglaux albifacies|owl|bird of Minerva|bird of night|hooter +sceloporus|1 +(noun)|Sceloporus|genus Sceloporus|reptile genus +sceloporus graciosus|1 +(noun)|sagebrush lizard|Sceloporus graciosus|spiny lizard +sceloporus occidentalis|1 +(noun)|western fence lizard|swift|blue-belly|Sceloporus occidentalis|fence lizard +sceloporus undulatus|1 +(noun)|eastern fence lizard|pine lizard|Sceloporus undulatus|fence lizard +scenario|3 +(noun)|script|book|playscript +(noun)|setting|scene +(noun)|premise|premiss|assumption +scenarist|1 +(noun)|writer|author +scend|1 +(verb)|surge|rise|lift|arise|move up|go up|come up|uprise +scene|10 +(noun)|area|country +(noun)|incident +(noun)|view|aspect|prospect|vista|panorama|visual percept|visual image +(noun)|shot|photograph|photo|exposure|pic +(noun)|picture|situation|state of affairs +(noun)|dramatic composition|dramatic work +(noun)|fit|tantrum|conniption|bad temper|ill temper +(noun)|view|graphic art +(noun)|setting|environment|environs|surroundings|surround +(noun)|scenery|stage set|set +scene-stealer|1 +(noun)|actor|histrion|player|thespian|role player +scene of action|1 +(noun)|arena|playing field|athletic field|playing area|field +scene painter|2 +(noun)|scenic artist|painter +(noun)|painter +scenery|2 +(noun)|scene|stage set|set +(noun)|vicinity|locality|neighborhood|neighbourhood|neck of the woods +sceneshifter|1 +(noun)|shifter|stagehand|stage technician +scenic|2 +(adj)|beautiful +(adj)|stage set|set +scenic artist|1 +(noun)|scene painter|painter +scenic railway|1 +(noun)|railway|railroad|railroad line|railway line|railway system +scent|6 +(noun)|aroma|fragrance|perfume|smell|odor|odour|olfactory sensation|olfactory perception +(noun)|smell|odor|odour|olfactory sensation|olfactory perception +(noun)|olfactory property|smell|aroma|odor|odour|property +(verb)|odorize|odourise|cause to be perceived +(verb)|nose|wind|smell|scent out +(verb)|perfume|groom|neaten +scent out|1 +(verb)|sniff out|smell out|nose out +scented|4 +(adj)|scented +(adj)|perfumed|fragrant +(adj)|odoriferous|odorous|perfumed|sweet|sweet-scented|sweet-smelling|fragrant +(adj)|odorous +scented fern|3 +(noun)|hay-scented|hay-scented fern|boulder fern|Dennstaedtia punctilobula|fern +(noun)|Mohria caffrorum|fern +(noun)|tansy|golden buttons|Tanacetum vulgare|composite|composite plant +scented penstemon|1 +(noun)|balloon flower|Penstemon palmeri|wildflower|wild flower +scented wattle|1 +(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|flame tree|Acacia farnesiana|acacia +scentless|2 +(adj)|scentless +(adj)|odorless |odourless|inodorous +scentless camomile|1 +(noun)|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +scentless false camomile|1 +(noun)|scentless camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +scentless hayweed|1 +(noun)|scentless camomile|scentless false camomile|scentless mayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +scentless mayweed|1 +(noun)|scentless camomile|scentless false camomile|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +scepter|2 +(noun)|sceptre|reign|sovereignty +(noun)|sceptre|verge|wand|staff +sceptered|1 +(adj)|empowered|sceptred|authorized |authorised +sceptic|1 +(noun)|skeptic|doubter|intellectual|intellect +sceptical|2 +(adj)|doubting|questioning|skeptical|distrustful +(adj)|disbelieving|skeptical|unbelieving|incredulous +sceptically|1 +(adv)|skeptically +scepticism|1 +(noun)|agnosticism|skepticism|unbelief|disbelief +sceptre|2 +(noun)|scepter|reign|sovereignty +(noun)|scepter|verge|wand|staff +sceptred|1 +(adj)|empowered|sceptered|authorized |authorised +scet|1 +(noun)|spacecraft event time|SCET|coordinated universal time|UTC +schadenfreude|1 +(noun)|Schadenfreude|delight|delectation +schaffneria|1 +(noun)|Schaffneria|genus Schaffneria|fern genus +schaffneria nigripes|1 +(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern +schedule|4 +(noun)|agenda|docket|plan|program|programme +(noun)|list|listing +(verb)|plan +(verb)|plan +schedule feeding|1 +(noun)|infant feeding +scheduled|1 +(adj)|scheduled |regular +scheduled fire|1 +(noun)|fire|firing +scheduled maintenance|1 +(noun)|care|maintenance|upkeep +scheduled territories|1 +(noun)|sterling area|sterling bloc|bloc|axis +scheduler|1 +(noun)|hardware|computer hardware +scheduling|1 +(noun)|programming|programing|planning +scheele|1 +(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist +scheelite|1 +(noun)|mineral +schefflera|1 +(noun)|Schefflera|genus Schefflera|rosid dicot genus +schefflera actinophylla|1 +(noun)|umbrella tree|Schefflera actinophylla|Brassaia actinophylla|shrub|bush +scheldt|1 +(noun)|Scheldt|Scheldt River|river +scheldt river|1 +(noun)|Scheldt|Scheldt River|river +schema|2 +(noun)|scheme|representation|mental representation|internal representation +(noun)|outline|scheme|plan|program|programme +schematic|2 +(adj)|conventional|formal|nonrepresentational +(noun)|schematic drawing|diagram +schematic drawing|1 +(noun)|schematic|diagram +schematisation|2 +(noun)|schematization|diagramming|representation +(noun)|schematization|reduction|simplification +schematise|1 +(verb)|schematize|change|alter|modify +schematization|2 +(noun)|schematisation|diagramming|representation +(noun)|schematisation|reduction|simplification +schematize|2 +(verb)|create by mental act|create mentally +(verb)|schematise|change|alter|modify +scheme|7 +(noun)|strategy|plan of action +(noun)|dodge|dodging|falsehood|falsity|untruth|false statement +(noun)|system|group|grouping +(noun)|schema|representation|mental representation|internal representation +(noun)|outline|schema|plan|program|programme +(verb)|intrigue|connive|plot +(verb)|plan +scheme arch|1 +(noun)|skeen arch|skene arch|diminished arch|arch +schemer|1 +(noun)|plotter|planner|contriver|deviser +scheming|2 +(adj)|calculating|calculative|conniving|shrewd|hard +(adj)|designing|artful +schemozzle|1 +(noun)|shemozzle|confusion +schenectady|1 +(noun)|Schenectady|city|metropolis|urban center +scheol|1 +(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place|mythical place +scherzo|1 +(noun)|movement +scheuchzeriaceae|1 +(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family|liliopsid family +schiaparelli|2 +(noun)|Schiaparelli|Giovanni Virginio Schiaparelli|astronomer|uranologist|stargazer +(noun)|Schiaparelli|Elsa Schiaparelli|couturier|fashion designer|clothes designer|designer +schick test|1 +(noun)|Schick test|skin test +schiller|1 +(noun)|Schiller|Johann Christoph Friedrich von Schiller|writer|author +schilling|1 +(noun)|Austrian schilling|Austrian monetary unit +schinus|1 +(noun)|Schinus|genus Schinus|dicot genus|magnoliopsid genus +schinus chichita|1 +(noun)|aroeira blanca|Schinus chichita|tree +schinus molle|1 +(noun)|pepper tree|molle|Peruvian mastic tree|Schinus molle|tree +schinus terebinthifolius|1 +(noun)|Brazilian pepper tree|Schinus terebinthifolius|tree +schipperke|1 +(noun)|watchdog|guard dog +schism|1 +(noun)|split|division +schismatic|1 +(adj)|schismatical|division +schismatical|1 +(adj)|schismatic|division +schist|1 +(noun)|metamorphic rock +schistorrhachis|1 +(noun)|spina bifida|rachischisis|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +schistosoma|1 +(noun)|Schistosoma|genus Schistosoma|worm genus +schistosomatidae|1 +(noun)|Schistosomatidae|family Schistosomatidae|worm family +schistosome|1 +(noun)|blood fluke|fluke|trematode|trematode worm +schistosome dermatitis|1 +(noun)|swimmer's itch|dermatitis +schistosomiasis|1 +(noun)|bilharzia|bilharziasis|infestation|infection +schizachyrium|1 +(noun)|Schizachyrium|genus Schizachyrium|monocot genus|liliopsid genus +schizachyrium scoparium|1 +(noun)|broom beard grass|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass +schizaea|1 +(noun)|Schizaea|genus Schizaea|fern genus +schizaea pusilla|1 +(noun)|curly grass|curly grass fern|Schizaea pusilla|fern +schizaeaceae|1 +(noun)|Schizaeaceae|family Schizaeaceae|fern family +schizanthus|1 +(noun)|butterfly flower|poor man's orchid|flower +schizocarp|1 +(noun)|fruit +schizogony|1 +(noun)|fission +schizoid|2 +(adj)|schizophrenic|psychosis +(adj)|neurotic |psychoneurotic +schizomycetes|1 +(noun)|Schizomycetes|class Schizomycetes|class +schizopetalon|1 +(noun)|Schizopetalon walkeri|flower +schizopetalon walkeri|1 +(noun)|schizopetalon|Schizopetalon walkeri|flower +schizophragma|1 +(noun)|Schizophragma|genus Schizophragma|rosid dicot genus +schizophragma hydrangeoides|1 +(noun)|climbing hydrangea|Schizophragma hydrangeoides|shrub|bush +schizophrenia|1 +(noun)|schizophrenic disorder|schizophrenic psychosis|dementia praecox|psychosis +schizophrenic|4 +(adj)|insane +(adj)|schizoid|psychosis +(adj)|hebephrenic|insane +(noun)|psychotic|psychotic person|psycho +schizophrenic disorder|1 +(noun)|schizophrenia|schizophrenic psychosis|dementia praecox|psychosis +schizophrenic psychosis|1 +(noun)|schizophrenia|schizophrenic disorder|dementia praecox|psychosis +schizophyceae|1 +(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family +schizophyta|1 +(noun)|Schizophyta|division Schizophyta|division +schizopoda|1 +(noun)|Schizopoda|animal order +schizosaccharomyces|1 +(noun)|Schizosaccharomyces|genus Schizosaccharomyces|fungus genus +schizosaccharomycetaceae|1 +(noun)|Schizosaccharomycetaceae|family Schizosaccharomycetaceae|fungus family +schizothymia|1 +(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|folie +schizotypal personality|1 +(noun)|personality disorder +schleiden|1 +(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist|histologist +schlemiel|1 +(noun)|shlemiel|simpleton|simple +schlemm's canal|1 +(noun)|canal of Schlemm|Schlemm's canal|sinus venosus sclerae|duct|epithelial duct|canal|channel +schlep|1 +(verb)|shlep|pull along|drag +schlesien|1 +(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area|geographic area|geographical region|geographic region +schlesinger|2 +(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian|historiographer +(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian|historiographer +schliemann|1 +(noun)|Schliemann|Heinrich Schliemann|archeologist|archaeologist +schlimazel|1 +(noun)|shlimazel|unfortunate|unfortunate person +schlock|1 +(noun)|shlock|dreck|merchandise|wares|product +schlockmeister|1 +(noun)|shlockmeister|merchant|merchandiser +schlumbergera|1 +(noun)|Schlumbergera|genus Schlumbergera|caryophylloid dicot genus +schlumbergera baridgesii|1 +(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus +schlumbergera buckleyi|1 +(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus +schlumbergera gaertneri|1 +(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus +schlumbergera truncatus|1 +(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus +schmaltz|1 +(noun)|shmaltz|schmalz|mushiness|mawkishness|sentimentality|drippiness +schmaltzy|1 +(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmalzy|sentimental|slushy|emotional +schmalz|1 +(noun)|schmaltz|shmaltz|mushiness|mawkishness|sentimentality|drippiness +schmalzy|1 +(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|sentimental|slushy|emotional +schmear|1 +(noun)|schmeer|shmear|batch|clutch +schmeer|1 +(noun)|schmear|shmear|batch|clutch +schmegegge|1 +(noun)|shmegegge|nonsense|bunk|nonsensicality|meaninglessness|hokum +schmidt|1 +(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman|solon|national leader +schmidt camera|1 +(noun)|Schmidt telescope|Schmidt camera|reflecting telescope|reflector +schmidt telescope|1 +(noun)|Schmidt telescope|Schmidt camera|reflecting telescope|reflector +schmo|1 +(noun)|schmuck|shmuck|shmo|jerk|dork +schmoose|2 +(noun)|chat|confab|confabulation|schmooze|conversation +(verb)|shmooze|shmoose|schmooze|jawbone|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit +schmooze|2 +(noun)|chat|confab|confabulation|schmoose|conversation +(verb)|shmooze|shmoose|schmoose|jawbone|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit +schmoozer|1 +(noun)|conversationalist|speaker|talker|utterer|verbalizer|verbaliser +schmuck|1 +(noun)|shmuck|schmo|shmo|jerk|dork +schnabel|1 +(noun)|Schnabel|Artur Schnabel|composer|pianist|piano player +schnapps|1 +(noun)|schnaps|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +schnaps|1 +(noun)|schnapps|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +schnauzer|1 +(noun)|terrier +schnecken|1 +(noun)|honey bun|sticky bun|caramel bun|sweet roll|coffee roll +schnittlaugh|1 +(noun)|chives|chive|cive|Allium schoenoprasum|alliaceous plant +schnitzel|1 +(noun)|Wiener schnitzel|dish +schnook|1 +(noun)|shnook|simpleton|simple +schnorchel|1 +(noun)|snorkel|schnorkel|snorkel breather|breather|air passage|air duct|airway +schnorkel|1 +(noun)|snorkel|schnorchel|snorkel breather|breather|air passage|air duct|airway +schnorr|1 +(verb)|shnorr|scrounge|cadge|beg +schnoz|1 +(noun)|beak|honker|hooter|nozzle|snoot|snout|schnozzle|nose|olfactory organ +schnozzle|1 +(noun)|beak|honker|hooter|nozzle|snoot|snout|schnoz|nose|olfactory organ +schoenberg|1 +(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer +schola cantorum|1 +(noun)|choir school|preparatory school|prep school +scholar|3 +(noun)|scholarly person|student|intellectual|intellect +(noun)|learner|assimilator|person|individual|someone|somebody|mortal|human|soul +(noun)|student|pupil|educatee +scholarly|1 +(adj)|scholarly |academic|donnish|pedantic|bookish|studious|erudite|learned|critical|intellectual|profound +scholarly person|1 +(noun)|scholar|student|intellectual|intellect +scholarship|2 +(noun)|aid|economic aid|prize|award +(noun)|eruditeness|erudition|learnedness|learning|encyclopedism|encyclopaedism|education +scholastic|4 +(adj)|educational institution +(adj)|philosophical doctrine|philosophical theory +(noun)|pedant|bookworm|scholar|scholarly person|student +(noun)|Scholastic|philosopher +scholasticism|2 +(noun)|Scholasticism|philosophical doctrine|philosophical theory +(noun)|academicism|academism|traditionalism|traditionality +scholiast|1 +(noun)|scholar|scholarly person|student +schomburgkia|1 +(noun)|Schomburgkia|genus Schomburgkia|monocot genus|liliopsid genus +schonbein|1 +(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist +schonberg|1 +(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer +school|10 +(noun)|educational institution +(noun)|schoolhouse|building|edifice +(noun)|schooling|education +(noun)|educational institution +(noun)|schooltime|school day|time period|period of time|period +(noun)|body +(noun)|shoal|animal group +(verb)|educate +(verb)|educate|train|cultivate|civilize|civilise|polish|refine|fine-tune|down +(verb)|swim +school-age child|1 +(noun)|schoolchild|pupil|young person|youth|younker|spring chicken +school assignment|1 +(noun)|schoolwork|assignment +school bell|1 +(noun)|bell +school board|1 +(noun)|board of education|board +school bus|1 +(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus +school crossing|1 +(noun)|pedestrian crossing|zebra crossing +school day|2 +(noun)|day +(noun)|school|schooltime|time period|period of time|period +school dictionary|1 +(noun)|learner's dictionary|dictionary|lexicon +school district|1 +(noun)|administrative district|administrative division|territorial division +school newspaper|1 +(noun)|school paper|newspaper|paper +school of dentistry|1 +(noun)|dental school|graduate school|grad school +school of law|1 +(noun)|law school|graduate school|grad school +school of medicine|1 +(noun)|medical school|graduate school|grad school +school of music|1 +(noun)|music school|conservatory +school of nursing|1 +(noun)|nursing school|school +school of thought|1 +(noun)|doctrine|philosophy|philosophical system|ism|belief +school paper|1 +(noun)|school newspaper|newspaper|paper +school phobia|1 +(noun)|social phobia +school principal|1 +(noun)|principal|head teacher|head|educator|pedagogue +school ship|1 +(noun)|training ship|ship +school superintendent|1 +(noun)|overseer|superintendent +school system|1 +(noun)|establishment +school teacher|2 +(noun)|schoolteacher|teacher|instructor +(noun)| +school term|1 +(noun)|academic term|academic session|session|term +school text|1 +(noun)|textbook|text|text edition|schoolbook|book +school year|1 +(noun)|academic year|year +schoolbag|1 +(noun)|bag +schoolbook|1 +(noun)|textbook|text|text edition|school text|book +schoolboy|1 +(noun)|male child|boy|schoolchild|school-age child|pupil +schoolboyish|1 +(adj)|boyish|boylike|young |immature +schoolchild|1 +(noun)|school-age child|pupil|young person|youth|younker|spring chicken +schoolcraft|1 +(noun)|Schoolcraft|Henry Rowe Schoolcraft|geologist|ethnologist|explorer|adventurer +schooldays|1 +(noun)|schooltime|time of life +schooled|1 +(adj)|instructed|taught|tutored|educated +schoolfellow|1 +(noun)|schoolmate|classmate|class fellow|acquaintance|friend +schoolfriend|1 +(noun)|friend +schoolgirl|1 +(noun)|female child|girl|little girl +schoolgirlish|1 +(adj)|girlish|young |immature +schoolhouse|1 +(noun)|school|building|edifice +schooling|3 +(noun)|teaching|instruction|pedagogy +(noun)|school|education +(noun)|training|preparation|grooming +schoolma'am|1 +(noun)|schoolmarm|schoolmistress|mistress|schoolteacher|school teacher +schoolman|2 +(noun)|Schoolman|medieval Schoolman|scholar|scholarly person|student +(noun)|academician|scholar|scholarly person|student +schoolmarm|1 +(noun)|schoolma'am|schoolmistress|mistress|schoolteacher|school teacher +schoolmaster|3 +(noun)|headmaster|master|principal|school principal|head teacher|head +(noun)|educator|pedagogue +(noun)|Lutjanus apodus|snapper +schoolmate|1 +(noun)|classmate|schoolfellow|class fellow|acquaintance|friend +schoolmistress|1 +(noun)|schoolmarm|schoolma'am|mistress|schoolteacher|school teacher +schoolroom|1 +(noun)|classroom|room +schoolteacher|1 +(noun)|school teacher|teacher|instructor +schooltime|2 +(noun)|school|school day|time period|period of time|period +(noun)|schooldays|time of life +schoolwide|1 +(adj)|wide |broad +schoolwork|1 +(noun)|school assignment|assignment +schoolyard|1 +(noun)|yard +schooner|2 +(noun)|glass|drinking glass +(noun)|sailing vessel|sailing ship +schopenhauer|1 +(noun)|Schopenhauer|Arthur Schopenhauer|philosopher +schorl|1 +(noun)|tourmaline +schottische|2 +(noun)|folk music|ethnic music|folk +(noun)|round dance|ring dance +schreiber's aster|1 +(noun)|Schreiber's aster|aster +schrod|2 +(noun)|scrod|fish +(noun)|scrod|cod|codfish +schrodinger|1 +(noun)|Schrodinger|Erwin Schrodinger|nuclear physicist +schrodinger equation|1 +(noun)|Schrodinger equation|Schrodinger wave equation|differential equation +schrodinger wave equation|1 +(noun)|Schrodinger equation|Schrodinger wave equation|differential equation +schtick|4 +(noun)|shtik|shtick|schtik|small indefinite quantity|small indefinite amount +(noun)|shtik|schtik|shtick|business|stage business|byplay +(noun)|shtik|schtik|shtick|buffoonery|clowning|frivolity|harlequinade|prank +(noun)|shtik|schtik|shtick|trick|fast one +schtickl|1 +(noun)|shtikl|shtickl|schtikl|shtik|shtick|schtik|schtick +schtik|4 +(noun)|shtik|shtick|schtick|small indefinite quantity|small indefinite amount +(noun)|shtik|shtick|schtick|business|stage business|byplay +(noun)|shtik|shtick|schtick|buffoonery|clowning|frivolity|harlequinade|prank +(noun)|shtik|shtick|schtick|trick|fast one +schtikl|1 +(noun)|shtikl|shtickl|schtickl|shtik|shtick|schtik|schtick +schubert|1 +(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer +schuller-christian disease|1 +(noun)|Hand-Schuller-Christian disease|Schuller-Christian disease|histiocytosis +schulz|1 +(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist +schumann|2 +(noun)|Schumann|Clara Josephine Schumann|pianist|piano player|composer +(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer +schumann-heink|1 +(noun)|Schumann-Heink|Ernestine Schumann-Heink|contralto +schumpeter|1 +(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist|economic expert +schuss|1 +(verb)|ski +schutzstaffel|1 +(noun)|Schutzstaffel|SS|police|police force|constabulary|law +schwa|1 +(noun)|shwa|vowel|vowel sound +schwann|1 +(noun)|Schwann|Theodor Schwann|physiologist|histologist +schwann cell|1 +(noun)|Schwann cell|somatic cell|vegetative cell +schwarzwald|1 +(noun)|Black Forest|Schwarzwald|forest|woodland|timberland|timber +schweitzer|1 +(noun)|Schweitzer|Albert Schweitzer|missionary|missioner|philosopher|doctor|doc|physician|MD|Dr.|medico|organist +schweiz|1 +(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country|European nation +sciadopityaceae|1 +(noun)|Sciadopityaceae|family Sciadopityaceae|gymnosperm family +sciadopitys|1 +(noun)|Sciadopitys|genus Sciadopitys|gymnosperm genus +sciadopitys verticillata|1 +(noun)|Japanese umbrella pine|Sciadopitys verticillata|conifer|coniferous tree +sciaena|1 +(noun)|Sciaena|genus Sciaena|fish genus +sciaena antarctica|1 +(noun)|mulloway|jewfish|Sciaena antarctica|sciaenid fish|sciaenid +sciaena aquila|1 +(noun)|maigre|maiger|Sciaena aquila|sciaenid fish|sciaenid +sciaenid|1 +(noun)|sciaenid fish|percoid fish|percoid|percoidean +sciaenid fish|1 +(noun)|sciaenid|percoid fish|percoid|percoidean +sciaenidae|1 +(noun)|Sciaenidae|family Sciaenidae|fish family +sciaenops|1 +(noun)|Sciaenops|genus Sciaenops|fish genus +sciaenops ocellatus|1 +(noun)|red drum|channel bass|redfish|Sciaenops ocellatus|drum|drumfish +sciara|1 +(noun)|fungus gnat|sciarid|dipterous insect|two-winged insects|dipteran|dipteron +sciarid|1 +(noun)|fungus gnat|sciara|dipterous insect|two-winged insects|dipteran|dipteron +sciaridae|1 +(noun)|Sciaridae|family Sciaridae|arthropod family +sciatic|2 +(adj)|neuralgia|neuralgy +(adj)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +sciatic nerve|1 +(noun)|nervus ischiadicus|nerve|nervus +sciatica|1 +(noun)|neuralgia|neuralgy +scid|1 +(noun)|severe combined immunodeficiency|severe combined immunodeficiency disease|SCID|immunodeficiency|monogenic disorder|monogenic disease +science|2 +(noun)|scientific discipline|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|skill|ability|power +science fiction|1 +(noun)|fantasy|phantasy +science lab|1 +(noun)|lab|laboratory|research lab|research laboratory|science laboratory|workplace|work +science laboratory|1 +(noun)|lab|laboratory|research lab|research laboratory|science lab|workplace|work +science museum|1 +(noun)|museum +science teacher|1 +(noun)|teacher|instructor +scientific|2 +(adj)|knowledge domain|knowledge base +(adj)|scientific |technological +scientific agriculture|1 +(noun)|agronomy|science|scientific discipline +scientific discipline|1 +(noun)|science|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +scientific fact|1 +(noun)|observation +scientific instrument|1 +(noun)|instrument +scientific knowledge|1 +(noun)|knowledge domain|knowledge base +scientific method|1 +(noun)|methodology +scientific research|1 +(noun)|research project|research +scientific theory|1 +(noun)|theory +scientist|1 +(noun)|man of science|person|individual|someone|somebody|mortal|human|soul +scientology|1 +(noun)|Scientology|Church of Scientology|religion|faith +scilla|1 +(noun)|squill|liliaceous plant +scilla nonscripta|1 +(noun)|wild hyacinth|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +scilla verna|1 +(noun)|spring squill|Scilla verna|sea onion|scilla|squill +scilly islands|1 +(noun)|Scilly Islands|Isles of Scilly|archipelago +scimitar|1 +(noun)|cavalry sword|saber|sabre +scincella|1 +(noun)|Scincella|genus Scincella|reptile genus +scincid|1 +(noun)|skink|scincid lizard|lizard +scincid lizard|1 +(noun)|skink|scincid|lizard +scincidae|1 +(noun)|Scincidae|family Scincidae|reptile family +scincus|1 +(noun)|Scincus|genus Scincus|reptile genus +scindapsus|1 +(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus|liliopsid genus +scindapsus aureus|1 +(noun)|golden pothos|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana +scintilla|2 +(noun)|shred|whit|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +(noun)|particle +scintillant|1 +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillating|sparkling|sparkly|bright +scintillate|5 +(verb)|emit|give out|give off +(verb)|sparkle|coruscate|reflect|shine +(verb)|twinkle|winkle|shine|beam +(verb)|fluoresce +(verb)|sparkle|coruscate|be +scintillating|3 +(adj)|intelligent +(adj)|bubbling|effervescent|sparkling|sparkly|lively +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|sparkling|sparkly|bright +scintillating scotoma|1 +(noun)|flittering scotoma|scotoma +scintillation|5 +(noun)|light|visible light|visible radiation +(noun)|twinkle|sparkling|change|alteration|modification +(noun)|brilliance|genius +(noun)|glitter|glister|glisten|sparkle|brightness +(noun)|fluctuation|wavering +scintillation counter|1 +(noun)|counter tube +sciolism|1 +(noun)|superficiality|shallowness +sciolist|1 +(noun)|dabbler|dilettante|amateur +sciolistic|1 +(adj)|dilettante|dilettantish|dilettanteish|superficial +scion|1 +(noun)|descendant|descendent +scipio|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +scipio africanus|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +scipio africanus major|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +scipio the elder|1 +(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general|full general +scire facias|1 +(noun)|writ|judicial writ +scirpus|1 +(noun)|Scirpus|genus Scirpus|monocot genus|liliopsid genus +scirpus acutus|1 +(noun)|hardstem bulrush|hardstemmed bulrush|Scirpus acutus|sedge +scirpus cyperinus|1 +(noun)|wool grass|Scirpus cyperinus|sedge +scission|1 +(noun)|cut|cutting +scissor|1 +(verb)|cut +scissor-tailed|1 +(adj)|caudate |caudated +scissor grip|1 +(noun)|scissors|scissors hold|scissors grip|wrestling hold +scissors|3 +(noun)|pair of scissors|edge tool|compound lever +(noun)|scissors hold|scissor grip|scissors grip|wrestling hold +(noun)|gymnastic exercise +scissors grip|1 +(noun)|scissors|scissors hold|scissor grip|wrestling hold +scissors hold|1 +(noun)|scissors|scissor grip|scissors grip|wrestling hold +scissors kick|1 +(noun)|swimming kick +scissortail|1 +(noun)|scissortailed flycatcher|Muscivora-forficata|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +scissortailed flycatcher|1 +(noun)|scissortail|Muscivora-forficata|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +scissure|1 +(noun)|crack|cleft|crevice|fissure|opening|gap +sciuridae|1 +(noun)|Sciuridae|family Sciuridae|mammal family +sciuromorpha|1 +(noun)|Sciuromorpha|suborder Sciuromorpha|animal order +sciurus|1 +(noun)|Sciurus|genus Sciurus|mammal genus +sciurus carolinensis|1 +(noun)|eastern gray squirrel|cat squirrel|Sciurus carolinensis|tree squirrel +sciurus griseus|1 +(noun)|western gray squirrel|Sciurus griseus|tree squirrel +sciurus hudsonicus|1 +(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel +sciurus niger|1 +(noun)|fox squirrel|eastern fox squirrel|Sciurus niger|tree squirrel +sciurus vulgaris|1 +(noun)|red squirrel|cat squirrel|Sciurus vulgaris|tree squirrel +sclaff|3 +(noun)|golf stroke|golf shot|swing +(verb)|strike +(verb)|strike +sclera|1 +(noun)|sclerotic coat|albuginea +scleral veins|1 +(noun)|venae sclerales|vein|vena|venous blood vessel +scleranthus|1 +(noun)|Scleranthus|genus Scleranthus|caryophylloid dicot genus +scleranthus annuus|1 +(noun)|knawel|knawe|Scleranthus annuus|weed +scleredema|1 +(noun)|edema|oedema|hydrops|dropsy +sclerite|1 +(noun)|protective covering +scleritis|1 +(noun)|inflammation|redness|rubor +scleroderma|2 +(noun)|dermatosclerosis|autoimmune disease|autoimmune disorder +(noun)|Scleroderma|genus Scleroderma|fungus genus +scleroderma aurantium|1 +(noun)|Scleroderma citrinum|Scleroderma aurantium|earthball|false truffle|puffball|hard-skinned puffball +scleroderma bovista|1 +(noun)|Scleroderma bovista|smooth earthball|earthball|false truffle|puffball|hard-skinned puffball +scleroderma citrinum|1 +(noun)|Scleroderma citrinum|Scleroderma aurantium|earthball|false truffle|puffball|hard-skinned puffball +scleroderma flavidium|1 +(noun)|Scleroderma flavidium|star earthball|earthball|false truffle|puffball|hard-skinned puffball +sclerodermataceae|1 +(noun)|Sclerodermataceae|family Sclerodermataceae|fungus family +sclerodermatales|1 +(noun)|Sclerodermatales|order Sclerodermatales|fungus order +sclerometer|1 +(noun)|measuring instrument|measuring system|measuring device +scleroparei|1 +(noun)|Scleroparei|order Scleroparei|animal order +scleroprotein|1 +(noun)|albuminoid|simple protein +sclerosed|1 +(adj)|sclerotic|pathology +sclerosing leukoencephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +sclerosis|1 +(noun)|induration|pathology +sclerotic|2 +(adj)|sclerosed|pathology +(adj)|albuginea +sclerotic coat|1 +(noun)|sclera|albuginea +sclerotinia|1 +(noun)|fungus +sclerotiniaceae|1 +(noun)|Sclerotiniaceae|family Sclerotiniaceae|fungus family +sclerotium|2 +(noun)|Sclerotium|genus Sclerotium|fungus genus +(noun)|mycelium +sclerotium disease|1 +(noun)|sclerotium rot|plant disease +sclerotium rot|1 +(noun)|sclerotium disease|plant disease +sclerotomy|1 +(noun)|incision|section|surgical incision +sclk|1 +(noun)|spacecraft clock time|SCLK|clock time|time +scnt|1 +(noun)|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|nuclear transplantation|biological research +scoff|3 +(noun)|jeer|jeering|mockery|scoffing|derision +(verb)|jeer|flout|barrack|gibe|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride +(verb)|flout|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +scoffer|2 +(noun)|gorger|eater|feeder +(noun)|flouter|mocker|jeerer|unpleasant person|disagreeable person +scoffing|1 +(noun)|jeer|jeering|mockery|scoff|derision +scoffingly|1 +(adv)|derisively|derisorily|mockingly +scofflaw|1 +(noun)|criminal|felon|crook|outlaw|malefactor +scoinson arch|1 +(noun)|sconcheon arch|arch +scoke|1 +(noun)|poke|pigeon berry|garget|Phytolacca americana|pokeweed +scold|3 +(noun)|scolder|nag|nagger|common scold|unpleasant person|disagreeable person +(verb)|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +(verb)|grouch|grumble|complain|kick|plain|sound off|quetch|kvetch +scolder|1 +(noun)|scold|nag|nagger|common scold|unpleasant person|disagreeable person +scolding|2 +(adj)|knock|criticize|criticise|pick apart +(noun)|chiding|objurgation|tongue-lashing|rebuke|reproof|reproval|reprehension|reprimand +scolion|1 +(noun)|banquet song|song +scoliosis|1 +(noun)|spinal curvature +scollop|6 +(noun)|scallop|escallop|shellfish +(noun)|cutlet|scallop|escallop|piece|slice +(noun)|scallop|escallop|bivalve|pelecypod|lamellibranch +(verb)|scallop|hollow|hollow out|core out +(verb)|scallop|fish +(verb)|scallop|shape|form +scolopacidae|1 +(noun)|Scolopacidae|family Scolopacidae|bird family +scolopax|1 +(noun)|Scolopax|genus Scolopax|bird genus +scolopax rusticola|1 +(noun)|Eurasian woodcock|Scolopax rusticola|woodcock +scolopendrium|1 +(noun)|fern +scolopendrium nigripes|1 +(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern +scolymus|1 +(noun)|Scolymus|genus Scolymus|asterid dicot genus +scolymus hispanicus|1 +(noun)|Spanish oyster plant|Scolymus hispanicus|golden thistle +scolytidae|1 +(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family +scolytus|1 +(noun)|Scolytus|genus Scolytus|arthropod genus +scolytus multistriatus|1 +(noun)|Dutch-elm beetle|Scolytus multistriatus|bark beetle +scomber|1 +(noun)|Scomber|genus Scomber|fish genus +scomber colias|1 +(noun)|Spanish mackerel|Scomber colias|mackerel +scomber japonicus|1 +(noun)|chub mackerel|tinker|Scomber japonicus|mackerel +scomber scombrus|1 +(noun)|common mackerel|shiner|Scomber scombrus|mackerel +scomberesocidae|1 +(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family +scomberesox|1 +(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus +scomberesox saurus|1 +(noun)|saury|billfish|Scomberesox saurus|teleost fish|teleost|teleostan +scomberomorus|1 +(noun)|Scomberomorus|genus Scomberomorus|fish genus +scomberomorus cavalla|1 +(noun)|king mackerel|cavalla|cero|Scomberomorus cavalla|Spanish mackerel +scomberomorus maculatus|1 +(noun)|Scomberomorus maculatus|Spanish mackerel +scomberomorus regalis|1 +(noun)|cero|pintado|kingfish|Scomberomorus regalis|Spanish mackerel +scomberomorus sierra|1 +(noun)|sierra|Scomberomorus sierra|Spanish mackerel +scombresocidae|1 +(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family +scombresox|1 +(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus +scombridae|1 +(noun)|Scombridae|family Scombridae|fish family +scombroid|1 +(noun)|scombroid fish|percoid fish|percoid|percoidean +scombroid fish|1 +(noun)|scombroid|percoid fish|percoid|percoidean +scombroidea|1 +(noun)|Scombroidea|suborder Scombroidea|animal order +sconce|2 +(noun)|candlestick|candle holder +(noun)|redoubt|stronghold|fastness +sconcheon arch|1 +(noun)|scoinson arch|arch +scone|1 +(noun)|quick bread +scoop|8 +(noun)|scoopful|containerful +(noun)|pocket|concave shape|concavity|incurvation|incurvature +(noun)|exclusive|report|news report|story|account|write up +(noun)|soap|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +(noun)|scoop shovel|shovel +(noun)|ladle +(verb)|scoop out|lift out|scoop up|take up|remove|take|take away|withdraw +(verb)|outdo|outflank|trump|best|beat|beat out|crush|shell|trounce|vanquish +scoop out|2 +(verb)|hollow|hollow out|core out +(verb)|scoop|lift out|scoop up|take up|remove|take|take away|withdraw +scoop shot|1 +(noun)|basketball shot +scoop shovel|1 +(noun)|scoop|shovel +scoop up|1 +(verb)|scoop|scoop out|lift out|take up|remove|take|take away|withdraw +scoopful|1 +(noun)|scoop|containerful +scoot|1 +(verb)|dart|dash|scud|flash|shoot|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +scooter|5 +(noun)|water scooter|sea scooter|motorboat|powerboat +(noun)|wheeled vehicle +(noun)|motor scooter|wheeled vehicle +(noun)|iceboat|ice yacht|vessel|watercraft +(noun)|scoter|sea duck +scopal|1 +(adj)|extent +scope|4 +(noun)|range|reach|orbit|compass|ambit|extent +(noun)|setting|background|environment +(noun)|telescope|magnifier +(noun)|oscilloscope|cathode-ray oscilloscope|CRO|electronic equipment +scopes|5 +(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher|school teacher +(noun)|scope|range|reach|orbit|compass|ambit|extent +(noun)|setting|background|scope|environment +(noun)|telescope|scope|magnifier +(noun)|oscilloscope|scope|cathode-ray oscilloscope|CRO|electronic equipment +scopes trial|1 +(noun)|Scopes trial|trial +scophthalmus|1 +(noun)|Scophthalmus|genus Scophthalmus|fish genus +scophthalmus aquosus|1 +(noun)|windowpane|Scophthalmus aquosus|lefteye flounder|lefteyed flounder +scophthalmus rhombus|1 +(noun)|brill|Scophthalmus rhombus|lefteye flounder|lefteyed flounder +scopolamine|1 +(noun)|hyoscine|alkaloid +scopolia|1 +(noun)|Scopolia|genus Scopolia|asterid dicot genus +scopolia carniolica|1 +(noun)|Scopolia carniolica|herb|herbaceous plant +scops owl|1 +(noun)|owl|bird of Minerva|bird of night|hooter +scorbutic|1 +(adj)|avitaminosis|hypovitaminosis +scorbutus|1 +(noun)|scurvy|avitaminosis|hypovitaminosis +scorch|8 +(noun)|singe|burn +(noun)|plant disease +(noun)|stain|discoloration|discolouration +(verb)|sear|heat|heat up +(verb)|sear|singe|burn|combust +(verb)|burn|fire|burn down +(verb)|char|blacken|burn +(verb)|dry|dry out +scorched|3 +(adj)|adust|baked|parched|sunbaked|dry +(adj)|destroyed +(adj)|damaged +scorched-earth policy|1 +(noun)|shark repellent|porcupine provision +scorcher|2 +(noun)|hot weather +(noun)|screamer|hit|hitting|striking +scorching|1 +(adj)|hot +score|18 +(noun)|mark|grade|evaluation|valuation|rating +(noun)|musical score|sheet music +(noun)|number +(noun)|set +(noun)|account|reason|ground +(noun)|fact +(noun)|debt +(noun)|scotch|incision|scratch|prick|slit|dent +(noun)|grudge|grievance|resentment|bitterness|gall|rancor|rancour +(noun)|success +(noun)|sexual conquest|seduction|conquest +(verb)|hit|tally|rack up|gain|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|nock|mark|notch +(verb)|mark|record|enter|put down +(verb)|compose|write +(verb)|seduce|make|persuade +(verb)|achieve|accomplish|attain|reach +(verb)|grade|mark|measure|evaluate|valuate|assess|appraise|value +score out|1 +(verb)|erase|rub out|efface|wipe off|delete|cancel +score paper|1 +(noun)|music paper|paper +scoreboard|1 +(noun)|board|sign +scorecard|1 +(noun)|card|record|record book|book +scorekeeper|1 +(noun)|scorer|official +scoreless|1 +(adj)|goalless|hitless|unsuccessful +scorer|3 +(noun)|player|participant +(noun)|logger +(noun)|scorekeeper|official +scores|12 +(noun)|tons|dozens|heaps|lots|mountain|piles|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|mark|grade|score|evaluation|valuation|rating +(noun)|score|musical score|sheet music +(noun)|score|number +(noun)|score|set +(noun)|score|account|reason|ground +(noun)|score|fact +(noun)|score|debt +(noun)|score|scotch|incision|scratch|prick|slit|dent +(noun)|grudge|score|grievance|resentment|bitterness|gall|rancor|rancour +(noun)|score|success +(noun)|sexual conquest|score|seduction|conquest +scoria|1 +(noun)|slag|dross|scum +scoring|1 +(noun)|marking|grading|evaluation|rating +scoring system|1 +(noun)|rating system|classification system +scorn|4 +(noun)|contempt|disdain|despite|dislike +(noun)|contempt|disrespect|discourtesy +(verb)|contemn|despise|disdain|hate|detest +(verb)|reject|spurn|freeze off|pooh-pooh|disdain|turn down|refuse|decline +scorned|1 +(adj)|despised|detested|hated|unloved +scorner|1 +(noun)|sneerer|unpleasant person|disagreeable person +scornful|2 +(adj)|contemptuous|disdainful|insulting|disrespectful +(adj)|abusive|insulting|opprobrious|scurrilous|offensive +scornfully|1 +(adv)|contemptuously|disdainfully|contumeliously|showing contempt +scorpaena|1 +(noun)|Scorpaena|genus Scorpaena|fish genus +scorpaena grandicornis|1 +(noun)|plumed scorpionfish|Scorpaena grandicornis|scorpionfish|scorpion fish|sea scorpion +scorpaenid|1 +(noun)|scorpaenid fish|scorpaenoid|scorpaenoid fish +scorpaenid fish|1 +(noun)|scorpaenid|scorpaenoid|scorpaenoid fish +scorpaenidae|1 +(noun)|Scorpaenidae|family Scorpaenidae|fish family +scorpaenoid|1 +(noun)|scorpaenoid fish|spiny-finned fish|acanthopterygian +scorpaenoid fish|1 +(noun)|scorpaenoid|spiny-finned fish|acanthopterygian +scorpaenoidea|1 +(noun)|Scorpaenoidea|suborder Scorpaenoidea|animal order +scorpio|3 +(noun)|Scorpio|Scorpion|person|individual|someone|somebody|mortal|human|soul +(noun)|Scorpius|Scorpio|constellation +(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac|star sign|sign|mansion|house|planetary house +scorpio the scorpion|1 +(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac|star sign|sign|mansion|house|planetary house +scorpioid cyme|1 +(noun)|cyme +scorpion|3 +(noun)|Scorpio|Scorpion|person|individual|someone|somebody|mortal|human|soul +(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|arachnid|arachnoid +scorpion fish|2 +(noun)|scorpionfish|sea scorpion|scorpaenid|scorpaenid fish +(noun)| +scorpion fly|1 +(noun)|mecopteran +scorpion shell|1 +(noun)|snail +scorpion weed|2 +(noun)|scorpionweed|phacelia|flower +(noun)| +scorpionfish|1 +(noun)|scorpion fish|sea scorpion|scorpaenid|scorpaenid fish +scorpionida|1 +(noun)|Scorpionida|order Scorpionida|animal order +scorpionweed|1 +(noun)|scorpion weed|phacelia|flower +scorpius|1 +(noun)|Scorpius|Scorpio|constellation +scorsese|1 +(noun)|Scorsese|Martin Scorsese|film maker|filmmaker|film producer|movie maker +scorzonera|2 +(noun)|black salsify|viper's grass|Scorzonera hispanica|herb|herbaceous plant +(noun)|black salsify|salsify +scorzonera hispanica|1 +(noun)|black salsify|viper's grass|scorzonera|Scorzonera hispanica|herb|herbaceous plant +scot|1 +(noun)|Scot|Scotsman|Scotchman|European +scot and lot|1 +(noun)|indebtedness|liability|financial obligation +scotch|6 +(adj)|Scots|Scottish|Scotch|European country|European nation +(adj)|economical|frugal|sparing|stinting|thrifty +(noun)|score|incision|scratch|prick|slit|dent +(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|whiskey|whisky +(verb)|thwart|queer|spoil|foil|cross|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|score|nock|mark +scotch and soda|1 +(noun)|Scotch and soda|highball +scotch asphodel|1 +(noun)|Scotch asphodel|Tofieldia pusilla|false asphodel +scotch broom|1 +(noun)|common broom|Scotch broom|green broom|Cytisus scoparius|broom|Cytisus|genus Cytisus +scotch broth|1 +(noun)|Scotch broth|soup +scotch egg|1 +(noun)|Scotch egg|dish +scotch fir|1 +(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine|pine tree|true pine +scotch gale|1 +(noun)|sweet gale|Scotch gale|Myrica gale|shrub|bush +scotch kiss|1 +(noun)|Scotch kiss|candy +scotch laburnum|1 +(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub +scotch marigold|1 +(noun)|common marigold|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula +scotch pancake|1 +(noun)|drop scone|griddlecake|Scotch pancake|scone +scotch pine|1 +(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine|pine tree|true pine +scotch tape|2 +(noun)|cellulose tape|Scotch Tape|Sellotape|adhesive tape +(verb)|sellotape|tape +scotch terrier|1 +(noun)|Scotch terrier|Scottish terrier|Scottie|terrier +scotch thistle|1 +(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle +scotch whiskey|1 +(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|whiskey|whisky +scotch whisky|1 +(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|whiskey|whisky +scotch woodcock|1 +(noun)|Scotch woodcock|dish +scotchman|1 +(noun)|Scot|Scotsman|Scotchman|European +scotchwoman|1 +(noun)|Scotswoman|Scotchwoman|Scot|Scotsman|Scotchman +scoter|1 +(noun)|scooter|sea duck +scotland|1 +(noun)|Scotland|European country|European nation +scotland yard|1 +(noun)|Scotland Yard|New Scotland Yard|police|police force|constabulary|law +scotoma|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +scotomatous|1 +(adj)|visual impairment|visual defect|vision defect|visual disorder +scotopic vision|1 +(noun)|night vision|night-sight|twilight vision|sight|vision|visual sense|visual modality +scots|3 +(adj)|Scots|Scottish|Scotch|European country|European nation +(noun)|Scottish|Scots|Scots English|English|English language +(noun)|Scot|Scotsman|Scotchman|European +scots english|1 +(noun)|Scottish|Scots|Scots English|English|English language +scots gaelic|1 +(noun)|Scottish Gaelic|Scots Gaelic|Gaelic|Goidelic|Erse +scots heather|1 +(noun)|heather|ling|Scots heather|broom|Calluna vulgaris|heath +scots pine|1 +(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine|pine tree|true pine +scotsman|1 +(noun)|Scot|Scotsman|Scotchman|European +scotswoman|1 +(noun)|Scotswoman|Scotchwoman|Scot|Scotsman|Scotchman +scott|5 +(noun)|Scott|George C. Scott|actor|histrion|player|thespian|role player +(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer|adventurer +(noun)|Scott|Winfield Scott|general|full general +(noun)|Scott|Walter Scott|Sir Walter Scott|writer|author +(noun)|Scott|Dred Scott|slave +scott's spleenwort|1 +(noun)|ebony spleenwort|Scott's Spleenwort|Asplenium platyneuron|spleenwort +scott joplin|1 +(noun)|Joplin|Scott Joplin|composer +scottie|1 +(noun)|Scotch terrier|Scottish terrier|Scottie|terrier +scottish|2 +(adj)|Scots|Scottish|Scotch|European country|European nation +(noun)|Scottish|Scots|Scots English|English|English language +scottish deerhound|1 +(noun)|Scottish deerhound|deerhound|hound|hound dog +scottish gaelic|1 +(noun)|Scottish Gaelic|Scots Gaelic|Gaelic|Goidelic|Erse +scottish highlander|1 +(noun)|Highlander|Scottish Highlander|Scot|Scotsman|Scotchman +scottish lallans|1 +(noun)|Lallans|Scottish Lallans|Scottish|Scots|Scots English +scottish maple|1 +(noun)|sycamore|great maple|Acer pseudoplatanus|maple +scottish reel|1 +(noun)|reel|Scottish reel|square dance|square dancing +scottish terrier|1 +(noun)|Scotch terrier|Scottish terrier|Scottie|terrier +scoundrel|1 +(noun)|villain|unwelcome person|persona non grata +scoundrelly|1 +(adj)|rascally|roguish|blackguardly|dishonest |dishonorable +scour|5 +(noun)|topographic point|place|spot +(verb)|search|seek|look for +(verb)|scrub|rub +(verb)|abrade|rub +(verb)|flush|purge|rinse|rinse off +scoured|1 +(adj)|eroded|worn +scourer|2 +(noun)|cleaner +(noun)|traveler|traveller +scourge|6 +(noun)|flagellum|whip +(noun)|bane|curse|nemesis|affliction +(noun)|terror|threat|person|individual|someone|somebody|mortal|human|soul +(verb)|punish|penalize|penalise +(verb)|flagellate|flog|welt|whip|lather|lash|slash|strap|trounce +(verb)|lay waste to|waste|devastate|desolate|ravage|destroy|ruin +scourge of god|1 +(noun)|Attila|Scourge of God|Scourge of the Gods|king|male monarch +scourge of the gods|1 +(noun)|Attila|Scourge of God|Scourge of the Gods|king|male monarch +scourger|1 +(noun)|flogger|torturer +scouring|2 +(noun)|search|hunt|hunting +(noun)|scrub|scrubbing|cleaning|cleansing|cleanup +scouring pad|1 +(noun)|cleaning pad +scouring rush|1 +(noun)|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail +scours|2 +(noun)|animal disease +(noun)|scour|topographic point|place|spot +scouse|1 +(noun)|lobscouse|lobscuse|stew +scout|4 +(noun)|lookout|lookout man|sentinel|sentry|watch|spotter|picket|watchman|watcher|security guard +(noun)|talent scout|recruiter +(noun)|pathfinder|guide|expert +(verb)|reconnoiter|reconnoitre|observe +scout car|1 +(noun)|reconnaissance vehicle|military vehicle|self-propelled vehicle +scout group|1 +(noun)|troop|scout troop|unit|social unit +scout troop|1 +(noun)|troop|scout group|unit|social unit +scouter|1 +(noun)|rover|boy scout +scouting|1 +(noun)|exploratory survey|reconnoitering|reconnoitring|reconnaissance|reconnaissance mission +scouting trip|1 +(noun)|expedition +scoutmaster|1 +(noun)|leader +scow|2 +(noun)|boat +(noun)|barge|flatboat|hoy|lighter +scowl|2 +(noun)|frown|facial expression|facial gesture +(verb)|frown|glower|lour|lower +scowling|1 +(adj)|beetle-browed|unfriendly +scrabble|4 +(noun)|scribble|doodle|drawing +(noun)|Scrabble|word game|board game +(verb)|grope for|feel +(verb)|scribble|write +scrabbly|1 +(adj)|scrubby|wooded +scrag|4 +(noun)|cut of mutton +(noun)|scrag end|cut of veal +(verb)|garrote|garrotte|garotte|strangle|strangulate|throttle +(verb)|choke|compress|constrict|squeeze|compact|contract|press +scrag end|1 +(noun)|scrag|cut of veal +scraggly|1 +(adj)|untidy +scraggy|2 +(adj)|scrawny|skinny|underweight|weedy|thin |lean +(adj)|jagged|jaggy|uneven +scram|1 +(verb)|buzz off|fuck off|get|bugger off|leave|go forth|go away +scramble|7 +(noun)|scuffle|struggle|battle +(noun)|scamper|scurry|haste|hurry|rush|rushing +(verb)|travel|go|move|locomote +(verb)|clamber|shin|shinny|skin|struggle|sputter|climb +(verb)|jumble|throw together|disorder|disarray +(verb)|beat|agitate|vex|disturb|commove|shake up|stir up|raise up +(verb)|change|alter|modify +scrambled|1 +(adj)|disorganized |disorganised +scrambled egg|1 +(noun)|dish +scrambler|3 +(noun)|mover +(noun)|trail bike|dirt bike|motorcycle|bike +(noun)|electronic equipment +scranch|1 +(verb)|crunch|scraunch|crackle|make noise|resound|noise +scranton|1 +(noun)|Scranton|city|metropolis|urban center +scrap|8 +(adj)|cast-off|discarded|junked|waste|useless +(noun)|bit|chip|flake|fleck|fragment +(noun)|rubbish|trash|waste|waste material|waste matter|waste product +(noun)|piece +(noun)|fight|fighting|combat|conflict|struggle|battle +(verb)|trash|junk|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|quarrel|dispute|argufy|altercate|argue|contend|debate|fence +(verb)|convert +scrap iron|1 +(noun)|iron|Fe|atomic number 26|scrap metal +scrap metal|1 +(noun)|rubbish|trash|scrap +scrapbook|1 +(noun)|album +scrape|11 +(noun)|scraping|scratch|scratching|noise +(noun)|abrasion|scratch|excoriation|wound|lesion +(noun)|scraping|bow|bowing|obeisance +(noun)|scratch|scar|mark|blemish|defect|mar +(verb)|grate|rub +(verb)|make|create +(verb)|scratch|scratch up|incise +(verb)|kowtow|genuflect|bow +(verb)|scrape up|come up|roll up|collect|accumulate|pile up|amass|compile|hoard +(verb)|skin|injure|wound +(verb)|stub|skin|abrade|injure|wound +scrape along|1 +(verb)|scrape by|scratch along|squeak by|squeeze by|rub along|cope|get by|make out|make do|contend|grapple|deal|manage +scrape by|1 +(verb)|scrape along|scratch along|squeak by|squeeze by|rub along|cope|get by|make out|make do|contend|grapple|deal|manage +scrape up|1 +(verb)|scrape|come up|roll up|collect|accumulate|pile up|amass|compile|hoard +scraped|2 +(adj)|abraded|skinned|injured +(adj)|scratched|damaged +scraper|1 +(noun)|hand tool +scrapheap|2 +(noun)|garbage heap|junk heap|rubbish heap|trash heap|junk pile|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +(noun)|pile|heap|mound|cumulus +scrapie|1 +(noun)|animal disease +scraping|3 +(noun)|fragment +(noun)|scrape|scratch|scratching|noise +(noun)|scrape|bow|bowing|obeisance +scrapper|1 +(noun)|combatant|battler|belligerent|fighter|person|individual|someone|somebody|mortal|human|soul +scrappily|1 +(adv)|combatively +scrappiness|1 +(noun)|combativeness|militance|militancy +scrappy|1 +(adj)|aggressive +scraps|5 +(noun)|garbage|refuse|food waste|waste|waste material|waste matter|waste product +(noun)|bit|chip|flake|fleck|scrap|fragment +(noun)|rubbish|trash|scrap|waste|waste material|waste matter|waste product +(noun)|scrap|piece +(noun)|fight|fighting|combat|scrap|conflict|struggle|battle +scratch|10 +(noun)|abrasion|scrape|excoriation|wound|lesion +(noun)|incision|prick|slit|dent|depression|impression|imprint +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|shekels|simoleons|sugar|wampum|money +(noun)|chicken feed|mash +(noun)|scrape|scraping|scratching|noise +(noun)|scribble|scrawl|cacography|handwriting|hand|script +(noun)|scrape|scar|mark|blemish|defect|mar +(verb)|rub|fray|fret|chafe|touch|adjoin|meet|contact +(verb)|scrape|scratch up|incise|scratch out +(verb)|rub|itch|irritate +scratch along|1 +(verb)|scrape along|scrape by|squeak by|squeeze by|rub along|cope|get by|make out|make do|contend|grapple|deal|manage +scratch awl|1 +(noun)|scriber|scribe|awl +scratch out|1 +(verb)|cut out|erase|rub out|score out|efface|wipe off +scratch pad|2 +(noun)|scratch paper|scribbling block|notepad +(noun)|scratchpad|memory|computer memory|storage|computer storage|store|memory board +scratch paper|1 +(noun)|scratch pad|scribbling block|notepad +scratch race|1 +(noun)|race +scratch sheet|1 +(noun)|dope sheet|tip sheet +scratch test|1 +(noun)|skin test +scratch up|1 +(verb)|scratch|scrape|incise +scratched|1 +(adj)|scraped|damaged +scratcher|3 +(noun)|workman|working man|working person +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|device +scratchiness|1 +(noun)|harshness|abrasiveness|roughness +scratching|2 +(adj)|sharp +(noun)|scrape|scraping|scratch|noise +scratchpad|1 +(noun)|memory|computer memory|storage|computer storage|store|memory board +scratchy|1 +(adj)|abrasive|rough |unsmooth +scraunch|1 +(verb)|crunch|scranch|crackle|make noise|resound|noise +scrawl|2 +(noun)|scribble|scratch|cacography|handwriting|hand|script +(verb)|scribble|write +scrawled|1 +(adj)|written +scrawler|1 +(noun)|scribbler|writer +scrawniness|1 +(noun)|skinniness|leanness|thinness +scrawny|2 +(adj)|scraggy|skinny|underweight|weedy|thin |lean +(adj)|scrubby|stunted|inferior +screak|2 +(verb)|squeak|screech|creak|skreak|make noise|resound|noise +(verb)|squawk|skreak|skreigh|screech|shout|shout out|cry|call|yell|scream|holler|hollo|squall +screakily|1 +(adv)|creakily|creakingly +screaky|2 +(adj)|creaking|creaky|noisy +(adj)|screechy|squeaking|squeaky|squealing|high |high-pitched +scream|6 +(noun)|screaming|shriek|shrieking|screech|screeching|cry|outcry|call|yell|shout|vociferation +(noun)|screech|screeching|shriek|shrieking|screaming|noise +(noun)|belly laugh|sidesplitter|howler|thigh-slapper|wow|riot|joke|gag|laugh|jest|jape +(verb)|shout|shout out|cry|call|yell|holler|hollo|squall|utter|emit|let out|let loose +(verb)|yell|shout +(verb)|make noise|resound|noise +screamer|4 +(noun)|roarer|bawler|bellower|screecher|shouter|yeller|communicator +(noun)|headline|newspaper headline +(noun)|waterfowl|water bird|waterbird +(noun)|scorcher|hit|hitting|striking +screaming|6 +(adj)|screeching|shrieking|noisy +(adj)|intense +(adj)|sensational +(adj)|hilarious|uproarious|humorous |humourous +(noun)|scream|shriek|shrieking|screech|screeching|cry|outcry|call|yell|shout|vociferation +(noun)|screech|screeching|shriek|shrieking|scream|noise +screaming meemies|1 +(noun)|jitters|heebie-jeebies|nervousness|nerves +scree|1 +(noun)|talus|geological formation|formation +screech|4 +(noun)|screeching|shriek|shrieking|scream|screaming|noise +(noun)|scream|screaming|shriek|shrieking|screeching|cry|outcry|call|yell|shout|vociferation +(verb)|squeak|creak|screak|skreak|make noise|resound|noise +(verb)|squawk|screak|skreak|skreigh|shout|shout out|cry|call|yell|scream|holler|hollo|squall +screech owl|2 +(noun)|owl|bird of Minerva|bird of night|hooter +(noun)|Otus asio|owl|bird of Minerva|bird of night|hooter +screecher|1 +(noun)|roarer|bawler|bellower|screamer|shouter|yeller|communicator +screeching|3 +(adj)|screaming|shrieking|noisy +(noun)|screech|shriek|shrieking|scream|screaming|noise +(noun)|scream|screaming|shriek|shrieking|screech|cry|outcry|call|yell|shout|vociferation +screechy|1 +(adj)|screaky|squeaking|squeaky|squealing|high |high-pitched +screed|3 +(noun)|harangue|rant|ranting +(noun)|writing|written material|piece of writing +(noun)|strip|slip +screen|15 +(noun)|silver screen|projection screen|surface +(noun)|blind|protective covering|protective cover|protection +(noun)|CRT screen|display +(noun)|cover|covert|concealment|covering +(noun)|protective covering|protective cover|protection +(noun)|sieve|strainer +(noun)|screen door|door +(noun)|partition|divider +(verb)|test|check +(verb)|analyze|analyse|study|examine|canvass|canvas +(verb)|screen out|sieve|sort|choose|take|select|pick out +(verb)|show +(verb)|block out|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|riddle|sift|sieve|strain +(verb)|shield|protect +screen actor|1 +(noun)|movie actor|actor|histrion|player|thespian|role player +screen background|1 +(noun)|background|desktop|screen|CRT screen +screen door|1 +(noun)|screen|door +screen font|1 +(noun)|raster font|font|fount|typeface|face +screen memory|1 +(noun)|memory +screen off|1 +(verb)|separate off|partition|zone +screen out|1 +(verb)|screen|sieve|sort|choose|take|select|pick out +screen pass|1 +(noun)|forward pass|aerial +screen saver|1 +(noun)|design|pattern|figure +screen test|1 +(noun)|audition|tryout +screener|1 +(noun)|guard +screening|4 +(noun)|showing|viewing|display +(noun)|fabric|cloth|material|textile +(noun)|cover|covering|masking|concealment|concealing|hiding +(noun)|testing +screenland|1 +(noun)|film industry|movie industry|industry +screenplay|1 +(noun)|script|book|playscript +screenwriter|1 +(noun)|film writer|scriptwriter +screw|10 +(noun)|prison guard|jailer|jailor|gaoler|turnkey|lawman|law officer|peace officer|keeper +(noun)|inclined plane +(noun)|screw propeller|propeller|propellor +(noun)|fastener|fastening|holdfast|fixing +(noun)|fuck|fucking|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +(verb)|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +(verb)|revolve|go around|rotate +(verb)|drive in|revolve|go around|rotate +(verb)|tighten|fasten +(verb)|cheat|chouse|shaft|chicane|jockey|beat|beat out|crush|shell|trounce|vanquish +screw-loose|1 +(adj)|screwy|insane +screw-pine family|1 +(noun)|Pandanaceae|family Pandanaceae|monocot family|liliopsid family +screw-topped|1 +(adj)|topped +screw auger|1 +(noun)|auger|gimlet|wimble|drill +screw augur|1 +(noun)|Spiranthes cernua|ladies' tresses|lady's tresses +screw bean|3 +(noun)|pod|seedpod +(noun)|screwbean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite|mesquit +(noun)| +screw eye|1 +(noun)|woodscrew +screw jack|1 +(noun)|jackscrew|jack +screw key|1 +(noun)|wrench|spanner +screw log|1 +(noun)|patent log|taffrail log|log +screw pine|1 +(noun)|pandanus|tree +screw propeller|1 +(noun)|screw|propeller|propellor +screw thread|1 +(noun)|thread|rib +screw tree|1 +(noun)|shrub|bush +screw up|4 +(verb)|heat up|hot up|intensify|compound|heighten|deepen +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|ball up|spoil|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|screw +(verb)|grimace|make a face|pull a face +screw wrench|1 +(noun)|adjustable wrench|adjustable spanner +screwball|3 +(adj)|crazy|half-baked|softheaded|impractical +(noun)|crackpot|crank|nut|nut case|nutcase|fruitcake|eccentric|eccentric person|flake|oddball|geek +(noun)|pitch|delivery +screwballer|1 +(noun)|pitcher|hurler|twirler +screwbean|1 +(noun)|screw bean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite|mesquit +screwbean mesquite|1 +(noun)|screw bean|screwbean|tornillo|Prosopis pubescens|mesquite|mesquit +screwdriver|2 +(noun)|hand tool +(noun)|cocktail +screwing|1 +(noun)|fuck|fucking|screw|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +screwtop|1 +(noun)|top|cover +screwup|1 +(noun)|mismanagement|misdirection +screwy|1 +(adj)|screw-loose|insane +scriabin|1 +(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer +scribble|4 +(noun)|scratch|scrawl|cacography|handwriting|hand|script +(noun)|scrabble|doodle|drawing +(verb)|scrabble|write +(verb)|scrawl|write +scribbler|2 +(noun)|scribe|penman|journalist +(noun)|scrawler|writer +scribbling block|1 +(noun)|scratch pad|scratch paper|notepad +scribe|5 +(noun)|Scribe|Augustin Eugene Scribe|dramatist|playwright +(noun)|scribbler|penman|journalist +(noun)|copyist|scrivener|employee +(noun)|scriber|scratch awl|awl +(verb)|score|nock|mark +scriber|1 +(noun)|scribe|scratch awl|awl +scribing block|1 +(noun)|surface gauge|surface gage|gauge|gage +scrim|1 +(noun)|fabric|cloth|material|textile +scrimmage|3 +(noun)|exercise|practice|drill|practice session|recitation +(noun)|melee|battle royal|disturbance +(verb)|rehearse|practise|practice +scrimmage line|1 +(noun)|line of scrimmage|line +scrimp|1 +(verb)|stint|skimp|save +scrimpy|1 +(adj)|meager|stingy |ungenerous +scrimshank|1 +(verb)|fiddle|shirk|shrink from|goldbrick +scrimshanker|1 +(noun)|slacker|shirker +scrimshaw|1 +(noun)|carving +scrimy|2 +(adj)|offensive +(adj)|grudging|niggardly|stingy |ungenerous +scrip|1 +(noun)|security|certificate +scripps|2 +(noun)|Scripps|Edward Wyllis Scripps|publisher|newspaper publisher +(noun)|Scripps|James Edmund Scripps|publisher|newspaper publisher +script|4 +(noun)|book|playscript|dramatic composition|dramatic work +(noun)|handwriting|hand|writing +(noun)|orthography|writing system +(verb)|write|compose|pen|indite +scripted|1 +(adj)|scripted |written +scriptural|2 +(adj)|biblical|sacred text|sacred writing|religious writing|religious text +(adj)|orthography|writing system +scripture|2 +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(noun)|sacred scripture|sacred text|sacred writing|religious writing|religious text +scriptwriter|1 +(noun)|writer|author +scrivened|1 +(adj)|written +scrivener|1 +(noun)|copyist|scribe|employee +scrod|2 +(noun)|schrod|fish +(noun)|schrod|cod|codfish +scrofula|1 +(noun)|struma|king's evil|tuberculosis|TB|T.B. +scrofulous|3 +(adj)|ill |sick +(adj)|immoral +(adj)|ugly +scroll|3 +(noun)|coil|whorl|roll|curl|curlicue|ringlet|gyre|round shape +(noun)|roll|manuscript|holograph +(verb)|move +scroll saw|1 +(noun)|jigsaw|fretsaw|power saw|saw|sawing machine +scrooge|1 +(noun)|niggard|skinflint|churl|hoarder +scrophularia|1 +(noun)|Scrophularia|genus Scrophularia|asterid dicot genus +scrophulariaceae|1 +(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|foxglove family|asterid dicot family +scrophulariales|1 +(noun)|Scrophulariales|order Scrophulariales|plant order +scrotal|1 +(adj)|pouch|pocket +scrotal vein|1 +(noun)|vena scrotalis|vein|vena|venous blood vessel +scrotum|1 +(noun)|pouch|pocket +scrounge|2 +(verb)|forage|hunt|run|hunt down|track down +(verb)|schnorr|shnorr|cadge|beg +scrounger|1 +(noun)|moocher|cadger|beggar|mendicant +scrub|5 +(adj)|unimproved +(noun)|chaparral|bush|vegetation|flora +(noun)|scrubbing|scouring|cleaning|cleansing|cleanup +(verb)|scour|rub +(verb)|scrub up|wash|lave +scrub-bird|3 +(noun)|scrubbird|scrub bird|passerine|passeriform bird +(noun)| +(noun)| +scrub beefwood|1 +(noun)|beefwood|Stenocarpus salignus|tree +scrub bird|3 +(noun)|scrubbird|scrub-bird|passerine|passeriform bird +(noun)| +(noun)| +scrub brush|1 +(noun)|scrubbing brush|scrubber|brush +scrub fowl|1 +(noun)|megapode|mound bird|mound-bird|mound builder|gallinaceous bird|gallinacean +scrub nurse|1 +(noun)|nurse +scrub oak|1 +(noun)|oak|oak tree +scrub palmetto|1 +(noun)|saw palmetto|Serenoa repens|fan palm +scrub pine|1 +(noun)|Virginia pine|Jersey pine|Pinus virginiana|pine|pine tree|true pine +scrub plane|1 +(noun)|plane|carpenter's plane|woodworking plane +scrub typhus|1 +(noun)|tsutsugamushi disease|rickettsial disease|rickettsiosis +scrub up|1 +(verb)|scrub|wash|lave +scrubbed|1 +(adj)|clean +scrubber|3 +(noun)|worker +(noun)|scrub brush|scrubbing brush|brush +(noun)|purifier +scrubbing|1 +(noun)|scrub|scouring|cleaning|cleansing|cleanup +scrubbing brush|1 +(noun)|scrub brush|scrubber|brush +scrubbird|1 +(noun)|scrub-bird|scrub bird|passerine|passeriform bird +scrubby|2 +(adj)|scrabbly|wooded +(adj)|scrawny|stunted|inferior +scrubland|1 +(noun)|country|rural area +scrubs|3 +(noun)|gown|surgical gown|garment +(noun)|scrub|chaparral|bush|vegetation|flora +(noun)|scrub|scrubbing|scouring|cleaning|cleansing|cleanup +scruff|1 +(noun)|nape|nucha|rear|backside|back end +scruffy|1 +(adj)|seedy|worn +scrum|1 +(noun)|scrummage|beginning|start|commencement +scrummage|1 +(noun)|scrum|beginning|start|commencement +scrumptious|1 +(adj)|delectable|delicious|luscious|pleasant-tasting|toothsome|yummy|tasteful +scrumptiously|1 +(adv)|lusciously|deliciously +scrumpy|1 +(noun)|cider|cyder +scrunch|4 +(noun)|noise +(verb)|crump|thud|crunch|scranch|scraunch|crackle +(verb)|squat|crouch|scrunch up|hunker|hunker down|sit|sit down +(verb)|wrinkle|ruckle|crease|crinkle|scrunch up|crisp|fold|fold up|turn up +scrunch up|2 +(verb)|squat|crouch|scrunch|hunker|hunker down|sit|sit down +(verb)|wrinkle|ruckle|crease|crinkle|scrunch|crisp|fold|fold up|turn up +scruple|6 +(noun)|apothecaries' unit|apothecaries' weight +(noun)|qualm|misgiving|anxiety +(noun)|principle +(verb)|hesitate|pause +(verb)|fuss|niggle|fret +(verb)|wonder|question +scruples|3 +(noun)|scruple|apothecaries' unit|apothecaries' weight +(noun)|scruple|qualm|misgiving|anxiety +(noun)|scruple|principle +scrupulous|2 +(adj)|scrupulous |religious|principled +(adj)|conscientious|painstaking|careful +scrupulously|1 +(adv)|conscientiously|religiously +scrupulousness|2 +(noun)|honesty|honestness +(noun)|meticulousness|meticulosity|punctiliousness|conscientiousness|painstakingness +scrutin de liste|1 +(noun)|list system|scrutin de liste system|voting system|electoral system +scrutin de liste system|1 +(noun)|list system|scrutin de liste|voting system|electoral system +scrutin uninomial system|1 +(noun)|uninominal system|uninominal voting system|single-member system|scrutin uninominal voting system|voting system|electoral system +scrutin uninominal voting system|1 +(noun)|uninominal system|uninominal voting system|single-member system|scrutin uninomial system|voting system|electoral system +scrutineer|1 +(noun)|canvasser|examiner|inspector +scrutinise|2 +(verb)|size up|take stock|scrutinize|examine|see +(verb)|audit|scrutinize|inspect|analyze|analyse|study|examine|canvass|canvas +scrutiniser|1 +(noun)|scrutinizer|examiner|inspector +scrutinize|2 +(verb)|size up|take stock|scrutinise|examine|see +(verb)|audit|scrutinise|inspect|analyze|analyse|study|examine|canvass|canvas +scrutinizer|1 +(noun)|scrutiniser|examiner|inspector +scrutiny|2 +(noun)|examination|investigation|investigating +(noun)|look|looking|looking at +scry|1 +(verb)|read +scsi|1 +(noun)|small computer system interface|SCSI|interface|port +scuba|1 +(noun)|aqualung|Aqua-Lung|breathing device|breathing apparatus|breathing machine|ventilator +scuba diver|1 +(noun)|diver|frogman|underwater diver +scuba diving|1 +(noun)|skin diving|skin-dive +scud|3 +(noun)|scudding|speed|speeding|hurrying +(verb)|dart|dash|scoot|flash|shoot|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|rack|sail +scudding|1 +(noun)|scud|speed|speeding|hurrying +scuff|6 +(noun)|mule|mules|scuffs|slipper|carpet slipper +(noun)|rub|wipe +(verb)|drag|shuffle|scuffle|shamble +(verb)|wear|wear off|wear out|wear thin +(verb)|scratch|scrape|scratch up +(verb)|kick +scuffer|1 +(noun)|sandal +scuffle|5 +(noun)|hassle|tussle|dogfingt|rough-and-tumble|fight|fighting|combat|scrap +(noun)|scuffle hoe|Dutch hoe|hoe +(noun)|scramble|struggle|battle +(verb)|shuffle|shamble|walk +(verb)|tussle|fight|struggle +scuffle hoe|1 +(noun)|scuffle|Dutch hoe|hoe +scuffs|3 +(noun)|mule|mules|scuff|slipper|carpet slipper +(noun)|mule|mules|scuff|slipper|carpet slipper +(noun)|scuff|rub|wipe +scull|4 +(noun)|oar +(noun)|oar +(noun)|shell|racing shell +(verb)|row +sculler|1 +(noun)|oarsman|rower +scullery|1 +(noun)|room +sculling|1 +(noun)|rowing|row +scullion|1 +(noun)|servant|retainer +sculpin|1 +(noun)|scorpaenoid|scorpaenoid fish +sculpt|2 +(verb)|sculpture|shape|form|work|mold|mould|forge +(verb)|sculpture|grave|carve +sculpted|1 +(adj)|graven|sculptured|carved |carven +sculptor|2 +(noun)|sculpturer|carver|statue maker|artist|creative person +(noun)|Sculptor|constellation +sculptress|1 +(noun)|sculptor|sculpturer|carver|statue maker +sculptural|2 +(adj)|plastic art|solid figure|three-dimensional figure +(adj)|modeled|sculptured|sculpturesque|shapely +sculptural relief|1 +(noun)|relief|relievo|rilievo|embossment|sculpture +sculpture|4 +(noun)|plastic art|solid figure|three-dimensional figure +(noun)|carving|art|artistic creation|artistic production|fine arts|beaux arts +(verb)|sculpt|shape|form|work|mold|mould|forge +(verb)|sculpt|grave|carve +sculptured|2 +(adj)|graven|sculpted|carved |carven +(adj)|modeled|sculptural|sculpturesque|shapely +sculpturer|1 +(noun)|sculptor|carver|statue maker|artist|creative person +sculpturesque|1 +(adj)|modeled|sculptural|sculptured|shapely +scum|2 +(noun)|trash|rabble|riffraff|ragtag|ragtag and bobtail +(noun)|film +scum bag|1 +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|so-and-so|git|unpleasant person|disagreeable person +scumble|1 +(noun)|application|coating|covering +scummy|2 +(adj)|abject|low|low-down|miserable|scurvy|contemptible +(adj)|dirty |soiled|unclean +scunner|1 +(noun)|dislike +scup|4 +(noun)|saltwater fish +(noun)|porgy|saltwater fish +(noun)|southern porgy|southern scup|Stenotomus aculeatus|porgy +(noun)|northern porgy|northern scup|Stenotomus chrysops|porgy +scupper|3 +(noun)|drain|drainpipe|waste pipe +(verb)|ambush|bushwhack|waylay|lurk|ambuscade|lie in wait|wait +(verb)|queer|expose|endanger|peril|affect|impact|bear upon|bear on|touch on|touch +scuppernong|1 +(noun)|muscadine|bullace grape +scurf|2 +(noun)|bit|chip|flake|fleck|scrap +(noun)|scale|exfoliation|bit|chip|flake|fleck|scrap +scurfy|2 +(adj)|bit|chip|flake|fleck|scrap +(adj)|lepidote|leprose|scabrous|scaly|rough |unsmooth +scurrility|1 +(noun)|billingsgate|abuse|insult|revilement|contumely|vilification +scurrilous|1 +(adj)|abusive|insulting|opprobrious|scornful|offensive +scurry|2 +(noun)|scamper|scramble|haste|hurry|rush|rushing +(verb)|scamper|skitter|scuttle|run +scurrying|1 +(adj)|hurrying|fast +scurvily|1 +(adv)|meanly|basely +scurvy|2 +(adj)|abject|low|low-down|miserable|scummy|contemptible +(noun)|scorbutus|avitaminosis|hypovitaminosis +scurvy grass|2 +(noun)|common scurvy grass|Cochlearia officinalis|cress|cress plant +(noun)|winter cress|St. Barbara's herb|cress|cress plant +scut|1 +(noun)|tail +scut work|1 +(noun)|shitwork|disagreeable task|disagreeable chore +scutch grass|1 +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|star grass|Cynodon dactylon|grass +scutcheon|2 +(noun)|finger plate|escutcheon|protective covering|protective cover|protection +(noun)|escutcheon|shield|buckler +scute|1 +(noun)|protective covering +scutellaria|1 +(noun)|Scutellaria|genus Scutellaria|asterid dicot genus +scutellaria lateriflora|1 +(noun)|blue pimpernel|blue skullcap|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb|herbaceous plant +scutigera|1 +(noun)|Scutigera|genus Scutigera|arthropod genus +scutigera coleoptrata|1 +(noun)|house centipede|Scutigera coleoptrata|centipede +scutigerella|1 +(noun)|Scutigerella|genus Scutigerella|arthropod genus +scutigerella immaculata|1 +(noun)|garden centipede|garden symphilid|symphilid|Scutigerella immaculata|arthropod +scutigeridae|1 +(noun)|Scutigeridae|family Scutigeridae|arthropod family +scuttle|3 +(noun)|coal scuttle|container +(noun)|hatchway|opening|entrance|entranceway|entryway|entry|entree +(verb)|scurry|scamper|skitter|run +scuttlebutt|1 +(noun)|gossip|comment|report|account +scyliorhinidae|1 +(noun)|Scyliorhinidae|family Scyliorhinidae|fish family +scylla|1 +(noun)|Scylla|mythical being +scyphozoa|2 +(noun)|Scyphozoa|class Scyphozoa|class +(noun)|scyphozoan|coelenterate|cnidarian +scyphozoan|1 +(noun)|coelenterate|cnidarian +scyphus|1 +(noun)|cup +scythe|2 +(noun)|edge tool +(verb)|mow|cut down +scythia|1 +(noun)|Scythia|geographical area|geographic area|geographical region|geographic region +scythian|3 +(adj)|Scythian|nomad|Iranian|Iranian language +(noun)|Scythian|nomad +(noun)|Scythian|Iranian|Iranian language +scythian lamb|1 +(noun)|Scythian lamb|Cibotium barometz|tree fern +sd|1 +(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state +se|2 +(noun)|selenium|Se|atomic number 34|chemical element|element|antioxidant +(noun)|southeast|sou'-east|SE|compass point|point +sea|4 +(adj)|sea |deep-sea|oceangoing|seafaring|seagoing|oversea|overseas|offshore|shipboard|oceanic|suboceanic|subocean +(noun)|body of water|water +(noun)|ocean|large indefinite quantity|large indefinite amount +(noun)|turbulent flow +sea-coast|2 +(noun)|seashore|coast|seacoast|shore +(noun)| +sea-duty|1 +(noun)|service abroad|shipboard duty|assignment|duty assignment +sea-ear|1 +(noun)|ormer|Haliotis tuberculata|abalone|ear-shell +sea-god|1 +(noun)|deity|divinity|god|immortal +sea-green|1 +(adj)|chromatic +sea-lavender family|1 +(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|dicot family|magnoliopsid family +sea-lettuce family|1 +(noun)|Ulvaceae|family Ulvaceae|protoctist family +sea-level|1 +(adj)|low-lying|lowland +sea-poose|1 +(noun)|undertow|sea puss|sea-puss|sea purse|sea-purse|undertide|undercurrent +sea-purse|2 +(noun)|undertow|sea puss|sea-puss|sea purse|sea-poose|undertide|undercurrent +(noun)| +sea-puss|2 +(noun)|undertow|sea puss|sea purse|sea-purse|sea-poose|undertide|undercurrent +(noun)| +sea-rocket|1 +(noun)|Cakile maritima|herb|herbaceous plant +sea anchor|1 +(noun)|drogue|restraint|constraint +sea anemone|1 +(noun)|anemone|anthozoan|actinozoan +sea animal|1 +(noun)|marine animal|marine creature|sea creature|animal|animate being|beast|brute|creature|fauna +sea ash|1 +(noun)|toothache tree|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash +sea aster|1 +(noun)|sea starwort|Aster tripolium|aster +sea bass|2 +(noun)|bass|saltwater fish +(noun)|serranid fish|serranid|food fish +sea bathing|1 +(noun)|bathing +sea bird|2 +(noun)|seabird|seafowl|aquatic bird +(noun)| +sea biscuit|1 +(noun)|hardtack|pilot biscuit|pilot bread|ship biscuit|biscuit +sea boat|1 +(noun)|boat +sea bottom|1 +(noun)|ocean floor|ocean bottom|seabed|Davy Jones's locker|Davy Jones|bed|bottom +sea bream|2 +(noun)|bream|saltwater fish +(noun)|bream|percoid fish|percoid|percoidean +sea breeze|1 +(noun)|breeze|zephyr|gentle wind|air +sea captain|1 +(noun)|master|captain|skipper|officer|ship's officer +sea catfish|1 +(noun)|catfish|siluriform fish +sea change|1 +(noun)|transformation|transmutation|shift +sea chantey|1 +(noun)|chantey|chanty|shanty|work song +sea chest|1 +(noun)|chest +sea chub|1 +(noun)|percoid fish|percoid|percoidean +sea coal|1 +(noun)|bituminous coal|soft coal +sea cole|1 +(noun)|sea kale|Crambe maritima|herb|herbaceous plant +sea cow|1 +(noun)|sirenian mammal|sirenian|aquatic mammal +sea cradle|1 +(noun)|chiton|coat-of-mail shell|polyplacophore|mollusk|mollusc|shellfish +sea crawfish|1 +(noun)|spiny lobster|langouste|rock lobster|crawfish|crayfish|lobster +sea creature|1 +(noun)|marine animal|marine creature|sea animal|animal|animate being|beast|brute|creature|fauna +sea cucumber|1 +(noun)|holothurian|echinoderm +sea dahlia|1 +(noun)|Coreopsis maritima|coreopsis|tickseed|tickweed|tick-weed +sea dog|1 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sailor|crewman +sea duck|1 +(noun)|duck +sea eagle|2 +(noun)|osprey|fish hawk|fish eagle|Pandion haliaetus|hawk +(noun)|eagle|bird of Jove +sea elephant|1 +(noun)|elephant seal|earless seal|true seal|hair seal +sea eryngium|1 +(noun)|sea holly|sea holm|Eryngium maritimum|shrub|bush +sea fan|1 +(noun)|gorgonian|gorgonian coral +sea feather|1 +(noun)|gorgonian|gorgonian coral +sea gooseberry|1 +(noun)|ctenophore|comb jelly +sea green|1 +(noun)|green|greenness|viridity +sea gull|2 +(noun)|gull|seagull|larid +(noun)| +sea hare|1 +(noun)|Aplysia punctata|gastropod|univalve +sea holly|2 +(noun)|sea holm|sea eryngium|Eryngium maritimum|shrub|bush +(noun)|bear's breech|bear's breeches|Acanthus mollis|acanthus +sea holm|1 +(noun)|sea holly|sea eryngium|Eryngium maritimum|shrub|bush +sea horse|3 +(noun)|walrus|seahorse|pinniped mammal|pinniped|pinnatiped +(noun)|seahorse|pipefish|needlefish +(noun)| +sea island cotton|1 +(noun)|tree cotton|Gossypium barbadense|cotton|cotton plant +sea kale|1 +(noun)|sea cole|Crambe maritima|herb|herbaceous plant +sea king|1 +(noun)|pirate|buccaneer|sea robber|sea rover +sea ladder|1 +(noun)|sea steps|ladder +sea lamprey|1 +(noun)|Petromyzon marinus|lamprey|lamprey eel|lamper eel +sea lane|1 +(noun)|seaway|ship route|trade route|lane +sea lavender|1 +(noun)|marsh rosemary|statice|subshrub|suffrutex +sea lawyer|1 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +sea lettuce|1 +(noun)|laver|green algae|chlorophyte +sea level|1 +(noun)|water level +sea lily|1 +(noun)|crinoid +sea lion|1 +(noun)|eared seal +sea louse|1 +(noun)|sea slater|isopod +sea lyme grass|1 +(noun)|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass +sea mat|1 +(noun)|bryozoan|polyzoan|sea moss|moss animal|invertebrate +sea mew|1 +(noun)|mew|mew gull|Larus canus|gull|seagull|sea gull +sea mile|1 +(noun)|mile|nautical linear unit +sea milkwort|1 +(noun)|sea trifoly|black saltwort|Glaux maritima|herb|herbaceous plant +sea moss|2 +(noun)|bryozoan|polyzoan|sea mat|moss animal|invertebrate +(noun)|red algae +sea mouse|1 +(noun)|polychaete|polychete|polychaete worm|polychete worm +sea nymph|1 +(noun)|water nymph +sea of azof|1 +(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay +sea of azoff|1 +(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay +sea of azov|1 +(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay +sea of cortes|1 +(noun)|Gulf of California|Sea of Cortes|gulf +sea of japan|1 +(noun)|Sea of Japan|sea +sea of marmara|1 +(noun)|Marmara|Sea of Marmara|Marmora|Sea of Marmora|sea +sea of marmora|1 +(noun)|Marmara|Sea of Marmara|Marmora|Sea of Marmora|sea +sea of okhotsk|1 +(noun)|Sea of Okhotsk|sea +sea onion|2 +(noun)|sea squill|squill|Urginea maritima|liliaceous plant +(noun)|spring squill|Scilla verna|scilla|squill +sea otter|1 +(noun)|Enhydra lutris|musteline mammal|mustelid|musteline +sea pea|1 +(noun)|beach pea|Lathyrus maritimus|Lathyrus japonicus|wild pea +sea pen|1 +(noun)|anthozoan|actinozoan +sea pink|1 +(noun)|cliff rose|Armeria maritima|thrift +sea poacher|1 +(noun)|poacher|sea poker|scorpaenoid|scorpaenoid fish +sea poker|1 +(noun)|poacher|sea poacher|scorpaenoid|scorpaenoid fish +sea poppy|1 +(noun)|horn poppy|horned poppy|yellow horned poppy|Glaucium flavum|flower +sea power|2 +(noun)|military capability|military strength|strength|military posture|posture +(noun)|state|nation|country|land|commonwealth|res publica|body politic +sea purse|2 +(noun)|undertow|sea puss|sea-puss|sea-purse|sea-poose|undertide|undercurrent +(noun)| +sea puss|2 +(noun)|undertow|sea-puss|sea purse|sea-purse|sea-poose|undertide|undercurrent +(noun)| +sea raven|1 +(noun)|Hemitripterus americanus|sculpin +sea robber|1 +(noun)|pirate|buccaneer|sea rover|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter +sea robin|2 +(noun)|searobin|gurnard +(noun)| +sea room|1 +(noun)|room|way|elbow room +sea rover|1 +(noun)|pirate|buccaneer|sea robber|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter +sea scallop|2 +(noun)|scallop|scollop|escallop +(noun)|giant scallop|Pecten magellanicus|scallop|scollop|escallop +sea scooter|1 +(noun)|water scooter|scooter|motorboat|powerboat +sea scorpion|1 +(noun)|scorpionfish|scorpion fish|scorpaenid|scorpaenid fish +sea scout|1 +(noun)|boy scout +sea serpent|1 +(noun)|legendary creature +sea slater|1 +(noun)|sea louse|isopod +sea slug|1 +(noun)|nudibranch|gastropod|univalve +sea snail|2 +(noun)|snailfish|seasnail|Liparis liparis|scorpaenoid|scorpaenoid fish +(noun)|seasnail|gastropod|univalve +sea snake|1 +(noun)|snake|serpent|ophidian +sea spider|1 +(noun)|pycnogonid|arthropod +sea spray|1 +(noun)|spray +sea spurry|1 +(noun)|sand spurry|Spergularia rubra|weed +sea squab|1 +(noun)|blowfish|puffer|saltwater fish +sea squill|1 +(noun)|sea onion|squill|Urginea maritima|liliaceous plant +sea squirt|1 +(noun)|ascidian +sea star|1 +(noun)|starfish|echinoderm +sea starwort|1 +(noun)|sea aster|Aster tripolium|aster +sea steps|1 +(noun)|sea ladder|ladder +sea swallow|1 +(noun)|Sterna hirundo|tern +sea tang|1 +(noun)|tang|seaweed +sea tangle|1 +(noun)|tang|kelp +sea trifoly|1 +(noun)|sea milkwort|black saltwort|Glaux maritima|herb|herbaceous plant +sea trout|3 +(noun)|salmon trout|trout +(noun)|sciaenid fish|sciaenid +(noun)|brown trout|salmon trout|Salmo trutta +sea turtle|1 +(noun)|marine turtle|turtle +sea urchin|1 +(noun)|echinoderm +sea wolf|1 +(noun)|killer whale|killer|orca|grampus|Orcinus orca|dolphin +sea wormwood|1 +(noun)|Seriphidium maritimum|Artemisia maritima|wormwood +sea wrack|2 +(noun)|eelgrass|grass wrack|Zostera marina|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|wrack|seaweed +seabag|1 +(noun)|drawstring bag +seabeach sandwort|1 +(noun)|Arenaria peploides|sandwort +seabed|1 +(noun)|ocean floor|ocean bottom|sea bottom|Davy Jones's locker|Davy Jones|bed|bottom +seabird|1 +(noun)|sea bird|seafowl|aquatic bird +seaboard|1 +(noun)|seaside|seashore|coast|seacoast|sea-coast +seaborg|1 +(noun)|Seaborg|Glenn T. Seaborg|Gelnn Theodore Seaborg|chemist +seaborne|1 +(adj)|mobile +seacoast|1 +(noun)|seashore|coast|sea-coast|shore +seafarer|1 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|gob|sea dog|sailor|crewman +seafaring|3 +(adj)|oceangoing|seagoing|sea +(noun)|navigation|sailing|employment|work +(noun)|water travel|travel|traveling|travelling +seafood|1 +(noun)|food +seafood newburg|1 +(noun)|seafood Newburg|dish +seafood sauce|1 +(noun)|cocktail sauce|sauce +seafowl|1 +(noun)|seabird|sea bird|aquatic bird +seafront|1 +(noun)|waterfront +seagirt|1 +(adj)|bordered +seagoing|1 +(adj)|oceangoing|seafaring|sea +seagrass|1 +(noun)|seaweed +seagull|1 +(noun)|gull|sea gull|larid +seahorse|2 +(noun)|walrus|sea horse|pinniped mammal|pinniped|pinnatiped +(noun)|sea horse|pipefish|needlefish +seal|15 +(noun)|sealing wax|fastener|fastening|holdfast|fixing +(noun)|stamp|device +(noun)|sealskin|fur|pelt +(noun)|Navy SEAL|SEAL|bluejacket|navy man|sailor|sailor boy +(noun)|stamp|impression +(noun)|cachet|seal of approval|award|accolade|honor|honour|laurels +(noun)|coating|coat +(noun)|fastener|fastening|holdfast|fixing +(noun)|pinniped mammal|pinniped|pinnatiped +(verb)|close|fill up +(verb)|seal off|close|shut +(verb)|decide|make up one's mind|determine +(verb)|affix|stick on +(verb)|varnish|coat|surface +(verb)|hunt|run|hunt down|track down +seal bomb|1 +(noun)|explosive device +seal in|1 +(verb)|lock in|confine +seal limbs|1 +(noun)|phocomelia|meromelia +seal of approval|1 +(noun)|cachet|seal|award|accolade|honor|honour|laurels +seal off|2 +(verb)|seal|close|shut +(verb)|blockade|besiege|beleaguer|surround|hem in|circumvent +seal oil|1 +(noun)|animal oil +seal ring|1 +(noun)|signet ring|ring|band +sealant|1 +(noun)|sealer|sealing material +sealed|8 +(adj)|sealed |certain +(adj)|sealed |corked|stamped|unopened|sealed off|closed +(adj)|concealed +(adj)|irrevocable |irrevokable +(adj)|paved +(adj)|covered +(adj)|plastered|covered +(adj)|tight +sealed instrument|1 +(noun)|contract under seal|special contract|contract +sealed off|1 +(adj)|sealed +sealer|2 +(noun)|sealant|sealing material +(noun)|official|functionary +sealing|1 +(noun)|waterproofing|protection +sealing material|1 +(noun)|material|stuff +sealing wax|1 +(noun)|seal|fastener|fastening|holdfast|fixing +sealskin|2 +(noun)|seal|fur|pelt +(noun)|garment +sealskin tent|1 +(noun)|tupik|tupek|tent|collapsible shelter +sealyham|1 +(noun)|Sealyham terrier|Sealyham|Welsh terrier +sealyham terrier|1 +(noun)|Sealyham terrier|Sealyham|Welsh terrier +seam|4 +(noun)|joint +(noun)|wrinkle|furrow|crease|crinkle|line|depression|impression|imprint +(noun)|bed|stratum +(verb)|join|bring together +seaman|2 +(noun)|mariner|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist +seamanlike|1 +(adj)|seamanlike |seamanly +seamanly|1 +(adj)|seamanlike +seamanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +seamed|2 +(adj)|seamed |sewed|sewn|stitched +(adj)|lined|rough |unsmooth +seamless|3 +(adj)|seamless |broadloom|circular-knit|unseamed +(adj)|unlined|unseamed|smooth +(adj)|coherent +seamount|1 +(noun)|mountain|mount +seamster|1 +(noun)|tailor|sartor|garmentmaker|garment-worker|garment worker +seamstress|1 +(noun)|dressmaker|modiste|needlewoman|sempstress|garmentmaker|garment-worker|garment worker +seamy|1 +(adj)|seedy|sleazy|sordid|squalid|disreputable +sean o'casey|1 +(noun)|O'Casey|Sean O'Casey|dramatist|playwright +seanad|1 +(noun)|Seanad Eireann|Seanad|house +seanad eireann|1 +(noun)|Seanad Eireann|Seanad|house +seance|1 +(noun)|sitting|session|meeting|get together +seaplane|2 +(noun)|hydroplane|airplane|aeroplane|plane +(verb)|hydroplane|fly|aviate|pilot +seaport|1 +(noun)|haven|harbor|harbour|port +seaquake|1 +(noun)|submarine earthquake|earthquake|quake|temblor|seism +sear|4 +(adj)|dried-up|sere|shriveled|shrivelled|withered|dry +(verb)|scorch|heat|heat up +(verb)|scorch|singe|burn|combust +(verb)|parch|dry|dry out +search|9 +(noun)|hunt|hunting|activity +(noun)|investigation|investigating +(noun)|lookup|operation +(noun)|higher cognitive process +(noun)|examination|scrutiny +(verb)|seek|look for +(verb)|look|examine|see +(verb)|research|explore|investigate|look into +(verb)|examine|see +search and destroy mission|1 +(noun)|mission|military mission +search and rescue mission|1 +(noun)|rescue|deliverance|delivery|saving +search engine|1 +(noun)|program|programme|computer program|computer programme +search language|1 +(noun)|command language|query language|source language +search mission|1 +(noun)|mission|military mission +search party|1 +(noun)|party|company +search warrant|1 +(noun)|warrant +searcher|3 +(noun)|seeker|quester|person|individual|someone|somebody|mortal|human|soul +(noun)|official|functionary +(noun)|searcher beetle|Calosoma scrutator|calosoma +searcher beetle|1 +(noun)|searcher|Calosoma scrutator|calosoma +searching|3 +(adj)|inquisitory|probing|inquiring +(adj)|trenchant|intelligent +(adj)|exploratory |explorative +searching fire|1 +(noun)|fire|firing +searchlight|1 +(noun)|light|light source +seared|1 +(adj)|cooked +searing iron|1 +(noun)|cautery|cauterant +searobin|1 +(noun)|sea robin|gurnard +seascape|2 +(noun)|scenery +(noun)|painting|picture +seashell|1 +(noun)|shell +seashore|1 +(noun)|coast|seacoast|sea-coast|shore +seashore mallow|1 +(noun)|mallow +seasick|1 +(adj)|airsick|air sick|carsick|ill |sick +seasickness|1 +(noun)|mal de mer|naupathia|motion sickness|kinetosis +seaside|1 +(noun)|seaboard|seashore|coast|seacoast|sea-coast +seaside alder|1 +(noun)|Alnus maritima|alder|alder tree +seaside centaury|1 +(noun)|centaury +seaside daisy|1 +(noun)|beach aster|Erigeron glaucous|fleabane +seaside goldenrod|1 +(noun)|beach goldenrod|Solidago sempervirens|goldenrod +seaside mahoe|1 +(noun)|portia tree|bendy tree|Thespesia populnea|tulipwood tree +seaside scrub oak|1 +(noun)|myrtle oak|Quercus myrtifolia|scrub oak +seasnail|2 +(noun)|snailfish|sea snail|Liparis liparis|scorpaenoid|scorpaenoid fish +(noun)|gastropod|univalve +season|6 +(noun)|time period|period of time|period +(noun)|time of year|time period|period of time|period +(noun)|time period|period of time|period +(verb)|flavor|flavour +(verb)|harden|toughen +(verb)|temper|mollify|weaken +season ticket|1 +(noun)|commutation ticket|ticket +seasonable|2 +(adj)|seasonable +(adj)|timely|well-timed|well timed|opportune +seasonableness|1 +(noun)|timeliness|timing +seasonably|1 +(adv)|timely|well-timed|apropos +seasonal|1 +(adj)|seasonal +seasonal adjustment|1 +(noun)|allowance|adjustment +seasoned|3 +(adj)|seasoned |cured +(adj)|flavored|flavoured|tasteful +(adj)|veteran|experienced +seasoned salt|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +seasoner|2 +(noun)|cook +(noun)|flavorer|flavourer|flavoring|flavouring|seasoning|ingredient|fixings +seasoning|2 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|ingredient|fixings +(noun)|change of state +seat|11 +(noun)|place|space +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|furniture|piece of furniture|article of furniture +(noun)|support +(noun)|center|centre|middle|heart|eye +(noun)|cloth covering +(verb)|sit|sit down|put|set|place|pose|position|lay +(verb)|accommodate|hold|admit +(verb)|induct|invest|install +(verb)|supply|provide|render|furnish +(verb)|supply|provide|render|furnish +seat belt|1 +(noun)|safety belt|life belt|safety harness +seat cushion|1 +(noun)|cushion +seated|1 +(adj)|seated |sitting +seating|2 +(noun)|seats|seating room|seating area|room|way|elbow room +(noun)|service +seating area|1 +(noun)|seating|seats|seating room|room|way|elbow room +seating capacity|1 +(noun)|capaciousness|roominess|spaciousness|commodiousness +seating room|1 +(noun)|seating|seats|seating area|room|way|elbow room +seats|7 +(noun)|seating|seating room|seating area|room|way|elbow room +(noun)|seat|place|space +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|seat|furniture|piece of furniture|article of furniture +(noun)|seat|support +(noun)|seat|center|centre|middle|heart|eye +(noun)|seat|cloth covering +seattle|1 +(noun)|Seattle|city|metropolis|urban center|port of entry|point of entry +seattle slew|1 +(noun)|Seattle Slew|thoroughbred +seawall|1 +(noun)|breakwater|groin|groyne|mole|bulwark|jetty|barrier +seaward|3 +(adj)|inshore |onshore +(adj)|coastal +(adv)|seawards|asea|toward the sea +seawards|1 +(adv)|seaward|asea|toward the sea +seawater|1 +(noun)|saltwater|brine|water|H2O +seaway|1 +(noun)|sea lane|ship route|trade route|lane +seaweed|1 +(noun)|alga|algae +seaworthiness|1 +(noun)|fitness|soundness +seaworthy|1 +(adj)|seaworthy |caulked|fitted out|equipped|leakproof|watertight|tight +seb|1 +(noun)|staphylococcal enterotoxin B|SEB|staphylococcal enterotoxin|bioweapon|biological weapon|bioarm +sebaceous|1 +(adj)|greasy|oily|oleaginous|fatty |fat +sebaceous cyst|1 +(noun)|pilar cyst|wen|steatocystoma|cyst +sebaceous follicle|1 +(noun)|sebaceous gland|glandulae sebaceae|oil gland +sebaceous gland|1 +(noun)|sebaceous follicle|glandulae sebaceae|oil gland +sebacic acid|1 +(noun)|decanedioic acid|carboxylic acid +sebastian cabot|1 +(noun)|Cabot|Sebastian Cabot|explorer|adventurer|cartographer|map maker +sebastian vizcaino|1 +(noun)|Vizcaino|Sebastian Vizcaino|explorer|adventurer +sebastiana|1 +(noun)|Sebastiana|genus Sebastiana|rosid dicot genus +sebastodes|1 +(noun)|Sebastodes|genus Sebastodes|fish genus +sebastodes caurinus|1 +(noun)|copper rockfish|Sebastodes caurinus|rockfish +sebastodes marinus|1 +(noun)|rosefish|ocean perch|Sebastodes marinus|rockfish +sebastodes miniatus|1 +(noun)|vermillion rockfish|rasher|Sebastodes miniatus|rockfish +sebastodes ruberrimus|1 +(noun)|red rockfish|Sebastodes ruberrimus|rockfish +sebastopol|1 +(noun)|Sebastopol|Sevastopol|city|metropolis|urban center +sebe|1 +(noun)|southeast by east|SEbE|compass point|point +seborrhea|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +seborrheic dermatitis|1 +(noun)|seborrheic eczema|dermatitis +seborrheic eczema|1 +(noun)|seborrheic dermatitis|dermatitis +seborrheic keratosis|1 +(noun)|keratosis +sebs|2 +(noun)|southeast by south|SEbS|compass point|point +(noun)|staphylococcal enterotoxin B|SEB|staphylococcal enterotoxin|bioweapon|biological weapon|bioarm +sebum|1 +(noun)|secretion +sec|4 +(adj)|unsweet|dry +(noun)|second|s|time unit|unit of time +(noun)|secant|trigonometric function|circular function +(noun)|Securities and Exchange Commission|SEC|independent agency +secale|1 +(noun)|Secale|genus Secale|monocot genus|liliopsid genus +secale cereale|1 +(noun)|rye|Secale cereale|cereal|cereal grass +secant|2 +(noun)|straight line +(noun)|sec|trigonometric function|circular function +secateurs|1 +(noun)|pruning shears +secede|1 +(verb)|splinter|break away|separate|part|split up|split|break|break up +secern|1 +(verb)|distinguish|separate|differentiate|secernate|severalize|severalise|tell|tell apart|identify|place +secernate|1 +(verb)|distinguish|separate|differentiate|secern|severalize|severalise|tell|tell apart|identify|place +secernment|2 +(noun)|secretion|organic process|biological process +(noun)|discrimination|basic cognitive process +secession|3 +(noun)|sezession|school|artistic movement|art movement +(noun)|Secession|separation +(noun)|withdrawal|separation +secessionism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +secessionist|1 +(noun)|advocate|advocator|proponent|exponent +sechuana|1 +(noun)|Tswana|Setswana|Sechuana|Sotho +seckel|1 +(noun)|seckel pear|pear +seckel pear|1 +(noun)|seckel|pear +seclude|1 +(verb)|sequester|sequestrate|withdraw|isolate|insulate +secluded|2 +(adj)|privy|secret|private +(adj)|cloistered|reclusive|sequestered|private +seclusion|2 +(noun)|privacy|privateness|reclusiveness|isolation +(noun)|separation +secobarbital|1 +(noun)|secobarbital sodium|Seconal|red devil|barbiturate +secobarbital sodium|1 +(noun)|secobarbital|Seconal|red devil|barbiturate +seconal|1 +(noun)|secobarbital sodium|secobarbital|Seconal|red devil|barbiturate +second|17 +(adj)|2nd|2d|ordinal +(adj)|intermediate +(adj)|second +(adj)|forward +(noun)|sec|s|time unit|unit of time +(noun)|moment|minute|bit|time +(noun)|second base|position +(noun)|moment|minute|instant|point|point in time +(noun)|rank +(noun)|arcsecond|angular unit +(noun)|attendant|attender|tender +(noun)|secondment|endorsement|indorsement|agreement +(noun)|second gear|gear|gear mechanism +(noun)|irregular|merchandise|wares|product +(verb)|back|endorse|indorse|support|back up +(verb)|transfer|reassign +(adv)|secondly +second-best|1 +(adj)|best +second-class|1 +(adj)|inferior +second-degree burn|1 +(noun)|burn +second-guess|2 +(verb)|outguess|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|comment +second-hand speech|1 +(noun)|conversation +second-hand store|1 +(noun)|thriftshop|shop|store +second-in-command|1 +(noun)|deputy|lieutenant +second-place finish|1 +(noun)|runner-up finish|finish +second-rate|1 +(adj)|mediocre|poor|inferior +second-rater|1 +(noun)|mediocrity|person|individual|someone|somebody|mortal|human|soul +second-sighted|1 +(adj)|clairvoyant|precognitive|prophetic |prophetical +second-string|1 +(adj)|substitute|secondary +second-year|1 +(adj)|sophomore|intermediate +second advent|1 +(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation +second adventism|1 +(noun)|Adventism|Second Adventism|Christianity|Christian religion +second adventist|1 +(noun)|Adventist|Second Adventist|Christian +second balcony|1 +(noun)|family circle|upper balcony|peanut gallery|area +second banana|2 +(noun)|straight man|performer|performing artist +(noun)|second fiddle|subordinate|subsidiary|underling|foot soldier +second base|2 +(noun)|base|bag +(noun)|second|position +second baseman|1 +(noun)|second sacker|infielder +second battle of ypres|1 +(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle +second best|1 +(noun)|runner-up|rival|challenger|competitor|competition|contender +second childhood|1 +(noun)|dotage|senility|old age|years|age|eld|geezerhood +second class|3 +(noun)|rank +(noun)|inferiority|low quality +(noun)|Cabin class|accommodation +second coming|1 +(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation +second coming of christ|1 +(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation +second cousin|1 +(noun)|relative|relation +second cranial nerve|1 +(noun)|optic nerve|nervus opticus|optic tract|cranial nerve +second crusade|1 +(noun)|Second Crusade|Crusade +second deck|1 +(noun)|main deck|deck +second earl grey|1 +(noun)|Grey|Charles Grey|Second Earl Grey|statesman|solon|national leader +second earl of chatham|1 +(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman|solon|national leader +second earl of guilford|1 +(noun)|North|Frederick North|Second Earl of Guilford|statesman|solon|national leader +second empire|1 +(noun)|Second Empire|empire +second epistel of john|1 +(noun)|Second Epistel of John|II John|book +second epistle of paul the apostle to the corinthians|1 +(noun)|Second Epistle of Paul the Apostle to the Corinthians|Second Epistle to the Corinthians|II Corinthians|book +second epistle of paul the apostle to the thessalonians|1 +(noun)|Second Epistle of Paul the Apostle to the Thessalonians|Second Epistle to the Thessalonians|II Thessalonians|book +second epistle of paul the apostle to timothy|1 +(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|book +second epistle of peter|1 +(noun)|Second Epistle of Peter|II Peter|book +second epistle to the corinthians|1 +(noun)|Second Epistle of Paul the Apostle to the Corinthians|Second Epistle to the Corinthians|II Corinthians|book +second epistle to the thessalonians|1 +(noun)|Second Epistle of Paul the Apostle to the Thessalonians|Second Epistle to the Thessalonians|II Thessalonians|book +second epistle to timothy|1 +(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|book +second estate|1 +(noun)|lords temporal|nobility|aristocracy +second fiddle|2 +(noun)|second banana|subordinate|subsidiary|underling|foot soldier +(noun)|function|office|part|role +second gear|1 +(noun)|second|gear|gear mechanism +second growth|1 +(noun)|forest|wood|woods +second half|1 +(noun)|last half|half +second hand|3 +(noun)|mediator|go-between|intermediator|intermediary|intercessor +(noun)|hand +(adv)|secondhand +second joint|1 +(noun)|thigh|helping|portion|serving +second law of motion|1 +(noun)|Newton's second law of motion|Newton's second law|Newton's law of motion|Newton's law|law of motion +second law of thermodynamics|1 +(noun)|law of thermodynamics +second lieutenant|1 +(noun)|lieutenant +second marquis of rockingham|1 +(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman|solon|national leader +second moment|1 +(noun)|moment +second mortgage|1 +(noun)|mortgage +second nature|1 +(noun)|habit|use|wont +second period|1 +(noun)|playing period|period of play|play +second person|1 +(noun)|person +second power|1 +(noun)|square|number +second reading|1 +(noun)|presentation +second reich|1 +(noun)|Hohenzollern empire|Second Reich|Reich +second sacker|1 +(noun)|second baseman|infielder +second sight|1 +(noun)|clairvoyance|extrasensory perception|E.S.P.|ESP|psychic phenomena|psychic phenomenon|parapsychology +second stomach|1 +(noun)|reticulum|stomach|tummy|tum|breadbasket +second thought|1 +(noun)|reconsideration|afterthought|rethink|reversal|change of mind|flip-flop|turnabout|turnaround +second trimester|1 +(noun)|trimester +second wind|2 +(noun)|energy|push|get-up-and-go +(noun)|breathing|external respiration|respiration|ventilation +second world war|1 +(noun)|World War II|World War 2|Second World War|world war +secondary|7 +(adj)|secondary |alternate|alternative|auxiliary|subsidiary|supplemental|supplementary|collateral|indirect|secondhand|second-string|substitute|standby|tributary|utility|substitute|vicarious|thirdhand|inessential|unessential|unoriginal +(adj)|junior-grade|inferior|lower|lower-ranking|lowly|petty|subaltern|subordinate|junior +(adj)|incidental |incident +(adj)|minor +(adj)|subordinate |low-level +(noun)|formation +(noun)|secondary coil|secondary winding|coil +secondary amenorrhea|1 +(noun)|amenorrhea|amenorrhoea|amenia +secondary cell|1 +(noun)|storage cell|cell|electric cell +secondary censorship|1 +(noun)|armed forces censorship +secondary coil|1 +(noun)|secondary winding|secondary|coil +secondary dentition|1 +(noun)|dentition|teeth +secondary diagonal|1 +(noun)|diagonal +secondary dysmenorrhea|1 +(noun)|dysmenorrhea +secondary education|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +secondary emission|1 +(noun)|emission +secondary hypertension|1 +(noun)|high blood pressure|hypertension +secondary modern school|1 +(noun)|secondary school|lyceum|lycee|Gymnasium|middle school +secondary school|1 +(noun)|lyceum|lycee|Gymnasium|middle school|school +secondary sex character|1 +(noun)|secondary sex characteristic|sex characteristic|sex character +secondary sex characteristic|1 +(noun)|secondary sex character|sex characteristic|sex character +secondary storage|1 +(noun)|auxiliary storage|external storage|memory device|storage device +secondary syphilis|1 +(noun)|syphilis|syph|pox +secondary winding|1 +(noun)|secondary coil|secondary|coil +seconder|1 +(noun)|supporter|protagonist|champion|admirer|booster|friend +secondhand|2 +(adj)|secondary +(adj)|used|old +secondly|1 +(adv)|second +secondment|2 +(noun)|second|endorsement|indorsement|agreement +(noun)|reassignment +secondo|1 +(noun)|part|voice +secotiaceae|1 +(noun)|Secotiaceae|family Secotiaceae|fungus family +secotiales|1 +(noun)|Secotiales|order Secotiales|fungus order +secpar|1 +(noun)|parsec|astronomy unit +secrecy|2 +(noun)|secretiveness|silence|uncommunicativeness +(noun)|privacy|privateness|concealment|isolation +secret|14 +(adj)|concealed +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|surreptitious|undercover|underground|covert +(adj)|unavowed|unacknowledged +(adj)|covert +(adj)|private|inward +(adj)|hidden|concealed +(adj)|privy|secluded|private +(adj)|closet|confidential|private +(adj)|closet|covert +(adj)|mysterious|mystic|mystical|occult|orphic|esoteric +(adj)|classified +(noun)|information|info +(noun)|arcanum|information|info +(noun)|mystery|enigma|closed book|perplexity +secret agent|1 +(noun)|intelligence officer|intelligence agent|operative|agent +secret approval|1 +(noun)|connivance|tacit consent|approval|commendation +secret ballot|1 +(noun)|vote|ballot|voting|balloting +secret code|1 +(noun)|cipher|cypher|cryptograph|code +secret intelligence service|1 +(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency +secret plan|1 +(noun)|plot|game|scheme|strategy +secret police|1 +(noun)|police|police force|constabulary|law +secret service|1 +(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency +secret society|1 +(noun)|association +secret writing|2 +(noun)|cryptogram|cryptograph|writing|written material|piece of writing +(noun)|cryptography|coding|writing|committal to writing +secretaire|1 +(noun)|secretary|writing table|escritoire|desk +secretarial|1 +(adj)|assistant|helper|help|supporter +secretarial assistant|1 +(noun)|secretary|assistant|helper|help|supporter +secretarial school|1 +(noun)|school +secretariat|2 +(noun)|secretariate|administrative unit|administrative body +(noun)|Secretariat|thoroughbred +secretariate|1 +(noun)|secretariat|administrative unit|administrative body +secretary|4 +(noun)|head|chief|top dog +(noun)|secretarial assistant|assistant|helper|help|supporter +(noun)|repository|confidant|intimate +(noun)|writing table|escritoire|secretaire|desk +secretary bird|1 +(noun)|Sagittarius serpentarius|bird of prey|raptor|raptorial bird +secretary general|1 +(noun)|Secretary General|administrator|executive +secretary of agriculture|2 +(noun)|Secretary of Agriculture|Agriculture Secretary|secretary +(noun)|Secretary of Agriculture|Agriculture Secretary|secretaryship +secretary of commerce|2 +(noun)|Secretary of Commerce|Commerce Secretary|secretary +(noun)|Secretary of Commerce|Commerce Secretary|secretaryship +secretary of commerce and labor|1 +(noun)|Secretary of Commerce and Labor|secretaryship +secretary of defense|2 +(noun)|Secretary of Defense|Defense Secretary|secretary +(noun)|Secretary of Defense|Defense Secretary|secretaryship +secretary of education|2 +(noun)|Secretary of Education|Education Secretary|secretary +(noun)|Secretary of Education|Education Secretary|secretaryship +secretary of energy|2 +(noun)|Secretary of Energy|Energy Secretary|secretary +(noun)|Secretary of Energy|Energy Secretary|secretaryship +secretary of health and human services|2 +(noun)|Secretary of Health and Human Services|secretary +(noun)|Secretary of Health and Human Services|secretaryship +secretary of health education and welfare|1 +(noun)|Secretary of Health Education and Welfare|secretaryship +secretary of housing and urban development|2 +(noun)|Secretary of Housing and Urban Development|secretary +(noun)|Secretary of Housing and Urban Development|secretaryship +secretary of labor|2 +(noun)|Secretary of Labor|Labor Secretary|secretary +(noun)|Secretary of Labor|Labor Secretary|secretaryship +secretary of state|3 +(noun)|Secretary of State|secretary +(noun)|foreign minister|minister|government minister +(noun)|Secretary of State|secretaryship +secretary of state for the home department|1 +(noun)|Home Secretary|Secretary of State for the Home Department|cabinet minister +secretary of the interior|2 +(noun)|Secretary of the Interior|Interior Secretary|secretaryship +(noun)|Secretary of the Interior|Interior Secretary|secretary +secretary of the navy|1 +(noun)|Secretary of the Navy|Navy Secretary|secretaryship +secretary of the treasury|2 +(noun)|Secretary of the Treasury|Treasury Secretary|secretary +(noun)|Secretary of the Treasury|Treasury Secretary|secretaryship +secretary of transportation|2 +(noun)|Secretary of Transportation|Transportation Secretary|secretary +(noun)|Secretary of Transportation|Transportation Secretary|secretaryship +secretary of veterans affairs|2 +(noun)|Secretary of Veterans Affairs|secretary +(noun)|Secretary of Veterans Affairs|secretaryship +secretary of war|1 +(noun)|Secretary of War|War Secretary|secretaryship +secretaryship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +secretase|1 +(noun)|enzyme +secrete|2 +(verb)|release|exude|exudate|transude|ooze out|ooze +(verb)|hide|conceal +secreter|1 +(noun)|gland|secretory organ|secretor|organ +secretin|1 +(noun)|hormone|endocrine|internal secretion +secretion|2 +(noun)|secernment|organic process|biological process +(noun)|liquid body substance|bodily fluid|body fluid|humor|humour +secretive|1 +(adj)|close|closelipped|closemouthed|tightlipped|uncommunicative |incommunicative +secretiveness|2 +(noun)|closeness|unsociability|unsociableness +(noun)|secrecy|silence|uncommunicativeness +secretly|1 +(adv)|in secret|on the Q.T.|on the QT +secretor|1 +(noun)|gland|secretory organ|secreter|organ +secretory|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +secretory organ|1 +(noun)|gland|secretor|secreter|organ +secretory phase|1 +(noun)|luteal phase|phase|stage +sect|2 +(noun)|religious sect|religious order|religion|faith +(noun)|faction|clique|coterie|ingroup|inner circle|pack|camp +sectarian|3 +(adj)|clique|coterie|ingroup|inner circle|pack|camp +(adj)|sectarian |denominational|partisan|narrow-minded +(noun)|sectary|sectarist|bigot +sectarianism|1 +(noun)|denominationalism|narrow-mindedness|narrowness +sectarist|1 +(noun)|sectarian|sectary|bigot +sectary|1 +(noun)|sectarian|sectarist|bigot +section|14 +(noun)|subdivision|writing|written material|piece of writing|music +(noun)|slice +(noun)|area|country +(noun)|segment|part|portion +(noun)|team|squad +(noun)|part|division|concept|conception|construct +(noun)|square mile +(noun)|plane section|area|country +(noun)|musical organization|musical organisation|musical group +(noun)|army unit +(noun)|department|division +(noun)|segment +(noun)|incision|surgical incision|cut|cutting +(verb)|segment|separate|divide|part +section eight|2 +(noun)|Section Eight|soldier +(noun)|Section Eight|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +section gang|1 +(noun)|gang|crew|work party +section hand|1 +(noun)|laborer|manual laborer|labourer|jack +section man|1 +(noun)|teacher|instructor +sectional|2 +(adj)|area|country +(adj)|sectioned|divided +sectionalisation|1 +(noun)|division|partition|partitioning|segmentation|sectionalization|separation +sectionalise|1 +(verb)|sectionalize|divide|split|split up|separate|dissever|carve up +sectionalism|1 +(noun)|provincialism|localism|partiality|partisanship +sectionalization|1 +(noun)|division|partition|partitioning|segmentation|sectionalisation|separation +sectionalize|1 +(verb)|sectionalise|divide|split|split up|separate|dissever|carve up +sectioned|1 +(adj)|sectional|divided +sector|6 +(noun)|plane figure|two-dimensional figure +(noun)|body +(noun)|sphere|aspect|facet +(noun)|computer memory unit +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|measuring instrument|measuring system|measuring device +sectorial|1 +(adj)|plane figure|two-dimensional figure +sectral|1 +(noun)|acebutolol|Sectral|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +secular|1 +(adj)|laic|lay|profane +secular games|1 +(noun)|Ludi Saeculares|celebration|festivity +secular humanism|1 +(noun)|humanism|doctrine|philosophy|philosophical system|school of thought|ism +secularisation|2 +(noun)|secularization|change +(noun)|secularization|transfer|transference +secularise|1 +(verb)|secularize|change state|turn +secularised|1 +(adj)|secularized|profane +secularism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +secularist|1 +(noun)|advocate|advocator|proponent|exponent +secularization|2 +(noun)|secularisation|change +(noun)|secularisation|transfer|transference +secularize|2 +(verb)|secularise|change state|turn +(verb)|transfer +secularized|1 +(adj)|secularised|profane +secundigravida|1 +(noun)|gravida II|gravida +secure|12 +(adj)|secure |unafraid|untroubled +(adj)|secure |assured|bonded|guaranteed|secured|warranted|certified|established|firm|fail-safe|in safe custody|promised|safe|safe-deposit|safety-deposit|sure|invulnerable|protected|safe +(adj)|protected |bastioned|fortified|battlemented|burglarproof|covert|moated|sheltered|shielded|snug|stormproof|weatherproof|invulnerable +(adj)|secure |steady|tight|tightened|fixed +(adj)|impregnable|inviolable|strong|unassailable|unattackable|invulnerable +(adj)|dependable|good|safe|sound +(verb)|procure|obtain +(verb)|fasten|fix|attach +(verb)|guarantee|vouch +(verb)|guarantee|ensure|insure|assure +(verb)|plug|stop up|close|fill up +(verb)|batten|batten down|strengthen|beef up|fortify +secured|2 +(adj)|barred|bolted|fast|latched|locked|fastened +(adj)|bonded|guaranteed|warranted|secure +secured bond|1 +(noun)|bond|bond certificate +securely|1 +(adv)|firmly +secureness|2 +(noun)|security +(noun)|fastness|fixedness|fixity|fixture|immovability|immovableness +securer|1 +(noun)|procurer|acquirer +securities analyst|1 +(noun)|financial analyst|analyst +securities and exchange commission|1 +(noun)|Securities and Exchange Commission|SEC|independent agency +securities firm|1 +(noun)|brokerage|brokerage firm|nondepository financial institution +securities industry|1 +(noun)|market|industry +securities law|1 +(noun)|law|jurisprudence +securities market|1 +(noun)|stock exchange|stock market|exchange +security|9 +(noun)|safety +(noun)|certificate|legal document|legal instrument|official document|instrument +(noun)|security department|department|section +(noun)|security measures|precaution|safeguard|guard +(noun)|protection|assets +(noun)|fearlessness|bravery +(noun)|security system|security measures|electrical device +(noun)|surety|transferred property|transferred possession +(noun)|surety|guarantee|warrant|warrantee|warranty +security blanket|2 +(noun)|thing +(noun)|blanket|cover +security consultant|1 +(noun)|adviser|advisor|consultant +security council|1 +(noun)|Security Council|SC|council +security department|1 +(noun)|security|department|section +security deposit|1 +(noun)|margin|down payment|deposit +security director|1 +(noun)|administrator|decision maker +security force|1 +(noun)|private security force|force|personnel +security guard|1 +(noun)|watchman|watcher|guard +security intelligence|1 +(noun)|counterintelligence +security intelligence review committee|1 +(noun)|Security Intelligence Review Committee|SIRC|international intelligence agency +security interest|1 +(noun)|interest|stake +security measures|2 +(noun)|security system|security|electrical device +(noun)|security|precaution|safeguard|guard +security review|1 +(noun)|censoring|censorship|counterintelligence +security service|1 +(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency +security staff|1 +(noun)|staff +security system|2 +(noun)|system +(noun)|security measures|security|electrical device +sed rate|1 +(noun)|erythrocyte sedimentation rate|ESR|sedimentation rate|rate +sedalia|1 +(noun)|Sedalia|town +sedan|2 +(noun)|car|auto|automobile|machine|motorcar +(noun)|sedan chair|litter +sedan chair|1 +(noun)|sedan|litter +sedate|3 +(adj)|staid|decorous +(adj)|grave|sober|solemn|serious +(verb)|calm|tranquilize|tranquillize|tranquillise|affect +sedated|1 +(adj)|insensible +sedately|1 +(adv)|calmly +sedateness|1 +(noun)|staidness|solemnity|solemness|seriousness|earnestness|serious-mindedness|sincerity +sedation|2 +(noun)|physiological state|physiological condition +(noun)|drugging|administration|giving medication +sedative|2 +(adj)|ataractic|ataraxic|tranquilizing|tranquilising|depressant +(noun)|sedative drug|depressant|downer|medicine|medication|medicament|medicinal drug|drug of abuse|street drug +sedative-hypnotic|1 +(noun)|sedative-hypnotic drug|sedative|sedative drug|depressant|downer +sedative-hypnotic drug|1 +(noun)|sedative-hypnotic|sedative|sedative drug|depressant|downer +sedative drug|1 +(noun)|sedative|depressant|downer|medicine|medication|medicament|medicinal drug|drug of abuse|street drug +sedentary|1 +(adj)|inactive +seder|1 +(noun)|Seder|Passover supper|supper +sedge|1 +(noun)|marsh plant|bog plant|swamp plant +sedge bird|1 +(noun)|sedge warbler|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler|true warbler +sedge family|1 +(noun)|Cyperaceae|family Cyperaceae|monocot family|liliopsid family +sedge warbler|1 +(noun)|sedge bird|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler|true warbler +sedge wren|2 +(noun)|short-billed marsh wren|Cistothorus platensis|marsh wren +(noun)|sedge warbler|sedge bird|reedbird|Acrocephalus schoenobaenus|Old World warbler|true warbler +sedgelike|1 +(adj)|rushlike|grassy +sedgy|1 +(adj)|grassy +sediment|3 +(noun)|deposit|substance|matter +(verb)|situate|fix|posit|deposit +(verb)|settle|settle down +sedimentary|1 +(adj)|substance|matter +sedimentary clay|1 +(noun)|soil|dirt +sedimentary rock|1 +(noun)|rock|stone +sedimentation|1 +(noun)|deposit|alluviation|geological phenomenon +sedimentation rate|1 +(noun)|erythrocyte sedimentation rate|ESR|sed rate|rate +sedition|1 +(noun)|misdemeanor|misdemeanour|infraction|offence|offense|violation|infringement +seditious|2 +(adj)|incendiary|incitive|inflammatory|instigative|rabble-rousing|provocative +(adj)|insurgent|subversive|disloyal +seduce|2 +(verb)|score|make|persuade +(verb)|entice|lure|tempt +seducer|2 +(noun)|bad person +(noun)|ladies' man|lady killer|libertine|debauchee|rounder +seduction|2 +(noun)|enticement|temptation +(noun)|conquest|success +seductive|1 +(adj)|seductive |alluring|beguiling|enticing|tempting|corrupting|insidious|teasing|attractive|sexy +seductively|1 +(adv)|temptingly +sedulity|1 +(noun)|sedulousness|diligence|industriousness|industry +sedulous|1 +(adj)|assiduous|diligent +sedulousness|1 +(noun)|sedulity|diligence|industriousness|industry +sedum|1 +(noun)|herb|herbaceous plant +sedum acre|1 +(noun)|wall pepper|Sedum acre|stonecrop +sedum rosea|1 +(noun)|rose-root|midsummer-men|Sedum rosea|sedum +sedum telephium|1 +(noun)|orpine|orpin|livelong|live-forever|Sedum telephium|sedum +see|25 +(noun)|seat +(verb)|perceive|comprehend +(verb)|understand|realize|realise +(verb)|witness|find|experience|undergo|go through +(verb)|visualize|visualise|envision|project|fancy|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|consider|reckon|view|regard|think|believe|consider|conceive +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover +(verb)|watch|view|catch|take in|watch +(verb)|determine|check|find out|ascertain|watch|learn +(verb)|meet|ran into|encounter|run across|come across +(verb)|check|insure|see to it|ensure|control|ascertain|assure|verify +(verb)|visit|call in|call +(verb)|visit|call in|call +(verb)|visit|tour +(verb)|attend|take care|look|care|give care +(verb)|receive|take in|invite +(verb)|go steady|go out|date|consort|associate|affiliate|assort +(verb)|consider|debate|moot|turn over|deliberate +(verb)|detect|observe|find|discover|notice +(verb)|examine +(verb)|experience|undergo|go through|participate|take part +(verb)|escort|accompany +(verb)|bet|wager|play +(verb)|interpret|construe|understand +(adv)|cf.|cf|confer|see also +see-through|1 +(adj)|diaphanous|filmy|gauzy|gossamer|sheer|transparent|vaporous|cobwebby|thin +see also|1 +(adv)|cf.|cf|confer|see +see double|1 +(verb)|misperceive +see eye to eye|1 +(verb)|agree|hold|concur|concord +see red|1 +(verb)|anger|feel|experience +see the light|1 +(verb)|reform|straighten out|better|improve|ameliorate|meliorate +see through|3 +(verb)|support +(verb)|perceive|comprehend +(verb)|complete|finish +see to it|1 +(verb)|see|check|insure|ensure|control|ascertain|assure|verify +seeable|1 +(adj)|visible |apparent|circumpolar|in sight|in view|ocular|visual|panoptic|panoptical|telescopic|viewable|perceptible +seed|13 +(noun)|fruit +(noun)|ovule +(noun)|seeded player|player|participant +(noun)|source|germ|inspiration +(noun)|semen|seminal fluid|ejaculate|cum|liquid body substance|bodily fluid|body fluid|humor|humour +(verb)|spill|shed|disgorge +(verb)|finance +(verb)|bear|turn out +(verb)|sow|sough|put|set|place|pose|position|lay +(verb)|rate|rank|range|order|grade|place +(verb)|process|treat +(verb)|inoculate +(verb)|remove|take|take away|withdraw +seed beetle|1 +(noun)|seed weevil|weevil +seed cake|2 +(noun)|seedcake|cake +(noun)| +seed catalog|1 +(noun)|seed catalogue|catalog|catalogue +seed catalogue|1 +(noun)|seed catalog|catalog|catalogue +seed coat|1 +(noun)|testa|episperm|reproductive structure +seed corn|1 +(noun)|seed grain|seed stock +seed fern|1 +(noun)|pteridosperm|gymnosperm +seed grain|1 +(noun)|seed corn|seed stock +seed lac|1 +(noun)|lac +seed leaf|1 +(noun)|cotyledon|cataphyll +seed money|1 +(noun)|capital|working capital +seed oyster|1 +(noun)|oyster +seed pearl|1 +(noun)|pearl +seed plant|1 +(noun)|spermatophyte|phanerogam|vascular plant|tracheophyte +seed shrimp|1 +(noun)|mussel shrimp|ostracod|crustacean +seed stock|1 +(noun)|store|stock|fund +seed vessel|1 +(noun)|pericarp|covering|natural covering|cover +seed weevil|1 +(noun)|seed beetle|weevil +seedbed|1 +(noun)|bed +seedcake|1 +(noun)|seed cake|cake +seedcase|1 +(noun)|pod|cod|husk +seeded|5 +(adj)|seeded +(adj)|seedless +(adj)|seedy +(adj)|seedy +(adj)|sown|planted +seeded player|1 +(noun)|seed|player|participant +seeded raisin|1 +(noun)|raisin +seeder|3 +(noun)|cloud seeder|person|individual|someone|somebody|mortal|human|soul +(noun)|mechanical device +(noun)|kitchen utensil +seediness|1 +(noun)|shabbiness|manginess|inelegance +seedless|1 +(adj)|seedless |seeded|stoneless +seedless raisin|1 +(noun)|sultana|raisin +seedlike|1 +(adj)|vegetable +seedling|1 +(noun)|spermatophyte|phanerogam|seed plant +seedman|1 +(noun)|seedsman|trader|bargainer|dealer|monger +seedpod|1 +(noun)|pod|fruit +seedsman|1 +(noun)|seedman|trader|bargainer|dealer|monger +seedtime|2 +(noun)|phase|stage +(noun)|season +seedy|4 +(adj)|seedy |seeded|seeded +(adj)|scruffy|worn +(adj)|seamy|sleazy|sordid|squalid|disreputable +(adj)|debilitated|enfeebled|infirm|unhealthy +seeger|2 +(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer|jongleur|minstrel|poet-singer|troubadour +(noun)|Seeger|Alan Seeger|poet +seeing|3 +(adj)|sighted +(noun)|visual perception|beholding|perception +(noun)|eyesight|sightedness|sight|vision|visual sense|visual modality +seeing-eye dog|1 +(noun)|guide dog|working dog +seeing red|1 +(noun)|huff|miff|irritation|annoyance|vexation|botheration +seek|6 +(noun)|movement|motion +(verb)|desire|want +(verb)|search|look for +(verb)|try|attempt|essay|assay|act|move +(verb)|travel|go|move|locomote +(verb)|request +seek out|1 +(verb)|search|seek|look for +seek time|1 +(noun)|time interval|interval +seeker|2 +(noun)|searcher|quester|person|individual|someone|somebody|mortal|human|soul +(noun)|projectile|missile +seeking|3 +(adj)|desire|want +(noun)|quest|search|hunt|hunting +(noun)|attempt|effort|endeavor|endeavour|try +seel|1 +(verb)|blind +seeland|1 +(noun)|Zealand|Seeland|Sjaelland|island +seem|4 +(verb)|look|appear|be +(verb)|appear|be +(verb)|be +(verb)|appear +seeming|1 +(adj)|apparent|ostensible|superficial +seemingly|1 +(adv)|apparently|ostensibly|on the face of it +seemliness|1 +(noun)|grace|propriety|properness|correctitude +seemly|1 +(adj)|becoming|comely|comme il faut|decent|decorous|proper +seep|1 +(verb)|ooze|run|flow|feed|course +seepage|1 +(noun)|ooze|oozing|flow|flowing +seeping|1 +(adj)|oozing|oozy|leaky +seer|3 +(noun)|visionary|illusionist|intellectual|intellect +(noun)|perceiver|observer|beholder +(noun)|prophet|oracle|vaticinator|diviner +seersucker|1 +(noun)|fabric|cloth|material|textile +seesaw|4 +(noun)|teeter-totter|teeterboard|tilting board|dandle board|plaything|toy +(verb)|play +(verb)|move +(verb)|teeter|totter|move +seethe|4 +(verb)|hum|buzz|be +(verb)|boil|be +(verb)|foam|froth|fizz|effervesce|sparkle +(verb)|roll|churn|boil|moil|roil +seething|1 +(adj)|agitated +segal|1 +(noun)|Segal|George Segal|sculptor|sculpturer|carver|statue maker +segment|4 +(noun)|section|part|portion +(noun)|part|piece +(verb)|section|separate|divide|part +(verb)|separate|divide|part +segmental|2 +(adj)|divided +(adj)|metameric|segmented|divided +segmental arch|1 +(noun)|arch +segmentation|2 +(noun)|cleavage|cell division|cellular division +(noun)|division|partition|partitioning|sectionalization|sectionalisation|separation +segmentation cavity|1 +(noun)|blastocoel|blastocoele|blastocele|cleavage cavity|cavity|bodily cavity|cavum +segmented|1 +(adj)|metameric|segmental|divided +segmented worm|1 +(noun)|annelid|annelid worm|worm +segno|1 +(noun)|musical notation +sego lily|1 +(noun)|Calochortus nuttallii|liliaceous plant +segovia|1 +(noun)|Segovia|Andres Segovia|guitarist|guitar player|composer +segregate|3 +(verb)|discriminate|separate|single out +(verb)|separate|divide|part +(verb)|isolate|insulate +segregated|1 +(adj)|segregated |unintegrated|isolated|quarantined|white|lily-white|separate|sequestered|divided|separate +segregation|3 +(noun)|organic process|biological process +(noun)|separatism|social organization|social organisation|social structure|social system|structure +(noun)|sequestration|separation +segregationist|1 +(noun)|segregator|bigot +segregator|1 +(noun)|segregationist|bigot +segue|1 +(verb)|continue|go on|carry on|proceed +sei whale|1 +(noun)|Balaenoptera borealis|rorqual|razorback +seiche|1 +(noun)|wave|undulation +seidel|1 +(noun)|glass|drinking glass +seidlitz powder|1 +(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative|cathartic|physic|aperient +seidlitz powders|2 +(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative|cathartic|physic|aperient +(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative|cathartic|physic|aperient +seif dune|1 +(noun)|dune|sand dune +seigneur|1 +(noun)|feudal lord|seignior|overlord|master|lord +seigneur de bayard|1 +(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier +seigneury|1 +(noun)|seigniory|signory|estate|land|landed estate|acres|demesne +seignior|1 +(noun)|feudal lord|seigneur|overlord|master|lord +seigniorage|1 +(noun)|fee +seigniory|1 +(noun)|seigneury|signory|estate|land|landed estate|acres|demesne +seiji ozawa|1 +(noun)|Ozawa|Seiji Ozawa|conductor|music director|director +seine|3 +(noun)|Seine|Seine River|river +(noun)|fishnet|fishing net +(verb)|fish +seine river|1 +(noun)|Seine|Seine River|river +seism|1 +(noun)|earthquake|quake|temblor|geological phenomenon +seismal|1 +(adj)|seismic|unstable +seismic|1 +(adj)|seismal|unstable +seismic disturbance|1 +(noun)|shock|earthquake|quake|temblor|seism +seismograph|1 +(noun)|measuring instrument|measuring system|measuring device +seismologic|1 +(adj)|seismological|geophysics|geophysical science +seismological|1 +(adj)|seismologic|geophysics|geophysical science +seismologist|1 +(noun)|scientist|man of science +seismology|1 +(noun)|geophysics|geophysical science +seismosaur|1 +(noun)|ground-shaker|dinosaur +seismosaurus|1 +(noun)|Seismosaurus|genus Seismosaurus|reptile genus +seiurus|1 +(noun)|Seiurus|genus Seiurus|bird genus +seiurus aurocapillus|1 +(noun)|ovenbird|Seiurus aurocapillus|New World warbler|wood warbler +seize|8 +(verb)|prehend|clutch|take|get hold of +(verb)|take|get hold of +(verb)|appropriate|capture|conquer|assume|usurp|take over|arrogate +(verb)|impound|attach|sequester|confiscate|take +(verb)|assume|usurp|take over|arrogate|take +(verb)|hook +(verb)|clutch|get hold of|overwhelm|overpower|sweep over|whelm|overcome|overtake +(verb)|grab|intrigue|fascinate +seize on|1 +(verb)|take up|latch on|fasten on|hook on|espouse|embrace|adopt|sweep up +seize with teeth|1 +(verb)|bite|grip +seized|1 +(adj)|appropriated|condemned|confiscate|confiscated|taken over|taken +seizer|1 +(noun)|shanghaier|kidnapper|abductor|snatcher +seizing|2 +(noun)|small stuff +(noun)|grasping|taking hold|prehension|control +seizure|4 +(noun)|ictus|raptus|attack +(noun)|capture|gaining control|acquiring|getting +(noun)|capture|felony +(noun)|appropriation +seizure-alert dog|1 +(noun)|working dog +sekhet|1 +(noun)|Sekhet|Eye of Ra|Egyptian deity +selachian|1 +(noun)|elasmobranch|cartilaginous fish|chondrichthian +selachii|1 +(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class +selaginella|1 +(noun)|Selaginella|genus Selaginella|fern genus +selaginella apoda|1 +(noun)|meadow spikemoss|basket spikemoss|Selaginella apoda|spikemoss|spike moss|little club moss +selaginella eatonii|1 +(noun)|florida selaginella|Selaginella eatonii|spikemoss|spike moss|little club moss +selaginella eremophila|1 +(noun)|desert selaginella|Selaginella eremophila|spikemoss|spike moss|little club moss +selaginella lepidophylla|1 +(noun)|resurrection plant|rose of Jericho|Selaginella lepidophylla|spikemoss|spike moss|little club moss +selaginella rupestris|1 +(noun)|rock spikemoss|dwarf lycopod|Selaginella rupestris|spikemoss|spike moss|little club moss +selaginellaceae|1 +(noun)|Selaginellaceae|family Selaginellaceae|fern family +selaginellales|1 +(noun)|Selaginellales|order Selaginellales|plant order +selar|1 +(noun)|Selar|genus Selar|fish genus +selar crumenophthalmus|1 +(noun)|bigeye scad|big-eyed scad|goggle-eye|Selar crumenophthalmus|scad +selcraig|1 +(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor|crewman +seldom|1 +(adv)|rarely +select|3 +(adj)|choice|prime|prize|quality|superior +(adj)|blue-ribbon|superior +(verb)|choose|take|pick out|decide|make up one's mind|determine +select committee|1 +(noun)|committee|commission +selected|1 +(adj)|selected |chosen|designated|elect|elite|hand-picked +selection|5 +(noun)|choice|option|pick|action +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +(noun)|choice|pick|decision making|deciding +(noun)|survival|survival of the fittest|natural selection|natural process|natural action|action|activity +(noun)|excerpt|extract|passage +selective|2 +(adj)|discriminating +(adj)|exclusive +selective-serotonin reuptake inhibitor|1 +(noun)|SSRI|antidepressant|antidepressant drug +selective amnesia|1 +(noun)|amnesia|memory loss|blackout +selective information|1 +(noun)|information|entropy|information measure +selective jamming|1 +(noun)|spot jamming|jamming|electronic jamming|jam +selective lipectomy|1 +(noun)|lipectomy|plastic surgery|reconstructive surgery|anaplasty +selective service|2 +(noun)|Selective Service|Selective Service System|SSS|independent agency +(noun)|conscription|muster|draft|mobilization|mobilisation|militarization|militarisation +selective service system|1 +(noun)|Selective Service|Selective Service System|SSS|independent agency +selectively|1 +(adv)|by selection +selectivity|1 +(noun)|property +selectman|1 +(noun)|elected official +selector|2 +(noun)|picker|chooser|person|individual|someone|somebody|mortal|human|soul +(noun)|selector switch|switch|electric switch|electrical switch +selector switch|1 +(noun)|selector|switch|electric switch|electrical switch +selectwoman|1 +(noun)|elected official +selenarctos|1 +(noun)|Selenarctos|genus Selenarctos|mammal genus +selenarctos thibetanus|1 +(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear +selene|2 +(noun)|Selene|Greek deity +(noun)|Selene|genus Selene|fish genus +selene setapinnis|1 +(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish|carangid +selene vomer|1 +(noun)|lookdown|lookdown fish|Selene vomer|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis +selenic acid|1 +(noun)|acid +selenicereus|1 +(noun)|Selenicereus|genus Selenicereus|caryophylloid dicot genus +selenicereus grandiflorus|1 +(noun)|queen of the night|Selenicereus grandiflorus|night-blooming cereus +selenipedium|1 +(noun)|Selenipedium|genus Selenipedium|monocot genus|liliopsid genus +selenium|1 +(noun)|Se|atomic number 34|chemical element|element|antioxidant +selenium cell|1 +(noun)|photoelectric cell|photoconductive cell|photocell|electric eye|magic eye +selenolatry|1 +(noun)|moon-worship|worship +seles|1 +(noun)|Seles|Monica Seles|tennis player +seleucus|1 +(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general|full general|Macedonian +seleucus i|1 +(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general|full general|Macedonian +seleucus i nicator|1 +(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general|full general|Macedonian +self|4 +(adj)|same +(adj)|person|individual|someone|somebody|mortal|human|soul +(noun)|ego|consciousness +(noun)|person|individual|someone|somebody|mortal|human|soul +self-abasement|1 +(noun)|penance|self-mortification|punishment|penalty|penalization|penalisation +self-abnegating|1 +(adj)|renunciant|renunciative|self-denying|nonindulgent +self-abnegation|1 +(noun)|abnegation|denial|self-denial|self-renunciation|selflessness|self-sacrifice|renunciation|forgoing|forswearing +self-absorbed|1 +(adj)|self-involved|egoistic +self-absorption|1 +(noun)|preoccupation +self-abuse|1 +(noun)|masturbation|onanism|autoeroticism|autoerotism +self-accusation|1 +(noun)|self-condemnation|confession|accusation|accusal +self-acting|1 +(adj)|self-activating|self-moving|self-regulating|automatic +self-activating|1 +(adj)|self-acting|self-moving|self-regulating|automatic +self-adapting program|1 +(noun)|program|programme|computer program|computer programme +self-addressed|1 +(adj)|addressed +self-aggrandisement|1 +(noun)|self-aggrandizement|ego trip|aggrandizement|aggrandisement|elevation +self-aggrandising|2 +(adj)|self-aggrandizing|aggrandizement|aggrandisement|elevation +(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|proud +self-aggrandizement|1 +(noun)|self-aggrandisement|ego trip|aggrandizement|aggrandisement|elevation +self-aggrandizing|2 +(adj)|self-aggrandising|aggrandizement|aggrandisement|elevation +(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandising|proud +self-analysis|2 +(noun)|soul-searching|introspection|self-contemplation|self-examination +(noun)|psychotherapy +self-annihilation|1 +(noun)|suicide|self-destruction|killing|kill|putting to death +self-appointed|1 +(adj)|unauthorized |unauthorised +self-asserting|1 +(adj)|assertive|self-assertive|aggressive +self-assertion|2 +(noun)|boast|boasting|self-praise|jactitation +(noun)|aggression +self-assertive|2 +(adj)|assertive|self-asserting|aggressive +(adj)|bumptious|forward +self-assertiveness|1 +(noun)|assertiveness|positiveness +self-assurance|1 +(noun)|assurance|confidence|self-confidence|authority|sureness|certainty +self-assured|1 +(adj)|self-confident|confident +self-aware|1 +(adj)|self-conscious|conscious +self-awareness|1 +(noun)|awareness|consciousness|cognizance|cognisance|knowingness +self-centered|1 +(adj)|egocentric|egoistical|self-centred|egoistic +self-centeredness|1 +(noun)|egoism|egocentrism|self-interest|self-concern|trait +self-centred|1 +(adj)|egocentric|egoistical|self-centered|egoistic +self-collected|1 +(adj)|collected|equanimous|poised|self-contained|self-possessed|composed +self-colored|1 +(adj)|solid|self-coloured|plain |unpatterned +self-coloured|1 +(adj)|solid|self-colored|plain |unpatterned +self-command|1 +(noun)|self-control|self-possession|possession|willpower|self-will|resoluteness|firmness|resolve|resolution +self-complacency|1 +(noun)|complacency|complacence|self-satisfaction|satisfaction +self-conceited|1 +(adj)|conceited|egotistic|egotistical|swollen|swollen-headed|vain|proud +self-conceitedly|1 +(adv)|conceitedly|with conceit +self-concern|1 +(noun)|egoism|egocentrism|self-interest|self-centeredness|trait +self-condemnation|1 +(noun)|self-accusation|confession|accusation|accusal +self-confessed|1 +(adj)|acknowledged +self-confidence|1 +(noun)|assurance|self-assurance|confidence|authority|sureness|certainty +self-confident|1 +(adj)|self-assured|confident +self-conscious|2 +(adj)|self-aware|conscious +(adj)|uncomfortable +self-consciousness|2 +(noun)|uneasiness|uncomfortableness|embarrassment +(noun)|self-awareness +self-consistent|1 +(adj)|consistent +self-contained|2 +(adj)|complete +(adj)|collected|equanimous|poised|self-collected|self-possessed|composed +self-contemplation|1 +(noun)|introspection|self-examination|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +self-contradictory|2 +(adj)|paradoxical|inexplicable |incomprehensible +(adj)|at odds|conflicting|contradictory|inconsistent +self-control|2 +(noun)|self-denial|self-discipline|control +(noun)|self-possession|possession|willpower|self-command|self-will|resoluteness|firmness|resolve|resolution +self-criticism|1 +(noun)|criticism|critique +self-cultivation|1 +(noun)|self-education|education +self-deceit|1 +(noun)|self-deception|misconception +self-deception|1 +(noun)|self-deceit|misconception +self-defeating|1 +(adj)|unsuccessful +self-defence|1 +(noun)|self-defense|self-protection|protection +self-defense|1 +(noun)|self-defence|self-protection|protection +self-denial|3 +(noun)|self-discipline|discipline +(noun)|self-discipline|self-control|control +(noun)|abnegation|self-abnegation|denial|self-renunciation|selflessness|self-sacrifice|renunciation|forgoing|forswearing +self-denying|2 +(adj)|self-giving|self-sacrificing|unselfish +(adj)|renunciant|renunciative|self-abnegating|nonindulgent +self-deprecating|1 +(adj)|apologetic |excusatory +self-depreciation|1 +(noun)|humility|humbleness +self-destroy|1 +(verb)|self-destruct|destroy|destruct +self-destruct|1 +(verb)|self-destroy|destroy|destruct +self-destruction|2 +(noun)|suicide|self-annihilation|killing|kill|putting to death +(noun)|destruction|devastation +self-destructive|1 +(adj)|suicidal|dangerous |unsafe +self-determination|2 +(noun)|self-government|self-rule|autonomy|liberty +(noun)|free will|discretion +self-directed|1 +(adj)|autonomous|self-reliant|independent +self-direction|1 +(noun)|autonomy|self-reliance|self-sufficiency|independence|independency +self-discipline|2 +(noun)|self-denial|discipline +(noun)|self-denial|self-control|control +self-disciplined|1 +(adj)|nonindulgent +self-discovery|1 +(noun)|discovery|find|uncovering +self-disgust|1 +(noun)|self-hatred|shame +self-distrust|1 +(noun)|diffidence|self-doubt|timidity|timidness|timorousness|personality +self-doubt|1 +(noun)|diffidence|self-distrust|timidity|timidness|timorousness|personality +self-drive|1 +(noun)|car rental|hire car|rent-a-car|u-drive|you-drive|lease|rental|letting +self-educated|1 +(adj)|educated +self-education|1 +(noun)|self-cultivation|education +self-effacement|1 +(noun)|effacement|withdrawal +self-effacing|1 +(adj)|reticent|unassertive +self-employed|1 +(adj)|freelance +self-employed person|1 +(noun)|freelance|independent|worker +self-enclosed|1 +(adj)|enclosed +self-esteem|2 +(noun)|self-pride|pride|pridefulness +(noun)|dignity|self-respect|self-regard|pride +self-evident|1 +(adj)|axiomatic|taken for granted|obvious +self-evident truth|1 +(noun)|basic assumption|constatation|assumption|supposition|supposal +self-examination|1 +(noun)|introspection|self-contemplation|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +self-examining|1 +(adj)|introspective |introverted +self-explanatory|1 +(adj)|obvious +self-expression|1 +(noun)|expressive style|style +self-feeder|1 +(noun)|feeder|machine +self-fertilisation|1 +(noun)|self-fertilization|fertilization|fertilisation|fecundation|impregnation +self-fertilised|1 +(adj)|self-fertilized|self-pollinated|autogamous |autogamic +self-fertilization|1 +(noun)|self-fertilisation|fertilization|fertilisation|fecundation|impregnation +self-fertilized|1 +(adj)|self-fertilised|self-pollinated|autogamous |autogamic +self-flagellation|1 +(noun)|whipping|tanning|flogging|lashing|flagellation|self-punishment +self-forgetful|1 +(adj)|unselfish +self-fulfillment|1 +(noun)|self-realization|self-realisation|fulfillment|fulfilment +self-generated|2 +(adj)|spontaneous |impulsive|unprompted|intuitive|natural|instinctive +(adj)|self-produced|autogenous |autogenic +self-giving|1 +(adj)|self-denying|self-sacrificing|unselfish +self-governing|1 +(adj)|autonomous|independent|sovereign|free +self-government|1 +(noun)|self-determination|self-rule|autonomy|liberty +self-gratification|2 +(noun)|dissoluteness|incontinence|indiscipline|undiscipline +(noun)|head trip|gratification +self-hatred|1 +(noun)|self-disgust|shame +self-heal|1 +(noun)|heal all|Prunella vulgaris|herb|herbaceous plant +self-help|1 +(noun)|aid|assist|assistance|help +self-hypnosis|1 +(noun)|self-suggestion|autosuggestion|hypnosis +self-importance|2 +(noun)|ego|egotism|pride|pridefulness +(noun)|egotism|swelled head|conceit|vanity +self-important|1 +(adj)|arrogant|chesty|proud +self-imposed|1 +(adj)|voluntary +self-improvement|1 +(noun)|self-reformation|improvement +self-incrimination|1 +(noun)|incrimination|inculpation|blame +self-inductance|1 +(noun)|coefficient of self induction|coefficient +self-induction|3 +(noun)|induction +(noun)|induction +(noun)|self induction|inductance|induction +self-indulgence|2 +(noun)|indulgence|indiscipline|undiscipline +(noun)|intemperance|intemperateness|indulgence|indulging|pampering|humoring +self-indulgent|1 +(adj)|indulgent +self-insurance|1 +(noun)|insurance +self-interest|2 +(noun)|opportunism|self-seeking|expedience|selfishness +(noun)|egoism|egocentrism|self-concern|self-centeredness|trait +self-involved|1 +(adj)|self-absorbed|egoistic +self-justification|1 +(noun)|excuse|alibi|exculpation|defense|defence|vindication +self-knowledge|1 +(noun)|understanding|apprehension|discernment|savvy +self-limited|1 +(adj)|end|ending +self-loader|1 +(noun)|autoloader|firearm|piece|small-arm +self-loading|1 +(adj)|autoloading|semiautomatic|automatic +self-locking|1 +(adj)|automatic +self-love|2 +(noun)|amour propre|conceit|vanity|pride|pridefulness +(noun)|narcism|narcissism|egoism|egocentrism|self-interest|self-concern|self-centeredness +self-loving|1 +(adj)|egotistic|egotistical|narcissistic|selfish +self-made|1 +(adj)|successful +self-mortification|1 +(noun)|penance|self-abasement|punishment|penalty|penalization|penalisation +self-moving|1 +(adj)|self-acting|self-activating|self-regulating|automatic +self-opinionated|1 +(adj)|opinionated|opinionative|narrow-minded |narrow +self-organisation|1 +(noun)|self-organization|organization|organisation +self-organization|1 +(noun)|self-organisation|organization|organisation +self-pity|1 +(noun)|sorrow +self-pollinated|1 +(adj)|self-fertilized|self-fertilised|autogamous |autogamic +self-pollinating|1 +(adj)|pollination|pollenation +self-pollination|1 +(noun)|pollination|pollenation +self-portrait|1 +(noun)|portrait +self-possessed|1 +(adj)|collected|equanimous|poised|self-collected|self-contained|composed +self-possession|1 +(noun)|self-control|possession|willpower|self-command|self-will|resoluteness|firmness|resolve|resolution +self-praise|1 +(noun)|boast|boasting|jactitation|speech act +self-preservation|1 +(noun)|preservation|saving +self-pride|1 +(noun)|self-esteem|pride|pridefulness +self-produced|1 +(adj)|self-generated|autogenous |autogenic +self-propelled|2 +(adj)|automotive|self-propelling|moving +(adj)|self-propelling|dynamic |dynamical +self-propelled vehicle|1 +(noun)|wheeled vehicle +self-propelling|2 +(adj)|automotive|self-propelled|moving +(adj)|self-propelled|dynamic |dynamical +self-protection|1 +(noun)|self-defense|self-defence|protection +self-punishment|1 +(noun)|punishment|penalty|penalization|penalisation +self-raising flour|1 +(noun)|self-rising flour|mix|premix +self-realisation|1 +(noun)|self-fulfillment|self-realization|fulfillment|fulfilment +self-realization|1 +(noun)|self-fulfillment|self-realisation|fulfillment|fulfilment +self-referent|1 +(adj)|reflexive|backward +self-reformation|1 +(noun)|self-improvement|improvement +self-regard|1 +(noun)|dignity|self-respect|self-esteem|pride +self-registering thermometer|1 +(noun)|thermometer +self-regulating|1 +(adj)|self-acting|self-activating|self-moving|automatic +self-reliance|1 +(noun)|autonomy|self-direction|self-sufficiency|independence|independency +self-reliant|1 +(adj)|autonomous|self-directed|independent +self-renunciation|1 +(noun)|abnegation|self-abnegation|denial|self-denial|selflessness|self-sacrifice|renunciation|forgoing|forswearing +self-report inventory|1 +(noun)|self-report personality inventory|personality inventory|personality assessment +self-report personality inventory|1 +(noun)|self-report inventory|personality inventory|personality assessment +self-reproach|2 +(noun)|compunction|remorse|sorrow|regret|rue|ruefulness +(noun)|self-reproof|reproach +self-reproof|1 +(noun)|self-reproach|reproach +self-respect|1 +(noun)|dignity|self-esteem|self-regard|pride +self-respectful|1 +(adj)|dignified|self-respecting|proud +self-respecting|1 +(adj)|dignified|self-respectful|proud +self-restraint|1 +(noun)|temperateness|restraint|control +self-righteous|1 +(adj)|holier-than-thou|pietistic|pietistical|pharisaic|pharisaical|sanctimonious|pious +self-righteously|1 +(adv)|sanctimoniously +self-rising flour|1 +(noun)|self-raising flour|mix|premix +self-rule|1 +(noun)|self-government|self-determination|autonomy|liberty +self-sacrifice|1 +(noun)|selflessness|cooperation +self-sacrificing|1 +(adj)|self-denying|self-giving|unselfish +self-satisfaction|1 +(noun)|complacency|complacence|self-complacency|satisfaction +self-satisfied|2 +(adj)|smug|contented |content +(adj)|complacent|contented |content +self-sealing|2 +(adj)|punctureless +(adj)|adhesive +self-seeded|1 +(adj)|self-sown|self-sowed|planted +self-seeker|1 +(noun)|opportunist|selfish person +self-seeking|2 +(adj)|self-serving|selfish +(noun)|opportunism|self-interest|expedience|selfishness +self-service|2 +(adj)|service +(noun)|service +self-serving|1 +(adj)|self-seeking|selfish +self-sowed|1 +(adj)|self-seeded|self-sown|planted +self-sown|1 +(adj)|self-seeded|self-sowed|planted +self-starter|2 +(noun)|powerhouse|human dynamo|ball of fire|fireball +(noun)|starter|starter motor|starting motor +self-styled|1 +(adj)|soi-disant|questionable +self-sufficiency|1 +(noun)|autonomy|self-direction|self-reliance|independence|independency +self-sufficient|1 +(adj)|self-sufficing|self-sustaining|independent +self-sufficing|1 +(adj)|self-sufficient|self-sustaining|independent +self-suggestion|1 +(noun)|self-hypnosis|autosuggestion|hypnosis +self-supporting|1 +(adj)|independent +self-sustained|1 +(adj)|unfueled +self-sustaining|1 +(adj)|self-sufficient|self-sufficing|independent +self-taught art|1 +(noun)|outsider art|vernacular art|naive art|primitive art|genre +self-torment|1 +(noun)|self-torture|distress|hurt|suffering +self-torture|1 +(noun)|self-torment|distress|hurt|suffering +self-whispered|1 +(adj)|inward +self-will|2 +(noun)|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|resoluteness|firmness|resolve|resolution +(noun)|self-control|self-possession|possession|willpower|self-command|resoluteness|firmness|resolve|resolution +self-willed|1 +(adj)|froward|headstrong|willful|wilful|disobedient +self-winding|1 +(adj)|automatic +self-worship|1 +(noun)|idiolatry|autolatry|worship +self acceptance|1 +(noun)|toleration|acceptance|sufferance +self induction|3 +(noun)|inductance|induction +(noun)|self-induction|induction +(noun)|self-induction|induction +selfish|1 +(adj)|selfish |egotistic|egotistical|narcissistic|self-loving|self-serving|self-seeking|stingy|ungenerous|egoistic|inconsiderate|stingy|ungenerous +selfish person|1 +(noun)|unpleasant person|disagreeable person +selfishly|1 +(adv)|egotistically +selfishness|1 +(noun)|stinginess +selfless|1 +(adj)|altruistic |unselfish +selflessly|1 +(adv)|altruistically +selflessness|2 +(noun)|altruism|unselfishness +(noun)|self-sacrifice|cooperation +selfsame|1 +(adj)|identical|one and the same|very|same +selfsameness|1 +(noun)|identity|identicalness|indistinguishability +seljuk|2 +(adj)|Seljuk|dynasty +(noun)|Seljuk|dynasty +selkirk|1 +(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor|crewman +selkirk mountains|1 +(noun)|Selkirk Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +selkup|2 +(noun)|Selkup|Ostyak-Samoyed|Russian +(noun)|Selkup|Ostyak-Samoyed|Samoyedic|Samoyed +sell|9 +(noun)|sale +(verb)|exchange|change|interchange +(verb)|be +(verb)|deal|trade|transact +(verb)|persuade +(verb)|surrender|cede|deliver|give up +(verb)|betray|deceive|lead on|delude|cozen +(verb)|be +(verb)|be +sell-by date|1 +(noun)|date +sell off|1 +(verb)|sell +sell out|2 +(verb)|sell up|liquidize|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|denounce|tell on|betray|give away|rat|grass|shit|shop|snitch|stag +sell short|2 +(verb)|sell +(verb)|underestimate|underrate +sell up|1 +(verb)|sell out|liquidize|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +sellable|1 +(adj)|marketable|merchantable|vendable|vendible|salable |saleable +seller|1 +(noun)|marketer|vender|vendor|trafficker|merchant|merchandiser +seller's market|1 +(noun)|sellers' market|market|marketplace +sellers|2 +(noun)|Sellers|Peter Sellers|actor|histrion|player|thespian|role player +(noun)|seller|marketer|vender|vendor|trafficker|merchant|merchandiser +sellers' market|1 +(noun)|seller's market|market|marketplace +selling|1 +(noun)|merchandising|marketing|commerce|commercialism|mercantilism +selling agent|1 +(noun)|seller|marketer|vender|vendor|trafficker +selling point|1 +(noun)|point +selling price|1 +(noun)|asking price|price|terms|damage +selling race|1 +(noun)|horse race +selloff|1 +(noun)|sale|cut-rate sale|sales event +sellotape|2 +(noun)|cellulose tape|Scotch Tape|Sellotape|adhesive tape +(verb)|scotch tape|tape +sellout|1 +(noun)|treachery|betrayal|treason|perfidy +selma|1 +(noun)|Selma|town +selsyn|1 +(noun)|synchro|system +seltzer|2 +(noun)|mineral water +(noun)|soda water|carbonated water|club soda|sparkling water|drinking water +selva|1 +(noun)|tropical rain forest|rain forest|rainforest +selvage|2 +(noun)|selvedge|border +(noun)|selvedge|edge|margin +selvedge|2 +(noun)|selvage|border +(noun)|selvage|edge|margin +selznick|1 +(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker|filmmaker|film producer|movie maker +semantic|1 +(adj)|linguistics +semantic error|1 +(noun)|run-time error|runtime error|software error|programming error +semantic memory|1 +(noun)|long-term memory|LTM +semantic relation|1 +(noun)|linguistic relation +semantic role|1 +(noun)|participant role|grammatical category|syntactic category +semanticist|1 +(noun)|semiotician|linguist|linguistic scientist +semantics|1 +(noun)|linguistics +semaphore|3 +(noun)|apparatus|setup +(verb)|sign|signal|signalize|signalise +(verb)|communicate|intercommunicate +semaphore plant|1 +(noun)|telegraph plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub|bush +semarang|1 +(noun)|Semarang|Samarang|city|metropolis|urban center|port +semblance|3 +(noun)|gloss|color|colour|appearance|visual aspect +(noun)|illusion|appearance +(noun)|likeness|picture|image|icon|ikon +semen|1 +(noun)|seed|seminal fluid|ejaculate|cum|liquid body substance|bodily fluid|body fluid|humor|humour +semester|2 +(noun)|school term|academic term|academic session|session +(noun)|time period|period of time|period +semester hour|1 +(noun)|credit hour|credit|course credit +semestral|1 +(adj)|semestrial|time period|period of time|period +semestrial|1 +(adj)|semestral|time period|period of time|period +semi|3 +(noun)|semifinal|match +(noun)|trailer truck|tractor trailer|trucking rig|rig|articulated lorry|truck|motortruck +(noun)|semitrailer|trailer +semi-abstraction|1 +(noun)|painting|picture +semi-automatise|1 +(verb)|semi-automatize|automatize|automatise|automate +semi-automatize|1 +(verb)|semi-automatise|automatize|automatise|automate +semi-detached house|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +semi-formal|2 +(adj)|semiformal|black-tie|formal +(adj)| +semi-processed|1 +(adj)|processed +semi-sweet chocolate|1 +(noun)|bittersweet chocolate|dark chocolate|chocolate +semiabstract|1 +(adj)|nonrepresentational +semiannual|1 +(adj)|biannual|biyearly|time period|period of time|period +semiannually|1 +(adv)|biyearly +semiaquatic|2 +(adj)|amphibiotic|amphibious +(adj)|subaquatic|aquatic +semiarid|1 +(adj)|dry +semiautobiographical|1 +(adj)|biography|life|life story|life history +semiautomatic|3 +(adj)|automatic +(adj)|autoloading|self-loading|automatic +(noun)|semiautomatic pistol|pistol|handgun|side arm|shooting iron|semiautomatic firearm +semiautomatic firearm|1 +(noun)|autoloader|self-loader +semiautomatic pistol|1 +(noun)|semiautomatic|pistol|handgun|side arm|shooting iron|semiautomatic firearm +semibreve|1 +(noun)|whole note|note|musical note|tone +semicentenary|2 +(adj)|semicentennial|anniversary|day of remembrance +(noun)|semicentennial|anniversary|day of remembrance +semicentennial|2 +(adj)|semicentenary|anniversary|day of remembrance +(noun)|semicentenary|anniversary|day of remembrance +semicircle|1 +(noun)|hemicycle|plane figure|two-dimensional figure +semicircular|1 +(adj)|curved |curving +semicircular arch|1 +(noun)|Roman arch|round arch +semicircular canal|1 +(noun)|sense organ|sensory receptor|receptor +semicolon|1 +(noun)|punctuation|punctuation mark +semicoma|1 +(noun)|unconsciousness +semicomatose|1 +(adj)|unconscious +semiconducting|1 +(adj)|semiconductive|conductive +semiconducting material|1 +(noun)|semiconductor|conductor +semiconductive|1 +(adj)|semiconducting|conductive +semiconductor|2 +(noun)|semiconducting material|conductor +(noun)|semiconductor device|semiconductor unit|conductor +semiconductor device|1 +(noun)|semiconductor unit|semiconductor|conductor +semiconductor diode|1 +(noun)|diode|junction rectifier|crystal rectifier|semiconductor device|semiconductor unit|semiconductor +semiconductor unit|1 +(noun)|semiconductor device|semiconductor|conductor +semiconscious|1 +(adj)|conscious +semiconsciousness|1 +(noun)|grogginess|stupor|stupefaction|unconsciousness +semidarkness|1 +(noun)|dark|darkness +semidesert|1 +(noun)|geographical area|geographic area|geographical region|geographic region +semidetached|1 +(adj)|detached +semidetached house|1 +(noun)|duplex house|duplex|house +semidiameter|1 +(noun)|radius|r +semiempirical|1 +(adj)|empirical |empiric +semiepiphyte|1 +(noun)|hemiepiphyte|air plant|epiphyte|aerophyte|epiphytic plant +semifinal|1 +(noun)|semi|match +semifinalist|1 +(noun)|rival|challenger|competitor|competition|contender +semifluidity|1 +(noun)|thickness +semiformal|1 +(adj)|semi-formal|black-tie|formal +semigloss|1 +(noun)|paint +semihard|1 +(adj)|hard +semiliquid|1 +(adj)|liquid +semiliterate|3 +(adj)|educated +(adj)|illiterate +(adj)|illiterate +semilunar|1 +(adj)|crescent|crescent-shaped|lunate|rounded +semilunar bone|1 +(noun)|lunate bone|os lunatum|carpal bone|carpal|wrist bone +semilunar valve|1 +(noun)|heart valve|cardiac valve +semimajor axis|1 +(noun)|axis +semiminor axis|1 +(noun)|axis +semimonthly|2 +(adj)|bimonthly|time unit|unit of time +(adv)|bimonthly +seminal|2 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +(adj)|germinal|originative|original +seminal duct|1 +(noun)|duct|epithelial duct|canal|channel +seminal fluid|1 +(noun)|semen|seed|ejaculate|cum|liquid body substance|bodily fluid|body fluid|humor|humour +seminal vesicle|1 +(noun)|vesicle|cyst +seminar|2 +(noun)|conference +(noun)|course|course of study|course of instruction|class +seminarian|1 +(noun)|seminarist|student|pupil|educatee +seminarist|1 +(noun)|seminarian|student|pupil|educatee +seminary|2 +(noun)|private school +(noun)|religious school +seminiferous|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +seminiferous tubule|1 +(noun)|tubule +seminole|2 +(noun)|Seminole|Muskhogean|Muskogean +(noun)|Seminole|Muskhogean|Muskhogean language|Muskogean|Muskogean language +seminole bread|1 +(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia +seminoma|1 +(noun)|testicular cancer|carcinoma +seminude|1 +(adj)|unclothed +semiofficial|1 +(adj)|official +semiopaque|1 +(adj)|opaque +semiotic|1 +(adj)|semiotical|philosophical doctrine|philosophical theory +semiotical|1 +(adj)|semiotic +semiotician|1 +(noun)|semanticist|linguist|linguistic scientist +semiotics|1 +(noun)|philosophical doctrine|philosophical theory +semipermanent|1 +(adj)|long-run|long-term|long +semipermeable|1 +(adj)|permeable +semipermeable membrane|1 +(noun)|membrane|tissue layer +semipolitical|1 +(adj)|political +semiprecious|1 +(adj)|valuable +semiprivate|1 +(adj)|private +semipro|1 +(noun)|semiprofessional|professional|pro +semiprofessional|1 +(noun)|semipro|professional|pro +semipublic|1 +(adj)|public +semiquaver|1 +(noun)|sixteenth note|note|musical note|tone +semirigid|2 +(adj)|rigid +(adj)|inflexible +semiskilled|1 +(adj)|unskilled +semisoft|1 +(adj)|softish|soft +semisolid|1 +(adj)|solid +semisweet|1 +(adj)|bittersweet|tasteful +semisynthetic|1 +(adj)|man-made|synthetic|artificial |unreal +semite|2 +(adj)|Semite|Semitic|White|white person|Caucasian +(noun)|Semite|White|white person|Caucasian +semiterrestrial|1 +(adj)|object|physical object +semitic|3 +(adj)|Semitic|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +(adj)|Semite|Semitic|White|white person|Caucasian +(noun)|Semitic|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic +semitic-speaking|1 +(adj)|Semitic-speaking|communicative |communicatory +semitic deity|1 +(noun)|Semitic deity|deity|divinity|god|immortal +semitone|1 +(noun)|half step|interval|musical interval +semitrailer|1 +(noun)|semi|trailer +semitrance|1 +(noun)|unconsciousness +semitransparency|1 +(noun)|translucence|translucency|clearness|clarity|uncloudedness +semitransparent|1 +(adj)|translucent|clear +semitropic|1 +(adj)|subtropical|subtropic|semitropical +semitropical|1 +(adj)|subtropical|subtropic|semitropic +semitropics|1 +(noun)|subtropics|climatic zone +semivowel|1 +(noun)|glide|phone|speech sound|sound +semiweekly|2 +(adj)|biweekly|time period|period of time|period +(adv)|biweekly +semnopithecus entellus|1 +(noun)|entellus|hanuman|Presbytes entellus|Semnopithecus entellus|langur +semolina|1 +(noun)|flour +sempatch|1 +(noun)|Sempatch|battle of Sempatch|pitched battle +sempiternal|1 +(adj)|dateless|endless|infinite +sempiternity|1 +(noun)|perpetuity|permanence|permanency +sempstress|1 +(noun)|dressmaker|modiste|needlewoman|seamstress|garmentmaker|garment-worker|garment worker +sen|1 +(noun)|fractional monetary unit|subunit +senate|2 +(noun)|legislature|legislative assembly|general assembly|law-makers +(noun)|United States Senate|US Senate|Senate +senate campaign|1 +(noun)|senate race|political campaign|campaign|run +senate race|1 +(noun)|senate campaign|political campaign|campaign|run +senator|1 +(noun)|legislator +senatorial|1 +(adj)|legislator +senatorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +send|8 +(verb)|direct|move|displace|send away|send away +(verb)|send out|transmit|transfer|transport|channel|channelize|channelise|send back +(verb)|mail|post|transfer +(verb)|transport|ship|move|displace|send on|send off +(verb)|station|post|base|place|move|displace +(verb)|get off|send off|transfer +(verb)|commit|institutionalize|institutionalise|charge|transfer +(verb)|air|broadcast|beam|transmit|publicize|publicise|air|bare +send-off|2 +(noun)|bon voyage|farewell|word of farewell +(noun)|kickoff|start-off|start +send a message|1 +(verb)|communicate|pass on|pass|put across +send around|1 +(verb)|circulate|pass around|pass on|distribute +send away|2 +(verb)|dismiss|send packing|drop|fire|give notice|can|dismiss|give the axe|sack|force out|give the sack|terminate +(verb)|fire|give notice|can|dismiss|give the axe|sack|force out|give the sack|terminate|remove +send back|1 +(verb)|remit|remand|challenge +send down|1 +(verb)|rusticate|suspend|debar +send for|1 +(verb)|call|order|tell|enjoin|say +send in|1 +(verb)|send|send out +send off|3 +(verb)|dispatch|despatch|transport|send|ship +(verb)|project|propel|impel +(verb)|send|get off|transfer +send on|1 +(verb)|forward|transport|send|ship +send out|1 +(verb)|send|transmit|transfer|transport|channel|channelize|channelise +send packing|1 +(verb)|dismiss|send away|drop|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +send word|1 +(verb)|advise|notify|give notice|apprise|apprize|inform +sendee|1 +(noun)|recipient|receiver +sender|2 +(noun)|transmitter|communicator +(noun)|transmitter|set +sendero luminoso|1 +(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization|terrorist group|foreign terrorist organization|FTO +sending|1 +(noun)|causing|causation +sendup|1 +(noun)|parody|lampoon|spoof|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +sene|1 +(noun)|Western Samoan monetary unit +seneca|3 +(noun)|Seneca|Lucius Annaeus Seneca|statesman|solon|national leader|dramatist|playwright|philosopher +(noun)|Seneca|Iroquois +(noun)|Seneca|Iroquoian|Iroquois|Iroquoian language +seneca snakeroot|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort +senecan|1 +(adj)|Senecan|statesman|solon|national leader|dramatist|playwright|philosopher +senecio|1 +(noun)|Senecio|genus Senecio|asterid dicot genus +senecio aureus|1 +(noun)|golden groundsel|golden ragwort|Packera aurea|Senecio aureus|herb|herbaceous plant +senecio bigelovii|1 +(noun)|nodding groundsel|Senecio bigelovii|wildflower|wild flower +senecio cineraria|1 +(noun)|dusty miller|Senecio cineraria|Cineraria maritima|shrub|bush +senecio cruentus|1 +(noun)|cineraria|Pericallis cruenta|Senecio cruentus|flower +senecio doublasii|1 +(noun)|threadleaf groundsel|Senecio doublasii|weed +senecio glabellus|1 +(noun)|butterweed|ragwort|Senecio glabellus|wildflower|wild flower +senecio jacobaea|1 +(noun)|ragwort|tansy ragwort|ragweed|benweed|Senecio jacobaea|weed +senecio milkanioides|1 +(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine +senecio triangularis|1 +(noun)|arrowleaf groundsel|Senecio triangularis|wildflower|wild flower +senecio vulgaris|1 +(noun)|groundsel|Senecio vulgaris|weed +senefelder|1 +(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer +senega|2 +(noun)|root +(noun)|Polygala alba|milkwort +senega root|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega snakeroot|Polygala senega|milkwort +senega snakeroot|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|Polygala senega|milkwort +senegal|1 +(noun)|Senegal|Republic of Senegal|African country|African nation +senegal gum|1 +(noun)|Senegal gum|gum arabic|gum acacia +senegalese|2 +(adj)|Senegalese|African country|African nation +(noun)|Senegalese|African +senegalese franc|1 +(noun)|Senegalese franc|franc +seneka snakeroot|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort +senesce|1 +(verb)|age|get on|mature|maturate|develop +senescence|2 +(noun)|aging|ageing|organic process|biological process +(noun)|agedness|oldness +senescent|1 +(adj)|aging|ageing|old +seneschal|1 +(noun)|major-domo|servant|retainer +senga root|1 +(noun)|Seneca snakeroot|Seneka snakeroot|senega root|senega snakeroot|Polygala senega|milkwort +senhor|1 +(noun)|Senhor|man|adult male +senile|1 +(adj)|doddering|doddery|gaga|old +senile dementia|1 +(noun)|senile psychosis|dementia|dementedness +senile psychosis|1 +(noun)|senile dementia|dementia|dementedness +senility|2 +(noun)|dotage|second childhood|old age|years|age|eld|geezerhood +(noun)|oldness +senior|5 +(adj)|senior |elder|older|sr.|major|precedential|ranking|superior|higher-ranking|old +(adj)|fourth-year|last +(adj)|aged|elderly|older|old +(noun)|undergraduate|undergrad +(noun)|elder|adult|grownup +senior citizen|1 +(noun)|oldster|old person|golden ager|adult|grownup +senior class|1 +(noun)|class|year +senior high|1 +(noun)|senior high school|high|highschool|high school|secondary school|lyceum|lycee|Gymnasium|middle school +senior high school|1 +(noun)|senior high|high|highschool|high school|secondary school|lyceum|lycee|Gymnasium|middle school +senior moment|1 +(noun)|forgetfulness +senior pilot|1 +(noun)|captain|pilot|airplane pilot +senior status|1 +(noun)|seniority|higher status|higher rank|high status +senior vice president|1 +(noun)|vice president|V.P. +seniority|2 +(noun)|senior status|higher status|higher rank|high status +(noun)|longevity|oldness +seniti|1 +(noun)|Tongan monetary unit +senna|1 +(noun)|shrub|bush +senna alata|1 +(noun)|ringworm bush|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna +senna alexandrina|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +senna auriculata|1 +(noun)|avaram|tanner's cassia|Senna auriculata|Cassia auriculata|senna +senna marilandica|1 +(noun)|wild senna|Senna marilandica|Cassia marilandica|herb|herbaceous plant +senna obtusifolia|1 +(noun)|sicklepod|Senna obtusifolia|Cassia tora|subshrub|suffrutex +senna occidentalis|1 +(noun)|coffee senna|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna +sennacherib|1 +(noun)|Sennacherib|king|male monarch +sennett|1 +(noun)|Sennett|Mack Sennett|film maker|filmmaker|film producer|movie maker +sennit|1 +(noun)|cordage +senor|1 +(noun)|Senor|man|adult male +senora|1 +(noun)|Senora|wife|married woman +senorita|1 +(noun)|Senorita|unmarried woman +sens|2 +(noun)|pot|grass|green goddess|dope|weed|gage|sess|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(noun)|sen|fractional monetary unit|subunit +sensate|1 +(adj)|sentient |animate +sensation|5 +(noun)|sense experience|sense impression|sense datum|perception +(noun)|ace|adept|champion|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +(noun)|stir +(noun)|excitement|excitation|inflammation|fervor|fervour +(noun)|sense|sentience|sentiency|sensory faculty|faculty|mental faculty|module +sensational|3 +(adj)|sensational |lurid|shocking|scandalmongering|sensationalistic|yellow|screaming +(adj)|arresting|stunning|impressive +(adj)|sensory|perception +sensationalism|4 +(noun)|message|content|subject matter|substance +(noun)|luridness|journalese +(noun)|sensualism|philosophical doctrine|philosophical theory +(noun)|empiricism|empiricist philosophy|philosophical doctrine|philosophical theory +sensationalist|1 +(noun)|ballyhoo artist|publicist|publicizer|publiciser +sensationalistic|1 +(adj)|scandalmongering|yellow|sensational +sense|9 +(noun)|awareness|consciousness|cognizance|cognisance|knowingness +(noun)|signified|meaning|significance|signification|import +(noun)|sensation|sentience|sentiency|sensory faculty|faculty|mental faculty|module +(noun)|common sense|good sense|gumption|horse sense|mother wit|sagacity|sagaciousness|judgment|judgement|discernment +(noun)|appreciation|grasp|hold +(verb)|feel|perceive|comprehend +(verb)|detect|observe|find|discover|notice +(verb)|perceive +(verb)|understand +sense datum|1 +(noun)|sensation|sense experience|sense impression|perception +sense experience|1 +(noun)|sensation|sense impression|sense datum|perception +sense impression|1 +(noun)|sensation|sense experience|sense datum|perception +sense modality|1 +(noun)|modality|sensory system|sense|sensation|sentience|sentiency|sensory faculty +sense of direction|1 +(noun)|sense +sense of responsibility|1 +(noun)|sense +sense of the meeting|1 +(noun)|agreement|accord +sense organ|1 +(noun)|sensory receptor|receptor|organ +sensed|1 +(adj)|perceived|detected +senseless|4 +(adj)|mindless|reasonless|unreasonable +(adj)|insensible|unconscious +(adj)|pointless|purposeless|meaningless |nonmeaningful +(adj)|nitwitted|soft-witted|witless|stupid +senselessly|1 +(adv)|mindlessly +senselessness|1 +(noun)|inanity|mindlessness|vacuity|pointlessness|meaninglessness +sensibilise|1 +(verb)|sensitize|sensitise|sensify|sensibilize|change|alter|modify +sensibility|3 +(noun)|consciousness +(noun)|sensitivity|sensitiveness +(noun)|sensitivity|sensitiveness|sense|sensation|sentience|sentiency|sensory faculty +sensibilize|1 +(verb)|sensitize|sensitise|sensify|sensibilise|change|alter|modify +sensible|7 +(adj)|reasonable |commonsense|commonsensible|commonsensical|healthy|intelligent|levelheaded|sound|logical|tenable|well-founded|fair|just|logical|rational|valid +(adj)|sensible |sensitive|aware|conscious|sensitive +(adj)|thoughtful|serious +(adj)|judicious|wise|prudent +(adj)|perceptible +(adj)|aware +(adj)|judicious|advisable +sensible horizon|1 +(noun)|horizon|apparent horizon|visible horizon|skyline|line +sensibleness|1 +(noun)|reasonableness|practicality +sensibly|1 +(adv)|sanely|reasonably +sensify|1 +(verb)|sensitize|sensitise|sensibilize|sensibilise|change|alter|modify +sensing|2 +(noun)|detection|perception +(noun)|perception|sensory activity +sensing element|1 +(noun)|detector|sensor|device +sensitisation|3 +(noun)|sensitization|sensitivity|predisposition +(noun)|sensitization|process +(noun)|sensitizing|sensitising|sensitization|immunization|immunisation +sensitise|4 +(verb)|sensitize +(verb)|sensitize|change|alter|modify +(verb)|sensitize|change|alter|modify +(verb)|sensitize|sensify|sensibilize|sensibilise|change|alter|modify +sensitised|1 +(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|supersensitive|supersensitized|supersensitised|susceptible +sensitiser|1 +(noun)|sensitizer|activator +sensitising|2 +(adj)|sensitizing +(noun)|sensitizing|sensitization|sensitisation|immunization|immunisation +sensitive|5 +(adj)|sensitive |delicate|erogenous|excitable|irritable|highly sensitive|irritable|light-sensitive|photosensitive|nociceptive|reactive|radiosensitive|responsive|sensible|susceptible +(adj)|sensitive |alive|huffy|thin-skinned|touchy|oversensitive|responsive|responsive +(adj)|sensible |aware|conscious +(adj)|sore|tender|painful +(adj)|classified +sensitive fern|1 +(noun)|bead fern|Onoclea sensibilis|fern +sensitive pea|1 +(noun)|partridge pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub|suffrutex +sensitive plant|2 +(noun)|touch-me-not|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa +(noun)|Mimosa sensitiva|mimosa +sensitiveness|3 +(noun)|sensitivity|feeling +(noun)|sensitivity|sensibility|sense|sensation|sentience|sentiency|sensory faculty +(noun)|sensitivity|ability +sensitivity|5 +(noun)|sensitiveness|sensibility|sense|sensation|sentience|sentiency|sensory faculty +(noun)|physical property +(noun)|sensitiveness|feeling +(noun)|predisposition|susceptibility|susceptibleness +(noun)|sensitiveness|ability +sensitization|3 +(noun)|sensitisation|sensitivity|predisposition +(noun)|sensitisation|process +(noun)|sensitizing|sensitising|sensitisation|immunization|immunisation +sensitize|4 +(verb)|sensitise|sensify|sensibilize|sensibilise|change|alter|modify +(verb)|sensitise +(verb)|sensitise|change|alter|modify +(verb)|sensitise|change|alter|modify +sensitized|1 +(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitised|supersensitive|supersensitized|supersensitised|susceptible +sensitizer|1 +(noun)|sensitiser|activator +sensitizing|2 +(adj)|sensitizing |sensitising +(noun)|sensitising|sensitization|sensitisation|immunization|immunisation +sensitometer|1 +(noun)|measuring instrument|measuring system|measuring device|photographic equipment +sensor|1 +(noun)|detector|sensing element|device +sensorial|1 +(adj)|sensory +sensorimotor|1 +(adj)|bodily process|body process|bodily function|activity +sensorimotor area|1 +(noun)|sensorimotor region|cortical area|cortical region +sensorimotor region|1 +(noun)|sensorimotor area|cortical area|cortical region +sensorineural hearing loss|1 +(noun)|nerve deafness|hearing impairment|hearing disorder +sensory|3 +(adj)|centripetal|receptive|afferent +(adj)|sensory |sensorial +(adj)|sensational|perception +sensory activity|1 +(noun)|activity +sensory aphasia|1 +(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|impressive aphasia|aphasia +sensory epilepsy|1 +(noun)|cortical epilepsy|focal epilepsy +sensory faculty|1 +(noun)|sense|sensation|sentience|sentiency|faculty|mental faculty|module +sensory hair|1 +(noun)|whisker|vibrissa|hair +sensory nerve|1 +(noun)|nerve|nervus +sensory neuron|1 +(noun)|afferent neuron|nerve cell|neuron +sensory receptor|1 +(noun)|sense organ|receptor|organ +sensory system|2 +(noun)|modality|sense modality|sense|sensation|sentience|sentiency|sensory faculty +(noun)|system +sensual|2 +(adj)|animal|carnal|fleshly|physical +(adj)|sultry|hot +sensualise|1 +(verb)|sensualize|carnalize|carnalise|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +sensualism|2 +(noun)|sensuality|sensualness|sexual desire|concupiscence|physical attraction +(noun)|sensationalism|philosophical doctrine|philosophical theory +sensualist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sensuality|1 +(noun)|sensualness|sensualism|sexual desire|concupiscence|physical attraction +sensualize|3 +(verb)|carnalize|represent|interpret +(verb)|carnalize|impute|ascribe|assign|attribute +(verb)|sensualise|carnalize|carnalise|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +sensually|1 +(adv)|sultrily +sensualness|1 +(noun)|sensuality|sensualism|sexual desire|concupiscence|physical attraction +sensuous|1 +(adj)|aesthetic |esthetic|aesthetical|esthetical +sensuousness|1 +(noun)|sensibility +sent|2 +(adj)|sent |conveyed|dispatched|transmitted +(noun)|Estonian monetary unit +sente|1 +(noun)|Lesotho monetary unit +sentence|4 +(noun)|string of words|word string|linguistic string +(noun)|conviction|judgment of conviction|condemnation|final judgment|final decision +(noun)|prison term|time|term +(verb)|condemn|doom|declare +sentence stress|1 +(noun)|stress|emphasis|accent +sentence structure|1 +(noun)|syntax|phrase structure|structure +sentential|1 +(adj)|string of words|word string|linguistic string +sentential function|1 +(noun)|formula|expression +sententious|2 +(adj)|pretentious +(adj)|pithy|concise +sententiously|1 +(adv)|pithy +sentience|3 +(noun)|awareness|consciousness +(noun)|sense|sensation|sentiency|sensory faculty|faculty|mental faculty|module +(noun)|animateness|aliveness|liveness +sentiency|1 +(noun)|sense|sensation|sentience|sensory faculty|faculty|mental faculty|module +sentient|2 +(adj)|sentient |animate|sensate +(adj)|conscious +sentiment|2 +(noun)|feeling +(noun)|opinion|persuasion|view|thought|belief +sentimental|2 +(adj)|tender +(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|slushy|emotional +sentimentalisation|1 +(noun)|sentimentalization|romanticization|romanticisation|idealization|idealisation|glorification +sentimentalise|3 +(verb)|sentimentalize|change|alter|modify +(verb)|sentimentalize|misrepresent|belie +(verb)|sentimentalize|sentimentize|sentimentise|act|behave|do +sentimentalism|2 +(noun)|formulation|expression +(noun)|mawkishness|sentimentality|drippiness +sentimentalist|1 +(noun)|romanticist|person|individual|someone|somebody|mortal|human|soul +sentimentality|2 +(noun)|mawkishness|drippiness|emotionality|emotionalism +(noun)|sentiment +sentimentalization|1 +(noun)|sentimentalisation|romanticization|romanticisation|idealization|idealisation|glorification +sentimentalize|3 +(verb)|sentimentalise|misrepresent|belie +(verb)|sentimentalise|change|alter|modify +(verb)|sentimentalise|sentimentize|sentimentise|act|behave|do +sentimentise|1 +(verb)|sentimentalise|sentimentalize|sentimentize|act|behave|do +sentimentize|1 +(verb)|sentimentalise|sentimentalize|sentimentise|act|behave|do +sentinel|1 +(noun)|lookout|lookout man|sentry|watch|spotter|scout|picket|watchman|watcher|security guard +sentry|1 +(noun)|lookout|lookout man|sentinel|watch|spotter|scout|picket|watchman|watcher|security guard +sentry box|1 +(noun)|shelter +sentry duty|1 +(noun)|guard duty|guard|sentry go|assignment|duty assignment +sentry go|1 +(noun)|guard duty|guard|sentry duty|assignment|duty assignment +seoul|1 +(noun)|Seoul|capital of South Korea|national capital +sep|1 +(noun)|September|Sep|Sept|Gregorian calendar month +sep 11|1 +(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack +sepal|1 +(noun)|floral leaf +sepaline|1 +(adj)|sepaloid|floral leaf +sepaloid|1 +(adj)|sepaline|floral leaf +separability|1 +(noun)|disjunction|disjuncture|disconnection|disconnectedness +separable|1 +(adj)|dissociable|severable|divisible +separate|22 +(adj)|separate |abstracted|removed|apart|asunder|detached|isolated|separated|set-apart|discrete|distinct|disjoint|disjunct|isolated|isolable|divided|independent|individual|other|segregated|unintegrated|unshared +(adj)|single|individual +(adj)|freestanding|detached +(adj)|apart|separated|divided +(adj)|individual|single|unshared +(adj)|segregated |unintegrated +(adj)|disjoined|unconnected +(noun)|offprint|reprint|article +(noun)|garment +(verb)|divide +(verb)|disunite|divide|part|move|displace +(verb)|distinguish|differentiate|secern|secernate|severalize|severalise|tell|tell apart|identify|place +(verb)|divide|split|split up|dissever|carve up|change integrity +(verb)|divide|part|change +(verb)|change integrity +(verb)|classify|class|sort|assort|sort out|categorize|categorise +(verb)|break|split up|fall apart|come apart|change integrity +(verb)|divide +(verb)|part|split up|split|break|break up +(verb)|part|split|move +(verb)|discriminate|single out|distinguish|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|branch|ramify|fork|furcate|diverge +separate off|1 +(verb)|screen off|partition|zone +separate out|1 +(verb)|filter|filtrate|strain|filter out|separate +separated|5 +(adj)|detached|isolated|set-apart|separate +(adj)|spaced|distributed +(adj)|apart|separate|divided +(adj)|disjointed|dislocated|injured +(adj)|detached|unconnected +separately|1 +(adv)|individually|singly|severally|one by one|on an individual basis +separateness|3 +(noun)|discreteness|distinctness|severalty|separation +(noun)|independence|independency +(noun)|otherness|distinctness|difference +separation|9 +(noun)|change of integrity +(noun)|breakup|detachment|change|alteration|modification +(noun)|integrity|unity|wholeness +(noun)|interval|distance +(noun)|sorting +(noun)|group action +(noun)|space +(noun)|result|resultant|final result|outcome|termination +(noun)|legal separation|cessation|surcease +separation energy|1 +(noun)|binding energy|energy +separationist|1 +(noun)|separatist|advocate|advocator|proponent|exponent +separatism|2 +(noun)|segregation|social organization|social organisation|social structure|social system|structure +(noun)|disposition +separatist|2 +(adj)|breakaway|fissiparous|independent +(noun)|separationist|advocate|advocator|proponent|exponent +separative|3 +(adj)|disjunctive +(adj)|partitive|disjunctive +(adj)|distributive +separator|1 +(noun)|centrifuge|extractor|apparatus|setup +separatrix|1 +(noun)|solidus|slash|virgule|diagonal|stroke|punctuation|punctuation mark +sephardi|1 +(noun)|Sephardi|Sephardic Jew|Jew|Hebrew|Israelite +sephardic jew|1 +(noun)|Sephardi|Sephardic Jew|Jew|Hebrew|Israelite +sepia|3 +(noun)|reddish brown|burnt sienna|Venetian red|brown|brownness +(noun)|pigment +(noun)|Sepia|genus Sepia|mollusk genus +sepiidae|1 +(noun)|Sepiidae|family Sepiidae|mollusk family +sepiolite|1 +(noun)|meerschaum|mineral +sepoy mutiny|1 +(noun)|Indian Mutiny|Sepoy Mutiny|rebellion|insurrection|revolt|rising|uprising +sepsis|1 +(noun)|infection +sept|2 +(noun)|September|Sep|Sept|Gregorian calendar month +(noun)|family|family line|folk|kinfolk|kinsfolk|phratry|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +sept. 11|1 +(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack +septal|1 +(adj)|septate|body part +septal defect|1 +(noun)|congenital heart defect +septate|1 +(adj)|septal|body part +septation|1 +(noun)|division|partition|partitioning|segmentation|sectionalization|sectionalisation +september|1 +(noun)|September|Sep|Sept|Gregorian calendar month +september 11|1 +(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack +september 17|1 +(noun)|Citizenship Day|September 17|day +september 29|1 +(noun)|Michaelmas|Michaelmas Day|September 29|quarter day +september elm|1 +(noun)|September elm|red elm|Ulmus serotina|elm|elm tree +september equinox|1 +(noun)|autumnal equinox|September equinox|fall equinox|equinox +septentrion|1 +(noun)|North|northland|region +septet|5 +(noun)|seven|7|VII|sevener|heptad|digit|figure +(noun)|septette|musical organization|musical organisation|musical group +(noun)|septette|set +(noun)|septette|sevensome|gathering|assemblage +(noun)|septette|musical composition|opus|composition|piece|piece of music +septette|4 +(noun)|septet|musical organization|musical organisation|musical group +(noun)|septet|set +(noun)|septet|sevensome|gathering|assemblage +(noun)|septet|musical composition|opus|composition|piece|piece of music +septic|2 +(adj)|septic |abscessed|contaminated|dirty|infected|pestiferous|contaminative|infected|purulent|pussy|putrid|putrefactive|putrefacient|septicemic|infectious|infective|germy|unhealthful +(adj)|decay +septic sore throat|1 +(noun)|streptococcal sore throat|strep throat|streptococcus tonsilitis|throat infection|sore throat|pharyngitis|raw throat|infection +septic tank|1 +(noun)|tank|storage tank +septicaemia|1 +(noun)|blood poisoning|septicemia|sepsis|blood disease|blood disorder +septicemia|1 +(noun)|blood poisoning|septicaemia|sepsis|blood disease|blood disorder +septicemic|1 +(adj)|septic +septicemic plague|1 +(noun)|plague +septobasidiaceae|1 +(noun)|Septobasidiaceae|family Septobasidiaceae|fungus family +septobasidium|1 +(noun)|Septobasidium|genus Septobasidium|fungus genus +septobasidium pseudopedicellatum|1 +(noun)|felt fungus|Septobasidium pseudopedicellatum|fungus +septrional|1 +(adj)|northern +septuagenarian|1 +(noun)|oldster|old person|senior citizen|golden ager +septuagesima|1 +(noun)|Septuagesima|Septuagesima Sunday|Christian holy day +septuagesima sunday|1 +(noun)|Septuagesima|Septuagesima Sunday|Christian holy day +septuagint|1 +(noun)|Septuagint|Old Testament +septum|2 +(noun)|body part +(noun)|plant organ +septuple|1 +(adj)|sevenfold|multiple +sepulcher|1 +(noun)|burial chamber|sepulchre|sepulture|grave|tomb|chamber +sepulchral|3 +(adj)|grave|tomb|chamber +(adj)|charnel|ghastly|offensive +(adj)|funereal|joyless +sepulchre|1 +(noun)|burial chamber|sepulcher|sepulture|grave|tomb|chamber +sepulture|2 +(noun)|burial|entombment|inhumation|interment|funeral +(noun)|burial chamber|sepulcher|sepulchre|grave|tomb|chamber +sequel|2 +(noun)|subsequence|result|resultant|final result|outcome|termination +(noun)|continuation|addendum|supplement|postscript +sequela|1 +(noun)|abnormality|abnormalcy|abnormal condition +sequella|1 +(noun)|consequence|aftermath +sequenator|1 +(noun)|sequencer|apparatus|setup +sequence|7 +(noun)|series +(noun)|chronological sequence|succession|successiveness|chronological succession|temporal arrangement|temporal order +(noun)|episode|film|photographic film +(noun)|succession|order|ordering +(noun)|repeat|repetition +(verb)|rate|rank|range|order|grade|place +(verb)|determine|find|find out|ascertain +sequencer|2 +(noun)|sequenator|apparatus|setup +(noun)|hardware|computer hardware +sequent|2 +(adj)|consecutive|sequential|serial|successive|ordered +(adj)|consequent|ensuant|resultant|resulting|subsequent +sequential|1 +(adj)|consecutive|sequent|serial|successive|ordered +sequential operation|1 +(noun)|serial operation|consecutive operation|operation +sequentially|1 +(adv)|consecutive +sequester|5 +(verb)|take +(verb)|impound|attach|confiscate|seize|take +(verb)|change +(verb)|seclude|sequestrate|withdraw|isolate|insulate +(verb)|sequestrate|keep apart|set apart|isolate|separate|disunite|divide|part +sequestered|2 +(adj)|cloistered|reclusive|secluded|private +(adj)|segregated |unintegrated +sequestrate|2 +(verb)|seclude|sequester|withdraw|isolate|insulate +(verb)|sequester|keep apart|set apart|isolate|separate|disunite|divide|part +sequestration|4 +(noun)|segregation|separation +(noun)|chemical process|chemical change|chemical action +(noun)|writ|judicial writ +(noun)|requisition|appropriation +sequin|1 +(noun)|spangle|diamante|adornment +sequined|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|spangled|spangly|adorned |decorated +sequoia|1 +(noun)|redwood|cypress +sequoia gigantea|1 +(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +sequoia national park|1 +(noun)|Sequoia National Park|national park +sequoia sempervirens|1 +(noun)|California redwood|coast redwood|Sequoia sempervirens|sequoia|redwood +sequoia wellingtonia|1 +(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +sequoiadendron|1 +(noun)|Sequoiadendron|genus Sequoiadendron|plant genus +sequoiadendron giganteum|1 +(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +sequoya|1 +(noun)|Sequoya|Sequoyah|George Guess|Indian chief|Indian chieftain|Cherokee +sequoyah|1 +(noun)|Sequoya|Sequoyah|George Guess|Indian chief|Indian chieftain|Cherokee +seraglio|1 +(noun)|harem|hareem|serail|living quarters|quarters +serail|1 +(noun)|harem|hareem|seraglio|living quarters|quarters +serape|1 +(noun)|sarape|shawl +seraph|1 +(noun)|angel +seraphic|2 +(adj)|seraphical|angel +(adj)|angelic|angelical|cherubic|sweet|lovable |loveable +seraphical|1 +(adj)|seraphic|angel +serax|1 +(noun)|oxazepam|Serax|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +serb|1 +(noun)|Serbian|Serb|Slav +serbia|1 +(noun)|Serbia|Srbija|geographical area|geographic area|geographical region|geographic region +serbia and montenegro|1 +(noun)|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|Serbia and Montenegro|European country|European nation +serbian|2 +(adj)|Serbian|geographical area|geographic area|geographical region|geographic region|Slav +(noun)|Serbian|Serb|Slav +serbo-croat|1 +(noun)|Serbo-Croat|Serbo-Croatian|Slavic|Slavic language|Slavonic|Slavonic language +serbo-croatian|1 +(noun)|Serbo-Croat|Serbo-Croatian|Slavic|Slavic language|Slavonic|Slavonic language +serdica|1 +(noun)|Sofia|Serdica|Bulgarian capital|national capital +sere|1 +(adj)|dried-up|sear|shriveled|shrivelled|withered|dry +serenade|3 +(noun)|divertimento|musical composition|opus|composition|piece|piece of music +(noun)|song +(verb)|perform|execute|do +serendipitous|1 +(adj)|lucky +serendipity|1 +(noun)|good luck|fluke|good fortune +serene|2 +(adj)|calm|tranquil|peaceful +(adj)|clear +sereness|1 +(noun)|dryness|waterlessness|xerotes +serenity|2 +(noun)|repose|quiet|placidity|tranquillity|tranquility|composure|calm|calmness|equanimity +(noun)|peace|peacefulness|peace of mind|repose|heartsease|ataraxis|tranquillity|tranquility|quietness|quietude +serenoa|1 +(noun)|Serenoa|genus Serenoa|monocot genus|liliopsid genus +serenoa repens|1 +(noun)|saw palmetto|scrub palmetto|Serenoa repens|fan palm +serer|1 +(noun)|Serer|West African +serf|1 +(noun)|helot|villein|thrall +serfdom|1 +(noun)|serfhood|vassalage|bondage|slavery|thrall|thralldom|thraldom +serfhood|1 +(noun)|serfdom|vassalage|bondage|slavery|thrall|thralldom|thraldom +serflike|1 +(adj)|unfree +serge|1 +(noun)|fabric|cloth|material|textile +serge koussevitzky|1 +(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor|music director|director +sergeant|3 +(noun)|noncommissioned officer|noncom +(noun)|police sergeant|lawman|law officer|peace officer +(noun)|serjeant-at-law|serjeant|sergeant-at-law|barrister +sergeant-at-law|1 +(noun)|serjeant-at-law|serjeant|sergeant|barrister +sergeant at arms|1 +(noun)|serjeant-at-arms|officeholder|officer +sergeant first class|1 +(noun)|first sergeant|sergeant +sergeant fish|1 +(noun)|cobia|Rachycentron canadum|percoid fish|percoid|percoidean +sergeant major|2 +(noun)|police sergeant|sergeant +(noun)|Abudefduf saxatilis|damselfish|demoiselle +sergei aleksandrovich koussevitzky|1 +(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor|music director|director +sergei diaghilev|1 +(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman|promoter|impresario +sergei eisenstein|1 +(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker|filmmaker|film producer|movie maker +sergei mikhailovich eisenstein|1 +(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker|filmmaker|film producer|movie maker +sergei pavlovich diaghilev|1 +(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman|promoter|impresario +sergei rachmaninoff|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +sergei rachmaninov|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +sergei sergeyevich prokofiev|1 +(noun)|Prokofiev|Sergei Sergeyevich Prokofiev|composer +sergei vasilievich rachmaninoff|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +sergei vasilievich rachmaninov|1 +(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer|pianist|piano player +serger|1 +(noun)|sewing machine +serial|6 +(adj)|consecutive|sequent|sequential|successive|ordered +(adj)|music +(adj)|ordering|order|ordination +(adj)|in series|nonparallel|asynchronous +(noun)|series|broadcast|program|programme +(noun)|series|serial publication|periodical +serial killer|1 +(noun)|serial murderer|murderer|liquidator|manslayer +serial monogamy|1 +(noun)|monogamy|monogamousness +serial murderer|1 +(noun)|serial killer|murderer|liquidator|manslayer +serial music|1 +(noun)|serialism|music +serial operation|1 +(noun)|sequential operation|consecutive operation|operation +serial port|1 +(noun)|interface|port +serial printer|1 +(noun)|character printer|character-at-a-time printer|printer|printing machine +serial processing|1 +(noun)|data processing +serial publication|1 +(noun)|series|serial|periodical +serialisation|1 +(noun)|serialization|publication|publishing +serialise|1 +(verb)|serialize|arrange|set up +serialism|1 +(noun)|serial music|music +serialization|1 +(noun)|serialisation|publication|publishing +serialize|1 +(verb)|serialise|arrange|set up +sericea lespedeza|1 +(noun)|Lespedeza sericea|Lespedeza cuneata|bush clover|lespedeza +sericeous|1 +(adj)|downy|pubescent|puberulent|hairy |hirsute +sericocarpus|1 +(noun)|Sericocarpus|genus Sericocarpus|asterid dicot genus +sericterium|1 +(noun)|silk gland|serictery|gland|secretory organ|secretor|secreter +serictery|1 +(noun)|silk gland|sericterium|gland|secretory organ|secretor|secreter +sericultural|1 +(adj)|natural process|natural action|action|activity|production +sericulture|2 +(noun)|natural process|natural action|action|activity +(noun)|production +sericulturist|1 +(noun)|manufacturer|producer +seriema|2 +(noun)|chunga|Chunga burmeisteri|wading bird|wader +(noun)|crested cariama|Cariama cristata|wading bird|wader +series|7 +(noun)|ordering|order|ordination +(noun)|serial|broadcast|program|programme +(noun)|serial|serial publication|periodical +(noun)|contest|competition +(noun)|group|grouping +(noun)|polynomial|multinomial +(noun)|connection|connexion|connectedness +series circuit|1 +(noun)|circuit|electrical circuit|electric circuit +serif|1 +(noun)|seriph|line +serigraph|1 +(noun)|silkscreen|silk screen print|print +serigraphy|1 +(noun)|printmaking +serin|1 +(noun)|finch +serine|1 +(noun)|amino acid|aminoalkanoic acid +serinus|1 +(noun)|Serinus|genus Serinus|bird genus +serinus canaria|1 +(noun)|common canary|Serinus canaria|canary|canary bird +seriocomedy|1 +(noun)|tragicomedy|comedy +seriocomic|1 +(adj)|seriocomical|humorous |humourous +seriocomical|1 +(adj)|seriocomic|humorous |humourous +seriola|1 +(noun)|Seriola|genus Seriola|fish genus +seriola dorsalis|1 +(noun)|yellowtail|Seriola dorsalis|jack +seriola grandis|1 +(noun)|kingfish|Seriola grandis|jack +seriola zonata|1 +(noun)|rudderfish|banded rudderfish|Seriola zonata|jack +serious|6 +(adj)|serious |capital|earnest|in earnest|sincere|solemn|grave|sedate|sober|solemn|overserious|real|sensible|thoughtful|sobering +(adj)|important |of import +(adj)|dangerous|grave|grievous|severe|life-threatening|critical +(adj)|good|intellectual +(adj)|unplayful |sober +(adj)|difficult |hard +serious-mindedness|1 +(noun)|seriousness|earnestness|sincerity|trait +serious music|1 +(noun)|classical music|music genre|musical genre|genre|musical style +seriously|2 +(adv)|earnestly|in earnest +(adv)|badly|severely|gravely +seriousness|3 +(noun)|earnestness|sincerity|gravity|solemnity +(noun)|distressfulness|badness|severity +(noun)|earnestness|serious-mindedness|sincerity|trait +seriph|1 +(noun)|serif|line +seriphidium|1 +(noun)|Seriphidium|genus Seriphidium|asterid dicot genus +seriphidium canum|1 +(noun)|silver sage|silver sagebrush|gray sage|Seriphidium canum|Artemisia cana|sagebrush|sage brush +seriphidium maritimum|1 +(noun)|sea wormwood|Seriphidium maritimum|Artemisia maritima|wormwood +seriphidium tridentatum|1 +(noun)|big sagebrush|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush|sage brush +seriphus|1 +(noun)|Seriphus|genus Seriphus|fish genus +seriphus politus|1 +(noun)|white croaker|queenfish|Seriphus politus|croaker +serjeant|1 +(noun)|serjeant-at-law|sergeant-at-law|sergeant|barrister +serjeant-at-arms|1 +(noun)|sergeant at arms|officeholder|officer +serjeant-at-law|1 +(noun)|serjeant|sergeant-at-law|sergeant|barrister +serkin|1 +(noun)|Serkin|Rudolf Serkin|pianist|piano player +sermon|2 +(noun)|discourse|preaching|address|speech +(noun)|preaching|lecture|speech|talking to +sermon on the mount|1 +(noun)|Sermon on the Mount|sermon|discourse|preaching +sermonise|1 +(verb)|sermonize|preachify|moralize|moralise|preach|advocate +sermoniser|1 +(noun)|preacher|preacher man|sermonizer|clergyman|reverend|man of the cloth +sermonize|1 +(verb)|sermonise|preachify|moralize|moralise|preach|advocate +sermonizer|1 +(noun)|preacher|preacher man|sermoniser|clergyman|reverend|man of the cloth +serologic|1 +(adj)|serological|medical science +serological|1 +(adj)|serologic|medical science +serologist|1 +(noun)|medical scientist +serology|1 +(noun)|medical science +serosa|1 +(noun)|serous membrane|membrane|tissue layer +serotine|1 +(noun)|European brown bat|Eptesicus serotinus|vespertilian bat|vespertilionid +serotonin|1 +(noun)|5-hydroxytryptamine|monoamine neurotransmitter +serous|1 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +serous membrane|1 +(noun)|serosa|membrane|tissue layer +serow|1 +(noun)|goat antelope +serpasil|1 +(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive|antihypertensive drug +serpens|1 +(noun)|Serpens|constellation +serpent|3 +(noun)|snake|ophidian|diapsid|diapsid reptile +(noun)|firework|pyrotechnic +(noun)|cornet|horn|trumpet|trump +serpent-worship|1 +(noun)|ophiolatry|zoolatry|animal-worship +serpent fern|1 +(noun)|golden polypody|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern +serpent star|1 +(noun)|brittle star|brittle-star|echinoderm +serpentes|1 +(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order +serpentine|1 +(adj)|snaky|snakelike|curved |curving +serra|1 +(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary|missioner +serranid|1 +(noun)|serranid fish|percoid fish|percoid|percoidean +serranid fish|1 +(noun)|serranid|percoid fish|percoid|percoidean +serranidae|1 +(noun)|Serranidae|family Serranidae|fish family +serranus|1 +(noun)|Serranus|genus Serranus|fish genus +serranus subligarius|1 +(noun)|belted sandfish|Serranus subligarius|sea bass +serrasalmus|1 +(noun)|Serrasalmus|genus Serrasalmus|fish genus +serrate|2 +(adj)|serrated|saw-toothed|toothed|notched|rough +(verb)|jag +serrate leaf|1 +(noun)|leaf|leafage|foliage +serrated|1 +(adj)|serrate|saw-toothed|toothed|notched|rough +serrated wrack|1 +(noun)|Fucus serratus|tang|brown algae +serratia|1 +(noun)|genus Serratia|Serratia|bacteria genus +serratia marcescens|1 +(noun)|Serratia marcescens|bacteria species +serration|3 +(noun)|condition|status +(noun)|row +(noun)|notch +serratula|1 +(noun)|Serratula|genus Serratula|asterid dicot genus +serratula tinctoria|1 +(noun)|sawwort|Serratula tinctoria|herb|herbaceous plant +serratus|1 +(noun)|serratus muscles|skeletal muscle|striated muscle +serratus anterior|1 +(noun)|anterior serratus muscle|musculus serratus anterior|serratus magnus|serratus|serratus muscles +serratus magnus|1 +(noun)|anterior serratus muscle|serratus anterior|musculus serratus anterior|serratus|serratus muscles +serratus muscles|1 +(noun)|serratus|skeletal muscle|striated muscle +serratus posterior|1 +(noun)|posterior serratus muscle|musculus serratus posterior|serratus|serratus muscles +serratus posterior inferior|1 +(noun)|posterior serratus muscle|serratus posterior|musculus serratus posterior +serratus posterior superior|1 +(noun)|posterior serratus muscle|serratus posterior|musculus serratus posterior +serried|1 +(adj)|compact +serrulate|1 +(adj)|rough +sertoli's cell|1 +(noun)|Sertoli cell|Sertoli's cell|cell +sertoli cell|1 +(noun)|Sertoli cell|Sertoli's cell|cell +sertraline|1 +(noun)|Zoloft|selective-serotonin reuptake inhibitor|SSRI +sertularia|1 +(noun)|Sertularia|genus Sertularia|coelenterate genus +sertularian|1 +(noun)|hydrozoan|hydroid +serum|1 +(noun)|blood serum|liquid body substance|bodily fluid|body fluid|humor|humour +serum albumin|1 +(noun)|albumin|albumen +serum disease|1 +(noun)|serum sickness|allergy|allergic reaction +serum globulin|1 +(noun)|globulin +serum hepatitis|1 +(noun)|hepatitis B|viral hepatitis +serum sickness|1 +(noun)|serum disease|allergy|allergic reaction +serval|1 +(noun)|Felis serval|wildcat +servant|2 +(noun)|retainer|worker +(noun)|handmaid|handmaiden|subordinateness|subsidiarity +servant's entrance|1 +(noun)|service door|service entrance|entrance|entranceway|entryway|entry|entree +servant girl|1 +(noun)|serving girl|servant|retainer +serve|16 +(noun)|service|tennis stroke|tennis shot +(verb)|function|suffice|do|answer +(verb)|work|do work +(verb)|effect|effectuate|bring about|set up +(verb)|service|function|work|operate|go|run +(verb)|help|provide|supply|ply|cater +(verb)|serve up|dish out|dish up|dish|provide|supply|ply|cater +(verb)|work +(verb)|serve well|foster|nurture +(verb)|do|spend|pass +(verb)|attend to|wait on|attend|assist|help|assist|aid +(verb)|process|swear out|deliver +(verb)|suffice|do|answer|satisfy|fulfill|fulfil|live up to +(verb)|work|do work +(verb)|service|copulate|mate|pair|couple +(verb)|move|go +serve up|1 +(verb)|serve|dish out|dish up|dish|provide|supply|ply|cater +serve well|1 +(verb)|serve|foster|nurture +server|4 +(noun)|waiter|dining-room attendant|restaurant attendant +(noun)|player|participant +(noun)|host|computer|computing machine|computing device|data processor|electronic computer|information processing system +(noun)|utensil +service|18 +(noun)|work +(noun)|company +(noun)|religious service|divine service|religious ceremony|religious ritual +(noun)|aid|assist|assistance|help +(noun)|employment|work +(noun)|military service|armed service|force|personnel +(noun)|accommodation +(noun)|overhaul|inspection and repair|care|maintenance|upkeep +(noun)|table service|tableware +(noun)|serve|tennis stroke|tennis shot +(noun)|serving|service of process|delivery|bringing +(noun)|Service|Robert William Service|writer|author +(noun)|avail|help|helpfulness +(noun)|servicing|coupling|mating|pairing|conjugation|union|sexual union +(noun)|activity +(verb)|serve|function|work|operate|go|run +(verb)|tune|tune up +(verb)|serve|copulate|mate|pair|couple +service abroad|1 +(noun)|sea-duty|shipboard duty|assignment|duty assignment +service agency|1 +(noun)|service bureau|service firm|agency +service area|1 +(noun)|topographic point|place|spot +service book|1 +(noun)|sacred text|sacred writing|religious writing|religious text +service break|1 +(noun)|victory|triumph +service bureau|1 +(noun)|service agency|service firm|agency +service call|1 +(noun)|trip +service cap|1 +(noun)|kepi|peaked cap|yachting cap|cap +service ceiling|1 +(noun)|combat ceiling|ceiling +service charge|1 +(noun)|service fee|charge +service club|2 +(noun)|club|society|guild|gild|lodge|order +(noun)|center|centre +service contract|1 +(noun)|contract +service cutback|1 +(noun)|cutback +service department|2 +(noun)|business department +(noun)|garage|repair shop|fix-it shop +service door|1 +(noun)|service entrance|servant's entrance|entrance|entranceway|entryway|entry|entree +service elevator|1 +(noun)|freight elevator|elevator|lift +service entrance|1 +(noun)|service door|servant's entrance|entrance|entranceway|entryway|entry|entree +service fee|1 +(noun)|service charge|charge +service firm|1 +(noun)|service agency|service bureau|agency +service industry|1 +(noun)|industry +service line|1 +(noun)|baseline|line +service man|2 +(noun)|repairman|repairer|maintenance man|fixer|skilled worker|trained worker +(noun)|serviceman|military man|man|military personnel|skilled worker|trained worker +service of process|1 +(noun)|service|serving|delivery|bringing +service program|1 +(noun)|utility program|utility|program|programme|computer program|computer programme +service road|1 +(noun)|frontage road|local road|local street +service routine|1 +(noun)|utility routine|routine|subroutine|subprogram|procedure|function +service staff|1 +(noun)|maintenance staff|staff +service station|1 +(noun)|station +service stripe|1 +(noun)|hashmark|hash mark|insignia +service tree|2 +(noun)|sorb apple|sorb apple tree|Sorbus domestica|mountain ash +(noun)|Juneberry|serviceberry|shadbush|shadblow|shrub|bush +serviceability|1 +(noun)|serviceableness|usableness|utility|usefulness +serviceable|3 +(adj)|serviceable |durable|long-wearing|fixable|repairable|maintained|repaired|serviced|functional|usable|useable|in working order|operable|operational|functional|practical|useful|utile +(adj)|useful |utile +(adj)|practical +serviceableness|1 +(noun)|serviceability|usableness|utility|usefulness +serviceberry|2 +(noun)|Juneberry|service tree|shadbush|shadblow|shrub|bush +(noun)|saskatoon|shadberry|juneberry|berry +serviced|1 +(adj)|maintained|repaired|serviceable +serviceman|1 +(noun)|military man|man|military personnel|skilled worker|trained worker +services|16 +(noun)|employment|work +(noun)|service|work +(noun)|service|company +(noun)|service|religious service|divine service|religious ceremony|religious ritual +(noun)|service|aid|assist|assistance|help +(noun)|service|employment|work +(noun)|military service|armed service|service|force|personnel +(noun)|service|accommodation +(noun)|overhaul|inspection and repair|service|care|maintenance|upkeep +(noun)|service|table service|tableware +(noun)|serve|service|tennis stroke|tennis shot +(noun)|service|serving|service of process|delivery|bringing +(noun)|Service|Robert William Service|writer|author +(noun)|avail|help|service|helpfulness +(noun)|servicing|service|coupling|mating|pairing|conjugation|union|sexual union +(noun)|service|activity +servicing|1 +(noun)|service|coupling|mating|pairing|conjugation|union|sexual union +serviette|1 +(noun)|napkin|table napkin|table linen|napery +servile|3 +(adj)|person|individual|someone|somebody|mortal|human|soul +(adj)|servile |obsequious|slavish|subservient|submissive|slavelike +(adj)|slave +servilely|1 +(adv)|obsequiously|subserviently +servility|1 +(noun)|obsequiousness|subservience|submissiveness +serving|2 +(noun)|helping|portion|small indefinite quantity|small indefinite amount +(noun)|service|service of process|delivery|bringing +serving cart|1 +(noun)|handcart|pushcart|cart|go-cart +serving dish|1 +(noun)|dish +serving girl|1 +(noun)|servant girl|servant|retainer +servitor|1 +(noun)|attendant|attender|tender +servitude|1 +(noun)|bondage|slavery|thrall|thralldom|thraldom +servo|2 +(adj)|servomechanical|control system +(noun)|servomechanism|servosystem|control system +servomechanical|1 +(adj)|servo|control system +servomechanism|1 +(noun)|servo|servosystem|control system +servosystem|1 +(noun)|servo|servomechanism|control system +serzone|1 +(noun)|nefazodone|Serzone|antidepressant|antidepressant drug +sesame|1 +(noun)|benne|benni|benny|Sesamum indicum|herb|herbaceous plant +sesame family|1 +(noun)|Pedaliaceae|family Pedaliaceae|plant family +sesame oil|1 +(noun)|vegetable oil|oil +sesame seed|1 +(noun)|benniseed|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +sesamoid bone|1 +(noun)|os sesamoideum|bone|os +sesamum|1 +(noun)|Sesamum|genus Sesamum|plant genus +sesamum indicum|1 +(noun)|sesame|benne|benni|benny|Sesamum indicum|herb|herbaceous plant +sesbania|1 +(noun)|legume|leguminous plant +sesbania exaltata|1 +(noun)|Colorado River hemp|Sesbania exaltata|sesbania +sesbania grandiflora|1 +(noun)|scarlet wisteria tree|vegetable hummingbird|Sesbania grandiflora|tree +seseli|1 +(noun)|Seseli|genus Seseli|rosid dicot genus +sesotho|1 +(noun)|Sesotho|Basuto|Sotho +sesquipedalia|1 +(noun)|sesquipedalian|polysyllable|polysyllabic word +sesquipedalian|3 +(adj)|pretentious +(adj)|polysyllabic|long +(noun)|sesquipedalia|polysyllable|polysyllabic word +sesquipedality|1 +(noun)|expressive style|style +sess|1 +(noun)|pot|grass|green goddess|dope|weed|gage|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +sessile|2 +(adj)|sessile |attached +(adj)|sessile |stalkless +sessile polyp|1 +(noun)|polyp|polypus +sessile trillium|1 +(noun)|red trillium|toadshade|Trillium sessile|trillium|wood lily|wake-robin +session|4 +(noun)|conference|group discussion +(noun)|school term|academic term|academic session|term +(noun)|meeting|coming together +(noun)|seance|sitting|meeting|get together +session cookie|1 +(noun)|cookie +sessions|5 +(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer +(noun)|session|conference|group discussion +(noun)|school term|academic term|academic session|session|term +(noun)|session|meeting|coming together +(noun)|seance|sitting|session|meeting|get together +sestet|5 +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sextuplet|hexad|digit|figure +(noun)|sextet|sextette|musical organization|musical organisation|musical group +(noun)|sextet|sextette|set +(noun)|sextet|sextette|musical composition|opus|composition|piece|piece of music +(noun)|stanza +set|44 +(adj)|fit|primed|ready +(adj)|fixed|rigid|nonmoving |unmoving +(adj)|located|placed|situated|settled +(adj)|laid|arranged |ordered +(adj)|down +(adj)|determined|dictated|settled +(adj)|hardened|hard +(noun)|collection|aggregation|accumulation|assemblage +(noun)|abstraction +(noun)|exercise set|exercise|exercising|physical exercise|physical exertion|workout +(noun)|stage set|representation +(noun)|circle|band|lot|social group +(noun)|bent|inclination|disposition|tendency +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|playing period|period of play|play +(noun)|hardening|solidifying|solidification|curing|natural process|natural action|action|activity +(noun)|Set|Seth|Egyptian deity +(noun)|descent +(noun)|readiness|cognitive state|state of mind +(noun)|electronic equipment +(verb)|put|place|pose|position|lay|move|displace|set down|set back|set up|set up|set down|set up|set up|set up|set out +(verb)|determine +(verb)|specify|determine|fix|limit|choose|take|select|pick out +(verb)|mark|lay down|establish|make +(verb)|change|alter|modify|set off|set up|set off|set apart|set aside|set off +(verb)|arrange|set up +(verb)|fix|prepare|set up|ready|gear up|change|alter|modify +(verb)|adjust|correct|set ahead +(verb)|localize|localise|place|stage|present|represent +(verb)|go down|go under|descend|fall|go down|come down +(verb)|arrange|compose|write +(verb)|plant|put|place|pose|position|lay +(verb)|originate|initiate|start +(verb)|jell|congeal|solidify +(verb)|put|place|pose|position|lay +(verb)|countersink|bury|sink +(verb)|hone +(verb)|sic|assail|assault|set on|attack +(verb)|place|put|estimate|gauge|approximate|guess|judge +(verb)|rig|set up|equip|fit|fit out|outfit +(verb)|set up|lay out|fix|prepare|set up|ready|gear up +(verb)|adjust|correct|change|alter|modify +(verb)|fructify|reproduce|procreate|multiply +(verb)|dress|arrange|do|coif|coiffe|coiffure|groom|neaten +set-apart|1 +(adj)|detached|isolated|separated|separate +set-aside|1 +(adj)|booked|engaged|reserved +set-back|2 +(noun)|setoff|offset|structure|construction +(noun)|reverse|reversal|setback|blow|black eye|happening|occurrence|natural event +set-to|1 +(noun)|fight|fighting|combat|scrap +set ablaze|1 +(verb)|set aflame|set on fire|set afire|burn|combust +set about|3 +(verb)|go about|approach|act|move +(verb)|undertake|attempt|initiate|pioneer +(verb)|get down|begin|get|start out|start|set out|commence +set afire|1 +(verb)|set ablaze|set aflame|set on fire|burn|combust +set aflame|1 +(verb)|set ablaze|set on fire|set afire|burn|combust +set ahead|1 +(verb)|advance|set +set apart|2 +(verb)|assign|specify|choose|take|select|pick out +(verb)|sequester|sequestrate|keep apart|isolate|separate|disunite|divide|part +set ashore|1 +(verb)|land|shore|arrive|get|come +set aside|2 +(verb)|allow|appropriate|earmark|reserve|assign|allot|portion +(verb)|suspend|change|alter|modify +set back|3 +(verb)|postpone|prorogue|hold over|put over|table|shelve|defer|remit|put off|delay +(verb)|impede|hinder +(verb)|knock back|put back|cost|be +set chisel|1 +(noun)|cold chisel|chisel +set decoration|1 +(noun)|decoration|ornament|ornamentation +set down|6 +(verb)|write down|get down|put down|write +(verb)|land|arrive|get|come +(verb)|put|set|place|pose|position|lay +(verb)|put down|place down|put|set|place|pose|position|lay +(verb)|disembark|debark|land +(verb)|drop|put down|unload|discharge|deliver +set forth|2 +(verb)|expound|exposit|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|depart|part|start|start out|set off|set out|take off|leave|go forth|go away +set free|1 +(verb)|liberate|free|discharge +set gun|1 +(noun)|spring gun|gun +set in|2 +(verb)|kick in|begin|start +(verb)|blow +set in motion|1 +(verb)|launch|move|displace +set in stone|1 +(adj)|carved in stone|unchangeable +set of bookshelves|1 +(noun)|stacks|storage space +set off|7 +(verb)|trip|actuate|trigger|activate|spark off|spark|trigger off|touch off|initiate|pioneer +(verb)|depart|part|start|start out|set forth|set out|take off|leave|go forth|go away +(verb)|bring out|stress|emphasize|emphasise|punctuate|accent|accentuate +(verb)|explode|detonate|blow up|change integrity +(verb)|cancel|offset|balance|equilibrate|equilibrize|equilibrise +(verb)|begin|lead off|start|commence +(verb)|incite|instigate|stir up|provoke|stimulate +set on|1 +(verb)|assail|assault|attack +set on fire|1 +(verb)|set ablaze|set aflame|set afire|burn|combust +set out|3 +(verb)|get down|begin|get|start out|start|set about|commence +(verb)|range|array|lay out|arrange|set up +(verb)|depart|part|start|start out|set forth|set off|take off|leave|go forth|go away +set phrase|1 +(noun)|idiom|idiomatic expression|phrasal idiom|phrase|saying|expression|locution +set piece|1 +(noun)|scenery|scene +set point|1 +(noun)|point +set shot|1 +(noun)|basketball shot +set square|1 +(noun)|try square +set theory|1 +(noun)|pure mathematics +set to music|1 +(verb)|compose|write +set up|16 +(adj)|established |constituted +(verb)|establish|found|launch|open|open up +(verb)|assemble|piece|put together|tack|tack together|join|bring together|make|create +(verb)|raise|erect|rear|put up|construct|build|make +(verb)|lay out|set|fix|prepare|ready|gear up|set +(verb)|arrange|put|set|place|pose|position|lay +(verb)|organize|organise|prepare|devise|get up|machinate +(verb)|ensnare|entrap|frame|deceive|lead on|delude|cozen +(verb)|effect|effectuate|bring about|cause|do|make +(verb)|install|instal|put in|put|set|place|pose|position|lay +(verb)|install|instal|establish +(verb)|rig|cheat|chisel +(verb)|pitch|rear|erect +(verb)|arrange|put|order|organize|organise +(verb)|rig|set|equip|fit|fit out|outfit +(verb)|fix|prepare|ready|gear up|set|change|alter|modify +set upon|1 +(verb)|beset|assail|assault|set on|attack +seta|2 +(noun)|podetium +(noun)|hair +setaceous|1 +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|spiny|thorny|armed +setaria|1 +(noun)|Setaria|genus Setaria|monocot genus|liliopsid genus +setaria glauca|1 +(noun)|yellow bristlegrass|yellow bristle grass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail|foxtail grass +setaria italica|1 +(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail|foxtail grass +setaria italica rubrofructa|1 +(noun)|Siberian millet|Setaria italica rubrofructa|foxtail millet|Italian millet|Hungarian grass|Setaria italica +setaria italica stramineofructa|1 +(noun)|German millet|golden wonder millet|Setaria italica stramineofructa|foxtail millet|Italian millet|Hungarian grass|Setaria italica +setaria viridis|1 +(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail|foxtail grass +setback|1 +(noun)|reverse|reversal|blow|black eye|happening|occurrence|natural event +sete quedas|1 +(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall|falls +seth|2 +(noun)|Seth|man|adult male +(noun)|Set|Seth|Egyptian deity +seth thomas|1 +(noun)|Thomas|Seth Thomas|clocksmith|clockmaker +setline|1 +(noun)|trawl|trawl line|spiller|trotline|fishing line +setoff|1 +(noun)|set-back|offset|structure|construction +seton|1 +(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader +setophaga|1 +(noun)|Setophaga|genus Setophaga|bird genus +setophaga ruticilla|1 +(noun)|American redstart|redstart|Setophaga ruticilla|flycatching warbler +setose|1 +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setaceous|spiny|thorny|armed +setscrew|2 +(noun)|screw +(noun)|screw +setswana|1 +(noun)|Tswana|Setswana|Sechuana|Sotho +sett|1 +(noun)|cobble|cobblestone|paving stone +settee|2 +(noun)|settle|bench +(noun)|sofa|couch|lounge +setter|2 +(noun)|compositor|typesetter|typographer|printer|pressman +(noun)|sporting dog|gun dog +setterwort|1 +(noun)|stinking hellebore|bear's foot|Helleborus foetidus|hellebore +setting|7 +(adj)|setting +(noun)|scene|environment|environs|surroundings|surround +(noun)|background|scope|environment +(noun)|mise en scene|stage setting|stage +(noun)|position|place +(noun)|place setting|service|table service +(noun)|mount|mounting +setting hen|1 +(noun)|brood hen|broody|broody hen|sitter|hen|biddy +settle|22 +(noun)|settee|bench +(verb)|settle down|put|set|place|pose|position|lay +(verb)|decide|resolve|adjudicate|end|terminate +(verb)|square off|square up|determine|conclude|resolve +(verb)|locate +(verb)|reconcile|patch up|make up|conciliate|agree|hold|concur|concord +(verb)|sink|go down|go under|descend|fall|go down|come down +(verb)|root|take root|steady down|settle down|stabilize|stabilise +(verb)|become|go|get +(verb)|build up|develop +(verb)|stop|halt +(verb)|change +(verb)|arrange|set up +(verb)|accept|consent|go for +(verb)|agree|hold|concur|concord +(verb)|arrange|fix up +(verb)|sink +(verb)|subside|sink|go down|go under +(verb)|ensconce|put|set|place|pose|position|lay +(verb)|get back|fight|struggle +(verb)|finalize|finalise|nail down|end|terminate|settle on +(verb)|fall|descend|come +settle down|3 +(verb)|settle|put|set|place|pose|position|lay +(verb)|settle|root|take root|steady down|stabilize|stabilise +(verb)|calm|calm down|cool off|chill out|simmer down|cool it|change state|turn +settle on|1 +(verb)|fixate|freeze|stop dead +settled|5 +(adj)|settled |accomplished|effected|established|appointed|decreed|ordained|prescribed|deterministic|firm|preconcerted|determined|dictated|set +(adj)|settled |based|built-up|located|placed|set|situated|nonnomadic|relocated|resettled +(adj)|colonized|colonised|inhabited +(adj)|defined|formed|definite +(adj)|calm +settlement|7 +(noun)|colony|body +(noun)|village|small town|community +(noun)|agreement|understanding +(noun)|colonization|colonisation|constitution|establishment|formation|organization|organisation +(noun)|resolution|closure|decision making|deciding +(noun)|geographical area|geographic area|geographical region|geographic region +(noun)|liquidation|termination|ending|conclusion +settlement house|1 +(noun)|center|centre +settler|3 +(noun)|colonist|migrant|migrator +(noun)|negotiator|negotiant|treater +(noun)|clerk +settling|1 +(noun)|subsiding|subsidence|sinking +settlings|2 +(noun)|dregs|grounds|sediment|deposit +(noun)|settling|subsiding|subsidence|sinking +setubal|1 +(noun)|Setubal|city|metropolis|urban center|port +setup|3 +(noun)|apparatus|equipment +(noun)|manner|mode|style|way|fashion +(noun)|frame-up|falsification|falsehood +seurat|1 +(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter +sevastopol|1 +(noun)|Sebastopol|Sevastopol|city|metropolis|urban center +seven|2 +(adj)|7|vii|cardinal +(noun)|7|VII|sevener|heptad|septet|digit|figure +seven-membered|1 +(adj)|7-membered|membered +seven-spot|1 +(noun)|spot +seven-up|1 +(noun)|old sledge|all fours|high-low-jack +seven hills of rome|1 +(noun)|Seven Hills of Rome|hill +seven iron|1 +(noun)|mashie niblick|iron +seven seas|1 +(noun)|body of water|water +seven years' war|1 +(noun)|Seven Years' War|war|warfare +sevener|1 +(noun)|seven|7|VII|heptad|septet|digit|figure +sevenfold|1 +(adj)|septuple|multiple +sevens|2 +(noun)|fantan|parliament|card game|cards +(noun)|seven|7|VII|sevener|heptad|septet|digit|figure +sevensome|1 +(noun)|septet|septette|gathering|assemblage +seventeen|2 +(adj)|17|xvii|cardinal +(noun)|17|XVII|large integer +seventeen-year locust|1 +(noun)|periodical cicada|Magicicada septendecim|cicada|cicala +seventeenth|2 +(adj)|17th|ordinal +(noun)|rank +seventh|4 +(adj)|7th|ordinal +(noun)|rank +(noun)|one-seventh|common fraction|simple fraction +(noun)|interval|musical interval +seventh-day adventism|1 +(noun)|Seventh-Day Adventism|Adventism|Second Adventism +seventh avenue|1 +(noun)|Seventh Avenue|avenue|boulevard +seventh chord|1 +(noun)|chord +seventh cranial nerve|1 +(noun)|facial|facial nerve|nervus facialis|cranial nerve +seventh crusade|1 +(noun)|Seventh Crusade|Crusade +seventh heaven|1 +(noun)|bliss|blissfulness|cloud nine|walking on air|elation +seventies|3 +(noun)|1970s|decade|decennary|decennium +(noun)|mid-seventies|time of life +(noun)|seventy|70|LXX|large integer +seventieth|2 +(adj)|70th|ordinal +(noun)|rank +seventy|2 +(adj)|70|lxx|cardinal +(noun)|70|LXX|large integer +seventy-eight|1 +(adj)|78|lxxviii|cardinal +seventy-fifth|1 +(adj)|75th|ordinal +seventy-five|1 +(adj)|75|lxxv|cardinal +seventy-four|1 +(adj)|74|lxxiv|cardinal +seventy-nine|1 +(adj)|79|ilxxx|cardinal +seventy-one|1 +(adj)|71|lxxi|cardinal +seventy-seven|1 +(adj)|77|lxxvii|cardinal +seventy-six|1 +(adj)|76|lxxvi|cardinal +seventy-three|1 +(adj)|73|lxxiii|cardinal +seventy-two|1 +(adj)|72|lxxii|cardinal +sever|2 +(verb)|break up|separate|disunite|divide|part +(verb)|discerp|lop|cut +severable|1 +(adj)|dissociable|separable|divisible +severable contract|1 +(noun)|contract +several|3 +(adj)|respective|various|individual +(adj)|different +(adj)|some +severalise|2 +(verb)|severalize|distinguish|separate|differentiate|secern|secernate|severalize|tell|tell apart +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|tell|tell apart|identify|place +severality|1 +(noun)|ownership +severalize|2 +(verb)|severalise|distinguish|separate|differentiate|secern|secernate|severalise|tell|tell apart +(verb)|distinguish|separate|differentiate|secern|secernate|severalise|tell|tell apart|identify|place +severally|3 +(adv)|independently +(adv)|individually|separately|singly|one by one|on an individual basis +(adv)|respectively +severalty|1 +(noun)|discreteness|distinctness|separateness|separation +severance|2 +(noun)|rupture|breach|break|rift|falling out|separation|breakup|detachment +(noun)|severing|cut|cutting +severance agreement|1 +(noun)|agreement|understanding +severe|6 +(adj)|terrible|wicked|intense +(adj)|hard|knockout|strong +(adj)|austere|stark|plain +(adj)|spartan|strict|nonindulgent +(adj)|dangerous|grave|grievous|serious|life-threatening|critical +(adj)|bad +severe acute respiratory syndrome|1 +(noun)|SARS|respiratory disease|respiratory illness|respiratory disorder +severe combined immunodeficiency|1 +(noun)|severe combined immunodeficiency disease|SCID|immunodeficiency|monogenic disorder|monogenic disease +severe combined immunodeficiency disease|1 +(noun)|severe combined immunodeficiency|SCID|immunodeficiency|monogenic disorder|monogenic disease +severed|1 +(adj)|cut off|cut +severely|3 +(adv)|badly|gravely|seriously +(adv)|sternly +(adv)|hard +severeness|1 +(noun)|austereness|plainness +severing|1 +(noun)|severance|cut|cutting +severity|3 +(noun)|badness|intensity|intensiveness +(noun)|asperity|grimness|hardship|rigor|rigour|rigorousness|difficulty|difficultness +(noun)|harshness|rigor|rigour|inclemency|hardness|stiffness|sternness|strictness +severn|2 +(noun)|Severn|Severn River|river +(noun)|Severn|River Severn|Severn River|river +severn river|2 +(noun)|Severn|Severn River|river +(noun)|Severn|River Severn|Severn River|river +severo ochoa|1 +(noun)|Ochoa|Severo Ochoa|biochemist +sevilla|1 +(noun)|Sevilla|Seville|city|metropolis|urban center|port +seville|1 +(noun)|Sevilla|Seville|city|metropolis|urban center|port +seville orange|2 +(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange|orange tree +(noun)|bitter orange|Seville orange|sour orange|orange +sew|2 +(verb)|run up|sew together|stitch|fasten|fix|secure +(verb)|tailor|tailor-make|fashion|forge +sew together|1 +(verb)|sew|run up|stitch|fasten|fix|secure +sewage|1 +(noun)|sewerage|waste|waste material|waste matter|waste product|biodegradable pollution +sewage disposal|1 +(noun)|disposal|disposition +sewage disposal plant|1 +(noun)|disposal plant|plant|works|industrial plant +sewage farm|1 +(noun)|farm +sewage system|1 +(noun)|sewer system|sewage works|facility|installation +sewage works|1 +(noun)|sewage system|sewer system|facility|installation +seward|1 +(noun)|Seward|William Henry Seward|politician|politico|pol|political leader +seward's folly|1 +(noun)|Seward's Folly|transaction|dealing|dealings +seward peninsula|1 +(noun)|Seward Peninsula|peninsula +sewed|1 +(adj)|sewn|stitched|seamed +sewellel|1 +(noun)|mountain beaver|Aplodontia rufa|rodent|gnawer|gnawing animal +sewer|3 +(noun)|sewerage|cloaca|drain|drainpipe|waste pipe +(noun)|needleworker +(noun)|gutter|toilet|misfortune|bad luck|tough luck|ill luck +sewer gas|1 +(noun)|gas +sewer line|1 +(noun)|sewer main|main +sewer main|1 +(noun)|sewer line|main +sewer rat|1 +(noun)|brown rat|Norway rat|Rattus norvegicus +sewer system|1 +(noun)|sewage system|sewage works|facility|installation +sewer water|1 +(noun)|effluent|wastewater|waste|waste material|waste matter|waste product +sewerage|2 +(noun)|sewage|waste|waste material|waste matter|waste product|biodegradable pollution +(noun)|sewer|cloaca|drain|drainpipe|waste pipe +sewing|2 +(noun)|stitching|handicraft +(noun)|stitchery|needlework|needlecraft +sewing-machine operator|1 +(noun)|sewer +sewing-machine stitch|1 +(noun)|machine stitch|stitch +sewing basket|1 +(noun)|workbasket|workbox|workbag +sewing kit|1 +(noun)|kit|outfit +sewing machine|1 +(noun)|home appliance|household appliance|textile machine +sewing needle|2 +(noun)|needle +(noun)|dragonfly|darning needle|devil's darning needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate +sewing room|1 +(noun)|room +sewn|1 +(adj)|sewed|stitched|seamed +sex|6 +(noun)|sexual activity|sexual practice|sex activity|bodily process|body process|bodily function|activity +(noun)|class|category|family +(noun)|sexual urge|feeling +(noun)|gender|sexuality|physiological property +(verb)|arouse|excite|turn on|wind up|stimulate|shake|shake up|excite|stir +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +sex-change operation|1 +(noun)|transsexual surgery|operation|surgery|surgical operation|surgical procedure|surgical process +sex-limited|1 +(adj)|feature|characteristic +sex-linked|1 +(adj)|organic phenomenon +sex-linked disorder|1 +(noun)|chromosomal aberration|chromosomal anomaly|chrosomal abnormality|chromosonal disorder +sex-starved|1 +(adj)|sexy +sex act|1 +(noun)|sexual intercourse|intercourse|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +sex activity|1 +(noun)|sexual activity|sexual practice|sex|bodily process|body process|bodily function|activity +sex appeal|1 +(noun)|desirability|desirableness|oomph|attractiveness +sex bomb|1 +(noun)|sex kitten|sexpot|girl|miss|missy|young lady|young woman|fille +sex cell|1 +(noun)|reproductive cell|germ cell|cell +sex change|1 +(noun)|change|alteration|modification +sex character|1 +(noun)|sex characteristic|feature|characteristic +sex characteristic|1 +(noun)|sex character|feature|characteristic +sex chromatin|1 +(noun)|chromatin|chromatin granule +sex chromosome|1 +(noun)|chromosome +sex crime|1 +(noun)|sexual assault|sexual abuse|sex offense|statutory offense|statutory offence|regulatory offense|regulatory offence +sex drive|1 +(noun)|drive +sex gland|1 +(noun)|gonad|endocrine gland|endocrine|ductless gland +sex hormone|1 +(noun)|steroid hormone|steroid|hormone|endocrine|internal secretion +sex kitten|1 +(noun)|sexpot|sex bomb|girl|miss|missy|young lady|young woman|fille +sex linkage|1 +(noun)|organic phenomenon +sex manual|1 +(noun)|manual +sex object|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sex offender|1 +(noun)|convict +sex offense|1 +(noun)|sexual assault|sexual abuse|sex crime|statutory offense|statutory offence|regulatory offense|regulatory offence +sex organ|1 +(noun)|reproductive organ|organ +sex segregation|1 +(noun)|purdah|segregation|separatism +sexadecimal notation|1 +(noun)|hexadecimal notation|mathematical notation +sexadecimal number system|1 +(noun)|hexadecimal number system|hexadecimal system|positional notation|positional representation system +sexagenarian|2 +(adj)|old +(noun)|oldster|old person|senior citizen|golden ager +sexagesimal|1 +(adj)|common fraction|simple fraction +sexcapade|1 +(noun)|escapade|lark +sexed|2 +(adj)|sexual +(adj)|sexy +sexiness|1 +(noun)|amorousness|eroticism|erotism|amativeness|sexual desire|concupiscence|physical attraction +sexism|1 +(noun)|discrimination|favoritism|favouritism +sexist|2 +(adj)|prejudiced |discriminatory +(noun)|male chauvinist|antifeminist +sexless|3 +(adj)|neuter|asexual |nonsexual +(adj)|unsexy +(adj)|unsexy +sexlessness|1 +(noun)|asexuality|physiological property +sexploitation|1 +(noun)|exploitation|victimization|victimisation|using +sexpot|1 +(noun)|sex kitten|sex bomb|girl|miss|missy|young lady|young woman|fille +sext|1 +(noun)|canonical hour +sextant|2 +(noun)|angular unit +(noun)|measuring instrument|measuring system|measuring device +sextet|5 +(noun)|sextette|sestet|musical composition|opus|composition|piece|piece of music +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sestet|sextuplet|hexad|digit|figure +(noun)|sextette|sestet|musical organization|musical organisation|musical group +(noun)|sextette|sestet|set +(noun)|sextette|sixsome|gathering|assemblage +sextette|4 +(noun)|sextet|sestet|musical organization|musical organisation|musical group +(noun)|sextet|sestet|set +(noun)|sextet|sixsome|gathering|assemblage +(noun)|sextet|sestet|musical composition|opus|composition|piece|piece of music +sexton|2 +(noun)|Sexton|Anne Sexton|poet +(noun)|sacristan|church officer|caretaker +sextuple|1 +(adj)|sixfold|multiple +sextuplet|1 +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|hexad|digit|figure +sexual|3 +(adj)|physiological property +(adj)|sexual |intersexual|sexed|unisexual +(adj)|intimate|sexy +sexual abstention|1 +(noun)|chastity|celibacy|abstinence +sexual abuse|1 +(noun)|sexual assault|sex crime|sex offense|statutory offense|statutory offence|regulatory offense|regulatory offence +sexual activity|1 +(noun)|sexual practice|sex|sex activity|bodily process|body process|bodily function|activity +sexual arousal|1 +(noun)|arousal +sexual assault|1 +(noun)|sexual abuse|sex crime|sex offense|statutory offense|statutory offence|regulatory offense|regulatory offence +sexual climax|1 +(noun)|orgasm|climax|coming|consummation +sexual congress|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +sexual conquest|1 +(noun)|score|seduction|conquest +sexual desire|1 +(noun)|concupiscence|physical attraction|desire +sexual discrimination|1 +(noun)|sexism +sexual harassment|1 +(noun)|harassment|molestation +sexual immorality|1 +(noun)|evil|immorality|wickedness|iniquity +sexual intercourse|1 +(noun)|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +sexual inversion|1 +(noun)|inversion|homosexuality|homosexualism|homoeroticism|gayness +sexual love|1 +(noun)|lovemaking|making love|love|love life|sexual activity|sexual practice|sex|sex activity +sexual morality|1 +(noun)|virtue|chastity|morality +sexual perversion|1 +(noun)|perversion|sexual activity|sexual practice|sex|sex activity +sexual pleasure|1 +(noun)|pleasure|pleasance +sexual practice|1 +(noun)|sexual activity|sex|sex activity|bodily process|body process|bodily function|activity +sexual relation|1 +(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|relation|carnal knowledge|sexual activity|sexual practice|sex|sex activity +sexual relationship|1 +(noun)|relationship +sexual reproduction|1 +(noun)|amphimixis|reproduction +sexual union|1 +(noun)|coupling|mating|pairing|conjugation|union|sexual activity|sexual practice|sex|sex activity +sexual urge|1 +(noun)|sex|feeling +sexualise|1 +(verb)|sexualize|change|alter|modify +sexuality|1 +(noun)|sex|gender|physiological property +sexualize|1 +(verb)|sexualise|change|alter|modify +sexually attractive|1 +(adj)|delectable|desirable +sexually transmitted disease|1 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|contagious disease|contagion +sexy|2 +(adj)|sexy |aroused|horny|randy|ruttish|turned on|autoerotic|coquettish|flirtatious|erotic|titillating|blue|gamy|gamey|juicy|naughty|racy|risque|spicy|intimate|sexual|juicy|luscious|red-hot|voluptuous|lascivious|lewd|libidinous|lustful|leering|lubricious|lustful|prurient|salacious|orgiastic|oversexed|highly-sexed|pornographic|provocative|raunchy|sexed|sex-starved|hot|lecherous|exciting|seductive +(adj)|aphrodisiac |aphrodisiacal +seychelles|2 +(noun)|Seychelles|Republic of Seychelles|country|state|land +(noun)|Seychelles|island +seychelles monetary unit|1 +(noun)|Seychelles monetary unit|monetary unit +seychelles rupee|1 +(noun)|Seychelles rupee|rupee|Seychelles monetary unit +seychellois|2 +(adj)|Seychellois|country|state|land +(noun)|Seychellois|native|indigen|indigene +seyhan|2 +(noun)|Seyhan|Seyhan River|river +(noun)|Adana|Seyhan|city|metropolis|urban center +seyhan river|1 +(noun)|Seyhan|Seyhan River|river +seymour|1 +(noun)|Seymour|Jane Seymour|queen +sezession|1 +(noun)|secession|school|artistic movement|art movement +sfax|1 +(noun)|Sfax|Safaqis|city|metropolis|urban center +sforzando|2 +(noun)|chord +(noun)|musical notation +sga infant|1 +(noun)|small-for-gestational-age infant|SGA infant|neonate|newborn|newborn infant|newborn baby +sgml|1 +(noun)|standard generalized markup language|SGML|markup language +sgraffito|1 +(noun)|decoration|ornament|ornamentation +sha'ban|1 +(noun)|Sha'ban|Shaaban|Islamic calendar month +shaaban|1 +(noun)|Sha'ban|Shaaban|Islamic calendar month +shabbiness|1 +(noun)|seediness|manginess|inelegance +shabby|2 +(adj)|moth-eaten|ratty|tatty|worn +(adj)|dishonorable |dishonourable +shabby-genteel|1 +(adj)|proud +shabu|1 +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|trash|amphetamine|pep pill|upper|speed|controlled substance +shabuoth|1 +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +shack|3 +(noun)|hovel|hut|hutch|shanty|shelter +(verb)|dwell|reside|live|inhabit|people|populate|domicile|domiciliate|be +(verb)|trail|travel|go|move|locomote +shack up|1 +(verb)|cohabit|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +shackle|4 +(noun)|bond|hamper|trammel|trammels|restraint|constraint +(noun)|bar +(verb)|pinion|restrain|confine|hold +(verb)|fetter|restrain|confine|hold +shackled|1 +(adj)|fettered|in bonds|in fetters|bound +shad|2 +(noun)|fish +(noun)|clupeid fish|clupeid|food fish +shad-flower|2 +(noun)|whitlow grass|shadflower|Draba verna|draba +(noun)| +shad roe|1 +(noun)|roe|hard roe +shadberry|1 +(noun)|saskatoon|serviceberry|juneberry|berry +shadblow|1 +(noun)|Juneberry|serviceberry|service tree|shadbush|shrub|bush +shadbush|1 +(noun)|Juneberry|serviceberry|service tree|shadblow|shrub|bush +shaddock|2 +(noun)|pomelo|pomelo tree|pummelo|Citrus maxima|Citrus grandis|Citrus decumana|citrus|citrus tree +(noun)|pomelo|citrus|citrus fruit|citrous fruit +shade|11 +(noun)|shadiness|shadowiness|semidarkness +(noun)|tint|tincture|tone|color|colour|coloring|colouring +(noun)|protective covering|protective cover|protection +(noun)|nuance|nicety|subtlety|refinement|meaning|significance|signification|import +(noun)|inferiority|lower status|lower rank +(noun)|tad|small indefinite quantity|small indefinite amount +(noun)|ghost|spook|wraith|specter|spectre|apparition|phantom|phantasm|phantasma|shadow +(noun)|representation +(verb)|shadow|shade off|obscure|bedim|overcloud +(verb)|fill in|draw|paint +(verb)|screen|block out +shade off|1 +(verb)|shadow|shade|obscure|bedim|overcloud +shade tree|1 +(noun)|tree +shaded|2 +(adj)|shaded |murky|mirky|shady|shadowed|shadowy|umbrageous +(adj)|shaded |hatched|crosshatched +shades|9 +(noun)|sunglasses|dark glasses|spectacles|specs|eyeglasses|glasses +(noun)|shade|shadiness|shadowiness|semidarkness +(noun)|shade|tint|tincture|tone|color|colour|coloring|colouring +(noun)|shade|protective covering|protective cover|protection +(noun)|nuance|nicety|shade|subtlety|refinement|meaning|significance|signification|import +(noun)|shade|inferiority|lower status|lower rank +(noun)|tad|shade|small indefinite quantity|small indefinite amount +(noun)|ghost|shade|spook|wraith|specter|spectre|apparition|phantom|phantasm|phantasma|shadow +(noun)|shade|representation +shades of|1 +(noun)|reminder +shadflower|1 +(noun)|whitlow grass|shad-flower|Draba verna|draba +shadfly|1 +(noun)|mayfly|dayfly|ephemerid|ephemeropteran +shadiness|1 +(noun)|shade|shadowiness|semidarkness +shading|2 +(noun)|marking +(noun)|blending|gradation|graduation +shadow|12 +(noun)|shade|shadiness|shadowiness +(noun)|darkness|dark|scene +(noun)|apparition|phantom|phantasm|phantasma|illusion|semblance +(noun)|foreboding|premonition|presentiment|boding +(noun)|trace|vestige|tincture|indication|indicant +(noun)|recourse|refuge|resort +(noun)|presence +(noun)|tail|shadower|follower|spy +(noun)|follower +(verb)|follow +(verb)|shade|shade off|obscure|bedim|overcloud +(verb)|overshadow|dwarf|dominate|command|overlook|overtop +shadow cabinet|1 +(noun)|cabinet +shadow play|1 +(noun)|galanty show|shadow show|show +shadow show|1 +(noun)|galanty show|shadow play|show +shadowbox|1 +(verb)|box +shadowboxing|1 +(noun)|exercise|practice|drill|practice session|recitation +shadowed|1 +(adj)|shady|shadowy|umbrageous|shaded +shadower|1 +(noun)|tail|shadow|follower|spy +shadowgraph|1 +(noun)|radiogram|radiograph|skiagraph|skiagram|photograph|photo|exposure|pic +shadowiness|1 +(noun)|shade|shadiness|semidarkness +shadowing|2 +(adj)|tailing|following +(noun)|tailing|pursuit|chase|following +shadowy|3 +(adj)|shady|shadowed|umbrageous|shaded +(adj)|dim|faint|vague|wispy|indistinct +(adj)|wraithlike|insubstantial |unsubstantial|unreal +shady|4 +(adj)|fly-by-night|untrustworthy |untrusty +(adj)|louche|disreputable +(adj)|fishy|funny|queer|suspect|suspicious|questionable +(adj)|shadowed|shadowy|umbrageous|shaded +shaft|14 +(noun)|line +(noun)|shot|slam|dig|barb|jibe|gibe|remark|comment +(noun)|rod +(noun)|beam|beam of light|light beam|ray|ray of light|shaft of light|irradiation|light|visible light|visible radiation +(noun)|diaphysis|long bone|os longum +(noun)|cock|prick|dick|pecker|peter|tool|putz|penis|phallus|member +(noun)|spear|lance|weapon|arm|weapon system +(noun)|passageway +(noun)|scape|upright|vertical +(noun)|passage +(noun)|rotating shaft|rod +(noun)|quill|calamus|rib +(verb)|equip|fit|fit out|outfit +(verb)|cheat|chouse|screw|chicane|jockey|beat|beat out|crush|shell|trounce|vanquish +shaft louse|1 +(noun)|chicken louse|Menopon palladum|Menopon gallinae|bird louse|biting louse|louse +shaft of light|1 +(noun)|beam|beam of light|light beam|ray|ray of light|shaft|irradiation|light|visible light|visible radiation +shag|6 +(noun)|tobacco|baccy +(noun)|tangle +(noun)|fabric|cloth|material|textile +(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shtup|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +(noun)|social dancing +(verb)|dance|trip the light fantastic|trip the light fantastic toe +shag rug|1 +(noun)|rug|carpet|carpeting +shagbark|1 +(noun)|shagbark hickory|shellbark|shellbark hickory|Carya ovata|hickory|hickory tree +shagbark hickory|1 +(noun)|shagbark|shellbark|shellbark hickory|Carya ovata|hickory|hickory tree +shagged|1 +(adj)|shaggy|rough |unsmooth +shagginess|2 +(noun)|sloppiness|slovenliness|unkemptness +(noun)|roughness +shaggy|2 +(adj)|bushy|ungroomed +(adj)|shagged|rough |unsmooth +shaggy cap|1 +(noun)|shaggymane|shaggymane mushroom|Coprinus comatus|agaric +shaggy dog story|1 +(noun)|joke|gag|laugh|jest|jape +shaggymane|1 +(noun)|shaggy cap|shaggymane mushroom|Coprinus comatus|agaric +shaggymane mushroom|1 +(noun)|shaggymane|shaggy cap|Coprinus comatus|agaric +shah|1 +(noun)|Shah|Shah of Iran|sovereign|crowned head|monarch +shah jahan|1 +(noun)|Shah Jahan|Emperor +shah of iran|1 +(noun)|Shah|Shah of Iran|sovereign|crowned head|monarch +shah palavi|1 +(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Palavi|Pahlevi|Mohammed Reza Pahlevi|Shah|Shah of Iran +shahadah|1 +(noun)|pillar of Islam|witness +shahaptian|2 +(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian +(noun)|Shahaptian|Sahaptin|Penutian +shaheed|1 +(noun)|martyr|sufferer +shahn|1 +(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter +shaitan|1 +(noun)|shaytan|genie|jinni|jinnee|djinni|djinny +shakable|1 +(adj)|shakeable|contestable +shake|15 +(noun)|shingle|building material +(noun)|milkshake|milk shake|drink +(noun)|trill|note|musical note|tone +(noun)|handshake|handshaking|handclasp|acknowledgment|acknowledgement +(noun)|tremble|shiver|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|wag|waggle|agitation +(verb)|agitate|move +(verb)|didder|move involuntarily|move reflexively +(verb)|judder|vibrate +(verb)|rock|sway|move back and forth +(verb)|weaken +(verb)|stimulate|shake up|excite|stir|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|shake off|throw off|escape from|escape|get away|break loose +(verb)|change|alter|modify +(verb)|gesticulate|gesture|motion +shake-up|2 +(noun)|reorganization|reorganisation|shakeup|organization|organisation +(noun)| +shake hands|1 +(verb)|greet|recognize|recognise +shake off|2 +(verb)|shake|throw off|escape from|escape|get away|break loose +(verb)|shed|cast|cast off|throw|throw off|throw away|drop|remove|take|take away|withdraw +shake up|6 +(verb)|jar|bump around|move|displace +(verb)|reorganize|reorganise|organize|organise +(verb)|succuss|shake|agitate +(verb)|stimulate|shake|excite|stir|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|agitate|vex|disturb|commove|stir up|raise up|move|displace +(verb)|fluff up|plump up|shake|agitate +shakeable|1 +(adj)|shakable|contestable +shakedown|4 +(adj)|adjustment|accommodation|fitting +(noun)|adjustment|accommodation|fitting +(noun)|search|hunt|hunting +(noun)|extortion +shaken|1 +(adj)|jolted|agitated +shakeout|1 +(noun)|financial condition|economic condition +shaker|3 +(noun)|mover and shaker|person|individual|someone|somebody|mortal|human|soul +(noun)|Shaker|Christian +(noun)|container +shakers|4 +(noun)|Shakers|United Society of Believers in Christ's Second Appearing|sect|religious sect|religious order +(noun)|shaker|mover and shaker|person|individual|someone|somebody|mortal|human|soul +(noun)|Shaker|Christian +(noun)|shaker|container +shakespeare|1 +(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|the bard|dramatist|playwright|poet +shakespearean|1 +(adj)|Shakespearian|Shakespearean|dramatist|playwright|poet +shakespearean sonnet|1 +(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet +shakespearian|1 +(adj)|Shakespearian|Shakespearean|dramatist|playwright|poet +shakeup|1 +(noun)|reorganization|reorganisation|shake-up|organization|organisation +shakiness|2 +(noun)|shaking|trembling|quiver|quivering|vibration|palpitation|motion +(noun)|ricketiness|instability|unstableness +shaking|3 +(adj)|quaking|quivering|shaky|shivering|trembling|unsteady +(noun)|agitation +(noun)|shakiness|trembling|quiver|quivering|vibration|palpitation|motion +shaking palsy|1 +(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|brain disorder|encephalopathy|brain disease|degenerative disorder +shako|1 +(noun)|bearskin|busby|hat|chapeau|lid +shakspere|1 +(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|the bard|dramatist|playwright|poet +shakti|1 +(noun)|Shakti|Sakti|Hindu deity +shaktism|2 +(noun)|Shaktism|Saktism|sect|religious sect|religious order +(noun)|Shaktism|Saktism|Hinduism|Hindooism +shaktist|1 +(noun)|Shaktist|Hindu|Hindoo +shaky|3 +(adj)|rickety|wobbly|wonky|unstable +(adj)|quaking|quivering|shaking|shivering|trembling|unsteady +(adj)|precarious|insecure |unsafe +shale|1 +(noun)|sedimentary rock +shale oil|1 +(noun)|oil +shall-flower|1 +(noun)|shellflower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +shallon|1 +(noun)|salal|Gaultheria shallon|shrub|bush +shallot|3 +(noun)|bulb +(noun)|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion|onion plant|Allium cepa +(noun)|onion +shallow|6 +(adj)|shallow |ankle-deep|knee-deep|fordable|neritic|reefy|shelfy|shelvy|shoaly +(adj)|shallow |light|wakeful|skin-deep|superficial|surface +(adj)|superficial +(noun)|shoal|body of water|water +(verb)|shoal|change|alter|modify +(verb)|shoal|change +shallow-draft|1 +(adj)|shallow-draught|depth +shallow-draught|1 +(adj)|shallow-draft|depth +shallow fording|1 +(noun)|ford|fording +shallowness|2 +(noun)|superficiality|depth +(noun)|depth +shallu|1 +(noun)|Sorghum vulgare rosburghii|grain sorghum +shalom asch|1 +(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer|author +shalwar|1 +(noun)|salwar|trousers|pants +sham|5 +(adj)|assumed|false|fictitious|fictive|pretended|put on|counterfeit |imitative +(noun)|fake|postiche|imitation|counterfeit|forgery +(noun)|imposter|impostor|pretender|fake|faker|fraud|shammer|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +(verb)|simulate|assume|feign|dissemble|pretend|act +(verb)|feign|pretend|affect|dissemble|misrepresent|belie +shaman|1 +(noun)|priest-doctor|priest|non-Christian priest +shamanise|1 +(verb)|shamanize|practice|practise|exercise|do +shamanism|2 +(noun)|religion|faith|religious belief +(noun)|Asian shamanism|religion|faith|religious belief +shamanist|1 +(adj)|shamanistic|religion|faith|religious belief +shamanistic|1 +(adj)|shamanist|religion|faith|religious belief +shamanize|1 +(verb)|shamanise|practice|practise|exercise|do +shamash|1 +(noun)|Shamash|Semitic deity +shamble|2 +(noun)|shambling|shuffle|shuffling|walk|walking +(verb)|shuffle|scuffle|walk +shambles|3 +(noun)|disorderliness|disorder +(noun)|abattoir|butchery|slaughterhouse|building|edifice +(noun)|shamble|shambling|shuffle|shuffling|walk|walking +shambling|1 +(noun)|shamble|shuffle|shuffling|walk|walking +shambolic|1 +(adj)|disorderliness|disorder +shame|7 +(noun)|feeling +(noun)|disgrace|ignominy|dishonor|dishonour +(noun)|pity|misfortune|bad luck +(verb)|dishonor|disgrace|dishonour|attaint +(verb)|compel|oblige|obligate +(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform +shame plant|1 +(noun)|sensitive plant|touch-me-not|live-and-die|humble plant|action plant|Mimosa pudica|mimosa +shamed|2 +(adj)|guilty|hangdog|shamefaced|ashamed +(adj)|discredited|disgraced|dishonored|ashamed +shamefaced|3 +(adj)|modest +(adj)|sheepish|ashamed +(adj)|guilty|hangdog|shamed|ashamed +shamefacedness|1 +(noun)|sheepishness|embarrassment +shameful|2 +(adj)|black|disgraceful|ignominious|inglorious|opprobrious|dishonorable |dishonourable +(adj)|disgraceful|scandalous|shocking|immoral +shamefully|1 +(adv)|disgracefully|ingloriously|ignominiously|discreditably|dishonorably|dishonourably +shamefulness|1 +(noun)|disgracefulness|ignominiousness|unworthiness +shameless|1 +(adj)|unblushing|unashamed +shamelessly|1 +(adv)|unashamedly|barefacedly +shamelessness|1 +(noun)|brazenness|boldness|daring|hardihood +shamisen|1 +(noun)|samisen|stringed instrument +shammer|2 +(noun)|malingerer|skulker|slacker|shirker +(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|pseudo|pseud|role player|deceiver|cheat|cheater|trickster|beguiler|slicker +shammy|1 +(noun)|chamois|chamois leather|chammy|chammy leather|shammy leather|leather +shammy leather|1 +(noun)|chamois|chamois leather|chammy|chammy leather|shammy|leather +shampoo|3 +(noun)|cleansing agent|cleanser|cleaner +(noun)|hair care|haircare|hairdressing +(verb)|wash|lave +shamrock|3 +(noun)|white clover|dutch clover|Trifolium repens|clover|trefoil +(noun)|common wood sorrel|cuckoo bread|Oxalis acetosella|oxalis|sorrel|wood sorrel +(noun)|hop clover|lesser yellow trefoil|Trifolium dubium|clover|trefoil +shamrock pea|1 +(noun)|Parochetus communis|herb|herbaceous plant +shamus|1 +(noun)|private detective|PI|private eye|private investigator|operative|sherlock|detective +shan|1 +(noun)|Tai Long|Shan|Tai +shandy|1 +(noun)|shandygaff|drink +shandygaff|1 +(noun)|shandy|drink +shang|1 +(noun)|Shang|Shang dynasty|dynasty +shang dynasty|1 +(noun)|Shang|Shang dynasty|dynasty +shanghai|2 +(noun)|Shanghai|city|metropolis|urban center|port +(verb)|impress|kidnap|nobble|abduct|snatch +shanghai dialect|1 +(noun)|Wu|Wu dialect|Shanghai dialect|Chinese +shanghaier|1 +(noun)|seizer|kidnapper|abductor|snatcher +shangri-la|1 +(noun)|eden|paradise|nirvana|heaven|promised land|Shangri-la|region|part +shank|9 +(noun)|cut|cut of meat +(noun)|body part +(noun)|stem|cylinder +(noun)|cylinder +(noun)|cylinder +(noun)|waist|part|portion +(noun)|cannon|body part +(noun)|golf stroke|golf shot|swing +(verb)|hit +shank's mare|1 +(noun)|shanks' mare|shank's pony|shanks' pony|leg +shank's pony|1 +(noun)|shank's mare|shanks' mare|shanks' pony|leg +shankar|1 +(noun)|Shankar|Ravi Shankar|sitar player +shanks' mare|1 +(noun)|shank's mare|shank's pony|shanks' pony|leg +shanks' pony|1 +(noun)|shank's mare|shanks' mare|shank's pony|leg +shannon|1 +(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer|applied scientist|technologist +shanny|1 +(noun)|Blennius pholis|blenny|combtooth blenny +shantung|1 +(noun)|fabric|cloth|material|textile +shanty|2 +(noun)|hovel|hut|hutch|shack|shelter +(noun)|chantey|chanty|sea chantey|work song +shantytown|1 +(noun)|slum|slum area +shape|11 +(noun)|form|configuration|contour|conformation|spatial property|spatiality +(noun)|form|attribute +(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|bod|chassis|frame|form|flesh|body|organic structure|physical structure +(noun)|embodiment|concretism|concrete representation +(noun)|form|cast|appearance|visual aspect +(noun)|condition|good health|healthiness +(noun)|Supreme Headquarters Allied Powers Europe|SHAPE|high command|supreme headquarters +(noun)|form|pattern|structure +(verb)|determine|mold|influence|regulate|cause|do|make +(verb)|form|work|mold|mould|forge|create from raw material|create from raw stuff +(verb)|form|change|alter|modify +shape-up|1 +(noun)|employment|engagement +shape constancy|1 +(noun)|constancy +shape up|1 +(verb)|progress|come on|come along|advance|get on|get along|develop +shaped|2 +(adj)|molded|wrought|formed +(adj)|attribute +shapeless|2 +(adj)|amorphous|formless|unformed +(adj)|unshapely +shapelessness|2 +(noun)|amorphous shape +(noun)|unattractiveness +shapeliness|1 +(noun)|curvaceousness|voluptuousness|pulchritude +shapely|1 +(adj)|shapely |bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|built|stacked|well-stacked|callipygian|callipygous|clean-limbed|full-fashioned|fully fashioned|Junoesque|statuesque|modeled|sculptural|sculptured|sculpturesque|retrousse|tip-tilted|upturned|well-proportioned|well-turned +shaper|2 +(noun)|maker|creator +(noun)|shaping machine|machine tool +shaping|3 +(adj)|formative|constructive +(noun)|defining|process +(noun)|formation|fabrication|manufacture +shaping machine|1 +(noun)|shaper|machine tool +shaping tool|1 +(noun)|tool +shapley|1 +(noun)|Shapley|Harlow Shapley|astronomer|uranologist|stargazer +shard|1 +(noun)|sherd|fragment|piece +share|10 +(noun)|stock certificate|stock +(noun)|portion|part|percentage|assets +(noun)|parcel|portion|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +(noun)|contribution|part|attempt|effort|endeavor|endeavour|try +(noun)|plowshare|ploughshare|wedge +(verb)|overlap +(verb)|use|utilize|utilise|apply|employ +(verb)|partake|partake in|get|acquire +(verb)|divvy up|portion out|apportion|deal|distribute|give out|hand out +(verb)|communicate|intercommunicate +share-out|1 +(noun)|sharing|distribution +sharecrop farmer|1 +(noun)|sharecropper|cropper|agricultural laborer|agricultural labourer +sharecropper|1 +(noun)|cropper|sharecrop farmer|agricultural laborer|agricultural labourer +shared|2 +(adj)|shared |common|mutual|joint|joint +(adj)|divided|divided up|shared out|distributed +shared out|1 +(adj)|divided|divided up|shared|distributed +shareholder|1 +(noun)|stockholder|shareowner|investor +shareholding|1 +(noun)|property|belongings|holding|material possession +shareowner|1 +(noun)|stockholder|shareholder|investor +sharer|1 +(noun)|partaker|participant +shareware|1 +(noun)|software|software system|software package|package +shari|1 +(noun)|Shari|Shari River|Chari|Chari River|river +shari river|1 +(noun)|Shari|Shari River|Chari|Chari River|river +sharia|1 +(noun)|shariah|shariah law|sharia law|Islamic law|law|jurisprudence +sharia law|1 +(noun)|shariah|shariah law|sharia|Islamic law|law|jurisprudence +shariah|1 +(noun)|shariah law|sharia|sharia law|Islamic law|law|jurisprudence +shariah law|1 +(noun)|shariah|sharia|sharia law|Islamic law|law|jurisprudence +sharing|6 +(adj)|joint +(adj)|unselfish +(noun)|mutuality|interdependence|interdependency +(noun)|mutuality|interdependence|interdependency +(noun)|communion|intercourse|social intercourse +(noun)|share-out|distribution +shark|5 +(noun)|elasmobranch|selachian +(noun)|wrongdoer|offender +(noun)|expert +(verb)|cheat|chisel +(verb)|fish +shark-liver oil|1 +(noun)|shark oil|animal oil +shark oil|1 +(noun)|shark-liver oil|animal oil +shark repellent|1 +(noun)|porcupine provision|measure|step +sharkskin|1 +(noun)|fabric|cloth|material|textile +sharksucker|1 +(noun)|Echeneis naucrates|remora|suckerfish|sucking fish +sharp|17 +(adj)|crisp|distinct +(adj)|acuate|acute|needlelike|pointed +(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|penetrative|piercing|perceptive +(adj)|astute|shrewd|smart +(adj)|sharp-worded|tart|unpleasant +(adj)|piercing|shrill|high |high-pitched +(adj)|abrupt|precipitous|steep +(adj)|sharp |acute|intense|cutting|keen|knifelike|piercing|stabbing|lancinate|lancinating|fulgurating|scratching|salt +(adj)|incisive|keen|intelligent +(adj)|sharp |carnassial|cutting|edged|incisive|piercing|keen|knifelike|penetrative|penetrating|sharpened|razor-sharp|pointed +(adj)|acerb|acerbic|astringent|sour +(adj)|sharp +(adj)|sudden +(adj)|forceful +(noun)|musical notation +(noun)|sewing needle +(adv)|sharply +sharp-cornered|1 +(adj)|angular |angulate +sharp-eared|1 +(adj)|quick-eared|hearing +sharp-eyed|3 +(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-sighted|sighted +(adj)|quick-sighted|sharp-sighted|perceptive +(adj)|eyed +sharp-limbed|1 +(adj)|limbed +sharp-pointed|1 +(adj)|end +sharp-set|1 +(adj)|famished|ravenous|starved|esurient|hungry +sharp-sighted|2 +(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sighted +(adj)|quick-sighted|sharp-eyed|perceptive +sharp-sightedness|1 +(noun)|acuity|visual acuity|sight|vision|visual sense|visual modality +sharp-tailed grouse|1 +(noun)|sprigtail|sprig tail|Pedioecetes phasianellus|grouse +sharp-worded|1 +(adj)|sharp|tart|unpleasant +sharp tongue|1 +(noun)|tongue +sharpen|8 +(verb)|change|alter|modify +(verb)|intensify|compound|heighten|deepen +(verb)|intensify|deepen +(verb)|focus|focalize|focalise|adjust|set|correct +(verb)|change intensity +(verb)|change|alter|modify +(verb)|taper|point|change shape|change form|deform +(verb)|heighten|intensify|compound|heighten|deepen +sharpened|2 +(adj)|pointed +(adj)|sharp +sharpener|1 +(noun)|implement +sharper|1 +(noun)|swindler|chiseller|chiseler|gouger|scammer|grifter|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +sharpie|3 +(noun)|eager beaver|busy bee|live wire|sharpy|actor|doer|worker +(noun)|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|boat +sharply|4 +(adv)|aggressively +(adv)|crisply +(adv)|sharp +(adv)|precipitously +sharpness|6 +(noun)|acuteness|acuity|keenness|intelligence +(noun)|edge|urgency +(noun)|pungency|bite|spiciness|spice|spicery +(noun)|keenness|shape|form|configuration|contour|conformation +(noun)|distinctness|clearness|clarity|uncloudedness +(noun)|asperity|ill nature +sharpshoot|1 +(verb)|snipe|shoot +sharpshooter|3 +(noun)|athlete|jock +(noun)|marksman|crack shot|shot|shooter +(noun)|schooner +sharptail mola|1 +(noun)|Mola lanceolata|ocean sunfish|sunfish|mola|headfish +sharpy|2 +(noun)|eager beaver|busy bee|live wire|sharpie|actor|doer|worker +(noun)|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|deceiver|cheat|cheater|trickster|beguiler|slicker +shasta|3 +(noun)|Shasta|Hokan|Hoka +(noun)|Shasta|Mount Shasta|mountain peak +(noun)|Shasta|Shastan +shasta daisy|1 +(noun)|Leucanthemum superbum|Chrysanthemum maximum maximum|composite|composite plant +shasta salamander|1 +(noun)|Shasta salamander|Hydromantes shastae|web-toed salamander +shastan|1 +(noun)|Shastan|Hokan|Hoka +shatter|2 +(verb)|burst|bust +(verb)|break +shattered|2 +(adj)|smashed|splintered|broken +(adj)|tattered|destroyed +shattering|2 +(adj)|loud +(noun)|smashing|breakage|break|breaking +shatterproof|1 +(adj)|splinterless|splinterproof|unbreakable +shatterproof glass|1 +(noun)|safety glass|laminated glass|glass +shave|7 +(noun)|shaving|depilation|epilation +(verb)|groom|neaten +(verb)|trim|cut +(verb)|knock off|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|plane|cut +(verb)|carve|cut up +(verb)|graze|crease|rake +shaved|1 +(adj)|shaven |beardless|whiskerless|clean-shaven|smooth-shaven|well-shaven +shaven|1 +(adj)|shaven |shaved|beardless|whiskerless|clean-shaven|smooth-shaven|well-shaven +shaver|3 +(noun)|man|adult male +(noun)|child|kid|youngster|minor|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +(noun)|electric shaver|electric razor|razor +shavian|2 +(adj)|Shavian|writer|author|dramatist|playwright +(noun)|Shavian|supporter|protagonist|champion|admirer|booster|friend +shaving|3 +(noun)|shave|depilation|epilation +(noun)|paring|sliver|fragment +(noun)|grazing|skimming|touch|touching +shaving-brush tree|1 +(noun)|Pseudobombax ellipticum|tree +shaving brush|1 +(noun)|brush +shaving cream|1 +(noun)|shaving soap|toiletry|toilet article|toiletries|soapsuds|suds|lather +shaving foam|1 +(noun)|toiletry|toilet article|toiletries|foam|froth +shaving soap|1 +(noun)|shaving cream|toiletry|toilet article|toiletries|soapsuds|suds|lather +shavous|1 +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +shavuot|1 +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +shavuoth|1 +(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day +shaw|4 +(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist|clarinettist|bandleader +(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist|humourist +(noun)|Shaw|Anna Howard Shaw|suffragist|doctor|doc|physician|MD|Dr.|medico +(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer|author|dramatist|playwright +shawl|1 +(noun)|cloak +shawm|1 +(noun)|oboe|hautboy|hautbois +shawn|1 +(noun)|Shawn|Ted Shawn|dancer|professional dancer|choreographer +shawnee|2 +(noun)|Shawnee|Algonquian|Algonquin +(noun)|Shawnee|Algonquian|Algonquin|Algonquian language +shawnee cake|1 +(noun)|Shawnee cake|johnnycake|johnny cake|journey cake +shawnee salad|1 +(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +shawny|1 +(noun)|Virginia waterleaf|Shawnee salad|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +shawwal|1 +(noun)|Shawwal|Islamic calendar month +shay|1 +(noun)|chaise|carriage|equipage|rig +shaytan|1 +(noun)|shaitan|genie|jinni|jinnee|djinni|djinny +she-bop|1 +(verb)|masturbate|wank|fuck off|jack off|jerk off|stimulate|excite|stir +she-devil|1 +(noun)|unpleasant woman|disagreeable woman +she-goat|1 +(noun)|nanny|nanny-goat|goat|caprine animal +she-oak|1 +(noun)|casuarina +sheaf|1 +(noun)|bundle|package|parcel +shear|6 +(noun)|deformation +(noun)|shears|scissors|pair of scissors +(noun)|edge tool +(verb)|snip|clip|crop|trim|lop|dress|prune|cut back +(verb)|fleece|shave|trim +(verb)|cut +sheared|2 +(adj)|sheared |shorn +(adj)|cut +shearer|3 +(noun)|Shearer|Moira Shearer|dancer|professional dancer|actress +(noun)|workman|working man|working person +(noun)|skilled worker|trained worker +shearing|1 +(noun)|cut|cutting|cutting off +shears|4 +(noun)|shear|scissors|pair of scissors +(noun)|shear|deformation +(noun)|shear|scissors|pair of scissors +(noun)|shear|edge tool +shearwater|1 +(noun)|petrel +sheatfish|1 +(noun)|European catfish|Silurus glanis|silurid|silurid fish +sheath|3 +(noun)|protective covering|protective cover|protection +(noun)|case|covering|natural covering|cover +(noun)|cocktail dress|dress|frock +sheath knife|1 +(noun)|case knife|knife +sheath pile|1 +(noun)|sheet pile|sheet piling|pile|spile|piling|stilt +sheathe|3 +(verb)|cover +(verb)|envelop|enfold|enwrap|wrap|enclose +(verb)|immerse|plunge +sheathed|1 +(adj)|sheathed |cased|encased|incased|clad|podlike +sheathing|1 +(noun)|overlay|overlayer|protective covering|protective cover|protection +shebang|1 +(noun)|system|scheme +shebat|1 +(noun)|Shebat|Shevat|Jewish calendar month +shebeen|1 +(noun)|tavern|tap house +shed|6 +(adj)|caducous |deciduous +(noun)|outbuilding +(verb)|cast|cast off|shake off|throw|throw off|throw away|drop|remove|take|take away|withdraw +(verb)|spill|pour forth|pour +(verb)|spill|disgorge|move|displace +(verb)|molt|exuviate|moult|slough|cast|cast off|shake off|throw|throw off|throw away|drop +shed blood|1 +(verb)|bleed|hemorrhage|discharge|expel|eject|release +shed light on|1 +(verb)|clear|clear up|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +shedder|1 +(noun)|spiller|attacker|aggressor|assailant|assaulter +shedding|2 +(noun)|sloughing|organic process|biological process +(noun)|desquamation|peeling|organic phenomenon +sheen|1 +(noun)|shininess|luster|lustre|radiance|radiancy|shine|effulgence|refulgence|refulgency +sheeny|2 +(adj)|glistening|glossy|lustrous|shiny|shining|bright +(noun)|kike|hymie|Jew|Hebrew|Israelite +sheep|3 +(noun)|bovid +(noun)|simpleton|simple +(noun)|follower +sheep's fescue|1 +(noun)|sheep fescue|Festuca ovina|grass +sheep's sorrel|1 +(noun)|sheep sorrel|Rumex acetosella|dock|sorrel|sour grass +sheep-tick|3 +(noun)|sheep ked|sheep tick|Melophagus Ovinus|louse fly|hippoboscid +(noun)|sheep tick|Ixodes ricinus|hard tick|ixodid +(noun)| +sheep bell|1 +(noun)|bell +sheep botfly|1 +(noun)|sheep gadfly|Oestrus ovis|botfly +sheep dip|1 +(noun)|pesticide|liquid +sheep dog|2 +(noun)|shepherd dog|sheepdog|working dog +(noun)| +sheep fescue|1 +(noun)|sheep's fescue|Festuca ovina|grass +sheep frog|1 +(noun)|frog|toad|toad frog|anuran|batrachian|salientian +sheep gadfly|1 +(noun)|sheep botfly|Oestrus ovis|botfly +sheep ked|1 +(noun)|sheep-tick|sheep tick|Melophagus Ovinus|louse fly|hippoboscid +sheep laurel|1 +(noun)|pig laurel|lambkill|Kalmia angustifolia|kalmia +sheep pen|1 +(noun)|fold|sheepfold|sheepcote|pen +sheep plant|2 +(noun)|vegetable sheep|Raoulia lutescens|Raoulia australis|herb|herbaceous plant +(noun)|vegetable sheep|Haastia pulvinaris|herb|herbaceous plant +sheep polypore|1 +(noun)|Albatrellus ovinus|polypore|pore fungus|pore mushroom +sheep rot|1 +(noun)|black disease|liver rot|distomatosis|animal disease +sheep sorrel|1 +(noun)|sheep's sorrel|Rumex acetosella|dock|sorrel|sour grass +sheep tick|3 +(noun)|sheep ked|sheep-tick|Melophagus Ovinus|louse fly|hippoboscid +(noun)|sheep-tick|Ixodes ricinus|hard tick|ixodid +(noun)| +sheepcote|1 +(noun)|fold|sheepfold|sheep pen|pen +sheepdog|1 +(noun)|shepherd dog|sheep dog|working dog +sheepfold|1 +(noun)|fold|sheep pen|sheepcote|pen +sheepherder|1 +(noun)|shepherd|sheepman|herder|herdsman|drover +sheepish|2 +(adj)|sheeplike|docile +(adj)|shamefaced|ashamed +sheepishness|1 +(noun)|shamefacedness|embarrassment +sheeplike|1 +(adj)|sheepish|docile +sheepman|2 +(noun)|stockman|stock raiser|stock farmer +(noun)|sheepherder|shepherd|herder|herdsman|drover +sheeprun|1 +(noun)|sheepwalk|farm +sheepshank|1 +(noun)|knot +sheepshead|1 +(noun)|Archosargus probatocephalus|sparid|sparid fish +sheepshead porgy|1 +(noun)|Calamus penna|porgy +sheepshearing|3 +(noun)|season +(noun)|festival|fete +(noun)|shearing +sheepskin|3 +(noun)|fleece|leather +(noun)|parchment|lambskin|animal skin +(noun)|diploma|certificate|certification|credential|credentials +sheepskin coat|1 +(noun)|afghan|coat +sheepwalk|1 +(noun)|sheeprun|farm +sheer|7 +(adj)|absolute|downright|out-and-out|rank|right-down|complete +(adj)|plain|unmingled|unmixed|pure +(adj)|bluff|bold|steep +(adj)|diaphanous|filmy|gauzy|gossamer|see-through|transparent|vaporous|cobwebby|thin +(verb)|swerve|curve|trend|veer|slue|slew|cut|turn +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(adv)|perpendicularly +sheesha|1 +(noun)|hookah|narghile|nargileh|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +sheet|10 +(noun)|expanse +(noun)|piece of paper|sheet of paper|paper +(noun)|bed sheet|bed linen +(noun)|plane|shape|form +(noun)|tabloid|rag|newspaper|paper +(noun)|flat solid|artifact|artefact +(noun)|tack|mainsheet|weather sheet|shroud|line +(noun)|sail|canvas|canvass|piece of cloth|piece of material +(verb)|pour|pelt|stream|rain cats and dogs|rain buckets +(verb)|cover +sheet-metal work|1 +(noun)|trade|craft +sheet anchor|1 +(noun)|waist anchor|anchor|ground tackle +sheet bend|1 +(noun)|becket bend|weaver's knot|weaver's hitch|hitch +sheet glass|1 +(noun)|plate glass|sheet|flat solid +sheet iron|1 +(noun)|plate iron +sheet lighting|1 +(noun)|lightning +sheet metal|1 +(noun)|sheet|flat solid +sheet music|1 +(noun)|musical composition|opus|composition|piece|piece of music +sheet of paper|1 +(noun)|sheet|piece of paper|paper +sheet pile|1 +(noun)|sheath pile|sheet piling|pile|spile|piling|stilt +sheet piling|1 +(noun)|sheet pile|sheath pile|pile|spile|piling|stilt +sheet web|1 +(noun)|spider web|spider's web +sheeting|1 +(noun)|fabric|cloth|material|textile +sheetlike|1 +(adj)|stratified |bedded +sheetrock|1 +(noun)|Sheetrock|plasterboard|gypsum board +sheffield|1 +(noun)|Sheffield|city|metropolis|urban center +shegetz|1 +(noun)|Gentile|non-Jew|goy +sheik|2 +(noun)|tribal sheik|sheikh|tribal sheikh|Arab chief|ruler|swayer +(noun)|dandy|dude|fop|gallant|beau|swell|fashion plate|clotheshorse|man|adult male +sheika|1 +(noun)|sheikha|wife|married woman +sheikdom|1 +(noun)|sheikhdom|domain|demesne|land +sheikh|1 +(noun)|sheik|tribal sheik|tribal sheikh|Arab chief|ruler|swayer +sheikha|1 +(noun)|sheika|wife|married woman +sheikhdom|1 +(noun)|sheikdom|domain|demesne|land +shekel|1 +(noun)|Israeli monetary unit +shekels|2 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|simoleons|sugar|wampum|money +(noun)|shekel|Israeli monetary unit +shel silverstein|1 +(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet|cartoonist +shelby silverstein|1 +(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet|cartoonist +sheldrake|2 +(noun)|merganser|fish duck|sawbill|sea duck +(noun)|duck +shelduck|1 +(noun)|sheldrake +shelf|2 +(noun)|support +(noun)|ledge|ridge +shelf bracket|1 +(noun)|bracket +shelf fungus|1 +(noun)|bracket fungus|polypore|pore fungus|pore mushroom +shelf ice|1 +(noun)|ice shelf|ice +shelf life|1 +(noun)|time period|period of time|period +shelfful|1 +(noun)|containerful +shelflike|1 +(adj)|support +shelfy|1 +(adj)|reefy|shelvy|shoaly|shallow +shell|17 +(noun)|ammunition|ammo +(noun)|animal material +(noun)|carapace|cuticle|exoskeleton +(noun)|hull +(noun)|eggshell|covering|natural covering|cover +(noun)|covering|natural covering|cover +(noun)|racing shell|racing boat +(noun)|case|casing|housing +(noun)|plate|scale|shield +(noun)|covering|natural covering|cover +(verb)|blast|bombard|bomb +(verb)|emerge +(verb)|hit +(verb)|gather +(verb)|beat|beat out|crush|trounce|vanquish|get the better of|overcome|defeat +(verb)|remove|take|take away|withdraw +(verb)|husk|remove|take|take away|withdraw +shell-flower|2 +(noun)|shellflower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant|bog plant|swamp plant +(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +shell bean|2 +(noun)|shell bean plant|bean|bean plant +(noun)|fresh bean +shell bean plant|1 +(noun)|shell bean|bean|bean plant +shell collecting|1 +(noun)|conchology|collection|collecting|assembling|aggregation +shell corporation|1 +(noun)|shell entity|corporation|corp +shell entity|1 +(noun)|shell corporation|corporation|corp +shell game|1 +(noun)|thimblerig|swindle|cheat|rig +shell ginger|1 +(noun)|shellflower|shall-flower|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +shell jacket|1 +(noun)|mess jacket|monkey jacket|jacket +shell out|1 +(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|deal out|dish out|allot|dole out|give +shell parakeet|1 +(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|lovebird|Melopsittacus undulatus|parakeet|parrakeet|parroket|paraquet|paroquet|parroquet +shell plating|1 +(noun)|plate|scale|shell +shell shock|1 +(noun)|battle fatigue|combat fatigue|combat neurosis|posttraumatic stress disorder|PTSD +shell stitch|2 +(noun)|crochet stitch +(verb)|crochet +shellac|3 +(noun)|lac +(noun)|shellac varnish|varnish +(verb)|varnish|seal +shellac varnish|1 +(noun)|shellac|varnish +shellac wax|1 +(noun)|lac wax|wax +shellbark|1 +(noun)|shagbark|shagbark hickory|shellbark hickory|Carya ovata|hickory|hickory tree +shellbark hickory|1 +(noun)|shagbark|shagbark hickory|shellbark|Carya ovata|hickory|hickory tree +sheller|1 +(noun)|worker +shelley|2 +(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer|author +(noun)|Shelley|Percy Bysshe Shelley|poet +shellfire|1 +(noun)|shooting|shot +shellfish|2 +(noun)|seafood +(noun)|mollusk|mollusc|invertebrate +shellflower|2 +(noun)|shell-flower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant|bog plant|swamp plant +(noun)|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger +shelling|1 +(noun)|barrage|barrage fire|battery|bombardment|fire|firing +shellproof|1 +(adj)|bombproof|invulnerable +shelter|7 +(noun)|structure|construction +(noun)|protective covering|protective cover|protection +(noun)|protection|security +(noun)|tax shelter|decrease|diminution|reduction|step-down +(noun)|housing|lodging|living accommodations +(verb)|supply|provide|render|furnish +(verb)|invest|put|commit|place +shelter deck|1 +(noun)|weather deck|upper deck +shelter tent|1 +(noun)|pup tent|tent|collapsible shelter +shelterbelt|1 +(noun)|windbreak|hedge|hedgerow +sheltered|1 +(adj)|protected |secure +sheltered workshop|1 +(noun)|workshop|shop +shelton jackson lee|1 +(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker|filmmaker|film producer|movie maker +shelve|2 +(verb)|postpone|prorogue|hold over|put over|table|set back|defer|remit|put off|delay +(verb)|put|set|place|pose|position|lay +shelver|1 +(noun)|worker +shelvy|1 +(adj)|reefy|shelfy|shoaly|shallow +shem|1 +(noun)|Shem|man|adult male +shema|1 +(noun)|Shema|prayer +shemozzle|1 +(noun)|schemozzle|confusion +shen-pao|1 +(noun)|Shen-pao|Spiritual Jewel|Chinese deity +shenandoah national park|1 +(noun)|Shenandoah National Park|national park +shenandoah valley|1 +(noun)|Shenandoah Valley|valley|vale +shenanigan|2 +(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|misbehavior|misbehaviour|misdeed +(noun)|trickery|chicanery|chicane|guile|wile|deception|deceit|dissembling|dissimulation +shenyang|1 +(noun)|Shenyang|Mukden|Moukden|Fengtien|city|metropolis|urban center +shepard|2 +(noun)|Shepard|Sam Shepard|dramatist|playwright +(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut|spaceman|cosmonaut +shepherd|4 +(noun)|clergyman|reverend|man of the cloth +(noun)|sheepherder|sheepman|herder|herdsman|drover +(verb)|guard|ward +(verb)|tend +shepherd's clock|1 +(noun)|meadow salsify|goatsbeard|Tragopogon pratensis|wildflower|wild flower +shepherd's crook|1 +(noun)|crook|staff +shepherd's pie|1 +(noun)|meat pie +shepherd's pipe|2 +(noun)|musette|bagpipe|pipes +(noun)|flageolet|treble recorder|fipple flute|fipple pipe|recorder|vertical flute +shepherd's pouch|1 +(noun)|shepherd's purse|Capsella bursa-pastoris|crucifer|cruciferous plant +shepherd's purse|1 +(noun)|shepherd's pouch|Capsella bursa-pastoris|crucifer|cruciferous plant +shepherd dog|1 +(noun)|sheepdog|sheep dog|working dog +shepherdess|1 +(noun)|sheepherder|shepherd|sheepman +sheraton|1 +(noun)|Sheraton|furniture|piece of furniture|article of furniture +sherbert|1 +(noun)|sherbet|sorbet|ice|frappe +sherbet|1 +(noun)|sherbert|sorbet|ice|frappe +sherd|1 +(noun)|shard|fragment|piece +sheridan|1 +(noun)|Sheridan|Richard Brinsley Sheridan|dramatist|playwright +sheriff|1 +(noun)|lawman|law officer|peace officer +sheriff's sale|1 +(noun)|execution sale|judicial sale|forced sale|sale|sales agreement +sherlock|1 +(noun)|private detective|PI|private eye|private investigator|operative|shamus|detective +sherlock holmes|1 +(noun)|Sherlock Holmes|Holmes|fictional character|fictitious character|character +sherman|4 +(noun)|Sherman|William Tecumseh Sherman|general|full general +(noun)|Sherman|Roger Sherman|American Revolutionary leader +(noun)|Sherman|Mount Sherman|mountain peak +(noun)|Sherman|town +sherpa|1 +(noun)|Sherpa|Asian|Asiatic +sherrington|1 +(noun)|Sherrington|Sir Charles Scott Sherrington|physiologist +sherry|1 +(noun)|fortified wine +sherwood|1 +(noun)|Sherwood|Robert Emmet Sherwood|dramatist|playwright +sherwood anderson|1 +(noun)|Anderson|Sherwood Anderson|writer|author +sherwood forest|1 +(noun)|Sherwood Forest|forest|woodland|timberland|timber +shetland|2 +(noun)|Shetland|Shetland Islands|Zetland|archipelago +(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog|sheepdog|sheep dog +shetland islands|1 +(noun)|Shetland|Shetland Islands|Zetland|archipelago +shetland pony|1 +(noun)|Shetland pony|pony +shetland sheep dog|1 +(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog|sheepdog|sheep dog +shetland sheepdog|1 +(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog|sheepdog|sheep dog +shetland wool|1 +(noun)|Shetland wool|wool +shevat|1 +(noun)|Shebat|Shevat|Jewish calendar month +shevchenko|1 +(noun)|Shevchenko|Taras Grigoryevich Shevchenko|poet +shew|1 +(verb)|prove|demonstrate|establish|show|confirm|corroborate|sustain|substantiate|support|affirm +shf|1 +(noun)|superhigh frequency|SHF|radio frequency +shi'ite|1 +(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +shi'ite muslim|1 +(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +shia|1 +(noun)|Shiah|Shia|Shiah Islam|the Shiites|sect|religious sect|religious order +shia muslim|1 +(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +shiah|1 +(noun)|Shiah|Shia|Shiah Islam|the Shiites|sect|religious sect|religious order +shiah islam|1 +(noun)|Shiah|Shia|Shiah Islam|the Shiites|sect|religious sect|religious order +shiatsu|1 +(noun)|acupressure|G-Jo|treatment +shibah|1 +(noun)|shiva|shivah|week|hebdomad +shibboleth|2 +(noun)|motto|slogan|catchword|saying|expression|locution +(noun)|manner of speaking|speech|delivery +shield|4 +(noun)|protective covering|protective cover|protection +(noun)|buckler|armor|armour +(verb)|screen|protect +(verb)|harbor|harbour|hide|conceal +shield-shaped|1 +(adj)|peltate|simple |unsubdivided +shield fern|1 +(noun)|buckler fern|fern +shield of david|1 +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +shielded|1 +(adj)|protected |secure +shielder|1 +(noun)|defender|guardian|protector|preserver +shielding|3 +(noun)|protection +(noun)|shield +(noun)|shield +shift|22 +(noun)|displacement|translation +(noun)|transformation|transmutation|change|alteration|modification +(noun)|work shift|duty period|hours +(noun)|switch|switching|change +(noun)|shifting|motion|movement|move +(noun)|fault|geological fault|fracture|break|crack|cleft|crevice|fissure|scissure +(noun)|work force|workforce|manpower|hands|men +(noun)|chemise|shimmy|slip|teddies|teddy|undergarment +(noun)|chemise|sack|dress|frock +(verb)|switch|change over|change|alter|modify +(verb)|dislodge|reposition|move|displace +(verb)|transfer|move|displace +(verb)|stir|budge|agitate|move +(verb)|change|alter|modify +(verb)|change +(verb)|substitute|replace +(verb)|careen|wobble|tilt|move +(verb)|lurch|pitch|move +(verb)|type|typewrite +(verb)|change +(verb)|switch|change +(verb)|switch|change +shift register|1 +(noun)|register +shifter|2 +(noun)|sceneshifter|stagehand|stage technician +(noun)|gearshift|gearstick|gear lever|mechanical device +shiftiness|1 +(noun)|rascality|slipperiness|trickiness|dishonesty +shifting|4 +(adj)|moving +(adj)|variable +(adj)|unfirm|loose +(noun)|shift|motion|movement|move +shiftless|1 +(adj)|unambitious |ambitionless +shiftlessness|1 +(noun)|indolence|laziness +shifty|1 +(adj)|devious|untrustworthy |untrusty +shiga bacillus|1 +(noun)|Shigella dysentariae|shigella +shigella|1 +(noun)|enteric bacteria|enterobacteria|enterics +shigella dysentariae|1 +(noun)|shiga bacillus|Shigella dysentariae|shigella +shigellosis|1 +(noun)|bacillary dysentery|dysentery +shih-tzu|1 +(noun)|Shih-Tzu|toy dog|toy +shiism|1 +(noun)|Shiism|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism +shiitake|1 +(noun)|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus +shiitake mushroom|1 +(noun)|shiitake|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus +shiite|1 +(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +shiite muslim|1 +(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +shikoku|1 +(noun)|Shikoku|island +shiksa|1 +(noun)|shikse|woman|adult female +shikse|1 +(noun)|shiksa|woman|adult female +shill|2 +(noun)|decoy|steerer +(verb)|deceive|lead on|delude|cozen +shillalah|1 +(noun)|shillelagh|cudgel +shillelagh|1 +(noun)|shillalah|cudgel +shilling|6 +(noun)|Ugandan shilling|Ugandan monetary unit +(noun)|Tanzanian shilling|Tanzanian monetary unit +(noun)|Somalian shilling|Somalian monetary unit +(noun)|Kenyan shilling|Kenyan monetary unit +(noun)|British shilling|bob|British monetary unit +(noun)|coin +shillyshally|3 +(noun)|procrastination|cunctation|delay|holdup +(verb)|hover|vibrate|vacillate|oscillate +(verb)|procrastinate|stall|drag one's feet|drag one's heels|dilly-dally|dillydally|delay +shiloh|1 +(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle +shim|1 +(noun)|wedge +shimchath torah|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +shimmer|3 +(noun)|play|change|alteration|modification +(verb)|shine|beam +(verb)|glitter|glisten|glint|gleam|shine +shimmery|1 +(adj)|bright +shimmy|5 +(noun)|wobble +(noun)|chemise|shift|slip|teddies|teddy|undergarment +(noun)|social dancing +(verb)|wobble|vibrate +(verb)|dance|trip the light fantastic|trip the light fantastic toe +shin|5 +(noun)|body part +(noun)|cut|cut of meat +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|tibia|shinbone|leg bone +(verb)|clamber|scramble|shinny|skin|struggle|sputter|climb +shin bet|1 +(noun)|Shin Bet|General Security Services|international intelligence agency +shin guard|1 +(noun)|shinpad|protective garment +shin splints|1 +(noun)|inflammation|redness|rubor +shina|1 +(noun)|Shina|Dard|Dardic|Dardic language +shinbone|1 +(noun)|tibia|shin|leg bone +shindig|1 +(noun)|shindy|party +shindy|1 +(noun)|shindig|party +shine|10 +(noun)|radiance|radiancy|effulgence|refulgence|refulgency|brightness +(verb)|reflect|emit|give out|give off +(verb)|beam +(verb)|glitter|glisten|glint|gleam|look|appear|seem +(verb)|be +(verb)|be +(verb)|glow|beam|radiate|look|appear|seem +(verb)|fall|strike|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|glow|beam|radiate|feel|experience +(verb)|polish|smooth|smoothen|beautify|embellish|prettify +shine at|1 +(verb)|excel at|excel|stand out|surpass +shine up|1 +(verb)|cozy up|cotton up|play up|sidle up|suck up|ingratiate +shiner|4 +(noun)|black eye|bruise|contusion +(noun)|object|physical object +(noun)|common mackerel|Scomber scombrus|mackerel +(noun)|cyprinid|cyprinid fish +shingle|4 +(noun)|shake|building material +(noun)|gravel|crushed rock +(noun)|signboard|sign +(verb)|roof +shingle oak|1 +(noun)|laurel oak|Quercus imbricaria|oak|oak tree +shingle tree|1 +(noun)|Acrocarpus fraxinifolius|tree +shingler|1 +(noun)|worker +shingles|4 +(noun)|herpes zoster|zoster|herpes +(noun)|shingle|shake|building material +(noun)|shingle|gravel|crushed rock +(noun)|shingle|signboard|sign +shingling|2 +(noun)|rock|stone +(noun)|trade|craft +shingly|1 +(adj)|gravelly|pebbly|beachy |beachlike +shingon|1 +(noun)|Shingon|Buddhism +shininess|1 +(noun)|sheen|luster|lustre|radiance|radiancy|shine|effulgence|refulgence|refulgency +shining|5 +(adj)|superior +(adj)|bright|burnished|lustrous|shiny|polished +(adj)|bright|shiny|sunshiny|sunny|clear +(adj)|glistening|glossy|lustrous|sheeny|shiny|bright +(noun)|polishing|work +shining clubmoss|1 +(noun)|Lycopodium lucidulum|club moss|club-moss|lycopod +shining path|1 +(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization|terrorist group|foreign terrorist organization|FTO +shining sumac|1 +(noun)|dwarf sumac|mountain sumac|black sumac|Rhus copallina|sumac|sumach|shumac +shining willow|1 +(noun)|Salix lucida|willow|willow tree +shinleaf|1 +(noun)|wild lily of the valley|Pyrola elliptica|wintergreen|pyrola +shinny|1 +(verb)|clamber|scramble|shin|skin|struggle|sputter|climb +shinpad|1 +(noun)|shin guard|protective garment +shinplaster|1 +(noun)|money +shinto|3 +(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief +(noun)|Shinto|religion|faith +(noun)|Shinto|Shintoism|religion|faith|religious belief +shintoism|1 +(noun)|Shinto|Shintoism|religion|faith|religious belief +shintoist|2 +(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief +(noun)|Shintoist|disciple|adherent +shintoistic|1 +(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief +shiny|4 +(adj)|glistening|glossy|lustrous|sheeny|shining|bright +(adj)|glazed |glassy|vitreous|vitrified|glossy|calendered|icy +(adj)|bright|burnished|lustrous|shining|polished +(adj)|bright|shining|sunshiny|sunny|clear +shiny lyonia|1 +(noun)|fetterbush|fetter bush|Lyonia lucida|shrub|bush +ship|6 +(noun)|vessel|watercraft +(verb)|transport|send|move|displace +(verb)|hire|engage|employ +(verb)|embark|board|get on +(verb)|travel|journey +(verb)|put|set|place|pose|position|lay +ship's bell|1 +(noun)|bell|time unit|unit of time +ship's boat|1 +(noun)|tender|pinnace|cutter|boat +ship's chandler|1 +(noun)|chandler +ship's company|1 +(noun)|company|complement|full complement +ship's galley|1 +(noun)|galley|caboose|cookhouse|kitchen +ship's officer|1 +(noun)|officer|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +ship's papers|1 +(noun)|legal document|legal instrument|official document|instrument +ship-breaker|1 +(noun)|contractor +ship-towed long-range acoustic detection system|1 +(noun)|shipboard system +ship biscuit|1 +(noun)|hardtack|pilot biscuit|pilot bread|sea biscuit|biscuit +ship broker|1 +(noun)|agent|factor|broker +ship builder|3 +(noun)|shipwright|shipbuilder|wright +(noun)|shipbuilder|builder|constructor +(noun)|shipbuilder|business|concern|business concern|business organization|business organisation +ship canal|1 +(noun)|shipway|canal +ship chandler|1 +(noun)|distributor|distributer +ship money|1 +(noun)|customs|customs duty|custom|impost +ship of the line|1 +(noun)|man-of-war|warship|war vessel|combat ship +ship route|1 +(noun)|seaway|sea lane|trade route|lane +shipboard|1 +(adj)|sea +shipboard duty|1 +(noun)|sea-duty|service abroad|assignment|duty assignment +shipboard soldier|1 +(noun)|Marine|devil dog|leatherneck|serviceman|military man|man|military personnel +shipboard system|1 +(noun)|naval equipment|system +shipbuilder|3 +(noun)|shipwright|ship builder|wright +(noun)|ship builder|builder|constructor +(noun)|business|concern|business concern|business organization|business organisation +shipbuilding|1 +(noun)|construction|building +shipbuilding industry|1 +(noun)|industry +shipload|1 +(noun)|boatload|carload|large indefinite quantity|large indefinite amount +shipmate|1 +(noun)|associate +shipment|2 +(noun)|cargo|lading|freight|load|loading|payload|consignment|merchandise|wares|product +(noun)|dispatch|despatch|departure|going|going away|leaving +shipowner|1 +(noun)|owner|possessor +shipper|2 +(noun)|businessperson|bourgeois +(noun)|company +shipping|2 +(noun)|transportation|transport|commercial enterprise|business enterprise|business +(noun)|cargo ships|merchant marine|merchant vessels|conveyance|transport +shipping agent|1 +(noun)|agent +shipping articles|1 +(noun)|articles of agreement|contract +shipping clerk|1 +(noun)|clerk +shipping company|1 +(noun)|company +shipping fever|1 +(noun)|shipping pneumonia|animal disease|blood poisoning|septicemia|septicaemia +shipping office|1 +(noun)|office|business office +shipping pneumonia|1 +(noun)|shipping fever|animal disease|blood poisoning|septicemia|septicaemia +shipping room|1 +(noun)|room +shipshape|1 +(adj)|trim|well-kept|tidy +shipside|1 +(noun)|side +shipway|2 +(noun)|ways|slipway|structure|construction +(noun)|ship canal|canal +shipworm|1 +(noun)|teredinid|clam +shipwreck|7 +(noun)|ship +(noun)|ruin|ruination +(noun)|wreck|accident +(verb)|ruin +(verb)|fail|go wrong|miscarry +(verb)|subject +(verb)|destroy|ruin +shipwreck survivor|1 +(noun)|castaway|abandoned person +shipwrecked|2 +(adj)|castaway|unfortunate +(adj)|aground +shipwright|1 +(noun)|shipbuilder|ship builder|wright +shipyard|1 +(noun)|workplace|work +shiraz|1 +(noun)|Shiraz|city|metropolis|urban center +shire|2 +(noun)|administrative district|administrative division|territorial division +(noun)|shire horse|draft horse|draught horse|dray horse +shire horse|1 +(noun)|shire|draft horse|draught horse|dray horse +shire town|1 +(noun)|county town|seat +shirer|1 +(noun)|Shirer|William Lawrence Shirer|journalist +shirk|2 +(verb)|fiddle|shrink from|goldbrick|avoid +(verb)|avoid +shirker|1 +(noun)|slacker|idler|loafer|do-nothing|layabout|bum +shirking|1 +(noun)|slacking|soldiering|goofing off|goldbricking|evasion|escape|dodging +shirley temple|1 +(noun)|Black|Shirley Temple Black|Shirley Temple|actress +shirley temple black|1 +(noun)|Black|Shirley Temple Black|Shirley Temple|actress +shirodkar's operation|1 +(noun)|Shirodkar's operation|purse-string operation|operation|surgery|surgical operation|surgical procedure|surgical process +shirr|1 +(verb)|bake +shirred egg|1 +(noun)|baked egg|egg en cocotte|dish +shirring|1 +(noun)|baking +shirt|2 +(noun)|garment +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +shirt button|1 +(noun)|button +shirtdress|1 +(noun)|dress|frock +shirtfront|2 +(noun)|front +(noun)|dickey|dickie|dicky|insert|inset +shirting|1 +(noun)|fabric|cloth|material|textile +shirtlifter|1 +(noun)|gay man|homosexual|homo|gay +shirtmaker|1 +(noun)|maker|shaper +shirtsleeve|1 +(noun)|sleeve|arm +shirtsleeves|2 +(noun)|dishabille|deshabille +(noun)|shirtsleeve|sleeve|arm +shirttail|2 +(noun)|appendix +(noun)|fabric|cloth|material|textile +shirtwaist|1 +(noun)|shirtwaister|blouse +shirtwaister|1 +(noun)|shirtwaist|blouse +shirty|1 +(adj)|snorty|ill-natured +shish kebab|1 +(noun)|kabob|kebab|dish +shisha|1 +(noun)|hookah|narghile|nargileh|sheesha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +shit|8 +(noun)|crap|dirt|shite|poop|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +(noun)|bullshit|bull|Irish bull|horseshit|crap|dogshit|bunk|bunkum|buncombe|guff|rot|hogwash +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|small indefinite quantity|small indefinite amount +(noun)|dump|defecation|laxation|shitting +(noun)|asshole|bastard|cocksucker|dickhead|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)|damn|darn|hoot|red cent|shucks|tinker's damn|tinker's dam|worthlessness +(verb)|denounce|tell on|betray|give away|rat|grass|shop|snitch|stag|inform +(verb)|stool|defecate|take a shit|take a crap|ca-ca|crap|make|excrete|egest|eliminate|pass +shite|1 +(noun)|crap|dirt|shit|poop|turd|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +shithead|1 +(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|fuckhead|simpleton|simple +shitless|1 +(adj)|afraid +shitlist|1 +(noun)|blacklist|black book|list|listing +shittah|1 +(noun)|shittah tree|acacia +shittah tree|1 +(noun)|shittah|acacia +shitter|1 +(noun)|defecator|voider|person|individual|someone|somebody|mortal|human|soul +shittim|2 +(noun)|southern buckthorn|shittimwood|mock orange|Bumelia lycioides|buckthorn +(noun)|shittah|shittah tree|acacia +shittimwood|3 +(noun)|false buckthorn|chittamwood|chittimwood|black haw|Bumelia lanuginosa|buckthorn +(noun)|southern buckthorn|shittim|mock orange|Bumelia lycioides|buckthorn +(noun)|wood +shitting|1 +(noun)|defecation|laxation|elimination|evacuation|excretion|excreting|voiding +shitty|1 +(adj)|icky|crappy|lousy|rotten|stinking|stinky|bad +shitwork|1 +(noun)|scut work|disagreeable task|disagreeable chore +shiv|1 +(noun)|knife +shiva|2 +(noun)|shivah|shibah|week|hebdomad +(noun)|Siva|Shiva|Hindu deity +shivah|1 +(noun)|shiva|shibah|week|hebdomad +shivaism|2 +(noun)|Shivaism|Sivaism|sect|religious sect|religious order +(noun)|Shivaism|Sivaism|Hinduism|Hindooism +shivaist|1 +(noun)|Shivaist|Hindu|Hindoo +shivaree|1 +(noun)|chivaree|charivari|callithump|callathump|belling|serenade +shiver|4 +(noun)|tremble|shake|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|frisson|chill|quiver|shudder|thrill|tingle|fear|fearfulness|fright +(verb)|shudder|throb|thrill|tremble +(verb)|shudder|move involuntarily|move reflexively +shivering|2 +(adj)|quaking|quivering|shaking|shaky|trembling|unsteady +(noun)|chill|symptom +shivery|2 +(adj)|cold +(adj)|chilling|scarey|scary|shuddery|alarming +shlemiel|1 +(noun)|schlemiel|simpleton|simple +shlep|2 +(verb)|traipse|walk +(verb)|schlep|pull along|drag +shlimazel|1 +(noun)|schlimazel|unfortunate|unfortunate person +shlock|1 +(noun)|schlock|dreck|merchandise|wares|product +shlockmeister|1 +(noun)|schlockmeister|merchant|merchandiser +shmaltz|1 +(noun)|schmaltz|schmalz|mushiness|mawkishness|sentimentality|drippiness +shmear|1 +(noun)|schmeer|schmear|batch|clutch +shmegegge|1 +(noun)|schmegegge|nonsense|bunk|nonsensicality|meaninglessness|hokum +shmo|1 +(noun)|schmuck|shmuck|schmo|jerk|dork +shmoose|1 +(verb)|shmooze|schmooze|schmoose|jawbone|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit +shmooze|2 +(noun)|talk|talking +(verb)|shmoose|schmooze|schmoose|jawbone|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit +shmuck|1 +(noun)|schmuck|schmo|shmo|jerk|dork +shnook|1 +(noun)|schnook|simpleton|simple +shnorr|1 +(verb)|schnorr|scrounge|cadge|beg +shoal|5 +(noun)|sandbank +(noun)|shallow|body of water|water +(noun)|school|animal group +(verb)|shallow|change|alter|modify +(verb)|shallow|change +shoaly|1 +(adj)|reefy|shelfy|shelvy|shallow +shoat|1 +(noun)|piglet|piggy|young mammal +shock|16 +(noun)|daze|stupor|stupefaction +(noun)|impact|fight|fighting|combat|scrap +(noun)|electric shock|electrical shock|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|collapse +(noun)|seismic disturbance|earthquake|quake|temblor|seism +(noun)|blow|surprise +(noun)|pile|heap|mound|cumulus +(noun)|mass +(noun)|shock absorber|cushion|damper|muffler +(verb)|stun|floor|ball over|blow out of the water|take aback|surprise +(verb)|offend|scandalize|scandalise|appal|appall|outrage|disgust|revolt|nauseate|sicken|churn up +(verb)|dismay|alarm|appal|appall|horrify +(verb)|collide|clash +(verb)|gather|garner|collect|pull together +(verb)|treat|care for +(verb)|traumatize|traumatise|injure|wound +shock-headed|1 +(adj)|hairy |hirsute +shock absorber|1 +(noun)|shock|cushion|damper|muffler +shock therapy|1 +(noun)|shock treatment|therapy +shock treatment|1 +(noun)|shock therapy|therapy +shock troops|1 +(noun)|troop +shock wave|1 +(noun)|blast wave|wave|undulation +shockable|1 +(adj)|shockable |narrow-minded +shocked|1 +(adj)|aghast|appalled|dismayed|afraid +shocker|2 +(noun)|bad person +(noun)|message|content|subject matter|substance +shocking|2 +(adj)|lurid|sensational +(adj)|disgraceful|scandalous|shameful|immoral +shockley|1 +(noun)|Shockley|William Shockley|William Bradford Shockley|physicist +shod|2 +(adj)|shod |shodden|shoed|booted|ironshod|roughshod|sandaled|sandalled|slippered +(adj)|calced +shodden|1 +(adj)|shod |shoed|booted|ironshod|roughshod|sandaled|sandalled|slippered +shoddiness|2 +(noun)|trashiness|worthlessness +(noun)|flimsiness|weakness +shoddy|3 +(adj)|cheapjack|tawdry|inferior +(adj)|jerry-built|weak +(noun)|wool +shoe|5 +(noun)|footwear|footgear +(noun)|case +(noun)|horseshoe|plate|scale|shell +(noun)|brake shoe|skid|restraint|constraint +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +shoe-shop|2 +(noun)|shoe shop|shoe store|shop|store +(noun)| +shoe black|2 +(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|Hibiscus rosa-sinensis|hibiscus +(noun)|bootblack|shoeblack|unskilled person +shoe bomb|1 +(noun)|explosive device +shoe industry|1 +(noun)|industry +shoe lace|2 +(noun)|shoelace|shoestring|shoe string|lace|lacing +(noun)| +shoe leather|1 +(noun)|leather +shoe polish|1 +(noun)|blacking|polish +shoe repairing|1 +(noun)|shoemaking|cobbling|trade|craft +shoe shop|2 +(noun)|shoe-shop|shoe store|shop|store +(noun)| +shoe store|1 +(noun)|shoe shop|shoe-shop|shop|store +shoe string|3 +(noun)|shoestring|small indefinite quantity|small indefinite amount +(noun)|shoelace|shoe lace|shoestring|lace|lacing +(noun)| +shoebill|1 +(noun)|shoebird|Balaeniceps rex|wading bird|wader +shoebird|1 +(noun)|shoebill|Balaeniceps rex|wading bird|wader +shoeblack|1 +(noun)|bootblack|unskilled person +shoeblack plant|1 +(noun)|China rose|Chinese hibiscus|Rose of China|shoe black|Hibiscus rosa-sinensis|hibiscus +shoebox|2 +(noun)|structure|construction +(noun)|box +shoed|1 +(adj)|shod |shodden|booted|ironshod|roughshod|sandaled|sandalled|slippered +shoeful|1 +(noun)|containerful +shoehorn|2 +(noun)|device +(verb)|tailor|adapt|accommodate +shoelace|1 +(noun)|shoe lace|shoestring|shoe string|lace|lacing +shoeless|1 +(adj)|barefoot|barefooted|unshod |unshoed +shoemaker|1 +(noun)|cobbler|maker|shaper +shoemaker's last|1 +(noun)|last|cobbler's last|holding device +shoemaking|1 +(noun)|shoe repairing|cobbling|trade|craft +shoes|5 +(noun)|place|situation|position +(noun)|shoe|footwear|footgear +(noun)|shoe|case +(noun)|horseshoe|shoe|plate|scale|shell +(noun)|brake shoe|shoe|skid|restraint|constraint +shoeshine|2 +(noun)|coating|finish|finishing +(noun)|shining|polishing +shoestring|2 +(noun)|shoelace|shoe lace|shoe string|lace|lacing +(noun)|shoe string|small indefinite quantity|small indefinite amount +shoestring catch|1 +(noun)|catch|grab|snatch|snap +shoestring fungus|1 +(noun)|agaric +shoetree|1 +(noun)|device +shofar|1 +(noun)|shophar|horn +shogi|1 +(noun)|chess|chess game +shogun|1 +(noun)|dictator|potentate|Japanese|Nipponese +shogunate|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|Stalinism|totalitarianism|tyranny|autocracy|autarchy +shoji|1 +(noun)|screen|cover|covert|concealment +sholem asch|1 +(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer|author +sholom asch|1 +(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer|author +shoo|1 +(verb)|shoo off|shoo away|chase away|drive out|turn back|drive away|dispel|drive off|run off +shoo-in|1 +(noun)|runaway|blowout|romp|laugher|walkaway|victory|triumph +shoo away|1 +(verb)|shoo off|shoo|chase away|drive out|turn back|drive away|dispel|drive off|run off +shoo fly|3 +(noun)|apple of Peru|Nicandra physaloides|herb|herbaceous plant +(noun)|shoofly|policeman|police officer|officer +(noun)|shoofly|rocking chair|rocker +shoo off|1 +(verb)|shoo|shoo away|chase away|drive out|turn back|drive away|dispel|drive off|run off +shoofly|2 +(noun)|policeman|police officer|officer +(noun)|rocking chair|rocker +shoofly pie|1 +(noun)|pie +shook|1 +(noun)|barrel|cask +shoot|22 +(noun)|sprout +(noun)|shooting|shot +(verb)|hit|pip|injure|wound +(verb)|pip|kill +(verb)|fire|discharge +(verb)|film|take|record|enter|put down +(verb)|project|cast|contrive|throw +(verb)|dart|dash|scoot|scud|flash|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|tear|shoot down|charge|buck|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|shoot up +(verb)|hit +(verb)|photograph|snap|record|enter|put down +(verb)|emit|give out|give off +(verb)|ache|smart|hurt +(verb)|inject|insert|enclose|inclose|stick in|put in|introduce +(verb)|weave|interweave +(verb)|throw +(verb)|fritter|frivol away|dissipate|fritter away|fool|fool away|consume|squander|waste|ware +(verb)|score|hit|tally|rack up +(verb)|utter|emit|let out|let loose +(verb)|measure|mensurate|measure out +(verb)|spud|germinate|pullulate|bourgeon|burgeon forth|sprout|grow +(verb)|inject|administer|dispense +shoot-'em-up|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +shoot-down|1 +(noun)|murder|slaying|execution +shoot a line|1 +(verb)|boast|tout|swash|brag|gas|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +shoot craps|1 +(verb)|gamble +shoot down|3 +(verb)|tear|shoot|charge|buck|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|down|land +(verb)|kill|defeat|vote down|vote out|veto|blackball|negative +shoot for|1 +(verb)|draw a bead on|aspire|aim|plan|be after +shoot one's mouth off|1 +(verb)|lip off|talk|speak|utter|mouth|verbalize|verbalise +shoot the breeze|1 +(verb)|chew the fat|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse|discourse +shoot up|1 +(verb)|increase +shooter|5 +(noun)|taw|marble +(noun)|shot|expert +(noun)|crap-shooter|gambler +(noun)|player|participant +(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|murderer|liquidator|manslayer +shooting|2 +(noun)|shot|propulsion|actuation +(noun)|homicide +shooting box|1 +(noun)|shooting lodge|country house +shooting brake|1 +(noun)|estate car|beach wagon|station wagon|wagon|beach waggon|station waggon|waggon +shooting gallery|2 +(noun)|building|edifice +(noun)|shooting range|firing range|target range +shooting iron|1 +(noun)|pistol|handgun|side arm|firearm|piece|small-arm +shooting lodge|1 +(noun)|shooting box|country house +shooting preserve|1 +(noun)|preserve +shooting range|1 +(noun)|shooting gallery|firing range|target range +shooting script|1 +(noun)|script|book|playscript +shooting star|1 +(noun)|meteor|light|visible light|visible radiation +shooting stick|1 +(noun)|device +shootout|1 +(noun)|gunfight|gunplay|fight|fighting|combat|scrap +shop|7 +(noun)|store|mercantile establishment|retail store|sales outlet|outlet +(noun)|workshop|workplace|work +(noun)|shop class|course|course of study|course of instruction|class +(verb)|obtain +(verb)|patronize|patronise|shop at|buy at|frequent|sponsor|support|back up +(verb)|browse|search|seek|look for +(verb)|denounce|tell on|betray|give away|rat|grass|shit|snitch|stag|inform +shop assistant|1 +(noun)|employee +shop at|1 +(verb)|patronize|patronise|shop|buy at|frequent|sponsor|support|back up +shop bell|1 +(noun)|bell +shop boy|1 +(noun)|shop assistant|male child|boy +shop class|1 +(noun)|shop|course|course of study|course of instruction|class +shop clerk|1 +(noun)|salesclerk|clerk|salesperson +shop floor|1 +(noun)|workplace|work +shop girl|1 +(noun)|shop assistant|girl|miss|missy|young lady|young woman|fille +shop mechanic|1 +(noun)|machinist|mechanic|craftsman|artisan|journeyman|artificer +shop steward|1 +(noun)|steward|union representative +shop talk|1 +(noun)|talk|talking +shopaholic|1 +(noun)|shopper +shopfront|1 +(noun)|storefront|front +shophar|1 +(noun)|shofar|horn +shopkeeper|1 +(noun)|tradesman|storekeeper|market keeper|merchant|merchandiser +shoplift|1 +(verb)|steal +shoplifter|1 +(noun)|booster|lifter|thief|stealer +shoplifting|1 +(noun)|shrinkage|larceny|theft|thievery|thieving|stealing +shopper|2 +(noun)|customer|client +(noun)|agent +shopping|1 +(noun)|buying|purchasing +shopping bag|1 +(noun)|sack|poke|paper bag|carrier bag +shopping basket|1 +(noun)|basket|handbasket +shopping cart|1 +(noun)|handcart|pushcart|cart|go-cart +shopping center|1 +(noun)|plaza|mall|center|shopping mall|shopping centre|mercantile establishment|retail store|sales outlet|outlet +shopping centre|1 +(noun)|plaza|mall|center|shopping mall|shopping center|mercantile establishment|retail store|sales outlet|outlet +shopping list|2 +(noun)|list|listing +(noun)|grocery list|list|listing +shopping mall|1 +(noun)|plaza|mall|center|shopping center|shopping centre|mercantile establishment|retail store|sales outlet|outlet +shopsoiled|1 +(adj)|shopworn|worn +shopwalker|1 +(noun)|floorwalker|employee +shopwindow|1 +(noun)|display window|show window|window +shopworn|2 +(adj)|shopsoiled|worn +(adj)|banal|commonplace|hackneyed|old-hat|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal +shore|5 +(noun)|geological formation|formation +(noun)|shoring|beam +(verb)|bound|border +(verb)|land|set ashore|arrive|get|come +(verb)|prop up|prop|shore up|hold|support|sustain|hold up +shore bird|2 +(noun)|shorebird|limicoline bird|wading bird|wader +(noun)| +shore boulder|1 +(noun)|boulder|bowlder +shore duty|1 +(noun)|assignment|duty assignment +shore leave|1 +(noun)|liberty|leave|leave of absence +shore patrol|1 +(noun)|military police|MP +shore pine|1 +(noun)|lodgepole|lodgepole pine|spruce pine|Pinus contorta|pine|pine tree|true pine +shore station|1 +(noun)|naval installation|military installation +shore up|1 +(verb)|prop up|prop|shore|hold|support|sustain|hold up +shorea|1 +(noun)|Shorea|genus Shorea|dilleniid dicot genus +shorea teysmanniana|1 +(noun)|red lauan|red lauan tree|Shorea teysmanniana|dipterocarp +shorebird|1 +(noun)|shore bird|limicoline bird|wading bird|wader +shoreline|1 +(noun)|boundary|bound|bounds +shoring|2 +(noun)|shore|beam +(noun)|shoring up|propping up|support|supporting +shoring up|1 +(noun)|shoring|propping up|support|supporting +shorn|1 +(adj)|sheared +short|23 +(adj)|short |abbreviated|shortened|truncated|brief|little|clipped|fleeting|fugitive|momentaneous|momentary|short-dated|short-range|short-run|short-term|telescoped|shortened|short and sweet +(adj)|short |abbreviated|brief|close|curtal|sawed-off|sawn-off|shortened|shortish|short-range|short-snouted|telescoped|shortened|snub|stubby|truncate|truncated +(adj)|short |chunky|dumpy|low-set|squat|squatty|stumpy|half-length|pint-size|pint-sized|runty|sawed-off|sawn-off|squab|squabby|small|little|low +(adj)|inadequate|poor|insufficient |deficient +(adj)|short +(adj)|short +(adj)|tender +(adj)|light|scant|insufficient |deficient +(adj)|unstressed |unaccented +(adj)|unretentive |forgetful +(adj)|shortsighted|unforesightful|myopic|improvident +(adj)|unforbearing|impatient +(adj)|choleric|irascible|hotheaded|hot-tempered|quick-tempered|short-tempered|ill-natured +(adj)|shortest|direct +(adj)|brusque|brusk|curt|discourteous +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|short circuit|contact|tangency +(noun)|shortstop|position +(verb)|short-change|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|con +(verb)|short-circuit|make|create +(adv)|abruptly|suddenly|dead +(adv)|unawares +(adv)|curtly|shortly +short's aster|1 +(noun)|Short's aster|Aster shortii|aster +short-billed marsh wren|1 +(noun)|sedge wren|Cistothorus platensis|marsh wren +short-change|1 +(verb)|short|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|con +short-circuit|3 +(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk +(verb)|short|make|create +(verb)|bypass|go around|get around|avoid +short-dated|1 +(adj)|short +short-grass|2 +(noun)|shortgrass|grass +(noun)| +short-haired|1 +(adj)|hairy |hirsute +short-handed|1 +(adj)|short-staffed|undermanned|understaffed|inadequate +short-handled|1 +(adj)|appendage +short-headed|1 +(adj)|broad-headed|roundheaded|brachycephalic |brachycranial|brachycranic +short-horned grasshopper|1 +(noun)|acridid|grasshopper|hopper +short-leaf pine|1 +(noun)|shortleaf pine|shortleaf yellow pine|Pinus echinata|yellow pine +short-lived|1 +(adj)|ephemeral|passing|transient|transitory|fugacious|impermanent |temporary +short-order|1 +(adj)|order +short-range|2 +(adj)|short +(adj)|short +short-run|1 +(adj)|short-term|short +short-snouted|1 +(adj)|short +short-spurred fragrant orchid|1 +(noun)|Gymnadenia odoratissima|orchid|orchidaceous plant +short-staffed|1 +(adj)|short-handed|undermanned|understaffed|inadequate +short-stop|3 +(noun)|stop bath|short-stop bath|developer +(noun)|shortstop|infielder +(noun)|shortstop|short|position +short-stop bath|1 +(noun)|stop bath|short-stop|developer +short-tailed shrew|1 +(noun)|Blarina brevicauda|shrew|shrewmouse +short-tempered|1 +(adj)|choleric|irascible|hotheaded|hot-tempered|quick-tempered|short|ill-natured +short-term|1 +(adj)|short-run|short +short-term memory|1 +(noun)|STM|immediate memory|memory|remembering +short-toed eagle|1 +(noun)|harrier eagle|hawk +short-winded|1 +(adj)|blown|gasping|out of breath|panting|pursy|winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +short-winged|1 +(adj)|brachypterous|winged +short account|2 +(noun)|account|business relationship +(noun)|index|index number|indicant|indicator +short and sweet|1 +(adj)|short +short aria|1 +(noun)|arietta|aria +short bone|1 +(noun)|os breve|bone|os +short circuit|1 +(noun)|short|contact|tangency +short covering|1 +(noun)|trading +short division|1 +(noun)|division +short gastric artery|1 +(noun)|arteria gastrica breves|vasa brevis|gastric artery|arteria gastrica +short hundredweight|1 +(noun)|hundredweight|cwt|centner|cental|quintal|avoirdupois unit +short iron|1 +(noun)|iron +short letter|1 +(noun)|note|line|billet|personal letter +short line|1 +(noun)|transportation system|transportation|transit +short list|1 +(noun)|list|listing +short order|1 +(noun)|order +short pants|1 +(noun)|shorts|trunks|trousers|pants +short ribs|1 +(noun)|cut of beef +short sale|1 +(noun)|short selling|trading +short saphenous vein|1 +(noun)|saphenous vein|vena saphena +short selling|1 +(noun)|short sale|trading +short shrift|2 +(noun)|summary treatment|rejection +(noun)|treatment|handling +short sleep|1 +(noun)|nap|catnap|cat sleep|forty winks|snooze|sleeping +short sleeve|1 +(noun)|sleeve|arm +short story|1 +(noun)|story +short subject|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +short temper|1 +(noun)|irascibility|spleen|quick temper|bad temper|ill temper +short ton|1 +(noun)|ton|net ton|avoirdupois unit +short wave|1 +(noun)|radio wave|radio emission|radio radiation +short whist|1 +(noun)|whist|long whist|card game|cards +shortage|2 +(noun)|deficit|shortfall|insufficiency|inadequacy|deficiency +(noun)|dearth|famine|lack|deficiency|want +shortbread|1 +(noun)|shortbread cookie|butter cookie +shortbread cookie|1 +(noun)|shortbread|butter cookie +shortcake|1 +(noun)|baking-powder biscuit +shortcoming|1 +(noun)|defect|disadvantage +shortcut|1 +(noun)|cutoff|crosscut|road|route +shorten|5 +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|abridge|foreshorten|abbreviate|cut|contract|reduce|decrease|lessen|minify +(verb)|change|alter|modify +(verb)|decrease|diminish|lessen|fall +(verb)|bowdlerize|bowdlerise|expurgate|castrate|abridge|foreshorten|abbreviate|cut|contract|reduce +shortened|4 +(adj)|sawed-off|sawn-off|short +(adj)|abbreviated|truncated|short +(adj)|telescoped|short |short +(adj)|cut|abridged +shortener|1 +(noun)|agent +shortening|2 +(noun)|edible fat +(noun)|decrease|diminution|reduction|step-down +shortest|16 +(adj)|short|direct +(adj)|short |abbreviated|shortened|truncated|brief|little|clipped|fleeting|fugitive|momentaneous|momentary|short-dated|short-range|short-run|short-term|telescoped|shortened|short and sweet +(adj)|short |abbreviated|brief|close|curtal|sawed-off|sawn-off|shortened|shortish|short-range|short-snouted|telescoped|shortened|snub|stubby|truncate|truncated +(adj)|short |chunky|dumpy|low-set|squat|squatty|stumpy|half-length|pint-size|pint-sized|runty|sawed-off|sawn-off|squab|squabby|small|little|low +(adj)|inadequate|poor|short|insufficient |deficient +(adj)|short +(adj)|short +(adj)|short|tender +(adj)|light|scant|short|insufficient |deficient +(adj)|short|unstressed |unaccented +(adj)|short|unretentive |forgetful +(adj)|short|shortsighted|unforesightful|myopic|improvident +(adj)|short|unforbearing|impatient +(adj)|choleric|irascible|hotheaded|hot-tempered|quick-tempered|short|short-tempered|ill-natured +(adj)|short|direct +(adj)|brusque|brusk|curt|short|discourteous +shortfall|1 +(noun)|deficit|shortage|insufficiency|inadequacy|deficiency +shortfin mako|1 +(noun)|Isurus oxyrhincus|mako|mako shark +shortgrass|1 +(noun)|short-grass|grass +shorthand|2 +(adj)|written +(noun)|stenography|handwriting|hand|script +shorthand typist|1 +(noun)|stenographer|amanuensis|secretary|secretarial assistant +shorthorn|1 +(noun)|Durham|beef|beef cattle +shortia|1 +(noun)|flower +shortia galacifolia|1 +(noun)|oconee bells|Shortia galacifolia|shortia +shortish|1 +(adj)|short +shortleaf pine|1 +(noun)|short-leaf pine|shortleaf yellow pine|Pinus echinata|yellow pine +shortleaf yellow pine|1 +(noun)|shortleaf pine|short-leaf pine|Pinus echinata|yellow pine +shortlist|1 +(verb)|rate|rank|range|order|grade|place +shortly|5 +(adv)|not long +(adv)|soon|presently|before long +(adv)|curtly|short +(adv)|concisely|briefly|in brief|in short +(adv)|not far +shortness|5 +(noun)|length +(noun)|truncation|lowness +(noun)|duration|length +(noun)|stature|height +(noun)|abruptness|brusqueness|curtness|gruffness|discourtesy|rudeness +shortness of breath|1 +(noun)|SOB|breathlessness|dyspnea|dyspnoea +shorts|5 +(noun)|short pants|trunks|trousers|pants +(noun)|drawers|underdrawers|boxers|boxershorts|underpants +(noun)|short|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|short circuit|short|contact|tangency +(noun)|shortstop|short|position +shortsighted|2 +(adj)|short|unforesightful|myopic|improvident +(adj)|ill-considered|ill-judged|improvident|imprudent +shortsightedness|2 +(noun)|myopia|nearsightedness|ametropia +(noun)|improvidence|imprudence +shortstop|2 +(noun)|infielder +(noun)|short|position +shorttail weasel|1 +(noun)|ermine|Mustela erminea|weasel +shortwave diathermy machine|1 +(noun)|diathermy machine +shoshone|2 +(noun)|Shoshone|Shoshoni|Indian|North American Indian|American Indian|Red Indian +(noun)|Shoshone|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language +shoshonean|1 +(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan|Uto-Aztecan language +shoshonean language|1 +(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan|Uto-Aztecan language +shoshoni|1 +(noun)|Shoshone|Shoshoni|Indian|North American Indian|American Indian|Red Indian +shoshonian|1 +(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan|Uto-Aztecan language +shoshonian language|1 +(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan|Uto-Aztecan language +shostakovich|1 +(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer +shot|18 +(adj)|changeable|chatoyant|iridescent|colorful |colourful +(noun)|attempt|effort|endeavor|endeavour|try +(noun)|stroke|maneuver|manoeuvre|play +(noun)|shooting|propulsion|actuation +(noun)|crack|opportunity|chance +(noun)|injection|medical care|medical aid +(noun)|pellet|projectile|missile +(noun)|snapshot|snap|photograph|photo|exposure|pic +(noun)|scene|photograph|photo|exposure|pic +(noun)|stab|attempt|effort|endeavor|endeavour|try +(noun)|shaft|slam|dig|barb|jibe|gibe|remark|comment +(noun)|blow +(noun)|nip|small indefinite quantity|small indefinite amount +(noun)|sports equipment|sporting goods +(noun)|shooter|expert +(noun)|blastoff|rocket firing|rocket launching +(noun)|charge|burster|bursting charge|explosive charge +(noun)|guess|guesswork|guessing|dead reckoning|estimate|estimation|approximation|idea +shot glass|1 +(noun)|jigger|pony|glass|drinking glass +shot hole|1 +(noun)|bore|bore-hole|drill hole +shot metal|1 +(noun)|alloy|metal +shot put|1 +(noun)|field event +shot putter|1 +(noun)|athlete|jock +shot tower|1 +(noun)|tower +shotgun|1 +(noun)|scattergun|firearm|piece|small-arm +shotgun shell|1 +(noun)|shell +shoulder|7 +(noun)|body part +(noun)|cut of beef +(noun)|shoulder joint|articulatio humeri|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +(noun)|berm|edge|margin +(verb)|raise|lift|elevate|get up|bring up +(verb)|thrust +(verb)|transport|carry +shoulder bag|1 +(noun)|bag|handbag|pocketbook|purse +shoulder blade|1 +(noun)|scapula|shoulder bone|bone|os +shoulder board|1 +(noun)|shoulder mark|epaulet|epaulette +shoulder bone|1 +(noun)|scapula|shoulder blade|bone|os +shoulder flash|1 +(noun)|insignia +shoulder girdle|1 +(noun)|pectoral arch|arch +shoulder holster|1 +(noun)|holster +shoulder in|1 +(verb)|jostle|shove +shoulder joint|1 +(noun)|shoulder|articulatio humeri|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea +shoulder mark|1 +(noun)|shoulder board|epaulet|epaulette +shoulder pad|1 +(noun)|protective garment +shoulder patch|1 +(noun)|patch +shoulder strap|1 +(noun)|strap|band +shoulder vise|1 +(noun)|wood vise|woodworking vise|vise|bench vise +shouldered|1 +(adj)|body part +shouldered arch|1 +(noun)|arch +shout|5 +(noun)|cry|outcry|call|yell|vociferation|utterance|vocalization +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|shout out|cry|call|yell|scream|holler|hollo|squall|utter|emit|let out|let loose +(verb)|exclaim|cry|cry out|outcry|call out|express|verbalize|verbalise|utter|give tongue to +(verb)|abuse|clapperclaw|blackguard|attack|round|assail|lash out|snipe|assault +shout down|1 +(verb)|hush|quieten|silence|still|shut up|hush up +shout out|2 +(verb)|shout|cry|call|yell|scream|holler|hollo|squall|utter|emit|let out|let loose +(verb)|vociferate|express|verbalize|verbalise|utter|give tongue to +shouted|1 +(adj)|yelled|loud +shouter|1 +(noun)|roarer|bawler|bellower|screamer|screecher|yeller|communicator +shouting|3 +(adj)|crying|howling|yelling|noisy +(noun)|cheering|encouragement +(noun)|yelling|cry|outcry|call|yell|shout|vociferation +shove|4 +(noun)|push|pushing +(verb)|jostle|push|force +(verb)|push|force +(verb)|thrust|stuff|squeeze|push|force +shove-ha'penny|1 +(noun)|shovel board|shove-halfpenny|board game +shove-halfpenny|1 +(noun)|shovel board|shove-ha'penny|board game +shove along|1 +(verb)|shove off|blow|go|go away|depart +shove off|1 +(verb)|shove along|blow|go|go away|depart +shovel|5 +(noun)|hand tool +(noun)|shovelful|spadeful|containerful +(noun)|fire iron +(noun)|power shovel|excavator|digger|machine +(verb)|dig|delve|cut into|turn over|shovel in|shovel in +shovel board|2 +(noun)|shove-halfpenny|shove-ha'penny|board game +(noun)|shuffleboard|shovelboard|outdoor game +shovel hat|1 +(noun)|hat|chapeau|lid +shovel in|2 +(verb)|rake in|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|garbage down|gobble up|bolt down|eat +shovelboard|1 +(noun)|shuffleboard|outdoor game +shoveler|2 +(noun)|shoveller|worker +(noun)|shoveller|broadbill|Anas clypeata|duck +shovelful|1 +(noun)|shovel|spadeful|containerful +shovelhead|1 +(noun)|bonnethead|bonnet shark|Sphyrna tiburo|hammerhead|hammerhead shark +shoveller|2 +(noun)|shoveler|worker +(noun)|shoveler|broadbill|Anas clypeata|duck +shovelnose catfish|1 +(noun)|flathead catfish|mudcat|goujon|spoonbill catfish|Pylodictus olivaris|catfish|siluriform fish +shover|1 +(noun)|pusher|mover +show|17 +(noun)|entertainment|amusement +(noun)|display|demonstration|demo +(noun)|social event|communication +(noun)|appearance|pretense|pretence|pretending|simulation|feigning +(verb)|demo|exhibit|present|demonstrate +(verb)|prove|demonstrate|establish|shew|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|testify|bear witness|prove|evidence|inform +(verb)|show off +(verb)|picture|depict|render|represent|interpret +(verb)|express|evince|convey|impart +(verb)|indicate|point|inform +(verb)|reveal|display|communicate|pass on|pass|put across +(verb)|show up|appear +(verb)|read|register|record|indicate +(verb)|read|register|record +(verb)|usher|lead|take|direct|conduct|guide +(verb)|race|run +show-off|1 +(noun)|exhibitionist|egotist|egoist|swellhead +show-stopper|3 +(noun)|showstopper|stopper|act|routine|number|turn|bit +(noun)|showstopper|attraction|attractiveness +(noun)| +show bill|1 +(noun)|show card|theatrical poster|poster|posting|placard|notice|bill|card +show biz|1 +(noun)|entertainment industry|show business|industry +show business|1 +(noun)|entertainment industry|show biz|industry +show card|1 +(noun)|show bill|theatrical poster|poster|posting|placard|notice|bill|card +show me state|1 +(noun)|Missouri|Show Me State|MO|American state +show off|1 +(verb)|flaunt|flash|ostentate|swank|expose|exhibit|display +show the door|1 +(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out +show time|2 +(noun)|point|point in time +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset|point|point in time +show trial|1 +(noun)|trial +show up|2 +(verb)|come on|come out|turn up|surface|appear +(verb)|show|appear +show window|2 +(noun)|showcase|setting|background|scope +(noun)|display window|shopwindow|window +showboat|1 +(noun)|steamboat|river boat +showcase|2 +(noun)|show window|setting|background|scope +(noun)|case|display case|container +showdown|1 +(noun)|confrontation|encounter|face-off|disagreement +shower|11 +(noun)|plumbing fixture +(noun)|shower bath|ablution +(noun)|rain shower|rain|rainfall +(noun)|cascade|descent +(noun)|exhibitor|exhibitioner|showman|promoter|impresario +(noun)|party +(verb)|lavish|consume|squander|waste|ware +(verb)|spray +(verb)|bathe +(verb)|shower down|rain|rain down +(verb)|provide|supply|ply|cater +shower bath|2 +(noun)|shower stall|booth|cubicle|stall|kiosk +(noun)|shower|ablution +shower cap|1 +(noun)|cap +shower curtain|1 +(noun)|curtain|drape|drapery|mantle|pall +shower down|1 +(verb)|shower|rain|rain down +shower room|1 +(noun)|room +shower stall|1 +(noun)|shower bath|booth|cubicle|stall|kiosk +showerhead|1 +(noun)|nozzle|nose +showery|1 +(adj)|rainy|wet +showgirl|1 +(noun)|chorus girl|chorine|dancer|professional dancer +showily|2 +(adv)|ostentatiously|with ostentation +(adv)|flamboyantly|flashily +showiness|1 +(noun)|flamboyance|floridness|ornateness|elaborateness +showing|2 +(noun)|screening|viewing|display +(noun)|display|exhibit|show +showing bad manners|1 +(adv)|impolitely|discourteously|rudely +showing contempt|1 +(adv)|contemptuously|disdainfully|scornfully|contumeliously +showing emotion|1 +(adv)|emotionally +showing intelligence|1 +(adv)|intelligently +showing lack of intelligence|1 +(adv)|unintelligently +showing mercy|1 +(adv)|mercifully|with mercy +showing neatness|1 +(adv)|neatly +showing trust|1 +(adv)|trustfully +showing wisdom|1 +(adv)|wisely|sagely|with wisdom +showjumping|1 +(noun)|stadium jumping|equestrian sport +showman|1 +(noun)|promoter|impresario|booker|booking agent +showmanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +showpiece|1 +(noun)|collector's item|piece de resistance|curio|curiosity|oddity|oddment|peculiarity|rarity +showplace|1 +(noun)|topographic point|place|spot +showroom|1 +(noun)|salesroom|saleroom|panopticon +showstopper|2 +(noun)|show-stopper|stopper|act|routine|number|turn|bit +(noun)|show-stopper|attraction|attractiveness +showtime|1 +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|offset|point|point in time +showy|4 +(adj)|splashy|ostentatious |pretentious +(adj)|aureate|florid|flamboyant|fancy +(adj)|theatrical +(adj)|flashy|gaudy|jazzy|sporty|colorful +showy daisy|1 +(noun)|Erigeron speciosus|fleabane +showy goldenrod|1 +(noun)|goldenrod +showy lady's-slipper|1 +(noun)|common lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +showy lady slipper|1 +(noun)|common lady's-slipper|showy lady's-slipper|Cypripedium reginae|Cypripedium album|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +showy milkweed|1 +(noun)|Asclepias speciosa|milkweed|silkweed +showy orchis|1 +(noun)|purple orchis|purple-hooded orchis|Orchis spectabilis|orchis +showy sunflower|1 +(noun)|Helianthus laetiflorus|sunflower|helianthus +shrapnel|1 +(noun)|shell +shred|3 +(noun)|scintilla|whit|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +(noun)|rag|tag|tag end|tatter|piece of cloth|piece of material +(verb)|tear up|rip up|tear|rupture|snap|bust +shredded|1 +(adj)|chopped|sliced|cut +shredder|1 +(noun)|device +shreveport|1 +(noun)|Shreveport|city|metropolis|urban center +shrew|2 +(noun)|termagant|unpleasant woman|disagreeable woman +(noun)|shrewmouse|insectivore +shrew mole|1 +(noun)|mole +shrewd|2 +(adj)|astute|sharp|smart +(adj)|calculating|calculative|conniving|scheming|hard +shrewdly|1 +(adv)|astutely|sagaciously|sapiently +shrewdness|1 +(noun)|astuteness|perspicacity|perspicaciousness|intelligence +shrewish|1 +(adj)|nagging|ill-natured +shrewishness|1 +(noun)|ill nature +shrewmouse|1 +(noun)|shrew|insectivore +shriek|3 +(noun)|scream|screaming|shrieking|screech|screeching|cry|outcry|call|yell|shout|vociferation +(noun)|screech|screeching|shrieking|scream|screaming|noise +(verb)|shrill|pipe up|pipe|shout|shout out|cry|call|yell|scream|holler|hollo|squall +shrieked|1 +(adj)|shout|shout out|cry|call|yell|scream|holler|hollo|squall +shrieking|3 +(adj)|screaming|screeching|noisy +(noun)|scream|screaming|shriek|screech|screeching|cry|outcry|call|yell|shout|vociferation +(noun)|screech|screeching|shriek|scream|screaming|noise +shrift|1 +(noun)|confession +shrike|1 +(noun)|oscine|oscine bird +shrill|2 +(adj)|piercing|sharp|high |high-pitched +(verb)|shriek|pipe up|pipe|shout|shout out|cry|call|yell|scream|holler|hollo|squall +shrilling|2 +(adj)|high |high-pitched +(noun)|noise +shrillness|1 +(noun)|stridence|stridency|timbre|timber|quality|tone +shrilly|1 +(adv)|piercingly +shrimp|4 +(noun)|runt|peewee|half-pint|small person +(noun)|prawn|seafood +(noun)|decapod crustacean|decapod +(verb)|fish +shrimp-fish|2 +(noun)|shrimpfish|teleost fish|teleost|teleostan +(noun)| +shrimp butter|1 +(noun)|spread|paste +shrimp cocktail|1 +(noun)|cocktail +shrimp newburg|1 +(noun)|shrimp Newburg|seafood Newburg +shrimp sauce|1 +(noun)|Nantua|sauce +shrimper|1 +(noun)|vessel|watercraft +shrimpfish|1 +(noun)|shrimp-fish|teleost fish|teleost|teleostan +shrimpy|1 +(adj)|puny|runty|small +shrine|2 +(noun)|place of worship|house of prayer|house of God|house of worship +(verb)|enshrine|enclose|inclose|shut in +shrink|6 +(noun)|psychiatrist|head-shrinker|specialist|medical specialist +(verb)|shrivel|shrivel up|wither|decrease|diminish|lessen|fall +(verb)|flinch|squinch|funk|cringe|wince|recoil|quail|move +(verb)|reduce|decrease|lessen|minify +(verb)|contract|decrease|diminish|lessen|fall +(verb)|shrivel|decrease|diminish|lessen|fall +shrink-wrapped|1 +(adj)|wrapped +shrink-wrapped software|1 +(noun)|software|software system|software package|package +shrink back|1 +(verb)|retract|flinch|squinch|funk|cringe|shrink|wince|recoil|quail +shrink from|1 +(verb)|fiddle|shirk|goldbrick|avoid +shrinkable|1 +(adj)|shrinkable +shrinkage|3 +(noun)|shrinking|decrease|lessening|drop-off +(noun)|decrease|decrement +(noun)|shoplifting|larceny|theft|thievery|thieving|stealing +shrinking|2 +(noun)|shrinkage|decrease|lessening|drop-off +(noun)|decrease|diminution|reduction|step-down +shrinking violet|1 +(noun)|shy person|coward +shrinkwrap|1 +(verb)|wrap|wrap up +shrive|1 +(verb)|confess|squeal|admit|acknowledge +shrivel|2 +(verb)|shrivel up|shrink|wither|decrease|diminish|lessen|fall +(verb)|shrink|decrease|diminish|lessen|fall +shrivel up|1 +(verb)|shrivel|shrink|wither|decrease|diminish|lessen|fall +shriveled|3 +(adj)|dried-up|sere|sear|shrivelled|withered|dry +(adj)|shrivelled|shrunken|withered|wizen|wizened|thin |lean +(adj)|shrivelled|shrunken|decreased |reduced +shrivelled|3 +(adj)|dried-up|sere|sear|shriveled|withered|dry +(adj)|shriveled|shrunken|withered|wizen|wizened|thin |lean +(adj)|shriveled|shrunken|decreased |reduced +shroud|6 +(noun)|line +(noun)|sheet|tack|mainsheet|weather sheet|line +(noun)|pall|cerement|winding-sheet|winding-clothes|burial garment +(verb)|enshroud|hide|cover|envelop|enfold|enwrap|wrap|enclose +(verb)|cover|spread over +(verb)|wrap|wrap up +shrove tuesday|1 +(noun)|Mardi Gras|Shrove Tuesday|pancake day|Christian holy day +shrovetide|1 +(noun)|Shrovetide|season +shrub|1 +(noun)|bush|woody plant|ligneous plant +shrubbery|2 +(noun)|area|country +(noun)|vegetation|flora +shrubby|1 +(adj)|fruticose|fruticulose|woody plant|ligneous plant +shrubby penstemon|1 +(noun)|lowbush penstemon|Penstemon fruticosus|wildflower|wild flower +shrubby st john's wort|1 +(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort +shrublet|1 +(noun)|shrub|bush +shrug|2 +(noun)|gesture|motion +(verb)|gesticulate|gesture|motion|shrug off +shrug off|1 +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +shrunk|1 +(adj)|shrunken|contracted +shrunken|3 +(adj)|shriveled|shrivelled|withered|wizen|wizened|thin |lean +(adj)|shriveled|shrivelled|decreased |reduced +(adj)|shrunk|contracted +shtick|4 +(noun)|shtik|schtik|schtick|small indefinite quantity|small indefinite amount +(noun)|shtik|schtik|schtick|business|stage business|byplay +(noun)|shtik|schtik|schtick|buffoonery|clowning|frivolity|harlequinade|prank +(noun)|shtik|schtik|schtick|trick|fast one +shtickl|1 +(noun)|shtikl|schtikl|schtickl|shtik|shtick|schtik|schtick +shtik|4 +(noun)|shtick|schtik|schtick|small indefinite quantity|small indefinite amount +(noun)|schtik|shtick|schtick|business|stage business|byplay +(noun)|schtik|shtick|schtick|buffoonery|clowning|frivolity|harlequinade|prank +(noun)|schtik|shtick|schtick|trick|fast one +shtikl|1 +(noun)|shtickl|schtikl|schtickl|shtik|shtick|schtik|schtick +shtup|1 +(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +shua|1 +(noun)|Shuha Shinto|Shua|sect|religious sect|religious order +shuck|3 +(noun)|chaff|husk|stalk|straw|stubble|plant material +(verb)|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +shucks|3 +(noun)|damn|darn|hoot|red cent|shit|tinker's damn|tinker's dam|worthlessness +(noun)|saying|expression|locution +(noun)|chaff|husk|shuck|stalk|straw|stubble|plant material +shudder|4 +(noun)|frisson|shiver|chill|quiver|thrill|tingle|fear|fearfulness|fright +(noun)|tremor|vibration|quiver|quivering +(verb)|shiver|move involuntarily|move reflexively +(verb)|shiver|throb|thrill|tremble +shuddering|1 +(adj)|unsteady +shuddery|1 +(adj)|chilling|scarey|scary|shivery|alarming +shudra|2 +(noun)|Shudra|Sudra|Hindu|Hindoo|Hindustani +(noun)|sudra|varna +shuffle|5 +(noun)|shuffling|make|reordering +(noun)|shamble|shambling|shuffling|walk|walking +(verb)|scuffle|shamble|walk +(verb)|transfer|shift +(verb)|ruffle|mix|manipulate +shuffleboard|1 +(noun)|shovelboard|outdoor game +shuffler|2 +(noun)|card player +(noun)|pedestrian|walker|footer +shuffling|2 +(noun)|shamble|shambling|shuffle|walk|walking +(noun)|shuffle|make|reordering +shufti|1 +(noun)|reconnaissance|reconnaissance mission +shuha|1 +(adj)|Shuha|sect|religious sect|religious order +shuha shinto|1 +(noun)|Shuha Shinto|Shua|sect|religious sect|religious order +shumac|1 +(noun)|sumac|sumach|shrub|bush +shumard oak|1 +(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak +shumard red oak|1 +(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak +shun|2 +(verb)|eschew|avoid +(verb)|banish|ban|ostracize|ostracise|cast out|blackball|expel|throw out|kick out +shun giku|1 +(noun)|chop-suey greens|tong ho|Chrysanthemum coronarium spatiosum|chrysanthemum +shunning|1 +(noun)|avoidance|turning away|dodging|rejection +shunt|5 +(noun)|passage|passageway +(noun)|electrical shunt|bypass|conductor +(noun)|implant +(verb)|transfer|shift +(verb)|deviate +shunt circuit|1 +(noun)|parallel circuit|closed circuit|loop +shunter|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +shush|1 +(verb)|hush|quieten|silence|still|shut up|hush up +shut|5 +(adj)|shut |unopen|closed|closed +(adj)|closed |blinking|winking|compressed|tight|squinched|squinting +(verb)|close|shut up|shut in +(verb)|close|change state|turn +(verb)|exclude|keep out|shut out|prevent|keep +shut-in|3 +(adj)|introvertish|introversive |introvertive +(adj)|homebound|housebound|confined +(noun)|invalid|sick person|diseased person|sufferer +shut away|1 +(verb)|lock in|lock away|lock|put away|shut up|lock up|confine +shut down|1 +(verb)|close|fold|close down +shut in|1 +(verb)|enclose|inclose|surround|skirt|border +shut off|3 +(verb)|close off|discontinue|stop|cease|give up|quit|lay off +(verb)|close off|separate|divide +(verb)|block off|close off|barricade|block|blockade|stop|block off|block up|bar +shut one's mouth|1 +(verb)|keep quiet|keep one's mouth shut +shut out|1 +(verb)|exclude|keep out|shut|prevent|keep +shut up|4 +(adj)|pent|confined +(verb)|close up|clam up|dummy up|belt up|button up|be quiet|keep mum +(verb)|lock in|lock away|lock|put away|shut away|lock up|confine +(verb)|hush|quieten|silence|still|hush up|suppress|stamp down|inhibit|subdue|conquer|curb +shutdown|1 +(noun)|closure|closedown|closing|termination|ending|conclusion +shute|1 +(noun)|Shute|Nevil Shute|Nevil Shute Norway|writer|author +shuteye|1 +(noun)|sleep|slumber +shutout|1 +(noun)|skunk|defeat|licking +shutter|3 +(noun)|mechanical device +(noun)|blind|screen +(verb)|close|shut +shutterbug|1 +(noun)|enthusiast|partisan|partizan +shuttered|1 +(adj)|shuttered |closed +shutting|1 +(noun)|closing|motion|movement|move|motility +shutting post|1 +(noun)|gatepost +shuttle|4 +(noun)|shuttlecock|bird|birdie|badminton equipment +(noun)|public transport +(noun)|bobbin|spool|reel +(verb)|travel|go|move|locomote +shuttle bus|1 +(noun)|shuttle +shuttle diplomacy|1 +(noun)|diplomacy|diplomatic negotiations +shuttle helicopter|1 +(noun)|helicopter|chopper|whirlybird|eggbeater +shuttlecock|2 +(noun)|bird|birdie|shuttle|badminton equipment +(verb)|bandy +shuttlecock fern|1 +(noun)|ostrich fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern +shwa|1 +(noun)|schwa|vowel|vowel sound +shy|7 +(adj)|diffident|timid|unsure|unconfident +(adj)|timid +(adj)|insufficient |deficient +(adj)|wary +(noun)|throw +(verb)|startle|jump|start +(verb)|throw +shy away from|1 +(verb)|avoid +shy person|1 +(noun)|shrinking violet|coward +shylock|2 +(noun)|usurer|loan shark|moneylender|lender|loaner|shark +(noun)|Shylock|fictional character|fictitious character|character +shyly|1 +(adv)|timidly|bashfully +shyness|1 +(noun)|timidity|timidness|timorousness +shyster|1 +(noun)|pettifogger|wrongdoer|offender +si|3 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +(noun)|silicon|Si|atomic number 14|chemical element|element|semiconductor|semiconducting material +(noun)|ti|te|solfa syllable +si system|1 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +sial|1 +(noun)|rock|stone +sialadenitis|1 +(noun)|inflammation|redness|rubor +sialia|1 +(noun)|Sialia|genus Sialia|bird genus +sialidae|1 +(noun)|Sialidae|family Sialidae|arthropod family +sialis|1 +(noun)|Sialis|genus Sialis|arthropod genus +sialis lutaria|1 +(noun)|alderfly|alder fly|Sialis lutaria|neuropteron|neuropteran|neuropterous insect +sialolith|1 +(noun)|salivary calculus|calculus|concretion +siam|1 +(noun)|Thailand|Kingdom of Thailand|Siam|Asian country|Asian nation +siamang|1 +(noun)|Hylobates syndactylus|Symphalangus syndactylus|lesser ape +siamese|8 +(adj)|Thai|Tai|Siamese|Asian|Asiatic +(adj)|Thai|Tai|Siamese|Tai +(adj)|Thai|Tai|Siamese|Asian country|Asian nation +(adj)|twin|similar +(adj)|connected +(noun)|Thai|Siamese|Central Thai|Tai +(noun)|Thai|Tai|Siamese|Asian|Asiatic +(noun)|Siamese cat|Siamese|domestic cat|house cat|Felis domesticus|Felis catus +siamese cat|1 +(noun)|Siamese cat|Siamese|domestic cat|house cat|Felis domesticus|Felis catus +siamese twin|1 +(noun)|Siamese twin|conjoined twin|identical twin|monozygotic twin|monozygous twin +sian|1 +(noun)|Xian|Sian|Singan|Changan|Hsian|city|metropolis|urban center +sib|2 +(noun)|sibling|relative|relation +(noun)|blood relation|blood relative|cognate|relative|relation +sibelius|1 +(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer +siberia|1 +(noun)|Siberia|geographical area|geographic area|geographical region|geographic region +siberian|2 +(adj)|Siberian|geographical area|geographic area|geographical region|geographic region +(noun)|Siberian|Russian +siberian crab|1 +(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple|crabapple|cultivated crab apple +siberian crab apple|1 +(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple|crabapple|cultivated crab apple +siberian elm|1 +(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm|elm tree +siberian husky|1 +(noun)|Siberian husky|sled dog|sledge dog +siberian larch|1 +(noun)|Siberian larch|Larix siberica|Larix russica|larch|larch tree +siberian millet|1 +(noun)|Siberian millet|Setaria italica rubrofructa|foxtail millet|Italian millet|Hungarian grass|Setaria italica +siberian pea tree|1 +(noun)|Siberian pea tree|Caragana arborescens|pea tree|caragana +siberian spruce|1 +(noun)|Siberian spruce|Picea obovata|spruce +siberian wall flower|1 +(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower +sibilant|2 +(adj)|fricative|spirant|soft +(noun)|sibilant consonant|consonant +sibilant consonant|1 +(noun)|sibilant|consonant +sibilate|4 +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|utter|emit|let out|let loose +(verb)|hiss|sizz|siss|talk|speak|utter|mouth|verbalize|verbalise +(verb)|hiss|siss|sizz|utter|emit|let out|let loose +sibilation|2 +(noun)|hiss|hissing|noise +(noun)|assibilation|pronunciation +sibine|1 +(noun)|Somrai|Sibine|East Chadic +sibley tent|1 +(noun)|Sibley tent|canvas tent|canvas|canvass +sibling|1 +(noun)|sib|relative|relation +sibyl|2 +(noun)|fortuneteller|fortune teller +(noun)|prophet|oracle|seer|vaticinator +sibyllic|1 +(adj)|divinatory|mantic|sibylline|vatic|vatical|prophetic |prophetical +sibylline|2 +(adj)|divinatory|mantic|sibyllic|vatic|vatical|prophetic |prophetical +(adj)|cabalistic|kabbalistic|qabalistic|cryptic|cryptical|esoteric +sic|1 +(verb)|set|assail|assault|set on|attack +sicative|1 +(noun)|desiccant|drying agent|drier|chemical agent +sichuan|1 +(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state|province +sicilia|2 +(noun)|Sicily|Sicilia|Italian region +(noun)|Sicily|Sicilia|island +sicilian|2 +(adj)|Sicilian|Italian region +(noun)|Sicilian|Italian +sicilian mafia|1 +(noun)|Mafia|Maffia|Sicilian Mafia|organized crime|gangland|gangdom +sicilian pizza|1 +(noun)|Sicilian pizza|pizza|pizza pie +sicily|2 +(noun)|Sicily|Sicilia|Italian region +(noun)|Sicily|Sicilia|island +sick|6 +(adj)|ill |afflicted|stricken|aguish|ailing|indisposed|peaked|poorly|sickly|unwell|under the weather|airsick|air sick|carsick|seasick|bedfast|bedridden|bedrid|infirm|sick-abed|bilious|liverish|livery|bronchitic|consumptive|convalescent|recovering|delirious|hallucinating|diabetic|dizzy|giddy|woozy|vertiginous|dyspeptic|faint|light|swooning|light-headed|lightheaded|feverish|feverous|funny|gouty|laid low|stricken|menstruating|unwell|nauseated|queasy|sickish|scrofulous|tubercular|tuberculous|unhealed|upset|green|laid up|sneezy|spastic|unhealthy|unfit +(adj)|nauseated|queasy|sickish|ill +(adj)|brainsick|crazy|demented|distracted|disturbed|mad|unbalanced|unhinged|insane +(adj)|disgusted|fed up|sick of|tired of|displeased +(noun)|people +(verb)|vomit|vomit up|purge|cast|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +sick-abed|1 +(adj)|bedfast|bedridden|bedrid|infirm|ill |sick +sick bag|2 +(noun)|sickbag|bag +(noun)| +sick benefit|1 +(noun)|sickness benefit|benefit +sick berth|1 +(noun)|sickbay|room +sick call|1 +(noun)|sick parade|military formation +sick headache|2 +(noun)|headache|head ache|cephalalgia +(noun)|migraine|megrim|hemicrania|headache|head ache|cephalalgia +sick joke|1 +(noun)|joke|gag|laugh|jest|jape +sick leave|1 +(noun)|leave|leave of absence +sick list|1 +(noun)|list|listing +sick of|1 +(adj)|disgusted|fed up|sick|tired of|displeased +sick parade|1 +(noun)|sick call|military formation +sick pay|1 +(noun)|wage|pay|earnings|remuneration|salary +sick person|1 +(noun)|diseased person|sufferer|unfortunate|unfortunate person +sickbag|1 +(noun)|sick bag|bag +sickbay|1 +(noun)|sick berth|room +sickbed|1 +(noun)|bed +sicken|4 +(verb)|disgust|revolt|nauseate|churn up|repel|repulse +(verb)|come down|worsen|decline +(verb)|nauseate|turn one's stomach|disgust|gross out|revolt|repel +(verb)|harm +sickening|1 +(adj)|nauseating|nauseous|noisome|loathsome|offensive|vile|unwholesome +sickeningly|1 +(adv)|disgustingly|distastefully|revoltingly +sickeningness|1 +(noun)|disgustingness|distastefulness|nauseatingness|unsavoriness|unpalatability|unpalatableness +sickish|1 +(adj)|nauseated|queasy|sick|ill |sick +sickle|1 +(noun)|reaping hook|reap hook|edge tool +sickle-cell anaemia|1 +(noun)|sickle-cell anemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +sickle-cell anemia|1 +(noun)|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +sickle-cell disease|1 +(noun)|sickle-cell anemia|sickle-cell anaemia|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia|anaemia|monogenic disorder|monogenic disease +sickle-shaped|1 +(adj)|falcate|falciform|curved |curving +sickle alfalfa|1 +(noun)|sickle lucerne|sickle medick|Medicago falcata|medic|medick|trefoil +sickle cell|1 +(noun)|red blood cell|RBC|erythrocyte +sickle feather|1 +(noun)|tail feather +sickle lucerne|1 +(noun)|sickle alfalfa|sickle medick|Medicago falcata|medic|medick|trefoil +sickle medick|1 +(noun)|sickle alfalfa|sickle lucerne|Medicago falcata|medic|medick|trefoil +sicklepod|2 +(noun)|Senna obtusifolia|Cassia tora|subshrub|suffrutex +(noun)|Arabis Canadensis|rock cress|rockcress +sickleweed golden aster|1 +(noun)|golden aster +sickly|2 +(adj)|sallow|unhealthy +(adj)|ailing|indisposed|peaked|poorly|unwell|under the weather|ill |sick +sickness|2 +(noun)|illness|unwellness|malady|ill health|unhealthiness|health problem +(noun)|nausea|symptom +sickness benefit|1 +(noun)|sick benefit|benefit +sickroom|1 +(noun)|room +sid caesar|1 +(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian|comic +sida|1 +(noun)|Sida|genus Sida|dilleniid dicot genus +sida hermaphrodita|1 +(noun)|Virginia mallow|Sida hermaphrodita|mallow +sida rhombifolia|1 +(noun)|Queensland hemp|jellyleaf|Sida rhombifolia|mallow +sida spinosa|1 +(noun)|Indian mallow|Sida spinosa|mallow +sidalcea|1 +(noun)|Sidalcea|genus Sidalcea|dilleniid dicot genus +sidalcea malviflora|1 +(noun)|checkerbloom|wild hollyhock|Sidalcea malviflora|mallow +siddhartha|1 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +siddons|1 +(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress +side|16 +(adj)|side |broadside|lateral|sidelong +(adj)|added +(noun)|region|part +(noun)|unit|social unit +(noun)|area|region +(noun)|surface +(noun)|face|surface +(noun)|line +(noun)|aspect|facet +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock +(noun)|side of meat|cut|cut of meat +(noun)|position|opinion|view +(noun)|slope|incline|geological formation|formation +(noun)|English|spin +(verb)|pull|root|back|endorse|indorse|plump for|plunk for|support +(verb)|go with|choose|take|select|pick out +side-blotched lizard|1 +(noun)|sand lizard|Uta stansburiana|iguanid|iguanid lizard +side-glance|1 +(noun)|side-look|glance|glimpse|coup d'oeil +side-look|1 +(noun)|side-glance|glance|glimpse|coup d'oeil +side-slip|1 +(verb)|skid|slip|slue|slew|slide +side-to-side|1 +(adj)|area|region +side-wheeler|1 +(noun)|paddle steamer|paddle-wheeler +side-whiskers|1 +(noun)|sideburn|burnside|mutton chop|beard|face fungus|whiskers +side arm|1 +(noun)|pistol|handgun|shooting iron|firearm|piece|small-arm +side by side|2 +(adj)|adjacent|next|close +(adj)|related |related to +side chair|1 +(noun)|straight chair|chair +side chapel|1 +(noun)|chapel +side dish|1 +(noun)|entremots|dish +side door|1 +(noun)|side entrance|exterior door|outside door +side drum|1 +(noun)|snare drum|snare|drum|membranophone|tympan +side effect|2 +(noun)|effect +(noun)|fallout|consequence|effect|outcome|result|event|issue|upshot +side entrance|1 +(noun)|side door|exterior door|outside door +side horse|1 +(noun)|pommel horse|horse +side judge|1 +(noun)|football official +side of bacon|1 +(noun)|flitch|bacon +side of beef|1 +(noun)|side|side of meat +side of meat|1 +(noun)|side|cut|cut of meat +side of pork|1 +(noun)|side|side of meat +side pocket|1 +(noun)|pocket +side road|1 +(noun)|road|route +side street|1 +(noun)|street +side view|1 +(noun)|view|aspect|prospect|scene|vista|panorama +side yard|1 +(noun)|yard|grounds|curtilage +sidearm|1 +(adj)|throw +sidebar|2 +(noun)|consultation +(noun)|news article|news story|newspaper article +sideboard|3 +(noun)|board +(noun)|board +(noun)|buffet|counter|furniture|piece of furniture|article of furniture +sideburn|1 +(noun)|burnside|mutton chop|side-whiskers|beard|face fungus|whiskers +sidecar|2 +(noun)|cocktail +(noun)|conveyance|transport +sidekick|1 +(noun)|buddy|brother|chum|crony|pal|friend +sidelight|1 +(noun)|running light|light|light source +sideline|3 +(noun)|out of bounds|line +(noun)|line|product line|line of products|line of merchandise|business line|line of business +(noun)|avocation|by-line|hobby|spare-time activity|pastime|interest|pursuit +sidelong|4 +(adj)|askance|askant|asquint|squint|squint-eyed|squinty|indirect +(adj)|lateral|side +(adj)|inclined +(adv)|sideways|obliquely +sidereal|2 +(adj)|natural object +(adj)|sidereal +sidereal day|1 +(noun)|day|time unit|unit of time|sidereal time +sidereal hour|1 +(noun)|hour|hr|60 minutes|sidereal time +sidereal month|1 +(noun)|month|sidereal time +sidereal time|1 +(noun)|cosmic time +sidereal year|1 +(noun)|year|sidereal time +siderite|2 +(noun)|chalybite|iron ore +(noun)|meteorite +sideritis|1 +(noun)|Sideritis|genus Sideritis|asterid dicot genus +sideroblast|1 +(noun)|erythroblast +sideroblastic anaemia|1 +(noun)|sideroblastic anemia|siderochrestic anemia|siderochrestic anaemia|refractory anemia|refractory anaemia +sideroblastic anemia|1 +(noun)|sideroblastic anaemia|siderochrestic anemia|siderochrestic anaemia|refractory anemia|refractory anaemia +siderochrestic anaemia|1 +(noun)|sideroblastic anemia|sideroblastic anaemia|siderochrestic anemia|refractory anemia|refractory anaemia +siderochrestic anemia|1 +(noun)|sideroblastic anemia|sideroblastic anaemia|siderochrestic anaemia|refractory anemia|refractory anaemia +siderocyte|1 +(noun)|red blood cell|RBC|erythrocyte +sideropenia|1 +(noun)|mineral deficiency +siderophilin|1 +(noun)|transferrin|beta globulin|globulin +siderosis|1 +(noun)|pneumoconiosis|pneumonoconiosis +sidesaddle|1 +(noun)|saddle +sideshow|2 +(noun)|incident +(noun)|show +sideslip|2 +(noun)|skid|slip|slide|glide|coast +(noun)|slip|flight maneuver|airplane maneuver +sidesman|1 +(noun)|assistant|helper|help|supporter +sidesplitter|1 +(noun)|belly laugh|howler|thigh-slapper|scream|wow|riot|joke|gag|laugh|jest|jape +sidesplitting|1 +(adj)|killing|humorous |humourous +sidesplittingly|1 +(adv)|killingly +sidestep|2 +(noun)|step +(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|avoid +sidestroke|1 +(noun)|swimming stroke +sideswipe|1 +(verb)|strike +sidetrack|2 +(noun)|siding|railroad siding|turnout|railroad track|railroad|railway +(verb)|depart|digress|straggle|deviate|divert +sidewalk|1 +(noun)|pavement|walk|walkway|paseo +sidewall|2 +(noun)|side +(noun)|wall +sideward|1 +(adv)|sidewards +sidewards|1 +(adv)|sideward +sideway|3 +(adv)|sideways|sidewise +(adv)|sideways|sidewise +(adv)|sideways|sidewise +sideways|5 +(adj)|crabwise|oblique +(adv)|sideway|sidewise +(adv)|sideway|sidewise +(adv)|sideway|sidewise +(adv)|sidelong|obliquely +sidewinder|2 +(noun)|horned rattlesnake|Crotalus cerastes|rattlesnake|rattler +(noun)|missile +sidewise|3 +(adv)|sideways|sideway +(adv)|sideways|sideway +(adv)|sideway|sideways +siding|2 +(noun)|railroad siding|turnout|sidetrack|railroad track|railroad|railway +(noun)|building material +sidle|2 +(verb)|move +(verb)|sashay|move +sidle up|1 +(verb)|cozy up|cotton up|shine up|play up|suck up|ingratiate +sidney|1 +(noun)|Sidney|Sir Philip Sidney|poet +sidney caesar|1 +(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian|comic +sidney james webb|1 +(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist|economist|economic expert +sidney poitier|1 +(noun)|Poitier|Sidney Poitier|actor|histrion|player|thespian|role player +sidney webb|1 +(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist|economist|economic expert +sidon|1 +(noun)|Saida|Sidon|city|metropolis|urban center +sidonie-gabrielle claudine colette|1 +(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer|author +sidonie-gabrielle colette|1 +(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer|author +sids|1 +(noun)|sudden infant death syndrome|SIDS|infant death|crib death|cot death|death|sleep apnea +siege|1 +(noun)|besieging|beleaguering|military blockade|blockade|encirclement +siege of orleans|1 +(noun)|Orleans|siege of Orleans|siege|besieging|beleaguering|military blockade +siege of syracuse|2 +(noun)|Syracuse|siege of Syracuse|siege|besieging|beleaguering|military blockade +(noun)|Syracuse|siege of Syracuse|siege|besieging|beleaguering|military blockade +siege of vicksburg|1 +(noun)|Vicksburg|siege of Vicksburg|siege|besieging|beleaguering|military blockade +siege perilous|1 +(noun)|Siege Perilous|seat +siegfried|1 +(noun)|Siegfried|mythical being +siegfried line|1 +(noun)|Siegfried line|fortification|munition +siemens|3 +(noun)|mho|reciprocal ohm|S|conductance unit +(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer|applied scientist|technologist +(noun)|Siemens|Ernst Werner von Siemens|electrical engineer +sienna|1 +(noun)|earth color +sierra|2 +(noun)|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Scomberomorus sierra|Spanish mackerel +sierra leone|1 +(noun)|Sierra Leone|Republic of Sierra Leone|African country|African nation +sierra leone monetary unit|1 +(noun)|Sierra Leone monetary unit|monetary unit +sierra leonean|1 +(noun)|Sierra Leonean|African +sierra leonian|2 +(adj)|Sierra Leonian|African country|African nation +(noun)|Sierra Leonian|African +sierra lodgepole pine|1 +(noun)|Sierra lodgepole pine|Pinus contorta murrayana|pine|pine tree|true pine +sierra madre occidental|1 +(noun)|Sierra Madre Occidental|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +sierra madre oriental|1 +(noun)|Sierra Madre Oriental|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +sierra nevada|2 +(noun)|Sierra Nevada|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +sierra nevada mountains|1 +(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +sierra plum|1 +(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum|plum tree +sierra redwood|1 +(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia|redwood +siesta|1 +(noun)|nap|catnap|cat sleep|forty winks|short sleep|snooze +sieur de lasalle|1 +(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer|adventurer +sieva bean|2 +(noun)|butter bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean|shell bean plant +(noun)|butter bean|butterbean|civet bean|shell bean +sieve|5 +(noun)|screen|strainer +(verb)|screen|screen out|sort|choose|take|select|pick out +(verb)|sift|analyze|analyse|study|examine|canvass|canvas +(verb)|sift|strain|separate|sieve out +(verb)|sift|choose|take|select|pick out +sieve out|1 +(verb)|pick over|choose|take|select|pick out +sieve tube|1 +(noun)|vascular tissue +sif|1 +(noun)|Sif|Norse deity +sift|4 +(verb)|travel|go|move|locomote +(verb)|sieve|strain|separate +(verb)|sieve|analyze|analyse|study|examine|canvass|canvas +(verb)|sieve|choose|take|select|pick out +sifter|1 +(noun)|sieve|screen +sifting|1 +(noun)|winnow|winnowing|separation +sigeh|1 +(noun)|marriage|matrimony|union|spousal relationship|wedlock +sigh|4 +(noun)|suspiration|utterance|vocalization +(noun)|sound +(verb)|suspire|breathe|take a breath|respire|suspire +(verb)|utter|emit|let out|let loose +sight|9 +(noun)|visual percept|visual image +(noun)|display +(noun)|vision|visual sense|visual modality|modality|sense modality|sensory system|exteroception +(noun)|optical instrument +(noun)|position|view|perspective +(noun)|ken|compass|range|reach|grasp +(noun)|view|survey|look|looking|looking at +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(verb)|perceive|comprehend +sight-read|3 +(verb)|sightread|perform +(verb)|perform|execute|do +(verb)| +sight-sing|2 +(verb)|sightsing|sightread|sight-read +(verb)| +sight bill|1 +(noun)|sight draft|draft|bill of exchange|order of payment +sight draft|1 +(noun)|sight bill|draft|bill of exchange|order of payment +sight gag|1 +(noun)|visual joke|joke|gag|laugh|jest|jape +sighted|1 +(adj)|sighted |argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|clear-sighted|seeing +sightedness|1 +(noun)|eyesight|seeing|sight|vision|visual sense|visual modality +sighting|1 +(noun)|observation|observance|watching +sightless|1 +(adj)|eyeless|unseeing|blind |unsighted +sightlessness|1 +(noun)|blindness|cecity|visual impairment|visual defect|vision defect|visual disorder +sightly|1 +(adj)|fair|beautiful +sightread|1 +(verb)|sight-read|perform +sightreader|1 +(noun)|performer|performing artist +sightsee|1 +(verb)|travel to|visit +sightseeing|1 +(noun)|rubber-necking|look|looking|looking at +sightseer|1 +(noun)|excursionist|tripper|rubberneck|tourist|tourer|holidaymaker +sightsing|1 +(verb)|sight-sing|sightread|sight-read +sigint|1 +(noun)|signals intelligence|SIGINT|intelligence|intelligence activity|intelligence operation +sigma|1 +(noun)|letter|letter of the alphabet|alphabetic character +sigmodon|1 +(noun)|Sigmodon|genus Sigmodon|mammal genus +sigmodon hispidus|1 +(noun)|cotton rat|Sigmodon hispidus|rodent|gnawer|gnawing animal +sigmoid|2 +(adj)|line +(adj)|sigmoidal|colon +sigmoid colon|1 +(noun)|sigmoid flexure|colon +sigmoid flexure|1 +(noun)|sigmoid colon|colon +sigmoid sinus|1 +(noun)|sinus sigmoideus|venous sinus|sinus +sigmoid vein|1 +(noun)|vena sigmoideus|vein|vena|venous blood vessel +sigmoidal|1 +(adj)|sigmoid|colon +sigmoidectomy|1 +(noun)|ablation|extirpation|cutting out|excision +sigmoidoscope|1 +(noun)|flexible sigmoidoscope|endoscope +sigmoidoscopy|1 +(noun)|flexible sigmoidoscopy|endoscopy +sigmund freud|1 +(noun)|Freud|Sigmund Freud|neurologist|brain doctor|analyst|psychoanalyst +sigmund romberg|1 +(noun)|Romberg|Sigmund Romberg|composer +sign|20 +(adj)|gestural|signed|sign-language|communicative |communicatory +(noun)|mark|clue|clew|cue +(noun)|communication +(noun)|signal|signaling|communication +(noun)|signboard|structure|construction +(noun)|sign of the zodiac|star sign|mansion|house|planetary house|region|part +(noun)|evidence|grounds +(noun)|polarity|opposition|oppositeness +(noun)|augury|foretoken|preindication|experience +(noun)|gesture|motion +(noun)|language unit|linguistic unit +(noun)|mathematical notation +(verb)|subscribe|write|sign in|sign away|sign over +(verb)|ratify|validate|formalize|formalise +(verb)|contract|undertake +(verb)|contract|sign on|sign up|hire|engage|employ +(verb)|signal|signalize|signalise|communicate|intercommunicate +(verb)|put|set|place|pose|position|lay +(verb)|communicate|intercommunicate +(verb)|bless|gesticulate|gesture|motion +sign-language|1 +(adj)|gestural|sign|signed|communicative |communicatory +sign away|1 +(verb)|sign over|surrender|cede|deliver|give up +sign in|1 +(verb)|check in|report +sign industry|1 +(noun)|industry +sign language|1 +(noun)|signing|language|linguistic communication +sign manual|1 +(noun)|signature +sign of the cross|1 +(noun)|gesture|motion +sign of the zodiac|1 +(noun)|star sign|sign|mansion|house|planetary house|region|part +sign off|1 +(verb)|discontinue|stop|cease|give up|quit|lay off +sign on|1 +(verb)|sign|contract|sign up|hire|engage|employ +sign over|1 +(verb)|sign away|surrender|cede|deliver|give up +sign painter|1 +(noun)|painter +sign up|2 +(verb)|sign|contract|sign on|hire|engage|employ +(verb)|join|fall in|get together +signage|1 +(noun)|collection|aggregation|accumulation|assemblage +signal|6 +(adj)|impressive +(noun)|signaling|sign|communication +(noun)|incitement|incitation|provocation +(noun)|electricity|electrical energy +(verb)|sign|signalize|signalise|communicate|intercommunicate +(verb)|bespeak|betoken|indicate|point|tell +signal-to-noise|1 +(noun)|signal-to-noise ratio|signal/noise ratio|signal/noise|S/N|ratio +signal-to-noise ratio|1 +(noun)|signal-to-noise|signal/noise ratio|signal/noise|S/N|ratio +signal/noise|1 +(noun)|signal-to-noise ratio|signal-to-noise|signal/noise ratio|S/N|ratio +signal/noise ratio|1 +(noun)|signal-to-noise ratio|signal-to-noise|signal/noise|S/N|ratio +signal box|1 +(noun)|building|edifice +signal caller|2 +(noun)|quarterback|field general|back +(noun)|quarterback|field general|back +signal detection|1 +(noun)|detection|reception +signal fire|1 +(noun)|signal light|beacon|beacon fire +signal flag|1 +(noun)|flag|visual signal +signal level|1 +(noun)|amplitude +signal light|1 +(noun)|signal fire|beacon|beacon fire +signaler|1 +(noun)|signaller|communicator +signaling|1 +(noun)|signal|sign|communication +signaling device|1 +(noun)|device +signalisation|1 +(noun)|signalization|indication|indicant +signalise|4 +(verb)|signalize|supply|provide|render|furnish +(verb)|sign|signal|signalize|communicate|intercommunicate +(verb)|signalize|point out|call attention|indicate|point|show +(verb)|signalize|distinguish|mark +signalization|1 +(noun)|signalisation|indication|indicant +signalize|4 +(verb)|signalise|supply|provide|render|furnish +(verb)|sign|signal|signalise|communicate|intercommunicate +(verb)|signalise|point out|call attention|indicate|point|show +(verb)|signalise|distinguish|mark +signaller|1 +(noun)|signaler|communicator +signally|1 +(adv)|unmistakably|remarkably +signalman|1 +(noun)|trainman|railroader|railroad man|railwayman|railway man|signaler|signaller +signals intelligence|1 +(noun)|SIGINT|intelligence|intelligence activity|intelligence operation +signatory|1 +(noun)|signer|person|individual|someone|somebody|mortal|human|soul +signature|5 +(noun)|name +(noun)|touch|manner|mode|style|way|fashion +(noun)|signature tune|theme song|tune|melody|air|strain|melodic line|line|melodic phrase +(noun)|key signature|musical notation +(noun)|sheet|piece of paper|sheet of paper +signature recognition|1 +(noun)|biometric identification|biometric authentication|identity verification +signature tune|1 +(noun)|signature|theme song|tune|melody|air|strain|melodic line|line|melodic phrase +signboard|1 +(noun)|sign|structure|construction +signed|2 +(adj)|signed |autographed|subscribed +(adj)|gestural|sign|sign-language|communicative |communicatory +signer|2 +(noun)|communicator +(noun)|signatory|person|individual|someone|somebody|mortal|human|soul +signet|1 +(noun)|seal|stamp +signet ring|1 +(noun)|seal ring|ring|band +significance|3 +(noun)|importance +(noun)|import|implication|meaning|substance +(noun)|meaning|signification|import|message|content|subject matter|substance +significant|4 +(adj)|significant |important|big|momentous|earthshaking|world-shaking|world-shattering|epochal|epoch-making|evidential|evidentiary|fundamental|profound|monumental|noteworthy|remarkable|probative|operative|key|portentous|prodigious|large|important|of import|meaningful +(adj)|substantial|considerable +(adj)|significant +(adj)|meaning|pregnant|meaningful +significant digit|1 +(noun)|significant figure|digit|figure +significant figure|1 +(noun)|significant digit|digit|figure +significant other|1 +(noun)|domestic partner|spousal equivalent|spouse equivalent|person|individual|someone|somebody|mortal|human|soul +significantly|1 +(adv)|importantly +signification|1 +(noun)|meaning|significance|import|message|content|subject matter|substance +significative|1 +(adj)|indicative|indicatory|revelatory|suggestive|revealing +signified|1 +(noun)|sense|meaning|significance|signification|import +signifier|1 +(noun)|form|word form|descriptor|word +signify|3 +(verb)|mean|intend|stand for +(verb)|mean|intend +(verb)|indicate +signing|1 +(noun)|sign language|language|linguistic communication +signior|1 +(noun)|signor|man|adult male +signor|1 +(noun)|signior|man|adult male +signora|1 +(noun)|wife|married woman +signore|2 +(noun)|man|adult male +(noun)|signora|wife|married woman +signorina|1 +(noun)|unmarried woman +signory|1 +(noun)|seigneury|seigniory|estate|land|landed estate|acres|demesne +signpost|2 +(noun)|guidepost|sign +(verb)|mark +sigrid undset|1 +(noun)|Undset|Sigrid Undset|writer|author +sigurd|1 +(noun)|Sigurd|mythical being +sigyn|1 +(noun)|Sigyn|Norse deity +sika|1 +(noun)|Japanese deer|Cervus nipon|Cervus sika|deer|cervid +sikh|2 +(adj)|Sikh|religion|faith|religious belief +(noun)|Sikh|disciple|adherent +sikhism|1 +(noun)|Sikhism|religion|faith|religious belief +sikkim|1 +(noun)|Sikkim|geographical area|geographic area|geographical region|geographic region +sikorsky|1 +(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist +silage|1 +(noun)|ensilage|feed|provender +sild|1 +(noun)|sardine +sildenafil|1 +(noun)|Viagra|virility drug|anit-impotence drug +silence|6 +(noun)|condition|status +(noun)|quiet|sound property +(noun)|muteness|uncommunicativeness +(noun)|secrecy|secretiveness|uncommunicativeness +(verb)|hush|quieten|still|shut up|hush up|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|suppress|stamp down|inhibit|subdue|conquer|curb +silenced|1 +(adj)|silenced |suppressed +silencer|2 +(noun)|tube|tubing +(noun)|muffler|acoustic device +silene|1 +(noun)|campion|catchfly|flower +silene acaulis|1 +(noun)|moss campion|Silene acaulis|silene|campion|catchfly +silene caroliniana|1 +(noun)|wild pink|Silene caroliniana|silene|campion|catchfly +silene dioica|1 +(noun)|red campion|red bird's eye|Silene dioica|Lychnis dioica|silene|campion|catchfly +silene latifolia|1 +(noun)|white campion|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene|campion|catchfly +silene uniflora|1 +(noun)|bladder campion|Silene uniflora|Silene vulgaris|silene|campion|catchfly +silene virginica|1 +(noun)|fire pink|Silene virginica|silene|campion|catchfly +silene vulgaris|1 +(noun)|bladder campion|Silene uniflora|Silene vulgaris|silene|campion|catchfly +silent|6 +(adj)|soundless|still|quiet +(adj)|mum|uncommunicative |incommunicative +(adj)|implied|tacit|understood|implicit |inexplicit +(adj)|unsounded|inaudible |unhearable +(adj)|inaudible |unhearable +(adj)|dumb|mute|inarticulate |unarticulate +silent butler|1 +(noun)|receptacle +silent movie|1 +(noun)|silent picture|silents|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +silent partner|1 +(noun)|sleeping partner|partner +silent person|1 +(noun)|dummy|mute|deaf-mute|deaf-and-dumb person +silent picture|1 +(noun)|silent movie|silents|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +silent treatment|1 +(noun)|rebuff|slight +silently|1 +(adv)|mutely|wordlessly|taciturnly +silents|1 +(noun)|silent movie|silent picture|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +silenus|2 +(noun)|Greek deity +(noun)|Silenus|satyr|forest god +silesia|2 +(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area|geographic area|geographical region|geographic region +(noun)|fabric|cloth|material|textile +silex|2 +(noun)|silica|silicon oxide|silicon dioxide +(noun)|Silex|coffee maker +silhouette|4 +(noun)|outline|lineation +(noun)|drawing +(verb)|project +(verb)|represent|interpret +silica|1 +(noun)|silicon oxide|silicon dioxide|oxide +silica gel|1 +(noun)|colloid +silicate|1 +(noun)|salt +siliceous|1 +(adj)|silicious|oxide +silicic acid|1 +(noun)|acid +silicide|1 +(noun)|compound|chemical compound +silicious|1 +(adj)|siliceous|oxide +silicle|1 +(noun)|silique|siliqua +silicon|1 +(noun)|Si|atomic number 14|chemical element|element|semiconductor|semiconducting material +silicon bronze|1 +(noun)|bronze +silicon carbide|1 +(noun)|carbide +silicon chip|1 +(noun)|chip|microchip|micro chip|semiconductor device|semiconductor unit|semiconductor +silicon dioxide|1 +(noun)|silica|silicon oxide|oxide +silicon oxide|1 +(noun)|silica|silicon dioxide|oxide +silicon valley|1 +(noun)|Silicon Valley|geographical area|geographic area|geographical region|geographic region +silicone|1 +(noun)|silicone polymer|siloxane|polymer +silicone polymer|1 +(noun)|silicone|siloxane|polymer +silicone resin|1 +(noun)|plastic +silicone rubber|1 +(noun)|synthetic rubber +silicosis|1 +(noun)|pneumoconiosis|pneumonoconiosis +siliqua|1 +(noun)|silique|capsule +silique|1 +(noun)|siliqua|capsule +silk|2 +(noun)|fabric|cloth|material|textile +(noun)|animal fiber|animal fibre +silk-cotton tree|1 +(noun)|kapok|ceiba tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +silk cotton|1 +(noun)|kapok|vegetable silk|plant fiber|plant fibre +silk gland|1 +(noun)|serictery|sericterium|gland|secretory organ|secretor|secreter +silk grass|2 +(noun)|mountain rice|silkgrass|Indian millet|Oryzopsis hymenoides|ricegrass|rice grass +(noun)| +silk hat|1 +(noun)|dress hat|high hat|opera hat|stovepipe|top hat|topper|beaver|hat|chapeau|lid +silk oak|1 +(noun)|grevillea +silk road|1 +(noun)|Silk Road|trade route +silk screen print|1 +(noun)|silkscreen|serigraph|print +silk stocking|1 +(noun)|nylons|nylon stocking|rayons|rayon stocking|stocking +silk tree|1 +(noun)|Albizia julibrissin|Albizzia julibrissin|albizzia|albizia +silk vine|1 +(noun)|Periploca graeca|vine +silk wood|2 +(noun)|Jamaican cherry|calabur tree|calabura|silkwood|Muntingia calabura|tree +(noun)| +silken|1 +(adj)|glossy|satiny|sleek|silky|silklike|slick|smooth +silkgrass|1 +(noun)|mountain rice|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass|rice grass +silkiness|1 +(noun)|sleekness|smoothness +silklike|1 +(adj)|glossy|satiny|sleek|silken|silky|slick|smooth +silks|3 +(noun)|garment +(noun)|silk|fabric|cloth|material|textile +(noun)|silk|animal fiber|animal fibre +silkscreen|2 +(noun)|silk screen print|serigraph|print +(verb)|print +silkweed|1 +(noun)|milkweed|herb|herbaceous plant +silkwood|1 +(noun)|Jamaican cherry|calabur tree|calabura|silk wood|Muntingia calabura|tree +silkworm|2 +(noun)|caterpillar +(noun)|giant silkworm|wild wilkworm|caterpillar +silkworm moth|2 +(noun)|giant silkworm moth|saturniid|saturniid moth +(noun)|bombycid|bombycid moth|moth +silkworm seed|1 +(noun)|egg +silky|1 +(adj)|glossy|satiny|sleek|silken|silklike|slick|smooth +silky anteater|1 +(noun)|two-toed anteater|Cyclopes didactylus|anteater|New World anteater +silky cornel|1 +(noun)|silky dogwood|Cornus amomum|dogwood|dogwood tree|cornel +silky dogwood|2 +(noun)|silky cornel|Cornus amomum|dogwood|dogwood tree|cornel +(noun)|Cornus obliqua|dogwood|dogwood tree|cornel +silky elm|1 +(noun)|red beech|brown oak|booyong|crow's foot|stave wood|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +silky oak|1 +(noun)|Grevillea robusta|silk oak +silky pocket mouse|1 +(noun)|Perognathus flavus|pocket mouse +silky tamarin|1 +(noun)|Leontocebus rosalia|tamarin|lion monkey|lion marmoset|leoncita +silky terrier|1 +(noun)|Sydney silky|terrier +silky willow|2 +(noun)|Sitka willow|Salix sitchensis|willow|willow tree +(noun)|silver willow|Salix alba sericea|Salix sericea|willow|willow tree +silky wisteria|1 +(noun)|Wisteria venusta|wisteria|wistaria +sill|2 +(noun)|structural member +(noun)|rock|stone +sillabub|2 +(noun)|syllabub|drink +(noun)|syllabub|dessert|sweet|afters +sillaginidae|1 +(noun)|Sillaginidae|family Sillaginidae|fish family +sillago|1 +(noun)|Sillago|genus Sillago|fish genus +silliness|2 +(noun)|absurdity|fatuity|fatuousness|folly|foolishness|unwiseness +(noun)|giddiness|frivolity|frivolousness +sills|3 +(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano +(noun)|sill|structural member +(noun)|sill|rock|stone +silly|5 +(adj)|cockamamie|cockamamy|goofy|sappy|wacky|whacky|zany|unreasonable|foolish +(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|light-headed|lightheaded|frivolous +(adj)|pathetic|ridiculous|undignified +(adj)|punch-drunk|slaphappy|confused +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +silly season|1 +(noun)|time period|period of time|period +silo|2 +(noun)|tower +(noun)|military installation +siloxane|1 +(noun)|compound|chemical compound +silphium|1 +(noun)|Silphium|genus Silphium|asterid dicot genus +silphium laciniatum|1 +(noun)|rosinweed|Silphium laciniatum|compass plant|compass flower +silt|2 +(noun)|soil|dirt +(verb)|silt up|clog|choke off|clog up|back up|congest|choke|foul +silt up|1 +(verb)|silt|clog|choke off|clog up|back up|congest|choke|foul +siltstone|1 +(noun)|sandstone +silty|1 +(adj)|loose +silurian|1 +(noun)|Silurian|Silurian period|period|geological period +silurian period|1 +(noun)|Silurian|Silurian period|period|geological period +silurid|1 +(noun)|silurid fish|catfish|siluriform fish +silurid fish|1 +(noun)|silurid|catfish|siluriform fish +siluridae|1 +(noun)|Siluridae|family Siluridae|fish family +siluriform fish|1 +(noun)|catfish|soft-finned fish|malacopterygian +siluriformes|1 +(noun)|Siluriformes|order Siluriformes|animal order +silurus|1 +(noun)|Silurus|genus Silurus|fish genus +silurus glanis|1 +(noun)|European catfish|sheatfish|Silurus glanis|silurid|silurid fish +silva|1 +(noun)|sylva|forest|woodland|timberland|timber +silvan|2 +(adj)|sylvan|wooded +(noun)|sylvan|spirit|disembodied spirit +silvanus|1 +(noun)|Sylvanus|Silvanus|Roman deity +silver|12 +(adj)|metallic +(adj)|silvern|silvery|bright +(adj)|argent|silvery|silverish|achromatic +(adj)|eloquent|facile|fluent|silver-tongued|smooth-spoken|articulate +(noun)|Ag|atomic number 47|noble metal|conductor +(noun)|precious metal +(noun)|ash gray|ash grey|silver gray|silver grey|gray|grayness|grey|greyness +(noun)|flatware|silverware +(noun)|silver medal|trophy|prize|decoration|laurel wreath|medal|medallion|palm|ribbon +(verb)|plate +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|discolor|discolour|colour|color +silver-bell tree|1 +(noun)|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell +silver-bush|3 +(noun)|Jupiter's beard|silverbush|Anthyllis barba-jovis|shrub|bush +(noun)|silverberry|silver berry|silverbush|Elaeagnus commutata|oleaster +(noun)| +silver-lace|2 +(noun)|dusty miller|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite|composite plant +(noun)| +silver-leaved nettle|1 +(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|Solanum elaeagnifolium|nightshade +silver-leaved nightshade|1 +(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +silver-leaved poplar|1 +(noun)|white poplar|white aspen|abele|aspen poplar|Populus alba|poplar|poplar tree +silver-plate|2 +(verb)|silverplate|plate +(verb)| +silver-tip|2 +(noun)|grizzly|grizzly bear|silvertip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +(noun)| +silver-tongued|1 +(adj)|eloquent|facile|fluent|silver|smooth-spoken|articulate +silver-worker|2 +(noun)|silversmith|silverworker|jewelry maker|jeweler|jeweller +(noun)| +silver age|1 +(noun)|time period|period of time|period +silver ash|1 +(noun)|tree +silver beech|1 +(noun)|Nothofagus menziesii|New Zealand beech +silver bell|1 +(noun)|angiospermous tree|flowering tree +silver berry|3 +(noun)|Russian olive|Elaeagnus augustifolia|oleaster +(noun)|silverberry|silverbush|silver-bush|Elaeagnus commutata|oleaster +(noun)| +silver birch|1 +(noun)|common birch|European white birch|Betula pendula|birch|birch tree +silver bromide|1 +(noun)|bromide +silver bullet|1 +(noun)|solution +silver certificate|1 +(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +silver chloride|1 +(noun)|chloride +silver city|1 +(noun)|Silver City|town +silver cord|1 +(noun)|alliance|bond +silver dollar|2 +(noun)|cartwheel|dollar +(noun)|honesty|money plant|satin flower|satinpod|Lunaria annua|herb|herbaceous plant +silver fern|2 +(noun)|Pityrogramma calomelanos|fern +(noun)|Pityrogramma argentea|fern +silver fir|1 +(noun)|fir|fir tree|true fir +silver fox|1 +(noun)|red fox|Vulpes vulpes +silver grass|1 +(noun)|grass +silver gray|1 +(noun)|ash gray|ash grey|silver|silver grey|gray|grayness|grey|greyness +silver grey|1 +(noun)|ash gray|ash grey|silver|silver gray|gray|grayness|grey|greyness +silver hake|1 +(noun)|Merluccius bilinearis|whiting|hake +silver iodide|1 +(noun)|iodide +silver jenny|1 +(noun)|Eucinostomus gula|mojarra +silver jubilee|1 +(noun)|jubilee +silver lace|2 +(noun)|dusty miller|silver-lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite|composite plant +(noun)| +silver lace vine|1 +(noun)|China fleece vine|Russian vine|Polygonum aubertii|vine +silver lime|1 +(noun)|silver linden|Tilia tomentosa|linden|linden tree|basswood|lime|lime tree +silver linden|1 +(noun)|silver lime|Tilia tomentosa|linden|linden tree|basswood|lime|lime tree +silver lining|1 +(noun)|bright side|consolation|solace|solacement +silver maple|1 +(noun)|Acer saccharinum|maple +silver medal|1 +(noun)|silver|trophy|prize|decoration|laurel wreath|medal|medallion|palm|ribbon +silver mine|1 +(noun)|mine +silver nitrate|1 +(noun)|nitrate|caustic +silver oak|1 +(noun)|Grevillela parallela|silk oak +silver perch|2 +(noun)|mademoiselle|Bairdiella chrysoura|drum|drumfish +(noun)|white perch|Morone americana|serranid fish|serranid +silver pine|2 +(noun)|westland pine|Lagarostrobus colensoi|conifer|coniferous tree +(noun)|western white pine|mountain pine|Pinus monticola|white pine +silver plate|2 +(noun)|tableware +(noun)|plating|metal plating +silver protein|1 +(noun)|colloid +silver quandong|1 +(noun)|wood +silver quandong tree|1 +(noun)|quandong|quandong tree|Brisbane quandong|blue fig|Elaeocarpus grandis|tree +silver sage|1 +(noun)|silver sagebrush|gray sage|Seriphidium canum|Artemisia cana|sagebrush|sage brush +silver sagebrush|1 +(noun)|silver sage|gray sage|Seriphidium canum|Artemisia cana|sagebrush|sage brush +silver salmon|2 +(noun)|coho salmon|coho|cohoe|salmon +(noun)|coho|cohoe|coho salmon|blue jack|Onchorynchus kisutch|salmon +silver screen|2 +(noun)|film|cinema|celluloid +(noun)|screen|projection screen|surface +silver solder|1 +(noun)|solder +silver spoon|1 +(noun)|old money|inherited wealth +silver spruce|1 +(noun)|Colorado spruce|Colorado blue spruce|Picea pungens|spruce +silver standard|1 +(noun)|standard|monetary standard +silver star|1 +(noun)|Silver Star Medal|Silver Star|decoration|laurel wreath|medal|medallion|palm|ribbon +silver star medal|1 +(noun)|Silver Star Medal|Silver Star|decoration|laurel wreath|medal|medallion|palm|ribbon +silver state|1 +(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state +silver storm|1 +(noun)|ice storm|storm|violent storm +silver thatch|2 +(noun)|key palm|silvertop palmetto|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +(noun)|thatch palm|thatch tree|broom palm|Thrinax parviflora|fan palm +silver tree|2 +(noun)|Leucadendron argenteum|tree +(noun)|Tarrietia argyrodendron|tree +silver tree fern|1 +(noun)|sago fern|black tree fern|Cyathea medullaris|tree fern +silver vine|2 +(noun)|silvervine|Actinidia polygama|vine +(noun)| +silver wattle|1 +(noun)|mimosa|Acacia dealbata|acacia +silver wedding anniversary|1 +(noun)|wedding anniversary +silver whiting|1 +(noun)|Menticirrhus littoralis|whiting +silver willow|1 +(noun)|silky willow|Salix alba sericea|Salix sericea|willow|willow tree +silverback|1 +(noun)|gorilla|Gorilla gorilla +silverbell tree|1 +(noun)|silver-bell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell +silverberry|1 +(noun)|silver berry|silverbush|silver-bush|Elaeagnus commutata|oleaster +silverbush|2 +(noun)|Jupiter's beard|silver-bush|Anthyllis barba-jovis|shrub|bush +(noun)|silverberry|silver berry|silver-bush|Elaeagnus commutata|oleaster +silverfish|2 +(noun)|Lepisma saccharina|thysanuran insect|thysanuron +(noun)|goldfish|Carassius auratus +silverish|1 +(adj)|argent|silver|silvery|achromatic +silverleaf nightshade|1 +(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +silvern|2 +(adj)|silvery|euphonious |euphonous +(adj)|silver|silvery|bright +silverplate|1 +(verb)|silver-plate|plate +silverpoint|1 +(noun)|drawing +silverrod|1 +(noun)|Solidago bicolor|goldenrod +silverside|1 +(noun)|silversides|spiny-finned fish|acanthopterygian +silversides|3 +(noun)|silverside|spiny-finned fish|acanthopterygian +(noun)|common shiner|Notropis cornutus|shiner +(noun)|silverside|spiny-finned fish|acanthopterygian +silversmith|1 +(noun)|silverworker|silver-worker|jewelry maker|jeweler|jeweller +silverspot|1 +(noun)|fritillary +silverstein|1 +(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet|cartoonist +silversword|1 +(noun)|Argyroxiphium sandwicense|shrub|bush +silvertip|1 +(noun)|grizzly|grizzly bear|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +silvertop palmetto|1 +(noun)|key palm|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +silvervine|1 +(noun)|silver vine|Actinidia polygama|vine +silverware|1 +(noun)|tableware +silverweed|2 +(noun)|vine +(noun)|goose-tansy|goose grass|Potentilla anserina|cinquefoil|five-finger +silverwork|1 +(noun)|work|piece of work +silverworker|1 +(noun)|silversmith|silver-worker|jewelry maker|jeweler|jeweller +silvery|3 +(adj)|argent|silver|silverish|achromatic +(adj)|silvern|euphonious |euphonous +(adj)|silver|silvern|bright +silvery spleenwort|2 +(noun)|Deparia acrostichoides|Athyrium thelypteroides|fern +(noun)|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern +silvery wormwood|1 +(noun)|sand sage|Artemisia filifolia|sagebrush|sage brush +silvex|1 +(noun)|herbicide|weedkiller|weed killer +silvia|1 +(noun)|Silvia|genus Silvia|bird genus +silvia atricapilla|1 +(noun)|blackcap|Silvia atricapilla|Old World warbler|true warbler +silviculture|1 +(noun)|forestry +silybum|1 +(noun)|Silybum|genus Silybum|asterid dicot genus +silybum marianum|1 +(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb|herbaceous plant +sima|1 +(noun)|rock|stone +simal|1 +(noun)|red silk-cotton tree|Bombax ceiba|Bombax malabarica|tree +simarouba|1 +(noun)|Simarouba|genus Simarouba|rosid dicot genus +simarouba amara|1 +(noun)|marupa|Simarouba amara|bitterwood tree +simarouba glauca|1 +(noun)|paradise tree|bitterwood|Simarouba glauca|bitterwood tree +simaroubaceae|1 +(noun)|Simaroubaceae|family Simaroubaceae|quassia family|rosid dicot family +simazine|1 +(noun)|herbicide|weedkiller|weed killer +simchas torah|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +simchat torah|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +simenon|1 +(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer|author +simeon|1 +(noun)|Simeon|patriarch +simhat torah|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +simhath torah|1 +(noun)|Shimchath Torah|Simchat Torah|Simhath Torah|Simhat Torah|Simchas Torah|Rejoicing over the Law|Rejoicing of the Law|Rejoicing in the Law|Jewish holy day +simian|2 +(adj)|primate +(noun)|primate +similar|5 +(adj)|similar |akin|kindred|related|analogous|correspondent|confusable|connatural|corresponding|quasi|siamese|twin|same +(adj)|alike |like +(adj)|like |like-minded|look-alike|suchlike|same +(adj)|synonymous +(adj)|exchangeable|interchangeable|standardized|standardised|replaceable +similarity|2 +(noun)|sameness +(noun)|law of similarity|Gestalt law of organization|Gestalt principle of organization +similarly|1 +(adv)|likewise +simile|1 +(noun)|trope|figure of speech|figure|image +similitude|2 +(noun)|likeness|alikeness|similarity +(noun)|counterpart|twin|duplicate|duplication +simmer|2 +(noun)|temperature +(verb)|boil +simmer down|1 +(verb)|calm|calm down|cool off|chill out|settle down|cool it|change state|turn +simmering|1 +(noun)|boiling|stewing|cooking|cookery|preparation +simnel|2 +(noun)|bread|breadstuff|staff of life +(noun)|fruitcake +simoleons|1 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|sugar|wampum|money +simon|4 +(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle|saint +(noun)|Simon|Paul Simon|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist|playwright +(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist|economic expert|psychologist +simon bolivar|1 +(noun)|Bolivar|Simon Bolivar|El Libertador|general|full general|statesman|solon|national leader +simon de montfort|1 +(noun)|Montfort|Simon de Montfort|Earl of Leicester|Earl +simon kuznets|1 +(noun)|Kuznets|Simon Kuznets|economist|economic expert +simon legree|2 +(noun)|slave driver|Simon Legree|employer +(noun)|Simon Legree|fictional character|fictitious character|character +simon marks|1 +(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman|man of affairs +simon newcomb|1 +(noun)|Newcomb|Simon Newcomb|astronomer|uranologist|stargazer +simon peter|1 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +simon the canaanite|1 +(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle|saint +simon the zealot|1 +(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle|saint +simon zelotes|1 +(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle|saint +simone de beauvoir|1 +(noun)|Beauvoir|Simone de Beauvoir|feminist|women's rightist|women's liberationist|libber|existentialist +simone weil|1 +(noun)|Weil|Simone Weil|philosopher +simonise|1 +(verb)|Simonize|Simonise|polish|smooth|smoothen|shine +simoniz|1 +(noun)|Simoniz|polish +simonize|1 +(verb)|Simonize|Simonise|polish|smooth|smoothen|shine +simony|1 +(noun)|traffic +simoom|1 +(noun)|simoon|samiel|wind|air current|current of air +simoon|1 +(noun)|simoom|samiel|wind|air current|current of air +simper|1 +(verb)|smirk|smile +simperer|1 +(noun)|smiler +simperingly|1 +(adv)|pusillanimously +simple|9 +(adj)|simple |elemental|ultimate|oversimplified|simplistic|simplex|simplified|unanalyzable|undecomposable|uncomplicated|unsophisticated|easy|plain|unsubdivided +(adj)|elementary|uncomplicated|unproblematic|easy +(adj)|bare|mere|plain +(adj)|childlike|wide-eyed|dewy-eyed|naive |naif +(adj)|dim-witted|half-witted|simple-minded|retarded +(adj)|simple |unsubdivided|unlobed|smooth +(adj)|plain +(noun)|herb|herbaceous plant +(noun)|simpleton|person|individual|someone|somebody|mortal|human|soul +simple-minded|2 +(adj)|naive |naif +(adj)|dim-witted|half-witted|simple|retarded +simple absence|1 +(noun)|pure absence|petit mal epilepsy|absence +simple closed curve|1 +(noun)|Jordan curve|closed curve +simple eye|1 +(noun)|stemma|ocellus|eye|oculus|optic +simple fraction|1 +(noun)|common fraction|fraction +simple fracture|1 +(noun)|closed fracture|fracture|break +simple fruit|1 +(noun)|bacca|berry +simple harmonic motion|1 +(noun)|harmonic motion +simple interest|1 +(noun)|interest +simple leaf|1 +(noun)|leaf|leafage|foliage +simple machine|1 +(noun)|machine|mechanical device +simple mastectomy|1 +(noun)|mastectomy +simple microscope|1 +(noun)|hand glass|magnifying glass|light microscope +simple mindedness|1 +(noun)|simplicity|naivete|naivety|naiveness +simple pendulum|1 +(noun)|pendulum +simple phobia|1 +(noun)|phobia|phobic disorder|phobic neurosis +simple pistil|1 +(noun)|pistil +simple protein|1 +(noun)|protein +simple regression|1 +(noun)|regression|regression toward the mean|statistical regression|statistical method|statistical procedure +simple sentence|1 +(noun)|sentence +simple sugar|1 +(noun)|monosaccharide|monosaccharose|carbohydrate|saccharide|sugar +simpleness|1 +(noun)|simplicity|quality +simpleton|1 +(noun)|simple|person|individual|someone|somebody|mortal|human|soul +simplex|2 +(adj)|unidirectional +(adj)|simple +simplicity|5 +(noun)|simpleness|quality +(noun)|simple mindedness|naivete|naivety|naiveness +(noun)|naturalness +(noun)|ease|easiness|quality +(noun)|chasteness|restraint|plainness +simplification|3 +(noun)|explanation|account +(noun)|elimination|riddance +(noun)|reduction|change +simplified|2 +(adj)|easy +(adj)|simple +simplify|1 +(verb)|change|alter|modify +simplistic|1 +(adj)|oversimplified|simple +simply|3 +(adv)|merely|just|only|but +(adv)|plainly +(adv)|just +simpson|2 +(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee|grass widow +(noun)|Simpson|Sir James Young Simpson|doctor|doc|physician|MD|Dr.|medico +simpson desert|1 +(noun)|Simpson Desert|desert +simulacrum|2 +(noun)|semblance|gloss|color|colour +(noun)|effigy|image|representation +simulate|3 +(verb)|imitate|copy|reproduce +(verb)|model|re-create +(verb)|assume|sham|feign|dissemble|pretend|act +simulated|2 +(adj)|fake|false|faux|imitation|artificial |unreal +(adj)|imitative +simulated military operation|1 +(noun)|maneuver|manoeuvre|operation|military operation +simulation|4 +(noun)|computer simulation|technique|model|theoretical account|framework +(noun)|model|modelling|modeling +(noun)|model|representation +(noun)|pretense|pretence|pretending|feigning|deception|deceit|dissembling|dissimulation +simulative electronic deception|1 +(noun)|electronic simulative deception|electronic deception +simulator|1 +(noun)|machine +simulcast|1 +(noun)|broadcast +simuliidae|1 +(noun)|Simuliidae|family Simuliidae|arthropod family +simulium|1 +(noun)|Simulium|genus Simulium|arthropod genus +simultaneity|1 +(noun)|simultaneousness|timing +simultaneous|1 +(adj)|coincident|coincidental|coinciding|concurrent|cooccurring|synchronous |synchronal|synchronic +simultaneous equations|1 +(noun)|equation +simultaneous operation|1 +(noun)|parallel operation|operation +simultaneously|1 +(adv)|at the same time +simultaneousness|1 +(noun)|simultaneity|timing +simvastatin|1 +(noun)|Zocor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +sin|8 +(noun)|sinfulness|wickedness|unrighteousness +(noun)|sinning|transgression|evildoing +(noun)|sine|trigonometric function|circular function +(noun)|Sin|Semitic deity +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|hell|activity +(verb)|transgress|trespass|transgress|offend|infract|violate|go against|breach|break +(verb)|blunder|boob|goof|transgress|offend|infract|violate|go against|breach|break +sinai|3 +(noun)|Sinai|Mount Sinai|mountain peak +(noun)|Sinai|Sinai Desert|desert +(noun)|Sinai|Sinai Peninsula|peninsula +sinai desert|1 +(noun)|Sinai|Sinai Desert|desert +sinai peninsula|1 +(noun)|Sinai|Sinai Peninsula|peninsula +sinanthropus|1 +(noun)|Sinanthropus|genus Sinanthropus|hominid +sinapis|1 +(noun)|Sinapis|genus Sinapis|dilleniid dicot genus +sinapis alba|1 +(noun)|white mustard|Brassica hirta|Sinapis alba|mustard +sinapis arvensis|1 +(noun)|field mustard|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard +sinapism|1 +(noun)|mustard plaster|poultice|cataplasm|plaster +sinatra|1 +(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner|balladeer|actor|histrion|player|thespian|role player +sinbad|1 +(noun)|Sinbad the Sailor|Sinbad|fictional character|fictitious character|character +sinbad the sailor|1 +(noun)|Sinbad the Sailor|Sinbad|fictional character|fictitious character|character +since a long time ago|1 +(adv)|from way back +sincere|2 +(adj)|sincere |bona fide|cordial|fervent|dear|devout|earnest|heartfelt|honest|genuine|true|unfeigned|heart-whole|wholehearted|whole-souled|genuine|echt|honest|honorable|ingenuous|artless|real|existent|true +(adj)|earnest|in earnest|solemn|serious +sincerely|2 +(adv)|unfeignedly|truly +(adv)|sincerely yours +sincerely yours|1 +(adv)|sincerely +sincerity|4 +(noun)|earnestness|seriousness|gravity|solemnity +(noun)|truthfulness +(noun)|unassumingness|naturalness +(noun)|seriousness|earnestness|serious-mindedness|trait +sinciput|1 +(noun)|bone|os +sinclair|2 +(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer|author +(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer|entrepreneur|enterpriser +sinclair lewis|1 +(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer|author +sindhi|1 +(noun)|Sindhi|Sanskrit|Sanskritic language +sine|1 +(noun)|sin|trigonometric function|circular function +sine curve|1 +(noun)|sinusoid|wave|undulation +sine qua non|1 +(noun)|essential condition|prerequisite|requirement +sine wave|1 +(noun)|wave|undulation +sinecure|2 +(noun)|benefice|ecclesiastical benefice +(noun)|position|post|berth|office|spot|billet|place|situation +sinequan|1 +(noun)|doxepin|doxepin hydrochloride|Adapin|Sinequan|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +sinew|2 +(noun)|tendon|connective tissue +(noun)|brawn|muscle|strength +sinewy|3 +(adj)|fibrous|stringy|unchewable|tough +(adj)|tendinous|connective tissue +(adj)|brawny|hefty|muscular|powerful|strong +sinful|2 +(adj)|iniquitous|ungodly|wicked +(adj)|unholy|wicked|unrighteous +sinfulness|1 +(noun)|sin|wickedness|unrighteousness +sing|5 +(verb)|interpret|render +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|utter|emit|let out|let loose +(verb)|whistle|sound|go +(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +sing-kwa|1 +(noun)|angled loofah|Luffa acutangula|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +sing along|1 +(verb)|sing +singable|1 +(adj)|musical +singalong|1 +(noun)|singsong|singing|vocalizing +singan|1 +(noun)|Xian|Sian|Singan|Changan|Hsian|city|metropolis|urban center +singapore|3 +(noun)|Singapore|capital of Singapore|national capital +(noun)|Singapore|Republic of Singapore|Asian country|Asian nation +(noun)|Singapore|island +singapore dollar|1 +(noun)|Singapore dollar|dollar +singaporean|3 +(adj)|Singaporean|Asian country|Asian nation|island +(adj)|Singaporean|national capital +(noun)|Singaporean|Asian|Asiatic +singe|3 +(noun)|scorch|burn +(verb)|swinge|char|blacken|scorch +(verb)|scorch|sear|burn|combust +singer|3 +(noun)|vocalist|vocalizer|vocaliser|musician|instrumentalist|player +(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor|discoverer|artificer|manufacturer|producer +(noun)|Singer|Isaac Bashevis Singer|writer|author +singhalese|4 +(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language +(adj)|Singhalese|Sinhalese|Asian|Asiatic +(noun)|Sinhalese|Singhalese|Asian|Asiatic +(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit|Sanskritic language +singing|3 +(adj)|cantabile|melodious |melodic|musical +(noun)|vocalizing|vocal music|musical performance +(noun)|tattle|telling|disclosure|revelation|revealing +singing voice|1 +(noun)|voice|vocalization|vocalisation|phonation|vox +single|11 +(adj)|single |azygous|azygos|one|one-man|one-person|one-woman|lone|lonesome|only|sole|solitary|one|singular|unique|sui generis|unary|uninominal|one-member +(adj)|single +(adj)|unmarried |divorced|mateless|unwed|unwedded|widowed|unmated +(adj)|individual|separate|unshared +(adj)|uniform |unvarying +(adj)|undivided|exclusive|concentrated +(adj)|individual +(adj)|separate|individual +(noun)|base hit|safety|bingle +(noun)|one|1|I|ace|unity|digit|figure +(verb)|hit +single-barreled|1 +(adj)|single-barreled |single-barrelled +single-barrelled|1 +(adj)|single-barreled +single-bedded|1 +(adj)|bedded +single-breasted|1 +(adj)|single-breasted +single-breasted jacket|1 +(noun)|jacket +single-breasted suit|1 +(noun)|suit|suit of clothes +single-celled|1 +(adj)|one-celled|noncellular |acellular +single-channel|1 +(adj)|mono|monophonic|monaural +single-entry bookkeeping|1 +(noun)|single entry|bookkeeping|clerking +single-foot|2 +(noun)|rack|gait +(verb)|rack|pace +single-handed|3 +(adj)|unassisted|unbacked|unsupported +(adj)|independent +(adv)|single-handedly +single-handedly|1 +(adv)|single-handed +single-lane|1 +(adj)|single-lane +single-leaf|1 +(noun)|single-leaf pine|single-leaf pinyon|Pinus monophylla|nut pine +single-leaf pine|1 +(noun)|single-leaf|single-leaf pinyon|Pinus monophylla|nut pine +single-leaf pinyon|1 +(noun)|single-leaf|single-leaf pine|Pinus monophylla|nut pine +single-member system|1 +(noun)|uninominal system|uninominal voting system|scrutin uninomial system|scrutin uninominal voting system|voting system|electoral system +single-minded|1 +(adj)|resolved|resolute +single-mindedness|1 +(noun)|resoluteness|firmness|resolve|resolution +single-propeller plane|1 +(noun)|single prop|propeller plane +single-reed instrument|1 +(noun)|single-reed woodwind|beating-reed instrument|reed +single-reed woodwind|1 +(noun)|single-reed instrument|beating-reed instrument|reed +single-rotor helicopter|1 +(noun)|helicopter|chopper|whirlybird|eggbeater +single-shelled|1 +(adj)|univalve +single-spaced|1 +(adj)|spaced +single-spacing|1 +(noun)|typing|typewriting +single-stranded|1 +(adj)|fiber|fibre +single bed|1 +(noun)|bed +single cream|1 +(noun)|light cream|coffee cream|cream +single crochet|2 +(noun)|single stitch|crochet stitch +(verb)|single stitch|crochet +single dwelling|1 +(noun)|detached house|house +single entry|1 +(noun)|single-entry bookkeeping|bookkeeping|clerking +single file|1 +(noun)|file|Indian file|line +single out|2 +(verb)|choose|take|select|pick out +(verb)|discriminate|separate|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +single prop|1 +(noun)|single-propeller plane|propeller plane +single quote|1 +(noun)|quotation mark|quote|inverted comma +single shell|1 +(noun)|racing skiff|shell|racing shell +single stitch|2 +(noun)|single crochet|crochet stitch +(verb)|single crochet|crochet +single supplement|1 +(noun)|surcharge +single tax|1 +(noun)|tax|taxation|revenue enhancement +singleness|2 +(noun)|straightforwardness|sincerity +(noun)|assiduity|assiduousness|concentration +singles|4 +(noun)|badminton +(noun)|tennis|lawn tennis +(noun)|single|base hit|safety|bingle +(noun)|one|1|I|ace|single|unity|digit|figure +singlestick|1 +(noun)|fencing stick|backsword|stick +singlet|1 +(noun)|vest|undershirt|undergarment +singletary pea|1 +(noun)|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea +singleton|3 +(noun)|one|1|I|ace|single|unity +(noun)|set +(noun)|playing card +singly|1 +(adv)|individually|separately|severally|one by one|on an individual basis +singsong|5 +(adj)|chantlike|intoned|rhythmical |rhythmic +(noun)|intonation|modulation|pitch contour +(noun)|singalong|singing|vocalizing +(verb)|chant|intone|intonate|cantillate +(verb)|move|displace +singular|6 +(adj)|remarkable|extraordinary +(adj)|curious|funny|odd|peculiar|queer|rum|rummy|strange |unusual +(adj)|individual +(adj)|singular +(adj)|unique|single +(noun)|singular form|form|word form|signifier|descriptor +singular form|1 +(noun)|singular|form|word form|signifier|descriptor +singular matrix|1 +(noun)|square matrix +singularise|1 +(verb)|singularize|signalize|signalise|distinguish +singularity|2 +(noun)|uniqueness|individuality|individualism|individuation +(noun)|unfamiliarity|strangeness +singularize|1 +(verb)|singularise|signalize|signalise|distinguish +singultus|1 +(noun)|hiccup|hiccough|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +sinhala|2 +(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language +(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit|Sanskritic language +sinhalese|4 +(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language +(adj)|Singhalese|Sinhalese|Asian|Asiatic +(noun)|Sinhalese|Singhalese|Asian|Asiatic +(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit|Sanskritic language +sinister|3 +(adj)|baleful|forbidding|menacing|minacious|minatory|ominous|threatening|ugly|alarming +(adj)|black|dark|evil |wicked +(adj)|sinistral +sinistral|2 +(adj)|sinistral |sinister|sinistrorse|sinistrorsal|counterclockwise|anticlockwise|contraclockwise|left-handed +(adj)|left-handed +sinistrality|1 +(noun)|left-handedness|handedness|laterality +sinistrorsal|1 +(adj)|sinistrorse|sinistral +sinistrorse|1 +(adj)|sinistrorsal|sinistral +sinitic|2 +(adj)|Sinitic|Asian|Asiatic +(noun)|Sinitic|Sinitic language|Sino-Tibetan|Sino-Tibetan language +sinitic language|1 +(noun)|Sinitic|Sinitic language|Sino-Tibetan|Sino-Tibetan language +sink|13 +(noun)|plumbing fixture +(noun)|natural process|natural action|action|activity +(noun)|sinkhole|swallow hole|natural depression|depression +(noun)|cesspool|cesspit|sump|cistern +(verb)|drop|drop down|change posture +(verb)|move|displace +(verb)|pass|lapse|move +(verb)|settle|go down|go under|descend|fall|go down|come down|sink in +(verb)|subside|descend|fall|go down|come down +(verb)|dip|decline +(verb)|slump|fall off|drop +(verb)|slump|slide down|collapse|fall in|cave in|give|give way|break|founder +(verb)|bury|implant|engraft|embed|imbed|plant +sink in|2 +(verb)|click|get through|dawn|come home|get across|penetrate|fall into place +(verb)|percolate|permeate|filter|penetrate|perforate +sinkable|1 +(adj)|sinkable +sinker|3 +(noun)|doughnut|donut|friedcake +(noun)|weight +(noun)|pitch|delivery +sinkhole|1 +(noun)|sink|swallow hole|natural depression|depression +sinkiang|1 +(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state|province +sinking|3 +(noun)|descent +(noun)|decrease|lessening|drop-off +(noun)|sinking feeling|anxiety +sinking feeling|1 +(noun)|sinking|anxiety +sinking fund|1 +(noun)|fund|monetary fund +sinking spell|1 +(noun)|decline|diminution +sinless|1 +(adj)|impeccant|innocent|virtuous +sinlessness|1 +(noun)|purity|innocence|condition|status +sinn fein|1 +(noun)|Sinn Fein|political movement +sinner|1 +(noun)|evildoer|wrongdoer|offender +sinning|2 +(adj)|offending +(noun)|sin|transgression|evildoing +sinningia|1 +(noun)|Sinningia|genus Sinningia|asterid dicot genus +sinningia speciosa|1 +(noun)|florist's gloxinia|Sinningia speciosa|Gloxinia spesiosa|gloxinia +sino-japanese war|1 +(noun)|Chino-Japanese War|Sino-Japanese War|war|warfare +sino-tibetan|1 +(noun)|Sino-Tibetan|Sino-Tibetan language|natural language|tongue +sino-tibetan language|1 +(noun)|Sino-Tibetan|Sino-Tibetan language|natural language|tongue +sinoatrial node|1 +(noun)|pacemaker|cardiac pacemaker|SA node|cardiac muscle|heart muscle +sinologist|1 +(noun)|Sinologist|scholar|scholarly person|student +sinology|1 +(noun)|Sinology|humanistic discipline|humanities|liberal arts|arts +sinoper|1 +(noun)|sinopis|sinopia|ocher|ochre +sinopia|1 +(noun)|sinopis|sinoper|ocher|ochre +sinopis|1 +(noun)|sinopia|sinoper|ocher|ochre +sinornis|1 +(noun)|Sinornis|bird +sinter|1 +(verb)|shape|form|work|mold|mould|forge +sintered|1 +(adj)|shape|form|work|mold|mould|forge +sinuate|2 +(adj)|sinuous|wiggly|curved |curving +(adj)|smooth +sinuosity|1 +(noun)|sinuousness|curve|curved shape +sinuous|1 +(adj)|sinuate|wiggly|curved |curving +sinuousness|1 +(noun)|sinuosity|curve|curved shape +sinus|3 +(noun)|fistula|passage|passageway +(noun)|cavity|bodily cavity|cavum +(noun)|venous sinus|duct|epithelial duct|canal|channel +sinus cavernosus|1 +(noun)|cavernous sinus|venous sinus|sinus +sinus coronarius|1 +(noun)|coronary sinus|venous sinus|sinus +sinus ethmoidales|1 +(noun)|ethmoid sinus|ethmoidal sinus|sinus +sinus headache|1 +(noun)|headache|head ache|cephalalgia +sinus paranasales|1 +(noun)|paranasal sinus|nasal sinus|sinus +sinus rectus|1 +(noun)|straight sinus|tentorial sinus|venous sinus|sinus +sinus sigmoideus|1 +(noun)|sigmoid sinus|venous sinus|sinus +sinus transversus|1 +(noun)|transverse sinus|venous sinus|sinus +sinus venosus sclerae|1 +(noun)|canal of Schlemm|Schlemm's canal|duct|epithelial duct|canal|channel +sinusitis|1 +(noun)|inflammation|redness|rubor +sinusoid|2 +(noun)|passage|passageway +(noun)|sine curve|wave|undulation +sinusoidal|1 +(adj)|curved |curving +sinusoidal projection|1 +(noun)|Sanson-Flamsteed projection|equal-area projection|equal-area map projection +sion|3 +(noun)|Zion|Sion|hill +(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country|state|land +(noun)|Utopia|Zion|Sion|imaginary place|mythical place +siouan|3 +(adj)|Siouan|Plains Indian|Buffalo Indian|Amerind|Amerindian language|American-Indian language|American Indian|Indian +(noun)|Sioux|Siouan|Plains Indian|Buffalo Indian +(noun)|Siouan|Siouan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +siouan-speaking|1 +(adj)|Siouan-speaking|communicative |communicatory +siouan language|1 +(noun)|Siouan|Siouan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +sioux|1 +(noun)|Sioux|Siouan|Plains Indian|Buffalo Indian +sioux city|1 +(noun)|Sioux City|city|metropolis|urban center +sioux falls|1 +(noun)|Sioux Falls|city|metropolis|urban center +sip|2 +(noun)|nip|swallow|drink|deglutition +(verb)|drink|imbibe +sipah-e-sahaba|1 +(noun)|Sipah-e-Sahaba|terrorist organization|terrorist group|foreign terrorist organization|FTO +siphon|3 +(noun)|syphon|tube|tubing +(verb)|syphon|siphon off|draw|take out +(verb)|put|set|place|pose|position|lay +siphon off|1 +(verb)|siphon|syphon|draw|take out +siphonaptera|1 +(noun)|Siphonaptera|order Siphonaptera|animal order +siphonophora|1 +(noun)|Siphonophora|order Siphonophora|animal order +siphonophore|1 +(noun)|hydrozoan|hydroid +sipper|1 +(noun)|drinker +sipuncula|1 +(noun)|Sipuncula|phylum Sipuncula|phylum +sipunculid|1 +(noun)|peanut worm|invertebrate +siqueiros|1 +(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter +sir|2 +(noun)|man|adult male +(noun)|Sir|male aristocrat +sir alan lloyd hodgkin|1 +(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist +sir alec guinness|1 +(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor|histrion|player|thespian|role player +sir alexander fleming|1 +(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist +sir alexander korda|1 +(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker|filmmaker|film producer|movie maker +sir alexander mackenzie|1 +(noun)|Mackenzie|Sir Alexander Mackenzie|explorer|adventurer +sir alexander robertus todd|1 +(noun)|Todd|Sir Alexander Robertus Todd|chemist +sir alfred charles bernard lovell|1 +(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer|uranologist|stargazer +sir alfred hitchcock|1 +(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director +sir angus wilson|1 +(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer|author +sir anthony hopkins|1 +(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor|histrion|player|thespian|role player +sir anthony philip hopkins|1 +(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor|histrion|player|thespian|role player +sir anthony vandyke|1 +(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master +sir arthur conan doyle|1 +(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer|author +sir arthur john evans|1 +(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist|archaeologist +sir arthur stanley eddington|1 +(noun)|Eddington|Sir Arthur Stanley Eddington|astronomer|uranologist|stargazer +sir arthur sullivan|1 +(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer +sir arthur travers harris|1 +(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general|full general|marshal|marshall +sir barton|1 +(noun)|Sir Barton|thoroughbred +sir bernanrd williams|1 +(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher +sir bernard law montgomery|1 +(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general|full general +sir bernard lovell|1 +(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer|uranologist|stargazer +sir charles leonard woolley|1 +(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist|archaeologist +sir charles scott sherrington|1 +(noun)|Sherrington|Sir Charles Scott Sherrington|physiologist +sir charles spencer chaplin|1 +(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian|comic|film maker|filmmaker|film producer|movie maker +sir charles wheatstone|1 +(noun)|Wheatstone|Sir Charles Wheatstone|physicist|inventor|discoverer|artificer +sir charles william siemens|1 +(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer|applied scientist|technologist +sir christopher wren|1 +(noun)|Wren|Sir Christopher Wren|architect|designer +sir clive marles sinclair|1 +(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer|entrepreneur|enterpriser +sir david alexander cecil low|1 +(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist +sir david bruce|1 +(noun)|Bruce|David Bruce|Sir David Bruce|doctor|doc|physician|MD|Dr.|medico|bacteriologist +sir david low|1 +(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist +sir edmund hillary|1 +(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer|mountain climber +sir edmund percival hillary|1 +(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer|mountain climber +sir edward elgar|1 +(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer +sir edward victor appleton|1 +(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist +sir edward william elgar|1 +(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer +sir edwin landseer luytens|1 +(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect|designer +sir edwin lutyens|1 +(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect|designer +sir ernst boris chain|1 +(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist +sir francis bacon|1 +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +sir francis drake|1 +(noun)|Drake|Francis Drake|Sir Francis Drake|navigator|admiral|full admiral +sir francis galton|1 +(noun)|Galton|Francis Galton|Sir Francis Galton|scientist|man of science +sir fred hoyle|1 +(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist +sir frederick ashton|1 +(noun)|Ashton|Sir Frederick Ashton|choreographer +sir frederick gowland hopkins|1 +(noun)|Hopkins|Sir Frederick Gowland Hopkins|biochemist +sir frederick grant banting|1 +(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist +sir frederick william herschel|1 +(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer|uranologist|stargazer +sir galahad|1 +(noun)|Galahad|Sir Galahad|fictional character|fictitious character|character +sir gawain|1 +(noun)|Gawain|Sir Gawain|fictional character|fictitious character|character +sir geoffrey wilkinson|1 +(noun)|Wilkinson|Sir Geoffrey Wilkinson|chemist +sir george otto trevelyan|1 +(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian|historiographer +sir george paget thomson|1 +(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist +sir geraint|1 +(noun)|Geraint|Sir Geraint|knight +sir hans adolf krebs|1 +(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist +sir harold george nicolson|1 +(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat|diplomatist|writer|author +sir harold walter kroto|1 +(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist +sir harry maclennan lauder|1 +(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer|vocalist|vocalizer|vocaliser|comedian|comic +sir henry bessemer|1 +(noun)|Bessemer|Sir Henry Bessemer|metallurgist|metallurgical engineer|inventor|discoverer|artificer +sir henry joseph wood|1 +(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor|music director|director +sir henry maxmilian beerbohm|1 +(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer|author|caricaturist +sir henry morgan|1 +(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate|buccaneer|sea robber|sea rover +sir henry morton stanley|1 +(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist|explorer|adventurer +sir henry percy|1 +(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier +sir henry rider haggard|1 +(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer|author +sir henry wood|1 +(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor|music director|director +sir herbert beerbohm tree|1 +(noun)|Tree|Sir Herbert Beerbohm Tree|actor|histrion|player|thespian|role player|theatrical producer +sir hiram stevens maxim|1 +(noun)|Maxim|Sir Hiram Stevens Maxim|inventor|discoverer|artificer +sir howard walter florey|1 +(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician|pathologist +sir humphrey davy|1 +(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist +sir humphrey gilbert|1 +(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator +sir isaac newton|1 +(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician|physicist +sir isaac pitman|1 +(noun)|Pitman|Sir Isaac Pitman|educator|pedagogue +sir jack hobbs|1 +(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer +sir jacob epstein|1 +(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor|sculpturer|carver|statue maker +sir james augustus henry murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +sir james augustus murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +sir james clark ross|1 +(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer|adventurer +sir james dewar|1 +(noun)|Dewar|Sir James Dewar|chemist|physicist +sir james george frazer|1 +(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist +sir james matthew barrie|1 +(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist|playwright +sir james murray|1 +(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist|philologue|lexicographer|lexicologist +sir james paget|1 +(noun)|Paget|Sir James Paget|diagnostician|pathologist +sir james paul mccartney|1 +(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star|songwriter|songster|ballad maker +sir james young simpson|1 +(noun)|Simpson|Sir James Young Simpson|doctor|doc|physician|MD|Dr.|medico +sir john carew eccles|1 +(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist +sir john cockcroft|1 +(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist +sir john cowdery kendrew|1 +(noun)|Kendrew|Sir John Cowdery Kendrew|biologist|life scientist +sir john douglas cockcroft|1 +(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist +sir john everett millais|1 +(noun)|Millais|Sir John Everett Millais|Pre-Raphaelite +sir john falstaff|1 +(noun)|Falstaff|Sir John Falstaff|fictional character|fictitious character|character +sir john frederick william herschel|1 +(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer|uranologist|stargazer +sir john gielgud|1 +(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor|histrion|player|thespian|role player +sir john hawkins|1 +(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer|privateersman +sir john hawkyns|1 +(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer|privateersman +sir john herschel|1 +(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer|uranologist|stargazer +sir john ross|1 +(noun)|Ross|John Ross|Sir John Ross|explorer|adventurer +sir john suckling|1 +(noun)|Suckling|Sir John Suckling|poet|courtier +sir john tenniel|1 +(noun)|Tenniel|Sir John Tenniel|cartoonist +sir john vanbrigh|1 +(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect|designer +sir joseph banks|1 +(noun)|Banks|Sir Joseph Banks|botanist|phytologist|plant scientist +sir joseph john thomson|1 +(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist +sir joseph paxton|1 +(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect|designer +sir joshua reynolds|1 +(noun)|Reynolds|Sir Joshua Reynolds|painter +sir lancelot|1 +(noun)|Lancelot|Sir Lancelot|fictional character|fictitious character|character +sir laurence kerr olivier|1 +(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor|histrion|player|thespian|role player +sir leonard hutton|1 +(noun)|Hutton|Sir Leonard Hutton|cricketer +sir leonard woolley|1 +(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist|archaeologist +sir leslie stephen|1 +(noun)|Stephen|Sir Leslie Stephen|writer|author +sir martin frobisher|1 +(noun)|Frobisher|Sir Martin Frobisher|explorer|adventurer|navigator +sir matthew flinders|1 +(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer|adventurer +sir mortimer wheeler|1 +(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist|archaeologist +sir noel pierce coward|1 +(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist|playwright|actor|histrion|player|thespian|role player|composer +sir oliver joseph lodge|1 +(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist +sir oliver lodge|1 +(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist +sir patrick manson|1 +(noun)|Manson|Sir Patrick Manson|doctor|doc|physician|MD|Dr.|medico +sir paul gavrilovich vinogradoff|1 +(noun)|Vinogradoff|Sir Paul Gavrilovich Vinogradoff|historian|historiographer +sir peter brian medawar|1 +(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist +sir peter paul rubens|1 +(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master +sir peter ustinov|1 +(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor|histrion|player|thespian|role player|dramatist|playwright +sir philip sidney|1 +(noun)|Sidney|Sir Philip Sidney|poet +sir ralph david richardson|1 +(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor|histrion|player|thespian|role player +sir rex harrison|1 +(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor|histrion|player|thespian|role player +sir richard burton|1 +(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer|adventurer +sir richard francis burton|1 +(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer|adventurer +sir richard owen|1 +(noun)|Owen|Sir Richard Owen|paleontologist|palaeontologist|fossilist|comparative anatomist +sir richrd steele|1 +(noun)|Steele|Sir Richrd Steele|writer|author +sir robert eric mortimer wheeler|1 +(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist|archaeologist +sir robert peel|1 +(noun)|Peel|Robert Peel|Sir Robert Peel|politician|politico|pol|political leader +sir robert robinson|1 +(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist +sir robert walpole|1 +(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman|solon|national leader +sir roger gilbert bannister|1 +(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man +sir ronald ross|1 +(noun)|Ross|Sir Ronald Ross|doctor|doc|physician|MD|Dr.|medico +sir sarvepalli radhakrishnan|1 +(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher|statesman|solon|national leader +sir seretse khama|1 +(noun)|Khama|Sir Seretse Khama|statesman|solon|national leader +sir stephen harold spender|1 +(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet|literary critic +sir terence mervyn rattigan|1 +(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist|playwright +sir thomas gresham|1 +(noun)|Gresham|Sir Thomas Gresham|financier|moneyman +sir thomas lawrence|1 +(noun)|Lawrence|Sir Thomas Lawrence|painter +sir thomas malory|1 +(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer|author +sir thomas more|1 +(noun)|More|Thomas More|Sir Thomas More|statesman|solon|national leader|writer|author +sir thomas raffles|1 +(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator|executive +sir thomas stamford raffles|1 +(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator|executive +sir thomas wyat|1 +(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet +sir thomas wyatt|1 +(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet +sir tim rice|1 +(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist +sir tom stoppard|1 +(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist|playwright +sir walter norman haworth|1 +(noun)|Haworth|Sir Walter Norman Haworth|biochemist +sir walter ralegh|1 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +sir walter raleigh|1 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +sir walter scott|1 +(noun)|Scott|Walter Scott|Sir Walter Scott|writer|author +sir william alexander craigie|1 +(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer|lexicologist +sir william chambers|1 +(noun)|Chambers|William Chambers|Sir William Chambers|architect|designer +sir william crookes|1 +(noun)|Crookes|William Crookes|Sir William Crookes|chemist|physicist +sir william gerald golding|1 +(noun)|Golding|William Golding|Sir William Gerald Golding|writer|author +sir william gilbert|1 +(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist|poet +sir william herschel|1 +(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer|uranologist|stargazer +sir william huggins|1 +(noun)|Huggins|Sir William Huggins|astronomer|uranologist|stargazer +sir william rowan hamilton|1 +(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician +sir william turner walton|1 +(noun)|Walton|Sir William Walton|Sir William Turner Walton|composer +sir william wallace|1 +(noun)|Wallace|Sir William Wallace|insurgent|insurrectionist|freedom fighter|rebel +sir william walton|1 +(noun)|Walton|Sir William Walton|Sir William Turner Walton|composer +sir winston leonard spenser churchill|1 +(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman|solon|national leader|writer|author +sir yehudi menuhin|1 +(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist|fiddler +sirach|1 +(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book +siracusa|1 +(noun)|Syracuse|Siracusa|city|metropolis|urban center +siraj-ud-daula|1 +(noun)|Siraj-ud-daula|general|full general +sirc|1 +(noun)|Security Intelligence Review Committee|SIRC|international intelligence agency +sirdar|1 +(noun)|important person|influential person|personage +sire|4 +(noun)|Lord|noble|nobleman +(noun)|forefather|father|ancestor|ascendant|ascendent|antecedent|root +(noun)|male +(verb)|beget|get|engender|father|mother|generate|bring forth|make|create +siren|5 +(noun)|Siren|sea nymph +(noun)|enchantress|temptress|Delilah|femme fatale|woman|adult female +(noun)|alarm|alert|warning signal|alarum +(noun)|acoustic device|alarm|warning device|alarm system +(noun)|salamander +siren call|1 +(noun)|siren song|appeal|appealingness|charm +siren song|1 +(noun)|siren call|appeal|appealingness|charm +sirenia|1 +(noun)|Sirenia|order Sirenia|animal order +sirenian|1 +(noun)|sea cow|sirenian mammal|aquatic mammal +sirenian mammal|1 +(noun)|sea cow|sirenian|aquatic mammal +sirenidae|1 +(noun)|Sirenidae|family Sirenidae|amphibian family +siriasis|1 +(noun)|sunstroke|insolation|thermic fever|heatstroke|heat hyperpyrexia +siris|1 +(noun)|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia|albizia +siris tree|1 +(noun)|siris|Albizia lebbeck|Albizzia lebbeck|albizzia|albizia +sirius|1 +(noun)|Sirius|Dog Star|Canicula|Sothis|binary star|binary|double star +sirloin|1 +(noun)|cut|cut of meat +sirloin steak|1 +(noun)|beefsteak +sirloin tip|1 +(noun)|cut of beef +sirocco|1 +(noun)|dust storm|duster|sandstorm|windstorm +sirrah|1 +(noun)|male|male person +sirup|1 +(noun)|syrup|sweetening|sweetener +sis|4 +(noun)|sister|female sibling +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +(noun)|silicon|Si|atomic number 14|chemical element|element|semiconductor|semiconducting material +(noun)|ti|te|si|solfa syllable +sisal|2 +(noun)|sisal hemp|plant fiber|plant fibre +(noun)|Agave sisalana|agave|century plant|American aloe +sisal family|1 +(noun)|Agavaceae|family Agavaceae|agave family|liliid monocot family +sisal hemp|1 +(noun)|sisal|plant fiber|plant fibre +sise|1 +(noun)|six|6|VI|sixer|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +sisham|1 +(noun)|sissoo|sissu|Dalbergia sissoo|tree +siskin|1 +(noun)|Carduelis spinus|finch +siskiyou lewisia|1 +(noun)|Lewisia cotyledon|wildflower|wild flower +sison|1 +(noun)|Sison|genus Sison|rosid dicot genus +sison amomum|1 +(noun)|stone parsley|Sison amomum|herb|herbaceous plant +siss|2 +(verb)|hiss|sizz|sibilate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|hiss|sizz|sibilate|utter|emit|let out|let loose +sissified|1 +(adj)|effeminate|emasculate|epicene|cissy|sissyish|sissy|unmanly |unmanful|unmanlike +sissiness|1 +(noun)|effeminacy|effeminateness|womanishness|unmanliness|femininity|muliebrity +sissoo|1 +(noun)|sissu|sisham|Dalbergia sissoo|tree +sissu|1 +(noun)|sissoo|sisham|Dalbergia sissoo|tree +sissy|2 +(adj)|effeminate|emasculate|epicene|cissy|sissified|sissyish|unmanly |unmanful|unmanlike +(noun)|pantywaist|pansy|milksop|Milquetoast|coward +sissyish|1 +(adj)|effeminate|emasculate|epicene|cissy|sissified|sissy|unmanly |unmanful|unmanlike +sister|4 +(noun)|sis|female sibling +(noun)|Sister|nun +(noun)|member +(noun)|baby|girl|miss|missy|young lady|young woman|fille +sister-in-law|1 +(noun)|in-law|relative-in-law +sister ship|2 +(noun)|ship +(noun)|sisterhood|sistership|kinship|family relationship|relationship +sisterhood|2 +(noun)|sistership|kinship|family relationship|relationship +(noun)|sect|religious sect|religious order +sisterlike|1 +(adj)|sisterly |sororal +sisterly|1 +(adj)|sisterly |sisterlike|sororal +sistership|1 +(noun)|sisterhood|kinship|family relationship|relationship +sistrurus|1 +(noun)|Sistrurus|genus Sistrurus|reptile genus +sistrurus catenatus|1 +(noun)|massasauga|massasauga rattler|Sistrurus catenatus|rattlesnake|rattler +sistrurus miliaris|1 +(noun)|ground rattler|massasauga|Sistrurus miliaris|rattlesnake|rattler +sisymbrium barbarea|1 +(noun)|yellow rocket|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed +sisymbrium officinale|1 +(noun)|hedge mustard|Sisymbrium officinale|herb|herbaceous plant +sisymbrium tanacetifolia|1 +(noun)|tansy-leaved rocket|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb|herbaceous plant +sisyphean|2 +(adj)|Sisyphean|mythical being +(adj)|Sisyphean|effortful +sisyphus|1 +(noun)|Sisyphus|mythical being +sisyridae|1 +(noun)|Sisyridae|family Sisyridae|arthropod family +sisyrinchium|1 +(noun)|Sisyrinchium|genus Sisyrinchium|liliid monocot genus +sit|8 +(verb)|sit down|sit out|sit down +(verb)|be +(verb)|sit down|change posture +(verb)|convene +(verb)|model|pose|posture|expose|exhibit|display +(verb)|ride|travel|go|move|locomote +(verb)|baby-sit|guard +(verb)|seat|sit down|put|set|place|pose|position|lay +sit-down|1 +(noun)|sit-down strike|strike|work stoppage +sit-down strike|1 +(noun)|sit-down|strike|work stoppage +sit-in|1 +(noun)|civil disobedience +sit-up|1 +(noun)|stomach exercise|tummy crunch +sit back|2 +(verb)|take it easy|relax|loosen up|unbend|unwind|decompress|slow down +(verb)|sit by|watch|look on +sit by|1 +(verb)|sit back|watch|look on +sit down|3 +(verb)|sit|change posture +(verb)|seat|sit|put|set|place|pose|position|lay +(verb)|sit +sit in|2 +(verb)|attend|go to +(verb)|disobey +sit out|2 +(verb)|refrain|forbear +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +sit tight|1 +(verb)|stay|remain|rest +sit up|2 +(verb)|stay up|wake +(verb)|change posture +sita|1 +(noun)|Sita|mythical being +sitar|1 +(noun)|stringed instrument +sitar player|1 +(noun)|musician|instrumentalist|player +sitcom|1 +(noun)|broadcast|program|programme +site|4 +(noun)|land site|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|situation|position|place +(noun)|web site|internet site|computer|computing machine|computing device|data processor|electronic computer|information processing system +(verb)|locate|place|station|post|base|send|place +site visit|1 +(noun)|visit +sitka|1 +(noun)|Sitka|town +sitka spruce|1 +(noun)|Sitka spruce|Picea sitchensis|spruce +sitka willow|1 +(noun)|Sitka willow|silky willow|Salix sitchensis|willow|willow tree +sitophylus|1 +(noun)|Sitophylus|genus Sitophylus|arthropod genus +sitophylus oryzae|1 +(noun)|rice weevil|black weevil|Sitophylus oryzae|weevil +sitotroga|1 +(noun)|Sitotroga|genus Sitotroga|arthropod genus +sitotroga cerealella|1 +(noun)|angoumois moth|angoumois grain moth|Sitotroga cerealella|grain moth +sitsang|1 +(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country|Asian nation +sitta|1 +(noun)|Sitta|genus Sitta|bird genus +sitta canadensis|1 +(noun)|red-breasted nuthatch|Sitta canadensis|nuthatch|nutcracker +sitta carolinensis|1 +(noun)|white-breasted nuthatch|Sitta carolinensis|nuthatch|nutcracker +sitta europaea|1 +(noun)|European nuthatch|Sitta europaea|nuthatch|nutcracker +sitter|5 +(noun)|Sitter|Willem de Sitter|astronomer|uranologist|stargazer +(noun)|organism|being +(noun)|babysitter|baby-sitter|keeper +(noun)|artist's model|model|poser +(noun)|brood hen|broody|broody hen|setting hen|hen|biddy +sittidae|1 +(noun)|Sittidae|family Sittidae|bird family +sitting|6 +(adj)|seated +(adj)|nonmoving |unmoving +(noun)|posing|motion|movement|move|motility +(noun)|motion|movement|move|motility +(noun)|seance|session|meeting|get together +(noun)|session +sitting bull|1 +(noun)|Sitting Bull|Indian chief|Indian chieftain|Hunkpapa +sitting duck|1 +(noun)|easy mark|victim|dupe +sitting room|1 +(noun)|living room|living-room|front room|parlor|parlour|room +sitting trot|1 +(noun)|trot +situate|2 +(verb)|locate|determine|find|find out|ascertain +(verb)|fix|posit|deposit|put|set|place|pose|position|lay +situated|1 +(adj)|located|placed|set|settled +situation|5 +(noun)|state of affairs|state +(noun)|position|condition|status +(noun)|difficulty +(noun)|site|position|place +(noun)|position|post|berth|office|spot|billet|place|occupation|business|job|line of work|line +situation comedy|2 +(noun)|comedy +(noun)|television program|TV program|television show|TV show +sitwell|1 +(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet +sitz bath|1 +(noun)|hip bath|bathtub|bathing tub|bath|tub +sium|1 +(noun)|Sium|genus Sium|rosid dicot genus +sium latifolium|1 +(noun)|greater water parsnip|Sium latifolium|marsh plant|bog plant|swamp plant +sium sisarum|1 +(noun)|skirret|Sium sisarum|marsh plant|bog plant|swamp plant +sium suave|1 +(noun)|water parsnip|Sium suave|marsh plant|bog plant|swamp plant +siva|1 +(noun)|Siva|Shiva|Hindu deity +sivaism|2 +(noun)|Shivaism|Sivaism|sect|religious sect|religious order +(noun)|Shivaism|Sivaism|Hinduism|Hindooism +sivan|1 +(noun)|Sivan|Siwan|Jewish calendar month +sivapithecus|1 +(noun)|Sivapithecus|hominid +siwan|1 +(noun)|Sivan|Siwan|Jewish calendar month +six|2 +(adj)|6|vi|half dozen|half a dozen|cardinal +(noun)|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +six-day war|2 +(noun)|Arab-Israeli War|Six-Day War|Six Day War|war|warfare +(noun)| +six-footer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +six-gilled shark|1 +(noun)|cow shark|Hexanchus griseus|shark +six-gun|1 +(noun)|revolver|six-shooter|pistol|handgun|side arm|shooting iron +six-lined racerunner|1 +(noun)|racerunner|race runner|Cnemidophorus sexlineatus|whiptail|whiptail lizard +six-membered|1 +(adj)|6-membered|membered +six-pack|1 +(noun)|carton +six-shooter|1 +(noun)|revolver|six-gun|pistol|handgun|side arm|shooting iron +six-spot|1 +(noun)|spot|domino|dice|die +six day war|1 +(noun)|Arab-Israeli War|Six-Day War|Six Day War|war|warfare +six nations|1 +(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league +six times|1 +(adv)|sixfold +sixer|1 +(noun)|six|6|VI|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +sixfold|2 +(adj)|sextuple|multiple +(adv)|six times +sixpence|1 +(noun)|tanner|coin +sixpenny|1 +(adj)|threepenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap |inexpensive +sixpenny nail|1 +(noun)|nail +sixsome|1 +(noun)|sextet|sextette|gathering|assemblage +sixteen|2 +(adj)|16|xvi|cardinal +(noun)|16|XVI|large integer +sixteen personality factor questionnaire|1 +(noun)|Sixteen Personality Factor Questionnaire|16 PF|self-report personality inventory|self-report inventory +sixteenth|2 +(adj)|16th|ordinal +(noun)|rank +sixteenth note|1 +(noun)|semiquaver|note|musical note|tone +sixth|4 +(adj)|6th|ordinal +(noun)|rank +(noun)|one-sixth|common fraction|simple fraction +(noun)|interval|musical interval +sixth-former|1 +(noun)|student|pupil|educatee +sixth baron byron of rochdale|1 +(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet +sixth cranial nerve|1 +(noun)|abducent|abducent nerve|abducens|abducens nerve|nervus abducens|cranial nerve +sixth crusade|1 +(noun)|Sixth Crusade|Crusade +sixth form|1 +(noun)|class|form|grade +sixth sense|1 +(noun)|insight|intuition +sixties|3 +(noun)|1960s|decade|decennary|decennium +(noun)|mid-sixties|time of life +(noun)|sixty|60|LX|large integer +sixtieth|3 +(adj)|60th|ordinal +(noun)|rank +(noun)|one-sixtieth|common fraction|simple fraction +sixty|2 +(adj)|60|lx|threescore|cardinal +(noun)|60|LX|large integer +sixty-eight|1 +(adj)|68|lxviii|cardinal +sixty-fifth|1 +(adj)|65th|ordinal +sixty-five|1 +(adj)|65|lxv|cardinal +sixty-four|1 +(adj)|64|lxiv|cardinal +sixty-fourth note|1 +(noun)|hemidemisemiquaver|note|musical note|tone +sixty-nine|2 +(adj)|69|ilxx|cardinal +(noun)|soixante-neuf|oral sex|head +sixty-one|1 +(adj)|61|lxi|cardinal +sixty-seven|1 +(adj)|67|lxvii|cardinal +sixty-six|1 +(adj)|66|lxvi|cardinal +sixty-three|1 +(adj)|63|lxiii|cardinal +sixty-two|1 +(adj)|62|lxii|cardinal +sizable|2 +(adj)|ample|sizeable|large +(adj)|goodly|goodish|hefty|respectable|sizeable|tidy|considerable +size|9 +(adj)|sized +(noun)|magnitude +(noun)|property +(noun)|sizing|filler +(noun)|size of it|situation|state of affairs +(noun)|magnitude +(verb)|coat|surface +(verb)|classify|class|sort|assort|sort out|separate +(verb)|change magnitude|size up +size constancy|1 +(noun)|constancy +size of it|1 +(noun)|size|situation|state of affairs +size stick|1 +(noun)|measuring stick|measure|measuring rod +size up|1 +(verb)|take stock|scrutinize|scrutinise|examine|see +sizeable|2 +(adj)|ample|sizable|large +(adj)|goodly|goodish|hefty|respectable|sizable|tidy|considerable +sizeableness|1 +(noun)|enormousness|grandness|greatness|immenseness|immensity|vastness|largeness|bigness +sized|2 +(adj)|sized |eightpenny|fourpenny|ninepenny|size|sorted|threepenny +(adj)|sized +sizing|1 +(noun)|size|filler +sizz|2 +(verb)|hiss|siss|sibilate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|hiss|siss|sibilate|utter|emit|let out|let loose +sizzle|3 +(verb)|make noise|resound|noise +(verb)|seethe|boil +(verb)|sear|scorch +sizzling|2 +(adj)|hot +(adj)|red-hot|hot +sjaelland|1 +(noun)|Zealand|Seeland|Sjaelland|island +sk-ampicillin|1 +(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin +skagens odde|1 +(noun)|Skagens Odde|Skaw|cape|ness +skagerak|1 +(noun)|Skagerrak|Skagerak|strait|sound +skagerrak|1 +(noun)|Skagerrak|Skagerak|strait|sound +skagit|2 +(noun)|Skagit|Salish +(noun)|Skagit|Salish|Salishan +skanda|1 +(noun)|Skanda|Hindu deity +skank|2 +(noun)|filth|crud|waste|waste material|waste matter|waste product +(noun)|dancing|dance|terpsichore|saltation +skanky|1 +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|wicked|yucky|offensive +skate|3 +(noun)|sports equipment|sporting goods +(noun)|ray +(verb)|glide +skate over|1 +(verb)|gloss over|smooth over|slur over|skimp over|treat|handle|do by +skateboard|2 +(noun)|board|skate +(verb)|skate +skateboarder|1 +(noun)|skater +skateboarding|1 +(noun)|skating +skater|1 +(noun)|athlete|jock +skating|1 +(noun)|sport|athletics +skating rink|1 +(noun)|rink|building|edifice +skaw|1 +(noun)|Skagens Odde|Skaw|cape|ness +skeat|1 +(noun)|Skeat|Walter William Skeat|philologist|philologue +skedaddle|1 +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away +skeen arch|1 +(noun)|skene arch|scheme arch|diminished arch|arch +skeet|1 +(noun)|skeet shooting|trapshooting|shoot +skeet shooting|1 +(noun)|skeet|trapshooting|shoot +skeeter hawk|1 +(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|odonate +skeg|1 +(noun)|brace +skein|1 +(noun)|hank +skeletal|2 +(adj)|system +(adj)|bony|cadaverous|emaciated|gaunt|haggard|pinched|wasted|thin |lean +skeletal frame|1 +(noun)|skeleton|frame|underframe|supporting structure +skeletal muscle|1 +(noun)|striated muscle|muscle|musculus +skeletal structure|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +skeletal system|1 +(noun)|skeleton|frame|systema skeletale|system +skeleton|4 +(noun)|minimum|lower limit +(noun)|skeleton in the closet|skeleton in the cupboard|scandal|outrage +(noun)|skeletal system|frame|systema skeletale|system +(noun)|skeletal frame|frame|underframe|supporting structure +skeleton fork fern|1 +(noun)|Psilotum nudum|whisk fern +skeleton in the closet|1 +(noun)|skeleton|skeleton in the cupboard|scandal|outrage +skeleton in the cupboard|1 +(noun)|skeleton|skeleton in the closet|scandal|outrage +skeleton key|1 +(noun)|passkey|passe-partout|master key|master +skeleton shrimp|1 +(noun)|amphipod +skene arch|1 +(noun)|skeen arch|scheme arch|diminished arch|arch +skep|2 +(noun)|basket|handbasket +(noun)|beehive|hive +skepful|1 +(noun)|containerful +skeptic|1 +(noun)|sceptic|doubter|intellectual|intellect +skeptical|2 +(adj)|disbelieving|sceptical|unbelieving|incredulous +(adj)|doubting|questioning|sceptical|distrustful +skeptically|1 +(adv)|sceptically +skepticism|2 +(noun)|incredulity|disbelief|mental rejection|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|agnosticism|scepticism|unbelief|disbelief +sketch|6 +(noun)|study|drawing +(noun)|vignette|description +(noun)|survey|resume|summary +(noun)|cartoon|wit|humor|humour|witticism|wittiness +(verb)|chalk out|draw +(verb)|outline|adumbrate|describe|depict|draw +sketch block|1 +(noun)|sketchbook|sketch pad|book|volume +sketch map|1 +(noun)|map +sketch pad|1 +(noun)|sketchbook|sketch block|book|volume +sketchbook|1 +(noun)|sketch block|sketch pad|book|volume +sketcher|2 +(noun)|draftsman|drawer +(noun)|writing implement +sketchiness|1 +(noun)|incompleteness +sketchy|1 +(adj)|unelaborated|incomplete |uncomplete +skew|2 +(adj)|skewed|inclined +(verb)|reorient +skew-eyed|1 +(adj)|eyed +skew-whiff|2 +(adj)|askew|awry|cockeyed|lopsided|wonky|crooked +(adv)|askew|awry +skew arch|1 +(noun)|arch +skew correlation|1 +(noun)|curvilinear correlation|nonlinear correlation|correlation|correlational statistics +skewed|1 +(adj)|skew|inclined +skewer|2 +(noun)|pin +(verb)|spit|pin +skewness|1 +(noun)|lopsidedness|asymmetry|imbalance +ski|2 +(noun)|skis|runner +(verb)|travel|go|move|locomote +ski-plane|1 +(noun)|airplane|aeroplane|plane +ski boot|1 +(noun)|ski boots|boot +ski boots|2 +(noun)|ski boot|boot +(noun)|ski boot|boot +ski cap|1 +(noun)|stocking cap|toboggan cap|cap +ski conditions|1 +(noun)|condition|status +ski jacket|1 +(noun)|ski parka|parka|windbreaker|windcheater|anorak +ski jump|2 +(noun)|ramp|incline +(verb)|jump|leap|bound|spring +ski jumper|1 +(noun)|skier +ski jumping|1 +(noun)|skiing +ski lift|1 +(noun)|ski tow|lift|conveyance|transport +ski lodge|1 +(noun)|hotel +ski mask|1 +(noun)|face mask +ski parka|1 +(noun)|ski jacket|parka|windbreaker|windcheater|anorak +ski pole|1 +(noun)|pole +ski race|1 +(noun)|skiing race|race +ski rack|1 +(noun)|carrier +ski resort|1 +(noun)|resort|resort hotel|holiday resort +ski run|1 +(noun)|ski trail|trail +ski slope|1 +(noun)|slope|incline|side +ski tow|1 +(noun)|ski lift|lift|conveyance|transport +ski trail|1 +(noun)|ski run|trail +ski wax|1 +(noun)|wax +skiagram|1 +(noun)|radiogram|radiograph|shadowgraph|skiagraph|photograph|photo|exposure|pic +skiagraph|1 +(noun)|radiogram|radiograph|shadowgraph|skiagram|photograph|photo|exposure|pic +skiagraphy|1 +(noun)|radiography|photography +skibob|1 +(noun)|vehicle +skid|7 +(noun)|board|plank +(noun)|brake shoe|shoe|restraint|constraint +(noun)|slip|sideslip|slide|glide|coast +(verb)|slip|slue|slew|slide +(verb)|raise|lift|elevate|get up|bring up +(verb)|brake +(verb)|slip|slue|slew|slide|glide +skid lid|1 +(noun)|crash helmet +skid road|1 +(noun)|road|route +skid row|1 +(noun)|slum|slum area +skidder|3 +(noun)|slider|slipper|person|individual|someone|somebody|mortal|human|soul +(noun)|worker +(noun)|tractor +skidpan|1 +(noun)|paved surface +skier|1 +(noun)|athlete|jock +skiff|1 +(noun)|small boat +skiffle|1 +(noun)|popular music|popular music genre +skiffle group|1 +(noun)|ensemble +skiing|1 +(noun)|sport|athletics +skiing race|1 +(noun)|ski race|race +skilful|1 +(adj)|adept|expert|good|practiced|proficient|skillful|skilled +skilfully|1 +(adv)|skillfully +skill|2 +(noun)|accomplishment|acquirement|acquisition|attainment|ability|power +(noun)|science|ability|power +skilled|1 +(adj)|skilled |accomplished|complete|arch|ball-hawking|consummate|masterful|masterly|virtuoso|delicate|mean|sure-handed|trained|versatile|adept|expert|good|practiced|proficient|skillful|skilful|hot|competent|experienced +skilled worker|1 +(noun)|trained worker|worker +skillet|1 +(noun)|frying pan|frypan|pan|cooking pan +skillet bread|1 +(noun)|fry bread|quick bread +skillet cake|1 +(noun)|upside-down cake|cake +skillet corn bread|1 +(noun)|cornbread +skillet fish|2 +(noun)|skilletfish|Gobiesox strumosus|clingfish +(noun)| +skilletfish|1 +(noun)|skillet fish|Gobiesox strumosus|clingfish +skillful|2 +(adj)|adept|expert|good|practiced|proficient|skilful|skilled +(adj)|nice|precise +skillfully|1 +(adv)|skilfully +skillfulness|1 +(noun)|state +skilly|1 +(noun)|gruel +skim|10 +(adj)|skimmed|nonfat |fat-free|fatless +(noun)|covering|natural covering|cover +(noun)|skimming|reading +(verb)|plane|glide +(verb)|skim over|touch +(verb)|scan|rake|glance over|run down|examine|see +(verb)|skip|skitter|throw +(verb)|coat|surface +(verb)|skim off|cream off|cream|remove|take|take away|withdraw|skim off +(verb)|skim over|read +skim milk|1 +(noun)|skimmed milk|milk +skim off|2 +(verb)|skim|cream off|cream|remove|take|take away|withdraw +(verb)|cream off|choose|take|select|pick out +skim over|2 +(verb)|skim|read +(verb)|skim|touch +skimcoat|1 +(verb)|coat|surface +skimmed|1 +(adj)|skim|nonfat |fat-free|fatless +skimmed milk|1 +(noun)|skim milk|milk +skimmer|4 +(noun)|reader +(noun)|cooking utensil|cookware +(noun)|boater|leghorn|Panama|Panama hat|sailor|straw hat|hat|chapeau|lid +(noun)|coastal diving bird +skimming|4 +(noun)|removal|remotion +(noun)|skim|reading +(noun)|larceny|theft|thievery|thieving|stealing +(noun)|grazing|shaving|touch|touching +skimp|4 +(verb)|scant|work|skimp over +(verb)|scant|restrict +(verb)|scrimp|stint|save +(verb)|stint|scant|supply|provide|render|furnish +skimp over|1 +(verb)|gloss over|skate over|smooth over|slur over|treat|handle|do by +skimpy|1 +(adj)|lean|insufficient |deficient +skin|12 +(noun)|tegument|cutis|connective tissue|body covering +(noun)|rind|peel|plant tissue +(noun)|surface +(noun)|hide|pelt|body covering +(noun)|animation|life|living|aliveness +(noun)|peel|rind +(noun)|bag +(verb)|clamber|scramble|shin|shinny|struggle|sputter|climb +(verb)|scrape|injure|wound +(verb)|bark|strip +(verb)|peel|pare|strip +(verb)|stub|scrape|abrade|injure|wound +skin-deep|1 +(adj)|superficial|surface|shallow +skin-dive|2 +(noun)|skin diving|swimming|swim +(verb)|dive +skin-diver|1 +(noun)|aquanaut|swimmer|natator|bather +skin and bones|1 +(noun)|thin person|person|individual|someone|somebody|mortal|human|soul +skin cancer|1 +(noun)|carcinoma +skin care|2 +(noun)|skincare|care|attention|aid|tending +(noun)| +skin cell|1 +(noun)|somatic cell|vegetative cell +skin color|1 +(noun)|complexion|skin colour|color|colour|coloring|colouring +skin colour|1 +(noun)|complexion|skin color|color|colour|coloring|colouring +skin condition|2 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|disease +(noun)|complexion|appearance|visual aspect +skin disease|1 +(noun)|disease of the skin|skin disorder|skin problem|skin condition|disease +skin disorder|1 +(noun)|skin disease|disease of the skin|skin problem|skin condition|disease +skin diving|1 +(noun)|skin-dive|swimming|swim +skin doctor|1 +(noun)|dermatologist|specialist|medical specialist +skin effect|1 +(noun)|electrical phenomenon +skin eruption|1 +(noun)|exanthem|exanthema|eruption +skin graft|1 +(noun)|skin|tegument|cutis +skin over|1 +(verb)|heal +skin patch|1 +(noun)|transdermal patch|pad +skin perceptiveness|1 +(noun)|tactual sensation|tactility|touch perception|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +skin pop|1 +(verb)|pop +skin problem|1 +(noun)|skin disease|disease of the skin|skin disorder|skin condition|disease +skin rash|1 +(noun)|rash|roseola|efflorescence|eruption +skin sensation|1 +(noun)|cutaneous sensation|haptic sensation|touch|touch sensation|tactual sensation|tactile sensation|feeling +skin test|1 +(noun)|diagnostic test|diagnostic assay +skin tumor|1 +(noun)|acanthoma|tumor|tumour|neoplasm +skincare|1 +(noun)|skin care|care|attention|aid|tending +skinflint|1 +(noun)|niggard|scrooge|churl|hoarder +skinhead|1 +(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +skinheads|2 +(noun)|bootboys|youth subculture +(noun)|skinhead|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +skink|1 +(noun)|scincid|scincid lizard|lizard +skinned|1 +(adj)|abraded|scraped|injured +skinner|5 +(noun)|Skinner|Otis Skinner|actor|histrion|player|thespian|role player +(noun)|Skinner|Cornelia Otis Skinner|actress +(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist +(noun)|skilled worker|trained worker +(noun)|muleteer|mule skinner|mule driver|laborer|manual laborer|labourer|jack +skinnerian|2 +(adj)|Skinnerian|psychologist +(noun)|Skinnerian|follower +skinniness|1 +(noun)|scrawniness|leanness|thinness +skinny|2 +(adj)|scraggy|scrawny|underweight|weedy|thin |lean +(noun)|information|info +skinny dip|1 +(verb)|swim +skint|1 +(adj)|broke|bust|stone-broke|stony-broke|poor +skintight|1 +(adj)|tight +skip|8 +(noun)|gait +(noun)|omission|mistake|error|fault +(verb)|jump|pass over|skip over|neglect|pretermit|omit|drop|miss|leave out|overlook|overleap +(verb)|cut|miss +(verb)|hop|hop-skip|jump|leap|bound|spring|skip over +(verb)|decamp|vamoose|leave|go forth|go away +(verb)|bound off|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet +(verb)|skim|skitter|throw +skip-bomb|1 +(verb)|bombard|bomb +skip distance|1 +(noun)|distance|length +skip over|1 +(verb)|jump|pass over|skip|neglect|pretermit|omit|drop|miss|leave out|overlook|overleap +skip rope|1 +(noun)|jump rope|skipping rope|rope +skip town|1 +(verb)|take a powder|disappear|vanish|go away +skipjack|3 +(noun)|skipjack tuna|Euthynnus pelamis|scombroid|scombroid fish +(noun)|Atlantic bonito|Sarda sarda|bonito +(noun)|click beetle|snapping beetle|elaterid beetle|elater|elaterid +skipjack tuna|1 +(noun)|skipjack|Euthynnus pelamis|scombroid|scombroid fish +skipper|4 +(noun)|student|pupil|educatee +(noun)|master|captain|sea captain|officer|ship's officer +(noun)|captain|commissioned naval officer +(verb)|work +skipping rope|1 +(noun)|jump rope|skip rope|rope +skirl|3 +(noun)|sound +(verb)|sound|go +(verb)|play +skirmish|2 +(noun)|brush|clash|encounter|fight|fighting|combat|scrap +(verb)|fight|struggle +skirmisher|1 +(noun)|combatant|battler|belligerent|fighter|scrapper +skirret|1 +(noun)|Sium sisarum|marsh plant|bog plant|swamp plant +skirt|7 +(noun)|cloth covering +(noun)|garment +(noun)|dame|doll|wench|chick|bird|girl|miss|missy|young lady|young woman|fille +(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|dodge|duck|sidestep|avoid +(verb)|travel by|pass by|surpass|go past|go by|pass +(verb)|bound|border +(verb)|surround|border|touch|adjoin|meet|contact +skirt chaser|1 +(noun)|wolf|woman chaser|masher|womanizer|womaniser|philanderer +skirt of tasses|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +skirting|1 +(adj)|encircling|peripheral +skirting board|1 +(noun)|baseboard|mopboard|molding|moulding +skis|2 +(noun)|ski|runner +(noun)|ski|runner +skit|1 +(noun)|acting|playing|playacting|performing +skitter|4 +(verb)|scurry|scamper|scuttle|run +(verb)|glide +(verb)|skim|skip|throw +(verb)|twitch +skittish|1 +(adj)|spooky|nervous|excitable +skittishness|1 +(noun)|restiveness|nervousness +skittle|2 +(noun)|ninepin|skittle pin|bowling pin|pin +(verb)|bowl +skittle alley|1 +(noun)|bowling alley|alley|lane +skittle ball|1 +(noun)|ninepin ball|ball +skittle pin|1 +(noun)|ninepin|skittle|bowling pin|pin +skittles|2 +(noun)|ninepins|bowling +(noun)|ninepin|skittle|skittle pin|bowling pin|pin +skive|1 +(verb)|shave +skivvies|2 +(noun)|Skivvies|underwear|underclothes|underclothing +(noun)|skivvy|slavey|domestic|domestic help|house servant +skivvy|1 +(noun)|slavey|domestic|domestic help|house servant +skopje|1 +(noun)|Skopje|Skoplje|Uskub|national capital +skoplje|1 +(noun)|Skopje|Skoplje|Uskub|national capital +skreak|2 +(verb)|squeak|screech|creak|screak|make noise|resound|noise +(verb)|squawk|screak|skreigh|screech|shout|shout out|cry|call|yell|scream|holler|hollo|squall +skreigh|1 +(verb)|squawk|screak|skreak|screech|shout|shout out|cry|call|yell|scream|holler|hollo|squall +skua|1 +(noun)|bonxie|jaeger +skuld|1 +(noun)|Skuld|Norn +skulduggery|1 +(noun)|trickery|hocus-pocus|slickness|hanky panky|jiggery-pokery|skullduggery|misrepresentation|deceit|deception +skulk|3 +(verb)|lurk|hide|conceal +(verb)|malinger|fiddle|shirk|shrink from|goldbrick +(verb)|walk +skulker|2 +(noun)|malingerer|shammer|slacker|shirker +(noun)|lurker|lurcher|waiter +skulking|2 +(adj)|furtive|lurking|sneak|sneaky|stealthy|surreptitious|concealed +(noun)|malingering|evasion|escape|dodging +skull|1 +(noun)|bone|os +skull and crossbones|1 +(noun)|emblem +skull practice|1 +(noun)|skull session|training|preparation|grooming +skull session|2 +(noun)|session +(noun)|skull practice|training|preparation|grooming +skullcap|2 +(noun)|cap +(noun)|calvaria|bone|os +skullduggery|1 +(noun)|trickery|hocus-pocus|slickness|hanky panky|jiggery-pokery|skulduggery|misrepresentation|deceit|deception +skunk|5 +(noun)|rotter|dirty dog|rat|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|shutout|defeat|licking +(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(noun)|polecat|wood pussy|musteline mammal|mustelid|musteline +(verb)|lurch|get the better of|overcome|defeat +skunk-weed|2 +(noun)|skunkweed|Polemonium viscosum|polemonium +(noun)| +skunk bear|1 +(noun)|wolverine|carcajou|Gulo luscus|musteline mammal|mustelid|musteline +skunk cabbage|2 +(noun)|polecat weed|foetid pothos|Symplocarpus foetidus|marsh plant|bog plant|swamp plant +(noun)|Lysichiton americanum|marsh plant|bog plant|swamp plant +skunkbush|1 +(noun)|squawbush|squaw-bush|Rhus trilobata|sumac|sumach|shumac +skunkweed|1 +(noun)|skunk-weed|Polemonium viscosum|polemonium +sky|2 +(noun)|entity +(verb)|flip|toss|pitch|fling +sky-blue|2 +(adj)|azure|cerulean|bright blue|chromatic +(noun)|azure|cerulean|sapphire|lazuline|blue|blueness +sky-high|1 +(adv)|enthusiastically +sky burial|1 +(noun)|funeral +sky dive|2 +(verb)|skydive|parachute|jump +(verb)| +sky glow|1 +(noun)|glow +sky marshal|1 +(noun)|air marshal|marshal|marshall +sky pilot|1 +(noun)|military chaplain|padre|Holy Joe|chaplain +sky wave|1 +(noun)|radio wave|radio emission|radio radiation +skybox|1 +(noun)|box|loge|stadium|bowl|arena|sports stadium +skycap|1 +(noun)|porter +skydive|1 +(verb)|sky dive|parachute|jump +skydiver|1 +(noun)|parachutist|parachuter|parachute jumper +skydiving|1 +(noun)|jump|parachuting +skye terrier|1 +(noun)|Skye terrier|terrier +skyhook|2 +(noun)|helicopter|chopper|whirlybird|eggbeater +(noun)|hook +skyjack|1 +(verb)|commandeer|hijack|highjack|pirate +skylab|1 +(noun)|Skylab|space station|space platform|space laboratory +skylark|2 +(noun)|Alauda arvensis|lark +(verb)|frolic|lark|rollick|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play +skylight|1 +(noun)|fanlight|window +skyline|2 +(noun)|outline|lineation +(noun)|horizon|apparent horizon|visible horizon|sensible horizon|line +skyrocket|3 +(noun)|rocket|visual signal +(noun)|rocket|firework|pyrotechnic +(verb)|rocket|rise|lift|arise|move up|go up|come up|uprise +skysail|1 +(noun)|sail|canvas|canvass|sheet +skyscraper|1 +(noun)|building|edifice +skywalk|1 +(noun)|walk|walkway|paseo +skyward|2 +(adj)|heavenward|up +(adv)|skywards +skywards|1 +(adv)|skyward +skyway|1 +(noun)|air lane|flight path|airway|path|route|itinerary +skywriting|1 +(noun)|writing +sl|1 +(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization|terrorist group|foreign terrorist organization|FTO +slab|1 +(noun)|block +slabber|1 +(verb)|drivel|drool|slaver|slobber|dribble|salivate +slack|17 +(adj)|loose|lax +(adj)|flaccid|lax|limp|weak +(adj)|standing +(adj)|lax|negligent +(noun)|debris|dust|junk|rubble|detritus +(noun)|slump|drop-off|falloff|falling off|deterioration|decline in quality|declension|worsening +(noun)|stretch +(noun)|slackness|looseness|play +(noun)|cord +(verb)|fiddle|shirk|shrink from|goldbrick +(verb)|neglect +(verb)|loosen|loose +(verb)|slacken|slack up|relax|decrease|lessen|minify +(verb)|slow|slow down|slow up|slacken|weaken +(verb)|slake|abate|decrease|lessen|minify +(verb)|abate|let up|slack off|die away|decrease|diminish|lessen|fall +(verb)|slake|hydrate +slack off|1 +(verb)|abate|let up|slack|die away|decrease|diminish|lessen|fall +slack suit|1 +(noun)|suit|suit of clothes +slack tide|1 +(noun)|slack water|tide +slack up|1 +(verb)|slack|slacken|relax|decrease|lessen|minify +slack water|1 +(noun)|slack tide|tide +slacken|4 +(verb)|slow|slow down|slow up|slack|weaken +(verb)|slack|slack up|relax|decrease|lessen|minify +(verb)|weaken|slacken off +(verb)|remit|loosen|loose +slacken off|1 +(verb)|ease up|ease off|flag|decrease|diminish|lessen|fall +slackening|1 +(noun)|relaxation|loosening|weakening +slacker|1 +(noun)|shirker|idler|loafer|do-nothing|layabout|bum +slacking|1 +(noun)|shirking|soldiering|goofing off|goldbricking|evasion|escape|dodging +slackly|1 +(adv)|loosely +slackness|1 +(noun)|slack|looseness|play +slacks|6 +(noun)|trousers|pants +(noun)|slack|debris|dust|junk|rubble|detritus +(noun)|slump|slack|drop-off|falloff|falling off|deterioration|decline in quality|declension|worsening +(noun)|slack|stretch +(noun)|slack|slackness|looseness|play +(noun)|slack|cord +slag|1 +(noun)|scoria|dross|scum +slag code|1 +(noun)|logic bomb|malevolent program +slagheap|1 +(noun)|pile|heap|mound|cumulus +slain|2 +(adj)|dead +(noun)|dead +slake|3 +(verb)|quench|allay|assuage|meet|satisfy|fill|fulfill|fulfil +(verb)|abate|slack|decrease|lessen|minify +(verb)|slack|hydrate +slaked|1 +(adj)|quenched|satisfied|mitigated +slaked lime|1 +(noun)|calcium hydroxide|lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide|hydrated oxide +slalom|2 +(noun)|ski race|skiing race +(verb)|ski +slam|8 +(noun)|sweep|victory|triumph +(noun)|noise +(noun)|impact +(noun)|shot|shaft|dig|barb|jibe|gibe|remark|comment +(verb)|bang|close|shut +(verb)|bang|hit +(verb)|slam dance|mosh|thrash|dance|trip the light fantastic|trip the light fantastic toe +(verb)|flap down|throw +slam-bang|3 +(adj)|violent +(adv)|slapdash +(adv)|slap-bang +slam-dunk|2 +(verb)|affect|impact|bear upon|bear on|touch on|touch +(verb)|dunk +slam dance|2 +(noun)|slam dancing|dancing|dance|terpsichore|saltation +(verb)|slam|mosh|thrash|dance|trip the light fantastic|trip the light fantastic toe +slam dancing|1 +(noun)|slam dance|dancing|dance|terpsichore|saltation +slam dunk|2 +(noun)|certainty|sure thing|foregone conclusion +(noun)|dunk|dunk shot|stuff shot +slam on|1 +(verb)|slap on|clap on|put on|apply +slammer|2 +(noun)|closer|finisher +(noun)|jail|jailhouse|gaol|clink|correctional institution +slander|3 +(noun)|defamation|calumny|obloquy|traducement|hatchet job|speech act +(noun)|aspersion|calumny|defamation|denigration|attack +(verb)|defame|smirch|asperse|denigrate|calumniate|smear|sully|besmirch|charge|accuse +slanderer|1 +(noun)|defamer|maligner|vilifier|libeler|backbiter|traducer|detractor|disparager|depreciator|knocker +slanderous|1 +(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|libelous|harmful +slanderously|1 +(adv)|calumniously +slang|5 +(noun)|non-standard speech +(noun)|cant|jargon|lingo|argot|patois|vernacular|non-standard speech +(verb)|speak|talk +(verb)|gull|dupe|befool|cod|fool|put on|take in|put one over|put one across|deceive|betray|lead astray +(verb)|abuse|clapperclaw|blackguard|shout +slanginess|1 +(noun)|casualness|familiarity +slanguage|1 +(noun)|language|linguistic communication +slangy|1 +(adj)|informal +slant|6 +(noun)|angle|point of view|viewpoint|stand|standpoint +(noun)|pitch|rake|gradient|slope +(verb)|lie +(verb)|angle|weight|bias|predetermine +(verb)|lean|tilt|tip|angle|bend|flex +(verb)|cant|cant over|tilt|pitch|move +slant-eye|1 +(noun)|gook|Oriental|oriental person +slanted|2 +(adj)|aslant|aslope|diagonal|slanting|sloped|sloping|inclined +(adj)|biased|colored|coloured|one-sided|partial |unfair +slanting|1 +(adj)|aslant|aslope|diagonal|slanted|sloped|sloping|inclined +slantingly|1 +(adv)|slopingly +slantways|1 +(adv)|slantwise +slantwise|1 +(adv)|slantways +slap|4 +(noun)|smack|bump|blow +(noun)|smack|smacking|blow +(verb)|strike +(adv)|bang|slapdash|smack|bolt +slap-bang|1 +(adv)|slam-bang +slap-up|1 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|swell|smashing|good +slap on|1 +(verb)|clap on|slam on|put on|apply +slap together|1 +(verb)|clap up|clap together|produce|make|create +slapdash|3 +(adj)|haphazard|slipshod|sloppy|careless +(adv)|slam-bang +(adv)|bang|slap|smack|bolt +slaphappy|2 +(adj)|carefree|devil-may-care|freewheeling|happy-go-lucky|harum-scarum|irresponsible +(adj)|punch-drunk|silly|confused +slapped|1 +(adj)|cuffed|abused |ill-treated|maltreated|mistreated +slapper|1 +(noun)|spanker|hitter|striker +slapshot|1 +(noun)|shot +slapstick|3 +(adj)|humorous |humourous +(noun)|comedy +(noun)|acoustic device +slash|9 +(noun)|cut|gash|slice|wound|lesion +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|solidus|virgule|diagonal|stroke|separatrix|punctuation|punctuation mark +(noun)|gash|cut|cutting +(verb)|cut down|cut +(verb)|flog|welt|whip|lather|lash|strap|trounce|beat|beat up|work over +(verb)|gash|cut +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|convulse|thresh|thresh about|thrash|thrash about|toss|jactitate|shake|agitate +slash pocket|1 +(noun)|pocket +slashed|4 +(adj)|patterned +(adj)|cut +(adj)|cut|gashed|injured +(adj)|cut|decreased |reduced +slasher|2 +(noun)|attacker|aggressor|assailant|assaulter +(noun)|weapon|arm|weapon system +slashing|1 +(adj)|dynamic |dynamical +slask|1 +(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area|geographic area|geographical region|geographic region +slat|3 +(noun)|spline|strip +(verb)|supply|provide|render|furnish +(verb)|close|shut +slate|7 +(noun)|tablet +(noun)|slating|roofing material +(noun)|sedimentary rock +(noun)|ticket|list|listing +(verb)|intend|destine|designate|specify +(verb)|cross-file|register +(verb)|roof +slate-colored junco|1 +(noun)|dark-eyed junco|Junco hyemalis|junco|snowbird +slate-gray|1 +(adj)|slaty|slatey|stone-gray|achromatic +slate club|1 +(noun)|club|society|guild|gild|lodge|order +slate pencil|1 +(noun)|pencil +slate roof|1 +(noun)|roof +slater|1 +(noun)|woodlouse|isopod +slatey|2 +(adj)|slaty|hard +(adj)|slate-gray|slaty|stone-gray|achromatic +slather|1 +(verb)|spread +slating|3 +(noun)|slate|roofing material +(noun)|criticism|unfavorable judgment +(noun)|roofing +slattern|2 +(noun)|streetwalker|street girl|hooker|hustler|floozy|floozie|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +(noun)|slut|slovenly woman|trollop|slob|sloven|pig|slovenly person +slatternliness|1 +(noun)|sluttishness|slovenliness +slatternly|1 +(adj)|blowsy|blowzy|sluttish|untidy +slaty|2 +(adj)|slatey|hard +(adj)|slate-gray|slatey|stone-gray|achromatic +slaughter|5 +(noun)|killing|kill|putting to death +(noun)|thrashing|walloping|debacle|drubbing|trouncing|whipping|defeat|licking +(noun)|massacre|mass murder|carnage|butchery|murder|slaying|execution +(verb)|butcher|kill +(verb)|massacre|mow down|kill +slaughterer|1 +(noun)|butcher|skilled worker|trained worker +slaughterhouse|1 +(noun)|abattoir|butchery|shambles|building|edifice +slaughterous|1 +(adj)|gory|sanguinary|sanguineous|butcherly|bloody +slav|2 +(adj)|Slav|person|individual|someone|somebody|mortal|human|soul +(noun)|Slav|person|individual|someone|somebody|mortal|human|soul +slave|5 +(adj)|slave |bond|enslaved|enthralled|in bondage|slaveholding|servile|unfree +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|striver|hard worker|worker +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|break one's back|buckle down|knuckle down|work|do work +slave-maker|1 +(noun)|slave-making ant|ant|emmet|pismire +slave-making ant|1 +(noun)|slave-maker|ant|emmet|pismire +slave ant|1 +(noun)|ant|emmet|pismire +slave dealer|1 +(noun)|slaver|slave trader|victimizer|victimiser +slave driver|2 +(noun)|Simon Legree|employer +(noun)|taskmaster +slave market|1 +(noun)|marketplace|mart +slave owner|1 +(noun)|slaveholder|slaver|owner|possessor +slave ship|1 +(noun)|ship +slave state|1 +(noun)|American state +slave trade|1 +(noun)|slave traffic|traffic +slave trader|1 +(noun)|slaver|slave dealer|victimizer|victimiser +slave traffic|1 +(noun)|slave trade|traffic +slaveholder|1 +(noun)|slave owner|slaver|owner|possessor +slaveholding|2 +(adj)|slave +(noun)|slavery|practice|pattern +slaveless|1 +(adj)|free-soil|free +slavelike|1 +(adj)|servile +slaver|3 +(noun)|slave dealer|slave trader|victimizer|victimiser +(noun)|slaveholder|slave owner|owner|possessor +(verb)|drivel|drool|slabber|slobber|dribble|salivate +slavery|3 +(noun)|bondage|thrall|thralldom|thraldom|subjugation|subjection +(noun)|slaveholding|practice|pattern +(noun)|labor|labour|toil +slavey|1 +(noun)|skivvy|domestic|domestic help|house servant +slavic|2 +(adj)|Slavonic|Slavic|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +slavic language|1 +(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +slavic people|1 +(noun)|Slavic people|Slavic race|race +slavic race|1 +(noun)|Slavic people|Slavic race|race +slavish|2 +(adj)|unoriginal +(adj)|subservient|submissive|servile +slavonic|2 +(adj)|Slavonic|Slavic|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +slavonic language|1 +(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic|Balto-Slavic language|Balto-Slavonic +slaw|1 +(noun)|coleslaw|salad +slay|1 +(verb)|murder|hit|dispatch|bump off|polish off|remove|kill +slayer|1 +(noun)|killer|person|individual|someone|somebody|mortal|human|soul +slaying|1 +(noun)|murder|execution|homicide +sle|1 +(noun)|systemic lupus erythematosus|SLE|disseminated lupus erythematosus|lupus +sleaze|1 +(noun)|cheapness|tackiness|tat|tastelessness +sleazy|3 +(adj)|thin +(adj)|bum|cheap|cheesy|chintzy|crummy|punk|tinny|inferior +(adj)|seamy|seedy|sordid|squalid|disreputable +sled|2 +(noun)|sledge|sleigh|vehicle +(verb)|sleigh|ride +sled dog|1 +(noun)|sledge dog|working dog +sledder|1 +(noun)|athlete|jock +sledding|2 +(noun)|sport|athletics +(noun)|going|accomplishment|achievement +sledge|5 +(noun)|sled|sleigh|vehicle +(noun)|maul|sledgehammer|hammer +(verb)|transport +(verb)|travel|journey +(verb)|sledgehammer|hammer +sledge dog|1 +(noun)|sled dog|working dog +sledgehammer|2 +(noun)|maul|sledge|hammer +(verb)|sledge|hammer +sleek|3 +(adj)|glossy|satiny|silken|silky|silklike|slick|smooth +(adj)|groomed +(verb)|slick|polish|smooth|smoothen|shine +sleek down|1 +(verb)|slick|slick down|comb|comb out|disentangle +sleek over|1 +(verb)|whitewash|gloss over|hush up|cover|cover up +sleekness|1 +(noun)|silkiness|smoothness +sleep|6 +(noun)|slumber|physiological state|physiological condition +(noun)|physiological state|physiological condition +(noun)|nap|time period|period of time|period +(noun)|rest|eternal rest|eternal sleep|quietus|death +(verb)|kip|slumber|log Z's|catch some Z's|rest|sleep in|sleep late|sleep in|sleep out +(verb)|accommodate|hold|admit +sleep-learning|1 +(noun)|hypnopedia|teaching|instruction|pedagogy +sleep apnea|1 +(noun)|apnea|sleep disorder +sleep disorder|1 +(noun)|disorder|upset +sleep in|2 +(verb)|sleep late|sleep|kip|slumber|log Z's|catch some Z's +(verb)|live in|board +sleep late|1 +(verb)|sleep in|sleep|kip|slumber|log Z's|catch some Z's +sleep off|1 +(verb)|lose +sleep out|1 +(verb)|live out|commute|travel back and forth +sleep over|1 +(verb)|stay over|lodge +sleep talking|1 +(noun)|somniloquy|somniloquism|sleeping|utterance|vocalization +sleep terror disorder|1 +(noun)|pavor nocturnus|sleep disorder +sleep with|1 +(verb)|roll in the hay|love|make out|make love|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk|copulate|mate|pair|couple +sleeper|8 +(noun)|slumberer|rester +(noun)|spy|undercover agent|saboteur|wrecker|diversionist|terrorist +(noun)|achiever|winner|success|succeeder +(noun)|tie|railroad tie|crosstie|brace|bracing +(noun)|sleeping car|wagon-lit|passenger car|coach|carriage +(noun)|furniture|piece of furniture|article of furniture +(noun)|sleeper goby|percoid fish|percoid|percoidean +(noun)|hit|smash|smasher|strike|bang +sleeper cell|1 +(noun)|cell|cadre +sleeper goby|1 +(noun)|sleeper|percoid fish|percoid|percoidean +sleeper nest|1 +(noun)|nest +sleepers|9 +(noun)|pajamas|pyjamas|pj's|jammies +(noun)|sleeper|slumberer|rester +(noun)|sleeper|spy|undercover agent|saboteur|wrecker|diversionist|terrorist +(noun)|sleeper|achiever|winner|success|succeeder +(noun)|tie|railroad tie|crosstie|sleeper|brace|bracing +(noun)|sleeping car|sleeper|wagon-lit|passenger car|coach|carriage +(noun)|sleeper|furniture|piece of furniture|article of furniture +(noun)|sleeper|sleeper goby|percoid fish|percoid|percoidean +(noun)|sleeper|hit|smash|smasher|strike|bang +sleepiness|1 +(noun)|drowsiness|somnolence|temporary state +sleeping|4 +(adj)|dormant|unerect +(noun)|sleep|slumber +(noun)|quiescence|quiescency|dormancy|rest|ease|repose|relaxation +(noun)|bodily process|body process|bodily function|activity +sleeping around|1 +(noun)|promiscuity|promiscuousness|sexual activity|sexual practice|sex|sex activity +sleeping bag|1 +(noun)|bag +sleeping beauty|3 +(noun)|Sleeping Beauty|princess +(noun)|sleeper|slumberer +(noun)|target company|takeover target +sleeping capsule|1 +(noun)|sleeping pill|sleeping tablet|sleeping draught|soporific|hypnotic|pill|lozenge|tablet|tab +sleeping car|1 +(noun)|sleeper|wagon-lit|passenger car|coach|carriage +sleeping draught|1 +(noun)|sleeping pill|sleeping tablet|sleeping capsule|soporific|hypnotic|pill|lozenge|tablet|tab +sleeping hibiscus|1 +(noun)|waxmallow|wax mallow|mallow +sleeping partner|1 +(noun)|silent partner|partner +sleeping pill|1 +(noun)|sleeping tablet|sleeping capsule|sleeping draught|soporific|hypnotic|pill|lozenge|tablet|tab +sleeping room|1 +(noun)|bedroom|chamber|bedchamber|room +sleeping sickness|1 +(noun)|sleepy sickness|epidemic encephalitis|lethargic encephalitis|encephalitis lethargica|encephalitis|cephalitis|phrenitis +sleeping tablet|1 +(noun)|sleeping pill|sleeping capsule|sleeping draught|soporific|hypnotic|pill|lozenge|tablet|tab +sleepless|2 +(adj)|insomniac|watchful|awake +(adj)|lidless|alert +sleepless person|1 +(noun)|insomniac|sick person|diseased person|sufferer +sleeplessness|1 +(noun)|wakefulness|temporary state +sleepover|1 +(noun)|affair|occasion|social occasion|function|social function +sleepwalk|1 +(verb)|somnambulate|walk +sleepwalker|1 +(noun)|somnambulist|noctambulist|sleeper|slumberer +sleepwalking|1 +(noun)|somnambulism|somnambulation|noctambulism|noctambulation|sleeping|walk|walking +sleepy|1 +(adj)|sleepy-eyed|sleepyheaded|asleep +sleepy-eyed|1 +(adj)|sleepy|sleepyheaded|asleep +sleepy dick|1 +(noun)|starflower|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem +sleepy sickness|1 +(noun)|sleeping sickness|epidemic encephalitis|lethargic encephalitis|encephalitis lethargica|encephalitis|cephalitis|phrenitis +sleepyhead|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sleepyheaded|1 +(adj)|sleepy|sleepy-eyed|asleep +sleet|2 +(noun)|precipitation|downfall +(verb)|precipitate|come down|fall +sleety|1 +(adj)|frozen +sleeve|2 +(noun)|arm|cloth covering +(noun)|case +sleeved|1 +(adj)|sleeved +sleeveless|2 +(adj)|sleeveless +(adj)|bootless|fruitless|futile|vain|unproductive +sleigh|2 +(noun)|sled|sledge|vehicle +(verb)|sled|ride +sleigh bed|1 +(noun)|bed +sleigh bell|1 +(noun)|cascabel|bell +sleight|1 +(noun)|dexterity|manual dexterity|adeptness|adroitness|deftness|facility|quickness +sleight of hand|1 +(noun)|prestidigitation|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|illusion|deception +slender|5 +(adj)|slight|slim|thin |lean +(adj)|thin|narrow +(adj)|thin +(adj)|slim|small +(adj)|lissome|lissom|lithe|lithesome|supple|svelte|sylphlike|graceful +slender-tailed meerkat|1 +(noun)|Suricata suricatta|meerkat|mierkat +slender-waisted|1 +(adj)|slim-waisted|wasp-waisted|thin |lean +slender centaury|1 +(noun)|centaury +slender knapweed|1 +(noun)|knapweed +slender lady palm|1 +(noun)|reed rhapis|Rhapis humilis|lady palm +slender loris|1 +(noun)|Loris gracilis|lemur +slender rush|1 +(noun)|Juncus tenuis|rush +slender salamander|1 +(noun)|worm salamander|salamander +slender spike rush|1 +(noun)|needle spike rush|needle rush|hair grass|Eleocharis acicularis|spike rush +slender wheatgrass|1 +(noun)|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass|wheat-grass +slender wild oat|1 +(noun)|Avena barbata|oat +slenderise|1 +(verb)|slenderize|change|alter|modify +slenderize|2 +(verb)|slenderise|change|alter|modify +(verb)|reduce|melt off|lose weight|slim|thin|slim down|change state|turn +slenderly|2 +(adv)|slimly|slightly +(adv)|meagerly|sparingly|meagrely +slenderness|2 +(noun)|thinness|tenuity|dimension +(noun)|slightness|slimness|leanness|thinness +sleuth|2 +(noun)|sleuthhound|detective +(verb)|spy|stag|snoop|monitor|supervise|ride herd on +sleuthhound|2 +(noun)|sleuth|detective +(noun)|bloodhound|hound|hound dog +sleuthing|1 +(noun)|detection|detecting|detective work|police work|police investigation +slew|4 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(verb)|swerve|sheer|curve|trend|veer|slue|cut|turn +(verb)|skid|slip|slue|slide|glide +(verb)|murder|slay|hit|dispatch|bump off|polish off|remove|kill +slews|2 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +slezsko|1 +(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area|geographic area|geographical region|geographic region +slice|10 +(noun)|piece|share|portion|part|percentage +(noun)|piece|helping|portion|serving +(noun)|cut|gash|slash|wound|lesion +(noun)|fade|slicing|golf stroke|golf shot|swing +(noun)|part|piece +(noun)|spatula +(verb)|slit|cut +(verb)|hit +(verb)|slice up|cut +(verb)|strike|hit +slice bar|1 +(noun)|bar +slice into|1 +(verb)|slice through|travel|go|move|locomote +slice through|1 +(verb)|slice into|travel|go|move|locomote +slice up|1 +(verb)|slice|cut +sliced|2 +(adj)|chopped|shredded|cut +(adj)|carved |carven +slicer|3 +(noun)|golfer|golf player|linksman +(noun)|machine +(noun)|knife +slicing|2 +(noun)|slice|fade|golf stroke|golf shot|swing +(noun)|cut|cutting +slick|10 +(adj)|glossy|satiny|sleek|silken|silky|silklike|smooth +(adj)|slippery |slippy +(adj)|glib|pat|plausible +(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|sly|tricksy|tricky|wily|artful +(noun)|slickness|slipperiness|slip|smoothness +(noun)|slick magazine|magazine|mag +(noun)|film +(noun)|trowel +(verb)|sleek|polish|smooth|smoothen|shine +(verb)|slick down|sleek down|comb|comb out|disentangle +slick down|1 +(verb)|slick|sleek down|comb|comb out|disentangle +slick magazine|1 +(noun)|slick|magazine|mag +slick up|2 +(verb)|spruce up|spruce|titivate|tittivate|smarten up|spiff up|beautify|embellish|prettify +(verb)|spruce up|spruce|smarten up|groom|neaten +slicked|1 +(adj)|plastered|groomed +slicked up|1 +(adj)|tidy +slicker|3 +(noun)|oilskin|macintosh|mackintosh|mac|mack +(noun)|sophisticate|man of the world +(noun)|deceiver|cheat|cheater|trickster|beguiler|wrongdoer|offender +slickly|1 +(adv)|glibly +slickness|3 +(noun)|trickery|hocus-pocus|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation|deceit|deception +(noun)|glibness|superficiality|shallowness +(noun)|slick|slipperiness|slip|smoothness +slide|10 +(noun)|microscope slide|plate glass|sheet glass +(noun)|descent +(noun)|swoop|glissando +(noun)|plaything|toy +(noun)|glide|coast|motion|movement|move +(noun)|lantern slide|foil|transparency +(noun)|chute|slideway|sloping trough|gutter|trough +(verb)|skid|slip|slue|slew|glide +(verb)|slither|travel|go|move|locomote|slide down|slide by +(verb)|move|displace +slide action|1 +(noun)|pump action|action|action mechanism +slide by|1 +(verb)|elapse|lapse|pass|slip by|glide by|slip away|go by|go along|advance|progress|pass on|move on|march on|go on +slide down|1 +(verb)|slump|sink|collapse|fall in|cave in|give|give way|break|founder +slide fastener|1 +(noun)|zip|zipper|zip-fastener|fastener|fastening|holdfast|fixing +slide projector|1 +(noun)|projector +slide rule|1 +(noun)|slipstick|analog computer|analogue computer +slide valve|1 +(noun)|valve +slider|4 +(noun)|skidder|slipper|person|individual|someone|somebody|mortal|human|soul +(noun)|luger|sledder +(noun)|yellow-bellied terrapin|Pseudemys scripta|turtle +(noun)|fastball|heater|smoke|hummer|bullet +slideway|1 +(noun)|chute|slide|sloping trough|gutter|trough +sliding|1 +(adj)|slippery |slippy +sliding door|1 +(noun)|door +sliding keel|1 +(noun)|centerboard|centreboard|drop keel|fin keel +sliding scale|1 +(noun)|wage scale|wage schedule +sliding seat|1 +(noun)|seat +sliding window|1 +(noun)|window +slight|5 +(adj)|flimsy|tenuous|thin|weak +(adj)|little +(adj)|slender|slim|thin |lean +(noun)|rebuff|discourtesy|offense|offence|offensive activity +(verb)|cold-shoulder|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +slight care|1 +(noun)|care|charge|tutelage|guardianship +slightest|4 +(adj)|least +(adj)|flimsy|slight|tenuous|thin|weak +(adj)|slight|little +(adj)|slender|slight|slim|thin |lean +slighting|1 +(adj)|belittling|deprecating|deprecative|deprecatory|depreciative|depreciatory|uncomplimentary +slightingly|1 +(adv)|disparagingly +slightly|2 +(adv)|somewhat +(adv)|slenderly|slimly +slightness|3 +(noun)|pettiness|triviality|unimportance +(noun)|delicacy|smallness|littleness +(noun)|slenderness|slimness|leanness|thinness +slim|3 +(adj)|slender|slight|thin |lean +(adj)|slender|small +(verb)|reduce|melt off|lose weight|slenderize|thin|slim down|change state|turn +slim-waisted|1 +(adj)|slender-waisted|wasp-waisted|thin |lean +slim chance|1 +(noun)|fat chance|probability|chance +slim down|1 +(verb)|reduce|melt off|lose weight|slim|slenderize|thin|change state|turn +slime|2 +(noun)|sludge|goo|gook|guck|gunk|muck|ooze|substance|matter +(verb)|dirty|soil|begrime|grime|colly|bemire +slime bacteria|1 +(noun)|myxobacteria|myxobacterium|myxobacter|gliding bacteria|eubacteria|eubacterium|true bacteria +slime eels|1 +(noun)|hagfish|hag|jawless vertebrate|jawless fish|agnathan +slime mold|1 +(noun)|slime mould|fungus +slime mould|1 +(noun)|slime mold|fungus +slime mushroom|1 +(noun)|Amanita|genus Amanita +slimed|1 +(adj)|slimy|slippery |slippy +sliminess|2 +(noun)|viscosity|viscousness +(noun)|loathsomeness|repulsiveness|vileness|offensiveness|odiousness|distastefulness +slimly|1 +(adv)|slenderly|slightly +slimness|1 +(noun)|slenderness|slightness|leanness|thinness +slimy|1 +(adj)|slimed|slippery |slippy +sling|6 +(noun)|highball +(noun)|slingshot|catapult|plaything|toy +(noun)|slingback|shoe +(noun)|weapon|arm|weapon system +(noun)|scarf bandage|triangular bandage|bandage|patch +(verb)|catapult|hurl|hurtle|cast +slingback|1 +(noun)|sling|shoe +slinger|1 +(noun)|thrower +slinger ring|1 +(noun)|dispenser +slinging|1 +(noun)|throw +slingshot|1 +(noun)|sling|catapult|plaything|toy +slink|1 +(verb)|walk +slip|24 +(noun)|faux pas|gaffe|solecism|gaucherie|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(noun)|slip-up|miscue|parapraxis|mistake|error|fault +(noun)|potter's clay|potter's earth +(noun)|cutting|stalk|stem +(noun)|young person|youth|younker|spring chicken +(noun)|mooring|moorage|berth|anchorage|anchorage ground +(noun)|trip|mishap|misadventure|mischance +(noun)|slickness|slick|slipperiness|smoothness +(noun)|strip|artifact|artefact +(noun)|slip of paper|sheet|piece of paper|sheet of paper +(noun)|chemise|shimmy|shift|teddies|teddy|undergarment +(noun)|case|pillowcase|pillow slip|bed linen +(noun)|skid|sideslip|slide|glide|coast +(noun)|sideslip|flight maneuver|airplane maneuver +(noun)|elusion|eluding|evasion +(verb)|steal|move|slip away +(verb)|insert|enclose|inclose|stick in|put in|introduce +(verb)|skid|slue|slew|slide|glide|slip up +(verb)|drop off|drop away|fall away|worsen|decline +(verb)|escape|get away|break loose|slip by|slip away +(verb)|err|mistake|slip up +(verb)|sneak|pass|hand|reach|pass on|turn over|give +(verb)|slip one's mind|forget|block|blank out|draw a blank +(verb)|dislocate|luxate|splay|move|displace +slip-joint pliers|1 +(noun)|pliers|pair of pliers|plyers +slip-on|1 +(noun)|clothing|article of clothing|vesture|wear +slip-skin grape|1 +(noun)|fox grape|grape +slip-up|1 +(noun)|slip|miscue|parapraxis|mistake|error|fault +slip away|2 +(verb)|steal away|sneak away|sneak off|sneak out|leave|go forth|go away +(verb)|elapse|lapse|pass|slip by|glide by|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +slip by|1 +(verb)|elapse|lapse|pass|glide by|slip away|go by|slide by|go along|advance|progress|pass on|move on|march on|go on +slip carriage|1 +(noun)|slip coach|car|railcar|railway car|railroad car +slip clutch|1 +(noun)|slip friction clutch|friction clutch +slip coach|1 +(noun)|slip carriage|car|railcar|railway car|railroad car +slip friction clutch|1 +(noun)|slip clutch|friction clutch +slip in|1 +(verb)|stick in|sneak in|insert|add|append|supply +slip noose|1 +(noun)|noose|running noose|loop +slip of paper|1 +(noun)|slip|sheet|piece of paper|sheet of paper +slip of the tongue|1 +(noun)|misstatement +slip off|1 +(verb)|take off +slip on|1 +(verb)|wear|put on|get into|don|assume +slip one's mind|1 +(verb)|slip|forget|block|blank out|draw a blank +slip ring|1 +(noun)|connection|connexion|connector|connecter|connective +slip road|1 +(noun)|access road|road|route +slip stitch|1 +(noun)|stitch +slip up|1 +(verb)|stumble|trip up|err|mistake|slip +slipcover|1 +(noun)|cloth covering +slipknot|1 +(noun)|knot +slipover|1 +(noun)|pullover|sweater +slippage|3 +(noun)|decrease|decrement +(noun)|decline|diminution +(noun)|motion|movement|move +slipped disc|1 +(noun)|herniated disc|ruptured intervertebral disc|rupture +slipper|2 +(noun)|carpet slipper|footwear|footgear +(noun)|skidder|slider|person|individual|someone|somebody|mortal|human|soul +slipper orchid|1 +(noun)|lady's slipper|lady-slipper|ladies' slipper|orchid|orchidaceous plant +slipper plant|1 +(noun)|slipper spurge|shrub|bush +slipper spurge|1 +(noun)|slipper plant|shrub|bush +slippered|1 +(adj)|shod |shodden|shoed +slipperiness|2 +(noun)|slickness|slick|slip|smoothness +(noun)|rascality|shiftiness|trickiness|dishonesty +slipperwort|1 +(noun)|calceolaria|flower +slippery|2 +(adj)|slippery |slippy|lubricious|nonstick|slick|sliding|slimed|slimy|slithery|slipping|slithering|smooth +(adj)|tricky|teflon|untrustworthy |untrusty +slippery dick|1 +(noun)|Halicoeres bivittatus|wrasse +slippery elm|1 +(noun)|red elm|Ulmus rubra|elm|elm tree +slipping|1 +(adj)|slithering|slippery |slippy +slippy|1 +(adj)|slippery |lubricious|nonstick|slick|sliding|slimed|slimy|slithery|slipping|slithering|smooth +slipshod|1 +(adj)|haphazard|slapdash|sloppy|careless +slipstick|1 +(noun)|slide rule|analog computer|analogue computer +slipstream|1 +(noun)|airstream|race|backwash|wash|flow +slipway|1 +(noun)|ways|shipway|structure|construction +slit|6 +(noun)|opening +(noun)|cunt|puss|pussy|snatch|twat|female genitalia|female genitals|female genital organ|fanny +(noun)|incision|scratch|prick|dent|depression|impression|imprint +(noun)|crack|cleft|crevice|fissure|scissure +(verb)|slice|cut +(verb)|incise +slit trench|1 +(noun)|trench +slither|1 +(verb)|slide|travel|go|move|locomote +slithering|1 +(adj)|slipping|slippery |slippy +slithery|1 +(adj)|slippery |slippy +sliver|5 +(noun)|splinter|flinders|bit|chip|flake|fleck|scrap +(noun)|paring|shaving|fragment +(verb)|splinter|divide|split|split up|separate|dissever|carve up +(verb)|splinter|break up|fragment|fragmentize|fragmentise +(verb)|shape|form +slivery|1 +(adj)|splintery|fragment +slivovitz|1 +(noun)|brandy +slo-bid|1 +(noun)|aminophylline|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator +sloanea|1 +(noun)|Sloanea|genus Sloanea|dilleniid dicot genus +sloanea jamaicensis|1 +(noun)|breakax|breakaxe|break-axe|Sloanea jamaicensis|tree +slob|1 +(noun)|sloven|pig|slovenly person|vulgarian +slobber|2 +(noun)|drool|dribble|drivel|saliva|spit|spittle +(verb)|drivel|drool|slabber|slaver|dribble|salivate|slobber over +slobber over|1 +(verb)|drool over|idolize|idolise|worship|hero-worship|revere +slobberer|1 +(noun)|dribbler|driveller|drooler|person|individual|someone|somebody|mortal|human|soul +sloe|3 +(noun)|Allegheny plum|Alleghany plum|Prunus alleghaniensis|wild plum|wild plum tree +(noun)|blackthorn|Prunus spinosa|shrub|bush +(noun)|plum +sloe gin|1 +(noun)|gin +slog|3 +(verb)|plug away|peg away|keep one's nose to the grindstone|keep one's shoulder to the wheel|work +(verb)|footslog|plod|trudge|pad|tramp|walk +(verb)|slug|swig|hit +slogan|1 +(noun)|motto|catchword|shibboleth|saying|expression|locution +sloganeer|2 +(noun)|propagandist +(verb)|coin +sloganeering|1 +(noun)|persuasion|suasion +slogger|3 +(noun)|trudger|plodder|pedestrian|walker|footer +(noun)|plodder|hack|drudge|hacker +(noun)|slugger|boxer|pugilist +sloop|1 +(noun)|sailing vessel|sailing ship +sloop of war|1 +(noun)|warship|war vessel|combat ship +slop|5 +(noun)|slops|swill|pigswill|pigwash|feed|provender +(verb)|spill|splatter|move|displace +(verb)|squelch|squish|splash|splosh|slosh|slog|footslog|plod|trudge|pad|tramp +(verb)|ladle|lade|laden +(verb)|swill|feed|give +slop-seller|2 +(noun)|slopseller|trader|bargainer|dealer|monger +(noun)| +slop basin|1 +(noun)|slop bowl|bowl +slop bowl|1 +(noun)|slop basin|bowl +slop chest|1 +(noun)|commissary +slop jar|1 +(noun)|slop pail|bucket|pail +slop pail|1 +(noun)|slop jar|bucket|pail +slope|3 +(noun)|incline|side|geological formation|formation +(noun)|gradient|position|spatial relation +(verb)|incline|pitch|lean|tilt|tip|slant|angle +sloped|1 +(adj)|aslant|aslope|diagonal|slanted|slanting|sloping|inclined +sloping|2 +(adj)|aslant|aslope|diagonal|slanted|slanting|sloped|inclined +(adj)|gradual +sloping trough|1 +(noun)|chute|slide|slideway|gutter|trough +slopingly|1 +(adv)|slantingly +slopped|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +sloppiness|1 +(noun)|slovenliness|unkemptness|untidiness +sloppy|2 +(adj)|untidy +(adj)|haphazard|slapdash|slipshod|careless +sloppy joe|1 +(noun)|Sloppy Joe|sandwich +slops|3 +(noun)|slop|swill|pigswill|pigwash|feed|provender +(noun)|clothing|article of clothing|vesture|wear +(noun)|slop|swill|pigswill|pigwash|feed|provender +slopseller|1 +(noun)|slop-seller|trader|bargainer|dealer|monger +slopseller's shop|1 +(noun)|slopshop|clothing store|haberdashery|haberdashery store|mens store +slopshop|1 +(noun)|slopseller's shop|clothing store|haberdashery|haberdashery store|mens store +slosh|3 +(verb)|splash|splosh|slush|sound|go +(verb)|squelch|squish|splash|splosh|slop|slog|footslog|plod|trudge|pad|tramp +(verb)|slush|slosh around|slush around|spatter|splatter|plash|splash|splosh|swash +slosh around|1 +(verb)|slosh|slush|slush around|spatter|splatter|plash|splash|splosh|swash +sloshed|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +slot|8 +(noun)|position|spatial relation +(noun)|slit +(noun)|time slot|time interval|interval +(noun)|status|position +(noun)|trail +(noun)|expansion slot|receptacle +(noun)|one-armed bandit|slot machine|coin machine +(verb)|schedule +slot machine|1 +(noun)|coin machine|machine +sloth|3 +(noun)|slothfulness|reluctance|hesitancy|hesitation|disinclination|indisposition +(noun)|tree sloth|edentate +(noun)|laziness|acedia|mortal sin|deadly sin +sloth bear|1 +(noun)|Melursus ursinus|Ursus ursinus|bear +slothful|1 +(adj)|faineant|indolent|lazy|otiose|work-shy|idle +slothfulness|1 +(noun)|sloth|reluctance|hesitancy|hesitation|disinclination|indisposition +slouch|4 +(noun)|incompetent|incompetent person +(noun)|carriage|bearing|posture +(verb)|slump|sag|droop|swag|flag +(verb)|walk +slouch hat|1 +(noun)|cavalier hat|hat|chapeau|lid +slouched|1 +(adj)|slouching|slumped|unerect +sloucher|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +slouching|1 +(adj)|slouched|slumped|unerect +slouchy|1 +(adj)|untidy +slough|5 +(noun)|gangrene|sphacelus|pathology +(noun)|bog|peat bog +(noun)|swamp|swampland +(noun)|covering|natural covering|cover +(verb)|shed|molt|exuviate|moult|shed|cast|cast off|shake off|throw|throw off|throw away|drop +slough grass|1 +(noun)|prairie cordgrass|freshwater cordgrass|Spartina pectinmata|cordgrass|cord grass +slough of despond|1 +(noun)|depression +sloughing|1 +(noun)|shedding|organic process|biological process +sloughy|1 +(adj)|boggy|marshy|miry|mucky|muddy|quaggy|swampy|wet +slovak|2 +(noun)|Slovak|European +(noun)|Slovak|Slavic|Slavic language|Slavonic|Slavonic language +slovak republic|1 +(noun)|Slovakia|Slovak Republic|European country|European nation +slovakia|1 +(noun)|Slovakia|Slovak Republic|European country|European nation +slovakian|1 +(adj)|Slovakian|European country|European nation +slovakian monetary unit|1 +(noun)|Slovakian monetary unit|monetary unit +sloven|1 +(noun)|slob|pig|slovenly person|vulgarian +slovene|2 +(noun)|Slovene|European +(noun)|Slovene|Slavic|Slavic language|Slavonic|Slavonic language +slovenia|1 +(noun)|Slovenia|Republic of Slovenia|Slovenija|European country|European nation +slovenian|2 +(adj)|Slovenian|European country|European nation +(noun)|Slovenian|European +slovenija|1 +(noun)|Slovenia|Republic of Slovenia|Slovenija|European country|European nation +slovenliness|2 +(noun)|sloppiness|unkemptness|untidiness +(noun)|uncleanliness +slovenly|1 +(adj)|frowsy|frowzy|untidy +slovenly person|1 +(noun)|slob|sloven|pig|vulgarian +slovenly woman|1 +(noun)|slattern|slut|trollop|slob|sloven|pig|slovenly person +slow|11 +(adj)|slow |bumper-to-bumper|dilatory|laggard|poky|pokey|dragging|drawn-out|lazy|long-play|long-playing|slow-moving|sluggish|delayed|gradual|unhurried +(adj)|slow |adagio|andante|lento|lentissimo|largo|larghetto|larghissimo|moderato +(adj)|dense|dim|dull|dumb|obtuse|stupid +(adj)|slow +(adj)|boring|deadening|dull|ho-hum|irksome|tedious|tiresome|wearisome|uninteresting +(adj)|dull|sluggish|inactive +(verb)|decelerate|slow down|slow up|retard|decrease|diminish|lessen|fall +(verb)|slow down|slow up|slack|slacken|weaken +(verb)|slow down|slow up|decelerate|slow down|slow up|retard +(adv)|slowly|easy|tardily +(adv)|behind +slow-moving|1 +(adj)|slow +slow-witted|1 +(adj)|feebleminded|half-witted|unintelligent |stupid +slow-wittedness|1 +(noun)|denseness|dumbness|stupidity +slow down|5 +(verb)|decelerate|slow|slow up|retard|decrease|diminish|lessen|fall +(verb)|slow|slow up|slack|slacken|weaken +(verb)|slow|slow up|decelerate|slow|slow up|retard +(verb)|decelerate|modify|qualify +(verb)|relax|loosen up|unbend|unwind|decompress|change state|turn +slow lane|1 +(noun)|traffic lane +slow loris|1 +(noun)|Nycticebus tardigradua|Nycticebus pygmaeus|lemur +slow match|1 +(noun)|match|lucifer|friction match +slow motion|1 +(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +slow time scale|1 +(noun)|extended time scale|time scale +slow up|3 +(verb)|slow|slow down|slack|slacken|weaken +(verb)|slow|slow down|decelerate|slow|slow down|retard +(verb)|decelerate|slow|slow down|retard|decrease|diminish|lessen|fall +slow virus|1 +(noun)|virus +slowcoach|1 +(noun)|plodder|slowpoke|stick-in-the-mud|dawdler|drone|laggard|lagger|trailer +slowdown|1 +(noun)|lag|retardation|delay|holdup +slowgoing|1 +(adj)|unenergetic|unenterprising |nonenterprising +slowing|1 +(noun)|deceleration|retardation|speed|swiftness|fastness +slowly|2 +(adv)|slow|easy|tardily +(adv)|lento +slowness|3 +(noun)|awkwardness|clumsiness|ineptness|ineptitude|maladroitness|unskillfulness +(noun)|deliberation|deliberateness|unhurriedness|pace|rate +(noun)|retardation|mental retardation|backwardness|subnormality|stupidity +slowpoke|1 +(noun)|plodder|stick-in-the-mud|slowcoach|dawdler|drone|laggard|lagger|trailer +slowworm|1 +(noun)|blindworm|Anguis fragilis|anguid lizard +sls|2 +(noun)|sodium lauryl sulphate|sodium lauryl sulfate|SLS|sulfate|sulphate|detergent +(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization|terrorist group|foreign terrorist organization|FTO +slub|1 +(noun)|knot|burl|roughness +slubbed|1 +(adj)|homespun|nubby|nubbly|tweedy|rough |unsmooth +sludge|2 +(noun)|precipitate +(noun)|slime|goo|gook|guck|gunk|muck|ooze|substance|matter +slue|2 +(verb)|swerve|sheer|curve|trend|veer|slew|cut|turn +(verb)|skid|slip|slew|slide|glide +slug|5 +(noun)|bullet|projectile|missile +(noun)|sluggard|idler|loafer|do-nothing|layabout|bum +(noun)|gastropod|univalve +(verb)|slog|swig|hit +(verb)|idle|laze|stagnate +slugabed|1 +(noun)|lie-abed|idler|loafer|do-nothing|layabout|bum +slugfest|1 +(noun)|fistfight|fisticuffs|fight|fighting|combat|scrap +sluggard|1 +(noun)|slug|idler|loafer|do-nothing|layabout|bum +slugger|2 +(noun)|batter|hitter|batsman|ballplayer|baseball player +(noun)|slogger|boxer|pugilist +sluggish|3 +(adj)|slow +(adj)|dull|slow|inactive +(adj)|inert|torpid|inactive +sluggishness|2 +(noun)|lethargy|lassitude|torpor|torpidity +(noun)|languor|lethargy|phlegm|inactiveness|inactivity|inertia +sluice|5 +(noun)|sluiceway|penstock|conduit +(verb)|sluice down|pour|pelt|stream|rain cats and dogs|rain buckets +(verb)|flush|drench|douse|dowse|soak|sop|souse +(verb)|transport +(verb)|draw|take out +sluice down|1 +(verb)|sluice|pour|pelt|stream|rain cats and dogs|rain buckets +sluice valve|1 +(noun)|sluicegate|floodgate|penstock|head gate|water gate|regulator +sluicegate|1 +(noun)|sluice valve|floodgate|penstock|head gate|water gate|regulator +sluiceway|1 +(noun)|sluice|penstock|conduit +sluicing|1 +(adj)|draw|take out +slum|2 +(noun)|slum area|city district +(verb)|visit|see +slum area|1 +(noun)|slum|city district +slumber|3 +(noun)|sleep|physiological state|physiological condition +(noun)|dormancy|quiescence|quiescency +(verb)|sleep|kip|log Z's|catch some Z's|rest +slumber party|1 +(noun)|party +slumberer|1 +(noun)|sleeper|rester +slumberous|2 +(adj)|slumbrous|quiet +(adj)|slumbery|slumbrous|somnolent|asleep +slumbery|1 +(adj)|slumberous|slumbrous|somnolent|asleep +slumbrous|2 +(adj)|slumberous|quiet +(adj)|slumberous|slumbery|somnolent|asleep +slumgullion|1 +(noun)|stew +slummy|1 +(adj)|poor +slump|6 +(noun)|slack|drop-off|falloff|falling off|deterioration|decline in quality|declension|worsening +(noun)|depression|economic crisis|financial condition|economic condition +(verb)|slouch|sag|droop|swag|flag +(verb)|slide down|sink|collapse|fall in|cave in|give|give way|break|founder +(verb)|fall off|sink|drop +(verb)|decline|correct|descend|fall|go down|come down +slumped|1 +(adj)|slouched|slouching|unerect +slur|7 +(noun)|musical notation +(noun)|aspersion|disparagement|depreciation|derogation +(noun)|smudge|spot|blot|daub|smear|smirch|blemish|defect|mar +(verb)|play|spiel +(verb)|denote|refer +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|blur|dim|weaken|slur over +slur over|1 +(verb)|gloss over|skate over|smooth over|skimp over|treat|handle|do by +slurp|1 +(verb)|eat +slurred|1 +(adj)|thick|unintelligible +slurry|1 +(noun)|suspension +slush|3 +(noun)|water|H2O +(verb)|splash|splosh|slosh|sound|go +(verb)|slosh|slosh around|slush around|spatter|splatter|plash|splash|splosh|swash +slush around|1 +(verb)|slosh|slush|slosh around|spatter|splatter|plash|splash|splosh|swash +slush fund|1 +(noun)|fund|monetary fund +slushy|2 +(adj)|unfrozen +(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|emotional +slut|2 +(noun)|slattern|slovenly woman|trollop|slob|sloven|pig|slovenly person +(noun)|adulteress|fornicatress|hussy|jade|loose woman|strumpet|trollop|adulterer|fornicator +sluttish|2 +(adj)|blowsy|blowzy|slatternly|untidy +(adj)|easy|light|loose|promiscuous|wanton|unchaste +sluttishness|1 +(noun)|slatternliness|slovenliness +sluzhba vneshney razvedki|1 +(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency +sly|1 +(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|tricksy|tricky|wily|artful +slyboots|1 +(noun)|dodger|fox|deceiver|cheat|cheater|trickster|beguiler|slicker +slyly|1 +(adv)|craftily|cunningly|foxily|knavishly|trickily|artfully +slyness|1 +(noun)|craft|craftiness|cunning|foxiness|guile|wiliness|shrewdness|astuteness|perspicacity|perspicaciousness +sm|2 +(noun)|samarium|Sm|atomic number 62|metallic element|metal +(noun)|Master of Science|MS|SM|MSc|master's degree +smack|12 +(noun)|slap|bump|blow +(noun)|relish|flavor|flavour|sapidity|savor|savour|tang|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sailing vessel|sailing ship +(noun)|big H|hell dust|nose drops|thunder|heroin|diacetylmorphine +(noun)|smooch|kiss|buss|osculation +(noun)|smacking|slap|blow +(verb)|thwack|hit +(verb)|reek|suggest|evoke|paint a picture +(verb)|taste|taste|savor|savour +(verb)|peck|kiss|buss|osculate +(verb)|eat +(adv)|bang|slap|slapdash|bolt +smacker|2 +(noun)|smack|smooch +(noun)|blow +smacking|1 +(noun)|smack|slap|blow +small|13 +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|littlest|smallest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|smaller|littler|smallish|small-scale|undersize|undersized +(adj)|minor|modest|small-scale|pocket-size|pocket-sized|limited +(adj)|humble|low|lowly|modest|inferior +(adj)|little|young |immature +(adj)|microscopic |microscopical|atomic|atomlike|minute|subatomic|subgross +(adj)|modest|moderate +(adj)|little|soft +(adj)|little +(adj)|belittled|diminished|decreased |reduced +(adj)|little|minuscule|lowercase +(adj)|fine +(noun)|body part +(noun)|size +small-arm|1 +(noun)|firearm|piece|gun +small-cap|1 +(adj)|small-capitalization|small-capitalisation|capitalization|capitalisation +small-capitalisation|1 +(adj)|small-capitalization|small-cap|capitalization|capitalisation +small-capitalization|1 +(adj)|small-capitalisation|small-cap|capitalization|capitalisation +small-for-gestational-age infant|1 +(noun)|SGA infant|neonate|newborn|newborn infant|newborn baby +small-grained|1 +(adj)|powdered|powdery|pulverized|pulverised|fine-grained|fine +small-leaved lime|1 +(noun)|small-leaved linden|Tilia cordata|linden|linden tree|basswood|lime|lime tree +small-leaved linden|1 +(noun)|small-leaved lime|Tilia cordata|linden|linden tree|basswood|lime|lime tree +small-minded|1 +(adj)|petty|narrow-minded |narrow +small-mindedly|1 +(adv)|narrow-mindedly +small-particle pollution|1 +(noun)|air pollution +small-scale|2 +(adj)|small +(adj)|minor|modest|small|pocket-size|pocket-sized|limited +small-time|1 +(adj)|nickel-and-dime|unimportant +small beer|1 +(noun)|triviality|trivia|trifle|object|physical object +small boat|1 +(noun)|boat +small business administration|1 +(noun)|Small Business Administration|SBA|independent agency +small businessman|1 +(noun)|businessman|man of affairs +small calorie|1 +(noun)|calorie|gram calorie|work unit|heat unit|energy unit +small cane|1 +(noun)|switch cane|Arundinaria tecta|bamboo +small cap|2 +(noun)|corporation|corp +(noun)|small capital|capital|capital letter|upper case|upper-case letter|majuscule +small capital|1 +(noun)|small cap|capital|capital letter|upper case|upper-case letter|majuscule +small cell carcinoma|1 +(noun)|oat cell carcinoma|carcinoma +small change|1 +(noun)|chickenfeed|chump change|cash|hard cash|hard currency +small civet|1 +(noun)|Viverricula indica|Viverricula malaccensis|civet|civet cat +small computer system interface|1 +(noun)|SCSI|interface|port +small cranberry|1 +(noun)|European cranberry|Vaccinium oxycoccus|cranberry +small farmer|1 +(noun)|farmer|husbandman|granger|sodbuster +small fortune|1 +(noun)|large indefinite quantity|large indefinite amount +small fry|2 +(noun)|pip-squeak|squirt|cipher|cypher|nobody|nonentity +(noun)|child|kid|youngster|minor|shaver|nipper|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +small hours|1 +(noun)|hour|time of day +small indefinite amount|1 +(noun)|small indefinite quantity|indefinite quantity +small indefinite quantity|1 +(noun)|small indefinite amount|indefinite quantity +small intestine|1 +(noun)|intestine|bowel|gut +small letter|1 +(noun)|lower case|lower-case letter|minuscule|character|grapheme|graphic symbol +small loan company|1 +(noun)|consumer finance company|finance company +small magellanic cloud|1 +(noun)|Small Magellanic Cloud|Magellanic Cloud +small person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +small print|2 +(noun)|fine print|reservation|qualification +(noun)|fine print|print|black and white +small ship|1 +(noun)|ship +small slam|1 +(noun)|little slam|slam|sweep +small stores|1 +(noun)|commissary +small stuff|1 +(noun)|rope +small talk|1 +(noun)|chitchat|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +small town|1 +(noun)|village|settlement|community +small white|1 +(noun)|Pieris rapae|cabbage butterfly +small white aster|1 +(noun)|aster +smaller|12 +(adj)|littler|small +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|littlest|smallest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|littler|smallish|small-scale|undersize|undersized +(adj)|minor|modest|small|small-scale|pocket-size|pocket-sized|limited +(adj)|humble|low|lowly|modest|small|inferior +(adj)|little|small|young |immature +(adj)|microscopic |microscopical|small|atomic|atomlike|minute|subatomic|subgross +(adj)|modest|small|moderate +(adj)|little|small|soft +(adj)|small|little +(adj)|belittled|diminished|small|decreased |reduced +(adj)|little|minuscule|small|lowercase +(adj)|small|fine +smaller pectoral muscle|1 +(noun)|pectoralis minor|musculus pectoralis minor|pectoral|pectoral muscle|pectoralis|musculus pectoralis|pecs +smallest|13 +(adj)|least|littlest|small +(adj)|least|lowest|minimal +(adj)|small |bantam|diminutive|lilliputian|midget|petite|tiny|flyspeck|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|dinky|dwarfish|elfin|elflike|gnomish|half-size|infinitesimal|minute|microscopic|least|littlest|lesser|micro|miniature|minuscule|miniscule|pocket-size|pocket-sized|pocketable|puny|runty|shrimpy|slender|slim|smaller|littler|smallish|small-scale|undersize|undersized +(adj)|minor|modest|small|small-scale|pocket-size|pocket-sized|limited +(adj)|humble|low|lowly|modest|small|inferior +(adj)|little|small|young |immature +(adj)|microscopic |microscopical|small|atomic|atomlike|minute|subatomic|subgross +(adj)|modest|small|moderate +(adj)|little|small|soft +(adj)|small|little +(adj)|belittled|diminished|small|decreased |reduced +(adj)|little|minuscule|small|lowercase +(adj)|small|fine +smalley|1 +(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist +smalleye hammerhead|1 +(noun)|Sphyrna tudes|hammerhead|hammerhead shark +smallholder|1 +(noun)|farmer|husbandman|granger|sodbuster +smallholding|1 +(noun)|estate|land|landed estate|acres|demesne +smallish|1 +(adj)|small +smallmouth|1 +(noun)|smallmouth bass|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass +smallmouth bass|2 +(noun)|freshwater bass|bass +(noun)|smallmouth|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass +smallmouth black bass|1 +(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouthed black bass|Micropterus dolomieu|black bass +smallmouthed bass|1 +(noun)|smallmouth|smallmouth bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass +smallmouthed black bass|1 +(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouth black bass|Micropterus dolomieu|black bass +smallness|1 +(noun)|littleness|size +smallpox|1 +(noun)|variola|variola major|pox +smallpox virus|1 +(noun)|variola virus|poxvirus +smalltooth sawfish|1 +(noun)|Pristis pectinatus|sawfish +smaltite|1 +(noun)|mineral +smarm|1 +(noun)|unction|fulsomeness|compliment +smarmily|1 +(adv)|unctuously|fulsomely +smarminess|1 +(noun)|fulsomeness|oiliness|oleaginousness|unctuousness|unction|hypocrisy +smarmy|1 +(adj)|buttery|fulsome|oily|oleaginous|unctuous|insincere +smart|7 +(adj)|smart |astute|sharp|shrewd|cagey|cagy|canny|clever|streetwise|street smart|with-it|intelligent +(adj)|chic|voguish|stylish |fashionable +(adj)|bright|intelligent +(adj)|fresh|impertinent|impudent|overbold|saucy|sassy|forward +(adj)|dapper|dashing|jaunty|natty|raffish|rakish|spiffy|snappy|spruce|fashionable |stylish +(noun)|smarting|pain|hurting +(verb)|ache|hurt|cause to be perceived +smart aleck|1 +(noun)|wise guy|wiseacre|wisenheimer|weisenheimer|upstart +smart as a whip|1 +(adj)|brainy|brilliant|intelligent +smart bomb|1 +(noun)|bomb +smart card|1 +(noun)|open-end credit|revolving credit|charge account credit|positive identification +smart money|3 +(noun)|speculation|venture +(noun)|punitive damages|exemplary damages|damages|amends|indemnity|indemnification|restitution|redress +(noun)|people +smart set|1 +(noun)|society|high society|beau monde|bon ton|elite|elite group +smarta|1 +(noun)|brahman|brahmin +smarten up|2 +(verb)|spruce up|spruce|titivate|tittivate|slick up|spiff up|beautify|embellish|prettify +(verb)|spruce up|spruce|slick up|groom|neaten +smarting|2 +(adj)|painful +(noun)|smart|pain|hurting +smartly|3 +(adv)|cleverly +(adv)|vigorously +(adv)|modishly|sprucely +smartness|2 +(noun)|brightness|cleverness|intelligence +(noun)|chic|chicness|modishness|stylishness|swank|last word|elegance +smash|16 +(noun)|knock|bash|bang|belt|bump|blow +(noun)|smash-up|collision +(noun)|overhead|return +(noun)|crash|hit|hitting|striking +(noun)|hit|smasher|strike|bang|success +(verb)|nail|boom|blast|hit +(verb)|dash|break +(verb)|bankrupt|ruin|break|impoverish +(verb)|hit|strike +(verb)|crush|demolish|humiliate|mortify|chagrin|humble|abase +(verb)|bang up|smash up|damage +(verb)|hit +(verb)|collide|clash +(verb)|demolish|destroy +(verb)|break|separate|split up|fall apart|come apart +(adv)|smashingly +smash-up|1 +(noun)|smash|collision +smash hit|1 +(noun)|blockbuster|megahit|hit|smash|smasher|strike|bang +smash up|1 +(verb)|bang up|smash|damage +smashed|2 +(adj)|shattered|splintered|broken +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +smasher|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman|adult female +(noun)|hit|smash|strike|bang|success +smashing|2 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|good +(noun)|shattering|breakage|break|breaking +smashingly|1 +(adv)|smash +smatter|3 +(verb)|dabble|play around|busy|occupy +(verb)|babble|blather|blether|blither|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble +(verb)|speak|talk +smattering|2 +(noun)|handful|small indefinite quantity|small indefinite amount +(noun)|understanding|apprehension|discernment|savvy +smear|8 +(noun)|vilification|malignment|defamation|calumny|obloquy|traducement|hatchet job +(noun)|cytologic smear|cytosmear|cytologic specimen +(noun)|smudge|spot|blot|daub|smirch|slur|blemish|defect|mar +(noun)|blot|smirch|spot|stain|mistake|error|fault +(verb)|dirty|soil|begrime|grime|colly|bemire +(verb)|blur|smudge|smutch|rub +(verb)|daub|cover +(verb)|defame|slander|smirch|asperse|denigrate|calumniate|sully|besmirch|charge|accuse +smear test|1 +(noun)|Pap test|Papanicolaou test|diagnostic test|diagnostic assay +smear word|1 +(noun)|name|epithet +smeared|1 +(adj)|smirched|smudged|smudgy|dirty |soiled|unclean +smegma|1 +(noun)|sebum +smell|6 +(noun)|odor|odour|olfactory sensation|olfactory perception|sensation|sense experience|sense impression|sense datum +(noun)|olfactory property|aroma|odor|odour|scent|property +(noun)|spirit|tone|feel|feeling|flavor|flavour|look|atmosphere|ambiance|ambience +(noun)|smelling|sensing|perception +(verb)|perceive|comprehend +(verb)|cause to be perceived|smell up +smell out|1 +(verb)|sniff out|scent out|nose out +smell up|1 +(verb)|stink up|stink out|odorize|odourise|scent +smelling|2 +(adj)|redolent|odorous +(noun)|smell|sensing|perception +smelling bottle|1 +(noun)|bottle +smelling salts|1 +(noun)|formulation|preparation +smelly|1 +(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|putrid|stinking|malodorous |malodourous +smelt|6 +(noun)|fish +(noun)|soft-finned fish|malacopterygian +(verb)|produce|make|create +(verb)|smell|perceive|comprehend +(verb)|smell|cause to be perceived|smell up +(verb)|smell|smell +smelter|1 +(noun)|smeltery|plant|works|industrial plant +smeltery|1 +(noun)|smelter|plant|works|industrial plant +smetana|1 +(noun)|Smetana|Bedrich Smetana|composer +smew|1 +(noun)|Mergus albellus|merganser|fish duck|sawbill|sheldrake +smidge|1 +(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgeon|smidgin|small indefinite quantity|small indefinite amount +smidgen|1 +(noun)|shred|scintilla|whit|iota|tittle|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +smidgeon|1 +(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgin|smidge|small indefinite quantity|small indefinite amount +smidgin|1 +(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgeon|smidge|small indefinite quantity|small indefinite amount +smilacaceae|1 +(noun)|Smilacaceae|subfamily Smilacaceae|liliid monocot family +smilax|2 +(noun)|Smilax|genus Smilax|liliid monocot genus +(noun)|Asparagus asparagoides|vine +smilax aspera|1 +(noun)|rough bindweed|Smilax aspera|sarsaparilla +smilax rotundifolia|1 +(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine +smile|3 +(noun)|smiling|grin|grinning|facial expression|facial gesture +(verb)|grimace|make a face|pull a face +(verb)|express|show|evince +smiledon|1 +(noun)|Smiledon|genus Smiledon|mammal genus +smiledon californicus|1 +(noun)|Smiledon californicus|saber-toothed tiger|sabertooth +smiler|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|countenance|physiognomy|phiz|visage|kisser|mug|face|human face +smiley|1 +(noun)|emoticon +smiling|2 +(adj)|beamish|twinkly|cheerful +(noun)|smile|grin|grinning|facial expression|facial gesture +smilo|1 +(noun)|smilo grass|Oryzopsis miliacea|ricegrass|rice grass +smilo grass|1 +(noun)|smilo|Oryzopsis miliacea|ricegrass|rice grass +smirch|4 +(noun)|smudge|spot|blot|daub|smear|slur|blemish|defect|mar +(noun)|blot|smear|spot|stain|mistake|error|fault +(verb)|besmirch|smear +(verb)|defame|slander|asperse|denigrate|calumniate|smear|sully|besmirch|charge|accuse +smirched|1 +(adj)|smeared|smudged|smudgy|dirty |soiled|unclean +smirk|2 +(noun)|smile|smiling|grin|grinning +(verb)|simper|smile +smirker|1 +(noun)|smiler +smitane|1 +(noun)|Smitane|sauce +smite|3 +(verb)|hit +(verb)|affect|impress|move|strike +(verb)|afflict|damage +smith|10 +(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman|solon|national leader +(noun)|Smith|David Smith|David Roland Smith|sculptor|sculpturer|carver|statue maker +(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer|vocalist|vocalizer|vocaliser +(noun)|Smith|Julia Evelina Smith|suffragist +(noun)|Smith|Bessie Smith|singer|vocalist|vocalizer|vocaliser +(noun)|Smith|Joseph Smith|Latter-day Saint|Mormon +(noun)|Smith|John Smith|Captain John Smith|explorer|adventurer +(noun)|Smith|Adam Smith|economist|economic expert +(noun)|skilled worker|trained worker +(noun)|metalworker|skilled worker|trained worker +smithereens|1 +(noun)|collection|aggregation|accumulation|assemblage +smithy|1 +(noun)|forge|workplace|work +smitten|2 +(adj)|stricken|struck|affected +(adj)|crazy|dotty|gaga|enamored|infatuated|in love|soft on|taken with|loving +smitty stevens|1 +(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist +smock|2 +(noun)|duster|gaberdine|gabardine|dust coat|coverall +(verb)|decorate|adorn|grace|ornament|embellish|beautify +smocking|1 +(noun)|embroidery|fancywork +smog|1 +(noun)|smogginess|air pollution +smogginess|1 +(noun)|smog|air pollution +smoggy|1 +(adj)|cloudy +smoke|10 +(noun)|fume|aerosol +(noun)|smoking|vaporization|vaporisation|vapor|vapour|evaporation +(noun)|indication|indicant +(noun)|insubstantiality +(noun)|roll of tobacco|tobacco|baccy +(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(noun)|smoking|breathing|external respiration|respiration|ventilation +(noun)|fastball|heater|hummer|bullet|pitch|delivery +(verb)|consume|ingest|take in|take|have +(verb)|fume|emit|give out|give off +smoke-cured|1 +(adj)|smoked|smoke-dried|preserved +smoke-dried|1 +(adj)|smoked|smoke-cured|preserved +smoke-filled|1 +(adj)|smoky +smoke-free|1 +(adj)|smokeless +smoke alarm|1 +(noun)|fire alarm|alarm|warning device|alarm system +smoke bomb|1 +(noun)|smoke grenade|bomb +smoke bush|2 +(noun)|smoke tree|shrub|bush +(noun)|shrub|bush +smoke grenade|1 +(noun)|smoke bomb|bomb +smoke hole|1 +(noun)|vent|venthole|vent-hole|blowhole +smoke out|1 +(verb)|rout out|drive out|force out|rouse +smoke screen|3 +(noun)|smokescreen|screen +(noun)|smokescreen|concealment|concealing|hiding +(noun)| +smoke tree|2 +(noun)|smoke bush|shrub|bush +(noun)|Dalea spinosa|shrub|bush +smoked|1 +(adj)|smoke-cured|smoke-dried|preserved +smoked haddock|1 +(noun)|finnan haddie|finnan haddock|finnan|haddock +smoked herring|1 +(noun)|red herring|herring +smoked mackerel|1 +(noun)|mackerel +smoked salmon|1 +(noun)|salmon +smokehouse|1 +(noun)|meat house|house +smokeless|1 +(adj)|smokeless |smoke-free +smokeless powder|1 +(noun)|Ballistite|explosive +smoker|3 +(noun)|tobacco user|consumer +(noun)|stag party|party +(noun)|smoking car|smoking carriage|smoking compartment|passenger car|coach|carriage +smokescreen|2 +(noun)|smoke screen|screen +(noun)|smoke screen|concealment|concealing|hiding +smokestack|1 +(noun)|stack|chimney +smoking|3 +(adj)|smoky +(noun)|smoke|breathing|external respiration|respiration|ventilation +(noun)|smoke|vaporization|vaporisation|vapor|vapour|evaporation +smoking car|1 +(noun)|smoker|smoking carriage|smoking compartment|passenger car|coach|carriage +smoking carriage|1 +(noun)|smoker|smoking car|smoking compartment|passenger car|coach|carriage +smoking compartment|1 +(noun)|smoker|smoking car|smoking carriage|passenger car|coach|carriage +smoking gun|1 +(noun)|evidence +smoking jacket|1 +(noun)|lounging jacket|jacket +smoking mixture|1 +(noun)|tobacco|baccy +smoking room|1 +(noun)|room +smoky|2 +(adj)|smoky |blackened|smoking|smoke-filled +(adj)|tasteful +smoky quartz|1 +(noun)|cairngorm|quartz +smolder|2 +(verb)|smoulder|burn|combust +(verb)|smoulder|feel|experience +smoldering|2 +(adj)|smouldering|live +(adj)|smouldering|angry +smolderingly|1 +(adv)|smoulderingly +smolensk|1 +(noun)|Smolensk|city|metropolis|urban center +smollett|1 +(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer|author +smooch|2 +(noun)|smack|kiss|buss|osculation +(verb)|snog|spoon|neck|make out +smooching|1 +(noun)|caressing|cuddling|fondling|hugging|kissing|necking|petting|snuggling|foreplay|arousal|stimulation +smooth|12 +(adj)|smooth |creaseless|uncreased|fast|glassy|glossy|satiny|sleek|silken|silky|silklike|slick|seamless|unlined|unseamed|velvet|velvety|waxlike|waxy|ceraceous|marmoreal|marmorean|even|fine|ironed|slippery|slippy +(adj)|politic|suave|diplomatic |diplomatical +(adj)|smooth |entire|repand|sinuate|undulate|unnotched|untoothed|simple|unsubdivided|compound +(adj)|unwrinkled|unfurrowed +(adj)|flowing|fluent|fluid|liquid|graceful +(adj)|legato +(adj)|uncrannied +(adj)|easy +(noun)|accomplishment|achievement +(verb)|smoothen|change surface|smooth over +(verb)|polish|smoothen|shine|beautify|embellish|prettify +(verb)|smooth out|rid|free|disembarrass +smooth-faced|1 +(adj)|beardless|hairless +smooth-haired fox terrier|1 +(noun)|fox terrier +smooth-leaved elm|1 +(noun)|European field elm|Ulmus carpinifolia|elm|elm tree +smooth-shaven|1 +(adj)|clean-shaven|well-shaven|shaven |shaved +smooth-spoken|1 +(adj)|eloquent|facile|fluent|silver|silver-tongued|articulate +smooth-tongued|1 +(adj)|glib|glib-tongued|persuasive +smooth alder|1 +(noun)|hazel alder|Alnus serrulata|alder|alder tree +smooth aster|1 +(noun)|aster +smooth bark kauri|1 +(noun)|dundathu pine|queensland kauri|Agathis robusta|kauri pine|dammar pine +smooth crabgrass|1 +(noun)|Digitaria ischaemum|crabgrass|crab grass|finger grass +smooth darling pea|1 +(noun)|Swainsona galegifolia|darling pea|poison bush +smooth dogfish|1 +(noun)|dogfish +smooth earthball|1 +(noun)|Scleroderma bovista|earthball|false truffle|puffball|hard-skinned puffball +smooth green snake|1 +(noun)|Opheodrys vernalis|green snake|grass snake +smooth hammerhead|1 +(noun)|Sphyrna zygaena|hammerhead|hammerhead shark +smooth lip fern|1 +(noun)|Alabama lip fern|Cheilanthes alabamensis|lip fern|lipfern +smooth muscle|2 +(noun)|involuntary muscle|muscle|musculus +(noun)|muscle|muscular tissue +smooth muscle cell|1 +(noun)|muscle cell|muscle fiber|muscle fibre +smooth out|1 +(verb)|smooth|rid|free|disembarrass +smooth over|1 +(verb)|gloss over|skate over|slur over|skimp over|treat|handle|do by +smooth plane|1 +(noun)|smoothing plane|plane|carpenter's plane|woodworking plane +smooth softshell|1 +(noun)|Trionyx muticus|soft-shelled turtle|pancake turtle +smooth sumac|1 +(noun)|scarlet sumac|vinegar tree|Rhus glabra|sumac|sumach|shumac +smooth winterberry holly|1 +(noun)|holly +smooth woodsia|1 +(noun)|Woodsia glabella|woodsia +smoothbark|1 +(noun)|eucalyptus|eucalypt|eucalyptus tree +smoothbore|1 +(adj)|unrifled +smoothed|1 +(adj)|smoothened|ironed +smoothen|3 +(verb)|smooth|change surface +(verb)|polish|smooth|shine|beautify|embellish|prettify +(verb)|change +smoothened|1 +(adj)|smoothed|ironed +smoother|1 +(noun)|drum sander|electric sander|sander|power tool +smoothhound|1 +(noun)|smoothhound shark|Mustelus mustelus|smooth dogfish +smoothhound shark|1 +(noun)|smoothhound|Mustelus mustelus|smooth dogfish +smoothie|2 +(noun)|smoothy|sweet talker|charmer|hypocrite|dissembler|phony|phoney|pretender +(noun)|beverage|drink|drinkable|potable +smoothing iron|1 +(noun)|iron|home appliance|household appliance +smoothing plane|1 +(noun)|smooth plane|plane|carpenter's plane|woodworking plane +smoothly|1 +(adv)|swimmingly +smoothness|2 +(noun)|texture +(noun)|effortlessness +smoothy|1 +(noun)|smoothie|sweet talker|charmer|hypocrite|dissembler|phony|phoney|pretender +smorgasbord|2 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|buffet +smother|7 +(noun)|clutter|jumble|muddle|mare's nest|welter|disorderliness|disorder +(noun)|smoke|fume +(verb)|surround|cover +(verb)|asphyxiate|suffocate|kill +(verb)|stifle|strangle|muffle|repress|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|cover|spread over +(verb)|put out|snuff out|extinguish +smothered|2 +(adj)|stifled|strangled|suppressed|inhibited +(adj)|covered +smotherer|1 +(noun)|stifler|person|individual|someone|somebody|mortal|human|soul +smothering|1 +(adj)|suffocating|suffocative|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +smoulder|3 +(noun)|fire +(verb)|smolder|feel|experience +(verb)|smolder|burn|combust +smouldering|2 +(adj)|smoldering|angry +(adj)|smoldering|live +smoulderingly|1 +(adv)|smolderingly +smudge|3 +(noun)|fire +(noun)|spot|blot|daub|smear|smirch|slur|blemish|defect|mar +(verb)|smear|blur|smutch|rub +smudged|1 +(adj)|smeared|smirched|smudgy|dirty |soiled|unclean +smudgy|1 +(adj)|smeared|smirched|smudged|dirty |soiled|unclean +smug|1 +(adj)|self-satisfied|contented |content +smuggle|1 +(verb)|export|import +smuggled|1 +(adj)|bootleg|black|black-market|contraband|illegal +smuggler|1 +(noun)|runner|contrabandist|moon curser|moon-curser|criminal|felon|crook|outlaw|malefactor +smuggling|1 +(noun)|importing|importation +smugness|1 +(noun)|complacency|complacence|self-complacency|self-satisfaction +smut|8 +(noun)|carbon black|lampblack|soot|carbon|C|atomic number 6 +(noun)|plant disease +(noun)|smut fungus|fungus +(noun)|pornography|porno|porn|erotica|creation|creative activity +(verb)|change|alter|modify +(verb)|stain +(verb)|mold|mildew +(verb)|infect|taint +smut fungus|1 +(noun)|smut|fungus +smut grass|1 +(noun)|blackseed|carpet grass|Sporobolus poiretii|dropseed|drop-seed +smutch|1 +(verb)|smear|blur|smudge|rub +smuts|5 +(noun)|Smuts|Jan Christian Smuts|soldier|statesman|solon|national leader +(noun)|carbon black|lampblack|soot|smut|carbon|C|atomic number 6 +(noun)|smut|plant disease +(noun)|smut|smut fungus|fungus +(noun)|pornography|porno|porn|erotica|smut|creation|creative activity +smuttily|1 +(adv)|vulgarly +smuttiness|2 +(noun)|sootiness|dirtiness|uncleanness +(noun)|dirtiness|obscenity|lewdness|bawdiness|salaciousness|salacity +smutty|1 +(adj)|filthy|foul|nasty|dirty +smyrna|1 +(noun)|Izmir|Smyrna|city|metropolis|urban center|port +smyrnium|1 +(noun)|Smyrnium|genus Smyrnium|rosid dicot genus +smyrnium olusatrum|1 +(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb|herbaceous plant +sn|1 +(noun)|tin|Sn|atomic number 50|metallic element|metal +snack|2 +(noun)|bite|collation|meal|repast +(verb)|nosh|eat +snack bar|1 +(noun)|snack counter|buffet|bar +snack counter|1 +(noun)|snack bar|buffet|bar +snack food|1 +(noun)|dish +snacker|1 +(noun)|nosher|eater|feeder +snaffle|3 +(noun)|snaffle bit|bit +(verb)|snap up|grab|take +(verb)|bridle +snaffle bit|1 +(noun)|snaffle|bit +snafu|3 +(adj)|fucked-up|disorganized |disorganised +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|snarl|snarl up|embrangle +snag|7 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|tree +(noun)|rip|rent|split|tear|opening|gap +(noun)|hang-up|hitch|rub|obstacle|obstruction +(verb)|hitch|catch +(verb)|obtain +(verb)|hew +snail|3 +(noun)|gastropod|univalve +(noun)|escargot|meat +(verb)|gather|garner|collect|pull together +snail-flower|3 +(noun)|snailflower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +(noun)| +(noun)| +snail bean|1 +(noun)|snailflower|snail-flower|snail flower|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +snail butter|1 +(noun)|sauce +snail darter|1 +(noun)|Percina tanasi|perch +snail flower|3 +(noun)|snailflower|snail-flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +(noun)| +(noun)| +snail mail|1 +(noun)|mail|mail service|postal service|post +snailfish|1 +(noun)|seasnail|sea snail|Liparis liparis|scorpaenoid|scorpaenoid fish +snailflower|1 +(noun)|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +snake|8 +(noun)|serpent|ophidian|diapsid|diapsid reptile +(noun)|snake in the grass|bad person +(noun)|Snake|Snake River|river +(noun)|Hydra|Snake|constellation +(noun)|object|physical object +(verb)|glide +(verb)|wind|curve +(verb)|weave|wind|thread|meander|wander +snake's head fritillary|1 +(noun)|guinea-hen flower|checkered daffodil|leper lily|Fritillaria meleagris|fritillary|checkered lily +snake-fish|2 +(noun)|lizardfish|snakefish|soft-finned fish|malacopterygian +(noun)| +snake-head|2 +(noun)|shellflower|shell-flower|turtlehead|snakehead|Chelone glabra|marsh plant|bog plant|swamp plant +(noun)| +snake-rail fence|1 +(noun)|worm fence|snake fence|Virginia fence|rail fence +snake charmer|1 +(noun)|performer|performing artist +snake dance|2 +(noun)|file|single file|Indian file +(noun)|ritual dancing|ritual dance|ceremonial dance +snake doctor|1 +(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|mosquito hawk|skeeter hawk|odonate +snake eyes|1 +(noun)|craps|two|2|II|deuce +snake feeder|1 +(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake doctor|mosquito hawk|skeeter hawk|odonate +snake fence|1 +(noun)|worm fence|snake-rail fence|Virginia fence|rail fence +snake fern|1 +(noun)|climbing maidenhair|climbing maidenhair fern|Lygodium microphyllum|climbing fern +snake god|1 +(noun)|zombi|zombie|deity|divinity|god|immortal +snake in the grass|1 +(noun)|snake|bad person +snake mackerel|1 +(noun)|Gempylus serpens|gempylid +snake muishond|1 +(noun)|Poecilogale albinucha|muishond +snake oil|2 +(noun)|liquid +(noun)|humbug|misrepresentation|deceit|deception +snake palm|1 +(noun)|devil's tongue|umbrella arum|Amorphophallus rivieri|arum|aroid +snake pit|2 +(noun)|hell|hell on earth|hellhole|the pits|inferno|region|part +(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum +snake plant|1 +(noun)|mother-in-law's tongue|Sansevieria trifasciata|sansevieria|bowstring hemp +snake polypody|1 +(noun)|Microgramma-piloselloides|fern +snake river|1 +(noun)|Snake|Snake River|river +snake venom|1 +(noun)|venom +snake wood|2 +(noun)|trumpetwood|trumpet-wood|trumpet tree|imbauba|Cecropia peltata|angiospermous tree|flowering tree +(noun)|snakewood|Rauwolfia serpentina|rauwolfia|rauvolfia +snakeberry|1 +(noun)|red baneberry|redberry|red-berry|Actaea rubra|baneberry|cohosh|herb Christopher +snakebird|1 +(noun)|anhinga|darter|pelecaniform seabird +snakebite|1 +(noun)|bite +snakeblenny|1 +(noun)|Lumpenus lumpretaeformis|prickleback +snakefish|1 +(noun)|lizardfish|snake-fish|soft-finned fish|malacopterygian +snakefly|1 +(noun)|neuropteron|neuropteran|neuropterous insect +snakehead|1 +(noun)|shellflower|shell-flower|turtlehead|snake-head|Chelone glabra|marsh plant|bog plant|swamp plant +snakelike|1 +(adj)|serpentine|snaky|curved |curving +snakeroot|2 +(noun)|sanicle|herb|herbaceous plant +(noun)|blazing star|button snakeroot|gayfeather|gay-feather|wildflower|wild flower +snakes and ladders|1 +(noun)|board game +snakeweed|1 +(noun)|rabbitweed|rabbit-weed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed|matchbush +snakewood|1 +(noun)|Rauwolfia serpentina|rauwolfia|rauvolfia +snaky|1 +(adj)|serpentine|snakelike|curved |curving +snap|25 +(noun)|catch|grab|snatch|touch|touching +(noun)|while|piece|spell|patch +(noun)|snap bean|green bean +(noun)|gingersnap|ginger snap|ginger nut|cookie|cooky|biscuit +(noun)|noise +(noun)|crack|cracking|noise +(noun)|break +(noun)|elasticity|physical property +(noun)|snapshot|shot|photograph|photo|exposure|pic +(noun)|snap fastener|press stud|fastener|fastening|holdfast|fixing +(noun)|cinch|breeze|picnic|duck soup|child's play|pushover|walkover|piece of cake|undertaking|project|task|labor +(noun)|motion|movement|move|motility +(noun)|centering|pass|toss|flip +(verb)|snarl|talk|speak|utter|mouth|verbalize|verbalise +(verb)|tear|rupture|bust|separate|disunite|divide|part +(verb)|crack|break|separate|split up|fall apart|come apart +(verb)|click|move +(verb)|close|shut +(verb)|crack|sound|go +(verb)|move +(verb)|snatch|snatch up|seize|prehend|clutch|snap up +(verb)|hit +(verb)|click|flick|move +(verb)|break down|lose it|act|behave|do +(verb)|photograph|shoot|record|enter|put down +snap at|1 +(verb)|bite off|bite|seize with teeth +snap bean|1 +(noun)|snap|green bean +snap fastener|1 +(noun)|snap|press stud|fastener|fastening|holdfast|fixing +snap line|2 +(noun)|chalk line|snapline|string|twine +(noun)| +snap off|1 +(verb)|break|break off|detach +snap pea|1 +(noun)|sugar snap pea|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon +snap ring|1 +(noun)|carabiner|karabiner|hoop|ring|fastener|fastening|holdfast|fixing +snap roll|1 +(noun)|roll +snap up|1 +(verb)|snaffle|grab|take +snap willow|1 +(noun)|crack willow|brittle willow|Salix fragilis|willow|willow tree +snapdragon|1 +(noun)|flower +snapline|1 +(noun)|chalk line|snap line|string|twine +snapper|6 +(noun)|center|lineman +(noun)|saltwater fish +(noun)|cracker|cracker bonbon|party favor|party favour|favor|favour +(noun)|Chrysophrys auratus|sparid|sparid fish +(noun)|percoid fish|percoid|percoidean|food fish +(noun)|common snapping turtle|Chelydra serpentina|snapping turtle +snapping beetle|1 +(noun)|click beetle|skipjack|elaterid beetle|elater|elaterid +snapping shrimp|1 +(noun)|pistol shrimp|shrimp +snapping turtle|1 +(noun)|turtle +snappish|1 +(adj)|snappy|ill-natured +snappishness|1 +(noun)|temper|biliousness|irritability|peevishness|pettishness|surliness|ill nature +snappy|5 +(adj)|snappish|ill-natured +(adj)|whipping|spirited +(adj)|crisp|frosty|nipping|nippy|parky|cold +(adj)|dapper|dashing|jaunty|natty|raffish|rakish|smart|spiffy|spruce|fashionable |stylish +(adj)|brisk|lively|merry|rattling|spanking|zippy|energetic +snapshot|1 +(noun)|snap|shot|photograph|photo|exposure|pic +snapshot program|1 +(noun)|trace program +snare|7 +(noun)|trap|design|plan +(noun)|snare drum|side drum|drum|membranophone|tympan +(noun)|surgical instrument +(noun)|string +(noun)|gin|noose|trap +(verb)|trap|entrap|ensnare|trammel|capture|catch +(verb)|hook|entice|lure|tempt +snare drum|1 +(noun)|snare|side drum|drum|membranophone|tympan +snarer|1 +(noun)|hunter|huntsman +snarf|1 +(verb)|pilfer|cabbage|purloin|pinch|abstract|swipe|hook|sneak|filch|nobble|lift|steal +snarl|7 +(noun)|utterance|vocalization +(noun)|facial expression|facial gesture +(noun)|tangle|maze|perplexity +(verb)|snap|talk|speak|utter|mouth|verbalize|verbalise +(verb)|sound|go +(verb)|entangle|tangle|mat|twist|twine|distort +(verb)|snarl up|embrangle|complicate|perplex +snarl-up|1 +(noun)|traffic jam|crush|jam|press +snarl up|1 +(verb)|snarl|embrangle|complicate|perplex +snarled|1 +(adj)|knotted|snarly|tangled +snarly|1 +(adj)|knotted|snarled|tangled +snatch|7 +(noun)|bit|fragment +(noun)|cunt|puss|pussy|slit|twat|female genitalia|female genitals|female genital organ|fanny +(noun)|kidnapping|capture|seizure +(noun)|weightlifting +(noun)|catch|grab|snap|touch|touching +(verb)|snatch up|snap|seize|prehend|clutch +(verb)|kidnap|nobble|abduct|seize +snatch block|1 +(noun)|fairlead +snatch up|1 +(verb)|snatch|snap|seize|prehend|clutch +snatcher|2 +(noun)|thief|stealer +(noun)|kidnapper|abductor|criminal|felon|crook|outlaw|malefactor|captor|capturer +snazzy|1 +(adj)|stylish |fashionable +snead|1 +(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer|golf player|linksman +sneak|7 +(adj)|furtive|lurking|skulking|sneaky|stealthy|surreptitious|concealed +(noun)|prowler|stalker|intruder|interloper|trespasser +(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneaker|canary|informer|betrayer|rat|squealer|blabber +(verb)|mouse|creep|steal|pussyfoot|walk|sneak away|sneak out +(verb)|act|move +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|filch|nobble|lift|steal +(verb)|slip|pass|hand|reach|pass on|turn over|give +sneak away|1 +(verb)|slip away|steal away|sneak off|sneak out|leave|go forth|go away +sneak in|2 +(verb)|creep in|penetrate|perforate +(verb)|slip in|stick in|insert|add|append|supply +sneak off|1 +(verb)|slip away|steal away|sneak away|sneak out|leave|go forth|go away +sneak out|1 +(verb)|slip away|steal away|sneak away|sneak off|leave|go forth|go away +sneak preview|1 +(noun)|preview +sneak thief|1 +(noun)|pilferer|snitcher|thief|stealer +sneak up|1 +(verb)|creep up|advance|progress|pass on|move on|march on|go on +sneaker|2 +(noun)|gym shoe|tennis shoe|shoe +(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneak|canary|informer|betrayer|rat|squealer|blabber +sneakily|1 +(adv)|surreptitiously +sneakiness|1 +(noun)|furtiveness|stealthiness|closeness|secretiveness +sneaking|1 +(adj)|unavowed|concealed +sneaky|2 +(adj)|underhand|underhanded|crooked |corrupt +(adj)|furtive|lurking|skulking|sneak|stealthy|surreptitious|concealed +sneer|4 +(noun)|leer|contempt|scorn +(noun)|contempt|scorn +(verb)|express|show|evince +(verb)|smile +sneerer|1 +(noun)|scorner|unpleasant person|disagreeable person +sneering|1 +(adj)|supercilious|snide|uncomplimentary +sneeringly|1 +(adv)|superciliously|snidely +sneeze|2 +(noun)|sneezing|sternutation|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|act involuntarily|act reflexively +sneezer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sneezeweed|1 +(noun)|herb|herbaceous plant +sneezeweed yarrow|1 +(noun)|sneezewort|Achillea ptarmica|achillea +sneezewort|1 +(noun)|sneezeweed yarrow|Achillea ptarmica|achillea +sneezing|1 +(noun)|sneeze|sternutation|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +sneezy|1 +(adj)|ill |sick +snellen|1 +(noun)|Snellen|Hermann Snellen|ophthalmologist|eye doctor|oculist +snellen chart|1 +(noun)|Snellen chart|display|presentation +snellen test|1 +(noun)|Snellen test|test|trial|run +snick|4 +(noun)|notch|nick|cut|cutting +(noun)|contact +(verb)|hit +(verb)|nick|cut +snicker|2 +(noun)|snort|snigger|laugh|laughter +(verb)|snigger|laugh|express joy|express mirth +snickersnee|1 +(noun)|knife fight|cut-and-thrust|fight|fighting|combat|scrap +snide|1 +(adj)|supercilious|sneering|uncomplimentary +snidely|1 +(adv)|sneeringly|superciliously +sniff|3 +(noun)|snuff|smell|smelling +(verb)|whiff|smell|sniff out +(verb)|sniffle|inhale|inspire|breathe in +sniff out|1 +(verb)|scent out|smell out|nose out +sniffer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sniffle|3 +(noun)|snuffle|snivel|breathing|external respiration|respiration|ventilation +(verb)|snivel|blubber|blub|snuffle|cry|weep +(verb)|sniff|inhale|inspire|breathe in +sniffler|1 +(noun)|sniveler|person|individual|someone|somebody|mortal|human|soul +sniffly|1 +(adj)|snuffling|snuffly|tearful +sniffy|1 +(adj)|disdainful|haughty|lordly|prideful|supercilious|swaggering|proud +snifter|1 +(noun)|brandy snifter|brandy glass|glass|drinking glass +snigger|2 +(noun)|snicker|snort|laugh|laughter +(verb)|snicker|laugh|express joy|express mirth +snip|4 +(noun)|snippet|snipping|piece +(noun)|clip|clipping|cut|cutting|cutting off +(verb)|nip|nip off|clip|snip off|cut +(verb)|clip|crop|trim|lop|dress|prune|cut back|thin out +snip off|1 +(verb)|nip|nip off|clip|snip|cut +snipe|5 +(noun)|shorebird|shore bird|limicoline bird +(noun)|gunfire|gunshot +(verb)|hunt|run|hunt down|track down +(verb)|sharpshoot|shoot +(verb)|attack|round|assail|lash out|assault|knock|criticize|criticise|pick apart +snipe hunt|1 +(noun)|practical joke +snipefish|1 +(noun)|bellows fish|teleost fish|teleost|teleostan +sniper|1 +(noun)|marksman|sharpshooter|crack shot +sniper rifle|1 +(noun)|precision rifle|rifle +snippet|1 +(noun)|snip|snipping|piece +snipping|1 +(noun)|snip|snippet|piece +snips|3 +(noun)|tinsnips|shear|shears +(noun)|snip|snippet|snipping|piece +(noun)|clip|clipping|snip|cut|cutting|cutting off +snit|1 +(noun)|irritation|annoyance|vexation|botheration +snitch|3 +(noun)|fink|snitcher|stoolpigeon|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +(verb)|hook|thieve|cop|knock off|glom|steal +(verb)|denounce|tell on|betray|give away|rat|grass|shit|shop|stag|inform +snitcher|2 +(noun)|sneak thief|pilferer|thief|stealer +(noun)|fink|snitch|stoolpigeon|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +snivel|5 +(noun)|sniveling|crying|weeping|tears +(noun)|snuffle|sniffle|breathing|external respiration|respiration|ventilation +(verb)|whine|talk|speak|utter|mouth|verbalize|verbalise +(verb)|snuffle|inhale|inspire|breathe in +(verb)|sniffle|blubber|blub|snuffle|cry|weep +sniveler|1 +(noun)|sniffler|person|individual|someone|somebody|mortal|human|soul +sniveling|1 +(noun)|snivel|crying|weeping|tears +sniveller|1 +(noun)|whiner|complainer|moaner|crybaby|bellyacher|grumbler|squawker|unpleasant person|disagreeable person +sno-cat|1 +(noun)|Sno-cat|snowmobile +snob|1 +(noun)|prig|snot|unpleasant person|disagreeable person +snobbery|1 +(noun)|snobbishness|arrogance|haughtiness|hauteur|highhandedness|lordliness +snobbish|1 +(adj)|clannish|cliquish|clubby|snobby|private +snobbishly|1 +(adv)|snootily|uppishly +snobbishness|1 +(noun)|snobbery|arrogance|haughtiness|hauteur|highhandedness|lordliness +snobby|1 +(adj)|clannish|cliquish|clubby|snobbish|private +snog|1 +(verb)|smooch|spoon|neck|make out +snogging|1 +(noun)|caressing|cuddling|fondling|hugging|kissing|necking|petting|smooching|snuggling +snood|1 +(noun)|net|network|mesh|meshing|meshwork +snook|1 +(noun)|robolo +snooker|3 +(noun)|pool|pocket billiards +(verb)|trick|fob|fox|pull a fast one on|play a trick on +(verb)|play +snooker table|1 +(noun)|pool table|billiard table|table|game equipment +snoop|2 +(noun)|snooper|spy +(verb)|spy|stag|sleuth|monitor|supervise|ride herd on +snooper|1 +(noun)|snoop|spy +snoopiness|1 +(noun)|nosiness|prying|curiousness|inquisitiveness +snoopy|2 +(adj)|nosy|nosey|prying|curious +(noun)|Snoopy|fictional character|fictitious character|character +snoot|1 +(noun)|beak|honker|hooter|nozzle|snout|schnozzle|schnoz|nose|olfactory organ +snootily|1 +(adv)|snobbishly|uppishly +snooty|1 +(adj)|bigheaded|persnickety|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud +snooze|2 +(noun)|nap|catnap|cat sleep|forty winks|short sleep|sleeping +(verb)|drowse|doze|nap|catnap|catch a wink +snore|3 +(noun)|noise +(noun)|snoring|stertor|breathing|external respiration|respiration|ventilation +(verb)|saw wood|saw logs|breathe|take a breath|respire|suspire +snorer|1 +(noun)|sleeper|slumberer +snoring|2 +(adj)|breathing |eupneic|eupnoeic +(noun)|snore|stertor|breathing|external respiration|respiration|ventilation +snorkel|3 +(noun)|breathing device|breathing apparatus|breathing machine|ventilator +(noun)|schnorkel|schnorchel|snorkel breather|breather|air passage|air duct|airway +(verb)|dive +snorkel breather|1 +(noun)|snorkel|schnorkel|schnorchel|breather|air passage|air duct|airway +snorkel diving|1 +(noun)|snorkeling|skin diving|skin-dive +snorkeling|1 +(noun)|snorkel diving|skin diving|skin-dive +snort|7 +(noun)|snicker|snigger|laugh|laughter +(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|bird|cry|outcry|call|yell|shout|vociferation +(verb)|utter|emit|let out|let loose +(verb)|exhale|expire|breathe out +(verb)|huff|inhale|inspire|breathe in +(verb)|take a hit|drug|do drugs +(verb)|inhale|inspire|breathe in +snorter|3 +(noun)|unpleasant person|disagreeable person +(noun)|difficulty +(noun)|thing +snorting|2 +(adj)|breathing |eupneic|eupnoeic +(noun)|puffing|huffing|exhalation|expiration|breathing out +snorty|1 +(adj)|shirty|ill-natured +snot|2 +(noun)|snob|prig|unpleasant person|disagreeable person +(noun)|mucus|mucous secretion +snot-nosed|2 +(adj)|bigheaded|persnickety|snooty|snotty|stuck-up|too big for one's breeches|uppish|proud +(adj)|snotty|dirty |soiled|unclean +snotty|2 +(adj)|bigheaded|persnickety|snooty|snot-nosed|stuck-up|too big for one's breeches|uppish|proud +(adj)|snot-nosed|dirty |soiled|unclean +snotty-nosed|1 +(adj)|impudent|insolent|flip|disrespectful +snout|3 +(noun)|neb|nose|olfactory organ +(noun)|beak|honker|hooter|nozzle|snoot|schnozzle|schnoz|nose|olfactory organ +(noun)|rostrum|nose|olfactory organ +snout beetle|1 +(noun)|weevil +snow|6 +(noun)|snowfall|precipitation|downfall +(noun)|layer +(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer|author +(noun)|coke|blow|nose candy|C|cocaine|cocain +(verb)|precipitate|come down|fall +(verb)|bamboozle|hoodwink|pull the wool over someone's eyes|lead by the nose|play false|deceive|betray|lead astray +snow-blind|2 +(adj)|snow-blinded|blind |unsighted +(verb)|blind +snow-blinded|1 +(adj)|snow-blind|blind |unsighted +snow-capped|1 +(adj)|covering|natural covering|cover +snow-clad|1 +(adj)|snow-covered|snowy|covered +snow-covered|1 +(adj)|snow-clad|snowy|covered +snow-in-summer|2 +(noun)|snow-on-the-mountain|ghost weed|Euphorbia marginata|spurge +(noun)|love-in-a-mist|Cerastium tomentosum|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|chickweed +snow-on-the-mountain|1 +(noun)|snow-in-summer|ghost weed|Euphorbia marginata|spurge +snow-white|1 +(adj)|snowy|achromatic +snow blower|1 +(noun)|snow thrower|machine +snow bunting|1 +(noun)|snowbird|snowflake|Plectrophenax nivalis|bunting +snow chains|1 +(noun)|tire chains|chain +snow eater|1 +(noun)|chinook|chinook wind|wind|air current|current of air +snow flurry|1 +(noun)|flurry|snow|snowfall +snow goose|1 +(noun)|blue goose|Chen caerulescens +snow gum|1 +(noun)|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus|eucalypt|eucalyptus tree +snow job|1 +(noun)|misrepresentation|deceit|deception +snow leopard|1 +(noun)|ounce|Panthera uncia|big cat|cat +snow lily|1 +(noun)|glacier lily|Erythronium grandiflorum|dogtooth violet|dogtooth|dog's-tooth violet +snow line|1 +(noun)|line +snow mist|1 +(noun)|ice crystal|diamond dust|poudrin|ice needle|frost snow|frost mist|crystal +snow mushroom|1 +(noun)|Tremella fuciformis|jelly fungus +snow orchid|1 +(noun)|phantom orchid|Eburophyton austinae|orchid|orchidaceous plant +snow pea|2 +(noun)|sugar pea|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon +(noun)|sugar pea|green pea|garden pea +snow plant|1 +(noun)|Sarcodes sanguinea|wildflower|wild flower +snow thrower|1 +(noun)|snow blower|machine +snow tire|1 +(noun)|pneumatic tire|pneumatic tyre +snow trillium|1 +(noun)|dwarf-white trillium|early wake-robin|trillium|wood lily|wake-robin +snowball|6 +(noun)|sweet sand verbena|Abronia elliptica|sand verbena +(noun)|frozen dessert +(noun)|frozen dessert +(noun)|ball +(verb)|increase +(verb)|pelt|bombard +snowbank|1 +(noun)|mound|hill +snowbell|1 +(noun)|Styrax obassia|styrax +snowberry|1 +(noun)|common snowberry|waxberry|Symphoricarpos alba|poisonous plant|Caprifoliaceae|family Caprifoliaceae|honeysuckle family +snowbird|3 +(noun)|fieldfare|Turdus pilaris|thrush +(noun)|snow bunting|snowflake|Plectrophenax nivalis|bunting +(noun)|junco|finch +snowblindness|1 +(noun)|blindness|sightlessness|cecity +snowbound|1 +(adj)|confined +snowcap|1 +(noun)|covering|natural covering|cover +snowdrift|1 +(noun)|drift +snowdrop|1 +(noun)|wood anemone|Anemone quinquefolia|anemone|windflower +snowdrop anemone|1 +(noun)|snowdrop windflower|Anemone sylvestris|anemone|windflower +snowdrop tree|1 +(noun)|silver-bell tree|silverbell tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell +snowdrop windflower|1 +(noun)|snowdrop anemone|Anemone sylvestris|anemone|windflower +snowfall|1 +(noun)|snow|precipitation|downfall +snowfield|1 +(noun)|plain|field|champaign +snowflake|2 +(noun)|flake|crystal +(noun)|snow bunting|snowbird|Plectrophenax nivalis|bunting +snowman|1 +(noun)|figure +snowmobile|2 +(noun)|tracked vehicle +(verb)|ride +snowplough|1 +(noun)|snowplow|motor vehicle|automotive vehicle +snowplow|1 +(noun)|snowplough|motor vehicle|automotive vehicle +snowshoe|2 +(noun)|device +(verb)|travel|go|move|locomote +snowshoe hare|1 +(noun)|snowshoe rabbit|varying hare|Lepus americanus|hare +snowshoe rabbit|1 +(noun)|snowshoe hare|varying hare|Lepus americanus|hare +snowstorm|1 +(noun)|blizzard|storm|violent storm +snowsuit|1 +(noun)|overgarment|outer garment +snowy|3 +(adj)|white|covered +(adj)|snow-clad|snow-covered|covered +(adj)|snow-white|achromatic +snowy egret|1 +(noun)|snowy heron|Egretta thula|egret +snowy heron|1 +(noun)|snowy egret|Egretta thula|egret +snowy orchid|1 +(noun)|Habenaria nivea|fringed orchis|fringed orchid +snowy tree cricket|1 +(noun)|Oecanthus fultoni|tree cricket +snub|5 +(adj)|short +(noun)|rebuff|repulse|rejection +(noun)|cut|cold shoulder|rebuff|slight +(verb)|ignore|disregard|cut|treat|handle|do by +(verb)|rebuff|repel|reject|spurn|freeze off|scorn|pooh-pooh|disdain|turn down +snub-nosed|1 +(adj)|pug-nosed|pug-nose|nosed +snuff|7 +(adj)|snuff-brown|mummy-brown|chukker-brown|chromatic +(noun)|char +(noun)|touch|hint|tinge|mite|pinch|jot|speck|soupcon +(noun)|tobacco|baccy +(noun)|sniff|smell|smelling +(verb)|snuffle|smell +(verb)|inhale|inspire|breathe in +snuff-brown|1 +(adj)|snuff|mummy-brown|chukker-brown|chromatic +snuff-color|1 +(noun)|snuff-colour|yellowish brown|raw sienna|buff|caramel|caramel brown +snuff-colour|1 +(noun)|snuff-color|yellowish brown|raw sienna|buff|caramel|caramel brown +snuff it|1 +(verb)|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|die|decease|perish|go|exit|pass away|expire|pass +snuff out|2 +(verb)|extinguish|eliminate|get rid of|do away with +(verb)|blow out|extinguish|quench +snuff user|1 +(noun)|snuffer|consumer +snuffbox|1 +(noun)|box +snuffbox fern|1 +(noun)|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern|Thelypteris palustris|Dryopteris thelypteris +snuffer|3 +(noun)|implement +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|snuff user|consumer +snuffers|4 +(noun)|scissors|pair of scissors +(noun)|snuffer|implement +(noun)|snuffer|person|individual|someone|somebody|mortal|human|soul +(noun)|snuffer|snuff user|consumer +snuffle|4 +(noun)|sniffle|snivel|breathing|external respiration|respiration|ventilation +(verb)|snuff|smell +(verb)|snivel|inhale|inspire|breathe in +(verb)|snivel|sniffle|blubber|blub|cry|weep +snuffler|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +snuffling|1 +(adj)|sniffly|snuffly|tearful +snuffly|1 +(adj)|sniffly|snuffling|tearful +snug|5 +(adj)|protected |secure +(adj)|close|close-fitting|tight +(adj)|tight +(adj)|cozy|cosy|comfortable |comfy +(noun)|cubby|cubbyhole|snuggery|room +snuggery|1 +(noun)|cubby|cubbyhole|snug|room +snuggle|3 +(noun)|cuddle|nestle|embrace|embracing +(verb)|cuddle|nestle|nest|nuzzle|draw close|cling to|hold close|hold tight|clutch +(verb)|nestle|put|set|place|pose|position|lay +snuggled|1 +(adj)|nestled|close +snuggling|1 +(noun)|caressing|cuddling|fondling|hugging|kissing|necking|petting|smooching|foreplay|arousal|stimulation +snugness|1 +(noun)|coziness|cosiness|comfort|comfortableness +so|6 +(adj)|truthful|true +(adj)|in order|systematic +(noun)|sol|soh|solfa syllable +(adv)|thus|thusly +(adv)|then|and so|and then +(adv)|indeed +so-and-so|1 +(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|git|unpleasant person|disagreeable person +so-called|1 +(adj)|alleged|supposed|questionable +so-so|2 +(adj)|indifferent|passable|tolerable|ordinary +(adv)|acceptably|tolerably +so far|2 +(adv)|thus far|up to now|hitherto|heretofore|as yet|yet|til now|until now +(adv)|yet +so long|1 +(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|farewell|word of farewell +so much|1 +(adj)|such|much +so to speak|2 +(adv)|as it were +(adv)|as we say +soak|11 +(noun)|soakage|soaking|natural process|natural action|action|activity +(noun)|soaking|wash|washing|lavation +(verb)|immerse|plunge +(verb)|overcharge|surcharge|gazump|fleece|plume|pluck|rob|hook|cheat|rip off|chisel +(verb)|drench|douse|dowse|sop|souse|wet +(verb)|pawn|hock|consign|charge +(verb)|beat|beat up|work over +(verb)|intoxicate|inebriate|affect +(verb)|souse|inebriate|hit it up|drink|booze|fuddle +(verb)|imbue|impregnate|saturate +(verb)|heat|heat up +soak through|1 +(verb)|sop|ooze through +soak up|2 +(verb)|absorb|suck|imbibe|sop up|suck up|draw|take in|take up +(verb)|steep|immerse|engulf|plunge|engross|absorb|concentrate|focus|center|centre|pore|rivet +soakage|1 +(noun)|soak|soaking|natural process|natural action|action|activity +soaked|2 +(adj)|drenched|saturated|soaking|sodden|sopping|soppy|wet +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +soaker|2 +(noun)|downpour|cloudburst|deluge|waterspout|torrent|pelter|rain|rainfall +(noun)|alcoholic|alky|dipsomaniac|boozer|lush|souse|drunkard|drunk|rummy|sot|inebriate +soaking|5 +(adj)|drenched|saturated|soaked|sodden|sopping|soppy|wet +(noun)|soak|soakage|natural process|natural action|action|activity +(noun)|drenching|souse|sousing|wetting +(noun)|soak|wash|washing|lavation +(adv)|sopping|dripping +soaking up|1 +(noun)|absorption|sorption +soap|4 +(noun)|cleansing agent|cleanser|cleaner +(noun)|bribe|payoff +(noun)|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate|GHB +(verb)|lather|cleanse|clean +soap-rock|2 +(noun)|soapstone|soaprock|steatite|talc|talcum +(noun)| +soap-weed|2 +(noun)|soapweed|soap tree|Yucca elata|yucca +(noun)| +soap bubble|1 +(noun)|bubble +soap dish|1 +(noun)|fixture +soap dispenser|1 +(noun)|dispenser +soap film|1 +(noun)|film +soap flakes|1 +(noun)|soap +soap opera|1 +(noun)|serial|series +soap pad|1 +(noun)|cleaning pad +soap powder|1 +(noun)|built-soap powder|washing powder|soap +soap tree|1 +(noun)|soapweed|soap-weed|Yucca elata|yucca +soapberry|1 +(noun)|soapberry tree|tree +soapberry family|1 +(noun)|Sapindaceae|family Sapindaceae|dicot family|magnoliopsid family +soapberry tree|1 +(noun)|soapberry|tree +soapberry vine|1 +(noun)|vine +soapbox|2 +(noun)|crate +(noun)|dais|podium|pulpit|rostrum|ambo|stump|platform +soapfish|1 +(noun)|serranid fish|serranid +soaprock|1 +(noun)|soapstone|soap-rock|steatite|talc|talcum +soapstone|1 +(noun)|soaprock|soap-rock|steatite|talc|talcum +soapsuds|1 +(noun)|suds|lather|foam|froth +soapweed|1 +(noun)|soap-weed|soap tree|Yucca elata|yucca +soapwort|1 +(noun)|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower +soapwort gentian|1 +(noun)|Gentiana saponaria|gentian +soapy|1 +(adj)|saponaceous|cleansing agent|cleanser|cleaner +soar|6 +(noun)|zoom|rise|ascent|ascension|ascending +(verb)|soar up|soar upwards|surge|zoom|rise|lift|arise|move up|go up|come up|uprise +(verb)|hang glide|fly|aviate|pilot +(verb)|fly|wing +(verb)|rise|go up|climb +(verb)|sailplane|glide +soar up|1 +(verb)|soar|soar upwards|surge|zoom|rise|lift|arise|move up|go up|come up|uprise +soar upwards|1 +(verb)|soar|soar up|surge|zoom|rise|lift|arise|move up|go up|come up|uprise +soaring|4 +(adj)|high +(adj)|moving +(adj)|eminent|lofty|towering|high +(noun)|glide|gliding|sailplaning|sailing|flight|flying +soave|1 +(noun)|Soave|white wine +sob|4 +(noun)|shortness of breath|SOB|breathlessness|dyspnea|dyspnoea +(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person|disagreeable person +(noun)|sobbing|crying|weeping|tears +(verb)|cry|weep +sob sister|1 +(noun)|journalist +sob story|1 +(noun)|sob stuff|narrative|narration|story|tale +sob stuff|1 +(noun)|sob story|narrative|narration|story|tale +sobbing|1 +(noun)|sob|crying|weeping|tears +sober|7 +(adj)|sober |cold sober|stone-sober|dry|teetotal|drug-free|uninebriated|unintoxicated +(adj)|grave|sedate|solemn|serious +(adj)|drab|somber|sombre|colorless |colourless +(adj)|unplayful |serious +(verb)|change|alter|modify +(verb)|sober up|become|go|get +(verb)|sober up|become|go|get +sober up|2 +(verb)|sober|become|go|get +(verb)|sober|become|go|get +sobering|1 +(adj)|serious +soberly|1 +(adv)|gravely|staidly +soberness|2 +(noun)|sobriety|temporary state +(noun)|graveness|gravity|sobriety|somberness|seriousness|earnestness|serious-mindedness|sincerity +sobersided|1 +(adj)|humorless |humourless|unhumorous +sobersides|1 +(noun)|adult|grownup +sobralia|1 +(noun)|orchid|orchidaceous plant +sobriety|4 +(noun)|soberness|temporary state +(noun)|temperance|moderation +(noun)|graveness|gravity|soberness|somberness|seriousness|earnestness|serious-mindedness|sincerity +(noun)|temperance|abstinence +sobriquet|1 +(noun)|nickname|moniker|cognomen|soubriquet|appellation|denomination|designation|appellative +socage|1 +(noun)|service +soccer|1 +(noun)|association football|football|football game +soccer ball|1 +(noun)|ball +soccer player|1 +(noun)|athlete|jock|player|participant +sociability|1 +(noun)|sociableness|sociality +sociable|3 +(adj)|sociable |clubbable|clubable|clubbish|clubby|companionable|convivial|good-time|extroverted|forthcoming|outgoing|social|extroversive|extraversive|friendly|social +(adj)|congenial |agreeable +(noun)|social|mixer|party +sociableness|1 +(noun)|sociability|sociality +sociably|1 +(adv)|gregariously +social|7 +(adj)|societal|social group +(adj)|social |cultural|ethnic|ethnical|gregarious|interpersonal|multiethnic|multi-ethnic|friendly|gregarious|sociable +(adj)|elite|elite group +(adj)|sociable +(adj)|herding|swarming|gregarious +(adj)|friendly +(noun)|sociable|mixer|party +social action|1 +(noun)|social policy +social activity|1 +(noun)|group action +social affair|1 +(noun)|social gathering|gathering|assemblage +social anthropologist|1 +(noun)|anthropologist +social anthropology|1 +(noun)|cultural anthropology|anthropology +social assistance|1 +(noun)|supplementary benefit|national assistance|social insurance +social class|1 +(noun)|class|socio-economic class|people +social climber|1 +(noun)|climber|upstart|parvenu|nouveau-riche|arriviste +social contract|1 +(noun)|agreement|accord +social control|1 +(noun)|group action +social dancer|1 +(noun)|dancer|person|individual|someone|somebody|mortal|human|soul +social dancing|1 +(noun)|dancing|dance|terpsichore|saltation +social democracy|1 +(noun)|political orientation|ideology|political theory +social democratic party|1 +(noun)|Social Democratic Party|party|political party +social development commission|1 +(noun)|Social Development Commission|Economic and Social Council commission|ECOSOC commission +social disease|1 +(noun)|venereal disease|VD|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +social drinker|1 +(noun)|tippler|drinker|imbiber|toper|juicer +social event|1 +(noun)|event +social function|1 +(noun)|affair|occasion|social occasion|function|social event +social gathering|1 +(noun)|social affair|gathering|assemblage +social group|1 +(noun)|group|grouping +social insurance|1 +(noun)|social welfare|welfare +social intercourse|1 +(noun)|intercourse|intercommunication +social lion|1 +(noun)|lion|celebrity|famous person +social movement|1 +(noun)|movement|front|social group +social occasion|1 +(noun)|affair|occasion|function|social function|social event +social organisation|1 +(noun)|social organization|social structure|social system|structure|system|scheme +social organization|1 +(noun)|social organisation|social structure|social system|structure|system|scheme +social phobia|1 +(noun)|phobia|phobic disorder|phobic neurosis +social policy|1 +(noun)|policy +social process|1 +(noun)|human process +social psychology|1 +(noun)|psychology|psychological science +social rank|1 +(noun)|social station|social status|rank|status|position +social relation|1 +(noun)|relation +social science|1 +(noun)|science|scientific discipline +social scientist|1 +(noun)|scientist|man of science +social season|1 +(noun)|season +social secretary|1 +(noun)|secretary|secretarial assistant +social security|1 +(noun)|Social Security|social insurance +social security administration|1 +(noun)|Social Security Administration|SSA|independent agency +social security number|1 +(noun)|Social Security number|number|identification number +social service|1 +(noun)|welfare work|work +social station|1 +(noun)|social status|social rank|rank|status|position +social status|1 +(noun)|social station|social rank|rank|status|position +social stratification|1 +(noun)|stratification|condition +social structure|1 +(noun)|social organization|social organisation|social system|structure|system|scheme +social system|1 +(noun)|social organization|social organisation|social structure|structure|system|scheme +social unit|1 +(noun)|unit|organization|organisation +social welfare|1 +(noun)|welfare|financial aid +social work|1 +(noun)|welfare work|social service +social worker|1 +(noun)|caseworker|welfare worker|public servant +socialisation|3 +(noun)|socialization|group action +(noun)|socialization|socializing|socialising|meeting|coming together +(noun)|socialization|acculturation|enculturation|social control +socialise|4 +(verb)|socialize|interact +(verb)|socialize|educate +(verb)|socialize|fix|prepare|set up|ready|gear up|set +(verb)|socialize|change|alter|modify +socialised|1 +(adj)|socialized|liberal +socialiser|1 +(noun)|socializer|person|individual|someone|somebody|mortal|human|soul +socialising|1 +(noun)|socialization|socialisation|socializing|meeting|coming together +socialism|2 +(noun)|political orientation|ideology|political theory +(noun)|socialist economy|managed economy +socialist|3 +(adj)|socialistic|managed economy +(adj)|socialistic |collective|collectivist|collectivistic|collectivized|collectivised|state-controlled|left +(noun)|politician|politico|pol|political leader +socialist economy|1 +(noun)|socialism|managed economy +socialist labor party|1 +(noun)|Socialist Labor Party|party|political party +socialist party|1 +(noun)|Socialist Party|party|political party +socialist people's libyan arab jamahiriya|1 +(noun)|Libya|Socialist People's Libyan Arab Jamahiriya|African country|African nation +socialist republic of vietnam|1 +(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country|Asian nation +socialistic|2 +(adj)|socialistic |socialist|collective|collectivist|collectivistic|collectivized|collectivised|state-controlled|left +(adj)|socialist|managed economy +socialite|1 +(noun)|important person|influential person|personage +sociality|1 +(noun)|nature +socialization|3 +(noun)|socialisation|group action +(noun)|socialisation|socializing|socialising|meeting|coming together +(noun)|socialisation|acculturation|enculturation|social control +socialize|4 +(verb)|socialise|interact +(verb)|socialise|educate +(verb)|socialise|fix|prepare|set up|ready|gear up|set +(verb)|socialise|change|alter|modify +socialized|1 +(adj)|socialised|liberal +socializer|1 +(noun)|socialiser|person|individual|someone|somebody|mortal|human|soul +socializing|1 +(noun)|socialization|socialisation|socialising|meeting|coming together +socially connected|1 +(adj)|well-connected|connected +societal|1 +(adj)|social|social group +society|4 +(noun)|social group +(noun)|club|guild|gild|lodge|order|association +(noun)|company|companionship|fellowship|friendship|friendly relationship +(noun)|high society|beau monde|smart set|bon ton|elite|elite group +society islands|1 +(noun)|Society Islands|archipelago +society of friends|1 +(noun)|Religious Society of Friends|Society of Friends|Quakers|sect|religious sect|religious order +society of jesus|1 +(noun)|Jesuit order|Society of Jesus|order|monastic order +socinian|1 +(noun)|Socinian|disciple|adherent +socinus|1 +(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian|theologist|theologizer|theologiser +socio-economic class|1 +(noun)|class|social class|people +sociobiologic|1 +(adj)|sociobiological|biology|biological science +sociobiological|1 +(adj)|sociobiologic|biology|biological science +sociobiologist|1 +(noun)|biologist|life scientist +sociobiology|1 +(noun)|biology|biological science +sociocultural|1 +(adj)|social group|content|cognitive content|mental object +sociolinguist|1 +(noun)|linguist|linguistic scientist +sociolinguistic|1 +(adj)|linguistics +sociolinguistics|1 +(noun)|linguistics +sociological|1 +(adj)|social science +sociologist|1 +(noun)|social scientist +sociology|1 +(noun)|social science +sociology department|1 +(noun)|department of sociology|academic department +sociometry|1 +(noun)|sociology +sociopath|1 +(noun)|psychopath|neurotic|psychoneurotic|mental case +sociopathic|1 +(adj)|personality disorder +sociopathic personality|1 +(noun)|antisocial personality disorder|psychopathic personality|personality disorder +sock|3 +(noun)|hosiery|hose +(noun)|windsock|air sock|wind sleeve|wind cone|drogue|visual signal +(verb)|bop|whop|whap|bonk|bash|hit +socket|3 +(noun)|cavity|bodily cavity|cavum +(noun)|receptacle +(noun)|receptacle +socket wrench|1 +(noun)|wrench|spanner +sockeye|2 +(noun)|red salmon|sockeye salmon|salmon +(noun)|sockeye salmon|red salmon|blueback salmon|Onchorynchus nerka|salmon +sockeye salmon|2 +(noun)|red salmon|sockeye|salmon +(noun)|sockeye|red salmon|blueback salmon|Onchorynchus nerka|salmon +socle|1 +(noun)|pedestal|plinth|footstall +socotra begonia|1 +(noun)|Socotra begonia|Begonia socotrana|begonia +socrates|1 +(noun)|Socrates|philosopher|Athenian +socratic|1 +(adj)|Socratic|philosopher|Athenian +socratic irony|1 +(noun)|Socratic irony|irony +socratic method|1 +(noun)|Socratic method|maieutic method|teaching method|pedagogics|pedagogy +sod|5 +(noun)|turf|sward|greensward|land|ground|soil +(noun)|superoxide dismutase|SOD|enzyme +(noun)|sodomite|sodomist|bugger|pervert|deviant|deviate|degenerate +(noun)|guy|cat|hombre|bozo +(verb)|cover +sod's law|1 +(noun)|Murphy's Law|Sod's Law|gnome +sod house|1 +(noun)|soddy|adobe house|house +soda|2 +(noun)|sodium carbonate|washing soda|sal soda|soda ash|salt +(noun)|pop|soda pop|soda water|tonic|soft drink +soda ash|1 +(noun)|sodium carbonate|washing soda|sal soda|soda|salt +soda biscuit|1 +(noun)|buttermilk biscuit|biscuit +soda bottle|1 +(noun)|pop bottle|bottle +soda can|1 +(noun)|can|tin|tin can +soda cracker|1 +(noun)|cracker +soda fountain|2 +(noun)|bar +(noun)|apparatus|setup +soda jerk|1 +(noun)|soda jerker|counterperson|counterwoman|counterman +soda jerker|1 +(noun)|soda jerk|counterperson|counterwoman|counterman +soda lime|1 +(noun)|mixture +soda niter|1 +(noun)|sodium nitrate|nitrate +soda pop|1 +(noun)|pop|soda|soda water|tonic|soft drink +soda water|2 +(noun)|carbonated water|club soda|seltzer|sparkling water|drinking water +(noun)|pop|soda|soda pop|tonic|soft drink +sodalist|1 +(noun)|member +sodalite|1 +(noun)|mineral +sodality|1 +(noun)|brotherhood|fraternity|class|social class|socio-economic class +sodbuster|1 +(noun)|farmer|husbandman|granger|creator +sodden|1 +(adj)|drenched|saturated|soaked|soaking|sopping|soppy|wet +sodding|1 +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|stark|staring|thoroughgoing|utter|unmitigated +soddy|2 +(noun)|sod house|adobe house|house +(noun)|Soddy|Frederick Soddy|chemist +sodium|1 +(noun)|Na|atomic number 11|metallic element|metal +sodium-vapor lamp|1 +(noun)|sodium-vapour lamp|lamp +sodium-vapour lamp|1 +(noun)|sodium-vapor lamp|lamp +sodium benzoate|1 +(noun)|benzoate of soda|benzoate +sodium bicarbonate|1 +(noun)|bicarbonate of soda|sodium hydrogen carbonate|baking soda|saleratus|bicarbonate|hydrogen carbonate +sodium bichromate|1 +(noun)|sodium dichromate|mordant|salt +sodium carbonate|1 +(noun)|washing soda|sal soda|soda ash|soda|salt +sodium carboxymethyl cellulose|1 +(noun)|salt +sodium chlorate|1 +(noun)|salt +sodium chloride|1 +(noun)|common salt|binary compound +sodium cyanide|1 +(noun)|cyanide +sodium dichromate|1 +(noun)|sodium bichromate|mordant|salt +sodium ethylmercurithiosalicylate|1 +(noun)|thimerosal|Merthiolate|antiseptic +sodium fluoride|1 +(noun)|salt +sodium hydride|1 +(noun)|hydride +sodium hydrogen carbonate|1 +(noun)|bicarbonate of soda|sodium bicarbonate|baking soda|saleratus|bicarbonate|hydrogen carbonate +sodium hydroxide|1 +(noun)|caustic soda|hydroxide|hydrated oxide +sodium hypochlorite|1 +(noun)|hypochlorite|bleaching agent|bleach|blanching agent|whitener|disinfectant|germicide|antimicrobic|antimicrobial +sodium iodide|1 +(noun)|iodide +sodium lauryl sulfate|1 +(noun)|sodium lauryl sulphate|SLS|sulfate|sulphate|detergent +sodium lauryl sulphate|1 +(noun)|sodium lauryl sulfate|SLS|sulfate|sulphate|detergent +sodium nitrate|1 +(noun)|soda niter|nitrate +sodium nitrite|1 +(noun)|nitrite +sodium orthophosphate|1 +(noun)|sodium phosphate|phosphate|orthophosphate|inorganic phosphate +sodium phosphate|1 +(noun)|sodium orthophosphate|phosphate|orthophosphate|inorganic phosphate +sodium pyrophosphate|1 +(noun)|tetrasodium pyrophosphate|builder|detergent builder +sodium salicylate|1 +(noun)|analgesic|anodyne|painkiller|pain pill +sodium silicate|1 +(noun)|soluble glass|water glass|glass +sodium sulfate|1 +(noun)|sodium sulphate|sulfate|sulphate +sodium sulphate|1 +(noun)|sodium sulfate|sulfate|sulphate +sodium thiopental|1 +(noun)|phenobarbital|phenobarbitone|Luminal|purple heart|barbiturate +sodium thiosulfate|1 +(noun)|hypo|sodium thiosulphate|fixing agent|fixer +sodium thiosulphate|1 +(noun)|hypo|sodium thiosulfate|fixing agent|fixer +sodium tripolyphosphate|1 +(noun)|builder|detergent builder +sodoku|1 +(noun)|spirillum fever|ratbite fever +sodom|2 +(noun)|location +(noun)|Sodom|city|metropolis|urban center +sodomise|2 +(verb)|sodomize|copulate|mate|pair|couple +(verb)|sodomize|bugger|copulate|mate|pair|couple +sodomist|1 +(noun)|sodomite|sod|bugger|pervert|deviant|deviate|degenerate +sodomite|1 +(noun)|sodomist|sod|bugger|pervert|deviant|deviate|degenerate +sodomize|2 +(verb)|sodomise|copulate|mate|pair|couple +(verb)|sodomise|bugger|copulate|mate|pair|couple +sodomy|1 +(noun)|buggery|anal sex|anal intercourse|perversion|sexual perversion +sofa|1 +(noun)|couch|lounge|seat +sofa bed|1 +(noun)|convertible|sofa|couch|lounge +soffit|1 +(noun)|side +sofia|1 +(noun)|Sofia|Serdica|Bulgarian capital|national capital +sofia scicolone|1 +(noun)|Loren|Sophia Loren|Sofia Scicolone|actress +soft|11 +(adj)|soft |brushed|fleecy|napped|cheeselike|compressible|squeezable|cottony|cushioned|cushiony|padded|demulcent|emollient|salving|softening|downy|downlike|flossy|fluffy|flabby|flaccid|flocculent|woolly|wooly|yielding|mushy|overstuffed|softish|semisoft|spongy|squashy|squishy|spongelike|velvet|velvety +(adj)|soft |coddled|pampered|spoiled|compliant|diffused|softened|easy|effeminate|weak|euphonious|liquid|mellow|mellowing|easy|kind|merciful|tender|warmhearted +(adj)|soft |dull|muffled|muted|softened|gentle|little|small|low|low-toned|murmuring|susurrant|whispering|murmurous|rustling|soughing|susurrous|soft-footed|soft-spoken|hushed|muted|subdued|quiet|quiet +(adj)|delicate|tender |untoughened +(adj)|piano |pianissimo|pianissimo assai +(adj)|nonalcoholic +(adj)|soft |fricative|sibilant|spirant|palatal|palatalized|palatalised +(adj)|indulgent|lax|lenient|permissive +(adj)|easy|gentle|light +(adj)|cushy|easy +(adv)|easy +soft-boiled|2 +(adj)|softhearted +(adj)|cooked +soft-cast steel|1 +(noun)|mild steel|low-carbon steel|steel +soft-coated wheaten terrier|1 +(noun)|terrier +soft-cover|1 +(noun)|paperback book|paper-back book|paperback|softback book|softback|soft-cover book|book|volume +soft-cover book|1 +(noun)|paperback book|paper-back book|paperback|softback book|softback|soft-cover|book|volume +soft-finned fish|1 +(noun)|malacopterygian|teleost fish|teleost|teleostan +soft-footed|1 +(adj)|soft +soft-nosed|1 +(adj)|projectile|missile +soft-pedal|1 +(verb)|background|play down|downplay +soft-shell clam|2 +(noun)|steamer|steamer clam|long-neck clam|clam +(noun)|steamer|steamer clam|long-neck clam|Mya arenaria|clam +soft-shell crab|2 +(noun)|soft-shelled crab|crab|crabmeat +(noun)|soft-shelled crab|crab +soft-shelled crab|2 +(noun)|soft-shell crab|crab|crabmeat +(noun)|soft-shell crab|crab +soft-shelled turtle|1 +(noun)|pancake turtle|turtle +soft-shoe|1 +(noun)|soft-shoe shuffle|soft-shoe dancing|tap dancing|tap dance +soft-shoe dancing|1 +(noun)|soft-shoe|soft-shoe shuffle|tap dancing|tap dance +soft-shoe shuffle|1 +(noun)|soft-shoe|soft-shoe dancing|tap dancing|tap dance +soft-soap|2 +(verb)|wheedle|cajole|palaver|blarney|coax|sweet-talk|inveigle +(verb)|flatter|blandish +soft-solder|1 +(verb)|solder +soft-spoken|1 +(adj)|soft +soft-witted|1 +(adj)|nitwitted|senseless|witless|stupid +soft coal|1 +(noun)|bituminous coal|coal +soft corn|1 +(noun)|flour corn|squaw corn|Zea mays amylacea|field corn +soft diet|1 +(noun)|pap|spoon food|diet +soft drink|1 +(noun)|beverage|drink|drinkable|potable +soft drug|1 +(noun)|drug of abuse|street drug|narcotic +soft flag|1 +(noun)|lesser bullrush|narrow-leaf cattail|narrow-leaved reedmace|Typha angustifolia|cattail +soft glass|1 +(noun)|glass +soft goods|1 +(noun)|drygoods|commodity|trade goods|goods +soft ice cream|1 +(noun)|frozen custard|frozen dessert +soft money|1 +(noun)|political contribution|political donation +soft news|1 +(noun)|news +soft on|1 +(adj)|crazy|dotty|gaga|enamored|infatuated|in love|smitten|taken with|loving +soft option|1 +(noun)|option|alternative|choice +soft palate|1 +(noun)|velum|flap +soft pedal|1 +(noun)|pedal|treadle|foot pedal|foot lever +soft pretzel|1 +(noun)|pretzel +soft roe|1 +(noun)|milt|seafood +soft roll|1 +(noun)|bun|roll +soft rot|1 +(noun)|plant disease +soft rush|1 +(noun)|bulrush|bullrush|common rush|Juncus effusus|rush +soft scale|1 +(noun)|scale insect +soft sell|1 +(noun)|advertising|publicizing +soft shield fern|1 +(noun)|Polystichum setiferum|shield fern|buckler fern +soft soap|2 +(noun)|blarney|coaxing|sweet talk|flattery +(noun)|green soap|soap +soft solder|1 +(noun)|solder +soft spot|3 +(noun)|weak part|weak spot|weakness +(noun)|affection|affectionateness|fondness|tenderness|heart|warmheartedness +(noun)|fontanelle|fontanel|orifice|opening|porta +soft tick|1 +(noun)|argasid|tick +soft touch|1 +(noun)|chump|fool|gull|mark|patsy|fall guy|sucker|mug|victim|dupe +soft tree fern|1 +(noun)|Dicksonia antarctica|tree fern +soft water|1 +(noun)|water|H2O +soft wheat|1 +(noun)|wheat|corn +softback|1 +(noun)|paperback book|paper-back book|paperback|softback book|soft-cover book|soft-cover|book|volume +softback book|1 +(noun)|paperback book|paper-back book|paperback|softback|soft-cover book|soft-cover|book|volume +softball|2 +(noun)|playground ball|ball +(noun)|softball game|baseball|baseball game|ball +softball game|1 +(noun)|softball|baseball|baseball game|ball +soften|7 +(verb)|change intensity +(verb)|dampen|damp|weaken|break|deaden|blunt +(verb)|yield|relent +(verb)|cushion|buffer|modify +(verb)|mince|moderate|change|alter|modify +(verb)|change|alter|modify +(verb)|change +softened|3 +(adj)|modulated +(adj)|dull|muffled|muted|soft +(adj)|diffused|soft +softener|1 +(noun)|chemical +softening|2 +(adj)|demulcent|emollient|salving|soft +(noun)|natural process|natural action|action|activity +softheaded|1 +(adj)|crazy|half-baked|screwball|impractical +softhearted|1 +(adj)|softhearted |soft-boiled +softheartedness|1 +(noun)|tenderness|concern +softie|1 +(noun)|softy|weakling|doormat|wuss +softish|1 +(adj)|semisoft|soft +softly|3 +(adv)|quietly +(adv)|lightly|gently +(adv)|piano +softness|3 +(noun)|consistency|consistence|body +(noun)|sound property +(noun)|indulgence|lenience|leniency +software|1 +(noun)|software system|software package|package|code|computer code +software documentation|1 +(noun)|documentation|software|software system|software package|package +software engineer|1 +(noun)|programmer|computer programmer|coder|engineer|applied scientist|technologist|computer user +software error|1 +(noun)|programming error|error|computer error +software package|2 +(noun)|software|software system|package|code|computer code +(noun)|software product|merchandise|wares|product +software product|1 +(noun)|software package|merchandise|wares|product +software system|1 +(noun)|software|software package|package|code|computer code +softwood|2 +(adj)|softwood +(noun)|deal|wood +softy|1 +(noun)|softie|weakling|doormat|wuss +sogginess|1 +(noun)|wetness +soggy|2 +(adj)|waterlogged|wet +(adj)|doughy|heavy +soh|1 +(noun)|sol|so|solfa syllable +soho|2 +(noun)|SoHo|city district +(noun)|Soho|city district +soi-disant|1 +(adj)|self-styled|questionable +soigne|1 +(adj)|soignee|elegant +soignee|1 +(adj)|soigne|elegant +soil|5 +(noun)|dirt|filth|grime|stain|grease|grunge|dirtiness|uncleanness +(noun)|dirt|earth|ground +(noun)|land|ground|object|physical object +(noun)|territory|geographical area|geographic area|geographical region|geographic region +(verb)|dirty|begrime|grime|colly|bemire|change|alter|modify +soil bank|1 +(noun)|bank +soil conservation|1 +(noun)|conservation +soil erosion|1 +(noun)|erosion|eroding|eating away|wearing|wearing away +soil horizon|1 +(noun)|horizon +soil pipe|1 +(noun)|drain|drainpipe|waste pipe +soil profile|1 +(noun)|profile +soiled|1 +(adj)|dirty |unclean|bedraggled|draggled|befouled|fouled|begrimed|dingy|grimy|grubby|grungy|raunchy|bespattered|spattered|besplashed|splashed|black|buggy|dirty-faced|dusty|dust-covered|fecal|faecal|feculent|filthy|foul|nasty|flyblown|squalid|sordid|greasy|oily|lousy|mucky|muddy|scummy|smeared|smirched|smudged|smudgy|snotty|snot-nosed|travel-soiled|travel-stained|unswept|unwashed|maculate|unclean|impure|untidy +soiling|1 +(noun)|soilure|dirtying|change of state +soilure|1 +(noun)|soiling|dirtying|change of state +soiree|1 +(noun)|party +soiree musicale|1 +(noun)|musical soiree|soiree +soissons|1 +(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle +soixante-neuf|1 +(noun)|sixty-nine|oral sex|head +soja|1 +(noun)|soy|soya|soybean|soya bean|soybean plant|soja bean|Glycine max|legume|leguminous plant +soja bean|1 +(noun)|soy|soya|soybean|soya bean|soybean plant|soja|Glycine max|legume|leguminous plant +sojourn|2 +(noun)|visit|stay +(verb)|spend|pass +sojourner|1 +(noun)|resident|occupant|occupier +sojourner truth|1 +(noun)|Truth|Sojourner Truth|abolitionist|emancipationist|feminist|women's rightist|women's liberationist|libber +sokoro|1 +(noun)|Sokoro|East Chadic +sol|3 +(noun)|colloidal solution|colloidal suspension|colloid +(noun)|Sol|Roman deity +(noun)|soh|so|solfa syllable +sol hurok|1 +(noun)|Hurok|Sol Hurok|Solomon Hurok|showman|promoter|impresario +sol rojo|1 +(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization|terrorist group|foreign terrorist organization|FTO +solace|4 +(noun)|consolation|solacement|comfort +(noun)|solacement|comfort|comfortableness +(noun)|consolation|comfort|relief|succor|succour|ministration +(verb)|comfort|soothe|console +solacement|2 +(noun)|solace|comfort|comfortableness +(noun)|consolation|solace|comfort +solan|1 +(noun)|solan goose|solant goose|Sula bassana|gannet +solan goose|1 +(noun)|solan|solant goose|Sula bassana|gannet +solanaceae|1 +(noun)|Solanaceae|family Solanaceae|potato family|asterid dicot family +solanaceous|1 +(adj)|asterid dicot family +solanaceous vegetable|1 +(noun)|vegetable|veggie +solandra|1 +(noun)|Solandra|genus Solandra|asterid dicot genus +solandra guttata|1 +(noun)|chalice vine|trumpet flower|cupflower|Solandra guttata|shrub|bush +solanopteris|1 +(noun)|Solanopteris|genus Solanopteris|fern genus +solanopteris bifrons|1 +(noun)|potato fern|Solanopteris bifrons|fern +solant goose|1 +(noun)|solan|solan goose|Sula bassana|gannet +solanum|1 +(noun)|Solanum|genus Solanum|asterid dicot genus +solanum aviculare|1 +(noun)|kangaroo apple|poroporo|Solanum aviculare|nightshade +solanum burbankii|1 +(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +solanum carolinense|1 +(noun)|horse nettle|ball nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade +solanum commersonii|1 +(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine +solanum crispum|1 +(noun)|potato tree|Solanum crispum|vine +solanum dulcamara|1 +(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade +solanum elaeagnifolium|1 +(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +solanum giganteum|1 +(noun)|African holly|Solanum giganteum|nightshade +solanum jamesii|1 +(noun)|wild potato|Solanum jamesii|vine +solanum jasmoides|1 +(noun)|potato vine|Solanum jasmoides|vine +solanum macranthum|1 +(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub|bush +solanum melanocerasum|1 +(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +solanum melongena|1 +(noun)|eggplant|aubergine|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb|herbaceous plant +solanum nigrum|1 +(noun)|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade +solanum nigrum guineese|1 +(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +solanum pseudocapsicum|1 +(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade +solanum quitoense|1 +(noun)|naranjilla|Solanum quitoense|shrub|bush +solanum rostratum|1 +(noun)|buffalo bur|Solanum rostratum|nightshade +solanum tuberosum|1 +(noun)|potato|white potato|white potato vine|Solanum tuberosum|vine +solanum wendlandii|1 +(noun)|potato vine|giant potato creeper|Solanum wendlandii|vine +solanum wrightii|1 +(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub|bush +solar|1 +(adj)|star +solar apex|1 +(noun)|apex|apex of the sun's way|celestial point +solar array|1 +(noun)|solar battery|solar panel|electrical device +solar battery|1 +(noun)|solar array|solar panel|electrical device +solar calendar|1 +(noun)|calendar +solar cell|1 +(noun)|photovoltaic cell|cell|electric cell +solar collector|1 +(noun)|solar dish|solar furnace|reflector +solar constant|1 +(noun)|rate +solar day|1 +(noun)|day|twenty-four hours|mean solar day|time unit|unit of time +solar dish|1 +(noun)|solar collector|solar furnace|reflector +solar eclipse|1 +(noun)|eclipse|occultation +solar energy|1 +(noun)|solar power|alternative energy +solar flare|1 +(noun)|flare|solar radiation +solar furnace|1 +(noun)|solar dish|solar collector|reflector +solar gravity|1 +(noun)|gravity|gravitation|gravitational attraction|gravitational force +solar halo|1 +(noun)|parhelic circle|parhelic ring|halo +solar heater|1 +(noun)|heater|warmer +solar house|1 +(noun)|house +solar magnetic field|1 +(noun)|magnetic field|magnetic flux|flux +solar month|1 +(noun)|month +solar panel|1 +(noun)|solar array|solar battery|electrical device +solar parallax|1 +(noun)|geocentric parallax|diurnal parallax +solar physics|1 +(noun)|astronomy|uranology +solar plexus|1 +(noun)|coeliac plexus|plexus celiacus|abdominal nerve plexus|nerve plexus +solar power|1 +(noun)|solar energy|alternative energy +solar prominence|1 +(noun)|solar radiation +solar radiation|1 +(noun)|radiation +solar system|1 +(noun)|system|scheme +solar telescope|1 +(noun)|telescope|scope +solar thermal system|1 +(noun)|system +solar trap|1 +(noun)|suntrap|patio|terrace +solar wind|1 +(noun)|solar radiation +solar year|1 +(noun)|tropical year|astronomical year|equinoctial year|year +solarisation|1 +(noun)|solarization|exposure +solarise|4 +(verb)|solarize|develop +(verb)|solarize|change +(verb)|solarize|overexpose +(verb)|sun|insolate|solarize|expose +solarium|1 +(noun)|sun parlor|sun parlour|sun porch|sunroom|sun lounge|room +solarization|1 +(noun)|solarisation|exposure +solarize|4 +(verb)|solarise|develop +(verb)|solarise|change +(verb)|solarise|overexpose +(verb)|sun|insolate|solarise|expose +sold|1 +(adj)|sold |oversubscribed|sold-out +sold-out|2 +(adj)|corrupt +(adj)|sold +solder|2 +(noun)|alloy|metal +(verb)|join|conjoin +solderer|1 +(noun)|worker +soldering|1 +(noun)|bonding|fastening|attachment +soldering flux|1 +(noun)|flux +soldering iron|1 +(noun)|hand tool +soldier|3 +(noun)|enlisted person +(noun)|worker +(verb)|spend|pass +soldier-fish|2 +(noun)|soldierfish|squirrelfish +(noun)| +soldier grainy club|1 +(noun)|grainy club +soldier of fortune|1 +(noun)|mercenary|adventurer|venturer +soldierfish|1 +(noun)|soldier-fish|squirrelfish +soldiering|2 +(noun)|soldiership|skill|accomplishment|acquirement|acquisition|attainment +(noun)|shirking|slacking|goofing off|goldbricking|evasion|escape|dodging +soldierlike|1 +(adj)|soldierly|warriorlike|martial|military +soldierly|1 +(adj)|soldierlike|warriorlike|martial|military +soldiers of god|1 +(noun)|Jund-ul-Islam|Soldiers of God|terrorist organization|terrorist group|foreign terrorist organization|FTO +soldiership|1 +(noun)|soldiering|skill|accomplishment|acquirement|acquisition|attainment +soldiery|1 +(noun)|military personnel|troops|force|personnel +sole|7 +(adj)|exclusive|unshared +(adj)|lone|lonesome|only|solitary|single +(noun)|bottom|underside|undersurface +(noun)|fillet of sole|flatfish +(noun)|area|region +(noun)|flatfish|food fish +(verb)|resole|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +solea|1 +(noun)|Solea|genus Solea|fish genus +solea lascaris|1 +(noun)|lemon sole|Solea lascaris|sole +solea solea|1 +(noun)|European sole|Solea solea|sole +solecism|1 +(noun)|faux pas|gaffe|slip|gaucherie|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +soled|1 +(adj)|soled +soledad|1 +(noun)|Soledad|city|metropolis|urban center +soledad pine|1 +(noun)|Torrey pine|Torrey's pine|gray-leaf pine|sabine pine|Pinus torreyana|pine|pine tree|true pine +soleidae|1 +(noun)|Soleidae|family Soleidae|fish family +soleirolia|1 +(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus|magnoliopsid genus +soleirolia soleirolii|1 +(noun)|baby's tears|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover|ground cover +soleless|1 +(adj)|soleless +solely|1 +(adv)|entirely|exclusively|alone|only +solemn|2 +(adj)|grave|sedate|sober|serious +(adj)|earnest|in earnest|sincere|serious +solemness|1 +(noun)|sedateness|staidness|solemnity|seriousness|earnestness|serious-mindedness|sincerity +solemnisation|1 +(noun)|celebration|solemnization|ritual +solemnise|3 +(verb)|solemnize|observe|celebrate|keep +(verb)|solemnize|marry|wed|tie|splice +(verb)|solemnize|change|alter|modify +solemnity|2 +(noun)|sedateness|staidness|solemness|seriousness|earnestness|serious-mindedness|sincerity +(noun)|gravity|feeling +solemnity of mary|1 +(noun)|Solemnity of Mary|January 1|holy day of obligation +solemnization|1 +(noun)|celebration|solemnisation|ritual +solemnize|3 +(verb)|solemnise|observe|celebrate|keep +(verb)|solemnise|marry|wed|tie|splice +(verb)|solemnise|change|alter|modify +solenichthyes|1 +(noun)|Solenichthyes|order Solenichthyes|animal order +solenidae|1 +(noun)|Solenidae|family Solenidae|mollusk family +solenogaster|1 +(noun)|aplacophoran|gastropod|univalve +solenogastres|1 +(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order +solenoid|1 +(noun)|coil|magnet +solenopsis|1 +(noun)|Solenopsis|genus Solenopsis|arthropod genus +solenostemon|1 +(noun)|Solenostemon|genus Solenostemon|asterid dicot genus +solenostemon blumei|1 +(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus|flame nettle +solenostemon scutellarioides|1 +(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus|flame nettle +solent|1 +(noun)|Solent|the Solent|strait|sound +soleus|1 +(noun)|soleus muscle|skeletal muscle|striated muscle +soleus muscle|1 +(noun)|soleus|skeletal muscle|striated muscle +solfa|1 +(noun)|tonic solfa|solmization|solmisation +solfa syllable|1 +(noun)|syllable +solfege|2 +(noun)|solmization|solfeggio|singing|vocalizing +(noun)|solfeggio|singing|vocalizing +solfeggio|2 +(noun)|solmization|solfege|singing|vocalizing +(noun)|solfege|singing|vocalizing +solferino|2 +(noun)|purplish pink|pink +(noun)|Solferino|battle of Solferino|pitched battle +solicit|5 +(verb)|beg|tap|request|bespeak|call for|quest +(verb)|woo|court|romance|act|move +(verb)|hook|accost|offer +(verb)|induce|stimulate|cause|have|get|make +(verb)|ask +solicitation|3 +(noun)|entreaty|prayer|appeal +(noun)|appeal|collection|ingathering|request|petition|postulation +(noun)|allurement|enticement|temptation +solicited|1 +(adj)|invited +solicitor|2 +(noun)|canvasser|petitioner|suppliant|supplicant +(noun)|lawyer|attorney +solicitor general|1 +(noun)|lawman|law officer|peace officer +solicitorship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +solicitous|2 +(adj)|concerned +(adj)|attentive +solicitousness|1 +(noun)|solicitude|concern +solicitude|1 +(noun)|solicitousness|concern +solid|16 +(adj)|solid |coagulated|solidified|concrete|congealed|jelled|jellied|dry|semisolid|solid-state|solid-state|hard +(adj)|good +(adj)|solid |massive|unhollowed +(adj)|homogeneous |homogenous +(adj)|unbroken +(adj)|hearty|satisfying|substantial|wholesome +(adj)|strong|substantial|sound +(adj)|noble|upstanding|worthy|honorable |honourable +(adj)|firm|hard +(adj)|cubic |three-dimensional +(adj)|opaque +(adj)|self-colored|self-coloured|plain |unpatterned +(adj)|unanimous|undiversified |unvaried +(noun)|substance|matter +(noun)|solidness|state of matter|state +(noun)|shape|form +solid-state|2 +(adj)|solid +(adj)|solid +solid-state physics|1 +(noun)|physics|physical science|natural philosophy +solid angle|1 +(noun)|angle +solid body substance|1 +(noun)|body substance +solid figure|1 +(noun)|three-dimensional figure|figure +solid geometry|1 +(noun)|geometry +solid ground|1 +(noun)|land|dry land|earth|ground|terra firma|object|physical object +solid solution|1 +(noun)|primary solid solution|solution +solidago|1 +(noun)|Solidago|genus Solidago|asterid dicot genus +solidago bicolor|1 +(noun)|silverrod|Solidago bicolor|goldenrod +solidago canadensis|1 +(noun)|meadow goldenrod|Canadian goldenrod|Solidago canadensis|goldenrod +solidago missouriensis|1 +(noun)|Missouri goldenrod|Solidago missouriensis|goldenrod +solidago multiradiata|1 +(noun)|alpine goldenrod|Solidago multiradiata|goldenrod +solidago nemoralis|1 +(noun)|gray goldenrod|Solidago nemoralis|goldenrod +solidago odora|1 +(noun)|Blue Mountain tea|sweet goldenrod|Solidago odora|goldenrod +solidago rugosa|1 +(noun)|dyer's weed|Solidago rugosa|goldenrod +solidago sempervirens|1 +(noun)|seaside goldenrod|beach goldenrod|Solidago sempervirens|goldenrod +solidago spathulata|1 +(noun)|narrow goldenrod|Solidago spathulata|goldenrod +solidarity|1 +(noun)|commonality|commonness +solidification|1 +(noun)|hardening|solidifying|set|curing|natural process|natural action|action|activity +solidified|1 +(adj)|coagulated|solid +solidify|2 +(verb)|change integrity +(verb)|change integrity +solidifying|1 +(noun)|hardening|solidification|set|curing|natural process|natural action|action|activity +solidity|2 +(noun)|solidness|consistency|consistence|body +(noun)|fullness +solidness|2 +(noun)|solid|state of matter|state +(noun)|solidity|consistency|consistence|body +solidus|2 +(noun)|bezant|bezzant|byzant|coin +(noun)|slash|virgule|diagonal|stroke|separatrix|punctuation|punctuation mark +soliloquise|1 +(verb)|monologuize|monologuise|soliloquize|talk|speak +soliloquize|1 +(verb)|monologuize|monologuise|soliloquise|talk|speak +soliloquy|2 +(noun)|monologue|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|actor's line|speech|words +solingen|1 +(noun)|Solingen|city|metropolis|urban center +solipsism|1 +(noun)|philosophical doctrine|philosophical theory +solitaire|4 +(noun)|jewel|gem|precious stone +(noun)|Pezophaps solitaria|columbiform bird +(noun)|thrush +(noun)|patience|card game|cards +solitariness|2 +(noun)|loneliness|isolation +(noun)|disposition|temperament +solitary|8 +(adj)|eremitic|eremitical|lone|unsocial +(adj)|nongregarious|nonsocial|ungregarious +(adj)|alone|lone|lonely|unaccompanied +(adj)|lonely|unsocial +(adj)|lone|lonesome|only|sole|single +(adj)|lonely|unfrequented|inaccessible |unaccessible +(noun)|solitary confinement|confinement +(noun)|hermit|recluse|solitudinarian|troglodyte|loner|lone wolf|lone hand +solitary confinement|1 +(noun)|solitary|confinement +solitary pussytoes|1 +(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica +solitary vireo|1 +(noun)|Vireo solitarius|vireo +solitary wave|1 +(noun)|soliton|soliton wave|traveling wave +soliton|1 +(noun)|soliton wave|solitary wave|traveling wave +soliton wave|1 +(noun)|soliton|solitary wave|traveling wave +solitude|3 +(noun)|purdah|isolation +(noun)|topographic point|place|spot +(noun)|aloneness|loneliness|lonesomeness|disposition|temperament +solitudinarian|1 +(noun)|hermit|recluse|solitary|troglodyte|loner|lone wolf|lone hand +solleret|1 +(noun)|sabaton|armor plate|armour plate|armor plating|plate armor|plate armour +solmisation|1 +(noun)|solmization|musical notation +solmizate|2 +(verb)|sing +(verb)|sing +solmization|2 +(noun)|solmisation|musical notation +(noun)|solfege|solfeggio|singing|vocalizing +solo|7 +(adj)|unaccompanied +(noun)|activity +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|flight|flying +(verb)|fly|aviate|pilot +(verb)|perform +(adv)|alone|unaccompanied +solo blast|1 +(noun)|solo homer|homer|home run +solo homer|1 +(noun)|solo blast|homer|home run +solo man|1 +(noun)|Solo man|Homo soloensis +soloist|1 +(noun)|musician|instrumentalist|player +solomon|1 +(noun)|Solomon|king|male monarch +solomon's-seal|2 +(noun)|Solomon's-seal|liliaceous plant +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +solomon's seal|2 +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +(noun)|Solomon's-seal|liliaceous plant +solomon guggenheim|1 +(noun)|Guggenheim|Solomon Guggenheim|philanthropist|altruist +solomon hurok|1 +(noun)|Hurok|Sol Hurok|Solomon Hurok|showman|promoter|impresario +solomon islands|2 +(noun)|Solomon Islands|country|state|land +(noun)|Solomons|Solomon Islands|archipelago +solomonic|1 +(adj)|Solomonic|king|male monarch +solomons|2 +(noun)|Solomons|Solomon Islands|archipelago +(noun)|Solomon|king|male monarch +solon|1 +(noun)|statesman|national leader|politician|politico|pol|political leader +solresol|1 +(noun)|Solresol|artificial language +solstice|1 +(noun)|cosmic time +solubility|2 +(noun)|quality +(noun)|definite quantity +soluble|2 +(adj)|soluble |dissolvable|dissoluble|meltable|disintegrable|water-soluble +(adj)|soluble |answerable|solvable|resolvable|explicable +soluble glass|1 +(noun)|water glass|sodium silicate|glass +soluble rna|1 +(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid|RNA +solubleness|1 +(noun)|dissolubility|physical property +solute|1 +(noun)|substance|matter +solution|5 +(noun)|mixture +(noun)|answer|result|resolution|solvent|statement +(noun)|method +(noun)|root|set +(noun)|success +solvable|1 +(adj)|resolvable|soluble +solvate|3 +(noun)|substance|matter +(verb)|change|alter|modify +(verb)|change state|turn +solvating agent|1 +(noun)|agent +solvation|1 +(noun)|association +solvay|1 +(noun)|Solvay|Ernest Solvay|chemist|industrialist +solvay process|1 +(noun)|Solvay process|industrial process +solve|3 +(verb)|work out|figure out|puzzle out|lick|work|understand +(verb)|resolve|calculate|cipher|cypher|compute|work out|reckon|figure +(verb)|clear|settle|square off|square up|determine +solved|1 +(adj)|solved |resolved +solvency|1 +(noun)|financial condition|economic condition +solvent|3 +(adj)|solvent +(noun)|dissolvent|dissolver|dissolving agent|resolvent|medium +(noun)|solution|answer|result|resolution|statement +solver|1 +(noun)|problem solver|convergent thinker|thinker +solving|1 +(noun)|resolution|determination|finding +solway firth|1 +(noun)|Solway Firth|firth +solzhenitsyn|1 +(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer|author|political dissident +som|1 +(noun)|Kyrgyzstani monetary unit +soma|3 +(noun)|haoma|Sarcostemma acidum|vine +(noun)|Soma|Hindu deity +(noun)|human body|physical body|material body|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body|organic structure|physical structure +somaesthesia|2 +(noun)|somesthesia|somatesthesia|somatic sensation|perception +(noun)|somesthesia|somesthesis|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense|interoception +somaesthesis|1 +(noun)|somesthesia|somesthesis|somaesthesia|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense|interoception +somali|3 +(adj)|Somalian|Somali|African country|African nation +(noun)|Somali|African +(noun)|Somali|Cushitic +somali peninsula|1 +(noun)|Somali peninsula|Horn of Africa|peninsula +somalia|1 +(noun)|Somalia|African country|African nation +somalian|2 +(adj)|Somalian|Somali|African country|African nation +(noun)|Somalian|African +somalian monetary unit|1 +(noun)|Somalian monetary unit|monetary unit +somalian shilling|1 +(noun)|Somalian shilling|shilling|Somalian monetary unit +soman|1 +(noun)|GD|organophosphate nerve agent +somatatesthesis|1 +(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatosensory system|somatic sensory system|somatic sense|interoception +somateria|1 +(noun)|Somateria|genus Somateria|bird genus +somatesthesia|2 +(noun)|somesthesia|somaesthesia|somatic sensation|perception +(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatatesthesis|somatosensory system|somatic sensory system|somatic sense|interoception +somatic|1 +(adj)|bodily|corporal|corporeal|physical +somatic cell|1 +(noun)|vegetative cell|cell +somatic cell nuclear transfer|1 +(noun)|somatic cell nuclear transplantation|SCNT|nuclear transplantation|biological research +somatic cell nuclear transplantation|1 +(noun)|somatic cell nuclear transfer|SCNT|nuclear transplantation|biological research +somatic chromosome|1 +(noun)|autosome|chromosome +somatic delusion|1 +(noun)|delusion|psychotic belief +somatic sensation|1 +(noun)|somesthesia|somaesthesia|somatesthesia|perception +somatic sense|1 +(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|interoception +somatic sensory system|1 +(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sense|interoception +somatogenetic|1 +(adj)|somatogenic|physical +somatogenic|1 +(adj)|somatogenetic|physical +somatosense|1 +(noun)|modality|sense modality|sensory system +somatosensory|1 +(adj)|modality|sense modality|sensory system +somatosensory system|1 +(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatic sensory system|somatic sense|interoception +somatotrophic hormone|1 +(noun)|somatotropin|somatotrophin|somatotropic hormone|STH|human growth hormone|growth hormone|hormone|endocrine|internal secretion +somatotrophin|1 +(noun)|somatotropin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone|endocrine|internal secretion +somatotropic hormone|1 +(noun)|somatotropin|somatotrophin|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone|endocrine|internal secretion +somatotropin|1 +(noun)|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone|endocrine|internal secretion +somatotype|1 +(noun)|body type|physique|build|body-build|habitus +somber|2 +(adj)|sombre|cheerless |uncheerful +(adj)|drab|sober|sombre|colorless |colourless +somberly|1 +(adv)|sombrely +somberness|3 +(noun)|gloom|sombreness|semidarkness +(noun)|gloom|gloominess|melancholy|apprehension|apprehensiveness|dread +(noun)|graveness|gravity|sobriety|soberness|seriousness|earnestness|serious-mindedness|sincerity +sombre|2 +(adj)|somber|cheerless |uncheerful +(adj)|drab|sober|somber|colorless |colourless +sombrely|1 +(adv)|somberly +sombreness|1 +(noun)|gloom|somberness|semidarkness +sombrero|2 +(noun)|Sombrero|island +(noun)|hat|chapeau|lid +some|6 +(adj)|some |any|whatever|whatsoever|both|several|few|many +(adj)|unspecified +(adj)|many +(adj)|extraordinary +(adj)|much +(adv)|approximately|about|close to|just about|roughly|more or less|around|or so +some other|1 +(adj)|another|other +somebody|1 +(noun)|person|individual|someone|mortal|human|soul|organism|being|causal agent|cause|causal agency +somehow|2 +(adv)|someway|someways|in some way|in some manner +(adv)|for some reason +someone|1 +(noun)|person|individual|somebody|mortal|human|soul|organism|being|causal agent|cause|causal agency +someplace|1 +(adv)|somewhere +somersault|2 +(noun)|somersaulting|flip|tumble +(verb)|roll over +somersaulting|1 +(noun)|somersault|flip|tumble +somerset|1 +(noun)|Somerset|county +somerset maugham|1 +(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer|author +somesthesia|2 +(noun)|somaesthesia|somatesthesia|somatic sensation|perception +(noun)|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense|interoception +somesthesis|1 +(noun)|somesthesia|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense|interoception +something|1 +(noun)|thing +sometime|1 +(adj)|erstwhile|former|once|onetime|quondam|past +someway|1 +(adv)|somehow|someways|in some way|in some manner +someways|1 +(adv)|somehow|someway|in some way|in some manner +somewhat|2 +(adv)|slightly +(adv)|reasonably|moderately|within reason|fairly|middling|passably +somewhere|2 +(noun)|location +(adv)|someplace +somite|1 +(noun)|metamere|segment +somme|2 +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +somme river|2 +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +(noun)|Somme|Somme River|Battle of the Somme|pitched battle +sommelier|1 +(noun)|wine waiter|wine steward|waiter|server +somnambulate|1 +(verb)|sleepwalk|walk +somnambulation|1 +(noun)|sleepwalking|somnambulism|noctambulism|noctambulation|sleeping|walk|walking +somnambulism|1 +(noun)|sleepwalking|somnambulation|noctambulism|noctambulation|sleeping|walk|walking +somnambulist|1 +(noun)|sleepwalker|noctambulist|sleeper|slumberer +somniferous|1 +(adj)|soporific|soporiferous|somnific|hypnogogic|hypnagogic|depressant +somnific|1 +(adj)|soporific|soporiferous|somniferous|hypnogogic|hypnagogic|depressant +somniloquism|1 +(noun)|sleep talking|somniloquy|sleeping|utterance|vocalization +somniloquist|1 +(noun)|sleeper|slumberer +somniloquy|1 +(noun)|sleep talking|somniloquism|sleeping|utterance|vocalization +somnolence|1 +(noun)|sleepiness|drowsiness|temporary state +somnolent|1 +(adj)|slumberous|slumbery|slumbrous|asleep +somnolently|1 +(adv)|drowsily +somrai|1 +(noun)|Somrai|Sibine|East Chadic +son|2 +(noun)|boy|male offspring|man-child +(noun)|Son|Word|Logos|hypostasis +son-in-law|1 +(noun)|in-law|relative-in-law +son of a bitch|1 +(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|SOB|unpleasant person|disagreeable person +sonant|2 +(adj)|sonant |voiced +(noun)|voiced sound|phone|speech sound|sound +sonar|1 +(noun)|echo sounder|asdic|measuring instrument|measuring system|measuring device|navigational instrument +sonata|1 +(noun)|classical music|serious music +sonata form|1 +(noun)|art form +sonchus|1 +(noun)|Sonchus|genus Sonchus|asterid dicot genus +sonchus oleraceus|1 +(noun)|milkweed|Sonchus oleraceus|sow thistle|milk thistle +sondheim|1 +(noun)|Sondheim|Stephen Sondheim|composer +sone|1 +(noun)|sound unit +song|6 +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|sound +(noun)|strain|vocal music +(noun)|birdcall|call|birdsong|animal communication +(noun)|bargain|buy|steal +(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty +song and dance|2 +(noun)|performance|public presentation +(noun)|fairytale|fairy tale|fairy story|cock-and-bull story|fib|story|tale|tarradiddle|taradiddle +song dynasty|1 +(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty +song of solomon|1 +(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book +song of songs|1 +(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book +song sparrow|1 +(noun)|Melospiza melodia|New World sparrow +song thrush|1 +(noun)|mavis|throstle|Turdus philomelos|thrush +songbird|1 +(noun)|songster|oscine|oscine bird +songbook|1 +(noun)|book +songful|1 +(adj)|canorous|melodious |melodic|musical +songfulness|1 +(noun)|lyricality|lyricism|musicality|musicalness +songhai|1 +(noun)|Songhai|Nilo-Saharan|Nilo-Saharan language +songlike|1 +(adj)|ariose|melodious |melodic|musical +songster|3 +(noun)|songwriter|ballad maker|composer +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|songbird|oscine|oscine bird +songstress|1 +(noun)|songster +songwriter|1 +(noun)|songster|ballad maker|composer +sonic|2 +(adj)|sonic |transonic +(adj)|audible |hearable +sonic barrier|1 +(noun)|sound barrier|drag|retarding force +sonic boom|1 +(noun)|shock wave|blast wave +sonic delay line|1 +(noun)|acoustic delay line|delay line +sonic depth finder|1 +(noun)|fathometer|depth finder +sonnet|3 +(noun)|poem|verse form +(verb)|praise +(verb)|verse|versify|poetize|poetise +sonneteer|1 +(noun)|poet +sonny|1 +(noun)|cub|lad|laddie|sonny boy|male child|boy +sonny boy|1 +(noun)|cub|lad|laddie|sonny|male child|boy +sonny liston|1 +(noun)|Liston|Sonny Liston|Charles Liston|prizefighter|gladiator +sonogram|1 +(noun)|picture|image|icon|ikon +sonograph|1 +(noun)|instrument +sonography|1 +(noun)|ultrasonography|ultrasound|imaging|tomography|prenatal diagnosis +sonometer|1 +(noun)|audiometer|measuring instrument|measuring system|measuring device +sonora|1 +(noun)|Sonora|genus Sonora|reptile genus +sonora gum|1 +(noun)|Sonora gum|gum resin +sonora lac|1 +(noun)|Sonora lac|animal product +sonora semiannulata|1 +(noun)|ground snake|Sonora semiannulata|colubrid snake|colubrid +sonoran desert|1 +(noun)|Sonoran Desert|desert +sonoran lyre snake|1 +(noun)|Sonoran lyre snake|Trimorphodon lambda|lyre snake +sonoran whipsnake|1 +(noun)|Sonoran whipsnake|Masticophis bilineatus|whip-snake|whip snake +sonority|1 +(noun)|plangency|resonance|reverberance|ringing|sonorousness|vibrancy|timbre|timber|quality|tone +sonorous|1 +(adj)|heavy|full +sonorously|1 +(adv)|rotundly +sonorousness|1 +(noun)|plangency|resonance|reverberance|ringing|sonority|vibrancy|timbre|timber|quality|tone +sonsie|1 +(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsy|voluptuous|well-endowed|shapely +sonsy|1 +(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|voluptuous|well-endowed|shapely +sontag|1 +(noun)|Sontag|Susan Sontag|writer|author +soon|1 +(adv)|shortly|presently|before long +soon enough|1 +(adv)|in time +sooner|2 +(adv)|earlier +(adv)|preferably|rather +sooner or later|1 +(adv)|eventually|yet|in time|one of these days +sooner state|1 +(noun)|Oklahoma|Sooner State|OK|American state +soonest|1 +(adv)|earliest +soot|2 +(noun)|carbon black|lampblack|smut|carbon|C|atomic number 6 +(verb)|coat|surface +soot black|1 +(noun)|coal black|ebony|jet black|pitch black|sable|black|blackness +sooth|1 +(noun)|truthfulness +soothe|2 +(verb)|comfort|console|solace +(verb)|relieve|alleviate|palliate|assuage +soothing|2 +(adj)|comfortable |comfy +(adj)|assuasive|calming|pacifying|reassuring +soothing syrup|1 +(noun)|medicine|medication|medicament|medicinal drug +soothsayer|1 +(noun)|forecaster|predictor|prognosticator|visionary|illusionist|seer +soothsaying|1 +(noun)|divination|foretelling|fortune telling|prophecy|prognostication|vaticination +sootiness|1 +(noun)|smuttiness|dirtiness|uncleanness +sooty|1 +(adj)|coal-black|jet|jet-black|pitchy|achromatic +sop|9 +(noun)|sops|morsel|bit|bite +(noun)|concession +(noun)|standing operating procedure|standard operating procedure|SOP|standard procedure|operating procedure +(verb)|bribe|corrupt|buy|grease one's palms +(verb)|soak through|ooze through +(verb)|dunk|dip|souse|plunge|douse +(verb)|wipe up|mop up|mop +(verb)|change +(verb)|drench|douse|dowse|soak|souse|wet +sop up|2 +(verb)|absorb|suck|imbibe|soak up|suck up|draw|take in|take up +(verb)|take in|suck in|take up|consume|ingest|take in|take|have +sophia loren|1 +(noun)|Loren|Sophia Loren|Sofia Scicolone|actress +sophie tucker|1 +(noun)|Tucker|Sophie Tucker|vaudevillian|comedienne +sophism|1 +(noun)|sophistry|sophistication|fallacy|false belief +sophist|2 +(noun)|Sophist|philosopher +(noun)|casuist|reasoner|ratiocinator +sophistic|2 +(adj)|reasoner|ratiocinator +(adj)|sophistical|invalid +sophistical|1 +(adj)|sophistic|invalid +sophisticate|5 +(noun)|man of the world|adult|grownup +(verb)|educate|school|train|cultivate|civilize|civilise +(verb)|twist|twist around|pervert|convolute|denote|refer +(verb)|doctor|doctor up|adulterate|stretch|dilute|debase +(verb)|complicate|refine|rarify|elaborate +sophisticated|4 +(adj)|sophisticated |blase|worldly|intelligent|well-informed|polished|refined|svelte|urbane|worldly-wise|cosmopolitan|widely distributed|disenchanted|elegant|informed|literate|worldly +(adj)|advanced|high-tech |hi-tech +(adj)|urbane|cosmopolitan +(adj)|intellectual +sophistication|5 +(noun)|edification|enlightenment +(noun)|sophism|sophistry|fallacy|false belief +(noun)|expertness|expertise +(noun)|worldliness|quality +(noun)|falsification|falsehood +sophistry|1 +(noun)|sophism|sophistication|fallacy|false belief +sophocles|1 +(noun)|Sophocles|dramatist|playwright +sophomore|2 +(adj)|second-year|intermediate +(noun)|lowerclassman|underclassman +sophomore class|1 +(noun)|class|year +sophonias|2 +(noun)|Zephaniah|Sophonias|prophet +(noun)|Zephaniah|Sophonias|Book of Zephaniah|book +sophora|1 +(noun)|Sophora|genus Sophora|rosid dicot genus +sophora japonica|1 +(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree +sophora secundiflora|1 +(noun)|mescal bean|coral bean|frijolito|frijolillo|Sophora secundiflora|tree +sophora sinensis|1 +(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree +sophora tetraptera|1 +(noun)|kowhai|Sophora tetraptera|tree +soporiferous|2 +(adj)|soporific|somniferous|somnific|hypnogogic|hypnagogic|depressant +(adj)|narcotic|soporific|uninteresting +soporific|3 +(adj)|soporiferous|somniferous|somnific|hypnogogic|hypnagogic|depressant +(adj)|narcotic|soporiferous|uninteresting +(noun)|hypnotic|drug|hypnagogue +sopping|2 +(adj)|drenched|saturated|soaked|soaking|sodden|soppy|wet +(adv)|soaking|dripping +soppy|1 +(adj)|drenched|saturated|soaked|soaking|sodden|sopping|wet +sopranino|1 +(adj)|high |high-pitched +soprano|4 +(adj)|treble|high |high-pitched +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|singing voice +(noun)|treble|high pitch|high frequency +soprano clef|1 +(noun)|clef +sops|4 +(noun)|sop|morsel|bit|bite +(noun)|sop|morsel|bit|bite +(noun)|sop|concession +(noun)|standing operating procedure|standard operating procedure|SOP|standard procedure|operating procedure +sorb|2 +(noun)|sorb apple|edible fruit +(verb)|take up|change state|turn +sorb apple|2 +(noun)|service tree|sorb apple tree|Sorbus domestica|mountain ash +(noun)|sorb|edible fruit +sorb apple tree|1 +(noun)|service tree|sorb apple|Sorbus domestica|mountain ash +sorbate|1 +(noun)|material|stuff +sorbed|1 +(adj)|occluded|combined +sorbefacient|1 +(adj)|absorbefacient|absorbent |absorptive +sorbent|1 +(noun)|sorbent material|material|stuff +sorbent material|1 +(noun)|sorbent|material|stuff +sorbet|1 +(noun)|sherbert|sherbet|ice|frappe +sorbian|2 +(noun)|Sorbian|Slav +(noun)|Sorbian|Lusatian|Slavic|Slavic language|Slavonic|Slavonic language +sorbic acid|1 +(noun)|carboxylic acid +sorbonne|1 +(noun)|Paris University|University of Paris|Sorbonne|university +sorbus|1 +(noun)|Sorbus|genus Sorbus|rosid dicot genus +sorbus americana|1 +(noun)|American mountain ash|Sorbus americana|mountain ash +sorbus aucuparia|1 +(noun)|rowan|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash +sorbus domestica|1 +(noun)|service tree|sorb apple|sorb apple tree|Sorbus domestica|mountain ash +sorbus sitchensis|1 +(noun)|Western mountain ash|Sorbus sitchensis|mountain ash +sorbus torminalis|1 +(noun)|wild service tree|Sorbus torminalis|service tree|sorb apple|sorb apple tree|Sorbus domestica +sorcerer|1 +(noun)|magician|wizard|necromancer|occultist +sorceress|1 +(noun)|sorcerer|magician|wizard|necromancer +sorcerise|1 +(verb)|sorcerize|transform|transmute|transubstantiate +sorcerize|1 +(verb)|sorcerise|transform|transmute|transubstantiate +sorcerous|1 +(adj)|charming|magic|magical|witching|wizard|wizardly|supernatural +sorcery|1 +(noun)|black magic|black art|necromancy|magic +sordid|4 +(adj)|seamy|seedy|sleazy|squalid|disreputable +(adj)|dirty|corrupt +(adj)|flyblown|squalid|dirty |soiled|unclean +(adj)|acquisitive +sordidly|1 +(adv)|squalidly +sordidness|1 +(noun)|squalor|squalidness|dirtiness|uncleanness +sordino|1 +(noun)|sourdine|mute +sore|5 +(adj)|sensitive|tender|painful +(adj)|afflictive|painful|unpleasant +(adj)|huffy|mad|angry +(adj)|raw|unhealthy +(noun)|infection +sore-eyed|1 +(adj)|unhealthy +sore throat|1 +(noun)|pharyngitis|raw throat|inflammatory disease +sorely|1 +(adv)|painfully +soren aabye kierkegaard|1 +(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher +soren kierkegaard|1 +(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher +soren peter lauritz sorensen|1 +(noun)|Sorensen|Soren Peter Lauritz Sorensen|chemist +soreness|2 +(noun)|tenderness|pain|hurting +(noun)|discomfort|irritation|suffering|hurt +sorensen|1 +(noun)|Sorensen|Soren Peter Lauritz Sorensen|chemist +sorex|1 +(noun)|Sorex|genus Sorex|mammal genus +sorex araneus|1 +(noun)|common shrew|Sorex araneus|shrew|shrewmouse +sorex cinereus|1 +(noun)|masked shrew|Sorex cinereus|shrew|shrewmouse +sorex palustris|1 +(noun)|American water shrew|Sorex palustris|water shrew +sorgho|1 +(noun)|sorgo|sweet sorghum|sugar sorghum|sorghum +sorghum|2 +(noun)|millet +(noun)|sorghum molasses|syrup|sirup +sorghum bicolor|1 +(noun)|great millet|kaffir|kafir corn|kaffir corn|Sorghum bicolor|sorghum +sorghum halapense|1 +(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum +sorghum halepense|1 +(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum +sorghum molasses|1 +(noun)|sorghum|syrup|sirup +sorghum vulgare caudatum|1 +(noun)|feterita|federita|Sorghum vulgare caudatum|grain sorghum +sorghum vulgare rosburghii|1 +(noun)|shallu|Sorghum vulgare rosburghii|grain sorghum +sorghum vulgare technicum|1 +(noun)|broomcorn|Sorghum vulgare technicum|sorghum +sorgo|1 +(noun)|sorgho|sweet sorghum|sugar sorghum|sorghum +soricidae|1 +(noun)|Soricidae|family Soricidae|mammal family +sororal|1 +(adj)|sisterly |sisterlike +sorority|1 +(noun)|club|society|guild|gild|lodge|order +sorption|1 +(noun)|natural process|natural action|action|activity +sorrel|6 +(adj)|brownish-orange|chromatic +(noun)|oxalis|wood sorrel|herb|herbaceous plant +(noun)|dock|sour grass|herb|herbaceous plant +(noun)|roselle|rozelle|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus +(noun)|common sorrel|greens|green|leafy vegetable +(noun)|horse|Equus caballus +sorrel tree|2 +(noun)|sourwood|titi|Oxydendrum arboreum|angiospermous tree|flowering tree +(noun)|Hibiscus heterophyllus|hibiscus +sorriness|1 +(noun)|paltriness|worthlessness +sorrow|5 +(noun)|sadness|unhappiness +(noun)|regret|rue|ruefulness|sadness|unhappiness +(noun)|grief|negative stimulus +(noun)|sadness|sorrowfulness|unhappiness +(verb)|grieve|suffer +sorrower|1 +(noun)|mourner|griever|lamenter|unfortunate|unfortunate person +sorrowful|1 +(adj)|sorrowful |anguished|tormented|tortured|bereaved|bereft|grief-stricken|grieving|mourning|sorrowing|bitter|brokenhearted|heartbroken|heartsick|dolorous|dolourous|lachrymose|tearful|weeping|elegiac|grievous|heartbreaking|heartrending|lamentable|lamenting|wailing|wailful|lugubrious|mournful|plaintive|sad|woebegone|woeful|joyless|unhappy +sorrowfully|1 +(adv)|dolefully +sorrowfulness|2 +(noun)|sadness|sorrow|unhappiness +(noun)|mournfulness|ruthfulness|sorrow +sorrowing|1 +(adj)|bereaved|bereft|grief-stricken|grieving|mourning|sorrowful +sorry|7 +(adj)|bad|unhappy +(adj)|pitying|sorry for|compassionate +(adj)|regretful +(adj)|contrite|remorseful|rueful|ruthful|penitent +(adj)|deplorable|distressing|lamentable|pitiful|sad|bad +(adj)|dingy|dismal|drab|drear|dreary|gloomy|cheerless |uncheerful +(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-count|no-good|worthless +sorry for|1 +(adj)|pitying|sorry|compassionate +sort|6 +(noun)|kind|form|variety|category +(noun)|similarity +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|sorting|operation +(verb)|screen|screen out|sieve|choose|take|select|pick out +(verb)|classify|class|assort|sort out|separate|categorize|categorise +sort of|1 +(adv)|rather|kind of|kinda +sort out|3 +(verb)|classify|class|sort|assort|separate|categorize|categorise +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|discipline|correct|punish|penalize|penalise +sort program|1 +(noun)|sorting program|utility program|utility|service program +sorted|2 +(adj)|sized +(adj)|grouped|classified +sorter|2 +(noun)|clerk +(noun)|machine +sortie|2 +(noun)|sally|military action|action +(noun)|flight|flying +sorting|3 +(noun)|sort|operation +(noun)|classification|categorization|categorisation|basic cognitive process +(noun)|grouping +sorting algorithm|1 +(noun)|algorithm|algorithmic rule|algorithmic program +sorting program|1 +(noun)|sort program|utility program|utility|service program +sortition|1 +(noun)|casting lots|drawing lots|decision|determination|conclusion +sorus|2 +(noun)|reproductive structure +(noun)|reproductive structure +sos|2 +(noun)|SOS|distress signal|distress call +(noun)|sol|soh|so|solfa syllable +sot|1 +(noun)|drunkard|drunk|rummy|inebriate|drinker|imbiber|toper|juicer +soteriological|1 +(adj)|Christian theology +soteriology|1 +(noun)|Christian theology +sothis|1 +(noun)|Sirius|Dog Star|Canicula|Sothis|binary star|binary|double star +sotho|2 +(adj)|Sotho|Bantu|Bantoid language +(noun)|Sotho|Bantu|Bantoid language +sottish|1 +(adj)|bibulous|boozy|drunken|intoxicated |drunk|inebriated +sottishness|2 +(noun)|drunkenness|inebriation|inebriety|intoxication|tipsiness +(noun)|unrestraint +sotto voce|1 +(adv)|in a low voice +sou|1 +(noun)|coin +sou'-east|2 +(noun)|southeast|SE|compass point|point +(adv)|southeast|south-east +sou'-sou'-east|2 +(noun)|south southeast|SSE|compass point|point +(adv)|south-southeast +sou'-sou'-west|2 +(noun)|south southwest|SSW|compass point|point +(adv)|south-southwest +sou'-west|1 +(noun)|southwest|SW|compass point|point +sou'easter|1 +(noun)|southeaster|wind|air current|current of air +sou'west|1 +(adv)|southwest|south-west +sou'wester|2 +(noun)|southwester|wind|air current|current of air +(noun)|hat|chapeau|lid +souari|1 +(noun)|souari nut|souari tree|Caryocar nuciferum|tree +souari nut|2 +(noun)|souari|souari tree|Caryocar nuciferum|tree +(noun)|edible nut +souari tree|1 +(noun)|souari|souari nut|Caryocar nuciferum|tree +soubise|1 +(noun)|Soubise|white onion sauce|sauce +soubrette|2 +(noun)|girl|miss|missy|young lady|young woman|fille +(noun)|bit part|minor role +soubriquet|1 +(noun)|nickname|moniker|cognomen|sobriquet|appellation|denomination|designation|appellative +soudan|2 +(noun)|Sudan|Republic of the Sudan|Soudan|African country|African nation +(noun)|Sudan|Soudan|geographical area|geographic area|geographical region|geographic region +souffle|1 +(noun)|dish +soufflot|1 +(noun)|Soufflot|Jacques Germain Soufflot|architect|designer +sough|3 +(verb)|sow|seed|put|set|place|pose|position|lay +(verb)|groan|moan|utter|emit|let out|let loose +(verb)|sow|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +soughing|1 +(adj)|murmurous|rustling|susurrous|soft +sought|1 +(adj)|sought-after|wanted +sought-after|2 +(adj)|sought|wanted +(adj)|coveted|desired|in demand|sought after|desirable +sought after|2 +(adj)|coveted|desired|in demand|desirable +(adj)|sought|sought-after|wanted +souk|1 +(noun)|open-air market|open-air marketplace|market square +soul|5 +(noun)|psyche|spirit +(noun)|person|individual|someone|somebody|mortal|human|organism|being|causal agent|cause|causal agency +(noun)|soulfulness|feeling +(noun)|embodiment +(noun)|gospel|gospel singing|black music|African-American music +soul-destroying|1 +(adj)|destructive +soul-searching|1 +(noun)|self-analysis|introspection|self-contemplation|self-examination +soul-stirring|1 +(adj)|stirring|moving +soul brother|1 +(noun)|Black man +soul food|1 +(noun)|food|nutrient +soul kiss|1 +(noun)|deep kiss|French kiss|kiss|buss|osculation +soul mate|1 +(noun)|lover +soulful|1 +(adj)|emotional +soulfulness|1 +(noun)|soul|feeling +soulless|1 +(adj)|insensitive +sound|24 +(adj)|sound |dependable|good|safe|secure|healthy|stable|fit|healthy|healthy|unbroken|undamaged|uninjured|wholesome +(adj)|healthy|intelligent|levelheaded|reasonable |sensible +(adj)|sound |solid|strong|substantial +(adj)|good|healthy +(adj)|reasoned|well-grounded|valid +(adj)|legal|valid +(adj)|righteous +(adj)|heavy|profound|wakeless|deep +(adj)|complete +(noun)|sound property +(noun)|auditory sensation|sensation|sense experience|sense impression|sense datum +(noun)|mechanical phenomenon +(noun)|happening|occurrence|natural event +(noun)|audio|auditory communication +(noun)|phone|speech sound|language unit|linguistic unit +(noun)|strait|channel +(noun)|body of water|water +(verb)|look|appear|seem +(verb)|go|cause to be perceived +(verb)|announce|denote +(verb)|voice|vocalize|vocalise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|sound off +(verb)|fathom|quantify|measure +(adv)|soundly +sound alphabet|1 +(noun)|phonetic alphabet|alphabet +sound asleep|1 +(adj)|fast asleep|asleep +sound barrier|1 +(noun)|sonic barrier|drag|retarding force +sound bite|1 +(noun)|line +sound bow|1 +(noun)|contact|tangency +sound camera|1 +(noun)|motion-picture camera|movie camera|cine-camera +sound effect|1 +(noun)|effect +sound film|1 +(noun)|motion-picture film|movie film|cine-film +sound hole|1 +(noun)|hole +sound judgement|1 +(noun)|judgment|judgement|sound judgment|perspicacity|trait +sound judgment|1 +(noun)|judgment|judgement|sound judgement|perspicacity|trait +sound law|1 +(noun)|law|natural law +sound off|3 +(verb)|opine|speak up|animadvert|declare +(verb)|strike up|play +(verb)|complain|kick|plain|quetch|kvetch +sound out|2 +(verb)|pronounce|articulate|enounce|enunciate|say +(verb)|check out|feel out|question|query +sound perception|1 +(noun)|auditory perception|perception +sound pollution|1 +(noun)|noise pollution|pollution +sound pressure|1 +(noun)|instantaneous sound pressure|pressure|pressure level|force per unit area +sound pressure level|1 +(noun)|acoustic power|intensity|strength|intensity level +sound projection|1 +(noun)|projection|acoustic projection|acoustic phenomenon +sound property|1 +(noun)|property +sound ranging|1 +(noun)|measurement|measuring|measure|mensuration +sound recording|1 +(noun)|audio recording|recording +sound reflection|1 +(noun)|echo|reverberation|replication|reflection|reflexion|reflectivity +sound reproduction|1 +(noun)|reproduction|replication +sound spectrograph|1 +(noun)|spectrograph +sound spectrum|1 +(noun)|acoustic spectrum|spectrum +sound structure|1 +(noun)|morphology|syllable structure|word structure|structure +sound system|1 +(noun)|audio system|electronic equipment|system +sound truck|1 +(noun)|truck|motortruck +sound unit|1 +(noun)|unit of measurement|unit +sound wave|1 +(noun)|acoustic wave|wave|undulation +soundable|1 +(adj)|plumbable|fathomable +soundboard|1 +(noun)|sounding board|resonator|cavity resonator|resonating chamber +soundbox|1 +(noun)|resonator|cavity resonator|resonating chamber +sounded|1 +(adj)|plumbed|measured +sounder|1 +(noun)|device +sounding|5 +(adj)|looking|superficial +(adj)|full +(adj)|audible |hearable +(noun)|depth +(noun)|measurement|measuring|measure|mensuration +sounding board|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|soundboard|resonator|cavity resonator|resonating chamber +sounding lead|1 +(noun)|bob +sounding line|1 +(noun)|lead line|plumb line|perpendicular +sounding rocket|1 +(noun)|test rocket|research rocket|test instrument vehicle +soundless|1 +(adj)|silent|still|quiet +soundlessly|1 +(adv)|noiselessly +soundlessness|1 +(noun)|quietness|silence|quiet +soundly|2 +(adv)|sound +(adv)|thoroughly|good +soundman|1 +(noun)|technician +soundness|3 +(noun)|condition|status +(noun)|wisdom|wiseness|good|goodness +(noun)|firmness|strength +soundproof|2 +(adj)|impervious |imperviable +(verb)|insulate +soundtrack|1 +(noun)|sound recording|audio recording +soup|4 +(noun)|dish +(noun)|composition +(noun)|situation|position +(verb)|dope|dope up +soup-fin|2 +(noun)|soupfin shark|soupfin|Galeorhinus zyopterus|requiem shark +(noun)| +soup-strainer|1 +(noun)|toothbrush|mustache|moustache +soup bowl|1 +(noun)|bowl +soup du jour|1 +(noun)|soup +soup kitchen|1 +(noun)|charity +soup ladle|1 +(noun)|ladle +soup plate|1 +(noun)|plate +soup spoon|2 +(noun)|soupspoon|spoon +(noun)| +soup up|1 +(verb)|hop up|hot up|modify +soupcon|1 +(noun)|touch|hint|tinge|mite|pinch|jot|speck|small indefinite quantity|small indefinite amount +soupfin|1 +(noun)|soupfin shark|soup-fin|Galeorhinus zyopterus|requiem shark +soupfin shark|1 +(noun)|soupfin|soup-fin|Galeorhinus zyopterus|requiem shark +soupiness|1 +(noun)|creaminess|thickness +soupspoon|1 +(noun)|soup spoon|spoon +sour|11 +(adj)|rancid|malodorous |malodourous +(adj)|sour |acerb|acerbic|astringent|sharp|acetose|acetous|vinegary|acidic|acidulent|acidulous|acidulated|lemony|lemonlike|sourish|tangy|tart|subacid|dry|soured|tasteful +(adj)|tasteful +(adj)|off|turned|soured +(adj)|false|off-key|inharmonious |unharmonious +(adj)|dark|dour|glowering|glum|moody|morose|saturnine|sullen|ill-natured +(noun)|cocktail +(noun)|sourness|tartness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sourness|acidity|taste property +(verb)|turn|ferment|work|change state|turn +(verb)|acidify|acidulate|acetify|change taste +sour-gum family|1 +(noun)|Nyssaceae|family Nyssaceae|tupelo family|dicot family|magnoliopsid family +sour bread|1 +(noun)|sourdough bread|bread|breadstuff|staff of life +sour cherry|3 +(noun)|sour cherry tree|Prunus cerasus|cherry|cherry tree +(noun)|Eugenia corynantha|fruit tree +(noun)|cherry +sour cherry tree|1 +(noun)|sour cherry|Prunus cerasus|cherry|cherry tree +sour cream|1 +(noun)|soured cream|cream +sour dock|1 +(noun)|garden sorrel|Rumex acetosa|dock|sorrel|sour grass +sour fig|1 +(noun)|Hottentot fig|Hottentot's fig|Carpobrotus edulis|Mesembryanthemum edule|succulent +sour gourd|3 +(noun)|cream-of-tartar tree|Adansonia gregorii|angiospermous tree|flowering tree +(noun)|monkey bread|edible fruit +(noun)|edible fruit +sour grapes|1 +(noun)|disparagement|depreciation|derogation +sour grass|1 +(noun)|dock|sorrel|herb|herbaceous plant +sour gum|1 +(noun)|black gum|pepperidge|Nyssa sylvatica|tupelo|tupelo tree +sour mash|2 +(noun)|mash +(noun)|sour mash whiskey|whiskey|whisky +sour mash whiskey|1 +(noun)|sour mash|whiskey|whisky +sour orange|2 +(noun)|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange|orange tree +(noun)|bitter orange|Seville orange|orange +sour salt|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +sourball|1 +(noun)|hard candy +source|11 +(noun)|beginning|origin|root|rootage|point +(noun)|informant|communicator +(noun)|reference|publication +(noun)|document|written document|papers +(noun)|facility|installation +(noun)|seed|germ|inspiration +(noun)|generator|author|maker|shaper +(noun)|natural process|natural action|action|activity +(noun)|reservoir|thing +(verb)|obtain +(verb)|document +source book|1 +(noun)|reference book|reference|reference work|book of facts +source code|1 +(noun)|ASCII text file +source language|1 +(noun)|language|linguistic communication +source materials|1 +(noun)|source +source of illumination|1 +(noun)|device +source program|1 +(noun)|program|programme|computer program|computer programme +sourdine|2 +(noun)|sordino|mute +(noun)|organ stop +sourdough|3 +(adj)|leavened +(noun)|leaven|leavening +(noun)|settler|colonist|prospector +sourdough bread|1 +(noun)|sour bread|bread|breadstuff|staff of life +soured|1 +(adj)|soured |fermented|hard|off|sour|turned|sour +soured cream|1 +(noun)|sour cream|cream +souring|1 +(noun)|spoilage|spoiling +sourish|1 +(adj)|lemony|lemonlike|tangy|tart|sour +sourness|3 +(noun)|sour|tartness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sour|acidity|taste property +(noun)|sulkiness|sullenness|moroseness|ill nature +sourpuss|1 +(noun)|picklepuss|gloomy Gus|pouter|unwelcome person|persona non grata +soursop|2 +(noun)|prickly custard apple|soursop tree|Annona muricata|custard apple|custard apple tree +(noun)|guanabana|custard apple +soursop tree|1 +(noun)|soursop|prickly custard apple|Annona muricata|custard apple|custard apple tree +sourwood|1 +(noun)|sorrel tree|titi|Oxydendrum arboreum|angiospermous tree|flowering tree +sousa|1 +(noun)|Sousa|John Philip Sousa|The March King|bandmaster|composer +sousaphone|1 +(noun)|bass horn|tuba|brass|bass +souse|7 +(noun)|alcoholic|alky|dipsomaniac|boozer|lush|soaker|drunkard|drunk|rummy|sot|inebriate +(noun)|sausage +(noun)|drenching|soaking|sousing|wetting +(verb)|drench|douse|dowse|soak|sop|wet +(verb)|dunk|dip|plunge|douse|immerse|plunge +(verb)|soak|inebriate|hit it up|drink|booze|fuddle +(verb)|cook +soused|2 +(adj)|dunked|wet +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +sousing|1 +(noun)|drenching|soaking|souse|wetting +souslik|1 +(noun)|suslik|Citellus citellus|ground squirrel|gopher|spermophile +sousse|1 +(noun)|Sousse|Susa|Susah|city|metropolis|urban center|port +soutache|1 +(noun)|braid|gold braid|braiding +soutane|1 +(noun)|cassock +south|6 +(adj)|south |southbound|southward|south-central|southerly|southern|southerly|southern|southernmost|southmost|southeast|southeastern|southeasterly|southeasterly|southeast|southeastward|southwest|southwestern|southwesterly|southwesterly|southwest|southwestward +(noun)|South|geographical area|geographic area|geographical region|geographic region +(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area|geographic area|geographical region|geographic region +(noun)|due south|S|cardinal compass point +(noun)|South|southland|region +(adv)|to the south|in the south +south-african yellowwood|1 +(noun)|South-African yellowwood|Podocarpus latifolius|gymnospermous yellowwood +south-central|2 +(adj)|south +(adj)|southern +south-central dravidian|1 +(noun)|South-Central Dravidian|Dravidian|Dravidic|Dravidian language +south-east|2 +(adv)|southeast|sou'-east +(adv)| +south-polar|1 +(adj)|Antarctic|polar +south-seeking pole|1 +(noun)|negative magnetic pole|negative pole|pole|magnetic pole +south-southeast|1 +(adv)|sou'-sou'-east +south-southwest|1 +(adv)|sou'-sou'-west +south-west|2 +(adv)|southwest|sou'west +(adv)| +south africa|1 +(noun)|South Africa|Republic of South Africa|African country|African nation +south african|2 +(adj)|South African|African country|African nation +(noun)|South African|African +south african dutch|1 +(noun)|Afrikaans|Taal|the Taal|South African Dutch|Dutch +south african monetary unit|1 +(noun)|South African monetary unit|monetary unit +south america|2 +(noun)|South America|continent +(noun)|South America|collection|aggregation|accumulation|assemblage +south american|2 +(adj)|South American|continent +(noun)|South American|American +south american bullfrog|1 +(noun)|crapaud|South American bullfrog|Leptodactylus pentadactylus|frog|toad|toad frog|anuran|batrachian|salientian +south american country|1 +(noun)|South American country|South American nation|country|state|land +south american indian|1 +(noun)|South American Indian|Amerindian|Native American +south american nation|1 +(noun)|South American country|South American nation|country|state|land +south american poison toad|1 +(noun)|South American poison toad|frog|toad|toad frog|anuran|batrachian|salientian +south american sea lion|1 +(noun)|South American sea lion|Otaria Byronia|sea lion +south american staghorn|1 +(noun)|South American staghorn|Platycerium andinum|staghorn fern +south atlantic|1 +(noun)|South Atlantic|Atlantic|Atlantic Ocean +south australia|1 +(noun)|South Australia|Australian state +south bend|1 +(noun)|South Bend|city|metropolis|urban center +south by east|1 +(noun)|SbE|compass point|point +south by west|1 +(noun)|SbW|compass point|point +south carolina|2 +(noun)|South Carolina|Colony +(noun)|South Carolina|Palmetto State|SC|American state +south carolinian|1 +(noun)|South Carolinian|American +south celestial pole|1 +(noun)|pole|celestial pole +south china sea|1 +(noun)|South China Sea|sea +south dakota|1 +(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state +south dakotan|1 +(noun)|South Dakotan|American +south dravidian|1 +(noun)|South Dravidian|Dravidian|Dravidic|Dravidian language +south equatorial current|1 +(noun)|South Equatorial Current|equatorial current +south frigid zone|1 +(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone|polar zone +south island|1 +(noun)|South Island|island +south korea|1 +(noun)|South Korea|Republic of Korea|Asian country|Asian nation +south korean|2 +(adj)|South Korean|Asian country|Asian nation +(noun)|South Korean|Korean +south korean monetary unit|1 +(noun)|South Korean monetary unit|monetary unit +south korean won|1 +(noun)|South Korean won|won|South Korean monetary unit +south pacific|1 +(noun)|South Pacific|Pacific|Pacific Ocean +south platte|1 +(noun)|South Platte|South Platte River|river +south platte river|1 +(noun)|South Platte|South Platte River|river +south pole|1 +(noun)|South Pole|pole +south sea|1 +(noun)|South Sea|sea +south sea islands|1 +(noun)|South Sea Islands|island +south side|1 +(noun)|side +south southeast|1 +(noun)|sou'-sou'-east|SSE|compass point|point +south southwest|1 +(noun)|sou'-sou'-west|SSW|compass point|point +south temperate zone|1 +(noun)|South Temperate Zone|Temperate Zone +south vietnam|1 +(noun)|South Vietnam|Asian country|Asian nation +south west africa|1 +(noun)|Namibia|Republic of Namibia|South West Africa|African country|African nation +south wind|1 +(noun)|souther|southerly|wind|air current|current of air +south yorkshire|1 +(noun)|South Yorkshire|county +southbound|1 +(adj)|southward|south +southeast|5 +(adj)|southeasterly|south +(adj)|southeastern|southeasterly|south +(noun)|sou'-east|SE|compass point|point +(noun)|Southeast|southeastern United States|geographical area|geographic area|geographical region|geographic region +(adv)|south-east|sou'-east +southeast asia|1 +(noun)|Southeast Asia|geographical area|geographic area|geographical region|geographic region +southeast by east|1 +(noun)|SEbE|compass point|point +southeast by south|1 +(noun)|SEbS|compass point|point +southeaster|1 +(noun)|sou'easter|wind|air current|current of air +southeasterly|2 +(adj)|southeast|south +(adj)|southeast|southeastern|south +southeastern|2 +(adj)|southeast|southeasterly|south +(adj)|eastern +southeastern pocket gopher|1 +(noun)|Geomys pinetis|gopher|pocket gopher|pouched rat +southeastern united states|1 +(noun)|Southeast|southeastern United States|geographical area|geographic area|geographical region|geographic region +southeastward|2 +(adj)|south +(adv)|southeastwardly +southeastwardly|1 +(adv)|southeastward +souther|1 +(noun)|south wind|southerly|wind|air current|current of air +southerly|3 +(adj)|southern|south +(adj)|southern|south +(noun)|south wind|souther|wind|air current|current of air +southern|4 +(adj)|southern |Confederate|gray|grey|rebel +(adj)|southerly|south +(adj)|southern |austral|meridional|south-central +(adj)|southerly|south +southern arrow wood|1 +(noun)|arrow wood|Viburnum dentatum|shrub|bush +southern aster|1 +(noun)|aster +southern baptist|1 +(noun)|Southern Baptist|Baptist +southern baptist convention|1 +(noun)|Southern Baptist Convention|association +southern beech|1 +(noun)|evergreen beech|tree +southern beech fern|1 +(noun)|broad beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern +southern blue flag|1 +(noun)|Iris virginica|iris|flag|fleur-de-lis|sword lily +southern bog lemming|1 +(noun)|Synaptomys cooperi|lemming +southern buckthorn|1 +(noun)|shittimwood|shittim|mock orange|Bumelia lycioides|buckthorn +southern cabbage butterfly|1 +(noun)|Pieris protodice|cabbage butterfly +southern crab apple|1 +(noun)|Southern crab apple|flowering crab|Malus angustifolia|crab apple|crabapple|cultivated crab apple +southern cross|1 +(noun)|Southern Cross|Crux|Crux Australis|constellation +southern cypress|1 +(noun)|bald cypress|swamp cypress|pond bald cypress|Taxodium distichum|cypress +southern dewberry|1 +(noun)|Southern dewberry|Rubus trivialis|dewberry|dewberry bush|running blackberry +southern flounder|1 +(noun)|Paralichthys lethostigmus|lefteye flounder|lefteyed flounder +southern flying squirrel|1 +(noun)|Glaucomys volans|American flying squirrel +southern harebell|1 +(noun)|Campanula divaricata|campanula|bellflower +southern hemisphere|1 +(noun)|hemisphere +southern lights|1 +(noun)|aurora australis|aurora +southern live oak|1 +(noun)|Quercus virginiana|live oak +southern magnolia|1 +(noun)|evergreen magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia +southern maidenhair|1 +(noun)|common maidenhair|Venushair|Venus'-hair fern|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +southern porgy|1 +(noun)|scup|southern scup|Stenotomus aculeatus|porgy +southern red cedar|1 +(noun)|Juniperus silicicola|juniper +southern red oak|1 +(noun)|swamp red oak|turkey oak|Quercus falcata|red oak +southern rhodesia|1 +(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country|African nation +southern scup|1 +(noun)|scup|southern porgy|Stenotomus aculeatus|porgy +southern spadefoot|1 +(noun)|Scaphiopus multiplicatus|spadefoot|spadefoot toad +southern spatterdock|1 +(noun)|Nuphar sagittifolium|water lily +southern tai|1 +(noun)|Southern Tai|Tai +southern triangle|1 +(noun)|Triangulum Australe|Southern Triangle|constellation +southern white cedar|1 +(noun)|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar|cedar tree +southern yellow pine|1 +(noun)|longleaf pine|pitch pine|Georgia pine|Pinus palustris|yellow pine +southerner|1 +(noun)|Southerner|American +southernism|2 +(noun)|saying|expression|locution +(noun)|attitude|mental attitude +southernmost|1 +(adj)|southmost|south +southernness|1 +(noun)|position|spatial relation +southernwood|1 +(noun)|Artemisia abrotanum|wormwood +southey|1 +(noun)|Southey|Robert Southey|poet +southland|1 +(noun)|South|region +southmost|1 +(adj)|southernmost|south +southpaw|2 +(noun)|left-handed pitcher|left-hander|left hander|lefthander|lefty|pitcher|hurler|twirler +(noun)|left-hander|lefty|person|individual|someone|somebody|mortal|human|soul +southward|2 +(adj)|southbound|south +(adv)|southwards +southwards|1 +(adv)|southward +southwest|5 +(adj)|southwesterly|south +(adj)|southwestern|southwesterly|south +(noun)|sou'-west|SW|compass point|point +(noun)|Southwest|southwestern United States|geographical area|geographic area|geographical region|geographic region +(adv)|south-west|sou'west +southwest by south|1 +(noun)|SWbS|compass point|point +southwest by west|1 +(noun)|SWbW|compass point|point +southwester|1 +(noun)|sou'wester|wind|air current|current of air +southwesterly|2 +(adj)|southwest|south +(adj)|southwest|southwestern|south +southwestern|3 +(adj)|southwest|southwesterly|south +(adj)|western +(noun)|Southwestern|West Saxon|Middle English +southwestern lip fern|1 +(noun)|Cheilanthes eatonii|lip fern|lipfern +southwestern toad|1 +(noun)|Bufo microscaphus|true toad +southwestern united states|1 +(noun)|Southwest|southwestern United States|geographical area|geographic area|geographical region|geographic region +southwestern white pine|1 +(noun)|Pinus strobiformis|white pine +southwestward|2 +(adj)|south +(adv)|southwestwardly +southwestwardly|1 +(adv)|southwestward +soutine|1 +(noun)|Soutine|Chaim Soutine|painter +souvenir|2 +(noun)|keepsake|token|relic|object|physical object +(noun)|memento|reminder +souvlaki|1 +(noun)|souvlakia|kabob|kebab|shish kebab +souvlakia|1 +(noun)|souvlaki|kabob|kebab|shish kebab +sovereign|3 +(adj)|autonomous|independent|self-governing|free +(adj)|supreme|dominant +(noun)|crowned head|monarch|ruler|swayer|head of state|chief of state +sovereign immunity|1 +(noun)|exemption|immunity|granting immunity +sovereignty|2 +(noun)|self-government|self-determination|self-rule +(noun)|reign|dominion|rule +soviet|2 +(adj)|Soviet|country|state|land +(noun)|council +soviet kgb|1 +(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency +soviet russia|1 +(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic +soviet socialist republic|1 +(noun)|Soviet Socialist Republic|state|province +soviet union|1 +(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country|state|land +sovietise|2 +(verb)|sovietize|join|bring together +(verb)|sovietize|model|pattern +sovietism|1 +(noun)|Bolshevism|collectivism|communism +sovietize|2 +(verb)|sovietise|join|bring together +(verb)|sovietise|model|pattern +soviets|2 +(noun)|Soviets|state +(noun)|soviet|council +sow|4 +(noun)|swine +(verb)|sough|seed|put|set|place|pose|position|lay +(verb)|sough|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|inseminate|sow in|sough|seed +sow bug|1 +(noun)|woodlouse|slater +sow in|1 +(verb)|inseminate|sow|sow|sough|seed +sow one's oats|1 +(verb)|sow one's wild oats|gratify|pander|indulge +sow one's wild oats|1 +(verb)|sow one's oats|gratify|pander|indulge +sow thistle|1 +(noun)|milk thistle|shrub|bush +sowbane|1 +(noun)|red goosefoot|Chenopodium hybridum|goosefoot +sowbelly|1 +(noun)|salt pork +sowbread|1 +(noun)|Cyclamen hederifolium|Cyclamen neopolitanum|flower +sower|1 +(noun)|farmer|husbandman|granger|sodbuster +soweto|1 +(noun)|Soweto|city|metropolis|urban center +sown|1 +(adj)|seeded|planted +soy|4 +(noun)|soybean|soya bean|bean|bean plant +(noun)|soya|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume|leguminous plant +(noun)|soy sauce|condiment +(noun)|soybean|bean|edible bean +soy flour|1 +(noun)|soybean meal|soybean flour|flour +soy sauce|1 +(noun)|soy|condiment +soya|1 +(noun)|soy|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume|leguminous plant +soya bean|2 +(noun)|soy|soybean|bean|bean plant +(noun)|soy|soya|soybean|soybean plant|soja|soja bean|Glycine max|legume|leguminous plant +soya milk|1 +(noun)|soybean milk|soymilk|milk +soyabean oil|1 +(noun)|soybean oil|vegetable oil|oil +soybean|3 +(noun)|soy|soya bean|bean|bean plant +(noun)|soy|soya|soya bean|soybean plant|soja|soja bean|Glycine max|legume|leguminous plant +(noun)|soy|bean|edible bean +soybean flour|1 +(noun)|soybean meal|soy flour|flour +soybean future|1 +(noun)|future +soybean meal|1 +(noun)|soybean flour|soy flour|flour +soybean milk|1 +(noun)|soya milk|soymilk|milk +soybean oil|1 +(noun)|soyabean oil|vegetable oil|oil +soybean plant|1 +(noun)|soy|soya|soybean|soya bean|soja|soja bean|Glycine max|legume|leguminous plant +soymilk|1 +(noun)|soya milk|soybean milk|milk +sozzled|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|squiffy|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +spa|3 +(noun)|watering place|watering hole|resort area|playground|vacation spot +(noun)|resort hotel|hotel +(noun)|health spa|health club|place of business|business establishment +space|9 +(noun)|abstraction +(noun)|amorphous shape|location +(noun)|area|country +(noun)|blank|character|grapheme|graphic symbol +(noun)|distance|time interval|interval +(noun)|blank space|place|area|expanse|surface area +(noun)|area|expanse|surface area +(noun)|quad|type +(verb)|put|set|place|pose|position|lay +space-reflection symmetry|1 +(noun)|parity|conservation of parity|mirror symmetry|conservation +space-time|1 +(noun)|space-time continuum|coordinate system|frame of reference|reference system|reference frame +space-time continuum|1 +(noun)|space-time|coordinate system|frame of reference|reference system|reference frame +space age|1 +(noun)|time +space bar|1 +(noun)|key +space biology|1 +(noun)|exobiology|astrobiology|biology|biological science +space cadet|1 +(noun)|simpleton|simple +space capsule|1 +(noun)|capsule|spacecraft|ballistic capsule|space vehicle +space heater|1 +(noun)|heater|warmer +space helmet|1 +(noun)|helmet +space laboratory|1 +(noun)|space station|space platform|satellite|artificial satellite|orbiter +space lattice|1 +(noun)|crystal lattice|Bravais lattice|lattice +space medicine|1 +(noun)|medicine|medical specialty +space platform|1 +(noun)|space station|space laboratory|satellite|artificial satellite|orbiter +space probe|1 +(noun)|guided missile +space program|1 +(noun)|program|programme +space rocket|1 +(noun)|rocket|rocket engine +space shuttle|1 +(noun)|spacecraft|ballistic capsule|space vehicle +space station|1 +(noun)|space platform|space laboratory|satellite|artificial satellite|orbiter +space travel|1 +(noun)|spaceflight|spacefaring|voyage +space vehicle|1 +(noun)|spacecraft|ballistic capsule|craft|satellite|artificial satellite|orbiter +space walk|1 +(noun)|activity +space writer|1 +(noun)|writer|author +spacecraft|1 +(noun)|ballistic capsule|space vehicle|craft|satellite|artificial satellite|orbiter +spacecraft clock time|1 +(noun)|SCLK|clock time|time +spacecraft event time|1 +(noun)|SCET|coordinated universal time|UTC +spaced|2 +(adj)|separated|distributed +(adj)|spaced |double-spaced|leaded|single-spaced +spaced-out|2 +(adj)|spacy|spacey|unconventional +(adj)|confused +spacefaring|1 +(noun)|spaceflight|space travel|voyage +spaceflight|1 +(noun)|space travel|spacefaring|voyage +spaceman|1 +(noun)|astronaut|cosmonaut|traveler|traveller +spaceship|1 +(noun)|starship|spacecraft|ballistic capsule|space vehicle +spacesuit|1 +(noun)|pressure suit +spacewalker|1 +(noun)|astronaut|spaceman|cosmonaut +spaceward|1 +(adv)|spacewards +spacewards|1 +(adv)|spaceward +spacey|1 +(adj)|spaced-out|spacy|unconventional +spacial|1 +(adj)|spatial |abstraction +spacing|2 +(noun)|rate +(noun)|spatial arrangement|placement|arrangement +spaciotemporal|1 +(adj)|spatiotemporal|comprehensive +spacious|2 +(adj)|broad|wide|large +(adj)|roomy|commodious |convenient +spaciously|1 +(adv)|roomily +spaciousness|1 +(noun)|capaciousness|roominess|commodiousness|largeness|bigness +spackle|1 +(noun)|spackling compound|plaster +spackling compound|1 +(noun)|spackle|plaster +spacy|1 +(adj)|spaced-out|spacey|unconventional +spade|4 +(noun)|playing card +(noun)|hand shovel +(noun)|nigger|nigga|coon|jigaboo|nigra|Black|Black person|blackamoor|Negro|Negroid +(verb)|dig|delve|cut into|turn over +spade bit|1 +(noun)|bit +spade casino|1 +(noun)|casino|cassino +spadefish|1 +(noun)|angelfish|Chaetodipterus faber|percoid fish|percoid|percoidean +spadefoot|1 +(noun)|spadefoot toad|frog|toad|toad frog|anuran|batrachian|salientian +spadefoot toad|1 +(noun)|spadefoot|frog|toad|toad frog|anuran|batrachian|salientian +spadeful|1 +(noun)|shovel|shovelful|containerful +spadework|1 +(noun)|work +spadix|1 +(noun)|axis +spaghetti|1 +(noun)|pasta|alimentary paste +spaghetti and meatballs|1 +(noun)|dish +spaghetti junction|1 +(noun)|interchange +spaghetti sauce|1 +(noun)|pasta sauce|sauce +spaghetti squash|2 +(noun)|summer squash|summer squash vine|Cucurbita pepo melopepo +(noun)|summer squash +spaghetti western|1 +(noun)|spaghetti Western|Western|horse opera +spaghettini|1 +(noun)|pasta|alimentary paste +spain|1 +(noun)|Spain|Kingdom of Spain|Espana|European country|European nation +spalacidae|1 +(noun)|Spalacidae|family Spalacidae|mammal family +spalax|1 +(noun)|Spalax|genus Spalax|mammal genus +spall|1 +(noun)|spawl|fragment +spallanzani|1 +(noun)|Spallanzani|Lazzaro Spallanzani|physiologist +spallation|1 +(noun)|nuclear reaction +spam|3 +(noun)|Spam|canned meat|tinned meat +(noun)|junk e-mail|electronic mail|e-mail|email +(verb)|e-mail|email|netmail +spammer|1 +(noun)|sender|transmitter +span|7 +(noun)|duration|continuance +(noun)|distance +(noun)|couple|pair|twosome|twain|brace|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|linear unit +(noun)|bridge|structure|construction +(noun)|straddle|motion|movement|move|motility +(verb)|cross|traverse|sweep|cover|extend +span loading|1 +(noun)|loading +spandau|1 +(noun)|Spandau|machine gun +spandex|1 +(noun)|fabric|cloth|material|textile +spandrel|1 +(noun)|spandril|surface +spandril|1 +(noun)|spandrel|surface +spang|1 +(verb)|bang|hit|strike|impinge on|run into|collide with +spangle|3 +(noun)|sequin|diamante|adornment +(verb)|glitter|glisten|glint|gleam|shine +(verb)|bespangle|decorate|adorn|grace|ornament|embellish|beautify +spangled|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangly|adorned |decorated +spangly|1 +(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|adorned |decorated +spaniard|1 +(noun)|Spaniard|European +spaniel|1 +(noun)|sporting dog|gun dog +spanish|3 +(adj)|Spanish|European country|European nation +(noun)|Spanish|Romance|Romance language|Latinian language +(noun)|Spanish|Spanish people|nation|land|country|a people +spanish-american war|1 +(noun)|Spanish-American War|Spanish War|war|warfare +spanish-speaking|1 +(adj)|Spanish-speaking|communicative |communicatory +spanish american|2 +(noun)|Spanish American|Hispanic American|Hispanic|Latino|American +(noun)|Latin American|Spanish American|resident|occupant|occupier +spanish armada|1 +(noun)|The Armada|Spanish Armada|Invincible Armada|armada +spanish bayonet|2 +(noun)|Spanish bayonet|Yucca baccata|yucca +(noun)|Spanish bayonet|Yucca aloifolia|yucca +spanish broom|2 +(noun)|Spanish broom|weaver's broom|Spartium junceum|broom +(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom +spanish burgoo|1 +(noun)|olla podrida|Spanish burgoo|stew +spanish capital|1 +(noun)|Madrid|capital of Spain|Spanish capital|national capital +spanish cedar|1 +(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany|mahogany tree +spanish cedar tree|1 +(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany|mahogany tree +spanish chestnut|1 +(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut|chestnut tree +spanish civil war|1 +(noun)|Spanish Civil War|civil war +spanish dagger|2 +(noun)|Spanish dagger|Yucca gloriosa|yucca +(noun)|Spanish dagger|Yucca carnerosana|yucca +spanish elm|2 +(noun)|princewood|Spanish elm|Cordia gerascanthus|tree +(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree|flowering tree +spanish fly|1 +(noun)|Spanish fly|blister beetle|meloid +spanish garlic|1 +(noun)|sand leek|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant +spanish gorse|1 +(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom +spanish grunt|1 +(noun)|Spanish grunt|Haemulon macrostomum|grunt +spanish guinea|1 +(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country|African nation +spanish heath|1 +(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica|true heath +spanish inquisition|1 +(noun)|Spanish Inquisition|Inquisition +spanish iris|1 +(noun)|Spanish iris|xiphium iris|Iris xiphium|beardless iris +spanish lime|2 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +(noun)|genip|Spanish lime|edible fruit +spanish lime tree|1 +(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree +spanish mackerel|4 +(noun)|Spanish mackerel|mackerel +(noun)|Spanish mackerel|mackerel +(noun)|Spanish mackerel|Scomber colias|mackerel +(noun)|horse mackerel|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad +spanish monetary unit|1 +(noun)|Spanish monetary unit|monetary unit +spanish moss|1 +(noun)|Spanish moss|old man's beard|black moss|long moss|Tillandsia usneoides|air plant|epiphyte|aerophyte|epiphytic plant +spanish needles|2 +(noun)|beggar-ticks|bur|burr +(noun)|Bidens bipinnata|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +spanish oak|1 +(noun)|Spanish oak|Quercus texana|oak|oak tree +spanish onion|1 +(noun)|Spanish onion|onion +spanish oyster plant|1 +(noun)|Spanish oyster plant|Scolymus hispanicus|golden thistle +spanish paprika|1 +(noun)|Spanish paprika|paprika +spanish people|1 +(noun)|Spanish|Spanish people|nation|land|country|a people +spanish peseta|1 +(noun)|peseta|Spanish peseta|Spanish monetary unit +spanish pointer|1 +(noun)|pointer|Spanish pointer|sporting dog|gun dog +spanish psyllium|1 +(noun)|fleawort|psyllium|Spanish psyllium|Plantago psyllium|plantain +spanish rice|1 +(noun)|Spanish rice|dish +spanish sahara|1 +(noun)|Western Sahara|Spanish Sahara|geographical area|geographic area|geographical region|geographic region +spanish tamarind|1 +(noun)|Spanish tamarind|Vangueria madagascariensis|tree +spanish tea|1 +(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot +spanish war|1 +(noun)|Spanish-American War|Spanish War|war|warfare +spank|2 +(noun)|smack|smacking|slap +(verb)|paddle|larrup|beat|beat up|work over +spanker|2 +(noun)|slapper|hitter|striker +(noun)|fore-and-aft sail +spanking|2 +(adj)|brisk|lively|merry|rattling|snappy|zippy|energetic +(noun)|discipline|correction +spanner|1 +(noun)|wrench|hand tool +spar|7 +(noun)|mineral +(noun)|pole +(noun)|sparring|boxing|pugilism|fisticuffs +(verb)|equip|fit|fit out|outfit +(verb)|fight|struggle +(verb)|box +(verb)|argue|contend|debate|fence +spar buoy|1 +(noun)|buoy +sparaxis|1 +(noun)|Sparaxis|genus Sparaxis|liliid monocot genus +sparaxis tricolor|1 +(noun)|wandflower|Sparaxis tricolor|flower +spare|13 +(adj)|trim|thin |lean +(adj)|excess|extra|redundant|supererogatory|superfluous|supernumerary|surplus|unnecessary |unneeded +(adj)|sufficient +(adj)|free|unoccupied +(adj)|reserve|unnecessary |unneeded +(adj)|bare|scanty|meager |meagre|meagerly +(noun)|spare part|component|constituent|element +(noun)|fifth wheel|car wheel +(noun)|score +(verb)|save|refrain|forbear +(verb)|exempt|relieve|free +(verb)|give up|part with|dispense with|give +(verb)|use|expend +spare-time activity|1 +(noun)|avocation|by-line|hobby|sideline|pastime|interest|pursuit +spare part|1 +(noun)|spare|component|constituent|element +spare time|2 +(noun)|free time|time off +(noun)|free time|leisure|leisure time +spare tire|1 +(noun)|love handle|adipose tissue|fat|fatty tissue +spareness|1 +(noun)|sparseness|sparsity|meagerness|meagreness|poorness|scantiness|scantness|exiguity +sparer|1 +(noun)|benefactor|helper +sparerib|1 +(noun)|rib +spareribs|3 +(noun)|barbecued spareribs|dish +(noun)|cut of pork +(noun)|sparerib|rib +sparganiaceae|1 +(noun)|Sparganiaceae|family Sparganiaceae|bur-reed family|monocot family|liliopsid family +sparganium|1 +(noun)|Sparganium|genus Sparganium|monocot genus|liliopsid genus +sparge|3 +(noun)|sprinkle|sprinkling|watering +(verb)|shake|agitate +(verb)|sprinkle|besprinkle|wet +sparge pipe|1 +(noun)|pipe|pipage|piping +sparid|1 +(noun)|sparid fish|percoid fish|percoid|percoidean +sparid fish|1 +(noun)|sparid|percoid fish|percoid|percoidean +sparidae|1 +(noun)|Sparidae|family Sparidae|fish family +sparing|1 +(adj)|economical|frugal|scotch|stinting|thrifty +sparingly|1 +(adv)|meagerly|slenderly|meagrely +spark|8 +(noun)|flicker|glint|flash +(noun)|sparkle|light|vitality|verve|expression|look|aspect|facial expression|face +(noun)|discharge|arc|electric arc|electric discharge|electrical conduction +(noun)|trace|hint|suggestion +(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer|author +(noun)|fragment +(verb)|trip|actuate|trigger|activate|set off|spark off|trigger off|touch off|initiate|pioneer +(verb)|sparkle|emit|give out|give off +spark advance|1 +(noun)|lead|timing +spark arrester|2 +(noun)|electrical device +(noun)|sparker|net|network|mesh|meshing|meshwork +spark chamber|1 +(noun)|spark counter|measuring instrument|measuring system|measuring device +spark coil|1 +(noun)|induction coil +spark counter|1 +(noun)|spark chamber|measuring instrument|measuring system|measuring device +spark gap|2 +(noun)|component|constituent|element +(noun)|gap|crack +spark lever|1 +(noun)|lever +spark off|1 +(verb)|trip|actuate|trigger|activate|set off|spark|trigger off|touch off|initiate|pioneer +spark plug|1 +(noun)|sparking plug|plug|electrical device +spark transmitter|1 +(noun)|radio transmitter +sparker|1 +(noun)|spark arrester|net|network|mesh|meshing|meshwork +sparking plug|1 +(noun)|spark plug|plug|electrical device +sparkle|7 +(noun)|spark|light|vitality|verve|expression|look|aspect|facial expression|face +(noun)|glitter|coruscation|flash +(noun)|glitter|glister|glisten|scintillation|brightness +(verb)|scintillate|coruscate|reflect|shine +(verb)|scintillate|coruscate|be +(verb)|spark|emit|give out|give off +(verb)|foam|froth|fizz|effervesce|bubble +sparkle metal|1 +(noun)|matte +sparkleberry|1 +(noun)|farkleberry|Vaccinium arboreum|blueberry|blueberry bush +sparkler|2 +(noun)|ice|diamond +(noun)|firework|pyrotechnic +sparkling|5 +(adj)|starry +(adj)|bubbling|effervescent|scintillating|sparkly|lively +(adj)|sparkling |effervescent +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkly|bright +(noun)|twinkle|scintillation|change|alteration|modification +sparkling water|1 +(noun)|soda water|carbonated water|club soda|seltzer|drinking water +sparkling wine|1 +(noun)|wine|vino +sparkly|2 +(adj)|bubbling|effervescent|scintillating|sparkling|lively +(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkling|bright +sparkplug wrench|1 +(noun)|wrench|spanner +sparling|2 +(noun)|European smelt|smelt +(noun)|European smelt|Osmerus eperlanus|smelt +sparmannia|1 +(noun)|Sparmannia|genus Sparmannia|dilleniid dicot genus +sparmannia africana|1 +(noun)|African hemp|Sparmannia africana|shrub|bush +sparring|2 +(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|arguing +(noun)|spar|boxing|pugilism|fisticuffs +sparring match|1 +(noun)|boxing match +sparring mate|1 +(noun)|sparring partner|boxer|pugilist +sparring partner|1 +(noun)|sparring mate|boxer|pugilist +sparrow|2 +(noun)|true sparrow|passerine|passeriform bird +(noun)|hedge sparrow|dunnock|Prunella modularis|accentor +sparrow hawk|2 +(noun)|American kestrel|kestrel|Falco sparverius|falcon +(noun)|Accipiter nisus|hawk +sparrow unit|1 +(noun)|Sparrow Unit|hit squad +sparse|1 +(adj)|thin|distributed +sparseness|1 +(noun)|spareness|sparsity|meagerness|meagreness|poorness|scantiness|scantness|exiguity +sparsity|1 +(noun)|sparseness|spareness|meagerness|meagreness|poorness|scantiness|scantness|exiguity +sparta|1 +(noun)|Sparta|city|metropolis|urban center +spartan|5 +(adj)|Spartan|city|metropolis|urban center +(adj)|resolute +(adj)|severe|strict|nonindulgent +(adj)|ascetic|ascetical|austere|abstemious +(noun)|Spartan|Greek|Hellene +spartina|1 +(noun)|Spartina|genus Spartina|monocot genus|liliopsid genus +spartina cynosuroides|1 +(noun)|salt reed grass|Spartina cynosuroides|cordgrass|cord grass +spartina pectinmata|1 +(noun)|prairie cordgrass|freshwater cordgrass|slough grass|Spartina pectinmata|cordgrass|cord grass +spartium|1 +(noun)|Spartium|genus Spartium|rosid dicot genus +spartium junceum|1 +(noun)|Spanish broom|weaver's broom|Spartium junceum|broom +spasm|2 +(noun)|cramp|muscle spasm|symptom +(noun)|constriction +spasmodic|2 +(adj)|convulsive|spastic|unsteady +(adj)|fitful|sporadic +spasmodic laryngitis|1 +(noun)|croup|angina +spasmodically|1 +(adv)|jerkily +spasmolysis|1 +(noun)|easing|easement|alleviation|relief +spasmolytic|1 +(noun)|antispasmodic|antispasmodic agent|medicine|medication|medicament|medicinal drug +spassky|1 +(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master +spastic|4 +(adj)|symptom +(adj)|ill |sick +(adj)|convulsive|spasmodic|unsteady +(noun)|paralytic +spastic abasia|1 +(noun)|abasia +spastic bladder|1 +(noun)|bladder disorder +spastic colon|1 +(noun)|irritable bowel syndrome|mucous colitis|colitis|inflammatory bowel disease +spastic paralysis|1 +(noun)|cerebral palsy|brain disorder|encephalopathy|brain disease +spasticity|1 +(noun)|fitfulness|jerkiness +spat|14 +(noun)|bicker|bickering|tiff|squabble|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +(noun)|spats|gaiter|legging|legin|leg covering +(noun)|young|offspring +(verb)|precipitate|come down|fall +(verb)|attach +(verb)|hit|strike|impinge on|run into|collide with +(verb)|applaud|clap|acclaim|gesticulate|gesture|motion +(verb)|quarrel|dispute|scrap|argufy|altercate +(verb)|spawn +(verb)|clap|gesticulate|gesture|motion +(verb)|spit|ptyalize|ptyalise|spew|spue|expectorate|cough up|cough out|spit up|spit out|spit up|spit up +(verb)|spit|spit out|utter|emit|let out|let loose +(verb)|sprinkle|spit|spatter|patter|pitter-patter|rain|rain down +(verb)|skewer|spit|pin +spatangoida|1 +(noun)|Spatangoida|order Spatangoida|animal order +spatchcock|3 +(noun)|chicken|poulet|volaille +(verb)|organize|organise|prepare|devise|get up|machinate +(verb)|slip in|stick in|sneak in|insert +spate|3 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|rush|surge|upsurge|flow|flowing +(noun)|freshet|flow|flowing +spathe|1 +(noun)|bract +spathe flower|1 +(noun)|spathiphyllum|peace lily|flower +spathiphyllum|1 +(noun)|peace lily|spathe flower|flower +spatial|1 +(adj)|spatial |spacial|abstraction +spatial arrangement|1 +(noun)|spacing|placement|arrangement +spatial property|1 +(noun)|spatiality|property +spatial relation|1 +(noun)|position|relation +spatiality|1 +(noun)|spatial property|property +spatiotemporal|2 +(adj)|coordinate system|frame of reference|reference system|reference frame +(adj)|spaciotemporal|comprehensive +spats|4 +(noun)|spat|gaiter|legging|legin|leg covering +(noun)|bicker|bickering|spat|tiff|squabble|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +(noun)|spat|gaiter|legging|legin|leg covering +(noun)|spat|young|offspring +spatter|5 +(noun)|spattering|splatter|splattering|sputter|splutter|sputtering|noise +(noun)|spattering|splash|splashing|splattering|painting +(verb)|splatter|plash|splash|splosh|swash|scatter|sprinkle|dot|dust|disperse +(verb)|sprinkle|spit|patter|pitter-patter|rain|rain down +(verb)|bespatter|spot|fleck|blob|blot +spatterdock|1 +(noun)|cow lily|yellow pond lily|Nuphar advena|water lily +spattered|2 +(adj)|dabbled|splashed|splashy|splattered|covered +(adj)|bespattered|besplashed|splashed|dirty |soiled|unclean +spattering|2 +(noun)|spatter|splatter|splattering|sputter|splutter|sputtering|noise +(noun)|spatter|splash|splashing|splattering|painting +spatula|2 +(noun)|turner|food turner +(noun)|hand tool +spatula-shaped|1 +(adj)|spatulate|simple |unsubdivided|rounded +spatulate|1 +(adj)|spatula-shaped|simple |unsubdivided|rounded +spatulate leaf|1 +(noun)|simple leaf +spavin|1 +(noun)|animal disease +spavined|1 +(adj)|lame|unfit +spawl|1 +(noun)|spall|fragment +spawn|3 +(noun)|egg +(verb)|engender|breed|cause|do|make +(verb)|lay +spawner|1 +(noun)|fish +spay|1 +(verb)|alter|neuter|castrate|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +spayed|1 +(adj)|castrated |unsexed +spaying|1 +(noun)|neutering|fixing|altering +speak|5 +(verb)|talk|utter|mouth|verbalize|verbalise|communicate|intercommunicate|speak up +(verb)|talk|communicate|intercommunicate|speak for +(verb)|talk|communicate|intercommunicate +(verb)|address +(verb)|sound +speak for|1 +(verb)|represent +speak in tongues|1 +(verb)|talk|speak|utter|mouth|verbalize|verbalise +speak of the devil|1 +(verb)|mention|advert|bring up|cite|name|refer +speak up|2 +(verb)|opine|animadvert|sound off|declare +(verb)|talk|speak|utter|mouth|verbalize|verbalise +speakable|1 +(adj)|utterable|expressible +speakeasy|1 +(noun)|barroom|bar|saloon|ginmill|taproom +speaker|3 +(noun)|talker|utterer|verbalizer|verbaliser|articulator +(noun)|loudspeaker|speaker unit|loudspeaker system|speaker system|electro-acoustic transducer +(noun)|Speaker|presiding officer +speaker identification|1 +(noun)|talker identification|recognition|identification +speaker system|1 +(noun)|loudspeaker|speaker|speaker unit|loudspeaker system|electro-acoustic transducer +speaker unit|1 +(noun)|loudspeaker|speaker|loudspeaker system|speaker system|electro-acoustic transducer +speakerphone|1 +(noun)|telephone|phone|telephone set +speakership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +speaking|4 +(adj)|speaking |mumbling|muttering|talking|tongued +(adj)|speech-endowed|articulate +(noun)|speech production|utterance|vocalization +(noun)|public speaking|speechmaking|oral presentation|address|speech +speaking trumpet|1 +(noun)|acoustic device +speaking tube|1 +(noun)|tube|tubing +spear|4 +(noun)|lance|shaft|weapon|arm|weapon system +(noun)|gig|fizgig|fishgig|lance|implement +(verb)|transfix|impale|empale|spike +(verb)|spear up|stick out|protrude|jut out|jut|project +spear-point|2 +(noun)|spearhead|spearpoint|point +(noun)| +spear carrier|1 +(noun)|supernumerary|extra|actor|histrion|player|thespian|role player +spear thistle|1 +(noun)|bull thistle|boar thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle|plumed thistle +spear thrower|1 +(noun)|throwing stick|throwing board|dart thrower|device +spear up|1 +(verb)|spear|stick out|protrude|jut out|jut|project +spearfish|2 +(noun)|billfish +(noun)|marlin|billfish +spearhead|4 +(noun)|leader +(noun)|military unit|military force|military group|force +(noun)|spearpoint|spear-point|point +(verb)|head|lead +spearhead-shaped|1 +(adj)|hastate|simple |unsubdivided|pointed +spearmint|1 +(noun)|Mentha spicata|mint +spearmint oil|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +spearnose bat|1 +(noun)|leafnose bat|leaf-nosed bat +spearpoint|1 +(noun)|spearhead|spear-point|point +spec|1 +(noun)|specification|description|verbal description +special|10 +(adj)|particular|peculiar|specific +(adj)|extraordinary +(adj)|especial|exceptional|particular|uncommon +(adj)|specialized |specialised +(adj)|limited|specific +(adj)|particular|primary +(adj)|extra|unscheduled +(noun)|offer|offering +(noun)|dish +(noun)|television program|TV program|television show|TV show +special act|1 +(noun)|legislative act|statute +special agent|1 +(noun)|agent +special air service|1 +(noun)|Special Air Service|SAS|commando +special assessment|1 +(noun)|tax|taxation|revenue enhancement +special branch|1 +(noun)|Special Branch|government department +special contract|1 +(noun)|sealed instrument|contract under seal|contract +special court-martial|1 +(noun)|court-martial +special delivery|1 +(noun)|mail +special drawing rights|1 +(noun)|paper gold|reserve assets +special education|1 +(noun)|education +special effect|1 +(noun)|effect +special forces|1 +(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division +special interest|1 +(noun)|interest|interest group +special jury|1 +(noun)|blue ribbon jury|jury +special k|1 +(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +special olympics|1 +(noun)|Special Olympics|athletic contest|athletic competition|athletics +special pleading|2 +(noun)|specious argument +(noun)|pleading +special relativity|1 +(noun)|special theory of relativity|special relativity theory|Einstein's special theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +special relativity theory|1 +(noun)|special relativity|special theory of relativity|Einstein's special theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +special session|1 +(noun)|session +special theory of relativity|1 +(noun)|special relativity|special relativity theory|Einstein's special theory of relativity|relativity|theory of relativity|relativity theory|Einstein's theory of relativity +special verdict|1 +(noun)|verdict|finding of fact +special weapons and tactics squad|1 +(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad +special weapons and tactics team|1 +(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad +specialisation|3 +(noun)|specialization|differentiation|adaptation|adjustment +(noun)|specialization|change of state +(noun)|specialization|specialty|speciality|specialism|career|calling|vocation +specialise|5 +(verb)|specialize|work +(verb)|specify|particularize|particularise|specialize|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|specialize|modify +(verb)|specialize|narrow|narrow down|change|alter|vary +(verb)|speciate|differentiate|specialize|evolve +specialised|2 +(adj)|specialized |differentiated|special|specialistic|specific +(adj)|specialized|technical +specialiser|1 +(noun)|specialist|specializer|expert +specialism|2 +(noun)|concentration|engrossment|absorption|immersion +(noun)|specialization|specialisation|specialty|speciality|career|calling|vocation +specialist|2 +(noun)|specializer|specialiser|expert +(noun)|medical specialist|doctor|doc|physician|MD|Dr.|medico +specialistic|2 +(adj)|expert +(adj)|specialized |specialised +speciality|3 +(noun)|forte|strong suit|long suit|metier|specialty|strong point|strength|asset|plus +(noun)|peculiarity|specialness|specialty|distinctiveness|individuality|individualism|individuation +(noun)|specialization|specialisation|specialty|specialism|career|calling|vocation +specialization|3 +(noun)|specialisation|change of state +(noun)|specialisation|specialty|speciality|specialism|career|calling|vocation +(noun)|specialisation|differentiation|adaptation|adjustment +specialize|5 +(verb)|specialise|narrow|narrow down|change|alter|vary +(verb)|specify|particularize|particularise|specialise|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|specialise|modify +(verb)|specialise|work +(verb)|speciate|differentiate|specialise|evolve +specialized|2 +(adj)|specialized |specialised|differentiated|special|specialistic|specific +(adj)|specialised|technical +specializer|1 +(noun)|specialist|specialiser|expert +specially|2 +(adv)|especially +(adv)|particularly|peculiarly|especially +specialness|1 +(noun)|peculiarity|specialty|speciality|distinctiveness|individuality|individualism|individuation +specialty|3 +(noun)|forte|strong suit|long suit|metier|speciality|strong point|strength|asset|plus +(noun)|peculiarity|specialness|speciality|distinctiveness|individuality|individualism|individuation +(noun)|specialization|specialisation|speciality|specialism|career|calling|vocation +specialty store|1 +(noun)|shop|store +speciate|1 +(verb)|differentiate|specialize|specialise|evolve +speciation|1 +(noun)|evolution|phylogeny|phylogenesis +specie|1 +(noun)|coinage|mintage|metal money|currency +species|3 +(noun)|taxonomic group|taxonomic category|taxon +(noun)|kind|sort|form|variety +(noun)|coinage|mintage|specie|metal money|currency +specifiable|1 +(adj)|identifiable +specific|6 +(adj)|specific |ad hoc|circumstantial|limited|special|particular|peculiar|special|particular|particularized|particularised|proper|unique|precise|specialized|specialised +(adj)|specified +(adj)|taxonomic group|taxonomic category|taxon +(adj)|specific +(noun)|particular|fact +(noun)|medicine|medication|medicament|medicinal drug +specific gravity|1 +(noun)|relative density +specific heat|1 +(noun)|heat|heat energy +specific performance|1 +(noun)|performance|execution|carrying out|carrying into action +specification|4 +(noun)|spec|description|verbal description +(noun)|naming +(noun)|document|written document|papers +(noun)|stipulation|restriction +specificity|2 +(noun)|particularity +(noun)|particularity +specified|1 +(adj)|specified |fixed|given|nominative|nominal|specific|such|such that|such|such as|mere +specifier|1 +(noun)|intellectual|intellect +specify|7 +(verb)|stipulate|qualify|condition|contract|undertake +(verb)|define|delineate|delimit|delimitate|be +(verb)|set|determine|fix|limit|choose|take|select|pick out +(verb)|particularize|particularise|specialize|specialise|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate +(verb)|pin down|peg down|nail down|narrow down|narrow|determine +(verb)|intend|destine|designate|plan +(verb)|assign|set apart|choose|take|select|pick out +specimen|2 +(noun)|example|illustration|instance|representative +(noun)|sample +specimen bottle|1 +(noun)|bottle +specious|3 +(adj)|spurious|invalid +(adj)|false +(adj)|gilded|meretricious|insincere +specious argument|1 +(noun)|argument|statement +speciousness|1 +(noun)|meretriciousness|deceptiveness|obliquity +speck|4 +(noun)|pinpoint|spot|speckle|dapple|patch|fleck|maculation +(noun)|atom|molecule|particle|corpuscle|mote|material|stuff +(noun)|touch|hint|tinge|mite|pinch|jot|soupcon|small indefinite quantity|small indefinite amount +(verb)|mark +specked|1 +(adj)|dotted|flecked|speckled|stippled|patterned +speckle|3 +(noun)|spot|dapple|patch|fleck|maculation|marking +(verb)|stipple|mottle|dapple|cloud +(verb)|bespeckle|spot|fleck|blob|blot +speckled|1 +(adj)|dotted|flecked|specked|stippled|patterned +speckled alder|1 +(noun)|Alnus rugosa|alder|alder tree +speckled rattlesnake|1 +(noun)|Crotalus mitchellii|rattlesnake|rattler +speckled trout|2 +(noun)|brook trout|freshwater fish +(noun)|brook trout|Salvelinus fontinalis|trout +speckless|1 +(adj)|immaculate|spick-and-span|spic-and-span|spic|spick|spotless|clean +specs|2 +(noun)|spectacles|eyeglasses|glasses|optical instrument +(noun)|specification|spec|description|verbal description +spectacle|3 +(noun)|sight +(noun)|display|presentation +(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +spectacled|1 +(adj)|bespectacled|monocled|adorned |decorated +spectacled caiman|1 +(noun)|Caiman sclerops|cayman|caiman +spectacles|4 +(noun)|specs|eyeglasses|glasses|optical instrument +(noun)|spectacle|sight +(noun)|spectacle|display|presentation +(noun)|spectacle|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +spectacular|4 +(adj)|dramatic|striking|impressive +(adj)|dramatic +(adj)|outstanding|prominent|salient|striking|conspicuous |obvious +(noun)|performance|public presentation +spectacularly|1 +(adv)|stunningly +spectate|1 +(verb)|watch|view|see|catch|take in +spectator|2 +(noun)|witness|viewer|watcher|looker|perceiver|observer|beholder +(noun)|spectator pump|pump|pumps +spectator pump|1 +(noun)|spectator|pump|pumps +spectator sport|1 +(noun)|sport|athletics +specter|2 +(noun)|ghost|shade|spook|wraith|spectre|apparition|phantom|phantasm|phantasma|shadow +(noun)|apparition|phantom|phantasm|phantasma|spectre|spirit|disembodied spirit +spectinomycin|1 +(noun)|antibiotic|antibiotic drug +spectral|2 +(adj)|array +(adj)|apparitional|ghostlike|ghostly|phantasmal|spiritual|supernatural +spectral color|1 +(noun)|chromatic color|chromatic colour|spectral colour|color|colour|coloring|colouring +spectral colour|1 +(noun)|chromatic color|chromatic colour|spectral color|color|colour|coloring|colouring +spectre|2 +(noun)|apparition|phantom|phantasm|phantasma|specter|spirit|disembodied spirit +(noun)|ghost|shade|spook|wraith|specter|apparition|phantom|phantasm|phantasma|shadow +spectrogram|1 +(noun)|spectrograph|photograph|photo|exposure|pic +spectrograph|2 +(noun)|spectroscope|prism spectroscope +(noun)|spectrogram|photograph|photo|exposure|pic +spectrographic|1 +(adj)|spectroscope|prism spectroscope +spectrographic analysis|1 +(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|chemical analysis|qualitative analysis +spectrometer|1 +(noun)|mass spectrometer|spectroscope|prism spectroscope +spectrometric|1 +(adj)|chemical analysis|qualitative analysis +spectrometry|1 +(noun)|spectroscopy|spectroscopic analysis|spectrum analysis|spectrographic analysis|chemical analysis|qualitative analysis +spectrophotometer|1 +(noun)|photometer +spectroscope|1 +(noun)|prism spectroscope|optical instrument +spectroscopic|1 +(adj)|spectroscopical|chemical analysis|qualitative analysis +spectroscopic analysis|1 +(noun)|spectroscopy|spectrometry|spectrum analysis|spectrographic analysis|chemical analysis|qualitative analysis +spectroscopical|1 +(adj)|spectroscopic|chemical analysis|qualitative analysis +spectroscopy|1 +(noun)|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis|chemical analysis|qualitative analysis +spectrum|2 +(noun)|array +(noun)|scope|range|reach|orbit|compass|ambit +spectrum analysis|1 +(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrographic analysis|chemical analysis|qualitative analysis +spectrum line|1 +(noun)|line +specular|1 +(adj)|mirrorlike|reflective +speculate|4 +(verb)|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect|anticipate +(verb)|reason +(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|think|cogitate|cerebrate +(verb)|job|invest|put|commit|place +speculation|4 +(noun)|guess|conjecture|supposition|surmise|surmisal|hypothesis|opinion|view +(noun)|conjecture|hypothesis|possibility|theory +(noun)|venture|investment|investment funds +(noun)|meditation|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +speculative|3 +(adj)|bad|insecure|risky|high-risk|unsound +(adj)|notional|theoretical |theoretic +(adj)|inquisitive|questioning|wondering|curious +speculatively|1 +(adv)|with speculation +speculativeness|1 +(noun)|riskiness|peril +speculator|2 +(noun)|thinker +(noun)|plunger|adventurer|venturer|gambler +speculum|2 +(noun)|mirror +(noun)|medical instrument +speech|8 +(noun)|address|speech act +(noun)|speech communication|spoken communication|spoken language|language|voice communication|oral communication|auditory communication +(noun)|utterance|vocalization +(noun)|speaking|speech production +(noun)|manner of speaking|delivery|expressive style|style +(noun)|lecture|talking to|rebuke|reproof|reproval|reprehension|reprimand +(noun)|actor's line|words|line +(noun)|language|faculty|mental faculty|module +speech-endowed|1 +(adj)|speaking|articulate +speech-read|1 +(verb)|lipread|lip-read|read +speech act|1 +(noun)|act|human action|human activity +speech communication|1 +(noun)|speech|spoken communication|spoken language|language|voice communication|oral communication|auditory communication +speech community|1 +(noun)|community +speech day|1 +(noun)|day +speech defect|1 +(noun)|speech disorder|defect of speech|disorder|upset +speech disorder|1 +(noun)|speech defect|defect of speech|disorder|upset +speech intelligibility|1 +(noun)|intelligibility +speech organ|1 +(noun)|vocal organ|organ +speech pattern|1 +(noun)|accent|pronunciation +speech perception|1 +(noun)|auditory perception|sound perception +speech production|1 +(noun)|speaking|utterance|vocalization +speech rhythm|1 +(noun)|rhythm|prosody|inflection|template|templet|guide +speech sound|1 +(noun)|phone|sound|language unit|linguistic unit +speech spectrum|1 +(noun)|sound spectrum|acoustic spectrum +speech therapist|1 +(noun)|therapist|healer +speech therapy|1 +(noun)|therapy +speechifier|1 +(noun)|orator|speechmaker|rhetorician|public speaker|speaker|talker|utterer|verbalizer|verbaliser +speechify|1 +(verb)|deliver|present +speechless|1 +(adj)|dumb|inarticulate |unarticulate +speechlessness|1 +(noun)|silence|quiet +speechmaker|1 +(noun)|orator|rhetorician|public speaker|speechifier|speaker|talker|utterer|verbalizer|verbaliser +speechmaking|1 +(noun)|public speaking|speaking|oral presentation|address|speech +speechwriter|1 +(noun)|writer|author +speed|10 +(noun)|velocity|rate +(noun)|swiftness|fastness|pace|rate +(noun)|speeding|hurrying|motion|movement|move +(noun)|focal ratio|f number|stop number|ratio +(noun)|amphetamine|pep pill|upper|stimulant|stimulant drug|drug of abuse|street drug +(verb)|rush|hotfoot|hasten|hie|race|pelt along|rush along|cannonball along|bucket along|belt along|travel|go|move|locomote|speed up +(verb)|accelerate|speed up|quicken|intensify|deepen +(verb)|travel|go|move|locomote +(verb)|travel rapidly|hurry|zip|travel|go|move|locomote|speed up +(verb)|accelerate|speed up|modify|qualify +speed-reading|1 +(noun)|reading +speed bump|1 +(noun)|hindrance|hitch|preventive|preventative|encumbrance|incumbrance|interference +speed cop|1 +(noun)|motorcycle cop|motorcycle policeman|policeman|police officer|officer +speed demon|1 +(noun)|speeder|driver +speed freak|1 +(noun)|addict +speed indicator|1 +(noun)|speedometer|meter +speed limit|1 +(noun)|regulation|ordinance +speed of light|1 +(noun)|light speed|c|speed|velocity|constant +speed skate|2 +(noun)|racing skate|ice skate +(verb)|race|run +speed skater|2 +(noun)|speedskater|ice-skater +(noun)| +speed skating|1 +(noun)|skating +speed trap|1 +(noun)|trap|snare +speed up|2 +(verb)|accelerate|speed|quicken|intensify|deepen +(verb)|accelerate|speed|modify|qualify +speedboat|1 +(noun)|motorboat|powerboat +speeded up|1 +(adj)|accelerated|expedited +speeder|1 +(noun)|speed demon|driver +speedily|1 +(adv)|quickly|rapidly|chop-chop|apace +speeding|2 +(adj)|fast +(noun)|speed|hurrying|motion|movement|move +speeding ticket|1 +(noun)|ticket +speedometer|1 +(noun)|speed indicator|meter +speedskater|1 +(noun)|speed skater|ice-skater +speedup|1 +(noun)|acceleration|quickening|speed|speeding|hurrying +speedway|2 +(noun)|road|route +(noun)|racetrack|racecourse|raceway|track +speedwell|1 +(noun)|veronica|flower +speedy|2 +(adj)|rapid|fast +(adj)|quick|fast +speer|1 +(noun)|Speer|Albert Speer|architect|designer +speke|1 +(noun)|Speke|John Speke|John Hanning Speke|explorer|adventurer +spelaeologist|1 +(noun)|potholer|spelunker|speleologist|explorer|adventurer +spelaeology|2 +(noun)|speleology|geology +(noun)|speleology|avocation|by-line|hobby|sideline|spare-time activity +speleologist|1 +(noun)|potholer|spelunker|spelaeologist|explorer|adventurer +speleology|2 +(noun)|spelaeology|geology +(noun)|spelaeology|avocation|by-line|hobby|sideline|spare-time activity +spell|8 +(noun)|enchantment|trance|psychological state|mental state +(noun)|go|tour|turn|shift|work shift|duty period +(noun)|while|piece|patch|time +(noun)|magic spell|charm|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(verb)|recite|spell out +(verb)|import|mean|intend +(verb)|write +(verb)|hex|bewitch|glamour|witch|enchant|jinx +spell-checker|1 +(noun)|spelling checker|dictionary|lexicon +spell out|2 +(verb)|specify|particularize|particularise|specialize|specialise +(verb)|read +spellbind|3 +(verb)|fascinate|transfix|grip|interest +(verb)|magnetize|mesmerize|mesmerise|magnetise|bewitch|charm|influence|tempt +(verb)|entrance|hypnotize|hypnotise|mesmerize|mesmerise +spellbinder|1 +(noun)|orator|speechmaker|rhetorician|public speaker|speechifier +spellbinding|1 +(adj)|hypnotic|mesmeric|mesmerizing|attractive +spellbound|1 +(adj)|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|transfixed|enchanted +spelldown|1 +(noun)|spelling bee|spelling contest|contest|competition +speller|2 +(noun)|good speller|poor speller|writer +(noun)|primer +spelling|1 +(noun)|orthography|writing system +spelling bee|1 +(noun)|spelldown|spelling contest|contest|competition +spelling checker|1 +(noun)|spell-checker|dictionary|lexicon +spelling contest|1 +(noun)|spelling bee|spelldown|contest|competition +spelt|1 +(noun)|Triticum spelta|Triticum aestivum spelta|wheat|corn +spelunk|1 +(verb)|cave|explore +spelunker|1 +(noun)|potholer|speleologist|spelaeologist|explorer|adventurer +spencer|1 +(noun)|Spencer|Herbert Spencer|philosopher|sociologist +spencer tracy|1 +(noun)|Tracy|Spencer Tracy|actor|histrion|player|thespian|role player +spend|3 +(verb)|pass +(verb)|expend|drop|pay +(verb)|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +spend-all|1 +(noun)|spendthrift|spender|scattergood|prodigal|profligate|squanderer +spend a penny|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|wee|wee-wee|pass water|excrete|egest|eliminate|pass +spendable|1 +(adj)|expendable|disposable +spender|3 +(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet|literary critic +(noun)|spendthrift|spend-all|scattergood|prodigal|profligate|squanderer +(noun)|disburser|expender|customer|client +spending|1 +(noun)|disbursement|disbursal|outlay|payment|defrayal|defrayment +spending cut|1 +(noun)|cut +spending money|1 +(noun)|pocket money|pin money|cash|hard cash|hard currency +spending spree|1 +(noun)|spree|fling +spendthrift|2 +(adj)|extravagant|prodigal|profligate|wasteful +(noun)|spend-all|spender|scattergood|prodigal|profligate|squanderer +spendthrift trust|1 +(noun)|trust +spengler|1 +(noun)|Spengler|Oswald Spengler|philosopher +spenser|1 +(noun)|Spenser|Edmund Spenser|poet +spenserian sonnet|1 +(noun)|Spenserian sonnet|sonnet +spenserian stanza|1 +(noun)|Spenserian stanza|stanza +spent|2 +(adj)|exhausted|dog-tired|fagged|fatigued|played out|washed-out|worn-out|worn out|tired +(adj)|gone|expended|exhausted +spergula|1 +(noun)|Spergula|genus Spergula|caryophylloid dicot genus +spergula arvensis|1 +(noun)|corn spurry|corn spurrey|Spergula arvensis|weed +spergularia|1 +(noun)|Spergularia|genus Spergularia|caryophylloid dicot genus +spergularia rubra|1 +(noun)|sand spurry|sea spurry|Spergularia rubra|weed +sperm|1 +(noun)|sperm cell|spermatozoon|spermatozoan|gamete +sperm bank|1 +(noun)|depository|deposit|repository +sperm cell|1 +(noun)|sperm|spermatozoon|spermatozoan|gamete +sperm count|2 +(noun)|count +(noun)|count|counting|numeration|enumeration|reckoning|tally +sperm oil|1 +(noun)|animal oil +sperm whale|1 +(noun)|cachalot|black whale|Physeter catodon|toothed whale +spermaceti|1 +(noun)|wax +spermatic|1 +(adj)|spermous|gamete +spermatic cord|1 +(noun)|funiculus +spermatid|1 +(noun)|gamete +spermatocele|1 +(noun)|swelling|puffiness|lump +spermatocide|1 +(noun)|spermicide|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +spermatocyte|1 +(noun)|gametocyte +spermatogenesis|1 +(noun)|gametogenesis +spermatophyta|1 +(noun)|Spermatophyta|division Spermatophyta|division +spermatophyte|1 +(noun)|phanerogam|seed plant|vascular plant|tracheophyte +spermatozoan|1 +(noun)|sperm|sperm cell|spermatozoon|gamete +spermatozoid|1 +(noun)|antherozoid|gamete +spermatozoon|1 +(noun)|sperm|sperm cell|spermatozoan|gamete +spermicidal|1 +(adj)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +spermicide|1 +(noun)|spermatocide|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device +spermophile|1 +(noun)|ground squirrel|gopher|squirrel +spermophilus|1 +(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus +spermous|1 +(adj)|spermatic|gamete +sperry|1 +(noun)|Sperry|Elmer Ambrose Sperry|inventor|discoverer|artificer|engineer|applied scientist|technologist +spew|3 +(verb)|spit|ptyalize|ptyalise|spue|expectorate|cough up|cough out|spit up|spit out +(verb)|spew out|eruct|discharge|expel|eject|release +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +spew out|1 +(verb)|spew|eruct|discharge|expel|eject|release +spewer|1 +(noun)|vomiter|sick person|diseased person|sufferer +sphacelate|1 +(verb)|necrose|gangrene|mortify|waste|rot +sphacele|1 +(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus +sphacele calycina|1 +(noun)|pitcher sage|Lepechinia calycina|Sphacele calycina|shrub|bush +sphacelotheca|1 +(noun)|Sphacelotheca|genus Sphacelotheca|smut|smut fungus +sphacelotheca reiliana|1 +(noun)|head smut|Sphacelotheca reiliana|smut|smut fungus +sphacelus|2 +(noun)|gangrene|slough|pathology +(noun)|necrosis|mortification|gangrene|death +sphaeralcea|1 +(noun)|Sphaeralcea|genus Sphaeralcea|dilleniid dicot genus +sphaeralcea coccinea|1 +(noun)|prairie mallow|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow|false mallow +sphaeralcea fasciculata|1 +(noun)|chaparral mallow|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow +sphaeralcea remota|1 +(noun)|wild hollyhock|Iliamna remota|Sphaeralcea remota|mallow +sphaeriaceae|1 +(noun)|Sphaeriaceae|family Sphaeriaceae|fungus family +sphaeriales|1 +(noun)|Sphaeriales|order Sphaeriales|fungus order +sphaerobolaceae|1 +(noun)|Sphaerobolaceae|family Sphaerobolaceae|fungus family +sphaerocarpaceae|1 +(noun)|Sphaerocarpaceae|family Sphaerocarpaceae|moss family +sphaerocarpales|1 +(noun)|Sphaerocarpales|order Sphaerocarpales|plant order +sphaerocarpos|1 +(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus +sphaerocarpus|1 +(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus +sphagnales|1 +(noun)|Sphagnales|order Sphagnales|plant order +sphagnum|1 +(noun)|sphagnum moss|peat moss|bog moss|moss +sphagnum moss|1 +(noun)|sphagnum|peat moss|bog moss|moss +sphalerite|1 +(noun)|zinc blende|blende|mineral +sphecidae|1 +(noun)|Sphecidae|family Sphecidae|arthropod family +sphecius|1 +(noun)|Sphecius|genus Sphecius|arthropod genus +sphecius speciosis|1 +(noun)|cicada killer|Sphecius speciosis|digger wasp +sphecoid|1 +(noun)|sphecoid wasp|wasp +sphecoid wasp|1 +(noun)|sphecoid|wasp +sphecoidea|1 +(noun)|Sphecoidea|superfamily Sphecoidea|arthropod family +sphecotheres|1 +(noun)|Sphecotheres|genus Sphecotheres|bird genus +sphenion|1 +(noun)|craniometric point +spheniscidae|1 +(noun)|Spheniscidae|family Spheniscidae|bird family +sphenisciform seabird|1 +(noun)|seabird|sea bird|seafowl +sphenisciformes|1 +(noun)|Sphenisciformes|order Sphenisciformes|animal order +spheniscus|1 +(noun)|Spheniscus|genus Spheniscus|bird genus +spheniscus demersus|1 +(noun)|jackass penguin|Spheniscus demersus|penguin +sphenodon|1 +(noun)|Sphenodon|genus Sphenodon|reptile genus +sphenodon punctatum|1 +(noun)|tuatara|Sphenodon punctatum|diapsid|diapsid reptile +sphenoid|1 +(noun)|sphenoid bone|os sphenoidale|bone|os +sphenoid bone|1 +(noun)|sphenoid|os sphenoidale|bone|os +sphenoid fontanel|1 +(noun)|sphenoid fontanelle|sphenoidal fontanelle|sphenoidal fontanel|fontanelle|fontanel|soft spot +sphenoid fontanelle|1 +(noun)|sphenoid fontanel|sphenoidal fontanelle|sphenoidal fontanel|fontanelle|fontanel|soft spot +sphenoidal fontanel|1 +(noun)|sphenoid fontanelle|sphenoid fontanel|sphenoidal fontanelle|fontanelle|fontanel|soft spot +sphenoidal fontanelle|1 +(noun)|sphenoid fontanelle|sphenoid fontanel|sphenoidal fontanel|fontanelle|fontanel|soft spot +sphenopsida|1 +(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class +sphere|7 +(noun)|domain|area|orbit|field|arena|environment +(noun)|artifact|artefact +(noun)|sphere of influence|geographical area|geographic area|geographical region|geographic region +(noun)|sector|aspect|facet +(noun)|round shape +(noun)|round shape +(noun)|celestial sphere|empyrean|firmament|heavens|vault of heaven|welkin|surface +sphere of influence|1 +(noun)|sphere|geographical area|geographic area|geographical region|geographic region +spheric|1 +(adj)|ball-shaped|global|globose|globular|orbicular|spherical|round |circular +spherical|2 +(adj)|spherical |round shape +(adj)|ball-shaped|global|globose|globular|orbicular|spheric|round |circular +spherical aberration|1 +(noun)|aberration|distortion|optical aberration +spherical angle|1 +(noun)|angle +spherical geometry|1 +(noun)|geometry +spherical polygon|1 +(noun)|polygon|polygonal shape +spherical triangle|1 +(noun)|spherical polygon +spherical trigonometry|1 +(noun)|trigonometry|trig +sphericalness|1 +(noun)|sphericity|globosity|globularness|rotundity|roundness +sphericity|1 +(noun)|sphericalness|globosity|globularness|rotundity|roundness +spherocyte|1 +(noun)|red blood cell|RBC|erythrocyte +spheroid|1 +(noun)|ellipsoid of revolution|round shape +spheroid joint|1 +(noun)|ball-and-socket joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint|articulatio synovialis|diarthrosis +spheroidal|1 +(adj)|ellipsoid|ellipsoidal|non-circular|rounded +spherometer|1 +(noun)|measuring instrument|measuring system|measuring device +spherule|1 +(noun)|ball|globe|orb +sphincter|1 +(noun)|anatomical sphincter|sphincter muscle|muscle|musculus +sphincter ani|1 +(noun)|anal sphincter|musculus sphincter ani|sphincter|anatomical sphincter|sphincter muscle +sphincter muscle|1 +(noun)|sphincter|anatomical sphincter|muscle|musculus +sphingid|1 +(noun)|hawkmoth|hawk moth|sphinx moth|hummingbird moth|moth +sphingidae|1 +(noun)|Sphingidae|family Sphingidae|arthropod family +sphingine|1 +(adj)|statue +sphinx|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Sphinx|mythical monster|mythical creature +(noun)|statue +sphinx moth|1 +(noun)|hawkmoth|hawk moth|sphingid|hummingbird moth|moth +sphygmomanometer|1 +(noun)|pressure gauge|pressure gage +sphyraena|1 +(noun)|Sphyraena|genus Sphyraena|fish genus +sphyraena barracuda|1 +(noun)|great barracuda|Sphyraena barracuda|barracuda +sphyraenidae|1 +(noun)|Sphyraenidae|family Sphyraenidae|fish family +sphyrapicus|1 +(noun)|Sphyrapicus|genus Sphyrapicus|bird genus +sphyrapicus varius|1 +(noun)|yellow-bellied sapsucker|Sphyrapicus varius|sapsucker +sphyrapicus varius ruber|1 +(noun)|red-breasted sapsucker|Sphyrapicus varius ruber|sapsucker +sphyrna|1 +(noun)|Sphyrna|genus Sphyrna|fish genus +sphyrna tiburo|1 +(noun)|shovelhead|bonnethead|bonnet shark|Sphyrna tiburo|hammerhead|hammerhead shark +sphyrna tudes|1 +(noun)|smalleye hammerhead|Sphyrna tudes|hammerhead|hammerhead shark +sphyrna zygaena|1 +(noun)|smooth hammerhead|Sphyrna zygaena|hammerhead|hammerhead shark +sphyrnidae|1 +(noun)|Sphyrnidae|family Sphyrnidae|fish family +spic|2 +(adj)|immaculate|speckless|spick-and-span|spic-and-span|spick|spotless|clean +(noun)|spik|spick|Latin American|Spanish American +spic-and-span|2 +(adj)|brand-new|bran-new|spick-and-span|new +(adj)|immaculate|speckless|spick-and-span|spic|spick|spotless|clean +spica|1 +(noun)|Spica|star +spicate|1 +(adj)|inflorescence +spiccato|1 +(noun)|spiccato bowing|bowing +spiccato bowing|1 +(noun)|spiccato|bowing +spice|5 +(noun)|preservative +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|spiciness|spicery|taste property +(verb)|spice up|change|alter|modify +(verb)|zest|spice up|season|flavor|flavour +spice bush|2 +(noun)|spicebush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +(noun)|spicebush|California allspice|Calycanthus occidentalis|allspice +spice cake|1 +(noun)|cake +spice cookie|1 +(noun)|cookie|cooky|biscuit +spice islands|1 +(noun)|Moluccas|Spice Islands|island +spice rack|1 +(noun)|rack|stand +spice tree|2 +(noun)|angiospermous tree|flowering tree +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +spice up|2 +(verb)|zest|spice|season|flavor|flavour +(verb)|spice|change|alter|modify +spiceberry|2 +(noun)|coralberry|Ardisia crenata|shrub|bush +(noun)|wintergreen|boxberry|checkerberry|teaberry|berry +spicebush|2 +(noun)|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub|bush +(noun)|California allspice|Calycanthus occidentalis|allspice +spicemill|1 +(noun)|mill|grinder +spicery|1 +(noun)|spiciness|spice|taste property +spicily|1 +(adv)|piquantly +spiciness|2 +(noun)|spice|spicery|taste property +(noun)|gaminess|raciness|ribaldry|indelicacy +spick|2 +(adj)|immaculate|speckless|spick-and-span|spic-and-span|spic|spotless|clean +(noun)|spic|spik|Latin American|Spanish American +spick-and-span|2 +(adj)|brand-new|bran-new|spic-and-span|new +(adj)|immaculate|speckless|spic-and-span|spic|spick|spotless|clean +spicule|1 +(noun)|spiculum|process|outgrowth|appendage +spiculum|1 +(noun)|spicule|process|outgrowth|appendage +spicy|3 +(adj)|piquant|savory|savoury|zesty|tasteful +(adj)|blue|gamy|gamey|juicy|naughty|racy|risque|sexy +(adj)|gingery|hot|peppery|pungent +spider|3 +(noun)|arachnid|arachnoid +(noun)|wanderer|program|programme|computer program|computer programme +(noun)|frying pan|frypan|skillet +spider's web|2 +(noun)|spider web|web|entanglement +(noun)|spider web|web +spider angioma|1 +(noun)|spider nevus|vascular spider|angioma +spider brake|1 +(noun)|spider fern|Pteris multifida|fern +spider crab|1 +(noun)|crab +spider fern|2 +(noun)|ribbon fern|Pteris serrulata|fern +(noun)|spider brake|Pteris multifida|fern +spider flower|2 +(noun)|spider plant|Cleome hassleriana|spiderflower|cleome +(noun)|spiderflower|cleome|herb|herbaceous plant +spider mite|1 +(noun)|tetranychid|mite +spider monkey|1 +(noun)|Ateles geoffroyi|New World monkey|platyrrhine +spider nevus|1 +(noun)|spider angioma|vascular spider|angioma +spider orchid|3 +(noun)|orchid|orchidaceous plant +(noun)|Brassia verrucosa|orchid|orchidaceous plant +(noun)|Brassia lawrenceana|orchid|orchidaceous plant +spider plant|1 +(noun)|spider flower|Cleome hassleriana|spiderflower|cleome +spider web|2 +(noun)|spider's web|web|entanglement +(noun)|spider's web|web +spiderflower|1 +(noun)|cleome|herb|herbaceous plant +spiderlike|1 +(adj)|arachnoid|arachnidian|spidery|spiderly +spiderly|1 +(adj)|arachnoid|arachnidian|spidery|spiderlike +spiderwort|1 +(noun)|dayflower|herb|herbaceous plant +spiderwort family|1 +(noun)|Commelinaceae|family Commelinaceae|monocot family|liliopsid family +spidery|1 +(adj)|arachnoid|arachnidian|spiderlike|spiderly +spiegel|1 +(noun)|spiegeleisen|spiegel iron|pig iron +spiegel iron|1 +(noun)|spiegeleisen|spiegel|pig iron +spiegeleisen|1 +(noun)|spiegel|spiegel iron|pig iron +spiel|3 +(noun)|patter|line of gab|line +(verb)|play|re-create +(verb)|talk|speak +spiel off|1 +(verb)|rattle down|rattle off|reel off|roll off|recite +spielberg|1 +(noun)|Spielberg|Steven Spielberg|film maker|filmmaker|film producer|movie maker +spielmeyer-vogt disease|1 +(noun)|Spielmeyer-Vogt disease|juvenile amaurotic idiocy|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +spiff|1 +(noun)|attractiveness +spiff up|1 +(verb)|spruce up|spruce|titivate|tittivate|smarten up|slick up|beautify|embellish|prettify +spiffed up|1 +(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|togged up|clothed |clad +spiffing|1 +(adj)|superior +spiffy|1 +(adj)|dapper|dashing|jaunty|natty|raffish|rakish|smart|snappy|spruce|fashionable |stylish +spigot|2 +(noun)|water faucet|water tap|tap|hydrant|faucet|plumbing fixture +(noun)|tap|plug|stopper|stopple +spik|1 +(noun)|spic|spick|Latin American|Spanish American +spike|15 +(noun)|electrical discharge +(noun)|sports equipment|sporting goods +(noun)|ear|capitulum|fruit +(noun)|inflorescence +(noun)|rise +(noun)|projection +(noun)|implement +(noun)|holding device +(noun)|nail +(verb)|banish|relegate|bar +(verb)|transfix|impale|empale|pierce|thrust +(verb)|fasten|fix|secure +(verb)|spike out|develop +(verb)|lace|fortify|change|alter|modify +(verb)|increase +spike arrester|1 +(noun)|surge suppressor|surge protector|spike suppressor|lightning arrester|suppressor|suppresser +spike heath|1 +(noun)|Bruckenthalia spiculifolia|heath +spike heel|1 +(noun)|stiletto heel|heel +spike lavender|1 +(noun)|French lavender|Lavandula latifolia|lavender +spike lavender oil|1 +(noun)|spike oil|oil +spike lee|1 +(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker|filmmaker|film producer|movie maker +spike mike|1 +(noun)|microphone|mike +spike moss|2 +(noun)|spikemoss|little club moss|club moss|club-moss|lycopod|Selaginella|genus Selaginella +(noun)| +spike oil|1 +(noun)|spike lavender oil|oil +spike out|1 +(verb)|spike|develop +spike rush|1 +(noun)|sedge +spike suppressor|1 +(noun)|surge suppressor|surge protector|spike arrester|lightning arrester|suppressor|suppresser +spiked|3 +(adj)|pointed +(adj)|pointed +(adj)|laced|alcoholic +spiked loosestrife|1 +(noun)|purple loosestrife|Lythrum salicaria|loosestrife +spikelet|1 +(noun)|spike +spikelike|1 +(adj)|pointed +spikemoss|1 +(noun)|spike moss|little club moss|club moss|club-moss|lycopod|Selaginella|genus Selaginella +spikenard|1 +(noun)|nard|cream|ointment|emollient +spiky|1 +(adj)|peaky|high |high-pitched +spile|2 +(noun)|pile|piling|stilt|column|pillar +(noun)|bung|plug|stopper|stopple +spill|9 +(noun)|liquid +(noun)|spillway|wasteweir|conduit +(noun)|spillage|release|flow|stream +(noun)|tumble|fall|slip|trip +(verb)|slop|splatter|move|displace +(verb)|run out|run|flow|feed|course +(verb)|shed|disgorge|move|displace +(verb)|shed|pour forth|pour +(verb)|talk|tell +spill out|1 +(verb)|spill over|pour out|pour|swarm|stream|teem|pullulate +spill over|2 +(verb)|bubble over|overflow|seethe|boil +(verb)|spill out|pour out|pour|swarm|stream|teem|pullulate +spill the beans|1 +(verb)|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +spillage|2 +(noun)|indefinite quantity +(noun)|spill|release|flow|stream +spillane|1 +(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer|author +spiller|2 +(noun)|shedder|attacker|aggressor|assailant|assaulter +(noun)|trawl|trawl line|setline|trotline|fishing line +spillikin|1 +(noun)|jackstraw|strip +spillikins|2 +(noun)|jackstraws|child's game +(noun)|jackstraw|spillikin|strip +spillover|1 +(noun)|consequence|effect|outcome|result|event|issue|upshot +spillway|1 +(noun)|spill|wasteweir|conduit +spilogale|1 +(noun)|Spilogale|genus Spilogale|mammal genus +spilogale putorius|1 +(noun)|spotted skunk|little spotted skunk|Spilogale putorius|skunk|polecat|wood pussy +spin|13 +(noun)|rotation|revolution|gyration +(noun)|twirl|twist|twisting|whirl|rotation|rotary motion +(noun)|drive|ride +(noun)|tailspin|acrobatics|aerobatics|stunting|stunt flying +(noun)|rendition|rendering|interpretation +(verb)|spin around|whirl|reel|gyrate|revolve|go around|rotate +(verb)|stream|well out +(verb)|whirl|birl|twirl|rotate|circumvolve +(verb)|fabricate|manufacture|cook up|make up|invent +(verb)|create from raw material|create from raw stuff +(verb)|twist|twine|distort +(verb)|present|represent|lay out +(verb)|spin out|prolong|protract|extend|draw out +spin-dry|1 +(verb)|dry|dry out +spin-off|1 +(noun)|by-product|byproduct|product|production +spin around|1 +(verb)|spin|whirl|reel|gyrate|revolve|go around|rotate +spin doctor|1 +(noun)|spinmeister|public relations person +spin drier|1 +(noun)|spin dryer|clothes dryer|clothes drier +spin dryer|1 +(noun)|spin drier|clothes dryer|clothes drier +spin off|1 +(verb)|bear|turn out +spin out|1 +(verb)|spin|prolong|protract|extend|draw out +spin the bottle|1 +(noun)|child's game +spin the plate|1 +(noun)|spin the platter|child's game +spin the platter|1 +(noun)|spin the plate|child's game +spina bifida|1 +(noun)|rachischisis|schistorrhachis|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +spinach|2 +(noun)|spinach plant|prickly-seeded spinach|Spinacia oleracea|vegetable +(noun)|greens|green|leafy vegetable +spinach beet|2 +(noun)|chard|Swiss chard|leaf beet|chard plant|Beta vulgaris cicla|beet|common beet|Beta vulgaris +(noun)|chard|Swiss chard|leaf beet|greens|green|leafy vegetable +spinach blight|1 +(noun)|blight +spinach mustard|1 +(noun)|tendergreen|Brassica perviridis|Brassica rapa perviridis|crucifer|cruciferous plant +spinach plant|1 +(noun)|spinach|prickly-seeded spinach|Spinacia oleracea|vegetable +spinacia|1 +(noun)|Spinacia|genus Spinacia|caryophylloid dicot genus +spinacia oleracea|1 +(noun)|spinach|spinach plant|prickly-seeded spinach|Spinacia oleracea|vegetable +spinal|2 +(adj)|skeletal structure +(noun)|spinal anesthesia|spinal anaesthesia|regional anesthesia|regional anaesthesia +spinal accessory|1 +(noun)|accessory nerve|nervus accessorius|eleventh cranial nerve|cranial nerve +spinal anaesthesia|1 +(noun)|spinal anesthesia|spinal|regional anesthesia|regional anaesthesia +spinal anaesthetic|1 +(noun)|spinal anesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +spinal anesthesia|1 +(noun)|spinal anaesthesia|spinal|regional anesthesia|regional anaesthesia +spinal anesthetic|1 +(noun)|spinal anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +spinal canal|1 +(noun)|vertebral canal|canalis vertebralis|duct|epithelial duct|canal|channel +spinal column|1 +(noun)|vertebral column|spine|backbone|back|rachis|skeletal structure +spinal cord|1 +(noun)|medulla spinalis|neural structure|funiculus +spinal curvature|1 +(noun)|abnormality|abnormalcy|abnormal condition +spinal fluid|1 +(noun)|cerebrospinal fluid|liquid body substance|bodily fluid|body fluid|humor|humour +spinal fusion|1 +(noun)|fusion|correction +spinal nerve|1 +(noun)|nervus spinalis|nerve|nervus +spinal puncture|1 +(noun)|lumbar puncture|spinal tap|centesis +spinal tap|1 +(noun)|lumbar puncture|spinal puncture|centesis +spinal vein|1 +(noun)|vena spinalis|vein|vena|venous blood vessel +spindle|3 +(noun)|fiber|fibre +(noun)|mandrel|mandril|arbor|rotating shaft|shaft +(noun)|stick +spindle-legged|1 +(adj)|spindle-shanked|thin |lean +spindle-shanked|1 +(adj)|spindle-legged|thin |lean +spindle-shaped|1 +(adj)|fusiform|cigar-shaped|pointed +spindle-tree family|1 +(noun)|Celastraceae|family Celastraceae|staff-tree family|dicot family|magnoliopsid family +spindle horn|1 +(noun)|forest goat|Pseudoryx nghetinhensis|bovid +spindle tree|1 +(noun)|spindleberry|spindleberry tree|shrub|bush +spindleberry|1 +(noun)|spindle tree|spindleberry tree|shrub|bush +spindleberry tree|1 +(noun)|spindle tree|spindleberry|shrub|bush +spindlelegs|2 +(noun)|spindleshanks|thin person|skin and bones +(noun)|spindleshanks|leg +spindleshanks|2 +(noun)|spindlelegs|thin person|skin and bones +(noun)|spindlelegs|leg +spindly|1 +(adj)|lank|thin |lean +spindrift|1 +(noun)|spoondrift|spray +spine|4 +(noun)|spinal column|vertebral column|backbone|back|rachis|skeletal structure +(noun)|spur|projection +(noun)|thorn|prickle|pricker|sticker|aculeus +(noun)|process|outgrowth|appendage +spinel|1 +(noun)|mineral +spinel ruby|1 +(noun)|ruby spinel|spinel +spineless|2 +(adj)|namby-pamby|wishy-washy|weak +(adj)|gutless +spinelessness|1 +(noun)|meekness +spinet|2 +(noun)|upright|upright piano +(noun)|harpsichord|cembalo +spinmeister|1 +(noun)|spin doctor|public relations person +spinnability|1 +(noun)|suitability|suitableness +spinnable|1 +(adj)|impressionable |impressible +spinnaker|1 +(noun)|headsail +spinner|3 +(noun)|spinster|thread maker|maker|shaper +(noun)|game equipment +(noun)|fisherman's lure|fish lure +spinney|1 +(noun)|brush|brushwood|coppice|copse|thicket +spinning|2 +(adj)|whirling|moving +(noun)|handicraft +spinning frame|1 +(noun)|spinning machine +spinning jenny|1 +(noun)|spinning machine +spinning machine|1 +(noun)|textile machine +spinning rod|1 +(noun)|fishing rod|fishing pole +spinning top|1 +(noun)|top|whirligig|teetotum|plaything|toy +spinning wheel|1 +(noun)|spinning machine +spinocerebellar disorder|1 +(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +spinose|1 +(adj)|rough +spinous|1 +(adj)|acanthoid|acanthous|pointed +spinoza|1 +(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher +spinster|2 +(noun)|old maid|unmarried woman +(noun)|spinner|thread maker|maker|shaper +spinsterhood|1 +(noun)|marital status +spinus|1 +(noun)|Spinus|genus Spinus|bird genus +spinus pinus|1 +(noun)|pine siskin|pine finch|Spinus pinus|finch +spinus tristis|1 +(noun)|New world goldfinch|goldfinch|yellowbird|Spinus tristis|finch +spiny|1 +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|thorny|armed +spiny-finned fish|1 +(noun)|acanthopterygian|teleost fish|teleost|teleostan +spiny-headed worm|1 +(noun)|acanthocephalan|worm +spiny anteater|2 +(noun)|echidna|anteater|monotreme|egg-laying mammal +(noun)|echidna|anteater|monotreme|egg-laying mammal +spiny dogfish|1 +(noun)|dogfish +spiny lizard|2 +(noun)|mountain devil|Moloch horridus|moloch +(noun)|iguanid|iguanid lizard +spiny lobster|2 +(noun)|langouste|rock lobster|crayfish|shellfish +(noun)|langouste|rock lobster|crawfish|crayfish|sea crawfish|lobster +spiny puffer|1 +(noun)|plectognath|plectognath fish +spiny softshell|1 +(noun)|Trionyx spiniferus|soft-shelled turtle|pancake turtle +spiny talinum|1 +(noun)|Talinum spinescens|flame flower|flame-flower|flameflower|Talinum aurantiacum +spipistrellus hesperus|1 +(noun)|western pipistrel|SPipistrellus hesperus|vespertilian bat|vespertilionid +spiracle|1 +(noun)|orifice|opening|porta +spiraea|3 +(noun)|spirea|Astilbe japonica|astilbe +(noun)|spirea|shrub|bush +(noun)|Spiraea|genus Spiraea|rosid dicot genus +spiraea prunifolia|1 +(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea|spiraea +spiral|9 +(adj)|coiling|helical|spiraling|volute|voluted|whorled|turbinate|coiled +(noun)|curve|curved shape +(noun)|helix|curve|curved shape +(noun)|volute|decoration|ornament|ornamentation +(noun)|coil|volute|whorl|helix|structure|construction +(noun)|rotation|rotary motion +(verb)|gyrate|coil|turn +(verb)|wind|curve +(verb)|corkscrew|turn +spiral bandage|1 +(noun)|oblique bandage +spiral galaxy|1 +(noun)|spiral nebula|galaxy|extragalactic nebula +spiral nebula|1 +(noun)|spiral galaxy|galaxy|extragalactic nebula +spiral ratchet screwdriver|1 +(noun)|ratchet screwdriver|screwdriver +spiral spring|1 +(noun)|spring +spiraling|1 +(adj)|coiling|helical|spiral|volute|voluted|whorled|turbinate|coiled +spirant|2 +(adj)|fricative|sibilant|soft +(noun)|fricative consonant|fricative|continuant consonant|continuant +spiranthes|1 +(noun)|Spiranthes|genus Spiranthes|monocot genus|liliopsid genus +spiranthes cernua|1 +(noun)|screw augur|Spiranthes cernua|ladies' tresses|lady's tresses +spiranthes porrifolia|1 +(noun)|western ladies' tresses|Spiranthes porrifolia|ladies' tresses|lady's tresses +spiranthes romanzoffiana|1 +(noun)|hooded ladies' tresses|Spiranthes romanzoffiana|ladies' tresses|lady's tresses +spiranthes spiralis|1 +(noun)|European ladies' tresses|Spiranthes spiralis|ladies' tresses|lady's tresses +spire|1 +(noun)|steeple|tower +spirea|2 +(noun)|spiraea|Astilbe japonica|astilbe +(noun)|spiraea|shrub|bush +spirilla|3 +(noun)|spirillum|eubacteria|eubacterium|true bacteria +(noun)|spirillum|eubacteria|eubacterium|true bacteria +(noun)|spirillum|eubacteria|eubacterium|true bacteria +spirillaceae|1 +(noun)|Spirillaceae|family Spirillaceae|bacteria family +spirillum|2 +(noun)|eubacteria|eubacterium|true bacteria +(noun)|spirilla|eubacteria|eubacterium|true bacteria +spirillum fever|1 +(noun)|sodoku|ratbite fever +spirillum minus|1 +(noun)|ratbite fever bacterium|Spirillum minus|spirillum +spirit|9 +(noun)|vital principle|life principle +(noun)|tone|feel|feeling|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|character|fiber|fibre +(noun)|disembodied spirit|spiritual being|supernatural being +(noun)|emotional state|emotion +(noun)|intent|purport|meaning|significance|signification|import +(noun)|liveliness|life|sprightliness|animation|spiritedness|invigoration|brio|vivification +(noun)|heart|disposition|temperament +(verb)|spirit up|inspirit|enliven|liven|liven up|invigorate|animate +spirit away|2 +(verb)|spirit off|take away|bear off|bear away|carry away|carry off +(verb)|take away|bear off|bear away|carry away|carry off +spirit gum|1 +(noun)|adhesive material|adhesive +spirit lamp|1 +(noun)|lamp +spirit level|1 +(noun)|level|indicator +spirit of turpentine|1 +(noun)|turpentine|oil of turpentine|turps|essential oil|volatile oil +spirit off|1 +(verb)|spirit away|take away|bear off|bear away|carry away|carry off +spirit rapper|1 +(noun)|psychic +spirit rapping|1 +(noun)|table rapping|table tapping|psychic phenomena|psychic phenomenon|parapsychology +spirit stove|1 +(noun)|stove|kitchen stove|range|kitchen range|cooking stove +spirit up|1 +(verb)|spirit|inspirit|enliven|liven|liven up|invigorate|animate +spirit world|1 +(noun)|imaginary place|mythical place +spirited|4 +(adj)|spirited |boisterous|knockabout|con brio|dashing|gallant|ebullient|exuberant|high-spirited|feisty|plucky|spunky|hoyden|hoydenish|tomboyish|impertinent|irreverent|pert|saucy|lively|racy|mettlesome|resilient|snappy|whipping|sprightly|vibrant|vivacious|zestful|yeasty|zesty|barmy|energetic|enthusiastic|lively +(adj)|bouncing|bouncy|peppy|zippy|lively +(adj)|game|gamy|gamey|gritty|mettlesome|spunky|brave |courageous|fearless +(adj)|enlivened|animated |alive +spiritedness|1 +(noun)|animation|invigoration|brio|vivification|activeness|activity +spiritise|1 +(verb)|spiritize|permeate|pervade|penetrate|interpenetrate|diffuse|imbue +spiritize|1 +(verb)|spiritise|permeate|pervade|penetrate|interpenetrate|diffuse|imbue +spiritless|3 +(adj)|spiritless |apathetic|bloodless|dispirited|listless|heartless|thin|dull|unenthusiastic +(adj)|unenthusiastic +(adj)|compliant|meek|submissive +spiritlessness|1 +(noun)|apathy|indifference|passivity|passiveness +spiritous|1 +(adj)|spirituous|alcoholic +spirits|9 +(noun)|liquor|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)|spirit|vital principle|life principle +(noun)|spirit|tone|feel|feeling|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|spirit|character|fiber|fibre +(noun)|spirit|disembodied spirit|spiritual being|supernatural being +(noun)|emotional state|spirit|emotion +(noun)|intent|purport|spirit|meaning|significance|signification|import +(noun)|liveliness|life|spirit|sprightliness|animation|spiritedness|invigoration|brio|vivification +(noun)|heart|spirit|disposition|temperament +spirits of ammonia|1 +(noun)|sal volatile|solution +spirits of wine|1 +(noun)|ethyl alcohol|ethanol|fermentation alcohol|grain alcohol +spiritual|5 +(adj)|religious|sacred +(adj)|unearthly|unworldly +(adj)|incorporeal |immaterial +(adj)|apparitional|ghostlike|ghostly|phantasmal|spectral|supernatural +(noun)|Negro spiritual|religious song +spiritual being|1 +(noun)|supernatural being|belief +spiritual bouquet|1 +(noun)|sympathy card +spiritual jewel|1 +(noun)|Shen-pao|Spiritual Jewel|Chinese deity +spiritual leader|1 +(noun)|leader +spiritual rebirth|1 +(noun)|conversion|rebirth|redemption|salvation +spiritual world|1 +(noun)|unseen|belief +spiritualisation|1 +(noun)|spiritualization|change of state +spiritualise|2 +(verb)|spiritualize|interpret|construe|see +(verb)|spiritualize|purify|purge|sanctify +spiritualism|3 +(noun)|theological doctrine|religious doctrine +(noun)|belief +(noun)|spirituality|otherworldliness|inwardness +spiritualist|2 +(adj)|spiritualistic|belief +(noun)|medium|psychic +spiritualistic|1 +(adj)|spiritualist|belief +spirituality|2 +(noun)|spiritualty|church property|property|belongings|holding|material possession +(noun)|spiritualism|otherworldliness|inwardness +spiritualization|1 +(noun)|spiritualisation|change of state +spiritualize|3 +(verb)|spiritualise|interpret|construe|see +(verb)|transfigure|glorify|change|alter|modify +(verb)|spiritualise|purify|purge|sanctify +spiritualty|1 +(noun)|spirituality|church property|property|belongings|holding|material possession +spirituous|1 +(adj)|spiritous|alcoholic +spirochaeta|1 +(noun)|Spirochaeta|genus Spirochaeta|bacteria genus +spirochaetaceae|1 +(noun)|Spirochaetaceae|family Spirochaetaceae|bacteria family +spirochaetales|1 +(noun)|Spirochaetales|order Spirochaetales|animal order +spirochaete|1 +(noun)|spirochete|eubacteria|eubacterium|true bacteria +spirochete|1 +(noun)|spirochaete|eubacteria|eubacterium|true bacteria +spirodela|1 +(noun)|Spirodela|genus Spirodela|monocot genus|liliopsid genus +spirodela polyrrhiza|1 +(noun)|great duckweed|water flaxseed|Spirodela polyrrhiza|duckweed +spirogram|1 +(noun)|recording +spirograph|1 +(noun)|measuring instrument|measuring system|measuring device +spirogyra|1 +(noun)|green algae|chlorophyte +spirometer|1 +(noun)|measuring instrument|measuring system|measuring device +spirometery|1 +(noun)|measurement|measuring|measure|mensuration +spironolactone|1 +(noun)|Aldactone|corticosteroid|corticoid|adrenal cortical steroid|antihypertensive|antihypertensive drug +spirt|3 +(noun)|jet|squirt|spurt|discharge|outpouring|run +(verb)|spurt|gush|spout|pour +(verb)|forge|spurt|travel|go|move|locomote +spirula|1 +(noun)|Spirula peronii|decapod +spirula peronii|1 +(noun)|spirula|Spirula peronii|decapod +spirulidae|1 +(noun)|Spirulidae|family Spirulidae|mollusk family +spit|8 +(noun)|tongue|cape|ness +(noun)|saliva|spittle|secretion +(noun)|skewer +(noun)|spitting|expectoration|expulsion|projection|ejection|forcing out +(verb)|ptyalize|ptyalise|spew|spue|expectorate|cough up|cough out|spit up|spit out|spit up|spit up +(verb)|spit out|utter|emit|let out|let loose +(verb)|sprinkle|spatter|patter|pitter-patter|rain|rain down +(verb)|skewer|pin +spit and polish|1 +(noun)|orderliness|order +spit curl|1 +(noun)|kiss curl|crimp +spit out|3 +(verb)|splutter|sputter|expectorate|cough up|cough out|spit up +(verb)|spit|utter|emit|let out|let loose +(verb)|expectorate|cough up|cough out|spit up|discharge|expel|eject|release +spit up|2 +(verb)|cough up|pony up|give +(verb)|expectorate|cough up|cough out|spit out|discharge|expel|eject|release +spitball|2 +(noun)|projectile|missile +(noun)|spitter|pitch|delivery +spite|3 +(noun)|malice|maliciousness|spitefulness|venom|malevolence|malignity +(noun)|cattiness|bitchiness|spitefulness|nastiness|malevolence|malevolency|malice +(verb)|hurt|wound|injure|bruise|offend|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +spiteful|1 +(adj)|despiteful|vindictive|malicious +spitefully|2 +(adv)|despitefully +(adv)|with spite +spitefulness|2 +(noun)|malice|maliciousness|spite|venom|malevolence|malignity +(noun)|cattiness|bitchiness|spite|nastiness|malevolence|malevolency|malice +spitfire|1 +(noun)|emotional person +spitsbergen|1 +(noun)|Spitsbergen|Spitzbergen|island +spitter|2 +(noun)|expectorator|person|individual|someone|somebody|mortal|human|soul +(noun)|spitball|pitch|delivery +spitting|1 +(noun)|spit|expectoration|expulsion|projection|ejection|forcing out +spitting cobra|1 +(noun)|black-necked cobra|Naja nigricollis|cobra +spitting image|1 +(noun)|likeness|alikeness|similitude +spitting snake|1 +(noun)|ringhals|rinkhals|Hemachatus haemachatus|elapid|elapid snake +spittle|1 +(noun)|saliva|spit|secretion +spittle insect|1 +(noun)|spittlebug|homopterous insect|homopteran +spittlebug|1 +(noun)|spittle insect|homopterous insect|homopteran +spittoon|1 +(noun)|cuspidor|receptacle +spitz|1 +(noun)|dog|domestic dog|Canis familiaris +spitzbergen|1 +(noun)|Spitsbergen|Spitzbergen|island +spiv|1 +(noun)|idler|loafer|do-nothing|layabout|bum +spizella|1 +(noun)|Spizella|genus Spizella|bird genus +spizella arborea|1 +(noun)|tree sparrow|Spizella arborea|New World sparrow +spizella passerina|1 +(noun)|chipping sparrow|Spizella passerina|New World sparrow +spizella pusilla|1 +(noun)|field sparrow|Spizella pusilla|New World sparrow +splanchnic|1 +(adj)|visceral +splanchnic nerve|1 +(noun)|nerve|nervus +splash|10 +(noun)|plash|noise +(noun)|dab|splatter|small indefinite quantity|small indefinite amount +(noun)|spatter|spattering|splashing|splattering|painting +(noun)|splashing|wetting +(verb)|sprinkle|splosh|scatter|sprinkle|dot|dust|disperse +(verb)|squelch|squish|splosh|slosh|slop|slog|footslog|plod|trudge|pad|tramp +(verb)|spatter|splatter|plash|splosh|swash|scatter|sprinkle|dot|dust|disperse +(verb)|overlay|cover +(verb)|splosh|slosh|slush|sound|go +(verb)|dirty|soil|begrime|grime|colly|bemire +splash-guard|2 +(noun)|mudguard|splash guard|fender|wing +(noun)| +splash around|1 +(verb)|dabble|paddle|play +splash guard|2 +(noun)|mudguard|splash-guard|fender|wing +(noun)| +splashboard|2 +(noun)|washboard|protective covering|protective cover|protection +(noun)|splasher|dashboard|protective covering|protective cover|protection +splashdown|1 +(noun)|landing +splashed|3 +(adj)|distributed +(adj)|dabbled|spattered|splashy|splattered|covered +(adj)|bespattered|spattered|besplashed|dirty |soiled|unclean +splasher|2 +(noun)|protective covering|protective cover|protection +(noun)|splashboard|dashboard|protective covering|protective cover|protection +splashiness|1 +(noun)|ostentation|ostentatiousness|pomposity|pompousness|pretentiousness|inflation|inelegance +splashing|2 +(noun)|spatter|spattering|splash|splattering|painting +(noun)|splash|wetting +splashy|2 +(adj)|showy|ostentatious |pretentious +(adj)|dabbled|spattered|splashed|splattered|covered +splat|5 +(noun)|splash|plash +(noun)|slat|spline +(verb)|sound|go +(verb)|flatten +(verb)|flatten|flatten out +splatter|4 +(noun)|spatter|spattering|splattering|sputter|splutter|sputtering|noise +(noun)|dab|splash|small indefinite quantity|small indefinite amount +(verb)|spill|slop|move|displace +(verb)|spatter|plash|splash|splosh|swash|scatter|sprinkle|dot|dust|disperse +splattered|1 +(adj)|dabbled|spattered|splashed|splashy|covered +splattering|2 +(noun)|spatter|spattering|splatter|sputter|splutter|sputtering|noise +(noun)|spatter|spattering|splash|splashing|painting +splay|5 +(adj)|splayfooted |splayfoot +(noun)|bevel|cant|chamfer +(verb)|unfold|spread|spread out|open +(verb)|turn out|spread out|rotate|turn +(verb)|dislocate|luxate|slip|move|displace +splayfoot|2 +(adj)|splayfooted |flat-footed|splay +(noun)|flatfoot|pes planus|foot|human foot|pes +splayfooted|1 +(adj)|splayfooted |splayfoot|flat-footed|splay +spleen|2 +(noun)|lien|lymphatic tissue|lymphoid tissue +(noun)|irascibility|short temper|quick temper|bad temper|ill temper +spleenwort|1 +(noun)|fern +splendid|2 +(adj)|glorious|resplendent|splendiferous|beautiful +(adj)|brilliant|glorious|magnificent|impressive +splendidly|2 +(adv)|magnificently|famously +(adv)|gorgeously|resplendently|magnificently +splendiferous|1 +(adj)|glorious|resplendent|splendid|beautiful +splendor|2 +(noun)|luster|lustre|brilliancy|splendour|brightness +(noun)|magnificence|brilliance|splendour|grandeur|grandness|elegance +splendour|2 +(noun)|luster|lustre|brilliancy|splendor|brightness +(noun)|magnificence|brilliance|splendor|grandeur|grandness|elegance +splenectomy|1 +(noun)|ablation|extirpation|cutting out|excision +splenetic|2 +(adj)|splenic|lienal|lymphatic tissue|lymphoid tissue +(adj)|bristly|prickly|waspish|ill-natured +splenic|1 +(adj)|splenetic|lienal|lymphatic tissue|lymphoid tissue +splenic artery|1 +(noun)|lienal artery|arteria lienalis|artery|arteria|arterial blood vessel +splenic fever|1 +(noun)|anthrax|zoonosis|zoonotic disease +splenic vein|1 +(noun)|vena lienalis|vein|vena|venous blood vessel +splenitis|1 +(noun)|inflammation|redness|rubor +splenomegaly|1 +(noun)|hypertrophy +splice|6 +(noun)|splicing|junction|conjunction +(noun)|lap joint|joint +(verb)|join|conjoin +(verb)|marry|wed|tie|officiate +(verb)|join|conjoin +(verb)|intertwine|twine|entwine|enlace|interlace|lace +splicer|3 +(noun)|woodworker|woodsman|woodman +(noun)|worker +(noun)|mechanical device +splicing|1 +(noun)|splice|junction|conjunction +spliff|1 +(noun)|joint|marijuana cigarette|reefer|stick|cigarette|cigaret|coffin nail|butt|fag +spline|2 +(noun)|strip +(noun)|slat|strip +splint|3 +(noun)|paring|sliver|shaving +(noun)|mechanical device +(verb)|treat|care for +splint bone|1 +(noun)|bone|os +splinter|4 +(noun)|sliver|flinders|bit|chip|flake|fleck|scrap +(verb)|secede|break away|separate|part|split up|split|break|break up +(verb)|sliver|divide|split|split up|separate|dissever|carve up +(verb)|sliver|break up|fragment|fragmentize|fragmentise +splinter group|1 +(noun)|faction|sect +splintered|1 +(adj)|shattered|smashed|broken +splintering|1 +(noun)|chip|chipping|breakage|break|breaking +splinterless|1 +(adj)|shatterproof|splinterproof|unbreakable +splinterproof|1 +(adj)|shatterproof|splinterless|unbreakable +splinters|2 +(noun)|matchwood|wood +(noun)|splinter|sliver|flinders|bit|chip|flake|fleck|scrap +splintery|2 +(adj)|breakable +(adj)|slivery|bit|chip|flake|fleck|scrap +split|21 +(adj)|divided +(adj)|disconnected|disunited|fragmented|divided +(adj)|broken +(adj)|cut|injured +(adj)|cut +(noun)|acrobatic stunt|acrobatic feat +(noun)|bottle|bottleful +(noun)|share|portion|part|percentage +(noun)|crack|cleft|crevice|fissure|scissure +(noun)|rip|rent|snag|tear|opening|gap +(noun)|Split|city|metropolis|urban center +(noun)|frozen dessert +(noun)|formation +(noun)|stock split|split up|increase|step-up +(noun)|rent|rip|tear +(noun)|schism|division +(verb)|divide|split up|separate|dissever|carve up|change integrity +(verb)|cleave|rive|tear +(verb)|separate|part|split up|break|break up +(verb)|separate|part|move +(verb)|burst|break open|break|separate|split up|fall apart|come apart +split-brain technique|1 +(noun)|brain surgery +split-half correlation|1 +(noun)|chance-half correlation|correlation coefficient|coefficient of correlation|correlation +split-pea|1 +(noun)|green pea|garden pea +split-pea soup|1 +(noun)|soup +split decision|1 +(noun)|decision +split down|1 +(noun)|reverse split|reverse stock split|decrease|diminution|reduction|step-down +split end|1 +(noun)|end +split infinitive|1 +(noun)|infinitive +split personality|1 +(noun)|multiple personality|dissociative disorder +split rail|1 +(noun)|fence rail|rail +split run|1 +(noun)|print run|press run +split second|1 +(noun)|blink of an eye|flash|heartbeat|instant|jiffy|trice|twinkling|wink|New York minute|moment|minute|second|bit +split shift|1 +(noun)|shift|work shift|duty period +split ticket|1 +(noun)|vote|ballot|voting|balloting +split up|5 +(noun)|split|stock split|increase|step-up +(verb)|divorce|separate|part|split|break|break up +(verb)|divide|split|separate|dissever|carve up|change integrity +(verb)|separate|part|split|break|break up +(verb)|break|separate|fall apart|come apart|change integrity +splitsaw|1 +(noun)|ripsaw|handsaw|carpenter's saw +splitsville|1 +(noun)|dissolution|breakup +splitter|3 +(noun)|worker +(noun)|divider|taxonomist|taxonomer|systematist +(noun)|rail-splitter|laborer|manual laborer|labourer|jack +splitting|1 +(adj)|rending|ripping|cacophonous |cacophonic +splitworm|1 +(noun)|potato moth|potato tuber moth|Phthorimaea operculella|gelechiid|gelechiid moth +splodge|1 +(noun)|blotch|splotch|smudge|spot|blot|daub|smear|smirch|slur +splosh|4 +(verb)|splash|slosh|slush|sound|go +(verb)|squelch|squish|splash|slosh|slop|slog|footslog|plod|trudge|pad|tramp +(verb)|sprinkle|splash|scatter|sprinkle|dot|dust|disperse +(verb)|spatter|splatter|plash|splash|swash|scatter|sprinkle|dot|dust|disperse +splotch|2 +(noun)|blotch|splodge|smudge|spot|blot|daub|smear|smirch|slur +(verb)|spot|fleck|blob|blot +splotched|1 +(adj)|blotched|blotchy|patterned +splurge|4 +(noun)|ostentation|fanfare +(noun)|orgy|binge|indulgence|indulging|pampering|humoring +(verb)|fling|consume|squander|waste|ware +(verb)|flaunt|flash|show off|ostentate|swank +splutter|4 +(noun)|spatter|spattering|splatter|splattering|sputter|sputtering|noise +(noun)|sputter|utterance|vocalization +(verb)|sputter|utter|emit|let out|let loose +(verb)|sputter|spit out|expectorate|cough up|cough out|spit up|spit out +spluttering|1 +(adj)|sputtering|noisy +spock|1 +(noun)|Spock|Benjamin Spock|baby doctor|pediatrician|pediatrist|paediatrician +spode|2 +(noun)|Spode|Josiah Spode|potter|thrower|ceramicist|ceramist +(noun)|Spode|porcelain +spodoptera|1 +(noun)|Spodoptera|genus Spodoptera|arthropod genus +spodoptera exigua|2 +(noun)|beet armyworm|Spodoptera exigua|caterpillar +(noun)|Spodoptera exigua|noctuid moth|noctuid|owlet moth +spodoptera frugiperda|2 +(noun)|fall armyworm|Spodoptera frugiperda|caterpillar +(noun)|Spodoptera frugiperda|noctuid moth|noctuid|owlet moth +spodumene|1 +(noun)|mineral +spoil|11 +(noun)|stolen property +(noun)|spoiling|spoilage|injury +(noun)|spoliation|spoilation|despoilation|despoilment|despoliation|plundering|pillage|pillaging +(verb)|botch|bumble|fumble|botch up|muff|blow|flub|screw up|ball up|muck up|bungle|fluff|bollix|bollix up|bollocks|bollocks up|bobble|mishandle|louse up|foul up|mess up|fuck up|fail|go wrong|miscarry +(verb)|go bad|decay +(verb)|corrupt|modify +(verb)|pamper|featherbed|cosset|cocker|baby|coddle|mollycoddle|indulge|treat|handle|do by +(verb)|thwart|queer|scotch|foil|cross|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +(verb)|itch|desire|want +(verb)|rape|despoil|violate|plunder|destroy|ruin +(verb)|mar|impair|deflower|vitiate|damage +spoilable|1 +(adj)|decayable|putrescible|putrefiable|perishable +spoilables|1 +(noun)|perishables|foodstuff|food product +spoilage|3 +(noun)|indefinite quantity +(noun)|spoiling|decay +(noun)|spoil|spoiling|injury +spoilation|1 +(noun)|spoil|spoliation|despoilation|despoilment|despoliation|plundering|pillage|pillaging +spoiled|3 +(adj)|coddled|pampered|soft +(adj)|spoilt|ill-natured +(adj)|bad|spoilt|stale +spoiler|5 +(noun)|campaigner|candidate|nominee +(noun)|plunderer|pillager|looter|despoiler|raider|freebooter|thief|stealer +(noun)|pamperer|coddler|mollycoddler|person|individual|someone|somebody|mortal|human|soul +(noun)|airfoil|aerofoil|control surface|surface +(noun)|airfoil|aerofoil|control surface|surface +spoiling|2 +(noun)|spoilage|decay +(noun)|spoil|spoilage|injury +spoils system|1 +(noun)|system|system of rules +spoilsport|1 +(noun)|killjoy|wet blanket|party pooper|unwelcome person|persona non grata +spoilt|3 +(adj)|spoiled|ill-natured +(adj)|bad|spoiled|stale +(adj)|blighted|destroyed +spokane|1 +(noun)|Spokane|city|metropolis|urban center +spoke|2 +(noun)|radius|support +(noun)|rundle|rung|crosspiece +spoken|2 +(adj)|spoken |expressed|uttered|verbalized|verbalised|oral|unwritten|verbal|viva-voce|word-of-mouth|articulate +(adj)|vocal|voiced +spoken communication|1 +(noun)|speech|speech communication|spoken language|language|voice communication|oral communication|auditory communication +spoken language|1 +(noun)|speech|speech communication|spoken communication|language|voice communication|oral communication|auditory communication +spoken word|1 +(noun)|vocable|word +spokesman|1 +(noun)|spokesperson|interpreter|representative|voice +spokesperson|1 +(noun)|interpreter|representative|voice|advocate|advocator|proponent|exponent +spokeswoman|1 +(noun)|spokesperson|interpreter|representative|voice +spoliation|2 +(noun)|destruction|devastation +(noun)|spoil|spoilation|despoilation|despoilment|despoliation|plundering|pillage|pillaging +spondaic|1 +(adj)|metrical foot|foot|metrical unit +spondaise|1 +(verb)|spondaize|verse|versify|poetize|poetise +spondaize|1 +(verb)|spondaise|verse|versify|poetize|poetise +spondee|1 +(noun)|metrical foot|foot|metrical unit +spondias|1 +(noun)|Spondias|genus Spondias|dicot genus|magnoliopsid genus +spondias mombin|1 +(noun)|hog plum|yellow mombin|yellow mombin tree|Spondias mombin|fruit tree +spondias purpurea|1 +(noun)|mombin|mombin tree|jocote|Spondias purpurea|fruit tree +spondylarthritis|1 +(noun)|arthritis +spondylitis|1 +(noun)|inflammation|redness|rubor +spondylolisthesis|1 +(noun)|dislocation +sponge|9 +(noun)|absorbent material|absorbent +(noun)|quick study|learner|scholar|assimilator +(noun)|leech|parasite|sponger|follower +(noun)|poriferan|parazoan|invertebrate +(verb)|wipe|pass over +(verb)|mooch|bum|cadge|grub|obtain +(verb)|erase|rub out|score out|efface|wipe off +(verb)|wipe up|mop up|mop +(verb)|gather|garner|collect|pull together +sponge bag|1 +(noun)|toilet bag|bag +sponge bath|1 +(noun)|ablution +sponge cake|1 +(noun)|cake +sponge cloth|1 +(noun)|fabric|cloth|material|textile +sponge down|2 +(verb)|sponge off|rub +(verb)|wash|lave +sponge genus|1 +(noun)|genus +sponge gourd|1 +(noun)|luffa|dishcloth gourd|rag gourd|strainer vine|vine +sponge mop|1 +(noun)|swab|swob|mop +sponge morel|1 +(noun)|common morel|Morchella esculenta|sponge mushroom|morel +sponge mushroom|1 +(noun)|common morel|Morchella esculenta|sponge morel|morel +sponge off|1 +(verb)|sponge down|rub +sponge on|1 +(verb)|put on|apply +sponge up|1 +(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +spongefly|1 +(noun)|spongillafly|neuropteron|neuropteran|neuropterous insect +spongelike|2 +(adj)|spongy|squashy|squishy|soft +(adj)|spongy|absorbent |absorptive +sponger|2 +(noun)|workman|working man|working person +(noun)|leech|parasite|sponge|follower +spongillafly|1 +(noun)|spongefly|neuropteron|neuropteran|neuropterous insect +sponginess|2 +(noun)|porosity|porousness +(noun)|compressibility|squeezability|softness +spongioblast|1 +(noun)|columnar cell|columnar epithelial cell +spongioblastoma|1 +(noun)|glioblastoma|brain tumor|brain tumour +spongy|2 +(adj)|squashy|squishy|spongelike|soft +(adj)|spongelike|absorbent |absorptive +sponsor|5 +(noun)|patron|supporter|benefactor|helper +(noun)|presenter|advocate|advocator|proponent|exponent +(verb)|patronize|patronise|support +(verb)|support|back up +(verb)|patronize|patronise|shop|shop at|buy at|frequent|support|back up +sponsorship|1 +(noun)|support +spontaneity|1 +(noun)|spontaneousness|naturalness +spontaneous|3 +(adj)|spontaneous |self-generated|impulsive|unprompted|intuitive|natural|instinctive +(adj)|ad-lib|unwritten|unscripted +(adj)|wild|unplanted +spontaneous abortion|1 +(noun)|miscarriage|stillbirth|abortion +spontaneous combustion|1 +(noun)|ignition +spontaneous generation|1 +(noun)|abiogenesis|autogenesis|autogeny|organic phenomenon +spontaneously|1 +(adv)|ad lib|ad libitum|impromptu +spontaneousness|1 +(noun)|spontaneity|naturalness +spoof|2 +(noun)|parody|lampoon|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(verb)|burlesque|parody|mock +spook|3 +(noun)|creep|weirdo|weirdie|weirdy|unpleasant person|disagreeable person +(noun)|ghost|shade|wraith|specter|spectre|apparition|phantom|phantasm|phantasma|shadow +(verb)|frighten|fright|scare|affright +spookily|1 +(adv)|eerily +spooky|2 +(adj)|eerie|eery|unnatural +(adj)|skittish|nervous|excitable +spool|3 +(noun)|bobbin|reel|winder +(verb)|transfer +(verb)|wind|wrap|roll|twine +spoon|5 +(noun)|cutlery|eating utensil|container +(noun)|spoonful|containerful +(noun)|wood +(verb)|remove|take|take away|withdraw +(verb)|smooch|snog|neck|make out +spoon bread|1 +(noun)|batter bread|cornbread +spoon food|1 +(noun)|soft diet|pap|diet +spoonbill|1 +(noun)|wading bird|wader +spoonbill catfish|1 +(noun)|flathead catfish|mudcat|goujon|shovelnose catfish|Pylodictus olivaris|catfish|siluriform fish +spoondrift|1 +(noun)|spindrift|spray +spoonerism|1 +(noun)|slip of the tongue +spoonfeed|2 +(verb)|feed|give +(verb)|teach|learn|instruct +spoonfeeding|2 +(noun)|feeding|alimentation +(noun)|teaching|instruction|pedagogy +spoonflower|1 +(noun)|yautia|tannia|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +spoonful|1 +(noun)|spoon|containerful +spoonleaf yucca|1 +(noun)|Adam's needle|Adam's needle-and-thread|needle palm|Yucca filamentosa|yucca +spoor|1 +(noun)|trail +sporadic|1 +(adj)|sporadic |fitful|spasmodic|irregular|unpredictable|isolated|scattered|stray|intermittent|periodic|discontinuous|noncontinuous|infrequent +sporadically|1 +(adv)|periodically +sporangiophore|1 +(noun)|stalk|stem +sporangium|1 +(noun)|spore case|spore sac|reproductive structure +sporanox|1 +(noun)|itraconazole|Sporanox|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +spore|1 +(noun)|reproductive structure +spore case|2 +(noun)|sporangium|spore sac|reproductive structure +(noun)|sporocarp|reproductive structure +spore mother cell|1 +(noun)|mother cell +spore sac|1 +(noun)|sporangium|spore case|reproductive structure +spork|1 +(noun)|Spork|cutlery|eating utensil +sporobolus|1 +(noun)|Sporobolus|genus Sporobolus|monocot genus|liliopsid genus +sporobolus cryptandrus|1 +(noun)|sand dropseed|Sporobolus cryptandrus|dropseed|drop-seed +sporobolus poiretii|1 +(noun)|smut grass|blackseed|carpet grass|Sporobolus poiretii|dropseed|drop-seed +sporocarp|1 +(noun)|spore case|reproductive structure +sporogenous|1 +(adj)|reproductive structure +sporophore|1 +(noun)|reproductive structure +sporophyl|1 +(noun)|sporophyll|leaf|leafage|foliage +sporophyll|1 +(noun)|sporophyl|leaf|leafage|foliage +sporophyte|1 +(noun)|plant|flora|plant life +sporotrichosis|1 +(noun)|fungal infection|mycosis +sporozoa|2 +(noun)|Sporozoa|class Sporozoa|class +(noun)|sporozoan|protozoan|protozoon +sporozoan|1 +(noun)|protozoan|protozoon +sporozoite|1 +(noun)|sporozoan +sporran|1 +(noun)|pouch +sport|8 +(noun)|athletics|diversion|recreation +(noun)|occupation|business|job|line of work|line +(noun)|sportsman|sportswoman|athlete|jock +(noun)|mutant|mutation|variation|organism|being +(noun)|vacationer|vacationist +(noun)|fun|play|wit|humor|humour|witticism|wittiness +(verb)|feature|boast|have|feature +(verb)|frolic|lark|rollick|skylark|disport|cavort|gambol|frisk|romp|run around|lark about|play +sport car|1 +(noun)|sports car|car|auto|automobile|machine|motorcar +sport coat|1 +(noun)|blazer|sport jacket|sports jacket|sports coat|jacket +sport fish|1 +(noun)|game fish|fish +sport jacket|1 +(noun)|blazer|sport coat|sports jacket|sports coat|jacket +sport kite|1 +(noun)|stunt kite|kite +sport shirt|1 +(noun)|polo shirt|shirt +sport utility|1 +(noun)|sport utility vehicle|S.U.V.|car|auto|automobile|machine|motorcar +sport utility vehicle|1 +(noun)|sport utility|S.U.V.|car|auto|automobile|machine|motorcar +sportfishing|1 +(noun)|fishing|outdoor sport|field sport +sporting|4 +(adj)|clean|sportsmanlike|fair |just +(adj)|diversion|recreation +(adj)|adventurous |adventuresome +(adj)|dissipated|betting|card-playing|gambling|indulgent +sporting chance|1 +(noun)|fair chance|probability|chance +sporting dog|1 +(noun)|gun dog|hunting dog +sporting goods|1 +(noun)|sports equipment|equipment +sporting house|1 +(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|building|edifice +sporting lady|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|lady of pleasure|woman of the street|woman|adult female +sporting life|1 +(noun)|gambling|gaming|play +sporting man|2 +(noun)|gambler +(noun)|outdoor man|amateur +sportive|2 +(adj)|diversion|recreation +(adj)|coltish|frolicsome|frolicky|rollicking|playful +sportiveness|1 +(noun)|friskiness|frolicsomeness|playfulness|fun +sports announcer|1 +(noun)|sportscaster|sports commentator|announcer +sports arena|1 +(noun)|field house|house +sports car|2 +(noun)|sport car|car|auto|automobile|machine|motorcar +(noun)|sport car|car|auto|automobile|machine|motorcar +sports coat|2 +(noun)|blazer|sport jacket|sport coat|sports jacket|jacket +(noun)|blazer|sport jacket|sport coat|sports jacket|jacket +sports commentator|1 +(noun)|sports announcer|sportscaster|announcer +sports desk|1 +(noun)|editorial department +sports editor|1 +(noun)|newspaper editor +sports equipment|1 +(noun)|sporting goods|equipment +sports fan|1 +(noun)|fan|enthusiast|partisan|partizan +sports implement|1 +(noun)|implement +sports jacket|2 +(noun)|blazer|sport jacket|sport coat|sports coat|jacket +(noun)|blazer|sport jacket|sport coat|sports coat|jacket +sports medicine|1 +(noun)|medicine|medical specialty +sports meeting|1 +(noun)|meet|athletic contest|athletic competition|athletics +sports page|1 +(noun)|page +sports section|1 +(noun)|section|subdivision +sports stadium|1 +(noun)|stadium|bowl|arena|structure|construction +sports writer|2 +(noun)|sportswriter|journalist +(noun)| +sportscast|1 +(verb)|air|send|broadcast|beam|transmit +sportscaster|1 +(noun)|sports announcer|sports commentator|announcer +sportsman|1 +(noun)|sport|sportswoman|athlete|jock +sportsmanlike|1 +(adj)|clean|sporting|fair |just +sportsmanship|1 +(noun)|fairness|equity +sportswear|1 +(noun)|athletic wear|activewear|attire|garb|dress +sportswoman|1 +(noun)|sport|sportsman|athlete|jock +sportswriter|1 +(noun)|sports writer|journalist +sporty|1 +(adj)|flashy|gaudy|jazzy|showy|colorful +sporulate|2 +(verb)|produce|bring forth +(verb)|convert +sporulation|1 +(noun)|monogenesis|asexual reproduction|agamogenesis +spot|19 +(noun)|topographic point|place|point +(noun)|section|subdivision +(noun)|smudge|blot|daub|smear|smirch|slur|blemish|defect|mar +(noun)|speckle|dapple|patch|fleck|maculation|marking +(noun)|section|subdivision +(noun)|point|characteristic +(noun)|place of business|business establishment +(noun)|position|post|berth|office|billet|place|situation|occupation|business|job|line of work|line +(noun)|touch|attack +(noun)|bit|small indefinite quantity|small indefinite amount +(noun)|pip|marker|marking|mark +(noun)|spotlight|lamp +(noun)|playing card +(noun)|blot|smear|smirch|stain|mistake|error|fault +(verb)|descry|espy|spy|sight +(verb)|blemish|dirty|soil|begrime|grime|colly|bemire +(verb)|fleck|blob|blot|change surface +(verb)|change +(verb)|mark +spot-check|1 +(verb)|see|check|insure|see to it|ensure|control|ascertain|assure +spot-weld|4 +(noun)|spot weld|weld +(noun)| +(verb)|spotweld|weld +(verb)| +spot-welder|2 +(noun)|spot welder|welder +(noun)| +spot-welding|2 +(noun)|spot welding|welding +(noun)| +spot check|1 +(noun)|check|checkout|check-out procedure +spot jam|1 +(verb)|jam|block +spot jamming|1 +(noun)|selective jamming|jamming|electronic jamming|jam +spot market|1 +(noun)|commodity exchange|commodities exchange|commodities market +spot pass|1 +(noun)|pass|passing play|passing game|passing +spot price|1 +(noun)|cash price|price|terms|damage +spot promote|1 +(verb)|promote|upgrade|advance|kick upstairs|raise|elevate +spot weld|2 +(noun)|spot-weld|weld +(noun)| +spot welder|2 +(noun)|spot-welder|welder +(noun)| +spot welding|2 +(noun)|spot-welding|welding +(noun)| +spotless|1 +(adj)|immaculate|speckless|spick-and-span|spic-and-span|spic|spick|clean +spotlessness|1 +(noun)|immaculateness|cleanness +spotlight|4 +(noun)|limelight|glare|public eye|prominence +(noun)|spot|lamp +(verb)|foreground|highlight|play up|bring out|set off +(verb)|light|illume|illumine|light up|illuminate +spots|15 +(noun)|musca volitans|muscae volitantes|floater|symptom +(noun)|topographic point|place|spot|point +(noun)|spot|section|subdivision +(noun)|smudge|spot|blot|daub|smear|smirch|slur|blemish|defect|mar +(noun)|spot|speckle|dapple|patch|fleck|maculation|marking +(noun)|spot|section|subdivision +(noun)|point|spot|characteristic +(noun)|spot|place of business|business establishment +(noun)|position|post|berth|office|spot|billet|place|situation|occupation|business|job|line of work|line +(noun)|touch|spot|attack +(noun)|spot|bit|small indefinite quantity|small indefinite amount +(noun)|spot|pip|marker|marking|mark +(noun)|spotlight|spot|lamp +(noun)|spot|playing card +(noun)|blot|smear|smirch|spot|stain|mistake|error|fault +spotsylvania|1 +(noun)|Spotsylvania|battle of Spotsylvania Courthouse|pitched battle +spotted|2 +(adj)|patched|patterned +(adj)|besmirched|damaged|flyblown|stained|sullied|tainted|tarnished|blemished +spotted antbird|1 +(noun)|Hylophylax naevioides|antbird|ant bird +spotted bat|1 +(noun)|jackass bat|Euderma maculata|vespertilian bat|vespertilionid +spotted black bass|1 +(noun)|Kentucky black bass|Micropterus pseudoplites|black bass +spotted coral root|1 +(noun)|Corallorhiza maculata|coral root +spotted cowbane|1 +(noun)|spotted hemlock|spotted water hemlock|poisonous plant +spotted crake|1 +(noun)|Porzana porzana|crake +spotted cranesbill|1 +(noun)|wild geranium|Geranium maculatum|cranesbill|crane's bill +spotted dick|1 +(noun)|suet pudding +spotted eagle ray|1 +(noun)|spotted ray|Aetobatus narinari|eagle ray +spotted fever|1 +(noun)|rickettsial disease|rickettsiosis +spotted flycatcher|1 +(noun)|Muscicapa striata|Muscicapa grisola|Old World flycatcher|true flycatcher|flycatcher +spotted gum|1 +(noun)|Eucalyptus maculata|eucalyptus|eucalypt|eucalyptus tree +spotted hemlock|1 +(noun)|spotted cowbane|spotted water hemlock|poisonous plant +spotted hyena|1 +(noun)|laughing hyena|Crocuta crocuta|hyena|hyaena +spotted joe-pye weed|1 +(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb|herbaceous plant +spotted lynx|1 +(noun)|Lynx pardina|lynx|catamount +spotted owl|1 +(noun)|Strix occidentalis|owl|bird of Minerva|bird of night|hooter +spotted ray|1 +(noun)|spotted eagle ray|Aetobatus narinari|eagle ray +spotted salamander|2 +(noun)|Ambystoma maculatum|ambystomid|ambystomid salamander +(noun)|fire salamander|Salamandra maculosa|salamander +spotted sandpiper|1 +(noun)|Actitis macularia|sandpiper +spotted sea trout|1 +(noun)|spotted weakfish|spotted squeateague|Cynoscion nebulosus|sea trout +spotted skunk|1 +(noun)|little spotted skunk|Spilogale putorius|skunk|polecat|wood pussy +spotted squeateague|1 +(noun)|spotted weakfish|spotted sea trout|Cynoscion nebulosus|sea trout +spotted sunfish|1 +(noun)|stumpknocker|Lepomis punctatus|freshwater bream|bream +spotted water hemlock|1 +(noun)|spotted cowbane|spotted hemlock|poisonous plant +spotted weakfish|1 +(noun)|spotted sea trout|spotted squeateague|Cynoscion nebulosus|sea trout +spotter|4 +(noun)|employee +(noun)|employee +(noun)|lookout|lookout man|sentinel|sentry|watch|scout|picket|watchman|watcher|security guard +(noun)|finder|discoverer|perceiver|observer|beholder +spotting|2 +(noun)|staining|maculation|soiling|soilure|dirtying +(noun)|detection|catching|espial|spying|discovery|find|uncovering +spotty|1 +(adj)|uneven|inconsistent +spotweld|1 +(verb)|spot-weld|weld +spousal|2 +(adj)|bridal|nuptial|ceremony|ceremonial|ceremonial occasion|observance +(adj)|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +spousal equivalent|1 +(noun)|domestic partner|significant other|spouse equivalent|person|individual|someone|somebody|mortal|human|soul +spousal relationship|1 +(noun)|marriage|matrimony|union|wedlock|marital status +spouse|1 +(noun)|partner|married person|mate|better half|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent +spouse equivalent|1 +(noun)|domestic partner|significant other|spousal equivalent|person|individual|someone|somebody|mortal|human|soul +spout|3 +(noun)|opening +(verb)|spurt|spirt|gush|pour +(verb)|rant|mouth off|jabber|rabbit on|rave|talk|speak|utter|mouth|verbalize|verbalise +spouter|3 +(noun)|chatterer|babbler|prater|chatterbox|magpie|speaker|talker|utterer|verbalizer|verbaliser +(noun)|oil well|oiler +(noun)|whale +spouting|1 +(adj)|jetting|spurting|squirting|running +sprachgefuhl|1 +(noun)|feeling|intuitive feeling +sprag|2 +(noun)|chock|wedge +(noun)|pitprop|prop +spraguea|1 +(noun)|Spraguea|genus Spraguea|caryophylloid dicot genus +spraguea umbellatum|1 +(noun)|pussy-paw|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower|wild flower +sprain|2 +(noun)|wrench|twist|pull +(verb)|twist|wrench|turn|wrick|rick|injure|wound +sprat|2 +(noun)|brisling|herring +(noun)|brisling|Clupea sprattus|sardine +sprawl|3 +(noun)|sprawling|position|posture|attitude +(verb)|sit|sit down|lie +(verb)|straggle|spread|distribute +sprawled|1 +(adj)|sprawling|sprawly|extended +sprawler|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +sprawling|3 +(adj)|sprawled|sprawly|extended +(adj)|straggling|straggly|untidy +(noun)|sprawl|position|posture|attitude +sprawly|1 +(adj)|sprawled|sprawling|extended +spray|9 +(noun)|pesticide +(noun)|atomizer|atomiser|sprayer|dispenser +(noun)|spraying|small indefinite quantity|small indefinite amount +(noun)|flower arrangement +(noun)|water vapor|water vapour +(noun)|jet|squirt|spurt|spirt +(verb)|scatter|sprinkle|dot|dust|disperse +(verb)|scatter|sprinkle|dot|dust|disperse +(verb)|cover +spray-dried|1 +(adj)|dry|dry out +spray-dry|1 +(verb)|dry|dry out +spray can|1 +(noun)|aerosol|aerosol container|aerosol can|aerosol bomb|dispenser +spray gun|1 +(noun)|applicator|applier +spray paint|1 +(noun)|paint +spray painting|1 +(noun)|painting|spraying +sprayer|2 +(noun)|laborer|manual laborer|labourer|jack +(noun)|atomizer|atomiser|spray|dispenser +spraying|3 +(noun)|crop-dusting|dispersion|dispersal|dissemination|diffusion +(noun)|spray|small indefinite quantity|small indefinite amount +(noun)|application|coating|covering +spread|22 +(adj)|dispersed|distributed +(adj)|prepared +(adj)|outspread|extended +(noun)|spreading|change of location|travel +(noun)|gap|disparity +(noun)|ranch|cattle ranch|cattle farm|farm +(noun)|scatter|distribution|dispersion +(noun)|paste|condiment +(noun)|banquet|feast|meal|repast +(noun)|spread head|spreadhead|facing pages|page +(noun)|girth +(noun)|bedspread|bedcover|bed cover|bed covering|counterpane|bedclothes|bed clothing|bedding +(noun)|spreading|extension +(verb)|distribute|spread out|spread out|spread out|spread out +(verb)|propagate|move +(verb)|overspread|cover|extend +(verb)|unfold|spread out|open|undo +(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|diffuse|disperse|pass around|publicize|publicise|air|bare +(verb)|go around|circulate|travel|go|move|locomote +(verb)|scatter|spread out|circulate|pass around|pass on|distribute +(verb)|diffuse|spread out|fan out|distribute +(verb)|cover +spread-eagle|7 +(adj)|extended +(verb)|stretch|extend +(verb)|range|straddle +(verb)|figure skate +(verb)|sprawl +(verb)|spreadeagle|rout|beat|beat out|crush|shell|trounce|vanquish +(verb)| +spread-out|1 +(adj)|fanned|distributed +spread eagle|2 +(noun)|emblem|allegory +(noun)|figure +spread head|2 +(noun)|spread|spreadhead|facing pages|page +(noun)| +spread out|7 +(verb)|diffuse|spread|fan out|spread|distribute +(verb)|string out|arrange|set up +(verb)|spread|scatter|circulate|pass around|pass on|distribute +(verb)|expand|grow +(verb)|turn out|splay|rotate|turn +(verb)|disperse|dissipate|scatter|separate|part|split +(verb)|unfold|spread|open|undo +spread over|1 +(verb)|cover|touch|adjoin|meet|contact +spreadeagle|1 +(verb)|spread-eagle|rout|beat|beat out|crush|shell|trounce|vanquish +spreader|2 +(noun)|hand tool +(noun)|broadcaster|mechanical device +spreadhead|1 +(noun)|spread|spread head|facing pages|page +spreading|5 +(adj)|wide-spreading|wide |broad +(adj)|diffusing|diffusive|dispersive|disseminative|disseminating|scattering|distributive +(noun)|spread|change of location|travel +(noun)|dissemination|airing|public exposure|transmission +(noun)|spread|extension +spreading bellflower|1 +(noun)|tussock bellflower|Campanula carpatica|campanula|bellflower +spreading dogbane|1 +(noun)|common dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane +spreading factor|1 +(noun)|hyaluronidase|Hyazyme|enzyme +spreading fleabane|1 +(noun)|Erigeron divergens|fleabane +spreading pogonia|1 +(noun)|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid|orchidaceous plant +spreadsheet|1 +(noun)|program|programme|computer program|computer programme +sprechgesang|1 +(noun)|sprechstimme|voice|vocalization|vocalisation|phonation|vox +sprechstimme|1 +(noun)|sprechgesang|voice|vocalization|vocalisation|phonation|vox +spree|2 +(noun)|fling|intemperance|intemperateness|self-indulgence +(verb)|gratify|pander|indulge +spree killer|1 +(noun)|serial killer|serial murderer +sprig|2 +(noun)|branchlet|twig|branch +(noun)|decoration|ornament|ornamentation +sprig tail|2 +(noun)|sharp-tailed grouse|sprigtail|Pedioecetes phasianellus|grouse +(noun)| +sprigged|1 +(adj)|patterned +sprigger|1 +(noun)|stripper|stemmer|worker +sprightliness|1 +(noun)|liveliness|life|spirit|animation|spiritedness|invigoration|brio|vivification +sprightly|1 +(adj)|spirited +sprigtail|1 +(noun)|sharp-tailed grouse|sprig tail|Pedioecetes phasianellus|grouse +spring|12 +(noun)|springtime|season|time of year +(noun)|fountain|outflow|outpouring|natural spring|geological formation|formation +(noun)|elastic device +(noun)|leap|leaping|saltation|bound|bounce|jump|jumping +(noun)|give|springiness|elasticity|snap +(noun)|beginning|origin|root|rootage|source +(verb)|jump|leap|bound|move +(verb)|form|take form|take shape|become +(verb)|bounce|resile|take a hop|bound|rebound|recoil|reverberate|ricochet|jump|leap|bound +(verb)|produce|bring on|bring out +(verb)|grow|develop|produce|get|acquire +(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +spring-clean|1 +(verb)|houseclean|clean house|clean +spring-cleaning|1 +(noun)|cleaning|cleansing|cleanup +spring-loaded|1 +(adj)|elastic device +spring balance|1 +(noun)|spring scale|balance +spring beauty|1 +(noun)|Clatonia lanceolata|flower +spring break|1 +(noun)|respite|recess|break|time out +spring cankerworm|1 +(noun)|cankerworm +spring chicken|2 +(noun)|young person|youth|younker|juvenile|juvenile person +(noun)|chicken|Gallus gallus +spring cleavers|1 +(noun)|cleavers|clivers|goose grass|catchweed|Galium aparine|bedstraw +spring cress|1 +(noun)|Cardamine bulbosa|bittercress|bitter cress +spring equinox|1 +(noun)|vernal equinox|March equinox|equinox +spring frog|2 +(noun)|green frog|Rana clamitans|true frog|ranid +(noun)|leopard frog|Rana pipiens|true frog|ranid +spring gun|1 +(noun)|set gun|gun +spring heath|1 +(noun)|winter heath|Erica carnea|erica|true heath +spring mattress|1 +(noun)|mattress +spring onion|1 +(noun)|onion +spring peeper|1 +(noun)|Hyla crucifer|tree toad|tree frog|tree-frog +spring roll|1 +(noun)|egg roll|dish +spring scale|1 +(noun)|spring balance|balance +spring squill|1 +(noun)|Scilla verna|sea onion|scilla|squill +spring to mind|1 +(verb)|come to mind|appear +spring training|1 +(noun)|preseason +spring up|1 +(verb)|originate|arise|rise|develop|uprise|grow|become +spring vetch|2 +(noun)|Vicia sativa|vetch +(noun)|spring vetchling|Lathyrus vernus|vetchling +spring vetchling|1 +(noun)|spring vetch|Lathyrus vernus|vetchling +spring water|2 +(noun)|ground water|well water|water|H2O +(noun)|water +springboard|2 +(noun)|board +(noun)|jumping-off point|point of departure|beginning|start|commencement +springbok|1 +(noun)|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle +springbuck|1 +(noun)|springbok|Antidorcas marsupialis|Antidorcas euchore|gazelle +springer|3 +(noun)|impost|stone +(noun)|springing cow|cow|moo-cow +(noun)|springer spaniel|spaniel +springer spaniel|1 +(noun)|springer|spaniel +springfield|3 +(noun)|Springfield|capital of Illinois|state capital +(noun)|Springfield|city|metropolis|urban center +(noun)|Springfield|city|metropolis|urban center|Massachusetts|Bay State|Old Colony|MA +springiness|1 +(noun)|give|spring|elasticity|snap +springing cow|1 +(noun)|springer|cow|moo-cow +springless|1 +(adj)|inelastic +springlike|1 +(adj)|elastic +springtail|1 +(noun)|collembolan|insect +springtide|2 +(noun)|flush|gush|outpouring +(noun)|high tide|high water|highwater +springtime|1 +(noun)|spring|season|time of year +springy|1 +(adj)|bouncy|live|lively|resilient|whippy|elastic +sprinkle|6 +(noun)|scattering|sprinkling|shower|rain shower +(noun)|sprinkling|sparge|watering +(verb)|scatter|dot|dust|disperse|discharge +(verb)|splash|splosh|scatter|dot|dust|disperse +(verb)|spit|spatter|patter|pitter-patter|rain|rain down +(verb)|sparge|besprinkle|wet +sprinkled|1 +(adj)|besprent|wet +sprinkler|1 +(noun)|mechanical device +sprinkler system|1 +(noun)|system +sprinkles|3 +(noun)|jimmies|chocolate candy +(noun)|scattering|sprinkle|sprinkling|shower|rain shower +(noun)|sprinkle|sprinkling|sparge|watering +sprinkling|4 +(noun)|scattering|small indefinite quantity|small indefinite amount +(noun)|scattering|sprinkle|shower|rain shower +(noun)|aspersion|baptism +(noun)|sprinkle|sparge|watering +sprint|2 +(noun)|dash|run|running +(verb)|run +sprinter|1 +(noun)|runner +sprit|1 +(noun)|spar +sprite|1 +(noun)|fairy|faery|faerie|spiritual being|supernatural being +sprites|2 +(noun)|red sprites|atmospheric electricity +(noun)|fairy|faery|faerie|sprite|spiritual being|supernatural being +spritsail|1 +(noun)|fore-and-aft sail +spritz|3 +(noun)|jet|squirt|spurt|spirt +(verb)|squirt|force out|squeeze out|eject +(verb)|cover +spritzer|1 +(noun)|mixed drink +sprocket|3 +(noun)|roller +(noun)|sprocket wheel|wheel +(noun)|cog|tooth +sprocket wheel|1 +(noun)|sprocket|wheel +sprog|2 +(noun)|recruit +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +sprout|4 +(noun)|plant organ +(noun)|greens|green|leafy vegetable +(verb)|shoot|spud|germinate|pullulate|bourgeon|burgeon forth|grow +(verb)|stock|grow|develop|produce|get|acquire +sprouted|1 +(adj)|up +sprouting|1 +(noun)|germination|growth|growing|maturation|development|ontogeny|ontogenesis +spruce|5 +(adj)|dapper|dashing|jaunty|natty|raffish|rakish|smart|spiffy|snappy|fashionable |stylish +(noun)|wood +(noun)|conifer|coniferous tree +(verb)|spruce up|titivate|tittivate|smarten up|slick up|spiff up|beautify|embellish|prettify +(verb)|spruce up|slick up|smarten up|groom|neaten +spruce bark beetle|1 +(noun)|Dendroctonus rufipennis|bark beetle +spruce beer|1 +(noun)|brew|brewage +spruce gall aphid|1 +(noun)|Adelges abietis|adelgid +spruce grouse|1 +(noun)|Canachites canadensis|grouse +spruce pine|4 +(noun)|eastern hemlock|Canadian hemlock|Tsuga canadensis|hemlock|hemlock tree +(noun)|black spruce|Picea mariana|spruce +(noun)|shore pine|lodgepole|lodgepole pine|Pinus contorta|pine|pine tree|true pine +(noun)|Pinus glabra|pine|pine tree|true pine +spruce squirrel|1 +(noun)|American red squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel +spruce up|2 +(verb)|spruce|titivate|tittivate|smarten up|slick up|spiff up|beautify|embellish|prettify +(verb)|spruce|slick up|smarten up|groom|neaten +spruced up|1 +(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spiffed up|togged up|clothed |clad +sprucely|1 +(adv)|smartly|modishly +spruceness|1 +(noun)|neatness|tidiness +sprue|1 +(noun)|tropical sprue|disorder|upset +sprung rhythm|1 +(noun)|poetic rhythm|rhythmic pattern|prosody +spry|1 +(adj)|agile|nimble|quick|active +spud|4 +(noun)|potato|white potato|Irish potato|murphy|tater|root vegetable|solanaceous vegetable +(noun)|stump spud|hand shovel +(verb)|bore|drill +(verb)|shoot|germinate|pullulate|bourgeon|burgeon forth|sprout|grow +spue|2 +(verb)|spit|ptyalize|ptyalise|spew|expectorate|cough up|cough out|spit up|spit out +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +spume|2 +(noun)|foam|froth +(verb)|froth|suds|make|create +spumous|1 +(adj)|bubbling|foaming|foamy|frothing|spumy|sudsy|agitated +spumy|1 +(adj)|bubbling|foaming|foamy|frothing|spumous|sudsy|agitated +spun sugar|1 +(noun)|cotton candy|candyfloss|candy +spun yarn|1 +(noun)|small stuff +spunk|2 +(noun)|kindling|tinder|touchwood|punk|igniter|ignitor|lighter +(noun)|heart|mettle|nerve|courage|courageousness|bravery +spunky|2 +(adj)|feisty|plucky|spirited +(adj)|game|gamy|gamey|gritty|mettlesome|spirited|brave |courageous|fearless +spur|10 +(noun)|goad|goading|prod|prodding|urging|spurring|encouragement +(noun)|spine|projection +(noun)|plant process|enation +(noun)|gad|prod|goad +(noun)|branch line|spur track|line|railway line|rail line +(verb)|promote|advance|boost|further|encourage +(verb)|goad|encourage +(verb)|strike +(verb)|goad +(verb)|equip|fit|fit out|outfit +spur-of-the-moment|1 +(adj)|unprepared +spur blight|1 +(noun)|blight +spur gear|1 +(noun)|spur wheel|gear|gear wheel|cogwheel +spur track|1 +(noun)|branch line|spur|line|railway line|rail line +spur wheel|1 +(noun)|spur gear|gear|gear wheel|cogwheel +spurge|1 +(noun)|shrub|bush +spurge family|1 +(noun)|Euphorbiaceae|family Euphorbiaceae|rosid dicot family +spurge laurel|1 +(noun)|wood laurel|Daphne laureola|daphne +spurge nettle|1 +(noun)|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +spurious|3 +(adj)|specious|invalid +(adj)|bastard|bastardly|misbegot|misbegotten|illegitimate +(adj)|inauthentic|unauthentic|counterfeit |imitative +spurious correlation|1 +(noun)|correlation|correlational statistics +spurious wing|1 +(noun)|bastard wing|alula|feather|plume|plumage +spuriousness|1 +(noun)|falsity|falseness +spurn|1 +(verb)|reject|freeze off|scorn|pooh-pooh|disdain|turn down|refuse|decline +spurned|1 +(adj)|jilted|rejected|unloved +spurner|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +spurred gentian|1 +(noun)|gentian +spurring|1 +(noun)|goad|goading|prod|prodding|urging|spur|encouragement +spurt|3 +(noun)|jet|squirt|spirt|discharge|outpouring|run +(verb)|spirt|gush|spout|pour +(verb)|forge|spirt|travel|go|move|locomote +spurting|1 +(adj)|jetting|spouting|squirting|running +sputnik|1 +(noun)|satellite|artificial satellite|orbiter +sputter|7 +(noun)|spatter|spattering|splatter|splattering|splutter|sputtering|noise +(noun)|splutter|utterance|vocalization +(verb)|pop +(verb)|change|alter|modify +(verb)|clamber|scramble|shin|shinny|skin|struggle|climb +(verb)|splutter|utter|emit|let out|let loose +(verb)|splutter|spit out|expectorate|cough up|cough out|spit up|spit out +sputtering|2 +(adj)|spluttering|noisy +(noun)|spatter|spattering|splatter|splattering|sputter|splutter|noise +sputum|1 +(noun)|phlegm|mucus|mucous secretion|liquid body substance|bodily fluid|body fluid|humor|humour +sputum smear|1 +(noun)|lower respiratory tract smear|bronchoscopic smear|smear|cytologic smear|cytosmear +spy|5 +(noun)|undercover agent|secret agent|intelligence officer|intelligence agent|operative +(noun)|spectator|witness|viewer|watcher|looker +(verb)|descry|spot|espy|sight +(verb)|stag|snoop|sleuth|monitor|supervise|ride herd on +(verb)|investigate|inquire|enquire +spy satellite|1 +(noun)|satellite|artificial satellite|orbiter +spyeria|1 +(noun)|Spyeria|genus Spyeria|arthropod genus +spyglass|1 +(noun)|field glass|glass|refracting telescope +spyhole|1 +(noun)|peephole|hole +spying|3 +(noun)|watch|vigil +(noun)|undercover work|intelligence|intelligence activity|intelligence operation +(noun)|detection|catching|espial|spotting|discovery|find|uncovering +spymaster|1 +(noun)|master +sq ft|1 +(noun)|square foot|area unit|square measure +sq in|1 +(noun)|square inch|area unit|square measure +sq yd|1 +(noun)|square yard|area unit|square measure +squab|4 +(adj)|squabby|short +(noun)|dove|poultry +(noun)|sofa|couch|lounge +(noun)|pigeon +squabble|2 +(noun)|bicker|bickering|spat|tiff|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +(verb)|quibble|niggle|pettifog|bicker|brabble|argue|contend|debate|fence +squabby|1 +(adj)|squab|short +squad|2 +(noun)|army unit +(noun)|team|unit|social unit +squad car|1 +(noun)|cruiser|police cruiser|patrol car|police car|prowl car|car|auto|automobile|machine|motorcar +squad room|2 +(noun)|room +(noun)|room +squadron|3 +(noun)|cavalry +(noun)|air unit +(noun)|naval unit +squalid|2 +(adj)|seamy|seedy|sleazy|sordid|disreputable +(adj)|flyblown|sordid|dirty |soiled|unclean +squalidae|1 +(noun)|Squalidae|family Squalidae|fish family +squalidly|1 +(adv)|sordidly +squalidness|1 +(noun)|sordidness|squalor|dirtiness|uncleanness +squall|4 +(noun)|wind|air current|current of air +(verb)|waul|wawl|howl|ululate|wail|roar|yawl +(verb)|shout|shout out|cry|call|yell|scream|holler|hollo|utter|emit|let out|let loose +(verb)|blow +squall line|1 +(noun)|cold front|polar front +squalling|1 +(adj)|squally|unquiet +squally|2 +(adj)|squalling|unquiet +(adj)|stormy +squalor|1 +(noun)|sordidness|squalidness|dirtiness|uncleanness +squalus|1 +(noun)|Squalus|genus Squalus|fish genus +squalus acanthias|1 +(noun)|Atlantic spiny dogfish|Squalus acanthias|spiny dogfish +squalus suckleyi|1 +(noun)|Pacific spiny dogfish|Squalus suckleyi|spiny dogfish +squama|1 +(noun)|scale +squamata|1 +(noun)|Squamata|order Squamata|animal order +squamous cell|1 +(noun)|epithelial cell +squamous cell carcinoma|1 +(noun)|cancroid|skin cancer +squamule|1 +(noun)|scale|scale leaf +squamulose|1 +(adj)|rough |unsmooth +squander|2 +(verb)|waste|blow|use|expend +(verb)|consume|waste|ware|spend|expend|drop +squandered|1 +(adj)|wasted|lost +squanderer|1 +(noun)|prodigal|profligate|consumer +squandering|1 +(noun)|waste|wastefulness|dissipation +squandermania|1 +(noun)|squandering +square|25 +(adj)|square |quadrate|right-angled|squared|squarish|angular|angulate +(adj)|paid +(adj)|straight|honest |honorable +(adj)|straightforward|direct +(adj)|straight|conventional +(noun)|foursquare|rectangle|regular polygon +(noun)|second power|number +(noun)|public square|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|shape|form +(noun)|lame|simpleton|simple +(noun)|square toes|conservative|conservativist +(noun)|artifact|artefact +(noun)|hand tool +(verb)|multiply +(verb)|square up|shape|form +(verb)|adjust|conform|adapt +(verb)|position +(verb)|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|settle +(verb)|feather|paddle +(verb)|feather|row +(adv)|squarely +(adv)|squarely +(adv)|squarely +(adv)|squarely +square-bashing|1 +(noun)|military drill +square-built|1 +(adj)|robust +square-dance music|1 +(noun)|folk music|ethnic music|folk +square-rigged|1 +(adj)|rigged +square-rigger|1 +(noun)|sailing vessel|sailing ship +square-shouldered|1 +(adj)|big-shouldered|broad-shouldered|robust +square-toed|2 +(adj)|priggish|prim|prissy|prudish|puritanical|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +(adj)|squared-toe|toed |toe +square and rabbet|1 +(noun)|annulet|bandelet|bandelette|bandlet|molding|moulding +square away|1 +(verb)|tidy|tidy up|clean up|neaten|straighten|straighten out|order +square block|1 +(noun)|cube|block +square bracket|1 +(noun)|bracket|punctuation|punctuation mark +square dance|2 +(noun)|square dancing|country-dance|country dancing|contredanse|contra danse|contradance +(verb)|dance|trip the light fantastic|trip the light fantastic toe +square dancer|1 +(noun)|folk dancer +square dancing|1 +(noun)|square dance|country-dance|country dancing|contredanse|contra danse|contradance +square deal|1 +(noun)|fair deal|deal +square foot|1 +(noun)|sq ft|area unit|square measure +square inch|1 +(noun)|sq in|area unit|square measure +square knot|1 +(noun)|knot +square matrix|1 +(noun)|matrix +square meal|1 +(noun)|meal|repast +square measure|1 +(noun)|area unit|unit of measurement|unit +square meter|1 +(noun)|square metre|centare|area unit|square measure +square metre|1 +(noun)|square meter|centare|area unit|square measure +square mile|1 +(noun)|area unit|square measure +square nut|1 +(noun)|nut +square off|1 +(verb)|settle|square up|determine|conclude|resolve +square one|1 +(noun)|situation|state of affairs +square root|1 +(noun)|root +square sail|1 +(noun)|sail|canvas|canvass|sheet +square shooter|1 +(noun)|straight shooter|straight arrow|good person +square toes|1 +(noun)|square|conservative|conservativist +square up|3 +(verb)|square|shape|form +(verb)|jog|even up|square +(verb)|settle|square off|determine|conclude|resolve +square yard|1 +(noun)|sq yd|area unit|square measure +squared|1 +(adj)|square +squared-toe|1 +(adj)|square-toed|toed |toe +squareflipper square flipper|1 +(noun)|bearded seal|Erignathus barbatus|earless seal|true seal|hair seal +squarely|6 +(adv)|forthrightly|forthright +(adv)|square +(adv)|square +(adv)|square +(adv)|square +(adv)|foursquare|straightforwardly +squareness|1 +(noun)|rectangularity|oblongness +squaretail|1 +(noun)|scombroid|scombroid fish +squarish|1 +(adj)|square +squark|1 +(noun)|strange quark|quark +squash|4 +(noun)|squash vine|vine +(noun)|vegetable|veggie +(noun)|squash racquets|squash rackets|court game +(verb)|crush|squelch|mash|squeeze|press +squash ball|1 +(noun)|ball +squash bug|1 +(noun)|Anasa tristis|coreid bug|coreid +squash court|1 +(noun)|court +squash pie|1 +(noun)|pie +squash racket|1 +(noun)|squash racquet|bat|racket|racquet +squash rackets|2 +(noun)|squash|squash racquets|court game +(noun)|squash racket|squash racquet|bat|racket|racquet +squash racquet|1 +(noun)|squash racket|bat|racket|racquet +squash racquets|2 +(noun)|squash|squash rackets|court game +(noun)|squash racket|squash racquet|bat|racket|racquet +squash vine|1 +(noun)|squash|vine +squashed|1 +(adj)|press +squashy|1 +(adj)|spongy|squishy|spongelike|soft +squat|8 +(adj)|chunky|dumpy|low-set|squatty|stumpy|short +(adj)|underslung|low +(noun)|knee bend|squatting|leg exercise +(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|shit|small indefinite quantity|small indefinite amount +(noun)|squatting|motion|movement|move|motility +(verb)|crouch|scrunch|scrunch up|hunker|hunker down|sit|sit down +(verb)|be +(verb)|occupy|reside|lodge in +squatina|1 +(noun)|Squatina|genus Squatina|fish genus +squatina squatina|1 +(noun)|angel shark|angelfish|Squatina squatina|monkfish|shark +squatinidae|1 +(noun)|Squatinidae|family Squatinidae|fish family +squatness|1 +(noun)|stubbiness|lowness +squatter|2 +(noun)|homesteader|nester|settler|colonist +(noun)|intruder|interloper|trespasser +squattiness|1 +(noun)|dumpiness|physique|build|body-build|habitus +squatting|2 +(noun)|knee bend|squat|leg exercise +(noun)|squat|motion|movement|move|motility +squatty|1 +(adj)|chunky|dumpy|low-set|squat|stumpy|short +squaw|1 +(noun)|Indian|North American Indian|American Indian|Red Indian +squaw-bush|2 +(noun)|squawbush|skunkbush|Rhus trilobata|sumac|sumach|shumac +(noun)| +squaw corn|1 +(noun)|soft corn|flour corn|Zea mays amylacea|field corn +squaw grass|1 +(noun)|bear grass|Xerophyllum tenax|liliaceous plant +squaw huckleberry|1 +(noun)|deerberry|Vaccinium stamineum|blueberry|blueberry bush +squaw man|1 +(noun)|white man +squaw root|2 +(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +(noun)| +squawbush|1 +(noun)|squaw-bush|skunkbush|Rhus trilobata|sumac|sumach|shumac +squawk|4 +(noun)|noise +(noun)|gripe|kick|beef|bitch|objection +(verb)|screak|skreak|skreigh|screech|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|gripe|grouse|crab|beef|bellyache|holler|complain|kick|plain|sound off|quetch|kvetch +squawk box|1 +(noun)|squawker|intercom speaker|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +squawker|2 +(noun)|whiner|complainer|moaner|sniveller|crybaby|bellyacher|grumbler|unpleasant person|disagreeable person +(noun)|squawk box|intercom speaker|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +squawky|1 +(adj)|cackly|cacophonous |cacophonic +squawroot|1 +(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub|bush +squeak|3 +(noun)|noise +(noun)|close call|close shave|squeaker|narrow escape|accomplishment|achievement +(verb)|screech|creak|screak|skreak|make noise|resound|noise +squeak by|2 +(verb)|scrape along|scrape by|scratch along|squeeze by|rub along|cope|get by|make out|make do|contend|grapple|deal|manage +(verb)|squeak through|pass|go through|go across +squeak through|1 +(verb)|squeak by|pass|go through|go across +squeaker|2 +(noun)|artifact|artefact +(noun)|close call|close shave|squeak|narrow escape|accomplishment|achievement +squeaking|1 +(adj)|screaky|screechy|squeaky|squealing|high |high-pitched +squeaky|1 +(adj)|screaky|screechy|squeaking|squealing|high |high-pitched +squeal|3 +(noun)|howl +(verb)|oink|utter|emit|let out|let loose +(verb)|confess|shrive|admit|acknowledge +squealer|2 +(noun)|informer|betrayer|rat|blabber|informant|source +(noun)|hog|pig|grunter|Sus scrofa|swine +squealing|1 +(adj)|screaky|screechy|squeaking|squeaky|high |high-pitched +squeamish|1 +(adj)|dainty|nice|overnice|prissy|fastidious +squeamishness|1 +(noun)|queasiness|qualm|nausea|sickness +squeegee|2 +(noun)|cleaning implement +(verb)|wipe|pass over +squeezability|1 +(noun)|compressibility|sponginess|softness +squeezable|1 +(adj)|compressible|soft +squeeze|17 +(noun)|squeezing|compression|compressing +(noun)|credit crunch|liquidity crisis|financial condition|economic condition +(noun)|loss|red ink|red +(noun)|lover +(noun)|wring|movement|motion +(noun)|power play|squeeze play|attempt|effort|endeavor|endeavour|try +(noun)|hug|clinch|embrace|embracing +(noun)|constriction +(verb)|squash|crush|squelch|mash|press +(verb)|press|squeeze out|squeeze out|squeeze out +(verb)|wedge|force|move|displace +(verb)|coerce|hale|pressure|force|compel|oblige|obligate +(verb)|extort|rack|gouge|wring|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|hook +(verb)|thrust|stuff|shove|push|force +(verb)|pinch|twinge|tweet|nip|twitch|grip +(verb)|embrace|hug|bosom|clasp +(verb)|compress|constrict|compact|contract|press|tighten +squeeze box|1 +(noun)|accordion|piano accordion|free-reed instrument +squeeze by|1 +(verb)|scrape along|scrape by|scratch along|squeak by|rub along|cope|get by|make out|make do|contend|grapple|deal|manage +squeeze for|1 +(verb)|coerce|hale|squeeze|pressure|force +squeeze out|6 +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate +(verb)|eke out|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|wring out|extract|pull out|pull|pull up|take out|draw out +(verb)|eke out|obtain +(verb)|extrude|produce|make|create +(verb)|squirt|force out|eject|discharge +squeeze play|2 +(noun)|power play|squeeze|attempt|effort|endeavor|endeavour|try +(noun)|baseball play +squeezer|1 +(noun)|kitchen utensil +squeezing|1 +(noun)|squeeze|compression|compressing +squelch|6 +(noun)|put-down|squelcher|takedown|derision +(noun)|squelch circuit|squelcher|circuit|electrical circuit|electric circuit +(verb)|quell|quench|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|sound|go +(verb)|squish|splash|splosh|slosh|slop|slog|footslog|plod|trudge|pad|tramp +(verb)|squash|crush|mash|squeeze|press +squelch circuit|1 +(noun)|squelch|squelcher|circuit|electrical circuit|electric circuit +squelched|1 +(adj)|quelled|quenched|suppressed +squelcher|2 +(noun)|put-down|squelch|takedown|derision +(noun)|squelch circuit|squelch|circuit|electrical circuit|electric circuit +squib|1 +(noun)|firework|pyrotechnic +squid|2 +(noun)|calamari|calamary|seafood +(noun)|decapod +squiffy|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|stiff|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +squiggle|2 +(noun)|curlicue|line +(noun)|scribble|scratch|scrawl|cacography +squiggly|1 +(adj)|crooked +squill|3 +(noun)|bulb +(noun)|sea squill|sea onion|Urginea maritima|liliaceous plant +(noun)|scilla|liliaceous plant +squilla|1 +(noun)|mantis prawn|mantis shrimp|mantis crab +squillidae|1 +(noun)|Squillidae|family Squillidae|arthropod family +squinch|4 +(noun)|arch +(verb)|crouch|stoop|bend|bow +(verb)|flinch|funk|cringe|shrink|wince|recoil|quail|move +(verb)|squint|cross one's eyes|grimace|make a face|pull a face +squinched|1 +(adj)|squinting|closed |shut +squint|4 +(adj)|askance|askant|asquint|squint-eyed|squinty|sidelong|indirect +(noun)|strabismus|abnormality|abnormalcy|abnormal condition +(verb)|squinch|cross one's eyes|grimace|make a face|pull a face +(verb)|look +squint-eye|1 +(noun)|squinter|person|individual|someone|somebody|mortal|human|soul +squint-eyed|2 +(adj)|abnormality|abnormalcy|abnormal condition +(adj)|askance|askant|asquint|squint|squinty|sidelong|indirect +squinter|1 +(noun)|squint-eye|person|individual|someone|somebody|mortal|human|soul +squinting|1 +(adj)|squinched|closed |shut +squinty|1 +(adj)|askance|askant|asquint|squint|squint-eyed|sidelong|indirect +squire|4 +(noun)|attendant|attender|tender +(noun)|landowner|landholder|property owner +(noun)|gallant|attendant|attender|tender +(verb)|escort +squirearchy|1 +(noun)|landed gentry|gentry|aristocracy +squirm|2 +(noun)|wiggle|wriggle|motion|movement|move|motility +(verb)|writhe|wrestle|wriggle|worm|twist|move +squirmer|1 +(noun)|wiggler|wriggler|person|individual|someone|somebody|mortal|human|soul +squirming|1 +(adj)|twisting|wiggling|wiggly|wriggling|wriggly|writhing|moving +squirrel|2 +(noun)|rodent|gnawer|gnawing animal +(noun)|fur|pelt +squirrel's-foot fern|1 +(noun)|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia +squirrel away|1 +(verb)|hoard|stash|cache|lay away|hive up|save|lay aside|save up +squirrel cage|1 +(noun)|cage|coop +squirrel corn|1 +(noun)|Dicentra canadensis|herb|herbaceous plant +squirrel monkey|1 +(noun)|Saimiri sciureus|New World monkey|platyrrhine +squirrelfish|2 +(noun)|pinfish|sailor's-choice|Lagodon rhomboides|sparid|sparid fish +(noun)|spiny-finned fish|acanthopterygian +squirreltail barley|1 +(noun)|foxtail barley|squirreltail grass|Hordeum jubatum|barley +squirreltail grass|1 +(noun)|squirreltail barley|foxtail barley|Hordeum jubatum|barley +squirt|4 +(noun)|pip-squeak|small fry|cipher|cypher|nobody|nonentity +(noun)|jet|spurt|spirt|discharge|outpouring|run +(verb)|force out|squeeze out|eject|discharge +(verb)|wet +squirt gun|1 +(noun)|water pistol|water gun|squirter|plaything|toy +squirter|1 +(noun)|water pistol|water gun|squirt gun|plaything|toy +squirting|1 +(adj)|jetting|spouting|spurting|running +squirting cucumber|1 +(noun)|exploding cucumber|touch-me-not|Ecballium elaterium|gourd|gourd vine +squish|2 +(verb)|squelch|splash|splosh|slosh|slop|slog|footslog|plod|trudge|pad|tramp +(verb)|squirt +squishy|1 +(adj)|spongy|squashy|spongelike|soft +sr|2 +(noun)|strontium|Sr|atomic number 38|metallic element|metal +(noun)|steradian|angular unit +sr.|1 +(adj)|elder|older|senior +sravana|1 +(noun)|Sawan|Sravana|Hindu calendar month +srbija|1 +(noun)|Serbia|Srbija|geographical area|geographic area|geographical region|geographic region +sri frederick handley page|1 +(noun)|Page|Sri Frederick Handley Page|industrialist +sri lanka|1 +(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country|state|land +sri lanka rupee|1 +(noun)|Sri Lanka rupee|rupee|Sri Lankan monetary unit +sri lankan|2 +(adj)|Sri Lankan|Ceylonese|island +(noun)|Sri Lankan|Asian|Asiatic +sri lankan monetary unit|1 +(noun)|Sri Lankan monetary unit|monetary unit +ss|2 +(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency +(noun)|Schutzstaffel|SS|police|police force|constabulary|law +ssa|1 +(noun)|Social Security Administration|SSA|independent agency +sse|1 +(noun)|south southeast|sou'-sou'-east|SSE|compass point|point +sspe|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +ssri|1 +(noun)|selective-serotonin reuptake inhibitor|SSRI|antidepressant|antidepressant drug +sss|1 +(noun)|Selective Service|Selective Service System|SSS|independent agency +ssw|1 +(noun)|south southwest|sou'-sou'-west|SSW|compass point|point +st.-bruno's-lily|1 +(noun)|St.-Bruno's-lily|Paradisea liliastrum|spiderwort|dayflower +st. ambrose|1 +(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop|theologian|theologist|theologizer|theologiser|composer|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. andrew|1 +(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle|saint +st. andrew's cross|1 +(noun)|St. Andrew's cross|saltire|cross +st. anselm|1 +(noun)|Anselm|Saint Anselm|St. Anselm|archbishop|saint +st. anthony's cross|1 +(noun)|tau cross|St. Anthony's cross|cross +st. athanasius|1 +(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian|theologist|theologizer|theologiser|saint|Church Father|Father of the Church|Father|Doctor of the Church|Doctor +st. augustine|2 +(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +(noun)|St. Augustine|Saint Augustine|city|metropolis|urban center +st. augustine grass|1 +(noun)|St. Augustine grass|Stenotaphrum secundatum|buffalo grass|grass +st. baeda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +st. barbara's herb|1 +(noun)|winter cress|St. Barbara's herb|scurvy grass|cress|cress plant +st. basil|1 +(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. basil the great|1 +(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. beda|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +st. bede|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +st. benedict|1 +(noun)|Benedict|Saint Benedict|St. Benedict|monk|monastic|saint +st. boniface|1 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +st. bride|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +st. bridget|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +st. brigid|1 +(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess|mother superior|prioress|saint +st. bruno|1 +(noun)|Bruno|Saint Bruno|St. Bruno|cleric|churchman|divine|ecclesiastic|saint +st. christopher|2 +(noun)|Christopher|Saint Christopher|St. Christopher|patron saint +(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island +st. christopher-nevis|1 +(noun)|Saint Kitts and Nevis|Federation of Saint Kitts and Nevis|Saint Christopher-Nevis|St. Christopher-Nevis|St. Kitts and Nevis|country|state|land +st. cloud|1 +(noun)|Saint Cloud|St. Cloud|town +st. crispin|1 +(noun)|Crispin|Saint Crispin|St. Crispin|patron saint +st. dabeoc's heath|1 +(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath +st. david|1 +(noun)|David|Saint David|St. David|patron saint +st. denis|1 +(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer|professional dancer|choreographer +st. dominic|1 +(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest|saint +st. edward the confessor|1 +(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England|King of Great Britain|saint +st. edward the martyr|1 +(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England|King of Great Britain|saint +st. elias mountains|1 +(noun)|St. Elias Range|St. Elias Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +st. elias range|1 +(noun)|St. Elias Range|St. Elias Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +st. elmo's fire|1 +(noun)|corona discharge|corona|corposant|St. Elmo's fire|Saint Elmo's fire|Saint Elmo's light|Saint Ulmo's fire|Saint Ulmo's light|electric glow|discharge|spark|arc|electric arc|electric discharge +st. eustatius|1 +(noun)|Saint Eustatius|St. Eustatius|island +st. francis|2 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river +st. francis of assisi|1 +(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint +st. francis river|1 +(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river +st. george|1 +(noun)|George|Saint George|St. George|martyr|patron saint +st. george's|1 +(noun)|St. George's|capital of Grenada|national capital +st. gregory i|1 +(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint|Doctor of the Church|Doctor +st. gregory of nazianzen|1 +(noun)|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. ignatius|1 +(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop|saint +st. ignatius of loyola|1 +(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian|theologist|theologizer|theologiser|saint +st. james|1 +(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle|saint +st. james the apostle|1 +(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle|saint +st. jerome|1 +(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian|theologist|theologizer|theologiser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. john|3 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|Saint John|Saint John River|St. John|St. John River|river +(noun)|Saint John|St. John|city|metropolis|urban center|port +st. john's|2 +(noun)|Saint John's|St. John's|provincial capital|port +(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital +st. john chrysostom|1 +(noun)|John Chrysostom|St. John Chrysostom|theologian|theologist|theologizer|theologiser|preacher|preacher man|sermonizer|sermoniser|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor +st. john river|1 +(noun)|Saint John|Saint John River|St. John|St. John River|river +st. john the apostle|1 +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +st. john the baptist|1 +(noun)|John the Baptist|St. John the Baptist|hermit|recluse|solitary|solitudinarian|troglodyte|saint +st. johns|4 +(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river +(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle|Evangelist|saint +(noun)|Saint John|Saint John River|St. John|St. John River|river +(noun)|Saint John|St. John|city|metropolis|urban center|port +st. johns river|2 +(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river +(noun)|Saint John|Saint John River|St. John|St. John River|river +st. joseph|2 +(noun)|Saint Joseph|St. Joseph|town +(noun)|Saint Joseph|St Joseph|March 19|Christian holy day +st. jude|1 +(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle|saint +st. kitts|1 +(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island +st. kitts and nevis|1 +(noun)|Saint Kitts and Nevis|Federation of Saint Kitts and Nevis|Saint Christopher-Nevis|St. Christopher-Nevis|St. Kitts and Nevis|country|state|land +st. lawrence|2 +(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr|saint +(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river +st. lawrence river|1 +(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river +st. lawrence seaway|1 +(noun)|Saint Lawrence Seaway|St. Lawrence Seaway|seaway|sea lane|ship route|trade route +st. leo i|1 +(noun)|Leo I|St. Leo I|Leo the Great|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|saint +st. louis|2 +(noun)|Saint Louis|St. Louis|Gateway to the West|city|metropolis|urban center|port +(noun)|Louis IX|Saint Louis|St. Louis|King of France|saint +st. lucia|2 +(noun)|Saint Lucia|St. Lucia|country|state|land +(noun)|Saint Lucia|St. Lucia|island +st. luke|1 +(noun)|Luke|Saint Luke|St. Luke|Apostle|Evangelist|saint +st. maarten|1 +(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island +st. mark|1 +(noun)|Mark|Saint Mark|St. Mark|Apostle|Evangelist|saint +st. martin|2 +(noun)|Martin|St. Martin|bishop|saint +(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island +st. mary magdalen|1 +(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner|evildoer|saint +st. mary magdalene|1 +(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner|evildoer|saint +st. mary of bethlehem|1 +(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city|metropolis|urban center|port +st. matthew|1 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +st. matthew the apostle|1 +(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle|Evangelist|saint +st. nicholas|1 +(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop|saint +st. nick|1 +(noun)|Santa Claus|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint +st. olaf|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +st. olav|1 +(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king|male monarch|saint +st. patrick|1 +(noun)|Patrick|Saint Patrick|St. Patrick|Apostle|patron saint +st. paul|2 +(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital +(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle|missionary|missioner|saint +st. peter|1 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +st. peter's wreath|1 +(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea|spiraea +st. peter the apostle|1 +(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle|saint +st. petersburg|2 +(noun)|St. Petersburg|Saint Petersburg|city|metropolis|urban center +(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city|metropolis|urban center +st. simon|1 +(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle|saint +st. thomas|2 +(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle|saint +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +st. thomas a becket|1 +(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop|martyr|saint +st. thomas and principe|1 +(noun)|Sao Tome and Principe|Democratic Republic of Sao Tome and Principe|Sao Tome e Principe|Sao Thome e Principe|St. Thomas and Principe|country|state|land +st. thomas aquinas|1 +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +st. vincent|1 +(noun)|Saint Vincent|St. Vincent|island +st. vincent and the grenadines|1 +(noun)|Saint Vincent and the Grenadines|St. Vincent and the Grenadines|country|state|land +st. vitus|1 +(noun)|Vitus|St. Vitus|martyr|saint +st. vitus dance|1 +(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea +st andrews's cross|1 +(noun)|St Andrews's cross|Hypericum crux andrae|St John's wort +st bernard|1 +(noun)|Saint Bernard|St Bernard|working dog +st john's day|1 +(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day +st john's eve|1 +(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day +st john's night|1 +(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day +st john's wort|1 +(noun)|St John's wort|subshrub|suffrutex +st john's wort family|1 +(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family +st joseph|1 +(noun)|Saint Joseph|St Joseph|March 19|Christian holy day +st martin's day|1 +(noun)|Martinmas|St Martin's Day|11 November|quarter day +st mihiel|1 +(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle +st patrick's day|1 +(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day +st peter's wort|1 +(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort +st valentine's day|1 +(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day +stab|6 +(noun)|pang|twinge|feeling +(noun)|thrust|knife thrust|blow +(noun)|shot|attempt|effort|endeavor|endeavour|try +(verb)|knife|injure|wound +(verb)|jab|thrust +(verb)|jab|prod|poke|dig|thrust +stabbed|1 +(adj)|injured +stabber|1 +(noun)|attacker|aggressor|assailant|assaulter +stabbing|2 +(adj)|traumatic|wounding|harmful +(adj)|cutting|keen|knifelike|piercing|lancinate|lancinating|sharp +stabile|3 +(adj)|stable +(adj)|immovable|immoveable|unmovable|immobile +(noun)|sculpture +stabilisation|2 +(noun)|stabilization|improvement +(noun)|stabilization|standardization|standardisation|normalization|normalisation +stabilise|3 +(verb)|brace|steady|stabilize|strengthen|beef up|fortify +(verb)|stabilize|change +(verb)|stabilize|change|alter|modify +stabilised|1 +(adj)|stabilized|stable +stabiliser|1 +(noun)|stabilizer|device +stabilising|1 +(adj)|stabilizing|helpful +stability|3 +(noun)|stableness|steadiness|firmness +(noun)|order +(noun)|constancy|changelessness|unchangeability|unchangeableness|unchangingness +stabilization|2 +(noun)|stabilisation|standardization|standardisation|normalization|normalisation +(noun)|stabilisation|improvement +stabilize|3 +(verb)|stabilise|change|alter|modify +(verb)|brace|steady|stabilise|strengthen|beef up|fortify +(verb)|stabilise|change +stabilized|1 +(adj)|stabilised|stable +stabilizer|3 +(noun)|chemical +(noun)|airfoil|aerofoil|control surface|surface +(noun)|stabiliser|device +stabilizer bar|1 +(noun)|anti-sway bar|bar|stabilizer|stabiliser +stabilizing|1 +(adj)|stabilising|helpful +stable|7 +(adj)|stable |firm|steady|unfluctuating|lasting|stabile|stabilized|stabilised|constant|permanent|lasting|steady +(adj)|sound +(adj)|unreactive +(adj)|balanced +(adj)|static|unchanging|unchangeable +(noun)|stalls|horse barn|farm building +(verb)|shelter +stable companion|1 +(noun)|stablemate|horse|Equus caballus +stable factor|1 +(noun)|proconvertin|cothromboplastin|factor VII|coagulation factor|clotting factor +stable gear|1 +(noun)|saddlery|tack|gear|paraphernalia|appurtenances +stableboy|1 +(noun)|stableman|groom|hostler|ostler|hired hand|hand|hired man +stableman|1 +(noun)|stableboy|groom|hostler|ostler|hired hand|hand|hired man +stablemate|1 +(noun)|stable companion|horse|Equus caballus +stableness|1 +(noun)|stability|steadiness|firmness +stabling|1 +(noun)|accommodation +stabroek|1 +(noun)|Georgetown|Stabroek|national capital|port +staccato|1 +(adj)|staccato |disconnected|abrupt|disconnected +stachyose|1 +(noun)|tetrasaccharide +stachys|1 +(noun)|Stachys|genus Stachys|asterid dicot genus +stachys palustris|1 +(noun)|hedge nettle|Stachys palustris|herb|herbaceous plant +stachys sylvatica|1 +(noun)|hedge nettle|dead nettle|Stachys sylvatica|herb|herbaceous plant +stack|8 +(noun)|pile|heap|mound|cumulus +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|push-down list|push-down stack|list|listing +(noun)|smokestack|chimney +(noun)|push-down storage|push-down store|memory device|storage device +(verb)|load|lade|laden|load up|stack away +(verb)|pile|heap|arrange|set up|stack up +(verb)|arrange|set up +stack away|1 +(verb)|store|hive away|lay in|put in|salt away|stash away|keep|hold on +stack up|1 +(verb)|pile up|heap up|gather|garner|collect|pull together +stacked|2 +(adj)|arrange|set up +(adj)|built|well-stacked|shapely +stacked heel|1 +(noun)|heel +stacker|1 +(noun)|laborer|manual laborer|labourer|jack +stacks|7 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|set of bookshelves|storage space +(noun)|stack|pile|heap|mound|cumulus +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|push-down list|push-down stack|stack|list|listing +(noun)|smokestack|stack|chimney +(noun)|push-down storage|push-down store|stack|memory device|storage device +stacte|1 +(noun)|spice +staddle|1 +(noun)|base|pedestal|stand +stadium|1 +(noun)|bowl|arena|sports stadium|structure|construction +stadium jumping|1 +(noun)|showjumping|equestrian sport +stael|1 +(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer|author +staff|8 +(noun)|force|personnel +(noun)|faculty|body +(noun)|stick +(noun)|building material +(noun)|symbol +(noun)|stave|musical notation +(verb)|provide|supply|ply|cater +(verb)|serve +staff-tree family|1 +(noun)|Celastraceae|family Celastraceae|spindle-tree family|dicot family|magnoliopsid family +staff line|1 +(noun)|line +staff member|1 +(noun)|staffer|employee +staff of life|1 +(noun)|bread|breadstuff|baked goods +staff office|1 +(noun)|personnel department|personnel office|personnel|department|section +staff officer|1 +(noun)|commissioned officer +staff sergeant|1 +(noun)|sergeant +staff tree|1 +(noun)|shrub|bush +staff vine|1 +(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|waxwork|Celastrus scandens|vine +staffa|1 +(noun)|Staffa|island +staffer|1 +(noun)|staff member|employee +staffordshire bullterrier|1 +(noun)|Staffordshire bullterrier|Staffordshite bull terrier|bullterrier|bull terrier +staffordshire terrier|1 +(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier|bull terrier +staffordshite bull terrier|1 +(noun)|Staffordshire bullterrier|Staffordshite bull terrier|bullterrier|bull terrier +stag|4 +(noun)|hart|red deer|Cervus elaphus +(noun)|buck +(verb)|denounce|tell on|betray|give away|rat|grass|shit|shop|snitch|inform +(verb)|spy|snoop|sleuth|monitor|supervise|ride herd on +stag's-horn coral|1 +(noun)|staghorn coral|stony coral|madrepore|madriporian coral +stag's garlic|1 +(noun)|crow garlic|false garlic|field garlic|wild garlic|Allium vineale|wild onion +stag beetle|1 +(noun)|lamellicorn beetle +stag party|1 +(noun)|smoker|party +stage|10 +(noun)|phase|time period|period of time|period +(noun)|degree|level|point|state +(noun)|platform +(noun)|dramaturgy|dramatic art|dramatics|theater|theatre +(noun)|scene +(noun)|stagecoach|coach|four-in-hand|coach-and-four +(noun)|leg|travel|traveling|travelling +(noun)|microscope stage|platform +(verb)|present|represent|re-create +(verb)|bring about|arrange|initiate|pioneer +stage-struck|1 +(adj)|affected +stage business|1 +(noun)|business|byplay|acting|playing|playacting|performing +stage crew|1 +(noun)|gang|crew|work party +stage dancing|1 +(noun)|choreography|dancing|dance|terpsichore|saltation|show +stage direct|1 +(verb)|direct +stage direction|1 +(noun)|direction|instruction +stage director|1 +(noun)|director|theater director|theatre director +stage door|1 +(noun)|entrance|entranceway|entryway|entry|entree +stage effect|1 +(noun)|special effect +stage fright|1 +(noun)|fear|fearfulness|fright +stage left|1 +(noun)|left stage|left +stage manager|1 +(noun)|stager|supervisor +stage name|1 +(noun)|pseudonym|anonym|nom de guerre +stage right|1 +(noun)|right stage|right +stage set|1 +(noun)|set|representation +stage setting|1 +(noun)|mise en scene|setting|stage +stage technician|1 +(noun)|stagehand|employee +stage whisper|1 +(noun)|whisper|whispering|susurration +stagecoach|1 +(noun)|stage|coach|four-in-hand|coach-and-four +stagecraft|1 +(noun)|craft|craftsmanship|workmanship +staged|2 +(adj)|arranged|artificial |unreal +(adj)|staged +stagehand|1 +(noun)|stage technician|employee +stager|2 +(noun)|stage manager|supervisor +(noun)|veteran|old-timer|oldtimer|old hand|warhorse|old stager|expert +stagey|1 +(adj)|stagy|theatrical +stagflation|1 +(noun)|inflation|rising prices +stagflationary|1 +(adj)|inflation|rising prices +stagger|5 +(noun)|lurch|stumble|gait +(verb)|reel|keel|lurch|swag|careen|walk +(verb)|flounder|walk +(verb)|distribute|arrange|set up +(verb)|overwhelm|overpower|sweep over|whelm|overcome|overtake +stagger bush|2 +(noun)|staggerbush|Lyonia mariana|shrub|bush +(noun)| +stagger head|1 +(noun)|dropline|drop line|stepped line|staggered head|stephead|headline|newspaper headline +staggerbush|1 +(noun)|stagger bush|Lyonia mariana|shrub|bush +staggered board of directors|1 +(noun)|directorate|board of directors +staggered head|1 +(noun)|dropline|drop line|stepped line|stagger head|stephead|headline|newspaper headline +staggerer|1 +(noun)|totterer|reeler|pedestrian|walker|footer +staggering|2 +(adj)|lurching|stumbling|weaving|unsteady +(adj)|astonishing|astounding|stupefying|impressive +staggeringly|1 +(adv)|enormously|tremendously|hugely +staggers|2 +(noun)|blind staggers|animal disease +(noun)|lurch|stumble|stagger|gait +staghead|1 +(noun)|witches' broom|witch broom|hexenbesen|tuft|tussock +staghorn coral|1 +(noun)|stag's-horn coral|stony coral|madrepore|madriporian coral +staghorn fern|1 +(noun)|fern +staghorn moss|1 +(noun)|ground cedar|Lycopodium complanatum|ground pine|Christmas green +staghorn sumac|1 +(noun)|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac|sumach|shumac +staghound|1 +(noun)|hound|hound dog +stagily|1 +(adv)|theatrically +staginess|1 +(noun)|theatricality|artificiality +staging|4 +(noun)|theatrical production|production +(noun)|scaffolding|system +(noun)|travel|traveling|travelling +(noun)|discard|throwing away +staging area|1 +(noun)|area|country +stagira|1 +(noun)|Stagira|Stagirus|town +stagirus|1 +(noun)|Stagira|Stagirus|town +stagnancy|2 +(noun)|stagnation|inaction|inactivity|inactiveness +(noun)|stagnation|doldrums|inaction|inactivity|inactiveness +stagnant|2 +(adj)|dead|standing +(adj)|moribund|undynamic |adynamic +stagnant anoxia|1 +(noun)|ischemic anoxia|anoxia +stagnant hypoxia|1 +(noun)|ischemic hypoxia|hypoxia +stagnate|4 +(verb)|be +(verb)|change +(verb)|be +(verb)|idle|laze|slug +stagnation|2 +(noun)|stagnancy|doldrums|inaction|inactivity|inactiveness +(noun)|stagnancy|inaction|inactivity|inactiveness +stagy|1 +(adj)|stagey|theatrical +staid|1 +(adj)|sedate|decorous +staidly|1 +(adv)|gravely|soberly +staidness|1 +(noun)|sedateness|solemnity|solemness|seriousness|earnestness|serious-mindedness|sincerity +stain|9 +(noun)|discoloration|discolouration|appearance|visual aspect +(noun)|coloring material|colouring material|color|colour +(noun)|dirt|filth|grime|soil|grease|grunge|dirtiness|uncleanness +(noun)|mark|stigma|brand|symbol +(noun)|blot|smear|smirch|spot|mistake|error|fault +(verb)|dye +(verb)|change|alter|modify +(verb)|tarnish|maculate|sully|defile|spot|fleck|blob|blot +(verb)|dye +stainability|1 +(noun)|tendency|inclination +stainable|1 +(adj)|tendency|inclination +stained|3 +(adj)|stained |discolored|discoloured|treated +(adj)|varnished|painted +(adj)|besmirched|damaged|flyblown|spotted|sullied|tainted|tarnished|blemished +stained-glass window|1 +(noun)|window +stained glass|1 +(noun)|glass +stainer|1 +(noun)|worker +staining|2 +(noun)|dyeing +(noun)|spotting|maculation|soiling|soilure|dirtying +stainless|1 +(adj)|unstained|unsullied|untainted|untarnished|unblemished +stainless steel|1 +(noun)|chromium steel|alloy steel +stair|1 +(noun)|step|support +stair-carpet|1 +(noun)|rug|carpet|carpeting +stair-rod|1 +(noun)|rod +staircase|1 +(noun)|stairway|stairs|steps|way +stairhead|1 +(noun)|platform +stairs|2 +(noun)|stairway|staircase|steps|way +(noun)|step|stair|support +stairway|1 +(noun)|staircase|stairs|steps|way +stairwell|1 +(noun)|well +staisfise|1 +(verb)|satisfice|act|move +stake|9 +(noun)|interest|share|portion|part|percentage +(noun)|post|visual signal +(noun)|instrument of execution +(noun)|stakes|bet|wager|gamble +(verb)|venture|hazard|adventure|jeopardize|risk|put on the line|lay on the line +(verb)|bet on|back|gage|game|punt|bet|wager|play +(verb)|post|mark +(verb)|fasten|fix|secure +(verb)|impale|kill +stake driver|1 +(noun)|American bittern|Botaurus lentiginosus|bittern +stake race|1 +(noun)|horse race +stakeholder|1 +(noun)|neutral +stakeout|1 +(noun)|surveillance +stakes|5 +(noun)|stake|bet|wager|gamble +(noun)|interest|stake|share|portion|part|percentage +(noun)|post|stake|visual signal +(noun)|stake|instrument of execution +(noun)|stake|bet|wager|gamble +stalactite|1 +(noun)|cylinder +stalagmite|1 +(noun)|cylinder +stale|4 +(adj)|stale |addled|bad|spoiled|spoilt|cold|day-old|flyblown|maggoty|hard|limp|wilted|moldy|mouldy|musty|rancid|old|unoriginal +(adj)|old|moth-eaten|unoriginal +(adj)|cold|old +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water +stalemate|3 +(noun)|deadlock|dead end|impasse|standstill|situation +(noun)|draw|standoff|tie +(verb)|move|go +stalemated|1 +(adj)|deadlocked|obstructed +staleness|2 +(noun)|triteness|unoriginality +(noun)|oldness +stalin|1 +(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist|commie +stalinabad|1 +(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital +stalingrad|1 +(noun)|Volgograd|Stalingrad|Tsaritsyn|city|metropolis|urban center +stalinisation|1 +(noun)|Stalinization|Stalinisation|social process +stalinise|1 +(verb)|stalinize|transform|transmute|transubstantiate +stalinism|1 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy|autarchy +stalinist|2 +(adj)|Stalinist|communist|commie +(noun)|Stalinist|follower +stalinization|1 +(noun)|Stalinization|Stalinisation|social process +stalinize|1 +(verb)|stalinise|transform|transmute|transubstantiate +stalino|1 +(noun)|Donetsk|Donetske|Stalino|city|metropolis|urban center +stalk|8 +(noun)|chaff|husk|shuck|straw|stubble|plant material +(noun)|stem|plant organ +(noun)|stalking|still hunt|hunt|hunting +(noun)|stalking|pursuit|chase|following +(noun)|angry walk|gait +(verb)|walk +(verb)|haunt|pursue|follow +(verb)|pursue|follow +stalked|1 +(adj)|pedunculate +stalked puffball|2 +(noun)|fungus +(noun)|Podaxaceae +stalker|3 +(noun)|pedestrian|walker|footer +(noun)|hunter|huntsman +(noun)|prowler|sneak|intruder|interloper|trespasser +stalking|3 +(adj)|following +(noun)|stalk|still hunt|hunt|hunting +(noun)|stalk|pursuit|chase|following +stalking-horse|4 +(noun)|campaigner|candidate|nominee +(noun)|pretext|pretense|pretence|feigning|dissembling +(noun)|screen|cover|covert|concealment +(noun)|horse|Equus caballus +stalkless|1 +(adj)|sessile +stalklike|1 +(adj)|stemlike|vegetable +stall|13 +(noun)|compartment +(noun)|booth|cubicle|kiosk|closet +(noun)|stand|sales booth|booth +(noun)|malfunction +(noun)|carrel|carrell|cubicle|alcove|bay +(noun)|stalling|obstruction +(verb)|procrastinate|drag one's feet|drag one's heels|shillyshally|dilly-dally|dillydally|delay +(verb)|conk|stop|halt +(verb)|delay|detain|hold up +(verb)|shelter +(verb)|stop|halt +(verb)|stop +(verb)|stop +stall-fed|1 +(adj)|nourished +stall bar|1 +(noun)|gymnastic apparatus|exerciser +stalling|1 +(noun)|stall|obstruction +stallion|1 +(noun)|entire|male horse +stalls|8 +(noun)|seating|seats|seating room|seating area +(noun)|stable|horse barn|farm building +(noun)|stall|compartment +(noun)|booth|cubicle|stall|kiosk|closet +(noun)|stall|stand|sales booth|booth +(noun)|stall|malfunction +(noun)|carrel|carrell|cubicle|stall|alcove|bay +(noun)|stall|stalling|obstruction +stalwart|4 +(adj)|hardy|stout|sturdy|robust +(adj)|stout|resolute +(adj)|stouthearted|brave |courageous|fearless +(noun)|loyalist|supporter|protagonist|champion|admirer|booster|friend +stalwartness|1 +(noun)|stoutness|strength +stamboul|1 +(noun)|Istanbul|Stambul|Stamboul|Constantinople|city|metropolis|urban center +stambul|1 +(noun)|Istanbul|Stambul|Stamboul|Constantinople|city|metropolis|urban center +stamen|1 +(noun)|reproductive structure +stamina|2 +(noun)|staying power|toughness|endurance +(noun)|stamen|reproductive structure +staminate|1 +(adj)|antheral|male +stammel|1 +(noun)|fabric|cloth|material|textile +stammer|2 +(noun)|stutter|speech disorder|speech defect|defect of speech +(verb)|bumble|stutter|falter|talk|speak|utter|mouth|verbalize|verbalise +stammerer|1 +(noun)|stutterer|speaker|talker|utterer|verbalizer|verbaliser +stammering|1 +(adj)|stuttering|inarticulate |unarticulate +stammeringly|1 +(adv)|stutteringly +stamp|16 +(noun)|postage|postage stamp|token|item +(noun)|cast|mold|solid +(noun)|class|category|family +(noun)|impression|symbol +(noun)|pestle|machine +(noun)|die +(noun)|seal|device +(verb)|stomp|stump|walk +(verb)|impress|imprint +(verb)|qualify|characterize|characterise +(verb)|affix|stick on +(verb)|pigeonhole|stereotype|classify|class|sort|assort|sort out|separate +(verb)|snuff out|extinguish +(verb)|shape|form|work|mold|mould|forge +(verb)|squash|crush|squelch|mash|squeeze +(verb)|emboss|boss|impress|imprint +stamp act|1 +(noun)|Stamp Act|legislative act|statute +stamp album|1 +(noun)|album +stamp battery|1 +(noun)|battery|stamp mill|stamping mill +stamp collecting|1 +(noun)|philately|stamp collection|collection|collecting|assembling|aggregation +stamp collection|2 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|philately|stamp collecting|collection|collecting|assembling|aggregation +stamp collector|1 +(noun)|philatelist|collector|aggregator +stamp dealer|1 +(noun)|trader|bargainer|dealer|monger +stamp down|1 +(verb)|suppress|inhibit|subdue|conquer|curb|control|hold in|hold|contain|check|curb|moderate +stamp duty|1 +(noun)|stamp tax|tax|taxation|revenue enhancement +stamp mill|1 +(noun)|stamping mill|factory|mill|manufacturing plant|manufactory +stamp out|1 +(verb)|kill|end|terminate +stamp pad|1 +(noun)|pad|inkpad|inking pad|block +stamp tax|1 +(noun)|stamp duty|tax|taxation|revenue enhancement +stamped|1 +(adj)|sealed +stampede|4 +(noun)|group action +(noun)|change of location|travel +(verb)|act|move +(verb)|flee|fly|take flight +stamper|3 +(noun)|workman|working man|working person +(noun)|stomper|tramper|trampler|pedestrian|walker|footer +(noun)|stamping machine|power tool +stamping ground|1 +(noun)|haunt|hangout|resort|repair|area|country +stamping machine|1 +(noun)|stamper|power tool +stamping mill|1 +(noun)|stamp mill|factory|mill|manufacturing plant|manufactory +stan laurel|1 +(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian|comic +stan musial|1 +(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer|baseball player +stan the man|1 +(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer|baseball player +stance|2 +(noun)|position|posture|attitude +(noun)|position|posture|attitude|mental attitude +stanch|1 +(verb)|stem|staunch|halt|check +stanchion|1 +(noun)|post +stanchly|1 +(adv)|staunchly +stand|24 +(noun)|base|pedestal|support +(noun)|position|place +(noun)|vegetation|flora +(noun)|table +(noun)|rack|support +(noun)|standstill|tie-up|stop|halt +(noun)|point of view|viewpoint|standpoint|position|stance|posture +(noun)|stall|sales booth|booth +(noun)|stop|stopover|layover +(noun)|stands|tiered seats +(noun)|bandstand|outdoor stage|platform +(noun)|defense|defence|defensive measure +(verb)|stand up|rest|stand up +(verb)|be|stand for|stand out|stand out|stand by|stand by|stand firm +(verb)|be +(verb)|remain firm|resist|hold out|withstand|stand firm +(verb)|judge +(verb)|digest|endure|stick out|stomach|bear|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|stay|remain|rest +(verb)|continue +(verb)|measure +(verb)|stand up|place upright|put|set|place|pose|position|lay +(verb)|resist|fend|fight|oppose|fight back|fight down|defend +(verb)|serve|service +stand-alone|1 +(adj)|complete +stand-down|3 +(noun)|standdown|abeyance|suspension +(noun)|standdown|stop|stoppage +(noun)| +stand-in|1 +(noun)|substitute|relief|reliever|backup|backup man|fill-in|peer|equal|match|compeer +stand-up|2 +(adj)|erect |vertical|upright +(adj)|stiff|inflexible +stand back|2 +(verb)|keep one's eyes off|keep one's distance|keep one's hands off|stay away|be +(verb)|stand|stand up +stand by|3 +(verb)|refrain|forbear +(verb)|stick around|stick about|wait +(verb)|stick by|stick|adhere|be +stand fast|1 +(verb)|stand pat|stand firm|hold firm|insist|take a firm stand +stand firm|2 +(verb)|resist|hold out|withstand|fight|oppose|fight back|fight down|defend +(verb)|stand pat|hold firm|stand fast|insist|take a firm stand +stand for|4 +(verb)|typify|symbolize|symbolise|represent|mean|intend +(verb)|mean|intend|signify +(verb)|represent|correspond|equal|be +(verb)|hold still for|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +stand guard|1 +(verb)|stand watch|keep guard|stand sentinel|guard +stand in|1 +(verb)|substitute|sub|fill in|exchange|change|interchange +stand oil|1 +(noun)|oil +stand out|4 +(verb)|leap out|jump out|jump|stick out|look|appear|seem +(verb)|excel|surpass +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +(verb)|resist|hold out|withstand|stand firm +stand pat|1 +(verb)|stand firm|hold firm|stand fast|insist|take a firm stand +stand sentinel|1 +(verb)|stand guard|stand watch|keep guard|guard +stand up|7 +(verb)|arise|rise|uprise|get up|change posture +(verb)|resist|hold out|withstand|stand firm +(verb)|stand|place upright|put|set|place|pose|position|lay +(verb)|stand|rest +(verb)|stick up|defend|support|fend for +(verb)|hold up|hold water|survive|last|live|live on|go|endure|hold up|hold out +(verb)|bristle|uprise +stand watch|1 +(verb)|stand guard|keep guard|stand sentinel|guard +standard|11 +(adj)|standard |modular|normative|regular|regulation|standardized|standardised|stock|normal +(adj)|common +(adj)|standard |accepted|authoritative|classical|definitive|basic|canonic|canonical|casebook|textbook|classic|criterial|criterional|orthodox +(adj)|standard |received|acceptable|accepted|normative|prescriptive +(adj)|stock|regular +(noun)|criterion|measure|touchstone|reference point|point of reference|reference +(noun)|criterion|ideal +(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|monetary standard|value +(noun)|post +(noun)|flag +standard-bearer|2 +(noun)|politician|politico|pol|political leader +(noun)|color bearer|soldier +standard and poor's|1 +(noun)|Standard and Poor's|Standard and Poor's Index|stock index|stock market index +standard and poor's index|1 +(noun)|Standard and Poor's|Standard and Poor's Index|stock index|stock market index +standard atmosphere|1 +(noun)|atmosphere|atm|standard pressure|pressure unit +standard candle|1 +(noun)|candle|candela|cd|luminous intensity unit|candlepower unit +standard cell|1 +(noun)|voltaic cell|galvanic cell|primary cell +standard deviation|1 +(noun)|variance +standard gauge|1 +(noun)|railroad track|railroad|railway|gauge +standard generalized markup language|1 +(noun)|SGML|markup language +standard of life|1 +(noun)|standard of living|degree|level|stage|point +standard of living|1 +(noun)|standard of life|degree|level|stage|point +standard of measurement|1 +(noun)|gauge|standard|criterion|measure|touchstone +standard operating procedure|1 +(noun)|standing operating procedure|SOP|standard procedure|operating procedure +standard poodle|1 +(noun)|poodle|poodle dog +standard pressure|1 +(noun)|standard atmosphere|atmosphere|atm|pressure unit +standard procedure|1 +(noun)|standing operating procedure|standard operating procedure|SOP|operating procedure +standard schnauzer|1 +(noun)|schnauzer +standard temperature|1 +(noun)|degree Centigrade|degree Celsius|C +standard time|1 +(noun)|civil time|local time|time +standard transmission|1 +(noun)|stick shift|transmission|transmission system +standardisation|3 +(noun)|standardization|condition|status +(noun)|standardization|normalization|normalisation|social control +(noun)|calibration|standardization|activity +standardise|2 +(verb)|standardize|measure|evaluate|valuate|assess|appraise|value +(verb)|standardize|regulate|regularize|regularise|order|govern +standardised|2 +(adj)|standardized|standard +(adj)|exchangeable|interchangeable|similar|standardized|replaceable +standardiser|1 +(noun)|standardizer|changer|modifier +standardization|3 +(noun)|standardisation|condition|status +(noun)|standardisation|normalization|normalisation|social control +(noun)|calibration|standardisation|activity +standardize|2 +(verb)|standardise|regulate|regularize|regularise|order|govern +(verb)|standardise|measure|evaluate|valuate|assess|appraise|value +standardized|2 +(adj)|standardised|standard +(adj)|exchangeable|interchangeable|similar|standardised|replaceable +standardizer|1 +(noun)|standardiser|changer|modifier +standby|3 +(adj)|secondary +(noun)|thing +(noun)|understudy|actor|histrion|player|thespian|role player +standdown|2 +(noun)|stand-down|abeyance|suspension +(noun)|stand-down|stop|stoppage +standee|2 +(noun)|stander +(noun)|cutout +stander|1 +(noun)|organism|being +standing|10 +(adj)|erect |vertical|upright +(adj)|standing |dead|stagnant|slack|still +(adj)|permanent |lasting +(adj)|standing |upright +(adj)|standing +(adj)|standing +(adj)|regular +(adj)|uncut|unfelled +(noun)|status|position +(noun)|motion|movement|move|motility +standing army|1 +(noun)|army|regular army|ground forces +standing committee|1 +(noun)|committee|commission +standing operating procedure|1 +(noun)|standard operating procedure|SOP|standard procedure|operating procedure +standing order|1 +(noun)|order|rules of order|parliamentary law|parliamentary procedure +standing ovation|1 +(noun)|ovation|recognition|credit +standing press|1 +(noun)|press|printing press +standing rib roast|1 +(noun)|rib roast|roast|joint +standing room|1 +(noun)|room|way|elbow room +standing stone|1 +(noun)|menhir|megalith|megalithic structure +standing wave|1 +(noun)|stationary wave|wave|undulation +standish|1 +(noun)|Standish|Miles Standish|Myles Standish|settler|colonist +standoff|2 +(noun)|draw|tie|finish +(noun)|repulsion|stand +standoffish|1 +(adj)|offish|unapproachable +standoffishness|1 +(noun)|aloofness|remoteness|withdrawnness|unsociability|unsociableness +standpat|1 +(adj)|fusty|unprogressive|nonprogressive|conservative +standpipe|1 +(noun)|pipe|pipage|piping +standpoint|1 +(noun)|point of view|viewpoint|stand|position|stance|posture +stands|13 +(noun)|stand|tiered seats +(noun)|base|pedestal|stand|support +(noun)|stand|position|place +(noun)|stand|vegetation|flora +(noun)|stand|table +(noun)|rack|stand|support +(noun)|stand|standstill|tie-up|stop|halt +(noun)|point of view|viewpoint|stand|standpoint|position|stance|posture +(noun)|stall|stand|sales booth|booth +(noun)|stand|stop|stopover|layover +(noun)|stand|tiered seats +(noun)|bandstand|outdoor stage|stand|platform +(noun)|stand|defense|defence|defensive measure +standstill|2 +(noun)|deadlock|dead end|impasse|stalemate|situation +(noun)|stand|tie-up|stop|halt +standup comedian|1 +(noun)|gagman|comedian|comic +stanford|2 +(noun)|Stanford|Leland Stanford|businessman|man of affairs +(noun)|Stanford University|Stanford|university +stanford-binet test|1 +(noun)|Stanford-Binet test|intelligence test|IQ test +stanford university|1 +(noun)|Stanford University|Stanford|university +stanford white|1 +(noun)|White|Stanford White|architect|designer +stanhopea|1 +(noun)|orchid|orchidaceous plant +stanislavsky|1 +(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor|histrion|player|thespian|role player|director|theater director|theatre director +stanley|2 +(noun)|Stanley|Francis Edgar Stanley|inventor|discoverer|artificer +(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist|explorer|adventurer +stanley baldwin|1 +(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman|solon|national leader +stanley frank musial|1 +(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer|baseball player +stanley kubrick|1 +(noun)|Kubrick|Stanley Kubrick|film maker|filmmaker|film producer|movie maker +stanley smith stevens|1 +(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist +stanley steamer|1 +(noun)|Stanley Steamer|car|auto|automobile|machine|motorcar +stanleya|1 +(noun)|Stanleya|genus Stanleya|dilleniid dicot genus +stanleya pinnata|1 +(noun)|desert plume|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub|suffrutex +stannic|1 +(adj)|stannous|metallic element|metal +stannic chloride|1 +(noun)|chloride +stannic sulfide|1 +(noun)|mosaic gold|pigment +stannite|1 +(noun)|tin pyrites|mineral +stannous|1 +(adj)|stannic|metallic element|metal +stannous fluoride|1 +(noun)|fluoride +stanton|1 +(noun)|Stanton|Elizabeth Cady Stanton|suffragist|feminist|women's rightist|women's liberationist|libber +stanza|1 +(noun)|text|textual matter +stapedectomy|1 +(noun)|ablation|extirpation|cutting out|excision +stapelia|1 +(noun)|carrion flower|starfish flower|herb|herbaceous plant +stapelias asterias|1 +(noun)|Stapelias asterias|stapelia|carrion flower|starfish flower +stapes|1 +(noun)|stirrup|auditory ossicle +staph|1 +(noun)|staphylococcus|staphylococci|coccus|cocci +staphylaceae|1 +(noun)|Staphylaceae|family Staphylaceae|bladdernut family|dicot family|magnoliopsid family +staphylea|1 +(noun)|Staphylea|genus Staphylea|dicot genus|magnoliopsid genus +staphylinidae|1 +(noun)|Staphylinidae|family Staphylinidae|arthropod family +staphylococcal|1 +(adj)|coccus|cocci +staphylococcal enterotoxin|1 +(noun)|enterotoxin +staphylococcal enterotoxin b|1 +(noun)|staphylococcal enterotoxin B|SEB|staphylococcal enterotoxin|bioweapon|biological weapon|bioarm +staphylococcal infection|1 +(noun)|infection +staphylococci|2 +(noun)|staphylococcus|staph|coccus|cocci +(noun)|staphylococcus|staph|coccus|cocci +staphylococcus|1 +(noun)|staphylococci|staph|coccus|cocci +staple|6 +(adj)|essential +(noun)|basic|commodity|trade goods|goods +(noun)|raw material|material|stuff +(noun)|nail +(noun)|paper fastener +(verb)|fasten|fix|secure +staple gun|2 +(noun)|staplegun|tacker|machine +(noun)| +stapled|1 +(adj)|pinned|fastened +staplegun|1 +(noun)|staple gun|tacker|machine +stapler|1 +(noun)|stapling machine|machine +stapling machine|1 +(noun)|stapler|machine +star|12 +(adj)|leading|prima|starring|stellar|major +(noun)|celestial body|heavenly body +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|superstar|whiz|whizz|wizard|wiz|expert +(noun)|celestial body|heavenly body +(noun)|plane figure|two-dimensional figure +(noun)|principal|lead|actor|histrion|player|thespian|role player +(noun)|headliner|performer|performing artist +(noun)|asterisk|character|grapheme|graphic symbol +(noun)|star topology|topology|network topology +(verb)|have|feature +(verb)|perform|execute|do +(verb)|asterisk|mark +star-duckweed|1 +(noun)|Lemna trisulca|duckweed +star-glory|1 +(noun)|cypress vine|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory +star-leaf begonia|1 +(noun)|star begonia|Begonia heracleifolia|begonia +star-nosed mole|1 +(noun)|starnose mole|Condylura cristata|mole +star-of-bethlehem|1 +(noun)|star-of-Bethlehem|bulbous plant +star-shaped|1 +(adj)|asteroid|angular |angulate +star-spangled banner|1 +(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag +star-thistle|1 +(noun)|caltrop|Centauria calcitrapa|centaury +star anise|3 +(noun)|Chinese anise|Illicium verum|anise tree +(noun)|Illicium anisatum|anise tree +(noun)|Chinese anise|star aniseed|spice +star aniseed|1 +(noun)|Chinese anise|star anise|spice +star apple|1 +(noun)|caimito|Chrysophyllum cainito|fruit tree +star begonia|1 +(noun)|star-leaf begonia|Begonia heracleifolia|begonia +star chamber|1 +(noun)|Star Chamber|court|tribunal|judicature +star chart|1 +(noun)|chart +star divination|1 +(noun)|astrology|pseudoscience +star drill|1 +(noun)|bore bit|borer|rock drill|stone drill +star earthball|1 +(noun)|Scleroderma flavidium|earthball|false truffle|puffball|hard-skinned puffball +star fruit|1 +(noun)|carambola|edible fruit +star grass|4 +(noun)|colicroot|colic root|crow corn|unicorn root|liliaceous plant +(noun)|cormous plant +(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|Cynodon dactylon|grass +(noun)|windmill grass|creeping windmill grass|Chloris truncata|finger grass +star ipomoea|1 +(noun)|red morning-glory|Ipomoea coccinea|morning glory +star jasmine|1 +(noun)|confederate jasmine|Trachelospermum jasminoides|vine +star magnolia|1 +(noun)|Magnolia stellata|magnolia +star of david|1 +(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem|allegory|hexagram +star of the veldt|1 +(noun)|cape marigold|sun marigold|flower +star sapphire|1 +(noun)|sapphire +star saxifrage|1 +(noun)|starry saxifrage|Saxifraga stellaris|saxifrage|breakstone|rockfoil +star shell|1 +(noun)|flare|flash +star sign|1 +(noun)|sign of the zodiac|sign|mansion|house|planetary house|region|part +star topology|1 +(noun)|star|topology|network topology +star tulip|1 +(noun)|elegant cat's ears|Calochortus elegans|mariposa|mariposa tulip|mariposa lily +starboard|3 +(adj)|right +(noun)|side +(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise +starch|2 +(noun)|amylum|polysaccharide|polyose +(verb)|stiffen +starch wheat|1 +(noun)|emmer|two-grain spelt|Triticum dicoccum|wheat|corn +starchless|1 +(adj)|starchless +starchlike|1 +(adj)|amylaceous|amyloid|amyloidal|farinaceous|starchy +starchy|2 +(adj)|starchy |starchlike|amylaceous|amyloid|amyloidal|farinaceous +(adj)|stiff|buckram|formal +stardom|1 +(noun)|high status +stardust|1 +(noun)|romanticism|romance +stare|3 +(noun)|look|looking|looking at +(verb)|gaze|look +(verb)|look +stare down|1 +(verb)|outstare|outface|gaze|stare +starer|1 +(noun)|spectator|witness|viewer|watcher|looker +starets|1 +(noun)|Catholic +starfish|1 +(noun)|sea star|echinoderm +starfish flower|1 +(noun)|stapelia|carrion flower|herb|herbaceous plant +starflower|1 +(noun)|sleepy dick|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem +stargaze|2 +(verb)|gaze|stare +(verb)|dream|daydream|woolgather|imagine|conceive of|ideate|envisage +stargazer|3 +(noun)|lotus-eater|daydreamer|woolgatherer +(noun)|astronomer|uranologist|physicist +(noun)|percoid fish|percoid|percoidean +stargazing|1 +(noun)|observation|observance|watching +staring|3 +(adj)|agaze|open |opened +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|thoroughgoing|utter|unmitigated +(adv)|staringly +staringly|1 +(adv)|staring +stark|5 +(adj)|blunt|crude|unconditional +(adj)|austere|severe|plain +(adj)|immoderate +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|staring|thoroughgoing|utter|unmitigated +(adj)|bare|barren|bleak|desolate|inhospitable +stark naked|1 +(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|unclothed +starkers|1 +(adj)|unclothed +starkness|1 +(noun)|bareness|plainness +starless|1 +(adj)|starless +starlet|1 +(noun)|actress +starlight|1 +(noun)|light|visible light|visible radiation +starlike|1 +(adj)|starry +starling|1 +(noun)|oscine|oscine bird +starlit|1 +(adj)|starry +starnose mole|1 +(noun)|star-nosed mole|Condylura cristata|mole +starr|1 +(noun)|Starr|Ringo Starr|Richard Starkey|rock star|drummer +starred|1 +(adj)|asterisked|marked +starring|1 +(adj)|leading|prima|star|stellar|major +starry|1 +(adj)|starry |sparkling|starlit|starlike +starry-eyed|1 +(adj)|optimistic +starry saxifrage|1 +(noun)|star saxifrage|Saxifraga stellaris|saxifrage|breakstone|rockfoil +stars and bars|1 +(noun)|Stars and Bars|Confederate flag|flag +stars and stripes|1 +(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag +starship|1 +(noun)|spaceship|spacecraft|ballistic capsule|space vehicle +start|21 +(noun)|beginning +(noun)|beginning|commencement|first|outset|get-go|kickoff|starting time|showtime|offset|point|point in time +(noun)|starting|turn|play +(noun)|startle|jump|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|beginning|commencement|change of state +(noun)|starting line|line +(noun)|starting signal|signal|signaling|sign +(noun)|head start|advantage|vantage +(verb)|get down|begin|get|start out|set about|set out|commence +(verb)|begin|lead off|commence +(verb)|depart|part|start out|set forth|set off|set out|take off|leave|go forth|go away +(verb)|begin +(verb)|originate|initiate|make|create +(verb)|start up|embark on|commence|begin|lead off|commence +(verb)|startle|jump|move +(verb)|start up +(verb)|go|get going +(verb)|take up +(verb)|play +(verb)|begin|be +(verb)|begin|act|move +start-off|1 +(noun)|kickoff|send-off|start +start out|2 +(verb)|get down|begin|get|start|set about|set out|commence +(verb)|depart|part|start|set forth|set off|set out|take off|leave|go forth|go away +start up|2 +(verb)|start +(verb)|start|embark on|commence|begin|lead off|start|commence +starter|7 +(noun)|starter motor|starting motor|electric motor +(noun)|culture +(noun)|contestant +(noun)|dispatcher|official +(noun)|newcomer|fledgling|fledgeling|neophyte|freshman|newbie|entrant|novice|beginner|tyro|tiro|initiate +(noun)|appetizer|appetiser|course +(noun)|crank|hand tool +starter motor|1 +(noun)|starter|starting motor|electric motor +starting|3 +(adj)|protrusive +(adj)|opening +(noun)|start|turn|play +starting block|1 +(noun)|block +starting buffer|1 +(noun)|buffer solution +starting gate|1 +(noun)|starting stalls|barrier +starting handle|1 +(noun)|crank handle|crank|starter +starting line|1 +(noun)|start|line +starting motor|1 +(noun)|starter|starter motor|electric motor +starting pitcher|1 +(noun)|pitcher|hurler|twirler|starter +starting point|1 +(noun)|terminus a quo|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +starting post|1 +(noun)|post|stake +starting signal|1 +(noun)|start|signal|signaling|sign +starting stalls|1 +(noun)|starting gate|barrier +starting time|1 +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|showtime|offset|point|point in time +startle|3 +(noun)|jump|start|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|galvanize|galvanise|shock|stun|floor|ball over|blow out of the water|take aback +(verb)|jump|start|move +startle reaction|1 +(noun)|startle response|startle|jump|start +startle reflex|1 +(noun)|Moro reflex|startle|jump|start +startle response|1 +(noun)|startle reaction|startle|jump|start +startled|1 +(adj)|surprised +startling|1 +(adj)|surprising +startup|2 +(noun)|beginning|start|commencement +(noun)|inauguration|beginning|start|commencement +starvation|2 +(noun)|famishment|hunger|hungriness +(noun)|starving|privation|deprivation +starvation acidosis|1 +(noun)|acidosis +starve|5 +(verb)|hunger|famish|suffer|hurt +(verb)|famish|die|decease|perish|go|exit|pass away|expire|pass +(verb)|famish|deprive +(verb)|crave|hunger|thirst|lust|desire|want +(verb)|deprive +starved|2 +(adj)|starving|malnourished +(adj)|famished|ravenous|sharp-set|esurient|hungry +starved aster|1 +(noun)|calico aster|aster +starveling|1 +(noun)|pauper|poor man +starving|2 +(adj)|starved|malnourished +(noun)|starvation|privation|deprivation +starwort|1 +(noun)|stitchwort|greater stitchwort|Stellaria holostea|chickweed +stash|2 +(noun)|hoard|cache|store|stock|fund +(verb)|hoard|cache|lay away|hive up|squirrel away|save|lay aside|save up +stash away|1 +(verb)|store|hive away|lay in|put in|salt away|stack away|keep|hold on +stash house|1 +(noun)|house +stasis|2 +(noun)|pathology +(noun)|inaction|inactivity|inactiveness +stassano furnace|1 +(noun)|Stassano furnace|electric-arc furnace|electric furnace +stat mi|1 +(noun)|mile|statute mile|land mile|mi|linear unit +statant|1 +(adj)|erect |vertical|upright +state|10 +(noun)|government|authorities|regime +(noun)|province|administrative district|administrative division|territorial division +(noun)|nation|country|land|commonwealth|res publica|body politic|political unit +(noun)|Department of State|State Department|State|DoS|executive department +(noun)|country|land|administrative district|administrative division|territorial division +(noun)|emotional state|spirit +(noun)|state of matter|chemical phenomenon +(verb)|say|tell|express|verbalize|verbalise|utter|give tongue to +(verb)|submit|put forward|posit|propose|suggest|advise +(verb)|express|denote|refer +state's attorney|1 +(noun)|state attorney|prosecutor|public prosecutor|prosecuting officer|prosecuting attorney +state's evidence|1 +(noun)|evidence +state-controlled|1 +(adj)|collectivist|collectivistic|collectivized|collectivised|socialistic |socialist +state-of-the-art|1 +(adj)|progressive +state-sponsored terrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +state-supported|1 +(adj)|public +state attorney|1 +(noun)|state's attorney|prosecutor|public prosecutor|prosecuting officer|prosecuting attorney +state bank|1 +(noun)|depository financial institution|bank|banking concern|banking company +state boundary|1 +(noun)|state line|boundary line|border|borderline|delimitation|mete +state capital|1 +(noun)|capital|city|metropolis|urban center +state capitalism|1 +(noun)|economy|economic system +state change|1 +(noun)|phase change|phase transition|physical change|natural process|natural action|action|activity +state department|2 +(noun)|Department of State|State Department|State|DoS|executive department +(noun)|State Department|government department +state government|1 +(noun)|government|authorities|regime +state highway|1 +(noun)|expressway|freeway|motorway|pike|superhighway|throughway|thruway|highway|main road +state line|1 +(noun)|state boundary|boundary line|border|borderline|delimitation|mete +state of affairs|1 +(noun)|situation|state +state of bahrain|1 +(noun)|Bahrain|State of Bahrain|Bahrein|Asian country|Asian nation +state of eritrea|1 +(noun)|Eritrea|State of Eritrea|African country|African nation +state of flux|1 +(noun)|flux|state +state of grace|1 +(noun)|grace|saving grace|state +state of israel|1 +(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country|state|land +state of katar|1 +(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country|Asian nation +state of kuwait|1 +(noun)|Kuwait|State of Kuwait|Koweit|Asian country|Asian nation +state of matter|1 +(noun)|state|chemical phenomenon +state of mind|2 +(noun)|frame of mind|temporary state|psychological state|mental state +(noun)|cognitive state|state +state of nature|1 +(noun)|wild|natural state|state +state of qatar|1 +(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country|Asian nation +state of the art|1 +(noun)|degree|level|stage|point +state of the vatican city|1 +(noun)|Holy See|The Holy See|State of the Vatican City|European country|European nation|see +state of war|1 +(noun)|war|hostility|enmity|antagonism +state prison|1 +(noun)|prison|prison house +state senator|1 +(noun)|senator +state socialism|1 +(noun)|economy|economic system +state supreme court|1 +(noun)|supreme court|high court|court|tribunal|judicature +state tax lien|1 +(noun)|tax lien +state treasurer|1 +(noun)|treasurer|financial officer +state trooper|1 +(noun)|trooper|policeman|police officer|officer +statecraft|1 +(noun)|statesmanship|diplomacy|wisdom|wiseness +stated|1 +(adj)|declared|explicit |expressed +statehouse|1 +(noun)|Statehouse|government building +stateless|1 +(adj)|homeless|unsettled +stateless person|1 +(noun)|displaced person|DP|refugee +stateliness|2 +(noun)|formality|formalness +(noun)|majesty|loftiness|impressiveness|grandness|magnificence +stately|3 +(adj)|baronial|imposing|noble|impressive +(adj)|statuesque|tall +(adj)|courtly|elegant|formal|dignified +stately home|1 +(noun)|mansion|mansion house|manse|hall|residence +statement|7 +(noun)|message|content|subject matter|substance +(noun)|argument|evidence +(noun)|theme|melodic theme|musical theme|idea +(noun)|message|content|subject matter|substance +(noun)|affirmation|assertion|speech act +(noun)|instruction|command|program line|code|computer code +(noun)|financial statement|commercial document|commercial instrument +staten island|1 +(noun)|Staten Island|borough +stater|2 +(noun)|coin +(noun)|resident|occupant|occupier +stateroom|1 +(noun)|cabin +states' rights|2 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|right +states' rights democratic party|1 +(noun)|States' Rights Democratic Party|Dixiecrats|party|political party +states general|1 +(noun)|States General|assembly +statesman|1 +(noun)|solon|national leader|politician|politico|pol|political leader +statesmanlike|1 +(adj)|statesmanlike |statesmanly|diplomatic|wise|presidential +statesmanly|1 +(adj)|statesmanlike |diplomatic|wise|presidential +statesmanship|1 +(noun)|statecraft|diplomacy|wisdom|wiseness +stateswoman|1 +(noun)|statesman|solon|national leader +statewide|1 +(adj)|wide |broad +static|6 +(adj)|unchanging|undynamic |adynamic +(adj)|inactive|motionless|still|nonmoving |unmoving +(adj)|electrostatic|electricity +(adj)|stable|unchanging|unchangeable +(noun)|atmospherics|atmospheric static|noise|interference|disturbance +(noun)|criticism|unfavorable judgment +static electricity|1 +(noun)|electricity +static line|1 +(noun)|cord +static magnet|1 +(noun)|permanent magnet|magnet +static tube|1 +(noun)|measuring instrument|measuring system|measuring device +statice|1 +(noun)|sea lavender|marsh rosemary|subshrub|suffrutex +statics|3 +(noun)|mechanics +(noun)|static|atmospherics|atmospheric static|noise|interference|disturbance +(noun)|static|criticism|unfavorable judgment +statin|1 +(noun)|lipid-lowering medicine|lipid-lowering medication|statin drug|medicine|medication|medicament|medicinal drug +statin drug|1 +(noun)|lipid-lowering medicine|lipid-lowering medication|statin|medicine|medication|medicament|medicinal drug +station|5 +(noun)|facility|installation +(noun)|place|social station|social status|social rank|rank +(noun)|position|place +(noun)|post|position|place +(verb)|post|base|send|place|move|displace +station agent|1 +(noun)|stationmaster|master +station house|1 +(noun)|police station|police headquarters|police office|station +station keeper|1 +(noun)|desk sergeant|deskman|police sergeant|sergeant +station waggon|1 +(noun)|beach wagon|station wagon|wagon|beach waggon|waggon|car|auto|automobile|machine|motorcar +station wagon|1 +(noun)|beach wagon|wagon|beach waggon|station waggon|waggon|car|auto|automobile|machine|motorcar +stationariness|1 +(noun)|immobility|fixedness|motionlessness|stillness +stationary|2 +(adj)|nonmoving |unmoving +(adj)|fixed +stationary stochastic process|1 +(noun)|stochastic process +stationary wave|1 +(noun)|standing wave|wave|undulation +stationer|1 +(noun)|stationery seller|merchant|merchandiser +stationery|1 +(noun)|letter paper|writing paper +stationery seller|1 +(noun)|stationer|merchant|merchandiser +stationmaster|1 +(noun)|station agent|master +stations|5 +(noun)|Stations|Stations of the Cross|devotion +(noun)|station|facility|installation +(noun)|place|station|social station|social status|social rank|rank +(noun)|station|position|place +(noun)|post|station|position|place +stations of the cross|2 +(noun)|stations of the Cross|representation +(noun)|Stations|Stations of the Cross|devotion +statistic|1 +(noun)|datum|data point +statistical|1 +(adj)|applied mathematics|applied math +statistical commission|1 +(noun)|Statistical Commission|Economic and Social Council commission|ECOSOC commission +statistical distribution|1 +(noun)|distribution|arrangement|organization|organisation|system +statistical mechanics|1 +(noun)|physics|physical science|natural philosophy +statistical method|1 +(noun)|statistical procedure|method +statistical procedure|1 +(noun)|statistical method|method +statistical regression|1 +(noun)|regression|simple regression|regression toward the mean|statistical method|statistical procedure +statistical table|1 +(noun)|actuarial table|table|tabular array +statistician|2 +(noun)|mathematical statistician|mathematician +(noun)|actuary|calculator|reckoner|figurer|estimator|computer +statistics|2 +(noun)|applied mathematics|applied math +(noun)|statistic|datum|data point +stative|1 +(adj)|stative +stator|1 +(noun)|stator coil|mechanical device +stator coil|1 +(noun)|stator|mechanical device +statuary|2 +(adj)|sculpture +(noun)|collection|aggregation|accumulation|assemblage +statue|1 +(noun)|sculpture +statue maker|1 +(noun)|sculptor|sculpturer|carver|artist|creative person +statue of liberty|1 +(noun)|Statue of Liberty|statue|memorial|monument +statuesque|2 +(adj)|stately|tall +(adj)|Junoesque|shapely +statuette|1 +(noun)|figurine|figure +stature|2 +(noun)|esteem|regard|respect +(noun)|height|bodily property +status|2 +(noun)|position|state +(noun)|condition|state +status asthmaticus|1 +(noun)|asthma|asthma attack|bronchial asthma +status epilepticus|1 +(noun)|epilepsy +status quo|1 +(noun)|situation|state of affairs +status seeking|1 +(noun)|power hunger|ambition|ambitiousness +statute|2 +(adj)|codified|written +(noun)|legislative act|act|enactment +statute book|1 +(noun)|written record|written account +statute law|1 +(noun)|legislation|civil law +statute mile|1 +(noun)|mile|stat mi|land mile|mi|linear unit +statute of limitations|1 +(noun)|law +statute title|1 +(noun)|title|rubric|heading|header|head +statutory|2 +(adj)|act|enactment +(adj)|legal +statutory law|1 +(noun)|law|jurisprudence +statutory offence|1 +(noun)|statutory offense|regulatory offense|regulatory offence|crime|law-breaking +statutory offense|1 +(noun)|statutory offence|regulatory offense|regulatory offence|crime|law-breaking +statutory rape|1 +(noun)|carnal abuse|rape|violation|assault|ravishment +staunch|2 +(adj)|steadfast|unswerving|constant +(verb)|stem|stanch|halt|check +staunchly|1 +(adv)|stanchly +staunchness|1 +(noun)|steadfastness|loyalty +staurikosaur|1 +(noun)|staurikosaurus|ornithischian|ornithischian dinosaur +staurikosaurus|1 +(noun)|staurikosaur|ornithischian|ornithischian dinosaur +stavanger|1 +(noun)|Stavanger|city|metropolis|urban center|port +stave|5 +(noun)|staff|musical notation +(noun)|lag|slat|spline +(noun)|rung|round|crosspiece +(verb)|equip|fit|fit out|outfit +(verb)|stave in|burst|split|break open +stave in|2 +(verb)|break in +(verb)|stave|burst|split|break open +stave off|1 +(verb)|debar|obviate|deflect|avert|head off|fend off|avoid|ward off|prevent|forestall|foreclose|preclude|forbid +stave wood|1 +(noun)|red beech|brown oak|booyong|crow's foot|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +stay|15 +(noun)|act|human action|human activity +(noun)|decree|edict|fiat|order|rescript +(noun)|arrest|check|halt|hitch|stop|stoppage|inaction|inactivity|inactiveness +(noun)|brace|bracing +(noun)|strip|slip +(verb)|remain|rest|be +(verb)|stick|stick around|stay put|stay in place +(verb)|bide|abide|stay on|continue|remain +(verb)|stay on|continue|remain|be +(verb)|detain|delay|check|retard|delay +(verb)|persist|remain +(verb)|last out|ride out|outride +(verb)|stop|halt|block|kibosh +(verb)|fasten|fix|secure +(verb)|quell|appease|meet|satisfy|fill|fulfill|fulfil +stay-at-home|2 +(adj)|provincial +(noun)|homebody|adult|grownup +stay at|1 +(verb)|occupy|reside|lodge in +stay away|1 +(verb)|stand back|keep one's eyes off|keep one's distance|keep one's hands off|be +stay fresh|1 +(verb)|keep|stay|remain|rest +stay of execution|1 +(noun)|stay +stay off|1 +(verb)|keep off|avoid +stay on|1 +(verb)|stay|continue|remain|be +stay over|1 +(verb)|sleep over|lodge +stay put|1 +(verb)|stay|stick|stick around|stay in place +stay together|1 +(verb)|stick together|stay|remain|rest +stay up|1 +(verb)|sit up|wake +stayer|1 +(noun)|animal|animate being|beast|brute|creature|fauna +staying power|1 +(noun)|stamina|toughness|endurance +stayman|1 +(noun)|Stayman|eating apple|dessert apple +stayman winesap|1 +(noun)|Stayman Winesap|eating apple|dessert apple +stays|6 +(noun)|corset|girdle|foundation garment|foundation +(noun)|stay|act|human action|human activity +(noun)|stay|decree|edict|fiat|order|rescript +(noun)|arrest|check|halt|hitch|stay|stop|stoppage|inaction|inactivity|inactiveness +(noun)|stay|brace|bracing +(noun)|stay|strip|slip +staysail|1 +(noun)|fore-and-aft sail +stead|1 +(noun)|position|place|lieu|function|office|part|role +steadfast|2 +(adj)|firm|steady|unbendable|unfaltering|unshakable|unwavering|resolute +(adj)|staunch|unswerving|constant +steadfastly|1 +(adv)|firm|firmly|unwaveringly +steadfastness|2 +(noun)|staunchness|loyalty +(noun)|resoluteness|firmness|resolve|resolution +steadied|1 +(adj)|steady +steadily|1 +(adv)|steady +steadiness|2 +(noun)|firmness|immovability|immovableness +(noun)|regularity +steady|11 +(adj)|steady |dependable|rock-steady|steady-going|even|regular|fastened|fixed|firm|surefooted|footsure|level|unwavering|steadied|sure|even|stable|unagitated +(adj)|changeless|constant|invariant|unvarying|invariable +(adj)|firm|unfluctuating|stable +(adj)|secure +(adj)|firm|steadfast|unbendable|unfaltering|unshakable|unwavering|resolute +(adj)|regular|frequent +(adj)|unexcitable +(noun)|sweetheart|sweetie|truelove|lover +(verb)|calm|becalm|stabilize|stabilise +(verb)|brace|stabilize|stabilise|strengthen|beef up|fortify +(adv)|steadily +steady-going|1 +(adj)|dependable|rock-steady|steady +steady down|1 +(verb)|settle|root|take root|settle down|stabilize|stabilise +steadying|1 +(adj)|helpful +steak|1 +(noun)|cut|cut of meat +steak and kidney pie|1 +(noun)|meat pie +steak au poivre|1 +(noun)|peppered steak|pepper steak|dish +steak knife|1 +(noun)|table knife +steak sauce|1 +(noun)|condiment +steak tartare|1 +(noun)|tartar steak|cannibal mound|dish +steakhouse|1 +(noun)|chophouse|restaurant|eating house|eating place +steal|6 +(noun)|bargain|buy|purchase +(noun)|baseball|baseball game|ball +(verb)|take +(verb)|slip|move|steal away +(verb)|gain|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|sneak|mouse|creep|pussyfoot|walk +steal away|1 +(verb)|slip away|sneak away|sneak off|sneak out|leave|go forth|go away +stealer|1 +(noun)|thief|criminal|felon|crook|outlaw|malefactor +stealing|2 +(noun)|larceny|theft|thievery|thieving|felony +(noun)|stealth|concealment|concealing|hiding +stealth|1 +(noun)|stealing|concealment|concealing|hiding +stealth aircraft|1 +(noun)|aircraft +stealth bomber|1 +(noun)|bomber|stealth aircraft +stealth fighter|1 +(noun)|fighter|fighter aircraft|attack aircraft|stealth aircraft +stealthiness|1 +(noun)|furtiveness|sneakiness|closeness|secretiveness +stealthy|1 +(adj)|furtive|lurking|skulking|sneak|sneaky|surreptitious|concealed +steam|7 +(noun)|vapor|vapour +(verb)|travel|go|move|locomote +(verb)|emit|give out|give off +(verb)|rise|lift|arise|move up|go up|come up|uprise +(verb)|anger|see red +(verb)|steam clean|clean|make clean +(verb)|cook +steam-heat|1 +(verb)|heat +steam-powered|1 +(adj)|powered +steam bath|2 +(noun)|steam room|vapor bath|vapour bath|room +(noun)|Turkish bath|vapor bath|vapour bath|ablution +steam boiler|1 +(noun)|boiler|vessel +steam chest|1 +(noun)|chamber +steam clean|1 +(verb)|steam|clean|make clean +steam coal|1 +(noun)|coal +steam engine|1 +(noun)|external-combustion engine +steam fitting|1 +(noun)|care|maintenance|upkeep +steam heat|1 +(noun)|steam heating|heating system|heating plant|heating|heat +steam heating|1 +(noun)|steam heat|heating system|heating plant|heating|heat +steam iron|1 +(noun)|iron|smoothing iron +steam line|1 +(noun)|steam pipe|pipe|pipage|piping +steam locomotive|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +steam organ|1 +(noun)|calliope|musical instrument|instrument +steam pipe|1 +(noun)|steam line|pipe|pipage|piping +steam room|1 +(noun)|steam bath|vapor bath|vapour bath|room +steam shovel|1 +(noun)|power shovel|excavator|digger|shovel +steam turbine|1 +(noun)|turbine +steam whistle|1 +(noun)|whistle +steamboat|1 +(noun)|boat +steamed|2 +(adj)|cooked +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|stunng|displeased +steamed pudding|1 +(noun)|pudding +steamer|4 +(noun)|soft-shell clam|steamer clam|long-neck clam|clam +(noun)|cooking utensil|cookware +(noun)|steamship|ship +(noun)|soft-shell clam|steamer clam|long-neck clam|Mya arenaria|clam +steamer clam|2 +(noun)|soft-shell clam|steamer|long-neck clam|clam +(noun)|soft-shell clam|steamer|long-neck clam|Mya arenaria|clam +steamfitter|1 +(noun)|craftsman|artisan|journeyman|artificer +steaming|2 +(adj)|wet +(adv)|piping +steamroll|4 +(verb)|steamroller|coerce|hale|squeeze|pressure|force +(verb)|steamroller|go|proceed|move +(verb)|steamroller|overpower|overmaster|overwhelm +(verb)|steamroller|flatten +steamroller|7 +(noun)|juggernaut|power|force +(noun)|road roller|vehicle +(verb)|steamroll|coerce|hale|squeeze|pressure|force +(verb)|steamroll|go|proceed|move +(verb)|squash|crush|squelch|mash|squeeze +(verb)|steamroll|overpower|overmaster|overwhelm +(verb)|steamroll|flatten +steamship|1 +(noun)|steamer|ship +steamship company|1 +(noun)|steamship line|line +steamship line|1 +(noun)|steamship company|line +steamy|1 +(adj)|muggy|sticky|wet +stearic|1 +(adj)|lipid|lipide|lipoid +stearic acid|1 +(noun)|octadecanoic acid|saturated fatty acid +stearin|1 +(noun)|glyceryl ester +steatite|1 +(noun)|soapstone|soaprock|soap-rock|talc|talcum +steatocystoma|1 +(noun)|sebaceous cyst|pilar cyst|wen|cyst +steatornis|1 +(noun)|Steatornis|genus Steatornis|bird genus +steatornis caripensis|1 +(noun)|oilbird|guacharo|Steatornis caripensis|caprimulgiform bird +steatornithidae|1 +(noun)|Steatornithidae|family Steatornithidae|bird family +steatorrhea|1 +(noun)|symptom +steed|1 +(noun)|warhorse +steel|5 +(noun)|alloy|metal +(noun)|sword|blade|brand|weapon|arm|weapon system +(noun)|sharpener +(verb)|nerve|brace|poise +(verb)|cover +steel-plated|1 +(adj)|armor-clad|armour-clad|armor-plated|armour-plated|armored |armoured +steel-wool pad|1 +(noun)|abrader|abradant +steel arch bridge|1 +(noun)|bridge|span +steel band|1 +(noun)|dance band|band|dance orchestra +steel blue|1 +(noun)|blue|blueness +steel company|1 +(noun)|company +steel drum|1 +(noun)|percussion instrument|percussive instrument +steel engraving|3 +(noun)|engraving +(noun)|engraving +(noun)|engraving|etching +steel factory|1 +(noun)|steel mill|steelworks|steel plant|factory|mill|manufacturing plant|manufactory +steel gray|1 +(noun)|iron blue|Davy's gray|gray|grayness|grey|greyness +steel guitar|1 +(noun)|Hawaiian guitar|guitar +steel industry|1 +(noun)|industry +steel mill|1 +(noun)|steelworks|steel plant|steel factory|factory|mill|manufacturing plant|manufactory +steel oneself against|1 +(verb)|steel onself for|brace oneself for|prepare for|inure|harden|indurate +steel onself for|1 +(verb)|steel oneself against|brace oneself for|prepare for|inure|harden|indurate +steel plant|1 +(noun)|steel mill|steelworks|steel factory|factory|mill|manufacturing plant|manufactory +steel plate|1 +(noun)|plate +steel production|1 +(noun)|production +steel trap|1 +(noun)|acuteness|acuity|sharpness|keenness +steel wool|1 +(noun)|wire wool|abrasive|abradant|abrasive material +steele|1 +(noun)|Steele|Sir Richrd Steele|writer|author +steelmaker|1 +(noun)|steelworker|steelman|maker|shaper +steelman|1 +(noun)|steelmaker|steelworker|maker|shaper +steelworker|1 +(noun)|steelmaker|steelman|maker|shaper +steelworks|1 +(noun)|steel mill|steel plant|steel factory|factory|mill|manufacturing plant|manufactory +steely|2 +(adj)|hard +(adj)|hard +steelyard|1 +(noun)|lever scale|beam scale|balance +steenbok|1 +(noun)|steinbok|Raphicerus campestris|antelope +steep|6 +(adj)|steep |abrupt|precipitous|sharp|bluff|bold|sheer|heavy|perpendicular|steepish|vertical|perpendicular +(adj)|exorbitant|extortionate|outrageous|unconscionable|usurious|immoderate +(adj)|high +(noun)|descent|declivity|fall|decline|declination|declension|downslope +(verb)|immerse|engulf|plunge|engross|absorb|soak up|concentrate|focus|center|centre|pore|rivet +(verb)|infuse|soak|imbue +steepen|2 +(verb)|change +(verb)|change|alter|modify +steeper|1 +(noun)|vessel +steepish|1 +(adj)|steep +steeple|1 +(noun)|spire|tower +steeplechase|2 +(noun)|footrace|foot race|run +(noun)|horse race +steeplechaser|1 +(noun)|horse|Equus caballus|racer +steeplejack|1 +(noun)|laborer|manual laborer|labourer|jack +steepness|1 +(noun)|abruptness|precipitousness|gradient|slope +steer|5 +(noun)|tip|lead|confidential information|wind|hint|guidance|counsel|counseling|counselling|direction +(noun)|bullock|cattle|cows|kine|oxen|Bos taurus +(verb)|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise|control|command +(verb)|control|command +(verb)|guide|direct +steer roping|1 +(noun)|roping +steerable|1 +(adj)|dirigible|manageable +steerage|2 +(noun)|accommodation +(noun)|steering|control +steerageway|1 +(noun)|speed|velocity +steerer|2 +(noun)|helmsman|steersman|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +(noun)|decoy|deceiver|cheat|cheater|trickster|beguiler|slicker|accomplice|confederate +steering|3 +(noun)|guidance|management|direction +(noun)|guidance|direction|control +(noun)|steerage|control +steering committee|1 +(noun)|committee|commission +steering gear|1 +(noun)|gear|gear mechanism +steering linkage|1 +(noun)|mechanism +steering mechanism|1 +(noun)|steering system|mechanism +steering system|1 +(noun)|steering mechanism|mechanism +steering wheel|1 +(noun)|wheel|handwheel +steersman|1 +(noun)|helmsman|steerer|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +stefan wyszynski|1 +(noun)|Wyszynski|Stefan Wyszynski|archpriest|hierarch|high priest|prelate|primate +stefan zweig|1 +(noun)|Zweig|Stefan Zweig|writer|author +steffens|1 +(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist +steffi graf|1 +(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player +steganopus|1 +(noun)|Steganopus|genus Steganopus|bird genus +steganopus tricolor|1 +(noun)|Wilson's phalarope|Steganopus tricolor|phalarope +stegocephalia|1 +(noun)|Stegocephalia|order Stegocephalia|animal order +stegosaur|1 +(noun)|stegosaurus|Stegosaur stenops|armored dinosaur +stegosaur stenops|1 +(noun)|stegosaur|stegosaurus|Stegosaur stenops|armored dinosaur +stegosaurus|1 +(noun)|stegosaur|Stegosaur stenops|armored dinosaur +steichen|1 +(noun)|Steichen|Edward Jean Steichen|photographer|lensman +stein|2 +(noun)|beer mug|mug +(noun)|Stein|Gertrude Stein|writer|author +steinbeck|1 +(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer|author +steinberg|1 +(noun)|Steinberg|Saul Steinberg|cartoonist +steinbok|1 +(noun)|steenbok|Raphicerus campestris|antelope +steinem|1 +(noun)|Steinem|Gloria Steinem|feminist|women's rightist|women's liberationist|libber +steinert's disease|1 +(noun)|myotonic muscular dystrophy|myotonic dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy|dystrophy +steinman|1 +(noun)|Steinman|David Barnard Steinman|civil engineer +steinmetz|1 +(noun)|Steinmetz|Charles Proteus Steinmetz|electrical engineer|inventor|discoverer|artificer +steinway|1 +(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker +stela|1 +(noun)|stele|stone|antiquity +stele|2 +(noun)|vascular tissue +(noun)|stela|stone|antiquity +stelis|1 +(noun)|orchid|orchidaceous plant +stella|1 +(noun)|Stella|Frank Stella|Frank Philip Stella|painter +stellar|2 +(adj)|leading|prima|star|starring|major +(adj)|astral|celestial body|heavenly body +stellar's sea eagle|1 +(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle +stellar parallax|1 +(noun)|heliocentric parallax|annual parallax +stellaria|1 +(noun)|Stellaria|genus Stellaria|caryophylloid dicot family +stellaria holostea|1 +(noun)|stitchwort|greater stitchwort|starwort|Stellaria holostea|chickweed +stellaria media|1 +(noun)|common chickweed|Stellaria media|chickweed +stellate|1 +(adj)|radial|symmetrical |symmetric +stellate venule|1 +(noun)|venule|venula|capillary vein +steller|1 +(noun)|Steller|Georg Wilhelm Steller|naturalist|natural scientist +steller's sea cow|1 +(noun)|Steller's sea cow|Hydrodamalis gigas|sea cow|sirenian mammal|sirenian +steller's sea lion|1 +(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion +steller sea lion|1 +(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion +stellite|1 +(noun)|Stellite|alloy|metal +stem|10 +(noun)|root|root word|base|theme|radical|form|word form|signifier|descriptor +(noun)|stalk|plant organ +(noun)|shank|cylinder +(noun)|tube|tubing +(noun)|bow|fore|prow|front +(noun)|stem turn|turn|turning +(verb)|originate in +(verb)|orient +(verb)|stanch|staunch|halt|check +(verb)|remove|take|take away|withdraw +stem-cell research|1 +(noun)|biological research +stem-winder|1 +(noun)|watch|ticker +stem blight|1 +(noun)|blight +stem canker|1 +(noun)|little potato|rosette|russet scab|rhizoctinia disease +stem cell|1 +(noun)|somatic cell|vegetative cell +stem ginger|1 +(noun)|common ginger|Canton ginger|Zingiber officinale|ginger +stem lettuce|1 +(noun)|celtuce|Lactuca sativa asparagina|lettuce +stem turn|1 +(noun)|stem|turn|turning +stem vowel|1 +(noun)|thematic vowel|vowel|vowel sound +stemless|2 +(adj)|stemless |stemmed +(adj)|acaulescent +stemless carline thistle|1 +(noun)|Carlina acaulis|carline thistle +stemless daisy|1 +(noun)|Easter daisy|Townsendia Exscapa|flower +stemless golden weed|1 +(noun)|Stenotus acaulis|Haplopappus acaulis|wildflower|wild flower +stemless hymenoxys|1 +(noun)|Tetraneuris acaulis|Hymenoxys acaulis|wildflower|wild flower +stemlike|1 +(adj)|stalklike|vegetable +stemma|3 +(noun)|tree|tree diagram +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stock|genealogy|family tree +(noun)|simple eye|ocellus|eye|oculus|optic +stemmatic|1 +(adj)|tree|tree diagram +stemmatics|1 +(noun)|stemmatology|humanistic discipline|humanities|liberal arts|arts +stemmatology|1 +(noun)|stemmatics|humanistic discipline|humanities|liberal arts|arts +stemmed|3 +(adj)|stemmed +(adj)|caulescent |cauline +(adj)|stemless +stemmer|5 +(noun)|stripper|sprigger|worker +(noun)|worker +(noun)|stemming algorithm|algorithm|algorithmic rule|algorithmic program +(noun)|tamp|tamper|tamping bar +(noun)|device +stemming algorithm|1 +(noun)|stemmer|algorithm|algorithmic rule|algorithmic program +sten gun|1 +(noun)|Sten gun|submachine gun +stench|1 +(noun)|malodor|malodour|stink|reek|fetor|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +stench bomb|1 +(noun)|stink bomb|bomb +stencil|2 +(noun)|device +(verb)|print +stendhal|1 +(noun)|Stendhal|Marie Henri Beyle|writer|author +stengel|1 +(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach|baseball manager +stenocarpus|1 +(noun)|Stenocarpus|genus Stenocarpus|dicot genus|magnoliopsid genus +stenocarpus salignus|1 +(noun)|scrub beefwood|beefwood|Stenocarpus salignus|tree +stenocarpus sinuatus|1 +(noun)|wheel tree|firewheel tree|Stenocarpus sinuatus|tree +stenochlaena|1 +(noun)|Stenochlaena|genus Stenochlaena|fern genus +stenograph|3 +(noun)|character|grapheme|graphic symbol +(noun)|typewriter +(verb)|write +stenographer|1 +(noun)|amanuensis|shorthand typist|secretary|secretarial assistant +stenographic|1 +(adj)|stenographical|handwriting|hand|script +stenographical|1 +(adj)|stenographic|handwriting|hand|script +stenography|2 +(noun)|shorthand|handwriting|hand|script +(noun)|handwriting +stenopelmatidae|1 +(noun)|Stenopelmatidae|family Stenopelmatidae|arthropod family +stenopelmatus|1 +(noun)|Stenopelmatus|genus Stenopelmatus|arthropod genus +stenopelmatus fuscus|1 +(noun)|sand cricket|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper|tettigoniid +stenopterygius|1 +(noun)|Stenopterygius quadrisicissus|ichthyosaur +stenopterygius quadrisicissus|1 +(noun)|stenopterygius|Stenopterygius quadrisicissus|ichthyosaur +stenosed|1 +(adj)|stenotic|constricted +stenosis|1 +(noun)|stricture|pathology +stenotaphrum|1 +(noun)|Stenotaphrum|genus Stenotaphrum|monocot genus|liliopsid genus +stenotaphrum secundatum|1 +(noun)|St. Augustine grass|Stenotaphrum secundatum|buffalo grass|grass +stenotic|1 +(adj)|stenosed|constricted +stenotomus|1 +(noun)|Stenotomus|genus Stenotomus|fish genus +stenotomus aculeatus|1 +(noun)|scup|southern porgy|southern scup|Stenotomus aculeatus|porgy +stenotomus chrysops|1 +(noun)|scup|northern porgy|northern scup|Stenotomus chrysops|porgy +stenotus|1 +(noun)|Stenotus|genus Stenotus|asterid dicot genus +stenotus acaulis|1 +(noun)|stemless golden weed|Stenotus acaulis|Haplopappus acaulis|wildflower|wild flower +stent|1 +(noun)|tube|tubing +stentor|3 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +(noun)|Stentor|mythical being +(noun)|ciliate|ciliated protozoan|ciliophoran +stentorian|1 +(adj)|booming|full +step|21 +(noun)|measure|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|footstep|pace|stride|indefinite quantity +(noun)|locomotion|travel +(noun)|stair|support +(noun)|gradation|rank +(noun)|stone's throw|small indefinite quantity|small indefinite amount +(noun)|footfall|footstep|sound +(noun)|tone|whole tone|whole step|interval|musical interval +(noun)|footprint|footmark|mark|print +(noun)|block +(noun)|dance step|locomotion|travel +(verb)|travel|go|move|locomote|step out +(verb)|tread|travel|go|move|locomote +(verb)|run|execute +(verb)|mistreat|maltreat|abuse|ill-use|ill-treat|treat|handle|do by +(verb)|supply|provide|render|furnish +(verb)|travel|go|move|locomote +(verb)|walk +(verb)|put|set|place|pose|position|lay +(verb)|pace|quantify|measure +(verb)|move +step-by-step|1 +(adj)|bit-by-bit|in small stages|piecemeal|stepwise|gradual +step-down|1 +(noun)|decrease|diminution|reduction|change of magnitude +step-down transformer|1 +(noun)|transformer +step-in|1 +(noun)|pantie|panty|scanty|underpants +step-up|1 +(noun)|increase|change of magnitude +step-up transformer|1 +(noun)|transformer +step by step|2 +(adv)|gradually|bit by bit +(adv)|stepwise +step dancing|1 +(noun)|hoofing|dancing|dance|terpsichore|saltation +step down|2 +(verb)|leave office|quit|resign|leave|depart|pull up stakes +(verb)|de-escalate|weaken|decrease|lessen|minify +step forward|1 +(verb)|come to the fore|come forward|step up|step to the fore|come out|act|move +step in|2 +(verb)|intervene|interfere|interpose|interact +(verb)|substitute|deputize|deputise|supplant|replace|supersede|supervene upon +step ladder|2 +(noun)|stepladder|ladder +(noun)| +step on|1 +(verb)|tread on|step|tread +step out|1 +(verb)|exit|go out|get out|leave +step stool|1 +(noun)|stool +step to the fore|1 +(verb)|come to the fore|step forward|come forward|step up|come out|act|move +step up|3 +(verb)|escalate|intensify|increase +(verb)|rev up|increase +(verb)|come to the fore|step forward|come forward|step to the fore|come out|act|move +stepbrother|1 +(noun)|half-brother|brother|blood brother +stepchild|1 +(noun)|child|kid +stepdaughter|1 +(noun)|stepchild +stepfather|1 +(noun)|stepparent|father figure|father surrogate +stephane grappelli|1 +(noun)|Grappelli|Stephane Grappelli|violinist|fiddler +stephane mallarme|1 +(noun)|Mallarme|Stephane Mallarme|poet +stephanie graf|1 +(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player +stephanion|1 +(noun)|craniometric point +stephanomeria|1 +(noun)|Stephanomeria|genus Stephanomeria|dilleniid dicot genus +stephanomeria malheurensis|1 +(noun)|malheur wire lettuce|Stephanomeria malheurensis|crucifer|cruciferous plant +stephanotis|1 +(noun)|shrub|bush +stephanotis floribunda|1 +(noun)|Madagascar jasmine|waxflower|Stephanotis floribunda|stephanotis +stephanus johannes paulus kruger|1 +(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman|solon|national leader +stephead|1 +(noun)|dropline|drop line|stepped line|stagger head|staggered head|headline|newspaper headline +stephen|1 +(noun)|Stephen|Sir Leslie Stephen|writer|author +stephen a. douglas|1 +(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|The Little Giant|politician|politico|pol|political leader +stephen arnold douglas|1 +(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|The Little Giant|politician|politico|pol|political leader +stephen butler leacock|1 +(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist|economic expert|humorist|humourist +stephen collins foster|1 +(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter|songster|ballad maker +stephen crane|1 +(noun)|Crane|Stephen Crane|writer|author +stephen decatur|1 +(noun)|Decatur|Stephen Decatur|naval officer +stephen foster|1 +(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter|songster|ballad maker +stephen girard|1 +(noun)|Girard|Stephen Girard|financier|moneyman +stephen grover cleveland|1 +(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States|United States President|President|Chief Executive +stephen hawking|1 +(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist +stephen jay gould|1 +(noun)|Gould|Stephen Jay Gould|paleontologist|palaeontologist|fossilist +stephen leacock|1 +(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist|economic expert|humorist|humourist +stephen michael reich|1 +(noun)|Reich|Steve Reich|Stephen Michael Reich|composer +stephen samuel wise|1 +(noun)|Wise|Stephen Samuel Wise|religious leader +stephen sondheim|1 +(noun)|Sondheim|Stephen Sondheim|composer +stephen spender|1 +(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet|literary critic +stephen vincent benet|1 +(noun)|Benet|Stephen Vincent Benet|poet +stephen william hawking|1 +(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist +stephenson|1 +(noun)|Stephenson|George Stephenson|businessman|man of affairs +stepladder|1 +(noun)|step ladder|ladder +stepmother|1 +(noun)|stepparent +stepparent|1 +(noun)|parent +steppe|1 +(noun)|plain|field|champaign +stepped line|1 +(noun)|dropline|drop line|stagger head|staggered head|stephead|headline|newspaper headline +stepper|3 +(noun)|hoofer|dancer|professional dancer +(noun)|stepping motor|motor +(noun)|high stepper|horse|Equus caballus +stepping down|2 +(noun)|abdication|resignation +(noun)|abdication|resignation +stepping motor|1 +(noun)|stepper|motor +stepping stone|2 +(noun)|rock|stone +(noun)|means|agency|way +steprelationship|1 +(noun)|affinity|kinship by marriage +steps|13 +(noun)|stairway|staircase|stairs|way +(noun)|path|track|course +(noun)|measure|step|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|footstep|pace|step|stride|indefinite quantity +(noun)|step|locomotion|travel +(noun)|step|stair|support +(noun)|gradation|step|rank +(noun)|step|stone's throw|small indefinite quantity|small indefinite amount +(noun)|footfall|footstep|step|sound +(noun)|tone|whole tone|step|whole step|interval|musical interval +(noun)|footprint|footmark|step|mark|print +(noun)|step|block +(noun)|dance step|step|locomotion|travel +stepsister|1 +(noun)|half sister|sister|sis +stepson|1 +(noun)|stepchild +stepwise|2 +(adj)|bit-by-bit|in small stages|piecemeal|step-by-step|gradual +(adv)|step by step +steradian|1 +(noun)|sr|angular unit +stercobilinogen|1 +(noun)|urobilinogen|chromogen +stercolith|1 +(noun)|coprolith|fecalith|faecalith|mass +stercorariidae|1 +(noun)|Stercorariidae|family Stercorariidae|bird family +stercorarius|1 +(noun)|Stercorarius|genus Stercorarius|bird genus +stercorarius parasiticus|1 +(noun)|parasitic jaeger|arctic skua|Stercorarius parasiticus|jaeger +sterculia|1 +(noun)|angiospermous tree|flowering tree +sterculia acerifolia|1 +(noun)|flame tree|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree|bottle tree +sterculia apetala|1 +(noun)|Panama tree|Sterculia apetala|sterculia +sterculia family|1 +(noun)|Sterculiaceae|family Sterculiaceae|dilleniid dicot family +sterculia foetida|1 +(noun)|kalumpang|Java olives|Sterculia foetida|sterculia +sterculia gum|1 +(noun)|karaya gum|gum +sterculia rupestris|1 +(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree|bottle tree +sterculiaceae|1 +(noun)|Sterculiaceae|family Sterculiaceae|sterculia family|dilleniid dicot family +stereo|3 +(adj)|stereophonic|two-channel|binaural |biaural +(noun)|stereo system|stereophonic system|reproducer +(noun)|stereoscopic picture|stereoscopic photograph|photograph|photo|exposure|pic +stereo system|1 +(noun)|stereo|stereophonic system|reproducer +stereophonic|1 +(adj)|stereo|two-channel|binaural |biaural +stereophonic system|1 +(noun)|stereo|stereo system|reproducer +stereoscope|1 +(noun)|optical device +stereoscopic|2 +(adj)|optical device +(adj)|binocular vision +stereoscopic photograph|1 +(noun)|stereo|stereoscopic picture|photograph|photo|exposure|pic +stereoscopic picture|1 +(noun)|stereo|stereoscopic photograph|photograph|photo|exposure|pic +stereoscopic vision|1 +(noun)|stereoscopy|binocular vision +stereoscopy|1 +(noun)|stereoscopic vision|binocular vision +stereospondyli|1 +(noun)|Stereospondyli|order Stereospondyli|animal order +stereotype|2 +(noun)|representation|mental representation|internal representation +(verb)|pigeonhole|stamp|classify|class|sort|assort|sort out|separate +stereotyped|1 +(adj)|stereotypic|stereotypical|unimaginative|conventional +stereotypic|1 +(adj)|stereotyped|stereotypical|unimaginative|conventional +stereotypical|1 +(adj)|stereotyped|stereotypic|unimaginative|conventional +sterile|3 +(adj)|sterile |unfertile|infertile|sterilized|sterilised|unfertilized|unfertilised|unimpregnated|barren|unfruitful|impotent|unproductive +(adj)|aseptic|antiseptic +(adj)|unimaginative|uninspired|uninventive|uncreative +sterileness|1 +(noun)|asepsis|antisepsis|sterility|sanitariness +sterilisation|2 +(noun)|sterilization|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|sterilization|cleaning|cleansing|cleanup +sterilise|2 +(verb)|sterilize|disinfect +(verb)|sterilize|desex|unsex|desexualize|desexualise|fix|operate on|operate +sterilised|2 +(adj)|antiseptic|sterilized|germfree +(adj)|sterilized|sterile |unfertile|infertile +steriliser|1 +(noun)|autoclave|sterilizer|vessel +sterility|2 +(noun)|asepsis|antisepsis|sterileness|sanitariness +(noun)|infertility|physiological state|physiological condition +sterilization|2 +(noun)|sterilisation|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|sterilisation|cleaning|cleansing|cleanup +sterilize|2 +(verb)|sterilise|disinfect +(verb)|sterilise|desex|unsex|desexualize|desexualise|fix|operate on|operate +sterilized|2 +(adj)|antiseptic|sterilised|germfree +(adj)|sterilised|sterile |unfertile|infertile +sterilizer|1 +(noun)|autoclave|steriliser|vessel +sterling|2 +(adj)|greatest|superlative|superior +(noun)|money +sterling area|1 +(noun)|sterling bloc|scheduled territories|bloc|axis +sterling bloc|1 +(noun)|sterling area|scheduled territories|bloc|axis +sterling silver|1 +(noun)|alloy|metal +stern|6 +(adj)|austere|nonindulgent +(adj)|grim|inexorable|relentless|unappeasable|unforgiving|unrelenting|implacable +(adj)|strict|exacting|demanding +(noun)|after part|quarter|poop|tail|rear|back +(noun)|Stern|Isaac Stern|violinist|fiddler +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +stern chaser|1 +(noun)|naval gun +sterna|2 +(noun)|Sterna|genus Sterna|bird genus +(noun)|sternum|breastbone|bone|os +sterna hirundo|1 +(noun)|sea swallow|Sterna hirundo|tern +sternal|1 +(adj)|bone|os +sterne|1 +(noun)|Sterne|Laurence Sterne|writer|author +sterninae|1 +(noun)|Sterninae|subfamily Sterninae|bird family +sternly|1 +(adv)|severely +sternness|1 +(noun)|strictness|unpermissiveness +sternocleido mastoideus|1 +(noun)|sternocleidomastoid|sternocleidomastoid muscle|musculus sternocleidomastoideus|skeletal muscle|striated muscle +sternocleidomastoid|1 +(noun)|sternocleidomastoid muscle|sternocleido mastoideus|musculus sternocleidomastoideus|skeletal muscle|striated muscle +sternocleidomastoid muscle|1 +(noun)|sternocleidomastoid|sternocleido mastoideus|musculus sternocleidomastoideus|skeletal muscle|striated muscle +sternocleidomastoid vein|1 +(noun)|vena sternocleidomastoidea|vein|vena|venous blood vessel +sternotherus|1 +(noun)|Sternotherus|genus Sternotherus|reptile genus +sternpost|1 +(noun)|timber +sternum|1 +(noun)|breastbone|bone|os +sternutation|1 +(noun)|sneeze|sneezing|symptom|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +sternutative|1 +(adj)|sternutatory|causative +sternutator|1 +(noun)|sternutatory|compound|chemical compound +sternutatory|3 +(adj)|compound|chemical compound +(adj)|sternutative|causative +(noun)|sternutator|compound|chemical compound +sternwheeler|1 +(noun)|paddle steamer|paddle-wheeler +steroid|2 +(noun)|organic compound +(noun)|steroid hormone|sex hormone|hormone|endocrine|internal secretion +steroid alcohol|1 +(noun)|sterol|alcohol|steroid +steroid hormone|1 +(noun)|steroid|sex hormone|hormone|endocrine|internal secretion +steroidal|1 +(adj)|steroidal |hormone|endocrine|internal secretion +sterol|1 +(noun)|steroid alcohol|alcohol|steroid +sterope|2 +(noun)|Sterope|Asterope|nymph +(noun)|Sterope|Asterope|star +stertor|1 +(noun)|snore|snoring|breathing|external respiration|respiration|ventilation +stertorous|1 +(adj)|noisy +stet|2 +(verb)|invalidate|annul|quash|void|avoid|nullify +(verb)|direct +stethoscope|1 +(noun)|medical instrument +stetson|1 +(noun)|fedora|felt hat|homburg|Stetson|trilby|hat|chapeau|lid +steuben|1 +(noun)|Steuben|Baron Friedrich Wilhelm Ludolf Gerhard Augustin von Steuben|American Revolutionary leader +steve martin|1 +(noun)|Martin|Steve Martin|actor|histrion|player|thespian|role player|comedian|comic +steve reich|1 +(noun)|Reich|Steve Reich|Stephen Michael Reich|composer +stevedore|1 +(noun)|loader|longshoreman|docker|dockhand|dock worker|dock-walloper|lumper|laborer|manual laborer|labourer|jack +steven spielberg|1 +(noun)|Spielberg|Steven Spielberg|film maker|filmmaker|film producer|movie maker +steven weinberg|1 +(noun)|Weinberg|Steven Weinberg|physicist +stevens|3 +(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist +(noun)|Stevens|Wallace Stevens|poet +(noun)|Stevens|George Stevens|film maker|filmmaker|film producer|movie maker +stevens' law|1 +(noun)|Stevens' law|power law|Stevens' power law|law|law of nature +stevens' power law|1 +(noun)|Stevens' law|power law|Stevens' power law|law|law of nature +stevenson|2 +(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer|author +(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat|diplomatist +stevia|2 +(noun)|herb|herbaceous plant +(noun)|herb|herbaceous plant +stew|5 +(noun)|fret|sweat|lather|swither|agitation +(noun)|dish +(verb)|grizzle|brood|sulk|pout|brood +(verb)|grudge|resent +(verb)|cook +stew meat|1 +(noun)|meat +steward|5 +(noun)|fiduciary +(noun)|officer|ship's officer +(noun)|flight attendant|attendant|attender|tender +(noun)|shop steward|union representative +(noun)|custodian|keeper|defender|guardian|protector|shielder +stewardess|1 +(noun)|air hostess|hostess|steward|flight attendant +stewardship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +stewart|2 +(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor|histrion|player|thespian|role player +(noun)|Stewart|Dugald Stewart|philosopher +stewed|1 +(adj)|boiled|poached|cooked +stewing|2 +(noun)|agitation +(noun)|boiling|simmering|cooking|cookery|preparation +stewing pan|1 +(noun)|stewpan|saucepan +stewpan|1 +(noun)|stewing pan|saucepan +sth|1 +(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone|endocrine|internal secretion +sthene|1 +(noun)|force unit +stheno|1 +(noun)|Stheno|Gorgon +stibnite|1 +(noun)|mineral +stichaeidae|1 +(noun)|Stichaeidae|family Stichaeidae|fish family +sticherus|1 +(noun)|Sticherus|genus Sticherus|fern genus +sticherus flabellatus|1 +(noun)|umbrella fern|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern +stick|23 +(noun)|implement +(noun)|limb|tree branch +(noun)|control stick|joystick|lever +(noun)|pin|peg|leg +(noun)|joint|marijuana cigarette|reefer|spliff|cigarette|cigaret|coffin nail|butt|fag +(noun)|punishment|penalty|penalization|penalisation +(verb)|lodge|wedge|deposit|fasten|fix|secure|stick out +(verb)|stay|stick around|stay put|stay in place +(verb)|put forward|put|set|place|pose|position|lay +(verb)|adhere|hold fast|bond|bind|stick to|attach +(verb)|be +(verb)|persist|remain|stay +(verb)|adhere|adopt|follow|espouse +(verb)|stand by|stick by|adhere|be +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|fasten +(verb)|fasten +(verb)|fasten +(verb)|pierce|thrust +(verb)|pierce|thrust +(verb)|cling|cleave|adhere|cohere|touch|adjoin|meet|contact +(verb)|sting|force|thrust +(verb)|perplex|vex|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +stick-in-the-mud|2 +(adj)|fogyish|moss-grown|mossy|stodgy|unfashionable |unstylish +(noun)|plodder|slowpoke|slowcoach|dawdler|drone|laggard|lagger|trailer +stick-on|1 +(adj)|adhesive +stick about|1 +(verb)|stand by|stick around|wait +stick around|2 +(verb)|stand by|stick about|wait +(verb)|stay|stick|stay put|stay in place +stick by|1 +(verb)|stand by|stick|adhere|be +stick cinnamon|1 +(noun)|cinnamon +stick figure|1 +(noun)|drawing +stick horse|1 +(noun)|plaything|toy +stick in|2 +(verb)|slip in|sneak in|insert|add|append|supply +(verb)|insert|enclose|inclose|put in|introduce|put|set|place|pose|position|lay +stick insect|1 +(noun)|walking stick|walkingstick|phasmid|phasmid insect +stick lac|1 +(noun)|lac +stick on|2 +(verb)|plaster|plaster over|cover +(verb)|affix|attach +stick out|3 +(verb)|protrude|jut out|jut|project +(verb)|leap out|jump out|jump|stand out|look|appear|seem +(verb)|digest|endure|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +stick shift|1 +(noun)|standard transmission|transmission|transmission system +stick to|2 +(verb)|adhere|hold fast|bond|bind|stick|attach +(verb)|stick with|follow|persevere|persist|hang in|hang on|hold on +stick together|1 +(verb)|stay together|stay|remain|rest +stick up|2 +(verb)|hold up|rob +(verb)|stand up|defend|support|fend for +stick with|1 +(verb)|stick to|follow|persevere|persist|hang in|hang on|hold on +stickball|1 +(noun)|stickball game|baseball|baseball game|ball +stickball game|1 +(noun)|stickball|baseball|baseball game|ball +sticker|4 +(noun)|spine|thorn|prickle|pricker|aculeus +(noun)|gummed label|paster|label +(noun)|poser|stumper|toughie|problem +(noun)|dagger|knife +stickily|1 +(adv)|viscidly +stickiness|1 +(noun)|viscosity|viscousness +sticking|1 +(adj)|jutting|projected|projecting|protruding|sticking out|protrusive +sticking out|1 +(adj)|jutting|projected|projecting|protruding|sticking|protrusive +sticking plaster|1 +(noun)|plaster|adhesive plaster|adhesive tape +sticking point|1 +(noun)|detail|item|point +stickle|1 +(verb)|argue|contend|debate|fence +stickleback|1 +(noun)|prickleback|spiny-finned fish|acanthopterygian +stickler|1 +(noun)|martinet|disciplinarian|moralist +stickpin|1 +(noun)|pin +sticks and stone|1 +(noun)|building material +sticktight|2 +(noun)|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|subshrub|suffrutex +(noun)|sticktight flea|Echidnophaga gallinacea|flea +sticktight flea|1 +(noun)|sticktight|Echidnophaga gallinacea|flea +stickup|1 +(noun)|armed robbery|heist|holdup|robbery +stickup man|1 +(noun)|holdup man|thief|stealer +stickweed|1 +(noun)|herb|herbaceous plant +sticky|4 +(adj)|gluey|glutinous|gummy|mucilaginous|pasty|viscid|viscous|adhesive +(adj)|wet +(adj)|muggy|steamy|wet +(adj)|awkward|embarrassing|unenviable|difficult |hard +sticky aster|1 +(noun)|Machaeranthera bigelovii|wildflower|wild flower +sticky bun|1 +(noun)|honey bun|caramel bun|schnecken|sweet roll|coffee roll +sticky end|1 +(noun)|deoxyribonucleic acid|desoxyribonucleic acid|DNA +sticky geranium|1 +(noun)|Geranium viscosissimum|cranesbill|crane's bill +stictomys|1 +(noun)|Stictomys|genus Stictomys|mammal genus +stictopelia|1 +(noun)|Stictopelia|genus Stictopelia|bird genus +stictopelia cuneata|1 +(noun)|Australian turtledove|turtledove|Stictopelia cuneata|dove +stieglitz|1 +(noun)|Stieglitz|Alfred Stieglitz|photographer|lensman +stiff|11 +(adj)|inflexible +(adj)|immobile +(adj)|strong +(adj)|starchy|buckram|formal +(adj)|uphill|hard +(adj)|stand-up|inflexible +(adj)|rigid|inflexible +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|tiddly|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +(noun)|man|adult male +(noun)|cadaver|corpse|clay|remains|body|dead body +(adv)|stiffly +stiff-backed|1 +(adj)|backed +stiff-necked|1 +(adj)|stubborn +stiff aster|1 +(noun)|Aster linarifolius|aster +stiff gentian|1 +(noun)|agueweed|ague weed|five-flowered gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian +stiff upper lip|1 +(noun)|self-restraint|temperateness +stiffen|3 +(verb)|change +(verb)|change|alter|modify +(verb)|tighten|tighten up|constrain|restrict|restrain|trammel|limit|bound|confine|throttle +stiffened|2 +(adj)|inflexible +(adj)|wired +stiffener|1 +(noun)|filler +stiffening|2 +(noun)|procedure|process +(noun)|rigidifying|rigidification|natural process|natural action|action|activity +stiffly|2 +(adv)|stiff +(adv)|rigidly|bolt +stiffness|4 +(noun)|inelasticity +(noun)|awkwardness|clumsiness +(noun)|awkwardness|clumsiness|gracelessness|inelegance +(noun)|severity|harshness|rigor|rigour|inclemency|hardness|sternness|strictness +stifle|5 +(noun)|knee|joint|articulation|articulatio +(verb)|smother|strangle|muffle|repress|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|dampen|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|suffocate|asphyxiate|choke|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|suffocate|asphyxiate|die|decease|perish|go|exit|pass away|expire|pass +stifled|1 +(adj)|smothered|strangled|suppressed|inhibited +stifler|1 +(noun)|smotherer|person|individual|someone|somebody|mortal|human|soul +stifling|2 +(adj)|sultry|sulfurous|sulphurous|hot +(noun)|suppression|crushing|quelling|prevention|bar +stigma|4 +(noun)|reproductive structure +(noun)|mark|brand|stain|symbol +(noun)|spiracle +(noun)|blemish|defect|mar +stigmata|5 +(noun)|wound|lesion +(noun)|stigma|reproductive structure +(noun)|mark|stigma|brand|stain|symbol +(noun)|stigma|spiracle +(noun)|stigma|blemish|defect|mar +stigmatic|4 +(adj)|symbol +(adj)|anastigmatic|condition|status +(adj)|anastigmatic +(noun)|stigmatist|person|individual|someone|somebody|mortal|human|soul +stigmatisation|1 +(noun)|stigmatization|branding|disapproval +stigmatise|2 +(verb)|stigmatize|brand|denounce|mark|label +(verb)|stigmatize|mark +stigmatism|3 +(noun)|condition +(noun)|condition|status +(noun)|sight|vision|visual sense|visual modality +stigmatist|1 +(noun)|stigmatic|person|individual|someone|somebody|mortal|human|soul +stigmatization|1 +(noun)|stigmatisation|branding|disapproval +stigmatize|2 +(verb)|stigmatise|brand|denounce|mark|label +(verb)|stigmatise|mark +stilbesterol|1 +(noun)|diethylstilbesterol|DES|nonsteroid|nonsteroidal +stilbestrol|1 +(noun)|diethylstilbestrol|diethylstilboestrol|stilboestrol|DES|estrogen|oestrogen +stilboestrol|1 +(noun)|diethylstilbestrol|diethylstilboestrol|stilbestrol|DES|estrogen|oestrogen +stile|1 +(noun)|upright|vertical +stiletto|1 +(noun)|dagger|sticker +stiletto heel|1 +(noun)|spike heel|heel +still|17 +(adj)|inactive|motionless|static|nonmoving |unmoving +(adj)|silent|soundless|quiet +(adj)|placid|quiet|tranquil|unruffled|calm +(adj)|still +(adj)|still |noneffervescent +(adj)|standing +(noun)|photograph|photo|exposure|pic +(noun)|hush|stillness|silence|quiet +(noun)|apparatus|setup +(noun)|distillery|plant|works|industrial plant +(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|comfort|soothe|console|solace +(verb)|hush|quieten|silence|shut up|hush up|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|allay|relieve|ease|comfort|soothe|console|solace +(verb)|change|alter|modify +(adv)|however|nevertheless|withal|yet|all the same|even so|nonetheless|notwithstanding +(adv)|even|yet +(adv)|stock-still +still's disease|1 +(noun)|Still's disease|juvenile rheumatoid arthritis|rheumatoid arthritis|atrophic arthritis|rheumatism +still-fish|1 +(verb)|fish +still-hunt|1 +(verb)|ambush|hunt|run|hunt down|track down +still hunt|1 +(noun)|stalk|stalking|hunt|hunting +still life|1 +(noun)|painting|picture +still room|2 +(noun)|stillroom|pantry|larder|buttery +(noun)| +stillbirth|1 +(noun)|spontaneous abortion|miscarriage|abortion +stillborn|2 +(adj)|abortive|unsuccessful|unfruitful +(adj)|dead +stillborn infant|1 +(noun)|neonate|newborn|newborn infant|newborn baby +stillness|3 +(noun)|hush|still|silence|quiet +(noun)|windlessness|calmness +(noun)|motionlessness|state +stillroom|1 +(noun)|still room|pantry|larder|buttery +stillson wrench|1 +(noun)|Stillson wrench|pipe wrench|tube wrench +stilly|1 +(adj)|quiet +stilt|4 +(noun)|pile|spile|piling|column|pillar +(noun)|pole +(noun)|Australian stilt|shorebird|shore bird|limicoline bird +(noun)|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird|shore bird|limicoline bird +stilt plover|1 +(noun)|stilt|stiltbird|longlegs|long-legs|Himantopus stilt|shorebird|shore bird|limicoline bird +stiltbird|1 +(noun)|stilt|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird|shore bird|limicoline bird +stilted|1 +(adj)|artificial|contrived|hokey|affected |unnatural +stilton|1 +(noun)|Stilton|bleu|blue cheese +stilwell|1 +(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general|full general +stimulant|3 +(adj)|stimulating|stimulative +(noun)|stimulation|stimulus|input|information +(noun)|stimulant drug|drug +stimulant drug|1 +(noun)|stimulant|drug +stimulate|7 +(verb)|excite|affect|impact|bear upon|bear on|touch on|touch +(verb)|induce|cause|have|get|make +(verb)|shake|shake up|excite|stir|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|arouse|brace|energize|energise|perk up|affect +(verb)|induce|rush|hasten|effect|effectuate|bring about|set up +(verb)|excite|stir|sensitize|sensitise +(verb)|provoke|challenge +stimulated|1 +(adj)|stirred|stirred up|aroused|excited +stimulating|3 +(adj)|stimulating |challenging|thought-provoking|exciting|piquant|salty|rousing|stirring|thrilling|exciting|interesting|invigorating|moving|stimulative +(adj)|stimulant|stimulative +(adj)|exhilarating|invigorating +stimulation|4 +(noun)|arousal|rousing +(noun)|stimulus|stimulant|input|information +(noun)|natural process|natural action|action|activity +(noun)|foreplay|arousal|sexual activity|sexual practice|sex|sex activity +stimulative|1 +(adj)|stimulative |adrenocorticotropic|adrenocorticotrophic|analeptic|excitant|excitative|excitatory|irritating|irritative|stimulant|stimulating|stimulating +stimulus|1 +(noun)|stimulation|stimulant|input|information +stimulus generalisation|1 +(noun)|generalization|generalisation|stimulus generalization|transfer|transfer of training|carry-over +stimulus generalization|1 +(noun)|generalization|generalisation|stimulus generalisation|transfer|transfer of training|carry-over +sting|9 +(noun)|stinging|pain|hurting +(noun)|pang|pain|hurting +(noun)|bite|insect bite|injury|hurt|harm|trauma +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|flimflam|swindle|cheat|rig +(verb)|bite|burn|ache|smart|hurt +(verb)|bite|prick|pierce +(verb)|stick|force|thrust +(verb)|prick|twinge|hurt|ache|suffer +(verb)|hurt|wound|injure|bruise|offend|spite +sting operation|1 +(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam +stingaree-bush|1 +(noun)|chaparral pea|Pickeringia montana|shrub|bush +stinger|5 +(noun)|cocktail +(noun)|cut|abuse|insult|revilement|contumely|vilification +(noun)|Stinger|surface-to-air missile|SAM|heat-seeking missile +(noun)|organ +(noun)|blow +stingily|1 +(adv)|cheaply|chintzily +stinginess|1 +(noun)|trait +stinging|4 +(adj)|prickling|tingling|painful +(adj)|stinging +(adj)|cutting|edged|unkind +(noun)|sting|pain|hurting +stinging hair|1 +(noun)|hair|fuzz|tomentum +stinging nettle|1 +(noun)|Urtica dioica|nettle +stingless|1 +(adj)|stingless +stingray|1 +(noun)|ray +stingy|2 +(adj)|stingy |ungenerous|beggarly|mean|cheap|chinchy|chintzy|cheeseparing|close|near|penny-pinching|closefisted|hardfisted|tightfisted|grudging|niggardly|scrimy|meager|scrimpy|mean|mingy|miserly|tight|parsimonious|penurious|selfish|uncharitable|ungenerous|meanspirited +(adj)|ungenerous|selfish +stink|3 +(noun)|malodor|malodour|stench|reek|fetor|foetor|mephitis|smell|odor|odour|olfactory sensation|olfactory perception +(verb)|be +(verb)|reek|smell|stink up|stink out +stink bell|1 +(noun)|Fritillaria agrestis|fritillary|checkered lily +stink bomb|1 +(noun)|stench bomb|bomb +stink fly|1 +(noun)|green lacewing|chrysopid|lacewing|lacewing fly +stink out|1 +(verb)|stink up|smell up|odorize|odourise|scent +stink up|1 +(verb)|smell up|stink out|odorize|odourise|scent +stinkbird|1 +(noun)|hoatzin|hoactzin|Opisthocomus hoazin|gallinaceous bird|gallinacean +stinker|3 +(noun)|rotter|dirty dog|rat|skunk|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|thing +(noun)|lemon|artifact|artefact +stinkhorn|1 +(noun)|carrion fungus|fungus +stinkiness|1 +(noun)|malodorousness|foulness|rankness|olfactory property|smell|aroma|odor|odour|scent +stinking|2 +(adj)|icky|crappy|lousy|rotten|shitty|stinky|bad +(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|putrid|malodorous |malodourous +stinking bean trefoil|1 +(noun)|bean trefoil|Anagyris foetida|shrub|bush +stinking cedar|1 +(noun)|stinking yew|Torrey tree|Torreya taxifolia|yew +stinking chamomile|1 +(noun)|mayweed|dog fennel|stinking mayweed|Anthemis cotula|composite|composite plant +stinking clover|1 +(noun)|Rocky Mountain bee plant|Cleome serrulata|spiderflower|cleome +stinking elder|1 +(noun)|American red elder|red-berried elder|Sambucus pubens|elder|elderberry bush +stinking gladwyn|1 +(noun)|stinking iris|gladdon|gladdon iris|roast beef plant|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +stinking goosefoot|1 +(noun)|Chenopodium vulvaria|goosefoot +stinking hellebore|1 +(noun)|bear's foot|setterwort|Helleborus foetidus|hellebore +stinking horehound|1 +(noun)|black horehound|black archangel|fetid horehound|Ballota nigra|herb|herbaceous plant +stinking iris|1 +(noun)|gladdon|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris|flag|fleur-de-lis|sword lily +stinking mayweed|1 +(noun)|mayweed|dog fennel|stinking chamomile|Anthemis cotula|composite|composite plant +stinking nightshade|1 +(noun)|henbane|black henbane|Hyoscyamus niger|herb|herbaceous plant +stinking smut|2 +(noun)|bunt|smut +(noun)|bunt|Tilletia foetida|smut|smut fungus +stinking wattle|1 +(noun)|gidgee|Acacia cambegei|acacia +stinking weed|1 +(noun)|coffee senna|mogdad coffee|styptic weed|Senna occidentalis|Cassia occidentalis|senna +stinking yew|1 +(noun)|stinking cedar|Torrey tree|Torreya taxifolia|yew +stinkpot|2 +(noun)|rotter|dirty dog|rat|skunk|stinker|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person|disagreeable person +(noun)|musk turtle|mud turtle +stinkweed|1 +(noun)|field pennycress|French weed|fanweed|penny grass|mithridate mustard|Thlaspi arvense|pennycress +stinky|1 +(adj)|icky|crappy|lousy|rotten|shitty|stinking|bad +stinky squid|1 +(noun)|Pseudocolus fusiformis|stinkhorn|carrion fungus +stint|5 +(noun)|stretch|duration|continuance +(noun)|least sandpiper|Erolia minutilla|sandpiper +(noun)|job|task|chore +(verb)|scrimp|skimp|save +(verb)|skimp|scant|supply|provide|render|furnish +stinter|1 +(noun)|economizer|economiser +stinting|1 +(adj)|economical|frugal|scotch|sparing|thrifty +stipe|1 +(noun)|stalk|stem +stipend|1 +(noun)|regular payment +stipendiary|4 +(adj)|regular payment +(adj)|compensated|remunerated|salaried|paid +(adj)|compensable|paying|remunerative|salaried|paid +(noun)|stipendiary magistrate|judge|justice|jurist|magistrate +stipendiary magistrate|1 +(noun)|stipendiary|judge|justice|jurist|magistrate +stipple|4 +(verb)|engrave +(verb)|paint +(verb)|paint +(verb)|speckle|mottle|dapple|cloud +stippled|1 +(adj)|dotted|flecked|specked|speckled|patterned +stippler|1 +(noun)|painter +stipulate|3 +(verb)|qualify|condition|specify|contract|undertake +(verb)|guarantee|vouch +(verb)|contract|undertake +stipulation|3 +(noun)|judicial admission|concession +(noun)|condition|precondition|premise|premiss|assumption +(noun)|specification|restriction +stipulative definition|1 +(noun)|definition +stipulatory|1 +(adj)|agreed upon|uncontroversial |noncontroversial +stipule|1 +(noun)|plant part|plant structure +stir|11 +(noun)|disturbance|disruption|commotion|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder +(noun)|agitation +(noun)|bustle|hustle|flurry|ado|fuss|commotion|din|ruction|ruckus|rumpus|tumult +(verb)|move|displace +(verb)|shift|budge|agitate|move +(verb)|stimulate|excite|sensitize|sensitise +(verb)|stimulate|shake|shake up|excite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke|stir up +(verb)|touch|affect|impress|move|strike|stir up +(verb)|raise|conjure|conjure up|invoke|evoke|call down|arouse|bring up|put forward|call forth|make|create +(verb)|arouse|move +(verb)|work +stir fry|1 +(verb)|fry +stir up|4 +(verb)|agitate|foment|provoke|stimulate +(verb)|inflame|wake|ignite|heat|fire up|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|agitate|vex|disturb|commove|shake up|raise up|move|displace +(verb)|incite|instigate|set off|provoke|stimulate +stirk|1 +(noun)|cattle|cows|kine|oxen|Bos taurus +stirred|3 +(adj)|affected|touched|moved +(adj)|stimulated|stirred up|aroused|excited +(adj)|agitated +stirred up|1 +(adj)|stimulated|stirred|aroused|excited +stirrer|2 +(noun)|scaremonger|alarmist +(noun)|implement +stirring|4 +(adj)|rousing|stimulating +(adj)|soul-stirring|moving +(noun)|agitation +(noun)|inspiration|arousal|rousing +stirrup|2 +(noun)|stirrup iron|support +(noun)|stapes|auditory ossicle +stirrup cup|1 +(noun)|drink +stirrup iron|1 +(noun)|stirrup|support +stirrup pump|1 +(noun)|pump +stitch|3 +(noun)|sewing|stitchery +(noun)|pain|hurting +(verb)|sew|run up|sew together|fasten|fix|secure +stitched|1 +(adj)|sewed|sewn|seamed +stitcher|1 +(noun)|garmentmaker|garment-worker|garment worker|finisher +stitchery|1 +(noun)|sewing|needlework|needlecraft +stitching|1 +(noun)|sewing|handicraft +stitchwort|1 +(noun)|greater stitchwort|starwort|Stellaria holostea|chickweed +stizidae|1 +(noun)|Stizidae|family Stizidae|arthropod family +stizolobium|1 +(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus +stizolobium deeringiana|1 +(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +stizostedion|1 +(noun)|Stizostedion|genus Stizostedion|fish genus +stizostedion vitreum|1 +(noun)|walleye|walleyed pike|jack salmon|Stizostedion vitreum|pike-perch|pike perch +stm|1 +(noun)|short-term memory|STM|immediate memory|memory|remembering +stoat|1 +(noun)|ermine|shorttail weasel|Mustela erminea +stob|1 +(noun)|stick +stochastic|1 +(adj)|random +stochastic process|1 +(noun)|model|theoretical account|framework +stochastic variable|1 +(noun)|random variable|variate|variant|chance variable|variable|variable quantity +stochasticity|1 +(noun)|randomness|haphazardness|noise|irregularity|unregularity +stock|27 +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|threadbare|timeworn|tired|trite|well-worn|unoriginal +(adj)|standard +(adj)|standard|regular +(noun)|capital|working capital +(noun)|broth|soup +(noun)|inventory|merchandise|wares|product +(noun)|store|fund|accumulation +(noun)|livestock|farm animal|placental|placental mammal|eutherian|eutherian mammal +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|genealogy|family tree +(noun)|gunstock|handle|grip|handgrip|hold|support +(noun)|repute|reputation +(noun)|breed|strain|variety|animal group +(noun)|lumber|timber +(noun)|stock certificate|security|certificate +(noun)|Malcolm stock|flower +(noun)|plant part|plant structure +(noun)|gillyflower|flower +(noun)|handle|grip|handgrip|hold +(noun)|caudex|stalk|stem +(noun)|neckcloth|cravat +(verb)|carry|stockpile|have|have got|hold +(verb)|equip|fit|fit out|outfit +(verb)|supply|provide|render|furnish +(verb)|supply|provide|render|furnish +(verb)|buy in|supply|provide|render|furnish +(verb)|supply|provide|render|furnish +(verb)|sprout|grow|develop|produce|get|acquire +stock-in-trade|1 +(noun)|equipment +stock-index futures|1 +(noun)|futures contract +stock-purchase warrant|1 +(noun)|warrant|stock warrant|security|surety +stock-still|2 +(adj)|frozen|rooted|nonmoving |unmoving +(adv)|still +stock breeder|1 +(noun)|breeder|stockman|stock raiser|stock farmer +stock buyback|1 +(noun)|purchase +stock car|3 +(noun)|car|auto|automobile|machine|motorcar +(noun)|racer|race car|racing car +(noun)|stockcar|boxcar +stock certificate|1 +(noun)|stock|security|certificate +stock company|2 +(noun)|company +(noun)|repertory company|theater company +stock cube|1 +(noun)|broth|stock +stock dividend|1 +(noun)|dividend +stock exchange|1 +(noun)|stock market|securities market|exchange +stock farmer|1 +(noun)|stockman|stock raiser|farmer|husbandman|granger|sodbuster +stock index|1 +(noun)|stock market index|index|index number|indicant|indicator +stock issue|1 +(noun)|issue|issuing|issuance +stock list|1 +(noun)|inventory|list|listing +stock market|1 +(noun)|stock exchange|securities market|exchange +stock market index|1 +(noun)|stock index|index|index number|indicant|indicator +stock of record|1 +(noun)|common stock|common shares|ordinary shares +stock option|1 +(noun)|option +stock power|1 +(noun)|power of attorney +stock purchase plan|1 +(noun)|plan|program|programme +stock raiser|1 +(noun)|stockman|stock farmer|farmer|husbandman|granger|sodbuster +stock room|2 +(noun)|stockroom|storeroom|storage room|stowage +(noun)| +stock saddle|1 +(noun)|Western saddle|saddle +stock split|1 +(noun)|split|split up|increase|step-up +stock symbol|1 +(noun)|symbol +stock ticker|1 +(noun)|ticker|character printer|character-at-a-time printer|serial printer +stock trader|1 +(noun)|trader|bargainer|dealer|monger +stock warrant|2 +(noun)|warrant|stock-purchase warrant|security|surety +(noun)|guarantee|warrant|warrantee|warranty +stockade|3 +(noun)|fortification|munition +(noun)|concentration camp|penal institution|penal facility +(verb)|wall|palisade|fence|fence in|surround +stockbroker|1 +(noun)|agent|factor|broker +stockbroker belt|1 +(noun)|suburb|suburbia|suburban area +stockcar|1 +(noun)|boxcar +stocked|1 +(adj)|stocked with|furnished |equipped +stocked with|1 +(adj)|stocked|furnished |equipped +stocker|1 +(noun)|domestic animal +stockfish|1 +(noun)|fish +stockholder|1 +(noun)|shareholder|shareowner|investor +stockholder of record|1 +(noun)|stockholder|shareholder|shareowner +stockholders meeting|1 +(noun)|meeting +stockholding|2 +(noun)|stockholdings|property|belongings|holding|material possession +(noun)|ownership +stockholdings|3 +(noun)|stockholding|property|belongings|holding|material possession +(noun)|stockholding|property|belongings|holding|material possession +(noun)|stockholding|ownership +stockholm|1 +(noun)|Stockholm|capital of Sweden|national capital +stockhorn|1 +(noun)|hornpipe|pibgorn|single-reed instrument|single-reed woodwind +stockinet|1 +(noun)|stockinette|knit|knitted fabric +stockinette|1 +(noun)|stockinet|knit|knitted fabric +stockinette stitch|1 +(noun)|knitting stitch +stocking|3 +(adj)|stockinged|unshod |unshoed +(noun)|hosiery|hose +(noun)|provision|supply|supplying +stocking cap|1 +(noun)|ski cap|toboggan cap|cap +stocking filler|1 +(noun)|stocking stuffer|Christmas present|Christmas gift +stocking stuffer|1 +(noun)|stocking filler|Christmas present|Christmas gift +stockinged|1 +(adj)|stocking|unshod |unshoed +stockist|1 +(noun)|supplier|provider +stockjobber|1 +(noun)|stock trader +stockman|1 +(noun)|stock raiser|stock farmer|farmer|husbandman|granger|sodbuster +stockpile|3 +(noun)|reserve|backlog|accumulation +(noun)|pile|heap|mound|cumulus +(verb)|stock|carry|have|have got|hold +stockpiling|1 +(noun)|repositing|reposition|storage|warehousing +stockpot|1 +(noun)|pot +stockroom|1 +(noun)|stock room|storeroom|storage room|stowage +stocks|18 +(noun)|pillory|instrument of punishment +(noun)|stock|capital|working capital +(noun)|broth|stock|soup +(noun)|stock|inventory|merchandise|wares|product +(noun)|store|stock|fund|accumulation +(noun)|livestock|stock|farm animal|placental|placental mammal|eutherian|eutherian mammal +(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy|family tree +(noun)|stock|gunstock|handle|grip|handgrip|hold|support +(noun)|stock|repute|reputation +(noun)|breed|strain|stock|variety|animal group +(noun)|stock|lumber|timber +(noun)|stock certificate|stock|security|certificate +(noun)|Malcolm stock|stock|flower +(noun)|stock|plant part|plant structure +(noun)|stock|gillyflower|flower +(noun)|stock|handle|grip|handgrip|hold +(noun)|stock|caudex|stalk|stem +(noun)|neckcloth|stock|cravat +stocktaking|2 +(noun)|reappraisal|revaluation|review|reassessment +(noun)|inventory|inventorying|listing|itemization|itemisation +stockton|1 +(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer|author +stocky|1 +(adj)|compact|heavyset|thick|thickset|fat +stockyard|1 +(noun)|yard +stodge|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +stodgily|1 +(adv)|stuffily +stodginess|1 +(noun)|stuffiness|graveness|gravity|sobriety|soberness|somberness +stodgy|2 +(adj)|fogyish|moss-grown|mossy|stick-in-the-mud|unfashionable |unstylish +(adj)|stuffy|conventional +stoep|1 +(noun)|stoop|porch +stoic|4 +(adj)|stoical|unemotional +(adj)|Stoic|philosophical doctrine|philosophical theory +(noun)|Stoic|philosopher +(noun)|unemotional person|adult|grownup +stoical|1 +(adj)|stoic|unemotional +stoichiometric|1 +(adj)|ratio +stoichiometry|1 +(noun)|ratio +stoicism|2 +(noun)|stolidity|stolidness|unemotionality|emotionlessness +(noun)|Stoicism|philosophical doctrine|philosophical theory +stoke|1 +(verb)|tend +stokehold|1 +(noun)|stokehole|fireroom|chamber +stokehole|1 +(noun)|stokehold|fireroom|chamber +stoker|3 +(noun)|Stoker|Bram Stoker|Abraham Stoker|writer|author +(noun)|fireman|laborer|manual laborer|labourer|jack +(noun)|mechanical device +stokes' aster|1 +(noun)|cornflower aster|Stokesia laevis|flower +stokes-adams syndrome|1 +(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia|arrhythmia +stokesia|1 +(noun)|Stokesia|genus Stokesia|asterid dicot genus +stokesia laevis|1 +(noun)|stokes' aster|cornflower aster|Stokesia laevis|flower +stokowski|1 +(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor|music director|director +stole|1 +(noun)|scarf +stolen|1 +(adj)|purloined|taken +stolen property|1 +(noun)|transferred property|transferred possession +stolid|1 +(adj)|impassive|unemotional +stolidity|2 +(noun)|emotionlessness|impassivity|impassiveness|phlegm|indifference|unemotionality|apathy +(noun)|stoicism|stolidness|unemotionality|emotionlessness +stolidness|1 +(noun)|stoicism|stolidity|unemotionality|emotionlessness +stolon|1 +(noun)|runner|offset|plant organ +stoloniferous|1 +(adj)|plant organ +stoma|2 +(noun)|stomate|pore|aperture +(noun)|orifice|opening|porta +stomach|6 +(noun)|tummy|tum|breadbasket|internal organ|viscus +(noun)|abdomen|venter|belly|body part +(noun)|inclination +(noun)|appetite|appetency|appetence +(verb)|digest +(verb)|digest|endure|stick out|bear|stand|tolerate|support|brook|abide|suffer|put up|permit|allow|let|countenance +stomach ache|2 +(noun)|stomachache|bellyache|gastralgia|ache|aching +(noun)| +stomach exercise|1 +(noun)|tummy crunch|exercise|exercising|physical exercise|physical exertion|workout +stomach flu|1 +(noun)|gastroenteritis|intestinal flu|inflammatory disease +stomach pump|1 +(noun)|suction pump +stomach sweetbread|1 +(noun)|variety meat|organs +stomach upset|1 +(noun)|indigestion|dyspepsia|upset stomach|symptom +stomachache|1 +(noun)|stomach ache|bellyache|gastralgia|ache|aching +stomachal|1 +(adj)|gastric|stomachic|internal organ|viscus +stomacher|1 +(noun)|garment +stomachic|1 +(adj)|gastric|stomachal|internal organ|viscus +stomatal|2 +(adj)|stomatous|orifice|opening|porta +(adj)|stomatous|aperture +stomate|1 +(noun)|stoma|pore|aperture +stomatitis|1 +(noun)|inflammation|redness|rubor +stomatopod|1 +(noun)|stomatopod crustacean|crustacean +stomatopod crustacean|1 +(noun)|stomatopod|crustacean +stomatopoda|1 +(noun)|Stomatopoda|order Stomatopoda|animal order +stomatous|3 +(adj)|stomatal|orifice|opening|porta +(adj)|stomatal|aperture +(adj)|stomatous |mouthlike +stomp|2 +(noun)|social dancing +(verb)|stamp|stump|walk +stomper|1 +(noun)|stamper|tramper|trampler|pedestrian|walker|footer +stone|15 +(adj)|chromatic +(noun)|rock|natural object +(noun)|rock|material|stuff +(noun)|building material +(noun)|gem|gemstone|crystal +(noun)|pit|endocarp|pericarp|seed vessel +(noun)|avoirdupois unit +(noun)|Stone|Oliver Stone|film maker|filmmaker|film producer|movie maker +(noun)|Stone|Lucy Stone|feminist|women's rightist|women's liberationist|libber|suffragist +(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist +(noun)|Stone|Harlan Fiske Stone|jurist|legal expert +(noun)|Stone|Edward Durell Stone|architect|designer +(noun)|coldness|coolness|frigidity +(verb)|lapidate|kill +(verb)|pit|remove|take|take away|withdraw +stone's throw|1 +(noun)|step|small indefinite quantity|small indefinite amount +stone-blind|1 +(adj)|blind |unsighted +stone-broke|1 +(adj)|broke|bust|skint|stony-broke|poor +stone-cold|1 +(adj)|cold +stone-dead|1 +(adj)|dead +stone-deaf|1 +(adj)|profoundly deaf|deaf as a post|unhearing|deaf +stone-face|2 +(noun)|lithops|living stone|stoneface|stone plant|stone life face|flowering stone|succulent +(noun)| +stone-gray|1 +(adj)|slate-gray|slaty|slatey|achromatic +stone-root|3 +(noun)|horse balm|horseweed|stoneroot|richweed|stone root|Collinsonia canadensis|herb|herbaceous plant +(noun)| +(noun)| +stone-sober|1 +(adj)|cold sober|sober +stone-wash|2 +(verb)|stonewash|wash|launder +(verb)| +stone age|1 +(noun)|Stone Age|time period|period of time|period +stone bass|1 +(noun)|wreckfish|Polyprion americanus|sea bass +stone bramble|1 +(noun)|Rubus saxatilis|bramble bush +stone breaker|1 +(noun)|breaker|ledgeman +stone crab|2 +(noun)|crab|crabmeat +(noun)|Menippe mercenaria|crab +stone cress|2 +(noun)|stonecress|herb|herbaceous plant +(noun)| +stone curlew|1 +(noun)|thick-knee|Burhinus oedicnemus|shorebird|shore bird|limicoline bird +stone drill|1 +(noun)|bore bit|borer|rock drill|drill +stone facing|1 +(noun)|revetment|revetement|facing|cladding +stone fly|2 +(noun)|stonefly|plecopteran|insect +(noun)| +stone fruit|1 +(noun)|drupe|fruit +stone life face|1 +(noun)|lithops|living stone|stoneface|stone-face|stone plant|flowering stone|succulent +stone marten|1 +(noun)|beech marten|Martes foina|marten|marten cat +stone mimicry plant|1 +(noun)|living granite|living rock|succulent +stone parsley|2 +(noun)|Sison amomum|herb|herbaceous plant +(noun)|moon carrot|herb|herbaceous plant +stone pine|1 +(noun)|umbrella pine|European nut pine|Pinus pinea|pine|pine tree|true pine +stone pit|1 +(noun)|pit|quarry|excavation|hole in the ground +stone plant|1 +(noun)|lithops|living stone|stoneface|stone-face|stone life face|flowering stone|succulent +stone root|3 +(noun)|horse balm|horseweed|stoneroot|stone-root|richweed|Collinsonia canadensis|herb|herbaceous plant +(noun)| +(noun)| +stone wall|1 +(noun)|fence|fencing +stonechat|1 +(noun)|Saxicola torquata|Old World chat|chat +stonecress|1 +(noun)|stone cress|herb|herbaceous plant +stonecrop|1 +(noun)|sedum +stonecrop family|1 +(noun)|Crassulaceae|family Crassulaceae|plant family +stonecutter|1 +(noun)|cutter|quarryman|quarrier +stoned|1 +(adj)|hopped-up|intoxicated |drunk|inebriated +stoneface|1 +(noun)|lithops|living stone|stone-face|stone plant|stone life face|flowering stone|succulent +stonefish|1 +(noun)|Synanceja verrucosa|scorpaenid|scorpaenid fish +stonefly|1 +(noun)|stone fly|plecopteran|insect +stoneless|1 +(adj)|seedless +stonelike|1 +(adj)|petrous|hard +stonemason|1 +(noun)|mason|craftsman|artisan|journeyman|artificer +stoner|1 +(noun)|lapidator|attacker|aggressor|assailant|assaulter +stoneroot|1 +(noun)|horse balm|horseweed|stone-root|richweed|stone root|Collinsonia canadensis|herb|herbaceous plant +stonewall|2 +(verb)|obstruct|blockade|block|hinder|stymie|stymy|embarrass +(verb)|delay|detain|hold up +stonewall jackson|1 +(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general|full general +stonewaller|1 +(noun)|obstructionist|obstructor|obstructer|resister|thwarter +stonewalling|1 +(noun)|stall|stalling +stoneware|1 +(noun)|ceramic ware +stonewash|1 +(verb)|stone-wash|wash|launder +stonework|1 +(noun)|masonry +stonewort|1 +(noun)|green algae|chlorophyte +stoning|1 +(noun)|lapidation|corporal punishment +stony|3 +(adj)|rocky|bouldery|bouldered|rough |unsmooth +(adj)|flinty|obdurate|hardhearted |heartless +(adj)|granitic|granitelike|rocklike|hard +stony-broke|1 +(adj)|broke|bust|skint|stone-broke|poor +stony coral|1 +(noun)|madrepore|madriporian coral|coral +stonyhearted|1 +(adj)|hardhearted|unfeeling|uncompassionate +stooge|5 +(noun)|flunky|flunkey|yes-man|follower +(noun)|butt|goat|laughingstock|victim|dupe +(verb)|cruise +(verb)|act|play|roleplay|playact +(verb)|act|behave|do +stool|8 +(noun)|seat +(noun)|fecal matter|faecal matter|feces|faeces|BM|ordure|dejection|body waste|excretion|excreta|excrement|excretory product +(noun)|stump|tree stump +(noun)|toilet|can|commode|crapper|pot|potty|throne|plumbing fixture +(verb)|entice|lure|tempt +(verb)|react|respond +(verb)|tiller|grow|develop|produce|get|acquire +(verb)|defecate|shit|take a shit|take a crap|ca-ca|crap|make|excrete|egest|eliminate|pass +stool pigeon|2 +(noun)|bait|decoy|lure +(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +stool test|1 +(noun)|fecal occult test|faecal occult test|diagnostic test|diagnostic assay +stoolie|1 +(noun)|fink|snitch|snitcher|stoolpigeon|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +stoolpigeon|1 +(noun)|fink|snitch|snitcher|stoolie|sneak|sneaker|canary|informer|betrayer|rat|squealer|blabber +stoop|8 +(noun)|inclination|inclining +(noun)|stoup|basin +(noun)|stoep|porch +(verb)|crouch|bend|bow|bend|flex|stoop to +(verb)|condescend|lower oneself|act|move +(verb)|pounce|swoop +(verb)|slope|incline|pitch +(verb)|hold|carry|bear +stoop to|1 +(verb)|patronize|patronise|condescend +stooped|1 +(adj)|hunched|round-backed|round-shouldered|stooping|crooked|unerect +stooper|2 +(noun)|salvager|salvor +(noun)|person|individual|someone|somebody|mortal|human|soul +stooping|1 +(adj)|hunched|round-backed|round-shouldered|stooped|crooked|unerect +stop|21 +(noun)|halt|ending|conclusion|finish +(noun)|stoppage|act|human action|human activity +(noun)|stopover|layover|stay +(noun)|arrest|check|halt|hitch|stay|stoppage|inaction|inactivity|inactiveness +(noun)|topographic point|place|spot +(noun)|stop consonant|occlusive|plosive consonant|plosive speech sound|plosive|consonant +(noun)|period|point|full stop|full point|punctuation|punctuation mark +(noun)|knob +(noun)|diaphragm|mechanical device +(noun)|catch|restraint|constraint +(noun)|blockage|block|closure|occlusion|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +(verb)|halt +(verb)|discontinue|cease|give up|quit|lay off +(verb)|halt|block|kibosh|prevent|forestall|foreclose|preclude|forbid +(verb)|stop over|interrupt|disrupt|break up|cut off +(verb)|break|break off|discontinue|end|terminate +(verb)|check|turn back|arrest|contain|hold back|defend +(verb)|intercept|catch|grab|take hold of +(verb)|end|finish|terminate|cease +(verb)|barricade|block|blockade|block off|block up|bar|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|hold on|interrupt|break +stop-loss order|1 +(noun)|stop order|order|purchase order +stop bath|1 +(noun)|short-stop|short-stop bath|developer +stop consonant|1 +(noun)|stop|occlusive|plosive consonant|plosive speech sound|plosive|consonant +stop dead|1 +(verb)|freeze|stand still +stop number|1 +(noun)|focal ratio|f number|speed|ratio +stop order|1 +(noun)|stop-loss order|order|purchase order +stop over|2 +(verb)|lay over|stop +(verb)|stop|interrupt|disrupt|break up|cut off +stop payment|1 +(noun)|order|purchase order +stop press|1 +(noun)|news +stop up|1 +(verb)|plug|secure|close|fill up +stopcock|1 +(noun)|cock|turncock|faucet +stopes|1 +(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner|birth-control reformer +stopgap|1 +(noun)|makeshift|expedient +stoplight|2 +(noun)|brake light|visual signal +(noun)|traffic light|traffic signal|light +stopo watch|1 +(noun)|stopwatch|timer +stopover|2 +(noun)|way station|stop +(noun)|stop|layover|stay +stoppable|1 +(adj)|stoppable |abatable +stoppage|3 +(noun)|arrest|check|halt|hitch|stay|stop|inaction|inactivity|inactiveness +(noun)|blockage|block|closure|occlusion|stop|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|stop|act|human action|human activity +stoppard|1 +(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist|playwright +stopped|2 +(adj)|stopped +(adj)|stopped-up|stopped up|obstructed +stopped-up|3 +(adj)|stopped|stopped up|obstructed +(adj)|chinked|caulked +(adj)| +stopped up|2 +(adj)|stopped|stopped-up|obstructed +(adj)|chinked|stopped-up|caulked +stopper|5 +(noun)|plug|stopple|blockage|block|closure|occlusion|stop|stoppage +(noun)|show-stopper|showstopper|act|routine|number|turn|bit +(noun)|conversation stopper|remark|comment +(noun)|playing card +(verb)|stopple|plug|stop up|secure +stopper knot|1 +(noun)|knot +stoppered|1 +(adj)|closed +stopping|2 +(noun)|fillet|fastener|fastening|holdfast|fixing +(noun)|playing +stopping point|1 +(noun)|finale|finis|finish|last|conclusion|close|end|ending +stopple|2 +(noun)|plug|stopper|blockage|block|closure|occlusion|stop|stoppage +(verb)|stopper|plug|stop up|secure +stops|12 +(noun)|Michigan|Chicago|Newmarket|boodle|card game|cards +(noun)|stop|halt|ending|conclusion|finish +(noun)|stop|stoppage|act|human action|human activity +(noun)|stop|stopover|layover|stay +(noun)|arrest|check|halt|hitch|stay|stop|stoppage|inaction|inactivity|inactiveness +(noun)|stop|topographic point|place|spot +(noun)|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive|consonant +(noun)|period|point|full stop|stop|full point|punctuation|punctuation mark +(noun)|stop|knob +(noun)|diaphragm|stop|mechanical device +(noun)|catch|stop|restraint|constraint +(noun)|blockage|block|closure|occlusion|stop|stoppage|obstruction|obstructor|obstructer|impediment|impedimenta +stopwatch|1 +(noun)|stopo watch|timer +storage|6 +(noun)|retention|keeping|holding +(noun)|storehouse|depot|entrepot|store|depository|deposit|repository +(noun)|commercial enterprise|business enterprise|business +(noun)|computer operation|machine operation +(noun)|memory|computer memory|computer storage|store|memory board|memory device|storage device|hardware|computer hardware +(noun)|repositing|reposition|warehousing|deposit|deposition +storage area|1 +(noun)|cargo area|cargo deck|cargo hold|hold|enclosure +storage battery|1 +(noun)|accumulator|voltaic battery|galvanic battery +storage cell|1 +(noun)|secondary cell|cell|electric cell +storage device|1 +(noun)|memory device|device +storage locker|1 +(noun)|cabinet|locker|compartment +storage medium|1 +(noun)|data-storage medium|medium +storage ring|1 +(noun)|container +storage room|1 +(noun)|storeroom|stowage|room +storage space|1 +(noun)|area +storage tank|1 +(noun)|tank|vessel +storage warehouse|1 +(noun)|warehouse|storehouse|depot|entrepot|storage|store +storax|1 +(noun)|natural resin +storax family|1 +(noun)|Styracaceae|family Styracaceae|styrax family|dicot family|magnoliopsid family +store|6 +(noun)|shop|mercantile establishment|retail store|sales outlet|outlet +(noun)|stock|fund|accumulation +(noun)|memory|computer memory|storage|computer storage|memory board|memory device|storage device|hardware|computer hardware +(noun)|storehouse|depot|entrepot|storage|depository|deposit|repository +(verb)|hive away|lay in|put in|salt away|stack away|stash away|keep|hold on +(verb)|keep|hold on +store-bought|1 +(adj)|boughten|factory-made +store cheese|1 +(noun)|cheddar|cheddar cheese|cheese +store detective|1 +(noun)|private detective|PI|private eye|private investigator|operative|shamus|sherlock +stored|1 +(adj)|keep|hold on +stored-up|2 +(adj)|saved up|stored up|concentrated +(adj)| +stored up|2 +(adj)|saved up|stored-up|concentrated +(adj)| +storefront|1 +(noun)|shopfront|front +storehouse|1 +(noun)|depot|entrepot|storage|store|depository|deposit|repository +storekeeper|1 +(noun)|shopkeeper|tradesman|market keeper|merchant|merchandiser +storeria|1 +(noun)|Storeria|genus Storeria|reptile genus +storeria occipitamaculata|1 +(noun)|red-bellied snake|Storeria occipitamaculata|colubrid snake|colubrid +storeroom|1 +(noun)|storage room|stowage|room +storey|1 +(noun)|floor|level|story|structure|construction +storeyed|1 +(adj)|storied|high-rise +storied|2 +(adj)|celebrated|historied|glorious +(adj)|storeyed|high-rise +stork|1 +(noun)|wading bird|wader +storksbill|1 +(noun)|heron's bill|geranium +storm|7 +(noun)|violent storm|atmospheric phenomenon +(noun)|tempest|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|assault +(verb)|ramp|rage|act|behave|do +(verb)|force|penetrate|perforate +(verb)|blow +(verb)|surprise|attack|assail +storm-beaten|1 +(adj)|damaged +storm-tossed|1 +(adj)|buffeted|tempest-tossed|tempest-tost|tempest-swept|troubled +storm cellar|1 +(noun)|cyclone cellar|tornado cellar|shelter +storm center|3 +(noun)|storm centre|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|storm|violent storm +(noun)|storm centre|center|centre|middle|heart|eye +storm centre|2 +(noun)|storm center|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|storm center|center|centre|middle|heart|eye +storm cloud|1 +(noun)|cloud +storm cone|1 +(noun)|storm signal +storm door|1 +(noun)|door +storm lamp|1 +(noun)|hurricane lamp|hurricane lantern|tornado lantern|storm lantern|lamp +storm lantern|1 +(noun)|hurricane lamp|hurricane lantern|tornado lantern|storm lamp|lamp +storm petrel|1 +(noun)|petrel +storm sash|1 +(noun)|storm window|window +storm signal|1 +(noun)|signal|signaling|sign +storm trooper|1 +(noun)|Nazi|German Nazi +storm troops|1 +(noun)|SA|Sturmarbeiteilung|Storm Troops|militia|reserves +storm window|1 +(noun)|storm sash|window +stormable|1 +(adj)|expugnable|conquerable +stormbound|1 +(adj)|confined +stormily|1 +(adv)|turbulently|passionately +storminess|1 +(noun)|bad weather|inclemency|inclementness +stormproof|1 +(adj)|protected |secure +stormy|2 +(adj)|stormy |angry|furious|raging|tempestuous|wild|billowy|billowing|surging|blustering|blusterous|blustery|gusty|boisterous|fierce|rough|blowy|breezy|windy|choppy|dirty|squally|thundery|inclement|unpeaceful +(adj)|unpeaceful +stormy petrel|1 +(noun)|northern storm petrel|Hydrobates pelagicus|storm petrel +story|6 +(noun)|narrative|narration|tale|message|content|subject matter|substance +(noun)|fiction +(noun)|floor|level|storey|structure|construction +(noun)|history|account|chronicle|record +(noun)|report|news report|account|write up|news +(noun)|fib|tale|tarradiddle|taradiddle|lie|prevarication +storyline|1 +(noun)|plot line|plot +storyteller|2 +(noun)|narrator|teller|speaker|talker|utterer|verbalizer|verbaliser +(noun)|fibber|fabricator|liar|prevaricator +stotinka|1 +(noun)|Bulgarian monetary unit +stoup|2 +(noun)|drinking vessel +(noun)|stoop|basin +stout|5 +(adj)|stalwart|resolute +(adj)|portly|fat +(adj)|hardy|stalwart|sturdy|robust +(noun)|ale +(noun)|size +stouthearted|1 +(adj)|stalwart|brave |courageous|fearless +stoutheartedness|1 +(noun)|courage|courageousness|bravery +stoutness|2 +(noun)|stalwartness|strength +(noun)|corpulence|overweight|adiposis|fleshiness|obesity +stove|2 +(noun)|kitchen stove|range|kitchen range|cooking stove|kitchen appliance +(noun)|heater|warmer +stove bolt|1 +(noun)|bolt +stove poker|1 +(noun)|poker|fire hook|salamander|fire iron +stovepipe|2 +(noun)|chimney +(noun)|dress hat|high hat|opera hat|silk hat|top hat|topper|beaver|hat|chapeau|lid +stovepipe iron|1 +(noun)|plate iron +stovepiped|1 +(adj)|retrieval +stovepiping|1 +(noun)|retrieval +stover|1 +(noun)|fodder +stow|1 +(verb)|pack +stow away|1 +(verb)|hide|hide out +stowage|3 +(noun)|charge +(noun)|storeroom|storage room|room +(noun)|stowing|storage +stowaway|1 +(noun)|passenger|rider +stowe|1 +(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer|author|abolitionist|emancipationist +stowing|1 +(noun)|stowage|storage +stp|1 +(noun)|STP|s.t.p.|standard temperature|standard atmosphere|atmosphere|atm|standard pressure +strabismus|1 +(noun)|squint|abnormality|abnormalcy|abnormal condition +strabotomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +strachey|1 +(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer +strad|1 +(noun)|Stradavarius|Strad|violin|fiddle +stradavarius|1 +(noun)|Stradavarius|Strad|violin|fiddle +straddle|6 +(noun)|position|view|perspective +(noun)|gymnastic exercise +(noun)|span|motion|movement|move|motility +(noun)|option +(verb)|be +(verb)|range|constitute|represent|make up|comprise|be +stradivari|1 +(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker +stradivarius|1 +(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker +strafe|2 +(noun)|attack|onslaught|onset|onrush +(verb)|attack|assail +strafer|1 +(noun)|combat pilot +straggle|3 +(noun)|group|grouping +(verb)|sidetrack|depart|digress|deviate|divert +(verb)|sprawl|spread|distribute +straggler|1 +(noun)|strayer|dawdler|drone|laggard|lagger|trailer +straggling|1 +(adj)|sprawling|straggly|untidy +stragglingly|1 +(adv)|raggedly +straggly|2 +(adj)|sprawling|straggling|untidy +(adj)|distributed +straight|21 +(adj)|consecutive|continuous |uninterrupted +(adj)|straight |aligned|unbent|untwisted|direct|vertical|perpendicular +(adj)|straight |uncurled|unpermed +(adj)|unbent|unbowed|upright|erect |vertical|upright +(adj)|accurate +(adj)|straight |aboveboard|straightforward|guileless|transparent|straightarrow|honest|honorable|lawful +(adj)|uncoiled |uncurled|unwound +(adj)|straight |trabeated|trabeate|uncurved|uncurving +(adj)|tidy +(adj)|square|honest |honorable +(adj)|heterosexual +(adj)|true|even +(adj)|neat|full-strength|undiluted +(adj)|reliable +(adj)|correct +(adj)|square|conventional +(noun)|heterosexual|heterosexual person|straight person|person|individual|someone|somebody|mortal|human|soul +(noun)|poker hand +(noun)|straightaway|section|segment +(adv)|directly|direct +(adv)|directly|flat +straight-arm|1 +(noun)|maneuver|manoeuvre|evasive action +straight-backed|3 +(adj)|erect |vertical|upright +(adj)|backed +(adv)|erectly +straight-fluted drill|1 +(noun)|straight flute|bore bit|borer|rock drill|stone drill +straight-from-the-shoulder|1 +(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|direct +straight-laced|2 +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|tight-laced|victorian|proper +(adj)| +straight-line method|1 +(noun)|straight-line method of depreciation|depreciation|wear and tear +straight-line method of depreciation|1 +(noun)|straight-line method|depreciation|wear and tear +straight-out|1 +(adj)|outright|unlimited|unqualified +straight and narrow|1 +(noun)|strait and narrow|way|path|way of life +straight angle|1 +(noun)|angular unit +straight arch|1 +(noun)|flat arch|arch +straight arrow|1 +(noun)|square shooter|straight shooter|good person +straight chain|1 +(noun)|open chain +straight chair|1 +(noun)|side chair|chair +straight face|1 +(noun)|facial expression|facial gesture +straight flush|1 +(noun)|poker hand +straight flute|1 +(noun)|straight-fluted drill|bore bit|borer|rock drill|stone drill +straight hang|1 +(noun)|hang +straight life insurance|1 +(noun)|whole life insurance|ordinary life insurance|life insurance|life assurance +straight line|1 +(noun)|line +straight man|1 +(noun)|second banana|performer|performing artist +straight off|1 +(adv)|immediately|instantly|straightaway|directly|now|right away|at once|forthwith|in real time|like a shot +straight person|1 +(noun)|heterosexual|heterosexual person|straight|person|individual|someone|somebody|mortal|human|soul +straight pin|1 +(noun)|pin +straight poker|1 +(noun)|poker|poker game +straight razor|1 +(noun)|razor +straight shooter|1 +(noun)|square shooter|straight arrow|good person +straight sinus|1 +(noun)|tentorial sinus|sinus rectus|venous sinus|sinus +straight ticket|1 +(noun)|vote|ballot|voting|balloting +straightarrow|1 +(adj)|straight +straightaway|3 +(adj)|immediate|prompt|quick|fast +(noun)|straight|section|segment +(adv)|immediately|instantly|straight off|directly|now|right away|at once|forthwith|in real time|like a shot +straightedge|1 +(noun)|hand tool +straighten|6 +(verb)|unbend|change posture +(verb)|straighten out|change|alter|modify +(verb)|change posture +(verb)|tidy|tidy up|clean up|neaten|straighten out|square away|order +(verb)|roll out|unwind|disentangle +(verb)|arrange|set up|straighten out|straighten out +straighten out|6 +(verb)|iron out|put right|better|improve|amend|ameliorate|meliorate +(verb)|disentangle|unsnarl|order +(verb)|reform|see the light|better|improve|ameliorate|meliorate +(verb)|straighten|change|alter|modify +(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|sort out|enlighten|illuminate|elucidate|clarify|clear up|elucidate +(verb)|tidy|tidy up|clean up|neaten|straighten|square away|order +straighten up|1 +(verb)|draw up|pull up|straighten +straightener|1 +(noun)|device +straightforward|4 +(adj)|unequivocal |univocal|unambiguous +(adj)|square|direct +(adj)|aboveboard|straight +(adj)|direct +straightforwardly|1 +(adv)|squarely|foursquare +straightforwardness|2 +(noun)|downrightness|directness|straightness +(noun)|singleness|sincerity +straightjacket|1 +(noun)|straitjacket|garment +straightlaced|1 +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straight-laced|tight-laced|victorian|proper +straightness|5 +(noun)|curvature|curve +(noun)|shape|form|configuration|contour|conformation +(noun)|directness|characteristic +(noun)|good faith|honesty|honestness +(noun)|heterosexuality|heterosexualism|sexual activity|sexual practice|sex|sex activity +strain|21 +(noun)|deformation +(noun)|stress|difficulty +(noun)|tune|melody|air|melodic line|line|melodic phrase|music +(noun)|mental strain|nervous strain|nervousness|nerves +(noun)|breed|stock|variety|animal group +(noun)|form|variant|var.|taxonomic group|taxonomic category|taxon +(noun)|breed|ancestry|lineage|derivation|filiation +(noun)|injury|hurt|harm|trauma +(noun)|tenor|meaning|substance +(noun)|striving|nisus|pains|attempt|effort|endeavor|endeavour|try +(noun)|straining|effort|elbow grease|exertion|travail|sweat +(noun)|song|vocal music +(verb)|strive|reach|tug|labor|labour|push|drive +(verb)|try|stress|afflict +(verb)|extend|use|utilize|utilise|apply|employ +(verb)|sift|sieve|separate +(verb)|tense|tense up|affect +(verb)|tense|tighten +(verb)|filter|filtrate|separate out|filter out|separate +(verb)|puree|rub +(verb)|deform|distort|shape|form +strain gage|1 +(noun)|strain gauge|gauge|gage +strain gauge|1 +(noun)|strain gage|gauge|gage +strained|4 +(adj)|labored|laboured|awkward +(adj)|tense +(adj)|constrained|forced|affected |unnatural +(adj)|agonistic|affected |unnatural +strainer|1 +(noun)|filter +strainer vine|1 +(noun)|luffa|dishcloth gourd|sponge gourd|rag gourd|vine +straining|3 +(adj)|arduous|strenuous|effortful +(noun)|strain|effort|elbow grease|exertion|travail|sweat +(noun)|distortion|overrefinement|torture|twisting|falsification|misrepresentaation +strait|3 +(adj)|narrow +(noun)|sound|channel +(noun)|pass|straits|situation +strait-laced|2 +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|straightlaced|straight-laced|tight-laced|victorian|proper +(adj)| +strait and narrow|1 +(noun)|straight and narrow|way|path|way of life +strait of calais|1 +(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait|sound +strait of dover|1 +(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait|sound +strait of georgia|1 +(noun)|Strait of Georgia|strait|sound +strait of gibraltar|1 +(noun)|Strait of Gibraltar|strait|sound +strait of hormuz|1 +(noun)|Strait of Hormuz|Strait of Ormuz|strait|sound +strait of magellan|1 +(noun)|Strait of Magellan|strait|sound +strait of messina|1 +(noun)|Strait of Messina|strait|sound +strait of ormuz|1 +(noun)|Strait of Hormuz|Strait of Ormuz|strait|sound +straiten|1 +(verb)|confine|detain +straitened|1 +(adj)|confine|detain +straitjacket|2 +(noun)|hindrance|deterrent|impediment|balk|baulk|check|handicap +(noun)|straightjacket|garment +straitlaced|1 +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper +straits|4 +(noun)|pass|strait|situation +(noun)|pass|head|juncture|occasion +(noun)|strait|sound|channel +(noun)|pass|strait|situation +strake|1 +(noun)|wale|board|plank +strand|7 +(noun)|form|shape|pattern +(noun)|line +(noun)|chain|string|necklace +(noun)|fibril|filament|fiber|fibre +(noun)|shore +(noun)|Strand|street +(verb)|maroon|abandon|forsake|desolate|desert +strand wolf|1 +(noun)|brown hyena|Hyaena brunnea|hyena|hyaena +stranded|2 +(adj)|isolated|marooned|unaccompanied +(adj)|aground +strange|3 +(adj)|strange |unusual|antic|fantastic|fantastical|grotesque|crazy|curious|funny|odd|peculiar|queer|rum|rummy|singular|eerie|eery|exotic|freaky|gothic|oddish|other|quaint|quaint|weird +(adj)|unknown|unfamiliar +(adj)|uneasy +strange attractor|1 +(noun)|chaotic attractor|attractor|attracter +strange particle|1 +(noun)|elementary particle|fundamental particle|subatomic particle +strange quark|1 +(noun)|squark|quark +strangely|1 +(adv)|queerly|oddly|funnily|funny +strangely enough|1 +(adv)|curiously enough|funnily enough|interestingly enough|oddly enough +strangeness|2 +(noun)|unfamiliarity|unusualness +(noun)|foreignness|curiousness|quality +stranger|1 +(noun)|alien|unknown|intruder|interloper|trespasser +strangle|6 +(verb)|strangulate|throttle|kill +(verb)|smother|stifle|muffle|repress|suppress|stamp down|inhibit|subdue|conquer|curb +(verb)|suffocate|stifle|asphyxiate +(verb)|hamper|halter|cramp|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|choke|compress|constrict|squeeze|compact|contract|press +(verb)|gag|choke|suffocate|suffer|hurt +strangled|1 +(adj)|smothered|stifled|suppressed|inhibited +stranglehold|2 +(noun)|chokehold|throttlehold|power|powerfulness +(noun)|wrestling hold +strangler|2 +(noun)|strangler tree|air plant|epiphyte|aerophyte|epiphytic plant +(noun)|garroter|garrotter|throttler|choker|killer|slayer +strangler fig|2 +(noun)|golden fig|Florida strangler fig|wild fig|Ficus aurea|fig tree +(noun)|pitch apple|Clusia rosea|Clusia major|strangler|strangler tree +strangler tree|1 +(noun)|strangler|air plant|epiphyte|aerophyte|epiphytic plant +strangles|1 +(noun)|equine distemper|distemper +strangling|1 +(noun)|choking|strangulation|throttling|suffocation|asphyxiation +strangulate|3 +(verb)|strangle|throttle|kill +(verb)|compress|constrict|squeeze|compact|contract|press +(verb)|constrict|constringe|narrow +strangulation|3 +(noun)|choking|strangling|throttling|suffocation|asphyxiation +(noun)|disorder|upset +(noun)|constriction +strap|8 +(noun)|leather strip +(noun)|hanger +(noun)|shoulder strap|band +(noun)|whip +(verb)|tie|bind +(verb)|flog|welt|whip|lather|lash|slash|trounce|beat|beat up|work over +(verb)|sharpen +(verb)|fasten|fix|secure +strap fern|1 +(noun)|fern +strap hinge|1 +(noun)|joint hinge|hinge|flexible joint +straphanger|2 +(noun)|commuter +(noun)|passenger|rider +strapless|1 +(adj)|unsupported +straplike|1 +(adj)|narrow +strappado|1 +(noun)|torture|torturing +strapper|1 +(noun)|bull|bruiser|Samson|man|adult male +strapping|1 +(adj)|beefy|burly|husky|buirdly|robust +strasbourg|1 +(noun)|Strasbourg|Strassburg|city|metropolis|urban center +strassburg|1 +(noun)|Strasbourg|Strassburg|city|metropolis|urban center +stratagem|2 +(noun)|ploy|gambit|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|contrivance|dodge|scheme|strategy +strategian|1 +(noun)|strategist|planner|contriver|deviser +strategic|2 +(adj)|strategical|plan of action +(adj)|important |of import +strategic arms limitation talks|1 +(noun)|Strategic Arms Limitation Talks|SALT|diplomacy|diplomatic negotiations +strategic buyout|1 +(noun)|buyout +strategic intelligence|1 +(noun)|intelligence|intelligence activity|intelligence operation +strategic warning|1 +(noun)|warning +strategical|1 +(adj)|strategic|plan of action +strategics|1 +(noun)|science|scientific discipline +strategist|1 +(noun)|strategian|planner|contriver|deviser +strategy|2 +(noun)|scheme|plan of action +(noun)|military science +stratford-on-avon|1 +(noun)|Stratford-on-Avon|Stratford-upon-Avon|town +stratford-upon-avon|1 +(noun)|Stratford-on-Avon|Stratford-upon-Avon|town +stratification|5 +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +(noun)|social stratification|condition +(noun)|geological process|geologic process +(noun)|shape|form|configuration|contour|conformation +(noun)|placement|location|locating|position|positioning|emplacement +stratified|3 +(adj)|graded|ranked|hierarchical |hierarchal|hierarchic +(adj)|stratified |bedded|foliate|foliated|foliaceous|laminar|laminal|layered|superimposed|sheetlike +(adj)|class-conscious|hierarchical |hierarchal|hierarchic +stratified language|1 +(noun)|programming language|programing language +stratified sample|1 +(noun)|representative sample|proportional sample|sample distribution|sample|sampling +stratified sampling|1 +(noun)|representative sampling|proportional sampling|sampling +stratify|5 +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart +(verb)|arrange|set up +(verb)|change +(verb)|put|set|place|pose|position|lay +(verb)|inseminate|fecundate|fertilize|fertilise +stratosphere|1 +(noun)|layer +stratum|2 +(noun)|layer +(noun)|level|layer|place +stratum basale|1 +(noun)|stratum germinativum|malpighian layer|rete Malpighii|stratum +stratum corneum|1 +(noun)|corneum|horny layer|stratum +stratum germinativum|1 +(noun)|stratum basale|malpighian layer|rete Malpighii|stratum +stratum granulosum|1 +(noun)|stratum +stratum lucidum|1 +(noun)|stratum +stratus|1 +(noun)|stratus cloud|cloud +stratus cloud|1 +(noun)|stratus|cloud +strauss|3 +(noun)|Strauss|Richard Strauss|composer +(noun)|Strauss|Johann Strauss|Strauss the Younger|composer +(noun)|Strauss|Johann Strauss|Strauss the Elder|composer +strauss the elder|1 +(noun)|Strauss|Johann Strauss|Strauss the Elder|composer +strauss the younger|1 +(noun)|Strauss|Johann Strauss|Strauss the Younger|composer +stravinskian|1 +(adj)|Stravinskyan|Stravinskian|composer +stravinsky|2 +(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer +(noun)|Stravinsky|music +stravinskyan|1 +(adj)|Stravinskyan|Stravinskian|composer +straw|7 +(adj)|chromatic +(noun)|plant fiber|plant fibre +(noun)|chaff|husk|shuck|stalk|stubble|plant material +(noun)|pale yellow|yellow|yellowness +(noun)|drinking straw|tube|tubing +(verb)|cover +(verb)|strew|spread|distribute +straw boss|1 +(noun)|assistant foreman|foreman|chief|gaffer|honcho|boss +straw foxglove|1 +(noun)|yellow foxglove|Digitalis lutea|foxglove|digitalis +straw hat|1 +(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|hat|chapeau|lid +straw man|4 +(noun)|front man|front|figurehead|nominal head|strawman|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|strawman|specious argument +(noun)|scarecrow|strawman|bird-scarer|scarer|effigy|image|simulacrum +(noun)| +straw mushroom|1 +(noun)|Chinese mushroom|Volvariella volvacea|agaric +straw poll|1 +(noun)|straw vote|poll|opinion poll|public opinion poll|canvass +straw vote|1 +(noun)|straw poll|poll|opinion poll|public opinion poll|canvass +straw wine|1 +(noun)|dessert wine +strawberry|3 +(noun)|berry +(noun)|herb|herbaceous plant +(noun)|strawberry mark|hemangioma simplex|birthmark|nevus +strawberry-shrub family|1 +(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|magnoliid dicot family +strawberry blite|1 +(noun)|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot +strawberry bush|2 +(noun)|wahoo|Euonymus americanus|shrub|bush +(noun)|Carolina allspice|strawberry shrub|sweet shrub|Calycanthus floridus|allspice +strawberry daiquiri|1 +(noun)|daiquiri|rum cocktail +strawberry geranium|1 +(noun)|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage|breakstone|rockfoil +strawberry guava|1 +(noun)|guava|yellow cattley guava|Psidium littorale|fruit tree +strawberry haemangioma|1 +(noun)|strawberry hemangioma|hemangioma|haemangioma +strawberry hemangioma|1 +(noun)|strawberry haemangioma|hemangioma|haemangioma +strawberry ice cream|1 +(noun)|ice cream +strawberry jam|1 +(noun)|strawberry preserves|jam +strawberry mark|1 +(noun)|strawberry|hemangioma simplex|birthmark|nevus +strawberry pigweed|1 +(noun)|strawberry blite|Indian paint|Chenopodium capitatum|goosefoot +strawberry preserves|1 +(noun)|strawberry jam|jam +strawberry saxifrage|1 +(noun)|strawberry geranium|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage|breakstone|rockfoil +strawberry shrub|1 +(noun)|Carolina allspice|strawberry bush|sweet shrub|Calycanthus floridus|allspice +strawberry tomato|2 +(noun)|dwarf cape gooseberry|Physalis pruinosa|ground cherry|husk tomato +(noun)|downy ground cherry|Physalis pubescens|ground cherry|husk tomato +strawberry tree|1 +(noun)|Irish strawberry|Arbutus unedo|arbutus +strawboard|1 +(noun)|cardboard|composition board +strawflower|3 +(noun)|cornflower|Uvularia grandiflora|bellwort|merry bells|wild oats +(noun)|everlasting|everlasting flower +(noun)|golden everlasting|yellow paper daisy|Helichrysum bracteatum|everlasting|everlasting flower +strawman|3 +(noun)|front man|front|figurehead|nominal head|straw man|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|straw man|specious argument +(noun)|scarecrow|straw man|bird-scarer|scarer|effigy|image|simulacrum +strawworm|2 +(noun)|caddisworm|caseworm +(noun)|jointworm|larva +stray|5 +(adj)|isolated|scattered|sporadic +(noun)|alley cat|domestic cat|house cat|Felis domesticus|Felis catus +(verb)|roll|wander|swan|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +(verb)|err|drift|travel|go|move|locomote +(verb)|digress|divagate|wander|tell +strayer|1 +(noun)|straggler|dawdler|drone|laggard|lagger|trailer +straying|1 +(adj)|lost +streak|7 +(noun)|run|succession +(noun)|characteristic +(noun)|stripe|marking +(noun)|flash +(verb)|move +(verb)|run +(verb)|mottle|blotch|color|colorize|colorise|colourise|colourize|colour|color in|colour in +streaked|1 +(adj)|streaky|patterned +streaker|1 +(noun)|exhibitionist|flasher|nude|nude person +streaky|1 +(adj)|streaked|patterned +stream|10 +(noun)|watercourse|body of water|water +(noun)|flow|current|course|line +(noun)|current|flow|flowing +(noun)|flow|motion|movement|move +(noun)|flow|motion +(verb)|float|drift|be adrift|blow +(verb)|exude|exudate|transude|ooze out|ooze +(verb)|pour|swarm|teem|pullulate|crowd|crowd together +(verb)|pour|pelt|rain cats and dogs|rain buckets|rain|rain down +(verb)|well out|run|flow|feed|course +stream of consciousness|2 +(noun)|prose +(noun)|consciousness +stream orchid|1 +(noun)|chatterbox|giant helleborine|Epipactis gigantea|helleborine +streambed|1 +(noun)|creek bed|bed|bottom +streamer|4 +(noun)|light|visible light|visible radiation +(noun)|banner|headline|newspaper headline +(noun)|pennant|pennon|waft|flag +(noun)|banner|flag +streamer fly|1 +(noun)|fly +streaming|4 +(adj)|exude|exudate|transude|ooze out|ooze +(adj)|flowing|moving +(adj)|flowing|running +(noun)|cyclosis|organic phenomenon +streamlet|1 +(noun)|rivulet|rill|run|runnel|stream|watercourse +streamline|1 +(verb)|contour +streamline flow|1 +(noun)|flow +streamlined|1 +(adj)|efficient +streamliner|1 +(noun)|train|railroad train +streep|1 +(noun)|Streep|Meryl Streep|actress +street|5 +(noun)|thoroughfare +(noun)|thoroughfare +(noun)|environment +(noun)|opportunity|chance +(noun)|neighborhood|neighbourhood +street-walk|2 +(verb)|streetwalk|prostitute +(verb)| +street address|1 +(noun)|address +street arab|1 +(noun)|gamin|throwaway|street urchin|guttersnipe +street child|1 +(noun)|waif|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +street cleaner|1 +(noun)|street sweeper|cleaner +street clothes|1 +(noun)|clothing|article of clothing|vesture|wear +street corner|1 +(noun)|corner|turning point|intersection|crossroad|crossway|crossing|carrefour +street cred|1 +(noun)|street credibility|cred|credibility|credibleness|believability +street credibility|1 +(noun)|street cred|cred|credibility|credibleness|believability +street drug|1 +(noun)|drug of abuse|drug +street fighter|2 +(noun)|rival|challenger|competitor|competition|contender +(noun)|tough|combatant|battler|belligerent|fighter|scrapper +street girl|1 +(noun)|streetwalker|hooker|hustler|floozy|floozie|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +street lamp|1 +(noun)|streetlight|lamp +street name|4 +(noun)|appellation|denomination|designation|appellative +(noun)|name|cant|jargon|slang|lingo|argot|patois|vernacular +(noun)|name +(noun)|name +street organ|1 +(noun)|barrel organ|grind organ|hand organ|hurdy gurdy|musical instrument|instrument +street person|1 +(noun)|dosser|tramp|hobo|bum +street sign|1 +(noun)|sign +street smart|1 +(adj)|streetwise|with-it|smart +street smarts|1 +(noun)|shrewdness|astuteness|perspicacity|perspicaciousness +street sweeper|1 +(noun)|street cleaner|cleaner +street theater|1 +(noun)|guerrilla theater|dramatization|dramatisation +street urchin|1 +(noun)|guttersnipe|urchin +streetcar|1 +(noun)|tram|tramcar|trolley|trolley car|self-propelled vehicle +streetcar track|1 +(noun)|tramline|tramway|track +streetlight|1 +(noun)|street lamp|lamp +streetwalk|1 +(verb)|street-walk|prostitute +streetwalker|1 +(noun)|street girl|hooker|hustler|floozy|floozie|slattern|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +streetwise|1 +(adj)|street smart|with-it|smart +streisand|1 +(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer|vocalist|vocalizer|vocaliser|actress +strekelia|1 +(noun)|Strekelia|genus Strekelia|liliid monocot genus +strekelia formosissima|1 +(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis +strelitzia|1 +(noun)|Strelitzia|genus Strelitzia|monocot genus|liliopsid genus +strelitzia family|1 +(noun)|Strelitziaceae|family Strelitziaceae|monocot family|liliopsid family +strelitzia reginae|1 +(noun)|bird of paradise|Strelitzia reginae|herb|herbaceous plant +strelitziaceae|1 +(noun)|Strelitziaceae|family Strelitziaceae|strelitzia family|monocot family|liliopsid family +strength|9 +(noun)|property +(noun)|military capability|military strength|military posture|posture|capability|capableness +(noun)|force|forcefulness|intensity|intensiveness +(noun)|forte|strong suit|long suit|metier|specialty|speciality|strong point|asset|plus +(noun)|persuasiveness|power|powerfulness +(noun)|intensity|intensity level|magnitude +(noun)|potency|effectiveness|power|powerfulness +(noun)|prosperity|successfulness +(noun)|lastingness|durability|enduringness|permanence|permanency +strengthen|3 +(verb)|beef up|fortify|change|alter|modify +(verb)|change +(verb)|tone|tone up|exercise|work out +strengthened|1 +(adj)|reinforced|strong +strengthener|1 +(noun)|reinforcement|device +strengthening|3 +(adj)|fortifying|invigorating +(noun)|transformation|transmutation|shift +(noun)|increase|step-up +strenuosity|1 +(noun)|athleticism|energy|vigor|vigour +strenuous|2 +(adj)|energetic +(adj)|arduous|straining|effortful +strenuousness|1 +(noun)|arduousness|effortfulness +strep|2 +(adj)|streptococcal|streptococcic|eubacteria|eubacterium|true bacteria +(noun)|streptococcus|streptococci|eubacteria|eubacterium|true bacteria +strep throat|1 +(noun)|streptococcal sore throat|streptococcus tonsilitis|septic sore throat|throat infection|sore throat|pharyngitis|raw throat|infection +strepera|1 +(noun)|Strepera|genus Strepera|bird genus +strepsiceros|1 +(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus +strepsirhini|1 +(noun)|Strepsirhini|suborder Strepsirhini|animal order +streptobacillus|1 +(noun)|rod +streptocarpus|1 +(noun)|flower +streptococcal|1 +(adj)|streptococcic|strep|eubacteria|eubacterium|true bacteria +streptococcal sore throat|1 +(noun)|strep throat|streptococcus tonsilitis|septic sore throat|throat infection|sore throat|pharyngitis|raw throat|infection +streptococci|2 +(noun)|streptococcus|strep|eubacteria|eubacterium|true bacteria +(noun)|streptococcus|strep|eubacteria|eubacterium|true bacteria +streptococcic|1 +(adj)|streptococcal|strep|eubacteria|eubacterium|true bacteria +streptococcus|1 +(noun)|streptococci|strep|eubacteria|eubacterium|true bacteria +streptococcus anhemolyticus|1 +(noun)|Streptococcus anhemolyticus|bacteria species +streptococcus tonsilitis|1 +(noun)|streptococcal sore throat|strep throat|septic sore throat|throat infection|sore throat|pharyngitis|raw throat|infection +streptodornase|1 +(noun)|enzyme +streptokinase|1 +(noun)|enzyme +streptolysin|1 +(noun)|hemolysin|haemolysin|erythrolysin|erythrocytolysin +streptomyces|1 +(noun)|actinomycete +streptomyces erythreus|1 +(noun)|Streptomyces erythreus|streptomyces +streptomyces griseus|1 +(noun)|Streptomyces griseus|streptomyces +streptomyces scabies|1 +(noun)|potato scab bacteria|Streptomyces scabies|streptomyces +streptomycetaceae|1 +(noun)|Streptomycetaceae|family Streptomycetaceae|bacteria family +streptomycin|1 +(noun)|antibiotic|antibiotic drug +streptopelia|1 +(noun)|Streptopelia|genus Streptopelia|bird genus +streptopelia risoria|1 +(noun)|ringdove|Streptopelia risoria|turtledove +streptopelia turtur|1 +(noun)|Streptopelia turtur|turtledove +streptosolen|1 +(noun)|Streptosolen|genus Streptosolen|asterid dicot genus +streptosolen jamesonii|1 +(noun)|marmalade bush|fire bush|fire-bush|Streptosolen jamesonii|shrub|bush +streptothricin|1 +(noun)|antibiotic|antibiotic drug +stress|8 +(noun)|emphasis|accent|prosody|inflection +(noun)|tension|tenseness|strain|mental strain|nervous strain|vasoconstrictor|vasoconstrictive +(noun)|force +(noun)|focus|emphasis|accent +(noun)|strain|difficulty +(verb)|emphasize|emphasise|punctuate|accent|accentuate|express|show|evince +(verb)|accent|accentuate|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|try|strain|afflict +stress fracture|1 +(noun)|fatigue fracture|fracture|break +stress incontinence|1 +(noun)|enuresis|urinary incontinence +stress mark|1 +(noun)|accent|accent mark +stress test|1 +(noun)|assay|check +stressed|2 +(adj)|distressed|in a bad way|troubled +(adj)|stressed |accented|heavy|strong|emphatic|emphasized|emphasised|long|masculine +stressful|1 +(adj)|nerve-racking|nerve-wracking|trying|disagreeable +stressor|1 +(noun)|agent +stretch|20 +(adj)|long +(adj)|elastic +(noun)|expanse +(noun)|reach|reaching|motion|movement|move|motility +(noun)|straightaway|straight +(noun)|stretching|exercise|exercising|physical exercise|physical exertion|workout +(noun)|extension +(noun)|stint|duration|continuance +(noun)|stretchiness|stretchability|elasticity|snap +(verb)|stretch along|be +(verb)|extend|tense|strain|tense up +(verb)|unfold|stretch out|extend|change shape|change form|deform +(verb)|grow +(verb)|elongate|lengthen +(verb)|stretch out|lie down|lie +(verb)|pull|draw|force +(verb)|widen|broaden|extend +(verb)|adulterate|dilute|debase|corrupt|spoil +(verb)|extend|increase +(verb)|stretch out|move +stretch along|1 +(verb)|stretch|be +stretch forth|1 +(verb)|exsert|stretch out|put out|extend|hold out|gesticulate|gesture|motion +stretch mark|1 +(noun)|band|stria|striation +stretch out|5 +(verb)|unfold|stretch|extend|change shape|change form|deform +(verb)|stretch|lie down|lie +(verb)|exsert|put out|extend|hold out|stretch forth|gesticulate|gesture|motion +(verb)|stretch|move +(verb)|crane|stretch|extend +stretch pants|1 +(noun)|trousers|pants +stretch receptor|1 +(noun)|sense organ|sensory receptor|receptor +stretch reflex|1 +(noun)|myotactic reflex|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +stretchability|1 +(noun)|stretch|stretchiness|elasticity|snap +stretchable|1 +(adj)|stretchy|elastic +stretched|3 +(adj)|flexible |flexile +(adj)|stretched out|extended +(adj)|extended +stretched out|1 +(adj)|stretched|extended +stretcher|4 +(noun)|framework|frame|framing +(noun)|mechanical device +(noun)|litter +(noun)|capstone|copestone|coping stone|stone +stretcher-bearer|1 +(noun)|litter-bearer|attendant|attender|tender +stretcher party|1 +(noun)|party|company +stretchiness|1 +(noun)|stretch|stretchability|elasticity|snap +stretching|3 +(adj)|wide-spreading|wide |broad +(noun)|expansion|enlargement +(noun)|stretch|exercise|exercising|physical exercise|physical exertion|workout +stretchy|1 +(adj)|stretchable|elastic +strew|2 +(verb)|straw|spread|distribute +(verb)|cover|spread over +strewing|1 +(noun)|scatter|scattering|spread|spreading +strewn|2 +(adj)|covered +(adj)|scattered|distributed +stria|2 +(noun)|striation|groove|channel +(noun)|band|striation|stripe|streak +striate|2 +(adj)|groove|channel +(verb)|mark +striate body|1 +(noun)|corpus striatum|striatum|basal ganglion +striate vein|1 +(noun)|inferior thalamostriate vein|thalamostriate vein +striated muscle|1 +(noun)|skeletal muscle|muscle|musculus +striated muscle cell|1 +(noun)|striated muscle fiber|muscle cell|muscle fiber|muscle fibre +striated muscle fiber|1 +(noun)|striated muscle cell|muscle cell|muscle fiber|muscle fibre +striated muscle tissue|1 +(noun)|muscle|muscular tissue +striation|2 +(noun)|stria|groove|channel +(noun)|band|stria|stripe|streak +striatum|1 +(noun)|corpus striatum|striate body|basal ganglion +stricken|3 +(adj)|afflicted|ill |sick +(adj)|smitten|struck|affected +(adj)|laid low|ill |sick +strickland|1 +(noun)|Strickland|William Strickland|architect|designer +strickle|5 +(noun)|sharpener +(noun)|implement +(noun)|tool +(verb)|form +(verb)|strike|flush|level|even out|even +strict|6 +(adj)|hard-and-fast|invariable +(adj)|rigorous|exact +(adj)|rigid|intolerant +(adj)|nonindulgent|unpermissive +(adj)|severe|spartan|nonindulgent +(adj)|stern|exacting|demanding +strictly|3 +(adv)|purely +(adv)|stringently +(adv)|rigorously +strictly speaking|1 +(adv)|properly speaking|to be precise +strictness|2 +(noun)|stringency|conscientiousness|painstakingness +(noun)|sternness|unpermissiveness +stricture|2 +(noun)|stenosis|pathology +(noun)|criticism|unfavorable judgment +stride|5 +(noun)|pace|tread|step +(noun)|footstep|pace|step|indefinite quantity +(noun)|advancement|progress +(verb)|walk +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +stridence|1 +(noun)|shrillness|stridency|timbre|timber|quality|tone +stridency|1 +(noun)|shrillness|stridence|timbre|timber|quality|tone +strident|2 +(adj)|blatant|clamant|clamorous|vociferous|noisy +(adj)|raucous|cacophonous |cacophonic +strider|1 +(noun)|pedestrian|walker|footer +stridor|1 +(noun)|symptom +stridulate|1 +(verb)|clitter|make noise|resound|noise +stridulation|1 +(noun)|noise +strife|2 +(noun)|discord|disorder +(noun)|conflict|struggle|battle +strigidae|1 +(noun)|Strigidae|family Strigidae|bird family +strigiformes|1 +(noun)|Strigiformes|order Strigiformes|animal order +strike|27 +(noun)|work stoppage|job action +(noun)|attack|onslaught|onset|onrush +(noun)|pitch|delivery +(noun)|rap|tap|bump|blow +(noun)|ten-strike|score +(noun)|hit|smash|smasher|bang|success +(verb)|hit|impinge on|run into|collide with|touch +(verb)|touch|strike down +(verb)|affect|impress|move +(verb)|hit|attack|assail +(verb)|read|register|show|record +(verb)|hit|affect|impact|bear upon|bear on|touch on|touch +(verb)|walk out|protest|resist|dissent +(verb)|fall|shine|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|come to|achieve|accomplish|attain|reach +(verb)|hit|touch +(verb)|shape|form +(verb)|fall upon|come upon|light upon|chance upon|come across|chance on|happen upon|attain|discover|find|regain +(verb)|make|create +(verb)|expunge|excise|delete|cancel +(verb)|hit|come to +(verb)|hit|move|displace +(verb)|assume|take|take up|move +(verb)|mint|coin|create from raw material|create from raw stuff +(verb)|strickle|flush|level|even out|even +(verb)|penetrate|perforate +(verb)|solve|work out|figure out|puzzle out|lick|work +strike-slip fault|1 +(noun)|fault|geological fault|shift|fracture|break +strike a blow|1 +(verb)|affect|impact|bear upon|bear on|touch on|touch +strike a chord|3 +(verb)|resonate|come across +(verb)|hit home|strike home|strike a note|affect|impress|move|strike +(verb)|touch a chord|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +strike a note|1 +(verb)|hit home|strike home|strike a chord|affect|impress|move|strike +strike back|1 +(verb)|retaliate|strike|hit +strike down|3 +(verb)|cancel|declare|adjudge|hold +(verb)|kill +(verb)|fell|drop|cut down|cut +strike dumb|1 +(verb)|affect|impress|move|strike +strike hard|1 +(verb)|knock|strike +strike home|1 +(verb)|hit home|strike a chord|strike a note|affect|impress|move|strike +strike leader|1 +(noun)|leader +strike off|1 +(verb)|cross off|cross out|strike out|mark|take away|take out +strike out|5 +(verb)|cross off|cross out|strike off|mark|take away|take out +(verb)|fail|neglect +(verb)|fail|go wrong|miscarry +(verb)|retire +(verb)|get down|begin|get|start out|start|set about|set out|commence +strike pay|1 +(noun)|wage|pay|earnings|remuneration|salary +strike up|2 +(verb)|sound off|play +(verb)|initiate|pioneer +strikebound|1 +(adj)|inactive +strikebreaker|1 +(noun)|scab|blackleg|rat|worker +strikebreaking|1 +(noun)|confrontation|opposition +strikeout|1 +(noun)|out +striker|5 +(noun)|athlete|jock +(noun)|bluejacket|navy man|sailor|sailor boy +(noun)|nonworker +(noun)|hitter|mover +(noun)|mechanical device +striking|4 +(adj)|dramatic|spectacular|impressive +(adj)|outstanding|prominent|salient|spectacular|conspicuous |obvious +(noun)|contact|impinging|happening|occurrence|natural event +(noun)|hit|hitting|touch|touching +strikingness|2 +(noun)|salience|saliency|prominence +(noun)|boldness|conspicuousness +strindberg|1 +(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist|playwright|writer|author +string|15 +(noun)|twine|cord +(noun)|bowed stringed instrument|stringed instrument +(noun)|cord +(noun)|train|series +(noun)|sequence +(noun)|drawstring|drawing string|tie +(noun)|collection|aggregation|accumulation|assemblage +(noun)|chain|strand|necklace +(verb)|thread|draw|arrange|set up +(verb)|string up|add +(verb)|string along|advance|progress|pass on|move on|march on|go on +(verb)|arrange|set up|string out +(verb)|fasten|fix|secure +(verb)|remove|take|take away|withdraw +(verb)|change|alter|modify +string along|1 +(verb)|string|advance|progress|pass on|move on|march on|go on +string bass|1 +(noun)|bass fiddle|bass viol|bull fiddle|double bass|contrabass|bowed stringed instrument|string|bass +string bean|1 +(noun)|green bean +string cheese|1 +(noun)|cheese +string line|1 +(noun)|balkline|baulk-line|line +string of beads|1 +(noun)|beads|string +string of words|1 +(noun)|word string|linguistic string|string|language|linguistic communication +string orchestra|1 +(noun)|orchestra +string out|1 +(verb)|spread out|arrange|set up +string quartet|1 +(noun)|string quartette|quartet|quartette +string quartette|1 +(noun)|string quartet|quartet|quartette +string section|1 +(noun)|strings|section +string tie|1 +(noun)|necktie|tie +string up|2 +(verb)|hang|execute|put to death +(verb)|string|add +stringed instrument|1 +(noun)|musical instrument|instrument +stringency|2 +(noun)|tightness|lack|deficiency|want +(noun)|strictness|conscientiousness|painstakingness +stringent|1 +(adj)|rigorous|tight|demanding +stringently|1 +(adv)|strictly +stringer|4 +(noun)|player|participant +(noun)|worker +(noun)|brace|bracing +(noun)|timber +strings|9 +(noun)|string section|section +(noun)|string|twine|cord +(noun)|bowed stringed instrument|string|stringed instrument +(noun)|string|cord +(noun)|string|train|series +(noun)|string|sequence +(noun)|drawstring|drawing string|string|tie +(noun)|string|collection|aggregation|accumulation|assemblage +(noun)|chain|string|strand|necklace +stringy|3 +(adj)|wiry|thin |lean +(adj)|fibrous|sinewy|unchewable|tough +(adj)|ropy|ropey|thready|thick +stringybark|1 +(noun)|eucalyptus|eucalypt|eucalyptus tree +stringybark pine|1 +(noun)|Callitris parlatorei|cypress pine +strip|19 +(noun)|part|piece +(noun)|slip|artifact|artefact +(noun)|airstrip|flight strip|landing strip|airfield|landing field|flying field|field +(noun)|comic strip|cartoon strip|cartoon|sketch +(noun)|lumber|timber +(noun)|striptease|strip show|nude dancing +(verb)|deprive|divest|take +(verb)|undress|discase|uncase|unclothe|strip down|disrobe|peel|take off +(verb)|remove|take|take away|withdraw +(verb)|leach|remove|take|take away|withdraw +(verb)|denude|bare|denudate|clear +(verb)|plunder|despoil|loot|reave|rifle|ransack|pillage|foray|take +(verb)|clean|remove|take|take away|withdraw +(verb)|remove|take|take away|withdraw +(verb)|smooth|smoothen +(verb)|remove|take|take away|withdraw +(verb)|dismantle|remove|take|take away|withdraw +(verb)|milk +(verb)|undress|divest|disinvest|remove|take|take away|withdraw +strip-jack-naked|1 +(noun)|beggar-my-neighbor|beggar-my-neighbour|strip-Jack-naked|card game|cards +strip-mined|1 +(adj)|mined +strip-search|1 +(verb)|search +strip alert|1 +(noun)|alert|qui vive +strip cropping|1 +(noun)|farming|agriculture|husbandry +strip down|1 +(verb)|undress|discase|uncase|unclothe|strip|disrobe|peel|take off +strip lighting|1 +(noun)|light|light source +strip mall|1 +(noun)|mercantile establishment|retail store|sales outlet|outlet +strip mine|2 +(noun)|mine +(verb)|surface mine|surface-mine|mine +strip miner|1 +(noun)|miner|mineworker +strip mining|1 +(noun)|opencast mining|mining|excavation +strip poker|1 +(noun)|poker|poker game +strip search|1 +(noun)|frisk|frisking +strip show|1 +(noun)|strip|striptease|nude dancing +strip steak|1 +(noun)|New York strip|beefsteak +stripe|6 +(noun)|band|banding|adornment +(noun)|badge +(noun)|chevron|stripes|grade insignia|badge +(noun)|kind|sort|form|variety +(noun)|streak|marking +(verb)|mark +stripe blight|1 +(noun)|blight +striped|1 +(adj)|stripy|patterned +striped bass|2 +(noun)|striper|sea bass|bass +(noun)|striper|Roccus saxatilis|rockfish|sea bass +striped button quail|1 +(noun)|Turnix sylvatica|button quail|button-quail|bustard quail|hemipode +striped coral root|1 +(noun)|Corallorhiza striata|coral root +striped dogwood|1 +(noun)|moosewood|moose-wood|striped maple|goosefoot maple|Acer pennsylvanicum|maple +striped drum|1 +(noun)|Equetus pulcher|drum|drumfish +striped gentian|1 +(noun)|Gentiana villosa|gentian +striped hyena|1 +(noun)|Hyaena hyaena|hyena|hyaena +striped killifish|1 +(noun)|mayfish|may fish|Fundulus majalis|killifish +striped maple|1 +(noun)|moosewood|moose-wood|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple +striped marlin|1 +(noun)|Makaira mitsukurii|marlin|spearfish +striped muishond|1 +(noun)|Ictonyx striata|muishond +striped mullet|1 +(noun)|Mugil cephalus|mullet|gray mullet +striped racer|1 +(noun)|California whipsnake|Masticophis lateralis|whip-snake|whip snake +striped skunk|1 +(noun)|Mephitis mephitis|skunk|polecat|wood pussy +striped squirrel|1 +(noun)|eastern chipmunk|hackee|ground squirrel|Tamias striatus|squirrel +striped violet|1 +(noun)|pale violet|cream violet|Viola striata|violet +striper|3 +(noun)|serviceman|military man|man|military personnel +(noun)|striped bass|sea bass|bass +(noun)|striped bass|Roccus saxatilis|rockfish|sea bass +stripes|6 +(noun)|chevron|stripe|grade insignia|badge +(noun)|band|banding|stripe|adornment +(noun)|stripe|badge +(noun)|chevron|stripe|grade insignia|badge +(noun)|stripe|kind|sort|form|variety +(noun)|stripe|streak|marking +striping|1 +(noun)|marking +stripling|1 +(noun)|adolescent|teenager|juvenile|juvenile person +stripped|3 +(adj)|stripped-down|minimal +(adj)|bare|empty +(adj)|unclothed +stripped-down|1 +(adj)|stripped|minimal +stripper|4 +(noun)|compound|chemical compound +(noun)|stemmer|sprigger|worker +(noun)|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler|performer|performing artist +(noun)|stripper well|oil well|oiler +stripper well|1 +(noun)|stripper|oil well|oiler +stripping|1 +(noun)|denudation|uncovering|baring|husking|removal|remotion +striptease|2 +(noun)|stripper|striptease artist|stripteaser|exotic dancer|ecdysiast|peeler|performer|performing artist +(noun)|strip|strip show|nude dancing +striptease artist|1 +(noun)|stripper|striptease|stripteaser|exotic dancer|ecdysiast|peeler|performer|performing artist +stripteaser|1 +(noun)|stripper|striptease artist|striptease|exotic dancer|ecdysiast|peeler|performer|performing artist +stripy|1 +(adj)|striped|patterned +strive|2 +(verb)|endeavor|endeavour|try|seek|attempt|essay|assay +(verb)|reach|strain|tug|labor|labour|push|drive +striver|1 +(noun)|slave|hard worker|worker +striving|1 +(noun)|nisus|pains|strain|attempt|effort|endeavor|endeavour|try +strix|1 +(noun)|Strix|genus Strix|bird genus +strix aluco|1 +(noun)|tawny owl|Strix aluco|owl|bird of Minerva|bird of night|hooter +strix nebulosa|1 +(noun)|great gray owl|Strix nebulosa|owl|bird of Minerva|bird of night|hooter +strix occidentalis|1 +(noun)|spotted owl|Strix occidentalis|owl|bird of Minerva|bird of night|hooter +strix varia|1 +(noun)|barred owl|Strix varia|owl|bird of Minerva|bird of night|hooter +strizostedion vitreum glaucum|1 +(noun)|blue pike|blue pickerel|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye|walleyed pike|jack salmon|Stizostedion vitreum +strobe|1 +(noun)|stroboscope|strobe light|scientific instrument +strobe light|1 +(noun)|stroboscope|strobe|scientific instrument +strobile|1 +(noun)|cone|strobilus|reproductive structure +strobilomyces|1 +(noun)|Strobilomyces|genus Strobilomyces|fungus genus +strobilomyces floccopus|1 +(noun)|old-man-of-the-woods|Strobilomyces floccopus|bolete +strobilus|1 +(noun)|cone|strobile|reproductive structure +stroboscope|1 +(noun)|strobe|strobe light|scientific instrument +stroheim|1 +(noun)|Stroheim|Erich von Stroheim|actor|histrion|player|thespian|role player +stroke|14 +(noun)|shot|maneuver|manoeuvre|play +(noun)|throw|cam stroke|movement|motion +(noun)|apoplexy|cerebrovascular accident|CVA|attack +(noun)|touch|touching +(noun)|stroking|touch|touching +(noun)|oarsman|rower +(noun)|solidus|slash|virgule|diagonal|separatrix|punctuation|punctuation mark +(noun)|mark|print +(noun)|locomotion|travel +(noun)|motion|movement|move|motility +(verb)|fondle|caress +(verb)|strike|hit +(verb)|row +(verb)|flatter|blandish +stroke play|1 +(noun)|medal play|golf|golf game +stroking|1 +(noun)|stroke|touch|touching +stroll|2 +(noun)|amble|promenade|ramble|saunter|perambulation|walk +(verb)|saunter|walk +stroller|2 +(noun)|saunterer|ambler|pedestrian|walker|footer +(noun)|baby buggy|baby carriage|carriage|perambulator|pram|go-cart|pushchair|pusher|wheeled vehicle +stroma|2 +(noun)|plant tissue +(noun)|animal tissue +stromateid|1 +(noun)|butterfish|stromateid fish|percoid fish|percoid|percoidean +stromateid fish|1 +(noun)|butterfish|stromateid|percoid fish|percoid|percoidean +stromateidae|1 +(noun)|Stromateidae|family Stromateidae|fish family +strombidae|1 +(noun)|Strombidae|family Strombidae|mollusk family +strombus|1 +(noun)|Strombus|genus Strombus|mollusk genus +strombus gigas|1 +(noun)|giant conch|Strombus gigas|conch +strong|11 +(adj)|strong |beardown|beefed-up|brawny|hefty|muscular|powerful|sinewy|bullnecked|bullocky|fortified|hard|knockout|severe|industrial-strength|weapons-grade|ironlike|knock-down|powerful|noticeable|reinforced|strengthened|robust|stiff|vehement|virile|well-knit|well-set|powerful|robust|rugged|tough|toughened +(adj)|accented|heavy|stressed +(adj)|intense +(adj)|potent|powerful +(adj)|potent |effectual|equipotent|multipotent|effective|effectual|efficacious|fertile|powerful +(adj)|impregnable|inviolable|secure|unassailable|unattackable|invulnerable +(adj)|solid|substantial|sound +(adj)|irregular +(adj)|hard|alcoholic +(adj)|warm|fresh +(adj)|firm|forceful +strong-arm|4 +(adj)|forcible|physical|forceful +(verb)|treat|handle|do by +(verb)|bully|browbeat|bullyrag|ballyrag|boss around|hector|push around|intimidate +(verb)|beat|beat up|work over +strong-armer|1 +(noun)|hood|hoodlum|goon|punk|thug|tough|toughie|criminal|felon|crook|outlaw|malefactor +strong-boned|1 +(adj)|bony |boney +strong-minded|2 +(adj)|strong-willed|stubborn +(adj)|independent +strong-willed|1 +(adj)|strong-minded|stubborn +strong belief|1 +(noun)|conviction|article of faith|belief +strong breeze|1 +(noun)|breeze|zephyr|gentle wind|air +strong drink|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|alcohol|alcoholic beverage|intoxicant|inebriant +strong force|1 +(noun)|strong interaction|color force|interaction|fundamental interaction +strong gale|1 +(noun)|gale +strong interaction|1 +(noun)|strong force|color force|interaction|fundamental interaction +strong point|1 +(noun)|forte|strong suit|long suit|metier|specialty|speciality|strength|asset|plus +strong suit|2 +(noun)|long suit +(noun)|forte|long suit|metier|specialty|speciality|strong point|strength|asset|plus +strongbox|1 +(noun)|deedbox|box +stronghold|1 +(noun)|fastness|defensive structure|defense|defence +strongly|1 +(adv)|powerfully +strongman|2 +(noun)|performer|performing artist +(noun)|dictator|potentate +strongroom|1 +(noun)|storeroom|storage room|stowage +strongylodon|1 +(noun)|Strongylodon|genus Strongylodon|rosid dicot genus +strongylodon macrobotrys|1 +(noun)|jade vine|emerald creeper|Strongylodon macrobotrys|liana +strontianite|1 +(noun)|mineral +strontium|1 +(noun)|Sr|atomic number 38|metallic element|metal +strontium 90|1 +(noun)|strontium|Sr|atomic number 38 +strop|2 +(noun)|strap|sharpener +(verb)|sharpen +strophanthin|1 +(noun)|glycoside +strophanthus|1 +(noun)|shrub|bush +strophanthus kombe|1 +(noun)|Strophanthus kombe|strophanthus +stropharia|1 +(noun)|Stropharia|genus Stropharia|ring-stalked fungus|fungus genus +stropharia ambigua|1 +(noun)|Stropharia ambigua|agaric +stropharia hornemannii|1 +(noun)|Stropharia hornemannii|agaric +stropharia rugoso-annulata|1 +(noun)|Stropharia rugoso-annulata|agaric +strophariaceae|1 +(noun)|Strophariaceae|family Strophariaceae|fungus family +strophe|1 +(noun)|stanza +stroppy|1 +(adj)|bolshy|stubborn +struck|1 +(adj)|smitten|stricken|affected +structural|6 +(adj)|cognition|knowledge|noesis +(adj)|constitution|composition|makeup +(adj)|functional +(adj)|constructive +(adj)|geomorphologic|geomorphological|morphologic|morphological +(adj)|morphologic|morphological +structural anthropology|1 +(noun)|structuralism|theory +structural formula|1 +(noun)|molecular formula +structural gene|1 +(noun)|gene|cistron|factor +structural genomics|1 +(noun)|genomics +structural iron|1 +(noun)|iron|Fe|atomic number 26 +structural linguistics|1 +(noun)|structuralism|linguistics +structural member|1 +(noun)|support +structural sociology|1 +(noun)|structuralism|theory +structural steel|1 +(noun)|steel +structuralism|3 +(noun)|structural linguistics|linguistics +(noun)|structural anthropology|theory +(noun)|structural sociology|theory +structure|6 +(noun)|construction|artifact|artefact +(noun)|constitution|composition|makeup +(noun)|cognition|knowledge|noesis +(noun)|anatomical structure|complex body part|bodily structure|body structure|body part +(noun)|social organization|social organisation|social structure|social system|system|scheme +(verb)|organize|organise|coordinate +structured|2 +(adj)|structured |organized +(adj)|integrated|organic +strudel|1 +(noun)|pastry +struggle|7 +(noun)|battle|attempt|effort|endeavor|endeavour|try +(noun)|conflict|battle|group action +(noun)|effort|elbow grease|exertion|travail|sweat +(verb)|fight|try|seek|attempt|essay|assay +(verb)|endeavor|endeavour|strive +(verb)|clamber|scramble|shin|shinny|skin|sputter|climb +(verb)|fight +struggler|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +struggling|1 +(adj)|troubled +strum|2 +(noun)|sound +(verb)|thrum|sound +struma|2 +(noun)|goiter|goitre|thyromegaly|disease +(noun)|scrofula|king's evil|tuberculosis|TB|T.B. +strumpet|1 +(noun)|adulteress|fornicatress|hussy|jade|loose woman|slut|trollop|adulterer|fornicator +strung|1 +(adj)|arrange|set up +strung-out|1 +(adj)|dependent|dependant|drug-addicted|hooked|addicted +strut|3 +(noun)|prance|swagger|gait +(noun)|brace|bracing +(verb)|swagger|ruffle|prance|sashay|cock|walk +struthio|1 +(noun)|Struthio|genus Struthio|bird genus +struthio camelus|1 +(noun)|ostrich|Struthio camelus|ratite|ratite bird|flightless bird +struthiomimus|1 +(noun)|ornithomimid +struthionidae|1 +(noun)|Struthionidae|family Struthionidae|bird family +struthioniformes|1 +(noun)|Struthioniformes|order Struthioniformes|animal order +strychnine|1 +(noun)|plant toxin|phytotoxin|alkaloid +strymon|1 +(noun)|Strymon|genus Strymon|arthropod genus +strymon melinus|1 +(noun)|Strymon melinus|hairstreak|hairstreak butterfly +stuart|2 +(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter +(noun)|Stuart|dynasty|royalty|royal family|royal line|royal house +stuart davis|1 +(noun)|Davis|Stuart Davis|painter +stub|6 +(noun)|plant part|plant structure +(noun)|nub|part|piece +(noun)|ticket stub|receipt +(noun)|check stub|counterfoil|record +(noun)|butt|part|portion +(verb)|scrape|skin|abrade|injure|wound +stub nail|1 +(noun)|nail +stub out|1 +(verb)|crush out|extinguish|press out|end|terminate +stubbiness|1 +(noun)|squatness|lowness +stubble|1 +(noun)|chaff|husk|shuck|stalk|straw|plant material +stubbled|1 +(adj)|bestubbled|stubbly|unshaven |unshaved +stubbly|1 +(adj)|bestubbled|stubbled|unshaven |unshaved +stubborn|4 +(adj)|stubborn |bloody-minded|cantankerous|bolshy|stroppy|bullheaded|bullet-headed|pigheaded|contrarious|cross-grained|determined|bulldog|dogged|dour|pertinacious|tenacious|unyielding|hardheaded|mulish|stiff-necked|strong-minded|strong-willed|disobedient|intractable +(adj)|refractory|intractable +(adj)|difficult |hard +(adj)|obstinate|unregenerate|unreconstructed +stubbornly|1 +(adv)|pig-headedly|obdurately|mulishly|obstinately|cussedly +stubbornness|2 +(noun)|obstinacy|obstinance|mulishness|intractability|intractableness +(noun)|bullheadedness|obstinacy|obstinance|pigheadedness|self-will|resoluteness|firmness|resolve|resolution +stubbs|1 +(noun)|Stubbs|William Stubbs|historian|historiographer +stubby|1 +(adj)|short +stucco|3 +(noun)|plaster +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|coat|surface +stuck|2 +(adj)|stuck |cragfast +(adj)|perplexed +stuck-up|1 +(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|too big for one's breeches|uppish|proud +stuck with|1 +(adj)|cursed with|cursed |curst +stud|7 +(noun)|he-man|macho-man|man|adult male +(noun)|rivet|decoration|ornament|ornamentation +(noun)|scantling|upright|vertical +(noun)|studhorse|stallion|entire +(noun)|stud poker|poker|poker game +(verb)|dot|constellate|cover|extend +(verb)|add +stud farm|1 +(noun)|farm +stud finder|1 +(noun)|permanent magnet|static magnet +stud mare|1 +(noun)|broodmare|mare|female horse +stud poker|1 +(noun)|stud|poker|poker game +studbook|1 +(noun)|register|registry +studded|1 +(adj)|adorned |decorated +student|2 +(noun)|pupil|educatee|enrollee +(noun)|scholar|scholarly person|intellectual|intellect +student center|1 +(noun)|center|centre +student lamp|1 +(noun)|reading lamp +student lodging|1 +(noun)|hostel|youth hostel|housing|lodging|living accommodations +student nurse|1 +(noun)|probationer|nurse +student residence|1 +(noun)|dormitory|dorm|residence hall|hall|living quarters|quarters|building|edifice +student teacher|1 +(noun)|practice teacher|college student|university student +student union|1 +(noun)|building|edifice +studentship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +studhorse|1 +(noun)|stud|stallion|entire +studied|2 +(adj)|studied |deliberate|affected|unnatural +(adj)|designed|premeditated +studio|3 +(noun)|workplace|work +(noun)|studio apartment|apartment|flat +(noun)|workplace|work +studio apartment|1 +(noun)|studio|apartment|flat +studio couch|1 +(noun)|day bed|convertible|sofa bed +studious|2 +(adj)|careful +(adj)|bookish|scholarly +studiousness|1 +(noun)|diligence|industriousness|industry +study|15 +(noun)|survey|examination|scrutiny +(noun)|work|learning|acquisition +(noun)|report|written report|document|written document|papers +(noun)|concentration|engrossment|absorption|immersion +(noun)|room +(noun)|discipline|subject|subject area|subject field|field|field of study|bailiwick|branch of knowledge|knowledge domain|knowledge base +(noun)|sketch|drawing +(noun)|cogitation|contemplation|reflection|reflexion|rumination|musing|thoughtfulness +(noun)|memorizer|memoriser +(noun)|musical composition|opus|composition|piece|piece of music +(verb)|analyze|analyse|examine|canvass|canvas +(verb)|consider|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +(verb)|learn|read|take +(verb)|hit the books|learn|larn|acquire +(verb)|meditate|contemplate|think|cogitate|cerebrate +study hall|2 +(noun)|time period|period of time|period +(noun)|classroom|schoolroom +studying|1 +(noun)|perusal|perusing|poring over|reading +stuff|14 +(noun)|material|substance|matter +(noun)|whatchamacallit|whatsis|sundry|sundries|object|physical object +(noun)|clobber|personal property|personal estate|personalty|private property +(noun)|stuff and nonsense|hooey|poppycock|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|quality +(noun)|information|info +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty +(verb)|fill|fill up|make full +(verb)|thrust|shove|squeeze|push|force +(verb)|lug|choke up|block|clog|choke off|clog up|back up|congest|choke|foul +(verb)|gorge|ingurgitate|overindulge|glut|englut|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat +(verb)|impregnate|saturate +(verb)|fill|fill up|make full +(verb)|fill|fill up|make full +stuff and nonsense|1 +(noun)|stuff|hooey|poppycock|nonsense|bunk|nonsensicality|meaninglessness|hokum +stuff shot|1 +(noun)|dunk|dunk shot|basketball shot +stuffed|2 +(adj)|full +(adj)|full +stuffed cabbage|1 +(noun)|dish +stuffed derma|1 +(noun)|kishke|dish +stuffed egg|1 +(noun)|deviled egg|dish +stuffed grape leaves|1 +(noun)|dolmas|dish +stuffed mushroom|1 +(noun)|hors d'oeuvre +stuffed peppers|1 +(noun)|dish +stuffed shirt|1 +(noun)|fuddy-duddy|bore|dullard +stuffed tomato|2 +(noun)|cold stuffed tomato|dish +(noun)|hot stuffed tomato|dish +stuffer|2 +(noun)|taxidermist|animal stuffer|craftsman|artisan|journeyman|artificer +(noun)|circular|handbill|bill|broadside|broadsheet|flier|flyer|throwaway +stuffily|1 +(adv)|stodgily +stuffiness|1 +(noun)|stodginess|graveness|gravity|sobriety|soberness|somberness +stuffing|2 +(noun)|dressing|concoction|mixture|intermixture +(noun)|padding|cushioning +stuffing box|1 +(noun)|packing box|chamber +stuffing nut|1 +(noun)|packing nut|nut +stuffy|2 +(adj)|airless|close|unaired|unventilated +(adj)|stodgy|conventional +stultification|2 +(noun)|befooling|derision +(noun)|constipation|impairment|deadening|degradation|debasement +stultify|3 +(verb)|prove|demonstrate|establish|show|shew +(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +(verb)|cripple|weaken +stumble|6 +(noun)|lurch|stagger|gait +(noun)|trip|trip-up|misstep|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|falter|bumble|walk +(verb)|trip|move +(verb)|hit|come by +(verb)|slip up|trip up|err|mistake|slip +stumblebum|2 +(noun)|palooka|boxer|pugilist +(noun)|lout|clod|goon|oaf|lubber|lummox|lump|gawk|clumsy person +stumbler|2 +(noun)|tripper|pedestrian|walker|footer +(noun)|bungler|blunderer|fumbler|bumbler|sad sack|botcher|butcher|fuckup|incompetent|incompetent person +stumbling|1 +(adj)|lurching|staggering|weaving|unsteady +stumbling block|1 +(noun)|obstacle +stump|8 +(noun)|tree stump|plant part|plant structure +(noun)|body part +(noun)|post +(noun)|dais|podium|pulpit|rostrum|ambo|soapbox|platform +(verb)|mix up|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound +(verb)|stomp|stamp|walk +(verb)|campaign|run +(verb)|clear +stump speech|1 +(noun)|oratory +stump spud|1 +(noun)|spud|hand shovel +stumper|1 +(noun)|poser|toughie|sticker|problem +stumping|1 +(noun)|campaigning|candidacy|candidature|electioneering|political campaign +stumpknocker|1 +(noun)|spotted sunfish|Lepomis punctatus|freshwater bream|bream +stumpy|1 +(adj)|chunky|dumpy|low-set|squat|squatty|short +stun|4 +(verb)|stupefy|immobilize|immobilise +(verb)|shock|floor|ball over|blow out of the water|take aback|surprise +(verb)|sandbag|hit +(verb)|bedaze|daze|desensitize|desensitise +stun baton|1 +(noun)|stun gun|weapon|arm|weapon system +stun gun|1 +(noun)|stun baton|weapon|arm|weapon system +stung|1 +(adj)|injured +stunned|3 +(adj)|amazed|astonied|astonished|astounded|surprised +(adj)|knocked out|kayoed|KO'd|out|unconscious +(adj)|dazed|stupefied|stupid|confused +stunner|2 +(noun)|smasher|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman|adult female +(noun)|surprise +stunng|1 +(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|displeased +stunning|4 +(adj)|arresting|sensational|impressive +(adj)|surprising +(adj)|disorienting +(adj)|beautiful +stunningly|1 +(adv)|spectacularly +stunt|4 +(noun)|deed|feat|effort|exploit +(noun)|animal|animate being|beast|brute|creature|fauna +(verb)|impede|hinder +(verb)|perform|execute|do +stunt flier|1 +(noun)|barnstormer|stunt pilot|pilot|airplane pilot +stunt flying|1 +(noun)|acrobatics|aerobatics|stunting|flight|flying +stunt kite|1 +(noun)|sport kite|kite +stunt man|1 +(noun)|double|stunt woman|stand-in|substitute|relief|reliever|backup|backup man|fill-in +stunt pilot|1 +(noun)|barnstormer|stunt flier|pilot|airplane pilot +stunt woman|1 +(noun)|double|stunt man|stand-in|substitute|relief|reliever|backup|backup man|fill-in +stunted|1 +(adj)|scrawny|scrubby|inferior +stuntedness|1 +(noun)|puniness|runtiness|smallness|littleness +stunting|1 +(noun)|acrobatics|aerobatics|stunt flying|flight|flying +stupefaction|3 +(noun)|astonishment|amazement +(noun)|grogginess|stupor|semiconsciousness|unconsciousness +(noun)|action +stupefied|2 +(adj)|dumbfounded|dumfounded|flabbergasted|thunderstruck|surprised +(adj)|dazed|stunned|stupid|confused +stupefy|3 +(verb)|besot|desensitize|desensitise +(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +(verb)|stun|immobilize|immobilise +stupefying|3 +(adj)|astonishing|astounding|staggering|impressive +(adj)|disorienting +(adj)|alarming +stupendous|1 +(adj)|colossal|prodigious|large +stupid|4 +(adj)|stupid |anserine|dopy|dopey|foolish|goosey|goosy|gooselike|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|cloddish|doltish|dense|dim|dull|dumb|obtuse|slow|gaumless|gormless|lumpish|lumpen|unthinking|nitwitted|senseless|soft-witted|witless|yokel-like|unintelligent +(adj)|dazed|stunned|stupefied|confused +(adj)|unintelligent |brainless|headless|feebleminded|half-witted|slow-witted|imbecile|imbecilic|idiotic|moronic|retarded +(noun)|stupid person|dullard|dolt|pudding head|pudden-head|poor fish|pillock|simpleton|simple +stupid person|1 +(noun)|stupid|dullard|dolt|pudding head|pudden-head|poor fish|pillock|simpleton|simple +stupidity|2 +(noun)|inability +(noun)|betise|folly|foolishness|imbecility|mistake|error|fault +stupidly|1 +(adv)|doltishly|without thinking +stupor|2 +(noun)|daze|shock|stupefaction +(noun)|grogginess|stupefaction|semiconsciousness|unconsciousness +stuporous|1 +(adj)|dazed|foggy|groggy|logy|lethargic |unergetic +sturdiness|1 +(noun)|strength +sturdy|2 +(adj)|hardy|stalwart|stout|robust +(adj)|tough|rugged +sturgeon|1 +(noun)|ganoid|ganoid fish +sturm und drang|1 +(noun)|turbulence|upheaval|Sturm und Drang|disorder +sturmarbeiteilung|1 +(noun)|SA|Sturmarbeiteilung|Storm Troops|militia|reserves +sturnella|1 +(noun)|Sturnella|genus Sturnella|bird genus +sturnella magna|1 +(noun)|eastern meadowlark|Sturnella magna|meadowlark|lark +sturnella neglecta|1 +(noun)|western meadowlark|Sturnella neglecta|meadowlark|lark +sturnidae|1 +(noun)|Sturnidae|family Sturnidae|bird family +sturnus|1 +(noun)|Sturnus|genus Sturnus|bird genus +sturnus vulgaris|1 +(noun)|common starling|Sturnus vulgaris|starling +sturt's desert pea|1 +(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea|clianthus +sturt pea|1 +(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea|clianthus +stutter|2 +(noun)|stammer|speech disorder|speech defect|defect of speech +(verb)|bumble|stammer|falter|talk|speak|utter|mouth|verbalize|verbalise +stutterer|1 +(noun)|stammerer|speaker|talker|utterer|verbalizer|verbaliser +stuttering|1 +(adj)|stammering|inarticulate |unarticulate +stutteringly|1 +(adv)|stammeringly +stuttgart|1 +(noun)|Stuttgart|city|metropolis|urban center +stuyvesant|1 +(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator|executive +sty|2 +(noun)|stye|hordeolum|eye infection|infection +(noun)|pigsty|pigpen|pen +stye|1 +(noun)|sty|hordeolum|eye infection|infection +stygian|2 +(adj)|Stygian|infernal +(adj)|Acheronian|Acherontic|Stygian|dark +style|12 +(noun)|kind|sort|form|variety +(noun)|manner|mode|way|fashion|property +(noun)|expressive style|communication +(noun)|dash|elan|flair|panache|elegance +(noun)|vogue|trend|taste|appreciation|discernment|perceptiveness +(noun)|reproductive structure +(noun)|direction|instruction +(noun)|stylus|tool +(noun)|process|outgrowth|appendage +(verb)|title|name|call +(verb)|make|create +(verb)|write +style of architecture|1 +(noun)|architectural style|type of architecture|art form +style sheet|1 +(noun)|sheet|piece of paper|sheet of paper +styled|1 +(adj)|titled +styleless|1 +(adj)|styleless |unstylish|dowdy +stylemark|1 +(noun)|hallmark|trademark|earmark|characteristic +styler|1 +(noun)|hairdresser|hairstylist|stylist|craftsman|artisan|journeyman|artificer +stylet|1 +(noun)|style +stylisation|1 +(noun)|stylization|standardization|standardisation|normalization|normalisation +stylise|1 +(verb)|stylize|conventionalize|represent|interpret +stylised|1 +(adj)|conventionalized|conventionalised|stylized|artificial |unreal +stylish|2 +(adj)|stylish |fashionable|chic|smart|voguish|chichi|classy|posh|swish|snazzy +(adj)|fashionable |a la mode|in style|in vogue|modish|cool|dapper|dashing|jaunty|natty|raffish|rakish|smart|spiffy|snappy|spruce|faddish|faddy|groovy|swagger|in|latest|last|newest|up-to-date|cutting-edge|with-it|mod|modern|modernistic|swank|swanky|trendsetting|trendy|voguish|old-time|quaint|olde worlde +stylishness|1 +(noun)|chic|chicness|modishness|smartness|swank|last word|elegance +stylist|2 +(noun)|artist|creative person +(noun)|hairdresser|hairstylist|styler|craftsman|artisan|journeyman|artificer +stylistic|1 +(adj)|rhetorical +stylite|1 +(noun)|abstainer|ascetic +stylization|1 +(noun)|stylisation|standardization|standardisation|normalization|normalisation +stylize|1 +(verb)|stylise|conventionalize|represent|interpret +stylized|1 +(adj)|conventionalized|conventionalised|stylised|artificial |unreal +styloid process|1 +(noun)|process|outgrowth|appendage +stylomastoid vein|1 +(noun)|vena stylomastoidea|vein|vena|venous blood vessel +stylomecon|1 +(noun)|Stylomecon|genus Stylomecon|dilleniid dicot genus +stylomecon heterophyllum|1 +(noun)|wind poppy|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy +stylophorum|1 +(noun)|Stylophorum|genus Stylophorum|dilleniid dicot genus +stylophorum diphyllum|1 +(noun)|celandine poppy|wood poppy|Stylophorum diphyllum|poppy +stylopodium|1 +(noun)|style +stylostixis|1 +(noun)|acupuncture|treatment +stylus|2 +(noun)|device +(noun)|style|tool +stylus printer|1 +(noun)|wire matrix printer|wire printer|dot matrix printer|matrix printer|dot printer|impact printer +stymie|3 +(noun)|situation|position +(noun)|obstacle|obstruction +(verb)|obstruct|blockade|block|hinder|stymy|embarrass|prevent|forestall|foreclose|preclude|forbid +stymy|1 +(verb)|obstruct|blockade|block|hinder|stymie|embarrass|prevent|forestall|foreclose|preclude|forbid +styphelia|1 +(noun)|Styphelia|genus Styphelia|dilleniid dicot genus +styphelia humifusum|1 +(noun)|native cranberry|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub|bush +styphelia triflora|1 +(noun)|pink fivecorner|Styphelia triflora|shrub|bush +stypsis|1 +(noun)|astringency|contractility +styptic|2 +(adj)|hemostatic|astringent +(noun)|astringent|astringent drug|medicine|medication|medicament|medicinal drug +styptic weed|1 +(noun)|coffee senna|mogdad coffee|stinking weed|Senna occidentalis|Cassia occidentalis|senna +styracaceae|1 +(noun)|Styracaceae|family Styracaceae|storax family|styrax family|dicot family|magnoliopsid family +styracosaur|1 +(noun)|styracosaurus|ceratopsian|horned dinosaur +styracosaurus|1 +(noun)|styracosaur|ceratopsian|horned dinosaur +styrax|1 +(noun)|shrub|bush +styrax family|1 +(noun)|Styracaceae|family Styracaceae|storax family|dicot family|magnoliopsid family +styrax japonicum|1 +(noun)|Japanese snowbell|Styrax japonicum|styrax +styrax obassia|1 +(noun)|snowbell|Styrax obassia|styrax +styrax texana|1 +(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax +styrene|1 +(noun)|cinnamene|phenylethylene|vinylbenzene|vinyl polymer|vinyl resin|polyvinyl resin +styrofoam|1 +(noun)|Styrofoam|polystyrene|foam +styron|1 +(noun)|Styron|William Styron|writer|author +styx|1 +(noun)|Styx|River Styx|river +suasible|1 +(adj)|convincible|persuadable|persuasible|susceptible +suasion|1 +(noun)|persuasion|communication|communicating +suave|2 +(adj)|debonair|debonaire|debonnaire|refined +(adj)|politic|smooth|diplomatic |diplomatical +suaveness|1 +(noun)|suavity|blandness|graciousness +suavity|1 +(noun)|suaveness|blandness|graciousness +sub|3 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|submarine|submarine sandwich|torpedo|wedge|zep|sandwich +(noun)|submarine|pigboat|U-boat|submersible|submersible warship +(verb)|substitute|stand in|fill in|exchange|change|interchange +sub-assembly|1 +(noun)|assembly +sub-interval|1 +(noun)|interval +sub-rosa|1 +(adj)|under-the-table|behind-the-scenes|covert +sub-saharan|1 +(adj)|sub-Saharan|desert +sub-saharan africa|1 +(noun)|Sub-Saharan Africa|Black Africa|geographical area|geographic area|geographical region|geographic region +sub-test|1 +(noun)|test|mental test|mental testing|psychometric test +sub judice|1 +(adj)|legal +subacid|1 +(adj)|sour +subacute|1 +(adj)|acute +subacute bacterial endocarditis|1 +(noun)|endocarditis +subacute inclusion body encephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +subacute sclerosing leukoencephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +subacute sclerosing panencephalitis|1 +(noun)|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +subalpine|1 +(adj)|alpestrine|upland +subalpine fir|1 +(noun)|Alpine fir|Abies lasiocarpa|silver fir +subalpine larch|1 +(noun)|Larix lyallii|larch|larch tree +subaltern|2 +(adj)|junior-grade|inferior|lower|lower-ranking|lowly|petty|secondary|subordinate|junior +(noun)|commissioned military officer +subaquatic|2 +(adj)|subaqueous|submerged|submersed|underwater|aquatic +(adj)|semiaquatic|aquatic +subaqueous|1 +(adj)|subaquatic|submerged|submersed|underwater|aquatic +subarachnoid space|1 +(noun)|space +subarctic|1 +(adj)|polar circle +subartesian|1 +(adj)|subartesian +subatomic|2 +(adj)|substance|matter +(adj)|microscopic |microscopical|small +subatomic particle|1 +(noun)|elementary particle|fundamental particle|particle +subbase|1 +(noun)|molding|moulding +subbing|1 +(noun)|substituting|work +subclass|1 +(noun)|taxonomic group|taxonomic category|taxon +subclass acnidosporidia|1 +(noun)|Acnidosporidia|subclass Acnidosporidia|class +subclass actinopoda|1 +(noun)|Actinopoda|subclass Actinopoda|class +subclass alismatidae|1 +(noun)|Alismatidae|subclass Alismatidae|class +subclass amphineura|1 +(noun)|Amphineura|subclass Amphineura|class +subclass anapsida|1 +(noun)|Anapsida|subclass Anapsida|class +subclass archaeornithes|1 +(noun)|Archaeornithes|subclass Archaeornithes|class +subclass archosauria|1 +(noun)|Archosauria|subclass Archosauria|class +subclass arecidae|1 +(noun)|Arecidae|subclass Arecidae|class +subclass asteridae|1 +(noun)|Asteridae|subclass Asteridae|class +subclass branchiopoda|1 +(noun)|Branchiopoda|subclass Branchiopoda|class +subclass caryophyllidae|1 +(noun)|Caryophyllidae|subclass Caryophyllidae|class +subclass cirripedia|1 +(noun)|Cirripedia|subclass Cirripedia|class +subclass cnidosporidia|1 +(noun)|Cnidosporidia|subclass Cnidosporidia|class +subclass commelinidae|1 +(noun)|Commelinidae|subclass Commelinidae|class +subclass copepoda|1 +(noun)|Copepoda|subclass Copepoda|class +subclass crossopterygii|1 +(noun)|Crossopterygii|subclass Crossopterygii|class +subclass diapsida|1 +(noun)|Diapsida|subclass Diapsida|reptile|reptilian +subclass dibranchia|1 +(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class +subclass dibranchiata|1 +(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class +subclass dilleniidae|1 +(noun)|Dilleniidae|subclass Dilleniidae|class +subclass dipnoi|1 +(noun)|Dipnoi|subclass Dipnoi|class +subclass discomycetes|1 +(noun)|Discomycetes|subclass Discomycetes|class +subclass elasmobranchii|1 +(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class +subclass entomostraca|1 +(noun)|Entomostraca|subclass Entomostraca|class +subclass euascomycetes|1 +(noun)|Euascomycetes|subclass Euascomycetes|class +subclass euryalida|1 +(noun)|Euryalida|subclass Euryalida|class +subclass eutheria|1 +(noun)|Eutheria|subclass Eutheria|class +subclass exopterygota|1 +(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class +subclass hamamelidae|1 +(noun)|Hamamelidae|subclass Hamamelidae|class +subclass heterobasidiomycetes|1 +(noun)|Heterobasidiomycetes|subclass Heterobasidiomycetes|class +subclass holocephali|1 +(noun)|Holocephali|subclass Holocephali|class +subclass homobasidiomycetes|1 +(noun)|Homobasidiomycetes|subclass Homobasidiomycetes|class +subclass infusoria|1 +(noun)|Infusoria|subclass Infusoria|class +subclass lepidosauria|1 +(noun)|Lepidosauria|subclass Lepidosauria|class +subclass liliidae|1 +(noun)|Liliidae|subclass Liliidae|class +subclass magnoliidae|1 +(noun)|Magnoliidae|subclass Magnoliidae|ranalian complex|class +subclass malacostraca|1 +(noun)|Malacostraca|subclass Malacostraca|class|category|family +subclass metatheria|1 +(noun)|Metatheria|subclass Metatheria|class +subclass ophiurida|1 +(noun)|Ophiurida|subclass Ophiurida|class +subclass opisthobranchia|1 +(noun)|Opisthobranchia|subclass Opisthobranchia|class +subclass ostracoda|1 +(noun)|Ostracoda|subclass Ostracoda|class +subclass pantotheria|1 +(noun)|Pantotheria|subclass Pantotheria|class +subclass phytomastigina|1 +(noun)|Phytomastigina|subclass Phytomastigina|class +subclass prototheria|1 +(noun)|Prototheria|subclass Prototheria|class +subclass rhizopoda|1 +(noun)|Rhizopoda|subclass Rhizopoda|class +subclass rosidae|1 +(noun)|Rosidae|subclass Rosidae|class +subclass selachii|1 +(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class +subclass synapsida|1 +(noun)|Synapsida|subclass Synapsida|class +subclass teleostei|1 +(noun)|Teleostei|subclass Teleostei|class +subclass telosporidia|1 +(noun)|Telosporidia|subclass Telosporidia|class +subclass zoomastigina|1 +(noun)|Zoomastigina|subclass Zoomastigina|class +subclavian|1 +(adj)|bone|os +subclavian artery|1 +(noun)|arteria subclavia|artery|arteria|arterial blood vessel +subclavian vein|1 +(noun)|vena subclavia|vein|vena|venous blood vessel +subclinical absence|1 +(noun)|petit mal epilepsy|absence +subcommittee|1 +(noun)|committee|commission +subcompact|1 +(noun)|subcompact car|car|auto|automobile|machine|motorcar +subcompact car|1 +(noun)|subcompact|car|auto|automobile|machine|motorcar +subconscious|2 +(adj)|unconscious +(noun)|subconscious mind|mind|head|brain|psyche|nous +subconscious mind|1 +(noun)|subconscious|mind|head|brain|psyche|nous +subconsciousness|1 +(noun)|cognitive state|state of mind +subcontinent|1 +(noun)|landmass +subcontract|3 +(noun)|contract +(verb)|farm out|job|hire|engage|employ +(verb)|work|do work +subcontractor|1 +(noun)|contractor +subcortical|1 +(adj)|neural structure +subculture|1 +(noun)|social group +subcutaneous|1 +(adj)|hypodermic|connective tissue|body covering +subcutaneous injection|1 +(noun)|injection|shot +subcutaneous test|1 +(noun)|intradermal test|skin test +subdata base|1 +(noun)|database +subdeacon|1 +(noun)|clergyman|reverend|man of the cloth|holy order|order +subdirectory|1 +(noun)|directory +subdivide|2 +(verb)|separate|divide|part +(verb)|divide|split|split up|separate|dissever|carve up +subdivided|1 +(adj)|divided +subdivider|1 +(noun)|divider +subdivision|5 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|division|partition|partitioning|segmentation|sectionalization|sectionalisation +(noun)|branch|arm|division +(noun)|section|writing|written material|piece of writing|music +(noun)|subsection|section|segment +subdivision ascomycota|1 +(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division +subdivision ascomycotina|1 +(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division +subdivision basidiomycota|1 +(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division +subdivision basidiomycotina|1 +(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division +subdivision coniferophytina|1 +(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class +subdivision cycadophyta|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +subdivision cycadophytina|1 +(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class +subdivision deuteromycota|1 +(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division +subdivision deuteromycotina|1 +(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division +subdivision ginkgophytina|1 +(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|subdivision Ginkgophytina|Ginkgophyta|class +subdivision gnetophytina|1 +(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class +subdivision mastigomycota|1 +(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division +subdivision mastigomycotina|1 +(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division +subdivision pinophytina|1 +(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class +subdivision pteropsida|1 +(noun)|Pteropsida|subdivision Pteropsida|division +subdivision taxophytina|1 +(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class +subdivision zygomycota|1 +(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division +subdivision zygomycotina|1 +(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division +subdominant|1 +(noun)|note|musical note|tone +subduable|1 +(adj)|subjugable|conquerable +subduction|1 +(noun)|geological process|geologic process +subdue|6 +(verb)|repress|quash|keep down|subjugate|reduce|oppress|suppress|crush +(verb)|suppress|stamp down|inhibit|conquer|curb|control|hold in|hold|contain|check|curb|moderate +(verb)|mortify|cricify|control|hold in|hold|contain|check|curb|moderate +(verb)|overcome|get over|surmount|master|get the better of|overcome|defeat +(verb)|subordinate|lower|lour +(verb)|tame|chasten|change|alter|modify +subdued|4 +(adj)|hushed|muted|quiet|soft +(adj)|low-key|low-keyed|restrained +(adj)|tame +(adj)|dim|dark +subduedness|1 +(noun)|dimness|dullness|dulness +subduer|1 +(noun)|surmounter|overcomer|restrainer|controller +subdural|1 +(adj)|meninx|meninges +subedit|1 +(verb)|copyread|copyedit|edit|redact +subeditor|1 +(noun)|editor|editor in chief +suberic acid|1 +(noun)|octanedioic acid|carboxylic acid +subfamily|1 +(noun)|taxonomic group|taxonomic category|taxon +subfamily acoraceae|1 +(noun)|Acoraceae|subfamily Acoraceae|monocot family|liliopsid family +subfamily anserinae|1 +(noun)|Anserinae|subfamily Anserinae|bird family +subfamily bassariscidae|1 +(noun)|Bassariscidae|subfamily Bassariscidae|mammal family +subfamily bovinae|1 +(noun)|Bovinae|subfamily Bovinae|mammal family +subfamily cabombaceae|1 +(noun)|Cabombaceae|subfamily Cabombaceae|water-shield family|magnoliid dicot family +subfamily caesalpinioideae|1 +(noun)|Caesalpinioideae|subfamily Caesalpinioideae|rosid dicot family +subfamily carduelinae|1 +(noun)|Carduelinae|subfamily Carduelinae|bird family +subfamily carpinaceae|1 +(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family +subfamily cetoniidae|1 +(noun)|Cetoniidae|subfamily Cetoniidae|arthropod family +subfamily corylaceae|1 +(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family +subfamily dorylinae|1 +(noun)|Dorylinae|subfamily Dorylinae|arthropod family +subfamily dracaenaceae|1 +(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family +subfamily dracenaceae|1 +(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family +subfamily emberizidae|1 +(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family +subfamily emberizinae|1 +(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family +subfamily garrulinae|1 +(noun)|Garrulinae|subfamily Garrulinae|bird family +subfamily gerbillinae|1 +(noun)|Gerbillinae|subfamily Gerbillinae|mammal family +subfamily hydromyinae|1 +(noun)|Hydromyinae|subfamily Hydromyinae|mammal family +subfamily loriinae|1 +(noun)|Loriinae|subfamily Loriinae|bird family +subfamily lutrinae|1 +(noun)|Lutrinae|subfamily Lutrinae|mammal family +subfamily malaconotinae|1 +(noun)|Malaconotinae|subfamily Malaconotinae|bird family +subfamily melinae|1 +(noun)|Melinae|subfamily Melinae|mammal family +subfamily melolonthidae|1 +(noun)|Melolonthidae|subfamily Melolonthidae|arthropod family +subfamily mephitinae|1 +(noun)|Mephitinae|subfamily Mephitinae|mammal family +subfamily merginae|1 +(noun)|Merginae|subfamily Merginae|bird family +subfamily mimosoideae|1 +(noun)|Mimosoideae|subfamily Mimosoideae|rosid dicot family +subfamily nelumbonaceae|1 +(noun)|Nelumbonaceae|subfamily Nelumbonaceae|magnoliid dicot family +subfamily numididae|1 +(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family +subfamily numidinae|1 +(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family +subfamily papilionoideae|1 +(noun)|Papilionoideae|subfamily Papilionoideae|rosid dicot family +subfamily perdicidae|1 +(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family +subfamily perdicinae|1 +(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family +subfamily peristediinae|1 +(noun)|Peristediinae|subfamily Peristediinae|fish family +subfamily petauristidae|1 +(noun)|Petauristidae|subfamily Petauristidae|mammal family +subfamily philadelphaceae|1 +(noun)|Philadelphaceae|subfamily Philadelphaceae|rosid dicot family +subfamily potoroinae|1 +(noun)|Potoroinae|subfamily Potoroinae|mammal family +subfamily pythoninae|1 +(noun)|Pythoninae|subfamily Pythoninae|reptile family +subfamily smilacaceae|1 +(noun)|Smilacaceae|subfamily Smilacaceae|liliid monocot family +subfamily sterninae|1 +(noun)|Sterninae|subfamily Sterninae|bird family +subfamily sylviinae|1 +(noun)|Sylviinae|subfamily Sylviinae|bird family +subfamily taxodiaceae|1 +(noun)|Taxodiaceae|subfamily Taxodiaceae|redwood family|gymnosperm family +subfamily triglinae|1 +(noun)|Triglinae|subfamily Triglinae|fish family +subfamily turdinae|1 +(noun)|Turdinae|subfamily Turdinae|bird family +subfamily uvulariaceae|1 +(noun)|Uvulariaceae|subfamily Uvulariaceae|liliid monocot family +subfigure|1 +(noun)|figure +subfusc|1 +(adj)|unattractive +subgenus|1 +(noun)|taxonomic group|taxonomic category|taxon +subgenus azalea|1 +(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus +subgenus azaleastrum|1 +(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus +subgenus calliopsis|1 +(noun)|subgenus Calliopsis|asterid dicot genus +subgenus chen|1 +(noun)|Chen|subgenus Chen|bird genus +subgenus pastor|1 +(noun)|Pastor|subgenus Pastor|bird genus +subgenus poinciana|1 +(noun)|Poinciana|subgenus Poinciana|rosid dicot genus +subgross|1 +(adj)|microscopic |microscopical|small +subgroup|2 +(noun)|group|grouping +(noun)|group|mathematical group +subhead|1 +(noun)|subheading|heading|header|head +subheading|1 +(noun)|subhead|heading|header|head +subhuman|2 +(adj)|subhuman |infrahuman +(adj)|unfit +subjacent|1 +(adj)|subjacent |underlying +subject|15 +(adj)|taxable |nonexempt +(adj)|capable|open|susceptible +(adj)|dependent|subordinate +(noun)|topic|theme|message|content|subject matter|substance +(noun)|topic|issue|matter|content|cognitive content|mental object +(noun)|discipline|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +(noun)|content|depicted object|thing +(noun)|case|guinea pig|person|individual|someone|somebody|mortal|human|soul +(noun)|national|person|individual|someone|somebody|mortal|human|soul +(noun)|constituent|grammatical constituent +(noun)|term +(verb)|affect|impact|bear upon|bear on|touch on|touch +(verb)|submit +(verb)|subjugate|dominate|master +(verb)|submit|refer +subject area|1 +(noun)|discipline|subject|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +subject case|1 +(noun)|nominative|nominative case|case|grammatical case +subject field|1 +(noun)|discipline|subject|subject area|field|field of study|study|bailiwick|branch of knowledge|knowledge domain|knowledge base +subject matter|1 +(noun)|message|content|substance|communication +subjection|2 +(noun)|subjugation|relationship +(noun)|conquest|conquering|subjugation|capture|gaining control|seizure +subjective|2 +(adj)|subjective |personal|prejudiced|unobjective|unverifiable +(adj)|immanent +subjectiveness|1 +(noun)|subjectivity|judgment|judgement|sound judgment|sound judgement|perspicacity +subjectivism|2 +(noun)|philosophical doctrine|philosophical theory +(noun)|quality +subjectivist|1 +(noun)|intellectual|intellect +subjectivity|1 +(noun)|subjectiveness|judgment|judgement|sound judgment|sound judgement|perspicacity +subjoin|1 +(verb)|append|tag on|tack on|tack|hang on +subjoining|1 +(noun)|supplementation|subjunction|expansion|expanding upon +subjugable|1 +(adj)|subduable|conquerable +subjugate|2 +(verb)|repress|quash|keep down|subdue|reduce|oppress|suppress|crush +(verb)|subject|dominate|master +subjugated|1 +(adj)|defeated +subjugation|3 +(noun)|subjection|relationship +(noun)|oppression|persecution +(noun)|conquest|conquering|subjection|capture|gaining control|seizure +subjugator|1 +(noun)|conqueror|vanquisher +subjunction|1 +(noun)|supplementation|subjoining|expansion|expanding upon +subjunctive|2 +(adj)|mood|mode|modality +(noun)|subjunctive mood|mood|mode|modality +subjunctive mood|1 +(noun)|subjunctive|mood|mode|modality +subkingdom|1 +(noun)|taxonomic group|taxonomic category|taxon +subkingdom metazoa|1 +(noun)|Metazoa|subkingdom Metazoa|subkingdom +subkingdom parazoa|1 +(noun)|Parazoa|subkingdom Parazoa|subkingdom +sublease|2 +(noun)|sublet|lease|rental|letting +(verb)|sublet|lease|let|rent +sublet|2 +(noun)|sublease|lease|rental|letting +(verb)|sublease|lease|let|rent +sublieutenant|1 +(noun)|lieutenant +sublimate|7 +(adj)|purified|refined|pure +(noun)|gas +(verb)|redirect|airt +(verb)|rarefy|subtilize|change|alter|modify +(verb)|purify|make pure|distill|better|improve|amend|ameliorate|meliorate +(verb)|sublime|gasify|vaporize|vaporise|aerify +(verb)|sublime|change +sublimated|1 +(adj)|sublimed|change +sublimation|2 +(noun)|transformation|transmutation|shift +(noun)|change|alteration|modification +sublimaze|1 +(noun)|Fentanyl|Sublimaze|opiate|analgesic|anodyne|painkiller|pain pill +sublime|5 +(adj)|empyreal|empyrean|glorious +(adj)|revered|reverenced|reverend|venerated|sacred +(adj)|elated +(verb)|sublimate|change +(verb)|sublimate|gasify|vaporize|vaporise|aerify +sublime porte|1 +(noun)|Porte|Sublime Porte|court|royal court +sublimed|1 +(adj)|sublimated|change +sublimely|1 +(adv)|utterly +subliminal|1 +(adj)|imperceptible |unperceivable +sublimity|1 +(noun)|the sublime|nobility|magnanimousness|grandeur +sublingual|1 +(adj)|organ|articulator +sublingual gland|1 +(noun)|sublingual salivary gland|salivary gland +sublingual salivary gland|1 +(noun)|sublingual gland|salivary gland +sublingual vein|1 +(noun)|vena sublingualis|vein|vena|venous blood vessel +subliterary|1 +(adj)|informal +sublittoral|1 +(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +sublunar|2 +(adj)|sublunary|cislunar|satellite +(adj)|sublunary|terrestrial|earthly +sublunary|2 +(adj)|sublunar|cislunar|satellite +(adj)|sublunar|terrestrial|earthly +subluxate|1 +(verb)|injure|wound +subluxation|1 +(noun)|luxation +submachine gun|1 +(noun)|machine gun +submandibular gland|1 +(noun)|submaxillary gland|submaxillary salivary gland|submandibular salivary gland|mandibular gland|salivary gland +submandibular salivary gland|1 +(noun)|submaxillary gland|submaxillary salivary gland|submandibular gland|mandibular gland|salivary gland +submarine|8 +(adj)|undersea|subsurface +(noun)|pigboat|sub|U-boat|submersible|submersible warship +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine sandwich|torpedo|wedge|zep|sandwich +(verb)|skid|slip|slue|slew|slide +(verb)|flip|toss|sky|pitch +(verb)|down|knock down|cut down|push down|pull down +(verb)|operate|control +(verb)|attack|assail +submarine ball|1 +(noun)|submarine pitch|pitch|delivery +submarine earthquake|1 +(noun)|seaquake|earthquake|quake|temblor|seism +submarine pitch|1 +(noun)|submarine ball|pitch|delivery +submarine sandwich|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|torpedo|wedge|zep|sandwich +submarine torpedo|1 +(noun)|torpedo +submariner|1 +(noun)|bluejacket|navy man|sailor|sailor boy +submaxilla|1 +(noun)|lower jaw|mandible|mandibula|mandibular bone|lower jawbone|jawbone|jowl|jaw|articulator +submaxillary gland|1 +(noun)|submaxillary salivary gland|submandibular gland|submandibular salivary gland|mandibular gland|salivary gland +submaxillary salivary gland|1 +(noun)|submaxillary gland|submandibular gland|submandibular salivary gland|mandibular gland|salivary gland +submediant|1 +(noun)|note|musical note|tone +submenu|1 +(noun)|hierarchical menu|cascading menu|menu|computer menu +submerge|4 +(verb)|submerse|sink|settle|go down|go under +(verb)|drown|overwhelm|cover|spread over +(verb)|submerse|immerse|plunge +(verb)|inundate|deluge|flood +submerged|3 +(adj)|sunken |drowned|swamped +(adj)|submersed|underwater|subsurface +(adj)|subaqueous|subaquatic|submersed|underwater|aquatic +submergence|1 +(noun)|submerging|submersion|immersion|sinking +submergible|1 +(adj)|submersible +submerging|1 +(noun)|submergence|submersion|immersion|sinking +submerse|2 +(verb)|submerge|sink|settle|go down|go under +(verb)|submerge|immerse|plunge +submersed|2 +(adj)|submerged|underwater|subsurface +(adj)|subaqueous|subaquatic|submerged|underwater|aquatic +submersible|3 +(adj)|submersible |submergible +(noun)|apparatus|setup +(noun)|submersible warship|warship|war vessel|combat ship +submersible warship|1 +(noun)|submersible|warship|war vessel|combat ship +submersion|2 +(noun)|submergence|submerging|immersion|sinking +(noun)|immersion|ducking|dousing|wetting +submission|7 +(noun)|entry|message|content|subject matter|substance +(noun)|compliance|group action +(noun)|condition|status +(noun)|meekness|humility|humbleness +(noun)|written agreement +(noun)|agreement|understanding +(noun)|contention +submissive|3 +(adj)|submissive |abject|bowed|bowing|cringing|groveling|grovelling|wormlike|wormy|dominated|henpecked|compliant|meek|spiritless|humble|obedient|subordinate|unassertive +(adj)|subordinate +(adj)|slavish|subservient|servile +submissively|1 +(adv)|deferentially +submissiveness|1 +(noun)|obedience +submit|9 +(verb)|subject|refer +(verb)|state|put forward|posit|propose|suggest|advise +(verb)|present|give +(verb)|relegate|pass on|subject +(verb)|bow|defer|accede|give in|yield|give in|succumb|knuckle under|buckle under +(verb)|take|undergo|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +(verb)|put in|apply +(verb)|render|give|gift|present +(verb)|resign|reconcile|accept +submitter|2 +(noun)|follower +(noun)|applicant|applier +submucosa|1 +(noun)|connective tissue +subnormal|2 +(adj)|abnormal +(noun)|simpleton|simple +subnormality|2 +(noun)|abnormality|abnormalcy|abnormal condition +(noun)|retardation|mental retardation|backwardness|slowness|stupidity +subocean|1 +(adj)|suboceanic|sea +suboceanic|1 +(adj)|subocean|sea +subocular|1 +(adj)|suborbital +suborbital|2 +(adj)|path|route|itinerary +(adj)|subocular|cavity|bodily cavity|cavum +suborder|1 +(noun)|taxonomic group|taxonomic category|taxon +suborder alcyonacea|1 +(noun)|Alcyonacea|suborder Alcyonacea|animal order +suborder anisoptera|1 +(noun)|Anisoptera|suborder Anisoptera|animal order +suborder anseres|1 +(noun)|Anseres|suborder Anseres|animal order +suborder anthropoidea|1 +(noun)|Anthropoidea|suborder Anthropoidea|animal order +suborder blattaria|1 +(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order +suborder blattodea|1 +(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order +suborder blennioidea|1 +(noun)|Blennioidea|suborder Blennioidea|animal order +suborder brachyura|1 +(noun)|Brachyura|suborder Brachyura|animal order +suborder carnosaura|1 +(noun)|Carnosaura|suborder Carnosaura|animal order +suborder cephalaspida|1 +(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order +suborder ceratopsia|1 +(noun)|Ceratopsia|suborder Ceratopsia|animal order +suborder ceratosaura|1 +(noun)|suborder Ceratosaura|animal order +suborder charadrii|1 +(noun)|Charadrii|suborder Charadrii|animal order +suborder clamatores|1 +(noun)|Clamatores|suborder Clamatores|animal order +suborder euronithopoda|1 +(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order +suborder eurylaimi|1 +(noun)|Eurylaimi|suborder Eurylaimi|animal order +suborder gorgonacea|1 +(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order +suborder gorgoniacea|1 +(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order +suborder heteroptera|1 +(noun)|Heteroptera|suborder Heteroptera|animal order +suborder heterostraci|1 +(noun)|Heterostraci|suborder Heterostraci|animal order +suborder homoptera|1 +(noun)|Homoptera|suborder Homoptera|animal order +suborder hyperoartia|1 +(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order +suborder hyperotreta|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +suborder hystricomorpha|1 +(noun)|Hystricomorpha|suborder Hystricomorpha|animal order +suborder lacertilia|1 +(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order +suborder lari|1 +(noun)|Lari|suborder Lari|animal order +suborder lemuroidea|1 +(noun)|Lemuroidea|suborder Lemuroidea|animal order +suborder limicolae|1 +(noun)|Limicolae|suborder Limicolae|animal order +suborder lipotyphla|1 +(noun)|Lipotyphla|suborder Lipotyphla|animal order +suborder maniraptora|1 +(noun)|Maniraptora|suborder Maniraptora|animal order +suborder manteodea|1 +(noun)|Manteodea|suborder Manteodea|animal order +suborder marginocephalia|1 +(noun)|Marginocephalia|suborder Marginocephalia|marginocephalian|animal order +suborder megachiroptera|1 +(noun)|Megachiroptera|suborder Megachiroptera|animal order +suborder megaloptera|1 +(noun)|Megaloptera|suborder Megaloptera|animal order +suborder menotyphla|1 +(noun)|Menotyphla|suborder Menotyphla|animal order +suborder menurae|1 +(noun)|Menurae|suborder Menurae|animal order +suborder microchiroptera|1 +(noun)|Microchiroptera|suborder Microchiroptera|animal order +suborder mugiloidea|1 +(noun)|Mugiloidea|suborder Mugiloidea|animal order +suborder myomorpha|1 +(noun)|Myomorpha|suborder Myomorpha|animal order +suborder mysticeti|1 +(noun)|Mysticeti|suborder Mysticeti|animal order +suborder myxiniformes|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +suborder myxinoidei|1 +(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order +suborder natantia|1 +(noun)|Natantia|suborder Natantia|animal order +suborder nematocera|1 +(noun)|Nematocera|suborder Nematocera|animal order +suborder nothosauria|1 +(noun)|Nothosauria|suborder Nothosauria|animal order +suborder odontoceti|1 +(noun)|Odontoceti|suborder Odontoceti|animal order +suborder ophidia|1 +(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order +suborder ornithomimida|1 +(noun)|Ornithomimida|suborder Ornithomimida|animal order +suborder ornithopoda|1 +(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order +suborder oscines|1 +(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order +suborder osteostraci|1 +(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order +suborder otides|1 +(noun)|Otides|suborder Otides|animal order +suborder pachycephalosaurus|1 +(noun)|suborder Pachycephalosaurus|animal order +suborder passeres|1 +(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order +suborder percoidea|1 +(noun)|Percoidea|suborder Percoidea|animal order +suborder petromyzoniformes|1 +(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order +suborder pinnipedia|1 +(noun)|Pinnipedia|suborder Pinnipedia|animal order +suborder plesiosauria|1 +(noun)|Plesiosauria|suborder Plesiosauria|animal order +suborder prosauropoda|1 +(noun)|Prosauropoda|suborder Prosauropoda|animal order +suborder prosimii|1 +(noun)|Prosimii|suborder Prosimii|animal order +suborder reptantia|1 +(noun)|Reptantia|suborder Reptantia|animal order +suborder ruminantia|1 +(noun)|Ruminantia|suborder Ruminantia|animal order +suborder sauria|1 +(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order +suborder sauropoda|1 +(noun)|Sauropoda|suborder Sauropoda|animal order +suborder sauropodomorpha|1 +(noun)|Sauropodomorpha|suborder Sauropodomorpha|animal order +suborder sciuromorpha|1 +(noun)|Sciuromorpha|suborder Sciuromorpha|animal order +suborder scombroidea|1 +(noun)|Scombroidea|suborder Scombroidea|animal order +suborder scorpaenoidea|1 +(noun)|Scorpaenoidea|suborder Scorpaenoidea|animal order +suborder serpentes|1 +(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order +suborder strepsirhini|1 +(noun)|Strepsirhini|suborder Strepsirhini|animal order +suborder tarsioidea|1 +(noun)|Tarsioidea|suborder Tarsioidea|animal order +suborder theropoda|1 +(noun)|Theropoda|suborder Theropoda|animal order +suborder thyreophora|1 +(noun)|Thyreophora|suborder Thyreophora|thyreophoran|animal order +suborder tyranni|1 +(noun)|Tyranni|suborder Tyranni|animal order +suborder xenarthra|1 +(noun)|Xenarthra|suborder Xenarthra|animal order +suborder zygoptera|1 +(noun)|Zygoptera|suborder Zygoptera|animal order +subordinate|8 +(adj)|subordinate |low-level|adjunct|assistant|associate|buck|under|secondary|inferior +(adj)|subordinate |feudatory|ruled|subject|dependent|subservient|submissive|submissive|low-level +(adj)|dependent +(adj)|junior-grade|inferior|lower|lower-ranking|lowly|petty|secondary|subaltern|junior +(noun)|subsidiary|underling|foot soldier|assistant|helper|help|supporter +(noun)|hyponym|subordinate word|word +(verb)|rate|rank|range|order|grade|place +(verb)|subdue|lower|lour +subordinate clause|1 +(noun)|dependent clause|clause +subordinate conjunction|1 +(noun)|subordinating conjunction|conjunction|conjunctive|connective +subordinate word|1 +(noun)|hyponym|subordinate|word +subordinateness|1 +(noun)|subsidiarity|inferiority|lower status|lower rank +subordinating|1 +(adj)|subordinating |subordinative|subordinator +subordinating conjunction|2 +(noun)|conjunction +(noun)|subordinate conjunction|conjunction|conjunctive|connective +subordination|5 +(noun)|dependence|dependance|dependency +(noun)|hyponymy|semantic relation +(noun)|grammatical relation +(noun)|submissiveness +(noun)|mastery|domination +subordinative|1 +(adj)|subordinating |subordinator +subordinator|1 +(adj)|subordinating |subordinative +suborn|3 +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|procure|secure +(verb)|induce|stimulate|cause|have|get|make +subornation|2 +(noun)|provocation|incitement +(noun)|testimony +subornation of perjury|1 +(noun)|subornation +suborner|1 +(noun)|briber|criminal|felon|crook|outlaw|malefactor +subpart|1 +(noun)|part|portion|component part|component +subphylum|1 +(noun)|taxonomic group|taxonomic category|taxon +subphylum cephalochordata|1 +(noun)|Cephalochordata|subphylum Cephalochordata|phylum +subphylum craniata|1 +(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum +subphylum pentastomida|1 +(noun)|Pentastomida|subphylum Pentastomida|phylum +subphylum tunicata|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +subphylum urochorda|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +subphylum urochordata|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +subphylum vertebrata|1 +(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum +subpoena|2 +(noun)|subpoena ad testificandum|writ|judicial writ +(verb)|serve|process|swear out +subpoena ad testificandum|1 +(noun)|subpoena|writ|judicial writ +subpoena duces tecum|1 +(noun)|writ|judicial writ +subpopulation|1 +(noun)|population|universe +subprogram|1 +(noun)|routine|subroutine|procedure|function|software|software system|software package|package +subrogate|1 +(verb)|substitute|replace +subrogation|1 +(noun)|substitution|exchange|commutation +subroutine|1 +(noun)|routine|subprogram|procedure|function|software|software system|software package|package +subroutine library|1 +(noun)|library|program library|collection|aggregation|accumulation|assemblage +subscribe|5 +(verb)|offer|bid|tender +(verb)|sign|write +(verb)|support|agree|hold|concur|concord +(verb)|pledge|donate +(verb)|subscribe to|take|buy|purchase +subscribe to|1 +(verb)|subscribe|take|buy|purchase +subscribed|1 +(adj)|signed +subscriber|3 +(noun)|endorser|indorser|ratifier|supporter|protagonist|champion|admirer|booster|friend +(noun)|reader|customer|client +(noun)|contributor|donor|giver|presenter +subscriber line|1 +(noun)|telephone line|phone line|telephone circuit|line|connection|connexion|connector|connecter|connective +subscript|2 +(adj)|subscript |inferior +(noun)|inferior|character|grapheme|graphic symbol +subscription|4 +(noun)|payment +(noun)|agreement|approval|commendation +(noun)|contribution|donation +(noun)|handwriting +subscription right|1 +(noun)|preemption|pre-emption +subscription warrant|1 +(noun)|warrant|stock warrant|stock-purchase warrant +subsection|1 +(noun)|subdivision|section|segment +subsequence|2 +(noun)|sequel|result|resultant|final result|outcome|termination +(noun)|posteriority|subsequentness|lateness +subsequent|1 +(adj)|subsequent |consequent|ensuant|resultant|resulting|sequent|future|later|ulterior|succeeding +subsequently|1 +(adv)|later|afterwards|afterward|after|later on +subsequentness|1 +(noun)|posteriority|subsequence|lateness +subserve|1 +(verb)|help|assist|aid +subservience|3 +(noun)|condition|status +(noun)|subservientness|subordinateness|subsidiarity +(noun)|obsequiousness|servility|submissiveness +subservient|2 +(adj)|subordinate +(adj)|slavish|submissive|servile +subserviently|1 +(adv)|obsequiously|servilely +subservientness|1 +(noun)|subservience|subordinateness|subsidiarity +subset|1 +(noun)|set +subshrub|1 +(noun)|suffrutex|shrub|bush +subside|4 +(verb)|lessen|weaken +(verb)|dip|sink +(verb)|settle|sink|settle|go down|go under +(verb)|sink|descend|fall|go down|come down +subsidence|3 +(noun)|remission|remittal|suspension|respite|reprieve|hiatus|abatement +(noun)|settling|subsiding|sinking +(noun)|cave in|collapse +subsidiarity|1 +(noun)|subordinateness|inferiority|lower status|lower rank +subsidiary|4 +(adj)|accessory|adjunct|ancillary|adjuvant|appurtenant|auxiliary|supportive +(adj)|auxiliary|supplemental|supplementary|secondary +(noun)|subordinate|underling|foot soldier|assistant|helper|help|supporter +(noun)|subsidiary company|company +subsidiary company|1 +(noun)|subsidiary|company +subsidiary ledger|1 +(noun)|ledger|leger|account book|book of account|book +subsiding|2 +(adj)|abating|decreasing +(noun)|settling|subsidence|sinking +subsidisation|2 +(noun)|subsidization|money +(noun)|grant|subsidization|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +subsidise|2 +(verb)|subsidize|pay +(verb)|subsidize|support +subsidised|1 +(adj)|subsidized|supported +subsidiser|1 +(noun)|subsidizer|donor|giver|presenter +subsidization|2 +(noun)|subsidisation|money +(noun)|grant|subsidisation|allotment|apportionment|apportioning|allocation|parceling|parcelling|assignation +subsidize|2 +(verb)|subsidise|support +(verb)|subsidise|pay +subsidized|1 +(adj)|subsidised|supported +subsidizer|1 +(noun)|subsidiser|donor|giver|presenter +subsidy|1 +(noun)|grant +subsist|1 +(verb)|exist|survive|live +subsistence|3 +(noun)|support|keep|livelihood|living|bread and butter|sustenance +(noun)|survival|endurance +(noun)|being|beingness|existence +subsistence farming|1 +(noun)|farming|agriculture|husbandry +subsister|1 +(noun)|survivor|unfortunate|unfortunate person +subsoil|1 +(noun)|undersoil|soil|dirt +subsonic|1 +(adj)|subsonic +subspace|1 +(noun)|mathematical space|topological space +subspecies|1 +(noun)|race|taxonomic group|taxonomic category|taxon +substance|6 +(noun)|matter|entity +(noun)|part|portion|component part|component +(noun)|kernel|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content|cognitive content|mental object +(noun)|meaning|idea|thought +(noun)|means|capital +(noun)|message|content|subject matter|communication +substance abuse|1 +(noun)|drug abuse|habit|misuse|abuse +substance abuser|1 +(noun)|drug user|user|person|individual|someone|somebody|mortal|human|soul +substandard|2 +(adj)|deficient|inferior|nonstandard +(adj)|irregular +substantia alba|1 +(noun)|white matter|nervous tissue|nerve tissue +substantia grisea|1 +(noun)|grey matter|gray matter|grey substance|gray substance|nervous tissue|nerve tissue +substantia nigra|1 +(noun)|nucleus niger|locus niger|neural structure +substantial|5 +(adj)|significant|considerable +(adj)|substantive|in essence|essential +(adj)|substantial |real|material|material +(adj)|hearty|satisfying|solid|wholesome +(adj)|solid|strong|sound +substantiality|1 +(noun)|substantialness|materiality|physicalness|corporeality +substantially|1 +(adv)|well|considerably +substantialness|1 +(noun)|substantiality|materiality|physicalness|corporeality +substantiate|4 +(verb)|confirm|corroborate|sustain|support|affirm +(verb)|incarnate|body forth|embody|be +(verb)|realize|realise|actualize|actualise|make|create +(verb)|strengthen|beef up|fortify +substantiated|1 +(adj)|corroborated|verified|supported +substantiating|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiative|validating|validatory|verificatory|verifying|supportive +substantiation|2 +(noun)|confirmation|verification|check|proof|cogent evidence +(noun)|validation|proof|determination|finding +substantiative|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|validating|validatory|verificatory|verifying|supportive +substantival|1 +(adj)|word +substantive|4 +(adj)|substantial|in essence|essential +(adj)|substantive |essential +(adj)|meaty|meaningful +(noun)|word +substantive dye|1 +(noun)|direct dye|dye|dyestuff +substation|1 +(noun)|station +substitutability|1 +(noun)|replaceability|commutability|exchangeability|interchangeability|interchangeableness|fungibility +substitutable|2 +(adj)|synonymous +(adj)|commutable|exchangeable +substitute|9 +(adj)|second-string|secondary +(adj)|utility|secondary +(adj)|ersatz|artificial |unreal +(noun)|replacement|equivalent +(noun)|reserve|athlete|jock +(noun)|stand-in|relief|reliever|backup|backup man|fill-in|peer|equal|match|compeer +(verb)|replace|exchange|change|interchange +(verb)|sub|stand in|fill in|exchange|change|interchange +(verb)|deputize|deputise|step in|supplant|replace|supersede|supervene upon +substituting|1 +(noun)|subbing|work +substitution|2 +(noun)|permutation|transposition|replacement|switch|variation|fluctuation +(noun)|exchange|commutation|change +substitution class|1 +(noun)|paradigm|class|category|family +substrate|2 +(noun)|substance|matter +(noun)|substratum|stratum +substratum|1 +(noun)|substrate|stratum +substructure|2 +(noun)|infrastructure|structure +(noun)|foundation|base|fundament|foot|groundwork|understructure|support +subsume|2 +(verb)|include +(verb)|colligate|include +subsumption|2 +(noun)|minor premise|minor premiss|premise|premiss|assumption +(noun)|classification|categorization|categorisation|sorting +subsurface|1 +(adj)|subsurface |belowground|underground|submarine|undersea|submerged|submersed|underwater|subterranean|subterraneous +subsystem|1 +(noun)|system|scheme +subtend|1 +(verb)|delimit|be +subterfuge|1 +(noun)|blind|misrepresentation|deceit|deception +subterminal|1 +(adj)|last +subterranean|2 +(adj)|subterraneous|subsurface +(adj)|subterraneous|ulterior|covert +subterraneous|2 +(adj)|subterranean|subsurface +(adj)|subterranean|ulterior|covert +subthalamic nucleus|1 +(noun)|nucleus|cell nucleus|karyon +subthalamus|1 +(noun)|neural structure +subtilin|1 +(noun)|antibiotic|antibiotic drug +subtilise|1 +(verb)|subtilize|sharpen|heighten +subtilize|3 +(verb)|discriminate|know apart +(verb)|rarefy|sublimate|change|alter|modify +(verb)|subtilise|sharpen|heighten +subtitle|3 +(noun)|caption|translation|interlingual rendition|rendering|version +(noun)|title +(verb)|supply|provide|render|furnish +subtle|4 +(adj)|elusive|impalpable +(adj)|delicate +(adj)|perceptive +(adj)|insidious|pernicious|harmful +subtlety|2 +(noun)|nuance|nicety|shade|refinement|meaning|significance|signification|import +(noun)|niceness|difficulty|difficultness +subtonic|1 +(noun)|leading tone|note|musical note|tone +subtopia|1 +(noun)|conurbation|urban sprawl +subtract|1 +(verb)|deduct|take off|calculate|cipher|cypher|compute|work out|reckon|figure +subtracted|1 +(adj)|subtracted |ablated|deducted +subtracter|2 +(noun)|calculator|reckoner|figurer|estimator|computer +(noun)|calculator|calculating machine +subtraction|2 +(noun)|minus|arithmetic operation +(noun)|deduction|decrease|diminution|reduction|step-down +subtractive|1 +(adj)|subtractive |reductive|ablative +subtrahend|1 +(noun)|number +subtreasury|1 +(noun)|treasury|exchequer +subtropic|1 +(adj)|subtropical|semitropical|semitropic|climatic zone +subtropical|1 +(adj)|subtropic|semitropical|semitropic|climatic zone +subtropics|1 +(noun)|semitropics|climatic zone +subularia|1 +(noun)|Subularia|genus Subularia|dilleniid dicot genus +subularia aquatica|1 +(noun)|awlwort|Subularia aquatica|aquatic plant|water plant|hydrophyte|hydrophytic plant +subunit|1 +(noun)|fractional monetary unit|monetary unit +suburb|1 +(noun)|suburbia|suburban area|residential district|residential area|community +suburban|1 +(adj)|residential district|residential area|community +suburban area|1 +(noun)|suburb|suburbia|residential district|residential area|community +suburbanise|2 +(verb)|suburbanize|change +(verb)|suburbanize|change|alter|modify +suburbanised|1 +(adj)|suburbanized|decentralized |decentralised +suburbanite|1 +(noun)|resident|occupant|occupier +suburbanize|2 +(verb)|suburbanise|change +(verb)|suburbanise|change|alter|modify +suburbanized|1 +(adj)|suburbanised|decentralized |decentralised +suburbia|2 +(noun)|suburb|suburban area|residential district|residential area|community +(noun)|subculture +subvent|1 +(verb)|underwrite|subvention|undertake|guarantee +subvention|3 +(noun)|subsidy +(noun)|provision|supply|supplying +(verb)|underwrite|subvent|undertake|guarantee +subversion|2 +(noun)|corruption|degradation|debasement +(noun)|subversive activity|overthrow +subversive|2 +(adj)|insurgent|seditious|disloyal +(noun)|revolutionist|revolutionary|subverter|radical +subversive activity|1 +(noun)|subversion|overthrow +subversiveness|1 +(noun)|treason|traitorousness|disloyalty +subvert|4 +(verb)|overthrow|overturn|bring down|depose|force out +(verb)|corrupt|pervert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change|alter|modify +(verb)|sabotage|undermine|countermine|counteract|weaken|disobey +(verb)|destroy|ruin +subverter|1 +(noun)|revolutionist|revolutionary|subversive|radical +subvocalise|1 +(verb)|subvocalize|pronounce|articulate|enounce|sound out|enunciate|say +subvocaliser|1 +(noun)|subvocalizer|articulator +subvocalize|1 +(verb)|subvocalise|pronounce|articulate|enounce|sound out|enunciate|say +subvocalizer|1 +(noun)|subvocaliser|articulator +subway|2 +(noun)|metro|tube|underground|railway|railroad|railroad line|railway line|railway system +(noun)|underpass|tunnel +subway fare|1 +(noun)|train fare +subway station|1 +(noun)|terminal|terminus|depot +subway token|1 +(noun)|token +subway train|1 +(noun)|train|railroad train +succedaneum|1 +(noun)|substitute|replacement +succeed|2 +(verb)|win|come through|bring home the bacon|deliver the goods +(verb)|come after|follow +succeeder|1 +(noun)|achiever|winner|success|person|individual|someone|somebody|mortal|human|soul +succeeding|2 +(adj)|succeeding |apres-ski|back-to-back|consecutive|ensuing|following|undermentioned|in line|following|next|postmortem|subsequent +(adj)|future|next|incoming +success|4 +(noun)|happening|occurrence|natural event +(noun)|attainment +(noun)|prosperity|successfulness +(noun)|achiever|winner|succeeder|person|individual|someone|somebody|mortal|human|soul +successful|1 +(adj)|successful |booming|flourishing|palmy|prospering|prosperous|roaring|thriving|eminent|in|made|no-hit|productive|self-made|sure-fire|triple-crown|victorious|winning|winning|triple-crown|fortunate|productive|undefeated +successfully|1 +(adv)|with success +successfulness|1 +(noun)|prosperity|good fortune|good luck +succession|5 +(noun)|sequence|chronological sequence|successiveness|chronological succession|temporal arrangement|temporal order +(noun)|series +(noun)|sequence|order|ordering +(noun)|ecological succession|natural process|natural action|action|activity +(noun)|taking over|acquisition +successive|1 +(adj)|consecutive|sequent|sequential|serial|ordered +successively|1 +(adv)|in turn +successiveness|1 +(noun)|sequence|chronological sequence|succession|chronological succession|temporal arrangement|temporal order +successor|3 +(noun)|replacement|peer|equal|match|compeer +(noun)|substitute|replacement +(noun)|heir|offspring|progeny|issue +succinct|1 +(adj)|compendious|compact|summary|concise +succinctly|1 +(adv)|compactly +succinctness|1 +(noun)|conciseness|concision|pithiness|terseness +succinic|1 +(adj)|natural resin +succinic acid|1 +(noun)|carboxylic acid +succinylcholine|1 +(noun)|muscle relaxant +succor|2 +(noun)|relief|succour|ministration|aid|assist|assistance|help +(verb)|succour|help|assist|aid +succorer|1 +(noun)|succourer|rescuer|recoverer|saver +succory|1 +(noun)|chicory|chicory plant|Cichorium intybus|herb|herbaceous plant +succos|1 +(noun)|Succos|Sukkoth|Feast of Booths|Feast of Tabernacles|Tabernacles|Jewish holy day +succotash|1 +(noun)|dish +succour|2 +(noun)|relief|succor|ministration|aid|assist|assistance|help +(verb)|succor|help|assist|aid +succourer|1 +(noun)|succorer|rescuer|recoverer|saver +succuba|1 +(noun)|succubus|devil|fiend|demon|daemon|daimon +succubus|1 +(noun)|succuba|devil|fiend|demon|daemon|daimon +succulence|1 +(noun)|juiciness|appetizingness|appetisingness +succulent|2 +(adj)|lush|juicy +(noun)|vascular plant|tracheophyte +succumb|2 +(verb)|yield|give in|knuckle under|buckle under|accept|consent|go for +(verb)|yield|die|decease|perish|go|exit|pass away|expire|pass +succus|1 +(noun)|juice|liquid body substance|bodily fluid|body fluid|humor|humour +succuss|1 +(verb)|shake up|shake|agitate +succussion|1 +(noun)|auscultation +such|3 +(adj)|such as|specified +(adj)|such that|specified +(adj)|so much|much +such-and-such|1 +(adj)|unspecified +such as|1 +(adj)|such|specified +such that|1 +(adj)|such|specified +suchlike|1 +(adj)|like |similar +suck|6 +(noun)|sucking|suction|consumption|ingestion|intake|uptake +(verb)|drink|imbibe|suck in +(verb)|draw|take out +(verb)|suck in|absorb|take in +(verb)|absorb|imbibe|soak up|sop up|suck up|draw|take in|take up|suck in|suck in +(verb)|breastfeed|bottle-feed|suckle|nurse|wet-nurse|lactate|give suck|feed|give +suck in|4 +(verb)|take in|sop up|take up|consume|ingest|take in|take|have +(verb)|suck|absorb|take in +(verb)|draw in|hollow|hollow out|core out +(verb)|aspirate|draw in|remove|take|take away|withdraw +suck up|3 +(verb)|absorb|suck|imbibe|soak up|sop up|draw|take in|take up +(verb)|cozy up|cotton up|shine up|play up|sidle up|ingratiate +(verb)|fawn|toady|truckle|bootlick|kowtow|kotow|flatter|blandish +sucker|7 +(noun)|chump|fool|gull|mark|patsy|fall guy|soft touch|mug|victim|dupe +(noun)|shoot +(noun)|drinker +(noun)|freshwater fish +(noun)|lollipop|all-day sucker|candy +(noun)|organ +(noun)|catostomid +sucker punch|1 +(noun)|punch|clout|poke|lick|biff +suckerfish|1 +(noun)|remora|sucking fish|spiny-finned fish|acanthopterygian +sucking|1 +(noun)|suck|suction|consumption|ingestion|intake|uptake +sucking fish|1 +(noun)|remora|suckerfish|spiny-finned fish|acanthopterygian +sucking louse|1 +(noun)|louse|insect +sucking pig|1 +(noun)|piglet|piggy|shoat +suckle|2 +(verb)|feed|eat +(verb)|breastfeed|bottle-feed|suck|nurse|wet-nurse|lactate|give suck|feed|give +suckled|1 +(adj)|nursed|breast-fed +suckling|4 +(noun)|Suckling|Sir John Suckling|poet|courtier +(noun)|nursling|nurseling|baby|babe|infant +(noun)|young mammal +(noun)|lactation|feeding|alimentation +suckling pig|1 +(noun)|cochon de lait|pork|porc +suckling reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +sucralfate|1 +(noun)|Carafate|medicine|medication|medicament|medicinal drug +sucrase|1 +(noun)|invertase|saccharase|disaccharidase +sucre|2 +(noun)|Ecuadoran monetary unit +(noun)|Sucre|capital +sucrose|1 +(noun)|saccharose|disaccharide|plant product +suction|3 +(noun)|pressure|pressure level|force per unit area +(noun)|sucking|suck|consumption|ingestion|intake|uptake +(verb)|evacuate|void|empty +suction curettage|1 +(noun)|vacuum aspiration|curettage|curettement|induced abortion +suction pump|1 +(noun)|pump +suction stop|1 +(noun)|click|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|plosive +suctorial|1 +(adj)|consumption|ingestion|intake|uptake +sudafed|1 +(noun)|naphazoline|Privine|Sudafed|vasoconstrictor|vasoconstrictive|nasal decongestant +sudan|2 +(noun)|Sudan|Republic of the Sudan|Soudan|African country|African nation +(noun)|Sudan|Soudan|geographical area|geographic area|geographical region|geographic region +sudanese|2 +(adj)|Sudanese|African country|African nation +(noun)|Sudanese|African +sudanese monetary unit|1 +(noun)|Sudanese monetary unit|monetary unit +sudanese pound|1 +(noun)|Sudanese pound|pound|Sudanese monetary unit +sudate|1 +(verb)|sweat|perspire|excrete|egest|eliminate|pass +sudation|1 +(noun)|perspiration|sweating|diaphoresis|hidrosis|bodily process|body process|bodily function|activity +sudbury|1 +(noun)|Sudbury|city|metropolis|urban center +sudden|1 +(adj)|sudden |abrupt|explosive|fulminant|sharp|unexpected|unforeseen|fast +sudden death|1 +(noun)|overtime|extra time +sudden infant death syndrome|1 +(noun)|SIDS|infant death|crib death|cot death|death|sleep apnea +suddenly|3 +(adv)|all of a sudden|of a sudden +(adv)|abruptly|short|dead +(adv)|on the spur of the moment +suddenness|1 +(noun)|abruptness|precipitateness|precipitance|precipitancy|haste|hastiness|hurry|hurriedness|precipitation +sudor|1 +(noun)|perspiration|sweat|secretion +sudoriferous gland|1 +(noun)|sweat gland|exocrine gland|duct gland +sudorific|1 +(adj)|diaphoretic|bodily process|body process|bodily function|activity +sudra|2 +(noun)|Shudra|Sudra|Hindu|Hindoo|Hindustani +(noun)|shudra|varna +suds|4 +(noun)|soapsuds|lather|foam|froth +(noun)|beer +(verb)|wash|launder +(verb)|froth|spume|make|create +sudsy|1 +(adj)|bubbling|foaming|foamy|frothing|spumous|spumy|agitated +sue|2 +(noun)|Sue|Eugene Sue|writer|author +(verb)|action|litigate|process|challenge +suede|2 +(noun)|leather +(noun)|suede cloth|fabric|cloth|material|textile +suede cloth|1 +(noun)|suede|fabric|cloth|material|textile +suede glove|1 +(noun)|kid glove|glove|gloves +suer|2 +(noun)|suitor|wooer|admirer|adorer +(noun)|petitioner|plaintiff|complainant +suet|1 +(noun)|edible fat +suet pudding|1 +(noun)|pudding +suety|1 +(adj)|fatty |fat +suez|1 +(noun)|Suez|city|metropolis|urban center +suez canal|1 +(noun)|Suez Canal|ship canal|shipway +suffer|11 +(verb)|endure|experience|undergo|see|go through +(verb)|sustain|have|get|experience|receive|have|get|undergo +(verb)|feel|experience +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|put up|permit|allow|let|countenance +(verb)|worsen|decline +(verb)|hurt|be +(verb)|hurt|ache|perceive|comprehend +(verb)|meet|experience|undergo|see|go through +(verb)|be +(verb)|tend|be given|lean|incline|run +(verb)|lose|worsen|decline +sufferable|1 +(adj)|bearable|endurable|supportable|tolerable +sufferance|2 +(noun)|endurance +(noun)|toleration|acceptance|permissiveness|tolerance +sufferer|2 +(noun)|sick person|diseased person|unfortunate|unfortunate person +(noun)|martyr|victim +suffering|6 +(adj)|troubled +(adj)|miserable|wretched|unhappy +(noun)|agony|excruciation|pain|hurting +(noun)|woe|misery|wretchedness +(noun)|distress|hurt|pain|painfulness +(noun)|hurt|pain|painfulness +suffice|1 +(verb)|do|answer|serve|satisfy|fulfill|fulfil|live up to +sufficiency|3 +(noun)|wealth|wealthiness +(noun)|enough|relative quantity +(noun)|adequacy|quality +sufficient|1 +(adj)|sufficient |adequate|decent|enough|spare|comfortable|ample +suffix|2 +(noun)|postfix|affix|ending|termination +(verb)|affix +suffix notation|1 +(noun)|postfix notation|reverse Polish notation|parenthesis-free notation +suffixation|1 +(noun)|affixation +suffocate|7 +(verb)|smother|asphyxiate|kill +(verb)|stifle|asphyxiate|choke|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|choke|become|turn +(verb)|choke|stifle|dampen +(verb)|stifle|asphyxiate|die|decease|perish|go|exit|pass away|expire|pass +(verb)|feel +(verb)|gag|choke|strangle|suffer|hurt +suffocating|1 +(adj)|smothering|suffocative|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +suffocation|2 +(noun)|asphyxiation|killing|kill|putting to death +(noun)|asphyxiation|hypoxia +suffocative|1 +(adj)|smothering|suffocating|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +suffragan|1 +(noun)|suffragan bishop|bishop +suffragan bishop|1 +(noun)|suffragan|bishop +suffrage|1 +(noun)|right to vote|vote|franchise|enfranchisement +suffragette|1 +(noun)|suffragist|feminist|women's rightist|women's liberationist|libber +suffragist|1 +(noun)|advocate|advocator|proponent|exponent +suffrutescent|1 +(adj)|woody +suffrutex|1 +(noun)|subshrub|shrub|bush +suffuse|2 +(verb)|perfuse|flush +(verb)|change +suffused|1 +(adj)|distributed +suffusion|1 +(noun)|permeation|pervasion|diffusion +suffusive|1 +(adj)|distributive +sufi|2 +(adj)|Sufi|mysticism|religious mysticism|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +(noun)|Sufi|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +sufism|1 +(noun)|Sufism|mysticism|religious mysticism +sugar|4 +(noun)|refined sugar|sweetening|sweetener +(noun)|carbohydrate|saccharide|macromolecule|supermolecule +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|wampum|money +(verb)|saccharify|sweeten|dulcify|edulcorate|dulcorate +sugar-bush|1 +(noun)|sugar sumac|Rhus ovata|sumac|sumach|shumac +sugar-coated|1 +(adj)|candied|sugary +sugar apple|1 +(noun)|sweetsop|anon|custard apple +sugar beet|2 +(noun)|beet|common beet|Beta vulgaris +(noun)|beet|beetroot +sugar bowl|1 +(noun)|dish +sugar candy|1 +(noun)|candy +sugar cane|3 +(noun)|sugarcane|cane +(noun)|sugarcane|Saccharum officinarum|gramineous plant|graminaceous plant +(noun)| +sugar cookie|1 +(noun)|cookie|cooky|biscuit +sugar corn|1 +(noun)|sweet corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +sugar daddy|1 +(noun)|sweetheart|sweetie|steady|truelove +sugar loaf|2 +(noun)|sugarloaf|loaf sugar|sugar|refined sugar +(noun)| +sugar maple|1 +(noun)|rock maple|Acer saccharum|maple +sugar of lead|1 +(noun)|lead acetate|acetate|ethanoate|dye|dyestuff +sugar palm|1 +(noun)|gomuti|gomuti palm|Arenga pinnata|sago palm +sugar pea|2 +(noun)|snow pea|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon +(noun)|snow pea|green pea|garden pea +sugar ray robinson|1 +(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter|gladiator +sugar refinery|1 +(noun)|refinery +sugar shell|1 +(noun)|sugar spoon|spoon +sugar snap pea|2 +(noun)|snap pea|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon +(noun)|green pea|garden pea +sugar sorghum|1 +(noun)|sorgo|sorgho|sweet sorghum|sorghum +sugar spoon|1 +(noun)|sugar shell|spoon +sugar sumac|1 +(noun)|sugar-bush|Rhus ovata|sumac|sumach|shumac +sugar syrup|1 +(noun)|syrup|sirup +sugar water|1 +(noun)|drinking water +sugarberry|2 +(noun)|Celtis laevigata|hackberry|nettle tree +(noun)|hackberry|berry +sugarcane|2 +(noun)|sugar cane|cane +(noun)|sugar cane|Saccharum officinarum|gramineous plant|graminaceous plant +sugarcoat|2 +(verb)|glaze|candy|sweeten|dulcify|edulcorate|dulcorate +(verb)|spin +sugared|1 +(adj)|sweetened|sweet|sugary +sugariness|2 +(noun)|sweet|sweetness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sweetness|sweet +sugarless|1 +(adj)|sugarless |nonsweet|unsugared|unsweetened|dry +sugarloaf|1 +(noun)|sugar loaf|loaf sugar|sugar|refined sugar +sugarplum|1 +(noun)|candy +sugary|1 +(adj)|sugary |candied|sugar-coated|honeyed|honied|syrupy|sugared|sweetened|sweet|honeylike|sweet|sweet +suggest|5 +(verb)|propose|advise|declare +(verb)|intimate|imply +(verb)|hint|convey|impart +(verb)|indicate|inform +(verb)|evoke|paint a picture|express|show|evince +suggested|1 +(adj)|recommended|advisable +suggester|1 +(noun)|proposer|originator|conceiver|mastermind +suggestibility|1 +(noun)|susceptibility|susceptibleness +suggestible|1 +(adj)|susceptible +suggestion|6 +(noun)|idea|thought +(noun)|proposition|proffer|proposal +(noun)|trace|hint|small indefinite quantity|small indefinite amount +(noun)|prompting|persuasion|suasion +(noun)|higher cognitive process +(noun)|hypnotism|mesmerism|influence +suggestive|2 +(adj)|implicational|implicative|suggestive of|connotative +(adj)|indicative|indicatory|revelatory|significative|revealing +suggestive of|1 +(adj)|implicational|implicative|suggestive|connotative +sugi|1 +(noun)|Japanese cedar|Japan cedar|Cryptomeria japonica|cedar|cedar tree +suharto|1 +(noun)|Suharto|statesman|solon|national leader +sui generis|1 +(adj)|single +suicidal|1 +(adj)|self-destructive|dangerous |unsafe +suicide|2 +(noun)|self-destruction|self-annihilation|killing|kill|putting to death +(noun)|felo-de-se|killer|slayer +suicide bomber|1 +(noun)|terrorist +suicide bombing|1 +(noun)|bombing +suicide mission|1 +(noun)|martyr operation|sacrifice operation|mission|charge|commission +suicide pact|1 +(noun)|agreement|understanding +suicide pill|1 +(noun)|poison pill +suicide squeeze|1 +(noun)|suicide squeeze play|squeeze play +suicide squeeze play|1 +(noun)|suicide squeeze|squeeze play +suidae|1 +(noun)|Suidae|family Suidae|mammal family +suillus|1 +(noun)|Suillus|genus Suillus|fungus genus +suillus albivelatus|1 +(noun)|Suillus albivelatus|bolete +suisse|1 +(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country|European nation +suit|10 +(noun)|lawsuit|case|cause|causa|proceeding|legal proceeding|proceedings +(noun)|suit of clothes|garment +(noun)|playing card +(noun)|businessman|man of affairs +(noun)|courtship|wooing|courting|entreaty|prayer|appeal +(noun)|entreaty|prayer|appeal +(verb)|accommodate|fit|meet|fit|conform to +(verb)|be +(verb)|befit|beseem|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|become|beautify|embellish|prettify +suit of armor|1 +(noun)|body armor|body armour|suit of armour|coat of mail|cataphract|armor|armour +suit of armour|1 +(noun)|body armor|body armour|suit of armor|coat of mail|cataphract|armor|armour +suit of clothes|1 +(noun)|suit|garment +suitability|1 +(noun)|suitableness|quality +suitable|4 +(adj)|good +(adj)|appropriate|suited|fit +(adj)|proper|right|appropriate +(adj)|desirable|worthy|eligible +suitableness|1 +(noun)|suitability|quality +suitably|1 +(adv)|appropriately|fittingly|befittingly|fitly +suitcase|1 +(noun)|bag|traveling bag|grip|baggage|luggage +suite|4 +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|rooms|apartment|flat +(noun)|cortege|retinue|entourage|gathering|assemblage +(noun)|set +suited|2 +(adj)|appropriate|suitable|fit +(adj)|clothed |clad +suiting|1 +(noun)|fabric|cloth|material|textile +suitor|1 +(noun)|suer|wooer|admirer|adorer +sukarno|1 +(noun)|Sukarno|Achmad Sukarno|statesman|solon|national leader +sukiyaki|1 +(noun)|dish +sukkoth|1 +(noun)|Succos|Sukkoth|Feast of Booths|Feast of Tabernacles|Tabernacles|Jewish holy day +suksdorfia|1 +(noun)|herb|herbaceous plant +suksdorfia violaceae|1 +(noun)|violet suksdorfia|Suksdorfia violaceae|suksdorfia +sukur|1 +(noun)|Sukur|Biu-Mandara +sula|1 +(noun)|Sula|genus Sula|bird genus +sula bassana|1 +(noun)|solan|solan goose|solant goose|Sula bassana|gannet +sulamyd|1 +(noun)|sulfacetamide|Sulamyd|sulfa drug|sulfa|sulpha|sulfonamide +sulawesi|1 +(noun)|Celebes|Sulawesi|island +sulcate|1 +(adj)|fissure +sulcus|1 +(noun)|fissure +sulcus centralis|1 +(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus +sulcus lateralis cerebri|1 +(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus +sulfa|1 +(noun)|sulfa drug|sulpha|sulfonamide|antibacterial|antibacterial drug|bactericide +sulfa drug|1 +(noun)|sulfa|sulpha|sulfonamide|antibacterial|antibacterial drug|bactericide +sulfacetamide|1 +(noun)|Sulamyd|sulfa drug|sulfa|sulpha|sulfonamide +sulfadiazine|1 +(noun)|sulfa drug|sulfa|sulpha|sulfonamide +sulfamethazine|1 +(noun)|sulfamezathine|sulfa drug|sulfa|sulpha|sulfonamide +sulfamethoxazole|1 +(noun)|Gantanol|sulfa drug|sulfa|sulpha|sulfonamide +sulfamezathine|1 +(noun)|sulfamethazine|sulfa drug|sulfa|sulpha|sulfonamide +sulfanilamide|1 +(noun)|sulfa drug|sulfa|sulpha|sulfonamide +sulfanilic acid|1 +(noun)|sulphanilic acid|acid +sulfapyridine|1 +(noun)|sulfa drug|sulfa|sulpha|sulfonamide +sulfate|1 +(noun)|sulphate|salt +sulfide|1 +(noun)|sulphide|compound|chemical compound +sulfisoxazole|1 +(noun)|Gantrisin|sulfa drug|sulfa|sulpha|sulfonamide +sulfonamide|1 +(noun)|sulfa drug|sulfa|sulpha|antibacterial|antibacterial drug|bactericide +sulfonate|1 +(noun)|salt +sulfonic acid|1 +(noun)|sulphonic acid|acid +sulfonylurea|1 +(noun)|antidiabetic|antidiabetic drug +sulfur|2 +(noun)|S|sulphur|atomic number 16|chemical element|element +(verb)|sulphur|process|treat +sulfur bacteria|1 +(noun)|thiobacteria|sulphur bacteria|thiobacillus +sulfur bottom|1 +(noun)|blue whale|Balaenoptera musculus|baleen whale|whalebone whale +sulfur butterfly|1 +(noun)|sulphur butterfly|butterfly +sulfur dioxide|1 +(noun)|sulphur dioxide|dioxide|gas|pollutant +sulfur hexafluoride|1 +(noun)|sulphur hexafluoride|fluoride|greenhouse gas|greenhouse emission +sulfur mine|1 +(noun)|sulphur mine|mine +sulfur mustard|1 +(noun)|mustard gas|mustard agent|blistering agent|dichloroethyl sulfide|poison gas +sulfur oxide|1 +(noun)|sulphur oxide|oxide +sulfur paintbrush|1 +(noun)|Castilleja sulphurea|Indian paintbrush|painted cup +sulfurette|1 +(verb)|sulphurette|compound|combine +sulfuretted|1 +(adj)|sulphuretted|sulfurized|chemical element|element +sulfuric|1 +(adj)|sulphuric|chemical element|element +sulfuric acid|1 +(noun)|vitriol|oil of vitriol|sulphuric acid|acid +sulfurized|1 +(adj)|sulphuretted|sulfuretted|chemical element|element +sulfurous|2 +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulphurous|venomous|virulent|vitriolic|unpleasant +(adj)|sultry|stifling|sulphurous|hot +sulidae|1 +(noun)|Sulidae|family Sulidae|bird family +sulindac|1 +(noun)|Clinoril|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +sulk|2 +(noun)|sulkiness|temper|mood|humor|humour +(verb)|pout|brood +sulkiness|3 +(noun)|sulk|temper|mood|humor|humour +(noun)|huffishness|resentment|bitterness|gall|rancor|rancour +(noun)|sullenness|moroseness|sourness|ill nature +sulky|2 +(adj)|huffish|ill-natured +(noun)|horse-drawn vehicle +sulla|2 +(noun)|French honeysuckle|Hedysarum coronarium|subshrub|suffrutex +(noun)|Sulla|Lucius Cornelius Sulla Felix|general|full general +sullen|2 +(adj)|dark|dour|glowering|glum|moody|morose|saturnine|sour|ill-natured +(adj)|heavy|lowering|threatening|cloudy +sullenly|1 +(adv)|dourly|glumly +sullenness|2 +(noun)|moroseness|glumness|moodiness +(noun)|sulkiness|moroseness|sourness|ill nature +sullied|1 +(adj)|besmirched|damaged|flyblown|spotted|stained|tainted|tarnished|blemished +sullivan|5 +(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect|designer +(noun)|Sullivan|Harry Stack Sullivan|psychiatrist|head-shrinker|shrink +(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies|emcee|host +(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator|pedagogue +(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer +sully|5 +(noun)|Sully|Thomas Sully|painter +(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman|solon|national leader +(verb)|defile|corrupt|taint|cloud|mar|impair|spoil|deflower|vitiate +(verb)|tarnish|stain|maculate|defile|spot|fleck|blob|blot +(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|besmirch|charge|accuse +sulpha|1 +(noun)|sulfa drug|sulfa|sulfonamide|antibacterial|antibacterial drug|bactericide +sulphanilic acid|1 +(noun)|sulfanilic acid|acid +sulphate|1 +(noun)|sulfate|salt +sulphide|1 +(noun)|sulfide|compound|chemical compound +sulphonic acid|1 +(noun)|sulfonic acid|acid +sulphur|2 +(noun)|sulfur|S|atomic number 16|chemical element|element +(verb)|sulfur|process|treat +sulphur-crested cockatoo|1 +(noun)|Kakatoe galerita|Cacatua galerita|cockatoo +sulphur bacteria|1 +(noun)|thiobacteria|sulfur bacteria|thiobacillus +sulphur butterfly|1 +(noun)|sulfur butterfly|butterfly +sulphur dioxide|1 +(noun)|sulfur dioxide|dioxide|gas|pollutant +sulphur hexafluoride|1 +(noun)|sulfur hexafluoride|fluoride|greenhouse gas|greenhouse emission +sulphur mine|1 +(noun)|sulfur mine|mine +sulphur oxide|1 +(noun)|sulfur oxide|oxide +sulphurette|1 +(verb)|sulfurette|compound|combine +sulphuretted|1 +(adj)|sulfurized|sulfuretted|chemical element|element +sulphuric|1 +(adj)|sulfuric|chemical element|element +sulphuric acid|1 +(noun)|vitriol|oil of vitriol|sulfuric acid|acid +sulphurous|2 +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|venomous|virulent|vitriolic|unpleasant +(adj)|sultry|stifling|sulfurous|hot +sultan|1 +(noun)|grand Turk|ruler|swayer +sultan of swat|1 +(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer|baseball player +sultana|2 +(noun)|vinifera grape +(noun)|seedless raisin|raisin +sultanate|1 +(noun)|country|state|land +sultanate of oman|1 +(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country|Asian nation +sultrily|1 +(adv)|sensually +sultriness|1 +(noun)|hot weather +sultry|3 +(adj)|sensual|hot +(adj)|stifling|sulfurous|sulphurous|hot +(adj)|torrid|hot +sum|9 +(noun)|sum of money|amount|amount of money|assets +(noun)|amount|total|quantity +(noun)|summation|sum total|collection|aggregation|accumulation|assemblage +(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|nitty-gritty|content|cognitive content|mental object +(noun)|total|totality|aggregate|whole|whole thing|unit +(noun)|Uzbekistani monetary unit +(noun)|union|join|set +(verb)|summarize|summarise|sum up|state|say|tell +(verb)|total|tot|tot up|sum up|summate|tote up|add|add together|tally|add up|count|number|enumerate|numerate +sum of money|1 +(noun)|sum|amount|amount of money|assets +sum total|1 +(noun)|sum|summation|collection|aggregation|accumulation|assemblage +sum up|3 +(verb)|summarize|summarise|resume|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|summarize|summarise|sum|state|say|tell +(verb)|total|tot|tot up|sum|summate|tote up|add|add together|tally|add up|count|number|enumerate|numerate +sumac|2 +(noun)|wood +(noun)|sumach|shumac|shrub|bush +sumac family|1 +(noun)|Anacardiaceae|family Anacardiaceae|dicot family|magnoliopsid family +sumach|1 +(noun)|sumac|shumac|shrub|bush +sumatra|1 +(noun)|Sumatra|island +sumatran|2 +(adj)|Sumatran|island +(noun)|Sumatran|Indonesian +sumer|1 +(noun)|Sumer|geographical area|geographic area|geographical region|geographic region +sumerian|2 +(adj)|Sumerian|geographical area|geographic area|geographical region|geographic region|Babylonian +(noun)|Sumerian|Babylonian +sumerology|1 +(noun)|Sumerology|archeology|archaeology +summa cum laude|1 +(adj)|worthy +summarisation|1 +(noun)|summarization|report|account +summarise|2 +(verb)|summarize|sum|sum up|state|say|tell +(verb)|sum up|summarize|resume|repeat|reiterate|ingeminate|iterate|restate|retell +summarization|1 +(noun)|summarisation|report|account +summarize|2 +(verb)|sum up|summarise|resume|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|summarise|sum|sum up|state|say|tell +summary|3 +(adj)|drumhead|unofficial +(adj)|compendious|compact|succinct|concise +(noun)|statement +summary judgement|1 +(noun)|summary judgment|judgment on the pleadings|judgement on the pleadings|judgment|judgement|judicial decision +summary judgment|1 +(noun)|summary judgement|judgment on the pleadings|judgement on the pleadings|judgment|judgement|judicial decision +summary treatment|1 +(noun)|short shrift|rejection +summate|2 +(verb)|total|tot|tot up|sum|sum up|tote up|add|add together|tally|add up|count|number|enumerate|numerate +(verb)|combine +summation|4 +(noun)|summing up|rundown|summary +(noun)|organic process|biological process +(noun)|sum|sum total|collection|aggregation|accumulation|assemblage +(noun)|addition|plus|arithmetic operation +summational|1 +(adj)|summative|additive +summative|1 +(adj)|summational|additive +summer|2 +(noun)|summertime|season|time of year +(verb)|spend|pass +summer camp|1 +(noun)|camp|site|land site +summer cohosh|1 +(noun)|American bugbane|Cimicifuga americana|bugbane +summer crookneck|1 +(noun)|crookneck|crookneck squash|yellow squash +summer cypress|1 +(noun)|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub|bush +summer damask rose|1 +(noun)|damask rose|Rosa damascena|rose +summer duck|1 +(noun)|wood duck|wood widgeon|Aix sponsa|duck +summer flounder|1 +(noun)|Paralichthys dentatus|lefteye flounder|lefteyed flounder +summer haw|1 +(noun)|mayhaw|Crataegus aestivalis|hawthorn|haw +summer house|2 +(noun)|country house +(noun)|gazebo|summerhouse|building|edifice +summer hyacinth|1 +(noun)|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth +summer redbird|1 +(noun)|summer tanager|Piranga rubra|tanager +summer savory|2 +(noun)|Satureja hortensis|Satureia hortensis|savory +(noun)|summer savoury|savory|savoury +summer savoury|1 +(noun)|summer savory|savory|savoury +summer school|1 +(noun)|school term|academic term|academic session|session +summer snowflake|1 +(noun)|starflower|sleepy dick|Ornithogalum umbellatum|star-of-Bethlehem +summer solstice|1 +(noun)|June 21|midsummer|solstice +summer squash|2 +(noun)|summer squash vine|Cucurbita pepo melopepo|squash|squash vine +(noun)|squash +summer squash vine|1 +(noun)|summer squash|Cucurbita pepo melopepo|squash|squash vine +summer stock|1 +(noun)|theatrical production|staging +summer sweet|1 +(noun)|sweet pepperbush|pepper bush|white alder|Clethra alnifolia|shrub|bush +summer tanager|1 +(noun)|summer redbird|Piranga rubra|tanager +summercaters|1 +(noun)|vacationer|vacationist +summerhouse|1 +(noun)|gazebo|building|edifice +summerise|1 +(verb)|summerize|fix|prepare|set up|ready|gear up|set +summerize|1 +(verb)|summerise|fix|prepare|set up|ready|gear up|set +summertime|1 +(noun)|summer|season|time of year +summery|1 +(adj)|summery |aestival|estival +summing up|1 +(noun)|summation|rundown|summary +summit|4 +(noun)|acme|height|elevation|peak|pinnacle|superlative|top|degree|level|stage|point +(noun)|peak|crown|crest|top|tip|topographic point|place|spot +(noun)|summit meeting|meeting +(verb)|reach|make|attain|hit|arrive at|gain +summit meeting|1 +(noun)|summit|meeting +summon|4 +(verb)|summons|cite|call|send for +(verb)|call|send for +(verb)|muster|rally|come up|muster up|gather|garner|collect|pull together +(verb)|mobilize|mobilise|marshal|gather|garner|collect|pull together +summoning|1 +(noun)|evocation|conjuring|conjuration|conjury|invocation +summons|8 +(noun)|bidding|invitation +(noun)|order +(noun)|process|writ|judicial writ +(verb)|summon|cite|call|send for +(verb)|summon|cite|call|send for +(verb)|summon|call|send for +(verb)|muster|rally|summon|come up|muster up|gather|garner|collect|pull together +(verb)|mobilize|mobilise|marshal|summon|gather|garner|collect|pull together +summum bonum|1 +(noun)|good|goodness +sumner|1 +(noun)|Sumner|William Graham Sumner|sociologist +sumo|1 +(noun)|wrestling|rassling|grappling|sport +sumo wrestler|1 +(noun)|wrestler|grappler|matman +sump|3 +(noun)|reservoir +(noun)|well +(noun)|cesspool|cesspit|sink|cistern +sump pump|1 +(noun)|suction pump +sumpsimus|1 +(noun)|saying|expression|locution +sumpter|1 +(noun)|pack animal|beast of burden|jument +sumptuary|1 +(adj)|restrictive +sumptuosity|1 +(noun)|lavishness|luxury|sumptuousness|expensiveness +sumptuous|1 +(adj)|deluxe|gilded|luxurious|opulent|princely|rich +sumptuously|1 +(adv)|opulently +sumptuousness|2 +(noun)|luxury|luxuriousness|opulence|wealth|wealthiness +(noun)|lavishness|luxury|sumptuosity|expensiveness +sun|7 +(noun)|star +(noun)|sunlight|sunshine|light|visible light|visible radiation +(noun)|important person|influential person|personage +(noun)|star +(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day|day of rest +(verb)|sunbathe|lie +(verb)|insolate|solarize|solarise|expose +sun-drenched|1 +(adj)|covered +sun-dried|1 +(adj)|preserved +sun-god|1 +(noun)|deity|divinity|god|immortal +sun-ray|3 +(noun)|sunray|ultraviolet|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV +(noun)|sunbeam|sunray|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +(noun)|sunray|Enceliopsis nudicaulis|wildflower|wild flower +sun-ray lamp|1 +(noun)|sunlamp|sunray lamp|mercury-vapor lamp +sun-worship|1 +(noun)|heliolatry|worship +sun bathing|1 +(noun)|bathing +sun blocker|1 +(noun)|sunscreen|sunblock|cream|ointment|emollient +sun dance|1 +(noun)|ritual dancing|ritual dance|ceremonial dance +sun deck|1 +(noun)|deck +sun gear|1 +(noun)|gear|gear wheel|cogwheel +sun helmet|1 +(noun)|pith hat|pith helmet|topee|topi|hat|chapeau|lid|shade +sun king|1 +(noun)|Louis XIV|Sun King|Louis the Great|King of France +sun lounge|1 +(noun)|sun parlor|sun parlour|sun porch|sunroom|solarium|room +sun marigold|1 +(noun)|cape marigold|star of the veldt|flower +sun myung moon|1 +(noun)|Moon|Sun Myung Moon|religious leader +sun parlor|1 +(noun)|sun parlour|sun porch|sunroom|sun lounge|solarium|room +sun parlour|1 +(noun)|sun parlor|sun porch|sunroom|sun lounge|solarium|room +sun pitcher|1 +(noun)|pitcher plant +sun plant|1 +(noun)|rose moss|Portulaca grandiflora|portulaca +sun porch|1 +(noun)|sun parlor|sun parlour|sunroom|sun lounge|solarium|room +sun rose|2 +(noun)|helianthemum|sunrose|shrub|bush +(noun)| +sun spurge|1 +(noun)|wartweed|wartwort|devil's milk|Euphorbia helioscopia|spurge +sun visor|1 +(noun)|shade +sun worshiper|1 +(noun)|believer|worshiper|worshipper +sun yat-sen|1 +(noun)|Sun Yat-sen|Sun Yixian|statesman|solon|national leader +sun yixian|1 +(noun)|Sun Yat-sen|Sun Yixian|statesman|solon|national leader +sunbaked|2 +(adj)|adust|baked|parched|scorched|dry +(adj)|tempered |treated|hardened|toughened +sunbathe|1 +(verb)|sun|lie +sunbather|1 +(noun)|idler|loafer|do-nothing|layabout|bum +sunbeam|1 +(noun)|sunray|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +sunbelt|1 +(noun)|Sunbelt|geographical area|geographic area|geographical region|geographic region +sunberry|1 +(noun)|garden huckleberry|wonderberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +sunblind|1 +(noun)|awning|sunshade|canopy +sunblock|1 +(noun)|sunscreen|sun blocker|cream|ointment|emollient +sunbonnet|1 +(noun)|sunhat|bonnet|poke bonnet|shade +sunburn|3 +(noun)|tan|suntan|burn|hyperpigmentation +(noun)|erythema solare|erythema|first-degree burn +(verb)|burn|discolor|discolour|colour|color +sunburned|1 +(adj)|sunburnt|unhealthy +sunburnt|1 +(adj)|sunburned|unhealthy +sunburst|2 +(adj)|sunray|folded +(noun)|brooch|broach|breastpin +sunburst pleat|1 +(noun)|sunray pleat|knife pleat +sunchoke|1 +(noun)|Jerusalem artichoke|root vegetable +sunda islands|1 +(noun)|Sunda Islands|archipelago +sundacarpus|1 +(noun)|Sundacarpus|genus Sundacarpus|gymnosperm genus +sundacarpus amara|1 +(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer|coniferous tree +sundae|1 +(noun)|ice-cream sundae|frozen dessert +sundanese|1 +(noun)|Sundanese|Indonesian|Bahasa Indonesia|Bahasa +sunday|2 +(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day|day of rest +(verb)|spend|pass +sunday-go-to-meeting|1 +(adj)|go-to-meeting|Sunday-go-to-meeting|best +sunday best|1 +(noun)|Sunday best|Sunday clothes|finery +sunday clothes|1 +(noun)|Sunday best|Sunday clothes|finery +sunday punch|1 +(noun)|haymaker|knockout punch|KO punch|Sunday punch|punch|clout|poke|lick|biff +sunday school|1 +(noun)|Sunday school|Sabbath school|school +sunday school class|1 +(noun)|Sunday school class|class|form|grade +sunder|1 +(verb)|break up|fragment|fragmentize|fragmentise +sundew|1 +(noun)|sundew plant|daily dew|carnivorous plant +sundew family|1 +(noun)|Droseraceae|family Droseraceae|dicot family|magnoliopsid family +sundew plant|1 +(noun)|sundew|daily dew|carnivorous plant +sundial|1 +(noun)|timepiece|timekeeper +sundial lupine|1 +(noun)|wild lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub|suffrutex +sundog|1 +(noun)|parhelion|mock sun|topographic point|place|spot +sundown|1 +(noun)|sunset|hour|time of day +sundowner|2 +(noun)|vagrant|drifter|floater|vagabond +(noun)|drink +sundries|2 +(noun)|whatchamacallit|stuff|whatsis|sundry|object|physical object +(noun)|whatchamacallit|stuff|whatsis|sundry|object|physical object +sundrops|1 +(noun)|Oenothera fruticosa|evening primrose +sundry|2 +(adj)|assorted|miscellaneous|mixed|motley|heterogeneous |heterogenous +(noun)|whatchamacallit|stuff|whatsis|sundries|object|physical object +sunfish|3 +(noun)|freshwater fish +(noun)|ocean sunfish|mola|headfish|plectognath|plectognath fish +(noun)|centrarchid|percoid fish|percoid|percoidean +sunflower|1 +(noun)|helianthus|flower +sunflower-seed oil|1 +(noun)|sunflower oil|vegetable oil|oil +sunflower oil|1 +(noun)|sunflower-seed oil|vegetable oil|oil +sunflower seed|1 +(noun)|edible seed +sunflower state|1 +(noun)|Kansas|Sunflower State|KS|American state +sung|2 +(adj)|vocal|voiced +(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty +sung dynasty|1 +(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty +sunglasses|1 +(noun)|dark glasses|shades|spectacles|specs|eyeglasses|glasses +sunhat|1 +(noun)|sunbonnet|bonnet|poke bonnet|shade +sunk|1 +(adj)|done for|ruined|undone|washed-up|unsuccessful +sunk fence|1 +(noun)|ha-ha|haw-haw|ditch +sunken|2 +(adj)|deep-set|recessed|hollow +(adj)|sunken |submerged|drowned|swamped +sunken-eyed|1 +(adj)|deep-eyed|hollow-eyed|thin |lean +sunken arch|1 +(noun)|fallen arch|instep +sunken garden|1 +(noun)|garden +sunlamp|1 +(noun)|sunray lamp|sun-ray lamp|mercury-vapor lamp +sunless|1 +(adj)|cloud-covered|clouded|overcast|cloudy +sunlight|1 +(noun)|sunshine|sun|light|visible light|visible radiation +sunlit|1 +(adj)|sunstruck|light +sunna|1 +(noun)|Sunnah|Sunna|hadith|way|path|way of life +sunnah|1 +(noun)|Sunnah|Sunna|hadith|way|path|way of life +sunni|2 +(noun)|Sunnite|Sunni|Sunni Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +(noun)|Sunni|the Sunnites|sect|religious sect|religious order +sunni muslim|1 +(noun)|Sunnite|Sunni|Sunni Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +sunnily|1 +(adv)|pleasantly|cheerily +sunniness|1 +(noun)|light|lightness +sunnite|1 +(noun)|Sunnite|Sunni|Sunni Muslim|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +sunny|2 +(adj)|bright|shining|shiny|sunshiny|clear +(adj)|cheery|gay|cheerful +sunray|4 +(adj)|sunburst|folded +(noun)|sunbeam|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation +(noun)|Enceliopsis nudicaulis|wildflower|wild flower +(noun)|sun-ray|ultraviolet|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV +sunray lamp|1 +(noun)|sunlamp|sun-ray lamp|mercury-vapor lamp +sunray pleat|1 +(noun)|sunburst pleat|knife pleat +sunrise|4 +(adj)|new +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunup|cockcrow|hour|time of day +(noun)|atmospheric phenomenon +(noun)|periodic event|recurrent event +sunrise industry|1 +(noun)|industry +sunroof|1 +(noun)|sunshine-roof|roof +sunroom|1 +(noun)|sun parlor|sun parlour|sun porch|sun lounge|solarium|room +sunrose|1 +(noun)|helianthemum|sun rose|shrub|bush +sunscreen|1 +(noun)|sunblock|sun blocker|cream|ointment|emollient +sunset|5 +(adj)|old +(adj)|last +(noun)|sundown|hour|time of day +(noun)|atmospheric phenomenon +(noun)|periodic event|recurrent event +sunshade|2 +(noun)|awning|sunblind|canopy +(noun)|parasol|shade +sunshine|2 +(noun)|sunlight|sun|light|visible light|visible radiation +(noun)|fair weather|temperateness|weather|weather condition|atmospheric condition +sunshine-roof|1 +(noun)|sunroof|roof +sunshine state|1 +(noun)|Florida|Sunshine State|Everglade State|FL|American state +sunshiny|1 +(adj)|bright|shining|shiny|sunny|clear +sunspot|1 +(noun)|macula|topographic point|place|spot +sunstone|1 +(noun)|aventurine|quartz|transparent gem +sunstroke|1 +(noun)|insolation|thermic fever|siriasis|heatstroke|heat hyperpyrexia +sunstruck|1 +(adj)|sunlit|light +sunsuit|1 +(noun)|garment +suntan|2 +(noun)|tan|sunburn|burn|hyperpigmentation +(verb)|tan|bronze +suntanned|1 +(adj)|bronzed|browned|tanned|brunet |brunette +suntrap|1 +(noun)|solar trap|patio|terrace +sunup|1 +(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|cockcrow|hour|time of day +suomi|2 +(noun)|Finland|Republic of Finland|Suomi|European country|European nation +(noun)|Finnish|Suomi|Baltic-Finnic +sup|2 +(noun)|swallow|taste|mouthful +(verb)|consume|ingest|take in|take|have +super|5 +(adj)|ace|A-one|crack|first-rate|tiptop|topnotch|tops|superior +(adj)|comprehensive +(adj)|large +(noun)|superintendent|caretaker +(adv)|extremely +super acid|1 +(noun)|K|jet|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +super c|1 +(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine|ketamine hydrochloride|Ketalar +super heavyweight|1 +(noun)|boxer|pugilist +superable|1 +(adj)|conquerable|surmountable +superabundance|1 +(noun)|overabundance|overmuch|overmuchness|abundance|copiousness|teemingness +superabundant|1 +(adj)|abundant +superannuate|4 +(verb)|retire +(verb)|declare|adjudge|hold +(verb)|change +(verb)|retire +superannuated|3 +(adj)|retired|old +(adj)|overage|overaged|over-the-hill|old +(adj)|obsolete|outdated|out-of-date|noncurrent +superannuation|3 +(noun)|old-age pension|retirement pension|retirement check|retirement benefit|retirement fund|pension +(noun)|obsoleteness|oldness +(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|sacking +superannuation fund|1 +(noun)|pension fund|fund|monetary fund +superb|2 +(adj)|brilliant|superior +(adj)|good +superbia|1 +(noun)|pride|mortal sin|deadly sin +superbly|1 +(adv)|wonderfully|wondrous|wondrously|toppingly|marvellously|terrifically|marvelously +superbug|1 +(noun)|Bemisia tabaci|poinsettia strain|sweet-potato whitefly +supercargo|1 +(noun)|officer|ship's officer +supercharge|2 +(verb)|boost|advance|increase +(verb)|pressurize|pressurise|change|alter|modify +supercharged|2 +(adj)|powered +(adj)|charged|emotional +supercharger|1 +(noun)|compressor +superciliary arch|1 +(noun)|supraorbital ridge|supraorbital torus|superciliary ridge|ridge +superciliary ridge|1 +(noun)|supraorbital ridge|supraorbital torus|superciliary arch|ridge +supercilious|2 +(adj)|disdainful|haughty|lordly|prideful|sniffy|swaggering|proud +(adj)|sneering|snide|uncomplimentary +superciliously|1 +(adv)|sneeringly|snidely +superciliousness|1 +(noun)|condescension|disdainfulness|arrogance|haughtiness|hauteur|highhandedness|lordliness +supercilium|1 +(noun)|eyebrow|brow|hair +superclass|1 +(noun)|taxonomic group|taxonomic category|taxon +superclass agnatha|1 +(noun)|Agnatha|superclass Agnatha|class +superclass chelicerata|1 +(noun)|Chelicerata|superclass Chelicerata|class +superclass gnathostomata|1 +(noun)|Gnathostomata|superclass Gnathostomata|class +superclass myriapoda|1 +(noun)|superclass Myriapoda|class +supercomputer|1 +(noun)|mainframe|mainframe computer +superconducting supercollider|1 +(noun)|collider +superconductivity|1 +(noun)|electrical conduction +supercritical|1 +(adj)|critical +supererogation|1 +(noun)|effort|elbow grease|exertion|travail|sweat +supererogatory|1 +(adj)|excess|extra|redundant|spare|superfluous|supernumerary|surplus|unnecessary |unneeded +superfamily|1 +(noun)|taxonomic group|taxonomic category|taxon +superfamily aphidoidea|1 +(noun)|Aphidoidea|superfamily Aphidoidea|arthropod family +superfamily apoidea|1 +(noun)|Apoidea|superfamily Apoidea|arthropod family +superfamily coccoidea|1 +(noun)|Coccoidea|superfamily Coccoidea|arthropod family +superfamily hominoidea|1 +(noun)|Hominoidea|superfamily Hominoidea|class +superfamily lamellicornia|1 +(noun)|Lamellicornia|superfamily Lamellicornia|arthropod family +superfamily muroidea|1 +(noun)|Muroidea|superfamily Muroidea|mammal family +superfamily muscoidea|1 +(noun)|Muscoidea|superfamily Muscoidea|arthropod family +superfamily platyrrhini|1 +(noun)|Platyrrhini|superfamily Platyrrhini|mammal family +superfamily sphecoidea|1 +(noun)|Sphecoidea|superfamily Sphecoidea|arthropod family +superfamily tineoidea|1 +(noun)|Tineoidea|superfamily Tineoidea|arthropod family +superfamily tyrannidae|1 +(noun)|Tyrannidae|superfamily Tyrannidae|bird family +superfatted|1 +(adj)|fatty |fat +superfecta|1 +(noun)|bet|wager +superfecundation|1 +(noun)|fertilization|fertilisation|fecundation|impregnation +superfetate|1 +(verb)|conceive +superfetation|1 +(noun)|fertilization|fertilisation|fecundation|impregnation +superficial|4 +(adj)|superficial |apparent|ostensible|seeming|dilettante|dilettantish|dilettanteish|sciolistic|facile|glib|looking|sounding|shallow|careless|frivolous|outward +(adj)|boundary|bound|bounds +(adj)|trivial|insignificant |unimportant +(adj)|skin-deep|surface|shallow +superficial epigastric vein|1 +(noun)|vena epigastrica superficialis|epigastric vein +superficial middle cerebral vein|1 +(noun)|middle cerebral vein|vena cerebri media +superficial temporal vein|1 +(noun)|temporal vein|vena temporalis +superficiality|2 +(noun)|shallowness|depth +(noun)|shallowness +superficies|2 +(noun)|appearance|visual aspect +(noun)|surface +superfine|3 +(adj)|fine +(adj)|overrefined|refined +(adj)|best +superfluity|1 +(noun)|overplus|plethora|embarrassment|excess|excessiveness|inordinateness +superfluous|2 +(adj)|otiose|pointless|wasted|worthless +(adj)|excess|extra|redundant|spare|supererogatory|supernumerary|surplus|unnecessary |unneeded +superfund|1 +(noun)|Superfund program|Superfund|program|programme +superfund program|1 +(noun)|Superfund program|Superfund|program|programme +superfund site|1 +(noun)|toxic site|toxic waste area|Superfund site|site|land site +supergiant|1 +(noun)|star +supergrass|1 +(noun)|informer|betrayer|rat|squealer|blabber +superhet|1 +(noun)|heterodyne receiver|superheterodyne receiver|radio receiver|receiving set|radio set|radio|tuner|wireless +superheterodyne receiver|1 +(noun)|heterodyne receiver|superhet|radio receiver|receiving set|radio set|radio|tuner|wireless +superhigh frequency|1 +(noun)|SHF|radio frequency +superhighway|2 +(noun)|expressway|freeway|motorway|pike|state highway|throughway|thruway|highway|main road +(noun)|information superhighway|network|electronic network +superhuman|1 +(adj)|superhuman |divine|godlike|herculean|powerful +superimpose|1 +(verb)|superpose|lay over|put|set|place|pose|position|lay +superimposed|3 +(adj)|added +(adj)|overlying|superjacent +(adj)|layered|stratified |bedded +superincumbent|1 +(adj)|superjacent +superinfect|1 +(verb)|infect|taint +superinfection|1 +(noun)|infection +superintend|1 +(verb)|oversee|supervise|manage|administer|administrate +superintendence|1 +(noun)|supervision|supervising|oversight|management|direction +superintendent|2 +(noun)|overseer|supervisor +(noun)|super|caretaker +superior|13 +(adj)|superior |ace|A-one|crack|first-rate|super|tiptop|topnotch|tops|banner|blue-ribbon|select|boss|brag|brilliant|superb|capital|choice|prime|prize|quality|select|excellent|first-class|fantabulous|fine|good|gilt-edged|greatest|sterling|superlative|high-performance|outstanding|premium|pukka|pucka|shining|spiffing|top-flight|top-hole|topping|transcendent|surpassing|well-made|supreme|weapons-grade|best +(adj)|superior |arch|condescending|patronizing|patronising|commanding|ranking|top-level|top-ranking|eminent|high|greatest|leading|preeminent|high-level|high-ranking|upper-level|majestic|olympian|superordinate|upper|dominant|high +(adj)|dominant +(adj)|superscript +(adj)|superior +(adj)|ranking|higher-ranking|senior +(adj)|unaffected +(noun)|higher-up|superordinate|leader +(noun)|religious +(noun)|victor|master|combatant|battler|belligerent|fighter|scrapper +(noun)|Lake Superior|Superior|lake +(noun)|Superior|town +(noun)|superscript|character|grapheme|graphic symbol +superior alveolar artery|1 +(noun)|arteria alveolaris superior|alveolar artery|arteria alveolaris +superior cerebellar artery|1 +(noun)|cerebellar artery|arteria cerebelli +superior cerebral vein|1 +(noun)|vena cerebrum superior|cerebral vein|vena cerebri +superior colliculus|1 +(noun)|center|centre|nerve center|nerve centre +superior conjunction|1 +(noun)|conjunction|alignment +superior court|1 +(noun)|court|tribunal|judicature +superior epigastric veins|1 +(noun)|venae epigastricae superiores|epigastric vein +superior general|1 +(noun)|general|head|chief|top dog +superior labial artery|1 +(noun)|arteria labialis superior|labial artery|arteria labialis +superior labial vein|1 +(noun)|vena labialis superior|labial vein|vena labialis +superior mesenteric artery|1 +(noun)|mesenteric artery|arteria mesenterica +superior ophthalmic vein|1 +(noun)|ophthalmic vein|vena ophthalmica +superior planet|1 +(noun)|planet +superior pulmonary vein|1 +(noun)|vena pulmonalis superior|pulmonary vein|vena pulmonalis +superior rectus|1 +(noun)|superior rectus muscle|rectus superior|ocular muscle|eye muscle +superior rectus muscle|1 +(noun)|superior rectus|rectus superior|ocular muscle|eye muscle +superior skill|1 +(noun)|ability|power +superior thalamostriate vein|1 +(noun)|thalamostriate vein +superior thyroid vein|1 +(noun)|thyroid vein|vena thyroidea +superior vena cava|1 +(noun)|precava|vena cava +superior vocal cord|1 +(noun)|false vocal cord|false vocal fold|ventricular fold|vestibular fold|vocal cord|vocal fold|vocal band|plica vocalis +superiority|4 +(noun)|high quality|quality|caliber|calibre +(noun)|favorable position|favourable position|advantage|vantage +(noun)|arrogance|haughtiness|hauteur|highhandedness|lordliness +(noun)|transcendence|transcendency|domination|mastery|supremacy +superiority complex|1 +(noun)|egotism|self-importance|swelled head +superjacent|1 +(adj)|superjacent |incumbent|overlying|superimposed|superincumbent +superlative|4 +(adj)|greatest|sterling|superior +(noun)|praise|congratulations|kudos +(noun)|acme|height|elevation|peak|pinnacle|summit|top|degree|level|stage|point +(noun)|adjective +superload|1 +(noun)|live load|load|loading|burden +superlunar|2 +(adj)|translunar|translunary|superlunary|satellite +(adj)|translunar|translunary|superlunary|heavenly +superlunary|2 +(adj)|translunar|translunary|superlunar|satellite +(adj)|translunar|translunary|superlunar|heavenly +superman|2 +(noun)|demigod|Ubermensch|leader +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|window pane|Zen|lysergic acid diethylamide|LSD +supermarket|1 +(noun)|grocery store|grocery|food market|market +supermarketeer|1 +(noun)|supermarketer|operator +supermarketer|1 +(noun)|supermarketeer|operator +supermex|1 +(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer|golf player|linksman +supermodel|1 +(noun)|mannequin|manikin|mannikin|manakin|fashion model|model +supermolecule|1 +(noun)|macromolecule|molecule|organic compound +supermom|1 +(noun)|mother|female parent +supernal|2 +(adj)|supernal |heavenly +(adj)|celestial|ethereal|heavenly +supernatant|2 +(adj)|supported +(noun)|liquid +supernatural|2 +(adj)|supernatural |apparitional|ghostlike|ghostly|phantasmal|spectral|spiritual|eldritch|weird|uncanny|unearthly|elfin|fey|charming|magic|magical|sorcerous|witching|wizard|wizardly|marvelous|marvellous|miraculous|metaphysical|necromantic|nonnatural|otherworldly|preternatural|transcendental|talismanic|transmundane|witchlike|unreal +(noun)|occult|causal agent|cause|causal agency +supernatural being|1 +(noun)|spiritual being|belief +supernatural virtue|1 +(noun)|theological virtue|cardinal virtue +supernaturalism|2 +(noun)|belief +(noun)|supernaturalness|unnaturalness +supernaturalist|1 +(adj)|supernaturalistic|belief +supernaturalistic|1 +(adj)|supernaturalist|belief +supernaturally|1 +(adv)|preternaturally +supernaturalness|1 +(noun)|supernaturalism|unnaturalness +supernormal|2 +(adj)|supranormal|paranormal +(adj)|abnormal +supernova|1 +(noun)|star +supernumerary|2 +(adj)|excess|extra|redundant|spare|supererogatory|superfluous|surplus|unnecessary |unneeded +(noun)|spear carrier|extra|actor|histrion|player|thespian|role player +superorder|1 +(noun)|taxonomic group|taxonomic category|taxon +superorder acanthopterygii|1 +(noun)|Acanthopterygii|superorder Acanthopterygii|animal order +superorder labyrinthodonta|1 +(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order +superorder labyrinthodontia|1 +(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order +superorder malacopterygii|1 +(noun)|Malacopterygii|superorder Malacopterygii|animal order +superorder ratitae|1 +(noun)|Ratitae|superorder Ratitae|animal order +superordinate|4 +(adj)|superior +(noun)|superior|higher-up|leader +(noun)|hypernym|superordinate word|word +(verb)|rate|rank|range|order|grade|place +superordinate word|1 +(noun)|hypernym|superordinate|word +superordination|1 +(noun)|hypernymy|semantic relation +superoxide|2 +(noun)|oxide +(noun)|superoxide anion|anion +superoxide anion|1 +(noun)|superoxide|anion +superoxide dismutase|1 +(noun)|SOD|enzyme +superpatriotic|1 +(adj)|chauvinistic|flag-waving|jingoistic|nationalistic|ultranationalistic|patriotic |loyal +superpatriotism|1 +(noun)|chauvinism|jingoism|ultranationalism|patriotism|nationalism +superphylum|1 +(noun)|taxonomic group|taxonomic category|taxon +superposable|1 +(adj)|identical|congruent +superpose|2 +(verb)|put|set|place|pose|position|lay +(verb)|superimpose|lay over|put|set|place|pose|position|lay +superposition|4 +(noun)|deposition|deposit +(noun)|principle of superposition|superposition principle|principle|rule +(noun)|placement|location|locating|position|positioning|emplacement +(noun)|placement|location|locating|position|positioning|emplacement +superposition principle|1 +(noun)|principle of superposition|superposition|principle|rule +superpower|1 +(noun)|world power|major power|great power|power|state|nation|country|land|commonwealth|res publica|body politic +supersaturated|1 +(adj)|saturated |concentrated +superscribe|2 +(verb)|write +(verb)|write +superscript|2 +(adj)|superscript |superior +(noun)|superior|character|grapheme|graphic symbol +superscription|2 +(noun)|inscription|lettering +(noun)|inscription +supersede|1 +(verb)|supplant|replace|supervene upon|succeed|come after|follow +supersedure|1 +(noun)|supersession|replacement|replacing +supersensitised|1 +(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|susceptible +supersensitive|1 +(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitized|supersensitised|susceptible +supersensitized|1 +(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitised|susceptible +supersession|1 +(noun)|supersedure|replacement|replacing +superslasher|1 +(noun)|utahraptor|maniraptor +supersonic|2 +(adj)|supersonic +(adj)|ultrasonic|inaudible |unhearable +superstar|1 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|whiz|whizz|wizard|wiz|expert +superstition|1 +(noun)|superstitious notion|belief +superstitious|1 +(adj)|irrational +superstitious notion|1 +(noun)|superstition|belief +superstring|1 +(noun)|particle +superstructure|1 +(noun)|structure|construction +supersymmetry|1 +(noun)|scientific theory +supertanker|1 +(noun)|oil tanker|oiler|tanker|tank ship +supertax|1 +(noun)|surtax|income tax +supertitle|1 +(noun)|surtitle|translation|interlingual rendition|rendering|version +supertonic|1 +(noun)|note|musical note|tone +supertwister|1 +(noun)|tornado|twister +supervene|1 +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +supervene upon|1 +(verb)|supplant|replace|supersede|succeed|come after|follow +supervention|1 +(noun)|happening|occurrence|natural event +supervise|2 +(verb)|oversee|superintend|manage|administer|administrate +(verb)|monitor|ride herd on|observe +supervised|1 +(adj)|supervised +supervising|1 +(noun)|supervision|superintendence|oversight|management|direction +supervision|1 +(noun)|supervising|superintendence|oversight|management|direction +supervisor|2 +(noun)|superior|higher-up|superordinate +(noun)|supervisory program|executive program|program|programme|computer program|computer programme +supervisor call instruction|1 +(noun)|system call|call +supervisory|1 +(adj)|superior|higher-up|superordinate +supervisory program|1 +(noun)|supervisor|executive program|program|programme|computer program|computer programme +supervisory routine|1 +(noun)|executive routine|routine|subroutine|subprogram|procedure|function +supervisory software|1 +(noun)|software|software system|software package|package +supinate|1 +(verb)|turn +supination|1 +(noun)|rotation|rotary motion +supinator|1 +(noun)|muscle|musculus +supine|2 +(adj)|resupine|unerect +(adj)|resistless|unresisting|passive |inactive +supper|2 +(noun)|meal|repast +(noun)|social gathering|social affair +supper club|1 +(noun)|cabaret|nightclub|club|nightspot +supperless|1 +(adj)|hungry +suppertime|1 +(noun)|dinnertime|mealtime +supping|1 +(noun)|eating|feeding +supplant|1 +(verb)|replace|supersede|supervene upon|succeed|come after|follow +supplanter|1 +(noun)|usurper|wrongdoer|offender +supplanting|1 +(noun)|displacement|replacement|replacing +supple|4 +(adj)|lissome|lissom|lithe|lithesome|slender|svelte|sylphlike|graceful +(adj)|limber|flexible +(adj)|limber|flexible |flexile +(verb)|change|alter|modify +supplejack|1 +(noun)|walking stick +supplement|6 +(noun)|addendum|postscript|matter +(noun)|supplementation|increase|increment +(noun)|accessory|appurtenance|add-on|component|constituent|element +(verb)|add +(verb)|constitute|represent|make up|comprise|be +(verb)|append|add on|affix|attach +supplemental|2 +(adj)|auxiliary|subsidiary|supplementary|secondary +(adj)|supplementary|additional|added +supplementary|2 +(adj)|supplemental|additional|added +(adj)|auxiliary|subsidiary|supplemental|secondary +supplementary benefit|1 +(noun)|social assistance|national assistance|social insurance +supplementation|2 +(noun)|supplement|increase|increment +(noun)|subjunction|subjoining|expansion|expanding upon +suppleness|2 +(noun)|lissomeness|litheness|gracefulness +(noun)|pliancy|pliantness|bendability|pliability +suppliant|2 +(adj)|supplicant|supplicatory|beseeching +(noun)|petitioner|supplicant|applicant|applier +supplicant|3 +(adj)|suppliant|supplicatory|beseeching +(noun)|prayer|religionist|religious person +(noun)|petitioner|suppliant|applicant|applier +supplicate|3 +(verb)|beg|implore|pray +(verb)|petition +(verb)|request|bespeak|call for|quest +supplication|3 +(noun)|invocation|prayer|petition|orison +(noun)|plea|entreaty|prayer|appeal +(noun)|prayer|worship +supplicatory|1 +(adj)|suppliant|supplicant|beseeching +supplied with|1 +(adj)|furnished with|provided with|furnished |equipped +supplier|1 +(noun)|provider|businessperson|bourgeois +supply|7 +(noun)|indefinite quantity +(noun)|economic process +(noun)|provision|supplying|activity +(verb)|provide|render|furnish|give +(verb)|issue|distribute +(verb)|provide|ply|cater|give +(verb)|add|append|state|say|tell +supply-side economics|1 +(noun)|economics|economic science|political economy +supply chamber|1 +(noun)|mechanical device +supply closet|1 +(noun)|cupboard|closet +supply line|1 +(noun)|supply route|path|route|itinerary +supply officer|1 +(noun)|commissioned officer +supply route|1 +(noun)|supply line|path|route|itinerary +supply ship|1 +(noun)|tender|ship +supplying|1 +(noun)|provision|supply|activity +support|22 +(noun)|activity +(noun)|aid|assist|assistance|help +(noun)|influence +(noun)|reinforcement|reenforcement|operation|military operation +(noun)|documentation|validation|proof|substantiation +(noun)|keep|livelihood|living|bread and butter|sustenance|resource +(noun)|supporting structure +(noun)|supporting|activity +(noun)|accompaniment|musical accompaniment|backup|part|voice +(noun)|device +(noun)|financial support|funding|backing|financial backing|resource +(verb)|back up +(verb)|give +(verb)|back|endorse|indorse|plump for|plunk for|approve|O.K.|okay|sanction +(verb)|hold|sustain|hold up +(verb)|confirm|corroborate|sustain|substantiate|affirm +(verb)|subscribe|agree|hold|concur|concord +(verb)|corroborate|underpin|bear out|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|defend|fend for|argue|reason +(verb)|act|play|represent +(verb)|patronize|patronise|patronage|keep going|foster|nurture +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|brook|abide|suffer|put up|permit|allow|let|countenance +support column|1 +(noun)|column|pillar +support hose|1 +(noun)|support stocking|stocking +support level|1 +(noun)|price|terms|damage +support payment|1 +(noun)|payment +support stocking|1 +(noun)|support hose|stocking +support system|1 +(noun)|network|web +supportable|1 +(adj)|bearable|endurable|sufferable|tolerable +supported|2 +(adj)|supported |backed|backed up|based|founded|based on|corroborated|substantiated|verified|endorsed|financed|subsidized|subsidised|fostered|nourished +(adj)|supported |based|braced|buttressed|gimbaled|supernatant|suspended|underhung|underslung +supporter|5 +(noun)|protagonist|champion|admirer|booster|friend|advocate|advocator|proponent|exponent +(noun)|patron|sponsor|benefactor|helper +(noun)|assistant|helper|help|worker +(noun)|garter|band +(noun)|athletic supporter|suspensor|jockstrap|jock|protective garment +supporters of islam|1 +(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization|terrorist group|foreign terrorist organization|FTO +supporting|3 +(adj)|encouraging|supportive +(adj)|load-bearing|bearing +(noun)|support|activity +supporting fire|1 +(noun)|fire|firing +supporting players|1 +(noun)|ensemble|cast|cast of characters|dramatis personae +supporting structure|1 +(noun)|structure|construction +supporting tower|1 +(noun)|tower +supportive|1 +(adj)|supportive |accessory|adjunct|ancillary|adjuvant|appurtenant|auxiliary|subsidiary|certificatory|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|demonstrative of|encouraging|supporting|positive +supposable|1 +(adj)|presumable|surmisable|thinkable +supposal|2 +(noun)|assumption|supposition|hypothesis|possibility|theory +(noun)|supposition|conjecture +suppose|5 +(verb)|say|speculate +(verb)|think|opine|imagine|reckon|guess|expect|anticipate +(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|expect|anticipate +(verb)|presuppose|assume|presume|take for granted +(verb)|presuppose|imply +supposed|7 +(adj)|expected +(adj)|improbable |unlikely +(adj)|putative|purported|reputed|acknowledged +(adj)|intended +(adj)|alleged|so-called|questionable +(adj)|obligated +(adj)|conjectural|divinatory|suppositional|suppositious|supposititious|theoretical |theoretic +supposedly|1 +(adv)|purportedly +supposition|3 +(noun)|guess|conjecture|surmise|surmisal|speculation|hypothesis|opinion|view +(noun)|assumption|supposal|hypothesis|possibility|theory +(noun)|supposal|conjecture +suppositional|1 +(adj)|conjectural|divinatory|supposed|suppositious|supposititious|theoretical |theoretic +suppositious|1 +(adj)|conjectural|divinatory|supposed|suppositional|supposititious|theoretical |theoretic +supposititious|1 +(adj)|conjectural|divinatory|supposed|suppositional|suppositious|theoretical |theoretic +suppository|1 +(noun)|medicine|medication|medicament|medicinal drug +suppress|5 +(verb)|stamp down|inhibit|subdue|conquer|curb|control|hold in|hold|contain|check|curb|moderate +(verb)|oppress|crush +(verb)|bottle up|restrain|keep|keep back|hold back +(verb)|restrain|keep|keep back|hold back|prevent|keep +(verb)|repress|forget|bury +suppressant|1 +(noun)|appetite suppressant|drug +suppressed|3 +(adj)|suppressed |burked|hushed-up|quelled|quenched|squelched|unreleased +(adj)|silenced +(adj)|smothered|stifled|strangled|inhibited +suppresser|3 +(noun)|suppressor|restrainer|controller +(noun)|suppressor|suppressor gene|suppresser gene|gene|cistron|factor +(noun)|suppressor|electrical device +suppresser gene|1 +(noun)|suppressor|suppresser|suppressor gene|gene|cistron|factor +suppression|4 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|curtailment|restraint +(noun)|crushing|quelling|stifling|prevention|bar +(noun)|inhibition|abstinence +suppressive|1 +(adj)|restrictive +suppressive fire|1 +(noun)|fire|firing +suppressor|3 +(noun)|suppresser|restrainer|controller +(noun)|suppresser|suppressor gene|suppresser gene|gene|cistron|factor +(noun)|suppresser|electrical device +suppressor gene|1 +(noun)|suppressor|suppresser|suppresser gene|gene|cistron|factor +suppurate|2 +(verb)|mature|draw +(verb)|fester|maturate|discharge|expel|eject|release +suppurating sore|1 +(noun)|fester|sore +suppuration|2 +(noun)|festering|maturation|bodily process|body process|bodily function|activity +(noun)|pus|purulence|ichor|sanies|festering|liquid body substance|bodily fluid|body fluid|humor|humour +suppurative|1 +(adj)|suppurative |bodily process|body process|bodily function|activity +supra|1 +(adv)|above +supra expressionism|1 +(noun)|expressionism +suprainfection|1 +(noun)|infection +supranational|1 +(adj)|international +supranormal|1 +(adj)|supernormal|paranormal +supraocular|1 +(adj)|supraorbital|cavity|bodily cavity|cavum +supraorbital|1 +(adj)|supraocular|cavity|bodily cavity|cavum +supraorbital ridge|1 +(noun)|supraorbital torus|superciliary ridge|superciliary arch|ridge +supraorbital torus|1 +(noun)|supraorbital ridge|superciliary ridge|superciliary arch|ridge +supraorbital vein|1 +(noun)|vena supraorbitalis|vein|vena|venous blood vessel +suprarenal gland|1 +(noun)|adrenal gland|adrenal|endocrine gland|endocrine|ductless gland +suprarenalectomy|1 +(noun)|adrenalectomy|ablation|extirpation|cutting out|excision +suprasegmental|1 +(adj)|united +supratrochlear vein|1 +(noun)|vena supratrochlearis|vein|vena|venous blood vessel +supremacist|1 +(noun)|advocate|advocator|proponent|exponent +supremacy|1 +(noun)|domination|mastery|dominance|ascendance|ascendence|ascendancy|ascendency|control +suprematism|1 +(noun)|artistic movement|art movement +suprematist|1 +(noun)|abstractionist|abstract artist +supreme|4 +(adj)|ultimate +(adj)|sovereign|dominant +(adj)|superior +(adj)|maximal +supreme allied commander atlantic|1 +(noun)|Supreme Allied Commander Atlantic|SACLANT|commanding officer|commandant|commander +supreme allied commander europe|1 +(noun)|Supreme Allied Commander Europe|SACEUR|commanding officer|commandant|commander +supreme authority|1 +(noun)|arbiter|expert +supreme being|1 +(noun)|God|Supreme Being|spiritual being|supernatural being +supreme court|2 +(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court +(noun)|state supreme court|high court|court|tribunal|judicature +supreme court of the united states|1 +(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court +supreme headquarters|1 +(noun)|high command|leadership|leaders +supreme headquarters allied powers europe|1 +(noun)|Supreme Headquarters Allied Powers Europe|SHAPE|high command|supreme headquarters +supreme truth|1 +(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization|terrorist group|foreign terrorist organization|FTO +supremo|1 +(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|big fish|head honcho +sur|1 +(noun)|Sur|Tyre|city|metropolis|urban center|port +sura|2 +(noun)|section|subdivision +(noun)|calf|skeletal muscle|striated muscle +surbase|1 +(noun)|molding|moulding +surcease|1 +(noun)|cessation|stop|halt +surcharge|8 +(noun)|charge +(verb)|charge|bill +(verb)|overcharge|soak|gazump|fleece|plume|pluck|rob|hook|cheat|rip off|chisel +(verb)|overcrowd +(verb)|overprint|print over +(verb)|fill|fill up|make full +(verb)|overload|overcharge|load|lade|laden|load up +(verb)|show +surcoat|2 +(noun)|coat +(noun)|tunic +surd|2 +(adj)|surd |voiceless|unvoiced +(noun)|voiceless consonant|consonant +sure|10 +(adj)|certain |convinced|positive|confident +(adj)|certain|careful +(adj)|certain |bound|destined|doomed|fated|foreordained|predestinate|predestined|in for|predictable +(adj)|secure +(adj)|certain|reliable +(adj)|trusted|trustworthy |trusty +(adj)|true +(adj)|steady +(adj)|indisputable|certain +(adv)|surely|certainly|for sure|for certain|sure enough|sure as shooting +sure-enough|1 +(adj)|honest-to-god|honest-to-goodness|old|genuine |echt +sure-fire|1 +(adj)|successful +sure-handed|1 +(adj)|skilled +sure as shooting|2 +(adj)|certain +(adv)|surely|certainly|sure|for sure|for certain|sure enough +sure enough|1 +(adv)|surely|certainly|sure|for sure|for certain|sure as shooting +sure thing|1 +(noun)|certainty|foregone conclusion|quality +surefooted|2 +(adj)|footsure|steady +(adj)|confident|capable +surely|1 +(adv)|certainly|sure|for sure|for certain|sure enough|sure as shooting +sureness|2 +(noun)|assurance|self-assurance|confidence|self-confidence|authority|certainty +(noun)|steadiness|firmness +surety|5 +(noun)|certainty|sure thing|foregone conclusion +(noun)|security|transferred property|transferred possession +(noun)|hostage|prisoner|captive +(noun)|guarantor|warrantor|warranter|patron|sponsor|supporter +(noun)|security|guarantee|warrant|warrantee|warranty +surety bond|1 +(noun)|performance bond|bond|bond certificate +surf|4 +(noun)|breaker|breakers|wave|moving ridge +(verb)|glide +(verb)|browse|search|seek|look for +(verb)|channel-surf|switch|shift|change +surf casting|1 +(noun)|surf fishing|casting|cast +surf fish|3 +(noun)|yellowfin croaker|surffish|Umbrina roncador|croaker +(noun)|surfperch|surffish|percoid fish|percoid|percoidean +(noun)| +surf fishing|1 +(noun)|surf casting|casting|cast +surface|11 +(adj)|surface |aboveground|grade-constructed|opencast|opencut +(adj)|skin-deep|superficial|shallow +(noun)|artifact|artefact +(noun)|boundary|bound|bounds +(noun)|Earth's surface|layer +(noun)|aspect|facet +(noun)|open|public knowledge|general knowledge +(noun)|airfoil|aerofoil|control surface|device +(verb)|come up|rise up|rise|ascend|go up +(verb)|coat|cover +(verb)|come on|come out|turn up|show up|appear +surface-active|1 +(adj)|active +surface-active agent|1 +(noun)|wetting agent|wetter|surfactant|chemical agent +surface-assimilative|1 +(adj)|adsorbent |adsorptive|chemisorptive|chemosorptive +surface-mine|2 +(verb)|strip mine|surface mine|mine +(verb)| +surface-to-air|1 +(adj)|surface-to-air +surface-to-air missile|1 +(noun)|SAM|guided missile +surface-to-air missile system|1 +(noun)|shipboard system +surface area|1 +(noun)|area|expanse|extent +surface assimilation|1 +(noun)|adsorption|sorption +surface fire|1 +(noun)|forest fire +surface gage|1 +(noun)|surface gauge|scribing block|gauge|gage +surface gauge|1 +(noun)|surface gage|scribing block|gauge|gage +surface lift|1 +(noun)|ski tow|ski lift|lift +surface mail|1 +(noun)|mail +surface mine|2 +(verb)|strip mine|surface-mine|mine +(verb)| +surface noise|1 +(noun)|background noise|ground noise +surface search radar|1 +(noun)|naval radar +surface ship|1 +(noun)|warship|war vessel|combat ship +surface soil|1 +(noun)|topsoil|soil|dirt +surface tension|1 +(noun)|physical phenomenon +surfacing|1 +(noun)|egress|egression|emergence +surfactant|1 +(noun)|wetting agent|wetter|surface-active agent|chemical agent +surfbird|1 +(noun)|Aphriza virgata|shorebird|shore bird|limicoline bird +surfboard|1 +(noun)|board +surfboarder|1 +(noun)|surfer|swimmer|natator|bather +surfboarding|1 +(noun)|surfing|surfriding|water sport|aquatics +surfboat|1 +(noun)|boat +surfeit|5 +(noun)|excess|overabundance|fullness +(noun)|glut|oversupply|overabundance|overmuch|overmuchness|superabundance +(noun)|repletion|eating|feeding +(verb)|cloy|supply|provide|render|furnish +(verb)|indulge|luxuriate +surfeited|1 +(adj)|gorged|sated|satiate |satiated +surfer|1 +(noun)|surfboarder|swimmer|natator|bather +surffish|2 +(noun)|yellowfin croaker|surf fish|Umbrina roncador|croaker +(noun)|surfperch|surf fish|percoid fish|percoid|percoidean +surficial|1 +(adj)|layer +surfing|1 +(noun)|surfboarding|surfriding|water sport|aquatics +surfperch|1 +(noun)|surffish|surf fish|percoid fish|percoid|percoidean +surfriding|1 +(noun)|surfing|surfboarding|water sport|aquatics +surge|8 +(noun)|rush|spate|upsurge|flow|flowing +(noun)|upsurge|increase|step-up +(noun)|billow|wave|moving ridge +(verb)|billow|heave|inflate|blow up +(verb)|soar|soar up|soar upwards|zoom|rise|lift|arise|move up|go up|come up|uprise +(verb)|tide|run|flow|feed|course +(verb)|scend|rise|lift|arise|move up|go up|come up|uprise +(verb)|better|improve|ameliorate|meliorate +surge protector|1 +(noun)|surge suppressor|spike suppressor|spike arrester|lightning arrester|suppressor|suppresser +surge suppressor|1 +(noun)|surge protector|spike suppressor|spike arrester|lightning arrester|suppressor|suppresser +surgeon|1 +(noun)|operating surgeon|sawbones|doctor|doc|physician|MD|Dr.|medico +surgeon's knot|1 +(noun)|knot +surgeon general|2 +(noun)|Surgeon General|executive|executive director +(noun)|Surgeon General|medical officer|medic +surgeonfish|1 +(noun)|percoid fish|percoid|percoidean +surgery|4 +(noun)|medical science +(noun)|room +(noun)|operating room|OR|operating theater|operating theatre|hospital room +(noun)|operation|surgical operation|surgical procedure|surgical process|medical procedure +surgical|3 +(adj)|surgical |medical procedure +(adj)|surgical |operative|preoperative|postoperative +(adj)|accurate +surgical contraception|1 +(noun)|sterilization|sterilisation|contraception|contraceptive method +surgical dressing|1 +(noun)|dressing|medical dressing +surgical gown|1 +(noun)|gown|scrubs|garment +surgical incision|1 +(noun)|incision|section|cut|cutting +surgical instrument|1 +(noun)|medical instrument +surgical knife|1 +(noun)|knife|surgical instrument +surgical operation|1 +(noun)|operation|surgery|surgical procedure|surgical process|medical procedure +surgical procedure|1 +(noun)|operation|surgery|surgical operation|surgical process|medical procedure +surgical process|1 +(noun)|operation|surgery|surgical operation|surgical procedure|medical procedure +surgical seam|1 +(noun)|suture|seam +surgical spirit|1 +(noun)|methylated spirit +surgical strike|1 +(noun)|strike +surging|1 +(adj)|billowy|billowing|stormy +suricata|1 +(noun)|Suricata|genus Suricata|mammal genus +suricata suricatta|1 +(noun)|slender-tailed meerkat|Suricata suricatta|meerkat|mierkat +suricata tetradactyla|1 +(noun)|suricate|Suricata tetradactyla|meerkat|mierkat +suricate|1 +(noun)|Suricata tetradactyla|meerkat|mierkat +surinam|1 +(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country|South American nation +surinam cherry|3 +(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot|dicotyledon|magnoliopsid|exogen +(noun)|Surinam cherry|pitanga|Eugenia uniflora|fruit tree +(noun)|acerola|barbados cherry|West Indian cherry|berry +surinam river|1 +(noun)|Suriname River|Surinam River|river +surinam toad|1 +(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog +suriname|1 +(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country|South American nation +suriname river|1 +(noun)|Suriname River|Surinam River|river +surinamese monetary unit|1 +(noun)|Surinamese monetary unit|monetary unit +surlily|1 +(adv)|churlishly +surliness|1 +(noun)|temper|biliousness|irritability|peevishness|pettishness|snappishness|ill nature +surly|1 +(adj)|ugly|ill-natured +surmisable|1 +(adj)|presumable|supposable|thinkable +surmisal|1 +(noun)|guess|conjecture|supposition|surmise|speculation|hypothesis|opinion|view +surmise|3 +(noun)|guess|conjecture|supposition|surmisal|speculation|hypothesis|opinion|view +(verb)|deduce|infer|deduct|derive +(verb)|suspect|guess|venture|pretend|hazard +surmontil|1 +(noun)|trimipramine|Surmontil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +surmount|4 +(verb)|overcome|get over|subdue|master|get the better of|overcome|defeat +(verb)|head +(verb)|scale|reach|make|attain|hit|arrive at|gain +(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|outperform|beat|beat out|crush|shell|trounce|vanquish +surmountable|2 +(adj)|surmountable |conquerable|superable|conquerable +(adj)|climbable|passable +surmounted|1 +(adj)|head +surmounter|1 +(noun)|subduer|overcomer|restrainer|controller +surmullet|1 +(noun)|goatfish|red mullet|Mullus surmuletus|mullet +surname|1 +(noun)|family name|cognomen|last name|name +surnia|1 +(noun)|Surnia|genus Surnia|bird genus +surnia ulula|1 +(noun)|hawk owl|Surnia ulula|owl|bird of Minerva|bird of night|hooter +surpass|4 +(verb)|excel|stand out +(verb)|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform|beat|beat out|crush|shell|trounce|vanquish +(verb)|travel by|pass by|go past|go by|pass|travel|go|move|locomote +(verb)|exceed|transcend +surpassing|2 +(adj)|transcendent|superior +(adj)|exceeding|exceptional|olympian|prodigious|extraordinary +surplice|1 +(noun)|vestment +surpliced|1 +(adj)|clothed |clad +surplus|2 +(adj)|excess|extra|redundant|spare|supererogatory|superfluous|supernumerary|unnecessary |unneeded +(noun)|excess|surplusage|nimiety|overabundance|overmuch|overmuchness|superabundance +surplusage|1 +(noun)|excess|surplus|nimiety|overabundance|overmuch|overmuchness|superabundance +surprint|1 +(noun)|overprint|print +surprisal|1 +(noun)|surprise|disruption|perturbation +surprise|6 +(noun)|astonishment|amazement +(noun)|change|alteration|modification +(noun)|surprisal|disruption|perturbation +(verb)|affect|impress|move|strike +(verb)|act|move +(verb)|storm|attack|assail +surprise attack|1 +(noun)|coup de main|attack|onslaught|onset|onrush +surprised|1 +(adj)|surprised |amazed|astonied|astonished|astounded|stunned|dumbfounded|dumfounded|flabbergasted|stupefied|thunderstruck|gobsmacked|goggle-eyed|openmouthed|popeyed|startled|jiggered +surpriser|1 +(noun)|captor|capturer +surprising|1 +(adj)|surprising |amazing|astonishing|startling|stunning|unexpected|unexpected +surprisingly|1 +(adv)|amazingly|astonishingly +surprisingness|1 +(noun)|unexpectedness|extraordinariness +surreal|2 +(adj)|phantasmagoric|phantasmagorical|surrealistic|unrealistic +(adj)|dreamlike|unreal +surrealism|1 +(noun)|artistic movement|art movement +surrealist|1 +(noun)|artist|creative person +surrealistic|1 +(adj)|phantasmagoric|phantasmagorical|surreal|unrealistic +surrebuttal|1 +(noun)|surrebutter|pleading +surrebutter|1 +(noun)|surrebuttal|pleading +surrejoinder|1 +(noun)|pleading +surrender|7 +(noun)|resignation|despair +(noun)|giving up|yielding|relinquishment|relinquishing +(noun)|delivery|livery|legal transfer +(noun)|capitulation|fall|loss +(verb)|give up|yield +(verb)|cede|deliver|give up|give|gift|present +(verb)|relinquish|yield +surrendered|1 +(adj)|relinquished|given +surrenderer|1 +(noun)|yielder|person|individual|someone|somebody|mortal|human|soul +surreptitious|2 +(adj)|furtive|lurking|skulking|sneak|sneaky|stealthy|concealed +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|undercover|underground|covert +surreptitiously|1 +(adv)|sneakily +surrey|2 +(noun)|Surrey|county +(noun)|carriage|equipage|rig +surrogate|3 +(adj)|foster|adoptive +(noun)|alternate|replacement|stand-in|substitute|relief|reliever|backup|backup man|fill-in +(noun)|deputy|agent +surrogate mother|1 +(noun)|mother|female parent +surround|6 +(noun)|environment|environs|surroundings|geographical area|geographic area|geographical region|geographic region +(verb)|environ|encircle|circle|round|ring|hold|bear|carry|contain +(verb)|skirt|border|touch|adjoin|meet|contact +(verb)|smother|cover +(verb)|besiege|beleaguer|hem in|circumvent|attack|assail +(verb)|wall|palisade|fence|fence in|protect +surrounded|1 +(adj)|encircled|enclosed +surrounding|1 +(adj)|encompassing|close +surroundings|2 +(noun)|milieu|environment +(noun)|environment|environs|surround|geographical area|geographic area|geographical region|geographic region +sursum corda|1 +(noun)|versicle +surtax|2 +(noun)|supertax|income tax +(verb)|tax +surtitle|1 +(noun)|supertitle|translation|interlingual rendition|rendering|version +surtout|1 +(noun)|greatcoat|overcoat|topcoat +surveil|1 +(verb)|follow|survey +surveillance|1 +(noun)|police work|police investigation +surveillance of disease|1 +(noun)|surveillance +surveillance system|1 +(noun)|closed-circuit television +survey|9 +(noun)|study|examination|scrutiny +(noun)|sketch|resume|summary +(noun)|view|sight|look|looking|looking at +(verb)|appraise|analyze|analyse|study|examine|canvass|canvas +(verb)|examine|see +(verb)|surveil|follow +(verb)|review|go over|inspect +(verb)|analyze|analyse|study|examine|canvass|canvas +(verb)|calculate|cipher|cypher|compute|work out|reckon|figure +surveying|1 +(noun)|measurement|measuring|measure|mensuration +surveying instrument|1 +(noun)|surveyor's instrument|instrument +surveyor|2 +(noun)|engineer|applied scientist|technologist +(noun)|statistician|actuary +surveyor's instrument|1 +(noun)|surveying instrument|instrument +surveyor's level|1 +(noun)|surveying instrument|surveyor's instrument +survival|3 +(noun)|endurance|animation|life|living|aliveness +(noun)|survival of the fittest|natural selection|selection|natural process|natural action|action|activity +(noun)|continuance|continuation +survival of the fittest|1 +(noun)|survival|natural selection|selection|natural process|natural action|action|activity +survivalist|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +survive|4 +(verb)|last|live|live on|go|endure|hold up|hold out +(verb)|pull through|pull round|come through|make it|get the better of|overcome|defeat +(verb)|exist|live|subsist +(verb)|outlive|outlast +surviving|1 +(adj)|living|extant +survivor|3 +(noun)|subsister|unfortunate|unfortunate person +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|animal|animate being|beast|brute|creature|fauna +survivor guilt|1 +(noun)|guilt|guilty conscience|guilt feelings|guilt trip +survivors insurance|1 +(noun)|Social Security +survivorship annuity|1 +(noun)|reversionary annuity|annuity|rente +surya|1 +(noun)|Surya|Hindu deity +sus|1 +(noun)|Sus|genus Sus|mammal genus +sus scrofa|2 +(noun)|wild boar|boar|Sus scrofa|swine +(noun)|hog|pig|grunter|squealer|Sus scrofa|swine +susa|1 +(noun)|Sousse|Susa|Susah|city|metropolis|urban center|port +susah|1 +(noun)|Sousse|Susa|Susah|city|metropolis|urban center|port +susan anthony|1 +(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist +susan b. anthony|1 +(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist +susan b anthony dollar|1 +(noun)|Susan B Anthony dollar|dollar +susan brownell anthony|1 +(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist +susan sontag|1 +(noun)|Sontag|Susan Sontag|writer|author +susanna|1 +(noun)|Susanna|Book of Susanna|book +susceptibility|1 +(noun)|susceptibleness|condition|status +susceptible|2 +(adj)|susceptible |allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|capable|open|subject|convincible|persuadable|persuasible|suasible|fictile|pliable|liable|nonimmune|nonresistant|unresistant|predisposed|responsive|amenable|tractable|suggestible|temptable|vulnerable|unvaccinated|sensitive|unprotected|vulnerable +(adj)|impressionable |impressible +susceptibleness|1 +(noun)|susceptibility|condition|status +sushi|1 +(noun)|dish +sushi bar|1 +(noun)|bar +susian|1 +(noun)|Elamitic|Elamite|Susian|natural language|tongue +susiana|1 +(noun)|Elam|Susiana|geographical area|geographic area|geographical region|geographic region +suslik|1 +(noun)|souslik|Citellus citellus|ground squirrel|gopher|spermophile +suspect|6 +(adj)|fishy|funny|queer|shady|suspicious|questionable +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|defendant|litigant|litigator +(verb)|surmise|guess|venture|pretend|hazard +(verb)|distrust|mistrust|disbelieve|discredit +(verb)|think|opine|suppose|imagine|reckon|guess +suspected|1 +(adj)|suspected +suspend|6 +(verb)|hang|hang up +(verb)|change|alter|modify +(verb)|debar|expel|throw out|kick out +(verb)|freeze|interrupt|break +(verb)|set aside|change|alter|modify +(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off +suspended|2 +(adj)|supported +(adj)|abeyant|inactive|in abeyance|delayed +suspended animation|1 +(noun)|physiological state|physiological condition +suspender|1 +(noun)|brace|gallus|clothing|article of clothing|vesture|wear +suspender belt|1 +(noun)|garter belt|undergarment +suspense|3 +(noun)|apprehension|apprehensiveness|dread +(noun)|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|anticipation|expectancy +suspense account|1 +(noun)|account|accounting|account statement +suspenseful|1 +(adj)|cliff-hanging|suspensive|nail-biting|tense +suspension|7 +(noun)|mixture +(noun)|pause|intermission|break|interruption|time interval|interval +(noun)|abeyance|inaction|inactivity|inactiveness +(noun)|respite|reprieve|hiatus|abatement|interruption|break +(noun)|suspension system|mechanical system +(noun)|dangling|hanging|support|supporting +(noun)|temporary removal|debarment +suspension bridge|1 +(noun)|bridge|span +suspension point|1 +(noun)|period|point|full stop|stop|full point +suspension system|1 +(noun)|suspension|mechanical system +suspensive|2 +(adj)|cliff-hanging|suspenseful|nail-biting|tense +(adj)|indecisive +suspensor|1 +(noun)|athletic supporter|supporter|jockstrap|jock|protective garment +suspensory|1 +(noun)|suspensory bandage|bandage|patch +suspensory bandage|1 +(noun)|suspensory|bandage|patch +suspicion|4 +(noun)|intuition|hunch|impression|feeling|belief|notion|opinion +(noun)|misgiving|mistrust|distrust|doubt|uncertainty|incertitude|dubiety|doubtfulness|dubiousness +(noun)|hostility|enmity|antagonism +(noun)|suspiciousness|distrust|distrustfulness|mistrust +suspicious|2 +(adj)|leery|mistrustful|untrusting|wary|distrustful +(adj)|fishy|funny|queer|shady|suspect|questionable +suspiciousness|1 +(noun)|suspicion|distrust|distrustfulness|mistrust +suspiration|1 +(noun)|sigh|utterance|vocalization +suspire|2 +(verb)|sigh|breathe|take a breath|respire +(verb)|breathe|take a breath|respire +susquehanna|1 +(noun)|Susquehanna|Susquehanna River|river +susquehanna river|1 +(noun)|Susquehanna|Susquehanna River|river +suss out|1 +(verb)|check|check up on|look into|check out|check over|go over|check into|analyze|analyse|study|examine|canvass|canvas +sussex|1 +(noun)|Sussex|geographical area|geographic area|geographical region|geographic region +sussex spaniel|1 +(noun)|Sussex spaniel|spaniel +sussex university|1 +(noun)|University of Sussex|Sussex University|university +sustain|7 +(verb)|prolong|keep up|continue|uphold|carry on|bear on|preserve +(verb)|suffer|have|get|experience|receive|have|get|undergo +(verb)|nourish|nurture|provide|supply|ply|cater +(verb)|keep|maintain|have|have got|hold +(verb)|hold|support|hold up +(verb)|admit|acknowledge +(verb)|confirm|corroborate|substantiate|support|affirm +sustainability|1 +(noun)|property +sustainable|1 +(adj)|property +sustained|2 +(adj)|continuous |uninterrupted +(adj)|free burning|continuous |uninterrupted +sustainer|1 +(noun)|upholder|maintainer|supporter|protagonist|champion|admirer|booster|friend +sustaining pedal|1 +(noun)|loud pedal|pedal|treadle|foot pedal|foot lever +sustaining program|1 +(noun)|broadcast|program|programme +sustainment|1 +(noun)|sustenance|sustentation|maintenance|upkeep|support +sustenance|3 +(noun)|nutriment|nourishment|nutrition|aliment|alimentation|victuals|food|nutrient +(noun)|support|keep|livelihood|living|bread and butter|resource +(noun)|sustentation|sustainment|maintenance|upkeep|support +sustentacular|1 +(adj)|support +sustentation|1 +(noun)|sustenance|sustainment|maintenance|upkeep|support +susurrant|1 +(adj)|murmuring|whispering|soft +susurrate|1 +(verb)|murmur +susurration|2 +(noun)|susurrus|sound +(noun)|whisper|whispering|speaking|speech production +susurrous|1 +(adj)|murmurous|rustling|soughing|soft +susurrus|1 +(noun)|susurration|sound +sutherland|1 +(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano +sutler|1 +(noun)|victualer|victualler|provisioner|supplier|provider +sutra|1 +(noun)|Sanskrit literature +suttee|1 +(noun)|suicide|self-destruction|self-annihilation +sutura|1 +(noun)|suture|fibrous joint|joint|articulation|articulatio +sutura coronalis|1 +(noun)|coronal suture|suture|sutura|fibrous joint +sutura frontalis|1 +(noun)|frontal suture|suture|sutura|fibrous joint +sutura intermaxillaris|1 +(noun)|intermaxillary suture|suture|sutura|fibrous joint +sutura internasalis|1 +(noun)|internasal suture|suture|sutura|fibrous joint +sutura lamboidea|1 +(noun)|lamboid suture|suture|sutura|fibrous joint +sutura sagittalis|1 +(noun)|sagittal suture|interparietal suture|suture|sutura|fibrous joint +sutural bone|1 +(noun)|Wormian bone|bone|os +suture|4 +(noun)|sutura|fibrous joint|joint|articulation|articulatio +(noun)|surgical seam|seam +(noun)|thread|yarn +(verb)|seam +suturing|1 +(noun)|sewing|stitching +suva|1 +(noun)|Suva|national capital +suzerain|1 +(noun)|state|nation|country|land|commonwealth|res publica|body politic +suzerainty|2 +(noun)|dominion|rule +(noun)|domain|demesne|land +svalbard|1 +(noun)|Svalbard|archipelago +svante august arrhenius|1 +(noun)|Arrhenius|Svante August Arrhenius|chemist|physicist +svedberg|1 +(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian|theologist|theologizer|theologiser +svelte|2 +(adj)|polished|refined|urbane|sophisticated +(adj)|lissome|lissom|lithe|lithesome|slender|supple|sylphlike|graceful +svengali|2 +(noun)|Svengali|persuader|inducer +(noun)|Svengali|fictional character|fictitious character|character +sverdrup|1 +(noun)|Sverdrup|Otto Neumann Sverdrup|explorer|adventurer +sverige|1 +(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country|Scandinavian nation +svizzera|1 +(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country|European nation +svr|1 +(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency +sw|1 +(noun)|southwest|sou'-west|SW|compass point|point +swab|4 +(noun)|implement +(noun)|swob|mop|cleaning implement +(verb)|swob|wipe up|mop up|mop +(verb)|dab|swob|put on|apply +swabbing|1 +(noun)|mopping|scrub|scrubbing|scouring +swad|1 +(noun)|bunch|clump|cluster|clustering +swaddle|1 +(verb)|swathe|bind +swaddling bands|1 +(noun)|swaddling clothes|garment +swaddling clothes|2 +(noun)|swaddling bands|garment +(noun)|constraint +swadust mushroom|1 +(noun)|Pluteus magnus|agaric +swag|6 +(noun)|valuable +(noun)|loot|booty|pillage|plunder|prize|dirty money|stolen property +(noun)|bundle|sheaf +(verb)|sag|droop|flag|sink|drop|drop down +(verb)|stagger|reel|keel|lurch|careen|walk +(verb)|rock|sway|shake +swage|2 +(noun)|upset|tool +(verb)|upset|shape|form|work|mold|mould|forge +swage block|1 +(noun)|block +swagger|6 +(adj)|groovy|fashionable |stylish +(noun)|swagman|swaggie|itinerant +(noun)|strut|prance|gait +(verb)|ruffle|prance|strut|sashay|cock|walk +(verb)|browbeat|bully|wheedle|cajole|palaver|blarney|coax|sweet-talk|inveigle +(verb)|bluster|swash|act|behave|do +swagger stick|1 +(noun)|cane +swaggerer|1 +(noun)|pedestrian|walker|footer +swaggering|2 +(adj)|disdainful|haughty|lordly|prideful|sniffy|supercilious|proud +(adj)|swashbuckling|adventurous |adventuresome +swaggie|1 +(noun)|swagman|swagger|itinerant +swagman|1 +(noun)|swagger|swaggie|itinerant +swahili|1 +(noun)|Swahili|Bantu|Bantoid language +swain|1 +(noun)|boyfriend|fellow|beau|young man|man|adult male|lover +swainsona|1 +(noun)|Swainsona|genus Swainsona|rosid dicot genus +swainsona galegifolia|1 +(noun)|smooth darling pea|Swainsona galegifolia|darling pea|poison bush +swainsona grandiflora|1 +(noun)|hairy darling pea|Swainsona greyana|Swainsona grandiflora|darling pea|poison bush +swainsona greyana|1 +(noun)|hairy darling pea|Swainsona greyana|Swainsona grandiflora|darling pea|poison bush +swallow|11 +(noun)|sup|taste|mouthful +(noun)|drink|deglutition|consumption|ingestion|intake|uptake +(noun)|oscine|oscine bird +(verb)|get down|consume|ingest|take in|take|have +(verb)|demolish|destroy +(verb)|immerse|swallow up|bury|eat up|enclose|inclose|shut in +(verb)|talk|speak|utter|mouth|verbalize|verbalise +(verb)|take back|unsay|withdraw|renounce|repudiate +(verb)|suppress|repress +(verb)|accept|live with|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +(verb)|believe +swallow-tailed|1 +(adj)|caudate |caudated +swallow-tailed coat|1 +(noun)|swallowtail|morning coat|jacket +swallow-tailed hawk|1 +(noun)|swallow-tailed kite|Elanoides forficatus|kite +swallow-tailed kite|1 +(noun)|swallow-tailed hawk|Elanoides forficatus|kite +swallow dive|1 +(noun)|swan dive|dive|diving +swallow hole|1 +(noun)|sinkhole|sink|natural depression|depression +swallow shrike|1 +(noun)|wood swallow|oscine|oscine bird +swallow up|1 +(verb)|immerse|swallow|bury|eat up|enclose|inclose|shut in +swallow wort|2 +(noun)|celandine|greater celandine|swallowwort|Chelidonium majus|poppy +(noun)|blood flower|swallowwort|Asclepias curassavica|milkweed|silkweed +swallowed|1 +(adj)|engulfed|enveloped|enclosed +swallowtail|1 +(noun)|swallow-tailed coat|morning coat|jacket +swallowwort|2 +(noun)|blood flower|Asclepias curassavica|milkweed|silkweed +(noun)|celandine|greater celandine|swallow wort|Chelidonium majus|poppy +swami|1 +(noun)|Hindu|Hindoo +swammerdam|1 +(noun)|Swammerdam|Jan Swammerdam|naturalist|natural scientist|microscopist +swamp|4 +(noun)|swampland|wetland +(noun)|situation +(verb)|drench|flood +(verb)|deluge|flood|inundate|fill|fill up|make full +swamp ash|1 +(noun)|Fraxinus caroliniana|ash|ash tree +swamp azalea|1 +(noun)|swamp honeysuckle|white honeysuckle|Rhododendron viscosum|rhododendron +swamp bay|1 +(noun)|sweet bay|swamp laurel|Magnolia virginiana|magnolia +swamp birch|1 +(noun)|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +swamp blackberry|1 +(noun)|swamp dewberry|Rubus hispidus|dewberry|dewberry bush|running blackberry +swamp blueberry|1 +(noun)|high-bush blueberry|tall bilberry|Vaccinium corymbosum|blueberry|blueberry bush +swamp buggy|1 +(noun)|marsh buggy|amphibian|amphibious vehicle +swamp candleberry|1 +(noun)|bayberry|candleberry|waxberry|Myrica pensylvanica|wax myrtle +swamp candles|1 +(noun)|Lysimachia terrestris|loosestrife +swamp chestnut oak|1 +(noun)|Quercus michauxii|chestnut oak +swamp cottonwood|1 +(noun)|black cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood +swamp cypress|1 +(noun)|bald cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress +swamp dewberry|1 +(noun)|swamp blackberry|Rubus hispidus|dewberry|dewberry bush|running blackberry +swamp fever|1 +(noun)|leptospirosis|zoonosis|zoonotic disease +swamp fly honeysuckle|1 +(noun)|American fly honeysuckle|fly honeysuckle|Lonicera canadensis +swamp gum|1 +(noun)|Eucalypt ovata|eucalyptus|eucalypt|eucalyptus tree +swamp hare|1 +(noun)|swamp rabbit|canecutter|Sylvilagus aquaticus|wood rabbit|cottontail|cottontail rabbit +swamp hickory|1 +(noun)|bitternut|bitternut hickory|bitter hickory|bitter pignut|Carya cordiformis|hickory|hickory tree +swamp honeysuckle|1 +(noun)|swamp azalea|white honeysuckle|Rhododendron viscosum|rhododendron +swamp horsetail|1 +(noun)|water horsetail|Equisetum fluviatile|horsetail +swamp laurel|2 +(noun)|bog laurel|bog kalmia|Kalmia polifolia|kalmia +(noun)|sweet bay|swamp bay|Magnolia virginiana|magnolia +swamp lily|1 +(noun)|lizard's-tail|water dragon|Saururus cernuus|marsh plant|bog plant|swamp plant +swamp locust|1 +(noun)|water locust|Gleditsia aquatica|locust tree|locust +swamp mallow|1 +(noun)|rose mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus +swamp maple|1 +(noun)|red maple|scarlet maple|Acer rubrum|maple +swamp milkweed|1 +(noun)|Asclepias incarnata|milkweed|silkweed +swamp oak|3 +(noun)|Viminaria juncea|Viminaria denudata|shrub|bush +(noun)|pin oak|Quercus palustris|oak|oak tree +(noun)|swamp white oak|Quercus bicolor|white oak +swamp pine|1 +(noun)|pine|pine tree|true pine +swamp plant|1 +(noun)|marsh plant|bog plant|aquatic plant|water plant|hydrophyte|hydrophytic plant +swamp poplar|1 +(noun)|swamp cottonwood|black cottonwood|downy poplar|Populus heterophylla|cottonwood +swamp rabbit|2 +(noun)|marsh hare|Sylvilagus palustris|wood rabbit|cottontail|cottontail rabbit +(noun)|canecutter|swamp hare|Sylvilagus aquaticus|wood rabbit|cottontail|cottontail rabbit +swamp red oak|1 +(noun)|southern red oak|turkey oak|Quercus falcata|red oak +swamp rose mallow|1 +(noun)|rose mallow|swamp mallow|common rose mallow|Hibiscus moscheutos|hibiscus +swamp sparrow|1 +(noun)|Melospiza georgiana|New World sparrow +swamp sunflower|1 +(noun)|Helianthus angustifolius|sunflower|helianthus +swamp white oak|1 +(noun)|swamp oak|Quercus bicolor|white oak +swamp willow|1 +(noun)|black willow|Salix nigra|willow|willow tree +swamped|2 +(adj)|sunken |submerged +(adj)|flooded|inundated|overcome|overpowered|overwhelmed|engulfed|powerless |weak +swamphen|1 +(noun)|gallinule|marsh hen|water hen|aquatic bird +swampland|1 +(noun)|swamp|wetland +swampy|1 +(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloughy|wet +swampy beggar-ticks|1 +(noun)|Bidens connata|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +swan|4 +(noun)|aquatic bird +(verb)|affirm|verify|assert|avow|aver|swear|declare +(verb)|roll|wander|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +(verb)|sweep|sail +swan's down|2 +(noun)|fabric|cloth|material|textile +(noun)|down|down feather +swan-flower|2 +(noun)|swan orchid|swanflower|swanneck|swan-neck|orchid|orchidaceous plant +(noun)| +swan-neck|2 +(noun)|swan orchid|swanflower|swan-flower|swanneck|orchid|orchidaceous plant +(noun)| +swan dive|1 +(noun)|swallow dive|dive|diving +swan orchid|1 +(noun)|swanflower|swan-flower|swanneck|swan-neck|orchid|orchidaceous plant +swan river daisy|1 +(noun)|Swan River daisy|Brachycome Iberidifolia|flower +swan river everlasting|1 +(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting|everlasting flower +swan song|1 +(noun)|last hurrah|performance +swanflower|1 +(noun)|swan orchid|swan-flower|swanneck|swan-neck|orchid|orchidaceous plant +swank|3 +(adj)|swanky|fashionable |stylish +(noun)|chic|chicness|modishness|smartness|stylishness|last word|elegance +(verb)|flaunt|flash|show off|ostentate|expose|exhibit|display +swanky|1 +(adj)|swank|fashionable |stylish +swanneck|1 +(noun)|swan orchid|swanflower|swan-flower|swan-neck|orchid|orchidaceous plant +swansea|1 +(noun)|Swansea|city|metropolis|urban center|port +swanson|1 +(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress +swap|3 +(noun)|barter|swop|trade|exchange|interchange +(verb)|trade|swop|switch|exchange|change|interchange +(verb)|travel|go|move|locomote +swap file|1 +(noun)|swap space|disk space|disc space +swap space|1 +(noun)|swap file|disk space|disc space +sward|1 +(noun)|turf|sod|greensward|land|ground|soil +swarm|4 +(noun)|drove|horde|crowd +(noun)|cloud|animal group +(verb)|teem|pullulate|hum|buzz|seethe +(verb)|pour|stream|teem|pullulate|crowd|crowd together +swarming|3 +(adj)|teeming|abundant +(adj)|herding|social|gregarious +(adj)|full +swart|1 +(adj)|dark-skinned|dusky|swarthy|brunet |brunette +swarthiness|1 +(noun)|darkness|duskiness|complexion|skin color|skin colour +swarthy|1 +(adj)|dark-skinned|dusky|swart|brunet |brunette +swash|5 +(noun)|wave|moving ridge +(verb)|travel|go|move|locomote +(verb)|spatter|splatter|plash|splash|splosh|scatter|sprinkle|dot|dust|disperse +(verb)|boast|tout|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +(verb)|swagger|bluster|act|behave|do +swashbuckler|1 +(noun)|daredevil|madcap|hothead|lunatic|harum-scarum|adventurer|venturer +swashbuckling|2 +(adj)|swaggering|adventurous |adventuresome +(noun)|demeanor|demeanour|behavior|behaviour|conduct|deportment +swastika|1 +(noun)|Hakenkreuz|emblem|allegory|tetraskelion|tetraskele +swat|2 +(noun)|blow +(verb)|hit +swat squad|1 +(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad +swat team|1 +(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad +swatch|1 +(noun)|piece of cloth|piece of material +swath|2 +(noun)|space +(noun)|belt|path|track|course +swathe|2 +(noun)|wrapping|bandage|patch +(verb)|swaddle|bind +swathing|1 +(noun)|covering +swatter|2 +(noun)|flyswatter|flyswat|implement +(verb)|splash +sway|6 +(noun)|power|powerfulness +(noun)|rock|careen|tilt|lurch|pitch|pitching +(verb)|rock|shake|move back and forth +(verb)|swing|move back and forth +(verb)|carry|persuade|influence|act upon|work +(verb)|rock|move|displace +swayback|1 +(adj)|dipped|lordotic|swaybacked|unfit +swaybacked|1 +(adj)|dipped|lordotic|swayback|unfit +swayer|1 +(noun)|ruler|person|individual|someone|somebody|mortal|human|soul +swazi|3 +(adj)|Swazi|African country|African nation +(noun)|Swazi|African +(noun)|Swazi|Nguni +swaziland|1 +(noun)|Swaziland|Kingdom of Swaziland|African country|African nation +swaziland monetary unit|1 +(noun)|Swaziland monetary unit|monetary unit +swbs|1 +(noun)|southwest by south|SWbS|compass point|point +swbw|1 +(noun)|southwest by west|SWbW|compass point|point +swear|5 +(verb)|curse|cuss|blaspheme|imprecate|express|verbalize|verbalise|utter|give tongue to +(verb)|affirm|verify|assert|avow|aver|swan|declare +(verb)|vow|swear off +(verb)|depose|depone|declare +(verb)|trust|rely|bank|believe +swear in|1 +(verb)|inaugurate|kick off +swear off|1 +(verb)|promise|assure +swear out|1 +(verb)|serve|process|deliver +swearer|2 +(noun)|blasphemer +(noun)|communicator +swearing|2 +(noun)|curse|curse word|expletive|oath|swearword|cuss|profanity +(noun)|oath|commitment|dedication +swearword|1 +(noun)|curse|curse word|expletive|oath|swearing|cuss|profanity +sweat|5 +(noun)|perspiration|sudor|secretion +(noun)|fret|stew|lather|swither|agitation +(noun)|condensation|condensate +(noun)|effort|elbow grease|exertion|travail|labor|labour|toil +(verb)|sudate|perspire|excrete|egest|eliminate|pass|sweat off +sweat bag|1 +(noun)|bag +sweat duct|1 +(noun)|ductule|ductulus +sweat equity|1 +(noun)|equity +sweat gland|1 +(noun)|sudoriferous gland|exocrine gland|duct gland +sweat off|1 +(verb)|reduce|melt off|lose weight|slim|slenderize|thin|slim down +sweat pants|1 +(noun)|trousers|pants +sweat room|1 +(noun)|sauna|steam bath|steam room|vapor bath|vapour bath +sweat sock|1 +(noun)|athletic sock|varsity sock|sock +sweat suit|2 +(noun)|sweatsuit|sweats|workout suit|garment +(noun)| +sweatband|2 +(noun)|band +(noun)|band +sweatbox|2 +(noun)|cell|jail cell|prison cell +(noun)|device +sweater|2 +(noun)|garment +(noun)|perspirer|person|individual|someone|somebody|mortal|human|soul +sweater girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille +sweating|2 +(adj)|perspiring|sweaty|wet +(noun)|perspiration|diaphoresis|sudation|hidrosis|bodily process|body process|bodily function|activity +sweating sickness|2 +(noun)|animal disease +(noun)|miliary fever|infectious disease +sweats|5 +(noun)|sweat suit|sweatsuit|workout suit|garment +(noun)|perspiration|sweat|sudor|secretion +(noun)|fret|stew|sweat|lather|swither|agitation +(noun)|sweat|condensation|condensate +(noun)|effort|elbow grease|exertion|travail|sweat|labor|labour|toil +sweatshirt|1 +(noun)|pullover|slipover +sweatshop|1 +(noun)|factory|mill|manufacturing plant|manufactory +sweatsuit|1 +(noun)|sweat suit|sweats|workout suit|garment +sweaty|1 +(adj)|perspiring|sweating|wet +swede|3 +(noun)|Swede|European +(noun)|rutabaga|turnip cabbage|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant +(noun)|rutabaga|swedish turnip|yellow turnip|turnip +sweden|1 +(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country|Scandinavian nation +swedenborg|1 +(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian|theologist|theologizer|theologiser +swedish|2 +(adj)|Swedish|Scandinavian country|Scandinavian nation +(noun)|Swedish|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language +swedish iron|1 +(noun)|Swedish iron|wrought iron +swedish krona|1 +(noun)|Swedish krona|krona|Swedish monetary unit +swedish massage|1 +(noun)|Swedish massage|massage +swedish meatball|1 +(noun)|Swedish meatball|meatball +swedish mile|1 +(noun)|mile|Swedish mile|linear unit +swedish monetary unit|1 +(noun)|Swedish monetary unit|monetary unit +swedish nightingale|1 +(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano +swedish rye|1 +(noun)|Swedish rye bread|Swedish rye|rye bread +swedish rye bread|1 +(noun)|Swedish rye bread|Swedish rye|rye bread +swedish turnip|2 +(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant +(noun)|rutabaga|swede|yellow turnip|turnip +sweeney todd|1 +(noun)|Todd|Sweeney Todd|fictional character|fictitious character|character +sweep|15 +(noun)|expanse|scope|range|reach|orbit|compass|ambit +(noun)|chimneysweeper|chimneysweep|cleaner +(noun)|slam|victory|triumph +(noun)|sweep oar|oar +(noun)|end run|run|running|running play|running game +(noun)|motion|movement|move|motility +(verb)|brush|move +(verb)|sail|move|sweep through +(verb)|broom|wipe|pass over +(verb)|embroil|tangle|sweep up|drag|drag in|involve +(verb)|cross|traverse|span|cover|extend +(verb)|clean|make clean +(verb)|win +(verb)|cover|extend +(verb)|swing|swing out|wield|handle +sweep-second|1 +(noun)|sweep hand|second hand +sweep away|2 +(verb)|wipe out|destroy|destruct +(verb)|sweep off|affect|impress|move|strike +sweep hand|1 +(noun)|sweep-second|second hand +sweep oar|1 +(noun)|sweep|oar +sweep off|1 +(verb)|sweep away|affect|impress|move|strike +sweep over|1 +(verb)|overwhelm|overpower|whelm|overcome|overtake|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +sweep through|1 +(verb)|breeze through|ace|pass with flying colors|sail through|nail|pass|make it +sweep under the rug|1 +(verb)|hide|conceal +sweep up|2 +(verb)|embroil|tangle|sweep|drag|drag in|involve +(verb)|espouse|embrace|adopt|accept +sweeper|3 +(noun)|employee +(noun)|carpet sweeper|cleaning implement +(noun)|teleost fish|teleost|teleostan +sweeping|4 +(adj)|wide |broad +(adj)|wholesale|indiscriminate +(adj)|extensive|far-reaching|comprehensive +(noun)|cleaning|cleansing|cleanup +sweepstake|1 +(noun)|sweepstakes|lottery|drawing +sweepstakes|2 +(noun)|sweepstake|lottery|drawing +(noun)|sweepstake|lottery|drawing +sweet|17 +(adj)|sweet |cloying|saccharine|syrupy|treacly|sweetish|sugary|tasteful +(adj)|angelic|angelical|cherubic|seraphic|lovable |loveable +(adj)|dulcet|honeyed|mellifluous|mellisonant|melodious |melodic|musical +(adj)|tasteful +(adj)|pleasing +(adj)|gratifying|pleasing +(adj)|odoriferous|odorous|perfumed|scented|sweet-scented|sweet-smelling|fragrant +(adj)|sweet |sugary +(adj)|fresh|unfermented|unsoured +(adj)|sugared|sweetened|sugary +(adj)|unsalty|fresh +(noun)|Sweet|Henry Sweet|phonetician +(noun)|dessert|afters|course +(noun)|confection|confectionery|dainty|delicacy|goody|kickshaw|treat +(noun)|sweetness|sugariness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sweetness|taste property +(adv)|sweetly +sweet-birch oil|1 +(noun)|methyl salicylate|birch oil|salicylate +sweet-faced|1 +(adj)|faced +sweet-potato ring rot|1 +(noun)|plant disease +sweet-potato whitefly|1 +(noun)|whitefly +sweet-scented|1 +(adj)|odoriferous|odorous|perfumed|scented|sweet|sweet-smelling|fragrant +sweet-scented geranium|1 +(noun)|rose geranium|Pelargonium graveolens|geranium +sweet-smelling|1 +(adj)|odoriferous|odorous|perfumed|scented|sweet|sweet-scented|fragrant +sweet-talk|1 +(verb)|wheedle|cajole|palaver|blarney|coax|inveigle|persuade +sweet acacia|1 +(noun)|huisache|cassie|mimosa bush|sweet wattle|scented wattle|flame tree|Acacia farnesiana|acacia +sweet alison|1 +(noun)|sweet alyssum|Lobularia maritima|flower +sweet almond|1 +(noun)|almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree +sweet almond oil|1 +(noun)|almond oil|expressed almond oil|oil +sweet alyssum|1 +(noun)|sweet alison|Lobularia maritima|flower +sweet balm|1 +(noun)|lemon balm|garden balm|bee balm|beebalm|Melissa officinalis|herb|herbaceous plant +sweet basil|2 +(noun)|common basil|Ocimum basilicum|basil +(noun)|basil|herb +sweet bay|1 +(noun)|swamp bay|swamp laurel|Magnolia virginiana|magnolia +sweet bells|1 +(noun)|Leucothoe racemosa|shrub|bush +sweet birch|1 +(noun)|cherry birch|black birch|Betula lenta|birch|birch tree +sweet buckeye|1 +(noun)|horse chestnut|buckeye|Aesculus hippocastanum +sweet calabash|2 +(noun)|Passiflora maliformis|passionflower|passionflower vine +(noun)|passion fruit +sweet calamus|1 +(noun)|sweet flag|calamus|myrtle flag|flagroot|Acorus calamus|marsh plant|bog plant|swamp plant +sweet cassava|1 +(noun)|Manihot dulcis|cassava|casava +sweet cherry|2 +(noun)|Prunus avium|cherry|cherry tree +(noun)|black cherry|cherry +sweet chestnut|1 +(noun)|European chestnut|Spanish chestnut|Castanea sativa|chestnut|chestnut tree +sweet cicely|3 +(noun)|myrrh|gum myrrh|gum resin +(noun)|Myrrhis odorata|herb|herbaceous plant +(noun)|herb +sweet cider|1 +(noun)|cider|cyder +sweet clover|1 +(noun)|melilotus|melilot|woody plant|ligneous plant +sweet coltsfoot|2 +(noun)|Petasites sagitattus|herb|herbaceous plant +(noun)|winter heliotrope|Petasites fragrans|herb|herbaceous plant +sweet corn|2 +(noun)|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +(noun)|green corn|corn|edible corn +sweet corn plant|1 +(noun)|sweet corn|sugar corn|green corn|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +sweet cup|1 +(noun)|bell apple|water lemon|yellow granadilla|passion fruit +sweet elder|1 +(noun)|American elder|black elderberry|Sambucus canadensis|elder|elderberry bush +sweet false chamomile|1 +(noun)|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb|herbaceous plant +sweet fanny adams|1 +(noun)|bugger all|fuck all|Fanny Adams|sweet Fanny Adams|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip +sweet fern|2 +(noun)|common polypody|adder's fern|wall fern|golden maidenhair|golden polypody|Polypodium vulgare|polypody +(noun)|Comptonia peregrina|Comptonia asplenifolia|shrub|bush +sweet flag|1 +(noun)|calamus|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant|bog plant|swamp plant +sweet four o'clock|1 +(noun)|maravilla|Mirabilis longiflora|four o'clock +sweet gale|1 +(noun)|Scotch gale|Myrica gale|shrub|bush +sweet goldenrod|1 +(noun)|Blue Mountain tea|Solidago odora|goldenrod +sweet granadilla|1 +(noun)|granadilla|Passiflora ligularis|passionflower|passionflower vine +sweet grass|1 +(noun)|manna grass|meadowgrass|meadow grass +sweet gum|3 +(noun)|satin walnut|hazelwood|red gum|gumwood|gum +(noun)|liquidambar|gum +(noun)|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar +sweet gum tree|1 +(noun)|sweet gum|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar +sweet lemon|1 +(noun)|sweet lime|Citrus limetta|lemon|lemon tree|Citrus limon|genus Citrus +sweet lime|1 +(noun)|sweet lemon|Citrus limetta|lemon|lemon tree|Citrus limon|genus Citrus +sweet marjoram|1 +(noun)|knotted marjoram|Origanum majorana|Majorana hortensis|origanum +sweet melon|2 +(noun)|muskmelon|sweet melon vine|Cucumis melo|melon|melon vine +(noun)|muskmelon|melon +sweet melon vine|1 +(noun)|sweet melon|muskmelon|Cucumis melo|melon|melon vine +sweet nothings|1 +(noun)|honeyed words|nothings +sweet oil|1 +(noun)|vegetable oil|oil +sweet orange|2 +(noun)|orange +(noun)|sweet orange tree|Citrus sinensis|orange|orange tree +sweet orange tree|1 +(noun)|sweet orange|Citrus sinensis|orange|orange tree +sweet pea|2 +(noun)|sweetpea|Lathyrus odoratus|vine +(noun)| +sweet pepper|3 +(noun)|capsicum|pepper|capsicum pepper plant +(noun)|bell pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +(noun)|pepper +sweet pepper plant|1 +(noun)|sweet pepper|bell pepper|pimento|pimiento|paprika|Capsicum annuum grossum|capsicum|pepper|capsicum pepper plant +sweet pepperbush|1 +(noun)|pepper bush|summer sweet|white alder|Clethra alnifolia|shrub|bush +sweet pickle|1 +(noun)|pickle +sweet potato|4 +(noun)|tuber +(noun)|sweet potato vine|Ipomoea batatas|morning glory +(noun)|root vegetable +(noun)|ocarina|wind instrument|wind +sweet potato vine|1 +(noun)|sweet potato|Ipomoea batatas|morning glory +sweet reseda|1 +(noun)|mignonette|Reseda odorata|reseda +sweet rocket|1 +(noun)|damask violet|Dame's violet|Hesperis matronalis|flower +sweet roll|1 +(noun)|coffee roll|bun|roll +sweet sand verbena|2 +(noun)|Abronia fragrans|sand verbena +(noun)|snowball|Abronia elliptica|sand verbena +sweet scabious|1 +(noun)|pincushion flower|mournful widow|Scabiosa atropurpurea|scabious|scabiosa +sweet shrub|1 +(noun)|Carolina allspice|strawberry shrub|strawberry bush|Calycanthus floridus|allspice +sweet sorghum|1 +(noun)|sorgo|sorgho|sugar sorghum|sorghum +sweet sultan|3 +(noun)|blessed thistle|Cnicus benedictus|thistle +(noun)|Centaurea imperialis|flower +(noun)|Amberboa moschata|Centaurea moschata|flower +sweet talk|1 +(noun)|blarney|coaxing|soft soap|flattery +sweet talker|1 +(noun)|smoothie|smoothy|charmer|hypocrite|dissembler|phony|phoney|pretender +sweet tooth|1 +(noun)|appetite|appetency|appetence +sweet unicorn plant|1 +(noun)|Proboscidea fragrans|Martynia fragrans|herb|herbaceous plant +sweet vermouth|1 +(noun)|Italian vermouth|vermouth +sweet vetch|1 +(noun)|Hedysarum boreale|subshrub|suffrutex +sweet violet|1 +(noun)|garden violet|English violet|Viola odorata|violet +sweet wattle|1 +(noun)|huisache|cassie|mimosa bush|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia +sweet white violet|1 +(noun)|white violet|woodland white violet|Viola blanda|violet +sweet william|1 +(noun)|sweet William|Dianthus barbatus|pink|garden pink +sweet woodruff|2 +(noun)|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw +(noun)|waldmeister|herb +sweet wormwood|1 +(noun)|Artemisia annua|wormwood +sweetbread|1 +(noun)|sweetbreads|variety meat|organs +sweetbreads|2 +(noun)|sweetbread|variety meat|organs +(noun)|sweetbread|variety meat|organs +sweetbriar|1 +(noun)|sweetbrier|brier|briar|eglantine|Rosa eglanteria|rose +sweetbrier|1 +(noun)|sweetbriar|brier|briar|eglantine|Rosa eglanteria|rose +sweeten|2 +(verb)|dulcify|edulcorate|dulcorate|change taste +(verb)|change|alter|modify +sweetened|1 +(adj)|sugared|sweet|sugary +sweetener|2 +(noun)|sweetening|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|bait|come-on|hook|lure|temptation|enticement +sweetening|3 +(noun)|sweetener|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|enhancement|improvement +(noun)|seasoning +sweetheart|4 +(adj)|privileged +(noun)|sweetie|steady|truelove|lover +(noun)|good person +(noun)|smasher|stunner|knockout|beauty|ravisher|peach|lulu|looker|mantrap|dish|woman|adult female +sweetie|1 +(noun)|sweetheart|steady|truelove|lover +sweetish|1 +(adj)|sweet +sweetleaf|1 +(noun)|Symplocus tinctoria|angiospermous yellowwood +sweetleaf family|1 +(noun)|Symplocaceae|family Symplocaceae|dicot family|magnoliopsid family +sweetly|1 +(adv)|sweet +sweetmeat|1 +(noun)|sweet|confection|confectionery +sweetness|4 +(noun)|sweet|sugariness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|sweet|taste property +(noun)|bouquet|fragrance|redolence|olfactory property|smell|aroma|odor|odour|scent +(noun)|pleasantness|quality +sweetness and light|1 +(noun)|affability|affableness|amiability|amiableness|bonhomie|geniality +sweetpea|1 +(noun)|sweet pea|Lathyrus odoratus|vine +sweetsop|2 +(noun)|sweetsop tree|Annona squamosa|custard apple|custard apple tree +(noun)|anon|sugar apple|custard apple +sweetsop tree|1 +(noun)|sweetsop|Annona squamosa|custard apple|custard apple tree +sweetwood bark|1 +(noun)|cascarilla bark|eleuthra bark|bark +swell|11 +(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|smashing|good +(noun)|crestless wave|wave|moving ridge +(noun)|natural elevation|elevation +(noun)|crescendo +(noun)|dandy|dude|fop|gallant|sheik|beau|fashion plate|clotheshorse|man|adult male +(verb)|increase +(verb)|puff up|act|behave|do +(verb)|swell up|intumesce|tumefy|tumesce|expand +(verb)|well up|originate|arise|rise|develop|uprise|spring up|grow +(verb)|well|surface|come up|rise up|rise +(verb)|grow +swell up|1 +(verb)|swell|intumesce|tumefy|tumesce|expand +swelled|1 +(adj)|big|vainglorious|proud +swelled head|1 +(noun)|egotism|self-importance|conceit|vanity +swellhead|1 +(noun)|egotist|egoist|unpleasant person|disagreeable person +swelling|3 +(adj)|injured +(noun)|puffiness|lump|symptom +(noun)|intumescence|intumescency|chemical process|chemical change|chemical action +swelter|2 +(verb)|suffer +(verb)|sweat|sudate|perspire +sweltering|1 +(adj)|sweltry|hot +sweltry|1 +(adj)|sweltering|hot +swept|1 +(adj)|swept |sweptback|sweptwing +sweptback|2 +(adj)|swept +(adj)|backswept|backward +sweptwing|1 +(adj)|swept +swertia|1 +(noun)|Swertia|genus Swertia|dicot genus|magnoliopsid genus +swertia perennia|1 +(noun)|marsh felwort|Swertia perennia|herb|herbaceous plant +swertia speciosa|1 +(noun)|green gentian|Frasera speciosa|Swertia speciosa|herb|herbaceous plant +swerve|3 +(noun)|swerving|veering|turn|turning +(noun)|yaw|turning|turn +(verb)|sheer|curve|trend|veer|slue|slew|cut|turn +swerving|1 +(noun)|swerve|veering|turn|turning +swietinia|1 +(noun)|Swietinia|genus Swietinia|rosid dicot genus +swietinia macrophylla|1 +(noun)|Honduras mahogany|Swietinia macrophylla|mahogany|mahogany tree +swietinia mahogani|1 +(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany|mahogany tree +swift|5 +(adj)|fleet|fast +(noun)|Swift|Gustavus Franklin Swift|meat packer|packer +(noun)|Swift|Jonathan Swift|Dean Swift|satirist|ironist|ridiculer +(noun)|apodiform bird +(noun)|western fence lizard|blue-belly|Sceloporus occidentalis|fence lizard +swiftlet|1 +(noun)|Collocalia inexpectata|swift +swiftly|1 +(adv)|fleetly +swiftness|1 +(noun)|speed|fastness|pace|rate +swig|3 +(noun)|gulp|draft|draught|swallow|drink|deglutition +(verb)|slug|slog|hit +(verb)|gulp|quaff|drink|imbibe +swill|3 +(noun)|slop|slops|pigswill|pigwash|feed|provender +(verb)|slop|feed|give +(verb)|swill down|drink|imbibe +swill down|1 +(verb)|swill|drink|imbibe +swilling|1 +(noun)|gulping|guzzling|drinking|imbibing|imbibition +swim|3 +(noun)|swimming|water sport|aquatics +(verb)|travel|go|move|locomote +(verb)|float|travel|go|move|locomote +swim bladder|1 +(noun)|air bladder|sac +swim meet|1 +(noun)|swimming meet|meet|sports meeting +swimmer|2 +(noun)|athlete|jock +(noun)|natator|bather|traveler|traveller +swimmer's itch|1 +(noun)|schistosome dermatitis|dermatitis +swimmeret|1 +(noun)|pleopod|extremity|appendage|member +swimming|3 +(adj)|liquid|watery|tearful +(adj)|naiant|horizontal +(noun)|swim|water sport|aquatics +swimming bath|1 +(noun)|swimming pool|natatorium|pool|athletic facility +swimming cap|1 +(noun)|bathing cap|cap +swimming costume|1 +(noun)|swimsuit|bathing suit|bathing costume|garment +swimming crab|1 +(noun)|crab +swimming event|1 +(noun)|match +swimming hole|1 +(noun)|pond|pool +swimming kick|1 +(noun)|kick|kicking +swimming meet|1 +(noun)|swim meet|meet|sports meeting +swimming pool|1 +(noun)|swimming bath|natatorium|pool|athletic facility +swimming stroke|1 +(noun)|stroke +swimming trunks|1 +(noun)|bathing trunks|swimsuit|bathing suit|swimming costume|bathing costume +swimmingly|1 +(adv)|smoothly +swimsuit|1 +(noun)|bathing suit|swimming costume|bathing costume|garment +swinburne|1 +(noun)|Swinburne|Algernon Charles Swinburne|poet +swindle|2 +(noun)|cheat|rig|fraud +(verb)|victimize|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +swindler|1 +(noun)|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy|deceiver|cheat|cheater|trickster|beguiler|slicker +swine|1 +(noun)|even-toed ungulate|artiodactyl|artiodactyl mammal +swine flu|1 +(noun)|swine influenza|influenza|flu|grippe +swine influenza|1 +(noun)|swine flu|influenza|flu|grippe +swineherd|1 +(noun)|pigman|herder|herdsman|drover +swing|22 +(noun)|action|activity|activeness +(noun)|mechanical device|plaything|toy +(noun)|blow +(noun)|swinging|vacillation|motion|movement|move +(noun)|swing music|jive|jazz +(noun)|lilt|rhythmicity +(noun)|golf stroke|golf shot|stroke|shot +(noun)|baseball swing|cut|stroke|shot +(noun)|country-dance|country dancing|contredanse|contra danse|contradance +(verb)|move|displace +(verb)|sway|move back and forth +(verb)|travel|go|move|locomote +(verb)|swing over|influence|act upon|work +(verb)|sweep|swing out|wield|handle +(verb)|dangle|drop|hang +(verb)|aim|take|train|take aim|direct +(verb)|change +(verb)|live +(verb)|be +(verb)|get around|socialize|socialise +(verb)|play +(verb)|fornicate +swing about|1 +(verb)|swing around|turn around|turn +swing around|1 +(verb)|swing about|turn around|turn +swing door|1 +(noun)|swinging door|door +swing music|1 +(noun)|swing|jive|jazz +swing out|1 +(verb)|swing|sweep|wield|handle +swing over|1 +(verb)|swing|influence|act upon|work +swing shift|1 +(noun)|evening shift|shift|work shift|duty period +swing voter|1 +(noun)|floating voter|voter|elector +swinge|1 +(verb)|singe|char|blacken|scorch +swingeing|1 +(adj)|bad +swinger|2 +(noun)|athlete|jock +(noun)|tramp|libertine|debauchee|rounder +swinging|2 +(adj)|lilting|swingy|tripping|rhythmical |rhythmic +(noun)|swing|vacillation|motion|movement|move +swinging chad|1 +(noun)|chad +swinging door|1 +(noun)|swing door|door +swinging post|1 +(noun)|hinging post|gatepost +swingletree|1 +(noun)|whiffletree|whippletree|crossbar +swingy|1 +(adj)|lilting|swinging|tripping|rhythmical |rhythmic +swinish|2 +(adj)|boorish|loutish|neanderthal|neandertal|oafish|unrefined +(adj)|hoggish|piggish|piggy|porcine|gluttonous +swipe|3 +(noun)|stroke|shot +(verb)|hit|sideswipe +(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|hook|sneak|filch|nobble|lift|steal +swirl|3 +(noun)|whirl|vortex|convolution|round shape +(verb)|twirl|twiddle|whirl|revolve|go around|rotate +(verb)|eddy|purl|whirlpool|whirl|run|flow|feed|course +swirling|1 +(adj)|whirling|moving +swish|3 +(adj)|classy|posh|stylish |fashionable +(noun)|sound +(verb)|lap|swosh|swoosh|sound|go +swishing|1 +(adj)|swishy|noisy +swishy|1 +(adj)|swishing|noisy +swiss|2 +(adj)|Swiss|European country|European nation +(noun)|Swiss|Swiss people|the Swiss|nation|land|country|a people +swiss canton|1 +(noun)|Swiss canton|Guangzhou|Kuangchou|Kwangchow|Canton +swiss chard|2 +(noun)|chard|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet|common beet|Beta vulgaris +(noun)|chard|Swiss chard|spinach beet|leaf beet|greens|green|leafy vegetable +swiss cheese|1 +(noun)|Swiss cheese|cheese +swiss confederation|1 +(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country|European nation +swiss franc|1 +(noun)|Swiss franc|franc +swiss mountain pine|1 +(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine|pine tree|true pine +swiss people|1 +(noun)|Swiss|Swiss people|the Swiss|nation|land|country|a people +swiss pine|1 +(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine|pine tree|true pine +swiss roll|1 +(noun)|jellyroll|Swiss roll|sponge cake +swiss steak|1 +(noun)|Swiss steak|dish +swiss stone pine|1 +(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine|pine tree|true pine +switch|14 +(noun)|electric switch|electrical switch|control|controller +(noun)|substitution|permutation|transposition|replacement|variation|fluctuation +(noun)|hairpiece|false hair|postiche +(noun)|railroad track|railroad|railway +(noun)|instrument of punishment +(noun)|basketball play +(noun)|switching|shift|change +(verb)|switch over|exchange|change by reversal|turn|reverse +(verb)|trade|swap|swop|exchange|change|interchange +(verb)|shift|change +(verb)|change over|shift|change|alter|modify +(verb)|throw|flip|engage|mesh|lock|operate +(verb)|flog|welt|whip|lather|lash|slash|strap|trounce +(verb)|interchange|tack|alternate|flip|flip-flop|change by reversal|turn|reverse +switch-hit|1 +(verb)|bat +switch-hitter|2 +(noun)|batter|hitter|slugger|batsman +(noun)|bisexual|bisexual person +switch-ivy|1 +(noun)|dog laurel|dog hobble|Leucothoe fontanesiana|Leucothoe editorum|shrub|bush +switch cane|1 +(noun)|small cane|Arundinaria tecta|bamboo +switch engine|1 +(noun)|donkey engine|locomotive|engine|locomotive engine|railway locomotive +switch grass|1 +(noun)|Panicum virgatum|panic grass +switch off|1 +(verb)|cut|turn off|turn out|throw|flip|switch +switch on|1 +(verb)|turn on|throw|flip|switch +switch over|1 +(verb)|switch|exchange|change by reversal|turn|reverse +switchblade|1 +(noun)|switchblade knife|flick knife|pocketknife|pocket knife +switchblade knife|1 +(noun)|switchblade|flick knife|pocketknife|pocket knife +switchboard|1 +(noun)|patchboard|plugboard|central|telephone exchange|exchange +switchboard operator|1 +(noun)|telephone operator|telephonist|operator|manipulator +switcher|1 +(noun)|whipper|oppressor +switcheroo|1 +(noun)|switch|switching|shift +switching|1 +(noun)|switch|shift|change +switchman|1 +(noun)|operator|manipulator +swither|1 +(noun)|fret|stew|sweat|lather|agitation +switzerland|1 +(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country|European nation +swivel|2 +(noun)|coupling|coupler +(verb)|pivot|turn +swivel chair|1 +(noun)|chair +swivel pin|1 +(noun)|kingbolt|kingpin|bolt +swiz|1 +(noun)|swindle|cheat|rig +swizzle|1 +(noun)|mixed drink +swizzle stick|1 +(noun)|stick +swob|3 +(noun)|swab|mop|cleaning implement +(verb)|swab|wipe up|mop up|mop +(verb)|dab|swab|put on|apply +swollen|4 +(adj)|bloated|distended|puffed|puffy|tumescent|tumid|turgid|unhealthy +(adj)|distended|expanded +(adj)|conceited|egotistic|egotistical|self-conceited|swollen-headed|vain|proud +(adj)|flooding|in flood|overflowing|high +swollen-headed|1 +(adj)|conceited|egotistic|egotistical|self-conceited|swollen|vain|proud +swoon|2 +(noun)|faint|syncope|deliquium|loss of consciousness +(verb)|faint|conk|pass out|zonk out|pass out|black out +swooning|1 +(adj)|faint|light|light-headed|lightheaded|ill |sick +swoop|6 +(noun)|slide|glissando +(noun)|foray|raid|maraud +(noun)|descent +(verb)|pounce|descend|fall|go down|come down +(verb)|move +(verb)|swoop up|snatch|snatch up|snap +swoop up|1 +(verb)|swoop|snatch|snatch up|snap +swoosh|1 +(verb)|lap|swish|swosh|sound|go +swop|2 +(noun)|barter|swap|trade|exchange|interchange +(verb)|trade|swap|switch|exchange|change|interchange +sword|1 +(noun)|blade|brand|steel|weapon|arm|weapon system +sword-cut|1 +(noun)|scar|cicatrix|cicatrice +sword-shaped|1 +(adj)|ensiform|swordlike|bladelike|simple |unsubdivided|pointed +sword bean|1 +(noun)|Canavalia gladiata|vine +sword cane|1 +(noun)|sword stick|cane +sword dance|1 +(noun)|sword dancing|folk dancing|folk dance +sword dancing|1 +(noun)|sword dance|folk dancing|folk dance +sword fern|1 +(noun)|fern +sword grass|1 +(noun)|grass +sword knot|1 +(noun)|tassel +sword lily|2 +(noun)|gladiolus|gladiola|iridaceous plant +(noun)|iris|flag|fleur-de-lis|iridaceous plant +sword of damocles|1 +(noun)|sword of Damocles|hazard|jeopardy|peril|risk +sword stick|1 +(noun)|sword cane|cane +swordfish|2 +(noun)|saltwater fish +(noun)|Xiphias gladius|scombroid|scombroid fish +swordlike|1 +(adj)|ensiform|sword-shaped|bladelike|simple |unsubdivided|pointed +swordplay|1 +(noun)|play|action +swordsman|1 +(noun)|fencer|combatant|battler|belligerent|fighter|scrapper +swordsmanship|1 +(noun)|skill|accomplishment|acquirement|acquisition|attainment +swordtail|1 +(noun)|helleri|topminnow|Xyphophorus helleri|cyprinodont +sworn|2 +(adj)|pledged|committed +(adj)|sworn |bound +swosh|1 +(verb)|lap|swish|swoosh|sound|go +swot|2 +(noun)|grind|nerd|wonk|dweeb|learner|scholar|assimilator +(verb)|cram|grind away|drum|bone up|get up|mug up|swot up|bone|study|hit the books +swot up|1 +(verb)|cram|grind away|drum|bone up|swot|get up|mug up|bone|study|hit the books +swung dash|1 +(noun)|punctuation|punctuation mark +sybarite|1 +(noun)|voluptuary|sensualist +sybaritic|1 +(adj)|epicurean|luxurious|voluptuary|voluptuous|indulgent +sycamore|4 +(noun)|lacewood|wood +(noun)|plane tree|platan|tree +(noun)|great maple|scottish maple|Acer pseudoplatanus|maple +(noun)|sycamore fig|mulberry fig|Ficus sycomorus|fig tree +sycamore fig|1 +(noun)|sycamore|mulberry fig|Ficus sycomorus|fig tree +syconium|1 +(noun)|aggregate fruit|multiple fruit|syncarp +sycophancy|1 +(noun)|obsequiousness|servility|subservience +sycophant|1 +(noun)|toady|crawler|lackey|flatterer|adulator +sycophantic|1 +(adj)|bootlicking|fawning|obsequious|toadyish|insincere +sydenham|1 +(noun)|Sydenham|Thomas Sydenham|The English Hippocrates|doctor|doc|physician|MD|Dr.|medico +sydenham's chorea|1 +(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea +sydney|1 +(noun)|Sydney|state capital +sydney harbor bridge|1 +(noun)|Sydney Harbor Bridge|steel arch bridge +sydney pollack|1 +(noun)|Pollack|Sydney Pollack|film maker|filmmaker|film producer|movie maker +sydney silky|1 +(noun)|silky terrier|Sydney silky|terrier +syllabary|1 +(noun)|syllabic script|script +syllabic|5 +(adj)|language unit|linguistic unit +(adj)|script +(adj)|syllabic |decasyllabic|octosyllabic +(adj)|syllabic |disyllabic|monosyllabic|octosyllabic|pentasyllabic|polysyllabic|syllabled +(adj)|vocalic +syllabic script|1 +(noun)|syllabary|script +syllabicate|1 +(verb)|syllabify|syllabize|syllabise|segment|section +syllabication|1 +(noun)|syllabification|division +syllabicity|1 +(noun)|language system +syllabification|1 +(noun)|syllabication|division +syllabify|1 +(verb)|syllabicate|syllabize|syllabise|segment|section +syllabise|2 +(verb)|syllabify|syllabicate|syllabize|segment|section +(verb)|syllabize|pronounce|articulate|enounce|sound out|enunciate|say +syllabize|2 +(verb)|syllabify|syllabicate|syllabise|segment|section +(verb)|syllabise|pronounce|articulate|enounce|sound out|enunciate|say +syllable|1 +(noun)|language unit|linguistic unit +syllable structure|1 +(noun)|morphology|sound structure|word structure|structure +syllabled|1 +(adj)|syllabic +syllabub|2 +(noun)|sillabub|drink +(noun)|sillabub|dessert|sweet|afters +syllabus|1 +(noun)|course of study|program|programme|curriculum|information|info +syllepsis|1 +(noun)|zeugma +syllogise|1 +(verb)|syllogize|reason|reason out|conclude +syllogiser|1 +(noun)|syllogist|syllogizer|logician|logistician +syllogism|1 +(noun)|deduction|deductive reasoning|synthesis +syllogist|1 +(noun)|syllogizer|syllogiser|logician|logistician +syllogistic|1 +(adj)|deduction|deductive reasoning|synthesis +syllogize|1 +(verb)|syllogise|reason|reason out|conclude +syllogizer|1 +(noun)|syllogist|syllogiser|logician|logistician +sylph|2 +(noun)|woman|adult female +(noun)|imaginary being|imaginary creature +sylphlike|1 +(adj)|lissome|lissom|lithe|lithesome|slender|supple|svelte|graceful +sylva|1 +(noun)|silva|forest|woodland|timberland|timber +sylvan|2 +(adj)|silvan|wooded +(noun)|silvan|spirit|disembodied spirit +sylvanite|1 +(noun)|graphic tellurium|mineral +sylvanus|1 +(noun)|Sylvanus|Silvanus|Roman deity +sylvia communis|1 +(noun)|greater whitethroat|whitethroat|Sylvia communis|warbler +sylvia curruca|1 +(noun)|lesser whitethroat|whitethroat|Sylvia curruca|warbler +sylvia plath|1 +(noun)|Plath|Sylvia Plath|writer|author|poet +sylvian aqueduct|1 +(noun)|cerebral aqueduct|Sylvian aqueduct|aqueductus cerebri|duct|epithelial duct|canal|channel +sylvian fissure|1 +(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus lateralis cerebri|sulcus +sylviidae|1 +(noun)|Sylviidae|family Sylviidae|bird family +sylviinae|1 +(noun)|Sylviinae|subfamily Sylviinae|bird family +sylvilagus|1 +(noun)|Sylvilagus|genus Sylvilagus|mammal genus +sylvilagus aquaticus|1 +(noun)|swamp rabbit|canecutter|swamp hare|Sylvilagus aquaticus|wood rabbit|cottontail|cottontail rabbit +sylvilagus floridanus|1 +(noun)|eastern cottontail|Sylvilagus floridanus|wood rabbit|cottontail|cottontail rabbit +sylvilagus palustris|1 +(noun)|marsh hare|swamp rabbit|Sylvilagus palustris|wood rabbit|cottontail|cottontail rabbit +sylvine|1 +(noun)|sylvite|mineral +sylvite|1 +(noun)|sylvine|mineral +symbion pandora|1 +(noun)|Symbion pandora|invertebrate +symbiosis|1 +(noun)|mutualism|mutuality|interdependence|interdependency +symbiotic|1 +(adj)|dependent +symbol|2 +(noun)|signal|signaling|sign +(noun)|symbolization|symbolisation|symbolic representation|representational process +symbol-worship|1 +(noun)|symbolatry|symbololatry|idolatry|devotion|veneration|cultism +symbolatry|1 +(noun)|symbololatry|symbol-worship|idolatry|devotion|veneration|cultism +symbolic|3 +(adj)|symbolical|signal|signaling|sign +(adj)|emblematic|emblematical|symbolical|representative +(adj)|symbol +symbolic logic|1 +(noun)|mathematical logic|formal logic|logic|logical system|system of logic +symbolic representation|1 +(noun)|symbol|symbolization|symbolisation|representational process +symbolical|2 +(adj)|symbolic|signal|signaling|sign +(adj)|emblematic|emblematical|symbolic|representative +symbolisation|3 +(noun)|symbolization|meaning|significance|signification|import +(noun)|symbol|symbolization|symbolic representation|representational process +(noun)|symbolism|symbolization|practice|pattern +symbolise|2 +(verb)|symbolize|represent +(verb)|typify|symbolize|stand for|represent|mean|intend +symboliser|1 +(noun)|symbolist|symbolizer|interpreter|translator +symbolising|1 +(noun)|symbolizing|figuration +symbolism|3 +(noun)|symbol +(noun)|symbolization|symbolisation|practice|pattern +(noun)|artistic movement|art movement +symbolist|2 +(noun)|artist|creative person +(noun)|symbolizer|symboliser|interpreter|translator +symbolization|3 +(noun)|symbolisation|meaning|significance|signification|import +(noun)|symbol|symbolisation|symbolic representation|representational process +(noun)|symbolism|symbolisation|practice|pattern +symbolize|2 +(verb)|typify|symbolise|stand for|represent|mean|intend +(verb)|symbolise|represent +symbolizer|1 +(noun)|symbolist|symboliser|interpreter|translator +symbolizing|1 +(noun)|symbolising|figuration +symbololatry|1 +(noun)|symbolatry|symbol-worship|idolatry|devotion|veneration|cultism +symmetric|1 +(adj)|symmetrical |bilateral|isobilateral|bilaterally symmetrical|bilaterally symmetric|biradial|cruciate|cruciform|even|regular|interchangeable|isosceles|radial|stellate|radially symmetrical|centrosymmetric|rhombohedral|trigonal|parallel|regular +symmetrical|2 +(adj)|symmetrical |symmetric|bilateral|isobilateral|bilaterally symmetrical|bilaterally symmetric|biradial|cruciate|cruciform|even|regular|interchangeable|isosceles|radial|stellate|radially symmetrical|centrosymmetric|rhombohedral|trigonal|parallel|regular +(adj)|harmonious|proportionate|balanced +symmetricalness|1 +(noun)|symmetry|correspondence|balance|spatial property|spatiality +symmetrise|1 +(verb)|symmetrize|change|alter|modify +symmetrize|1 +(verb)|symmetrise|change|alter|modify +symmetry|3 +(noun)|symmetricalness|correspondence|balance|spatial property|spatiality +(noun)|proportion|balance|equilibrium|equipoise|counterbalance +(noun)|isotropy|property +symonds|1 +(noun)|Symonds|John Addington Symonds|writer|author +symons|1 +(noun)|Symons|Arthur Symons|poet +sympathectomy|1 +(noun)|ablation|extirpation|cutting out|excision +sympathetic|6 +(adj)|nervous system|systema nervosum +(adj)|sympathetic |commiserative|empathic|empathetic|kind|compassionate|congenial|agreeable +(adj)|compatible|congenial |agreeable +(adj)|charitable|kindly|large-hearted|kind +(adj)|sympathetic |appealing|likeable|likable +(adj)|harmonic|harmonious +sympathetic nervous system|1 +(noun)|nervous system|systema nervosum +sympathetic strike|1 +(noun)|sympathy strike|strike|work stoppage +sympathetic vibration|1 +(noun)|oscillation|vibration +sympathetically|1 +(adv)|empathetically|with sympathy|with empathy +sympathise|3 +(verb)|sympathize|feel|experience +(verb)|commiserate|sympathize|feel for|pity|compassionate|condole with|sympathize with +(verb)|sympathize|empathize|empathise|understand +sympathiser|2 +(noun)|sympathizer|comforter|communicator +(noun)|sympathizer|well-wisher|supporter|protagonist|champion|admirer|booster|friend +sympathize|3 +(verb)|sympathise|feel|experience +(verb)|sympathise|empathize|empathise|understand +(verb)|commiserate|sympathise|feel for|pity|compassionate|condole with|sympathize with +sympathize with|1 +(verb)|feel for|pity|compassionate|condole with|grieve|sorrow +sympathizer|2 +(noun)|sympathiser|comforter|communicator +(noun)|sympathiser|well-wisher|supporter|protagonist|champion|admirer|booster|friend +sympathomimetic|1 +(adj)|adrenergic +sympathy|3 +(noun)|understanding|inclination|disposition|tendency +(noun)|fellow feeling|feeling +(noun)|affinity|kinship +sympathy card|1 +(noun)|card +sympathy strike|1 +(noun)|sympathetic strike|strike|work stoppage +sympatric|1 +(adj)|sympatric +sympatry|1 +(noun)|occurrence +sympetalous|1 +(adj)|gamopetalous|petalous |petaled|petalled +symphalangus|1 +(noun)|Symphalangus|genus Symphalangus|mammal genus +symphalangus syndactylus|1 +(noun)|siamang|Hylobates syndactylus|Symphalangus syndactylus|lesser ape +symphilid|1 +(noun)|garden centipede|garden symphilid|Scutigerella immaculata|arthropod +symphonic|2 +(adj)|sonata +(adj)|symphonious|harmonious +symphonic music|1 +(noun)|symphony|sonata +symphonic poem|1 +(noun)|tone poem|musical composition|opus|composition|piece|piece of music +symphonious|1 +(adj)|symphonic|harmonious +symphonise|1 +(verb)|symphonize|play +symphonize|1 +(verb)|symphonise|play +symphony|2 +(noun)|symphonic music|sonata +(noun)|symphony orchestra|orchestra +symphony orchestra|1 +(noun)|symphony|orchestra +symphoricarpos|1 +(noun)|Symphoricarpos|genus Symphoricarpos|asterid dicot genus +symphoricarpos alba|1 +(noun)|snowberry|common snowberry|waxberry|Symphoricarpos alba|poisonous plant|Caprifoliaceae|family Caprifoliaceae|honeysuckle family +symphoricarpos orbiculatus|1 +(noun)|coralberry|Indian currant|Symphoricarpos orbiculatus|shrub|bush +symphyla|1 +(noun)|Symphyla|class Symphyla|class +symphysion|1 +(noun)|craniometric point +symphysis|2 +(noun)|adhesion +(noun)|organic process|biological process +symphytum|1 +(noun)|Symphytum|genus Symphytum|plant genus +symphytum officinale|1 +(noun)|common comfrey|boneset|Symphytum officinale|comfrey|cumfrey +symplocaceae|1 +(noun)|Symplocaceae|family Symplocaceae|sweetleaf family|dicot family|magnoliopsid family +symplocarpus|1 +(noun)|Symplocarpus|genus Symplocarpus|monocot genus|liliopsid genus +symplocarpus foetidus|1 +(noun)|skunk cabbage|polecat weed|foetid pothos|Symplocarpus foetidus|marsh plant|bog plant|swamp plant +symploce|1 +(noun)|repetition +symplocus|1 +(noun)|Symplocus|genus Symplocus|dicot genus|magnoliopsid genus +symplocus paniculata|1 +(noun)|Asiatic sweetleaf|sapphire berry|Symplocus paniculata|flowering shrub +symplocus tinctoria|1 +(noun)|sweetleaf|Symplocus tinctoria|angiospermous yellowwood +symposium|1 +(noun)|conference +symptom|2 +(noun)|evidence|grounds +(noun)|indication|indicant +symptomatic|2 +(adj)|diagnostic|symptomatic of|characteristic +(adj)|evidence|grounds +symptomatic of|1 +(adj)|diagnostic|symptomatic|characteristic +symptomless|1 +(adj)|asymptomatic|well +synaeresis|2 +(noun)|syneresis|linguistic process +(noun)|syneresis|chemical process|chemical change|chemical action +synaesthesia|1 +(noun)|synesthesia|sensation|sense experience|sense impression|sense datum +synaesthetic|1 +(adj)|synesthetic|sensation|sense experience|sense impression|sense datum +synagogue|1 +(noun)|temple|tabernacle|place of worship|house of prayer|house of God|house of worship +synagrops|1 +(noun)|Synagrops|genus Synagrops|fish genus +synagrops bellus|1 +(noun)|blackmouth bass|Synagrops bellus|sea bass +synanceja|1 +(noun)|Synanceja|genus Synanceja|fish genus +synanceja verrucosa|1 +(noun)|stonefish|Synanceja verrucosa|scorpaenid|scorpaenid fish +synapse|1 +(noun)|junction|conjunction|conjugation|colligation +synapsid|1 +(noun)|synapsid reptile|reptile|reptilian +synapsid reptile|1 +(noun)|synapsid|reptile|reptilian +synapsida|1 +(noun)|Synapsida|subclass Synapsida|class +synapsis|1 +(noun)|organic process|biological process +synaptic|1 +(adj)|junction|conjunction|conjugation|colligation +synaptomys|1 +(noun)|Synaptomys|genus Synaptomys|mammal genus +synaptomys borealis|1 +(noun)|northern bog lemming|Synaptomys borealis|lemming +synaptomys cooperi|1 +(noun)|southern bog lemming|Synaptomys cooperi|lemming +sync|1 +(verb)|synchronize|synchronise|adjust|set|correct +syncarp|1 +(noun)|aggregate fruit|multiple fruit|fruit +syncarpous|1 +(adj)|syncarpous +syncategorem|1 +(noun)|syncategoreme|word +syncategorematic|1 +(adj)|syncategorematic |synsemantic +syncategoreme|1 +(noun)|syncategorem|word +synchro|1 +(noun)|selsyn|system +synchrocyclotron|1 +(noun)|cyclotron +synchroflash|1 +(noun)|device +synchromesh|1 +(noun)|system +synchronal|1 +(adj)|synchronous |synchronic|coetaneous|coeval|contemporaneous|coexistent|coexisting|coincident|coincidental|coinciding|concurrent|cooccurring|simultaneous|parallel|synchronic|synchronized|synchronised|contemporaneous|contemporary|synchronic|descriptive +synchroneity|1 +(noun)|synchronism|synchrony|synchronicity|synchronization|synchronisation|synchronizing|temporal relation +synchronic|3 +(adj)|synchronous |synchronal|coetaneous|coeval|contemporaneous|coexistent|coexisting|coincident|coincidental|coinciding|concurrent|cooccurring|simultaneous|parallel|synchronized|synchronised|contemporaneous|contemporary|descriptive +(adj)|synchronic |descriptive|synchronous|synchronal +(adj)|synchronous |synchronal +synchronic linguistics|1 +(noun)|descriptive linguistics|linguistics +synchronicity|1 +(noun)|synchronism|synchrony|synchroneity|synchronization|synchronisation|synchronizing|temporal relation +synchronisation|3 +(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronization|synchronizing|temporal relation +(noun)|synchronization|synchronizing|synchronising|adjustment|registration|readjustment +(noun)|synchronization|synchronizing|coordination +synchronise|6 +(verb)|synchronize|contemporize|contemporise|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|synchronize|change|alter|modify +(verb)|synchronize|contemporize|contemporise|arrange|set up|put|order +(verb)|synchronize|operate|control +(verb)|synchronize|align|aline|line up|adjust +(verb)|synchronize|sync|adjust|set|correct +synchronised|1 +(adj)|synchronized|synchronous |synchronal|synchronic +synchroniser|1 +(noun)|synchroscope|synchronoscope|synchronizer|measuring instrument|measuring system|measuring device +synchronising|1 +(noun)|synchronization|synchronisation|synchronizing|adjustment|registration|readjustment +synchronism|1 +(noun)|synchrony|synchronicity|synchroneity|synchronization|synchronisation|synchronizing|temporal relation +synchronization|3 +(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronisation|synchronizing|temporal relation +(noun)|synchronisation|synchronizing|synchronising|adjustment|registration|readjustment +(noun)|synchronisation|synchronizing|coordination +synchronize|6 +(verb)|synchronise|sync|adjust|set|correct +(verb)|synchronise|contemporize|contemporise|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|synchronise|change|alter|modify +(verb)|synchronise|contemporize|contemporise|arrange|set up|put|order +(verb)|synchronise|operate|control +(verb)|synchronise|align|aline|line up|adjust +synchronized|1 +(adj)|synchronised|synchronous |synchronal|synchronic +synchronizer|1 +(noun)|synchroscope|synchronoscope|synchroniser|measuring instrument|measuring system|measuring device +synchronizing|3 +(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronization|synchronisation|temporal relation +(noun)|synchronization|synchronisation|synchronising|adjustment|registration|readjustment +(noun)|synchronization|synchronisation|coordination +synchronoscope|1 +(noun)|synchroscope|synchronizer|synchroniser|measuring instrument|measuring system|measuring device +synchronous|2 +(adj)|synchronous |synchronal|synchronic|coetaneous|coeval|contemporaneous|coexistent|coexisting|coincident|coincidental|coinciding|concurrent|cooccurring|simultaneous|parallel|synchronic|synchronized|synchronised|contemporaneous|contemporary|synchronic|descriptive +(adj)|synchronous +synchronous converter|1 +(noun)|rotary|rotary converter|electrical converter +synchronous motor|1 +(noun)|electric motor +synchronous operation|1 +(noun)|operation +synchrony|1 +(noun)|synchronism|synchronicity|synchroneity|synchronization|synchronisation|synchronizing|temporal relation +synchroscope|1 +(noun)|synchronoscope|synchronizer|synchroniser|measuring instrument|measuring system|measuring device +synchrotron|1 +(noun)|cyclotron +synchytriaceae|1 +(noun)|Synchytriaceae|family Synchytriaceae|fungus family +synchytrium|1 +(noun)|Synchytrium|genus Synchytrium|fungus genus +synchytrium endobioticum|1 +(noun)|potato wart fungus|Synchytrium endobioticum|fungus +synclinal|1 +(adj)|synclinal +syncopate|2 +(verb)|shorten +(verb)|modify +syncopated|1 +(adj)|rhythmical |rhythmic +syncopation|3 +(noun)|syncope|articulation +(noun)|rhythm|beat|musical rhythm +(noun)|music +syncopator|1 +(noun)|jazz musician|jazzman +syncope|2 +(noun)|faint|swoon|deliquium|loss of consciousness +(noun)|syncopation|articulation +syncretic|2 +(adj)|syncretical|syncretistic|syncretistical|fusion +(adj)|syncretical|syncretistic|syncretistical|union|unification +syncretical|2 +(adj)|syncretic|syncretistic|syncretistical|fusion +(adj)|syncretic|syncretistic|syncretistical|union|unification +syncretise|2 +(verb)|syncretize|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|syncretize|unify|unite|merge +syncretism|2 +(noun)|union|unification +(noun)|fusion +syncretistic|2 +(adj)|syncretic|syncretical|syncretistical|fusion +(adj)|syncretic|syncretical|syncretistical|union|unification +syncretistical|2 +(adj)|syncretic|syncretical|syncretistic|fusion +(adj)|syncretic|syncretical|syncretistic|union|unification +syncretize|2 +(verb)|syncretise|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge +(verb)|syncretise|unify|unite|merge +syncytium|1 +(noun)|cytoplasm +syndactylism|1 +(noun)|syndactyly|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +syndactyly|1 +(noun)|syndactylism|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +syndetic|1 +(adj)|syndetic +syndic|1 +(noun)|agent|factor|broker +syndicalism|1 +(noun)|political movement +syndicalist|1 +(noun)|anarchist|nihilist|radical +syndicate|6 +(noun)|crime syndicate|mob|family|organized crime|gangland|gangdom +(noun)|consortium|pool|association +(noun)|news agency|press agency|wire service|press association|news organization|news organisation +(verb)|connect|link|link up|join|unite +(verb)|form|organize|organise +(verb)|sell +syndication|2 +(noun)|organization|organisation +(noun)|selling|merchandising|marketing +syndicator|1 +(noun)|businessman|man of affairs +syndrome|2 +(noun)|complex|composite +(noun)|symptom +synecdoche|1 +(noun)|trope|figure of speech|figure|image +synecdochic|1 +(adj)|synecdochical|figurative |nonliteral +synecdochical|1 +(adj)|synecdochic|figurative |nonliteral +synechia|1 +(noun)|adhesion +synentognathi|1 +(noun)|Synentognathi|order Synentognathi|animal order +synercus|1 +(noun)|Synercus|genus Synercus|tribe synercus|mammal genus +synercus caffer|1 +(noun)|Cape buffalo|Synercus caffer|Old World buffalo|buffalo +syneresis|2 +(noun)|synaeresis|linguistic process +(noun)|synaeresis|chemical process|chemical change|chemical action +synergetic|1 +(adj)|synergistic|cooperative +synergism|2 +(noun)|synergy|natural process|natural action|action|activity +(noun)|theological doctrine|religious doctrine +synergist|1 +(noun)|drug +synergistic|3 +(adj)|synergistic |interactive +(adj)|theological doctrine|religious doctrine +(adj)|synergetic|cooperative +synergy|1 +(noun)|synergism|natural process|natural action|action|activity +synesthesia|1 +(noun)|synaesthesia|sensation|sense experience|sense impression|sense datum +synesthetic|1 +(adj)|synaesthetic|sensation|sense experience|sense impression|sense datum +synesthetic metaphor|1 +(noun)|metaphor +synezesis|1 +(noun)|synizesis|organic process|biological process +synge|1 +(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist|playwright|poet +syngnathidae|1 +(noun)|Syngnathidae|family Syngnathidae|fish family +syngnathus|1 +(noun)|Syngnathus|genus Syngnathus|fish genus +syngnathus hildebrandi|1 +(noun)|dwarf pipefish|Syngnathus hildebrandi|pipefish|needlefish +syngonium|1 +(noun)|Syngonium|genus Syngonium|monocot genus|liliopsid genus +synizesis|1 +(noun)|synezesis|organic process|biological process +synod|1 +(noun)|council +synodic month|1 +(noun)|lunar month|moon|lunation|month +synodontidae|1 +(noun)|Synodontidae|family Synodontidae|fish family +synoecious|1 +(adj)|synoicous|monoecious |monecious|monoicous +synoicous|1 +(adj)|synoecious|monoecious |monecious|monoicous +synonym|1 +(noun)|equivalent word|word +synonym finder|1 +(noun)|thesaurus|wordbook +synonymist|1 +(noun)|lexicographer|lexicologist +synonymity|1 +(noun)|synonymy|synonymousness|semantic relation +synonymous|1 +(adj)|synonymous |similar|substitutable +synonymousness|1 +(noun)|synonymy|synonymity|semantic relation +synonymy|1 +(noun)|synonymity|synonymousness|semantic relation +synopsis|1 +(noun)|outline|abstract|precis|summary +synoptic|2 +(adj)|summary +(adj)|synoptical|same +synoptical|1 +(adj)|synoptic|same +synovia|1 +(noun)|synovial fluid|secretion +synovial|1 +(adj)|secretion +synovial fluid|1 +(noun)|synovia|secretion +synovial joint|1 +(noun)|articulatio synovialis|diarthrosis|joint|articulation|articulatio +synovial membrane|1 +(noun)|synovium|membrane|tissue layer +synovitis|1 +(noun)|inflammation|redness|rubor +synovium|1 +(noun)|synovial membrane|membrane|tissue layer +synsemantic|1 +(adj)|syncategorematic +synset|1 +(noun)|set +syntactic|1 +(adj)|syntactical|grammar +syntactic category|1 +(noun)|grammatical category|class|category|family +syntactical|1 +(adj)|syntactic|grammar +syntactically independent|1 +(adj)|absolute +syntactician|1 +(noun)|grammarian|linguist|linguistic scientist +syntagm|1 +(noun)|syntagma|string of words|word string|linguistic string +syntagma|1 +(noun)|syntagm|string of words|word string|linguistic string +syntagmatic|1 +(adj)|syntagmatic |string of words|word string|linguistic string +syntax|3 +(noun)|sentence structure|phrase structure|structure +(noun)|system|scheme +(noun)|grammar +syntax checker|1 +(noun)|program|programme|computer program|computer programme +syntax error|1 +(noun)|software error|programming error +syntax language|1 +(noun)|metalanguage +synthesis|3 +(noun)|chemical process|chemical change|chemical action +(noun)|synthetic thinking|reasoning|logical thinking|abstract thought +(noun)|deduction|deductive reasoning|reasoning|logical thinking|abstract thought +synthesise|1 +(verb)|synthesize|compound|combine +synthesiser|2 +(noun)|synthesist|synthesizer|intellectual|intellect +(noun)|synthesizer|electronic instrument +synthesist|1 +(noun)|synthesizer|synthesiser|intellectual|intellect +synthesize|2 +(verb)|synthesise|compound|combine +(verb)|change +synthesizer|2 +(noun)|synthesist|synthesiser|intellectual|intellect +(noun)|synthesiser|electronic instrument +synthetic|7 +(adj)|man-made|semisynthetic|artificial |unreal +(adj)|synthetic |synthetical +(adj)|synthetic |agglutinative|polysynthetic|inflectional +(adj)|synthetic |synthetical|a posteriori|inductive|logical +(adj)|celluloid|artificial |unreal +(adj)|counterfeit |imitative +(noun)|compound|chemical compound +synthetic cubism|1 +(noun)|cubism +synthetic fiber|1 +(noun)|man-made fiber|fiber|fibre +synthetic heroin|1 +(noun)|methadone|methadone hydrochloride|methadon|dolophine hydrochloride|fixer|narcotic +synthetic resin|1 +(noun)|resin|rosin|polymer +synthetic rubber|1 +(noun)|rubber|India rubber|gum elastic|caoutchouc +synthetic thinking|1 +(noun)|synthesis|reasoning|logical thinking|abstract thought +synthetical|2 +(adj)|synthetic +(adj)|synthetic |a posteriori|inductive|logical +synthetism|1 +(noun)|genre +syph|1 +(noun)|syphilis|pox|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +syphilis|1 +(noun)|syph|pox|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +syphilitic|2 +(adj)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease +(noun)|sick person|diseased person|sufferer +syphon|2 +(noun)|siphon|tube|tubing +(verb)|siphon|siphon off|draw|take out +syracuse|4 +(noun)|Syracuse|city|metropolis|urban center +(noun)|Syracuse|Siracusa|city|metropolis|urban center +(noun)|Syracuse|siege of Syracuse|siege|besieging|beleaguering|military blockade +(noun)|Syracuse|siege of Syracuse|siege|besieging|beleaguering|military blockade +syria|1 +(noun)|Syria|Syrian Arab Republic|Asian country|Asian nation +syrian|2 +(adj)|Syrian|Asian country|Asian nation +(noun)|Syrian|Asian|Asiatic +syrian arab republic|1 +(noun)|Syria|Syrian Arab Republic|Asian country|Asian nation +syrian bean caper|1 +(noun)|bean caper|Syrian bean caper|Zygophyllum fabago|shrub|bush +syrian bear|1 +(noun)|Syrian bear|Ursus arctos syriacus|brown bear|bruin|Ursus arctos +syrian hamster|1 +(noun)|golden hamster|Syrian hamster|Mesocricetus auratus|hamster +syrian monetary unit|1 +(noun)|Syrian monetary unit|monetary unit +syrian pound|1 +(noun)|Syrian pound|pound|Syrian monetary unit +syringa|2 +(noun)|mock orange|Philadelphus coronarius|philadelphus +(noun)|Syringa|genus Syringa|dicot genus|magnoliopsid genus +syringa amurensis japonica|1 +(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac +syringa emodi|1 +(noun)|Himalayan lilac|Syringa emodi|lilac +syringa josikaea|1 +(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac +syringa josikea|1 +(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac +syringa persica|1 +(noun)|Persian lilac|Syringa persica|lilac +syringa reticulata|1 +(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac +syringa villosa|1 +(noun)|Japanese lilac|Syringa villosa|lilac +syringa vulgaris|1 +(noun)|common lilac|Syringa vulgaris|lilac +syringe|2 +(noun)|medical instrument +(verb)|spray +syrinx|2 +(noun)|panpipe|pandean pipe|wind instrument|wind +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +syrrhaptes|1 +(noun)|Syrrhaptes|genus Syrrhaptes|bird genus +syrrhaptes paradoxus|1 +(noun)|pallas's sandgrouse|Syrrhaptes paradoxus|sandgrouse|sand grouse +syrup|1 +(noun)|sirup|sweetening|sweetener +syrupy|3 +(adj)|cloying|saccharine|treacly|sweet +(adj)|viscous|thick +(adj)|honeyed|honied|sugary +system|9 +(noun)|scheme|group|grouping +(noun)|instrumentality|instrumentation +(noun)|system of rules|method +(noun)|plan of action +(noun)|body part +(noun)|arrangement|organization|organisation|structure +(noun)|substance|matter +(noun)|live body +(noun)|organization|organisation|orderliness|methodicalness +system administrator|1 +(noun)|supervisor|computer user +system call|1 +(noun)|supervisor call instruction|call +system clock|2 +(noun)|clock +(noun)|electronic device +system command|1 +(noun)|direction|instruction +system error|1 +(noun)|instruction|command|statement|program line +system of logic|1 +(noun)|logic|logical system|system|system of rules +system of macrophages|1 +(noun)|mononuclear phagocyte system|MPS|system +system of measurement|1 +(noun)|metric|measure|quantity|amount +system of numeration|1 +(noun)|numeration system|number system|number representation system|mathematical notation +system of rules|1 +(noun)|system|method +system of weights|1 +(noun)|weight|system of measurement|metric +system of weights and measures|1 +(noun)|system of measurement|metric +system program|1 +(noun)|systems program|systems software|program|programme|computer program|computer programme +systema alimentarium|1 +(noun)|digestive system|gastrointestinal system|systema digestorium|system +systema digestorium|1 +(noun)|digestive system|gastrointestinal system|systema alimentarium|system +systema lymphaticum|1 +(noun)|lymphatic system|vascular system +systema nervosum|1 +(noun)|nervous system|system +systema nervosum centrale|1 +(noun)|central nervous system|CNS|system +systema nervosum periphericum|1 +(noun)|peripheral nervous system|system +systema respiratorium|1 +(noun)|respiratory system|system +systema skeletale|1 +(noun)|skeletal system|skeleton|frame|system +systema urogenitale|1 +(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|apparatus urogenitalis|system +systematic|2 +(adj)|systematic |in order|so|systematized|systematised|tabular|organized|regular +(adj)|orderly|nonrandom +systematic desensitisation|1 +(noun)|desensitization technique|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitization|behavior therapy|behavior modification +systematic desensitization|1 +(noun)|desensitization technique|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitisation|behavior therapy|behavior modification +systematically|1 +(adv)|consistently +systematics|1 +(noun)|science|scientific discipline +systematisation|1 +(noun)|systematization|rationalization|rationalisation|organization|organisation +systematise|1 +(verb)|systematize|systemize|systemise|order +systematised|1 +(adj)|systematized|systematic +systematiser|1 +(noun)|orderer|systematizer|systemizer|systemiser|systematist|organizer|organiser|arranger +systematism|1 +(noun)|practice|pattern +systematist|2 +(noun)|taxonomist|taxonomer|biologist|life scientist +(noun)|orderer|systematizer|systematiser|systemizer|systemiser|organizer|organiser|arranger +systematization|1 +(noun)|systematisation|rationalization|rationalisation|organization|organisation +systematize|1 +(verb)|systematise|systemize|systemise|order +systematized|1 +(adj)|systematised|systematic +systematizer|1 +(noun)|orderer|systematiser|systemizer|systemiser|systematist|organizer|organiser|arranger +systeme international|1 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +systeme international d'unites|1 +(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system +systemic|1 +(adj)|general +systemic circulation|1 +(noun)|circulation +systemic lupus erythematosus|1 +(noun)|SLE|disseminated lupus erythematosus|lupus +systemise|1 +(verb)|systematize|systematise|systemize|order +systemiser|1 +(noun)|orderer|systematizer|systematiser|systemizer|systematist|organizer|organiser|arranger +systemize|1 +(verb)|systematize|systematise|systemise|order +systemizer|1 +(noun)|orderer|systematizer|systematiser|systemiser|systematist|organizer|organiser|arranger +systems analysis|1 +(noun)|analysis|analytic thinking +systems analyst|1 +(noun)|analyst +systems program|2 +(noun)|system program|systems software|program|programme|computer program|computer programme +(noun)|system program|systems software|program|programme|computer program|computer programme +systems software|1 +(noun)|system program|systems program|program|programme|computer program|computer programme +systole|1 +(noun)|pulse|pulsation|heartbeat|beat +systolic|1 +(adj)|pulse|pulsation|heartbeat|beat +systolic murmur|1 +(noun)|heart murmur|cardiac murmur|murmur +systolic pressure|1 +(noun)|blood pressure +syzygium|1 +(noun)|Syzygium|genus Syzygium|dicot genus|magnoliopsid genus +syzygium aromaticum|1 +(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree +syzygy|1 +(noun)|physical phenomenon +szechuan|1 +(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state|province +szechwan|1 +(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state|province +szechwan province|1 +(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state|province +szell|1 +(noun)|Szell|George Szell|conductor|music director|director +szent-gyorgyi|1 +(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist +szilard|1 +(noun)|Szilard|Leo Szilard|nuclear physicist|molecular biologist +t|7 +(noun)|thymine|T|pyrimidine +(noun)|deoxythymidine monophosphate|T|nucleotide +(noun)|metric ton|MT|tonne|metric weight unit|weight unit +(noun)|terabyte|T|TB|computer memory unit +(noun)|T|letter|letter of the alphabet|alphabetic character +(noun)|triiodothyronine|liothyronine|T|thyroid hormone +(noun)|thyroxine|thyroxin|tetraiodothyronine|T|thyroid hormone +t'ai chi|1 +(noun)|tai chi|t'ai chi chuan|tai chi chuan|martial art +t'ai chi chuan|1 +(noun)|t'ai chi|tai chi|tai chi chuan|martial art +t'ien-ching|1 +(noun)|Tianjin|Tientsin|T'ien-ching|city|metropolis|urban center +t-bar|1 +(noun)|T-bar lift|T-bar|Alpine lift|surface lift +t-bar lift|1 +(noun)|T-bar lift|T-bar|Alpine lift|surface lift +t-bill|1 +(noun)|Treasury bill|T-bill|Treasuries|Treasury obligations +t-bone steak|1 +(noun)|T-bone steak|beefsteak +t-junction|1 +(noun)|T-junction|junction +t-man|1 +(noun)|T-man|government agent +t-network|1 +(noun)|T-network|circuit|electrical circuit|electric circuit +t-scope|1 +(noun)|tachistoscope|scientific instrument +t-shaped|1 +(adj)|T-shaped|formed +t-shirt|1 +(noun)|jersey|T-shirt|tee shirt|shirt +t-square|1 +(noun)|T-square|square|drafting instrument +t. e. lawrence|1 +(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier|writer|author +t. h. white|1 +(noun)|White|T. H. White|Theodore Harold White|journalist +t. s. eliot|1 +(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet|dramatist|playwright +t.b.|3 +(noun)|tuberculosis|TB|T.B.|infectious disease +(noun)|terbium|Tb|atomic number 65|metallic element|metal +(noun)|terabyte|T|TB|computer memory unit +t cell|1 +(noun)|T cell|T lymphocyte|lymphocyte|lymph cell +t hinge|1 +(noun)|tee hinge|T hinge|hinge|flexible joint +t lymphocyte|1 +(noun)|T cell|T lymphocyte|lymphocyte|lymph cell +ta|1 +(noun)|tantalum|Ta|atomic number 73|metallic element|metal +ta'ziyeh|1 +(noun)|Ta'ziyeh|music +taal|1 +(noun)|Afrikaans|Taal|the Taal|South African Dutch|Dutch +tab|5 +(noun)|check|chit|bill|account|invoice +(noun)|yellow journalism|tabloid|journalism|news media|fourth estate +(noun)|tab key|key +(noun)|strip|slip +(noun)|pill|lozenge|tablet|dose +tab key|1 +(noun)|tab|key +tabanidae|1 +(noun)|Tabanidae|family Tabanidae|arthropod family +tabard|1 +(noun)|tunic +tabasco|2 +(noun)|Tabasco|Tabasco sauce|hot sauce +(noun)|red pepper|hot pepper +tabasco pepper|1 +(noun)|hot pepper|tabasco plant|Capsicum frutescens|capsicum|pepper|capsicum pepper plant +tabasco plant|1 +(noun)|tabasco pepper|hot pepper|Capsicum frutescens|capsicum|pepper|capsicum pepper plant +tabasco sauce|1 +(noun)|Tabasco|Tabasco sauce|hot sauce +tabbouleh|1 +(noun)|tabooli|salad +tabby|3 +(adj)|brindled|brindle|brinded|patterned +(noun)|tabby cat|domestic cat|house cat|Felis domesticus|Felis catus +(noun)|queen|domestic cat|house cat|Felis domesticus|Felis catus +tabby cat|1 +(noun)|tabby|domestic cat|house cat|Felis domesticus|Felis catus +tabernacle|3 +(noun)|Tabernacle|Mormon Tabernacle|temple +(noun)|Tabernacle|sanctuary +(noun)|synagogue|temple|place of worship|house of prayer|house of God|house of worship +tabernacles|4 +(noun)|Succos|Sukkoth|Feast of Booths|Feast of Tabernacles|Tabernacles|Jewish holy day +(noun)|Tabernacle|Mormon Tabernacle|temple +(noun)|Tabernacle|sanctuary +(noun)|synagogue|temple|tabernacle|place of worship|house of prayer|house of God|house of worship +tabernaemontana|1 +(noun)|Tabernaemontana|genus Tabernaemontana|dicot genus|magnoliopsid genus +tabernaemontana divaricate|1 +(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub|bush +tabes|1 +(noun)|atrophy|wasting|wasting away +tabes dorsalis|1 +(noun)|locomotor ataxia|neurosyphilis +tabi|1 +(noun)|tabis|sock +tabis|2 +(noun)|tabi|sock +(noun)|tabi|sock +tablature|1 +(noun)|musical notation +table|7 +(noun)|tabular array|array +(noun)|furniture|piece of furniture|article of furniture +(noun)|furniture|piece of furniture|article of furniture +(noun)|mesa|tableland|plateau +(noun)|gathering|assemblage +(noun)|board|fare +(verb)|postpone|prorogue|hold over|put over|shelve|set back|defer|remit|put off|delay +table-mountain pine|1 +(noun)|prickly pine|hickory pine|Pinus pungens|pine|pine tree|true pine +table-tennis bat|1 +(noun)|table-tennis racquet|pingpong paddle|paddle +table-tennis racquet|1 +(noun)|table-tennis bat|pingpong paddle|paddle +table-tennis table|1 +(noun)|ping-pong table|pingpong table|table +table d'hote|2 +(adj)|table d'hote |prix fixe +(noun)|menu|bill of fare|card|carte du jour|carte +table game|1 +(noun)|game +table knife|1 +(noun)|knife|cutlery|eating utensil +table lamp|1 +(noun)|lamp +table lifting|1 +(noun)|table tipping|table tilting|table turning|psychic phenomena|psychic phenomenon|parapsychology +table linen|1 +(noun)|napery|linen +table mat|1 +(noun)|hot pad|pad +table mustard|1 +(noun)|mustard|condiment +table napkin|1 +(noun)|napkin|serviette|table linen|napery +table of contents|1 +(noun)|contents|list|listing|table|tabular array +table rapping|1 +(noun)|table tapping|spirit rapping|psychic phenomena|psychic phenomenon|parapsychology +table salt|1 +(noun)|salt|common salt|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +table service|1 +(noun)|service|tableware +table talk|1 +(noun)|conversation +table tapping|1 +(noun)|table rapping|spirit rapping|psychic phenomena|psychic phenomenon|parapsychology +table tennis|1 +(noun)|Ping-Pong|table game +table tilting|1 +(noun)|table tipping|table turning|table lifting|psychic phenomena|psychic phenomenon|parapsychology +table tipping|1 +(noun)|table tilting|table turning|table lifting|psychic phenomena|psychic phenomenon|parapsychology +table turning|1 +(noun)|table tipping|table tilting|table lifting|psychic phenomena|psychic phenomenon|parapsychology +table wine|1 +(noun)|wine|vino +tableau|2 +(noun)|tableau vivant|arrangement +(noun)|view|aspect|prospect|scene|vista|panorama +tableau vivant|1 +(noun)|tableau|arrangement +tablecloth|1 +(noun)|table linen|napery +tablefork|1 +(noun)|fork +tableland|1 +(noun)|plateau|highland|upland +tablemate|1 +(noun)|dining companion|diner +tablespoon|2 +(noun)|tablespoonful|containerful +(noun)|spoon +tablespoonful|1 +(noun)|tablespoon|containerful +tablet|4 +(noun)|slab +(noun)|pad|pad of paper|paper +(noun)|cake|bar +(noun)|pill|lozenge|tab|dose +tablet-armed chair|1 +(noun)|chair +tabletop|1 +(noun)|work surface +tableware|1 +(noun)|ware +tabloid|2 +(noun)|yellow journalism|tab|journalism|news media|fourth estate +(noun)|rag|sheet|newspaper|paper +taboo|5 +(adj)|forbidden|out|prohibited|proscribed|tabu|verboten|impermissible +(adj)|tabu|sacred +(noun)|tabu|bias|prejudice|preconception +(noun)|tabu|inhibition +(verb)|restrict +tabooli|1 +(noun)|tabbouleh|salad +tabor|1 +(noun)|tabour|drum|membranophone|tympan +tabor pipe|1 +(noun)|pipe|wind instrument|wind +tabora|1 +(noun)|Tabora|city|metropolis|urban center +taboret|1 +(noun)|tabouret|stool +tabour|1 +(noun)|tabor|drum|membranophone|tympan +tabouret|1 +(noun)|taboret|stool +tabriz|1 +(noun)|Tabriz|city|metropolis|urban center +tabu|4 +(adj)|taboo|sacred +(adj)|forbidden|out|prohibited|proscribed|taboo|verboten|impermissible +(noun)|taboo|bias|prejudice|preconception +(noun)|taboo|inhibition +tabuk|1 +(noun)|Tabuk|city|metropolis|urban center +tabula rasa|2 +(noun)|mind|head|brain|psyche|nous +(noun)|fresh start|clean slate|opportunity|chance +tabular|2 +(adj)|systematic +(adj)|planar |two-dimensional +tabular array|1 +(noun)|table|array +tabular matter|1 +(noun)|tabulation|information|info +tabularise|1 +(verb)|tabularize|tabulate|arrange|set +tabularize|1 +(verb)|tabularise|tabulate|arrange|set +tabulate|2 +(verb)|tabularize|tabularise|arrange|set +(verb)|shape|form +tabulation|2 +(noun)|tabular matter|information|info +(noun)|investigation|investigating +tabulator|1 +(noun)|counter|calculator|calculating machine +tabun|1 +(noun)|GA|organophosphate nerve agent +tacamahac|1 +(noun)|balsam poplar|hackmatack|Populus balsamifera|poplar|poplar tree +tacca|1 +(noun)|Tacca|genus Tacca|liliid monocot genus +tacca leontopetaloides|1 +(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb|herbaceous plant +tacca pinnatifida|1 +(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb|herbaceous plant +taccaceae|1 +(noun)|Taccaceae|family Taccaceae|liliid monocot family +tach|1 +(noun)|tachometer|measuring instrument|measuring system|measuring device +tacheometer|1 +(noun)|tachymeter|theodolite|transit +tachina fly|1 +(noun)|fly +tachinidae|1 +(noun)|Tachinidae|family Tachinidae|arthropod family +tachistoscope|1 +(noun)|t-scope|scientific instrument +tachogram|1 +(noun)|graph|graphical record +tachograph|1 +(noun)|tachometer|tach +tachometer|1 +(noun)|tach|measuring instrument|measuring system|measuring device +tachycardia|1 +(noun)|cardiac arrhythmia|arrhythmia +tachyglossidae|1 +(noun)|Tachyglossidae|family Tachyglossidae|mammal family +tachyglossus|1 +(noun)|Tachyglossus|genus Tachyglossus|mammal genus +tachylite|1 +(noun)|volcanic glass +tachymeter|1 +(noun)|tacheometer|theodolite|transit +tachypleus|1 +(noun)|Tachypleus|genus Tachypleus|arthropod genus +tacit|1 +(adj)|implied|silent|understood|implicit |inexplicit +tacit consent|1 +(noun)|connivance|secret approval|approval|commendation +taciturn|1 +(adj)|taciturn |reticent|untalkative|buttoned-up|concise|uncommunicative|incommunicative +taciturnity|1 +(noun)|reserve|reticence|uncommunicativeness +taciturnly|1 +(adv)|mutely|wordlessly|silently +tack|12 +(noun)|bearing|heading|aim +(noun)|nail +(noun)|stable gear|saddlery|gear|paraphernalia|appurtenances +(noun)|sheet|mainsheet|weather sheet|shroud|line +(noun)|tacking|change of course +(noun)|sailing +(verb)|fasten|fix|secure|tack on +(verb)|wear round|sail +(verb)|assemble|piece|put together|set up|tack together|join|bring together|make|create +(verb)|baste|sew|run up|sew together|stitch +(verb)|append|tag on|tack on|hang on|attach +(verb)|interchange|switch|alternate|flip|flip-flop|change by reversal|turn|reverse +tack hammer|1 +(noun)|hammer +tack on|1 +(verb)|append|tag on|tack|hang on|attach +tack together|1 +(verb)|assemble|piece|put together|set up|tack|join|bring together|make|create +tacker|3 +(noun)|worker +(noun)|baster|sewer +(noun)|staple gun|staplegun|machine +tackiness|1 +(noun)|cheapness|tat|sleaze|tastelessness +tacking|2 +(noun)|baste|basting|stitch +(noun)|tack|change of course +tackle|8 +(noun)|lineman +(noun)|rigging|gear|paraphernalia|appurtenances +(noun)|fishing gear|fishing tackle|fishing rig|rig|gear|paraphernalia|appurtenances +(noun)|lineman +(noun)|football play +(verb)|undertake|take on|confront|face up|face +(verb)|harness|attach +(verb)|attack|aggress +tackler|1 +(noun)|football player|footballer +tackling|1 +(noun)|braving|confronting|coping with|grappling|attempt|effort|endeavor|endeavour|try +tacky|2 +(adj)|wet +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tatty|tawdry|trashy|tasteless +taco|2 +(noun)|greaser|wetback|Mexican +(noun)|dish +taco sauce|1 +(noun)|condiment +tacoma|1 +(noun)|Tacoma|city|metropolis|urban center +tacoma narrows bridge|1 +(noun)|Tacoma Narrows Bridge|suspension bridge +taconite|1 +(noun)|chert|iron ore +tact|1 +(noun)|tactfulness|consideration|considerateness|thoughtfulness +tactful|2 +(adj)|tactful |discerning|discreet|considerate +(adj)|kid-glove|diplomatic |diplomatical +tactfulness|1 +(noun)|tact|consideration|considerateness|thoughtfulness +tactic|1 +(noun)|maneuver|manoeuvre|plan of action +tactical|1 +(adj)|plan of action|military science +tactical intelligence|1 +(noun)|combat intelligence|intelligence|intelligence activity|intelligence operation +tactical maneuver|1 +(noun)|maneuver|manoeuvre|tactical manoeuvre|move +tactical manoeuvre|1 +(noun)|maneuver|manoeuvre|tactical maneuver|move +tactical warning|1 +(noun)|warning +tactician|1 +(noun)|planner|contriver|deviser +tactics|2 +(noun)|military science +(noun)|tactic|maneuver|manoeuvre|plan of action +tactile|2 +(adj)|haptic|tactual|somatosense|exteroception|perception +(adj)|tactual|tangible +tactile agnosia|1 +(noun)|astereognosis|agnosia +tactile property|1 +(noun)|feel|property +tactile sensation|1 +(noun)|touch|touch sensation|tactual sensation|feeling|perception +tactility|1 +(noun)|tactual sensation|touch perception|skin perceptiveness|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +tactless|3 +(adj)|tactless |untactful|inconsiderate|inelegant +(adj)|undiplomatic|impolitic +(adj)|inept|maladroit +tactlessness|1 +(noun)|inconsideration|inconsiderateness|thoughtlessness +tactual|2 +(adj)|haptic|tactile|somatosense|exteroception|perception +(adj)|tactile|tangible +tactual exploration|1 +(noun)|palpation|examination|scrutiny|touch|touching +tactual sensation|2 +(noun)|touch|touch sensation|tactile sensation|feeling|perception +(noun)|tactility|touch perception|skin perceptiveness|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +tactually|1 +(adv)|haptically +tad|1 +(noun)|shade|small indefinite quantity|small indefinite amount +tadarida|1 +(noun)|Tadarida|genus Tadarida|mammal genus +tadarida brasiliensis|1 +(noun)|guano bat|Mexican freetail bat|Tadarida brasiliensis|freetail|free-tailed bat|freetailed bat +tadeus reichstein|1 +(noun)|Reichstein|Tadeus Reichstein|chemist +tadeusz andrzej bonawentura kosciuszko|1 +(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot|nationalist|soldier +tadirida femorosacca|1 +(noun)|pocketed bat|pocketed freetail bat|Tadirida femorosacca|freetail|free-tailed bat|freetailed bat +tadjik|1 +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +tadorna|1 +(noun)|Tadorna|genus Tadorna|bird genus +tadpole|1 +(noun)|polliwog|pollywog|larva +tadpole shrimp|1 +(noun)|branchiopod crustacean|branchiopod|branchiopodan +tadzhik|4 +(noun)|Tajik|Tadzhik|Asian|Asiatic +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +(noun)|Tajik|Tadzhik|ethnic group|ethnos +(noun)|Tajiki|Tajik|Tadzhik|Iranian|Iranian language +tadzhikistan|1 +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +tae kwon do|1 +(noun)|martial art +taegu|1 +(noun)|Taegu|Tegu|city|metropolis|urban center +tael|1 +(noun)|weight unit|weight +taenia|2 +(noun)|tenia|fillet|headband +(noun)|tapeworm|cestode +taeniidae|1 +(noun)|Taeniidae|family Taeniidae|worm family +taffeta|1 +(noun)|fabric|cloth|material|textile +taffeta weave|1 +(noun)|plain weave|weave +taffrail|1 +(noun)|railing|rail +taffrail log|1 +(noun)|patent log|screw log|log +taffy|1 +(noun)|candy +taffy apple|1 +(noun)|candied apple|candy apple|caramel apple|toffee apple|sweet|confection|confectionery +taft|2 +(noun)|Taft|Lorado Taft|sculptor|sculpturer|carver|statue maker +(noun)|Taft|William Howard Taft|President Taft|President of the United States|United States President|President|Chief Executive +tag|9 +(noun)|label +(noun)|rag|shred|tag end|tatter|piece of cloth|piece of material +(noun)|child's game +(noun)|touch|touching +(verb)|label|mark|attach +(verb)|touch +(verb)|name|call +(verb)|chase|chase after|trail|tail|give chase|dog|go after|track|pursue|follow|tag along +(verb)|rhyme|rime +tag along|1 +(verb)|accompany +tag end|1 +(noun)|rag|shred|tag|tatter|piece of cloth|piece of material +tag line|1 +(noun)|punch line|laugh line|gag line|line +tag on|1 +(verb)|append|tack on|tack|hang on|attach +tagalog|2 +(noun)|Tagalog|Filipino +(noun)|Tagalog|Philippine|Filipino +tagalong|1 +(noun)|hanger-on|follower +tagamet|1 +(noun)|cimetidine|Tagamet|histamine blocker|antacid|gastric antacid|alkalizer|alkaliser|antiacid +tagasaste|1 +(noun)|Chamaecytisus palmensis|Cytesis proliferus|shrub|bush +tagetes erecta|1 +(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold +tagetes patula|1 +(noun)|French marigold|Tagetes patula|marigold +tageteste|1 +(noun)|Tageteste|genus Tagetes|asterid dicot genus +tagged|1 +(adj)|labeled |labelled +tagliatelle|1 +(noun)|pasta|alimentary paste +taguan|1 +(noun)|flying marmot|flying cat|Petaurista petaurista|Asiatic flying squirrel +tagus|1 +(noun)|Tagus|Tagus River|river +tagus river|1 +(noun)|Tagus|Tagus River|river +tahini|1 +(noun)|spread|paste +tahiti|1 +(noun)|Tahiti|island +tahitian|3 +(adj)|Tahitian|island +(noun)|Tahitian|Polynesian +(noun)|Tahitian|Oceanic|Eastern Malayo-Polynesian +tahoka daisy|1 +(noun)|tansy leaf aster|Machaeranthera tanacetifolia|wildflower|wild flower +tai|5 +(adj)|Thai|Tai|Siamese|Asian|Asiatic +(adj)|Thai|Tai|Siamese|Tai +(adj)|Thai|Tai|Siamese|Asian country|Asian nation +(noun)|Thai|Tai|Siamese|Asian|Asiatic +(noun)|Tai|Kadai|Kam-Tai|Kadai language +tai chi|1 +(noun)|t'ai chi|t'ai chi chuan|tai chi chuan|martial art +tai chi chuan|1 +(noun)|t'ai chi|tai chi|t'ai chi chuan|martial art +tai dam|1 +(noun)|Tai Dam|Black Tai|Tai +tai long|1 +(noun)|Tai Long|Shan|Tai +tai lue|1 +(noun)|Tai Lue|Xishuangbanna Dai|Tai +tai nuea|1 +(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai +tai yuan|2 +(noun)|Tai Yuan|Kam Muang|Tai +(noun)|Taiyuan|city|metropolis|urban center +taichung|1 +(noun)|Taichung|city|metropolis|urban center +taif|1 +(noun)|Taif|city|metropolis|urban center +tail|11 +(noun)|process|outgrowth|appendage +(noun)|fag end|tail end|end|ending +(noun)|tail end|projection +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|shadow|shadower|follower|spy +(noun)|reverse|verso +(noun)|tail assembly|empennage|rear|back +(noun)|stern|after part|quarter|poop|rear|back +(verb)|chase|chase after|trail|tag|give chase|dog|go after|track|pursue|follow +(verb)|dock|bob|cut +(verb)|top|pinch +tail-flower|2 +(noun)|anthurium|tailflower|houseplant +(noun)| +tail assembly|1 +(noun)|tail|empennage|rear|back +tail bone|1 +(noun)|coccyx|bone|os +tail coat|2 +(noun)|dress suit|full dress|tailcoat|tails|white tie|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +(noun)| +tail end|3 +(noun)|fag end|tail|end|ending +(noun)|tail|projection +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +tail feather|1 +(noun)|flight feather|pinion|quill|quill feather +tail fin|4 +(noun)|vertical stabilizer|vertical stabiliser|vertical fin|tailfin|stabilizer +(noun)|tailfin|fin|decoration|ornament|ornamentation +(noun)|caudal fin|fin +(noun)| +tail gate|2 +(noun)|gate +(noun)|tailgate|tailboard|gate +tail lamp|1 +(noun)|taillight|rear light|rear lamp|lamp +tail rotor|1 +(noun)|anti-torque rotor|rotor +tailback|2 +(noun)|back +(noun)|back +tailboard|1 +(noun)|tailgate|gate +tailcoat|1 +(noun)|dress suit|full dress|tail coat|tails|white tie|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +tailed|1 +(adj)|caudate |caudated +tailed frog|1 +(noun)|bell toad|ribbed toad|tailed toad|Ascaphus trui|frog|toad|toad frog|anuran|batrachian|salientian +tailed toad|1 +(noun)|tailed frog|bell toad|ribbed toad|Ascaphus trui|frog|toad|toad frog|anuran|batrachian|salientian +tailfin|2 +(noun)|vertical stabilizer|vertical stabiliser|vertical fin|tail fin|stabilizer +(noun)|tail fin|fin|decoration|ornament|ornamentation +tailflower|1 +(noun)|anthurium|tail-flower|houseplant +tailgate|2 +(noun)|tailboard|gate +(verb)|follow +tailgater|1 +(noun)|driver +tailing|2 +(adj)|shadowing|following +(noun)|shadowing|pursuit|chase|following +tailless|1 +(adj)|anurous|acaudate |acaudal +tailless tenrec|1 +(noun)|Tenrec ecaudatus|tenrec|tendrac +taillight|1 +(noun)|tail lamp|rear light|rear lamp|lamp +taillike|1 +(adj)|caudal|caudate |caudated +tailor|4 +(noun)|seamster|sartor|garmentmaker|garment-worker|garment worker +(verb)|shoehorn|adapt|accommodate +(verb)|cut|design +(verb)|sew|tailor-make|fashion|forge +tailor's chalk|1 +(noun)|chalk +tailor's tack|1 +(noun)|stitch +tailor-made|1 +(adj)|bespoke|bespoken|made-to-order|tailored|custom-made |customized|custom|customised +tailor-make|2 +(verb)|sew|tailor|fashion|forge +(verb)|custom-make|customize|customise|produce|make|create +tailorbird|1 +(noun)|Orthotomus sutorius|Old World warbler|true warbler +tailored|2 +(adj)|trim|plain +(adj)|bespoke|bespoken|made-to-order|tailor-made|custom-made |customized|custom|customised +tailoring|1 +(noun)|trade|craft +tailpiece|1 +(noun)|appendage +tailpipe|1 +(noun)|pipe|pipage|piping +tailplane|1 +(noun)|horizontal stabilizer|horizontal stabiliser|airfoil|aerofoil|control surface|surface +tailrace|1 +(noun)|watercourse|waterway +tails|9 +(noun)|dress suit|full dress|tailcoat|tail coat|white tie|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +(noun)|tail|process|outgrowth|appendage +(noun)|fag end|tail|tail end|end|ending +(noun)|tail|tail end|projection +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|tush|bottom|behind|derriere|fanny|ass|body part +(noun)|tail|shadow|shadower|follower|spy +(noun)|tail|reverse|verso +(noun)|tail|tail assembly|empennage|rear|back +(noun)|stern|after part|quarter|poop|tail|rear|back +tailspin|2 +(noun)|agitation +(noun)|spin|acrobatics|aerobatics|stunting|stunt flying +tailstock|1 +(noun)|support +tailwind|1 +(noun)|wind|air current|current of air +tailwort|1 +(noun)|borage|Borago officinalis|herb|herbaceous plant +taimyr peninsula|1 +(noun)|Taimyr Peninsula|Taymyr Peninsula|peninsula +taint|3 +(noun)|contamination|impurity|impureness +(verb)|defile|sully|corrupt|cloud|mar|impair|spoil|deflower|vitiate +(verb)|infect|pollute|foul|contaminate +tainted|2 +(adj)|corrupt|rotten +(adj)|besmirched|damaged|flyblown|spotted|stained|sullied|tarnished|blemished +taipan|1 +(noun)|Oxyuranus scutellatus|elapid|elapid snake +taipeh|1 +(noun)|Taipei|Taipeh|capital of Taiwan|national capital +taipei|1 +(noun)|Taipei|Taipeh|capital of Taiwan|national capital +taira|1 +(noun)|tayra|Eira barbara|musteline mammal|mustelid|musteline +taiwan|2 +(noun)|Taiwan|China|Nationalist China|Republic of China|island +(noun)|Taiwan|Formosa|island +taiwan dollar|1 +(noun)|Taiwan dollar|dollar +taiwanese|3 +(adj)|Taiwanese|Chinese|Formosan|island +(noun)|Taiwanese|Asian|Asiatic +(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese +taiyuan|1 +(noun)|Taiyuan|city|metropolis|urban center +taj mahal|1 +(noun)|Taj Mahal|mausoleum +tajik|4 +(noun)|Tajik|Tadzhik|Asian|Asiatic +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +(noun)|Tajik|Tadzhik|ethnic group|ethnos +(noun)|Tajiki|Tajik|Tadzhik|Iranian|Iranian language +tajiki|1 +(noun)|Tajiki|Tajik|Tadzhik|Iranian|Iranian language +tajikistan|1 +(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country|Asian nation +tajikistani|1 +(adj)|Tajikistani|Asian country|Asian nation +tajikistani monetary unit|1 +(noun)|Tajikistani monetary unit|monetary unit +taka|1 +(noun)|Bangladeshi monetary unit +takahe|1 +(noun)|notornis|Notornis mantelli|rail +takakkaw|1 +(noun)|Takakkaw|waterfall|falls +takayasu's arteritis|1 +(noun)|Takayasu's arteritis|pulseless disease|arteritis +take|41 +(noun)|return|issue|proceeds|takings|yield|payoff|income +(noun)|filming|cinematography|motion-picture photography +(verb)|act|move +(verb)|occupy|use up|use|expend +(verb)|lead|direct|conduct|guide +(verb)|get hold of|take in|take on|take up|take away|take in|take apart +(verb)|assume|acquire|adopt|take on|change +(verb)|read|interpret|construe|see +(verb)|bring|convey|transport|carry +(verb)|take out|take back|take in +(verb)|necessitate|ask|postulate|need|require|involve|call for|demand +(verb)|choose|select|pick out|decide|make up one's mind|determine +(verb)|use|utilize|utilise|apply|employ +(verb)|accept|have|get|acquire|take over|take over|take up|take in +(verb)|fill|work|do work +(verb)|consider|deal|look at|think about +(verb)|experience|receive|have|get|undergo +(verb)|film|shoot|record|enter|put down +(verb)|remove|take away|withdraw|take off +(verb)|consume|ingest|take in|have|take up2 +(verb)|undergo|submit|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +(verb)|accept +(verb)|assume|strike|take up|move +(verb)|accept|admit|take on|accept|have +(verb)|receive|get|find|obtain|incur +(verb)|learn|study|read +(verb)|claim|exact|necessitate|ask|postulate|need|require|involve|call for|demand +(verb)|make|head +(verb)|aim|train|take aim|direct|position +(verb)|become|go|get +(verb)|carry|pack|have|feature +(verb)|lease|rent|hire|charter|engage|get|acquire +(verb)|subscribe|subscribe to|buy|purchase +(verb)|buy|purchase|take out +(verb)|have|roll in the hay|love|make out|make love|sleep with|get laid|have sex|know|do it|be intimate|have intercourse|have it away|have it off|screw|fuck|jazz|eff|hump|lie with|bed|have a go at it|bang|get it on|bonk +(verb)|claim|affirm|verify|assert|avow|aver|swan|swear +(verb)|accept|be +(verb)|contain|hold|be +(verb)|drive|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|win +(verb)|contract|get|sicken|come down +take-away|1 +(adj)|takeout|portable +take-home|1 +(adj)|net |nett +take-home pay|1 +(noun)|wage|pay|earnings|remuneration|salary +take-in|1 +(noun)|deception|deceit|dissembling|dissimulation +take-up|2 +(noun)|device +(noun)|tightening +take a bow|2 +(verb)|accept +(verb)|bow +take a breath|1 +(verb)|breathe|respire|suspire +take a breather|1 +(verb)|rest|breathe|catch one's breath|pause|intermit|break +take a chance|1 +(verb)|gamble|chance|risk|hazard|take chances|adventure|run a risk|try|seek|attempt|essay|assay +take a crap|1 +(verb)|stool|defecate|shit|take a shit|ca-ca|crap|make|excrete|egest|eliminate|pass +take a dare|1 +(verb)|pick up the gauntlet|try|seek|attempt|essay|assay +take a dive|1 +(verb)|feign|sham|pretend|affect|dissemble +take a firm stand|1 +(verb)|insist +take a hit|1 +(verb)|snort|drug|do drugs +take a hop|1 +(verb)|bounce|resile|spring|bound|rebound|recoil|reverberate|ricochet|jump|leap|bound|spring +take a joke|1 +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +take a leak|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +take a look|1 +(verb)|have a look|get a load|look +take a powder|1 +(verb)|skip town|disappear|vanish|go away +take a shit|1 +(verb)|stool|defecate|shit|take a crap|ca-ca|crap|make|excrete|egest|eliminate|pass +take aback|1 +(verb)|shock|stun|floor|ball over|blow out of the water|surprise +take account|1 +(verb)|appreciate|understand|realize|realise|see +take advantage|2 +(verb)|capitalize|capitalise|profit|gain|benefit +(verb)|trespass|use +take after|2 +(verb)|resemble +(verb)|follow|imitate|copy|simulate +take aim|1 +(verb)|aim|take|train|direct|position +take apart|3 +(verb)|disassemble|dismantle|break up|break apart|destroy|destruct +(verb)|dismember|discerp|separate|divide|part +(verb)|analyze|analyse|break down|dissect +take arms|1 +(verb)|go to war|take up arms|war +take away|7 +(verb)|bear off|bear away|carry away|carry off|remove|take|withdraw +(verb)|remove|take|withdraw +(verb)|take out|remove|take|withdraw +(verb)|take +(verb)|take out|eat +(verb)|remove +(verb)|detract|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +take back|6 +(verb)|return|bring back|bring|convey|take +(verb)|repossess|take +(verb)|relate +(verb)|move|displace +(verb)|swallow|unsay|withdraw|renounce|repudiate +(verb)|remind +take care|3 +(verb)|act|move +(verb)|mind|manage|deal|care|handle +(verb)|attend|look|see|care|give care +take chances|1 +(verb)|gamble|chance|risk|hazard|adventure|run a risk|take a chance|try|seek|attempt|essay|assay +take charge|1 +(verb)|take hold|take control|head|lead +take control|1 +(verb)|take hold|take charge|head|lead +take down|4 +(verb)|lower|let down|get down|bring down|move|displace +(verb)|degrade|disgrace|demean|put down|humiliate|mortify|chagrin|humble|abase +(verb)|level|raze|rase|dismantle|tear down|pull down|destroy|destruct +(verb)|note|write down|set down|get down|put down +take effect|1 +(verb)|become|go|get +take exception|1 +(verb)|challenge|object +take fire|1 +(verb)|erupt|ignite|catch fire|combust|conflagrate|change state|turn +take five|1 +(verb)|pause|intermit|break +take flight|1 +(verb)|flee|fly|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away +take for|1 +(verb)|deem|hold|view as|see|consider|reckon|view|regard +take for granted|1 +(verb)|assume|presume|expect|anticipate +take form|1 +(verb)|form|take shape|spring|become +take heart|1 +(verb)|buck up|cheer|hearten|recreate|embolden +take heed|1 +(verb)|listen|hear|concentrate|focus|center|centre|pore|rivet +take hold|2 +(verb)|take charge|take control|head|lead +(verb)|hold +take hold of|1 +(verb)|catch|grab|seize|prehend|clutch +take home|1 +(verb)|bring home|gain|take in|clear|make|earn|realize|realise|pull in|bring in +take in|17 +(verb)|house|put up|domiciliate +(verb)|gull|dupe|slang|befool|cod|fool|put on|put one over|put one across|deceive|betray|lead astray +(verb)|absorb +(verb)|visit|see +(verb)|collect|take +(verb)|watch|view|see|catch|watch +(verb)|receive|invite +(verb)|gather in|roll up|furl +(verb)|absorb|assimilate|ingest|learn|larn|acquire +(verb)|gain|clear|make|earn|realize|realise|pull in|bring in|get|acquire +(verb)|catch|overhear|hear +(verb)|take up|receive|have +(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take up +(verb)|sop up|suck in|take up|consume|ingest|take|have +(verb)|consume|ingest|take|have +(verb)|adopt|take +(verb)|change|alter|vary +take in charge|1 +(verb)|undertake|accept|consent|go for +take in vain|1 +(verb)|pervert|misuse|abuse +take in water|1 +(verb)|bilge|leak +take into account|1 +(verb)|allow|calculate|estimate|reckon|count on|figure|forecast +take issue|1 +(verb)|disagree|differ|dissent +take it easy|1 +(verb)|sit back|relax|loosen up|unbend|unwind|decompress|slow down +take it on the chin|1 +(verb)|fail|go wrong|miscarry +take kindly to|1 +(verb)|tend|be given|lean|incline|run +take leave|1 +(verb)|depart|quit|leave|go forth|go away +take lying down|1 +(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +take note|1 +(verb)|note|observe +take notice|1 +(verb)|notice|mark|note +take off|9 +(verb)|depart|part|start|start out|set forth|set off|set out|leave|go forth|go away +(verb)|remove|take|take away|withdraw +(verb)|lift off|depart|part|start|start out|set forth|set off|set out +(verb)|take time off|interrupt|disrupt|break up|cut off +(verb)|imitate|copy|simulate +(verb)|undress|discase|uncase|unclothe|strip|strip down|disrobe|peel +(verb)|get off the ground|start|go|get going +(verb)|kill +(verb)|subtract|deduct|calculate|cipher|cypher|compute|work out|reckon|figure +take office|1 +(verb)|start|take up +take on|5 +(verb)|assume|acquire|adopt|take|change +(verb)|assume|adopt|take over|take office +(verb)|undertake|tackle|confront|face up|face +(verb)|accept|admit|take|accept|take|have +(verb)|meet|encounter|play +take one's lumps|1 +(verb)|get one's lumps|pay +take orders|1 +(verb)|obey +take out|14 +(verb)|move out|remove +(verb)|unpack|remove|take|take away|withdraw +(verb)|take away|remove|take|take away|withdraw +(verb)|obtain +(verb)|ask out|invite out|request|bespeak|call for|quest +(verb)|remove|take|take away|withdraw +(verb)|buy food|buy|purchase +(verb)|withdraw|draw|draw off|remove|take|take away|withdraw +(verb)|draw|pull|pull out|get out|remove|take|take away|withdraw +(verb)|draw|remove|take|take away|withdraw +(verb)|extract|pull out|pull|pull up|draw out|remove|take|take away|withdraw +(verb)|take away|eat +(verb)|excerpt|extract|choose|take|select|pick out +(verb)|exclude|except|leave out|leave off|omit|eliminate|get rid of|do away with +take over|8 +(verb)|assume|usurp|seize|arrogate|take +(verb)|assume|adopt|take on|take office +(verb)|relieve|free|discharge +(verb)|bear|accept|assume|take +(verb)|buy out|buy up|buy|purchase +(verb)|repeat|act|move +(verb)|adopt|borrow|take up|accept|take|have +(verb)|absorb|fund +take pains|1 +(verb)|be at pains|endeavor|endeavour|strive +take part|1 +(verb)|participate|act|move +take place|1 +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about +take pride|1 +(verb)|pride oneself|feel|experience +take root|1 +(verb)|settle|root|steady down|settle down|stabilize|stabilise +take shape|1 +(verb)|form|take form|spring|become +take stage|1 +(verb)|take the stage +take stock|1 +(verb)|size up|scrutinize|scrutinise|examine|see +take ten|1 +(verb)|pause|intermit|break +take the air|1 +(verb)|walk|travel|go|move|locomote +take the bull by the horns|1 +(verb)|confront|face +take the cake|1 +(verb)|win +take the count|1 +(verb)|remain down|lose +take the field|2 +(verb)|campaign +(verb)|enter|come in|get into|get in|go into|go in|move into +take the fifth|1 +(verb)|take the Fifth|take the Fifth Amendment|declare +take the fifth amendment|1 +(verb)|take the Fifth|take the Fifth Amendment|declare +take the floor|1 +(verb)|arise|rise|uprise|get up|stand up +take the road|1 +(verb)|tour +take the stage|1 +(verb)|take stage +take the stand|1 +(verb)|testify|attest|bear witness|declare +take the veil|1 +(verb)|profess +take time by the forelock|1 +(verb)|act|move +take time off|1 +(verb)|take off|interrupt|disrupt|break up|cut off +take to|1 +(verb)|fancy|go for|desire|want +take to be|1 +(verb)|think of|repute|regard as|look upon|look on|esteem|think|believe|consider|conceive +take to heart|1 +(verb)|attend to|mind|bear in mind +take to the woods|1 +(verb)|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|escape|fly the coop|break away|leave|go forth|go away +take turns|1 +(verb)|alternate|act|move +take up|13 +(verb)|embark|enter +(verb)|latch on|fasten on|hook on|seize on|espouse|embrace|adopt|sweep up +(verb)|turn +(verb)|occupy|fill +(verb)|start +(verb)|adopt|borrow|take over|accept|take|have +(verb)|assume|take|strike|move +(verb)|sorb|change state|turn +(verb)|scoop|scoop out|lift out|scoop up|remove|take|take away|withdraw +(verb)|take in|receive|have +(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in +(verb)|take in|sop up|suck in|consume|ingest|take in|take|have +(verb)|resume|change +take up arms|1 +(verb)|go to war|take arms|war +take water|1 +(verb)|enter|come in|get into|get in|go into|go in|move into +takeaway|3 +(noun)|takeout|takeout food|convenience food +(noun)|concession +(noun)|maneuver|manoeuvre|play +takedown|2 +(noun)|fall|pin +(noun)|put-down|squelch|squelcher|derision +takelma|2 +(noun)|Takelma|Penutian +(noun)|Takilman|Takelma|Penutian +taken|3 +(adj)|interpreted|understood +(adj)|taken |appropriated|condemned|confiscate|confiscated|seized|taken over|assumed|arrogated|embezzled|expropriated|purloined|stolen|usurped +(adj)|affected +taken for granted|2 +(adj)|axiomatic|self-evident|obvious +(adj)|assumed|assumptive|acknowledged +taken over|1 +(adj)|appropriated|condemned|confiscate|confiscated|seized|taken +taken up|1 +(adj)|haunted|obsessed|preoccupied|concerned +taken with|1 +(adj)|crazy|dotty|gaga|enamored|infatuated|in love|smitten|soft on|loving +takeoff|4 +(noun)|departure|going|going away|leaving +(noun)|rise|rising|ascent|ascension +(noun)|parody|lampoon|spoof|sendup|mockery|burlesque|travesty|charade|pasquinade|put-on|caricature|imitation|impersonation +(noun)|parody|mockery|apery|mimicry +takeoff booster|1 +(noun)|booster|booster rocket|booster unit|multistage rocket|takeoff rocket|rocket|rocket engine +takeoff rocket|1 +(noun)|booster|booster rocket|booster unit|multistage rocket|takeoff booster|rocket|rocket engine +takeout|3 +(adj)|take-away|portable +(noun)|takeout food|takeaway|convenience food +(noun)|bid|bidding +takeout food|1 +(noun)|takeout|takeaway|convenience food +takeover|2 +(noun)|coup d'etat|coup|putsch|group action +(noun)|buyout +takeover arbitrage|1 +(noun)|risk arbitrage|arbitrage +takeover attempt|1 +(noun)|attempt|effort|endeavor|endeavour|try +takeover bid|1 +(noun)|tender offer +takeover target|1 +(noun)|target company|company +taker|2 +(noun)|customer|client +(noun)|bettor|better|wagerer|punter +takilman|1 +(noun)|Takilman|Takelma|Penutian +takin|1 +(noun)|gnu goat|Budorcas taxicolor|goat antelope +taking|2 +(adj)|fetching|winning|attractive +(noun)|pickings|action +taking apart|1 +(noun)|dismemberment|mutilation|torture|torturing +taking hold|1 +(noun)|grasping|seizing|prehension|control +taking into custody|1 +(noun)|apprehension|arrest|catch|collar|pinch|capture|gaining control|seizure +taking over|1 +(noun)|succession|acquisition +taking possession|1 +(noun)|occupation|occupancy|moving in|acquiring|getting +takings|2 +(noun)|return|issue|proceeds|take|yield|payoff|income +(noun)|pickings|taking|action +tala|1 +(noun)|Western Samoan monetary unit +talapoin|1 +(noun)|Cercopithecus talapoin|guenon|guenon monkey +talaria|1 +(noun)|sandal +talbot|1 +(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor|discoverer|artificer|photographer|lensman +talc|2 +(noun)|talcum|mineral +(verb)|powder +talcott parsons|1 +(noun)|Parsons|Talcott Parsons|sociologist +talcum|2 +(noun)|talc|mineral +(noun)|talcum powder|toilet powder|bath powder|dusting powder +talcum powder|1 +(noun)|talcum|toilet powder|bath powder|dusting powder +tale|2 +(noun)|narrative|narration|story|message|content|subject matter|substance +(noun)|fib|story|tarradiddle|taradiddle|lie|prevarication +taleban|1 +(noun)|Taliban|Taleban|religious movement +talebearer|1 +(noun)|tattletale|tattler|taleteller|telltale|blabbermouth|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +talebearing|1 +(adj)|blabbermouthed|leaky|tattling|communicative |communicatory +talent|2 +(noun)|endowment|gift|natural endowment|natural ability +(noun)|expert +talent agent|1 +(noun)|agent +talent scout|1 +(noun)|scout|recruiter +talented|1 +(adj)|gifted|precocious +talentlessness|1 +(noun)|inaptitude +taleteller|1 +(noun)|tattletale|tattler|talebearer|telltale|blabbermouth|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +taliban|1 +(noun)|Taliban|Taleban|religious movement +talinum|1 +(noun)|Talinum|genus Talinum|caryophylloid dicot genus +talinum augustissimum|1 +(noun)|narrow-leaved flame flower|Talinum augustissimum|flame flower|flame-flower|flameflower|Talinum aurantiacum +talinum aurantiacum|1 +(noun)|flame flower|flame-flower|flameflower|Talinum aurantiacum|wildflower|wild flower +talinum brevifolium|1 +(noun)|pigmy talinum|Talinum brevifolium|flame flower|flame-flower|flameflower|Talinum aurantiacum +talinum calycinum|1 +(noun)|rock pink|Talinum calycinum|flame flower|flame-flower|flameflower|Talinum aurantiacum +talinum paniculatum|1 +(noun)|jewels-of-opar|Talinum paniculatum|flame flower|flame-flower|flameflower|Talinum aurantiacum +talinum spinescens|1 +(noun)|spiny talinum|Talinum spinescens|flame flower|flame-flower|flameflower|Talinum aurantiacum +talipes|1 +(noun)|clubfoot|deformity|malformation|misshapenness +talipes calcaneus|1 +(noun)|clubfoot|talipes +talipes equinus|1 +(noun)|clubfoot|talipes +talipes valgus|1 +(noun)|clubfoot|talipes +talipot|1 +(noun)|talipot palm|Corypha umbraculifera|fan palm +talipot palm|1 +(noun)|talipot|Corypha umbraculifera|fan palm +talisman|1 +(noun)|amulet|charm|good luck charm +talismanic|1 +(adj)|supernatural +talk|11 +(noun)|talking|conversation +(noun)|discussion|treatment|discourse +(noun)|lecture|lecturing +(noun)|lecture|public lecture|address|speech +(noun)|talk of the town|gossip|comment|scuttlebutt +(verb)|speak|communicate|intercommunicate +(verb)|speak|utter|mouth|verbalize|verbalise|communicate|intercommunicate +(verb)|speak|communicate|intercommunicate +(verb)|spill|tell +(verb)|spill the beans|let the cat out of the bag|tattle|blab|peach|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +(verb)|lecture|teach|learn|instruct +talk about|2 +(verb)|discourse|discuss|cover|treat|handle|plow|deal|address +(verb)|talk of|talk|speak|utter|mouth|verbalize|verbalise +talk down|2 +(verb)|minimize|belittle|denigrate|derogate +(verb)|talk|speak +talk into|1 +(verb)|persuade +talk of|1 +(verb)|talk about|talk|speak|utter|mouth|verbalize|verbalise +talk of the town|1 +(noun)|talk|gossip|comment|scuttlebutt +talk out of|1 +(verb)|dissuade|deter +talk over|1 +(verb)|hash out|discuss|talk of|talk about +talk shop|1 +(verb)|discourse|talk about|discuss +talk show|1 +(noun)|chat show|broadcast|program|programme +talk terms|1 +(verb)|negociate|negotiate|hash out|discuss|talk over +talk turkey|1 +(verb)|talk|speak +talkative|3 +(adj)|chatty|gabby|garrulous|loquacious|talky|voluble +(adj)|bigmouthed|blabbermouthed|blabby|indiscreet +(adj)|expansive|communicative |communicatory +talkatively|1 +(adv)|loquaciously|garrulously|talkily +talkativeness|1 +(noun)|garrulity|garrulousness|loquaciousness|loquacity|communicativeness +talker|1 +(noun)|speaker|utterer|verbalizer|verbaliser|articulator +talker identification|1 +(noun)|speaker identification|recognition|identification +talkie|1 +(noun)|talking picture|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +talkily|1 +(adv)|loquaciously|garrulously|talkatively +talking|2 +(adj)|speaking +(noun)|talk|conversation +talking book|1 +(noun)|sound recording|audio recording +talking head|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +talking picture|1 +(noun)|talkie|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +talking point|1 +(noun)|point +talking to|1 +(noun)|lecture|speech|rebuke|reproof|reproval|reprehension|reprimand +talks|6 +(noun)|negotiation|dialogue|discussion|give-and-take|word +(noun)|talk|talking|conversation +(noun)|talk|discussion|treatment|discourse +(noun)|talk|lecture|lecturing +(noun)|lecture|public lecture|talk|address|speech +(noun)|talk|talk of the town|gossip|comment|scuttlebutt +talky|1 +(adj)|chatty|gabby|garrulous|loquacious|talkative|voluble +tall|4 +(adj)|tall |full-length|gangling|gangly|lanky|rangy|in height|leggy|long-legged|long-shanked|leggy|tall-growing|long|stately|statuesque|tallish|large|big|high +(adj)|grandiloquent|magniloquent|rhetorical +(adj)|difficult |hard +(adj)|improbable|marvelous|marvellous|incredible |unbelievable +tall-grass|2 +(noun)|tallgrass|grass +(noun)| +tall-growing|1 +(adj)|leggy|tall +tall bellflower|1 +(noun)|Campanula americana|campanula|bellflower +tall bilberry|1 +(noun)|high-bush blueberry|swamp blueberry|Vaccinium corymbosum|blueberry|blueberry bush +tall buttercup|1 +(noun)|meadow buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +tall crowfoot|1 +(noun)|meadow buttercup|tall buttercup|tall field buttercup|Ranunculus acris|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +tall cupflower|1 +(noun)|Nierembergia frutescens|cupflower|nierembergia +tall field buttercup|1 +(noun)|meadow buttercup|tall buttercup|tall crowfoot|Ranunculus acris|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +tall gallberry holly|1 +(noun)|holly +tall goldenrod|1 +(noun)|goldenrod +tall mallow|1 +(noun)|high mallow|cheese|cheeseflower|Malva sylvestris|mallow +tall meadow grass|1 +(noun)|tall oat grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass +tall oat grass|1 +(noun)|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass +tall oil|1 +(noun)|oil +tall order|1 +(noun)|large order|undertaking|project|task|labor +tall sunflower|1 +(noun)|giant sunflower|Indian potato|Helianthus giganteus|sunflower|helianthus +tall tale|1 +(noun)|narrative|narration|story|tale +tall white violet|1 +(noun)|Canada violet|white violet|Viola canadensis|violet +tall yellow-eye|1 +(noun)|Xyris operculata|yellow-eyed grass +tallahassee|1 +(noun)|Tallahassee|capital of Florida|state capital +tallapoosa|1 +(noun)|Tallapoosa|Tallapoosa River|river +tallapoosa river|1 +(noun)|Tallapoosa|Tallapoosa River|river +tallboy|1 +(noun)|highboy|chest of drawers|chest|bureau|dresser +tallchief|1 +(noun)|Tallchief|Maria Tallchief|dancer|professional dancer +talleyrand|1 +(noun)|Talleyrand|Charles Maurice de Talleyrand|statesman|solon|national leader +tallgrass|1 +(noun)|tall-grass|grass +tallin|1 +(noun)|Tallinn|Tallin|capital of Estonia|capital|port +tallinn|1 +(noun)|Tallinn|Tallin|capital of Estonia|capital|port +tallis|2 +(noun)|Tallis|Thomas Tallis|organist|composer +(noun)|prayer shawl|tallith|shawl +tallish|1 +(adj)|tall +tallith|1 +(noun)|prayer shawl|tallis|shawl +tallness|2 +(noun)|height|dimension +(noun)|stature|height +tallow|1 +(noun)|animal oil +tallow oil|1 +(noun)|animal oil +tallulah bankhead|1 +(noun)|Bankhead|Tallulah Bankhead|actress +tally|7 +(noun)|run|score +(noun)|reckoning|bill|account|invoice +(noun)|count|counting|numeration|enumeration|reckoning|investigation|investigating +(verb)|match|fit|correspond|check|jibe|gibe|agree|equal|be +(verb)|score|hit|rack up|gain|advance|win|pull ahead|make headway|get ahead|gain ground +(verb)|chalk up|record|enter|put down +(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|add together|add up|count|number|enumerate|numerate +tally clerk|1 +(noun)|tallyman|clerk +tallyman|2 +(noun)|traveling salesman|travelling salesman|commercial traveler|commercial traveller|roadman|bagman +(noun)|tally clerk|clerk +talmud|1 +(noun)|Talmud|Talmudic literature +talmudic literature|1 +(noun)|Talmudic literature|sacred text|sacred writing|religious writing|religious text +talon|1 +(noun)|claw +taloned|1 +(adj)|clawed|armed +talpidae|1 +(noun)|Talpidae|family Talpidae|mammal family +talus|2 +(noun)|scree|geological formation|formation +(noun)|anklebone|astragal|astragalus|bone|os +talwin|1 +(noun)|pentazocine|Talwin|analgesic|anodyne|painkiller|pain pill +tam|1 +(noun)|tam-o'-shanter|tammy|cap +tam-o'-shanter|1 +(noun)|tam|tammy|cap +tam-tam|1 +(noun)|gong|percussion instrument|percussive instrument +tamable|1 +(adj)|tameable|tractable |manipulable +tamale|1 +(noun)|dish +tamale pie|1 +(noun)|dish +tamandu|1 +(noun)|tamandua|lesser anteater|Tamandua tetradactyla|anteater|New World anteater +tamandua|1 +(noun)|tamandu|lesser anteater|Tamandua tetradactyla|anteater|New World anteater +tamandua tetradactyla|1 +(noun)|tamandua|tamandu|lesser anteater|Tamandua tetradactyla|anteater|New World anteater +tamanoir|1 +(noun)|ant bear|giant anteater|great anteater|Myrmecophaga jubata|anteater|New World anteater +tamara karsavina|1 +(noun)|Karsavina|Tamara Karsavina|dancer|professional dancer +tamarack|1 +(noun)|American larch|black larch|Larix laricina|larch|larch tree +tamarao|1 +(noun)|tamarau|Bubalus mindorensis|Anoa mindorensis|Old World buffalo|buffalo +tamarau|1 +(noun)|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo|buffalo +tamaricaceae|1 +(noun)|Tamaricaceae|family Tamaricaceae|tamarisk family|dilleniid dicot family +tamarillo|1 +(noun)|tree tomato|shrub|bush +tamarin|1 +(noun)|lion monkey|lion marmoset|leoncita|marmoset +tamarind|2 +(noun)|tamarind tree|tamarindo|Tamarindus indica|bean tree +(noun)|tamarindo|edible fruit +tamarind tree|1 +(noun)|tamarind|tamarindo|Tamarindus indica|bean tree +tamarindo|2 +(noun)|tamarind|tamarind tree|Tamarindus indica|bean tree +(noun)|tamarind|edible fruit +tamarindus|1 +(noun)|Tamarindus|genus Tamarindus|rosid dicot genus +tamarindus indica|1 +(noun)|tamarind|tamarind tree|tamarindo|Tamarindus indica|bean tree +tamarisk|1 +(noun)|shrub|bush +tamarisk family|1 +(noun)|Tamaricaceae|family Tamaricaceae|dilleniid dicot family +tamarisk gerbil|1 +(noun)|Meriones unguiculatus|gerbil|gerbille +tamarix|1 +(noun)|Tamarix|genus Tamarix|dilleniid dicot genus +tambac|1 +(noun)|tombac|tombak|alloy|metal +tambala|1 +(noun)|Malawian monetary unit +tambocor|1 +(noun)|flecainide|Tambocor|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +tambour|2 +(noun)|embroidery frame|embroidery hoop|framework|frame|framing +(noun)|drum|membranophone|tympan +tambourine|1 +(noun)|drum|membranophone|tympan +tamburlaine|1 +(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler|swayer +tame|9 +(adj)|unexciting +(adj)|tame |subdued|quiet +(adj)|tame |tamed|broken|broken in|docile|gentle|domestic|domesticated|cultivated|tamed|tractable|manipulable +(adj)|meek|docile +(verb)|chasten|subdue|change|alter|modify +(verb)|tone down|moderate|change|alter|modify +(verb)|domesticate|cultivate|naturalize|naturalise|adapt|accommodate +(verb)|domesticate|domesticize|domesticise|reclaim|change|alter|modify +(verb)|domesticate|adapt|accommodate +tameable|1 +(adj)|tamable|tractable |manipulable +tamed|2 +(adj)|tame |broken|broken in|docile|gentle|domestic|domesticated|cultivated|tractable|manipulable +(adj)|tame +tameness|2 +(noun)|jejunity|jejuneness|vapidity|vapidness|dullness|dulness +(noun)|domestication|tractability|tractableness|flexibility +tamer|1 +(noun)|animal trainer|handler +tamerlane|1 +(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler|swayer +tamias|1 +(noun)|Tamias|genus Tamias|mammal genus +tamias striatus|1 +(noun)|eastern chipmunk|hackee|striped squirrel|ground squirrel|Tamias striatus|squirrel +tamiasciurus|1 +(noun)|Tamiasciurus|genus Tamiasciurus|mammal genus +tamiasciurus douglasi|1 +(noun)|chickeree|Douglas squirrel|Tamiasciurus douglasi|tree squirrel +tamiasciurus hudsonicus|1 +(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel +tamil|3 +(adj)|Tamil|Dravidian|South Dravidian +(noun)|Tamil|Dravidian +(noun)|Tamil|South Dravidian +tamil nadu|1 +(noun)|Tamil Nadu|Madras|state|province +tamil tigers|1 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +tamm|1 +(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist +tammany|1 +(noun)|Tammany Hall|Tammany Society|Tammany|organization|organisation +tammany hall|1 +(noun)|Tammany Hall|Tammany Society|Tammany|organization|organisation +tammany society|1 +(noun)|Tammany Hall|Tammany Society|Tammany|organization|organisation +tammerfors|1 +(noun)|Tampere|Tammerfors|city|metropolis|urban center +tammuz|2 +(noun)|Tammuz|Thammuz|Jewish calendar month +(noun)|Dumuzi|Tammuz|Semitic deity +tammy|2 +(noun)|fabric|cloth|material|textile +(noun)|tam|tam-o'-shanter|cap +tammy wynette|1 +(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer|vocalist|vocalizer|vocaliser +tammy wynetter pugh|1 +(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer|vocalist|vocalizer|vocaliser +tamoxifen|1 +(noun)|estrogen antagonist|antagonist +tamp|2 +(noun)|tamper|tamping bar|tool +(verb)|tamp down|pack|compress|compact|pack together +tamp down|1 +(verb)|tamp|pack|compress|compact|pack together +tampa|1 +(noun)|Tampa|city|metropolis|urban center|port of entry|point of entry +tampa bay|1 +(noun)|Tampa Bay|bay +tampax|1 +(noun)|Tampax|tampon +tamper|3 +(noun)|tamp|tamping bar|tool +(verb)|fiddle|monkey|manipulate +(verb)|meddle|intervene|step in|interfere|interpose +tampere|1 +(noun)|Tampere|Tammerfors|city|metropolis|urban center +tampering|1 +(noun)|meddling|change of state +tampico|1 +(noun)|Tampico|city|metropolis|urban center|port +tamping bar|1 +(noun)|tamp|tamper|tool +tampion|1 +(noun)|plug|stopper|stopple +tampon|2 +(noun)|plug|stopper|stopple +(verb)|plug|stop up|secure +tamponade|1 +(noun)|tamponage|obstruction|blockage +tamponage|1 +(noun)|tamponade|obstruction|blockage +tamus|1 +(noun)|Tamus|genus Tamus|plant genus +tamus communis|1 +(noun)|black bryony|black bindweed|Tamus communis|vine +tan|6 +(adj)|chromatic +(noun)|suntan|sunburn|burn|hyperpigmentation +(noun)|topaz|light brown +(noun)|tangent|trigonometric function|circular function +(verb)|convert|change over +(verb)|bronze|discolor|discolour|colour|color +tanacetum|1 +(noun)|Tanacetum|genus Tanacetum|asterid dicot genus +tanacetum balsamita|1 +(noun)|costmary|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb|herbaceous plant +tanacetum camphoratum|1 +(noun)|camphor dune tansy|Tanacetum camphoratum|herb|herbaceous plant +tanacetum cinerariifolium|1 +(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb|herbaceous plant +tanacetum coccineum|1 +(noun)|painted daisy|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower +tanacetum douglasii|1 +(noun)|northern dune tansy|Tanacetum douglasii|wildflower|wild flower|Tanacetum|genus Tanacetum +tanacetum parthenium|1 +(noun)|feverfew|Tanacetum parthenium|Chrysanthemum parthenium|herb|herbaceous plant +tanacetum ptarmiciflorum|1 +(noun)|dusty miller|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite|composite plant +tanacetum vulgare|1 +(noun)|tansy|golden buttons|scented fern|Tanacetum vulgare|composite|composite plant +tanach|1 +(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text|sacred writing|religious writing|religious text +tanager|1 +(noun)|oscine|oscine bird +tanakh|1 +(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text|sacred writing|religious writing|religious text +tanbark|1 +(noun)|bark +tanbark oak|1 +(noun)|Lithocarpus densiflorus|tree +tancred|1 +(noun)|Tancred|soldier +tandearil|1 +(noun)|oxyphenbutazone|Tandearil|anti-inflammatory|anti-inflammatory drug +tandem|1 +(noun)|bicycle-built-for-two|tandem bicycle|bicycle|bike|wheel|cycle +tandem bicycle|1 +(noun)|bicycle-built-for-two|tandem|bicycle|bike|wheel|cycle +tandem trailer|1 +(noun)|trailer truck|tractor trailer|trucking rig|rig|articulated lorry|semi +tandoor|1 +(noun)|oven +tanekaha|1 +(noun)|Phyllocladus trichomanoides|celery pine +taney|1 +(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice +tang|7 +(noun)|relish|flavor|flavour|sapidity|savor|savour|smack|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|nip|piquance|piquancy|tanginess|zest|spiciness|spice|spicery +(noun)|Tang|Tang dynasty|dynasty +(noun)|bladderwrack|black rockweed|bladder fucus|Fucus vesiculosus|rockweed +(noun)|serrated wrack|Fucus serratus|brown algae +(noun)|sea tang|seaweed +(noun)|sea tangle|kelp +tang dynasty|1 +(noun)|Tang|Tang dynasty|dynasty +tanga|1 +(noun)|Tajikistani monetary unit +tanganyika|2 +(noun)|Lake Tanganyika|Tanganyika|lake +(noun)|Tanganyika|geographical area|geographic area|geographical region|geographic region +tange|1 +(noun)|Tange|Kenzo Tange|architect|designer +tangelo|2 +(noun)|tangelo tree|ugli fruit|Citrus tangelo|citrus|citrus tree +(noun)|ugli|ugli fruit|edible fruit +tangelo tree|1 +(noun)|tangelo|ugli fruit|Citrus tangelo|citrus|citrus tree +tangency|2 +(noun)|contact +(noun)|contact|junction|conjunction +tangent|2 +(noun)|straight line +(noun)|tan|trigonometric function|circular function +tangent plane|1 +(noun)|plane|sheet +tangential|2 +(adj)|digressive|irrelevant +(adj)|straight line +tangerine|4 +(adj)|chromatic +(noun)|tangerine tree|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +(noun)|mandarin|mandarin orange +(noun)|reddish orange +tangerine tree|1 +(noun)|tangerine|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata +tangibility|1 +(noun)|tangibleness|palpability|materiality|physicalness|corporeality +tangible|5 +(adj)|tangible |tactile|tactual|concrete +(adj)|real|concrete +(adj)|tangible |real|realizable +(adj)|palpable |obvious|perceptible|perceptible +(adj)|physical|touchable|material +tangibleness|1 +(noun)|tangibility|palpability|materiality|physicalness|corporeality +tangier|1 +(noun)|Tangier|Tangiers|city|metropolis|urban center +tangier pea|1 +(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea +tangier peavine|1 +(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea +tangiers|2 +(noun)|Tangier|Tangiers|city|metropolis|urban center +(noun)|Tangier|Tangiers|city|metropolis|urban center +tanginess|1 +(noun)|nip|piquance|piquancy|tang|zest|spiciness|spice|spicery +tangle|6 +(noun)|natural object +(noun)|snarl|maze|perplexity +(verb)|embroil|sweep|sweep up|drag|drag in|involve +(verb)|ravel|knot|intertwine|twine|entwine|enlace|interlace|lace +(verb)|tousle|dishevel|disarrange +(verb)|entangle|mat|snarl|twist|twine|distort +tangle orchid|1 +(noun)|orchid|orchidaceous plant +tangle with|1 +(verb)|get into|change state|turn +tanglebush|1 +(noun)|desert olive|Forestiera neomexicana|forestiera +tangled|2 +(adj)|tangled |afoul|foul|fouled|enmeshed|intermeshed|entangled|intertwined|knotted|snarled|snarly|matted|rootbound|thrown|thrown and twisted +(adj)|Byzantine|convoluted|intricate|involved|knotty|labyrinthine|tortuous|complex +tango|3 +(noun)|ballroom dancing|ballroom dance +(noun)|dance music|danceroom music|ballroom music +(verb)|dance|trip the light fantastic|trip the light fantastic toe +tangor|1 +(noun)|temple orange|temple orange tree|king orange|Citrus nobilis|orange|orange tree +tangram|1 +(noun)|puzzle +tangshan|1 +(noun)|Tangshan|city|metropolis|urban center +tanguy|1 +(noun)|Tanguy|Yves Tanguy|painter +tangy|1 +(adj)|lemony|lemonlike|sourish|tart|sour +tank|7 +(noun)|army tank|armored combat vehicle|armoured combat vehicle|military vehicle|armored vehicle|armoured vehicle|tracked vehicle +(noun)|storage tank|vessel +(noun)|tankful|containerful +(noun)|tank car|freight car +(noun)|cooler|cell|jail cell|prison cell +(verb)|store +(verb)|process|treat +tank car|1 +(noun)|tank|freight car +tank circuit|1 +(noun)|circuit|electrical circuit|electric circuit +tank destroyer|1 +(noun)|armored vehicle|armoured vehicle +tank driver|1 +(noun)|tanker|soldier +tank engine|1 +(noun)|tank locomotive|locomotive|engine|locomotive engine|railway locomotive +tank farm|1 +(noun)|area|country +tank farming|1 +(noun)|hydroponics|aquiculture|farming|agriculture|husbandry +tank furnace|1 +(noun)|furnace +tank iron|1 +(noun)|plate iron +tank locomotive|1 +(noun)|tank engine|locomotive|engine|locomotive engine|railway locomotive +tank shell|1 +(noun)|shell +tank ship|1 +(noun)|oil tanker|oiler|tanker|cargo ship|cargo vessel +tank suit|1 +(noun)|maillot|swimsuit|bathing suit|swimming costume|bathing costume +tank top|1 +(noun)|shirt +tanka|2 +(noun)|poem|verse form +(noun)|painting|picture +tankage|3 +(noun)|indefinite quantity +(noun)|charge +(noun)|storage +tankard|1 +(noun)|drinking vessel +tanker|2 +(noun)|oil tanker|oiler|tank ship|cargo ship|cargo vessel +(noun)|tank driver|soldier +tanker plane|1 +(noun)|airplane|aeroplane|plane +tankful|1 +(noun)|tank|containerful +tanned|2 +(adj)|bronzed|browned|suntanned|brunet |brunette +(adj)|tanned +tannenberg|1 +(noun)|Tannenberg|battle of Tannenberg|pitched battle +tanner|2 +(noun)|sixpence|coin +(noun)|craftsman|artisan|journeyman|artificer +tanner's cassia|1 +(noun)|avaram|Senna auriculata|Cassia auriculata|senna +tannery|1 +(noun)|workplace|work +tannia|1 +(noun)|yautia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +tannic|1 +(adj)|phenol +tannic acid|1 +(noun)|tannin|phenol +tannin|1 +(noun)|tannic acid|phenol +tanning|3 +(noun)|bodily process|body process|bodily function|activity +(noun)|whipping|flogging|lashing|flagellation|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +(noun)|trade|craft +tannish|1 +(adj)|chromatic +tannoy|1 +(noun)|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +tanoan|1 +(noun)|Tanoan|Tanoan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +tanoan language|1 +(noun)|Tanoan|Tanoan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +tansy|1 +(noun)|golden buttons|scented fern|Tanacetum vulgare|composite|composite plant +tansy-leaved rocket|1 +(noun)|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb|herbaceous plant +tansy leaf aster|1 +(noun)|tahoka daisy|Machaeranthera tanacetifolia|wildflower|wild flower +tansy mustard|1 +(noun)|Descurainia pinnata|herb|herbaceous plant +tansy ragwort|1 +(noun)|ragwort|ragweed|benweed|Senecio jacobaea|weed +tantalise|1 +(verb)|tease|razz|rag|cod|tantalize|bait|taunt|twit|rally|ride|mock|bemock +tantaliser|1 +(noun)|tantalizer|tormentor|tormenter|persecutor +tantalising|2 +(adj)|tantalizing|inviting +(adj)|tantalizing|tempting|inviting +tantalite|1 +(noun)|mineral +tantalize|1 +(verb)|tease|razz|rag|cod|tantalise|bait|taunt|twit|rally|ride|mock|bemock +tantalizer|1 +(noun)|tantaliser|tormentor|tormenter|persecutor +tantalizing|2 +(adj)|tantalising|inviting +(adj)|tantalising|tempting|inviting +tantalizingly|1 +(adv)|invitingly +tantalum|1 +(noun)|Ta|atomic number 73|metallic element|metal +tantalus|1 +(noun)|Tantalus|mythical being +tantamount|1 +(adj)|equivalent|equal +tantilla|1 +(noun)|Tantilla|genus Tantilla|reptile genus +tantra|2 +(noun)|Sanskrit literature +(noun)|Tantra|Tantrism|Buddhism +tantric|1 +(adj)|Tantric|Tantrik|Buddhism +tantrik|1 +(adj)|Tantric|Tantrik|Buddhism +tantrism|2 +(noun)|Tantrism|Buddhism +(noun)|Tantra|Tantrism|Buddhism +tantrist|1 +(noun)|Tantrist|disciple|adherent +tantrum|1 +(noun)|fit|scene|conniption|bad temper|ill temper +tanzania|1 +(noun)|Tanzania|United Republic of Tanzania|African country|African nation +tanzanian|2 +(adj)|Tanzanian|African country|African nation +(noun)|Tanzanian|African +tanzanian monetary unit|1 +(noun)|Tanzanian monetary unit|monetary unit +tanzanian shilling|1 +(noun)|Tanzanian shilling|shilling|Tanzanian monetary unit +tanzim|1 +(noun)|Fatah Tanzim|Tanzim|terrorist organization|terrorist group|foreign terrorist organization|FTO +tanzimul fuqra|1 +(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization|terrorist group|foreign terrorist organization|FTO +tao|2 +(noun)|Taoist|Tao|disciple|adherent +(noun)|Tao|principle +taoism|4 +(noun)|Taoism|sect|religious sect|religious order +(noun)|Taoism|religion|faith +(noun)|Taoism|Hsuan Chiao|religion|faith|religious belief +(noun)|Taoism|Daoism|philosophical doctrine|philosophical theory +taoist|3 +(adj)|Taoist|religion|faith|religious belief +(adj)|Taoist|philosophical doctrine|philosophical theory +(noun)|Taoist|Tao|disciple|adherent +taoist trinity|1 +(noun)|Taoist Trinity|Chinese deity +taos|4 +(noun)|Taos|Pueblo +(noun)|Taos|town +(noun)|Taoist|Tao|disciple|adherent +(noun)|Tao|principle +tap|20 +(noun)|pat|rap|sound +(noun)|water faucet|water tap|spigot|hydrant|faucet|plumbing fixture +(noun)|rap|strike|bump|blow +(noun)|plate +(noun)|tool +(noun)|spigot|plug|stopper|stopple +(noun)|wiretap|investigation|investigating +(noun)|pat|dab|touch|touching +(verb)|cut +(verb)|withdraw|draw|take out|draw off +(verb)|tip|strike +(verb)|exploit|use|utilize|utilise|apply|employ +(verb)|wiretap|intercept|bug|listen in|eavesdrop +(verb)|supply|provide|render|furnish +(verb)|rap|knock|pink|sound|go +(verb)|walk +(verb)|tapdance|dance|trip the light fantastic|trip the light fantastic toe +(verb)|draw|take out +(verb)|pierce +(verb)|solicit|beg|request|bespeak|call for|quest +tap-off|1 +(noun)|tip-off|jump ball +tap dance|3 +(noun)|tap dancing|step dancing|hoofing +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|tapdance|tap|dance|trip the light fantastic|trip the light fantastic toe +tap dancer|1 +(noun)|tapper|dancer|professional dancer +tap dancing|1 +(noun)|tap dance|step dancing|hoofing +tap house|2 +(noun)|tavern|building|edifice +(noun)|public house|pub|saloon|pothouse|gin mill|taphouse|tavern +tap out|1 +(verb)|beat out|thump out|beat +tap water|1 +(noun)|water|H2O +tap wrench|1 +(noun)|wrench|spanner +tapa|2 +(noun)|tappa|bark +(noun)|tappa|fabric|cloth|material|textile +tapdance|1 +(verb)|tap|dance|trip the light fantastic|trip the light fantastic toe +tape|8 +(noun)|strip|slip +(noun)|tape recording|taping|recording +(noun)|finishing line|finish line +(noun)|tapeline|tape measure|measuring instrument|measuring system|measuring device +(noun)|magnetic tape|mag tape|memory device|storage device +(verb)|attach +(verb)|videotape|record|enter|put down +(verb)|record|record|enter|put down +tape-recorded|1 +(adj)|taped|recorded +tape cartridge|1 +(noun)|cartridge +tape deck|1 +(noun)|electronic equipment +tape drive|1 +(noun)|tape transport|transport|mechanism +tape grass|1 +(noun)|eelgrass|wild celery|Vallisneria spiralis|aquatic plant|water plant|hydrophyte|hydrophytic plant +tape machine|1 +(noun)|tape recorder|magnetic recorder +tape measure|1 +(noun)|tape|tapeline|measuring instrument|measuring system|measuring device +tape player|1 +(noun)|electronic equipment +tape record|1 +(verb)|record|tape +tape recorder|1 +(noun)|tape machine|magnetic recorder +tape recording|1 +(noun)|tape|taping|recording +tape transport|1 +(noun)|tape drive|transport|mechanism +taped|2 +(adj)|fixed +(adj)|tape-recorded|recorded +tapeline|1 +(noun)|tape|tape measure|measuring instrument|measuring system|measuring device +tapenade|1 +(noun)|spread|paste +taper|6 +(noun)|convex shape|convexity +(noun)|narrowing +(noun)|wick|cord +(noun)|candle|wax light|lamp +(verb)|decrease|diminish|lessen|fall +(verb)|sharpen|point|change shape|change form|deform|taper off|taper off +taper file|1 +(noun)|file +taper off|2 +(verb)|peter out|fizzle out|fizzle|discontinue +(verb)|narrow|contract +tapered|2 +(adj)|tapering|pointed +(adj)|tapering|narrowing|narrow +tapering|4 +(adj)|tapered|pointed +(adj)|tapered|narrowing|narrow +(adj)|dwindling|tapering off|decreasing +(noun)|lowering +tapering off|1 +(adj)|dwindling|tapering|decreasing +tapestried|1 +(adj)|adorned |decorated +tapestry|3 +(noun)|complexity|complexness +(noun)|tapis|fabric|cloth|material|textile +(noun)|arras|hanging|wall hanging +tapestry moth|1 +(noun)|carpet moth|Trichophaga tapetzella|tineid|tineid moth +tapeworm|1 +(noun)|cestode|flatworm|platyhelminth +tapeworm infection|1 +(noun)|infection +taphephobia|1 +(noun)|simple phobia +taphouse|1 +(noun)|public house|pub|saloon|pothouse|gin mill|tavern|tap house +taping|1 +(noun)|tape|tape recording|recording +tapioca|1 +(noun)|foodstuff|food product +tapioca plant|1 +(noun)|bitter cassava|manioc|mandioc|mandioca|gari|Manihot esculenta|Manihot utilissima|cassava|casava +tapioca pudding|1 +(noun)|pudding +tapir|1 +(noun)|odd-toed ungulate|perissodactyl|perissodactyl mammal +tapiridae|1 +(noun)|Tapiridae|family Tapiridae|mammal family +tapirus|1 +(noun)|Tapirus|genus Tapirus|mammal genus +tapirus indicus|1 +(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir +tapirus terrestris|1 +(noun)|New World tapir|Tapirus terrestris|tapir +tapis|1 +(noun)|tapestry|fabric|cloth|material|textile +tapotement|1 +(noun)|massage +tappa|2 +(noun)|tapa|bark +(noun)|tapa|fabric|cloth|material|textile +tappan|1 +(noun)|Tappan|Arthur Tappan|abolitionist|emancipationist +tappan zee bridge|1 +(noun)|Tappan Zee Bridge|cantilever bridge +tapped|1 +(adj)|tapped |abroach|broached +tapper|5 +(noun)|tapster|publican|tavern keeper +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|worker +(noun)|wiretapper|phone tapper|eavesdropper +(noun)|tap dancer|dancer|professional dancer +tappet|1 +(noun)|lever +tappet wrench|1 +(noun)|open-end wrench|wrench|spanner +tapping|1 +(noun)|sound +taproom|1 +(noun)|barroom|bar|saloon|ginmill|room +taproot|2 +(noun)|root +(noun)|source|seed|germ +taps|9 +(noun)|lights-out|bugle call +(noun)|pat|rap|tap|sound +(noun)|water faucet|water tap|tap|spigot|hydrant|faucet|plumbing fixture +(noun)|rap|strike|tap|bump|blow +(noun)|tap|plate +(noun)|tap|tool +(noun)|tap|spigot|plug|stopper|stopple +(noun)|wiretap|tap|investigation|investigating +(noun)|tap|pat|dab|touch|touching +tapster|1 +(noun)|tapper|publican|tavern keeper +tar|3 +(noun)|pitch|bitumen +(noun)|mariner|seaman|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor|crewman +(verb)|coat|surface +tar-and-feather|1 +(verb)|punish|penalize|penalise +tar-wood|3 +(noun)|tarwood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer|coniferous tree +(noun)|tarwood|Dacrydium colensoi|conifer|coniferous tree +(noun)| +tar heel state|1 +(noun)|North Carolina|Old North State|Tar Heel State|NC|American state +tar paper|1 +(noun)|roofing paper|paper|roofing material +tar pit|1 +(noun)|pit|cavity +tara|1 +(noun)|Tara|town +tara vine|1 +(noun)|bower actinidia|Actinidia arguta|vine +tarabulus al-gharb|1 +(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital +tarabulus ash-sham|1 +(noun)|Tripoli|Tarabulus Ash-Sham|Trablous|city|metropolis|urban center|port +taracahitian|1 +(noun)|Taracahitian|Indian|North American Indian|American Indian|Red Indian +taradiddle|2 +(noun)|fib|story|tale|tarradiddle|lie|prevarication +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|tarradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +tarahumara|1 +(noun)|Tarahumara|Taracahitian +tarahumara frog|1 +(noun)|Rana tarahumarae|true frog|ranid +taraktagenos|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +taraktagenos kurzii|1 +(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +taraktogenos|1 +(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus +taraktogenos kurzii|1 +(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree +tarantella|2 +(noun)|dance music|danceroom music|ballroom music +(noun)|tarantelle|social dancing +tarantelle|1 +(noun)|tarantella|social dancing +tarantino|1 +(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker|filmmaker|film producer|movie maker +tarantism|1 +(noun)|chorea +tarantula|2 +(noun)|European wolf spider|Lycosa tarentula|wolf spider|hunting spider +(noun)|spider +taras grigoryevich shevchenko|1 +(noun)|Shevchenko|Taras Grigoryevich Shevchenko|poet +tarawa|2 +(noun)|Tarawa|Bairiki|national capital +(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault +tarawa-makin|1 +(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault +taraxacum|1 +(noun)|Taraxacum|genus Taraxacum|asterid dicot genus +taraxacum kok-saghyz|1 +(noun)|Russian dandelion|kok-saghyz|kok-sagyz|Taraxacum kok-saghyz|dandelion|blowball +taraxacum officinale|1 +(noun)|common dandelion|Taraxacum ruderalia|Taraxacum officinale|dandelion|blowball +taraxacum ruderalia|1 +(noun)|common dandelion|Taraxacum ruderalia|Taraxacum officinale|dandelion|blowball +tarboosh|1 +(noun)|fez|cap +tarchanoff phenomenon|1 +(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction|response +tardigrada|1 +(noun)|Tardigrada|class Tardigrada|class +tardigrade|1 +(noun)|arthropod +tardily|2 +(adv)|slowly|slow|easy +(adv)|late|belatedly +tardiness|1 +(noun)|timing +tardive|1 +(adj)|late +tardive dyskinesia|1 +(noun)|dyskinesia +tardy|1 +(adj)|belated|late|unpunctual +tare|3 +(noun)|vetch +(noun)|darnel|bearded darnel|cheat|Lolium temulentum|rye grass|ryegrass +(noun)|counterweight|counterbalance|counterpoise|balance|equalizer|equaliser +tareekh e kasas|1 +(noun)|Tareekh e Kasas|Movement for Revenge|terrorist organization|terrorist group|foreign terrorist organization|FTO +taret organ|1 +(noun)|organ +target|6 +(noun)|mark|reference point|point of reference|reference +(noun)|prey|quarry|fair game|victim +(noun)|target area|topographic point|place|spot +(noun)|butt|sports equipment|sporting goods +(noun)|aim|object|objective|goal|end +(verb)|aim|place|direct|point|aim|take|train|take aim|direct +target-hunting|1 +(adj)|guided +target acquisition system|1 +(noun)|shipboard system +target area|1 +(noun)|target|topographic point|place|spot +target cell|2 +(noun)|somatic cell|vegetative cell +(noun)|red blood cell|RBC|erythrocyte +target company|1 +(noun)|takeover target|company +target language|2 +(noun)|object language|language|linguistic communication +(noun)|object language|programming language|programing language +target organ|1 +(noun)|organ +target practice|1 +(noun)|exercise|practice|drill|practice session|recitation +target program|1 +(noun)|object program|program|programme|computer program|computer programme +target range|1 +(noun)|firing range|practice range +taricha|1 +(noun)|Taricha|genus Taricha|amphibian genus +taricha granulosa|1 +(noun)|rough-skinned newt|Taricha granulosa|Pacific newt +taricha torosa|1 +(noun)|California newt|Taricha torosa|Pacific newt +tariff|2 +(noun)|duty|indirect tax +(verb)|tax +tarkovsky|1 +(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker|filmmaker|film producer|movie maker +tarmac|3 +(noun)|tarmacadam|paving material +(noun)|tarmacadam|macadam|paved surface +(verb)|macadamize|macadamise|coat|surface +tarmacadam|2 +(noun)|tarmac|paving material +(noun)|tarmac|macadam|paved surface +tarn|1 +(noun)|lake +tarnish|2 +(noun)|stain|discoloration|discolouration +(verb)|stain|maculate|sully|defile|spot|fleck|blob|blot +tarnished|1 +(adj)|besmirched|damaged|flyblown|spotted|stained|sullied|tainted|blemished +tarnished plant bug|1 +(noun)|Lygus lineolaris|lygus bug +taro|3 +(noun)|cocoyam|dasheen|eddo|root +(noun)|taro plant|dalo|dasheen|Colocasia esculenta|arum|aroid +(noun)|taro root|cocoyam|dasheen|edda|root vegetable +taro plant|1 +(noun)|taro|dalo|dasheen|Colocasia esculenta|arum|aroid +taro root|1 +(noun)|taro|cocoyam|dasheen|edda|root vegetable +tarot|1 +(noun)|tarot card|card +tarot card|1 +(noun)|tarot|card +tarp|1 +(noun)|tarpaulin|canvas|canvass +tarpan|1 +(noun)|Equus caballus gomelini|wild horse +tarpaulin|1 +(noun)|tarp|canvas|canvass +tarpon|1 +(noun)|Tarpon atlanticus|soft-finned fish|malacopterygian +tarpon atlanticus|1 +(noun)|tarpon|Tarpon atlanticus|soft-finned fish|malacopterygian +tarquin|1 +(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king|male monarch +tarquin the proud|1 +(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king|male monarch +tarquinius|1 +(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king|male monarch +tarquinius superbus|1 +(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king|male monarch +tarradiddle|2 +(noun)|fib|story|tale|taradiddle|lie|prevarication +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tommyrot|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +tarragon|2 +(noun)|estragon|Artemisia dracunculus|artemisia +(noun)|estragon|herb +tarred-and-feathered|1 +(adj)|punished +tarriance|1 +(noun)|lingering|delay|holdup +tarrietia|1 +(noun)|Tarrietia|genus Tarrietia|dilleniid dicot genus +tarrietia argyrodendron|1 +(noun)|silver tree|Tarrietia argyrodendron|tree +tarry|3 +(adj)|pitchy|resinous|resiny|adhesive +(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|linger|lurk|mill about|mill around|be +(verb)|linger|leave|go forth|go away +tarsal|2 +(adj)|skeletal structure +(noun)|tarsal bone|bone|os +tarsal bone|1 +(noun)|tarsal|bone|os +tarsal gland|1 +(noun)|Meibomian gland|sebaceous gland|sebaceous follicle|glandulae sebaceae +tarsier|1 +(noun)|primate +tarsiidae|1 +(noun)|Tarsiidae|family Tarsiidae|mammal family +tarsioidea|1 +(noun)|Tarsioidea|suborder Tarsioidea|animal order +tarsitis|1 +(noun)|inflammation|redness|rubor +tarsius|1 +(noun)|Tarsius|genus Tarsius|mammal genus +tarsius glis|1 +(noun)|Tarsius glis|tarsier +tarsius syrichta|1 +(noun)|Tarsius syrichta|tarsier +tarsus|1 +(noun)|skeletal structure +tart|5 +(adj)|lemony|lemonlike|sourish|tangy|sour +(adj)|sharp|sharp-worded|unpleasant +(noun)|prostitute|cocotte|whore|harlot|bawd|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +(noun)|pie +(noun)|pastry +tart up|2 +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress +tartan|1 +(noun)|plaid|fabric|cloth|material|textile +tartar|4 +(noun)|cream of tartar|potassium hydrogen tartrate|salt +(noun)|dragon|unpleasant woman|disagreeable woman +(noun)|Tatar|Tartar|Mongol Tatar|Mongol|Mongolian +(noun)|calculus|tophus|crust|incrustation|encrustation +tartar emetic|1 +(noun)|antimony potassium tartrate|mordant|tartrate +tartar sauce|1 +(noun)|tartare sauce|sauce +tartar steak|1 +(noun)|steak tartare|cannibal mound|dish +tartare sauce|1 +(noun)|tartar sauce|sauce +tartarean|1 +(adj)|Hadean|Plutonian|Tartarean|infernal +tartarian honeysuckle|1 +(noun)|bush honeysuckle|Tartarian honeysuckle|Lonicera tatarica|honeysuckle +tartaric|1 +(adj)|salt +tartaric acid|1 +(noun)|hydroxy acid +tartarus|1 +(noun)|Gehenna|Tartarus|Hell|perdition|Inferno|infernal region|nether region|the pit +tartary|1 +(noun)|Tartary|Tatary|geographical area|geographic area|geographical region|geographic region +tartlet|1 +(noun)|tart +tartness|2 +(noun)|sour|sourness|taste|taste sensation|gustatory sensation|taste perception|gustatory perception +(noun)|acerbity|sourness|sour|acidity +tartrate|1 +(noun)|salt +tartu|1 +(noun)|Tartu|city|metropolis|urban center +tartufe|1 +(noun)|Tartuffe|Tartufe|hypocrite|dissembler|phony|phoney|pretender +tartuffe|1 +(noun)|Tartuffe|Tartufe|hypocrite|dissembler|phony|phoney|pretender +tarweed|2 +(noun)|herb|herbaceous plant +(noun)|gumweed|gum plant|rosinweed|herb|herbaceous plant +tarwood|2 +(noun)|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer|coniferous tree +(noun)|tar-wood|Dacrydium colensoi|conifer|coniferous tree +tarzan|2 +(noun)|Tarzan|man|adult male +(noun)|Tarzan|Tarzan of the Apes|fictional character|fictitious character|character +tarzan of the apes|1 +(noun)|Tarzan|Tarzan of the Apes|fictional character|fictitious character|character +tashkent|1 +(noun)|Tashkent|Taskent|capital of Uzbek|capital +tashmit|1 +(noun)|Tashmit|Tashmitum|Semitic deity +tashmitum|1 +(noun)|Tashmit|Tashmitum|Semitic deity +tashunca-uitco|1 +(noun)|Crazy Horse|Tashunca-Uitco|Indian chief|Indian chieftain|Sioux|Siouan +task|4 +(noun)|undertaking|project|labor|work +(noun)|job|chore|duty +(verb)|delegate|designate|depute|assign +(verb)|tax|strain|extend +task force|2 +(noun)|military unit|military force|military group|force +(noun)|unit|social unit +taskent|1 +(noun)|Tashkent|Taskent|capital of Uzbek|capital +taskmaster|1 +(noun)|supervisor +taskmistress|1 +(noun)|taskmaster +tasman|1 +(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator +tasman dwarf pine|1 +(noun)|Tasman dwarf pine|Microstrobos niphophilus|shrub|bush +tasman sea|1 +(noun)|Tasman Sea|sea +tasmania|2 +(noun)|Tasmania|Australian state +(noun)|Tasmania|island +tasmanian|1 +(adj)|Tasmanian|Australian state +tasmanian devil|1 +(noun)|Tasmanian devil|ursine dasyure|Sarcophilus hariisi|dasyurid marsupial|dasyurid +tasmanian tiger|1 +(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial|dasyurid +tasmanian wolf|1 +(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial|dasyurid +tasse|1 +(noun)|tasset|armor plate|armour plate|armor plating|plate armor|plate armour +tassel|1 +(noun)|adornment +tassel flower|3 +(noun)|Emilia sagitta|herb|herbaceous plant +(noun)|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb|herbaceous plant +(noun)|love-lies-bleeding|velvet flower|Amaranthus caudatus|amaranth +tassel hyacinth|1 +(noun)|Muscari comosum|grape hyacinth +tasseled|1 +(adj)|tasselled|adorned |decorated +tasselled|1 +(adj)|tasseled|adorned |decorated +tasset|1 +(noun)|tasse|armor plate|armour plate|armor plating|plate armor|plate armour +tasso|1 +(noun)|Tasso|Torquato Tasso|poet +taste|12 +(noun)|taste sensation|gustatory sensation|taste perception|gustatory perception|sensation|sense experience|sense impression|sense datum +(noun)|preference|penchant|predilection|liking +(noun)|appreciation|discernment|perceptiveness|discrimination|secernment +(noun)|experience +(noun)|mouthful|small indefinite quantity|small indefinite amount +(noun)|tasting|sensing|perception +(verb)|savor|savour +(verb)|sample|try|try out|consume|ingest|take in|take|have +(verb)|perceive|comprehend +(verb)|smack|savor|savour +(verb)|identify +(verb)|know|experience|live +taste-maker|1 +(noun)|trend-setter|fashion arbiter|model|role model +taste-tester|2 +(noun)|taster|taste tester|sampler|critic +(noun)| +taste bud|2 +(noun)|tastebud|gustatory organ|chemoreceptor +(noun)| +taste cell|1 +(noun)|gustatory cell|epithelial cell +taste perception|1 +(noun)|taste|taste sensation|gustatory sensation|gustatory perception|sensation|sense experience|sense impression|sense datum +taste property|1 +(noun)|property +taste sensation|1 +(noun)|taste|gustatory sensation|taste perception|gustatory perception|sensation|sense experience|sense impression|sense datum +taste tester|2 +(noun)|taster|taste-tester|sampler|critic +(noun)| +tastebud|1 +(noun)|taste bud|gustatory organ|chemoreceptor +tasteful|3 +(adj)|tasteful |aesthetic|esthetic|artistic|pleasing|understated|unostentatious|unpretentious|elegant|unpretentious +(adj)|tasteful |ambrosial|ambrosian|nectarous|bitter|bitterish|bittersweet|semisweet|choice|dainty|tasty|delectable|delicious|luscious|pleasant-tasting|scrumptious|toothsome|yummy|flavored|flavoured|seasoned|flavorful|flavourful|flavorous|flavourous|flavorsome|flavoursome|sapid|saporous|fruity|full-bodied|rich|robust|piquant|savory|savoury|spicy|zesty|salty|salt|smoky|sour|sweet|winy|winey|grapey|grapy|nutty|nutlike|appetizing|appetising|palatable|pungent|salt|sour|sweet +(adj)|neat|refined|elegant +tastefully|1 +(adv)|tastily +tastefulness|1 +(noun)|elegance +tasteless|4 +(adj)|tasteless |bland|flat|flavorless|flavourless|insipid|savorless|savourless|vapid|unsalted|unseasoned|unflavored|unflavoured|nonflavored|nonflavoured|bland|unappetizing|unappetising|unpalatable +(adj)|tasteless |barbaric|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|Brummagem|camp|campy|indelicate|off-color|off-colour|ostentatious|pretentious|kitsch|inelegant|pretentious +(adj)|insipid|unappetizing |unappetising +(adj)|inaesthetic |unaesthetic +tastelessness|2 +(noun)|flavorlessness|flavourlessness|savorlessness|savourlessness|unappetizingness|unappetisingness +(noun)|inelegance +taster|1 +(noun)|taste tester|taste-tester|sampler|critic +tastily|1 +(adv)|tastefully +tastiness|1 +(noun)|pleasingness|palatability|palatableness +tasting|3 +(noun)|sample +(noun)|taste|sensing|perception +(noun)|savoring|savouring|relishing|degustation|eating|feeding +tasty|2 +(adj)|dainty|tasteful +(adj)|mouth-watering|savory|savoury|appetizing |appetising +tat|3 +(noun)|cheapness|tackiness|sleaze|tastelessness +(noun)|Thematic Apperception Test|TAT|projective test|projective device|projective technique +(verb)|intertwine|create from raw material|create from raw stuff +tatahumara|1 +(noun)|Tatahumara|Uto-Aztecan|Uto-Aztecan language +tatar|3 +(noun)|Tatar|Tartar|Mongol Tatar|Mongol|Mongolian +(noun)|Tatar|Russian +(noun)|Tatar|Turki|Turkic|Turko-Tatar|Turkic language +tatary|1 +(noun)|Tartary|Tatary|geographical area|geographic area|geographical region|geographic region +tate|1 +(noun)|Tate|Allen Tate|John Orley Allen Tate|critic|poet +tater|1 +(noun)|potato|white potato|Irish potato|murphy|spud|root vegetable|solanaceous vegetable +tati|1 +(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker|filmmaker|film producer|movie maker +tatou|1 +(noun)|giant armadillo|tatu|Priodontes giganteus|armadillo +tatouay|1 +(noun)|cabassous|Cabassous unicinctus|armadillo +tatter|1 +(noun)|rag|shred|tag|tag end|piece of cloth|piece of material +tatterdemalion|3 +(adj)|tattered|worn +(adj)|bedraggled|broken-down|dilapidated|ramshackle|tumble-down|unsound|damaged +(noun)|ragamuffin|urchin +tattered|2 +(adj)|tatterdemalion|worn +(adj)|shattered|destroyed +tattily|1 +(adv)|cheaply|inexpensively +tatting|2 +(noun)|needlework|needlecraft +(noun)|lace making|handicraft +tattle|3 +(noun)|singing|telling|disclosure|revelation|revealing +(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +(verb)|spill the beans|let the cat out of the bag|talk|blab|peach|babble|sing|babble out|blab out|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out +tattler|2 +(noun)|tattletale|taleteller|talebearer|telltale|blabbermouth|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +(noun)|sandpiper +tattletale|1 +(noun)|tattler|taleteller|talebearer|telltale|blabbermouth|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +tattletale gray|1 +(noun)|tattletale grey|gray|grayness|grey|greyness +tattletale grey|1 +(noun)|tattletale gray|gray|grayness|grey|greyness +tattling|1 +(adj)|blabbermouthed|leaky|talebearing|communicative |communicatory +tattoo|4 +(noun)|drumbeat|bugle call +(noun)|design|pattern|figure +(noun)|decoration +(verb)|stain +tatty|2 +(adj)|moth-eaten|ratty|shabby|worn +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tawdry|trashy|tasteless +tatu|1 +(noun)|giant armadillo|tatou|Priodontes giganteus|armadillo +tatum|2 +(noun)|Tatum|Edward Lawrie Tatum|biochemist +(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician|jazzman +tau|1 +(noun)|letter|letter of the alphabet|alphabetic character +tau-minus particle|1 +(noun)|tauon|lepton +tau-plus particle|1 +(noun)|antitauon|antilepton +tau coefficient of correlation|1 +(noun)|Kendall's tau|Kendall rank correlation|Kendall test +tau cross|1 +(noun)|St. Anthony's cross|cross +taught|1 +(adj)|instructed|schooled|tutored|educated +taunt|2 +(noun)|twit|taunting|aggravation|irritation|provocation +(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|twit|rally|ride|mock|bemock +taunting|2 +(adj)|derisive|gibelike|jeering|mocking|disrespectful +(noun)|twit|taunt|aggravation|irritation|provocation +tauntingly|1 +(adv)|teasingly +tauon|1 +(noun)|tau-minus particle|lepton +taupe|2 +(adj)|fuscous|chromatic +(noun)|brown|brownness +taurine|2 +(adj)|cattle|cows|kine|oxen|Bos taurus +(noun)|compound|chemical compound +taurotragus|1 +(noun)|Taurotragus|genus Taurotragus|mammal genus +taurotragus derbianus|1 +(noun)|giant eland|Taurotragus derbianus|eland +taurotragus oryx|1 +(noun)|common eland|Taurotragus oryx|eland +taurus|4 +(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist +(noun)|Taurus|Bull|person|individual|someone|somebody|mortal|human|soul +(noun)|Taurus|constellation +(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac|star sign|sign|mansion|house|planetary house +taurus the bull|1 +(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac|star sign|sign|mansion|house|planetary house +taut|2 +(adj)|tight|tense +(adj)|drawn|tense +tauten|2 +(verb)|firm|tighten +(verb)|firm|tighten|fasten +tautness|2 +(noun)|tension|tensity|tenseness|condition|status +(noun)|tightness|immovability|immovableness +tautog|1 +(noun)|blackfish|Tautoga onitis|wrasse +tautoga|1 +(noun)|Tautoga|genus Tautoga|fish genus +tautoga onitis|1 +(noun)|tautog|blackfish|Tautoga onitis|wrasse +tautogolabrus|1 +(noun)|Tautogolabrus|genus Tautogolabrus|fish genus +tautogolabrus adspersus|1 +(noun)|cunner|bergall|Tautogolabrus adspersus|wrasse +tautologic|1 +(adj)|pleonastic|redundant|tautological|prolix +tautological|1 +(adj)|pleonastic|redundant|tautologic|prolix +tautology|2 +(noun)|truth|true statement +(noun)|repetitiveness|repetitiousness +tavern|1 +(noun)|tap house|building|edifice +tavern keeper|1 +(noun)|publican|bartender|barman|barkeep|barkeeper|mixologist +taw|2 +(noun)|letter|letter of the alphabet|alphabetic character +(noun)|shooter|marble +tawdrily|1 +(adv)|garishly|gaudily +tawdriness|1 +(noun)|flashiness|garishness|gaudiness|loudness|brashness|meretriciousness|glitz|tastelessness +tawdry|2 +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|trashy|tasteless +(adj)|cheapjack|shoddy|inferior +tawney|1 +(noun)|Tawney|Richard Henry Tawney|economist|economic expert +tawniness|1 +(noun)|complexion|skin color|skin colour +tawny|1 +(adj)|chromatic +tawny eagle|1 +(noun)|Aquila rapax|eagle|bird of Jove +tawny owl|1 +(noun)|Strix aluco|owl|bird of Minerva|bird of night|hooter +tawse|1 +(noun)|strap +tax|5 +(noun)|taxation|revenue enhancement|levy +(verb)|levy|impose +(verb)|assess|determine|set +(verb)|task|strain|extend +(verb)|charge +tax-exempt|1 +(adj)|tax-free|untaxed|nontaxable |exempt +tax-free|1 +(adj)|tax-exempt|untaxed|nontaxable |exempt +tax-increase|1 +(noun)|tax boost|tax hike|increase|increment +tax advantage|1 +(noun)|advantage|vantage +tax assessment|1 +(noun)|assessment +tax assessor|1 +(noun)|assessor|bureaucrat|administrative official +tax avoidance|1 +(noun)|minimization|minimisation +tax base|1 +(noun)|assets +tax benefit|1 +(noun)|tax break|tax write-off|tax deduction|deduction +tax bill|1 +(noun)|bill|account|invoice +tax boost|1 +(noun)|tax-increase|tax hike|increase|increment +tax bracket|1 +(noun)|income bracket|income tax bracket|bracket +tax break|1 +(noun)|tax benefit|tax write-off|tax deduction|deduction +tax collection|1 +(noun)|collection|collecting|assembling|aggregation +tax collector|1 +(noun)|taxman|exciseman|collector of internal revenue|internal revenue agent|bureaucrat|administrative official +tax credit|1 +(noun)|decrease|diminution|reduction|step-down +tax deduction|1 +(noun)|tax write-off|deduction|write-off|write-down +tax evasion|1 +(noun)|evasion|nonpayment +tax form|1 +(noun)|form +tax haven|1 +(noun)|country|state|land +tax hike|1 +(noun)|tax-increase|tax boost|increase|increment +tax income|1 +(noun)|taxation|tax revenue|revenue|government income|government revenue +tax law|1 +(noun)|law|jurisprudence +tax liability|1 +(noun)|liabilities +tax lien|1 +(noun)|lien +tax policy|1 +(noun)|tax program|program|programme +tax program|1 +(noun)|tax policy|program|programme +tax rate|1 +(noun)|rate|charge per unit +tax return|1 +(noun)|income tax return|return|legal document|legal instrument|official document|instrument +tax revenue|1 +(noun)|tax income|taxation|revenue|government income|government revenue +tax shelter|1 +(noun)|shelter|decrease|diminution|reduction|step-down +tax system|1 +(noun)|legal system +tax write-off|1 +(noun)|tax deduction|deduction|write-off|write-down +taxability|1 +(noun)|liability +taxable|1 +(adj)|taxable |nonexempt|assessable|dutiable|ratable|rateable|subject|nonexempt +taxaceae|1 +(noun)|Taxaceae|family Taxaceae|yew family|gymnosperm family +taxales|1 +(noun)|Taxales|order Taxales|plant order +taxation|3 +(noun)|tax|revenue enhancement|levy +(noun)|tax income|tax revenue|revenue|government income|government revenue +(noun)|imposition|infliction +taxcut|1 +(noun)|cut +taxer|1 +(noun)|bureaucrat|administrative official +taxi|3 +(noun)|cab|hack|taxicab|car|auto|automobile|machine|motorcar +(verb)|travel|go|move|locomote +(verb)|ride +taxi dancer|1 +(noun)|dancer|professional dancer +taxi fare|1 +(noun)|cab fare|fare|transportation +taxi rank|1 +(noun)|cabstand|taxistand|stand +taxi strip|1 +(noun)|taxiway|paved surface +taxicab|1 +(noun)|cab|hack|taxi|car|auto|automobile|machine|motorcar +taxidea|1 +(noun)|Taxidea|genus Taxidea|mammal genus +taxidea taxus|1 +(noun)|American badger|Taxidea taxus|badger +taxidermist|1 +(noun)|animal stuffer|stuffer|craftsman|artisan|journeyman|artificer +taxidermy|1 +(noun)|art|artistry|prowess +taxidriver|1 +(noun)|taximan|cabdriver|cabman|cabby|hack driver|hack-driver|livery driver|driver +taximan|1 +(noun)|taxidriver|cabdriver|cabman|cabby|hack driver|hack-driver|livery driver|driver +taximeter|1 +(noun)|meter +taxing|1 +(adj)|burdensome|onerous|heavy +taxis|3 +(noun)|reaction|response +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|cab|hack|taxi|taxicab|car|auto|automobile|machine|motorcar +taxistand|1 +(noun)|cabstand|taxi rank|stand +taxiway|1 +(noun)|taxi strip|paved surface +taxman|1 +(noun)|tax collector|exciseman|collector of internal revenue|internal revenue agent|bureaucrat|administrative official +taxodiaceae|1 +(noun)|Taxodiaceae|subfamily Taxodiaceae|redwood family|gymnosperm family +taxodium|1 +(noun)|Taxodium|genus Taxodium|gymnosperm genus +taxodium ascendens|1 +(noun)|pond cypress|bald cypress|Taxodium ascendens|cypress +taxodium distichum|1 +(noun)|bald cypress|swamp cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress +taxodium mucronatum|1 +(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress +taxon|1 +(noun)|taxonomic group|taxonomic category|biological group +taxonomer|1 +(noun)|taxonomist|systematist|biologist|life scientist +taxonomic|1 +(adj)|taxonomical|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +taxonomic category|1 +(noun)|taxonomic group|taxon|biological group +taxonomic group|1 +(noun)|taxonomic category|taxon|biological group +taxonomical|1 +(adj)|taxonomic|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +taxonomist|1 +(noun)|taxonomer|systematist|biologist|life scientist +taxonomy|3 +(noun)|hierarchy +(noun)|systematics +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +taxophytina|1 +(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class +taxopsida|1 +(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class +taxpayer|1 +(noun)|payer|remunerator +taxpaying|1 +(adj)|nonexempt +taxus|1 +(noun)|Taxus|genus Taxus|gymnosperm genus +taxus baccata|1 +(noun)|Old World yew|English yew|Taxus baccata|yew +taxus brevifolia|1 +(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew +taxus cuspidata|1 +(noun)|Japanese yew|Taxus cuspidata|yew +taxus floridana|1 +(noun)|Florida yew|Taxus floridana|yew +tay|1 +(noun)|Tay|Tai +tay-sachs|1 +(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis|autosomal recessive disease|autosomal recessive defect|monogenic disorder|monogenic disease +tay-sachs disease|1 +(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis|autosomal recessive disease|autosomal recessive defect|monogenic disorder|monogenic disease +tayalic|1 +(noun)|Tayalic|Atayalic|Formosan +tayassu|1 +(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus +tayassu angulatus|1 +(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary|musk hog +tayassu pecari|1 +(noun)|white-lipped peccary|Tayassu pecari|peccary|musk hog +tayassu tajacu|1 +(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary|musk hog +tayassuidae|1 +(noun)|Tayassuidae|family Tayassuidae|mammal family +taylor|3 +(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer|music critic +(noun)|Taylor|Elizabeth Taylor|actress +(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States|United States President|President|Chief Executive +taymyr peninsula|1 +(noun)|Taimyr Peninsula|Taymyr Peninsula|peninsula +tayra|1 +(noun)|taira|Eira barbara|musteline mammal|mustelid|musteline +tazicef|1 +(noun)|ceftazidime|Fortaz|Tazicef|cephalosporin|Mefoxin +tazir crime|1 +(noun)|Tazir crime|crime|law-breaking +tb|3 +(noun)|terbium|Tb|atomic number 65|metallic element|metal +(noun)|tuberculosis|TB|T.B.|infectious disease +(noun)|terabyte|T|TB|computer memory unit +tbilisi|1 +(noun)|Tbilisi|Tiflis|capital of Georgia|capital +tc|2 +(noun)|technetium|Tc|atomic number 43|metallic element|metal +(noun)|Trusteeship Council|TC|council +tce|1 +(noun)|trichloroethylene|trichloroethane|TCE|ethylene|ethene +tchad|1 +(noun)|Chad|Republic of Chad|Tchad|African country|African nation +tchaikovsky|1 +(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer +tchotchke|2 +(noun)|chachka|mistress|kept woman|fancy woman +(noun)|chachka|collectible|collectable +tcp|1 +(noun)|transmission control protocol|TCP|protocol|communications protocol +tcp/ip|1 +(noun)|transmission control protocol/internet protocol|TCP/IP|protocol|communications protocol +tdt|1 +(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|ephemeris time|time unit|unit of time +te|2 +(noun)|tellurium|Te|atomic number 52|chemical element|element +(noun)|ti|si|solfa syllable +te deum|1 +(noun)|Te Deum|hymn|anthem +te kanawa|1 +(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano +tea|5 +(noun)|beverage|drink|drinkable|potable +(noun)|afternoon tea|teatime|meal|repast +(noun)|tea leaf|herb +(noun)|reception +(noun)|Camellia sinensis|shrub|bush +tea-strainer|1 +(noun)|strainer +tea bag|2 +(noun)|tea|tea leaf +(noun)|bag +tea ball|1 +(noun)|kitchen utensil +tea biscuit|1 +(noun)|teacake|cookie|cooky|biscuit +tea bread|1 +(noun)|bun|roll +tea break|1 +(noun)|coffee break|bite|collation|snack +tea caddy|1 +(noun)|caddy|can|tin|tin can +tea cart|2 +(noun)|teacart|tea trolley|tea wagon|serving cart +(noun)| +tea ceremony|1 +(noun)|chanoyu|ceremony +tea chest|1 +(noun)|chest +tea cloth|1 +(noun)|tablecloth +tea cosey|1 +(noun)|cosy|tea cosy|cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +tea cosy|1 +(noun)|cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +tea cozey|1 +(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|cozie|tea cozie|cloth covering +tea cozie|1 +(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|cloth covering +tea cozy|1 +(noun)|cosy|tea cosy|cosey|tea cosey|cozy|cozey|tea cozey|cozie|tea cozie|cloth covering +tea family|1 +(noun)|Theaceae|family Theaceae|dilleniid dicot family +tea garden|1 +(noun)|garden +tea gown|1 +(noun)|dinner dress|dinner gown|evening gown|gown|formalwear|eveningwear|evening dress|evening clothes +tea leaf|1 +(noun)|tea|herb +tea maker|1 +(noun)|spoon +tea napkin|1 +(noun)|napkin|table napkin|serviette +tea parlor|1 +(noun)|teashop|teahouse|tearoom|tea parlour|restaurant|eating house|eating place +tea parlour|1 +(noun)|teashop|teahouse|tearoom|tea parlor|restaurant|eating house|eating place +tea party|1 +(noun)|party +tea rose|1 +(noun)|Rosa odorata|rose +tea service|1 +(noun)|tea set|tableware +tea set|1 +(noun)|tea service|tableware +tea table|1 +(noun)|table +tea tortrix|1 +(noun)|tortrix|Homona coffearia|tortricid|tortricid moth +tea towel|1 +(noun)|dish towel|towel +tea tray|1 +(noun)|tray +tea trolley|1 +(noun)|tea cart|teacart|tea wagon|serving cart +tea urn|1 +(noun)|urn +tea wagon|1 +(noun)|tea cart|teacart|tea trolley|serving cart +teaberry|2 +(noun)|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +(noun)|wintergreen|boxberry|checkerberry|spiceberry|berry +teacake|2 +(noun)|tea biscuit|cookie|cooky|biscuit +(noun)|cake +teacart|1 +(noun)|tea cart|tea trolley|tea wagon|serving cart +teach|3 +(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate|buccaneer|sea robber|sea rover +(verb)|learn|instruct|inform +(verb)|habituate|accustom +teach-in|1 +(noun)|conference|group discussion +teachable|1 +(adj)|docile|tractable |manipulable +teacher|2 +(noun)|instructor|educator|pedagogue +(noun)|abstraction|abstract +teacher's certificate|1 +(noun)|teaching certificate|certificate|certification|credential|credentials +teacher's pet|1 +(noun)|darling|favorite|favourite|pet|dearie|deary|ducky +teacher-student relation|1 +(noun)|academic relation +teachers college|1 +(noun)|normal school|junior college +teachership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +teaching|3 +(noun)|instruction|pedagogy|education +(noun)|precept|commandment|doctrine|philosophy|philosophical system|school of thought|ism +(noun)|education|instruction|pedagogy|educational activity|activity +teaching aid|1 +(noun)|equipment +teaching certificate|1 +(noun)|teacher's certificate|certificate|certification|credential|credentials +teaching fellow|1 +(noun)|teacher|instructor +teaching method|1 +(noun)|pedagogics|pedagogy|method +teaching reading|1 +(noun)|teaching|instruction|pedagogy +teacup|2 +(noun)|teacupful|containerful +(noun)|cup +teacupful|1 +(noun)|teacup|containerful +teahouse|1 +(noun)|teashop|tearoom|tea parlor|tea parlour|restaurant|eating house|eating place +teak|2 +(noun)|teakwood|wood +(noun)|Tectona grandis|tree +teakettle|1 +(noun)|kettle|boiler +teakwood|1 +(noun)|teak|wood +teal|3 +(adj)|bluish green|blue-green|cyan|chromatic +(noun)|bluish green|blue-green|green|greenness|viridity +(noun)|duck +team|3 +(noun)|squad|unit|social unit +(noun)|animal group +(verb)|team up|group|aggroup +team spirit|1 +(noun)|esprit de corps|morale|disposition|temperament +team sport|1 +(noun)|sport|athletics +team up|1 +(verb)|team|group|aggroup +teammate|1 +(noun)|mate|associate +teamster|2 +(noun)|driver +(noun)|trucker|truck driver|driver +teamsters union|1 +(noun)|Teamsters Union|industrial union|vertical union +teamwork|1 +(noun)|cooperation +teapot|1 +(noun)|pot +teapot dome|1 +(noun)|Teapot Dome|Teapot Dome scandal|scandal|outrage +teapot dome scandal|1 +(noun)|Teapot Dome|Teapot Dome scandal|scandal|outrage +tear|9 +(noun)|teardrop|drop|driblet +(noun)|rip|rent|snag|split|opening|gap +(noun)|bust|binge|bout|revel|revelry +(noun)|separation +(verb)|rupture|snap|bust|separate|disunite|divide|part|tear up|tear apart|tear down +(verb)|separate|disunite|divide|part +(verb)|shoot|shoot down|charge|buck|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +(verb)|pluck|pull|deplume|deplumate|displume|strip +(verb)|cry|weep +tear apart|1 +(verb)|pan|trash|disparage|belittle|pick at +tear away|1 +(verb)|tear off|remove|take|take away|withdraw +tear down|1 +(verb)|level|raze|rase|dismantle|take down|pull down|destroy|destruct +tear duct|1 +(noun)|lacrimal duct|lachrymal duct|duct|epithelial duct|canal|channel +tear gas|2 +(noun)|teargas|lacrimator|lachrymator|gas|chemical weapon +(noun)| +tear gland|1 +(noun)|lacrimal gland|lachrymal gland|exocrine gland|duct gland +tear into|1 +(verb)|lam into|lace into|pitch into|lay into|hit +tear off|1 +(verb)|tear away|remove|take|take away|withdraw +tear sac|1 +(noun)|lacrimal sac|dacryocyst|vesicle|cyst +tear sheet|1 +(noun)|sheet|piece of paper|sheet of paper +tear up|1 +(verb)|shred|rip up|tear|rupture|snap|bust +tearaway|2 +(adj)|hotheaded|impulsive|impetuous|madcap|brainish|incautious +(noun)|daredevil|madcap|hothead|swashbuckler|lunatic|harum-scarum +teardrop|2 +(noun)|drop|bead|pearl +(noun)|tear|drop|driblet +tearful|2 +(adj)|tearful |liquid|swimming|watery|teary|teary-eyed|watery-eyed|sniffly|snuffling|snuffly|weepy|misty-eyed +(adj)|dolorous|dolourous|lachrymose|weeping|sorrowful +tearfulness|1 +(noun)|weepiness|sadness|unhappiness +teargas|2 +(noun)|tear gas|lacrimator|lachrymator|gas|chemical weapon +(verb)|gas +tearing|2 +(adj)|fierce|vehement|violent|trigger-happy|intense +(noun)|lacrimation|lachrymation|watering|bodily process|body process|bodily function|activity +tearing down|1 +(noun)|razing|leveling|demolishing|destruction|devastation +tearjerker|1 +(noun)|narrative|narration|story|tale +tearless|1 +(adj)|tearless |dry-eyed|dry +tearoom|1 +(noun)|teashop|teahouse|tea parlor|tea parlour|restaurant|eating house|eating place +tears|5 +(noun)|crying|weeping|bodily process|body process|bodily function|activity +(noun)|tear|teardrop|drop|driblet +(noun)|rip|rent|snag|split|tear|opening|gap +(noun)|bust|tear|binge|bout|revel|revelry +(noun)|tear|separation +teary|1 +(adj)|teary-eyed|watery-eyed|tearful +teary-eyed|1 +(adj)|teary|watery-eyed|tearful +teasdale|1 +(noun)|Teasdale|Sara Teasdale|poet +tease|12 +(noun)|teaser|annoyer|vexer|unwelcome person|persona non grata +(noun)|coquette|flirt|vamp|vamper|minx|prickteaser|woman|adult female +(noun)|teasing|ribbing|harassment|molestation +(verb)|badger|pester|bug|beleaguer|torment|rag|bedevil|crucify|dun|frustrate +(verb)|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock|bemock +(verb)|manipulate|keep in line|control +(verb)|shred|tear up|rip up +(verb)|change surface +(verb)|tease apart|loosen|disentangle|unsnarl|straighten out +(verb)|card|separate +(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun +(verb)|fluff|comb|comb out|disentangle +tease apart|1 +(verb)|tease|loosen|disentangle|unsnarl|straighten out +teased|1 +(adj)|titillated|excited +teasel|1 +(noun)|teazel|teasle|herb|herbaceous plant +teaser|7 +(noun)|worker +(noun)|tease|annoyer|vexer|unwelcome person|persona non grata +(noun)|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|puzzle|puzzler|mystifier|problem +(noun)|opening +(noun)|tormenter|tormentor|flat +(noun)|device +teashop|1 +(noun)|teahouse|tearoom|tea parlor|tea parlour|restaurant|eating house|eating place +teasing|6 +(adj)|mocking|quizzical|playful +(adj)|seductive +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|vexatious|vexing|disagreeable +(noun)|tease|ribbing|harassment|molestation +(noun)|play|frolic|romp|gambol|caper +(noun)|comb-out|comb|combing +teasingly|1 +(adv)|tauntingly +teasle|1 +(noun)|teasel|teazel|herb|herbaceous plant +teaspoon|2 +(noun)|spoon +(noun)|teaspoonful|containerful +teaspoonful|1 +(noun)|teaspoon|containerful +teat|1 +(noun)|nipple|mammilla|mamilla|pap|tit|reproductive organ|sex organ +teatime|1 +(noun)|tea|afternoon tea|meal|repast +teazel|1 +(noun)|teasel|teasle|herb|herbaceous plant +tebaldi|1 +(noun)|Tebaldi|Renata Tebaldi|soprano +tebet|1 +(noun)|Tebet|Tevet|Jewish calendar month +tec|1 +(noun)|detective|investigator|police detective|policeman|police officer|officer +tech|1 +(noun)|technical school|school +techie|1 +(noun)|tekki|technician +technetium|1 +(noun)|Tc|atomic number 43|metallic element|metal +technical|8 +(adj)|method +(adj)|technical |abstract|theoretical|specialized|specialised +(adj)|skillfulness +(adj)|technological|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(adj)|commercial +(adj)|commercial +(noun)|pickup|pickup truck|military vehicle +(noun)|technical foul|foul +technical foul|1 +(noun)|technical|foul +technical knockout|1 +(noun)|TKO|knockout|KO +technical school|1 +(noun)|tech|school +technical sergeant|1 +(noun)|sergeant +technicality|1 +(noun)|trifle|triviality|detail|item|point +technician|2 +(noun)|skilled worker|trained worker +(noun)|expert +technicolor|1 +(noun)|method +technique|2 +(noun)|method +(noun)|proficiency|skillfulness +technobabble|1 +(noun)|jargon +technocracy|1 +(noun)|political system|form of government +technocrat|2 +(noun)|expert +(noun)|politician|politico|pol|political leader +technological|2 +(adj)|scientific +(adj)|technical|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +technological revolution|1 +(noun)|industrial revolution|historic period|age +technologist|1 +(noun)|engineer|applied scientist|person|individual|someone|somebody|mortal|human|soul +technology|2 +(noun)|engineering|application|practical application|profession +(noun)|engineering|engineering science|applied science|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +technology administration|1 +(noun)|Technology Administration|agency|federal agency|government agency|bureau|office|authority +technophile|1 +(noun)|fancier|enthusiast +technophilia|1 +(noun)|enthusiasm +technophilic|1 +(adj)|enthusiasm +technophobe|1 +(noun)|naysayer +technophobia|1 +(noun)|dislike +technophobic|1 +(adj)|dislike +techy|1 +(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|ill-natured +tecophilaeacea|1 +(noun)|Tecophilaeacea|family Tecophilaeacea|liliid monocot family +tectaria|1 +(noun)|Tectaria|genus Tectaria|fern genus +tectaria cicutaria|1 +(noun)|button fern|Tectaria cicutaria|fern +tectaria macrodonta|1 +(noun)|Indian button fern|Tectaria macrodonta|fern +tectona|1 +(noun)|Tectona|genus Tectona|asterid dicot genus +tectona grandis|1 +(noun)|teak|Tectona grandis|tree +tectonic|2 +(adj)|morphology|geomorphology +(adj)|architectonic|science|scientific discipline +tectonic movement|1 +(noun)|crustal movement|movement|motion +tectonics|2 +(noun)|architectonics|science|scientific discipline +(noun)|plate tectonics|plate tectonic theory|morphology|geomorphology +tecumseh|1 +(noun)|Tecumseh|Tecumtha|Shawnee +tecumtha|1 +(noun)|Tecumseh|Tecumtha|Shawnee +ted|1 +(noun)|Ted|Teddy boy|tough guy|plug-ugly +ted hughes|1 +(noun)|Hughes|Ted Hughes|Edward James Hughes|poet +ted shawn|1 +(noun)|Shawn|Ted Shawn|dancer|professional dancer|choreographer +ted williams|1 +(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer|baseball player +teddies|3 +(noun)|chemise|shimmy|shift|slip|teddy|undergarment +(noun)|teddy|teddy bear|plaything|toy +(noun)|chemise|shimmy|shift|slip|teddy|undergarment +teddy|2 +(noun)|teddy bear|plaything|toy +(noun)|chemise|shimmy|shift|slip|teddies|undergarment +teddy bear|1 +(noun)|teddy|plaything|toy +teddy boy|1 +(noun)|Ted|Teddy boy|tough guy|plug-ugly +teddy boys|2 +(noun)|youth subculture +(noun)|Ted|Teddy boy|tough guy|plug-ugly +tedious|2 +(adj)|boring|deadening|dull|ho-hum|irksome|slow|tiresome|wearisome|uninteresting +(adj)|long-winded|verbose|windy|wordy|prolix +tediously|1 +(adv)|boringly|tiresomely +tediousness|1 +(noun)|tedium|tiresomeness|dullness|dulness +tedium|2 +(noun)|boredom|ennui|dissatisfaction +(noun)|tediousness|tiresomeness|dullness|dulness +tee|5 +(noun)|teeing ground|site|land site +(noun)|football tee|support +(noun)|golf tee|peg|nog|golf equipment +(verb)|tee up|put|set|place|pose|position|lay +(verb)|connect|link|tie|link up +tee hinge|1 +(noun)|T hinge|hinge|flexible joint +tee off|1 +(verb)|play +tee shirt|1 +(noun)|jersey|T-shirt|shirt +tee up|2 +(verb)|stage|bring about|arrange +(verb)|tee|put|set|place|pose|position|lay +teeing ground|1 +(noun)|tee|site|land site +teem|2 +(verb)|pullulate|swarm|hum|buzz|seethe|teem in +(verb)|pour|swarm|stream|pullulate|crowd|crowd together +teem in|1 +(verb)|abound in|pullulate with|occur +teeming|1 +(adj)|swarming|abundant +teemingness|1 +(noun)|abundance|copiousness|quantity +teen|1 +(adj)|adolescent|teenage|teenaged|young |immature +teenage|1 +(adj)|adolescent|teen|teenaged|young |immature +teenaged|1 +(adj)|adolescent|teen|teenage|young |immature +teenager|1 +(noun)|adolescent|stripling|juvenile|juvenile person +teens|2 +(noun)|time of life +(noun)|large integer +teensy|1 +(adj)|bitty|bittie|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +teensy-weensy|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +teentsy|1 +(adj)|bitty|bittie|teensy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +teeny|1 +(adj)|bitty|bittie|teensy|teentsy|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +teeny-weeny|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|itty-bitty|itsy-bitsy|small +teeoff|1 +(noun)|golf stroke|golf shot|swing +teepee|1 +(noun)|tepee|tipi|tent|collapsible shelter|lodge|indian lodge +teeter|1 +(verb)|seesaw|totter|move +teeter-totter|1 +(noun)|seesaw|teeterboard|tilting board|dandle board|plaything|toy +teeterboard|1 +(noun)|seesaw|teeter-totter|tilting board|dandle board|plaything|toy +teeth|6 +(noun)|dentition|set +(noun)|tooth|bone|os +(noun)|tooth|projection +(noun)|tooth|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|tooth|means|agency|way +(noun)|tooth|projection +teethe|1 +(verb)|grow|develop|produce|get|acquire +teething|1 +(noun)|dentition|odontiasis|growth|growing|maturation|development|ontogeny|ontogenesis +teething ring|1 +(noun)|comforter|pacifier|baby's dummy|device +teetotal|2 +(adj)|dry|sober +(verb)|abstain|refrain|desist +teetotaler|1 +(noun)|teetotaller|teetotalist|abstainer|abstinent|nondrinker +teetotaling|1 +(noun)|teetotalism|abstinence +teetotalism|1 +(noun)|teetotaling|abstinence +teetotalist|1 +(noun)|teetotaler|teetotaller|abstainer|abstinent|nondrinker +teetotaller|1 +(noun)|teetotaler|teetotalist|abstainer|abstinent|nondrinker +teetotum|1 +(noun)|top|whirligig|spinning top|plaything|toy +teff|1 +(noun)|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass|bay grass +teff grass|1 +(noun)|teff|Eragrostis tef|Eragrostic abyssinica|love grass|bay grass +tefillin|1 +(noun)|phylactery|reminder +teflon|2 +(adj)|slippery|tricky|untrustworthy |untrusty +(noun)|Teflon|polytetrafluoroethylene|plastic +teg|1 +(noun)|lamb +tegu|1 +(noun)|Taegu|Tegu|city|metropolis|urban center +tegucigalpa|1 +(noun)|Tegucigalpa|Honduran capital|national capital +tegular|1 +(adj)|roofing material +tegument|1 +(noun)|skin|cutis|connective tissue|body covering +teheran|1 +(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital +tehran|1 +(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital +teiid|1 +(noun)|teiid lizard|lizard +teiid lizard|1 +(noun)|teiid|lizard +teiidae|1 +(noun)|Teiidae|family Teiidae|reptile family +teilhard de chardin|1 +(noun)|Teilhard de Chardin|Pierre Teilhard de Chardin|paleontologist|palaeontologist|fossilist|philosopher +teju|1 +(noun)|teiid lizard|teiid +tekki|1 +(noun)|techie|technician +tektite|1 +(noun)|natural glass +tel aviv|1 +(noun)|Tel Aviv|Tel Aviv-Jaffa|city|metropolis|urban center +tel aviv-jaffa|1 +(noun)|Tel Aviv|Tel Aviv-Jaffa|city|metropolis|urban center +telamon|1 +(noun)|atlas|column|pillar +telanthera|1 +(noun)|Telanthera|genus Telanthera|caryophylloid dicot genus +telco|1 +(noun)|telephone company|telephone service|phone company|phone service|utility|public utility|public-service corporation +telco building|1 +(noun)|telecom hotel|building|edifice +telecast|2 +(noun)|broadcast +(verb)|televise|air|send|broadcast|beam|transmit +telecaster|1 +(noun)|broadcaster +telecasting|1 +(noun)|television|TV|video|broadcasting +telecom|1 +(noun)|telecommunication|medium +telecom equipment|1 +(noun)|telecommunication system|telecom system|telecommunication equipment|communication system +telecom hotel|1 +(noun)|telco building|building|edifice +telecom system|1 +(noun)|telecommunication system|telecommunication equipment|telecom equipment|communication system +telecommerce|1 +(noun)|telemarketing|teleselling|selling|merchandising|marketing +telecommunicate|1 +(verb)|communicate|intercommunicate +telecommunication|2 +(noun)|telecom|medium +(noun)|electrical engineering|EE +telecommunication equipment|1 +(noun)|telecommunication system|telecom system|telecom equipment|communication system +telecommunication system|1 +(noun)|telecom system|telecommunication equipment|telecom equipment|communication system +telecommuting|1 +(noun)|teleworking|employment|work +teleconference|1 +(noun)|teleconferencing|conference|group discussion +teleconferencing|1 +(noun)|teleconference|conference|group discussion +telefax|1 +(verb)|fax|facsimile|telecommunicate +telegnosis|1 +(noun)|psychic communication|psychical communication|anomalous communication +telegnostic|1 +(adj)|extrasensory |paranormal +telegram|1 +(noun)|wire|message +telegraph|2 +(noun)|telegraphy|apparatus|setup +(verb)|cable|wire|telecommunicate +telegraph form|1 +(noun)|form +telegraph key|1 +(noun)|key +telegraph line|1 +(noun)|telephone wire|telephone line|telegraph wire|wire|conducting wire +telegraph operator|1 +(noun)|telegrapher|telegraphist|operator|manipulator +telegraph plant|1 +(noun)|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub|bush +telegraph pole|1 +(noun)|telephone pole|telegraph post|post +telegraph post|1 +(noun)|telephone pole|telegraph pole|post +telegraph wire|1 +(noun)|telephone wire|telephone line|telegraph line|wire|conducting wire +telegrapher|1 +(noun)|telegraphist|telegraph operator|operator|manipulator +telegraphese|1 +(noun)|non-standard speech +telegraphic|2 +(adj)|apparatus|setup +(adj)|concise +telegraphic signal|1 +(noun)|radiotelegraphic signal|signal|signaling|sign +telegraphically|1 +(adv)|tersely +telegraphist|1 +(noun)|telegrapher|telegraph operator|operator|manipulator +telegraphy|2 +(noun)|telecommunication|telecom +(noun)|telegraph|apparatus|setup +telekinesis|1 +(noun)|psychokinesis|psychic phenomena|psychic phenomenon|parapsychology +telemann|1 +(noun)|Telemann|Georg Philipp Telemann|composer +telemark|1 +(noun)|turn|turning +telemarketing|1 +(noun)|teleselling|telecommerce|selling|merchandising|marketing +telemeter|1 +(noun)|scientific instrument +telemetered|1 +(adj)|measurement|measuring|measure|mensuration +telemetry|1 +(noun)|measurement|measuring|measure|mensuration +telemetry intelligence|1 +(noun)|TELINT|signals intelligence|SIGINT +telencephalon|1 +(noun)|neural structure +teleological|1 +(adj)|philosophical doctrine|philosophical theory +teleologist|1 +(noun)|advocate|advocator|proponent|exponent +teleology|1 +(noun)|philosophical doctrine|philosophical theory +teleost|1 +(noun)|teleost fish|teleostan|bony fish +teleost fish|1 +(noun)|teleost|teleostan|bony fish +teleostan|1 +(noun)|teleost fish|teleost|bony fish +teleostei|1 +(noun)|Teleostei|subclass Teleostei|class +telepathic|1 +(adj)|extrasensory |paranormal +telepathise|1 +(verb)|telepathize|communicate|intercommunicate +telepathist|2 +(noun)|thought-reader|mental telepathist|mind reader|communicator +(noun)|mind reader|thought-reader|magician|prestidigitator|conjurer|conjuror|illusionist +telepathize|1 +(verb)|telepathise|communicate|intercommunicate +telepathy|1 +(noun)|thought transference|psychic communication|psychical communication|anomalous communication +telephone|3 +(noun)|phone|telephone set|electronic equipment +(noun)|telephony|telecommunication|telecom +(verb)|call|call up|phone|ring|telecommunicate +telephone bell|1 +(noun)|electric bell +telephone bill|1 +(noun)|phone bill|bill|account|invoice +telephone book|1 +(noun)|phonebook|phone book|telephone directory|directory +telephone booth|1 +(noun)|phone booth|call box|telephone box|telephone kiosk|booth|cubicle|stall|kiosk +telephone box|1 +(noun)|telephone booth|phone booth|call box|telephone kiosk|booth|cubicle|stall|kiosk +telephone call|1 +(noun)|call|phone call|telephone|telephony +telephone circuit|1 +(noun)|telephone line|phone line|subscriber line|line|connection|connexion|connector|connecter|connective +telephone company|1 +(noun)|telephone service|phone company|phone service|telco|utility|public utility|public-service corporation +telephone conversation|1 +(noun)|conversation +telephone cord|1 +(noun)|phone cord|telephone wire|telephone line|telegraph wire|telegraph line +telephone dial|1 +(noun)|dial|selector|selector switch +telephone directory|1 +(noun)|phonebook|phone book|telephone book|directory +telephone exchange|1 +(noun)|central|exchange|workplace|work +telephone extension|1 +(noun)|extension|extension phone|telephone|phone|telephone set +telephone interview|1 +(noun)|interview +telephone jack|1 +(noun)|phone jack|jack +telephone kiosk|1 +(noun)|telephone booth|phone booth|call box|telephone box|booth|cubicle|stall|kiosk +telephone line|2 +(noun)|telephone wire|telegraph wire|telegraph line|wire|conducting wire +(noun)|phone line|telephone circuit|subscriber line|line|connection|connexion|connector|connecter|connective +telephone message|1 +(noun)|phone message|message +telephone number|1 +(noun)|phone number|number|signal|signaling|sign +telephone operator|1 +(noun)|telephonist|switchboard operator|operator|manipulator +telephone order|1 +(noun)|telemarketing|teleselling|telecommerce +telephone plug|1 +(noun)|phone plug|plug|male plug +telephone pole|1 +(noun)|telegraph pole|telegraph post|post +telephone receiver|1 +(noun)|receiver|earphone|earpiece|headphone|phone +telephone service|1 +(noun)|telephone company|phone company|phone service|telco|utility|public utility|public-service corporation +telephone set|1 +(noun)|telephone|phone|electronic equipment +telephone system|1 +(noun)|phone system|communication system +telephone unit|1 +(noun)|unit of measurement|unit +telephone wire|1 +(noun)|telephone line|telegraph wire|telegraph line|wire|conducting wire +telephoner|1 +(noun)|caller|caller-up|phoner|speaker|talker|utterer|verbalizer|verbaliser +telephonic|1 +(adj)|telecommunication|telecom +telephonist|1 +(noun)|telephone operator|switchboard operator|operator|manipulator +telephony|1 +(noun)|telephone|telecommunication|telecom +telephoto|1 +(noun)|telephotograph|photograph|photo|exposure|pic +telephoto lens|1 +(noun)|zoom lens|camera lens|optical lens +telephotograph|2 +(noun)|photograph|photo|exposure|pic +(noun)|telephoto|photograph|photo|exposure|pic +telephotography|2 +(noun)|transmission|transmittal|transmitting +(noun)|photography|picture taking +teleport|1 +(verb)|transport +teleportation|1 +(noun)|transportation|transfer|transferral|conveyance +teleprinter|1 +(noun)|teletypewriter|teletype machine|telex|telex machine|character printer|character-at-a-time printer|serial printer +teleprocessing|1 +(noun)|distributed data processing|remote-access data processing|data processing +teleprompter|1 +(noun)|Teleprompter|prompter|autocue +telerobotics|1 +(noun)|robotics +telescope|3 +(noun)|scope|magnifier +(verb)|squash|crush|squelch|mash|squeeze +(verb)|digest|condense|concentrate +telescope sight|1 +(noun)|telescopic sight|gunsight|gun-sight +telescoped|1 +(adj)|shortened|short |short +telescopic|3 +(adj)|visible |seeable +(adj)|farsighted |presbyopic +(adj)|collapsible |collapsable +telescopic sight|1 +(noun)|telescope sight|gunsight|gun-sight +telescopium|1 +(noun)|Telescopium|constellation +teleselling|1 +(noun)|telemarketing|telecommerce|selling|merchandising|marketing +telethermometer|1 +(noun)|thermometer +teletype machine|1 +(noun)|teletypewriter|teleprinter|telex|telex machine|character printer|character-at-a-time printer|serial printer +teletypewriter|1 +(noun)|teleprinter|teletype machine|telex|telex machine|character printer|character-at-a-time printer|serial printer +televangelism|1 +(noun)|evangelism +televangelist|1 +(noun)|evangelist|revivalist|gospeler|gospeller +televise|1 +(verb)|telecast|air|send|broadcast|beam|transmit +television|3 +(noun)|telecasting|TV|video|broadcasting +(noun)|television receiver|television set|tv|tv set|idiot box|boob tube|telly|goggle box|receiver|receiving system +(noun)|television system|telecommunication system|telecom system|telecommunication equipment|telecom equipment +television-camera tube|1 +(noun)|television pickup tube|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +television announcer|1 +(noun)|tv announcer|announcer +television antenna|1 +(noun)|tv-antenna|omnidirectional antenna|nondirectional antenna +television camera|1 +(noun)|tv camera|camera|television equipment|video equipment +television channel|1 +(noun)|channel|TV channel|television station|TV station +television equipment|1 +(noun)|video equipment|electronic equipment +television monitor|1 +(noun)|tv monitor|monitor +television news|1 +(noun)|newscast +television newscaster|1 +(noun)|television reporter|TV reporter|TV newsman|reporter|newsman|newsperson +television pickup tube|1 +(noun)|television-camera tube|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +television program|1 +(noun)|TV program|television show|TV show|broadcast|program|programme +television receiver|1 +(noun)|television|television set|tv|tv set|idiot box|boob tube|telly|goggle box|receiver|receiving system +television reporter|1 +(noun)|television newscaster|TV reporter|TV newsman|reporter|newsman|newsperson +television room|1 +(noun)|tv room|room +television set|1 +(noun)|television receiver|television|tv|tv set|idiot box|boob tube|telly|goggle box|receiver|receiving system +television show|1 +(noun)|television program|TV program|TV show|broadcast|program|programme +television star|1 +(noun)|TV star|star|principal|lead +television station|1 +(noun)|TV station|station +television system|1 +(noun)|television|telecommunication system|telecom system|telecommunication equipment|telecom equipment +television transmitter|1 +(noun)|transmitter|sender +television tube|1 +(noun)|kinescope|picture tube|cathode-ray tube|CRT +teleworking|1 +(noun)|telecommuting|employment|work +telex|2 +(noun)|teletypewriter|teleprinter|teletype machine|telex machine|character printer|character-at-a-time printer|serial printer +(verb)|telecommunicate +telex machine|1 +(noun)|teletypewriter|teleprinter|teletype machine|telex|character printer|character-at-a-time printer|serial printer +telfer|1 +(noun)|telpher|conveyance|transport +telferage|1 +(noun)|telpherage|transportation system|transportation|transit +telingo potato|1 +(noun)|pungapung|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum|aroid +telint|1 +(noun)|telemetry intelligence|TELINT|signals intelligence|SIGINT +teliospore|1 +(noun)|chlamydospore +tell|9 +(noun)|Tell|William Tell|archer|bowman +(verb)|state|say|express|verbalize|verbalise|utter|give tongue to +(verb)|inform|tell off +(verb)|narrate|recount|recite|inform +(verb)|order|enjoin|say|request +(verb)|guess|infer +(verb)|assure|affirm|verify|assert|avow|aver|swan|swear +(verb)|evidence|inform|tell apart +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell apart|identify|place +tell apart|2 +(verb)|recognize|recognise|distinguish|discern|pick out|make out +(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|identify|place +tell off|1 +(verb)|brush down|call on the carpet|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast +tell on|2 +(verb)|denounce|betray|give away|rat|grass|shit|shop|snitch|stag|inform +(verb)|affect|impact|bear upon|bear on|touch on|touch +teller|4 +(noun)|Teller|Edward Teller|nuclear physicist +(noun)|vote counter|official|functionary +(noun)|cashier|bank clerk|banker +(noun)|narrator|storyteller|speaker|talker|utterer|verbalizer|verbaliser +tellima|1 +(noun)|Tellima|genus Tellima|rosid dicot genus +tellima affinis|1 +(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower +tellima grandiflora|1 +(noun)|false alumroot|fringe cups|Tellima grandiflora|wildflower|wild flower +telling|6 +(adj)|revealing|telltale|informative |informatory +(adj)|cogent|weighty|forceful +(adj)|impressive|effective |effectual|efficacious +(noun)|relation|recounting|narration|recital|yarn +(noun)|apprisal|notification|informing|making known +(noun)|tattle|singing|disclosure|revelation|revealing +telltale|2 +(adj)|revealing|telling|informative |informatory +(noun)|tattletale|tattler|taleteller|talebearer|blabbermouth|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +tellurian|2 +(adj)|telluric|terrestrial|terrene|object|physical object +(noun)|earthling|earthman|inhabitant|dweller|denizen|indweller +telluric|2 +(adj)|chemical element|element +(adj)|tellurian|terrestrial|terrene|object|physical object +telluride|1 +(noun)|compound|chemical compound +tellurium|1 +(noun)|Te|atomic number 52|chemical element|element +tellus|1 +(noun)|Tellus|Roman deity +telly|1 +(noun)|television receiver|television|television set|tv|tv set|idiot box|boob tube|goggle box|receiver|receiving system +telocentric|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +telocentric chromosome|1 +(noun)|chromosome +telomerase|1 +(noun)|enzyme +telomere|1 +(noun)|end +telopea|1 +(noun)|Telopea|genus Telopea|dicot genus|magnoliopsid genus +telopea oreades|1 +(noun)|waratah|Telopea Oreades|shrub|bush +telopea speciosissima|1 +(noun)|waratah|Telopea speciosissima|shrub|bush +telophase|2 +(noun)|phase of cell division +(noun)|phase of cell division +telosporidia|1 +(noun)|Telosporidia|subclass Telosporidia|class +telpher|1 +(noun)|telfer|conveyance|transport +telpherage|1 +(noun)|telferage|transportation system|transportation|transit +telsontail|1 +(noun)|proturan|insect +telugu|2 +(noun)|Telugu|Dravidian +(noun)|Telugu|South-Central Dravidian +temazepam|1 +(noun)|Restoril|benzodiazepine +temblor|1 +(noun)|earthquake|quake|seism|geological phenomenon +temerarious|1 +(adj)|brash|daredevil|bold +temerity|1 +(noun)|audacity|audaciousness|boldness|daring|hardihood +temnospondyli|1 +(noun)|Temnospondyli|order Temnospondyli|animal order +temp|1 +(noun)|temporary worker|worker +temper|9 +(noun)|pique|irritation|annoyance|chafe|vexation +(noun)|mood|humor|humour|feeling +(noun)|biliousness|irritability|peevishness|pettishness|snappishness|surliness|ill nature +(noun)|toughness|elasticity|snap +(verb)|anneal|normalize|toughen +(verb)|harden|modify +(verb)|adjust|set|correct +(verb)|season|mollify|weaken +(verb)|chasten|moderate|change|alter|modify +tempera|1 +(noun)|poster paint|poster color|poster colour|water-base paint +temperament|3 +(noun)|disposition|nature +(noun)|emotionality|emotionalism +(noun)|adjustment|registration|readjustment +temperamental|3 +(adj)|nature +(adj)|moody|emotional +(adj)|erratic|unreliable +temperance|3 +(noun)|moderation|restraint|control|natural virtue +(noun)|sobriety|abstinence +(noun)|combination|combining|compounding +temperate|3 +(adj)|temperate |equable|clement +(adj)|temperate |abstemious|light|moderate|restrained|mild|moderate +(adj)|moderate|mild +temperate rain forest|1 +(noun)|rain forest|rainforest +temperate zone|1 +(noun)|Temperate Zone|climatic zone +temperately|1 +(adv)|abstemiously +temperateness|2 +(noun)|fair weather|sunshine|weather|weather condition|atmospheric condition +(noun)|self-restraint|restraint|control +temperature|2 +(noun)|fundamental quantity|fundamental measure|physical property +(noun)|somesthesia|somaesthesia|somatesthesia|somatic sensation +temperature change|1 +(noun)|natural process|natural action|action|activity +temperature gradient|1 +(noun)|gradient +temperature reduction|1 +(noun)|cooling|chilling|temperature change +temperature scale|1 +(noun)|scale|scale of measurement|graduated table|ordered series|system of measurement|metric +temperature unit|1 +(noun)|unit of measurement|unit +tempered|2 +(adj)|tempered |treated|hardened|toughened|annealed|baked|burned|burnt|curable|sunbaked +(adj)|tempered |diluted|toned down|moderated|qualified|tuned +tempering|2 +(adj)|moderating +(noun)|annealing|hardening +tempest|2 +(noun)|storm|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|windstorm +tempest-swept|1 +(adj)|buffeted|storm-tossed|tempest-tossed|tempest-tost|troubled +tempest-tossed|1 +(adj)|buffeted|storm-tossed|tempest-tost|tempest-swept|troubled +tempest-tost|1 +(adj)|buffeted|storm-tossed|tempest-tossed|tempest-swept|troubled +tempestuous|1 +(adj)|angry|furious|raging|wild|stormy +tempestuousness|1 +(noun)|storminess +templar|1 +(noun)|Knight Templar|Templar|knight +template|1 +(noun)|templet|guide|model|example +template rna|1 +(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid|RNA +temple|4 +(noun)|place of worship|house of prayer|house of God|house of worship +(noun)|feature|lineament +(noun)|building|edifice +(noun)|synagogue|tabernacle|place of worship|house of prayer|house of God|house of worship +temple of apollo|1 +(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle +temple of artemis|1 +(noun)|Temple of Artemis|temple +temple of jerusalem|1 +(noun)|Temple of Jerusalem|Temple of Solomon|synagogue|temple|tabernacle +temple of solomon|1 +(noun)|Temple of Jerusalem|Temple of Solomon|synagogue|temple|tabernacle +temple orange|2 +(noun)|temple orange tree|tangor|king orange|Citrus nobilis|orange|orange tree +(noun)|orange +temple orange tree|1 +(noun)|temple orange|tangor|king orange|Citrus nobilis|orange|orange tree +temple tree|1 +(noun)|pagoda tree|Plumeria acutifolia|frangipani|frangipanni +templet|1 +(noun)|template|guide|model|example +templetonia|1 +(noun)|Templetonia|genus Templetonia|rosid dicot genus +templetonia retusa|1 +(noun)|coral bush|flame bush|Templetonia retusa|shrub|bush +tempo|2 +(noun)|pacing|musical time +(noun)|pace|rate +temporal|7 +(adj)|impermanent |temporary +(adj)|abstraction +(adj)|feature|lineament +(adj)|worldly +(adj)|worldly|profane +(adj)|earthly +(noun)|temporal role|semantic role|participant role +temporal arrangement|1 +(noun)|temporal order|temporal property +temporal arteritis|1 +(noun)|arteritis +temporal artery|1 +(noun)|cerebral artery|arteria cerebri +temporal bone|1 +(noun)|os temporale|bone|os +temporal canthus|1 +(noun)|canthus +temporal gyrus|1 +(noun)|gyrus|convolution +temporal lobe|1 +(noun)|lobe +temporal lobe epilepsy|1 +(noun)|psychomotor epilepsy|epilepsy +temporal muscle|1 +(noun)|temporalis muscle|temporalis|musculus temporalis|skeletal muscle|striated muscle +temporal order|1 +(noun)|temporal arrangement|temporal property +temporal property|1 +(noun)|property +temporal relation|1 +(noun)|relation +temporal role|1 +(noun)|temporal|semantic role|participant role +temporal vein|1 +(noun)|vena temporalis|vein|vena|venous blood vessel +temporalis|1 +(noun)|temporalis muscle|temporal muscle|musculus temporalis|skeletal muscle|striated muscle +temporalis muscle|1 +(noun)|temporal muscle|temporalis|musculus temporalis|skeletal muscle|striated muscle +temporality|1 +(noun)|temporalty|spiritualty|spirituality|church property +temporalty|2 +(noun)|temporality|spiritualty|spirituality|church property +(noun)|laity|multitude|masses|mass|hoi polloi|people +temporariness|1 +(noun)|impermanence|impermanency +temporary|2 +(adj)|impermanent |acting|ephemeral|passing|short-lived|transient|transitory|fugacious|episodic|fly-by-night|improvised|jury-rigged|makeshift|temporal|terminable|visiting|guest|working|evanescent|interim|pro tem|pro tempore|unstable +(adj)|irregular|part-time +temporary expedient|1 +(noun)|improvisation|expedient +temporary hookup|1 +(noun)|patch|connection|connexion|connector|connecter|connective|lash-up|contrivance +temporary injunction|1 +(noun)|interlocutory injunction|injunction|enjoining|enjoinment|cease and desist order +temporary removal|1 +(noun)|suspension|debarment +temporary state|1 +(noun)|state +temporary worker|1 +(noun)|temp|worker +temporise|1 +(verb)|temporize|prolong|protract|extend|draw out +temporiser|1 +(noun)|temporizer|delayer +temporize|1 +(verb)|temporise|prolong|protract|extend|draw out +temporizer|1 +(noun)|temporiser|delayer +temporomandibular joint|1 +(noun)|mandibular joint|articulatio temporomandibularis|synovial joint|articulatio synovialis|diarthrosis +tempra|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +tempt|6 +(verb)|allure|invite|bid +(verb)|entice|lure|provoke|stimulate +(verb)|invite|stimulate|shake|shake up|excite|stir +(verb)|charm|influence|persuade +(verb)|arouse|sex|excite|turn on|wind up +(verb)|persuade +temptable|1 +(adj)|susceptible +temptation|3 +(noun)|enticement|influence +(noun)|desire +(noun)|enticement|influence +tempter|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +tempting|2 +(adj)|alluring|beguiling|enticing|seductive +(adj)|tantalizing|tantalising|inviting +temptingly|1 +(adv)|seductively +temptingness|1 +(noun)|allure|allurement|attraction|attractiveness +temptress|1 +(noun)|enchantress|siren|Delilah|femme fatale|woman|adult female +tempura|1 +(noun)|dish +temuco|1 +(noun)|Temuco|city|metropolis|urban center +ten|2 +(adj)|10|x|cardinal +(noun)|10|X|tenner|decade|large integer +ten-day fern|1 +(noun)|leather fern|leatherleaf fern|Rumohra adiantiformis|Polystichum adiantiformis|fern +ten-gallon hat|1 +(noun)|cowboy hat|hat|chapeau|lid +ten-membered|1 +(adj)|s10-membered|membered +ten-spined stickleback|1 +(noun)|Gasterosteus pungitius|stickleback|prickleback +ten-spot|1 +(noun)|spot +ten-strike|1 +(noun)|strike|score +ten commandments|1 +(noun)|Decalogue|Ten Commandments|commandment +ten dollar bill|1 +(noun)|tenner|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +ten percent|1 +(noun)|one-tenth|tenth|tenth part|common fraction|simple fraction +ten thousand|2 +(adj)|cardinal +(noun)|10000|myriad|large integer +tenability|1 +(noun)|reasonableness|tenableness|plausibility|plausibleness +tenable|1 +(adj)|well-founded|reasonable |sensible +tenableness|1 +(noun)|reasonableness|tenability|plausibility|plausibleness +tenacious|3 +(adj)|bulldog|dogged|dour|pertinacious|unyielding|stubborn +(adj)|long|retentive +(adj)|coherent|adhesive +tenaciously|1 +(adv)|doggedly +tenaciousness|1 +(noun)|doggedness|perseverance|persistence|persistency|tenacity|pertinacity|determination|purpose +tenacity|1 +(noun)|doggedness|perseverance|persistence|persistency|tenaciousness|pertinacity|determination|purpose +tenancy|1 +(noun)|occupancy|residency|residence|abidance +tenant|4 +(noun)|renter|payer|remunerator +(noun)|holder|bearer +(noun)|resident|occupant|occupier +(verb)|inhabit|occupy +tenant farmer|1 +(noun)|farmer|husbandman|granger|sodbuster|tenant +tenanted|1 +(adj)|occupied|inhabited +tenantry|1 +(noun)|collection|aggregation|accumulation|assemblage +tench|1 +(noun)|Tinca tinca|cyprinid|cyprinid fish +tend|3 +(verb)|be given|lean|incline|run|be +(verb)|attend|take care|look|see +(verb)|take care|mind +tended to|1 +(adj)|attended|cared-for +tendencious|1 +(adj)|tendentious|partisan |partizan +tendency|4 +(noun)|inclination|disposition|attitude|mental attitude +(noun)|leaning|propensity|inclination +(noun)|inclination|disposition +(noun)|trend|direction|way +tendentious|1 +(adj)|tendencious|partisan |partizan +tendentiousness|1 +(noun)|bias|prejudice|preconception +tender|18 +(adj)|tender |caring|protective|sentimental|soft +(adj)|sensitive|sore|painful +(adj)|vulnerable|young |immature +(adj)|affectionate|caring|fond|lovesome|warm|loving +(adj)|tender |chewable|cuttable|crisp|crispy|short|tenderized|tenderised|flaky|flakey|edible|comestible|eatable +(adj)|tender |untoughened|delicate|soft|weak +(adj)|crank|cranky|tippy|unstable +(adj)|delicate +(noun)|legal tender|medium of exchange|monetary system +(noun)|attendant|attender|assistant|helper|help|supporter +(noun)|bid|offer|offering +(noun)|car|railcar|railway car|railroad car +(noun)|ship's boat|pinnace|cutter|boat +(noun)|supply ship|ship +(verb)|give|gift|present +(verb)|offer|bid +(verb)|offer|proffer +(verb)|tenderize|tenderise|change|alter|modify +tender loving care|1 +(noun)|TLC|care|attention|aid|tending +tender offer|1 +(noun)|offer|offering +tenderfoot|1 +(noun)|novice|beginner|tyro|tiro|initiate +tendergreen|1 +(noun)|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer|cruciferous plant +tenderhearted|2 +(adj)|loving +(adj)|compassionate +tenderheartedness|1 +(noun)|tenderness|compassion|compassionateness +tenderisation|1 +(noun)|tenderization|improvement +tenderise|1 +(verb)|tender|tenderize|change|alter|modify +tenderised|1 +(adj)|tenderized|tender +tenderiser|1 +(noun)|tenderizer|compound|chemical compound +tenderization|1 +(noun)|tenderisation|improvement +tenderize|1 +(verb)|tender|tenderise|change|alter|modify +tenderized|1 +(adj)|tenderised|tender +tenderizer|1 +(noun)|tenderiser|compound|chemical compound +tenderloin|2 +(noun)|combat zone|city district +(noun)|undercut|cut|cut of meat +tenderness|5 +(noun)|affectionateness|fondness|lovingness|warmth +(noun)|soreness|pain|hurting +(noun)|tenderheartedness|compassion|compassionateness +(noun)|affection|affectionateness|fondness|heart|warmheartedness|feeling +(noun)|softheartedness|concern +tending|2 +(adj)|apt|disposed|given|minded|inclined +(noun)|care|attention|aid|work +tendinitis|1 +(noun)|tendonitis|inflammation|redness|rubor +tendinous|1 +(adj)|sinewy|connective tissue +tendon|1 +(noun)|sinew|connective tissue +tendon of achilles|1 +(noun)|Achilles tendon|tendon of Achilles|tendon|sinew +tendonitis|1 +(noun)|tendinitis|inflammation|redness|rubor +tendrac|1 +(noun)|tenrec|insectivore +tendril|1 +(noun)|plant part|plant structure +tenebrific|1 +(adj)|tenebrous|tenebrious|dark +tenebrionid|1 +(noun)|darkling beetle|darkling groung beetle|weevil +tenebrionidae|1 +(noun)|Tenebrionidae|family Tenebrionidae|arthropod family +tenebrious|1 +(adj)|tenebrous|tenebrific|dark +tenebrous|1 +(adj)|tenebrific|tenebrious|dark +tenement|1 +(noun)|tenement house|apartment building|apartment house +tenement district|1 +(noun)|residential district|residential area|community +tenement house|1 +(noun)|tenement|apartment building|apartment house +tenerife|1 +(noun)|Tenerife|island +tenesmus|1 +(noun)|spasm|cramp|muscle spasm +tenet|1 +(noun)|dogma|religious doctrine|church doctrine|gospel|creed +tenfold|1 +(adj)|denary|multiple +teng hsiao-ping|1 +(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman|solon|national leader +teng hsiaoping|1 +(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman|solon|national leader +tenge|2 +(noun)|Turkmen monetary unit +(noun)|Kazakhstani monetary unit +tenia|1 +(noun)|taenia|fillet|headband +tenner|2 +(noun)|ten|10|X|decade|large integer +(noun)|ten dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +tennessean|1 +(noun)|Tennessean|American +tennessee|2 +(noun)|Tennessee|Volunteer State|TN|American state +(noun)|Tennessee|Tennessee River|river +tennessee river|1 +(noun)|Tennessee|Tennessee River|river +tennessee walker|1 +(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse|riding horse|mount +tennessee walking horse|1 +(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse|riding horse|mount +tennessee williams|1 +(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist|playwright +tenniel|1 +(noun)|Tenniel|Sir John Tenniel|cartoonist +tennis|1 +(noun)|lawn tennis|court game +tennis ball|1 +(noun)|ball +tennis camp|1 +(noun)|camp +tennis club|1 +(noun)|racket club +tennis coach|1 +(noun)|coach|manager|handler +tennis court|1 +(noun)|court +tennis elbow|1 +(noun)|lateral epicondylitis|lateral humeral epicondylitis|tendinitis|tendonitis|epicondylitis +tennis lesson|1 +(noun)|lesson +tennis match|1 +(noun)|match +tennis player|1 +(noun)|athlete|jock|player|participant +tennis pro|1 +(noun)|professional tennis player|tennis player +tennis racket|1 +(noun)|tennis racquet|racket|racquet +tennis racquet|1 +(noun)|tennis racket|racket|racquet +tennis shoe|1 +(noun)|gym shoe|sneaker|shoe +tennis shot|1 +(noun)|tennis stroke|stroke|shot +tennis stroke|1 +(noun)|tennis shot|stroke|shot +tenno|1 +(noun)|mikado|Emperor +tennyson|1 +(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet +tenon|1 +(noun)|projection +tenor|6 +(adj)|high |high-pitched +(adj)|high |high-pitched +(noun)|tenor voice|singing voice +(noun)|high pitch|high frequency +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|strain|meaning|substance +tenor clef|1 +(noun)|clef +tenor drum|1 +(noun)|tom-tom|drum|membranophone|tympan +tenor saxophonist|1 +(noun)|tenorist|saxophonist|saxist +tenor voice|1 +(noun)|tenor|singing voice +tenoretic|1 +(noun)|Tenoretic|antihypertensive|antihypertensive drug +tenorist|1 +(noun)|tenor saxophonist|saxophonist|saxist +tenormin|1 +(noun)|atenolol|Tenormin|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +tenoroon|1 +(noun)|bassoon +tenosynovitis|1 +(noun)|synovitis +tenpence|1 +(noun)|coin +tenpenny nail|1 +(noun)|nail +tenpin|1 +(noun)|bowling pin|pin +tenpin bowling|1 +(noun)|tenpins|bowling +tenpins|2 +(noun)|tenpin bowling|bowling +(noun)|tenpin|bowling pin|pin +tenpounder|1 +(noun)|ladyfish|Elops saurus|tarpon|Tarpon atlanticus +tenrec|1 +(noun)|tendrac|insectivore +tenrec ecaudatus|1 +(noun)|tailless tenrec|Tenrec ecaudatus|tenrec|tendrac +tenrecidae|1 +(noun)|Tenrecidae|family Tenrecidae|mammal family +tense|8 +(adj)|tense |aroused|wound up|cliff-hanging|suspenseful|suspensive|nail-biting|drawn|taut|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|electric|isotonic|nervous|strained|unrelaxed|pumped-up|pumped up|pumped|wired|agitated|uneasy +(adj)|tense |constricted +(adj)|tense |overstrung|taut|tight|tight +(noun)|grammatical category|syntactic category +(verb)|strain|tighten +(verb)|change|alter|modify +(verb)|tense up|change state|turn +(verb)|strain|tense up|affect +tense system|1 +(noun)|language system +tense up|2 +(verb)|tense|change state|turn +(verb)|tense|strain|affect +tensed|1 +(adj)|finite +tenseness|2 +(noun)|tension|tensity|tautness|condition|status +(noun)|tension|stress|strain|mental strain|nervous strain|vasoconstrictor|vasoconstrictive +tensile|2 +(adj)|stress +(adj)|ductile|malleable|pliable|pliant|tractile|elastic +tensile strength|1 +(noun)|lastingness|durability|enduringness|strength +tensimeter|1 +(noun)|manometer +tensiometer|3 +(noun)|measuring instrument|measuring system|measuring device +(noun)|measuring instrument|measuring system|measuring device +(noun)|measuring instrument|measuring system|measuring device +tension|6 +(noun)|latent hostility|hostility|enmity|antagonism +(noun)|tenseness|stress|strain|mental strain|nervous strain|vasoconstrictor|vasoconstrictive +(noun)|tensity|tenseness|tautness|condition|status +(noun)|balance +(noun)|stress +(noun)|stretching +tension headache|1 +(noun)|headache|head ache|cephalalgia +tensional|1 +(adj)|balance +tensionless|1 +(adj)|lax +tensity|1 +(noun)|tension|tenseness|tautness|condition|status +tensor|2 +(noun)|variable|variable quantity +(noun)|muscle|musculus +tensor tympani|1 +(noun)|tensor +tent|2 +(noun)|collapsible shelter|shelter +(verb)|camp|encamp|camp out|bivouac|dwell|shack|reside|live|inhabit|people|populate|domicile|domiciliate +tent-caterpillar moth|2 +(noun)|Malacosoma disstria|lasiocampid|lasiocampid moth +(noun)|Malacosoma americana|moth +tent-fly|1 +(noun)|rainfly|fly sheet|fly|tent flap|flap +tent caterpillar|1 +(noun)|caterpillar +tent flap|1 +(noun)|tent-fly|rainfly|fly sheet|fly|flap +tent peg|1 +(noun)|peg|nog +tent stitch|1 +(noun)|petit point|stitch +tentacle|2 +(noun)|grip|grasp +(noun)|process|outgrowth|appendage +tentacled|1 +(adj)|process|outgrowth|appendage +tentacular|1 +(adj)|process|outgrowth|appendage +tentaculata|1 +(noun)|Tentaculata|class Tentaculata|class +tentative|2 +(adj)|probationary|provisional|provisionary|conditional +(adj)|doubtful|unsettled +tenter|1 +(noun)|framework|frame|framing +tenterhook|1 +(noun)|hook|claw +tenth|3 +(adj)|10th|ordinal +(noun)|one-tenth|tenth part|ten percent|common fraction|simple fraction +(noun)|rank +tenth cranial nerve|1 +(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|wandering nerve|cranial nerve +tenth part|1 +(noun)|one-tenth|tenth|ten percent|common fraction|simple fraction +tenthredinidae|1 +(noun)|Tenthredinidae|family Tenthredinidae|arthropod family +tenting|1 +(noun)|camping|encampment|bivouacking|inhabitancy|inhabitation|habitation +tentmaker|1 +(noun)|maker|shaper +tentorial sinus|1 +(noun)|straight sinus|sinus rectus|venous sinus|sinus +tentorium|1 +(noun)|fold|plica +tenuity|3 +(noun)|thinness|slenderness|dimension +(noun)|feebleness|weakness +(noun)|rarity|low density|density|denseness +tenuous|3 +(adj)|flimsy|slight|thin|weak +(adj)|thin +(adj)|thin +tenure|3 +(noun)|term of office|incumbency|term +(noun)|land tenure|legal right +(verb)|promote|upgrade|advance|kick upstairs|raise|elevate +tenured|1 +(adj)|irremovable +tenzing norgay|1 +(noun)|Tenzing Norgay|Sherpa|mountaineer|mountain climber +teodor josef konrad korzeniowski|1 +(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer|author +tepal|1 +(noun)|plant part|plant structure +tepary bean|1 +(noun)|Phaseolus acutifolius latifolius|shell bean|shell bean plant +tepee|1 +(noun)|tipi|teepee|tent|collapsible shelter|lodge|indian lodge +tephrosia|1 +(noun)|Tephrosia|genus Tephrosia|rosid dicot genus +tephrosia purpurea|1 +(noun)|bastard indigo|Tephrosia purpurea|hoary pea +tephrosia virginiana|1 +(noun)|catgut|goat's rue|wild sweet pea|Tephrosia virginiana|hoary pea +tepic|1 +(noun)|Tepic|city|metropolis|urban center +tepid|1 +(adj)|lukewarm|warm +tepidity|1 +(noun)|lukewarmness|tepidness|warmth|warmness +tepidly|1 +(adv)|lukewarmly +tepidness|2 +(noun)|lukewarmness|tepidity|warmth|warmness +(noun)|lukewarmness|coldness|coolness|frigidity +tequila|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +tera|1 +(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara +terabyte|1 +(noun)|T|TB|computer memory unit +teraflop|1 +(noun)|trillion floating point operations per second|unit of measurement|unit +terahertz|1 +(noun)|THz|rate +teras|2 +(noun)|monster|fetus|foetus +(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara +teratogen|1 +(noun)|agent +teratogenesis|1 +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +teratogenic|1 +(adj)|agent +teratology|1 +(noun)|embryology +teratoma|1 +(noun)|tumor|tumour|neoplasm +terazosin|1 +(noun)|Hytrin|antihypertensive|antihypertensive drug|alpha blocker|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent +terbinafine|1 +(noun)|Lamisil|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent +terbium|1 +(noun)|Tb|atomic number 65|metallic element|metal +terbium metal|1 +(noun)|rare earth|rare-earth element|lanthanoid|lanthanide|lanthanon +terce|1 +(noun)|tierce|canonical hour +tercel|1 +(noun)|tiercel|tercelet|hawk +tercelet|1 +(noun)|tiercel|tercel|hawk +tercentenary|1 +(noun)|tercentennial|triennial|anniversary|day of remembrance +tercentennial|1 +(noun)|tercentenary|triennial|anniversary|day of remembrance +tercet|1 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|terzetto|trey|deuce-ace|digit|figure +terebella|1 +(noun)|Terebella|genus Terebella|worm genus +terebellidae|1 +(noun)|Terebellidae|family Terebellidae|worm family +terebinth|1 +(noun)|Pistacia terebinthus|angiospermous tree|flowering tree +teredinid|1 +(noun)|shipworm|clam +teredinidae|1 +(noun)|Teredinidae|family Teredinidae|mollusk family +teredo|1 +(noun)|shipworm|teredinid +terefah|1 +(adj)|nonkosher|tref|unclean |impure +terence|1 +(noun)|Terence|Publius Terentius Afer|dramatist|playwright +terence rattigan|1 +(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist|playwright +teres|1 +(noun)|teres muscle|skeletal muscle|striated muscle +teres major|1 +(noun)|teres major muscle|musculus teres major|teres|teres muscle +teres major muscle|1 +(noun)|teres major|musculus teres major|teres|teres muscle +teres minor|1 +(noun)|teres minor muscle|musculus teres minor|teres|teres muscle +teres minor muscle|1 +(noun)|teres minor|musculus teres minor|teres|teres muscle +teres muscle|1 +(noun)|teres|skeletal muscle|striated muscle +teresa|1 +(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun|missionary|missioner +tereshkova|1 +(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut|spaceman|cosmonaut +terete|1 +(adj)|rounded +tergiversate|2 +(verb)|beat around the bush|equivocate|prevaricate|palter|misinform|mislead +(verb)|apostatize|apostatise|renounce|repudiate +tergiversation|2 +(noun)|equivocation|falsification|misrepresentaation +(noun)|apostasy|abandonment|forsaking|desertion +teriyaki|1 +(noun)|dish +term|8 +(noun)|word +(noun)|time period|period of time|period +(noun)|condition|statement +(noun)|quantity +(noun)|constituent|grammatical constituent +(noun)|full term|point|point in time +(noun)|terminus|terminal figure|statue +(verb)|name|call +term infant|1 +(noun)|neonate|newborn|newborn infant|newborn baby +term insurance|1 +(noun)|insurance +term of a contract|1 +(noun)|lease|time period|period of time|period +term of enlistment|1 +(noun)|enlistment|hitch|tour of duty|duty tour|tour|time period|period of time|period +term of office|1 +(noun)|tenure|incumbency|term +term paper|1 +(noun)|composition|paper|report|theme|school assignment|schoolwork +termagant|1 +(noun)|shrew|unpleasant woman|disagreeable woman +termer|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +termes|1 +(noun)|Termes|genus Termes|arthropod genus +terminable|1 +(adj)|impermanent |temporary +terminable interest|1 +(noun)|interest|stake +terminal|8 +(adj)|endmost|last +(adj)|end +(adj)|time period|period of time|period +(adj)|concluding|final|last|closing +(adj)|fatal +(noun)|terminus|depot|station +(noun)|pole|contact|tangency +(noun)|electronic equipment +terminal emulation|1 +(noun)|emulation +terminal figure|1 +(noun)|terminus|term|statue +terminal leave|1 +(noun)|leave|leave of absence +terminal point|1 +(noun)|terminus ad quem|limit|end|ending +terminal velocity|1 +(noun)|speed|velocity +terminate|4 +(verb)|end|change|alter|modify +(verb)|end|stop|finish|cease +(verb)|end|be +(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|remove +terminated|2 +(adj)|complete|concluded|ended|over|all over|finished +(adj)|expired +termination|5 +(noun)|expiration|expiry|end|ending +(noun)|end point|endpoint|terminus|end +(noun)|result|resultant|final result|outcome|ending|conclusion|finish +(noun)|ending|morpheme +(noun)|ending|conclusion|change of state +terminative|1 +(adj)|closing +terminator|1 +(noun)|exterminator|eradicator|killer|slayer +terminological|1 +(adj)|word +terminology|1 +(noun)|nomenclature|language|word +terminus|5 +(noun)|end point|endpoint|termination|end +(noun)|destination|goal|end +(noun)|terminal figure|term|statue +(noun)|end +(noun)|terminal|depot|station +terminus a quo|1 +(noun)|starting point|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +terminus ad quem|1 +(noun)|terminal point|limit|end|ending +termite|1 +(noun)|white ant|insect +termitidae|1 +(noun)|Termitidae|family Termitidae|arthropod family +terms|9 +(noun)|footing|status|position +(noun)|price|damage|cost +(noun)|term|word +(noun)|term|time period|period of time|period +(noun)|condition|term|statement +(noun)|term|quantity +(noun)|term|constituent|grammatical constituent +(noun)|term|full term|point|point in time +(noun)|terminus|terminal figure|term|statue +tern|1 +(noun)|larid +ternary|2 +(adj)|treble|triple|triplex|multiple +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +ternate|1 +(adj)|compound +ternion|1 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +terpene|1 +(noun)|hydrocarbon +terpsichore|2 +(noun)|Terpsichore|Muse +(noun)|dancing|dance|saltation|diversion|recreation|performing arts +terpsichorean|1 +(adj)|diversion|recreation|performing arts +terra alba|3 +(noun)|gypsum +(noun)|pipeclay|clay +(noun)|china clay|china stone|kaolin|kaoline|porcelain clay|clay +terra cotta|1 +(noun)|earthenware +terra firma|1 +(noun)|land|dry land|earth|ground|solid ground|object|physical object +terra incognita|1 +(noun)|unknown|unknown region|region +terra sigillata|1 +(noun)|Samian ware|earthenware +terrace|5 +(noun)|patio|area +(noun)|bench|tableland|plateau +(noun)|row +(verb)|terrasse|supply|provide|render|furnish +(verb)|shape|form +terraced house|1 +(noun)|row house|town house +terrain|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +terrain flight|1 +(noun)|low level flight|flight|flying +terrain intelligence|1 +(noun)|tactical intelligence|combat intelligence +terramycin|1 +(noun)|oxytetracycline|hydroxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic|antibiotic drug +terrapene|1 +(noun)|Terrapene|genus Terrapene|reptile genus +terrapene ornata|1 +(noun)|Western box turtle|Terrapene ornata|box turtle|box tortoise +terrapin|1 +(noun)|turtle +terrarium|1 +(noun)|vivarium +terrasse|1 +(verb)|terrace|supply|provide|render|furnish +terrene|2 +(adj)|tellurian|telluric|terrestrial|object|physical object +(adj)|mundane|earthly +terreplein|1 +(noun)|space +terrestrial|5 +(adj)|tellurian|telluric|terrene|object|physical object +(adj)|planetary|terrestrial planet +(adj)|terrestrial +(adj)|mundane|worldly +(adj)|sublunar|sublunary|earthly +terrestrial dynamical time|1 +(noun)|terrestrial time|TT|TDT|ephemeris time|time unit|unit of time +terrestrial guidance|1 +(noun)|steering|guidance|direction +terrestrial planet|1 +(noun)|planet +terrestrial time|1 +(noun)|TT|terrestrial dynamical time|TDT|ephemeris time|time unit|unit of time +terrestrially|1 +(adv)|mundanely +terrible|4 +(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|alarming +(adj)|atrocious|abominable|awful|dreadful|painful|unspeakable|bad +(adj)|severe|wicked|intense +(adj)|fearful|frightful|bad +terribleness|1 +(noun)|awfulness|dreadfulness|horridness|unpleasantness +terribly|2 +(adv)|awfully|awful|frightfully +(adv)|atrociously|awfully|abominably|abysmally|rottenly +terrier|1 +(noun)|hunting dog +terrietia|1 +(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus +terrietia trifoliolata|1 +(noun)|red beech|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree|flowering tree +terrific|3 +(adj)|intense +(adj)|fantastic|howling|marvelous|marvellous|rattling|tremendous|wonderful|wondrous|extraordinary +(adj)|terrifying|alarming +terrifically|1 +(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|marvellously|marvelously +terrified|1 +(adj)|panicky|panicked|panic-stricken|panic-struck|frightened|afraid +terrify|1 +(verb)|terrorize|terrorise|frighten|fright|scare|affright +terrifying|1 +(adj)|terrific|alarming +terrine|1 +(noun)|dish +territorial|5 +(adj)|region +(adj)|territorial +(adj)|territorial |jurisdictional|regional +(noun)|soldier +(noun)|territorial reserve|militia|reserves +territorial army|1 +(noun)|Territorial Army|territorial|territorial reserve +territorial division|1 +(noun)|administrative district|administrative division|district|territory|territorial dominion|dominion +territorial dominion|1 +(noun)|district|territory|dominion|region +territorial reserve|1 +(noun)|territorial|militia|reserves +territorial waters|1 +(noun)|body of water|water +territorialisation|1 +(noun)|territorialization|organization|organisation +territorialise|3 +(verb)|territorialize|organize|organise +(verb)|territorialize|change|alter|modify +(verb)|territorialize|widen|broaden|extend +territoriality|1 +(noun)|behavior|behaviour +territorialization|1 +(noun)|territorialisation|organization|organisation +territorialize|3 +(verb)|territorialise|organize|organise +(verb)|territorialise|change|alter|modify +(verb)|territorialise|widen|broaden|extend +territory|3 +(noun)|district|territorial dominion|dominion|region +(noun)|area +(noun)|soil|geographical area|geographic area|geographical region|geographic region +terror|3 +(noun)|panic|fear|fearfulness|fright +(noun)|scourge|threat|person|individual|someone|somebody|mortal|human|soul +(noun)|brat|little terror|holy terror|imp|scamp|monkey|rascal|rapscallion|scalawag|scallywag +terror-stricken|1 +(adj)|terror-struck|afraid +terror-struck|1 +(adj)|terror-stricken|afraid +terrorisation|2 +(noun)|terrorization|frightening|bullying|intimidation +(noun)|terrorization|transgression|evildoing +terrorise|2 +(verb)|terrorize|coerce|hale|squeeze|pressure|force +(verb)|terrify|terrorize|frighten|fright|scare|affright +terrorism|1 +(noun)|act of terrorism|terrorist act|coercion +terrorist|2 +(adj)|violent +(noun)|radical +terrorist act|1 +(noun)|terrorism|act of terrorism|coercion +terrorist attack|1 +(noun)|surprise attack|coup de main|terrorism|act of terrorism|terrorist act +terrorist cell|1 +(noun)|radical cell|cell|cadre +terrorist group|1 +(noun)|terrorist organization|foreign terrorist organization|FTO|political movement +terrorist organization|1 +(noun)|terrorist group|foreign terrorist organization|FTO|political movement +terrorization|2 +(noun)|terrorisation|frightening|bullying|intimidation +(noun)|terrorisation|transgression|evildoing +terrorize|2 +(verb)|terrorise|coerce|hale|squeeze|pressure|force +(verb)|terrify|terrorise|frighten|fright|scare|affright +terry|2 +(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress +(noun)|terry cloth|terrycloth|fabric|cloth|material|textile|toweling|towelling +terry cloth|2 +(noun)|terry|terrycloth|fabric|cloth|material|textile|toweling|towelling +(noun)| +terry towel|1 +(noun)|Turkish towel|bath towel +terrycloth|1 +(noun)|terry|terry cloth|fabric|cloth|material|textile|toweling|towelling +terse|1 +(adj)|crisp|curt|laconic|concise +tersely|1 +(adv)|telegraphically +terseness|1 +(noun)|expressive style|style +tertian|2 +(adj)|repeat|repetition +(adj)|interval|musical interval +tertiary|2 +(adj)|third|3rd|ordinal +(noun)|Tertiary|Tertiary period|period|geological period +tertiary period|1 +(noun)|Tertiary|Tertiary period|period|geological period +tertiary syphilis|1 +(noun)|syphilis|syph|pox +tertigravida|1 +(noun)|gravida III|gravida +tertium quid|1 +(noun)|opposition|oppositeness +tertry|1 +(noun)|Tertry|battle of Tertry|pitched battle +tertullian|1 +(noun)|Tertullian|Quintus Septimius Florens Tertullianus|theologian|theologist|theologizer|theologiser +terylene|1 +(noun)|Dacron|Terylene|polyester +terza rima|1 +(noun)|poem|verse form +terzetto|1 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|trey|deuce-ace|digit|figure +tesla|2 +(noun)|flux density unit +(noun)|Tesla|Nikola Tesla|electrical engineer|inventor|discoverer|artificer +tesla coil|1 +(noun)|Tesla coil|transformer +tesselate|1 +(verb)|fit|go +tessella|1 +(noun)|tessera +tessellate|1 +(verb)|tile +tessellated|2 +(adj)|patterned +(adj)|mosaic|adorned |decorated +tessellation|2 +(noun)|juxtaposition|apposition|collocation +(noun)|decoration +tessera|1 +(noun)|tile +tessin|1 +(noun)|Ticino|Tessin|Swiss canton +test|13 +(noun)|mental test|mental testing|psychometric test|mental measurement +(noun)|trial|run|attempt|effort|endeavor|endeavour|try +(noun)|trial|attempt|effort|endeavor|endeavour|try +(noun)|trial|trial run|tryout|experiment|experimentation +(noun)|examination|exam|communication|communicating +(noun)|covering|natural covering|cover +(verb)|prove|try|try out|examine|essay|judge +(verb)|screen|check +(verb)|quiz|examine +(verb)|be +(verb)|score +(verb)|determine|check|find out|see|ascertain|watch|learn +(verb)|take|undergo|submit +test-cross|2 +(noun)|testcross|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +(noun)| +test-tube baby|1 +(noun)|baby|babe|infant +test ban|1 +(noun)|ban|banning|forbiddance|forbidding +test bed|1 +(noun)|workplace|work +test case|1 +(noun)|test suit|legal action|action|action at law +test copy|1 +(noun)|proof|trial impression|impression|printing +test drive|2 +(noun)|road test +(verb)|drive +test driver|1 +(noun)|driver +test equipment|1 +(noun)|equipment +test fly|1 +(verb)|fly|aviate|pilot +test instrument vehicle|1 +(noun)|test rocket|research rocket|rocket +test match|1 +(noun)|match game|matched game|match +test paper|2 +(noun)|examination paper|exam paper|question sheet|examination|exam|test +(noun)|indicator +test period|1 +(noun)|trial period|time period|period of time|period +test pilot|1 +(noun)|pilot|airplane pilot +test range|1 +(noun)|range +test rocket|1 +(noun)|research rocket|test instrument vehicle|rocket +test room|1 +(noun)|testing room|room +test suit|1 +(noun)|test case|legal action|action|action at law +test tube|1 +(noun)|tube|tubing +testa|1 +(noun)|episperm|seed coat|reproductive structure +testacea|1 +(noun)|Testacea|order Testacea|animal order +testacean|1 +(noun)|rhizopod|rhizopodan +testaceous|2 +(adj)|covering|natural covering|cover +(adj)|reproductive structure +testament|4 +(noun)|creed|credo +(noun)|will|legal document|legal instrument|official document|instrument +(noun)|testimony|testimonial +(noun)|Testament|sacred text|sacred writing|religious writing|religious text +testamentary|1 +(adj)|legal document|legal instrument|official document|instrument +testamentary trust|1 +(noun)|trust +testate|2 +(adj)|testate +(noun)|testator|person|individual|someone|somebody|mortal|human|soul +testator|1 +(noun)|testate|person|individual|someone|somebody|mortal|human|soul +testatrix|1 +(noun)|testator|testate +testcross|1 +(noun)|test-cross|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing +tested|2 +(adj)|tried|well-tried|proved |proven +(adj)|time-tested|tried|tried and true|reliable +testee|1 +(noun)|examinee|respondent|responder|answerer +tester|2 +(noun)|examiner|quizzer|inquirer|enquirer|questioner|querier|asker +(noun)|canopy +testicle|1 +(noun)|testis|orchis|ball|ballock|bollock|nut|egg|male reproductive gland|gonad|sex gland +testicular|1 +(adj)|male reproductive gland|gonad|sex gland +testicular artery|1 +(noun)|internal spermatic artery|arteria testicularis|artery|arteria|arterial blood vessel +testicular cancer|1 +(noun)|seminoma|carcinoma +testicular vein|1 +(noun)|vena testicularis|vein|vena|venous blood vessel +testiere|1 +(noun)|chanfron|chamfron|frontstall|front-stall|armor plate|armour plate|armor plating|plate armor|plate armour +testifier|1 +(noun)|deponent|witness|witnesser|informant +testify|2 +(verb)|attest|take the stand|bear witness|declare +(verb)|bear witness|prove|evidence|show|inform +testily|1 +(adv)|irritably|petulantly|pettishly +testimonial|5 +(adj)|approval|commendation +(adj)|evidence +(noun)|testimony|evidence +(noun)|tribute|approval|commendation +(noun)|recommendation|good word|praise|congratulations|kudos +testimonial immunity|1 +(noun)|use immunity|exemption|immunity|granting immunity +testimony|3 +(noun)|evidence +(noun)|assertion|averment|asseveration +(noun)|testimonial|evidence +testiness|1 +(noun)|touchiness|tetchiness|irritability|crossness|fretfulness|fussiness|peevishness|petulance|choler +testing|3 +(noun)|experiment|experimentation +(noun)|examination|scrutiny +(noun)|examination|investigation|investigating +testing ground|1 +(noun)|laboratory|region +testing room|1 +(noun)|test room|room +testis|1 +(noun)|testicle|orchis|ball|ballock|bollock|nut|egg|male reproductive gland|gonad|sex gland +testosterone|1 +(noun)|androgen|androgenic hormone +testudinata|1 +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +testudines|3 +(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order +(noun)|testudo|protective covering|protective cover|protection +(noun)|Testudo|genus Testudo|reptile genus +testudinidae|1 +(noun)|Testudinidae|family Testudinidae|reptile family +testudo|2 +(noun)|protective covering|protective cover|protection +(noun)|Testudo|genus Testudo|reptile genus +testudo graeca|1 +(noun)|European tortoise|Testudo graeca|tortoise +testy|1 +(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|tetchy|techy|ill-natured +tet|1 +(noun)|Tet|day +tetanic|2 +(adj)|syndrome +(adj)|infection +tetanilla|1 +(noun)|tetany|intermittent tetanus|intermittent cramp|apyretic tetanus|syndrome +tetanus|2 +(noun)|lockjaw|infection +(noun)|contraction|muscular contraction|muscle contraction +tetanus antitoxin|1 +(noun)|antitoxin +tetanus immune globulin|1 +(noun)|tetanus immunoglobulin|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +tetanus immunoglobulin|1 +(noun)|tetanus immune globulin|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin +tetany|1 +(noun)|tetanilla|intermittent tetanus|intermittent cramp|apyretic tetanus|syndrome +tetartanopia|1 +(noun)|yellow-blindness|yellow-blue dichromacy|yellow-blue color blindness +tetchiness|1 +(noun)|testiness|touchiness|irritability|crossness|fretfulness|fussiness|peevishness|petulance|choler +tetchy|1 +(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|techy|ill-natured +tete-a-tete|3 +(adj)|head-to-head|private +(noun)|conversation +(noun)|love seat|vis-a-vis|sofa|couch|lounge +teth|1 +(noun)|letter|letter of the alphabet|alphabetic character +tether|2 +(noun)|leash|lead|restraint|constraint +(verb)|attach +tetherball|1 +(noun)|athletic game +tethered|1 +(adj)|bound +tethyidae|1 +(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family +tethys|2 +(noun)|Tethys|Titaness +(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus +teton range|1 +(noun)|Teton Range|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +tetra|1 +(noun)|characin|characin fish|characid +tetrabasic acid|1 +(noun)|acid +tetrabromo-phenolsulfonephthalein|1 +(noun)|bromophenol blue|bromphenol blue|dye|dyestuff|acid-base indicator +tetracaine|1 +(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +tetrachlorethylene|1 +(noun)|tetrachloroethylene|ethylene tetrachloride|carbon dichloride|vermifuge|anthelmintic|anthelminthic|helminthic +tetrachloride|1 +(noun)|compound|chemical compound +tetrachloroethylene|1 +(noun)|tetrachlorethylene|ethylene tetrachloride|carbon dichloride|vermifuge|anthelmintic|anthelminthic|helminthic +tetrachloromethane|1 +(noun)|carbon tetrachloride|carbon tet|perchloromethane|solvent|dissolvent|dissolver|dissolving agent|resolvent|tetrachloride +tetrachoric correlation|1 +(noun)|tetrachoric correlation coefficient|correlation coefficient|coefficient of correlation|correlation +tetrachoric correlation coefficient|1 +(noun)|tetrachoric correlation|correlation coefficient|coefficient of correlation|correlation +tetraclinis|1 +(noun)|Tetraclinis|genus Tetraclinis|gymnosperm genus +tetraclinis articulata|1 +(noun)|sandarac|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress +tetracycline|1 +(noun)|Achromycin|antibacterial|antibacterial drug|bactericide +tetrad|1 +(noun)|four|4|IV|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit|figure +tetradecanoic acid|1 +(noun)|myristic acid|saturated fatty acid +tetraethyl lead|1 +(noun)|lead tetraethyl|antiknock +tetrafluoroethylene|1 +(noun)|fluorocarbon +tetragon|1 +(noun)|quadrilateral|quadrangle|polygon|polygonal shape +tetragonal|1 +(adj)|polygon|polygonal shape +tetragonia|1 +(noun)|Tetragonia|genus Tetragonia|caryophylloid dicot genus +tetragonia expansa|1 +(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb|herbaceous plant +tetragonia tetragonioides|1 +(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb|herbaceous plant +tetragoniaceae|1 +(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family +tetragonurus|1 +(noun)|Tetragonurus|genus Tetragonurus|fish genus +tetragram|1 +(noun)|written word +tetragrammaton|1 +(noun)|Tetragrammaton|tetragram +tetrahalide|1 +(noun)|halide +tetrahedron|1 +(noun)|polyhedron +tetrahydrocannabinol|1 +(noun)|THC|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +tetrahymena|1 +(noun)|ciliate|ciliated protozoan|ciliophoran +tetraiodothyronine|1 +(noun)|thyroxine|thyroxin|T|thyroid hormone +tetralogy|1 +(noun)|serial|series +tetralogy of fallot|1 +(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect|syndrome +tetramerous|1 +(adj)|multilateral |many-sided +tetrameter|1 +(noun)|verse|verse line +tetramethyldiarsine|1 +(noun)|cacodyl|organic compound +tetrametric|1 +(adj)|verse|verse line +tetraneuris|1 +(noun)|Tetraneuris|genus Tetraneuris|asterid dicot genus +tetraneuris acaulis|1 +(noun)|stemless hymenoxys|Tetraneuris acaulis|Hymenoxys acaulis|wildflower|wild flower +tetraneuris grandiflora|1 +(noun)|old man of the mountain|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower|wild flower +tetranychid|1 +(noun)|spider mite|mite +tetranychidae|1 +(noun)|Tetranychidae|family Tetranychidae|arthropod family +tetrao|1 +(noun)|Tetrao|genus Tetrao|bird genus +tetrao urogallus|1 +(noun)|capercaillie|capercailzie|horse of the wood|Tetrao urogallus|grouse +tetraodontidae|1 +(noun)|Tetraodontidae|family Tetraodontidae|fish family +tetraonidae|1 +(noun)|Tetraonidae|family Tetraonidae|bird family +tetrapod|1 +(noun)|vertebrate|craniate +tetrapturus|1 +(noun)|Tetrapturus|genus Tetrapturus|fish genus +tetrasaccharide|1 +(noun)|oligosaccharide +tetraskele|1 +(noun)|tetraskelion|design|pattern|figure +tetraskelion|1 +(noun)|tetraskele|design|pattern|figure +tetrasodium pyrophosphate|1 +(noun)|sodium pyrophosphate|builder|detergent builder +tetrasporangium|1 +(noun)|sporangium|spore case|spore sac +tetraspore|1 +(noun)|spore +tetravalent|1 +(adj)|power|powerfulness +tetri|1 +(noun)|Georgian monetary unit +tetrode|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +tetrose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +tetterwort|1 +(noun)|bloodroot|puccoon|redroot|Sanguinaria canadensis|herb|herbaceous plant +tettigoniid|1 +(noun)|long-horned grasshopper|grasshopper|hopper +tettigoniidae|1 +(noun)|Tettigoniidae|family Tettigoniidae|arthropod family +teucrium|1 +(noun)|Teucrium|genus Teucrium|asterid dicot genus +teucrium canadense|1 +(noun)|American germander|wood sage|Teucrium canadense|germander +teucrium chamaedrys|1 +(noun)|wall germander|Teucrium chamaedrys|germander +teucrium marum|1 +(noun)|cat thyme|marum|Teucrium marum|germander +teucrium scorodonia|1 +(noun)|wood sage|Teucrium scorodonia|germander +teutoburger wald|1 +(noun)|Teutoburger Wald|battle of Teutoburger Wald|pitched battle +teuton|2 +(noun)|Teuton|German +(noun)|Teuton|European +teutonic|2 +(adj)|Teutonic|Germanic|European +(adj)|German|Germanic|Teutonic|European country|European nation +teutonic deity|1 +(noun)|Teutonic deity|deity|divinity|god|immortal +tevere|1 +(noun)|Tiber|Tevere|river +tevet|1 +(noun)|Tebet|Tevet|Jewish calendar month +tewkesbury|1 +(noun)|Tewkesbury|battle of Tewkesbury|pitched battle +texan|2 +(adj)|Texan|American state +(noun)|Texan|American +texarkana|2 +(noun)|Texarkana|town +(noun)|Texarkana|town +texas|1 +(noun)|Texas|Lone-Star State|TX|American state +texas armadillo|1 +(noun)|peba|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo +texas bluebonnet|2 +(noun)|Texas bluebonnet|Lupinus texensis|lupine|lupin +(noun)|bluebonnet|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine|lupin +texas chachalaca|1 +(noun)|Texas chachalaca|Ortilis vetula macalli|chachalaca +texas fever|1 +(noun)|Texas fever|animal disease +texas horned lizard|1 +(noun)|Texas horned lizard|Phrynosoma cornutum|horned lizard|horned toad|horny frog +texas independence day|1 +(noun)|Texas Independence Day|March 2|day +texas leaguer|1 +(noun)|Texas leaguer|fly|fly ball +texas longhorn|1 +(noun)|longhorn|Texas longhorn|beef|beef cattle +texas millet|1 +(noun)|goose grass|Texas millet|Panicum Texanum|panic grass +texas purple spike|1 +(noun)|Texas purple spike|Hexalectris warnockii|orchid|orchidaceous plant +texas ranger|1 +(noun)|Texas Ranger|Ranger|lawman|law officer|peace officer +texas snowbell|1 +(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax +texas snowbells|2 +(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax +(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax +texas star|2 +(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia +(noun)|Texas star|Lindheimera texana|flower +texas storksbill|1 +(noun)|Texas storksbill|Erodium texanum|storksbill|heron's bill +texas toad|1 +(noun)|Texas toad|Bufo speciosus|true toad +texas tortoise|1 +(noun)|Texas tortoise|tortoise +text|4 +(noun)|textual matter|matter +(noun)|passage +(noun)|textbook|text edition|schoolbook|school text|book +(noun)|matter +text edition|1 +(noun)|textbook|text|schoolbook|school text|book +text editor|2 +(noun)|copy editor|copyreader|editor|editor in chief +(noun)|editor program|editor +text file|1 +(noun)|document|computer file +textbook|2 +(adj)|casebook|standard +(noun)|text|text edition|schoolbook|school text|book +textile|2 +(adj)|artifact|artefact +(noun)|fabric|cloth|material|artifact|artefact +textile machine|1 +(noun)|machine +textile mill|1 +(noun)|factory|mill|manufacturing plant|manufactory +textile screw pine|1 +(noun)|lauhala|Pandanus tectorius|pandanus|screw pine +textual|1 +(adj)|matter +textual criticism|1 +(noun)|criticism|literary criticism +textual matter|1 +(noun)|text|matter +texture|4 +(noun)|tactile property|feel +(noun)|quality|character|lineament +(noun)|musicality|musicalness +(noun)|visual property +textured|1 +(adj)|rough-textured|rough |unsmooth +th|2 +(noun)|Thursday|Th|weekday +(noun)|thorium|Th|atomic number 90|metallic element|metal +thackeray|1 +(noun)|Thackeray|William Makepeace Thackeray|writer|author +thaddaeus|1 +(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle|saint +thaddeus kosciusko|1 +(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot|nationalist|soldier +thai|5 +(adj)|Thai|Tai|Siamese|Asian|Asiatic +(adj)|Thai|Tai|Siamese|Tai +(adj)|Thai|Tai|Siamese|Asian country|Asian nation +(noun)|Thai|Tai|Siamese|Asian|Asiatic +(noun)|Thai|Siamese|Central Thai|Tai +thai monetary unit|1 +(noun)|Thai monetary unit|monetary unit +thailand|1 +(noun)|Thailand|Kingdom of Thailand|Siam|Asian country|Asian nation +thalamostriate vein|1 +(noun)|vein|vena|venous blood vessel +thalamus|1 +(noun)|neural structure +thalarctos|1 +(noun)|Thalarctos|genus Thalarctos|mammal genus +thalarctos maritimus|1 +(noun)|ice bear|polar bear|Ursus Maritimus|Thalarctos maritimus|bear +thalassaemia|1 +(noun)|thalassemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia|hypochromic anaemia|monogenic disorder|monogenic disease +thalassaemia major|1 +(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia +thalassemia|1 +(noun)|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia|hypochromic anaemia|monogenic disorder|monogenic disease +thalassemia major|1 +(noun)|Cooley's anemia|Cooley's anaemia|thalassaemia major|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia +thalassic|1 +(adj)|body of water|water +thalassoma|1 +(noun)|Thalassoma|genus Thalassoma|fish genus +thalassoma bifasciatum|1 +(noun)|bluehead|Thalassoma bifasciatum|wrasse +thales|1 +(noun)|Thales|Thales of Miletus|philosopher|astronomer|uranologist|stargazer +thales of miletus|1 +(noun)|Thales|Thales of Miletus|philosopher|astronomer|uranologist|stargazer +thalia|2 +(noun)|Thalia|Muse +(noun)|Thalia|Grace +thaliacea|1 +(noun)|Thaliacea|class Thaliacea|class +thalictrum|1 +(noun)|Thalictrum|genus Thalictrum|magnoliid dicot genus +thalidomide|1 +(noun)|sedative-hypnotic|sedative-hypnotic drug|teratogen +thalidone|1 +(noun)|chlorthalidone|Hygroton|Thalidone|diuretic drug|diuretic|water pill +thallium|1 +(noun)|Tl|atomic number 81|metallic element|metal +thalloid|1 +(adj)|plant part|plant structure +thallophyta|1 +(noun)|Thallophyta|division +thallophyte|1 +(noun)|cryptogam +thallophytic|1 +(adj)|cryptogam +thallus|1 +(noun)|plant part|plant structure +thalmencephalon|1 +(noun)|diencephalon|interbrain|betweenbrain|neural structure +thalweg|2 +(noun)|boundary|edge|bound +(noun)|contour|contour line +thames|1 +(noun)|Thames|River Thames|Thames River|river +thames river|1 +(noun)|Thames|River Thames|Thames River|river +thammuz|1 +(noun)|Tammuz|Thammuz|Jewish calendar month +thamnophilus|1 +(noun)|Thamnophilus|genus Thamnophilus|bird genus +thamnophis|1 +(noun)|Thamnophis|genus Thamnophis|reptile genus +thamnophis proximus|1 +(noun)|Western ribbon snake|Thamnophis proximus|garter snake|grass snake +thamnophis sauritus|1 +(noun)|ribbon snake|Thamnophis sauritus|garter snake|grass snake +thamnophis sirtalis|1 +(noun)|common garter snake|Thamnophis sirtalis|garter snake|grass snake +thanatology|1 +(noun)|science|scientific discipline +thanatophobia|1 +(noun)|simple phobia +thanatos|1 +(noun)|Thanatos|Greek deity +thane|2 +(noun)|Lord|noble|nobleman +(noun)|citizen +thaneship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +thank|1 +(verb)|give thanks|convey|impart +thank offering|1 +(noun)|offering +thank you|1 +(noun)|thanks +thankful|1 +(adj)|grateful |appreciative|glad +thankfulness|1 +(noun)|gratefulness|appreciativeness|gratitude +thankless|2 +(adj)|ungrateful |unthankful|unappreciative +(adj)|unappreciated|ungratifying|unrewarding +thankless wretch|1 +(noun)|ingrate|ungrateful person|unwelcome person|persona non grata +thanks|2 +(noun)|acknowledgment|acknowledgement +(noun)|aid|assist|assistance|help +thanksgiving|2 +(noun)|Thanksgiving|Thanksgiving Day|legal holiday|national holiday|feast day|fete day +(noun)|grace|blessing|prayer|petition|orison|thanks +thanksgiving cactus|1 +(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus +thanksgiving day|1 +(noun)|Thanksgiving|Thanksgiving Day|legal holiday|national holiday|feast day|fete day +tharp|1 +(noun)|Tharp|Twyla Tharp|dancer|professional dancer|choreographer +that is|1 +(adv)|i.e.|ie|id est +that is to say|1 +(adv)|namely|viz.|videlicet +thatch|5 +(noun)|hairdo|hair style|coiffure +(noun)|roofing material +(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate|buccaneer|sea robber|sea rover +(noun)|thatched roof|roof +(verb)|roof +thatch palm|1 +(noun)|thatch tree|silver thatch|broom palm|Thrinax parviflora|fan palm +thatch tree|1 +(noun)|thatch palm|silver thatch|broom palm|Thrinax parviflora|fan palm +thatched roof|1 +(noun)|thatch|roof +thatcher|2 +(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman +(noun)|roofer +thatcherism|1 +(noun)|Thatcherism|policy +thatcherite|1 +(noun)|Thatcherite|advocate|advocator|proponent|exponent +thaumatolatry|1 +(noun)|miracle-worship|idolatry|devotion|veneration|cultism +thaw|4 +(noun)|melt|thawing|melting|heating|warming|phase change|phase transition|state change|physical change +(noun)|thawing|warming|weather|weather condition|atmospheric condition +(noun)|relaxation|loosening|slackening +(verb)|dissolve|unfreeze|unthaw|dethaw|melt|liquefy|flux|liquify +thawed|2 +(adj)|melted |liquid|liquified +(adj)|unfrozen +thawing|2 +(noun)|thaw|melt|melting|heating|warming|phase change|phase transition|state change|physical change +(noun)|thaw|warming|weather|weather condition|atmospheric condition +thb|1 +(noun)|Bachelor of Theology|ThB|bachelor's degree|baccalaureate +thc|1 +(noun)|tetrahydrocannabinol|THC|psychoactive drug|mind-altering drug|consciousness-altering drug|psychoactive substance +thd|1 +(noun)|Doctor of Theology|ThD|doctor's degree|doctorate +the admirable crichton|1 +(noun)|Crichton|James Crichton|The Admirable Crichton|scholar|scholarly person|student +the alps|1 +(noun)|Alps|the Alps|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +the americas|1 +(noun)|America|the Americas|land|dry land|earth|ground|solid ground|terra firma +the argentine|1 +(noun)|Argentina|Argentine Republic|the Argentine|South American country|South American nation +the armada|1 +(noun)|The Armada|Spanish Armada|Invincible Armada|armada +the bard|1 +(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|dramatist|playwright|poet +the book of mormon|1 +(noun)|Book of Mormon|The Book of Mormon|sacred text|sacred writing|religious writing|religious text +the boy orator of the platte|1 +(noun)|Bryan|William Jennings Bryan|the Great Commoner|The Boy Orator of the Platte|politician|politico|pol|political leader|lawyer|attorney +the british|1 +(noun)|British|British people|the British|Brits|nation|land|country|a people +the bronx|1 +(noun)|Bronx|The Bronx|borough +the buddha|1 +(noun)|Buddha|the Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic|religious mystic +the calculus|1 +(noun)|calculus|infinitesimal calculus|pure mathematics +the centaur|1 +(noun)|Centaurus|Centaur|The Centaur|constellation +the city|2 +(noun)|City of London|the City|center|centre|middle|heart|eye +(noun)|the City|market|securities industry +the crane|1 +(noun)|Grus|the Crane|constellation +the depression|1 +(noun)|Depression|the Depression|the Great Depression|time period|period of time|period +the devil|2 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +(noun)|trouble|difficulty +the doldrums|1 +(noun)|doldrums|wind|air current|current of air +the english|1 +(noun)|English|English people|the English|nation|land|country|a people +the english hippocrates|1 +(noun)|Sydenham|Thomas Sydenham|The English Hippocrates|doctor|doc|physician|MD|Dr.|medico +the fates|1 +(noun)|Fates|the Fates|Weird Sisters|deity|divinity|god|immortal +the father of radio|1 +(noun)|De Forest|Lee De Forest|The Father of Radio|electrical engineer|inventor|discoverer|artificer +the gambia|1 +(noun)|Gambia|The Gambia|Republic of The Gambia|African country|African nation +the gloomy dean|1 +(noun)|Inge|William Ralph Inge|the Gloomy Dean|archpriest|hierarch|high priest|prelate|primate +the goat god|1 +(noun)|Pan|Greek deity +the good old days|1 +(noun)|auld langsyne|langsyne|old times|past|past times|yesteryear|yore +the great calamity|1 +(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine +the great charter|1 +(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter +the great commoner|1 +(noun)|Bryan|William Jennings Bryan|the Great Commoner|The Boy Orator of the Platte|politician|politico|pol|political leader|lawyer|attorney +the great compromiser|1 +(noun)|Clay|Henry Clay|the Great Compromiser|politician|politico|pol|political leader +the great depression|1 +(noun)|Depression|the Depression|the Great Depression|time period|period of time|period +the great elector|1 +(noun)|Frederick William|the Great Elector|Elector +the great hunger|1 +(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine +the great starvation|1 +(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine +the green-eyed monster|1 +(noun)|envy|enviousness|resentment|bitterness|gall|rancor|rancour +the hague|1 +(noun)|The Hague|'s Gravenhage|Den Haag|city|metropolis|urban center +the hill|1 +(noun)|Capitol Hill|the Hill|hill +the himalaya|1 +(noun)|Himalayas|Himalaya Mountains|the Himalaya|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +the holy see|1 +(noun)|Holy See|The Holy See|State of the Vatican City|European country|European nation|see +the hunter|1 +(noun)|Orion|The Hunter|constellation|diffuse nebula|gaseous nebula +the indies|1 +(noun)|West Indies|the Indies|archipelago +the irish|1 +(noun)|Irish|Irish people|the Irish|nation|land|country|a people +the irish famine|1 +(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine +the iron duke|1 +(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|the Iron Duke|general|full general|statesman|solon|national leader +the jersey lillie|1 +(noun)|Langtry|Lillie Langtry|the Jersey Lillie|Emilie Charlotte le Breton|actress +the king of swing|1 +(noun)|Goodman|Benny Goodman|Benjamin David Goodman|the King of Swing|clarinetist|clarinettist|bandleader +the kingmaker|1 +(noun)|Warwick|Earl of Warwick|Richard Neville|the Kingmaker|statesman|solon|national leader +the lady with the lamp|1 +(noun)|Nightingale|Florence Nightingale|the Lady with the Lamp|nurse +the least bit|1 +(adv)|at all|in the least +the like|1 +(noun)|the likes of|kind|sort|form|variety +the likes of|1 +(noun)|the like|kind|sort|form|variety +the little corporal|1 +(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|the Little Corporal|general|full general|Emperor +the little giant|1 +(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|The Little Giant|politician|politico|pol|political leader +the living dead|1 +(noun)|zombi|zombie|dead person|dead soul|deceased person|deceased|decedent|departed +the manassa mauler|1 +(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|The Manassa Mauler|prizefighter|gladiator +the march king|1 +(noun)|Sousa|John Philip Sousa|The March King|bandmaster|composer +the nazarene|1 +(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son|Word|Logos|Jew|Hebrew|Israelite|prophet +the netherlands|1 +(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Holland|European country|European nation +the other way around|1 +(adv)|vice versa|contrariwise +the pit|1 +(noun)|Hell|perdition|Inferno|infernal region|nether region|imaginary place|mythical place +the pits|2 +(noun)|hell|hell on earth|hellhole|snake pit|inferno|region|part +(noun)|Hell|perdition|Inferno|infernal region|nether region|the pit|imaginary place|mythical place +the queen city|1 +(noun)|Charlotte|The Queen City|city|metropolis|urban center +the right way|1 +(adv)|properly|decently|decent|in good order|right +the sailor king|1 +(noun)|William IV|The Sailor King|King of England|King of Great Britain +the say hey kid|1 +(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|the Say Hey Kid|ballplayer|baseball player +the shiites|1 +(noun)|Shiah|Shia|Shiah Islam|the Shiites|sect|religious sect|religious order +the shits|1 +(noun)|the trots|diarrhea|diarrhoea|looseness of the bowels +the skinny|1 +(noun)|dope|poop|low-down|details|inside information +the solent|1 +(noun)|Solent|the Solent|strait|sound +the star-spangled banner|1 +(noun)|The Star-Spangled Banner|national anthem +the street|1 +(noun)|Wall Street|the Street|market|securities industry +the sublime|1 +(noun)|sublimity|nobility|magnanimousness|grandeur +the sunnites|1 +(noun)|Sunni|the Sunnites|sect|religious sect|religious order +the swiss|1 +(noun)|Swiss|Swiss people|the Swiss|nation|land|country|a people +the taal|1 +(noun)|Afrikaans|Taal|the Taal|South African Dutch|Dutch +the tempter|1 +(noun)|Satan|Old Nick|Devil|the Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being|supernatural being +the three weird sisters|1 +(noun)|the Weird Sisters|the Three Weird Sisters|Anglo-Saxon deity +the trapezium|1 +(noun)|Trapezium|the Trapezium|multiple star +the triangle|1 +(noun)|Triangulum|the Triangle|constellation +the trots|1 +(noun)|the shits|diarrhea|diarrhoea|looseness of the bowels +the true|1 +(noun)|truth|verity|actuality +the venerable bede|1 +(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor|historian|historiographer +the virgin|1 +(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess|mother|female parent +the weird sisters|1 +(noun)|the Weird Sisters|the Three Weird Sisters|Anglo-Saxon deity +the whole way|1 +(adv)|all the way +thea|1 +(noun)|Thea|Theia|Titaness +theaceae|1 +(noun)|Theaceae|family Theaceae|tea family|dilleniid dicot family +theanthropism|2 +(noun)|theological doctrine|religious doctrine +(noun)|anthropomorphism|representational process +theater|3 +(noun)|theatre|house|building|edifice +(noun)|dramaturgy|dramatic art|dramatics|theatre|communication|communicating +(noun)|field|field of operations|theater of operations|theatre|theatre of operations|region +theater company|1 +(noun)|company|troupe +theater critic|1 +(noun)|drama critic|critic +theater curtain|1 +(noun)|theatre curtain|curtain|drape|drapery|mantle|pall +theater director|1 +(noun)|director|theatre director|supervisor +theater in the round|1 +(noun)|arena theater|theater|theatre|house +theater light|1 +(noun)|light|light source +theater of operations|1 +(noun)|field|field of operations|theater|theatre|theatre of operations|region +theater of the absurd|1 +(noun)|play|drama|dramatic play +theater of war|1 +(noun)|theatre of war|region +theater prompter|1 +(noun)|prompter|assistant|helper|help|supporter +theater stage|1 +(noun)|theatre stage|stage +theater ticket|1 +(noun)|theatre ticket|ticket +theatergoer|1 +(noun)|playgoer|theatregoer|spectator|witness|viewer|watcher|looker +theatre|3 +(noun)|theater|house|building|edifice +(noun)|dramaturgy|dramatic art|dramatics|theater|communication|communicating +(noun)|field|field of operations|theater|theater of operations|theatre of operations|region +theatre curtain|1 +(noun)|theater curtain|curtain|drape|drapery|mantle|pall +theatre director|1 +(noun)|director|theater director|supervisor +theatre of operations|1 +(noun)|field|field of operations|theater|theater of operations|theatre|region +theatre of war|1 +(noun)|theater of war|region +theatre stage|1 +(noun)|theater stage|stage +theatre ticket|1 +(noun)|theater ticket|ticket +theatregoer|1 +(noun)|playgoer|theatergoer|spectator|witness|viewer|watcher|looker +theatrical|3 +(adj)|communication|communicating +(adj)|theatrical |histrionic|melodramatic|showy|stagy|stagey +(noun)|theatrical performance|representation|histrionics|performance|public presentation +theatrical agent|1 +(noun)|actor's agent|business agent +theatrical performance|1 +(noun)|theatrical|representation|histrionics|performance|public presentation +theatrical poster|1 +(noun)|show bill|show card|poster|posting|placard|notice|bill|card +theatrical producer|1 +(noun)|producer +theatrical production|1 +(noun)|staging|production +theatrical role|1 +(noun)|character|role|part|persona|portrayal|characterization|enactment|personation +theatrical season|1 +(noun)|season +theatricality|1 +(noun)|staginess|artificiality +theatrically|1 +(adv)|stagily +theban|1 +(noun)|Theban|Greek|Hellene +thebe|1 +(noun)|Botswana monetary unit +thebes|3 +(noun)|Thebes|city|metropolis|urban center +(noun)|Thebes|city|metropolis|urban center +(noun)|thebe|Botswana monetary unit +theca|2 +(noun)|sac|covering|natural covering|cover +(noun)|sheath|case +thecodont|1 +(noun)|thecodont reptile|archosaur|archosaurian|archosaurian reptile +thecodont reptile|1 +(noun)|thecodont|archosaur|archosaurian|archosaurian reptile +thecodontia|1 +(noun)|Thecodontia|order Thecodontia|animal order +theelin|1 +(noun)|estrone|oestrone|Estronol|estrogen|oestrogen|ketosteroid +theft|1 +(noun)|larceny|thievery|thieving|stealing|felony +theia|1 +(noun)|Thea|Theia|Titaness +theism|1 +(noun)|religion|faith|religious belief +theist|2 +(adj)|theistical|theistic|religion|faith|religious belief +(noun)|believer|worshiper|worshipper +theistic|1 +(adj)|theist|theistical|religion|faith|religious belief +theistical|1 +(adj)|theist|theistic|religion|faith|religious belief +thelarche|1 +(noun)|start +thelephoraceae|1 +(noun)|Thelephoraceae|family Thelephoraceae|fungus family +thelonious monk|1 +(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician|jazzman +thelonious sphere monk|1 +(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician|jazzman +thelypteridaceae|1 +(noun)|Thelypteridaceae|family Thelypteridaceae|fern family +thelypteris|1 +(noun)|Thelypteris|genus Thelypteris|fern genus +thelypteris dryopteris|1 +(noun)|oak fern|Gymnocarpium dryopteris|Thelypteris dryopteris|fern +thelypteris hexagonoptera|1 +(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern +thelypteris palustris|1 +(noun)|marsh fern|Thelypteris palustris|Dryopteris thelypteris|fern +thelypteris palustris pubescens|1 +(noun)|snuffbox fern|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern|Thelypteris palustris|Dryopteris thelypteris +thelypteris phegopteris|1 +(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern +thelypteris simulata|1 +(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern +thematic|2 +(adj)|message|content|subject matter|substance +(adj)|thematic |tune|melody|air|strain|melodic line|line|melodic phrase +thematic apperception test|1 +(noun)|Thematic Apperception Test|TAT|projective test|projective device|projective technique +thematic vowel|1 +(noun)|stem vowel|vowel|vowel sound +theme|6 +(noun)|subject|topic|message|content|subject matter|substance +(noun)|motif|idea|thought +(noun)|melodic theme|musical theme|idea|tune|melody|air|strain|melodic line|line|melodic phrase +(noun)|composition|paper|report|essay|written assignment|writing assignment +(noun)|root|root word|base|stem|radical|form|word form|signifier|descriptor +(verb)|supply|provide|render|furnish +theme park|1 +(noun)|amusement park|funfair|pleasure ground +theme song|2 +(noun)|signature|signature tune|tune|melody|air|strain|melodic line|line|melodic phrase +(noun)|tune|melody|air|strain|melodic line|line|melodic phrase +themis|1 +(noun)|Themis|Titaness +themistocles|1 +(noun)|Themistocles|statesman|solon|national leader +then|3 +(adj)|past +(noun)|point|point in time +(adv)|so|and so|and then +then again|1 +(adv)|on the other hand|but then +thenal|1 +(adj)|thenar|area|region|area|region +thenar|3 +(adj)|thenal|area|region +(noun)|area|region +(noun)|palm|area|region +thence|3 +(adv)|therefrom +(adv)|therefrom|thereof +(adv)|therefore|hence|thus +thenceforth|1 +(adv)|thereafter +theobid|1 +(noun)|aminophylline|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator +theobroma|1 +(noun)|Theobroma|genus Theobroma|dilleniid dicot genus +theobroma cacao|1 +(noun)|cacao|cacao tree|chocolate tree|Theobroma cacao|angiospermous tree|flowering tree +theocracy|2 +(noun)|political system|form of government +(noun)|political orientation|ideology|political theory +theocratic|1 +(adj)|political system|form of government +theodicy|1 +(noun)|theology|divinity +theodolite|1 +(noun)|transit|surveying instrument|surveyor's instrument +theodor mommsen|1 +(noun)|Mommsen|Theodor Mommsen|historian|historiographer +theodor schwann|1 +(noun)|Schwann|Theodor Schwann|physiologist|histologist +theodor seuss geisel|1 +(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer|author +theodore dreiser|1 +(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer|author +theodore dwight weld|1 +(noun)|Weld|Theodore Dwight Weld|abolitionist|emancipationist +theodore harold white|1 +(noun)|White|T. H. White|Theodore Harold White|journalist +theodore herman albert dreiser|1 +(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer|author +theodore roosevelt|1 +(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States|United States President|President|Chief Executive +theodore roosevelt memorial national park|1 +(noun)|Theodore Roosevelt Memorial National Park|national park +theodore samuel williams|1 +(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer|baseball player +theogony|1 +(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +theologian|1 +(noun)|theologist|theologizer|theologiser|scholar|scholarly person|student +theological|1 +(adj)|system|system of rules +theological doctrine|1 +(noun)|religious doctrine|doctrine|philosophy|philosophical system|school of thought|ism +theological system|1 +(noun)|theology|system|system of rules +theological virtue|1 +(noun)|supernatural virtue|cardinal virtue +theologise|2 +(verb)|theologize|cover|treat|handle|plow|deal|address +(verb)|theologize|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +theologiser|1 +(noun)|theologian|theologist|theologizer|scholar|scholarly person|student +theologist|1 +(noun)|theologian|theologizer|theologiser|scholar|scholarly person|student +theologize|2 +(verb)|theologise|cover|treat|handle|plow|deal|address +(verb)|theologise|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +theologizer|1 +(noun)|theologian|theologist|theologiser|scholar|scholarly person|student +theology|3 +(noun)|divinity|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge +(noun)|theological system|system|system of rules +(noun)|learned profession +theophany|1 +(noun)|manifestation +theophrastaceae|1 +(noun)|Theophrastaceae|family Theophrastaceae|dicot family|magnoliopsid family +theophrastus|1 +(noun)|Theophrastus|philosopher +theophrastus philippus aureolus bombastus von hohenheim|1 +(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor|doc|physician|MD|Dr.|medico +theophylline|1 +(noun)|aminophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator +theorem|2 +(noun)|proposition +(noun)|idea|thought +theoretic|1 +(adj)|theoretical |abstractive|a priori|conjectural|divinatory|supposed|suppositional|suppositious|supposititious|hypothetical|hypothetic|notional|speculative|metaphysical|theory-based +theoretical|3 +(adj)|theoretical |theoretic|abstractive|a priori|conjectural|divinatory|supposed|suppositional|suppositious|supposititious|hypothetical|hypothetic|notional|speculative|metaphysical|theory-based +(adj)|theoretical |abstract|academic|pure +(adj)|abstract|technical +theoretical account|1 +(noun)|model|framework|hypothesis|possibility|theory +theoretically|1 +(adv)|on paper|in theory +theoretician|1 +(noun)|theorist|theorizer|theoriser|intellectual|intellect +theorisation|1 +(noun)|theorization|conjecture +theorise|1 +(verb)|speculate|theorize|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect|anticipate +theoriser|1 +(noun)|theorist|theoretician|theorizer|intellectual|intellect +theorist|1 +(noun)|theoretician|theorizer|theoriser|intellectual|intellect +theorization|1 +(noun)|theorisation|conjecture +theorize|3 +(verb)|speculate|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect|anticipate +(verb)|reason +(verb)|reason +theorizer|1 +(noun)|theorist|theoretician|theoriser|intellectual|intellect +theory|3 +(noun)|explanation +(noun)|hypothesis|possibility|concept|conception|construct +(noun)|belief +theory-based|1 +(adj)|theoretical |theoretic +theory of dissociation|1 +(noun)|theory of electrolytic dissociation|Arrhenius theory of dissociation|scientific theory +theory of electrolytic dissociation|1 +(noun)|theory of dissociation|Arrhenius theory of dissociation|scientific theory +theory of evolution|1 +(noun)|theory of organic evolution|scientific theory +theory of games|1 +(noun)|game theory|scientific theory +theory of gravitation|1 +(noun)|theory of gravity|gravitational theory|Newton's theory of gravitation|scientific theory +theory of gravity|1 +(noun)|theory of gravitation|gravitational theory|Newton's theory of gravitation|scientific theory +theory of indicators|1 +(noun)|Ostwald's theory of indicators|scientific theory +theory of inheritance|1 +(noun)|scientific theory +theory of organic evolution|1 +(noun)|theory of evolution|scientific theory +theory of preformation|1 +(noun)|preformation|theory +theory of punctuated equilibrium|1 +(noun)|punctuated equilibrium|theory of evolution|theory of organic evolution +theory of relativity|1 +(noun)|relativity|relativity theory|Einstein's theory of relativity|scientific theory +theosophical|1 +(adj)|belief +theosophist|1 +(noun)|believer|worshiper|worshipper +theosophy|1 +(noun)|belief +theoterrorism|1 +(noun)|terrorism|act of terrorism|terrorist act +therapeutic|2 +(adj)|curative|healing|alterative|remedial|sanative|healthful +(adj)|therapeutical|medical care|medical aid +therapeutic abortion|1 +(noun)|induced abortion +therapeutic cloning|1 +(noun)|biomedical cloning|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|nuclear transplantation|cloning +therapeutic rehabilitation|1 +(noun)|physical rehabilitation|physical restoration|rehabilitation +therapeutical|1 +(adj)|therapeutic|medical care|medical aid +therapeutics|1 +(noun)|medicine|medical specialty +theraphosidae|1 +(noun)|Theraphosidae|family Theraphosidae|arthropod family +therapist|1 +(noun)|healer|expert +therapsid|1 +(noun)|protomammal|synapsid|synapsid reptile +therapsida|1 +(noun)|Therapsida|order Therapsida|animal order +therapy|1 +(noun)|medical care|medical aid +theravada|1 +(noun)|Theravada|Theravada Buddhism|Buddhism +theravada buddhism|1 +(noun)|Theravada|Theravada Buddhism|Buddhism +there|4 +(noun)|location +(adv)|at that place|in that location +(adv)|in that respect|on that point +(adv)|thither +thereabout|2 +(adv)|thereabouts +(adv)|thereabouts +thereabouts|2 +(adv)|thereabout +(adv)|thereabout +thereafter|1 +(adv)|thenceforth +therefore|2 +(adv)|hence|thence|thus +(adv)|consequently +therefrom|2 +(adv)|thence|thereof +(adv)|thence +therein|1 +(adv)|in this|in that +thereness|2 +(noun)|presence +(noun)|presence +thereof|1 +(adv)|thence|therefrom +thereon|1 +(adv)|on it|on that +theresa|1 +(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun|missionary|missioner +thereto|1 +(adv)|to it|to that +thereunder|1 +(adv)|under that|under it +thereupon|1 +(adv)|therewith|with that +therewith|1 +(adv)|thereupon|with that +theridiid|1 +(noun)|comb-footed spider|spider +theridiidae|1 +(noun)|Theridiidae|family Theridiidae|arthropod family +therm|1 +(noun)|work unit|heat unit|energy unit +thermal|4 +(adj)|thermal |thermic|caloric|energy +(adj)|spring|fountain|outflow|outpouring|natural spring +(adj)|hot +(noun)|wind|air current|current of air +thermal barrier|1 +(noun)|heat barrier|limit|bounds|boundary +thermal emission|1 +(noun)|thermionic emission|emission +thermal equilibrium|1 +(noun)|equilibrium +thermal pollution|1 +(noun)|pollution +thermal printer|1 +(noun)|printer|printing machine +thermal reactor|1 +(noun)|nuclear reactor|reactor +thermal resistor|1 +(noun)|thermistor|semiconductor device|semiconductor unit|semiconductor +thermal spring|1 +(noun)|hot spring|spring|fountain|outflow|outpouring|natural spring +thermalgesia|1 +(noun)|pain|hurting +thermel|1 +(noun)|thermoelectric thermometer|electric thermometer|thermometer +thermic|1 +(adj)|thermal |caloric|energy +thermic fever|1 +(noun)|sunstroke|insolation|siriasis|heatstroke|heat hyperpyrexia +thermidor|1 +(noun)|Thermidor|Revolutionary calendar month +thermion|1 +(noun)|particle +thermionic|1 +(adj)|particle +thermionic current|1 +(noun)|current|electric current +thermionic emission|1 +(noun)|thermal emission|emission +thermionic tube|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|electron tube|thermionic valve|electronic device +thermionic vacuum tube|1 +(noun)|tube|vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device +thermionic valve|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|electronic device +thermionics|1 +(noun)|electronics +thermistor|1 +(noun)|thermal resistor|semiconductor device|semiconductor unit|semiconductor +thermoacidophile|1 +(noun)|archaebacteria|archaebacterium|archaeobacteria|archeobacteria +thermobaric bomb|1 +(noun)|fuel-air bomb|vacuum bomb|volume-detonation bomb|aerosol bomb|bomb|fuel-air explosive|FAE +thermobia|1 +(noun)|Thermobia|genus Thermobia|arthropod genus +thermobia domestica|1 +(noun)|firebrat|Thermobia domestica|bristletail +thermocautery|1 +(noun)|cautery|cauterization|cauterisation +thermocoagulation|1 +(noun)|curdling|clotting|coagulation +thermocouple|1 +(noun)|thermocouple junction|thermometer +thermocouple junction|1 +(noun)|thermocouple|thermometer +thermodynamic|1 +(adj)|thermodynamical|physics|physical science|natural philosophy +thermodynamical|1 +(adj)|thermodynamic|physics|physical science|natural philosophy +thermodynamics|1 +(noun)|physics|physical science|natural philosophy +thermodynamics of equilibrium|1 +(noun)|thermostatics|thermodynamics +thermoelectric|1 +(adj)|thermoelectrical|electricity +thermoelectric thermometer|1 +(noun)|thermel|electric thermometer|thermometer +thermoelectrical|1 +(adj)|thermoelectric|electricity +thermoelectricity|1 +(noun)|electricity +thermograph|2 +(noun)|medical instrument +(noun)|thermometrograph|thermometer +thermography|1 +(noun)|diagnostic procedure|diagnostic technique +thermogravimeter|1 +(noun)|thermohydrometer|hydrometer|gravimeter +thermogravimetric|1 +(adj)|thermohydrometric +thermogravimetry|1 +(noun)|measurement|measuring|measure|mensuration|chemical analysis|qualitative analysis +thermohydrometer|1 +(noun)|thermogravimeter|hydrometer|gravimeter +thermohydrometric|1 +(adj)|thermogravimetric +thermojunction|1 +(noun)|junction|conjunction +thermolabile|1 +(adj)|unstable +thermometer|1 +(noun)|measuring instrument|measuring system|measuring device +thermometric|1 +(adj)|measurement|measuring|measure|mensuration +thermometrograph|1 +(noun)|thermograph|thermometer +thermometry|1 +(noun)|measurement|measuring|measure|mensuration +thermonuclear|1 +(adj)|nuclear |atomic +thermonuclear bomb|1 +(noun)|hydrogen bomb|H-bomb|fusion bomb|nuclear weapon|bomb +thermonuclear reaction|1 +(noun)|fusion|nuclear fusion|nuclear fusion reaction +thermonuclear reactor|1 +(noun)|fusion reactor|nuclear reactor|reactor +thermonuclear warhead|1 +(noun)|atomic warhead|nuclear warhead|nuke|warhead|payload|load +thermopile|1 +(noun)|thermometer +thermoplastic|2 +(adj)|thermoplastic +(noun)|thermoplastic resin|plastic +thermoplastic resin|1 +(noun)|thermoplastic|plastic +thermopsis|1 +(noun)|Thermopsis|genus Thermopsis|rosid dicot genus +thermopsis macrophylla|1 +(noun)|false lupine|golden pea|yellow pea|Thermopsis macrophylla|bush pea +thermopsis villosa|1 +(noun)|Carolina lupine|Thermopsis villosa|bush pea +thermopylae|1 +(noun)|Thermopylae|battle of Thermopylae|pitched battle +thermoreceptor|1 +(noun)|sense organ|sensory receptor|receptor +thermoregulator|1 +(noun)|thermostat|regulator +thermos|1 +(noun)|thermos bottle|thermos flask|vacuum flask|vacuum bottle +thermos bottle|1 +(noun)|thermos|thermos flask|vacuum flask|vacuum bottle +thermos flask|1 +(noun)|thermos|thermos bottle|vacuum flask|vacuum bottle +thermoset|1 +(adj)|thermosetting +thermosetting|1 +(adj)|thermosetting |thermoset +thermosetting compositions|1 +(noun)|thermosetting resin|plastic +thermosetting resin|1 +(noun)|thermosetting compositions|plastic +thermosphere|1 +(noun)|layer +thermostat|2 +(noun)|thermoregulator|regulator +(verb)|control|hold in|hold|contain|check|curb|moderate +thermostated|1 +(adj)|regulated +thermostatic|1 +(adj)|regulator +thermostatics|1 +(noun)|thermodynamics of equilibrium|thermodynamics +thermotherapy|1 +(noun)|therapy +theropod|1 +(noun)|theropod dinosaur|bird-footed dinosaur|saurischian|saurischian dinosaur +theropod dinosaur|1 +(noun)|theropod|bird-footed dinosaur|saurischian|saurischian dinosaur +theropoda|1 +(noun)|Theropoda|suborder Theropoda|animal order +thesaurus|1 +(noun)|synonym finder|wordbook +theseus|1 +(noun)|Theseus|mythical being +thesis|2 +(noun)|premise|premiss|assumption +(noun)|dissertation|treatise +thespesia|1 +(noun)|Thespesia|genus Thespesia|dilleniid dicot genus +thespesia populnea|1 +(noun)|portia tree|bendy tree|seaside mahoe|Thespesia populnea|tulipwood tree +thespian|2 +(adj)|dramatic composition|dramatic work +(noun)|actor|histrion|player|role player|performer|performing artist +thespis|1 +(noun)|Thespis|poet +thessalia|1 +(noun)|Thessalia|Thessaly|geographical area|geographic area|geographical region|geographic region +thessalonian|1 +(noun)|Thessalonian|Greek|Hellene +thessalonica|1 +(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city|metropolis|urban center|port +thessaloniki|1 +(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city|metropolis|urban center|port +thessaly|1 +(noun)|Thessalia|Thessaly|geographical area|geographic area|geographical region|geographic region +theta|1 +(noun)|letter|letter of the alphabet|alphabetic character +theta rhythm|1 +(noun)|theta wave|brainwave|brain wave|cortical potential +theta wave|1 +(noun)|theta rhythm|brainwave|brain wave|cortical potential +thetis|1 +(noun)|Thetis|Nereid +theurgy|1 +(noun)|magic +thevetia|1 +(noun)|Thevetia|genus Thevetia|dicot genus|magnoliopsid genus +thevetia neriifolia|1 +(noun)|yellow oleander|Thevetia peruviana|Thevetia neriifolia|shrub|bush +thevetia peruviana|1 +(noun)|yellow oleander|Thevetia peruviana|Thevetia neriifolia|shrub|bush +thiabendazole|1 +(noun)|antifungal|antifungal agent|fungicide|antimycotic|antimycotic agent|vermifuge|anthelmintic|anthelminthic|helminthic +thiamin|1 +(noun)|vitamin B1|thiamine|aneurin|antiberiberi factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +thiamine|1 +(noun)|vitamin B1|thiamin|aneurin|antiberiberi factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +thiamine pyrophosphate|1 +(noun)|cocarboxylase|coenzyme +thiazide|1 +(noun)|diuretic drug|diuretic|water pill +thiazine|1 +(noun)|organic compound +thibet|1 +(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country|Asian nation +thick|15 +(adj)|thick |deep|deep-chested|fat|four-ply|heavy|quilted|three-ply|two-ply|thickened|fat|wide|broad +(adj)|compact|dense|concentrated +(adj)|thick |clogged|clotted|creamy|dense|heavy|impenetrable|gelatinous|gelatinlike|jellylike|heavy|ropy|ropey|stringy|thready|syrupy|viscous|thickened|coagulable|coagulate|coagulated|curdled|grumous|grumose +(adj)|slurred|unintelligible +(adj)|heavy|wide |broad +(adj)|dense|impenetrable +(adj)|deep|intense +(adj)|heavy +(adj)|compact|heavyset|stocky|thickset|fat +(adj)|chummy|buddy-buddy|close +(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thickheaded|thick-skulled|wooden-headed|stupid +(adj)|abundant +(noun)|midst|inside|interior +(adv)|thickly +(adv)|thickly +thick-billed murre|1 +(noun)|Uria lomvia|murre +thick-footed morel|1 +(noun)|Morchella crassipes|morel +thick-knee|1 +(noun)|stone curlew|Burhinus oedicnemus|shorebird|shore bird|limicoline bird +thick-skinned|1 +(adj)|callous|indurate|pachydermatous|insensitive +thick-skulled|1 +(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thickheaded|wooden-headed|stupid +thick skin|1 +(noun)|skin|tegument|cutis +thicken|3 +(verb)|inspissate|change|alter|modify +(verb)|inspissate|change state|turn +(verb)|inspissate|change integrity +thickened|3 +(adj)|thick +(adj)|calloused|tough |toughened +(adj)|thick +thickener|1 +(noun)|thickening|material|stuff +thickening|5 +(adj)|deepening|gathering|intensifying +(adj)|complex +(noun)|thickener|material|stuff +(noun)|node|knob|convex shape|convexity +(noun)|inspissation|condensing|condensation +thicket|1 +(noun)|brush|brushwood|coppice|copse|vegetation|flora +thickhead|1 +(noun)|whistler|Old World flycatcher|true flycatcher|flycatcher +thickheaded|1 +(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thick-skulled|wooden-headed|stupid +thickly|3 +(adv)|densely +(adv)|thick +(adv)|thick +thickly settled|1 +(adj)|populous|inhabited +thickness|3 +(noun)|dimension +(noun)|heaviness|wideness|broadness +(noun)|consistency|consistence|body +thickset|2 +(adj)|compact|heavyset|stocky|thick|fat +(adj)|concentrated +thickspread|1 +(adj)|covered +thief|1 +(noun)|stealer|criminal|felon|crook|outlaw|malefactor +thielavia|1 +(noun)|Thielavia|genus Thielavia|fungus genus +thielavia basicola|1 +(noun)|brown root rot fungus|Thielavia basicola|fungus +thieve|1 +(verb)|hook|snitch|cop|knock off|glom|steal +thievery|1 +(noun)|larceny|theft|thieving|stealing|felony +thieving|2 +(adj)|thievish|dishonest |dishonorable +(noun)|larceny|theft|thievery|stealing|felony +thievish|1 +(adj)|thieving|dishonest |dishonorable +thievishness|1 +(noun)|larcenous|dishonesty +thigh|2 +(noun)|limb +(noun)|second joint|helping|portion|serving +thigh-slapper|1 +(noun)|belly laugh|sidesplitter|howler|scream|wow|riot|joke|gag|laugh|jest|jape +thigh boot|1 +(noun)|hip boot|hip boots|thigh boots|boot +thigh boots|2 +(noun)|hip boot|hip boots|thigh boot|boot +(noun)|hip boot|hip boots|thigh boot|boot +thigh pad|1 +(noun)|protective garment +thighbone|1 +(noun)|femur|femoris|leg bone +thill|1 +(noun)|shaft +thimble|2 +(noun)|thimbleful|containerful +(noun)|cap|container +thimbleberry|3 +(noun)|flowering raspberry|purple-flowering raspberry|Rubus odoratus|raspberry|raspberry bush +(noun)|salmonberry|salmon berry|Rubus parviflorus|raspberry|raspberry bush +(noun)|black raspberry|blackcap|blackcap raspberry|Rubus occidentalis|raspberry|raspberry bush +thimbleful|1 +(noun)|thimble|containerful +thimblerig|1 +(noun)|shell game|swindle|cheat|rig +thimbleweed|1 +(noun)|Anemone cylindrica|anemone|windflower +thimerosal|1 +(noun)|sodium ethylmercurithiosalicylate|Merthiolate|antiseptic +thin|13 +(adj)|thin |bladed|capillary|hairlike|compressed|flat|depressed|diaphanous|filmy|gauzy|gossamer|see-through|sheer|transparent|vaporous|cobwebby|filamentous|filiform|filamentlike|threadlike|thready|fine|flimsy|light|hyperfine|paper thin|papery|sleazy|slender|tenuous|wafer-thin|chiffon|ribbonlike|ribbony|narrow|lean +(adj)|thin |lean|anorexic|anorectic|bony|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|wasted|deep-eyed|hollow-eyed|sunken-eyed|fine-drawn|gangling|gangly|lanky|lank|spindly|rawboned|reedy|reedlike|twiggy|twiglike|scarecrowish|scraggy|scrawny|skinny|underweight|weedy|shriveled|shrivelled|shrunken|withered|wizen|wizened|slender|slight|slim|slender-waisted|slim-waisted|wasp-waisted|spare|trim|spindle-legged|spindle-shanked|stringy|wiry|wisplike|wispy|ectomorphic +(adj)|slender|narrow +(adj)|flimsy|slight|tenuous|weak +(adj)|sparse|distributed +(adj)|thin |tenuous|rare|rarefied|rarified +(adj)|thin |pale +(adj)|spiritless +(verb)|change state|turn +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|dilute|thin out|reduce|cut|weaken +(verb)|reduce|melt off|lose weight|slim|slenderize|slim down|change state|turn +(adv)|thinly +thin-leaved bilberry|1 +(noun)|bilberry|mountain blue berry|Viccinium membranaceum|blueberry|blueberry bush +thin-leaved stringybark|1 +(noun)|white stringybark|Eucalyptusd eugenioides|stringybark +thin-shelled mussel|1 +(noun)|freshwater mussel|freshwater clam +thin-skinned|1 +(adj)|huffy|touchy|sensitive +thin air|1 +(noun)|nothingness|void|nullity +thin out|3 +(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|bring down +(verb)|decrease|diminish|lessen|fall +(verb)|dilute|thin|reduce|cut|weaken +thin person|1 +(noun)|skin and bones|person|individual|someone|somebody|mortal|human|soul +thing|12 +(noun)|situation|state of affairs +(noun)|action +(noun)|artifact|artefact +(noun)|happening|occurrence|natural event +(noun)|statement +(noun)|attribute +(noun)|abstraction|abstract +(noun)|matter|affair|concern +(noun)|entity +(noun)|aim|object|objective|target +(noun)|feeling +(noun)|entity +thing-in-itself|1 +(noun)|noumenon|content|cognitive content|mental object +thingamabob|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +thingamajig|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +thingmabob|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +thingmajig|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +things|13 +(noun)|property|belongings|holding|material possession +(noun)|thing|situation|state of affairs +(noun)|thing|action +(noun)|thing|artifact|artefact +(noun)|thing|happening|occurrence|natural event +(noun)|thing|statement +(noun)|thing|attribute +(noun)|thing|abstraction|abstract +(noun)|matter|affair|thing|concern +(noun)|thing|entity +(noun)|thing|aim|object|objective|target +(noun)|thing|feeling +(noun)|thing|entity +thingumabob|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +thingumajig|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingmajig|thingummy|whatchamacallit|stuff|whatsis|sundry|sundries +thingummy|1 +(noun)|dohickey|dojigger|doodad|doohickey|gimmick|hickey|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|whatchamacallit|stuff|whatsis|sundry|sundries +think|13 +(noun)|deliberation|weighing|advisement +(verb)|believe|consider|conceive|judge +(verb)|opine|suppose|imagine|reckon|guess|expect|anticipate +(verb)|cogitate|cerebrate|think over|think out|think up +(verb)|remember|retrieve|recall|call back|call up|recollect|think back +(verb)|imagine|conceive of|ideate|envisage +(verb)|concentrate|focus|center|centre|pore|rivet +(verb)|intend|mean|will|wish +(verb)|cogitate|cerebrate +(verb)|cogitate|cerebrate +(verb)|believe|consider|conceive +(verb)|cogitate|cerebrate +(verb)|change|alter|modify +think about|2 +(verb)|think|cogitate|cerebrate +(verb)|entertain|think of|toy with|flirt with|contemplate +think back|1 +(verb)|remember +think factory|1 +(noun)|think tank|company +think of|6 +(verb)|remember +(verb)|repute|regard as|look upon|look on|esteem|take to be|think|believe|consider|conceive +(verb)|entertain|toy with|flirt with|think about|contemplate +(verb)|have in mind|mean|associate|tie in|relate|link|colligate|link up|connect +(verb)|think up|dream up|hatch|concoct|create by mental act|create mentally +(verb)|choose|take|select|pick out +think out|1 +(verb)|plan|be after +think over|1 +(verb)|chew over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think|cogitate|cerebrate +think piece|1 +(noun)|article +think tank|1 +(noun)|think factory|company +think the world of|1 +(verb)|respect|esteem|value|prize|prise +think twice|1 +(verb)|consider|debate|moot|turn over|deliberate +think up|1 +(verb)|think of|dream up|hatch|concoct|create by mental act|create mentally +thinkable|1 +(adj)|thinkable |cogitable|ponderable|conceivable|imaginable|possible|presumable|supposable|surmisable|credible|believable|possible +thinker|2 +(noun)|creative thinker|mind|intellectual|intellect +(noun)|intellectual|intellect +thinking|2 +(adj)|intelligent|reasoning|rational +(noun)|thought|cerebration|intellection|mentation|higher cognitive process +thinking cap|1 +(noun)|state of mind|frame of mind +thinly|2 +(adv)|thin +(adv)|lightly +thinned|1 +(adj)|cut|weakened|diluted |dilute +thinner|1 +(noun)|dilutant|diluent|agent +thinness|4 +(noun)|tenuity|slenderness|dimension +(noun)|leanness|bodily property +(noun)|fineness|narrowness +(noun)|consistency|consistence|body +thinning|1 +(noun)|cutting|dilution +thinning shears|1 +(noun)|shear|shears +thiobacillus|1 +(noun)|eubacteria|eubacterium|true bacteria +thiobacteria|1 +(noun)|sulphur bacteria|sulfur bacteria|thiobacillus +thiobacteriaceae|1 +(noun)|Thiobacteriaceae|family Thiobacteriaceae|bacteria family +thiocyanate|1 +(noun)|salt +thiocyanic acid|1 +(noun)|acid +thiodiphenylamine|1 +(noun)|phenothiazine|thiazine +thioguanine|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +thiopental|1 +(noun)|thiopental sodium|thiopentobarbital sodium|Pentothal|barbiturate|truth serum|truth drug +thiopental sodium|1 +(noun)|thiopental|thiopentobarbital sodium|Pentothal|barbiturate|truth serum|truth drug +thiopentobarbital sodium|1 +(noun)|thiopental|thiopental sodium|Pentothal|barbiturate|truth serum|truth drug +thioridazine|1 +(noun)|Mellaril|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +thiosulfil|1 +(noun)|Thiosulfil|sulfa drug|sulfa|sulpha|sulfonamide +thiotepa|1 +(noun)|antineoplastic|antineoplastic drug|cancer drug +thiothixene|1 +(noun)|Navane|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic +thiouracil|1 +(noun)|organic compound +third|9 +(adj)|3rd|tertiary|ordinal +(adj)|fractional +(noun)|one-third|tierce|common fraction|simple fraction +(noun)|third base|position +(noun)|rank +(noun)|interval|musical interval +(noun)|third gear|gear|gear mechanism +(noun)|third base|base|bag +(adv)|thirdly +third-class mail|1 +(noun)|third class|mail +third-degree burn|1 +(noun)|burn +third-dimensional|1 +(adj)|three-dimensional|three-d|multidimensional +third-dimensionality|1 +(noun)|three-dimensionality|dimensionality +third-place finish|1 +(noun)|finish +third-rate|1 +(adj)|inferior +third-rater|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +third-year|1 +(adj)|junior|next-to-last|intermediate +third baron rayleigh|1 +(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist +third base|2 +(noun)|third|base|bag +(noun)|third|position +third baseman|1 +(noun)|third sacker|infielder +third battle of ypres|1 +(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle +third class|2 +(noun)|third-class mail|mail +(noun)|tourist class|accommodation +third cranial nerve|1 +(noun)|oculomotor|oculomotor nerve|nervus oculomotorius|cranial nerve +third crusade|1 +(noun)|Third Crusade|Crusade +third deck|1 +(noun)|lower deck|deck +third degree|1 +(noun)|interrogation|examination|interrogatory +third dimension|1 +(noun)|dimension +third epistel of john|1 +(noun)|Third Epistel of John|III John|book +third estate|1 +(noun)|commonalty|commonality|commons +third eye|1 +(noun)|pineal eye|sense organ|sensory receptor|receptor +third eyelid|1 +(noun)|nictitating membrane|protective fold +third gear|1 +(noun)|third|gear|gear mechanism +third house|1 +(noun)|lobby|pressure group|political unit +third law of motion|1 +(noun)|Newton's third law of motion|Newton's third law|law of action and reaction|Newton's law of motion|Newton's law|law of motion +third law of thermodynamics|1 +(noun)|law of thermodynamics +third party|2 +(noun)|arbiter|arbitrator +(noun)|party|political party +third period|1 +(noun)|playing period|period of play|play +third person|1 +(noun)|person +third power|1 +(noun)|cube|number +third rail|1 +(noun)|track|rail|rails +third reich|1 +(noun)|Third Reich|Nazi Germany|Reich +third sacker|1 +(noun)|third baseman|infielder +third stomach|1 +(noun)|psalterium|omasum|stomach|tummy|tum|breadbasket +third tonsil|1 +(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue|lymphoid tissue +third trimester|1 +(noun)|trimester +third ventricle|1 +(noun)|ventricle +third world|1 +(noun)|Third World|collection|aggregation|accumulation|assemblage +thirdhand|1 +(adj)|secondary +thirdly|1 +(adv)|third +thirst|4 +(noun)|drive +(noun)|hunger|desire +(verb)|ache|smart|hurt +(verb)|crave|hunger|starve|lust|desire|want +thirst for knowledge|1 +(noun)|desire to know|lust for learning|curiosity|wonder +thirster|1 +(noun)|longer|yearner|person|individual|someone|somebody|mortal|human|soul +thirstily|1 +(adv)|eagerly +thirsty|4 +(adj)|dry +(adj)|thirsty |dry +(adj)|athirst|hungry|desirous +(adj)|absorbent |absorptive +thirteen|2 +(adj)|13|xiii|cardinal +(noun)|13|XIII|baker's dozen|long dozen|large integer +thirteenth|2 +(adj)|13th|ordinal +(noun)|rank +thirties|3 +(noun)|mid-thirties|thirty-something|time of life +(noun)|1930s|decade|decennary|decennium +(noun)|thirty|30|XXX|large integer +thirtieth|2 +(adj)|30th|ordinal +(noun)|rank +thirty|2 +(adj)|30|xxx|cardinal +(noun)|30|XXX|large integer +thirty-eight|1 +(adj)|38|xxxviii|cardinal +thirty-eighth|1 +(adj)|38th|ordinal +thirty-fifth|1 +(adj)|35th|ordinal +thirty-first|1 +(adj)|31st|ordinal +thirty-five|1 +(adj)|35|xxxv|cardinal +thirty-four|1 +(adj)|34|xxxiv|cardinal +thirty-fourth|1 +(adj)|34th|ordinal +thirty-nine|1 +(adj)|39|ixl|cardinal +thirty-ninth|1 +(adj)|39th|ordinal +thirty-one|1 +(adj)|31|xxxi|cardinal +thirty-second|1 +(adj)|32nd|ordinal +thirty-second note|1 +(noun)|demisemiquaver|note|musical note|tone +thirty-seven|1 +(adj)|37|xxxvii|cardinal +thirty-seventh|1 +(adj)|37th|ordinal +thirty-six|1 +(adj)|36|xxxvi|cardinal +thirty-sixth|1 +(adj)|36th|ordinal +thirty-something|1 +(noun)|thirties|mid-thirties|time of life +thirty-third|1 +(adj)|33rd|ordinal +thirty-three|1 +(adj)|33|xxxiii|cardinal +thirty-two|1 +(adj)|32|xxxii|cardinal +thirty years' war|1 +(noun)|Thirty Years' War|war|warfare +this evening|1 +(adv)|tonight|this night +this night|1 +(adv)|tonight|this evening +thistle|1 +(noun)|weed +thistledown|1 +(noun)|pappus +thistlelike|1 +(adj)|armed +thither|1 +(adv)|there +thlaspi|1 +(noun)|Thlaspi|genus Thlaspi|dilleniid dicot genus +thlaspi arvense|1 +(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress +thm|1 +(noun)|Master of Theology|ThM|master's degree +tho|1 +(noun)|Tho|Tai +tho'|1 +(adv)|although|though +thole|1 +(noun)|peg|pin|tholepin|rowlock|oarlock|holder +tholepin|1 +(noun)|peg|pin|thole|rowlock|oarlock|holder +thomas|5 +(noun)|Thomas|Seth Thomas|clocksmith|clockmaker +(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist +(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist +(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet +(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle|saint +thomas a becket|1 +(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop|martyr|saint +thomas a kempis|1 +(noun)|a Kempis|Thomas a Kempis|cleric|churchman|divine|ecclesiastic +thomas alva edison|1 +(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor|discoverer|artificer +thomas aquinas|1 +(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian|theologist|theologizer|theologiser|saint|Doctor of the Church|Doctor +thomas augustus watson|1 +(noun)|Watson|Thomas Augustus Watson|engineer|applied scientist|technologist +thomas babington macaulay|1 +(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian|historiographer +thomas bayes|1 +(noun)|Bayes|Thomas Bayes|mathematician +thomas bowdler|1 +(noun)|Bowdler|Thomas Bowdler|editor|editor in chief +thomas bradley|1 +(noun)|Bradley|Thomas Bradley|Tom Bradley|politician|politico|pol|political leader +thomas carew|1 +(noun)|Carew|Thomas Carew|poet +thomas carlyle|1 +(noun)|Carlyle|Thomas Carlyle|historian|historiographer +thomas chippendale|1 +(noun)|Chippendale|Thomas Chippendale|cabinetmaker|furniture maker +thomas clayton wolfe|1 +(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer|author +thomas crawford|1 +(noun)|Crawford|Thomas Crawford|sculptor|sculpturer|carver|statue maker +thomas de quincey|1 +(noun)|De Quincey|Thomas De Quincey|writer|author +thomas decker|1 +(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist|playwright|pamphleteer +thomas dekker|1 +(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist|playwright|pamphleteer +thomas edison|1 +(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor|discoverer|artificer +thomas edward lawrence|1 +(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier|writer|author +thomas gainsborough|1 +(noun)|Gainsborough|Thomas Gainsborough|painter +thomas gray|1 +(noun)|Gray|Thomas Gray|poet +thomas hardy|1 +(noun)|Hardy|Thomas Hardy|writer|author +thomas hart benton|2 +(noun)|Benton|Thomas Hart Benton|painter +(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator +thomas hastings|1 +(noun)|Hastings|Thomas Hastings|architect|designer +thomas henry huxley|1 +(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist|life scientist +thomas higginson|1 +(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier|writer|author +thomas hobbes|1 +(noun)|Hobbes|Thomas Hobbes|philosopher +thomas hodgkin|1 +(noun)|Hodgkin|Thomas Hodgkin|doctor|doc|physician|MD|Dr.|medico +thomas hopkins gallaudet|1 +(noun)|Gallaudet|Thomas Hopkins Gallaudet|educator|pedagogue +thomas hunt morgan|1 +(noun)|Morgan|Thomas Hunt Morgan|biologist|life scientist +thomas huxley|1 +(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist|life scientist +thomas j. hanks|1 +(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor|histrion|player|thespian|role player +thomas j. jackson|1 +(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general|full general +thomas jackson|1 +(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general|full general +thomas jefferson|1 +(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States|United States President|President|Chief Executive +thomas jonathan jackson|1 +(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general|full general +thomas kennerly wolfe jr.|1 +(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer|author +thomas kid|1 +(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist|playwright +thomas kyd|1 +(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist|playwright +thomas lanier williams|1 +(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist|playwright +thomas malory|1 +(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer|author +thomas malthus|1 +(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist|economic expert +thomas mann|1 +(noun)|Mann|Thomas Mann|writer|author +thomas merton|1 +(noun)|Merton|Thomas Merton|religious|writer|author +thomas middleton|1 +(noun)|Middleton|Thomas Middleton|dramatist|playwright|pamphleteer +thomas moore|1 +(noun)|Moore|Thomas Moore|poet +thomas more|1 +(noun)|More|Thomas More|Sir Thomas More|statesman|solon|national leader|writer|author +thomas nast|1 +(noun)|Nast|Thomas Nast|cartoonist +thomas nelson page|1 +(noun)|Page|Thomas Nelson Page|writer|author|diplomat|diplomatist +thomas paine|1 +(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader|pamphleteer +thomas pynchon|1 +(noun)|Pynchon|Thomas Pynchon|writer|author +thomas reid|1 +(noun)|Reid|Thomas Reid|philosopher +thomas robert malthus|1 +(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist|economic expert +thomas stearns eliot|1 +(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet|dramatist|playwright +thomas straussler|1 +(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist|playwright +thomas sully|1 +(noun)|Sully|Thomas Sully|painter +thomas sydenham|1 +(noun)|Sydenham|Thomas Sydenham|The English Hippocrates|doctor|doc|physician|MD|Dr.|medico +thomas tallis|1 +(noun)|Tallis|Thomas Tallis|organist|composer +thomas the doubting apostle|1 +(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle|saint +thomas wentworth storrow higginson|1 +(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier|writer|author +thomas wolfe|2 +(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer|author +(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer|author +thomas woodrow wilson|1 +(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States|United States President|President|Chief Executive +thomas wright waller|1 +(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician|jazzman +thomas young|1 +(noun)|Young|Thomas Young|physicist|Egyptologist +thomism|1 +(noun)|Thomism|theological doctrine|religious doctrine +thomomys|1 +(noun)|Thomomys|genus Thomomys|mammal genus +thomomys bottae|1 +(noun)|valley pocket gopher|Thomomys bottae|gopher|pocket gopher|pouched rat|Thomomys|genus Thomomys +thomomys talpoides|1 +(noun)|northern pocket gopher|Thomomys talpoides|gopher|pocket gopher|pouched rat|Thomomys|genus Thomomys +thompson|2 +(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist|archaeologist +(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist +thompson seedless|1 +(noun)|Thompson Seedless|vinifera grape +thompson submachine gun|1 +(noun)|Tommy gun|Thompson submachine gun|submachine gun +thomsen's disease|1 +(noun)|myotonia congenita|Thomsen's disease|myotonia +thomson|4 +(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer +(noun)|Thomson|Elihu Thomson|electrical engineer +(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist +(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist +thomson's gazelle|1 +(noun)|Thomson's gazelle|Gazella thomsoni|gazelle +thong|2 +(noun)|lash|leather strip +(noun)|leather strip +thor|1 +(noun)|Thor|Norse deity +thor hyerdahl|1 +(noun)|Heyerdahl|Thor Hyerdahl|anthropologist +thoracic|1 +(adj)|pectoral|body part +thoracic actinomycosis|1 +(noun)|actinomycosis +thoracic aorta|1 +(noun)|aorta +thoracic cavity|1 +(noun)|chest cavity|cavity|bodily cavity|cavum +thoracic duct|1 +(noun)|lymph vessel|lymphatic vessel +thoracic medicine|1 +(noun)|medicine|medical specialty +thoracic nerve|1 +(noun)|spinal nerve|nervus spinalis +thoracic outlet syndrome|1 +(noun)|syndrome +thoracic vein|1 +(noun)|vena thoracica|vein|vena|venous blood vessel +thoracic vertebra|1 +(noun)|dorsal vertebra|vertebra +thoracocentesis|1 +(noun)|centesis +thoracoepigastric vein|1 +(noun)|vena thoracoepigastrica|vein|vena|venous blood vessel +thorax|3 +(noun)|body part +(noun)|chest|pectus|body part +(noun)|body part +thorazine|1 +(noun)|chlorpromazine|Thorazine|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|phenothiazine|thiodiphenylamine +thoreau|1 +(noun)|Thoreau|Henry David Thoreau|writer|author +thoreauvian|1 +(adj)|Thoreauvian|writer|author +thoriate|1 +(verb)|impregnate|saturate +thoriated|1 +(adj)|tittering|impregnate|saturate +thorite|1 +(noun)|mineral +thorium|1 +(noun)|Th|atomic number 90|metallic element|metal +thorium-228|1 +(noun)|radiothorium|thorium|Th|atomic number 90 +thorn|3 +(noun)|irritant|annoyance|bother|botheration|pain|infliction|pain in the neck|pain in the ass +(noun)|spine|prickle|pricker|sticker|aculeus +(noun)|rune|runic letter +thorn apple|1 +(noun)|shrub|bush +thornbill|1 +(noun)|hummingbird +thorndike|2 +(noun)|Thorndike|Dame Sybil Thorndike|actress +(noun)|Thorndike|Edward Lee Thorndike|psychologist +thornless|1 +(adj)|unarmed +thornton|1 +(noun)|Thornton|William Thornton|architect|designer +thornton niven wilder|1 +(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer|author|dramatist|playwright +thornton wilder|1 +(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer|author|dramatist|playwright +thorny|2 +(adj)|difficult |hard +(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|armed +thorny amaranth|1 +(noun)|Amaranthus spinosus|herb|herbaceous plant +thorny skate|1 +(noun)|Raja radiata|skate +thorough|2 +(adj)|careful +(adj)|exhaustive|thoroughgoing|complete +thorough bass|1 +(noun)|figured bass|basso continuo|continuo|bass|bass part +thoroughbred|4 +(adj)|pedigree|pedigreed|pureblood|pureblooded|purebred +(noun)|adult|grownup +(noun)|racehorse|race horse|bangtail +(noun)|purebred|pureblood|animal|animate being|beast|brute|creature|fauna +thoroughbred race|1 +(noun)|horse race +thoroughbred racing|1 +(noun)|horse racing +thoroughfare|1 +(noun)|road|route +thoroughgoing|2 +(adj)|exhaustive|thorough|complete +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|utter|unmitigated +thoroughly|2 +(adv)|soundly|good +(adv)|exhaustively +thoroughness|1 +(noun)|conscientiousness|painstakingness +thoroughwort|1 +(noun)|boneset|agueweed|Eupatorium perfoliatum|herb|herbaceous plant +thorpe|1 +(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete|jock +thorshavn|1 +(noun)|Thorshavn|city|metropolis|urban center +thorstein bunde veblen|1 +(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist|economic expert +thorstein veblen|1 +(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist|economic expert +thortveitite|1 +(noun)|mineral +thoth|1 +(noun)|Thoth|Egyptian deity +thou|1 +(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|yard|large integer +though|1 +(adv)|although|tho' +thought|4 +(noun)|idea|content|cognitive content|mental object +(noun)|thinking|cerebration|intellection|mentation|higher cognitive process +(noun)|belief +(noun)|opinion|sentiment|persuasion|view|belief +thought-image|1 +(noun)|imagination image|image|mental image +thought-provoking|1 +(adj)|challenging|stimulating +thought-reader|2 +(noun)|telepathist|mental telepathist|mind reader|communicator +(noun)|mind reader|telepathist|magician|prestidigitator|conjurer|conjuror|illusionist +thought transference|1 +(noun)|telepathy|psychic communication|psychical communication|anomalous communication +thoughtful|5 +(adj)|profound +(adj)|thoughtful |bemused|deep in thought|lost|preoccupied|brooding|broody|contemplative|meditative|musing|pensive|pondering|reflective|ruminative|cogitative|considered|reasoned|well thought out|deliberate|deliberative|excogitative|considerate +(adj)|sensible|serious +(adj)|heedful |attentive +(adj)|kind|considerate +thoughtfulness|4 +(noun)|contemplation|reflection|reflexion|rumination|musing|consideration +(noun)|consideration|considerateness|kindness +(noun)|trait +(noun)|consideration|kindness|benignity +thoughtless|4 +(adj)|thoughtless |inconsiderate|unconsidered|unreflective|unthinking|unthoughtful|inconsiderate +(adj)|heedless |unheeding|careless|regardless|deaf|indifferent +(adj)|uncaring|unthinking|inconsiderate +(adj)|careless|regardless|heedless |unheeding +thoughtlessly|1 +(adv)|unthinkingly|unthinking +thoughtlessness|2 +(noun)|inconsideration|inconsiderateness|unkindness +(noun)|unthoughtfulness|trait +thousand|2 +(adj)|a thousand|one thousand|1000|m|k|cardinal +(noun)|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer +thousand-fold|1 +(adv)|thousand times +thousand and one nights|1 +(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale|folk tale +thousand island dressing|1 +(noun)|Thousand Island dressing|dressing|salad dressing +thousand times|1 +(adv)|thousand-fold +thousandth|3 +(adj)|1000th|ordinal +(noun)|rank +(noun)|one-thousandth|common fraction|simple fraction +thrace|1 +(noun)|Thrace|geographical area|geographic area|geographical region|geographic region +thracian|1 +(noun)|Thracian|Thraco-Phrygian +thraco-phrygian|1 +(noun)|Thraco-Phrygian|Indo-European|Indo-European language|Indo-Hittite +thraldom|1 +(noun)|bondage|slavery|thrall|thralldom|subjugation|subjection +thrall|2 +(noun)|bondage|slavery|thralldom|thraldom|subjugation|subjection +(noun)|bond servant +thralldom|1 +(noun)|bondage|slavery|thrall|thraldom|subjugation|subjection +thrash|8 +(noun)|swimming kick +(verb)|thresh|lam|flail|beat|beat up|work over +(verb)|convulse|thresh|thresh about|thrash about|slash|toss|jactitate|shake|agitate +(verb)|slam dance|slam|mosh|dance|trip the light fantastic|trip the light fantastic toe +(verb)|beat|pound|thump +(verb)|swap +(verb)|thresh|beat +(verb)|bat|clobber|drub|lick|beat|beat out|crush|shell|trounce|vanquish +thrash about|1 +(verb)|convulse|thresh|thresh about|thrash|slash|toss|jactitate|shake|agitate +thrash out|1 +(verb)|hammer out|hash out|discuss|talk over +thrasher|3 +(noun)|thresher|threshing machine|farm machine +(noun)|mocking thrush|oscine|oscine bird +(noun)|thresher|thresher shark|fox shark|Alopius vulpinus|shark +thrashing|2 +(noun)|walloping|debacle|drubbing|slaughter|trouncing|whipping|defeat|licking +(noun)|beating|licking|drubbing|lacing|trouncing|whacking|corporal punishment +thraupidae|1 +(noun)|Thraupidae|family Thraupidae|bird family +thread|9 +(noun)|yarn|cord +(noun)|ribbon|object|physical object +(noun)|train of thought|thinking|thought|cerebration|intellection|mentation +(noun)|screw thread|rib +(verb)|weave|wind|meander|wander|travel|go|move|locomote +(verb)|guide|run|draw|pass +(verb)|extract|pull out|pull|pull up|take out|draw out +(verb)|guide|run|draw|pass +(verb)|string|draw|arrange|set up +thread-fish|2 +(noun)|threadfish|Alectis ciliaris|jack +(noun)| +thread blight|1 +(noun)|blight +thread maker|1 +(noun)|spinner|spinster|maker|shaper +threadbare|2 +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|timeworn|tired|trite|well-worn|unoriginal +(adj)|worn +threaded|1 +(adj)|rib +threader|1 +(noun)|bodkin|hand tool +threadfin|1 +(noun)|percoid fish|percoid|percoidean +threadfish|1 +(noun)|thread-fish|Alectis ciliaris|jack +threadleaf groundsel|1 +(noun)|Senecio doublasii|weed +threadlike|1 +(adj)|filamentous|filiform|filamentlike|thready|thin +threads|5 +(noun)|togs|duds|clothing|article of clothing|vesture|wear +(noun)|thread|yarn|cord +(noun)|ribbon|thread|object|physical object +(noun)|train of thought|thread|thinking|thought|cerebration|intellection|mentation +(noun)|screw thread|thread|rib +threadworm|1 +(noun)|pinworm|Enterobius vermicularis|nematode|nematode worm|roundworm +thready|2 +(adj)|ropy|ropey|stringy|thick +(adj)|filamentous|filiform|filamentlike|threadlike|thin +threat|4 +(noun)|menace|danger +(noun)|warning +(noun)|declaration +(noun)|terror|scourge|person|individual|someone|somebody|mortal|human|soul +threaten|3 +(verb)|endanger|jeopardize|jeopardise|menace|imperil|peril|exist|be +(verb)|warn +(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict +threatened|1 +(adj)|vulnerable +threatened abortion|1 +(noun)|imminent abortion|spontaneous abortion|miscarriage|stillbirth +threatening|2 +(adj)|baleful|forbidding|menacing|minacious|minatory|ominous|sinister|ugly|alarming +(adj)|heavy|lowering|sullen|cloudy +threateningly|1 +(adv)|menacingly +three|2 +(adj)|3|iii|cardinal +(noun)|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +three-bagger|1 +(noun)|triple|three-base hit|base hit|safety|bingle +three-banded armadillo|1 +(noun)|apar|Tolypeutes tricinctus|armadillo +three-base hit|1 +(noun)|triple|three-bagger|base hit|safety|bingle +three-card monte|1 +(noun)|monte|four-card monte|card game|cards +three-centered arch|1 +(noun)|basket-handle arch|round arch +three-cornered|2 +(adj)|angular |angulate +(adj)|multilateral |many-sided +three-cornered leek|1 +(noun)|triquetrous leek|Allium triquetrum|alliaceous plant +three-d|3 +(adj)|three-dimensional|third-dimensional|multidimensional +(noun)|three-D|3-D|3D|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick +(noun)|three-D|3-D|3D|appearance +three-day event|1 +(noun)|equestrian sport +three-day measles|1 +(noun)|German measles|rubella|epidemic roseola|measles|rubeola|morbilli +three-decker|3 +(noun)|club sandwich|triple-decker|sandwich +(noun)|ship +(noun)|warship|war vessel|combat ship +three-dimensional|2 +(adj)|third-dimensional|three-d|multidimensional +(adj)|cubic |blockish|blocky|boxlike|boxy|cubelike|cube-shaped|cubical|cubiform|cuboid|cuboidal|isometric|solid +three-dimensional figure|1 +(noun)|solid figure|figure +three-dimensional radar|1 +(noun)|3d radar|radar|microwave radar|radio detection and ranging|radiolocation +three-dimensionality|1 +(noun)|third-dimensionality|dimensionality +three-figure|1 +(adj)|quantitative +three-fourths|1 +(noun)|common fraction|simple fraction +three-hitter|1 +(noun)|3-hitter|baseball|baseball game|ball +three-hundredth|1 +(adj)|300th|ordinal +three-lane|1 +(adj)|multilane +three-legged|1 +(adj)|legged +three-membered|1 +(adj)|3-membered|membered +three-mile limit|1 +(noun)|limit|demarcation|demarcation line +three-party|1 +(adj)|triangular|trilateral|tripartite|three-way|multilateral |many-sided +three-piece|1 +(adj)|three-piece +three-piece suit|1 +(noun)|business suit +three-ply|1 +(adj)|thick +three-point landing|1 +(noun)|aircraft landing|airplane landing +three-point switch|1 +(noun)|three-way switch|switch|electric switch|electrical switch +three-point turn|1 +(noun)|turn|turning +three-quarter|1 +(adj)|fractional +three-quarter binding|1 +(noun)|binding|book binding|cover|back +three-ring circus|1 +(noun)|circus +three-seeded mercury|1 +(noun)|Acalypha virginica|shrub|bush +three-sided|1 +(adj)|trilateral|triangular|multilateral |many-sided +three-spined stickleback|1 +(noun)|Gasterosteus aculeatus|stickleback|prickleback +three-toed sloth|1 +(noun)|ai|Bradypus tridactylus|sloth|tree sloth +three-way|1 +(adj)|triangular|trilateral|tripartite|three-party|multilateral |many-sided +three-way calling|1 +(noun)|conference call +three-way switch|1 +(noun)|three-point switch|switch|electric switch|electrical switch +three-wheel|1 +(adj)|three-wheeled|machine|simple machine +three-wheeled|1 +(adj)|three-wheel|machine|simple machine +three hundred|1 +(adj)|300|ccc|cardinal +three kings' day|1 +(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day +three times|1 +(adv)|threefold +threefold|3 +(adj)|treble|triple|multiple +(adj)|double|dual|twofold|treble|multiple +(adv)|three times +threepence|1 +(noun)|coin +threepenny|2 +(adj)|sized +(adj)|sixpenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap |inexpensive +threescore|2 +(adj)|sixty|60|lx|cardinal +(noun)|set +threesome|2 +(noun)|three|3|III|trio|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|trio|triad|trinity|gathering|assemblage +threnody|1 +(noun)|dirge|coronach|lament|requiem|song +threonine|1 +(noun)|essential amino acid +thresh|4 +(verb)|convulse|thresh about|thrash|thrash about|slash|toss|jactitate|shake|agitate +(verb)|flail|beat|flap +(verb)|thrash|beat +(verb)|thrash|lam|flail|beat|beat up|work over +thresh about|1 +(verb)|convulse|thresh|thrash|thrash about|slash|toss|jactitate|shake|agitate +thresher|2 +(noun)|thrasher|threshing machine|farm machine +(noun)|thrasher|thresher shark|fox shark|Alopius vulpinus|shark +thresher's lung|1 +(noun)|farmer's lung|alveolitis +thresher shark|1 +(noun)|thresher|thrasher|fox shark|Alopius vulpinus|shark +threshing|1 +(noun)|separation +threshing floor|1 +(noun)|area +threshing machine|1 +(noun)|thresher|thrasher|farm machine +threshold|5 +(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset +(noun)|limen|sensation|sense experience|sense impression|sense datum +(noun)|doorway|door|room access|entrance|entranceway|entryway|entry|entree +(noun)|doorsill|doorstep|sill +(noun)|brink|verge|boundary|edge|bound +threshold element|1 +(noun)|threshold gate|logic element +threshold function|1 +(noun)|function|mathematical function +threshold gate|1 +(noun)|threshold element|logic element +threshold level|1 +(noun)|intensity|strength|intensity level +threshold operation|1 +(noun)|operation +threskiornis|1 +(noun)|Threskiornis|genus Threskiornis|bird genus +threskiornis aethiopica|1 +(noun)|sacred ibis|Threskiornis aethiopica|ibis +threskiornithidae|1 +(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family +thrift|2 +(noun)|subshrub|suffrutex +(noun)|parsimony|parsimoniousness|penny-pinching|frugality|frugalness +thrift institution|1 +(noun)|depository financial institution|bank|banking concern|banking company +thriftiness|1 +(noun)|economy|frugality|frugalness +thriftless|1 +(adj)|improvident +thriftlessness|1 +(noun)|waste|wastefulness|improvidence|shortsightedness +thriftshop|1 +(noun)|second-hand store|shop|store +thrifty|2 +(adj)|thrifty |economical|frugal|scotch|sparing|stinting|penny-wise|saving|scavenging|provident +(adj)|careful|provident +thrill|7 +(noun)|bang|boot|charge|rush|flush|kick|exhilaration|excitement +(noun)|frisson|shiver|chill|quiver|shudder|tingle|fear|fearfulness|fright +(noun)|excitation|excitement +(verb)|stimulate|excite|stir +(verb)|tickle|vibrate|stimulate|shake|shake up|excite|stir +(verb)|shudder|shiver|throb|tremble +(verb)|exhilarate|inebriate|exalt|beatify|elate|lift up|uplift|pick up|intoxicate +thrilled|1 +(adj)|excited +thriller|1 +(noun)|adventure story|heroic tale +thrillful|1 +(adj)|excited +thrilling|2 +(adj)|electrifying|exciting +(adj)|stimulating +thrinax|1 +(noun)|Thrinax|genus Thrinax|monocot genus|liliopsid genus +thrinax keyensis|1 +(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +thrinax microcarpa|1 +(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +thrinax morrisii|1 +(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm +thrinax parviflora|1 +(noun)|thatch palm|thatch tree|silver thatch|broom palm|Thrinax parviflora|fan palm +thrip|1 +(noun)|thrips|thripid|thysanopter|thysanopteron|thysanopterous insect +thripid|1 +(noun)|thrips|thrip|thysanopter|thysanopteron|thysanopterous insect +thripidae|1 +(noun)|Thripidae|family Thripidae|arthropod family +thrips|2 +(noun)|thrip|thripid|thysanopter|thysanopteron|thysanopterous insect +(noun)|thrip|thripid|thysanopter|thysanopteron|thysanopterous insect +thrips tobaci|1 +(noun)|onion thrips|onion louse|Thrips tobaci|thrips|thrip|thripid +thrive|2 +(verb)|boom|prosper|get ahead|flourish|expand|grow +(verb)|prosper|fly high|flourish|change state|turn +thriving|2 +(adj)|booming|flourishing|palmy|prospering|prosperous|roaring|successful +(adj)|flourishing|growing|healthy +throat|3 +(noun)|pharynx|tubular cavity +(noun)|opening +(noun)|passage +throat infection|1 +(noun)|streptococcal sore throat|strep throat|streptococcus tonsilitis|septic sore throat|sore throat|pharyngitis|raw throat|infection +throat protector|1 +(noun)|protective garment +throat sweetbread|1 +(noun)|neck sweetbread|variety meat|organs +throated|1 +(adj)|necked +throatwort|1 +(noun)|nettle-leaved bellflower|Campanula trachelium|campanula|bellflower +throaty|1 +(adj)|low |low-pitched +throb|5 +(noun)|pain|hurting +(noun)|throbbing|pounding|pulse|pulsation|heartbeat|beat +(verb)|ache|smart|hurt +(verb)|pulsate|pulse|beat|pound|thump +(verb)|shudder|shiver|thrill|tremble +throbbing|3 +(adj)|rhythmical |rhythmic +(noun)|throb|pounding|pulse|pulsation|heartbeat|beat +(noun)|sound +throe|2 +(noun)|agony|suffering|excruciation +(noun)|distress +throes|3 +(noun)|suffering|hurt +(noun)|throe|agony|suffering|excruciation +(noun)|throe|distress +thrombasthenia|1 +(noun)|autosomal recessive disease|autosomal recessive defect +thrombectomy|1 +(noun)|ablation|extirpation|cutting out|excision +thrombin|1 +(noun)|coagulase +thrombocyte|1 +(noun)|platelet|blood platelet|protoplasm|living substance +thrombocytopenia|1 +(noun)|thrombopenia|blood disease|blood disorder +thrombocytopenic purpura|1 +(noun)|idiopathic thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura|peliosis|autoimmune disease|autoimmune disorder +thrombocytosis|1 +(noun)|symptom +thromboembolism|1 +(noun)|occlusion +thrombokinase|1 +(noun)|thromboplastin|factor III|coagulation factor|clotting factor +thrombolysis|1 +(noun)|lysis +thrombolytic|1 +(noun)|thrombolytic agent|clot buster|pharmaceutical +thrombolytic agent|1 +(noun)|thrombolytic|clot buster|pharmaceutical +thrombolytic therapy|1 +(noun)|therapy +thrombopenia|1 +(noun)|thrombocytopenia|blood disease|blood disorder +thrombophlebitis|1 +(noun)|phlebitis +thromboplastin|1 +(noun)|thrombokinase|factor III|coagulation factor|clotting factor +thrombose|1 +(verb)|change state|turn +thrombosed|1 +(adj)|obstructed +thrombosis|1 +(noun)|occlusion +thrombus|1 +(noun)|clot|coagulum +throne|5 +(noun)|chair +(noun)|toilet|can|commode|crapper|pot|potty|stool|plumbing fixture +(noun)|position|post|berth|office|spot|billet|place|situation +(verb)|govern|rule +(verb)|enthrone|invest|vest|enthrone +throng|2 +(noun)|multitude|concourse|gathering|assemblage +(verb)|mob|pack|pile|jam|crowd|crowd together +thronged|1 +(adj)|crowded +throstle|2 +(noun)|spinning machine +(noun)|song thrush|mavis|Turdus philomelos|thrush +throttle|5 +(noun)|accelerator|throttle valve|valve +(noun)|accelerator|accelerator pedal|gas pedal|gas|gun|pedal|treadle|foot pedal|foot lever +(verb)|restrict|restrain|trammel|limit|bound|confine|control|hold in|hold|contain|check|curb|moderate +(verb)|strangle|strangulate|kill +(verb)|choke|enrich +throttle valve|1 +(noun)|accelerator|throttle|valve +throttlehold|1 +(noun)|stranglehold|chokehold|power|powerfulness +throttler|1 +(noun)|garroter|garrotter|strangler|choker|killer|slayer +throttling|1 +(noun)|choking|strangling|strangulation|suffocation|asphyxiation +through|3 +(adj)|done|through with|finished +(adj)|direct +(adv)|through and through +through an experiment|1 +(adv)|experimentally|by experimentation +through and through|1 +(adv)|through +through empirical observation|1 +(adv)|empirically|by trial and error +through with|2 +(adj)|done|through|finished +(adj)|done with|finished +throughout|2 +(adv)|end-to-end +(adv)|passim +throughput|1 +(noun)|output|outturn|turnout +throughway|1 +(noun)|expressway|freeway|motorway|pike|state highway|superhighway|thruway|highway|main road +throw|21 +(noun)|propulsion|actuation +(noun)|opportunity|chance +(noun)|stroke|cam stroke|movement|motion +(noun)|distance +(noun)|bedclothes|bed clothing|bedding +(noun)|gambling|gaming|play +(verb)|propel|impel +(verb)|move +(verb)|shed|cast|cast off|shake off|throw off|throw away|drop|remove|take|take away|withdraw +(verb)|thrust|put|set|place|pose|position|lay +(verb)|give|communicate|intercommunicate +(verb)|flip|switch|engage|mesh|lock|operate +(verb)|project|cast|contrive|send|direct +(verb)|put|set|place|pose|position|lay +(verb)|bewilder|bemuse|discombobulate|upset|discompose|untune|disconcert|discomfit +(verb)|hurl|express|verbalize|verbalise|utter|give tongue to +(verb)|hold|have|make|give|direct +(verb)|shape|form|work|mold|mould|forge +(verb)|dislodge|displace|bump +(verb)|turn|release +(verb)|confuse|fox|befuddle|fuddle|bedevil|confound|discombobulate|be +throw-in|1 +(noun)|throw +throw-weight|1 +(noun)|weight +throw a fit|1 +(verb)|flip one's lid|blow up|hit the roof|hit the ceiling|have kittens|have a fit|combust|blow one's stack|fly off the handle|flip one's wig|lose one's temper|blow a fuse|go ballistic|rage +throw away|2 +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|cast away|put away|get rid of|remove +(verb)|shed|cast|cast off|shake off|throw|throw off|drop|remove|take|take away|withdraw +throw back|1 +(verb)|toss back|flip|toss|sky|pitch +throw cold water on|1 +(verb)|pour cold water on|discourage +throw in|3 +(verb)|lend|impart|bestow|contribute|add|bring +(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in the towel|quit|chuck up the sponge +(verb)|interject|come in|interpose|put in|inject|interrupt|disrupt|break up|cut off +throw in the towel|1 +(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in|quit|chuck up the sponge +throw off|2 +(verb)|shed|cast|cast off|shake off|throw|throw away|drop|remove|take|take away|withdraw +(verb)|shake|shake off|escape from|escape|get away|break loose +throw out|6 +(verb)|expel|kick out|move|displace +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|cast out|throw away|cast away|put away|get rid of|remove +(verb)|expel|eject|chuck out|exclude|kick out|turf out|boot out|turn out|move|displace +(verb)|oust|drum out|boot out|kick out|expel|remove +(verb)|advance|propose|suggest|advise +(verb)|dismiss +throw out of kilter|1 +(verb)|perturb|derange|disorder|disarray +throw overboard|2 +(verb)|forfeit|give up|waive|forgo|abandon +(verb)|deep-six|throw +throw pillow|1 +(noun)|cushion +throw rug|1 +(noun)|scatter rug|rug|carpet|carpeting +throw stick|1 +(noun)|boomerang|throwing stick|projectile|missile +throw together|2 +(verb)|fudge together|produce|make|create +(verb)|scramble|jumble|disorder|disarray +throw up|1 +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|excrete|egest|eliminate|pass +throwaway|5 +(adj)|cast-off|discarded|thrown-away|unwanted +(adj)|disposable +(noun)|street arab|gamin|street urchin|guttersnipe +(noun)|circular|handbill|bill|broadside|broadsheet|flier|flyer|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|actor's line|speech|words +throwback|3 +(adj)|atavistic|regressive +(noun)|atavist|organism|being +(noun)|atavism|reversion|recurrence|return +thrower|3 +(noun)|throwster|worker +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|potter|ceramicist|ceramist|craftsman|artisan|journeyman|artificer +throwing away|1 +(noun)|discard|abandonment +throwing board|1 +(noun)|throwing stick|spear thrower|dart thrower|device +throwing stick|2 +(noun)|throwing board|spear thrower|dart thrower|device +(noun)|boomerang|throw stick|projectile|missile +thrown|2 +(adj)|down +(adj)|thrown and twisted|tangled +thrown-away|1 +(adj)|cast-off|discarded|throwaway|unwanted +thrown and twisted|1 +(adj)|thrown|tangled +throwster|1 +(noun)|thrower|worker +thrum|4 +(noun)|sound +(verb)|hum|sound|go +(verb)|strum|sound +(verb)|drum|beat|sound|go +thrush|3 +(noun)|candidiasis|moniliasis|monilia disease +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|oscine|oscine bird +thrush nightingale|1 +(noun)|Luscinia luscinia|thrush +thrust|12 +(noun)|push|force +(noun)|stab|knife thrust|blow +(noun)|drive|driving force|propulsion|actuation +(noun)|criticism|unfavorable judgment +(noun)|jab|jabbing|poke|poking|thrusting|gesture +(verb)|push|force|thrust ahead +(verb)|stuff|shove|squeeze|push|force +(verb)|lunge|hurl|hurtle|move +(verb)|force|compel|oblige|obligate +(verb)|pierce|penetrate|perforate +(verb)|push up|stick out|protrude|jut out|jut|project +(verb)|throw|put|set|place|pose|position|lay +thrust ahead|1 +(verb)|barge|push forward|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along +thrust bearing|1 +(noun)|bearing +thrust fault|1 +(noun)|overthrust fault|reverse fault|inclined fault +thrust out|1 +(verb)|push out|obtrude|push|force +thrust stage|1 +(noun)|theater stage|theatre stage +thruster|2 +(noun)|pusher|intruder|interloper|trespasser +(noun)|rocket|rocket engine +thrusting|1 +(noun)|jab|jabbing|poke|poking|thrust|gesture +thruway|1 +(noun)|expressway|freeway|motorway|pike|state highway|superhighway|throughway|highway|main road +thryothorus|1 +(noun)|Thryothorus|genus Thryothorus|bird genus +thryothorus ludovicianus|1 +(noun)|Carolina wren|Thryothorus ludovicianus|wren|jenny wren +thucydides|1 +(noun)|Thucydides|historian|historiographer +thud|4 +(noun)|thump|thumping|clump|clunk|sound +(verb)|thump|sound|go +(verb)|hit|strike|impinge on|run into|collide with +(verb)|crump|scrunch|crunch|scranch|scraunch|crackle +thudding|1 +(adj)|dull|unreverberant |nonresonant +thug|1 +(noun)|hood|hoodlum|goon|punk|tough|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +thuggee|1 +(noun)|murder|slaying|execution +thuggery|1 +(noun)|crime|law-breaking +thuja|1 +(noun)|Thuja|genus Thuja|gymnosperm genus +thuja occidentalis|1 +(noun)|American arborvitae|northern white cedar|white cedar|Thuja occidentalis|arborvitae +thuja orientalis|1 +(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae +thuja plicata|1 +(noun)|western red cedar|red cedar|canoe cedar|Thuja plicata|arborvitae +thujopsis|1 +(noun)|Thujopsis|genus Thujopsis|gymnosperm genus +thujopsis dolobrata|1 +(noun)|hiba arborvitae|Thujopsis dolobrata|arborvitae +thule|2 +(noun)|Thule|town +(noun)|Thule|ultima Thule|geographical area|geographic area|geographical region|geographic region +thulium|1 +(noun)|Tm|atomic number 69|metallic element|metal +thumb|6 +(noun)|pollex|finger +(noun)|covering +(noun)|ovolo|quarter round|molding|moulding +(verb)|hitchhike|hitch|ride +(verb)|flick|flip|riffle|leaf|riff|peruse +(verb)|finger|touch +thumb index|1 +(noun)|notch +thumbed|1 +(adj)|worn +thumbhole|2 +(noun)|hole +(noun)|finger hole +thumbnail|1 +(noun)|fingernail +thumbnut|1 +(noun)|wing nut|wing-nut|wing screw|butterfly nut|nut +thumbprint|1 +(noun)|fingerprint +thumbscrew|2 +(noun)|instrument of torture +(noun)|screw +thumbstall|1 +(noun)|protective covering|protective cover|protection +thumbtack|2 +(noun)|drawing pin|pushpin|tack|paper fastener +(verb)|tack +thump|5 +(noun)|thumping|clump|clunk|thud|sound +(noun)|blow +(verb)|beat|pound|move +(verb)|thud|sound|go +(verb)|pound|poke|hit +thump out|1 +(verb)|beat out|tap out|beat +thumping|2 +(adj)|humongous|banging|whopping|walloping|large +(noun)|thump|clump|clunk|thud|sound +thunbergia|1 +(noun)|Thunbergia|genus Thunbergia|asterid dicot genus +thunbergia alata|1 +(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine +thunder|7 +(noun)|boom|roar|roaring|noise +(noun)|noise +(noun)|big H|hell dust|nose drops|smack|heroin|diacetylmorphine +(verb)|move +(verb)|roar|shout +(verb)|boom +(verb)|roar|howl +thunder bay|1 +(noun)|Thunder Bay|city|metropolis|urban center|port +thunder lizard|1 +(noun)|apatosaur|apatosaurus|brontosaur|brontosaurus|Apatosaurus excelsus|sauropod|sauropod dinosaur +thunder mug|1 +(noun)|chamberpot|potty|receptacle +thunder snake|1 +(noun)|worm snake|Carphophis amoenus|colubrid snake|colubrid +thunderbird|1 +(noun)|spirit|disembodied spirit +thunderbolt|2 +(noun)|bolt|bolt of lightning|lightning +(noun)|bombshell|thunderclap|surprise +thunderclap|2 +(noun)|thunder +(noun)|bombshell|thunderbolt|surprise +thundercloud|1 +(noun)|cumulonimbus|cumulonimbus cloud|cloud +thunderer|2 +(noun)|Jupiter Tonans|Thunderer|Jupiter|Jove +(noun)|noisemaker +thundering|2 +(adj)|noisy +(adj)|impressive +thunderous|2 +(adj)|deafening|earsplitting|roaring|thundery|loud +(adj)|unpropitious +thundershower|1 +(noun)|rainstorm +thunderstorm|1 +(noun)|electrical storm|electric storm|storm|violent storm +thunderstruck|1 +(adj)|dumbfounded|dumfounded|flabbergasted|stupefied|surprised +thundery|2 +(adj)|deafening|earsplitting|roaring|thunderous|loud +(adj)|stormy +thunk|1 +(noun)|sound +thunnus|1 +(noun)|Thunnus|genus Thunnus|fish genus +thunnus alalunga|1 +(noun)|albacore|long-fin tunny|Thunnus alalunga|tuna|tunny +thunnus albacares|1 +(noun)|yellowfin|yellowfin tuna|Thunnus albacares|tuna|tunny +thunnus thynnus|1 +(noun)|bluefin|bluefin tuna|horse mackerel|Thunnus thynnus|tuna|tunny +thurber|1 +(noun)|Thurber|James Thurber|James Grover Thurber|humorist|humourist|cartoonist +thurible|1 +(noun)|censer|vessel +thurifer|1 +(noun)|acolyte +thurify|1 +(verb)|cense|incense|odorize|odourise|scent +thuringia|1 +(noun)|Thuringia|geographical area|geographic area|geographical region|geographic region +thursday|1 +(noun)|Thursday|Th|weekday +thus|3 +(noun)|frankincense|olibanum|gum olibanum|gum +(adv)|therefore|hence|thence +(adv)|thusly|so +thus far|1 +(adv)|so far|up to now|hitherto|heretofore|as yet|yet|til now|until now +thusly|1 +(adv)|thus|so +thwack|2 +(noun)|blow +(verb)|smack|hit +thwart|2 +(noun)|cross thwart|crosspiece +(verb)|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk|prevent|forestall|foreclose|preclude|forbid +thwarted|1 +(adj)|defeated|disappointed|discomfited|foiled|frustrated|unsuccessful +thwarter|1 +(noun)|obstructionist|obstructor|obstructer|resister|disputant|controversialist|eristic +thwarting|2 +(adj)|frustrating|frustrative|preventive |preventative +(noun)|frustration|foiling|hindrance|interference +thwartwise|1 +(adj)|cross|transverse|transversal|crosswise +thylacine|1 +(noun)|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial|dasyurid +thylacinus|1 +(noun)|Thylacinus|genus Thylacinus|mammal genus +thylacinus cynocephalus|1 +(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial|dasyurid +thylogale|1 +(noun)|Thylogale|genus Thylogale|mammal genus +thyme|2 +(noun)|herb|herbaceous plant +(noun)|herb +thyme-leaved sandwort|1 +(noun)|Arenaria serpyllifolia|sandwort +thyme-leaved speedwell|1 +(noun)|Veronica serpyllifolia|veronica|speedwell +thyme camphor|1 +(noun)|thymol|thymic acid|phenol +thymelaeaceae|1 +(noun)|Thymelaeaceae|family Thymelaeaceae|daphne family|dicot family|magnoliopsid family +thymelaeales|1 +(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order +thymic acid|1 +(noun)|thymol|thyme camphor|phenol +thymidine|1 +(noun)|deoxythymidine|nucleoside +thymine|1 +(noun)|T|pyrimidine +thymol|1 +(noun)|thyme camphor|thymic acid|phenol +thymosin|1 +(noun)|hormone|endocrine|internal secretion +thymus|2 +(noun)|Thymus|genus Thymus|asterid dicot genus +(noun)|thymus gland|endocrine gland|endocrine|ductless gland +thymus gland|1 +(noun)|thymus|endocrine gland|endocrine|ductless gland +thymus serpyllum|1 +(noun)|wild thyme|creeping thyme|Thymus serpyllum|thyme +thymus vulgaris|1 +(noun)|common thyme|Thymus vulgaris|thyme +thyreophora|1 +(noun)|Thyreophora|suborder Thyreophora|thyreophoran|animal order +thyreophoran|1 +(noun)|Thyreophora|suborder Thyreophora|animal order +thyrocalcitonin|1 +(noun)|calcitonin|thyroid hormone +thyroglobulin|1 +(noun)|iodoprotein|iodinated protein +thyroid|3 +(adj)|thyroidal|endocrine gland|endocrine|ductless gland +(adj)|endocrine gland|endocrine|ductless gland +(noun)|thyroid gland|endocrine gland|endocrine|ductless gland +thyroid-stimulating hormone|1 +(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|TSH|hormone|endocrine|internal secretion +thyroid cartilage|1 +(noun)|Adam's apple|cartilage|gristle +thyroid gland|1 +(noun)|thyroid|endocrine gland|endocrine|ductless gland +thyroid hormone|1 +(noun)|hormone|endocrine|internal secretion +thyroid vein|1 +(noun)|vena thyroidea|vein|vena|venous blood vessel +thyroidal|1 +(adj)|thyroid|endocrine gland|endocrine|ductless gland +thyroidectomy|1 +(noun)|ablation|extirpation|cutting out|excision +thyroiditis|1 +(noun)|inflammation|redness|rubor +thyromegaly|1 +(noun)|goiter|goitre|struma|disease +thyronine|1 +(noun)|amino acid|aminoalkanoic acid +thyroprotein|1 +(noun)|iodoprotein|iodinated protein +thyrotoxic|1 +(adj)|glandular disease|gland disease|glandular disorder|adenosis +thyrotoxicosis|1 +(noun)|hyperthyroidism|glandular disease|gland disease|glandular disorder|adenosis +thyrotrophic hormone|1 +(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyroid-stimulating hormone|TSH|hormone|endocrine|internal secretion +thyrotrophin|1 +(noun)|thyrotropin|thyrotropic hormone|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone|endocrine|internal secretion +thyrotropic hormone|1 +(noun)|thyrotropin|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone|endocrine|internal secretion +thyrotropin|1 +(noun)|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone|endocrine|internal secretion +thyrotropin-releasing factor|1 +(noun)|thyrotropin-releasing hormone|TRH|TRF|protirelin|hormone|endocrine|internal secretion +thyrotropin-releasing hormone|1 +(noun)|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone|endocrine|internal secretion +thyroxin|1 +(noun)|thyroxine|tetraiodothyronine|T|thyroid hormone +thyroxine|1 +(noun)|thyroxin|tetraiodothyronine|T|thyroid hormone +thyrse|1 +(noun)|thyrsus|flower cluster +thyrsopteris|1 +(noun)|Thyrsopteris elegans|tree fern +thyrsopteris elegans|1 +(noun)|thyrsopteris|Thyrsopteris elegans|tree fern +thyrsus|1 +(noun)|thyrse|flower cluster +thysanocarpus|1 +(noun)|Thysanocarpus|genus Thysanocarpus|dilleniid dicot genus +thysanopter|1 +(noun)|thysanopteron|thysanopterous insect|insect +thysanoptera|1 +(noun)|Thysanoptera|order Thysanoptera|animal order +thysanopteron|1 +(noun)|thysanopter|thysanopterous insect|insect +thysanopterous insect|1 +(noun)|thysanopter|thysanopteron|insect +thysanura|1 +(noun)|Thysanura|order Thysanura|animal order +thysanuran insect|1 +(noun)|thysanuron|insect +thysanuron|1 +(noun)|thysanuran insect|insect +thz|1 +(noun)|terahertz|THz|rate +ti|3 +(noun)|titanium|Ti|atomic number 22|metallic element|metal +(noun)|Cordyline terminalis|shrub|bush +(noun)|te|si|solfa syllable +tia|1 +(noun)|transient ischemic attack|TIA|ischemia|ischaemia +tiamat|1 +(noun)|Tiamat|Semitic deity +tianjin|1 +(noun)|Tianjin|Tientsin|T'ien-ching|city|metropolis|urban center +tiara|1 +(noun)|jewelled headdress +tiarella|1 +(noun)|Tiarella|genus Tiarella|rosid dicot genus +tiarella cordifolia|1 +(noun)|foamflower|coolwart|false miterwort|false mitrewort|Tiarella cordifolia|herb|herbaceous plant +tiarella unifoliata|1 +(noun)|false miterwort|false mitrewort|Tiarella unifoliata|wildflower|wild flower +tiber|1 +(noun)|Tiber|Tevere|river +tiberius|1 +(noun)|Tiberius|Tiberius Claudius Nero Caesar Augustus|Roman Emperor|Emperor of Rome +tiberius claudius drusus nero germanicus|1 +(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor|Emperor of Rome +tiberius claudius nero caesar augustus|1 +(noun)|Tiberius|Tiberius Claudius Nero Caesar Augustus|Roman Emperor|Emperor of Rome +tibet|1 +(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country|Asian nation +tibetan|3 +(adj)|Tibetan|Asian country|Asian nation +(noun)|Tibetan|Himalayish +(noun)|Tibetan|Asian|Asiatic +tibetan buddhism|1 +(noun)|Lamaism|Tibetan Buddhism|Buddhism +tibetan mastiff|1 +(noun)|Tibetan mastiff|mastiff +tibetan terrier|1 +(noun)|Tibetan terrier|chrysanthemum dog|terrier +tibeto-burman|1 +(noun)|Tibeto-Burman|Tibeto-Burman language|Sino-Tibetan|Sino-Tibetan language +tibeto-burman language|1 +(noun)|Tibeto-Burman|Tibeto-Burman language|Sino-Tibetan|Sino-Tibetan language +tibia|1 +(noun)|shinbone|shin|leg bone +tibia valga|1 +(noun)|knock-knee|genu valgum|leg|disability|disablement|handicap|impairment +tibia vara|1 +(noun)|bowleg|genu varum|leg|disability|disablement|handicap|impairment +tibial|1 +(adj)|leg bone +tibial vein|1 +(noun)|vena tibialis|vein|vena|venous blood vessel +tibialis|1 +(noun)|tibialis muscle|musculus tibialis|skeletal muscle|striated muscle +tibialis anterior|1 +(noun)|tibialis anticus|tibialis|tibialis muscle|musculus tibialis +tibialis anticus|1 +(noun)|tibialis anterior|tibialis|tibialis muscle|musculus tibialis +tibialis muscle|1 +(noun)|tibialis|musculus tibialis|skeletal muscle|striated muscle +tibialis posterior|1 +(noun)|tibialis posticus|tibialis|tibialis muscle|musculus tibialis +tibialis posticus|1 +(noun)|tibialis posterior|tibialis|tibialis muscle|musculus tibialis +tibicen|1 +(noun)|Tibicen|genus Tibicen|arthropod genus +tibur|1 +(noun)|Tivoli|Tibur|town +tic|1 +(noun)|twitch|twitching|vellication +tic-tac-toe|1 +(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tit-tat-toe|noughts and crosses|board game +tic douloureux|1 +(noun)|trigeminal neuralgia|neuralgia|neuralgy +tical|1 +(noun)|baht|Thai monetary unit +tichodroma|1 +(noun)|Tichodroma|genus Tichodroma|bird genus +tichodroma muriaria|1 +(noun)|wall creeper|tichodrome|Tichodroma muriaria|creeper|tree creeper +tichodrome|1 +(noun)|wall creeper|Tichodroma muriaria|creeper|tree creeper +ticino|1 +(noun)|Ticino|Tessin|Swiss canton +tick|8 +(noun)|ticking|sound +(noun)|acarine +(noun)|check mark|check|mark +(noun)|mattress +(verb)|click|sound|go +(verb)|ticktock|ticktack|beat|sound|go +(verb)|retick|sew|run up|sew together|stitch +(verb)|check|check off|mark|mark off|tick off|verify +tick-tack-toe|2 +(noun)|ticktacktoe|ticktacktoo|tic-tac-toe|tit-tat-toe|noughts and crosses|board game +(noun)| +tick-weed|2 +(noun)|coreopsis|tickseed|tickweed|herb|herbaceous plant +(noun)| +tick fever|1 +(noun)|Rocky Mountain spotted fever|mountain fever|spotted fever +tick off|1 +(verb)|check|check off|mark|mark off|tick|verify +tick over|1 +(verb)|idle +tick trefoil|1 +(noun)|beggar lice|beggar's lice|subshrub|suffrutex +ticker|3 +(noun)|heart|pump|internal organ|viscus +(noun)|watch|timepiece|timekeeper +(noun)|stock ticker|character printer|character-at-a-time printer|serial printer +ticker tape|2 +(noun)|paper +(noun)|strip|slip +ticket|6 +(noun)|commercial document|commercial instrument +(noun)|summons|process +(noun)|slate|list|listing +(noun)|just the ticket|appropriateness +(verb)|fine|book +(verb)|supply|provide|render|furnish +ticket-of-leave|1 +(noun)|pass|laissez passer +ticket agent|1 +(noun)|booking clerk|seller|marketer|vender|vendor|trafficker +ticket book|1 +(noun)|booklet|brochure|folder|leaflet|pamphlet +ticket booth|1 +(noun)|box office|ticket office|office|business office +ticket collector|1 +(noun)|ticket taker|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|ostiary +ticket holder|1 +(noun)|holder|bearer +ticket line|1 +(noun)|queue|waiting line +ticket office|1 +(noun)|box office|ticket booth|office|business office +ticket stub|1 +(noun)|stub|receipt +ticket taker|1 +(noun)|ticket collector|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|ostiary +ticket tout|1 +(noun)|tout|scalper +ticket window|1 +(noun)|window +ticking|2 +(noun)|tick|sound +(noun)|fabric|cloth|material|textile +ticking bomb|1 +(noun)|time bomb|situation +tickle|5 +(noun)|cutaneous sensation|haptic sensation|skin sensation +(noun)|tickling|titillation|touch|touching +(verb)|titillate|vellicate|itch +(verb)|thrill|vibrate|stimulate|shake|shake up|excite|stir +(verb)|caress +tickler|1 +(noun)|tickler file|file|data file +tickler coil|1 +(noun)|coil +tickler file|1 +(noun)|tickler|file|data file +tickling|2 +(adj)|tingling|titillating|exciting +(noun)|tickle|titillation|touch|touching +ticklish|1 +(adj)|delicate|difficult |hard +tickseed|1 +(noun)|coreopsis|tickweed|tick-weed|herb|herbaceous plant +tickseed sunflower|1 +(noun)|Bidens coronata|Bidens trichosperma|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +ticktack|2 +(noun)|signal|signaling|sign +(verb)|tick|ticktock|beat|sound|go +ticktacktoe|1 +(noun)|ticktacktoo|tick-tack-toe|tic-tac-toe|tit-tat-toe|noughts and crosses|board game +ticktacktoo|1 +(noun)|ticktacktoe|tick-tack-toe|tic-tac-toe|tit-tat-toe|noughts and crosses|board game +ticktock|2 +(noun)|tocktact|tictac|tick|ticking +(verb)|tick|ticktack|beat|sound|go +tickweed|1 +(noun)|coreopsis|tickseed|tick-weed|herb|herbaceous plant +ticonderoga|1 +(noun)|Fort Ticonderoga|Ticonderoga|pitched battle +tictac|1 +(noun)|ticktock|tocktact|tick|ticking +tidal|1 +(adj)|periodic event|recurrent event +tidal basin|1 +(noun)|basin +tidal bore|1 +(noun)|bore|eagre|aegir|eager|tidal flow|tidal current +tidal current|1 +(noun)|tidal flow|current|stream +tidal flow|1 +(noun)|tidal current|current|stream +tidal river|1 +(noun)|tidewater river|tidal stream|tidewater stream|stream|watercourse +tidal stream|1 +(noun)|tidal river|tidewater river|tidewater stream|stream|watercourse +tidal wave|1 +(noun)|tsunami|wave|moving ridge +tidal zone|1 +(noun)|zone +tidbit|1 +(noun)|choice morsel|titbit|dainty|delicacy|goody|kickshaw|treat +tiddler|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tike|tyke|fry|nestling|juvenile|juvenile person +tiddley|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tight|tipsy|wet|intoxicated |drunk|inebriated +tiddly|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddley|tight|tipsy|wet|intoxicated |drunk|inebriated +tiddlywinks|1 +(noun)|child's game +tide|6 +(noun)|periodic event|recurrent event +(noun)|variation|fluctuation +(noun)|lunar time period|time period|period of time|period +(verb)|surge|run|flow|feed|course +(verb)|float|tide over +(verb)|float|drift|be adrift|blow +tide over|1 +(verb)|bridge over|keep going|suffice|do|answer|serve +tide rip|1 +(noun)|rip|riptide|crosscurrent|countercurrent|turbulence|turbulency +tidemark|1 +(noun)|indicator +tidewater|2 +(noun)|coastal plain +(noun)|Tidewater|geographical area|geographic area|geographical region|geographic region +tidewater river|1 +(noun)|tidal river|tidal stream|tidewater stream|stream|watercourse +tidewater stream|1 +(noun)|tidal river|tidewater river|tidal stream|stream|watercourse +tideway|1 +(noun)|channel +tidiness|2 +(noun)|orderliness|order +(noun)|neatness|cleanliness +tidings|1 +(noun)|news|intelligence|word|information|info +tidy|5 +(adj)|tidy |clean-cut|trig|trim|neat|neat|orderly|ruly|shipshape|trim|well-kept|slicked up|straight|uncluttered|unlittered|clean|fastidious|groomed +(adj)|kempt|trim|groomed +(adj)|goodly|goodish|hefty|respectable|sizable|sizeable|considerable +(noun)|receptacle +(verb)|tidy up|clean up|neaten|straighten|straighten out|square away|order +tidy sum|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +tidy tips|2 +(noun)|tidytips|Layia platyglossa|flower +(noun)| +tidy up|1 +(verb)|tidy|clean up|neaten|straighten|straighten out|square away|order +tidytips|1 +(noun)|tidy tips|Layia platyglossa|flower +tie|18 +(noun)|necktie|neckwear +(noun)|affiliation|association|tie-up|relationship +(noun)|draw|standoff|finish +(noun)|tie beam|beam +(noun)|link|linkup|tie-in|fastener|fastening|holdfast|fixing +(noun)|equality|equivalence|equation|par +(noun)|slur +(noun)|railroad tie|crosstie|sleeper|brace|bracing +(noun)|cord +(verb)|bind|fasten|fix|secure|tie down|tie up +(verb)|draw|equal|match|equalize|equalise|equate +(verb)|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|connect|link|link up +(verb)|shape|form +(verb)|bind|attach|bond|relate +(verb)|marry|wed|splice|officiate +(verb)|fashion|forge +(verb)|connect|link|link up +tie-in|1 +(noun)|link|linkup|tie|fastener|fastening|holdfast|fixing +tie-on|1 +(adj)|attachable +tie-up|2 +(noun)|affiliation|association|tie|relationship +(noun)|stand|standstill|stop|halt +tie beam|1 +(noun)|tie|beam +tie clip|1 +(noun)|jewelry|jewellery +tie down|2 +(verb)|tie up|bind|truss|restrain|confine|hold +(verb)|oblige|bind|hold|obligate +tie dye|1 +(verb)|hand dye +tie in|2 +(verb)|relate|interrelate +(verb)|associate|relate|link|colligate|link up|connect|think|cogitate|cerebrate +tie rack|1 +(noun)|rack +tie rod|1 +(noun)|rod +tie tack|1 +(noun)|tiepin|scarfpin|pin +tie up|5 +(verb)|tie down|bind|truss|restrain|confine|hold +(verb)|invest|put|commit|place +(verb)|obstruct|obturate|impede|occlude|jam|block|close up +(verb)|moor|berth|fasten|fix|secure +(verb)|bind off|tie|bind +tieback|1 +(noun)|pullback|holding device +tiebreaker|1 +(noun)|overtime|extra time +tied|5 +(adj)|trussed|bound +(adj)|united +(adj)|tied |fastened|knotted +(adj)|laced +(adj)|even|level|equal +tied up|1 +(adj)|busy +tien-pao|1 +(noun)|Tien-pao|Heavenly Jewel|Chinese deity +tien shan|1 +(noun)|Tien Shan|Tyan Shan|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +tientsin|1 +(noun)|Tianjin|Tientsin|T'ien-ching|city|metropolis|urban center +tiepin|1 +(noun)|tie tack|scarfpin|pin +tiepolo|1 +(noun)|Tiepolo|Giovanni Battista Tiepolo|painter +tier|5 +(noun)|grade|level|rank +(noun)|rival|challenger|competitor|competition|contender +(noun)|tier up|worker +(noun)|rope +(noun)|layer|bed +tier up|1 +(noun)|tier|worker +tierce|3 +(noun)|terce|canonical hour +(noun)|three|3|III|trio|threesome|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|one-third|third|common fraction|simple fraction +tiercel|1 +(noun)|tercel|tercelet|hawk +tiered|1 +(adj)|layer|bed +tiered seats|1 +(noun)|seating|seats|seating room|seating area +tierra del fuego|1 +(noun)|Tierra del Fuego|archipelago +tietze's syndrome|1 +(noun)|Tietze's syndrome|syndrome +tiff|1 +(noun)|bicker|bickering|spat|squabble|pettifoggery|fuss|quarrel|wrangle|row|words|run-in|dustup +tiffany|1 +(noun)|Tiffany|Louis Comfort Tiffany|artist|creative person +tiffany glass|1 +(noun)|Tiffany glass|stained glass +tiffin|1 +(noun)|lunch|luncheon|dejeuner|meal|repast +tiflis|1 +(noun)|Tbilisi|Tiflis|capital of Georgia|capital +tiger|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|Panthera tigris|big cat|cat +tiger beetle|1 +(noun)|beetle +tiger cat|2 +(noun)|Felis tigrina|wildcat +(noun)|domestic cat|house cat|Felis domesticus|Felis catus +tiger cowrie|1 +(noun)|Cypraea tigris|cowrie|cowry +tiger cub|1 +(noun)|cub|young carnivore +tiger lily|2 +(noun)|devil lily|kentan|Lilium lancifolium|lily +(noun)|leopard lily|pine lily|Lilium catesbaei|lily +tiger moth|1 +(noun)|arctiid|arctiid moth +tiger rattlesnake|1 +(noun)|Crotalus tigris|rattlesnake|rattler +tiger salamander|1 +(noun)|Ambystoma tigrinum|ambystomid|ambystomid salamander +tiger shark|1 +(noun)|Galeocerdo cuvieri|requiem shark +tiger snake|1 +(noun)|Notechis scutatus|elapid|elapid snake +tigerish|1 +(adj)|merciless |unmerciful +tigers|3 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +(noun)|tiger|person|individual|someone|somebody|mortal|human|soul +(noun)|tiger|Panthera tigris|big cat|cat +tight|16 +(adj)|tight |binding|constricting|choky|clenched|clinched|close|snug|close-fitting|skintight|tight-fitting|tightly fitting|viselike|tense +(adj)|taut|tense +(adj)|invulnerable +(adj)|compressed|closed |shut +(adj)|mean|mingy|miserly|stingy |ungenerous +(adj)|scarce +(adj)|tight |airtight|air-tight|gas-tight|dripless|hermetic|rainproof|waterproof|waterproofed|sealed|snug|watertight|impermeable|seaworthy +(adj)|close|fine +(adj)|secure +(adj)|close|equal +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tipsy|wet|intoxicated |drunk|inebriated +(adj)|nasty|difficult |hard +(adj)|rigorous|stringent|demanding +(adj)|compact +(adv)|fast +(adv)|close|closely +tight-fitting|1 +(adj)|tightly fitting|tight +tight-knit|1 +(adj)|tightly knit|integrated +tight-laced|1 +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|victorian|proper +tight end|1 +(noun)|end +tight money|1 +(noun)|financial condition|economic condition +tighten|4 +(verb)|fasten|change|alter|modify +(verb)|change +(verb)|stiffen|tighten up|constrain|restrict|restrain|trammel|limit|bound|confine|throttle +(verb)|reduce|restrict|restrain|trammel|limit|bound|confine|throttle +tighten one's belt|1 +(verb)|save|economize|economise +tighten up|1 +(verb)|stiffen|tighten|constrain|restrict|restrain|trammel|limit|bound|confine|throttle +tightened|2 +(adj)|secure +(adj)|demanding +tightening|1 +(noun)|alteration|modification|adjustment +tightfisted|1 +(adj)|closefisted|hardfisted|stingy |ungenerous +tightfistedness|1 +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|closeness|stinginess +tightlipped|1 +(adj)|close|closelipped|closemouthed|secretive|uncommunicative |incommunicative +tightly fitting|1 +(adj)|tight-fitting|tight +tightly knit|1 +(adj)|tight-knit|integrated +tightness|3 +(noun)|stringency|lack|deficiency|want +(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightfistedness|closeness|stinginess +(noun)|tautness|immovability|immovableness +tightrope|1 +(noun)|rope +tightrope walker|1 +(noun)|funambulist|acrobat +tights|2 +(noun)|leotards|hosiery|hose +(noun)|hose|garment +tightwad|1 +(noun)|cheapskate|miser +tiglon|1 +(noun)|tigon|big cat|cat +tigon|1 +(noun)|tiglon|big cat|cat +tigress|1 +(noun)|tiger|Panthera tigris +tigris|1 +(noun)|Tigris|Tigris River|river +tigris river|1 +(noun)|Tigris|Tigris River|river +tijuana|1 +(noun)|Tijuana|city|metropolis|urban center +tike|2 +(noun)|peasant|barbarian|boor|churl|Goth|tyke|unpleasant person|disagreeable person +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tyke|fry|nestling|juvenile|juvenile person +til now|1 +(adv)|so far|thus far|up to now|hitherto|heretofore|as yet|yet|until now +tilapia|1 +(noun)|Tilapia|genus Tilapia|fish genus +tilapia nilotica|1 +(noun)|bolti|Tilapia nilotica|cichlid|cichlid fish +tilde|1 +(noun)|diacritical mark|diacritic +tilden|1 +(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player +tile|3 +(noun)|slab +(noun)|roofing tile|roofing material +(verb)|cover +tile cutter|1 +(noun)|cutter|cutlery|cutting tool +tile roof|1 +(noun)|roof +tiled|1 +(adj)|covered +tilefish|2 +(noun)|blanquillo|percoid fish|percoid|percoidean +(noun)|Lopholatilus chamaeleonticeps|percoid fish|percoid|percoidean +tiler|1 +(noun)|worker +tilia|1 +(noun)|Tilia|genus Tilia|dilleniid dicot genus +tilia americana|1 +(noun)|American basswood|American lime|Tilia americana|linden|linden tree|basswood|lime|lime tree +tilia cordata|1 +(noun)|small-leaved linden|small-leaved lime|Tilia cordata|linden|linden tree|basswood|lime|lime tree +tilia heterophylla|1 +(noun)|white basswood|cottonwood|Tilia heterophylla|linden|linden tree|basswood|lime|lime tree +tilia japonica|1 +(noun)|Japanese linden|Japanese lime|Tilia japonica|linden|linden tree|basswood|lime|lime tree +tilia tomentosa|1 +(noun)|silver lime|silver linden|Tilia tomentosa|linden|linden tree|basswood|lime|lime tree +tiliaceae|1 +(noun)|Tiliaceae|family Tiliaceae|linden family|dilleniid dicot family +tiling|1 +(noun)|application|coating|covering +tiliomycetes|1 +(noun)|Tiliomycetes|class Tiliomycetes|class +till|4 +(noun)|boulder clay|soil|dirt +(noun)|public treasury|trough|treasury|exchequer +(noun)|cashbox|money box|strongbox|deedbox +(verb)|work|work on|process +tillable|1 +(adj)|arable|cultivable|cultivatable|productive +tillage|2 +(noun)|cultivated land|farmland|plowland|ploughland|tilled land|tilth|land|ground|soil +(noun)|culture +tillandsia|1 +(noun)|Tillandsia|genus Tillandsia|monocot genus|liliopsid genus +tillandsia usneoides|1 +(noun)|Spanish moss|old man's beard|black moss|long moss|Tillandsia usneoides|air plant|epiphyte|aerophyte|epiphytic plant +tilled|1 +(adj)|plowed |ploughed +tilled land|1 +(noun)|cultivated land|farmland|plowland|ploughland|tillage|tilth|land|ground|soil +tiller|5 +(noun)|shoot +(noun)|farmer|husbandman|granger|sodbuster +(noun)|lever +(noun)|cultivator|farm machine +(verb)|stool|grow|develop|produce|get|acquire +tilletia|1 +(noun)|Tilletia|genus Tilletia|fungus genus +tilletia caries|1 +(noun)|bunt|Tilletia caries|smut|smut fungus +tilletia foetida|1 +(noun)|bunt|stinking smut|Tilletia foetida|smut|smut fungus +tilletiaceae|1 +(noun)|Tilletiaceae|family Tilletiaceae|fungus family +tillich|1 +(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian|theologist|theologizer|theologiser +tilling|1 +(noun)|cultivation +tilt|9 +(noun)|joust|struggle|battle +(noun)|controversy|contention|contestation|disputation|disceptation|argument|arguing|dispute|difference|difference of opinion|conflict +(noun)|partiality|partisanship +(noun)|list|inclination|lean|leaning|position|spatial relation +(noun)|rock|careen|sway|lurch|pitch|pitching +(verb)|lean|tip|slant|angle|bend|flex +(verb)|cant|cant over|slant|pitch|move +(verb)|careen|wobble|shift|move +(verb)|joust +tilt-top table|1 +(noun)|tip-top table|tip table|pedestal table +tilt angle|1 +(noun)|angle +tilted|1 +(adj)|atilt|canted|leaning|tipped|inclined +tilter|2 +(noun)|rival|challenger|competitor|competition|contender +(noun)|device +tilth|2 +(noun)|condition|status +(noun)|cultivated land|farmland|plowland|ploughland|tilled land|tillage|land|ground|soil +tilting board|1 +(noun)|seesaw|teeter-totter|teeterboard|dandle board|plaything|toy +tiltyard|1 +(noun)|yard +tim leary|1 +(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist +timalia|1 +(noun)|Timalia|genus Timalia|bird genus +timaliidae|1 +(noun)|Timaliidae|family Timaliidae|bird family +timbale|2 +(noun)|dish +(noun)|timbale case|pastry +timbale case|1 +(noun)|timbale|pastry +timber|5 +(noun)|lumber|building material +(noun)|beam +(noun)|post +(noun)|forest|woodland|timberland|land|dry land|earth|ground|solid ground|terra firma|biome +(noun)|timbre|quality|tone|sound property +timber-framed|1 +(adj)|timbered +timber hitch|1 +(noun)|hitch +timber line|2 +(noun)|timberline|tree line|line +(noun)| +timber rattlesnake|1 +(noun)|banded rattlesnake|Crotalus horridus horridus|rattlesnake|rattler +timber wolf|1 +(noun)|gray wolf|Canis lupus|wolf +timbered|2 +(adj)|timbered |half-timber|half-timbered|timber-framed +(adj)|wooded +timberland|1 +(noun)|forest|woodland|timber|land|dry land|earth|ground|solid ground|terra firma|biome +timberline|1 +(noun)|timber line|tree line|line +timberman|1 +(noun)|owner|proprietor +timbre|1 +(noun)|timber|quality|tone|sound property +timbrel|1 +(noun)|drum|membranophone|tympan +timbuktu|1 +(noun)|Timbuktu|city|metropolis|urban center +time|15 +(noun)|clip|case|instance|example +(noun)|time period|period of time|period +(noun)|time period|period of time|period +(noun)|moment|minute|second|instant +(noun)|abstraction +(noun)|clock time|reading|meter reading|indication +(noun)|fourth dimension|dimension +(noun)|experience +(noun)|meter|metre|rhythmicity +(noun)|prison term|sentence|term +(verb)|clock|quantify|measure +(verb)|schedule +(verb)|determine|shape|mold|influence|regulate +(verb)|adjust|set|correct +(verb)|adjust|set|correct +time-and-motion study|2 +(noun)|time and motion study|time-motion study|motion study|time study|work study|examination|scrutiny +(noun)| +time-ball|1 +(noun)|ball|globe|orb +time-consuming|1 +(adj)|long +time-delay measuring instrument|1 +(noun)|time-delay measuring system|chronoscope +time-delay measuring system|1 +(noun)|time-delay measuring instrument|chronoscope +time-fuse|1 +(noun)|fuse|fuze|fusee|fuzee|primer|priming +time-honored|2 +(adj)|time-honoured|honorable |honourable +(adj)|time-honoured|traditional +time-honoured|2 +(adj)|time-honored|honorable |honourable +(adj)|time-honored|traditional +time-motion study|1 +(noun)|time and motion study|time-and-motion study|motion study|time study|work study|examination|scrutiny +time-out|2 +(noun)|pause|intermission|break|interruption|suspension +(noun)|respite|recess|break|time out|pause +time-scale factor|1 +(noun)|scale factor +time-switch|1 +(noun)|switch|electric switch|electrical switch +time-tested|1 +(adj)|tested|tried|tried and true|reliable +time and a half|1 +(noun)|pay rate|rate of pay +time and again|1 +(adv)|over and over|again and again|over and over again|time and time again +time and motion study|1 +(noun)|time-and-motion study|time-motion study|motion study|time study|work study|examination|scrutiny +time and time again|1 +(adv)|over and over|again and again|over and over again|time and again +time being|1 +(noun)|nonce|present|nowadays +time bill|1 +(noun)|time draft|draft|bill of exchange|order of payment +time bomb|2 +(noun)|ticking bomb|situation +(noun)|infernal machine|bomb +time capsule|1 +(noun)|container +time clock|1 +(noun)|clock +time constant|2 +(noun)|time interval|interval +(noun)|ratio +time deposit|1 +(noun)|certificate of deposit|CD +time deposit account|1 +(noun)|deposit account|savings account +time draft|1 +(noun)|time bill|draft|bill of exchange|order of payment +time exposure|2 +(noun)|photograph|photo|exposure|pic +(noun)|exposure +time frame|1 +(noun)|time period|period of time|period +time immemorial|1 +(noun)|time out of mind|past|past times|yesteryear|yore +time interval|1 +(noun)|interval|measure|quantity|amount +time lag|1 +(noun)|delay|hold|postponement|wait|pause|intermission|break|interruption|suspension +time limit|1 +(noun)|time period|period of time|period +time loan|1 +(noun)|loan +time machine|1 +(noun)|machine +time note|1 +(noun)|note|promissory note|note of hand +time of arrival|1 +(noun)|arrival time|point|point in time +time of day|1 +(noun)|hour|clock time|time +time of departure|1 +(noun)|departure time|point|point in time +time of life|1 +(noun)|time period|period of time|period +time of origin|1 +(noun)|vintage|oldness +time of year|1 +(noun)|season|time period|period of time|period +time off|1 +(noun)|time period|period of time|period +time out|2 +(noun)|respite|recess|break|pause +(noun)|time-out|pause|intermission|break|interruption|suspension +time out of mind|1 +(noun)|time immemorial|past|past times|yesteryear|yore +time period|1 +(noun)|period of time|period|fundamental quantity|fundamental measure +time plan|1 +(noun)|installment plan|installment buying|regular payment +time scale|1 +(noun)|duration|continuance +time series|1 +(noun)|statistic +time sharing|1 +(noun)|sharing +time sheet|1 +(noun)|written record|written account +time signal|1 +(noun)|signal|signaling|sign +time signature|1 +(noun)|musical time signature|musical notation +time slot|1 +(noun)|slot|time interval|interval +time study|1 +(noun)|time and motion study|time-and-motion study|time-motion study|motion study|work study|examination|scrutiny +time to come|1 +(noun)|future|hereafter|futurity|time +time unit|1 +(noun)|unit of time|measure|quantity|amount +time value|1 +(noun)|value|note value|duration|continuance +time zone|1 +(noun)|zone|geographical zone +timecard|2 +(noun)|written record|written account +(noun)|card +timed|1 +(adj)|regular +timekeeper|3 +(noun)|timer|official +(noun)|clerk +(noun)|timepiece|measuring instrument|measuring system|measuring device +timekeeping|1 +(noun)|activity +timeless|1 +(adj)|dateless|unaltered |unchanged +timeless existence|1 +(noun)|eternity|timelessness|being|beingness|existence +timelessness|1 +(noun)|eternity|timeless existence|being|beingness|existence +timeliness|2 +(noun)|seasonableness|timing +(noun)|opportuneness|patness|convenience +timely|3 +(adj)|punctual +(adj)|seasonable|well-timed|well timed|opportune +(adv)|seasonably|well-timed|apropos +timepiece|1 +(noun)|timekeeper|measuring instrument|measuring system|measuring device +timer|3 +(noun)|timepiece|timekeeper +(noun)|timekeeper|official +(noun)|governor|regulator +times|12 +(noun)|modern times|present time|modern world|contemporary world|present|nowadays +(noun)|multiplication|arithmetic operation +(noun)|time|clip|case|instance|example +(noun)|time|time period|period of time|period +(noun)|time|time period|period of time|period +(noun)|time|moment|minute|second|instant +(noun)|time|abstraction +(noun)|clock time|time|reading|meter reading|indication +(noun)|fourth dimension|time|dimension +(noun)|time|experience +(noun)|meter|metre|time|rhythmicity +(noun)|prison term|sentence|time|term +times square|1 +(noun)|Times Square|city district +timesaving|1 +(adj)|expeditious|prompt|efficient +timeserver|1 +(noun)|opportunist|self-seeker +timeserving|1 +(adj)|opportunist|opportunistic|expedient +timetable|2 +(noun)|schedule +(noun)|schedule +timework|1 +(noun)|work +timeworn|1 +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|tired|trite|well-worn|unoriginal +timgad|1 +(noun)|Timgad|town +timid|5 +(adj)|timid |bashful|coy|fearful|timorous|trepid|intimidated|mousy|mousey|shy|afraid|backward|cowardly|fearful|unadventurous|unassertive +(adj)|unmanly |unmanful|unmanlike +(adj)|diffident|shy|unsure|unconfident +(adj)|faint|fainthearted|cowardly |fearful +(noun)|cautious|people +timidity|2 +(noun)|timidness|timorousness|fear|fearfulness|fright +(noun)|timorousness|fearfulness +timidly|1 +(adv)|shyly|bashfully +timidness|1 +(noun)|timidity|timorousness|fear|fearfulness|fright +timimoun|1 +(noun)|Timimoun|town +timing|1 +(noun)|temporal arrangement|temporal order +timolol|1 +(noun)|Blocadren|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +timor|1 +(noun)|Timor|island +timor sea|1 +(noun)|Timor Sea|sea +timorese|2 +(adj)|Timorese|island +(noun)|Timorese|Asian|Asiatic +timorous|1 +(adj)|fearful|trepid|timid +timorously|1 +(adv)|trepidly +timorousness|2 +(noun)|timidity|timidness|fear|fearfulness|fright +(noun)|timidity|fearfulness +timothy|3 +(noun)|herd's grass|Phleum pratense|grass +(noun)|Timothy|Christian +(noun)|hay +timothy francis leary|1 +(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist +timothy leary|1 +(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist +timothy miles bindon rice|1 +(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist +timpani|1 +(noun)|kettle|kettledrum|tympanum|tympani|percussion instrument|percussive instrument +timpanist|1 +(noun)|tympanist|drummer +timucu|1 +(noun)|needlefish|gar|billfish +timur|1 +(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler|swayer +timur lenk|1 +(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler|swayer +tin|6 +(noun)|Sn|atomic number 50|metallic element|metal +(noun)|canister|cannister|container +(noun)|can|tin can|container +(verb)|plate +(verb)|can|put up|preserve|keep +(verb)|plate +tin-plating|1 +(noun)|tinning|application|coating|covering +tin can|2 +(noun)|destroyer|guided missile destroyer +(noun)|can|tin|container +tin disease|1 +(noun)|tin pest|tin plague|transformation|transmutation|shift +tin ear|2 +(noun)|tone deafness|deafness|hearing loss +(noun)|insensitivity|insensitiveness +tin foil|3 +(noun)|tinfoil|foil +(noun)|aluminum foil|aluminium foil|foil +(noun)| +tin hat|1 +(noun)|hard hat|safety hat|helmet +tin opener|1 +(noun)|can opener|opener +tin pan alley|1 +(noun)|Tin Pan Alley|business district|downtown +tin pest|1 +(noun)|tin disease|tin plague|transformation|transmutation|shift +tin plague|1 +(noun)|tin pest|tin disease|transformation|transmutation|shift +tin plate|1 +(noun)|sheet metal +tin pyrites|1 +(noun)|stannite|mineral +tin whistle|1 +(noun)|pennywhistle|whistle|fipple flute|fipple pipe|recorder|vertical flute +tinamidae|1 +(noun)|Tinamidae|family Tinamidae|bird family +tinamiformes|1 +(noun)|Tinamiformes|order Tinamiformes|animal order +tinamou|1 +(noun)|partridge|game bird +tinbergen|2 +(noun)|Tinbergen|Nikolaas Tinbergen|zoologist|animal scientist +(noun)|Tinbergen|Jan Tinbergen|economist|economic expert +tinca|1 +(noun)|Tinca|genus Tinca|fish genus +tinca tinca|1 +(noun)|tench|Tinca tinca|cyprinid|cyprinid fish +tinct|1 +(verb)|tint|bepaint|tinge|touch|dye +tincture|6 +(noun)|coloring material|colouring material|color|colour +(noun)|trace|vestige|shadow|indication|indicant +(noun)|shade|tint|tone|color|colour|coloring|colouring +(noun)|medicine|medication|medicament|medicinal drug +(verb)|impregnate|infuse|instill|fill|fill up|make full +(verb)|tint|tinct|bepaint|tinge|touch +tincture of iodine|1 +(noun)|iodine|tincture|antiseptic +tincture of opium|1 +(noun)|laudanum|opiate +tindal|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +tindale|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +tinder|1 +(noun)|kindling|touchwood|spunk|punk|igniter|ignitor|lighter +tinderbox|2 +(noun)|situation +(noun)|box +tine|1 +(noun)|prong +tine test|1 +(noun)|tuberculin test|tuberculin skin test +tinea|2 +(noun)|ringworm|roundworm|fungal infection|mycosis +(noun)|Tinea|genus Tinea|arthropod genus +tinea barbae|1 +(noun)|barber's itch|tinea|ringworm|roundworm +tinea capitis|1 +(noun)|tinea|ringworm|roundworm +tinea corporis|1 +(noun)|tinea|ringworm|roundworm +tinea cruris|1 +(noun)|jock itch|eczema marginatum|tinea|ringworm|roundworm +tinea pedis|1 +(noun)|athlete's foot|tinea|ringworm|roundworm +tinea pellionella|1 +(noun)|casemaking clothes moth|Tinea pellionella|clothes moth +tinea unguium|1 +(noun)|tinea|ringworm|roundworm +tined|1 +(adj)|pronged|divided +tineid|1 +(noun)|tineid moth|tineoid|tineoid moth +tineid moth|1 +(noun)|tineid|tineoid|tineoid moth +tineidae|1 +(noun)|Tineidae|family Tineidae|arthropod family +tineoid|1 +(noun)|tineoid moth|moth +tineoid moth|1 +(noun)|tineoid|moth +tineoidea|1 +(noun)|Tineoidea|superfamily Tineoidea|arthropod family +tineola|1 +(noun)|Tineola|genus Tineola|arthropod genus +tineola bisselliella|1 +(noun)|webbing clothes moth|webbing moth|Tineola bisselliella|clothes moth +tinfoil|1 +(noun)|tin foil|foil +ting|3 +(noun)|tinkle|sound +(verb)|sound +(verb)|sound|go +tinge|5 +(noun)|touch|hint|mite|pinch|jot|speck|soupcon|small indefinite quantity|small indefinite amount +(noun)|undertone|shade|tint|tincture|tone +(verb)|imbue|hue|dye +(verb)|color|colour|distort|affect|impact|bear upon|bear on|touch on|touch +(verb)|tint|tinct|bepaint|touch|dye +tinged|1 +(adj)|touched|colored |coloured|colorful +tingidae|1 +(noun)|Tingidae|family Tingidae|arthropod family +tingle|3 +(noun)|frisson|shiver|chill|quiver|shudder|thrill|fear|fearfulness|fright +(noun)|prickling|tingling|somesthesia|somaesthesia|somatesthesia|somatic sensation +(verb)|prickle|itch +tingling|3 +(adj)|tickling|titillating|exciting +(adj)|prickling|stinging|painful +(noun)|prickling|tingle|somesthesia|somaesthesia|somatesthesia|somatic sensation +tininess|1 +(noun)|diminutiveness|minuteness|petiteness|weeness|smallness|littleness +tink|1 +(verb)|tinkle|clink|chink|sound|go +tinker|7 +(noun)|tinkerer|experimenter +(noun)|itinerant +(noun)|mender|tinkerer|repairman|repairer|maintenance man|service man|fixer +(noun)|chub mackerel|Scomber japonicus|mackerel +(verb)|putter|mess around|potter|monkey|monkey around|muck about|muck around|work +(verb)|work|do work +(verb)|fiddle|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +tinker's dam|1 +(noun)|damn|darn|hoot|red cent|shit|shucks|tinker's damn|worthlessness +tinker's damn|1 +(noun)|damn|darn|hoot|red cent|shit|shucks|tinker's dam|worthlessness +tinker's root|1 +(noun)|feverroot|horse gentian|wild coffee|Triostium perfoliatum|herb|herbaceous plant +tinkerer|3 +(noun)|fiddler|unskilled person +(noun)|tinker|experimenter +(noun)|mender|tinker|repairman|repairer|maintenance man|service man|fixer +tinkle|2 +(noun)|ting|sound +(verb)|tink|clink|chink|sound|go +tinkling|1 +(adj)|tinkly|reverberant |ringing +tinkly|1 +(adj)|tinkling|reverberant |ringing +tinned|1 +(adj)|canned|preserved +tinned goods|1 +(noun)|canned food|canned foods|canned goods|foodstuff|food product +tinned meat|1 +(noun)|canned meat|canned food|canned foods|canned goods|tinned goods +tinner|1 +(noun)|tinsmith|smith +tinnevelly senna|1 +(noun)|Alexandria senna|Alexandrian senna|true senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +tinning|2 +(noun)|application|coating|covering +(noun)|tin-plating|application|coating|covering +tinnitus|1 +(noun)|symptom +tinny|2 +(adj)|bum|cheap|cheesy|chintzy|crummy|punk|sleazy|inferior +(adj)|metallic +tinpot|1 +(adj)|worthless +tinsel|5 +(noun)|decoration|ornament|ornamentation +(noun)|thread|yarn +(verb)|lend|impart|bestow|contribute|add|bring +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|weave|interweave +tinseled|1 +(adj)|clinquant|tinselly|adorned |decorated +tinselly|1 +(adj)|clinquant|tinseled|adorned |decorated +tinsmith|1 +(noun)|tinner|smith +tinsnips|1 +(noun)|snips|shear|shears +tint|2 +(noun)|shade|tincture|tone|color|colour|coloring|colouring +(verb)|tinct|bepaint|tinge|touch|dye +tintack|1 +(noun)|tack +tinter|1 +(noun)|hairdresser|hairstylist|stylist|styler +tinting|1 +(noun)|coloring|colouring +tintinnabulate|1 +(verb)|ring|peal +tintinnabulation|1 +(noun)|ring|ringing|sound +tintometer|1 +(noun)|colorimeter|measuring instrument|measuring system|measuring device +tintoretto|1 +(noun)|Tintoretto|Jacopo Robusti|old master +tinware|1 +(noun)|article of commerce +tiny|1 +(adj)|bantam|diminutive|lilliputian|midget|petite|flyspeck|small +tip|14 +(noun)|end +(noun)|gratuity|pourboire|baksheesh|bakshish|bakshis|backsheesh|fringe benefit|perquisite|perk +(noun)|lead|steer|confidential information|wind|hint|guidance|counsel|counseling|counselling|direction +(noun)|point|peak|convex shape|convexity +(noun)|peak|crown|crest|top|summit|topographic point|place|spot +(verb)|reorient +(verb)|mark +(verb)|fee|bung|give|gift|present +(verb)|topple|tumble|push|force +(verb)|lean|tilt|slant|angle|bend|flex|tip over|tip over +(verb)|tiptoe|tippytoe|walk +(verb)|tap|strike +(verb)|tip off|advise|counsel +(verb)|remove|take|take away|withdraw +tip-and-run|1 +(adj)|hit-and-run|offensive +tip-off|2 +(noun)|information +(noun)|tap-off|jump ball +tip-tilted|1 +(adj)|retrousse|upturned|shapely +tip-top table|1 +(noun)|tilt-top table|tip table|pedestal table +tip-up|1 +(adj)|collapsible |collapsable +tip in|1 +(noun)|basketball shot +tip off|1 +(verb)|tip|advise|counsel +tip over|2 +(verb)|overturn|turn over|upset|knock over|bowl over|tump over|move|displace +(verb)|overturn|turn over|tump over|turn +tip sheet|1 +(noun)|publication +tip table|1 +(noun)|tilt-top table|tip-top table|pedestal table +tip truck|1 +(noun)|dump truck|dumper|tipper truck|tipper lorry|tipper|truck|motortruck +tipi|1 +(noun)|tepee|teepee|tent|collapsible shelter|lodge|indian lodge +tipped|2 +(adj)|tipped |filter-tipped +(adj)|atilt|canted|leaning|tilted|inclined +tipper|2 +(noun)|donor|giver|presenter +(noun)|dump truck|dumper|tipper truck|tipper lorry|tip truck|truck|motortruck +tipper lorry|1 +(noun)|dump truck|dumper|tipper truck|tip truck|tipper|truck|motortruck +tipper truck|1 +(noun)|dump truck|dumper|tipper lorry|tip truck|tipper|truck|motortruck +tippet|1 +(noun)|cape|mantle +tipple|2 +(noun)|draft|draught|potation|drink +(verb)|bib|drink|booze|fuddle +tippler|1 +(noun)|social drinker|drinker|imbiber|toper|juicer +tippy|1 +(adj)|crank|cranky|tender|unstable +tippytoe|1 +(verb)|tiptoe|tip|walk +tipsiness|1 +(noun)|drunkenness|inebriation|inebriety|intoxication|temporary state +tipstaff|1 +(noun)|staff +tipster|1 +(noun)|tout|adviser|advisor|consultant +tipsy|1 +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|wet|intoxicated |drunk|inebriated +tipsy cake|1 +(noun)|trifle +tiptoe|3 +(adj)|quiet +(noun)|tip +(verb)|tip|tippytoe|walk +tiptop|1 +(adj)|ace|A-one|crack|first-rate|super|topnotch|tops|superior +tipu|1 +(noun)|tipu tree|yellow jacaranda|pride of Bolivia|tree +tipu tree|1 +(noun)|tipu|yellow jacaranda|pride of Bolivia|tree +tipuana|1 +(noun)|Tipuana|genus Tipuana|rosid dicot genus +tipulidae|1 +(noun)|Tipulidae|family Tipulidae|arthropod family +tirade|1 +(noun)|philippic|broadside|denunciation|denouncement|declamation +tiramisu|1 +(noun)|dessert|sweet|afters +tirana|1 +(noun)|Tirana|Albanian capital|national capital +tire|5 +(noun)|tyre|hoop|ring +(verb)|pall|weary|fatigue|jade|devolve|deteriorate|drop|degenerate +(verb)|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose +(verb)|run down|exhaust|play out|sap|consume|eat up|use up|eat|deplete|exhaust|run through|wipe out +(verb)|bore +tire chains|1 +(noun)|snow chains|chain +tire iron|1 +(noun)|tire tool|hand tool|lever +tire out|1 +(verb)|tire|wear upon|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose +tire tool|1 +(noun)|tire iron|hand tool|lever +tired|2 +(adj)|tired |all in|beat|bushed|dead|aweary|weary|bleary|blear|bleary-eyed|blear-eyed|bored|world-weary|burned-out|burnt-out|careworn|drawn|haggard|raddled|worn|drooping|flagging|exhausted|dog-tired|fagged|fatigued|played out|spent|washed-out|worn-out|worn out|footsore|jaded|wearied|knackered|drained|travel-worn|unrefreshed|unrested|whacked|ragged +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|trite|well-worn|unoriginal +tired of|1 +(adj)|disgusted|fed up|sick|sick of|displeased +tiredly|1 +(adv)|wearily +tiredness|1 +(noun)|fatigue|weariness|temporary state +tireless|2 +(adj)|indefatigable|unflagging|unwearying|energetic +(adj)|hardworking|industrious|untiring|diligent +tirelessly|1 +(adv)|indefatigably|inexhaustibly +tirelessness|1 +(noun)|indefatigability|indefatigableness|determination|purpose +tiresias|1 +(noun)|Tiresias|mythical being +tiresome|1 +(adj)|boring|deadening|dull|ho-hum|irksome|slow|tedious|wearisome|uninteresting +tiresomely|1 +(adv)|boringly|tediously +tiresomeness|1 +(noun)|tediousness|tedium|dullness|dulness +tirich mir|1 +(noun)|Tirich Mir|mountain peak +tiring|1 +(adj)|exhausting|wearing|wearying|effortful +tiro|1 +(noun)|novice|beginner|tyro|initiate|unskilled person +tirol|1 +(noun)|Tyrol|Tirol|state|province +tirso de molina|1 +(noun)|Tirso de Molina|Gabriel Tellez|dramatist|playwright +tisane|1 +(noun)|herb tea|herbal tea +tisha b'ab|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +tisha b'av|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +tishah b'ab|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +tishah b'av|1 +(noun)|Tishah b'Av|Tishah b'Ab|Tisha b'Av|Tisha b'Ab|Ninth of Av|Ninth of Ab|Fast of Av|Fast of Ab|Jewish holy day +tishri|1 +(noun)|Tishri|Jewish calendar month +tisiphone|1 +(noun)|Tisiphone|Fury|Eumenides|Erinyes +tissue|3 +(noun)|body part +(noun)|tissue paper|paper +(verb)|weave|create from raw material|create from raw stuff +tissue layer|1 +(noun)|membrane|animal tissue +tissue paper|1 +(noun)|tissue|paper +tissue plasminogen activator|1 +(noun)|Activase|thrombolytic|thrombolytic agent|clot buster +tissue typing|1 +(noun)|diagnostic test|diagnostic assay +tit|3 +(noun)|breast|bosom|knocker|boob|titty|mammary gland|mamma +(noun)|nipple|mammilla|mamilla|pap|teat|reproductive organ|sex organ +(noun)|titmouse|oscine|oscine bird +tit-tat-toe|1 +(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tic-tac-toe|noughts and crosses|board game +tit for tat|1 +(noun)|return|paying back|getting even +titan|3 +(noun)|colossus|behemoth|giant|heavyweight|important person|influential person|personage +(noun)|Titan|Greek deity +(noun)|Titan|satellite +titan arum|1 +(noun)|krubi|Amorphophallus titanum|arum|aroid +titaness|1 +(noun)|Titaness|Greek deity +titania|2 +(noun)|titanium dioxide|titanium oxide|titanic oxide|pigment|oxide +(noun)|Titania|fairy|faery|faerie|sprite +titanic|1 +(adj)|large +titanic acid|1 +(noun)|acid +titanic oxide|1 +(noun)|titanium dioxide|titanium oxide|titania|pigment|oxide +titanium|1 +(noun)|Ti|atomic number 22|metallic element|metal +titanium dioxide|1 +(noun)|titanium oxide|titanic oxide|titania|pigment|oxide +titanium oxide|1 +(noun)|titanium dioxide|titanic oxide|titania|pigment|oxide +titanosaur|1 +(noun)|titanosaurian|dinosaur +titanosaurian|1 +(noun)|titanosaur|dinosaur +titanosauridae|1 +(noun)|Titanosauridae|family Titanosauridae|reptile family +titanosaurus|1 +(noun)|Titanosaurus|genus Titanosaurus|reptile genus +titbit|1 +(noun)|choice morsel|tidbit|dainty|delicacy|goody|kickshaw|treat +titer|1 +(noun)|titre|concentration +titfer|1 +(noun)|hat|chapeau|lid +tithe|5 +(noun)|levy +(noun)|offering +(verb)|charge|bill +(verb)|levy|impose +(verb)|pay +tithe barn|1 +(noun)|barn +tither|1 +(noun)|payer|remunerator +tithonia|1 +(noun)|Mexican sunflower|flower +titi|3 +(noun)|buckwheat tree|Cliftonia monophylla|angiospermous tree|flowering tree +(noun)|sorrel tree|sourwood|Oxydendrum arboreum|angiospermous tree|flowering tree +(noun)|titi monkey|New World monkey|platyrrhine +titi family|1 +(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|dicot|dicotyledon|magnoliopsid|exogen +titi monkey|1 +(noun)|titi|New World monkey|platyrrhine +titian|1 +(noun)|Titian|Tiziano Vecellio|old master +titillate|2 +(verb)|tickle|vellicate|itch +(verb)|stimulate|shake|shake up|excite|stir +titillated|1 +(adj)|teased|excited +titillating|3 +(adj)|exciting +(adj)|erotic|sexy +(adj)|tickling|tingling|exciting +titillation|3 +(noun)|exhilaration|excitement +(noun)|arousal|rousing +(noun)|tickle|tickling|touch|touching +titivate|1 +(verb)|spruce up|spruce|tittivate|smarten up|slick up|spiff up|beautify|embellish|prettify +titivation|1 +(noun)|tittivation|decoration +titlark|1 +(noun)|pipit|lark|oscine|oscine bird +title|12 +(noun)|statute title|rubric|heading|header|head +(noun)|name +(noun)|subheading|subhead +(noun)|championship|high status +(noun)|deed|deed of conveyance|legal document|legal instrument|official document|instrument +(noun)|title of respect|appellation|denomination|designation|appellative +(noun)|claim|legal right +(noun)|writing|written material|piece of writing +(noun)|appellation|denomination|designation|appellative +(noun)|claim|right +(verb)|entitle|name|call +(verb)|style|name|call +title-holder|1 +(noun)|champion|champ|rival|challenger|competitor|competition|contender +title deed|1 +(noun)|deed|deed of conveyance|title +title of respect|1 +(noun)|title|appellation|denomination|designation|appellative +title page|1 +(noun)|page +title role|1 +(noun)|name part|character|role|theatrical role|part|persona +titled|2 +(adj)|titled |called|named|entitled|called|known as|styled +(adj)|coroneted|highborn|noble +titmouse|1 +(noun)|tit|oscine|oscine bird +tito|1 +(noun)|Tito|Marshal Tito|Josip Broz|statesman|solon|national leader +titrate|1 +(verb)|quantify|measure +titration|1 +(noun)|volumetric analysis +titrator|1 +(noun)|apparatus|setup +titre|1 +(noun)|titer|concentration +titter|2 +(noun)|laugh|laughter +(verb)|giggle|laugh|express joy|express mirth +titterer|1 +(noun)|giggler|laugher +tittering|1 +(adj)|thoriated|laugh|express joy|express mirth +tittivate|1 +(verb)|spruce up|spruce|titivate|smarten up|slick up|spiff up|beautify|embellish|prettify +tittivation|1 +(noun)|titivation|decoration +tittle|1 +(noun)|shred|scintilla|whit|iota|smidgen|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +tittle-tattle|2 +(noun)|chitchat|small talk|gab|gabfest|gossip|chin-wag|chin-wagging|causerie|chat|confab|confabulation|schmooze|schmoose +(verb)|chatter|piffle|palaver|prate|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +titty|1 +(noun)|breast|bosom|knocker|boob|tit|mammary gland|mamma +titular|5 +(adj)|titulary|legal right +(adj)|appellation|denomination|designation|appellative +(adj)|name +(adj)|appellation|denomination|designation|appellative +(adj)|nominal|formal +titulary|1 +(adj)|titular|legal right +titus|3 +(noun)|Titus|Christian +(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor|Emperor of Rome +(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|book +titus flavius domitianus|1 +(noun)|Domitian|Titus Flavius Domitianus|Roman Emperor|Emperor of Rome +titus flavius sabinus vespasianus|1 +(noun)|Vespasian|Titus Flavius Sabinus Vespasianus|Roman Emperor|Emperor of Rome +titus flavius vespasianus|1 +(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor|Emperor of Rome +titus livius|1 +(noun)|Livy|Titus Livius|historian|historiographer +titus lucretius carus|1 +(noun)|Lucretius|Titus Lucretius Carus|philosopher|poet +titus maccius plautus|1 +(noun)|Plautus|Titus Maccius Plautus|dramatist|playwright +titus oates|1 +(noun)|Oates|Titus Oates|conspirator|coconspirator|plotter|machinator +titus vespasianus augustus|1 +(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor|Emperor of Rome +tiu|1 +(noun)|Tiu|Anglo-Saxon deity +tivoli|1 +(noun)|Tivoli|Tibur|town +tiyin|1 +(noun)|Kazakhstani monetary unit +tiziano vecellio|1 +(noun)|Titian|Tiziano Vecellio|old master +tizzy|1 +(noun)|dither|pother|fuss|flap|agitation +tjalling charles koopmans|1 +(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist|economic expert +tjalling koopmans|1 +(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist|economic expert +tko|1 +(noun)|technical knockout|TKO|knockout|KO +tl|1 +(noun)|thallium|Tl|atomic number 81|metallic element|metal +tlc|1 +(noun)|tender loving care|TLC|care|attention|aid|tending +tlingit|2 +(noun)|Tlingit|Indian|North American Indian|American Indian|Red Indian +(noun)|Tlingit|Na-Dene +tm|1 +(noun)|thulium|Tm|atomic number 69|metallic element|metal +tmv|1 +(noun)|tobacco mosaic virus|TMV|plant virus +tn|1 +(noun)|Tennessee|Volunteer State|TN|American state +tnf|1 +(noun)|tumor necrosis factor|tumour necrosis factor|TNF|cytokine +tnt|1 +(noun)|TNT|trinitrotoluene|explosive compound +to-do|1 +(noun)|disturbance|disruption|commotion|stir|flutter|hurly burly|hoo-ha|hoo-hah|kerfuffle|disorder +to a fault|1 +(adv)|excessively|overly|too +to a great extent|1 +(adv)|heavily +to a greater extent|1 +(adv)|more +to a higher degree|1 +(adv)|more than +to a higher place|1 +(adv)|above|higher up|in a higher place +to a lesser degree|1 +(adv)|less than +to a lesser extent|1 +(adv)|less +to a lower place|1 +(adv)|below|at a lower place|beneath +to a t|1 +(adv)|to a T|to the letter|just right|to perfection +to a tolerable degree|1 +(adv)|tolerably|well enough|to an adequate degree +to all intents and purposes|1 +(adv)|for all practical purposes|for all intents and purposes +to an adequate degree|1 +(adv)|tolerably|well enough|to a tolerable degree +to and fro|1 +(adv)|back and forth|backward and forward +to be precise|1 +(adv)|properly speaking|strictly speaking +to be sure|1 +(adv)|without doubt|no doubt +to begin with|1 +(adv)|in the first place|earlier|in the beginning|originally +to boot|1 +(adv)|additionally|in addition +to both ears|1 +(adv)|binaurally|in both ears +to date|1 +(adv)|up to now +to each one|1 +(adv)|each|for each one|from each one|apiece +to it|1 +(adv)|thereto|to that +to leeward|1 +(noun)|leeward side|leeward +to no degree|1 +(adv)|nowise +to one ear|1 +(adv)|monaurally|in one ear +to perfection|1 +(adv)|to a T|to the letter|just right +to that|1 +(adv)|thereto|to it +to that degree|1 +(adv)|insofar|in so far|to that extent +to that extent|1 +(adv)|insofar|in so far|to that degree +to the contrary|1 +(adv)|contrarily|contrariwise|on the contrary +to the full|1 +(adv)|fully|full +to the highest degree|1 +(adv)|most +to the hilt|1 +(adv)|to the limit +to the letter|1 +(adv)|to a T|just right|to perfection +to the limit|1 +(adv)|to the hilt +to the lowest degree|1 +(adv)|least +to the north|1 +(adv)|north|in the north|northerly|northwards|northward +to the point|1 +(adj)|pertinent|relevant +to the south|1 +(adv)|south|in the south +to what degree|1 +(adv)|to what extent +to what extent|1 +(adv)|to what degree +to windward|1 +(noun)|windward side|weatherboard|weather side|windward +toad|1 +(noun)|frog|toad frog|anuran|batrachian|salientian|amphibian +toad-in-the-hole|1 +(noun)|pastry +toad frog|1 +(noun)|frog|toad|anuran|batrachian|salientian|amphibian +toad lily|1 +(noun)|Montia chamissoi|Indian lettuce +toad rush|1 +(noun)|Juncus bufonius|rush +toadfish|1 +(noun)|Opsanus tau|spiny-finned fish|acanthopterygian +toadflax|1 +(noun)|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris|flower +toadshade|1 +(noun)|red trillium|sessile trillium|Trillium sessile|trillium|wood lily|wake-robin +toadstool|1 +(noun)|agaric +toady|2 +(noun)|sycophant|crawler|lackey|flatterer|adulator +(verb)|fawn|truckle|bootlick|kowtow|kotow|suck up|flatter|blandish +toadyish|1 +(adj)|bootlicking|fawning|obsequious|sycophantic|insincere +toast|6 +(noun)|bread|breadstuff|staff of life +(noun)|celebrity|famous person +(noun)|goner|desperate +(noun)|pledge|drink +(verb)|crisp|heat|heat up +(verb)|drink|pledge|salute|wassail|honor|honour|reward +toast mistress|1 +(noun)|toastmaster +toasted|1 +(adj)|cooked +toaster|2 +(noun)|kitchen appliance +(noun)|wassailer|supporter|protagonist|champion|admirer|booster|friend +toaster oven|1 +(noun)|kitchen appliance +toasting|1 +(noun)|browning|cooking|cookery|preparation +toasting fork|1 +(noun)|fork +toastmaster|1 +(noun)|master of ceremonies|emcee|host +toastrack|1 +(noun)|rack +tobacco|2 +(noun)|baccy|plant product|drug of abuse|street drug +(noun)|herb|herbaceous plant +tobacco budworm|1 +(noun)|corn earworm|cotton bollworm|tomato fruitworm|vetchworm|Heliothis zia|bollworm +tobacco hornworm|1 +(noun)|tomato worm|Manduca sexta|caterpillar +tobacco industry|1 +(noun)|industry +tobacco juice|1 +(noun)|saliva|spit|spittle +tobacco mildew|1 +(noun)|Peronospora hyoscyami|downy mildew|false mildew +tobacco mosaic|1 +(noun)|mosaic +tobacco mosaic virus|1 +(noun)|TMV|plant virus +tobacco moth|1 +(noun)|cacao moth|Ephestia elutella|pyralid|pyralid moth +tobacco pipe|1 +(noun)|pipe|tube|tubing +tobacco pouch|1 +(noun)|pouch +tobacco shop|1 +(noun)|tobacconist shop|tobacconist|shop|store +tobacco thrips|1 +(noun)|Frankliniella fusca|thrips|thrip|thripid +tobacco user|1 +(noun)|smoker|consumer +tobacco wilt|1 +(noun)|ring rot|ring disease|brown rot +tobacconist|2 +(noun)|shopkeeper|tradesman|storekeeper|market keeper +(noun)|tobacco shop|tobacconist shop|shop|store +tobacconist shop|1 +(noun)|tobacco shop|tobacconist|shop|store +tobago|1 +(noun)|Tobago|island +tobagonian|2 +(adj)|Tobagonian|island +(noun)|Tobagonian|West Indian +tobey|1 +(noun)|Tobey|Mark Tobey|painter +tobias george smollett|1 +(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer|author +tobias smollett|1 +(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer|author +tobin|1 +(noun)|Tobin|James Tobin|economist|economic expert +tobin bronze|1 +(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass|Muntz metal|yellow metal +tobit|1 +(noun)|Tobit|Book of Tobit|book +toboggan|2 +(noun)|sled|sledge|sleigh +(verb)|luge|sled|sleigh +toboggan cap|1 +(noun)|ski cap|stocking cap|cap +tobogganing|1 +(noun)|sledding +tobogganist|1 +(noun)|sledder +tobramycin|1 +(noun)|Nebcin|antibiotic|antibiotic drug +toby|1 +(noun)|toby jug|toby fillpot jug|mug +toby fillpot jug|1 +(noun)|toby|toby jug|mug +toby jug|1 +(noun)|toby|toby fillpot jug|mug +tocainide|1 +(noun)|Tonocard|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +tocantins|1 +(noun)|Tocantins|Tocantins River|river +tocantins river|1 +(noun)|Tocantins|Tocantins River|river +toccata|1 +(noun)|musical composition|opus|composition|piece|piece of music +tocharian|1 +(noun)|Tocharian|Indo-European|Indo-European language|Indo-Hittite +tocktact|1 +(noun)|ticktock|tictac|tick|ticking +tocology|1 +(noun)|obstetrics|OB|midwifery|medicine|medical specialty +tocopherol|1 +(noun)|vitamin E|E|fat-soluble vitamin|antioxidant +tocqueville|1 +(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer|author +tocsin|2 +(noun)|alarm bell|alarm|alert|warning signal|alarum +(noun)|warning bell|bell +tod|2 +(adj)|unaccompanied +(noun)|weight unit|weight +toda|2 +(noun)|Toda|Dravidian +(noun)|Toda|South Dravidian +today|3 +(noun)|present|nowadays +(noun)|day|twenty-four hours|solar day|mean solar day +(adv)|nowadays|now +todd|2 +(noun)|Todd|Sir Alexander Robertus Todd|chemist +(noun)|Todd|Sweeney Todd|fictional character|fictitious character|character +toddle|1 +(verb)|coggle|totter|dodder|paddle|waddle|walk +toddler|1 +(noun)|yearling|tot|bambino|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +toddy|1 +(noun)|hot toddy|mixed drink +toddy alm|1 +(noun)|wine palm|jaggery palm|kitul|kittul|kitul tree|Caryota urens|sago palm +toddy palm|1 +(noun)|palmyra|palmyra palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm +todea|1 +(noun)|Todea|genus Todea|fern genus +todea barbara|1 +(noun)|crepe fern|king fern|Todea barbara|fern +todea superba|1 +(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern +todidae|1 +(noun)|Todidae|family Todidae|bird family +todus|1 +(noun)|Todus|genus Todus|bird genus +tody|1 +(noun)|coraciiform bird +toe|10 +(adj)|toed |pointy-toed|pointed-toe|square-toed|squared-toe +(noun)|digit|dactyl|extremity +(noun)|covering +(noun)|body part +(noun)|part|portion +(verb)|walk +(verb)|toenail|force|drive|ram +(verb)|hit +(verb)|hit +(verb)|touch +toe-in|1 +(noun)|alignment +toe crack|1 +(noun)|sand crack +toe dance|1 +(noun)|toe dancing|dancing|dance|terpsichore|saltation +toe dancing|1 +(noun)|toe dance|dancing|dance|terpsichore|saltation +toe the line|1 +(verb)|comply|follow|abide by +toe toe|2 +(noun)|plumed tussock|toetoe|Cortaderia richardii|Arundo richardii|grass +(noun)|toetoe|toitoi|Arundo conspicua|Chionochloa conspicua|reed +toea|1 +(noun)|Papuan monetary unit +toecap|1 +(noun)|protective covering|protective cover|protection +toed|1 +(adj)|toed |toe|pointy-toed|pointed-toe|square-toed|squared-toe +toehold|3 +(noun)|status|position +(noun)|foothold|footing +(noun)|wrestling hold +toeless|1 +(adj)|toeless +toenail|2 +(noun)|nail +(verb)|toe|force|drive|ram +toetoe|2 +(noun)|plumed tussock|toe toe|Cortaderia richardii|Arundo richardii|grass +(noun)|toitoi|Arundo conspicua|Chionochloa conspicua|reed +toff|1 +(noun)|nob|man of means|rich man|wealthy man +toffee|1 +(noun)|brittle|toffy|candy +toffee-nosed|1 +(adj)|private +toffee apple|1 +(noun)|candied apple|candy apple|taffy apple|caramel apple|sweet|confection|confectionery +toffy|1 +(noun)|brittle|toffee|candy +tofieldia|1 +(noun)|Tofieldia|genus Tofieldia|liliid monocot genus +tofieldia pusilla|1 +(noun)|Scotch asphodel|Tofieldia pusilla|false asphodel +tofranil|1 +(noun)|imipramine|impramine hydrochloride|Imavate|Tofranil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +tofu|1 +(noun)|bean curd|curd +tog|1 +(verb)|dress|clothe|enclothe|garb|raiment|garment|habilitate|fit out|apparel|change state|turn +tog out|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog up|overdress|dress|get dressed +tog up|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|trick out|prink|attire|get up|rig out|tog out|overdress|dress|get dressed +toga|1 +(noun)|cloak +toga virilis|1 +(noun)|toga +togaviridae|1 +(noun)|Togaviridae|arbovirus|arborvirus +togavirus|1 +(noun)|animal virus +together|4 +(adj)|unneurotic +(adv)|jointly|collectively|conjointly|put together +(adv)|in collaboration|unitedly +(adv)|in concert|in agreement +togetherness|1 +(noun)|closeness|intimacy +togged|1 +(adj)|clothed |clad +togged up|1 +(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|clothed |clad +toggle|6 +(noun)|instruction|command|statement|program line +(noun)|toggle switch|on-off switch|on/off switch|switch|electric switch|electrical switch +(noun)|fastener|fastening|holdfast|fixing +(verb)|supply|provide|render|furnish +(verb)|fasten|fix|secure +(verb)|let go of|let go|release|relinquish +toggle bolt|1 +(noun)|fastener|fastening|holdfast|fixing +toggle joint|1 +(noun)|joint +toggle switch|1 +(noun)|toggle|on-off switch|on/off switch|switch|electric switch|electrical switch +togo|1 +(noun)|Togo|Togolese Republic|African country|African nation +togo franc|1 +(noun)|Togo franc|franc +togolese|2 +(adj)|Togolese|African country|African nation +(noun)|Togolese|African +togolese republic|1 +(noun)|Togo|Togolese Republic|African country|African nation +togs|1 +(noun)|threads|duds|clothing|article of clothing|vesture|wear +toil|2 +(noun)|labor|labour|work +(verb)|labor|labour|fag|travail|grind|drudge|dig|moil|work|do work +toiler|1 +(noun)|worker +toilet|4 +(noun)|lavatory|lav|can|john|privy|bathroom|room +(noun)|can|commode|crapper|pot|potty|stool|throne|plumbing fixture +(noun)|gutter|sewer|misfortune|bad luck|tough luck|ill luck +(noun)|toilette|dressing|grooming +toilet-train|1 +(verb)|train|develop|prepare|educate +toilet-trained|1 +(adj)|potty-trained|pot-trained|trained +toilet article|1 +(noun)|toiletry|toiletries|instrumentality|instrumentation +toilet bag|1 +(noun)|sponge bag|bag +toilet bowl|1 +(noun)|bowl +toilet facility|1 +(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|wash room|toilet|lavatory|lav|can|john|privy|bathroom|facility +toilet kit|1 +(noun)|travel kit|kit +toilet paper|1 +(noun)|toilet tissue|bathroom tissue|tissue|tissue paper +toilet powder|1 +(noun)|bath powder|dusting powder|powder +toilet roll|1 +(noun)|toilet tissue|toilet paper|bathroom tissue +toilet seat|1 +(noun)|seat +toilet soap|1 +(noun)|face soap|bath soap|soap +toilet table|1 +(noun)|dressing table|dresser|vanity|table +toilet tissue|1 +(noun)|toilet paper|bathroom tissue|tissue|tissue paper +toilet water|1 +(noun)|eau de toilette|perfume|essence +toiletries|2 +(noun)|toiletry|toilet article|instrumentality|instrumentation +(noun)|toiletry|toilet article|instrumentality|instrumentation +toiletry|1 +(noun)|toilet article|toiletries|instrumentality|instrumentation +toilette|1 +(noun)|toilet|dressing|grooming +toiling|1 +(adj)|drudging|laboring|labouring|busy +toilsome|1 +(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|punishing|effortful +toilsomeness|1 +(noun)|laboriousness|operoseness|effortfulness +toitoi|1 +(noun)|toetoe|Arundo conspicua|Chionochloa conspicua|reed +tojo|1 +(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator|potentate +tojo eiki|1 +(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator|potentate +tojo hideki|1 +(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator|potentate +tokamak|1 +(noun)|chamber +tokay|2 +(noun)|Tokay|wine|vino +(noun)|Tokay|vinifera grape +toke|1 +(noun)|puff|drag|pull +token|4 +(adj)|nominal|tokenish|minimal +(noun)|item|symbol +(noun)|disk|disc +(noun)|keepsake|souvenir|relic|object|physical object +token economy|1 +(noun)|behavior therapy|behavior modification +token money|1 +(noun)|money +token payment|1 +(noun)|payment +tokenish|1 +(adj)|nominal|token|minimal +tokio|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +toklas|1 +(noun)|Toklas|Alice B. Toklas|writer|author +tokyo|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +tolazamide|1 +(noun)|Tolinase|sulfonylurea +tolazoline|1 +(noun)|vasodilator|vasodilative +tolbooth|1 +(noun)|tollbooth|tollhouse|booth|cubicle|stall|kiosk +tolbutamide|1 +(noun)|Orinase|sulfonylurea|hypoglycemic agent|hypoglycaemic agent +tole|1 +(noun)|metalware +tolectin|1 +(noun)|tolmetin sodium|Tolectin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +toledo|2 +(noun)|Toledo|city|metropolis|urban center +(noun)|Toledo|city|metropolis|urban center +tolerable|2 +(adj)|tolerable |bearable|endurable|sufferable|supportable|permissible +(adj)|indifferent|passable|so-so|ordinary +tolerably|2 +(adv)|well enough|to a tolerable degree|to an adequate degree +(adv)|acceptably|so-so +tolerance|5 +(noun)|endurance +(noun)|permissiveness|disposition|temperament +(noun)|allowance +(noun)|attitude|mental attitude +(noun)|allowance|leeway|margin|discrepancy|disagreement|divergence|variance +tolerant|4 +(adj)|tolerant |easygoing|unbigoted|charitable|patient +(adj)|kind|forgiving +(adj)|broad|large-minded|liberal|broad-minded +(adj)|patient of|patient +tolerate|4 +(verb)|digest|endure|stick out|stomach|bear|stand|support|brook|abide|suffer|put up|permit|allow|let|countenance +(verb)|respect|honor|honour|abide by|observe +(verb)|suffer|endure +(verb)|allow|permit|permit|allow|let|countenance +toleration|2 +(noun)|acceptance|sufferance|permissiveness|tolerance +(noun)|license|permission|permit +tolinase|1 +(noun)|tolazamide|Tolinase|sulfonylurea +tolkien|1 +(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist|philologue|writer|author +toll|5 +(noun)|fee +(noun)|price|cost|value +(noun)|bell|sound +(verb)|ring|knell +(verb)|levy|impose +toll-free|1 +(adj)|fee +toll agent|1 +(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll taker|toller|employee +toll call|1 +(noun)|long-distance|long-distance call|trunk call +toll collector|1 +(noun)|tollkeeper|tollman|tollgatherer|toll taker|toll agent|toller|employee +toll house cookie|1 +(noun)|chocolate chip cookie|Toll House cookie|cookie|cooky|biscuit +toll line|1 +(noun)|telephone line|phone line|telephone circuit|subscriber line|line +toll plaza|1 +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +toll taker|1 +(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll agent|toller|employee +tollbar|1 +(noun)|tollgate|gate +tollbooth|1 +(noun)|tolbooth|tollhouse|booth|cubicle|stall|kiosk +toller|2 +(noun)|bell ringer|ringer|signaler|signaller +(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll taker|toll agent|employee +tollgate|1 +(noun)|tollbar|gate +tollgatherer|1 +(noun)|tollkeeper|tollman|toll collector|toll taker|toll agent|toller|employee +tollhouse|1 +(noun)|tollbooth|tolbooth|booth|cubicle|stall|kiosk +tollkeeper|1 +(noun)|tollman|tollgatherer|toll collector|toll taker|toll agent|toller|employee +tollman|1 +(noun)|tollkeeper|tollgatherer|toll collector|toll taker|toll agent|toller|employee +tollon|1 +(noun)|toyon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +tolmetin sodium|1 +(noun)|Tolectin|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +tolmiea|1 +(noun)|Tolmiea|genus Tolmiea|rosid dicot genus +tolmiea menziesii|1 +(noun)|pickaback plant|piggyback plant|youth-on-age|Tolmiea menziesii|herb|herbaceous plant +tolstoy|1 +(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer|author +tolu|2 +(noun)|balsam +(noun)|balsam of tolu|tolu balsam|balsam +tolu balsam|1 +(noun)|tolu|balsam of tolu|balsam +tolu balsam tree|1 +(noun)|tolu tree|Myroxylon balsamum|Myroxylon toluiferum|tree +tolu tree|1 +(noun)|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree +toluene|1 +(noun)|methylbenzene|alkylbenzene|solvent|dissolvent|dissolver|dissolving agent|resolvent +toluic acid|1 +(noun)|acid +tolypeutes|1 +(noun)|Tolypeutes|genus Tolypeutes|mammal genus +tolypeutes tricinctus|1 +(noun)|apar|three-banded armadillo|Tolypeutes tricinctus|armadillo +tom|3 +(noun)|Tom|Uncle Tom|Black|Black person|blackamoor|Negro|Negroid +(noun)|tomcat|domestic cat|house cat|Felis domesticus|Felis catus +(noun)|turkey cock|gobbler|tom turkey|turkey|Meleagris gallopavo +tom-tom|1 +(noun)|tenor drum|drum|membranophone|tympan +tom and jerry|1 +(noun)|Tom and Jerry|hot toddy|toddy +tom bradley|1 +(noun)|Bradley|Thomas Bradley|Tom Bradley|politician|politico|pol|political leader +tom collins|1 +(noun)|collins|Tom Collins|highball +tom hanks|1 +(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor|histrion|player|thespian|role player +tom paine|1 +(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader|pamphleteer +tom sawyer|1 +(noun)|Tom Sawyer|fictional character|fictitious character|character +tom stoppard|1 +(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist|playwright +tom thumb|2 +(noun)|Tom Thumb|imaginary being|imaginary creature +(noun)|Tom Thumb|small person +tom turkey|1 +(noun)|turkey cock|gobbler|tom|turkey|Meleagris gallopavo +tom wolfe|1 +(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer|author +tomahawk|3 +(noun)|hatchet|weapon|arm|weapon system +(verb)|cut +(verb)|kill +tomalley|1 +(noun)|liver +tomas de torquemada|1 +(noun)|Torquemada|Tomas de Torquemada|Grand Inquisitor +tomatillo|3 +(noun)|miltomate|purple ground cherry|jamberry|Physalis philadelphica|ground cherry|husk tomato +(noun)|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry|husk tomato +(noun)|husk tomato|Mexican husk tomato|solanaceous vegetable +tomato|2 +(noun)|solanaceous vegetable +(noun)|love apple|tomato plant|Lycopersicon esculentum|herb|herbaceous plant +tomato blight|1 +(noun)|tomato yellows|blight +tomato concentrate|1 +(noun)|concentrate +tomato fruitworm|1 +(noun)|corn earworm|cotton bollworm|tobacco budworm|vetchworm|Heliothis zia|bollworm +tomato hornworm|1 +(noun)|potato worm|Manduca quinquemaculata|caterpillar +tomato juice|1 +(noun)|juice +tomato ketchup|1 +(noun)|catsup|ketchup|cetchup|condiment +tomato paste|1 +(noun)|ingredient|fixings +tomato plant|1 +(noun)|tomato|love apple|Lycopersicon esculentum|herb|herbaceous plant +tomato sauce|1 +(noun)|spaghetti sauce|pasta sauce +tomato streak|1 +(noun)|yellow spot +tomato worm|1 +(noun)|tobacco hornworm|Manduca sexta|caterpillar +tomato yellows|1 +(noun)|tomato blight|blight +tomb|1 +(noun)|grave|topographic point|place|spot +tombac|1 +(noun)|tombak|tambac|alloy|metal +tombak|1 +(noun)|tombac|tambac|alloy|metal +tombaugh|1 +(noun)|Tombaugh|Clyde William Tombaugh|astronomer|uranologist|stargazer +tombigbee|1 +(noun)|Tombigbee|Tombigbee River|river +tombigbee river|1 +(noun)|Tombigbee|Tombigbee River|river +tombola|1 +(noun)|lottery|drawing +tomboy|1 +(noun)|romp|hoyden|girl|miss|missy|young lady|young woman|fille +tomboyish|2 +(adj)|hoyden|hoydenish|spirited +(adj)|hoydenish|unwomanly +tomboyishness|1 +(noun)|hoydenism|masculinity +tombstone|1 +(noun)|gravestone|headstone|stone|memorial|monument +tomcat|1 +(noun)|tom|domestic cat|house cat|Felis domesticus|Felis catus +tome|1 +(noun)|book +tomentose|2 +(adj)|plant process|enation +(adj)|tomentous|hairy |hirsute +tomentous|1 +(adj)|tomentose|hairy |hirsute +tomentum|2 +(noun)|hair|fuzz|plant process|enation +(noun)|tomentum cerebri|capillary|capillary vessel +tomentum cerebri|1 +(noun)|tomentum|capillary|capillary vessel +tomfool|1 +(noun)|fool|sap|saphead|muggins|simpleton|simple +tomfoolery|1 +(noun)|folly|foolery|craziness|lunacy|indulgence|play|frolic|romp|gambol|caper +tomistoma|1 +(noun)|Tomistoma|genus Tomistoma|reptile genus +tomistoma schlegeli|1 +(noun)|false gavial|Tomistoma schlegeli|crocodilian reptile|crocodilian +tommy gun|1 +(noun)|Tommy gun|Thompson submachine gun|submachine gun +tommyrot|1 +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tosh|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +tomograph|1 +(noun)|X-ray machine +tomography|1 +(noun)|imaging|pictorial representation|picturing +tomorrow|2 +(noun)|day|twenty-four hours|solar day|mean solar day +(noun)|future|hereafter|futurity|time to come +tomtate|1 +(noun)|Haemulon aurolineatum|grunt +tomtit|1 +(noun)|blue tit|Parus caeruleus|titmouse|tit +ton|2 +(noun)|short ton|net ton|avoirdupois unit +(noun)|long ton|gross ton|avoirdupois unit +tonal|2 +(adj)|tonic|pitch +(adj)|tonal |keyed|diatonic|polytonal|toned|tonic +tonal language|1 +(noun)|tone language|natural language|tongue +tonal pattern|1 +(noun)|melody|musical perception +tonal system|1 +(noun)|tone system|phonological system|phonologic system +tonality|1 +(noun)|key|musical notation +tone|15 +(noun)|tone of voice|manner of speaking|speech|delivery +(noun)|pitch +(noun)|timbre|timber|quality|sound property +(noun)|spirit|feel|feeling|flavor|flavour|look|smell|atmosphere|ambiance|ambience +(noun)|shade|tint|tincture|color|colour|coloring|colouring +(noun)|note|musical note|musical notation +(noun)|pure tone|sound|auditory sensation +(noun)|tonicity|tonus|tension|tensity|tenseness|tautness +(noun)|whole tone|step|whole step|interval|musical interval +(noun)|quality +(verb)|chant|intone|talk|speak|utter|mouth|verbalize|verbalise +(verb)|inflect|modulate|talk|speak|utter|mouth|verbalize|verbalise +(verb)|discolor|discolour|colour|color +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +(verb)|tone up|strengthen|exercise|work out +tone-beginning|1 +(noun)|attack|beginning|start|commencement +tone-deaf|1 +(adj)|deaf +tone arm|1 +(noun)|pickup|pickup arm|mechanical device +tone deafness|1 +(noun)|tin ear|deafness|hearing loss +tone down|2 +(verb)|muffle|mute|dull|damp|dampen|soften +(verb)|moderate|tame|change|alter|modify +tone ending|1 +(noun)|release|termination|ending|conclusion +tone language|1 +(noun)|tonal language|natural language|tongue +tone of voice|1 +(noun)|tone|manner of speaking|speech|delivery +tone poem|1 +(noun)|symphonic poem|musical composition|opus|composition|piece|piece of music +tone system|1 +(noun)|tonal system|phonological system|phonologic system +tone up|1 +(verb)|tone|strengthen|exercise|work out +toned|2 +(adj)|tonal +(adj)|toned +toned down|1 +(adj)|diluted|tempered +tonegawa susumu|1 +(noun)|Tonegawa Susumu|molecular biologist +toneless|1 +(adj)|toneless +toner|3 +(noun)|solution +(noun)|material|stuff +(noun)|lotion +tong ho|1 +(noun)|chop-suey greens|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum +tonga|2 +(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country|state|land +(noun)|Tonga|Bantu|Bantoid language +tongan|2 +(adj)|Tongan|country|state|land +(noun)|Tongan|Polynesian +tongan monetary unit|1 +(noun)|Tongan monetary unit|monetary unit +tongs|1 +(noun)|pair of tongs|device +tongue|10 +(noun)|lingua|glossa|clapper|organ|articulator +(noun)|natural language|language|linguistic communication +(noun)|knife|projection +(noun)|manner of speaking|speech|delivery +(noun)|spit|cape|ness +(noun)|variety meat|organs +(noun)|flap +(noun)|clapper|striker +(verb)|play|spiel +(verb)|lick|lap +tongue-fish|2 +(noun)|tonguefish|flatfish +(noun)| +tongue-flower|2 +(noun)|tongueflower|orchid|orchidaceous plant +(noun)| +tongue-in-cheek|3 +(adj)|bantering|facetious|humorous |humourous +(adv)|banteringly +(adv)|facetiously|jokingly +tongue-lashing|1 +(noun)|chiding|scolding|objurgation|rebuke|reproof|reproval|reprehension|reprimand +tongue-shaped|1 +(adj)|lingulate|rounded +tongue-tie|1 +(verb)|deprive +tongue-tied|1 +(adj)|incoherent|inarticulate |unarticulate +tongue and groove joint|1 +(noun)|mortise joint|mortise-and-tenon joint +tongue depressor|1 +(noun)|depressor +tongue fern|1 +(noun)|felt fern|Pyrrosia lingua|Cyclophorus lingua|fern +tongue tie|1 +(noun)|ankyloglossia|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality +tongue twister|1 +(noun)|saying|expression|locution +tongue worm|1 +(noun)|pentastomid|arthropod +tongued|2 +(adj)|tongued |tonguelike +(adj)|speaking +tonguefish|1 +(noun)|tongue-fish|flatfish +tongueflower|1 +(noun)|tongue-flower|orchid|orchidaceous plant +tongueless|3 +(adj)|tongueless +(adj)|mute|nonspeaking |walk-on +(adj)|mute|unspoken|wordless|inarticulate |unarticulate +tongueless frog|1 +(noun)|frog|toad|toad frog|anuran|batrachian|salientian +tonguelike|1 +(adj)|tongued +tonguing and grooving plane|1 +(noun)|match plane|plane|carpenter's plane|woodworking plane +toni morrison|1 +(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer|author +tonic|9 +(adj)|tension|tensity|tenseness|tautness +(adj)|tonal|pitch +(adj)|tonic |accented +(adj)|tonal +(adj)|bracing|brisk|energizing|energising|fresh|refreshing|refreshful|invigorating +(noun)|tonic water|quinine water|soft drink +(noun)|pop|soda|soda pop|soda water|soft drink +(noun)|keynote|note|musical note|tone +(noun)|restorative|medicine|medication|medicament|medicinal drug +tonic accent|1 +(noun)|pitch accent|stress|emphasis|accent +tonic epilepsy|1 +(noun)|epilepsy +tonic key|1 +(noun)|home key|key|tonality +tonic solfa|1 +(noun)|solfa|solmization|solmisation +tonic water|1 +(noun)|tonic|quinine water|soft drink +tonicity|1 +(noun)|tonus|tone|tension|tensity|tenseness|tautness +tonight|2 +(noun)|present|nowadays +(adv)|this evening|this night +tonka bean|2 +(noun)|coumara nut|bean +(noun)|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree +tonka bean tree|1 +(noun)|tonka bean|Coumarouna odorata|Dipteryx odorata|bean tree +tonnage|1 +(noun)|tunnage|tonnage duty|duty|tariff +tonnage duty|1 +(noun)|tonnage|tunnage|duty|tariff +tonne|1 +(noun)|metric ton|MT|t|metric weight unit|weight unit +tonocard|1 +(noun)|tocainide|Tonocard|antiarrhythmic|antiarrhythmic drug|antiarrhythmic medication +tonometer|1 +(noun)|measuring instrument|measuring system|measuring device +tons|3 +(noun)|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|short ton|ton|net ton|avoirdupois unit +(noun)|long ton|ton|gross ton|avoirdupois unit +tonsil|1 +(noun)|palatine tonsil|faucial tonsil|tonsilla|lymphatic tissue|lymphoid tissue +tonsilla|1 +(noun)|tonsil|palatine tonsil|faucial tonsil|lymphatic tissue|lymphoid tissue +tonsilla adenoidea|1 +(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|lymphatic tissue|lymphoid tissue +tonsilla pharyngealis|1 +(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla adenoidea|lymphatic tissue|lymphoid tissue +tonsillectomy|1 +(noun)|ablation|extirpation|cutting out|excision +tonsillitis|1 +(noun)|inflammation|redness|rubor +tonsorial|1 +(adj)|hairdresser|hairstylist|stylist|styler +tonsure|3 +(noun)|pate|poll|crown +(noun)|shave|shaving +(verb)|shave +tonsured|1 +(adj)|hairless +tontine|2 +(noun)|tontine insurance|life insurance|life assurance +(noun)|annuity|rente +tontine insurance|1 +(noun)|tontine|life insurance|life assurance +tonus|1 +(noun)|tonicity|tone|tension|tensity|tenseness|tautness +tony blair|1 +(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman|solon|national leader +too|2 +(adv)|excessively|overly|to a fault +(adv)|besides|also|likewise|as well +too-careful|1 +(adj)|overcareful|careful +too-generous|1 +(adj)|lavish|munificent|overgenerous|prodigal|unsparing|unstinted|unstinting|generous +too-greedy|1 +(adj)|overgreedy|gluttonous +too bad|1 +(adj)|regrettable|unfortunate +too big for one's breeches|1 +(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|stuck-up|uppish|proud +too large|1 +(adj)|overlarge|large +too little|1 +(adj)|insufficient |deficient +too much|2 +(adj)|a bit much|de trop|immoderate +(adv)|overmuch +too soon|1 +(adv)|early|ahead of time +tool|8 +(noun)|implement +(noun)|instrument|means|agency|way +(noun)|creature|puppet|slave +(noun)|cock|prick|dick|shaft|pecker|peter|putz|penis|phallus|member +(verb)|drive +(verb)|joyride|tool around|ride +(verb)|supply|provide|render|furnish +(verb)|work|work on|process +tool-and-die work|1 +(noun)|trade|craft +tool around|1 +(verb)|joyride|tool|ride +tool bag|1 +(noun)|bag +tool cabinet|1 +(noun)|toolbox|tool chest|tool case|chest +tool case|1 +(noun)|toolbox|tool chest|tool cabinet|chest +tool chest|1 +(noun)|toolbox|tool cabinet|tool case|chest +tool kit|1 +(noun)|carpenter's kit|kit|outfit +tool steel|1 +(noun)|alloy steel +toolbox|1 +(noun)|tool chest|tool cabinet|tool case|chest +toolmaker|1 +(noun)|maker|shaper +toona|1 +(noun)|Toona|genus Toona|rosid dicot genus +toona calantas|1 +(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany|mahogany tree +tooshie|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tush|bottom|behind|derriere|fanny|ass|body part +toot|3 +(noun)|sound +(noun)|carouse|carousal|bender|booze-up|revel|revelry +(verb)|honk|blare|beep|claxon|sound|go +tooth|5 +(noun)|bone|os +(noun)|projection +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|means|agency|way +(noun)|projection +tooth decay|1 +(noun)|cavity|caries|dental caries|decay +tooth doctor|1 +(noun)|dentist|dental practitioner|medical practitioner|medical man +tooth enamel|1 +(noun)|enamel|solid body substance +tooth fairy|1 +(noun)|fairy|faery|faerie|sprite +tooth fungus|1 +(noun)|fungus +tooth powder|2 +(noun)|toothpowder|dentifrice +(noun)| +tooth root|1 +(noun)|root|structure|anatomical structure|complex body part|bodily structure|body structure +tooth shell|1 +(noun)|tusk shell|scaphopod +tooth socket|1 +(noun)|alveolus|socket +toothache|1 +(noun)|odontalgia|ache|aching +toothache tree|1 +(noun)|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash +toothbrush|2 +(noun)|brush|toiletry|toilet article|toiletries +(noun)|soup-strainer|mustache|moustache +toothbrush tree|1 +(noun)|mustard tree|Salvadora persica|fruit tree +toothed|3 +(adj)|toothed |buck-toothed|cogged|fine-toothed|fine-tooth|gap-toothed|toothy|saber-toothed|sabertoothed|sabre-toothed|toothlike +(adj)|serrate|serrated|saw-toothed|notched|rough +(adj)|erose|jagged|jaggy|notched|rough +toothed spurge|1 +(noun)|Euphorbia dentata|spurge +toothed sword fern|1 +(noun)|basket fern|Nephrolepis pectinata|sword fern +toothed whale|1 +(noun)|whale +toothed wheel|1 +(noun)|roulette|wheel +toothless|2 +(adj)|toothless |edental|edentate|edentulate|edentulous +(adj)|ineffective |uneffective|ineffectual +toothlike|1 +(adj)|toothed +toothpaste|1 +(noun)|dentifrice +toothpick|1 +(noun)|pick|strip +toothpowder|1 +(noun)|tooth powder|dentifrice +toothsome|1 +(adj)|delectable|delicious|luscious|pleasant-tasting|scrumptious|yummy|tasteful +toothsomeness|1 +(noun)|delectability|deliciousness|lusciousness|appetizingness|appetisingness +toothwort|1 +(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|Cardamine diphylla|Dentaria diphylla|bittercress|bitter cress +toothy|1 +(adj)|toothed +tootle|2 +(noun)|sound +(verb)|honk|blare|beep|claxon|toot +toowomba canary grass|1 +(noun)|hardinggrass|Harding grass|Phalaris aquatica|Phalaris tuberosa|grass +top|23 +(adj)|top |apical|crowning|topmost|uppermost|upmost|upper|best|high +(adj)|greatest|maximal +(noun)|region|part +(noun)|top side|upper side|upside|side|face +(noun)|peak|crown|crest|tip|summit|topographic point|place|spot +(noun)|top of the inning|turn|bout|round +(noun)|acme|height|elevation|peak|pinnacle|summit|superlative|degree|level|stage|point +(noun)|intensity|intensiveness +(noun)|platform +(noun)|whirligig|teetotum|spinning top|plaything|toy +(noun)|cover|covering +(noun)|garment +(noun)|circus tent|big top|round top|canvas tent|canvas|canvass +(verb)|exceed|transcend|overstep|pass|go past|excel|stand out|surpass +(verb)|clear|pass|overtake|overhaul +(verb)|lie +(verb)|lead +(verb)|supply|provide|render|furnish +(verb)|reach|make|attain|hit|arrive at|gain +(verb)|hit +(verb)|pinch|snip|clip|crop|trim|lop|dress|prune|cut back +(verb)|crown|culminate|climax +(verb)|top off|complete|finish +top-down|1 +(adj)|top-down +top-flight|1 +(adj)|top-hole|topping|superior +top-grade|1 +(adj)|finest|high-grade|top-quality|best +top-heavy|1 +(adj)|unstable +top-hole|1 +(adj)|top-flight|topping|superior +top-level|1 +(adj)|commanding|ranking|top-ranking|superior +top-quality|1 +(adj)|finest|high-grade|top-grade|best +top-ranking|1 +(adj)|commanding|ranking|top-level|superior +top-secret|1 +(adj)|classified +top-up|1 +(noun)|indefinite quantity +top banana|2 +(noun)|comedian|comic +(noun)|kingpin|bigwig|important person|influential person|personage +top billing|1 +(noun)|ad|advertisement|advertizement|advertising|advertizing|advert +top boot|1 +(noun)|buskin|chukka boot|combat boot|desert boot|half boot|boot +top brass|1 +(noun)|administration|governance|governing body|establishment|brass|organization|organisation +top dog|1 +(noun)|head|chief|leader +top dressing|1 +(noun)|fertilization|fertilisation|fecundation|dressing +top executive|1 +(noun)|baron|big businessman|business leader|king|magnate|mogul|power|tycoon|businessman|man of affairs +top fermentation|1 +(noun)|zymosis|zymolysis|fermentation|fermenting|ferment +top fermenting yeast|1 +(noun)|brewer's yeast +top hat|1 +(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|topper|beaver|hat|chapeau|lid +top lift|1 +(noun)|lift +top of the inning|1 +(noun)|top|turn|bout|round +top of the line|1 +(noun)|merchandise|wares|product +top off|2 +(verb)|top|complete|finish +(verb)|fill|fill up|make full +top onion|1 +(noun)|tree onion|Egyptian onion|Allium cepa viviparum|onion|onion plant|Allium cepa +top out|2 +(verb)|leave office|quit|step down|resign +(verb)|reach|make|attain|hit|arrive at|gain +top quark|1 +(noun)|truth quark|quark +top round|1 +(noun)|roast|joint +top side|2 +(noun)|top|upper side|upside|side|face +(noun)|topside|weather deck|shelter deck +topaz|3 +(noun)|false topaz|common topaz|quartz +(noun)|transparent gem|mineral +(noun)|tan|light brown +topcoat|1 +(noun)|greatcoat|overcoat|coat +topdress|1 +(verb)|fertilize|fertilise|feed +tope|1 +(verb)|drink|use|habituate +topee|1 +(noun)|pith hat|pith helmet|sun helmet|topi|hat|chapeau|lid|shade +topeka|1 +(noun)|Topeka|capital of Kansas|state capital +toper|1 +(noun)|drinker|imbiber|juicer|consumer +toper's nose|1 +(noun)|rhinophyma|hypertrophic rosacea|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy +topgallant|2 +(noun)|topgallant sail|sail|canvas|canvass|sheet +(noun)|topgallant mast|topmast +topgallant mast|1 +(noun)|topgallant|topmast +topgallant sail|1 +(noun)|topgallant|sail|canvas|canvass|sheet +tophus|2 +(noun)|chalkstone|urate +(noun)|tartar|calculus|crust|incrustation|encrustation +topi|2 +(noun)|pith hat|pith helmet|sun helmet|topee|hat|chapeau|lid|shade +(noun)|sassaby|Damaliscus lunatus|antelope +topiary|2 +(noun)|garden +(noun)|art|artistic creation|artistic production +topic|2 +(noun)|subject|theme|message|content|subject matter|substance +(noun)|subject|issue|matter|content|cognitive content|mental object +topic sentence|1 +(noun)|sentence +topical|3 +(adj)|local +(adj)|content|cognitive content|mental object +(adj)|current +topical anaesthesia|1 +(noun)|topical anesthesia|anesthesia|anaesthesia +topical anaesthetic|1 +(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +topical anesthesia|1 +(noun)|topical anaesthesia|anesthesia|anaesthesia +topical anesthetic|1 +(noun)|local anesthetic|local anaesthetic|local|topical anaesthetic|anesthetic|anaesthetic|anesthetic agent|anaesthetic agent +topicality|1 +(noun)|interest|interestingness +topicalization|1 +(noun)|emphasis +topicalize|1 +(verb)|stress|emphasize|emphasise|punctuate|accent|accentuate +topically|1 +(adv)|locally +topknot|2 +(noun)|headdress|headgear +(noun)|crest +topknotted|1 +(adj)|crested|tufted|adorned |decorated +topless|2 +(adj)|topless |lidless +(adj)|bare-breasted|braless|unclothed +topmast|1 +(noun)|mast +topminnow|2 +(noun)|poeciliid fish|poeciliid|live-bearer|cypriniform fish +(noun)|swordtail|helleri|Xyphophorus helleri|cyprinodont +topmost|1 +(adj)|uppermost|upmost|top +topnotch|1 +(adj)|ace|A-one|crack|first-rate|super|tiptop|tops|superior +topognosia|1 +(noun)|topognosis|cutaneous sensation|haptic sensation|skin sensation +topognosis|1 +(noun)|topognosia|cutaneous sensation|haptic sensation|skin sensation +topographic|1 +(adj)|topographical|geography|geographics +topographic anatomy|1 +(noun)|regional anatomy|topology|anatomy|general anatomy +topographic point|1 +(noun)|place|spot|point +topographical|1 +(adj)|topographic|geography|geographics +topography|2 +(noun)|shape|form|configuration|contour|conformation +(noun)|geography|geographics +topolatry|1 +(noun)|place-worship|idolatry|devotion|veneration|cultism +topological space|1 +(noun)|mathematical space|space|set +topology|4 +(noun)|topography +(noun)|regional anatomy|topographic anatomy|anatomy|general anatomy +(noun)|analysis situs|pure mathematics +(noun)|network topology|configuration|constellation +toponomy|2 +(noun)|toponymy|terminology|nomenclature|language +(noun)|toponymy|lexicology +toponym|1 +(noun)|place name|name +toponymy|2 +(noun)|toponomy|terminology|nomenclature|language +(noun)|toponomy|lexicology +topos|1 +(noun)|theme|motif +topped|1 +(adj)|topped |flat-topped|flat-top|lidded|screw-topped +topper|6 +(noun)|worker +(noun)|worker +(noun)|best|person|individual|someone|somebody|mortal|human|soul +(noun)|wit|humor|humour|witticism|wittiness +(noun)|coat +(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|top hat|beaver|hat|chapeau|lid +topping|2 +(adj)|top-flight|top-hole|superior +(noun)|garnish +toppingly|1 +(adv)|wonderfully|wondrous|wondrously|superbly|marvellously|terrifically|marvelously +topple|2 +(verb)|tumble|descend|fall|go down|come down +(verb)|tumble|tip|push|force +toppling|1 +(adj)|falling +tops|1 +(adj)|ace|A-one|crack|first-rate|super|tiptop|topnotch|superior +topsail|1 +(noun)|sail|canvas|canvass|sheet +topside|1 +(noun)|weather deck|shelter deck +topsoil|1 +(noun)|surface soil|soil|dirt +topspin|1 +(noun)|spin +topsy-turvily|1 +(adv)|head over heels|heels over head|topsy-turvy|in great confusion +topsy-turvy|3 +(adj)|disorderly|higgledy-piggledy|hugger-mugger|jumbled|untidy +(adv)|higgledy-piggledy +(adv)|head over heels|heels over head|topsy-turvily|in great confusion +topsy-turvydom|1 +(noun)|chaos|pandemonium|bedlam|topsy-turvyness|confusion +topsy-turvyness|1 +(noun)|chaos|pandemonium|bedlam|topsy-turvydom|confusion +topv|1 +(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine +toque|2 +(noun)|hat|chapeau|lid +(noun)|pillbox|turban|millinery|woman's hat +tor|2 +(noun)|rock|stone +(noun)|hill +toradol|1 +(noun)|ketorolac tromethamine|Acular|Toradol|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +torah|3 +(noun)|Torah|sacred text|sacred writing|religious writing|religious text +(noun)|Torah|Pentateuch|Laws|sacred text|sacred writing|religious writing|religious text +(noun)|Torah|scroll|roll +torch|5 +(noun)|light|light source +(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|Verbascum thapsus|mullein|flannel leaf|velvet plant +(noun)|flashlight|electric lamp +(noun)|blowtorch|blowlamp|burner +(verb)|burn|fire|burn down +torch race|1 +(noun)|relays|relay race +torch singer|1 +(noun)|singer|vocalist|vocalizer|vocaliser +torch song|1 +(noun)|song +torchbearer|1 +(noun)|leader +torchlight|1 +(noun)|light|visible light|visible radiation +torchwood family|1 +(noun)|Burseraceae|family Burseraceae|rosid dicot family +tore|1 +(noun)|torus|molding|moulding +toreador|1 +(noun)|bullfighter|person|individual|someone|somebody|mortal|human|soul +toreador pant|1 +(noun)|pedal pusher|trousers|pants +torero|1 +(noun)|bullfighter|toreador +torino|1 +(noun)|Turin|Torino|city|metropolis|urban center +torment|9 +(noun)|torture|pain|hurting +(noun)|anguish|torture|distress|hurt|suffering +(noun)|agony|torture|suffering|hurt +(noun)|harassment|annoyance|chafe|vexation +(noun)|curse|affliction +(noun)|badgering|worrying|bedevilment|harassment|molestation +(verb)|torture|excruciate|rack|pain|anguish|hurt +(verb)|rag|bedevil|crucify|dun|frustrate|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke +(verb)|torture|excruciate|injure|wound +tormented|2 +(adj)|anguished|tortured|sorrowful +(adj)|hag-ridden|hagridden|troubled +tormenter|2 +(noun)|tormentor|persecutor|oppressor +(noun)|tormentor|teaser|flat +tormentor|2 +(noun)|tormenter|persecutor|oppressor +(noun)|tormenter|teaser|flat +torn|2 +(adj)|lacerate|lacerated|mangled|injured +(adj)|divided +tornado|2 +(noun)|twister|cyclone +(noun)|crack|cocaine|cocain +tornado cellar|1 +(noun)|storm cellar|cyclone cellar|shelter +tornado lantern|1 +(noun)|hurricane lamp|hurricane lantern|storm lantern|storm lamp|lamp +tornillo|1 +(noun)|screw bean|screwbean|screwbean mesquite|Prosopis pubescens|mesquite|mesquit +torodal|1 +(noun)|ketorolac|Torodal|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +toroid|2 +(noun)|solid +(noun)|torus|round shape +toroidal|1 +(adj)|solid +toronto|1 +(noun)|Toronto|provincial capital +torpedinidae|1 +(noun)|Torpedinidae|family Torpedinidae|fish family +torpediniformes|1 +(noun)|Torpediniformes|order Torpediniformes|animal order +torpedo|8 +(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|shooter|murderer|liquidator|manslayer +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|wedge|zep|sandwich +(noun)|explosive device +(noun)|firework|pyrotechnic +(noun)|explosive device|alarm|alert|warning signal|alarum +(noun)|armament +(noun)|electric ray|crampfish|numbfish|ray +(verb)|attack|assail +torpedo-boat destroyer|1 +(noun)|destroyer|guided missile destroyer +torpedo boat|1 +(noun)|warship|war vessel|combat ship +torpedo tube|1 +(noun)|tube|tubing +torpid|2 +(adj)|inert|sluggish|inactive +(adj)|dormant|hibernating|asleep +torpidity|2 +(noun)|torpor|physiological state|physiological condition +(noun)|listlessness|torpidness|torpor|passivity|passiveness +torpidly|1 +(adv)|dazedly +torpidness|1 +(noun)|listlessness|torpidity|torpor|passivity|passiveness +torpor|2 +(noun)|torpidity|physiological state|physiological condition +(noun)|listlessness|torpidity|torpidness|passivity|passiveness +torquato tasso|1 +(noun)|Tasso|Torquato Tasso|poet +torque|1 +(noun)|torsion|force +torque converter|1 +(noun)|converter|convertor +torque wrench|1 +(noun)|wrench|spanner +torquemada|1 +(noun)|Torquemada|Tomas de Torquemada|Grand Inquisitor +torr|1 +(noun)|millimeter of mercury|mm Hg|pressure unit +torrent|3 +(noun)|downpour|cloudburst|deluge|waterspout|pelter|soaker|rain|rainfall +(noun)|violent stream|current|stream +(noun)|flood|inundation|deluge|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew +torrential|3 +(adj)|current|stream +(adj)|uncontrolled +(adj)|abundant +torreon|1 +(noun)|Torreon|city|metropolis|urban center +torres strait|1 +(noun)|Torres Strait|strait|sound +torrey's pine|1 +(noun)|Torrey pine|Torrey's pine|soledad pine|gray-leaf pine|sabine pine|Pinus torreyana|pine|pine tree|true pine +torrey pine|1 +(noun)|Torrey pine|Torrey's pine|soledad pine|gray-leaf pine|sabine pine|Pinus torreyana|pine|pine tree|true pine +torrey tree|1 +(noun)|stinking cedar|stinking yew|Torrey tree|Torreya taxifolia|yew +torreya|1 +(noun)|Torreya|genus Torreya|gymnosperm genus +torreya californica|1 +(noun)|California nutmeg|nutmeg-yew|Torreya californica|yew +torreya taxifolia|1 +(noun)|stinking cedar|stinking yew|Torrey tree|Torreya taxifolia|yew +torricelli|1 +(noun)|Torricelli|Evangelista Torricelli|physicist +torrid|3 +(adj)|ardent|burning|fervent|fervid|fiery|impassioned|perfervid|passionate +(adj)|hot +(adj)|sultry|hot +torrid zone|1 +(noun)|Torrid Zone|tropical zone|tropics|climatic zone +torridity|1 +(noun)|hotness|heat|high temperature +torsion|2 +(noun)|tortuosity|tortuousness|contortion|crookedness|distorted shape|distortion +(noun)|torque|force +torsion balance|1 +(noun)|measuring instrument|measuring system|measuring device +torsk|1 +(noun)|cusk|Brosme brosme|gadoid|gadoid fish +torso|1 +(noun)|trunk|body|body part +tort|1 +(noun)|civil wrong|wrongdoing|wrongful conduct|misconduct|actus reus +tort-feasor|2 +(noun)|tortfeasor|party +(noun)| +torte|1 +(noun)|cake +tortellini|1 +(noun)|pasta|alimentary paste +tortfeasor|1 +(noun)|tort-feasor|party +torticollis|1 +(noun)|wryneck|abnormality|abnormalcy|abnormal condition +tortilla|1 +(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake +tortilla chip|1 +(noun)|corn chip +tortious|1 +(adj)|wrongdoing|wrongful conduct|misconduct|actus reus +tortoise|1 +(noun)|turtle +tortoise plant|1 +(noun)|elephant's-foot|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine +tortoiseshell|3 +(noun)|horn +(noun)|tortoiseshell butterfly|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +(noun)|tortoiseshell-cat|calico cat|domestic cat|house cat|Felis domesticus|Felis catus +tortoiseshell-cat|1 +(noun)|tortoiseshell|calico cat|domestic cat|house cat|Felis domesticus|Felis catus +tortoiseshell butterfly|1 +(noun)|tortoiseshell|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +tortoiseshell turtle|1 +(noun)|hawksbill turtle|hawksbill|hawkbill|Eretmochelys imbricata|sea turtle|marine turtle +tortricid|1 +(noun)|tortricid moth|moth +tortricid moth|1 +(noun)|tortricid|moth +tortricidae|1 +(noun)|Tortricidae|family Tortricidae|arthropod family +tortrix|2 +(noun)|orange tortrix|Argyrotaenia citrana|tortricid|tortricid moth +(noun)|tea tortrix|Homona coffearia|tortricid|tortricid moth +tortuosity|1 +(noun)|tortuousness|torsion|contortion|crookedness|distorted shape|distortion +tortuous|3 +(adj)|Byzantine|convoluted|intricate|involved|knotty|labyrinthine|tangled|complex +(adj)|twisting|twisty|winding|crooked +(adj)|indirect +tortuousness|1 +(noun)|tortuosity|torsion|contortion|crookedness|distorted shape|distortion +torture|7 +(noun)|anguish|torment|distress|hurt|suffering +(noun)|torment|pain|hurting +(noun)|agony|torment|suffering|hurt +(noun)|distortion|overrefinement|straining|twisting|falsification|misrepresentaation +(noun)|torturing|persecution +(verb)|torment|excruciate|rack|pain|anguish|hurt +(verb)|excruciate|torment|injure|wound +torture chamber|1 +(noun)|room +tortured|2 +(adj)|punished +(adj)|anguished|tormented|sorrowful +torturer|1 +(noun)|oppressor +torturesome|1 +(adj)|agonizing|agonising|excruciating|harrowing|torturing|torturous|painful +torturing|2 +(adj)|agonizing|agonising|excruciating|harrowing|torturous|torturesome|painful +(noun)|torture|persecution +torturous|1 +(adj)|agonizing|agonising|excruciating|harrowing|torturing|torturesome|painful +torturously|1 +(adv)|agonizingly|excruciatingly +torulose|1 +(adj)|unshapely +torus|2 +(noun)|toroid|round shape +(noun)|tore|molding|moulding +tory|2 +(noun)|Tory|American +(noun)|Tory|rightist|right-winger +toscana|1 +(noun)|Tuscany|Toscana|Italian region +toscanini|1 +(noun)|Toscanini|Arturo Toscanini|conductor|music director|director +tosh|1 +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|twaddle|nonsense|bunk|nonsensicality|meaninglessness|hokum +tosk|1 +(noun)|Tosk|Tosk dialect|Albanian +tosk dialect|1 +(noun)|Tosk|Tosk dialect|Albanian +toss|9 +(noun)|flip|throw +(noun)|pass|flip|throw +(noun)|motion|movement|move|motility +(verb)|flip|sky|pitch|fling +(verb)|flip|turn +(verb)|chuck|throw +(verb)|convulse|thresh|thresh about|thrash|thrash about|slash|jactitate|shake|agitate +(verb)|discard|fling|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +(verb)|agitate|vex|disturb|commove|shake up|stir up|raise up +toss-up|2 +(noun)|tossup|even chance|luck|fortune|chance|hazard +(noun)| +toss away|1 +(verb)|discard|fling|toss|toss out|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +toss back|1 +(verb)|throw back|flip|toss|sky|pitch +toss bombing|1 +(noun)|loft bombing|bombing run +toss in|1 +(verb)|add|append|supply +toss off|2 +(verb)|dash off|knock off|fling off|write|compose|pen|indite +(verb)|pop|bolt down|belt down|pour down|down|drink down|kill|drink|imbibe +toss out|1 +(verb)|discard|fling|toss|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away|get rid of|remove +tossed salad|1 +(noun)|salad +tosser|2 +(noun)|jerk-off|wanker|masturbator|onanist +(noun)|thrower +tossing|1 +(adj)|agitated|moving +tossup|1 +(noun)|toss-up|even chance|luck|fortune|chance|hazard +tostada|2 +(noun)|dish +(noun)|tortilla +tot|3 +(noun)|small indefinite quantity|small indefinite amount +(noun)|toddler|yearling|bambino|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(verb)|total|tot up|sum|sum up|summate|tote up|add|add together|tally|add up|count|number|enumerate|numerate +tot up|1 +(verb)|total|tot|sum|sum up|summate|tote up|add|add together|tally|add up|count|number|enumerate|numerate +total|8 +(adj)|entire|full|whole +(adj)|overall|gross +(adj)|absolute|unconditioned|unconditional +(adj)|full|complete +(noun)|sum|totality|aggregate|whole|whole thing|unit +(noun)|sum|amount|quantity +(verb)|number|add up|come|amount|be +(verb)|tot|tot up|sum|sum up|summate|tote up|add|add together|tally|add up|count|number|enumerate|numerate +total aphasia|1 +(noun)|global aphasia|aphasia +total darkness|1 +(noun)|lightlessness|blackness|pitch blackness|black|dark|darkness +total depravity|1 +(noun)|theological doctrine|religious doctrine +total eclipse|1 +(noun)|eclipse|occultation +total heat|1 +(noun)|heat content|enthalpy|H|physical property +total hysterectomy|1 +(noun)|hysterectomy +total parenteral nutrition|1 +(noun)|TPN|hyperalimentation|feeding|alimentation +totaled|1 +(adj)|destroyed +totalisator|1 +(noun)|pari-mutuel machine|totalizer|totaliser|totalizator|computer|computing machine|computing device|data processor|electronic computer|information processing system +totalise|1 +(verb)|totalize|compound|combine +totaliser|2 +(noun)|pari-mutuel machine|totalizer|totalizator|totalisator|computer|computing machine|computing device|data processor|electronic computer|information processing system +(noun)|adding machine|totalizer|calculator|calculating machine +totalism|1 +(noun)|absolutism|totalitarianism|political orientation|ideology|political theory +totalistic|1 +(adj)|totalitarian|political orientation|ideology|political theory +totalitarian|2 +(adj)|undemocratic +(adj)|totalistic|political orientation|ideology|political theory +totalitarianism|2 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|tyranny|autocracy|autarchy +(noun)|absolutism|totalism|political orientation|ideology|political theory +totality|3 +(noun)|entirety|entireness|completeness +(noun)|generality +(noun)|sum|total|aggregate|whole|whole thing|unit +totalizator|1 +(noun)|pari-mutuel machine|totalizer|totaliser|totalisator|computer|computing machine|computing device|data processor|electronic computer|information processing system +totalize|1 +(verb)|totalise|compound|combine +totalizer|2 +(noun)|pari-mutuel machine|totaliser|totalizator|totalisator|computer|computing machine|computing device|data processor|electronic computer|information processing system +(noun)|adding machine|totaliser|calculator|calculating machine +totally|1 +(adv)|wholly|entirely|completely|all|altogether|whole +totara|1 +(noun)|Podocarpus totara|conifer|coniferous tree +tote|2 +(noun)|carryall|holdall|tote bag|bag +(verb)|lug|tug|transport|carry +tote bag|1 +(noun)|carryall|holdall|tote|bag +tote up|1 +(verb)|total|tot|tot up|sum|sum up|summate|add|add together|tally|add up|count|number|enumerate|numerate +totem|2 +(noun)|kin|kin group|kinship group|kindred|clan|tribe +(noun)|emblem +totem pole|1 +(noun)|column|pillar|emblem +totemic|1 +(adj)|belief +totemism|1 +(noun)|belief +toter|1 +(noun)|carrier|bearer|traveler|traveller +totipotence|1 +(noun)|totipotency|ability +totipotency|1 +(noun)|totipotence|ability +totipotent|1 +(adj)|ability +totten trust|1 +(noun)|savings account trust|savings bank trust|trust account|trustee account|Totten trust|trust +totter|3 +(verb)|rock|sway|shake +(verb)|toddle|coggle|dodder|paddle|waddle|walk +(verb)|teeter|seesaw|move +totterer|1 +(noun)|staggerer|reeler|pedestrian|walker|footer +tottering|2 +(adj)|tottery|unsteady +(adj)|unstable +tottery|1 +(adj)|tottering|unsteady +toucan|1 +(noun)|piciform bird +toucanet|1 +(noun)|toucan +touch|25 +(noun)|touching|contact|impinging|striking +(noun)|trace|ghost|suggestion|proposition|proffer +(noun)|signature|manner|mode|style|way|fashion +(noun)|touching|deed|feat|effort|exploit +(noun)|hint|tinge|mite|pinch|jot|speck|soupcon|small indefinite quantity|small indefinite amount +(noun)|contact|communication|communicating +(noun)|spot|attack +(noun)|solicitation +(noun)|touch sensation|tactual sensation|tactile sensation|feeling|perception +(noun)|adeptness|adroitness|deftness|facility|quickness +(noun)|tactile property|feel +(verb)|touch down +(verb)|perceive|comprehend +(verb)|stir|affect|impress|move|strike +(verb)|refer|pertain|relate|concern|come to|bear on|touch on +(verb)|adjoin|meet|contact +(verb)|affect|impact|bear upon|bear on|touch on|change|alter|modify +(verb)|manage|deal|care|handle +(verb)|reach|extend to|be +(verb)|equal|rival|match|compete|vie|contend +(verb)|disturb|change|alter|modify +(verb)|allude|advert|hint|suggest +(verb)|understand +(verb)|partake|consume|ingest|take in|take|have +(verb)|tint|tinct|bepaint|tinge|dye +touch-and-go|1 +(adj)|parlous|perilous|precarious|dangerous |unsafe +touch-me-not|3 +(noun)|jewelweed|lady's earrings|orange balsam|celandine|Impatiens capensis|herb|herbaceous plant +(noun)|squirting cucumber|exploding cucumber|Ecballium elaterium|gourd|gourd vine +(noun)|sensitive plant|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa +touch-type|1 +(verb)|type|typewrite +touch-typist|1 +(noun)|typist +touch a chord|1 +(verb)|strike a chord|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +touch base|1 +(verb)|get in touch|connect|interact +touch down|1 +(verb)|land|set down +touch football|1 +(noun)|American football|American football game +touch off|1 +(verb)|trip|actuate|trigger|activate|set off|spark off|spark|trigger off|initiate|pioneer +touch on|4 +(verb)|mention|advert|bring up|cite|name|refer +(verb)|refer|pertain|relate|concern|come to|bear on|touch +(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|better|improve|amend|ameliorate|meliorate +(verb)|affect|impact|bear upon|bear on|touch|change|alter|modify +touch perception|1 +(noun)|tactual sensation|tactility|skin perceptiveness|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatatesthesis|somatosensory system|somatic sensory system|somatic sense +touch sensation|1 +(noun)|touch|tactual sensation|tactile sensation|feeling|perception +touch system|1 +(noun)|touch typing|typing|typewriting +touch typing|1 +(noun)|touch system|typing|typewriting +touch up|1 +(verb)|retouch|enhance +touchable|1 +(adj)|physical|tangible|material +touchback|1 +(noun)|football play +touchdown|2 +(noun)|score +(noun)|landing +touched|4 +(adj)|tinged|colored |coloured|colorful +(adj)|touched |brushed|grazed +(adj)|fey|insane +(adj)|affected|stirred|moved +toucher|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +touchiness|1 +(noun)|testiness|tetchiness|irritability|crossness|fretfulness|fussiness|peevishness|petulance|choler +touching|3 +(adj)|affecting|poignant|moving +(noun)|touch|contact|impinging|striking +(noun)|touch|deed|feat|effort|exploit +touchingly|1 +(adv)|affectingly|poignantly +touchline|1 +(noun)|sideline|out of bounds +touchstone|1 +(noun)|standard|criterion|measure|reference point|point of reference|reference +touchwood|1 +(noun)|kindling|tinder|spunk|punk|igniter|ignitor|lighter +touchy|2 +(adj)|huffy|thin-skinned|sensitive +(adj)|feisty|ill-natured +touchy-feely|1 +(adj)|loving +tough|11 +(adj)|tough |hard-bitten|hard-boiled|pugnacious|tough-minded|unsentimental|hard|insensitive +(adj)|rugged|difficult |hard +(adj)|tough |toughened|calloused|thickened|enured|inured|hardened|weather-beaten|experienced|rugged|strong +(adj)|sturdy|rugged +(adj)|ruffianly|violent +(adj)|bad|uncomfortable +(adj)|tough |cartilaginous|gristly|rubbery|chewy|coriaceous|leathered|leatherlike|leathery|fibrous|sinewy|stringy|unchewable|hempen|fibrous|inedible|uneatable +(adj)|hard|bad +(noun)|street fighter|combatant|battler|belligerent|fighter|scrapper +(noun)|hood|hoodlum|goon|punk|thug|toughie|strong-armer|criminal|felon|crook|outlaw|malefactor +(noun)|bully|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker|aggressor|assailant|assaulter +tough-minded|1 +(adj)|unsentimental|tough +tough guy|1 +(noun)|plug-ugly|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo +tough luck|1 +(noun)|misfortune|bad luck|ill luck|fortune|destiny|fate|luck|lot|circumstances|portion +toughen|1 +(verb)|strengthen +toughened|2 +(adj)|tough |calloused|thickened|enured|inured|hardened|weather-beaten|experienced|rugged|strong +(adj)|tempered |treated|hardened|annealed|baked|burned|burnt|curable|sunbaked +toughie|2 +(noun)|hood|hoodlum|goon|punk|thug|tough|strong-armer|criminal|felon|crook|outlaw|malefactor +(noun)|poser|stumper|sticker|problem +toughness|4 +(noun)|stamina|staying power|endurance +(noun)|huskiness|ruggedness|strength +(noun)|temper|elasticity|snap +(noun)|formidability|difficulty|difficultness +toulouse|1 +(noun)|Toulouse|city|metropolis|urban center +toulouse-lautrec|1 +(noun)|Toulouse-Lautrec|Henri Toulouse-Lautrec|painter +toupe|1 +(noun)|toupee|hairpiece|false hair|postiche +toupee|1 +(noun)|toupe|hairpiece|false hair|postiche +toupeed|1 +(adj)|wigged +tour|4 +(noun)|circuit|journey|journeying +(noun)|go|spell|turn|shift|work shift|duty period +(noun)|enlistment|hitch|term of enlistment|tour of duty|duty tour|time period|period of time|period +(verb)|travel|journey +tour de force|1 +(noun)|deed|feat|effort|exploit +tour de france|1 +(noun)|Tour de France|bicycle race +tour guide|1 +(noun)|guide +tour of duty|1 +(noun)|enlistment|hitch|term of enlistment|duty tour|tour|time period|period of time|period +touraco|1 +(noun)|turaco|turacou|turakoo|cuculiform bird +tourer|2 +(noun)|tourist|holidaymaker|traveler|traveller +(noun)|touring car|phaeton|car|auto|automobile|machine|motorcar +tourette|1 +(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist|brain doctor +tourette's syndrome|1 +(noun)|Tourette's syndrome|Gilles de la Tourette syndrome|syndrome +touring|1 +(adj)|itinerant|road|traveling|moving +touring car|1 +(noun)|phaeton|tourer|car|auto|automobile|machine|motorcar +tourism|1 +(noun)|touristry|commercial enterprise|business enterprise|business +tourist|1 +(noun)|tourer|holidaymaker|traveler|traveller +tourist class|1 +(noun)|third class|accommodation +tourist court|1 +(noun)|motor hotel|motor inn|motor lodge|court|hotel +touristed|1 +(adj)|touristy|popular +touristry|1 +(noun)|tourism|commercial enterprise|business enterprise|business +touristy|1 +(adj)|touristed|popular +tourmaline|1 +(noun)|transparent gem|mineral +tournament|2 +(noun)|tourney|contest|competition +(noun)|contest|competition +tournedos|1 +(noun)|fillet|filet +tourney|2 +(noun)|tournament|contest|competition +(verb)|fight|struggle +tourniquet|1 +(noun)|compression bandage|bandage|patch +tousle|1 +(verb)|dishevel|tangle|disarrange +tousled|1 +(adj)|disheveled|dishevelled|frowzled|rumpled|untidy +tout|5 +(noun)|ticket tout|scalper +(noun)|touter|advertiser|advertizer|adman +(noun)|tipster|adviser|advisor|consultant +(verb)|pronounce|label|judge +(verb)|boast|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +tout ensemble|3 +(noun)|ensemble|collection|aggregation|accumulation|assemblage +(noun)|impression|effect +(adv)|all in all|on the whole|altogether +touter|1 +(noun)|tout|advertiser|advertizer|adman +tovarich|1 +(noun)|companion|comrade|fellow|familiar|associate +tow|2 +(noun)|towage|draw|haul|haulage +(verb)|shlep|schlep|pull along +tow-headed snake|1 +(noun)|rubber boa|Charina bottae|boa +tow car|1 +(noun)|tow truck|wrecker|truck|motortruck +tow truck|1 +(noun)|tow car|wrecker|truck|motortruck +towage|1 +(noun)|tow|draw|haul|haulage +toward land|1 +(adv)|ashore|on land|onto land +toward the sea|1 +(adv)|seaward|seawards|asea +towboat|1 +(noun)|tugboat|tug|tower|boat +towel|2 +(noun)|piece of cloth|piece of material +(verb)|wipe|pass over +towel bar|1 +(noun)|towel rail|bar +towel horse|1 +(noun)|towel rack|rack +towel rack|1 +(noun)|towel horse|rack +towel rail|1 +(noun)|towel bar|bar +towel ring|1 +(noun)|hoop|ring +toweling|1 +(noun)|towelling|fabric|cloth|material|textile +towelling|1 +(noun)|toweling|fabric|cloth|material|textile +tower|4 +(noun)|structure|construction +(noun)|column|pillar|shape|form +(noun)|tugboat|tug|towboat|boat +(verb)|loom|predominate|hulk|rise|lift|rear +tower block|1 +(noun)|high-rise|tower +tower cress|2 +(noun)|tower mustard|Turritis glabra|Arabis glabra|cress|cress plant +(noun)|tower mustard|Arabis turrita|rock cress|rockcress +tower mustard|2 +(noun)|tower cress|Turritis glabra|Arabis glabra|cress|cress plant +(noun)|tower cress|Arabis turrita|rock cress|rockcress +tower of babel|1 +(noun)|Tower of Babel|Babel|ziggurat|zikkurat|zikurat +tower of london|1 +(noun)|Tower of London|fortress|fort +tower of strength|1 +(noun)|pillar of strength|patron|sponsor|supporter +towering|1 +(adj)|eminent|lofty|soaring|high +towheaded|1 +(adj)|ash-blonde|platinum-blonde|blond |blonde|light-haired +towhee|1 +(noun)|finch +towing line|1 +(noun)|towline|towrope|towing rope|line +towing path|1 +(noun)|towpath|path +towing rope|1 +(noun)|towline|towrope|towing line|line +towline|1 +(noun)|towrope|towing line|towing rope|line +town|3 +(noun)|municipality +(noun)|township|administrative district|administrative division|territorial division +(noun)|townspeople|townsfolk|municipality +town clerk|1 +(noun)|official|functionary +town crier|1 +(noun)|crier|announcer +town gas|1 +(noun)|coal gas +town hall|1 +(noun)|government building +town house|1 +(noun)|row house|house +town meeting|2 +(noun)|local government +(noun)|meeting +town planning|1 +(noun)|city planning|urban planning|planning +townee|1 +(noun)|townsman|towner +towner|1 +(noun)|townsman|resident|occupant|occupier +townie|1 +(noun)|towny|townsman|towner +townsend|1 +(noun)|Townsend|Francis Everett Townsend|reformer|reformist|crusader|meliorist +townsend harris|1 +(noun)|Harris|Townsend Harris|diplomat|diplomatist +townsendia|1 +(noun)|Townsendia|genus Townsendia|asterid dicot genus +townsendia exscapa|1 +(noun)|Easter daisy|stemless daisy|Townsendia Exscapa|flower +townsfolk|1 +(noun)|town|townspeople|municipality +township|1 +(noun)|town|administrative district|administrative division|territorial division +townsman|2 +(noun)|peer|equal|match|compeer +(noun)|towner|resident|occupant|occupier +townspeople|1 +(noun)|town|townsfolk|municipality +towny|1 +(noun)|townie|townsman|towner +towpath|1 +(noun)|towing path|path +towrope|1 +(noun)|towline|towing line|towing rope|line +toxaemia|2 +(noun)|toxemia of pregnancy|toxaemia of pregnancy|toxemia|illness|unwellness|malady|sickness +(noun)|toxemia|blood poisoning|septicemia|septicaemia +toxaemia of pregnancy|1 +(noun)|toxemia of pregnancy|toxemia|toxaemia|illness|unwellness|malady|sickness +toxemia|2 +(noun)|toxemia of pregnancy|toxaemia of pregnancy|toxaemia|illness|unwellness|malady|sickness +(noun)|toxaemia|blood poisoning|septicemia|septicaemia +toxemia of pregnancy|1 +(noun)|toxaemia of pregnancy|toxemia|toxaemia|illness|unwellness|malady|sickness +toxic|1 +(adj)|toxic |cyanogenetic|cyanogenic|deadly|venomous|virulent|hepatotoxic|nephrotoxic|ototoxic|poisonous|toxicant|cytotoxic|harmful|noxious|harmful|unhealthful +toxic condition|1 +(noun)|poisoning|intoxication|physiological state|physiological condition +toxic dumpsite|1 +(noun)|toxic waste dump|toxic waste site|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +toxic industrial waste|1 +(noun)|toxic waste|waste|waste material|waste matter|waste product +toxic shock|1 +(noun)|toxic shock syndrome|TSS|syndrome +toxic shock syndrome|1 +(noun)|toxic shock|TSS|syndrome +toxic site|1 +(noun)|toxic waste area|Superfund site|site|land site +toxic waste|1 +(noun)|toxic industrial waste|waste|waste material|waste matter|waste product +toxic waste area|1 +(noun)|toxic site|Superfund site|site|land site +toxic waste dump|1 +(noun)|toxic waste site|toxic dumpsite|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +toxic waste site|1 +(noun)|toxic waste dump|toxic dumpsite|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +toxicant|1 +(adj)|poisonous|toxic +toxicity|2 +(noun)|definite quantity +(noun)|perniciousness|unwholesomeness|morbidness|morbidity +toxicodendron|1 +(noun)|Toxicodendron|genus Toxicodendron|dicot genus|magnoliopsid genus +toxicodendron diversilobum|1 +(noun)|western poison oak|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant +toxicodendron quercifolium|1 +(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant +toxicodendron radicans|1 +(noun)|poison ivy|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant +toxicodendron vernicifluum|1 +(noun)|varnish tree|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +toxicodendron vernix|1 +(noun)|poison ash|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant +toxicologic|1 +(adj)|toxicological|pharmacology|pharmacological medicine|materia medica +toxicological|1 +(adj)|toxicologic|pharmacology|pharmacological medicine|materia medica +toxicologist|1 +(noun)|medical scientist +toxicology|1 +(noun)|pharmacology|pharmacological medicine|materia medica +toxin|1 +(noun)|poison|poisonous substance +toxin antitoxin|1 +(noun)|immunogen|immunizing agent +toxoid|1 +(noun)|anatoxin|bacterial toxin|antigen +toxoplasmosis|1 +(noun)|infection +toxostoma|1 +(noun)|Toxostoma|genus Toxostoma|bird genus +toxostoma rufums|1 +(noun)|brown thrasher|brown thrush|Toxostoma rufums|thrasher|mocking thrush +toxotes|1 +(noun)|Toxotes|genus Toxotes|fish genus +toxotes jaculatrix|1 +(noun)|archerfish|Toxotes jaculatrix|percoid fish|percoid|percoidean +toxotidae|1 +(noun)|Toxotidae|family Toxotidae|fish family +toy|7 +(noun)|plaything|artifact|artefact +(noun)|replica|replication|reproduction +(noun)|miniature|copy +(noun)|toy dog|dog|domestic dog|Canis familiaris +(verb)|dally|play|flirt|act|move +(verb)|fiddle|diddle|play|manipulate|toy with +(verb)|play|act|behave|do +toy box|1 +(noun)|toy chest|chest +toy business|1 +(noun)|toy industry|industry +toy chest|1 +(noun)|toy box|chest +toy dog|1 +(noun)|toy|dog|domestic dog|Canis familiaris +toy industry|1 +(noun)|toy business|industry +toy manchester|1 +(noun)|toy Manchester|toy Manchester terrier|Manchester terrier|black-and-tan terrier +toy manchester terrier|1 +(noun)|toy Manchester|toy Manchester terrier|Manchester terrier|black-and-tan terrier +toy poodle|1 +(noun)|poodle|poodle dog +toy soldier|1 +(noun)|doll|dolly +toy spaniel|1 +(noun)|toy dog|toy +toy terrier|1 +(noun)|toy dog|toy +toy with|1 +(verb)|entertain|think of|flirt with|think about|contemplate +toying|1 +(noun)|flirt|flirting|flirtation|coquetry|dalliance|play|frolic|romp|gambol|caper +toynbee|1 +(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian|historiographer +toyon|1 +(noun)|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub|bush +toyshop|1 +(noun)|shop|store +tpn|1 +(noun)|total parenteral nutrition|TPN|hyperalimentation|feeding|alimentation +tra-la|1 +(noun)|tra-la-la|refrain|chorus +tra-la-la|1 +(noun)|tra-la|refrain|chorus +trabeate|1 +(adj)|trabeated|straight +trabeated|1 +(adj)|trabeate|straight +trabecula|1 +(noun)|fibrous tissue +trabecular|1 +(adj)|trabeculate|fibrous tissue +trabeculate|1 +(adj)|trabecular|fibrous tissue +trablous|1 +(noun)|Tripoli|Tarabulus Ash-Sham|Trablous|city|metropolis|urban center|port +trace|14 +(noun)|hint|suggestion|small indefinite quantity|small indefinite amount +(noun)|vestige|tincture|shadow|indication|indicant +(noun)|touch|ghost|suggestion|proposition|proffer +(noun)|tracing|drawing +(noun)|line +(noun)|mark|print +(verb)|follow|analyze|analyse|study|examine|canvass|canvas +(verb)|draw|line|describe|delineate|mark +(verb)|retrace|return|go back|get back|come back +(verb)|hound|hunt|chase|chase after|trail|tail|tag|give chase|dog|go after|track +(verb)|detect|observe|find|discover|notice +(verb)|proceed|go forward|continue +(verb)|copy|re-create +(verb)|decipher|read +trace detector|1 +(noun)|detector|sensor|sensing element +trace element|1 +(noun)|chemical element|element +trace program|1 +(noun)|utility program|utility|service program +traceable|2 +(adj)|attributable +(adj)|traceable |trackable +traced|1 +(adj)|copied|derived +tracer|4 +(noun)|detective|investigator|tec|police detective +(noun)|instrument +(noun)|radioisotope +(noun)|tracer bullet|ammunition|ammo +tracer bullet|1 +(noun)|tracer|ammunition|ammo +tracery|1 +(noun)|decoration|ornament|ornamentation +trachea|2 +(noun)|windpipe|cartilaginous tube +(noun)|tubule +tracheal|1 +(adj)|cartilaginous tube +tracheal vein|1 +(noun)|vena trachealis|vein|vena|venous blood vessel +tracheid|1 +(noun)|vascular tissue +tracheitis|1 +(noun)|inflammation|redness|rubor +trachelospermum|1 +(noun)|Trachelospermum|genus Trachelospermum|dicot genus|magnoliopsid genus +trachelospermum jasminoides|1 +(noun)|star jasmine|confederate jasmine|Trachelospermum jasminoides|vine +tracheobronchitis|1 +(noun)|inflammation|redness|rubor +tracheophyta|1 +(noun)|Tracheophyta|division Tracheophyta|division +tracheophyte|1 +(noun)|vascular plant|plant|flora|plant life +tracheostomy|1 +(noun)|tracheotomy|operation|surgery|surgical operation|surgical procedure|surgical process +tracheotomy|1 +(noun)|tracheostomy|operation|surgery|surgical operation|surgical procedure|surgical process +trachinotus|1 +(noun)|Trachinotus|genus Trachinotus|fish genus +trachinotus carolinus|1 +(noun)|Florida pompano|Trachinotus carolinus|pompano +trachinotus falcatus|1 +(noun)|permit|Trachinotus falcatus|pompano +trachipteridae|1 +(noun)|Trachipteridae|family Trachipteridae|fish family +trachipterus|1 +(noun)|Trachipterus|genus Trachipterus|fish genus +trachipterus arcticus|1 +(noun)|dealfish|Trachipterus arcticus|ribbonfish +trachodon|1 +(noun)|trachodont|hadrosaur|hadrosaurus|duck-billed dinosaur +trachodont|1 +(noun)|trachodon|hadrosaur|hadrosaurus|duck-billed dinosaur +trachoma|1 +(noun)|eye disease +trachurus|1 +(noun)|Trachurus|genus Trachurus|fish genus +trachurus symmetricus|1 +(noun)|horse mackerel|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad +trachurus trachurus|1 +(noun)|horse mackerel|saurel|Trachurus trachurus|scad +tracing|2 +(noun)|drawing|draftsmanship|drafting +(noun)|trace|drawing +tracing paper|1 +(noun)|paper +tracing routine|1 +(noun)|routine|subroutine|subprogram|procedure|function +track|16 +(noun)|path|course|line +(noun)|lead|trail|evidence|grounds +(noun)|artifact|artefact +(noun)|racetrack|racecourse|raceway|course +(noun)|cut|excerpt|extract|selection +(noun)|caterpillar track|caterpillar tread|belt +(noun)|data track|path|route|itinerary +(noun)|groove|channel +(noun)|rail|rails|bar +(noun)|cart track|cartroad|road|route +(noun)|running|track and field +(verb)|bring in|introduce +(verb)|observe +(verb)|chase|chase after|trail|tail|tag|give chase|dog|go after|pursue|follow +(verb)|traverse|cover|cross|pass over|get over|get across|cut through|cut across|pass|go through|go across +(verb)|make|create +track-to-track seek time|1 +(noun)|seek time +track and field|1 +(noun)|sport|athletics +track down|1 +(verb)|hunt|run|hunt down|capture|catch +track event|1 +(noun)|footrace|foot race|run +track meet|1 +(noun)|meet|sports meeting +track record|2 +(noun)|record +(noun)|record|accomplishment|achievement +track star|1 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz +trackable|1 +(adj)|traceable +trackball|1 +(noun)|electronic device +tracked|1 +(adj)|tracked |caterpillar-tracked|half-track|half-tracked +tracked vehicle|1 +(noun)|self-propelled vehicle +tracker|1 +(noun)|hunter|huntsman +tracking|1 +(noun)|trailing|pursuit|chase|following +tracklayer|1 +(noun)|platelayer|laborer|manual laborer|labourer|jack +trackless|2 +(adj)|trackless +(adj)|pathless|roadless|untracked|untrod|untrodden|inaccessible |unaccessible +trackless trolley|1 +(noun)|trolleybus|trolley coach|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus +tract|4 +(noun)|piece of land|piece of ground|parcel of land|parcel|geographical area|geographic area|geographical region|geographic region +(noun)|system +(noun)|pamphlet|treatise +(noun)|nerve pathway|nerve tract|pathway|white matter|substantia alba +tract house|1 +(noun)|house +tract housing|1 +(noun)|housing|lodging|living accommodations +tractability|1 +(noun)|tractableness|flexibility|trait +tractable|2 +(adj)|tractable |manipulable|docile|teachable|ductile|malleable|manageable|tamable|tameable|compliant|docile|manageable|obedient|tame|tamed +(adj)|responsive|amenable|susceptible +tractableness|1 +(noun)|tractability|flexibility|trait +tractarian|1 +(noun)|Tractarian|Christian +tractarianism|1 +(noun)|Tractarianism|Puseyism|Christianity|Christian religion +tractile|1 +(adj)|ductile|malleable|pliable|pliant|tensile|elastic +traction|2 +(noun)|grip|adhesive friction|friction|rubbing +(noun)|pull|pulling +traction engine|1 +(noun)|locomotive|engine|locomotive engine|railway locomotive +tractive|1 +(adj)|friction|rubbing +tractor|2 +(noun)|self-propelled vehicle +(noun)|truck|motortruck +tractor trailer|1 +(noun)|trailer truck|trucking rig|rig|articulated lorry|semi|truck|motortruck +tracy|1 +(noun)|Tracy|Spencer Tracy|actor|histrion|player|thespian|role player +trad|1 +(noun)|jazz +trade|13 +(adj)|commercial +(noun)|commerce|commercialism|mercantilism +(noun)|craft|class|social class|socio-economic class +(noun)|barter|swap|swop|exchange|interchange +(noun)|craft|occupation|business|job|line of work|line +(noun)|deal|business deal|transaction|dealing|dealings +(noun)|patronage|business +(noun)|trade wind|prevailing wind +(verb)|merchandise +(verb)|trade in|exchange|change|interchange +(verb)|sell +(verb)|swap|swop|switch|exchange|change|interchange +(verb)|deal|sell|transact +trade-in|1 +(noun)|property|belongings|holding|material possession +trade-last|1 +(noun)|compliment +trade-off|2 +(noun)|tradeoff|exchange +(noun)| +trade acceptance|1 +(noun)|draft|bill of exchange|order of payment +trade balance|1 +(noun)|balance of trade|visible balance|trade gap|balance +trade barrier|1 +(noun)|import barrier|protectionism +trade bill|1 +(noun)|bill|measure +trade book|1 +(noun)|trade edition|book +trade cycle|1 +(noun)|business cycle|variation|fluctuation +trade deficit|1 +(noun)|deficit +trade discount|1 +(noun)|deduction|discount +trade edition|1 +(noun)|trade book|book +trade embargo|1 +(noun)|embargo|trade stoppage|trade barrier|import barrier +trade expense|1 +(noun)|business expense|expense|disbursal|disbursement +trade gap|1 +(noun)|balance of trade|trade balance|visible balance|balance +trade goods|1 +(noun)|commodity|goods|artifact|artefact +trade in|1 +(verb)|trade|exchange|change|interchange +trade magazine|1 +(noun)|magazine|mag +trade name|1 +(noun)|brand name|brand|marque|name +trade policy|1 +(noun)|national trading policy|foreign policy +trade protection|1 +(noun)|protection|imposition|infliction +trade rat|1 +(noun)|packrat|pack rat|bushytail woodrat|Neotoma cinerea|wood rat|wood-rat +trade route|2 +(noun)|seaway|sea lane|ship route|lane +(noun)|path|route|itinerary +trade school|1 +(noun)|vocational school|secondary school|lyceum|lycee|Gymnasium|middle school +trade secret|1 +(noun)|secret +trade stoppage|1 +(noun)|embargo|trade embargo|trade barrier|import barrier +trade union|1 +(noun)|union|labor union|trades union|brotherhood|organization|organisation +trade union movement|1 +(noun)|labor movement|labor|reform movement +trade unionism|1 +(noun)|unionism|labor movement|trade union movement|labor +trade unionist|1 +(noun)|unionist|union member|worker +trade wind|1 +(noun)|trade|prevailing wind +tradecraft|1 +(noun)|craft|craftsmanship|workmanship +traded|1 +(adj)|listed +trademark|2 +(noun)|hallmark|earmark|stylemark|characteristic +(noun)|marker|marking|mark +trademarked|1 +(adj)|proprietary +tradeoff|1 +(noun)|trade-off|exchange +trader|1 +(noun)|bargainer|dealer|monger|merchant|merchandiser +trades union|2 +(noun)|union|labor union|trade union|brotherhood|organization|organisation +(noun)|union|labor union|trade union|brotherhood|organization|organisation +tradescant|1 +(noun)|Tradescant|John Tradescant|botanist|phytologist|plant scientist +tradescant's aster|1 +(noun)|aster +tradescantia|1 +(noun)|Tradescantia|genus Tradescantia|monocot genus|liliopsid genus +tradesman|1 +(noun)|shopkeeper|storekeeper|market keeper|merchant|merchandiser +trading|1 +(noun)|commerce|commercialism|mercantilism +trading card|1 +(noun)|card +trading floor|1 +(noun)|floor|room +trading operations|1 +(noun)|operations|transaction|dealing|dealings +trading post|1 +(noun)|country store|general store|mercantile establishment|retail store|sales outlet|outlet +trading stamp|1 +(noun)|token|item +tradition|2 +(noun)|content|cognitive content|mental object +(noun)|custom|practice +traditional|2 +(adj)|traditional |conventional|handed-down|tralatitious|time-honored|time-honoured|traditionalistic +(adj)|orthodox +traditional knowledge|1 +(noun)|lore|content|cognitive content|mental object +traditionalism|3 +(noun)|traditionality|orthodoxy +(noun)|attachment|adherence|adhesion +(noun)|philosophical doctrine|philosophical theory +traditionalist|2 +(adj)|hidebound|conservative +(noun)|diehard|conservative|conservativist +traditionalistic|1 +(adj)|traditional +traditionality|1 +(noun)|traditionalism|orthodoxy +traduce|1 +(verb)|badmouth|malign|drag through the mud|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch +traducement|1 +(noun)|defamation|calumny|obloquy|hatchet job|disparagement|depreciation|derogation +traducer|1 +(noun)|defamer|maligner|slanderer|vilifier|libeler|backbiter|detractor|disparager|depreciator|knocker +trafalgar|1 +(noun)|Trafalgar|battle of Trafalgar|naval battle +trafalgar square|1 +(noun)|Trafalgar Square|public square|square +traffic|6 +(noun)|collection|aggregation|accumulation|assemblage +(noun)|commerce|commercialism|mercantilism +(noun)|communication|communicating +(noun)|dealings|interchange|reciprocation|give-and-take +(verb)|trade|merchandise +(verb)|trade|merchandise +traffic circle|1 +(noun)|circle|rotary|roundabout|junction +traffic control|1 +(noun)|control +traffic cop|1 +(noun)|policeman|police officer|officer +traffic court|1 +(noun)|court|tribunal|judicature +traffic island|1 +(noun)|safety island|safety isle|safety zone|island +traffic jam|1 +(noun)|snarl-up|crush|jam|press +traffic lane|1 +(noun)|lane +traffic light|1 +(noun)|traffic signal|stoplight|light +traffic pattern|1 +(noun)|approach pattern|pattern|path|route|itinerary +traffic signal|1 +(noun)|traffic light|stoplight|light +trafficator|1 +(noun)|blinker|turn signal|turn indicator|visual signal +trafficker|1 +(noun)|seller|marketer|vender|vendor|merchant|merchandiser +tragacanth|1 +(noun)|gum +tragedian|2 +(noun)|writer|author +(noun)|actor|histrion|player|thespian|role player +tragedienne|1 +(noun)|actress +tragedy|2 +(noun)|calamity|catastrophe|disaster|cataclysm|misfortune|bad luck +(noun)|drama +tragelaphus|1 +(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus +tragelaphus angasi|1 +(noun)|nyala|Tragelaphus angasi|harnessed antelope +tragelaphus buxtoni|1 +(noun)|mountain nyala|Tragelaphus buxtoni|antelope +tragelaphus eurycerus|1 +(noun)|bongo|Tragelaphus eurycerus|Boocercus eurycerus|antelope +tragelaphus imberbis|1 +(noun)|lesser kudu|Tragelaphus imberbis|kudu|koodoo|koudou +tragelaphus scriptus|1 +(noun)|bushbuck|guib|Tragelaphus scriptus|harnessed antelope +tragelaphus strepsiceros|1 +(noun)|greater kudu|Tragelaphus strepsiceros|kudu|koodoo|koudou +tragic|2 +(adj)|tragical|sad +(adj)|drama +tragic flaw|1 +(noun)|hamartia|flaw +tragical|1 +(adj)|tragic|sad +tragicomedy|2 +(noun)|tragedy +(noun)|seriocomedy|comedy +tragicomic|3 +(adj)|tragedy +(adj)|tragicomical|sad +(adj)|tragicomical|humorous |humourous +tragicomical|2 +(adj)|tragicomic|sad +(adj)|tragicomic|humorous |humourous +tragopan|1 +(noun)|pheasant +tragopogon|1 +(noun)|Tragopogon|genus Tragopogon|asterid dicot genus +tragopogon dubius|1 +(noun)|yellow salsify|Tragopogon dubius|wildflower|wild flower +tragopogon porrifolius|1 +(noun)|salsify|oyster plant|vegetable oyster|Tragopogon porrifolius|herb|herbaceous plant +tragopogon pratensis|1 +(noun)|meadow salsify|goatsbeard|shepherd's clock|Tragopogon pratensis|wildflower|wild flower +tragulidae|1 +(noun)|Tragulidae|family Tragulidae|mammal family +tragulus|1 +(noun)|Tragulus|genus Tragulus|mammal genus +tragulus javanicus|1 +(noun)|napu|Tragulus Javanicus|chevrotain|mouse deer +tragulus kanchil|1 +(noun)|kanchil|Tragulus kanchil|chevrotain|mouse deer +tragus|1 +(noun)|cartilaginous structure +trail|7 +(noun)|path|track|course +(noun)|track|cart track|cartroad +(noun)|lead|track|evidence|grounds +(verb)|drag|get behind|hang back|drop behind|lag|dawdle|fall back|fall behind +(verb)|chase|chase after|tail|tag|give chase|dog|go after|track|pursue|follow +(verb)|shack|travel|go|move|locomote +(verb)|train|drag +trail bike|1 +(noun)|dirt bike|scrambler|motorcycle|bike +trail boss|1 +(noun)|supervisor +trail head|2 +(noun)|trailhead|beginning|origin|root|rootage|source +(noun)| +trail riding|1 +(noun)|riding|horseback riding +trailblazer|2 +(noun)|scout|pathfinder|guide +(noun)|pioneer|innovator|groundbreaker|originator|conceiver|mastermind +trailer|4 +(noun)|dawdler|drone|laggard|lagger|idler|loafer|do-nothing|layabout|bum +(noun)|preview|prevue|ad|advertisement|advertizement|advertising|advertizing|advert +(noun)|conveyance|transport +(noun)|house trailer|wheeled vehicle +trailer camp|1 +(noun)|trailer park|camp +trailer park|1 +(noun)|trailer camp|camp +trailer truck|1 +(noun)|tractor trailer|trucking rig|rig|articulated lorry|semi|truck|motortruck +trailhead|1 +(noun)|trail head|beginning|origin|root|rootage|source +trailing|2 +(adj)|behind|down +(noun)|tracking|pursuit|chase|following +trailing arbutus|1 +(noun)|mayflower|Epigaea repens|shrub|bush +trailing edge|1 +(noun)|edge +trailing four o'clock|1 +(noun)|trailing windmills|Allionia incarnata|wildflower|wild flower +trailing windmills|1 +(noun)|trailing four o'clock|Allionia incarnata|wildflower|wild flower +train|17 +(noun)|railroad train|public transport +(noun)|string|series +(noun)|caravan|wagon train|procession +(noun)|consequence|aftermath +(noun)|piece of cloth|piece of material +(noun)|gearing|gears|geartrain|power train|wheelwork +(verb)|develop|prepare|educate|teach|learn|instruct +(verb)|prepare|learn|study|read|take +(verb)|discipline|check|condition|develop|make grow +(verb)|prepare|groom|educate +(verb)|educate|school|cultivate|civilize|civilise|polish|refine|fine-tune|down +(verb)|aim|take|take aim|direct|position +(verb)|coach|teach|learn|instruct +(verb)|exercise|work out +(verb)|control|hold in|hold|contain|check|curb|moderate +(verb)|rail|ride +(verb)|trail|drag +train depot|1 +(noun)|railway station|railroad station|railroad terminal|train station|terminal|terminus|depot +train dispatcher|1 +(noun)|yardmaster|trainmaster|dispatcher|trainman|railroader|railroad man|railwayman|railway man +train fare|1 +(noun)|fare|transportation +train of thought|1 +(noun)|thread|thinking|thought|cerebration|intellection|mentation +train oil|1 +(noun)|whale oil|animal oil +train set|1 +(noun)|plaything|toy +train station|1 +(noun)|railway station|railroad station|railroad terminal|train depot|terminal|terminus|depot +train ticket|1 +(noun)|railroad ticket|ticket +trainband|1 +(noun)|company|militia|reserves +trainbandsman|1 +(noun)|militiaman +trainbearer|1 +(noun)|attendant|attender|tender +trained|2 +(adj)|trained |disciplined|drilled|housebroken|house-trained|potty-trained|pot-trained|toilet-trained +(adj)|skilled +trained nurse|1 +(noun)|graduate nurse|nurse +trained worker|1 +(noun)|skilled worker|worker +trainee|1 +(noun)|novice|beginner|tyro|tiro|initiate +traineeship|1 +(noun)|aid|economic aid +trainer|2 +(noun)|leader +(noun)|flight simulator|simulator +training|2 +(noun)|preparation|grooming|activity +(noun)|education|breeding|upbringing +training college|1 +(noun)|college +training program|1 +(noun)|educational program +training school|2 +(noun)|school +(noun)|reformatory|reform school|correctional institution +training ship|1 +(noun)|school ship|ship +training table|1 +(noun)|board|table +trainload|1 +(noun)|load|loading +trainman|1 +(noun)|railroader|railroad man|railwayman|railway man|employee +trainmaster|1 +(noun)|yardmaster|train dispatcher|dispatcher|trainman|railroader|railroad man|railwayman|railway man +traipse|1 +(verb)|shlep|walk +trait|1 +(noun)|attribute +traitor|2 +(noun)|treasonist|criminal|felon|crook|outlaw|malefactor +(noun)|double-crosser|double-dealer|two-timer|betrayer|deceiver|cheat|cheater|trickster|beguiler|slicker +traitorous|2 +(adj)|faithless|unfaithful|disloyal +(adj)|treasonable|treasonous|disloyal +traitorously|1 +(adv)|faithlessly|treacherously|treasonably|false +traitorousness|1 +(noun)|treason|subversiveness|disloyalty +traitress|1 +(noun)|traitor|treasonist +trajan|1 +(noun)|Trajan|Marcus Ulpius Traianus|Roman Emperor|Emperor of Rome +trajectory|1 +(noun)|flight|mechanical phenomenon +tralatitious|1 +(adj)|handed-down|traditional +tram|3 +(noun)|tramway|aerial tramway|cable tramway|ropeway|conveyance|transport +(noun)|tramcar|wagon|waggon +(noun)|streetcar|tramcar|trolley|trolley car|self-propelled vehicle +tramcar|2 +(noun)|tram|wagon|waggon +(noun)|streetcar|tram|trolley|trolley car|self-propelled vehicle +tramline|1 +(noun)|tramway|streetcar track|track +trammel|6 +(noun)|trammel net|fishnet|fishing net +(noun)|pothook +(noun)|restraint|constraint +(noun)|shackle|bond|hamper|trammels|restraint|constraint +(verb)|trap|entrap|snare|ensnare|capture|catch +(verb)|restrict|restrain|limit|bound|confine|throttle|control|hold in|hold|contain|check|curb|moderate +trammel net|1 +(noun)|trammel|fishnet|fishing net +trammels|5 +(noun)|shackle|bond|hamper|trammel|restraint|constraint +(noun)|trammel net|trammel|fishnet|fishing net +(noun)|trammel|pothook +(noun)|trammel|restraint|constraint +(noun)|shackle|bond|hamper|trammel|restraint|constraint +tramontana|1 +(noun)|tramontane|north wind|norther|boreas +tramontane|3 +(adj)|tramontane |transmontane|transalpine|ultramontane +(adj)|foreign +(noun)|tramontana|north wind|norther|boreas +tramp|10 +(noun)|hobo|bum|vagrant|drifter|floater|vagabond +(noun)|swinger|libertine|debauchee|rounder +(noun)|hiker|tramper|pedestrian|walker|footer +(noun)|footfall|footstep|step +(noun)|tramp steamer|steamer|steamship +(noun)|hike|walk +(verb)|hike +(verb)|slog|footslog|plod|trudge|pad|walk +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|roll|wander|swan|stray|roam|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +tramp's spurge|1 +(noun)|wild spurge|flowering spurge|Euphorbia corollata|spurge +tramp down|1 +(verb)|trample|tread down|walk +tramp steamer|1 +(noun)|tramp|steamer|steamship +tramper|2 +(noun)|stamper|stomper|trampler|pedestrian|walker|footer +(noun)|hiker|tramp|pedestrian|walker|footer +trample|4 +(noun)|trampling|sound +(verb)|tread|walk +(verb)|injure|wound +(verb)|tramp down|tread down|walk +trampled|1 +(adj)|trodden|damaged +trampler|2 +(noun)|bad person +(noun)|stamper|stomper|tramper|pedestrian|walker|footer +trampling|1 +(noun)|trample|sound +trampoline|1 +(noun)|gymnastic apparatus|exerciser +tramway|2 +(noun)|tram|aerial tramway|cable tramway|ropeway|conveyance|transport +(noun)|tramline|streetcar track|track +trance|3 +(noun)|enchantment|spell|psychological state|mental state +(noun)|unconsciousness +(verb)|capture|enamour|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract|appeal +trancelike|1 +(adj)|confused +tranche|1 +(noun)|share|portion|part|percentage +trandate|1 +(noun)|labetalol|labetalol hydrochloride|Trandate|Normodyne|blocker|blocking agent|antihypertensive|antihypertensive drug +tranquil|2 +(adj)|calm|serene|peaceful +(adj)|placid|quiet|still|unruffled|calm +tranquilising|1 +(adj)|ataractic|ataraxic|sedative|tranquilizing|depressant +tranquility|2 +(noun)|repose|quiet|placidity|serenity|tranquillity|composure|calm|calmness|equanimity +(noun)|tranquillity|quietness|quietude|calmness +tranquilize|2 +(verb)|calm|calm down|quiet|tranquillize|tranquillise|quieten|lull|still|comfort|soothe|console|solace +(verb)|sedate|calm|tranquillize|tranquillise|affect +tranquilizer|1 +(noun)|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +tranquilizing|1 +(adj)|ataractic|ataraxic|sedative|tranquilising|depressant +tranquillise|2 +(verb)|calm|calm down|quiet|tranquilize|tranquillize|quieten|lull|still|comfort|soothe|console|solace +(verb)|sedate|calm|tranquilize|tranquillize|affect +tranquilliser|1 +(noun)|tranquilizer|tranquillizer|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +tranquillity|3 +(noun)|quiet|order +(noun)|tranquility|quietness|quietude|calmness +(noun)|repose|quiet|placidity|serenity|tranquility|composure|calm|calmness|equanimity +tranquillize|2 +(verb)|calm|calm down|quiet|tranquilize|tranquillise|quieten|lull|still|comfort|soothe|console|solace +(verb)|sedate|calm|tranquilize|tranquillise|affect +tranquillizer|1 +(noun)|tranquilizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent|sedative-hypnotic|sedative-hypnotic drug +trans-alaska pipeline|1 +(noun)|Alaskan pipeline|trans-Alaska pipeline|pipeline|line +trans fatty acid|1 +(noun)|fatty acid +transact|1 +(verb)|interact +transactinide|2 +(adj)|chemical element|element +(noun)|chemical element|element +transaction|1 +(noun)|dealing|dealings|group action +transaction file|1 +(noun)|detail file|computer file +transactional immunity|1 +(noun)|use immunity|testimonial immunity +transactions|2 +(noun)|minutes|proceedings|written record|written account +(noun)|transaction|dealing|dealings|group action +transactor|1 +(noun)|businessman|man of affairs +transalpine|2 +(adj)|ultramontane|tramontane |transmontane +(noun)|foreigner|outsider +transaminase|1 +(noun)|aminotransferase|aminopherase|transferase +transaminate|2 +(verb)|change|alter|modify +(verb)|change +transamination|2 +(noun)|chemical process|chemical change|chemical action +(noun)|chemical process|chemical change|chemical action +transcend|2 +(verb)|exceed|surpass +(verb)|exceed|overstep|pass|go past|top|excel|stand out|surpass +transcendence|2 +(noun)|transcendency|being|beingness|existence +(noun)|transcendency|superiority|domination|mastery|supremacy +transcendency|2 +(noun)|transcendence|being|beingness|existence +(noun)|transcendence|superiority|domination|mastery|supremacy +transcendent|2 +(adj)|unknowable|unknown +(adj)|surpassing|superior +transcendental|2 +(adj)|nonnatural|otherworldly|preternatural|supernatural +(adj)|philosophy +transcendental number|1 +(noun)|irrational number +transcendental philosophy|1 +(noun)|transcendentalism|philosophy +transcendentalism|1 +(noun)|transcendental philosophy|philosophy +transcendentalist|1 +(noun)|philosopher +transcontinental|1 +(adj)|continental +transcortical aphasia|1 +(noun)|aphasia +transcribe|5 +(verb)|write down|set down|get down|put down +(verb)|transliterate|rewrite +(verb)|adapt|accommodate +(verb)|rewrite +(verb)|convert +transcribed|2 +(adj)|written +(adj)|canned|recorded +transcriber|5 +(noun)|translator|linguist|polyglot +(noun)|writer +(noun)|phonetician +(noun)|writer +(noun)|arranger|adapter|musician +transcript|2 +(noun)|writing|written material|piece of writing +(noun)|copy|written record|written account +transcriptase|1 +(noun)|polymerase +transcription|5 +(noun)|written text|written communication|written language +(noun)|organic process|biological process +(noun)|recording +(noun)|arrangement|arranging|composing|composition +(noun)|recording|creating from raw materials +transcultural|1 +(adj)|society +transcutaneous|1 +(adj)|transdermal|transdermic|percutaneous|connective tissue|body covering +transdermal|1 +(adj)|transdermic|percutaneous|transcutaneous|stratum +transdermal patch|1 +(noun)|skin patch|pad +transdermic|1 +(adj)|transdermal|percutaneous|transcutaneous|stratum +transduce|1 +(verb)|convert|change over +transducer|1 +(noun)|electrical device +transducing vector|1 +(noun)|gene delivery vector|vector|transmitter +transduction|2 +(noun)|organic process|biological process +(noun)|natural process|natural action|action|activity +transept|1 +(noun)|structure|construction +transeunt|1 +(adj)|transeunt |transient +transexual|2 +(noun)|transsexual|anomaly|unusual person +(noun)|transsexual|person|individual|someone|somebody|mortal|human|soul +transfer|14 +(noun)|transportation|transferral|conveyance|movement +(noun)|transferee|person|individual|someone|somebody|mortal|human|soul +(noun)|transference|change of state +(noun)|ticket +(noun)|transfer of training|carry-over|learning|acquisition +(noun)|transference|transaction|dealing|dealings +(verb)|shift|move|displace +(verb)|reassign|delegate|designate|depute|assign +(verb)|move|displace +(verb)|transplant|displace|force out +(verb)|change|travel|go|move|locomote +(verb)|transmit|transport|channel|channelize|channelise|move|displace +(verb)|remove|shift +(verb)|transpose|transplant|shift +transfer agent|1 +(noun)|agency +transfer of training|1 +(noun)|transfer|carry-over|learning|acquisition +transfer paper|1 +(noun)|paper +transfer payment|1 +(noun)|outgo|expenditure|outlay +transfer rna|1 +(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid|RNA +transfer tax|1 +(noun)|tax|taxation|revenue enhancement +transferability|1 +(noun)|exchangeability|interchangeability|interchangeableness|fungibility +transferable|2 +(adj)|movable|moveable|transferrable|transportable|mobile +(adj)|assignable|conveyable|negotiable|transferrable|alienable +transferase|1 +(noun)|enzyme +transferee|2 +(noun)|recipient|receiver +(noun)|transfer|person|individual|someone|somebody|mortal|human|soul +transference|3 +(noun)|displacement +(noun)|transfer|transaction|dealing|dealings +(noun)|transfer|change of state +transferer|1 +(noun)|transferrer|mover +transferor|1 +(noun)|transferer|transferrer +transferrable|2 +(adj)|movable|moveable|transferable|transportable|mobile +(adj)|assignable|conveyable|negotiable|transferable|alienable +transferral|1 +(noun)|transportation|transfer|conveyance|movement +transferred possession|1 +(noun)|transferred property|possession +transferred property|1 +(noun)|transferred possession|possession +transferrer|1 +(noun)|transferer|mover +transferrin|1 +(noun)|beta globulin|siderophilin|globulin +transfiguration|4 +(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day +(noun)|Transfiguration|Transfiguration of Jesus|miracle +(noun)|metamorphosis|revision|alteration +(noun)|transformation|translation +transfiguration day|1 +(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day +transfiguration of jesus|1 +(noun)|Transfiguration|Transfiguration of Jesus|miracle +transfigure|2 +(verb)|glorify|spiritualize|change|alter|modify +(verb)|metamorphose|transmogrify|change by reversal|turn|reverse +transfix|2 +(verb)|fascinate|grip|spellbind|interest +(verb)|impale|empale|spike|pierce|thrust +transfixed|1 +(adj)|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|enchanted +transform|7 +(verb)|change|alter|modify +(verb)|transmute|transubstantiate|change|alter|modify +(verb)|transmute|metamorphose|change +(verb)|translate|change|alter|modify +(verb)|change|alter|modify +(verb)|change|alter|modify +(verb)|change|alter|modify +transformable|1 +(adj)|convertible|translatable|transmutable|commutable +transformation|5 +(noun)|transmutation|shift|change|alteration|modification +(noun)|function|mathematical function +(noun)|grammatical rule|rule of grammar +(noun)|change of integrity +(noun)|translation|change of integrity +transformed|1 +(adj)|changed +transformer|1 +(noun)|electrical device +transforming gene|1 +(noun)|oncogene|gene|cistron|factor +transfuse|4 +(verb)|instill|lend|impart|bestow|contribute|add|bring +(verb)|pour +(verb)|cup|treat|care for +(verb)|administer|dispense +transfusion|2 +(noun)|blood transfusion|insertion|introduction|intromission +(noun)|action +transfusion reaction|1 +(noun)|reaction|response +transgress|4 +(verb)|offend|infract|violate|go against|breach|break|disrespect +(verb)|spread|overspread +(verb)|sin|trespass|offend|infract|violate|go against|breach|break +(verb)|trespass|overstep|pass|go through|go across +transgression|3 +(noun)|evildoing|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|geological phenomenon +(noun)|action +transgressor|1 +(noun)|wrongdoer|offender +transience|2 +(noun)|transiency|transitoriness|impermanence|impermanency +(noun)|brevity|briefness|duration|length +transiency|1 +(noun)|transience|transitoriness|impermanence|impermanency +transient|4 +(adj)|transeunt +(adj)|ephemeral|passing|short-lived|transitory|fugacious|impermanent |temporary +(noun)|traveler|traveller +(noun)|oscillation|vibration +transient global amnesia|1 +(noun)|amnesia|memory loss|blackout +transient ischemic attack|1 +(noun)|TIA|ischemia|ischaemia +transistor|1 +(noun)|junction transistor|electronic transistor|semiconductor device|semiconductor unit|semiconductor +transistorise|1 +(verb)|transistorize|supply|provide|render|furnish +transistorised|1 +(adj)|transistorized|equipped |equipt +transistorize|1 +(verb)|transistorise|supply|provide|render|furnish +transistorized|1 +(adj)|transistorised|equipped |equipt +transit|7 +(noun)|theodolite|surveying instrument|surveyor's instrument +(noun)|transportation system|transportation|facility|installation +(noun)|passage|journey|journeying +(verb)|pass through|pass across|pass over|pass|go through|go across +(verb)|pass|go through|go across +(verb)|roll|revolve +(verb)|bring|convey|take +transit declinometer|1 +(noun)|declinometer|measuring instrument|measuring system|measuring device +transit instrument|1 +(noun)|telescope|scope +transit line|1 +(noun)|line +transit zone|1 +(noun)|zone|geographical zone +transition|5 +(noun)|passage|change of state +(noun)|conversion|changeover|transformation|transmutation|shift +(noun)|change|alteration|modification +(noun)|modulation|passage|musical passage +(noun)|passage +transitional|1 +(adj)|transformation|transmutation|shift +transitive|1 +(adj)|transitive +transitive verb|1 +(noun)|transitive verb form|verb +transitive verb form|1 +(noun)|transitive verb|verb +transitiveness|1 +(noun)|transitivity|grammatical relation +transitivise|1 +(verb)|transitivize|change|alter|modify +transitivity|2 +(noun)|logical relation|mathematical relation +(noun)|transitiveness|grammatical relation +transitivize|1 +(verb)|transitivise|change|alter|modify +transitoriness|1 +(noun)|transience|transiency|impermanence|impermanency +transitory|1 +(adj)|ephemeral|passing|short-lived|transient|fugacious|impermanent |temporary +translatable|2 +(adj)|translatable +(adj)|convertible|transformable|transmutable|commutable +translate|10 +(verb)|interpret|render|repeat|reiterate|ingeminate|iterate|restate|retell +(verb)|transform|change|alter|modify +(verb)|understand|read|interpret|understand +(verb)|transmit|transfer|transport|channel|channelize|channelise +(verb)|move|displace +(verb)|equal|be +(verb)|be +(verb)|move|displace +(verb)|paraphrase|rephrase|reword +(verb)|determine|find|find out|ascertain +translating program|1 +(noun)|translator|program|programme|computer program|computer programme +translation|7 +(noun)|interlingual rendition|rendering|version|written record|written account +(noun)|change of location|travel +(noun)|transformation|change of integrity +(noun)|transformation +(noun)|organic process|biological process +(noun)|paraphrase|paraphrasis +(noun)|displacement|motion|movement|move +translational|1 +(adj)|translational |change of location|travel +translator|3 +(noun)|transcriber|linguist|polyglot +(noun)|interpreter|mediator|go-between|intermediator|intermediary|intercessor +(noun)|translating program|program|programme|computer program|computer programme +transliterate|1 +(verb)|transcribe|rewrite +transliteration|1 +(noun)|transcription|written text +translocate|2 +(verb)|transfer|shift +(verb)|transfer +translocation|2 +(noun)|organic process|biological process +(noun)|organic process|biological process +translucence|1 +(noun)|translucency|semitransparency|clearness|clarity|uncloudedness +translucency|1 +(noun)|translucence|semitransparency|clearness|clarity|uncloudedness +translucent|1 +(adj)|semitransparent|clear +translucent substance|1 +(noun)|transparent substance|material|stuff +translunar|2 +(adj)|translunary|superlunar|superlunary|satellite +(adj)|translunary|superlunar|superlunary|heavenly +translunary|2 +(adj)|translunar|superlunar|superlunary|satellite +(adj)|translunar|superlunar|superlunary|heavenly +transmigrante|1 +(noun)|Latin American|Spanish American|peddler|pedlar|packman|hawker|pitchman +transmigrate|2 +(verb)|reincarnate|be born +(verb)|migrate|move +transmigration|1 +(noun)|reincarnation|rebirth +transmissible|3 +(adj)|catching|communicable|contagious|contractable|transmittable|infectious +(adj)|familial|genetic|hereditary|inherited|transmitted|inheritable |heritable +(adj)|ancestral|hereditary|patrimonial|inheritable |heritable +transmission|5 +(noun)|transmittal|transmitting|sending +(noun)|communication|communicating +(noun)|transmittance|coefficient +(noun)|infection|contagion|incident +(noun)|transmission system|gear|gear mechanism +transmission channel|1 +(noun)|channel|transmission +transmission control protocol|1 +(noun)|TCP|protocol|communications protocol +transmission control protocol/internet protocol|1 +(noun)|TCP/IP|protocol|communications protocol +transmission line|1 +(noun)|cable|line|conductor +transmission mechanism|1 +(noun)|mechanism +transmission shaft|1 +(noun)|rotating shaft|shaft +transmission system|1 +(noun)|transmission|gear|gear mechanism +transmission time|1 +(noun)|TRM|coordinated universal time|UTC +transmit|4 +(verb)|convey|communicate|transfer +(verb)|conduct|convey|carry|channel|bring|convey|take +(verb)|air|send|broadcast|beam|publicize|publicise|air|bare +(verb)|transfer|transport|channel|channelize|channelise|move|displace +transmittable|1 +(adj)|catching|communicable|contagious|contractable|transmissible|infectious +transmittal|1 +(noun)|transmission|transmitting|sending +transmittance|1 +(noun)|transmission|coefficient +transmitted|2 +(adj)|sent +(adj)|familial|genetic|hereditary|inherited|transmissible|inheritable |heritable +transmitter|3 +(noun)|sender|communicator +(noun)|vector|agent +(noun)|sender|set +transmitting|1 +(noun)|transmission|transmittal|sending +transmitting aerial|1 +(noun)|antenna|aerial|electrical device +transmogrification|1 +(noun)|transformation|translation +transmogrify|1 +(verb)|metamorphose|transfigure|change by reversal|turn|reverse +transmontane|1 +(adj)|tramontane |transalpine|ultramontane +transmundane|1 +(adj)|supernatural +transmutability|1 +(noun)|commutability|changeableness|changeability +transmutable|1 +(adj)|convertible|transformable|translatable|commutable +transmutation|3 +(noun)|transubstantiation|conversion +(noun)|transformation|shift|change|alteration|modification +(noun)|change|alteration|modification +transmute|3 +(verb)|change|alter|modify +(verb)|transform|metamorphose|change +(verb)|transform|transubstantiate|change|alter|modify +transnational|1 +(adj)|multinational|international +transoceanic|1 +(adj)|body of water|water +transom|2 +(noun)|transom window|fanlight|window +(noun)|traverse|crosspiece +transom window|1 +(noun)|transom|fanlight|window +transonic|1 +(adj)|sonic +transorbital lobotomy|1 +(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy +transparence|2 +(noun)|transparency|physical phenomenon +(noun)|transparency|transparentness|clearness|clarity|uncloudedness +transparency|3 +(noun)|transparence|physical phenomenon +(noun)|transparence|transparentness|clearness|clarity|uncloudedness +(noun)|foil|picture|image|icon|ikon +transparent|4 +(adj)|crystalline|crystal clear|limpid|lucid|pellucid|clear +(adj)|diaphanous|filmy|gauzy|gossamer|see-through|sheer|vaporous|cobwebby|thin +(adj)|guileless|straight +(adj)|obvious +transparent gem|1 +(noun)|gem|gemstone|stone +transparent quartz|1 +(noun)|rock crystal|quartz +transparent substance|1 +(noun)|translucent substance|material|stuff +transparentness|1 +(noun)|transparency|transparence|clearness|clarity|uncloudedness +transpirate|1 +(verb)|transpire|flow|flux +transpiration|3 +(noun)|natural process|natural action|action|activity +(noun)|bodily process|body process|bodily function|activity +(noun)|organic process|biological process +transpire|5 +(verb)|transpirate|flow|flux +(verb)|evaporate|vaporize|vaporise +(verb)|change +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|exude|exudate|transude|ooze out|ooze +transpiring|1 +(adj)|flow|flux +transplacental|1 +(adj)|placental +transplant|7 +(noun)|graft|animal tissue +(noun)|transplantation|organ transplant|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|transplanting|transplantation|movement +(verb)|transfer|displace|force out +(verb)|be +(verb)|graft|insert|infix|enter|introduce +(verb)|transfer|transpose|shift +transplantable|1 +(adj)|mobile +transplantation|3 +(noun)|resettlement|relocation|transportation|transfer|transferral|conveyance +(noun)|transplant|organ transplant|operation|surgery|surgical operation|surgical procedure|surgical process +(noun)|transplant|transplanting|movement +transplanter|1 +(noun)|gardener|nurseryman +transplanting|1 +(noun)|transplant|transplantation|movement +transpolar|1 +(adj)|geographic point|geographical point +transponder|1 +(noun)|electrical device +transport|10 +(noun)|conveyance|instrumentality|instrumentation +(noun)|diffusion +(noun)|transportation|shipping|commercial enterprise|business enterprise|business +(noun)|ecstasy|rapture|exaltation|raptus|emotional state|spirit +(noun)|tape drive|tape transport|mechanism +(verb)|move|displace +(verb)|carry|move|displace +(verb)|enchant|enrapture|enthrall|ravish|enthral|delight|please|delight +(verb)|send|ship|move|displace +(verb)|transmit|transfer|channel|channelize|channelise|move|displace +transport ship|1 +(noun)|ship +transportable|1 +(adj)|movable|moveable|transferable|transferrable|mobile +transportation|6 +(noun)|transportation system|transit|facility|installation +(noun)|transfer|transferral|conveyance|movement +(noun)|fare|charge +(noun)|Department of Transportation|Transportation|DoT|executive department +(noun)|shipping|transport|commercial enterprise|business enterprise|business +(noun)|exile|deportation|expatriation|banishment|proscription +transportation company|1 +(noun)|company +transportation safety administration|1 +(noun)|Transportation Safety Administration|TSA|agency|federal agency|government agency|bureau|office|authority +transportation secretary|2 +(noun)|Secretary of Transportation|Transportation Secretary|secretary +(noun)|Secretary of Transportation|Transportation Secretary|secretaryship +transportation system|1 +(noun)|transportation|transit|facility|installation +transporter|3 +(noun)|car transporter|truck|motortruck +(noun)|crane +(noun)|conveyer belt|conveyor belt|conveyer|conveyor|belt +transposability|1 +(noun)|permutability|permutableness|exchangeability|interchangeability|interchangeableness|fungibility +transposable|1 +(adj)|permutable|exchangeable +transpose|8 +(noun)|matrix +(verb)|permute|commute|change by reversal|turn|reverse +(verb)|transfer|transplant|shift +(verb)|counterchange|interchange|change|alter|modify +(verb)|transfer|shift +(verb)|arrange|set +(verb)|commute|change +(verb)|change|alter|modify +transposed|1 +(adj)|converse|reversed|backward +transposition|7 +(noun)|heterotaxy|abnormality|abnormalcy|abnormal condition +(noun)|substitution|permutation|replacement|switch|variation|fluctuation +(noun)|mutation|genetic mutation|chromosomal mutation +(noun)|calculation|computation|computing +(noun)|rearrangement +(noun)|reversal|reordering +(noun)|playing +transposon|1 +(noun)|jumping gene|deoxyribonucleic acid|desoxyribonucleic acid|DNA +transsexual|3 +(adj)|homosexual +(noun)|transexual|anomaly|unusual person +(noun)|transexual|person|individual|someone|somebody|mortal|human|soul +transsexual surgery|1 +(noun)|sex-change operation|operation|surgery|surgical operation|surgical procedure|surgical process +transsexualism|1 +(noun)|condition +transship|1 +(verb)|transfer|shift +transshipment|1 +(noun)|transportation|transfer|transferral|conveyance +transshipment center|1 +(noun)|entrepot|port +transubstantiate|2 +(verb)|transform|transmute +(verb)|transform|transmute|change|alter|modify +transubstantiation|2 +(noun)|theological doctrine|religious doctrine +(noun)|transmutation|conversion +transudate|1 +(noun)|transudation|discharge|emission +transudation|2 +(noun)|transudate|discharge|emission +(noun)|exudation|seepage|ooze|oozing +transude|1 +(verb)|exude|exudate|ooze out|ooze|excrete|egest|eliminate|pass +transuranic|1 +(adj)|metallic element|metal +transuranic element|1 +(noun)|chemical element|element +transurethral resection of the prostate|1 +(noun)|TURP|resection +transvaal|1 +(noun)|Transvaal|state|province +transvaal daisy|1 +(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy +transvaal kafferboom|1 +(noun)|kaffir boom|Transvaal kafferboom|Erythrina lysistemon|coral tree|erythrina +transversal|1 +(adj)|cross|transverse|thwartwise|crosswise +transversally|1 +(adv)|transversely +transverse|1 +(adj)|cross|transversal|thwartwise|crosswise +transverse colon|1 +(noun)|colon +transverse flute|1 +(noun)|flute|woodwind|woodwind instrument|wood +transverse muscle of abdomen|1 +(noun)|transversus abdominis muscle|musculus transversalis abdominis|transversus abdominis|abdominal|abdominal muscle|ab +transverse process|1 +(noun)|process|outgrowth|appendage +transverse sinus|1 +(noun)|sinus transversus|venous sinus|sinus +transversely|1 +(adv)|transversally +transversus abdominis|1 +(noun)|transversus abdominis muscle|transverse muscle of abdomen|musculus transversalis abdominis|abdominal|abdominal muscle|ab +transversus abdominis muscle|1 +(noun)|transverse muscle of abdomen|musculus transversalis abdominis|transversus abdominis|abdominal|abdominal muscle|ab +transvestic|1 +(adj)|transvestite|homosexual +transvestism|1 +(noun)|transvestitism|cross dressing|practice|pattern +transvestite|2 +(adj)|transvestic|homosexual +(noun)|cross-dresser|person|individual|someone|somebody|mortal|human|soul +transvestitism|1 +(noun)|transvestism|cross dressing|practice|pattern +tranylcypromine|1 +(noun)|monoamine oxidase inhibitor|MAOI +trap|12 +(noun)|device +(noun)|drain|drainpipe|waste pipe +(noun)|snare|design|plan +(noun)|mechanical device +(noun)|ambush|ambuscade|lying in wait|surprise attack|coup de main +(noun)|cakehole|hole|maw|yap|gob|mouth|oral cavity|oral fissure|rima oris +(noun)|carriage|equipage|rig +(noun)|bunker|sand trap|hazard +(verb)|confine|detain +(verb)|entrap|snare|ensnare|trammel|capture|catch +(verb)|hold|take hold +(verb)|pin|immobilize|immobilise +trap-and-drain auger|1 +(noun)|snake +trap-door spider|1 +(noun)|spider +trap block|1 +(noun)|blocking|block|interference +trap door|1 +(noun)|door +trap line|1 +(noun)|line +trap play|1 +(noun)|mousetrap|maneuver|manoeuvre|play +trapa|1 +(noun)|Trapa|genus Trapa|dicot genus|magnoliopsid genus +trapa bicornis|1 +(noun)|ling|ling ko|Trapa bicornis|water chestnut|water chestnut plant|caltrop +trapa natans|1 +(noun)|water caltrop|Jesuits' nut|Trapa natans|water chestnut|water chestnut plant|caltrop +trapaceae|1 +(noun)|Trapaceae|family Trapaceae|dicot family|magnoliopsid family +trapeze|1 +(noun)|swing +trapezium|3 +(noun)|quadrilateral|quadrangle|tetragon +(noun)|Trapezium|the Trapezium|multiple star +(noun)|trapezium bone|os trapezium|carpal bone|carpal|wrist bone +trapezium bone|1 +(noun)|trapezium|os trapezium|carpal bone|carpal|wrist bone +trapezius|1 +(noun)|trapezius muscle|cowl muscle|musculus trapezius|skeletal muscle|striated muscle +trapezius muscle|1 +(noun)|trapezius|cowl muscle|musculus trapezius|skeletal muscle|striated muscle +trapezohedron|1 +(noun)|polyhedron +trapezoid|2 +(noun)|quadrilateral|quadrangle|tetragon +(noun)|trapezoid bone|os trapezoideum|carpal bone|carpal|wrist bone +trapezoid bone|1 +(noun)|trapezoid|os trapezoideum|carpal bone|carpal|wrist bone +trapezoidal|1 +(adj)|quadrilateral|quadrangle|tetragon +trapped|1 +(adj)|at bay|cornered|treed|unfree +trapper|1 +(noun)|hunter|huntsman +trapper's tea|1 +(noun)|glandular Labrador tea|shrub|bush +trapping|1 +(noun)|caparison|trappings|housing|housings|stable gear|saddlery|tack +trappings|3 +(noun)|furnishings|accessory|accoutrement|accouterment +(noun)|caparison|trapping|housing|housings|stable gear|saddlery|tack +(noun)|caparison|trapping|housing|housings|stable gear|saddlery|tack +trappist|1 +(noun)|Trappist|Cistercian|monk|monastic +trapshooter|1 +(noun)|shot|shooter +trapshooting|1 +(noun)|skeet|skeet shooting|shoot +trash|6 +(noun)|rubbish|scrap|waste|waste material|waste matter|waste product +(noun)|scum|rabble|riffraff|ragtag|ragtag and bobtail +(noun)|folderol|rubbish|tripe|trumpery|wish-wash|applesauce|codswallop|drivel|garbage +(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|amphetamine|pep pill|upper|speed|controlled substance +(verb)|junk|scrap|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|pan|tear apart|disparage|belittle|pick at +trash barrel|1 +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash bin|bin +trash bin|1 +(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|bin +trash can|1 +(noun)|ashcan|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +trash collection|1 +(noun)|garbage collection|garbage pickup|trash pickup|pickup +trash dump|1 +(noun)|dump|garbage dump|rubbish dump|wasteyard|waste-yard|dumpsite|site|land site +trash heap|1 +(noun)|garbage heap|junk heap|rubbish heap|scrapheap|junk pile|trash pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +trash pickup|1 +(noun)|garbage collection|garbage pickup|trash collection|pickup +trash pile|1 +(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|junk pile|refuse heap|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite +trashiness|1 +(noun)|shoddiness|worthlessness +trashy|2 +(adj)|rubbishy|worthless +(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|tasteless +trasimeno|1 +(noun)|Trasimeno|battle of Trasimeno|pitched battle +traubel|1 +(noun)|Traubel|Helen Traubel|soprano +trauma|2 +(noun)|injury|hurt|harm|ill health|unhealthiness|health problem +(noun)|psychic trauma|psychological state|mental state +traumatic|3 +(adj)|ill health|unhealthiness|health problem +(adj)|painful +(adj)|stabbing|wounding|harmful +traumatic epilepsy|1 +(noun)|posttraumatic epilepsy|epilepsy +traumatise|1 +(verb)|traumatize|shock|injure|wound +traumatize|1 +(verb)|traumatise|shock|injure|wound +traumatology|1 +(noun)|accident surgery|medicine|medical specialty +traumatophobia|1 +(noun)|social phobia +trautvetteria|1 +(noun)|Trautvetteria|genus Trautvetteria|magnoliid dicot genus +trautvetteria carolinensis|1 +(noun)|false bugbane|Trautvetteria carolinensis|herb|herbaceous plant +travail|3 +(noun)|parturiency|labor|labour|confinement|lying-in|childbed|parturition|birth|giving birth|birthing +(noun)|effort|elbow grease|exertion|sweat|labor|labour|toil +(verb)|labor|labour|toil|fag|grind|drudge|dig|moil|work|do work +trave|1 +(noun)|traverse|crossbeam|crosspiece|beam +travel|9 +(noun)|traveling|travelling|motion|movement|move +(noun)|change of location|movement|motion +(noun)|locomotion|motion|movement|move +(verb)|go|move|locomote +(verb)|journey|trip|jaunt +(verb)|trip|jaunt +(verb)|journey|go|move|locomote +(verb)|go|move|locomote +(verb)|move around|go|move|locomote +travel-soiled|1 +(adj)|travel-stained|dirty |soiled|unclean +travel-stained|1 +(adj)|travel-soiled|dirty |soiled|unclean +travel-worn|1 +(adj)|tired +travel agency|1 +(noun)|agency +travel agent|1 +(noun)|agent|factor|broker +travel allowance|1 +(noun)|allowance +travel along|1 +(verb)|follow|travel|go|move|locomote +travel and entertainment account|1 +(noun)|expense account|account|accounting|account statement +travel back and forth|1 +(verb)|commute|travel|trip|jaunt +travel bargain|1 +(noun)|bargain|buy|steal +travel by|1 +(verb)|pass by|surpass|go past|go by|pass|travel|go|move|locomote +travel expense|1 +(noun)|expense +travel guidebook|1 +(noun)|itinerary|guidebook|guide +travel iron|1 +(noun)|iron|smoothing iron +travel kit|1 +(noun)|toilet kit|kit +travel plan|1 +(noun)|itinerary|plan of action +travel purposefully|1 +(verb)|travel|go|move|locomote +travel rapidly|1 +(verb)|speed|hurry|zip|travel|go|move|locomote +travel time|1 +(noun)|time period|period of time|period +travel to|1 +(verb)|visit|travel|trip|jaunt +travelable|1 +(adj)|traversable|passable +traveled|2 +(adj)|traveled |heavily traveled +(adj)|travelled|cosmopolitan +traveler|1 +(noun)|traveller|person|individual|someone|somebody|mortal|human|soul +traveler's check|1 +(noun)|traveller's check|banker's check|traveler's letter of credit|traveller's letter of credit +traveler's joy|1 +(noun)|traveller's joy|old man's beard|Clematis vitalba|clematis +traveler's letter of credit|1 +(noun)|traveller's letter of credit|letter of credit +traveler's tree|1 +(noun)|traveller's tree|ravenala|Ravenala madagascariensis|woody plant|ligneous plant +traveling|2 +(adj)|itinerant|road|touring|moving +(noun)|travel|travelling|motion|movement|move +traveling bag|1 +(noun)|bag|grip|suitcase|baggage|luggage +traveling salesman|1 +(noun)|travelling salesman|commercial traveler|commercial traveller|roadman|bagman|salesman|spokesperson|interpreter|representative|voice +traveling wave|1 +(noun)|wave|undulation +travelled|1 +(adj)|traveled|cosmopolitan +traveller|1 +(noun)|traveler|person|individual|someone|somebody|mortal|human|soul +traveller's check|1 +(noun)|traveler's check|banker's check|traveler's letter of credit|traveller's letter of credit +traveller's joy|1 +(noun)|traveler's joy|old man's beard|Clematis vitalba|clematis +traveller's letter of credit|1 +(noun)|traveler's letter of credit|letter of credit +traveller's tree|1 +(noun)|traveler's tree|ravenala|Ravenala madagascariensis|woody plant|ligneous plant +travelling|1 +(noun)|travel|traveling|motion|movement|move +travelling salesman|1 +(noun)|traveling salesman|commercial traveler|commercial traveller|roadman|bagman|salesman|spokesperson|interpreter|representative|voice +travelog|1 +(noun)|travelogue|attraction +travelogue|1 +(noun)|travelog|attraction +traversable|1 +(adj)|travelable|passable +traversal|2 +(noun)|traverse|crossing +(noun)|traverse|peregrination +traverse|7 +(noun)|trave|crossbeam|crosspiece|beam +(noun)|transom|crosspiece +(noun)|traversal|crossing +(noun)|traversal|peregrination +(verb)|track|cover|cross|pass over|get over|get across|cut through|cut across|pass|go through|go across +(verb)|cross|span|sweep|cover|extend +(verb)|deny +traverse city|1 +(noun)|Traverse City|town +traverser|1 +(noun)|mover +travesty|3 +(noun)|farce|farce comedy|comedy +(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|charade|pasquinade|put-on|caricature|imitation|impersonation +(verb)|spoof|burlesque|parody +trawl|3 +(noun)|trawl line|spiller|setline|trotline|fishing line +(noun)|dragnet|trawl net|fishnet|fishing net +(verb)|fish +trawl line|1 +(noun)|trawl|spiller|setline|trotline|fishing line +trawl net|1 +(noun)|trawl|dragnet|fishnet|fishing net +trawler|2 +(noun)|fisherman|fisher +(noun)|dragger|fishing boat|fishing smack|fishing vessel +tray|1 +(noun)|receptacle +tray cloth|1 +(noun)|table linen|napery +trazodone|1 +(noun)|trazodone hydrochloride|Desyrel|nontricyclic|nontricyclic drug|nontricyclic antidepressant|nontricyclic antidepressant drug +trazodone hydrochloride|1 +(noun)|trazodone|Desyrel|nontricyclic|nontricyclic drug|nontricyclic antidepressant|nontricyclic antidepressant drug +treacherous|2 +(adj)|unreliable|dangerous |unsafe +(adj)|punic|perfidious|unfaithful +treacherously|1 +(adv)|faithlessly|traitorously|treasonably|false +treachery|2 +(noun)|perfidy|perfidiousness|disloyalty +(noun)|betrayal|treason|perfidy|dishonesty|knavery +treacle|2 +(noun)|golden syrup|syrup|sirup +(noun)|mush|sentimentalism +treacly|1 +(adj)|cloying|saccharine|syrupy|sweet +tread|10 +(noun)|pace|stride|step +(noun)|surface +(noun)|contact|tangency +(noun)|structural member +(verb)|step|travel|go|move|locomote +(verb)|trample|walk +(verb)|squash|crush|squelch|mash|squeeze +(verb)|brace +(verb)|give|apply +(verb)|copulate|mate|pair|couple +tread-softly|1 +(noun)|spurge nettle|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb|herbaceous plant +tread-wheel|2 +(noun)|treadmill|treadwheel|mill|grinder +(noun)| +tread down|1 +(verb)|tramp down|trample|walk +tread on|1 +(verb)|step on|step|tread +treading water|1 +(noun)|swimming stroke +treadle|3 +(noun)|pedal|foot pedal|foot lever|lever +(verb)|tread|trample +(verb)|operate|control +treadmill|3 +(noun)|exercise device +(noun)|treadwheel|tread-wheel|mill|grinder +(noun)|salt mine|occupation|business|job|line of work|line +treadmill test|1 +(noun)|stress test +treadwheel|1 +(noun)|treadmill|tread-wheel|mill|grinder +treason|3 +(noun)|high treason|lese majesty|crime|law-breaking +(noun)|subversiveness|traitorousness|disloyalty +(noun)|treachery|betrayal|perfidy|dishonesty|knavery +treasonable|1 +(adj)|traitorous|treasonous|disloyal +treasonably|1 +(adv)|faithlessly|traitorously|treacherously|false +treasonist|1 +(noun)|traitor|criminal|felon|crook|outlaw|malefactor +treasonous|1 +(adj)|traitorous|treasonable|disloyal +treasure|6 +(noun)|hoarded wealth|wealth|riches +(noun)|gem|art|fine art +(noun)|possession +(noun)|collection|aggregation|accumulation|assemblage +(verb)|prize|value|appreciate|see|consider|reckon|view|regard +(verb)|care for|cherish|hold dear|love +treasure chest|1 +(noun)|chest +treasure flower|1 +(noun)|Gazania rigens|gazania +treasure house|1 +(noun)|storehouse|depot|entrepot|storage|store +treasure hunt|1 +(noun)|game +treasure ship|1 +(noun)|ship +treasure state|1 +(noun)|Montana|Treasure State|MT|American state +treasure trove|2 +(noun)|trove|treasure|hoarded wealth +(noun)|collection|aggregation|accumulation|assemblage +treasured|1 +(adj)|cherished|precious|wanted|loved +treasurer|1 +(noun)|financial officer|money handler|money dealer +treasurer's check|1 +(noun)|cashier's check|cashier's cheque|treasurer's cheque|check|bank check|cheque +treasurer's cheque|1 +(noun)|cashier's check|treasurer's check|cashier's cheque|check|bank check|cheque +treasurership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +treasuries|6 +(noun)|Treasuries|Treasury obligations|government bond +(noun)|treasury|exchequer|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|treasury|government department +(noun)|Treasury|First Lord of the Treasury|cabinet minister +(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department +(noun)|treasury|depository|deposit|repository +treasury|5 +(noun)|exchequer|funds|finances|monetary resource|cash in hand|pecuniary resource +(noun)|government department +(noun)|Treasury|First Lord of the Treasury|cabinet minister +(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department +(noun)|depository|deposit|repository +treasury bill|1 +(noun)|Treasury bill|T-bill|Treasuries|Treasury obligations +treasury bond|1 +(noun)|Treasury bond|Treasuries|Treasury obligations +treasury department|1 +(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department +treasury note|1 +(noun)|Treasury note|Treasuries|Treasury obligations +treasury obligations|1 +(noun)|Treasuries|Treasury obligations|government bond +treasury secretary|2 +(noun)|Secretary of the Treasury|Treasury Secretary|secretary +(noun)|Secretary of the Treasury|Treasury Secretary|secretaryship +treasury shares|1 +(noun)|treasury stock|reacquired stock|stock +treasury stock|1 +(noun)|treasury shares|reacquired stock|stock +treat|10 +(noun)|dainty|delicacy|goody|kickshaw|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +(noun)|happening|occurrence|natural event +(verb)|handle|do by|interact +(verb)|process|affect|impact|bear upon|bear on|touch on|touch +(verb)|care for +(verb)|cover|handle|plow|deal|address|broach|initiate +(verb)|give|gift|present +(verb)|regale|provide|supply|ply|cater +(verb)|negociate +(verb)|react|respond +treated|4 +(adj)|treated |activated|aerated|burned|burnt|doped|fumed|proofed|processed +(adj)|stained +(adj)|treated |bandaged|bound|dosed|dressed +(adj)|tempered |hardened|toughened|annealed|baked|burned|burnt|curable|sunbaked +treater|1 +(noun)|negotiator|negotiant|communicator +treatise|1 +(noun)|writing|written material|piece of writing +treatment|4 +(noun)|care|attention|aid|tending +(noun)|handling|management|direction +(noun)|artistic style|idiom +(noun)|discussion|discourse|communication|communicating +treaty|1 +(noun)|pact|accord|written agreement +treaty of versailles|1 +(noun)|Treaty of Versailles|peace|peace treaty|pacification +treaty port|1 +(noun)|port +treble|7 +(adj)|soprano|high |high-pitched +(adj)|threefold|triple|multiple +(adj)|ternary|triple|triplex|multiple +(adj)|double|dual|twofold|threefold|multiple +(noun)|soprano|high pitch|high frequency +(verb)|sing +(verb)|triple|multiply|manifold +treble clef|1 +(noun)|G clef|clef +treble damages|1 +(noun)|punitive damages|exemplary damages|smart money +treble recorder|1 +(noun)|flageolet|shepherd's pipe|fipple flute|fipple pipe|recorder|vertical flute +trebuchet|1 +(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|onager|trebucket|artillery|heavy weapon|gun|ordnance +trebucket|1 +(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|onager|trebuchet|artillery|heavy weapon|gun|ordnance +treck|1 +(verb)|hike +tree|4 +(noun)|woody plant|ligneous plant +(noun)|tree diagram|plane figure|two-dimensional figure +(noun)|Tree|Sir Herbert Beerbohm Tree|actor|histrion|player|thespian|role player|theatrical producer +(verb)|hunt|run|hunt down|track down +tree-frog|3 +(noun)|tree toad|tree frog|frog|toad|toad frog|anuran|batrachian|salientian +(noun)|tree frog|frog|toad|toad frog|anuran|batrachian|salientian +(noun)| +tree-living|1 +(adj)|arboreal |arboreous +tree-shaped|1 +(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|branchy +tree-worship|1 +(noun)|arborolatry|worship +tree branch|1 +(noun)|limb|branch +tree celandine|1 +(noun)|bocconia|Bocconia frutescens|angiospermous tree|flowering tree +tree clubmoss|1 +(noun)|ground fir|princess pine|Lycopodium obscurum|ground pine|Christmas green +tree cotton|2 +(noun)|sea island cotton|Gossypium barbadense|cotton|cotton plant +(noun)|Gossypium arboreum|cotton|cotton plant +tree creeper|2 +(noun)|creeper|oscine|oscine bird +(noun)|woodhewer|woodcreeper|wood-creeper|tyrannid +tree cricket|1 +(noun)|cricket +tree diagram|1 +(noun)|tree|plane figure|two-dimensional figure +tree farm|1 +(noun)|forest|woodland|timberland|timber +tree farmer|1 +(noun)|forester|arboriculturist|farmer|husbandman|granger|sodbuster +tree farming|1 +(noun)|arboriculture|farming|agriculture|husbandry +tree fern|1 +(noun)|fern +tree frog|3 +(noun)|tree toad|tree-frog|frog|toad|toad frog|anuran|batrachian|salientian +(noun)|tree-frog|frog|toad|toad frog|anuran|batrachian|salientian +(noun)| +tree fuchsia|1 +(noun)|konini|native fuchsia|Fuchsia excorticata|fuchsia +tree heath|2 +(noun)|grass tree|Richea pandanifolia|Australian heath +(noun)|briar|brier|Erica arborea|erica|true heath +tree house|1 +(noun)|playhouse|wendy house +tree hugger|1 +(noun)|environmentalist|conservationist +tree kangaroo|1 +(noun)|tree wallaby|wallaby|brush kangaroo +tree line|1 +(noun)|timber line|timberline|line +tree lizard|1 +(noun)|Urosaurus ornatus|iguanid|iguanid lizard +tree lupine|1 +(noun)|Lupinus arboreus|shrub|bush +tree mallow|1 +(noun)|velvetleaf|velvet-leaf|Lavatera arborea|shrub|bush +tree martin|1 +(noun)|tree swallow|Hirundo nigricans|swallow +tree of heaven|1 +(noun)|tree of the gods|Ailanthus altissima|ailanthus +tree of knowledge|1 +(noun)|tree +tree of the gods|1 +(noun)|tree of heaven|Ailanthus altissima|ailanthus +tree onion|1 +(noun)|Egyptian onion|top onion|Allium cepa viviparum|onion|onion plant|Allium cepa +tree poppy|1 +(noun)|bush poppy|shrub|bush +tree shrew|1 +(noun)|placental|placental mammal|eutherian|eutherian mammal +tree sloth|1 +(noun)|sloth|edentate +tree sparrow|2 +(noun)|Passer montanus|sparrow|true sparrow +(noun)|Spizella arborea|New World sparrow +tree squirrel|1 +(noun)|squirrel +tree stump|1 +(noun)|stump|plant part|plant structure +tree surgeon|1 +(noun)|arborist|specialist|specializer|specialiser +tree surgery|1 +(noun)|care|attention|aid|tending +tree swallow|2 +(noun)|white-bellied swallow|Iridoprocne bicolor|swallow +(noun)|tree martin|Hirundo nigricans|swallow +tree swift|1 +(noun)|crested swift|apodiform bird +tree toad|1 +(noun)|tree frog|tree-frog|frog|toad|toad frog|anuran|batrachian|salientian +tree tobacco|1 +(noun)|mustard tree|Nicotiana glauca|tobacco +tree tomato|1 +(noun)|tamarillo|shrub|bush +tree trunk|1 +(noun)|trunk|bole|stalk|stem +tree wallaby|1 +(noun)|tree kangaroo|wallaby|brush kangaroo +treed|1 +(adj)|at bay|cornered|trapped|unfree +treehopper|1 +(noun)|plant hopper|planthopper +treeless|1 +(adj)|unwooded |unforested|untimbered|cleared +treelet|1 +(noun)|tree +treelike|1 +(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|tree-shaped|branchy +treenail|1 +(noun)|trenail|trunnel|peg|nog +treetop|1 +(noun)|crown|capitulum|top +tref|1 +(adj)|nonkosher|terefah|unclean |impure +trefoil|3 +(noun)|medic|medick|herb|herbaceous plant +(noun)|clover|herb|herbaceous plant +(noun)|architectural ornament +trefoil arch|1 +(noun)|pointed arch +treillage|1 +(noun)|trellis|lattice|latticework|fretwork +trek|4 +(noun)|journey|journeying +(noun)|trip +(verb)|travel|journey +(verb)|travel|journey +trekker|1 +(noun)|traveler|traveller +trellis|2 +(noun)|treillage|lattice|latticework|fretwork +(verb)|train +trema|1 +(noun)|Trema|genus Trema|dicot genus|magnoliopsid genus +trematoda|1 +(noun)|Trematoda|class Trematoda|class +trematode|1 +(noun)|fluke|trematode worm|flatworm|platyhelminth +trematode worm|1 +(noun)|fluke|trematode|flatworm|platyhelminth +tremble|2 +(noun)|shiver|shake|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|shake|agitate +trembler|1 +(noun)|quaker|coward +trembles|2 +(noun)|milk sickness|animal disease +(noun)|tremble|shiver|shake|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +trembling|2 +(adj)|quaking|quivering|shaking|shaky|shivering|unsteady +(noun)|shaking|shakiness|quiver|quivering|vibration|palpitation|motion +tremella|1 +(noun)|Tremella|genus Tremella|fungus genus +tremella foliacea|1 +(noun)|Tremella foliacea|jelly fungus +tremella fuciformis|1 +(noun)|snow mushroom|Tremella fuciformis|jelly fungus +tremella lutescens|1 +(noun)|witches' butter|Tremella lutescens|jelly fungus +tremella reticulata|1 +(noun)|Tremella reticulata|jelly fungus +tremellaceae|1 +(noun)|Tremellaceae|family Tremellaceae|fungus family +tremellales|1 +(noun)|Tremellales|order Tremellales|fungus order +tremendous|2 +(adj)|enormous|large +(adj)|fantastic|howling|marvelous|marvellous|rattling|terrific|wonderful|wondrous|extraordinary +tremendously|1 +(adv)|enormously|hugely|staggeringly +tremolite|1 +(noun)|asbestos +tremolo|2 +(noun)|shaking|shakiness|trembling|quiver|quivering|vibration|palpitation +(noun)|vibrato +tremor|4 +(noun)|shudder|vibration|quiver|quivering +(noun)|earth tremor|microseism|earthquake|quake|temblor|seism +(noun)|shaking|shakiness|trembling|quiver|quivering|vibration|palpitation +(verb)|quake|shake|agitate +tremulous|1 +(adj)|quavering|unsteady +trenail|1 +(noun)|treenail|trunnel|peg|nog +trench|9 +(noun)|ditch +(noun)|deep|oceanic abyss|natural depression|depression +(noun)|ditch +(verb)|impinge|encroach|entrench|trespass|take advantage +(verb)|fortify|fort +(verb)|cut +(verb)|put|set|place|pose|position|lay +(verb)|ditch|excavate|dig|hollow +(verb)|dig|dig out +trench coat|1 +(noun)|raincoat|waterproof +trench fever|1 +(noun)|rickettsial disease|rickettsiosis +trench foot|1 +(noun)|immersion foot|frostbite|cryopathy +trench knife|1 +(noun)|knife +trench mortar|1 +(noun)|mortar|howitzer|high-angle gun +trench mouth|1 +(noun)|Vincent's angina|Vincent's infection|contagious disease|contagion|angina +trenchancy|1 +(noun)|incisiveness|effectiveness|effectivity|effectualness|effectuality +trenchant|3 +(adj)|searching|intelligent +(adj)|hard-hitting|effective |effectual|efficacious +(adj)|clear-cut|distinct|clear +trencher|2 +(noun)|digger +(noun)|board +trencherman|1 +(noun)|glutton|gourmand|eater|feeder +trenching spade|1 +(noun)|entrenching tool|hand shovel +trend|5 +(noun)|tendency|direction|way +(noun)|course|direction|way +(noun)|drift|movement|inclination|disposition|tendency +(noun)|vogue|style|taste|appreciation|discernment|perceptiveness +(verb)|swerve|sheer|curve|veer|slue|slew|cut|turn +trend-setter|1 +(noun)|taste-maker|fashion arbiter|model|role model +trend analysis|1 +(noun)|analysis|analytic thinking +trend line|1 +(noun)|line +trend setting|1 +(noun)|leadership|leading +trendsetting|1 +(adj)|fashionable |stylish +trendy|1 +(adj)|voguish|fashionable |stylish +trent|1 +(noun)|Trent|River Trent|Trent River|river +trent river|1 +(noun)|Trent|River Trent|Trent River|river +trental|1 +(noun)|pentoxifylline|Trental|drug +trente-et-quarante|1 +(noun)|rouge et noir|card game|cards +trentino-alto adige|1 +(noun)|Trentino-Alto Adige|Italian region +trento|1 +(noun)|Trento|city|metropolis|urban center +trenton|1 +(noun)|Trenton|capital of New Jersey|state capital +trepan|3 +(noun)|trephine|surgical instrument +(noun)|drill +(verb)|bore|drill +trepang|1 +(noun)|Holothuria edulis|sea cucumber|holothurian +trephination|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +trephine|2 +(noun)|trepan|surgical instrument +(verb)|operate on|operate +trephritidae|1 +(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family +trepid|1 +(adj)|fearful|timorous|timid +trepidation|1 +(noun)|apprehension|apprehensiveness|dread +trepidly|1 +(adv)|timorously +treponema|1 +(noun)|spirochete|spirochaete +treponemataceae|1 +(noun)|Treponemataceae|family Treponemataceae|bacteria family +trespass|7 +(noun)|tort|civil wrong +(noun)|encroachment|violation|intrusion|usurpation|wrongdoing|wrongful conduct|misconduct|actus reus +(verb)|intrude|transgress|offend|infract|violate|go against|breach|break +(verb)|take advantage|use +(verb)|transgress|offend|infract|violate|go against|breach|break +(verb)|sin|transgress|transgress|offend|infract|violate|go against|breach|break +(verb)|transgress|overstep|pass|go through|go across +trespass de bonis asportatis|1 +(noun)|trespass +trespass on the case|1 +(noun)|trespass +trespass quare clausum fregit|1 +(noun)|trespass +trespass viet armis|1 +(noun)|trespass +trespasser|1 +(noun)|intruder|interloper|entrant|unwelcome person|persona non grata +trespassing|1 +(adj)|encroaching|invasive|intrusive +tress|1 +(noun)|braid|plait|twist|hairdo|hair style|coiffure +trestle|2 +(noun)|supporting tower +(noun)|sawhorse|horse|sawbuck|buck +trestle bridge|1 +(noun)|bridge|span +trestle table|1 +(noun)|table +trestlework|1 +(noun)|structure|construction +trevelyan|2 +(noun)|Trevelyan|George Macaulay Trevelyan|historian|historiographer +(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian|historiographer +trevino|1 +(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer|golf player|linksman +trevithick|1 +(noun)|Trevithick|Richard Trevithick|engineer|applied scientist|technologist +trews|1 +(noun)|trousers|pants +trey|2 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|deuce-ace|digit|figure +(noun)|playing card +trf|1 +(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone|endocrine|internal secretion +trh|1 +(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone|endocrine|internal secretion +tri-chad|1 +(noun)|chad +tri-iodomethane|2 +(noun)|iodoform|haloform +(noun)|iodoform|triiodomethane|antiseptic +tri-iodothyronine|2 +(noun)|iodothyronine +(noun)|triiodothyronine|liothyronine|T|thyroid hormone +triacetate|1 +(noun)|cellulose triacetate|cellulose acetate +triad|4 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|trio|triplet|set +(noun)|trio|threesome|trinity|gathering|assemblage +(noun)|common chord|chord +triaenodon|1 +(noun)|Triaenodon|genus Triaenodon|fish genus +triaenodon obseus|1 +(noun)|whitetip shark|reef whitetip shark|Triaenodon obseus|smooth dogfish +triage|1 +(noun)|sorting +triakidae|1 +(noun)|Triakidae|family Triakidae|fish family +trial|7 +(noun)|proceeding|legal proceeding|proceedings +(noun)|test|run|attempt|effort|endeavor|endeavour|try +(noun)|contest|competition +(noun)|proceeding|legal proceeding|proceedings +(noun)|trial run|test|tryout|experiment|experimentation +(noun)|tribulation|visitation|affliction +(noun)|test|attempt|effort|endeavor|endeavour|try +trial-and-error|2 +(adj)|empirical |empiric +(adj)|heuristic +trial and error|1 +(noun)|experiment|experimentation +trial attorney|1 +(noun)|trial lawyer|lawyer|attorney +trial balance|1 +(noun)|balance +trial balloon|2 +(noun)|trial|trial run|test|tryout +(noun)|balloon +trial by ordeal|1 +(noun)|ordeal|trial +trial court|1 +(noun)|court|tribunal|judicature +trial impression|1 +(noun)|proof|test copy|impression|printing +trial judge|1 +(noun)|judge|justice|jurist|magistrate +trial lawyer|1 +(noun)|trial attorney|lawyer|attorney +trial period|1 +(noun)|test period|time period|period of time|period +trial run|1 +(noun)|trial|test|tryout|experiment|experimentation +trialeurodes|1 +(noun)|Trialeurodes|genus Trialeurodes|arthropod genus +trialeurodes vaporariorum|1 +(noun)|greenhouse whitefly|Trialeurodes vaporariorum|whitefly +triamcinolone|1 +(noun)|Aristocort|Aristopak|Kenalog|corticosteroid|corticoid|adrenal cortical steroid +triangle|4 +(noun)|trigon|trilateral|polygon|polygonal shape +(noun)|shape|form +(noun)|drafting instrument +(noun)|percussion instrument|percussive instrument +triangular|3 +(adj)|angular |angulate +(adj)|trilateral|tripartite|three-party|three-way|multilateral |many-sided +(adj)|trilateral|three-sided|multilateral |many-sided +triangular bandage|1 +(noun)|sling|scarf bandage|bandage|patch +triangular prism|1 +(noun)|prism +triangularity|1 +(noun)|angularity +triangulate|4 +(adj)|polygon|polygonal shape +(verb)|divide|split|split up|separate|dissever|carve up +(verb)|measure|mensurate|measure out +(verb)|survey +triangulation|2 +(noun)|trigonometry|trig +(noun)|surveying +triangulum|1 +(noun)|Triangulum|the Triangle|constellation +triangulum australe|1 +(noun)|Triangulum Australe|Southern Triangle|constellation +triassic|1 +(noun)|Triassic|Triassic period|period|geological period +triassic period|1 +(noun)|Triassic|Triassic period|period|geological period +triatoma|1 +(noun)|Triatoma|genus Triatoma|arthropod genus +triavil|1 +(noun)|perphenazine|Triavil|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +triazine|1 +(noun)|compound|chemical compound +triazolam|1 +(noun)|Halcion|benzodiazepine +tribade|1 +(noun)|lesbian|gay woman|homosexual|homo|gay +tribadism|1 +(noun)|lesbianism|sapphism +tribadistic|1 +(adj)|homosexual +tribal|1 +(adj)|social group +tribal chief|1 +(noun)|headman|chieftain|leader +tribal sheik|1 +(noun)|sheik|sheikh|tribal sheikh|Arab chief|ruler|swayer +tribal sheikh|1 +(noun)|sheik|tribal sheik|sheikh|Arab chief|ruler|swayer +tribal society|1 +(noun)|society +tribalisation|1 +(noun)|tribalization|union|unification|uniting|conjugation|jointure +tribalism|2 +(noun)|state +(noun)|belief +tribalization|1 +(noun)|tribalisation|union|unification|uniting|conjugation|jointure +tribasic acid|1 +(noun)|acid +tribasic sodium phosphate|1 +(noun)|trisodium phosphate|trisodium orthophosphate|builder|detergent builder +tribe|4 +(noun)|folk|social group +(noun)|federation of tribes|nation +(noun)|taxonomic group|taxonomic category|taxon +(noun)|kin|kin group|kinship group|kindred|clan|social group +tribe bambuseae|1 +(noun)|Bambuseae|tribe Bambuseae|tribe +tribe bovini|1 +(noun)|Bovini|tribe Bovini|tribe +tribe bubalus|1 +(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus +tribe synercus|1 +(noun)|Synercus|genus Synercus|mammal genus +tribes of israel|1 +(noun)|Tribes of Israel|Twelve Tribes of Israel|kin|kin group|kinship group|kindred|clan|tribe +tribesman|1 +(noun)|member +tribolium|1 +(noun)|Tribolium|genus Tribolium|arthropod genus +tribologist|1 +(noun)|mechanical engineer +tribology|1 +(noun)|mechanical engineering +tribonema|1 +(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus +tribonemaceae|1 +(noun)|Tribonemaceae|family Tribonemaceae|protoctist family +tribromoethanol|1 +(noun)|tribromoethyl alcohol|intravenous anesthetic +tribromoethyl alcohol|1 +(noun)|tribromoethanol|intravenous anesthetic +tribromomethane|1 +(noun)|bromoform|haloform +tribulate|1 +(verb)|afflict +tribulation|1 +(noun)|trial|visitation|affliction +tribulus|1 +(noun)|Tribulus|genus Tribulus|rosid dicot genus +tribulus terestris|1 +(noun)|caltrop|devil's weed|Tribulus terestris|subshrub|suffrutex +tribunal|1 +(noun)|court|judicature|assembly +tribune|1 +(noun)|apse|apsis +tribuneship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +tributary|4 +(adj)|secondary +(adj)|obligated +(adj)|conducive|contributing|contributive|contributory|causative +(noun)|feeder|affluent|branch +tribute|3 +(noun)|testimonial|approval|commendation +(noun)|payment|defrayal|defrayment +(noun)|protection|extortion +tribute album|1 +(noun)|benefit album|concept album +tributyrin|1 +(noun)|butyrin +tricarboxylic acid cycle|1 +(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|organic process|biological process +trice|3 +(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|twinkling|wink|New York minute|moment|minute|second|bit +(verb)|trice up|raise|lift|elevate|get up|bring up +(verb)|trice up|hoist|lift|wind +trice up|2 +(verb)|trice|raise|lift|elevate|get up|bring up +(verb)|trice|hoist|lift|wind +tricentenary|1 +(adj)|tricentennial|anniversary|day of remembrance|anniversary|day of remembrance|anniversary|day of remembrance +tricentennial|1 +(adj)|tricentenary|anniversary|day of remembrance|anniversary|day of remembrance|anniversary|day of remembrance +triceps|1 +(noun)|skeletal muscle|striated muscle +triceps brachii|1 +(noun)|musculus triceps brachii|triceps +triceratops|1 +(noun)|ceratopsian|horned dinosaur +trichechidae|1 +(noun)|Trichechidae|family Trichechidae|mammal family +trichechus|1 +(noun)|Trichechus|genus Trichecus|mammal genus +trichechus manatus|1 +(noun)|manatee|Trichechus manatus|sea cow|sirenian mammal|sirenian +trichina|1 +(noun)|Trichinella spiralis|nematode|nematode worm|roundworm +trichinella spiralis|1 +(noun)|trichina|Trichinella spiralis|nematode|nematode worm|roundworm +trichiniasis|1 +(noun)|trichinosis|myositis trichinosa|myositis|infestation +trichinosis|1 +(noun)|trichiniasis|myositis trichinosa|myositis|infestation +trichion|1 +(noun)|crinion|point +trichiuridae|1 +(noun)|Trichiuridae|family Trichiuridae|fish family +trichloracetic acid|1 +(noun)|trichloroacetic acid|acetic acid|ethanoic acid +trichloride|1 +(noun)|chloride +trichlormethiazide|1 +(noun)|Naqua|thiazide +trichloroacetic acid|1 +(noun)|trichloracetic acid|acetic acid|ethanoic acid +trichloroethane|1 +(noun)|trichloroethylene|TCE|ethylene|ethene +trichloroethylene|1 +(noun)|trichloroethane|TCE|ethylene|ethene +trichloromethane|1 +(noun)|chloroform|haloform|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +trichobezoar|1 +(noun)|hairball|hair ball|tangle +trichoceros|1 +(noun)|Trichoceros|genus Trichoceros|monocot genus|liliopsid genus +trichodesmium|1 +(noun)|cyanobacteria|blue-green algae +trichodontidae|1 +(noun)|Trichodontidae|family Trichodontidae|fish family +trichoglossus|1 +(noun)|Trichoglossus|genus Trichoglossus|bird genus +trichoglossus moluccanus|1 +(noun)|rainbow lorikeet|Trichoglossus moluccanus|lorikeet +tricholoma|1 +(noun)|Tricholoma|genus Tricholoma|fungus genus +tricholoma aurantium|1 +(noun)|Tricholoma aurantium|agaric +tricholoma flavovirens|1 +(noun)|man-on-a-horse|Tricholoma flavovirens|agaric +tricholoma irinum|1 +(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric +tricholoma pardinum|1 +(noun)|Tricholoma pardinum|agaric +tricholoma pessundatum|1 +(noun)|Tricholoma pessundatum|agaric +tricholoma populinum|1 +(noun)|sandy mushroom|Tricholoma populinum|agaric +tricholoma sejunctum|1 +(noun)|Tricholoma sejunctum|agaric +tricholoma vaccinum|1 +(noun)|Tricholoma vaccinum|agaric +tricholoma venenata|1 +(noun)|Tricholoma venenata|agaric +tricholomataceae|1 +(noun)|Tricholomataceae|family Tricholomataceae|fungus family +trichomanes|1 +(noun)|Trichomanes|genus Trichomanes|fern genus +trichomanes boschianum|1 +(noun)|hare's-foot bristle fern|Trichomanes boschianum|bristle fern|filmy fern +trichomanes reniforme|1 +(noun)|kidney fern|Trichomanes reniforme|bristle fern|filmy fern +trichomanes speciosum|1 +(noun)|Killarney fern|Trichomanes speciosum|bristle fern|filmy fern +trichomonad|1 +(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +trichomoniasis|1 +(noun)|protozoal infection +trichophaga|1 +(noun)|Trichophaga|genus Trichophaga|arthropod genus +trichophaga tapetzella|1 +(noun)|carpet moth|tapestry moth|Trichophaga tapetzella|tineid|tineid moth +trichophyton|1 +(noun)|Trichophyton|genus Trichophyton|fungus genus +trichoptera|1 +(noun)|Trichoptera|order Trichoptera|animal order +trichopteran|1 +(noun)|trichopterous insect|trichopteron|insect +trichopteron|1 +(noun)|trichopterous insect|trichopteran|insect +trichopterous insect|1 +(noun)|trichopteran|trichopteron|insect +trichostema|1 +(noun)|Trichostema|genus Trichostema|asterid dicot genus +trichostema dichotomum|1 +(noun)|bastard pennyroyal|Trichostema dichotomum|blue curls +trichostema lanatum|1 +(noun)|black sage|wooly blue curls|California romero|Trichostema lanatum|blue curls +trichostema lanceolatum|1 +(noun)|turpentine camphor weed|camphorweed|vinegarweed|Trichostema lanceolatum|blue curls +trichostigma|1 +(noun)|Trichostigma|genus Trichostigma|caryophylloid dicot genus +trichosurus|1 +(noun)|Trichosurus|genus Trichosurus|mammal genus +trichosurus vulpecula|1 +(noun)|brush-tailed phalanger|Trichosurus vulpecula|phalanger|opossum|possum +trichotillomania|1 +(noun)|mania|passion|cacoethes +trichroism|1 +(noun)|pleochroism +trichromacy|1 +(noun)|color vision|chromatic vision|sight|vision|visual sense|visual modality +trichromatic|1 +(adj)|trichrome|tricolor|colored |coloured|colorful +trichrome|1 +(adj)|trichromatic|tricolor|colored |coloured|colorful +trichuriasis|1 +(noun)|infestation +trichys|1 +(noun)|Trichys|genus Trichys|mammal genus +trichys lipura|1 +(noun)|long-tailed porcupine|Trichys lipura|Old World porcupine +trick|6 +(noun)|fast one|device|gimmick|twist +(noun)|shift|work shift|duty period +(noun)|dishonesty|knavery +(noun)|antic|joke|prank|caper|put-on|diversion|recreation +(noun)|magic trick|conjuring trick|magic|legerdemain|conjuration|illusion|deception|performance +(verb)|fob|fox|pull a fast one on|play a trick on|deceive|lead on|delude|cozen +trick or treat|1 +(noun)|request|asking +trick out|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|trick up|deck out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +trick up|1 +(verb)|dress up|fig out|fig up|deck up|gussy up|fancy up|deck out|trick out|prink|attire|get up|rig out|tog up|tog out|overdress|dress|get dressed +tricked-out|2 +(adj)|adorned |decorated +(adj)|fancied up|gussied|gussied up|tricked out|adorned |decorated +tricked out|2 +(adj)|fancied up|gussied|gussied up|adorned |decorated +(adj)|tricked-out|adorned |decorated +tricker|1 +(noun)|prankster|cut-up|trickster|hoaxer|practical joker|troublemaker|trouble maker|troubler|mischief-maker|bad hat +trickery|2 +(noun)|hocus-pocus|slickness|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation|deceit|deception +(noun)|chicanery|chicane|guile|wile|shenanigan|deception|deceit|dissembling|dissimulation +trickily|1 +(adv)|craftily|cunningly|foxily|knavishly|slyly|artfully +trickiness|1 +(noun)|rascality|shiftiness|slipperiness|dishonesty +trickle|2 +(noun)|drip|dribble|flow|flowing +(verb)|dribble|filter|run|flow|feed|course +trickster|3 +(noun)|prankster|cut-up|tricker|hoaxer|practical joker|troublemaker|trouble maker|troubler|mischief-maker|bad hat +(noun)|deceiver|cheat|cheater|beguiler|slicker|wrongdoer|offender +(noun)|spiritual being|supernatural being +tricksy|1 +(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricky|wily|artful +tricky|3 +(adj)|slippery|teflon|untrustworthy |untrusty +(adj)|catchy|difficult |hard +(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|wily|artful +triclinic|1 +(adj)|triclinic |anorthic +triclinium|2 +(noun)|dining room|dining-room +(noun)|dining table|board +tricolor|2 +(adj)|trichromatic|trichrome|colored |coloured|colorful +(noun)|tricolour|flag +tricolor television tube|1 +(noun)|tricolour television tube|tricolor tube|tricolour tube|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube +tricolor tube|1 +(noun)|tricolor television tube|tricolour television tube|tricolour tube|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube +tricolour|1 +(noun)|tricolor|flag +tricolour television tube|1 +(noun)|tricolor television tube|tricolor tube|tricolour tube|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube +tricolour tube|1 +(noun)|tricolor television tube|tricolour television tube|tricolor tube|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube +tricorn|1 +(noun)|tricorne|cocked hat +tricorne|1 +(noun)|tricorn|cocked hat +tricot|1 +(noun)|knit|knitted fabric +tricuspid|1 +(adj)|tricuspidate|angular |angulate +tricuspid valve|1 +(noun)|right atrioventricular valve|atrioventricular valve +tricuspidate|1 +(adj)|tricuspid|angular |angulate +tricycle|1 +(noun)|trike|velocipede|wheeled vehicle +tricyclic|1 +(noun)|tricyclic antidepressant|tricyclic antidepressant drug|antidepressant|antidepressant drug +tricyclic antidepressant|1 +(noun)|tricyclic|tricyclic antidepressant drug|antidepressant|antidepressant drug +tricyclic antidepressant drug|1 +(noun)|tricyclic|tricyclic antidepressant|antidepressant|antidepressant drug +tridacna|1 +(noun)|Tridacna|genus Tridacna|mollusk genus +tridacna gigas|1 +(noun)|giant clam|Tridacna gigas|clam +tridacnidae|1 +(noun)|Tridacnidae|family Tridacnidae|mollusk family +trident|1 +(noun)|spear|lance|shaft +tridymite|1 +(noun)|mineral +tried|2 +(adj)|tested|well-tried|proved |proven +(adj)|tested|time-tested|tried and true|reliable +tried and true|1 +(adj)|tested|time-tested|tried|reliable +triennial|2 +(adj)|time period|period of time|period +(noun)|tercentennial|tercentenary|anniversary|day of remembrance +trier|2 +(noun)|judge|justice|jurist|magistrate +(noun)|attempter|essayer|person|individual|someone|somebody|mortal|human|soul +trifid|1 +(adj)|divided +trifid beggar-ticks|1 +(noun)|European beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +trifid bur marigold|1 +(noun)|European beggar-ticks|trifid beggar-ticks|Bidens tripartita|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|sticktight +trifle|6 +(noun)|dessert|sweet|afters +(noun)|technicality|triviality|detail|item|point +(noun)|triviality|trivia|small beer|object|physical object +(verb)|piddle|wanton|wanton away|piddle away|spend|pass +(verb)|frivol|act|behave|do +(verb)|dally|play|consider|take|deal|look at +trifle away|1 +(verb)|wanton|wanton away|spend|expend|drop +trifler|1 +(noun)|idler|loafer|do-nothing|layabout|bum +trifling|2 +(adj)|negligible|paltry|worthless +(noun)|dalliance|dawdling|wasting time|delay|holdup +trifluoromethane|1 +(noun)|fluoroform|haloform +trifoliata|1 +(noun)|trifoliate orange|wild orange|Poncirus trifoliata|tree +trifoliate|1 +(adj)|trifoliolate|trifoliated|compound +trifoliate orange|1 +(noun)|trifoliata|wild orange|Poncirus trifoliata|tree +trifoliated|1 +(adj)|trifoliate|trifoliolate|compound +trifoliolate|1 +(adj)|trifoliate|trifoliated|compound +trifoliolate leaf|1 +(noun)|compound leaf +trifolium|1 +(noun)|Trifolium|genus Trifolium|rosid dicot genus +trifolium alpinum|1 +(noun)|alpine clover|Trifolium alpinum|clover|trefoil +trifolium dubium|1 +(noun)|hop clover|shamrock|lesser yellow trefoil|Trifolium dubium|clover|trefoil +trifolium incarnatum|1 +(noun)|crimson clover|Italian clover|Trifolium incarnatum|clover|trefoil +trifolium pratense|1 +(noun)|red clover|purple clover|Trifolium pratense|clover|trefoil +trifolium reflexum|1 +(noun)|buffalo clover|Trifolium reflexum|clover|trefoil +trifolium repens|1 +(noun)|white clover|dutch clover|shamrock|Trifolium repens|clover|trefoil +trifolium stoloniferum|1 +(noun)|buffalo clover|Trifolium stoloniferum|clover|trefoil +trifurcate|1 +(verb)|branch|ramify|fork|furcate|separate +trifurcation|1 +(noun)|branching|ramification|fork|forking +trig|2 +(adj)|clean-cut|trim|tidy +(noun)|trigonometry|pure mathematics +triga|1 +(noun)|Triga|genus Triga|fish genus +trigeminal|1 +(noun)|trigeminal nerve|trigeminus|nervus trigeminus|fifth cranial nerve|cranial nerve +trigeminal nerve|1 +(noun)|trigeminal|trigeminus|nervus trigeminus|fifth cranial nerve|cranial nerve +trigeminal neuralgia|1 +(noun)|tic douloureux|neuralgia|neuralgy +trigeminus|1 +(noun)|trigeminal|trigeminal nerve|nervus trigeminus|fifth cranial nerve|cranial nerve +trigger|4 +(noun)|gun trigger|lever +(noun)|device +(noun)|induction|initiation|causing|causation +(verb)|trip|actuate|activate|set off|spark off|spark|trigger off|touch off|initiate|pioneer +trigger-happy|2 +(adj)|irresponsible +(adj)|fierce|tearing|vehement|violent|intense +trigger off|1 +(verb)|trip|actuate|trigger|activate|set off|spark off|spark|touch off|initiate|pioneer +triggerfish|1 +(noun)|plectognath|plectognath fish +triggerman|1 +(noun)|gunman|gunslinger|hired gun|gun|gun for hire|hit man|hitman|torpedo|shooter|murderer|liquidator|manslayer +trigla lucerna|1 +(noun)|tub gurnard|yellow gurnard|Trigla lucerna|gurnard +triglidae|1 +(noun)|Triglidae|family Triglidae|fish family +triglinae|1 +(noun)|Triglinae|subfamily Triglinae|fish family +triglochin|1 +(noun)|Triglochin|genus Triglochin|monocot genus|liliopsid genus +triglochin maritima|1 +(noun)|arrow grass|Triglochin maritima|marsh plant|bog plant|swamp plant +triglyceride|1 +(noun)|lipid|lipide|lipoid|glyceride|acylglycerol +trigon|3 +(noun)|triangle|trilateral|polygon|polygonal shape +(noun)|triplicity|trio|triad|triplet +(noun)|lyre +trigonal|1 +(adj)|rhombohedral|symmetrical |symmetric +trigonella|1 +(noun)|Trigonella|genus Trigonella|rosid dicot genus +trigonella foenumgraecum|1 +(noun)|fenugreek|Greek clover|Trigonella foenumgraecum|herb|herbaceous plant +trigonella ornithopodioides|1 +(noun)|bird's foot trefoil|Trigonella ornithopodioides|herb|herbaceous plant +trigonometric|1 +(adj)|pure mathematics +trigonometric function|1 +(noun)|circular function|function|mathematical function +trigonometrician|1 +(noun)|mathematician +trigonometry|1 +(noun)|trig|pure mathematics +trigonum cerebrale|1 +(noun)|fornix|fiber bundle|fibre bundle|fascicle|fasciculus +trigram|1 +(noun)|written word +trihydroxy|1 +(adj)|group|radical|chemical group +triiodomethane|1 +(noun)|iodoform|antiseptic +triiodothyronine|1 +(noun)|liothyronine|T|thyroid hormone +trike|1 +(noun)|tricycle|velocipede|wheeled vehicle +trilateral|3 +(adj)|triangular|tripartite|three-party|three-way|multilateral |many-sided +(adj)|triangular|three-sided|multilateral |many-sided +(noun)|triangle|trigon|polygon|polygonal shape +trilby|2 +(noun)|Trilby|fictional character|fictitious character|character +(noun)|fedora|felt hat|homburg|Stetson|hat|chapeau|lid +trilingual|1 +(adj)|multilingual +trilisa|1 +(noun)|Trilisa|genus Trilisa|asterid dicot genus +trilisa odoratissima|1 +(noun)|wild vanilla|Trilisa odoratissima|herb|herbaceous plant +trill|3 +(noun)|shake|note|musical note|tone +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|warble|quaver|sing +trilled|1 +(adj)|rolled|rolling|pronounceable +trilliaceae|1 +(noun)|Trilliaceae|family Trilliaceae|trillium family|liliid monocot family +trilling|1 +(noun)|Trilling|Lionel Trilling|literary critic +trillion|4 +(adj)|a trillion|cardinal +(adj)|a trillion|cardinal +(noun)|one million million million|large integer +(noun)|one million million|1000000000000|large integer +trillion floating point operations per second|1 +(noun)|teraflop|unit of measurement|unit +trillions|3 +(noun)|millions|billions|zillions|jillions|large indefinite quantity|large indefinite amount +(noun)|trillion|one million million million|large integer +(noun)|trillion|one million million|1000000000000|large integer +trillionth|2 +(adj)|ordinal +(noun)|one-trillionth|common fraction|simple fraction +trillium|1 +(noun)|wood lily|wake-robin|liliaceous plant +trillium erectum|1 +(noun)|purple trillium|red trillium|birthroot|Trillium erectum|trillium|wood lily|wake-robin +trillium family|1 +(noun)|Trilliaceae|family Trilliaceae|liliid monocot family +trillium recurvatum|1 +(noun)|prairie wake-robin|prairie trillium|Trillium recurvatum|trillium|wood lily|wake-robin +trillium sessile|1 +(noun)|red trillium|toadshade|sessile trillium|Trillium sessile|trillium|wood lily|wake-robin +trilobate|1 +(adj)|trilobated|trilobed|compound +trilobated|1 +(adj)|trilobate|trilobed|compound +trilobed|1 +(adj)|trilobate|trilobated|compound +trilobite|1 +(noun)|arthropod +trilogy|1 +(noun)|trio|triad|triplet +trim|18 +(adj)|spare|thin |lean +(adj)|kempt|tidy|groomed +(adj)|shipshape|well-kept|tidy +(adj)|clean-cut|trig|tidy +(adj)|tailored|plain +(noun)|trimness|neatness|spruceness +(noun)|trimming|passementerie|adornment +(noun)|attitude +(noun)|trimming|clipping|cut|cutting|cutting off +(verb)|pare|cut +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|reduce|cut down|cut back|trim down|trim back|cut|bring down|decrease|lessen|minify +(verb)|balance|equilibrate|equilibrize|equilibrise +(verb)|be +(verb)|garnish|dress|decorate|adorn|grace|ornament|embellish|beautify +(verb)|snip|clip|crop|lop|dress|prune|cut back|thin out +(verb)|shave|cut +(verb)|adjust|set|correct +trim back|1 +(verb)|reduce|cut down|cut back|trim|trim down|cut|bring down|decrease|lessen|minify +trim down|1 +(verb)|reduce|cut down|cut back|trim|trim back|cut|bring down|decrease|lessen|minify +trimaran|1 +(noun)|sailboat|sailing boat +trimer|1 +(noun)|polymer +trimester|2 +(noun)|time period|period of time|period +(noun)|school term|academic term|academic session|session +trimipramine|1 +(noun)|Surmontil|tricyclic|tricyclic antidepressant|tricyclic antidepressant drug +trimmed|1 +(adj)|trimmed |cut|clipped +trimmer|4 +(noun)|pruner|worker +(noun)|machine +(noun)|trimming capacitor|capacitor|capacitance|condenser|electrical condenser +(noun)|trimmer joist|joist +trimmer arch|1 +(noun)|arch +trimmer joist|1 +(noun)|trimmer|joist +trimming|3 +(noun)|decoration +(noun)|trim|passementerie|adornment +(noun)|trim|clipping|cut|cutting|cutting off +trimming capacitor|1 +(noun)|trimmer|capacitor|capacitance|condenser|electrical condenser +trimmings|4 +(noun)|fixings|accessory|appurtenance|supplement|add-on +(noun)|trimming|decoration +(noun)|trimming|trim|passementerie|adornment +(noun)|trim|trimming|clipping|cut|cutting|cutting off +trimness|1 +(noun)|trim|neatness|spruceness +trimorphodon|1 +(noun)|Trimorphodon|genus Trimorphodon|reptile genus +trimorphodon lambda|1 +(noun)|Sonoran lyre snake|Trimorphodon lambda|lyre snake +trimotored|1 +(adj)|motorized |motorised|motored +trimox|1 +(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin +trimurti|1 +(noun)|Trimurti|trio|triad|triplet +trine|1 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +trine immersion|1 +(noun)|immersion +trinectes|1 +(noun)|Trinectes|genus Trinectes|fish genus +trinectes maculatus|1 +(noun)|hogchoker|Trinectes maculatus|sole +tringa|1 +(noun)|Tringa|genus Tringa|bird genus +tringa flavipes|1 +(noun)|lesser yellowlegs|Tringa flavipes|yellowlegs +tringa melanoleuca|1 +(noun)|greater yellowlegs|Tringa melanoleuca|yellowlegs +tringa nebularia|1 +(noun)|greenshank|Tringa nebularia|sandpiper +tringa totanus|1 +(noun)|redshank|Tringa totanus|sandpiper +trinidad|1 +(noun)|Trinidad|island +trinidad and tobago|1 +(noun)|Trinidad and Tobago|Republic of Trinidad and Tobago|country|state|land +trinidad and tobago dollar|1 +(noun)|Trinidad and Tobago dollar|dollar +trinidadian|2 +(adj)|Trinidadian|island +(noun)|Trinidadian|inhabitant|dweller|denizen|indweller +trinil man|2 +(noun)|Java man|Trinil man|homo erectus +(noun)|Java man|Trinil man|Homo erectus +trinitarian|1 +(noun)|Trinitarian|disciple|adherent +trinitarianism|1 +(noun)|Trinitarianism|Protestantism +trinitroglycerin|1 +(noun)|nitroglycerin|nitroglycerine|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate|vasodilator|vasodilative +trinitrotoluene|1 +(noun)|TNT|explosive compound +trinity|3 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah +(noun)|trio|threesome|triad|gathering|assemblage +trinity river|1 +(noun)|Trinity River|river +trinity sunday|1 +(noun)|Trinity Sunday|Christian holy day +trinket|1 +(noun)|bangle|bauble|gaud|gewgaw|novelty|fallal|adornment +trinuclear|1 +(adj)|trinucleate |trinucleated +trinucleate|1 +(adj)|trinucleate |trinuclear|trinucleated +trinucleated|1 +(adj)|trinucleate |trinuclear +trio|5 +(noun)|three|3|III|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|musical composition|opus|composition|piece|piece of music +(noun)|musical organization|musical organisation|musical group +(noun)|triad|triplet|set +(noun)|threesome|triad|trinity|gathering|assemblage +triode|1 +(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +triolein|1 +(noun)|olein|glyceryl ester +trionychidae|1 +(noun)|Trionychidae|family Trionychidae|reptile family +trionyx|1 +(noun)|Trionyx|genus Trionyx|reptile genus +trionyx muticus|1 +(noun)|smooth softshell|Trionyx muticus|soft-shelled turtle|pancake turtle +trionyx spiniferus|1 +(noun)|spiny softshell|Trionyx spiniferus|soft-shelled turtle|pancake turtle +triopidae|1 +(noun)|Triopidae|family Triopidae|arthropod family +triops|1 +(noun)|Triops|genus Triops|arthropod genus +triose|1 +(noun)|monosaccharide|monosaccharose|simple sugar +triostium|1 +(noun)|Triostium|genus Triostium|asterid dicot genus +triostium perfoliatum|1 +(noun)|feverroot|horse gentian|tinker's root|wild coffee|Triostium perfoliatum|herb|herbaceous plant +trioxide|1 +(noun)|oxide +trip|12 +(noun)|journey|journeying +(noun)|hallucination +(noun)|slip|mishap|misadventure|mischance +(noun)|head trip|experience +(noun)|tripper|catch|stop +(noun)|step +(noun)|trip-up|stumble|misstep|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +(verb)|stumble|move +(verb)|trip up +(verb)|travel|jaunt +(verb)|actuate|trigger|activate|set off|spark off|spark|trigger off|touch off|initiate|pioneer +(verb)|trip out|turn on|get off +trip-up|1 +(noun)|trip|stumble|misstep|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo +trip line|1 +(noun)|rope +trip out|1 +(verb)|trip|turn on|get off +trip the light fantastic|1 +(verb)|dance|trip the light fantastic toe|move +trip the light fantastic toe|1 +(verb)|dance|trip the light fantastic|move +trip up|3 +(verb)|catch|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +(verb)|trip +(verb)|stumble|slip up|err|mistake|slip +trip wire|2 +(noun)|military unit|military force|military group|force +(noun)|wire +tripalmitin|1 +(noun)|glycerol tripalmitate|glyceryl ester +tripartite|1 +(adj)|triangular|trilateral|three-party|three-way|multilateral |many-sided +tripe|2 +(noun)|variety meat|organs +(noun)|folderol|rubbish|trumpery|trash|wish-wash|applesauce|codswallop|drivel|garbage +triphammer|1 +(noun)|hammer|power hammer +triphosphopyridine|1 +(noun)|pyridine +triphosphopyridine nucleotide|1 +(noun)|coenzyme +triphosphoric acid|1 +(noun)|acid +tripinnate|1 +(adj)|tripinnated|compound +tripinnated|1 +(adj)|tripinnate|compound +tripinnatifid|1 +(adj)|compound +triple|6 +(adj)|ternary|treble|triplex|multiple +(adj)|treble|threefold|multiple +(noun)|three-base hit|three-bagger|base hit|safety|bingle +(noun)|multiple +(verb)|treble|multiply|manifold +(verb)|hit +triple-crown|2 +(adj)|successful +(adj)|successful +triple-crown season|1 +(noun)|baseball season +triple-decker|1 +(noun)|club sandwich|three-decker|sandwich +triple-space|1 +(verb)|type|typewrite +triple-spacing|1 +(noun)|typing|typewriting +triple-tongue|1 +(verb)|double tongue|tongue +triple cream|1 +(noun)|triple creme|cheese +triple creme|1 +(noun)|triple cream|cheese +triple crown|2 +(noun)|championship|title +(noun)|championship|title +triple frontier|1 +(noun)|Triple Frontier|frontier +triple jump|1 +(noun)|hop-step-and-jump|athletic contest|athletic competition|athletics +triple play|1 +(noun)|baseball play +triple sec|1 +(noun)|orange liqueur +triplet|3 +(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|sibling|sib +(noun)|trio|triad|set +triplet code|1 +(noun)|genetic code +tripletail|1 +(noun)|percoid fish|percoid|percoidean +tripleurospermum|1 +(noun)|Tripleurospermum|genus Tripleurospermum|asterid dicot genus +tripleurospermum inodorum|1 +(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb|herbaceous plant +tripleurospermum oreades tchihatchewii|1 +(noun)|turfing daisy|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb|herbaceous plant +tripleurospermum tchihatchewii|1 +(noun)|turfing daisy|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb|herbaceous plant +triplex|1 +(adj)|ternary|treble|triple|multiple +triplicate|2 +(noun)|copy +(verb)|reproduce +triplicity|2 +(noun)|trigon|trio|triad|triplet +(noun)|magnitude +tripling|1 +(noun)|multiplication +triplochiton|1 +(noun)|Triplochiton|genus Triplochiton|dilleniid dicot genus +triplochiton scleroxcylon|1 +(noun)|obeche|obechi|arere|samba|Triplochiton scleroxcylon|tree +triploid|1 +(adj)|polyploid +tripod|1 +(noun)|rack|stand +tripoli|3 +(noun)|rottenstone|limestone +(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital +(noun)|Tripoli|Tarabulus Ash-Sham|Trablous|city|metropolis|urban center|port +tripos|1 +(noun)|examination|exam|test +tripper|4 +(noun)|drug user|substance abuser|user +(noun)|stumbler|pedestrian|walker|footer +(noun)|sightseer|excursionist|rubberneck|tourist|tourer|holidaymaker +(noun)|trip|catch|stop +tripping|2 +(adj)|lilting|swinging|swingy|rhythmical |rhythmic +(adj)|light|lightsome|light-footed +trippingly|1 +(adv)|lightsomely +triptych|1 +(noun)|art|fine art +triquetral|1 +(noun)|triquetral bone|os triquetrum|cuneiform bone|pyramidal bone|carpal bone|carpal|wrist bone +triquetral bone|1 +(noun)|triquetral|os triquetrum|cuneiform bone|pyramidal bone|carpal bone|carpal|wrist bone +triquetrous leek|1 +(noun)|three-cornered leek|Allium triquetrum|alliaceous plant +trireme|1 +(noun)|galley +trisaccharide|1 +(noun)|oligosaccharide +trisect|1 +(verb)|cut +triskaidekaphobia|1 +(noun)|simple phobia +triskaidekaphobic|1 +(adj)|afraid +triskele|1 +(noun)|triskelion|design|pattern|figure +triskelion|1 +(noun)|triskele|design|pattern|figure +trismus|1 +(noun)|spasm|cramp|muscle spasm +trisodium orthophosphate|1 +(noun)|trisodium phosphate|tribasic sodium phosphate|builder|detergent builder +trisodium phosphate|1 +(noun)|trisodium orthophosphate|tribasic sodium phosphate|builder|detergent builder +trisomy|1 +(noun)|chromosomal aberration|chromosomal anomaly|chrosomal abnormality|chromosonal disorder +trisomy 21|1 +(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|retardation|mental retardation|backwardness|slowness|subnormality +tristan|1 +(noun)|Tristan|Tristram|fictional character|fictitious character|character +tristan tzara|1 +(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet +tristearin|1 +(noun)|glycerol tristearate|glyceryl ester +tristram|1 +(noun)|Tristan|Tristram|fictional character|fictitious character|character +trisyllable|1 +(noun)|word +tritanopia|1 +(noun)|blue-blindness|yellow-blue dichromacy|yellow-blue color blindness +tritanopic|1 +(adj)|blue-blind|blind |unsighted +trite|1 +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|well-worn|unoriginal +triteness|1 +(noun)|staleness|unoriginality +tritheism|1 +(noun)|polytheism|heresy|unorthodoxy +tritheist|1 +(noun)|religionist|religious person +triticum|1 +(noun)|Triticum|genus Triticum|monocot genus|liliopsid genus +triticum aestivum|1 +(noun)|common wheat|Triticum aestivum|wheat|corn +triticum aestivum spelta|1 +(noun)|spelt|Triticum spelta|Triticum aestivum spelta|wheat|corn +triticum dicoccum|1 +(noun)|emmer|starch wheat|two-grain spelt|Triticum dicoccum|wheat|corn +triticum dicoccum dicoccoides|1 +(noun)|wild wheat|wild emmer|Triticum dicoccum dicoccoides|wheat|corn +triticum durum|1 +(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat|corn +triticum spelta|1 +(noun)|spelt|Triticum spelta|Triticum aestivum spelta|wheat|corn +triticum turgidum|1 +(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat|corn +tritium|1 +(noun)|hydrogen|H|atomic number 1 +tritoma|1 +(noun)|kniphofia|flame flower|flame-flower|flameflower|herb|herbaceous plant +triton|3 +(noun)|Triton|Greek deity +(noun)|seasnail +(noun)|newt|salamander +triturus|1 +(noun)|Triturus|genus Triturus|amphibian genus +triturus vulgaris|1 +(noun)|common newt|Triturus vulgaris|newt|triton +triumph|6 +(noun)|victory|ending|conclusion|finish|success +(noun)|exultation|jubilance|jubilancy|jubilation +(verb)|prevail|win +(verb)|wallow|rejoice|exult|walk on air|be on cloud nine|jump for joy +(verb)|gloat|crow|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade +(verb)|exult|rejoice|jubilate|cheer|cheer up|chirk up +triumphal|2 +(adj)|ending|conclusion|finish|success +(adj)|exultant|exulting|jubilant|prideful|rejoicing|triumphant|elated +triumphal arch|1 +(noun)|arch|memorial|monument +triumphant|2 +(adj)|exultant|exulting|jubilant|prideful|rejoicing|triumphal|elated +(adj)|victorious|undefeated +triumvir|1 +(noun)|administrator|executive +triumvirate|1 +(noun)|trio|threesome|triad|trinity +triune|1 +(adj)|multiple +trivalent|1 +(adj)|power|powerfulness +trivalent live oral poliomyelitis vaccine|1 +(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|TOPV|poliovirus vaccine +trivet|2 +(noun)|base|pedestal|stand +(noun)|base|pedestal|stand +trivia|1 +(noun)|triviality|trifle|small beer|object|physical object +trivial|5 +(adj)|fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|unimportant +(adj)|banal|commonplace|ordinary +(adj)|superficial|insignificant |unimportant +(adj)|frivolous +(adj)|insignificant|inconsiderable +trivialise|1 +(verb)|trivialize|understate|minimize|minimise|downplay +triviality|3 +(noun)|pettiness|slightness|unimportance +(noun)|technicality|trifle|detail|item|point +(noun)|trivia|trifle|small beer|object|physical object +trivialize|1 +(verb)|trivialise|understate|minimize|minimise|downplay +trm|1 +(noun)|transmission time|TRM|coordinated universal time|UTC +trna|1 +(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid|RNA +troat|1 +(verb)|utter|emit|let out|let loose +trochaic|1 +(adj)|metrical foot|foot|metrical unit +trochanter|1 +(noun)|process|outgrowth|appendage +troche|1 +(noun)|cough drop|pastille|pastil|lozenge +trochee|1 +(noun)|metrical foot|foot|metrical unit +trochilidae|1 +(noun)|Trochilidae|family Trochilidae|bird family +trochlear|1 +(noun)|trochlear nerve|trochlearis|fourth cranial nerve|cranial nerve +trochlear nerve|1 +(noun)|trochlear|trochlearis|fourth cranial nerve|cranial nerve +trochlearis|1 +(noun)|trochlear|trochlear nerve|fourth cranial nerve|cranial nerve +trodden|1 +(adj)|trampled|damaged +trofim denisovich lysenko|1 +(noun)|Lysenko|Trofim Denisovich Lysenko|geneticist +trogium|1 +(noun)|Trogium|genus Trogium|arthropod genus +trogium pulsatorium|1 +(noun)|common booklouse|Trogium pulsatorium|booklouse|book louse|deathwatch|Liposcelis divinatorius +troglodyte|2 +(noun)|hermit|recluse|solitary|solitudinarian|loner|lone wolf|lone hand +(noun)|caveman|cave man|cave dweller|primitive|primitive person +troglodytes|3 +(noun)|Troglodytes|genus Troglodytes|bird genus +(noun)|hermit|recluse|solitary|solitudinarian|troglodyte|loner|lone wolf|lone hand +(noun)|caveman|cave man|cave dweller|troglodyte|primitive|primitive person +troglodytes aedon|1 +(noun)|house wren|Troglodytes aedon|wren|jenny wren +troglodytes troglodytes|1 +(noun)|winter wren|Troglodytes troglodytes|wren|jenny wren +troglodytidae|1 +(noun)|Troglodytidae|family Troglodytidae|bird family +trogon|1 +(noun)|bird +trogonidae|1 +(noun)|Trogonidae|family Trogonidae|bird family +trogoniformes|1 +(noun)|Trogoniformes|order Trogoniformes|animal order +troika|3 +(noun)|carriage|equipage|rig +(noun)|three|3|III|trio|threesome|tierce|leash|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit|figure +(noun)|triumvirate +trojan|3 +(adj)|Trojan|city|metropolis|urban center +(noun)|Trojan|Dardan|Dardanian|Asian|Asiatic +(noun)|trojan horse|malevolent program +trojan horse|3 +(noun)|fifth column|Trojan horse|unit|social unit +(noun)|trojan|malevolent program +(noun)|Trojan Horse|Wooden Horse|figure +trojan war|1 +(noun)|Trojan War|war|warfare +troll|11 +(noun)|mythical monster|mythical creature +(noun)|round|partsong +(noun)|fisherman's lure|fish lure +(noun)|trolling|angling +(verb)|circle|circulate +(verb)|wheel|roll +(verb)|sing +(verb)|angle +(verb)|sing +(verb)|praise +(verb)|talk|speak|utter|mouth|verbalize|verbalise +troller|1 +(noun)|angler|fisherman|fisher +trolley|1 +(noun)|streetcar|tram|tramcar|trolley car|self-propelled vehicle +trolley car|1 +(noun)|streetcar|tram|tramcar|trolley|self-propelled vehicle +trolley coach|1 +(noun)|trolleybus|trackless trolley|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus +trolley line|1 +(noun)|transit line +trolleybus|1 +(noun)|trolley coach|trackless trolley|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus +trolling|1 +(noun)|troll|angling +trollius|1 +(noun)|Trollius|genus Trollius|magnoliid dicot genus +trollop|2 +(noun)|slattern|slut|slovenly woman|slob|sloven|pig|slovenly person +(noun)|adulteress|fornicatress|hussy|jade|loose woman|slut|strumpet|adulterer|fornicator +trollope|1 +(noun)|Trollope|Anthony Trollope|writer|author +trombicula|1 +(noun)|Trombicula|genus Trombicula|arthropod genus +trombiculiasis|1 +(noun)|infestation +trombiculidae|1 +(noun)|Trombiculidae|family Trombiculidae|arthropod family +trombiculiid|1 +(noun)|mite +trombidiid|1 +(noun)|mite +trombidiidae|1 +(noun)|Trombidiidae|family Trombidiidae|arthropod family +trombone|1 +(noun)|brass +trombone player|1 +(noun)|trombonist|musician|instrumentalist|player +trombonist|1 +(noun)|trombone player|musician|instrumentalist|player +trompe-l'oeil|1 +(adj)|eye-deceiving|unreal +trompe l'oeil|1 +(noun)|painting|picture +trompillo|1 +(noun)|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +trondheim|1 +(noun)|Trondheim|Nidaros|city|metropolis|urban center|port +trondheim fiord|1 +(noun)|Trondheim Fjord|Trondheim Fiord|fjord|fiord +trondheim fjord|1 +(noun)|Trondheim Fjord|Trondheim Fiord|fjord|fiord +troop|6 +(noun)|army unit +(noun)|army unit +(noun)|scout troop|scout group|unit|social unit +(noun)|flock|crowd +(verb)|parade|promenade|march|process +(verb)|march +troop carrier|1 +(noun)|troop transport|military vehicle +troop movement|1 +(noun)|movement +troop transport|1 +(noun)|troop carrier|military vehicle +trooper|4 +(noun)|cavalryman|soldier +(noun)|policeman|police officer|officer +(noun)|state trooper|policeman|police officer|officer +(noun)|cavalryman|soldier +troops|5 +(noun)|military personnel|soldiery|force|personnel +(noun)|troop|army unit +(noun)|troop|army unit +(noun)|troop|scout troop|scout group|unit|social unit +(noun)|troop|flock|crowd +troopship|1 +(noun)|ship|troop carrier|troop transport +tropaeolaceae|1 +(noun)|Tropaeolaceae|family Tropaeolaceae|nasturtium family|rosid dicot family +tropaeolum|1 +(noun)|Tropaeolum|genus Tropaeolum|rosid dicot genus +tropaeolum majus|1 +(noun)|garden nasturtium|Indian cress|Tropaeolum majus|nasturtium +tropaeolum minus|1 +(noun)|bush nasturtium|Tropaeolum minus|nasturtium +tropaeolum peregrinum|1 +(noun)|canarybird flower|canarybird vine|canary creeper|Tropaeolum peregrinum|nasturtium +trope|1 +(noun)|figure of speech|figure|image|rhetorical device +trophic|1 +(adj)|organic process|biological process +trophobiosis|1 +(noun)|symbiosis|mutualism +trophoblast|1 +(noun)|membrane|tissue layer +trophoblastic|1 +(adj)|membrane|tissue layer +trophoblastic cancer|1 +(noun)|carcinoma +trophotropic|1 +(adj)|tropism +trophotropism|1 +(noun)|tropism +trophozoite|1 +(noun)|sporozoan +trophy|2 +(noun)|award|accolade|honor|honour|laurels +(noun)|prize|award|accolade|honor|honour|laurels +trophy case|1 +(noun)|case|display case|showcase +trophy wife|1 +(noun)|wife|married woman +tropic|3 +(adj)|tropical|equatorial +(adj)|tropical|hot +(noun)|latitude|line of latitude|parallel of latitude|parallel +tropic bird|2 +(noun)|tropicbird|boatswain bird|pelecaniform seabird +(noun)| +tropic of cancer|1 +(noun)|Tropic of Cancer|tropic +tropic of capricorn|1 +(noun)|Tropic of Capricorn|tropic +tropical|4 +(adj)|tropic|equatorial +(adj)|latitude|line of latitude|parallel of latitude|parallel +(adj)|figurative |nonliteral +(adj)|tropic|hot +tropical medicine|1 +(noun)|medicine|medical specialty +tropical pitcher plant|1 +(noun)|pitcher plant +tropical prawn|1 +(noun)|decapod crustacean|decapod +tropical rain forest|1 +(noun)|selva|rain forest|rainforest +tropical sore|1 +(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|Delhi boil|Aleppo boil|leishmaniasis|leishmaniosis|kala azar +tropical sprue|1 +(noun)|sprue|disorder|upset +tropical year|1 +(noun)|solar year|astronomical year|equinoctial year|year +tropical zone|1 +(noun)|Torrid Zone|tropics|climatic zone +tropicbird|1 +(noun)|tropic bird|boatswain bird|pelecaniform seabird +tropics|2 +(noun)|Torrid Zone|tropical zone|climatic zone +(noun)|tropic|latitude|line of latitude|parallel of latitude|parallel +tropidoclonion|1 +(noun)|Tropidoclonion|genus Tropidoclonion|reptile genus +tropidoclonion lineatum|1 +(noun)|lined snake|Tropidoclonion lineatum|colubrid snake|colubrid +tropism|1 +(noun)|reaction|response +troponomy|1 +(noun)|troponymy|collection|aggregation|accumulation|assemblage +troponym|1 +(noun)|manner name|word +troponymy|2 +(noun)|semantic relation +(noun)|troponomy|collection|aggregation|accumulation|assemblage +tropopause|1 +(noun)|layer +troposphere|1 +(noun)|layer +trot|7 +(noun)|jog|lope|locomotion|travel +(noun)|Trotskyite|Trotskyist|Trot|radical +(noun)|pony|crib|translation|interlingual rendition|rendering|version +(noun)|gait +(verb)|jog|clip|run +(verb)|ride horseback +(verb)|walk +trot out|1 +(verb)|uncover|bring out|unveil|reveal +troth|2 +(noun)|betrothal|engagement|promise +(noun)|plight|assurance|pledge +trotline|1 +(noun)|trawl|trawl line|spiller|setline|fishing line +trotsky|1 +(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik|Bolshevist|revolutionist|revolutionary|subversive|subverter +trotskyism|1 +(noun)|Trotskyism|communism +trotskyist|1 +(noun)|Trotskyite|Trotskyist|Trot|radical +trotskyite|1 +(noun)|Trotskyite|Trotskyist|Trot|radical +trotter|2 +(noun)|animal foot|foot +(noun)|trotting horse|racehorse|race horse|bangtail +trotting horse|1 +(noun)|trotter|racehorse|race horse|bangtail +trou-de-loup|1 +(noun)|pit|quarry|stone pit +troubadour|1 +(noun)|folk singer|jongleur|minstrel|poet-singer|singer|vocalist|vocalizer|vocaliser +trouble|11 +(noun)|problem|difficulty +(noun)|fuss|bother|hassle|perturbation|disturbance +(noun)|happening|occurrence|natural event +(noun)|difficulty|effort|elbow grease|exertion|travail|sweat +(noun)|worry|anxiety +(noun)|pregnancy|gestation|maternity +(verb)|disturb|upset|affect|impress|move|strike +(verb)|put out|inconvenience|disoblige|discommode|incommode|bother|affect|impact|bear upon|bear on|touch on|touch +(verb)|perturb|unhinge|disquiet|cark|distract|disorder|disturb|upset +(verb)|trouble oneself|bother|inconvenience oneself|strive|reach|strain +(verb)|afflict|ail|pain|hurt +trouble-free|1 +(adj)|untroubled +trouble-shoot|1 +(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +trouble maker|2 +(noun)|troublemaker|troubler|mischief-maker|bad hat|unwelcome person|persona non grata +(noun)| +trouble oneself|1 +(verb)|trouble|bother|inconvenience oneself|strive|reach|strain +trouble shooter|2 +(noun)|troubleshooter|repairman|repairer|maintenance man|service man|fixer +(noun)| +troubled|2 +(adj)|troubled |annoyed|harassed|harried|pestered|vexed|anxious|nervous|uneasy|unquiet|buffeted|storm-tossed|tempest-tossed|tempest-tost|tempest-swept|careful|care-laden|heavy-laden|clouded|disquieted|distressed|disturbed|upset|worried|distressed|hard-pressed|hard put|in a bad way|in trouble|fraught|hag-ridden|hagridden|tormented|haunted|in Dutch|infested|overrun|plagued|in trouble|mothy|stressed|distressed|in a bad way|struggling|suffering|troublous|concerned|unquiet +(adj)|disruptive|riotous|tumultuous|turbulent|unquiet +troublemaker|1 +(noun)|trouble maker|troubler|mischief-maker|bad hat|unwelcome person|persona non grata +troubler|1 +(noun)|troublemaker|trouble maker|mischief-maker|bad hat|unwelcome person|persona non grata +troubleshooter|1 +(noun)|trouble shooter|repairman|repairer|maintenance man|service man|fixer +troublesome|1 +(adj)|difficult |hard +troublesomeness|1 +(noun)|inconvenience|worriment|difficulty|difficultness +troubling|1 +(adj)|distressing|distressful|disturbing|perturbing|worrisome|worrying|heavy +troublous|1 +(adj)|troubled +trough|6 +(noun)|natural depression|depression +(noun)|gutter|channel +(noun)|bowl|concave shape|concavity|incurvation|incurvature +(noun)|public treasury|till|treasury|exchequer +(noun)|receptacle +(noun)|manger|container +trounce|3 +(verb)|flog|welt|whip|lather|lash|slash|strap|beat|beat up|work over +(verb)|beat|beat out|crush|shell|vanquish|get the better of|overcome|defeat +(verb)|call on the carpet|rebuke|rag|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock|criticize|criticise|pick apart +trouncing|2 +(noun)|thrashing|walloping|debacle|drubbing|slaughter|whipping|defeat|licking +(noun)|beating|thrashing|licking|drubbing|lacing|whacking|corporal punishment +troupe|1 +(noun)|company|organization|organisation +trouper|2 +(noun)|good person +(noun)|barnstormer|playactor|play-actor|actor|histrion|player|thespian|role player +trouser|1 +(noun)|garment +trouser clip|1 +(noun)|bicycle clip|clip +trouser cuff|1 +(noun)|cuff|turnup +trouser leg|1 +(noun)|pant leg|leg +trouser press|1 +(noun)|pants presser|home appliance|household appliance +trousered|1 +(adj)|breeched|pantalooned|clothed |clad +trousering|1 +(noun)|panting|fabric|cloth|material|textile +trousers|2 +(noun)|pants|garment +(noun)|trouser|garment +trousseau|1 +(noun)|outfit|getup|rig|turnout +trout|2 +(noun)|fish +(noun)|salmonid|food fish +trout lily|1 +(noun)|yellow adder's tongue|amberbell|Erythronium americanum|dogtooth violet|dogtooth|dog's-tooth violet +trove|1 +(noun)|treasure trove|treasure|hoarded wealth +trowel|2 +(noun)|hand tool +(verb)|dig|delve|cut into|turn over +troy|2 +(noun)|troy weight|system of weights|weight +(noun)|Troy|Ilion|Ilium|city|metropolis|urban center +troy ounce|1 +(noun)|ounce|apothecaries' ounce|apothecaries' unit|apothecaries' weight|troy unit +troy pound|1 +(noun)|apothecaries' pound|apothecaries' unit|apothecaries' weight|troy unit +troy unit|1 +(noun)|weight unit|weight +troy weight|1 +(noun)|troy|system of weights|weight +truancy|1 +(noun)|hooky|nonattendance +truant|3 +(adj)|awol|absent +(noun)|hooky player|absentee +(noun)|no-show|nonattender|wrongdoer|offender +truce|1 +(noun)|armistice|cease-fire|peace +truck|3 +(noun)|motortruck|motor vehicle|automotive vehicle +(noun)|hand truck|handcart|pushcart|cart|go-cart +(verb)|transport +truck bed|1 +(noun)|floor|flooring +truck dealer|1 +(noun)|dealer +truck driver|1 +(noun)|teamster|trucker|driver +truck farm|1 +(noun)|truck garden|farm +truck farming|1 +(noun)|farming|agriculture|husbandry +truck garden|1 +(noun)|truck farm|farm +truck stop|1 +(noun)|service station +truck traffic|1 +(noun)|vehicular traffic|vehicle traffic +truckage|2 +(noun)|fee +(noun)|hauling|trucking|transportation|shipping|transport +trucker|1 +(noun)|teamster|truck driver|driver +trucking|1 +(noun)|hauling|truckage|transportation|shipping|transport +trucking company|1 +(noun)|shipping company +trucking industry|1 +(noun)|industry +trucking rig|1 +(noun)|trailer truck|tractor trailer|rig|articulated lorry|semi|truck|motortruck +truckle|3 +(noun)|trundle bed|trundle|truckle bed|bed +(verb)|yield|relent|soften +(verb)|fawn|toady|bootlick|kowtow|kotow|suck up|flatter|blandish +truckle bed|1 +(noun)|trundle bed|trundle|truckle|bed +truckler|1 +(noun)|apple polisher|bootlicker|fawner|groveller|groveler|ass-kisser|sycophant|toady|crawler|lackey +truckling|1 +(noun)|obedience|obeisance +truculence|1 +(noun)|truculency|aggressiveness|contentiousness|belligerence|pugnacity|quarrelsomeness +truculency|1 +(noun)|truculence|aggressiveness|contentiousness|belligerence|pugnacity|quarrelsomeness +truculent|2 +(adj)|aggressive +(adj)|hostile +trudge|2 +(noun)|hike|tramp +(verb)|slog|footslog|plod|pad|tramp|walk +trudger|1 +(noun)|plodder|slogger|pedestrian|walker|footer +true|17 +(adj)|true |actual|genuine|literal|real|apodictic|apodeictic|factual|so|truthful|sure|correct|right|faithful|genuine|echt|honest|honorable|sincere +(adj)|real|genuine |echt +(adj)|typical +(adj)|dead on target|accurate +(adj)|faithful +(adj)|truthful |honest|veracious|honest +(adj)|dependable|honest|reliable|trustworthy |trusty +(adj)|genuine|unfeigned|sincere +(adj)|real +(adj)|geographic |geographical +(adj)|lawful|rightful|legitimate +(adj)|on-key|harmonious +(adj)|straight|even +(adj)|reliable +(noun)|alignment +(verb)|true up|align|aline|line up|adjust +(adv)|admittedly|avowedly|confessedly +true-blue|1 +(adj)|loyal +true-false|1 +(adj)|true-false +true-to-life|2 +(adj)|true to life|realistic +(adj)| +true anomaly|1 +(noun)|angular distance +true bacteria|1 +(noun)|eubacteria|eubacterium|moneran|moneron +true bill|1 +(noun)|indictment|bill of indictment +true blackberry|1 +(noun)|Rubus fruticosus|blackberry|blackberry bush +true bug|1 +(noun)|hemipterous insect|bug|hemipteran|hemipteron +true cat|1 +(noun)|cat|feline|felid +true cedar|1 +(noun)|cedar|cedar tree|conifer|coniferous tree +true dwarf|1 +(noun)|primordial dwarf|hypoplastic dwarf|normal dwarf|dwarf|midget|nanus +true fir|1 +(noun)|fir|fir tree|conifer|coniferous tree +true flycatcher|1 +(noun)|Old World flycatcher|flycatcher|oscine|oscine bird +true frog|1 +(noun)|ranid|frog|toad|toad frog|anuran|batrachian|salientian +true fungus|1 +(noun)|fungus +true glottis|1 +(noun)|rima glottidis|rima vocalis|glottis vera|rima +true guava|1 +(noun)|guava|guava bush|Psidium guajava|fruit tree +true heath|1 +(noun)|erica|heath +true jasmine|1 +(noun)|common jasmine|jessamine|Jasminum officinale|jasmine +true laurel|1 +(noun)|bay|bay laurel|bay tree|Laurus nobilis|laurel +true lobster|1 +(noun)|lobster +true lover's knot|1 +(noun)|fisherman's knot|truelove knot|knot +true mahogany|1 +(noun)|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany|mahogany tree +true marmoset|1 +(noun)|marmoset +true pepper|1 +(noun)|pepper vine|vine +true pine|1 +(noun)|pine|pine tree|conifer|coniferous tree +true puffball|1 +(noun)|puffball|fungus +true rib|1 +(noun)|rib|costa +true sago palm|1 +(noun)|Metroxylon sagu|sago palm +true sandalwood|1 +(noun)|sandalwood tree|Santalum album|tree +true seal|1 +(noun)|earless seal|hair seal|seal +true senna|1 +(noun)|Alexandria senna|Alexandrian senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna +true slime mold|1 +(noun)|acellular slime mold|plasmodial slime mold|myxomycete|slime mold|slime mould +true sparrow|1 +(noun)|sparrow|passerine|passeriform bird +true statement|1 +(noun)|truth|statement +true to|1 +(adj)|faithful +true to life|2 +(adj)|true-to-life|realistic +(adj)| +true toad|1 +(noun)|frog|toad|toad frog|anuran|batrachian|salientian +true tulipwood|1 +(noun)|tulipwood|whitewood|white poplar|yellow poplar|wood +true up|1 +(verb)|true|align|aline|line up|adjust +true vampire bat|1 +(noun)|vampire bat|carnivorous bat|microbat +true vocal cord|1 +(noun)|true vocal fold|inferior vocal cord|inferior vocal fold|vocal cord|vocal fold|vocal band|plica vocalis +true vocal fold|1 +(noun)|true vocal cord|inferior vocal cord|inferior vocal fold|vocal cord|vocal fold|vocal band|plica vocalis +true warbler|1 +(noun)|Old World warbler|warbler +truehearted|1 +(adj)|firm|loyal|fast|faithful +truelove|1 +(noun)|sweetheart|sweetie|steady|lover +truelove knot|1 +(noun)|fisherman's knot|true lover's knot|knot +trueness|1 +(noun)|exactness|exactitude +truffaut|1 +(noun)|Truffaut|Francois Truffaut|film maker|filmmaker|film producer|movie maker +truffle|3 +(noun)|earthnut|earth-ball|fungus +(noun)|earthnut|vegetable|veggie +(noun)|chocolate truffle|candy +truism|1 +(noun)|truth|true statement +truly|4 +(adv)|genuinely|really +(adv)|rightfully +(adv)|sincerely|unfeignedly +(adv)|in truth|really +truman|1 +(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States|United States President|President|Chief Executive +truman doctrine|1 +(noun)|Truman doctrine|foreign policy +trumbo|1 +(noun)|Trumbo|Dalton Trumbo|screenwriter|film writer +trumbull|3 +(noun)|Trumbull|Jonathan Trumbull|American Revolutionary leader +(noun)|Trumbull|John Trumbull|painter +(noun)|Trumbull|John Trumbull|poet +trump|6 +(noun)|trump card|playing card +(noun)|cornet|horn|trumpet|brass +(verb)|sound|go +(verb)|outdo|outflank|best|scoop|beat|beat out|crush|shell|trounce|vanquish +(verb)|ruff|move|go +(verb)|trump out|announce|denote +trump card|1 +(noun)|trump|playing card +trump out|1 +(verb)|trump|announce|denote +trump up|1 +(verb)|concoct|fabricate|manufacture|cook up|make up|invent +trumped-up|1 +(adj)|false +trumpery|2 +(noun)|folderol|rubbish|tripe|trash|wish-wash|applesauce|codswallop|drivel|garbage +(noun)|falderal|folderol|frills|gimcrackery|gimcracks|nonsense|decoration|ornament|ornamentation +trumpet|4 +(noun)|cornet|horn|trump|brass +(verb)|proclaim|exclaim|promulgate +(verb)|play +(verb)|utter|emit|let out|let loose +trumpet-wood|2 +(noun)|trumpetwood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree|flowering tree +(noun)| +trumpet arch|1 +(noun)|squinch +trumpet creeper|1 +(noun)|trumpet vine|Campsis radicans|Bignoniaceae|family Bignoniaceae +trumpet flower|3 +(noun)|chalice vine|cupflower|Solandra guttata|shrub|bush +(noun)|cross vine|quartervine|quarter-vine|Bignonia capreolata|vine +(noun)|trumpet honeysuckle|coral honeysuckle|trumpet vine|Lonicera sempervirens|honeysuckle +trumpet honeysuckle|1 +(noun)|coral honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle +trumpet section|1 +(noun)|brass section|brass +trumpet tree|1 +(noun)|trumpetwood|trumpet-wood|snake wood|imbauba|Cecropia peltata|angiospermous tree|flowering tree +trumpet vine|2 +(noun)|trumpet creeper|Campsis radicans|Bignoniaceae|family Bignoniaceae +(noun)|trumpet honeysuckle|coral honeysuckle|trumpet flower|Lonicera sempervirens|honeysuckle +trumpet weed|1 +(noun)|Joe-Pye weed|purple boneset|marsh milkweed|Eupatorium purpureum|herb|herbaceous plant +trumpeter|4 +(noun)|cornetist|musician|instrumentalist|player +(noun)|herald|messenger|courier +(noun)|wading bird|wader +(noun)|trumpeter swan|Cygnus buccinator|swan +trumpeter swan|1 +(noun)|trumpeter|Cygnus buccinator|swan +trumpetfish|1 +(noun)|Aulostomus maculatus|teleost fish|teleost|teleostan +trumpets|2 +(noun)|huntsman's horn|huntsman's horns|yellow trumpet|yellow pitcher plant|Sarracenia flava|pitcher plant +(noun)|cornet|horn|trumpet|trump|brass +trumpetwood|1 +(noun)|trumpet-wood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree|flowering tree +trumping|1 +(noun)|ruff|turn|play +truncate|4 +(adj)|truncated|short +(verb)|substitute|replace +(verb)|estimate|gauge|approximate|guess|judge +(verb)|cut short|shorten +truncated|2 +(adj)|abbreviated|shortened|short +(adj)|truncate|short +truncated cone|1 +(noun)|frustum +truncated pyramid|1 +(noun)|frustum +truncation|3 +(noun)|shortness|lowness +(noun)|carving|cutting +(noun)|shortening +truncation error|1 +(noun)|miscalculation|misreckoning|misestimation +truncheon|1 +(noun)|nightstick|billy|billystick|billy club|club +truncocolumella|1 +(noun)|Truncocolumella|genus Truncocolumella|fungus genus +truncocolumella citrina|1 +(noun)|Truncocolumella citrina|false truffle +truncus atrioventricularis|1 +(noun)|atrioventricular bundle|bundle of His|atrioventricular trunk|cardiac muscle|heart muscle +truncus celiacus|1 +(noun)|celiac trunk|celiac artery|arteria celiaca|artery|arteria|arterial blood vessel +truncus pulmonalis|1 +(noun)|pulmonary trunk|pulmonary artery|arteria pulmonalis +trundle|3 +(noun)|trundle bed|truckle bed|truckle|bed +(noun)|wheel|roller +(verb)|travel|go|move|locomote +trundle bed|1 +(noun)|trundle|truckle bed|truckle|bed +trunk|5 +(noun)|tree trunk|bole|stalk|stem +(noun)|baggage|luggage +(noun)|torso|body|body part +(noun)|luggage compartment|automobile trunk|compartment +(noun)|proboscis|snout|neb +trunk call|1 +(noun)|long-distance|long-distance call|call|phone call|telephone call +trunk hose|1 +(noun)|breeches|knee breeches|knee pants|knickerbockers|knickers +trunk lid|1 +(noun)|lid +trunk line|2 +(noun)|trunk route|line|railway line|rail line +(noun)|telephone line|phone line|telephone circuit|subscriber line|line +trunk road|1 +(noun)|highroad|highway|main road +trunk route|1 +(noun)|trunk line|line|railway line|rail line +trunkfish|1 +(noun)|boxfish|plectognath|plectognath fish +trunks|6 +(noun)|short pants|shorts|trousers|pants +(noun)|trunk|tree trunk|bole|stalk|stem +(noun)|trunk|baggage|luggage +(noun)|torso|trunk|body|body part +(noun)|luggage compartment|automobile trunk|trunk|compartment +(noun)|proboscis|trunk|snout|neb +trunnel|1 +(noun)|treenail|trenail|peg|nog +truss|6 +(noun)|bandage|patch +(noun)|framework|frame|framing +(noun)|corbel|bracket +(verb)|tie|bind +(verb)|tie down|tie up|bind|restrain|confine|hold +(verb)|hold|support|sustain|hold up +truss bridge|1 +(noun)|bridge|span +trussed|1 +(adj)|tied|bound +trust|12 +(noun)|property|belongings|holding|material possession +(noun)|reliance|certainty +(noun)|trustingness|trustfulness|trait +(noun)|corporate trust|combine|cartel|consortium|pool|syndicate +(noun)|faith|belief +(noun)|confidence|friendship|friendly relationship +(verb)|swear|rely|bank|believe +(verb)|permit|allow|let|countenance +(verb)|believe|expect|anticipate +(verb)|hope|desire|wish +(verb)|entrust|intrust|confide|commit|pass|hand|reach|pass on|turn over|give +(verb)|sell +trust account|1 +(noun)|savings account trust|savings bank trust|trustee account|Totten trust|trust +trust busting|1 +(noun)|government|governing|governance|government activity +trust company|1 +(noun)|trust corporation|financial institution|financial organization|financial organisation +trust corporation|1 +(noun)|trust company|financial institution|financial organization|financial organisation +trust deed|1 +(noun)|deed of trust|legal document|legal instrument|official document|instrument +trust fund|1 +(noun)|fund|monetary fund +trust territory|1 +(noun)|trusteeship|district|territory|territorial dominion|dominion +trustbuster|1 +(noun)|agent|federal agent +trusted|1 +(adj)|sure|trustworthy |trusty +trustee|2 +(noun)|legal guardian|fiduciary +(noun)|regent|committee member +trustee-beneficiary relation|1 +(noun)|fiduciary relation +trustee account|1 +(noun)|savings account trust|savings bank trust|trust account|Totten trust|trust +trusteeship|1 +(noun)|trust territory|district|territory|territorial dominion|dominion +trusteeship council|1 +(noun)|Trusteeship Council|TC|council +truster|1 +(noun)|believer|supporter|protagonist|champion|admirer|booster|friend +trustful|1 +(adj)|trustful |trusting|confiding|unsuspecting|unsuspicious|trusting|credulous +trustfully|2 +(adv)|trustingly|confidingly +(adv)|showing trust +trustfulness|1 +(noun)|trust|trustingness|trait +trustiness|1 +(noun)|trustworthiness|trait +trusting|2 +(adj)|trustful |confiding|unsuspecting|unsuspicious|credulous +(adj)|trustful +trustingly|1 +(adv)|trustfully|confidingly +trustingness|1 +(noun)|trust|trustfulness|trait +trustworthiness|1 +(noun)|trustiness|trait +trustworthy|2 +(adj)|trustworthy |trusty|authentic|reliable|creditworthy|responsible|dependable|honest|reliable|true|fiducial|sure|trusted|faithful|honest|honorable|reliable|dependable|responsible +(adj)|responsible +trusty|1 +(adj)|trustworthy |authentic|reliable|creditworthy|responsible|dependable|honest|reliable|true|fiducial|sure|trusted|faithful|honest|honorable|reliable|dependable|responsible +truth|5 +(noun)|fact +(noun)|the true|verity|actuality +(noun)|true statement|statement +(noun)|accuracy|quality +(noun)|Truth|Sojourner Truth|abolitionist|emancipationist|feminist|women's rightist|women's liberationist|libber +truth drug|1 +(noun)|truth serum|intravenous anesthetic +truth quark|1 +(noun)|top quark|quark +truth serum|1 +(noun)|truth drug|intravenous anesthetic +truthful|2 +(adj)|truthful |true|honest|veracious|honest +(adj)|so|true +truthfulness|1 +(noun)|honesty|honestness +try|10 +(noun)|attempt|effort|endeavor|endeavour|activity +(verb)|seek|attempt|essay|assay|act|move|try out +(verb)|test|prove|try out|examine|essay|judge +(verb)|judge|adjudicate|decide|make up one's mind|determine +(verb)|sample|try out|taste|consume|ingest|take in|take|have +(verb)|hear|probe|examine +(verb)|pain|anguish|hurt +(verb)|strain|stress|afflict +(verb)|render|melt|run|melt down +(verb)|try on|wear|put on|get into|don|assume +try-on|1 +(noun)|fitting|trying on|test|trial|run +try for|1 +(verb)|go for|compete|vie|contend +try on|1 +(verb)|try|wear|put on|get into|don|assume +try out|4 +(verb)|test|prove|try|examine|essay|judge +(verb)|experiment +(verb)|audition|perform +(verb)|sample|try|taste|consume|ingest|take in|take|have +try square|1 +(noun)|square +trygve halvden lie|1 +(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat|diplomatist +trygve lie|1 +(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat|diplomatist +trying|2 +(adj)|difficult |hard +(adj)|nerve-racking|nerve-wracking|stressful|disagreeable +trying on|1 +(noun)|fitting|try-on|test|trial|run +tryout|2 +(noun)|trial|trial run|test|experiment|experimentation +(noun)|audition|test|trial|run +trypetidae|1 +(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family +trypsin|1 +(noun)|enzyme +trypsinogen|1 +(noun)|trypsin +tryptophan|1 +(noun)|tryptophane|essential amino acid +tryptophane|1 +(noun)|tryptophan|essential amino acid +tryst|2 +(noun)|rendezvous|date|appointment|engagement +(noun)|assignation|rendezvous +tsa|1 +(noun)|Transportation Safety Administration|TSA|agency|federal agency|government agency|bureau|office|authority +tsar|1 +(noun)|czar|tzar|sovereign|crowned head|monarch +tsarina|1 +(noun)|czarina|tzarina|czaritza|tsaritsa|female aristocrat +tsarist|1 +(adj)|czarist|czaristic|tsaristic|tzarist|tyrant|autocrat|despot +tsaristic|1 +(adj)|czarist|czaristic|tsarist|tzarist|tyrant|autocrat|despot +tsaritsa|1 +(noun)|czarina|tsarina|tzarina|czaritza|female aristocrat +tsaritsyn|1 +(noun)|Volgograd|Stalingrad|Tsaritsyn|city|metropolis|urban center +tsetse|1 +(noun)|tsetse fly|tzetze fly|tzetze|glossina|fly +tsetse fly|1 +(noun)|tsetse|tzetze fly|tzetze|glossina|fly +tsh|1 +(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone|endocrine|internal secretion +tshiluba|1 +(noun)|Luba|Tshiluba|Bantu|Bantoid language +tsimshian|2 +(noun)|Tsimshian|Penutian +(noun)|Tsimshian|Penutian +tsine|1 +(noun)|banteng|banting|Bos banteng|ox|wild ox +tsoris|1 +(noun)|distress|hurt|suffering +tsouic|1 +(noun)|Tsouic|Formosan +tss|1 +(noun)|toxic shock|toxic shock syndrome|TSS|syndrome +tsuga|1 +(noun)|Tsuga|genus Tsuga|gymnosperm genus +tsuga canadensis|1 +(noun)|eastern hemlock|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock|hemlock tree +tsuga caroliniana|1 +(noun)|Carolina hemlock|Tsuga caroliniana|hemlock|hemlock tree +tsuga heterophylla|1 +(noun)|western hemlock|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock|hemlock tree +tsuga mertensiana|1 +(noun)|mountain hemlock|black hemlock|Tsuga mertensiana|hemlock|hemlock tree +tsunami|1 +(noun)|tidal wave|wave|moving ridge +tsung dao lee|1 +(noun)|Lee|Tsung Dao Lee|nuclear physicist +tsuris|1 +(noun)|trouble|difficulty +tsushima|1 +(noun)|Tsushima|naval battle +tsutsugamushi disease|1 +(noun)|scrub typhus|rickettsial disease|rickettsiosis +tswana|3 +(adj)|Tswana|Sotho|Bantu +(noun)|Tswana|Bechuana|Batswana|Bantu +(noun)|Tswana|Setswana|Sechuana|Sotho +tt|3 +(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|ephemeris time|time unit|unit of time +(noun)|Palau|Republic of Palau|TT|country|state|land +(noun)|Micronesia|Federated States of Micronesia|TT|country|state|land +tuamotu archipelago|1 +(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago +tuareg|2 +(noun)|Tuareg|African +(noun)|Tuareg|Berber +tuatara|1 +(noun)|Sphenodon punctatum|diapsid|diapsid reptile +tuatha de|1 +(noun)|Tuatha De Danann|Tuatha De|Celtic deity +tuatha de danann|1 +(noun)|Tuatha De Danann|Tuatha De|Celtic deity +tub|3 +(noun)|bathtub|bathing tub|bath|vessel +(noun)|vat|vessel +(noun)|tubful|containerful +tub-cart|1 +(noun)|pony cart|ponycart|donkey cart|cart +tub-thumper|1 +(noun)|orator|speechmaker|rhetorician|public speaker|speechifier +tub gurnard|1 +(noun)|yellow gurnard|Trigla lucerna|gurnard +tuba|1 +(noun)|bass horn|sousaphone|brass|bass +tuba root|1 +(noun)|derris root|Derris elliptica|vine +tubal|1 +(adj)|structure|anatomical structure|complex body part|bodily structure|body structure +tubal ligation|1 +(noun)|ligation|surgical contraception +tubal pregnancy|1 +(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis +tubbiness|1 +(noun)|chubbiness|pudginess|rolypoliness|plumpness|embonpoint +tubby|1 +(adj)|dumpy|podgy|pudgy|fat +tube|9 +(noun)|tubing|conduit +(noun)|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device +(noun)|pipe|cylinder +(noun)|tube-shaped structure|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|metro|subway|underground|railway|railroad|railroad line|railway line|railway system +(verb)|supply|provide|render|furnish +(verb)|bring|convey|take +(verb)|ride +(verb)|envelop|enfold|enwrap|wrap|enclose +tube-nosed bat|1 +(noun)|harpy|harpy bat|tube-nosed fruit bat|fruit bat|megabat +tube-nosed fruit bat|1 +(noun)|harpy|harpy bat|tube-nosed bat|fruit bat|megabat +tube-shaped|1 +(adj)|cylindrical|tubelike|vasiform|rounded +tube-shaped structure|1 +(noun)|tube|structure|anatomical structure|complex body part|bodily structure|body structure +tube foot|1 +(noun)|foot|invertebrate foot +tube well|1 +(noun)|driven well|well +tube wrench|1 +(noun)|pipe wrench|adjustable wrench|adjustable spanner +tubed|1 +(adj)|tubed +tubeless|2 +(adj)|tubeless +(noun)|tubeless tire|pneumatic tire|pneumatic tyre +tubeless tire|1 +(noun)|tubeless|pneumatic tire|pneumatic tyre +tubelike|1 +(adj)|cylindrical|tube-shaped|vasiform|rounded +tuber|2 +(noun)|stalk|stem +(noun)|Tuber|genus Tuber|fungus genus +tuber root|1 +(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|Indian paintbrush|Asclepias tuberosa|milkweed|silkweed +tuberaceae|1 +(noun)|Tuberaceae|family Tuberaceae|fungus family +tuberales|1 +(noun)|Tuberales|order Tuberales|fungus order +tubercle|3 +(noun)|lesion +(noun)|nodule|plant process|enation +(noun)|tuberosity|eminence|process|outgrowth|appendage +tubercle bacillus|1 +(noun)|Mycobacterium tuberculosis|mycobacteria|mycobacterium +tubercular|4 +(adj)|lesion +(adj)|process|outgrowth|appendage +(adj)|infectious disease +(adj)|tuberculous|ill |sick +tubercularia|1 +(noun)|Tubercularia|genus Tubercularia|fungus genus +tuberculariaceae|1 +(noun)|Tuberculariaceae|family Tuberculariaceae|fungus family +tuberculate|1 +(adj)|plant process|enation +tuberculin|1 +(noun)|liquid +tuberculin skin test|1 +(noun)|tuberculin test|skin test +tuberculin test|1 +(noun)|tuberculin skin test|skin test +tuberculoid|1 +(adj)|infectious disease +tuberculoid leprosy|1 +(noun)|leprosy|Hansen's disease +tuberculosis|1 +(noun)|TB|T.B.|infectious disease +tuberculous|1 +(adj)|tubercular|ill |sick +tuberose|1 +(noun)|Polianthes tuberosa|flower +tuberosity|1 +(noun)|tubercle|eminence|process|outgrowth|appendage +tuberous|1 +(adj)|stalk|stem +tuberous begonia|1 +(noun)|begonia +tuberous plant|1 +(noun)|vascular plant|tracheophyte +tuberous vetch|1 +(noun)|heath pea|earth-nut pea|earthnut pea|Lathyrus tuberosus|vine +tubful|1 +(noun)|tub|containerful +tubing|1 +(noun)|tube|conduit +tubman|1 +(noun)|Tubman|Harriet Tubman|abolitionist|emancipationist +tubocurarine|1 +(noun)|curare|alkaloid|neuromuscular blocking agent|plant toxin|phytotoxin +tubuai islands|1 +(noun)|Tubuai Islands|Austral Islands|archipelago +tubular|1 +(adj)|cannular|hollow +tubular cavity|1 +(noun)|cavity|bodily cavity|cavum +tubule|1 +(noun)|tube|tube-shaped structure +tubulidentata|1 +(noun)|Tubulidentata|order Tubulidentata|animal order +tucana|1 +(noun)|Tucana|constellation +tuchman|1 +(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian|historiographer +tuck|7 +(noun)|comestible|edible|eatable|pabulum|victual|victuals +(noun)|position|posture|attitude +(noun)|pleat|plait +(noun)|rapier|sword|blade|brand|steel +(verb)|insert|enclose|inclose|shut in +(verb)|fold|fold up|turn up +(verb)|gather|pucker|sew|run up|sew together|stitch +tuck away|1 +(verb)|tuck in|put away|eat up|finish|polish off +tuck box|1 +(noun)|box +tuck in|1 +(verb)|tuck away|put away|eat up|finish|polish off +tuck shop|1 +(noun)|confectionery|candy store +tuckahoe|1 +(noun)|green arrow arum|Peltandra virginica|arrow arum +tucked|1 +(adj)|tucked +tucker|5 +(noun)|Tucker|Benjamin Ricketson Tucker|anarchist|nihilist|syndicalist +(noun)|Tucker|Sophie Tucker|vaudevillian|comedienne +(noun)|sewer +(noun)|yoke +(verb)|exhaust|wash up|beat|tucker out|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +tucker-bag|1 +(noun)|bag +tucker out|1 +(verb)|exhaust|wash up|beat|tucker|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +tucket|1 +(noun)|flourish|fanfare|tune|melody|air|strain|melodic line|line|melodic phrase +tucson|1 +(noun)|Tucson|city|metropolis|urban center +tudor|3 +(adj)|Tudor|dynasty +(noun)|Tudor|House of Tudor|dynasty +(noun)|Tudor|Antony Tudor|dancer|professional dancer|choreographer +tudor arch|1 +(noun)|Tudor arch|four-centered arch|arch +tudor architecture|1 +(noun)|Tudor architecture|perpendicular|perpendicular style|English-Gothic|English-Gothic architecture +tudung|1 +(noun)|scarf +tues|1 +(noun)|Tuesday|Tues|weekday +tuesday|1 +(noun)|Tuesday|Tues|weekday +tufa|2 +(noun)|calc-tufa|rock|stone +(noun)|tuff|volcanic rock +tuff|1 +(noun)|tufa|volcanic rock +tuft|2 +(noun)|tussock|bunch|clump|cluster|clustering +(noun)|crest +tufted|3 +(adj)|caespitose|cespitose|gregarious +(adj)|adorned |decorated +(adj)|crested|topknotted|adorned |decorated +tufted centaury|1 +(noun)|Centaurium scilloides|centaury +tufted gentian|1 +(noun)|Gentianopsis holopetala|Gentiana holopetala|fringed gentian +tufted pansy|1 +(noun)|horned violet|Viola cornuta|viola +tufted puffin|1 +(noun)|Lunda cirrhata|puffin +tufted titmouse|1 +(noun)|Parus bicolor|titmouse|tit +tufted vetch|1 +(noun)|bird vetch|Calnada pea|Vicia cracca|vetch +tug|9 +(noun)|jerk|pull|pulling +(noun)|tugboat|towboat|tower|boat +(verb)|attract|pull|pull in|draw|draw in +(verb)|labor|labour|push|drive|fight|struggle +(verb)|tow +(verb)|lug|tote|transport|carry +(verb)|move|displace +(verb)|pull|draw|force +(verb)|fight|struggle +tug-of-war|2 +(noun)|conflict|struggle|battle +(noun)|athletic contest|athletic competition|athletics +tugboat|1 +(noun)|tug|towboat|tower|boat +tugela|1 +(noun)|Tugela|Tugela Falls|waterfall|falls +tugela falls|1 +(noun)|Tugela|Tugela Falls|waterfall|falls +tugger|1 +(noun)|puller|dragger|worker +tughrik|1 +(noun)|tugrik|Mongolian monetary unit +tugrik|1 +(noun)|tughrik|Mongolian monetary unit +tuileries|2 +(noun)|Tuileries|Tuileries Palace|palace +(noun)|Tuileries|Tuileries Gardens|formal garden +tuileries gardens|1 +(noun)|Tuileries|Tuileries Gardens|formal garden +tuileries palace|1 +(noun)|Tuileries|Tuileries Palace|palace +tuille|1 +(noun)|armor plate|armour plate|armor plating|plate armor|plate armour +tuition|2 +(noun)|fee +(noun)|tutelage|tutorship|teaching|instruction|pedagogy +tularaemia|1 +(noun)|tularemia|rabbit fever|deer fly fever|yatobyo|zoonosis|zoonotic disease +tularemia|1 +(noun)|tularaemia|rabbit fever|deer fly fever|yatobyo|zoonosis|zoonotic disease +tule tree|1 +(noun)|Ahuehuete|Tule tree|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum +tulestoma|1 +(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus +tulip|1 +(noun)|liliaceous plant +tulip bed|1 +(noun)|flowerbed|flower bed|bed of flowers +tulip gentian|1 +(noun)|prairie gentian|bluebell|Eustoma grandiflorum|wildflower|wild flower +tulip orchid|1 +(noun)|Encyclia citrina|Cattleya citrina|orchid|orchidaceous plant +tulip poplar|1 +(noun)|tulip tree|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree|flowering tree +tulip tree|1 +(noun)|tulip poplar|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree|flowering tree +tulipa|1 +(noun)|Tulipa|genus Tulipa|liliid monocot genus +tulipa armena|1 +(noun)|dwarf tulip|Tulipa armena|Tulipa suaveolens|tulip +tulipa clusiana|1 +(noun)|lady tulip|candlestick tulip|Tulipa clusiana|tulip +tulipa gesneriana|1 +(noun)|Tulipa gesneriana|tulip +tulipa suaveolens|1 +(noun)|dwarf tulip|Tulipa armena|Tulipa suaveolens|tulip +tulipwood|2 +(noun)|wood +(noun)|true tulipwood|whitewood|white poplar|yellow poplar|wood +tulipwood tree|1 +(noun)|tree +tulle|1 +(noun)|net|network|mesh|meshing|meshwork +tully|1 +(noun)|Cicero|Marcus Tullius Cicero|Tully|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader +tulostoma|1 +(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus +tulostomaceae|1 +(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family +tulostomataceae|1 +(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family +tulostomatales|1 +(noun)|Tulostomatales|order Tulostomatales|fungus order +tulsa|1 +(noun)|Tulsa|city|metropolis|urban center +tulu|2 +(noun)|Tulu|Dravidian +(noun)|Tulu|South Dravidian +tum|1 +(noun)|stomach|tummy|breadbasket|internal organ|viscus +tumble|13 +(noun)|acrobatic stunt|acrobatic feat +(noun)|spill|fall|slip|trip +(verb)|topple|descend|fall|go down|come down +(verb)|topple|tip|push|force +(verb)|roll over +(verb)|whirl|whirl around|move +(verb)|crumble|crumple|break down|collapse|change integrity +(verb)|scramble|jumble|throw together +(verb)|catch on|get wise|get onto|latch on|cotton on|twig|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +(verb)|drop +(verb)|toss +(verb)|worsen|decline +(verb)|exercise|work out +tumble-down|1 +(adj)|bedraggled|broken-down|dilapidated|ramshackle|tatterdemalion|unsound|damaged +tumble-dryer|1 +(noun)|tumble drier|clothes dryer|clothes drier +tumble drier|1 +(noun)|tumble-dryer|clothes dryer|clothes drier +tumble dry|1 +(verb)|dry|dry out +tumble grass|1 +(noun)|witchgrass|witch grass|old witchgrass|old witch grass|Panicum capillare|panic grass +tumblebug|1 +(noun)|dung beetle +tumbler|4 +(noun)|gymnast +(noun)|glass|drinking glass +(noun)|obstruction|obstructor|obstructer|impediment|impedimenta +(noun)|roller|tumbler pigeon|domestic pigeon +tumbler pigeon|1 +(noun)|roller|tumbler|domestic pigeon +tumbleweed|4 +(noun)|weed +(noun)|Russian thistle|Russian tumbleweed|Russian cactus|Salsola kali tenuifolia|shrub|bush +(noun)|winged pigweed|Cycloloma atriplicifolium|shrub|bush +(noun)|Amaranthus albus|Amaranthus graecizans|amaranth +tumbling|3 +(adj)|billowing|rolling|moving +(adj)|falling +(noun)|acrobatics|gymnastics|gymanstic exercise +tumbrel|1 +(noun)|tumbril|dumpcart +tumbril|1 +(noun)|tumbrel|dumpcart +tumefaction|1 +(noun)|organic process|biological process +tumefy|2 +(verb)|swell +(verb)|swell|swell up|intumesce|tumesce|expand +tumesce|1 +(verb)|swell|swell up|intumesce|tumefy|expand +tumescence|1 +(noun)|tumidity|tumidness +tumescent|1 +(adj)|bloated|distended|puffed|puffy|swollen|tumid|turgid|unhealthy +tumid|3 +(adj)|bombastic|declamatory|large|orotund|turgid|rhetorical +(adj)|bloated|distended|puffed|puffy|swollen|tumescent|turgid|unhealthy +(adj)|erect|hard +tumidity|1 +(noun)|tumidness|swelling|puffiness|lump +tumidness|1 +(noun)|tumidity|swelling|puffiness|lump +tummy|2 +(noun)|pot|potbelly|bay window|corporation|belly|paunch +(noun)|stomach|tum|breadbasket|internal organ|viscus +tummy crunch|1 +(noun)|stomach exercise|exercise|exercising|physical exercise|physical exertion|workout +tummy tuck|1 +(noun)|abdominoplasty|plastic surgery|reconstructive surgery|anaplasty +tumor|1 +(noun)|tumour|neoplasm|growth +tumor necrosis factor|1 +(noun)|tumour necrosis factor|TNF|cytokine +tumor virus|1 +(noun)|virus +tumour|1 +(noun)|tumor|neoplasm|growth +tumour necrosis factor|1 +(noun)|tumor necrosis factor|TNF|cytokine +tump over|2 +(verb)|overturn|tip over|turn over|upset|knock over|bowl over|move|displace +(verb)|overturn|turn over|tip over|turn +tums|2 +(noun)|Tums|antacid|gastric antacid|alkalizer|alkaliser|antiacid +(noun)|stomach|tummy|tum|breadbasket|internal organ|viscus +tumult|3 +(noun)|tumultuousness|uproar|garboil|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|turmoil|agitation +(noun)|commotion|din|ruction|ruckus|rumpus|disturbance +tumultuous|1 +(adj)|disruptive|riotous|troubled|turbulent|unquiet +tumultuous disturbance|1 +(noun)|outburst|disturbance +tumultuously|1 +(adv)|riotously +tumultuousness|1 +(noun)|tumult|uproar|garboil|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +tumulus|1 +(noun)|burial mound|grave mound|barrow|mound|hill +tun|1 +(noun)|barrel|cask +tuna|4 +(noun)|Opuntia tuna|prickly pear|prickly pear cactus +(noun)|tuna fish|tunny|saltwater fish +(noun)|tunny|scombroid|scombroid fish|food fish +(noun)|Anguilla sucklandii|eel +tuna fish|1 +(noun)|tuna|tunny|saltwater fish +tuna fish salad|1 +(noun)|tuna salad|salad +tuna oil|1 +(noun)|fish oil +tuna salad|1 +(noun)|tuna fish salad|salad +tunaburger|1 +(noun)|sandwich +tundra|1 +(noun)|plain|field|champaign +tundra soil|1 +(noun)|soil|dirt +tundra swan|1 +(noun)|Cygnus columbianus|swan +tune|5 +(noun)|melody|air|strain|melodic line|line|melodic phrase|music +(noun)|pitch +(noun)|alteration|modification|adjustment +(verb)|tune up|adjust|set|correct +(verb)|tune up|adjust|set|correct +tune-up|2 +(noun)|warm-up|prolusion|preparation|readying +(noun)|adjustment|registration|readjustment +tune in|1 +(verb)|tune|tune up +tune up|2 +(verb)|tune|adjust|set|correct +(verb)|tune|adjust|set|correct +tuned|3 +(adj)|attuned|adjusted +(adj)|attuned|keyed|adjusted +(adj)|tempered +tuneful|1 +(adj)|tuneful |melodious +tunefully|1 +(adv)|melodiously +tunefulness|1 +(noun)|melodiousness|musicality|musicalness +tuneless|1 +(adj)|tuneless |untuneful|unmelodious +tuner|2 +(noun)|piano tuner|skilled worker|trained worker +(noun)|radio receiver|receiving set|radio set|radio|wireless|receiver|receiving system +tung|1 +(noun)|tung tree|tung-oil tree|Aleurites fordii|angiospermous tree|flowering tree +tung-oil tree|1 +(noun)|tung tree|tung|Aleurites fordii|angiospermous tree|flowering tree +tung oil|1 +(noun)|Chinese wood oil|oil +tung tree|1 +(noun)|tung|tung-oil tree|Aleurites fordii|angiospermous tree|flowering tree +tunga|1 +(noun)|Tunga|genus Tunga|arthropod genus +tunga penetrans|1 +(noun)|chigoe|chigger|chigoe flea|Tunga penetrans|flea +tungstate|1 +(noun)|salt +tungsten|1 +(noun)|wolfram|W|atomic number 74|metallic element|metal +tungsten steel|1 +(noun)|wolfram steel|alloy steel +tungstic acid|1 +(noun)|oxyacid|oxygen acid +tungus|2 +(noun)|Tungus|Evenk|Tungusic +(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic|Tungusic language +tungusic|2 +(noun)|Tungusic|Altaic +(noun)|Tungusic|Tungusic language|Altaic|Altaic language +tungusic language|1 +(noun)|Tungusic|Tungusic language|Altaic|Altaic language +tunguz|1 +(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic|Tungusic language +tunic|2 +(noun)|tunica|adventitia|membrane|tissue layer +(noun)|cloak +tunica|1 +(noun)|tunic|adventitia|membrane|tissue layer +tunica albuginea testes|1 +(noun)|albuginea +tunica conjunctiva bulbi|1 +(noun)|bulbar conjunctiva|conjunctival layer of bulb|conjunctiva +tunica conjunctiva palpebrarum|1 +(noun)|palpebra conjunctiva|conjunctival layer of eyelids|conjunctiva +tunicata|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +tunicate|1 +(noun)|urochordate|urochord|chordate +tuning|1 +(noun)|calibration|standardization|standardisation +tuning fork|1 +(noun)|implement +tunis|1 +(noun)|Tunis|capital of Tunisia|national capital|port +tunisia|1 +(noun)|Tunisia|Republic of Tunisia|African country|African nation +tunisian|3 +(adj)|Tunisian|national capital|port +(adj)|Tunisian|African country|African nation +(noun)|Tunisian|African +tunisian dinar|1 +(noun)|Tunisian dinar|dinar|Tunisian monetary unit +tunisian dirham|1 +(noun)|Tunisian dirham|dirham|Tunisian monetary unit +tunisian monetary unit|1 +(noun)|Tunisian monetary unit|monetary unit +tunker|1 +(noun)|Dunker|Dunkard|Tunker|Baptist|Church of the Brethren|Dunkers|Dippers +tunnage|1 +(noun)|tonnage|tonnage duty|duty|tariff +tunnel|4 +(noun)|passageway +(noun)|burrow|hole|hollow +(verb)|burrow|dig|delve|cut into|turn over +(verb)|penetrate|perforate +tunnel vision|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +tunney|1 +(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter|gladiator +tunny|2 +(noun)|tuna|tuna fish|saltwater fish +(noun)|tuna|scombroid|scombroid fish|food fish +tup|1 +(noun)|ram|sheep +tupac amaru revolutionary movement|1 +(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization|terrorist group|foreign terrorist organization|FTO +tupac katari guerrilla army|1 +(noun)|Tupac Katari Guerrilla Army|EGTK|terrorist organization|terrorist group|foreign terrorist organization|FTO +tupaia|1 +(noun)|Tupaia|genus Tupaia|mammal genus +tupaiidae|1 +(noun)|Tupaiidae|family Tupaiidae|mammal family +tupek|1 +(noun)|tupik|sealskin tent|tent|collapsible shelter +tupelo|3 +(noun)|wood +(noun)|tupelo tree|gum tree|gum +(noun)|Tupelo|town +tupelo family|1 +(noun)|Nyssaceae|family Nyssaceae|sour-gum family|dicot family|magnoliopsid family +tupelo tree|1 +(noun)|tupelo|gum tree|gum +tupi|2 +(noun)|Tupi|South American Indian +(noun)|Tupi|Tupi-Guarani|Tupi-Guarani language +tupi-guarani|1 +(noun)|Tupi-Guarani|Tupi-Guarani language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +tupi-guarani language|1 +(noun)|Tupi-Guarani|Tupi-Guarani language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +tupik|1 +(noun)|tupek|sealskin tent|tent|collapsible shelter +tupinambis|1 +(noun)|Tupinambis|genus Tupinambis|reptile genus +tuppence|1 +(noun)|twopence|coin +tuppeny|1 +(adj)|sixpenny|threepenny|twopenny|two-a-penny|twopenny-halfpenny|cheap |inexpensive +tupungatito|1 +(noun)|Tupungatito|volcano +tupungato|1 +(noun)|Tupungato|mountain peak +turaco|1 +(noun)|touraco|turacou|turakoo|cuculiform bird +turacou|1 +(noun)|touraco|turaco|turakoo|cuculiform bird +turakoo|1 +(noun)|touraco|turaco|turacou|cuculiform bird +turban|2 +(noun)|headdress|headgear +(noun)|pillbox|toque|millinery|woman's hat +turban squash|2 +(noun)|Cucurbita maxima turbaniformis|winter squash|winter squash plant +(noun)|winter squash +turbaned|1 +(adj)|hatted +turbatrix|1 +(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus +turbatrix aceti|1 +(noun)|vinegar eel|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm +turbellaria|1 +(noun)|Turbellaria|class Turbellaria|class +turbid|1 +(adj)|cloudy|muddy|mirky|murky|opaque +turbidity|1 +(noun)|turbidness|cloudiness|murkiness|muddiness +turbidness|1 +(noun)|turbidity|cloudiness|murkiness|muddiness +turbinal|1 +(noun)|turbinate bone|turbinate|bone|os +turbinate|3 +(adj)|bone|os +(adj)|coiling|helical|spiral|spiraling|volute|voluted|whorled|coiled +(noun)|turbinate bone|turbinal|bone|os +turbinate bone|1 +(noun)|turbinate|turbinal|bone|os +turbine|1 +(noun)|rotary engine +turbo-propeller plane|1 +(noun)|propjet|turboprop|propeller plane +turbofan|1 +(noun)|turbojet|turbojet engine|turbofan engine|jet engine +turbofan engine|1 +(noun)|turbojet|turbojet engine|turbofan|jet engine +turbogenerator|1 +(noun)|generator +turbojet|2 +(noun)|turboprop|airplane|aeroplane|plane +(noun)|turbojet engine|turbofan|turbofan engine|jet engine +turbojet engine|1 +(noun)|turbojet|turbofan|turbofan engine|jet engine +turboprop|2 +(noun)|turbojet|airplane|aeroplane|plane +(noun)|propjet|turbo-propeller plane|propeller plane +turbot|2 +(noun)|flounder +(noun)|Psetta maxima|lefteye flounder|lefteyed flounder +turbulence|3 +(noun)|turbulency|physical phenomenon +(noun)|bad weather|inclemency|inclementness +(noun)|upheaval|Sturm und Drang|disorder +turbulency|1 +(noun)|turbulence|physical phenomenon +turbulent|2 +(adj)|disruptive|riotous|troubled|tumultuous|unquiet +(adj)|churning|roiling|roiled|roily|agitated +turbulent flow|1 +(noun)|flow +turbulently|1 +(adv)|stormily|passionately +turcoman|2 +(noun)|Turkoman|Turkmen|Turcoman|Turki +(noun)|Turkmen|Turkoman|Turcoman|Turki|Turkic|Turko-Tatar|Turkic language +turd|1 +(noun)|crap|dirt|shit|shite|poop|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection +turdidae|1 +(noun)|Turdidae|family Turdidae|bird family +turdinae|1 +(noun)|Turdinae|subfamily Turdinae|bird family +turdus|1 +(noun)|Turdus|genus Turdus|bird genus +turdus grayi|1 +(noun)|clay-colored robin|Turdus grayi|thrush +turdus iliacus|1 +(noun)|redwing|Turdus iliacus|thrush +turdus merula|1 +(noun)|blackbird|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush +turdus migratorius|1 +(noun)|robin|American robin|Turdus migratorius|thrush +turdus philomelos|1 +(noun)|song thrush|mavis|throstle|Turdus philomelos|thrush +turdus pilaris|1 +(noun)|fieldfare|snowbird|Turdus pilaris|thrush +turdus torquatus|1 +(noun)|ring ouzel|ring blackbird|ring thrush|Turdus torquatus|thrush +turdus viscivorus|1 +(noun)|missel thrush|mistle thrush|mistletoe thrush|Turdus viscivorus|thrush +tureen|1 +(noun)|serving dish +turf|4 +(noun)|sod|sward|greensward|land|ground|soil +(noun)|city district +(noun)|jurisdiction +(verb)|cover +turf out|1 +(verb)|expel|eject|chuck out|exclude|throw out|kick out|boot out|turn out|move|displace +turf war|1 +(noun)|conflict|struggle|battle +turfan|1 +(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian +turfan dialect|1 +(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian +turfing daisy|2 +(noun)|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb|herbaceous plant +(noun)|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb|herbaceous plant +turgenev|1 +(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer|author +turgid|2 +(adj)|bombastic|declamatory|large|orotund|tumid|rhetorical +(adj)|bloated|distended|puffed|puffy|swollen|tumescent|tumid|unhealthy +turgidity|1 +(noun)|turgidness|flatulence|prolixity|prolixness|long-windedness|wordiness +turgidly|1 +(adv)|bombastically +turgidness|1 +(noun)|turgidity|flatulence|prolixity|prolixness|long-windedness|wordiness +turgor|1 +(noun)|state +turgot|1 +(noun)|Turgot|Anne Robert Jacques Turgot|economist|economic expert +turin|1 +(noun)|Turin|Torino|city|metropolis|urban center +turing|1 +(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician +turing machine|1 +(noun)|Turing machine|computer|computing machine|computing device|data processor|electronic computer|information processing system +turk|1 +(noun)|Turk|Turki +turk's-cap|2 +(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily +(noun)|Turk's-cap|martagon|Lilium martagon|lily +turk's cap-lily|1 +(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily +turk's head|1 +(noun)|Turk's head|knot +turkestan|1 +(noun)|Turkistan|Turkestan|geographical area|geographic area|geographical region|geographic region +turkey|6 +(noun)|Meleagris gallopavo|domestic fowl|fowl|poultry +(noun)|Turkey|Republic of Turkey|country|state|land +(noun)|joker|unpleasant person|disagreeable person +(noun)|poultry +(noun)|bomb|dud|flop|bust +(noun)|ocellated turkey|Agriocharis ocellata|gallinaceous bird|gallinacean +turkey buzzard|1 +(noun)|buzzard|turkey vulture|Cathartes aura|New World vulture|cathartid +turkey cock|1 +(noun)|gobbler|tom|tom turkey|turkey|Meleagris gallopavo +turkey drumstick|1 +(noun)|turkey leg|drumstick +turkey leg|1 +(noun)|turkey drumstick|drumstick +turkey oak|4 +(noun)|American turkey oak|Quercus laevis|oak|oak tree +(noun)|bluejack oak|Quercus incana|oak|oak tree +(noun)|southern red oak|swamp red oak|Quercus falcata|red oak +(noun)|European turkey oak|Quercus cerris|oak|oak tree +turkey red|1 +(noun)|Turkey red|alizarine red|red|redness +turkey stew|1 +(noun)|fricassee +turkey stuffing|1 +(noun)|stuffing|dressing +turkey trot|1 +(noun)|one-step +turkey vulture|1 +(noun)|buzzard|turkey buzzard|Cathartes aura|New World vulture|cathartid +turkey wing|1 +(noun)|wing +turki|2 +(noun)|Turki|Asian|Asiatic +(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic|Altaic language +turkic|2 +(adj)|Turkic|Altaic|Altaic language +(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic|Altaic language +turkic-speaking|1 +(adj)|Turkic-speaking|communicative |communicatory +turkic language|1 +(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic|Altaic language +turkish|2 +(adj)|Turkish|country|state|land +(noun)|Turkish|Turki|Turkic|Turko-Tatar|Turkic language +turkish bath|2 +(noun)|Turkish bath|steam bath|steam room|vapor bath|vapour bath +(noun)|Turkish bath|steam bath|vapor bath|vapour bath|ablution +turkish boxwood|1 +(noun)|boxwood|Turkish boxwood|wood +turkish capital|1 +(noun)|Ankara|Turkish capital|capital of Turkey|national capital +turkish coffee|1 +(noun)|Turkish coffee|coffee|java +turkish delight|1 +(noun)|Turkish Delight|candy +turkish empire|1 +(noun)|Ottoman Empire|Turkish Empire|empire +turkish hizballah|1 +(noun)|Turkish Hizballah|terrorist organization|terrorist group|foreign terrorist organization|FTO +turkish lira|1 +(noun)|lira|Turkish lira|Turkish monetary unit +turkish monetary unit|1 +(noun)|Turkish monetary unit|monetary unit +turkish tobacco|1 +(noun)|Turkish tobacco|tobacco|baccy +turkish towel|1 +(noun)|Turkish towel|terry towel|bath towel +turkistan|1 +(noun)|Turkistan|Turkestan|geographical area|geographic area|geographical region|geographic region +turkmen|4 +(adj)|Turkmen|country|state|land +(noun)|Turkoman|Turkmen|Turcoman|Turki +(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country|state|land +(noun)|Turkmen|Turkoman|Turcoman|Turki|Turkic|Turko-Tatar|Turkic language +turkmen monetary unit|1 +(noun)|Turkmen monetary unit|monetary unit +turkmenia|1 +(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country|state|land +turkmenistan|1 +(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country|state|land +turko-tatar|1 +(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic|Altaic language +turkoman|2 +(noun)|Turkoman|Turkmen|Turcoman|Turki +(noun)|Turkmen|Turkoman|Turcoman|Turki|Turkic|Turko-Tatar|Turkic language +turkomen|3 +(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country|state|land +(noun)|Turkoman|Turkmen|Turcoman|Turki +(noun)|Turkmen|Turkoman|Turcoman|Turki|Turkic|Turko-Tatar|Turkic language +turmeric|2 +(noun)|Curcuma longa|Curcuma domestica|herb|herbaceous plant +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +turmeric root|1 +(noun)|goldenseal|golden seal|yellow root|Hydrastis Canadensis|herb|herbaceous plant +turmoil|3 +(noun)|convulsion|upheaval|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|tumult|agitation +(noun)|agitation|excitement|upheaval|hullabaloo|disturbance +turn|38 +(noun)|bend|crook|curve|curved shape +(noun)|turning|change of course +(noun)|play|activity +(noun)|turn of events|twist|development +(noun)|turning|movement|motion +(noun)|change of direction|reorientation +(noun)|twist|rotation|rotary motion +(noun)|go|spell|tour|shift|work shift|duty period +(noun)|bout|round|playing period|period of play|play +(noun)|act|routine|number|bit|performance|public presentation +(noun)|good turn|favor|favour +(noun)|walk +(verb)|move|turn back|turn away|turn to +(verb)|become|transform|transmute|metamorphose +(verb)|change state|change|turn around|turn off +(verb)|move|displace +(verb)|grow|change +(verb)|send|direct +(verb)|move around|travel|go|move|locomote +(verb)|move +(verb)|turn over|move|displace +(verb)|change by reversal|reverse|change|turn on|turn off +(verb)|plow|plough|till +(verb)|grow|discolor|discolour|colour|color +(verb)|change|alter|modify +(verb)|release|transmit|transfer|transport|channel|channelize|channelise +(verb)|twist|sprain|wrench|wrick|rick|injure|wound +(verb)|form +(verb)|sour|ferment|work|change state +(verb)|do|perform +(verb)|get|acquire +(verb)|move|displace +(verb)|send|direct +(verb)|flex|bend|deform|twist|change shape|change form|deform +(verb)|operate|control +(verb)|aim|take|train|take aim|direct +(verb)|call on|appeal|invoke +(verb)|senesce|age|get on|mature|maturate +turn-on|1 +(noun)|stimulation|stimulus|stimulant|input +turn a blind eye|1 +(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|ignore +turn a loss|1 +(verb)|lose +turn a nice dime|1 +(verb)|turn a nice penny|turn a nice dollar|profit|turn a profit +turn a nice dollar|1 +(verb)|turn a nice dime|turn a nice penny|profit|turn a profit +turn a nice penny|1 +(verb)|turn a nice dime|turn a nice dollar|profit|turn a profit +turn a profit|1 +(verb)|profit|gain|take in|clear|make|earn|realize|realise|pull in|bring in +turn a trick|1 +(verb)|work|do work +turn around|9 +(noun)|reversal|turning|turn +(noun)|turnaround|turnaround time|work time +(noun)|reversal|change of mind|flip-flop|turnabout|turnaround|decision making|deciding +(noun)|turnaround|area +(noun)|turnaround|turnround|preparation|readying +(noun)|reversion|reverse|reversal|turnabout|turnaround|change of direction|reorientation +(verb)|swing around|swing about|turn +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|pick up|better|improve|ameliorate|meliorate +turn away|4 +(verb)|turn +(verb)|deflect|bend|turn +(verb)|reject|turn down|refuse +(verb)|avert|turn +turn back|4 +(verb)|backtrack|double back|return|go back|get back|come back +(verb)|revert|return|retrovert|regress|change by reversal|turn|reverse +(verb)|chase away|drive out|drive away|dispel|drive off|run off|move|displace +(verb)|check|arrest|stop|contain|hold back|defend +turn down|5 +(verb)|refuse|reject|pass up|decline +(verb)|reject|turn away|refuse +(verb)|reject|spurn|freeze off|scorn|pooh-pooh|disdain|refuse|decline +(verb)|worsen|decline +(verb)|lower|lour|decrease|lessen|minify +turn in|4 +(verb)|enter|come in|get into|get in|go into|go in|move into +(verb)|hand over|fork over|fork out|fork up|get in|deliver|render|pass|hand|reach|pass on|turn over|give +(verb)|put on|make|create +(verb)|go to bed|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire +turn indicator|1 +(noun)|blinker|turn signal|trafficator|visual signal +turn of events|1 +(noun)|turn|twist|development +turn of the century|1 +(noun)|historic period|age +turn off|3 +(verb)|switch off|cut|turn out|throw|flip|switch +(verb)|turn +(verb)|put off|repel|repulse +turn on|7 +(verb)|switch on|throw|flip|switch +(verb)|depend on|devolve on|depend upon|ride|hinge on|hinge upon +(verb)|produce|bring forth +(verb)|change +(verb)|agitate|rouse|charge|commove|excite|charge up|disturb|upset|trouble +(verb)|arouse|sex|excite|wind up|stimulate|shake|shake up|excite|stir +(verb)|trip|trip out|get off +turn on a dime|1 +(verb)|turn +turn one's stomach|1 +(verb)|sicken|nauseate|disgust|gross out|revolt|repel +turn out|12 +(verb)|prove|turn up|be +(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about|take place +(verb)|produce|make|create +(verb)|come out|end|stop|finish|terminate|cease +(verb)|appear +(verb)|bear|make|create +(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|move|displace +(verb)|meet|gather|assemble|forgather|foregather +(verb)|equip|fit|fit out|outfit +(verb)|splay|spread out|rotate|turn +(verb)|switch off|cut|turn off|throw|flip|switch +(verb)|get up|arise|uprise|rise +turn over|9 +(verb)|pass|hand|reach|pass on|give|transfer +(verb)|overturn|tip over|upset|knock over|bowl over|tump over|move|displace +(verb)|roll|turn +(verb)|dig|delve|cut into|remove|take|take away|withdraw +(verb)|transact +(verb)|turn|move|displace +(verb)|overturn|tip over|tump over|turn +(verb)|flip|flip over|turn +(verb)|consider|debate|moot|deliberate|hash out|discuss|talk over +turn signal|1 +(noun)|blinker|turn indicator|trafficator|visual signal +turn tail|1 +(verb)|run|scarper|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave|go forth|go away +turn the tables|1 +(verb)|turn the tide|change by reversal|turn|reverse +turn the tide|1 +(verb)|turn the tables|change by reversal|turn|reverse +turn thumbs down|1 +(verb)|vote down|vote +turn to|1 +(verb)|address|communicate|intercommunicate +turn turtle|1 +(verb)|capsize|turtle|overturn|turn over|tip over|tump over +turn up|5 +(verb)|come on|come out|surface|show up|appear +(verb)|fold|fold up|change surface +(verb)|locate|find|regain +(verb)|prove|turn out|be +(verb)|excavate|dig up|obtain +turn up the heat|1 +(verb)|turn up the pressure|coerce|hale|squeeze|pressure|force +turn up the pressure|1 +(verb)|turn up the heat|coerce|hale|squeeze|pressure|force +turnabout|2 +(noun)|reversal|change of mind|flip-flop|turnaround|decision making|deciding +(noun)|reversion|reverse|reversal|turnaround|change of direction|reorientation +turnaround|5 +(noun)|turnaround time|work time +(noun)|reversal|change of mind|flip-flop|turnabout|decision making|deciding +(noun)|area +(noun)|turnround|preparation|readying +(noun)|reversion|reverse|reversal|turnabout|change of direction|reorientation +turnaround time|1 +(noun)|turnaround|work time +turncoat|1 +(noun)|deserter|apostate|renegade|recreant|ratter|quitter +turncock|2 +(noun)|employee +(noun)|stopcock|cock|faucet +turndown|1 +(noun)|nonacceptance|rejection +turned|2 +(adj)|turned |inverted|upside-down|overturned|upset|upturned|reversed|rotated|revolved|wrong-side-out|inside-out +(adj)|off|sour|soured +turned on|2 +(adj)|aroused|horny|randy|ruttish|sexy +(adj)|ablaze|aflame|aroused|passionate +turned out|1 +(adj)|clothed |clad +turner|7 +(noun)|Turner|Nat Turner|slave|insurgent|insurrectionist|freedom fighter|rebel +(noun)|Turner|Henry Hubert Turner|endocrinologist +(noun)|Turner|Joseph Mallord William Turner|painter +(noun)|Turner|Frederick Jackson Turner|historian|historiographer +(noun)|tumbler +(noun)|skilled worker|trained worker +(noun)|food turner|cooking utensil|cookware +turner's syndrome|1 +(noun)|Turner's syndrome|sex-linked disorder +turnery|2 +(noun)|workshop|shop +(noun)|product|production +turnicidae|1 +(noun)|Turnicidae|family Turnicidae|bird family +turning|3 +(noun)|turn|change of course +(noun)|change +(noun)|turn|movement|motion +turning away|1 +(noun)|avoidance|shunning|dodging|rejection +turning point|2 +(noun)|landmark|watershed|juncture|occasion +(noun)|corner|street corner|intersection|crossroad|crossway|crossing|carrefour +turnip|2 +(noun)|white turnip|Brassica rapa|turnip plant +(noun)|root vegetable|cruciferous vegetable +turnip-rooted celery|1 +(noun)|celeriac|celery root|knob celery|root celery|Apium graveolens rapaceum|herb|herbaceous plant +turnip-rooted parsley|1 +(noun)|Hamburg parsley|Petroselinum crispum tuberosum|parsley|Petroselinum crispum +turnip bed|1 +(noun)|bed +turnip cabbage|2 +(noun)|rutabaga|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant +(noun)|kohlrabi|cruciferous vegetable +turnip greens|1 +(noun)|greens|green|leafy vegetable +turnip plant|1 +(noun)|crucifer|cruciferous plant +turnix|1 +(noun)|Turnix|genus Turnix|bird genus +turnix sylvatica|1 +(noun)|striped button quail|Turnix sylvatica|button quail|button-quail|bustard quail|hemipode +turnkey|1 +(noun)|prison guard|jailer|jailor|gaoler|screw|lawman|law officer|peace officer|keeper +turnoff|2 +(noun)|negative stimulation|stimulation|stimulus|stimulant|input +(noun)|road|route +turnout|7 +(noun)|gathering|assemblage +(noun)|widening|part|portion +(noun)|siding|railroad siding|sidetrack|railroad track|railroad|railway +(noun)|output|outturn|product|production +(noun)|outfit|getup|rig|attire|garb|dress +(noun)|attendance|attending +(noun)|rotation|rotary motion +turnover|4 +(noun)|employee turnover|turnover rate|ratio +(noun)|pastry +(noun)|dollar volume|bulk|mass|volume +(noun)|upset|overturn|inversion|upending +turnover rate|1 +(noun)|employee turnover|turnover|ratio +turnpike|2 +(noun)|gate +(noun)|expressway|freeway|motorway|pike|state highway|superhighway|throughway|thruway +turnround|1 +(noun)|turnaround|preparation|readying +turnspit|1 +(noun)|spit +turnstile|1 +(noun)|gate +turnstone|1 +(noun)|plover +turntable|3 +(noun)|platform +(noun)|lazy Susan|tray +(noun)|platform +turnup|1 +(noun)|cuff|lap|overlap +turnverein|1 +(noun)|club|society|guild|gild|lodge|order +turp|1 +(noun)|transurethral resection of the prostate|TURP|resection +turpentine|2 +(noun)|gum terpentine|oleoresin +(noun)|oil of turpentine|spirit of turpentine|turps|essential oil|volatile oil +turpentine camphor weed|1 +(noun)|camphorweed|vinegarweed|Trichostema lanceolatum|blue curls +turpentine weed|1 +(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|Gutierrezia sarothrae|matchweed|matchbush +turpin|1 +(noun)|Turpin|Dick Turpin|highjacker|highwayman|hijacker|road agent +turpitude|1 +(noun)|depravity|transgression|evildoing +turps|2 +(noun)|turpentine|oil of turpentine|spirit of turpentine|essential oil|volatile oil +(noun)|transurethral resection of the prostate|TURP|resection +turquoise|2 +(noun)|mineral|opaque gem +(noun)|greenish blue|aqua|aquamarine|cobalt blue|peacock blue|blue|blueness +turreae|1 +(noun)|tree +turret|2 +(noun)|tower +(noun)|gun enclosure|gun turret|platform|weapons platform +turret clock|1 +(noun)|clock +turritis|1 +(noun)|Turritis|genus Turritis|dilleniid dicot genus +turritis glabra|1 +(noun)|tower mustard|tower cress|Turritis glabra|Arabis glabra|cress|cress plant +tursiops|1 +(noun)|Tursiops|genus Tursiops|mammal genus +tursiops gilli|1 +(noun)|Pacific bottlenose dolphin|Tursiops gilli|bottlenose dolphin|bottle-nosed dolphin|bottlenose +tursiops truncatus|1 +(noun)|Atlantic bottlenose dolphin|Tursiops truncatus|bottlenose dolphin|bottle-nosed dolphin|bottlenose +turtle|3 +(noun)|chelonian|chelonian reptile +(verb)|capsize|turn turtle|overturn|turn over|tip over|tump over +(verb)|hunt|run|hunt down|track down +turtle bean|1 +(noun)|black bean|common bean +turtle soup|1 +(noun)|green turtle soup|soup +turtledove|2 +(noun)|Australian turtledove|Stictopelia cuneata|dove +(noun)|dove|Streptopelia|genus Streptopelia +turtlehead|1 +(noun)|shellflower|shell-flower|snakehead|snake-head|Chelone glabra|marsh plant|bog plant|swamp plant +turtleneck|2 +(adj)|turtlenecked|necked +(noun)|polo-neck|sweater|jersey|T-shirt|tee shirt +turtleneck collar|1 +(noun)|polo-neck collar|collar|neckband +turtlenecked|1 +(adj)|turtleneck|necked +turtler|1 +(noun)|skilled worker|trained worker +tuscaloosa|1 +(noun)|Tuscaloosa|town +tuscan|4 +(adj)|Tuscan|Italian region +(adj)|doric +(noun)|Tuscan|Italian +(noun)|Tuscan|Italian +tuscan order|1 +(noun)|Tuscan order|order +tuscany|1 +(noun)|Tuscany|Toscana|Italian region +tuscarora|2 +(noun)|Tuscarora|Iroquois +(noun)|Tuscarora|Iroquoian|Iroquois|Iroquoian language +tush|1 +(noun)|buttocks|nates|arse|butt|backside|bum|buns|can|fundament|hindquarters|hind end|keister|posterior|prat|rear|rear end|rump|stern|seat|tail|tail end|tooshie|bottom|behind|derriere|fanny|ass|body part +tushery|1 +(noun)|literary composition|literary work +tusk|4 +(noun)|ivory|dentine|dentin +(noun)|tooth +(verb)|horn|pierce|thrust +(verb)|detusk|remove|take|take away|withdraw +tusk shell|1 +(noun)|tooth shell|scaphopod +tuskegee|1 +(noun)|Tuskegee|town +tusker|1 +(noun)|mammal +tussah|1 +(noun)|tusseh|tussur|tussore|tusser|Antheraea mylitta|saturniid|saturniid moth +tussaud|1 +(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler|modeller +tusseh|1 +(noun)|tussah|tussur|tussore|tusser|Antheraea mylitta|saturniid|saturniid moth +tusser|1 +(noun)|tussah|tusseh|tussur|tussore|Antheraea mylitta|saturniid|saturniid moth +tussilago|1 +(noun)|Tussilago|genus Tussilago|asterid dicot genus +tussilago alpina|1 +(noun)|alpine coltsfoot|Homogyne alpina|Tussilago alpina|herb|herbaceous plant +tussilago farfara|1 +(noun)|coltsfoot|Tussilago farfara|herb|herbaceous plant +tussle|3 +(noun)|hassle|scuffle|dogfingt|rough-and-tumble|fight|fighting|combat|scrap +(verb)|scuffle|fight|struggle +(verb)|muss|disarrange +tussock|1 +(noun)|tuft|bunch|clump|cluster|clustering +tussock bellflower|1 +(noun)|spreading bellflower|Campanula carpatica|campanula|bellflower +tussock caterpillar|1 +(noun)|caterpillar +tussock moth|1 +(noun)|lymantriid|moth +tussore|1 +(noun)|tussah|tusseh|tussur|tusser|Antheraea mylitta|saturniid|saturniid moth +tussur|1 +(noun)|tussah|tusseh|tussore|tusser|Antheraea mylitta|saturniid|saturniid moth +tutankhamen|1 +(noun)|Tutankhamen|Pharaoh|Pharaoh of Egypt +tutee|1 +(noun)|learner|scholar|assimilator +tutelage|2 +(noun)|tuition|tutorship|teaching|instruction|pedagogy +(noun)|care|charge|guardianship|protection +tutelar|1 +(adj)|custodial|guardian|tutelary|protective +tutelary|1 +(adj)|custodial|guardian|tutelar|protective +tutelo|2 +(noun)|Tutelo|Sioux|Siouan +(noun)|Tutelo|Siouan|Siouan language +tutor|3 +(noun)|coach|private instructor|teacher|instructor +(verb)|teach|learn|instruct +(verb)|relate|interrelate +tutored|1 +(adj)|instructed|schooled|taught|educated +tutorial|2 +(adj)|teacher|instructor +(noun)|session +tutorship|1 +(noun)|tutelage|tuition|teaching|instruction|pedagogy +tutsan|1 +(noun)|common St John's wort|Hypericum androsaemum|St John's wort +tutsi|1 +(noun)|Tutsi|Watutsi|Watusi|Bantu +tutti-frutti|1 +(noun)|ice cream +tutu|2 +(noun)|Tutu|Desmond Tutu|archpriest|hierarch|high priest|prelate|primate +(noun)|ballet skirt|skirt +tuvalu|2 +(noun)|Tuvalu|country|state|land +(noun)|Tuvalu|Ellice Islands|archipelago +tuvalu dollar|1 +(noun)|Tuvalu dollar|dollar +tux|1 +(noun)|dinner jacket|tuxedo|black tie|formalwear|eveningwear|evening dress|evening clothes +tuxedo|1 +(noun)|dinner jacket|tux|black tie|formalwear|eveningwear|evening dress|evening clothes +tuxedoed|1 +(adj)|clothed |clad +tuxtla gutierrez|1 +(noun)|Tuxtla Gutierrez|city|metropolis|urban center +tv|2 +(noun)|television|telecasting|TV|video|broadcasting +(noun)|television receiver|television|television set|tv set|idiot box|boob tube|telly|goggle box|receiver|receiving system +tv-antenna|1 +(noun)|television antenna|omnidirectional antenna|nondirectional antenna +tv announcer|1 +(noun)|television announcer|announcer +tv audience|1 +(noun)|viewing audience|TV audience|viewers|audience +tv camera|1 +(noun)|television camera|camera|television equipment|video equipment +tv channel|1 +(noun)|channel|television channel|TV channel|television station|TV station +tv dinner|1 +(noun)|TV dinner|convenience food +tv monitor|1 +(noun)|television monitor|monitor +tv newsman|1 +(noun)|television reporter|television newscaster|TV reporter|TV newsman|reporter|newsman|newsperson +tv program|1 +(noun)|television program|TV program|television show|TV show|broadcast|program|programme +tv reporter|1 +(noun)|television reporter|television newscaster|TV reporter|TV newsman|reporter|newsman|newsperson +tv room|1 +(noun)|television room|room +tv set|1 +(noun)|television receiver|television|television set|tv|idiot box|boob tube|telly|goggle box|receiver|receiving system +tv show|1 +(noun)|television program|TV program|television show|TV show|broadcast|program|programme +tv star|1 +(noun)|television star|TV star|star|principal|lead +tv station|1 +(noun)|television station|TV station|station +twaddle|2 +(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|nonsense|bunk|nonsensicality|meaninglessness|hokum +(verb)|chatter|piffle|palaver|prate|tittle-tattle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk|speak|utter|mouth|verbalize|verbalise +twaddler|1 +(noun)|communicator +twain|1 +(noun)|couple|pair|twosome|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +twang|7 +(noun)|sound +(noun)|nasal twang|nasality +(verb)|sound +(verb)|sound|go +(verb)|throb +(verb)|pluck|plunk|pick +(verb)|pronounce|articulate|enounce|sound out|enunciate|say +twat|2 +(noun)|fathead|goof|goofball|bozo|jackass|goose|cuckoo|zany|fool|sap|saphead|muggins|tomfool +(noun)|cunt|puss|pussy|slit|snatch|female genitalia|female genitals|female genital organ|fanny +twayblade|2 +(noun)|Listera ovata|orchid|orchidaceous plant +(noun)|orchid|orchidaceous plant +tweak|4 +(noun)|pinch|squeeze|squeezing +(verb)|pinch|squeeze|twinge|tweet|nip|twitch +(verb)|pluck|pull off|pick off|pull|draw|force +(verb)|fine-tune|tune|tune up +twee|1 +(adj)|dainty|mincing|niminy-piminy|prim|refined +tweed|2 +(noun)|fabric|cloth|material|textile +(noun)|flannel|gabardine|white|trousers|pants +tweediness|1 +(noun)|coarseness|nubbiness|roughness +tweedle|3 +(verb)|chirp|sing +(verb)|play +(verb)|entice|lure|tempt +tweedledee and tweedledum|1 +(noun)|Tweedledum and Tweedledee|Tweedledee and Tweedledum|pair|brace +tweedledum and tweedledee|1 +(noun)|Tweedledum and Tweedledee|Tweedledee and Tweedledum|pair|brace +tweedy|1 +(adj)|homespun|nubby|nubbly|slubbed|rough |unsmooth +tweet|3 +(noun)|chirp +(verb)|twirp|sound|go +(verb)|pinch|squeeze|twinge|nip|twitch|grip +tweeter|1 +(noun)|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +tweeze|1 +(verb)|pluck|tweak|pull off|pick off +tweezer|1 +(noun)|pincer|pair of pincers|pair of tweezers|hand tool +twelfth|2 +(adj)|12th|ordinal +(noun)|rank +twelfth cranial nerve|1 +(noun)|hypoglossal|hypoglossal nerve|nervus hypoglosus|cranial nerve +twelfth day|1 +(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day +twelfth night|1 +(noun)|Twelfth night|Christian holy day +twelfthtide|1 +(noun)|Twelfthtide|season +twelve|2 +(adj)|12|xii|dozen|cardinal +(noun)|12|XII|dozen|large integer +twelve-tone music|1 +(noun)|12-tone music|twelve-tone system|12-tone system|serialism|serial music +twelve-tone system|1 +(noun)|twelve-tone music|12-tone music|12-tone system|serialism|serial music +twelve noon|1 +(noun)|noon|high noon|midday|noonday|noontide|hour|time of day +twelve tribes of israel|1 +(noun)|Tribes of Israel|Twelve Tribes of Israel|kin|kin group|kinship group|kindred|clan|tribe +twelvemonth|1 +(noun)|year|yr|time period|period of time|period +twenties|4 +(noun)|mid-twenties|time of life +(noun)|1920s|decade|decennary|decennium +(noun)|twenty|20|XX|large integer +(noun)|twenty dollar bill|twenty|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +twentieth|2 +(adj)|20th|ordinal +(noun)|rank +twentieth amendment|1 +(noun)|Twentieth Amendment|amendment +twenty|3 +(adj)|20|xx|cardinal +(noun)|20|XX|large integer +(noun)|twenty dollar bill|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +twenty-eight|2 +(adj)|28|xxviii|cardinal +(noun)|28|XXVIII|large integer +twenty-eighth|1 +(adj)|28th|ordinal +twenty-fifth|1 +(adj)|25th|ordinal +twenty-first|1 +(adj)|21st|ordinal +twenty-five|2 +(adj)|25|xxv|cardinal +(noun)|25|XXV|large integer +twenty-five percent|1 +(noun)|one-fourth|fourth|quarter|fourth part|quartern|common fraction|simple fraction +twenty-four|2 +(adj)|24|xxiv|cardinal +(noun)|24|XXIV|two dozen|large integer +twenty-four hours|1 +(noun)|day|solar day|mean solar day|time unit|unit of time +twenty-fourth|1 +(adj)|24th|ordinal +twenty-nine|2 +(adj)|29|xxix|cardinal +(noun)|29|XXIX|large integer +twenty-ninth|1 +(adj)|29th|ordinal +twenty-one|3 +(adj)|21|xxi|cardinal +(noun)|21|XXI|large integer +(noun)|blackjack|vingt-et-un|card game|cards +twenty-second|1 +(adj)|22nd|ordinal +twenty-seven|2 +(adj)|27|xxvii|cardinal +(noun)|27|XXVII|large integer +twenty-seventh|1 +(adj)|27th|ordinal +twenty-six|2 +(adj)|26|xxvi|cardinal +(noun)|26|XXVI|large integer +twenty-sixth|1 +(adj)|26th|ordinal +twenty-third|1 +(adj)|23rd|ordinal +twenty-three|2 +(adj)|23|xxiii|cardinal +(noun)|23|XXIII|large integer +twenty-two|3 +(adj)|22|xxii|cardinal +(noun)|22|XXII|large integer +(noun)|.22|firearm|piece|small-arm +twenty-two pistol|1 +(noun)|twenty-two|.22 +twenty-two rifle|1 +(noun)|twenty-two|.22 +twenty dollar bill|1 +(noun)|twenty|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +twenty percent|1 +(noun)|one-fifth|fifth|fifth part|common fraction|simple fraction +twerp|1 +(noun)|twirp|twit|simpleton|simple +twice|1 +(adv)|doubly|double +twice-baked bread|1 +(noun)|zwieback|rusk|Brussels biscuit|toast +twiddle|3 +(noun)|twist|turn +(verb)|twirl|swirl|whirl|revolve|go around|rotate +(verb)|fiddle with|manipulate +twiddler|1 +(noun)|fiddler|manipulator +twig|3 +(noun)|branchlet|sprig|branch +(verb)|branch|ramify|fork|furcate|separate +(verb)|catch on|get wise|get onto|tumble|latch on|cotton on|get it|get the picture|comprehend|savvy|dig|grasp|compass|apprehend +twig blight|1 +(noun)|blight +twiggy|1 +(adj)|twiglike|thin |lean +twiglike|1 +(adj)|twiggy|thin |lean +twilight|4 +(adj)|dusky|twilit|dark +(noun)|dusk|gloaming|nightfall|evenfall|fall|crepuscule|crepuscle|hour|time of day +(noun)|light|visible light|visible radiation +(noun)|decline|declination +twilight of the gods|1 +(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth +twilight sleep|1 +(noun)|general anesthesia|general anaesthesia +twilight vision|1 +(noun)|night vision|night-sight|scotopic vision|sight|vision|visual sense|visual modality +twilight zone|2 +(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones +(noun)|no man's land|ambiguity|equivocalness +twilit|1 +(adj)|dusky|twilight|dark +twill|3 +(noun)|twill weave|weave +(noun)|fabric|cloth|material|textile +(verb)|weave|tissue +twill weave|1 +(noun)|twill|weave +twilled|1 +(adj)|corded|rough |unsmooth +twin|10 +(adj)|duplicate|matching|twinned|matched +(adj)|siamese|similar +(noun)|sibling|sib +(noun)|Gemini|Twin|person|individual|someone|somebody|mortal|human|soul +(noun)|Twin|Twin Falls|waterfall|falls +(noun)|counterpart|similitude|duplicate|duplication +(verb)|duplicate|parallel|match|fit|correspond|check|jibe|gibe|tally|agree +(verb)|match|mate|couple|pair|join|bring together +(verb)|grow +(verb)|give birth|deliver|bear|birth|have +twin-aisle airplane|1 +(noun)|widebody aircraft|wide-body aircraft|wide-body|airliner +twin-bedded|1 +(adj)|bedded +twin-prop|1 +(noun)|double-prop|double-propeller plane|twin-propeller-plane|propeller plane +twin-propeller-plane|1 +(noun)|double-prop|double-propeller plane|twin-prop|propeller plane +twin bed|1 +(noun)|bed +twin bill|1 +(noun)|doubleheader|double feature|game +twin cities|1 +(noun)|Twin Cities|urban area|populated area +twin falls|2 +(noun)|Twin|Twin Falls|waterfall|falls +(noun)|Twin Falls|town +twin towers|1 +(noun)|World Trade Center|WTC|skyscraper +twinberry|2 +(noun)|Lonicera involucrata|honeysuckle +(noun)|partridgeberry|boxberry|Mitchella repens|vine +twine|6 +(noun)|string|cord +(verb)|intertwine|entwine|enlace|interlace|lace|twist|distort +(verb)|surround|environ|encircle|circle|round|ring +(verb)|wind|wrap|roll|move|displace +(verb)|make|create +(verb)|twist|distort|change shape|change form|deform +twined|1 +(adj)|twisted|coiled +twiner|1 +(noun)|worker +twinflower|1 +(noun)|Linnaea borealis|subshrub|suffrutex +twinge|5 +(noun)|pang|stab|feeling +(noun)|pain|painful sensation +(verb)|prick|sting|hurt|ache|suffer +(verb)|hurt|ache|suffer +(verb)|pinch|squeeze|tweet|nip|twitch|grip +twinjet|1 +(noun)|jet|jet plane|jet-propelled plane +twinkle|3 +(noun)|scintillation|sparkling|change|alteration|modification +(verb)|flash|blink|wink|winkle|radiate +(verb)|winkle|scintillate|shine|beam +twinkler|1 +(noun)|shiner +twinkling|2 +(adj)|bright +(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|wink|New York minute|moment|minute|second|bit +twinkly|1 +(adj)|beamish|smiling|cheerful +twinned|1 +(adj)|duplicate|matching|twin|matched +twinning|1 +(adj)|biparous|multiparous +twins|6 +(noun)|crystal +(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac|star sign|sign|mansion|house|planetary house +(noun)|twin|sibling|sib +(noun)|Gemini|Twin|person|individual|someone|somebody|mortal|human|soul +(noun)|Twin|Twin Falls|waterfall|falls +(noun)|counterpart|similitude|twin|duplicate|duplication +twirl|4 +(noun)|kink|twist|fold|crease|plication|flexure|crimp|bend +(noun)|spin|twist|twisting|whirl|rotation|rotary motion +(verb)|swirl|twiddle|whirl|revolve|go around|rotate +(verb)|whirl|birl|spin|rotate|circumvolve +twirler|2 +(noun)|baton twirler|performer|performing artist +(noun)|pitcher|hurler|thrower|ballplayer|baseball player +twirp|3 +(noun)|twerp|twit|simpleton|simple +(verb)|tweet|sound|go +(verb)|peep|cheep|chirp|chirrup|utter|emit|let out|let loose +twist|21 +(noun)|turn|turn of events|development +(noun)|construction|interpretation +(noun)|device|gimmick|maneuver|manoeuvre|tactical maneuver|tactical manoeuvre +(noun)|spin|twirl|twisting|whirl|rotation|rotary motion +(noun)|wrench|pull|injury|hurt|harm|trauma +(noun)|kink|twirl|fold|crease|plication|flexure|crimp|bend +(noun)|eddy|current|stream +(noun)|wrench|movement|motion +(noun)|braid|plait|tress|hairdo|hair style|coiffure +(noun)|social dancing +(noun)|wind|winding|rotation|rotary motion +(noun)|turn|rotation|rotary motion +(verb)|writhe|wrestle|wriggle|worm|squirm|move +(verb)|flex|bend|deform|turn|change shape|change form|deform +(verb)|turn +(verb)|twine|distort|change shape|change form|deform +(verb)|shape|form +(verb)|dance|trip the light fantastic|trip the light fantastic toe +(verb)|wrench|pull +(verb)|twist around|pervert|convolute|sophisticate|denote|refer +(verb)|sprain|wrench|turn|wrick|rick|injure|wound +twist around|1 +(verb)|twist|pervert|convolute|sophisticate|denote|refer +twist bit|1 +(noun)|twist drill|bit +twist drill|1 +(noun)|twist bit|bit +twist wood|2 +(noun)|wayfaring tree|twistwood|Viburnum lantana|shrub|bush +(noun)| +twisted|3 +(adj)|twined|coiled +(adj)|contorted|distorted|crooked +(adj)|distorted|misrepresented|perverted|disingenuous |artful +twister|2 +(noun)|tornado|cyclone +(noun)|cruller|friedcake +twisting|4 +(adj)|squirming|wiggling|wiggly|wriggling|wriggly|writhing|moving +(adj)|tortuous|twisty|winding|crooked +(noun)|distortion|overrefinement|straining|torture|falsification|misrepresentaation +(noun)|spin|twirl|twist|whirl|rotation|rotary motion +twistwood|1 +(noun)|wayfaring tree|twist wood|Viburnum lantana|shrub|bush +twisty|1 +(adj)|tortuous|twisting|winding|crooked +twit|3 +(noun)|twerp|twirp|simpleton|simple +(noun)|taunt|taunting|aggravation|irritation|provocation +(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|rally|ride|mock|bemock +twitch|6 +(noun)|twitching|vellication|spasm|cramp|muscle spasm +(verb)|jerk|move involuntarily|move reflexively +(verb)|jerk|move +(verb)|flip|move +(verb)|pinch|squeeze|twinge|tweet|nip|grip +(verb)|pull|draw|force +twitching|1 +(noun)|twitch|vellication|spasm|cramp|muscle spasm +twitter|2 +(noun)|chirrup|sound +(verb)|chitter|peep|twirp|cheep|chirp|chirrup +twitterer|1 +(noun)|bird +two|2 +(adj)|2|ii|cardinal +(noun)|2|II|deuce|digit|figure +two-a-penny|1 +(adj)|sixpenny|threepenny|twopenny|tuppeny|twopenny-halfpenny|cheap |inexpensive +two-bagger|1 +(noun)|double|two-base hit|two-baser|base hit|safety|bingle +two-base hit|1 +(noun)|double|two-bagger|two-baser|base hit|safety|bingle +two-baser|1 +(noun)|double|two-base hit|two-bagger|base hit|safety|bingle +two-by-four|1 +(noun)|timber +two-chambered|1 +(adj)|bicameral|divided +two-channel|1 +(adj)|stereophonic|stereo|binaural |biaural +two-dimensional|2 +(adj)|planar |coplanar|flat|planate|flattened|tabular|placoid|platelike +(adj)|flat|multidimensional +two-dimensional figure|1 +(noun)|plane figure|figure +two-dimensionality|1 +(noun)|flatness|planeness|dimensionality +two-eared|1 +(adj)|binaural |biaural +two-eyed violet|1 +(noun)|heartsease|Viola ocellata|violet +two-faced|2 +(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|double-faced|double-tongued|dishonest |dishonorable +(adj)|Janus-faced|faced +two-footed|1 +(adj)|bipedal +two-grain spelt|1 +(noun)|emmer|starch wheat|Triticum dicoccum|wheat|corn +two-handed|2 +(adj)|ambidextrous |equipoised +(adj)|bimanual|handed +two-handed backhand|1 +(noun)|backhand|backhand stroke|backhand shot +two-handed saw|1 +(noun)|whipsaw|handsaw|carpenter's saw +two-hitter|1 +(noun)|2-hitter|baseball|baseball game|ball +two-hundredth|1 +(adj)|200th|ordinal +two-lane|1 +(adj)|multilane +two-man tent|1 +(noun)|tent|collapsible shelter +two-party|2 +(adj)|bipartisan|bipartizan|two-way|nonpartisan |nonpartizan +(adj)|bipartite|two-way|bilateral |two-sided +two-piece|3 +(adj)|two-piece +(noun)|two-piece suit|lounge suit|business suit +(noun)|bikini|swimsuit|bathing suit|swimming costume|bathing costume +two-piece suit|1 +(noun)|two-piece|lounge suit|business suit +two-ply|1 +(adj)|thick +two-seater|1 +(noun)|roadster|runabout|car|auto|automobile|machine|motorcar +two-sided|2 +(adj)|reversible |double-faced +(adj)|bilateral |bipartite|two-party|two-way|joint +two-spotted ladybug|1 +(noun)|Adalia bipunctata|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +two-step|1 +(noun)|ballroom dancing|ballroom dance +two-thirds|1 +(noun)|common fraction|simple fraction +two-tier bid|1 +(noun)|takeover bid +two-time|1 +(verb)|cheat on|cheat|cuckold|betray|wander +two-timer|2 +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|double-crosser|double-dealer|betrayer|traitor|deceiver|cheat|cheater|trickster|beguiler|slicker +two-timing|1 +(adj)|adulterous|cheating|unfaithful +two-toed anteater|1 +(noun)|silky anteater|Cyclopes didactylus|anteater|New World anteater +two-toed sloth|2 +(noun)|unau|Choloepus hoffmanni|sloth|tree sloth +(noun)|unau|Choloepus didactylus|sloth|tree sloth +two-way|3 +(adj)|bipartisan|bipartizan|two-party|nonpartisan |nonpartizan +(adj)|bipartite|two-party|bilateral |two-sided +(adj)|bidirectional +two-way street|1 +(noun)|street +two-wheel|1 +(adj)|two-wheeled|machine|simple machine +two-wheeled|1 +(adj)|two-wheel|machine|simple machine +two-wing flying fish|1 +(noun)|monoplane flying fish|flying fish +two-winged insects|1 +(noun)|dipterous insect|dipteran|dipteron|insect +two-year|1 +(adj)|biennial +two dollar bill|1 +(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback +two dozen|1 +(noun)|twenty-four|24|XXIV|large integer +two hundred|1 +(adj)|200|cc|cardinal +two iron|1 +(noun)|midiron|iron +two times|1 +(adv)|twofold +two weeks|1 +(noun)|fortnight|time period|period of time|period +twofer|2 +(noun)|offer|offering +(noun)|coupon|voucher +twofold|3 +(adj)|double|dual|treble|threefold|multiple +(adj)|double|doubled|multiple +(adv)|two times +twopence|1 +(noun)|tuppence|coin +twopenny|1 +(adj)|sixpenny|threepenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap |inexpensive +twopenny-halfpenny|1 +(adj)|sixpenny|threepenny|twopenny|tuppeny|two-a-penny|cheap |inexpensive +twoscore|1 +(adj)|forty|40|xl|cardinal +twosome|2 +(noun)|couple|pair|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|couple|duo|duet|pair +twyla tharp|1 +(noun)|Tharp|Twyla Tharp|dancer|professional dancer|choreographer +tx|1 +(noun)|Texas|Lone-Star State|TX|American state +tyan shan|1 +(noun)|Tien Shan|Tyan Shan|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +tyche|1 +(noun)|Tyche|Greek deity +tycoon|1 +(noun)|baron|big businessman|business leader|king|magnate|mogul|power|top executive|businessman|man of affairs +tying|1 +(noun)|ligature|fastening|attachment +tying up|1 +(noun)|docking|moorage|arrival +tyiyn|1 +(noun)|Kyrgyzstani monetary unit +tyke|2 +(noun)|peasant|barbarian|boor|churl|Goth|tike|unpleasant person|disagreeable person +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|fry|nestling|juvenile|juvenile person +tylenchidae|1 +(noun)|Tylenchidae|family Tylenchidae|worm family +tylenchus|1 +(noun)|Tylenchus|genus Tylenchus|worm genus +tylenchus tritici|1 +(noun)|wheatworm|wheat eel|wheat eelworm|Tylenchus tritici|nematode|nematode worm|roundworm +tylenol|1 +(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic|anodyne|painkiller|pain pill +tyler|2 +(noun)|Tyler|John Tyler|President Tyler|President of the United States|United States President|President|Chief Executive +(noun)|Tyler|town +tympan|1 +(noun)|drum|membranophone|percussion instrument|percussive instrument +tympani|1 +(noun)|kettle|kettledrum|tympanum|timpani|percussion instrument|percussive instrument +tympanic|1 +(adj)|membrane|tissue layer +tympanic bone|1 +(noun)|bone|os +tympanic cavity|1 +(noun)|middle ear|tympanum|cavity|bodily cavity|cavum +tympanic membrane|1 +(noun)|eardrum|tympanum|myringa|membrane|tissue layer +tympanic vein|1 +(noun)|vein|vena|venous blood vessel +tympanist|1 +(noun)|timpanist|drummer +tympanites|1 +(noun)|dilatation|distension|distention +tympanitic|1 +(adj)|dilatation|distension|distention +tympanitis|1 +(noun)|inflammation|redness|rubor +tympanoplasty|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +tympanuchus|1 +(noun)|Tympanuchus|genus Tympanuchus|bird genus +tympanuchus cupido|1 +(noun)|greater prairie chicken|Tympanuchus cupido|prairie chicken|prairie grouse|prairie fowl +tympanuchus cupido cupido|1 +(noun)|heath hen|Tympanuchus cupido cupido|prairie chicken|prairie grouse|prairie fowl +tympanuchus pallidicinctus|1 +(noun)|lesser prairie chicken|Tympanuchus pallidicinctus|prairie chicken|prairie grouse|prairie fowl +tympanum|3 +(noun)|middle ear|tympanic cavity|cavity|bodily cavity|cavum +(noun)|eardrum|tympanic membrane|myringa|membrane|tissue layer +(noun)|kettle|kettledrum|tympani|timpani|percussion instrument|percussive instrument +tyndale|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +tyndall|1 +(noun)|Tyndall|John Tyndall|physicist +tyndall effect|1 +(noun)|Tyndall effect|optical phenomenon +tyne|1 +(noun)|Tyne|River Tyne|Tyne River|river +tyne river|1 +(noun)|Tyne|River Tyne|Tyne River|river +type|8 +(noun)|kind|sort|form|variety +(noun)|character|eccentric|case|adult|grownup +(noun)|taxonomic group|taxonomic category|taxon +(noun)|character|grapheme|graphic symbol +(noun)|block +(noun)|symbol +(verb)|typewrite|write +(verb)|typecast|identify +type a|1 +(noun)|A|type A|group A|blood group|blood type +type ab|1 +(noun)|AB|type AB|group AB|blood group|blood type +type b|1 +(noun)|B|type B|group B|blood group|blood type +type family|1 +(noun)|type +type genus|1 +(noun)|genus +type i allergic reaction|1 +(noun)|immediate allergy|atopy|atopic allergy|type I allergic reaction|allergy|allergic reaction +type i diabetes|1 +(noun)|type I diabetes|insulin-dependent diabetes mellitus|IDDM|juvenile-onset diabetes|juvenile diabetes|growth-onset diabetes|ketosis-prone diabetes|ketoacidosis-prone diabetes|autoimmune diabetes|diabetes mellitus|DM|autoimmune disease|autoimmune disorder +type ii diabetes|1 +(noun)|type II diabetes|non-insulin-dependent diabetes mellitus|NIDDM|non-insulin-dependent diabetes|ketosis-resistant diabetes mellitus|ketosis-resistant diabetes|ketoacidosis-resistant diabetes mellitus|ketoacidosis-resistant diabetes|adult-onset diabetes mellitus|adult-onset diabetes|maturity-onset diabetes mellitus|maturity-onset diabetes|mature-onset diabetes|diabetes mellitus|DM +type iv allergic reaction|1 +(noun)|delayed allergy|type IV allergic reaction|allergy|allergic reaction +type metal|1 +(noun)|alloy|metal +type o|1 +(noun)|O|type O|group O|blood group|blood type +type of architecture|1 +(noun)|architectural style|style of architecture|art form +type species|1 +(noun)|species +type specimen|1 +(noun)|holotype|model|example +typecast|2 +(verb)|cast +(verb)|type|identify +typed|1 +(adj)|typewritten|written +typeface|1 +(noun)|font|fount|face|type +typescript|1 +(noun)|matter +typeset|1 +(verb)|print|impress +typesetter|1 +(noun)|compositor|setter|typographer|printer|pressman +typesetting machine|1 +(noun)|printer|printing machine +typewrite|1 +(verb)|type|write +typewriter|1 +(noun)|character printer|character-at-a-time printer|serial printer +typewriter carriage|1 +(noun)|carriage +typewriter font|1 +(noun)|constant-width font|fixed-width font|monospaced font|font|fount|typeface|face +typewriter keyboard|1 +(noun)|keyboard +typewriter paper|1 +(noun)|typing paper|writing paper +typewriter ribbon|1 +(noun)|ribbon|strip|slip +typewriting|1 +(noun)|typing|writing +typewritten|1 +(adj)|typed|written +typha|1 +(noun)|Typha|genus Typha|monocot genus|liliopsid genus +typha angustifolia|1 +(noun)|lesser bullrush|narrow-leaf cattail|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail +typha latifolia|1 +(noun)|cat's-tail|bullrush|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail +typhaceae|1 +(noun)|Typhaceae|family Typhaceae|cattail family|monocot family|liliopsid family +typhlopidae|1 +(noun)|Typhlopidae|family Typhlopidae|reptile family +typhoeus|1 +(noun)|Typhoeus|mythical monster|mythical creature +typhoid|1 +(noun)|typhoid fever|enteric fever|infectious disease +typhoid bacillus|1 +(noun)|Salmonella typhosa|Salmonella typhi|salmonella +typhoid bacteriophage|1 +(noun)|bacteriophage|phage +typhoid fever|1 +(noun)|typhoid|enteric fever|infectious disease +typhoid mary|1 +(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier|immune carrier +typhon|1 +(noun)|Typhon|mythical monster|mythical creature +typhoon|1 +(noun)|cyclone +typhus|1 +(noun)|typhus fever|rickettsial disease|rickettsiosis +typhus fever|1 +(noun)|typhus|rickettsial disease|rickettsiosis +typic|1 +(adj)|emblematic|exemplary|typical +typical|3 +(adj)|typical |emblematic|exemplary|typic|regular|veritable|representative|true|characteristic +(adj)|distinctive|characteristic +(adj)|normal +typical jerboa|1 +(noun)|jerboa +typicality|1 +(noun)|normality|normalcy +typification|2 +(noun)|exemplification|representational process +(noun)|representation +typify|2 +(verb)|epitomize|epitomise|symbolize|symbolise|stand for|represent +(verb)|symbolize|symbolise|stand for|represent|mean|intend +typing|1 +(noun)|typewriting|writing +typing paper|1 +(noun)|typewriter paper|writing paper +typing pool|1 +(noun)|pool +typist|1 +(noun)|employee +typo|1 +(noun)|misprint|erratum|typographical error|literal error|literal|error|mistake +typographer|1 +(noun)|compositor|typesetter|setter|printer|pressman +typographic|1 +(adj)|typographical|trade|craft +typographical|1 +(adj)|typographic|trade|craft +typographical error|1 +(noun)|misprint|erratum|typo|literal error|literal|error|mistake +typography|2 +(noun)|trade|craft +(noun)|composition|printing|printing process +typology|1 +(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment +tyr|1 +(noun)|Tyr|Tyrr|Norse deity +tyramine|1 +(noun)|amino acid|aminoalkanoic acid +tyranni|1 +(noun)|Tyranni|suborder Tyranni|animal order +tyrannic|1 +(adj)|tyrannical|autocracy|autarchy +tyrannical|3 +(adj)|tyrannic|autocracy|autarchy +(adj)|oppressive|tyrannous|domineering +(adj)|authoritarian|autocratic|dictatorial|despotic|undemocratic +tyrannicide|1 +(noun)|murder|slaying|execution +tyrannid|1 +(noun)|passerine|passeriform bird +tyrannidae|1 +(noun)|Tyrannidae|superfamily Tyrannidae|bird family +tyrannise|2 +(verb)|tyrannize|grind down|dictate +(verb)|tyrannize|domineer|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|hector|push around +tyrannize|2 +(verb)|tyrannise|grind down|dictate +(verb)|tyrannise|domineer|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|hector|push around +tyrannosaur|1 +(noun)|tyrannosaurus|Tyrannosaurus rex|theropod|theropod dinosaur|bird-footed dinosaur +tyrannosaurus|1 +(noun)|tyrannosaur|Tyrannosaurus rex|theropod|theropod dinosaur|bird-footed dinosaur +tyrannosaurus rex|1 +(noun)|tyrannosaur|tyrannosaurus|Tyrannosaurus rex|theropod|theropod dinosaur|bird-footed dinosaur +tyrannous|1 +(adj)|oppressive|tyrannical|domineering +tyrannus|1 +(noun)|Tyrannus|genus Tyrannus|bird genus +tyrannus domenicensis domenicensis|1 +(noun)|gray kingbird|petchary|Tyrannus domenicensis domenicensis|kingbird|Tyrannus tyrannus +tyrannus tyrannus|1 +(noun)|kingbird|Tyrannus tyrannus|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +tyrannus vociferans|1 +(noun)|Cassin's kingbird|Tyrannus vociferans|kingbird|Tyrannus tyrannus +tyranny|2 +(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|autocracy|autarchy +(noun)|absolutism|despotism|dominance|ascendance|ascendence|ascendancy|ascendency|control +tyrant|3 +(noun)|autocrat|despot|dictator|potentate +(noun)|ruler|swayer +(noun)|person|individual|someone|somebody|mortal|human|soul +tyrant bird|1 +(noun)|New World flycatcher|flycatcher|tyrant flycatcher|tyrannid +tyrant flycatcher|1 +(noun)|New World flycatcher|flycatcher|tyrant bird|tyrannid +tyre|2 +(noun)|Sur|Tyre|city|metropolis|urban center|port +(noun)|tire|hoop|ring +tyrian purple|2 +(noun)|Tyrian purple|dye|dyestuff +(noun)|Tyrian purple|reddish purple|royal purple +tyro|1 +(noun)|novice|beginner|tiro|initiate|unskilled person +tyrocidin|1 +(noun)|tyrocidine|antibiotic|antibiotic drug +tyrocidine|1 +(noun)|tyrocidin|antibiotic|antibiotic drug +tyrol|1 +(noun)|Tyrol|Tirol|state|province +tyrolean|2 +(adj)|Tyrolean|Tyrolese|state|province +(noun)|hat|chapeau|lid +tyrolese|1 +(adj)|Tyrolean|Tyrolese|state|province +tyrosine|1 +(noun)|amino acid|aminoalkanoic acid +tyrosine kinase inhibitor|1 +(noun)|medicine|medication|medicament|medicinal drug +tyrosinemia|1 +(noun)|autosomal recessive disease|autosomal recessive defect +tyrothricin|1 +(noun)|antibiotic|antibiotic drug +tyrr|1 +(noun)|Tyr|Tyrr|Norse deity +tyrrhenian sea|1 +(noun)|Tyrrhenian Sea|sea +tyson|1 +(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter|gladiator +tyto|1 +(noun)|Tyto|genus Tyto|bird genus +tyto alba|1 +(noun)|barn owl|Tyto alba|owl|bird of Minerva|bird of night|hooter +tytonidae|1 +(noun)|Tytonidae|family Tytonidae|bird family +tyyn|1 +(noun)|Uzbekistani monetary unit +tzar|1 +(noun)|czar|tsar|sovereign|crowned head|monarch +tzara|1 +(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet +tzarina|1 +(noun)|czarina|tsarina|czaritza|tsaritsa|female aristocrat +tzarist|1 +(adj)|czarist|czaristic|tsarist|tsaristic|tyrant|autocrat|despot +tzetze|1 +(noun)|tsetse fly|tsetse|tzetze fly|glossina|fly +tzetze fly|1 +(noun)|tsetse fly|tsetse|tzetze|glossina|fly +u|4 +(adj)|upper-class +(noun)|uracil|U|nucleotide +(noun)|uranium|U|atomic number 92|metallic element|metal +(noun)|U|letter|letter of the alphabet|alphabetic character +u-boat|1 +(noun)|submarine|pigboat|sub|U-boat|submersible|submersible warship +u-drive|1 +(noun)|car rental|hire car|rent-a-car|self-drive|you-drive|lease|rental|letting +u-shaped|1 +(adj)|U-shaped|formed +u-turn|1 +(noun)|reversion|reverse|reversal|turnabout|turnaround +u. s. air force|1 +(noun)|United States Air Force|U. S. Air Force|US Air Force|USAF|air force|airforce +u. s. army|1 +(noun)|United States Army|US Army|U. S. Army|USA|army|regular army|ground forces +u. s. army special forces|1 +(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division +u. s. coast guard|1 +(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard|agency|federal agency|government agency|bureau|office|authority +u. s. code|1 +(noun)|United States Code|U. S. Code|legal code +u.s.|3 +(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +(noun)| +u.s. army criminal investigation laboratory|2 +(noun)|United States Army Criminal Investigation Laboratory|U.S. Army Criminal Investigation Laboratory|US Army Criminal Investigation Laboratory|USACIL|agency|federal agency|government agency|bureau|office|authority +(noun)| +u.s. congress|2 +(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature|legislative assembly|general assembly|law-makers +(noun)| +u.s. government|2 +(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government +(noun)| +u.s. house|2 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +(noun)| +u.s. house of representatives|2 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +(noun)| +u.s. mint|2 +(noun)|United States Mint|U.S. Mint|US Mint|mint +(noun)| +u.s. national library of medicine|1 +(noun)|National Library of Medicine|United States National Library of Medicine|U.S. National Library of Medicine|library +u.s. waters|1 +(noun)|United States waters|U.S. waters|territorial waters +u.s.a.|2 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +(noun)|United States Army|US Army|U. S. Army|USA|army|regular army|ground forces +u308|1 +(noun)|yellowcake|U308|compound|chemical compound +uakari|1 +(noun)|New World monkey|platyrrhine +ubermensch|1 +(noun)|demigod|superman|Ubermensch|leader +ubiety|1 +(noun)|presence +ubiquinone|1 +(noun)|coenzyme Q|quinone|benzoquinone|coenzyme +ubiquitous|1 +(adj)|omnipresent|present +ubiquitousness|1 +(noun)|ubiquity|omnipresence|presence +ubiquity|1 +(noun)|ubiquitousness|omnipresence|presence +ubykh|1 +(noun)|Ubykh|Caucasian|Caucasian language +uca|1 +(noun)|Uca|genus Uca|arthropod genus +uda|1 +(noun)|Ulster Defense Association|UDA|terrorist organization|terrorist group|foreign terrorist organization|FTO +udder|1 +(noun)|bag|mammary gland|mamma +udmurt|2 +(noun)|Udmurt|Votyak|Russian +(noun)|Udmurt|Votyak|Permic +udometer|1 +(noun)|rain gauge|rain gage|pluviometer|gauge|gage +ufa|1 +(noun)|Ufa|city|metropolis|urban center +ufo|1 +(noun)|unidentified flying object|UFO|flying saucer|apparition|phantom|phantasm|phantasma|shadow +uganda|1 +(noun)|Uganda|Republic of Uganda|African country|African nation +ugandan|2 +(adj)|Ugandan|African country|African nation +(noun)|Ugandan|African +ugandan monetary unit|1 +(noun)|Ugandan monetary unit|monetary unit +ugandan shilling|1 +(noun)|Ugandan shilling|shilling|Ugandan monetary unit +ugaritic|1 +(noun)|Ugaritic|Canaanitic|Canaanitic language +ugli|1 +(noun)|tangelo|ugli fruit|edible fruit +ugli fruit|2 +(noun)|tangelo|tangelo tree|Citrus tangelo|citrus|citrus tree +(noun)|tangelo|ugli|edible fruit +uglify|1 +(verb)|change|alter|modify +ugliness|1 +(noun)|appearance|visual aspect +ugly|6 +(adj)|ugly |disfigured|grotesque|monstrous|unnatural|hideous|repulsive|ill-favored|ill-favoured|scrofulous|unsightly|unlovely|unpicturesque|displeasing|unattractive|awkward +(adj)|inaesthetic |unaesthetic +(adj)|surly|ill-natured +(adj)|despicable|vile|unworthy|evil |wicked +(adj)|baleful|forbidding|menacing|minacious|minatory|ominous|sinister|threatening|alarming +(adj)|atrocious|frightful|horrifying|horrible|alarming +ugly duckling|1 +(noun)|anomaly|unusual person +ugo buoncompagni|1 +(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +ugrian|1 +(noun)|Ugric|Ugrian|Finno-Ugric|Finno-Ugrian +ugric|1 +(noun)|Ugric|Ugrian|Finno-Ugric|Finno-Ugrian +uhf|1 +(noun)|ultrahigh frequency|UHF|radio frequency +uhland|1 +(noun)|Uhland|Johann Ludwig Uhland|poet +uighur|3 +(noun)|Uighur|Uigur|Uygur|Turki +(noun)|Uighur|Uigur|Uygur|Turki|Turkic|Turko-Tatar|Turkic language +(noun)|Uighur|Uigur|Uygur|script +uigur|3 +(noun)|Uighur|Uigur|Uygur|Turki +(noun)|Uighur|Uigur|Uygur|Turki|Turkic|Turko-Tatar|Turkic language +(noun)|Uighur|Uigur|Uygur|script +uintathere|1 +(noun)|dinoceras|dinocerate +uintatheriidae|1 +(noun)|Uintatheriidae|family Uintatheriidae|mammal family +uintatherium|1 +(noun)|Uintatherium|genus Uintatherium|mammal genus +uk|1 +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +ukase|1 +(noun)|imperial decree +uke|1 +(noun)|ukulele|guitar +ukraine|1 +(noun)|Ukraine|Ukrayina|country|state|land +ukrainian|2 +(adj)|Ukrainian|country|state|land +(noun)|Ukrainian|Slavic|Slavic language|Slavonic|Slavonic language +ukranian|1 +(noun)|Ukranian|European +ukranian monetary unit|1 +(noun)|Ukranian monetary unit|monetary unit +ukrayina|1 +(noun)|Ukraine|Ukrayina|country|state|land +ukulele|1 +(noun)|uke|guitar +ulaanbaatar|1 +(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital +ulalgia|1 +(noun)|pain|hurting +ulama|1 +(noun)|ulema|body +ulan bator|1 +(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital +ulanova|1 +(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer|professional dancer +ulatrophia|1 +(noun)|periodontal disease|periodontitis +ulcer|1 +(noun)|ulceration|lesion +ulcer diet|1 +(noun)|bland diet|diet +ulcerate|2 +(verb)|change +(verb)|affect +ulcerated|1 +(adj)|cankerous|ulcerous|unhealthy +ulceration|2 +(noun)|ulcer|lesion +(noun)|organic process|biological process +ulcerative|1 +(adj)|lesion +ulcerative colitis|1 +(noun)|colitis|inflammatory bowel disease +ulcerous|1 +(adj)|cankerous|ulcerated|unhealthy +ulema|1 +(noun)|ulama|body +ulemorrhagia|1 +(noun)|bleeding|hemorrhage|haemorrhage +ulex|1 +(noun)|Ulex|genus Ulex|rosid dicot genus +ulex europaeus|1 +(noun)|gorse|furze|whin|Irish gorse|Ulex europaeus|shrub|bush +ulfila|1 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +ulfilas|2 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +ulitis|1 +(noun)|inflammation|redness|rubor +ull|1 +(noun)|Ull|Ullr|Norse deity +ullage|1 +(noun)|indefinite quantity +ullr|1 +(noun)|Ull|Ullr|Norse deity +ulmaceae|1 +(noun)|Ulmaceae|family Ulmaceae|elm family|dicot family|magnoliopsid family +ulmus|1 +(noun)|Ulmus|genus Ulmus|dicot genus|magnoliopsid genus +ulmus alata|1 +(noun)|winged elm|wing elm|Ulmus alata|elm|elm tree +ulmus americana|1 +(noun)|American elm|white elm|water elm|rock elm|Ulmus americana|elm|elm tree +ulmus campestris sarniensis|1 +(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +ulmus campestris wheatleyi|1 +(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +ulmus carpinifolia|1 +(noun)|smooth-leaved elm|European field elm|Ulmus carpinifolia|elm|elm tree +ulmus crassifolia|1 +(noun)|cedar elm|Ulmus crassifolia|elm|elm tree +ulmus glabra|1 +(noun)|witch elm|wych elm|Ulmus glabra|elm|elm tree +ulmus hollandica|1 +(noun)|Dutch elm|Ulmus hollandica|elm|elm tree +ulmus hollandica vegetata|1 +(noun)|Huntingdon elm|Ulmus hollandica vegetata|elm|elm tree +ulmus laevis|1 +(noun)|water elm|Ulmus laevis|elm|elm tree +ulmus parvifolia|1 +(noun)|Chinese elm|Ulmus parvifolia|elm|elm tree +ulmus procera|1 +(noun)|English elm|European elm|Ulmus procera|elm|elm tree +ulmus pumila|1 +(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm|elm tree +ulmus rubra|1 +(noun)|slippery elm|red elm|Ulmus rubra|elm|elm tree +ulmus sarniensis|1 +(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +ulmus serotina|1 +(noun)|September elm|red elm|Ulmus serotina|elm|elm tree +ulmus thomasii|1 +(noun)|rock elm|Ulmus thomasii|elm|elm tree +ulna|1 +(noun)|elbow bone|arm bone +ulnar|1 +(adj)|arm bone +ulnar artery|1 +(noun)|arteria ulnaris|artery|arteria|arterial blood vessel +ulnar nerve|1 +(noun)|cubital nerve|nervus ulnaris|nerve|nervus +ulnar vein|1 +(noun)|vena ulnaris|vein|vena|venous blood vessel +ulrich zwingli|1 +(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian|theologist|theologizer|theologiser +ulster|2 +(noun)|Ulster|geographical area|geographic area|geographical region|geographic region +(noun)|greatcoat|overcoat|topcoat +ulster defense association|1 +(noun)|Ulster Defense Association|UDA|terrorist organization|terrorist group|foreign terrorist organization|FTO +ult|1 +(adj)|ultimo|past +ulterior|3 +(adj)|subterranean|subterraneous|covert +(adj)|distant +(adj)|future|later|subsequent +ulteriority|1 +(noun)|quality +ultima thule|1 +(noun)|Thule|ultima Thule|geographical area|geographic area|geographical region|geographic region +ultimacy|1 +(noun)|ultimateness|degree|level|stage|point +ultimate|3 +(adj)|ultimate |crowning|eventual|farthest|final|last|net|highest|supreme|last-ditch +(adj)|last +(adj)|elemental|simple +ultimate frisbee|1 +(noun)|field game +ultimately|2 +(adv)|finally|in the end|at last|at long last +(adv)|in the last analysis|in the final analysis +ultimateness|1 +(noun)|ultimacy|degree|level|stage|point +ultimatum|1 +(noun)|demand +ultimo|1 +(adj)|ult|past +ultra|1 +(adj)|extremist|radical|immoderate +ultra vires|1 +(adj)|ultra vires +ultracef|1 +(noun)|cefadroxil|Ultracef|cephalosporin|Mefoxin +ultracentrifugation|1 +(noun)|centrifugation +ultracentrifuge|2 +(noun)|centrifuge|extractor|separator +(verb)|centrifuge|centrifugate +ultraconservative|2 +(adj)|conservative +(noun)|reactionary|extreme right-winger|conservative|conservativist +ultrahigh frequency|1 +(noun)|UHF|radio frequency +ultramarine|3 +(adj)|chromatic +(noun)|ultramarine blue|pigment +(noun)|blue|blueness +ultramarine blue|1 +(noun)|ultramarine|pigment +ultramicroscope|1 +(noun)|dark-field microscope|light microscope +ultramicroscopic|1 +(adj)|light microscope +ultramodern|1 +(adj)|modern +ultramontane|4 +(adj)|policy +(adj)|transalpine|tramontane |transmontane +(adj)|cisalpine|cismontane +(noun)|Roman Catholic +ultramontanism|1 +(noun)|policy +ultranationalism|1 +(noun)|chauvinism|jingoism|superpatriotism|patriotism|nationalism +ultranationalistic|1 +(adj)|chauvinistic|flag-waving|jingoistic|nationalistic|superpatriotic|patriotic |loyal +ultrasonic|1 +(adj)|supersonic|inaudible |unhearable +ultrasonography|1 +(noun)|sonography|ultrasound|imaging|tomography|prenatal diagnosis +ultrasound|2 +(noun)|sound +(noun)|sonography|ultrasonography|imaging|tomography|prenatal diagnosis +ultrasuede|1 +(noun)|Ultrasuede|suede cloth|suede +ultraviolet|2 +(adj)|invisible |unseeable +(noun)|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV|actinic radiation|actinic ray +ultraviolet illumination|1 +(noun)|ultraviolet|ultraviolet radiation|ultraviolet light|UV|actinic radiation|actinic ray +ultraviolet lamp|1 +(noun)|ultraviolet source|source of illumination +ultraviolet light|1 +(noun)|ultraviolet|ultraviolet radiation|ultraviolet illumination|UV|actinic radiation|actinic ray +ultraviolet radiation|1 +(noun)|ultraviolet|ultraviolet light|ultraviolet illumination|UV|actinic radiation|actinic ray +ultraviolet source|1 +(noun)|ultraviolet lamp|source of illumination +ultraviolet spectrum|1 +(noun)|spectrum +ulugh muz tagh|1 +(noun)|Ulugh Muztagh|Ulugh Muz Tagh|mountain peak +ulugh muztagh|1 +(noun)|Ulugh Muztagh|Ulugh Muz Tagh|mountain peak +ululate|1 +(verb)|howl|wail|roar|yawl|shout|shout out|cry|call|yell|scream|holler|hollo|squall +ululation|1 +(noun)|howl|howling|utterance|vocalization +ulva|1 +(noun)|Ulva|genus Ulva|protoctist genus +ulvaceae|1 +(noun)|Ulvaceae|family Ulvaceae|sea-lettuce family|protoctist family +ulvales|1 +(noun)|Ulvales|order Ulvales|protoctist order +ulvophyceae|1 +(noun)|Ulvophyceae|class Ulvophyceae|class +ulysses|1 +(noun)|Ulysses|Odysseus +ulysses grant|1 +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +ulysses s. grant|1 +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +ulysses simpson grant|1 +(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general|full general|President of the United States|United States President|President|Chief Executive +uma|2 +(noun)|Uma|Hindu deity +(noun)|Uma|genus Uma|reptile genus +uma notata|1 +(noun)|fringe-toed lizard|Uma notata|iguanid|iguanid lizard +umar al-mukhtar forces|1 +(noun)|Forces of Umar Al-Mukhtar|Umar al-Mukhtar Forces|terrorist organization|terrorist group|foreign terrorist organization|FTO +umayyad|1 +(noun)|Umayyad|Ommiad|Omayyad|dynasty +umbel|1 +(noun)|inflorescence +umbel-like|1 +(adj)|umbellate|convex |bulging +umbellales|1 +(noun)|Umbellales|order Umbellales|plant order +umbellar|1 +(adj)|umbellate|inflorescence +umbellate|2 +(adj)|umbellar|inflorescence +(adj)|umbel-like|convex |bulging +umbellifer|1 +(noun)|umbelliferous plant|herb|herbaceous plant +umbelliferae|1 +(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family +umbelliferous|1 +(adj)|rosid dicot family +umbelliferous plant|1 +(noun)|umbellifer|herb|herbaceous plant +umbelliform|1 +(adj)|inflorescence +umbellularia|1 +(noun)|Umbellularia|genus Umbellularia|magnoliid dicot genus +umbellularia californica|1 +(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel +umber|3 +(adj)|chromatic +(noun)|earth color +(noun)|chocolate|coffee|deep brown|burnt umber|brown|brownness +umbilical|1 +(adj)|point +umbilical cord|1 +(noun)|duct|epithelial duct|canal|channel|funiculus|fetal membrane +umbilical hernia|1 +(noun)|omphalocele|hernia|herniation +umbilical vein|1 +(noun)|vena umbilicalis|vein|vena|venous blood vessel +umbilical vesicle|1 +(noun)|yolk sac|vitelline sac|vesicula umbilicus|sac +umbilicate|1 +(adj)|concave +umbilicus|1 +(noun)|navel|bellybutton|omphalos|omphalus|point +umbo|1 +(noun)|convex shape|convexity +umbra|1 +(noun)|shadow +umbrage|1 +(noun)|offense|offence|anger|choler|ire +umbrageous|2 +(adj)|shady|shadowed|shadowy|shaded +(adj)|indignant|incensed|outraged|angry +umbrella|4 +(adj)|comprehensive +(noun)|canopy +(noun)|defense|defence|defensive measure +(noun)|union|unification|uniting|conjugation|jointure +umbrella arum|1 +(noun)|devil's tongue|snake palm|Amorphophallus rivieri|arum|aroid +umbrella bird|1 +(noun)|Cephalopterus ornatus|cotinga|chatterer +umbrella fern|1 +(noun)|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern +umbrella magnolia|1 +(noun)|umbrella tree|elkwood|elk-wood|Magnolia tripetala|magnolia +umbrella pine|1 +(noun)|stone pine|European nut pine|Pinus pinea|pine|pine tree|true pine +umbrella plant|3 +(noun)|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb|herbaceous plant +(noun)|Eriogonum allenii|eriogonum +(noun)|umbrella sedge|Cyperus alternifolius|sedge +umbrella sedge|1 +(noun)|umbrella plant|Cyperus alternifolius|sedge +umbrella tent|1 +(noun)|tent|collapsible shelter +umbrella tree|2 +(noun)|Schefflera actinophylla|Brassaia actinophylla|shrub|bush +(noun)|umbrella magnolia|elkwood|elk-wood|Magnolia tripetala|magnolia +umbrellalike|1 +(adj)|rounded +umbrellawort|1 +(noun)|flower +umbria|1 +(noun)|Umbria|Italian region +umbrian|1 +(noun)|Umbrian|Osco-Umbrian +umbrina|1 +(noun)|Umbrina|genus Umbrina|fish genus +umbrina roncador|1 +(noun)|yellowfin croaker|surffish|surf fish|Umbrina roncador|croaker +umbundu|1 +(noun)|Umbundu|Bantu|Bantoid language +umlaut|1 +(noun)|dieresis|diaeresis|diacritical mark|diacritic +umma|1 +(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community +umma tameer-e-nau|1 +(noun)|Umma Tameer-e-Nau|UTN|nongovernmental organization|NGO +ummah|1 +(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community +ump|1 +(noun)|umpire|official +umpirage|2 +(noun)|mediation +(noun)|officiation|officiating|refereeing|decision making|deciding +umpire|2 +(noun)|ump|official +(verb)|referee|judge +umpteen|1 +(adj)|umteen|many +umpteenth|1 +(adj)|umteenth|umptieth|ordinal +umptieth|1 +(adj)|umpteenth|umteenth|ordinal +umteen|1 +(adj)|umpteen|many +umteenth|1 +(adj)|umpteenth|umptieth|ordinal +un|1 +(noun)|United Nations|UN|world organization|world organisation|international organization|international organisation|global organization +un-american|1 +(adj)|un-American|unpatriotic |disloyal +un-come-at-able|1 +(adj)|un-get-at-able|ungetatable|inaccessible |unaccessible +un-get-at-able|2 +(adj)|un-come-at-able|ungetatable|inaccessible |unaccessible +(adj)| +un agency|1 +(noun)|United Nations agency|UN agency|administrative unit|administrative body +unabashed|1 +(adj)|unembarrassed|unashamed +unabated|1 +(adj)|intense +unable|3 +(adj)|unable |not able +(adj)|incapable +(adj)|ineffective|ineffectual|impotent +unable to help|1 +(adv)|helplessly|impotently +unabridged|1 +(adj)|unabridged |comprehensive|full-length|uncut +unabridged dictionary|1 +(noun)|dictionary|lexicon +unabused|2 +(adj)|unabused |unmaligned|unreviled +(adj)|unabused +unaccented|3 +(adj)|atonic +(adj)|unstressed |feminine|short|unemphatic|light|weak +(adj)|light|weak|unstressed +unacceptability|1 +(noun)|unacceptableness|unsatisfactoriness +unacceptable|4 +(adj)|unsatisfactory +(adj)|unacceptable |exceptionable|objectionable|intolerable|unsatisfactory|unwelcome +(adj)|impossible|insufferable|unsufferable|intolerable +(adj)|unaccepted|nonstandard +unacceptableness|1 +(noun)|unacceptability|unsatisfactoriness +unacceptably|1 +(adv)|intolerably +unaccepted|1 +(adj)|unacceptable|nonstandard +unaccessible|1 +(adj)|inaccessible |backwoods|outback|remote|deserted|pathless|roadless|trackless|untracked|untrod|untrodden|lonely|solitary|unfrequented|unapproachable|unreachable|unreached|out of reach|un-come-at-able|un-get-at-able|ungetatable +unaccommodating|2 +(adj)|unaccommodating |unobliging|disobliging|uncooperative +(adj)|unhelpful +unaccompanied|2 +(adj)|unaccompanied |isolated|marooned|stranded|solo|tod|unattended|alone|lone|lonely|solitary +(adv)|alone|solo +unaccountable|2 +(adj)|unexplainable|inexplicable |incomprehensible +(adj)|irresponsible +unaccredited|1 +(adj)|unlicensed|unlicenced|unauthorized |unauthorised +unaccustomed|2 +(adj)|unaccustomed |new|new to|unused to +(adj)|unusual +unachievable|1 +(adj)|unattainable|undoable|unrealizable|impossible +unachievably|1 +(adv)|unattainably +unacknowledged|2 +(adj)|unacknowledged |disowned|repudiated|unappreciated|unsung|unvalued|unavowed|secret|unconfessed|unrecognized|unrecognised|unknown +(adj)|undeclared +unacquainted|1 +(adj)|unacquainted with|unfamiliar with|unfamiliar +unacquainted with|2 +(adj)|innocent of|uninformed +(adj)|unacquainted|unfamiliar with|unfamiliar +unacquisitive|1 +(adj)|unacquisitive +unactable|1 +(adj)|unactable +unadaptability|1 +(noun)|inability|unfitness +unadaptable|1 +(adj)|unadaptable |inflexible|rigid|unbending +unadapted|2 +(adj)|unmodified +(adj)|unadjusted|maladjusted +unaddicted|1 +(adj)|unaddicted |clean +unaddressed|1 +(adj)|unaddressed +unadjustable|1 +(adj)|fixed +unadjusted|2 +(adj)|unadjusted |maladjusted +(adj)|unadapted|maladjusted +unadmonished|1 +(adj)|unchastened|unrebuked|unreproved|unpunished +unadoptable|1 +(adj)|unadoptable +unadorned|1 +(adj)|unadorned |undecorated|plain|unembellished|unornamented|untufted|plain|unclothed +unadulterated|1 +(adj)|pure +unadventurous|1 +(adj)|unadventurous |cautious|safe|cautious|timid +unadvisable|1 +(adj)|inadvisable |foolish +unadvised|2 +(adj)|ill-advised |foolish|imprudent +(adj)|uninformed +unaerated|1 +(adj)|unoxygenated|unventilated +unaesthetic|1 +(adj)|inaesthetic |inartistic|unartistic|ugly|tasteless +unaffected|4 +(adj)|unaffected |immune|superior|unimpressed|uninfluenced|unswayed|untouched|unmoved +(adj)|insensible|insensitive +(adj)|unaffected |lifelike|natural|unmannered|unselfconscious|unstilted|unstudied|uncontrived +(adj)|untouched|unmoved +unaffectedness|1 +(noun)|naturalness +unaffecting|1 +(adj)|unmoving +unaffectionate|1 +(adj)|uncaring|unloving +unaffiliated|1 +(adj)|independent +unaffixed|1 +(adj)|unaffixed |loose +unafraid|2 +(adj)|unafraid |fearless|unapprehensive|unblinking|unflinching|unintimidated|unshrinking|unfrightened|bold|brave|courageous|fearless +(adj)|secure |untroubled +unaged|1 +(adj)|green |unripe|unripened|immature +unaggressive|1 +(adj)|unaggressive |nonaggressive|low-pressure|peaceful|unassertive +unagitated|3 +(adj)|unagitated |nonturbulent|unstirred +(adj)|unagitated |calm|composed|cool|quiet|relaxed|at ease|steady|unexcited +(adj)|calm|composed +unaided|2 +(adj)|unassisted +(adj)|naked|unassisted +unaired|1 +(adj)|airless|close|stuffy|unventilated +unairworthy|1 +(adj)|unairworthy +unalarming|1 +(adj)|unalarming |calming|lulling|quietening +unalert|1 +(adj)|unalert |inattentive|unobservant|unvigilant|unwatchful|unwary +unalienable|1 +(adj)|inalienable |absolute|infrangible|inviolable|nontransferable|unassignable|untransferable|intrinsic|intrinsical +unalike|1 +(adj)|unalike |dissimilar +unalloyed|1 +(adj)|pure +unalterability|2 +(noun)|immutability|immutableness|fixity +(noun)|fixedness|changelessness|unchangeability|unchangeableness|unchangingness +unalterable|3 +(adj)|unalterable |inalterable|incurable|final|last +(adj)|incommutable +(adj)|changeless|unchangeable +unalterably|1 +(adv)|unchangeably|unassailably|immutably +unaltered|1 +(adj)|unaltered |unchanged|dateless|timeless|in-situ|unmoved|unedited|unrevised|unreduced +unambiguity|1 +(noun)|unequivocalness|clarity|lucidity|pellucidity|clearness|limpidity +unambiguous|2 +(adj)|unambiguous |monosemous|clear|unequivocal|univocal +(adj)|unequivocal |univocal|absolute|conclusive|straightforward|unquestionable +unambiguously|2 +(adv)|unequivocally|without ambiguity +(adv)|uniquely +unambitious|1 +(adj)|unambitious |ambitionless|shiftless|unenterprising|nonenterprising +unamended|1 +(adj)|unamended +unamused|1 +(adj)|mirthless|joyless +unamusing|1 +(adj)|unentertaining +unanalyzable|1 +(adj)|undecomposable|simple +unanalyzed|1 +(adj)|unanalyzed |crude|raw +unangry|1 +(adj)|unangry +unanimated|1 +(adj)|unanimated |dead|lifeless|wan +unanimity|1 +(noun)|agreement|accord +unanimous|2 +(adj)|consentaneous|consentient|accordant +(adj)|solid|undiversified |unvaried +unanimously|1 +(adv)|nem con|nemine contradicente +unannealed|1 +(adj)|brittle|untempered |unhardened +unannounced|1 +(adj)|unheralded|unpredicted|unexpected +unanswerable|1 +(adj)|incontestable |incontestible +unanswered|1 +(adj)|unreciprocated|unrequited|nonreciprocal +unanticipated|1 +(adj)|unforeseen|unlooked-for|out of the blue|unexpected +unapologetic|1 +(adj)|unapologetic +unappareled|1 +(adj)|unattired|unclad|undressed|ungarbed|ungarmented|unclothed +unapparent|1 +(adj)|unobvious +unappealable|1 +(adj)|unappealable +unappealing|2 +(adj)|unsympathetic |unlikeable|unlikable +(adj)|unappealing |off-putting|unattractive +unappeasable|1 +(adj)|grim|inexorable|relentless|stern|unforgiving|unrelenting|implacable +unappendaged|1 +(adj)|unappendaged +unappetising|1 +(adj)|unappetizing |insipid|tasteless|tasteless|unpalatable +unappetisingness|1 +(noun)|unappetizingness|unpalatability|unpalatableness +unappetizing|1 +(adj)|unappetizing |unappetising|insipid|tasteless|tasteless|unpalatable +unappetizingness|1 +(noun)|unappetisingness|unpalatability|unpalatableness +unappreciated|2 +(adj)|thankless|ungratifying|unrewarding +(adj)|unsung|unvalued|unacknowledged +unappreciative|1 +(adj)|ungrateful |thankless|unthankful +unappreciatively|1 +(adv)|ungratefully +unapprehensive|1 +(adj)|unafraid |fearless +unapproachability|1 +(noun)|aloofness|remoteness|standoffishness|withdrawnness +unapproachable|2 +(adj)|unapproachable |offish|standoffish +(adj)|unreachable|unreached|out of reach|inaccessible |unaccessible +unarbitrary|1 +(adj)|nonarbitrary |prescribed +unarguable|1 +(adj)|inarguable|incontestable |incontestible +unarguably|1 +(adv)|undisputedly +unargumentative|1 +(adj)|unargumentative |noncontentious +unarm|1 +(verb)|disarm|deprive|strip|divest +unarmed|2 +(adj)|unarmed |barehanded|clean|defenseless|defenceless|weaponless +(adj)|unarmed |thornless +unarmored|2 +(adj)|unarmored |unarmoured|scaleless +(adj)|unarmored |unarmoured +unarmoured|2 +(adj)|unarmored |scaleless +(adj)|unarmored +unarticulate|1 +(adj)|inarticulate |aphasic|aphonic|voiceless|dumb|mute|silent|dumb|groaning|moaning|grunting|incoherent|tongue-tied|mute|tongueless|unspoken|wordless|speechless|dumb|stammering|stuttering|unarticulated|uncommunicative|incommunicative +unarticulated|2 +(adj)|unarticulated |unjointed +(adj)|inarticulate |unarticulate +unartistic|1 +(adj)|inartistic|inaesthetic |unaesthetic +unary|1 +(adj)|single +unary operation|1 +(noun)|monadic operation|operation +unascertainable|1 +(adj)|undiscoverable|indeterminable |undeterminable +unascribable|1 +(adj)|unattributable +unashamed|1 +(adj)|unashamed |audacious|barefaced|bodacious|bold-faced|brassy|brazen|brazen-faced|insolent|shameless|unblushing|unabashed|unembarrassed|impenitent|unrepentant|unremorseful +unashamedly|1 +(adv)|shamelessly|barefacedly +unasked|3 +(adj)|unrequested +(adj)|uninvited|unwanted|unwelcome +(adj)|unbid|unbidden|uninvited +unassailable|3 +(adj)|impregnable|inviolable|secure|strong|unattackable|invulnerable +(adj)|untouchable|inviolable +(adj)|ironclad|unshakable|watertight|bulletproof|incontestable |incontestible +unassailably|1 +(adv)|unalterably|unchangeably|immutably +unassertive|2 +(adj)|unassertive |reticent|self-effacing|nonassertive|submissive|timid|unaggressive|nonaggressive +(adj)|retiring|unobtrusive |unnoticeable +unassertiveness|1 +(noun)|diffidence|self-doubt|self-distrust +unassignable|1 +(adj)|nontransferable|untransferable|inalienable |unalienable +unassigned|1 +(adj)|unassigned +unassisted|2 +(adj)|single-handed|unbacked|unsupported +(adj)|unassisted |naked|unaided|unaided +unassuming|1 +(adj)|retiring|modest +unassumingness|1 +(noun)|sincerity|naturalness +unassured|1 +(adj)|insecure +unasterisked|1 +(adj)|unstarred|unmarked +unattached|3 +(adj)|unconnected +(adj)|unattached |uncommitted|unengaged|unpledged|unpromised +(adj)|free-swimming|vagile +unattackable|1 +(adj)|impregnable|inviolable|secure|strong|unassailable|invulnerable +unattainable|1 +(adj)|unachievable|undoable|unrealizable|impossible +unattainableness|1 +(noun)|impossibility|impossibleness +unattainably|1 +(adv)|unachievably +unattended|3 +(adj)|unsupervised +(adj)|unaccompanied +(adj)|neglected|uncared-for +unattired|1 +(adj)|unappareled|unclad|undressed|ungarbed|ungarmented|unclothed +unattractive|3 +(adj)|unattractive |homely|plain|subfusc|unprepossessing|unpresentable|ugly|uninviting|unseductive +(adj)|unappealing +(adj)|untempting|uninviting +unattractiveness|1 +(noun)|ugliness +unattributable|1 +(adj)|unattributable |unascribable +unau|2 +(noun)|two-toed sloth|Choloepus hoffmanni|sloth|tree sloth +(noun)|two-toed sloth|Choloepus didactylus|sloth|tree sloth +unauthentic|1 +(adj)|inauthentic|spurious|counterfeit |imitative +unauthorised|2 +(adj)|unauthorized |self-appointed|unaccredited|unlicensed|unlicenced|illegitimate|unofficial +(adj)|unauthorized|wildcat|unofficial +unauthorized|2 +(adj)|unauthorized |unauthorised|self-appointed|unaccredited|unlicensed|unlicenced|illegitimate|unofficial +(adj)|unauthorised|wildcat|unofficial +unauthorized absence|1 +(noun)|absence without leave|desertion|abandonment|defection +unavailability|1 +(noun)|inaccessibility|inconvenience +unavailable|1 +(adj)|unavailable |inaccessible|unobtainable|unprocurable|untouchable|out of stock +unavailing|1 +(adj)|futile|ineffectual|otiose|useless +unavenged|1 +(adj)|unavenged |punish|penalize|penalise +unavoidability|1 +(noun)|ineluctability|certainty|sure thing|foregone conclusion +unavoidable|1 +(adj)|ineluctable|inescapable|inevitable +unavoidable casualty|1 +(noun)|act of God|force majeure|vis major|inevitable accident|calamity|catastrophe|disaster|tragedy|cataclysm +unavoidably|1 +(adv)|inescapably|ineluctably|inevitably +unavowed|3 +(adj)|sneaking|concealed +(adj)|undeclared +(adj)|secret|unacknowledged +unawakened|2 +(adj)|unawakened +(adj)|asleep +unaware|3 +(adj)|unaware |oblivious|unmindful|unconscious|unsuspecting|asleep|insensible|unconscious +(adj)|unwitting +(adj)|incognizant +unawareness|1 +(noun)|unknowingness|unconsciousness +unawares|1 +(adv)|short +unawed|1 +(adj)|unawed |aweless|awless +unbacked|1 +(adj)|single-handed|unassisted|unsupported +unbaffled|1 +(adj)|unconfused|unperplexed +unbalance|3 +(noun)|imbalance|instability|disequilibrium +(noun)|derangement|mental unsoundness|insanity +(verb)|derange|madden|craze +unbalanced|3 +(adj)|unbalanced |imbalanced +(adj)|brainsick|crazy|demented|distracted|disturbed|mad|sick|unhinged|insane +(adj)|unequal +unbalconied|1 +(adj)|unbalconied +unbanded|1 +(adj)|unbanded +unbaptised|1 +(adj)|unbaptized +unbaptized|1 +(adj)|unbaptized |unbaptised +unbar|1 +(verb)|open|open up +unbarred|1 +(adj)|unbolted|unlatched|unlocked|unsecured|unfastened +unbarreled|1 +(adj)|unbarreled |unbarrelled +unbarrelled|1 +(adj)|unbarreled +unbearable|1 +(adj)|unendurable|intolerable +unbeatable|2 +(adj)|unstoppable +(adj)|invincible|unvanquishable|unconquerable +unbeaten|1 +(adj)|unconquered|unvanquished|undefeated +unbecoming|2 +(adj)|unwearable +(adj)|indecent|indecorous|uncomely|unseemly|untoward|improper +unbecomingly|1 +(adv)|indecorously +unbecomingness|1 +(noun)|indecorum|indecorousness +unbefitting|1 +(adj)|inappropriate +unbeholden|1 +(adj)|unobligated +unbeknown|2 +(adj)|unbeknownst|unknown +(adv)|unbeknownst +unbeknownst|2 +(adj)|unbeknown|unknown +(adv)|unbeknown +unbelief|1 +(noun)|disbelief|content|cognitive content|mental object +unbelievable|2 +(adj)|incredible |astounding|dumbfounding|dumfounding|fabulous|improbable|marvelous|marvellous|tall|undreamed|undreamed of|undreamt|undreamt of|unimagined|implausible|incredulous|unconvincing|unthinkable +(adj)|improbable|unconvincing|unlikely|implausible +unbelievably|1 +(adv)|incredibly|improbably|implausibly +unbeliever|1 +(noun)|disbeliever|nonbeliever|nonreligious person +unbelieving|3 +(adj)|atheistic|atheistical|irreligious +(adj)|nescient|agnostic |agnostical +(adj)|disbelieving|skeptical|sceptical|incredulous +unbelievingly|1 +(adv)|incredulously|disbelievingly +unbeloved|1 +(adj)|bereft|lovelorn|unloved +unbelt|1 +(verb)|undo +unbelted|1 +(adj)|unbelted |beltless +unbend|6 +(verb)|straighten|change posture +(verb)|unfasten +(verb)|straighten|straighten out +(verb)|relax|loosen|loose +(verb)|relax|loosen up|unwind|decompress|slow down|change state|turn +(verb)|relax|unstrain|unlax|loosen up|unwind|make relaxed +unbendable|1 +(adj)|firm|steadfast|steady|unfaltering|unshakable|unwavering|resolute +unbending|1 +(adj)|inflexible|rigid|unadaptable +unbeneficed|1 +(adj)|unbeneficed +unbent|2 +(adj)|straight +(adj)|straight|unbowed|upright|erect |vertical|upright +unbiased|2 +(adj)|indifferent|unbiassed|impartial |fair +(adj)|unbiassed|nonpartisan |nonpartizan +unbiassed|2 +(adj)|indifferent|unbiased|impartial |fair +(adj)|unbiased|nonpartisan |nonpartizan +unbid|1 +(adj)|unasked|unbidden|uninvited +unbidden|1 +(adj)|unasked|unbid|uninvited +unbigoted|1 +(adj)|tolerant +unbind|1 +(verb)|detach +unbitter|1 +(adj)|unresentful +unbleached|1 +(adj)|uncolored|undyed|natural +unblemished|1 +(adj)|unblemished |clean|clear|stainless|unstained|unsullied|untainted|untarnished|perfect|undamaged +unblended|1 +(adj)|unblended |unhomogenized|unhomogenised +unblessed|1 +(adj)|unendowed +unblinking|2 +(adj)|unemotional +(adj)|unflinching|unintimidated|unshrinking|unafraid |fearless +unblock|2 +(verb)|play +(verb)|unfreeze|free|release|issue|supply +unbloodied|1 +(adj)|bloodless +unbloody|1 +(adj)|nonviolent|bloodless +unblushing|1 +(adj)|shameless|unashamed +unbodied|2 +(adj)|unbodied |bodiless|bodyless|formless|incorporeal|immaterial +(adj)|discorporate|unembodied|bodiless|disembodied|incorporeal |immaterial +unbolt|1 +(verb)|open|open up +unbolted|1 +(adj)|unbarred|unlatched|unlocked|unsecured|unfastened +unbooked|1 +(adj)|unreserved +unbordered|1 +(adj)|unbordered +unborn|1 +(adj)|unborn |unhatched +unbosom|1 +(verb)|relieve|confide +unbound|3 +(adj)|unbound |loose|looseleaf +(adj)|unbound |unchained|unfettered|unshackled|untied|untethered|free +(adj)|free +unbounded|1 +(adj)|boundless|limitless|infinite +unbounded interval|1 +(noun)|open interval|interval +unboundedness|1 +(noun)|infiniteness|infinitude|boundlessness|limitlessness|quality +unbowed|2 +(adj)|straight|unbent|upright|erect |vertical|upright +(adj)|undefeated +unbox|1 +(verb)|unpack|take out +unbrace|4 +(verb)|untie|unlace|undo +(verb)|relax|unbend +(verb)|weaken +(verb)|remove|take|take away|withdraw +unbraced|1 +(adj)|unsupported +unbraid|1 +(verb)|undo +unbrainwashed|1 +(adj)|unbrainwashed +unbranched|1 +(adj)|unbranching|branchless +unbranching|1 +(adj)|unbranched|branchless +unbranded|1 +(adj)|unbranded +unbreakable|2 +(adj)|unbreakable |infrangible|shatterproof|splinterless|splinterproof +(adj)|inviolable +unbreakableness|1 +(noun)|consistency|consistence|body +unbridgeable|1 +(adj)|unbridgeable +unbridled|1 +(adj)|unchecked|uncurbed|ungoverned|unrestrained +unbroken|5 +(adj)|unbroken |solid|uninterrupted|continuous|uninterrupted +(adj)|wild |untamed +(adj)|unplowed |unploughed|fallow|untilled +(adj)|unbroken |kept +(adj)|unbroken |unfractured|perfect|sound|undamaged|uninjured +unbrowsed|1 +(adj)|uncropped +unbrushed|1 +(adj)|ungroomed +unbuckle|1 +(verb)|undo +unburden|2 +(verb)|take +(verb)|disburden|remove|take|take away|withdraw +unburdened|2 +(adj)|unburdened |unencumbered +(adj)|burdenless|unencumbered +unburied|1 +(adj)|unburied +unburned|1 +(adj)|unburned |change state|turn +unburnished|1 +(adj)|unpolished +unbutton|1 +(verb)|undo +unbuttoned|2 +(adj)|unbuttoned |unfastened|open-collared +(adj)|unlaced|unrestrained +uncalled-for|2 +(adj)|unwanted +(adj)|gratuitous|needless|unnecessary |unneeded +uncamphorated|1 +(adj)|uncamphorated +uncanny|2 +(adj)|eldritch|weird|unearthly|supernatural +(adj)|unco|unnatural +uncapped|1 +(adj)|uncrowned +uncarbonated|1 +(adj)|noncarbonated|noneffervescent +uncared-for|1 +(adj)|uncared-for |neglected|unattended|untended +uncaring|2 +(adj)|unaffectionate|unloving +(adj)|thoughtless|unthinking|inconsiderate +uncarpeted|1 +(adj)|uncarpeted +uncarved|1 +(adj)|uncarved +uncase|1 +(verb)|undress|discase|unclothe|strip|strip down|disrobe|peel|take off +uncastrated|1 +(adj)|uncastrated |entire|intact +uncategorised|1 +(adj)|uncategorized|unsorted|unclassified +uncategorized|1 +(adj)|uncategorised|unsorted|unclassified +uncaulked|1 +(adj)|uncaulked +uncaused|1 +(adj)|causeless|fortuitous|unintended +unceasing|2 +(adj)|ageless|eternal|everlasting|perpetual|unending|permanent |lasting +(adj)|ceaseless|constant|incessant|never-ending|perpetual|unremitting|continuous |uninterrupted +unceasingly|1 +(adv)|endlessly|ceaselessly|incessantly|unendingly|continuously +uncensored|1 +(adj)|uncensored |unexpurgated +unceremonial|1 +(adj)|unceremonious|informal +unceremonious|2 +(adj)|unceremonial|informal +(adj)|discourteous +unceremoniousness|1 +(noun)|informality +uncertain|9 +(adj)|uncertain |incertain|ambivalent|doubtful|dubious|groping|hesitant +(adj)|uncertain |indefinite|up in the air|indeterminate|undetermined +(adj)|unsealed +(adj)|insecure +(adj)|uncertain |chancy|fluky|flukey|iffy|contingent|up in the air|unpredictable +(adj)|changeable|unsettled|variable +(adj)|unsure|insecure |unsafe +(adj)|unreliable +(adj)|ambiguous +uncertainly|1 +(adv)|unsteadily|falteringly +uncertainness|1 +(noun)|uncertainty|quality +uncertainty|2 +(noun)|uncertainness|quality +(noun)|doubt|incertitude|dubiety|doubtfulness|dubiousness|cognitive state|state of mind +uncertainty principle|1 +(noun)|indeterminacy principle|scientific theory +uncertified|1 +(adj)|uncertified +unchain|2 +(verb)|unfasten +(verb)|free|liberate|release|unloose|unloosen|loose +unchained|1 +(adj)|unfettered|unshackled|untied|unbound +unchallengeable|1 +(adj)|unquestionable +unchallenged|1 +(adj)|undisputed|undoubted|unquestioned|unquestionable +unchangeability|1 +(noun)|changelessness|unchangeableness|unchangingness|quality +unchangeable|1 +(adj)|unchangeable |changeless|unalterable|confirmed|fixed|frozen|set in stone|carved in stone|static|stable|unchanging|constant|permanent|lasting +unchangeableness|1 +(noun)|changelessness|unchangeability|unchangingness|quality +unchangeably|1 +(adv)|unalterably|unassailably|immutably +unchanged|2 +(adj)|unchanged |idempotent|same|unvaried|unvarying +(adj)|unaltered |dateless|timeless|in-situ|unmoved|unedited|unrevised|unreduced +unchanging|3 +(adj)|static|undynamic |adynamic +(adj)|consistent +(adj)|static|stable|unchangeable +unchangingness|1 +(noun)|changelessness|unchangeability|unchangeableness|quality +uncharacteristic|1 +(adj)|uncharacteristic |uncharacteristic of|atypical|atypical|untypical +uncharacteristic of|1 +(adj)|uncharacteristic |atypical|atypical|untypical +uncharged|1 +(adj)|uncharged |dead|drained +uncharitable|2 +(adj)|uncharitable |ungenerous|stingy|ungenerous +(adj)|unforgiving|ungenerous |meanspirited +uncharted|1 +(adj)|chartless|unmapped|unknown +unchartered|1 +(adj)|unchartered +unchaste|1 +(adj)|unchaste |cyprian|easy|light|loose|promiscuous|sluttish|wanton|fallen|licentious|immoral|impure +unchastened|1 +(adj)|unadmonished|unrebuked|unreproved|unpunished +uncheckable|1 +(adj)|unmanageable +unchecked|1 +(adj)|unbridled|uncurbed|ungoverned|unrestrained +uncheerful|1 +(adj)|cheerless |blue|dark|depressing|disconsolate|dismal|dispiriting|gloomy|grim|dingy|dismal|drab|drear|dreary|gloomy|sorry|somber|sombre|joyless|unhappy +uncheerfulness|2 +(noun)|cheerlessness|sadness|unhappiness +(noun)|attribute +unchewable|1 +(adj)|fibrous|sinewy|stringy|tough +unchivalrous|1 +(adj)|caddish|ungallant|discourteous +unchristian|1 +(adj)|unchristian |christless|nonchristian|unchristianly|unchristlike +unchristianly|1 +(adj)|unchristlike|unchristian +unchristlike|1 +(adj)|unchristianly|unchristian +uncial|2 +(adj)|script +(noun)|script +unciform bone|1 +(noun)|hamate|hamate bone|os hamatum|carpal bone|carpal|wrist bone +uncivil|1 +(adj)|uncivil |rude +uncivilised|1 +(adj)|barbarian|barbaric|savage|uncivilized|wild|noncivilized |noncivilised +uncivilized|1 +(adj)|barbarian|barbaric|savage|uncivilised|wild|noncivilized |noncivilised +unclad|1 +(adj)|unappareled|unattired|undressed|ungarbed|ungarmented|unclothed +unclaimed|1 +(adj)|unwanted +unclasp|1 +(verb)|let go of|let go|release|relinquish +unclassifiable|1 +(adj)|unidentifiable +unclassified|2 +(adj)|unclassified |declassified|nonsensitive|unrestricted +(adj)|unclassified |uncategorized|uncategorised|unsorted +uncle|2 +(noun)|kinsman +(noun)|benefactor|helper +uncle joe|1 +(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general|full general +uncle sam|1 +(noun)|Uncle Sam|fictional character|fictitious character|character +uncle tom|2 +(noun)|Tom|Uncle Tom|Black|Black person|blackamoor|Negro|Negroid +(noun)|Uncle Tom|fictional character|fictitious character|character +unclean|2 +(adj)|dirty |soiled|bedraggled|draggled|befouled|fouled|begrimed|dingy|grimy|grubby|grungy|raunchy|bespattered|spattered|besplashed|splashed|black|buggy|dirty-faced|dusty|dust-covered|fecal|faecal|feculent|filthy|foul|nasty|flyblown|squalid|sordid|greasy|oily|lousy|mucky|muddy|scummy|smeared|smirched|smudged|smudgy|snotty|snot-nosed|travel-soiled|travel-stained|unswept|unwashed|maculate|impure|untidy +(adj)|unclean |impure|defiled|nonkosher|tref|terefah|untouchable|dirty|soiled|impure +uncleanliness|2 +(noun)|habit|use|wont +(noun)|trait +uncleanness|1 +(noun)|dirtiness|sanitary condition +unclear|3 +(adj)|ill-defined +(adj)|unclear |bewildering|blurred|clouded|confusing|perplexing|puzzling|obscure|vague|ambiguous|indefinite|incomprehensible|uncomprehensible|indistinct|opaque +(adj)|indecipherable|undecipherable|unreadable|illegible +uncleared|1 +(adj)|uncleared |unimproved|wooded +unclearness|1 +(noun)|incomprehensibility +unclimbable|2 +(adj)|unscalable +(adj)|unsurmountable|impassable |unpassable +unclip|1 +(verb)|undo +unclipped|2 +(adj)|unclipped +(adj)|untrimmed |uncut +uncloak|2 +(verb)|unmask|debunk|expose +(verb)|take off +unclog|1 +(verb)|free|disengage +unclogged|1 +(adj)|unobstructed +unclothe|3 +(verb)|deprive|strip|divest +(verb)|uncover|expose +(verb)|undress|discase|uncase|strip|strip down|disrobe|peel|take off +unclothed|1 +(adj)|unclothed |bare|au naturel|naked|nude|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|bare-breasted|braless|topless|bareheaded|bared|barelegged|en deshabille|in dishabille|exposed|uncovered|mother-naked|naked as the day one was born|naked as the day you were born|in one's birthday suit|in your birthday suit|off-the-shoulder|starkers|stripped|unappareled|unattired|unclad|undressed|ungarbed|ungarmented|without a stitch|bottomless|clothesless|garmentless|raimentless|half-clothed|scantily clad|underclothed|seminude|unadorned|undecorated +unclouded|4 +(adj)|clean|clear|light|pure +(adj)|cloudless|clear +(adj)|clearheaded |clear-thinking +(adj)|clear +uncloudedness|1 +(noun)|clearness|clarity|quality +unclutter|1 +(verb)|clear|change|alter|modify +uncluttered|1 +(adj)|unlittered|tidy +unco|2 +(adj)|uncanny|unnatural +(adv)|unusually|remarkably|outstandingly +uncoated|1 +(adj)|uncoated +uncoerced|1 +(adj)|unforced|willing|voluntary +uncoil|1 +(verb)|unwind|disentangle +uncoiled|1 +(adj)|uncoiled |straight|uncurled|unwound +uncollected|1 +(adj)|uncollected +uncollectible|1 +(adj)|bad|invalid +uncolored|2 +(adj)|uncolored |uncoloured|achromatous|achromic|achromous|achromatic +(adj)|unbleached|undyed|natural +uncoloured|1 +(adj)|uncolored |achromatous|achromic|achromous|achromatic +uncolumned|1 +(adj)|noncolumned |astylar|unpillared +uncombable|1 +(adj)|uncombed +uncombed|1 +(adj)|uncombed |uncombable|unkempt +uncombined|1 +(adj)|uncombined |uncompounded|unmixed +uncomely|1 +(adj)|indecent|indecorous|unbecoming|unseemly|untoward|improper +uncomfortable|2 +(adj)|uncomfortable |awkward|ill at ease|uneasy|discomfited|embarrassed|disquieting|self-conscious|uneasy +(adj)|uncomfortable |comfortless|irritating|painful|miserable|wretched|warm|bad|tough +uncomfortableness|2 +(noun)|discomfort|condition|status +(noun)|self-consciousness|uneasiness|embarrassment +uncommercial|1 +(adj)|noncommercial +uncommercialised|1 +(adj)|uncommercialized|noncommercial +uncommercialized|1 +(adj)|uncommercialised|noncommercial +uncommitted|3 +(adj)|uncommitted |undecided|fancy-free|floating +(adj)|unattached |unengaged|unpledged|unpromised +(adj)|available|free +uncommon|2 +(adj)|uncommon |especial|exceptional|particular|special|rare|red carpet|red-carpet|unusual|unwonted|extraordinary|unusual +(adj)|rare|extraordinary +uncommonness|1 +(noun)|extraordinariness +uncommunicative|1 +(adj)|uncommunicative |incommunicative|blank|close|closelipped|closemouthed|secretive|tightlipped|deadpan|expressionless|impassive|poker-faced|unexpressive|guarded|noncommittal|unrevealing|incommunicado|mum|silent|unpronounceable|unutterable|inexpressive|inarticulate|unarticulate|taciturn +uncommunicativeness|1 +(noun)|trait +uncompahgre peak|1 +(noun)|Uncompahgre Peak|mountain peak +uncomparable|1 +(adj)|incomparable |incommensurable|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|alone|unique|unequaled|unequalled|unparalleled|all-time|best|extraordinary +uncomparably|1 +(adv)|incomparably +uncompartmented|1 +(adj)|uncompartmented +uncompassionate|1 +(adj)|uncompassionate |hardhearted|stonyhearted|unfeeling|merciless|unmerciful|unsympathetic +uncompensated|1 +(adj)|unsalaried|unpaid +uncompetitive|1 +(adj)|noncompetitive +uncomplaining|1 +(adj)|uncomplaining |patient|unmurmuring|unprotesting|patient +uncomplete|1 +(adj)|incomplete |broken|half|partial|rudimentary|sketchy|unelaborated|uncompleted|fractional +uncompleted|2 +(adj)|incomplete|unfinished +(adj)|incomplete |uncomplete +uncomplicated|2 +(adj)|unsophisticated|simple +(adj)|elementary|simple|unproblematic|easy +uncomplimentary|2 +(adj)|uncomplimentary |belittling|deprecating|deprecative|deprecatory|depreciative|depreciatory|slighting|derogative|derogatory|disparaging|dyslogistic|dislogistic|pejorative|supercilious|sneering|snide|unfavorable|unfavourable +(adj)|unflattering +uncompounded|1 +(adj)|unmixed|uncombined +uncomprehended|1 +(adj)|ununderstood +uncomprehending|1 +(adj)|undiscerning +uncomprehensible|1 +(adj)|incomprehensible |dark|obscure|enigmatic|enigmatical|puzzling|impenetrable|indecipherable|lost|missed|opaque|unintelligible|unfathomable|inexplicable|incomprehensible|unclear|unintelligible +uncompress|1 +(verb)|decompress|restore|reconstruct +uncompromising|1 +(adj)|uncompromising |inflexible|hard-line|hardline|unyielding +unconcealed|1 +(adj)|unconcealed |blatant|blazing|conspicuous|open|discovered|disclosed|revealed|exhibitionistic|open|visible|in full view|overt|open7 +unconcern|2 +(noun)|nonchalance|indifference|carefreeness +(noun)|feeling +unconcerned|3 +(adj)|unconcerned |blase|blithe|casual|insouciant|nonchalant|degage|detached|uninvolved|indifferent|careless|untroubled +(adj)|untroubled +(adj)|uninvolved +unconditional|3 +(adj)|unconditional |absolute|total|unconditioned|blunt|crude|stark|independent|vested|unqualified +(adj)|categoric|categorical|flat|unqualified +(adj)|independent +unconditionally|1 +(adv)|flatly|categorically +unconditioned|2 +(adj)|absolute|total|unconditional +(adj)|unconditioned |innate|unlearned +unconditioned reflex|1 +(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|physiological reaction|reaction|response +unconfessed|2 +(adj)|unacknowledged +(noun)|people +unconfident|1 +(adj)|unconfident |diffident|shy|timid|unsure +unconfined|2 +(adj)|unconfined |free-range|unenclosed|free +(adj)|unimprisoned|free +unconfirmed|1 +(adj)|unconfirmed |unofficial +unconformable|1 +(adj)|inconsistent +unconformist|1 +(adj)|nonconformist +unconfused|1 +(adj)|unbaffled|unperplexed +uncongenial|3 +(adj)|uncongenial |incompatible|disagreeable|unsympathetic|incompatible|unfriendly|unsympathetic +(adj)|hostile|unfriendly|inhospitable +(adj)|incompatible +uncongeniality|1 +(noun)|unfriendliness +unconnected|4 +(adj)|dissociated|unrelated +(adj)|unconnected |apart|isolated|obscure|asternal|detached|separated|disjoined|separate|exploded|unattached|uncoupled|unrelated +(adj)|not kin|unrelated +(adj)|confused|disconnected|disjointed|disordered|garbled|illogical|scattered|incoherent +unconnectedness|1 +(noun)|relation +unconquerable|2 +(adj)|unconquerable |impregnable|inexpugnable|indomitable|never-say-die|unsubduable|insuperable|insurmountable|invincible|unbeatable|unvanquishable|all-victorious|insurmountable|unsurmountable|invulnerable +(adj)|insuperable|insurmountable |unsurmountable +unconquered|1 +(adj)|unbeaten|unvanquished|undefeated +unconscientious|1 +(adj)|unconscientious |conscienceless|unconscionable +unconscientiousness|2 +(noun)|conscience +(noun)|carelessness +unconscionable|2 +(adj)|conscienceless|unconscientious +(adj)|exorbitant|extortionate|outrageous|steep|usurious|immoderate +unconscious|4 +(adj)|unconscious |cold|comatose|insensible|senseless|knocked out|kayoed|KO'd|out|stunned|nonconscious|subconscious|ignorant|innocent|semicomatose|asleep|insensible|involuntary|nonvoluntary|unvoluntary|unaware +(adj)|involuntary |nonvoluntary|unvoluntary +(adj)|unaware +(noun)|unconscious mind|mind|head|brain|psyche|nous +unconscious mind|1 +(noun)|unconscious|mind|head|brain|psyche|nous +unconscious process|1 +(noun)|process|cognition|knowledge|noesis +unconsciousness|1 +(noun)|cognitive state|state of mind +unconsecrated|1 +(adj)|profane|unsanctified|unholy |unhallowed +unconsidered|1 +(adj)|inconsiderate|thoughtless +unconsolable|1 +(adj)|inconsolable |disconsolate|desolate +unconsolidated|1 +(adj)|loose +unconstipated|1 +(adj)|unconstipated |regular|diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|lax|loose +unconstitutional|1 +(adj)|unconstitutional +unconstrained|1 +(adj)|at liberty|free +unconstraint|1 +(noun)|abandon|wantonness|unrestraint +unconstricted|1 +(adj)|unconstricted |open +unconstructive|1 +(adj)|unhelpful +unconsumed|2 +(adj)|unexhausted +(adj)|undrunk|uneaten +unconsummated|1 +(adj)|unconsummated +uncontaminated|2 +(adj)|uncontaminated +(adj)|unpolluted|pure +uncontaminating|1 +(adj)|clean +uncontested|1 +(adj)|uncontested |oppose +uncontrived|1 +(adj)|unstudied |candid|unaffected +uncontrollable|4 +(adj)|unmanageable|intractable +(adj)|indocile|ungovernable|unruly|unmanageable +(adj)|uncorrectable|unmanageable|incorrigible +(adj)|irrepressible|uncontrolled +uncontrolled|2 +(adj)|uncontrolled |anarchic|anarchical|lawless|errant|irrepressible|uncontrollable|loose|lordless|masterless|rampant|runaway|torrential|undisciplined|ungoverned|wild|wild|unrestrained +(adj)|unrestrained|untempered|intemperate +uncontroversial|2 +(adj)|uncontroversial |noncontroversial|accepted|undisputed|agreed upon|stipulatory +(adj)|inoffensive|innocuous |harmless +unconventional|3 +(adj)|unconventional |bohemian|go-as-you-please|irregular|maverick|unorthodox|original +(adj)|unconventional |alternative|bizarre|eccentric|freakish|freaky|flaky|off-the-wall|outlandish|outre|devil-may-care|raffish|rakish|far-out|kinky|offbeat|quirky|way-out|spaced-out|spacy|spacey +(adj)|improper|unlawful|irregular +unconventionality|2 +(noun)|originality +(noun)|unorthodoxy|heterodoxy +unconverted|1 +(adj)|unpersuaded|unregenerate |unregenerated +unconvertible|1 +(adj)|inconvertible |unexchangeable|irredeemable +unconvinced|1 +(adj)|unconvinced |dubious +unconvincing|2 +(adj)|unconvincing |unpersuasive|incredible|unbelievable +(adj)|improbable|unbelievable|unlikely|implausible +uncooked|1 +(adj)|raw +uncool|1 +(adj)|bad +uncooperative|2 +(adj)|uncooperative |refractory|unhelpful|unhelpful +(adj)|disobliging|unaccommodating |unobliging +uncoordinated|2 +(adj)|unorganized |unorganised +(adj)|maladroit +uncordial|1 +(adj)|unfriendly +uncork|2 +(verb)|unleash +(verb)|open|open up +uncorrectable|1 +(adj)|uncontrollable|unmanageable|incorrigible +uncorrected|2 +(adj)|uncorrected |unremedied +(adj)|undisciplined|unpunished +uncorrelated|1 +(adj)|unrelated +uncorroborated|1 +(adj)|unsubstantiated|unsupported +uncorrupted|3 +(adj)|undefiled|perfect +(adj)|unspoiled|incorrupt +(adj)|incorrupt +uncounted|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|multitudinous|numberless|unnumberable|unnumbered|unnumerable|incalculable +uncouple|1 +(verb)|decouple|disconnect +uncoupled|1 +(adj)|unconnected +uncousinly|1 +(adj)|uncousinly +uncouth|1 +(adj)|coarse|common|rough-cut|vulgar|unrefined +uncouthness|1 +(noun)|boorishness|inelegance +uncover|2 +(verb)|bring out|unveil|reveal|show +(verb)|expose +uncovered|2 +(adj)|uncovered |bald|bare|denuded|denudate|unroofed|undraped +(adj)|exposed|unclothed +uncovering|2 +(noun)|denudation|stripping|baring|husking|removal|remotion +(noun)|discovery|find|deed|feat|effort|exploit +uncrannied|1 +(adj)|uncrannied |smooth +uncrate|1 +(verb)|unpack|take out +uncreased|1 +(adj)|creaseless|smooth +uncreative|1 +(adj)|uncreative |sterile|unimaginative|uninspired|uninventive|unoriginal|unproductive +uncreativeness|1 +(noun)|inability +uncritical|3 +(adj)|uncritical |noncritical|unscholarly +(adj)|uncritical +(adj)|undiscriminating |indiscriminating +uncropped|2 +(adj)|uncropped |unbrowsed|undocked +(adj)|unplanted +uncross|1 +(verb)|unfold|spread|spread out|open +uncrossed|2 +(adj)|uncrossed +(adj)|uncrossed +uncrowded|1 +(adj)|uncrowded +uncrowned|2 +(adj)|uncrowned |uncapped +(adj)|uncrowned |crownless|quasi-royal +uncrystallised|2 +(adj)|uncrystallized +(adj)|amorphous|uncrystallized|noncrystalline +uncrystallized|2 +(adj)|uncrystallized |uncrystallised +(adj)|amorphous|uncrystallised|noncrystalline +unction|4 +(noun)|smarm|fulsomeness|compliment +(noun)|fulsomeness|oiliness|oleaginousness|smarminess|unctuousness|hypocrisy +(noun)|ointment|unguent|balm|salve|remedy|curative|cure +(noun)|inunction|anointing|anointment|religious ceremony|religious ritual +unctuous|1 +(adj)|buttery|fulsome|oily|oleaginous|smarmy|insincere +unctuously|1 +(adv)|smarmily|fulsomely +unctuousness|1 +(noun)|fulsomeness|oiliness|oleaginousness|smarminess|unction|hypocrisy +uncultivable|1 +(adj)|uncultivatable|uncultivated +uncultivatable|1 +(adj)|uncultivable|uncultivated +uncultivated|3 +(adj)|uncultivated |uncultivable|uncultivatable +(adj)|artless|uncultured|unrefined +(adj)|lowbrow|lowbrowed|nonintellectual +uncultured|1 +(adj)|artless|uncultivated|unrefined +uncurbed|1 +(adj)|unbridled|unchecked|ungoverned|unrestrained +uncured|2 +(adj)|unseasoned +(adj)|fresh +uncurl|1 +(verb)|change posture +uncurled|2 +(adj)|uncoiled |straight +(adj)|straight +uncurtained|1 +(adj)|curtainless +uncurved|1 +(adj)|uncurving|straight +uncurving|1 +(adj)|uncurved|straight +uncus|1 +(noun)|hook|crotchet +uncut|8 +(adj)|untrimmed |unclipped +(adj)|unmown +(adj)|uncut |rough|unsheared +(adj)|uncut +(adj)|uncut |imperforate|unpierced +(adj)|uninjured +(adj)|standing|unfelled +(adj)|full-length|unabridged +undamaged|1 +(adj)|undamaged |intact|unmarred|unmutilated|unblemished|unbroken|unimpaired|uninjured +undatable|1 +(adj)|undatable |dateless|undated|dateless +undated|1 +(adj)|dateless|undatable +undaunted|2 +(adj)|undismayed|unshaken|resolute +(adj)|brave |courageous|fearless +undecagon|1 +(noun)|polygon|polygonal shape +undeceive|1 +(verb)|inform +undeceived|1 +(adj)|disabused|disenchanted +undecided|3 +(adj)|open|undetermined|unresolved|unsettled +(adj)|on the fence|indecisive +(adj)|uncommitted +undecipherable|1 +(adj)|indecipherable|unclear|unreadable|illegible +undecipherably|1 +(adv)|illegibly|unreadably +undeciphered|1 +(adj)|undeciphered +undeclared|1 +(adj)|undeclared |unacknowledged|unavowed +undecomposable|1 +(adj)|unanalyzable|simple +undecomposed|1 +(adj)|unrotten |unrotted +undecorated|1 +(adj)|unadorned |plain|unembellished|unornamented|untufted|plain|unclothed +undecylenic acid|1 +(noun)|acid +undedicated|1 +(adj)|undedicated +undefeated|1 +(adj)|undefeated |triumphant|victorious|unbeaten|unconquered|unvanquished|unbowed|successful +undefendable|1 +(adj)|assailable|undefended|open|vulnerable +undefended|1 +(adj)|assailable|undefendable|open|vulnerable +undeferential|1 +(adj)|disrespectful +undefiled|2 +(adj)|immaculate|pure +(adj)|uncorrupted|perfect +undefinable|1 +(adj)|indefinable|undefined |vague +undefined|1 +(adj)|undefined |vague|indefinable|undefinable|indefinite +undelineated|1 +(adj)|undelineated |undepicted|unpictured|undrawn +undemanding|1 +(adj)|undemanding |easy|lenient|easygoing|light|unexacting|easy +undemocratic|1 +(adj)|undemocratic |authoritarian|autocratic|dictatorial|despotic|tyrannical|despotic|monarchal|monarchical|monarchic|totalitarian +undemonstrative|1 +(adj)|undemonstrative |reserved|restrained|reticent|unemotional|reserved +undeniable|1 +(adj)|undeniable |incontestable|indisputable|undisputable|incontrovertible|irrefutable|positive|unquestionable +undenominational|1 +(adj)|nonsectarian |unsectarian +undependability|1 +(noun)|undependableness|unreliability|unreliableness|irresponsibility|irresponsibleness +undependable|3 +(adj)|unreliable |erratic|temperamental|uncertain|unsound|untrustworthy|untrusty +(adj)|unreliable|untrustworthy |untrusty +(adj)|unreliable|fallible +undependableness|1 +(noun)|undependability|unreliability|unreliableness|irresponsibility|irresponsibleness +undependably|1 +(adv)|unfaithfully|unreliably +undepicted|1 +(adj)|unpictured|undelineated +under|3 +(adj)|nether|low +(adj)|subordinate |low-level +(adv)|below +under-the-counter|1 +(adj)|illegal +under-the-table|1 +(adj)|sub-rosa|behind-the-scenes|covert +under attack|1 +(adj)|under fire|vulnerable +under consideration|1 +(adj)|at issue|in dispute|in hand|in question|relevant +under control|1 +(adv)|in check|in restraint +under fire|1 +(adj)|under attack|vulnerable +under it|1 +(adv)|thereunder|under that +under that|1 +(adv)|thereunder|under it +under the weather|1 +(adj)|ailing|indisposed|peaked|poorly|sickly|unwell|ill |sick +under wraps|1 +(adj)|covert +underachieve|1 +(verb)|underperform|do|perform +underachievement|1 +(noun)|performance +underachiever|1 +(noun)|underperformer|nonachiever|student|pupil|educatee +underact|1 +(verb)|underplay|act|play|roleplay|playact +underactive|1 +(adj)|hypoactive|inactive +underage|2 +(adj)|minor |nonaged +(adj)|dependent +underarm|2 +(adj)|underhand |underhanded +(adv)|underhand +underbelly|3 +(noun)|bottom|underside|undersurface +(noun)|underbody|abdomen|venter|stomach|belly +(noun)|weak part|weak spot|soft spot +underbid|3 +(verb)|bid|call +(verb)|offer|bid|tender +(verb)|offer|bid|tender +underbodice|1 +(noun)|camisole|undergarment +underbody|1 +(noun)|underbelly|abdomen|venter|stomach|belly +underboss|1 +(noun)|assistant|helper|help|supporter +underbred|2 +(adj)|ill-bred|bounderish|lowbred|rude|yokelish|unrefined +(adj)|crossbred +underbrush|1 +(noun)|undergrowth|underwood|brush|brushwood|coppice|copse|thicket +undercarriage|1 +(noun)|framework|frame|framing|support +undercharge|3 +(noun)|charge +(noun)|charge|burster|bursting charge|explosive charge +(verb)|charge|bill +underclass|1 +(adj)|underprivileged +underclassman|1 +(noun)|lowerclassman|undergraduate|undergrad +underclothed|1 +(adj)|half-clothed|scantily clad|unclothed +underclothes|1 +(noun)|underwear|underclothing|undergarment +underclothing|1 +(noun)|underwear|underclothes|undergarment +undercoat|4 +(noun)|underseal|seal +(noun)|flat coat|ground|primer|priming|primer coat|priming coat|coat of paint +(noun)|underfur|fur +(verb)|prime|ground|paint +undercoated|1 +(adj)|undersealed|rustless +undercover|1 +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|underground|covert +undercover agent|1 +(noun)|spy|secret agent|intelligence officer|intelligence agent|operative +undercover operation|1 +(noun)|operation +undercover work|1 +(noun)|spying|intelligence|intelligence activity|intelligence operation +undercurrent|2 +(noun)|undertone|meaning|substance +(noun)|undertide|current|stream +undercut|10 +(noun)|material|stuff +(noun)|tenderloin|cut|cut of meat +(noun)|notch|forestry +(noun)|cut|stroke|shot +(noun)|cut|cutting +(verb)|undersell|sell +(verb)|cut away +(verb)|cut away +(verb)|hit +(verb)|cut +underdevelop|1 +(verb)|develop +underdeveloped|3 +(adj)|developing|nonindustrial +(adj)|immature +(adj)|flat +underdevelopment|2 +(noun)|development +(noun)|development|developing +underdog|1 +(noun)|failure|loser|nonstarter|unsuccessful person +underdone|1 +(adj)|half-baked|raw +underdrawers|1 +(noun)|drawers|shorts|boxers|boxershorts|underpants +underdress|1 +(verb)|dress down|dress|get dressed +underdressed|1 +(adj)|clothed |clad +undereducated|1 +(adj)|uneducated +underemployed|1 +(adj)|part-time +underestimate|4 +(noun)|underestimation|underrating|underreckoning|estimate|estimation|approximation|idea +(verb)|undervalue|value +(verb)|lowball|estimate|gauge|approximate|guess|judge +(verb)|underrate|misjudge +underestimation|1 +(noun)|underestimate|underrating|underreckoning|estimate|estimation|approximation|idea +underevaluation|1 +(noun)|appraisal|assessment +underexpose|2 +(verb)|expose +(verb)|expose +underexposure|2 +(noun)|exposure +(noun)|exposure +underfed|1 +(adj)|ill-fed|undernourished|malnourished +underfelt|1 +(noun)|carpet pad|rug pad|underlay|underlayment +underframe|1 +(noun)|skeleton|skeletal frame|frame|supporting structure +underfur|1 +(noun)|undercoat|fur +undergarment|1 +(noun)|garment +undergird|2 +(verb)|support|back up +(verb)|brace up|strengthen|beef up|fortify +undergo|3 +(verb)|experience|receive|have|get +(verb)|experience|see|go through|participate|take part +(verb)|take|submit|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up +undergrad|1 +(noun)|undergraduate|collegian|college man|college boy +undergraduate|1 +(noun)|undergrad|collegian|college man|college boy +underground|5 +(adj)|belowground|subsurface +(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|on the quiet|secret|surreptitious|undercover|covert +(adj)|guerrilla|guerilla|irregular|partisan |partizan +(noun)|resistance|revolutionary group +(noun)|metro|subway|tube|railway|railroad|railroad line|railway line|railway system +underground press|1 +(noun)|samizdat|print media +underground railroad|1 +(noun)|Underground Railroad|Underground Railway|escape|flight +underground railway|1 +(noun)|Underground Railroad|Underground Railway|escape|flight +undergrow|1 +(verb)|grow +undergrowth|1 +(noun)|underbrush|underwood|brush|brushwood|coppice|copse|thicket +underhand|4 +(adj)|underhand |underhanded|underarm +(adj)|sneaky|underhanded|crooked |corrupt +(adv)|underhandedly +(adv)|underarm +underhanded|2 +(adj)|sneaky|underhand|crooked |corrupt +(adj)|underhand |underarm +underhandedly|1 +(adv)|underhand +underhung|2 +(adj)|supported +(adj)|undershot|underslung|protrusive +underivative|1 +(adj)|original +underived|1 +(adj)|underived |original|primary +underlay|6 +(noun)|carpet pad|rug pad|underlayment|pad +(verb)|raise|lift|elevate|get up|bring up +(verb)|put|set|place|pose|position|lay +(verb)|provide|supply|ply|cater +(verb)|underlie|be +(verb)|underlie|lie +underlayment|1 +(noun)|carpet pad|rug pad|underlay|pad +underlie|2 +(verb)|be +(verb)|lie +underline|3 +(noun)|underscore|stroke +(verb)|underscore|emphasize|emphasise|stress|emphasize|emphasise|punctuate|accent|accentuate +(verb)|underscore|mark +underling|1 +(noun)|subordinate|subsidiary|foot soldier|assistant|helper|help|supporter +underlying|3 +(adj)|implicit in|inherent|implicit |inexplicit +(adj)|subjacent +(adj)|fundamental|rudimentary|basic +undermanned|1 +(adj)|short-handed|short-staffed|understaffed|inadequate +undermentioned|1 +(adj)|following|succeeding +undermine|2 +(verb)|sabotage|countermine|counteract|subvert|weaken|disobey +(verb)|cave|hollow|hollow out|core out +undernourish|1 +(verb)|malnourish|feed|give +undernourished|1 +(adj)|ill-fed|underfed|malnourished +undernourishment|1 +(noun)|malnourishment|hunger|hungriness +underpants|1 +(noun)|undergarment +underpart|1 +(noun)|body part +underpass|1 +(noun)|subway|tunnel +underpay|1 +(verb)|pay +underpayment|2 +(noun)|payment +(noun)|payment|defrayal|defrayment +underperform|2 +(verb)|underachieve|do|perform +(verb)|perform +underperformer|2 +(noun)|underachiever|nonachiever|student|pupil|educatee +(noun)|business|concern|business concern|business organization|business organisation +underpin|2 +(verb)|hold|support|sustain|hold up +(verb)|corroborate|bear out|support|match|fit|correspond|check|jibe|gibe|tally|agree +underplay|2 +(verb)|underact|act|play|roleplay|playact +(verb)|play +underpopulated|1 +(adj)|inhabited +underprice|1 +(verb)|dump|sell +underprivileged|1 +(adj)|underprivileged |deprived|disadvantaged|underclass|poor|unfortunate +underproduce|1 +(verb)|produce|make|create +underproduction|1 +(noun)|production +underquote|2 +(verb)|price +(verb)|quote +underrate|1 +(verb)|underestimate|misjudge +underrating|1 +(noun)|underestimate|underestimation|underreckoning|estimate|estimation|approximation|idea +underreckoning|1 +(noun)|underestimate|underestimation|underrating|estimate|estimation|approximation|idea +underscore|3 +(noun)|underline|stroke +(verb)|underline|emphasize|emphasise|stress|emphasize|emphasise|punctuate|accent|accentuate +(verb)|underline|mark +undersea|1 +(adj)|submarine|subsurface +underseal|1 +(noun)|undercoat|seal +undersealed|1 +(adj)|undercoated|rustless +undersecretary|1 +(noun)|secretary +undersell|1 +(verb)|undercut|sell +underseller|1 +(noun)|seller|marketer|vender|vendor|trafficker +undersexed|1 +(adj)|unsexy +undershirt|1 +(noun)|singlet|vest|undergarment +undershoot|2 +(verb)|land|set down +(verb)|miss +undershot|1 +(adj)|underhung|underslung|protrusive +undershrub|1 +(noun)|shrub|bush +underside|1 +(noun)|bottom|undersurface|side|face +undersign|1 +(verb)|sign +undersize|1 +(adj)|undersized|small +undersized|1 +(adj)|undersize|small +underskirt|1 +(noun)|petticoat|half-slip|undergarment +underslung|3 +(adj)|supported +(adj)|underhung|undershot|protrusive +(adj)|squat|low +undersoil|1 +(noun)|subsoil|soil|dirt +underspend|2 +(verb)|spend +(verb)|spend|expend|drop +underspent|1 +(adj)|efficient +understaffed|1 +(adj)|short-handed|short-staffed|undermanned|inadequate +understand|4 +(verb)|realize|realise|see +(verb)|read|interpret|translate +(verb)|infer|believe +(verb)|sympathize|sympathise|empathize|empathise +understandability|1 +(noun)|comprehensibility|quality +understandable|1 +(adj)|apprehensible|intelligible|graspable|perceivable|comprehensible |comprehendible +understandably|1 +(adv)|intelligibly|clearly +understanding|5 +(adj)|perceptive +(noun)|apprehension|discernment|savvy|knowing +(noun)|agreement|statement +(noun)|sympathy|inclination|disposition|tendency +(noun)|reason|intellect|faculty|mental faculty|module +understate|1 +(verb)|minimize|minimise|downplay|inform +understated|1 +(adj)|unostentatious|unpretentious|tasteful +understatement|1 +(noun)|statement +understock|1 +(verb)|stock|buy in +understood|2 +(adj)|understood |appreciated|apprehended|comprehended|interpreted|taken +(adj)|implied|silent|tacit|implicit |inexplicit +understructure|1 +(noun)|foundation|base|fundament|foot|groundwork|substructure|support +understudy|2 +(noun)|standby|actor|histrion|player|thespian|role player +(verb)|alternate|memorize|memorise|con|learn +undersurface|1 +(noun)|bottom|underside|side|face +undertake|5 +(verb)|set about|attempt|initiate|pioneer +(verb)|tackle|take on|confront|face up|face +(verb)|guarantee|promise|assure +(verb)|contract|promise|assure +(verb)|take in charge|accept|consent|go for +undertaker|1 +(noun)|mortician|funeral undertaker|funeral director|skilled worker|trained worker +undertaking|2 +(noun)|project|task|labor|work +(noun)|trade|craft +undertide|1 +(noun)|undercurrent|current|stream +undertone|3 +(noun)|tone|tone of voice +(noun)|undercurrent|meaning|substance +(noun)|tinge|shade|tint|tincture|tone +undertow|2 +(noun)|inclination +(noun)|sea puss|sea-puss|sea purse|sea-purse|sea-poose|undertide|undercurrent +undervaluation|1 +(noun)|evaluation|valuation|rating +undervalue|3 +(verb)|underestimate|value +(verb)|disrespect|disesteem +(verb)|depreciate|devaluate|devalue|decrease|diminish|lessen|fall +underwater|2 +(adj)|submerged|submersed|subsurface +(adj)|subaqueous|subaquatic|submerged|submersed|aquatic +underwater archaeology|1 +(noun)|marine archeology|marine archaeology|underwater archeology|archeology|archaeology +underwater archeology|1 +(noun)|marine archeology|marine archaeology|underwater archaeology|archeology|archaeology +underwater diver|1 +(noun)|diver|frogman|explorer|adventurer +underway|1 +(adj)|afoot|current +underwear|1 +(noun)|underclothes|underclothing|undergarment +underweight|1 +(adj)|scraggy|scrawny|skinny|weedy|thin |lean +underwing|1 +(noun)|noctuid moth|noctuid|owlet moth +underwood|1 +(noun)|underbrush|undergrowth|brush|brushwood|coppice|copse|thicket +underworld|2 +(noun)|class|social class|socio-economic class +(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|imaginary place|mythical place +underwrite|2 +(verb)|subvention|subvent|undertake|guarantee +(verb)|cover|insure|guarantee|warrant +underwriter|3 +(noun)|investment banker|agent|factor|broker +(noun)|insurance broker|insurance agent|general agent|agent|factor|broker +(noun)|insurance company|insurance firm|insurer|insurance underwriter|nondepository financial institution +undescended|1 +(adj)|testis|testicle|orchis|ball|ballock|bollock|nut|egg +undescended testicle|1 +(noun)|undescended testis|testis|testicle|orchis|ball|ballock|bollock|nut|egg +undescended testis|1 +(noun)|undescended testicle|testis|testicle|orchis|ball|ballock|bollock|nut|egg +undescriptive|1 +(adj)|undescriptive +undeserved|1 +(adj)|unmerited +undeserving|1 +(adj)|undeserving of|unworthy of|unworthy +undeserving of|1 +(adj)|undeserving|unworthy of|unworthy +undesigned|1 +(adj)|undesigned |unintentional +undesirability|1 +(noun)|bad|badness +undesirable|3 +(adj)|undesirable |unenviable|unwanted|hateful|unwanted +(adj)|unsuitable|ineligible +(noun)|unwelcome person|persona non grata +undesired|1 +(adj)|unsought|unwanted +undesiring|1 +(adj)|undesirous +undesirous|1 +(adj)|undesirous |undesiring +undestroyable|2 +(adj)|durable|indestructible|perdurable|imperishable +(adj)|indestructible +undetectable|2 +(adj)|invisible |unseeable +(adj)|indiscernible|insensible|imperceptible |unperceivable +undetected|1 +(adj)|undetected |undiscovered|unobserved|unseen +undeterminable|1 +(adj)|indeterminable |indeterminate|unascertainable|undiscoverable|unpredictable|incalculable|indeterminate|undetermined +undetermined|3 +(adj)|undetermined |unexplained +(adj)|indeterminate |cost-plus|open-ended|inconclusive|indeterminable|undeterminable|uncertain +(adj)|open|undecided|unresolved|unsettled +undeterred|1 +(adj)|undiscouraged|resolute +undeveloped|3 +(adj)|undeveloped |budding|immature|unformed|vestigial|rudimentary +(adj)|unexploited |fallow|untapped +(adj)|unimproved +undeviating|2 +(adj)|unswerving|direct +(adj)|reliable +undiagnosable|1 +(adj)|unidentifiable +undiagnosed|1 +(adj)|unknown +undies|1 +(noun)|lingerie|intimate apparel +undifferentiated|1 +(adj)|undifferentiated |uniform|dedifferentiated +undigested|2 +(adj)|ununderstood +(adj)|indigestible +undignified|1 +(adj)|undignified |demeaning|humbling|humiliating|mortifying|infra dig|pathetic|ridiculous|silly|discomposed|inelegant +undiluted|2 +(adj)|undiluted |black|concentrated|neat|straight|full-strength +(adj)|pure|unmixed|absolute +undiminished|1 +(adj)|unrelieved|unmitigated +undimmed|1 +(adj)|undimmed |bright +undine|1 +(noun)|water sprite|water nymph +undiplomatic|2 +(adj)|undiplomatic +(adj)|tactless|impolitic +undiplomatically|1 +(adv)|without diplomacy +undirected|1 +(adj)|adrift|afloat|aimless|directionless|planless|rudderless|purposeless +undiscerning|1 +(adj)|undiscerning |obtuse|purblind|uncomprehending|indiscriminate +undischarged|2 +(adj)|outstanding|owed|owing|unpaid +(adj)|unexploded|loaded +undiscipline|1 +(noun)|indiscipline|trait +undisciplined|3 +(adj)|untrained +(adj)|uncorrected|unpunished +(adj)|ungoverned|uncontrolled +undisclosed|1 +(adj)|unrevealed|covert +undiscouraged|1 +(adj)|undeterred|resolute +undiscoverable|1 +(adj)|unascertainable|indeterminable |undeterminable +undiscovered|2 +(adj)|undetected +(adj)|unexplored|unknown +undiscriminating|1 +(adj)|undiscriminating |indiscriminating|indiscriminate|uncritical|unperceptive|scattershot|unselective|indiscriminate +undisguised|1 +(adj)|overt |open +undismayed|1 +(adj)|undaunted|unshaken|resolute +undisputable|1 +(adj)|incontestable|indisputable|undeniable +undisputed|2 +(adj)|accepted|uncontroversial |noncontroversial +(adj)|unchallenged|undoubted|unquestioned|unquestionable +undisputedly|1 +(adv)|unarguably +undissolved|1 +(adj)|unmelted +undistinguishable|1 +(adj)|indistinguishable +undistinguished|1 +(adj)|insignificant|unnoticeable +undistorted|1 +(adj)|ingenuous |artless +undistributed|1 +(adj)|undiversified |unvaried +undisturbed|2 +(adj)|unmolested|untroubled +(adj)|peaceful +undiversified|1 +(adj)|undiversified |unvaried|general|monolithic|solid|unanimous|undistributed|homogeneous|homogenous +undividable|1 +(adj)|indivisible by|indivisible +undivided|4 +(adj)|united +(adj)|unshared +(adj)|single|exclusive|concentrated +(adj)|full|whole +undivided interest|1 +(noun)|undivided right|interest|stake +undivided right|1 +(noun)|undivided interest|interest|stake +undo|5 +(verb)|change by reversal|turn|reverse +(verb)|unmake +(verb)|ruin +(verb)|untie|loosen|change|alter|modify +(verb)|unwrap|uncover|expose +undoable|1 +(adj)|unachievable|unattainable|unrealizable|impossible +undock|2 +(verb)|exit|go out|get out|leave +(verb)|remove|take|take away|withdraw +undocked|1 +(adj)|uncropped +undocumented|1 +(adj)|undocumented |unregistered|unsupported +undoer|3 +(noun)|seducer|ladies' man|lady killer +(noun)|opener|unfastener|untier|person|individual|someone|somebody|mortal|human|soul +(noun)|destroyer|ruiner|waster|uprooter|bad person +undogmatic|2 +(adj)|noncommital|undogmatical|agnostic |agnostical +(adj)|free-thinking|latitudinarian|undogmatical|broad-minded +undogmatical|2 +(adj)|noncommital|undogmatic|agnostic |agnostical +(adj)|free-thinking|latitudinarian|undogmatic|broad-minded +undoing|2 +(noun)|about-face|volte-face|reversal|policy change +(noun)|untying|unfastening|loosening|laxation +undomestic|1 +(adj)|undomestic |undomesticated +undomesticated|2 +(adj)|wild |untamed +(adj)|undomestic +undone|4 +(adj)|unfinished +(adj)|done for|ruined|sunk|washed-up|unsuccessful +(adj)|unfastened +(adj)|unstuck|disorganized |disorganised +undoubted|1 +(adj)|unchallenged|undisputed|unquestioned|unquestionable +undoubtedly|1 +(adv)|doubtless|beyond question|without doubt|beyond any doubt +undrained|1 +(adj)|undrained +undramatic|1 +(adj)|undramatic |unspectacular +undrape|1 +(verb)|uncover|expose +undraped|2 +(adj)|unveiled +(adj)|uncovered +undrawn|1 +(adj)|undelineated +undreamed|1 +(adj)|undreamed of|undreamt|undreamt of|unimagined|incredible |unbelievable +undreamed of|1 +(adj)|undreamed|undreamt|undreamt of|unimagined|incredible |unbelievable +undreamt|1 +(adj)|undreamed|undreamed of|undreamt of|unimagined|incredible |unbelievable +undreamt of|1 +(adj)|undreamed|undreamed of|undreamt|unimagined|incredible |unbelievable +undress|3 +(noun)|nakedness|nudity|nudeness +(verb)|discase|uncase|unclothe|strip|strip down|disrobe|peel|take off +(verb)|strip|divest|disinvest|remove|take|take away|withdraw +undressed|2 +(adj)|unfinished +(adj)|unappareled|unattired|unclad|ungarbed|ungarmented|unclothed +undried|1 +(adj)|wet +undrinkable|1 +(adj)|undrinkable +undrunk|1 +(adj)|unconsumed|uneaten +undset|1 +(noun)|Undset|Sigrid Undset|writer|author +undue|4 +(adj)|undue |not due +(adj)|undue +(adj)|unjustified|unwarranted|unreasonable +(adj)|excessive|inordinate|unreasonable|immoderate +undulant fever|1 +(noun)|brucellosis|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease +undulate|5 +(adj)|smooth +(verb)|ripple|ruffle|riffle|cockle|flow|flux +(verb)|roll +(verb)|roll|flap|wave|move +(verb)|change +undulation|3 +(noun)|wave|curve|curved shape +(noun)|movement|motion +(noun)|wave|movement|motion +undulatory theory|1 +(noun)|wave theory|wave theory of light|scientific theory +undutiful|1 +(adj)|impious|disrespectful +undutifulness|1 +(noun)|impiety|impiousness +undyed|1 +(adj)|unbleached|uncolored|natural +undying|1 +(adj)|deathless|immortal +undynamic|1 +(adj)|undynamic |adynamic|stagnant|moribund|static|unchanging +uneager|1 +(adj)|uneager |reluctant +unearned|1 +(adj)|unearned |honorary +unearned income|2 +(noun)|unearned revenue|income +(noun)|unearned revenue|income +unearned increment|1 +(noun)|financial gain +unearned revenue|2 +(noun)|unearned income|income +(noun)|unearned income|income +unearned run|1 +(noun)|run|tally +unearth|2 +(verb)|locate|turn up +(verb)|excavate|uncover|bring out|unveil|reveal +unearthly|2 +(adj)|spiritual|unworldly +(adj)|eldritch|weird|uncanny|supernatural +unease|2 +(noun)|malaise|uneasiness|discomfort|uncomfortableness +(noun)|disquiet|uneasiness|discomposure +uneasily|1 +(adv)|anxiously|apprehensively +uneasiness|5 +(noun)|edginess|inquietude|disquietude|anxiety +(noun)|malaise|unease|discomfort|uncomfortableness +(noun)|self-consciousness|uncomfortableness|embarrassment +(noun)|disquiet|unease|discomposure +(noun)|restlessness|nervousness +uneasy|4 +(adj)|uneasy |anxious|apprehensive|precarious|unstable|strange|tense|uncomfortable|unquiet +(adj)|anxious|nervous|unquiet|troubled +(adj)|restless|unquiet +(adj)|awkward|ill at ease|uncomfortable +uneatable|1 +(adj)|inedible |poisonous|indigestible|tough|unpalatable +uneaten|1 +(adj)|uneaten |unconsumed|undrunk|leftover|cooked-over|warmed-over|reheated +uneconomic|1 +(adj)|uneconomical|wasteful +uneconomical|2 +(adj)|wasteful|inefficient +(adj)|uneconomic|wasteful +unedifying|1 +(adj)|unedifying |unenlightening +unedited|1 +(adj)|unaltered |unchanged +uneducated|2 +(adj)|uneducated |ignorant|illiterate|ignorant|nescient|unenlightened|unlearned|unlettered|undereducated|unschooled|untaught|untutored|unstudied|illiterate|innumerate|noncivilized|noncivilised|unenlightened|uninformed +(adj)|innumerate +uneducated person|1 +(noun)|ignoramus|know nothing|unskilled person +uneffective|1 +(adj)|ineffective |ineffectual|toothless|unproductive|idle|inefficacious|inefficient|powerless|weak|useless +unelaborate|1 +(adj)|inelaborate|plain +unelaborated|1 +(adj)|sketchy|incomplete |uncomplete +unembarrassed|1 +(adj)|unabashed|unashamed +unembellished|2 +(adj)|literal|plain|unrhetorical +(adj)|plain|unornamented|unadorned |undecorated +unembodied|1 +(adj)|discorporate|bodiless|unbodied|disembodied|incorporeal |immaterial +unemotional|2 +(adj)|unemotional |chilly|dry|impassive|stolid|philosophical|philosophic|phlegmatic|phlegmatical|stoic|stoical|unblinking|cool|passionless|unmoved|unmoving +(adj)|reserved|restrained|reticent|undemonstrative +unemotional person|1 +(noun)|stoic|adult|grownup +unemotionality|2 +(noun)|emotionlessness|impassivity|impassiveness|phlegm|indifference|stolidity|apathy +(noun)|emotionlessness|trait +unemotionally|1 +(adv)|without emotion +unemphatic|1 +(adj)|unstressed |unaccented +unemployable|1 +(adj)|unemployable +unemployed|1 +(adj)|unemployed |at leisure|discharged|dismissed|fired|laid-off|pink-slipped|idle|jobless|out of work|idle +unemployed person|1 +(noun)|nonworker +unemployment|1 +(noun)|state +unemployment compensation|1 +(noun)|social insurance +unemployment line|1 +(noun)|queue|waiting line +unemployment rate|1 +(noun)|percentage|percent|per centum|pct +unenclosed|2 +(adj)|unenclosed |hypaethral|hypethral|open|unfenced|fenceless +(adj)|free-range|unconfined +unencouraging|1 +(adj)|discouraging +unencumbered|2 +(adj)|unencumbered |burdenless|unburdened|clear|unmortgaged +(adj)|unburdened +unended|1 +(adj)|unfinished +unending|1 +(adj)|ageless|eternal|everlasting|perpetual|unceasing|permanent |lasting +unendingly|1 +(adv)|endlessly|ceaselessly|incessantly|unceasingly|continuously +unendowed|1 +(adj)|unendowed |unblessed|dowerless +unendurable|1 +(adj)|unbearable|intolerable +unenergetic|1 +(adj)|slowgoing|unenterprising |nonenterprising +unenergetically|1 +(adv)|lethargically +unenforceable|1 +(adj)|unenforceable +unenforced|1 +(adj)|unenforced +unengaged|2 +(adj)|idle +(adj)|unpledged|unpromised|unattached |uncommitted +unenlightened|3 +(adj)|unenlightened |benighted|dark|uneducated|uninformed +(adj)|uninstructed|uninformed +(adj)|ignorant|nescient|unlearned|unlettered|uneducated +unenlightening|3 +(adj)|unenlightening |uninformative|uninstructive +(adj)|unedifying +(adj)|unilluminating +unenlightenment|1 +(noun)|ignorance +unenlivened|1 +(adj)|unenlivened +unenterprising|1 +(adj)|unenterprising |nonenterprising|slowgoing|unenergetic|unadventurous|unambitious|ambitionless +unentertaining|1 +(adj)|unentertaining |unamusing +unenthusiastic|1 +(adj)|unenthusiastic |cold|halfhearted|lukewarm|spiritless|passionless|spiritless +unentitled|1 +(adj)|unqualified|ineligible +unenviable|2 +(adj)|awkward|embarrassing|sticky|difficult |hard +(adj)|undesirable +unequal|2 +(adj)|unlike +(adj)|unequal |anisometric|unsymmetrical|mismatched|uneven|nonequivalent|odds-on|unbalanced|unequalized|unequalised|incommensurate +unequal to|1 +(adj)|incapable|incompetent|inadequate +unequaled|1 +(adj)|alone|unique|unequalled|unparalleled|incomparable |uncomparable +unequalised|1 +(adj)|unequalized|unequal +unequalized|1 +(adj)|unequalised|unequal +unequalled|1 +(adj)|alone|unique|unequaled|unparalleled|incomparable |uncomparable +unequally|1 +(adv)|unevenly +unequipped|3 +(adj)|unfurnished |unfurnished with|unprovided with|unsupplied with +(adj)|unequipped |ill-equipped|unprepared +(adj)|unseaworthy +unequivocal|2 +(adj)|unequivocal |univocal|unambiguous|absolute|conclusive|straightforward|unquestionable|unambiguous +(adj)|definitive|explicit |expressed +unequivocally|1 +(adv)|unambiguously|without ambiguity +unequivocalness|1 +(noun)|unambiguity|clarity|lucidity|pellucidity|clearness|limpidity +unerasable|1 +(adj)|indelible|ineradicable +unerect|1 +(adj)|unerect |accumbent|decumbent|recumbent|reclining|bent|bowed|inclined|cernuous|drooping|nodding|pendulous|couchant|crouched|crouching|huddled|hunkered|hunkered down|dormant|sleeping|flat|prostrate|hunched|round-backed|round-shouldered|stooped|stooping|crooked|leaning|lolling|lounging|procumbent|prone|prostrate|slouched|slouching|slumped|supine|resupine|bended|bent +unergetic|1 +(adj)|lethargic |dazed|foggy|groggy|logy|stuporous|dreamy|lackadaisical|languid|languorous|listless|inactive +uneroded|1 +(adj)|unweathered|unworn +unerring|1 +(adj)|inerrable|inerrant|infallible +unesco|1 +(noun)|United Nations Educational Scientific and Cultural Organization|UNESCO|United Nations agency|UN agency +unessential|1 +(adj)|inessential |complemental|complementary|completing|incidental|nonessential|dispensable|expendable|extrinsic|secondary|unimportant|unnecessary|unneeded +unestablished|1 +(adj)|unestablished |unrecognized|unrecognised +unethical|2 +(adj)|unethical |wrong +(adj)|base|dishonorable|dishonourable|immoral|wrong +uneven|3 +(adj)|uneven |crinkled|crinkly|rippled|wavy|wavelike|cross-grained|irregular|jagged|jaggy|scraggy|lumpy|out of true|untrue|patchy|ragged|unparallel|rough|unsmooth|unsteady +(adj)|mismatched|unequal +(adj)|spotty|inconsistent +unevenly|2 +(adv)|raggedly +(adv)|unequally +unevenness|2 +(noun)|variability|irregularity|unregularity +(noun)|inequality +uneventful|1 +(adj)|uneventful |placid|quiet +unexacting|1 +(adj)|undemanding +unexampled|1 +(adj)|new|unprecedented +unexceeded|1 +(adj)|unexcelled|unsurpassed|best +unexcelled|1 +(adj)|unexceeded|unsurpassed|best +unexceptionable|1 +(adj)|unimpeachable|acceptable +unexceptional|1 +(adj)|run-of-the-mill|run-of-the-mine|mine run|ordinary +unexchangeability|1 +(noun)|changelessness|unchangeability|unchangeableness|unchangingness +unexchangeable|2 +(adj)|unexchangeable |incommutable +(adj)|inconvertible |unconvertible|irredeemable +unexcitable|1 +(adj)|unexcitable |steady +unexcited|1 +(adj)|unexcited |unagitated +unexciting|2 +(adj)|unstimulating |bland|flat|dry|juiceless|vapid|uninteresting|unmoving +(adj)|unexciting |commonplace|humdrum|prosaic|unglamorous|unglamourous|tame|uninspired|uninteresting|unprovocative|unprovoking|unstimulating +unexclusive|1 +(adj)|unrestricted|public +unexcused|1 +(adj)|nonexempt +unexhausted|1 +(adj)|unexhausted |leftover|left over|left|odd|remaining|unexpended|unconsumed|unspent|unexpended +unexpansive|2 +(adj)|unexpansive +(adj)|restrained +unexpected|6 +(adj)|unexpected |unannounced|unheralded|unpredicted|unanticipated|unforeseen|unlooked-for|out of the blue|unhoped|unhoped-for|unthought|unthought-of|unprovided for|upset|surprising +(adj)|unsuspected +(adj)|forced|unscheduled +(adj)|surprising +(adj)|unplanned +(adj)|unforeseen|sudden +unexpectedly|2 +(adv)|out of the blue +(adv)|by chance|accidentally|circumstantially +unexpectedness|1 +(noun)|surprisingness|extraordinariness +unexpendable|1 +(adj)|unexpendable |essential|irreplaceable|essential|irreplaceable|unreplaceable +unexpended|2 +(adj)|unspent|unexhausted +(adj)|leftover|left over|left|odd|remaining|unexhausted +unexpired|1 +(adj)|unexpired |valid +unexplainable|1 +(adj)|unaccountable|inexplicable |incomprehensible +unexplained|2 +(adj)|undetermined +(adj)|inexplicable |incomprehensible +unexploded|1 +(adj)|undischarged|loaded +unexploited|1 +(adj)|unexploited |undeveloped|fallow|untapped +unexplorative|1 +(adj)|nonexploratory |nonexplorative|unexploratory +unexploratory|1 +(adj)|nonexploratory |nonexplorative|unexplorative +unexplored|1 +(adj)|undiscovered|unknown +unexportable|1 +(adj)|unexportable +unexpressed|1 +(adj)|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit |inexplicit +unexpressible|1 +(adj)|inexpressible |indefinable|indescribable|ineffable|unspeakable|untellable|unutterable +unexpressive|1 +(adj)|deadpan|expressionless|impassive|poker-faced|uncommunicative |incommunicative +unexpurgated|1 +(adj)|uncensored +unextended|1 +(adj)|unextended +unfaceted|1 +(adj)|unfaceted +unfading|1 +(adj)|amaranthine|immortal +unfailing|3 +(adj)|foolproof|infallible +(adj)|inexhaustible +(adj)|unflagging|constant +unfair|2 +(adj)|partial |biased|colored|coloured|one-sided|slanted|unjust +(adj)|unfair |unjust|below the belt|cheating|dirty|foul|unsporting|unsportsmanlike|raw|partial|unjust +unfairly|1 +(adv)|below the belt +unfairness|3 +(noun)|inequity|partiality|partisanship +(noun)|inequity|injustice|unjustness +(noun)|injustice|iniquity|wrongdoing|wrongful conduct|misconduct|actus reus +unfaithful|4 +(adj)|unfaithful |apostate|punic|perfidious|treacherous|untrue|inconstant|untrustworthy|untrusty +(adj)|unfaithful |adulterous|cheating|two-timing +(adj)|faithless|traitorous|disloyal +(adj)|inaccurate +unfaithfully|1 +(adv)|undependably|unreliably +unfaithfulness|1 +(noun)|infidelity|quality +unfaltering|1 +(adj)|firm|steadfast|steady|unbendable|unshakable|unwavering|resolute +unfalteringly|1 +(adv)|determinedly|unshakably|with determination +unfamiliar|1 +(adj)|unfamiliar |strange|unknown|unacquainted|unacquainted with|unfamiliar with|foreign|unknown +unfamiliar with|1 +(adj)|unacquainted|unacquainted with|unfamiliar +unfamiliarity|1 +(noun)|strangeness|unusualness +unfashionable|1 +(adj)|unfashionable |unstylish|antique|demode|ex|old-fashioned|old-hat|outmoded|passe|passee|dated|dowdy|frumpy|frumpish|fogyish|moss-grown|mossy|stick-in-the-mud|stodgy|out|prehistoric|old +unfasten|2 +(verb)|undo +(verb)|open|open up +unfastened|4 +(adj)|unfastened |unbarred|unbolted|unlatched|unlocked|unsecured|undone +(adj)|open |ajar|wide-open|open +(adj)|unbuttoned |open-collared +(adj)|untied +unfastener|1 +(noun)|undoer|opener|untier|person|individual|someone|somebody|mortal|human|soul +unfastening|1 +(noun)|untying|undoing|loosening|laxation +unfastidious|2 +(adj)|unfastidious +(adj)|unfastidious |untidy|unrefined|untidy +unfathomable|3 +(adj)|unfathomable |unsoundable|deep +(adj)|abysmal|abyssal|deep +(adj)|incomprehensible |uncomprehensible +unfathomed|1 +(adj)|profound|unplumbed|unsounded|deep +unfattened|1 +(adj)|unfinished +unfavorable|3 +(adj)|unfavorable |unfavourable|admonitory|admonishing|reproachful|reproving|adverse|harmful|inauspicious|untoward|disapproving|discriminatory|invidious|hostile|bad|critical|negative|uncomplimentary +(adj)|unfavorable |unfavourable|adverse|contrary|unpropitious +(adj)|bad +unfavorable judgment|1 +(noun)|criticism|disapproval +unfavorable position|1 +(noun)|inferiority|disadvantage +unfavorableness|1 +(noun)|unfavourableness|disadvantage +unfavorably|1 +(adv)|unfavourably +unfavourable|2 +(adj)|unfavorable |admonitory|admonishing|reproachful|reproving|adverse|harmful|inauspicious|untoward|disapproving|discriminatory|invidious|hostile|bad|critical|negative|uncomplimentary +(adj)|unfavorable |adverse|contrary|unpropitious +unfavourableness|1 +(noun)|unfavorableness|disadvantage +unfavourably|1 +(adv)|unfavorably +unfearing|1 +(adj)|audacious|brave|dauntless|fearless|intrepid|bold +unfeasibility|1 +(noun)|infeasibility|impracticability|impracticableness +unfeasible|1 +(adj)|impracticable|infeasible|unworkable|impossible +unfeathered|2 +(adj)|unfeathered |featherless|plucked|unfledged|fledgeless|unvaned +(adj)|unfledged |immature +unfed|2 +(adj)|malnourished +(adj)|unfueled +unfeeling|2 +(adj)|hardhearted|stonyhearted|uncompassionate +(adj)|insentient |insensate +unfeelingly|1 +(adv)|callously +unfeelingness|1 +(noun)|callousness|hardness|insensibility|insensitivity|insensitiveness +unfeigned|1 +(adj)|genuine|true|sincere +unfeignedly|1 +(adv)|sincerely|truly +unfelled|1 +(adj)|unfelled |standing|uncut +unfeminine|1 +(adj)|unwomanly +unfenced|1 +(adj)|fenceless|unenclosed +unfermented|1 +(adj)|fresh|sweet|unsoured +unfertile|1 +(adj)|sterile |infertile|sterilized|sterilised|unfertilized|unfertilised|unimpregnated|barren|unfruitful|impotent|unproductive +unfertilised|1 +(adj)|unfertilized|unimpregnated|sterile |unfertile|infertile +unfertilized|1 +(adj)|unfertilised|unimpregnated|sterile |unfertile|infertile +unfettered|1 +(adj)|unchained|unshackled|untied|unbound +unfiled|1 +(adj)|unregistered|unrecorded +unfilled|1 +(adj)|empty +unfilmed|1 +(adj)|untaped|live |unrecorded +unfinished|3 +(adj)|unfinished |raw|unsanded|roughhewn|rough-cut|undressed|unfattened|unhewn|rough|unsmooth|unpainted|unprocessed +(adj)|unfinished |incomplete|uncompleted|pending|undone|unended +(adj)|bare|unpainted +unfinished business|1 +(noun)|loose end|work +unfirm|2 +(adj)|unsteady|unfixed +(adj)|shifting|loose +unfit|4 +(adj)|unfit |condemned|subhuman|unsuitable +(adj)|unfit |afflicted|impaired|apractic|apraxic|autistic|bandy|bandy-legged|bowed|bowleg|bowlegged|broken-backed|crippled|halt|halting|lame|game|crookback|crookbacked|humped|humpbacked|hunchback|hunchbacked|gibbous|kyphotic|disabled|handicapped|incapacitated|gammy|knock-kneed|lame|spavined|dipped|lordotic|swayback|swaybacked|maimed|mutilated|paralytic|paralyzed|paraplegic|ill|sick|unhealthy|unsound +(adj)|bad|unsound|unhealthy +(verb)|disqualify|indispose|change|alter|modify +unfitness|3 +(noun)|poor shape|bad condition|ill health|unhealthiness|health problem +(noun)|inability|quality +(noun)|unsuitability|unsuitableness|ineptness +unfitting|1 +(adj)|inappropriate|incompatible|out or keeping|incongruous +unfixed|2 +(adj)|unfixed |detached|free|floating|unfirm|unsteady|insecure +(adj)|nebulous|indefinite +unflagging|2 +(adj)|indefatigable|tireless|unwearying|energetic +(adj)|unfailing|constant +unflappable|1 +(adj)|imperturbable|composed +unflattering|1 +(adj)|unflattering |candid|uncomplimentary +unflavored|1 +(adj)|unflavoured|nonflavored|nonflavoured|tasteless +unflavoured|1 +(adj)|unflavored|nonflavored|nonflavoured|tasteless +unflawed|1 +(adj)|flawless|perfect +unfledged|3 +(adj)|unfledged |immature|unfeathered +(adj)|fledgeless|unvaned|unfeathered |featherless +(adj)|fledgling|inexperienced +unflinching|1 +(adj)|unblinking|unintimidated|unshrinking|unafraid |fearless +unfluctuating|1 +(adj)|firm|steady|stable +unflurried|1 +(adj)|unflustered|unperturbed|unruffled|composed +unflustered|1 +(adj)|unflurried|unperturbed|unruffled|composed +unfocused|2 +(adj)|unfocused |unfocussed|out of focus +(adj)|unfocussed|distributed +unfocussed|2 +(adj)|unfocused |out of focus +(adj)|unfocused|distributed +unfold|4 +(verb)|blossom|blossom out|blossom forth|develop +(verb)|uncover|bring out|unveil|reveal +(verb)|stretch|stretch out|extend|change shape|change form|deform +(verb)|spread|spread out|open|undo +unfolded|1 +(adj)|unfolded |flat|unpleated|open|unrolled +unfolding|1 +(noun)|flowering|development|evolution +unforbearing|1 +(adj)|short|impatient +unforced|2 +(adj)|uncoerced|willing|voluntary +(adj)|unstrained|effortless +unforceful|1 +(adj)|forceless |weak|wimpish|wimpy +unforeseeable|1 +(adj)|unpredictable +unforeseen|2 +(adj)|unanticipated|unlooked-for|out of the blue|unexpected +(adj)|unexpected|sudden +unforesightful|1 +(adj)|short|shortsighted|myopic|improvident +unforested|1 +(adj)|unwooded |treeless +unforethoughtful|1 +(adj)|improvident +unforfeitable|1 +(adj)|inalienable|indefeasible +unforgettable|1 +(adj)|unforgettable |haunting|persistent|lingering|memorable +unforgettably|1 +(adv)|memorably +unforgivable|1 +(adj)|inexcusable|unpardonable +unforgivably|1 +(adv)|inexcusably|unpardonably +unforgiving|3 +(adj)|unforgiving |revengeful|vindictive|vengeful +(adj)|grim|inexorable|relentless|stern|unappeasable|unrelenting|implacable +(adj)|uncharitable|ungenerous |meanspirited +unformatted capacity|1 +(noun)|capacity +unformed|4 +(adj)|unformed |amorphous|formless|shapeless|unshaped|unshapen +(adj)|unorganized |unorganised +(adj)|immature +(adj)|immature|undeveloped +unforsaken|1 +(adj)|unforsaken |cherished|held dear +unfortunate|4 +(adj)|unfortunate |abject|black|calamitous|disastrous|fatal|fateful|castaway|shipwrecked|dispossessed|homeless|roofless|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|doomed|ill-fated|ill-omened|ill-starred|unlucky|infelicitous|unhappy|regrettable|too bad|underprivileged|unlucky|luckless|unsuccessful +(adj)|inauspicious |unpromising +(adj)|infelicitous +(noun)|unfortunate person|person|individual|someone|somebody|mortal|human|soul +unfortunate person|1 +(noun)|unfortunate|person|individual|someone|somebody|mortal|human|soul +unfortunately|1 +(adv)|unluckily|regrettably|alas +unfounded|1 +(adj)|baseless|groundless|idle|unwarranted|unsupported +unfractured|1 +(adj)|unbroken +unframed|1 +(adj)|unframed +unfree|1 +(adj)|unfree |adscript|adscripted|apprenticed|articled|bound|indentured|at bay|cornered|trapped|treed|captive|confined|imprisoned|jailed|entangled|serflike|nonautonomous|nonsovereign|prisonlike|bound|confined|dependent|restricted|slave +unfreeze|2 +(verb)|dissolve|thaw|unthaw|dethaw|melt|liquefy|flux|liquify +(verb)|unblock|free|release|issue|supply +unfrequented|1 +(adj)|lonely|solitary|inaccessible |unaccessible +unfretted|1 +(adj)|unfretted |bar +unfriendliness|2 +(noun)|dislike +(noun)|disposition|temperament +unfriendly|5 +(adj)|unfriendly +(adj)|unfriendly |beetle-browed|scowling|hostile|uncordial|unneighborly|unneighbourly|cool|hostile|inhospitable|uncongenial|incompatible|unsociable +(adj)|chilly|cool +(adj)|inimical|hostile +(adj)|hostile|uncongenial|inhospitable +unfrightened|1 +(adj)|unafraid |fearless +unfrock|1 +(verb)|defrock|divest|disinvest +unfrosted|1 +(adj)|clear +unfrozen|1 +(adj)|unfrozen |ice-free|liquescent|melting|slushy|thawed|melted|liquid|liquified +unfruitful|1 +(adj)|unfruitful |abortive|stillborn|unsuccessful|acarpous|childless|hardscrabble|poor|sterile|unfertile|infertile +unfueled|1 +(adj)|unfueled |self-sustained|unfed +unfulfilled|1 +(adj)|unrealized|unrealised|unsuccessful +unfunctional|1 +(adj)|impractical +unfunded|1 +(adj)|unfunded +unfunny|1 +(adj)|humorless |humourless|unhumorous +unfurl|1 +(verb)|unroll|change surface +unfurnished|1 +(adj)|unfurnished |unequipped|unfurnished with|unprovided with|unsupplied with +unfurnished with|1 +(adj)|unprovided with|unsupplied with|unfurnished |unequipped +unfurrowed|1 +(adj)|unfurrowed |unwrinkled|smooth +ungainliness|1 +(noun)|gawkiness|awkwardness|clumsiness +ungainly|2 +(adj)|gawky|clumsy|clunky|unwieldy|awkward +(adj)|awkward|bunglesome|clumsy|unwieldy |unmanageable +ungallant|1 +(adj)|caddish|unchivalrous|discourteous +ungarbed|1 +(adj)|unappareled|unattired|unclad|undressed|ungarmented|unclothed +ungarmented|1 +(adj)|unappareled|unattired|unclad|undressed|ungarbed|unclothed +ungathered|1 +(adj)|uncollected +ungeared|1 +(adj)|ungeared |out of gear +ungenerous|4 +(adj)|ungenerous |meanspirited|grudging|uncharitable|unforgiving|stingy +(adj)|stingy |beggarly|mean|cheap|chinchy|chintzy|cheeseparing|close|near|penny-pinching|closefisted|hardfisted|tightfisted|grudging|niggardly|scrimy|meager|scrimpy|mean|mingy|miserly|tight|parsimonious|penurious|selfish|uncharitable|meanspirited +(adj)|stingy|selfish +(adj)|uncharitable +ungentle|1 +(adj)|ignoble|untitled|lowborn +ungentlemanlike|1 +(adj)|ungentlemanly|unrefined +ungentlemanly|1 +(adj)|ungentlemanlike|unrefined +ungetatable|1 +(adj)|un-come-at-able|un-get-at-able|inaccessible |unaccessible +unglamorous|1 +(adj)|commonplace|humdrum|prosaic|unglamourous|unexciting +unglamourous|1 +(adj)|commonplace|humdrum|prosaic|unglamorous|unexciting +unglazed|2 +(adj)|unglazed |glassless +(adj)|unglazed |unvitrified +ungodliness|1 +(noun)|godlessness|impiety|impiousness +ungodly|2 +(adj)|iniquitous|sinful|wicked +(adj)|impious|irreligious +ungovernable|1 +(adj)|indocile|uncontrollable|unruly|unmanageable +ungoverned|2 +(adj)|unbridled|unchecked|uncurbed|unrestrained +(adj)|undisciplined|uncontrolled +ungraceful|1 +(adj)|graceless|awkward +ungracefully|1 +(adv)|ungraciously|gracelessly|woodenly|without graciousness +ungracefulness|1 +(noun)|gracelessness|awkwardness|clumsiness +ungracious|2 +(adj)|ungracious |churlish|graceless|unpleasing|unrefined +(adj)|discourteous|impolite +ungraciously|1 +(adv)|ungracefully|gracelessly|woodenly|without graciousness +ungraciousness|1 +(noun)|discourtesy|rudeness +ungradable opposition|1 +(noun)|opposition|oppositeness +ungraded|2 +(adj)|dirt|unimproved +(adj)|unordered|unranked|nonhierarchical |nonhierarchic +ungrammatical|1 +(adj)|ungrammatical |ill-formed +ungrasped|1 +(adj)|ununderstood +ungrateful|2 +(adj)|ungrateful |thankless|unthankful|unappreciative +(adj)|unpleasant +ungrateful person|1 +(noun)|ingrate|thankless wretch|unwelcome person|persona non grata +ungratefully|1 +(adv)|unappreciatively +ungratefulness|1 +(noun)|ingratitude|feeling +ungratified|1 +(adj)|restless|unsatisfied|discontented |discontent +ungratifying|1 +(adj)|thankless|unappreciated|unrewarding +ungreased|1 +(adj)|unlubricated +ungregarious|2 +(adj)|ungregarious |nongregarious|nonsocial|solitary|unsocial +(adj)|unsociable +ungroomed|1 +(adj)|ungroomed |bushy|shaggy|unbrushed|unkempt|untidy +ungrudging|1 +(adj)|generous +ungual|1 +(adj)|horny structure|unguis|horny structure|unguis|animal foot|foot +unguaranteed|1 +(adj)|unsecured|insecure |unsafe +unguarded|2 +(adj)|unprotected|vulnerable +(adj)|incautious|unwary +unguent|1 +(noun)|ointment|unction|balm|salve|remedy|curative|cure +unguiculata|1 +(noun)|Unguiculata|placental|placental mammal|eutherian|eutherian mammal +unguiculate|2 +(adj)|unguiculate |unguiculated|clawed|clawlike +(noun)|unguiculate mammal|placental|placental mammal|eutherian|eutherian mammal +unguiculate mammal|1 +(noun)|unguiculate|placental|placental mammal|eutherian|eutherian mammal +unguiculated|1 +(adj)|unguiculate |clawed|clawlike +unguided|1 +(adj)|unguided +unguis|1 +(noun)|horny structure|structure|anatomical structure|complex body part|bodily structure|body structure +ungulata|1 +(noun)|Ungulata|placental|placental mammal|eutherian|eutherian mammal +ungulate|2 +(adj)|ungulate |ungulated|hoofed|hooved +(noun)|hoofed mammal|placental|placental mammal|eutherian|eutherian mammal +ungulated|1 +(adj)|ungulate |hoofed|hooved +ungummed|1 +(adj)|nonadhesive +ungusseted|1 +(adj)|ungusseted +unh|1 +(noun)|unnilhexium|Unh|element 106|atomic number 106|chemical element|element +unhallowed|1 +(adj)|unholy |profane|unconsecrated|unsanctified +unhampered|2 +(adj)|unhindered|unrestrained +(adj)|free of|free +unhand|1 +(verb)|let go of|let go|release|relinquish +unhappily|1 +(adv)|sadly +unhappiness|2 +(noun)|sadness|feeling +(noun)|emotional state|spirit +unhappy|4 +(adj)|unhappy |bad|sorry|homesick|nostalgic|lovesick|miserable|suffering|wretched|dejected|discontented|discontent|dysphoric|distressed|infelicitous|joyless|sad|sorrowful|cheerless|uncheerful +(adj)|dysphoric |distressed|dejected +(adj)|unpleasant +(adj)|infelicitous|unfortunate +unhardened|1 +(adj)|untempered |brittle|unannealed +unharmed|1 +(adj)|unhurt|unscathed|uninjured +unharmonious|1 +(adj)|inharmonious |discordant|disharmonious|dissonant|inharmonic|false|off-key|sour|unresolved|dissonant|incompatible +unharmoniously|1 +(adv)|discordantly +unharness|1 +(verb)|unhitch +unhatched|1 +(adj)|unborn +unhazardous|1 +(adj)|risk-free|riskless|safe +unheaded|1 +(adj)|unheaded +unhealed|1 +(adj)|ill |sick +unhealthful|3 +(adj)|unsanitary |insanitary|unhygienic +(adj)|unhealthful |crippling|disabling|incapacitating|cytopathogenic|infective|morbific|pathogenic|unhealthy|unmedicinal|unmedicative|unmedical|nonmedicinal|septic|toxic|unwholesome +(adj)|insalubrious|unhealthy|unwholesome +unhealthfulness|1 +(noun)|unwholesomeness|morbidness|morbidity +unhealthiness|1 +(noun)|ill health|health problem|pathological state +unhealthy|3 +(adj)|unhealthy |angry|arthritic|creaky|rheumatic|rheumatoid|rheumy|asthmatic|wheezing|wheezy|bad|unfit|unsound|blebby|blistery|bloated|distended|puffed|puffy|swollen|tumescent|tumid|turgid|bloodshot|cankerous|ulcerated|ulcerous|carbuncled|carbuncular|carious|caseous|chilblained|colicky|flatulent|gassy|cytomegalic|debilitated|enfeebled|infirm|seedy|dehydrated|diseased|morbid|pathologic|pathological|edematous|dropsical|enlarged|foaming|foamy|frothing|gangrenous|mortified|inflamed|inflammatory|ingrowing|ingrown|membranous|membrane-forming|proinflammatory|pro-inflammatory|raw|sore|sallow|sickly|sunburned|sunburnt|varicose|windburned|windburnt|jaundiced|icteric|yellow|mental|sore-eyed|frail|ill|sick|unfit|unwholesome +(adj)|insalubrious|unhealthful|unwholesome +(adj)|unhealthful +unhearable|1 +(adj)|inaudible |breathed|voiceless|infrasonic|silent|silent|unsounded|supersonic|ultrasonic|unheard|imperceptible|unperceivable|quiet +unheard|1 +(adj)|inaudible |unhearable +unheard-of|1 +(adj)|unknown +unhearing|1 +(adj)|profoundly deaf|stone-deaf|deaf as a post|deaf +unheated|1 +(adj)|unwarmed|cold +unheeded|1 +(adj)|ignored|neglected|unnoticed +unheeding|2 +(adj)|heedless |thoughtless|careless|thoughtless|regardless|deaf|indifferent +(adj)|inattentive|unlistening|deaf to|deaf +unhelpful|2 +(adj)|unhelpful |unaccommodating|unconstructive|useless|discouraging|uncooperative +(adj)|uncooperative +unhelpfulness|1 +(noun)|unkindness +unheralded|1 +(adj)|unannounced|unpredicted|unexpected +unhesitating|1 +(adj)|resolute|decisive +unhewn|1 +(adj)|unfinished +unhindered|1 +(adj)|unhampered|unrestrained +unhinge|2 +(verb)|perturb|disquiet|trouble|cark|distract|disorder|disturb|upset|trouble +(verb)|remove|take|take away|withdraw +unhinged|1 +(adj)|brainsick|crazy|demented|distracted|disturbed|mad|sick|unbalanced|insane +unhitch|1 +(verb)|undo +unholiness|1 +(noun)|quality +unhollowed|1 +(adj)|solid +unholy|3 +(adj)|unholy |unhallowed|profane|unconsecrated|unsanctified +(adj)|demonic|diabolic|diabolical|fiendish|hellish|infernal|satanic|evil |wicked +(adj)|sinful|wicked|unrighteous +unhomogenised|1 +(adj)|unhomogenized|unblended +unhomogenized|1 +(adj)|unhomogenised|unblended +unhook|1 +(verb)|detach +unhoped|1 +(adj)|unhoped-for|unthought|unthought-of|unexpected +unhoped-for|1 +(adj)|unhoped|unthought|unthought-of|unexpected +unhopeful|1 +(adj)|abject|resigned|hopeless +unhorse|1 +(verb)|dismount|light|get off|get down|descend|fall|go down|come down +unhostile|1 +(adj)|amicable +unhuman|1 +(adj)|dehumanized|dehumanised|nonhuman +unhumorous|1 +(adj)|humorless |humourless|sobersided|po-faced|unfunny +unhurried|2 +(adj)|unhurried |careful|deliberate|measured|easy|easygoing|leisurely +(adj)|patient +unhurriedness|1 +(noun)|slowness|deliberation|deliberateness|pace|rate +unhurt|2 +(adj)|unharmed|unscathed|uninjured +(adj)|safe and sound|safe +unhygienic|1 +(adj)|unsanitary |insanitary|unhealthful +uniat|1 +(noun)|Uniat|Uniate|Uniate Christian|Catholic +uniat church|1 +(noun)|Uniat Church|Uniate Church|Catholic Church +uniate|2 +(adj)|Uniate|Catholic Church +(noun)|Uniat|Uniate|Uniate Christian|Catholic +uniate christian|1 +(noun)|Uniat|Uniate|Uniate Christian|Catholic +uniate church|1 +(noun)|Uniat Church|Uniate Church|Catholic Church +unicameral|1 +(adj)|unicameral +unicef|1 +(noun)|United Nations Children's Fund|United Nations International Children's Emergency Fund|UNICEF|United Nations agency|UN agency +unicellular|1 +(adj)|living thing|animate thing +unicorn|1 +(noun)|imaginary being|imaginary creature +unicorn root|1 +(noun)|colicroot|colic root|crow corn|star grass|liliaceous plant +unicuspid|1 +(adj)|angular |angulate +unicycle|1 +(noun)|monocycle|wheeled vehicle +unicyclist|1 +(noun)|pedaler|pedaller +unidentifiable|1 +(adj)|unidentifiable |elusive|unclassifiable|undiagnosable|unrecognizable|unrecognisable|intangible +unidentified|2 +(adj)|unknown +(adj)|nameless|unknown|unnamed|anonymous |anon. +unidentified flying object|1 +(noun)|UFO|flying saucer|apparition|phantom|phantasm|phantasma|shadow +unidimensional|1 +(adj)|unidimensional |one-dimensional +unidirectional|1 +(adj)|unidirectional |one-way|simplex|unifacial +unifacial|1 +(adj)|unidirectional +unification|3 +(noun)|fusion|merger|union +(noun)|union|state +(noun)|union|uniting|conjugation|jointure|combination|combining|compounding +unification church|1 +(noun)|Unification Church|church|Christian church +unified|2 +(adj)|incorporate|incorporated|integrated|merged|united +(adj)|coordinated|interconnected|integrated +unifoliate|1 +(adj)|leafy +uniform|6 +(adj)|uniform |unvarying|single +(adj)|consistent|homogeneous |homogenous +(adj)|undifferentiated |dedifferentiated +(adj)|regular +(noun)|clothing|article of clothing|vesture|wear +(verb)|supply|provide|render|furnish +uniform resource locator|1 +(noun)|URL|universal resource locator|address|computer address +uniformed|1 +(adj)|clothed |clad +uniformise|1 +(verb)|uniformize|change|alter|modify +uniformity|2 +(noun)|regularity +(noun)|uniformness|similarity +uniformize|1 +(verb)|uniformise|change|alter|modify +uniformness|1 +(noun)|uniformity|similarity +unify|4 +(verb)|unite|merge|integrate +(verb)|mix|mingle|commix|amalgamate|change|alter|modify +(verb)|unite|join|fall in|get together +(verb)|unite|merge|change|alter|modify +unifying|2 +(adj)|consolidative|integrative +(adj)|centripetal|centralizing +unilateral|2 +(adj)|unilateral |one-sided|one-party +(adj)|unilateralist|lineal |direct +unilateral contract|1 +(noun)|agreement|understanding +unilateral descent|1 +(noun)|descent|line of descent|lineage|filiation +unilateral paralysis|1 +(noun)|hemiplegia|paralysis|palsy +unilateralism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +unilateralist|2 +(adj)|unilateral|lineal |direct +(noun)|advocate|advocator|proponent|exponent +unilluminated|1 +(adj)|lightless|unlighted|unlit|dark +unilluminating|1 +(adj)|unilluminating |unenlightening +unimaginable|1 +(adj)|impossible|inconceivable|out of the question|unthinkable +unimaginably|1 +(adv)|unthinkably +unimaginative|3 +(adj)|sterile|uninspired|uninventive|uncreative +(adj)|practical +(adj)|stereotyped|stereotypic|stereotypical|conventional +unimaginatively|1 +(adv)|prosaically +unimagined|1 +(adj)|undreamed|undreamed of|undreamt|undreamt of|incredible |unbelievable +unimodal|1 +(adj)|unimodal +unimpaired|1 +(adj)|unimpaired |intact|undamaged|uninjured +unimpassioned|1 +(adj)|passionless +unimpeachable|3 +(adj)|unquestionable +(adj)|blameless|inculpable|irreproachable|innocent |guiltless|clean-handed +(adj)|unexceptionable|acceptable +unimpeachably|1 +(adv)|unquestionably +unimpeded|1 +(adj)|unobstructed +unimportance|2 +(noun)|humbleness|obscureness|obscurity +(noun)|value +unimportant|2 +(adj)|unimportant |fiddling|footling|lilliputian|little|Mickey Mouse|niggling|piddling|piffling|petty|picayune|trivial|immaterial|indifferent|lightweight|nickel-and-dime|small-time|potty|inconsequent|inconsequential|meaningless|nonmeaningful|inessential|unessential|insignificant +(adj)|insignificant |hole-and-corner|hole-in-corner|inappreciable|light|superficial|trivial|meaningless|nonmeaningful +unimposing|1 +(adj)|unimpressive +unimpregnated|1 +(adj)|unfertilized|unfertilised|sterile |unfertile|infertile +unimpressed|1 +(adj)|unaffected +unimpressionable|1 +(adj)|unimpressionable +unimpressive|1 +(adj)|unimpressive |unimposing|humble +unimprisoned|1 +(adj)|unconfined|free +unimproved|2 +(adj)|unimproved |dirt|ungraded|scrub|undeveloped +(adj)|uncleared +unincorporated|1 +(adj)|unorganized |unorganised +unindebted|1 +(adj)|unobligated +unindustrialised|1 +(adj)|unindustrialized|nonindustrial +unindustrialized|1 +(adj)|unindustrialised|nonindustrial +uninebriated|1 +(adj)|unintoxicated|sober +uninfected|1 +(adj)|clean|antiseptic +uninflected|3 +(adj)|uninflected +(adj)|uninflected +(adj)|analytic |isolating +uninfluenced|1 +(adj)|unswayed|untouched|unaffected +uninfluential|1 +(adj)|uninfluential +uninformative|3 +(adj)|unenlightening |uninstructive +(adj)|uninstructive +(adj)|uninformative |uninstructive|newsless +uninformatively|1 +(adv)|uninstructively +uninformed|1 +(adj)|uninformed |clueless|ignorant|unknowledgeable|unknowing|unwitting|innocent of|unacquainted with|newsless|unadvised|uninstructed|unenlightened|unread|naive|naif|uneducated|unenlightened +uninhabitable|1 +(adj)|unlivable |unliveable +uninhabited|1 +(adj)|uninhabited |abandoned|depopulated|unoccupied|untenanted|unpeopled|unpopulated|unsettled +uninhibited|1 +(adj)|uninhibited |abandoned|earthy|unrepressed|unsuppressed|unreserved|unrestrained +uninitiate|2 +(adj)|uninitiated|inexperienced +(noun)|people +uninitiated|1 +(adj)|uninitiate|inexperienced +uninjectable|1 +(adj)|uninjectable +uninjured|1 +(adj)|uninjured |intact|inviolate|uncut|unharmed|unhurt|unscathed|unwounded|safe|sound|unbroken|undamaged|unimpaired +uninominal|1 +(adj)|one-member|single +uninominal system|1 +(noun)|uninominal voting system|single-member system|scrutin uninomial system|scrutin uninominal voting system|voting system|electoral system +uninominal voting system|1 +(noun)|uninominal system|single-member system|scrutin uninomial system|scrutin uninominal voting system|voting system|electoral system +uninquiring|2 +(adj)|uninquiring |uninquisitive +(adj)|uninquisitive|incurious +uninquisitive|2 +(adj)|uninquiring +(adj)|uninquiring|incurious +uninspired|2 +(adj)|unexciting +(adj)|sterile|unimaginative|uninventive|uncreative +uninspiring|1 +(adj)|uninspiring +uninstructed|1 +(adj)|unenlightened|uninformed +uninstructive|3 +(adj)|unenlightening |uninformative +(adj)|uninstructive |uninformative +(adj)|uninformative |newsless +uninstructively|1 +(adv)|uninformatively +uninsurability|1 +(noun)|ineligibility +uninsurable|1 +(adj)|uninsured +uninsured|1 +(adj)|uninsured |uninsurable +unintegrated|2 +(adj)|nonintegrated +(adj)|segregated |isolated|quarantined|white|lily-white|separate|sequestered|divided|separate +unintelligent|1 +(adj)|unintelligent |stupid|brainless|headless|feebleminded|half-witted|slow-witted|imbecile|imbecilic|idiotic|moronic|retarded|stupid +unintelligently|1 +(adv)|showing lack of intelligence +unintelligibility|2 +(noun)|incoherence|incoherency|nonsense|bunk|nonsensicality|meaninglessness|hokum +(noun)|incomprehensibility +unintelligible|2 +(adj)|unintelligible |slurred|thick|incomprehensible|uncomprehensible +(adj)|opaque|incomprehensible |uncomprehensible +unintelligibly|1 +(adv)|ununderstandably +unintended|1 +(adj)|unintended |accidental|inadvertent|causeless|fortuitous|uncaused|unintentional|unplanned|unwitting|unmotivated|unplanned +unintentional|3 +(adj)|undesigned +(adj)|unwilled|unwilling +(adj)|unplanned|unwitting|unintended +unintentionally|1 +(adv)|accidentally +uninterested|2 +(adj)|uninterested |apathetic|indifferent|blase|bored|dismissive|inattentive|dulled|benumbed +(adj)|incurious +uninteresting|2 +(adj)|uninteresting |boring|deadening|dull|ho-hum|irksome|slow|tedious|tiresome|wearisome|insipid|jejune|narcotic|soporiferous|soporific|pedestrian|prosaic|prosy|earthbound|ponderous|putdownable|unexciting|unstimulating|unexciting +(adj)|institutional +uninterestingness|1 +(noun)|powerlessness|impotence|impotency +uninterrupted|2 +(adj)|unbroken +(adj)|continuous |around-the-clock|day-and-night|nonstop|round-the-clock|ceaseless|constant|incessant|never-ending|perpetual|unceasing|unremitting|continual|endless|free burning|sustained|straight|consecutive|dogging|persisting|sustained|unbroken +unintimidated|1 +(adj)|unblinking|unflinching|unshrinking|unafraid |fearless +unintoxicated|1 +(adj)|uninebriated|sober +unintrusive|1 +(adj)|unintrusive |not intrusive +uninucleate|1 +(adj)|uninucleate |organelle|cell organ +uninventive|1 +(adj)|sterile|unimaginative|uninspired|uncreative +uninvited|2 +(adj)|unasked|unwanted|unwelcome +(adj)|uninvited |gate-crashing|unasked|unbid|unbidden|unsolicited|unsought|intrusive|unwelcome +uninvitedly|1 +(adv)|unwantedly +uninviting|2 +(adj)|uninviting |unattractive|untempting|unattractive +(adj)|untempting|unseductive +uninvolved|2 +(adj)|uninvolved |unconcerned +(adj)|degage|detached|unconcerned +unio|1 +(noun)|Unio|genus Unio|mollusk genus +uniocular dichromat|1 +(noun)|dichromat +union|13 +(adj)|Union|Federal|northern +(adj)|union |closed|organized|organised|unionized|unionised +(noun)|labor union|trade union|trades union|brotherhood|organization|organisation +(noun)|Union|North|United States|United States of America|America|US|U.S.|USA|U.S.A. +(noun)|coupling|mating|pairing|conjugation|sexual union|sexual activity|sexual practice|sex|sex activity +(noun)|unification|state +(noun)|marriage|matrimony|spousal relationship|wedlock|marital status +(noun)|conglutination|healing +(noun)|political unit +(noun)|sum|join|set +(noun)|happening|occurrence|natural event +(noun)|device +(noun)|unification|uniting|conjugation|jointure|combination|combining|compounding +union army|1 +(noun)|Union Army|army|regular army|ground forces|blue +union card|1 +(noun)|membership card +union flag|1 +(noun)|Union Jack|Union flag|flag +union jack|1 +(noun)|Union Jack|Union flag|flag +union member|1 +(noun)|trade unionist|unionist|worker +union of burma|1 +(noun)|Myanmar|Union of Burma|Burma|Asian country|Asian nation +union of soviet socialist republics|1 +(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country|state|land +union representative|1 +(noun)|representative +union shop|1 +(noun)|company +union soldier|1 +(noun)|Federal|Federal soldier|Union soldier|Yankee|Yank|Northerner +union suit|1 +(noun)|long underwear|undergarment +unionidae|1 +(noun)|Unionidae|family Unionidae|mollusk family +unionisation|1 +(noun)|unionization|constitution|establishment|formation|organization|organisation +unionise|2 +(verb)|unionize|enroll|inscribe|enter|enrol|recruit +(verb)|unionize|organize|organise|join|fall in|get together +unionised|2 +(adj)|nonionized |nonionised|unionized|nonionic +(adj)|organized|organised|unionized|union +unionism|1 +(noun)|trade unionism|labor movement|trade union movement|labor +unionist|1 +(noun)|trade unionist|union member|worker +unionization|1 +(noun)|unionisation|constitution|establishment|formation|organization|organisation +unionize|2 +(verb)|unionise|enroll|inscribe|enter|enrol|recruit +(verb)|unionise|organize|organise|join|fall in|get together +unionized|2 +(adj)|nonionized |nonionised|unionised|nonionic +(adj)|organized|organised|unionised|union +uniovular|1 +(adj)|uniovulate|reproductive structure +uniovulate|1 +(adj)|uniovular|reproductive structure +uniparous|1 +(adj)|uniparous +unipolar|1 +(adj)|unipolar +unipolar depression|1 +(noun)|major depressive episode +unique|4 +(adj)|alone|unequaled|unequalled|unparalleled|incomparable |uncomparable +(adj)|specific +(adj)|singular|single +(adj)|unusual +uniquely|1 +(adv)|unambiguously +uniqueness|1 +(noun)|singularity|individuality|individualism|individuation +unironed|1 +(adj)|unironed |wrinkled|drip-dry|permanent-press|roughdried|unpressed|rough|unsmooth +unisex|1 +(adj)|androgynous +unisexual|1 +(adj)|sexual +unison|3 +(noun)|agreement|accord +(noun)|concurrence|coincidence|conjunction|co-occurrence +(noun)|sound +unit|6 +(noun)|unit of measurement|definite quantity +(noun)|part|portion|component part|component +(noun)|social unit|organization|organisation +(noun)|whole +(noun)|building block|thing +(noun)|whole|whole thing|object|physical object +unit cell|1 +(noun)|unit|building block +unit character|1 +(noun)|trait +unit cost|1 +(noun)|cost +unit investment trust|1 +(noun)|unit trust|investment company|investment trust|investment firm|fund +unit matrix|1 +(noun)|identity matrix|scalar matrix +unit of ammunition|1 +(noun)|round|one shot|ammunition|ammo +unit of measurement|1 +(noun)|unit|definite quantity +unit of time|1 +(noun)|time unit|measure|quantity|amount +unit of viscosity|1 +(noun)|unit of measurement|unit +unit trust|1 +(noun)|unit investment trust|investment company|investment trust|investment firm|fund +unitard|1 +(noun)|leotard|body suit|cat suit|garment +unitarian|2 +(adj)|Unitarian|Protestantism +(noun)|Unitarian|disciple|adherent +unitarian church|1 +(noun)|Unitarian Church|Protestant denomination +unitarianism|1 +(noun)|Unitarianism|Protestantism +unitary|4 +(adj)|state +(adj)|thing +(adj)|unitary +(adj)|one|united +unite|5 +(verb)|unify|join|fall in|get together +(verb)|unify|merge|integrate +(verb)|combine|have|feature +(verb)|connect|link|link up|join +(verb)|unify|merge|change|alter|modify +united|3 +(adj)|united |agreed|in agreement|allied|confederate|confederative|amalgamate|amalgamated|coalesced|consolidated|fused|cohesive|conjugate|conjugated|coupled|conjunct|federate|federated|incorporate|incorporated|integrated|merged|unified|in league|one|unitary|tied|undivided|suprasegmental|unpartitioned|unsegmented|nonsegmental|collective|integrated|joint +(adj)|combined|concerted|conjunct|conjunctive|cooperative|joint +(adj)|joined|married +united arab emirate dirham|1 +(noun)|United Arab Emirate dirham|dirham|United Arab Emirate monetary unit +united arab emirate monetary unit|1 +(noun)|United Arab Emirate monetary unit|monetary unit +united arab emirates|1 +(noun)|United Arab Emirates|Asian country|Asian nation +united arab emirates's capital|1 +(noun)|Abu Dhabi|United Arab Emirates's capital|national capital +united arab republic|1 +(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country|African nation +united church of christ|1 +(noun)|United Church of Christ|Protestant denomination +united front|1 +(noun)|Northern Alliance|United Front|alliance|coalition|alignment|alinement +united kingdom|1 +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +united kingdom of great britain and northern ireland|1 +(noun)|United Kingdom|UK|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom +united methodist church|1 +(noun)|United Methodist Church|Methodist denomination +united mexican states|1 +(noun)|Mexico|United Mexican States|North American country|North American nation +united mine workers|1 +(noun)|United Mine Workers of America|United Mine Workers|industrial union|vertical union +united mine workers of america|1 +(noun)|United Mine Workers of America|United Mine Workers|industrial union|vertical union +united nations|1 +(noun)|United Nations|UN|world organization|world organisation|international organization|international organisation|global organization +united nations agency|1 +(noun)|United Nations agency|UN agency|administrative unit|administrative body +united nations children's fund|1 +(noun)|United Nations Children's Fund|United Nations International Children's Emergency Fund|UNICEF|United Nations agency|UN agency +united nations crime prevention and criminal justice|1 +(noun)|United Nations Crime Prevention and Criminal Justice|Centre for International Crime Prevention|United Nations agency|UN agency +united nations day|1 +(noun)|United Nations Day|October 24|day +united nations educational scientific and cultural organization|1 +(noun)|United Nations Educational Scientific and Cultural Organization|UNESCO|United Nations agency|UN agency +united nations international children's emergency fund|1 +(noun)|United Nations Children's Fund|United Nations International Children's Emergency Fund|UNICEF|United Nations agency|UN agency +united nations office for drug control and crime prevention|1 +(noun)|United Nations Office for Drug Control and Crime Prevention|DCCP|United Nations agency|UN agency +united nations secretariat|1 +(noun)|United Nations Secretariat|secretariat|secretariate +united republic of tanzania|1 +(noun)|Tanzania|United Republic of Tanzania|African country|African nation +united self-defense force of colombia|1 +(noun)|United Self-Defense Force of Colombia|United Self-Defense Group of Colombia|Autodefensas Unidas de Colombia|AUC|terrorist organization|terrorist group|foreign terrorist organization|FTO +united self-defense group of colombia|1 +(noun)|United Self-Defense Force of Colombia|United Self-Defense Group of Colombia|Autodefensas Unidas de Colombia|AUC|terrorist organization|terrorist group|foreign terrorist organization|FTO +united society of believers in christ's second appearing|1 +(noun)|Shakers|United Society of Believers in Christ's Second Appearing|sect|religious sect|religious order +united states|2 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government +united states air force|1 +(noun)|United States Air Force|U. S. Air Force|US Air Force|USAF|air force|airforce +united states air force academy|1 +(noun)|United States Air Force Academy|US Air Force Academy|air force academy +united states army|1 +(noun)|United States Army|US Army|U. S. Army|USA|army|regular army|ground forces +united states army criminal investigation laboratory|1 +(noun)|United States Army Criminal Investigation Laboratory|U.S. Army Criminal Investigation Laboratory|US Army Criminal Investigation Laboratory|USACIL|agency|federal agency|government agency|bureau|office|authority +united states army rangers|1 +(noun)|United States Army Rangers|battalion +united states army special forces|1 +(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division +united states attorney general|1 +(noun)|Attorney General|United States Attorney General|US Attorney General|secretary +united states border patrol|1 +(noun)|United States Border Patrol|US Border Patrol|agency|federal agency|government agency|bureau|office|authority +united states cabinet|1 +(noun)|United States Cabinet|US Cabinet|cabinet +united states civil war|1 +(noun)|American Civil War|United States Civil War|War between the States|civil war +united states coast guard|1 +(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard|agency|federal agency|government agency|bureau|office|authority +united states code|1 +(noun)|United States Code|U. S. Code|legal code +united states congress|1 +(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature|legislative assembly|general assembly|law-makers +united states constitution|1 +(noun)|United States Constitution|Constitution of the United States|fundamental law|organic law|constitution +united states customary system|1 +(noun)|United States Customary System|system of weights and measures +united states department of defense|1 +(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department +united states dollar|1 +(noun)|United States dollar|dollar +united states dry unit|1 +(noun)|United States dry unit|dry unit|dry measure +united states fish and wildlife service|1 +(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency|federal agency|government agency|bureau|office|authority +united states government|1 +(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government +united states government accounting office|1 +(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency|federal agency|government agency|bureau|office|authority +united states government printing office|1 +(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency|federal agency|government agency|bureau|office|authority +united states house of representatives|1 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +united states intelligence agency|1 +(noun)|United States intelligence agency|intelligence|intelligence service|intelligence agency +united states intelligence community|1 +(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence|intelligence service|intelligence agency +united states liquid unit|1 +(noun)|United States liquid unit|liquid unit|liquid measure +united states marine corps|1 +(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|naval unit +united states marines|1 +(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|naval unit +united states marshals service|1 +(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency +united states military academy|1 +(noun)|United States Military Academy|US Military Academy|military academy +united states mint|1 +(noun)|United States Mint|U.S. Mint|US Mint|mint +united states national library of medicine|1 +(noun)|National Library of Medicine|United States National Library of Medicine|U.S. National Library of Medicine|library +united states naval academy|1 +(noun)|United States Naval Academy|US Naval Academy|naval academy +united states navy|1 +(noun)|United States Navy|US Navy|USN|navy|naval forces +united states of america|1 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +united states post office|1 +(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency +united states postal inspection service|1 +(noun)|United States Postal Inspection Service|US Postal Inspection Service|independent agency +united states postal service|1 +(noun)|United States Postal Service|US Postal Service|USPS|independent agency +united states president|1 +(noun)|President of the United States|United States President|President|Chief Executive|head of state|chief of state +united states public health service|1 +(noun)|United States Public Health Service|PHS|agency|federal agency|government agency|bureau|office|authority +united states secret service|1 +(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency +united states senate|1 +(noun)|United States Senate|US Senate|Senate|senate +united states supreme court|1 +(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court +united states trade representative|1 +(noun)|United States Trade Representative|US Trade Representative|executive agency +united states treasury|1 +(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department +united states virgin islands|1 +(noun)|United States Virgin Islands|American Virgin Islands|VI|possession +united states waters|1 +(noun)|United States waters|U.S. waters|territorial waters +unitedly|1 +(adv)|together|in collaboration +uniting|2 +(noun)|amalgamation|merger|consolidation|integration +(noun)|union|unification|conjugation|jointure|combination|combining|compounding +unitisation|4 +(noun)|unitization|chunking|configuration|constellation +(noun)|unitization|packaging +(noun)|unitization|conversion +(noun)|unitization|exploitation|development +unitise|3 +(verb)|unitize|divide|split|split up|separate|dissever|carve up +(verb)|unitize|aggregate|combine +(verb)|unitize|classify|class|sort|assort|sort out|separate +unitization|4 +(noun)|unitisation|chunking|configuration|constellation +(noun)|unitisation|packaging +(noun)|unitisation|conversion +(noun)|unitisation|exploitation|development +unitize|3 +(verb)|unitise|divide|split|split up|separate|dissever|carve up +(verb)|unitise|aggregate|combine +(verb)|unitise|classify|class|sort|assort|sort out|separate +unity|3 +(noun)|integrity|wholeness|state +(noun)|one|1|I|ace|single|digit|figure +(noun)|oneness|identity|identicalness|indistinguishability +univalent|2 +(adj)|univalent +(adj)|monovalent +univalve|2 +(adj)|univalve |single-shelled +(noun)|gastropod|mollusk|mollusc|shellfish +universal|2 +(adj)|cosmopolitan|ecumenical|oecumenical|general|worldwide|comprehensive +(noun)|universal joint|coupling|coupler +universal agent|1 +(noun)|general agent|agent +universal donor|1 +(noun)|blood donor +universal gas constant|1 +(noun)|gas constant|R|constant +universal gravitational constant|1 +(noun)|gravitational constant|constant of gravitation|G|constant +universal joint|1 +(noun)|universal|coupling|coupler +universal product code|1 +(noun)|bar code|Universal Product Code|code +universal quantifier|1 +(noun)|quantifier +universal resource locator|1 +(noun)|URL|uniform resource locator|address|computer address +universal solvent|1 +(noun)|alkahest|alcahest|solvent|dissolvent|dissolver|dissolving agent|resolvent +universal time|1 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|UT|UT1|time +universal veil|1 +(noun)|velum|plant part|plant structure +universalise|1 +(verb)|universalize|generalize|generalise|extrapolate|infer +universalism|1 +(noun)|theological doctrine|religious doctrine +universalist|1 +(adj)|universalistic|theological doctrine|religious doctrine +universalistic|2 +(adj)|universalist|theological doctrine|religious doctrine +(adj)|concept|conception|construct +universality|1 +(noun)|catholicity|generality +universalize|1 +(verb)|universalise|generalize|generalise|extrapolate|infer +universe|3 +(noun)|existence|creation|world|cosmos|macrocosm|natural object +(noun)|population|collection|aggregation|accumulation|assemblage +(noun)|universe of discourse|content|cognitive content|mental object +universe of discourse|1 +(noun)|universe|content|cognitive content|mental object +university|3 +(noun)|body +(noun)|establishment +(noun)|educational institution +university extension|1 +(noun)|extension|extension service|education|instruction|teaching|pedagogy|educational activity +university of california at berkeley|1 +(noun)|University of California at Berkeley|university +university of chicago|1 +(noun)|University of Chicago|university +university of michigan|1 +(noun)|University of Michigan|university|Ann Arbor +university of nebraska|1 +(noun)|University of Nebraska|university|Lincoln|capital of Nebraska +university of north carolina|1 +(noun)|University of North Carolina|university +university of paris|1 +(noun)|Paris University|University of Paris|Sorbonne|university +university of pennsylvania|1 +(noun)|University of Pennsylvania|Pennsylvania|Penn|university +university of pittsburgh|1 +(noun)|University of Pittsburgh|university +university of sussex|1 +(noun)|University of Sussex|Sussex University|university +university of texas|1 +(noun)|University of Texas|university +university of vermont|1 +(noun)|University of Vermont|university +university of washington|1 +(noun)|University of Washington|university +university of west virginia|1 +(noun)|University of West Virginia|university +university of wisconsin|1 +(noun)|University of Wisconsin|university +university student|1 +(noun)|college student|collegian|college man|college boy +univocal|1 +(adj)|unequivocal |unambiguous|absolute|conclusive|straightforward|unquestionable|unambiguous +unix|1 +(noun)|UNIX|UNIX system|UNIX operating system|operating system|OS +unix guru|1 +(noun)|UNIX guru|computer expert|computer guru +unix operating system|1 +(noun)|UNIX|UNIX system|UNIX operating system|operating system|OS +unix system|1 +(noun)|UNIX|UNIX system|UNIX operating system|operating system|OS +unjointed|1 +(adj)|unarticulated +unjust|4 +(adj)|unfair |below the belt|cheating|dirty|foul|unsporting|unsportsmanlike|raw|partial|unfair +(adj)|unjust |actionable|wrongful|dishonorable|dishonourable|unfair|unrighteous|wrong +(adj)|inequitable +(adj)|unrighteous +unjustifiable|1 +(adj)|indefensible|insupportable|unwarrantable|unwarranted|inexcusable +unjustifiably|1 +(adv)|inexcusably +unjustified|1 +(adj)|undue|unwarranted|unreasonable +unjustness|1 +(noun)|injustice|unrighteousness +unkempt|3 +(adj)|uncombed +(adj)|ungroomed +(adj)|untidy +unkemptness|1 +(noun)|sloppiness|slovenliness|untidiness +unkept|1 +(adj)|broken +unkeyed|1 +(adj)|atonal +unkind|4 +(adj)|unkind |cutting|edged|stinging|harsh|hurtful|unkindly|unsympathetic|malign|merciless|unmerciful +(adj)|pitiless|inhumane +(adj)|cruel|heartless +(adj)|brutal|cruel|harsh|rigorous|hard +unkind person|1 +(noun)|meanie|meany|oppressor +unkindled|1 +(adj)|unlighted |unlit +unkindly|1 +(adj)|unsympathetic|unkind +unkindness|1 +(noun)|insensitivity|insensitiveness +unknot|1 +(verb)|unravel|unscramble|untangle|unpick|undo +unknowable|2 +(adj)|unknowable +(adj)|transcendent|unknown +unknowing|2 +(adj)|ignorant|unknowledgeable|unwitting|uninformed +(noun)|ignorantness|nescience|unknowingness|ignorance +unknowingly|1 +(adv)|unwittingly|inadvertently +unknowingness|2 +(noun)|ignorantness|nescience|unknowing|ignorance +(noun)|unawareness|unconsciousness +unknowledgeable|1 +(adj)|ignorant|unknowing|unwitting|uninformed +unknown|8 +(adj)|unknown |chartless|uncharted|unmapped|unbeknown|unbeknownst|undiagnosed|undiscovered|unexplored|unheard-of|unidentified|transcendent|unknowable|inglorious|dishonorable|unacknowledged|unfamiliar +(adj)|nameless|unidentified|unnamed|anonymous |anon. +(adj)|unsuspected +(adj)|obscure|unsung|inglorious |dishonorable +(adj)|strange|unfamiliar +(noun)|unknown region|terra incognita|region +(noun)|stranger|alien|intruder|interloper|trespasser +(noun)|unknown quantity|variable +unknown quantity|2 +(noun)|factor +(noun)|unknown|variable +unknown region|1 +(noun)|unknown|terra incognita|region +unknown soldier|1 +(noun)|Unknown Soldier|soldier +unlabeled|1 +(adj)|unlabeled |unlabelled|untagged +unlabelled|1 +(adj)|unlabeled |untagged +unlace|1 +(verb)|untie|unbrace|undo +unlaced|2 +(adj)|unlaced |untied +(adj)|unbuttoned|unrestrained +unladylike|1 +(adj)|unrefined +unlamented|1 +(adj)|unlamented |unmourned +unlash|1 +(verb)|untie|unbrace|unlace +unlatched|1 +(adj)|unbarred|unbolted|unlocked|unsecured|unfastened +unlaureled|1 +(adj)|unlaureled |unlaurelled +unlaurelled|1 +(adj)|unlaureled +unlawful|5 +(adj)|improper|unconventional|irregular +(adj)|unlawful |lawless|outlaw|open|wide-open|lawless|wrongful|crooked|corrupt|illegal +(adj)|illicit +(adj)|wrongful|illegitimate +(adj)|illegitimate|illicit|outlaw|outlawed|illegal +unlawful carnal knowledge|1 +(noun)|criminal congress|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge +unlawfulness|1 +(noun)|quality +unlax|1 +(verb)|relax|unstrain|loosen up|unwind|make relaxed|affect +unleaded|2 +(adj)|unleaded |leadless|lead-free|nonleaded +(adj)|unspaced +unleaded gasoline|1 +(noun)|gasoline|gasolene|gas|petrol +unlearn|2 +(verb)|forget|bury +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +unlearned|3 +(adj)|unconditioned |innate +(adj)|unscholarly +(adj)|ignorant|nescient|unenlightened|unlettered|uneducated +unleash|3 +(verb)|let go of|let go|release|relinquish +(verb)|let go of|let go|release|relinquish +(verb)|let loose|loose|let go of|let go|release|relinquish +unleavened|1 +(adj)|unleavened |flat|unraised +unleavened bread|1 +(noun)|matzo|matzoh|matzah|bread|breadstuff|staff of life +unlettered|2 +(adj)|analphabetic|illiterate +(adj)|ignorant|nescient|unenlightened|unlearned|uneducated +unlicenced|1 +(adj)|unaccredited|unlicensed|unauthorized |unauthorised +unlicensed|1 +(adj)|unaccredited|unlicenced|unauthorized |unauthorised +unlicensed gambling|1 +(noun)|gambling|gaming|play|vice crime +unlifelike|1 +(adj)|cardboard|artificial |unreal +unlighted|2 +(adj)|unlighted |unlit|unkindled +(adj)|lightless|unilluminated|unlit|dark +unlikable|2 +(adj)|unsympathetic |unappealing|unlikeable +(adj)|unlikeable|disliked +unlike|2 +(adj)|unlike |dissimilar|different|different +(adj)|unlike |unequal +unlikeable|2 +(adj)|unsympathetic |unappealing|unlikable +(adj)|unlikable|disliked +unlikelihood|1 +(noun)|unlikeliness|improbability|improbableness +unlikeliness|1 +(noun)|unlikelihood|improbability|improbableness +unlikely|3 +(adj)|improbable |supposed +(adj)|unlikely |farfetched|implausible|last|outside|remote +(adj)|improbable|unbelievable|unconvincing|implausible +unlikeness|1 +(noun)|dissimilitude|dissimilarity|unsimilarity +unlimited|3 +(adj)|unlimited |limitless|bottomless|oceanic|untrammeled|untrammelled +(adj)|outright|straight-out|unqualified +(adj)|inexhaustible|infinite +unlined|2 +(adj)|unlined +(adj)|seamless|unseamed|smooth +unlipped|1 +(adj)|lipless +unlisted|2 +(adj)|unlisted |ex-directory|not listed|not traded|over-the-counter|otc +(adj)|unregistered +unlisted security|1 +(noun)|over the counter security|OTC security|security|certificate +unlisted stock|1 +(noun)|over the counter stock|OTC stock|unlisted security|over the counter security|OTC security +unlistening|1 +(adj)|inattentive|unheeding|deaf to|deaf +unlit|2 +(adj)|unlighted |unkindled +(adj)|lightless|unilluminated|unlighted|dark +unliterary|1 +(adj)|nonliterary|informal +unlittered|1 +(adj)|uncluttered|tidy +unlivable|1 +(adj)|unlivable |unliveable|uninhabitable +unlive|1 +(verb)|live down|live +unliveable|1 +(adj)|unlivable |uninhabitable +unliveried|1 +(adj)|unliveried +unload|2 +(verb)|drop|set down|put down|discharge|deliver +(verb)|offload|empty +unloaded|1 +(adj)|unloaded |blank|dud +unloading|2 +(adj)|unloading +(noun)|handling +unlobed|1 +(adj)|simple |unsubdivided +unlocated|1 +(adj)|unsettled +unlock|3 +(verb)|open|open up +(verb)|disengage|withdraw +(verb)|disengage +unlocked|1 +(adj)|unbarred|unbolted|unlatched|unsecured|unfastened +unlogical|1 +(adj)|illogical |absurd|unreasonable|inconsequential|intuitive|nonrational|visceral|incoherent|irrational|unreasonable +unlooked-for|1 +(adj)|unanticipated|unforeseen|out of the blue|unexpected +unloose|2 +(verb)|free|liberate|release|unloosen|loose +(verb)|unloosen|untie|unbrace|unlace +unloosen|2 +(verb)|free|liberate|release|unloose|loose +(verb)|unloose|untie|unbrace|unlace +unlovable|1 +(adj)|hateful +unloved|1 +(adj)|unloved |alienated|estranged|bereft|lovelorn|unbeloved|despised|detested|hated|scorned|disinherited|jilted|rejected|spurned|loveless|unwanted +unlovely|2 +(adj)|unpicturesque|ugly +(adj)|unpleasant +unloving|1 +(adj)|unloving |cold|frigid|loveless|unaffectionate|uncaring|unromantic|coldhearted +unlubricated|1 +(adj)|unlubricated |ungreased +unluckily|1 +(adv)|unfortunately|regrettably|alas +unlucky|2 +(adj)|unlucky |luckless|hexed|jinxed|unfortunate +(adj)|doomed|ill-fated|ill-omened|ill-starred|unfortunate +unmade|1 +(adj)|unmade +unmake|1 +(verb)|undo +unmalicious|1 +(adj)|unmalicious +unmaligned|1 +(adj)|unreviled|unabused +unmalleability|1 +(noun)|physical property +unmalleable|1 +(adj)|intractable +unman|1 +(verb)|faze|unnerve|enervate|unsettle +unmanageable|4 +(adj)|unwieldy |awkward|bunglesome|clumsy|ungainly|cumbersome|cumbrous +(adj)|unmanageable |indocile|uncontrollable|ungovernable|unruly|uncheckable|defiant|noncompliant|disobedient|intractable +(adj)|uncontrollable|intractable +(adj)|uncontrollable|uncorrectable|incorrigible +unmanageableness|1 +(noun)|refractoriness|recalcitrance|recalcitrancy|intractability|intractableness +unmanful|1 +(adj)|unmanly |unmanlike|effeminate|emasculate|epicene|cissy|sissified|sissyish|sissy|womanish|timid +unmanfully|1 +(adv)|unmanly +unmanlike|1 +(adj)|unmanly |unmanful|effeminate|emasculate|epicene|cissy|sissified|sissyish|sissy|womanish|timid +unmanliness|1 +(noun)|effeminacy|effeminateness|sissiness|womanishness|femininity|muliebrity +unmanly|3 +(adj)|unmanly |unmanful|unmanlike|effeminate|emasculate|epicene|cissy|sissified|sissyish|sissy|womanish|timid +(adj)|pusillanimous|poor-spirited|cowardly |fearful +(adv)|unmanfully +unmanned|1 +(adj)|unmanned |remote-controlled|pilotless +unmannered|2 +(adj)|ill-mannered|rude|unmannerly|impolite +(adj)|unaffected +unmannerly|1 +(adj)|ill-mannered|rude|unmannered|impolite +unmapped|1 +(adj)|chartless|uncharted|unknown +unmarked|2 +(adj)|unmarked |unasterisked|unstarred +(adj)|overlooked|unnoted|unnoticed +unmarketable|2 +(adj)|unmerchantable|unvendible|unsalable |unsaleable +(adj)|unsalable |unsaleable +unmarred|1 +(adj)|unmutilated|undamaged +unmarried|1 +(adj)|unmarried |single|divorced|mateless|unwed|unwedded|widowed|unmated +unmarried man|1 +(noun)|bachelor|man|adult male +unmarried woman|1 +(noun)|woman|adult female +unmask|2 +(verb)|uncloak|debunk|expose +(verb)|uncover|expose +unmasking|1 +(noun)|expose|exposure +unmatchable|1 +(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unrivaled|unrivalled|incomparable |uncomparable +unmatched|2 +(adj)|odd|unmated|unpaired|mismatched +(adj)|matchless|nonpareil|one|one and only|peerless|unmatchable|unrivaled|unrivalled|incomparable |uncomparable +unmated|2 +(adj)|unmated |mateless|unmarried|single +(adj)|odd|unmatched|unpaired|mismatched +unmeaning|1 +(adj)|insignificant|meaningless |nonmeaningful +unmeasurable|1 +(adj)|immeasurable |immensurable|illimitable|limitless|measureless|unmeasured|abysmal +unmeasured|2 +(adj)|unmeasured +(adj)|illimitable|limitless|measureless|immeasurable |unmeasurable|immensurable +unmechanical|1 +(adj)|nonmechanical|maladroit +unmechanised|1 +(adj)|unmechanized|nonmechanical +unmechanized|1 +(adj)|unmechanised|nonmechanical +unmediated|1 +(adj)|immediate +unmedical|1 +(adj)|unmedicinal|unmedicative|nonmedicinal|unhealthful +unmedicative|1 +(adj)|unmedicinal|unmedical|nonmedicinal|unhealthful +unmedicinal|1 +(adj)|unmedicative|unmedical|nonmedicinal|unhealthful +unmelodic|1 +(adj)|unmelodious |unmusical|monotone|monotonic|monotonous +unmelodious|2 +(adj)|tuneless |untuneful +(adj)|unmelodious |unmelodic|unmusical|monotone|monotonic|monotonous +unmelted|1 +(adj)|unmelted |frozen|undissolved|frozen +unmemorable|1 +(adj)|forgettable +unmentionable|1 +(adj)|impermissible +unmercenary|1 +(adj)|unworldly +unmerchantable|1 +(adj)|unmarketable|unvendible|unsalable |unsaleable +unmerciful|1 +(adj)|merciless |cutthroat|fierce|bowelless|mortal|pitiless|remorseless|ruthless|unpitying|tigerish|bloody|hard|inclement|implacable|uncompassionate|unkind +unmercifully|1 +(adv)|mercilessly|pitilessly|remorselessly +unmercifulness|1 +(noun)|mercilessness|inhumaneness|inhumanity +unmerited|2 +(adj)|unmerited |gratuitous|undeserved +(adj)|unworthy +unmeritorious|1 +(adj)|unworthy +unmethodical|1 +(adj)|disorganized |disorganised +unmilitary|1 +(adj)|unmilitary |nonmilitary|unsoldierly +unmindful|2 +(adj)|unmindful |forgetful|mindless|amnesic|amnesiac +(adj)|oblivious|unaware +unmindfulness|1 +(noun)|heedlessness|inadvertence|inadvertency|attentiveness +unmined|1 +(adj)|unmined +unmingled|1 +(adj)|plain|sheer|unmixed|pure +unmistakable|1 +(adj)|clear +unmistakably|1 +(adv)|signally|remarkably +unmitigable|1 +(adj)|implacable +unmitigated|1 +(adj)|unmitigated |arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|bally|blinking|bloody|blooming|crashing|flaming|fucking|bodacious|undiminished|unrelieved +unmixable|1 +(adj)|immiscible |incompatible +unmixed|3 +(adj)|pure|undiluted|absolute +(adj)|plain|sheer|unmingled|pure +(adj)|uncompounded|uncombined +unmoderated|1 +(adj)|untempered +unmodernised|1 +(adj)|unmodernized|regressive +unmodernized|1 +(adj)|unmodernised|regressive +unmodifiable|1 +(adj)|unmodifiable +unmodified|1 +(adj)|unmodified |unadapted|unrestricted|unqualified +unmodulated|1 +(adj)|unmodulated +unmolested|1 +(adj)|undisturbed|untroubled +unmoral|1 +(adj)|amoral |neutral|nonmoral +unmortgaged|1 +(adj)|clear|unencumbered +unmotivated|1 +(adj)|unmotivated |causeless|reasonless|motiveless|unprovoked|wanton|unintended +unmotorised|1 +(adj)|unmotorized |motorless +unmotorized|1 +(adj)|unmotorized |unmotorised|motorless +unmourned|1 +(adj)|unlamented +unmovable|1 +(adj)|immovable|immoveable|stabile|immobile +unmoved|2 +(adj)|unmoved |unaffected|untouched|unaffected|unemotional +(adj)|in-situ|unaltered |unchanged +unmoving|2 +(adj)|nonmoving |becalmed|frozen|rooted|stock-still|inert|sitting|stationary|inactive|motionless|static|still|fixed|set|rigid|immobile +(adj)|unmoving |unaffecting|unemotional|unstimulating|unexciting +unmown|1 +(adj)|unmown |uncut +unmurmuring|1 +(adj)|unprotesting|uncomplaining +unmusical|3 +(adj)|unmusical |nonmusical +(adj)|unmusical |nonmusical|dissonant +(adj)|unmelodious |unmelodic|monotone|monotonic|monotonous +unmutilated|1 +(adj)|unmarred|undamaged +unmyelinated|1 +(adj)|unmyelinated |fat +unnameable|1 +(adj)|ineffable|unspeakable|unutterable|sacred +unnamed|1 +(adj)|nameless|unidentified|unknown|anonymous |anon. +unnatural|3 +(adj)|unnatural |eerie|eery|spooky|uncanny|unco|violent|affected|paranormal|supernatural +(adj)|affected |agonistic|strained|artificial|contrived|hokey|stilted|constrained|forced|strained|elocutionary|mannered|plummy|studied|deliberate +(adj)|grotesque|monstrous|ugly +unnaturalised|1 +(adj)|unnaturalized|foreign +unnaturalized|1 +(adj)|unnaturalised|foreign +unnaturally|1 +(adv)|artificially|by artificial means +unnaturalness|1 +(noun)|quality +unnavigable|1 +(adj)|impassable |unpassable +unnecessary|1 +(adj)|unnecessary |unneeded|excess|extra|redundant|spare|supererogatory|superfluous|supernumerary|surplus|gratuitous|needless|uncalled-for|inessential|reserve|spare|inessential|unessential +unneeded|1 +(adj)|unnecessary |excess|extra|redundant|spare|supererogatory|superfluous|supernumerary|surplus|gratuitous|needless|uncalled-for|inessential|reserve|spare|inessential|unessential +unneighborliness|1 +(noun)|unfriendliness +unneighborly|1 +(adj)|unneighbourly|unfriendly +unneighbourly|1 +(adj)|unneighborly|unfriendly +unnerve|1 +(verb)|faze|enervate|unsettle|upset|discompose|untune|disconcert|discomfit +unnerved|1 +(adj)|afraid +unnerving|1 +(adj)|formidable|redoubtable|alarming +unneurotic|1 +(adj)|unneurotic |together +unnilhexium|1 +(noun)|Unh|element 106|atomic number 106|chemical element|element +unnilpentium|1 +(noun)|unnilquintium|Unp|hahnium|element 105|atomic number 105|chemical element|element +unnilquadium|1 +(noun)|rutherfordium|Rf|kurchatovium|Ku|Unq|element 104|atomic number 104|chemical element|element +unnilquintium|1 +(noun)|unnilpentium|Unp|hahnium|element 105|atomic number 105|chemical element|element +unnilseptium|1 +(noun)|Uns|element 107|atomic number 107|chemical element|element +unnotched|1 +(adj)|untoothed|smooth +unnoted|1 +(adj)|overlooked|unmarked|unnoticed +unnoticeable|3 +(adj)|unobtrusive |unassertive|retiring +(adj)|unnoticeable |insignificant|undistinguished +(adj)|obscure|inconspicuous |invisible +unnoticeableness|1 +(noun)|inconspicuousness +unnoticeably|1 +(adv)|imperceptibly|observably +unnoticed|1 +(adj)|unnoticed |disregarded|forgotten|ignored|neglected|unheeded|overlooked|unmarked|unnoted|unobserved|unperceived|unremarked +unnourished|1 +(adj)|malnourished +unnumberable|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumbered|unnumerable|incalculable +unnumbered|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumerable|incalculable +unnumerable|1 +(adj)|countless|infinite|innumerable|innumerous|myriad|multitudinous|numberless|uncounted|unnumberable|unnumbered|incalculable +unobjectionable|3 +(adj)|clean |antiseptic|decent +(adj)|innocuous|inoffensive +(adj)|acceptable +unobjective|1 +(adj)|unverifiable|subjective +unobligated|1 +(adj)|unobligated |unbeholden|unindebted +unobliging|1 +(adj)|unaccommodating |disobliging|uncooperative +unobservable|1 +(adj)|imperceptible |unperceivable +unobservant|2 +(adj)|unseeing|unperceptive |unperceiving +(adj)|inattentive|unvigilant|unwatchful|unalert +unobserved|2 +(adj)|unseen|undetected +(adj)|unnoticed +unobserved fire|1 +(noun)|fire|firing +unobstructed|1 +(adj)|unobstructed |clear|open|patent|unimpeded|unclogged +unobtainable|1 +(adj)|inaccessible|unprocurable|untouchable|unavailable +unobtrusive|1 +(adj)|unobtrusive |unnoticeable|unassertive|retiring +unobtrusiveness|1 +(noun)|inconspicuousness +unobvious|1 +(adj)|unobvious |unapparent|unprovable +unoccupied|3 +(adj)|unoccupied |free|spare|free +(adj)|unoccupied |relinquished +(adj)|untenanted|uninhabited +unoffending|3 +(adj)|unoffending +(adj)|inoffensive |offenseless|offenceless +(adj)|inoffensive|harmless +unofficial|2 +(adj)|unofficial |drumhead|summary|informal|loose|unauthorized|unauthorised|wildcat|unsanctioned|unauthorized|unauthorised +(adj)|unconfirmed +unofficially|1 +(adv)|on the side +unoiled|2 +(adj)|unoiled +(adj)|unpainted +unopen|1 +(adj)|shut |closed|closed +unopened|1 +(adj)|sealed +unopposable|1 +(adj)|unopposable +unopposed|1 +(adj)|unopposed +unordered|2 +(adj)|disordered +(adj)|ungraded|unranked|nonhierarchical |nonhierarchic +unorganised|2 +(adj)|unorganized |uncoordinated|unformed|unincorporated|unstructured +(adj)|unorganized|nonunionized|nonunionised|nonunion +unorganized|2 +(adj)|unorganized |unorganised|uncoordinated|unformed|unincorporated|unstructured +(adj)|unorganised|nonunionized|nonunionised|nonunion +unoriented|1 +(adj)|unoriented |alienated|anomic|disoriented|confused|disoriented|lost|disorienting +unoriginal|1 +(adj)|unoriginal |banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|bromidic|corny|platitudinal|platitudinous|cliched|ready-made|old|stale|moth-eaten|slavish|conventional|secondary|stale|uncreative +unoriginality|2 +(noun)|uncreativeness +(noun)|quality +unornamented|1 +(adj)|plain|unembellished|unadorned |undecorated +unorthodox|2 +(adj)|irregular|maverick|unconventional +(adj)|unorthodox |dissident|heretical|heterodox|iconoclastic|nonconforming|nonconformist|Reformed|dissentient|recusant +unorthodoxy|3 +(noun)|heterodoxy|heresy|orientation +(noun)|heresy|unbelief|disbelief +(noun)|heterodoxy|originality +unostentatious|3 +(adj)|unostentatious |unpretentious|unpretending|quiet|restrained +(adj)|understated|unpretentious|tasteful +(adj)|modest|restrained|discreet +unowned|1 +(adj)|unowned |ownerless +unoxygenated|1 +(adj)|unaerated|unventilated +unp|1 +(noun)|unnilquintium|unnilpentium|Unp|hahnium|element 105|atomic number 105|chemical element|element +unpacific|1 +(adj)|warlike|unpeaceful +unpack|1 +(verb)|take out|remove|take|take away|withdraw +unpackaged|1 +(adj)|unpackaged |loose +unpadded|1 +(adj)|hard +unpaid|3 +(adj)|unpaid |buckshee|complimentary|costless|free|gratis|gratuitous|outstanding|owed|owing|undischarged|pro bono|rent-free|uncompensated|unsalaried +(adj)|volunteer|voluntary +(adj)|amateur|recreational|nonprofessional +unpaid worker|1 +(noun)|volunteer|worker +unpainful|1 +(adj)|pain-free|painless +unpaintable|1 +(adj)|unpaintable +unpainted|2 +(adj)|unpainted |unrouged +(adj)|unpainted |bare|unfinished|unoiled|unstained|unvarnished|unfinished +unpaired|1 +(adj)|odd|unmatched|unmated|mismatched +unpalatability|1 +(noun)|unpalatableness|taste property +unpalatable|1 +(adj)|unpalatable |distasteful|unsavory|unsavoury|inedible|uneatable|offensive|tasteless|unappetizing|unappetising|unpleasant +unpalatableness|1 +(noun)|unpalatability|taste property +unparallel|1 +(adj)|uneven +unparalleled|1 +(adj)|alone|unique|unequaled|unequalled|incomparable |uncomparable +unpardonable|1 +(adj)|unpardonable |deadly|mortal|inexcusable|unforgivable|inexpiable +unpardonably|1 +(adv)|inexcusably|unforgivably +unparented|1 +(adj)|unparented |parentless|orphan|orphaned|fatherless|motherless +unparliamentary|1 +(adj)|impolite +unpartitioned|1 +(adj)|united +unpassable|1 +(adj)|impassable |unnavigable|unsurmountable|unclimbable|untraversable +unpasteurised|1 +(adj)|unpasteurized|change integrity +unpasteurized|1 +(adj)|unpasteurised|change integrity +unpatented|1 +(adj)|nonproprietary +unpatriotic|1 +(adj)|unpatriotic |disloyal|un-American|disloyal +unpatronised|1 +(adj)|unpatronized |patronless|briefless +unpatronized|1 +(adj)|unpatronized |unpatronised|patronless|briefless +unpatterned|1 +(adj)|plain |solid|self-colored|self-coloured +unpaved|1 +(adj)|unpaved |caliche-topped +unpeaceable|1 +(adj)|unpeaceful +unpeaceful|1 +(adj)|unpeaceful |belligerent|fighting|militant|war-ridden|warring|stormy|unpacific|warlike|unpeaceable|hostile|stormy|violent +unpeopled|1 +(adj)|unpopulated|uninhabited +unperceivable|1 +(adj)|imperceptible |impalpable|incognizable|incognoscible|indiscernible|insensible|undetectable|subliminal|unobservable|impalpable|inaudible|unhearable|invisible|unseeable +unperceived|1 +(adj)|unremarked|unnoticed +unperceiving|1 +(adj)|unperceptive |blind|unobservant|unseeing +unperceptive|2 +(adj)|unperceptive |unperceiving|blind|unobservant|unseeing +(adj)|undiscriminating |indiscriminating +unperceptiveness|1 +(noun)|insensitivity|insensitiveness +unperformed|1 +(adj)|unstaged +unpermed|1 +(adj)|straight +unpermissive|1 +(adj)|unpermissive |authoritarian|dictatorial|nonindulgent|strict +unpermissiveness|1 +(noun)|disposition|temperament +unperplexed|1 +(adj)|unperplexed |unbaffled|unconfused +unperson|1 +(noun)|nonperson|person|individual|someone|somebody|mortal|human|soul +unpersuadable|1 +(adj)|unsuasible|unsusceptible |insusceptible +unpersuaded|1 +(adj)|unconverted|unregenerate |unregenerated +unpersuasive|1 +(adj)|unconvincing +unpersuasiveness|1 +(noun)|powerlessness|impotence|impotency +unperturbed|1 +(adj)|unflurried|unflustered|unruffled|composed +unpick|2 +(verb)|unravel|unknot|unscramble|untangle|undo +(verb)|undo +unpictured|1 +(adj)|undepicted|undelineated +unpicturesque|1 +(adj)|unlovely|ugly +unpierced|1 +(adj)|uncut +unpigmented|1 +(adj)|coloration|colouration +unpillared|1 +(adj)|noncolumned |uncolumned +unpin|1 +(verb)|undo +unpitying|1 +(adj)|pitiless|remorseless|ruthless|merciless |unmerciful +unplaced|1 +(adj)|unsuccessful +unplanned|2 +(adj)|unplanned |ad hoc|casual|unexpected|unpremeditated|accidental|casual|chance|unintended +(adj)|unintentional|unwitting|unintended +unplanted|1 +(adj)|unplanted |uncropped|unseeded|unsown|wild|spontaneous +unplayable|1 +(adj)|unplayable +unplayful|1 +(adj)|unplayful |serious|sober +unpleasant|3 +(adj)|unpleasant |acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|beastly|hellish|god-awful|dour|forbidding|grim|dreadful|embarrassing|mortifying|harsh|rough|harsh|hot|afflictive|painful|sore|rebarbative|repellent|repellant|sharp|sharp-worded|tart|ungrateful|unhappy|unlovely|displeasing|ill-natured|nasty|awful|offensive|unpalatable +(adj)|objectionable|obnoxious|offensive +(adj)|nasty |awful +unpleasant person|1 +(noun)|disagreeable person|unwelcome person|persona non grata +unpleasant woman|1 +(noun)|disagreeable woman|unpleasant person|disagreeable person +unpleasantness|2 +(noun)|pain|painfulness +(noun)|quality +unpleasing|1 +(adj)|graceless|ungracious +unpleasingness|1 +(noun)|ugliness +unpleated|1 +(adj)|flat|unfolded +unpledged|1 +(adj)|unengaged|unpromised|unattached |uncommitted +unploughed|1 +(adj)|unplowed |unbroken|fallow|untilled +unplowed|1 +(adj)|unplowed |unploughed|unbroken|fallow|untilled +unplug|1 +(verb)|disconnect|undo +unplumbed|1 +(adj)|profound|unfathomed|unsounded|deep +unpointed|1 +(adj)|pointless |blunt +unpointedness|1 +(noun)|taper +unpolished|2 +(adj)|unpolished |raw|rough|unburnished|dull|unrefined +(adj)|gauche|graceless|inelegant +unpolitical|1 +(adj)|apolitical|nonpolitical +unpolluted|1 +(adj)|uncontaminated|pure +unpompous|1 +(adj)|unpretentious +unpopular|1 +(adj)|unpopular |less-traveled +unpopularity|1 +(noun)|quality +unpopulated|1 +(adj)|unpeopled|uninhabited +unportable|1 +(adj)|unportable +unposed|1 +(adj)|unposed |expose|exhibit|display +unpotted|1 +(adj)|unpotted +unpowered|1 +(adj)|unpowered +unpracticed|1 +(adj)|unpractised|inexperienced +unpractised|1 +(adj)|unpracticed|inexperienced +unprecedented|1 +(adj)|unprecedented |new|unexampled +unpredictability|3 +(noun)|capriciousness|inconstancy|changefulness +(noun)|volatility|irresoluteness|irresolution +(noun)|uncertainty|uncertainness +unpredictable|3 +(adj)|unpredictable |aleatory|capricious|freakish|episodic|occasional|unforeseeable|uncertain +(adj)|indeterminable |undeterminable +(adj)|irregular|sporadic +unpredictably|1 +(adv)|erratically +unpredicted|1 +(adj)|unannounced|unheralded|unexpected +unpredictive|1 +(adj)|unprophetic +unprejudiced|1 +(adj)|unprejudiced |impartial|color-blind|colour-blind|nonracist|open +unpremeditated|2 +(adj)|unplanned +(adj)|unpremeditated |impulsive|unplanned +unprepared|3 +(adj)|unprepared |ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|spur-of-the-moment|unready +(adj)|unequipped +(adj)|unready +unprepossessing|1 +(adj)|unpresentable|unattractive +unpresentable|1 +(adj)|unprepossessing|unattractive +unpresidential|1 +(adj)|unpresidential |unstatesmanlike +unpressed|1 +(adj)|unironed |wrinkled +unpretending|1 +(adj)|unostentatious |unpretentious|quiet|restrained +unpretentious|3 +(adj)|unpretentious |honest|modest|unpompous|plain|tasteful|in good taste +(adj)|unostentatious |unpretending|quiet|restrained +(adj)|understated|unostentatious|tasteful +unpretentiousness|1 +(noun)|naturalness +unpreventable|1 +(adj)|unpreventable +unpriestly|1 +(adj)|unpriestly +unprincipled|2 +(adj)|unprincipled |immoral|unscrupulous +(adj)|dishonorable |dishonourable +unprintable|1 +(adj)|unprintable +unproblematic|1 +(adj)|elementary|simple|uncomplicated|easy +unprocessed|3 +(adj)|unrefined |crude +(adj)|unprocessed |natural|raw|rude|unstrained|unvulcanized|unvulcanised|impure|unfinished|untreated +(adj)|fresh +unprocurable|1 +(adj)|inaccessible|unobtainable|untouchable|unavailable +unproductive|2 +(adj)|unproductive |bootless|fruitless|futile|sleeveless|vain|dry|nonproductive|sterile|unfertile|infertile|uncreative|unprofitable +(adj)|ineffective |uneffective|ineffectual +unproductively|1 +(adv)|fruitlessly|unprofitably +unproductiveness|1 +(noun)|fruitlessness|aridity|barrenness +unprofessional|1 +(adj)|unprofessional |amateurish|amateur|inexpert|unskilled +unprofitability|1 +(noun)|unprofitableness|disadvantage +unprofitable|3 +(adj)|unprofitable |dead|idle|lean|marginal|unremunerative|unproductive|unsuccessful|useless +(adj)|inutile|useless +(adj)|profitless|unrewarding +unprofitableness|1 +(noun)|unprofitability|disadvantage +unprofitably|2 +(adv)|profitlessly|gainlessly +(adv)|unproductively|fruitlessly +unprogressive|1 +(adj)|fusty|standpat|nonprogressive|conservative +unpromised|1 +(adj)|unengaged|unpledged|unattached |uncommitted +unpromising|1 +(adj)|inauspicious |unfortunate +unprompted|1 +(adj)|impulsive|spontaneous |self-generated +unpronounceable|2 +(adj)|unpronounceable +(adj)|unutterable|uncommunicative |incommunicative +unprophetic|1 +(adj)|unprophetic |nonprognosticative|unpredictive +unpropitious|1 +(adj)|unpropitious |ill|inauspicious|ominous|thunderous|unfavorable|unfavourable +unpropitiously|1 +(adv)|inauspiciously +unpropitiousness|1 +(noun)|inauspiciousness|unfavorableness|unfavourableness +unprotected|2 +(adj)|unprotected |exposed|open|naked|defenseless|unshielded|insecure|unsafe|susceptible|vulnerable +(adj)|unguarded|vulnerable +unprotectedness|1 +(noun)|defenselessness|defencelessness|vulnerability +unprotective|1 +(adj)|unprotective |neglectful|neglectful of +unprotesting|1 +(adj)|unmurmuring|uncomplaining +unprovable|1 +(adj)|unobvious +unproved|1 +(adj)|unproved |unproven|on trial|unverified +unproven|1 +(adj)|unproved |on trial|unverified +unprovided for|2 +(adj)|poor +(adj)|unexpected +unprovided with|1 +(adj)|unfurnished with|unsupplied with|unfurnished |unequipped +unprovocative|1 +(adj)|unprovocative |unprovoking|disarming|noninflammatory|nonviolent|unexciting +unprovoked|1 +(adj)|motiveless|wanton|unmotivated +unprovoking|1 +(adj)|unprovocative |disarming|noninflammatory|nonviolent|unexciting +unpublishable|1 +(adj)|unpublishable +unpublished|1 +(adj)|unpublished +unpunctual|1 +(adj)|unpunctual |behindhand|belated|late|tardy|benighted|nighted|dilatory|laggard|last-minute +unpunished|1 +(adj)|unpunished |unadmonished|unchastened|unrebuked|unreproved|uncorrected|undisciplined +unpurified|1 +(adj)|impure +unputdownable|1 +(adj)|interesting +unq|1 +(noun)|rutherfordium|Rf|kurchatovium|Ku|unnilquadium|Unq|element 104|atomic number 104|chemical element|element +unqualified|5 +(adj)|unqualified |categoric|categorical|flat|unconditional|clean|clear|cool|outright|straight-out|unlimited|unconditional|unmodified +(adj)|unqualified |quack|incompetent|ineligible +(adj)|unentitled|ineligible +(adj)|incompetent +(adj)|incapable|incompetent +unquenchable|1 +(adj)|quenchless|insatiate |insatiable|unsatiable +unquestionability|1 +(noun)|indisputability|indubitability|unquestionableness|certainty|sure thing|foregone conclusion +unquestionable|3 +(adj)|unquestionable |acknowledged|beyond doubt|indubitable|for sure|mathematical|unchallengeable|unchallenged|undisputed|undoubted|unquestioned|unimpeachable|incontestable|incontestible|undeniable +(adj)|authentic|bona fide|veritable|genuine |echt +(adj)|unequivocal |univocal|unambiguous +unquestionableness|1 +(noun)|indisputability|indubitability|unquestionability|certainty|sure thing|foregone conclusion +unquestionably|2 +(adv)|unimpeachably +(adv)|decidedly|emphatically|definitely|in spades|by all odds +unquestioned|1 +(adj)|unchallenged|undisputed|undoubted|unquestionable +unquestioning|2 +(adj)|credulous +(adj)|implicit|absolute +unquiet|2 +(adj)|unquiet |disruptive|riotous|troubled|tumultuous|turbulent|fidgety|fretful|itchy|restless|squally|squalling|uneasy|restless|agitated|uneasy|wild +(adj)|anxious|nervous|uneasy|troubled +unquotable|1 +(adj)|unrepeatable +unraised|1 +(adj)|flat|unleavened +unranked|1 +(adj)|ungraded|unordered|nonhierarchical |nonhierarchic +unratable|1 +(adj)|nontaxable |exempt +unratified|1 +(adj)|illegal +unravel|3 +(verb)|unknot|unscramble|untangle|unpick|undo +(verb)|ravel|ravel out|disentangle|unsnarl|straighten out +(verb)|run|disintegrate +unraveler|1 +(noun)|disentangler|unraveller|person|individual|someone|somebody|mortal|human|soul +unraveller|1 +(noun)|disentangler|unraveler|person|individual|someone|somebody|mortal|human|soul +unreachable|1 +(adj)|unapproachable|unreached|out of reach|inaccessible |unaccessible +unreached|1 +(adj)|unapproachable|unreachable|out of reach|inaccessible |unaccessible +unreactive|2 +(adj)|unreactive |inactive|inert|indifferent|neutral|stable|noble +(adj)|unresponsive|insensitive +unread|1 +(adj)|uninformed +unreadable|1 +(adj)|indecipherable|unclear|undecipherable|illegible +unreadably|1 +(adv)|illegibly|undecipherably +unready|1 +(adj)|unready |flat-footed|napping|off-guard|off guard|off one's guard|off his guard|off her guard|off your guard|unripe|unprepared|unprepared +unreal|4 +(adj)|unreal |dreamed|envisioned|pictured|visualized|visualised|eye-deceiving|trompe-l'oeil|fabled|legendary|fabricated|fancied|fictional|fictitious|invented|made-up|fabulous|mythic|mythical|mythologic|mythological|fanciful|imaginary|imagined|notional|fantastic|fantastical|hallucinatory|illusional|illusionary|illusive|illusory|make-believe|pretend|artificial|counterfeit|imitative|insincere|supernatural|unrealistic +(adj)|unreal |deceptive|delusory|dreamlike|surreal|phantom +(adj)|artificial |arranged|staged|bionic|bleached|colored|coloured|dyed|celluloid|synthetic|conventionalized|conventionalised|stylized|stylised|dummy|ersatz|substitute|factitious|fake|false|faux|imitation|simulated|man-made|semisynthetic|synthetic|near|painted|cardboard|unlifelike|counterfeit|imitative +(adj)|insubstantial |unsubstantial|aeriform|aerial|airy|aery|ethereal|paper|shadowy|wraithlike|immaterial|nonmaterial +unrealised|1 +(adj)|unfulfilled|unrealized|unsuccessful +unrealism|1 +(noun)|abstractionism|representation|mental representation|internal representation +unrealistic|1 +(adj)|unrealistic |chimerical|delusive|false|fantastic|kafkaesque|phantasmagoric|phantasmagorical|surreal|surrealistic|unreasonable|impossible|impractical|unreal +unreality|2 +(noun)|immateriality|incorporeality +(noun)|irreality|nonexistence|nonentity +unrealizable|1 +(adj)|unachievable|unattainable|undoable|impossible +unrealized|1 +(adj)|unfulfilled|unrealised|unsuccessful +unreason|1 +(noun)|irrationality|insanity +unreasonable|5 +(adj)|unreasonable |counterintuitive|indefensible|untenable|mindless|reasonless|senseless|undue|unjustified|unwarranted|illogical|unlogical|immoderate|irrational +(adj)|cockamamie|cockamamy|goofy|sappy|silly|wacky|whacky|zany|foolish +(adj)|unrealistic +(adj)|excessive|inordinate|undue|immoderate +(adj)|absurd|illogical |unlogical +unreasonably|1 +(adv)|immoderately +unreasoning|1 +(adj)|blind|irrational +unreasoningly|1 +(adv)|viscerally +unreassuring|1 +(adj)|unreassuring |worrisome +unrebuked|1 +(adj)|unadmonished|unchastened|unreproved|unpunished +unreceptive|1 +(adj)|unreceptive |closed|unsympathetic +unreciprocated|1 +(adj)|unanswered|unrequited|nonreciprocal +unrecognisable|2 +(adj)|unrecognizable|unidentifiable +(adv)|unrecognizably +unrecognised|2 +(adj)|unrecognized|unestablished +(adj)|unrecognized|unacknowledged +unrecognizable|1 +(adj)|unrecognisable|unidentifiable +unrecognizably|1 +(adv)|unrecognisable +unrecognized|2 +(adj)|unrecognised|unacknowledged +(adj)|unrecognised|unestablished +unreconcilable|1 +(adj)|irreconcilable |hostile|inconsistent +unreconciled|2 +(adj)|unreconciled +(adj)|inconsistent +unreconstructed|1 +(adj)|unreconstructed |obstinate|stubborn|unregenerate +unrecorded|2 +(adj)|unrecorded |unfiled|unregistered +(adj)|live |unfilmed|untaped +unrecoverable|1 +(adj)|unrecoverable |irrecoverable|forgotten|lost|irretrievable|unretrievable|lost +unredeemable|1 +(adj)|irreclaimable|irredeemable|unreformable|wicked +unredeemed|1 +(adj)|cursed|damned|doomed|unsaved|lost +unreduced|1 +(adj)|unaltered |unchanged +unreel|1 +(verb)|reel off|reel +unreeling|1 +(adj)|unwinding|moving +unrefined|2 +(adj)|unrefined |unprocessed|crude +(adj)|unrefined |agrestic|artless|uncultivated|uncultured|boorish|loutish|neanderthal|neandertal|oafish|swinish|coarse|common|rough-cut|uncouth|vulgar|crass|ill-bred|bounderish|lowbred|rude|underbred|yokelish|low|robust|rough|rough-spoken|ungentlemanly|ungentlemanlike|unladylike|inelegant|unfastidious|ungracious|unpolished +unreflected|1 +(adj)|unreflected |absorbed +unreflective|1 +(adj)|unthinking|unthoughtful|thoughtless +unreformable|2 +(adj)|irreclaimable|irredeemable|unredeemable|wicked +(adj)|depraved|unregenerate|incorrigible +unrefreshed|1 +(adj)|unrested|tired +unregenerate|3 +(adj)|unregenerate |unregenerated|cussed|obdurate|obstinate|unrepentant|impenitent|unconverted|unpersuaded|lost|impenitent|unrepentant|unremorseful +(adj)|depraved|unreformable|incorrigible +(adj)|obstinate|stubborn|unreconstructed +unregenerated|1 +(adj)|unregenerate |cussed|obdurate|obstinate|unrepentant|impenitent|unconverted|unpersuaded|lost|impenitent|unrepentant|unremorseful +unregistered|4 +(adj)|unregistered +(adj)|unregistered |unlisted +(adj)|unfiled|unrecorded +(adj)|undocumented +unregretful|1 +(adj)|unregretful |unregretting +unregretting|1 +(adj)|unregretful +unregularity|1 +(noun)|irregularity|quality +unregulated|2 +(adj)|unregulated +(adj)|unstructured +unrehearsed|1 +(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unprepared +unrelated|2 +(adj)|unrelated |dissociated|unconnected|misrelated|orthogonal|uncorrelated +(adj)|unrelated |unconnected|not kin +unrelatedness|1 +(noun)|unconnectedness +unrelaxed|1 +(adj)|tense +unreleased|1 +(adj)|suppressed +unrelenting|2 +(adj)|grim|inexorable|relentless|stern|unappeasable|unforgiving|implacable +(adj)|persistent|relentless|continual +unrelentingly|1 +(adv)|relentlessly +unreliability|1 +(noun)|undependability|undependableness|unreliableness|irresponsibility|irresponsibleness +unreliable|5 +(adj)|undependable|fallible +(adj)|undependable|untrustworthy |untrusty +(adj)|unreliable |erratic|temperamental|uncertain|unsound|untrustworthy|untrusty +(adj)|treacherous|dangerous |unsafe +(adj)|irresponsible +unreliableness|1 +(noun)|undependability|undependableness|unreliability|irresponsibility|irresponsibleness +unreliably|1 +(adv)|unfaithfully|undependably +unrelieved|1 +(adj)|undiminished|unmitigated +unremarkable|1 +(adj)|everyday|mundane|quotidian|routine|workaday|ordinary +unremarkably|1 +(adv)|normally|usually|commonly|ordinarily +unremarked|1 +(adj)|unperceived|unnoticed +unremedied|1 +(adj)|uncorrected +unremitting|1 +(adj)|ceaseless|constant|incessant|never-ending|perpetual|unceasing|continuous |uninterrupted +unremorseful|1 +(adj)|impenitent |unashamed|unregenerate|unregenerated +unremunerative|1 +(adj)|unprofitable +unrenewable|1 +(adj)|unrenewable |nonrenewable +unrenewed|1 +(adj)|unrevived +unrentable|1 +(adj)|unrentable +unrepaired|2 +(adj)|unserviceable +(adj)|in disrepair|unrestored +unrepeatable|2 +(adj)|unrepeatable +(adj)|unreproducible |irreproducible +unrepentant|2 +(adj)|impenitent |unremorseful|unashamed|unregenerate|unregenerated +(adj)|cussed|obdurate|obstinate|unregenerate |unregenerated +unrepentantly|1 +(adv)|impenitently +unreplaceable|1 +(adj)|irreplaceable |unexpendable +unreportable|1 +(adj)|unreportable +unreported|1 +(adj)|unreported +unrepresentative|1 +(adj)|atypical |untypical +unrepressed|1 +(adj)|uninhibited +unreproducible|1 +(adj)|unreproducible |irreproducible|inimitable|unrepeatable +unreproducibly|1 +(adv)|inimitably +unreproved|1 +(adj)|unadmonished|unchastened|unrebuked|unpunished +unrequested|1 +(adj)|unrequested |unasked +unrequited|1 +(adj)|unanswered|unreciprocated|nonreciprocal +unresentful|1 +(adj)|unresentful |unbitter +unreserved|2 +(adj)|unreserved |first-come-first-serve|rush|unbooked +(adj)|unreserved |demonstrative|uninhibited|unrestrained +unresistant|1 +(adj)|liable|nonimmune|nonresistant|susceptible +unresisting|1 +(adj)|resistless|supine|passive |inactive +unresolvable|2 +(adj)|insolvable|unsoluble|unsolvable|insoluble +(adj)|inextricable +unresolved|3 +(adj)|unsolved +(adj)|open|undecided|undetermined|unsettled +(adj)|dissonant|inharmonious |unharmonious +unrespectability|1 +(noun)|disreputability|disreputableness|dishonorableness|dishonourableness +unrespectable|2 +(adj)|unrespectable +(adj)|disreputable +unrespected|1 +(adj)|disreputable +unresponsive|5 +(adj)|unresponsive |insensitive|insensitive +(adj)|cool +(adj)|unsusceptible |insusceptible +(adj)|insensitive +(adj)|unreactive|insensitive +unresponsiveness|1 +(noun)|quality +unrest|2 +(noun)|agitation|ferment|fermentation|turbulence|upheaval|Sturm und Drang +(noun)|agitation +unrested|1 +(adj)|unrefreshed|tired +unrestored|1 +(adj)|unrestored |in disrepair|unrepaired +unrestrained|4 +(adj)|unrestrained |excessive|extravagant|exuberant|overweening|freewheeling|highflying|unbridled|unchecked|uncurbed|ungoverned|unbuttoned|unlaced|unhampered|unhindered|free|uncontrolled|uninhibited|unreserved +(adj)|uncontrolled|untempered|intemperate +(adj)|delirious|excited|frantic|mad|wild +(adj)|flamboyant|resplendent|colorful +unrestraint|1 +(noun)|indiscipline|undiscipline +unrestricted|5 +(adj)|unrestricted |all-weather|discretionary|open|open-ended|open-plan|free +(adj)|free +(adj)|unexclusive|public +(adj)|unmodified +(adj)|nonsensitive|unclassified +unrestrictive|1 +(adj)|unrestrictive |emancipative|nonrestrictive +unretentive|1 +(adj)|unretentive |forgetful|short|unmindful|forgetful|mindless +unretrievable|1 +(adj)|irretrievable|unrecoverable |irrecoverable +unrevealed|1 +(adj)|undisclosed|covert +unrevealing|1 +(adj)|guarded|noncommittal|uncommunicative |incommunicative +unreverberant|1 +(adj)|unreverberant |nonresonant|anechoic|dead|dull|thudding +unreviled|1 +(adj)|unmaligned|unabused +unrevised|1 +(adj)|unaltered |unchanged +unrevived|1 +(adj)|unrevived |unrenewed +unrewarded|1 +(adj)|empty-handed|unsuccessful +unrewarding|1 +(adj)|unrewarding |thankless|unappreciated|ungratifying|profitless|unprofitable +unrhetorical|1 +(adj)|unrhetorical |literal|plain|unembellished|matter-of-fact|prosaic|plainspoken|informal|literal|plain +unrhymed|1 +(adj)|unrhymed |unrimed|rhymeless|rimeless +unrhythmic|1 +(adj)|unrhythmical |arrhythmic|arrhythmical|nonrhythmic|irregular +unrhythmical|1 +(adj)|unrhythmical |unrhythmic|arrhythmic|arrhythmical|nonrhythmic|irregular +unrifled|1 +(adj)|unrifled |smoothbore +unrigged|1 +(adj)|unrigged +unrighteous|1 +(adj)|unrighteous |sinful|unholy|wicked|unjust|evil|wicked|guilty|immoral|unjust|unworthy|wicked +unrighteousness|1 +(noun)|immorality +unrimed|1 +(adj)|unrhymed |rhymeless|rimeless +unripe|2 +(adj)|green |unripened|immature|unaged +(adj)|unready +unripened|1 +(adj)|green |unripe|immature|unaged +unrivaled|1 +(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivalled|incomparable |uncomparable +unrivalled|1 +(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|incomparable |uncomparable +unroll|2 +(verb)|unwind|wind off|move|displace +(verb)|unfurl|change surface +unrolled|2 +(adj)|rolled out|extended +(adj)|unfolded +unromantic|1 +(adj)|unloving +unroofed|1 +(adj)|uncovered +unrotted|1 +(adj)|unrotten |undecomposed +unrotten|1 +(adj)|unrotten |unrotted|undecomposed +unrouged|1 +(adj)|unpainted +unruffled|2 +(adj)|unflurried|unflustered|unperturbed|composed +(adj)|placid|quiet|still|tranquil|calm +unruliness|1 +(noun)|fractiousness|willfulness|wilfulness|intractability|intractableness +unruly|3 +(adj)|boisterous|rambunctious|robustious|rumbustious|disorderly +(adj)|disobedient|insubordinate +(adj)|indocile|uncontrollable|ungovernable|unmanageable +unrusted|1 +(adj)|rust-free|rustless +uns|2 +(noun)|unnilseptium|Uns|element 107|atomic number 107|chemical element|element +(noun)|United Nations|UN|world organization|world organisation|international organization|international organisation|global organization +unsaddle|1 +(verb)|offsaddle|remove|take|take away|withdraw +unsaddled|1 +(adj)|unsaddled |bareback|barebacked +unsafe|3 +(adj)|insecure |embattled|precarious|shaky|uncertain|unsure|unguaranteed|unsecured|dangerous|unprotected|vulnerable +(adj)|dangerous |breakneck|chancy|chanceful|dicey|dodgy|desperate|harmful|hazardous|risky|venturesome|venturous|insidious|mordacious|on the hook|parlous|perilous|precarious|touch-and-go|self-destructive|suicidal|treacherous|unreliable|insecure|vulnerable +(adj)|insecure|vulnerable +unsaid|1 +(adj)|unexpressed|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit |inexplicit +unsalable|1 +(adj)|unsalable |unsaleable|unmarketable|unmarketable|unmerchantable|unvendible +unsalaried|1 +(adj)|uncompensated|unpaid +unsaleable|1 +(adj)|unsalable |unmarketable|unmarketable|unmerchantable|unvendible +unsalted|1 +(adj)|unseasoned|tasteless +unsalty|1 +(adj)|sweet|fresh +unsanctification|1 +(noun)|profaneness|unholiness +unsanctified|1 +(adj)|profane|unconsecrated|unholy |unhallowed +unsanctify|1 +(verb)|change|alter|modify +unsanctioned|1 +(adj)|unofficial +unsanded|1 +(adj)|raw|unfinished +unsanitariness|1 +(noun)|sanitary condition +unsanitary|1 +(adj)|unsanitary |insanitary|unhealthful|unhygienic +unsaponified|1 +(adj)|unsaponified |change|alter|modify +unsarcastic|1 +(adj)|unsarcastic +unsated|1 +(adj)|unsatiated|unsatisfied|insatiate |insatiable|unsatiable +unsatiable|1 +(adj)|insatiate |insatiable|quenchless|unquenchable|unsated|unsatiated|unsatisfied|unsatisfiable +unsatiably|2 +(adv)|insatiably +(adv)|insatiably +unsatiated|1 +(adj)|unsated|unsatisfied|insatiate |insatiable|unsatiable +unsatisfactoriness|1 +(noun)|quality +unsatisfactory|1 +(adj)|unsatisfactory |disappointing|dissatisfactory|unsatisfying|failing|off|unacceptable|inadequate|unacceptable +unsatisfiable|1 +(adj)|insatiate |insatiable|unsatiable +unsatisfied|2 +(adj)|unsated|unsatiated|insatiate |insatiable|unsatiable +(adj)|restless|ungratified|discontented |discontent +unsatisfying|1 +(adj)|disappointing|dissatisfactory|unsatisfactory +unsaturated|3 +(adj)|unsaturated +(adj)|unsaturated |polyunsaturated +(adj)|unsaturated |dull +unsaturated fatty acid|1 +(noun)|fatty acid +unsaved|1 +(adj)|cursed|damned|doomed|unredeemed|lost +unsavoriness|1 +(noun)|disgustingness|distastefulness|nauseatingness|sickeningness|unpalatability|unpalatableness +unsavory|2 +(adj)|unsavory |unsavoury|offensive|odoriferous +(adj)|distasteful|unsavoury|unpalatable +unsavoury|2 +(adj)|unsavory |offensive|odoriferous +(adj)|distasteful|unsavory|unpalatable +unsay|1 +(verb)|swallow|take back|withdraw|renounce|repudiate +unscalable|1 +(adj)|unscalable |unclimbable +unscathed|1 +(adj)|unharmed|unhurt|uninjured +unscheduled|1 +(adj)|unscheduled |extra|special|forced|unexpected +unscholarly|1 +(adj)|unscholarly |unlearned|unstudious|nonintellectual +unschooled|1 +(adj)|untaught|untutored|uneducated +unscientific|1 +(adj)|unscientific |pseudoscientific +unscramble|2 +(verb)|change|alter|modify +(verb)|unravel|unknot|untangle|unpick|undo +unscrew|2 +(verb)|loosen|loose +(verb)|loosen|loose +unscripted|1 +(adj)|unscripted |ad-lib|spontaneous|unwritten +unscrupulous|2 +(adj)|unscrupulous |unprincipled +(adj)|dishonest|crooked |corrupt +unscrupulousness|1 +(noun)|dishonesty +unseal|1 +(verb)|open|open up +unsealed|2 +(adj)|unsealed |uncertain +(adj)|unsealed |open|opened|open +unseamanlike|1 +(adj)|unseamanlike |lubberly|landlubberly +unseamed|2 +(adj)|seamless +(adj)|seamless|unlined|smooth +unseasonable|2 +(adj)|unseasonable +(adj)|ill-timed|ill timed|untimely|wrong|inopportune +unseasonableness|1 +(noun)|untimeliness|timing +unseasoned|3 +(adj)|unseasoned |uncured +(adj)|unsalted|tasteless +(adj)|untested|untried|inexperienced +unseat|2 +(verb)|remove +(verb)|move|displace +unseaworthy|1 +(adj)|unseaworthy |leaking|leaky|unequipped|leaky +unsectarian|1 +(adj)|nonsectarian |ecumenic|oecumenic|ecumenical|oecumenical|interchurch|interdenominational|nondenominational|undenominational +unsecured|2 +(adj)|unbarred|unbolted|unlatched|unlocked|unfastened +(adj)|unguaranteed|insecure |unsafe +unsecured bond|1 +(noun)|debenture|debenture bond|bond|bond certificate +unseductive|1 +(adj)|unseductive |uninviting|untempting|unattractive +unseeable|1 +(adj)|invisible |camouflaged|concealed|hidden|out of sight|infrared|lightless|ultraviolet|undetectable|unseen|nonvisual|occult|imperceptible|unperceivable|covert +unseeded|2 +(adj)|unseeded +(adj)|unsown|unplanted +unseeing|2 +(adj)|unobservant|unperceptive |unperceiving +(adj)|eyeless|sightless|blind |unsighted +unseemliness|1 +(noun)|indecorum|indecorousness +unseemly|1 +(adj)|indecent|indecorous|unbecoming|uncomely|untoward|improper +unseen|3 +(adj)|invisible |unseeable +(adj)|unobserved|undetected +(noun)|spiritual world|belief +unsegmented|1 +(adj)|nonsegmental|united +unsegregated|1 +(adj)|desegrated|nonsegregated|integrated +unselected|1 +(adj)|unselected |random +unselective|1 +(adj)|undiscriminating |indiscriminating +unselfconscious|1 +(adj)|unaffected +unselfconsciousness|1 +(noun)|unknowingness|unawareness +unselfish|2 +(adj)|unselfish |public-spirited|self-denying|self-giving|self-sacrificing|self-forgetful|sharing|altruistic|selfless|considerate|generous +(adj)|generous +unselfishness|2 +(noun)|generosity|generousness +(noun)|generosity|sharing|share-out +unsensational|1 +(adj)|unsensational +unsent|1 +(adj)|unsent +unsentimental|1 +(adj)|tough-minded|tough +unserviceable|2 +(adj)|unserviceable |broken-down|burned-out|burnt-out|inoperable|unusable|nondurable|unrepaired|nonfunctional|useless +(adj)|unusable|unuseable|useless +unservile|1 +(adj)|unservile |unsubmissive +unsettle|1 +(verb)|faze|unnerve|enervate|upset|discompose|untune|disconcert|discomfit +unsettled|5 +(adj)|unsettled |doubtful|tentative|open|undecided|undetermined|unresolved +(adj)|unsettled |aimless|drifting|floating|vagabond|vagrant|erratic|planetary|wandering|homeless|stateless|migrant|migratory|mobile|nomadic|peregrine|roving|wandering|peripatetic|wayfaring|rootless|vagabond|unlocated|itinerant +(adj)|changeable|uncertain|variable +(adj)|disturbed|unstable +(adj)|uninhabited +unsex|3 +(verb)|deprive|strip|divest +(verb)|change|alter|modify +(verb)|sterilize|sterilise|desex|desexualize|desexualise|fix|operate on|operate +unsexed|1 +(adj)|castrated |altered|neutered|cut|emasculated|gelded|spayed +unsexy|1 +(adj)|unsexy |sexless|sexless|undersexed +unshackled|1 +(adj)|unchained|unfettered|untied|unbound +unshaded|2 +(adj)|unshaded |flat +(adj)|unshaded |unshadowed +unshadowed|1 +(adj)|unshaded +unshakable|2 +(adj)|firm|steadfast|steady|unbendable|unfaltering|unwavering|resolute +(adj)|ironclad|unassailable|watertight|bulletproof|incontestable |incontestible +unshakably|1 +(adv)|determinedly|unfalteringly|with determination +unshaken|1 +(adj)|undaunted|undismayed|resolute +unshaped|1 +(adj)|unshapen|unformed +unshapely|1 +(adj)|unshapely |acromegalic|pituitary|chunky|lumpy|clubfooted|deformed|distorted|ill-shapen|malformed|misshapen|ill-proportioned|knobby|knobbly|nodular|nodulated|noduled|nodulose|pigeon-breasted|chicken-breasted|shapeless|torulose|asymmetrical|asymmetric +unshapen|1 +(adj)|unshaped|unformed +unshared|1 +(adj)|unshared |exclusive|sole|individual|separate|single|undivided|separate +unsharpened|1 +(adj)|dull +unshaved|1 +(adj)|unshaven |bearded|barbate|bewhiskered|whiskered|whiskery|bestubbled|stubbled|stubbly|goateed|mustachioed|mustached +unshaven|1 +(adj)|unshaven |unshaved|bearded|barbate|bewhiskered|whiskered|whiskery|bestubbled|stubbled|stubbly|goateed|mustachioed|mustached +unsheared|2 +(adj)|unsheared |unshorn +(adj)|uncut |rough +unsheathe|1 +(verb)|draw|pull|pull out|get out|take out +unsheathed|1 +(adj)|unsheathed |bare +unshielded|1 +(adj)|unprotected +unshockable|1 +(adj)|unshockable |broad-minded +unshod|2 +(adj)|discalced |discalceate +(adj)|unshod |unshoed|barefoot|barefooted|shoeless|stocking|stockinged +unshoed|1 +(adj)|unshod |barefoot|barefooted|shoeless|stocking|stockinged +unshorn|1 +(adj)|unsheared +unshrinkable|1 +(adj)|unshrinkable +unshrinking|1 +(adj)|unblinking|unflinching|unintimidated|unafraid |fearless +unshuttered|1 +(adj)|unshuttered +unsighted|1 +(adj)|blind |blinded|blindfold|blindfolded|color-blind|colour-blind|deuteranopic|green-blind|dim-sighted|near-blind|purblind|sand-blind|visually impaired|visually challenged|eyeless|sightless|unseeing|protanopic|red-blind|snow-blind|snow-blinded|stone-blind|tritanopic|blue-blind|dazzled +unsightliness|1 +(noun)|ugliness +unsightly|1 +(adj)|ugly +unsigned|1 +(adj)|unsigned +unsilenced|1 +(adj)|unsilenced +unsimilarity|1 +(noun)|dissimilarity|difference +unsinkable|1 +(adj)|unsinkable +unsized|2 +(adj)|unsized +(adj)|unsized |unsorted +unskilled|3 +(adj)|unskilled |artless|botchy|butcherly|unskillful|bungled|botched|bungling|clumsy|fumbling|incompetent|crude|rough|hopeless|humble|menial|lowly|lubberly|out of practice|rusty|semiskilled|incompetent|inexperienced +(adj)|amateurish|amateur|inexpert|unprofessional +(adj)|incompetent|bad +unskilled person|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +unskillful|1 +(adj)|botchy|butcherly|unskilled +unskillfulness|1 +(noun)|inability +unslaked lime|1 +(noun)|calcium oxide|quicklime|lime|calx|calcined lime|fluxing lime|burnt lime|oxide +unsleeping|1 +(adj)|wide-awake|awake +unsloped|1 +(adj)|upright|vertical |perpendicular +unsmiling|1 +(adj)|joyless +unsmooth|1 +(adj)|rough |abrasive|scratchy|alligatored|cracked|barky|broken|rugged|bullate|bumpy|jarring|jolting|jolty|chapped|cracked|roughened|corded|twilled|costate|ribbed|cragged|craggy|hilly|mountainous|crushed|homespun|nubby|nubbly|slubbed|tweedy|lepidote|leprose|scabrous|scaly|scurfy|squamulose|lined|seamed|pocked|pockmarked|potholed|rocky|bouldery|bouldered|stony|roughish|rugose|scabby|textured|rough-textured|verrucose|warty|wartlike|imbricate|imbricated|sandpapery|shagged|shaggy|coarse|irregular|nonslippery|uneven|unironed|wrinkled|unpolished +unsmoothed|1 +(adj)|wrinkled +unsnarl|1 +(verb)|disentangle|straighten out|order +unsnarled|1 +(adj)|disentangled|loosened|untangled +unsnarling|1 +(noun)|untangling|disentanglement|extrication|liberation|release|freeing +unsociability|1 +(noun)|unsociableness|disposition|temperament +unsociable|1 +(adj)|unsociable |antisocial|ungregarious|unfriendly|unsocial +unsociableness|1 +(noun)|unsociability|disposition|temperament +unsocial|1 +(adj)|unsocial |alone|antisocial|asocial|asocial|eremitic|eremitical|lone|solitary|lonely|solitary|recluse|reclusive|withdrawn|ungregarious|unsociable +unsoiled|1 +(adj)|unspotted|unstained|clean +unsold|1 +(adj)|unsold +unsolder|1 +(verb)|detach|come off|come away +unsoldierly|1 +(adj)|unmilitary |nonmilitary +unsolicited|1 +(adj)|unsought|uninvited +unsoluble|1 +(adj)|insolvable|unsolvable|unresolvable|insoluble +unsolvable|1 +(adj)|insolvable|unsoluble|unresolvable|insoluble +unsolved|1 +(adj)|unsolved |unresolved +unsophisticated|5 +(adj)|unworldly|naive |naif +(adj)|uncomplicated|simple +(adj)|callow|inexperienced|naive|immature +(adj)|bumpkinly|hick|rustic|provincial +(adj)|naive|artless +unsorted|2 +(adj)|unsized +(adj)|uncategorized|uncategorised|unclassified +unsought|2 +(adj)|undesired|unwanted +(adj)|unsolicited|uninvited +unsound|7 +(adj)|unsound |corroded|decayed|rotten|rotted +(adj)|unsound |bad|insecure|risky|high-risk|speculative|long|wildcat|broken|damaged|injured|unfit|unhealthy|unwholesome +(adj)|fallacious|invalid +(adj)|mentally ill|unstable|insane +(adj)|bad|unfit|unhealthy +(adj)|unreliable +(adj)|bedraggled|broken-down|dilapidated|ramshackle|tatterdemalion|tumble-down|damaged +unsoundable|1 +(adj)|unfathomable +unsounded|2 +(adj)|profound|unfathomed|unplumbed|deep +(adj)|silent|inaudible |unhearable +unsoundness|1 +(noun)|condition|status +unsoured|1 +(adj)|unsoured |fresh|sweet|unfermented +unsown|1 +(adj)|unseeded|unplanted +unspaced|1 +(adj)|unspaced |unleaded +unsparing|2 +(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unstinted|unstinting|generous +(adj)|inclement +unsparingly|1 +(adv)|scathingly +unspeakable|3 +(adj)|indefinable|indescribable|ineffable|untellable|unutterable|inexpressible |unexpressible +(adj)|atrocious|abominable|awful|dreadful|painful|terrible|bad +(adj)|ineffable|unnameable|unutterable|sacred +unspeakably|1 +(adv)|ineffably|indescribably|unutterably +unspecialised|1 +(adj)|unspecialized |generalized|generalised|general +unspecialized|1 +(adj)|unspecialized |unspecialised|generalized|generalised|general +unspecific|1 +(adj)|broad|general +unspecified|1 +(adj)|unspecified |any old|one|some|such-and-such +unspectacular|1 +(adj)|undramatic +unspell|1 +(verb)|free|liberate|release|unloose|unloosen|loose +unspent|1 +(adj)|unexpended|unexhausted +unspoiled|2 +(adj)|good|unspoilt|fresh +(adj)|uncorrupted|incorrupt +unspoilt|1 +(adj)|good|unspoiled|fresh +unspoken|2 +(adj)|mute|tongueless|wordless|inarticulate |unarticulate +(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|implicit |inexplicit +unspoken accusation|1 +(noun)|veiled accusation|implication +unsporting|1 +(adj)|cheating|dirty|foul|unsportsmanlike|unfair |unjust +unsportsmanlike|1 +(adj)|cheating|dirty|foul|unsporting|unfair |unjust +unspotted|1 +(adj)|unsoiled|unstained|clean +unstable|6 +(adj)|unstable |coseismic|coseismal|crank|cranky|tender|tippy|disturbed|unsettled|explosive|volatile|labile|rickety|shaky|wobbly|wonky|rocky|seismic|seismal|thermolabile|top-heavy|tottering|volcanic|impermanent|temporary|inconstant|unsteady +(adj)|reactive +(adj)|precarious|uneasy +(adj)|mentally ill|unsound|insane +(adj)|irresolute +(adj)|fluid|changeable |changeful +unstableness|1 +(noun)|instability|unsteadiness +unstaged|1 +(adj)|unstaged |unperformed +unstained|4 +(adj)|unstained |untreated +(adj)|unvarnished|unpainted +(adj)|unsoiled|unspotted|clean +(adj)|stainless|unsullied|untainted|untarnished|unblemished +unstaple|1 +(verb)|undo +unstarred|1 +(adj)|unasterisked|unmarked +unstartling|1 +(adj)|unsurprising +unstated|1 +(adj)|unexpressed|unsaid|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit |inexplicit +unstatesmanlike|1 +(adj)|unstatesmanlike |unpresidential +unsteadily|1 +(adv)|falteringly|uncertainly +unsteadiness|2 +(noun)|movability|movableness +(noun)|irregularity|unregularity +unsteady|3 +(adj)|unsteady |convulsive|spasmodic|spastic|faltering|flickering|aflicker|fluctuating|lurching|stumbling|staggering|weaving|palpitant|palpitating|palsied|quaking|quivering|shaking|shaky|shivering|trembling|quavering|tremulous|shuddering|tottering|tottery|wobbling|agitated|irregular|uneven|unstable +(adj)|arrhythmic|jerking|jerky|irregular +(adj)|unfirm|unfixed +unsterilised|1 +(adj)|unsterilized|germy +unsterilized|1 +(adj)|unsterilised|germy +unstilted|1 +(adj)|unaffected +unstimulating|1 +(adj)|unstimulating |unexciting|bland|flat|dry|juiceless|vapid|unexciting|uninteresting|unmoving +unstinted|1 +(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unsparing|unstinting|generous +unstinting|1 +(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unsparing|unstinted|generous +unstirred|1 +(adj)|unagitated +unstoppable|1 +(adj)|unstoppable |unbeatable +unstopped|1 +(adj)|unstopped |open +unstoppered|1 +(adj)|open +unstrain|1 +(verb)|relax|unlax|loosen up|unwind|make relaxed|affect +unstrained|3 +(adj)|relaxed |at ease +(adj)|unprocessed +(adj)|unforced|effortless +unstrap|1 +(verb)|undo +unstratified|1 +(adj)|unstratified +unstratified language|1 +(noun)|programming language|programing language +unstressed|1 +(adj)|unstressed |unaccented|feminine|short|unemphatic|unaccented|light|weak +unstring|1 +(verb)|remove|take|take away|withdraw +unstructured|2 +(adj)|unstructured |ambiguous|unregulated|unorganized|unorganised +(adj)|amorphous|inorganic +unstrung|1 +(adj)|discomposed +unstuck|2 +(adj)|unstuck +(adj)|undone|disorganized |disorganised +unstudied|2 +(adj)|unstudied |uncontrived|candid|unaffected +(adj)|uneducated +unstudious|1 +(adj)|unscholarly +unstuff|1 +(verb)|loosen up|free|disengage +unstylish|2 +(adj)|styleless |dowdy +(adj)|unfashionable |antique|demode|ex|old-fashioned|old-hat|outmoded|passe|passee|dated|dowdy|frumpy|frumpish|fogyish|moss-grown|mossy|stick-in-the-mud|stodgy|out|prehistoric|old +unsuasible|1 +(adj)|unpersuadable|unsusceptible |insusceptible +unsubdivided|1 +(adj)|simple |acerate|acerose|acicular|needle-shaped|acuminate|apiculate|caudate|cordate|heart-shaped|cordiform|cuneate|wedge-shaped|deltoid|dolabriform|dolabrate|elliptic|ensiform|sword-shaped|swordlike|bladelike|hastate|spearhead-shaped|lanceolate|lancelike|linear|elongate|lyrate|obtuse|oblanceolate|oblong|obovate|orbiculate|orbicular|ovate|pandurate|panduriform|fiddle-shaped|peltate|shield-shaped|perfoliate|reniform|kidney-shaped|sagittate|sagittiform|arrow-shaped|spatulate|spatula-shaped|unlobed|simple|smooth +unsubduable|1 +(adj)|indomitable|never-say-die|unconquerable +unsubmissive|1 +(adj)|unservile +unsubstantial|1 +(adj)|insubstantial |unreal|aeriform|aerial|airy|aery|ethereal|paper|shadowy|wraithlike|immaterial|nonmaterial +unsubstantialise|1 +(verb)|immaterialize|immaterialise|unsubstantialize|change|alter|modify +unsubstantialize|1 +(verb)|immaterialize|immaterialise|unsubstantialise|change|alter|modify +unsubstantiated|1 +(adj)|uncorroborated|unsupported +unsubtle|1 +(adj)|broad|clear +unsuccessful|2 +(adj)|unsuccessful |attempted|defeated|disappointed|discomfited|foiled|frustrated|thwarted|done for|ruined|sunk|undone|washed-up|down-and-out|empty-handed|unrewarded|failed|failing|hitless|no-win|scoreless|goalless|hitless|self-defeating|unfulfilled|unrealized|unrealised|unplaced|winless|out|defeated|unfortunate|unprofitable +(adj)|abortive|stillborn|unfruitful +unsuccessful person|1 +(noun)|failure|loser|nonstarter|unfortunate|unfortunate person +unsufferable|1 +(adj)|impossible|insufferable|unacceptable|intolerable +unsugared|1 +(adj)|sugarless |nonsweet +unsuitability|1 +(noun)|unsuitableness|ineptness|quality +unsuitable|5 +(adj)|unfit +(adj)|inapplicable|irrelevant +(adj)|bad +(adj)|undesirable|ineligible +(adj)|improper|wrong|inappropriate +unsuitableness|1 +(noun)|unsuitability|ineptness|quality +unsuitably|1 +(adv)|inappropriately|not suitably +unsuited|1 +(adj)|ill-sorted|incompatible|mismated|mismatched +unsullied|2 +(adj)|clean +(adj)|stainless|unstained|untainted|untarnished|unblemished +unsung|3 +(adj)|unvoiced |voiceless +(adj)|obscure|unknown|inglorious |dishonorable +(adj)|unappreciated|unvalued|unacknowledged +unsupervised|1 +(adj)|unsupervised |unattended +unsupplied with|1 +(adj)|unfurnished with|unprovided with|unfurnished |unequipped +unsupportable|1 +(adj)|intolerable +unsupported|3 +(adj)|unsupported |baseless|groundless|idle|unfounded|unwarranted|single-handed|unassisted|unbacked|uncorroborated|unsubstantiated +(adj)|unsupported |strapless|unbraced +(adj)|undocumented +unsupportive|1 +(adj)|unsupportive |confounding|contradictory|disconfirming|invalidating|negative +unsuppressed|1 +(adj)|uninhibited +unsure|3 +(adj)|uncertain |incertain|ambivalent|doubtful|dubious|groping|hesitant +(adj)|uncertain|insecure |unsafe +(adj)|diffident|shy|timid|unconfident +unsurmountable|2 +(adj)|insurmountable |insuperable|unconquerable|impossible|unconquerable +(adj)|unclimbable|impassable |unpassable +unsurpassable|1 +(adj)|best +unsurpassed|1 +(adj)|unexcelled|unexceeded|best +unsurprised|1 +(adj)|unsurprised |not surprised +unsurprising|1 +(adj)|unsurprising |expected|unstartling|expected +unsusceptibility|1 +(noun)|immunity|condition|status +unsusceptible|1 +(adj)|unsusceptible |insusceptible|immune|resistant|immunized|immunised|vaccinated|incapable|unpersuadable|unsuasible|unresponsive|insensitive +unsuspected|1 +(adj)|unsuspected |unexpected|unknown +unsuspecting|2 +(adj)|unsuspicious|trustful |trusting +(adj)|unaware +unsuspicious|1 +(adj)|unsuspecting|trustful |trusting +unswayed|1 +(adj)|uninfluenced|untouched|unaffected +unsweet|2 +(adj)|sec|dry +(adj)|disagreeable +unsweetened|1 +(adj)|sugarless |nonsweet +unswept|2 +(adj)|unswept +(adj)|dirty |soiled|unclean +unswerving|2 +(adj)|undeviating|direct +(adj)|steadfast|staunch|constant +unsworn|1 +(adj)|unsworn +unsyllabic|1 +(adj)|nonsyllabic |unsyllabled +unsyllabled|1 +(adj)|nonsyllabic |unsyllabic +unsymbolic|1 +(adj)|nonrepresentative +unsymmetric|1 +(adj)|unsymmetrical|asymmetrical |asymmetric +unsymmetrical|2 +(adj)|unsymmetric|asymmetrical |asymmetric +(adj)|anisometric|unequal +unsymmetrically|1 +(adv)|asymmetrically +unsympathetic|5 +(adj)|unsympathetic |unsympathizing|unsympathising|uncompassionate|uncongenial|incompatible|unresponsive +(adj)|unsympathetic |unappealing|unlikeable|unlikable +(adj)|closed|unreceptive +(adj)|unkindly|unkind +(adj)|disagreeable|uncongenial |incompatible +unsympathetically|1 +(adv)|without sympathy +unsympathising|1 +(adj)|unsympathizing|unsympathetic +unsympathizing|1 +(adj)|unsympathising|unsympathetic +unsynchronised|1 +(adj)|nonsynchronous|unsynchronized|unsynchronous|asynchronous +unsynchronized|1 +(adj)|nonsynchronous|unsynchronised|unsynchronous|asynchronous +unsynchronous|1 +(adj)|nonsynchronous|unsynchronized|unsynchronised|asynchronous +unsystematic|1 +(adj)|unsystematic |unsystematized|unsystematised|disorganized|disorganised|irregular +unsystematised|1 +(adj)|unsystematized|unsystematic +unsystematized|1 +(adj)|unsystematised|unsystematic +untactful|1 +(adj)|tactless |inconsiderate|inelegant +untagged|1 +(adj)|unlabeled |unlabelled +untainted|1 +(adj)|stainless|unstained|unsullied|untarnished|unblemished +untalkative|1 +(adj)|reticent|taciturn +untamed|1 +(adj)|wild |feral|ferine|savage|unbroken|undomesticated|intractable +untangle|2 +(verb)|extricate|disentangle|disencumber|free|disengage +(verb)|unravel|unknot|unscramble|unpick|undo +untangled|1 +(adj)|untangled |disentangled|loosened|unsnarled +untangling|1 +(noun)|unsnarling|disentanglement|extrication|liberation|release|freeing +untanned|1 +(adj)|untanned +untaped|1 +(adj)|unfilmed|live |unrecorded +untapped|2 +(adj)|untapped +(adj)|unexploited |undeveloped +untarnished|1 +(adj)|stainless|unstained|unsullied|untainted|unblemished +untasted|1 +(adj)|untouched|full +untaught|1 +(adj)|unschooled|untutored|uneducated +untaxed|1 +(adj)|tax-exempt|tax-free|nontaxable |exempt +unteach|2 +(verb)|teach|learn|instruct +(verb)|teach|learn|instruct +untechnical|1 +(adj)|nontechnical +untellable|1 +(adj)|indefinable|indescribable|ineffable|unspeakable|unutterable|inexpressible |unexpressible +untempered|3 +(adj)|untempered |unhardened|brittle|unannealed +(adj)|untempered |unmoderated +(adj)|uncontrolled|unrestrained|intemperate +untempting|2 +(adj)|uninviting|unseductive +(adj)|unattractive|uninviting +untenable|1 +(adj)|indefensible|unreasonable +untenanted|1 +(adj)|unoccupied|uninhabited +untended|1 +(adj)|uncared-for +untermeyer|1 +(noun)|Untermeyer|Louis Untermeyer|writer|author +untested|2 +(adj)|unseasoned|untried|inexperienced +(adj)|untried|new +untethered|1 +(adj)|unbound +unthankful|1 +(adj)|ungrateful |thankless|unappreciative +unthaw|1 +(verb)|dissolve|thaw|unfreeze|dethaw|melt|liquefy|flux|liquify +unthawed|1 +(adj)|frozen +untheatrical|1 +(adj)|untheatrical +unthematic|1 +(adj)|unthematic |message|content|subject matter|substance +unthinkable|1 +(adj)|unthinkable |impossible|inconceivable|out of the question|unimaginable|impossible|incredible|unbelievable +unthinkably|1 +(adv)|unimaginably +unthinking|4 +(adj)|unreflective|unthoughtful|thoughtless +(adj)|thoughtless|uncaring|inconsiderate +(adj)|lumpish|lumpen|stupid +(adv)|thoughtlessly|unthinkingly +unthinkingly|1 +(adv)|thoughtlessly|unthinking +unthought|1 +(adj)|unhoped|unhoped-for|unthought-of|unexpected +unthought-of|1 +(adj)|unhoped|unhoped-for|unthought|unexpected +unthoughtful|1 +(adj)|unreflective|unthinking|thoughtless +unthoughtfulness|1 +(noun)|thoughtlessness|trait +unthreatening|1 +(adj)|well-meaning|amicable +untidily|1 +(adv)|messily +untidiness|2 +(noun)|disorderliness|disorder +(noun)|messiness|uncleanliness +untidy|2 +(adj)|untidy |blowsy|blowzy|slatternly|sluttish|cluttered|littered|disheveled|dishevelled|frowzled|rumpled|tousled|disorderly|higgledy-piggledy|hugger-mugger|jumbled|topsy-turvy|messy|mussy|scraggly|sloppy|slouchy|sprawling|straggling|straggly|unkempt|frowsy|frowzy|slovenly|dirty|soiled|unclean|unfastidious|ungroomed +(adj)|unfastidious +untie|2 +(verb)|unbrace|unlace|undo +(verb)|undo|loosen|change|alter|modify +untied|3 +(adj)|untied |unfastened +(adj)|unlaced +(adj)|unchained|unfettered|unshackled|unbound +untier|1 +(noun)|undoer|opener|unfastener|person|individual|someone|somebody|mortal|human|soul +until now|1 +(adv)|so far|thus far|up to now|hitherto|heretofore|as yet|yet|til now +untilled|1 +(adj)|unplowed |unploughed|unbroken +untimbered|2 +(adj)|untimbered +(adj)|unwooded |treeless +untimeliness|2 +(noun)|unseasonableness|timing +(noun)|inopportuneness|inconvenience +untimely|3 +(adj)|ill-timed|ill timed|unseasonable|wrong|inopportune +(adj)|premature|early +(adv)|prematurely +untipped|1 +(adj)|untipped +untired|1 +(adj)|unwearied|unweary|rested +untiring|1 +(adj)|hardworking|industrious|tireless|diligent +untitled|2 +(adj)|untitled +(adj)|ignoble|ungentle|lowborn +untoasted|1 +(adj)|raw +untold|1 +(adj)|much +untoothed|1 +(adj)|unnotched|smooth +untouchable|6 +(adj)|invulnerable +(adj)|unassailable|inviolable +(adj)|impermissible +(adj)|unclean |impure +(adj)|inaccessible|unobtainable|unprocurable|unavailable +(noun)|Harijan|outcast|castaway|pariah|Ishmael +untouched|4 +(adj)|untasted|full +(adj)|uninfluenced|unswayed|unaffected +(adj)|untouched +(adj)|unaffected|unmoved +untoughened|1 +(adj)|tender |delicate|soft|weak +untoward|2 +(adj)|indecent|indecorous|unbecoming|uncomely|unseemly|improper +(adj)|adverse|harmful|inauspicious|unfavorable |unfavourable +untraceable|1 +(adj)|untraceable +untracked|1 +(adj)|pathless|roadless|trackless|untrod|untrodden|inaccessible |unaccessible +untraditional|1 +(adj)|nontraditional +untrained|1 +(adj)|untrained |undisciplined|primitive +untrammeled|1 +(adj)|untrammelled|unlimited |limitless +untrammelled|1 +(adj)|untrammeled|unlimited |limitless +untransferable|1 +(adj)|nontransferable|unassignable|inalienable |unalienable +untranslatable|1 +(adj)|untranslatable +untransmutable|1 +(adj)|inconvertible|incommutable +untraveled|1 +(adj)|untraveled |untravelled|untraversed +untravelled|1 +(adj)|untraveled |untraversed +untraversable|1 +(adj)|impassable |unpassable +untraversed|1 +(adj)|untraveled |untravelled +untreated|3 +(adj)|untreated +(adj)|untreated |raw|unprocessed +(adj)|unstained +untried|2 +(adj)|unseasoned|untested|inexperienced +(adj)|untested|new +untrimmed|1 +(adj)|untrimmed |uncut|unclipped +untrod|1 +(adj)|pathless|roadless|trackless|untracked|untrodden|inaccessible |unaccessible +untrodden|1 +(adj)|pathless|roadless|trackless|untracked|untrod|inaccessible |unaccessible +untroubled|3 +(adj)|untroubled |carefree|unworried|dreamless|trouble-free|undisturbed|unmolested|clear|unconcerned|quiet|unconcerned +(adj)|secure |unafraid +(adj)|quiet +untrue|4 +(adj)|wrong|false +(adj)|unfaithful +(adj)|out of true|uneven +(adj)|false|inconstant +untrustiness|1 +(noun)|untrustworthiness|trait +untrusting|1 +(adj)|leery|mistrustful|suspicious|wary|distrustful +untrustworthiness|1 +(noun)|untrustiness|trait +untrustworthy|1 +(adj)|untrustworthy |untrusty|devious|shifty|fly-by-night|shady|slippery|tricky|teflon|undependable|unreliable|dishonest|dishonorable|unfaithful|unreliable|undependable +untrusty|1 +(adj)|untrustworthy |devious|shifty|fly-by-night|shady|slippery|tricky|teflon|undependable|unreliable|dishonest|dishonorable|unfaithful|unreliable|undependable +untruth|1 +(noun)|falsehood|falsity|false statement|statement +untruthful|1 +(adj)|untruthful |dishonest|lying|mendacious +untruthfully|1 +(adv)|mendaciously +untruthfulness|1 +(noun)|dishonesty +untucked|1 +(adj)|untucked +untufted|1 +(adj)|unadorned |undecorated +untune|2 +(verb)|upset|discompose|disconcert|discomfit|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|change|alter|modify +untuneful|1 +(adj)|tuneless |unmelodious +unturned|1 +(adj)|unturned |right-side-out|right-side-up +untutored|1 +(adj)|unschooled|untaught|uneducated +untwine|1 +(verb)|straighten|straighten out +untwist|1 +(verb)|straighten|straighten out +untwisted|1 +(adj)|straight +untying|1 +(noun)|undoing|unfastening|loosening|laxation +untypical|1 +(adj)|atypical |unrepresentative|abnormal|uncharacteristic|uncharacteristic of +untypicality|1 +(noun)|atypicality|abnormality|abnormalcy|abnormal condition +untypically|1 +(adv)|atypically +ununderstandably|1 +(adv)|unintelligibly +ununderstood|1 +(adj)|ununderstood |misunderstood|uncomprehended|undigested|ungrasped +unusable|2 +(adj)|unserviceable|unuseable|useless +(adj)|inoperable|unserviceable +unuseable|1 +(adj)|unserviceable|unusable|useless +unused|3 +(adj)|fresh|clean +(adj)|new +(adj)|idle|inactive +unused to|1 +(adj)|unaccustomed +unusefulness|1 +(noun)|inutility|uselessness|quality +unusual|3 +(adj)|unusual |different|extraordinary|odd|out-of-the-way|peculiar|unaccustomed|unique|uncommon +(adj)|strange |antic|fantastic|fantastical|grotesque|crazy|curious|funny|odd|peculiar|queer|rum|rummy|singular|eerie|eery|exotic|freaky|gothic|oddish|other|quaint|quaint|weird +(adj)|uncommon +unusual person|1 +(noun)|anomaly|person|individual|someone|somebody|mortal|human|soul +unusually|1 +(adv)|remarkably|outstandingly|unco +unusualness|1 +(noun)|uncommonness +unutterable|3 +(adj)|ineffable|unnameable|unspeakable|sacred +(adj)|indefinable|indescribable|ineffable|unspeakable|untellable|inexpressible |unexpressible +(adj)|unpronounceable|uncommunicative |incommunicative +unutterably|1 +(adv)|ineffably|indescribably|unspeakably +unuttered|1 +(adj)|unexpressed|unsaid|unstated|unverbalized|unverbalised|unvoiced|unspoken|implicit |inexplicit +unvaccinated|1 +(adj)|susceptible +unvalued|1 +(adj)|unappreciated|unsung|unacknowledged +unvaned|1 +(adj)|unfledged|fledgeless|unfeathered |featherless +unvanquishable|1 +(adj)|invincible|unbeatable|unconquerable +unvanquished|1 +(adj)|unbeaten|unconquered|undefeated +unvaried|2 +(adj)|unvaried |unvarying|iterative|reiterative|repetitious|repetitive|same +(adj)|undiversified |general|monolithic|solid|unanimous|undistributed|homogeneous|homogenous +unvariedness|1 +(noun)|invariability|invariableness|invariance +unvarnished|2 +(adj)|unstained|unpainted +(adj)|plain|direct +unvarying|3 +(adj)|changeless|constant|invariant|steady|invariable +(adj)|unvaried |iterative|reiterative|repetitious|repetitive|same +(adj)|uniform |single +unveil|3 +(verb)|uncover|expose +(verb)|uncover|bring out|reveal|show +(verb)|remove|take|take away|withdraw +unveiled|1 +(adj)|unveiled |disclosed|undraped +unveiling|2 +(noun)|presentation +(noun)|introduction|debut|first appearance|launching|entry|beginning|start|commencement +unvendible|1 +(adj)|unmarketable|unmerchantable|unsalable |unsaleable +unvented|1 +(adj)|unventilated +unventilated|1 +(adj)|unventilated |airless|close|stuffy|unaired|fuggy|unaerated|unoxygenated|unvented|breathless|dyspneic|dyspnoeic|dyspneal|dyspnoeal +unverbalised|1 +(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unvoiced|unspoken|implicit |inexplicit +unverbalized|1 +(adj)|unexpressed|unsaid|unstated|unuttered|unverbalised|unvoiced|unspoken|implicit |inexplicit +unverifiable|1 +(adj)|unobjective|subjective +unverified|1 +(adj)|unproved |unproven +unversed|1 +(adj)|unversed |ignorant +unvigilant|1 +(adj)|inattentive|unobservant|unwatchful|unalert +unvindictive|1 +(adj)|forgiving +unvitrified|1 +(adj)|unglazed +unvoiced|3 +(adj)|surd |voiceless +(adj)|unvoiced |voiceless|whispered|unsung +(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unspoken|implicit |inexplicit +unvoluntary|1 +(adj)|involuntary |nonvoluntary|driven|goaded|forced|unconscious|unwilled|unwilling|unconscious|unwilling +unvulcanised|1 +(adj)|unvulcanized|unprocessed +unvulcanized|1 +(adj)|unvulcanised|unprocessed +unwanted|3 +(adj)|unwanted |abdicable|cast-off|discarded|throwaway|thrown-away|friendless|outcast|outcaste|casteless|uncalled-for|unclaimed|undesired|unsought|unwelcome|unwished|unwished-for|undesirable|unloved|unwelcome +(adj)|unasked|uninvited|unwelcome +(adj)|undesirable +unwantedly|1 +(adv)|uninvitedly +unwariness|1 +(noun)|incaution|incautiousness +unwarmed|1 +(adj)|unheated|cold +unwarrantable|1 +(adj)|indefensible|insupportable|unjustifiable|unwarranted|inexcusable +unwarranted|3 +(adj)|indefensible|insupportable|unjustifiable|unwarrantable|inexcusable +(adj)|baseless|groundless|idle|unfounded|unsupported +(adj)|undue|unjustified|unreasonable +unwary|1 +(adj)|unwary |gullible|incautious|unguarded +unwashed|2 +(adj)|common|plebeian|vulgar|lowborn +(adj)|dirty |soiled|unclean +unwatchful|1 +(adj)|inattentive|unobservant|unvigilant|unalert +unwavering|2 +(adj)|firm|steadfast|steady|unbendable|unfaltering|unshakable|resolute +(adj)|level|steady +unwaveringly|1 +(adv)|firm|firmly|steadfastly +unwaxed|1 +(adj)|unwaxed +unweaned|1 +(adj)|unweaned +unwearable|1 +(adj)|unwearable |unbecoming +unwearied|1 +(adj)|untired|unweary|rested +unweary|1 +(adj)|untired|unwearied|rested +unwearying|1 +(adj)|indefatigable|tireless|unflagging|energetic +unweathered|1 +(adj)|uneroded|unworn +unweave|1 +(verb)|straighten|straighten out +unwebbed|1 +(adj)|unwebbed +unwed|1 +(adj)|unwedded|unmarried |single +unwedded|1 +(adj)|unwed|unmarried |single +unwelcome|2 +(adj)|unwelcome |unasked|uninvited|unwanted|unacceptable|uninvited|unwanted +(adj)|unwished|unwished-for|unwanted +unwelcome guest|1 +(noun)|gatecrasher|crasher|intruder|interloper|trespasser +unwelcome person|1 +(noun)|persona non grata|person|individual|someone|somebody|mortal|human|soul +unwell|2 +(adj)|menstruating|ill |sick +(adj)|ailing|indisposed|peaked|poorly|sickly|under the weather|ill |sick +unwellness|1 +(noun)|illness|malady|sickness|ill health|unhealthiness|health problem +unwholesome|1 +(adj)|unwholesome |insalubrious|unhealthful|unhealthy|insubstantial|jejune|morbid|nauseating|nauseous|noisome|loathsome|offensive|sickening|vile|harmful|noxious|harmful|unhealthful|unhealthy|unsound +unwholesomeness|1 +(noun)|morbidness|morbidity|quality +unwieldiness|1 +(noun)|awkwardness|cumbersomeness|troublesomeness|inconvenience|worriment +unwieldy|2 +(adj)|unwieldy |unmanageable|awkward|bunglesome|clumsy|ungainly|cumbersome|cumbrous +(adj)|gawky|clumsy|clunky|ungainly|awkward +unwilled|2 +(adj)|unintentional|unwilling +(adj)|involuntary |nonvoluntary|unvoluntary +unwilling|2 +(adj)|unwilling |grudging|loath|loth|reluctant|unintentional|unwilled|defiant|noncompliant|disinclined|involuntary|nonvoluntary|unvoluntary +(adj)|involuntary |nonvoluntary|unvoluntary +unwillingness|1 +(noun)|disposition|temperament +unwind|4 +(verb)|wind off|unroll|move|displace +(verb)|disentangle|undo +(verb)|relax|loosen up|unbend|decompress|slow down|change state|turn +(verb)|relax|unstrain|unlax|loosen up|make relaxed|affect +unwinding|1 +(adj)|unreeling|moving +unwire|1 +(verb)|undo +unwise|2 +(adj)|foolish +(adj)|inexpedient|impolitic +unwisely|1 +(adv)|foolishly +unwiseness|1 +(noun)|folly|foolishness|trait +unwished|1 +(adj)|unwelcome|unwished-for|unwanted +unwished-for|1 +(adj)|unwelcome|unwished|unwanted +unwitting|3 +(adj)|unintentional|unplanned|unintended +(adj)|unwitting |unaware +(adj)|ignorant|unknowledgeable|unknowing|uninformed +unwittingly|1 +(adv)|inadvertently|unknowingly +unwomanly|1 +(adj)|unwomanly |hoydenish|tomboyish|mannish|unfeminine +unwonted|1 +(adj)|uncommon +unwooded|1 +(adj)|unwooded |treeless|unforested|untimbered|cleared +unworkable|1 +(adj)|impracticable|infeasible|unfeasible|impossible +unworkmanlike|1 +(adj)|incompetent +unworldly|2 +(adj)|unworldly |anchoritic|eremitic|eremitical|hermitic|hermitical|cloistered|cloistral|conventual|monastic|monastical|spiritual|unearthly|unmercenary|naive|naif|pious +(adj)|unsophisticated|naive |naif +unworn|1 +(adj)|unworn |new|uneroded|unweathered|new +unworried|1 +(adj)|carefree|untroubled +unworthiness|1 +(noun)|bad|badness +unworthy|2 +(adj)|unworthy |undeserving|undeserving of|unworthy of|unmerited|unmeritorious|contemptible|dishonorable|dishonourable|unrighteous|worthless +(adj)|despicable|ugly|vile|evil |wicked +unworthy of|1 +(adj)|undeserving|undeserving of|unworthy +unwound|1 +(adj)|uncoiled |straight +unwounded|1 +(adj)|uninjured +unwoven|1 +(adj)|unwoven |felted|knitted +unwrap|1 +(verb)|undo|uncover|expose +unwrapped|1 +(adj)|unwrapped +unwrinkled|2 +(adj)|unwrinkled |wrinkleless +(adj)|smooth|unfurrowed +unwritten|3 +(adj)|unwritten |common-law +(adj)|oral|spoken +(adj)|ad-lib|spontaneous|unscripted +unwritten law|1 +(noun)|practice|pattern +unyielding|3 +(adj)|bulldog|dogged|dour|pertinacious|tenacious|stubborn +(adj)|uncompromising |inflexible +(adj)|flinty|granitic|inflexible +unyieldingness|1 +(noun)|adamance|obduracy|resoluteness|firmness|resolve|resolution +unyoke|1 +(verb)|unhitch +unzip|1 +(verb)|unfasten +up|11 +(adj)|up |ahead|in the lead|leading|aweigh|dormie|dormy|heavenward|skyward|risen|sprouted|upbound|upward|upfield|ascending|high +(adj)|improving|rising +(adj)|upward|ascending +(adj)|prepared +(adj)|raised +(adj)|functioning +(adj)|finished +(adj)|astir|awake +(verb)|increase +(adv)|upwards|upward|upwardly +(adv)|upwards|upward +up-and-coming|1 +(adj)|energetic|gumptious|industrious|enterprising +up-bow|1 +(noun)|bow +up-tick|2 +(noun)|increase|increment +(noun)|uptick|transaction|dealing|dealings +up-to-date|2 +(adj)|current +(adj)|latest|last|newest|cutting-edge|with-it|fashionable |stylish +up-to-dateness|1 +(noun)|currentness|currency|presentness|nowness +up-to-the-minute|1 +(adj)|latest|current +up here|1 +(adv)|over here +up in the air|2 +(adj)|uncertain +(adj)|uncertain +up on|1 +(adj)|abreast of|au courant|au fait|informed +up quark|1 +(noun)|quark +up the stairs|1 +(adv)|upstairs|on a higher floor +up to|2 +(adj)|busy +(adj)|adequate to|capable|equal to|adequate +up to her neck|1 +(adj)|neck-deep|up to my neck|up to your neck|up to his neck|up to our necks|up to their necks|involved +up to his neck|1 +(adj)|neck-deep|up to my neck|up to your neck|up to her neck|up to our necks|up to their necks|involved +up to my neck|1 +(adj)|neck-deep|up to your neck|up to her neck|up to his neck|up to our necks|up to their necks|involved +up to now|2 +(adv)|so far|thus far|hitherto|heretofore|as yet|yet|til now|until now +(adv)|to date +up to our necks|1 +(adj)|neck-deep|up to my neck|up to your neck|up to her neck|up to his neck|up to their necks|involved +up to their necks|1 +(adj)|neck-deep|up to my neck|up to your neck|up to her neck|up to his neck|up to our necks|involved +up to your neck|1 +(adj)|neck-deep|up to my neck|up to her neck|up to his neck|up to our necks|up to their necks|involved +upanishad|1 +(noun)|Upanishad|sacred text|sacred writing|religious writing|religious text +upbeat|3 +(adj)|cheerful|pollyannaish|optimistic +(noun)|wellbeing|well-being|welfare|eudaemonia|eudaimonia|prosperity|successfulness +(noun)|rhythm|beat|musical rhythm +upbound|1 +(adj)|up +upbraid|1 +(verb)|reproach|accuse|impeach|incriminate|criminate +upbraider|1 +(noun)|reprover|reproacher|rebuker|authority +upbraiding|1 +(noun)|castigation|earful|bawling out|chewing out|going-over|dressing down|rebuke|reproof|reproval|reprehension|reprimand +upbringing|2 +(noun)|inheritance|heritage +(noun)|breeding|bringing up|fostering|fosterage|nurture|raising|rearing|socialization|socialisation|acculturation|enculturation +upcast|1 +(noun)|air passage|air duct|airway +upchuck|1 +(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +upcoming|1 +(adj)|approaching|coming|forthcoming|future +upcountry|1 +(adj)|interior|midland|inland +upcurved|1 +(adj)|curved |curving +update|4 +(noun)|news|intelligence|tidings|word +(verb)|modify +(verb)|inform +(verb)|modify +updating|1 +(noun)|change +updike|1 +(noun)|Updike|John Updike|John Hoyer Updike|writer|author +updraft|1 +(noun)|draft|draught +upend|2 +(verb)|overturn|turn over|tip over|tump over +(verb)|put|set|place|pose|position|lay +upended|1 +(adj)|vertical |perpendicular +upending|1 +(noun)|inversion|motion|movement|move|motility +upfield|1 +(adj)|up +upfront|1 +(adj)|direct +upgrade|11 +(noun)|ascent|acclivity|rise|raise|climb|slope|incline|side +(noun)|software|software system|software package|package +(noun)|reservation +(noun)|rise|rising slope|grade +(noun)|hardware|computer hardware +(noun)|improvement +(verb)|rate|rank|range|order|grade|place +(verb)|better|improve|amend|ameliorate|meliorate +(verb)|promote|advance|kick upstairs|raise|elevate|delegate|designate|depute|assign +(verb)|better|improve|ameliorate|meliorate +(verb)|better|improve|amend|ameliorate|meliorate +upheaval|4 +(noun)|turbulence|Sturm und Drang|disorder +(noun)|convulsion|turmoil|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|uplift|upthrow|upthrust|rise|rising|ascent|ascension +(noun)|agitation|excitement|turmoil|hullabaloo|disturbance +upheave|1 +(verb)|heave|heave up|heft|heft up +uphill|3 +(adj)|acclivitous|rising|ascending +(adj)|stiff|hard +(noun)|ascent|acclivity|rise|raise|climb|upgrade +uphold|3 +(verb)|continue|carry on|bear on|preserve|keep|maintain|hold +(verb)|defend|support|fend for +(verb)|maintain|confirm|reassert +upholder|1 +(noun)|maintainer|sustainer|supporter|protagonist|champion|admirer|booster|friend +upholster|1 +(verb)|supply|provide|render|furnish +upholsterer|1 +(noun)|craftsman|artisan|journeyman|artificer +upholstery|2 +(noun)|covering +(noun)|trade|craft +upholstery material|1 +(noun)|fabric|cloth|material|textile +upholstery needle|1 +(noun)|sewing needle +upjohn|1 +(noun)|Upjohn|Richard Upjohn|architect|designer +upkeep|2 +(noun)|care|maintenance|repair|fix|fixing|fixture|mend|mending|reparation +(noun)|sustenance|sustentation|sustainment|maintenance|support +upland|2 +(adj)|upland |alpestrine|subalpine|alpine|mountain|mountainous +(noun)|highland|natural elevation|elevation +upland cotton|1 +(noun)|Gossypium hirsutum|cotton|cotton plant +upland plover|1 +(noun)|upland sandpiper|Bartramian sandpiper|Bartramia longicauda|sandpiper +upland sandpiper|1 +(noun)|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper +upland white aster|1 +(noun)|Aster ptarmicoides|aster +uplift|5 +(noun)|upheaval|upthrow|upthrust|rise|rising|ascent|ascension +(noun)|brassiere|bra|bandeau +(verb)|elate|lift up|pick up|intoxicate|stimulate|shake|shake up|excite|stir +(verb)|rise|lift|arise|move up|go up|come up|uprise +(verb)|push up +uplifted|1 +(adj)|elated +uplifting|1 +(noun)|rise|rising|ascent|ascension +uplink|1 +(noun)|transmission +upload|1 +(verb)|transfer +upmarket|1 +(adj)|upmarket |upscale +upmost|1 +(adj)|topmost|uppermost|top +upon one's guard|1 +(adj)|on guard|on one's guard|on your guard|wary +upper|6 +(adj)|high +(adj)|top +(adj)|superior +(noun)|upper berth|berth|bunk|built in bed +(noun)|piece of leather +(noun)|amphetamine|pep pill|speed|stimulant|stimulant drug|drug of abuse|street drug +upper-case letter|1 +(noun)|capital|capital letter|upper case|majuscule|character|grapheme|graphic symbol +upper-class|1 +(adj)|upper-class |quality|propertied|property-owning|u|wellborn +upper-level|1 +(adj)|high-level|high-ranking|superior +upper-lower-class|1 +(adj)|lower-class |low-class +upper-middle-class|1 +(adj)|middle-class +upper-normandy|1 +(noun)|Haute-Normandie|Upper-Normandy|French region +upper avon|1 +(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river +upper avon river|1 +(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river +upper balcony|1 +(noun)|second balcony|family circle|peanut gallery|area +upper berth|1 +(noun)|upper|berth|bunk|built in bed +upper bound|1 +(noun)|boundary|edge|bound +upper cannon|1 +(noun)|rerebrace|cannon +upper carboniferous|1 +(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period|geological period +upper carboniferous period|1 +(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period|geological period +upper case|1 +(noun)|capital|capital letter|upper-case letter|majuscule|character|grapheme|graphic symbol +upper class|1 +(noun)|upper crust|class|social class|socio-economic class +upper crust|1 +(noun)|upper class|class|social class|socio-economic class +upper deck|1 +(noun)|deck +upper egypt|1 +(noun)|Upper Egypt|administrative district|administrative division|territorial division +upper hand|1 +(noun)|whip hand|superiority|favorable position|favourable position +upper jaw|1 +(noun)|upper jawbone|maxilla|jaw +upper jawbone|1 +(noun)|upper jaw|maxilla|jaw +upper limit|2 +(noun)|maximum|extremum|peak|large indefinite quantity|large indefinite amount +(noun)|limit|demarcation|demarcation line +upper mantle|1 +(noun)|layer +upper paleolithic|1 +(noun)|Upper Paleolithic|time period|period of time|period +upper peninsula|1 +(noun)|Upper Peninsula|peninsula +upper respiratory infection|1 +(noun)|respiratory tract infection|respiratory infection +upper respiratory tract|1 +(noun)|respiratory tract +upper side|1 +(noun)|top|top side|upside|side|face +upper surface|1 +(noun)|side +upper volta|1 +(noun)|Burkina Faso|Upper Volta|country|state|land +uppercase|1 +(adj)|uppercase |capital|great|majuscule|majuscule +uppercut|1 +(noun)|blow +uppermost|1 +(adj)|topmost|upmost|top +uppish|1 +(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|proud +uppishly|1 +(adv)|snobbishly|snootily +uppishness|1 +(noun)|uppityness|presumption|presumptuousness|effrontery|assumption +uppity|1 +(adj)|overweening|immodest +uppityness|1 +(noun)|uppishness|presumption|presumptuousness|effrontery|assumption +uppp|1 +(noun)|palatopharyngoplasty|PPP|uvulopalatopharyngoplasty|UPPP|operation|surgery|surgical operation|surgical procedure|surgical process +uppsala|1 +(noun)|Uppsala|Upsala|city|metropolis|urban center +upraise|1 +(verb)|resurrect|raise|resuscitate|revive +upraised|1 +(adj)|lifted|raised +upright|7 +(adj)|unsloped|vertical |perpendicular +(adj)|good|just|virtuous|righteous +(adj)|straight|unbent|unbowed|erect |vertical +(adj)|standing +(adj)|erect |vertical|erectile|fastigiate|orthostatic|passant|rampant|rearing|standing|stand-up|statant|straight|unbent|unbowed|straight-backed +(noun)|vertical|structural member +(noun)|upright piano|piano|pianoforte|forte-piano +upright piano|1 +(noun)|upright|piano|pianoforte|forte-piano +uprightly|1 +(adv)|honorably +uprightness|3 +(noun)|erectness|stance +(noun)|verticality|verticalness|erectness|position|spatial relation +(noun)|rectitude|righteousness +uprise|8 +(verb)|originate|arise|rise|develop|spring up|grow|become +(verb)|ascend|go up +(verb)|bristle|stand up +(verb)|arise|rise|get up|stand up|change posture +(verb)|rise|come up|ascend|rise|lift|arise|move up|go up|come up +(verb)|rise|lift|arise|move up|go up|come up|travel|go|move|locomote +(verb)|resurrect|rise|return|go back|get back|come back +(verb)|get up|turn out|arise|rise +uprising|1 +(noun)|rebellion|insurrection|revolt|rising|conflict|struggle|battle +upriver|1 +(adv)|upstream +uproar|2 +(noun)|tumult|tumultuousness|garboil|disturbance|disruption|commotion|stir|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle +(noun)|hubbub|brouhaha|katzenjammer|noise +uproarious|2 +(adj)|rackety|rip-roaring|noisy +(adj)|hilarious|screaming|humorous |humourous +uproariously|1 +(adv)|hilariously +uproot|3 +(verb)|displace|deracinate|place +(verb)|eradicate|extirpate|exterminate|destroy|destruct +(verb)|extirpate|deracinate|root out|move|displace +uprooter|1 +(noun)|destroyer|ruiner|undoer|waster|bad person +upsala|1 +(noun)|Uppsala|Upsala|city|metropolis|urban center +upscale|1 +(adj)|upmarket +upset|17 +(adj)|disquieted|distressed|disturbed|worried|troubled +(adj)|broken|confused|disordered|disorganized |disorganised +(adj)|unexpected +(adj)|ill |sick +(adj)|overturned|upturned|turned +(noun)|disturbance|perturbation|agitation +(noun)|derangement|overthrow|disturbance +(noun)|disorder|condition|status +(noun)|swage|tool +(noun)|overturn|turnover|inversion|upending +(noun)|overturn|success +(verb)|touch|disturb +(verb)|discompose|untune|disconcert|discomfit|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|disturb|trouble|affect|impress|move|strike +(verb)|overturn|tip over|turn over|knock over|bowl over|tump over|move|displace +(verb)|swage|shape|form|work|mold|mould|forge +(verb)|get the better of|overcome|defeat +upset price|1 +(noun)|asking price|selling price +upset stomach|1 +(noun)|indigestion|dyspepsia|stomach upset|symptom +upsetter|1 +(noun)|winner|victor +upsetting|1 +(adj)|disconcerting|displeasing +upshot|1 +(noun)|consequence|effect|outcome|result|event|issue|phenomenon +upside|1 +(noun)|top|top side|upper side|side|face +upside-down|1 +(adj)|inverted|turned +upside-down cake|1 +(noun)|skillet cake|cake +upsilon|1 +(noun)|letter|letter of the alphabet|alphabetic character +upstage|5 +(adj)|upstage +(adj)|aloof|distant|reserved +(verb)|treat|handle|do by +(verb)|move|displace +(verb)|outshine +upstager|1 +(noun)|actor|histrion|player|thespian|role player +upstair|1 +(adj)|upstairs +upstairs|3 +(adj)|upstairs |upstair +(adv)|up the stairs|on a higher floor +(adv)|in the head|in the mind +upstanding|1 +(adj)|noble|solid|worthy|honorable |honourable +upstart|4 +(adj)|nouveau-riche|parvenu|parvenue|pretentious +(noun)|unpleasant person|disagreeable person +(noun)|parvenu|nouveau-riche|arriviste|unpleasant person|disagreeable person +(noun)|kip|gymnastic exercise +upstream|2 +(adj)|upstream +(adv)|upriver +upstroke|1 +(noun)|stroke +upsurge|2 +(noun)|rush|spate|surge|flow|flowing +(noun)|surge|increase|step-up +uptake|2 +(noun)|consumption|ingestion|intake|bodily process|body process|bodily function|activity +(noun)|process +upthrow|1 +(noun)|upheaval|uplift|upthrust|rise|rising|ascent|ascension +upthrust|1 +(noun)|upheaval|uplift|upthrow|rise|rising|ascent|ascension +uptick|1 +(noun)|transaction|dealing|dealings +uptight|1 +(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|tense +uptime|1 +(noun)|time period|period of time|period +upton beall sinclair|1 +(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer|author +upton sinclair|1 +(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer|author +uptown|2 +(adj)|uptown +(noun)|residential district|residential area|community +upturn|1 +(noun)|improvement +upturned|2 +(adj)|overturned|upset|turned +(adj)|retrousse|tip-tilted|shapely +upupa|1 +(noun)|Upupa|genus Upupa|bird genus +upupa epops|1 +(noun)|Euopean hoopoe|Upupa epops|hoopoe|hoopoo +upupidae|1 +(noun)|Upupidae|family Upupidae|bird family +upward|4 +(adj)|up +(adj)|up|ascending +(adv)|up|upwards|upwardly +(adv)|up|upwards +upwardly|1 +(adv)|up|upwards|upward +upwards|2 +(adv)|up|upward|upwardly +(adv)|up|upward +upwind|3 +(adj)|weather|windward +(adv)|leeward +(adv)|against the wind|into the wind +ur|1 +(noun)|Ur|city|metropolis|urban center +uracil|1 +(noun)|U|nucleotide +uraemia|1 +(noun)|uremia|azotemia|azotaemia|pathology +ural-altaic|1 +(noun)|Ural-Altaic|natural language|tongue +ural mountains|1 +(noun)|Urals|Ural Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +uralic|1 +(noun)|Uralic|Uralic language|Ural-Altaic +uralic language|1 +(noun)|Uralic|Uralic language|Ural-Altaic +urals|1 +(noun)|Urals|Ural Mountains|range|mountain range|range of mountains|chain|mountain chain|chain of mountains +uranalysis|1 +(noun)|urinalysis|chemical analysis|qualitative analysis|diagnosis|diagnosing +urania|2 +(noun)|Urania|Muse +(noun)|Venus|Urania|Roman deity +uraninite|1 +(noun)|pitchblende|mineral|uranium ore +uranium|1 +(noun)|U|atomic number 92|metallic element|metal +uranium 235|1 +(noun)|uranium|U|atomic number 92 +uranium 238|1 +(noun)|uranium|U|atomic number 92 +uranium ore|1 +(noun)|ore +uranologist|1 +(noun)|astronomer|stargazer|physicist +uranology|1 +(noun)|astronomy|physics|physical science|natural philosophy +uranoplasty|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +uranoscopidae|1 +(noun)|Uranoscopidae|family Uranoscopidae|fish family +uranus|2 +(noun)|Ouranos|Uranus|Greek deity +(noun)|Uranus|Jovian planet|gas giant +uranyl|1 +(noun)|uranyl group|uranyl radical|group|radical|chemical group +uranyl group|1 +(noun)|uranyl|uranyl radical|group|radical|chemical group +uranyl nitrate|1 +(noun)|nitrate +uranyl oxalate|1 +(noun)|oxalate +uranyl radical|1 +(noun)|uranyl|uranyl group|group|radical|chemical group +urarthritis|1 +(noun)|gout|gouty arthritis|arthritis +urate|1 +(noun)|salt +uratemia|1 +(noun)|blood disease|blood disorder|symptom +uraturia|1 +(noun)|symptom +urban|2 +(adj)|municipality +(adj)|urban |citified|cityfied|city-bred|city-born|urbanized|urbanised +urban area|1 +(noun)|populated area|geographical area|geographic area|geographical region|geographic region +urban center|1 +(noun)|city|metropolis|municipality +urban guerrilla|1 +(noun)|guerrilla|guerilla|irregular|insurgent +urban ii|1 +(noun)|Urban II|Odo of Lagery|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +urban planning|2 +(noun)|architecture +(noun)|city planning|town planning|planning +urban renewal|1 +(noun)|reclamation|renewal|rehabilitation +urban sprawl|1 +(noun)|conurbation|urban area|populated area +urban typhus|1 +(noun)|murine typhus|rat typhus|endemic typhus|typhus|typhus fever +urban vi|1 +(noun)|Urban VI|Bartolomeo Prignano|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome +urbana|1 +(noun)|Urbana|town +urbane|3 +(adj)|polished|refined|svelte|sophisticated +(adj)|gracious +(adj)|sophisticated|cosmopolitan +urbanisation|2 +(noun)|urbanization|condition|status +(noun)|urbanization|social process +urbanise|2 +(verb)|urbanize|change|alter|modify +(verb)|urbanize|change|alter|modify +urbanised|1 +(adj)|urbanized|urban +urbanity|1 +(noun)|courtesy|good manners +urbanization|2 +(noun)|urbanisation|condition|status +(noun)|urbanisation|social process +urbanize|2 +(verb)|urbanise|change|alter|modify +(verb)|urbanise|change|alter|modify +urbanized|1 +(adj)|urbanised|urban +urceolate|1 +(adj)|vessel +urceole|1 +(noun)|vessel +urchin|1 +(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +urd|1 +(noun)|Urd|Urth|Norn +urdu|2 +(adj)|Urdu|Sanskrit|Sanskritic language +(noun)|Urdu|Sanskrit|Sanskritic language +urea|1 +(noun)|carbamide|organic compound +urea-formaldehyde resin|1 +(noun)|synthetic resin +urease|1 +(noun)|enzyme +uredinales|1 +(noun)|Uredinales|order Uredinales|fungus order +uremia|1 +(noun)|uraemia|azotemia|azotaemia|pathology +uremic|1 +(adj)|azotemic|pathology +ureter|1 +(noun)|duct|epithelial duct|canal|channel +ureteritis|1 +(noun)|inflammation|redness|rubor +ureterocele|1 +(noun)|prolapse|prolapsus|descensus +ureterorenal reflux|1 +(noun)|reflux +ureterostenosis|1 +(noun)|stenosis|stricture +urethane|1 +(noun)|ester +urethra|1 +(noun)|duct|epithelial duct|canal|channel +urethral|1 +(adj)|duct|epithelial duct|canal|channel +urethral orifice|1 +(noun)|external orifice|orifice|opening|porta +urethral sphincter|1 +(noun)|musculus sphincter urethrae|sphincter|anatomical sphincter|sphincter muscle +urethritis|1 +(noun)|urinary tract infection +urethrocele|1 +(noun)|prolapse|prolapsus|descensus +urex|1 +(noun)|methenamine|Mandelamine|Urex|antibacterial|antibacterial drug|bactericide +urey|1 +(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist +urga|1 +(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital +urge|5 +(noun)|impulse|motivation|motive|need +(noun)|itch|desire +(verb)|urge on|press|exhort|advise|counsel +(verb)|recommend|advocate|propose|suggest|advise +(verb)|cheer|inspire|barrack|urge on|exhort|pep up|encourage +urge incontinence|1 +(noun)|enuresis|urinary incontinence +urge on|2 +(verb)|cheer|inspire|urge|barrack|exhort|pep up|encourage +(verb)|urge|press|exhort|advise|counsel +urgency|4 +(noun)|necessity +(noun)|importance +(noun)|situation +(noun)|importunity|urging|solicitation +urgent|1 +(adj)|pressing|imperative +urgently|1 +(adv)|desperately +urginea|1 +(noun)|Urginea|genus Urginea|liliid monocot genus +urginea maritima|1 +(noun)|sea squill|sea onion|squill|Urginea maritima|liliaceous plant +urging|3 +(noun)|goad|goading|prod|prodding|spur|spurring|encouragement +(noun)|advocacy +(noun)|importunity|urgency|solicitation +uria|1 +(noun)|Uria|genus Uria|bird genus +uria aalge|1 +(noun)|common murre|Uria aalge|murre +uria lomvia|1 +(noun)|thick-billed murre|Uria lomvia|murre +urial|1 +(noun)|Ovis vignei|wild sheep +uric|1 +(adj)|body waste|excretion|excreta|excrement|excretory product +uric acid|1 +(noun)|acid +uricaciduria|1 +(noun)|blood disease|blood disorder|symptom +urim and thummin|1 +(noun)|Urim and Thummin|answer +urinal|1 +(noun)|plumbing fixture +urinalysis|1 +(noun)|uranalysis|chemical analysis|qualitative analysis|diagnosis|diagnosing +urinary|2 +(adj)|body waste|excretion|excreta|excrement|excretory product +(adj)|system +urinary apparatus|1 +(noun)|urogenital system|urogenital apparatus|urinary system|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system +urinary bladder|1 +(noun)|bladder|vesica +urinary calculus|1 +(noun)|kidney stone|nephrolith|renal calculus|calculus|concretion +urinary hesitancy|1 +(noun)|difficulty +urinary incontinence|1 +(noun)|enuresis|incontinence|incontinency +urinary organ|1 +(noun)|excretory organ|internal organ|viscus +urinary retention|1 +(noun)|retentiveness|retentivity|retention +urinary system|1 +(noun)|urogenital system|urogenital apparatus|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system +urinary tract|1 +(noun)|tract +urinary tract infection|1 +(noun)|inflammatory disease +urinate|2 +(verb)|excrete|egest|eliminate|pass +(verb)|make|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water|excrete|egest|eliminate|pass +urination|1 +(noun)|micturition|elimination|evacuation|excretion|excreting|voiding +urinator|1 +(noun)|pisser|person|individual|someone|somebody|mortal|human|soul +urine|1 +(noun)|piss|pee|piddle|weewee|water|body waste|excretion|excreta|excrement|excretory product +uriniferous tubule|1 +(noun)|nephron|tubule +url|1 +(noun)|URL|uniform resource locator|universal resource locator|address|computer address +urn|2 +(noun)|vase +(noun)|pot +urn fungus|1 +(noun)|Urnula craterium|discomycete|cup fungus +urnula craterium|1 +(noun)|Urnula craterium|urn fungus|discomycete|cup fungus +urobilin|1 +(noun)|animal pigment +urobilinogen|1 +(noun)|stercobilinogen|chromogen +urocele|1 +(noun)|extravasation +urochesia|1 +(noun)|urochezia|defecation|laxation|shitting +urochezia|1 +(noun)|urochesia|defecation|laxation|shitting +urochord|2 +(noun)|tunicate|urochordate|chordate +(noun)|notochord +urochorda|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +urochordata|1 +(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum +urochordate|1 +(noun)|tunicate|urochord|chordate +urocyon|1 +(noun)|Urocyon|genus Urocyon|mammal genus +urocyon cinereoargenteus|1 +(noun)|gray fox|grey fox|Urocyon cinereoargenteus|fox +urocystis|1 +(noun)|Urocystis|genus Urocystis|fungus genus +urocystis cepulae|1 +(noun)|onion smut|Urocystis cepulae|smut|smut fungus +urocystis tritici|1 +(noun)|wheat flag smut|Urocystis tritici|flag smut fungus +urodele|1 +(noun)|caudate|amphibian +urodella|1 +(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order +urodynia|1 +(noun)|pain|hurting +urogenital|1 +(adj)|system +urogenital apparatus|1 +(noun)|urogenital system|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system +urogenital cleft|1 +(noun)|pudendal cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima +urogenital medicine|1 +(noun)|urology|medicine|medical specialty +urogenital system|1 +(noun)|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system +urokinase|1 +(noun)|plasminogen activator|protease|peptidase|proteinase|proteolytic enzyme +urolith|1 +(noun)|calculus|concretion +urologist|1 +(noun)|specialist|medical specialist +urology|1 +(noun)|urogenital medicine|medicine|medical specialty +uropathy|1 +(noun)|pathology +urophycis|1 +(noun)|Urophycis|genus Urophycis|fish genus +uropsilus|1 +(noun)|Uropsilus|genus Uropsilus|mammal genus +uropsilus soricipes|1 +(noun)|Asiatic shrew mole|Uropsilus soricipes|shrew mole +uropygi|1 +(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order +uropygial gland|1 +(noun)|preen gland|oil gland +uropygium|1 +(noun)|tail +urosaurus|1 +(noun)|Urosaurus|genus Urosaurus|reptile genus +urosaurus ornatus|1 +(noun)|tree lizard|Urosaurus ornatus|iguanid|iguanid lizard +ursa major|1 +(noun)|Great Bear|Ursa Major|constellation +ursa minor|1 +(noun)|Little Bear|Ursa Minor|constellation +ursidae|1 +(noun)|Ursidae|family Ursidae|mammal family +ursine|1 +(adj)|carnivore +ursine dasyure|1 +(noun)|Tasmanian devil|Sarcophilus hariisi|dasyurid marsupial|dasyurid +ursinia|1 +(noun)|flower +ursus|1 +(noun)|Ursus|genus Ursus|mammal genus +ursus americanus|1 +(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear +ursus arctos|1 +(noun)|brown bear|bruin|Ursus arctos|bear +ursus arctos horribilis|1 +(noun)|grizzly|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +ursus arctos middendorffi|1 +(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear|bruin|Ursus arctos +ursus arctos syriacus|1 +(noun)|Syrian bear|Ursus arctos syriacus|brown bear|bruin|Ursus arctos +ursus horribilis|1 +(noun)|grizzly|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear|bruin|Ursus arctos +ursus maritimus|1 +(noun)|ice bear|polar bear|Ursus Maritimus|Thalarctos maritimus|bear +ursus middendorffi|1 +(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear|bruin|Ursus arctos +ursus thibetanus|1 +(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear +ursus ursinus|1 +(noun)|sloth bear|Melursus ursinus|Ursus ursinus|bear +urth|1 +(noun)|Urd|Urth|Norn +urtica|1 +(noun)|Urtica|genus Urtica|dicot genus|magnoliopsid genus +urtica dioica|1 +(noun)|stinging nettle|Urtica dioica|nettle +urtica pipulifera|1 +(noun)|Roman nettle|Urtica pipulifera|nettle +urticaceae|1 +(noun)|Urticaceae|family Urticaceae|nettle family|dicot family|magnoliopsid family +urticales|1 +(noun)|Urticales|order Urticales|plant order +urticaria|1 +(noun)|urtication|hives|nettle rash|rash|roseola|efflorescence|skin rash|hypersensitivity reaction +urticate|2 +(verb)|whip|lash +(verb)|nettle|bite|sting|burn +urtication|2 +(noun)|urticaria|hives|nettle rash|rash|roseola|efflorescence|skin rash|hypersensitivity reaction +(noun)|cutaneous sensation|haptic sensation|skin sensation +urubupunga|1 +(noun)|Urubupunga|Urubupunga Falls|waterfall|falls +urubupunga falls|1 +(noun)|Urubupunga|Urubupunga Falls|waterfall|falls +uruguay|1 +(noun)|Uruguay|South American country|South American nation +uruguay potato|2 +(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine +(noun)|Uruguay potato|potato|white potato|Irish potato|murphy|spud|tater +uruguay potato vine|1 +(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine +uruguayan|2 +(adj)|Uruguayan|South American country|South American nation +(noun)|Uruguayan|South American +uruguayan monetary unit|1 +(noun)|Uruguayan monetary unit|monetary unit +uruguayan peso|1 +(noun)|Uruguayan peso|peso|Uruguayan monetary unit +urus|1 +(noun)|aurochs|Bos primigenius|ox|wild ox +us|1 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +us air force|1 +(noun)|United States Air Force|U. S. Air Force|US Air Force|USAF|air force|airforce +us air force academy|1 +(noun)|United States Air Force Academy|US Air Force Academy|air force academy +us army|1 +(noun)|United States Army|US Army|U. S. Army|USA|army|regular army|ground forces +us army criminal investigation laboratory|1 +(noun)|United States Army Criminal Investigation Laboratory|U.S. Army Criminal Investigation Laboratory|US Army Criminal Investigation Laboratory|USACIL|agency|federal agency|government agency|bureau|office|authority +us attorney general|1 +(noun)|Attorney General|United States Attorney General|US Attorney General|secretary +us border patrol|1 +(noun)|United States Border Patrol|US Border Patrol|agency|federal agency|government agency|bureau|office|authority +us cabinet|1 +(noun)|United States Cabinet|US Cabinet|cabinet +us coast guard|1 +(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard|agency|federal agency|government agency|bureau|office|authority +us congress|1 +(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature|legislative assembly|general assembly|law-makers +us fish and wildlife service|1 +(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency|federal agency|government agency|bureau|office|authority +us government|1 +(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government +us government printing office|1 +(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency|federal agency|government agency|bureau|office|authority +us house|1 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +us house of representatives|1 +(noun)|United States House of Representatives|U.S. House of Representatives|US House of Representatives|House of Representatives|U.S. House|US House|house +us marine corps|1 +(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|naval unit +us marshals service|1 +(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency +us military academy|1 +(noun)|United States Military Academy|US Military Academy|military academy +us mint|1 +(noun)|United States Mint|U.S. Mint|US Mint|mint +us naval academy|1 +(noun)|United States Naval Academy|US Naval Academy|naval academy +us navy|1 +(noun)|United States Navy|US Navy|USN|navy|naval forces +us post office|1 +(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency +us postal inspection service|1 +(noun)|United States Postal Inspection Service|US Postal Inspection Service|independent agency +us postal service|1 +(noun)|United States Postal Service|US Postal Service|USPS|independent agency +us secret service|1 +(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency +us senate|1 +(noun)|United States Senate|US Senate|Senate|senate +us trade representative|1 +(noun)|United States Trade Representative|US Trade Representative|executive agency +usa|2 +(noun)|United States|United States of America|America|US|U.S.|USA|U.S.A.|North American country|North American nation +(noun)|United States Army|US Army|U. S. Army|USA|army|regular army|ground forces +usable|3 +(adj)|useable|useful |utile +(adj)|functional|useable|in working order|operable|operational|serviceable +(adj)|available|useable|disposable +usableness|1 +(noun)|serviceability|serviceableness|utility|usefulness +usacil|1 +(noun)|United States Army Criminal Investigation Laboratory|U.S. Army Criminal Investigation Laboratory|US Army Criminal Investigation Laboratory|USACIL|agency|federal agency|government agency|bureau|office|authority +usaf|1 +(noun)|United States Air Force|U. S. Air Force|US Air Force|USAF|air force|airforce +usage|2 +(noun)|use|utilization|utilisation|employment|exercise|activity +(noun)|custom|usance|practice|pattern|survival +usama bin laden|1 +(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist +usance|3 +(noun)|time period|period of time|period +(noun)|consumption|economic consumption|use|use of goods and services|demand +(noun)|custom|usage|practice|pattern|survival +usbeg|2 +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki|Turkic|Turko-Tatar|Turkic language +usbek|2 +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki|Turkic|Turko-Tatar|Turkic language +uscb|1 +(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency|federal agency|government agency|bureau|office|authority +usda|1 +(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department +use|13 +(noun)|usage|utilization|utilisation|employment|exercise|activity +(noun)|utility|usefulness +(noun)|function|purpose|role|utility|usefulness +(noun)|consumption|economic consumption|usance|use of goods and services|demand +(noun)|habit|wont|custom|usage|usance +(noun)|enjoyment|legal right +(noun)|manipulation|influence +(verb)|utilize|utilise|apply|employ +(verb)|habituate|consume|ingest|take in|take|have +(verb)|exploit|work +(verb)|expend|use up +(verb)|practice|apply +(verb)|act|move +use immunity|1 +(noun)|testimonial immunity|exemption|immunity|granting immunity +use of goods and services|1 +(noun)|consumption|economic consumption|usance|use|demand +use up|2 +(verb)|consume|eat up|eat|deplete|exhaust|run through|wipe out|spend|expend|drop +(verb)|take|occupy|use|expend +useable|3 +(adj)|functional|usable|in working order|operable|operational|serviceable +(adj)|usable|useful |utile +(adj)|available|usable|disposable +used|3 +(adj)|used |in use|utilized|utilised +(adj)|exploited|ill-used|put-upon|victimized|victimised|misused +(adj)|secondhand|old +used-car lot|1 +(noun)|parking lot|car park|park|parking area +used-up|2 +(adj)|consumed|used up|exhausted +(adj)| +used to|1 +(adj)|wont to|accustomed +used up|2 +(adj)|consumed|used-up|exhausted +(adj)| +useful|4 +(adj)|useful |utile|helpful|multipurpose|reclaimable|recyclable|reusable|serviceable|useable|usable|utilitarian|utilizable|effective|effectual|efficacious|expedient|helpful|profitable|serviceable +(adj)|valuable|of value|important |of import +(adj)|practical +(adj)|utilitarian|functional +usefulness|1 +(noun)|utility|quality +useless|2 +(adj)|useless |cast-off|discarded|junked|scrap|waste|futile|ineffectual|otiose|unavailing|inutile|unprofitable|unserviceable|unusable|unuseable|ineffective|uneffective|ineffectual|unprofitable|unserviceable +(adj)|unhelpful +uselessness|1 +(noun)|inutility|unusefulness|quality +user|3 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|exploiter|selfish person +(noun)|drug user|substance abuser|person|individual|someone|somebody|mortal|human|soul +user-friendly|1 +(adj)|easy +user interface|1 +(noun)|interface|program|programme|computer program|computer programme +ushas|1 +(noun)|Ushas|Hindu deity +usher|4 +(noun)|Ussher|James Ussher|Usher|James Usher|archpriest|hierarch|high priest|prelate|primate +(noun)|doorkeeper|official|functionary +(noun)|guide|escort +(verb)|show|lead|take|direct|conduct|guide +usher in|1 +(verb)|inaugurate|introduce|begin|lead off|start|commence +usher out|1 +(verb)|dismiss|say farewell +usherette|1 +(noun)|usher|guide +ushering in|1 +(noun)|introduction|debut|first appearance|launching|unveiling|entry +using|1 +(noun)|exploitation|victimization|victimisation|mistreatment +using up|1 +(noun)|consumption|expenditure|depletion +uskub|1 +(noun)|Skopje|Skoplje|Uskub|national capital +usmc|1 +(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|naval unit +usn|1 +(noun)|United States Navy|US Navy|USN|navy|naval forces +usnea|1 +(noun)|Usnea|genus Usnea|fungus genus +usnea barbata|1 +(noun)|beard lichen|beard moss|Usnea barbata|lichen +usneaceae|1 +(noun)|Usneaceae|family Usneaceae|fungus family +usps|1 +(noun)|United States Postal Service|US Postal Service|USPS|independent agency +uss cole|1 +(noun)|USS Cole|destroyer|guided missile destroyer +ussher|1 +(noun)|Ussher|James Ussher|Usher|James Usher|archpriest|hierarch|high priest|prelate|primate +ussr|1 +(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country|state|land +usss|1 +(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency +ustilaginaceae|1 +(noun)|Ustilaginaceae|family Ustilaginaceae|fungus family +ustilaginales|1 +(noun)|Ustilaginales|order Ustilaginales|fungus order +ustilaginoidea|1 +(noun)|Ustilaginoidea|genus Ustilaginoidea|fungus genus +ustilaginoidea virens|1 +(noun)|green smut fungus|Ustilaginoidea virens|fungus +ustilago|1 +(noun)|Ustilago|genus Ustilago|fungus genus +ustilago maydis|1 +(noun)|boil smut|Ustilago maydis|cornsmut|corn smut +ustinov|1 +(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor|histrion|player|thespian|role player|dramatist|playwright +usual|2 +(adj)|usual |accustomed|customary|habitual|wonted|regular|common +(adj)|common|familiar +usually|1 +(adv)|normally|unremarkably|commonly|ordinarily +usualness|1 +(noun)|commonness|commonplaceness|everydayness +usufruct|1 +(noun)|legal right +usufructuary|2 +(adj)|legal right +(noun)|user +usuli|1 +(noun)|Usuli|religious movement +usumbura|1 +(noun)|Bujumbura|Usumbura|capital of Burundi|national capital +usurer|1 +(noun)|loan shark|moneylender|shylock|lender|loaner|shark +usurious|1 +(adj)|exorbitant|extortionate|outrageous|steep|unconscionable|immoderate +usuriously|1 +(adv)|exorbitantly|extortionately +usurp|2 +(verb)|assume|seize|take over|arrogate|take +(verb)|supplant|replace|supersede|supervene upon +usurpation|2 +(noun)|trespass|encroachment|violation|intrusion|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|capture|gaining control|seizure +usurped|1 +(adj)|taken +usurper|1 +(noun)|supplanter|wrongdoer|offender +usury|2 +(noun)|vigorish|interest rate|rate of interest +(noun)|lending|loaning +ut|3 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time +(noun)|Utah|Beehive State|Mormon State|UT|American state +(noun)|do|doh|solfa syllable +ut1|1 +(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time +uta|1 +(noun)|Uta|genus Uta|reptile genus +uta stansburiana|1 +(noun)|side-blotched lizard|sand lizard|Uta stansburiana|iguanid|iguanid lizard +utah|1 +(noun)|Utah|Beehive State|Mormon State|UT|American state +utahan|1 +(noun)|Utahan|American +utahraptor|1 +(noun)|superslasher|maniraptor +utc|1 +(noun)|coordinated universal time|UTC|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1 +ute|2 +(noun)|Ute|Shoshone|Shoshoni +(noun)|Ute|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language +utensil|1 +(noun)|implement +uterine|1 +(adj)|female internal reproductive organ +uterine artery|1 +(noun)|arteria uterina|artery|arteria|arterial blood vessel +uterine cavity|1 +(noun)|cavity|bodily cavity|cavum +uterine cervix|1 +(noun)|cervix|cervix uteri|orifice|opening|porta +uterine contraction|1 +(noun)|contraction|muscular contraction|muscle contraction +uterine tube|1 +(noun)|Fallopian tube|oviduct|salpinx|female internal reproductive organ +uterine vein|1 +(noun)|vein|vena|venous blood vessel +uterus|1 +(noun)|womb|female internal reproductive organ +utica|2 +(noun)|Utica|city|metropolis|urban center +(noun)|Utica|city|metropolis|urban center +utile|1 +(adj)|useful |helpful|multipurpose|reclaimable|recyclable|reusable|serviceable|useable|usable|utilitarian|utilizable|effective|effectual|efficacious|expedient|helpful|profitable|serviceable +utilisation|1 +(noun)|use|usage|utilization|employment|exercise|activity +utilise|1 +(verb)|use|utilize|apply|employ +utilised|1 +(adj)|utilized|used +utiliser|1 +(noun)|utilizer|user +utilitarian|3 +(adj)|useful|functional +(adj)|useful |utile +(noun)|moralist +utilitarianism|1 +(noun)|doctrine|philosophy|philosophical system|school of thought|ism +utility|8 +(adj)|utility-grade|inferior +(adj)|substitute|secondary +(noun)|public utility|public-service corporation|service +(noun)|usefulness|quality +(noun)|service +(noun)|system of measurement|metric +(noun)|utility program|service program|program|programme|computer program|computer programme +(noun)|facility|installation +utility-grade|1 +(adj)|utility|inferior +utility bond|1 +(noun)|utility revenue bond|municipal bond +utility man|2 +(noun)|ballplayer|baseball player +(noun)|workman|working man|working person +utility program|1 +(noun)|utility|service program|program|programme|computer program|computer programme +utility revenue bond|1 +(noun)|utility bond|municipal bond +utility routine|1 +(noun)|service routine|routine|subroutine|subprogram|procedure|function +utilizable|1 +(adj)|useful |utile +utilization|2 +(noun)|use|usage|utilisation|employment|exercise|activity +(noun)|state +utilize|2 +(verb)|use|utilise|apply|employ +(verb)|change|exchange|commute|convert +utilized|1 +(adj)|utilised|used +utilizer|1 +(noun)|utiliser|user +utmost|4 +(adj)|extreme|uttermost|intense +(adj)|last|high +(adj)|farthermost|farthest|furthermost|furthest|uttermost|far +(noun)|uttermost|maximum|level best|limit|bounds|boundary +utn|1 +(noun)|Umma Tameer-e-Nau|UTN|nongovernmental organization|NGO +utnapishtim|1 +(noun)|Utnapishtim|Semitic deity +uto-aztecan|1 +(noun)|Uto-Aztecan|Uto-Aztecan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +uto-aztecan language|1 +(noun)|Uto-Aztecan|Uto-Aztecan language|Amerind|Amerindian language|American-Indian language|American Indian|Indian +utopia|4 +(noun)|Utopia|book +(noun)|state +(noun)|fiction +(noun)|Utopia|Zion|Sion|imaginary place|mythical place +utopian|3 +(adj)|Utopian|book +(adj)|utopian |airy|impractical|visionary|Laputan|perfect +(noun)|Utopian|reformer|reformist|crusader|meliorist +utopian socialism|1 +(noun)|socialism +utopianism|1 +(noun)|Utopianism|political orientation|ideology|political theory +utrecht|1 +(noun)|Utrecht|city|metropolis|urban center +utricle|1 +(noun)|utriculus|pouch|pocket +utricularia|1 +(noun)|Utricularia|genus Utricularia|plant genus +utriculus|1 +(noun)|utricle|pouch|pocket +utrillo|1 +(noun)|Utrillo|Maurice Utrillo|painter +uttar pradesh|1 +(noun)|Uttar Pradesh|state|province +utter|6 +(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|unmitigated +(adj)|dead|absolute +(verb)|express|verbalize|verbalise|give tongue to +(verb)|emit|let out|let loose +(verb)|talk|speak|mouth|verbalize|verbalise|communicate|intercommunicate +(verb)|circulate|pass around|pass on|distribute +utterable|1 +(adj)|speakable|expressible +utterance|1 +(noun)|vocalization|auditory communication +uttered|1 +(adj)|expressed|verbalized|verbalised|spoken +utterer|3 +(noun)|vocalizer|vocaliser|organism|being +(noun)|deceiver|cheat|cheater|trickster|beguiler|slicker +(noun)|speaker|talker|verbalizer|verbaliser|articulator +utterly|2 +(adv)|absolutely|perfectly|dead +(adv)|sublimely +uttermost|3 +(adj)|extreme|utmost|intense +(adj)|farthermost|farthest|furthermost|furthest|utmost|far +(noun)|utmost|maximum|level best|limit|bounds|boundary +utu|1 +(noun)|Utu|Utug|Semitic deity +utug|1 +(noun)|Utu|Utug|Semitic deity +uv|1 +(noun)|ultraviolet|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV|actinic radiation|actinic ray +uvea|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +uveal|1 +(adj)|uveous|structure|anatomical structure|complex body part|bodily structure|body structure +uveitis|1 +(noun)|inflammation|redness|rubor +uveous|1 +(adj)|uveal|structure|anatomical structure|complex body part|bodily structure|body structure +uvula|1 +(noun)|flap +uvular|1 +(adj)|flap +uvularia|1 +(noun)|Uvularia|genus Uvularia|liliid monocot genus +uvularia grandiflora|1 +(noun)|strawflower|cornflower|Uvularia grandiflora|bellwort|merry bells|wild oats +uvulariaceae|1 +(noun)|Uvulariaceae|subfamily Uvulariaceae|liliid monocot family +uvulitis|1 +(noun)|inflammation|redness|rubor +uvulopalatopharyngoplasty|1 +(noun)|palatopharyngoplasty|PPP|UPPP|operation|surgery|surgical operation|surgical procedure|surgical process +ux|1 +(noun)|uxor|wife|married woman +uxor|1 +(noun)|ux|wife|married woman +uxorial|1 +(adj)|wifely |wifelike +uxorious|1 +(adj)|loving +uxoriousness|1 +(noun)|affectionateness|fondness|lovingness|warmth +uygur|3 +(noun)|Uighur|Uigur|Uygur|Turki +(noun)|Uighur|Uigur|Uygur|Turki|Turkic|Turko-Tatar|Turkic language +(noun)|Uighur|Uigur|Uygur|script +uzbak|2 +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki|Turkic|Turko-Tatar|Turkic language +uzbeg|2 +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki|Turkic|Turko-Tatar|Turkic language +uzbek|3 +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki +(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country|Asian nation +(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki|Turkic|Turko-Tatar|Turkic language +uzbekistan|1 +(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country|Asian nation +uzbekistani|1 +(adj)|Uzbekistani|Asian country|Asian nation +uzbekistani monetary unit|1 +(noun)|Uzbekistani monetary unit|monetary unit +uzi|1 +(noun)|Uzi|submachine gun +v|5 +(adj)|five|5|cardinal +(noun)|volt|V|potential unit +(noun)|vanadium|V|atomic number 23|metallic element|metal +(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit|figure +(noun)|V|letter|letter of the alphabet|alphabetic character +v-1|1 +(noun)|buzz bomb|robot bomb|flying bomb|doodlebug|V-1|guided missile +v-8 juice|1 +(noun)|V-8 juice|juice +v-day|1 +(noun)|V-day|Victory Day|day +v-e day|1 +(noun)|V-E Day|8 May 1945|V-day|Victory Day +v-j day|1 +(noun)|V-J Day|15 August 1945|V-day|Victory Day +v-shaped|1 +(adj)|formed +v.p.|1 +(noun)|vice president|V.P.|executive|executive director +v neck|1 +(noun)|V neck|neck +v sign|1 +(noun)|V sign|gesture|motion +va|2 +(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state +(noun)|Department of Veterans Affairs|VA|executive department +vac|1 +(noun)|vacation|holiday +vacancy|2 +(noun)|emptiness +(noun)|void|emptiness|vacuum|space +vacancy rate|1 +(noun)|percentage|percent|per centum|pct +vacant|2 +(adj)|empty +(adj)|empty +vacant lot|1 +(noun)|building site|lot +vacate|3 +(verb)|resign|renounce|give up|leave office|quit|step down|resign +(verb)|empty|abandon|leave|go forth|go away +(verb)|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|cancel|strike down +vacation|3 +(noun)|holiday|leisure|leisure time +(noun)|abrogation|repeal|annulment +(verb)|holiday|spend|pass +vacation home|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +vacation spot|1 +(noun)|resort area|playground|area|country +vacationer|1 +(noun)|vacationist|nonworker +vacationing|1 +(noun)|leisure +vacationist|1 +(noun)|vacationer|nonworker +vaccaria|1 +(noun)|Vaccaria|genus Vaccaria|caryophylloid dicot genus +vaccaria hispanica|1 +(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower +vaccaria pyramidata|1 +(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower +vaccina|1 +(noun)|vaccinia|variola vaccine|variola vaccinia|variola vaccina|infection +vaccinate|1 +(verb)|immunize|immunise|inoculate|inject|shoot +vaccinated|1 +(adj)|immunized|immunised|unsusceptible |insusceptible +vaccinating|1 +(noun)|inoculating|protection +vaccination|2 +(noun)|inoculation|immunization|immunisation +(noun)|scar|cicatrix|cicatrice +vaccinator|1 +(noun)|inoculator|medical practitioner|medical man +vaccine|1 +(noun)|vaccinum|immunogen|immunizing agent +vaccinee|1 +(noun)|patient +vaccinia|2 +(noun)|vaccina|variola vaccine|variola vaccinia|variola vaccina|infection +(noun)|cowpox|animal disease|pox +vaccinia gangrenosa|1 +(noun)|progressive vaccinia|vaccinia|vaccina|variola vaccine|variola vaccinia|variola vaccina +vaccinium|1 +(noun)|Vaccinium|genus Vaccinium|dilleniid dicot genus +vaccinium angustifolium|1 +(noun)|low-bush blueberry|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry|blueberry bush +vaccinium arboreum|1 +(noun)|farkleberry|sparkleberry|Vaccinium arboreum|blueberry|blueberry bush +vaccinium ashei|1 +(noun)|rabbiteye blueberry|rabbit-eye blueberry|rabbiteye|Vaccinium ashei|blueberry|blueberry bush +vaccinium caespitosum|1 +(noun)|dwarf bilberry|dwarf blueberry|Vaccinium caespitosum|blueberry|blueberry bush +vaccinium corymbosum|1 +(noun)|high-bush blueberry|tall bilberry|swamp blueberry|Vaccinium corymbosum|blueberry|blueberry bush +vaccinium macrocarpon|1 +(noun)|American cranberry|large cranberry|Vaccinium macrocarpon|cranberry +vaccinium myrsinites|1 +(noun)|evergreen blueberry|Vaccinium myrsinites|blueberry|blueberry bush +vaccinium ovatum|1 +(noun)|evergreen huckleberry|Vaccinium ovatum|blueberry|blueberry bush +vaccinium oxycoccus|1 +(noun)|European cranberry|small cranberry|Vaccinium oxycoccus|cranberry +vaccinium pallidum|1 +(noun)|dryland blueberry|dryland berry|Vaccinium pallidum|blueberry|blueberry bush +vaccinium pennsylvanicum|1 +(noun)|low-bush blueberry|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry|blueberry bush +vaccinium scoparium|1 +(noun)|grouseberry|grouse-berry|grouse whortleberry|Vaccinium scoparium|blueberry|blueberry bush +vaccinium stamineum|1 +(noun)|deerberry|squaw huckleberry|Vaccinium stamineum|blueberry|blueberry bush +vaccinium uliginosum alpinum|1 +(noun)|bog bilberry|bog whortleberry|moor berry|Vaccinium uliginosum alpinum|blueberry|blueberry bush +vaccinium vitis-idaea|1 +(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry +vaccinum|1 +(noun)|vaccine|immunogen|immunizing agent +vachel lindsay|1 +(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet +vacillant|1 +(adj)|vacillating|wavering|irresolute +vacillate|2 +(verb)|hover|vibrate|oscillate|hesitate|waver|waffle +(verb)|fluctuate|waver|swing +vacillating|1 +(adj)|vacillant|wavering|irresolute +vacillation|2 +(noun)|hesitation|wavering|indecision|indecisiveness|irresolution +(noun)|swing|swinging|motion|movement|move +vacillator|1 +(noun)|waverer|hesitator|hesitater|coward +vaclav havel|1 +(noun)|Havel|Vaclav Havel|dramatist|playwright|statesman|solon|national leader +vacuity|4 +(noun)|vacuum|emptiness +(noun)|vacuousness|emptiness +(noun)|vacuum|region|part +(noun)|inanity|senselessness|mindlessness|pointlessness|meaninglessness +vacuolate|1 +(adj)|vacuolated|cavity|bodily cavity|cavum +vacuolated|1 +(adj)|vacuolate|cavity|bodily cavity|cavum +vacuolation|1 +(noun)|vacuolization|vacuolisation|condition|status +vacuole|1 +(noun)|cavity|bodily cavity|cavum +vacuolisation|1 +(noun)|vacuolization|vacuolation|condition|status +vacuolization|1 +(noun)|vacuolisation|vacuolation|condition|status +vacuous|2 +(adj)|asinine|fatuous|inane|mindless|foolish +(adj)|empty|hollow|meaningless |nonmeaningful +vacuousness|1 +(noun)|vacuity|emptiness +vacuum|5 +(noun)|vacuity|emptiness +(noun)|void|vacancy|emptiness|space +(noun)|vacuity|region|part +(noun)|vacuum cleaner|home appliance|household appliance +(verb)|vacuum-clean|hoover|clean|make clean +vacuum-clean|1 +(verb)|vacuum|hoover|clean|make clean +vacuum aspiration|1 +(noun)|suction curettage|curettage|curettement|induced abortion +vacuum bag|1 +(noun)|dust bag|bag +vacuum bomb|1 +(noun)|thermobaric bomb|fuel-air bomb|volume-detonation bomb|aerosol bomb|bomb|fuel-air explosive|FAE +vacuum bottle|1 +(noun)|vacuum flask|flask +vacuum chamber|1 +(noun)|chamber +vacuum cleaner|1 +(noun)|vacuum|home appliance|household appliance +vacuum flask|1 +(noun)|vacuum bottle|flask +vacuum gage|1 +(noun)|vacuum gauge|gauge|gage +vacuum gauge|1 +(noun)|vacuum gage|gauge|gage +vacuum pump|1 +(noun)|air pump|pump +vacuum tube|1 +(noun)|tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device +vade mecum|1 +(noun)|handbook|enchiridion|reference book|reference|reference work|book of facts +vaduz|1 +(noun)|Vaduz|capital of Liechtenstein|national capital +vagabond|5 +(adj)|rootless|unsettled +(adj)|aimless|drifting|floating|vagrant|unsettled +(noun)|object|physical object +(noun)|vagrant|drifter|floater|wanderer|roamer|rover|bird of passage|poor person|have-not +(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|travel|go|move|locomote +vagabondage|1 +(noun)|wandering|roving|peregrination +vagal|1 +(adj)|pneumogastric|cranial nerve +vagary|1 +(noun)|change|alteration|modification +vagile|1 +(adj)|vagile |free-swimming|unattached +vagina|1 +(noun)|duct|epithelial duct|canal|channel +vaginal|1 +(adj)|duct|epithelial duct|canal|channel +vaginal artery|1 +(noun)|arteria vaginalis|artery|arteria|arterial blood vessel +vaginal birth|1 +(noun)|childbirth|childbearing|accouchement|parturition|birth|giving birth|birthing +vaginal discharge|1 +(noun)|discharge|emission +vaginal smear|1 +(noun)|smear|cytologic smear|cytosmear +vaginismus|1 +(noun)|contraction|muscular contraction|muscle contraction +vaginitis|1 +(noun)|inflammation|redness|rubor +vaginocele|1 +(noun)|colpocele|hernia|herniation +vagn walfrid ekman|1 +(noun)|Ekman|Vagn Walfrid Ekman|oceanographer +vagrancy|1 +(noun)|homelessness +vagrant|2 +(adj)|aimless|drifting|floating|vagabond|unsettled +(noun)|drifter|floater|vagabond|wanderer|roamer|rover|bird of passage|poor person|have-not +vague|3 +(adj)|obscure|unclear +(adj)|undefined |indefinable|undefinable|indefinite +(adj)|dim|faint|shadowy|wispy|indistinct +vaguely|1 +(adv)|mistily +vagueness|1 +(noun)|unclearness +vagus|1 +(noun)|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve +vagus nerve|1 +(noun)|vagus|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve +vain|2 +(adj)|conceited|egotistic|egotistical|self-conceited|swollen|swollen-headed|proud +(adj)|bootless|fruitless|futile|sleeveless|unproductive +vainglorious|1 +(adj)|big|swelled|proud +vainglory|1 +(noun)|boastfulness|conceit|vanity +vainly|1 +(adv)|in vain +vaisakha|1 +(noun)|Baisakh|Vaisakha|Hindu calendar month +vaishnava|1 +(noun)|Vaishnava|Hindu|Hindoo +vaishnavism|2 +(noun)|Vaishnavism|Vaisnavism|sect|religious sect|religious order +(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism|Hindooism +vaisnavism|2 +(noun)|Vaishnavism|Vaisnavism|sect|religious sect|religious order +(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism|Hindooism +vaisya|2 +(noun)|Vaisya|Hindu|Hindoo|Hindustani +(noun)|varna +vajra|1 +(noun)|Vajra|Hindu deity +valance|1 +(noun)|cornice|valance board|pelmet|framework|frame|framing +valance board|1 +(noun)|cornice|valance|pelmet|framework|frame|framing +valdez|1 +(noun)|Valdez|port +valdosta|1 +(noun)|Valdosta|town +vale|1 +(noun)|valley|natural depression|depression +valediction|2 +(noun)|valedictory address|valedictory|oratory +(noun)|farewell|leave|leave-taking|parting +valedictorian|1 +(noun)|valedictory speaker|scholar|scholarly person|student +valedictory|3 +(adj)|farewell|leave|leave-taking|parting +(adj)|exaugural +(noun)|valediction|valedictory address|oratory +valedictory address|1 +(noun)|valediction|valedictory|oratory +valedictory speaker|1 +(noun)|valedictorian|scholar|scholarly person|student +valence|2 +(noun)|valency|power|powerfulness +(noun)|valency|power|powerfulness +valence electron|1 +(noun)|electron|negatron +valencia|2 +(noun)|Valencia|city|metropolis|urban center +(noun)|Valencia|city|metropolis|urban center +valencia orange|1 +(noun)|Valencia orange|sweet orange +valency|3 +(noun)|chemical phenomenon +(noun)|valence|power|powerfulness +(noun)|valence|power|powerfulness +valentina tereshkova|1 +(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut|spaceman|cosmonaut +valentina vladmirovna tereshkova|1 +(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut|spaceman|cosmonaut +valentine|2 +(noun)|sweetheart|sweetie|steady|truelove +(noun)|Valentine|greeting card +valentine's day|1 +(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day +valentine day|1 +(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day +valerian|1 +(noun)|flower +valerian family|1 +(noun)|Valerianaceae|family Valerianaceae|asterid dicot family +valeriana|1 +(noun)|Valeriana|genus Valeriana|asterid dicot genus +valeriana officinalis|1 +(noun)|common valerian|garden heliotrope|Valeriana officinalis|valerian +valerianaceae|1 +(noun)|Valerianaceae|family Valerianaceae|valerian family|asterid dicot family +valerianella|1 +(noun)|Valerianella|genus Valerianella|asterid dicot genus +valerianella locusta|1 +(noun)|common corn salad|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad +valerianella olitoria|1 +(noun)|common corn salad|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad +valeric acid|1 +(noun)|pentanoic acid|carboxylic acid +valet|2 +(noun)|valet de chambre|gentleman|gentleman's gentleman|man|manservant|body servant +(verb)|serve|attend to|wait on|attend|assist +valet de chambre|1 +(noun)|valet|gentleman|gentleman's gentleman|man|manservant|body servant +valetta|1 +(noun)|Valletta|Valetta|capital of Malta|national capital +valetudinarian|2 +(adj)|sick person|diseased person|sufferer +(noun)|sick person|diseased person|sufferer +valgus|1 +(adj)|valgus +valhalla|1 +(noun)|Valhalla|Walhalla|Heaven +vali|1 +(noun)|Vali|Norse deity +valiance|1 +(noun)|heroism|gallantry|valor|valour|valorousness|valiancy|courage|courageousness|bravery +valiancy|1 +(noun)|heroism|gallantry|valor|valour|valorousness|valiance|courage|courageousness|bravery +valiant|1 +(adj)|valorous|brave |courageous|fearless +valiantly|1 +(adv)|valorously +valid|2 +(adj)|valid |binding|legal|sound|legitimate|logical|reasoned|sound|well-grounded|validated|legitimate|reasonable|sensible +(adj)|unexpired +validate|4 +(verb)|formalize|formalise|authorize|authorise|pass|clear +(verb)|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|corroborate|confirm|reassert +(verb)|change|alter|modify +validated|1 +(adj)|valid +validating|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validatory|verificatory|verifying|supportive +validation|2 +(noun)|proof|substantiation|determination|finding +(noun)|establishment|proof|cogent evidence +validatory|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|verificatory|verifying|supportive +validity|2 +(noun)|cogency|rigor|rigour|credibility|credibleness|believability +(noun)|validness|legality +validly|1 +(adv)|with validity +validness|1 +(noun)|validity|legality +valine|1 +(noun)|essential amino acid +valise|1 +(noun)|overnighter|overnight bag|overnight case +valium|1 +(noun)|diazepam|Valium|benzodiazepine +valkyrie|1 +(noun)|Valkyrie|mythical being +valle d'aosta|1 +(noun)|Valle D'Aosta|Italian region +vallecula|1 +(noun)|groove|body part +valletta|1 +(noun)|Valletta|Valetta|capital of Malta|national capital +valley|1 +(noun)|vale|natural depression|depression +valley fever|1 +(noun)|coccidioidomycosis|coccidiomycosis|desert rheumatism|fungal infection|mycosis +valley girl|1 +(noun)|girl|miss|missy|young lady|young woman|fille +valley oak|1 +(noun)|California white oak|valley white oak|roble|Quercus lobata|white oak +valley pocket gopher|1 +(noun)|Thomomys bottae|gopher|pocket gopher|pouched rat|Thomomys|genus Thomomys +valley white oak|1 +(noun)|California white oak|valley oak|roble|Quercus lobata|white oak +vallisneria|1 +(noun)|Vallisneria|genus Vallisneria|monocot genus|liliopsid genus +vallisneria spiralis|1 +(noun)|tape grass|eelgrass|wild celery|Vallisneria spiralis|aquatic plant|water plant|hydrophyte|hydrophytic plant +valmy|1 +(noun)|Valmy|battle of Valmy|pitched battle +valois|1 +(noun)|Valois|dynasty +valor|1 +(noun)|heroism|gallantry|valour|valorousness|valiance|valiancy|courage|courageousness|bravery +valorous|1 +(adj)|valiant|brave |courageous|fearless +valorously|1 +(adv)|valiantly +valorousness|1 +(noun)|heroism|gallantry|valor|valour|valiance|valiancy|courage|courageousness|bravery +valour|1 +(noun)|heroism|gallantry|valor|valorousness|valiance|valiancy|courage|courageousness|bravery +valparaiso|1 +(noun)|Valparaiso|city|metropolis|urban center|port +valproic acid|1 +(noun)|Depokene|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +valse|1 +(noun)|waltz|ballroom dancing|ballroom dance +valuable|4 +(adj)|valuable |blue-chip|invaluable|priceless|precious|rich|semiprecious|valued|worth|expensive|important|of import|worthy +(adj)|worthful|worthy +(adj)|useful|of value|important |of import +(noun)|treasure|hoarded wealth +valuableness|1 +(noun)|invaluableness|preciousness|pricelessness|value +valuate|1 +(verb)|measure|evaluate|assess|appraise|value|judge +valuation|2 +(noun)|evaluation|rating|appraisal|assessment +(noun)|price|terms|damage +valuation account|1 +(noun)|valuation reserve|allowance|allowance account|reserve account|reserve fund +valuation reserve|1 +(noun)|valuation account|allowance|allowance account|reserve account|reserve fund +valuator|1 +(noun)|appraiser|evaluator|judge +value|11 +(noun)|numerical quantity +(noun)|worth +(noun)|economic value|measure|quantity|amount +(noun)|color property +(noun)|time value|note value|duration|continuance +(noun)|ideal +(verb)|determine|set +(verb)|prize|treasure|appreciate|see|consider|reckon|view|regard +(verb)|respect|esteem|prize|prise|see|consider|reckon|view|regard +(verb)|measure|evaluate|valuate|assess|appraise|judge +(verb)|rate|measure|evaluate|valuate|assess|appraise +value-added|1 +(adj)|added +value-added tax|1 +(noun)|VAT|ad valorem tax|excise|excise tax +value-system|1 +(noun)|ethic|moral principle|value orientation|principle +value judgement|1 +(noun)|value judgment|judgment|judgement|assessment +value judgment|1 +(noun)|value judgement|judgment|judgement|assessment +value orientation|1 +(noun)|ethic|moral principle|value-system|principle +value statement|1 +(noun)|statement +valued|2 +(adj)|quantitative +(adj)|valuable +valueless|1 +(adj)|worthless +valuelessness|1 +(noun)|worthlessness +valuer|1 +(noun)|appraiser|valuator +values|7 +(noun)|belief +(noun)|value|numerical quantity +(noun)|value|worth +(noun)|value|economic value|measure|quantity|amount +(noun)|value|color property +(noun)|value|time value|note value|duration|continuance +(noun)|value|ideal +valve|3 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +(noun)|device +(noun)|control|controller +valve-in-head engine|1 +(noun)|internal-combustion engine|ICE +valve rocker|1 +(noun)|rocker arm|lever +valved|1 +(adj)|device +valvelet|1 +(noun)|valvule|valvula|valve +valvotomy|1 +(noun)|valvulotomy|incision|section|surgical incision +valvula|1 +(noun)|valvule|valvelet|valve +valvular|1 +(adj)|control|controller +valvular heart disease|1 +(noun)|heart disease|heart condition|cardiopathy +valvular incompetence|1 +(noun)|incompetence +valvule|1 +(noun)|valvelet|valvula|valve +valvulitis|1 +(noun)|inflammation|redness|rubor +valvulotomy|1 +(noun)|valvotomy|incision|section|surgical incision +vambrace|1 +(noun)|lower cannon|cannon +vamoose|1 +(verb)|decamp|skip|leave|go forth|go away +vamp|7 +(noun)|coquette|flirt|vamper|minx|tease|prickteaser|woman|adult female +(noun)|accompaniment|musical accompaniment|backup|support +(noun)|piece of leather +(verb)|vamp up|fabricate|manufacture|cook up|make up|invent +(verb)|vamp up|patch|piece +(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|philander|mash +(verb)|revamp|repair|mend|fix|bushel|doctor|furbish up|restore|touch on +vamp up|2 +(verb)|vamp|fabricate|manufacture|cook up|make up|invent +(verb)|vamp|patch|piece +vamper|1 +(noun)|coquette|flirt|vamp|minx|tease|prickteaser|woman|adult female +vampire|1 +(noun)|lamia|evil spirit +vampire bat|1 +(noun)|true vampire bat|carnivorous bat|microbat +van|4 +(noun)|avant-garde|vanguard|new wave|artistic movement|art movement +(noun)|vanguard|army unit +(noun)|caravan|camper|camping bus|motor home +(noun)|truck|motortruck +van allen|1 +(noun)|Van Allen|James Alfred Van Allen|physicist +van allen belt|1 +(noun)|Van Allen belt|belt +van beethoven|1 +(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer +van bogaert encephalitis|1 +(noun)|subacute sclerosing panencephalitis|SSPE|inclusion body encephalitis|subacute inclusion body encephalitis|sclerosing leukoencephalitis|subacute sclerosing leukoencephalitis|Bosin's disease|Dawson's encephalitis|Van Bogaert encephalitis|panencephalitis +van buren|1 +(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States|United States President|President|Chief Executive +van de graaff|1 +(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist +van de graaff generator|1 +(noun)|electrostatic generator|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device +van de velde|1 +(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect|designer +van der waal's forces|1 +(noun)|van der Waal's forces|attraction|attractive force +van der waals|1 +(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist +van doren|1 +(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer|author|literary critic +van dyck|1 +(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master +van eyck|1 +(noun)|Eyck|van Eyck|Jan van Eyck|old master +van gogh|1 +(noun)|van Gogh|Vincent van Gogh|Gogh|painter +van vleck|1 +(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist +van wyck brooks|1 +(noun)|Brooks|Van Wyck Brooks|literary critic +vanadate|1 +(noun)|salt +vanadic acid|1 +(noun)|vanadium pentoxide|oxyacid|oxygen acid +vanadinite|1 +(noun)|mineral +vanadium|1 +(noun)|V|atomic number 23|metallic element|metal +vanadium pentoxide|1 +(noun)|vanadic acid|oxyacid|oxygen acid +vanadium steel|1 +(noun)|alloy steel +vanbrugh|1 +(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect|designer +vancocin|1 +(noun)|vancomycin|Vancocin|antibiotic|antibiotic drug +vancomycin|1 +(noun)|Vancocin|antibiotic|antibiotic drug +vancouver|3 +(noun)|Vancouver|George Vancouver|navigator +(noun)|Vancouver|town +(noun)|Vancouver|city|metropolis|urban center|port +vancouver island|1 +(noun)|Vancouver Island|island +vanda|1 +(noun)|orchid|orchidaceous plant +vanda coerulea|1 +(noun)|blue orchid|Vanda coerulea|vanda +vandal|2 +(noun)|destroyer|ruiner|undoer|waster|uprooter +(noun)|Vandal|savage|barbarian +vandalise|1 +(verb)|vandalize|destroy|ruin +vandalism|1 +(noun)|hooliganism|malicious mischief|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|destruction|devastation +vandalize|1 +(verb)|vandalise|destroy|ruin +vanderbilt|1 +(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier|moneyman|philanthropist|altruist +vandyke|2 +(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master +(noun)|vandyke beard|beard|face fungus|whiskers +vandyke beard|1 +(noun)|vandyke|beard|face fungus|whiskers +vandyke brown|1 +(noun)|Vandyke brown|brown|brownness +vane|4 +(noun)|blade|rotating mechanism +(noun)|weathervane|weather vane|wind vane|mechanical device +(noun)|fin +(noun)|web|blade +vaned|1 +(adj)|fledged|feathered +vanellus|1 +(noun)|Vanellus|genus Vanellus|bird genus +vanern|1 +(noun)|Lake Vanern|Vanern|lake +vanessa|1 +(noun)|Vanessa|genus Vanessa|arthropod genus +vanessa atalanta|1 +(noun)|red admiral|Vanessa atalanta|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +vanessa bell|1 +(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter +vanessa stephen|1 +(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter +vanessa virginiensis|1 +(noun)|painted beauty|Vanessa virginiensis|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +vanguard|3 +(noun)|van|army unit +(noun)|avant-garde|van|new wave|artistic movement|art movement +(noun)|forefront|cutting edge|position|view|perspective +vanguards of conquest|1 +(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization|terrorist group|foreign terrorist organization|FTO +vangueria|1 +(noun)|Vangueria|genus Vangueria|asterid dicot genus +vangueria infausta|1 +(noun)|wild medlar|wild medlar tree|medlar|Vangueria infausta|tree +vangueria madagascariensis|1 +(noun)|Spanish tamarind|Vangueria madagascariensis|tree +vanilla|3 +(noun)|orchid|orchidaceous plant +(noun)|vanilla extract|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +(noun)|relish|flavor|flavour|sapidity|savor|savour|smack|tang +vanilla bean|1 +(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +vanilla extract|1 +(noun)|vanilla|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +vanilla ice cream|1 +(noun)|ice cream +vanilla orchid|1 +(noun)|Vanilla planifolia|vanilla +vanilla planifolia|1 +(noun)|vanilla orchid|Vanilla planifolia|vanilla +vanilla pudding|1 +(noun)|pudding +vanillin|1 +(noun)|compound|chemical compound +vanir|1 +(noun)|Vanir|Norse deity +vanish|5 +(verb)|disappear|go away +(verb)|disappear|go away|end|stop|finish|terminate|cease +(verb)|fly|fell|elapse|lapse|pass|slip by|glide by|slip away|go by|slide by|go along +(verb)|disappear|end|stop|finish|terminate|cease +(verb)|fly|vaporize|decrease|diminish|lessen|fall +vanished|1 +(adj)|nonexistent +vanisher|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +vanishing|3 +(adj)|disappearing +(noun)|disappearance +(noun)|disappearance|disappearing +vanishing cream|1 +(noun)|cold cream|coldcream|face cream|cream|ointment|emollient +vanishing point|2 +(noun)|point +(noun)|appearance|visual aspect +vanity|4 +(noun)|amour propre|conceit|self-love|pride|pridefulness +(noun)|emptiness|worthlessness +(noun)|conceit|pride +(noun)|dressing table|dresser|toilet table|table +vanity fair|1 +(noun)|life style|life-style|lifestyle|modus vivendi +vannevar bush|1 +(noun)|Bush|Vannevar Bush|electrical engineer +vanquish|1 +(verb)|beat|beat out|crush|shell|trounce|get the better of|overcome|defeat +vanquishable|1 +(adj)|beatable|vincible|conquerable +vanquisher|1 +(noun)|conqueror|victor|master|superior +vantage|2 +(noun)|position|place +(noun)|advantage|asset|plus +vantage point|1 +(noun)|viewpoint|vantage +vanua levu|1 +(noun)|Vanua Levu|island +vanuatu|1 +(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country|state|land +vanzetti|1 +(noun)|Vanzetti|Bartolomeo Vanzetti|anarchist|nihilist|syndicalist +vapid|2 +(adj)|bland|flat|flavorless|flavourless|insipid|savorless|savourless|tasteless +(adj)|unstimulating |unexciting +vapidity|1 +(noun)|jejunity|jejuneness|tameness|vapidness|dullness|dulness +vapidness|1 +(noun)|jejunity|jejuneness|tameness|vapidity|dullness|dulness +vapor|2 +(noun)|vapour|suspension +(noun)|vaporization|vaporisation|vapour|evaporation|phase change|phase transition|state change|physical change +vapor bath|2 +(noun)|steam bath|steam room|vapour bath|room +(noun)|Turkish bath|steam bath|vapour bath|ablution +vapor density|1 +(noun)|vapour density|relative density +vapor lock|1 +(noun)|vapour lock|blockage|block|closure|occlusion|stop|stoppage +vapor pressure|1 +(noun)|vapour pressure|pressure|pressure level|force per unit area +vaporific|2 +(adj)|evaporable|vaporizable|volatilizable|volatilisable|volatile +(adj)|vaporish|vapourish|vaporous|gaseous +vaporing|1 +(noun)|brag|bragging|crow|crowing|line-shooting|gasconade|boast|boasting|self-praise|jactitation +vaporisation|2 +(noun)|vaporization|vapor|vapour|evaporation|phase change|phase transition|state change|physical change +(noun)|vaporization|annihilation|obliteration +vaporise|4 +(verb)|evaporate|change|alter|modify +(verb)|evaporate|change +(verb)|gasify|vaporize|aerify|change integrity +(verb)|evaporate|vaporize|change integrity +vaporised|1 +(adj)|gasified|vaporized|volatilized|volatilised|gaseous +vaporish|1 +(adj)|vaporific|vapourish|vaporous|gaseous +vaporizable|1 +(adj)|evaporable|vaporific|volatilizable|volatilisable|volatile +vaporization|2 +(noun)|vaporisation|annihilation|obliteration +(noun)|vaporisation|vapor|vapour|evaporation|phase change|phase transition|state change|physical change +vaporize|4 +(verb)|gasify|vaporise|aerify|change integrity +(verb)|zap|kill +(verb)|evaporate|vaporise|change integrity +(verb)|vanish|fly|decrease|diminish|lessen|fall +vaporized|1 +(adj)|gasified|vaporised|volatilized|volatilised|gaseous +vaporous|3 +(adj)|diaphanous|filmy|gauzy|gossamer|see-through|sheer|transparent|cobwebby|thin +(adj)|vaporific|vaporish|vapourish|gaseous +(adj)|miasmal|miasmic|cloudy +vapors|3 +(noun)|blues|blue devils|megrims|vapours|depression +(noun)|vapor|vapour|suspension +(noun)|vaporization|vaporisation|vapor|vapour|evaporation|phase change|phase transition|state change|physical change +vapour|2 +(noun)|vapor|suspension +(noun)|vaporization|vaporisation|vapor|evaporation|phase change|phase transition|state change|physical change +vapour bath|2 +(noun)|steam bath|steam room|vapor bath|room +(noun)|Turkish bath|steam bath|vapor bath|ablution +vapour density|1 +(noun)|vapor density|relative density +vapour lock|1 +(noun)|vapor lock|blockage|block|closure|occlusion|stop|stoppage +vapour pressure|1 +(noun)|vapor pressure|pressure|pressure level|force per unit area +vapourish|1 +(adj)|vaporific|vaporish|vaporous|gaseous +vapours|3 +(noun)|blues|blue devils|megrims|vapors|depression +(noun)|vapor|vapour|suspension +(noun)|vaporization|vaporisation|vapor|vapour|evaporation|phase change|phase transition|state change|physical change +vaquero|1 +(noun)|buckaroo|buckeroo|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +vaquita|1 +(noun)|Phocaena sinus|porpoise +var|1 +(noun)|volt-ampere|power unit +var.|2 +(noun)|form|variant|strain|taxonomic group|taxonomic category|taxon +(noun)|volt-ampere|var|power unit +vara|1 +(noun)|linear unit +varan|1 +(noun)|monitor|monitor lizard|lizard +varanidae|1 +(noun)|Varanidae|family Varanidae|reptile family +varanus|1 +(noun)|Varanus|genus Varanus|reptile genus +varanus komodoensis|1 +(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor|monitor lizard|varan +varanus niloticus|1 +(noun)|African monitor|Varanus niloticus|monitor|monitor lizard|varan +varese|1 +(noun)|Varese|Edgard Varese|composer +vargas|1 +(noun)|Vargas|Getulio Dornelles Vargas|statesman|solon|national leader +vargas llosa|1 +(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer|author +variability|2 +(noun)|variableness|variance|changeableness|changeability +(noun)|unevenness|irregularity|unregularity +variable|7 +(adj)|variable |changeable|uncertain|unsettled|protean|shifting|versatile|multivariate|inconsistent|inconstant +(adj)|varying|varied +(adj)|adaptable +(noun)|thing +(noun)|variable quantity|quantity +(noun)|variable star|star +(noun)|symbol +variable-pitch propeller|1 +(noun)|propeller|propellor +variable quantity|1 +(noun)|variable|quantity +variable resistor|1 +(noun)|rheostat|resistor|resistance +variable star|1 +(noun)|variable|star +variableness|1 +(noun)|variability|variance|changeableness|changeability +variance|6 +(noun)|discrepancy|variant|deviation|divergence|departure|difference +(noun)|division|discord|dissension +(noun)|moment +(noun)|discrepancy|disagreement|divergence|difference +(noun)|variability|variableness|changeableness|changeability +(noun)|variation|activity +variant|5 +(adj)|different +(noun)|discrepancy|variance|deviation|divergence|departure|difference +(noun)|form|strain|var.|taxonomic group|taxonomic category|taxon +(noun)|random variable|variate|stochastic variable|chance variable|variable|variable quantity +(noun)|version|variation|edition|type +variate|1 +(noun)|random variable|variant|stochastic variable|chance variable|variable|variable quantity +variation|10 +(noun)|fluctuation|change|alteration|modification +(noun)|variance|activity +(noun)|theme|melodic theme|musical theme|idea +(noun)|version|variant|edition|type +(noun)|thing +(noun)|magnetic declination|magnetic variation|angle +(noun)|perturbation +(noun)|mutant|mutation|sport|organism|being +(noun)|pas seul|dancing|dance|terpsichore|saltation +(noun)|change +varicella|1 +(noun)|chickenpox|pox +varicella zoster virus|1 +(noun)|herpes|herpes virus +varicelliform|1 +(adj)|pox +varicocele|1 +(noun)|dilatation|distension|distention +varicolored|2 +(adj)|varicoloured|variegated|varied +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicoloured|colored |coloured|colorful +varicoloured|2 +(adj)|varicolored|variegated|varied +(adj)|motley|calico|multicolor|multicolour|multicolored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|colored |coloured|colorful +varicose|1 +(adj)|unhealthy +varicose vein|1 +(noun)|vein|vena|venous blood vessel|varicosity +varicosis|1 +(noun)|pathology +varicosity|1 +(noun)|varix +varied|3 +(adj)|varied |many-sided|multifaceted|multifarious|omnifarious|varicolored|varicoloured|variegated|variform|varying|variable|versatile|various|different|heterogeneous|heterogenous|modified +(adj)|wide-ranging|diversified +(adj)|changed +varied lorikeet|1 +(noun)|varied Lorikeet|Glossopsitta versicolor|lorikeet +variedness|1 +(noun)|variability|variableness|variance +variegate|2 +(verb)|change|alter|modify +(verb)|vary|motley|diversify +variegated|1 +(adj)|varicolored|varicoloured|varied +variegated horsetail|1 +(noun)|variegated scouring rush|Equisetum variegatum|horsetail +variegated scouring rush|1 +(noun)|variegated horsetail|Equisetum variegatum|horsetail +variegation|2 +(noun)|variability|variableness|variance +(noun)|diversification|change +variety|6 +(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|salmagundi|smorgasbord|potpourri|motley|collection|aggregation|accumulation|assemblage +(noun)|diverseness|diversity|multifariousness|heterogeneity|heterogeneousness +(noun)|taxonomic group|taxonomic category|taxon +(noun)|variety show|show +(noun)|kind|sort|form|category +(noun)|change|difference +variety meat|1 +(noun)|organs|meat +variety show|1 +(noun)|variety|show +variform|1 +(adj)|varied +variola|1 +(noun)|smallpox|variola major|pox +variola major|2 +(noun)|smallpox|variola|pox +(noun)|variola major virus|variola virus|smallpox virus +variola major virus|1 +(noun)|variola major|variola virus|smallpox virus +variola minor|2 +(noun)|alastrim|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +(noun)|variola minor virus|variola virus|smallpox virus +variola minor virus|1 +(noun)|variola minor|variola virus|smallpox virus +variola vaccina|1 +(noun)|vaccinia|vaccina|variola vaccine|variola vaccinia|infection +variola vaccine|1 +(noun)|vaccinia|vaccina|variola vaccinia|variola vaccina|infection +variola vaccinia|1 +(noun)|vaccinia|vaccina|variola vaccine|variola vaccina|infection +variola virus|1 +(noun)|smallpox virus|poxvirus +variolar|1 +(adj)|variolic|variolous|pox +variolation|1 +(noun)|variolization|inoculating|vaccinating +variolic|1 +(adj)|variolar|variolous|pox +variolization|1 +(noun)|variolation|inoculating|vaccinating +variolous|1 +(adj)|variolar|variolic|pox +variometer|1 +(noun)|measuring instrument|measuring system|measuring device +variorum|1 +(noun)|variorum edition|edition +variorum edition|1 +(noun)|variorum|edition +various|4 +(adj)|assorted|different +(adj)|respective|several|individual +(adj)|diverse|different +(adj)|versatile|varied +variously|1 +(adv)|diversely|multifariously +variously-leaved pondweed|1 +(noun)|Potamogeton gramineous|pondweed +varix|1 +(noun)|abnormality|abnormalcy|abnormal condition +varlet|2 +(noun)|rogue|knave|rascal|rapscallion|scalawag|scallywag|villain|scoundrel +(noun)|page|attendant|attender|tender +varment|1 +(noun)|varmint|animal|animate being|beast|brute|creature|fauna +varmint|2 +(noun)|vermin|bad person +(noun)|varment|animal|animate being|beast|brute|creature|fauna +varna|1 +(noun)|group|grouping +varnish|2 +(noun)|paint +(verb)|seal|coat|surface +varnish tree|2 +(noun)|candlenut|Aleurites moluccana|angiospermous tree|flowering tree +(noun)|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant +varnished|1 +(adj)|stained|painted +varnisher|1 +(noun)|finisher +varro|1 +(noun)|Varro|Marcus Terentius Varro|scholar|scholarly person|student +varsity|2 +(noun)|university +(noun)|first team|team|squad +varsity letter|1 +(noun)|letter|award|accolade|honor|honour|laurels +varsity sock|1 +(noun)|athletic sock|sweat sock|sock +varuna|1 +(noun)|Varuna|Hindu deity +varus|1 +(adj)|varus +vary|4 +(verb)|change|alter +(verb)|deviate|diverge|depart|differ +(verb)|differ +(verb)|variegate|motley|diversify +varying|1 +(adj)|variable|varied +varying hare|1 +(noun)|snowshoe hare|snowshoe rabbit|Lepus americanus|hare +vas|3 +(noun)|vessel|tube|tube-shaped structure +(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state +(noun)|Department of Veterans Affairs|VA|executive department +vas deferens|1 +(noun)|ductus deferens|duct|epithelial duct|canal|channel +vasa brevis|1 +(noun)|short gastric artery|arteria gastrica breves|gastric artery|arteria gastrica +vasa efferentia|1 +(noun)|tubule +vasa vasorum|1 +(noun)|blood vessel +vasarely|1 +(noun)|Vasarely|Viktor Vasarely|painter +vasari|1 +(noun)|Vasari|Giorgio Vasari|painter|art historian +vasco da gamma|1 +(noun)|da Gamma|Vasco da Gamma|Gamma|navigator +vasco nunez de balboa|1 +(noun)|Balboa|Vasco Nunez de Balboa|navigator +vascular|1 +(adj)|vascular |tube|tube-shaped structure +vascular bundle|1 +(noun)|vascular strand|fibrovascular bundle|vascular tissue +vascular hemophilia|1 +(noun)|von Willebrand's disease|angiohemophilia|hemophilia|haemophilia|bleeder's disease +vascular plant|1 +(noun)|tracheophyte|plant|flora|plant life +vascular ray|1 +(noun)|medullary ray|vascular tissue +vascular spider|1 +(noun)|spider angioma|spider nevus|angioma +vascular strand|1 +(noun)|vascular bundle|fibrovascular bundle|vascular tissue +vascular structure|1 +(noun)|structure|anatomical structure|complex body part|bodily structure|body structure +vascular system|1 +(noun)|system +vascular tissue|1 +(noun)|plant tissue +vascularisation|1 +(noun)|vascularization|organic process|biological process +vascularise|2 +(verb)|vascularize|change +(verb)|vascularize|change|alter|modify +vascularity|1 +(noun)|property +vascularization|1 +(noun)|vascularisation|organic process|biological process +vascularize|2 +(verb)|vascularise|change +(verb)|vascularise|change|alter|modify +vasculitis|1 +(noun)|inflammation|redness|rubor +vase|1 +(noun)|jar +vase-fine|1 +(noun)|leather flower|vase vine|Clematis viorna|clematis +vase vine|1 +(noun)|leather flower|vase-fine|Clematis viorna|clematis +vasectomise|1 +(verb)|vasectomize|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +vasectomize|1 +(verb)|vasectomise|sterilize|sterilise|desex|unsex|desexualize|desexualise|fix +vasectomy|1 +(noun)|ablation|extirpation|cutting out|excision|surgical contraception +vaseline|1 +(noun)|Vaseline|petrolatum|petroleum jelly|mineral jelly +vasiform|1 +(adj)|cylindrical|tube-shaped|tubelike|rounded +vaslav nijinsky|1 +(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer|professional dancer +vasoconstriction|1 +(noun)|constriction +vasoconstrictive|1 +(noun)|vasoconstrictor|agent +vasoconstrictor|1 +(noun)|vasoconstrictive|agent +vasodilation|1 +(noun)|dilation|dilatation +vasodilative|1 +(noun)|vasodilator|dilator +vasodilator|1 +(noun)|vasodilative|dilator +vasomax|1 +(noun)|phentolamine|Vasomax|virility drug|anit-impotence drug +vasomotor|1 +(adj)|constriction|dilation|dilatation +vasopressin|1 +(noun)|antidiuretic hormone|ADH|Pitressin|hormone|endocrine|internal secretion|vasoconstrictor|vasoconstrictive +vasopressor|1 +(noun)|vasoconstrictor|vasoconstrictive +vasosection|1 +(noun)|vasotomy|incision|section|surgical incision +vasotec|1 +(noun)|enalapril|Vasotec|ACE inhibitor|angiotensin converting enzyme inhibitor +vasotomy|1 +(noun)|vasosection|incision|section|surgical incision +vasovasostomy|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +vasovesiculitis|1 +(noun)|inflammation|redness|rubor +vassal|1 +(noun)|liege|liegeman|liege subject|feudatory|follower +vassalage|1 +(noun)|serfdom|serfhood|bondage|slavery|thrall|thralldom|thraldom +vast|1 +(adj)|huge|immense|Brobdingnagian|large +vastly|1 +(adv)|immensely +vastness|1 +(noun)|enormousness|grandness|greatness|immenseness|immensity|sizeableness|largeness|bigness +vat|2 +(noun)|VAT|value-added tax|ad valorem tax|excise|excise tax +(noun)|tub|vessel +vat color|1 +(noun)|vat dye|dye|dyestuff +vat dye|1 +(noun)|vat color|dye|dyestuff +vatic|1 +(adj)|divinatory|mantic|sibylline|sibyllic|vatical|prophetic |prophetical +vatical|1 +(adj)|divinatory|mantic|sibylline|sibyllic|vatic|prophetic |prophetical +vatican|1 +(noun)|Vatican|Vatican Palace|residence +vatican city|1 +(noun)|Vatican City|Citta del Vaticano|city|metropolis|urban center +vatican palace|1 +(noun)|Vatican|Vatican Palace|residence +vaticinate|2 +(verb)|prophesy|predict|foretell|prognosticate|call|forebode|anticipate|promise +(verb)|prophesy +vaticination|1 +(noun)|prophecy|prognostication|prediction|anticipation|prevision +vaticinator|1 +(noun)|prophet|oracle|seer|diviner +vaudeville|1 +(noun)|music hall|variety show|variety +vaudeville theater|1 +(noun)|music hall|vaudeville theatre|theater|theatre|house +vaudeville theatre|1 +(noun)|music hall|vaudeville theater|theater|theatre|house +vaudevillian|1 +(noun)|performer|performing artist +vaughan|1 +(noun)|Vaughan|Sarah Vaughan|singer|vocalist|vocalizer|vocaliser +vaughan williams|1 +(noun)|Vaughan Williams|Ralph Vaughan Williams|composer +vault|6 +(noun)|burial vault|burial chamber|sepulcher|sepulchre|sepulture +(noun)|bank vault|strongroom +(noun)|roof +(noun)|hurdle|jump|jumping +(verb)|overleap|jump|leap|bound|spring +(verb)|jump|leap|bound|spring +vault of heaven|1 +(noun)|celestial sphere|sphere|empyrean|firmament|heavens|welkin|surface +vaulted|1 +(adj)|domed|rounded +vaulter|1 +(noun)|pole vaulter|pole jumper|athlete|jock +vaulting|3 +(adj)|overreaching|bold +(noun)|structure|construction +(noun)|curvet|dressage +vaulting horse|1 +(noun)|long horse|buck|horse +vaunt|2 +(noun)|boast|boasting|self-praise|jactitation +(verb)|boast|tout|swash|shoot a line|brag|gas|blow|bluster|gasconade|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify +vaunter|1 +(noun)|bragger|braggart|boaster|blowhard|line-shooter|egotist|egoist|swellhead +vauntingly|1 +(adv)|boastfully|big|large +vaux|1 +(noun)|Vaux|Calvert Vaux|landscape architect|landscape gardener|landscaper|landscapist +vayu|1 +(noun)|Vayu|Hindu deity +vcr|1 +(noun)|videocassette recorder|VCR|tape recorder|tape machine +vd|1 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +vdu|1 +(noun)|visual display unit|VDU|display|presentation +veadar|1 +(noun)|Veadar|Adar Sheni|Jewish calendar month +veal|1 +(noun)|veau|meat +veal cordon bleu|1 +(noun)|dish +veal parmesan|1 +(noun)|veal parmigiana|dish +veal parmigiana|1 +(noun)|veal parmesan|dish +veal roast|1 +(noun)|roast veal|roast|joint +veal scallopini|1 +(noun)|scallopine|scallopini +veau|1 +(noun)|veal|meat +veblen|2 +(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist|economic expert +(noun)|Veblen|Oswald Veblen|mathematician +vector|3 +(noun)|variable|variable quantity +(noun)|straight line +(noun)|transmitter|agent +vector-borne transmission|1 +(noun)|indirect transmission +vector algebra|1 +(noun)|algebra +vector decomposition|1 +(noun)|decomposition|vector algebra +vector product|1 +(noun)|cross product|vector +vector sum|1 +(noun)|resultant|vector +veda|1 +(noun)|Vedic literature|Veda|sacred text|sacred writing|religious writing|religious text +vedalia|1 +(noun)|Rodolia cardinalis|ladybug|ladybeetle|lady beetle|ladybird|ladybird beetle +vedanga|1 +(noun)|Vedanga|Vedic literature|Veda +vedanta|1 +(noun)|Vedanta|Hinduism|Hindooism +vedic|1 +(adj)|Vedic|sacred text|sacred writing|religious writing|religious text +vedic literature|1 +(noun)|Vedic literature|Veda|sacred text|sacred writing|religious writing|religious text +vedism|1 +(noun)|Vedism|Hinduism|Hindooism +vedist|1 +(noun)|Vedist|scholar|scholarly person|student +veer|2 +(verb)|swerve|sheer|curve|trend|slue|slew|cut|turn +(verb)|switch|change over|shift +veering|1 +(noun)|swerve|swerving|turn|turning +veery|1 +(noun)|Wilson's thrush|Hylocichla fuscescens|thrush +vega|2 +(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist|playwright +(noun)|Vega|binary star|binary|double star +vegan|1 +(noun)|vegetarian +vege out|1 +(verb)|vegetate|relax|loosen up|unbend|unwind|decompress|slow down +vegetable|3 +(adj)|vegetable |rootlike|seedlike|stalklike|stemlike|vegetal|vegetational|vegetative +(noun)|veggie|produce|green goods|green groceries|garden truck +(noun)|herb|herbaceous plant +vegetable garden|1 +(noun)|kitchen garden|vegetable patch|garden +vegetable hummingbird|1 +(noun)|scarlet wisteria tree|Sesbania grandiflora|tree +vegetable ivory|1 +(noun)|ivory nut|apple nut|seed +vegetable marrow|2 +(noun)|marrow|marrow squash|summer squash|summer squash vine|Cucurbita pepo melopepo +(noun)|marrow|summer squash +vegetable matter|1 +(noun)|substance|matter +vegetable oil|1 +(noun)|oil|edible fat +vegetable oyster|2 +(noun)|salsify|oyster plant|Tragopogon porrifolius|herb|herbaceous plant +(noun)|oyster plant|salsify +vegetable patch|1 +(noun)|kitchen garden|vegetable garden|garden +vegetable sheep|2 +(noun)|sheep plant|Raoulia lutescens|Raoulia australis|herb|herbaceous plant +(noun)|sheep plant|Haastia pulvinaris|herb|herbaceous plant +vegetable silk|1 +(noun)|kapok|silk cotton|plant fiber|plant fibre +vegetable soup|1 +(noun)|petite marmite|minestrone|soup +vegetable sponge|1 +(noun)|loofah|Luffa cylindrica|luffa|dishcloth gourd|sponge gourd|rag gourd|strainer vine +vegetable tallow|1 +(noun)|plant material +vegetable wax|1 +(noun)|wax +vegetal|2 +(adj)|vegetative|asexual |nonsexual +(adj)|vegetational|vegetative|vegetable +vegetarian|1 +(noun)|eater|feeder +vegetarianism|1 +(noun)|diet +vegetate|7 +(verb)|live +(verb)|grow +(verb)|grow +(verb)|grow +(verb)|grow +(verb)|propagate +(verb)|vege out|relax|loosen up|unbend|unwind|decompress|slow down +vegetation|4 +(noun)|flora|collection|aggregation|accumulation|assemblage +(noun)|growth|growing|maturation|development|ontogeny|ontogenesis +(noun)|excrescence +(noun)|quiescence|quiescency|dormancy|sleeping +vegetational|1 +(adj)|vegetal|vegetative|vegetable +vegetative|4 +(adj)|vegetive|quiescence|quiescency|dormancy|sleeping +(adj)|involuntary +(adj)|vegetal|asexual |nonsexual +(adj)|vegetal|vegetational|vegetable +vegetative cell|1 +(noun)|somatic cell|cell +vegetive|1 +(adj)|vegetative|quiescence|quiescency|dormancy|sleeping +veggie|1 +(noun)|vegetable|produce|green goods|green groceries|garden truck +vehemence|2 +(noun)|emphasis|intensity|intensiveness +(noun)|ferocity|fierceness|furiousness|fury|violence|wildness|intensity|intensiveness +vehement|2 +(adj)|fierce|tearing|violent|trigger-happy|intense +(adj)|strong +vehicle|3 +(noun)|conveyance|transport +(noun)|medium +(noun)|fomite|object|physical object +vehicle-borne transmission|1 +(noun)|indirect transmission +vehicle traffic|1 +(noun)|vehicular traffic|traffic +vehicular|1 +(adj)|conveyance|transport +vehicular traffic|1 +(noun)|vehicle traffic|traffic +veil|5 +(noun)|head covering|garment +(noun)|caul|embryonic membrane|fetal membrane +(noun)|humeral veil|vestment +(verb)|hide|conceal +(verb)|obscure|blot out|obliterate|hide|change|alter|modify +veiled|2 +(adj)|veiled |covered|disguised +(adj)|indistinct +veiled accusation|1 +(noun)|unspoken accusation|implication +veiling|1 +(noun)|gauze|netting|net|network|mesh|meshing|meshwork +vein|6 +(noun)|vena|venous blood vessel|blood vessel +(noun)|expressive style|style +(noun)|nervure|vascular bundle|vascular strand|fibrovascular bundle +(noun)|mineral vein|geological formation|formation +(noun)|nervure|rib +(verb)|stain +vein of penis|1 +(noun)|vein|vena|venous blood vessel +veinal|1 +(adj)|vascular bundle|vascular strand|fibrovascular bundle +veined|1 +(adj)|venose|veinlike|patterned +veinlike|1 +(adj)|veined|venose|patterned +vela|4 +(noun)|Vela|constellation +(noun)|partial veil|velum|plant part|plant structure +(noun)|universal veil|velum|plant part|plant structure +(noun)|soft palate|velum|flap +velar|2 +(adj)|flap +(adj)|hard +velazquez|1 +(noun)|Velazquez|Diego Rodriguez de Silva y Velazquez|old master +velban|1 +(noun)|vinblastine|Velban|periwinkle plant derivative +velcro|2 +(noun)|Velcro|fabric|cloth|material|textile +(verb)|fasten|fix|secure +veld|1 +(noun)|veldt|grassland +veldt|1 +(noun)|veld|grassland +velleity|2 +(noun)|wish|wishing|want +(noun)|volition|will +vellicate|2 +(verb)|tickle|titillate|itch +(verb)|pinch|irritate +vellication|1 +(noun)|twitch|twitching|spasm|cramp|muscle spasm +vellum|2 +(noun)|writing paper +(noun)|parchment|sheepskin|lambskin +velocipede|2 +(noun)|bicycle|bike|wheel|cycle +(noun)|tricycle|trike|wheeled vehicle +velociraptor|1 +(noun)|maniraptor +velocity|1 +(noun)|speed|rate +velour|1 +(noun)|velours|fabric|cloth|material|textile +velours|2 +(noun)|velour|fabric|cloth|material|textile +(noun)|velour|fabric|cloth|material|textile +veloute|1 +(noun)|sauce +velum|3 +(noun)|partial veil|plant part|plant structure +(noun)|universal veil|plant part|plant structure +(noun)|soft palate|flap +velveeta|1 +(noun)|Velveeta|cheese +velvet|3 +(adj)|velvety|smooth +(adj)|velvety|soft +(noun)|fabric|cloth|material|textile +velvet-leaf|3 +(noun)|tree mallow|velvetleaf|Lavatera arborea|shrub|bush +(noun)|velvetleaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +(noun)| +velvet ant|1 +(noun)|wasp +velvet bean|1 +(noun)|cowage|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna +velvet bent|1 +(noun)|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent|bent grass|bent-grass +velvet bent grass|1 +(noun)|velvet bent|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent|bent grass|bent-grass +velvet flower|1 +(noun)|love-lies-bleeding|tassel flower|Amaranthus caudatus|amaranth +velvet grass|1 +(noun)|Yorkshire fog|Holcus lanatus|grass +velvet osier|1 +(noun)|common osier|hemp willow|Salix viminalis|osier +velvet plant|2 +(noun)|mullein|flannel leaf|herb|herbaceous plant +(noun)|purple velvet plant|royal velvet plant|Gynura aurantiaca|houseplant +velvet sumac|1 +(noun)|staghorn sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac|sumach|shumac +velvet worm|1 +(noun)|onychophoran|peripatus|arthropod +velveteen|1 +(noun)|fabric|cloth|material|textile +velvetleaf|2 +(noun)|tree mallow|velvet-leaf|Lavatera arborea|shrub|bush +(noun)|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +velvetweed|1 +(noun)|velvetleaf|velvet-leaf|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow +velvety|2 +(adj)|velvet|smooth +(adj)|velvet|soft +vena|1 +(noun)|vein|venous blood vessel|blood vessel +vena anastomotica|1 +(noun)|anastomotic vein|vein|vena|venous blood vessel +vena angularis|1 +(noun)|angular vein|vein|vena|venous blood vessel +vena appendicularis|1 +(noun)|appendicular vein|vein|vena|venous blood vessel +vena arcuata renis|1 +(noun)|arcuate vein of the kidney|vein|vena|venous blood vessel +vena auricularis|1 +(noun)|auricular vein|vein|vena|venous blood vessel +vena axillaris|1 +(noun)|axillary vein|vein|vena|venous blood vessel +vena azygos|1 +(noun)|azygos vein|azygous vein|vein|vena|venous blood vessel +vena basalis|1 +(noun)|basal vein|vein|vena|venous blood vessel +vena basilica|1 +(noun)|basilic vein|vein|vena|venous blood vessel +vena basivertebralis|1 +(noun)|basivertebral vein|vein|vena|venous blood vessel +vena brachialis|1 +(noun)|brachial vein|vein|vena|venous blood vessel +vena brachiocephalica|1 +(noun)|brachiocephalic vein|innominate vein|vein|vena|venous blood vessel +vena bronchialis|1 +(noun)|bronchial vein|vein|vena|venous blood vessel +vena bulbi penis|1 +(noun)|vein|vena|venous blood vessel +vena bulbi vestibuli|1 +(noun)|vein|vena|venous blood vessel +vena canaliculi cochleae|1 +(noun)|vein|vena|venous blood vessel +vena cava|1 +(noun)|vein|vena|venous blood vessel +vena centrales retinae|1 +(noun)|central vein of retina|vein|vena|venous blood vessel +vena centralis glandulae suprarenalis|1 +(noun)|central vein of suprarenal gland|vein|vena|venous blood vessel +vena cephalica|1 +(noun)|cephalic vein|vein|vena|venous blood vessel +vena cephalica accessoria|1 +(noun)|accessory cephalic vein|vein|vena|venous blood vessel +vena cerebellum|1 +(noun)|cerebellar vein|vein|vena|venous blood vessel +vena cerebri|1 +(noun)|cerebral vein|vein|vena|venous blood vessel +vena cerebri anterior|1 +(noun)|anterior cerebral vein|cerebral vein|vena cerebri +vena cerebri magna|1 +(noun)|great cerebral vein|cerebral vein|vena cerebri +vena cerebri media|1 +(noun)|middle cerebral vein|cerebral vein|vena cerebri +vena cerebrum internus|1 +(noun)|internal cerebral vein|cerebral vein|vena cerebri +vena cerebrum superior|1 +(noun)|superior cerebral vein|cerebral vein|vena cerebri +vena cervicalis profunda|1 +(noun)|cervical vein|deep cervical vein|vein|vena|venous blood vessel +vena choroidea|1 +(noun)|choroid vein|vein|vena|venous blood vessel +vena circumflexa|1 +(noun)|circumflex vein|vein|vena|venous blood vessel +vena circumflexa ilium|1 +(noun)|circumflex iliac vein|circumflex vein|vena circumflexa +vena circumflexus femoris|1 +(noun)|circumflex femoral vein|circumflex vein|vena circumflexa +vena clitoridis|1 +(noun)|clitoral vein|vein|vena|venous blood vessel +vena colica|1 +(noun)|colic vein|vein|vena|venous blood vessel +vena comitans|1 +(noun)|accompanying vein|vein|vena|venous blood vessel +vena cutanea|1 +(noun)|cutaneous vein|vein|vena|venous blood vessel +vena cystica|1 +(noun)|cystic vein|vein|vena|venous blood vessel +vena digitalis|1 +(noun)|digital vein|vein|vena|venous blood vessel +vena diploica|1 +(noun)|diploic vein|vein|vena|venous blood vessel +vena dorsalis clitoridis profunda|1 +(noun)|clitoral vein|vena clitoridis +vena emissaria|1 +(noun)|emissary vein|vein|vena|venous blood vessel +vena epigastrica inferior|1 +(noun)|inferior epigastric vein|epigastric vein +vena epigastrica superficialis|1 +(noun)|superficial epigastric vein|epigastric vein +vena ethmoidalis|1 +(noun)|ethmoidal vein|vein|vena|venous blood vessel +vena facialis|1 +(noun)|facial vein|vein|vena|venous blood vessel +vena facialis anterior|1 +(noun)|anterior facial vein|facial vein|vena facialis +vena femoralis|1 +(noun)|femoral vein|vein|vena|venous blood vessel +vena gastrica|1 +(noun)|gastric vein|vein|vena|venous blood vessel +vena gastrica-dextra|1 +(noun)|pyloric vein|right gastric vein|gastric vein|vena gastrica +vena gastrica sinistra|1 +(noun)|left gastric vein|gastric vein|vena gastrica +vena gastroomentalis|1 +(noun)|gastroomental vein|gastroepiploic vein|vein|vena|venous blood vessel +vena genus|1 +(noun)|genicular vein|vein|vena|venous blood vessel +vena gluteus|1 +(noun)|gluteal vein|vein|vena|venous blood vessel +vena hemiazygos accessoria|1 +(noun)|accessory hemiazygos vein|accessory hemiazygous vein|vein|vena|venous blood vessel +vena hemizygos|1 +(noun)|hemizygos vein|hemizygous vein|vein|vena|venous blood vessel +vena hepatica|1 +(noun)|hepatic vein|vein|vena|venous blood vessel +vena ileocolica|1 +(noun)|ileocolic vein|vein|vena|venous blood vessel +vena iliaca|1 +(noun)|iliac vein|vein|vena|venous blood vessel +vena iliolumbalis|1 +(noun)|iliolumbar vein|vein|vena|venous blood vessel +vena intercapitalis|1 +(noun)|intercapitular vein|vein|vena|venous blood vessel +vena intercostalis|1 +(noun)|intercostal vein|vein|vena|venous blood vessel +vena intervertebralis|1 +(noun)|intervertebral vein|vein|vena|venous blood vessel +vena jugularis|1 +(noun)|jugular vein|jugular|vein|vena|venous blood vessel +vena labialis|2 +(noun)|labial vein|vein|vena|venous blood vessel +(noun)|labial vein|vein|vena|venous blood vessel +vena labialis inferior|1 +(noun)|inferior labial vein|labial vein|vena labialis +vena labialis superior|1 +(noun)|superior labial vein|labial vein|vena labialis +vena lacrimalis|1 +(noun)|lacrimal vein|vein|vena|venous blood vessel +vena laryngea|1 +(noun)|laryngeal vein|vein|vena|venous blood vessel +vena lienalis|1 +(noun)|splenic vein|vein|vena|venous blood vessel +vena lingualis|1 +(noun)|lingual vein|vein|vena|venous blood vessel +vena lumbalis|1 +(noun)|lumbar vein|vein|vena|venous blood vessel +vena maxillaris|1 +(noun)|maxillary vein|vein|vena|venous blood vessel +vena mesenterica|1 +(noun)|mesenteric vein|vein|vena|venous blood vessel +vena metacarpus|1 +(noun)|metacarpal vein|vein|vena|venous blood vessel +vena metatarsus|1 +(noun)|metatarsal vein|vein|vena|venous blood vessel +vena musculophrenica|1 +(noun)|musculophrenic vein|vein|vena|venous blood vessel +vena nasalis externa|1 +(noun)|external nasal vein|vein|vena|venous blood vessel +vena nasofrontalis|1 +(noun)|nasofrontal vein|vein|vena|venous blood vessel +vena obliqua atrii sinistri|1 +(noun)|oblique vein of the left atrium|vein|vena|venous blood vessel +vena obturatoria|1 +(noun)|obturator vein|vein|vena|venous blood vessel +vena occipitalis|1 +(noun)|occipital vein|vein|vena|venous blood vessel +vena ophthalmica|1 +(noun)|ophthalmic vein|vein|vena|venous blood vessel +vena ovarica|1 +(noun)|ovarian vein|vein|vena|venous blood vessel +vena palatina|1 +(noun)|palatine vein|vein|vena|venous blood vessel +vena paraumbilicalis|1 +(noun)|paraumbilical vein|vein|vena|venous blood vessel +vena pectoralis|1 +(noun)|pectoral vein|vein|vena|venous blood vessel +vena perforantis|1 +(noun)|perforating vein|vein|vena|venous blood vessel +vena pericardiaca|1 +(noun)|pericardial vein|vein|vena|venous blood vessel +vena peroneus|1 +(noun)|peroneal vein|fibular vein|vein|vena|venous blood vessel +vena pharyngeus|1 +(noun)|pharyngeal vein|vein|vena|venous blood vessel +vena phrenica|1 +(noun)|phrenic vein|vein|vena|venous blood vessel +vena poplitea|1 +(noun)|popliteal vein|vein|vena|venous blood vessel +vena portae|1 +(noun)|portal vein|hepatic portal vein|portal|vein|vena|venous blood vessel +vena posterior ventriculi sinistri|1 +(noun)|posterior vein of the left ventricle|vein|vena|venous blood vessel +vena profunda penis|1 +(noun)|vein of penis +vena pulmanalis inferior|1 +(noun)|inferior pulmonary vein|pulmonary vein|vena pulmonalis +vena pulmonalis|1 +(noun)|pulmonary vein|vein|vena|venous blood vessel +vena pulmonalis superior|1 +(noun)|superior pulmonary vein|pulmonary vein|vena pulmonalis +vena pylorica|1 +(noun)|prepyloric vein|vein|vena|venous blood vessel +vena radialis|1 +(noun)|radial vein|vein|vena|venous blood vessel +vena rectalis|1 +(noun)|hemorrhoidal vein|rectal vein|vein|vena|venous blood vessel +vena renalis|1 +(noun)|renal vein|vein|vena|venous blood vessel +vena retromandibularis|1 +(noun)|retromandibular vein|posterior facial vein|facial vein|vena facialis +vena sacralis|1 +(noun)|sacral vein|vein|vena|venous blood vessel +vena saphena|1 +(noun)|saphenous vein|vein|vena|venous blood vessel +vena scapularis dorsalis|1 +(noun)|dorsal scapular vein|vein|vena|venous blood vessel +vena scrotalis|1 +(noun)|scrotal vein|vein|vena|venous blood vessel +vena sigmoideus|1 +(noun)|sigmoid vein|vein|vena|venous blood vessel +vena spinalis|1 +(noun)|spinal vein|vein|vena|venous blood vessel +vena sternocleidomastoidea|1 +(noun)|sternocleidomastoid vein|vein|vena|venous blood vessel +vena stylomastoidea|1 +(noun)|stylomastoid vein|vein|vena|venous blood vessel +vena subclavia|1 +(noun)|subclavian vein|vein|vena|venous blood vessel +vena sublingualis|1 +(noun)|sublingual vein|vein|vena|venous blood vessel +vena supraorbitalis|1 +(noun)|supraorbital vein|vein|vena|venous blood vessel +vena supratrochlearis|1 +(noun)|supratrochlear vein|vein|vena|venous blood vessel +vena temporalis|1 +(noun)|temporal vein|vein|vena|venous blood vessel +vena testicularis|1 +(noun)|testicular vein|vein|vena|venous blood vessel +vena thoracica|1 +(noun)|thoracic vein|vein|vena|venous blood vessel +vena thoracoepigastrica|1 +(noun)|thoracoepigastric vein|vein|vena|venous blood vessel +vena thyroidea|1 +(noun)|thyroid vein|vein|vena|venous blood vessel +vena tibialis|1 +(noun)|tibial vein|vein|vena|venous blood vessel +vena trachealis|1 +(noun)|tracheal vein|vein|vena|venous blood vessel +vena ulnaris|1 +(noun)|ulnar vein|vein|vena|venous blood vessel +vena umbilicalis|1 +(noun)|umbilical vein|vein|vena|venous blood vessel +vena vertebralis|1 +(noun)|vertebral vein|vein|vena|venous blood vessel +vena vertebralis accessoria|1 +(noun)|accessory vertebral vein|vein|vena|venous blood vessel +vena vertebralis anterior|1 +(noun)|anterior vertebral vein|vein|vena|venous blood vessel +vena vesicalis|1 +(noun)|vesical vein|vein|vena|venous blood vessel +vena vestibularis|1 +(noun)|vestibular vein|vein|vena|venous blood vessel +vena vorticosum|1 +(noun)|vortex vein|vorticose vein|vein|vena|venous blood vessel +venae centrales hepatis|1 +(noun)|central veins of liver|vein|vena|venous blood vessel +venae cerebrum inferior|1 +(noun)|inferior cerebral vein|cerebral vein|vena cerebri +venae ciliares|1 +(noun)|ciliary veins|vein|vena|venous blood vessel +venae conjunctivales|1 +(noun)|conjunctival veins|vein|vena|venous blood vessel +venae dorsales clitoridis superficiales|1 +(noun)|clitoral vein|vena clitoridis +venae dorsales penis profunda|1 +(noun)|vein of penis +venae dorsales penis superficiales|1 +(noun)|vein of penis +venae epigastricae superiores|1 +(noun)|superior epigastric veins|epigastric vein +venae episclerales|1 +(noun)|episcleral veins|venule|venula|capillary vein +venae esophageae|1 +(noun)|esophageal veins|oesophageal veins|vein|vena|venous blood vessel +venae interlobulares hepatis|1 +(noun)|vein|vena|venous blood vessel +venae interlobulares renis|1 +(noun)|venae renis +venae labiales anteriores|1 +(noun)|anterior labial veins|labial vein|vena labialis +venae labiales posteriores|1 +(noun)|posterior labial veins|labial vein|vena labialis +venae meningeae|1 +(noun)|meningeal veins|vein|vena|venous blood vessel +venae palpebrales|1 +(noun)|vein|vena|venous blood vessel +venae pancreatica|1 +(noun)|pancreatic vein|vein|vena|venous blood vessel +venae profundae clitoridis|1 +(noun)|clitoral vein|vena clitoridis +venae pudendum|1 +(noun)|pudendal vein|vein|vena|venous blood vessel +venae renis|1 +(noun)|vein|vena|venous blood vessel +venae sclerales|1 +(noun)|scleral veins|vein|vena|venous blood vessel +venal|1 +(adj)|corruptible|bribable|dishonest|purchasable|corrupt +venality|1 +(noun)|corruptness|corruption +venally|1 +(adv)|dishonestly|deceitfully +venation|2 +(noun)|arrangement +(noun)|venous blood system|system +vend|1 +(verb)|peddle|monger|huckster|hawk|pitch|deal|sell|trade +vendable|1 +(adj)|marketable|merchantable|sellable|vendible|salable |saleable +vendee|1 +(noun)|buyer|purchaser|emptor|customer|client +vendemiaire|1 +(noun)|Vendemiaire|Revolutionary calendar month +vender|1 +(noun)|seller|marketer|vendor|trafficker|merchant|merchandiser +vendetta|1 +(noun)|blood feud|feud +vendible|1 +(adj)|marketable|merchantable|sellable|vendable|salable |saleable +vending|1 +(noun)|peddling|hawking|vendition|selling|merchandising|marketing +vending machine|1 +(noun)|slot machine|coin machine +vendition|1 +(noun)|vending|peddling|hawking|selling|merchandising|marketing +vendor|1 +(noun)|seller|marketer|vender|trafficker|merchant|merchandiser +vendue|1 +(noun)|auction|auction sale|sale +veneer|3 +(noun)|veneering|coating|coat +(noun)|facing|coating|coat +(verb)|cover +veneering|2 +(noun)|veneer|coating|coat +(noun)|lamination +venerable|2 +(adj)|old +(adj)|august|revered|honorable |honourable +venerate|1 +(verb)|reverence|fear|revere|respect|esteem|value|prize|prise +venerated|1 +(adj)|revered|reverenced|reverend|sublime|sacred +venerating|1 +(adj)|respectful|reverential|reverent +veneration|2 +(noun)|fear|reverence|awe|emotion +(noun)|idolatry|devotion|cultism|worship +venerator|1 +(noun)|admirer +venereal|1 +(adj)|genital +venereal disease|1 +(noun)|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +venereal wart|1 +(noun)|genital wart|condyloma acuminatum|verruca acuminata|wart|verruca +veneridae|1 +(noun)|Veneridae|family Veneridae|mollusk family +venesect|1 +(verb)|operate on|operate +venesection|1 +(noun)|phlebotomy|incision|section|surgical incision|bloodletting +venetia|1 +(noun)|Veneto|Venezia-Euganea|Venetia|Italian region +venetian|2 +(adj)|Venetian|city|metropolis|urban center +(noun)|Venetian|Italian +venetian blind|1 +(noun)|Venetian blind|window blind +venetian glass|1 +(noun)|Venetian glass|glassware|glasswork +venetian red|1 +(noun)|reddish brown|sepia|burnt sienna|Venetian red|brown|brownness +venetian sumac|1 +(noun)|Venetian sumac|wig tree|Cotinus coggygria|smoke tree|smoke bush +veneto|1 +(noun)|Veneto|Venezia-Euganea|Venetia|Italian region +venezia|1 +(noun)|Venice|Venezia|city|metropolis|urban center +venezia-euganea|1 +(noun)|Veneto|Venezia-Euganea|Venetia|Italian region +venezuela|1 +(noun)|Venezuela|Republic of Venezuela|South American country|South American nation +venezuelan|2 +(adj)|Venezuelan|South American country|South American nation +(noun)|Venezuelan|South American +venezuelan monetary unit|1 +(noun)|Venezuelan monetary unit|monetary unit +vengeance|1 +(noun)|retribution|payback|retaliation|revenge +vengeful|1 +(adj)|revengeful|vindictive|unforgiving +vengefully|1 +(adv)|revengefully|vindictively +vengefulness|1 +(noun)|vindictiveness|malevolence|malignity +venial|2 +(adj)|minor|pardonable +(adj)|excusable|forgivable|pardonable +venial sin|1 +(noun)|sin|sinning +venice|1 +(noun)|Venice|Venezia|city|metropolis|urban center +venipuncture|1 +(noun)|puncture +venire|1 +(noun)|panel|body +venire facias|1 +(noun)|writ|judicial writ +venison|1 +(noun)|game +venn|1 +(noun)|Venn|John Venn|logician|logistician +venn's diagram|1 +(noun)|Venn diagram|Venn's diagram|diagram +venn diagram|1 +(noun)|Venn diagram|Venn's diagram|diagram +venogram|1 +(noun)|phlebogram|roentgenogram|X ray|X-ray picture|X-ray photograph +venography|1 +(noun)|arthrography +venom|2 +(noun)|animal toxin|zootoxin +(noun)|malice|maliciousness|spite|spitefulness|malevolence|malignity +venomed|1 +(adj)|malevolent |malicious +venomous|3 +(adj)|deadly|virulent|toxic +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|virulent|vitriolic|unpleasant +(adj)|poisonous|vicious|malevolent |malicious +venomous lizard|1 +(noun)|lizard +venomously|1 +(adv)|poisonously +venose|1 +(adj)|veined|veinlike|patterned +venous|1 +(adj)|blood vessel +venous blood|1 +(noun)|blood +venous blood system|1 +(noun)|venation|system +venous blood vessel|1 +(noun)|vein|vena|blood vessel +venous pressure|1 +(noun)|blood pressure +venous sinus|1 +(noun)|sinus|duct|epithelial duct|canal|channel +venous thrombosis|1 +(noun)|phlebothrombosis|thrombosis +vent|7 +(noun)|venthole|vent-hole|blowhole|hole +(noun)|orifice|opening|porta +(noun)|volcano|crack|cleft|crevice|fissure|scissure +(noun)|slit +(noun)|release|outlet|activity +(verb)|ventilate|give vent|express|show|evince +(verb)|ventilate|air out|air|refresh|freshen +vent-hole|2 +(noun)|vent|venthole|blowhole|hole +(noun)| +ventail|1 +(noun)|camail|aventail|hood +vented|1 +(adj)|ventilated +venter|4 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +(noun)|abdomen|stomach|belly|body part +(noun)|uterus|womb +(noun)|body part +venthole|1 +(noun)|vent|vent-hole|blowhole|hole +ventilate|5 +(verb)|vent|air out|air|refresh|freshen +(verb)|expose +(verb)|circulate +(verb)|vent|give vent|express|show|evince +(verb)|change|alter|modify +ventilated|1 +(adj)|ventilated |aired|airy|louvered|oxygenated|aerated|vented +ventilating system|1 +(noun)|ventilation|ventilation system|mechanical system +ventilation|4 +(noun)|airing|improvement +(noun)|ventilation system|ventilating system|mechanical system +(noun)|public discussion|discussion|give-and-take|word +(noun)|breathing|external respiration|respiration|bodily process|body process|bodily function|activity +ventilation shaft|1 +(noun)|shaft|air passage|air duct|airway +ventilation system|1 +(noun)|ventilation|ventilating system|mechanical system +ventilator|2 +(noun)|device +(noun)|breathing device|breathing apparatus|breathing machine|device +ventilatory|1 +(adj)|improvement +venting|1 +(noun)|discharge|emission|emanation +ventner|1 +(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist +ventolin|1 +(noun)|albuterol|Ventolin|Proventil|bronchodilator +ventose|1 +(noun)|Ventose|Revolutionary calendar month +ventral|2 +(adj)|ventral |dorsoventral +(adj)|adaxial +ventral fin|1 +(noun)|pelvic fin|fin +ventral placentation|1 +(noun)|marginal placentation|placentation +ventricle|2 +(noun)|cavity|bodily cavity|cavum +(noun)|heart ventricle|chamber +ventricose|1 +(adj)|ventricous|protrusive +ventricous|1 +(adj)|ventricose|protrusive +ventricular|1 +(adj)|chamber|cavity|bodily cavity|cavum +ventricular aneurysm|1 +(noun)|aneurysm|aneurism +ventricular fibrillation|1 +(noun)|fibrillation|cardiac arrhythmia|arrhythmia +ventricular fold|1 +(noun)|false vocal cord|false vocal fold|superior vocal cord|vestibular fold|vocal cord|vocal fold|vocal band|plica vocalis +ventricular septal defect|1 +(noun)|septal defect +ventriculus|1 +(noun)|gizzard|gastric mill|pouch|pocket +ventriloquism|1 +(noun)|ventriloquy|art|artistry|prowess +ventriloquist|1 +(noun)|performer|performing artist +ventriloquist's dummy|1 +(noun)|dummy +ventriloquy|1 +(noun)|ventriloquism|art|artistry|prowess +venture|6 +(noun)|undertaking|project|task|labor +(noun)|speculation|investment|investment funds +(noun)|commercial enterprise|business enterprise|business +(verb)|embark|go|proceed|move +(verb)|guess|pretend|hazard|speculate +(verb)|hazard|adventure|stake|jeopardize|risk|put on the line|lay on the line +venture capital|1 +(noun)|risk capital|capital|working capital +venture capitalist|1 +(noun)|speculator|plunger +venturer|2 +(noun)|merchant-venturer|merchant|merchandiser +(noun)|adventurer|person|individual|someone|somebody|mortal|human|soul +venturesome|3 +(adj)|hazardous|risky|venturous|dangerous |unsafe +(adj)|bold +(adj)|audacious|daring|venturous|adventurous |adventuresome +venturesomeness|1 +(noun)|adventurousness|boldness|daring|hardihood +venturi|2 +(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect|designer +(noun)|tube|tubing +venturi tube|1 +(noun)|Venturi tube|measuring instrument|measuring system|measuring device +venturous|2 +(adj)|hazardous|risky|venturesome|dangerous |unsafe +(adj)|audacious|daring|venturesome|adventurous |adventuresome +venue|2 +(noun)|locale|locus|scene +(noun)|jurisdiction +venula|1 +(noun)|venule|capillary vein|vein|vena|venous blood vessel +venule|1 +(noun)|venula|capillary vein|vein|vena|venous blood vessel +venus|3 +(noun)|Venus|inferior planet +(noun)|Venus|Urania|Roman deity +(noun)|Venus|genus Venus|mollusk genus +venus'-hair fern|1 +(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +venus' slipper|1 +(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid|orchidaceous plant +venus's curse|1 +(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease|contagion +venus's flower basket|1 +(noun)|Venus's flower basket|glass sponge +venus's flytrap|1 +(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant +venus's flytraps|2 +(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant +(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant +venus's girdle|1 +(noun)|Venus's girdle|Cestum veneris|ctenophore|comb jelly +venus's shoe|1 +(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid|orchidaceous plant +venus's slipper|1 +(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid|orchidaceous plant +venus maidenhair|1 +(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +venus mercenaria|1 +(noun)|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam +venushair|1 +(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair|maidenhair fern +veps|2 +(noun)|Veps|Vepse|Vepsian|Russian +(noun)|Veps|Vepse|Vepsian|Baltic-Finnic +vepse|2 +(noun)|Veps|Vepse|Vepsian|Russian +(noun)|Veps|Vepse|Vepsian|Baltic-Finnic +vepsian|2 +(noun)|Veps|Vepse|Vepsian|Russian +(noun)|Veps|Vepse|Vepsian|Baltic-Finnic +veracious|2 +(adj)|honest|truthful |true +(adj)|accurate +veracity|1 +(noun)|truthfulness +veracruz|1 +(noun)|Veracruz|city|metropolis|urban center|port +veranda|1 +(noun)|verandah|gallery|porch +verandah|1 +(noun)|veranda|gallery|porch +verapamil|1 +(noun)|Calan|Isoptin|calcium blocker|calcium-channel blocker +veratrum|1 +(noun)|Veratrum|genus Veratrum|liliid monocot genus +veratrum viride|1 +(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore|false hellebore +verb|2 +(noun)|major form class +(noun)|content word|open-class word +verb phrase|1 +(noun)|predicate|phrase +verbal|6 +(adj)|communicative |communicatory +(adj)|language unit|linguistic unit +(adj)|major form class +(adj)|verbal +(adj)|spoken +(adj)|prolix +verbal creation|1 +(noun)|creating by mental acts +verbal description|1 +(noun)|description|statement +verbal intelligence|1 +(noun)|intelligence +verbal noun|1 +(noun)|deverbal noun|common noun +verbalisation|1 +(noun)|verbalization|wording|diction|phrasing|phraseology|choice of words|verbiage +verbalise|4 +(verb)|verbalize|talk|speak|utter|mouth|verbalize +(verb)|talk|speak|utter|mouth|verbalize|communicate|intercommunicate +(verb)|express|verbalize|utter|give tongue to +(verb)|verbalize|convert +verbalised|1 +(adj)|expressed|uttered|verbalized|spoken +verbaliser|1 +(noun)|speaker|talker|utterer|verbalizer|articulator +verbalization|1 +(noun)|verbalisation|wording|diction|phrasing|phraseology|choice of words|verbiage +verbalize|4 +(verb)|verbalise|talk|speak|utter|mouth|verbalise +(verb)|talk|speak|utter|mouth|verbalise|communicate|intercommunicate +(verb)|express|verbalise|utter|give tongue to +(verb)|verbalise|convert +verbalized|1 +(adj)|expressed|uttered|verbalised|spoken +verbalizer|1 +(noun)|speaker|talker|utterer|verbaliser|articulator +verbascum|1 +(noun)|Verbascum|genus Verbascum|asterid dicot genus +verbascum blattaria|1 +(noun)|moth mullein|Verbascum blattaria|mullein|flannel leaf|velvet plant +verbascum lychnitis|1 +(noun)|white mullein|Verbascum lychnitis|mullein|flannel leaf|velvet plant +verbascum phoeniceum|1 +(noun)|purple mullein|Verbascum phoeniceum|mullein|flannel leaf|velvet plant +verbascum thapsus|1 +(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +verbatim|2 +(adj)|direct|exact +(adv)|word for word +verbena|1 +(noun)|vervain|flower +verbena family|1 +(noun)|Verbenaceae|family Verbenaceae|vervain family|asterid dicot family +verbenaceae|1 +(noun)|Verbenaceae|family Verbenaceae|verbena family|vervain family|asterid dicot family +verbesina|1 +(noun)|Verbesina|genus Verbesina|asterid dicot genus +verbesina alternifolia|1 +(noun)|wingstem|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +verbesina encelioides|1 +(noun)|cowpen daisy|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +verbesina helianthoides|1 +(noun)|gravelweed|Verbesina helianthoides|crownbeard|crown-beard|crown beard +verbesina virginica|1 +(noun)|Virginia crownbeard|frostweed|frost-weed|Verbesina virginica|crownbeard|crown-beard|crown beard +verbiage|2 +(noun)|verboseness|verbosity +(noun)|wording|diction|phrasing|phraseology|choice of words|formulation|expression +verbify|1 +(verb)|change|alter|modify +verbolatry|1 +(noun)|grammatolatry|word-worship|idolatry|devotion|veneration|cultism +verbose|1 +(adj)|long-winded|tedious|windy|wordy|prolix +verbosely|1 +(adv)|windily|long-windedly|wordily +verboseness|1 +(noun)|verbosity|expressive style|style +verbosity|1 +(noun)|verboseness|expressive style|style +verboten|1 +(adj)|forbidden|out|prohibited|proscribed|taboo|tabu|impermissible +verd antique|1 +(noun)|verde antique|marble +verdancy|1 +(noun)|greenness|verdure|profusion|profuseness|richness|cornucopia +verdandi|1 +(noun)|Verdandi|Verthandi|Norn +verdant|1 +(adj)|abundant +verde antique|1 +(noun)|verd antique|marble +verdi|1 +(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer +verdicchio|2 +(noun)|Verdicchio|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|Verdicchio|white wine +verdict|1 +(noun)|finding of fact|finding +verdigris|3 +(noun)|cupric acetate|pigment +(noun)|patina +(verb)|color|colorize|colorise|colourise|colourize|colour|color in|colour in +verdin|1 +(noun)|Auriparus flaviceps|titmouse|tit +verdolagas|1 +(noun)|common purslane|pussley|pusly|Portulaca oleracea|purslane +verdun|1 +(noun)|Verdun|battle of Verdun|pitched battle +verdure|2 +(noun)|greenery|leaf|leafage|foliage +(noun)|greenness|verdancy|profusion|profuseness|richness|cornucopia +verey pistol|1 +(noun)|Very pistol|Verey pistol|pistol|handgun|side arm|shooting iron +verge|5 +(noun)|brink|threshold|boundary|edge|bound +(noun)|brink|limit|bounds|boundary +(noun)|scepter|sceptre|wand|staff +(noun)|border +(verb)|bound|border +verger|1 +(noun)|church officer|caretaker +vergil|1 +(noun)|Virgil|Vergil|Publius Vergilius Maro|poet +veridical|1 +(adj)|real|realistic +verifiable|2 +(adj)|objective |nonsubjective +(adj)|confirmable|falsifiable|empirical |empiric +verification|2 +(noun)|confirmation|check|substantiation|proof|cogent evidence +(noun)|affidavit +verificatory|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verifying|supportive +verified|2 +(adj)|corroborated|substantiated|supported +(adj)|proved |proven +verifier|1 +(noun)|voucher|supporter|protagonist|champion|admirer|booster|friend +verify|4 +(verb)|confirm|corroborate|sustain|substantiate|support|affirm +(verb)|control|test|prove|try|try out|examine|essay +(verb)|confirm|reassert +(verb)|affirm|assert|avow|aver|swan|swear|declare +verifying|1 +(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|supportive +verisimilar|1 +(adj)|probable |likely|plausible +verisimilitude|1 +(noun)|semblance|gloss|color|colour +veritable|2 +(adj)|regular|typical +(adj)|authentic|bona fide|unquestionable|genuine |echt +verity|2 +(noun)|truth|the true|actuality +(noun)|truth +verlaine|1 +(noun)|Verlaine|Paul Verlaine|poet +vermeer|1 +(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master +vermicelli|1 +(noun)|pasta|alimentary paste +vermicide|1 +(noun)|agent|medicine|medication|medicament|medicinal drug +vermicular|1 +(adj)|vermiculate|vermiculated|fancy +vermiculate|3 +(adj)|worm-eaten|wormy|worn +(adj)|vermicular|vermiculated|fancy +(verb)|decorate|adorn|grace|ornament|embellish|beautify +vermiculated|1 +(adj)|vermicular|vermiculate|fancy +vermiculation|2 +(noun)|peristalsis|bodily process|body process|bodily function|activity +(noun)|carving|embellishment +vermiform|1 +(adj)|worm-shaped|formed +vermiform appendix|1 +(noun)|appendix|vermiform process|cecal appendage|process|outgrowth|appendage +vermiform process|1 +(noun)|appendix|vermiform appendix|cecal appendage|process|outgrowth|appendage +vermifuge|1 +(noun)|anthelmintic|anthelminthic|helminthic|medicine|medication|medicament|medicinal drug +vermilion|3 +(adj)|vermillion|cinnabar|Chinese-red|chromatic +(noun)|scarlet|orange red|red|redness +(verb)|redden +vermillion|1 +(adj)|vermilion|cinnabar|Chinese-red|chromatic +vermillion flycatcher|1 +(noun)|firebird|Pyrocephalus rubinus mexicanus|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +vermillion rockfish|1 +(noun)|rasher|Sebastodes miniatus|rockfish +vermin|2 +(noun)|varmint|bad person +(noun)|animal|animate being|beast|brute|creature|fauna +verminous|1 +(adj)|offensive +vermis|1 +(noun)|vermis cerebelli|neural structure +vermis cerebelli|1 +(noun)|vermis|neural structure +vermont|1 +(noun)|Vermont|Green Mountain State|VT|American state +vermonter|1 +(noun)|Vermonter|American +vermouth|1 +(noun)|wine|vino +vernacular|3 +(adj)|common|vulgar|informal +(noun)|cant|jargon|slang|lingo|argot|patois|non-standard speech +(noun)|non-standard speech +vernacular art|1 +(noun)|outsider art|self-taught art|naive art|primitive art|genre +vernal|2 +(adj)|youthful|young |immature +(adj)|vernal +vernal equinox|2 +(noun)|March equinox|spring equinox|equinox +(noun)|equinoctial point|equinox +vernal iris|1 +(noun)|dwarf iris|Iris verna|iris|flag|fleur-de-lis|sword lily +vernal witch hazel|1 +(noun)|Hamamelis vernalis|witch hazel|wych hazel +vernation|1 +(noun)|arrangement +verne|1 +(noun)|Verne|Jules Verne|writer|author +verner|1 +(noun)|Verner|Karl Adolph Verner|philologist|philologue +verner's law|1 +(noun)|Verner's law|sound law +vernier|2 +(noun)|vernier scale|scale +(noun)|Vernier|Paul Vernier|mathematician +vernier caliper|1 +(noun)|vernier micrometer|caliper|calipers|calliper|callipers +vernier micrometer|1 +(noun)|vernier caliper|caliper|calipers|calliper|callipers +vernier scale|1 +(noun)|vernier|scale +vernix|1 +(noun)|vernix caseosa|material|stuff +vernix caseosa|1 +(noun)|vernix|material|stuff +vernonia|1 +(noun)|ironweed|herb|herbaceous plant +verona|1 +(noun)|Verona|city|metropolis|urban center +veronal|1 +(noun)|barbital|barbitone|diethylbarbituric acid|diethylmalonylurea|barbiturate +veronese|1 +(noun)|Veronese|Paolo Veronese|Paola Caliari|old master +veronica|1 +(noun)|speedwell|flower +veronica agrestis|1 +(noun)|field speedwell|Veronica agrestis|veronica|speedwell +veronica americana|1 +(noun)|brooklime|American brooklime|Veronica americana|marsh plant|bog plant|swamp plant +veronica anagallis-aquatica|1 +(noun)|water speedwell|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant|water plant|hydrophyte|hydrophytic plant +veronica arvensis|1 +(noun)|corn speedwell|Veronica arvensis|veronica|speedwell +veronica beccabunga|1 +(noun)|brooklime|European brooklime|Veronica beccabunga|marsh plant|bog plant|swamp plant +veronica chamaedrys|1 +(noun)|germander speedwell|bird's eye|Veronica chamaedrys|veronica|speedwell +veronica michauxii|1 +(noun)|water speedwell|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant|water plant|hydrophyte|hydrophytic plant +veronica officinalis|1 +(noun)|common speedwell|gypsyweed|Veronica officinalis|veronica|speedwell +veronica peregrina|1 +(noun)|purslane speedwell|Veronica peregrina|veronica|speedwell +veronica serpyllifolia|1 +(noun)|thyme-leaved speedwell|Veronica serpyllifolia|veronica|speedwell +veronicastrum virginicum|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus +verpa|1 +(noun)|Verpa|bell morel|morel +verpa bohemica|1 +(noun)|Verpa bohemica|early morel|Verpa|bell morel +verpa conica|1 +(noun)|Verpa conica|conic Verpa|Verpa|bell morel +verrazano|1 +(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator +verrazano-narrows bridge|1 +(noun)|Verrazano-Narrows Bridge|suspension bridge +verrazano narrows|1 +(noun)|Verrazano Narrows|narrow +verrazzano|1 +(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator +verruca|1 +(noun)|wart|blemish|defect|mar|keratosis +verruca acuminata|1 +(noun)|genital wart|venereal wart|condyloma acuminatum|wart|verruca +verrucose|1 +(adj)|warty|wartlike|rough |unsmooth +vers libre|1 +(noun)|free verse|poem|verse form +versace|1 +(noun)|Versace|Gianni Versace|couturier|fashion designer|clothes designer|designer +versailles|2 +(noun)|Versailles|city|metropolis|urban center +(noun)|Versailles|Palace of Versailles|palace +versant|1 +(noun)|mountainside|slope|incline|side +versatile|5 +(adj)|flexible +(adj)|various|varied +(adj)|variable +(adj)|skilled +(adj)|mobile +versatility|1 +(noun)|skillfulness +verse|5 +(noun)|poetry|poesy|writing style|literary genre|genre +(noun)|rhyme|poem|verse form +(noun)|verse line|line +(verb)|versify|poetize|poetise|write|compose|pen|indite +(verb)|familiarize|familiarise|acquaint +verse form|1 +(noun)|poem|literary composition|literary work +verse line|1 +(noun)|verse|line +versed|2 +(adj)|versed |knowledgeable +(noun)|midazolam|Versed|benzodiazepine +versicle|1 +(noun)|poem|verse form +versification|3 +(noun)|adaptation|version +(noun)|form +(noun)|writing|authorship|composition|penning +versifier|1 +(noun)|rhymer|rhymester|poetizer|poetiser|writer|author +versify|1 +(verb)|verse|poetize|poetise|write|compose|pen|indite +version|6 +(noun)|interpretation +(noun)|variant|variation|edition|type +(noun)|adaptation|writing|written material|piece of writing +(noun)|translation|interlingual rendition|rendering|written record|written account +(noun)|interpretation|reading|representation|mental representation|internal representation +(noun)|turn|turning +verso|2 +(noun)|page +(noun)|reverse|side +verst|1 +(noun)|linear unit +vertebra|1 +(noun)|bone|os +vertebral|1 +(adj)|bone|os +vertebral arch|1 +(noun)|neural arch|arch +vertebral artery|1 +(noun)|arteria vertebralis|artery|arteria|arterial blood vessel +vertebral canal|1 +(noun)|spinal canal|canalis vertebralis|duct|epithelial duct|canal|channel +vertebral column|1 +(noun)|spinal column|spine|backbone|back|rachis|skeletal structure +vertebral vein|1 +(noun)|vena vertebralis|vein|vena|venous blood vessel +vertebrata|1 +(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum +vertebrate|2 +(adj)|vertebrate +(noun)|craniate|chordate +vertebrate foot|1 +(noun)|pedal extremity|extremity|appendage|member +vertebrate paleontology|1 +(noun)|paleontology|palaeontology|fossilology +vertex|2 +(noun)|intersection|intersection point|point of intersection +(noun)|peak|apex|acme|extreme point|extreme|extremum +verthandi|1 +(noun)|Verdandi|Verthandi|Norn +vertical|4 +(adj)|vertical |perpendicular|plumb|upended|upright|unsloped|steep|straight +(adj)|erect |upright|erectile|fastigiate|orthostatic|passant|rampant|rearing|standing|stand-up|statant|straight|unbent|unbowed|upright|straight-backed +(noun)|orientation +(noun)|upright|structural member +vertical angle|1 +(noun)|angle +vertical bank|1 +(noun)|bank +vertical circle|1 +(noun)|great circle +vertical combination|1 +(noun)|vertical integration|consolidation|integration +vertical file|1 +(noun)|file|file cabinet|filing cabinet +vertical fin|1 +(noun)|vertical stabilizer|vertical stabiliser|tail fin|tailfin|stabilizer +vertical flute|1 +(noun)|fipple flute|fipple pipe|recorder|woodwind|woodwind instrument|wood +vertical integration|1 +(noun)|vertical combination|consolidation|integration +vertical section|1 +(noun)|mechanical drawing +vertical stabiliser|1 +(noun)|vertical stabilizer|vertical fin|tail fin|tailfin|stabilizer +vertical stabilizer|1 +(noun)|vertical stabiliser|vertical fin|tail fin|tailfin|stabilizer +vertical surface|1 +(noun)|surface +vertical tail|1 +(noun)|airfoil|aerofoil|control surface|surface +vertical union|1 +(noun)|industrial union|union|labor union|trade union|trades union|brotherhood +verticality|1 +(noun)|verticalness|erectness|uprightness|position|spatial relation +verticalness|1 +(noun)|verticality|erectness|uprightness|position|spatial relation +verticil|1 +(noun)|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll +verticillate|1 +(adj)|verticillated|whorled|cyclic +verticillated|1 +(adj)|verticillate|whorled|cyclic +verticilliosis|1 +(noun)|wilt|wilt disease +verticillium|1 +(noun)|fungus +vertiginous|1 +(adj)|dizzy|giddy|woozy|ill |sick +vertigo|1 +(noun)|dizziness|giddiness|lightheadedness|symptom +vertu|2 +(noun)|virtu|connoisseurship|taste|appreciation|discernment|perceptiveness +(noun)|virtu|quality +vervain|1 +(noun)|verbena|flower +vervain family|1 +(noun)|Verbenaceae|family Verbenaceae|verbena family|asterid dicot family +vervain sage|1 +(noun)|wild sage|wild clary|Salvia verbenaca|sage|salvia +verve|1 +(noun)|vitality|energy|vigor|vigour|vim +vervet|1 +(noun)|vervet monkey|Cercopithecus aethiops pygerythrus|guenon|guenon monkey +vervet monkey|1 +(noun)|vervet|Cercopithecus aethiops pygerythrus|guenon|guenon monkey +verwoerd|1 +(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman|solon|national leader +very|5 +(adj)|precise +(adj)|identical|one and the same|selfsame|same +(adj)|actual |existent +(adj)|absolute +(adv)|really|real|rattling +very fast|1 +(adv)|in no time +very high frequency|1 +(noun)|VHF|radio frequency +very important person|1 +(noun)|VIP|high-up|dignitary|panjandrum|high muckamuck|important person|influential person|personage +very light|1 +(noun)|Very light|flare|flash +very loudly|1 +(adv)|fortissimo +very low density lipoprotein|1 +(noun)|VLDL|lipoprotein +very low frequency|1 +(noun)|VLF|radio frequency +very much|1 +(adv)|a lot|a good deal|a great deal|much +very much like|1 +(adv)|much as +very pistol|1 +(noun)|Very pistol|Verey pistol|pistol|handgun|side arm|shooting iron +very reverend|1 +(noun)|Very Reverend|title|title of respect +very softly|1 +(adv)|pianissimo +very well|2 +(adv)|first-rate +(adv)|fine|alright|all right|OK +vesalius|1 +(noun)|Vesalius|Andreas Vesalius|anatomist +vesey|1 +(noun)|Vesey|Denmark Vesey|slave|insurgent|insurrectionist|freedom fighter|rebel +vesica|1 +(noun)|bladder|sac +vesical|1 +(adj)|sac +vesical vein|1 +(noun)|vena vesicalis|vein|vena|venous blood vessel +vesicant|2 +(adj)|vesicatory|noxious |harmful +(noun)|vesicatory|chemical agent +vesicaria|1 +(noun)|Vesicaria|genus Vesicaria|dilleniid dicot genus +vesicate|1 +(verb)|blister|swell|swell up|intumesce|tumefy|tumesce +vesication|1 +(noun)|vesiculation|blistering|organic process|biological process +vesicatory|2 +(adj)|vesicant|noxious |harmful +(noun)|vesicant|chemical agent +vesicle|1 +(noun)|cyst|sac +vesicopapule|1 +(noun)|papulovesicle|papule +vesicoureteral reflux|1 +(noun)|reflux +vesicula umbilicus|1 +(noun)|yolk sac|vitelline sac|umbilical vesicle|sac +vesicular|1 +(adj)|sac +vesicular stomatitis|1 +(noun)|stomatitis +vesiculate|2 +(verb)|change +(verb)|change|alter|modify +vesiculation|1 +(noun)|vesication|blistering|organic process|biological process +vesiculitis|1 +(noun)|inflammation|redness|rubor +vesiculovirus|1 +(noun)|animal virus +vespa|1 +(noun)|Vespa|genus Vespa|arthropod genus +vespa crabro|1 +(noun)|giant hornet|Vespa crabro|hornet +vespasian|1 +(noun)|Vespasian|Titus Flavius Sabinus Vespasianus|Roman Emperor|Emperor of Rome +vesper|2 +(noun)|evening star|Hesperus|Vesper|planet +(noun)|service|religious service|divine service +vesper mouse|1 +(noun)|white-footed mouse|Peromyscus leucopus|wood mouse +vesper sparrow|1 +(noun)|grass finch|Pooecetes gramineus|New World sparrow +vespers|3 +(noun)|evensong|canonical hour +(noun)|evening star|Hesperus|Vesper|planet +(noun)|vesper|service|religious service|divine service +vespertilian bat|1 +(noun)|vespertilionid|carnivorous bat|microbat +vespertilio|1 +(noun)|Vespertilio|genus Vespertilio|mammal genus +vespertilio murinus|1 +(noun)|frosted bat|Vespertilio murinus|vespertilian bat|vespertilionid +vespertilionid|1 +(noun)|vespertilian bat|carnivorous bat|microbat +vespertilionidae|1 +(noun)|Vespertilionidae|family Vespertilionidae|mammal family +vespid|1 +(noun)|vespid wasp|wasp +vespid wasp|1 +(noun)|vespid|wasp +vespidae|1 +(noun)|Vespidae|family Vespidae|arthropod family +vespucci|1 +(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator +vespula|1 +(noun)|Vespula|genus Vespula|arthropod genus +vespula maculata|1 +(noun)|bald-faced hornet|white-faced hornet|Vespula maculata|hornet +vespula maculifrons|1 +(noun)|yellow jacket|yellow hornet|Vespula maculifrons|hornet +vespula vulgaris|1 +(noun)|common wasp|Vespula vulgaris|vespid|vespid wasp +vessel|3 +(noun)|vas|tube|tube-shaped structure +(noun)|watercraft|craft +(noun)|container +vest|7 +(noun)|waistcoat|garment +(noun)|singlet|undershirt|undergarment +(verb)|invest|enthrone|install +(verb)|confer|bestow +(verb)|change hands +(verb)|dress|dress up +(verb)|robe|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +vest pocket|1 +(noun)|pocket +vesta|2 +(noun)|Vesta|Roman deity +(noun)|Vesta|asteroid|minor planet|planetoid +vestal|3 +(adj)|Roman deity +(adj)|pure|virgin|virginal|virtuous|chaste +(noun)|woman|adult female +vestal virgin|1 +(noun)|votary +vested|1 +(adj)|unconditional +vested interest|2 +(noun)|interest|stake +(noun)|interest|interest group +vestiary|1 +(adj)|covering|consumer goods +vestibular|1 +(adj)|proprioception +vestibular apparatus|1 +(noun)|vestibular system|sensory system +vestibular fold|1 +(noun)|false vocal cord|false vocal fold|superior vocal cord|ventricular fold|vocal cord|vocal fold|vocal band|plica vocalis +vestibular gland|1 +(noun)|exocrine gland|duct gland +vestibular system|1 +(noun)|vestibular apparatus|sensory system +vestibular vein|1 +(noun)|vena vestibularis|vein|vena|venous blood vessel +vestibule|2 +(noun)|anteroom|antechamber|entrance hall|hall|foyer|lobby|room +(noun)|cavity|bodily cavity|cavum +vestibule of the ear|1 +(noun)|vestibule +vestibule of the vagina|1 +(noun)|vestibule +vestibulocochlear nerve|1 +(noun)|acoustic nerve|auditory nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve +vestige|1 +(noun)|trace|tincture|shadow|indication|indicant +vestigial|1 +(adj)|rudimentary|undeveloped +vestment|1 +(noun)|gown|robe +vestmental|1 +(adj)|gown|robe +vestmented|1 +(adj)|clothed |clad +vestris|1 +(noun)|Vestris|Gaetan Vestris|dancer|professional dancer +vestry|2 +(noun)|committee|commission +(noun)|sacristy|room +vestryman|1 +(noun)|church officer +vestrywoman|1 +(noun)|church officer +vesture|3 +(noun)|covering|natural covering|cover +(noun)|clothing|article of clothing|wear|covering|consumer goods +(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +vesuvian|1 +(noun)|vesuvianite|idocrase|mineral +vesuvianite|1 +(noun)|vesuvian|idocrase|mineral +vesuvius|1 +(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano +vet|6 +(noun)|veterinarian|veterinary|veterinary surgeon|doctor|doc|physician|MD|Dr.|medico +(noun)|veteran|ex-serviceman|serviceman|military man|man|military personnel +(verb)|be|follow +(verb)|inspect +(verb)|treat|care for +(verb)|doctor +vetch|1 +(noun)|legume|leguminous plant +vetchling|1 +(noun)|vine +vetchworm|1 +(noun)|corn earworm|cotton bollworm|tomato fruitworm|tobacco budworm|Heliothis zia|bollworm +veteran|4 +(adj)|seasoned|experienced +(noun)|veteran soldier|serviceman|military man|man|military personnel +(noun)|vet|ex-serviceman|serviceman|military man|man|military personnel +(noun)|old-timer|oldtimer|old hand|warhorse|old stager|stager|expert +veteran soldier|1 +(noun)|veteran|serviceman|military man|man|military personnel +veterans' day|1 +(noun)|Veterans' Day|Armistice Day|November 11|legal holiday|national holiday +veterans of foreign wars|1 +(noun)|Veterans of Foreign Wars|VFW|association +veterinarian|1 +(noun)|veterinary|veterinary surgeon|vet|doctor|doc|physician|MD|Dr.|medico +veterinary|2 +(adj)|doctor|doc|physician|MD|Dr.|medico|medicine|medical specialty +(noun)|veterinarian|veterinary surgeon|vet|doctor|doc|physician|MD|Dr.|medico +veterinary medicine|1 +(noun)|medicine|medical specialty +veterinary school|1 +(noun)|school +veterinary surgeon|1 +(noun)|veterinarian|veterinary|vet|doctor|doc|physician|MD|Dr.|medico +veto|4 +(noun)|vote|ballot|voting|balloting +(noun)|power|powerfulness +(verb)|blackball|negative|oppose|controvert|contradict +(verb)|forbid|prohibit|interdict|proscribe|disallow|command|require|compel +vex|5 +(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|chafe|devil|displease +(verb)|worry|perturb|unhinge|disquiet|trouble|cark|distract|disorder +(verb)|agitate|disturb|commove|shake up|stir up|raise up|move|displace +(verb)|debate|deliberate +(verb)|perplex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate +vexation|4 +(noun)|annoyance|chafe|anger|choler|ire +(noun)|irritation|annoyance|botheration|psychological state|mental state +(noun)|concern|worry|headache|negative stimulus +(noun)|annoyance|annoying|irritation|mistreatment +vexatious|1 +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexing|disagreeable +vexatious litigation|1 +(noun)|litigation|judicial proceeding +vexed|2 +(adj)|annoyed|harassed|harried|pestered|troubled +(adj)|difficult |hard +vexer|1 +(noun)|tease|teaser|annoyer|unwelcome person|persona non grata +vexing|2 +(adj)|exasperating|infuriating|maddening|displeasing +(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|disagreeable +vfw|1 +(noun)|Veterans of Foreign Wars|VFW|association +vhf|2 +(noun)|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection|virus infection +(noun)|very high frequency|VHF|radio frequency +vi|3 +(adj)|six|6|half dozen|half a dozen|cardinal +(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit|figure +(noun)|United States Virgin Islands|American Virgin Islands|VI|possession +via aircraft|1 +(adv)|aerially +via media|1 +(noun)|compromise|cooperation +viability|2 +(noun)|property +(noun)|practicality +viable|2 +(adj)|feasible|executable|practicable|workable|possible +(adj)|alive +viaduct|1 +(noun)|bridge|span +viagra|1 +(noun)|sildenafil|Viagra|virility drug|anit-impotence drug +vial|1 +(noun)|phial|ampule|ampul|ampoule|bottle +viand|1 +(noun)|dish +viands|2 +(noun)|commissariat|provisions|provender|victuals|food|nutrient +(noun)|viand|dish +viatical|1 +(adj)|buying|purchasing +viatical settlement|2 +(noun)|advance death benefit +(noun)|viaticus settlement|liquidation|settlement +viatication|1 +(noun)|viaticus|buying|purchasing +viaticus|1 +(noun)|viatication|buying|purchasing +viaticus settlement|1 +(noun)|viatical settlement|liquidation|settlement +vibe|1 +(noun)|vibration|atmosphere|ambiance|ambience +vibes|2 +(noun)|vibraphone|vibraharp|percussion instrument|percussive instrument +(noun)|vibe|vibration|atmosphere|ambiance|ambience +vibist|1 +(noun)|vibraphonist|musician|instrumentalist|player +viborg|1 +(noun)|Viborg|town +vibraharp|1 +(noun)|vibraphone|vibes|percussion instrument|percussive instrument +vibramycin|1 +(noun)|doxycycline|Vibramycin|antibiotic|antibiotic drug +vibrancy|1 +(noun)|plangency|resonance|reverberance|ringing|sonorousness|sonority|timbre|timber|quality|tone +vibrant|1 +(adj)|vivacious|spirited +vibraphone|1 +(noun)|vibraharp|vibes|percussion instrument|percussive instrument +vibraphonist|1 +(noun)|vibist|musician|instrumentalist|player +vibrate|5 +(verb)|move +(verb)|oscillate|swing|sway +(verb)|hover|vacillate|oscillate|hesitate|waver|waffle +(verb)|resonate|sound|go +(verb)|thrill|tickle|stimulate|shake|shake up|excite|stir +vibrating|1 +(adj)|vibratory|moving +vibrating reed|1 +(noun)|reed|vibrator +vibration|4 +(noun)|quiver|quivering|motion|movement|move|motility +(noun)|vibe|atmosphere|ambiance|ambience +(noun)|shaking|shakiness|trembling|quiver|quivering|palpitation|motion +(noun)|oscillation|wave|undulation +vibrational|1 +(adj)|wave|undulation +vibrations|5 +(noun)|air|aura|atmosphere +(noun)|vibration|quiver|quivering|motion|movement|move|motility +(noun)|vibe|vibration|atmosphere|ambiance|ambience +(noun)|shaking|shakiness|trembling|quiver|quivering|vibration|palpitation|motion +(noun)|oscillation|vibration|wave|undulation +vibrato|1 +(noun)|sound +vibrator|2 +(noun)|mechanical device +(noun)|mechanical device +vibratory|1 +(adj)|vibrating|moving +vibrio|1 +(noun)|vibrion|eubacteria|eubacterium|true bacteria +vibrio comma|1 +(noun)|comma bacillus|Vibrio comma|vibrio|vibrion +vibrio fetus|1 +(noun)|Vibrio fetus|vibrio|vibrion +vibrion|1 +(noun)|vibrio|eubacteria|eubacterium|true bacteria +vibrionic|1 +(adj)|bacteria genus +vibrissa|1 +(noun)|whisker|sensory hair|hair +viburnum|1 +(noun)|Viburnum|genus Viburnum|asterid dicot genus +viburnum dentatum|1 +(noun)|arrow wood|southern arrow wood|Viburnum dentatum|shrub|bush +viburnum lantana|1 +(noun)|wayfaring tree|twist wood|twistwood|Viburnum lantana|shrub|bush +viburnum opulus|1 +(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub|bush +viburnum prunifolium|1 +(noun)|black haw|Viburnum prunifolium|shrub|bush +viburnum recognitum|1 +(noun)|arrow wood|Viburnum recognitum|shrub|bush +viburnum trilobum|1 +(noun)|cranberry bush|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub|bush +vicar|3 +(noun)|priest +(noun)|clergyman|reverend|man of the cloth +(noun)|clergyman|reverend|man of the cloth +vicar-general|1 +(noun)|deputy|lieutenant +vicar apostolic|1 +(noun)|bishop +vicar of christ|1 +(noun)|Pope|Catholic Pope|Roman Catholic Pope|Pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader|Catholic +vicarage|1 +(noun)|parsonage|rectory|residence +vicarial|1 +(adj)|priest +vicariate|1 +(noun)|vicarship|institution|establishment +vicarious|3 +(adj)|secondary +(adj)|abnormal +(adj)|exchangeable +vicarship|1 +(noun)|vicariate|institution|establishment +viccinium membranaceum|1 +(noun)|bilberry|thin-leaved bilberry|mountain blue berry|Viccinium membranaceum|blueberry|blueberry bush +viccinium myrtillus|1 +(noun)|bilberry|whortleberry|whinberry|blaeberry|Viccinium myrtillus|blueberry|blueberry bush +vice|2 +(noun)|frailty|evil|evilness +(noun)|transgression|evildoing +vice-presidential|1 +(adj)|executive|executive director +vice-regent|1 +(noun)|deputy|lieutenant +vice admiral|1 +(noun)|flag officer +vice chairman|1 +(noun)|president|chairman|chairwoman|chair|chairperson +vice chancellor|1 +(noun)|administrator|decision maker +vice crime|1 +(noun)|crime|law-breaking +vice president|1 +(noun)|V.P.|executive|executive director +vice squad|1 +(noun)|police squad +vice versa|1 +(adv)|the other way around|contrariwise +vicegerent|1 +(noun)|deputy|surrogate +vicenary|1 +(adj)|quantitative +vicennial|1 +(adj)|large integer +viceregal|1 +(adj)|governor +vicereine|2 +(noun)|wife|married woman +(noun)|viceroy|governor +viceroy|2 +(noun)|vicereine|governor +(noun)|Limenitis archippus|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +viceroyalty|1 +(noun)|jurisdiction +viceroyship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +vichy|1 +(noun)|Vichy|town +vichy water|1 +(noun)|Vichy water|mineral water +vichyssoise|1 +(noun)|soup +vicia|1 +(noun)|Vicia|genus Vicia|rosid dicot genus +vicia cracca|1 +(noun)|tufted vetch|bird vetch|Calnada pea|Vicia cracca|vetch +vicia faba|1 +(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean|shell bean plant +vicia orobus|1 +(noun)|bitter betch|Vicia orobus|vetch +vicia sativa|1 +(noun)|spring vetch|Vicia sativa|vetch +vicia sepium|1 +(noun)|bush vetch|Vicia sepium|vetch +vicia villosa|1 +(noun)|hairy vetch|hairy tare|Vicia villosa|tare +vicinal|1 +(adj)|section +vicinity|1 +(noun)|locality|neighborhood|neighbourhood|neck of the woods|section +vicious|3 +(adj)|barbarous|brutal|cruel|fell|roughshod|savage|inhumane +(adj)|depraved|evil|wicked +(adj)|poisonous|venomous|malevolent |malicious +vicious circle|2 +(noun)|vicious cycle|positive feedback|regeneration +(noun)|specious argument +vicious cycle|1 +(noun)|vicious circle|positive feedback|regeneration +viciously|1 +(adv)|brutally|savagely +viciousness|1 +(noun)|ferociousness|brutality|savageness|savagery|cruelty|cruelness|harshness +vicissitude|2 +(noun)|variation|fluctuation +(noun)|mutability|mutableness +vicksburg|2 +(noun)|Vicksburg|town +(noun)|Vicksburg|siege of Vicksburg|siege|besieging|beleaguering|military blockade +vicomte de chateaubriand|1 +(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman|solon|national leader|writer|author +vicomte ferdinand marie de lesseps|1 +(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat|diplomatist +victim|2 +(noun)|unfortunate|unfortunate person +(noun)|dupe|person|individual|someone|somebody|mortal|human|soul +victimisation|1 +(noun)|exploitation|victimization|using|mistreatment +victimise|2 +(verb)|victimize|wrong +(verb)|victimize|punish|penalize|penalise +victimised|1 +(adj)|exploited|ill-used|put-upon|used|victimized|misused +victimiser|1 +(noun)|victimizer|bad person +victimization|2 +(noun)|adversity|hardship|hard knocks +(noun)|exploitation|victimisation|using|mistreatment +victimize|3 +(verb)|victimise|wrong +(verb)|victimise|punish|penalize|penalise +(verb)|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|con|cheat|rip off|chisel +victimized|1 +(adj)|exploited|ill-used|put-upon|used|victimised|misused +victimizer|1 +(noun)|victimiser|bad person +victimless crime|1 +(noun)|crime|law-breaking +victor|2 +(noun)|master|superior|combatant|battler|belligerent|fighter|scrapper +(noun)|winner|contestant +victor-marie hugo|1 +(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet|novelist|dramatist|playwright +victor emanuel ii|1 +(noun)|Victor Emanuel II|king|male monarch +victor emanuel iii|1 +(noun)|Victor Emanuel III|king|male monarch +victor franz hess|1 +(noun)|Hess|Victor Hess|Victor Franz Hess|physicist +victor herbert|1 +(noun)|Herbert|Victor Herbert|musician +victor hess|1 +(noun)|Hess|Victor Hess|Victor Franz Hess|physicist +victor horta|1 +(noun)|Horta|Victor Horta|architect|designer +victor hugo|1 +(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet|novelist|dramatist|playwright +victoria|7 +(noun)|Victoria|Queen Victoria|Queen of England|Empress +(noun)|Victoria|Roman deity +(noun)|Victoria|Victoria Falls|waterfall|falls +(noun)|Victoria|town +(noun)|Victoria|capital of Seychelles|national capital|port +(noun)|Victoria|Australian state +(noun)|Victoria|provincial capital|port +victoria clafin woodhull|1 +(noun)|Woodhull|Victoria Clafin Woodhull|suffragist +victoria cross|1 +(noun)|Victoria Cross|decoration|laurel wreath|medal|medallion|palm|ribbon +victoria de durango|1 +(noun)|Durango|Victoria de Durango|city|metropolis|urban center +victoria falls|2 +(noun)|Victoria|Victoria Falls|waterfall|falls +(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall|falls +victoria land|1 +(noun)|Victoria Land|geographical area|geographic area|geographical region|geographic region +victoria nyanza|1 +(noun)|Lake Victoria|Victoria Nyanza|lake +victoria plum|1 +(noun)|Victoria plum|plum +victoria sandwich|1 +(noun)|Victoria sandwich|Victoria sponge|cake +victoria sponge|1 +(noun)|Victoria sandwich|Victoria sponge|cake +victorian|4 +(adj)|Victorian|Queen of England|Empress|historic period|age +(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|proper +(adj)|Victorian|nonmodern +(noun)|Victorian|person|individual|someone|somebody|mortal|human|soul +victorian age|1 +(noun)|Victorian age|historic period|age +victorian architecture|1 +(noun)|Victorian architecture|architectural style|style of architecture|type of architecture +victoriana|1 +(noun)|Victoriana|collection|aggregation|accumulation|assemblage +victorious|2 +(adj)|winning|successful +(adj)|triumphant|undefeated +victory|1 +(noun)|triumph|ending|conclusion|finish|success +victory celebration|1 +(noun)|celebration|festivity +victory day|1 +(noun)|V-day|Victory Day|day +victory garden|1 +(noun)|kitchen garden|vegetable garden|vegetable patch +victory lap|1 +(noun)|lap of honour|lap|circle|circuit +victrola|1 +(noun)|Victrola|gramophone|acoustic gramophone +victual|4 +(noun)|comestible|edible|eatable|pabulum|victuals|food|nutrient +(verb)|supply|provide|render|furnish +(verb)|store|hive away|lay in|put in|salt away|stack away|stash away +(verb)|eat +victualer|2 +(noun)|victualler|host|innkeeper|boniface +(noun)|sutler|victualler|provisioner|supplier|provider +victualler|2 +(noun)|victualer|host|innkeeper|boniface +(noun)|sutler|victualer|provisioner|supplier|provider +victuals|4 +(noun)|commissariat|provisions|provender|viands|food|nutrient +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|food|nutrient +(noun)|comestible|edible|eatable|pabulum|victual|food|nutrient +(noun)|comestible|edible|eatable|pabulum|victual|food|nutrient +vicugna|1 +(noun)|Vicugna|genus Vicugna|mammal genus +vicugna vicugna|1 +(noun)|vicuna|Vicugna vicugna|even-toed ungulate|artiodactyl|artiodactyl mammal +vicuna|3 +(noun)|wool +(noun)|fabric|cloth|material|textile +(noun)|Vicugna vicugna|even-toed ungulate|artiodactyl|artiodactyl mammal +vidal|1 +(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer|author +vidalia onion|1 +(noun)|Vidalia onion|onion +vidar|1 +(noun)|Vitharr|Vithar|Vidar|Norse deity +videlicet|1 +(adv)|namely|viz.|that is to say +video|3 +(noun)|picture|visual communication +(noun)|video recording|recording +(noun)|television|telecasting|TV|broadcasting +video digitizing|1 +(noun)|photography +video equipment|1 +(noun)|television equipment|electronic equipment +video game|1 +(noun)|computer game|game +video recording|1 +(noun)|video|recording +videocassette|1 +(noun)|cassette|video recording|video +videocassette recorder|1 +(noun)|VCR|tape recorder|tape machine +videodisc|1 +(noun)|videodisk|DVD|optical disk|optical disc +videodisk|1 +(noun)|videodisc|DVD|optical disk|optical disc +videotape|3 +(noun)|tape|tape recording|taping|video recording|video +(noun)|magnetic tape|mag tape|tape +(verb)|tape|record|enter|put down +vidua|1 +(noun)|Vidua|genus Vidua|bird genus +vie|1 +(verb)|compete|contend +vienna|1 +(noun)|Vienna|Austrian capital|capital of Austria|national capital +vienna roll|1 +(noun)|hard roll|Vienna roll|bun|roll +vienna sausage|1 +(noun)|Vienna sausage|frank|frankfurter|hotdog|hot dog|dog|wiener|wienerwurst|weenie +viennese|1 +(adj)|Viennese|national capital +vientiane|1 +(noun)|Vientiane|Laotian capital|capital of Laos|national capital +vieques|1 +(noun)|Vieques|island +viet nam|2 +(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country|Asian nation +(noun)|Vietnam War|Vietnam|war|warfare +vietnam|2 +(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country|Asian nation +(noun)|Vietnam War|Vietnam|war|warfare +vietnam war|1 +(noun)|Vietnam War|Vietnam|war|warfare +vietnamese|5 +(adj)|Vietnamese|Asian country|Asian nation +(adj)|Vietnamese|Mon-Khmer +(adj)|Vietnamese|Asian|Asiatic +(noun)|Vietnamese|Annamese|Asian|Asiatic +(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer +vietnamese monetary unit|1 +(noun)|Vietnamese monetary unit|monetary unit +view|13 +(noun)|position|perspective|orientation +(noun)|aspect|prospect|scene|vista|panorama|visual percept|visual image +(noun)|survey|sight|look|looking|looking at +(noun)|eyeshot|range|reach +(noun)|opinion|sentiment|persuasion|thought|belief +(noun)|opinion|message|content|subject matter|substance +(noun)|purpose|intent|intention|aim|design +(noun)|scene|graphic art +(noun)|horizon|purview|scope|range|reach|orbit|compass|ambit +(noun)|appearance|visual aspect +(verb)|see|consider|reckon|regard|think|believe|consider|conceive +(verb)|consider|look at|analyze|analyse|study|examine|canvass|canvas +(verb)|watch|see|catch|take in|watch +view angle|1 +(noun)|angle of view|angle +view as|1 +(verb)|deem|hold|take for|see|consider|reckon|view|regard +view finder|2 +(noun)|finder|viewfinder|optical device +(noun)| +viewable|1 +(adj)|visible |seeable +viewer|2 +(noun)|spectator|witness|watcher|looker|perceiver|observer|beholder +(noun)|optical device +viewers|3 +(noun)|viewing audience|TV audience|audience +(noun)|spectator|witness|viewer|watcher|looker|perceiver|observer|beholder +(noun)|viewer|optical device +viewfinder|1 +(noun)|finder|view finder|optical device +viewgraph|1 +(noun)|overhead|foil|transparency +viewing|2 +(noun)|screening|showing|display +(noun)|wake|vigil|watch +viewing audience|1 +(noun)|TV audience|viewers|audience +viewless|1 +(adj)|neutral +viewpoint|2 +(noun)|point of view|stand|standpoint|position|stance|posture +(noun)|vantage point|vantage +vigdis finnbogadottir|1 +(noun)|Finnbogadottir|Vigdis Finnbogadottir|president +vigee-lebrun|1 +(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter +vigesimal|1 +(adj)|large integer +vigil|3 +(noun)|wakefulness +(noun)|watch|rite|religious rite +(noun)|watch|surveillance +vigil candle|1 +(noun)|vigil light|candle|taper|wax light +vigil light|1 +(noun)|vigil candle|candle|taper|wax light +vigilance|2 +(noun)|watchfulness|alertness|attention +(noun)|watchfulness|weather eye|attentiveness +vigilance committee|1 +(noun)|committee|citizens committee +vigilance man|1 +(noun)|vigilante|volunteer|unpaid worker +vigilant|1 +(adj)|argus-eyed|open-eyed|wakeful|watchful|alert +vigilante|1 +(noun)|vigilance man|volunteer|unpaid worker +vigilantism|1 +(noun)|law enforcement +vigilantly|1 +(adv)|watchfully +vigna|1 +(noun)|Vigna|genus Vigna|rosid dicot genus +vigna aconitifolia|1 +(noun)|moth bean|Vigna aconitifolia|Phaseolus aconitifolius|legume|leguminous plant +vigna angularis|1 +(noun)|adzuki bean|adsuki bean|Vigna angularis|Phaseolus angularis|legume|leguminous plant +vigna caracalla|1 +(noun)|snailflower|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume|leguminous plant +vigna radiata|1 +(noun)|mung|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume|leguminous plant +vigna sesquipedalis|1 +(noun)|asparagus bean|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume|leguminous plant +vigna sinensis|1 +(noun)|cowpea|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume|leguminous plant +vigna unguiculata|1 +(noun)|cowpea|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume|leguminous plant +vigna unguiculata sesquipedalis|1 +(noun)|asparagus bean|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume|leguminous plant +vignette|3 +(noun)|sketch|description +(noun)|photograph|photo|exposure|pic +(noun)|sketch|study +vigor|3 +(noun)|energy|vigour|force|forcefulness|strength +(noun)|vigour|strength +(noun)|energy|vigour|vim|liveliness|life|spirit|sprightliness +vigorish|2 +(noun)|usury|interest rate|rate of interest +(noun)|rake-off|cut +vigorous|2 +(adj)|energetic +(adj)|robust +vigorously|1 +(adv)|smartly +vigour|3 +(noun)|energy|vigor|force|forcefulness|strength +(noun)|vigor|strength +(noun)|energy|vigor|vim|liveliness|life|spirit|sprightliness +vii|2 +(adj)|seven|7|cardinal +(noun)|seven|7|VII|sevener|heptad|septet|digit|figure +viii|2 +(adj)|eight|8|cardinal +(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit|figure +viking|1 +(noun)|Viking|Scandinavian|Norse|Northman +viktor korchnoi|1 +(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master +viktor lvovich korchnoi|1 +(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master +viktor vasarely|1 +(noun)|Vasarely|Viktor Vasarely|painter +vila|1 +(noun)|Port Vila|Vila|capital of Vanuatu|national capital +vile|3 +(adj)|despicable|ugly|unworthy|evil |wicked +(adj)|filthy|foul|nasty|inclement +(adj)|nauseating|nauseous|noisome|loathsome|offensive|sickening|unwholesome +vileness|2 +(noun)|nefariousness|wickedness|evil|evilness +(noun)|loathsomeness|repulsiveness|sliminess|offensiveness|odiousness|distastefulness +vilfredo pareto|1 +(noun)|Pareto|Vilfredo Pareto|sociologist|economist|economic expert +vilification|2 +(noun)|smear|malignment|defamation|calumny|obloquy|traducement|hatchet job +(noun)|abuse|insult|revilement|contumely|disrespect|discourtesy +vilifier|1 +(noun)|defamer|maligner|slanderer|libeler|backbiter|traducer|detractor|disparager|depreciator|knocker +vilify|1 +(verb)|revile|vituperate|rail|abuse|clapperclaw|blackguard|shout +villa|4 +(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist|revolutionary|subversive|subverter +(noun)|house +(noun)|country house +(noun)|country house +villa-lobos|1 +(noun)|Villa-Lobos|Heitor Villa-Lobos|composer +village|3 +(noun)|small town|settlement|community +(noun)|hamlet|settlement +(noun)|Greenwich Village|Village|residential district|residential area|community +village green|1 +(noun)|park|commons|common|green +villager|1 +(noun)|inhabitant|dweller|denizen|indweller +villahermosa|1 +(noun)|Villahermosa|city|metropolis|urban center +villain|2 +(noun)|scoundrel|unwelcome person|persona non grata +(noun)|baddie|character|role|theatrical role|part|persona +villainage|1 +(noun)|villeinage|legal status|servitude +villainess|1 +(noun)|villain|scoundrel +villainous|1 +(adj)|nefarious|wicked +villainousness|1 +(noun)|villainy|evil|evilness +villainy|2 +(noun)|villainousness|evil|evilness +(noun)|transgression|evildoing +villard|1 +(noun)|Villard|Henry Villard|businessman|man of affairs +villein|1 +(noun)|serf|helot|thrall +villeinage|2 +(noun)|villainage|legal status|servitude +(noun)|tenure|land tenure +villoma|1 +(noun)|papilloma|papillary tumor|papillary tumour|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm +villon|1 +(noun)|Villon|Francois Villon|poet +villus|1 +(noun)|process|outgrowth|appendage +vilna|1 +(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital +vilnius|1 +(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital +vilno|1 +(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital +vim|2 +(noun)|energy|vitality|good health|healthiness +(noun)|energy|vigor|vigour|liveliness|life|spirit|sprightliness +viminaria|1 +(noun)|Viminaria|genus Viminaria|rosid dicot genus +viminaria denudata|1 +(noun)|swamp oak|Viminaria juncea|Viminaria denudata|shrub|bush +viminaria juncea|1 +(noun)|swamp oak|Viminaria juncea|Viminaria denudata|shrub|bush +vin ordinaire|1 +(noun)|table wine +vina del mar|1 +(noun)|Vina del Mar|city|metropolis|urban center +vinaceous|2 +(adj)|vinous|alcohol|alcoholic beverage|intoxicant|inebriant +(adj)|chromatic +vinaigrette|1 +(noun)|French dressing|sauce vinaigrette|dressing|salad dressing +vinblastine|1 +(noun)|Velban|periwinkle plant derivative +vinca|1 +(noun)|Vinca|genus Vinca|dicot genus|magnoliopsid genus +vinca major|1 +(noun)|large periwinkle|Vinca major|periwinkle +vinca minor|1 +(noun)|myrtle|Vinca minor|periwinkle +vinca rosea|1 +(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb|herbaceous plant +vincent's angina|1 +(noun)|Vincent's angina|Vincent's infection|trench mouth|contagious disease|contagion|angina +vincent's infection|1 +(noun)|Vincent's angina|Vincent's infection|trench mouth|contagious disease|contagion|angina +vincent van gogh|1 +(noun)|van Gogh|Vincent van Gogh|Gogh|painter +vincenzo bellini|1 +(noun)|Bellini|Vincenzo Bellini|composer +vincetoxicum|1 +(noun)|Vincetoxicum|genus Vincetoxicum|dicot genus|magnoliopsid genus +vincetoxicum hirsutum|1 +(noun)|negro vine|Vincetoxicum hirsutum|Vincetoxicum negrum|vine +vincetoxicum negrum|1 +(noun)|negro vine|Vincetoxicum hirsutum|Vincetoxicum negrum|vine +vincible|1 +(adj)|beatable|vanquishable|conquerable +vincristine|1 +(noun)|Oncovin|periwinkle plant derivative +vindicate|3 +(verb)|justify|uphold|maintain +(verb)|maintain|defend +(verb)|acquit|assoil|clear|discharge|exonerate|exculpate +vindicated|1 +(adj)|absolved|clear|cleared|exculpated|exonerated|innocent |guiltless|clean-handed +vindication|2 +(noun)|exoneration|clearing +(noun)|defense|defence|justification +vindicator|1 +(noun)|apologist|justifier|advocate|advocator|proponent|exponent +vindicatory|3 +(adj)|retaliatory|relatiative|retributive|retributory|punitive |punitory +(adj)|retributive|retributory|just +(adj)|justificative|justificatory|exculpatory +vindictive|2 +(adj)|revengeful|vengeful|unforgiving +(adj)|despiteful|spiteful|malicious +vindictively|1 +(adv)|revengefully|vengefully +vindictiveness|1 +(noun)|vengefulness|malevolence|malignity +vine|1 +(noun)|vascular plant|tracheophyte +vine cactus|1 +(noun)|ocotillo|coachwhip|Jacob's staff|Fouquieria splendens|candlewood +vine maple|1 +(noun)|Acer circinatum|maple +vine snake|1 +(noun)|colubrid snake|colubrid +vinegar|2 +(noun)|acetum|condiment +(noun)|acetic acid|ethanoic acid +vinegar eel|1 +(noun)|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm +vinegar fly|1 +(noun)|fruit fly|pomace fly +vinegar joe stilwell|1 +(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general|full general +vinegar tree|2 +(noun)|staghorn sumac|velvet sumac|Virginian sumac|Rhus typhina|sumac|sumach|shumac +(noun)|smooth sumac|scarlet sumac|Rhus glabra|sumac|sumach|shumac +vinegar worm|1 +(noun)|vinegar eel|Anguillula aceti|Turbatrix aceti|eelworm +vinegariness|1 +(noun)|vinegarishness|sourness|sour|acidity +vinegarishness|1 +(noun)|vinegariness|sourness|sour|acidity +vinegarroon|1 +(noun)|Mastigoproctus giganteus|whip-scorpion|whip scorpion +vinegarweed|1 +(noun)|turpentine camphor weed|camphorweed|Trichostema lanceolatum|blue curls +vinegary|1 +(adj)|acetose|acetous|sour +vinery|1 +(noun)|vineyard|farm +vineyard|1 +(noun)|vinery|farm +vingt-et-un|1 +(noun)|blackjack|twenty-one|card game|cards +viniculture|1 +(noun)|winemaking|trade|craft +vinifera|1 +(noun)|vinifera grape|common grape vine|Vitis vinifera|grape|grapevine +vinifera grape|2 +(noun)|vinifera|common grape vine|Vitis vinifera|grape|grapevine +(noun)|grape +vinification|1 +(noun)|zymosis|zymolysis|fermentation|fermenting|ferment +vinify|1 +(verb)|ferment|work +vino|1 +(noun)|wine|alcohol|alcoholic beverage|intoxicant|inebriant +vinogradoff|1 +(noun)|Vinogradoff|Sir Paul Gavrilovich Vinogradoff|historian|historiographer +vinous|1 +(adj)|vinaceous|alcohol|alcoholic beverage|intoxicant|inebriant +vinson|1 +(noun)|Vinson|Frederick Moore Vinson|jurist|legal expert +vintage|2 +(noun)|wine|vino +(noun)|time of origin|oldness +vintager|1 +(noun)|harvester|reaper +vintner|2 +(noun)|wine merchant|merchant|merchandiser +(noun)|winemaker|wine maker|maker|shaper +vinyl|2 +(noun)|vinyl group|vinyl radical|group|radical|chemical group +(noun)|plastic +vinyl cyanide|1 +(noun)|propenonitrile|acrylonitrile|nitrile|nitril|cyanide +vinyl ether|1 +(noun)|ether|ethoxyethane|divinyl ether|diethyl ether|ethyl ether|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic +vinyl group|1 +(noun)|vinyl|vinyl radical|group|radical|chemical group +vinyl polymer|1 +(noun)|vinyl resin|polyvinyl resin|synthetic resin +vinyl radical|1 +(noun)|vinyl|vinyl group|group|radical|chemical group +vinyl resin|1 +(noun)|vinyl polymer|polyvinyl resin|synthetic resin +vinylbenzene|1 +(noun)|styrene|cinnamene|phenylethylene|vinyl polymer|vinyl resin|polyvinyl resin +vinylite|1 +(noun)|Vinylite|plastic +viocin|1 +(noun)|viomycin|Viocin|antibiotic|antibiotic drug +viol|1 +(noun)|bowed stringed instrument|string +viola|3 +(noun)|herb|herbaceous plant +(noun)|Viola|genus Viola|dilleniid dicot genus +(noun)|bowed stringed instrument|string +viola arvensis|1 +(noun)|field pansy|heartsease|Viola arvensis|viola +viola blanda|1 +(noun)|sweet white violet|white violet|woodland white violet|Viola blanda|violet +viola canadensis|1 +(noun)|Canada violet|tall white violet|white violet|Viola canadensis|violet +viola canina|1 +(noun)|dog violet|heath violet|Viola canina|violet +viola clef|1 +(noun)|alto clef|clef +viola conspersa|1 +(noun)|American dog violet|Viola conspersa|violet +viola cornuta|1 +(noun)|horned violet|tufted pansy|Viola cornuta|viola +viola d'amore|1 +(noun)|viol +viola da braccio|1 +(noun)|viol +viola da gamba|1 +(noun)|bass viol|viol +viola ocellata|1 +(noun)|two-eyed violet|heartsease|Viola ocellata|violet +viola odorata|1 +(noun)|sweet violet|garden violet|English violet|Viola odorata|violet +viola pedata|1 +(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet +viola pubescens|1 +(noun)|downy yellow violet|Viola pubescens|violet +viola reichenbachiana|1 +(noun)|hedge violet|wood violet|Viola sylvatica|Viola reichenbachiana|violet +viola rostrata|1 +(noun)|long-spurred violet|Viola rostrata|violet +viola striata|1 +(noun)|pale violet|striped violet|cream violet|Viola striata|violet +viola sylvatica|1 +(noun)|hedge violet|wood violet|Viola sylvatica|Viola reichenbachiana|violet +viola tricolor|1 +(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola +viola tricolor hortensis|1 +(noun)|pansy|Viola tricolor hortensis|viola +violable|1 +(adj)|violable +violaceae|1 +(noun)|Violaceae|family Violaceae|violet family|dilleniid dicot family +violate|6 +(verb)|go against|break +(verb)|transgress|offend|infract|go against|breach|break|disrespect +(verb)|touch|disturb +(verb)|desecrate|profane|outrage|assail|assault|set on|attack +(verb)|rape|ravish|assault|dishonor|dishonour|outrage|assail|assault|set on|attack +(verb)|rape|spoil|despoil|plunder|destroy|ruin +violated|1 +(adj)|profaned|desecrated +violation|5 +(noun)|misdemeanor|misdemeanour|infraction|offence|offense|infringement|crime|law-breaking +(noun)|infringement|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|trespass|encroachment|intrusion|usurpation|wrongdoing|wrongful conduct|misconduct|actus reus +(noun)|irreverence|evil|immorality|wickedness|iniquity +(noun)|rape|assault|ravishment|sexual assault|sexual abuse|sex crime|sex offense +violative|1 +(adj)|offensive|offending +violator|2 +(noun)|lawbreaker|law offender|criminal|felon|crook|outlaw|malefactor +(noun)|debaucher|ravisher|libertine|debauchee|rounder +violence|3 +(noun)|force|aggression|hostility +(noun)|ferocity|fierceness|furiousness|fury|vehemence|wildness|intensity|intensiveness +(noun)|turbulence|upheaval|Sturm und Drang +violent|5 +(adj)|violent |convulsive|ferocious|fierce|furious|savage|hot|raging|knockdown-dragout|knock-down-and-drag-out|lashing|lurid|rampageous|ruffianly|tough|slam-bang|terrorist|hostile|unpeaceful +(adj)|unnatural +(adj)|wild|intense +(adj)|fierce|tearing|vehement|trigger-happy|intense +(adj)|crimson|red|bloody +violent death|1 +(noun)|killing|fatality|human death +violent disorder|1 +(noun)|rampage|disturbance +violent storm|1 +(noun)|storm|atmospheric phenomenon +violent stream|1 +(noun)|torrent|current|stream +violet|3 +(adj)|purple|purplish|chromatic +(noun)|viola +(noun)|reddish blue|purple|purpleness|empurpled +violet-flowered petunia|1 +(noun)|Petunia integrifolia|petunia +violet family|1 +(noun)|Violaceae|family Violaceae|dilleniid dicot family +violet suksdorfia|1 +(noun)|Suksdorfia violaceae|suksdorfia +violet wood sorrel|1 +(noun)|Oxalis violacea|oxalis|sorrel|wood sorrel +violin|1 +(noun)|fiddle|bowed stringed instrument|string +violin bow|1 +(noun)|fiddlestick|bow +violin lesson|1 +(noun)|music lesson +violin maker|1 +(noun)|maker|shaper +violin section|1 +(noun)|string section|strings +violinist|1 +(noun)|fiddler|musician|instrumentalist|player +violist|1 +(noun)|musician|instrumentalist|player +violoncello|1 +(noun)|cello|bowed stringed instrument|string +viomycin|1 +(noun)|Viocin|antibiotic|antibiotic drug +viorna baldwinii|1 +(noun)|pine hyacinth|Clematis baldwinii|Viorna baldwinii|clematis +viosterol|1 +(noun)|vitamin D|calciferol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin +vioxx|1 +(noun)|rofecoxib|Vioxx|Cox-2 inhibitor +vip|1 +(noun)|very important person|VIP|high-up|dignitary|panjandrum|high muckamuck|important person|influential person|personage +viper|1 +(noun)|snake|serpent|ophidian +viper's bugloss|1 +(noun)|blueweed|blue devil|blue thistle|Echium vulgare|herb|herbaceous plant +viper's grass|1 +(noun)|black salsify|scorzonera|Scorzonera hispanica|herb|herbaceous plant +vipera|1 +(noun)|Vipera|genus Vipera|reptile genus +vipera aspis|1 +(noun)|asp|asp viper|Vipera aspis|viper +vipera berus|1 +(noun)|adder|common viper|Vipera berus|viper +viperidae|1 +(noun)|Viperidae|family Viperidae|reptile family +viperine grass snake|1 +(noun)|Natrix maura|grass snake|ring snake|ringed snake|Natrix natrix +viracept|1 +(noun)|nelfinavir|Viracept|protease inhibitor|PI +viraemia|1 +(noun)|viremia|pathology +virago|2 +(noun)|shrew|termagant +(noun)|amazon|woman|adult female +viral|1 +(adj)|microorganism|infectious agent|infective agent +viral delivery vector|1 +(noun)|transducing vector|gene delivery vector +viral haemorrhagic fever|1 +(noun)|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|VHF|viral infection|virus infection +viral hemorrhagic fever|1 +(noun)|hemorrhagic fever|haemorrhagic fever|viral haemorrhagic fever|VHF|viral infection|virus infection +viral hepatitis|1 +(noun)|hepatitis +viral infection|1 +(noun)|virus infection|infection +viral pneumonia|1 +(noun)|viral infection|virus infection|pneumonia +viramune|1 +(noun)|nevirapine|Viramune|non-nucleoside reverse transcriptase inhibitor|NNRTI +virazole|1 +(noun)|ribavirin|Virazole|antiviral|antiviral agent|antiviral drug +virchow|1 +(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician|pathologist +viremia|1 +(noun)|viraemia|pathology +vireo|1 +(noun)|oscine|oscine bird +vireo olivaceous|1 +(noun)|red-eyed vireo|Vireo olivaceous|vireo +vireo solitarius|1 +(noun)|solitary vireo|Vireo solitarius|vireo +vireo solitarius solitarius|1 +(noun)|blue-headed vireo|Vireo solitarius solitarius|vireo +vireonidae|1 +(noun)|Vireonidae|family Vireonidae|bird family +virga|1 +(noun)|precipitation|downfall +virgil|1 +(noun)|Virgil|Vergil|Publius Vergilius Maro|poet +virgil garnett thomson|1 +(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer +virgil thomson|1 +(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer +virgilia|1 +(noun)|Virgilia|genus Virgilia|rosid dicot genus +virgilia capensis|1 +(noun)|keurboom|Virgilia capensis|Virgilia oroboides|tree +virgilia divaricata|1 +(noun)|keurboom|Virgilia divaricata|tree +virgilia oroboides|1 +(noun)|keurboom|Virgilia capensis|Virgilia oroboides|tree +virgin|5 +(adj)|new +(adj)|pure|vestal|virginal|virtuous|chaste +(noun)|innocent|inexperienced person +(noun)|Virgo|Virgin|person|individual|someone|somebody|mortal|human|soul +(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac|star sign|sign|mansion|house|planetary house +virgin's bower|1 +(noun)|old man's beard|devil's darning needle|Clematis virginiana|clematis +virgin birth|2 +(noun)|parthenogenesis|parthenogeny|asexual reproduction|agamogenesis +(noun)|Virgin Birth|Nativity|theological doctrine|religious doctrine +virgin forest|1 +(noun)|old growth|forest|wood|woods +virgin islands|1 +(noun)|Virgin Islands|island +virgin islands national park|1 +(noun)|Virgin Islands National Park|national park +virgin mary|2 +(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess|mother|female parent +(noun)|Virgin Mary|bloody shame|Bloody Mary +virgin wool|1 +(noun)|wool +virginal|4 +(adj)|condition|status +(adj)|pure +(adj)|pure|vestal|virgin|virtuous|chaste +(noun)|pair of virginals|harpsichord|cembalo +virginal membrane|1 +(noun)|hymen|maidenhead|mucous membrane|mucosa +virginia|3 +(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state +(noun)|Virginia|Colony +(noun)|Virginia|town +virginia beach|1 +(noun)|Virginia Beach|city|metropolis|urban center +virginia bluebell|1 +(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb|herbaceous plant +virginia chain fern|1 +(noun)|Virginia chain fern|Woodwardia virginica|chain fern +virginia cowslip|1 +(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb|herbaceous plant +virginia creeper|1 +(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine +virginia crownbeard|1 +(noun)|Virginia crownbeard|frostweed|frost-weed|Verbesina virginica|crownbeard|crown-beard|crown beard +virginia deer|1 +(noun)|Virginia deer|white tail|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer|cervid +virginia fence|1 +(noun)|worm fence|snake fence|snake-rail fence|Virginia fence|rail fence +virginia ham|1 +(noun)|Virginia ham|ham|jambon|gammon +virginia mallow|1 +(noun)|Virginia mallow|Sida hermaphrodita|mallow +virginia mcmath|1 +(noun)|Rogers|Ginger Rogers|Virginia McMath|dancer|professional dancer|actress +virginia oyster|1 +(noun)|Virginia oyster|oyster +virginia pine|1 +(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine|pine tree|true pine +virginia reel|1 +(noun)|Virginia reel|reel|longways|longways dance +virginia serpentaria|1 +(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort|Aristolochia clematitis +virginia serpentary|1 +(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort|Aristolochia clematitis +virginia snakeroot|1 +(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort|Aristolochia clematitis +virginia spring beauty|1 +(noun)|Virginia spring beauty|Claytonia virginica|flower +virginia stock|1 +(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower +virginia strawberry|1 +(noun)|Virginia strawberry|scarlet strawberry|Fragaria virginiana|strawberry +virginia thimbleweed|1 +(noun)|Virginia thimbleweed|Anemone virginiana|thimbleweed|Anemone cylindrica +virginia wade|1 +(noun)|Wade|Virginia Wade|tennis player +virginia waterleaf|1 +(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf +virginia woolf|1 +(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer|author +virginian|1 +(noun)|Virginian|American +virginian stock|1 +(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower +virginian sumac|1 +(noun)|staghorn sumac|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac|sumach|shumac +virginian witch hazel|1 +(noun)|Virginian witch hazel|Hamamelis virginiana|witch hazel|wych hazel +virginity|1 +(noun)|condition|status +virgo|3 +(noun)|Virgo|Virgin|person|individual|someone|somebody|mortal|human|soul +(noun)|Virgo|constellation +(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac|star sign|sign|mansion|house|planetary house +virgo the virgin|1 +(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac|star sign|sign|mansion|house|planetary house +virgule|1 +(noun)|solidus|slash|diagonal|stroke|separatrix|punctuation|punctuation mark +viricidal|1 +(adj)|virucidal|agent +viricide|1 +(noun)|virucide|agent +viridity|1 +(noun)|green|greenness|chromatic color|chromatic colour|spectral color|spectral colour +virile|3 +(adj)|strong +(adj)|male|manful|manlike|manly|masculine +(adj)|potent +virilisation|1 +(noun)|masculinization|masculinisation|virilization|growth|growing|maturation|development|ontogeny|ontogenesis +virilise|1 +(verb)|masculinize|masculinise|virilize|change|alter|modify +virility|2 +(noun)|maleness|masculinity +(noun)|manfulness|manliness|masculinity +virility drug|1 +(noun)|anit-impotence drug|drug +virilization|1 +(noun)|masculinization|masculinisation|virilisation|growth|growing|maturation|development|ontogeny|ontogenesis +virilize|1 +(verb)|masculinize|masculinise|virilise|change|alter|modify +virino|1 +(noun)|particle +virion|1 +(noun)|particle +viroid|1 +(noun)|virusoid|plant virus +virological|1 +(adj)|medicine|medical specialty +virologist|1 +(noun)|microbiologist +virology|1 +(noun)|medicine|medical specialty +virtu|3 +(noun)|vertu|connoisseurship|taste|appreciation|discernment|perceptiveness +(noun)|vertu|quality +(noun)|objet d'art|art object|piece +virtual|2 +(adj)|practical|realistic +(adj)|essential +virtual image|1 +(noun)|reflection|reflexion +virtual memory|1 +(noun)|virtual storage|memory|computer memory|storage|computer storage|store|memory board +virtual reality|1 +(noun)|computer game|video game +virtual storage|1 +(noun)|virtual memory|memory|computer memory|storage|computer storage|store|memory board +virtually|2 +(adv)|literally +(adv)|about|just about|almost|most|all but|nearly|near|nigh|well-nigh +virtue|4 +(noun)|virtuousness|moral excellence|good|goodness +(noun)|merit|worth +(noun)|chastity|sexual morality|morality +(noun)|good|goodness +virtuosity|1 +(noun)|skill|science +virtuoso|3 +(adj)|consummate|masterful|masterly|skilled +(noun)|ace|adept|champion|sensation|maven|mavin|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert +(noun)|musician +virtuous|4 +(adj)|good|just|upright|righteous +(adj)|virtuous |impeccable|impeccant|innocent|sinless|chaste|good|moral|pious|righteous +(adj)|moral +(adj)|pure|vestal|virgin|virginal|chaste +virtuously|2 +(adv)|morally +(adv)|chastely +virtuousness|1 +(noun)|virtue|moral excellence|good|goodness +virucidal|1 +(adj)|viricidal|agent +virucide|1 +(noun)|viricide|agent +virulence|2 +(noun)|virulency|harmfulness|injuriousness +(noun)|virulency|hostility|ill will +virulency|2 +(noun)|virulence|harmfulness|injuriousness +(noun)|virulence|hostility|ill will +virulent|3 +(adj)|deadly|venomous|toxic +(adj)|virulent |deadly|highly infective +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|vitriolic|unpleasant +virus|3 +(noun)|microorganism|infectious agent|infective agent +(noun)|representation|delegacy|agency +(noun)|computer virus|malevolent program +virus infection|1 +(noun)|viral infection|infection +virusoid|1 +(noun)|viroid|plant virus +vis-a-vis|2 +(noun)|counterpart|opposite number|equivalent +(noun)|love seat|tete-a-tete|sofa|couch|lounge +vis major|1 +(noun)|act of God|force majeure|inevitable accident|unavoidable casualty|calamity|catastrophe|disaster|tragedy|cataclysm +visa|3 +(noun)|sanction|countenance|endorsement|indorsement|warrant|imprimatur +(verb)|endorse|indorse +(verb)|approve|O.K.|okay|sanction +visage|2 +(noun)|countenance|physiognomy|phiz|kisser|smiler|mug|face|human face +(noun)|countenance|appearance|visual aspect +visaged|1 +(adj)|faced +visayan|1 +(noun)|Visayan|Bisayan|Filipino +visayan islands|1 +(noun)|Visayan Islands|Bisayas|island +viscaceae|1 +(noun)|Viscaceae|family Viscaceae|mistletoe family|dilleniid dicot family +viscacha|1 +(noun)|chinchillon|Lagostomus maximus|rodent|gnawer|gnawing animal +viscera|1 +(noun)|entrails|innards|internal organ|viscus +visceral|2 +(adj)|splanchnic|internal organ|viscus +(adj)|intuitive|nonrational|illogical |unlogical +visceral brain|1 +(noun)|limbic system|limbic brain|neural structure +visceral leishmaniasis|1 +(noun)|kala-azar|Assam fever|dumdum fever|leishmaniasis|leishmaniosis|kala azar +visceral pericardium|1 +(noun)|epicardium|serous membrane|serosa +visceral pleura|1 +(noun)|pleura +viscerally|1 +(adv)|unreasoningly +viscid|1 +(adj)|gluey|glutinous|gummy|mucilaginous|pasty|sticky|viscous|adhesive +viscid mushroom|1 +(noun)|nameko|Pholiota nameko|agaric +viscidity|1 +(noun)|cohesiveness|glueyness|gluiness|gumminess|ropiness|viscidness|viscosity|viscousness +viscidly|1 +(adv)|stickily +viscidness|1 +(noun)|cohesiveness|glueyness|gluiness|gumminess|ropiness|viscidity|viscosity|viscousness +viscoelastic|1 +(adj)|elastic +viscometer|1 +(noun)|viscosimeter|measuring instrument|measuring system|measuring device +viscometric|1 +(adj)|viscosimetric|measuring instrument|measuring system|measuring device +viscometry|1 +(noun)|measurement|measuring|measure|mensuration +visconti|1 +(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker|filmmaker|film producer|movie maker +viscose|2 +(noun)|cellulose xanthate|cellulose ester|xanthate +(noun)|viscose rayon|rayon +viscose rayon|1 +(noun)|viscose|rayon +viscosimeter|1 +(noun)|viscometer|measuring instrument|measuring system|measuring device +viscosimetric|1 +(adj)|viscometric|measuring instrument|measuring system|measuring device +viscosity|1 +(noun)|viscousness|consistency|consistence|body +viscount|2 +(noun)|Lord|noble|nobleman +(noun)|Viscount|peer +viscount nelson|1 +(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral|full admiral +viscount northcliffe|1 +(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher|newspaper publisher +viscount st. albans|1 +(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman|solon|national leader|philosopher +viscountcy|2 +(noun)|viscounty|rank +(noun)|title +viscountess|2 +(noun)|wife|married woman +(noun)|peer +viscountess astor|1 +(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess|politician|politico|pol|political leader +viscounty|2 +(noun)|viscountcy|rank +(noun)|domain|demesne|land +viscous|2 +(adj)|syrupy|thick +(adj)|gluey|glutinous|gummy|mucilaginous|pasty|sticky|viscid|adhesive +viscousness|1 +(noun)|viscosity|consistency|consistence|body +viscum|1 +(noun)|Viscum|genus Viscum|dilleniid dicot genus +viscum album|1 +(noun)|mistletoe|Viscum album|Old World mistletoe|parasitic plant +viscus|1 +(noun)|internal organ|organ +vise|1 +(noun)|bench vise|holding device +viselike|1 +(adj)|tight +vishnu|1 +(noun)|Vishnu|Hindu deity +vishnuism|1 +(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism|Hindooism +visibility|3 +(noun)|visibleness|perceptibility +(noun)|profile|salience|saliency|strikingness +(noun)|clearness|clarity|uncloudedness +visible|4 +(adj)|visible |seeable|apparent|circumpolar|in sight|in view|ocular|visual|panoptic|panoptical|telescopic|viewable|perceptible +(adj)|obvious|overt |open +(adj)|unconcealed +(adj)|on hand|available +visible balance|1 +(noun)|balance of trade|trade balance|trade gap|balance +visible horizon|1 +(noun)|horizon|apparent horizon|sensible horizon|skyline|line +visible light|1 +(noun)|light|visible radiation|actinic radiation|actinic ray +visible radiation|1 +(noun)|light|visible light|actinic radiation|actinic ray +visible spectrum|1 +(noun)|color spectrum|spectrum +visible speech|2 +(noun)|phonetic alphabet|sound alphabet +(noun)|spectrogram|spectrograph +visibleness|1 +(noun)|visibility|perceptibility +visigoth|1 +(noun)|Visigoth|Goth +vision|5 +(noun)|imagination|imaging|imagery|mental imagery +(noun)|sight|visual sense|visual modality|modality|sense modality|sensory system|exteroception +(noun)|visual sensation|sensation|sense experience|sense impression|sense datum +(noun)|imagination|imaginativeness|creativity|creativeness|creative thinking +(noun)|experience +vision defect|1 +(noun)|visual impairment|visual defect|visual disorder|disability|disablement|handicap|impairment +visionary|3 +(adj)|airy|impractical|Laputan|utopian +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|illusionist|seer|intellectual|intellect +visit|13 +(noun)|meeting|coming together +(noun)|meeting|get together +(noun)|meeting|coming together +(noun)|meeting|coming together +(noun)|sojourn|stay +(verb)|see|tour +(verb)|travel to|travel|trip|jaunt +(verb)|call in|call|meet|get together +(verb)|inspect +(verb)|inflict|bring down|impose|communicate|intercommunicate +(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|converse|discourse +(verb)|bide|abide|stay +(verb)|afflict|smite +visitant|1 +(noun)|visitor|traveler|traveller +visitation|3 +(noun)|trial|tribulation|affliction +(noun)|calamity|catastrophe|disaster|tragedy|cataclysm +(noun)|visit +visitation rights|1 +(noun)|legal right +visiting|2 +(adj)|guest|impermanent |temporary +(noun)|visit +visiting card|1 +(noun)|calling card|card|greeting|salutation +visiting fireman|1 +(noun)|visitor|visitant +visiting nurse|1 +(noun)|nurse +visiting professor|1 +(noun)|professor|prof +visitor|1 +(noun)|visitant|traveler|traveller +visken|1 +(noun)|pindolol|Visken|beta blocker|beta-adrenergic blocker|beta-adrenergic blocking agent +visor|2 +(noun)|vizor|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|bill|peak|eyeshade|vizor|brim +visored|1 +(adj)|equipped |equipt +vista|1 +(noun)|view|aspect|prospect|scene|panorama|visual percept|visual image +vistaril|1 +(noun)|hydroxyzine hydrochloride|hydroxyzine|Atarax|Vistaril|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug +vistula|1 +(noun)|Vistula|Vistula River|river +vistula river|1 +(noun)|Vistula|Vistula River|river +visual|2 +(adj)|ocular|optic|optical|modality|sense modality|sensory system|exteroception +(adj)|ocular|visible |seeable +visual acuity|1 +(noun)|acuity|sharp-sightedness|sight|vision|visual sense|visual modality +visual agnosia|1 +(noun)|agnosia +visual aphasia|1 +(noun)|alexia|word blindness|aphasia +visual area|1 +(noun)|visual cortex|cortical area|cortical region +visual aspect|1 +(noun)|appearance|quality +visual cell|1 +(noun)|somatic cell|vegetative cell +visual communication|1 +(noun)|communication +visual cortex|1 +(noun)|visual area|cortical area|cortical region +visual defect|1 +(noun)|visual impairment|vision defect|visual disorder|disability|disablement|handicap|impairment +visual disorder|1 +(noun)|visual impairment|visual defect|vision defect|disability|disablement|handicap|impairment +visual display unit|1 +(noun)|VDU|display|presentation +visual field|1 +(noun)|field of vision|field of regard|visual percept|visual image +visual hallucination|1 +(noun)|hallucination +visual image|2 +(noun)|visualization|visualisation|image|mental image +(noun)|visual percept|percept|perception|perceptual experience +visual impairment|1 +(noun)|visual defect|vision defect|visual disorder|disability|disablement|handicap|impairment +visual joke|1 +(noun)|sight gag|joke|gag|laugh|jest|jape +visual modality|1 +(noun)|sight|vision|visual sense|modality|sense modality|sensory system|exteroception +visual percept|1 +(noun)|visual image|percept|perception|perceptual experience +visual perception|1 +(noun)|beholding|seeing|perception +visual property|1 +(noun)|property +visual purple|1 +(noun)|rhodopsin|retinal purple|photopigment +visual range|1 +(noun)|visibility|visibleness +visual sensation|1 +(noun)|vision|sensation|sense experience|sense impression|sense datum +visual sense|1 +(noun)|sight|vision|visual modality|modality|sense modality|sensory system|exteroception +visual signal|1 +(noun)|signal|signaling|sign +visual space|1 +(noun)|visual perception|beholding|seeing +visual system|1 +(noun)|sensory system +visualisation|1 +(noun)|visual image|visualization|image|mental image +visualise|4 +(verb)|visualize|watch|view|see|catch|take in +(verb)|visualize|imagine|conceive of|ideate|envisage +(verb)|visualize|envision|project|fancy|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|visualize|change|alter|modify +visualised|1 +(adj)|envisioned|pictured|visualized|unreal +visualiser|1 +(noun)|visualizer|perceiver|observer|beholder +visualization|1 +(noun)|visual image|visualisation|image|mental image +visualize|4 +(verb)|visualise|envision|project|fancy|see|figure|picture|image|imagine|conceive of|ideate|envisage +(verb)|visualise|watch|view|see|catch|take in +(verb)|visualise|imagine|conceive of|ideate|envisage +(verb)|visualise|change|alter|modify +visualized|1 +(adj)|envisioned|pictured|visualised|unreal +visualizer|1 +(noun)|visualiser|perceiver|observer|beholder +visually challenged|1 +(adj)|dim-sighted|near-blind|purblind|sand-blind|visually impaired|blind |unsighted +visually handicapped person|1 +(noun)|handicapped person +visually impaired|2 +(adj)|dim-sighted|near-blind|purblind|sand-blind|visually challenged|blind |unsighted +(adj)|impaired +vitaceae|1 +(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family|magnoliopsid family +vital|4 +(adj)|critical|indispensable +(adj)|life-sustaining|essential +(adj)|full of life|lively|animated |alive +(adj)|alive +vital capacity|1 +(noun)|capacity|content|diagnostic test|diagnostic assay +vital force|1 +(noun)|life force|vitality|elan vital|force +vital organ|1 +(noun)|vitals|organ +vital principle|1 +(noun)|life principle|causal agent|cause|causal agency +vital sign|1 +(noun)|sign +vital statistics|1 +(noun)|statistic +vitalisation|1 +(noun)|vitalization|physiological state|physiological condition +vitalise|2 +(verb)|vitalize|change|alter|modify +(verb)|vitalize|strengthen|beef up|fortify +vitaliser|1 +(noun)|energizer|energiser|vitalizer|animator|actor|doer|worker +vitalism|1 +(noun)|philosophical doctrine|philosophical theory +vitalist|1 +(noun)|believer|truster +vitality|4 +(noun)|verve|energy|vigor|vigour|vim +(noun)|energy|vim|good health|healthiness +(noun)|life force|vital force|elan vital|force +(noun)|animation|animateness|aliveness|liveness +vitalization|1 +(noun)|vitalisation|physiological state|physiological condition +vitalize|2 +(verb)|vitalise|change|alter|modify +(verb)|vitalise|strengthen|beef up|fortify +vitalizer|1 +(noun)|energizer|energiser|vitaliser|animator|actor|doer|worker +vitalizing|1 +(adj)|life-giving|invigorating +vitalness|2 +(noun)|indispensability|indispensableness|essentiality|essentialness +(noun)|essentiality|essentialness +vitals|1 +(noun)|vital organ|organ +vitamin|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +vitamin-deficiency diet|1 +(noun)|high-vitamin diet|diet +vitamin a|1 +(noun)|vitamin A|antiophthalmic factor|axerophthol|A|fat-soluble vitamin +vitamin a1|1 +(noun)|vitamin A1|retinol|vitamin A|antiophthalmic factor|axerophthol|A +vitamin a2|1 +(noun)|vitamin A2|dehydroretinol|vitamin A|antiophthalmic factor|axerophthol|A +vitamin b|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +vitamin b1|1 +(noun)|vitamin B1|thiamine|thiamin|aneurin|antiberiberi factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin b12|1 +(noun)|vitamin B12|cobalamin|cyanocobalamin|antipernicious anemia factor|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin b2|1 +(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin b6|1 +(noun)|vitamin B6|pyridoxine|pyridoxal|pyridoxamine|adermin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin b complex|1 +(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin +vitamin bc|1 +(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin c|1 +(noun)|vitamin C|ascorbic acid|water-soluble vitamin|antioxidant +vitamin d|1 +(noun)|vitamin D|calciferol|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin +vitamin e|1 +(noun)|vitamin E|tocopherol|E|fat-soluble vitamin|antioxidant +vitamin g|1 +(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin h|1 +(noun)|biotin|vitamin H|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin k|1 +(noun)|vitamin K|naphthoquinone|antihemorrhagic factor|fat-soluble vitamin +vitamin k1|1 +(noun)|vitamin K1|phylloquinone|phytonadione|vitamin K|naphthoquinone|antihemorrhagic factor +vitamin k3|1 +(noun)|vitamin K3|menadione|vitamin K|naphthoquinone|antihemorrhagic factor +vitamin m|1 +(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B +vitamin p|1 +(noun)|vitamin P|bioflavinoid|citrin|water-soluble vitamin +vitamin pill|1 +(noun)|pill|lozenge|tablet|tab|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +vitaminise|1 +(verb)|vitaminize|supplement +vitaminize|1 +(verb)|vitaminise|supplement +vitelline circulation|1 +(noun)|circulation +vitelline sac|1 +(noun)|yolk sac|umbilical vesicle|vesicula umbilicus|sac +vitellus|1 +(noun)|yolk|food|nutrient +vithar|1 +(noun)|Vitharr|Vithar|Vidar|Norse deity +vitharr|1 +(noun)|Vitharr|Vithar|Vidar|Norse deity +viti levu|1 +(noun)|Viti Levu|island +vitiate|3 +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|deprave|misdirect|change|alter|modify +(verb)|mar|impair|spoil|deflower|damage +(verb)|invalidate|void|change|alter|modify +vitiated|2 +(adj)|diminished|lessened|weakened|impaired +(adj)|corrupted|debased|corrupt +vitiation|1 +(noun)|nullification|override +viticulture|1 +(noun)|culture +viticulturist|1 +(noun)|agriculturist|cultivator|grower|raiser +vitidaceae|1 +(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family|magnoliopsid family +vitiliginous|1 +(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +vitiligo|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +vitis|1 +(noun)|Vitis|genus Vitis|dicot genus|magnoliopsid genus +vitis labrusca|1 +(noun)|fox grape|Vitis labrusca|grape|grapevine +vitis rotundifolia|1 +(noun)|muscadine|Vitis rotundifolia|grape|grapevine +vitis vinifera|1 +(noun)|vinifera|vinifera grape|common grape vine|Vitis vinifera|grape|grapevine +vitreous|3 +(adj)|liquid body substance|bodily fluid|body fluid|humor|humour +(adj)|solid +(adj)|glassy|vitrified|glazed |shiny +vitreous body|1 +(noun)|vitreous humor|vitreous humour|liquid body substance|bodily fluid|body fluid|humor|humour +vitreous humor|1 +(noun)|vitreous humour|vitreous body|liquid body substance|bodily fluid|body fluid|humor|humour +vitreous humour|1 +(noun)|vitreous humor|vitreous body|liquid body substance|bodily fluid|body fluid|humor|humour +vitreous silica|1 +(noun)|quartz glass|quartz|lechatelierite|crystal|natural glass +vitrification|2 +(noun)|solid +(noun)|natural process|natural action|action|activity +vitrified|1 +(adj)|glassy|vitreous|glazed |shiny +vitrify|2 +(verb)|change|alter|modify +(verb)|change +vitriol|4 +(noun)|oil of vitriol|sulfuric acid|sulphuric acid|acid +(noun)|vituperation|invective|abuse|insult|revilement|contumely|vilification +(verb)|subject +(verb)|attack|round|assail|lash out|snipe|assault +vitriolic|2 +(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|unpleasant +(adj)|caustic|corrosive|erosive|destructive +vitriolically|1 +(adv)|caustically +vittaria|1 +(noun)|Vittaria|genus Vittaria|fern genus +vittaria lineata|1 +(noun)|grass fern|ribbon fern|Vittaria lineata|fern +vittariaceae|1 +(noun)|Vittariaceae|family Vittariaceae|fern family +vittorio de sica|1 +(noun)|De Sica|Vittorio De Sica|film maker|filmmaker|film producer|movie maker +vituperate|1 +(verb)|vilify|revile|rail|abuse|clapperclaw|blackguard|shout +vituperation|1 +(noun)|invective|vitriol|abuse|insult|revilement|contumely|vilification +vituperative|1 +(adj)|scathing|blistering|scalding|critical +vitus|1 +(noun)|Vitus|St. Vitus|martyr|saint +vitus behring|1 +(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator +vitus bering|1 +(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator +viva|1 +(noun)|oral|oral exam|oral examination|viva voce|examination|exam|test +viva-voce|1 +(adj)|word-of-mouth|spoken +viva voce|2 +(noun)|oral|oral exam|oral examination|viva|examination|exam|test +(adv)|by word of mouth +vivace|1 +(adj)|fast +vivacious|1 +(adj)|vibrant|spirited +vivacity|1 +(noun)|high-spiritedness +vivaldi|1 +(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer|violinist|fiddler +vivarium|1 +(noun)|enclosure +viverra|1 +(noun)|Viverra|genus Viverra|mammal genus +viverra zibetha|1 +(noun)|large civet|Viverra zibetha|civet|civet cat +viverricula|1 +(noun)|Viverricula|genus Viverricula|mammal genus +viverricula indica|1 +(noun)|small civet|Viverricula indica|Viverricula malaccensis|civet|civet cat +viverricula malaccensis|1 +(noun)|small civet|Viverricula indica|Viverricula malaccensis|civet|civet cat +viverridae|1 +(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family +viverrinae|1 +(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family +viverrine|1 +(noun)|viverrine mammal|carnivore +viverrine mammal|1 +(noun)|viverrine|carnivore +vivid|4 +(adj)|graphic|lifelike|pictorial|realistic +(adj)|clear +(adj)|bright|brilliant|colorful |colourful +(adj)|intense|saturated |pure +vividness|2 +(noun)|color|colour|interest|interestingness +(noun)|saturation|chroma|intensity|color property +vivien leigh|1 +(noun)|Leigh|Vivien Leigh|actress +vivification|2 +(noun)|animation|spiritedness|invigoration|brio|activeness|activity +(noun)|invigoration|animation|energizing|activating|activation +vivify|2 +(verb)|animate|recreate|reanimate|revive|renovate|repair|quicken|revivify|stimulate|arouse|brace|energize|energise|perk up +(verb)|change|alter|modify +viviparous|1 +(adj)|viviparous +viviparous eelpout|1 +(noun)|Zoarces viviparus|eelpout|pout +vivisect|1 +(verb)|dissect +vivisection|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +vivisectionist|1 +(noun)|biologist|life scientist +vixen|1 +(noun)|harpy|hellcat|unpleasant woman|disagreeable woman +vixenish|1 +(adj)|malicious +viyella|1 +(noun)|Viyella|fabric|cloth|material|textile +viz.|1 +(adv)|namely|that is to say|videlicet +vizcaino|1 +(noun)|Vizcaino|Sebastian Vizcaino|explorer|adventurer +vizier|1 +(noun)|official|functionary +viziership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +vizla|1 +(noun)|Hungarian pointer|pointer|Spanish pointer +vizor|2 +(noun)|visor|armor plate|armour plate|armor plating|plate armor|plate armour +(noun)|bill|peak|eyeshade|visor|brim +vladimir horowitz|1 +(noun)|Horowitz|Vladimir Horowitz|pianist|piano player +vladimir ilich lenin|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +vladimir ilich ulyanov|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +vladimir ilyich lenin|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +vladimir ilyich ulyanov|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +vladimir kosma zworykin|1 +(noun)|Zworykin|Vladimir Kosma Zworykin|physicist +vladimir lenin|1 +(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik|Bolshevist +vladimir nabokov|1 +(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer|author +vladimir putin|1 +(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman|solon|national leader +vladimir vladimirovich mayakovski|1 +(noun)|Mayakovski|Vladimir Vladimirovich Mayakovski|poet +vladimir vladimirovich nabokov|1 +(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer|author +vladimir vladimirovich putin|1 +(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman|solon|national leader +vladivostok|1 +(noun)|Vladivostok|city|metropolis|urban center +vlaminck|1 +(noun)|Vlaminck|Maurice de Vlaminck|painter +vldl|1 +(noun)|very low density lipoprotein|VLDL|lipoprotein +vlf|1 +(noun)|very low frequency|VLF|radio frequency +vocable|1 +(noun)|spoken word|word +vocabulary|3 +(noun)|wordbook +(noun)|lexicon|mental lexicon|cognition|knowledge|noesis +(noun)|frame of reference +vocal|6 +(adj)|vocal |communication +(adj)|communication +(adj)|sung|voiced +(adj)|outspoken|communicative |communicatory +(adj)|spoken|voiced +(adj)|loud +vocal band|1 +(noun)|vocal cord|vocal fold|plica vocalis|fold|plica +vocal cord|1 +(noun)|vocal fold|vocal band|plica vocalis|fold|plica +vocal fold|1 +(noun)|vocal cord|vocal band|plica vocalis|fold|plica +vocal music|1 +(noun)|music +vocal organ|1 +(noun)|speech organ|organ +vocalic|3 +(adj)|vocalic |vowellike +(adj)|phone|speech sound|sound +(adj)|vocalic |syllabic +vocalisation|1 +(noun)|voice|vocalization|phonation|vox|communication +vocalise|5 +(verb)|vocalize|sing +(verb)|vocalize|vowelize|vowelise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|articulate|enunciate|vocalize|state|say|tell +(verb)|voice|sound|vocalize|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|vocalize|phonate|talk|speak|utter|mouth|verbalize|verbalise +vocaliser|2 +(noun)|utterer|vocalizer|organism|being +(noun)|singer|vocalist|vocalizer|musician|instrumentalist|player +vocalist|1 +(noun)|singer|vocalizer|vocaliser|musician|instrumentalist|player +vocalization|2 +(noun)|voice|vocalisation|phonation|vox|communication +(noun)|utterance|auditory communication +vocalize|5 +(verb)|voice|sound|vocalise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|vocalise|sing +(verb)|vocalise|vowelize|vowelise|pronounce|articulate|enounce|sound out|enunciate|say +(verb)|articulate|enunciate|vocalise|state|say|tell +(verb)|vocalise|phonate|talk|speak|utter|mouth|verbalize|verbalise +vocalizer|2 +(noun)|utterer|vocaliser|organism|being +(noun)|singer|vocalist|vocaliser|musician|instrumentalist|player +vocalizing|1 +(noun)|singing|vocal music|musical performance +vocation|2 +(noun)|career|calling|occupation|business|job|line of work|line +(noun)|occupational group|body +vocational|1 +(adj)|occupation|business|job|line of work|line +vocational education|1 +(noun)|vocational training|education +vocational program|1 +(noun)|educational program +vocational rehabilitation|1 +(noun)|rehabilitation +vocational rehabilitation program|1 +(noun)|rehabilitation program +vocational school|1 +(noun)|trade school|secondary school|lyceum|lycee|Gymnasium|middle school +vocational training|1 +(noun)|vocational education|education +vocative|2 +(adj)|oblique|oblique case +(noun)|vocative case|oblique|oblique case +vocative case|1 +(noun)|vocative|oblique|oblique case +vociferate|1 +(verb)|shout out|express|verbalize|verbalise|utter|give tongue to +vociferation|1 +(noun)|cry|outcry|call|yell|shout|utterance|vocalization +vociferator|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +vociferous|1 +(adj)|blatant|clamant|clamorous|strident|noisy +vodka|1 +(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +vodka martini|1 +(noun)|martini +vodoun|1 +(noun)|voodoo|voodooism|hoodooism|cult|cultus|religious cult +vogue|2 +(noun)|trend|style|taste|appreciation|discernment|perceptiveness +(noun)|currency|acceptance +voguish|2 +(adj)|chic|smart|stylish |fashionable +(adj)|trendy|fashionable |stylish +vogul|2 +(noun)|Vogul|Mansi|Russian +(noun)|Mansi|Vogul|Ugric|Ugrian +voice|13 +(noun)|sound +(noun)|vocalization|vocalisation|phonation|vox|communication +(noun)|sound +(noun)|articulation|expression +(noun)|means|agency|way +(noun)|communication +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|spokesperson|interpreter|representative|advocate|advocator|proponent|exponent +(noun)|physical ability +(noun)|grammatical relation +(noun)|part|tune|melody|air|strain|melodic line|line|melodic phrase +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|sound|vocalize|vocalise|pronounce|articulate|enounce|sound out|enunciate|say +voice box|1 +(noun)|larynx|cartilaginous structure|speech organ|vocal organ +voice communication|1 +(noun)|speech|speech communication|spoken communication|spoken language|language|oral communication|auditory communication +voice over|1 +(noun)|voice|vocalization|vocalisation|phonation|vox +voice part|1 +(noun)|part|voice +voiced|2 +(adj)|voiced |spoken|vocal|sung|vocal +(adj)|sonant +voiced sound|1 +(noun)|sonant|phone|speech sound|sound +voiceless|4 +(adj)|surd |unvoiced +(adj)|unvoiced |whispered|unsung +(adj)|breathed|inaudible |unhearable +(adj)|aphonic|inarticulate |unarticulate +voiceless consonant|1 +(noun)|surd|consonant +voicelessness|1 +(noun)|aphonia|speech disorder|speech defect|defect of speech +voiceprint|1 +(noun)|biometric identification|biometric authentication|identity verification +voicer|2 +(noun)|skilled worker|trained worker +(noun)|speaker|talker|utterer|verbalizer|verbaliser +voicing|1 +(noun)|adjustment|registration|readjustment +void|8 +(adj)|null|invalid +(adj)|empty +(noun)|nothingness|nullity|nonexistence|nonentity +(noun)|vacancy|emptiness|vacuum|space +(verb)|invalidate|annul|quash|avoid|nullify|cancel|strike down +(verb)|empty +(verb)|invalidate|vitiate|change|alter|modify +(verb)|evacuate|empty|excrete|egest|eliminate|pass +void of|1 +(adj)|barren of|destitute of|devoid of|empty of|innocent of|empty +voidable|1 +(adj)|rescindable|revocable |revokable +voidance|1 +(noun)|emptying|evacuation|removal|remotion +voider|4 +(noun)|invalidator|nullifier|official|functionary +(noun)|defecator|shitter|person|individual|someone|somebody|mortal|human|soul +(noun)|gusset|chain mail|ring mail|mail|chain armor|chain armour|ring armor|ring armour +(noun)|clothes hamper|laundry basket|clothes basket|hamper +voiding|1 +(noun)|elimination|evacuation|excretion|excreting|discharge|emission|expelling +voile|1 +(noun)|fabric|cloth|material|textile +voix celeste|1 +(noun)|vox angelica|organ stop +vol-au-vent|1 +(noun)|pastry +volaille|1 +(noun)|chicken|poulet|poultry +volans|1 +(noun)|Volans|constellation +volant|1 +(adj)|winged +volapuk|1 +(noun)|Volapuk|artificial language +volar|1 +(adj)|palmar|area|region|area|region +volary|1 +(noun)|aviary|bird sanctuary|building|edifice +volatile|5 +(adj)|volatile |evaporable|vaporific|vaporizable|volatilizable|volatilisable|inconstant +(adj)|explosive|unstable +(adj)|fickle|inconstant +(adj)|changeable |changeful +(noun)|substance|matter +volatile oil|1 +(noun)|essential oil|oil +volatile storage|1 +(noun)|memory|computer memory|storage|computer storage|store|memory board +volatilisable|1 +(adj)|evaporable|vaporific|vaporizable|volatilizable|volatile +volatilise|1 +(verb)|volatilize|change|alter|modify +volatilised|1 +(adj)|gasified|vaporized|vaporised|volatilized|gaseous +volatility|3 +(noun)|chemical property +(noun)|unpredictability|irresoluteness|irresolution +(noun)|excitability|excitableness|emotionality|emotionalism +volatilizable|1 +(adj)|evaporable|vaporific|vaporizable|volatilisable|volatile +volatilize|1 +(verb)|volatilise|change|alter|modify +volatilized|1 +(adj)|gasified|vaporized|vaporised|volatilised|gaseous +volcan de colima|1 +(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano +volcanic|3 +(adj)|mountain|mount +(adj)|unstable +(adj)|eruptive|extrusive +volcanic crater|1 +(noun)|crater|crack|cleft|crevice|fissure|scissure +volcanic eruption|1 +(noun)|eruption|discharge +volcanic glass|1 +(noun)|volcanic rock +volcanic rock|1 +(noun)|igneous rock +volcanism|1 +(noun)|geological phenomenon +volcano|2 +(noun)|vent|crack|cleft|crevice|fissure|scissure +(noun)|mountain|mount +volcano islands|1 +(noun)|Volcano Islands|archipelago +volcanology|1 +(noun)|vulcanology|geophysics|geophysical science +vole|1 +(noun)|field mouse|wood rat|wood-rat +volga|1 +(noun)|Volga|Volga River|river +volga river|1 +(noun)|Volga|Volga River|river +volgaic|1 +(noun)|Volgaic|Fennic|Finnic|Non-Ugric +volgograd|1 +(noun)|Volgograd|Stalingrad|Tsaritsyn|city|metropolis|urban center +volition|2 +(noun)|will|faculty|mental faculty|module +(noun)|willing|choice|selection|option|pick +volitional|1 +(adj)|willing |voluntary +volitionally|1 +(adv)|willingly +volkhov|1 +(noun)|Volkhov|Volkhov River|river +volkhov river|1 +(noun)|Volkhov|Volkhov River|river +volley|7 +(noun)|fusillade|salvo|burst|fire|firing +(noun)|return +(verb)|disperse|dissipate|scatter|spread out +(verb)|hit +(verb)|discharge +(verb)|play +(verb)|utter|emit|let out|let loose +volleyball|2 +(noun)|volleyball game|court game +(noun)|ball +volleyball court|1 +(noun)|court +volleyball game|1 +(noun)|volleyball|court game +volleyball net|1 +(noun)|net +volleyball player|1 +(noun)|player|participant +volt|1 +(noun)|V|potential unit +volt-ampere|1 +(noun)|var|power unit +volta|1 +(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist +voltage|2 +(noun)|electromotive force|emf|electrical phenomenon +(noun)|electric potential|potential|potential difference|potential drop|electrical phenomenon +voltage divider|1 +(noun)|potential divider|resistor|resistance +voltage drop|1 +(noun)|drop|dip|fall|free fall +voltage regulator|1 +(noun)|transformer +voltaic|2 +(adj)|galvanic|electrical phenomenon +(noun)|Gur|Voltaic|Niger-Congo +voltaic battery|1 +(noun)|galvanic battery|battery|electric battery +voltaic cell|1 +(noun)|galvanic cell|primary cell|cell|electric cell +voltaic pile|1 +(noun)|pile|galvanic pile|battery|electric battery +voltaire|1 +(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer|author +voltarean|1 +(adj)|Voltarian|Voltarean|writer|author +voltaren|1 +(noun)|diclofenac sodium|Voltaren|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID +voltarian|1 +(adj)|Voltarian|Voltarean|writer|author +volte-face|1 +(noun)|about-face|reversal|policy change|change +voltmeter|1 +(noun)|meter +volubility|1 +(noun)|fluency|articulateness|communicativeness +voluble|1 +(adj)|voluble |blathering|blithering|jabbering|babbling|chatty|gabby|garrulous|loquacious|talkative|talky|communicative|communicatory|prolix +volubly|1 +(adv)|chattily +volume|6 +(noun)|measure|quantity|amount +(noun)|bulk|mass|magnitude +(noun)|book|product|production +(noun)|publication +(noun)|measure|quantity|amount +(noun)|loudness|intensity|sound property +volume-detonation bomb|1 +(noun)|thermobaric bomb|fuel-air bomb|vacuum bomb|aerosol bomb|bomb|fuel-air explosive|FAE +volume unit|1 +(noun)|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement|unit +volumed|3 +(adj)|publication +(adj)|large +(adj)|furnished |equipped +volumeter|1 +(noun)|meter +volumetric|1 +(adj)|volumetrical|meter +volumetric analysis|2 +(noun)|quantitative analysis|quantitative chemical analysis +(noun)|quantitative analysis|quantitative chemical analysis +volumetrical|1 +(adj)|volumetric|meter +voluminosity|1 +(noun)|fullness|voluminousness|largeness|bigness +voluminous|2 +(adj)|large +(adj)|copious|extensive|abundant +voluminousness|1 +(noun)|fullness|voluminosity|largeness|bigness +volund|1 +(noun)|Volund|mythical being +voluntary|4 +(adj)|voluntary |by choice|freewill|intentional|willful|wilful|self-imposed|uncoerced|unforced|willing|unpaid|volunteer|volitional|conscious|willing +(adj)|voluntary +(noun)|volunteer|military volunteer|serviceman|military man|man|military personnel +(noun)|solo +voluntary muscle|1 +(noun)|skeletal muscle|striated muscle +volunteer|6 +(adj)|unpaid|voluntary +(noun)|military volunteer|voluntary|serviceman|military man|man|military personnel +(noun)|unpaid worker|worker +(verb)|inform +(verb)|offer|act|move +(verb)|work +volunteer state|1 +(noun)|Tennessee|Volunteer State|TN|American state +voluptuary|2 +(adj)|epicurean|luxurious|sybaritic|voluptuous|indulgent +(noun)|sybarite|sensualist +voluptuous|3 +(adj)|juicy|luscious|red-hot|sexy +(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|well-endowed|shapely +(adj)|epicurean|luxurious|sybaritic|voluptuary|indulgent +voluptuousness|1 +(noun)|curvaceousness|shapeliness|pulchritude +volute|3 +(adj)|coiling|helical|spiral|spiraling|voluted|whorled|turbinate|coiled +(noun)|spiral|decoration|ornament|ornamentation +(noun)|coil|spiral|whorl|helix|structure|construction +volute spring|1 +(noun)|coil spring|spring +voluted|1 +(adj)|coiling|helical|spiral|spiraling|volute|whorled|turbinate|coiled +volution|1 +(noun)|turning|turn +volva|1 +(noun)|plant part|plant structure +volvaria|1 +(noun)|Volvaria|genus Volvaria|fungus genus +volvaria bombycina|1 +(noun)|Volvaria bombycina|fungus +volvariaceae|1 +(noun)|Volvariaceae|family Volvariaceae|fungus family +volvariella|1 +(noun)|Volvariella|genus Volvariella|fungus genus +volvariella bombycina|1 +(noun)|Volvariella bombycina|agaric +volvariella volvacea|1 +(noun)|straw mushroom|Chinese mushroom|Volvariella volvacea|agaric +volvocaceae|1 +(noun)|Volvocaceae|family Volvocaceae|protoctist family +volvocales|1 +(noun)|Volvocales|order Volvocales|protoctist order +volvox|1 +(noun)|Volvox|genus Volvox|protoctist genus +volvulus|1 +(noun)|pathology +vombatidae|1 +(noun)|Vombatidae|family Vombatidae|mammal family +vomer|1 +(noun)|bone|os +vomit|4 +(noun)|vomitus|puke|body waste|excretion|excreta|excrement|excretory product +(noun)|emetic|vomitive|nauseant|remedy|curative|cure +(noun)|vomiting|emesis|regurgitation|disgorgement|puking|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +(verb)|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +vomit up|1 +(verb)|vomit|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete|egest|eliminate|pass +vomiter|1 +(noun)|spewer|sick person|diseased person|sufferer +vomiting|1 +(noun)|vomit|emesis|regurgitation|disgorgement|puking|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|expulsion|projection|ejection|forcing out +vomitive|1 +(noun)|emetic|vomit|nauseant|remedy|curative|cure +vomitory|1 +(noun)|entrance|entranceway|entryway|entry|entree +vomitus|1 +(noun)|vomit|puke|body waste|excretion|excreta|excrement|excretory product +von bismarck|1 +(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman|solon|national leader +von braun|1 +(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer|rocket scientist +von mauser|1 +(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor|discoverer|artificer|arms manufacturer +von neumann|1 +(noun)|von Neumann|Neumann|John von Neumann|mathematician +von neumann machine|1 +(noun)|von Neumann machine|digital computer +von recklinghausen's disease|1 +(noun)|neurofibromatosis|von Recklinghausen's disease|autosomal dominant disease|autosomal dominant disorder|monogenic disorder|monogenic disease +von rundstedt|1 +(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal +von sternberg|1 +(noun)|von Sternberg|Josef von Sternberg|film maker|filmmaker|film producer|movie maker +von willebrand|1 +(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor|doc|physician|MD|Dr.|medico +von willebrand's disease|1 +(noun)|von Willebrand's disease|angiohemophilia|vascular hemophilia|hemophilia|haemophilia|bleeder's disease +vonnegut|1 +(noun)|Vonnegut|Kurt Vonnegut|writer|author +voodoo|3 +(noun)|juju|hoodoo|fetish|fetich|charm|good luck charm +(noun)|vodoun|voodooism|hoodooism|cult|cultus|religious cult +(verb)|hex|bewitch|glamour|witch|enchant|jinx +voodooism|1 +(noun)|voodoo|vodoun|hoodooism|cult|cultus|religious cult +voracious|2 +(adj)|rapacious|ravening|acquisitive +(adj)|edacious|esurient|rapacious|ravening|ravenous|wolfish|gluttonous +voraciousness|2 +(noun)|edacity|esurience|ravenousness|voracity|hunger|hungriness +(noun)|edacity|esurience|rapaciousness|rapacity|voracity|gluttony +voracity|2 +(noun)|edacity|esurience|ravenousness|voraciousness|hunger|hungriness +(noun)|edacity|esurience|rapaciousness|rapacity|voraciousness|gluttony +vortex|2 +(noun)|whirl|swirl|convolution|round shape +(noun)|whirlpool|maelstrom|current|stream +vortex vein|1 +(noun)|vorticose vein|vena vorticosum|vein|vena|venous blood vessel +vorticella|1 +(noun)|ciliate|ciliated protozoan|ciliophoran +vorticose vein|1 +(noun)|vortex vein|vena vorticosum|vein|vena|venous blood vessel +votary|3 +(noun)|religious +(noun)|priest|non-Christian priest +(noun)|disciple|adherent +vote|8 +(noun)|ballot|voting|balloting|choice|selection|option|pick +(noun)|group action +(noun)|right to vote|suffrage|franchise|enfranchisement +(noun)|body +(noun)|voter turnout|numerical quantity +(verb)|choose|take|select|pick out|vote in|vote out +(verb)|express|state +(verb)|express|state +vote counter|1 +(noun)|teller|official|functionary +vote down|2 +(verb)|kill|shoot down|defeat|vote out|veto|blackball|negative +(verb)|turn thumbs down|vote +vote in|1 +(verb)|choose|take|select|pick out +vote of confidence|1 +(noun)|encouragement +vote out|1 +(verb)|kill|shoot down|defeat|vote down|veto|blackball|negative +voteless|1 +(adj)|disenfranchised |disfranchised +voter|1 +(noun)|elector|citizen +voter turnout|1 +(noun)|vote|numerical quantity +voting|1 +(noun)|vote|ballot|balloting|choice|selection|option|pick +voting age|1 +(noun)|age|eld +voting booth|1 +(noun)|booth|cubicle|stall|kiosk +voting machine|1 +(noun)|mechanical device +voting precinct|1 +(noun)|election district|precinct +voting right|1 +(noun)|right +voting stock|1 +(noun)|stock +voting system|1 +(noun)|electoral system|legal system +voting trust|1 +(noun)|trust +votive|1 +(adj)|consecrated |consecrate|dedicated +votyak|2 +(noun)|Udmurt|Votyak|Russian +(noun)|Udmurt|Votyak|Permic +vouch|4 +(verb)|testify|attest|take the stand|bear witness +(verb)|guarantee|pledge|plight +(verb)|summon|summons|cite +(verb)|confirm|corroborate|sustain|substantiate|support|affirm +vouch in|1 +(verb)|summon|summons|cite +vouchee|1 +(noun)|party +voucher|3 +(noun)|verifier|supporter|protagonist|champion|admirer|booster|friend +(noun)|document|written document|papers +(noun)|coupon|commercial document|commercial instrument +vouchsafe|2 +(verb)|allow|grant +(verb)|promise +vouge|1 +(noun)|pike +voussoir|1 +(noun)|building block +vouvray|1 +(noun)|Vouvray|white wine +vow|3 +(noun)|assurance|pledge +(verb)|pledge|plight +(verb)|consecrate|give|dedicate|consecrate|commit|devote +vowel|2 +(noun)|vowel sound|phone|speech sound|sound +(noun)|letter|letter of the alphabet|alphabetic character +vowel point|1 +(noun)|vowel +vowel rhyme|1 +(noun)|assonance|rhyme|rime +vowel sound|1 +(noun)|vowel|phone|speech sound|sound +vowel system|1 +(noun)|phonemic system +vowelise|1 +(verb)|vocalize|vocalise|vowelize|pronounce|articulate|enounce|sound out|enunciate|say +vowelize|1 +(verb)|vocalize|vocalise|vowelise|pronounce|articulate|enounce|sound out|enunciate|say +vowellike|1 +(adj)|vocalic +vower|1 +(noun)|promiser|promisor +vox|1 +(noun)|voice|vocalization|vocalisation|phonation|communication +vox angelica|1 +(noun)|voix celeste|organ stop +vox humana|1 +(noun)|reed stop +vox populi|1 +(noun)|public opinion|popular opinion|opinion|belief +voyage|3 +(noun)|ocean trip|water travel|seafaring +(noun)|journey|journeying +(verb)|sail|navigate|travel|journey +voyager|1 +(noun)|traveler|traveller +voyageurs national park|1 +(noun)|Voyageurs National Park|national park +voyeur|1 +(noun)|Peeping Tom|peeper|spectator|witness|viewer|watcher|looker +voyeurism|1 +(noun)|paraphilia +voyeuristic|1 +(adj)|voyeuristical|paraphilia|spectator|witness|viewer|watcher|looker +voyeuristical|1 +(adj)|voyeuristic|paraphilia|spectator|witness|viewer|watcher|looker +voznesenski|1 +(noun)|Voznesenski|Andrei Voznesenski|poet +vroom|1 +(verb)|roar|howl +vt|1 +(noun)|Vermont|Green Mountain State|VT|American state +vuillard|1 +(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter +vulcan|1 +(noun)|Vulcan|Roman deity +vulcanisation|1 +(noun)|vulcanization|processing +vulcanise|2 +(verb)|vulcanize|change +(verb)|vulcanize|process|treat +vulcanised|1 +(adj)|cured|vulcanized|processed +vulcaniser|1 +(noun)|vulcanizer|skilled worker|trained worker +vulcanite|1 +(noun)|hard rubber|ebonite|rubber|India rubber|gum elastic|caoutchouc +vulcanization|1 +(noun)|vulcanisation|processing +vulcanize|2 +(verb)|vulcanise|change +(verb)|vulcanise|process|treat +vulcanized|1 +(adj)|cured|vulcanised|processed +vulcanized fiber|1 +(noun)|fiber|fibre|fabric|cloth|material|textile +vulcanizer|1 +(noun)|vulcaniser|skilled worker|trained worker +vulcanology|1 +(noun)|volcanology|geophysics|geophysical science +vulgar|4 +(adj)|coarse|common|rough-cut|uncouth|unrefined +(adj)|common|plebeian|unwashed|lowborn +(adj)|common|vernacular|informal +(adj)|coarse|crude|earthy|gross|indecent +vulgar latin|1 +(noun)|Vulgar Latin|Low Latin +vulgarian|1 +(noun)|unpleasant person|disagreeable person +vulgarisation|2 +(noun)|vulgarization|degradation|debasement +(noun)|popularization|popularisation|vulgarization|degradation|debasement +vulgarise|3 +(verb)|popularize|popularise|vulgarize|generalize|generalise|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|vulgarize|change|alter|modify +(verb)|vulgarize|act|behave|do +vulgariser|2 +(noun)|vulgarizer|debaser|degrader +(noun)|popularizer|populariser|vulgarizer|communicator +vulgarism|2 +(noun)|obscenity|dirty word|profanity +(noun)|coarseness|commonness|grossness|vulgarity|raunch|inelegance +vulgarity|1 +(noun)|coarseness|commonness|grossness|vulgarism|raunch|inelegance +vulgarization|2 +(noun)|vulgarisation|degradation|debasement +(noun)|popularization|popularisation|vulgarisation|degradation|debasement +vulgarize|3 +(verb)|popularize|popularise|vulgarise|generalize|generalise|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around +(verb)|vulgarise|change|alter|modify +(verb)|vulgarise|act|behave|do +vulgarizer|2 +(noun)|vulgariser|debaser|degrader +(noun)|popularizer|populariser|vulgariser|communicator +vulgarly|1 +(adv)|smuttily +vulgate|1 +(noun)|Vulgate|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word +vulnerability|2 +(noun)|exposure|danger +(noun)|weakness +vulnerable|4 +(adj)|vulnerable |assailable|undefendable|undefended|open|compromising|defenseless|defenceless|endangered|insecure|unsafe|penetrable|threatened|under attack|under fire|unguarded|unprotected|conquerable|dangerous|unsafe|insecure|unsafe|susceptible|unprotected +(adj)|susceptible +(adj)|weak +(adj)|tender|young |immature +vulpecula|1 +(noun)|Vulpecula|constellation +vulpecular|1 +(adj)|vulpine|canine|canid +vulpes|1 +(noun)|Vulpes|genus Vulpes|mammal genus +vulpes fulva|1 +(noun)|red fox|Vulpes fulva|fox +vulpes macrotis|1 +(noun)|kit fox|Vulpes macrotis|fox +vulpes velox|1 +(noun)|kit fox|prairie fox|Vulpes velox|fox +vulpes vulpes|1 +(noun)|red fox|Vulpes vulpes|fox +vulpine|1 +(adj)|vulpecular|canine|canid +vultur|1 +(noun)|Vultur|genus Vultur|bird genus +vultur gryphus|1 +(noun)|Andean condor|Vultur gryphus|condor +vulture|2 +(noun)|bird of prey|raptor|raptorial bird +(noun)|marauder|predator|piranha|attacker|aggressor|assailant|assaulter +vulturine|1 +(adj)|predatory|rapacious|raptorial|ravening|vulturous|aggressive +vulturous|1 +(adj)|predatory|rapacious|raptorial|ravening|vulturine|aggressive +vulva|1 +(noun)|female genitalia|female genitals|female genital organ|fanny +vulval|1 +(adj)|vulvar|female genitalia|female genitals|female genital organ|fanny +vulvar|1 +(adj)|vulval|female genitalia|female genitals|female genital organ|fanny +vulvar slit|1 +(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|rima +vulvectomy|1 +(noun)|ablation|extirpation|cutting out|excision +vulvitis|1 +(noun)|inflammation|redness|rubor +vulvovaginitis|1 +(noun)|inflammation|redness|rubor +vx gas|1 +(noun)|VX gas|nerve gas|nerve agent +vyacheslav mikhailovich molotov|1 +(noun)|Molotov|Vyacheslav Mikhailovich Molotov|statesman|solon|national leader +w|4 +(noun)|tungsten|wolfram|W|atomic number 74|metallic element|metal +(noun)|west|due west|W|cardinal compass point +(noun)|watt|W|power unit +(noun)|W|double-u|letter|letter of the alphabet|alphabetic character +w-shaped|1 +(adj)|W-shaped|formed +w. b. yeats|1 +(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet|dramatist|playwright +w. c. fields|1 +(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian|comic +w. c. handy|1 +(noun)|Handy|W. C. Handy|William Christopher Handy|composer +w. e. b. du bois|1 +(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader|civil rights worker|civil rights activist +w. h. auden|1 +(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet +w. h. hudson|1 +(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist|natural scientist +w. k. kellogg|1 +(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer +w. somerset maugham|1 +(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer|author +w. v. quine|1 +(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher|logician|logistician +w. w. jacobs|1 +(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer|author +w.c.|1 +(noun)|water closet|closet|W.C.|loo|toilet|lavatory|lav|can|john|privy|bathroom +w.m.d.|2 +(noun)|weapon of mass destruction|WMD|W.M.D.|weapon|arm|weapon system +(noun)| +wa|1 +(noun)|Washington|Evergreen State|WA|American state +wabash|1 +(noun)|Wabash|Wabash River|river +wabash river|1 +(noun)|Wabash|Wabash River|river +wac|1 +(noun)|Wac|soldier|woman|adult female +wackily|1 +(adv)|daftly|dottily|balmily|nuttily +wacko|1 +(noun)|nutter|whacko|eccentric|eccentric person|flake|oddball|geek +wacky|2 +(adj)|cockamamie|cockamamy|goofy|sappy|silly|whacky|zany|unreasonable|foolish +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|whacky|insane +waco|1 +(noun)|Waco|city|metropolis|urban center +wad|4 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|chew|chaw|cud|quid|plug|morsel|bit|bite +(verb)|pack|bundle|compact|arrange|set up +(verb)|jam|jampack|ram|chock up|cram|stuff +wadding|1 +(noun)|packing material|packing|material|stuff +waddle|2 +(noun)|gait +(verb)|toddle|coggle|totter|dodder|paddle|walk +waddler|1 +(noun)|pedestrian|walker|footer +wade|2 +(noun)|Wade|Virginia Wade|tennis player +(verb)|walk +wader|1 +(noun)|wading bird|aquatic bird +waders|2 +(noun)|hip boot|hip boots|thigh boot|thigh boots +(noun)|wading bird|wader|aquatic bird +wadi|1 +(noun)|gully +wading|1 +(noun)|walk|walking +wading bird|1 +(noun)|wader|aquatic bird +wading pool|1 +(noun)|pool +wads|3 +(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|oodles|gobs|scads|lashings|large indefinite quantity|large indefinite amount +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity|large indefinite amount +(noun)|chew|chaw|cud|quid|plug|wad|morsel|bit|bite +wafer|3 +(noun)|paste|library paste +(noun)|cookie|cooky|biscuit +(noun)|bread|breadstuff|staff of life +wafer-thin|1 +(adj)|thin +waffle|2 +(noun)|cake +(verb)|hesitate|waver +waffler|1 +(noun)|communicator +waft|3 +(noun)|pennant|pennon|streamer|flag +(verb)|float|drift|be adrift|blow +(verb)|blow +wafture|1 +(noun)|wave|waving|gesture|motion +wag|3 +(noun)|wit|card|humorist|humourist +(noun)|waggle|shake|agitation +(verb)|waggle|jiggle|joggle|wiggle +wage|2 +(noun)|pay|earnings|remuneration|salary|regular payment +(verb)|engage|fight|struggle +wage-earning|2 +(adj)|working-class|blue-collar +(adj)|propertyless|working-class|blue-collar|lower-class |low-class +wage claim|1 +(noun)|pay claim|demand +wage concession|1 +(noun)|concession +wage earner|1 +(noun)|earner|jobholder +wage floor|1 +(noun)|floor|base +wage freeze|1 +(noun)|freeze +wage hike|1 +(noun)|raise|rise|hike|wage increase|salary increase|increase|increment +wage increase|1 +(noun)|raise|rise|wage hike|hike|salary increase|increase|increment +wage scale|1 +(noun)|wage schedule|scale|scale of measurement|graduated table|ordered series +wage schedule|1 +(noun)|wage scale|scale|scale of measurement|graduated table|ordered series +wage setter|1 +(noun)|financial condition|economic condition +wager|4 +(noun)|bet|gambling|gaming|play +(noun)|stake|stakes|bet|gamble +(verb)|bet|play|gamble +(verb)|bet|predict|foretell|prognosticate|call|forebode|anticipate|promise +wagerer|1 +(noun)|bettor|better|punter|gambler +wages|2 +(noun)|reward|payoff|consequence|aftermath +(noun)|wage|pay|earnings|remuneration|salary|regular payment +wagga wagga|1 +(noun)|Wagga Wagga|town +waggery|2 +(noun)|waggishness|fun|play|sport +(noun)|drollery|jest|joke|jocularity +waggish|1 +(adj)|humorous |humourous +waggishness|1 +(noun)|waggery|fun|play|sport +waggle|3 +(noun)|wag|shake|agitation +(verb)|wag|jiggle|joggle|wiggle +(verb)|wamble|move +waggon|2 +(noun)|wagon|wheeled vehicle +(noun)|beach wagon|station wagon|wagon|beach waggon|station waggon|car|auto|automobile|machine|motorcar +waggoner|1 +(noun)|wagoner|driver +waggonwright|1 +(noun)|wagonwright|wainwright|wright +wagner|3 +(noun)|Wagner|Otto Wagner|architect|designer +(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer +(noun)|Wagner|music +wagnerian|1 +(adj)|Wagnerian|composer +wagon|5 +(noun)|waggon|wheeled vehicle +(noun)|police van|police wagon|paddy wagon|patrol wagon|black Maria|van +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|coaster wagon|wheeled vehicle +(noun)|beach wagon|station wagon|beach waggon|station waggon|waggon|car|auto|automobile|machine|motorcar +wagon-lit|1 +(noun)|sleeping car|sleeper|passenger car|coach|carriage +wagon tire|1 +(noun)|tire|tyre +wagon train|1 +(noun)|caravan|train|procession +wagon wheel|1 +(noun)|wheel +wagoner|1 +(noun)|waggoner|driver +wagonwright|1 +(noun)|waggonwright|wainwright|wright +wagram|1 +(noun)|Wagram|battle of Wagram|pitched battle +wagtail|1 +(noun)|oscine|oscine bird +wahabi|1 +(noun)|Wahhabi|Wahabi|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +wahabism|1 +(noun)|Wahhabism|Wahabism|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism +wahhabi|1 +(noun)|Wahhabi|Wahabi|Muslim|Moslem|Mohammedan|Muhammedan|Muhammadan|Islamist +wahhabism|1 +(noun)|Wahhabism|Wahabism|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism +wahoo|3 +(noun)|strawberry bush|Euonymus americanus|shrub|bush +(noun)|burning bush|Euonymus atropurpureus|shrub|bush +(noun)|Acanthocybium solandri|mackerel +wahunsonacock|1 +(noun)|Powhatan|Wahunsonacock|Indian chief|Indian chieftain|Algonquian|Algonquin +wahvey|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +waif|1 +(noun)|street child|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +waikiki|1 +(noun)|Waikiki|resort area|playground|vacation spot +wail|3 +(noun)|lament|lamentation|plaint|complaint +(verb)|howl|ululate|roar|yawl|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|whimper|mewl|pule|cry|weep +wailer|1 +(noun)|mourner|griever|sorrower|lamenter|speaker|talker|utterer|verbalizer|verbaliser +wailful|1 +(adj)|lamenting|wailing|sorrowful +wailing|2 +(adj)|lamenting|wailful|sorrowful +(noun)|bawling|crying|weeping|tears +wailing wall|1 +(noun)|Wailing Wall|wall +wain|3 +(noun)|Wain|John Wain|John Barrington Wain|writer|author +(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism +(noun)|wagon|waggon +wainscot|2 +(noun)|dado|panel +(noun)|wainscoting|wainscotting|panel +wainscoted|1 +(adj)|paneled|adorned |decorated +wainscoting|2 +(noun)|wainscotting|wall +(noun)|wainscot|wainscotting|panel +wainscotting|2 +(noun)|wainscoting|wall +(noun)|wainscot|wainscoting|panel +wainwright|1 +(noun)|wagonwright|waggonwright|wright +waist|2 +(noun)|waistline|area|region +(noun)|shank|part|portion +waist-deep|1 +(adv)|waist-high +waist-high|1 +(adv)|waist-deep +waist anchor|1 +(noun)|sheet anchor|anchor|ground tackle +waist pack|1 +(noun)|belt bag|pouch +waistband|1 +(noun)|girdle|cincture|sash|waistcloth|band +waistcloth|1 +(noun)|girdle|cincture|sash|waistband|band +waistcoat|1 +(noun)|vest|garment +waistline|1 +(noun)|waist|area|region +wait|5 +(noun)|delay|hold|time lag|postponement|pause|intermission|break|interruption|suspension +(noun)|waiting|inactivity +(verb)|hold off|hold back|act|move +(verb)|expect|look|await +(verb)|work +wait on|1 +(verb)|serve|attend to|attend|assist|help|assist|aid +waiter|2 +(noun)|server|dining-room attendant|restaurant attendant +(noun)|person|individual|someone|somebody|mortal|human|soul +waiter's assistant|1 +(noun)|busboy|dining-room attendant|restaurant attendant +waiting|2 +(adj)|ready and waiting|ready +(noun)|wait|inactivity +waiting area|1 +(noun)|lounge|waiting room|room +waiting game|1 +(noun)|scheme|strategy +waiting line|1 +(noun)|queue|line +waiting list|1 +(noun)|roll|roster +waiting room|1 +(noun)|lounge|waiting area|room +waitress|1 +(noun)|waiter|server +waive|2 +(verb)|relinquish|forgo|foreswear|dispense with +(verb)|forfeit|give up|throw overboard|forgo|abandon +waiver|1 +(noun)|release|discharge|relinquishment|relinquishing +wajda|1 +(noun)|Wajda|Andrzej Wajda|film maker|filmmaker|film producer|movie maker +wakashan|2 +(noun)|Wakashan|Indian|North American Indian|American Indian|Red Indian +(noun)|Wakashan|Wakashan language|Mosan +wakashan language|1 +(noun)|Wakashan|Wakashan language|Mosan +wake|8 +(noun)|aftermath|backwash|consequence|effect|outcome|result|event|issue|upshot +(noun)|Wake Island|Wake|island +(noun)|backwash|wave|moving ridge +(noun)|viewing|vigil|watch +(verb)|wake up|awake|arouse|awaken|come alive|waken|change state|turn +(verb)|inflame|stir up|ignite|heat|fire up|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|alarm|alert +(verb)|awaken|waken|rouse|wake up|arouse|change|alter|modify +wake-robin|2 +(noun)|trillium|wood lily|liliaceous plant +(noun)|jack-in-the-pulpit|Indian turnip|Arisaema triphyllum|Arisaema atrorubens|arum|aroid +wake-up call|2 +(noun)|warning +(noun)|call|phone call|telephone call +wake-up signal|1 +(noun)|reveille|bugle call +wake board|2 +(noun)|wakeboard|board +(noun)| +wake island|1 +(noun)|Wake Island|Wake|island +wake up|2 +(verb)|awaken|wake|waken|rouse|arouse|change|alter|modify +(verb)|awake|arouse|awaken|wake|come alive|waken|change state|turn +wakeboard|1 +(noun)|wake board|board +wakeful|2 +(adj)|argus-eyed|open-eyed|vigilant|watchful|alert +(adj)|light|shallow +wakefulness|2 +(noun)|waking|physiological state|physiological condition +(noun)|sleeplessness|temporary state +wakeless|1 +(adj)|heavy|profound|sound|deep +waken|2 +(verb)|awaken|wake|rouse|wake up|arouse|change|alter|modify +(verb)|wake up|awake|arouse|awaken|wake|come alive|change state|turn +wakening|1 +(noun)|awakening|waking up|arousal|rousing +waker|2 +(noun)|rouser|arouser|attendant|attender|tender +(noun)|person|individual|someone|somebody|mortal|human|soul +waking|2 +(adj)|awake +(noun)|consciousness +waking up|1 +(noun)|awakening|wakening|arousal|rousing +walapai|2 +(noun)|Walapai|Hualapai|Hualpai|Hokan|Hoka +(noun)|Walapai|Hualapai|Hualpai|Yuman +walbiri|1 +(noun)|Walbiri|Warlpiri|Australian|Aboriginal Australian +waldheim|1 +(noun)|Waldheim|Kurt Waldheim|diplomat|diplomatist|statesman|solon|national leader +waldmeister|2 +(noun)|sweet woodruff|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw +(noun)|sweet woodruff|herb +waldorf salad|1 +(noun)|Waldorf salad|fruit salad +wale|2 +(noun)|welt|weal|wheal|injury|hurt|harm|trauma +(noun)|strake|board|plank +wales|3 +(noun)|Wales|Cymru|Cambria|principality|princedom +(noun)|wale|welt|weal|wheal|injury|hurt|harm|trauma +(noun)|wale|strake|board|plank +walesa|1 +(noun)|Walesa|Lech Walesa|labor leader|statesman|solon|national leader +walhalla|1 +(noun)|Valhalla|Walhalla|Heaven +walk|17 +(noun)|walking|locomotion|travel +(noun)|base on balls|pass|accomplishment|achievement +(noun)|manner of walking|carriage|bearing|posture +(noun)|travel|traveling|travelling +(noun)|walkway|paseo|path +(noun)|gait +(noun)|walk of life|career|calling|vocation +(verb)|travel|go|move|locomote|walk around|walk about +(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|cut across +(verb)|accompany +(verb)|score|hit|tally|rack up +(verb)|behave|comport +(verb)|take the air|travel|go|move|locomote +(verb)|play +(verb)|consociate|associate +(verb)|compel|oblige|obligate +(verb)|pace +walk-in|5 +(adj)|deep +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|secret agent|intelligence officer|intelligence agent|operative|deserter|defector +(noun)|waltz|victory|triumph +(noun)|room +walk-on|2 +(adj)|nonspeaking |mute|tongueless +(noun)|actor|histrion|player|thespian|role player +walk-through|4 +(noun)|explanation|account +(noun)|passageway +(noun)|rehearsal|dry run +(noun)|walk +walk-to|1 +(adj)|walking|close +walk-up|3 +(adj)|low-rise +(noun)|walk-up apartment|apartment|flat +(noun)|apartment building|apartment house +walk-up apartment|1 +(noun)|walk-up|apartment|flat +walk about|1 +(verb)|perambulate|walk around|walk +walk around|4 +(verb)|perambulate|walk about|walk +(verb)|circumambulate|circle +(verb)|behave|acquit|bear|deport|conduct|comport|carry +(verb)|act +walk away|1 +(verb)|walk off|leave|go forth|go away +walk in|1 +(verb)|enter|come in|get into|get in|go into|go in|move into +walk of life|1 +(noun)|walk|career|calling|vocation +walk off|2 +(verb)|steal +(verb)|walk away|leave|go forth|go away +walk on air|1 +(verb)|exult|be on cloud nine|jump for joy|rejoice|joy +walk out|3 +(verb)|strike|protest|resist|dissent +(verb)|leave|go forth|go away +(verb)|abandon|forsake|desolate|desert +walk out of|1 +(verb)|depart|take leave|quit +walk over|1 +(verb)|beat|beat out|crush|shell|trounce|vanquish +walk through|1 +(verb)|rehearse|practise|practice +walkabout|3 +(noun)|tour|circuit +(noun)|amble|promenade|ramble|saunter|stroll|perambulation +(noun)|walk +walkaway|1 +(noun)|runaway|blowout|romp|laugher|shoo-in|victory|triumph +walker|6 +(noun)|Walker|John Walker|four-minute man +(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer|author +(noun)|pedestrian|footer|traveler|traveller +(noun)|shoe +(noun)|Zimmer|Zimmer frame|framework|frame|framing +(noun)|baby-walker|go-cart|framework|frame|framing +walker foxhound|1 +(noun)|Walker hound|Walker foxhound|foxhound +walker hound|1 +(noun)|Walker hound|Walker foxhound|foxhound +walker percy|1 +(noun)|Percy|Walker Percy|writer|author +walker smith|1 +(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter|gladiator +walkie-talkie|1 +(noun)|walky-talky|radio link|link +walking|2 +(adj)|walk-to|close +(noun)|walk|locomotion|travel +walking delegate|1 +(noun)|union representative +walking fern|1 +(noun)|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort +walking horse|1 +(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse|riding horse|mount +walking leaf|2 +(noun)|walking fern|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort +(noun)|leaf insect|phasmid|phasmid insect +walking on air|1 +(noun)|bliss|blissfulness|cloud nine|seventh heaven|elation +walking papers|1 +(noun)|marching orders|dismissal|dismission|pink slip +walking shoe|1 +(noun)|shoe +walking stick|3 +(noun)|stick +(noun)|walkingstick|stick insect|phasmid|phasmid insect +(noun)| +walkingstick|1 +(noun)|walking stick|stick insect|phasmid|phasmid insect +walkout|2 +(noun)|strike|work stoppage +(noun)|protest|objection|dissent +walkover|2 +(noun)|acrobatic stunt|acrobatic feat +(noun)|cinch|breeze|picnic|snap|duck soup|child's play|pushover|piece of cake|undertaking|project|task|labor +walkway|1 +(noun)|walk|paseo|path +walky-talky|1 +(noun)|walkie-talkie|radio link|link +wall|9 +(noun)|partition|divider +(noun)|rampart|bulwark|embankment +(noun)|object|physical object +(noun)|fence|fencing +(noun)|paries|stratum +(noun)|geological formation|formation +(noun)|layer|bed +(noun)|difficulty +(verb)|palisade|fence|fence in|surround|protect|wall in|wall up +wall-less|1 +(adj)|wall-less +wall-paperer|2 +(noun)|wallpaperer|skilled worker|trained worker +(noun)| +wall barley|1 +(noun)|barley grass|Hordeum murinum|barley +wall clock|1 +(noun)|clock +wall creeper|1 +(noun)|tichodrome|Tichodroma muriaria|creeper|tree creeper +wall fern|1 +(noun)|common polypody|adder's fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody +wall germander|1 +(noun)|Teucrium chamaedrys|germander +wall hanging|1 +(noun)|hanging|decoration|ornament|ornamentation +wall in|1 +(verb)|wall up|enclose|inclose|shut in +wall of silence|1 +(noun)|blue wall of silence|blue wall|cover-up +wall painting|1 +(noun)|mural|painting|picture +wall panel|1 +(noun)|paneling|panelling|pane +wall pellitory|1 +(noun)|pellitory-of-the-wall|pellitory|Parietaria difussa|herb|herbaceous plant +wall pepper|1 +(noun)|Sedum acre|stonecrop +wall plate|1 +(noun)|plate +wall plug|1 +(noun)|wall socket|electric outlet|electrical outlet|outlet|electric receptacle|receptacle +wall rock|1 +(noun)|rock|stone +wall rocket|1 +(noun)|Diplotaxis muralis|Diplotaxis tenuifolia|herb|herbaceous plant +wall rue|1 +(noun)|wall rue spleenwort|Asplenium ruta-muraria|spleenwort +wall rue spleenwort|1 +(noun)|wall rue|Asplenium ruta-muraria|spleenwort +wall socket|1 +(noun)|wall plug|electric outlet|electrical outlet|outlet|electric receptacle|receptacle +wall st.|1 +(noun)|Wall Street|Wall St.|street +wall street|2 +(noun)|Wall Street|Wall St.|street +(noun)|Wall Street|the Street|market|securities industry +wall tent|1 +(noun)|canvas tent|canvas|canvass +wall unit|1 +(noun)|furniture|piece of furniture|article of furniture +wall up|1 +(verb)|wall in|enclose|inclose|shut in +walla walla|1 +(noun)|Walla Walla|town +wallaby|1 +(noun)|brush kangaroo|kangaroo +wallace|3 +(noun)|Wallace|Sir William Wallace|insurgent|insurrectionist|freedom fighter|rebel +(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer|author +(noun)|Wallace|Alfred Russel Wallace|naturalist|natural scientist +wallace carothers|1 +(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist +wallace hume carothers|1 +(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist +wallace stevens|1 +(noun)|Stevens|Wallace Stevens|poet +wallah|1 +(noun)|worker +wallboard|1 +(noun)|sheet|flat solid +walled|1 +(adj)|walled +wallenstein|1 +(noun)|Wallenstein|Albrecht Eusebius Wenzel von Wallenstein|general|full general +waller|1 +(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician|jazzman +wallet|1 +(noun)|billfold|notecase|pocketbook|case +walleye|2 +(noun)|divergent strabismus|exotropia|strabismus|squint +(noun)|walleyed pike|jack salmon|Stizostedion vitreum|pike-perch|pike perch +walleyed|1 +(adj)|walleyed +walleyed pike|1 +(noun)|walleye|jack salmon|Stizostedion vitreum|pike-perch|pike perch +wallflower|3 +(noun)|flower +(noun)|Cheiranthus cheiri|Erysimum cheiri|flower +(noun)|shy person|shrinking violet +wallis warfield simpson|1 +(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee|grass widow +wallis warfield windsor|1 +(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee|grass widow +walloon|3 +(noun)|Walloon|Belgian +(noun)|Walloon|ethnic group|ethnos +(noun)|Walloon|French +wallop|4 +(noun)|impact|consequence|effect|outcome|result|event|issue|upshot +(noun)|blow +(verb)|whack|wham|whop|hit +(verb)|get the better of|overcome|defeat +walloper|3 +(noun)|hitter|striker +(noun)|winner|victor +(noun)|whopper|lie|prevarication +walloping|2 +(adj)|humongous|banging|thumping|whopping|large +(noun)|thrashing|debacle|drubbing|slaughter|trouncing|whipping|defeat|licking +wallow|7 +(noun)|mud puddle +(noun)|axial rotation|axial motion|roll +(verb)|indulge +(verb)|welter|move +(verb)|billow|soar|soar up|soar upwards|surge|zoom +(verb)|rejoice|triumph|exult|walk on air|be on cloud nine|jump for joy +(verb)|delight|enjoy|revel +wallpaper|2 +(noun)|paper +(verb)|paper|cover +wallpaperer|1 +(noun)|wall-paperer|skilled worker|trained worker +wally|1 +(noun)|Wally|fool|sap|saphead|muggins|tomfool +walnut|3 +(noun)|edible nut +(noun)|wood +(noun)|walnut tree|nut tree +walnut blight|1 +(noun)|blight +walnut family|1 +(noun)|Juglandaceae|family Juglandaceae|dicot family|magnoliopsid family +walnut oil|1 +(noun)|vegetable oil|oil +walnut tree|1 +(noun)|walnut|nut tree +walpole|2 +(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer|author|historian|historiographer +(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman|solon|national leader +walpurgis night|1 +(noun)|Walpurgis Night|day +walrus|1 +(noun)|seahorse|sea horse|pinniped mammal|pinniped|pinnatiped +walrus moustache|1 +(noun)|walrus mustache|mustache|moustache +walrus mustache|1 +(noun)|walrus moustache|mustache|moustache +walt disney|1 +(noun)|Disney|Walt Disney|Walter Elias Disney|film maker|filmmaker|film producer|movie maker +walt disney world|1 +(noun)|Walt Disney World|amusement park|funfair|pleasure ground +walt whitman|1 +(noun)|Whitman|Walt Whitman|poet +walt whitman bridge|1 +(noun)|Walt Whitman Bridge|suspension bridge +walter|1 +(noun)|Walter|Bruno Walter|conductor|music director|director +walter de la mare|1 +(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet +walter elias disney|1 +(noun)|Disney|Walt Disney|Walter Elias Disney|film maker|filmmaker|film producer|movie maker +walter gropius|1 +(noun)|Gropius|Walter Gropius|architect|designer +walter hess|1 +(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist +walter john de la mare|1 +(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet +walter lippmann|1 +(noun)|Lippmann|Walter Lippmann|journalist +walter mitty|1 +(noun)|Walter Mitty|fictional character|fictitious character|character +walter piston|1 +(noun)|Piston|Walter Piston|composer +walter ralegh|1 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +walter raleigh|1 +(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier|colonizer|coloniser +walter reed|1 +(noun)|Reed|Walter Reed|surgeon|operating surgeon|sawbones +walter rudolf hess|1 +(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist +walter scott|1 +(noun)|Scott|Walter Scott|Sir Walter Scott|writer|author +walter william skeat|1 +(noun)|Skeat|Walter William Skeat|philologist|philologue +walther hermann nernst|1 +(noun)|Nernst|Walther Hermann Nernst|chemist|physicist +walther richard rudolf hess|1 +(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi|German Nazi +walton|3 +(noun)|Walton|Sir William Walton|Sir William Turner Walton|composer +(noun)|Walton|Izaak Walton|writer|author +(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist +waltz|4 +(noun)|walk-in|victory|triumph +(noun)|dance music|danceroom music|ballroom music +(noun)|valse|ballroom dancing|ballroom dance +(verb)|waltz around|dance|trip the light fantastic|trip the light fantastic toe +waltz around|1 +(verb)|waltz|dance|trip the light fantastic|trip the light fantastic toe +waltzer|1 +(noun)|dancer|social dancer +wamble|1 +(verb)|waggle|move +wampanoag|1 +(noun)|Wampanoag|Algonquian|Algonquin +wampee|1 +(noun)|pickerelweed|pickerel weed|Pontederia cordata|aquatic plant|water plant|hydrophyte|hydrophytic plant +wampum|2 +(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|money +(noun)|peag|wampumpeag|beads|string of beads +wampumpeag|1 +(noun)|wampum|peag|beads|string of beads +wan|5 +(adj)|pale|pallid|weak +(adj)|pale|pallid|colorless |colourless +(adj)|unanimated +(noun)|wide area network|WAN|computer network +(verb)|sicken|come down +wanamaker|1 +(noun)|Wanamaker|John Wanamaker|businessman|man of affairs +wand|2 +(noun)|baton +(noun)|scepter|sceptre|verge|staff +wanda landowska|1 +(noun)|Landowska|Wanda Landowska|harpsichordist +wandala|1 +(noun)|Mandara|Wandala|Biu-Mandara +wander|5 +(verb)|roll|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel|go|move|locomote +(verb)|cheat on|cheat|cuckold|betray|deceive|lead on|delude|cozen +(verb)|proceed|go forward|continue +(verb)|weave|wind|thread|meander|travel|go|move|locomote +(verb)|digress|stray|divagate|tell +wanderer|2 +(noun)|roamer|rover|bird of passage|traveler|traveller +(noun)|spider|program|programme|computer program|computer programme +wandering|4 +(adj)|mobile|nomadic|peregrine|roving|unsettled +(adj)|meandering|rambling|winding|indirect +(adj)|erratic|planetary|unsettled +(noun)|roving|vagabondage|peregrination +wandering albatross|1 +(noun)|Diomedea exulans|albatross|mollymawk +wandering jew|1 +(noun)|Wandering Jew|Jew|Hebrew|Israelite +wandering nerve|1 +(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|cranial nerve +wanderlust|1 +(noun)|itchy feet|urge|impulse +wandflower|2 +(noun)|Sparaxis tricolor|flower +(noun)|galax|galaxy|beetleweed|coltsfoot|Galax urceolata|herb|herbaceous plant +wane|4 +(noun)|ebb|ebbing|decline|diminution +(verb)|decline|go down|decrease|diminish|lessen|fall +(verb)|decrease|diminish|lessen|fall +(verb)|decrease|diminish|lessen|fall +wangle|3 +(noun)|wangling|contrivance|stratagem|dodge +(verb)|finagle|manage|achieve|accomplish|attain|reach +(verb)|fudge|manipulate|fake|falsify|cook|misrepresent|cheat|chisel +wangler|1 +(noun)|finagler|deceiver|cheat|cheater|trickster|beguiler|slicker +wangling|1 +(noun)|wangle|contrivance|stratagem|dodge +waning|2 +(adj)|waning +(noun)|decrease|lessening|drop-off +wank|2 +(noun)|jacking off|jerking off|hand job|masturbation|onanism|self-abuse +(verb)|masturbate|fuck off|she-bop|jack off|jerk off|stimulate|excite|stir +wankel engine|1 +(noun)|Wankel engine|Wankel rotary engine|epitrochoidal engine|rotary engine +wankel rotary engine|1 +(noun)|Wankel engine|Wankel rotary engine|epitrochoidal engine|rotary engine +wanker|1 +(noun)|tosser|jerk-off|masturbator|onanist +wannabe|1 +(noun)|aspirant|aspirer|hopeful|wannabee|applicant|applier +wannabee|1 +(noun)|aspirant|aspirer|hopeful|wannabe|applicant|applier +wanness|1 +(noun)|lividness|lividity|luridness|paleness|pallidness|pallor|achromasia|complexion|skin color|skin colour +want|9 +(noun)|privation|deprivation|poverty|poorness|impoverishment +(noun)|lack|deficiency|need|demand +(noun)|need|necessity|essential|requirement|requisite|necessary +(noun)|wish|wishing|desire +(verb)|desire +(verb)|need|require|be +(verb)|demand +(verb)|search|seek|look for +(verb)|miss|lack +want ad|1 +(noun)|classified ad|classified advertisement +wanted|3 +(adj)|wanted |craved|desired|hot|longed-for|wished-for|yearned-for|sought|sought-after|desirable|loved|welcome +(adj)|invited|welcome +(adj)|cherished|precious|treasured|loved +wanted notice|1 +(noun)|wanted poster|announcement|promulgation +wanted poster|1 +(noun)|wanted notice|announcement|promulgation +wanter|1 +(noun)|needer|person|individual|someone|somebody|mortal|human|soul +wanting|2 +(adj)|lacking|missing|nonexistent|absent +(adj)|deficient|lacking|inadequate +wanton|9 +(adj)|motiveless|unprovoked|unmotivated +(adj)|easy|light|loose|promiscuous|sluttish|unchaste +(noun)|sensualist +(verb)|piddle|wanton away|piddle away|trifle|spend|pass +(verb)|live +(verb)|wanton away|trifle away|spend|expend|drop +(verb)|luxuriate|consume|squander|waste|ware +(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|philander|mash +(verb)|act|behave|do +wanton away|2 +(verb)|piddle|wanton|piddle away|trifle|spend|pass +(verb)|wanton|trifle away|spend|expend|drop +wantonly|1 +(adv)|licentiously|promiscuously +wantonness|2 +(noun)|abandon|unconstraint|unrestraint +(noun)|licentiousness|immorality +wapiti|1 +(noun)|American elk|Cervus canadensis|deer|cervid +war|5 +(noun)|warfare|military action|action +(noun)|state of war|hostility|enmity|antagonism +(noun)|warfare|conflict|struggle|battle +(noun)|campaign|cause|crusade|drive|movement|effort +(verb)|fight|struggle +war-ridden|1 +(adj)|belligerent|fighting|militant|warring|unpeaceful +war-torn|1 +(adj)|war-worn|destroyed +war-worn|1 +(adj)|war-torn|destroyed +war admiral|1 +(noun)|War Admiral|thoroughbred +war advocacy|1 +(noun)|warmongering|hawkishness +war baby|1 +(noun)|baby|babe|infant +war between the states|1 +(noun)|American Civil War|United States Civil War|War between the States|civil war +war bride|1 +(noun)|bride +war chest|1 +(noun)|fund|monetary fund +war cloud|1 +(noun)|augury|sign|foretoken|preindication +war correspondent|1 +(noun)|correspondent|newspaperman|newspaperwoman|newswriter|pressman +war crime|1 +(noun)|crime|law-breaking +war criminal|1 +(noun)|wrongdoer|offender +war cry|2 +(noun)|rallying cry|battle cry|cry|watchword|motto|slogan|catchword|shibboleth +(noun)|war whoop|rallying cry|battle cry|cry|outcry|call|yell|shout|vociferation +war dance|1 +(noun)|ritual dancing|ritual dance|ceremonial dance +war department|1 +(noun)|War Department|executive department +war game|1 +(noun)|simulation +war god|1 +(noun)|god of war|deity|divinity|god|immortal +war hawk|1 +(noun)|hawk|militarist|warmonger +war machine|1 +(noun)|military|armed forces|armed services|military machine|force|personnel +war of 1812|1 +(noun)|War of 1812|war|warfare +war of american independence|1 +(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution +war of greek independence|1 +(noun)|War of Greek Independence|war|warfare +war of nerves|1 +(noun)|psychological warfare|war|warfare +war of the austrian succession|1 +(noun)|War of the Austrian Succession|war|warfare +war of the grand alliance|1 +(noun)|War of the Grand Alliance|War of the League of Augsburg|war|warfare +war of the league of augsburg|1 +(noun)|War of the Grand Alliance|War of the League of Augsburg|war|warfare +war of the roses|1 +(noun)|War of the Roses|Wars of the Roses|war|warfare +war of the spanish succession|1 +(noun)|War of the Spanish Succession|war|warfare +war paint|3 +(noun)|adornment +(noun)|array|raiment|regalia +(noun)|makeup|make-up|cosmetic|cosmetics +war party|2 +(noun)|party|company +(noun)|party|political party +war power|1 +(noun)|office|power +war room|1 +(noun)|room +war secretary|1 +(noun)|Secretary of War|War Secretary|secretaryship +war to end war|1 +(noun)|World War I|World War 1|Great War|First World War|War to End War|world war +war vessel|1 +(noun)|warship|combat ship|ship|military vehicle +war whoop|1 +(noun)|war cry|rallying cry|battle cry|cry|outcry|call|yell|shout|vociferation +war widow|1 +(noun)|widow|widow woman +war zone|1 +(noun)|combat zone|combat area +waratah|2 +(noun)|Telopea speciosissima|shrub|bush +(noun)|Telopea Oreades|shrub|bush +warble|3 +(noun)|animal disease +(verb)|trill|quaver|sing +(verb)|yodel|descant|sing +warble fly|1 +(noun)|gadfly +warbler|2 +(noun)|singer|vocalist|vocalizer|vocaliser +(noun)|oscine|oscine bird +warburg|2 +(noun)|Warburg|Otto Heinrich Warburg|biochemist +(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian +ward|8 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|administrative district|administrative division|territorial division +(noun)|hospital ward|block +(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist|economic expert|environmentalist|conservationist +(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer|author +(noun)|Ward|Montgomery Ward|Asron Montgomery Ward|businessman|man of affairs +(noun)|cellblock|block +(verb)|guard|protect +ward-heeler|1 +(noun)|machine politician|political hack|hack|politician|politico|pol|political leader +ward off|2 +(verb)|debar|obviate|deflect|avert|head off|stave off|fend off|avoid|prevent|forestall|foreclose|preclude|forbid +(verb)|defend +warden|1 +(noun)|warder|lawman|law officer|peace officer +wardenship|1 +(noun)|position|post|berth|office|spot|billet|place|situation +warder|1 +(noun)|warden|lawman|law officer|peace officer +wardership|1 +(noun)|position|post|berth|office|spot|billet|place|situation +wardress|1 +(noun)|warden|warder +wardrobe|3 +(noun)|closet|press|furniture|piece of furniture|article of furniture +(noun)|clothing|article of clothing|vesture|wear|collection|aggregation|accumulation|assemblage +(noun)|costume|collection|aggregation|accumulation|assemblage +wardroom|1 +(noun)|military quarters +ware|2 +(noun)|article +(verb)|consume|squander|waste|spend|expend|drop +warehouse|2 +(noun)|storage warehouse|storehouse|depot|entrepot|storage|store +(verb)|store +warehouseman|1 +(noun)|warehouser|workman|working man|working person +warehouseman's lien|1 +(noun)|lien +warehouser|1 +(noun)|warehouseman|workman|working man|working person +warehousing|1 +(noun)|repositing|reposition|storage|deposit|deposition +wares|2 +(noun)|merchandise|product|commodity|trade goods|goods +(noun)|ware|article +warfare|2 +(noun)|war|military action|action +(noun)|war|conflict|struggle|battle +warfarin|1 +(noun)|Coumadin|anticoagulant|anticoagulant medication|decoagulant +warhead|1 +(noun)|payload|load|explosive +warhol|1 +(noun)|Warhol|Andy Warhol|painter +warhorse|3 +(noun)|work of art +(noun)|veteran|old-timer|oldtimer|old hand|old stager|stager|expert +(noun)|saddle horse|riding horse|mount +wariness|1 +(noun)|chariness|circumspection|caution +warji|1 +(noun)|Warji|West Chadic +warlike|2 +(adj)|unpacific|unpeaceful +(adj)|martial|military +warlock|1 +(noun)|witch +warlord|1 +(noun)|military leader +warlpiri|1 +(noun)|Walbiri|Warlpiri|Australian|Aboriginal Australian +warm|13 +(adj)|warm |lukewarm|tepid|warmed|warming|hot +(adj)|warm |cordial|hearty|emotional|friendly +(adj)|warm |hot +(adj)|affectionate|caring|fond|lovesome|tender|loving +(adj)|strong|fresh +(adj)|quick|excitable +(adj)|ardent|enthusiastic +(adj)|lively +(adj)|uncomfortable +(adj)|hot|near |close +(verb)|warm up|change +(verb)|change|alter|modify +(adv)|warmly +warm-blooded|1 +(adj)|warm-blooded |homoiothermic|homeothermic|homothermic +warm-toned|1 +(adj)|emotional +warm-up|1 +(noun)|tune-up|prolusion|preparation|readying +warm front|1 +(noun)|front +warm the bench|1 +(verb)|ride the bench|idle|laze|slug|stagnate +warm to|1 +(verb)|consider|take|deal|look at +warm up|5 +(verb)|operate|run +(verb)|change +(verb)|warm|change +(verb)|exercise|work|work out|work|put to work +(verb)|limber up|loosen up|exercise|work out +warmed|1 +(adj)|warm +warmed-over|1 +(adj)|leftover|cooked-over|reheated|uneaten +warmer|1 +(noun)|heater|device +warmhearted|1 +(adj)|warmhearted |loving +warmheartedness|2 +(noun)|warmth|lovingness|caring +(noun)|affection|affectionateness|fondness|tenderness|heart|feeling +warming|4 +(adj)|warm +(adj)|calefacient|hot +(noun)|heating|temperature change +(noun)|thaw|thawing|weather|weather condition|atmospheric condition +warming pan|1 +(noun)|pan +warmly|2 +(adv)|heartily|cordially +(adv)|warm +warmness|1 +(noun)|warmth|hotness|heat|high temperature +warmonger|1 +(noun)|militarist|adult|grownup +warmongering|1 +(noun)|war advocacy|hawkishness +warmth|5 +(noun)|heat|temperature +(noun)|warmheartedness|lovingness|caring +(noun)|warmness|hotness|heat|high temperature +(noun)|heat|passion|emotionality|emotionalism +(noun)|affectionateness|fondness|lovingness|emotionality|emotionalism +warn|4 +(verb)|inform +(verb)|discourage|admonish|monish|advise|counsel +(verb)|order|tell|enjoin|say +(verb)|inform +warner|2 +(noun)|Warner|Charles Dudley Warner|film maker|filmmaker|film producer|movie maker +(noun)|communicator +warning|3 +(adj)|admonitory|cautionary|exemplary|monitory|dissuasive +(noun)|informing|making known +(noun)|admonition|monition|word of advice|advice +warning bell|1 +(noun)|tocsin|bell +warning coloration|1 +(noun)|aposematic coloration|protective coloration +warning device|1 +(noun)|alarm|alarm system|device +warning light|1 +(noun)|red light|visual signal +warning of attack|1 +(noun)|tactical warning +warning of war|1 +(noun)|strategic warning +warning signal|1 +(noun)|alarm|alert|alarum|signal|signaling|sign +warp|6 +(noun)|deflection|aberrance|aberrancy|aberration|deviance +(noun)|buckle|distorted shape|distortion +(noun)|warping|distortion|deformation +(noun)|thread|yarn +(verb)|falsify|distort|garble|misrepresent|belie +(verb)|heave|buckle|change surface +warpath|2 +(noun)|belligerence|belligerency +(noun)|way|path|way of life +warped|1 +(adj)|crooked +warping|1 +(noun)|warp|distortion|deformation +warplane|1 +(noun)|military plane|heavier-than-air craft|military vehicle +warragal|2 +(noun)|warrigal|wild horse +(noun)|dingo|warrigal|Canis dingo|wild dog +warrant|6 +(noun)|writ|judicial writ +(noun)|stock warrant|stock-purchase warrant|security|surety +(noun)|sanction|countenance|endorsement|indorsement|imprimatur|approval|commendation +(noun)|guarantee|warrantee|warranty|assurance|pledge +(verb)|justify|confirm|reassert +(verb)|guarantee|back|endorse|indorse|plump for|plunk for|support +warrant officer|1 +(noun)|military officer|officer +warranted|1 +(adj)|bonded|guaranteed|secured|secure +warrantee|3 +(noun)|recipient|receiver +(noun)|customer|client +(noun)|guarantee|warrant|warranty|assurance|pledge +warranter|1 +(noun)|guarantor|surety|warrantor|patron|sponsor|supporter +warrantor|1 +(noun)|guarantor|surety|warranter|patron|sponsor|supporter +warranty|1 +(noun)|guarantee|warrant|warrantee|assurance|pledge +warren|5 +(noun)|Warren|Robert Penn Warren|writer|author|poet +(noun)|Warren|Earl Warren|jurist|legal expert +(noun)|rabbit warren|burrow|tunnel +(noun)|rabbit warren|residential district|residential area|community +(noun)|animal group +warren gamaliel harding|1 +(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States|United States President|President|Chief Executive +warren harding|1 +(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States|United States President|President|Chief Executive +warrener|1 +(noun)|gamekeeper|game warden +warrigal|2 +(noun)|warragal|wild horse +(noun)|dingo|warragal|Canis dingo|wild dog +warring|1 +(adj)|belligerent|fighting|militant|war-ridden|unpeaceful +warrior|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +warriorlike|1 +(adj)|soldierly|soldierlike|martial|military +wars of the roses|1 +(noun)|War of the Roses|Wars of the Roses|war|warfare +warsaw|1 +(noun)|Warszawa|Warsaw|capital of Poland|national capital +warship|1 +(noun)|war vessel|combat ship|ship|military vehicle +warszawa|1 +(noun)|Warszawa|Warsaw|capital of Poland|national capital +wart|2 +(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence +(noun)|verruca|blemish|defect|mar|keratosis +warthog|1 +(noun)|swine +wartime|1 +(noun)|time period|period of time|period +wartlike|1 +(adj)|verrucose|warty|rough |unsmooth +wartweed|1 +(noun)|sun spurge|wartwort|devil's milk|Euphorbia helioscopia|spurge +wartwort|1 +(noun)|sun spurge|wartweed|devil's milk|Euphorbia helioscopia|spurge +warty|1 +(adj)|verrucose|wartlike|rough |unsmooth +warwick|1 +(noun)|Warwick|Earl of Warwick|Richard Neville|the Kingmaker|statesman|solon|national leader +wary|2 +(adj)|wary |on guard|on one's guard|upon one's guard|on your guard|shy +(adj)|leery|mistrustful|suspicious|untrusting|distrustful +wash|21 +(noun)|water-base paint +(noun)|washing|lavation|work +(noun)|dry wash|streambed|creek bed +(noun)|washout|soil erosion +(noun)|slipstream|airstream|race|backwash|flow +(noun)|wash drawing|watercolor|watercolour +(noun)|laundry|washing|washables|garment|white goods|household linen +(noun)|business activity|commercial activity +(verb)|rinse|launder +(verb)|lave|cleanse|clean|wash up +(verb)|launder|clean|make clean +(verb)|move|displace +(verb)|be +(verb)|stand +(verb)|separate +(verb)|cover +(verb)|wash out|wash off|wash away|remove|take|take away|withdraw +(verb)|erode|eat away|fret +(verb)|moisten|dampen|wet +(verb)|lave|lap|flow +(verb)|cleanse|clean +wash-and-wear|2 +(adj)|drip-dry|washable +(noun)|wash-and-wear fabric|fabric|cloth|material|textile +wash-and-wear fabric|1 +(noun)|wash-and-wear|fabric|cloth|material|textile +wash-hand basin|1 +(noun)|washbasin|handbasin|washbowl|lavabo|basin +wash-hand stand|1 +(noun)|washstand|furniture|piece of furniture|article of furniture +wash away|2 +(verb)|remove|take away +(verb)|wash|wash out|wash off|remove|take|take away|withdraw +wash down|2 +(verb)|eat +(verb)|flush down|flush +wash drawing|1 +(noun)|wash|watercolor|watercolour +wash leather|1 +(noun)|chamois|chamois leather|chammy|chammy leather|shammy|shammy leather +wash off|1 +(verb)|wash|wash out|wash away|remove|take|take away|withdraw +wash one's hands|1 +(verb)|absolve|justify|free +wash out|7 +(verb)|rain out|prevent|keep +(verb)|wash|launder +(verb)|destroy|ruin +(verb)|wash|wash off|wash away|remove|take|take away|withdraw +(verb)|weaken +(verb)|discolor +(verb)|discolor +wash room|2 +(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|toilet|lavatory|lav|can|john|privy|bathroom|facility +(noun)|washroom|toilet|lavatory|lav|can|john|privy|bathroom +wash up|5 +(verb)|lave|freshen|refresh|refreshen|freshen up +(verb)|conduct|transmit|convey|carry|channel +(verb)|do the dishes|clean|make clean +(verb)|appear +(verb)|exhaust|beat|tucker|tucker out|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue +washable|1 +(adj)|washable |wash-and-wear|drip-dry +washables|1 +(noun)|laundry|wash|washing|garment|white goods|household linen +washbasin|2 +(noun)|basin|washbowl|washstand|lavatory|sink +(noun)|handbasin|washbowl|lavabo|wash-hand basin|basin +washboard|2 +(noun)|device +(noun)|splashboard|protective covering|protective cover|protection +washbowl|2 +(noun)|washbasin|basin|washstand|lavatory|sink +(noun)|washbasin|handbasin|lavabo|wash-hand basin|basin +washcloth|1 +(noun)|washrag|flannel|face cloth|bath linen +washday|1 +(noun)|washing day|day +washed|2 +(adj)|water-washed|clean +(adj)|wet +washed-out|2 +(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|worn-out|worn out|tired +(adj)|bleached|faded|washy|colorless |colourless +washed-up|1 +(adj)|done for|ruined|sunk|undone|unsuccessful +washer|3 +(noun)|worker +(noun)|seal +(noun)|automatic washer|washing machine|white goods +washerman|1 +(noun)|laundryman|washer +washerwoman|1 +(noun)|washwoman|laundrywoman|laundress|washer +washhouse|1 +(noun)|laundry +washing|2 +(noun)|wash|lavation|work +(noun)|laundry|wash|washables|garment|white goods|household linen +washing-up|1 +(noun)|wash|washing|lavation +washing day|1 +(noun)|washday|day +washing machine|1 +(noun)|washer|automatic washer|white goods +washing powder|1 +(noun)|soap powder|built-soap powder|soap +washing soda|1 +(noun)|sodium carbonate|sal soda|soda ash|soda|salt +washington|5 +(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital +(noun)|Washington|Evergreen State|WA|American state +(noun)|Capitol|Washington|federal government +(noun)|Washington|George Washington|President Washington|general|full general|President of the United States|United States President|President|Chief Executive +(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator|pedagogue +washington's birthday|1 +(noun)|Washington's Birthday|February 22|day +washington d.c.|1 +(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital +washington irving|1 +(noun)|Irving|Washington Irving|writer|author +washington monument|1 +(noun)|Washington Monument|memorial|monument|obelisk +washingtonian|6 +(adj)|Washingtonian|general|full general|President of the United States|United States President|President|Chief Executive +(adj)|Washingtonian|federal government +(adj)|Washingtonian|national capital +(adj)|Washingtonian|American state +(noun)|Washingtonian|American +(noun)|Washingtonian|American +washout|3 +(noun)|groove|channel +(noun)|wash|soil erosion +(noun)|flop|dud|failure|loser|nonstarter|unsuccessful person +washrag|1 +(noun)|washcloth|flannel|face cloth|bath linen +washroom|1 +(noun)|toilet|lavatory|lav|can|john|privy|bathroom +washstand|2 +(noun)|wash-hand stand|furniture|piece of furniture|article of furniture +(noun)|washbasin|basin|washbowl|lavatory|sink +washtub|1 +(noun)|tub|vat +washup|2 +(noun)|bathing|wash|washing|lavation|cleaning|cleansing|cleanup +(noun)|dishwashing|wash|washing|lavation +washwoman|1 +(noun)|washerwoman|laundrywoman|laundress|washer +washy|3 +(adj)|weak +(adj)|watery|weak|diluted |dilute +(adj)|bleached|faded|washed-out|colorless |colourless +waslaw nijinsky|1 +(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer|professional dancer +wasp|2 +(noun)|WASP|white Anglo-Saxon Protestant|White|white person|Caucasian|Protestant +(noun)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter +wasp's nest|1 +(noun)|wasps' nest|hornet's nest|hornets' nest|nidus +wasp-waisted|1 +(adj)|slender-waisted|slim-waisted|thin |lean +wasp waist|1 +(noun)|waist|waistline +waspish|1 +(adj)|bristly|prickly|splenetic|ill-natured +wasps' nest|1 +(noun)|wasp's nest|hornet's nest|hornets' nest|nidus +wassail|3 +(noun)|punch +(verb)|revel|racket|make whoopie|make merry|make happy|whoop it up|jollify|celebrate|fete +(verb)|toast|drink|pledge|salute|honor|honour|reward +wassailer|2 +(noun)|carouser|drinker|imbiber|toper|juicer +(noun)|toaster|supporter|protagonist|champion|admirer|booster|friend +wasserman reaction|1 +(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test +wassermann|2 +(noun)|Wassermann|Agust von Wassermann|bacteriologist +(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test +wassermann test|1 +(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test +wassily kandinsky|1 +(noun)|Kandinsky|Wassily Kandinsky|painter +wassily leontief|1 +(noun)|Leontief|Wassily Leontief|economist|economic expert +wastage|2 +(noun)|decrease|decrement +(noun)|loss +waste|17 +(adj)|cast-off|discarded|junked|scrap|useless +(adj)|desert|godforsaken|wild|inhospitable +(noun)|waste material|waste matter|waste product|material|stuff +(noun)|wastefulness|dissipation|activity +(noun)|thriftlessness|wastefulness|improvidence|shortsightedness +(noun)|barren|wasteland|wilderness|wild +(noun)|permissive waste|act|human action|human activity +(verb)|blow|squander|use|expend +(verb)|use|utilize|utilise|apply|employ +(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|put away +(verb)|run off|run|flow|feed|course +(verb)|neutralize|neutralise|liquidate|knock off|do in|kill +(verb)|consume|squander|ware|spend|expend|drop +(verb)|pine away|languish|weaken +(verb)|emaciate|macerate|enfeeble|debilitate|drain +(verb)|lay waste to|devastate|desolate|ravage|scourge|destroy|ruin +(verb)|rot|devolve|deteriorate|drop|degenerate +waste-paper basket|1 +(noun)|wastepaper basket|wastebasket|waste basket|circular file|container +waste-yard|2 +(noun)|dump|garbage dump|trash dump|rubbish dump|wasteyard|dumpsite|site|land site +(noun)| +waste basket|2 +(noun)|wastepaper basket|waste-paper basket|wastebasket|circular file|container +(noun)| +waste material|1 +(noun)|waste|waste matter|waste product|material|stuff +waste matter|1 +(noun)|waste|waste material|waste product|material|stuff +waste of effort|1 +(noun)|waste of energy|waste|wastefulness|dissipation +waste of energy|1 +(noun)|waste of effort|waste|wastefulness|dissipation +waste of material|1 +(noun)|waste|wastefulness|dissipation +waste of money|1 +(noun)|waste|wastefulness|dissipation +waste of time|1 +(noun)|waste|wastefulness|dissipation +waste one's time|1 +(verb)|bum|bum around|bum about|arse around|arse about|fuck off|loaf|frig around|lounge around|loll|loll around|lounge about|idle|laze|slug|stagnate +waste paper|1 +(noun)|paper +waste pipe|1 +(noun)|drain|drainpipe|pipe|pipage|piping +waste product|1 +(noun)|waste|waste material|waste matter|material|stuff +wastebasket|1 +(noun)|wastepaper basket|waste-paper basket|waste basket|circular file|container +wastebin|1 +(noun)|ashcan|trash can|garbage can|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin +wasted|5 +(adj)|otiose|pointless|superfluous|worthless +(adj)|squandered|lost +(adj)|atrophied |diminished +(adj)|bony|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|thin |lean +(adj)|blasted|desolate|desolated|devastated|ravaged|ruined|destroyed +wasteful|3 +(adj)|uneconomical|inefficient +(adj)|wasteful |extravagant|prodigal|profligate|spendthrift|pound-foolish|uneconomical|uneconomic|improvident +(adj)|destructive +wastefully|1 +(adv)|prodigally +wastefulness|2 +(noun)|thriftlessness|waste|improvidence|shortsightedness +(noun)|waste|dissipation|activity +wasteland|1 +(noun)|barren|waste|wilderness|wild +wastepaper basket|1 +(noun)|waste-paper basket|wastebasket|waste basket|circular file|container +waster|2 +(noun)|wastrel|prodigal|profligate|squanderer +(noun)|destroyer|ruiner|undoer|uprooter|bad person +wastewater|1 +(noun)|effluent|sewer water|waste|waste material|waste matter|waste product +wasteweir|1 +(noun)|spillway|spill|conduit +wasteyard|1 +(noun)|dump|garbage dump|trash dump|rubbish dump|waste-yard|dumpsite|site|land site +wasting|2 +(noun)|cachexia|cachexy|infirmity|frailty|debility|feebleness|frailness +(noun)|atrophy|wasting away|symptom +wasting away|1 +(noun)|atrophy|wasting|symptom +wasting disease|1 +(noun)|pulmonary tuberculosis|consumption|phthisis|white plague|tuberculosis|TB|T.B. +wasting time|1 +(noun)|dalliance|dawdling|trifling|delay|holdup +wastrel|1 +(noun)|waster|prodigal|profligate|squanderer +watch|11 +(noun)|ticker|timepiece|timekeeper +(noun)|shift|work shift|duty period +(noun)|vigil|surveillance +(noun)|time period|period of time|period +(noun)|lookout|lookout man|sentinel|sentry|spotter|scout|picket|watchman|watcher|security guard +(noun)|vigil|rite|religious rite +(verb)|observe|follow|watch over|keep an eye on|check|check up on|look into|check out|suss out|check over|go over|check into +(verb)|view|see|catch|take in +(verb)|look on +(verb)|look out|watch out +(verb)|determine|check|find out|see|ascertain|learn +watch bracelet|1 +(noun)|watchband|watchstrap|wristband|bracelet|band +watch cap|1 +(noun)|cap +watch case|1 +(noun)|case +watch chain|1 +(noun)|fob|watch guard|chain +watch crystal|1 +(noun)|crystal|watch glass|protective covering|protective cover|protection +watch fire|1 +(noun)|visual signal +watch glass|2 +(noun)|dish +(noun)|crystal|watch crystal|protective covering|protective cover|protection +watch guard|1 +(noun)|fob|watch chain|chain +watch key|1 +(noun)|winder|key +watch night|1 +(noun)|service|religious service|divine service +watch out|1 +(verb)|watch|look out +watch over|1 +(verb)|watch|observe|follow|keep an eye on|check|check up on|look into|check out|suss out|check over|go over|check into +watch pocket|1 +(noun)|fob|vest pocket +watchband|1 +(noun)|watchstrap|wristband|watch bracelet|bracelet|band +watchdog|2 +(noun)|defender|guardian|protector|shielder +(noun)|guard dog|working dog +watcher|3 +(noun)|spectator|witness|viewer|looker|perceiver|observer|beholder +(noun)|watchman|security guard|guard +(noun)|person|individual|someone|somebody|mortal|human|soul +watchful|2 +(adj)|argus-eyed|open-eyed|vigilant|wakeful|alert +(adj)|insomniac|sleepless|awake +watchfully|1 +(adv)|vigilantly +watchfulness|2 +(noun)|vigilance|alertness|attention +(noun)|vigilance|weather eye|attentiveness +watching|1 +(noun)|observation|observance|look|looking|looking at +watchmaker|1 +(noun)|horologist|horologer|maker|shaper +watchman|1 +(noun)|watcher|security guard|guard +watchstrap|1 +(noun)|watchband|wristband|watch bracelet|bracelet|band +watchtower|1 +(noun)|tower +watchword|2 +(noun)|war cry|rallying cry|battle cry|cry|motto|slogan|catchword|shibboleth +(noun)|password|word|parole|countersign|positive identification|secret|arcanum +water|10 +(noun)|H2O|binary compound|liquid +(noun)|body of water|thing +(noun)|water system|water supply|facility|installation +(noun)|element +(noun)|urine|piss|pee|piddle|weewee|body waste|excretion|excreta|excrement|excretory product +(noun)|food|nutrient +(verb)|irrigate|wet +(verb)|supply|provide|render|furnish +(verb)|secrete|release +(verb)|fill|fill up +water-base paint|1 +(noun)|paint +water-cooled|1 +(adj)|cool +water-cooled reactor|1 +(noun)|nuclear reactor|reactor +water-lily family|1 +(noun)|Nymphaeaceae|family Nymphaeaceae|magnoliid dicot family +water-milfoil family|1 +(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|dicot family|magnoliopsid family +water-mint|2 +(noun)|water mint|Mentha aquatica|mint +(noun)| +water-plantain family|1 +(noun)|Alismataceae|family Alismataceae|monocot family|liliopsid family +water-rate|1 +(noun)|charge +water-repellent|1 +(adj)|water-resistant|impermeable +water-resistant|1 +(adj)|water-repellent|impermeable +water-shield|2 +(noun)|Brasenia schreberi|water-target|water lily +(noun)|fanwort|Cabomba caroliniana|water lily +water-shield family|1 +(noun)|Cabombaceae|subfamily Cabombaceae|magnoliid dicot family +water-skiing|1 +(noun)|water sport|aquatics +water-soluble|1 +(adj)|soluble +water-soluble vitamin|1 +(noun)|vitamin +water-target|1 +(noun)|water-shield|Brasenia schreberi|water lily +water-wash|1 +(verb)|wash|launder +water-washed|2 +(adj)|inhospitable +(adj)|washed|clean +water arum|1 +(noun)|wild calla|Calla palustris|marsh plant|bog plant|swamp plant +water avens|1 +(noun)|Indian chocolate|purple avens|chocolate root|Geum rivale|avens +water back|1 +(noun)|water heater|hot-water heater|hot-water tank +water bearer|2 +(noun)|Aquarius|Water Bearer|person|individual|someone|somebody|mortal|human|soul +(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac|star sign|sign|mansion|house|planetary house +water bed|1 +(noun)|bed +water beetle|1 +(noun)|beetle +water birch|1 +(noun)|swamp birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +water bird|2 +(noun)|waterfowl|waterbird|aquatic bird +(noun)| +water biscuit|1 +(noun)|cracker +water bitternut|1 +(noun)|water hickory|bitter pecan|Carya aquatica|hickory|hickory tree +water blister|1 +(noun)|blister|bulla|bleb +water boatman|1 +(noun)|boat bug|water bug +water bottle|1 +(noun)|bottle +water boy|1 +(noun)|waterer|assistant|helper|help|supporter +water buffalo|1 +(noun)|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo|buffalo +water bug|2 +(noun)|heteropterous insect +(noun)|German cockroach|Croton bug|crotonbug|Blattella germanica|cockroach|roach +water butt|1 +(noun)|butt +water buttercup|1 +(noun)|water crowfoot|Ranunculus aquatilis|aquatic plant|water plant|hydrophyte|hydrophytic plant +water cabbage|1 +(noun)|pistia|water lettuce|Pistia stratiotes|Pistia stratoites|aquatic plant|water plant|hydrophyte|hydrophytic plant +water caltrop|1 +(noun)|Jesuits' nut|Trapa natans|water chestnut|water chestnut plant|caltrop +water cannon|2 +(noun)|watercannon|hose|hosepipe +(noun)| +water carpet|1 +(noun)|water mat|Chrysosplenium americanum|golden saxifrage|golden spleen +water cart|1 +(noun)|cart +water chestnut|3 +(noun)|water chestnut plant|caltrop|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|Chinese water chestnut|Eleocharis dulcis|spike rush +(noun)|tuber +water chestnut plant|1 +(noun)|water chestnut|caltrop|aquatic plant|water plant|hydrophyte|hydrophytic plant +water chevrotain|1 +(noun)|water deer|Hyemoschus aquaticus|chevrotain|mouse deer +water chickweed|1 +(noun)|blinks|blinking chickweed|Montia lamprosperma|Indian lettuce +water chinquapin|2 +(noun)|American lotus|yanquapin|Nelumbo lutea|water lily +(noun)|edible seed +water chute|1 +(noun)|chute|slide|slideway|sloping trough +water clock|1 +(noun)|clepsydra|water glass|clock +water closet|1 +(noun)|closet|W.C.|loo|toilet|lavatory|lav|can|john|privy|bathroom +water clover|1 +(noun)|Marsilea quadrifolia|clover fern|pepperwort +water company|1 +(noun)|waterworks|utility|public utility|public-service corporation +water conservation|1 +(noun)|conservation +water cooler|1 +(noun)|device +water crowfoot|1 +(noun)|water buttercup|Ranunculus aquatilis|aquatic plant|water plant|hydrophyte|hydrophytic plant +water deer|1 +(noun)|water chevrotain|Hyemoschus aquaticus|chevrotain|mouse deer +water development|1 +(noun)|water project|water program|exploitation|development +water dog|3 +(noun)|water rat|sailor|crewman +(noun)|sporting dog|gun dog +(noun)|waterdog|ambystomid|ambystomid salamander +water down|2 +(verb)|dilute|thin|thin out|reduce|cut +(verb)|adulterate|stretch|dilute|debase +water dragon|2 +(noun)|lizard's-tail|swamp lily|Saururus cernuus|marsh plant|bog plant|swamp plant +(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|Caltha palustris|marsh plant|bog plant|swamp plant +water dropwort|1 +(noun)|hemlock water dropwort|Oenanthe crocata|poisonous plant +water elm|2 +(noun)|Ulmus laevis|elm|elm tree +(noun)|American elm|white elm|rock elm|Ulmus americana|elm|elm tree +water faucet|1 +(noun)|water tap|tap|spigot|hydrant|faucet|plumbing fixture +water fennel|1 +(noun)|Oenanthe aquatica|poisonous plant +water fern|1 +(noun)|aquatic fern|fern +water filter|1 +(noun)|filter +water finder|2 +(noun)|divining rod|dowser|dowsing rod|waterfinder|stick +(noun)| +water flaxseed|1 +(noun)|great duckweed|Spirodela polyrrhiza|duckweed +water flea|2 +(noun)|cyclops|copepod|copepod crustacean +(noun)|daphnia|branchiopod crustacean|branchiopod|branchiopodan +water fountain|1 +(noun)|drinking fountain|bubbler|fountain +water gage|1 +(noun)|water gauge|water glass|gauge|gage +water gap|1 +(noun)|col|gap +water gas|1 +(noun)|fuel|gas +water gate|2 +(noun)|sluicegate|sluice valve|floodgate|penstock|head gate|regulator +(noun)|Watergate|Watergate scandal|scandal|outrage +water gauge|1 +(noun)|water gage|water glass|gauge|gage +water gillyflower|1 +(noun)|American featherfoil|Hottonia inflata|featherfoil|feather-foil +water glass|4 +(noun)|soluble glass|sodium silicate|glass +(noun)|glass|drinking glass +(noun)|water gauge|water gage|gauge|gage +(noun)|water clock|clepsydra|clock +water gum|1 +(noun)|Nyssa aquatica|tupelo|tupelo tree +water gun|1 +(noun)|water pistol|squirt gun|squirter|plaything|toy +water hammer|1 +(noun)|bang|clap|eruption|blast|loud noise +water hazard|1 +(noun)|hazard +water heater|1 +(noun)|hot-water heater|hot-water tank|heater|warmer|tank|storage tank +water hemlock|1 +(noun)|Cicuta verosa|poisonous plant +water hen|2 +(noun)|American coot|marsh hen|mud hen|Fulica americana|coot +(noun)|gallinule|marsh hen|swamphen|aquatic bird +water hickory|1 +(noun)|bitter pecan|water bitternut|Carya aquatica|hickory|hickory tree +water hole|1 +(noun)|pond|pool +water horehound|1 +(noun)|Lycopus americanus|herb|herbaceous plant +water horsetail|1 +(noun)|swamp horsetail|Equisetum fluviatile|horsetail +water hyacinth|1 +(noun)|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant|water plant|hydrophyte|hydrophytic plant +water ice|2 +(noun)|ice|crystal +(noun)|ice|frappe +water jacket|1 +(noun)|vessel +water jug|1 +(noun)|jug +water jump|1 +(noun)|pool|obstacle +water lemon|1 +(noun)|bell apple|sweet cup|yellow granadilla|passion fruit +water lettuce|1 +(noun)|pistia|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant|water plant|hydrophyte|hydrophytic plant +water level|4 +(noun)|elevation +(noun)|water table|groundwater level|geological formation|formation +(noun)|waterline|water line|line +(noun)|water gauge|water gage|water glass +water lily|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +water line|3 +(noun)|waterline|water level|line +(noun)|watermark|line +(noun)| +water lobelia|1 +(noun)|Lobelia dortmanna|lobelia +water locust|1 +(noun)|swamp locust|Gleditsia aquatica|locust tree|locust +water main|1 +(noun)|main +water mat|1 +(noun)|water carpet|Chrysosplenium americanum|golden saxifrage|golden spleen +water meter|1 +(noun)|meter +water milfoil|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +water mill|1 +(noun)|mill|grinder +water mint|2 +(noun)|water-mint|Mentha aquatica|mint +(noun)| +water moccasin|2 +(noun)|cottonmouth|cottonmouth moccasin|Agkistrodon piscivorus|pit viper +(noun)|water snake +water mold|1 +(noun)|mold|mould +water nymph|4 +(noun)|naiad|aquatic plant|water plant|hydrophyte|hydrophytic plant +(noun)|fragrant water lily|pond lily|Nymphaea odorata|water lily +(noun)|nymph +(noun)|water sprite|fairy|faery|faerie|sprite +water oak|1 +(noun)|possum oak|Quercus nigra|oak|oak tree +water of crystallisation|1 +(noun)|water of crystallization|water of hydration|water|H2O +water of crystallization|1 +(noun)|water of crystallisation|water of hydration|water|H2O +water of hydration|1 +(noun)|water of crystallization|water of crystallisation|water|H2O +water on the knee|1 +(noun)|hydrarthrosis +water orchid|1 +(noun)|water hyacinth|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant|water plant|hydrophyte|hydrophytic plant +water ouzel|1 +(noun)|dipper|oscine|oscine bird +water ox|1 +(noun)|water buffalo|Asiatic buffalo|Bubalus bubalis|Old World buffalo|buffalo +water parsnip|1 +(noun)|Sium suave|marsh plant|bog plant|swamp plant +water parting|1 +(noun)|watershed|divide|line +water pill|1 +(noun)|diuretic drug|diuretic|drug +water pimpernel|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +water pipe|1 +(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|hubble-bubble|hubbly-bubbly|pipe|tobacco pipe +water pistol|1 +(noun)|water gun|squirt gun|squirter|plaything|toy +water plant|1 +(noun)|aquatic plant|hydrophyte|hydrophytic plant|vascular plant|tracheophyte +water plantain|1 +(noun)|Alisma plantago-aquatica|marsh plant|bog plant|swamp plant +water pollution|1 +(noun)|pollution +water polo|1 +(noun)|athletic game +water pore|1 +(noun)|hydathode|water stoma|stoma|stomate|pore +water program|1 +(noun)|water development|water project|exploitation|development +water project|1 +(noun)|water development|water program|exploitation|development +water pump|1 +(noun)|pump +water rat|3 +(noun)|water dog|sailor|crewman +(noun)|water vole|Arvicola amphibius|vole|field mouse +(noun)|rodent|gnawer|gnawing animal +water right|1 +(noun)|riparian right|right +water sapphire|1 +(noun)|cordierite|transparent gem +water scooter|1 +(noun)|sea scooter|scooter|motorboat|powerboat +water scorpion|1 +(noun)|water bug +water shamrock|1 +(noun)|buckbean|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant|water plant|hydrophyte|hydrophytic plant +water shrew|1 +(noun)|shrew|shrewmouse +water skater|1 +(noun)|water strider|pond-skater|water bug +water ski|2 +(noun)|ski|skis +(verb)|ski +water skin|2 +(noun)|waterskin|skin +(noun)| +water snake|1 +(noun)|colubrid snake|colubrid +water softener|1 +(noun)|softener +water spaniel|1 +(noun)|spaniel +water speedwell|1 +(noun)|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant|water plant|hydrophyte|hydrophytic plant +water sport|1 +(noun)|aquatics|sport|athletics +water sprite|2 +(noun)|floating fern|Ceratopteris pteridioides|aquatic fern|water fern +(noun)|water nymph|fairy|faery|faerie|sprite +water star grass|1 +(noun)|mud plantain|Heteranthera dubia|aquatic plant|water plant|hydrophyte|hydrophytic plant +water starwort|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +water stoma|1 +(noun)|hydathode|water pore|stoma|stomate|pore +water strider|1 +(noun)|pond-skater|water skater|water bug +water supply|1 +(noun)|water system|water|facility|installation +water system|2 +(noun)|system|scheme +(noun)|water supply|water|facility|installation +water table|1 +(noun)|water level|groundwater level|geological formation|formation +water tank|1 +(noun)|cistern|tank|storage tank +water tap|1 +(noun)|water faucet|tap|spigot|hydrant|faucet|plumbing fixture +water thrush|1 +(noun)|New World warbler|wood warbler +water tower|1 +(noun)|reservoir +water travel|1 +(noun)|seafaring|travel|traveling|travelling +water trumpet|1 +(noun)|cryptocoryne|aquatic plant|water plant|hydrophyte|hydrophytic plant +water turkey|1 +(noun)|Anhinga anhinga|snakebird|anhinga|darter +water under the bridge|1 +(noun)|bygone|past|past times|yesteryear|yore +water vapor|1 +(noun)|water vapour|vapor|vapour +water vapour|1 +(noun)|water vapor|vapor|vapour +water vascular system|1 +(noun)|vascular system +water violet|1 +(noun)|Hottonia palustris|featherfoil|feather-foil +water vole|2 +(noun)|water rat|Arvicola amphibius|vole|field mouse +(noun)|Richardson vole|Microtus richardsoni|vole|field mouse +water waggon|1 +(noun)|water wagon|wagon|waggon +water wagon|1 +(noun)|water waggon|wagon|waggon +water wheel|3 +(noun)|waterwheel|wheel +(noun)|waterwheel|wheel +(noun)| +water wings|1 +(noun)|life preserver|preserver|flotation device +water witch|1 +(noun)|dowser|rhabdomancer|diviner +water yam|1 +(noun)|white yam|Dioscorea alata|yam|yam plant +waterbird|1 +(noun)|waterfowl|water bird|aquatic bird +waterborne|2 +(adj)|mobile +(adj)|afloat +waterbuck|1 +(noun)|antelope +waterbury|1 +(noun)|Waterbury|city|metropolis|urban center +watercannon|1 +(noun)|water cannon|hose|hosepipe +watercolor|4 +(noun)|watercolour|painting|picture +(noun)|watercolour|water-base paint +(noun)|watercolour|pigment +(verb)|watercolour|paint +watercolorist|1 +(noun)|watercolourist|painter +watercolour|4 +(noun)|watercolor|pigment +(noun)|watercolor|water-base paint +(noun)|watercolor|painting|picture +(verb)|watercolor|paint +watercolourist|1 +(noun)|watercolorist|painter +watercourse|3 +(noun)|channel +(noun)|stream|body of water|water +(noun)|waterway|way +watercraft|2 +(noun)|craft|craftsmanship|workmanship +(noun)|vessel|craft +watercress|3 +(adj)|cress green|cresson|chromatic +(noun)|cress|cress plant +(noun)|cress +waterdog|1 +(noun)|ambystomid|ambystomid salamander +watered|1 +(adj)|moire|patterned +watered-silk|1 +(noun)|moire|fabric|cloth|material|textile +watered stock|1 +(noun)|stock +waterer|2 +(noun)|farmhand|fieldhand|field hand|farm worker +(noun)|water boy|assistant|helper|help|supporter +waterfall|1 +(noun)|falls|body of water|water +waterfinder|1 +(noun)|divining rod|dowser|dowsing rod|water finder|stick +waterford|1 +(noun)|Waterford|city|metropolis|urban center|port +waterfowl|1 +(noun)|water bird|waterbird|aquatic bird +waterfront|1 +(noun)|city district +watergate|1 +(noun)|Watergate|Watergate scandal|scandal|outrage +watergate scandal|1 +(noun)|Watergate|Watergate scandal|scandal|outrage +waterhouse-friderichsen syndrome|1 +(noun)|Waterhouse-Friderichsen syndrome|syndrome +wateriness|1 +(noun)|thinness +watering|2 +(noun)|lacrimation|lachrymation|tearing|bodily process|body process|bodily function|activity +(noun)|wetting +watering can|1 +(noun)|watering pot|container +watering cart|1 +(noun)|water cart +watering hole|1 +(noun)|watering place|spa|resort area|playground|vacation spot +watering place|1 +(noun)|watering hole|spa|resort area|playground|vacation spot +watering pot|1 +(noun)|watering can|container +waterleaf|1 +(noun)|herb|herbaceous plant +waterleaf family|1 +(noun)|Hydrophyllaceae|family Hydrophyllaceae|asterid dicot family +waterless|1 +(adj)|arid|dry +waterlessness|1 +(noun)|dryness|xerotes|condition|status +waterline|1 +(noun)|water line|water level|line +waterlogged|1 +(adj)|soggy|wet +waterloo|2 +(noun)|Waterloo|defeat|licking +(noun)|Waterloo|Battle of Waterloo|pitched battle +waterman|1 +(noun)|boatman|boater|worker +watermark|2 +(noun)|water line|line +(noun)|marker|marking|mark +watermeal|1 +(noun)|duckweed +watermelon|2 +(noun)|watermelon vine|Citrullus vulgaris|melon|melon vine +(noun)|melon +watermelon-shaped|1 +(adj)|prolate |rounded +watermelon begonia|1 +(noun)|Peperomia argyreia|Peperomia sandersii|peperomia +watermelon vine|1 +(noun)|watermelon|Citrullus vulgaris|melon|melon vine +waterpower|1 +(noun)|power +waterproof|4 +(adj)|rainproof|waterproofed|tight +(noun)|fabric|cloth|material|textile +(noun)|raincoat|coat +(verb)|seal|seal off +waterproofed|1 +(adj)|rainproof|waterproof|tight +waterproofing|2 +(noun)|sealing|protection +(noun)|coating|coat +waters|8 +(noun)|Waters|Ethel Waters|actress|singer|vocalist|vocalizer|vocaliser +(noun)|amniotic fluid|amnionic fluid|liquid body substance|bodily fluid|body fluid|humor|humour +(noun)|water|H2O|binary compound|liquid +(noun)|body of water|water|thing +(noun)|water system|water supply|water|facility|installation +(noun)|water|element +(noun)|urine|piss|pee|piddle|weewee|water|body waste|excretion|excreta|excrement|excretory product +(noun)|water|food|nutrient +watershed|2 +(noun)|water parting|divide|line +(noun)|landmark|turning point|juncture|occasion +waterside|1 +(noun)|bank +waterskin|1 +(noun)|water skin|skin +waterspout|3 +(noun)|tornado|twister +(noun)|downpour|cloudburst|deluge|torrent|pelter|soaker|rain|rainfall +(noun)|conduit +watertight|3 +(adj)|leakproof|seaworthy +(adj)|tight +(adj)|ironclad|unassailable|unshakable|bulletproof|incontestable |incontestible +watertown|2 +(noun)|Watertown|town +(noun)|Watertown|town +waterway|2 +(noun)|body of water|water +(noun)|watercourse|way +waterweed|1 +(noun)|aquatic plant|water plant|hydrophyte|hydrophytic plant +waterwheel|2 +(noun)|water wheel|wheel +(noun)|water wheel|wheel +waterwheel plant|1 +(noun)|Aldrovanda vesiculosa|carnivorous plant +waterworks|2 +(noun)|water company|utility|public utility|public-service corporation +(noun)|workplace|work +waterworn|1 +(adj)|worn +watery|5 +(adj)|wet +(adj)|reeking|dripping|wet +(adj)|liquid|swimming|tearful +(adj)|liquid +(adj)|washy|weak|diluted |dilute +watery-eyed|1 +(adj)|teary|teary-eyed|tearful +wats|1 +(noun)|WATS|WATS line|telephone line|phone line|telephone circuit|subscriber line|line +wats line|1 +(noun)|WATS|WATS line|telephone line|phone line|telephone circuit|subscriber line|line +watson|3 +(noun)|Watson|Thomas Augustus Watson|engineer|applied scientist|technologist +(noun)|Watson|John Broadus Watson|psychologist +(noun)|Watson|James Watson|James Dewey Watson|geneticist +watt|2 +(noun)|W|power unit +(noun)|Watt|James Watt|engineer|applied scientist|technologist|inventor|discoverer|artificer +watt-hour|1 +(noun)|work unit|heat unit|energy unit +watt second|1 +(noun)|joule|J|work unit|heat unit|energy unit +wattage|1 +(noun)|electrical power|electric power|power +watteau|1 +(noun)|Watteau|Jean Antoine Watteau|old master +wattle|4 +(noun)|lappet|caruncle|caruncula +(noun)|framework|frame|framing +(verb)|construct|build|make +(verb)|intertwine|twine|entwine|enlace|interlace|lace +wattle and daub|1 +(noun)|building material +watts|3 +(noun)|Watts|Isaac Watts|poet|theologian|theologist|theologizer|theologiser +(noun)|watt|W|power unit +(noun)|Watt|James Watt|engineer|applied scientist|technologist|inventor|discoverer|artificer +watusi|1 +(noun)|Tutsi|Watutsi|Watusi|Bantu +watutsi|1 +(noun)|Tutsi|Watutsi|Watusi|Bantu +waugh|1 +(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer|author +waul|1 +(verb)|squall|wawl|howl|ululate|wail|roar|yawl +wausau|1 +(noun)|Wausau|town +wave|14 +(noun)|moving ridge|movement|motion +(noun)|motion|movement|move|motility +(noun)|undulation|movement|motion +(noun)|rise +(noun)|waving|wafture|gesture|motion +(noun)|hairdo|hair style|coiffure +(noun)|undulation|curve|curved shape +(noun)|weather|weather condition|atmospheric condition +(noun)|Wave|reservist|woman|adult female +(verb)|beckon|gesticulate|gesture|motion +(verb)|brandish|flourish|move|displace +(verb)|roll|undulate|flap|move +(verb)|curl|twist +(verb)|dress|arrange|set|do|coif|coiffe|coiffure +wave-off|1 +(noun)|overshoot|go-around|landing approach +wave-particle duality|1 +(noun)|duality|property +wave angle|1 +(noun)|angle +wave equation|1 +(noun)|differential equation +wave form|2 +(noun)|waveform|wave shape|wave|undulation +(noun)| +wave front|3 +(noun)|propagation +(noun)|wavefront|surface +(noun)| +wave guide|2 +(noun)|waveguide|conductor +(noun)| +wave mechanics|1 +(noun)|quantum mechanics +wave number|1 +(noun)|frequency|frequence|oftenness +wave off|1 +(verb)|background|play down|downplay +wave shape|1 +(noun)|wave form|waveform|wave|undulation +wave theory|1 +(noun)|undulatory theory|wave theory of light|scientific theory +wave theory of light|1 +(noun)|wave theory|undulatory theory|scientific theory +wave train|1 +(noun)|series +waveband|1 +(noun)|frequency band|band +waveform|1 +(noun)|wave form|wave shape|wave|undulation +wavefront|1 +(noun)|wave front|surface +waveguide|1 +(noun)|wave guide|conductor +wavelength|2 +(noun)|distance +(noun)|orientation +wavelet|1 +(noun)|ripple|rippling|riffle|wave|moving ridge +wavelike|1 +(adj)|crinkled|crinkly|rippled|wavy|uneven +wavell|1 +(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general|full general|field marshal +waver|10 +(noun)|communicator +(noun)|hesitation|falter|faltering|pause +(noun)|flutter|flicker|motion|movement|move|motility +(verb)|hesitate|waffle +(verb)|falter|hesitate|waffle +(verb)|falter|move +(verb)|fluctuate|vacillate|swing +(verb)|flicker|flitter|flutter|quiver|move back and forth +(verb)|weave|swing|sway +(verb)|quaver|voice|sound|vocalize|vocalise +waverer|1 +(noun)|vacillator|hesitator|hesitater|coward +wavering|3 +(adj)|vacillant|vacillating|irresolute +(noun)|hesitation|vacillation|indecision|indecisiveness|irresolution +(noun)|fluctuation|irregularity|unregularity +waving|2 +(adj)|aflare|flaring|flying|moving +(noun)|wave|wafture|gesture|motion +wavy|2 +(adj)|curly +(adj)|crinkled|crinkly|rippled|wavelike|uneven +wavy-leaved aster|1 +(noun)|aster +waw|1 +(noun)|letter|letter of the alphabet|alphabetic character +wawl|1 +(verb)|squall|waul|howl|ululate|wail|roar|yawl +wax|4 +(noun)|lipid|lipide|lipoid +(verb)|cover +(verb)|mount|climb|rise|increase +(verb)|full|increase +wax-chandler|1 +(noun)|chandler +wax-myrtle family|1 +(noun)|Myricaceae|family Myricaceae|dicot family|magnoliopsid family +wax bean|2 +(noun)|common bean|common bean plant|Phaseolus vulgaris +(noun)|yellow bean|fresh bean +wax begonia|1 +(noun)|Begonia semperflorens|begonia +wax crayon|1 +(noun)|crayon|writing implement +wax figure|1 +(noun)|waxwork|effigy|image|simulacrum +wax insect|1 +(noun)|scale insect +wax light|1 +(noun)|candle|taper|lamp +wax mallow|2 +(noun)|waxmallow|sleeping hibiscus|mallow +(noun)| +wax moth|1 +(noun)|bee moth|Galleria mellonella|pyralid|pyralid moth +wax myrtle|1 +(noun)|shrub|bush +wax palm|3 +(noun)|caranday|caranda|caranda palm|Copernicia australis|Copernicia alba|fan palm +(noun)|carnauba|carnauba palm|Copernicia prunifera|Copernicia cerifera|fan palm +(noun)|Ceroxylon andicola|Ceroxylon alpinum|feather palm +wax paper|1 +(noun)|paper +wax plant|1 +(noun)|Hoya carnosa|hoya +waxberry|2 +(noun)|snowberry|common snowberry|Symphoricarpos alba|poisonous plant|Caprifoliaceae|family Caprifoliaceae|honeysuckle family +(noun)|bayberry|candleberry|swamp candleberry|Myrica pensylvanica|wax myrtle +waxed|1 +(adj)|waxed +waxen|2 +(adj)|waxy|lipid|lipide|lipoid +(adj)|waxlike|waxy|colorless |colourless +waxflower|3 +(noun)|Madagascar jasmine|Stephanotis floribunda|stephanotis +(noun)|Clusia insignis|air plant|epiphyte|aerophyte|epiphytic plant +(noun)|Indian pipe|Monotropa uniflora|wildflower|wild flower +waxing|3 +(adj)|waxing +(noun)|application|coating|covering +(noun)|increase +waxlike|2 +(adj)|waxen|waxy|colorless |colourless +(adj)|waxy|ceraceous|smooth +waxmallow|1 +(noun)|wax mallow|sleeping hibiscus|mallow +waxwing|1 +(noun)|oscine|oscine bird +waxwork|2 +(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|Celastrus scandens|vine +(noun)|wax figure|effigy|image|simulacrum +waxy|3 +(adj)|waxen|lipid|lipide|lipoid +(adj)|waxlike|ceraceous|smooth +(adj)|waxen|waxlike|colorless |colourless +waxycap|1 +(noun)|agaric +way|13 +(noun)|manner|mode|style|fashion|property +(noun)|means|agency|implementation|effectuation +(noun)|journey|journeying +(noun)|condition|status +(noun)|path|way of life|course|course of action +(noun)|artifact|artefact +(noun)|direction|path|route|itinerary +(noun)|ways|distance +(noun)|choice|pick|selection +(noun)|category +(noun)|room|elbow room|position|spatial relation +(noun)|share|portion|part|percentage +(adv)|right smart +way-out|1 +(adj)|far-out|kinky|offbeat|quirky|unconventional +way of life|1 +(noun)|way|path|course|course of action +way out|1 +(noun)|exit|issue|outlet|opening +way station|2 +(noun)|stopover|stop +(noun)|whistle stop|flag stop|railway station|railroad station|railroad terminal|train station|train depot +waybill|1 +(noun)|bill of lading|receipt +wayfarer|2 +(noun)|pedestrian|walker|footer +(noun)|journeyer|traveler|traveller +wayfaring|1 +(adj)|peripatetic|unsettled +wayfaring tree|1 +(noun)|twist wood|twistwood|Viburnum lantana|shrub|bush +wayland|1 +(noun)|Wayland|Wayland the Smith|Wieland|mythical being +wayland the smith|1 +(noun)|Wayland|Wayland the Smith|Wieland|mythical being +waylay|1 +(verb)|ambush|scupper|bushwhack|lurk|ambuscade|lie in wait|wait +wayne|2 +(noun)|Wayne|John Wayne|Duke Wayne|actor|histrion|player|thespian|role player +(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general|full general +wayne gretzky|1 +(noun)|Gretzky|Wayne Gretzky|hockey player|ice-hockey player +ways|15 +(noun)|way|distance +(noun)|shipway|slipway|structure|construction +(noun)|manner|mode|style|way|fashion|property +(noun)|means|agency|way|implementation|effectuation +(noun)|way|journey|journeying +(noun)|way|condition|status +(noun)|way|path|way of life|course|course of action +(noun)|way|artifact|artefact +(noun)|direction|way|path|route|itinerary +(noun)|way|distance +(noun)|way|choice|pick|selection +(noun)|way|category +(noun)|room|way|elbow room|position|spatial relation +(noun)|way|share|portion|part|percentage +(adv)|n-ways +ways and means|1 +(noun)|resource +ways and means committee|1 +(noun)|Ways and Means Committee|standing committee +wayside|1 +(noun)|roadside|edge|margin +wayward|1 +(adj)|contrary|obstinate|perverse|disobedient +wb|1 +(noun)|weber|Wb|flux unit|magnetic flux unit +wbc|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +wbn|1 +(noun)|west by north|WbN|compass point|point +wbs|2 +(noun)|west by south|WbS|compass point|point +(noun)|weber|Wb|flux unit|magnetic flux unit +weak|10 +(adj)|weak |anemic|anaemic|adynamic|asthenic|debilitated|enervated|faint|feeble|feeble|lame|flaccid|lax|limp|slack|flimsy|slight|tenuous|thin|flimsy|fragile|jerry-built|shoddy|namby-pamby|spineless|wishy-washy|pale|pallid|wan|puny|vulnerable|washy|weakened|delicate|tender|untoughened|powerless +(adj)|watery|washy|diluted |dilute +(adj)|powerless |feeble|nerveless|helpless|incapacitated|flooded|inundated|overcome|overpowered|overwhelmed|swamped|engulfed|low-powered|impotent|ineffective|uneffective|ineffectual +(adj)|unaccented|light|unstressed |unaccented +(adj)|fallible|frail|imperfect|human +(adj)|forceless |unforceful|wimpish|wimpy +(adj)|decrepit|debile|feeble|infirm|sapless|weakly|frail +(adj)|regular +(adj)|impotent +(adj)|effeminate|soft +weak-kneed|1 +(adj)|irresolute +weak force|1 +(noun)|weak interaction|interaction|fundamental interaction +weak interaction|1 +(noun)|weak force|interaction|fundamental interaction +weak part|1 +(noun)|weak spot|soft spot|weakness +weak point|1 +(noun)|liability +weak spot|1 +(noun)|weak part|soft spot|weakness +weaken|5 +(verb)|change|alter|modify +(verb)|decrease|diminish|lessen|fall +(verb)|sabotage|undermine|countermine|counteract|subvert|disobey +(verb)|de-escalate|step down|decrease|lessen|minify +(verb)|dampen|damp|soften|break|deaden|blunt +weakened|5 +(adj)|diminished|lessened|vitiated|impaired +(adj)|weak +(adj)|attenuate|attenuated|faded|decreased |reduced +(adj)|cut|thinned|diluted |dilute +(adj)|hurt|damaged +weakener|1 +(noun)|agent +weakening|4 +(adj)|debilitative|enervating|enfeebling|debilitating +(adj)|moderating +(noun)|transformation|transmutation|shift +(noun)|decrease|diminution|reduction|step-down +weakfish|2 +(noun)|saltwater fish +(noun)|Cynoscion regalis|sea trout +weakling|1 +(noun)|doormat|wuss|person|individual|someone|somebody|mortal|human|soul +weakly|1 +(adj)|decrepit|debile|feeble|infirm|sapless|weak|frail +weakly interacting massive particle|1 +(noun)|WIMP|elementary particle|fundamental particle|subatomic particle +weakness|5 +(noun)|failing|imperfection|imperfectness +(noun)|helplessness|impuissance|powerlessness|impotence|impotency +(noun)|property +(noun)|misfortune|bad luck|tough luck|ill luck +(noun)|preference|penchant|predilection|taste +weal|1 +(noun)|wale|welt|wheal|injury|hurt|harm|trauma +weald|1 +(noun)|country|rural area +wealth|4 +(noun)|wealthiness|financial condition|economic condition +(noun)|abundance|copiousness|teemingness +(noun)|riches|material resource +(noun)|property|belongings|holding|material possession +wealthiness|1 +(noun)|wealth|financial condition|economic condition +wealthy|1 +(adj)|affluent|flush|loaded|moneyed|rich +wealthy man|1 +(noun)|man of means|rich man|rich person|wealthy person|have +wealthy person|1 +(noun)|rich person|have|person|individual|someone|somebody|mortal|human|soul +wean|2 +(verb)|ablactate|deprive +(verb)|estrange|alienate|alien|disaffect +weaned|1 +(adj)|weaned +weaning|1 +(noun)|ablactation|substitution|exchange|commutation +weapon|2 +(noun)|arm|weapon system|instrument +(noun)|artillery|persuasion|suasion +weapon-grade plutonium|1 +(noun)|weapons plutonium|plutonium 239 +weapon of mass destruction|1 +(noun)|WMD|W.M.D.|weapon|arm|weapon system +weapon system|1 +(noun)|weapon|arm|instrument +weaponed|1 +(adj)|equipped|armed +weaponize|1 +(verb)|change|alter|modify +weaponless|1 +(adj)|unarmed +weaponry|1 +(noun)|arms|implements of war|weapons system|munition|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +weapons-grade|2 +(adj)|superior +(adj)|industrial-strength|strong +weapons carrier|1 +(noun)|military vehicle|self-propelled vehicle +weapons emplacement|1 +(noun)|gun emplacement|emplacement +weapons platform|1 +(noun)|platform|structure|construction +weapons plutonium|1 +(noun)|weapon-grade plutonium|plutonium 239 +weapons system|2 +(noun)|weaponry|arms|implements of war|munition|instrumentality|instrumentation|collection|aggregation|accumulation|assemblage +(noun)|weapon|arm|weapon system|instrument +wear|12 +(noun)|deterioration|impairment +(noun)|clothing|article of clothing|vesture|covering|consumer goods +(noun)|wearing|act|human action|human activity +(verb)|have on +(verb)|bear|have|feature +(verb)|have|feature +(verb)|wear off|wear out|wear thin|deteriorate +(verb)|have|feature +(verb)|hold out|endure|last|endure +(verb)|break|wear out|bust|fall apart|decay|crumble|delapidate|wear away|wear off|wear away +(verb)|tire|wear upon|tire out|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose +(verb)|put on|get into|don|assume|dress|get dressed +wear and tear|1 +(noun)|depreciation|financial loss +wear away|3 +(verb)|whittle away|whittle down|damage +(verb)|wear off|remove|take|take away|withdraw +(verb)|erode|gnaw|gnaw at|eat at|decay|crumble|delapidate +wear down|1 +(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|fag out|fag|fatigue|indispose +wear off|2 +(verb)|wear|wear out|wear thin|deteriorate +(verb)|wear away|remove|take|take away|withdraw +wear on|1 +(verb)|decline|go down|wane +wear out|3 +(verb)|tire|wear upon|tire out|wear|weary|jade|outwear|wear down|fag out|fag|fatigue|indispose +(verb)|break|wear|bust|fall apart|decay|crumble|delapidate +(verb)|wear|wear off|wear thin|deteriorate +wear round|1 +(verb)|tack|sail +wear ship|1 +(verb)|sail +wear the trousers|1 +(verb)|call the shots|call the tune|control|command +wear thin|1 +(verb)|wear|wear off|wear out|deteriorate +wear upon|1 +(verb)|tire|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose +wearable|1 +(adj)|wearable +wearer|1 +(noun)|user +wearied|1 +(adj)|jaded|tired +wearily|1 +(adv)|tiredly +weariness|1 +(noun)|fatigue|tiredness|temporary state +wearing|3 +(adj)|exhausting|tiring|wearying|effortful +(noun)|erosion|eroding|eating away|wearing away|geological process|geologic process +(noun)|wear|act|human action|human activity +wearing apparel|1 +(noun)|apparel|dress|clothes|clothing|article of clothing|vesture|wear +wearing away|1 +(noun)|erosion|eroding|eating away|wearing|geological process|geologic process +wearisome|1 +(adj)|boring|deadening|dull|ho-hum|irksome|slow|tedious|tiresome|uninteresting +weary|3 +(adj)|aweary|tired +(verb)|tire|wear upon|tire out|wear|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose +(verb)|tire|pall|fatigue|jade|devolve|deteriorate|drop|degenerate +weary willie|1 +(noun)|Kelly|Emmett Kelly|Weary Willie|clown|buffoon|merry andrew +wearying|1 +(adj)|exhausting|tiring|wearing|effortful +weasel|1 +(noun)|musteline mammal|mustelid|musteline +weasel-worded|1 +(adj)|hedged|qualified +weasel word|1 +(noun)|reservation|qualification +weather|6 +(adj)|upwind|windward +(noun)|weather condition|atmospheric condition|atmospheric phenomenon +(verb)|endure|brave|brave out|defy|withstand|hold|hold up +(verb)|lean|tilt|tip|slant|angle +(verb)|sail +(verb)|decay|crumble|delapidate +weather-beaten|2 +(adj)|tough |toughened +(adj)|weatherworn|weathered|worn +weather-bound|1 +(adj)|confined +weather-stripped|1 +(adj)|caulked +weather bureau|1 +(noun)|administrative unit|administrative body +weather chart|1 +(noun)|weather map|map +weather condition|1 +(noun)|weather|atmospheric condition|atmospheric phenomenon +weather deck|1 +(noun)|shelter deck|upper deck +weather eye|1 +(noun)|watchfulness|vigilance|attentiveness +weather forecast|1 +(noun)|weather outlook|prognosis|forecast +weather forecaster|1 +(noun)|weatherman|meteorologist +weather forecasting|1 +(noun)|meteorology|prediction|foretelling|forecasting|prognostication +weather map|1 +(noun)|weather chart|map +weather outlook|1 +(noun)|weather forecast|prognosis|forecast +weather radar|1 +(noun)|radar|microwave radar|radio detection and ranging|radiolocation +weather satellite|1 +(noun)|meteorological satellite|satellite|artificial satellite|orbiter +weather sheet|1 +(noun)|sheet|tack|mainsheet|shroud|line +weather ship|1 +(noun)|vessel|watercraft +weather side|1 +(noun)|to windward|windward side|weatherboard|windward +weather station|1 +(noun)|meteorological observation post|lookout|observation post +weather strip|1 +(noun)|weather stripping|strip|slip +weather stripping|1 +(noun)|weather strip|strip|slip +weather vane|2 +(noun)|weathervane|vane|wind vane|mechanical device +(noun)| +weatherboard|2 +(noun)|clapboard|weatherboarding|siding +(noun)|to windward|windward side|weather side|windward +weatherboarding|1 +(noun)|clapboard|weatherboard|siding +weathercock|1 +(noun)|weathervane|weather vane|vane|wind vane +weathered|1 +(adj)|weather-beaten|weatherworn|worn +weatherglass|1 +(noun)|barometer +weatherliness|1 +(noun)|maneuverability|manoeuvrability +weatherly|1 +(adj)|maneuverability|manoeuvrability +weatherman|1 +(noun)|weather forecaster|meteorologist +weatherproof|2 +(adj)|protected |secure +(verb)|proof +weatherstrip|2 +(verb)|insulate +(verb)|equip|fit|fit out|outfit +weathervane|1 +(noun)|weather vane|vane|wind vane|mechanical device +weatherworn|1 +(adj)|weather-beaten|weathered|worn +weave|5 +(noun)|design|pattern|figure +(verb)|interweave|twist|twine|distort +(verb)|tissue|create from raw material|create from raw stuff +(verb)|waver|swing|sway +(verb)|wind|thread|meander|wander|travel|go|move|locomote +weaver|2 +(noun)|craftsman|artisan|journeyman|artificer +(noun)|weaverbird|weaver finch|oscine|oscine bird +weaver's broom|1 +(noun)|Spanish broom|Spartium junceum|broom +weaver's hitch|1 +(noun)|sheet bend|becket bend|weaver's knot|hitch +weaver's knot|1 +(noun)|sheet bend|becket bend|weaver's hitch|hitch +weaver finch|1 +(noun)|weaver|weaverbird|oscine|oscine bird +weaverbird|1 +(noun)|weaver|weaver finch|oscine|oscine bird +weaving|2 +(adj)|lurching|stumbling|staggering|unsteady +(noun)|handicraft +web|8 +(noun)|object|physical object +(noun)|entanglement|trap +(noun)|vane|blade +(noun)|network|system|scheme +(noun)|World Wide Web|WWW|computer network +(noun)|fabric|cloth|material|textile +(noun)|membrane|tissue layer +(verb)|net|weave|tissue +web-footed|1 +(adj)|web-toed|footed +web-toed|1 +(adj)|web-footed|footed +web-toed salamander|1 +(noun)|salamander +web browser|1 +(noun)|browser|application|application program|applications programme +web log|1 +(noun)|blog|diary|journal +web page|1 +(noun)|text file|document +web site|1 +(noun)|internet site|site|computer|computing machine|computing device|data processor|electronic computer|information processing system +web spinner|1 +(noun)|insect +webb|2 +(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer|author +(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist|economist|economic expert +webbed|2 +(adj)|webbed |palmate +(adj)|lacy|netlike|netted|weblike|webby|reticulate |reticulated|reticular +webbed foot|1 +(noun)|bird's foot +webbing|2 +(noun)|tape +(noun)|fabric|cloth|material|textile +webbing clothes moth|1 +(noun)|webbing moth|Tineola bisselliella|clothes moth +webbing moth|1 +(noun)|webbing clothes moth|Tineola bisselliella|clothes moth +webby|1 +(adj)|lacy|netlike|netted|webbed|weblike|reticulate |reticulated|reticular +webcam|1 +(noun)|digital camera +weber|6 +(noun)|Wb|flux unit|magnetic flux unit +(noun)|Weber|Wilhelm Eduard Weber|physicist +(noun)|Weber|Max Weber|painter +(noun)|Weber|Max Weber|sociologist +(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor|music director|director|composer +(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist +weber's law|1 +(noun)|Weber's law|law|law of nature +weber-fechner law|1 +(noun)|Fechner's law|Weber-Fechner law|law|law of nature +webfoot|1 +(noun)|animal foot|foot +weblike|1 +(adj)|lacy|netlike|netted|webbed|webby|reticulate |reticulated|reticular +webster|3 +(noun)|Webster|John Webster|dramatist|playwright +(noun)|Webster|Daniel Webster|politician|politico|pol|political leader +(noun)|Webster|Noah Webster|lexicographer|lexicologist +webworm|1 +(noun)|caterpillar +webworm moth|1 +(noun)|lasiocampid|lasiocampid moth +wed|4 +(adj)|wedded|married +(noun)|Wednesday|Wed|weekday +(verb)|marry|get married|conjoin|hook up with|get hitched with|espouse|unite|unify +(verb)|marry|tie|splice|officiate +wedded|1 +(adj)|wed|married +weddell sea|1 +(noun)|Weddell Sea|sea +wedding|3 +(noun)|wedding ceremony|nuptials|hymeneals|ceremony|ceremonial|ceremonial occasion|observance +(noun)|marriage|marriage ceremony|ritual|rite +(noun)|wedding party|party +wedding anniversary|1 +(noun)|anniversary|day of remembrance +wedding band|1 +(noun)|wedding ring|ring|band +wedding cake|1 +(noun)|bridecake|cake +wedding ceremony|1 +(noun)|wedding|nuptials|hymeneals|ceremony|ceremonial|ceremonial occasion|observance +wedding chest|1 +(noun)|hope chest|chest +wedding day|1 +(noun)|day +wedding dress|1 +(noun)|bridal gown|wedding gown|gown +wedding gift|1 +(noun)|wedding present|present +wedding gown|1 +(noun)|bridal gown|wedding dress|gown +wedding guest|1 +(noun)|guest|invitee +wedding licence|1 +(noun)|marriage license|marriage licence|wedding license|license|licence|permit +wedding license|1 +(noun)|marriage license|marriage licence|wedding licence|license|licence|permit +wedding march|1 +(noun)|processional march|recessional march +wedding night|1 +(noun)|night|nighttime|dark +wedding party|1 +(noun)|wedding|party +wedding pictures|1 +(noun)|photograph|photo|exposure|pic +wedding present|1 +(noun)|wedding gift|present +wedding reception|1 +(noun)|reception +wedding ring|1 +(noun)|wedding band|ring|band +wedge|9 +(noun)|wedge shape|cuneus|triangle|trigon|trilateral +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|zep|sandwich +(noun)|hacek|diacritical mark|diacritic +(noun)|wedge heel|heel +(noun)|iron +(noun)|inclined plane +(noun)|chock|block +(verb)|lodge|stick|deposit|fasten|fix|secure +(verb)|squeeze|force|move|displace +wedge-shaped|2 +(adj)|cuneate|simple |unsubdivided +(adj)|cuneal|cuneiform|triangle|trigon|trilateral +wedge bone|1 +(noun)|cut of beef +wedge heel|1 +(noun)|wedge|heel +wedge shape|1 +(noun)|wedge|cuneus|triangle|trigon|trilateral +wedged|1 +(adj)|impacted|compact +wedgie|1 +(noun)|shoe +wedgwood|2 +(noun)|Wedgwood|Josiah Wedgwood|potter|thrower|ceramicist|ceramist +(noun)|Wedgwood|pottery|clayware +wedlock|1 +(noun)|marriage|matrimony|union|spousal relationship|marital status +wednesday|1 +(noun)|Wednesday|Wed|weekday +wee|4 +(adj)|bitty|bittie|teensy|teentsy|teeny|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +(adj)|early +(noun)|time +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee-wee|pass water|excrete|egest|eliminate|pass +wee-wee|1 +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|pass water|excrete|egest|eliminate|pass +weed|3 +(noun)|vascular plant|tracheophyte +(noun)|pot|grass|green goddess|dope|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +(verb)|remove|take|take away|withdraw +weed killer|2 +(noun)|herbicide|weedkiller|chemical +(noun)| +weed out|1 +(verb)|comb out|get rid of|remove +weeded|1 +(adj)|weedless +weeder|2 +(noun)|farmhand|fieldhand|field hand|farm worker +(noun)|hand tool +weedkiller|1 +(noun)|herbicide|weed killer|chemical +weedless|1 +(adj)|weedless |weeded +weeds|4 +(noun)|widow's weeds|garment +(noun)|mourning band|band +(noun)|weed|vascular plant|tracheophyte +(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis|marijuana|marihuana|ganja +weedy|2 +(adj)|weedy +(adj)|scraggy|scrawny|skinny|underweight|thin |lean +week|3 +(noun)|hebdomad|time period|period of time|period +(noun)|calendar week|time period|period of time|period +(noun)|workweek|work time +week from monday|1 +(noun)|week from Monday|week|hebdomad +weekday|2 +(adj)|time unit|unit of time +(noun)|day of the week +weekend|2 +(noun)|time period|period of time|period +(verb)|spend|pass +weekend warrior|2 +(noun)|homeowner|householder +(noun)|reservist +weekender|2 +(noun)|vacationer|vacationist +(noun)|bag|traveling bag|grip|suitcase +weeklong|1 +(adj)|long +weekly|3 +(adj)|time period|period of time|period +(noun)|series|serial|serial publication +(adv)|hebdomadally|every week|each week +weeknight|1 +(noun)|night|nighttime|dark +weeness|1 +(noun)|diminutiveness|minuteness|petiteness|tininess|smallness|littleness +weenie|1 +(noun)|frank|frankfurter|hotdog|hot dog|dog|wiener|wienerwurst|sausage +weenie roast|1 +(noun)|wiener roast|cookout +weensy|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +weeny|1 +(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small +weep|1 +(verb)|cry|express emotion|express feelings +weeper|2 +(noun)|crier|unfortunate|unfortunate person +(noun)|mourner|griever|sorrower|lamenter +weepiness|1 +(noun)|tearfulness|sadness|unhappiness +weeping|2 +(adj)|dolorous|dolourous|lachrymose|tearful|sorrowful +(noun)|crying|tears|bodily process|body process|bodily function|activity +weeping beech|1 +(noun)|Fagus pendula|Fagus sylvatica pendula|beech|beech tree +weeping love grass|1 +(noun)|African love grass|Eragrostis curvula|love grass|bay grass +weeping spruce|1 +(noun)|Brewer's spruce|Picea breweriana|spruce +weeping tree broom|1 +(noun)|broom +weeping willow|1 +(noun)|Babylonian weeping willow|Salix babylonica|willow|willow tree +weepy|1 +(adj)|tearful +weevil|1 +(noun)|beetle +weewee|1 +(noun)|urine|piss|pee|piddle|water|body waste|excretion|excreta|excrement|excretory product +weft|1 +(noun)|woof|filling|pick|thread|yarn +wegener|1 +(noun)|Wegener|Alfred Lothar Wegener|geophysicist +wei|1 +(noun)|Wei|Wei dynasty|dynasty +wei dynasty|1 +(noun)|Wei|Wei dynasty|dynasty +weigela|1 +(noun)|Weigela florida|shrub|bush +weigela florida|1 +(noun)|weigela|Weigela florida|shrub|bush +weigh|5 +(verb)|measure +(verb)|consider|count +(verb)|librate|quantify|measure +(verb)|count|matter|be +(verb)|press|count|matter +weigh anchor|1 +(verb)|weigh the anchor|heave|heave up|heft|heft up +weigh down|2 +(verb)|weigh on|sadden +(verb)|drag down|bear down|bear down on|press down on|press +weigh on|1 +(verb)|weigh down|sadden +weigh the anchor|1 +(verb)|weigh anchor|heave|heave up|heft|heft up +weighbridge|1 +(noun)|scale|weighing machine +weighed down|2 +(adj)|heavy|full +(adj)|bowed down|loaded down|overburdened|burdened +weigher|1 +(noun)|official|functionary +weighing|1 +(noun)|deliberation|advisement|consideration +weighing machine|1 +(noun)|scale|measuring instrument|measuring system|measuring device +weight|10 +(noun)|physical property +(noun)|free weight|exercising weight|sports equipment|sporting goods +(noun)|importance +(noun)|artifact|artefact +(noun)|oppression|oppressiveness +(noun)|system of weights|system of measurement|metric +(noun)|weight unit|unit of measurement|unit +(noun)|weighting|coefficient +(verb)|burden|burthen|weight down|charge +(verb)|slant|angle|bias|predetermine +weight-lift|2 +(verb)|weightlift|press|exercise|work out +(verb)| +weight down|1 +(verb)|burden|burthen|weight|charge +weight gainer|1 +(noun)|gainer|person|individual|someone|somebody|mortal|human|soul +weight gaining|1 +(noun)|bodybuilding|anaerobic exercise|muscle building|musclebuilding +weight unit|2 +(noun)|metric weight unit|mass unit|metric unit|metric +(noun)|weight|unit of measurement|unit +weighted|2 +(adj)|leaden|heavy +(adj)|adjusted +weightiness|1 +(noun)|heaviness|weight +weighting|1 +(noun)|weight|coefficient +weightless|1 +(adj)|weightless +weightlessness|1 +(noun)|lightness|weight +weightlift|1 +(verb)|weight-lift|press|exercise|work out +weightlifter|1 +(noun)|lifter|athlete|jock +weightlifting|1 +(noun)|bodybuilding|anaerobic exercise|muscle building|musclebuilding +weighty|5 +(adj)|weighty +(adj)|grave|grievous|heavy|important |of import +(adj)|heavy +(adj)|corpulent|obese|rotund|fat +(adj)|cogent|telling|forceful +weil|2 +(noun)|Weil|Simone Weil|philosopher +(noun)|Weil|Andre Weil|mathematician +weil's disease|1 +(noun)|Weil's disease|swamp fever|leptospirosis +weill|1 +(noun)|Weill|Kurt Weill|composer +weimar|1 +(noun)|Weimar|city|metropolis|urban center +weimar republic|1 +(noun)|Weimar Republic|democracy|republic|commonwealth +weimaraner|1 +(noun)|Weimaraner|hound|hound dog +weinberg|1 +(noun)|Weinberg|Steven Weinberg|physicist +weir|2 +(noun)|dam|dike|dyke|levee +(noun)|fence|fencing +weird|3 +(adj)|eldritch|uncanny|unearthly|supernatural +(adj)|strange |unusual +(noun)|Wyrd|Weird|Anglo-Saxon deity +weird sisters|1 +(noun)|Fates|the Fates|Weird Sisters|deity|divinity|god|immortal +weirdie|1 +(noun)|creep|weirdo|weirdy|spook|unpleasant person|disagreeable person +weirdness|1 +(noun)|outlandishness|bizarreness|unfamiliarity|strangeness +weirdo|2 +(noun)|creep|weirdie|weirdy|spook|unpleasant person|disagreeable person +(noun)|crazy|loony|looney|lunatic|madman|maniac +weirdy|1 +(noun)|creep|weirdo|weirdie|spook|unpleasant person|disagreeable person +weisenheimer|1 +(noun)|wise guy|smart aleck|wiseacre|wisenheimer|upstart +weismann|1 +(noun)|Weismann|August Friedrich Leopold Weismann|geneticist +weissbier|1 +(noun)|Weissbier|white beer|wheat beer|ale +weisshorn|1 +(noun)|Weisshorn|mountain peak +weizenbier|1 +(noun)|Weizenbier|Weissbier|white beer|wheat beer +weizenbock|1 +(noun)|Weizenbock|Weissbier|white beer|wheat beer +weizmann|1 +(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman|solon|national leader +weka|1 +(noun)|maori hen|wood hen|rail +welcher|1 +(noun)|welsher|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +welcome|6 +(adj)|welcome |invited|wanted|welcomed|you're welcome|invited|wanted +(noun)|acceptance +(noun)|greeting|salutation +(verb)|accept|take|have +(verb)|receive|greet|recognize|recognise +(verb)|receive|take in|invite +welcome mat|1 +(noun)|doormat|mat +welcome wagon|1 +(noun)|wheeled vehicle +welcomed|1 +(adj)|welcome +welcomer|1 +(noun)|greeter|saluter|person|individual|someone|somebody|mortal|human|soul +welcoming|1 +(adj)|hospitable +welcoming committee|1 +(noun)|committee|citizens committee +weld|5 +(noun)|dyer's rocket|dyer's mignonette|Reseda luteola|reseda +(noun)|Weld|Theodore Dwight Weld|abolitionist|emancipationist +(noun)|joint +(verb)|join|conjoin +(verb)|unite|unify|merge +welder|1 +(noun)|craftsman|artisan|journeyman|artificer +welder's mask|1 +(noun)|mask +welding|1 +(noun)|fastening|attachment +weldment|1 +(noun)|assembly +welfare|3 +(noun)|social welfare|financial aid +(noun)|benefit|good|goodness +(noun)|wellbeing|well-being|upbeat|eudaemonia|eudaimonia|prosperity|successfulness +welfare-statist|1 +(adj)|welfarist|liberal +welfare case|1 +(noun)|charity case|case +welfare state|1 +(noun)|state +welfare work|1 +(noun)|social service|work +welfare worker|1 +(noun)|social worker|caseworker|public servant +welfarist|1 +(adj)|welfare-statist|liberal +welkin|1 +(noun)|celestial sphere|sphere|empyrean|firmament|heavens|vault of heaven|surface +well|15 +(adj)|well |all right|fine|asymptomatic|symptomless|cured|healed|recovered|good|fit|healthy|healthy +(adj)|good|fortunate +(adj)|advisable +(noun)|excavation|hole in the ground +(noun)|vessel +(noun)|wellspring|fountainhead|source +(noun)|shaft +(noun)|compartment +(verb)|swell|surface|come up|rise up|rise +(adv)|good +(adv)|easily +(adv)|considerably|substantially +(adv)|intimately +(adv)|advantageously +(adv)|comfortably +well-adjusted|1 +(adj)|well-balanced|adjusted +well-advised|1 +(adj)|well-advised |advised|considered|wise|wise +well-appointed|1 +(adj)|well-found|furnished |equipped +well-balanced|2 +(adj)|balanced +(adj)|well-adjusted|adjusted +well-behaved|2 +(adj)|well behaved|good +(adj)| +well-being|2 +(noun)|wellbeing|welfare|upbeat|eudaemonia|eudaimonia|prosperity|successfulness +(noun)| +well-bound|1 +(adj)|bound +well-bred|1 +(adj)|well-mannered|refined +well-chosen|1 +(adj)|happy|felicitous +well-conducted|1 +(adj)|organized +well-connected|1 +(adj)|socially connected|connected +well-defined|2 +(adj)|chiseled|distinct +(adj)|well-defined |clear +well-disposed|1 +(adj)|favorable|friendly +well-done|1 +(adj)|cooked +well-educated|1 +(adj)|enlightened|knowing|knowledgeable|learned|lettered|well-read|educated +well-endowed|2 +(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|shapely +(adj)|well endowed|abundant +well-favored|1 +(adj)|fine-looking|good-looking|better-looking|handsome|well-favoured|beautiful +well-favoured|1 +(adj)|fine-looking|good-looking|better-looking|handsome|well-favored|beautiful +well-fed|1 +(adj)|well-nourished|nourished +well-fixed|1 +(adj)|comfortable|easy|prosperous|well-heeled|well-off|well-situated|well-to-do|rich +well-formed|1 +(adj)|grammatical +well-found|1 +(adj)|well-appointed|furnished |equipped +well-founded|1 +(adj)|tenable|reasonable |sensible +well-grooved|1 +(adj)|grooved|established |constituted +well-grounded|1 +(adj)|reasoned|sound|valid +well-heeled|1 +(adj)|comfortable|easy|prosperous|well-fixed|well-off|well-situated|well-to-do|rich +well-informed|1 +(adj)|intelligent|sophisticated +well-intentioned|1 +(adj)|well-meaning|well-meant|intended +well-kept|2 +(adj)|kept up|maintained|preserved +(adj)|shipshape|trim|tidy +well-knit|1 +(adj)|well-set|strong +well-known|2 +(adj)|known +(adj)|long-familiar|familiar +well-lighted|1 +(adj)|illuminated|lighted|lit|light +well-lined|1 +(adj)|full +well-made|1 +(adj)|superior +well-mannered|2 +(adj)|well-bred|refined +(adj)|mannerly|polite +well-marked|1 +(adj)|marked +well-matched|1 +(adj)|compatible|matched +well-meaning|2 +(adj)|unthreatening|amicable +(adj)|well-intentioned|well-meant|intended +well-meant|1 +(adj)|well-intentioned|well-meaning|intended +well-mined|1 +(adj)|mined +well-nigh|1 +(adv)|about|just about|almost|most|all but|nearly|near|nigh|virtually +well-nourished|1 +(adj)|well-fed|nourished +well-off|2 +(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-situated|well-to-do|rich +(adj)|fortunate +well-ordered|1 +(adj)|regular +well-preserved|1 +(adj)|healthy +well-proportioned|1 +(adj)|shapely +well-qualified|1 +(adj)|qualified +well-read|2 +(adj)|informed +(adj)|enlightened|knowing|knowledgeable|learned|lettered|well-educated|educated +well-rounded|1 +(adj)|all-around|all-round|comprehensive +well-set|1 +(adj)|well-knit|strong +well-shaven|1 +(adj)|clean-shaven|smooth-shaven|shaven |shaved +well-situated|1 +(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-off|well-to-do|rich +well-spoken|1 +(adj)|articulate +well-stacked|1 +(adj)|built|stacked|shapely +well-thought-of|1 +(adj)|respected|reputable +well-timed|3 +(adj)|timely|seasonable|well timed|opportune +(adj)| +(adv)|seasonably|timely|apropos +well-to-do|1 +(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-off|well-situated|rich +well-tried|1 +(adj)|tested|tried|proved |proven +well-turned|2 +(adj)|shapely +(adj)|felicitous +well-wisher|1 +(noun)|sympathizer|sympathiser|supporter|protagonist|champion|admirer|booster|friend +well-wishing|2 +(adj)|felicitous +(noun)|greeting|salutation +well-worn|2 +(adj)|worn +(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|unoriginal +well-written|1 +(adj)|literary|literate +well aware|1 +(adj)|cognizant +well behaved|2 +(adj)|well-behaved|good +(adj)| +well endowed|2 +(adj)|abundant +(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely +well enough|1 +(adv)|tolerably|to a tolerable degree|to an adequate degree +well out|1 +(verb)|stream|run|flow|feed|course +well over|1 +(verb)|overflow|overrun|run over|brim over|spill|run out +well point|2 +(noun)|wellpoint|tube|tubing +(noun)| +well thought out|1 +(adj)|considered|reasoned|thoughtful +well timed|2 +(adj)|timely|seasonable|well-timed|opportune +(adj)| +well up|1 +(verb)|swell|originate|arise|rise|develop|uprise|spring up|grow +well water|1 +(noun)|ground water|spring water|water|H2O +wellbeing|1 +(noun)|well-being|welfare|upbeat|eudaemonia|eudaimonia|prosperity|successfulness +wellborn|1 +(adj)|upper-class +wellerism|1 +(noun)|rhetorical device +welles|1 +(noun)|Welles|Orson Welles|George Orson Welles|actor|histrion|player|thespian|role player|film maker|filmmaker|film producer|movie maker +wellhead|2 +(noun)|wellspring|beginning|origin|root|rootage|source +(noun)|structure|construction +wellington|3 +(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|the Iron Duke|general|full general|statesman|solon|national leader +(noun)|Wellington|capital of New Zealand|national capital +(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot +wellington boot|1 +(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot +wellness|1 +(noun)|health|wellbeing|well-being|welfare|upbeat|eudaemonia|eudaimonia +wellpoint|1 +(noun)|well point|tube|tubing +wells|6 +(noun)|Wells|H. G. Wells|Herbert George Wells|writer|author +(noun)|well|excavation|hole in the ground +(noun)|well|vessel +(noun)|well|wellspring|fountainhead|source +(noun)|well|shaft +(noun)|well|compartment +wellspring|2 +(noun)|wellhead|beginning|origin|root|rootage|source +(noun)|well|fountainhead|source +welsh|5 +(adj)|Welsh|Cambrian|principality|princedom +(noun)|Welshman|Welsh|Cambrian|European +(noun)|Welsh|Brythonic|Brittanic +(noun)|Welsh|Welsh Black|cattle|cows|kine|oxen|Bos taurus +(verb)|cheat|rip off|chisel +welsh black|1 +(noun)|Welsh|Welsh Black|cattle|cows|kine|oxen|Bos taurus +welsh corgi|1 +(noun)|corgi|Welsh corgi|dog|domestic dog|Canis familiaris +welsh onion|1 +(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion|onion plant|Allium cepa +welsh pony|1 +(noun)|Welsh pony|pony +welsh poppy|1 +(noun)|Welsh poppy|Meconopsis cambrica|poppy +welsh rabbit|1 +(noun)|Welsh rarebit|Welsh rabbit|rarebit|dish +welsh rarebit|1 +(noun)|Welsh rarebit|Welsh rabbit|rarebit|dish +welsh springer spaniel|1 +(noun)|Welsh springer spaniel|springer spaniel|springer +welsh terrier|1 +(noun)|Welsh terrier|wirehair|wirehaired terrier|wire-haired terrier +welsher|1 +(noun)|welcher|swindler|chiseller|chiseler|gouger|scammer|grifter|sharper|sharpie|sharpy +welshman|1 +(noun)|Welshman|Welsh|Cambrian|European +welt|4 +(noun)|wale|weal|wheal|injury|hurt|harm|trauma +(noun)|seam +(verb)|flog|whip|lather|lash|slash|strap|trounce|beat|beat up|work over +(verb)|add +weltanschauung|1 +(noun)|Weltanschauung|world view|position|view|perspective +welted thistle|1 +(noun)|Carduus crispus|thistle +welter|3 +(noun)|clutter|jumble|muddle|mare's nest|smother|disorderliness|disorder +(verb)|roll over +(verb)|wallow|move +welterweight|4 +(noun)|weight unit|weight +(noun)|boxer|pugilist +(noun)|wrestler|grappler|matman +(noun)|prizefighter|gladiator +weltschmerz|1 +(noun)|world-weariness|Weltschmerz|melancholy +welty|1 +(noun)|Welty|Eudora Welty|writer|author +welwitschia|1 +(noun)|Welwitschia mirabilis|gymnosperm +welwitschia mirabilis|1 +(noun)|welwitschia|Welwitschia mirabilis|gymnosperm +welwitschiaceae|1 +(noun)|Welwitschiaceae|family Welwitschiaceae|gymnosperm family +wembley|1 +(noun)|Wembley|city district +wen|1 +(noun)|sebaceous cyst|pilar cyst|steatocystoma|cyst +wen-ti|1 +(noun)|Wen Ch'ang|Wen-Ti|Chinese deity +wen ch'ang|1 +(noun)|Wen Ch'ang|Wen-Ti|Chinese deity +wench|2 +(noun)|dame|doll|skirt|chick|bird|girl|miss|missy|young lady|young woman|fille +(verb)|fornicate +wencher|1 +(noun)|adulterer|fornicator +wend|1 +(verb)|travel|go|move|locomote +wendy house|1 +(noun)|playhouse|plaything|toy +werdnig-hoffman disease|1 +(noun)|Werdnig-Hoffman disease|autosomal recessive disease|autosomal recessive defect +werewolf|1 +(noun)|wolfman|lycanthrope|mythical monster|mythical creature +werfel|1 +(noun)|Werfel|Franz Werfel|writer|author +werlhof's disease|1 +(noun)|thrombocytopenic purpura|idiopathic thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura|peliosis|autoimmune disease|autoimmune disorder +werner karl heisenberg|1 +(noun)|Heisenberg|Werner Karl Heisenberg|nuclear physicist +wernher magnus maximilian von braun|1 +(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer|rocket scientist +wernher von braun|1 +(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer|rocket scientist +wernicke|1 +(noun)|Wernicke|Karl Wernicke|neurologist|brain doctor +wernicke's aphasia|1 +(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|sensory aphasia|impressive aphasia|aphasia +wernicke's area|1 +(noun)|Wernicke's area|Wernicke's center|center|centre|nerve center|nerve centre +wernicke's center|1 +(noun)|Wernicke's area|Wernicke's center|center|centre|nerve center|nerve centre +wernicke's encephalopathy|1 +(noun)|Wernicke's encephalopathy|brain disorder|encephalopathy|brain disease +wesley|2 +(noun)|Wesley|Charles Wesley|clergyman|reverend|man of the cloth +(noun)|Wesley|John Wesley|clergyman|reverend|man of the cloth +wesleyan|2 +(adj)|Methodist|Wesleyan +(noun)|Wesleyan|Methodist +wesleyan methodist church|1 +(noun)|Wesleyan Methodist Church|Wesleyan Methodists|Methodist denomination +wesleyan methodists|1 +(noun)|Wesleyan Methodist Church|Wesleyan Methodists|Methodist denomination +wesleyanism|1 +(noun)|Wesleyanism|Wesleyism|Protestantism +wesleyism|1 +(noun)|Wesleyanism|Wesleyism|Protestantism +wessex|1 +(noun)|Wessex|geographical area|geographic area|geographical region|geographic region +west|7 +(adj)|west |westbound|westerly|westward|westerly|western|westerly|western|western|westernmost|westmost|westside +(noun)|West|Occident|region +(noun)|due west|W|cardinal compass point +(noun)|West|western United States|geographical area|geographic area|geographical region|geographic region +(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer|author +(noun)|West|Mae West|actress|comedienne +(noun)|West|Benjamin West|painter +west-central|1 +(adj)|western +west-sider|1 +(noun)|West-sider|New Yorker +west africa|1 +(noun)|West Africa|geographical area|geographic area|geographical region|geographic region +west african|2 +(adj)|West African|geographical area|geographic area|geographical region|geographic region +(noun)|West African|Niger-Congo +west bank|1 +(noun)|West Bank|geographical area|geographic area|geographical region|geographic region +west bengal|1 +(noun)|West Bengal|state|province +west berlin|1 +(noun)|West Berlin|city district +west berliner|1 +(noun)|West Berliner|Berliner +west by north|1 +(noun)|WbN|compass point|point +west by south|1 +(noun)|WbS|compass point|point +west chadic|1 +(noun)|West Chadic|Chad|Chadic|Chadic language +west coast|1 +(noun)|West Coast|geographical area|geographic area|geographical region|geographic region +west coast hemlock|1 +(noun)|western hemlock|Pacific hemlock|Tsuga heterophylla|hemlock|hemlock tree +west country|1 +(noun)|West Country|geographical area|geographic area|geographical region|geographic region +west end|1 +(noun)|West End|city district +west germanic|1 +(noun)|West Germanic|West Germanic language|Germanic|Germanic language +west germanic language|1 +(noun)|West Germanic|West Germanic language|Germanic|Germanic language +west germany|1 +(noun)|West Germany|Federal Republic of Germany|European country|European nation +west highland white terrier|1 +(noun)|West Highland white terrier|terrier +west indian|1 +(noun)|West Indian|American +west indian cherry|2 +(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot|dicotyledon|magnoliopsid|exogen +(noun)|acerola|barbados cherry|surinam cherry|West Indian cherry|berry +west indian jasmine|1 +(noun)|West Indian jasmine|pagoda tree|Plumeria alba|frangipani|frangipanni +west indian satinwood|1 +(noun)|satinwood|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood +west indian smallpox|1 +(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +west indian snowberry|1 +(noun)|blolly|West Indian snowberry|Chiococca alba|shrub|bush +west indies|1 +(noun)|West Indies|the Indies|archipelago +west malaysia|1 +(noun)|West Malaysia|district|territory|territorial dominion|dominion +west midland|1 +(noun)|West Midland|Middle English +west nile encephalitis|1 +(noun)|West Nile encephalitis|encephalitis|cephalitis|phrenitis +west nile encephalitis virus|1 +(noun)|West Nile virus|West Nile encephalitis virus|flavivirus +west nile virus|1 +(noun)|West Nile virus|West Nile encephalitis virus|flavivirus +west northwest|1 +(noun)|WNW|compass point|point +west pakistan|1 +(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country|Asian nation +west palm beach|1 +(noun)|West Palm Beach|town +west point|1 +(noun)|West Point|military installation +west saxon|3 +(noun)|West Saxon|Saxon +(noun)|West Saxon|Old English|Anglo-Saxon +(noun)|Southwestern|West Saxon|Middle English +west side|1 +(noun)|side +west southwest|1 +(noun)|WSW|compass point|point +west sussex|1 +(noun)|West Sussex|county +west tocharian|1 +(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian +west virginia|1 +(noun)|West Virginia|Mountain State|WV|American state +west virginian|1 +(noun)|West Virginian|American +west wind|1 +(noun)|wester|wind|air current|current of air +west yorkshire|1 +(noun)|West Yorkshire|county +westbound|1 +(adj)|westerly|westward|west +wester|1 +(noun)|west wind|wind|air current|current of air +westerly|4 +(adj)|western|west +(adj)|western|west +(adj)|westbound|westward|west +(noun)|prevailing westerly|west wind|wester +western|7 +(adj)|western |occidental|Hesperian +(adj)|westerly|west +(adj)|western |southwestern|midwestern|northwestern|west-central +(adj)|west +(adj)|westerly|west +(noun)|Western|horse opera|feature|feature film +(noun)|western sandwich|sandwich +western australia|1 +(noun)|Western Australia|Australian state +western australia coral pea|1 +(noun)|Western Australia coral pea|Hardenbergia comnptoniana|vine +western ax|1 +(noun)|double-bitted ax|double-bitted axe|Western ax|Western axe|ax|axe +western axe|1 +(noun)|double-bitted ax|double-bitted axe|Western ax|Western axe|ax|axe +western balsam poplar|1 +(noun)|black cottonwood|Western balsam poplar|Populus trichocarpa|cottonwood +western big-eared bat|1 +(noun)|Plecotus townsendi|long-eared bat +western birch|1 +(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +western black-legged tick|1 +(noun)|Ixodes pacificus|hard tick|ixodid +western blackberry|1 +(noun)|western dewberry|Rubus ursinus|blackberry|blackberry bush +western blind snake|1 +(noun)|Leptotyphlops humilis|blind snake|worm snake +western box turtle|1 +(noun)|Western box turtle|Terrapene ornata|box turtle|box tortoise +western buttercup|1 +(noun)|Ranunculus occidentalis|buttercup|butterflower|butter-flower|crowfoot|goldcup|kingcup +western chimpanzee|1 +(noun)|Pan troglodytes verus|chimpanzee|chimp|Pan troglodytes +western chokecherry|1 +(noun)|Prunus virginiana demissa|Prunus demissa|chokecherry|chokecherry tree|Prunus virginiana +western church|1 +(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church +western civilization|1 +(noun)|Western culture|Western civilization|culture|civilization|civilisation +western coral snake|1 +(noun)|Micruroides euryxanthus|coral snake|harlequin-snake|New World coral snake +western crab apple|1 +(noun)|Iowa crab|Iowa crab apple|prairie crab|Malus ioensis|wild apple|crab apple|crabapple +western culture|1 +(noun)|Western culture|Western civilization|culture|civilization|civilisation +western dewberry|1 +(noun)|western blackberry|Rubus ursinus|blackberry|blackberry bush +western diamondback|1 +(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake|rattler +western diamondback rattlesnake|1 +(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake|rattler +western empire|1 +(noun)|Western Roman Empire|Western Empire|geographical area|geographic area|geographical region|geographic region +western fence lizard|1 +(noun)|swift|blue-belly|Sceloporus occidentalis|fence lizard +western gray squirrel|1 +(noun)|Sciurus griseus|tree squirrel +western hemisphere|1 +(noun)|occident|New World|hemisphere +western hemlock|1 +(noun)|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock|hemlock tree +western holly fern|1 +(noun)|Polystichum scopulinum|holly fern +western honey mesquite|1 +(noun)|honey mesquite|Western honey mesquite|Prosopis glandulosa|mesquite|mesquit +western islands|1 +(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago +western isles|1 +(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago +western kingbird|1 +(noun)|Arkansas kingbird|kingbird|Tyrannus tyrannus +western ladies' tresses|1 +(noun)|Spiranthes porrifolia|ladies' tresses|lady's tresses +western larch|1 +(noun)|western tamarack|Oregon larch|Larix occidentalis|larch|larch tree +western lowland gorilla|1 +(noun)|Gorilla gorilla gorilla|gorilla|Gorilla gorilla +western malayo-polynesian|1 +(noun)|Western Malayo-Polynesian|Malayo-Polynesian +western meadowlark|1 +(noun)|Sturnella neglecta|meadowlark|lark +western mountain ash|1 +(noun)|Western mountain ash|Sorbus sitchensis|mountain ash +western mugwort|1 +(noun)|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +western narrow-mouthed toad|1 +(noun)|Gastrophryne olivacea|frog|toad|toad frog|anuran|batrachian|salientian +western omelet|1 +(noun)|firm omelet +western paper birch|1 +(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch|birch tree +western pasqueflower|1 +(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower|pasque flower +western pipistrel|1 +(noun)|SPipistrellus hesperus|vespertilian bat|vespertilionid +western poison oak|1 +(noun)|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant +western poppy|1 +(noun)|Papaver californicum|poppy +western prince's pine|1 +(noun)|love-in-winter|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa|prince's pine +western ragweed|1 +(noun)|perennial ragweed|Ambrosia psilostachya|ragweed|ambrosia|bitterweed +western rattlesnake|1 +(noun)|prairie rattlesnake|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake|rattler +western red-backed salamander|1 +(noun)|Plethodon vehiculum|salamander +western red cedar|1 +(noun)|red cedar|canoe cedar|Thuja plicata|arborvitae +western redbud|1 +(noun)|California redbud|Cercis occidentalis|shrub|bush +western ribbon snake|1 +(noun)|Western ribbon snake|Thamnophis proximus|garter snake|grass snake +western roman empire|1 +(noun)|Western Roman Empire|Western Empire|geographical area|geographic area|geographical region|geographic region +western saddle|1 +(noun)|stock saddle|Western saddle|saddle +western sahara|1 +(noun)|Western Sahara|Spanish Sahara|geographical area|geographic area|geographical region|geographic region +western samoa|1 +(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country|state|land +western samoan monetary unit|1 +(noun)|Western Samoan monetary unit|monetary unit +western sand cherry|1 +(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub|suffrutex +western sandwich|1 +(noun)|western|sandwich +western saxifrage|1 +(noun)|Saxifraga occidentalis|saxifrage|breakstone|rockfoil +western silvery aster|1 +(noun)|Western silvery aster|aster +western skink|1 +(noun)|Eumeces skiltonianus|skink|scincid|scincid lizard +western spadefoot|1 +(noun)|Scaphiopus hammondii|spadefoot|spadefoot toad +western tamarack|1 +(noun)|western larch|Oregon larch|Larix occidentalis|larch|larch tree +western tanager|1 +(noun)|Piranga ludoviciana|tanager +western toad|1 +(noun)|Bufo boreas|true toad +western united states|1 +(noun)|West|western United States|geographical area|geographic area|geographical region|geographic region +western wall flower|1 +(noun)|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower +western wheatgrass|1 +(noun)|bluestem wheatgrass|Agropyron smithii|wheatgrass|wheat-grass +western whiptail|1 +(noun)|Cnemidophorus tigris|whiptail|whiptail lizard +western white pine|1 +(noun)|silver pine|mountain pine|Pinus monticola|white pine +western wood pewee|1 +(noun)|Contopus sordidulus|pewee|peewee|peewit|pewit|wood pewee|Contopus virens +western yellow pine|1 +(noun)|ponderosa|ponderosa pine|bull pine|Pinus ponderosa|yellow pine +western yew|1 +(noun)|Pacific yew|California yew|Taxus brevifolia|yew +westerner|1 +(noun)|inhabitant|dweller|denizen|indweller +westernisation|1 +(noun)|Westernization|Westernisation|assimilation|absorption +westernise|1 +(verb)|occidentalize|occidentalise|westernize|change|alter|modify +westernization|1 +(noun)|Westernization|Westernisation|assimilation|absorption +westernize|1 +(verb)|occidentalize|occidentalise|westernise|change|alter|modify +westernmost|1 +(adj)|westmost|west +westinghouse|1 +(noun)|Westinghouse|George Westinghouse|inventor|discoverer|artificer +westland pine|1 +(noun)|silver pine|Lagarostrobus colensoi|conifer|coniferous tree +westminster|1 +(noun)|Westminster|City of Westminster|borough +westminster abbey|1 +(noun)|Westminster Abbey|minster +westmost|1 +(adj)|westernmost|west +weston|1 +(noun)|Weston|Edward Weston|photographer|lensman +weston cell|1 +(noun)|Weston cell|cadmium cell|standard cell +westside|1 +(adj)|west +westward|2 +(adj)|westbound|westerly|west +(adv)|westwards +westwards|1 +(adv)|westward +wet|8 +(adj)|wet |bedewed|dewy|besprent|sprinkled|boggy|marshy|miry|mucky|muddy|quaggy|sloughy|swampy|clammy|dank|damp|dampish|moist|drenched|saturated|soaked|soaking|sodden|sopping|soppy|dripping|drippy|drizzly|dunked|soused|humid|misty|muggy|steamy|sticky|perspiring|sweating|sweaty|reeking|dripping|watery|rheumy|showery|rainy|soggy|waterlogged|steaming|sticky|tacky|washed|watery|undried +(adj)|wet +(adj)|wet |lactating|fresh +(adj)|alcoholic +(adj)|besotted|blind drunk|blotto|crocked|cockeyed|fuddled|loaded|pie-eyed|pissed|pixilated|plastered|potty|slopped|sloshed|smashed|soaked|soused|sozzled|squiffy|stiff|tiddly|tiddley|tight|tipsy|intoxicated |drunk|inebriated +(noun)|moisture|wetness +(verb)|change|alter|modify +(verb)|make|urinate|piddle|puddle|micturate|piss|pee|pee-pee|make water|relieve oneself|take a leak|spend a penny|wee|wee-wee|pass water +wet-bulb thermometer|1 +(noun)|thermometer +wet-nurse|4 +(noun)|wet nurse|wetnurse|amah|nanny|nursemaid|nurse +(noun)| +(noun)| +(verb)|breastfeed|bottle-feed|suckle|suck|nurse|lactate|give suck|feed|give +wet bar|1 +(noun)|bar +wet behind the ears|1 +(adj)|raw|new|inexperienced +wet blanket|1 +(noun)|spoilsport|killjoy|party pooper|unwelcome person|persona non grata +wet cell|1 +(noun)|voltaic cell|galvanic cell|primary cell +wet dream|1 +(noun)|dream|dreaming +wet fly|1 +(noun)|fly +wet lung|1 +(noun)|adult respiratory distress syndrome|ARDS|white lung|respiratory disease|respiratory illness|respiratory disorder +wet nurse|3 +(noun)|wet-nurse|wetnurse|amah|nanny|nursemaid|nurse +(noun)| +(noun)| +wet suit|1 +(noun)|garment +wetback|1 +(noun)|greaser|taco|Mexican +wether|1 +(noun)|sheep +wetland|1 +(noun)|land|ground|soil +wetness|1 +(noun)|condition|status +wetnurse|1 +(noun)|wet nurse|wet-nurse|amah|nanny|nursemaid|nurse +wetter|3 +(noun)|wetting agent|surfactant|surface-active agent|chemical agent +(noun)|workman|working man|working person +(noun)|bedwetter|bed wetter|pisser|urinator +wetting|2 +(noun)|change of state +(noun)|leak|making water|passing water|micturition|urination +wetting agent|1 +(noun)|wetter|surfactant|surface-active agent|chemical agent +weymouth pine|1 +(noun)|American white pine|eastern white pine|Pinus strobus|white pine +whack|3 +(noun)|sound +(noun)|knock|belt|rap|whang|blow +(verb)|wham|whop|wallop|hit +whacked|1 +(adj)|tired +whacker|1 +(noun)|whopper|thing +whacking|2 +(adj)|large +(noun)|beating|thrashing|licking|drubbing|lacing|trouncing|corporal punishment +whacko|1 +(noun)|nutter|wacko|eccentric|eccentric person|flake|oddball|geek +whacky|2 +(adj)|cockamamie|cockamamy|goofy|sappy|silly|wacky|zany|unreasonable|foolish +(adj)|balmy|barmy|bats|batty|bonkers|buggy|cracked|crackers|daft|dotty|fruity|haywire|kooky|kookie|loco|loony|loopy|nuts|nutty|round the bend|around the bend|wacky|insane +whale|3 +(noun)|giant|hulk|heavyweight|large person +(noun)|cetacean|cetacean mammal|blower +(verb)|hunt|run|hunt down|track down +whale louse|1 +(noun)|amphipod +whale oil|1 +(noun)|train oil|animal oil +whale shark|1 +(noun)|Rhincodon typus|shark +whale sucker|2 +(noun)|whalesucker|Remilegia australis|remora|suckerfish|sucking fish +(noun)| +whaleboat|1 +(noun)|sea boat +whalebone|1 +(noun)|baleen|horn +whalebone whale|1 +(noun)|baleen whale|whale +whaler|2 +(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog +(noun)|whaling ship|ship +whalesucker|1 +(noun)|whale sucker|Remilegia australis|remora|suckerfish|sucking fish +whaling gun|1 +(noun)|gun +whaling ship|1 +(noun)|whaler|ship +wham|1 +(verb)|whack|whop|wallop|hit +whammy|2 +(noun)|reverse|reversal|setback|blow|black eye +(noun)|hex|jinx|curse|spell|magic spell|charm +whang|4 +(noun)|knock|belt|rap|whack|blow +(verb)|beat +(verb)|hit +(verb)|attack|round|assail|lash out|snipe|assault +whap|1 +(verb)|sock|bop|whop|bonk|bash|hit +wharf|6 +(noun)|pier|wharfage|dock|platform +(verb)|supply|provide|render|furnish +(verb)|store +(verb)|drop|set down|put down|unload|discharge +(verb)|moor|berth|dock +(verb)|moor|berth|tie up +wharf rat|2 +(noun)|sneak thief|pilferer|snitcher +(noun)|brown rat|Norway rat|Rattus norvegicus +wharfage|2 +(noun)|fee +(noun)|pier|wharf|dock|platform +wharton|1 +(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer|author +what for|1 +(noun)|rebuke|reproof|reproval|reprehension|reprimand +what is more|1 +(adv)|furthermore|moreover +whatchamacallit|1 +(noun)|stuff|whatsis|sundry|sundries|object|physical object +whatever|1 +(adj)|any|whatsoever|some +whatever may come|1 +(adv)|come hell or high water|no matter what happens +whatnot|1 +(noun)|bric-a-brac|knickknack|nicknack|knickknackery|curio|curiosity|oddity|oddment|peculiarity|rarity +whatsis|1 +(noun)|whatchamacallit|stuff|sundry|sundries|object|physical object +whatsoever|1 +(adj)|any|whatever|some +wheal|1 +(noun)|wale|welt|weal|injury|hurt|harm|trauma +wheat|2 +(noun)|corn|cereal|cereal grass +(noun)|wheat berry|grain|food grain|cereal +wheat-grass|2 +(noun)|wheatgrass|grass +(noun)| +wheat beer|1 +(noun)|Weissbier|white beer|ale +wheat berry|2 +(noun)|grain|caryopsis +(noun)|wheat|grain|food grain|cereal +wheat eel|1 +(noun)|wheatworm|wheat eelworm|Tylenchus tritici|nematode|nematode worm|roundworm +wheat eelworm|1 +(noun)|wheatworm|wheat eel|Tylenchus tritici|nematode|nematode worm|roundworm +wheat field|2 +(noun)|wheatfield|grainfield|grain field +(noun)| +wheat flag smut|1 +(noun)|Urocystis tritici|flag smut fungus +wheat flour|1 +(noun)|flour +wheat future|1 +(noun)|future +wheat germ|1 +(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals +wheat gluten|1 +(noun)|gluten +wheat rust|1 +(noun)|Puccinia graminis|rust|rust fungus +wheat scab|1 +(noun)|head blight +wheatear|1 +(noun)|thrush +wheately elm|1 +(noun)|Jersey elm|guernsey elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm|elm tree +wheaten|1 +(adj)|whole-wheat|wholemeal|grain|food grain|cereal +wheatfield|1 +(noun)|wheat field|grainfield|grain field +wheatflake|1 +(noun)|cold cereal|dry cereal +wheatgrass|1 +(noun)|wheat-grass|grass +wheatley|1 +(noun)|Wheatley|Phillis Wheatley|poet +wheatstone|1 +(noun)|Wheatstone|Sir Charles Wheatstone|physicist|inventor|discoverer|artificer +wheatstone bridge|1 +(noun)|Wheatstone bridge|bridge|bridge circuit +wheatworm|1 +(noun)|wheat eel|wheat eelworm|Tylenchus tritici|nematode|nematode worm|roundworm +wheedle|1 +(verb)|cajole|palaver|blarney|coax|sweet-talk|inveigle|persuade +wheedler|1 +(noun)|coaxer|persuader|inducer +wheedling|1 +(noun)|blandishment|enticement|temptation +wheel|10 +(noun)|machine|simple machine +(noun)|steering wheel|handwheel +(noun)|helm +(noun)|roulette wheel|game equipment +(noun)|rack|instrument of torture +(noun)|bicycle|bike|cycle|wheeled vehicle +(verb)|wheel around|revolve|go around|rotate +(verb)|wheel around|transport +(verb)|roll|travel|go|move|locomote +(verb)|bicycle|cycle|bike|pedal|ride +wheel and axle|1 +(noun)|hoist +wheel around|2 +(verb)|wheel|transport +(verb)|wheel|revolve|go around|rotate +wheel bug|1 +(noun)|Arilus cristatus|assassin bug|reduviid +wheel horse|1 +(noun)|wheeler|draft horse|draught horse|dray horse +wheel lock|1 +(noun)|gunlock|firing mechanism +wheel tree|1 +(noun)|firewheel tree|Stenocarpus sinuatus|tree +wheelbarrow|1 +(noun)|barrow|garden cart|lawn cart|handcart|pushcart|cart|go-cart +wheelbase|1 +(noun)|distance +wheelchair|1 +(noun)|chair +wheeled|1 +(adj)|wheeled +wheeled vehicle|1 +(noun)|vehicle|container +wheeler|5 +(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist|archaeologist +(noun)|wheelwright|wright +(noun)|marcher|parader +(noun)|cyclist|bicyclist|bicycler|pedaler|pedaller +(noun)|wheel horse|draft horse|draught horse|dray horse +wheeler dealer|1 +(noun)|hustler|operator|opportunist|self-seeker +wheeler peak|1 +(noun)|Wheeler Peak|mountain peak +wheelhouse|1 +(noun)|pilothouse|compartment +wheeling|2 +(noun)|Wheeling|city|metropolis|urban center +(noun)|rolling|propulsion|actuation +wheelless|1 +(adj)|wheelless +wheels|7 +(noun)|force +(noun)|wheel|machine|simple machine +(noun)|steering wheel|wheel|handwheel +(noun)|wheel|helm +(noun)|roulette wheel|wheel|game equipment +(noun)|rack|wheel|instrument of torture +(noun)|bicycle|bike|wheel|cycle|wheeled vehicle +wheelwork|1 +(noun)|mechanical device +wheelwright|1 +(noun)|wheeler|wright +wheeze|3 +(noun)|breathing|external respiration|respiration|ventilation +(noun)|scheme|strategy +(verb)|breathe|take a breath|respire|suspire +wheezily|1 +(adv)|wheezingly +wheeziness|1 +(noun)|symptom +wheezing|1 +(adj)|asthmatic|wheezy|unhealthy +wheezingly|1 +(adv)|wheezily +wheezy|2 +(adj)|reedy|noisy +(adj)|asthmatic|wheezing|unhealthy +whelk|3 +(noun)|seafood +(noun)|seasnail +(verb)|snail +whelm|1 +(verb)|overwhelm|overpower|sweep over|overcome|overtake|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +whelp|2 +(noun)|pup|young mammal +(verb)|pup|litter +whelped|1 +(adj)|born +when|1 +(adv)|once +when first seen|1 +(adv)|at first blush +when the time comes|1 +(adv)|in due course|in due season|in good time|in due time +whence|1 +(adv)|wherefrom +where|1 +(adv)|wherever +whereabout|1 +(adv)|whereabouts +whereabouts|2 +(noun)|location +(adv)|whereabout +whereat|1 +(adv)|whereupon +wherefor|1 +(adv)|wherefore +wherefore|2 +(noun)|why|reason|ground +(adv)|wherefor +wherefrom|1 +(adv)|whence +whereto|1 +(adv)|whereunto +whereunto|1 +(adv)|whereto +whereupon|1 +(adv)|whereat +wherever|1 +(adv)|where +wherewith|1 +(adv)|wherewithal +wherewithal|2 +(noun)|means|substance +(adv)|wherewith +wherry|2 +(noun)|Norfolk wherry|barge|flatboat|hoy|lighter +(noun)|dinghy|dory|rowboat +whet|2 +(verb)|quicken|stimulate|excite|stir +(verb)|sharpen +whetstone|1 +(noun)|stone +whey|2 +(noun)|milk whey|serum|blood serum +(noun)|dairy product +whicker|2 +(noun)|neigh|nicker|whinny|cry +(verb)|neigh|nicker|whinny|utter|emit|let out|let loose +whidah|1 +(noun)|whydah|widow bird|weaver|weaverbird|weaver finch +whiff|8 +(noun)|puff|puff of air|gust|blast|blow +(noun)|lefteye flounder|lefteyed flounder +(noun)|strikeout +(verb)|sniff|smell +(verb)|blow +(verb)|strike out +(verb)|puff|smoke +(verb)|talk|speak|utter|mouth|verbalize|verbalise +whiffer|1 +(noun)|batter|hitter|slugger|batsman +whiffletree|1 +(noun)|whippletree|swingletree|crossbar +whig|3 +(noun)|Whig|liberal|progressive +(noun)|Whig|supporter|protagonist|champion|admirer|booster|friend +(noun)|Whig|politician|politico|pol|political leader +whig party|1 +(noun)|Whig Party|party|political party +while|1 +(noun)|piece|spell|patch|time +while away|1 +(verb)|get through|spend|pass +whim|2 +(noun)|caprice|impulse|desire +(noun)|notion|whimsy|whimsey|idea|thought +whimper|2 +(noun)|whine|complaint +(verb)|wail|mewl|pule|cry|weep +whimsey|2 +(noun)|notion|whim|whimsy|idea|thought +(noun)|flightiness|arbitrariness|whimsicality|whimsy|capriciousness|irresponsibility|irresponsibleness +whimsical|1 +(adj)|capricious|impulsive|arbitrary +whimsicality|2 +(noun)|flightiness|arbitrariness|whimsy|whimsey|capriciousness|irresponsibility|irresponsibleness +(noun)|impishness|mischievousness|puckishness|playfulness|fun +whimsically|1 +(adv)|fancifully +whimsy|2 +(noun)|notion|whim|whimsey|idea|thought +(noun)|flightiness|arbitrariness|whimsicality|whimsey|capriciousness|irresponsibility|irresponsibleness +whin|3 +(noun)|gorse|furze|Irish gorse|Ulex europaeus|shrub|bush +(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|woadwaxen|Genista tinctoria|broom +(noun)|whinstone|rock|stone +whinberry|1 +(noun)|bilberry|whortleberry|blaeberry|Viccinium myrtillus|blueberry|blueberry bush +whinchat|1 +(noun)|Saxicola rubetra|Old World chat|chat +whine|4 +(noun)|whimper|complaint +(verb)|travel|go|move|locomote +(verb)|snivel|talk|speak|utter|mouth|verbalize|verbalise +(verb)|grizzle|yammer|yawp|complain|kick|plain|sound off|quetch|kvetch +whiner|1 +(noun)|complainer|moaner|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person|disagreeable person +whiney|1 +(adj)|fretful|querulous|whining|whiny|complaining |complaintive +whining|2 +(adj)|noisy +(adj)|fretful|querulous|whiney|whiny|complaining |complaintive +whinny|2 +(noun)|neigh|nicker|whicker|cry +(verb)|neigh|nicker|whicker|utter|emit|let out|let loose +whinstone|1 +(noun)|whin|rock|stone +whiny|1 +(adj)|fretful|querulous|whiney|whining|complaining |complaintive +whip|11 +(noun)|instrument +(noun)|party whip|legislator +(noun)|dessert|sweet|afters +(noun)|flexibility|flexibleness +(noun)|lash|whiplash|blow +(verb)|flog|welt|lather|lash|slash|strap|trounce|beat|beat up|work over +(verb)|worst|pip|mop up|rack up|beat|beat out|crush|shell|trounce|vanquish +(verb)|convulse|thresh|thresh about|thrash|thrash about|slash|toss|jactitate +(verb)|lash|strike +(verb)|whisk|beat|scramble|whip up +(verb)|blister|scald|attack|round|assail|lash out|snipe|assault +whip-round|1 +(noun)|solicitation|appeal|collection|ingathering +whip-scorpion|2 +(noun)|whip scorpion|arachnid|arachnoid +(noun)| +whip-snake|2 +(noun)|whip snake|colubrid snake|colubrid +(noun)| +whip hand|1 +(noun)|upper hand|superiority|favorable position|favourable position +whip scorpion|2 +(noun)|whip-scorpion|arachnid|arachnoid +(noun)| +whip snake|2 +(noun)|whip-snake|colubrid snake|colubrid +(noun)| +whip through|1 +(verb)|work through|run through|go through +whip top|1 +(noun)|whipping top|top|whirligig|teetotum|spinning top +whip up|1 +(verb)|whomp up|cook|fix|ready|make|prepare +whipcord|2 +(noun)|cord +(noun)|fabric|cloth|material|textile +whiplash|2 +(noun)|whiplash injury|injury|hurt|harm|trauma +(noun)|whip|lash|blow +whiplash injury|1 +(noun)|whiplash|injury|hurt|harm|trauma +whiplike|1 +(adj)|flagellate|flagellated +whipped cream|1 +(noun)|topping +whipper|1 +(noun)|switcher|oppressor +whipper-in|1 +(noun)|assistant|helper|help|supporter +whippersnapper|1 +(noun)|jackanapes|lightweight|cipher|cypher|nobody|nonentity +whippet|1 +(noun)|greyhound +whipping|5 +(adj)|snappy|spirited +(noun)|tanning|flogging|lashing|flagellation|beating|thrashing|licking|drubbing|lacing|trouncing|whacking +(noun)|thrashing|walloping|debacle|drubbing|slaughter|trouncing|defeat|licking +(noun)|whipstitch|whipstitching|stitch +(noun)|beating|fight|fighting|combat|scrap +whipping boy|1 +(noun)|scapegoat|victim +whipping cream|1 +(noun)|light whipping cream|cream +whipping post|1 +(noun)|post +whipping top|1 +(noun)|whip top|top|whirligig|teetotum|spinning top +whipple's penstemon|1 +(noun)|Whipple's penstemon|Penstemon whippleanus|wildflower|wild flower +whippletree|1 +(noun)|whiffletree|swingletree|crossbar +whippoorwill|1 +(noun)|Caprimulgus vociferus|goatsucker|nightjar|caprimulgid +whippy|1 +(adj)|bouncy|live|lively|resilient|springy|elastic +whipsaw|3 +(noun)|two-handed saw|handsaw|carpenter's saw +(verb)|cheat|rip off|chisel +(verb)|saw +whipstitch|1 +(noun)|whipping|whipstitching|stitch +whipstitching|1 +(noun)|whipstitch|whipping|stitch +whiptail|1 +(noun)|whiptail lizard|teiid lizard|teiid +whiptail lizard|1 +(noun)|whiptail|teiid lizard|teiid +whir|2 +(noun)|whirr|whirring|birr|sound +(verb)|whizz|whiz|whirr|birr|purr|sound|go +whirl|9 +(noun)|commotion|movement|motion +(noun)|swirl|vortex|convolution|round shape +(noun)|crack|fling|go|pass|offer|attempt|effort|endeavor|endeavour|try +(noun)|spin|twirl|twist|twisting|rotation|rotary motion +(verb)|twirl|swirl|twiddle|revolve|go around|rotate +(verb)|birl|spin|twirl|rotate|circumvolve +(verb)|eddy|purl|whirlpool|swirl|run|flow|feed|course +(verb)|spin|spin around|reel|gyrate|revolve|go around|rotate +(verb)|tumble|whirl around|move +whirl around|1 +(verb)|whirl|tumble|move +whirlaway|1 +(noun)|Whirlaway|thoroughbred +whirler|2 +(noun)|whirling dervish|dervish +(noun)|mechanism +whirligig|3 +(noun)|top|teetotum|spinning top|plaything|toy +(noun)|carousel|carrousel|merry-go-round|roundabout|ride +(verb)|spin|spin around|whirl|reel|gyrate +whirligig beetle|1 +(noun)|beetle +whirling|3 +(adj)|swirling|moving +(adj)|spinning|moving +(noun)|gyration|rotation|rotary motion +whirling dervish|1 +(noun)|whirler|dervish +whirlpool|2 +(noun)|vortex|maelstrom|current|stream +(verb)|eddy|purl|swirl|whirl|run|flow|feed|course +whirlwind|1 +(noun)|windstorm +whirlybird|1 +(noun)|helicopter|chopper|eggbeater|heavier-than-air craft +whirr|3 +(noun)|whir|whirring|birr|sound +(verb)|whizz|whiz|whir|birr|purr|sound|go +(verb)|churr|utter|emit|let out|let loose +whirring|2 +(adj)|noisy +(noun)|whir|whirr|birr|sound +whish|2 +(verb)|sound|go +(verb)|travel|go|move|locomote +whisk|6 +(noun)|mixer +(noun)|whisk broom|broom +(verb)|bring|convey|take +(verb)|travel|go|move|locomote +(verb)|whisk off|wipe|pass over +(verb)|whip|beat|scramble +whisk away|1 +(verb)|whisk off|take away|bear off|bear away|carry away|carry off +whisk broom|1 +(noun)|whisk|broom +whisk by|1 +(verb)|zip by|fly by|travel by|pass by|surpass|go past|go by|pass +whisk fern|1 +(noun)|fern ally +whisk off|2 +(verb)|whisk|wipe|pass over +(verb)|whisk away|take away|bear off|bear away|carry away|carry off +whisker|3 +(noun)|hair's-breadth|hairsbreadth|hair|small indefinite quantity|small indefinite amount +(noun)|vibrissa|sensory hair|hair +(verb)|bewhisker|supply|provide|render|furnish +whisker jack|1 +(noun)|Canada jay|gray jay|camp robber|Perisoreus canadensis|jay +whiskered|1 +(adj)|bearded|barbate|bewhiskered|whiskery|unshaven |unshaved +whiskerless|1 +(adj)|beardless|shaven |shaved +whiskers|3 +(noun)|beard|face fungus|hair +(noun)|hair's-breadth|hairsbreadth|hair|whisker|small indefinite quantity|small indefinite amount +(noun)|whisker|vibrissa|sensory hair|hair +whiskery|1 +(adj)|bearded|barbate|bewhiskered|whiskered|unshaven |unshaved +whiskey|1 +(noun)|whisky|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +whiskey bottle|1 +(noun)|bottle +whiskey jug|1 +(noun)|jug +whiskey neat|1 +(noun)|whisky neat|drink +whiskey on the rocks|1 +(noun)|whisky on the rocks|drink +whiskey sour|1 +(noun)|whisky sour|sour +whisky|1 +(noun)|whiskey|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink +whisky neat|1 +(noun)|whiskey neat|drink +whisky on the rocks|1 +(noun)|whiskey on the rocks|drink +whisky sour|1 +(noun)|whiskey sour|sour +whisper|3 +(noun)|whispering|susurration|speaking|speech production +(noun)|rustle|rustling|whispering|noise +(verb)|talk|speak|utter|mouth|verbalize|verbalise +whispered|1 +(adj)|unvoiced |voiceless +whisperer|1 +(noun)|speaker|talker|utterer|verbalizer|verbaliser +whispering|3 +(adj)|murmuring|susurrant|soft +(noun)|rustle|rustling|whisper|noise +(noun)|whisper|susurration|speaking|speech production +whispering bells|1 +(noun)|yellow bells|California yellow bells|Emmanthe penduliflora|herb|herbaceous plant +whispering campaign|1 +(noun)|campaigning|candidacy|candidature|electioneering|political campaign +whispering dome|1 +(noun)|whispering gallery|dome +whispering gallery|1 +(noun)|whispering dome|dome +whist|1 +(noun)|long whist|short whist|card game|cards +whist drive|2 +(noun)|party +(noun)|party +whistle|10 +(noun)|whistling|sound +(noun)|whistling|signal|signaling|sign +(noun)|acoustic device|signaling device +(noun)|pennywhistle|tin whistle|fipple flute|fipple pipe|recorder|vertical flute +(verb)|sound|go +(verb)|travel|go|move|locomote +(verb)|communicate|intercommunicate +(verb)|move|displace +(verb)|sing|sound|go +(verb)|sign|signal|signalize|signalise +whistle-blower|3 +(noun)|whistle blower|whistleblower|informant|source +(noun)| +(noun)| +whistle-stop tour|1 +(noun)|tour|circuit +whistle blower|3 +(noun)|whistle-blower|whistleblower|informant|source +(noun)| +(noun)| +whistle buoy|1 +(noun)|whistling buoy|acoustic buoy +whistle stop|1 +(noun)|flag stop|way station|railway station|railroad station|railroad terminal|train station|train depot +whistleblower|1 +(noun)|whistle blower|whistle-blower|informant|source +whistler|5 +(noun)|Whistler|James Abbott McNeill Whistler|painter +(noun)|signaler|signaller +(noun)|hoary marmot|whistling marmot|Marmota caligata|marmot +(noun)|goldeneye|Bucephela clangula|duck +(noun)|thickhead|Old World flycatcher|true flycatcher|flycatcher +whistlestop|1 +(verb)|campaign|run +whistling|3 +(noun)|whistle|sound +(noun)|music +(noun)|whistle|signal|signaling|sign +whistling buoy|1 +(noun)|whistle buoy|acoustic buoy +whistling marmot|1 +(noun)|hoary marmot|whistler|Marmota caligata|marmot +whistling swan|1 +(noun)|Cygnus columbianus columbianus|tundra swan|Cygnus columbianus +whit|1 +(noun)|shred|scintilla|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity|small indefinite amount +whit-tuesday|1 +(noun)|Whit-Tuesday|Whitsun Tuesday|Tuesday|Tues +whit leather|1 +(noun)|white leather|leather +white|24 +(adj)|white |achromatic|albescent|light|light-colored +(adj)|white |caucasian|caucasoid|light-skinned +(adj)|pure +(adj)|snowy|covered +(adj)|lily-white|segregated |unintegrated +(adj)|white-hot|hot +(adj)|good +(adj)|blank|clean|empty +(adj)|diluted |dilute +(adj)|clothed |clad +(adj)|whitened|colorless |colourless +(adj)|ashen|blanched|bloodless|livid|colorless |colourless +(adj)|light +(noun)|White|white person|Caucasian|person|individual|someone|somebody|mortal|human|soul +(noun)|whiteness|achromatic color|achromatic colour +(noun)|White|Patrick White|Patrick Victor Martindale White|writer|author +(noun)|White|T. H. White|Theodore Harold White|journalist +(noun)|White|Stanford White|architect|designer +(noun)|White|E. B. White|Elwyn Brooks White|writer|author +(noun)|White|Andrew D. White|Andrew Dickson White|educator|pedagogue +(noun)|White|White River|river +(noun)|man|piece +(noun)|flannel|gabardine|tweed|trousers|pants +(verb)|whiten|discolor|discolour|colour|color +white-alder family|1 +(noun)|Clethraceae|family Clethraceae|dilleniid dicot family +white-bellied swallow|1 +(noun)|tree swallow|Iridoprocne bicolor|swallow +white-berry yew|1 +(noun)|Pseudotaxus chienii|yew +white-bread|1 +(adj)|conventional +white-breasted nuthatch|1 +(noun)|Sitta carolinensis|nuthatch|nutcracker +white-chinned petrel|1 +(noun)|Procellaria aequinoctialis|petrel +white-coat hypertension|1 +(noun)|high blood pressure|hypertension +white-collar|1 +(adj)|white-collar |clerical|professional|pink-collar|skilled +white-crowned sparrow|1 +(noun)|Zonotrichia leucophrys|New World sparrow +white-faced hornet|1 +(noun)|bald-faced hornet|Vespula maculata|hornet +white-footed mouse|1 +(noun)|vesper mouse|Peromyscus leucopus|wood mouse +white-haired|2 +(adj)|gray|grey|gray-haired|grey-haired|gray-headed|grey-headed|grizzly|hoar|hoary|old +(adj)|blue-eyed|fair-haired|loved +white-headed stilt|1 +(noun)|Himantopus himantopus leucocephalus|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt +white-heart hickory|1 +(noun)|mockernut|mockernut hickory|black hickory|big-bud hickory|Carya tomentosa|hickory|hickory tree +white-hot|2 +(adj)|hot +(adj)|white|hot +white-leaved rockrose|1 +(noun)|Cistus albidus|rockrose|rock rose +white-lipped|1 +(adj)|afraid +white-lipped peccary|1 +(noun)|Tayassu pecari|peccary|musk hog +white-livered|1 +(adj)|chicken|chickenhearted|lily-livered|yellow|yellow-bellied|cowardly |fearful +white-man's foot|1 +(noun)|broad-leaved plantain|common plantain|whiteman's foot|cart-track plant|Plantago major|plantain +white-out|3 +(verb)|cover +(verb)|lose +(verb)|widen +white-pine rust|1 +(noun)|blister rust|white pine blister rust|rust +white-rayed mule's ears|1 +(noun)|Wyethia helianthoides|wildflower|wild flower +white-rumped shrike|1 +(noun)|Lanius ludovicianus excubitorides|butcherbird +white-shoe|1 +(adj)|exclusive +white-stemmed filaree|1 +(noun)|musk clover|muskus grass|Erodium moschatum|storksbill|heron's bill +white-tailed deer|1 +(noun)|Virginia deer|white tail|whitetail|whitetail deer|Odocoileus Virginianus|deer|cervid +white-tailed jackrabbit|1 +(noun)|whitetail jackrabbit|Lepus townsendi|jackrabbit +white-tailed kite|1 +(noun)|Elanus leucurus|kite +white-tailed sea eagle|1 +(noun)|ern|erne|gray sea eagle|European sea eagle|Haliatus albicilla|sea eagle +white-throated sparrow|1 +(noun)|whitethroat|Zonotrichia albicollis|New World sparrow +white-tie|1 +(adj)|formal +white-tipped shark|1 +(noun)|whitetip shark|oceanic whitetip shark|Carcharinus longimanus|requiem shark +white-topped aster|1 +(noun)|flower +white admiral|2 +(noun)|banded purple|Limenitis arthemis|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +(noun)|Limenitis camilla|nymphalid|nymphalid butterfly|brush-footed butterfly|four-footed butterfly +white alder|2 +(noun)|mountain alder|Alnus rhombifolia|alder|alder tree +(noun)|sweet pepperbush|pepper bush|summer sweet|Clethra alnifolia|shrub|bush +white anglo-saxon protestant|1 +(noun)|WASP|white Anglo-Saxon Protestant|White|white person|Caucasian|Protestant +white ant|1 +(noun)|termite|insect +white ash|2 +(noun)|snow gum|ghost gum|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus|eucalypt|eucalyptus tree +(noun)|Fraxinus Americana|ash|ash tree +white aspen|1 +(noun)|white poplar|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar|poplar tree +white avens|2 +(noun)|bennet|Geum virginianum|avens +(noun)|bennet|Geum canadense|avens +white backlash|1 +(noun)|whitelash|backlash +white baneberry|1 +(noun)|white cohosh|white bead|doll's eyes|Actaea alba|baneberry|cohosh|herb Christopher +white basswood|1 +(noun)|cottonwood|Tilia heterophylla|linden|linden tree|basswood|lime|lime tree +white bead|1 +(noun)|white baneberry|white cohosh|doll's eyes|Actaea alba|baneberry|cohosh|herb Christopher +white bean|1 +(noun)|navy bean|pea bean|common bean +white bedstraw|1 +(noun)|wild madder|white madder|infant's-breath|false baby's breath|Galium mollugo|bedstraw +white beech|1 +(noun)|American beech|red beech|Fagus grandifolia|Fagus americana|beech|beech tree +white beer|1 +(noun)|Weissbier|wheat beer|ale +white birch|1 +(noun)|downy birch|Betula pubescens|birch|birch tree +white blood cell|1 +(noun)|leukocyte|leucocyte|white cell|white blood corpuscle|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +white blood corpuscle|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +white book|1 +(noun)|white paper|report|study|written report +white bread|1 +(noun)|light bread|bread|breadstuff|staff of life +white broom|1 +(noun)|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom +white bryony|1 +(noun)|devil's turnip|Bryonia alba|bryony|briony +white burgundy|1 +(noun)|Chablis|white Burgundy|Burgundy|Burgundy wine|white wine +white cake|1 +(noun)|cake +white camas|1 +(noun)|Zigadenus glaucus|death camas|zigadene +white campion|1 +(noun)|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene|campion|catchfly +white cedar|2 +(noun)|American arborvitae|northern white cedar|Thuja occidentalis|arborvitae +(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|Chamaecyparis thyoides|cedar|cedar tree +white cell|1 +(noun)|leukocyte|leucocyte|white blood cell|white blood corpuscle|white corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +white chocolate|1 +(noun)|chocolate +white cinnamon|1 +(noun)|canella|canella bark|bark +white cinnamon tree|1 +(noun)|wild cinnamon|Canella winterana|Canella-alba|shrub|bush +white clover|1 +(noun)|dutch clover|shamrock|Trifolium repens|clover|trefoil +white cockle|1 +(noun)|white campion|evening lychnis|bladder campion|Silene latifolia|Lychnis alba|silene|campion|catchfly +white cohosh|1 +(noun)|white baneberry|white bead|doll's eyes|Actaea alba|baneberry|cohosh|herb Christopher +white corpuscle|1 +(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|WBC|blood cell|blood corpuscle|corpuscle|free phagocyte +white crappie|1 +(noun)|Pomoxis annularis|crappie +white croaker|2 +(noun)|queenfish|Seriphus politus|croaker +(noun)|chenfish|kingfish|Genyonemus lineatus|croaker +white currant|1 +(noun)|Ribes sativum|currant|currant bush +white cypress|1 +(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cedar|Chamaecyparis thyoides|cedar|cedar tree +white cypress pine|1 +(noun)|Callitris glaucophylla|Callitris glauca|cypress pine +white daisy|1 +(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower +white dead nettle|1 +(noun)|Lamium album|dead nettle +white dipladenia|1 +(noun)|Mandevilla boliviensis|Dipladenia boliviensis|liana +white dog's-tooth violet|1 +(noun)|white dogtooth violet|blonde lilian|Erythronium albidum|dogtooth violet|dogtooth|dog's-tooth violet +white dogtooth violet|1 +(noun)|white dog's-tooth violet|blonde lilian|Erythronium albidum|dogtooth violet|dogtooth|dog's-tooth violet +white dwarf|1 +(noun)|white dwarf star|star +white dwarf star|1 +(noun)|white dwarf|star +white elephant|2 +(noun)|possession +(noun)|Indian elephant|Elephas maximus +white elm|1 +(noun)|American elm|water elm|rock elm|Ulmus americana|elm|elm tree +white fairy lantern|1 +(noun)|white globe lily|Calochortus albus|globe lily|fairy lantern +white false indigo|1 +(noun)|Baptisia lactea|wild indigo|false indigo +white feather|1 +(noun)|symbol|symbolization|symbolisation|symbolic representation +white feldspar|1 +(noun)|albite|plagioclase|oligoclase +white fir|2 +(noun)|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir +(noun)|amabilis fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir +white flag|1 +(noun)|flag of truce|flag +white fox|1 +(noun)|arctic fox|Alopex lagopus|fox +white friar|1 +(noun)|Carmelite|White Friar|friar|mendicant +white fringed orchid|1 +(noun)|white fringed orchis|Habenaria albiflora|fringed orchis|fringed orchid +white fringed orchis|1 +(noun)|white fringed orchid|Habenaria albiflora|fringed orchis|fringed orchid +white fritillary|1 +(noun)|Fritillaria liliaceae|fritillary|checkered lily +white fungus|1 +(noun)|Saprolegnia ferax|fungus +white globe lily|1 +(noun)|white fairy lantern|Calochortus albus|globe lily|fairy lantern +white gold|1 +(noun)|alloy|metal +white goods|2 +(noun)|home appliance|household appliance +(noun)|household linen|drygoods|soft goods +white heat|1 +(noun)|hotness|heat|high temperature +white heather|1 +(noun)|Cassiope mertensiana|heath +white hellebore|1 +(noun)|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore|false hellebore +white honeysuckle|2 +(noun)|Lonicera albiflora|honeysuckle +(noun)|swamp azalea|swamp honeysuckle|Rhododendron viscosum|rhododendron +white hope|1 +(noun)|great white hope|hope +white horehound|1 +(noun)|common horehound|Marrubium vulgare|horehound +white horse|2 +(noun)|whitecap|wave|moving ridge +(noun)|Whitehorse|provincial capital +white horse nettle|1 +(noun)|trompillo|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade +white house|2 +(noun)|White House|EXEC|executive department +(noun)|White House|residence|government building +white knight|1 +(noun)|company +white lead|1 +(noun)|lead carbonate|pigment +white lead ore|1 +(noun)|cerussite|mineral +white leather|1 +(noun)|whit leather|leather +white leg|1 +(noun)|milk leg|phlegmasia alba dolens|thrombosis +white lettuce|1 +(noun)|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root +white lie|1 +(noun)|lie|prevarication +white lily|2 +(noun)|Madonna lily|Annunciation lily|Lent lily|Lilium candidum|lily +(noun)|lotus|white lotus|Egyptian water lily|Nymphaea lotus|water lily +white line|1 +(noun)|reference point|point of reference|reference +white lotus|1 +(noun)|lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily +white lung|1 +(noun)|adult respiratory distress syndrome|ARDS|wet lung|respiratory disease|respiratory illness|respiratory disorder +white lupine|1 +(noun)|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine|lupin +white madder|1 +(noun)|wild madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw +white magic|1 +(noun)|magic +white maire|1 +(noun)|Olea lanceolata|olive tree +white mallee|1 +(noun)|congoo mallee|Eucalyptus dumosa|mallee +white mallow|1 +(noun)|marsh mallow|Althea officinalis|althea|althaea|hollyhock +white man|1 +(noun)|man|adult male|White|white person|Caucasian +white man's burden|1 +(noun)|duty|responsibility|obligation +white mangrove|2 +(noun)|Avicennia officinalis|tree +(noun)|Laguncularia racemosa|tree +white marlin|1 +(noun)|Makaira albida|marlin|spearfish +white matsutake|1 +(noun)|Armillaria ponderosa|agaric +white matter|1 +(noun)|substantia alba|nervous tissue|nerve tissue +white meat|1 +(noun)|breast|helping|portion|serving +white melilot|1 +(noun)|white sweet clover|Melilotus alba|melilotus|melilot|sweet clover +white metal|1 +(noun)|bearing metal|alloy|metal +white milkweed|1 +(noun)|Asclepias albicans|milkweed|silkweed +white mountain ash|1 +(noun)|Eucalyptus fraxinoides|eucalyptus|eucalypt|eucalyptus tree +white mulberry|1 +(noun)|Morus alba|mulberry|mulberry tree +white mullein|1 +(noun)|Verbascum lychnitis|mullein|flannel leaf|velvet plant +white mullet|1 +(noun)|Mugil curema|mullet|gray mullet +white mustard|1 +(noun)|Brassica hirta|Sinapis alba|mustard +white nile|1 +(noun)|White Nile|headstream +white noise|1 +(noun)|noise|dissonance|racket +white oak|1 +(noun)|oak|oak tree +white onion sauce|1 +(noun)|Soubise|sauce +white pages|1 +(noun)|phonebook|phone book|telephone book|telephone directory +white paper|1 +(noun)|white book|report|study|written report +white pelican|1 +(noun)|Pelecanus erythrorhynchos|pelican +white people|1 +(noun)|White race|White people|Caucasoid race|Caucasian race|race +white pepper|2 +(noun)|pepper|common pepper|black pepper|Madagascar pepper|Piper nigrum|true pepper|pepper vine +(noun)|pepper|peppercorn +white perch|1 +(noun)|silver perch|Morone americana|serranid fish|serranid +white person|1 +(noun)|White|Caucasian|person|individual|someone|somebody|mortal|human|soul +white pine|2 +(noun)|pine|pine tree|true pine +(noun)|pine +white pine blister rust|1 +(noun)|blister rust|white-pine rust|rust +white plague|2 +(noun)|pulmonary tuberculosis|consumption|phthisis|wasting disease|tuberculosis|TB|T.B. +(noun)|drug addiction|addiction|dependence|dependency|habituation +white popinac|1 +(noun)|lead tree|Leucaena glauca|Leucaena leucocephala|tree +white poplar|2 +(noun)|white aspen|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar|poplar tree +(noun)|tulipwood|true tulipwood|whitewood|yellow poplar|wood +white potato|2 +(noun)|potato|white potato vine|Solanum tuberosum|vine +(noun)|potato|Irish potato|murphy|spud|tater|root vegetable|solanaceous vegetable +white potato vine|1 +(noun)|potato|white potato|Solanum tuberosum|vine +white pox|1 +(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox|variola|variola major +white prairie aster|1 +(noun)|Aster falcatus|aster +white race|1 +(noun)|White race|White people|Caucasoid race|Caucasian race|race +white rhinoceros|1 +(noun)|Ceratotherium simum|Diceros simus|rhinoceros|rhino +white rice|1 +(noun)|polished rice|rice +white river|1 +(noun)|White|White River|river +white rocket|1 +(noun)|Diplotaxis erucoides|herb|herbaceous plant +white room|1 +(noun)|clean room|room +white russia|1 +(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country|European nation +white russian|1 +(noun)|Byelorussian|Belorussian|White Russian|European +white rust|1 +(noun)|fungus +white sage|1 +(noun)|western mugwort|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort +white sale|1 +(noun)|sale|cut-rate sale|sales event +white sanicle|1 +(noun)|white snakeroot|Ageratina altissima|Eupatorium rugosum|herb|herbaceous plant +white sauce|1 +(noun)|bechamel sauce|bechamel|sauce +white sea|1 +(noun)|White Sea|inlet|recess +white separatism|1 +(noun)|segregation|separatism +white separatist|1 +(noun)|separatist|separationist +white shark|1 +(noun)|great white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark +white sheep|1 +(noun)|Dall sheep|Dall's sheep|Ovis montana dalli|wild sheep +white silk-cotton tree|1 +(noun)|kapok|ceiba tree|silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree|flowering tree +white slave|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street +white slaver|1 +(noun)|slaver|slave dealer|slave trader +white slime mushroom|1 +(noun)|slime mushroom +white snakeroot|1 +(noun)|white sanicle|Ageratina altissima|Eupatorium rugosum|herb|herbaceous plant +white snapdragon|1 +(noun)|Antirrhinum coulterianum|snapdragon +white spanish broom|1 +(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom +white spruce|1 +(noun)|Picea glauca|spruce +white squire|1 +(noun)|white knight +white stork|1 +(noun)|Ciconia ciconia|stork +white stringybark|1 +(noun)|thin-leaved stringybark|Eucalyptusd eugenioides|stringybark +white sturgeon|2 +(noun)|beluga|hausen|Acipenser huso|sturgeon +(noun)|Pacific sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon +white supremacist|1 +(noun)|supremacist +white supremacy|1 +(noun)|racism +white sweet clover|1 +(noun)|white melilot|Melilotus alba|melilotus|melilot|sweet clover +white tai|1 +(noun)|White Tai|Tai +white tail|2 +(noun)|Virginia deer|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer|cervid +(noun)| +white thistle|2 +(noun)|prickly poppy|argemone|devil's fig|herb|herbaceous plant +(noun)|quail bush|quail brush|Atriplex lentiformis|saltbush +white tie|2 +(noun)|bow tie +(noun)|dress suit|full dress|tailcoat|tail coat|tails|white tie and tails|formalwear|eveningwear|evening dress|evening clothes +white tie and tails|1 +(noun)|dress suit|full dress|tailcoat|tail coat|tails|white tie|formalwear|eveningwear|evening dress|evening clothes +white titi|1 +(noun)|cyrilla|leatherwood|Cyrilla racemiflora|shrub|bush +white trash|1 +(noun)|poor white trash|poor white|White|white person|Caucasian +white trumpet lily|1 +(noun)|Easter lily|Bermuda lily|Lilium longiflorum|lily +white turnip|2 +(noun)|turnip|Brassica rapa|turnip plant +(noun)|turnip +white violet|2 +(noun)|sweet white violet|woodland white violet|Viola blanda|violet +(noun)|Canada violet|tall white violet|Viola canadensis|violet +white vitriol|1 +(noun)|zinc sulfate|zinc sulphate|zinc vitriol|sulfate|sulphate +white walnut|1 +(noun)|butternut|butternut tree|Juglans cinerea|walnut|walnut tree +white water|1 +(noun)|foam|froth +white wax tree|1 +(noun)|Chinese privet|Ligustrum lucidum|privet +white whale|1 +(noun)|beluga|Delphinapterus leucas|dolphin +white willow|1 +(noun)|Huntingdon willow|Salix alba|willow|willow tree +white wine|1 +(noun)|wine|vino +white wolf|1 +(noun)|Arctic wolf|Canis lupus tundrarum|wolf +white woman|1 +(noun)|woman|adult female|White|white person|Caucasian +white wood aster|1 +(noun)|Aster divaricatus|wood aster +white yam|1 +(noun)|water yam|Dioscorea alata|yam|yam plant +white zinnia|1 +(noun)|Zinnia acerosa|zinnia|old maid|old maid flower +whitebait|2 +(noun)|herring +(noun)|young fish +whitebark pine|1 +(noun)|whitebarked pine|Pinus albicaulis|white pine +whitebarked pine|1 +(noun)|whitebark pine|Pinus albicaulis|white pine +whitecap|1 +(noun)|white horse|wave|moving ridge +whitecup|1 +(noun)|Nierembergia repens|Nierembergia rivularis|cupflower|nierembergia +whited sepulcher|1 +(noun)|whited sepulchre|hypocrite|dissembler|phony|phoney|pretender +whited sepulchre|1 +(noun)|whited sepulcher|hypocrite|dissembler|phony|phoney|pretender +whiteface|2 +(noun)|Hereford|beef|beef cattle +(noun)|clown|buffoon|merry andrew +whitefish|3 +(noun)|seafood +(noun)|freshwater fish +(noun)|soft-finned fish|malacopterygian|food fish +whitefly|1 +(noun)|homopterous insect|homopteran +whitehall|2 +(noun)|Whitehall|street +(noun)|Whitehall|civil service +whitehead|2 +(noun)|Whitehead|Alfred North Whitehead|philosopher|mathematician +(noun)|milium|blemish|defect|mar +whitehorse|1 +(noun)|Whitehorse|provincial capital +whitelash|1 +(noun)|white backlash|backlash +whiteman's foot|1 +(noun)|broad-leaved plantain|common plantain|white-man's foot|cart-track plant|Plantago major|plantain +whiten|1 +(verb)|white|discolor|discolour|colour|color +whitened|1 +(adj)|white|colorless |colourless +whitener|1 +(noun)|bleaching agent|bleach|blanching agent|agent +whiteness|1 +(noun)|white|achromatic color|achromatic colour +whitening|1 +(noun)|lightening|change of color +whiteout|1 +(noun)|snow|snowfall +whitetail|1 +(noun)|Virginia deer|white tail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer|cervid +whitetail antelope squirrel|1 +(noun)|antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel|gopher|spermophile +whitetail deer|1 +(noun)|Virginia deer|white tail|whitetail|white-tailed deer|Odocoileus Virginianus|deer|cervid +whitetail jackrabbit|1 +(noun)|white-tailed jackrabbit|Lepus townsendi|jackrabbit +whitetail prairie dog|1 +(noun)|Cynomys gunnisoni|prairie dog|prairie marmot +whitethorn|1 +(noun)|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn|haw +whitethroat|3 +(noun)|lesser whitethroat|Sylvia curruca|warbler +(noun)|greater whitethroat|Sylvia communis|warbler +(noun)|white-throated sparrow|Zonotrichia albicollis|New World sparrow +whitetip shark|2 +(noun)|reef whitetip shark|Triaenodon obseus|smooth dogfish +(noun)|oceanic whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark +whitewash|6 +(noun)|defeat|licking +(noun)|wash +(noun)|clearing +(verb)|gloss over|sleek over|hush up|cover|cover up +(verb)|wash +(verb)|acquit|assoil|clear|discharge|exonerate|exculpate +whitewashed|1 +(adj)|painted +whitewood|1 +(noun)|tulipwood|true tulipwood|white poplar|yellow poplar|wood +whitey|1 +(noun)|honky|honkey|honkie|White|white person|Caucasian +whitherso|1 +(adv)|whithersoever +whithersoever|1 +(adv)|whitherso +whiting|6 +(noun)|saltwater fish +(noun)|saltwater fish +(noun)|percoid fish|percoid|percoidean +(noun)|sciaenid fish|sciaenid +(noun)|silver hake|Merluccius bilinearis|hake +(noun)|Merlangus merlangus|Gadus merlangus|gadoid|gadoid fish +whitish|2 +(adj)|milky|milklike|opaque +(adj)|off-white|achromatic +whitlavia|1 +(noun)|California bluebell|Phacelia minor|Phacelia whitlavia|scorpionweed|scorpion weed|phacelia +whitlow|1 +(noun)|felon|infection +whitlow grass|1 +(noun)|shadflower|shad-flower|Draba verna|draba +whitlowwort|1 +(noun)|groundcover|ground cover +whitman|2 +(noun)|Whitman|Walt Whitman|poet +(noun)|Whitman|Marcus Whitman|missionary +whitmonday|1 +(noun)|Whitmonday|Whitsun Monday|Monday|Mon +whitney|2 +(noun)|Whitney|Eli Whitney|inventor|discoverer|artificer|manufacturer|producer +(noun)|Whitney|Mount Whitney|mountain peak +whitney moore young jr.|1 +(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader|civil rights worker|civil rights activist +whitney young|1 +(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader|civil rights worker|civil rights activist +whitsun|1 +(noun)|Whitsun|Whitsuntide|Whitweek|season +whitsun monday|1 +(noun)|Whitmonday|Whitsun Monday|Monday|Mon +whitsun tuesday|1 +(noun)|Whit-Tuesday|Whitsun Tuesday|Tuesday|Tues +whitsunday|1 +(noun)|Pentecost|Whitsunday|quarter day +whitsuntide|1 +(noun)|Whitsun|Whitsuntide|Whitweek|season +whittier|1 +(noun)|Whittier|John Greenleaf Whittier|poet +whittle|1 +(verb)|pare|cut +whittle away|1 +(verb)|whittle down|wear away|damage +whittle down|1 +(verb)|whittle away|wear away|damage +whittler|1 +(noun)|idler|loafer|do-nothing|layabout|bum +whitweek|1 +(noun)|Whitsun|Whitsuntide|Whitweek|season +whiz|3 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whizz|wizard|wiz|expert +(noun)|sound +(verb)|whizz|whirr|whir|birr|purr|sound|go +whiz-kid|1 +(noun)|go-getter|whizz-kid|ball of fire|actor|doer|worker +whizbang|2 +(noun)|whizzbang|shell +(noun)|whizzbang|firecracker|cracker|banger +whizz|3 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|wizard|wiz|expert +(verb)|whiz|whirr|whir|birr|purr|sound|go +(verb)|zoom|zoom along|whizz along|travel rapidly|speed|hurry|zip +whizz-kid|1 +(noun)|go-getter|whiz-kid|ball of fire|actor|doer|worker +whizz along|1 +(verb)|zoom|zoom along|whizz|travel rapidly|speed|hurry|zip +whizzbang|2 +(noun)|whizbang|shell +(noun)|whizbang|firecracker|cracker|banger +who|1 +(noun)|World Health Organization|WHO|United Nations agency|UN agency +whodunit|1 +(noun)|mystery|mystery story|story +whole|6 +(adj)|whole |entire|full|total|full-length|full-page|integral|entire|intact|livelong|undivided|full|complete +(adj)|whole +(adj)|hale|healthy +(noun)|concept|conception|construct +(noun)|whole thing|unit|object|physical object +(adv)|wholly|entirely|completely|totally|all|altogether +whole-souled|1 +(adj)|heart-whole|wholehearted|sincere +whole-wheat|1 +(adj)|wheaten|wholemeal|grain|food grain|cereal +whole-word method|1 +(noun)|teaching reading +whole blood|1 +(noun)|blood +whole caboodle|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole works|works|full treatment|entirety|entireness|totality +whole gale|1 +(noun)|gale +whole kit|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +whole kit and boodle|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|kit and boodle|whole kit|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +whole kit and caboodle|1 +(noun)|whole shebang|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +whole life insurance|1 +(noun)|ordinary life insurance|straight life insurance|life insurance|life assurance +whole lot|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole slew|large indefinite quantity|large indefinite amount +whole meal bread|1 +(noun)|dark bread|whole wheat bread|brown bread|bread|breadstuff|staff of life +whole meal flour|1 +(noun)|whole wheat flour|graham flour|graham|wheat flour +whole milk|1 +(noun)|milk +whole name|1 +(noun)|holonym|word +whole note|1 +(noun)|semibreve|note|musical note|tone +whole number|1 +(noun)|integer|number +whole rest|1 +(noun)|rest +whole shebang|1 +(noun)|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|whole works|works|full treatment|entirety|entireness|totality +whole slew|1 +(noun)|batch|deal|flock|good deal|great deal|hatful|heap|lot|mass|mess|mickle|mint|muckle|peck|pile|plenty|pot|quite a little|raft|sight|slew|spate|stack|tidy sum|wad|whole lot|large indefinite quantity|large indefinite amount +whole snipe|1 +(noun)|common snipe|Gallinago gallinago|snipe +whole step|1 +(noun)|tone|whole tone|step|interval|musical interval +whole thing|1 +(noun)|whole|unit|object|physical object +whole to part relation|1 +(noun)|holonymy|semantic relation +whole tone|1 +(noun)|tone|step|whole step|interval|musical interval +whole wheat bread|1 +(noun)|dark bread|whole meal bread|brown bread|bread|breadstuff|staff of life +whole wheat flour|1 +(noun)|graham flour|graham|whole meal flour|wheat flour +whole works|1 +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|works|full treatment|entirety|entireness|totality +wholehearted|1 +(adj)|heart-whole|whole-souled|sincere +wholeheartedness|3 +(noun)|completeness +(noun)|heartiness|sincerity +(noun)|willingness +wholemeal|1 +(adj)|wheaten|whole-wheat|grain|food grain|cereal +wholeness|2 +(noun)|integrity|unity|state +(noun)|haleness|good health|healthiness +wholesale|5 +(adj)|wholesale +(adj)|sweeping|indiscriminate +(noun)|selling|merchandising|marketing +(verb)|sell +(adv)|in large quantities +wholesale house|1 +(noun)|discount house|discount store|discounter|mercantile establishment|retail store|sales outlet|outlet +wholesale price index|1 +(noun)|producer price index|price index|price level +wholesaler|1 +(noun)|jobber|middleman|distributor|distributer +wholesome|2 +(adj)|wholesome |alimentary|alimental|nourishing|nutrient|nutritious|nutritive|healthy|salubrious|good for you|heart-healthy|hearty|satisfying|solid|substantial|organic|salubrious|healthful|healthy|sound +(adj)|healthy +wholesomeness|1 +(noun)|quality +wholly|1 +(adv)|entirely|completely|totally|all|altogether|whole +whomp|2 +(verb)|cuff|slap +(verb)|beat|beat out|crush|shell|trounce|vanquish +whomp up|1 +(verb)|whip up|cook|fix|ready|make|prepare +whoop|3 +(noun)|cry|outcry|call|yell|shout|vociferation +(verb)|shout|shout out|cry|call|yell|scream|holler|hollo|squall +(verb)|hack|cough +whoop it up|1 +(verb)|revel|racket|make whoopie|make merry|make happy|jollify|wassail|celebrate|fete +whoopee|1 +(noun)|revel|revelry +whooper|2 +(noun)|whooping crane|Grus americana|crane +(noun)|whooper swan|Cygnus cygnus|swan +whooper swan|1 +(noun)|whooper|Cygnus cygnus|swan +whooping cough|1 +(noun)|pertussis|infectious disease|respiratory disease|respiratory illness|respiratory disorder +whooping crane|1 +(noun)|whooper|Grus americana|crane +whoosh|3 +(verb)|move|displace +(verb)|hiss|travel|go|move|locomote +(verb)|spurt|spirt|gush|spout +whop|2 +(verb)|whack|wham|wallop|hit +(verb)|sock|bop|whap|bonk|bash|hit +whopper|2 +(noun)|walloper|lie|prevarication +(noun)|whacker|thing +whopping|1 +(adj)|humongous|banging|thumping|walloping|large +whore|3 +(noun)|prostitute|cocotte|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman|adult female +(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect +(verb)|fornicate +whoredom|1 +(noun)|prostitution|harlotry|vice crime +whorehouse|1 +(noun)|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building|edifice +whoremaster|2 +(noun)|whoremonger|john|customer|client +(noun)|whoremonger|pimp|procurer|panderer|pander|pandar|fancy man|ponce +whoremonger|2 +(noun)|whoremaster|john|customer|client +(noun)|whoremaster|pimp|procurer|panderer|pander|pandar|fancy man|ponce +whoreson|2 +(noun)|bastard|by-blow|love child|illegitimate child|illegitimate|offspring|progeny|issue +(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|son of a bitch|SOB|unpleasant person|disagreeable person +whorl|3 +(noun)|coil|roll|curl|curlicue|ringlet|gyre|scroll|round shape +(noun)|lock|curl|ringlet|hair +(noun)|coil|spiral|volute|helix|structure|construction +whorled|3 +(adj)|looped|coiled +(adj)|coiling|helical|spiral|spiraling|volute|voluted|turbinate|coiled +(adj)|verticillate|verticillated|cyclic +whorled aster|1 +(noun)|Aster acuminatus|aster +whorled caraway|1 +(noun)|caraway|Carum carvi +whorled loosestrife|1 +(noun)|Lysimachia quadrifolia|loosestrife +whorled milkweed|1 +(noun)|Asclepias verticillata|milkweed|silkweed +whorlywort|1 +(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|Veronicastrum virginicum|asterid dicot genus +whortleberry|2 +(noun)|bilberry|whinberry|blaeberry|Viccinium myrtillus|blueberry|blueberry bush +(noun)|bilberry|European blueberry|berry +why|2 +(noun)|wherefore|reason|ground +(adv)|how come +whydah|1 +(noun)|whidah|widow bird|weaver|weaverbird|weaver finch +wi|1 +(noun)|Wisconsin|Badger State|WI|American state +wichita|3 +(noun)|Wichita|Caddo +(noun)|Wichita|city|metropolis|urban center +(noun)|Wichita|Caddo|Caddoan|Caddoan language +wichita falls|1 +(noun)|Wichita Falls|city|metropolis|urban center +wick|2 +(noun)|cord +(noun)|taper|cord +wicked|5 +(adj)|wicked |depraved|evil|vicious|iniquitous|sinful|ungodly|irreclaimable|irredeemable|unredeemable|unreformable|nefarious|villainous|peccable|peccant|heavy|evil|immoral|impious|unrighteous|wrong +(adj)|sinful|unholy|unrighteous +(adj)|severe|terrible|intense +(adj)|evil |atrocious|flagitious|grievous|heinous|monstrous|bad|immoral|black|dark|sinister|corruptive|perversive|pestiferous|demonic|diabolic|diabolical|fiendish|hellish|infernal|satanic|unholy|despicable|ugly|vile|unworthy|devilish|diabolic|diabolical|mephistophelian|mephistophelean|evil-minded|bad|immoral|offensive|unrighteous|wrong +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|yucky|offensive +wickedly|1 +(adv)|evilly +wickedness|4 +(noun)|evil|immorality|iniquity|transgression|evildoing +(noun)|iniquity|darkness|dark|condition|status +(noun)|nefariousness|vileness|evil|evilness +(noun)|sin|sinfulness|unrighteousness +wicker|2 +(noun)|wood +(noun)|wickerwork|caning|work|piece of work +wicker basket|1 +(noun)|basket|handbasket +wickerwork|1 +(noun)|wicker|caning|work|piece of work +wicket|4 +(noun)|cricket equipment +(noun)|hoop|croquet equipment +(noun)|wicket door|wicket gate|gate +(noun)|lattice|grille|opening +wicket-keeper|1 +(noun)|cricketer +wicket door|1 +(noun)|wicket|wicket gate|gate +wicket gate|1 +(noun)|wicket|wicket door|gate +wickiup|1 +(noun)|wikiup|lodge|indian lodge +wickliffe|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +wickup|1 +(noun)|fireweed|giant willowherb|rosebay willowherb|Epilobium angustifolium|willowherb +wiclif|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +wicopy|1 +(noun)|leatherwood|moosewood|moose-wood|ropebark|Dirca palustris|shrub|bush +widal's test|1 +(noun)|Widal test|Widal's test|agglutination test +widal test|1 +(noun)|Widal test|Widal's test|agglutination test +wide|10 +(adj)|wide |broad|beamy|bird's-eye|panoramic|broad-brimmed|citywide|countywide|countrywide|nationwide|deep|heavy|thick|in width|in breadth|schoolwide|spreading|wide-spreading|statewide|stretching|wide-spreading|sweeping|wide-screen|fanlike|comprehensive|thick +(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|panoptic|comprehensive +(adj)|round-eyed|wide-eyed|open |opened +(adj)|broad|spacious|large +(adj)|wide |comfortable +(adj)|extended|extensive|considerable +(adj)|wide-cut|full|ample +(adj)|wide of the mark|inaccurate +(adv)|astray +(adv)|widely +wide-angle|1 +(adj)|fisheye|camera lens|optical lens +wide-angle lens|1 +(noun)|fisheye lens|camera lens|optical lens +wide-awake|2 +(adj)|unsleeping|awake +(adj)|heads-up|alert +wide-body|1 +(noun)|widebody aircraft|wide-body aircraft|twin-aisle airplane|airliner +wide-body aircraft|1 +(noun)|widebody aircraft|wide-body|twin-aisle airplane|airliner +wide-cut|1 +(adj)|wide|full|ample +wide-eyed|2 +(adj)|childlike|dewy-eyed|simple|naive |naif +(adj)|round-eyed|wide|open |opened +wide-open|2 +(adj)|open |unfastened +(adj)|open|lawless|unlawful +wide-ranging|2 +(adj)|large +(adj)|varied|diversified +wide-screen|1 +(adj)|wide |broad +wide-spreading|2 +(adj)|stretching|wide |broad +(adj)|spreading|wide |broad +wide area network|1 +(noun)|WAN|computer network +wide of the mark|1 +(adj)|wide|inaccurate +wide screen|1 +(noun)|screen|silver screen|projection screen +wide wale|1 +(noun)|cord|corduroy +wideband|1 +(adj)|broadband|band +widebody aircraft|1 +(noun)|wide-body aircraft|wide-body|twin-aisle airplane|airliner +widegrip pushup|1 +(noun)|pushup|press-up +widely|1 +(adv)|wide +widely distributed|1 +(adj)|cosmopolitan +widen|4 +(verb)|increase +(verb)|let out|change|alter|vary +(verb)|change|alter|modify +(verb)|broaden|extend|increase +wideness|1 +(noun)|broadness|width|breadth +widening|3 +(noun)|broadening|increase|increment|growth +(noun)|turnout|part|portion +(noun)|broadening|change of shape +widespread|2 +(adj)|general +(adj)|far-flung|distributed +widgeon|1 +(noun)|wigeon|Anas penelope|duck +widget|1 +(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|device +widow|2 +(noun)|widow woman|woman|adult female +(verb)|leave|leave behind +widow's peak|1 +(noun)|point|tip|peak +widow's walk|1 +(noun)|lookout|observation tower|lookout station|observatory +widow's weeds|1 +(noun)|weeds|garment +widow bird|1 +(noun)|whydah|whidah|weaver|weaverbird|weaver finch +widow woman|1 +(noun)|widow|woman|adult female +widowed|1 +(adj)|unmarried |single +widower|1 +(noun)|widowman|man|adult male +widowhood|2 +(noun)|time of life +(noun)|marital status +widowman|1 +(noun)|widower|man|adult male +width|1 +(noun)|breadth|dimension +wieland|1 +(noun)|Wayland|Wayland the Smith|Wieland|mythical being +wield|2 +(verb)|exert|maintain|have|have got|hold +(verb)|handle|manipulate +wieldy|1 +(adj)|wieldy |manageable +wiener|2 +(noun)|Wiener|Norbert Wiener|mathematician +(noun)|frank|frankfurter|hotdog|hot dog|dog|wienerwurst|weenie|sausage +wiener roast|1 +(noun)|weenie roast|cookout +wiener schnitzel|1 +(noun)|schnitzel|Wiener schnitzel|dish +wienerwurst|1 +(noun)|frank|frankfurter|hotdog|hot dog|dog|wiener|weenie|sausage +wiesbaden|1 +(noun)|Wiesbaden|city|metropolis|urban center|watering place|watering hole|spa +wiesel|1 +(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer|author|historian|historiographer +wiesenboden|1 +(noun)|soil|dirt +wiesenthal|1 +(noun)|Wiesenthal|Samuel Wiesenthal|investigator +wife|1 +(noun)|married woman|woman|adult female|spouse|partner|married person|mate|better half +wifelike|1 +(adj)|wifely |uxorial +wifely|1 +(adj)|wifely |wifelike|uxorial +wiffle|1 +(noun)|Wiffle|Wiffle Ball|ball +wiffle ball|1 +(noun)|Wiffle|Wiffle Ball|ball +wifi|1 +(noun)|wireless local area network|WLAN|wireless fidelity|WiFi|local area network|LAN +wig|2 +(noun)|hairpiece|false hair|postiche +(noun)|wigging|chiding|scolding|objurgation|tongue-lashing +wig tree|1 +(noun)|Venetian sumac|Cotinus coggygria|smoke tree|smoke bush +wigeon|1 +(noun)|widgeon|Anas penelope|duck +wigged|1 +(adj)|wigged |peruked|periwigged|toupeed +wigging|1 +(noun)|wig|chiding|scolding|objurgation|tongue-lashing +wiggle|2 +(noun)|wriggle|squirm|motion|movement|move|motility +(verb)|jiggle|joggle|shake|agitate +wiggle nail|1 +(noun)|corrugated fastener|fastener|fastening|holdfast|fixing +wiggle room|1 +(noun)|flexibility +wiggler|3 +(noun)|wriggler|squirmer|person|individual|someone|somebody|mortal|human|soul +(noun)|wriggler|larva +(noun)|earthworm|angleworm|fishworm|fishing worm|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete|oligochaete worm +wiggliness|1 +(noun)|looseness|play +wiggling|1 +(adj)|squirming|twisting|wiggly|wriggling|wriggly|writhing|moving +wiggly|2 +(adj)|sinuate|sinuous|curved |curving +(adj)|squirming|twisting|wiggling|wriggling|wriggly|writhing|moving +wight|2 +(noun)|creature|person|individual|someone|somebody|mortal|human|soul +(noun)|Wight|Isle of Wight|isle|islet|county +wigless|1 +(adj)|wigless +wigmaker|1 +(noun)|maker|shaper +wigner|1 +(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist +wigwag|2 +(verb)|brandish|flourish|wave +(verb)|sign|signal|signalize|signalise +wigwam|1 +(noun)|lodge|indian lodge +wikiup|1 +(noun)|wickiup|lodge|indian lodge +wilbur wright|1 +(noun)|Wright|Wilbur Wright|inventor|discoverer|artificer +wild|14 +(adj)|wild |chaotic|disorderly|delirious|excited|frantic|mad|unrestrained|frenzied|manic|unquiet +(adj)|wild |untamed|feral|ferine|savage|unbroken|undomesticated|intractable +(adj)|passionate +(adj)|uncontrolled +(adj)|violent|intense +(adj)|uncontrolled +(adj)|raving|raving mad|insane +(adj)|spontaneous|unplanted +(adj)|desert|godforsaken|waste|inhospitable +(adj)|barbarian|barbaric|savage|uncivilized|uncivilised|noncivilized |noncivilised +(adj)|angry|furious|raging|tempestuous|stormy +(noun)|natural state|state of nature|state +(noun)|wilderness|geographical area|geographic area|geographical region|geographic region +(adv)|rampantly +wild-eyed|2 +(adj)|agitated +(adj)|quixotic|romantic|impractical +wild-goose chase|1 +(noun)|pursuit|pursuance|quest +wild angelica|1 +(noun)|Angelica sylvestris|angelica|angelique +wild apple|1 +(noun)|crab apple|crabapple|apple tree +wild ass|1 +(noun)|ass +wild basil|1 +(noun)|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb|herbaceous plant +wild bean|2 +(noun)|groundnut|groundnut vine|Indian potato|potato bean|Apios americana|Apios tuberosa|vine +(noun)|groundnut|potato bean|tuber +wild bergamot|1 +(noun)|monarda|herb|herbaceous plant +wild bill hickock|1 +(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal|marshall +wild blue yonder|1 +(noun)|blue sky|blue|blue air|sky +wild boar|1 +(noun)|boar|Sus scrofa|swine +wild buckwheat|1 +(noun)|California buckwheat|Erigonum fasciculatum|eriogonum +wild cabbage|1 +(noun)|Brassica oleracea|crucifer|cruciferous plant +wild calla|1 +(noun)|water arum|Calla palustris|marsh plant|bog plant|swamp plant +wild card|2 +(noun)|factor +(noun)|playing card +wild carrot|1 +(noun)|Queen Anne's lace|Daucus carota|wildflower|wild flower +wild cavy|1 +(noun)|aperea|Cavia porcellus|cavy +wild celery|2 +(noun)|Apium graveolens|herb|herbaceous plant +(noun)|tape grass|eelgrass|Vallisneria spiralis|aquatic plant|water plant|hydrophyte|hydrophytic plant +wild chamomile|1 +(noun)|sweet false chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb|herbaceous plant +wild cherry|2 +(noun)|fruit +(noun)|wild cherry tree|cherry|cherry tree +wild cherry tree|1 +(noun)|wild cherry|cherry|cherry tree +wild chervil|1 +(noun)|cow parsley|Anthriscus sylvestris|herb|herbaceous plant +wild china tree|1 +(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry|soapberry tree +wild cinnamon|2 +(noun)|white cinnamon tree|Canella winterana|Canella-alba|shrub|bush +(noun)|bayberry|bay-rum tree|Jamaica bayberry|Pimenta acris|tree +wild clary|1 +(noun)|wild sage|vervain sage|Salvia verbenaca|sage|salvia +wild climbing hempweed|1 +(noun)|climbing hempweed|climbing boneset|climbing hemp-vine|Mikania scandens|vine +wild coffee|1 +(noun)|feverroot|horse gentian|tinker's root|Triostium perfoliatum|herb|herbaceous plant +wild cotton|1 +(noun)|Arizona wild cotton|Gossypium thurberi|cotton|cotton plant +wild crab|1 +(noun)|Malus sylvestris|wild apple|crab apple|crabapple +wild cranberry|1 +(noun)|common bearberry|red bearberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry +wild crocus|1 +(noun)|American pasqueflower|Eastern pasque flower|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower|pasque flower +wild dog|1 +(noun)|canine|canid +wild duck|1 +(noun)|duck +wild emmer|1 +(noun)|wild wheat|Triticum dicoccum dicoccoides|wheat|corn +wild fig|2 +(noun)|golden fig|Florida strangler fig|strangler fig|Ficus aurea|fig tree +(noun)|Clusia flava|tree +wild flower|2 +(noun)|wildflower|angiosperm|flowering plant|wilding +(noun)| +wild garlic|2 +(noun)|wood garlic|Ramsons|Allium ursinum|alliaceous plant +(noun)|crow garlic|false garlic|field garlic|stag's garlic|Allium vineale|wild onion +wild geranium|1 +(noun)|spotted cranesbill|Geranium maculatum|cranesbill|crane's bill +wild ginger|1 +(noun)|herb|herbaceous plant +wild goat|1 +(noun)|goat|caprine animal +wild hollyhock|2 +(noun)|checkerbloom|Sidalcea malviflora|mallow +(noun)|Iliamna remota|Sphaeralcea remota|mallow +wild hop|1 +(noun)|red bryony|Bryonia dioica|bryony|briony +wild horse|1 +(noun)|horse|Equus caballus +wild hyacinth|2 +(noun)|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +(noun)|indigo squill|Camassia scilloides|camas|camass|quamash|camosh|camash +wild hydrangea|1 +(noun)|Hydrangea arborescens|hydrangea +wild indigo|1 +(noun)|false indigo|woody plant|ligneous plant +wild leek|2 +(noun)|ramp|Allium tricoccum|alliaceous plant +(noun)|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant +wild licorice|3 +(noun)|Galium lanceolatum|bedstraw +(noun)|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb|herbaceous plant +(noun)|wild liquorice|Astragalus glycyphyllos|milk vetch|milk-vetch +wild lily of the valley|2 +(noun)|Pyrola rotundifolia|wintergreen|pyrola +(noun)|shinleaf|Pyrola elliptica|wintergreen|pyrola +wild liquorice|2 +(noun)|wild licorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb|herbaceous plant +(noun)|wild licorice|Astragalus glycyphyllos|milk vetch|milk-vetch +wild lupine|1 +(noun)|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub|suffrutex +wild madder|1 +(noun)|white madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw +wild man|1 +(noun)|feral man|primitive|primitive person +wild mandrake|1 +(noun)|mayapple|May apple|Podophyllum peltatum|herb|herbaceous plant +wild mango|1 +(noun)|dika|wild mango tree|Irvingia gabonensis|fruit tree +wild mango tree|1 +(noun)|wild mango|dika|Irvingia gabonensis|fruit tree +wild marjoram|1 +(noun)|oregano|marjoram|pot marjoram|winter sweet|Origanum vulgare|origanum +wild meadow lily|1 +(noun)|Canada lily|wild yellow lily|meadow lily|Lilium canadense|lily +wild medlar|1 +(noun)|wild medlar tree|medlar|Vangueria infausta|tree +wild medlar tree|1 +(noun)|wild medlar|medlar|Vangueria infausta|tree +wild morning-glory|2 +(noun)|hedge bindweed|Calystegia sepium|Convolvulus sepium|bindweed +(noun)|field bindweed|Convolvulus arvensis|bindweed +wild mustard|1 +(noun)|field mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard +wild oat|1 +(noun)|wild oat grass|Avena fatua|oat +wild oat grass|1 +(noun)|wild oat|Avena fatua|oat +wild oats|2 +(noun)|bellwort|merry bells|flower +(noun)|wild oat|wild oat grass|Avena fatua|oat +wild olive|1 +(noun)|Elaeagnus latifolia|oleaster +wild onion|1 +(noun)|alliaceous plant +wild orange|2 +(noun)|trifoliate orange|trifoliata|Poncirus trifoliata|tree +(noun)|cherry laurel|laurel cherry|mock orange|Prunus caroliniana|angiospermous tree|flowering tree +wild ox|1 +(noun)|ox|bovine +wild pansy|1 +(noun)|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola +wild parsley|1 +(noun)|umbellifer|umbelliferous plant +wild parsnip|1 +(noun)|madnep|parsnip|Pastinaca sativa|weed +wild pea|1 +(noun)|legume|leguminous plant +wild peach|1 +(noun)|Kiggelaria africana|shrub|bush +wild peanut|1 +(noun)|hog peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine +wild pink|2 +(noun)|bog rose|dragon's mouth|Arethusa bulbosa|arethusa +(noun)|Silene caroliniana|silene|campion|catchfly +wild pitch|1 +(noun)|pitch|delivery +wild plum|2 +(noun)|wild plum tree|plum|plum tree +(noun)|hog plum|edible fruit +wild plum tree|1 +(noun)|wild plum|plum|plum tree +wild potato|1 +(noun)|Solanum jamesii|vine +wild potato vine|1 +(noun)|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +wild pumpkin|1 +(noun)|prairie gourd|prairie gourd vine|Missouri gourd|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd|gourd vine +wild quinine|1 +(noun)|American feverfew|prairie dock|Parthenium integrifolium|subshrub|suffrutex +wild radish|1 +(noun)|jointed charlock|wild rape|runch|Raphanus raphanistrum|weed +wild rape|1 +(noun)|jointed charlock|wild radish|runch|Raphanus raphanistrum|weed +wild raspberry|1 +(noun)|European raspberry|framboise|Rubus idaeus|red raspberry +wild red oat|1 +(noun)|animated oat|Avene sterilis|oat +wild rice|2 +(noun)|Zizania aquatica|cereal|cereal grass +(noun)|Indian rice|grain|food grain|cereal +wild rosemary|1 +(noun)|marsh tea|Ledum palustre|shrub|bush +wild rye|1 +(noun)|grass +wild sage|1 +(noun)|wild clary|vervain sage|Salvia verbenaca|sage|salvia +wild sarsaparilla|1 +(noun)|false sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub|suffrutex +wild sarsparilla|1 +(noun)|wild sarsaparilla|false sarsaparilla|Aralia nudicaulis|subshrub|suffrutex +wild senna|1 +(noun)|Senna marilandica|Cassia marilandica|herb|herbaceous plant +wild sensitive plant|1 +(noun)|partridge pea|sensitive pea|Chamaecrista fasciculata|Cassia fasciculata|subshrub|suffrutex +wild service tree|1 +(noun)|Sorbus torminalis|service tree|sorb apple|sorb apple tree|Sorbus domestica +wild sheep|1 +(noun)|bovid +wild snapdragon|1 +(noun)|toadflax|butter-and-eggs|devil's flax|Linaria vulgaris|flower +wild spinach|4 +(noun)|good-king-henry|allgood|fat hen|Chenopodium bonus-henricus|goosefoot +(noun)|lamb's-quarters|pigweed|Chenopodium album|goosefoot +(noun)|greens|green|leafy vegetable +(noun)|lamb's-quarter|pigweed|greens|green|leafy vegetable +wild spurge|1 +(noun)|flowering spurge|tramp's spurge|Euphorbia corollata|spurge +wild strawberry|1 +(noun)|wood strawberry|Fragaria vesca|strawberry +wild sweet pea|1 +(noun)|catgut|goat's rue|Tephrosia virginiana|hoary pea +wild sweet potato vine|1 +(noun)|wild potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory +wild tamarind|2 +(noun)|manila tamarind|camachile|huamachil|Pithecellobium dulce|tree +(noun)|Lysiloma latisiliqua|Lysiloma bahamensis|tree +wild teasel|1 +(noun)|Dipsacus sylvestris|teasel|teazel|teasle +wild thyme|1 +(noun)|creeping thyme|Thymus serpyllum|thyme +wild tobacco|1 +(noun)|Indian tobacco|Nicotiana rustica|tobacco +wild vanilla|1 +(noun)|Trilisa odoratissima|herb|herbaceous plant +wild water lemon|1 +(noun)|love-in-a-mist|running pop|Passiflora foetida|passionflower|passionflower vine +wild west|1 +(noun)|Wild West|West|western United States +wild west show|1 +(noun)|Wild West Show|Buffalo Bill's Wild West Show|show +wild wheat|1 +(noun)|wild emmer|Triticum dicoccum dicoccoides|wheat|corn +wild wilkworm|1 +(noun)|silkworm|giant silkworm|caterpillar +wild winterpea|1 +(noun)|singletary pea|Caley pea|rough pea|Lathyrus hirsutus|wild pea +wild yam|1 +(noun)|Dioscorea paniculata|vine +wild yellow lily|1 +(noun)|Canada lily|meadow lily|wild meadow lily|Lilium canadense|lily +wildcat|6 +(adj)|unsound +(adj)|unauthorized|unauthorised|unofficial +(adj)|exploratory |explorative +(noun)|wildcat well|oil well|oiler +(noun)|beast|wolf|savage|brute|attacker|aggressor|assailant|assaulter +(noun)|cat|true cat +wildcat strike|1 +(noun)|strike|work stoppage +wildcat well|1 +(noun)|wildcat|oil well|oiler +wildcatter|1 +(noun)|oilman +wilde|1 +(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer|author +wilde dagga|1 +(noun)|dagga|Cape dagga|red dagga|Leonotis leonurus|herb|herbaceous plant +wildebeest|1 +(noun)|gnu|antelope +wilder|2 +(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer|author|dramatist|playwright +(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker|filmmaker|film producer|movie maker +wilderness|1 +(noun)|wild|geographical area|geographic area|geographical region|geographic region +wilderness campaign|1 +(noun)|Wilderness Campaign|campaign|military campaign +wildfire|1 +(noun)|conflagration|inferno +wildflower|1 +(noun)|wild flower|angiosperm|flowering plant|wilding +wildfowl|1 +(noun)|bird|fowl +wilding|2 +(noun)|plant|flora|plant life +(noun)|rampage|violent disorder +wildlife|1 +(noun)|life +wildness|3 +(noun)|abandon|passion|passionateness +(noun)|ferocity|fierceness|furiousness|fury|vehemence|violence|intensity|intensiveness +(noun)|intractability|intractableness +wile|1 +(noun)|trickery|chicanery|chicane|guile|shenanigan|deception|deceit|dissembling|dissimulation +wiley post|1 +(noun)|Post|Wiley Post|aviator|aeronaut|airman|flier|flyer +wilful|3 +(adj)|intentional|willful|voluntary +(adj)|froward|headstrong|self-willed|willful|disobedient +(adj)|deliberate|intentional|knowing|willful|intended +wilfully|1 +(adv)|willfully +wilfulness|1 +(noun)|unruliness|fractiousness|willfulness|intractability|intractableness +wilhelm apollinaris de kostrowitzki|1 +(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet +wilhelm eduard weber|1 +(noun)|Weber|Wilhelm Eduard Weber|physicist +wilhelm grimm|1 +(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer|author +wilhelm ii|1 +(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser +wilhelm karl grimm|1 +(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer|author +wilhelm konrad roentgen|1 +(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist +wilhelm konrad rontgen|1 +(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist +wilhelm ostwald|1 +(noun)|Ostwald|Wilhelm Ostwald|chemist +wilhelm reich|1 +(noun)|Reich|Wilhelm Reich|analyst|psychoanalyst +wilhelm richard wagner|1 +(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer +wilhelm von opel|1 +(noun)|Opel|Wilhelm von Opel|industrialist +wiliness|1 +(noun)|craft|craftiness|cunning|foxiness|guile|slyness|shrewdness|astuteness|perspicacity|perspicaciousness +wilkes|2 +(noun)|Wilkes|John Wilkes|reformer|reformist|crusader|meliorist +(noun)|Wilkes|Charles Wilkes|explorer|adventurer +wilkes land|1 +(noun)|Wilkes Land|geographical area|geographic area|geographical region|geographic region +wilkie collins|1 +(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer|author +wilkins|3 +(noun)|Wilkins|Roy Wilkins|civil rights leader|civil rights worker|civil rights activist +(noun)|Wilkins|George Hubert Wilkins|explorer|adventurer +(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist +wilkins micawber|1 +(noun)|Micawber|Wilkins Micawber|fictional character|fictitious character|character +wilkinson|1 +(noun)|Wilkinson|Sir Geoffrey Wilkinson|chemist +will|7 +(noun)|volition|faculty|mental faculty|module +(noun)|purpose|intent|intention|aim|design +(noun)|testament|legal document|legal instrument|official document|instrument +(verb)|ordain +(verb)|wish +(verb)|decide|make up one's mind|determine +(verb)|bequeath|leave|give|gift|present +will-o'-the-wisp|2 +(noun)|friar's lantern|ignis fatuus|jack-o'-lantern|light|visible light|visible radiation +(noun)|ignis fatuus|illusion|fantasy|phantasy|fancy +will durant|1 +(noun)|Durant|Will Durant|William James Durant|historian|historiographer +will hays|1 +(noun)|Hays|Will Hays|William Harrison Hays|lawyer|attorney +will keith kellog|1 +(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer +will rogers|1 +(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist|humourist +willa cather|1 +(noun)|Cather|Willa Cather|Willa Sibert Cather|writer|author +willa sibert cather|1 +(noun)|Cather|Willa Cather|Willa Sibert Cather|writer|author +willamette|1 +(noun)|Willamette|Willamette River|river +willamette river|1 +(noun)|Willamette|Willamette River|river +willard|2 +(noun)|Willard|Frances Elizabeth Caroline Willard|suffragist|dry|prohibitionist +(noun)|Willard|Emma Hart Willard|educator|pedagogue +willard frank libby|1 +(noun)|Libby|Willard Frank Libby|chemist +willard huntington wright|1 +(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer|author +willard van orman quine|1 +(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher|logician|logistician +willebrand|1 +(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor|doc|physician|MD|Dr.|medico +willem de kooning|1 +(noun)|de Kooning|Willem de Kooning|painter +willem de sitter|1 +(noun)|Sitter|Willem de Sitter|astronomer|uranologist|stargazer +willem einthoven|1 +(noun)|Einthoven|Willem Einthoven|physiologist +willet|1 +(noun)|Catoptrophorus semipalmatus|tattler +willful|3 +(adj)|intentional|wilful|voluntary +(adj)|froward|headstrong|self-willed|wilful|disobedient +(adj)|deliberate|intentional|knowing|wilful|intended +willful neglect|1 +(noun)|delinquency|dereliction|negligence|neglect|neglectfulness +willfully|1 +(adv)|wilfully +willfulness|1 +(noun)|unruliness|fractiousness|wilfulness|intractability|intractableness +william a. craigie|1 +(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer|lexicologist +william and mary|1 +(noun)|William and Mary|nobility|aristocracy +william augustus|1 +(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general|full general +william averell harriman|1 +(noun)|Harriman|Averell Harriman|William Averell Harriman|financier|moneyman|diplomat|diplomatist +william beaumont|1 +(noun)|Beaumont|William Beaumont|surgeon|operating surgeon|sawbones +william benjamin hogan|1 +(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer|golf player|linksman +william blake|1 +(noun)|Blake|William Blake|poet|painter +william bligh|1 +(noun)|Bligh|William Bligh|Captain Bligh|admiral|full admiral +william bradford|1 +(noun)|Bradford|William Bradford|printer|pressman +william bradford shockley|1 +(noun)|Shockley|William Shockley|William Bradford Shockley|physicist +william burroughs|1 +(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer|author +william butler yeats|1 +(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet|dramatist|playwright +william butterfield|1 +(noun)|Butterfield|William Butterfield|architect|designer +william byrd|1 +(noun)|Byrd|William Byrd|organist|composer +william carlos williams|1 +(noun)|Williams|William Carlos Williams|poet +william caxton|1 +(noun)|Caxton|William Caxton|printer|pressman +william chambers|1 +(noun)|Chambers|William Chambers|Sir William Chambers|architect|designer +william christopher handy|1 +(noun)|Handy|W. C. Handy|William Christopher Handy|composer +william claire menninger|1 +(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist|head-shrinker|shrink +william clark|1 +(noun)|Clark|William Clark|explorer|adventurer +william clark gable|1 +(noun)|Gable|Clark Gable|William Clark Gable|actor|histrion|player|thespian|role player +william claude dukenfield|1 +(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian|comic +william cowper|2 +(noun)|Cowper|William Cowper|surgeon|operating surgeon|sawbones +(noun)|Cowper|William Cowper|poet +william crawford gorgas|1 +(noun)|Gorgas|William Crawford Gorgas|surgeon|operating surgeon|sawbones +william crookes|1 +(noun)|Crookes|William Crookes|Sir William Crookes|chemist|physicist +william curtis|1 +(noun)|Curtis|William Curtis|botanist|phytologist|plant scientist +william cuthbert faulkner|1 +(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist +william dawes|1 +(noun)|Dawes|William Dawes|American Revolutionary leader +william dean howells|1 +(noun)|Howells|William Dean Howells|writer|author +william dudley haywood|1 +(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader|socialist +william edward burghardt du bois|1 +(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader|civil rights worker|civil rights activist +william ewart gladstone|1 +(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman|solon|national leader +william f. cody|1 +(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman|promoter|impresario +william falkner|1 +(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist +william faulkner|1 +(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist +william felton russell|1 +(noun)|Russell|Bill Russell|William Felton Russell|center +william franklin graham|1 +(noun)|Graham|Billy Graham|William Franklin Graham|evangelist|revivalist|gospeler|gospeller +william frederick cody|1 +(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman|promoter|impresario +william fulbright|1 +(noun)|Fulbright|William Fulbright|James William Fulbright|senator +william gilbert|2 +(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist|poet +(noun)|Gilbert|William Gilbert|doctor|doc|physician|MD|Dr.|medico|physicist +william gladstone|1 +(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman|solon|national leader +william golding|1 +(noun)|Golding|William Golding|Sir William Gerald Golding|writer|author +william graham sumner|1 +(noun)|Sumner|William Graham Sumner|sociologist +william green|1 +(noun)|Green|William Green|labor leader +william h. bonney|1 +(noun)|Bonney|William H. Bonney|Billie the Kid|criminal|felon|crook|outlaw|malefactor +william harrison dempsey|1 +(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|The Manassa Mauler|prizefighter|gladiator +william harrison hays|1 +(noun)|Hays|Will Hays|William Harrison Hays|lawyer|attorney +william harvey|1 +(noun)|Harvey|William Harvey|doctor|doc|physician|MD|Dr.|medico|scientist|man of science +william hazlitt|1 +(noun)|Hazlitt|William Hazlitt|literary critic +william henry|1 +(noun)|Henry|William Henry|chemist +william henry beveridge|1 +(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist|economic expert +william henry fox talbot|1 +(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor|discoverer|artificer|photographer|lensman +william henry gates|1 +(noun)|Gates|Bill Gates|William Henry Gates|computer scientist|entrepreneur|enterpriser +william henry harrison|1 +(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States|United States President|President|Chief Executive +william henry hoover|1 +(noun)|Hoover|William Hoover|William Henry Hoover|industrialist +william henry hudson|1 +(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist|natural scientist +william henry mauldin|1 +(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist +william henry pratt|1 +(noun)|Karloff|Boris Karloff|William Henry Pratt|actor|histrion|player|thespian|role player +william henry seward|1 +(noun)|Seward|William Henry Seward|politician|politico|pol|political leader +william herschel|1 +(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer|uranologist|stargazer +william hogarth|1 +(noun)|Hogarth|William Hogarth|old master|engraver +william holman hunt|1 +(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite +william holmes mcguffey|1 +(noun)|McGuffey|William Holmes McGuffey|educator|pedagogue +william hoover|1 +(noun)|Hoover|William Hoover|William Henry Hoover|industrialist +william howard taft|1 +(noun)|Taft|William Howard Taft|President Taft|President of the United States|United States President|President|Chief Executive +william hubbs rehnquist|1 +(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|jurist|legal expert +william hyde wollaston|1 +(noun)|Wollaston|William Hyde Wollaston|chemist|physicist +william i|1 +(noun)|William I|William the Conqueror|King of England|King of Great Britain +william ii|1 +(noun)|William II|William Rufus|King of England|King of Great Britain +william iii|1 +(noun)|William III|William of Orange|King of England|King of Great Britain +william inge|1 +(noun)|Inge|William Inge|dramatist|playwright +william iv|1 +(noun)|William IV|The Sailor King|King of England|King of Great Britain +william james|1 +(noun)|James|William James|psychologist|philosopher +william james durant|1 +(noun)|Durant|Will Durant|William James Durant|historian|historiographer +william jefferson clinton|1 +(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States|United States President|President|Chief Executive +william jennings bryan|1 +(noun)|Bryan|William Jennings Bryan|the Great Commoner|The Boy Orator of the Platte|politician|politico|pol|political leader|lawyer|attorney +william john clifton haley jr.|1 +(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star +william kidd|1 +(noun)|Kidd|William Kidd|Captain Kidd|master|captain|sea captain|skipper +william lawrence shirer|1 +(noun)|Shirer|William Lawrence Shirer|journalist +william le baron jenny|1 +(noun)|Jenny|William Le Baron Jenny|architect|designer +william lloyd garrison|1 +(noun)|Garrison|William Lloyd Garrison|abolitionist|emancipationist +william makepeace thackeray|1 +(noun)|Thackeray|William Makepeace Thackeray|writer|author +william maxwell aitken|1 +(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher|newspaper publisher|politician|politico|pol|political leader +william mckinley|1 +(noun)|McKinley|William McKinley|President McKinley|President of the United States|United States President|President|Chief Executive +william menninger|1 +(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist|head-shrinker|shrink +william mitchell|1 +(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator|aeronaut|airman|flier|flyer|general|full general +william morris|1 +(noun)|Morris|William Morris|poet|craftsman|artisan|journeyman|artificer +william nunn lipscom jr.|1 +(noun)|Lipscomb|William Nunn Lipscom Jr.|chemist +william of occam|1 +(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher +william of ockham|1 +(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher +william of orange|1 +(noun)|William III|William of Orange|King of England|King of Great Britain +william of wykeham|1 +(noun)|Wykeham|William of Wykeham|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +william patterson|1 +(noun)|Paterson|William Patterson|American Revolutionary leader +william penn|1 +(noun)|Penn|William Penn|Friend|Quaker +william penn adair rogers|1 +(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist|humourist +william pitt|2 +(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman|solon|national leader +(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman|solon|national leader +william ralph inge|1 +(noun)|Inge|William Ralph Inge|the Gloomy Dean|archpriest|hierarch|high priest|prelate|primate +william randolph hearst|1 +(noun)|Hearst|William Randolph Hearst|publisher|newspaper publisher +william rehnquist|1 +(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|jurist|legal expert +william richard morris|1 +(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist|philanthropist|altruist +william rose benet|1 +(noun)|Benet|William Rose Benet|writer|author +william rowan hamilton|1 +(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician +william rufus|1 +(noun)|William II|William Rufus|King of England|King of Great Britain +william s. burroughs|1 +(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer|author +william s. gilbert|1 +(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist|poet +william saroyan|1 +(noun)|Saroyan|William Saroyan|writer|author +william schwenk gilbert|1 +(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist|poet +william seward burroughs|2 +(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer|author +(noun)|Burroughs|William Seward Burroughs|inventor|discoverer|artificer +william shakespeare|1 +(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|the bard|dramatist|playwright|poet +william shakspere|1 +(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|the bard|dramatist|playwright|poet +william shockley|1 +(noun)|Shockley|William Shockley|William Bradford Shockley|physicist +william somerset maugham|1 +(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer|author +william stanley jevons|1 +(noun)|Jevons|William Stanley Jevons|economist|economic expert|logician|logistician +william strickland|1 +(noun)|Strickland|William Strickland|architect|designer +william stubbs|1 +(noun)|Stubbs|William Stubbs|historian|historiographer +william styron|1 +(noun)|Styron|William Styron|writer|author +william sydney porter|1 +(noun)|Porter|William Sydney Porter|O. Henry|writer|author +william tatem tilden jr.|1 +(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player +william tecumseh sherman|1 +(noun)|Sherman|William Tecumseh Sherman|general|full general +william tell|1 +(noun)|Tell|William Tell|archer|bowman +william the conqueror|1 +(noun)|William I|William the Conqueror|King of England|King of Great Britain +william thompson|1 +(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist +william thornton|1 +(noun)|Thornton|William Thornton|architect|designer +william tindal|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +william tindale|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +william tyndale|1 +(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter|translator|martyr|sufferer +william wilkie collins|1 +(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer|author +william wordsworth|1 +(noun)|Wordsworth|William Wordsworth|poet +william wycherley|1 +(noun)|Wycherley|William Wycherley|dramatist|playwright +william wyler|1 +(noun)|Wyler|William Wyler|film maker|filmmaker|film producer|movie maker +william wymark jacobs|1 +(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer|author +williams|6 +(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer|vocalist|vocalizer|vocaliser|songwriter|songster|ballad maker +(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher +(noun)|Williams|William Carlos Williams|poet +(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer|baseball player +(noun)|Williams|Roger Williams|clergyman|reverend|man of the cloth|settler|colonist +(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist|playwright +williams syndrome|1 +(noun)|Williams syndrome|syndrome +williamstown|1 +(noun)|Williamstown|town +willie howard mays jr.|1 +(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|the Say Hey Kid|ballplayer|baseball player +willie mays|1 +(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|the Say Hey Kid|ballplayer|baseball player +willies|1 +(noun)|edginess|uneasiness|inquietude|disquietude +willing|4 +(adj)|willing |consenting|disposed|fain|inclined|prepared|glad|lief|ready|volitional|willing and able|compliant|inclined|ready|voluntary +(adj)|uncoerced|unforced|voluntary +(adj)|amenable|conformable|compliant +(noun)|volition|choice|selection|option|pick +willing and able|1 +(adj)|willing +willingly|1 +(adv)|volitionally +willingness|1 +(noun)|disposition|temperament +willow|2 +(noun)|willow tree|tree +(noun)|textile machine +willow-pattern|1 +(noun)|willowware|chinaware|china +willow aster|1 +(noun)|aster +willow bell|1 +(noun)|peach bells|peach bell|Campanula persicifolia|campanula|bellflower +willow family|1 +(noun)|Salicaceae|family Salicaceae|hamamelid dicot family +willow oak|1 +(noun)|Quercus phellos|oak|oak tree +willow tree|1 +(noun)|willow|tree +willowherb|1 +(noun)|herb|herbaceous plant +willowware|1 +(noun)|willow-pattern|chinaware|china +willowy|1 +(adj)|gracile|graceful +willpower|1 +(noun)|self-control|self-possession|possession|self-command|self-will|resoluteness|firmness|resolve|resolution +willy-nilly|1 +(adv)|randomly|indiscriminately|haphazardly|arbitrarily|at random|every which way +willy brandt|1 +(noun)|Brandt|Willy Brandt|statesman|solon|national leader +wilmington|2 +(noun)|Wilmington|town +(noun)|Wilmington|city|metropolis|urban center +wilms' tumor|1 +(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|embryoma of the kidney|sarcoma +wilms tumour|1 +(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|embryoma of the kidney|sarcoma +wilmut|1 +(noun)|Wilmut|Ian Wilmut|geneticist +wilno|1 +(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital +wilson|11 +(noun)|Wilson|Harriet Wilson|writer|author +(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer|author +(noun)|Wilson|Alexander Wilson|ornithologist|bird watcher +(noun)|Wilson|Robert Woodrow Wilson|physicist +(noun)|Wilson|John Tuzo Wilson|geophysicist +(noun)|Wilson|James Wilson|American Revolutionary leader +(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist|bugologist|bug-hunter +(noun)|Wilson|Charles Thomson Rees Wilson|nuclear physicist +(noun)|Wilson|Edmund Wilson|literary critic +(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States|United States President|President|Chief Executive +(noun)|Wilson|Mount Wilson|mountain peak +wilson's blackcap|1 +(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler|wood warbler +wilson's disease|1 +(noun)|hepatolenticular degeneration|Wilson's disease|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition +wilson's phalarope|1 +(noun)|Wilson's phalarope|Steganopus tricolor|phalarope +wilson's snipe|1 +(noun)|Wilson's snipe|Gallinago gallinago delicata|snipe +wilson's thrush|1 +(noun)|veery|Wilson's thrush|Hylocichla fuscescens|thrush +wilson's warbler|1 +(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler|wood warbler +wilson cloud chamber|1 +(noun)|cloud chamber|Wilson cloud chamber|apparatus|setup +wilsonia pusilla|1 +(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler|wood warbler +wilsonian|1 +(adj)|Wilsonian|President of the United States|United States President|President|Chief Executive +wilt|4 +(noun)|wilt disease|plant disease +(noun)|wilting|weakening +(verb)|weaken +(verb)|droop|decay|crumble|delapidate +wilt disease|1 +(noun)|wilt|plant disease +wilted|1 +(adj)|limp|stale +wilting|1 +(noun)|wilt|weakening +wilton|1 +(noun)|Wilton|Wilton carpet|rug|carpet|carpeting +wilton carpet|1 +(noun)|Wilton|Wilton carpet|rug|carpet|carpeting +wily|1 +(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|artful +wimble|1 +(noun)|auger|gimlet|screw auger|drill +wimbledon|1 +(noun)|Wimbledon|suburb|suburbia|suburban area +wimp|2 +(noun)|chicken|crybaby|weakling|doormat|wuss +(noun)|weakly interacting massive particle|WIMP|elementary particle|fundamental particle|subatomic particle +wimpish|1 +(adj)|wimpy|forceless |unforceful|weak +wimple|1 +(noun)|headdress|headgear +wimpy|1 +(adj)|wimpish|forceless |unforceful|weak +wimshurst machine|1 +(noun)|electrostatic generator|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device +win|5 +(noun)|victory|triumph +(noun)|winnings|profits|financial gain +(verb)|acquire|gain|get|acquire +(verb)|gain|advance|pull ahead|make headway|get ahead|gain ground +(verb)|succeed|come through|bring home the bacon|deliver the goods +win back|1 +(verb)|get back|get|acquire +win over|1 +(verb)|convert|convince|persuade +wince|4 +(noun)|facial expression|facial gesture +(noun)|flinch|startle|jump|start +(verb)|flinch|squinch|funk|cringe|shrink|recoil|quail|move +(verb)|grimace|make a face|pull a face +wincey|1 +(noun)|fabric|cloth|material|textile +winceyette|1 +(noun)|flannelette +winch|2 +(noun)|windlass|lifting device +(verb)|pull|draw|force +winchester|2 +(noun)|Winchester|city|metropolis|urban center +(noun)|Winchester|rifle +winchester college|1 +(noun)|Winchester College|public school +winchester drive|1 +(noun)|disk drive|disc drive|hard drive|Winchester drive|drive +winckelmann|1 +(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist|archaeologist|art historian +wind|15 +(noun)|air current|current of air|weather|weather condition|atmospheric condition +(noun)|influence +(noun)|exhalation|expiration|breathing out +(noun)|idle words|jazz|nothingness|talk|talking +(noun)|tip|lead|steer|confidential information|hint|guidance|counsel|counseling|counselling|direction +(noun)|wind instrument|musical instrument|instrument +(noun)|fart|farting|flatus|breaking wind|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(noun)|winding|twist|rotation|rotary motion +(verb)|weave|thread|meander|wander|travel|go|move|locomote +(verb)|curve|be +(verb)|wrap|roll|twine|move|displace +(verb)|scent|nose|smell +(verb)|wind up|tighten|fasten +(verb)|wreathe|intertwine|twine|entwine|enlace|interlace|lace +(verb)|hoist|lift|raise|lift|elevate|get up|bring up +wind bells|1 +(noun)|wind chimes|decoration|ornament|ornamentation +wind cave national park|1 +(noun)|Wind Cave National Park|national park +wind chimes|1 +(noun)|wind bells|decoration|ornament|ornamentation +wind cone|1 +(noun)|windsock|sock|air sock|wind sleeve|drogue|visual signal +wind deflection|1 +(noun)|windage|deflection|deflexion|bending +wind energy facility|1 +(noun)|wind farm|wind park|power station|power plant|powerhouse +wind exposure|1 +(noun)|windage|exposure +wind farm|1 +(noun)|wind park|wind energy facility|power station|power plant|powerhouse +wind gage|1 +(noun)|anemometer|wind gauge|gauge|gage +wind gap|1 +(noun)|col|gap +wind gauge|1 +(noun)|anemometer|wind gage|gauge|gage +wind generation|1 +(noun)|wind power|alternative energy +wind generator|1 +(noun)|windmill|aerogenerator|generator +wind harp|1 +(noun)|aeolian harp|aeolian lyre|harp +wind instrument|1 +(noun)|wind|musical instrument|instrument +wind off|1 +(verb)|unwind|unroll|move|displace +wind park|1 +(noun)|wind farm|wind energy facility|power station|power plant|powerhouse +wind poppy|1 +(noun)|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy +wind power|1 +(noun)|wind generation|alternative energy +wind rose|1 +(noun)|weather map|weather chart +wind scale|1 +(noun)|Beaufort scale|scale|scale of measurement|graduated table|ordered series +wind sleeve|2 +(noun)|windsock|sock|air sock|wind cone|drogue|visual signal +(noun)|air sock|air sleeve|wind sock|indicator +wind sock|2 +(noun)|air sock|air sleeve|wind sleeve|indicator +(noun)|windsock|sock|air sock|wind sleeve|wind cone|drogue|visual signal +wind tee|1 +(noun)|weathervane|weather vane|vane|wind vane +wind tunnel|1 +(noun)|structure|construction +wind turbine|1 +(noun)|turbine +wind up|4 +(verb)|finish up|land up|fetch up|end up|finish|act|move +(verb)|swing +(verb)|arouse|sex|excite|turn on|stimulate|shake|shake up|excite|stir +(verb)|wind|tighten|fasten +wind vane|1 +(noun)|weathervane|weather vane|vane|mechanical device +windage|4 +(noun)|drag|retarding force +(noun)|diameter|diam +(noun)|wind exposure|exposure +(noun)|wind deflection|deflection|deflexion|bending +windaus|1 +(noun)|Windaus|Adolf Windaus|chemist +windbag|1 +(noun)|gasbag|bore|dullard +windblown|1 +(adj)|crooked +windbreak|1 +(noun)|shelterbelt|hedge|hedgerow +windbreaker|1 +(noun)|parka|windcheater|anorak|jacket +windburn|1 +(noun)|erythema +windburned|1 +(adj)|windburnt|unhealthy +windburnt|1 +(adj)|windburned|unhealthy +windcheater|1 +(noun)|parka|windbreaker|anorak|jacket +winded|1 +(adj)|blown|gasping|out of breath|panting|pursy|short-winded|breathless |dyspneic|dyspnoeic|dyspneal|dyspnoeal +winder|3 +(noun)|worker +(noun)|key|mechanical device +(noun)|mechanical device +windfall|2 +(noun)|edible fruit +(noun)|boom|bonanza|gold rush|gravy|godsend|manna from heaven|bunce|happening|occurrence|natural event +windfall profit|1 +(noun)|net income|net|net profit|lucre|profit|profits|earnings +windflower|1 +(noun)|anemone|flower +windhoek|1 +(noun)|Windhoek|national capital +windily|1 +(adv)|verbosely|long-windedly|wordily +windiness|1 +(noun)|breeziness|storminess +winding|3 +(adj)|tortuous|twisting|twisty|crooked +(adj)|meandering|rambling|wandering|indirect +(noun)|wind|twist|rotation|rotary motion +winding-clothes|1 +(noun)|pall|shroud|cerement|winding-sheet|burial garment +winding-sheet|1 +(noun)|pall|shroud|cerement|winding-clothes|burial garment +windjammer|1 +(noun)|sailing vessel|sailing ship +windlass|1 +(noun)|winch|lifting device +windless|1 +(adj)|calm +windlessness|1 +(noun)|stillness|calmness +windmill|2 +(noun)|mill|grinder +(noun)|aerogenerator|wind generator|generator +windmill grass|1 +(noun)|creeping windmill grass|star grass|Chloris truncata|finger grass +window|8 +(noun)|framework|frame|framing +(noun)|opening +(noun)|panel +(noun)|opening|gap +(noun)|time period|period of time|period +(noun)|windowpane|pane|pane of glass|window glass +(noun)|opening +(noun)|display +window-dress|1 +(verb)|dress up|beautify|embellish|prettify +window-shop|1 +(verb)|shop|browse +window-washing|1 +(noun)|wash|washing|lavation +window blind|1 +(noun)|blind|screen +window box|1 +(noun)|box +window cleaner|1 +(noun)|cleaner +window dresser|1 +(noun)|window trimmer|craftsman|artisan|journeyman|artificer +window dressing|2 +(noun)|facade|misrepresentation|deceit|deception +(noun)|decoration +window envelope|1 +(noun)|envelope +window frame|1 +(noun)|framework|frame|framing +window glass|1 +(noun)|pane|pane of glass|plate glass|sheet glass +window lock|1 +(noun)|sash fastener|sash lock|lock +window oyster|1 +(noun)|windowpane oyster|capiz|Placuna placenta|oyster +window pane|3 +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|Zen|lysergic acid diethylamide|LSD +(noun)|windowpane|window|pane|pane of glass|window glass +(noun)|windowpane|Scophthalmus aquosus|lefteye flounder|lefteyed flounder +window sash|1 +(noun)|sash|framework|frame|framing +window screen|1 +(noun)|screen +window seat|1 +(noun)|bench +window shade|1 +(noun)|window blind +window trimmer|1 +(noun)|window dresser|craftsman|artisan|journeyman|artificer +window washer|1 +(noun)|washer +windowpane|2 +(noun)|window|pane|pane of glass|window glass +(noun)|Scophthalmus aquosus|lefteye flounder|lefteyed flounder +windowpane oyster|1 +(noun)|window oyster|capiz|Placuna placenta|oyster +windowsill|1 +(noun)|sill +windpipe|1 +(noun)|trachea|cartilaginous tube +windscreen|1 +(noun)|windshield|screen +windscreen wiper|1 +(noun)|windshield wiper|wiper|wiper blade|mechanical device +windshield|1 +(noun)|windscreen|screen +windshield wiper|1 +(noun)|windscreen wiper|wiper|wiper blade|mechanical device +windsock|1 +(noun)|sock|air sock|wind sleeve|wind cone|drogue|visual signal +windsor|2 +(noun)|Windsor|city|metropolis|urban center +(noun)|Windsor|House of Windsor|dynasty +windsor chair|1 +(noun)|Windsor chair|straight chair|side chair +windsor green|1 +(noun)|Windsor green|chrome green +windsor knot|1 +(noun)|Windsor knot|slipknot +windsor tie|1 +(noun)|Windsor tie|necktie|tie +windstorm|1 +(noun)|storm|violent storm +windsurf|1 +(verb)|surf +windswept|1 +(adj)|inhospitable +windtalker|1 +(noun)|codetalker|secret agent|intelligence officer|intelligence agent|operative +windup|2 +(adj)|mechanical +(noun)|completion|culmination|closing|mop up|termination|ending|conclusion +windward|3 +(adj)|windward |upwind|weather +(noun)|direction +(adv)|downwind +windward islands|1 +(noun)|Windward Islands|Windward Isles|archipelago +windward isles|1 +(noun)|Windward Islands|Windward Isles|archipelago +windward passage|1 +(noun)|Windward Passage|channel +windward side|1 +(noun)|to windward|weatherboard|weather side|windward +windy|2 +(adj)|blowy|breezy|stormy +(adj)|long-winded|tedious|verbose|wordy|prolix +windy city|1 +(noun)|Chicago|Windy City|city|metropolis|urban center|port +wine|4 +(noun)|vino|alcohol|alcoholic beverage|intoxicant|inebriant +(noun)|wine-colored|dark red +(verb)|drink|booze|fuddle +(verb)|regale|treat +wine-colored|1 +(noun)|wine|dark red +wine-maker's yeast|1 +(noun)|Saccharomyces ellipsoides|yeast +wine and dine|2 +(verb)|feast|banquet|junket +(verb)|host +wine bar|1 +(noun)|bar +wine barrel|1 +(noun)|wine cask|barrel|cask +wine bottle|1 +(noun)|bottle +wine bucket|1 +(noun)|wine cooler|bucket|pail +wine cask|1 +(noun)|wine barrel|barrel|cask +wine cellar|1 +(noun)|cellar|storage space +wine cooler|1 +(noun)|wine bucket|bucket|pail +wine lover|1 +(noun)|oenophile|oenophilist|connoisseur|cognoscenti +wine maker|3 +(noun)|vintner|winemaker|maker|shaper +(noun)|winery|distillery|still +(noun)| +wine merchant|1 +(noun)|vintner|merchant|merchandiser +wine palm|2 +(noun)|jaggery palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm +(noun)|palmyra|palmyra palm|toddy palm|lontar|longar palm|Borassus flabellifer|fan palm +wine sauce|1 +(noun)|sauce +wine steward|1 +(noun)|sommelier|wine waiter|waiter|server +wine taster|1 +(noun)|taster|taste tester|taste-tester|sampler +wine tasting|1 +(noun)|gathering|assemblage +wine vinegar|1 +(noun)|vinegar|acetum +wine waiter|1 +(noun)|sommelier|wine steward|waiter|server +wineberry|2 +(noun)|Rubus phoenicolasius|raspberry|raspberry bush +(noun)|makomako|New Zealand wine berry|Aristotelia serrata|Aristotelia racemosa|shrub|bush +wineglass|1 +(noun)|glass|drinking glass +wineglass heel|1 +(noun)|heel +winemaker|1 +(noun)|vintner|wine maker|maker|shaper +winemaking|1 +(noun)|viniculture|trade|craft +winepress|1 +(noun)|press|mechanical press +winery|1 +(noun)|wine maker|distillery|still +winesap|1 +(noun)|Winesap|eating apple|dessert apple +wineskin|1 +(noun)|skin +winey|1 +(adj)|winy|tasteful +winfield scott|1 +(noun)|Scott|Winfield Scott|general|full general +winfred|1 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +wing|10 +(noun)|organ +(noun)|airfoil|aerofoil|control surface|surface +(noun)|offstage|backstage|stage +(noun)|air unit +(noun)|flank|formation +(noun)|hockey player|ice-hockey player +(noun)|helping|portion|serving +(noun)|fender|barrier +(noun)|annex|annexe|extension|addition|add-on|improver +(verb)|fly|travel|go|move|locomote +wing-nut|3 +(noun)|wing nut|nut tree +(noun)|wing nut|wing screw|butterfly nut|thumbnut|nut +(noun)| +wing-shaped|1 +(adj)|alar|alary|aliform|winged +wing case|1 +(noun)|elytron|wing +wing chair|1 +(noun)|easy chair|lounge chair|overstuffed chair +wing commander|1 +(noun)|commanding officer|commandant|commander +wing elm|1 +(noun)|winged elm|Ulmus alata|elm|elm tree +wing flat|1 +(noun)|coulisse|flat +wing loading|1 +(noun)|loading +wing nut|3 +(noun)|wing-nut|nut tree +(noun)|wing-nut|wing screw|butterfly nut|thumbnut|nut +(noun)| +wing screw|1 +(noun)|wing nut|wing-nut|butterfly nut|thumbnut|nut +wing shooting|1 +(noun)|shooting +wing tip|2 +(noun)|shoe +(noun)|toecap +wingback|2 +(noun)|back +(noun)|back +winged|2 +(adj)|winged |alar|alary|aliform|wing-shaped|alate|alated|batwing|brachypterous|short-winged|flying|volant|winglike|pinioned +(adj)|fast +winged bean|1 +(noun)|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine +winged elm|1 +(noun)|wing elm|Ulmus alata|elm|elm tree +winged everlasting|1 +(noun)|Ammobium alatum|ammobium +winged pea|2 +(noun)|winged bean|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine +(noun)|asparagus pea|Lotus tetragonolobus|herb|herbaceous plant +winged pigweed|1 +(noun)|tumbleweed|Cycloloma atriplicifolium|shrub|bush +winged spindle tree|1 +(noun)|Euonymous alatus|spindle tree|spindleberry|spindleberry tree +winger|1 +(noun)|athlete|jock +wingless|1 +(adj)|wingless |apterous|apteral|flightless +winglike|1 +(adj)|winged +wingman|1 +(noun)|pilot|airplane pilot +wings|11 +(noun)|means|agency|way +(noun)|insignia +(noun)|wing|organ +(noun)|wing|airfoil|aerofoil|control surface|surface +(noun)|wing|offstage|backstage|stage +(noun)|wing|air unit +(noun)|flank|wing|formation +(noun)|wing|hockey player|ice-hockey player +(noun)|wing|helping|portion|serving +(noun)|fender|wing|barrier +(noun)|annex|annexe|extension|wing|addition|add-on|improver +wingspan|1 +(noun)|wingspread|distance|length +wingspread|2 +(noun)|distance|length +(noun)|wingspan|distance|length +wingstem|1 +(noun)|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +wink|7 +(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|twinkling|New York minute|moment|minute|second|bit +(noun)|facial expression|facial gesture +(noun)|blink|eye blink|blinking|winking|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|gesticulate|gesture|motion +(verb)|flash|blink|twinkle|winkle|radiate +(verb)|blink|nictitate|nictate|act involuntarily|act reflexively +(verb)|blink|blink away|suppress|stamp down|inhibit|subdue|conquer|curb +wink at|1 +(verb)|connive at|promote|advance|boost|further|encourage +winker|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|blinker|blinder|blind|screen +winking|2 +(adj)|blinking|closed |shut +(noun)|blink|eye blink|blinking|wink|nictitation|nictation|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +winkle|5 +(noun)|periwinkle|seafood +(noun)|periwinkle|seasnail +(verb)|twinkle|scintillate|shine|beam +(verb)|flash|blink|wink|twinkle|radiate +(verb)|winkle out|bring out|get out +winkle out|2 +(verb)|remove +(verb)|winkle|bring out|get out +winless|1 +(adj)|unsuccessful +winnebago|2 +(noun)|Winnebago|Sioux|Siouan +(noun)|Winnebago|Siouan|Siouan language +winner|3 +(noun)|victor|contestant +(noun)|gambler +(noun)|achiever|success|succeeder|person|individual|someone|somebody|mortal|human|soul +winner's circle|1 +(noun)|area|country +winning|4 +(adj)|successful +(adj)|victorious|successful +(adj)|fetching|taking|attractive +(noun)|success +winning post|1 +(noun)|post|stake +winning streak|1 +(noun)|streak|run +winnings|2 +(noun)|win|profits|financial gain +(noun)|winning|success +winnipeg|2 +(noun)|Winnipeg|provincial capital +(noun)|Winnipeg|Lake Winnipeg|lake +winnow|5 +(noun)|winnowing|sifting|separation +(verb)|fan|sift|sieve|strain +(verb)|fan +(verb)|process|treat +(verb)|remove|take|take away|withdraw +winnowing|1 +(noun)|winnow|sifting|separation +winslow|1 +(noun)|Winslow|Edward Winslow|settler|colonist +winslow homer|1 +(noun)|Homer|Winslow Homer|painter +winsome|1 +(adj)|attractive +winsomely|1 +(adv)|engagingly +winsomeness|1 +(noun)|appeal|appealingness|charm +winston-salem|1 +(noun)|Winston-Salem|city|metropolis|urban center +winston churchill|1 +(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman|solon|national leader|writer|author +winston s. churchill|1 +(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman|solon|national leader|writer|author +winter|2 +(noun)|wintertime|season|time of year +(verb)|spend|pass +winter's bark|2 +(noun)|bark +(noun)|winter's bark tree|Drimys winteri|tree +winter's bark family|1 +(noun)|Winteraceae|family Winteraceae|magnoliid dicot family +winter's bark tree|1 +(noun)|winter's bark|Drimys winteri|tree +winter aconite|1 +(noun)|Eranthis hyemalis|herb|herbaceous plant +winter cherry|2 +(noun)|Chinese lantern plant|bladder cherry|Physalis alkekengi|ground cherry|husk tomato +(noun)|Jerusalem cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade +winter cress|2 +(noun)|St. Barbara's herb|scurvy grass|cress|cress plant +(noun)|cress +winter crookneck|1 +(noun)|winter crookneck squash|Cucurbita moschata|winter squash|winter squash plant +winter crookneck squash|2 +(noun)|winter crookneck|Cucurbita moschata|winter squash|winter squash plant +(noun)|winter squash +winter currant|1 +(noun)|Ribes sanguineum|currant|currant bush +winter fern|1 +(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|Conium maculatum|poisonous plant +winter flounder|2 +(noun)|lemon sole|flounder +(noun)|blackback flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder|righteyed flounder +winter flowering cherry|1 +(noun)|rosebud cherry|Prunus subhirtella|flowering cherry +winter hazel|1 +(noun)|flowering hazel|shrub|bush +winter heath|1 +(noun)|spring heath|Erica carnea|erica|true heath +winter heliotrope|1 +(noun)|sweet coltsfoot|Petasites fragrans|herb|herbaceous plant +winter jasmine|1 +(noun)|Jasminum nudiflorum|jasmine +winter melon|2 +(noun)|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +(noun)|muskmelon|sweet melon +winter melon vine|1 +(noun)|winter melon|Persian melon|honeydew melon|Cucumis melo inodorus|sweet melon|muskmelon|sweet melon vine|Cucumis melo +winter mushroom|1 +(noun)|Flammulina velutipes|agaric +winter olympic games|1 +(noun)|Winter Olympic Games|Winter Olympics|Olympic Games|Olympics|Olympiad +winter olympics|1 +(noun)|Winter Olympic Games|Winter Olympics|Olympic Games|Olympics|Olympiad +winter purslane|1 +(noun)|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce +winter rose|1 +(noun)|Christmas rose|black hellebore|Helleborus niger|hellebore +winter savory|2 +(noun)|Satureja montana|Satureia montana|savory +(noun)|winter savoury|savory|savoury +winter savoury|1 +(noun)|winter savory|savory|savoury +winter solstice|1 +(noun)|solstice +winter squash|2 +(noun)|winter squash plant|squash|squash vine +(noun)|squash +winter squash plant|1 +(noun)|winter squash|squash|squash vine +winter sweet|4 +(noun)|dittany of crete|cretan dittany|crete dittany|hop marjoram|Origanum dictamnus|origanum +(noun)|oregano|marjoram|pot marjoram|wild marjoram|Origanum vulgare|origanum +(noun)|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub|bush +(noun)|Japan allspice|Japanese allspice|Chimonanthus praecox|shrub|bush +winter urn|1 +(noun)|Sarcosomataceae +winter wren|1 +(noun)|Troglodytes troglodytes|wren|jenny wren +wintera|1 +(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus +wintera colorata|1 +(noun)|pepper shrub|Pseudowintera colorata|Wintera colorata|shrub|bush +winteraceae|1 +(noun)|Winteraceae|family Winteraceae|winter's bark family|magnoliid dicot family +winterberry|1 +(noun)|bearberry|possum haw|Ilex decidua|holly +wintergreen|3 +(noun)|pyrola|herb|herbaceous plant +(noun)|teaberry|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet +(noun)|boxberry|checkerberry|teaberry|spiceberry|berry +wintergreen family|1 +(noun)|Pyrolaceae|family Pyrolaceae|dilleniid dicot family +wintergreen oil|1 +(noun)|oil of wintergreen|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning +winterise|1 +(verb)|winterize|fix|prepare|set up|ready|gear up|set +winterize|1 +(verb)|winterise|fix|prepare|set up|ready|gear up|set +wintertime|1 +(noun)|winter|season|time of year +wintery|1 +(adj)|wintry |brumal|hibernal|hiemal +wintry|2 +(adj)|wintry |wintery|brumal|hibernal|hiemal +(adj)|frigid|frosty|frozen|glacial|icy|cold +wintun|2 +(noun)|Wintun|Penutian +(noun)|Wintun|Copehan +winy|1 +(adj)|winey|tasteful +wipe|2 +(noun)|rub|contact +(verb)|pass over|rub|wipe off|wipe away|wipe off|wipe out +wipe away|1 +(verb)|wipe off|remove|take|take away|withdraw +wipe off|2 +(verb)|wipe away|remove|take|take away|withdraw +(verb)|erase|rub out|score out|efface|delete|cancel +wipe out|6 +(verb)|consume|eat up|use up|eat|deplete|exhaust|run through|spend|expend|drop +(verb)|eliminate|annihilate|extinguish|eradicate|decimate|carry off|kill +(verb)|sweep away|destroy|destruct +(verb)|erase|kill +(verb)|kill|obliterate|take away|take out +(verb)|cancel out|eliminate|get rid of|do away with +wipe up|1 +(verb)|mop up|mop|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|take up +wiped out|2 +(adj)|annihilated|exterminated|destroyed +(adj)|broken|impoverished|destroyed +wipeout|2 +(noun)|destruction|demolition|ending|conclusion|finish +(noun)|spill|tumble|fall +wiper|3 +(noun)|worker +(noun)|wiper arm|contact arm|contact|tangency +(noun)|windshield wiper|windscreen wiper|wiper blade|mechanical device +wiper arm|1 +(noun)|wiper|contact arm|contact|tangency +wiper blade|1 +(noun)|windshield wiper|windscreen wiper|wiper|mechanical device +wiper motor|1 +(noun)|electric motor +wire|9 +(noun)|ligament +(noun)|conducting wire|conductor +(noun)|finishing line|finish line +(noun)|telegram|message +(verb)|equip|fit|fit out|outfit +(verb)|cable|telegraph|telecommunicate +(verb)|fasten|fix|secure +(verb)|string|thread|draw +(verb)|electrify|adapt|accommodate +wire-haired|1 +(adj)|hairy |hirsute +wire-haired fox terrier|1 +(noun)|fox terrier +wire-haired pointing griffon|1 +(noun)|griffon|sporting dog|gun dog +wire-haired terrier|1 +(noun)|wirehair|wirehaired terrier|terrier +wire-puller|1 +(noun)|hustler|wheeler dealer|operator +wire cloth|1 +(noun)|fabric|cloth|material|textile +wire cutter|1 +(noun)|edge tool +wire gage|1 +(noun)|wire gauge|gauge|gage +wire gauge|1 +(noun)|wire gage|gauge|gage +wire glass|1 +(noun)|glass +wire grass|2 +(noun)|broom beard grass|prairie grass|Andropogon scoparius|Schizachyrium scoparium|broom grass +(noun)|yardgrass|yard grass|goose grass|Eleusine indica|millet +wire matrix printer|1 +(noun)|wire printer|stylus printer|dot matrix printer|matrix printer|dot printer|impact printer +wire printer|1 +(noun)|wire matrix printer|stylus printer|dot matrix printer|matrix printer|dot printer|impact printer +wire recorder|1 +(noun)|magnetic recorder +wire service|1 +(noun)|news agency|press agency|press association|news organization|news organisation|agency +wire wool|1 +(noun)|steel wool|abrasive|abradant|abrasive material +wired|3 +(adj)|wired |bugged|connected|stiffened +(adj)|pumped-up|pumped up|pumped|tense +(adj)|bound +wirehair|1 +(noun)|wirehaired terrier|wire-haired terrier|terrier +wirehaired terrier|1 +(noun)|wirehair|wire-haired terrier|terrier +wireless|5 +(adj)|wireless +(noun)|radio|radiocommunication|broadcasting +(noun)|telecommunication|telecom +(noun)|radio receiver|receiving set|radio set|radio|tuner|receiver|receiving system +(noun)|radio|communication system +wireless fidelity|1 +(noun)|wireless local area network|WLAN|WiFi|local area network|LAN +wireless local area network|1 +(noun)|WLAN|wireless fidelity|WiFi|local area network|LAN +wireless telegraph|1 +(noun)|radiotelegraph|radiotelegraphy|wireless telegraphy|radio|wireless +wireless telegraphy|2 +(noun)|radiotelegraph|radiotelegraphy|wireless +(noun)|radiotelegraph|radiotelegraphy|wireless telegraph|radio|wireless +wireless telephone|2 +(noun)|radiotelephone|radiotelephony|wireless +(noun)|radiotelephone|radiophone|telephone|phone|telephone set +wireman|1 +(noun)|wirer|skilled worker|trained worker +wirer|2 +(noun)|communicator +(noun)|wireman|skilled worker|trained worker +wiretap|2 +(noun)|tap|investigation|investigating +(verb)|tap|intercept|bug|listen in|eavesdrop +wiretapper|1 +(noun)|tapper|phone tapper|eavesdropper +wirework|1 +(noun)|grillwork|net|network|mesh|meshing|meshwork +wireworm|1 +(noun)|larva +wiring|2 +(noun)|circuit|electrical circuit|electric circuit +(noun)|manual labor|manual labour +wiring diagram|1 +(noun)|schematic|schematic drawing +wiry|1 +(adj)|stringy|thin |lean +wisconsin|2 +(noun)|Wisconsin|Wisconsin River|river +(noun)|Wisconsin|Badger State|WI|American state +wisconsin river|1 +(noun)|Wisconsin|Wisconsin River|river +wisconsin weeping willow|1 +(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow|willow tree +wisconsinite|1 +(noun)|Wisconsinite|American +wisdom|5 +(noun)|content|cognitive content|mental object +(noun)|wiseness|trait +(noun)|sapience|know-how +(noun)|wiseness|soundness|good|goodness +(noun)|Wisdom of Solomon|Wisdom|book +wisdom book|1 +(noun)|sapiential book|wisdom literature|sacred text|sacred writing|religious writing|religious text +wisdom literature|1 +(noun)|sapiential book|wisdom book|sacred text|sacred writing|religious writing|religious text +wisdom of jesus the son of sirach|1 +(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book +wisdom of solomon|1 +(noun)|Wisdom of Solomon|Wisdom|book +wisdom tooth|1 +(noun)|molar|grinder +wise|8 +(adj)|wise |all-knowing|omniscient|owlish|sage|sapiential|perspicacious|sagacious|sapient|advisable|well-advised|advised|politic|prudent +(adj)|judicious|sensible|prudent +(adj)|knowing|wise to|informed +(adj)|diplomatic|statesmanlike |statesmanly +(adj)|considered|well-advised |advised +(noun)|manner|mode|style|way|fashion +(noun)|Wise|Stephen Samuel Wise|religious leader +(noun)|Wise|Isaac Mayer Wise|religious leader +wise guy|1 +(noun)|smart aleck|wiseacre|wisenheimer|weisenheimer|upstart +wise man|1 +(noun)|mentor|intellectual|intellect +wise men|2 +(noun)|Wise Men|Magi|collection|aggregation|accumulation|assemblage +(noun)|mentor|wise man|intellectual|intellect +wise to|1 +(adj)|knowing|wise|informed +wise up|2 +(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover|see +(verb)|inform +wiseacre|1 +(noun)|wise guy|smart aleck|wisenheimer|weisenheimer|upstart +wisecrack|2 +(noun)|crack|sally|quip|remark|comment +(verb)|comment|notice|remark|point out +wisely|1 +(adv)|sagely|with wisdom|showing wisdom +wiseness|2 +(noun)|wisdom|soundness|good|goodness +(noun)|wisdom|trait +wisenheimer|1 +(noun)|wise guy|smart aleck|wiseacre|weisenheimer|upstart +wisent|1 +(noun)|aurochs|Bison bonasus|bison +wish|11 +(noun)|wishing|want|desire +(noun)|indirect request|request|asking +(noun)|regard|compliments|greeting|salutation +(noun)|preference|druthers +(verb)|desire|want +(verb)|care|like|desire|want +(verb)|will +(verb)|express|verbalize|verbalise|utter|give tongue to +(verb)|wish well|desire|want +(verb)|order +(verb)|bid|greet|recognize|recognise +wish-wash|2 +(noun)|beverage|drink|drinkable|potable +(noun)|folderol|rubbish|tripe|trumpery|trash|applesauce|codswallop|drivel|garbage +wish list|1 +(noun)|list|listing +wish well|1 +(verb)|wish|desire|want +wishbone|1 +(noun)|wishing bone|furcula +wished-for|1 +(adj)|longed-for|yearned-for|wanted +wishful|1 +(adj)|aspirant|aspiring|would-be|hopeful +wishful thinker|1 +(noun)|escapist|dreamer|daydreamer|woolgatherer +wishful thinking|1 +(noun)|illusion|fantasy|phantasy|fancy +wishfulness|1 +(noun)|longing|yearning +wishing|1 +(noun)|wish|want|desire +wishing bone|1 +(noun)|wishbone|furcula +wishing cap|1 +(noun)|cap +wishy-washy|1 +(adj)|namby-pamby|spineless|weak +wisp|4 +(noun)|tuft|tussock +(noun)|small person +(noun)|package|bundle|packet|parcel +(noun)|flock +wisplike|1 +(adj)|wispy|thin |lean +wispy|2 +(adj)|wisplike|thin |lean +(adj)|dim|faint|shadowy|vague|indistinct +wistaria|1 +(noun)|wisteria|vine +wister|1 +(noun)|Wister|Owen Wister|writer|author +wisteria|1 +(noun)|wistaria|vine +wisteria chinensis|1 +(noun)|Chinese wistaria|Wisteria chinensis|wisteria|wistaria +wisteria floribunda|1 +(noun)|Japanese wistaria|Wisteria floribunda|wisteria|wistaria +wisteria frutescens|1 +(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria|wistaria +wisteria venusta|1 +(noun)|silky wisteria|Wisteria venusta|wisteria|wistaria +wistful|2 +(adj)|yearning|sad +(adj)|pensive|sad +wistfulness|1 +(noun)|longing|yearning +wit|3 +(noun)|humor|humour|witticism|wittiness|message|content|subject matter|substance +(noun)|brain|brainpower|learning ability|mental capacity|mentality|intelligence +(noun)|wag|card|humorist|humourist +witch|4 +(noun)|enchantress|occultist +(noun)|imaginary being|imaginary creature +(noun)|hag|beldam|beldame|crone|old woman +(verb)|hex|bewitch|glamour|enchant|jinx|charm|becharm +witch's brew|1 +(noun)|witches' brew|witches' broth|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +witch-hazel family|1 +(noun)|Hamamelidaceae|family Hamamelidaceae|hamamelid dicot family +witch-hunt|1 +(noun)|harassment|molestation +witch-hunter|1 +(noun)|tormentor|tormenter|persecutor +witch alder|1 +(noun)|fothergilla|shrub|bush +witch broom|1 +(noun)|witches' broom|hexenbesen|staghead|tuft|tussock +witch doctor|1 +(noun)|sorcerer|magician|wizard|necromancer +witch elm|1 +(noun)|wych elm|Ulmus glabra|elm|elm tree +witch grass|3 +(noun)|witchgrass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass +(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witchgrass|Agropyron repens|wheatgrass|wheat-grass +(noun)| +witch hazel|2 +(noun)|wych hazel|shrub|bush +(noun)|wych hazel|lotion|application +witchcraft|1 +(noun)|witchery|sorcery|black magic|black art|necromancy +witchery|1 +(noun)|witchcraft|sorcery|black magic|black art|necromancy +witches' brew|1 +(noun)|witches' broth|witch's brew|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +witches' broom|1 +(noun)|witch broom|hexenbesen|staghead|tuft|tussock +witches' broth|1 +(noun)|witches' brew|witch's brew|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley +witches' butter|1 +(noun)|Tremella lutescens|jelly fungus +witches' sabbath|1 +(noun)|sabbat|witches' Sabbath|assembly +witchgrass|2 +(noun)|witch grass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass +(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witch grass|Agropyron repens|wheatgrass|wheat-grass +witching|1 +(adj)|charming|magic|magical|sorcerous|wizard|wizardly|supernatural +witchlike|1 +(adj)|supernatural +with-it|2 +(adj)|latest|last|newest|up-to-date|cutting-edge|fashionable |stylish +(adj)|streetwise|street smart|smart +with a rush|1 +(adv)|lickety split|lickety cut|at full speed +with adroitness|1 +(adv)|adroitly +with all respect|1 +(adv)|respectfully +with ambition|1 +(adv)|ambitiously|determinedly +with an editorial|1 +(adv)|editorially|in an editorial +with approval|1 +(adv)|approvingly +with attention|1 +(adv)|attentively|paying attention +with authority|1 +(adv)|authoritatively|magisterially +with bitterness|1 +(adv)|bitterly +with boldness|1 +(adv)|boldly +with chemicals|1 +(adv)|chemically +with child|1 +(adj)|big|enceinte|expectant|gravid|great|large|heavy|pregnant +with compassion|1 +(adv)|pityingly|compassionately|with pity +with competence|1 +(adv)|competently|aptly|ably|capably +with conceit|1 +(adv)|conceitedly|self-conceitedly +with concern|1 +(adv)|concernedly +with confidence|1 +(adv)|confidently +with consideration|1 +(adv)|considerately +with convulsions|1 +(adv)|convulsively +with courtesy|1 +(adv)|politely|courteously|in a well mannered way|with politeness +with cynicism|1 +(adv)|cynically +with determination|1 +(adv)|determinedly|unfalteringly|unshakably +with diplomacy|1 +(adv)|diplomatically +with efficiency|1 +(adv)|efficiently|expeditiously +with empathy|1 +(adv)|sympathetically|empathetically|with sympathy +with excitement|1 +(adv)|excitedly +with expertise|1 +(adv)|expertly|like an expert +with formality|1 +(adv)|formally +with full force|1 +(adv)|amain +with great care|1 +(adv)|just so +with greater reason|1 +(adv)|a fortiori|with more reason +with happiness|1 +(adv)|happily|merrily|mirthfully|gayly|blithely|jubilantly +with hostility|1 +(adv)|belligerently|hostilely +with humor|1 +(adv)|humorously|with humour +with humour|1 +(adv)|humorously|with humor +with impatience|1 +(adv)|impatiently +with inspiration|1 +(adv)|inspirationally +with kid gloves|1 +(adv)|cautiously|carefully +with longing|1 +(adv)|longingly|yearningly +with love|1 +(adv)|amorously +with many interruptions|1 +(adv)|by fits and starts +with mercy|1 +(adv)|mercifully|showing mercy +with moderation|1 +(adv)|moderately +with modesty|1 +(adv)|modestly +with more reason|1 +(adv)|a fortiori|with greater reason +with much to-do|1 +(adv)|in a big way +with nostalgia|1 +(adv)|nostalgically +with ostentation|1 +(adv)|ostentatiously|showily +with patience|1 +(adv)|patiently +with pity|1 +(adv)|pityingly|compassionately|with compassion +with politeness|1 +(adv)|politely|courteously|with courtesy|in a well mannered way +with pride|1 +(adv)|proudly +with reason|1 +(adv)|justifiably +with specific intentions|1 +(adv)|expressly +with speculation|1 +(adv)|speculatively +with spite|1 +(adv)|spitefully +with success|1 +(adv)|successfully +with sympathy|1 +(adv)|sympathetically|empathetically|with empathy +with that|1 +(adv)|thereupon|therewith +with the wind|1 +(adv)|downwind +with validity|1 +(adv)|validly +with wisdom|1 +(adv)|wisely|sagely|showing wisdom +withal|1 +(adv)|however|nevertheless|still|yet|all the same|even so|nonetheless|notwithstanding +withdraw|12 +(verb)|retreat|pull away|draw back|recede|pull back|retire|move back|travel|go|move|locomote +(verb)|retire|discontinue|stop|cease|give up|quit|lay off +(verb)|disengage|let go of|let go|release|relinquish +(verb)|recall|call in|call back|take +(verb)|swallow|take back|unsay|renounce|repudiate +(verb)|seclude|sequester|sequestrate|isolate|insulate +(verb)|remove|take|take away +(verb)|adjourn|retire|close|fold|shut down|close down +(verb)|bow out|retire +(verb)|draw|take out|draw off|remove|take|take away +(verb)|retire|tire|pall|weary|fatigue|jade +(verb)|retreat|pull back|back out|back away|crawfish|crawfish out|pull in one's horns +withdrawal|6 +(noun)|backdown|climb-down|retraction|abjuration|recantation +(noun)|removal|remotion +(noun)|departure|going|going away|leaving +(noun)|detachment|indifference +(noun)|secession|separation +(noun)|drug withdrawal|termination|ending|conclusion +withdrawal method|1 +(noun)|coitus interruptus|pulling out|onanism|birth control|birth prevention|family planning +withdrawal symptom|1 +(noun)|symptom +withdrawer|6 +(noun)|authority +(noun)|individualist +(noun)|drug addict|junkie|junky +(noun)|contestant +(noun)|student|pupil|educatee +(noun)|depositor +withdrawing|1 +(adj)|retreating +withdrawing room|1 +(noun)|drawing room|reception room +withdrawn|2 +(adj)|recluse|reclusive|unsocial +(adj)|indrawn|reserved +withdrawnness|1 +(noun)|aloofness|remoteness|standoffishness|unsociability|unsociableness +withe|2 +(noun)|band +(noun)|withy|branchlet|twig|sprig +wither|2 +(verb)|shrivel|shrivel up|shrink|decrease|diminish|lessen|fall +(verb)|fade|disappear|vanish|go away +withered|2 +(adj)|shriveled|shrivelled|shrunken|wizen|wizened|thin |lean +(adj)|dried-up|sere|sear|shriveled|shrivelled|dry +withering|3 +(adj)|annihilative|annihilating|devastating|destructive +(adj)|annihilating|devastating|disrespectful +(noun)|atrophy|weakening +withers|2 +(noun)|sensibility +(noun)|body part +witherspoon|1 +(noun)|Witherspoon|John Witherspoon|American Revolutionary leader|educator|pedagogue +withhold|2 +(verb)|keep back|deny|refuse +(verb)|deduct|recoup|keep|hold on +withholder|2 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|restrainer|controller +withholding|3 +(noun)|subtraction|deduction +(noun)|withholding tax|income tax +(noun)|retention|keeping|holding +withholding tax|1 +(noun)|withholding|income tax +within|1 +(adv)|inside +within reason|1 +(adv)|reasonably|moderately|somewhat|fairly|middling|passably +without a stitch|1 +(adj)|unclothed +without aim|1 +(adv)|aimlessly +without ambiguity|1 +(adv)|unambiguously|unequivocally +without becoming upset|1 +(adv)|in stride|in good spirits +without bias|1 +(adv)|disinterestedly +without bloodshed|1 +(adv)|bloodlessly +without checking|1 +(adv)|on faith +without concern|1 +(adv)|without fear|without worrying +without consideration|1 +(adv)|inconsiderately +without delay|1 +(adv)|promptly|readily|pronto +without diplomacy|1 +(adv)|undiplomatically +without doubt|3 +(adv)|all right|alright +(adv)|to be sure|no doubt +(adv)|undoubtedly|doubtless|beyond question|beyond any doubt +without emotion|2 +(adv)|unemotionally +(adv)|coldly|in cold blood +without end|1 +(adv)|endlessly +without expression|1 +(adv)|blankly +without favoring one party|1 +(adv)|fairly|fair|without favouring one party|evenhandedly +without favouring one party|1 +(adv)|fairly|fair|without favoring one party|evenhandedly +without fear|1 +(adv)|without worrying|without concern +without formality|1 +(adv)|informally +without graciousness|1 +(adv)|ungraciously|ungracefully|gracelessly|woodenly +without humor|1 +(adv)|humorlessly|humourlessly|without humour +without humour|1 +(adv)|humorlessly|humourlessly|without humor +without moderation|1 +(adv)|immoderately +without modesty|1 +(adv)|immodestly +without questioning|1 +(adv)|hook line and sinker +without reasoning|1 +(adv)|irrationally +without showing responsibility|1 +(adv)|irresponsibly +without stopping|1 +(adv)|no end +without sympathy|1 +(adv)|unsympathetically +without thinking|1 +(adv)|stupidly|doltishly +without worrying|1 +(adv)|without fear|without concern +withstand|2 +(verb)|defy|hold|hold up|resist|hold out|stand firm +(verb)|resist|hold out|stand firm|fight|oppose|fight back|fight down|defend +withstander|2 +(noun)|adversary|antagonist|opponent|opposer|resister +(noun)|defender|combatant|battler|belligerent|fighter|scrapper +withy|1 +(noun)|withe|branchlet|twig|sprig +witless|1 +(adj)|nitwitted|senseless|soft-witted|stupid +witloof|2 +(noun)|endive|Cichorium endivia|herb|herbaceous plant +(noun)|Belgian endive|French endive|chicory escarole|endive|escarole +witness|7 +(noun)|witnesser|informant|perceiver|observer|beholder|speaker|talker|utterer|verbalizer|verbaliser +(noun)|spectator|viewer|watcher|looker|perceiver|observer|beholder +(noun)|testimony +(noun)|attestant|attestor|attestator|signer|signatory +(noun)|person|individual|someone|somebody|mortal|human|soul +(verb)|watch +(verb)|find|see|experience|undergo|see|go through +witness box|1 +(noun)|witness stand|box +witness stand|1 +(noun)|witness box|box +witnesser|1 +(noun)|witness|informant|perceiver|observer|beholder|speaker|talker|utterer|verbalizer|verbaliser +witold gombrowicz|1 +(noun)|Gombrowicz|Witold Gombrowicz|writer|author +wits|4 +(noun)|marbles|intelligence +(noun)|wit|humor|humour|witticism|wittiness|message|content|subject matter|substance +(noun)|brain|brainpower|learning ability|mental capacity|mentality|wit|intelligence +(noun)|wag|wit|card|humorist|humourist +wittgenstein|1 +(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher +wittgensteinian|1 +(adj)|Wittgensteinian|philosopher +witticism|1 +(noun)|wit|humor|humour|wittiness|message|content|subject matter|substance +wittiness|1 +(noun)|wit|humor|humour|witticism|message|content|subject matter|substance +witting|2 +(adj)|witting |aware +(adj)|conscious|intended +wittingly|1 +(adv)|knowingly +witty|1 +(adj)|humorous |humourous +witwatersrand|1 +(noun)|Witwatersrand|Rand|Reef|region|part +wive|3 +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|espouse +(verb)|supply|provide|render|furnish +wivern|1 +(noun)|wyvern|dragon|firedrake +wiz|1 +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|expert +wizard|3 +(adj)|charming|magic|magical|sorcerous|witching|wizardly|supernatural +(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wiz|expert +(noun)|sorcerer|magician|necromancer|occultist +wizardly|1 +(adj)|charming|magic|magical|sorcerous|witching|wizard|supernatural +wizardry|1 +(noun)|genius|creativity|creativeness|creative thinking +wizen|1 +(adj)|shriveled|shrivelled|shrunken|withered|wizened|thin |lean +wizened|1 +(adj)|shriveled|shrivelled|shrunken|withered|wizen|thin |lean +wlan|1 +(noun)|wireless local area network|WLAN|wireless fidelity|WiFi|local area network|LAN +wmd|1 +(noun)|weapon of mass destruction|WMD|W.M.D.|weapon|arm|weapon system +wmo|1 +(noun)|World Meteorological Organization|WMO|United Nations agency|UN agency +wnw|1 +(noun)|west northwest|WNW|compass point|point +woad|2 +(noun)|dye|dyestuff +(noun)|herb|herbaceous plant +woadwaxen|1 +(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|Genista tinctoria|broom +wobble|4 +(noun)|movement|motion +(verb)|coggle|move +(verb)|careen|shift|tilt|move +(verb)|shimmy|vibrate +wobbler|1 +(noun)|thing +wobbling|1 +(adj)|unsteady +wobbly|2 +(adj)|rickety|shaky|wonky|unstable +(noun)|Wobbly|radical +wodan|1 +(noun)|Woden|Wodan|Anglo-Saxon deity +wodehouse|1 +(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer|author +woden|1 +(noun)|Woden|Wodan|Anglo-Saxon deity +woe|2 +(noun)|suffering|misery|wretchedness +(noun)|woefulness|mournfulness|sorrowfulness|ruthfulness +woebegone|2 +(adj)|creaky|decrepit|flea-bitten|run-down|worn +(adj)|woeful|sorrowful +woeful|2 +(adj)|woebegone|sorrowful +(adj)|deplorable|execrable|miserable|wretched|inferior +woefully|1 +(adv)|deplorably|lamentably|sadly +woefulness|1 +(noun)|woe|mournfulness|sorrowfulness|ruthfulness +wog|1 +(noun)|person of color|person of colour +wok|1 +(noun)|pan|cooking pan +wold|1 +(noun)|country|rural area +wolf|6 +(noun)|canine|canid +(noun)|Wolf|Hugo Wolf|composer +(noun)|Wolf|Friedrich August Wolf|classicist|classical scholar +(noun)|woman chaser|skirt chaser|masher|womanizer|womaniser|philanderer +(noun)|beast|savage|brute|wildcat|attacker|aggressor|assailant|assaulter +(verb)|wolf down|eat +wolf's bane|1 +(noun)|wolfsbane|wolfbane|Aconitum lycoctonum|aconite +wolf's milk|1 +(noun)|leafy spurge|Euphorbia esula|spurge +wolf-whistle|1 +(verb)|utter|emit|let out|let loose +wolf bean|1 +(noun)|white lupine|field lupine|Egyptian lupine|Lupinus albus|lupine|lupin +wolf boy|1 +(noun)|wild man|feral man +wolf cub|1 +(noun)|wolf pup|young mammal +wolf down|1 +(verb)|wolf|eat +wolf fish|2 +(noun)|wolffish|catfish|blennioid fish|blennioid +(noun)|lancetfish|lancet fish|wolffish|soft-finned fish|malacopterygian +wolf pack|2 +(noun)|fleet +(noun)|pack +wolf pup|1 +(noun)|wolf cub|young mammal +wolf spider|1 +(noun)|hunting spider|spider +wolfbane|1 +(noun)|wolfsbane|wolf's bane|Aconitum lycoctonum|aconite +wolfe|2 +(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer|author +(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer|author +wolff|1 +(noun)|Wolff|Kaspar Friedrich Wolff|anatomist +wolffia|1 +(noun)|Wolffia|genus Wolffia|monocot genus|liliopsid genus +wolffia columbiana|1 +(noun)|common wolffia|Wolffia columbiana|watermeal +wolffiella|1 +(noun)|Wolffiella|genus Wolffiella|monocot genus|liliopsid genus +wolffiella gladiata|1 +(noun)|mud midget|bogmat|Wolffiella gladiata|duckweed +wolffish|2 +(noun)|wolf fish|catfish|blennioid fish|blennioid +(noun)|lancetfish|lancet fish|soft-finned fish|malacopterygian +wolfgang amadeus mozart|1 +(noun)|Mozart|Wolfgang Amadeus Mozart|composer +wolfgang pauli|1 +(noun)|Pauli|Wolfgang Pauli|nuclear physicist +wolfhound|1 +(noun)|hound|hound dog +wolfish|2 +(adj)|wolflike|canine|canid +(adj)|edacious|esurient|rapacious|ravening|ravenous|voracious|gluttonous +wolflike|1 +(adj)|wolfish|canine|canid +wolfman|1 +(noun)|werewolf|lycanthrope|mythical monster|mythical creature +wolfram|1 +(noun)|tungsten|W|atomic number 74|metallic element|metal +wolfram steel|1 +(noun)|tungsten steel|alloy steel +wolframite|1 +(noun)|iron manganese tungsten|mineral +wolfsbane|1 +(noun)|wolfbane|wolf's bane|Aconitum lycoctonum|aconite +wollaston|1 +(noun)|Wollaston|William Hyde Wollaston|chemist|physicist +wollaston prism|1 +(noun)|Rochon prism|Wollaston prism|optical device +wollastonite|1 +(noun)|mineral +wollemi pine|1 +(noun)|Wollemi pine|conifer|coniferous tree +wollstonecraft|1 +(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer|author|feminist|women's rightist|women's liberationist|libber +wolof|1 +(noun)|Wolof|West African +wolstonian glaciation|1 +(noun)|Wolstonian glaciation|glaciation +wolverine|3 +(noun)|Michigander|Wolverine|American +(noun)|glutton|Gulo gulo|musteline mammal|mustelid|musteline +(noun)|carcajou|skunk bear|Gulo luscus|musteline mammal|mustelid|musteline +wolverine state|1 +(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state +woman|4 +(noun)|adult female|female|female person +(noun)|womanhood|class|social class|socio-economic class +(noun)|charwoman|char|cleaning woman|cleaning lady|cleaner +(noun)|female|female person +woman's body|1 +(noun)|adult female body|adult body|female body +woman's doctor|1 +(noun)|gynecologist|gynaecologist|specialist|medical specialist +woman's hat|1 +(noun)|millinery|hat|chapeau|lid +woman-worship|1 +(noun)|gyneolatry|gynaeolatry|idolatry|devotion|veneration|cultism +woman chaser|1 +(noun)|wolf|skirt chaser|masher|womanizer|womaniser|philanderer +woman hater|1 +(noun)|misogynist|misanthrope|misanthropist +woman of the house|1 +(noun)|housewife|homemaker|lady of the house|wife|married woman +woman of the street|1 +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman|adult female +womanhood|3 +(noun)|muliebrity|adulthood +(noun)|woman|class|social class|socio-economic class +(noun)|position|post|berth|office|spot|billet|place|situation +womanise|1 +(verb)|philander|womanize|interact +womaniser|1 +(noun)|womanizer|philanderer|libertine|debauchee|rounder|man|adult male +womanish|1 +(adj)|unmanly |unmanful|unmanlike +womanishness|1 +(noun)|effeminacy|effeminateness|sissiness|unmanliness|femininity|muliebrity +womanize|2 +(verb)|philander|womanise|interact +(verb)|feminize|feminise|effeminize|erreminise|change|alter|modify +womanizer|1 +(noun)|womaniser|philanderer|libertine|debauchee|rounder|man|adult male +womankind|1 +(noun)|people +womanlike|2 +(adj)|womanly |feminine +(noun)|womanliness|femininity|muliebrity +womanliness|1 +(noun)|womanlike|femininity|muliebrity +womanly|1 +(adj)|womanly |feminine|matronly|womanlike +womb|1 +(noun)|uterus|female internal reproductive organ +womb-to-tomb|1 +(adj)|lifelong|long +wombat|1 +(noun)|marsupial|pouched mammal +women's lib|1 +(noun)|feminist movement|feminism|women's liberation movement|campaign|cause|crusade|drive|movement|effort +women's liberation movement|1 +(noun)|feminist movement|feminism|women's lib|campaign|cause|crusade|drive|movement|effort +women's liberationist|1 +(noun)|feminist|women's rightist|libber|reformer|reformist|crusader|meliorist +women's rightist|1 +(noun)|feminist|women's liberationist|libber|reformer|reformist|crusader|meliorist +won|3 +(adj)|won +(noun)|South Korean won|South Korean monetary unit +(noun)|North Korean won|North Korean monetary unit +won-lost record|1 +(noun)|record|record book|book +won ton|3 +(noun)|wonton|dumpling|dumplings +(noun)|wonton|wonton soup|soup +(noun)| +wonder|6 +(noun)|wonderment|admiration|astonishment|amazement +(noun)|marvel|happening|occurrence|natural event +(noun)|curiosity|cognitive state|state of mind +(verb)|inquire|enquire|question|query +(verb)|question|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate +(verb)|marvel|react|respond +wonder-struck|1 +(adj)|affected +wonder bean|1 +(noun)|jack bean|giant stock bean|Canavalia ensiformis|vine +wonder boy|1 +(noun)|golden boy|man|adult male +wonder child|1 +(noun)|child prodigy|infant prodigy|prodigy|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +wonder flower|1 +(noun)|chincherinchee|Ornithogalum thyrsoides|star-of-Bethlehem +wonder woman|1 +(noun)|woman|adult female +wonderberry|1 +(noun)|garden huckleberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum +wonderer|2 +(noun)|intellectual|intellect +(noun)|marveller|admirer +wonderful|1 +(adj)|fantastic|howling|marvelous|marvellous|rattling|terrific|tremendous|wondrous|extraordinary +wonderfully|1 +(adv)|wondrous|wondrously|superbly|toppingly|marvellously|terrifically|marvelously +wonderfulness|1 +(noun)|admirability|admirableness|excellence +wondering|1 +(adj)|inquisitive|speculative|questioning|curious +wonderingly|1 +(adv)|questioningly +wonderland|2 +(noun)|land|dry land|earth|ground|solid ground|terra firma +(noun)|imaginary place|mythical place +wonderment|1 +(noun)|wonder|admiration|astonishment|amazement +wonderworking|1 +(adj)|extraordinary +wondrous|2 +(adj)|fantastic|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|extraordinary +(adv)|wonderfully|wondrously|superbly|toppingly|marvellously|terrifically|marvelously +wondrously|1 +(adv)|wonderfully|wondrous|superbly|toppingly|marvellously|terrifically|marvelously +wonk|1 +(noun)|swot|grind|nerd|dweeb|learner|scholar|assimilator +wonky|2 +(adj)|askew|awry|cockeyed|lopsided|skew-whiff|crooked +(adj)|rickety|shaky|wobbly|unstable +wont|2 +(noun)|habit|custom|tradition +(noun)|habit|use|custom|usage|usance +wont to|1 +(adj)|used to|accustomed +wonted|1 +(adj)|accustomed|customary|habitual|usual +wonton|2 +(noun)|won ton|dumpling|dumplings +(noun)|won ton|wonton soup|soup +wonton soup|1 +(noun)|won ton|wonton|soup +woo|2 +(verb)|court +(verb)|court|romance|solicit|act|move +wood|8 +(noun)|plant material +(noun)|forest|woods|vegetation|flora +(noun)|Wood|Natalie Wood|actress +(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor|music director|director +(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer|author +(noun)|Wood|Grant Wood|painter +(noun)|woodwind|woodwind instrument|wind instrument|wind +(noun)|golf club|golf-club|club +wood's alloy|1 +(noun)|Wood's metal|Wood's alloy|alloy|metal +wood's metal|1 +(noun)|Wood's metal|Wood's alloy|alloy|metal +wood-creeper|2 +(noun)|woodhewer|woodcreeper|tree creeper|tyrannid +(noun)| +wood-fern|3 +(noun)|wood fern|woodfern|fern +(noun)| +(noun)| +wood-frog|2 +(noun)|wood frog|Rana sylvatica|true frog|ranid +(noun)| +wood-rat|2 +(noun)|wood rat|rodent|gnawer|gnawing animal +(noun)| +wood-sorrel family|1 +(noun)|Oxalidaceae|family Oxalidaceae|rosid dicot family +wood alcohol|1 +(noun)|methanol|methyl alcohol|wood spirit|alcohol|fuel +wood anemone|2 +(noun)|snowdrop|Anemone quinquefolia|anemone|windflower +(noun)|Anemone nemorosa|anemone|windflower +wood ant|1 +(noun)|Formica rufa|ant|emmet|pismire +wood aster|1 +(noun)|aster +wood avens|1 +(noun)|herb bennet|cloveroot|clover-root|Geum urbanum|avens +wood block|1 +(noun)|woodcut|wood engraving|engraving +wood chisel|1 +(noun)|chisel +wood coal|2 +(noun)|lignite|brown coal|coal|humate +(noun)|charcoal|fuel|carbon|C|atomic number 6 +wood cudweed|1 +(noun)|chafeweed|Gnaphalium sylvaticum|cudweed +wood drake|1 +(noun)|wood duck|summer duck|wood widgeon|Aix sponsa +wood duck|1 +(noun)|summer duck|wood widgeon|Aix sponsa|duck +wood engraving|2 +(noun)|woodcut|engraving +(noun)|woodcut|wood block|engraving +wood fern|3 +(noun)|wood-fern|woodfern|fern +(noun)| +(noun)| +wood file|1 +(noun)|rasp|file +wood frog|2 +(noun)|wood-frog|Rana sylvatica|true frog|ranid +(noun)| +wood garlic|1 +(noun)|wild garlic|Ramsons|Allium ursinum|alliaceous plant +wood grain|2 +(noun)|woodgrain|grain +(noun)| +wood hen|1 +(noun)|weka|maori hen|rail +wood hoopoe|1 +(noun)|coraciiform bird +wood horsetail|1 +(noun)|Equisetum Sylvaticum|horsetail +wood hyacinth|1 +(noun)|wild hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant +wood ibis|2 +(noun)|wood stork|Ibis ibis|ibis +(noun)|wood stork|Mycteria americana|stork +wood laurel|2 +(noun)|spurge laurel|Daphne laureola|daphne +(noun)|mountain laurel|American laurel|calico bush|Kalmia latifolia|kalmia +wood lily|2 +(noun)|trillium|wake-robin|liliaceous plant +(noun)|Lilium philadelphicum|lily +wood meadowgrass|1 +(noun)|Poa nemoralis|Agrostis alba|meadowgrass|meadow grass +wood mint|1 +(noun)|herb|herbaceous plant +wood mouse|1 +(noun)|mouse +wood nettle|1 +(noun)|Laportea canadensis|nettle +wood nymph|1 +(noun)|dryad|nymph +wood pewee|1 +(noun)|pewee|peewee|peewit|pewit|Contopus virens|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird +wood pigeon|1 +(noun)|ringdove|cushat|Columba palumbus|pigeon +wood poppy|1 +(noun)|celandine poppy|Stylophorum diphyllum|poppy +wood pulp|1 +(noun)|pulp +wood pussy|1 +(noun)|skunk|polecat|musteline mammal|mustelid|musteline +wood rabbit|1 +(noun)|cottontail|cottontail rabbit|rabbit|coney|cony +wood rat|2 +(noun)|wood-rat|rodent|gnawer|gnawing animal +(noun)| +wood sage|2 +(noun)|Teucrium scorodonia|germander +(noun)|American germander|Teucrium canadense|germander +wood shavings|1 +(noun)|excelsior|packing material|packing|wadding +wood sorrel|1 +(noun)|oxalis|sorrel|herb|herbaceous plant +wood spirit|1 +(noun)|methanol|methyl alcohol|wood alcohol|alcohol|fuel +wood spurge|1 +(noun)|Euphorbia amygdaloides|spurge +wood stork|2 +(noun)|wood ibis|Ibis ibis|ibis +(noun)|wood ibis|Mycteria americana|stork +wood strawberry|1 +(noun)|wild strawberry|Fragaria vesca|strawberry +wood sugar|1 +(noun)|xylose|carbohydrate|saccharide|sugar +wood swallow|1 +(noun)|swallow shrike|oscine|oscine bird +wood tar|1 +(noun)|natural resin +wood thrush|1 +(noun)|Hylocichla mustelina|thrush +wood tick|1 +(noun)|American dog tick|Dermacentor variabilis|hard tick|ixodid +wood vinegar|1 +(noun)|pyroligneous acid|liquid +wood violet|2 +(noun)|hedge violet|Viola sylvatica|Viola reichenbachiana|violet +(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|Viola pedata|violet +wood vise|1 +(noun)|woodworking vise|shoulder vise|vise|bench vise +wood warbler|2 +(noun)|New World warbler|warbler +(noun)|Phylloscopus sibilatrix|Old World warbler|true warbler +wood widgeon|1 +(noun)|wood duck|summer duck|Aix sponsa|duck +woodbine|2 +(noun)|Virginia creeper|American ivy|Parthenocissus quinquefolia|vine +(noun)|Lonicera periclymenum|honeysuckle +woodborer|1 +(noun)|borer|invertebrate +woodbury|1 +(noun)|Woodbury|Helen Laura Sumner Woodbury|economist|economic expert +woodcarver|1 +(noun)|carver|woodworker|woodsman|woodman +woodcarving|1 +(noun)|carving +woodchuck|1 +(noun)|groundhog|Marmota monax|marmot +woodcock|1 +(noun)|shorebird|shore bird|limicoline bird +woodcock snipe|2 +(noun)|great snipe|Gallinago media|snipe +(noun)|American woodcock|Philohela minor|woodcock +woodcraft|2 +(noun)|experience +(noun)|craft|craftsmanship|workmanship +woodcreeper|1 +(noun)|woodhewer|wood-creeper|tree creeper|tyrannid +woodcut|2 +(noun)|wood engraving|engraving +(noun)|wood block|wood engraving|engraving +woodcutter|1 +(noun)|laborer|manual laborer|labourer|jack +wooded|1 +(adj)|wooded |arboraceous|arboreous|woodsy|woody|bosky|brushy|braky|brambly|forested|jungly|overgrown|rushy|scrabbly|scrubby|sylvan|silvan|timbered|woodsy|uncleared +wooden|2 +(adj)|woody +(adj)|awkward +wooden-headed|1 +(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|stupid +wooden horse|1 +(noun)|Trojan Horse|Wooden Horse|figure +wooden leg|1 +(noun)|peg|leg|pegleg|prosthesis|prosthetic device +wooden shoe|1 +(noun)|sabot|shoe +wooden spoon|2 +(noun)|booby prize +(noun)|spoon|woodenware +woodenly|1 +(adv)|ungraciously|ungracefully|gracelessly|without graciousness +woodenware|1 +(noun)|ware +woodfern|1 +(noun)|wood fern|wood-fern|fern +woodgrain|1 +(noun)|wood grain|grain +woodgraining|1 +(noun)|graining|grain +woodhewer|1 +(noun)|woodcreeper|wood-creeper|tree creeper|tyrannid +woodhull|1 +(noun)|Woodhull|Victoria Clafin Woodhull|suffragist +woodland|1 +(noun)|forest|timberland|timber|land|dry land|earth|ground|solid ground|terra firma|biome +woodland caribou|1 +(noun)|Rangifer caribou|caribou|reindeer|Greenland caribou|Rangifer tarandus +woodland oxeye|1 +(noun)|Buphthalmum salicifolium|oxeye +woodland star|1 +(noun)|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower +woodland white violet|1 +(noun)|sweet white violet|white violet|Viola blanda|violet +woodlet|1 +(noun)|grove|orchard|plantation|garden +woodlouse|1 +(noun)|slater|isopod +woodman|2 +(noun)|woodsman|rustic +(noun)|woodworker|woodsman|craftsman|artisan|journeyman|artificer +woodpecker|1 +(noun)|peckerwood|pecker|piciform bird +woodpile|1 +(noun)|pile|heap|mound|cumulus +woodrow charles herman|1 +(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician|jazzman|bandleader +woodrow wilson|1 +(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States|United States President|President|Chief Executive +woodrow wilson guthrie|1 +(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer|jongleur|minstrel|poet-singer|troubadour|songwriter|songster|ballad maker +woodruff|2 +(noun)|sweet woodruff|waldmeister|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw +(noun)|subshrub|suffrutex +woods|9 +(noun)|forest|wood|vegetation|flora +(noun)|wood|plant material +(noun)|forest|wood|vegetation|flora +(noun)|Wood|Natalie Wood|actress +(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor|music director|director +(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer|author +(noun)|Wood|Grant Wood|painter +(noun)|woodwind|woodwind instrument|wood|wind instrument|wind +(noun)|wood|golf club|golf-club|club +woodscrew|1 +(noun)|screw +woodshed|1 +(noun)|shed +woodsia|1 +(noun)|fern +woodsia alpina|1 +(noun)|Alpine woodsia|northern woodsia|flower-cup fern|Woodsia alpina|woodsia +woodsia glabella|1 +(noun)|smooth woodsia|Woodsia glabella|woodsia +woodsia ilvensis|1 +(noun)|rusty woodsia|fragrant woodsia|oblong woodsia|Woodsia ilvensis|woodsia +woodsman|2 +(noun)|woodman|rustic +(noun)|woodworker|woodman|craftsman|artisan|journeyman|artificer +woodsy|2 +(adj)|wooded +(adj)|arboraceous|arboreous|woody|wooded +woodward|2 +(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian|historiographer +(noun)|Woodward|Robert Burns Woodward|chemist +woodwardia|1 +(noun)|Woodwardia|genus Woodwardia|fern genus +woodwardia virginica|1 +(noun)|Virginia chain fern|Woodwardia virginica|chain fern +woodwaxen|1 +(noun)|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom +woodwind|1 +(noun)|woodwind instrument|wood|wind instrument|wind +woodwind instrument|1 +(noun)|woodwind|wood|wind instrument|wind +woodwork|2 +(noun)|work|piece of work +(noun)|carpentry|woodworking|trade|craft +woodworker|1 +(noun)|woodsman|woodman|craftsman|artisan|journeyman|artificer +woodworking|1 +(noun)|carpentry|woodwork|trade|craft +woodworking plane|1 +(noun)|plane|carpenter's plane|edge tool|hand tool +woodworking vise|1 +(noun)|wood vise|shoulder vise|vise|bench vise +woodworm|1 +(noun)|worm +woody|3 +(adj)|woody |ashen|beechen|birch|birchen|birken|deal|ligneous|oaken|wooden|cedarn|suffrutescent +(adj)|arboraceous|arboreous|woodsy|wooded +(adj)|lignified|hard +woody allen|1 +(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker|filmmaker|film producer|movie maker|actor|histrion|player|thespian|role player +woody guthrie|1 +(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer|jongleur|minstrel|poet-singer|troubadour|songwriter|songster|ballad maker +woody herman|1 +(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician|jazzman|bandleader +woody nightshade|1 +(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|Solanum dulcamara|nightshade +woody pear|1 +(noun)|native pear|Xylomelum pyriforme|shrub|bush +woody plant|1 +(noun)|ligneous plant|vascular plant|tracheophyte +wooer|1 +(noun)|suitor|suer|admirer|adorer +woof|1 +(noun)|weft|filling|pick|thread|yarn +woofer|1 +(noun)|loudspeaker|speaker|speaker unit|loudspeaker system|speaker system +wooing|1 +(noun)|courtship|courting|suit|entreaty|prayer|appeal +wool|3 +(noun)|woolen|woollen|fabric|cloth|material|textile +(noun)|animal fiber|animal fibre +(noun)|fleece|coat|pelage +wool fat|1 +(noun)|lanolin|wool grease|animal oil +wool grass|2 +(noun)|Scirpus cyperinus|sedge +(noun)|Ravenna grass|Erianthus ravennae|plume grass +wool grease|1 +(noun)|lanolin|wool fat|animal oil +wool oil|1 +(noun)|animal oil +wool stapler|2 +(noun)|distributor|distributer +(noun)|woolsorter|grader +woolen|2 +(adj)|woollen|fabric|cloth|material|textile +(noun)|wool|woollen|fabric|cloth|material|textile +woolf|1 +(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer|author +woolgather|1 +(verb)|dream|daydream|stargaze|imagine|conceive of|ideate|envisage +woolgatherer|1 +(noun)|daydreamer|idler|loafer|do-nothing|layabout|bum +woolgathering|2 +(adj)|dreamy|moony|inattentive +(noun)|dream|dreaming +woollcott|1 +(noun)|Woollcott|Alexander Woollcott|drama critic|theater critic|journalist +woollen|2 +(adj)|woolen|fabric|cloth|material|textile +(noun)|wool|woolen|fabric|cloth|material|textile +woolley|1 +(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist|archaeologist +woolly|4 +(adj)|flocculent|wooly|soft +(adj)|addled|befuddled|muddled|muzzy|wooly|woolly-headed|wooly-minded|confused +(adj)|wooly|hairy |hirsute +(adj)|lanate|hairy |hirsute +woolly-headed|1 +(adj)|addled|befuddled|muddled|muzzy|woolly|wooly|wooly-minded|confused +woolly adelgid|1 +(noun)|adelgid +woolly alder aphid|1 +(noun)|Prociphilus tessellatus|woolly aphid|woolly plant louse +woolly aphid|1 +(noun)|woolly plant louse|aphid +woolly apple aphid|1 +(noun)|American blight|Eriosoma lanigerum|woolly aphid|woolly plant louse +woolly bear|1 +(noun)|woolly bear caterpillar|caterpillar +woolly bear caterpillar|1 +(noun)|woolly bear|caterpillar +woolly bear moth|1 +(noun)|woolly bear|woolly bear caterpillar +woolly daisy|1 +(noun)|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower|wild flower +woolly indris|1 +(noun)|Avahi laniger|lemur +woolly mammoth|1 +(noun)|northern mammoth|Mammuthus primigenius|mammoth +woolly manzanita|1 +(noun)|downy manzanita|Arctostaphylos tomentosa|manzanita +woolly monkey|1 +(noun)|New World monkey|platyrrhine +woolly mullein|1 +(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|torch|Verbascum thapsus|mullein|flannel leaf|velvet plant +woolly plant louse|1 +(noun)|woolly aphid|aphid +woolly rhinoceros|1 +(noun)|Rhinoceros antiquitatis|rhinoceros|rhino +woolly sunflower|1 +(noun)|wildflower|wild flower +woolly thistle|2 +(noun)|cotton thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle +(noun)|Cirsium flodmanii|plume thistle|plumed thistle +woolsorter|1 +(noun)|wool stapler|grader +woolsorter's disease|1 +(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|anthrax +woolsorter's pneumonia|1 +(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's disease|anthrax +woolworth|1 +(noun)|Woolworth|Frank Winfield Woolworth|businessman|man of affairs +wooly|3 +(adj)|flocculent|woolly|soft +(adj)|addled|befuddled|muddled|muzzy|woolly|woolly-headed|wooly-minded|confused +(adj)|woolly|hairy |hirsute +wooly-minded|1 +(adj)|addled|befuddled|muddled|muzzy|woolly|wooly|woolly-headed|confused +wooly blue curls|1 +(noun)|black sage|California romero|Trichostema lanatum|blue curls +wooly lip fern|1 +(noun)|hairy lip fern|Cheilanthes lanosa|lip fern|lipfern +woozy|1 +(adj)|dizzy|giddy|vertiginous|ill |sick +wop|1 +(noun)|dago|Guinea|greaseball|Italian +worcester|3 +(noun)|Worcester|Joseph Emerson Worcester|lexicographer|lexicologist +(noun)|Worcester|city|metropolis|urban center +(noun)|Worcester|city|metropolis|urban center +worcester sauce|1 +(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce|condiment +worcestershire|1 +(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce|condiment +worcestershire sauce|1 +(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce|condiment +word|11 +(noun)|language unit|linguistic unit +(noun)|statement +(noun)|news|intelligence|tidings|information|info +(noun)|Son|Word|Logos|hypostasis +(noun)|parole|word of honor|promise +(noun)|password|watchword|parole|countersign|positive identification|secret|arcanum +(noun)|discussion|give-and-take|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(noun)|order +(noun)|computer memory unit +(verb)|give voice|formulate|phrase|articulate|express|show|evince +word-blind|1 +(adj)|alexic|aphasia +word-for-word|1 +(adj)|literal|exact +word-of-mouth|1 +(adj)|viva-voce|spoken +word-painter|1 +(noun)|writer|author +word-painting|1 +(noun)|word picture|delineation|depiction|picture|characterization|characterisation|description|verbal description +word-perfect|1 +(adj)|letter-perfect|correct +word-splitting|1 +(noun)|hairsplitting|differentiation|distinction +word-worship|1 +(noun)|verbolatry|grammatolatry|idolatry|devotion|veneration|cultism +word accent|1 +(noun)|word stress|stress|emphasis|accent +word blindness|1 +(noun)|visual aphasia|alexia|aphasia +word class|1 +(noun)|part of speech|form class|grammatical category|syntactic category +word deafness|1 +(noun)|auditory aphasia|acoustic aphasia|aphasia +word division|1 +(noun)|hyphenation|division +word finder|2 +(noun)|wordfinder|thesaurus|synonym finder +(noun)| +word for word|1 +(adv)|verbatim +word form|1 +(noun)|form|signifier|descriptor|word +word game|1 +(noun)|parlor game|parlour game +word meaning|1 +(noun)|word sense|acceptation|sense|signified +word of advice|1 +(noun)|admonition|monition|warning|advice +word of farewell|1 +(noun)|farewell|acknowledgment|acknowledgement +word of god|3 +(noun)|Word of God|manifestation +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(noun)|Word of God|Gospel|Gospels|evangel +word of honor|1 +(noun)|parole|word|promise +word of mouth|1 +(noun)|grapevine|pipeline|gossip|comment|scuttlebutt +word order|1 +(noun)|ordering|order|ordination +word picture|1 +(noun)|word-painting|delineation|depiction|picture|characterization|characterisation|description|verbal description +word play|2 +(noun)|play|frolic|romp|gambol|caper +(noun)|pun|punning|wordplay|paronomasia|fun|play|sport +word processing|1 +(noun)|data processing +word processing system|1 +(noun)|word processor|application|application program|applications programme +word processor|1 +(noun)|word processing system|application|application program|applications programme +word salad|1 +(noun)|incoherence|incoherency|unintelligibility +word sense|1 +(noun)|word meaning|acceptation|sense|signified +word square|1 +(noun)|acrostic|problem +word stress|1 +(noun)|word accent|stress|emphasis|accent +word string|1 +(noun)|string of words|linguistic string|string|language|linguistic communication +word structure|1 +(noun)|morphology|sound structure|syllable structure|structure +wordbook|1 +(noun)|reference book|reference|reference work|book of facts +wordfinder|1 +(noun)|word finder|thesaurus|synonym finder +wordily|1 +(adv)|verbosely|windily|long-windedly +wordiness|1 +(noun)|prolixity|prolixness|long-windedness|verboseness|verbosity +wording|1 +(noun)|diction|phrasing|phraseology|choice of words|verbiage|formulation|expression +wordless|1 +(adj)|mute|tongueless|unspoken|inarticulate |unarticulate +wordlessly|1 +(adv)|mutely|silently|taciturnly +wordmonger|1 +(noun)|writer|author +wordnet|2 +(noun)|lexical database +(noun)|WordNet|Princeton WordNet|lexical database +wordplay|1 +(noun)|pun|punning|paronomasia|fun|play|sport +words|15 +(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|lyric|language|text|textual matter +(noun)|language|linguistic communication +(noun)|quarrel|wrangle|row|run-in|dustup|dispute|difference|difference of opinion|conflict +(noun)|actor's line|speech|line +(noun)|word|language unit|linguistic unit +(noun)|word|statement +(noun)|news|intelligence|tidings|word|information|info +(noun)|Son|Word|Logos|hypostasis +(noun)|parole|word|word of honor|promise +(noun)|password|watchword|word|parole|countersign|positive identification|secret|arcanum +(noun)|discussion|give-and-take|word|speech|speech communication|spoken communication|spoken language|language|voice communication|oral communication +(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text|sacred writing|religious writing|religious text +(noun)|word|order +(noun)|word|computer memory unit +words per minute|1 +(noun)|wpm|rate +wordsmith|1 +(noun)|writer|author +wordsworth|1 +(noun)|Wordsworth|William Wordsworth|poet +wordsworthian|1 +(adj)|Wordsworthian|poet +wordy|2 +(adj)|redundant|prolix +(adj)|long-winded|tedious|verbose|windy|prolix +work|32 +(noun)|activity +(noun)|piece of work|product|production +(noun)|employment|occupation|business|job|line of work|line +(noun)|study|learning|acquisition +(noun)|oeuvre|body of work|end product|output +(noun)|workplace|geographic point|geographical point +(noun)|energy +(verb)|do work +(verb)|act|succeed|win|come through|bring home the bacon|deliver the goods +(verb)|function|operate|go|run +(verb)|work on|process|transform|transmute|transubstantiate +(verb)|exercise|work out|put to work +(verb)|make|pass|go through|go across +(verb)|go|proceed|move +(verb)|move|displace +(verb)|bring|play|wreak|make for|make|create +(verb)|put to work|use|utilize|utilise|apply|employ +(verb)|cultivate|crop|fix|prepare|set up|ready|gear up|set +(verb)|be +(verb)|influence|act upon|affect|impact|bear upon|bear on|touch on|touch +(verb)|operate|run +(verb)|manage|deal|care|handle +(verb)|stimulate|excite|stir +(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant +(verb)|shape|form|mold|mould|forge|create from raw material|create from raw stuff +(verb)|move|displace +(verb)|knead|manipulate +(verb)|exploit|use|utilize|utilise|apply|employ +(verb)|solve|work out|figure out|puzzle out|lick|understand +(verb)|ferment|convert +(verb)|sour|turn|ferment|change state|turn +(verb)|become|go|get +work-board|2 +(noun)|workboard|board +(noun)| +work-clothes|1 +(noun)|work-clothing|clothing|article of clothing|vesture|wear +work-clothing|1 +(noun)|work-clothes|clothing|article of clothing|vesture|wear +work-in|1 +(noun)|demonstration|manifestation +work-shy|1 +(adj)|faineant|indolent|lazy|otiose|slothful|idle +work-study program|1 +(noun)|education|instruction|teaching|pedagogy|educational activity +work animal|1 +(noun)|animal|animate being|beast|brute|creature|fauna +work at|1 +(verb)|work on|work +work bench|2 +(noun)|workbench|bench|worktable|work table +(noun)| +work camp|1 +(noun)|prison camp|prison farm|camp +work day|2 +(noun)|workday|working day|weekday +(noun)|workday|working day|day +work flow|2 +(noun)|workflow|advancement|progress +(noun)| +work force|2 +(noun)|workforce|manpower|hands|men|force|personnel +(noun)| +work in|1 +(verb)|add +work in progress|1 +(noun)|work|piece of work +work of art|1 +(noun)|art|fine art +work off|1 +(verb)|get rid of|remove +work on|2 +(verb)|work at|work +(verb)|work|process|transform|transmute|transubstantiate +work out|8 +(verb)|work up|develop|make grow +(verb)|turn out|come out +(verb)|elaborate|develop|make grow +(verb)|exercise +(verb)|total|number|add up|come|amount +(verb)|calculate|cipher|cypher|compute|reckon|figure|reason +(verb)|solve|figure out|puzzle out|lick|work|understand +(verb)|exercise|work|work|put to work +work over|1 +(verb)|beat|beat up +work papers|1 +(noun)|working papers|work permit|legal document|legal instrument|official document|instrument +work party|1 +(noun)|gang|crew|unit|social unit +work permit|1 +(noun)|working papers|work papers|legal document|legal instrument|official document|instrument +work shift|1 +(noun)|shift|duty period|hours +work shoe|1 +(noun)|brogan|brogue|clodhopper|shoe +work song|1 +(noun)|song +work stoppage|1 +(noun)|strike|job action +work study|1 +(noun)|time and motion study|time-and-motion study|time-motion study|motion study|time study|examination|scrutiny +work surface|1 +(noun)|surface +work table|2 +(noun)|worktable|table +(noun)| +work through|1 +(verb)|run through|go through|work +work time|1 +(noun)|time period|period of time|period +work to rule|1 +(noun)|job action +work unit|1 +(noun)|heat unit|energy unit|unit of measurement|unit +work up|4 +(verb)|build up|build|progress|develop +(verb)|get up|grow|develop|produce|get|acquire +(verb)|build up|build|ramp up|increase +(verb)|work out|develop|make grow +workable|1 +(adj)|feasible|executable|practicable|viable|possible +workaday|1 +(adj)|everyday|mundane|quotidian|routine|unremarkable|ordinary +workaholic|1 +(noun)|compulsive +workaholism|1 +(noun)|compulsiveness|compulsivity +workbag|1 +(noun)|workbasket|workbox|container +workbasket|1 +(noun)|workbox|workbag|container +workbench|1 +(noun)|work bench|bench|worktable|work table +workboard|1 +(noun)|work-board|board +workbook|1 +(noun)|book +workbox|1 +(noun)|workbasket|workbag|container +workday|2 +(noun)|working day|work day|weekday +(noun)|working day|day +worked up|1 +(adj)|aroused|emotional|excited|agitated +worker|4 +(noun)|person|individual|someone|somebody|mortal|human|soul +(noun)|proletarian|prole|commoner|common man|common person +(noun)|insect +(noun)|actor|doer|person|individual|someone|somebody|mortal|human|soul +worker bee|1 +(noun)|worker +workfellow|1 +(noun)|colleague|co-worker|fellow worker|associate +workflow|1 +(noun)|work flow|advancement|progress +workforce|1 +(noun)|work force|manpower|hands|men|force|personnel +workhorse|2 +(noun)|machine +(noun)|horse|Equus caballus +workhouse|2 +(noun)|poorhouse +(noun)|jail|jailhouse|gaol|clink|slammer +working|6 +(adj)|on the job|employed +(adj)|practical +(adj)|impermanent |temporary +(adj)|running|operative|functional|functioning +(adj)|operative +(noun)|workings|excavation|hole in the ground +working-class|2 +(adj)|propertyless|wage-earning|blue-collar|lower-class |low-class +(adj)|wage-earning|blue-collar +working agreement|1 +(noun)|agreement|understanding +working capital|1 +(noun)|capital|assets +working class|1 +(noun)|labor|labour|proletariat|class|social class|socio-economic class +working day|2 +(noun)|workday|work day|weekday +(noun)|workday|day +working dog|1 +(noun)|dog|domestic dog|Canis familiaris +working girl|2 +(noun)|worker|girl|miss|missy|young lady|young woman|fille +(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|sporting lady|lady of pleasure|woman of the street|woman|adult female +working group|1 +(noun)|working party|unit|social unit +working man|1 +(noun)|workman|working person|employee +working memory|1 +(noun)|memory|remembering +working out|1 +(noun)|elaboration|development +working papers|2 +(noun)|record +(noun)|work papers|work permit|legal document|legal instrument|official document|instrument +working party|1 +(noun)|working group|unit|social unit +working person|1 +(noun)|workman|working man|employee +working principle|1 +(noun)|working rule|rule|regulation +working rule|1 +(noun)|working principle|rule|regulation +workings|3 +(noun)|works|mechanism +(noun)|working|excavation|hole in the ground +(noun)|working|excavation|hole in the ground +workload|1 +(noun)|employment|work +workman|1 +(noun)|working man|working person|employee +workmanlike|1 +(adj)|competent +workmanship|1 +(noun)|craft|craftsmanship|skill|accomplishment|acquirement|acquisition|attainment +workmate|1 +(noun)|worker +workmen's compensation|1 +(noun)|compensation +workout|1 +(noun)|exercise|exercising|physical exercise|physical exertion|effort|elbow grease|exertion|travail|sweat +workout suit|1 +(noun)|sweat suit|sweatsuit|sweats|garment +workpiece|1 +(noun)|work|piece of work +workplace|1 +(noun)|work|geographic point|geographical point +workroom|1 +(noun)|room +works|11 +(noun)|plant|industrial plant|building complex|complex +(noun)|whole shebang|whole kit and caboodle|kit and caboodle|whole kit and boodle|kit and boodle|whole kit|whole caboodle|whole works|full treatment|entirety|entireness|totality +(noun)|deeds|activity +(noun)|workings|mechanism +(noun)|work|activity +(noun)|work|piece of work|product|production +(noun)|employment|work|occupation|business|job|line of work|line +(noun)|study|work|learning|acquisition +(noun)|oeuvre|work|body of work|end product|output +(noun)|workplace|work|geographic point|geographical point +(noun)|work|energy +works council|1 +(noun)|council +works program|1 +(noun)|program|programme +worksheet|2 +(noun)|sheet|piece of paper|sheet of paper +(noun)|written record|written account +workshop|2 +(noun)|shop|workplace|work +(noun)|course|course of study|course of instruction|class +workspace|1 +(noun)|space +workstation|1 +(noun)|digital computer +worktable|1 +(noun)|work table|table +workweek|1 +(noun)|week|work time +world|9 +(adj)|global|planetary|worldwide|international +(noun)|human race|humanity|humankind|human beings|humans|mankind|man|group|grouping +(noun)|universe|existence|creation|cosmos|macrocosm|natural object +(noun)|reality|experience +(noun)|domain|class|social class|socio-economic class +(noun)|Earth|globe|terrestrial planet +(noun)|worldly concern|earthly concern|earth|concern +(noun)|part|piece +(noun)|populace|public|people +world-beater|1 +(noun)|king|queen|rival|challenger|competitor|competition|contender +world-class|1 +(adj)|first|foremost|best +world-shaking|1 +(adj)|earthshaking|world-shattering|significant |important +world-shattering|1 +(adj)|earthshaking|world-shaking|significant |important +world-weariness|1 +(noun)|Weltschmerz|melancholy +world-weary|1 +(adj)|bored|tired +world affairs|1 +(noun)|international affairs|affairs +world bank|1 +(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency|UN agency +world council|1 +(noun)|council +world council of churches|1 +(noun)|World Council of Churches|world council +world court|1 +(noun)|International Court of Justice|World Court|court|tribunal|judicature +world cup|1 +(noun)|World Cup|tournament|tourney +world health organization|1 +(noun)|World Health Organization|WHO|United Nations agency|UN agency +world meteorological organization|1 +(noun)|World Meteorological Organization|WMO|United Nations agency|UN agency +world organisation|1 +(noun)|world organization|international organization|international organisation|global organization|alliance|coalition|alignment|alinement +world organization|1 +(noun)|world organisation|international organization|international organisation|global organization|alliance|coalition|alignment|alinement +world power|1 +(noun)|major power|great power|power|superpower|state|nation|country|land|commonwealth|res publica|body politic +world premiere|1 +(noun)|performance|public presentation +world record|1 +(noun)|record +world series|1 +(noun)|World Series|series|playoff +world tamil association|1 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +world tamil movement|1 +(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization|terrorist group|foreign terrorist organization|FTO +world trade center|1 +(noun)|World Trade Center|WTC|twin towers|skyscraper +world trade organization|1 +(noun)|World Trade Organization|WTO|world organization|world organisation|international organization|international organisation|global organization +world traveler|1 +(noun)|globetrotter|cosmopolitan|cosmopolite +world view|1 +(noun)|Weltanschauung|position|view|perspective +world war|1 +(noun)|war|warfare +world war 1|1 +(noun)|World War I|World War 1|Great War|First World War|War to End War|world war +world war 2|1 +(noun)|World War II|World War 2|Second World War|world war +world war i|1 +(noun)|World War I|World War 1|Great War|First World War|War to End War|world war +world war ii|1 +(noun)|World War II|World War 2|Second World War|world war +world wide web|1 +(noun)|World Wide Web|WWW|web|computer network +worldliness|1 +(noun)|sophistication|quality +worldly|3 +(adj)|worldly |economic|material|materialistic|mercenary|worldly-minded|mundane|terrestrial|temporal|earthly|sophisticated +(adj)|blase|sophisticated +(adj)|temporal|profane +worldly-minded|1 +(adj)|materialistic|mercenary|worldly +worldly-wise|1 +(adj)|sophisticated +worldly belongings|1 +(noun)|worldly possessions|worldly goods|property|belongings|holding|material possession +worldly concern|1 +(noun)|earthly concern|world|earth|concern +worldly goods|1 +(noun)|worldly possessions|worldly belongings|property|belongings|holding|material possession +worldly possessions|1 +(noun)|worldly belongings|worldly goods|property|belongings|holding|material possession +worldwide|3 +(adj)|intercontinental +(adj)|global|planetary|world|international +(adj)|cosmopolitan|ecumenical|oecumenical|general|universal|comprehensive +worm|5 +(noun)|invertebrate +(noun)|louse|insect|dirt ball|unpleasant person|disagreeable person +(noun)|malevolent program +(noun)|screw +(verb)|writhe|wrestle|wriggle|squirm|twist|move +worm-eaten|1 +(adj)|vermiculate|wormy|worn +worm-shaped|1 +(adj)|vermiform|formed +worm family|1 +(noun)|family +worm fence|1 +(noun)|snake fence|snake-rail fence|Virginia fence|rail fence +worm fish|1 +(noun)|percoid fish|percoid|percoidean +worm gear|1 +(noun)|gear|gear wheel|cogwheel +worm genus|1 +(noun)|genus +worm lizard|1 +(noun)|lizard +worm salamander|1 +(noun)|slender salamander|salamander +worm snake|2 +(noun)|blind snake|snake|serpent|ophidian +(noun)|thunder snake|Carphophis amoenus|colubrid snake|colubrid +worm wheel|1 +(noun)|gear|gear wheel|cogwheel +wormcast|2 +(noun)|body waste|excretion|excreta|excrement|excretory product +(noun)|fossil +wormhole|1 +(noun)|hole|hollow +wormian bone|1 +(noun)|Wormian bone|sutural bone|bone|os +wormlike|1 +(adj)|cringing|groveling|grovelling|wormy|submissive +wormseed|1 +(noun)|American wormseed|Mexican tea|Spanish tea|Chenopodium ambrosioides|goosefoot +wormseed mustard|1 +(noun)|Erysimum cheiranthoides|weed +wormwood|1 +(noun)|subshrub|suffrutex +wormwood oil|1 +(noun)|absinthe oil|essential oil|volatile oil +wormwood sage|1 +(noun)|prairie sagewort|Artemisia frigida|wormwood +wormy|2 +(adj)|vermiculate|worm-eaten|worn +(adj)|cringing|groveling|grovelling|wormlike|submissive +worn|2 +(adj)|worn |aged|attrited|creaky|decrepit|flea-bitten|run-down|woebegone|dog-eared|eared|eroded|scoured|frayed|mangy|mangey|moth-eaten|mothy|ragged|raddled|worn-out|moth-eaten|ratty|shabby|tatty|scruffy|seedy|shopworn|shopsoiled|tattered|tatterdemalion|threadbare|thumbed|vermiculate|worm-eaten|wormy|waterworn|weather-beaten|weatherworn|weathered|well-worn|battered|clapped out|played out|old +(adj)|careworn|drawn|haggard|raddled|tired +worn-out|3 +(adj)|raddled|worn +(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|washed-out|worn out|tired +(adj)| +worn out|2 +(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|washed-out|worn-out|tired +(adj)|raddled|worn-out|worn +worn spot|1 +(noun)|fret|spot|speckle|dapple|patch|fleck|maculation +worried|1 +(adj)|disquieted|distressed|disturbed|upset|troubled +worrier|1 +(noun)|fuss-budget|fusspot|worrywart|spoilsport|killjoy|wet blanket|party pooper +worriment|1 +(noun)|troublesomeness|inconvenience|difficulty|difficultness +worrisome|2 +(adj)|unreassuring +(adj)|distressing|distressful|disturbing|perturbing|troubling|worrying|heavy +worry|7 +(noun)|concern|headache|vexation|negative stimulus +(noun)|trouble|anxiety +(verb)|care|mind +(verb)|vex|perturb|unhinge|disquiet|trouble|cark|distract|disorder +(verb)|concern|interest|occupy +(verb)|incise +(verb)|rub +worrying|3 +(adj)|distressing|distressful|disturbing|perturbing|troubling|worrisome|heavy +(noun)|badgering|torment|bedevilment|harassment|molestation +(noun)|agitation +worrywart|1 +(noun)|worrier|fuss-budget|fusspot|spoilsport|killjoy|wet blanket|party pooper +worse|17 +(adj)|worse |worsened +(adj)|worse |worsened +(adj)|bad |atrocious|abominable|awful|dreadful|painful|terrible|unspeakable|corked|corky|deplorable|distressing|lamentable|pitiful|sad|sorry|fearful|frightful|terrible|hard|tough|hopeless|horrid|icky|crappy|lousy|rotten|shitty|stinking|stinky|incompetent|unskilled|mediocre|mischievous|naughty|negative|poor|pretty|rubber|no-good|severe|swingeing|unfavorable|unsuitable|ill|uncool|disobedient|evil|wicked|unfavorable|unfavourable|worst +(adj)|bad|big|intense +(adj)|bad|tough|uncomfortable +(adj)|bad|spoiled|spoilt|stale +(adj)|bad|uncollectible|invalid +(adj)|bad|inferior +(adj)|bad|nonstandard +(adj)|bad|insecure|risky|high-risk|speculative|unsound +(adj)|bad|unfit|unsound|unhealthy +(adj)|bad|harmful +(adj)|bad|sorry|unhappy +(adj)|bad|immoral|evil |wicked +(adj)|bad|forged|counterfeit |imitative +(adj)|bad|defective|malfunctioning |nonfunctional +(noun)|bad|badness +worsen|2 +(verb)|decline|change state|turn +(verb)|aggravate|exacerbate|exasperate|change|alter|modify +worsened|2 +(adj)|worse +(adj)|worse +worsening|3 +(adj)|worsening +(noun)|deterioration|decline in quality|declension|decline|diminution +(noun)|change of state +worship|5 +(noun)|activity +(noun)|adoration|love +(verb)|idolize|idolise|hero-worship|revere|adore +(verb)|reverence|fear|revere|venerate +(verb)|attend|go to +worship of heavenly bodies|1 +(noun)|astrolatry|worship +worship of man|1 +(noun)|anthropolatry|idolatry|devotion|veneration|cultism +worship of saints|1 +(noun)|hagiolatry|hierolatry|worship +worshiper|2 +(noun)|worshipper|admirer|adorer +(noun)|believer|worshipper|religionist|religious person +worshipful|2 +(adj)|adoring|reverent +(adj)|godly|reverent|pious +worshiping|1 +(adj)|worshipping|attend|go to +worshipped|1 +(adj)|adored|idolized|idolised|loved +worshipper|2 +(noun)|believer|worshiper|religionist|religious person +(noun)|worshiper|admirer|adorer +worshipping|1 +(adj)|worshiping|attend|go to +worst|19 +(adj)|worst |bottom|poorest|last|last-place|lowest|most evil|most wicked|most undesirable|most unpleasant|pessimal|pessimum|most unsuitable|most unattractive|bad|inferior +(adj)|bad |atrocious|abominable|awful|dreadful|painful|terrible|unspeakable|corked|corky|deplorable|distressing|lamentable|pitiful|sad|sorry|fearful|frightful|terrible|hard|tough|hopeless|horrid|icky|crappy|lousy|rotten|shitty|stinking|stinky|incompetent|unskilled|mediocre|mischievous|naughty|negative|poor|pretty|rubber|no-good|severe|swingeing|unfavorable|unsuitable|ill|uncool|disobedient|evil|wicked|unfavorable|unfavourable|worse +(adj)|bad|big|intense +(adj)|bad|tough|uncomfortable +(adj)|bad|spoiled|spoilt|stale +(adj)|bad|uncollectible|invalid +(adj)|bad|inferior +(adj)|bad|nonstandard +(adj)|bad|insecure|risky|high-risk|speculative|unsound +(adj)|bad|unfit|unsound|unhealthy +(adj)|bad|harmful +(adj)|bad|sorry|unhappy +(adj)|bad|immoral|evil |wicked +(adj)|bad|forged|counterfeit |imitative +(adj)|bad|defective|malfunctioning |nonfunctional +(noun)|result|resultant|final result|outcome|termination +(noun)|evil|evilness +(noun)|attempt|effort|endeavor|endeavour|try +(verb)|pip|mop up|whip|rack up|beat|beat out|crush|shell|trounce|vanquish +worsted|2 +(noun)|fabric|cloth|material|textile +(noun)|thread|yarn +wort|2 +(noun)|herb|herbaceous plant +(noun)|malt +worth|5 +(adj)|deserving|meriting|worthy +(adj)|valuable +(noun)|indefinite quantity +(noun)|quality +(noun)|Worth|Charles Frederick Worth|couturier|fashion designer|clothes designer|designer +worthful|1 +(adj)|valuable|worthy +worthiness|1 +(noun)|good|goodness +worthless|1 +(adj)|worthless |chaffy|good-for-nothing|good-for-naught|meritless|no-account|no-count|no-good|sorry|manky|negligible|paltry|trifling|otiose|pointless|superfluous|wasted|rubbishy|trashy|tinpot|valueless|nugatory|unworthy +worthlessness|2 +(noun)|quality +(noun)|inutility|uselessness|unusefulness +worthwhile|1 +(adj)|worthy +worthwhileness|1 +(noun)|worth +worthy|6 +(adj)|worthy |applaudable|commendable|laudable|praiseworthy|creditable|cum laude|deserving|meriting|worth|exemplary|model|honorable|honourable|honored|honoured|magna cum laude|meritorious|meritable|noteworthy|notable|quotable|valuable|worthful|summa cum laude|worthwhile|sacred|estimable|good|honorable|honourable|righteous|valuable +(adj)|desirable|suitable|eligible +(adj)|respectable +(adj)|noble|solid|upstanding|honorable |honourable +(adj)|good +(noun)|important person|influential person|personage +wotan|1 +(noun)|Wotan|Teutonic deity +wouk|1 +(noun)|Wouk|Herman Wouk|writer|author +would-be|2 +(adj)|aspirant|aspiring|wishful|hopeful +(adj)|manque|ambitious +wound|14 +(adj)|coiled +(noun)|lesion|injury|hurt|harm|trauma +(noun)|injury|combat injury|personnel casualty|loss +(noun)|distress|hurt|suffering +(noun)|wounding|damage|harm|hurt|scathe +(verb)|injure|hurt +(verb)|hurt|injure|bruise|offend|spite|arouse|elicit|enkindle|kindle|evoke|fire|raise|provoke +(verb)|weave|wind|thread|meander|wander|travel|go|move|locomote +(verb)|wind|curve|be +(verb)|wind|wrap|roll|twine|move|displace +(verb)|scent|nose|wind|smell +(verb)|wind|wind up|tighten|fasten +(verb)|wreathe|wind|intertwine|twine|entwine|enlace|interlace|lace +(verb)|hoist|lift|wind|raise|lift|elevate|get up|bring up +wound tumor virus|1 +(noun)|WTV|tumor virus +wound up|1 +(adj)|aroused|tense +wounded|2 +(adj)|hurt|injured +(noun)|maimed|people +wounding|2 +(adj)|stabbing|traumatic|harmful +(noun)|wound|damage|harm|hurt|scathe +wove paper|1 +(noun)|writing paper +woven|1 +(adj)|woven |plain-woven +wow|2 +(noun)|belly laugh|sidesplitter|howler|thigh-slapper|scream|riot|joke|gag|laugh|jest|jape +(verb)|impress +wpm|1 +(noun)|words per minute|rate +wrack|4 +(noun)|seaweed +(noun)|rack|destruction|demolition|wipeout +(noun)|sea wrack|seaweed +(verb)|bust up|wreck|destroy|ruin +wraith|1 +(noun)|ghost|shade|spook|specter|spectre|apparition|phantom|phantasm|phantasma|shadow +wraithlike|1 +(adj)|shadowy|insubstantial |unsubstantial|unreal +wrangell-st. elias national park|1 +(noun)|Wrangell-St. Elias National Park|national park +wrangle|4 +(noun)|quarrel|row|words|run-in|dustup|dispute|difference|difference of opinion|conflict +(noun)|haggle|haggling|wrangling|bargaining +(verb)|brawl|quarrel|dispute|scrap|argufy|altercate +(verb)|herd +wrangler|2 +(noun)|debater|arguer +(noun)|horse wrangler|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd +wrangling|1 +(noun)|haggle|haggling|wrangle|bargaining +wrap|6 +(noun)|wrapper|cloak +(noun)|sandwich +(noun)|wrapping|wrapper|covering +(verb)|wrap up|cover +(verb)|wind|roll|twine|move|displace|wrap up +(verb)|envelop|enfold|enwrap|enclose|cover +wrap up|4 +(verb)|wrap|cover +(verb)|get through|finish off|mop up|polish off|clear up|finish up|complete|finish +(verb)|roll up|change surface +(verb)|cover|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel +wraparound|1 +(noun)|garment +wrapped|3 +(adj)|cloaked|clothed|draped|mantled|covered +(adj)|absorbed|engrossed|enwrapped|intent|rapt|attentive +(adj)|wrapped |done up|enwrapped|shrink-wrapped +wrapped up|1 +(adj)|bound up|committed +wrapper|3 +(noun)|negligee|neglige|peignoir|housecoat|garment +(noun)|wrapping|wrap|covering +(noun)|wrap|cloak +wrapping|2 +(noun)|wrap|wrapper|covering +(noun)|swathe|bandage|patch +wrapping paper|1 +(noun)|paper +wrasse|1 +(noun)|percoid fish|percoid|percoidean +wrath|2 +(noun)|fury|rage|madness +(noun)|anger|ire|ira|mortal sin|deadly sin +wrathful|1 +(adj)|wroth|wrothful|angry +wrawl|1 +(verb)|howl|yammer|yowl|utter|emit|let out|let loose +wreak|1 +(verb)|bring|work|play|make for|make|create +wreath|2 +(noun)|garland|coronal|chaplet|lei|flower arrangement +(verb)|wreathe|surround|environ|encircle|circle|round|ring +wreathe|3 +(verb)|wreath|surround|environ|encircle|circle|round|ring +(verb)|decorate|adorn|grace|ornament|embellish|beautify +(verb)|wind|intertwine|twine|entwine|enlace|interlace|lace +wreathed|1 +(adj)|encircled|ringed|adorned |decorated +wreck|5 +(noun)|decline|declination +(noun)|shipwreck|accident +(noun)|crash|accident +(noun)|ship +(verb)|bust up|wrack|destroy|ruin +wreckage|1 +(noun)|part|portion +wrecked|1 +(adj)|destroyed +wrecker|3 +(noun)|laborer|manual laborer|labourer|jack +(noun)|saboteur|diversionist|destroyer|ruiner|undoer|waster|uprooter +(noun)|tow truck|tow car|truck|motortruck +wreckfish|1 +(noun)|stone bass|Polyprion americanus|sea bass +wrecking|2 +(noun)|razing|destruction|demolition|wipeout +(noun)|laying waste|ruin|ruining|ruination|destruction|devastation +wrecking bar|1 +(noun)|crowbar|pry|pry bar|lever +wren|2 +(noun)|Wren|Sir Christopher Wren|architect|designer +(noun)|jenny wren|passerine|passeriform bird +wren-tit|1 +(noun)|Chamaea fasciata|titmouse|tit +wren warbler|1 +(noun)|Old World warbler|true warbler +wrench|7 +(noun)|twist|pull|injury|hurt|harm|trauma +(noun)|twist|movement|motion +(noun)|spanner|hand tool +(verb)|twist|pull +(verb)|writhe|wrestle|wriggle|worm|squirm|twist +(verb)|wring|twist|twine|distort +(verb)|twist|sprain|turn|wrick|rick|injure|wound +wrenching|1 +(adj)|racking|painful +wrest|1 +(verb)|seize +wrester|1 +(noun)|puller +wrestle|5 +(noun)|wrestling|grapple|grappling|hand-to-hand struggle|struggle +(verb)|battle|combat +(verb)|consider|debate|moot|turn over|deliberate +(verb)|writhe|wriggle|worm|squirm|twist|move +(verb)|fight|struggle +wrestler|1 +(noun)|grappler|matman|combatant|battler|belligerent|fighter|scrapper +wrestling|2 +(noun)|wrestle|grapple|grappling|hand-to-hand struggle|struggle +(noun)|rassling|grappling|contact sport +wrestling hold|1 +(noun)|clasp|clench|clutch|clutches|grasp|grip|hold +wrestling mat|1 +(noun)|mat|gym mat +wrestling match|1 +(noun)|match +wrestling ring|1 +(noun)|ring +wretch|2 +(noun)|reprobate|miscreant +(noun)|poor devil|victim +wretched|4 +(adj)|deplorable|execrable|miserable|woeful|inferior +(adj)|miserable|uncomfortable +(adj)|miserable|suffering|unhappy +(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|unfortunate +wretchedness|1 +(noun)|misery|ill-being +wrick|2 +(noun)|crick|rick|spasm|cramp|muscle spasm +(verb)|twist|sprain|wrench|turn|rick|injure|wound +wriggle|2 +(noun)|wiggle|squirm|motion|movement|move|motility +(verb)|writhe|wrestle|worm|squirm|twist|move +wriggler|2 +(noun)|wiggler|squirmer|person|individual|someone|somebody|mortal|human|soul +(noun)|wiggler|larva +wriggling|1 +(adj)|squirming|twisting|wiggling|wiggly|wriggly|writhing|moving +wriggly|1 +(adj)|squirming|twisting|wiggling|wiggly|wriggling|writhing|moving +wright|7 +(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer|author +(noun)|Wright|Richard Wright|writer|author +(noun)|Wright|Wilbur Wright|inventor|discoverer|artificer +(noun)|Wright|Orville Wright|inventor|discoverer|artificer +(noun)|Wright|Frank Lloyd Wright|architect|designer +(noun)|Wright|Frances Wright|Fanny Wright|feminist|women's rightist|women's liberationist|libber +(noun)|craftsman|artisan|journeyman|artificer +wring|5 +(noun)|squeeze|movement|motion +(verb)|contort|deform|distort|twist|twine|distort +(verb)|wrench|twist|twine|distort|wring out +(verb)|extort|squeeze|rack|gouge|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|hook +(verb)|squash|crush|squelch|mash|squeeze +wring from|1 +(verb)|extort|obtain +wring out|1 +(verb)|squeeze out|extract|pull out|pull|pull up|take out|draw out +wringer|1 +(noun)|clothes dryer|clothes drier +wrinkle|7 +(noun)|furrow|crease|crinkle|seam|line|depression|impression|imprint +(noun)|difficulty +(noun)|method +(verb)|purse|contract +(verb)|ruckle|crease|crinkle|scrunch|scrunch up|crisp|fold|fold up|turn up +(verb)|furrow|crease|fold|fold up|turn up +(verb)|rumple|crumple|crease|crinkle|fold|fold up +wrinkle-resistant|1 +(adj)|creaseproof|wrinkleproof|crease-resistant|depression|impression|imprint +wrinkled|3 +(adj)|wrinkly|furrowed +(adj)|wrinkled |crumpled|creased|rumpled|puckered|puckered-up|unsmoothed +(adj)|unironed |drip-dry|permanent-press|roughdried|unpressed|rough|unsmooth +wrinkleless|1 +(adj)|unwrinkled +wrinkleproof|1 +(adj)|creaseproof|crease-resistant|wrinkle-resistant|depression|impression|imprint +wrinkly|1 +(adj)|wrinkled|furrowed +wrist|1 +(noun)|carpus|wrist joint|radiocarpal joint|articulatio radiocarpea|gliding joint|articulatio plana +wrist band|3 +(noun)|wristlet|band +(noun)|wristband|band +(noun)|watchband|watchstrap|wristband|watch bracelet|bracelet|band +wrist bone|1 +(noun)|carpal bone|carpal|bone|os +wrist joint|1 +(noun)|wrist|carpus|radiocarpal joint|articulatio radiocarpea|gliding joint|articulatio plana +wrist pad|1 +(noun)|protective garment +wrist pin|1 +(noun)|gudgeon pin|pin +wrist watch|2 +(noun)|wristwatch|watch|ticker +(noun)| +wristband|2 +(noun)|band +(noun)|watchband|watchstrap|watch bracelet|bracelet|band +wristlet|1 +(noun)|wrist band|band +wristwatch|1 +(noun)|wrist watch|watch|ticker +writ|1 +(noun)|judicial writ|legal document|legal instrument|official document|instrument +writ large|1 +(adj)|obvious +writ of certiorari|1 +(noun)|certiorari|writ|judicial writ +writ of detinue|1 +(noun)|writ|judicial writ +writ of election|1 +(noun)|writ|judicial writ +writ of error|1 +(noun)|writ|judicial writ +writ of execution|1 +(noun)|execution|court order +writ of habeas corpus|1 +(noun)|habeas corpus|writ|judicial writ +writ of mandamus|1 +(noun)|mandamus|writ|judicial writ +writ of prohibition|1 +(noun)|writ|judicial writ +writ of right|1 +(noun)|writ|judicial writ +write|9 +(verb)|compose|pen|indite|create verbally|write out +(verb)|communicate|intercommunicate +(verb)|publish|create verbally +(verb)|drop a line|correspond +(verb)|communicate|intercommunicate +(verb)|compose|make|create +(verb)|trace|draw|line|describe|delineate +(verb)|record|tape +(verb)|spell +write-down|1 +(noun)|write-off|depreciation|wear and tear +write-in|2 +(noun)|write-in candidate|campaigner|candidate|nominee +(noun)|vote|ballot|voting|balloting +write-in candidate|1 +(noun)|write-in|campaigner|candidate|nominee +write-off|2 +(noun)|write-down|depreciation|wear and tear +(noun)|cancellation +write about|1 +(verb)|write on|write of|write|compose|pen|indite +write copy|1 +(verb)|write|compose|pen|indite +write down|2 +(verb)|set down|get down|put down|write +(verb)|write off|depreciate +write in|2 +(verb)|vote +(verb)|write +write in code|1 +(verb)|encode|code|encipher|cipher|cypher|encrypt|inscribe|write +write of|1 +(verb)|write on|write about|write|compose|pen|indite +write off|4 +(verb)|admit|acknowledge +(verb)|write|compose|pen|indite +(verb)|cancel|strike down +(verb)|write down|depreciate +write on|1 +(verb)|write of|write about|write|compose|pen|indite +write out|2 +(verb)|write up|write|compose|pen|indite +(verb)|issue|make out|cut|write +write up|3 +(noun)|report|news report|story|account|news +(verb)|write +(verb)|write out|write|compose|pen|indite +writer|2 +(noun)|author|communicator +(noun)|literate|literate person +writer's block|1 +(noun)|block|mental block +writer's cramp|1 +(noun)|graphospasm|spasm|cramp|muscle spasm +writer's name|1 +(noun)|author's name|name +writhe|1 +(verb)|wrestle|wriggle|worm|squirm|twist|move +writhed|1 +(adj)|contorted|writhen|crooked +writhen|1 +(adj)|contorted|writhed|crooked +writhing|1 +(adj)|squirming|twisting|wiggling|wiggly|wriggling|wriggly|moving +writing|5 +(noun)|authorship|composition|penning|verbal creation +(noun)|written material|piece of writing|written communication|written language +(noun)|written communication|written language|oeuvre|work|body of work +(noun)|written communication|written language +(noun)|committal to writing|activity +writing arm|1 +(noun)|arm +writing assignment|1 +(noun)|written assignment|assignment +writing board|1 +(noun)|work surface +writing desk|2 +(noun)|case +(noun)|desk +writing implement|1 +(noun)|implement +writing ink|1 +(noun)|ink +writing pad|1 +(noun)|message pad|pad|pad of paper|tablet +writing paper|1 +(noun)|paper +writing style|1 +(noun)|literary genre|genre|expressive style|style +writing system|1 +(noun)|orthography|writing +writing table|1 +(noun)|secretary|escritoire|secretaire|desk +writings|6 +(noun)|Hagiographa|Ketubim|Writings|sacred text|sacred writing|religious writing|religious text +(noun)|writing|authorship|composition|penning|verbal creation +(noun)|writing|written material|piece of writing|written communication|written language +(noun)|writing|written communication|written language|oeuvre|work|body of work +(noun)|writing|written communication|written language +(noun)|writing|committal to writing|activity +written|3 +(adj)|written |backhand|left-slanting|cursive|engrossed|graphic|graphical|in writing|handwritten|inscribed|longhand|printed|scrivened|shorthand|transcribed|typed|typewritten|holographic|scrawled|scripted +(adj)|written |codified|statute +(adj)|scripted +written account|1 +(noun)|written record|record +written agreement|1 +(noun)|agreement|understanding|legal document|legal instrument|official document|instrument +written assignment|1 +(noun)|writing assignment|assignment +written communication|1 +(noun)|written language|communication +written document|1 +(noun)|document|papers|writing|written material|piece of writing +written language|1 +(noun)|written communication|communication +written material|1 +(noun)|writing|piece of writing|written communication|written language +written matter|1 +(noun)|copy|text|textual matter +written record|1 +(noun)|written account|record +written report|1 +(noun)|report|study|document|written document|papers +written symbol|1 +(noun)|printed symbol|symbol +written text|1 +(noun)|transcription|written communication|written language +written word|1 +(noun)|word +wroclaw|1 +(noun)|Wroclaw|Breslau|city|metropolis|urban center +wrong|14 +(adj)|incorrect |erroneous|inaccurate|fallacious|false|mistaken|false|improper|inaccurate +(adj)|wrong |condemnable|criminal|deplorable|reprehensible|base|dishonorable|dishonourable|immoral|unethical|misguided|mistaken|evil|wicked|improper|unethical|unjust|wicked +(adj)|unsuitable|improper|inappropriate +(adj)|amiss|awry|haywire|malfunctioning |nonfunctional +(adj)|untrue|false +(adj)|wrong |wrongheaded +(adj)|improper +(adj)|inappropriate|incorrect|improper +(adj)|inside +(adj)|ill-timed|ill timed|unseasonable|untimely|inopportune +(noun)|wrongfulness|injustice|unjustness +(noun)|legal injury|damage|wrongdoing|wrongful conduct|misconduct|actus reus +(verb)|treat|handle|do by +(adv)|incorrectly|wrongly +wrong-side-out|1 +(adj)|inside-out|turned +wrong-site surgery|1 +(noun)|operation|surgery|surgical operation|surgical procedure|surgical process +wrong 'un|1 +(noun)|googly|bosie|bosie ball|bowling +wrongdoer|1 +(noun)|offender|bad person +wrongdoing|2 +(noun)|error|evil|evilness +(noun)|wrongful conduct|misconduct|actus reus|activity +wrongful|3 +(adj)|unlawful|illegitimate +(adj)|unlawful +(adj)|unjust +wrongful conduct|1 +(noun)|wrongdoing|misconduct|actus reus|activity +wrongful death|1 +(noun)|death|decease +wrongfully|1 +(adv)|legally|lawfully|de jure +wrongfulness|1 +(noun)|wrong|injustice|unjustness +wrongheaded|1 +(adj)|wrong +wrongly|1 +(adv)|incorrectly|wrong +wrongness|3 +(noun)|inappropriateness|impropriety|improperness +(noun)|immorality +(noun)|incorrectness|quality +wroth|1 +(adj)|wrathful|wrothful|angry +wrothful|1 +(adj)|wrathful|wroth|angry +wrought|1 +(adj)|shaped|molded|formed +wrought iron|1 +(noun)|iron|Fe|atomic number 26 +wry|3 +(adj)|dry|ironic|ironical|humorous |humourous +(adj)|crooked +(adj)|sardonic|sarcastic +wry face|1 +(noun)|pout|moue|grimace|face +wrymouth|1 +(noun)|ghostfish|Cryptacanthodes maculatus|blennioid fish|blennioid +wryneck|2 +(noun)|torticollis|abnormality|abnormalcy|abnormal condition +(noun)|woodpecker|peckerwood|pecker +wsw|1 +(noun)|west southwest|WSW|compass point|point +wtc|1 +(noun)|World Trade Center|WTC|twin towers|skyscraper +wto|1 +(noun)|World Trade Organization|WTO|world organization|world organisation|international organization|international organisation|global organization +wtv|1 +(noun)|wound tumor virus|WTV|tumor virus +wu|1 +(noun)|Wu|Wu dialect|Shanghai dialect|Chinese +wu dialect|1 +(noun)|Wu|Wu dialect|Shanghai dialect|Chinese +wuerzburg|1 +(noun)|Wurzburg|Wuerzburg|city|metropolis|urban center +wuhan|1 +(noun)|Wuhan|city|metropolis|urban center +wulfenite|1 +(noun)|mineral +wulfila|1 +(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop|interpreter|translator +wurlitzer|1 +(noun)|Wurlitzer|Rudolf Wurlitzer|businessman|man of affairs +wurzburg|1 +(noun)|Wurzburg|Wuerzburg|city|metropolis|urban center +wuss|1 +(noun)|weakling|doormat|person|individual|someone|somebody|mortal|human|soul +wv|1 +(noun)|West Virginia|Mountain State|WV|American state +www|1 +(noun)|World Wide Web|WWW|web|computer network +wy|1 +(noun)|Wyoming|Equality State|WY|American state +wyat|1 +(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet +wyatt|2 +(noun)|Wyatt|James Wyatt|architect|designer +(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet +wych elm|1 +(noun)|witch elm|Ulmus glabra|elm|elm tree +wych hazel|2 +(noun)|witch hazel|shrub|bush +(noun)|witch hazel|lotion|application +wycherley|1 +(noun)|Wycherley|William Wycherley|dramatist|playwright +wyclif|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +wycliffe|1 +(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian|theologist|theologizer|theologiser +wyeth|1 +(noun)|Wyeth|Andrew Wyeth|painter +wyethia|1 +(noun)|Wyethia ovata|compass plant|compass flower +wyethia amplexicaulis|1 +(noun)|mule's ears|Wyethia amplexicaulis|wildflower|wild flower +wyethia helianthoides|1 +(noun)|white-rayed mule's ears|Wyethia helianthoides|wildflower|wild flower +wyethia ovata|1 +(noun)|wyethia|Wyethia ovata|compass plant|compass flower +wykeham|1 +(noun)|Wykeham|William of Wykeham|archpriest|hierarch|high priest|prelate|primate|statesman|solon|national leader +wykehamist|1 +(noun)|Wykehamist|student|pupil|educatee +wyler|1 +(noun)|Wyler|William Wyler|film maker|filmmaker|film producer|movie maker +wylie|1 +(noun)|Wylie|Elinor Morton Hoyt Wylie|poet +wynette|1 +(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer|vocalist|vocalizer|vocaliser +wynfrith|1 +(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary|saint +wynnea|1 +(noun)|Wynnea|genus Wynnea|fungus genus +wynnea americana|1 +(noun)|Wynnea americana|fungus +wynnea sparassoides|1 +(noun)|Wynnea sparassoides|fungus +wyoming|1 +(noun)|Wyoming|Equality State|WY|American state +wyomingite|1 +(noun)|Wyomingite|American +wyrd|1 +(noun)|Wyrd|Weird|Anglo-Saxon deity +wysiwyg|1 +(adj)|application|application program|applications programme +wystan hugh auden|1 +(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet +wyszynski|1 +(noun)|Wyszynski|Stefan Wyszynski|archpriest|hierarch|high priest|prelate|primate +wytensin|1 +(noun)|guanabenz|Wytensin|antihypertensive|antihypertensive drug +wyvern|1 +(noun)|wivern|dragon|firedrake +x|4 +(adj)|ten|10|cardinal +(noun)|ten|10|X|tenner|decade|large integer +(noun)|X|letter|letter of the alphabet|alphabetic character +(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +x-axis|1 +(noun)|coordinate axis +x-linked|1 +(adj)|X-linked|sex chromosome +x-linked dominant inheritance|1 +(noun)|X-linked dominant inheritance|inheritance|hereditary pattern +x-linked gene|1 +(noun)|X-linked gene|gene|cistron|factor +x-linked recessive inheritance|1 +(noun)|X-linked recessive inheritance|inheritance|hereditary pattern +x-linked scid|1 +(noun)|X-linked SCID|X-SCID|severe combined immunodeficiency|severe combined immunodeficiency disease|SCID +x-or circuit|1 +(noun)|X-OR circuit|XOR circuit|XOR gate|gate|logic gate +x-radiation|2 +(noun)|X ray|X-radiation|roentgen ray|electromagnetic radiation|electromagnetic wave|nonparticulate radiation|ionizing radiation +(noun)|X-raying|X-radiation|imaging|tomography +x-ray|2 +(verb)|examine|see +(verb)|photograph|snap|shoot +x-ray diffraction|1 +(noun)|X-ray diffraction|diffraction +x-ray film|1 +(noun)|X-ray film|film|photographic film +x-ray machine|1 +(noun)|X-ray machine|apparatus|setup +x-ray photograph|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph|radiogram|radiograph|shadowgraph|skiagraph|skiagram +x-ray photography|1 +(noun)|roentgenography|X-ray photography|radiography|diagnostic procedure|diagnostic technique +x-ray picture|1 +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph|radiogram|radiograph|shadowgraph|skiagraph|skiagram +x-ray therapy|1 +(noun)|X-ray therapy|radiotherapy|radiation therapy|radiation|actinotherapy|irradiation +x-ray tube|1 +(noun)|X-ray tube|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve +x-raying|1 +(noun)|X-raying|X-radiation|imaging|tomography +x-scid|1 +(noun)|X-linked SCID|X-SCID|severe combined immunodeficiency|severe combined immunodeficiency disease|SCID +x chromosome|1 +(noun)|X chromosome|sex chromosome +x ray|2 +(noun)|X ray|X-radiation|roentgen ray|electromagnetic radiation|electromagnetic wave|nonparticulate radiation|ionizing radiation +(noun)|roentgenogram|X ray|X-ray picture|X-ray photograph|radiogram|radiograph|shadowgraph|skiagraph|skiagram +xanax|1 +(noun)|alprazolam|Xanax|benzodiazepine +xanthate|1 +(noun)|salt +xanthelasma|1 +(noun)|xanthoma +xanthemia|1 +(noun)|carotenemia|pathology +xanthic acid|1 +(noun)|acid +xanthine|1 +(noun)|organic compound +xanthium|1 +(noun)|Xanthium|genus Xanthium|asterid dicot genus +xanthoma|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +xanthoma disseminatum|1 +(noun)|xanthoma +xanthoma multiplex|1 +(noun)|xanthomatosis|cholesterosis cutis|lipid granulomatosis|lipoid granulomatosis|xanthoma +xanthomatosis|1 +(noun)|xanthoma multiplex|cholesterosis cutis|lipid granulomatosis|lipoid granulomatosis|xanthoma +xanthomonad|1 +(noun)|eubacteria|eubacterium|true bacteria +xanthomonas|1 +(noun)|Xanthomonas|genus Xanthomonas|bacteria genus +xanthophyceae|1 +(noun)|Xanthophyceae|class Xanthophyceae|class +xanthophyl|1 +(noun)|xanthophyll|lutein|carotenoid +xanthophyll|1 +(noun)|xanthophyl|lutein|carotenoid +xanthopsia|1 +(noun)|visual impairment|visual defect|vision defect|visual disorder +xanthorrhoeaceae|1 +(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|grass tree family|liliid monocot family +xanthorroea|1 +(noun)|Xanthorroea|genus Xanthorroea|liliid monocot genus +xanthosis|1 +(noun)|skin disease|disease of the skin|skin disorder|skin problem|skin condition +xanthosoma|1 +(noun)|Xanthosoma|genus Xanthosoma|monocot genus|liliopsid genus +xanthosoma atrovirens|1 +(noun)|yautia|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +xanthosoma sagittifolium|1 +(noun)|yautia|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +xanthous|1 +(adj)|yellow|yellowish|chromatic +xantusiidae|1 +(noun)|Xantusiidae|family Xantusiidae|reptile family +xavier|1 +(noun)|Xavier|Saint Francis Xavier|missionary +xc|2 +(adj)|ninety|90|cardinal +(noun)|ninety|90|XC|large integer +xci|1 +(adj)|ninety-one|91|cardinal +xcii|1 +(adj)|ninety-two|92|cardinal +xciii|1 +(adj)|ninety-three|93|cardinal +xciv|1 +(adj)|ninety-four|94|cardinal +xcl|1 +(adj)|one hundred ninety|190|cardinal +xcv|1 +(adj)|ninety-five|95|cardinal +xcvi|1 +(adj)|ninety-six|96|cardinal +xcvii|1 +(adj)|ninety-seven|97|cardinal +xcviii|1 +(adj)|ninety-eight|98|cardinal +xe|1 +(noun)|xenon|Xe|atomic number 54|chemical element|element|noble gas|inert gas|argonon +xenarthra|1 +(noun)|Xenarthra|suborder Xenarthra|animal order +xenicidae|1 +(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family +xenicus|1 +(noun)|Xenicus|genus Xenicus|bird genus +xenicus gilviventris|1 +(noun)|rock wren|Xenicus gilviventris|New Zealand wren +xenogenesis|1 +(noun)|alternation of generations|heterogenesis|organic phenomenon +xenograft|1 +(noun)|heterograft|graft|transplant +xenolith|1 +(noun)|rock|stone +xenon|1 +(noun)|Xe|atomic number 54|chemical element|element|noble gas|inert gas|argonon +xenophanes|1 +(noun)|Xenophanes|philosopher +xenophobia|1 +(noun)|social phobia +xenophobic|1 +(adj)|afraid +xenophon|1 +(noun)|Xenophon|general|full general|historian|historiographer +xenopodidae|1 +(noun)|Xenopodidae|family Xenopodidae|amphibian family +xenopus|1 +(noun)|Xenopus|genus Xenopus|amphibian genus +xenopus laevis|1 +(noun)|African clawed frog|Xenopus laevis|tongueless frog +xenorhyncus|1 +(noun)|Xenorhyncus|genus Xenorhyncus|bird genus +xenorhyncus asiaticus|1 +(noun)|policeman bird|black-necked stork|jabiru|Xenorhyncus asiaticus|stork +xenosauridae|1 +(noun)|Xenosauridae|family Xenosauridae|reptile family +xenosaurus|1 +(noun)|Xenosaurus|genus Xenosaurus|reptile genus +xenotime|1 +(noun)|mineral +xenotransplant|1 +(noun)|xenotransplantation|transplant|transplantation|organ transplant +xenotransplantation|1 +(noun)|xenotransplant|transplant|transplantation|organ transplant +xeranthemum|1 +(noun)|flower +xeranthemum annuum|1 +(noun)|immortelle|Xeranthemum annuum|everlasting|everlasting flower +xeric|1 +(adj)|xeric |xerophytic +xerobates|1 +(noun)|Xerobates|genus Xerobates|reptile genus +xeroderma|1 +(noun)|xerodermia|ichthyosis +xeroderma pigmentosum|1 +(noun)|xeroderma|xerodermia +xerodermia|1 +(noun)|xeroderma|ichthyosis +xerographic|1 +(adj)|photography|picture taking +xerographic copier|1 +(noun)|Xerox|Xerox machine|duplicator|copier +xerographic printer|1 +(noun)|page printer|page-at-a-time printer +xerography|1 +(noun)|photography|picture taking +xeroma|1 +(noun)|xerophthalmia|xerophthalmus|conjunctivitis arida|dryness|waterlessness|xerotes +xerophile|1 +(noun)|desert plant|xerophyte|xerophytic plant|xerophilous plant|vascular plant|tracheophyte +xerophilous plant|1 +(noun)|desert plant|xerophyte|xerophytic plant|xerophile|vascular plant|tracheophyte +xerophthalmia|1 +(noun)|xerophthalmus|xeroma|conjunctivitis arida|dryness|waterlessness|xerotes +xerophthalmus|1 +(noun)|xerophthalmia|xeroma|conjunctivitis arida|dryness|waterlessness|xerotes +xerophyllum|1 +(noun)|Xerophyllum|genus Xerophyllum|liliid monocot genus +xerophyllum tenax|1 +(noun)|squaw grass|bear grass|Xerophyllum tenax|liliaceous plant +xerophyte|1 +(noun)|desert plant|xerophytic plant|xerophile|xerophilous plant|vascular plant|tracheophyte +xerophytic|1 +(adj)|xeric +xerophytic plant|1 +(noun)|desert plant|xerophyte|xerophile|xerophilous plant|vascular plant|tracheophyte +xeroradiography|1 +(noun)|radiography +xerostomia|1 +(noun)|dry mouth|dryness|waterlessness|xerotes +xerotes|1 +(noun)|dryness|waterlessness|condition|status +xerox|3 +(noun)|xerox copy|copy +(noun)|Xerox|xerographic copier|Xerox machine|duplicator|copier +(verb)|photocopy|run off|reproduce +xerox copy|1 +(noun)|xerox|copy +xerox machine|1 +(noun)|Xerox|xerographic copier|Xerox machine|duplicator|copier +xerxes i|1 +(noun)|Xerxes I|Xerxes the Great|king|male monarch +xerxes the great|1 +(noun)|Xerxes I|Xerxes the Great|king|male monarch +xestobium rufovillosum|1 +(noun)|deathwatch beetle|deathwatch|Xestobium rufovillosum|beetle +xhosa|1 +(noun)|Xhosa|Nguni +xi|3 +(adj)|eleven|11|cardinal +(noun)|eleven|11|XI|large integer +(noun)|letter|letter of the alphabet|alphabetic character +xian|1 +(noun)|Xian|Sian|Singan|Changan|Hsian|city|metropolis|urban center +xii|2 +(adj)|twelve|12|dozen|cardinal +(noun)|twelve|12|XII|dozen|large integer +xiii|2 +(adj)|thirteen|13|cardinal +(noun)|thirteen|13|XIII|baker's dozen|long dozen|large integer +ximenesia encelioides|1 +(noun)|cowpen daisy|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard|crown-beard|crown beard +xinjiang|1 +(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state|province +xinjiang uighur autonomous region|1 +(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state|province +xiphias|1 +(noun)|Xiphias|genus Xiphias|fish genus +xiphias gladius|1 +(noun)|swordfish|Xiphias gladius|scombroid|scombroid fish +xiphiidae|1 +(noun)|Xiphiidae|family Xiphiidae|fish family +xiphium iris|1 +(noun)|Spanish iris|Iris xiphium|beardless iris +xiphoid process|1 +(noun)|bone|os +xiphosura|1 +(noun)|Xiphosura|order Xiphosura|animal order +xiphosurus polyphemus|1 +(noun)|horseshoe crab|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod +xishuangbanna dai|1 +(noun)|Tai Lue|Xishuangbanna Dai|Tai +xiv|2 +(adj)|fourteen|14|cardinal +(noun)|fourteen|14|XIV|large integer +xix|2 +(adj)|nineteen|19|cardinal +(noun)|nineteen|19|XIX|large integer +xizang|1 +(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country|Asian nation +xl|2 +(adj)|forty|40|twoscore|cardinal +(noun)|forty|40|XL|large integer +xli|1 +(adj)|forty-one|41|cardinal +xlii|1 +(adj)|forty-two|42|cardinal +xliii|1 +(adj)|forty-three|43|cardinal +xliv|1 +(adj)|forty-four|44|cardinal +xlv|1 +(adj)|forty-five|45|cardinal +xlvi|1 +(adj)|forty-six|46|cardinal +xlvii|1 +(adj)|forty-seven|47|cardinal +xlviii|1 +(adj)|forty-eight|48|cardinal +xmas|1 +(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday|national holiday|holy day of obligation|quarter day|feast day|fete day +xor circuit|1 +(noun)|X-OR circuit|XOR circuit|XOR gate|gate|logic gate +xor gate|1 +(noun)|X-OR circuit|XOR circuit|XOR gate|gate|logic gate +xt|1 +(noun)|crosstalk|XT|noise|interference|disturbance +xtc|1 +(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine|MDMA +xv|2 +(adj)|fifteen|15|cardinal +(noun)|fifteen|15|XV|large integer +xvi|2 +(adj)|sixteen|16|cardinal +(noun)|sixteen|16|XVI|large integer +xvii|2 +(adj)|seventeen|17|cardinal +(noun)|seventeen|17|XVII|large integer +xviii|2 +(adj)|eighteen|18|cardinal +(noun)|eighteen|18|XVIII|large integer +xx|3 +(adj)|twenty|20|cardinal +(noun)|twenty|20|XX|large integer +(noun)|XX|sex chromosome +xxi|2 +(adj)|twenty-one|21|cardinal +(noun)|twenty-one|21|XXI|large integer +xxii|2 +(adj)|twenty-two|22|cardinal +(noun)|twenty-two|22|XXII|large integer +xxiii|2 +(adj)|twenty-three|23|cardinal +(noun)|twenty-three|23|XXIII|large integer +xxiv|2 +(adj)|twenty-four|24|cardinal +(noun)|twenty-four|24|XXIV|two dozen|large integer +xxix|2 +(adj)|twenty-nine|29|cardinal +(noun)|twenty-nine|29|XXIX|large integer +xxv|2 +(adj)|twenty-five|25|cardinal +(noun)|twenty-five|25|XXV|large integer +xxvi|2 +(adj)|twenty-six|26|cardinal +(noun)|twenty-six|26|XXVI|large integer +xxvii|2 +(adj)|twenty-seven|27|cardinal +(noun)|twenty-seven|27|XXVII|large integer +xxviii|2 +(adj)|twenty-eight|28|cardinal +(noun)|twenty-eight|28|XXVIII|large integer +xxx|3 +(adj)|thirty|30|cardinal +(noun)|thirty|30|XXX|large integer +(noun)|XXX|sex chromosome +xxxi|1 +(adj)|thirty-one|31|cardinal +xxxii|1 +(adj)|thirty-two|32|cardinal +xxxiii|1 +(adj)|thirty-three|33|cardinal +xxxiv|1 +(adj)|thirty-four|34|cardinal +xxxv|1 +(adj)|thirty-five|35|cardinal +xxxvi|1 +(adj)|thirty-six|36|cardinal +xxxvii|1 +(adj)|thirty-seven|37|cardinal +xxxviii|1 +(adj)|thirty-eight|38|cardinal +xxy|1 +(noun)|XXY|sex chromosome +xxy-syndrome|1 +(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome +xy|1 +(noun)|XY|sex chromosome +xylaria|1 +(noun)|Xylaria|genus Xylaria|fungus genus +xylaria mali|1 +(noun)|black root rot fungus|Xylaria mali|fungus +xylaria polymorpha|1 +(noun)|dead-man's-fingers|dead-men's-fingers|Xylaria polymorpha|fungus +xylariaceae|1 +(noun)|Xylariaceae|family Xylariaceae|fungus family +xylem|1 +(noun)|vascular tissue +xylene|1 +(noun)|xylol|solvent|dissolvent|dissolver|dissolving agent|resolvent +xylocaine|1 +(noun)|lidocaine|Xylocaine|local anesthetic|local anaesthetic|local|topical anesthetic|topical anaesthetic +xylocopa|1 +(noun)|Xylocopa|genus Xylocopa|arthropod genus +xylol|1 +(noun)|xylene|solvent|dissolvent|dissolver|dissolving agent|resolvent +xylomelum|1 +(noun)|Xylomelum|genus Xylomelum|dicot genus|magnoliopsid genus +xylomelum pyriforme|1 +(noun)|native pear|woody pear|Xylomelum pyriforme|shrub|bush +xylophone|1 +(noun)|marimba|percussion instrument|percussive instrument +xylophonist|1 +(noun)|percussionist +xylopia|1 +(noun)|Xylopia|genus Xylopia|magnoliid dicot genus +xylopia aethiopica|1 +(noun)|Guinea pepper|negro pepper|Xylopia aethiopica|tree +xylose|1 +(noun)|wood sugar|carbohydrate|saccharide|sugar +xylosma|1 +(noun)|Xylosma congestum|shrub|bush +xylosma congestum|1 +(noun)|xylosma|Xylosma congestum|shrub|bush +xyphophorus|1 +(noun)|Xyphophorus|genus Xyphophorus|fish genus +xyphophorus helleri|1 +(noun)|swordtail|helleri|topminnow|Xyphophorus helleri|cyprinodont +xyridaceae|1 +(noun)|Xyridaceae|family Xyridaceae|yellow-eyed grass family|monocot family|liliopsid family +xyridales|1 +(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order +xyris|1 +(noun)|Xyris|genus Xyris|monocot genus|liliopsid genus +xyris operculata|1 +(noun)|tall yellow-eye|Xyris operculata|yellow-eyed grass +xyy|1 +(noun)|XYY|sex chromosome +y|2 +(noun)|yttrium|Y|atomic number 39|metallic element|metal +(noun)|Y|letter|letter of the alphabet|alphabetic character +y-axis|1 +(noun)|coordinate axis +y-linked gene|1 +(noun)|Y-linked gene|holandric gene|gene|cistron|factor +y-shaped|1 +(adj)|Y-shaped|formed +y2k|1 +(noun)|Y2K|year|twelvemonth|yr +y2k compliant|1 +(adj)|Y2K compliant|obedient +y chromosome|1 +(noun)|Y chromosome|sex chromosome +yacca|1 +(noun)|yacca podocarp|Podocarpus coriaceus|conifer|coniferous tree +yacca podocarp|1 +(noun)|yacca|Podocarpus coriaceus|conifer|coniferous tree +yacht|2 +(noun)|racing yacht|vessel|watercraft +(verb)|boat +yacht chair|1 +(noun)|folding chair +yacht club|1 +(noun)|boat club|club|society|guild|gild|lodge|order +yacht race|1 +(noun)|sailing-race|boat race +yachting|1 +(noun)|boating|water travel|seafaring +yachting cap|1 +(noun)|kepi|peaked cap|service cap|cap +yachtsman|1 +(noun)|yachtswoman|sailor|crewman +yachtswoman|1 +(noun)|yachtsman|sailor|crewman +yack|2 +(noun)|yak|yakety-yak|chatter|cackle|talk|talking +(verb)|jaw|yack away|rattle on|yap away|talk|speak|utter|mouth|verbalize|verbalise +yack away|1 +(verb)|yack|jaw|rattle on|yap away|talk|speak|utter|mouth|verbalize|verbalise +yafo|1 +(noun)|Jaffa|Joppa|Yafo|city|metropolis|urban center|port +yagi|1 +(noun)|Yagi aerial|directional antenna +yagi aerial|1 +(noun)|yagi|Yagi aerial|directional antenna +yahi|2 +(noun)|Yahi|Hokan|Hoka +(noun)|Yahi|Yanan +yahoo|2 +(noun)|yokel|rube|hick|hayseed|bumpkin|chawbacon|rustic +(noun)|Yahoo|fictional character|fictitious character|character +yahve|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yahveh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yahwe|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yahweh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yajur-veda|1 +(noun)|Yajur-Veda|Samhita +yak|2 +(noun)|yack|yakety-yak|chatter|cackle|talk|talking +(noun)|Bos grunniens|ox|wild ox +yak's milk|1 +(noun)|milk +yak butter|1 +(noun)|butter +yakety-yak|1 +(noun)|yak|yack|chatter|cackle|talk|talking +yakima|1 +(noun)|Yakima|town +yakut|2 +(noun)|Yakut|Turki +(noun)|Yakut|Turki|Turkic|Turko-Tatar|Turkic language +yakuza|2 +(noun)|gangster|mobster +(noun)|organized crime|gangland|gangdom +yale|2 +(noun)|Yale University|Yale|university +(noun)|Yale|Elihu Yale|philanthropist|altruist +yale university|1 +(noun)|Yale University|Yale|university +yalta|1 +(noun)|Yalta|city|metropolis|urban center +yaltopya|1 +(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country|African nation +yalu|1 +(noun)|Yalu|Yalu River|river +yalu river|2 +(noun)|Yalu|Yalu River|river +(noun)|Yalu River|pitched battle +yam|4 +(noun)|tuber +(noun)|yam plant|vine +(noun)|sweet potato +(noun)|root vegetable +yam bean|2 +(noun)|potato bean|Pachyrhizus tuberosus|vine +(noun)|Pachyrhizus erosus|vine +yam family|1 +(noun)|Dioscoreaceae|family Dioscoreaceae|plant family +yam plant|1 +(noun)|yam|vine +yama|1 +(noun)|Yama|Hindu deity +yamaltu|1 +(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara +yamamoto|1 +(noun)|Yamamoto|Isoroku Yamamoto|admiral|full admiral +yamani|1 +(noun)|Yamani|Ahmed Zoki Yamani|minister|government minister +yammer|2 +(verb)|howl|wrawl|yowl|utter|emit|let out|let loose +(verb)|whine|grizzle|yawp|complain|kick|plain|sound off|quetch|kvetch +yamoussukro|1 +(noun)|Yamoussukro|national capital +yana|2 +(noun)|Yana|Hokan|Hoka +(noun)|Yana|Yanan +yanan|1 +(noun)|Yanan|Hokan|Hoka +yang|1 +(noun)|principle|rule +yang chen ning|1 +(noun)|Yang Chen Ning|Chen N. Yang|physicist +yangon|1 +(noun)|Yangon|Rangoon|national capital +yangtze|1 +(noun)|Chang Jiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river +yangtze kiang|1 +(noun)|Chang Jiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river +yangtze river|1 +(noun)|Chang Jiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river +yank|4 +(noun)|Yankee|Yank|Northerner|American +(noun)|New Englander|Yankee|Yank|American +(noun)|Yankee|Yank|Yankee-Doodle|American +(verb)|jerk|pull|draw|force +yankee|4 +(adj)|Yankee|northern +(noun)|Yankee|Yank|Northerner|American +(noun)|New Englander|Yankee|Yank|American +(noun)|Yankee|Yank|Yankee-Doodle|American +yankee-doodle|1 +(noun)|Yankee|Yank|Yankee-Doodle|American +yankee corn|1 +(noun)|flint corn|flint maize|Yankee corn|Zea mays indurata|field corn +yanker|1 +(noun)|jerker|puller +yanquapin|1 +(noun)|water chinquapin|American lotus|Nelumbo lutea|water lily +yaounde|1 +(noun)|Yaounde|capital of Cameroon|national capital +yap|2 +(noun)|trap|cakehole|hole|maw|gob|mouth|oral cavity|oral fissure|rima oris +(verb)|yelp|yip|bark +yap away|1 +(verb)|yack|jaw|yack away|rattle on|talk|speak|utter|mouth|verbalize|verbalise +yard|8 +(noun)|pace|linear unit +(noun)|grounds|curtilage|field +(noun)|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|railway yard|tract|piece of land|piece of ground|parcel of land|parcel +(noun)|enclosure +(noun)|cubic yard|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit +(noun)|spar +(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|large integer +yard-long bean|1 +(noun)|asparagus bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume|leguminous plant +yard goods|1 +(noun)|piece goods|merchandise|wares|product +yard grass|2 +(noun)|yardgrass|wire grass|goose grass|Eleusine indica|millet +(noun)| +yard line|1 +(noun)|line +yard marker|1 +(noun)|marker +yard measure|1 +(noun)|yardstick|rule|ruler +yard sale|1 +(noun)|garage sale|sale|cut-rate sale|sales event +yardage|1 +(noun)|distance +yardarm|1 +(noun)|end +yardbird parker|1 +(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist|saxist +yarder|1 +(noun)|linear unit +yardgrass|1 +(noun)|yard grass|wire grass|goose grass|Eleusine indica|millet +yardie|1 +(noun)|gangster|mobster +yardman|2 +(noun)|trainman|railroader|railroad man|railwayman|railway man +(noun)|laborer|manual laborer|labourer|jack +yardmaster|1 +(noun)|trainmaster|train dispatcher|dispatcher|trainman|railroader|railroad man|railwayman|railway man +yardstick|2 +(noun)|standard|criterion|measure|touchstone +(noun)|yard measure|rule|ruler +yarmelke|1 +(noun)|yarmulke|yarmulka|skullcap +yarmulka|1 +(noun)|yarmulke|yarmelke|skullcap +yarmulke|1 +(noun)|yarmulka|yarmelke|skullcap +yarn|3 +(noun)|narration|recital|report|account +(noun)|thread|cord +(verb)|tell|narrate|recount|recite +yarn-dye|1 +(verb)|impress|dye +yarn-spinning|1 +(adj)|communicative |communicatory +yarrow|1 +(noun)|milfoil|Achillea millefolium|achillea +yashmac|1 +(noun)|yashmak|head covering|veil +yashmak|1 +(noun)|yashmac|head covering|veil +yasser arafat|1 +(noun)|Arafat|Yasser Arafat|statesman|solon|national leader +yastrzemski|1 +(noun)|Yastrzemski|Carl Yastrzemski|ballplayer|baseball player +yataghan|1 +(noun)|knife +yatobyo|1 +(noun)|tularemia|tularaemia|rabbit fever|deer fly fever|zoonosis|zoonotic disease +yaupon holly|1 +(noun)|holly +yautia|1 +(noun)|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum|aroid +yavapai|2 +(noun)|Yavapai|Hokan|Hoka +(noun)|Yavapai|Yuman +yaw|4 +(noun)|swerve|turning|turn +(verb)|gape|yawn|be +(verb)|deviate|divert +(verb)|swerve|sheer|curve|trend|veer|slue|slew|cut +yawl|3 +(noun)|small boat +(noun)|sailing vessel|sailing ship +(verb)|howl|ululate|wail|roar|shout|shout out|cry|call|yell|scream|holler|hollo|squall +yawn|3 +(noun)|yawning|oscitance|oscitancy|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +(verb)|breathe|take a breath|respire|suspire +(verb)|gape|yaw|be +yawner|1 +(noun)|person|individual|someone|somebody|mortal|human|soul +yawning|4 +(adj)|open +(adj)|open |opened +(adj)|drowsy|oscitant|inattentive +(noun)|yawn|oscitance|oscitancy|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction +yawp|2 +(verb)|bawl|roar|howl +(verb)|whine|grizzle|yammer|complain|kick|plain|sound off|quetch|kvetch +yaws|2 +(noun)|frambesia|framboesia|infectious disease +(noun)|yaw|swerve|turning|turn +yay|1 +(noun)|Yay|Tai +yazoo|1 +(noun)|Yazoo|Yazoo River|river +yazoo river|1 +(noun)|Yazoo|Yazoo River|river +yb|1 +(noun)|ytterbium|Yb|atomic number 70|metallic element|metal +yea|2 +(noun)|affirmative +(adv)|yeah +yeah|1 +(adv)|yea +year|4 +(noun)|twelvemonth|yr|time period|period of time|period +(noun)|time period|period of time|period +(noun)|time period|period of time|period +(noun)|class|gathering|assemblage +year-around|1 +(adj)|year-round +year-end|2 +(adj)|closing +(noun)|end|ending +year-round|1 +(adj)|year-round |year-around +year dot|1 +(noun)|long time|age|years +year of grace|1 +(noun)|year|twelvemonth|yr +yearbook|2 +(noun)|book +(noun)|annual|reference book|reference|reference work|book of facts +yearling|3 +(noun)|toddler|tot|bambino|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling +(noun)|racehorse|race horse|bangtail +(noun)|placental|placental mammal|eutherian|eutherian mammal +yearlong|1 +(adj)|long +yearly|2 +(adj)|annual|time period|period of time|period +(adv)|annually|every year|each year +yearn|3 +(verb)|hanker|long|desire|want +(verb)|ache|yen|pine|languish|hanker|long +(verb)|care for|cherish|hold dear|treasure +yearned-for|1 +(adj)|longed-for|wished-for|wanted +yearner|1 +(noun)|longer|thirster|person|individual|someone|somebody|mortal|human|soul +yearning|2 +(adj)|wistful|sad +(noun)|longing|desire +yearningly|1 +(adv)|longingly|with longing +years|7 +(noun)|old age|age|eld|geezerhood|time of life +(noun)|long time|age|time period|period of time|period +(noun)|days|life +(noun)|year|twelvemonth|yr|time period|period of time|period +(noun)|year|time period|period of time|period +(noun)|year|time period|period of time|period +(noun)|class|year|gathering|assemblage +yeast|2 +(noun)|barm|leaven|leavening +(noun)|fungus +yeast cake|1 +(noun)|yeast|barm +yeastlike|1 +(adj)|leaven|leavening +yeasty|2 +(adj)|zestful|zesty|barmy|spirited +(adj)|creative |originative +yeats|1 +(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet|dramatist|playwright +yeatsian|1 +(adj)|Yeatsian|poet|dramatist|playwright +yeddo|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +yedo|1 +(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital +yehudi menuhin|1 +(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist|fiddler +yekaterinoslav|1 +(noun)|Dnipropetrovsk|Yekaterinoslav|city|metropolis|urban center +yell|4 +(noun)|cry|outcry|call|shout|vociferation|utterance|vocalization +(noun)|cry|utterance|vocalization +(verb)|shout|shout out|cry|call|scream|holler|hollo|squall|utter|emit|let out|let loose +(verb)|scream|shout +yelled|1 +(adj)|shouted|loud +yeller|1 +(noun)|roarer|bawler|bellower|screamer|screecher|shouter|communicator +yelling|2 +(adj)|crying|howling|shouting|noisy +(noun)|shouting|cry|outcry|call|yell|shout|vociferation +yellow|8 +(adj)|yellowish|xanthous|chromatic +(adj)|chicken|chickenhearted|lily-livered|white-livered|yellow-bellied|cowardly |fearful +(adj)|yellowed|old +(adj)|scandalmongering|sensationalistic|sensational +(adj)|dishonorable |dishonourable +(adj)|jaundiced|icteric|unhealthy +(noun)|yellowness|chromatic color|chromatic colour|spectral color|spectral colour +(verb)|discolor|discolour|colour|color +yellow-bellied|1 +(adj)|chicken|chickenhearted|lily-livered|white-livered|yellow|cowardly |fearful +yellow-bellied sapsucker|1 +(noun)|Sphyrapicus varius|sapsucker +yellow-bellied terrapin|1 +(noun)|slider|Pseudemys scripta|turtle +yellow-blindness|1 +(noun)|tetartanopia|yellow-blue dichromacy|yellow-blue color blindness +yellow-blue color blindness|1 +(noun)|yellow-blue dichromacy|dichromacy|dichromatism|dichromatopsia|dichromia|dichromasy +yellow-blue dichromacy|1 +(noun)|yellow-blue color blindness|dichromacy|dichromatism|dichromatopsia|dichromia|dichromasy +yellow-breasted bunting|1 +(noun)|Emberiza aureola|bunting +yellow-breasted chat|1 +(noun)|Icteria virens|New World chat|chat +yellow-brown|1 +(adj)|amber|brownish-yellow|chromatic +yellow-crowned night heron|1 +(noun)|Nyctanassa violacea|night heron|night raven +yellow-dog contract|1 +(noun)|labor contract|labor agreement|collective agreement +yellow-eyed grass|1 +(noun)|marsh plant|bog plant|swamp plant +yellow-eyed grass family|1 +(noun)|Xyridaceae|family Xyridaceae|monocot family|liliopsid family +yellow-fever mosquito|1 +(noun)|Aedes aegypti|mosquito +yellow-green|1 +(adj)|chromatic +yellow-green algae|1 +(noun)|alga|algae +yellow-leaf sickle pine|1 +(noun)|Falcatifolium taxoides|conifer|coniferous tree +yellow-shafted flicker|1 +(noun)|Colaptes auratus|yellowhammer|flicker +yellow-throated marten|1 +(noun)|Charronia flavigula|marten|marten cat +yellow adder's tongue|1 +(noun)|trout lily|amberbell|Erythronium americanum|dogtooth violet|dogtooth|dog's-tooth violet +yellow ageratum|1 +(noun)|African daisy|Lonas inodora|Lonas annua|flower +yellow asphodel|1 +(noun)|king's spear|Asphodeline lutea|asphodel +yellow avens|2 +(noun)|Geum macrophyllum|avens +(noun)|Geum alleppicum strictum|Geum strictum|avens +yellow bachelor's button|1 +(noun)|orange milkwort|yellow milkwort|candyweed|Polygala lutea|milkwort +yellow bass|1 +(noun)|Morone interrupta|serranid fish|serranid +yellow bean|1 +(noun)|wax bean|fresh bean +yellow bedstraw|1 +(noun)|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw +yellow bells|1 +(noun)|California yellow bells|whispering bells|Emmanthe penduliflora|herb|herbaceous plant +yellow berry|1 +(noun)|buckthorn berry|fruit +yellow bile|1 +(noun)|choler|liquid body substance|bodily fluid|body fluid|humor|humour +yellow birch|1 +(noun)|Betula alleghaniensis|Betula leutea|birch|birch tree +yellow bone marrow|1 +(noun)|yellow marrow|marrow|bone marrow +yellow bristle grass|1 +(noun)|yellow bristlegrass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail|foxtail grass +yellow bristlegrass|1 +(noun)|yellow bristle grass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail|foxtail grass +yellow bugle|1 +(noun)|ground pine|Ajuga chamaepitys|bugle|bugleweed +yellow bunting|1 +(noun)|yellowhammer|Emberiza citrinella|bunting +yellow cattley guava|1 +(noun)|guava|strawberry guava|Psidium littorale|fruit tree +yellow cedar|1 +(noun)|yellow cypress|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar|cedar tree +yellow chamomile|1 +(noun)|golden marguerite|dyers' chamomile|Anthemis tinctoria|composite|composite plant +yellow chestnut oak|1 +(noun)|chinquapin oak|chinkapin oak|Quercus muehlenbergii|chestnut oak +yellow cleavers|1 +(noun)|yellow bedstraw|Our Lady's bedstraw|Galium verum|bedstraw +yellow clintonia|1 +(noun)|heal all|Clintonia borealis|clintonia|Clinton's lily +yellow colicroot|1 +(noun)|Aletris aurea|colicroot|colic root|crow corn|star grass|unicorn root +yellow cypress|1 +(noun)|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar|cedar tree +yellow delicious|1 +(noun)|Golden Delicious|Yellow Delicious|Delicious +yellow dock|1 +(noun)|bitter dock|broad-leaved dock|Rumex obtusifolius|dock|sorrel|sour grass +yellow dwarf|1 +(noun)|plant disease +yellow dwarf of potato|1 +(noun)|potato yellow dwarf|yellow dwarf +yellow fever|1 +(noun)|yellow jack|black vomit|infectious disease +yellow flag|1 +(noun)|yellow iris|yellow water flag|Iris pseudacorus|iris|flag|fleur-de-lis|sword lily +yellow foxglove|1 +(noun)|straw foxglove|Digitalis lutea|foxglove|digitalis +yellow foxtail|1 +(noun)|yellow bristlegrass|yellow bristle grass|glaucous bristlegrass|Setaria glauca|foxtail|foxtail grass +yellow giant hyssop|1 +(noun)|Agastache nepetoides|giant hyssop +yellow globe lily|1 +(noun)|golden fairy lantern|Calochortus amabilis|globe lily|fairy lantern +yellow goatfish|1 +(noun)|Mulloidichthys martinicus|goatfish|red mullet|surmullet|Mullus surmuletus +yellow granadilla|2 +(noun)|Jamaica honeysuckle|Passiflora laurifolia|passionflower|passionflower vine +(noun)|bell apple|sweet cup|water lemon|passion fruit +yellow green|1 +(noun)|yellowish green|chartreuse|Paris green|pea green|green|greenness|viridity +yellow gurnard|1 +(noun)|tub gurnard|Trigla lucerna|gurnard +yellow hawkweed|1 +(noun)|king devil|Hieracium praealtum|weed +yellow henbane|1 +(noun)|Physalis viscosa|ground cherry|husk tomato +yellow honeysuckle|2 +(noun)|Lonicera flava|honeysuckle +(noun)|Lonicera dioica|honeysuckle +yellow horned poppy|1 +(noun)|horn poppy|horned poppy|sea poppy|Glaucium flavum|flower +yellow hornet|1 +(noun)|yellow jacket|Vespula maculifrons|hornet +yellow iris|1 +(noun)|yellow flag|yellow water flag|Iris pseudacorus|iris|flag|fleur-de-lis|sword lily +yellow ironweed|1 +(noun)|wingstem|golden ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard|crown-beard|crown beard +yellow jacaranda|1 +(noun)|tipu|tipu tree|pride of Bolivia|tree +yellow jack|3 +(noun)|yellow fever|black vomit|infectious disease +(noun)|flag +(noun)|Caranx bartholomaei|jack +yellow jacket|2 +(noun)|pentobarbital sodium|pentobarbital|Nembutal|barbiturate +(noun)|yellow hornet|Vespula maculifrons|hornet +yellow jasmine|1 +(noun)|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine +yellow jessamine|1 +(noun)|yellow jasmine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine +yellow journalism|1 +(noun)|tabloid|tab|journalism|news media|fourth estate +yellow lady's slipper|1 +(noun)|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +yellow lady-slipper|1 +(noun)|yellow lady's slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper|lady-slipper|ladies' slipper|slipper orchid +yellow light|1 +(noun)|traffic light|traffic signal|stoplight +yellow locust|1 +(noun)|black locust|Robinia pseudoacacia|locust tree|locust +yellow loosestrife|1 +(noun)|garden loosestrife|Lysimachia vulgaris|loosestrife +yellow lupine|1 +(noun)|Lupinus luteus|lupine|lupin +yellow man|1 +(noun)|man|adult male|Oriental|oriental person +yellow mariposa tulip|1 +(noun)|Calochortus luteus|mariposa|mariposa tulip|mariposa lily +yellow marrow|1 +(noun)|yellow bone marrow|marrow|bone marrow +yellow metal|1 +(noun)|alpha-beta brass|Muntz metal|brass +yellow milkwort|1 +(noun)|orange milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort +yellow mombin|2 +(noun)|hog plum|yellow mombin tree|Spondias mombin|fruit tree +(noun)|hog plum|edible fruit +yellow mombin tree|1 +(noun)|hog plum|yellow mombin|Spondias mombin|fruit tree +yellow mountain saxifrage|1 +(noun)|Saxifraga aizoides|saxifrage|breakstone|rockfoil +yellow nutgrass|1 +(noun)|chufa|earth almond|ground almond|rush nut|Cyperus esculentus|sedge +yellow oak|1 +(noun)|black oak|quercitron|quercitron oak|Quercus velutina|oak|oak tree +yellow ocher|1 +(noun)|yellow ochre|ocher|ochre +yellow ochre|1 +(noun)|yellow ocher|ocher|ochre +yellow oleander|1 +(noun)|Thevetia peruviana|Thevetia neriifolia|shrub|bush +yellow pages|1 +(noun)|phonebook|phone book|telephone book|telephone directory +yellow paper daisy|1 +(noun)|strawflower|golden everlasting|Helichrysum bracteatum|everlasting|everlasting flower +yellow parilla|1 +(noun)|common moonseed|Canada moonseed|Menispermum canadense|moonseed +yellow pea|1 +(noun)|false lupine|golden pea|Thermopsis macrophylla|bush pea +yellow perch|1 +(noun)|Perca flavescens|perch +yellow peril|1 +(noun)|menace|threat +yellow pimpernel|1 +(noun)|Lysimachia nemorum|loosestrife +yellow pine|2 +(noun)|pine|pine tree|true pine +(noun)|pine +yellow pitcher plant|1 +(noun)|huntsman's horn|huntsman's horns|yellow trumpet|trumpets|Sarracenia flava|pitcher plant +yellow pond lily|1 +(noun)|spatterdock|cow lily|Nuphar advena|water lily +yellow poplar|2 +(noun)|tulipwood|true tulipwood|whitewood|white poplar|wood +(noun)|tulip tree|tulip poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree|flowering tree +yellow prussiate of potash|1 +(noun)|potassium ferrocyanide|ferrocyanide +yellow race|1 +(noun)|Yellow race|Mongoloid race|Mongolian race|race +yellow river|1 +(noun)|Huang He|Hwang Ho|Yellow River|river +yellow rocket|1 +(noun)|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed +yellow root|1 +(noun)|goldenseal|golden seal|turmeric root|Hydrastis Canadensis|herb|herbaceous plant +yellow salsify|1 +(noun)|Tragopogon dubius|wildflower|wild flower +yellow sand verbena|1 +(noun)|Abronia latifolia|sand verbena +yellow sea|1 +(noun)|Yellow Sea|sea +yellow spiny daisy|1 +(noun)|Haplopappus spinulosus|goldenbush +yellow spot|2 +(noun)|plant disease +(noun)|macula|macula lutea|macular area|area|region +yellow spot fungus|1 +(noun)|Cercospora kopkei|fungus +yellow spruce|1 +(noun)|red spruce|eastern spruce|Picea rubens|spruce +yellow squash|2 +(noun)|summer squash|summer squash vine|Cucurbita pepo melopepo +(noun)|summer squash +yellow star-thistle|1 +(noun)|Barnaby's thistle|Centaurea solstitialis|weed +yellow sweet clover|1 +(noun)|Melilotus officinalis|melilotus|melilot|sweet clover +yellow trefoil|1 +(noun)|black medick|hop clover|nonesuch clover|Medicago lupulina|medic|medick|trefoil +yellow trumpet|1 +(noun)|huntsman's horn|huntsman's horns|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant +yellow turnip|1 +(noun)|rutabaga|swede|swedish turnip|turnip +yellow twining snapdragon|1 +(noun)|Antirrhinum filipes|snapdragon +yellow vetchling|1 +(noun)|common vetchling|meadow pea|Lathyrus pratensis|wild pea +yellow warbler|1 +(noun)|golden warbler|yellowbird|Dendroica petechia|New World warbler|wood warbler +yellow water flag|1 +(noun)|yellow iris|yellow flag|Iris pseudacorus|iris|flag|fleur-de-lis|sword lily +yellow water lily|1 +(noun)|Nuphar lutea|water lily +yellow watercress|1 +(noun)|marsh cress|Rorippa islandica|watercress +yellow woman|1 +(noun)|woman|adult female|Oriental|oriental person +yellowbelly marmot|1 +(noun)|rockchuck|Marmota flaviventris|marmot +yellowbird|2 +(noun)|yellow warbler|golden warbler|Dendroica petechia|New World warbler|wood warbler +(noun)|New world goldfinch|goldfinch|Spinus tristis|finch +yellowcake|1 +(noun)|U308|compound|chemical compound +yellowed|1 +(adj)|yellow|old +yellowfin|1 +(noun)|yellowfin tuna|Thunnus albacares|tuna|tunny +yellowfin croaker|1 +(noun)|surffish|surf fish|Umbrina roncador|croaker +yellowfin mojarra|1 +(noun)|Gerres cinereus|mojarra +yellowfin tuna|1 +(noun)|yellowfin|Thunnus albacares|tuna|tunny +yellowhammer|2 +(noun)|yellow-shafted flicker|Colaptes auratus|flicker +(noun)|yellow bunting|Emberiza citrinella|bunting +yellowish|1 +(adj)|yellow|xanthous|chromatic +yellowish brown|1 +(noun)|raw sienna|buff|caramel|caramel brown|brown|brownness +yellowish green|1 +(noun)|yellow green|chartreuse|Paris green|pea green|green|greenness|viridity +yellowish pink|1 +(noun)|apricot|peach|salmon pink|pink +yellowknife|1 +(noun)|Yellowknife|town +yellowlegs|1 +(noun)|sandpiper +yellowness|1 +(noun)|yellow|chromatic color|chromatic colour|spectral color|spectral colour +yellowstone|1 +(noun)|Yellowstone|Yellowstone River|river +yellowstone national park|1 +(noun)|Yellowstone National Park|national park +yellowstone river|1 +(noun)|Yellowstone|Yellowstone River|river +yellowtail|2 +(noun)|yellowtail snapper|Ocyurus chrysurus|snapper +(noun)|Seriola dorsalis|jack +yellowtail flounder|2 +(noun)|flounder +(noun)|Limanda ferruginea|righteye flounder|righteyed flounder +yellowtail snapper|1 +(noun)|yellowtail|Ocyurus chrysurus|snapper +yellowthroat|1 +(noun)|New World warbler|wood warbler +yellowwood|2 +(noun)|wood +(noun)|yellowwood tree|tree +yellowwood tree|1 +(noun)|yellowwood|tree +yelp|2 +(noun)|yelping|cry +(verb)|yip|yap|bark +yelping|1 +(noun)|yelp|cry +yemen|1 +(noun)|Yemen|Republic of Yemen|Asian country|Asian nation +yemeni|2 +(adj)|Yemeni|Asian country|Asian nation +(noun)|Yemeni|Arab|Arabian +yemeni fils|1 +(noun)|Yemeni fils|fils|Yemeni monetary unit +yemeni monetary unit|1 +(noun)|Yemeni monetary unit|monetary unit +yemeni rial|1 +(noun)|Yemeni rial|rial|Yemeni monetary unit +yen|3 +(noun)|hankering|longing|yearning +(noun)|Japanese monetary unit +(verb)|ache|yearn|pine|languish|hanker|long|yearn +yenisei|2 +(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +yenisei-samoyed|1 +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +yenisei river|1 +(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river +yeniseian|2 +(noun)|Yeniseian|Russian +(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic|Samoyed +yenisey|1 +(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river +yenisey river|1 +(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river +yenta|2 +(noun)|shrew|termagant +(noun)|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger +yeoman|2 +(noun)|yeoman of the guard|beefeater|bodyguard|escort +(noun)|freeholder +yeoman of the guard|1 +(noun)|yeoman|beefeater|bodyguard|escort +yeomanry|2 +(noun)|class|social class|socio-economic class +(noun)|guard|bodyguard +yerba buena|1 +(noun)|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb|herbaceous plant +yerba mansa|1 +(noun)|Anemopsis californica|herb|herbaceous plant +yerba santa|1 +(noun)|Eriodictyon californicum|shrub|bush +yerevan|1 +(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital +yerkes|1 +(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist +yersin|1 +(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist +yersinia pestis|1 +(noun)|Yersinia pestis|Bacillus|Bacilli|B +yerupaja|1 +(noun)|Yerupaja|mountain peak +yerwa-maiduguri|1 +(noun)|Maiduguri|Yerwa-Maiduguri|city|metropolis|urban center +yes|1 +(noun)|affirmative +yes-man|1 +(noun)|flunky|flunkey|stooge|follower +yes-no question|1 +(noun)|question|interrogation|interrogative|interrogative sentence +yeshiva|1 +(noun)|yeshivah|academy +yeshivah|1 +(noun)|yeshiva|academy +yesterday|2 +(noun)|day|twenty-four hours|solar day|mean solar day +(noun)|past|past times|yesteryear|yore +yesteryear|1 +(noun)|past|past times|yore|time +yet|5 +(adv)|so far|thus far|up to now|hitherto|heretofore|as yet|til now|until now +(adv)|even|still +(adv)|eventually|sooner or later|in time|one of these days +(adv)|so far +(adv)|however|nevertheless|withal|still|all the same|even so|nonetheless|notwithstanding +yeti|1 +(noun)|abominable snowman|legendary creature +yevgeni aleksandrovich yevtushenko|1 +(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet +yevgeni yevtushenko|1 +(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet +yevtushenko|1 +(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet +yew|2 +(noun)|wood +(noun)|conifer|coniferous tree +yew family|1 +(noun)|Taxaceae|family Taxaceae|gymnosperm family +yezo|1 +(noun)|Hokkaido|Ezo|Yezo|island +ygdrasil|1 +(noun)|Yggdrasil|Ygdrasil|mythical being|ash|ash tree +yggdrasil|1 +(noun)|Yggdrasil|Ygdrasil|mythical being|ash|ash tree +yhvh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yhwh|1 +(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God|Supreme Being +yi|1 +(noun)|Lolo|Yi|Loloish +yiddish|1 +(noun)|Yiddish|German|High German|German language +yield|16 +(noun)|output|production +(noun)|fruit|product|production +(noun)|return|issue|proceeds|take|takings|payoff|income +(noun)|output|production|indefinite quantity +(verb)|give|afford|supply|provide|render|furnish +(verb)|give way|change +(verb)|render|return|give|generate|produce|make|create +(verb)|concede|cede|grant|give +(verb)|relent|soften +(verb)|move over|give way|give|ease up|move +(verb)|give|bring about|make|create +(verb)|concede|grant|agree|hold|concur|concord +(verb)|succumb|die|decease|perish|go|exit|pass away|expire|pass +(verb)|pay|bear|gain|take in|clear|make|earn|realize|realise|pull in|bring in +(verb)|give|stretch +(verb)|give in|succumb|knuckle under|buckle under|accept|consent|go for +yield up|1 +(verb)|surrender|cede|deliver|give up +yielder|1 +(noun)|surrenderer|person|individual|someone|somebody|mortal|human|soul +yielding|6 +(adj)|docile +(adj)|soft +(adj)|compromising |conciliatory|flexible +(adj)|complying|obliging|compliant +(noun)|giving up|surrender|relinquishment|relinquishing +(noun)|concession|conceding|assent|acquiescence +yieldingly|1 +(adv)|obediently +yin|1 +(noun)|principle|rule +yip|1 +(verb)|yelp|yap|bark +yips|1 +(noun)|tension|tenseness|stress +yisrael|1 +(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country|state|land +ylang-ylang|1 +(noun)|ilang-ilang|Cananga odorata|angiospermous tree|flowering tree +ylem|1 +(noun)|substance|matter +ymir|1 +(noun)|Ymir|mythical being +yo-yo|1 +(noun)|plaything|toy +yob|1 +(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yobo|yobbo|attacker|aggressor|assailant|assaulter +yobbo|1 +(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|attacker|aggressor|assailant|assaulter +yobo|1 +(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobbo|attacker|aggressor|assailant|assaulter +yodel|2 +(noun)|cry|outcry|call|yell|shout|vociferation +(verb)|warble|descant|sing +yodeling|1 +(noun)|singing|vocalizing +yodeller|1 +(noun)|singer|vocalist|vocalizer|vocaliser +yodh|1 +(noun)|letter|letter of the alphabet|alphabetic character +yoga|2 +(noun)|Hinduism|Hindooism +(noun)|exercise|exercising|physical exercise|physical exertion|workout +yogacara|1 +(noun)|Yogacara|Mahayana|Mahayana Buddhism +yoghourt|1 +(noun)|yogurt|yoghurt|dairy product|food +yoghurt|1 +(noun)|yogurt|yoghourt|dairy product|food +yogi|2 +(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer|baseball player +(noun)|philosopher +yogi berra|1 +(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer|baseball player +yogic|1 +(adj)|yogistic|Hinduism|Hindooism +yogistic|1 +(adj)|yogic|Hinduism|Hindooism +yogurt|1 +(noun)|yoghurt|yoghourt|dairy product|food +yoke|10 +(noun)|fabric|cloth|material|textile +(noun)|oppression +(noun)|couple|pair|twosome|twain|brace|span|couplet|distich|duo|duet|dyad|duad|two|2|II|deuce +(noun)|pair +(noun)|support +(noun)|coupling|connection|connexion|connector|connecter|connective +(noun)|stable gear|saddlery|tack +(verb)|join|conjoin +(verb)|link|attach +(verb)|attach +yokel|1 +(noun)|rube|hick|yahoo|hayseed|bumpkin|chawbacon|rustic +yokel-like|1 +(adj)|stupid +yokelish|1 +(adj)|ill-bred|bounderish|lowbred|rude|underbred|unrefined +yoko ono|1 +(noun)|Ono|Yoko Ono|musician +yokohama|1 +(noun)|Yokohama|city|metropolis|urban center|port +yokuts|2 +(noun)|Mariposan|Yokuts|Penutian +(noun)|Yokuts|Penutian +yolk|1 +(noun)|vitellus|food|nutrient +yolk sac|2 +(noun)|vitelline sac|umbilical vesicle|vesicula umbilicus|sac +(noun)|sac +yom kippur|1 +(noun)|Yom Kippur|Day of Atonement|High Holy Day|High Holiday +yom kippur war|1 +(noun)|Arab-Israeli War|Yom Kippur War|war|warfare +yon|2 +(adj)|yonder|distant +(adv)|yonder +yonder|2 +(adj)|yon|distant +(adv)|yon +yore|1 +(noun)|past|past times|yesteryear|time +york|1 +(noun)|York|House of York|dynasty|royalty|royal family|royal line|royal house +yorkshire|1 +(noun)|Yorkshire|geographical area|geographic area|geographical region|geographic region +yorkshire fog|1 +(noun)|velvet grass|Yorkshire fog|Holcus lanatus|grass +yorkshire pudding|1 +(noun)|Yorkshire pudding|quick bread +yorkshire terrier|1 +(noun)|Yorkshire terrier|terrier +yorktown|1 +(noun)|Yorktown|siege|besieging|beleaguering|military blockade +yoruba|2 +(noun)|Yoruba|Nigerian +(noun)|Yoruba|Aku|Kwa +yosemite|1 +(noun)|Yosemite|Yosemite Falls|waterfall|falls +yosemite falls|1 +(noun)|Yosemite|Yosemite Falls|waterfall|falls +yosemite national park|1 +(noun)|Yosemite National Park|national park +yosemite toad|1 +(noun)|Yosemite toad|Bufo canorus|true toad +you're welcome|1 +(adj)|welcome +you-drive|1 +(noun)|car rental|hire car|rent-a-car|self-drive|u-drive|lease|rental|letting +you bet|1 +(adv)|and how|you said it +you said it|1 +(adv)|and how|you bet +young|11 +(adj)|young |immature|adolescent|teen|teenage|teenaged|boyish|boylike|schoolboyish|childlike|childly|early|formative|girlish|schoolgirlish|infantile|junior|little|small|newborn|puppyish|puppylike|tender|vulnerable|youngish|youthful|vernal|preteen|preadolescent|immature|junior|new +(adj)|new|early +(noun)|offspring|animal|animate being|beast|brute|creature|fauna +(noun)|Young|Loretta Young|actress +(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader|civil rights worker|civil rights activist +(noun)|Young|Thomas Young|physicist|Egyptologist +(noun)|Young|Pres Young|Lester Willis Young|saxophonist|saxist +(noun)|Young|Edward Young|poet +(noun)|Young|Cy Young|Danton True Young|ballplayer|baseball player +(noun)|Young|Brigham Young|religious leader +(noun)|youth|age group|age bracket|cohort +young's modulus|1 +(noun)|Young's modulus|coefficient of elasticity|modulus of elasticity|elastic modulus +young-bearing|1 +(adj)|egg-producing|female +young-begetting|1 +(adj)|male +young bird|1 +(noun)|young|offspring +young buck|1 +(noun)|young man|adolescent|stripling|teenager +young carnivore|1 +(noun)|cub|young mammal +young fish|1 +(noun)|young|offspring|fish +young girl|1 +(noun)|lass|lassie|jeune fille|girl|miss|missy|young lady|young woman|fille +young lady|1 +(noun)|girl|miss|missy|young woman|fille|woman|adult female +young mammal|1 +(noun)|young|offspring +young man|2 +(noun)|young buck|adolescent|stripling|teenager +(noun)|boyfriend|fellow|beau|swain|man|adult male|lover +young person|1 +(noun)|youth|younker|spring chicken|juvenile|juvenile person +young turk|2 +(noun)|Young Turk|insurgent|insurrectionist|freedom fighter|rebel +(noun)|Young Turk|radical +young woman|1 +(noun)|girl|miss|missy|young lady|fille|woman|adult female +younger|4 +(adj)|little +(adj)|jr.|junior +(adj)|young |immature|adolescent|teen|teenage|teenaged|boyish|boylike|schoolboyish|childlike|childly|early|formative|girlish|schoolgirlish|infantile|junior|little|small|newborn|puppyish|puppylike|tender|vulnerable|youngish|youthful|vernal|preteen|preadolescent|immature|junior|new +(adj)|new|young|early +youngish|1 +(adj)|young |immature +youngness|1 +(noun)|age +youngster|1 +(noun)|child|kid|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile|juvenile person +youngstown|1 +(noun)|Youngstown|city|metropolis|urban center +younker|1 +(noun)|young person|youth|spring chicken|juvenile|juvenile person +youth|6 +(noun)|young person|younker|spring chicken|juvenile|juvenile person +(noun)|young|age group|age bracket|cohort +(noun)|time of life +(noun)|maturity|matureness +(noun)|early days|time period|period of time|period +(noun)|youthfulness|juvenility|youngness +youth-on-age|1 +(noun)|pickaback plant|piggyback plant|Tolmiea menziesii|herb|herbaceous plant +youth crusade|1 +(noun)|youth movement|campaign|cause|crusade|drive|movement|effort +youth culture|1 +(noun)|subculture|coevals|contemporaries|generation +youth gang|1 +(noun)|gang|pack|ring|mob +youth hostel|1 +(noun)|hostel|student lodging|housing|lodging|living accommodations +youth movement|1 +(noun)|youth crusade|campaign|cause|crusade|drive|movement|effort +youth subculture|1 +(noun)|youth culture +youthful|1 +(adj)|vernal|young |immature +youthfulness|1 +(noun)|youth|juvenility|youngness +yowl|3 +(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roar|roaring|cry|outcry|call|yell|shout|vociferation +(verb)|howl|wrawl|yammer|utter|emit|let out|let loose +(verb)|caterwaul|shriek|shrill|pipe up|pipe +ypres|3 +(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle +(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle +(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle +yquem|1 +(noun)|Yquem|white wine +yr|1 +(noun)|year|twelvemonth|time period|period of time|period +ytterbite|1 +(noun)|gadolinite|mineral +ytterbium|1 +(noun)|Yb|atomic number 70|metallic element|metal +yttrium|1 +(noun)|Y|atomic number 39|metallic element|metal +yuan|2 +(noun)|kwai|Chinese monetary unit +(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty +yuan dynasty|1 +(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty +yucatan|1 +(noun)|Yucatan|Yucatan Peninsula|peninsula +yucatan peninsula|1 +(noun)|Yucatan|Yucatan Peninsula|peninsula +yucatec|2 +(noun)|Yucatec|Yucateco|Mayan|Maya +(noun)|Yucatec|Yucateco|Maya|Mayan|Mayan language +yucateco|2 +(noun)|Yucatec|Yucateco|Mayan|Maya +(noun)|Yucatec|Yucateco|Maya|Mayan|Mayan language +yucca|1 +(noun)|shrub|bush +yucca aloifolia|1 +(noun)|Spanish bayonet|Yucca aloifolia|yucca +yucca baccata|1 +(noun)|Spanish bayonet|Yucca baccata|yucca +yucca brevifolia|1 +(noun)|Joshua tree|Yucca brevifolia|yucca +yucca carnerosana|1 +(noun)|Spanish dagger|Yucca carnerosana|yucca +yucca elata|1 +(noun)|soapweed|soap-weed|soap tree|Yucca elata|yucca +yucca filamentosa|1 +(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca +yucca glauca|1 +(noun)|bear grass|Yucca glauca|yucca +yucca gloriosa|1 +(noun)|Spanish dagger|Yucca gloriosa|yucca +yucca smalliana|1 +(noun)|bear grass|Yucca smalliana|yucca +yucca whipplei|1 +(noun)|Our Lord's candle|Yucca whipplei|yucca +yucky|1 +(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|offensive +yue|1 +(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese +yue dialect|1 +(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese +yugoslav|2 +(adj)|Yugoslavian|Yugoslav|European country|European nation +(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European +yugoslavia|1 +(noun)|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|Serbia and Montenegro|European country|European nation +yugoslavian|2 +(adj)|Yugoslavian|Yugoslav|European country|European nation +(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European +yugoslavian dinar|1 +(noun)|Yugoslavian dinar|dinar|Yugoslavian monetary unit +yugoslavian monetary unit|1 +(noun)|Yugoslavian monetary unit|monetary unit +yukawa|1 +(noun)|Yukawa|Hideki Yukawa|nuclear physicist +yukon|2 +(noun)|Yukon|Yukon River|river +(noun)|Yukon|Yukon Territory|district|territory|territorial dominion|dominion +yukon river|1 +(noun)|Yukon|Yukon River|river +yukon territory|1 +(noun)|Yukon|Yukon Territory|district|territory|territorial dominion|dominion +yukon time|1 +(noun)|Alaska Standard Time|Yukon Time|civil time|standard time|local time +yukon white birch|1 +(noun)|Yukon white birch|Betula neoalaskana|birch|birch tree +yule|1 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +yule log|1 +(noun)|Yule log|backlog|log +yuletide|1 +(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season +yuma|3 +(noun)|Yuma|Hokan|Hoka +(noun)|Yuma|town +(noun)|Yuma|Yuman +yuman|1 +(noun)|Yuman|Hokan|Hoka +yummy|1 +(adj)|delectable|delicious|luscious|pleasant-tasting|scrumptious|toothsome|tasteful +yunnan|1 +(noun)|Yunnan|Yunnan province|state|province +yunnan province|1 +(noun)|Yunnan|Yunnan province|state|province +yuppie|1 +(noun)|professional|professional person +yurak-samoyed|1 +(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic|Samoyed +yuri alekseyevich gagarin|1 +(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut|spaceman|cosmonaut +yuri gagarin|1 +(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut|spaceman|cosmonaut +yurt|1 +(noun)|dwelling|home|domicile|abode|habitation|dwelling house +yves tanguy|1 +(noun)|Tanguy|Yves Tanguy|painter +z|2 +(noun)|omega|Z|ending|conclusion|finish +(noun)|Z|zee|zed|ezed|izzard|letter|letter of the alphabet|alphabetic character +z-axis|1 +(noun)|coordinate axis +zaar|1 +(noun)|Zaar|Sayanci|West Chadic +zabaglione|1 +(noun)|sabayon|dessert|sweet|afters +zacharias|2 +(noun)|Zechariah|Zacharias|prophet +(noun)|Zechariah|Zacharias|Book of Zachariah|book +zachary taylor|1 +(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States|United States President|President|Chief Executive +zaftig|1 +(adj)|buxom|chubby|embonpoint|plump|zoftig|fat +zag|1 +(noun)|zigzag|zig|angular shape|angularity +zaglossus|1 +(noun)|Zaglossus|genus Zaglossus|mammal genus +zagreb|1 +(noun)|Zagreb|national capital +zaharias|1 +(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete|jock +zaire|2 +(noun)|Zairese monetary unit +(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country|African nation +zairean|2 +(adj)|Zairean|Zairese|African country|African nation +(noun)|Zairese|Zairean|African +zairese|2 +(adj)|Zairean|Zairese|African country|African nation +(noun)|Zairese|Zairean|African +zairese monetary unit|1 +(noun)|Zairese monetary unit|monetary unit +zakat|1 +(noun)|pillar of Islam|charity +zalophus|1 +(noun)|Zalophus|genus Zalophus|mammal genus +zalophus californianus|1 +(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion +zalophus californicus|1 +(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion +zalophus lobatus|1 +(noun)|Australian sea lion|Zalophus lobatus|sea lion +zama|1 +(noun)|Zama|battle of Zama|pitched battle +zaman|1 +(noun)|rain tree|saman|monkeypod|monkey pod|zamang|Albizia saman|albizzia|albizia +zamang|1 +(noun)|rain tree|saman|monkeypod|monkey pod|zaman|Albizia saman|albizzia|albizia +zambezi|1 +(noun)|Zambezi|Zambezi River|river +zambezi river|1 +(noun)|Zambezi|Zambezi River|river +zambia|1 +(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country|African nation +zambian|2 +(adj)|Zambian|African country|African nation +(noun)|Zambian|African +zambian kwacha|1 +(noun)|Zambian kwacha|kwacha|Zambian monetary unit +zambian monetary unit|1 +(noun)|Zambian monetary unit|monetary unit +zamboni|1 +(noun)|Zamboni|machine +zamia|1 +(noun)|cycad +zamia family|1 +(noun)|Zamiaceae|family Zamiaceae|gymnosperm family +zamia pumila|1 +(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia +zamiaceae|1 +(noun)|Zamiaceae|family Zamiaceae|zamia family|gymnosperm family +zane grey|1 +(noun)|Grey|Zane Grey|writer|author +zangwill|1 +(noun)|Zangwill|Israel Zangwill|writer|author +zannichellia|1 +(noun)|Zannichellia|genus Zannichellia|monocot genus|liliopsid genus +zannichellia palustris|1 +(noun)|horned pondweed|Zannichellia palustris|pondweed +zannichelliaceae|1 +(noun)|Zannichelliaceae|family Zannichelliaceae|monocot family|liliopsid family +zantac|1 +(noun)|ranitidine|Zantac|histamine blocker|antacid|gastric antacid|alkalizer|alkaliser|antiacid +zantedeschia|1 +(noun)|Zantedeschia|genus Zantedeschia|monocot genus|liliopsid genus +zantedeschia aethiopica|1 +(noun)|calla lily|calla|arum lily|Zantedeschia aethiopica|flower +zantedeschia rehmanii|1 +(noun)|pink calla|Zantedeschia rehmanii|calla lily|calla|arum lily|Zantedeschia aethiopica +zanthoxylum|1 +(noun)|Zanthoxylum|genus Zanthoxylum|rosid dicot genus +zanthoxylum americanum|1 +(noun)|toothache tree|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash +zanthoxylum clava-herculis|1 +(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash +zanthoxylum flavum|1 +(noun)|satinwood|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood +zanthoxylum fraxineum|1 +(noun)|toothache tree|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash +zanuck|1 +(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker|filmmaker|film producer|movie maker +zany|4 +(adj)|cockamamie|cockamamy|goofy|sappy|silly|wacky|whacky|unreasonable|foolish +(adj)|buffoonish|clownish|clowlike|humorous |humourous +(noun)|clown|buffoon|merry andrew +(noun)|fathead|goof|goofball|bozo|jackass|goose|cuckoo|twat|fool|sap|saphead|muggins|tomfool +zanzibar|1 +(noun)|Zanzibar|island +zanzibar copal|1 +(noun)|Zanzibar copal|anime|copal +zap|4 +(verb)|affect|impress|move|strike +(verb)|vaporize|kill +(verb)|nuke|atomize|atomise|bombard|bomb +(verb)|microwave|micro-cook|nuke|cook +zapata|1 +(noun)|Zapata|Emiliano Zapata|revolutionist|revolutionary|subversive|subverter +zapodidae|1 +(noun)|Zapodidae|family Zapodidae|mammal family +zapotec|3 +(adj)|Zapotec|Indian|North American Indian|American Indian|Red Indian +(noun)|Zapotec|Zapotecan|Indian|North American Indian|American Indian|Red Indian +(noun)|Zapotec|Zapotecan|Uto-Aztecan|Uto-Aztecan language +zapotecan|2 +(noun)|Zapotec|Zapotecan|Indian|North American Indian|American Indian|Red Indian +(noun)|Zapotec|Zapotecan|Uto-Aztecan|Uto-Aztecan language +zapper|1 +(noun)|electrical device +zapus|1 +(noun)|Zapus|genus Zapus|mammal genus +zapus hudsonius|1 +(noun)|meadow jumping mouse|Zapus hudsonius|jumping mouse +zaragoza|1 +(noun)|Zaragoza|Saragossa|city|metropolis|urban center +zarathustra|1 +(noun)|Zoroaster|Zarathustra|prophet +zarf|1 +(noun)|holder +zaria|1 +(noun)|Zaria|city|metropolis|urban center +zarontin|1 +(noun)|ethosuximide|Emeside|Zarontin|anticonvulsant|anticonvulsant drug|antiepileptic|antiepileptic drug +zarpanit|1 +(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity +zarqa|1 +(noun)|Zarqa|Az Zarqa|city|metropolis|urban center +zauschneria californica|1 +(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet +zayin|1 +(noun)|letter|letter of the alphabet|alphabetic character +zdv|1 +(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor|NRTI +zea|1 +(noun)|Zea|genus Zea|monocot genus|liliopsid genus +zea mays|1 +(noun)|corn|maize|Indian corn|Zea mays|cereal|cereal grass +zea mays amylacea|1 +(noun)|soft corn|flour corn|squaw corn|Zea mays amylacea|field corn +zea mays everta|1 +(noun)|popcorn|Zea mays everta|corn|maize|Indian corn|Zea mays +zea mays indentata|1 +(noun)|dent corn|Zea mays indentata|field corn +zea mays indurata|1 +(noun)|flint corn|flint maize|Yankee corn|Zea mays indurata|field corn +zea mays rugosa|1 +(noun)|sweet corn|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +zea saccharata|1 +(noun)|sweet corn|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn|maize|Indian corn|Zea mays|corn|edible corn +zeal|2 +(noun)|ardor|ardour|elan|eagerness|avidity|avidness|keenness +(noun)|ardor|ardour|fervor|fervour|fervency|fire|fervidness +zealand|1 +(noun)|Zealand|Seeland|Sjaelland|island +zealander|1 +(noun)|Zealander|Dane +zealot|2 +(noun)|Zealot|Jew|Hebrew|Israelite +(noun)|partisan|drumbeater|advocate|advocator|proponent|exponent +zealotry|1 +(noun)|fanaticism|intolerance +zealous|1 +(adj)|avid|great|eager|enthusiastic +zeaxanthin|1 +(noun)|carotenoid +zebra|1 +(noun)|equine|equid +zebra-tailed lizard|1 +(noun)|gridiron-tailed lizard|Callisaurus draconoides|iguanid|iguanid lizard +zebra crossing|1 +(noun)|pedestrian crossing|crossing|crosswalk|crossover +zebra finch|1 +(noun)|Poephila castanotis|grassfinch|grass finch +zebra mussel|1 +(noun)|Dreissena polymorpha|freshwater mussel|freshwater clam +zebra orchid|1 +(noun)|Caladenia cairnsiana|caladenia +zebrawood|2 +(noun)|wood +(noun)|zebrawood tree|tree +zebrawood family|1 +(noun)|Connaraceae|family Connaraceae|rosid dicot family +zebrawood tree|1 +(noun)|zebrawood|tree +zebu|1 +(noun)|Brahman|Brahma|Brahmin|Bos indicus +zechariah|2 +(noun)|Zechariah|Zacharias|prophet +(noun)|Zechariah|Zacharias|Book of Zachariah|book +zed|1 +(noun)|Z|zee|ezed|izzard|letter|letter of the alphabet|alphabetic character +zee|1 +(noun)|Z|zed|ezed|izzard|letter|letter of the alphabet|alphabetic character +zeeman|1 +(noun)|Zeeman|Pieter Zeeman|physicist +zeidae|1 +(noun)|Zeidae|family Zeidae|fish family +zeitgeist|1 +(noun)|Zeitgeist|spirit|tone|feel|feeling|flavor|flavour|look|smell +zen|3 +(noun)|Zen|Zen Buddhism|Buddhism +(noun)|Zen|Zen Buddhism|Buddhism +(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide|LSD +zen buddhism|2 +(noun)|Zen|Zen Buddhism|Buddhism +(noun)|Zen|Zen Buddhism|Buddhism +zen buddhist|1 +(noun)|Zen Buddhist|disciple|adherent +zenaidura|1 +(noun)|Zenaidura|genus Zenaidura|bird genus +zenaidura macroura|1 +(noun)|mourning dove|Zenaidura macroura|dove +zend|1 +(noun)|Avestan|Zend|Iranian|Iranian language +zend-avesta|1 +(noun)|Avesta|Zend-Avesta|sacred text|sacred writing|religious writing|religious text +zenith|1 +(noun)|celestial point +zenithal|1 +(adj)|celestial point +zeno|2 +(noun)|Zeno|Zeno of Elea|philosopher +(noun)|Zeno|Zeno of Citium|philosopher +zeno of citium|1 +(noun)|Zeno|Zeno of Citium|philosopher +zeno of elea|1 +(noun)|Zeno|Zeno of Elea|philosopher +zeolite|1 +(noun)|mineral|water softener +zeomorphi|1 +(noun)|Zeomorphi|order Zeomorphi|animal order +zep|1 +(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|sandwich +zephaniah|2 +(noun)|Zephaniah|Sophonias|prophet +(noun)|Zephaniah|Sophonias|Book of Zephaniah|book +zephyr|2 +(noun)|breeze|gentle wind|air|wind|air current|current of air +(noun)|Zephyr|Greek deity +zeppelin|2 +(noun)|Zeppelin|Count Ferdinand von Zeppelin|inventor|discoverer|artificer +(noun)|Graf Zeppelin|airship|dirigible +zeppo|1 +(noun)|Marx|Herbert Marx|Zeppo|comedian|comic +zero|9 +(adj)|0|cardinal +(adj)|ordinal +(adj)|set +(adj)|no +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zilch|zip|relative quantity +(noun)|0|nought|cipher|cypher|digit|figure +(noun)|zero point|numerical quantity +(verb)|adjust|set|correct +(verb)|zero in|adjust|set|correct +zero-coupon bond|2 +(noun)|zero-coupon security +(noun)|zero coupon bond|bond|bond certificate +zero-coupon security|1 +(noun)|security|certificate +zero-sum game|1 +(noun)|game +zero-tolerance policy|1 +(noun)|policy +zero coupon bond|1 +(noun)|bond|bond certificate +zero hour|1 +(noun)|hour|time of day +zero in|2 +(verb)|range in|home in|target|aim|place|direct|point +(verb)|zero|adjust|set|correct +zero point|1 +(noun)|zero|numerical quantity +zero tolerance|1 +(noun)|intolerance +zeroth|1 +(adj)|ordinal +zeroth law of thermodynamics|1 +(noun)|law of thermodynamics +zest|3 +(noun)|gusto|relish|zestfulness|enjoyment|enthusiasm +(noun)|nip|piquance|piquancy|tang|tanginess|spiciness|spice|spicery +(verb)|spice|spice up|season|flavor|flavour +zestful|1 +(adj)|yeasty|zesty|barmy|spirited +zestfully|1 +(adv)|zestily +zestfulness|1 +(noun)|gusto|relish|zest|enjoyment|enthusiasm +zestily|1 +(adv)|zestfully +zestril|1 +(noun)|lisinopril|Prinivil|Zestril|ACE inhibitor|angiotensin converting enzyme inhibitor +zesty|2 +(adj)|piquant|savory|savoury|spicy|tasteful +(adj)|zestful|yeasty|barmy|spirited +zeta|1 +(noun)|letter|letter of the alphabet|alphabetic character +zetland|1 +(noun)|Shetland|Shetland Islands|Zetland|archipelago +zeugma|1 +(noun)|trope|figure of speech|figure|image +zeus|2 +(noun)|Zeus|Greek deity +(noun)|Zeus|genus Zeus|fish genus +zeus faber|1 +(noun)|John dory|Zeus faber|dory +zhou|1 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +zhou dynasty|1 +(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty +zhou en-lai|1 +(noun)|Zhou En-lai|Chou En-lai|revolutionist|revolutionary|subversive|subverter|communist|commie +zhu jiangi|1 +(noun)|Zhu Jiangi|Canton River|Chu Kiang|river +zhuang|1 +(noun)|Zhuang|Tai +zhukov|1 +(noun)|Zhukov|Georgi Konstantinovich Zhukov|general|full general +zidovudine|1 +(noun)|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor|NRTI +ziegfeld|1 +(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer +ziegfeld follies|1 +(noun)|Ziegfeld Follies|follies +ziegler|1 +(noun)|Ziegler|Karl Waldemar Ziegler|chemist +zig|1 +(noun)|zigzag|zag|angular shape|angularity +zigadene|1 +(noun)|death camas|liliaceous plant +zigadenus|1 +(noun)|Zigadenus|genus Zigadenus|liliid monocot genus +zigadenus elegans|1 +(noun)|alkali grass|Zigadenus elegans|death camas|zigadene +zigadenus glaucus|1 +(noun)|white camas|Zigadenus glaucus|death camas|zigadene +zigadenus nuttalli|1 +(noun)|poison camas|Zigadenus nuttalli|death camas|zigadene +zigadenus venenosus|1 +(noun)|grassy death camas|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas|zigadene +zigadenus venenosus gramineus|1 +(noun)|grassy death camas|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas|zigadene +ziggurat|1 +(noun)|zikkurat|zikurat|temple +zigzag|3 +(adj)|crooked +(noun)|zig|zag|angular shape|angularity +(verb)|crank|travel|go|move|locomote +zigzag goldenrod|1 +(noun)|broad leaved goldenrod|goldenrod +zikkurat|1 +(noun)|ziggurat|zikurat|temple +zikurat|1 +(noun)|ziggurat|zikkurat|temple +zilch|1 +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zip|relative quantity +zill|1 +(noun)|cymbal +zillion|1 +(adj)|a zillion|cardinal +zillions|1 +(noun)|millions|billions|trillions|jillions|large indefinite quantity|large indefinite amount +zimbabwe|1 +(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country|African nation +zimbabwean|2 +(adj)|Zimbabwean|African country|African nation +(noun)|Zimbabwean|African +zimbabwean dollar|1 +(noun)|Zimbabwean dollar|dollar +zimbalist|1 +(noun)|Zimbalist|Efrem Zimbalist|violinist|fiddler +zimmer|1 +(noun)|walker|Zimmer|Zimmer frame|framework|frame|framing +zimmer frame|1 +(noun)|walker|Zimmer|Zimmer frame|framework|frame|framing +zinacef|1 +(noun)|cefuroxime|Ceftin|Zinacef|cephalosporin|Mefoxin +zinc|1 +(noun)|Zn|atomic number 30|metallic element|metal +zinc blende|1 +(noun)|blende|sphalerite|mineral +zinc cadmium sulfide|1 +(noun)|cadmium sulfide +zinc deficiency|1 +(noun)|deficiency disease +zinc ointment|1 +(noun)|ointment|unction|unguent|balm|salve +zinc oxide|1 +(noun)|flowers of zinc|philosopher's wool|oxide +zinc sulfate|1 +(noun)|zinc sulphate|white vitriol|zinc vitriol|sulfate|sulphate +zinc sulphate|1 +(noun)|zinc sulfate|white vitriol|zinc vitriol|sulfate|sulphate +zinc vitriol|1 +(noun)|zinc sulfate|zinc sulphate|white vitriol|sulfate|sulphate +zinc white|1 +(noun)|pigment +zinfandel|2 +(noun)|Zinfandel|vinifera|vinifera grape|common grape vine|Vitis vinifera +(noun)|red wine +zing|2 +(noun)|sound +(noun)|dynamism|pizzazz|pizzaz|oomph|activeness|activity +zinger|1 +(noun)|remark|comment +zingiber|1 +(noun)|Zingiber|genus Zingiber|monocot genus|liliopsid genus +zingiber officinale|1 +(noun)|common ginger|Canton ginger|stem ginger|Zingiber officinale|ginger +zingiberaceae|1 +(noun)|Zingiberaceae|family Zingiberaceae|ginger family|monocot family|liliopsid family +zinjanthropus|1 +(noun)|Zinjanthropus|genus Zinjanthropus|australopithecine +zinkenite|1 +(noun)|mineral +zinnemann|1 +(noun)|Zinnemann|Fred Zinnemann|film maker|filmmaker|film producer|movie maker +zinnia|1 +(noun)|old maid|old maid flower|flower +zinnia acerosa|1 +(noun)|white zinnia|Zinnia acerosa|zinnia|old maid|old maid flower +zinnia grandiflora|1 +(noun)|little golden zinnia|Zinnia grandiflora|zinnia|old maid|old maid flower +zinnwaldite|1 +(noun)|mica|isinglass +zinsser|1 +(noun)|Zinsser|Hans Zinsser|bacteriologist +zinzendorf|1 +(noun)|Zinzendorf|Count Nikolaus Ludwig von Zinzendorf|theologian|theologist|theologizer|theologiser +zion|3 +(noun)|Zion|Sion|hill +(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country|state|land +(noun)|Utopia|Zion|Sion|imaginary place|mythical place +zion national park|1 +(noun)|Zion National Park|national park +zionism|2 +(noun)|Zionism|policy +(noun)|Zionism|Zionist movement|movement|social movement|front +zionist|3 +(adj)|Zionist|policy +(adj)|Zionist|Jew|Hebrew|Israelite +(noun)|Zionist|Jew|Hebrew|Israelite +zionist movement|1 +(noun)|Zionism|Zionist movement|movement|social movement|front +zip|4 +(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|relative quantity +(noun)|slide fastener|zipper|zip-fastener|fastener|fastening|holdfast|fixing +(verb)|zip up|zipper|fasten|fix|secure +(verb)|travel rapidly|speed|hurry|travel|go|move|locomote +zip-fastener|1 +(noun)|slide fastener|zip|zipper|fastener|fastening|holdfast|fixing +zip by|1 +(verb)|fly by|whisk by|travel by|pass by|surpass|go past|go by|pass +zip code|1 +(noun)|postcode|postal code|code +zip gun|1 +(noun)|pistol|handgun|side arm|shooting iron +zip up|1 +(verb)|zipper|zip|fasten|fix|secure +ziphiidae|1 +(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family +zipper|2 +(noun)|slide fastener|zip|zip-fastener|fastener|fastening|holdfast|fixing +(verb)|zip up|zip|fasten|fix|secure +zippy|2 +(adj)|brisk|lively|merry|rattling|snappy|spanking|energetic +(adj)|bouncing|bouncy|peppy|spirited|lively +zirbanit|1 +(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity +zircon|1 +(noun)|zirconium silicate|mineral +zirconia|1 +(noun)|zirconium oxide|zirconium dioxide|oxide +zirconium|1 +(noun)|Zr|atomic number 40|metallic element|metal +zirconium dioxide|1 +(noun)|zirconium oxide|zirconia|oxide +zirconium oxide|1 +(noun)|zirconia|zirconium dioxide|oxide +zirconium silicate|1 +(noun)|zircon|mineral +zither|1 +(noun)|cither|zithern|stringed instrument +zithern|1 +(noun)|zither|cither|stringed instrument +ziti|1 +(noun)|pasta|alimentary paste +zizania|1 +(noun)|Zizania|genus Zizania|monocot genus|liliopsid genus +zizania aquatica|1 +(noun)|wild rice|Zizania aquatica|cereal|cereal grass +ziziphus|1 +(noun)|Ziziphus|genus Ziziphus|dicot genus|magnoliopsid genus +ziziphus jujuba|1 +(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub|bush +ziziphus lotus|1 +(noun)|lotus tree|Ziziphus lotus|shrub|bush +zizz|2 +(noun)|sound +(noun)|nap|catnap|cat sleep|forty winks|short sleep|snooze +zloty|1 +(noun)|Polish monetary unit +zn|1 +(noun)|zinc|Zn|atomic number 30|metallic element|metal +zoanthropy|1 +(noun)|delusion|psychotic belief +zoarces|1 +(noun)|Zoarces|genus Zoarces|fish genus +zoarces viviparus|1 +(noun)|viviparous eelpout|Zoarces viviparus|eelpout|pout +zoarcidae|1 +(noun)|Zoarcidae|family Zoarcidae|fish family +zocor|1 +(noun)|simvastatin|Zocor|lipid-lowering medicine|lipid-lowering medication|statin drug|statin +zodiac|2 +(noun)|region|part +(noun)|diagram +zodiacal|1 +(adj)|region|part +zodiacal light|1 +(noun)|reflection|reflexion +zoftig|1 +(adj)|buxom|chubby|embonpoint|plump|zaftig|fat +zoic|1 +(adj)|organism|being +zoisia|1 +(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus|liliopsid genus +zola|1 +(noun)|Zola|Emile Zola|novelist +zolaesque|1 +(adj)|Zolaesque|novelist +zollinger-ellison syndrome|1 +(noun)|Zollinger-Ellison syndrome|syndrome +zoloft|1 +(noun)|sertraline|Zoloft|selective-serotonin reuptake inhibitor|SSRI +zomba|1 +(noun)|Zomba|city|metropolis|urban center +zombi|5 +(noun)|zombie|zombi spirit|zombie spirit|spirit|disembodied spirit +(noun)|zombie|snake god|deity|divinity|god|immortal +(noun)|zombie|the living dead|dead person|dead soul|deceased person|deceased|decedent|departed +(noun)|automaton|zombie|anomaly|unusual person +(noun)|zombie|highball +zombi spirit|1 +(noun)|zombi|zombie|zombie spirit|spirit|disembodied spirit +zombie|5 +(noun)|zombi|the living dead|dead person|dead soul|deceased person|deceased|decedent|departed +(noun)|zombi|zombi spirit|zombie spirit|spirit|disembodied spirit +(noun)|zombi|snake god|deity|divinity|god|immortal +(noun)|automaton|zombi|anomaly|unusual person +(noun)|zombi|highball +zombie spirit|1 +(noun)|zombi|zombie|zombi spirit|spirit|disembodied spirit +zona|1 +(noun)|zone|structure|anatomical structure|complex body part|bodily structure|body structure +zona pellucida|1 +(noun)|zone|zona +zonal|2 +(adj)|zonary|structure|anatomical structure|complex body part|bodily structure|body structure +(adj)|zonal |zonary +zonal pelargonium|1 +(noun)|fish geranium|bedding geranium|Pelargonium hortorum|geranium +zonary|2 +(adj)|zonal +(adj)|zonal +zone|6 +(noun)|geographical area|geographic area|geographical region|geographic region +(noun)|geographical zone|geographical area|geographic area|geographical region|geographic region +(noun)|region|part +(noun)|zona|structure|anatomical structure|complex body part|bodily structure|body structure +(verb)|district|regulate|regularize|regularise|order|govern +(verb)|partition|separate|divide +zone fire|1 +(noun)|artillery fire|cannon fire +zone of interior|1 +(noun)|region +zoning|1 +(noun)|division|partition|partitioning|segmentation|sectionalization|sectionalisation +zoning board|1 +(noun)|board +zoning commission|1 +(noun)|committee|commission +zonk out|2 +(verb)|pass out|black out|change state|turn +(verb)|fall asleep|dope off|flake out|drift off|nod off|drop off|doze off|drowse off +zonotrichia|1 +(noun)|Zonotrichia|genus Zonotrichia|bird genus +zonotrichia albicollis|1 +(noun)|white-throated sparrow|whitethroat|Zonotrichia albicollis|New World sparrow +zonotrichia leucophrys|1 +(noun)|white-crowned sparrow|Zonotrichia leucophrys|New World sparrow +zonula|1 +(noun)|zonule|zone|zona +zonule|1 +(noun)|zonula|zone|zona +zoo|1 +(noun)|menagerie|zoological garden|facility|installation +zoo keeper|1 +(noun)|custodian|keeper|steward +zooerastia|1 +(noun)|bestiality|zooerasty|sexual activity|sexual practice|sex|sex activity +zooerasty|1 +(noun)|bestiality|zooerastia|sexual activity|sexual practice|sex|sex activity +zooflagellate|1 +(noun)|zoomastigote|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +zooid|1 +(noun)|organism|being +zoolatry|1 +(noun)|animal-worship|worship +zoological|2 +(adj)|biology|biological science +(adj)|organism|being +zoological garden|1 +(noun)|menagerie|zoo|facility|installation +zoological science|1 +(noun)|zoology|biology|biological science +zoologist|1 +(noun)|animal scientist|biologist|life scientist +zoology|1 +(noun)|zoological science|biology|biological science +zoom|5 +(noun)|rapid climb|rapid growth|rise|rising|ascent|ascension +(noun)|soar|rise|ascent|ascension|ascending +(verb)|zoom along|whizz|whizz along|travel rapidly|speed|hurry|zip +(verb)|travel|go|move|locomote +(verb)|soar|soar up|soar upwards|surge|rise|lift|arise|move up|go up|come up|uprise +zoom along|1 +(verb)|zoom|whizz|whizz along|travel rapidly|speed|hurry|zip +zoom in|1 +(verb)|concentrate|focus|center|centre|pore|rivet +zoom lens|1 +(noun)|telephoto lens|camera lens|optical lens +zoomastigina|1 +(noun)|Zoomastigina|subclass Zoomastigina|class +zoomastigote|1 +(noun)|zooflagellate|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore +zoomorphism|1 +(noun)|attribution|ascription +zoonosis|1 +(noun)|zoonotic disease|animal disease +zoonotic|1 +(adj)|animal disease +zoonotic disease|1 +(noun)|zoonosis|animal disease +zoophagous|1 +(adj)|flesh-eating|meat-eating|carnivorous +zoophilia|1 +(noun)|zoophilism|paraphilia +zoophilism|1 +(noun)|zoophilia|paraphilia +zoophobia|1 +(noun)|simple phobia +zoophyte|1 +(noun)|invertebrate +zooplankton|1 +(noun)|animal|animate being|beast|brute|creature|fauna +zoopsia|1 +(noun)|visual hallucination +zoospore|1 +(noun)|spore +zoot suit|1 +(noun)|suit|suit of clothes +zootoxin|1 +(noun)|animal toxin|toxin +zori|1 +(noun)|pusher|sandal +zoril|1 +(noun)|Ictonyx frenata|muishond +zoroaster|1 +(noun)|Zoroaster|Zarathustra|prophet +zoroastrian|2 +(adj)|Zoroastrian|prophet +(noun)|Zoroastrian|disciple|adherent +zoroastrianism|1 +(noun)|Zoroastrianism|Mazdaism|religion|faith|religious belief +zoster|1 +(noun)|herpes zoster|shingles|herpes +zostera|1 +(noun)|Zostera|genus Zostera|monocot genus|liliopsid genus +zostera marina|1 +(noun)|eelgrass|grass wrack|sea wrack|Zostera marina|aquatic plant|water plant|hydrophyte|hydrophytic plant +zosteraceae|1 +(noun)|Zosteraceae|family Zosteraceae|eelgrass family|monocot family|liliopsid family +zovirax|1 +(noun)|acyclovir|Zovirax|medicine|medication|medicament|medicinal drug +zoysia|1 +(noun)|grass +zoysia japonica|1 +(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia +zoysia matrella|1 +(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia +zoysia tenuifolia|1 +(noun)|mascarene grass|Korean velvet grass|Zoysia tenuifolia|zoysia +zr|1 +(noun)|zirconium|Zr|atomic number 40|metallic element|metal +zsigmondy|1 +(noun)|Zsigmondy|Richard Adolph Zsigmondy|chemist +zu|1 +(noun)|Zu|Zubird|Semitic deity +zubird|1 +(noun)|Zu|Zubird|Semitic deity +zucchini|2 +(noun)|courgette|marrow|marrow squash|vegetable marrow +(noun)|courgette|summer squash +zuider zee|1 +(noun)|Zuider Zee|inlet|recess +zukerman|1 +(noun)|Zukerman|Pinchas Zukerman|violinist|fiddler +zulu|2 +(noun)|Zulu|African +(noun)|Zulu|Nguni +zuni|1 +(noun)|Zuni|Pueblo +zurich|1 +(noun)|Zurich|city|metropolis|urban center +zurvan|1 +(noun)|Zurvan|Persian deity +zurvanism|2 +(noun)|Zurvanism|sect|religious sect|religious order +(noun)|Zurvanism|theological doctrine|religious doctrine|heresy|unorthodoxy +zweig|1 +(noun)|Zweig|Stefan Zweig|writer|author +zwieback|1 +(noun)|rusk|Brussels biscuit|twice-baked bread|toast +zwingli|1 +(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian|theologist|theologizer|theologiser +zworykin|1 +(noun)|Zworykin|Vladimir Kosma Zworykin|physicist +zydeco|1 +(noun)|country music|country and western|C and W +zygnema|1 +(noun)|Zygnema|genus Zygnema|protoctist genus +zygnemales|1 +(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order +zygnemataceae|1 +(noun)|Zygnemataceae|family Zygnemataceae|protoctist family +zygnematales|1 +(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order +zygocactus|1 +(noun)|Zygocactus|genus Zygocactus|caryophylloid dicot genus +zygocactus truncatus|1 +(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus +zygodactyl|1 +(adj)|zygodactyl +zygodactyl foot|1 +(noun)|bird's foot +zygoma|1 +(noun)|zygomatic arch|arcus zygomaticus|bone|os +zygomatic|1 +(adj)|feature|lineament +zygomatic arch|1 +(noun)|zygoma|arcus zygomaticus|bone|os +zygomatic bone|1 +(noun)|cheekbone|mala|malar bone|jugal bone|os zygomaticum|bone|os +zygomatic process|1 +(noun)|process|outgrowth|appendage +zygomorphic|1 +(adj)|zygomorphic |bilaterally symmetrical|zygomorphous +zygomorphous|1 +(adj)|zygomorphic |bilaterally symmetrical +zygomycetes|1 +(noun)|Zygomycetes|class Zygomycetes|class +zygomycota|1 +(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division +zygomycotina|1 +(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division +zygophyllaceae|1 +(noun)|Zygophyllaceae|family Zygophyllaceae|bean-caper family|rosid dicot family +zygophyllum|1 +(noun)|Zygophyllum|genus Zygophyllum|rosid dicot genus +zygophyllum fabago|1 +(noun)|bean caper|Syrian bean caper|Zygophyllum fabago|shrub|bush +zygoptera|1 +(noun)|Zygoptera|suborder Zygoptera|animal order +zygospore|1 +(noun)|spore +zygote|1 +(noun)|fertilized ovum|cell +zygotene|1 +(noun)|phase|stage +zygotic|1 +(adj)|cell +zyloprim|1 +(noun)|allopurinol|Zyloprim|medicine|medication|medicament|medicinal drug +zymase|1 +(noun)|enzyme +zymogen|1 +(noun)|proenzyme|organic compound +zymoid|1 +(adj)|protein|catalyst|accelerator +zymolysis|1 +(noun)|zymosis|fermentation|fermenting|ferment|chemical process|chemical change|chemical action +zymolytic|1 +(adj)|zymotic|chemical process|chemical change|chemical action +zymosis|2 +(noun)|zymolysis|fermentation|fermenting|ferment|chemical process|chemical change|chemical action +(noun)|infection +zymotic|2 +(adj)|zymolytic|chemical process|chemical change|chemical action +(adj)|infection +zymurgy|1 +(noun)|biochemistry +zyrian|1 +(noun)|Komi|Zyrian|Permic diff --git a/th_en_US_new.idx b/th_en_US_new.idx new file mode 100644 index 0000000..cc997b5 --- /dev/null +++ b/th_en_US_new.idx @@ -0,0 +1,142691 @@ +ISO8859-1 +142689 +'hood|10 +'s gravenhage|88 +'tween|173 +'tween decks|196 +.22|231 +.22 caliber|319 +.22 calibre|365 +.38 caliber|411 +.38 calibre|457 +.45 caliber|503 +.45 calibre|549 +0|595 +1|666 +1 chronicles|6283 +1 esdras|6336 +1 kings|6376 +1 maccabees|6414 +1 samuel|6464 +1-dodecanol|739 +1-hitter|783 +10|840 +100|908 +1000|1015 +10000|1148 +100000|1197 +1000000|1249 +1000000000|1314 +1000000000000|1377 +1000th|1492 +100th|1527 +101|1571 +101st|1646 +105|1687 +105th|1729 +10th|1770 +11|1798 +11 november|2082 +11-plus|1860 +110|1909 +110th|1950 +115|1991 +115th|2037 +11th|2153 +12|2184 +12-tone music|2260 +12-tone system|2358 +120|2456 +120th|2549 +125|2594 +125th|2645 +12th|2693 +13|2723 +130|2818 +130th|2864 +135|2909 +135th|2961 +13th|3009 +14|3042 +14 july|3328 +140|3110 +140th|3154 +144|3198 +145|3231 +145th|3281 +14th|3397 +15|3430 +15 august 1945|3719 +15 may organization|3784 +15 minutes|3907 +150|3494 +150th|3537 +1530s|3581 +155|3623 +155th|3672 +15th|3963 +16|3995 +16 pf|4246 +160|4061 +160th|4105 +165|4149 +165th|4199 +16th|4364 +17|4396 +17 november|4913 +170|4468 +170th|4515 +1728|4561 +175|4601 +1750s|4654 +175th|4696 +1760s|4745 +1770s|4787 +1780s|4829 +1790s|4871 +17th|5059 +18|5093 +180|5165 +180th|5212 +1820s|5257 +1830s|5299 +1840s|5341 +1850s|5383 +1860s|5425 +1870s|5467 +1880s|5509 +1890s|5560 +18th|5611 +19|5644 +190|5712 +1900s|5757 +190th|5799 +1920s|5844 +1930s|5895 +1940s|5946 +1950s|5996 +1960s|6046 +1970s|6096 +1980s|6148 +1990s|6199 +19th|6250 +1st|6505 +1st baron beaverbrook|6614 +1st baron verulam|6773 +1st class|6934 +1st earl attlee|7016 +1st earl baldwin of bewdley|7134 +1st earl of balfour|7255 +1st viscount montgomery of alamein|7365 +1st-class mail|6532 +2|7526 +2 chronicles|9004 +2 esdras|9058 +2 kings|9100 +2 maccabees|9139 +2 samuel|9190 +2-hitter|7586 +2-hydroxybenzoic acid|7643 +2-methylpropenoic acid|7702 +2.718282...|7756 +20|7797 +200|7859 +200th|7896 +20th|7933 +21|7965 +21st|8037 +22|8072 +22nd|8146 +23|8182 +23rd|8262 +24|8297 +24/7|8383 +24th|8404 +25|8440 +25th|8514 +26|8549 +26th|8623 +27|8658 +27th|8738 +28|8775 +28th|8857 +29|8893 +29th|8969 +2d|9232 +2nd|9263 +3|9294 +3-d|9464 +3-hitter|9718 +3-membered|9777 +3.14159265358979323846...|9821 +30|9877 +30 minutes|10020 +300|9941 +300th|9981 +30th|10073 +31|10105 +31st|10142 +32|10177 +32nd|10215 +33|10251 +33rd|10292 +34|10327 +34th|10366 +35|10402 +35th|10440 +36|10475 +365 days|10513 +366 days|10563 +36th|10644 +37|10679 +37th|10720 +38|10757 +38th|10799 +39|10835 +39th|10872 +3d|10907 +3d radar|11079 +3rd|11185 +3rd october organization|11221 +3tc|11422 +4|11498 +4-hitter|11641 +4-membered|11699 +40|11742 +400|11811 +400th|11849 +401-k|11887 +401-k plan|12047 +40th|12207 +41|12238 +41st|12273 +42|12307 +42nd|12343 +43|12378 +43rd|12417 +44|12451 +440 yards|12488 +44th|12532 +45|12567 +45th|12603 +46|12637 +46th|12673 +47|12707 +47th|12746 +48|12782 +48th|12822 +49|12857 +49th|12892 +4th|12926 +4to|12965 +4wd|12990 +5|13118 +5-hitter|13245 +5-hydroxy-3-methylglutaryl-coenzyme a reductase|13303 +5-hydroxytryptamine|13436 +5-membered|13502 +50|13545 +500|13603 +500th|13676 +50th|13714 +51|13745 +52|13779 +53|13814 +54|13852 +55|13888 +55th|13923 +56|13957 +57|13992 +58|14030 +59|14069 +5th|14105 +6|14132 +6 june 1944|14842 +6-membered|14278 +60|14320 +60 minutes|14391 +60th|14442 +61|14473 +62|14508 +63|14544 +64|14583 +65|14620 +65th|14656 +66|14690 +67|14726 +68|14765 +69|14805 +6th|14903 +7|14930 +7-membered|15012 +70|15056 +70th|15122 +71|15155 +72|15193 +73|15232 +74|15274 +75|15314 +75th|15353 +76|15389 +77|15428 +78|15470 +79|15513 +7th|15553 +8|15582 +8 may 1945|16298 +8-membered|15701 +80|15745 +80th|15831 +81|15863 +82|15901 +83|15940 +84|15982 +85|16022 +85th|16061 +86|16096 +87|16135 +88|16177 +880 yards|16220 +89|16261 +8th|16355 +8vo|16383 +9|16416 +9-11|16504 +9-membered|16569 +9/11|16612 +90|16677 +90th|16739 +91|16771 +92|16807 +93|16844 +94|16884 +95|16922 +95th|16959 +96|16994 +97|17031 +98|17071 +99|17112 +9th|17148 +a|17175 +a battery|19068 +a billion|19122 +a bit|19182 +a bit much|19214 +a capella singing|19262 +a cappella singing|19327 +a couple of|19392 +a few|19423 +a fortiori|19454 +a good deal|19510 +a great deal|19564 +a horizon|19635 +a hundred|19768 +a hundred and one|19822 +a hundred thousand|19897 +a hundred times|19951 +a kempis|19987 +a la carte|20067 +a la mode|20148 +a level|20212 +a little|20254 +a lot|20286 +a million|20340 +a million times|20376 +a people|20412 +a posteriori|20457 +a priori|20549 +a thousand|20635 +a trifle|20695 +a trillion|20727 +a zillion|20790 +a'man|17516 +a-bomb|17571 +a-horizon|17664 +a-list|17797 +a-ok|17833 +a-okay|17857 +a-one|17881 +a-team|17959 +a. a. michelson|17993 +a. a. milne|18096 +a. conan doyle|18170 +a. e. burnside|18277 +a. e. housman|18371 +a. e. kennelly|18443 +a. e. w. mason|18533 +a. noam chomsky|18620 +a. testudineus|18712 +a.d.|18790 +a.e.|18903 +a.k.a.|18967 +a.m.|19002 +aa|20826 +aaa|20962 +aachen|21021 +aaland islands|21094 +aalborg|21170 +aalii|21236 +aalost|21256 +aalto|21290 +aar|21366 +aardvark|21405 +aardwolf|21512 +aare|21561 +aare river|21601 +aarhus|21647 +aaron|21710 +aaron burr|21958 +aaron copland|22035 +aaron's rod|21807 +aarp|22089 +aas|22171 +ab|22378 +ab initio|22616 +aba|22666 +aba cloth|22752 +aba transit number|22805 +abaca|22912 +abactinal|23009 +abacus|23038 +abadan|23099 +abaft|23156 +abalone|23181 +abamp|23227 +abampere|23264 +abandon|23301 +abandoned|23626 +abandoned infant|23701 +abandoned person|23754 +abandoned ship|23811 +abandonment|23849 +abarticulation|23966 +abase|24002 +abasement|24088 +abash|24183 +abashed|24253 +abashment|24304 +abasia|24349 +abasia trepidans|24387 +abasic|24420 +abatable|24464 +abatable nuisance|24492 +abate|24528 +abatement|24647 +abatement of a nuisance|24738 +abatic|24800 +abating|24844 +abatis|24882 +abattis|24938 +abattoir|24994 +abaxial|25062 +abaya|25094 +abb|25114 +abbacy|25266 +abbatial|25295 +abbe|25322 +abbe condenser|25356 +abbess|25423 +abbey|25473 +abbot|25543 +abbott lawrence lowell|25581 +abbreviate|25662 +abbreviated|25767 +abbreviation|25833 +abbreviator|25909 +abc|25984 +abc's|26127 +abcoulomb|26272 +abcs|26317 +abdias|26598 +abdicable|26680 +abdicate|26708 +abdication|26766 +abdicator|26845 +abdomen|26872 +abdominal|26971 +abdominal actinomycosis|27058 +abdominal aorta|27105 +abdominal aortic aneurysm|27136 +abdominal breathing|27191 +abdominal cavity|27275 +abdominal delivery|27336 +abdominal external oblique muscle|27521 +abdominal muscle|27663 +abdominal nerve plexus|27734 +abdominal pregnancy|27823 +abdominal wall|27954 +abdominocentesis|27990 +abdominoplasty|28038 +abdominous|28122 +abdominousness|28165 +abdominovesical|28233 +abduce|28282 +abducens|28351 +abducens muscle|28458 +abducens nerve|28562 +abducent|28669 +abducent nerve|28802 +abduct|28909 +abducted|28975 +abducting|29017 +abduction|29045 +abductor|29117 +abductor muscle|29264 +abecedarian|29330 +abecedarius|29472 +abel|29509 +abel janszoon tasman|29598 +abel tasman|29678 +abelard|29749 +abele|29861 +abelia|29967 +abelian group|29994 +abelmoschus|30074 +abelmoschus esculentus|30147 +abelmoschus moschatus|30280 +abelmosk|30380 +aberdare|30458 +aberdeen|30490 +aberdeen angus|30638 +aberdonian|30712 +aberrance|30771 +aberrancy|30862 +aberrant|30953 +aberrate|31018 +aberration|31099 +abet|31329 +abetalipoproteinemia|31350 +abetment|31578 +abetter|31622 +abettor|31667 +abeyance|31712 +abeyant|31774 +abfarad|31830 +abhenry|31864 +abhor|31897 +abhorrence|31950 +abhorrent|32040 +abhorrer|32108 +abidance|32143 +abide|32299 +abide by|32469 +abiding|32549 +abidjan|32606 +abience|32660 +abient|32690 +abies|32726 +abies alba|32776 +abies amabilis|32853 +abies balsamea|32975 +abies bracteata|33065 +abies concolor|33174 +abies fraseri|33282 +abies grandis|33341 +abies lasiocarpa|33439 +abies lowiana|33518 +abies venusta|33625 +abila|33732 +abilene|33799 +ability|33873 +abiogenesis|33938 +abiogenetic|34022 +abiogenist|34061 +abiotrophy|34098 +abject|34145 +abjection|34283 +abjectly|34336 +abjuration|34364 +abjure|34428 +abkhas|34494 +abkhasian|34535 +abkhaz|34585 +abkhazia|34664 +abkhazian|34713 +ablactate|34763 +ablactation|34795 +ablate|34918 +ablated|35005 +ablation|35058 +ablative|35238 +ablative absolute|35337 +ablative case|35400 +ablaut|35453 +ablaze|35487 +able|35682 +able seaman|36091 +able-bodied|35772 +able-bodied seaman|35810 +able-bodiedism|35913 +able-bodism|36002 +ableism|36194 +ablepharia|36283 +ablism|36396 +abloom|36485 +abls|36531 +ablution|36618 +ablutionary|36665 +ably|36706 +abm|36761 +abnaki|36815 +abnegate|36914 +abnegation|37026 +abnegator|37175 +abney level|37216 +abnormal|37266 +abnormal condition|37501 +abnormal psychology|37569 +abnormalcy|37647 +abnormality|37715 +abo|37976 +abo antibodies|38091 +abo blood group system|38139 +abo group|38237 +abo system|38322 +aboard|38408 +abocclusion|38461 +abode|38497 +abohm|38624 +abolish|38655 +abolishable|38683 +abolishment|38717 +abolition|38778 +abolitionary|38839 +abolitionism|38890 +abolitionist|38975 +abomasal|39051 +abomasum|39098 +abominable|39161 +abominable snowman|39282 +abominably|39334 +abominate|39439 +abomination|39492 +abominator|39673 +abor|39707 +aboral|39754 +aboriginal|39777 +aboriginal australian|39963 +aborigine|40062 +aborning|40217 +abort|40290 +aborticide|40356 +abortifacient|40451 +abortion|40530 +abortion pill|40667 +abortion-inducing drug|40605 +abortionist|40758 +abortive|40814 +abortus|40866 +aboulia|40896 +aboulic|40953 +abound|41001 +abound in|41064 +abounding|41112 +about|41147 +about turn|41534 +about-face|41380 +above|41613 +above all|41796 +above-mentioned|41702 +above-named|41749 +aboveboard|41868 +aboveground|41928 +abracadabra|41957 +abrachia|41995 +abradant|42055 +abrade|42135 +abraded|42256 +abrader|42297 +abrading stone|42328 +abraham|42369 +abraham lincoln|42477 +abraham stoker|42667 +abraham's bosom|42412 +abramis|42739 +abramis brama|42789 +abranchial|42864 +abranchiate|42918 +abranchious|42984 +abrase|43038 +abrasion|43105 +abrasive|43302 +abrasive material|43419 +abrasiveness|43479 +abreact|43558 +abreaction|43600 +abreast of|43654 +abridge|43708 +abridged|43799 +abridgement|43865 +abridger|43926 +abridgment|44001 +abroach|44062 +abroad|44095 +abrocoma|44184 +abrocome|44239 +abrogate|44316 +abrogation|44353 +abrogator|44403 +abronia|44432 +abronia elliptica|44497 +abronia fragrans|44583 +abronia latifolia|44658 +abronia maritima|44736 +abronia umbellata|44806 +abronia villosa|44901 +abrupt|44975 +abruptio placentae|45091 +abruption|45134 +abruptly|45200 +abruptly-pinnate|45237 +abruptly-pinnate leaf|45297 +abruptness|45359 +abruzzi|45597 +abruzzi e molise|45654 +abs plastic|45720 +abscess|45761 +abscessed|45786 +abscessed tooth|45812 +abscise|45845 +abscissa|45955 +abscission|45994 +abscond|46069 +absconder|46147 +abscondment|46197 +abseil|46261 +abseiler|46340 +absence|46368 +absence without leave|46492 +absent|46576 +absentee|46774 +absentee ballot|46811 +absentee rate|46843 +absenteeism|46900 +absently|46929 +absentminded|46988 +absentmindedly|47047 +absentmindedness|47106 +absinth|47182 +absinthe|47224 +absinthe oil|47338 +absolute|47400 +absolute alcohol|47801 +absolute ceiling|47884 +absolute frequency|47918 +absolute magnitude|47981 +absolute majority|48019 +absolute scale|48073 +absolute space|48128 +absolute temperature|48158 +absolute threshold|48200 +absolute value|48244 +absolute viscosity|48286 +absolute zero|48369 +absolutely|48404 +absoluteness|48446 +absolution|48531 +absolutism|48632 +absolutist|49025 +absolutistic|49130 +absolve|49210 +absolved|49263 +absolver|49360 +absolvitory|49387 +absorb|49442 +absorbable|49865 +absorbate|49905 +absorbed|49932 +absorbefacient|50037 +absorbency|50095 +absorbent|50142 +absorbent cotton|50338 +absorbent material|50412 +absorber|50475 +absorbing|50522 +absorptance|50594 +absorption|50676 +absorption band|50989 +absorption coefficient|51033 +absorption factor|51115 +absorption indicator|51173 +absorption spectrum|51213 +absorption unit|51251 +absorptive|51301 +absorptivity|51436 +absquatulate|51494 +abstain|51572 +abstainer|51627 +abstemious|51764 +abstemiously|51887 +abstemiousness|51920 +abstention|52034 +abstentious|52093 +abstinence|52135 +abstinent|52242 +abstract|52365 +abstract art|52886 +abstract artist|52929 +abstract expressionism|52977 +abstract thought|53079 +abstracted|53184 +abstractedly|53267 +abstractedness|53326 +abstracter|53412 +abstraction|53457 +abstractionism|53699 +abstractionist|53820 +abstractive|53931 +abstractness|53974 +abstractor|54025 +abstruse|54070 +abstruseness|54112 +abstrusity|54253 +absurd|54331 +absurdity|54477 +absurdness|54639 +abu ali al-husain ibn abdallah ibn sina|54735 +abu dhabi|54889 +abu nidal organization|54966 +abu sayyaf|55228 +abudefduf|55353 +abudefduf saxatilis|55409 +abuja|55495 +abukir|55569 +abukir bay|55607 +abul-walid mohammed ibn-ahmad ibn-mohammed ibn-roshd|55649 +abulia|55846 +abulic|55903 +abundance|55951 +abundant|56029 +abundantly|56322 +abuse|56375 +abused|56758 +abuser|56950 +abusive|56996 +abut|57080 +abutilon|57171 +abutilon theophrasti|57235 +abutment|57365 +abutment arch|57404 +abutter|57432 +abutting|57485 +abuzz|57568 +abvolt|57605 +abwatt|57636 +aby|57663 +aby moritz warburg|57728 +aby warburg|57809 +abydos|57883 +abye|57911 +abyla|58034 +abysm|58101 +abysmal|58128 +abysmally|58217 +abyss|58284 +abyssal|58311 +abyssal zone|58434 +abyssinia|58530 +abyssinian|58648 +abyssinian banana|58746 +abyssinian cat|58861 +ac|58963 +acacia|59089 +acacia auriculiformis|59110 +acacia cambegei|59183 +acacia catechu|59254 +acacia dealbata|59324 +acacia farnesiana|59393 +acacia melanoxylon|59525 +acacia pycnantha|59607 +acacia xanthophloea|59671 +academe|59738 +academia|59777 +academic|59816 +academic administrator|59952 +academic costume|60013 +academic degree|60047 +academic department|60137 +academic freedom|60185 +academic gown|60219 +academic program|60279 +academic relation|60325 +academic requirement|60374 +academic robe|60429 +academic session|60489 +academic term|60554 +academic year|60619 +academician|60659 +academicianship|60788 +academicism|60868 +academism|60943 +academy|61018 +academy award|61174 +academy of motion picture arts and sciences|61253 +academy of television arts and sciences|61375 +acadia|61489 +acadia national park|61561 +acadian|61626 +acalypha|61667 +acalypha virginica|61727 +acanthaceae|61806 +acanthion|61895 +acanthisitta|61933 +acanthisitta chloris|61998 +acanthisittidae|62080 +acanthocephala|62183 +acanthocephalan|62251 +acanthocereus|62299 +acanthocereus pentagonus|62382 +acanthocereus tetragonus|62498 +acanthocybium|62614 +acanthocybium solandri|62682 +acanthocyte|62752 +acanthocytosis|62804 +acanthoid|62857 +acantholysis|62902 +acanthoma|62999 +acanthophis|63051 +acanthophis antarcticus|63116 +acanthopterygian|63205 +acanthopterygii|63280 +acanthoscelides|63361 +acanthoscelides obtectus|63440 +acanthosis|63535 +acanthosis nigricans|63630 +acanthotic|63755 +acanthous|63849 +acanthuridae|63894 +acanthurus|63961 +acanthurus chirurgus|64020 +acanthus|64106 +acanthus family|64146 +acanthus mollis|64223 +acapnia|64313 +acapnial|64385 +acapnic|64464 +acapnotic|64543 +acapulco|64622 +acapulco de juarez|64702 +acapulco gold|64792 +acaracide|64878 +acardia|64917 +acariasis|64976 +acaricide|65029 +acarid|65068 +acaridae|65089 +acaridiasis|65149 +acarina|65202 +acarine|65254 +acariosis|65290 +acaroid resin|65343 +acarophobia|65449 +acarpellous|65480 +acarpelous|65512 +acarpous|65555 +acarus|65584 +acaryote|65605 +acatalectic|65648 +acataphasia|65681 +acathexia|65746 +acathexis|65809 +acaudal|65845 +acaudate|65888 +acaulescent|65940 +acc|65982 +accaroid resin|66026 +accede|66132 +accelerando|66303 +accelerate|66355 +accelerated|66452 +accelerating|66506 +acceleration|66533 +acceleration unit|66642 +accelerative|66694 +accelerator|66740 +accelerator factor|66968 +accelerator pedal|67077 +acceleratory|67179 +accelerometer|67225 +accent|67303 +accent mark|67667 +accented|67722 +accenting|67775 +accentor|67826 +accentual|67863 +accentual system|67917 +accentuate|67975 +accentuation|68133 +accept|68214 +acceptability|68572 +acceptable|68627 +acceptableness|68796 +acceptably|68851 +acceptance|68886 +acceptance sampling|69206 +acceptant|69287 +acceptation|69326 +accepted|69469 +accepting|69685 +acceptive|69714 +acceptor|69780 +acceptor rna|69839 +access|69925 +access road|70161 +access time|70203 +accessary|70247 +accessibility|70315 +accessible|70423 +accession|70649 +accessional|70870 +accessorial|70902 +accessory|70929 +accessory after the fact|71218 +accessory before the fact|71272 +accessory cephalic vein|71327 +accessory during the fact|71416 +accessory fruit|71471 +accessory hemiazygos vein|71513 +accessory hemiazygous vein|71632 +accessory nerve|71751 +accessory vertebral vein|71849 +accho|71941 +acciaccatura|71987 +accidence|72056 +accident|72110 +accident surgery|72255 +accident-prone|72222 +accidental|72321 +accidental injury|72449 +accidentally|72492 +accipiter|72604 +accipiter cooperii|72660 +accipiter gentilis|72738 +accipiter nisus|72798 +accipitridae|72857 +accipitriformes|72924 +accipitrine|73022 +acclaim|73053 +acclamation|73206 +acclimate|73280 +acclimation|73344 +acclimatisation|73419 +acclimatise|73494 +acclimatization|73558 +acclimatize|73633 +acclivitous|73697 +acclivity|73742 +accolade|73812 +accommodate|73864 +accommodating|74118 +accommodatingly|74231 +accommodation|74266 +accommodation endorser|74495 +accommodation ladder|74545 +accommodation reflex|74596 +accommodational|74724 +accommodative|74783 +accommodator|74940 +accompanied|74988 +accompaniment|75030 +accompanist|75194 +accompany|75260 +accompanying|75441 +accompanying vein|75529 +accompanyist|75600 +accomplice|75666 +accomplish|75730 +accomplishable|75949 +accomplished|76011 +accomplished fact|76130 +accomplishment|76198 +accord|76303 +accord and satisfaction|76591 +accordance|76635 +accordance of rights|76723 +accordant|76776 +according|76955 +accordingly|77000 +accordion|77033 +accordion door|77123 +accordionist|77174 +accost|77228 +accouchement|77302 +accoucheur|77402 +accoucheuse|77465 +account|77500 +account book|77966 +account executive|78029 +account for|78163 +account payable|78212 +account representative|78281 +account statement|78415 +accountability|78491 +accountable|78575 +accountancy|78608 +accountant|78682 +accountantship|78750 +accounting|78829 +accounting data|79078 +accounting entry|79120 +accounting firm|79215 +accounting principle|79265 +accounting standard|79325 +accounting system|79385 +accounts payable|79453 +accounts receivable|79558 +accouter|79594 +accoutered|79646 +accouterment|79692 +accoutre|79779 +accoutred|79831 +accoutrement|79877 +accra|79964 +accredit|80019 +accreditation|80149 +accredited|80202 +accrete|80275 +accretion|80426 +accretionary|80641 +accretive|80674 +accroides|80704 +accroides gum|80810 +accroides resin|80916 +accrual|81022 +accrual basis|81080 +accrue|81153 +accrued|81203 +accruement|81242 +acculturate|81300 +acculturation|81332 +acculturational|81497 +acculturative|81545 +accumbent|81593 +accumulate|81650 +accumulated|81835 +accumulation|81940 +accumulative|82160 +accumulator|82221 +accumulator register|82368 +accuracy|82419 +accurate|82466 +accursed|82641 +accurst|82689 +accusal|82737 +accusation|82782 +accusative|82873 +accusative case|83042 +accusatorial|83114 +accusatory|83184 +accuse|83257 +accused|83324 +accuser|83359 +accusing|83411 +accusive|83484 +accustom|83557 +accustomed|83605 +ace|83691 +ace inhibitor|84151 +ace of clubs|84267 +ace of diamonds|84293 +ace of hearts|84322 +ace of spades|84349 +acebutolol|84376 +acedia|84472 +acellular|84525 +acellular slime mold|84591 +acentric|84693 +acentric chromosome|84822 +acephalia|84862 +acephalism|84943 +acephalous|85024 +acephaly|85053 +acer|85134 +acer argutum|85195 +acer campestre|85255 +acer circinatum|85324 +acer glabrum|85382 +acer japonicum|85456 +acer macrophyllum|85532 +acer negundo|85611 +acer negundo californicum|85679 +acer palmatum|85801 +acer pennsylvanicum|85859 +acer platanoides|85981 +acer pseudoplatanus|86043 +acer rubrum|86134 +acer saccharinum|86209 +acer saccharum|86271 +acer spicatum|86339 +aceraceae|86412 +acerate|86504 +acerate leaf|86581 +acerb|86622 +acerbate|86779 +acerbic|86841 +acerbity|86996 +acerola|87123 +acerose|87308 +acervate|87385 +acervulus|87416 +acetabular|87449 +acetabulum|87497 +acetal|87540 +acetaldehyde|87573 +acetaldol|87612 +acetamide|87654 +acetaminophen|87690 +acetanilid|87803 +acetanilide|87890 +acetate|87977 +acetate disk|88036 +acetate rayon|88094 +acetic|88131 +acetic acid|88162 +acetic anhydride|88213 +acetify|88249 +acetoacetic acid|88335 +acetone|88386 +acetone body|88492 +acetonemia|88533 +acetonic|88579 +acetonuria|88659 +acetophenetidin|88710 +acetose|88800 +acetous|88839 +acetphenetidin|88878 +acetum|88968 +acetyl|89035 +acetyl chloride|89127 +acetyl group|89194 +acetyl radical|89286 +acetylate|89378 +acetylation|89471 +acetylcholine|89502 +acetylene|89542 +acetylenic|89594 +acetylic|89632 +acetylise|89665 +acetylize|89758 +acetylsalicylic acid|89851 +achaean|89953 +achaian|90000 +ache|90047 +achene|90209 +achenial|90231 +acheron|90254 +acheronian|90299 +acherontia|90354 +acherontia atropos|90418 +acherontic|90540 +acheson|90595 +acheson process|90688 +acheta|90748 +acheta assimilis|90800 +acheta domestica|90865 +achievability|90939 +achievable|91016 +achieve|91078 +achievement|91183 +achiever|91226 +achille ratti|91322 +achillea|91488 +achillea millefolium|91528 +achillea ptarmica|91603 +achilles|91686 +achilles tendon|91797 +achilles' heel|91728 +achimenes|91870 +aching|91912 +achira|91966 +achlamydeous|92036 +achlorhydria|92071 +achlorhydric|92108 +achmad sukarno|92134 +achoerodus|92213 +achoerodus gouldii|92272 +acholia|92348 +achomawi|92392 +achondrite|92454 +achondritic|92485 +achondroplasia|92535 +achondroplastic|92780 +achondroplasty|92968 +achras|93213 +achras zapota|93280 +achromasia|93370 +achromatic|93488 +achromatic color|94019 +achromatic colour|94095 +achromatic lens|94171 +achromatic vision|94210 +achromatin|94279 +achromatinic|94314 +achromatise|94364 +achromatism|94417 +achromatize|94483 +achromatous|94536 +achromia|94578 +achromic|94637 +achromous|94686 +achromycin|94735 +achy|94824 +achylia|94853 +achylia gastrica|94902 +acicula|94951 +acicular|94979 +aciculate|95056 +acid|95085 +acid anhydrides|95777 +acid dye|95835 +acid halide|95866 +acid head|95916 +acid hydrogen|95940 +acid precipitation|95993 +acid rain|96045 +acid rock|96097 +acid test|96203 +acid value|96243 +acid-base balance|95404 +acid-base equilibrium|95486 +acid-base indicator|95568 +acid-fast|95607 +acid-forming|95649 +acid-loving|95678 +acid-wash|95745 +acidemia|96281 +acidic|96328 +acidic hydrogen|96401 +acidification|96454 +acidify|96524 +acidimetric|96610 +acidimetry|96650 +acidity|96690 +acidophil|96799 +acidophile|96848 +acidophilic|96897 +acidophilous|96952 +acidophilus milk|97007 +acidosis|97038 +acidotic|97066 +acidulate|97093 +acidulated|97146 +acidulent|97171 +acidulous|97212 +acidulousness|97253 +aciduric|97307 +acinar|97362 +acinic|97419 +acinonyx|97461 +acinonyx jubatus|97516 +acinos|97586 +acinos arvensis|97642 +acinose|97760 +acinous|97802 +acinus|97844 +acipenser|97880 +acipenser huso|97936 +acipenser transmontanus|98013 +acipenseridae|98131 +ack-ack|98201 +ack-ack gun|98283 +ackee|98365 +acknowledge|98398 +acknowledgeable|98623 +acknowledged|98661 +acknowledgement|98868 +acknowledgment|98994 +aclant|99197 +aclinic line|99257 +acme|99301 +acne|99449 +acne rosacea|99559 +acne vulgaris|99594 +acned|99622 +acneiform|99672 +acnidosporidia|99786 +acocanthera|99855 +acocanthera oblongifolia|99967 +acocanthera oppositifolia|100093 +acocanthera spectabilis|100215 +acocanthera venenata|100340 +acokanthera|100457 +acold|100569 +acolyte|100589 +aconcagua|100659 +aconite|100702 +aconitum|100735 +aconitum lycoctonum|100799 +aconitum napellus|100887 +acoraceae|100977 +acorea|101058 +acores|101116 +acorn|101153 +acorn barnacle|101174 +acorn cup|101259 +acorn squash|101289 +acorn tube|101366 +acorus|101473 +acorus calamus|101539 +acousma|101666 +acoustic|101720 +acoustic aphasia|101820 +acoustic buoy|101885 +acoustic delay line|101913 +acoustic device|101970 +acoustic gramophone|102002 +acoustic guitar|102067 +acoustic impedance|102099 +acoustic meatus|102177 +acoustic modem|102274 +acoustic nerve|102304 +acoustic phenomenon|102429 +acoustic power|102478 +acoustic projection|102558 +acoustic radiation pressure|102635 +acoustic reactance|102722 +acoustic resistance|102800 +acoustic spectrum|102878 +acoustic storage|102929 +acoustic wave|102984 +acoustical|103034 +acoustician|103106 +acousticophobia|103137 +acoustics|103188 +acquaint|103288 +acquaintance|103383 +acquaintanceship|103557 +acquainted|103609 +acquainted with|103668 +acquiesce|103727 +acquiescence|103766 +acquiescent|103823 +acquirable|103872 +acquire|103902 +acquired|104091 +acquired hemochromatosis|104137 +acquired immune deficiency syndrome|104239 +acquired immunity|104325 +acquired reflex|104372 +acquired taste|104553 +acquirement|104616 +acquirer|104695 +acquiring|105009 +acquisition|105061 +acquisition agreement|105256 +acquisitive|105313 +acquisitiveness|105503 +acquit|105534 +acquittal|105688 +acquittance|105737 +acquitted|105827 +acragas|105889 +acrasiomycetes|105938 +acre|106004 +acre inch|106281 +acre-foot|106142 +acreage|106420 +acres|106473 +acrid|106691 +acridid|106826 +acrididae|106887 +acridity|106979 +acridness|107124 +acridotheres|107203 +acridotheres tristis|107268 +acrilan|107375 +acrimonious|107456 +acrimony|107494 +acris|107558 +acris crepitans|107607 +acris gryllus|107683 +acritical|107754 +acroanaesthesia|107796 +acroanesthesia|107877 +acrobat|107958 +acrobates|107988 +acrobatic|108046 +acrobatic feat|108091 +acrobatic stunt|108137 +acrobatics|108183 +acrocarp|108296 +acrocarpous|108336 +acrocarpous moss|108369 +acrocarpus|108409 +acrocarpus fraxinifolius|108475 +acrocentric|108552 +acrocentric chromosome|108653 +acrocephalus|108696 +acrocephalus schoenobaenus|108761 +acrocephaly|108900 +acroclinium|109025 +acroclinium roseum|109096 +acrocomia|109218 +acrocomia aculeata|109293 +acrocomia vinifera|109388 +acrocyanosis|109465 +acrodont|109511 +acrogen|109577 +acrogenic|109617 +acrogenous|109669 +acrolein|109721 +acromegalia|109757 +acromegalic|109801 +acromegaly|109842 +acromial process|109886 +acromicria|109949 +acromikria|110022 +acromion|110095 +acromphalus|110158 +acromyotonia|110221 +acronym|110252 +acronymic|110305 +acronymous|110370 +acropetal|110435 +acrophobia|110464 +acrophobic|110498 +acrophony|110525 +acropolis|110551 +acropora|110586 +acroscopic|110647 +acrosome|110678 +across|110724 +across the country|110968 +across the nation|111035 +across-the-board|110842 +acrostic|111102 +acrostichum|111182 +acrostichum aureum|111244 +acrylamide|111321 +acrylate|111347 +acrylate resin|111381 +acrylic|111443 +acrylic acid|111621 +acrylic fiber|111674 +acrylic paint|111736 +acrylic resin|111773 +acrylonitrile|111835 +act|111910 +act as|112469 +act involuntarily|112530 +act of god|112587 +act of terrorism|112731 +act on|112790 +act out|112855 +act reflexively|112931 +act superior|112988 +act up|113058 +act upon|113137 +actable|113217 +actaea|113242 +actaea alba|113300 +actaea rubra|113419 +acth|113532 +actias|113715 +actias luna|113767 +actifed|113835 +actin|113893 +actinal|113923 +actinaria|113948 +acting|114034 +acting out|114134 +actinia|114210 +actinian|114316 +actiniaria|114374 +actiniarian|114461 +actinic|114519 +actinic dermatitis|114544 +actinic keratosis|114583 +actinic radiation|114620 +actinic ray|114731 +actinide|114842 +actinide series|114892 +actinidia|114938 +actinidia arguta|115005 +actinidia chinensis|115079 +actinidia deliciosa|115187 +actinidia polygama|115295 +actinidiaceae|115370 +actiniopteris|115451 +actinism|115519 +actinium|115546 +actinoid|115609 +actinolite|115695 +actinomeris|115725 +actinomeris alternifolia|115796 +actinometer|115973 +actinometric|116049 +actinometrical|116127 +actinometry|116205 +actinomorphic|116268 +actinomorphous|116329 +actinomyces|116376 +actinomycetaceae|116434 +actinomycetal|116517 +actinomycetales|116591 +actinomycete|116667 +actinomycetous|116726 +actinomycin|116800 +actinomycosis|116848 +actinomycotic|116897 +actinomyxidia|116945 +actinomyxidian|117015 +actinon|117049 +actinopod|117099 +actinopoda|117140 +actinotherapy|117197 +actinozoa|117281 +actinozoan|117407 +action|117460 +action at law|117954 +action mechanism|118037 +action officer|118080 +action painting|118117 +action plant|118196 +action potential|118306 +action replay|118354 +action spectrum|118409 +actionable|118443 +actitis|118470 +actitis hypoleucos|118520 +actitis macularia|118596 +actium|118669 +activase|118729 +activate|118829 +activated|119046 +activated carbon|119125 +activated charcoal|119195 +activating|119265 +activating agent|119343 +activation|119379 +activation energy|119485 +activator|119540 +active|119576 +active agent|120318 +active air defense|120362 +active application|120402 +active birth|120485 +active citizen|120558 +active immunity|120590 +active matrix screen|120633 +active placebo|120690 +active site|120722 +active transport|120758 +active trust|120794 +active voice|120822 +activeness|120857 +activewear|120921 +activism|120984 +activist|121009 +activistic|121099 +activity|121135 +actomyosin|121406 +actor|121434 +actor's agent|121586 +actor's assistant|121641 +actor's line|121708 +actress|121748 +acts|121808 +acts of the apostles|122144 +actual|122205 +actual damages|122396 +actual eviction|122518 +actual possession|122579 +actual sin|122627 +actualisation|122659 +actualise|122744 +actualised|122841 +actuality|122888 +actualization|122933 +actualize|123018 +actualized|123115 +actually|123162 +actuarial|123203 +actuarial table|123268 +actuary|123331 +actuate|123408 +actuated|123566 +actuating|123594 +actuation|123634 +actuator|123689 +actus reus|123717 +acuate|123785 +acuity|123832 +acular|123971 +aculea|124098 +aculeate|124142 +aculeated|124177 +aculeus|124212 +acumen|124266 +acuminate|124379 +acuminate leaf|124454 +acupressure|124490 +acupuncture|124534 +acute|124577 +acute accent|124909 +acute angle|124961 +acute anterior poliomyelitis|124996 +acute brain disorder|125093 +acute gastritis|125167 +acute glaucoma|125202 +acute glossitis|125258 +acute hemorrhagic encephalitis|125293 +acute inclusion body encephalitis|125367 +acute kidney failure|125492 +acute leukemia|125571 +acute lymphoblastic leukemia|125644 +acute lymphocytic leukemia|125724 +acute myelocytic leukemia|125804 +acute myeloid leukemia|125919 +acute organic brain syndrome|126034 +acute pyelonephritis|126108 +acute renal failure|126153 +acute schizophrenic episode|126232 +acute triangle|126370 +acute-angled triangle|124836 +acuteness|126443 +acyclic|126527 +acyclovir|126588 +acyl|126661 +acyl anhydrides|126715 +acyl group|126773 +acyl halide|126827 +acylation|126877 +acylglycerol|126945 +ad|127003 +ad agency|127400 +ad blitz|127445 +ad campaign|127541 +ad hoc|127637 +ad hominem|127679 +ad lib|127708 +ad libitum|127758 +ad val|127808 +ad valorem|127834 +ad valorem tax|127860 +ad-lib|127151 +ada|127922 +ada-scid|127966 +adactylia|128072 +adactylism|128121 +adactylous|128170 +adactyly|128199 +adad|128248 +adage|128281 +adagio|128342 +adalia|128495 +adalia bipunctata|128603 +adam|128724 +adam smith|129500 +adam's apple|128896 +adam's needle|129129 +adam's needle-and-thread|129243 +adam's peak|129368 +adam-and-eve|129424 +adamance|129563 +adamant|129646 +adamantine|129765 +adams|129887 +adams-stokes syndrome|130463 +adana|130603 +adansonia|130660 +adansonia digitata|130727 +adansonia gregorii|130833 +adapa|130946 +adapid|130981 +adapid group|131058 +adapin|131141 +adapt|131268 +adaptability|131342 +adaptable|131372 +adaptation|131491 +adaptational|131656 +adaptative|131698 +adapted|131776 +adapter|131810 +adaptive|131879 +adaptive radiation|131966 +adaptor|132004 +adar|132036 +adar sheni|132077 +adaxial|132137 +add|132170 +add on|132811 +add to|132869 +add together|132894 +add up|133075 +add-on|132676 +addable|133277 +addax|133311 +addax nasomaculatus|133355 +added|133419 +addend|133627 +addendum|133650 +adder|133697 +adder's fern|133836 +adder's tongue|133957 +adder's tongue fern|134006 +addible|134055 +addict|134089 +addicted|134227 +addiction|134372 +addictive|134506 +adding machine|134549 +addis ababa|134624 +addison's disease|134705 +addison's syndrome|134864 +addition|135024 +addition reaction|135262 +additional|135316 +additionally|135459 +additions to esther|135500 +additive|135554 +additive inverse|135698 +addle|135741 +addle-head|135812 +addlebrained|135945 +addled|136020 +addlehead|136122 +addlepated|136174 +address|136249 +addressable|136853 +addressed|136884 +addressee|136928 +addressing machine|136966 +addressograph|137033 +adduce|137114 +adducent|137183 +adducer|137230 +adducing|137258 +adduct|137295 +adducting|137361 +adduction|137399 +adductive|137448 +adductor|137486 +adductor muscle|137552 +ade|137618 +adelaide|137676 +adelges|137717 +adelges abietis|137772 +adelges piceae|137839 +adelgid|137906 +adelgidae|137941 +adelie|138004 +adelie penguin|138069 +adeline virginia stephen woolf|138142 +aden|138248 +aden-abyan islamic army|138301 +adenanthera|138484 +adenanthera pavonina|138553 +adenauer|138681 +adenine|138756 +adenitis|138782 +adenium|138827 +adenium multiflorum|138897 +adenium obesum|139018 +adenocarcinoma|139134 +adenocarcinomatous|139205 +adenohypophysis|139242 +adenoid|139352 +adenoidal|139530 +adenoidectomy|139620 +adenoma|139685 +adenomatous polyp|139790 +adenomegaly|139831 +adenomyosarcoma|139864 +adenomyosis|139961 +adenopathy|140006 +adenosine|140086 +adenosine deaminase|140116 +adenosine diphosphate|140156 +adenosine monophosphate|140202 +adenosine triphosphate|140264 +adenosis|140311 +adenota|140395 +adenota vardoni|140447 +adenovirus|140502 +adenylic acid|140535 +adept|140597 +adeptness|140780 +adequacy|140851 +adequate|140926 +adequate to|141089 +adequateness|141142 +ader wax|141190 +adermin|141258 +adh|141388 +adhd|141518 +adhere|141691 +adherence|142018 +adherent|142110 +adhesion|142162 +adhesion contract|142291 +adhesive|142348 +adhesive bandage|142619 +adhesive friction|142659 +adhesive material|142717 +adhesive plaster|142768 +adhesive tape|142833 +adhesiveness|142861 +adi granth|142918 +adiabatic|143029 +adiabatic process|143058 +adiantaceae|143132 +adiantum|143196 +adiantum bellum|143249 +adiantum capillus-veneris|143360 +adiantum pedatum|143530 +adiantum tenerum|143655 +adiantum tenerum farleyense|143768 +adience|143965 +adient|143995 +adieu|144031 +adige|144194 +adios|144233 +adipic acid|144396 +adipose|144450 +adipose cell|144477 +adipose tissue|144537 +adipose tumor|144592 +adiposeness|144644 +adiposis|144717 +adiposity|144786 +adirondack mountains|144859 +adirondacks|145002 +adit|145136 +aditi|145158 +aditya|145191 +adjacency|145226 +adjacent|145290 +adjectival|145422 +adjective|145468 +adjoin|145592 +adjoining|145713 +adjoining room|145796 +adjourn|145831 +adjournment|145951 +adjudge|146053 +adjudicate|146089 +adjudication|146198 +adjudicative|146250 +adjudicator|146314 +adjudicatory|146388 +adjunct|146452 +adjunction|146686 +adjunctive|146744 +adjuration|146774 +adjuratory|146817 +adjure|146866 +adjust|146950 +adjustable|147127 +adjustable spanner|147185 +adjustable wrench|147246 +adjusted|147307 +adjuster|147497 +adjusting entry|147581 +adjustive|147642 +adjustment|147681 +adjustor|147950 +adjutant|148034 +adjutant bird|148156 +adjutant general|148228 +adjutant stork|148281 +adjuvant|148353 +adlai ewing stevenson|148474 +adlai stevenson|148574 +adlumia|148668 +adlumia fungosa|148729 +adman|148824 +admass|148893 +admeasure|148931 +administer|148984 +administrable|149194 +administrate|149228 +administration|149285 +administrative|149528 +administrative body|149556 +administrative data processing|149622 +administrative district|149703 +administrative division|149830 +administrative hearing|149957 +administrative law|149997 +administrative official|150043 +administrative unit|150108 +administrator|150174 +administrivia|150284 +admirability|150315 +admirable|150376 +admirableness|150421 +admirably|150482 +admiral|150536 +admiral byrd|150661 +admiral dewey|150771 +admiral nelson|150841 +admiral nimitz|150951 +admiralty|151049 +admiralty brass|151152 +admiralty island|151276 +admiralty islands|151326 +admiralty law|151414 +admiralty metal|151468 +admiralty mile|151592 +admiralty range|151700 +admiration|151821 +admire|151951 +admired|152023 +admirer|152046 +admiring|152227 +admissibility|152252 +admissible|152304 +admission|152379 +admission charge|152593 +admission day|152710 +admission fee|152751 +admission price|152868 +admissive|152985 +admit|153014 +admittable|153271 +admittance|153313 +admittedly|153421 +admittible|153466 +admitting of|153508 +admix|153567 +admixture|153655 +admonish|153815 +admonished|153950 +admonisher|154018 +admonishing|154092 +admonishment|154171 +admonition|154260 +admonitory|154395 +adnate|154530 +adnexa|154553 +adnexal|154586 +adnoun|154620 +ado|154648 +adobe|154735 +adobe brick|154780 +adobe house|154813 +adobe lily|154856 +adobo|154941 +adolesce|154961 +adolescence|154987 +adolescent|155052 +adolf eichmann|155235 +adolf hitler|155320 +adolf loos|155409 +adolf windaus|155464 +adolph simon ochs|155517 +adolphe sax|155577 +adonic|155627 +adonic line|155679 +adonis|155736 +adonis annua|155845 +adopt|155902 +adoptable|156206 +adopted|156235 +adoptee|156285 +adopter|156355 +adoption|156395 +adoptive|156551 +adoptive parent|156618 +adorability|156658 +adorable|156707 +adorableness|156759 +adorably|156808 +adoration|156837 +adore|156946 +adored|156966 +adorer|157017 +adoring|157047 +adorn|157110 +adorned|157283 +adornment|158006 +adp|158077 +adp system|158180 +adpressed|158289 +adps|158324 +adrenal|158524 +adrenal cortex|158696 +adrenal cortical steroid|158768 +adrenal gland|158863 +adrenal medulla|158952 +adrenalectomy|159026 +adrenalin|159108 +adrenaline|159272 +adrenarche|159426 +adrenergic|159452 +adrenergic drug|159644 +adrenocortical|159713 +adrenocorticotrophic|159784 +adrenocorticotrophic hormone|159846 +adrenocorticotrophin|160024 +adrenocorticotropic|160202 +adrenocorticotropic hormone|160264 +adrenocorticotropin|160442 +adrenosterone|160620 +adrian|160680 +adrianople|160827 +adrianopolis|160907 +adriatic|160989 +adriatic sea|161033 +adrift|161081 +adroit|161192 +adroitly|161375 +adroitness|161408 +adscititious|161479 +adscript|161524 +adscripted|161576 +adsorb|161612 +adsorbable|161641 +adsorbate|161691 +adsorbed|161745 +adsorbent|161784 +adsorbent material|161924 +adsorbing|161987 +adsorption|162018 +adsorptive|162068 +adsuki bean|162147 +adulate|162240 +adulation|162274 +adulator|162302 +adulatory|162339 +adult|162369 +adult body|163335 +adult education|163464 +adult female|163540 +adult female body|163589 +adult intelligence|163652 +adult male|163710 +adult male body|163751 +adult respiratory distress syndrome|163808 +adult tooth|163939 +adult-onset diabetes|162555 +adult-onset diabetes mellitus|162945 +adulterant|163982 +adulterate|164070 +adulterated|164160 +adulterating|164207 +adulteration|164272 +adulterator|164339 +adulterer|164412 +adulteress|164470 +adulterine|164569 +adulterous|164602 +adultery|164697 +adulthood|164776 +adumbrate|164844 +adumbration|164938 +adumbrative|165043 +adust|165114 +advance|165188 +advance death benefit|166198 +advanced|166243 +advanced research and development activity|166464 +advancement|166628 +advancer|166810 +advancing|166834 +advantage|166920 +advantaged|167028 +advantageous|167067 +advantageously|167231 +advantageousness|167259 +advect|167332 +advection|167358 +advective|167396 +advent|167433 +advent sunday|167583 +adventism|167639 +adventist|167717 +adventitia|167773 +adventitial|167828 +adventitious|167870 +adventitious root|167913 +adventive|167945 +adventure|167972 +adventure story|168243 +adventurer|168286 +adventuresome|168437 +adventuress|168587 +adventurism|168628 +adventuristic|168685 +adventurous|168743 +adventurousness|168905 +adverb|168972 +adverbial|169031 +adversary|169080 +adversative|169189 +adversative conjunction|169233 +adverse|169278 +adverse opinion|169391 +adverse witness|169429 +adversity|169478 +advert|169585 +advertence|169851 +advertency|169925 +advertent|169999 +advertently|170036 +advertise|170076 +advertised|170178 +advertisement|170220 +advertiser|170342 +advertising|170411 +advertising agency|170603 +advertising campaign|170648 +advertising department|170744 +advertising division|170817 +advertize|170890 +advertizement|170992 +advertizer|171114 +advertizing|171183 +advertorial|171305 +advice|171388 +advice and consent|171413 +advil|171468 +advisability|171616 +advisable|171664 +advise|171756 +advised|171897 +advisedly|171964 +advisee|172061 +advisement|172131 +adviser|172187 +advisor|172233 +advisory|172279 +advisory board|172358 +advisory service|172403 +advocacy|172448 +advocate|172474 +advocator|172736 +advowson|172836 +adynamia|172860 +adynamic|172887 +adz|172994 +adze|173022 +adzhar|173050 +adzharia|173097 +adzuki bean|173146 +aec|173239 +aecial|173298 +aeciospore|173327 +aecium|173353 +aedes|173383 +aedes aegypti|173432 +aedes albopictus|173500 +aegadean islands|173573 +aegadean isles|173672 +aegates|173818 +aegates isles|173908 +aegean|173973 +aegean civilisation|174075 +aegean civilization|174193 +aegean culture|174311 +aegean island|174424 +aegean sea|174468 +aegiceras|174510 +aegiceras majus|174575 +aegilops|174636 +aegilops triuncalis|174708 +aegina|174774 +aegir|174857 +aegis|174925 +aegisthus|175072 +aegospotami|175116 +aegospotamos|175219 +aegypiidae|175323 +aegypius|175380 +aegypius monachus|175433 +aegyptopithecus|175510 +aelfred|175560 +aelius donatus|175627 +aeneas|175698 +aeneas silvius|175736 +aeneid|175897 +aengus|175952 +aeolia|176010 +aeolian|176074 +aeolian harp|176200 +aeolian lyre|176250 +aeolic|176300 +aeolis|176343 +aeolotropic|176407 +aeolus|176451 +aeon|176486 +aeonian|176611 +aeonium|176715 +aeonium haworthii|176766 +aepyceros|176839 +aepyceros melampus|176897 +aepyornidae|176960 +aepyorniformes|177024 +aepyornis|177097 +aerate|177165 +aerated|177287 +aeration|177369 +aerator|177457 +aerial|177490 +aerial ladder|177703 +aerial ladder truck|177743 +aerial torpedo|177808 +aerial tramway|177840 +aerialist|177920 +aerially|177947 +aerides|177977 +aerie|178020 +aeriferous|178097 +aeriform|178120 +aerify|178222 +aerobacter|178280 +aerobacter aerogenes|178343 +aerobatics|178411 +aerobe|178478 +aerobic|178509 +aerobic exercise|178593 +aerobics|178653 +aerobiosis|178713 +aerobiotic|178738 +aerodontalgia|178789 +aerodrome|178833 +aerodynamic|178911 +aerodynamic force|178941 +aerodynamic lift|178974 +aerodynamics|179023 +aeroembolism|179069 +aerofoil|179239 +aerogenerator|179296 +aerogram|179353 +aerogramme|179423 +aerolite|179493 +aerolitic|179521 +aerological|179549 +aerology|179581 +aeromechanic|179611 +aeromechanics|179642 +aeromedical|179688 +aeromedicine|179720 +aeronaut|179791 +aeronautic|179866 +aeronautical|179942 +aeronautical engineer|180018 +aeronautical engineering|180089 +aeronautics|180212 +aerophagia|180290 +aerophilatelic|180336 +aerophilately|180403 +aerophile|180470 +aerophilic|180512 +aerophilous|180573 +aerophyte|180634 +aeroplane|180711 +aerosol|180768 +aerosol bomb|180861 +aerosol can|181042 +aerosol container|181122 +aerosolise|181202 +aerosolised|181324 +aerosolize|181365 +aerosolized|181487 +aerospace|181528 +aerospace engineer|181559 +aerospace medicine|181627 +aertex|181698 +aery|181751 +aeschylean|181901 +aeschylus|181952 +aeschynanthus|182002 +aeschynanthus radicans|182070 +aesculapian|182154 +aesculapius|182219 +aesculus|182289 +aesculus hippocastanum|182362 +aesir|182474 +aesop|182507 +aesop's fables|182537 +aesthete|182608 +aesthetic|182658 +aesthetical|182905 +aesthetically|183013 +aesthetician|183048 +aesthetics|183143 +aestival|183254 +aestivate|183288 +aestivation|183357 +aether|183450 +aethionema|183505 +aethusa|183575 +aethusa cynapium|183632 +aetiologic|183721 +aetiological|183833 +aetiologist|183943 +aetiology|184001 +aetobatus|184062 +aetobatus narinari|184118 +afars and issas|184205 +afeard|184307 +afeared|184338 +afebrile|184369 +affability|184404 +affable|184491 +affableness|184540 +affably|184627 +affair|184660 +affaire|184837 +affaire d'honneur|184916 +affairs|184976 +affect|185261 +affectation|185543 +affected|185641 +affected role|185926 +affectedness|186001 +affecting|186120 +affectingly|186164 +affection|186206 +affectional|186292 +affectionate|186341 +affectionately|186403 +affectionateness|186438 +affectioned|186584 +affective|186612 +affective disorder|186661 +affenpinscher|186831 +afferent|186890 +afferent neuron|186976 +affiance|187034 +affianced|187078 +affiant|187151 +affidavit|187221 +affiliate|187311 +affiliated|187480 +affiliation|187538 +affinal|187614 +affine|187646 +affine geometry|187707 +affine transformation|187741 +affined|187787 +affinity|187814 +affirm|188107 +affirmable|188222 +affirmation|188262 +affirmative|188444 +affirmative action|188633 +affirmative pleading|188675 +affirmativeness|188714 +affirmatory|188766 +affirmed|188859 +affirmer|188899 +affix|188967 +affixal|189084 +affixation|189135 +affixed|189285 +affixial|189351 +afflatus|189402 +afflict|189432 +afflicted|189543 +affliction|189602 +afflictive|189715 +affluence|189759 +affluent|189806 +afford|189928 +affordable|190027 +afforest|190085 +afforestation|190120 +affranchise|190154 +affray|190205 +affricate|190339 +affricate consonant|190400 +affrication|190461 +affricative|190495 +affright|190556 +affront|190633 +affronted|190761 +affusion|190796 +afghan|190822 +afghan hound|191091 +afghan monetary unit|191149 +afghani|191214 +afghanistan|191380 +afghanistani|191469 +afibrinogenemia|191586 +aficionado|191640 +afield|191705 +afire|191727 +afisr|191814 +afl|191968 +afl-cio|192025 +aflame|192131 +aflare|192261 +aflatoxin|192384 +aflaxen|192448 +aflicker|192576 +afloat|192614 +aflutter|192815 +afoot|192849 +aforementioned|192895 +aforesaid|192939 +aforethought|192983 +afoul|193034 +afp|193069 +afraid|193148 +aframomum|193688 +aframomum melegueta|193745 +afrasian|193880 +afrasian language|194010 +afresh|194149 +africa|194169 +african|194202 +african bowstring hemp|194542 +african chameleon|194660 +african clawed frog|194747 +african coral snake|194827 +african country|194930 +african crocodile|195005 +african daisy|195096 +african elephant|195238 +african gray|195309 +african green monkey|195371 +african hemp|195487 +african holly|195646 +african hunting dog|195712 +african lily|195811 +african love grass|195927 +african mahogany|196033 +african marigold|196099 +african millet|196194 +african monitor|196308 +african nation|196396 +african oil palm|196470 +african sandalwood|196540 +african scented mahogany|196614 +african tea|196755 +african tulip|196847 +african violet|196964 +african walnut|197031 +african wild ass|197091 +african yellowwood|197156 +african-american|194304 +african-american music|194429 +africander|197264 +africanized bee|197328 +africanized honey bee|197477 +afrikaans|197632 +afrikander|197758 +afrikaner|197818 +afrl|197934 +afro|198047 +afro hairdo|198530 +afro-american|198105 +afro-asian|198227 +afro-asiatic|198267 +afro-wig|198482 +afroasiatic|198595 +afroasiatic language|198728 +afrocarpus|198870 +afrocarpus falcata|198935 +afropavo|199044 +afropavo congensis|199104 +afspc|199183 +aft|199236 +after|199293 +after part|199517 +after-hours|199367 +after-school|199393 +after-shave|199423 +after-shave lotion|199470 +afterbirth|199571 +afterburner|199600 +aftercare|199628 +afterdamp|199672 +afterdeck|199695 +aftereffect|199719 +afterglow|199807 +afterimage|199869 +afterlife|199917 +aftermath|199969 +aftermost|200124 +afternoon|200147 +afternoon tea|200255 +afterpains|200302 +afterpiece|200327 +afters|200353 +aftersensation|200390 +aftershaft|200438 +aftershafted|200480 +aftershock|200512 +aftertaste|200563 +afterthought|200609 +afterward|200757 +afterwards|200820 +afterworld|200883 +ag|200934 +aga|200995 +again|201040 +again and again|201086 +against the clock|201179 +against the wind|201218 +against time|201264 +agal|201303 +agalactia|201322 +agalactosis|201397 +agalinis|201472 +agama|201534 +agamemnon|201570 +agamic|201614 +agamid|201695 +agamid lizard|201732 +agamidae|201769 +agammaglobulinemia|201827 +agamogenesis|201872 +agamogenetic|201928 +agamous|202009 +agapanthus|202090 +agapanthus africanus|202144 +agape|202268 +agapornis|202368 +agar|202424 +agar-agar|202495 +agaric|202523 +agaricaceae|202605 +agaricales|202671 +agaricus|202732 +agaricus arvensis|202787 +agaricus campestris|202854 +agassiz|202941 +agastache|203037 +agastache foeniculum|203102 +agastache mexicana|203179 +agastache nepetoides|203254 +agate|203338 +agate line|203374 +agateware|203424 +agatha christie|203460 +agathis|203559 +agathis alba|203615 +agathis australis|203715 +agathis dammara|203795 +agathis lanceolata|203898 +agathis robusta|203978 +agavaceae|204091 +agave|204185 +agave americana|204296 +agave atrovirens|204386 +agave cantala|204470 +agave family|204556 +agave sisalana|204640 +agave tequilana|204719 +agaze|204794 +agdestis|204829 +agdistis|204897 +age|204929 +age bracket|205231 +age class|205276 +age group|205335 +age limit|205380 +age norm|205420 +age of consent|205451 +age of fishes|205483 +age of mammals|205570 +age of man|205650 +age of reason|205735 +age of reptiles|205802 +age-old|205202 +aged|205884 +agedness|206039 +agee|206076 +ageing|206115 +ageism|206267 +agelaius|206327 +agelaius phoeniceus|206380 +ageless|206488 +agelessness|206572 +agelong|206627 +agency|206649 +agency security|206963 +agenda|207029 +agenda item|207130 +agendum|207162 +agene|207217 +agenesia|207271 +agenesis|207313 +agenise|207355 +agenize|207402 +agent|207449 +agent bank|207786 +agent orange|207963 +agent provocateur|208031 +agent-in-place|207699 +agential|208133 +agentive role|208165 +agerasia|208225 +ageratina|208268 +ageratina altissima|208333 +ageratum|208453 +ageratum houstonianum|208562 +aggeus|208640 +agglomerate|208719 +agglomerated|208831 +agglomeration|208900 +agglomerative|209022 +agglomerator|209091 +agglutinate|209120 +agglutinating activity|209218 +agglutination|209313 +agglutination test|209476 +agglutinative|209515 +agglutinin|209590 +agglutinogen|209619 +aggrade|209649 +aggrandise|209672 +aggrandisement|209829 +aggrandize|209895 +aggrandizement|210052 +aggravate|210118 +aggravated|210221 +aggravated assault|210271 +aggravating|210307 +aggravation|210367 +aggravator|210503 +aggregate|210571 +aggregate fruit|210826 +aggregated|210880 +aggregation|210938 +aggregative|211058 +aggregator|211116 +aggress|211199 +aggression|211232 +aggressive|211407 +aggressively|211832 +aggressiveness|211861 +aggressor|212014 +aggrieve|212109 +aggro|212155 +aggroup|212205 +agha|212270 +aghan|212316 +aghast|212369 +agile|212418 +agilely|212484 +agility|212507 +agincourt|212581 +aging|212625 +agio|212779 +agiotage|212834 +agism|212889 +agitate|212949 +agitated|213262 +agitated depression|213710 +agitating|213790 +agitation|213841 +agitative|214074 +agitator|214125 +agitprop|214211 +agkistrodon|214240 +agkistrodon contortrix|214335 +agkistrodon piscivorus|214411 +aglaia|214524 +aglaomorpha|214553 +aglaomorpha meyeniana|214615 +aglaonema|214689 +aglaonema modestum|214764 +agleam|214854 +aglet|214892 +aglitter|214972 +aglow|215098 +agnail|215152 +agnate|215197 +agnatha|215313 +agnathan|215363 +agnatic|215432 +agnation|215473 +agnes de mille|215523 +agnes george de mille|215634 +agnes gonxha bojaxhiu|215752 +agni|215874 +agnise|215905 +agnize|215985 +agnosia|216065 +agnostic|216126 +agnostical|216256 +agnosticism|216342 +agnus dei|216433 +ago|216515 +agog|216539 +agon|216561 +agonadal|216597 +agonal|216655 +agone|216685 +agonic line|216709 +agonidae|216735 +agonise|216790 +agonised|216855 +agonising|216890 +agonist|216982 +agonistic|217119 +agonistical|217247 +agonize|217312 +agonized|217377 +agonizing|217412 +agonizingly|217504 +agonus|217551 +agonus cataphractus|217598 +agony|217698 +agony aunt|217787 +agony column|217827 +agora|217883 +agoraphobia|217988 +agoraphobic|218048 +agouti|218076 +agra|218138 +agranulocytic|218186 +agranulocytosis|218237 +agranulosis|218320 +agrapha|218403 +agraphia|218447 +agraphic|218535 +agrarian|218596 +agree|218641 +agreeability|218876 +agreeable|218936 +agreeableness|219137 +agreeably|219235 +agreed|219274 +agreed upon|219310 +agreement|219376 +agrestic|219601 +agribusiness|219649 +agricola|219747 +agricultural|219818 +agricultural agent|219881 +agricultural laborer|219965 +agricultural labourer|220054 +agriculture|220143 +agriculture department|220419 +agriculture secretary|220538 +agriculturist|220694 +agrigento|220778 +agrimonia|220829 +agrimonia eupatoria|220879 +agrimonia procera|220960 +agrimony|221042 +agriocharis|221092 +agriocharis ocellata|221154 +agrippa|221259 +agrippina|221341 +agrippina the elder|221441 +agrippina the younger|221506 +agrobacterium|221575 +agrobacterium tumefaciens|221647 +agrobiologic|221725 +agrobiological|221791 +agrobiology|221857 +agrologic|221908 +agrological|221968 +agrology|222028 +agromania|222076 +agronomic|222119 +agronomical|222179 +agronomist|222239 +agronomy|222266 +agropyron|222337 +agropyron cristatum|222412 +agropyron intermedium|222551 +agropyron pauciflorum|222667 +agropyron repens|222805 +agropyron smithii|222951 +agropyron subsecundum|223058 +agropyron trachycaulum|223153 +agrostemma|223292 +agrostemma githago|223366 +agrostis|223462 +agrostis alba|223516 +agrostis canina|223609 +agrostis nebulosa|223745 +agrostis palustris|223829 +aground|223936 +agrypnia|224003 +agrypnotic|224033 +agua|224064 +agua toad|224111 +aguacate|224158 +ague|224225 +ague grass|224351 +ague root|224453 +ague weed|224555 +agueweed|224756 +aguish|224948 +agust von wassermann|224973 +ahab|225050 +ahead|225087 +ahead of time|225264 +ahimsa|225301 +ahistorical|225365 +ahmad shah masoud|225398 +ahmed salman rushdie|225457 +ahmed zoki yamani|225545 +ahorse|225626 +ahorseback|225687 +ahpcrc|225744 +ahriman|225879 +ahuehuete|225918 +ahura|226017 +ahura mazda|226050 +ahvenanmaa|226111 +ai|226183 +aiai|226450 +aid|226603 +aid station|226829 +aide|226885 +aide-de-camp|226995 +aide-memoire|227056 +aided|227119 +aides|227173 +aidoneus|227340 +aids|227397 +aigina|227635 +aiglet|227679 +aigret|227758 +aigrette|227789 +aiguilette|227820 +aiken|227879 +aikido|227947 +ail|227975 +ailanthus|228106 +ailanthus altissima|228159 +ailanthus silkworm|228250 +aileron|228330 +ailey|228388 +ailing|228435 +ailment|228517 +ailurophobia|228563 +ailuropoda|228595 +ailuropoda melanoleuca|228656 +ailuropodidae|228760 +ailurus|228832 +ailurus fulgens|228884 +aim|228982 +aimee semple mcpherson|229459 +aimless|229565 +aimlessly|229705 +aimlessness|229735 +ain|229788 +aioli|229814 +aioli sauce|229860 +air|229906 +air alert|231329 +air attache|231445 +air attack|231483 +air bag|231530 +air base|231572 +air bladder|231626 +air bubble|231664 +air castle|231691 +air cell|231805 +air cleaner|231844 +air combat command|231883 +air compressor|231942 +air conditioner|231977 +air conditioning|232042 +air corps|232107 +air cover|232155 +air crew|232185 +air current|232297 +air cushion|232386 +air defense|232503 +air division|232558 +air duct|232598 +air embolism|232640 +air filter|232810 +air flow|232849 +air force|232981 +air force academy|233129 +air force intelligence surveillance and reconnaissance|233164 +air force isr|233367 +air force officer|233529 +air force research laboratory|233613 +air force space command|233751 +air gas|233822 +air group|233856 +air gun|233884 +air hammer|234003 +air hole|234071 +air horn|234142 +air hose|234179 +air hostess|234219 +air jacket|234284 +air lane|234347 +air letter|234412 +air lock|234482 +air mail|234597 +air marshal|234701 +air mass|234751 +air mattress|234798 +air medal|234829 +air mile|234911 +air national guard|235013 +air out|235092 +air passage|235169 +air plant|235211 +air pocket|235288 +air pollution|235347 +air potato|235380 +air power|235434 +air pressure|235509 +air pump|235565 +air raid|235600 +air reconnaissance|235647 +air rifle|235713 +air sac|235751 +air search radar|235812 +air shaft|235850 +air sick|235884 +air sickness|236015 +air sleeve|236156 +air sock|236217 +air space|236342 +air spring|236407 +air station|236468 +air terminal|236522 +air thermometer|236585 +air traffic|236638 +air transport|236667 +air transportation|236743 +air transportation system|236819 +air travel|236899 +air traveler|236960 +air traveller|237015 +air unit|237070 +air wave|237138 +air well|237207 +air-breathing|230450 +air-condition|230525 +air-conditioned|230599 +air-cooled|230629 +air-dried|230654 +air-drop|230677 +air-dry|230735 +air-filled|230756 +air-intake|230781 +air-raid shelter|230806 +air-slake|230863 +air-tight|230894 +air-to-air|231047 +air-to-air missile|231078 +air-to-ground|231114 +air-to-ground missile|231152 +air-to-surface|231214 +air-to-surface missile|231267 +airborne|237241 +airborne patrol|237266 +airborne transmission|237298 +airbrake|237352 +airbrush|237415 +airburst|237478 +airbus|237524 +aircraft|237549 +aircraft carrier|237573 +aircraft engine|237670 +aircraft landing|237702 +aircraftman|237753 +aircraftsman|237818 +aircrew|237883 +aircrewman|237914 +airdock|237954 +airdrome|238013 +airdrop|238091 +aire|238126 +aire river|238173 +aired|238226 +airedale|238257 +airedale terrier|238309 +airfare|238369 +airfield|238406 +airflow|238479 +airfoil|238530 +airforce|238587 +airframe|238654 +airgun|238696 +airhead|238734 +airheaded|238795 +airily|238895 +airiness|238921 +airing|239085 +airing cupboard|239254 +airless|239295 +airlift|239346 +airlike|239431 +airline|239465 +airline business|239541 +airliner|239587 +airlock|239630 +airmail|239664 +airmail letter|239761 +airmailer|239831 +airman|239857 +airmanship|239932 +airplane|239982 +airplane landing|240039 +airplane maneuver|240090 +airplane mechanics|240167 +airplane pilot|240207 +airplane propeller|240273 +airplane ticket|240335 +airport|240380 +airport terminal|240458 +airpost|240521 +airs|240584 +airscrew|240966 +airship|241028 +airsick|241078 +airsickness|241129 +airspace|241189 +airspeed|241245 +airstream|241278 +airstrip|241371 +airt|241464 +airtight|241499 +airwave|241573 +airway|241601 +airwoman|241736 +airworthiness|241809 +airworthy|241842 +airy|241871 +aisle|242032 +aitchbone|242093 +aix|242124 +aix galericulata|242244 +aix sponsa|242306 +aix-la-chapelle|242162 +aizoaceae|242377 +ajaia|242505 +ajaia ajaja|242549 +ajar|242610 +ajax|242640 +ajuga|242674 +ajuga chamaepitys|242727 +ajuga genevensis|242813 +ajuga pyramidalis|242895 +ajuga reptans|242970 +ak|243038 +akaba|243089 +akan|243145 +akaryocyte|243168 +akaryote|243211 +akee|243254 +akee tree|243330 +aken|243380 +akeridae|243451 +akha|243509 +akhbari|243541 +akhenaten|243585 +akhenaton|243665 +akimbo|243745 +akin|243769 +akinesia|243875 +akinesis|243918 +akinetic epilepsy|243961 +akira kurosawa|243997 +akka|244092 +akkadian|244137 +akko|244172 +akmola|244217 +akron|244277 +aksa martyrs brigades|244327 +aku|244498 +akvavit|244526 +akwa'ala|244624 +al|244684 +al alamayn|247868 +al capone|247946 +al dente|248024 +al faran|248047 +al gore|248239 +al itihaad al islamiya|248305 +al jolson|248476 +al madinah|248603 +al nathir|248670 +al qahira|248773 +al qanoon|248874 +al tawhid|248992 +al-aksa martyrs brigades|244821 +al-asifa|244995 +al-fatah|245130 +al-gama'a al-islamiyya|245265 +al-hakim|245408 +al-hasan ibn al-haytham|245452 +al-haytham|245600 +al-hudaydah|245735 +al-iraq|245810 +al-itihaad al-islamiya|245889 +al-jama'a al-islamiyyah al-muqatilah bi-libya|246141 +al-jihad|246393 +al-ma'unah|246553 +al-magrib|246658 +al-muhajiroun|246761 +al-mukalla|246872 +al-qa'ida|246945 +al-qaeda|247077 +al-qaida|247208 +al-qur'an|247339 +al-rashid trust|247445 +al-tawhid|247560 +al-ummah|247767 +ala|249199 +alabama|249252 +alabama lip fern|249471 +alabama river|249571 +alabaman|249622 +alabamian|249668 +alabaster|249715 +alabastrine|249823 +alacritous|249850 +alacrity|249875 +aladdin|249940 +aladdin's lamp|250016 +alalia|250060 +alamo|250092 +alan alexander milne|250208 +alan bartlett shepard jr.|250291 +alan hodgkin|250402 +alan jay lerner|250481 +alan mathison turing|250538 +alan paton|250622 +alan seeger|250692 +alan shepard|250737 +alan stewart paton|250835 +alan turing|250913 +aland islands|250988 +alanine|251063 +alar|251110 +alaric|251204 +alarm|251245 +alarm bell|251513 +alarm clock|251574 +alarm system|251607 +alarmed|251657 +alarming|251681 +alarmism|252171 +alarmist|252197 +alarum|252228 +alary|252293 +alas|252340 +alaska|252389 +alaska cedar|252444 +alaska cod|252566 +alaska crab|252641 +alaska fur seal|252828 +alaska king crab|252898 +alaska native|253090 +alaska peninsula|253165 +alaska range|253252 +alaska rein orchid|253367 +alaska standard time|253461 +alaskan|253559 +alaskan brown bear|253631 +alaskan king crab|253772 +alaskan malamute|253965 +alaskan native|254046 +alaskan pipeline|254122 +alastrim|254201 +alate|254355 +alated|254384 +alauda|254413 +alauda arvensis|254460 +alaudidae|254514 +alb|254572 +albacore|254594 +alban berg|254683 +albania|254728 +albanian|254815 +albanian capital|254974 +albanian monetary unit|255041 +albany|255110 +albatrellus|255186 +albatrellus dispansus|255250 +albatrellus ovinus|255338 +albatross|255435 +albedo|255564 +albee|255603 +alben barkley|255681 +alben william barkley|255789 +albers|255905 +albers-schonberg disease|255972 +albert|256230 +albert abraham michelson|256323 +albert bruce sabin|256435 +albert camus|256516 +albert edward|256571 +albert einstein|256657 +albert francis charles augustus emmanuel|256717 +albert gore jr.|256844 +albert michelson|256918 +albert sabin|257022 +albert schweitzer|257097 +albert speer|257230 +albert szent-gyorgyi|257290 +albert von szent-gyorgyi|257391 +alberta|257496 +alberti|257539 +alberto giacometti|257613 +albescent|257719 +albigenses|257755 +albigensian|257838 +albigensianism|257957 +albinal|258057 +albinic|258212 +albinism|258367 +albinistic|258495 +albino|258650 +albino luciano|258689 +albinotic|258830 +albion|258985 +albite|259030 +albitic|259084 +albizia|259123 +albizia julibrissin|259154 +albizia lebbeck|259251 +albizia saman|259343 +albizzia|259447 +albizzia julibrissin|259478 +albizzia lebbeck|259576 +alborg|259669 +albrecht durer|259734 +albrecht eusebius wenzel von wallenstein|259799 +albright's disease|259923 +albuca|260026 +albuginaceae|260059 +albuginea|260128 +albugo|260171 +albula|260220 +albula vulpes|260267 +albulidae|260346 +album|260404 +albumen|260458 +albumin|260544 +albuminoid|260584 +albuminous|260633 +albuminuria|260667 +albuminuric|260708 +albuquerque|260736 +albuterol|260798 +alca|260851 +alca torda|260892 +alcaeus|260954 +alcahest|260992 +alcaic|261093 +alcaic verse|261145 +alcalescent|261203 +alcapton|261253 +alcaptonuria|261303 +alcazar|261357 +alcea|261395 +alcea rosea|261450 +alcedinidae|261518 +alcedo|261582 +alcedo atthis|261629 +alcelaphus|261697 +alces|261758 +alces alces|261804 +alchemic|261872 +alchemical|261914 +alchemise|261956 +alchemist|262005 +alchemistic|262047 +alchemistical|262104 +alchemize|262161 +alchemy|262210 +alcibiades|262298 +alcidae|262391 +alcides|262443 +alcohol|262510 +alcohol abuse|262756 +alcohol addiction|262845 +alcohol amnestic disorder|262935 +alcohol group|263118 +alcohol radical|263186 +alcohol thermometer|263254 +alcohol-dependent|262640 +alcohol-in-glass thermometer|262686 +alcoholic|263324 +alcoholic abuse|263549 +alcoholic beverage|263638 +alcoholic dementia|263754 +alcoholics anonymous|263937 +alcoholise|264024 +alcoholism|264113 +alcoholism abuse|264255 +alcoholize|264344 +alcott|264453 +alcove|264503 +alcyonacea|264536 +alcyonaria|264600 +alcyone|264661 +aldactone|264709 +aldebaran|264842 +aldehyde|264902 +aldehyde group|264986 +aldehyde radical|265056 +aldehyde-alcohol|264937 +aldehydic|265126 +alder|265161 +alder blight|265335 +alder buckthorn|265364 +alder dogwood|265430 +alder fly|265496 +alder tree|265664 +alder-leaved serviceberry|265204 +alderfly|265695 +alderleaf juneberry|265782 +alderman|265933 +aldermanic|265966 +aldermanly|266011 +aldohexose|266056 +aldol|266090 +aldol reaction|266139 +aldomet|266190 +aldose|266283 +aldosterone|266342 +aldosteronism|266381 +aldous huxley|266483 +aldous leonard huxley|266563 +aldrovanda|266651 +aldrovanda vesiculosa|266730 +ale|266818 +ale drinker|266836 +aleatory|266899 +aleatory contract|266931 +alec guinness|266967 +alecost|267074 +alectis|267203 +alectis ciliaris|267253 +alecto|267324 +alectoria|267370 +alectoris|267428 +alectoris graeca|267484 +alectoris ruffa|267568 +alectura|267640 +alectura lathami|267693 +alehoof|267805 +alehouse|267922 +aleksandr aleksandrovich blok|267991 +aleksandr borodin|268099 +aleksandr feodorovich kerensky|268191 +aleksandr i. solzhenitsyn|268303 +aleksandr mikjailovich prokhorov|268444 +aleksandr nikolayevich scriabin|268559 +aleksandr pavlovich|268669 +aleksandr porfirevich borodin|268762 +aleksandr prokhorov|268866 +aleksandr scriabin|268968 +aleksandr sergeyevich pushkin|269065 +aleksey maksimovich peshkov|269165 +aleksey maximovich peshkov|269308 +alembic|269450 +alendronate|269474 +alep|269549 +aleph|269604 +aleph-nought|269670 +aleph-null|269728 +aleph-zero|269786 +alepisaurus|269844 +aleppa grass|269906 +aleppo|270028 +aleppo boil|270085 +alert|270243 +alerting|270637 +alertness|270694 +alessandro di mariano dei filipepi|270807 +alessandro manzoni|270926 +alethic logic|270995 +aletris|271030 +aletris aurea|271090 +aletris farinosa|271199 +aletta jacobs|271318 +aleuria aurantia|271397 +aleurites|271482 +aleurites fordii|271545 +aleurites moluccana|271651 +aleurone|271757 +aleuronic|271783 +aleut|271809 +aleutian|271943 +aleutian islands|272032 +aleutians|272097 +aleve|272233 +alewife|272359 +alex boncayao brigade|272455 +alex haley|272625 +alexander|272676 +alexander alexandrovich blok|272842 +alexander archipelago|272949 +alexander bell|273014 +alexander calder|273110 +alexander fleming|273200 +alexander graham bell|273290 +alexander hamilton|273393 +alexander i|273481 +alexander ii|273566 +alexander iii|273658 +alexander isayevich solzhenitsyn|273729 +alexander melville bell|273877 +alexander pope|273965 +alexander pushkin|274014 +alexander selcraig|274102 +alexander selkirk|274199 +alexander the great|274295 +alexander the liberator|274375 +alexander vi|274478 +alexander wilson|274643 +alexander woollcott|274720 +alexanders|274818 +alexandre dumas|275081 +alexandre emile jean yersin|275142 +alexandre gustave eiffel|275246 +alexandre yersin|275352 +alexandria|275445 +alexandria senna|275548 +alexandrian|275712 +alexandrian laurel|275765 +alexandrian senna|275840 +alexandrine|276005 +alexandrite|276067 +alexia|276100 +alexic|276154 +alexis carrel|276203 +alexis charles henri maurice de tocqueville|276307 +alexis de tocqueville|276452 +aleyrodes|276575 +aleyrodidae|276636 +alfalfa|276705 +alfalfa sprout|276781 +alfilaria|276812 +alfileria|276947 +alfonso borgia|277082 +alfred|277231 +alfred alistair cooke|277297 +alfred bernhard nobel|277382 +alfred binet|277486 +alfred charles kinsey|277540 +alfred charles william harmsworth|277627 +alfred damon runyon|277766 +alfred de musset|277849 +alfred dreyfus|277949 +alfred edward housman|278009 +alfred edward woodley mason|278089 +alfred eisenstaedt|278189 +alfred habdank skarbek korzybski|278269 +alfred hawthorne|278395 +alfred hitchcock|278469 +alfred joseph hitchcock|278581 +alfred kastler|278700 +alfred korzybski|278757 +alfred kroeber|278867 +alfred krupp|278950 +alfred lord tennyson|279009 +alfred lothar wegener|279111 +alfred louis kroeber|279185 +alfred lunt|279274 +alfred nobel|279355 +alfred north whitehead|279450 +alfred noyes|279541 +alfred russel wallace|279587 +alfred stieglitz|279677 +alfred tennyson|279751 +alfred thayer mahan|279848 +alfred the great|279943 +alfresco|280019 +alga|280110 +algae|280141 +algal|280172 +algarobilla|280197 +algarroba|280246 +algarroba bean|280504 +algarrobilla|280594 +algebra|280643 +algebraic|280677 +algebraic language|280724 +algebraic number|280773 +algebraical|280817 +algebraist|280864 +alger|280898 +algeria|280947 +algerian|281054 +algerian capital|281135 +algerian centime|281208 +algerian dinar|281259 +algerian monetary unit|281327 +algerie|281396 +algeripithecus|281503 +algeripithecus minutus|281576 +algernon charles swinburne|281640 +algid|281718 +algiers|281738 +algin|281802 +alginic acid|281834 +algoid|281866 +algol|281892 +algolagnia|281976 +algolagnic|282012 +algometer|282047 +algometric|282121 +algometrical|282195 +algometry|282269 +algonkian|282330 +algonkin|282549 +algonquian|282674 +algonquian language|282988 +algonquin|283134 +algophobia|283447 +algophobic|283481 +algorism|283508 +algorithm|283607 +algorithm error|283676 +algorithmic|283722 +algorithmic language|283765 +algorithmic program|283836 +algorithmic rule|283905 +algren|283974 +alhambra|284025 +alhazen|284073 +ali|284205 +ali baba|284347 +alias|284436 +alibi|284507 +alice b. toklas|284645 +alice hamilton|284707 +alice malsenior walker|284768 +alice paul|284857 +alice walker|284948 +alicia alonso|285027 +alicyclic compound|285112 +alidad|285159 +alidade|285284 +alien|285408 +alien absconder|285724 +alienable|285759 +alienage|285861 +alienate|285924 +alienated|286009 +alienating|286083 +alienation|286116 +alienation of affection|286243 +alienator|286293 +alienism|286350 +alienist|286413 +aliform|286465 +alight|286512 +align|286681 +aligned|286847 +aligning|286895 +alignment|286947 +alike|287131 +alikeness|287180 +aliment|287230 +alimental|287359 +alimentary|287440 +alimentary canal|287521 +alimentary paste|287662 +alimentary tract|287699 +alimentary tract smear|287840 +alimentation|287904 +alimentative|288042 +alimony|288090 +aline|288135 +alinement|288180 +aliphatic|288254 +aliphatic compound|288292 +aliquant|288337 +aliquant part|288377 +aliquot|288417 +aliquot part|288473 +alir|288511 +alisma|288674 +alisma plantago-aquatica|288740 +alismales|288848 +alismataceae|288931 +alismatidae|289040 +alistair cooke|289100 +aliterate|289178 +aliterate person|289255 +alive|289332 +aliveness|289575 +aliyah|289693 +alizarin|289777 +alizarin carmine|289813 +alizarin crimson|289888 +alizarin red|289963 +alizarin yellow|290038 +alizarine|290076 +alizarine red|290112 +alka-seltzer|290158 +alkahest|290246 +alkahestic|290347 +alkalating agent|290422 +alkalemia|290495 +alkalescent|290543 +alkali|290593 +alkali bee|290653 +alkali grass|290693 +alkali metal|290754 +alkali poisoning|290814 +alkalic|290879 +alkalify|290948 +alkalimetry|291009 +alkaline|291050 +alkaline earth|291237 +alkaline metal|291305 +alkaline-earth metal|291128 +alkaline-loving|291196 +alkalinise|291365 +alkalinity|291441 +alkalinize|291473 +alkalinuria|291549 +alkalise|291588 +alkaliser|291649 +alkalize|291717 +alkalizer|291778 +alkaloid|291846 +alkaloidal|291881 +alkalosis|291917 +alkalotic|291946 +alkaluria|291974 +alkane|292013 +alkane series|292086 +alkanet|292159 +alkapton|292212 +alkaptonuria|292262 +alkene|292316 +alkeran|292366 +alky|292448 +alkyd|292544 +alkyd resin|292587 +alkyl|292630 +alkyl group|292700 +alkyl halide|292770 +alkyl radical|292820 +alkylbenzene|292890 +alkylbenzenesulfonate|292929 +alkylic|292970 +alkyne|293015 +all|293067 +all along|294451 +all arounder|294481 +all at once|294522 +all but|294577 +all clear|294659 +all day long|294718 +all fools' day|294747 +all fours|294820 +all get out|294869 +all important|294964 +all in|295134 +all in all|295173 +all of a sudden|295230 +all over|295293 +all right|295413 +all saints' day|295575 +all souls' day|295682 +all the same|295751 +all the time|295846 +all the way|295886 +all together|295932 +all told|295965 +all too|296000 +all-around|293186 +all-day sucker|293243 +all-devouring|293289 +all-embracing|293323 +all-encompassing|293449 +all-fired|293575 +all-important|293623 +all-inclusive|293793 +all-knowing|293919 +all-mains|293956 +all-or-none law|293985 +all-out|294028 +all-powerful|294065 +all-purpose|294116 +all-round|294161 +all-rounder|294218 +all-terrain bike|294259 +all-time|294335 +all-victorious|294379 +all-weather|294417 +alla breve|296025 +alla nazimova|296083 +allah|296137 +allamanda|296176 +allamanda cathartica|296200 +allantoic|296293 +allantoid|296326 +allantois|296368 +allargando|296402 +allay|296433 +allayer|296558 +allegation|296647 +allege|296710 +allegeable|296762 +alleged|296791 +allegement|296856 +alleghany plum|296893 +alleghenies|296999 +allegheny|297171 +allegheny chinkapin|297222 +allegheny mountain spurge|297355 +allegheny mountains|297468 +allegheny plum|297609 +allegheny river|297715 +allegheny spurge|297772 +allegheny vine|297876 +allegiance|297970 +allegiant|298054 +allegoric|298079 +allegorical|298125 +allegorise|298171 +allegoriser|298263 +allegorize|298309 +allegorizer|298401 +allegory|298447 +allegretto|298597 +allegro|298642 +allegro con spirito|298773 +allele|298810 +allelic|298858 +allelomorph|298908 +allelomorphic|298956 +allemande|299006 +allemande sauce|299047 +allen|299088 +allen ginsberg|299346 +allen screw|299399 +allen stewart konigsberg|299438 +allen tate|299605 +allen wrench|299675 +allentown|299725 +allergen|299783 +allergenic|299818 +allergic|299854 +allergic eczema|300032 +allergic reaction|300064 +allergic rhinitis|300125 +allergist|300194 +allergology|300248 +allergy|300296 +allergy diet|300357 +alleviant|300384 +alleviate|300446 +alleviated|300571 +alleviation|300616 +alleviative|300734 +alleviator|300820 +alleviatory|300906 +alley|300992 +alley cat|301075 +alleyway|301152 +allgood|301195 +allhallows|301286 +allhallows eve|301388 +allhallowtide|301452 +alliaceae|301496 +alliaceous|301564 +alliaceous plant|301619 +alliance|301662 +alliaria|301881 +alliaria officinalis|301945 +allice|302081 +allice shad|302143 +allied|302205 +allied command atlantic|302284 +allied command europe|302361 +allies|302431 +alligator|302697 +alligator clip|302782 +alligator grass|302824 +alligator lizard|302897 +alligator mississipiensis|302937 +alligator pear|303033 +alligator sinensis|303100 +alligator snapper|303181 +alligator snapping turtle|303272 +alligator weed|303363 +alligator wrench|303436 +alligatored|303477 +alligatorfish|303521 +alligatoridae|303604 +allionia|303677 +allionia incarnata|303745 +allioniaceae|303856 +allis|303993 +allis shad|304055 +alliterate|304117 +alliteration|304148 +alliterative|304222 +alliterator|304266 +allium|304346 +allium acuminatum|304403 +allium ampeloprasum|304474 +allium ascalonicum|304571 +allium canadense|304705 +allium carinatum|304801 +allium cepa|304875 +allium cepa aggregatum|304943 +allium cepa viviparum|305081 +allium cernuum|305200 +allium fistulosum|305295 +allium haematochiton|305396 +allium neopolitanum|305495 +allium paradoxum|305607 +allium porrum|305685 +allium sativum|305753 +allium schoenoprasum|305816 +allium scorodoprasum|305915 +allium sphaerocephalum|306031 +allium tricoccum|306121 +allium triquetrum|306196 +allium tuberosum|306295 +allium ursinum|306398 +allium vineale|306486 +allmouth|306600 +alloantibody|306727 +allocable|306770 +allocatable|306828 +allocate|306886 +allocation|306935 +allocation unit|307113 +allocator|307159 +allochronic|307200 +allochthonous|307234 +allocution|307271 +allogamous|307306 +allogamy|307365 +allograft|307423 +allograph|307469 +allographic|307539 +allomerism|307593 +allomerous|307635 +allometric|307676 +allometry|307798 +allomorph|307920 +allomorphic|307982 +allopathic|308011 +allopathy|308067 +allopatric|308111 +allopatry|308142 +allophone|308172 +allophonic|308199 +allopurinol|308226 +allosaur|308302 +allosaurus|308379 +allot|308456 +allotment|308717 +allotrope|308868 +allotropic|308912 +allotropical|308964 +allotropism|309016 +allotropy|309067 +allotted|309118 +allover|309145 +allow|309171 +allow for|309549 +allow in|309606 +allowable|309675 +allowably|309752 +allowance|309782 +allowance account|310099 +allowing of|310201 +alloy|310260 +alloy cast iron|310428 +alloy iron|310474 +alloy steel|310520 +alloyed|310547 +allspice|310586 +allspice tree|310688 +allude|310797 +allure|310839 +allurement|310929 +alluring|311066 +allusion|311122 +allusive|311158 +allusiveness|311185 +alluvial|311220 +alluvial cone|311254 +alluvial deposit|311312 +alluvial fan|311391 +alluvial sediment|311449 +alluvial soil|311528 +alluviation|311561 +alluvion|311626 +alluvium|311801 +ally|311880 +ally with|312024 +allyl|312055 +allyl alcohol|312125 +allyl group|312173 +allyl radical|312243 +allyl resin|312313 +allylic|312350 +alma mater|312458 +alma-ata|312395 +almanac|312485 +almandine|312559 +almandite|312626 +almaty|312662 +almighty|312723 +almond|312863 +almond cookie|313189 +almond crescent|313249 +almond extract|313309 +almond moth|313392 +almond oil|313458 +almond tree|313520 +almond willow|313552 +almond-eyed|312990 +almond-leaves willow|313016 +almond-shaped|313121 +almoner|313629 +almoravid|313708 +almost|313744 +alms|313826 +alms box|313997 +alms dish|314037 +alms tray|314071 +alms-giving|313871 +almsgiver|314105 +almsgiving|314146 +alnico|314191 +alnus|314226 +alnus crispa|314281 +alnus glutinosa|314366 +alnus incana|314473 +alnus maritima|314536 +alnus rhombifolia|314606 +alnus rubra|314695 +alnus rugosa|314768 +alnus serrulata|314835 +alnus veridis|314918 +alnus veridis crispa|314984 +alnus vulgaris|315077 +alocasia|315183 +alocasia macrorrhiza|315240 +aloe|315339 +aloe family|315363 +aloe ferox|315433 +aloe vera|315479 +aloeaceae|315524 +aloes|315604 +aloha|315690 +aloha state|315741 +alois senefelder|315799 +alone|315883 +aloneness|316109 +along|316185 +alongside|316202 +alonso|316227 +aloof|316305 +aloofness|316345 +alopecia|316463 +alopecia areata|316502 +alopecic|316536 +alopecurus|316574 +alopecurus pratensis|316652 +alopex|316740 +alopex lagopus|316789 +alopiidae|316853 +alopius|316911 +alopius vulpinus|316961 +alosa|317053 +alosa alosa|317097 +alosa chrysocloris|317171 +alosa pseudoharengus|317234 +alosa sapidissima|317339 +alost|317410 +alouatta|317443 +aloud|317498 +aloys senefelder|317539 +alp|317623 +alpaca|317651 +alpena|317733 +alpenstock|317766 +alpestrine|317792 +alpha|317829 +alpha and omega|318939 +alpha blocker|319013 +alpha brass|319211 +alpha bronze|319238 +alpha centauri|319267 +alpha crucis|319354 +alpha decay|319394 +alpha fetoprotein|319454 +alpha foetoprotein|319529 +alpha geminorum|319604 +alpha globulin|319666 +alpha iron|319699 +alpha methyl dopa|319744 +alpha orionis|319829 +alpha particle|319888 +alpha privative|319921 +alpha radiation|319953 +alpha ray|320051 +alpha receptor|320149 +alpha rhythm|320227 +alpha software|320300 +alpha test|320374 +alpha wave|320422 +alpha-adrenergic blocker|317966 +alpha-adrenergic blocking agent|318083 +alpha-adrenergic receptor|318200 +alpha-adrenoceptor|318278 +alpha-beta brass|318356 +alpha-blocker|318413 +alpha-interferon|318611 +alpha-linolenic acid|318648 +alpha-lipoprotein|318705 +alpha-naphthol|318773 +alpha-naphthol test|318806 +alpha-tocopheral|318890 +alphabet|320495 +alphabet soup|320662 +alphabetic|320797 +alphabetic character|320931 +alphabetic script|321025 +alphabetic writing|321098 +alphabetical|321171 +alphabetisation|321281 +alphabetise|321337 +alphabetised|321385 +alphabetiser|321444 +alphabetization|321504 +alphabetize|321560 +alphabetized|321645 +alphabetizer|321704 +alphameric|321764 +alphamerical|321838 +alphanumeric|321912 +alphanumeric display|321986 +alphanumerical|322040 +alphanumerics|322114 +alphavirus|322151 +alphonse bertillon|322184 +alphonse capone|322255 +alpine|322339 +alpine anemone|322476 +alpine ash|322570 +alpine azalea|322663 +alpine bearberry|322736 +alpine besseya|322810 +alpine celery pine|322877 +alpine clover|322957 +alpine clubmoss|323013 +alpine coltsfoot|323085 +alpine enchanter's nightshade|323166 +alpine fir|323273 +alpine glacier|323346 +alpine gold|323416 +alpine golden chain|323488 +alpine goldenrod|323586 +alpine hulsea|323644 +alpine lady fern|323716 +alpine lift|323815 +alpine milk vetch|323878 +alpine mouse-ear|323946 +alpine salamander|324103 +alpine scurvy|324157 +alpine sunflower|324295 +alpine totara|324414 +alpine type of glacier|324467 +alpine woodsia|324545 +alpinia|324640 +alpinia galanga|324720 +alpinia officinalis|324777 +alpinia officinarum|324869 +alpinia purpurata|324961 +alpinia speciosa|325024 +alpinia zerumbet|325146 +alpinism|325268 +alpinist|325328 +alprazolam|325375 +alps|325416 +alright|325550 +als|325670 +alsace|325951 +alsatia|326003 +alsatian|326056 +also|326242 +also known as|326319 +also-ran|326284 +alsobia|326354 +alsobia dianthiflora|326413 +alsophila|326509 +alsophila pometaria|326570 +alstonia|326644 +alstonia scholaris|326717 +alstroemeria|326795 +alstroemeria pelegrina|326834 +alstroemeriaceae|326934 +alt|327023 +altaic|327079 +altaic language|327183 +altair|327243 +altar|327297 +altar boy|327377 +altar wine|327419 +altarpiece|327466 +altazimuth|327501 +alter|327576 +alter ego|327772 +alterability|327798 +alterable|327843 +alteration|327890 +alterative|328046 +altercate|328123 +altercation|328198 +altered|328273 +altering|328409 +alternanthera|328472 +alternanthera philoxeroides|328555 +alternate|328656 +alternating|329061 +alternating current|329127 +alternation|329189 +alternation of generations|329304 +alternative|329385 +alternative birth|329532 +alternative birthing|329631 +alternative energy|329730 +alternative medicine|329765 +alternative pleading|329825 +alternatively|329892 +alternator|329948 +althaea|329978 +althea|330019 +althea gibson|330060 +althea officinalis|330118 +althea rosea|330216 +although|330285 +altimeter|330314 +altissimo|330388 +altitude|330425 +altitude sickness|330524 +altitudinal|330559 +altitudinous|330589 +alto|330616 +alto clef|330858 +alto relievo|330893 +alto rilievo|330992 +alto saxophonist|331091 +altocumulus|331144 +altocumulus cloud|331205 +altogether|331266 +altoist|331447 +alton glenn miller|331500 +altoona|331578 +altostratus|331608 +altostratus cloud|331669 +altricial|331730 +altruism|331759 +altruist|331804 +altruistic|331859 +altruistically|331909 +alula|331943 +alular|332030 +alum|332067 +alumbloom|332355 +alumina|332405 +aluminate|332471 +aluminiferous|332517 +aluminise|332559 +aluminium|332594 +aluminium bronze|332665 +aluminium chloride|332725 +aluminium foil|332780 +aluminium hydroxide|332832 +aluminium oxide|332954 +aluminize|333020 +aluminous|333055 +aluminum|333126 +aluminum bronze|333197 +aluminum business|333257 +aluminum chloride|333311 +aluminum foil|333366 +aluminum hydroxide|333418 +aluminum industry|333540 +aluminum oxide|333594 +alumna|333660 +alumnus|333736 +alumroot|333812 +alundum|333862 +alupent|333918 +alvar aalto|333973 +alveolar|334055 +alveolar arch|334163 +alveolar artery|334214 +alveolar bed|334295 +alveolar consonant|334398 +alveolar ectasia|334462 +alveolar point|334504 +alveolar process|334567 +alveolar resorption|334646 +alveolar rhabdomyosarcoma|334709 +alveolar rhabdosarcoma|334798 +alveolar ridge|334887 +alveolate|334966 +alveolitis|335032 +alveolus|335124 +alvin ailey|335190 +alvine|335243 +always|335280 +alyssum|335319 +alytes|335422 +alytes cisternasi|335474 +alytes obstetricans|335581 +alzheimer's|335709 +alzheimer's disease|335792 +alzheimers|335883 +am|335965 +amabilis fir|336132 +amadavat|336239 +amaethon|336297 +amah|336337 +amain|336473 +amalgam|336503 +amalgamate|336566 +amalgamated|336685 +amalgamation|336798 +amalgamative|336861 +amalgamator|336908 +amandine aurore lucie dupin|336956 +amanita|337070 +amanita caesarea|337122 +amanita mappa|337201 +amanita muscaria|337260 +amanita phalloides|337321 +amanita rubescens|337424 +amanita verna|337502 +amanuensis|337563 +amaranth|337645 +amaranth family|337708 +amaranthaceae|337795 +amaranthine|337896 +amaranthus|337963 +amaranthus albus|338037 +amaranthus caudatus|338122 +amaranthus cruentus|338227 +amaranthus graecizans|338434 +amaranthus hybridus erythrostachys|338524 +amaranthus hybridus hypochondriacus|338746 +amaranthus hypochondriacus|338969 +amaranthus spinosus|339049 +amarelle|339136 +amarillo|339243 +amaryllidaceae|339299 +amaryllis|339399 +amaryllis belladonna|339432 +amaryllis family|339520 +amass|339605 +amassed|339795 +amastia|339875 +amaterasu|339934 +amaterasu omikami|339996 +amateur|340066 +amateurish|340251 +amateurishly|340313 +amateurishness|340350 +amateurism|340389 +amati|340451 +amative|340538 +amativeness|340570 +amatory|340678 +amatungulu|340719 +amauropelta|340797 +amaurosis|340859 +amaurotic|340940 +amaze|341020 +amazed|341238 +amazement|341302 +amazing|341342 +amazingly|341434 +amazon|341479 +amazon ant|341597 +amazon river|341677 +amazona|341725 +ambage|341775 +ambages|341840 +ambagious|341941 +ambassador|342013 +ambassadorial|342118 +ambassadorship|342161 +ambassadress|342240 +amber|342284 +amber lily|342389 +amberbell|342445 +amberboa|342564 +amberboa moschata|342626 +amberfish|342710 +ambergris|342744 +amberjack|342778 +ambiance|342812 +ambidexterity|342926 +ambidextrous|342988 +ambidextrousness|343162 +ambience|343224 +ambient|343338 +ambiguity|343361 +ambiguous|343440 +ambiguously|343707 +ambit|343739 +ambition|343793 +ambitionless|343881 +ambitious|343956 +ambitiously|344155 +ambitiousness|344202 +ambivalence|344240 +ambivalency|344281 +ambivalent|344322 +ambiversion|344389 +ambiversive|344435 +amble|344468 +ambler|344552 +ambloplites|344612 +ambloplites rupestris|344674 +amblygonite|344770 +amblyopia|344799 +amblyopic|344880 +amblyrhynchus|344960 +amblyrhynchus cristatus|345031 +ambo|345125 +amboina pine|345189 +amboyna|345276 +amboyna pine|345364 +ambrogio damiano achille ratti|345451 +ambrose|345634 +ambrose bierce|345823 +ambrose everett burnside|345906 +ambrose gwinett bierce|346010 +ambrosia|346101 +ambrosia artemisiifolia|346250 +ambrosia psilostachya|346350 +ambrosia trifida|346465 +ambrosiaceae|346550 +ambrosial|346626 +ambrosian|346700 +ambulacral|346928 +ambulacrum|346957 +ambulance|346987 +ambulance chaser|347043 +ambulant|347085 +ambulate|347121 +ambulation|347144 +ambulatory|347177 +ambuscade|347213 +ambush|347348 +ambusher|347534 +ambystoma|347591 +ambystoma maculatum|347652 +ambystoma mexicanum|347753 +ambystoma talpoideum|347853 +ambystoma tigrinum|347953 +ambystomatidae|348050 +ambystomid|348128 +ambystomid salamander|348181 +ameba|348234 +ameban|348276 +amebiasis|348351 +amebic|348422 +amebic dysentery|348497 +amebiosis|348593 +ameboid|348664 +amebous|348709 +amedeo avogadro|348784 +amedeo modigliano|348844 +ameer|348948 +ameiuridae|348992 +ameiurus|349053 +ameiurus melas|349106 +amelanchier|349180 +amelanchier alnifolia|349249 +amelanchier bartramiana|349402 +amelia|349531 +amelia earhart|349640 +ameliorate|349723 +ameliorating|349844 +amelioration|349914 +ameliorative|349971 +amelioratory|350041 +ameloblast|350111 +amelogenesis|350161 +amen|350242 +amen cadence|350329 +amen corner|350374 +amen-ra|350281 +amenability|350407 +amenable|350496 +amenableness|350603 +amend|350692 +amendable|350838 +amendatory|350880 +amended|350910 +amended return|350957 +amendment|351017 +amends|351078 +amenhotep iv|351212 +amenia|351295 +amenities|351342 +amenity|351512 +amenorrhea|351566 +amenorrheal|351613 +amenorrheic|351679 +amenorrhoea|351745 +amenorrhoeal|351792 +amenorrhoeic|351858 +ament|351924 +amentaceous|351960 +amentia|352005 +amentiferae|352095 +amentiferous|352187 +amerce|352232 +amercement|352292 +amerciable|352331 +america|352359 +american|352567 +american agave|353021 +american alligator|353110 +american aloe|353199 +american angelica tree|353324 +american antelope|353442 +american arborvitae|353557 +american arrowroot|353669 +american aspen|353771 +american badger|353859 +american baptist convention|353921 +american barberry|354026 +american basswood|354100 +american beech|354218 +american bison|354330 +american bittern|354412 +american bittersweet|354498 +american black bear|354643 +american blight|354745 +american bog asphodel|354856 +american brooklime|354944 +american buffalo|355054 +american bugbane|355138 +american capital|355224 +american centaury|355340 +american chameleon|355500 +american cheese|355596 +american chestnut|355644 +american civil war|355753 +american cockroach|355857 +american columbo|355942 +american coot|356069 +american copper|356156 +american crab apple|356224 +american cranberry|356334 +american cranberry bush|356429 +american crayfish|356564 +american creeper|356645 +american cress|356741 +american crow|356924 +american dewberry|356987 +american dog tick|357194 +american dog violet|357289 +american dogwood|357361 +american dream|357500 +american dwarf birch|357565 +american eagle|357676 +american egret|357770 +american elder|357847 +american elk|357957 +american elm|358029 +american english|358122 +american falls|358217 +american featherfoil|358272 +american federalist party|358383 +american federation of labor|358497 +american federation of labor and congress of industrial organizations|358579 +american feverfew|358747 +american flag|358862 +american flagfish|358953 +american fly honeysuckle|359037 +american flying squirrel|359144 +american football|359212 +american football game|359303 +american foxhound|359399 +american frogbit|359453 +american gallinule|359569 +american gentian|359654 +american germander|359781 +american ginseng|359867 +american gray birch|359957 +american green toad|360053 +american hackberry|360125 +american harvest mouse|360214 +american hazel|360299 +american hellebore|360385 +american holly|360510 +american hop|360587 +american hornbeam|360650 +american indian|360725 +american indian day|360940 +american ivy|360993 +american kestrel|361087 +american labor party|361175 +american lady crab|361248 +american language|361350 +american larch|361446 +american laurel|361538 +american legion|361643 +american leishmaniasis|361696 +american licorice|361894 +american lime|362030 +american liquorice|362144 +american lobster|362281 +american lotus|362450 +american magpie|362541 +american maidenhair fern|362608 +american marten|362741 +american mastodon|362832 +american mastodont|362933 +american merganser|363035 +american mink|363148 +american mistletoe|363204 +american mountain ash|363388 +american oil palm|363471 +american olive|363541 +american organ|363616 +american oriole|363676 +american parasol|363760 +american parsley fern|363829 +american party|363941 +american pasqueflower|364021 +american pennyroyal|364233 +american persimmon|364335 +american pit bull terrier|364439 +american plaice|364595 +american plan|364702 +american plane|364760 +american pulsatilla|364877 +american quaking aspen|365087 +american raspberry|365183 +american rattlebox|365283 +american red elder|365373 +american red plum|365491 +american red squirrel|365601 +american redstart|365740 +american revised version|365834 +american revolution|366008 +american revolutionary leader|366153 +american revolutionary war|366241 +american robin|366393 +american rock brake|366464 +american sable|366574 +american saddle horse|366664 +american samoa|366749 +american shrew mole|366854 +american sign language|366935 +american smelt|367016 +american smokewood|367075 +american smooth dogfish|367192 +american spicebush|367279 +american spikenard|367407 +american staffordshire terrier|367513 +american standard code for information interchange|367674 +american standard version|367810 +american star grass|367985 +american state|368061 +american stock exchange|368115 +american sweet chestnut|368228 +american sweet gum|368343 +american sycamore|368467 +american toad|368587 +american turkey oak|368650 +american twinflower|368738 +american virgin islands|368842 +american wall fern|368942 +american war of independence|369044 +american water ouzel|369198 +american water shrew|369286 +american water spaniel|369365 +american watercress|369434 +american white birch|369703 +american white oak|369847 +american white pine|369917 +american widgeon|370024 +american wistaria|370120 +american wisteria|370221 +american woodcock|370322 +american wormseed|370407 +american-indian language|352887 +americana|370520 +americanisation|370567 +americanise|370648 +americanism|370751 +americanization|370888 +americanize|370969 +americium|371072 +americus vespucius|371134 +amerigo vespucci|371217 +amerind|371298 +amerindian|371489 +amerindian language|371622 +amerindian race|371751 +amerindic|371809 +ametabolic|371895 +ametabolous|371960 +amethopterin|371992 +amethyst|372127 +amethystine|372185 +amethystine python|372228 +ametria|372263 +ametropia|372373 +ametropic|372454 +amex|372483 +amhara|372577 +amharic|372610 +amia|372684 +amia calva|372725 +amiability|372798 +amiable|372952 +amiableness|373048 +amiably|373135 +amianthum|373168 +amianthum muscaetoxicum|373234 +amianthum muscitoxicum|373342 +amicability|373449 +amicable|373529 +amicableness|373637 +amicus curiae|373716 +amicus curiae brief|373786 +amide|373833 +amidopyrine|373865 +amidship|373937 +amidships|373988 +amigo|374024 +amiidae|374046 +amine|374098 +aminic|374170 +amino|374236 +amino acid|374350 +amino group|374406 +amino plastic|374462 +amino resin|374516 +aminoaciduria|374570 +aminoalkane|374601 +aminoalkanoic acid|374673 +aminobenzine|374729 +aminobenzoic acid|374801 +aminomethane|374833 +aminopherase|374890 +aminophylline|374954 +aminoplast|375034 +aminopyrine|375088 +aminotransferase|375160 +amiodarone|375224 +amir|375315 +amish|375359 +amish sect|375390 +amiss|375457 +amitosis|375549 +amitotic|375599 +amitriptyline|375648 +amitriptyline hydrochloride|375771 +amity|375894 +amlodipine besylate|375946 +amman|376008 +ammeter|376064 +ammine|376087 +ammino|376130 +ammo|376172 +ammobium|376253 +ammobium alatum|376278 +ammodytes|376347 +ammodytidae|376403 +ammonia|376467 +ammonia alum|376547 +ammonia clock|376639 +ammonia water|376675 +ammoniac|376732 +ammoniacal|376800 +ammoniate|376844 +ammoniated|376877 +ammonification|376904 +ammonify|376959 +ammonite|376997 +ammonitic|377031 +ammonium|377056 +ammonium alum|377095 +ammonium carbamate|377187 +ammonium carbonate|377225 +ammonium chloride|377263 +ammonium hydroxide|377308 +ammonium ion|377365 +ammonium nitrate|377404 +ammoniuria|377438 +ammonoid|377466 +ammotragus|377500 +ammotragus lervia|377561 +ammunition|377661 +ammunition chest|377788 +amnesia|377828 +amnesiac|377896 +amnesic|377985 +amnesic aphasia|378120 +amnestic|378208 +amnestic aphasia|378263 +amnesty|378351 +amnic|378476 +amnio|378512 +amniocentesis|378569 +amnion|378626 +amnionic|378666 +amnionic fluid|378702 +amnios|378807 +amniota|378902 +amniote|378947 +amniotic|378984 +amniotic cavity|379020 +amniotic fluid|379072 +amniotic sac|379177 +amobarbital|379217 +amobarbital sodium|379273 +amoeba|379347 +amoeban|379389 +amoebiasis|379464 +amoebic|379535 +amoebic dysentery|379610 +amoebida|379706 +amoebina|379785 +amoebiosis|379864 +amoeboid|379935 +amoebous|379980 +amok|380055 +amon|380156 +amon-ra|380195 +amontillado|380243 +amor|380283 +amora|380320 +amoral|380341 +amoralism|380389 +amoralist|380471 +amorality|380508 +amorally|380535 +amorist|380562 +amoristic|380602 +amorous|380643 +amorously|380706 +amorousness|380734 +amorpha|380867 +amorpha californica|380895 +amorpha canescens|380980 +amorpha fruticosa|381054 +amorphophallus|381135 +amorphophallus campanulatus|381170 +amorphophallus paeonifolius|381312 +amorphophallus rivieri|381454 +amorphophallus titanum|381560 +amorphous|381643 +amorphous shape|381772 +amort|381808 +amortisation|381832 +amortise|381955 +amortization|382000 +amortize|382123 +amos|382168 +amount|382225 +amount of money|382426 +amour|382482 +amour propre|382561 +amoxicillin|382627 +amoxil|382699 +amoy|382778 +amp|382860 +amperage|382955 +ampere|382995 +ampere-hour|383071 +ampere-minute|383118 +ampere-second|383167 +ampere-turn|383226 +ampersand|383272 +amphetamine|383320 +amphetamine sulfate|383413 +amphetamine sulphate|383496 +amphibia|383579 +amphibian|383627 +amphibian family|383800 +amphibian genus|383833 +amphibiotic|383864 +amphibious|383908 +amphibious aircraft|383985 +amphibious assault|384049 +amphibious demonstration|384098 +amphibious landing|384153 +amphibious operation|384212 +amphibious vehicle|384271 +amphibole|384342 +amphibole group|384369 +amphibolips|384402 +amphibolite|384469 +amphibology|384507 +amphiboly|384548 +amphibrach|384589 +amphicarpa|384642 +amphicarpa bracteata|384740 +amphicarpaea|384842 +amphicarpaea bracteata|384942 +amphictyony|385046 +amphidiploid|385082 +amphidiploidy|385119 +amphigory|385152 +amphimixis|385237 +amphineura|385303 +amphioxidae|385360 +amphioxus|385469 +amphipod|385513 +amphipoda|385556 +amphiprion|385614 +amphiprion percula|385673 +amphiprostylar|385752 +amphiprostyle|385820 +amphiprotic|385888 +amphisbaena|385920 +amphisbaenia|386059 +amphisbaenidae|386157 +amphistylar|386233 +amphitheater|386317 +amphitheatre|386423 +amphitheatric|386529 +amphitheatrical|386601 +amphitropous|386673 +amphitropous ovule|386708 +amphiuma|386742 +amphiumidae|386803 +amphora|386872 +amphoric|386893 +amphoteric|386970 +amphotericin|387013 +ampicillin|387062 +ample|387128 +ampleness|387286 +amplexicaul leaf|387351 +amplification|387398 +amplifier|387513 +amplify|387553 +amplitude|387753 +amplitude distortion|387870 +amplitude level|387932 +amplitude modulation|387976 +amply|388020 +ampoule|388053 +ampul|388101 +ampule|388149 +ampulla|388197 +ampullar|388237 +ampullary|388274 +amputate|388311 +amputation|388368 +amputator|388511 +amputee|388565 +amrinone|388613 +amsinckia|388684 +amsinckia grandiflora|388741 +amsinckia intermedia|388842 +amsonia|388932 +amsonia tabernaemontana|389002 +amsterdam|389088 +amuck|389175 +amulet|389274 +amundsen|389321 +amur|389383 +amur privet|389433 +amur river|389492 +amusd|389548 +amuse|389618 +amused|389701 +amusement|389746 +amusement arcade|389827 +amusement park|389860 +amusing|389934 +amusingly|390059 +amusive|390089 +amy lowell|390141 +amy lyon|390184 +amygdala|390263 +amygdalaceae|390336 +amygdaliform|390424 +amygdalin|390492 +amygdaline|390521 +amygdaloid|390569 +amygdaloid nucleus|390637 +amygdaloidal|390710 +amygdalotomy|390778 +amygdalus|390814 +amygdalus communis|390877 +amygdalus communis amara|390987 +amyl alcohol|391092 +amyl nitrate|391122 +amylaceous|391169 +amylase|391238 +amyloid|391262 +amyloid plaque|391367 +amyloid protein plaque|391421 +amyloidal|391475 +amyloidosis|391544 +amylolysis|391600 +amylolytic|391669 +amylum|391737 +amyotonia|391783 +amyotrophia|391842 +amyotrophic lateral sclerosis|391903 +amyotrophy|392048 +amytal|392109 +amyxia|392190 +an|392250 +ana|392313 +anabantidae|392397 +anabaptism|392461 +anabaptist|392506 +anabaptist denomination|392548 +anabas|392629 +anabas testudineus|392676 +anabatic|392758 +anabiosis|392785 +anabiotic|392824 +anabolic|392862 +anabolic steroid|392968 +anabolism|393030 +anabrus|393108 +anabrus simplex|393163 +anacanthini|393227 +anacardiaceae|393291 +anacardium|393395 +anacardium occidentale|393474 +anachronic|393557 +anachronism|393616 +anachronistic|393724 +anachronous|393783 +anacin iii|393842 +anaclinal|393966 +anaclisis|393995 +anaclitic|394027 +anaclitic depression|394058 +anacoluthia|394139 +anacoluthic|394190 +anacoluthon|394228 +anaconda|394279 +anacyclus|394318 +anacyclus pyrethrum|394383 +anadama bread|394483 +anadenanthera|394537 +anadenanthera colubrina|394612 +anadiplosis|394702 +anadromous|394748 +anaemia|394779 +anaemic|394854 +anaerobe|394925 +anaerobic|394958 +anaerobic exercise|395017 +anaerobiotic|395153 +anaesthesia|395185 +anaesthetic|395261 +anaesthetic agent|395362 +anaesthetise|395434 +anaesthetised|395534 +anaesthetist|395608 +anaesthetize|395689 +anaesthetized|395789 +anagallis|395863 +anagallis arvensis|395939 +anagallis tenella|396052 +anagasta|396121 +anagasta kuehniella|396179 +anaglyph|396274 +anaglyphic|396376 +anaglyphical|396457 +anaglyphy|396538 +anaglyptic|396569 +anaglyptical|396650 +anagnost|396731 +anagoge|396802 +anagogic|396872 +anagogical|396931 +anagram|396990 +anagrammatic|397052 +anagrammatical|397093 +anagrammatise|397134 +anagrammatize|397184 +anagrams|397234 +anagyris|397282 +anagyris foetida|397342 +anaheim|397431 +anal|397485 +anal intercourse|397532 +anal personality|397611 +anal phase|397676 +anal retentive personality|397719 +anal sex|397784 +anal sphincter|397863 +anal stage|397972 +analbuminemia|398015 +analecta|398067 +analects|398120 +analeptic|398173 +analgesia|398236 +analgesic|398299 +analgetic|398429 +analog|398477 +analog computer|398739 +analog watch|398891 +analog-digital converter|398545 +analog-to-digital converter|398642 +analogical|398926 +analogise|398968 +analogist|399005 +analogize|399046 +analogous|399083 +analogue|399141 +analogue computer|399216 +analogy|399368 +analphabet|399491 +analphabetic|399563 +analphabetism|399725 +analysand|399769 +analyse|399796 +analyser|399968 +analysis|400006 +analysis of variance|400292 +analysis situs|400350 +analyst|400400 +analytic|400493 +analytic geometry|400674 +analytic thinking|400750 +analytical|400830 +analytical balance|400902 +analytical cubism|400960 +analytical geometry|400994 +analytical review|401070 +analyticity|401119 +analyzable|401149 +analyze|401190 +analyzed|401362 +analyzer|401389 +anamnesis|401427 +anamnestic|401553 +anamnestic reaction|401603 +anamnestic response|401705 +anamorphic|401807 +anamorphism|401870 +anamorphosis|401982 +ananas|402073 +ananas comosus|402169 +ananias|402256 +anapaest|402299 +anapaestic|402358 +anapest|402399 +anapestic|402458 +anaphalis|402499 +anaphalis margaritacea|402564 +anaphase|402680 +anaphasic|402721 +anaphor|402762 +anaphora|402784 +anaphoric|402842 +anaphoric pronoun|402871 +anaphoric relation|402906 +anaphrodisia|402955 +anaphrodisiac|403025 +anaphylactic|403062 +anaphylactic shock|403109 +anaphylaxis|403149 +anaplasia|403196 +anaplasmosis|403225 +anaplastic|403262 +anaplasty|403291 +anaprox|403422 +anapsid|403550 +anapsid reptile|403601 +anapsida|403652 +anapurna|403703 +anarchic|403800 +anarchical|403850 +anarchism|403900 +anarchist|403967 +anarchistic|404015 +anarchy|404083 +anarhichadidae|404121 +anarhichas|404194 +anarthria|404253 +anas|404319 +anas acuta|404442 +anas americana|404502 +anas clypeata|404596 +anas crecca|404667 +anas discors|404733 +anas penelope|404799 +anas platyrhynchos|404856 +anas querquedula|404916 +anas rubripes|404973 +anasa|405026 +anasa tristis|405075 +anasarca|405141 +anasarcous|405187 +anasazi|405234 +anaspid|405315 +anaspida|405373 +anastalsis|405428 +anastatica|405501 +anastatica hierochuntica|405571 +anastigmat|405692 +anastigmatic|405735 +anastigmatic lens|405819 +anastomose|405869 +anastomosis|405951 +anastomotic|406030 +anastomotic vein|406095 +anastomus|406169 +anastrophe|406225 +anastylosis|406273 +anathema|406319 +anathematisation|406423 +anathematise|406490 +anathematization|406574 +anathematize|406641 +anathemise|406725 +anathemize|406964 +anatidae|407203 +anatole france|407258 +anatoli karpov|407352 +anatoli yevgenevich karpov|407438 +anatolia|407536 +anatolian|407584 +anatolian language|407682 +anatomic|407789 +anatomical|407887 +anatomical reference|408038 +anatomical sphincter|408106 +anatomical structure|408179 +anatomise|408279 +anatomist|408316 +anatomize|408342 +anatomy|408431 +anatotitan|408641 +anatoxin|408704 +anatropous|408753 +anatropous ovule|408793 +anaxagoras|408825 +anaximander|408868 +anaximenes|408946 +ancestor|408989 +ancestor worship|409061 +ancestral|409095 +ancestress|409197 +ancestry|409262 +anchor|409472 +anchor chain|409748 +anchor light|409776 +anchor ring|409842 +anchorage|409904 +anchorage ground|410025 +anchorite|410074 +anchoritic|410108 +anchorman|410178 +anchorperson|410282 +anchovy|410386 +anchovy butter|410448 +anchovy dressing|410485 +anchovy paste|410535 +anchovy pear|410617 +anchovy pear tree|410716 +anchovy pizza|410784 +anchovy sauce|410823 +anchusa|410852 +anchusa capensis|410891 +anchusa officinalis|410961 +anchusa riparia|411034 +anchylosis|411102 +ancien regime|411142 +ancient|411195 +ancient greek|411228 +ancient history|411298 +ancient pine|411379 +ancientness|411441 +ancients|411480 +ancillary|411505 +ancistrodon|411595 +ancohuma|411690 +anconeous muscle|411731 +ancylidae|411807 +ancylose|411868 +ancylostomatidae|411936 +ancylus|412015 +ancylus fluviatilis|412068 +and circuit|412167 +and elsewhere|412225 +and gate|412260 +and how|412315 +and others|412351 +and so|412383 +and so forth|412415 +and so on|412460 +and then|412505 +andalucia|412537 +andalusia|412648 +andalusian|412759 +andaman marble|412861 +andaman redwood|412945 +andaman sea|413003 +andante|413040 +andantino|413082 +andean|413106 +andean condor|413208 +andelmin|413267 +anders celsius|413298 +andersen|413378 +anderson|413443 +andes|413745 +andesite|413846 +andhra pradesh|413877 +andira|413931 +andira inermis|413985 +andiron|414085 +andorra|414131 +andorran|414213 +andosite|414297 +andradite|414328 +andre derain|414354 +andre gide|414404 +andre le notre|414501 +andre maginot|414611 +andre malraux|414697 +andre markoff|414756 +andre maurois|414836 +andre paul guillaume gide|414908 +andre weil|415020 +andrea guarneri|415070 +andrea mantegna|415154 +andrea palladio|415221 +andreaea|415290 +andreaeales|415343 +andreas vesalius|415406 +andrei andreyevich gromyko|415468 +andrei arsenevich tarkovsky|415576 +andrei dimitrievich sakharov|415715 +andrei gromyko|415825 +andrei markov|415921 +andrei sakharov|416001 +andrei tarkovsky|416098 +andrei voznesenski|416226 +andrena|416290 +andrenid|416331 +andrenidae|416372 +andres martinez|416438 +andres segovia|416616 +andrew|416696 +andrew carnegie|416890 +andrew d. white|416978 +andrew dickson white|417065 +andrew fielding huxley|417157 +andrew huxley|417246 +andrew jackson|417326 +andrew jackson downing|417487 +andrew johnson|417612 +andrew lloyd webber|417783 +andrew marvell|417886 +andrew mellon|417938 +andrew w. mellon|418064 +andrew william mellon|418193 +andrew wyeth|418327 +andrew's clintonia|416782 +andrews|418376 +andricus|418527 +androecium|418585 +androgen|418617 +androgenesis|418690 +androgenetic|418764 +androgenic|418839 +androgenic hormone|418894 +androgenous|418967 +androgeny|419073 +androglossia|419147 +androgyne|419175 +androgynous|419279 +androgyny|419451 +android|419519 +andromeda|419582 +andromeda galaxy|419720 +andromeda glaucophylla|419791 +andromeda polifolia|419878 +androphobia|419973 +andropogon|420008 +andropogon furcatus|420086 +andropogon gerardii|420180 +andropogon scoparius|420274 +andropogon virginicus|420404 +androsterone|420481 +andryala|420543 +andrzej wajda|420583 +andvari|420673 +andy warhol|420710 +ane|420758 +anecdotal|420788 +anecdote|420878 +anecdotic|420911 +anecdotical|420980 +anecdotist|421049 +anechoic|421107 +anechoic chamber|421151 +aneides|421182 +aneides lugubris|421237 +anele|421320 +anemia|421369 +anemia adiantifolia|421483 +anemic|421547 +anemic anoxia|421619 +anemic hypoxia|421649 +anemographic|421681 +anemography|421744 +anemometer|421807 +anemometric|421859 +anemometrical|421935 +anemometry|422011 +anemone|422073 +anemone canadensis|422148 +anemone cylindrica|422229 +anemone fish|422307 +anemone ludoviciana|422351 +anemone nemorosa|422561 +anemone occidentalis|422636 +anemone pulsatilla|422759 +anemone quinquefolia|422875 +anemone riparia|422967 +anemone sylvestris|423062 +anemone tetonensis|423165 +anemone virginiana|423263 +anemonella|423362 +anemonella thalictroides|423432 +anemophilous|423510 +anemopsis|423545 +anemopsis californica|423621 +anencephalia|423708 +anencephalic|423835 +anencephalous|423963 +anencephaly|424091 +anergy|424218 +aneroid|424297 +aneroid barometer|424358 +anesthesia|424403 +anesthesiologist|424479 +anesthesiology|424560 +anesthetic|424611 +anesthetic agent|424713 +anesthetise|424785 +anesthetised|424885 +anesthetist|424959 +anesthetize|425040 +anesthetized|425140 +anesthyl|425214 +anestric|425312 +anestrous|425394 +anestrum|425535 +anestrus|425626 +anethum|425717 +anethum graveolens|425774 +aneuploid|425848 +aneuploidy|425908 +aneurin|425970 +aneurism|426103 +aneurismal|426153 +aneurismatic|426232 +aneurysm|426311 +aneurysmal|426361 +aneurysmatic|426440 +anew|426519 +anfractuous|426539 +ang|426568 +angas|426632 +angel|426665 +angel cake|427030 +angel dust|427078 +angel falls|427211 +angel food cake|427266 +angel shark|427314 +angel's trumpet|426841 +angel-wing begonia|426976 +angelfish|427378 +angelic|427534 +angelica|427710 +angelica archangelica|427838 +angelica sylvestris|427936 +angelical|428018 +angelim|428190 +angelique|428221 +angelology|428271 +angelus|428309 +angelus bell|428371 +anger|428411 +angered|428616 +angevin|428675 +angevine|428745 +angiitis|428816 +angina|428872 +angina pectoris|428974 +anginal|429048 +anginose|429124 +anginous|429200 +angiocardiogram|429276 +angiocarp|429352 +angiocarpic|429398 +angiocarpous|429458 +angiogenesis|429518 +angiogenesis inhibitor|429599 +angiogram|429677 +angiography|429747 +angiohemophilia|429802 +angiologist|429913 +angiology|429969 +angioma|430015 +angiomatous|430065 +angiopathy|430118 +angioplasty|430148 +angiopteris|430242 +angiopteris evecta|430303 +angiosarcoma|430383 +angioscope|430457 +angiosperm|430488 +angiospermae|430560 +angiospermous|430688 +angiospermous tree|430746 +angiospermous yellowwood|430794 +angiotelectasia|430855 +angiotensin|430924 +angiotensin converting enzyme|431001 +angiotensin converting enzyme inhibitor|431089 +angiotensin i|431191 +angiotensin ii|431263 +angiotonin|431337 +angle|431414 +angle bracket|431743 +angle iron|431829 +angle of attack|431871 +angle of dip|431931 +angle of extinction|432009 +angle of incidence|432061 +angle of inclination|432111 +angle of reflection|432159 +angle of refraction|432194 +angle of view|432229 +angle-closure glaucoma|431662 +angle-park|431718 +angled|432269 +angled loofah|432302 +angledozer|432410 +angler|432446 +angler fish|432628 +anglerfish|432836 +anglesea|432963 +anglesea island|433043 +anglesey|433130 +anglesey island|433210 +anglewing|433297 +angleworm|433391 +anglia|433530 +anglian|433561 +anglican|433610 +anglican catholic|433687 +anglican church|433741 +anglican communion|433843 +anglicanism|433948 +anglicise|433995 +anglicism|434079 +anglicize|434200 +angling|434284 +anglo-american|434322 +anglo-catholic|434370 +anglo-catholicism|434432 +anglo-french|434506 +anglo-indian|434561 +anglo-jewish|434657 +anglo-norman|434744 +anglo-saxon|434799 +anglo-saxon deity|434970 +anglomania|435043 +anglophil|435085 +anglophile|435169 +anglophilia|435253 +anglophilic|435304 +anglophobe|435354 +anglophobia|435380 +anglophobic|435421 +angola|435461 +angolan|435534 +angolan capital|435612 +angolan monetary unit|435682 +angolese|435749 +angora|435784 +angora cat|435969 +angora goat|436059 +angora rabbit|436126 +angostura|436188 +angostura bark|436227 +angostura bridge|436266 +angoumois grain moth|436327 +angoumois moth|436404 +angraecum|436481 +angrecum|436571 +angriness|436615 +angry|436658 +angry walk|436972 +angst|437003 +angstrom|437032 +angstrom unit|437085 +anguid lizard|437138 +anguidae|437168 +anguilla|437226 +anguilla sucklandii|437302 +anguillan|437360 +anguillidae|437424 +anguilliformes|437488 +anguillula|437574 +anguillula aceti|437659 +anguine|437751 +anguis|437791 +anguis fragilis|437841 +anguish|437915 +anguished|438064 +angular|438112 +angular artery|438383 +angular distance|438462 +angular momentum|438494 +angular position|438529 +angular shape|438581 +angular unit|438626 +angular vein|438673 +angularity|438740 +angulate|438838 +angulation|439129 +angus|439214 +angus frank johnstone wilson|439328 +angus og|439433 +angwantibo|439493 +anhedonia|439556 +anhidrosis|439608 +anhima|439683 +anhima cornuta|439730 +anhimidae|439794 +anhinga|439852 +anhinga anhinga|439907 +anhingidae|439986 +anhydride|440047 +anhydrosis|440093 +anhydrous|440168 +ani|440197 +anicius manlius severinus boethius|440217 +anicteric|440349 +anigozanthus|440390 +anigozanthus manglesii|440474 +anil|440622 +anile|440754 +aniline|440773 +aniline dye|440845 +aniline oil|440879 +anima|440951 +animadversion|440975 +animadvert|441034 +animal|441122 +animal black|441348 +animal charcoal|441412 +animal communication|441476 +animal disease|441528 +animal fancier|441560 +animal fat|441603 +animal fiber|441643 +animal fibre|441721 +animal foot|441799 +animal glue|441857 +animal group|441911 +animal husbandry|441950 +animal kingdom|442006 +animal leg|442064 +animal magnetism|442088 +animal material|442152 +animal nature|442192 +animal oil|442232 +animal order|442272 +animal pigment|442300 +animal product|442332 +animal psychology|442372 +animal scientist|442455 +animal skin|442516 +animal starch|442552 +animal stuffer|442607 +animal tissue|442690 +animal toxin|442720 +animal trainer|442757 +animal virus|442797 +animal-worship|441307 +animalcule|442825 +animalculum|442872 +animalia|442919 +animalisation|442986 +animalise|443074 +animalism|443224 +animalistic|443349 +animality|443432 +animalization|443472 +animalize|443610 +animallike|443760 +animate|443787 +animate being|444183 +animate thing|444255 +animated|444314 +animated cartoon|444425 +animated oat|444473 +animateness|444527 +animating|444590 +animation|444633 +animatism|444968 +animatistic|445010 +animator|445053 +animatronics|445147 +anime|445178 +animise|445245 +animism|445298 +animist|445378 +animistic|445492 +animize|445581 +animosity|445634 +animus|445696 +anion|445758 +anionic|445777 +anionic compound|445861 +anionic detergent|445914 +anise|445979 +anise cookie|446120 +anise hyssop|446163 +anise plant|446219 +anise tree|446286 +aniseed|446311 +aniseikonia|446393 +aniseikonic|446476 +anisette|446558 +anisette de bordeaux|446613 +anisogamete|446689 +anisogametic|446717 +anisogamic|446745 +anisogamous|446807 +anisogamy|446869 +anisometric|446919 +anisometropia|446962 +anisometropic|446999 +anisoptera|447035 +anisotremus|447099 +anisotremus surinamensis|447161 +anisotremus virginicus|447247 +anisotropic|447327 +anisotropy|447383 +anit-impotence drug|447412 +anjou|447460 +ankara|447507 +ankle|447581 +ankle brace|447717 +ankle bracelet|447744 +ankle joint|447791 +ankle-deep|447679 +anklebone|447889 +anklet|447942 +anklets|448042 +ankyloglossia|448196 +ankylosaur|448323 +ankylosaurus|448373 +ankylose|448423 +ankylosing spondylitis|448491 +ankylosis|448621 +ankylotic|448661 +anlage|448689 +ann arbor|448722 +anna|448780 +anna amalia mercouri|448818 +anna eleanor roosevelt|448902 +anna howard shaw|449020 +anna pavlova|449114 +annaba|449184 +annalist|449241 +annalistic|449285 +annals|449336 +annam|449420 +annamese|449515 +annamite|449613 +annapolis|449670 +annapurna|449733 +anne boleyn|449831 +anne bradstreet|449877 +anne bronte|449957 +anne dudley bradstreet|450011 +anne hathaway|450098 +anne hutchinson|450163 +anne mansfield sullivan|450232 +anne mary robertson moses|450331 +anne robert jacques turgot|450420 +anne sexton|450516 +anne sullivan|450561 +anneal|450650 +annealed|450691 +annealing|450745 +annelid|450784 +annelid worm|450857 +annelida|450907 +annelidan|450957 +annex|450990 +annexa|451176 +annexal|451209 +annexation|451243 +annexational|451310 +annexe|451343 +annie oakley|451405 +anniellidae|451480 +annihilate|451547 +annihilated|451631 +annihilating|451685 +annihilation|451797 +annihilative|451909 +annihilator|451978 +anniversary|452039 +anno domini|452083 +annona|452123 +annona cherimola|452181 +annona diversifolia|452282 +annona glabra|452381 +annona muricata|452478 +annona reticulata|452595 +annona squamosa|452724 +annonaceae|452821 +annotate|452914 +annotating|452997 +annotation|453053 +annotator|453149 +announce|453189 +announced|453321 +announcement|453360 +announcer|453460 +annoy|453511 +annoyance|453610 +annoyed|453931 +annoyer|454085 +annoying|454156 +annual|454346 +annual fern|454525 +annual parallax|454585 +annual ring|454641 +annual salt-marsh aster|454693 +annually|454732 +annualry|454817 +annuitant|454854 +annuity|454892 +annuity in advance|454931 +annul|454973 +annular|455132 +annular eclipse|455230 +annular scotoma|455269 +annulate|455302 +annulated|455400 +annulet|455498 +annulment|455659 +annulus|455773 +annum|455869 +annunciate|455904 +annunciation|455964 +annunciation day|456147 +annunciation lily|456233 +annunciator|456333 +annunciatory|456364 +annwfn|456395 +annwn|456455 +ano|456514 +anoa|456757 +anoa depressicornis|456831 +anoa mindorensis|456925 +anobiidae|457030 +anodal|457093 +anode|457126 +anodic|457172 +anodise|457212 +anodize|457250 +anodonta|457288 +anodyne|457344 +anoectochilus|457476 +anoestrous|457563 +anoestrum|457645 +anoestrus|457736 +anogramma|457827 +anogramma leptophylla|457883 +anoint|457965 +anointer|458014 +anointing|458061 +anointing of the sick|458120 +anointment|458188 +anole|458247 +anolis|458324 +anolis carolinensis|458374 +anomala|458471 +anomala orientalis|458526 +anomalist|458644 +anomalistic month|458686 +anomalistic year|458719 +anomalopidae|458750 +anomalops|458817 +anomalopteryx|458887 +anomalopteryx oweni|458934 +anomalous|459001 +anomalous communication|459029 +anomalousness|459122 +anomaly|459195 +anomia|459365 +anomia ephippium|459494 +anomic|459558 +anomic aphasia|459607 +anomie|459695 +anomiidae|459751 +anomy|459812 +anon|459869 +anon.|459918 +anonym|459981 +anonymity|460026 +anonymous|460068 +anonymous file transfer protocol|460157 +anonymous ftp|460240 +anoperineal|460323 +anopheles|460377 +anopheline|460438 +anopia|460489 +anoplophora glabripennis|460536 +anoplura|460626 +anorak|460681 +anorchia|460734 +anorchidism|460816 +anorchism|460898 +anorectal|460980 +anorectic|461030 +anorexia|461151 +anorexia nervosa|461185 +anorexic|461220 +anorexigenic|461312 +anorgasmia|461354 +anorthic|461417 +anorthite|461445 +anorthitic|461487 +anorthography|461529 +anorthopia|461617 +anosmatic|461699 +anosmia|461733 +anosmic|461758 +anostraca|461808 +another|461866 +anouilh|461947 +anova|462006 +anovulant|462070 +anovulation|462292 +anovulatory drug|462348 +anoxemia|462570 +anoxemic|462598 +anoxia|462625 +anoxic|462649 +anoxic anoxia|462672 +ans|462702 +ansaid|462819 +ansar al islam|463157 +ansar al-islam|462928 +anselm|463305 +anser|463369 +anser anser|463413 +anser cygnoides|463482 +anseres|463543 +anseriform bird|463598 +anseriformes|463654 +anserinae|463721 +anserine|463782 +anshar|463867 +answer|463904 +answer for|464439 +answerability|464475 +answerable|464559 +answerableness|464606 +answerer|464690 +answering|464742 +answering machine|464783 +ant|464828 +ant bear|464913 +ant bird|465114 +ant cow|465230 +ant lion|465253 +ant shrike|465447 +ant thrush|465484 +antabuse|465521 +antacid|465605 +antagonise|465707 +antagonism|465856 +antagonist|466001 +antagonistic|466149 +antagonistic muscle|466445 +antagonize|466490 +antakiya|466639 +antakya|466687 +antalya|466734 +antananarivo|466800 +antapex|466874 +antarctic|466907 +antarctic circle|467043 +antarctic continent|467099 +antarctic ocean|467169 +antarctic peninsula|467216 +antarctic zone|467292 +antarctica|467382 +antares|467443 +antbird|467499 +ante|467534 +ante meridiem|467611 +ante up|467663 +anteater|467695 +antebellum|468118 +antecede|468148 +antecedence|468198 +antecedency|468284 +antecedent|468370 +antecedently|468634 +antechamber|468666 +antecubital|468742 +antedate|468801 +antediluvial|468901 +antediluvian|468935 +antediluvian patriarch|469092 +antedon|469147 +antedonidae|469203 +antefix|469273 +antelope|469313 +antelope chipmunk|469337 +antelope squirrel|469463 +antemeridian|469589 +antemortem|469651 +antenatal|469682 +antenna|469721 +antennal|469846 +antennaria|469882 +antennaria dioica|469950 +antennaria plantaginifolia|470049 +antennariidae|470165 +antennary|470235 +antenuptial|470271 +antepartum|470365 +antepenult|470404 +antepenultimate|470449 +anterior|470506 +anterior cardinal vein|470636 +anterior cerebral artery|470682 +anterior cerebral vein|470748 +anterior crural nerve|470829 +anterior facial vein|470920 +anterior fontanelle|470999 +anterior jugular vein|471058 +anterior labial veins|471125 +anterior meningeal artery|471208 +anterior naris|471277 +anterior pituitary|471315 +anterior pituitary gland|471425 +anterior serratus muscle|471535 +anterior synechia|471656 +anterior temporal artery|471692 +anterior vertebral vein|471770 +anteriority|471859 +anterograde|471978 +anterograde amnesia|472011 +anteroom|472091 +anthelminthic|472167 +anthelmintic|472325 +anthem|472484 +anthemis|472532 +anthemis arvensis|472594 +anthemis cotula|472709 +anthemis nobilis|472831 +anthemis tinctoria|472935 +anther|473060 +antheraea|473099 +antheraea mylitta|473160 +antheraea pernyi|473266 +antheraea polyphemus|473346 +antheral|473438 +anthericum|473471 +anthericum liliago|473540 +anthericum torreyi|473625 +antheridial|473700 +antheridiophore|473743 +antheridium|473780 +antheropeas|473824 +antheropeas wallacei|473895 +antherozoid|474015 +anthesis|474056 +anthidium|474194 +anthill|474255 +anthoceropsida|474318 +anthoceros|474384 +anthocerotaceae|474443 +anthocerotales|474519 +anthologise|474591 +anthologist|474640 +anthologize|474684 +anthology|474733 +anthonomus|474774 +anthonomus grandis|474838 +anthony|474904 +anthony burgess|475087 +anthony charles lynton blair|475150 +anthony comstock|475266 +anthony hopkins|475356 +anthony trollope|475495 +anthony vandyke|475561 +anthony wayne|475650 +anthophagous|475732 +anthophilous|475779 +anthophyllite|475826 +anthophyta|475859 +anthozoa|475985 +anthozoan|476110 +anthracite|476163 +anthracite coal|476214 +anthracitic|476265 +anthracosis|476290 +anthrax|476391 +anthrax pneumonia|476543 +anthrenus scrophulariae|476699 +anthriscus|476803 +anthriscus cereifolium|476869 +anthriscus sylvestris|476969 +anthropic|477069 +anthropical|477107 +anthropocentric|477145 +anthropocentricity|477193 +anthropocentrism|477262 +anthropogenesis|477331 +anthropogenetic|477402 +anthropogenic|477473 +anthropogeny|477544 +anthropoid|477615 +anthropoid ape|477719 +anthropoidal|477747 +anthropoidea|477797 +anthropolatry|477867 +anthropological|477942 +anthropologist|477981 +anthropology|478022 +anthropology department|478059 +anthropometric|478139 +anthropometrical|478221 +anthropometry|478303 +anthropomorphic|478368 +anthropomorphise|478426 +anthropomorphism|478501 +anthropomorphize|478566 +anthropomorphous|478641 +anthropophagite|478699 +anthropophagous|478775 +anthropophagus|478816 +anthurium|478892 +anthurium andraeanum|478945 +anthurium scherzerianum|479060 +anthus|479181 +anthus pratensis|479228 +anthyllis|479303 +anthyllis barba-jovis|479366 +anthyllis vulneraria|479469 +anti|479555 +anti-american|479591 +anti-catholicism|479673 +anti-drug law|479738 +anti-dumping duty|479765 +anti-g suit|479810 +anti-imperialist international brigade|479864 +anti-inflammatory|480047 +anti-inflammatory drug|480143 +anti-intellectual|480239 +anti-masonic party|480293 +anti-personnel bomb|480362 +anti-racketeering law|480447 +anti-semite|480547 +anti-semitic|480672 +anti-semitism|480775 +anti-submarine rocket|480819 +anti-sway bar|480867 +anti-takeover defense|480931 +anti-tnf compound|480984 +anti-torque rotor|481034 +anti-virus program|481078 +anti-war movement|481160 +antiacid|481232 +antiadrenergic|481300 +antiaircraft|481424 +antiaircraft fire|481523 +antiaircraft gun|481562 +antialiasing|481644 +antianxiety agent|481676 +antianxiety drug|481845 +antiapartheid|482057 +antiarrhythmic|482093 +antiarrhythmic drug|482209 +antiarrhythmic medication|482325 +antiauthoritarian|482441 +antibacterial|482479 +antibacterial drug|482579 +antiballistic missile|482679 +antibaryon|482729 +antiberiberi factor|482756 +antibiosis|482889 +antibiotic|482921 +antibiotic drug|483053 +antiblack|483134 +antibody|483211 +antic|483237 +anticancer|483394 +anticatalyst|483501 +anticholinergic|483533 +anticholinergic drug|483648 +anticholinesterase|483740 +antichrist|483814 +anticipant|483892 +anticipate|483989 +anticipated|484312 +anticipation|484382 +anticipative|484591 +anticipator|484642 +anticipatory|484701 +anticipatory breach|484755 +anticlimactic|484823 +anticlimactical|484918 +anticlimax|484992 +anticlinal|485076 +anticlockwise|485107 +anticoagulant|485232 +anticoagulant medication|485338 +anticoagulation|485444 +anticoagulative|485494 +anticonvulsant|485564 +anticonvulsant drug|485687 +anticyclone|485810 +anticyclonic|485860 +antidepressant|485910 +antidepressant drug|486000 +antidiabetic|486090 +antidiabetic drug|486176 +antidiarrheal|486262 +antidiarrheal drug|486350 +antidiuretic|486438 +antidiuretic drug|486524 +antidiuretic hormone|486610 +antido|486736 +antidorcas|486779 +antidorcas euchore|486840 +antidorcas marsupialis|486939 +antidotal|487042 +antidote|487088 +antidromic|487141 +antielectron|487170 +antiemetic|487212 +antiemetic drug|487294 +antiepileptic|487376 +antiepileptic drug|487499 +antiestablishmentarianism|487622 +antiestablishmentism|487741 +antifeminism|487860 +antifeminist|487916 +antiferromagnetic|487944 +antiferromagnetism|488015 +antifertility|488088 +antiflatulent|488149 +antifouling|488178 +antifreeze|488210 +antifungal|488237 +antifungal agent|488343 +antigen|488426 +antigenic|488460 +antigone|488495 +antigonia|488537 +antigonus|488593 +antigonus cyclops|488686 +antigram|488787 +antigua|488813 +antigua and barbuda|488845 +antiguan|488913 +antihaemophilic factor|488974 +antihaemophilic globulin|489132 +antihemophilic factor|489290 +antihemophilic globulin|489448 +antihemorrhagic factor|489606 +antihero|489683 +antihistamine|489721 +antihypertensive|489790 +antihypertensive drug|489884 +antiknock|489978 +antilepton|490038 +antilles|490118 +antilocapra|490157 +antilocapra americana|490221 +antilocapridae|490340 +antilog|490415 +antilogarithm|490461 +antilope|490507 +antilope cervicapra|490562 +antimacassar|490641 +antimagnetic|490678 +antimalarial|490713 +antimalarial drug|490786 +antimatter|490859 +antimeson|490896 +antimetabolite|490922 +antimicrobial|490993 +antimicrobic|491088 +antimonial|491184 +antimonial lead|491242 +antimonic|491302 +antimonious|491355 +antimonopoly|491408 +antimony|491450 +antimony potassium tartrate|491511 +antimuon|491579 +antimycin|491622 +antimycotic|491668 +antimycotic agent|491751 +antineoplastic|491834 +antineoplastic antibiotic|491950 +antineoplastic drug|492059 +antineutrino|492130 +antineutron|492163 +antinode|492192 +antinomasia|492216 +antinomian|492255 +antinomianism|492339 +antinomy|492402 +antioch|492457 +antiophthalmic factor|492504 +antioxidant|492579 +antiparallel|492610 +antiparticle|492641 +antipasto|492723 +antipathetic|492770 +antipathetical|492891 +antipathy|493010 +antipernicious anemia factor|493069 +antipersonnel|493212 +antipersonnel bomb|493245 +antiperspirant|493330 +antiphlogistic|493389 +antiphon|493440 +antiphonal|493497 +antiphonary|493651 +antiphony|493758 +antiphrasis|493828 +antipodal|493867 +antipodal opposition|493965 +antipode|494039 +antipodean|494081 +antipodes|494117 +antipollution|494183 +antiproton|494249 +antiprotozoal|494277 +antiprotozoal drug|494365 +antipruritic|494453 +antipsychotic|494555 +antipsychotic agent|494823 +antipsychotic drug|495091 +antipyresis|495359 +antipyretic|495391 +antiquarian|495487 +antiquark|495554 +antiquary|495633 +antiquate|495671 +antiquated|495745 +antique|495790 +antiquity|496071 +antiredeposition|496162 +antirrhinum|496235 +antirrhinum coulterianum|496306 +antirrhinum filipes|496393 +antirrhinum majus|496479 +antisatellite|496560 +antisepsis|496597 +antiseptic|496710 +antisepticize|497022 +antiserum|497055 +antisocial|497092 +antisocial personality disorder|497147 +antispasmodic|497258 +antispasmodic agent|497359 +antistrophe|497460 +antistrophic|497488 +antisubmarine|497516 +antisyphilitic|497549 +antitank|497578 +antitauon|497606 +antithesis|497654 +antithetic|497723 +antithetical|497766 +antitoxic|497809 +antitoxin|497844 +antitrade|497872 +antitrade wind|497922 +antitrades|497972 +antitrust|498056 +antitrust case|498098 +antitrust law|498156 +antitrust legislation|498205 +antitumor|498254 +antitumour|498316 +antitussive|498378 +antitype|498445 +antitypic|498554 +antitypical|498645 +antivenene|498736 +antivenin|498776 +antivert|498816 +antiviral|498891 +antiviral agent|499039 +antiviral drug|499135 +antler|499231 +antler moth|499252 +antlered|499325 +antlia|499350 +antlion|499387 +antlion fly|499501 +antofagasta|499583 +antoine domino|499650 +antoine henri becquerel|499767 +antoine laurent de jussieu|499860 +antoine laurent lavoisier|499968 +antoine lavoisier|500065 +anton bruckner|500154 +anton chekhov|500220 +anton chekov|500353 +anton gregor rubinstein|500485 +anton grigorevich rubinstein|500629 +anton pavlovich chekhov|500778 +anton pavlovich chekov|500921 +anton rubenstein|501063 +anton van leeuwenhoek|501200 +anton van leuwenhoek|501310 +antonin dvorak|501419 +antonine wall|501474 +antoninus|501532 +antonio allegri da correggio|501662 +antonio gaudi|501750 +antonio gaudi i cornet|501850 +antonio ghislieri|501959 +antonio lopez de santa ana|502101 +antonio lopez de santa anna|502234 +antonio lucio vivaldi|502368 +antonio stradivari|502472 +antonio vivaldi|502578 +antonius|502676 +antonius pius|502780 +antonius stradivarius|502847 +antony|502956 +antony tudor|503058 +antonym|503140 +antonymous|503185 +antonymy|503287 +antrorse|503323 +antrozous|503350 +antrozous pallidus|503408 +antrum|503507 +antum|503550 +antwerp|503585 +antwerpen|503661 +anu|503739 +anubis|503770 +anulus|503808 +anunnaki|503870 +anura|503917 +anuran|504015 +anuresis|504124 +anuretic|504184 +anuria|504243 +anuric|504303 +anurous|504362 +anus|504405 +anvers|504463 +anvil|504538 +anwar el-sadat|504589 +anwar sadat|504678 +anxiety|504764 +anxiety attack|504841 +anxiety disorder|504872 +anxiety hysteria|504974 +anxiety neurosis|505029 +anxiety reaction|505091 +anxiolytic|505167 +anxiolytic drug|505418 +anxious|505630 +anxiously|505725 +anxiousness|505767 +any|505853 +any longer|505947 +any old|505974 +any-and-all bid|505909 +anyhow|506003 +anymore|506075 +anyplace|506102 +anything|506128 +anyway|506152 +anywhere|506224 +anzio|506250 +ao dai|506276 +aorist|506310 +aoristic|506332 +aorta|506355 +aortal|506407 +aortic|506466 +aortic aneurysm|506525 +aortic arch|506568 +aortic orifice|506595 +aortic plexus|506641 +aortic stenosis|506676 +aortic valve|506743 +aortitis|506781 +aotus|506826 +aotus trivirgatus|506872 +aoudad|506958 +apace|507040 +apache|507089 +apache dance|507258 +apache devil dance|507307 +apadana|507380 +apalachicola|507408 +apalachicola river|507468 +apalachicola rosemary|507534 +apanage|507615 +apar|507705 +apart|507774 +apartheid|507906 +apartment|507939 +apartment building|508001 +apartment house|508062 +apatetic coloration|508123 +apathetic|508174 +apathy|508236 +apatite|508317 +apatosaur|508342 +apatosaurus|508460 +apatosaurus excelsus|508578 +apatura|508717 +apatura iris|508772 +apc|508848 +ape|509008 +ape-man|509183 +apeldoorn|509266 +apelike|509324 +apennines|509397 +aper|509506 +apercu|509603 +aperea|509652 +aperient|509699 +aperiodic|509806 +aperitif|509872 +apertif|509938 +aperture|509983 +apery|510038 +apetalous|510087 +apetalous flower|510126 +apex|510173 +apex of the sun's way|510291 +apgar score|510354 +aphaeresis|510399 +aphaeretic|510447 +aphagia|510494 +aphakia|510521 +aphakic|510600 +aphanite|510713 +aphanitic|510742 +aphasia|510771 +aphasic|510832 +aphasmidia|510951 +aphelion|511005 +apheresis|511050 +apheretic|511123 +aphesis|511170 +aphetic|511205 +aphid|511239 +aphid lion|511272 +aphididae|511309 +aphidoidea|511372 +aphis|511443 +aphis fabae|511492 +aphis lion|511551 +aphis pomi|511588 +aphonia|511655 +aphonic|511733 +aphorise|511786 +aphorism|511842 +aphorist|511892 +aphoristic|511933 +aphorize|512003 +aphotic|512059 +aphriza|512081 +aphriza virgata|512131 +aphrodisia|512218 +aphrodisiac|512286 +aphrodisiacal|512370 +aphrodite|512410 +aphrophora|512460 +aphrophora saratogensis|512524 +aphthous ulcer|512627 +aphyllanthaceae|512668 +aphyllanthes|512754 +aphyllophorales|512829 +aphyllous|512905 +apia|512933 +apiaceae|512994 +apian|513103 +apiarian|513175 +apiarist|513228 +apiary|513305 +apical|513336 +apical placentation|513356 +apiculate|513398 +apicultural|513446 +apiculture|513478 +apiculturist|513521 +apidae|513598 +apiece|513652 +apios|513711 +apios americana|513762 +apios tuberosa|513884 +apis|514005 +apis mellifera|514051 +apis mellifera adansonii|514103 +apis mellifera scutellata|514261 +apish|514420 +apishamore|514453 +apium|514514 +apium graveolens|514565 +apium graveolens dulce|514642 +apium graveolens rapaceum|514744 +apivorous|514893 +aplacental|514926 +aplacophora|514957 +aplacophoran|515055 +aplanatic|515109 +aplasia|515138 +aplastic anaemia|515165 +aplastic anemia|515222 +aplectrum|515279 +aplectrum hyemale|515354 +aplite|515448 +aplitic|515477 +aplodontia|515506 +aplodontia rufa|515567 +aplodontiidae|515662 +aplomb|515734 +aplysia|515819 +aplysia punctata|515892 +aplysiidae|515963 +apnea|516054 +apneic|516077 +apnoeic|516108 +apoapsis|516139 +apocalypse|516191 +apocalyptic|516348 +apocalyptical|516470 +apocarpous|516538 +apochromatic|516569 +apocope|516601 +apocrine|516631 +apocrine gland|516658 +apocrypha|516713 +apocryphal|516802 +apocynaceae|516912 +apocynaceous|517012 +apocynum|517066 +apocynum androsaemifolium|517139 +apocynum cannabinum|517257 +apocynum pumilum|517342 +apodal|517416 +apodeictic|517449 +apodeme|517484 +apodemus|517582 +apodemus sylvaticus|517637 +apodictic|517729 +apodidae|517764 +apodiform bird|517819 +apodiformes|517848 +apodous|517912 +apoenzyme|517945 +apogametic|517972 +apogamic|518019 +apogamous|518066 +apogamy|518113 +apogean|518139 +apogee|518182 +apogon|518256 +apogon maculatus|518303 +apogonidae|518380 +apoidea|518441 +apojove|518503 +apolemia|518547 +apolitical|518578 +apollinaire|518623 +apollo|518719 +apollo asteroid|518777 +apollo program|518850 +apologetic|518903 +apologetics|519009 +apologia|519048 +apologise|519102 +apologist|519211 +apologize|519289 +apologue|519398 +apology|519445 +apolune|519596 +apomict|519650 +apomictic|519690 +apomictical|519812 +apomixis|519865 +apomorphine|519917 +aponeurosis|519955 +aponeurotic|519989 +apopemptic|520022 +apophasis|520076 +apophatic|520113 +apophatism|520163 +apophthegm|520215 +apophyseal|520265 +apophysis|520334 +apoplectic|520410 +apoplectiform|520436 +apoplectoid|520477 +apoplexy|520518 +apoptosis|520579 +aporocactus|520671 +aporocactus flagelliformis|520748 +aposelene|520851 +aposematic coloration|520905 +aposiopesis|520977 +aposiopetic|521016 +apostasy|521054 +apostate|521159 +apostatise|521246 +apostatize|521309 +apostle|521372 +apostle of germany|521474 +apostle of the gentiles|521592 +apostle paul|521759 +apostleship|521915 +apostolic|521991 +apostolic delegate|522110 +apostolical|522147 +apostrophe|522264 +apostrophic|522338 +apostrophise|522376 +apostrophize|522417 +apothecaries' ounce|522458 +apothecaries' pound|522554 +apothecaries' unit|522644 +apothecaries' weight|522712 +apothecary|522780 +apothecary's shop|522903 +apothecial|522985 +apothecium|523013 +apothegm|523042 +apothegmatic|523092 +apothegmatical|523179 +apotheose|523227 +apotheosis|523276 +apotheosise|523398 +apotheosize|523447 +apotropaic|523496 +appal|523522 +appalachia|523693 +appalachian|523796 +appalachian mountains|523900 +appalachians|524046 +appall|524183 +appalled|524353 +appalling|524402 +appaloosa|524458 +appanage|524519 +apparatus|524608 +apparatus urogenitalis|524660 +apparel|524836 +apparel chain|525016 +apparel industry|525045 +appareled|525141 +apparency|525225 +apparent|525306 +apparent horizon|525423 +apparent motion|525503 +apparent movement|525579 +apparently|525655 +apparentness|525773 +apparition|525854 +apparitional|526039 +appeal|526122 +appeal board|526493 +appealable|526552 +appealing|526583 +appealingness|526733 +appeals board|526784 +appeals court|526886 +appear|526968 +appearance|527103 +appearing|527387 +appeasable|527456 +appease|527497 +appeasement|527770 +appeaser|527814 +appeasing|527886 +appellant|527961 +appellate|528074 +appellate court|528142 +appellation|528224 +appellative|528287 +append|528431 +appendage|528553 +appendaged|528663 +appendant|528694 +appendectomy|528721 +appendicectomy|528800 +appendicitis|528879 +appendicle|528928 +appendicular|528958 +appendicular artery|528998 +appendicular skeleton|529087 +appendicular vein|529137 +appendicularia|529214 +appendix|529268 +apperceive|529405 +apperception|529445 +apperceptive|529491 +appertain|529524 +appetence|529583 +appetency|529629 +appetent|529675 +appetiser|529702 +appetising|529746 +appetisingness|529832 +appetite|529898 +appetite suppressant|529944 +appetitive|529991 +appetizer|530018 +appetizing|530062 +appetizingness|530159 +appian way|530225 +applaud|530274 +applaudable|530350 +applauder|530412 +applause|530464 +apple|530527 +apple aphid|530622 +apple blight|530678 +apple butter|530720 +apple canker|530780 +apple dumpling|530822 +apple fritter|530855 +apple geranium|530886 +apple jelly|530961 +apple juice|530988 +apple maggot|531033 +apple mint|531111 +apple nut|531265 +apple of discord|531315 +apple of peru|531354 +apple orchard|531551 +apple pie|531607 +apple polisher|531630 +apple rust|531742 +apple sauce|531833 +apple tart|531962 +apple tree|531999 +apple turnover|532030 +applecart|532063 +applejack|532151 +applemint|532177 +applesauce|532250 +applesauce cake|532368 +applet|532398 +appleton|532469 +appleton layer|532570 +applewood|532638 +appliance|532667 +applicability|532803 +applicable|532868 +applicant|532938 +application|533018 +application form|533482 +application program|533513 +application-oriented language|533401 +applications programme|533631 +applicative|533749 +applicator|533803 +applicatory|533838 +applied|533892 +applied anatomy|533944 +applied math|534010 +applied mathematics|534075 +applied psychology|534140 +applied science|534223 +applied scientist|534394 +applier|534496 +applique|534601 +apply|534692 +appoggiatura|535141 +appoint|535210 +appointed|535341 +appointee|535489 +appointive|535601 +appointment|535715 +appointment book|536018 +appointment calendar|536070 +apportion|536122 +apportionable|536239 +apportioned|536297 +apportioning|536373 +apportionment|536476 +apposable|536579 +appose|536608 +apposite|536656 +appositeness|536708 +apposition|536754 +appositional|536967 +appositive|537032 +appositively|537097 +appraisal|537132 +appraise|537284 +appraiser|537405 +appraising|537477 +appreciable|537517 +appreciate|537551 +appreciated|537785 +appreciation|537890 +appreciative|538118 +appreciatively|538180 +appreciativeness|538214 +appreciator|538276 +apprehend|538350 +apprehended|538538 +apprehender|538595 +apprehensible|538736 +apprehension|538839 +apprehensive|539086 +apprehensively|539166 +apprehensiveness|539208 +apprentice|539277 +apprenticed|539391 +apprenticeship|539445 +appressed|539524 +apprisal|539559 +apprise|539621 +apprize|539797 +appro|539973 +approach|540038 +approach path|540676 +approach pattern|540766 +approach shot|540837 +approach trench|540897 +approachability|540950 +approachable|541002 +approaching|541124 +approbate|541286 +approbation|541350 +approbative|541409 +approbatory|541482 +appropriable|541555 +appropriate|541587 +appropriated|541955 +appropriately|542034 +appropriateness|542093 +appropriation|542194 +appropriation bill|542280 +appropriative|542321 +appropriator|542361 +approval|542392 +approve|542571 +approved|542651 +approver|542718 +approving|542746 +approvingly|542852 +approximate|542886 +approximate range|543097 +approximately|543171 +approximation|543258 +approximative|543442 +appurtenance|543491 +appurtenances|543571 +appurtenant|543701 +apr|543791 +apractic|543839 +apraxia|543871 +apraxic|543932 +apres-ski|543964 +apresoline|543994 +apricot|544101 +apricot bar|544207 +apricot sauce|544238 +apricot tree|544267 +april|544308 +april 14|544358 +april fool|544406 +april fools'|544501 +april fools' day|544572 +apron|544647 +apron string|544758 +apron strings|544799 +apropos|544865 +apse|544991 +apsidal|545024 +apsis|545053 +apsu|545086 +apt|545119 +aptenodytes|545264 +aptenodytes forsteri|545326 +aptenodytes patagonica|545401 +apteral|545477 +apterous|545602 +apterygidae|545637 +apterygiformes|545701 +apteryx|545774 +aptitude|545831 +aptitudinal|545863 +aptly|545897 +aptness|545952 +apulia|546028 +apus|546073 +apus apus|546140 +apyretic tetanus|546190 +aqaba|546282 +aqua|546338 +aqua fortis|546617 +aqua regia|546655 +aqua vitae|546703 +aqua-lung|546426 +aquacultural|546811 +aquaculture|546886 +aqualung|546919 +aquamarine|547019 +aquanaut|547136 +aquaphobia|547234 +aquaphobic|547268 +aquaplane|547307 +aquarium|547368 +aquarius|547437 +aquarius the water bearer|547679 +aquatic|547826 +aquatic bird|547993 +aquatic fern|548020 +aquatic mammal|548058 +aquatic plant|548136 +aquatic vertebrate|548228 +aquatics|548276 +aquatint|548360 +aquavit|548423 +aqueduct|548521 +aqueductus cerebri|548547 +aqueous|548645 +aqueous humor|548684 +aqueous humour|548781 +aqueous solution|548878 +aquicultural|548913 +aquiculture|548988 +aquifer|549064 +aquiferous|549112 +aquifoliaceae|549162 +aquila|549266 +aquila chrysaetos|549414 +aquila degli abruzzi|549491 +aquila rapax|549587 +aquilege|549653 +aquilegia|549698 +aquilegia canadensis|549743 +aquilegia coerulia|549849 +aquilegia scopulorum calcarea|549970 +aquilegia vulgaris|550102 +aquiline|550195 +aquinas|550228 +aquitaine|550412 +aquitania|550465 +ar|550518 +ara|550699 +arab|550762 +arab chief|551034 +arab league|551118 +arab republic of egypt|551263 +arab revolutionary brigades|551376 +arab-berber|550848 +arab-israeli war|550904 +arabesque|551643 +arabia|551719 +arabian|551770 +arabian camel|551929 +arabian coffee|552002 +arabian desert|552075 +arabian jasmine|552121 +arabian nights|552186 +arabian nights' entertainment|552298 +arabian peninsula|552425 +arabian sea|552487 +arabian tea|552524 +arabic|552616 +arabic alphabet|552683 +arabic language|552733 +arabic numeral|552789 +arabidopsis|552878 +arabidopsis lyrata|552951 +arabidopsis thaliana|553016 +arability|553101 +arabis|553145 +arabis canadensis|553203 +arabis glabra|553279 +arabis turrita|553376 +arabist|553462 +arable|553520 +araceae|553580 +araceous|553664 +arachis|553719 +arachis hypogaea|553776 +arachnid|553862 +arachnida|553900 +arachnidian|553951 +arachnoid|554015 +arachnoid membrane|554147 +arafat|554201 +arafura sea|554270 +aragon|554307 +aragonite|554420 +araguaia|554447 +araguaia river|554519 +araguaya|554597 +araguaya river|554669 +arak|554747 +aral sea|554841 +arales|554883 +aralia|554931 +aralia elata|554974 +aralia hispida|555043 +aralia nudicaulis|555154 +aralia racemosa|555272 +aralia spinosa|555375 +aralia stipulata|555485 +araliaceae|555578 +aram|555657 +aram ilich khachaturian|555703 +aram kachaturian|555800 +aram khachaturian|555864 +aramaean|555955 +aramaic|556047 +aramaic script|556139 +arame|556193 +aramean|556216 +aramus|556307 +aramus guarauna|556354 +aramus pictus|556421 +aran islands|556484 +aranea|556526 +aranea diademata|556600 +araneae|556664 +araneida|556740 +araneidal|556817 +araneidan|556858 +araneus|556899 +araneus cavaticus|556974 +aranyaka|557038 +arapaho|557087 +arapahoe|557236 +ararat|557386 +arariba|557447 +araroba|557511 +aras|557558 +arauca|557647 +araucaria|557676 +araucaria araucana|557719 +araucaria bidwillii|557801 +araucaria columnaris|557889 +araucaria cunninghamii|557970 +araucaria excelsa|558062 +araucaria family|558160 +araucaria heterophylla|558239 +araucariaceae|558342 +araujia|558435 +araujia sericofera|558505 +arava|558569 +arawak|558620 +arawakan|558778 +arawn|559056 +araxes|559090 +arb|559124 +arbalest|559187 +arbalist|559312 +arbiter|559437 +arbitrable|559556 +arbitrage|559587 +arbitrager|559652 +arbitrageur|559715 +arbitral|559778 +arbitrament|559819 +arbitrarily|559901 +arbitrariness|559997 +arbitrary|560110 +arbitrate|560206 +arbitration|560294 +arbitration clause|560393 +arbitrational|560436 +arbitrative|560477 +arbitrator|560507 +arbitrement|560594 +arbor|560676 +arbor day|560800 +arboraceous|560833 +arborary|560884 +arboreal|560956 +arboreal salamander|561177 +arboreous|561243 +arborescent|561432 +arborescent plant|561554 +arboresque|561608 +arboretum|561730 +arborical|561788 +arboriculture|561860 +arboriculturist|561926 +arboriform|562008 +arborise|562130 +arborist|562193 +arborize|562259 +arborolatry|562322 +arborous|562364 +arborvirus|562436 +arborvitae|562472 +arbour|562516 +arbovirus|562576 +arbutus|562612 +arbutus menziesii|562640 +arbutus unedo|562719 +arc|562797 +arc lamp|563022 +arc light|563064 +arc-boutant|562964 +arca|563106 +arcade|563150 +arcadia|563217 +arcadian|563314 +arcadic|563392 +arcane|563431 +arcanum|563456 +arcdegree|563497 +arced|563536 +arcella|563604 +arcellidae|563641 +arceuthobium|563708 +arceuthobium pusillum|563784 +arch|563872 +arch over|564142 +arch support|564170 +archaean|564200 +archaebacteria|564232 +archaebacterium|564319 +archaeobacteria|564406 +archaeologic|564493 +archaeological|564568 +archaeologist|564643 +archaeology|564694 +archaeopteryx|564739 +archaeopteryx lithographica|564808 +archaeornis|564905 +archaeornithes|564931 +archaeozoic|565000 +archaeozoic aeon|565142 +archaic|565265 +archaicism|565333 +archaise|565385 +archaism|565432 +archaistic|565484 +archaize|565526 +archangel|565573 +archangelic|565662 +archangelical|565702 +archbishop|565742 +archbishopric|565769 +archdeacon|565805 +archdeaconry|565861 +archdiocesan|565896 +archdiocese|565935 +archducal|565974 +archduchess|565999 +archduchy|566029 +archduke|566068 +archean|566093 +archean aeon|566229 +archean eon|566348 +arched|566466 +archegonial|566563 +archegoniate|566608 +archegonium|566653 +archenteron|566686 +archeobacteria|566734 +archeologic|566821 +archeological|566896 +archeological remains|566971 +archeological site|567016 +archeologist|567074 +archeology|567125 +archeopteryx|567170 +archeozoic|567239 +archeozoic eon|567381 +archepiscopal|567502 +archer|567546 +archerfish|567768 +archery|567839 +arches national park|567872 +archespore|567937 +archesporial|567975 +archesporium|568001 +archetypal|568039 +archetype|568113 +archetypical|568161 +archiannelid|568235 +archiannelida|568293 +archibald macleish|568356 +archibald percival wavell|568417 +archidiaconal|568538 +archidiaconate|568596 +archidiskidon|568625 +archidiskidon imperator|568695 +archiepiscopal|568795 +archil|568839 +archilochus|568906 +archilochus colubris|568968 +archimandrite|569031 +archimedes|569069 +archimedes' principle|569124 +archine|569213 +arching|569242 +archipallium|569310 +archipelagic|569391 +archipelago|569464 +architect|569537 +architectonic|569573 +architectonics|569634 +architectural|569698 +architectural engineering|569844 +architectural ornament|569938 +architectural plan|570004 +architectural style|570045 +architecture|570126 +architeuthis|570353 +architrave|570393 +archival|570445 +archive|570492 +archives|570581 +archivist|570711 +archly|570751 +archness|570784 +archosargus|570860 +archosargus probatocephalus|570922 +archosargus rhomboidalis|571017 +archosaur|571111 +archosauria|571188 +archosaurian|571248 +archosaurian reptile|571337 +archpriest|571414 +archway|571478 +arcidae|571543 +arciform|571598 +arcminute|571666 +arcsecond|571719 +arctic|571758 +arctic archipelago|571983 +arctic char|572042 +arctic circle|572099 +arctic fox|572149 +arctic ground squirrel|572198 +arctic hare|572319 +arctic moss|572383 +arctic mouse-ear|572462 +arctic ocean|572619 +arctic poppy|572660 +arctic skua|572720 +arctic willow|572790 +arctic wolf|572846 +arctic zone|572917 +arctictis|572998 +arctictis bintourong|573056 +arctiid|573141 +arctiid moth|573176 +arctiidae|573211 +arctium|573274 +arctium lappa|573333 +arctium minus|573426 +arctocebus|573509 +arctocebus calabarensis|573570 +arctocephalus|573657 +arctocephalus philippi|573727 +arctonyx|573810 +arctonyx collaris|573865 +arctostaphylos|573957 +arctostaphylos alpina|574039 +arctostaphylos andersonii|574135 +arctostaphylos manzanita|574226 +arctostaphylos tomentosa|574311 +arctostaphylos uva-ursi|574413 +arctotis|574606 +arctotis stoechadifolia|574668 +arctotis venusta|574773 +arcturus|574871 +arcuate|574915 +arcuate artery|574983 +arcuate artery of the kidney|575060 +arcuate vein of the kidney|575135 +arcus|575220 +arcus senilis|575256 +arcus zygomaticus|575292 +arda|575349 +ardea|575475 +ardea herodius|575519 +ardea occidentalis|575581 +ardeb|575652 +ardeidae|575688 +ardennes|575743 +ardennes counteroffensive|575788 +ardent|575913 +ardent spirits|576037 +ardisia|576145 +ardisia crenata|576215 +ardisia escallonoides|576289 +ardisia paniculata|576382 +ardor|576472 +ardour|576636 +ards|576798 +arduous|576934 +arduousness|577092 +are|577141 +area|577182 +area bombing|577385 +area code|577461 +area of cardiac dullness|577485 +area unit|577531 +areal|577590 +areaway|577611 +areca|577639 +areca catechu|577667 +areca nut|577721 +arecaceae|577762 +arecidae|577900 +areflexia|577951 +arena|577978 +arena theater|578185 +arenaceous|578251 +arenaceous rock|578297 +arenaria|578339 +arenaria caroliniana|578530 +arenaria groenlandica|578620 +arenaria interpres|578733 +arenaria peploides|578806 +arenaria serpyllifolia|578880 +arenaria stricta|578966 +arenaria-melanocephala|578449 +arenaviridae|579032 +arenavirus|579088 +arendt|579121 +arenga|579196 +arenga pinnata|579244 +arenicolous|579323 +areola|579353 +areolar|579413 +areolar tissue|579449 +areolate|579491 +areopagite|579527 +areopagus|579565 +arequipa|579625 +arere|579681 +ares|579747 +arete|579817 +areteria cervicalis|579838 +arethusa|579920 +arethusa bulbosa|579964 +argal|580050 +argali|580094 +argasid|580138 +argasidae|580170 +argemone|580233 +argemone mexicana|580313 +argent|580421 +argentic|580489 +argentiferous|580528 +argentina|580560 +argentine|580711 +argentine hemorrhagic fever|580836 +argentine monetary unit|580991 +argentine republic|581062 +argentinian|581178 +argentinidae|581299 +argentinosaur|581366 +argentite|581398 +argentous|581425 +argil|581465 +argillaceous|581485 +argillaceous rock|581527 +argillite|581571 +arginine|581607 +argiope|581646 +argiope aurantia|581701 +argiopidae|581780 +argive|581846 +argle-bargle|581897 +argo|582013 +argon|582046 +argonaut|582134 +argonauta|582302 +argonauta argo|582361 +argonautidae|582441 +argonne|582511 +argonne forest|582636 +argonon|582768 +argos|582834 +argosy|582910 +argot|582932 +arguable|583009 +argue|583084 +arguer|583221 +argufy|583280 +arguing|583355 +argument|583497 +argumentation|583790 +argumentative|583950 +argumentatively|584064 +argus|584103 +argus pheasant|584310 +argus-eyed|584161 +argusianus|584349 +argy-bargy|584408 +argyle|584524 +argyles|584657 +argyll|584838 +argylls|584971 +argynnis|585152 +argyranthemum|585210 +argyranthemum frutescens|585287 +argyreia|585430 +argyrodite|585503 +argyrol|585531 +argyrotaenia|585587 +argyrotaenia citrana|585657 +argyroxiphium|585756 +argyroxiphium sandwicense|585833 +arhant|585917 +arhat|585980 +arhus|586042 +aria|586104 +ariadne|586142 +ariana|586179 +arianism|586231 +arianist|586317 +arianrhod|586345 +arianrod|586396 +aricara|586446 +arid|586539 +aridity|586600 +aridness|586696 +aries|586752 +aries the ram|586952 +arietta|587063 +aright|587096 +ariidae|587127 +arikara|587179 +aril|587272 +ariled|587313 +arillate|587346 +arilus|587379 +arilus cristatus|587431 +ariocarpus|587506 +ariocarpus fissuratus|587580 +ariomma|587652 +ariose|587702 +arioso|587753 +arisaema|587780 +arisaema atrorubens|587852 +arisaema dracontium|587976 +arisaema triphyllum|588049 +arisarum|588173 +arisarum vulgare|588245 +arise|588312 +arishth|588695 +arista|588786 +aristarchus|588830 +aristarchus of samos|588919 +aristide maillol|589003 +aristocort|589094 +aristocracy|589207 +aristocrat|589293 +aristocratic|589341 +aristocratical|589419 +aristolochia|589497 +aristolochia clematitis|589582 +aristolochia durior|589654 +aristolochia macrophylla|589788 +aristolochia serpentaria|589927 +aristolochiaceae|590080 +aristolochiales|590197 +aristopak|590272 +aristophanes|590384 +aristotelean|590440 +aristotelia|590574 +aristotelia racemosa|590647 +aristotelia serrata|590771 +aristotelian|590894 +aristotelian logic|591028 +aristotelianism|591112 +aristotelic|591197 +aristotle|591267 +arithmetic|591308 +arithmetic mean|591381 +arithmetic operation|591462 +arithmetic progression|591546 +arithmetical|591608 +arithmetician|591657 +arius|591694 +arizona|591797 +arizona ash|591902 +arizona cypress|591966 +arizona elegans|592048 +arizona sycamore|592126 +arizona white oak|592214 +arizona wild cotton|592287 +arizonan|592387 +arizonian|592433 +arjuna|592480 +ark|592518 +ark of the covenant|592573 +ark shell|592632 +arkansan|592683 +arkansas|592731 +arkansas kingbird|592833 +arkansas river|592922 +arkansawyer|592976 +arlington|593027 +arm|593085 +arm band|593396 +arm bone|593475 +arm exercise|593513 +arm guard|593599 +arm pad|593716 +arm's length|593317 +arm-twisting|593355 +armada|593762 +armadillidiidae|593784 +armadillidium|593865 +armadillo|593938 +armageddon|593966 +armagnac|594110 +armament|594144 +armamentarium|594298 +armand jean du plessis|594368 +armata corsa|594549 +armature|594672 +armband|594695 +armchair|594738 +armchair liberal|594781 +armed|594827 +armed bullhead|595105 +armed combat|595185 +armed forces|595247 +armed forces censorship|595338 +armed forces day|595391 +armed islamic group|595438 +armed robbery|595565 +armed service|595617 +armed services|595681 +armenia|595834 +armenian|595915 +armenian alphabet|596161 +armenian apostolic orthodox church|596224 +armenian church|596343 +armenian language|596443 +armenian monetary unit|596547 +armenian secret army for the liberation of armenia|596616 +armeria|596843 +armeria maritima|596913 +armet|596983 +armful|597005 +armguard|597034 +armhole|597107 +armiger|597129 +armilla|597193 +armillaria|597266 +armillaria caligata|597327 +armillaria ponderosa|597401 +armillaria zelleri|597475 +armillariella|597529 +armillariella mellea|597599 +armillary|597685 +armillary sphere|597721 +armin|597771 +arming|597821 +arminian|597912 +arminian baptist|597986 +arminian church|598066 +arminianism|598131 +arminius|598178 +armistice|598345 +armistice day|598387 +armless|598481 +armlet|598506 +armlike|598536 +armoire|598559 +armor|598598 +armor plate|599020 +armor plating|599111 +armor-bearer|598805 +armor-clad|598842 +armor-plated|598931 +armoracia|599202 +armoracia rusticana|599269 +armored|599374 +armored car|599637 +armored catfish|599757 +armored combat vehicle|599806 +armored dinosaur|599943 +armored personnel carrier|600006 +armored scale|600105 +armored sea robin|600141 +armored searobin|600225 +armored vehicle|600309 +armorer|600374 +armorial|600481 +armorial bearing|600507 +armory|600574 +armour|600764 +armour plate|601146 +armour-clad|600968 +armour-plated|601057 +armoured|601237 +armoured car|601450 +armoured combat vehicle|601569 +armoured personnel carrier|601706 +armoured vehicle|601805 +armourer|601870 +armoury|601976 +armpit|602163 +armrest|602244 +arms|602266 +arms control|602724 +arms deal|602769 +arms industry|602813 +arms manufacturer|602864 +arms race|602913 +arms-runner|602639 +armstrong|602937 +army|603093 +army ant|603186 +army attache|603247 +army base|603286 +army brat|603329 +army cutworm|603358 +army engineer|603477 +army for the liberation of rwanda|603558 +army high performance computing research center|603750 +army hut|603926 +army intelligence|603966 +army national guard|604078 +army of muhammad|604160 +army of the confederacy|604315 +army of the pure|604431 +army of the righteous|604624 +army officer|604822 +army tank|604869 +army unit|605006 +army worm|605075 +armyworm|605250 +arna wendell bontemps|605407 +arng|605483 +arnhem|605550 +arnica|605602 +arnica bud|605699 +arnica cordifolia|605763 +arnica montana|605848 +arno|605910 +arno river|605957 +arnold|606010 +arnold daniel palmer|606233 +arnold gesell|606333 +arnold joseph toynbee|606411 +arnold lucius gesell|606513 +arnold palmer|606598 +arnold schoenberg|606691 +arnold schonberg|606783 +arnold toynbee|606874 +arnold-chiari deformity|606139 +arnoseris|606969 +arnoseris minima|607034 +aroeira blanca|607129 +aroid|607175 +arolla pine|607264 +aroma|607367 +aromatic|607522 +aromatic aster|607576 +aromatic compound|607606 +aromatic hydrocarbon|607645 +aromatise|607687 +aromatize|607747 +arouet|607807 +around|607875 +around the bend|608111 +around the clock|608292 +around-the-clock|608022 +arousal|608346 +arouse|608534 +aroused|608985 +arouser|609206 +arp|609262 +arpeggio|609325 +arpent|609349 +arquebus|609390 +arrack|609447 +arraign|609541 +arraignment|609595 +arrange|609677 +arranged|609957 +arrangement|610057 +arranger|610372 +arranging|610454 +arrant|610521 +arras|610654 +array|610699 +arrayed|610896 +arrears|610936 +arrest|611009 +arrest warrant|611377 +arrested|611423 +arrested development|611463 +arrester|611574 +arrester hook|611627 +arresting|611680 +arrhenatherum|611731 +arrhenatherum elatius|611800 +arrhenius|611929 +arrhenius theory of dissociation|612000 +arrhythmia|612152 +arrhythmic|612233 +arrhythmical|612330 +arriere pensee|612387 +arrival|612505 +arrival gate|612612 +arrival time|612639 +arrive|612697 +arrive at|612815 +arrivederci|612861 +arriver|613024 +arriving|613074 +arriviste|613116 +arroba|613203 +arrogance|613272 +arrogant|613343 +arrogate|613389 +arrogated|613525 +arrogation|613558 +arrogator|613599 +arrow|613671 +arrow arum|613934 +arrow grass|614009 +arrow leaved aster|614084 +arrow wood|614118 +arrow-grass family|613725 +arrow-shaped|613861 +arrowhead|614225 +arrowleaf groundsel|614250 +arrowroot|614323 +arrowroot family|614485 +arrowsmith|614574 +arrowworm|614600 +arroyo|614636 +arroyo willow|614658 +arroz con pollo|614717 +arse|614759 +arse about|615021 +arse around|615189 +arsehole|615409 +arsenal|615467 +arsenate|615593 +arsenic|615616 +arsenic acid|615745 +arsenic group|615772 +arsenic trioxide|615862 +arsenical|615939 +arsenide|615982 +arsenious|616027 +arsenopyrite|616070 +arsenous anhydride|616110 +arsenous oxide|616187 +arsine|616264 +arson|616284 +arsonist|616344 +art|616420 +art class|616625 +art collection|616695 +art critic|616766 +art dealer|616793 +art deco|616844 +art department|616893 +art director|616937 +art editor|616974 +art exhibition|617017 +art form|617068 +art gallery|617109 +art historian|617159 +art history|617208 +art movement|617280 +art nouveau|617351 +art object|617410 +art paper|617460 +art rock|617485 +art school|617590 +art student|617637 +art tatum|617681 +art teacher|617751 +artamidae|617791 +artamus|617849 +artaxerxes|617899 +artaxerxes i|618055 +artaxerxes ii|618141 +artefact|618229 +artefactual|618302 +artemia|618380 +artemia salina|618469 +artemis|618570 +artemis pontica|618615 +artemis spinescens|618680 +artemisia|618772 +artemisia abrotanum|618802 +artemisia absinthium|618873 +artemisia annua|618977 +artemisia californica|619042 +artemisia campestris|619153 +artemisia cana|619228 +artemisia dracunculus|619345 +artemisia filifolia|619426 +artemisia frigida|619523 +artemisia gnaphalodes|619608 +artemisia ludoviciana|619739 +artemisia maritima|619870 +artemisia stelleriana|619961 +artemisia tridentata|620061 +artemisia vulgaris|620181 +artemus ward|620251 +arteria|620329 +arteria alveolaris|620388 +arteria alveolaris inferior|620469 +arteria alveolaris superior|620566 +arteria angularis|620663 +arteria appendicularis|620742 +arteria arcuata|620831 +arteria ascendens|620908 +arteria auricularis|620989 +arteria axillaris|621072 +arteria basilaris|621152 +arteria brachialis|621231 +arteria buccalis|621312 +arteria bulbi penis|621389 +arteria bulbi vestibuli|621480 +arteria carotis|621579 +arteria celiaca|621656 +arteria centralis retinae|621762 +arteria cerebelli|621863 +arteria cerebri|621945 +arteria choroidea|622023 +arteria ciliaris|622104 +arteria circumflexa femoris|622182 +arteria circumflexa humeri|622268 +arteria circumflexa ilium|622348 +arteria circumflexa scapulae|622425 +arteria colica|622508 +arteria communicans|622582 +arteria coronaria|622669 +arteria cystica|622749 +arteria digitalis|622825 +arteria epigastrica|622906 +arteria ethmoidalis|622990 +arteria facialis|623073 +arteria femoralis|623175 +arteria gastrica|623254 +arteria gastrica breves|623332 +arteria gastrica sinistra|623430 +arteria glutes|623517 +arteria hepatica|623593 +arteria ileocolica|623671 +arteria ileum|623753 +arteria iliaca|623844 +arteria iliolumbalis|623918 +arteria infraorbitalis|624003 +arteria intercostalis|624092 +arteria labialis|624179 +arteria labialis inferior|624256 +arteria labialis superior|624345 +arteria lacrimalis|624434 +arteria laryngea|624515 +arteria lienalis|624595 +arteria lingualis|624687 +arteria lumbalis|624766 +arteria maxillaris|624843 +arteria meningea|624925 +arteria mesenterica|625005 +arteria metacarpea|625089 +arteria metatarsea|625172 +arteria musculophrenica|625255 +arteria nutricia|625347 +arteria ophthalmica|625426 +arteria ovarica|625510 +arteria palatina|625587 +arteria pancreatica|625666 +arteria perinealis|625750 +arteria poplitea|625831 +arteria pudenda|625911 +arteria pulmonalis|625989 +arteria radialis|626071 +arteria rectalis|626148 +arteria renalis|626225 +arteria subclavia|626300 +arteria temporalis anterior|626382 +arteria temporalis intermedia|626460 +arteria temporalis posterior|626544 +arteria testicularis|626624 +arteria ulnaris|626735 +arteria uterina|626810 +arteria vaginalis|626887 +arteria vertebralis|626966 +arterial|627049 +arterial blood|627079 +arterial blood gases|627109 +arterial blood vessel|627181 +arterial plaque|627240 +arterial pressure|627272 +arterial road|627314 +arterial sclerosis|627355 +arterialise|627498 +arterialize|627551 +arteriectasia|627604 +arteriectasis|627651 +arteriogram|627698 +arteriography|627770 +arteriola|627806 +arteriolar|627889 +arteriole|627945 +arteriolosclerosis|628028 +arteriosclerosis|628077 +arteriosclerosis obliterans|628220 +arteriosclerotic|628370 +arteriovenous|628416 +arteritis|628464 +artery|628510 +artery of the labyrinth|628589 +artery of the penis bulb|628704 +artery of the vestibule bulb|628795 +artesian|628894 +artesian well|628929 +artful|628957 +artfully|629240 +artfulness|629329 +arthralgia|629366 +arthralgic|629399 +arthritic|629431 +arthritis|629495 +arthrocentesis|629535 +arthrogram|629568 +arthrography|629639 +arthromere|629695 +arthromeric|629734 +arthroplasty|629773 +arthropod|629868 +arthropod family|629900 +arthropod genus|629933 +arthropoda|629964 +arthropodal|630020 +arthropodan|630072 +arthropodous|630124 +arthropteris|630176 +arthroscope|630241 +arthroscopy|630272 +arthrospore|630366 +arthrosporic|630404 +arthrosporous|630444 +arthur|630484 +arthur ashe|630720 +arthur compton|630791 +arthur conan doyle|630877 +arthur edwin kennelly|630988 +arthur evans|631085 +arthur fiedler|631175 +arthur garfield hays|631256 +arthur holly compton|631328 +arthur holmes|631420 +arthur honegger|631474 +arthur jacob arshawsky|631533 +arthur james balfour|631640 +arthur john gielgud|631751 +arthur koestler|631868 +arthur laffer|631932 +arthur marx|632002 +arthur meier schlesinger|632061 +arthur meier schlesinger jr.|632177 +arthur miller|632324 +arthur mitchell|632389 +arthur neville chamberlain|632466 +arthur rimbaud|632593 +arthur robert ashe|632674 +arthur rubinstein|632752 +arthur schlesinger|632846 +arthur schlesinger jr.|633072 +arthur schopenhauer|633213 +arthur seymour sullivan|633287 +arthur stanley jefferson laurel|633398 +arthur sullivan|633505 +arthur symons|633608 +arthur tappan|633657 +arthur tatum|633730 +arthur wellesley|633803 +arthurian|633968 +arthurian legend|634047 +artichoke|634103 +artichoke heart|634220 +artichoke plant|634262 +article|634339 +article of clothing|634516 +article of commerce|634591 +article of faith|634633 +article of furniture|634720 +articled|634791 +articles of agreement|634845 +articles of confederation|634903 +articles of incorporation|634982 +articular|635050 +articular muscle|635089 +articulary|635147 +articulate|635186 +articulated|635599 +articulated lorry|635669 +articulately|635765 +articulateness|635814 +articulatio|635875 +articulatio coxae|635925 +articulatio cubiti|636077 +articulatio genus|636184 +articulatio humeri|636271 +articulatio plana|636429 +articulatio radiocarpea|636520 +articulatio spheroidea|636628 +articulatio synovialis|636793 +articulatio talocruralis|636883 +articulatio temporomandibularis|636981 +articulatio trochoidea|637113 +articulation|637235 +articulative|637428 +articulator|637476 +articulatory|637542 +articulatory system|637590 +artie shaw|637626 +artifact|637721 +artifactual|637794 +artifice|637872 +artificer|637951 +artificial|638101 +artificial additive|638499 +artificial blood|638551 +artificial flower|638584 +artificial heart|638624 +artificial horizon|638658 +artificial insemination|638740 +artificial intelligence|638789 +artificial joint|638852 +artificial kidney|638886 +artificial lake|638952 +artificial language|638992 +artificial pacemaker|639055 +artificial respiration|639113 +artificial satellite|639220 +artificial skin|639278 +artificiality|639312 +artificially|639349 +artillery|639402 +artillery fire|639521 +artillery plant|639569 +artillery shell|639619 +artillery unit|639650 +artilleryman|639694 +artiodactyl|639795 +artiodactyl mammal|639921 +artiodactyla|640003 +artiodactylous|640070 +artisan|640128 +artisan's lien|640206 +artist|640235 +artist's loft|640275 +artist's model|640329 +artist's workroom|640372 +artiste|640414 +artistic|640459 +artistic creation|640577 +artistic movement|640655 +artistic production|640726 +artistic style|640804 +artistry|640864 +artium baccalaurens|640909 +artium magister|641013 +artless|641091 +artlessly|641305 +artlessness|641360 +artocarpus|641464 +artocarpus altilis|641543 +artocarpus communis|641648 +artocarpus heterophyllus|641754 +artocarpus odoratissima|641849 +artois|641936 +arts|641973 +arts and crafts|642351 +artsd|642418 +artsy-craftsy|642470 +artur rubinstein|642517 +artur schnabel|642610 +arturo toscanini|642688 +artwork|642775 +arty|642844 +arty-crafty|642870 +aruba|642917 +arugula|642945 +arui|643063 +arulo|643145 +arum|643186 +arum family|643249 +arum lily|643325 +arum maculatum|643392 +arum palaestinum|643489 +arundinaceous|643555 +arundinaria|643607 +arundinaria gigantea|643688 +arundinaria tecta|643767 +arundo|643842 +arundo conspicua|643908 +arundo donax|643992 +arundo richardii|644043 +aruru|644143 +arvicola|644178 +arvicola amphibius|644233 +aryan|644318 +arytaenoid|644486 +arytenoid|644554 +arytenoid cartilage|644622 +as|644690 +as a formality|644867 +as a group|644914 +as a matter of fact|644950 +as a whole|645003 +as an alternative|645051 +as far as possible|645107 +as if by magic|645154 +as it were|645187 +as luck would have it|645218 +as much as possible|645281 +as needed|645328 +as required|645374 +as such|645420 +as usual|645474 +as was common|645505 +as we say|645536 +as well|645566 +as yet|645608 +asa dulcis|645691 +asa gray|645763 +asa yoelson|645832 +asadha|645961 +asafetida|646011 +asafoetida|646055 +asahikawa|646099 +asala|646157 +asama|646339 +asamiya|646380 +asana|646423 +asanga|646464 +asap|646504 +asaph hall|646522 +asarabacca|646591 +asarh|646640 +asarum|646689 +asarum canadense|646756 +asarum europaeum|646841 +asarum shuttleworthii|646907 +asarum virginicum|647003 +asat|647081 +asbat al-ansar|647118 +asbestos|647249 +asbestos abatement|647277 +asbestosis|647348 +ascaphidae|647400 +ascaphus|647466 +ascaphus trui|647524 +ascariasis|647656 +ascaridae|647688 +ascaridia|647746 +ascaridia galli|647802 +ascaris|647894 +ascaris lumbricoides|647944 +ascend|648045 +ascendable|648272 +ascendance|648312 +ascendancy|648400 +ascendant|648488 +ascendence|648713 +ascendency|648801 +ascendent|648889 +ascender|649114 +ascendible|649208 +ascending|649248 +ascending aorta|649436 +ascending artery|649467 +ascending colon|649548 +ascending node|649579 +ascension|649608 +ascension day|649876 +ascension of christ|649968 +ascension of the lord|650035 +ascensional|650135 +ascensive|650176 +ascent|650225 +ascertain|650403 +ascertainable|650634 +ascertained|650683 +ascesis|650735 +ascetic|650804 +ascetical|650949 +asceticism|651046 +asch|651244 +aschelminthes|651313 +ascidiaceae|651403 +ascidian|651460 +ascidian tadpole|651508 +ascii|651540 +ascii character|651631 +ascii character set|651706 +ascii control character|651769 +ascii text file|651860 +ascites|651920 +ascitic|651947 +asclepia meadii|651973 +asclepiad|652065 +asclepiadaceae|652106 +asclepiadaceous|652216 +asclepias|652273 +asclepias albicans|652349 +asclepias curassavica|652429 +asclepias exaltata|652525 +asclepias incarnata|652604 +asclepias meadii|652686 +asclepias purpurascens|652779 +asclepias speciosa|652868 +asclepias subverticillata|652948 +asclepias tuberosa|653062 +asclepias verticillata|653230 +ascocarp|653320 +ascocarpous|653352 +ascolichen|653386 +ascoma|653413 +ascomycete|653438 +ascomycetes|653485 +ascomycetous|653587 +ascomycetous fungus|653615 +ascomycota|653662 +ascomycotina|653763 +ascophyllum|653866 +ascophyllum nodosum|653934 +ascorbic acid|654005 +ascospore|654072 +ascosporic|654097 +ascosporous|654134 +ascot|654171 +ascribable|654193 +ascribe|654253 +ascription|654300 +ascus|654457 +asdic|654495 +asea|654608 +asean|654653 +asepsis|654725 +aseptic|654841 +asexual|654877 +asexual reproduction|655012 +asexuality|655068 +asgard|655123 +ash|655177 +ash bin|655788 +ash cake|656055 +ash can|656182 +ash gray|656355 +ash grey|656441 +ash tree|656527 +ash wednesday|656554 +ash-bin|655258 +ash-blonde|655525 +ash-gray|655597 +ash-grey|655640 +ash-key|655683 +ash-leaved maple|655705 +ash-pan|655760 +ashamed|656610 +ashbin|656780 +ashcake|656885 +ashcan|656931 +ashcan school|657036 +ashe|657177 +ashen|657241 +asheville|657321 +ashir|657355 +ashkenazi|657396 +ashkhabad|657446 +ashlar|657507 +ashley montagu|657544 +ashore|657606 +ashton|657651 +ashtoreth|657709 +ashtray|657752 +ashur|657780 +ashurbanipal|657874 +ashy|657952 +asia|657995 +asia minor|658083 +asian|658133 +asian black grouse|658292 +asian coral snake|658374 +asian country|658453 +asian crocodile|658522 +asian horseshoe crab|658592 +asian influenza|658653 +asian longhorned beetle|658727 +asian nation|658816 +asian russia|658884 +asian shamanism|658945 +asian tiger mosquito|659028 +asian wild ox|659105 +asiatic|659153 +asiatic beetle|659284 +asiatic black bear|659398 +asiatic buffalo|659501 +asiatic cholera|659607 +asiatic cockroach|659707 +asiatic flu|659832 +asiatic flying squirrel|659902 +asiatic shrew mole|659968 +asiatic sweetleaf|660046 +aside|660143 +asilidae|660335 +asimina|660395 +asimina triloba|660456 +asimov|660554 +asin|660604 +asinine|660651 +asio|660707 +asio otus|660748 +ask|660833 +ask for|661151 +ask for it|661230 +ask for trouble|661308 +ask in|661386 +ask out|661440 +ask over|661508 +ask round|661574 +askance|661640 +askant|661717 +asker|661794 +askew|661891 +asking|661976 +asking price|662032 +asl|662087 +aslant|662149 +asleep|662246 +aslope|662545 +asmara|662618 +asmera|662665 +asocial|662712 +asp|662765 +asp viper|662845 +aspadana|662887 +aspalathus|662959 +aspalathus cedcarbergensis|663025 +aspalathus linearis|663127 +asparagaceae|663222 +asparaginase|663299 +asparagine|663375 +asparagus|663425 +asparagus asparagoides|663529 +asparagus bean|663596 +asparagus bed|663711 +asparagus fern|663738 +asparagus officinales|663823 +asparagus pea|663925 +asparagus plumosus|664002 +asparagus setaceous|664106 +aspartame|664211 +aspartic acid|664251 +aspect|664304 +aspect ratio|664534 +aspectual|664562 +aspen|664601 +aspen poplar|664635 +asper|664741 +aspergill|664778 +aspergillaceae|664804 +aspergillales|664879 +aspergillosis|664977 +aspergillus|665079 +aspergillus fumigatus|665143 +asperity|665203 +asperse|665327 +aspersion|665422 +asperula|665563 +asperula odorata|665625 +asperula tinctoria|665747 +asphalt|665819 +asphaltic|665893 +aspheric|665920 +aspherical|665957 +asphodel|665994 +asphodelaceae|666029 +asphodeline|666109 +asphodeline lutea|666181 +asphodelus|666264 +asphyxia|666333 +asphyxiate|666395 +asphyxiated|666593 +asphyxiating|666657 +asphyxiation|666728 +asphyxiator|666819 +aspic|666878 +aspidelaps|666907 +aspidelaps lubricus|666969 +aspidiotus|667072 +aspidiotus perniciosus|667136 +aspidistra|667220 +aspidistra elatio|667311 +aspidophoroides|667420 +aspidophoroides monopterygius|667494 +aspinwall|667607 +aspirant|667676 +aspirate|667812 +aspiration|667987 +aspiration pneumonia|668129 +aspirator|668196 +aspire|668220 +aspirer|668279 +aspirin|668348 +aspirin powder|668450 +aspiring|668540 +aspis|668618 +aspleniaceae|668680 +asplenium|668747 +asplenium adiantum-nigrum|668803 +asplenium billotii|668892 +asplenium bradleyi|668972 +asplenium ceterach|669051 +asplenium montanum|669146 +asplenium nidus|669224 +asplenium nigripes|669287 +asplenium pinnatifidum|669383 +asplenium platyneuron|669466 +asplenium rhizophyllum|669566 +asplenium ruta-muraria|669683 +asplenium scolopendrium|669778 +asplenium trichomanes|669897 +asplenium viride|669983 +asquint|670054 +asron montgomery ward|670131 +ass|670232 +ass-kisser|670737 +assagai|670849 +assail|670892 +assailability|671039 +assailable|671076 +assailant|671136 +assam|671203 +assam fever|671239 +assam rubber|671356 +assamese|671482 +assassin|671579 +assassin bug|671709 +assassinate|671761 +assassinated|671866 +assassination|671893 +assassinator|672033 +assault|672100 +assault and battery|672465 +assault gun|672510 +assault rifle|672625 +assaulted|672700 +assaulter|672775 +assaultive|672842 +assay|672882 +assay-mark|673096 +assayer|673160 +assegai|673185 +assemblage|673228 +assemble|673389 +assembled|673560 +assembler|673672 +assemblies of god|673762 +assembling|673831 +assembly|673894 +assembly hall|674079 +assembly language|674113 +assembly line|674181 +assembly plant|674243 +assembly program|674312 +assemblyman|674402 +assemblywoman|674438 +assent|674476 +assentient|674545 +assenting|674589 +assert|674628 +assert oneself|674836 +assertable|674875 +asserted|674915 +asserter|674942 +asserting|675010 +assertion|675041 +assertive|675134 +assertiveness|675257 +assertiveness training|675312 +assess|675383 +assessable|675535 +assessment|675591 +assessor|675779 +asset|675845 +assets|675873 +asseverate|675926 +asseveration|675987 +asseverator|676040 +asshole|676108 +assibilate|676305 +assibilation|676348 +assiduity|676424 +assiduous|676506 +assiduousness|676543 +assign|676625 +assignable|677021 +assignation|677100 +assigned|677227 +assignee|677273 +assigning|677316 +assignment|677359 +assignor|677665 +assimilable|677689 +assimilate|677721 +assimilating|677872 +assimilation|677941 +assimilative|678149 +assimilator|678218 +assimilatory|678308 +assist|678377 +assistance|678544 +assistant|678614 +assistant foreman|678699 +assistant professor|678770 +assisted|678814 +assisted suicide|678877 +assistive|678946 +assize|678973 +assizes|679036 +associability|679194 +associable|679255 +associableness|679299 +associate|679360 +associate degree|679723 +associate in applied science|679782 +associate in arts|679880 +associate in nursing|679955 +associate professor|680036 +associated|680080 +associated state|680142 +association|680230 +association area|680509 +association cortex|680584 +association football|680659 +association for the advancement of retired persons|680719 +association of islamic groups and communities|680847 +association of orangemen|681051 +association of southeast asian nations|681149 +association theory|681254 +associational|681315 +associationism|681374 +associative|681435 +associative aphasia|681516 +associatory|681572 +assoil|681616 +assonance|681697 +assonant|681739 +assonate|681791 +assort|681820 +assortative mating|681940 +assorted|682023 +assortment|682127 +assouan|682386 +assuage|682453 +assuagement|682747 +assuan|682795 +assuasive|682861 +assume|682918 +assumed|683299 +assumed name|683457 +assuming|683501 +assumption|683551 +assumption of mary|683898 +assumptive|683989 +assur|684085 +assurance|684146 +assurbanipal|684306 +assure|684384 +assured|684684 +assuredness|684725 +assurgent|684810 +assuring|684856 +assyria|684885 +assyrian|684982 +assyriology|685041 +astacidae|685097 +astacura|685169 +astacus|685240 +astaire|685295 +astana|685403 +astarte|685463 +astasia|685502 +astatic|685562 +astatic coils|685600 +astatic galvanometer|685628 +astatine|685671 +aster|685742 +aster acuminatus|685852 +aster arenosus|685915 +aster cordifolius|685972 +aster divaricatus|686047 +aster dumosus|686120 +aster ericoides|686175 +aster falcatus|686234 +aster family|686299 +aster linarifolius|686400 +aster linosyris|686465 +aster macrophyllus|686559 +aster novae-angliae|686636 +aster novi-belgii|686709 +aster ptarmicoides|686792 +aster shortii|686864 +aster tripolium|686921 +aster turbinellis|686991 +asteraceae|687056 +astereognosis|687168 +asteriated|687215 +asterid dicot family|687239 +asterid dicot genus|687302 +asteridae|687362 +asterion|687416 +asterisk|687453 +asterisked|687527 +asterism|687562 +asterismal|687607 +astern|687641 +asternal|687666 +asteroid|687696 +asteroid belt|687780 +asteroidal|687808 +asteroidea|687834 +asterope|687888 +asthenia|687958 +asthenic|688032 +asthenic type|688105 +asthenopia|688160 +asthenosphere|688218 +astheny|688247 +asthma|688321 +asthma attack|688429 +asthmatic|688537 +astigmatic|688582 +astigmatism|688613 +astigmia|688686 +astilbe|688762 +astilbe biternata|688801 +astilbe chinensis pumila|688871 +astilbe japonica|688952 +astir|689018 +astomatous|689062 +astonied|689103 +astonish|689167 +astonished|689208 +astonishing|689272 +astonishingly|689363 +astonishment|689408 +astor|689448 +astound|689601 +astounded|689642 +astounding|689706 +astraddle|689827 +astragal|689853 +astragalar|689952 +astragalus|689979 +astragalus alpinus|690085 +astragalus danicus|690172 +astragalus glycyphyllos|690259 +astrakhan|690367 +astral|690441 +astrantia|690493 +astrantia major|690545 +astraphobia|690626 +astray|690661 +astreus|690681 +astreus hygrometricus|690733 +astreus pteridis|690796 +astride|690849 +astringe|690875 +astringence|690978 +astringency|691091 +astringent|691233 +astringent drug|691392 +astrobiology|691482 +astrocyte|691556 +astrocytic|691616 +astrodome|691676 +astrodynamics|691700 +astrogate|691743 +astrogator|691805 +astroglia|691835 +astrolabe|691879 +astrolatry|691906 +astrologer|691961 +astrological|692040 +astrologist|692075 +astrology|692154 +astroloma|692203 +astroloma humifusum|692270 +astrometry|692408 +astronaut|692448 +astronautic|692505 +astronautical|692602 +astronautics|692699 +astronavigation|692777 +astronium|692852 +astronium fraxinifolium|692928 +astronomer|693024 +astronomic|693076 +astronomical|693187 +astronomical telescope|693296 +astronomical unit|693344 +astronomical year|693407 +astronomy|693481 +astronomy satellite|693554 +astronomy unit|693622 +astrophysical|693658 +astrophysicist|693700 +astrophysics|693757 +astrophyton|693799 +astrophyton muricatum|693867 +astropogon|693944 +astropogon stellatus|694003 +astute|694077 +astutely|694112 +astuteness|694160 +astylar|694288 +asuncion|694328 +asunder|694397 +asur|694435 +asura|694495 +asurbanipal|694528 +asvina|694605 +asvins|694654 +aswan|694689 +aswan dam|694754 +aswan high dam|694827 +asylum|694905 +asymmetric|695066 +asymmetrical|695190 +asymmetrically|695352 +asymmetry|695391 +asymptomatic|695448 +asymptote|695487 +asymptotic|695520 +asynchronism|695553 +asynchronous|695656 +asynchronous operation|695848 +asynchronous transfer mode|695890 +asynchrony|695971 +asynclitism|696074 +asyndetic|696147 +asynergia|696176 +asynergic|696214 +asynergy|696242 +asystole|696280 +at|696346 +at a loss|696610 +at a low price|696668 +at a lower place|696722 +at a time|696778 +at all|696816 +at all costs|696858 +at an equal rate|696906 +at any cost|696942 +at any expense|696990 +at any rate|697038 +at bay|697132 +at best|697178 +at bottom|697206 +at close range|697273 +at ease|697305 +at fault|697456 +at first|697481 +at first blush|697531 +at first glance|697570 +at first sight|697609 +at full speed|697648 +at hand|697708 +at heart|697791 +at home|697858 +at issue|697885 +at large|697963 +at last|698106 +at least|698165 +at leisure|698233 +at length|698280 +at liberty|698333 +at loggerheads|698420 +at long last|698452 +at most|698511 +at odds|698539 +at once|698641 +at one time|698792 +at peace|698865 +at present|698926 +at random|698949 +at rest|699045 +at sea|699134 +at that place|699259 +at the best|699304 +at the least|699332 +at the most|699362 +at the ready|699390 +at the same time|699418 +at the start|699477 +at the worst|699527 +at times|699557 +at variance|699660 +at work|699703 +at worst|699750 +at-bat|696449 +at-large|696479 +atabrine|699780 +atacama desert|699932 +atacama trench|699978 +atactic|700043 +atactic abasia|700126 +atakapa|700171 +atakapan|700354 +atar|700484 +ataractic|700543 +ataractic agent|700776 +ataractic drug|700945 +atarax|701114 +ataraxia|701287 +ataraxic|701362 +ataraxis|701438 +ataturk|701560 +atavism|701657 +atavist|701712 +atavistic|701754 +ataxia|701794 +ataxic|701901 +ataxic abasia|701984 +ataxic aphasia|702029 +ataxy|702128 +atayalic|702235 +ate|702279 +atelectasis|702308 +ateleiosis|702339 +ateleiotic|702381 +ateles|702412 +ateles geoffroyi|702461 +atelier|702547 +ateliosis|702589 +atenolol|702631 +ateria gastrica dextra|702726 +atf|702811 +athabascan|702890 +athabaskan|703157 +athanasian creed|703424 +athanasianism|703479 +athanasius|703556 +athanasius the great|703762 +athanor|703978 +athapascan|704003 +athapaskan|704270 +athapaskan language|704537 +athar|704706 +atharva-veda|704765 +atheism|704808 +atheist|704885 +atheistic|704987 +atheistical|705090 +athelstan|705169 +athena|705222 +athenaeum|705299 +athene|705406 +athene noctua|705521 +atheneum|705610 +athenian|705718 +athens|705791 +atherinidae|705909 +atherinopsis|705973 +atherinopsis californiensis|706038 +atherodyde|706136 +atherogenesis|706213 +atheroma|706246 +atheromatic|706296 +atheromatous|706361 +atherosclerosis|706426 +atherosclerotic|706588 +atherurus|706725 +athetosis|706783 +athinai|706862 +athiorhodaceae|706943 +athirst|707020 +athlete|707061 +athlete's foot|707094 +athlete's heart|707155 +athletic|707198 +athletic competition|707298 +athletic contest|707375 +athletic facility|707452 +athletic field|707501 +athletic game|707616 +athletic sock|707660 +athletic supporter|707712 +athletic training|707794 +athletic type|707851 +athletic wear|707906 +athleticism|707969 +athletics|708022 +athodyd|708165 +athol fugard|708242 +athos|708305 +athrotaxis|708387 +athrotaxis selaginoides|708452 +athwart|708551 +athyriaceae|708584 +athyrium|708687 +athyrium distentifolium|708740 +athyrium filix-femina|708846 +athyrium pycnocarpon|708914 +athyrium thelypteroides|709047 +atilt|709151 +ativan|709204 +atlanta|709252 +atlantic|709390 +atlantic bonito|709459 +atlantic bottlenose dolphin|709528 +atlantic city|709663 +atlantic coast|709729 +atlantic cod|709802 +atlantic croaker|709862 +atlantic halibut|709937 +atlantic herring|710043 +atlantic manta|710135 +atlantic moonfish|710216 +atlantic ocean|710353 +atlantic puffin|710407 +atlantic ridley|710474 +atlantic sailfish|710572 +atlantic salmon|710647 +atlantic sea bream|710737 +atlantic spiny dogfish|710825 +atlantic standard time|710912 +atlantic time|711017 +atlantic tripletail|711113 +atlantic walrus|711194 +atlantic white cedar|711279 +atlantides|711435 +atlantis|711483 +atlas|711541 +atlas cedar|711736 +atlas moth|711814 +atlas mountains|711882 +atlas vertebra|712003 +atm|712061 +atmometer|712347 +atmosphere|712434 +atmospheric|712683 +atmospheric condition|712729 +atmospheric electricity|712809 +atmospheric phenomenon|712886 +atmospheric pressure|712938 +atmospheric state|712994 +atmospheric static|713080 +atmospherical|713159 +atmospherics|713205 +atole|713284 +atoll|713318 +atom|713344 +atom bomb|713473 +atom smasher|713559 +atom-bomb|713436 +atomic|713636 +atomic bomb|713752 +atomic clock|713838 +atomic cocktail|713881 +atomic energy|713952 +atomic energy commission|713997 +atomic explosion|714077 +atomic mass|714132 +atomic mass unit|714158 +atomic number|714194 +atomic number 1|714224 +atomic number 10|714289 +atomic number 100|714376 +atomic number 101|714437 +atomic number 102|714507 +atomic number 103|714571 +atomic number 104|714637 +atomic number 105|714751 +atomic number 106|714854 +atomic number 107|714934 +atomic number 11|715015 +atomic number 12|715074 +atomic number 13|715136 +atomic number 14|715207 +atomic number 15|715307 +atomic number 16|715371 +atomic number 17|715439 +atomic number 18|715514 +atomic number 19|715602 +atomic number 2|715663 +atomic number 20|715751 +atomic number 21|715811 +atomic number 22|715872 +atomic number 23|715933 +atomic number 24|715993 +atomic number 25|716054 +atomic number 26|716116 +atomic number 27|716173 +atomic number 28|716232 +atomic number 29|716291 +atomic number 3|716360 +atomic number 30|716419 +atomic number 31|716476 +atomic number 32|716536 +atomic number 33|716638 +atomic number 34|716700 +atomic number 35|716775 +atomic number 36|716845 +atomic number 37|716935 +atomic number 38|716996 +atomic number 39|717058 +atomic number 4|717117 +atomic number 40|717188 +atomic number 41|717250 +atomic number 42|717310 +atomic number 43|717373 +atomic number 44|717436 +atomic number 45|717498 +atomic number 46|717558 +atomic number 47|717620 +atomic number 48|717678 +atomic number 49|717738 +atomic number 5|717797 +atomic number 50|717855 +atomic number 51|717911 +atomic number 52|717972 +atomic number 53|718036 +atomic number 54|718110 +atomic number 55|718198 +atomic number 56|718265 +atomic number 57|718324 +atomic number 58|718386 +atomic number 59|718445 +atomic number 6|718510 +atomic number 60|718569 +atomic number 61|718631 +atomic number 62|718694 +atomic number 63|718755 +atomic number 64|718816 +atomic number 65|718879 +atomic number 66|718939 +atomic number 67|719002 +atomic number 68|719062 +atomic number 69|719121 +atomic number 7|719181 +atomic number 70|719246 +atomic number 71|719308 +atomic number 72|719378 +atomic number 73|719438 +atomic number 74|719499 +atomic number 75|719567 +atomic number 76|719627 +atomic number 77|719686 +atomic number 78|719746 +atomic number 79|719796 +atomic number 8|719842 +atomic number 80|719905 +atomic number 81|719989 +atomic number 82|720050 +atomic number 83|720107 +atomic number 84|720167 +atomic number 85|720228 +atomic number 86|720299 +atomic number 87|720387 +atomic number 88|720448 +atomic number 89|720507 +atomic number 9|720570 +atomic number 90|720643 +atomic number 91|720703 +atomic number 92|720782 +atomic number 93|720841 +atomic number 94|720903 +atomic number 95|720967 +atomic number 96|721029 +atomic number 97|721088 +atomic number 98|721150 +atomic number 99|721214 +atomic physics|721280 +atomic pile|721375 +atomic power|721454 +atomic reactor|721519 +atomic spectrum|721598 +atomic theory|721632 +atomic warhead|721727 +atomic weight|721815 +atomisation|721864 +atomise|721965 +atomiser|722090 +atomism|722141 +atomist theory|722236 +atomistic|722306 +atomistic theory|722347 +atomistical|722417 +atomization|722448 +atomize|722549 +atomizer|722674 +atomlike|722725 +atonal|722789 +atonalism|722820 +atonalistic|722866 +atonality|722903 +atone|722949 +atonement|723028 +atonia|723182 +atonic|723241 +atonicity|723298 +atony|723357 +atopic allergy|723416 +atopic dermatitis|723515 +atopic eczema|723567 +atopognosia|723619 +atopognosis|723712 +atopy|723805 +atorvastatin|723904 +atoxic|724003 +atp|724081 +atrabilious|724132 +atrazine|724192 +atresia|724243 +atrial|724302 +atrial artery|724325 +atrial auricle|724382 +atrial fibrillation|724442 +atrial septal defect|724514 +atrichornis|724558 +atrichornithidae|724620 +atrioventricular|724699 +atrioventricular block|724760 +atrioventricular bundle|724878 +atrioventricular nodal rhythm|725003 +atrioventricular node|725083 +atrioventricular trunk|725142 +atrioventricular valve|725267 +atrip|725325 +atriplex|725352 +atriplex hortensis|725420 +atriplex hymenelytra|725511 +atriplex lentiformis|725584 +atriplex mexicana|725681 +atrium|725798 +atrium cordis|725845 +atrium dextrum|725895 +atrium of the heart|725992 +atrium sinistrum|726042 +atrocious|726139 +atrociously|726325 +atrociousness|726411 +atrocity|726503 +atromid-s|726639 +atropa|726725 +atropa belladonna|726781 +atrophic|726877 +atrophic arthritis|726902 +atrophied|727011 +atrophy|727058 +atropidae|727171 +atropine|727234 +atropos|727382 +atrovent|727419 +atsugewi|727481 +attacapa|727543 +attacapan|727673 +attach|727858 +attach to|728047 +attachable|728119 +attache|728183 +attache case|728265 +attached|728305 +attachment|728521 +attack|728876 +attack aircraft|729518 +attack aircraft carrier|729617 +attack dog|729714 +attack submarine|729753 +attacker|729808 +attacking|729875 +attain|729915 +attainability|730202 +attainable|730279 +attainableness|730338 +attainder|730415 +attained|730459 +attainment|730484 +attaint|730621 +attalea|730687 +attalea funifera|730756 +attar|730869 +attar of roses|730928 +attemper|730984 +attempt|731009 +attemptable|731179 +attempted|731209 +attempter|731241 +attend|731327 +attend to|731536 +attendance|731638 +attendance check|731681 +attendant|731717 +attended|731904 +attendee|731961 +attender|732017 +attending|732188 +attention|732339 +attention deficit disorder|732636 +attention deficit hyperactivity disorder|732804 +attention span|732972 +attention-getting|732552 +attentional|733001 +attentive|733045 +attentively|733223 +attentiveness|733275 +attenuate|733412 +attenuated|733510 +attenuation|733598 +attenuator|733652 +attest|733690 +attestant|733897 +attestation|734005 +attestation report|734052 +attestation service|734119 +attestator|734186 +attested|734250 +attester|734306 +attestor|734362 +attic|734426 +attic fan|734642 +attica|734673 +atticus|734745 +atticus atlas|734800 +attila|734882 +attire|734958 +attired|735176 +attitude|735260 +attitudinise|735427 +attitudinize|735475 +attlee|735523 +attorn|735632 +attorney|735666 +attorney general|735845 +attorney general of the united states|736065 +attorney-client privilege|735724 +attorney-client relation|735769 +attorneyship|736181 +attosecond|736258 +attract|736301 +attractable|736386 +attracter|736438 +attraction|736608 +attractive|736826 +attractive feature|737189 +attractive force|737278 +attractive nuisance|737321 +attractively|737359 +attractiveness|737392 +attractor|737449 +attributable|737619 +attribute|737711 +attribution|737852 +attributive|738008 +attributive genitive|738073 +attrited|738126 +attrition|738149 +attrition rate|738427 +attritional|738474 +attune|738522 +attuned|738557 +atypical|738617 +atypical pneumonia|738787 +atypicality|738925 +atypically|739001 +au|739032 +au courant|739124 +au fait|739178 +au fond|739232 +au gratin|739295 +au jus|739321 +au naturel|739343 +au pair|739389 +au pair girl|739443 +au revoir|739473 +aubergine|739636 +auburn|739795 +auc|739847 +auchincloss|740046 +auckland|740137 +auction|740198 +auction block|740304 +auction bridge|740342 +auction house|740381 +auction off|740429 +auction pitch|740474 +auction sale|740527 +auctioneer|740569 +auctorial|740641 +aucuba|740682 +audacious|740736 +audaciousness|740950 +audacity|741065 +audad|741185 +auden|741267 +audenesque|741323 +audibility|741358 +audible|741405 +audibleness|741471 +audience|741518 +audile|741696 +audio|741817 +audio amplifier|741987 +audio cd|742022 +audio compact disc|742097 +audio frequency|742163 +audio lingual acquisition|742224 +audio recording|742277 +audio system|742328 +audio-lingual|741951 +audiocassette|742391 +audiogram|742423 +audiology|742457 +audiometer|742510 +audiometric|742595 +audiometry|742657 +audiotape|742759 +audiovisual|742872 +audiovisual aid|742941 +audit|742991 +audit program|743211 +audit programme|743273 +audited account|743335 +audition|743416 +auditive|743479 +auditor|743565 +auditorium|743706 +auditory|743731 +auditory agnosia|743817 +auditory aphasia|743851 +auditory apparatus|743916 +auditory area|743954 +auditory canal|744023 +auditory center|744120 +auditory communication|744185 +auditory cortex|744231 +auditory hallucination|744300 +auditory hyperesthesia|744354 +auditory image|744446 +auditory meatus|744489 +auditory nerve|744586 +auditory ossicle|744711 +auditory perception|744763 +auditory sensation|744820 +auditory system|744910 +auditory tube|744950 +audubon|744997 +audubon warbler|745287 +audubon's caracara|745091 +audubon's warbler|745176 +auf wiedersehen|745396 +aug|745559 +augean|745608 +augean stables|745639 +augeas|745703 +augend|745741 +auger|745764 +aught|745850 +augite|745955 +augitic|745979 +augment|746003 +augmentation|746041 +augmentative|746113 +augmented|746176 +augmentin|746205 +augsburg confession|746287 +augur|746347 +augury|746622 +august|746678 +august 1|746802 +august 15|746859 +august 6|746941 +august f. mobius|747023 +august ferdinand mobius|747111 +august friedrich leopold weismann|747206 +august plum|747303 +august strindberg|747407 +august wilhelm von hoffmann|747522 +augusta|747604 +augustan|747704 +auguste comte|747792 +auguste rodin|747884 +augustin eugene scribe|747995 +augustin jean fresnel|748078 +augustine|748149 +augustine of hippo|748349 +augustinian|748558 +augustinian canons|748607 +augustinian hermits|748672 +augustinian order|748739 +augustus|748805 +augustus welby northmore pugin|748951 +auk|749047 +auklet|749085 +aulacorhyncus|749105 +auld|749173 +auld langsyne|749191 +aulostomidae|749283 +aulostomus|749350 +aulostomus maculatus|749409 +aum|749503 +aum shinrikyo|749622 +aunt|749751 +auntie|749788 +aunty|749825 +aura|749862 +aural|749972 +aurar|750038 +aureate|750120 +aurelius|750208 +aureolaria|750337 +aureolaria pedicularia|750405 +aureolaria virginica|750518 +aureole|750625 +aureomycin|750726 +auric|750802 +auricle|750835 +auricula|750936 +auricula atrii|751058 +auricular|751118 +auricular appendage|751214 +auricular appendix|751284 +auricular artery|751354 +auricular point|751437 +auricular vein|751492 +auriculare|751563 +auricularia|751618 +auricularia auricula|751682 +auriculariaceae|751778 +auriculariales|751856 +auriculate|751929 +auriculated|751967 +auriculoventricular|752005 +auriferous|752071 +auriform|752113 +aurify|752150 +auriga|752276 +auriparus|752324 +auriparus flaviceps|752380 +aurochs|752449 +aurora|752532 +aurora australis|752726 +aurora borealis|752775 +auroral|752823 +aurorean|752894 +aurous|752936 +auschwitz|752969 +auscultate|753026 +auscultation|753058 +auscultatory|753140 +auspex|753221 +auspicate|753275 +auspice|753502 +auspices|753575 +auspicious|753757 +auspiciously|753924 +auspiciousness|753958 +aussie|754043 +austen|754114 +austenite|754163 +austenitic|754220 +austenitic manganese steel|754277 +austenitic steel|754341 +austere|754373 +austereness|754479 +austerity|754521 +austerlitz|754593 +austin|754683 +austin friar|754737 +austin friars|754784 +austral|754871 +austral islands|754957 +australasia|755025 +australasian|755070 +australia|755116 +australian|755217 +australian aborigine|755394 +australian alps|755526 +australian blacksnake|755647 +australian capital|755744 +australian chestnut|755838 +australian cockroach|755918 +australian coral snake|756010 +australian crawl|756122 +australian desert|756199 +australian dollar|756251 +australian grass tree|756303 +australian hare's foot|756450 +australian heath|756540 +australian honeysuckle|756594 +australian magpie|756704 +australian nettle|756768 +australian nettle tree|756841 +australian pea|756919 +australian pine|756998 +australian pitcher plant|757071 +australian reed grass|757176 +australian sea lion|757265 +australian state|757340 +australian stilt|757398 +australian sumac|757484 +australian sword lily|757594 +australian terrier|757741 +australian turtledove|757796 +australopithecine|757885 +australopithecus|757939 +australopithecus afarensis|758018 +australopithecus africanus|758099 +australopithecus boisei|758180 +australopithecus robustus|758255 +austria|758334 +austria-hungary|758424 +austrian|758537 +austrian capital|758621 +austrian monetary unit|758707 +austrian schilling|758776 +austrian winter pea|758856 +austro-asiatic|758981 +austrocedrus|759060 +austrocedrus chilensis|759131 +austronesia|759217 +austronesian|759262 +austronesian language|759431 +austrotaxus|759521 +austrotaxus spicata|759589 +autacoid|759661 +autacoidal|759698 +autarchic|759727 +autarchical|759804 +autarchy|759881 +autarkic|759986 +autarkical|760027 +autarky|760132 +auteur|760184 +authentic|760247 +authentically|760349 +authenticate|760381 +authenticated|760448 +authentication|760504 +authenticator|760621 +authenticity|760661 +author|760745 +author's name|760850 +authoress|760892 +authorial|760925 +authoring language|760966 +authorisation|761044 +authorise|761311 +authorised|761420 +authoriser|761640 +authoritarian|761681 +authoritarianism|761861 +authoritative|762017 +authoritatively|762137 +authorities|762190 +authority|762686 +authority figure|763078 +authorization|763114 +authorize|763381 +authorized|763490 +authorized shares|763721 +authorized stock|763785 +authorized version|763849 +authorizer|764021 +authorship|764062 +autism|764244 +autistic|764269 +auto|764293 +auto accessory|764616 +auto company|764681 +auto factory|764723 +auto limitation|764821 +auto loan|764861 +auto maker|764933 +auto manufacturer|765140 +auto mechanics|765266 +auto part|765432 +auto race|765490 +auto racing|765539 +auto tire|765578 +auto-changer|764372 +auto-da-fe|764435 +auto-mechanic|764484 +autoantibody|765644 +autobahn|765675 +autobiographer|765772 +autobiographic|765807 +autobiographical|765920 +autobiography|766031 +autobus|766093 +autocatalysis|766196 +autocatalytic|766244 +autochthonal|766291 +autochthonic|766366 +autochthonous|766441 +autochthony|766537 +autoclave|766593 +autocoid|766668 +autocracy|766705 +autocrat|766824 +autocratic|766875 +autocratical|767122 +autocratically|767226 +autocue|767277 +autodefensas unidas de colombia|767310 +autodidact|767537 +autodidactic|767610 +autoecious|767684 +autoerotic|767726 +autoeroticism|767751 +autoerotism|767835 +autofluorescence|767919 +autofocus|767958 +autogamic|767992 +autogamous|768070 +autogamy|768159 +autogenesis|768215 +autogenetic|768299 +autogenic|768338 +autogenic therapy|768397 +autogenic training|768464 +autogenics|768531 +autogenous|768598 +autogeny|768668 +autogiro|768752 +autograft|768812 +autograph|768859 +autograph album|768971 +autographed|769002 +autographic|769030 +autogyro|769092 +autoicous|769152 +autoimmune|769202 +autoimmune diabetes|769239 +autoimmune disease|769500 +autoimmune disorder|769556 +autoimmunity|769612 +autoinjector|769644 +autolatry|769701 +autoloader|769751 +autoloading|769807 +autologous|769865 +autolysis|769896 +autolytic|769921 +automaker|769945 +automat|770071 +automate|770121 +automated|770181 +automated teller|770244 +automated teller machine|770377 +automatic|770510 +automatic choke|770966 +automatic data processing|770997 +automatic data processing system|771052 +automatic drive|771150 +automatic face recognition|771231 +automatic firearm|771375 +automatic pilot|771425 +automatic pistol|771512 +automatic rifle|771604 +automatic teller|771683 +automatic teller machine|771816 +automatic transmission|771949 +automatic washer|772030 +automatically|772091 +automation|772126 +automatise|772231 +automatism|772329 +automatize|772367 +automaton|772465 +automatonlike|772549 +automeris|772615 +automeris io|772676 +automobile|772744 +automobile battery|772854 +automobile driver|772934 +automobile engine|772986 +automobile factory|773020 +automobile horn|773118 +automobile industry|773209 +automobile insurance|773247 +automobile loan|773301 +automobile mechanic|773373 +automobile race|773505 +automobile tire|773554 +automobile traffic|773620 +automobile trunk|773694 +automobilist|773758 +automotive|773796 +automotive engineer|773893 +automotive engineering|773962 +automotive technology|774039 +automotive vehicle|774116 +automysophobia|774181 +autonomic|774219 +autonomic ganglion|774250 +autonomic nervous system|774287 +autonomic plexus|774342 +autonomous|774399 +autonomy|774526 +autophyte|774657 +autophytic|774747 +autophytic plant|774802 +autopilot|774892 +autoplastic|774985 +autoplasty|775054 +autopsy|775157 +autoradiograph|775260 +autoradiographic|775336 +autoradiography|775384 +autoregulation|775432 +autosemantic|775491 +autosexing|775527 +autosomal|775556 +autosomal dominant disease|775585 +autosomal dominant disorder|775813 +autosomal recessive defect|776041 +autosomal recessive disease|776269 +autosome|776497 +autostrada|776545 +autosuggestion|776644 +autotelic|776707 +autotelism|776732 +autotomic|776759 +autotomise|776794 +autotomize|776886 +autotomy|776978 +autotroph|777013 +autotrophic|777103 +autotrophic organism|777170 +autotype|777260 +autotypic|777321 +autotypy|777351 +autumn|777390 +autumn crocus|777431 +autumn pumpkin|777514 +autumn sneezeweed|777593 +autumnal|777650 +autumnal equinox|777691 +auvergne|777789 +auxesis|777830 +auxetic|777906 +auxiliary|777981 +auxiliary airfield|778170 +auxiliary boiler|778240 +auxiliary cell|778300 +auxiliary engine|778352 +auxiliary equipment|778399 +auxiliary operation|778468 +auxiliary pump|778526 +auxiliary research submarine|778567 +auxiliary storage|778634 +auxin|778725 +auxinic|778784 +av|778844 +avadavat|778884 +avahi|778942 +avahi laniger|778988 +avail|779045 +availability|779173 +available|779245 +availableness|779501 +avalanche|779573 +avalanche lily|779688 +avalokiteshvara|779750 +avalokitesvara|779830 +avant-garde|779909 +avaram|780006 +avarice|780079 +avaricious|780205 +avariciously|780280 +avariciousness|780321 +avaritia|780381 +avascular|780457 +avatar|780486 +ave maria|780560 +avellan|780606 +avellane|780660 +avena|780714 +avena barbata|780759 +avena fatua|780817 +avena sativa|780878 +avene sterilis|780928 +avenge|780997 +avenged|781056 +avenger|781106 +avens|781173 +aventail|781207 +aventurine|781245 +avenue|781297 +aver|781368 +average|781472 +average cost|781827 +average out|781875 +averageness|782006 +averell harriman|782077 +averment|782194 +averrhoa|782247 +averrhoa bilimbi|782307 +averrhoa carambola|782369 +averroes|782452 +averse|782605 +aversion|782683 +aversion therapy|782784 +aversive|782849 +aversive conditioning|782874 +aversive stimulus|782918 +avert|782963 +avertable|783109 +avertible|783157 +averting|783205 +aves|783294 +avesta|783330 +avestan|783425 +avian|783576 +avianise|783610 +avianize|783655 +aviary|783700 +aviate|783755 +aviation|783797 +aviation medicine|783977 +aviator|784048 +aviatress|784123 +aviatrix|784196 +avicenna|784269 +avicennia|784392 +avicennia marina|784457 +avicennia officinalis|784540 +avicenniaceae|784613 +avid|784692 +avidity|784781 +avidness|784837 +avifauna|784893 +avifaunal|784917 +avifaunistic|784954 +avionic|784991 +avionics|785032 +avirulent|785075 +avitaminosis|785104 +avitaminotic|785155 +avo|785189 +avocado|785222 +avocado pear|785354 +avocado tree|785421 +avocation|785479 +avocational|785566 +avocet|785611 +avogadro|785664 +avogadro number|785952 +avogadro's hypothesis|785717 +avogadro's law|785803 +avogadro's number|785882 +avoid|786020 +avoidable|786245 +avoidance|786293 +avoirdupois|786352 +avoirdupois unit|786460 +avoirdupois weight|786496 +avon|786561 +avouch|786673 +avouchment|786712 +avow|786783 +avowal|786874 +avowed|786945 +avowedly|786980 +avower|787043 +avulse|787131 +avulsion|787156 +avuncular|787223 +await|787265 +awaited|787297 +awake|787345 +awaken|787581 +awakened|787751 +awakening|787799 +award|787853 +award-winning|788066 +awarding|788104 +aware|788162 +awareness|788424 +awash|788530 +away|788587 +away game|788751 +awayness|788785 +awe|788811 +awe-inspiring|788932 +aweary|788994 +awed|789022 +aweigh|789104 +aweless|789141 +awesome|789211 +awestricken|789273 +awestruck|789328 +awful|789383 +awfully|789755 +awfulness|789881 +awheel|789952 +awhile|789982 +awing|790009 +awkward|790071 +awkwardness|790433 +awl|790730 +awless|790753 +awlwort|790824 +awn|790915 +awned|790934 +awning|790968 +awning deck|791009 +awninged|791080 +awnless|791106 +awnless bromegrass|791131 +awny|791191 +awol|791219 +awry|791284 +ax|791438 +ax handle|791510 +ax head|791566 +axe|791598 +axe handle|791668 +axe head|791724 +axenic|791756 +axerophthol|791793 +axial|791868 +axial motion|791944 +axial muscle|792015 +axial rotation|792069 +axial skeleton|792140 +axil|792183 +axile|792203 +axile placentation|792234 +axilla|792275 +axillary|792356 +axillary artery|792417 +axillary cavity|792497 +axillary fossa|792578 +axillary node|792659 +axillary vein|792710 +axiological|792778 +axiology|792809 +axiom|792838 +axiomatic|792905 +axiomatical|793051 +axis|793107 +axis of rotation|793329 +axis vertebra|793370 +axle|793426 +axle bar|793446 +axle grease|793473 +axletree|793517 +axolemma|793545 +axolotl|793585 +axon|793665 +axonal|793709 +axone|793748 +axseed|793792 +ayah|793846 +ayapana|793897 +ayapana triplinervis|793977 +ayatollah|794078 +ayatollah khomeini|794114 +ayatollah ruholla khomeini|794231 +aye-aye|794356 +ayin|794408 +ayn rand|794473 +ayr|794519 +ayrshire|794546 +aythya|794630 +aythya affinis|794677 +aythya americana|794793 +aythya ferina|794849 +aythya marila|794899 +aythya valisineria|794986 +ayurveda|795065 +az|795134 +az zarqa|795215 +azactam|795277 +azadirachta|795339 +azadirachta indica|795408 +azadirachtin|795518 +azalea|795557 +azaleastrum|795586 +azathioprine|795678 +azedarach|795753 +azederach|795886 +azerbaijan|796019 +azerbaijani|796133 +azerbaijani monetary unit|796277 +azerbaijani republic|796352 +azerbajdzhan|796476 +azerbajdzhan republic|796592 +azeri|796717 +azide|796758 +azido|796800 +azido group|796843 +azido radical|796907 +azimuth|796971 +azimuthal|796997 +azo|797021 +azo dye|797062 +azo group|797092 +azo radical|797152 +azoic|797212 +azoimide|797233 +azolla|797302 +azolla caroliniana|797349 +azollaceae|797467 +azonal|797528 +azonic|797558 +azores|797581 +azotaemia|797618 +azote|797671 +azotemia|797713 +azotemic|797766 +azotic|797800 +azoturia|797857 +azt|797885 +aztec|797974 +aztec lily|798003 +aztec marigold|798081 +aztecan|798174 +aztreonam|798232 +azure|798286 +azure aster|798475 +azygos|798502 +azygos vein|798533 +azygous|798609 +azygous vein|798640 +azymia|798716 +b|798742 +b battery|800207 +b cell|800261 +b complex|800319 +b horizon|800428 +b lymphocyte|800561 +b vitamin|800625 +b-52|799130 +b-complex vitamin|799156 +b-flat clarinet|799273 +b-girl|799338 +b-horizon|799389 +b-meson|799522 +b. b. king|799554 +b. f. skinner|799663 +b.c.|799759 +b.o.|799874 +b.t.u.|799958 +b.th.u.|800125 +ba|800734 +baa|800878 +baa-lamb|800948 +baader meinhof gang|800971 +baal|801094 +baal merodach|801127 +baas|801207 +baba|801269 +baba au rhum|801288 +babacu oil|801324 +babar|801360 +babassu|801432 +babassu nut|801544 +babassu oil|801570 +babassu palm|801606 +babbitt|801718 +babbitt metal|801773 +babbitting|801830 +babble|801864 +babble out|802349 +babbler|802544 +babbling|802683 +babe|802797 +babe didrikson|802833 +babe ruth|802973 +babe zaharias|803068 +babel|803207 +babelike|803286 +babesiidae|803314 +babies' slippers|803448 +babies'-breath|803381 +babinski|803566 +babinski reflex|803721 +babinski sign|803883 +babiroussa|804043 +babirusa|804108 +babirussa|804173 +babka|804238 +baboo|804276 +baboon|804311 +baboonish|804355 +babu|804401 +babushka|804436 +baby|804464 +baby bed|805502 +baby bird|805581 +baby blue-eyes|805620 +baby boom|805686 +baby boomer|805737 +baby buggy|805818 +baby buster|805929 +baby carriage|806010 +baby doc|806121 +baby doctor|806197 +baby farmer|806286 +baby grand|806314 +baby grand piano|806435 +baby minder|806556 +baby oil|806683 +baby powder|806737 +baby rose|806765 +baby shoe|806846 +baby sitting|806870 +baby talk|807012 +baby tears|807187 +baby tooth|807286 +baby's bed|804805 +baby's breath|804884 +baby's dummy|804951 +baby's room|805013 +baby's tears|805055 +baby-boom generation|805154 +baby-faced|805205 +baby-like|805231 +baby-sit|805259 +baby-sitter|805287 +baby-walker|805414 +baby-wise|805474 +babyhood|807353 +babyish|807447 +babylon|807473 +babylonia|807527 +babylonian|807645 +babylonian captivity|807757 +babylonian weeping willow|807854 +babyminder|807966 +babyrousa|808012 +babyrousa babyrussa|808070 +babysitter|808155 +babysitting|808201 +babytalk|808262 +bacca|808357 +baccalaureate|808391 +baccarat|808489 +baccate|808537 +bacchanal|808605 +bacchanalia|808900 +bacchanalian|809043 +bacchant|809132 +bacchante|809276 +bacchantic|809302 +baccharis|809344 +baccharis halimifolia|809409 +baccharis pilularis|809537 +baccharis viminea|809650 +bacchic|809715 +bacchus|809804 +bacciferous|809866 +baccilar|809912 +baccivorous|809981 +baccy|810014 +bach|810077 +bachelor|810175 +bachelor girl|810528 +bachelor of arts|810596 +bachelor of arts in library science|810697 +bachelor of arts in nursing|810815 +bachelor of divinity|810916 +bachelor of laws|811002 +bachelor of literature|811060 +bachelor of medicine|811153 +bachelor of music|811239 +bachelor of naval science|811321 +bachelor of science|811418 +bachelor of science in architecture|811505 +bachelor of science in engineering|811625 +bachelor of theology|811736 +bachelor party|811823 +bachelor's button|810286 +bachelor's degree|810406 +bachelor-at-arms|810470 +bachelorhood|811865 +bacillaceae|811922 +bacillar|811990 +bacillariophyceae|812054 +bacillary|812165 +bacillary dysentery|812286 +bacillary white diarrhea|812337 +bacillary white diarrhoea|812429 +bacilli|812521 +bacilliform|812657 +bacillus|812726 +bacillus anthracis|812800 +bacillus globigii|812909 +bacillus subtilis|813019 +bacitracin|813129 +back|813176 +back and forth|814464 +back away|814519 +back brace|814616 +back breaker|814642 +back burner|814800 +back channel|814852 +back circle|814909 +back country|814961 +back door|815033 +back down|815107 +back end|815275 +back entrance|815317 +back exercise|815377 +back judge|815464 +back matter|815502 +back of beyond|815541 +back off|815571 +back out|815740 +back pack|815849 +back porch|815999 +back room|816025 +back street|816087 +back talk|816130 +back tooth|816352 +back up|816388 +back-blast|814096 +back-channel|814216 +back-formation|814272 +back-geared|814301 +back-number|814343 +back-to-back|814419 +backache|816701 +backband|816731 +backbeat|816754 +backbench|816799 +backbencher|816823 +backbend|816855 +backbite|816904 +backbiter|816972 +backblast|817085 +backboard|817124 +backbone|817194 +backbreaking|817444 +backchat|817543 +backcloth|817600 +backcross|817653 +backdate|817698 +backdown|817723 +backdrop|817797 +backed|817850 +backed up|818029 +backer|818065 +backfield|818112 +backfire|818141 +backflow|818334 +backflowing|818377 +backgammon|818420 +backgammon board|818451 +background|818493 +background knowledge|818938 +background level|818991 +background noise|819039 +background processing|819107 +background radiation|819172 +background signal|819231 +backgrounder|819300 +backgrounding|819355 +backhand|819420 +backhand drive|819542 +backhand shot|819572 +backhand stroke|819627 +backhanded|819682 +backhoe|819727 +backing|819781 +backlash|819974 +backless|820081 +backlog|820116 +backmost|820299 +backpack|820351 +backpacker|820437 +backpacking|820484 +backpacking tent|820519 +backpedal|820580 +backplate|820657 +backrest|820740 +backroom|820771 +backroom boy|820811 +backsaw|820874 +backscatter|820915 +backscratcher|820962 +backseat|821026 +backseat driver|821092 +backsheesh|821125 +backside|821226 +backslap|821468 +backslapper|821500 +backslide|821550 +backslider|821609 +backsliding|821672 +backspace|821753 +backspace character|821787 +backspace key|821858 +backspacer|821896 +backspin|821934 +backstage|821957 +backstair|822011 +backstairs|822056 +backstay|822140 +backstitch|822163 +backstop|822228 +backstroke|822272 +backstroker|822320 +backswept|822349 +backswimmer|822387 +backsword|822472 +backtalk|822554 +backtrack|822695 +backup|822770 +backup file|823069 +backup man|823104 +backward|823200 +backward and forward|823608 +backwardness|823663 +backwards|823748 +backwash|823814 +backwater|823973 +backwoods|824026 +backwoodsman|824146 +backyard|824202 +bacon|824243 +bacon and eggs|824527 +bacon rind|824657 +bacon strip|824682 +bacon-lettuce-tomato sandwich|824475 +bacteremia|824709 +bacteremic|824764 +bacteria|824793 +bacteria bed|824835 +bacteria family|824864 +bacteria genus|824896 +bacteria order|824926 +bacteria species|824976 +bacteriacide|825010 +bacteriaemia|825053 +bacterial|825108 +bacterial plaque|825140 +bacterial toxin|825187 +bactericidal|825218 +bactericide|825275 +bacteriemia|825404 +bacteriochlorophyll|825459 +bacterioid|825496 +bacterioidal|825564 +bacteriologic|825632 +bacteriological|825697 +bacteriological warfare|825762 +bacteriologist|825874 +bacteriology|825923 +bacteriolysis|825972 +bacteriolytic|826001 +bacteriophage|826029 +bacteriophagic|826064 +bacteriophagous|826109 +bacteriostasis|826154 +bacteriostat|826213 +bacteriostatic|826241 +bacterise|826299 +bacterium|826336 +bacterize|826378 +bacteroid|826415 +bacteroidaceae|826509 +bacteroidal|826586 +bacteroides|826654 +bactrian camel|826720 +baculiform|826784 +bad|826853 +bad block|827804 +bad blood|827829 +bad check|827891 +bad cheque|827945 +bad condition|827999 +bad debt|828083 +bad egg|828106 +bad fairy|828134 +bad guy|828165 +bad hat|828235 +bad lands|828338 +bad luck|828481 +bad manners|828659 +bad person|828706 +bad temper|828779 +bad weather|828827 +bad-tempered|827715 +badaga|828921 +baddeleyite|828985 +baddie|829014 +bade|829082 +badge|829113 +badger|829196 +badger dog|829340 +badger skunk|829390 +badger state|829502 +badgerer|829565 +badgering|829650 +badinage|829721 +badlands|829778 +badlands national park|829911 +badly|829980 +badminton|830122 +badminton court|830152 +badminton equipment|830183 +badminton racket|830244 +badminton racquet|830314 +badmouth|830384 +badness|830510 +baeda|830627 +baedeker|830845 +baffin bay|830930 +baffin island|830965 +baffle|831009 +baffle board|831394 +baffled|831429 +bafflement|831546 +baffling|831689 +bag|831755 +bag lady|832205 +bag of tricks|832248 +bagascosis|832280 +bagasse|832322 +bagassosis|832344 +bagatelle|832386 +bagdad|832563 +bagel|832627 +bagful|832658 +baggage|832691 +baggage car|832747 +baggageman|832817 +bagger|832863 +bagging|832942 +baggy|832997 +baghdad|833032 +bagman|833097 +bagnio|833273 +bagpipe|833434 +bagpiper|833478 +baguet|833534 +baguette|833572 +bahai|833610 +bahaism|833712 +bahama grass|833769 +bahama islands|833888 +bahamas|833982 +bahamian|834069 +bahamian dollar|834142 +bahasa|834190 +bahasa indonesia|834247 +bahasa kebangsaan|834314 +bahasa malaysia|834405 +bahasa melayu|834494 +bahia coquilla|834581 +bahia grass|834677 +bahia piassava|834733 +bahrain|834844 +bahrain dinar|834981 +bahrain island|835049 +bahraini|835126 +bahrainian monetary unit|835197 +bahrein|835270 +bahrein island|835407 +bahreini|835484 +baht|835533 +bai|835572 +baic|835631 +bail|835691 +bail bond|835966 +bail out|836021 +bailable|836131 +bailee|836176 +bailey|836198 +bailey bridge|836410 +bailiff|836459 +bailiffship|836497 +bailiwick|836573 +bailment|836737 +bailor|836786 +bain-marie|836812 +baiomys|836836 +baiomys taylori|836888 +bairava|836952 +bairdiella|836988 +bairdiella chrysoura|837047 +bairiki|837138 +bairn|837187 +baisa|837283 +baisakh|837324 +bait|837379 +bait and switch|837609 +bait casting|837666 +baiting|837701 +baiza|837741 +baize|837782 +baja california|837827 +bake|837895 +bakeapple|837994 +baked|838112 +baked alaska|838351 +baked egg|838407 +baked goods|838458 +baked potato|838484 +baked-apple berry|838233 +bakehouse|838557 +bakelite|838618 +baker|838653 +baker's dozen|838739 +baker's eczema|838804 +baker's yeast|838844 +bakersfield|838913 +bakery|838975 +bakeshop|839036 +baking|839097 +baking chocolate|839237 +baking hot|839308 +baking powder|839339 +baking soda|839379 +baking-powder biscuit|839198 +bakke decision|839506 +baklava|839560 +baksheesh|839584 +bakshis|839685 +bakshish|839786 +baku|839887 +bakunin|839941 +balaclava|840044 +balaclava helmet|840084 +balaena|840124 +balaena mysticetus|840176 +balaeniceps|840290 +balaeniceps rex|840352 +balaenicipitidae|840429 +balaenidae|840508 +balaenoptera|840571 +balaenoptera acutorostrata|840638 +balaenoptera borealis|840758 +balaenoptera musculus|840839 +balaenoptera physalus|840946 +balaenopteridae|841064 +balagan|841142 +balalaika|841215 +balance|841246 +balance beam|842081 +balance of international payments|842138 +balance of payments|842212 +balance of power|842286 +balance of trade|842324 +balance sheet|842398 +balance wheel|842428 +balance-of-payments problem|842032 +balanced|842465 +balanced budget|842600 +balanced diet|842632 +balancer|842660 +balanchine|842713 +balancing|842803 +balanidae|842872 +balanitis|842935 +balanoposthitis|842981 +balanus|843033 +balanus balanoides|843088 +balarama|843192 +balas|843224 +balas ruby|843274 +balata|843324 +balata tree|843421 +balaton|843494 +balboa|843548 +balbriggan|843635 +balconied|843675 +balcony|843704 +bald|843774 +bald cypress|844066 +bald eagle|844211 +bald-faced hornet|843904 +bald-headed|843974 +bald-pated|844020 +baldachin|844290 +balder|844316 +balderdash|844357 +baldhead|844449 +balding|844535 +baldness|844561 +baldpate|844615 +baldr|844769 +baldric|844809 +baldrick|844840 +baldwin|844871 +baldy|845078 +bale|845164 +bale out|845306 +balearic islands|845364 +baleen|845419 +baleen whale|845450 +balefire|845494 +baleful|845525 +balefulness|845650 +balenciaga|845706 +balfour|845811 +bali|845909 +balibago|845935 +balinese|846009 +baling wire|846071 +balistes|846097 +balistes vetula|846150 +balistidae|846250 +balk|846311 +balkan|846506 +balkan country|846683 +balkan mountain range|846782 +balkan mountains|846940 +balkan nation|847093 +balkan peninsula|847191 +balkan state|847252 +balkan wars|847349 +balkanise|847394 +balkanize|847482 +balkans|847570 +balker|847827 +balkiness|847917 +balking|847967 +balkline|848002 +balky|848048 +ball|848083 +ball and chain|849092 +ball bearing|849153 +ball boy|849213 +ball carrier|849246 +ball cartridge|849295 +ball club|849329 +ball cock|849386 +ball fern|849505 +ball field|849613 +ball game|849704 +ball gown|849799 +ball hawk|849823 +ball hawking|849855 +ball nettle|849901 +ball nightshade|849994 +ball of fire|850087 +ball over|850214 +ball up|850292 +ball valve|850500 +ball-and-socket joint|848588 +ball-breaker|848766 +ball-buster|848853 +ball-hawking|848941 +ball-peen hammer|848971 +ball-shaped|849004 +ballad|850526 +ballad maker|850578 +ballade|850629 +balladeer|850662 +ballast|850725 +ballast resistor|850936 +ballcock|851000 +balldress|851038 +baller mistress|851110 +ballerina|851162 +ballet|851204 +ballet company|851274 +ballet dancer|851313 +ballet master|851363 +ballet position|851413 +ballet skirt|851464 +balletic|851497 +balletomane|851520 +balletomania|851570 +ballgame|851603 +ballista|851689 +ballistic|851814 +ballistic capsule|851850 +ballistic fingerprinting|851947 +ballistic galvanometer|852043 +ballistic identification|852100 +ballistic missile|852196 +ballistic missile defense organization|852231 +ballistic pendulum|852387 +ballistic trajectory|852451 +ballistics|852510 +ballistite|852594 +ballistocardiogram|852652 +ballistocardiograph|852703 +ballock|852763 +balloon|852864 +balloon bomb|852978 +balloon flower|853010 +balloon sail|853093 +balloon seat|853141 +balloon vine|853178 +balloonfish|853251 +ballooning|853304 +balloonist|853338 +ballot|853388 +ballot box|853507 +ballota|853531 +ballota nigra|853590 +balloting|853716 +ballottement|853783 +ballpark|853835 +ballpen|853955 +ballplayer|854005 +ballpoint|854073 +ballpoint pen|854123 +ballroom|854173 +ballroom dance|854220 +ballroom dancing|854276 +ballroom music|854332 +balls-up|854418 +ballup|854527 +bally|854587 +ballyhoo|854664 +ballyhoo artist|854797 +ballyrag|854869 +balm|854964 +balm of gilead|855044 +balmily|855204 +balmoral|855251 +balmoral castle|855305 +balmy|855353 +balochi|855554 +baloney|855612 +balsa|855762 +balsa raft|855850 +balsa wood|855884 +balsam|855915 +balsam apple|856027 +balsam capivi|856086 +balsam family|856142 +balsam fir|856219 +balsam herb|856294 +balsam of peru|856423 +balsam of tolu|856494 +balsam pear|856542 +balsam poplar|856600 +balsam willow|856683 +balsam woolly aphid|856741 +balsamic|856793 +balsaminaceae|856828 +balsamorhiza|856919 +balsamroot|856993 +balsamy|857035 +balthasar|857070 +balthazar|857114 +baltic|857158 +baltic language|857439 +baltic republic|857537 +baltic sea|857663 +baltic state|857705 +baltic-finnic|857378 +baltimore|857828 +baltimore bird|857891 +baltimore oriole|858021 +balto-slavic|858153 +balto-slavic language|858275 +balto-slavonic|858406 +baluchi|858530 +baluster|858588 +balusters|858614 +balustrade|858704 +balzac|858770 +balzacian|858833 +bamako|858870 +bambino|858910 +bamboo|859029 +bamboo curtain|859093 +bamboo fern|859137 +bamboo palm|859184 +bamboo shoot|859328 +bamboozle|859367 +bambusa|859489 +bambusa vulgaris|859558 +bambuseae|859622 +ban|859673 +banal|860171 +banality|860320 +banana|860397 +banana boat|860467 +banana bread|860512 +banana family|860546 +banana oil|860626 +banana passion fruit|860652 +banana peel|860737 +banana quit|860780 +banana republic|860814 +banana skin|860858 +banana split|860901 +banana tree|860929 +banausic|860979 +banch|861006 +band|861026 +band aid|861594 +band of partisans|861720 +band oneself|861854 +band together|861918 +band-tail pigeon|861438 +band-tailed pigeon|861516 +bandage|861965 +bandaged|862057 +bandaging|862089 +bandana|862150 +bandanna|862209 +bandbox|862268 +bandeau|862289 +banded|862333 +banded adder|862387 +banded anteater|862447 +banded gecko|862538 +banded krait|862566 +banded palm civet|862626 +banded purple|862690 +banded rattlesnake|862821 +banded rudderfish|862915 +banded sand snake|862973 +banded stilt|863033 +banded water snake|863105 +bandelet|863195 +bandelette|863275 +banderilla|863355 +banderillero|863380 +bandicoot|863423 +bandicoot rat|863467 +banding|863503 +bandit|863542 +banditry|863580 +bandleader|863627 +bandlet|863681 +bandmaster|863761 +bandoleer|863815 +bandolier|863859 +bandsaw|863903 +bandsman|863949 +bandstand|863999 +bandtail|864047 +bandung|864125 +bandwagon|864179 +bandwagon effect|864236 +bandwidth|864315 +bandy|864354 +bandy about|864548 +bandy legs|864596 +bandy-legged|864491 +bane|864676 +baneberry|864723 +baneful|864795 +banefully|864882 +banff|864913 +bang|864963 +bang out|865819 +bang up|865848 +bang's disease|865604 +bang-up|865701 +bangalore|865964 +bangalore torpedo|866022 +banger|866057 +bangiaceae|866134 +banging|866201 +bangkok|866320 +bangla desh|866398 +bangladesh|866596 +bangladeshi|866712 +bangladeshi monetary unit|866819 +bangle|866894 +bangor|866996 +bangtail|867062 +bangui|867122 +banian|867188 +banian tree|867318 +banish|867427 +banishment|867671 +banister|867750 +banjo|867816 +banjul|867851 +bank|867914 +bank account|868605 +bank bill|868657 +bank building|868807 +bank card|868865 +bank charter|868921 +bank check|868951 +bank clerk|869024 +bank closing|869066 +bank commissioner|869123 +bank deposit|869163 +bank discount|869212 +bank draft|869289 +bank examination|869364 +bank examiner|869411 +bank failure|869453 +bank gravel|869483 +bank guard|869547 +bank holding company|869599 +bank holiday|869645 +bank identification number|869698 +bank line|869786 +bank loan|869889 +bank manager|869913 +bank martin|869970 +bank note|870039 +bank of england|870270 +bank of japan|870324 +bank rate|870374 +bank robber|870430 +bank run|870458 +bank shot|870492 +bank statement|870527 +bank swallow|870581 +bank vault|870650 +bank withdrawal|870687 +bank-depositor relation|868553 +bankable|870723 +bankbook|870770 +banker|870804 +banker's acceptance|870873 +banker's bill|870953 +banker's check|871103 +banker's draft|871219 +bankhead|871294 +bankia|871347 +bankia setaceae|871397 +banking|871482 +banking company|871522 +banking concern|871669 +banking game|871816 +banking industry|871867 +banking system|871917 +banknote|871967 +bankroll|872117 +bankrupt|872217 +bankruptcy|872351 +banks|872452 +banksia|873055 +banksia integrifolia|873083 +banksia rose|873191 +banned|873231 +banner|873266 +banneret|873356 +banning|873423 +banning-order|873479 +bannister|873531 +bannock|873674 +bannockburn|873701 +banns|873749 +banquet|873790 +banquet song|873914 +banqueting|873949 +banquette|873993 +banshee|874018 +bantam|874061 +bantamweight|874163 +banteng|874232 +banter|874286 +bantering|874437 +banteringly|874501 +banti's disease|874537 +banti's syndrome|874624 +banting|874712 +bantoid|874836 +bantoid language|874872 +bantu|874933 +bantu-speaking|875024 +banyan|875124 +banyan tree|875254 +banzai|875363 +banzai attack|875385 +banzai charge|875452 +baobab|875519 +bap|875606 +baphia|875650 +baphia nitida|875704 +baptise|875773 +baptised|875817 +baptisia|875844 +baptisia australis|875904 +baptisia lactea|875994 +baptisia tinctoria|876079 +baptism|876190 +baptismal|876217 +baptismal font|876245 +baptismal name|876301 +baptist|876371 +baptist church|876455 +baptist denomination|876527 +baptistery|876602 +baptistic|876658 +baptistic doctrine|876718 +baptistry|876779 +baptists|876835 +baptize|876927 +baptized|876971 +bar|877007 +bar absolute|877824 +bar billiards|877875 +bar bit|877919 +bar chart|877940 +bar code|877975 +bar exam|878021 +bar examination|878077 +bar fly|878133 +bar girl|878179 +bar graph|878223 +bar hop|878258 +bar line|878304 +bar magnet|878344 +bar mask|878371 +bar mitzvah|878404 +bar printer|878475 +bar sinister|878511 +bar soap|878625 +bar-room plant|877733 +baraka|878648 +baranduki|878716 +barany|878812 +barb|878884 +barbacan|879053 +barbadian|879086 +barbados|879150 +barbados cherry|879321 +barbados dollar|879498 +barbados gooseberry|879546 +barbados maidenhair|879695 +barbados pride|879884 +barbados-gooseberry vine|879219 +barbara hepworth|880006 +barbara tuchman|880120 +barbara ward|880220 +barbara wertheim tuchman|880349 +barbarea|880458 +barbarea praecox|880522 +barbarea verna|880707 +barbarea vulgaris|880890 +barbarian|880997 +barbaric|881207 +barbarisation|881314 +barbarise|881374 +barbarism|881447 +barbarity|881515 +barbarization|881663 +barbarize|881723 +barbarossa|881796 +barbarous|881933 +barbarousness|882037 +barbary|882129 +barbary ape|882226 +barbary coast|882282 +barbary pirate|882388 +barbary sheep|882473 +barbasco|882569 +barbate|882625 +barbecue|882699 +barbecue pit|882798 +barbecue sauce|882831 +barbecued|882861 +barbecued spareribs|882895 +barbecued wing|882939 +barbecuing|882968 +barbed|882997 +barbed wire|883163 +barbel|883189 +barbell|883221 +barbellate|883275 +barbeque|883390 +barber|883467 +barber chair|883677 +barber's itch|883579 +barber's pole|883640 +barberry|883705 +barberry family|883734 +barbershop|883817 +barbershop quartet|883848 +barberton daisy|883894 +barbet|883983 +barbette|884013 +barbette carriage|884042 +barbican|884082 +barbital|884115 +barbitone|884205 +barbiturate|884295 +barbituric acid|884383 +barbra joan streisand|884425 +barbra streisand|884549 +barbu|884668 +barbuda|884717 +barcarole|884749 +barcarolle|884784 +barcelona|884819 +bard|884882 +bardeen|885029 +bardic|885077 +bardolatry|885097 +bare|885141 +bare bone|885981 +bare bones|886008 +bare-ass|885560 +bare-assed|885682 +bare-breasted|885804 +bare-knuckle|885853 +bare-knuckled|885917 +bareback|886165 +barebacked|886221 +bareboat|886275 +bareboating|886311 +bared|886349 +barefaced|886385 +barefacedly|886504 +barefoot|886548 +barefooted|886618 +barehanded|886686 +bareheaded|886714 +barelegged|886750 +barely|886780 +bareness|886838 +barents sea|886909 +barf|886946 +bargain|887110 +bargain down|887301 +bargain hunter|887364 +bargain rate|887396 +bargain-priced|887240 +bargainer|887463 +bargaining|887561 +bargaining chip|887608 +barge|887642 +barge in|887850 +barge pole|887992 +bargee|888017 +bargello|888116 +bargeman|888141 +bari|888240 +baric|888288 +barilla|888325 +baring|888457 +barish|888530 +barite|888573 +baritone|888632 +baritone horn|888781 +baritone voice|888819 +barium|888866 +barium dioxide|888925 +barium enema|888972 +barium hydroxide|889008 +barium monoxide|889041 +barium oxide|889103 +barium peroxide|889165 +barium protoxide|889212 +barium sulfate|889274 +barium sulphate|889342 +bark|889451 +bark beetle|889810 +bark louse|889838 +bark-louse|889691 +barkeep|889957 +barkeeper|890021 +barker|890085 +barking deer|890194 +barking frog|890236 +barkley|890341 +barky|890443 +barley|890473 +barley candy|890597 +barley grass|890643 +barley water|890700 +barley-sugar|890551 +barleycorn|890728 +barm|890802 +barmaid|890839 +barman|890902 +barmbrack|890966 +barmy|891016 +barn|891234 +barn dance|891296 +barn door|891322 +barn grass|891375 +barn millet|891451 +barn owl|891527 +barn spider|891596 +barn swallow|891642 +barnaby's thistle|891704 +barnacle|891797 +barnacle goose|891890 +barnacled|891946 +barnburner|891973 +barndoor|892036 +barndoor skate|892059 +barney oldfield|892101 +barnful|892206 +barnstorm|892236 +barnstormer|892278 +barnum|892423 +barnyard|892509 +barnyard grass|892532 +barograph|892608 +barographic|892637 +barometer|892667 +barometric|892741 +barometric pressure|892828 +barometrical|892891 +baron|892978 +baron adrian|893149 +baron alexander von humboldt|893225 +baron clive|893378 +baron clive of plassey|893506 +baron de la brede et de montesquieu|893645 +baron friedrich heinrich alexander von humboldt|893776 +baron friedrich wilhelm ludolf gerhard augustin von steuben|893948 +baron georges cuvier|894115 +baron hermann ludwig ferdinand von helmholtz|894267 +baron hugh caswall tremenheere dowding|894460 +baron jean baptiste joseph fourier|894612 +baron karl maria friedrich ernst von weber|894752 +baron karl wilhelm von humboldt|894917 +baron lister|895049 +baron lloyd webber of sydmonton|895140 +baron munchausen|895255 +baron olivier of birghton|895384 +baron richard von krafft-ebing|895539 +baron snow of leicester|895673 +baron verulam|895779 +baron wilhelm von humboldt|895936 +baronage|896063 +baronduki|896110 +baroness|896206 +baroness dudevant|896248 +baroness emmusca orczy|896352 +baroness jackson of lodsworth|896427 +baroness karen blixen|896573 +baroness thatcher of kesteven|896681 +baronet|896823 +baronetcy|896885 +baronetise|896929 +baronetize|896983 +barong|897037 +baronial|897059 +baronne anne louise germaine necker de steal-holstein|897111 +barony|897264 +baroque|897369 +baroqueness|897463 +baroreceptor|897513 +barosaur|897573 +barosaurus|897629 +barouche|897685 +barque|897725 +barrack|897774 +barracking|897987 +barracuda|898050 +barrage|898104 +barrage balloon|898287 +barrage fire|898330 +barrage jam|898401 +barrage jamming|898432 +barramunda|898488 +barramundi|898550 +barranquilla|898612 +barred|898681 +barred owl|898780 +barred pickerel|898853 +barrel|898919 +barrel cactus|899149 +barrel knot|899206 +barrel maker|899243 +barrel organ|899311 +barrel roll|899411 +barrel vault|899437 +barreled|899465 +barrelfish|899527 +barrelful|899626 +barrelhouse|899665 +barrelled|899732 +barrels|899784 +barren|900068 +barren ground caribou|900209 +barren of|900311 +barrenness|900388 +barrenwort|900467 +barrette|900545 +barretter|900567 +barricade|900631 +barricaded|900913 +barricado|900961 +barrie|901042 +barrier|901158 +barrier island|901287 +barrier reef|901318 +barrier strip|901351 +barring|901412 +barrio|901477 +barrister|901534 +barroom|901569 +barrow|901618 +barrow's goldeneye|901780 +barrow-boy|901885 +barrow-man|901960 +barrowful|902035 +barrymore|902074 +bars|902442 +barstow|903020 +bart|903050 +bartender|903109 +barter|903173 +barter away|903261 +barterer|903297 +barth|903346 +barthelme|903481 +barthold george niebuhr|903541 +bartholdi|903632 +bartholin|903728 +bartholin's gland|903809 +bartholomeu dias|903871 +bartholomeu diaz|903951 +bartholomew roberts|904031 +bartle frere|904126 +bartlesville|904226 +bartlett|904266 +bartlett pear|904429 +bartok|904466 +bartolome esteban murillo|904531 +bartolomeo prignano|904608 +bartolomeo vanzetti|904756 +bartolommeo eustachio|904845 +bartonia|904918 +bartram juneberry|904962 +bartramia|905085 +bartramia longicauda|905141 +bartramian sandpiper|905254 +baruch|905367 +baruch de spinoza|905544 +barunduki|905640 +barycenter|905736 +barye|905786 +baryon|905837 +baryon number|905883 +baryshnikov|905913 +baryta|906007 +barytes|906050 +barytic|906109 +barytone|906152 +bas bleu|906215 +bas mitzvah|906265 +bas relief|906345 +basal|906456 +basal body temperature|906528 +basal body temperature method|906588 +basal body temperature method of family planning|906700 +basal ganglion|906812 +basal metabolic rate|906845 +basal metabolism|906934 +basal placentation|907000 +basal vein|907041 +basalt|907104 +basaltic|907134 +bascule|907165 +base|907205 +base hit|908363 +base of operations|908399 +base on balls|908454 +base pair|908514 +base rate|908544 +base runner|908594 +base-forming|908324 +baseball|908649 +baseball bat|908736 +baseball cap|908788 +baseball card|908834 +baseball clinic|908870 +baseball club|908902 +baseball coach|908959 +baseball diamond|909022 +baseball equipment|909122 +baseball field|909182 +baseball game|909273 +baseball glove|909329 +baseball league|909397 +baseball manager|909440 +baseball mitt|909503 +baseball play|909571 +baseball player|909599 +baseball score|909667 +baseball season|909697 +baseball swing|909729 +baseball team|909775 +baseboard|909809 +baseborn|909869 +based|909938 +based on|910003 +basel|910031 +baseless|910092 +baseline|910160 +basely|910253 +basement|910284 +baseness|910349 +basenji|910425 +bash|910476 +bashful|910579 +bashfully|910624 +bashfulness|910656 +basia|910701 +basic|910762 +basic assumption|911078 +basic cognitive process|911168 +basic dye|911272 +basic english|911304 +basic iron|911361 +basic point defense missile system|911390 +basic principle|911451 +basic slag|911536 +basic training|911574 +basically|911616 +basics|911679 +basidial|911888 +basidiocarp|911928 +basidiolichen|911963 +basidiomycete|911993 +basidiomycetes|912045 +basidiomycetous|912161 +basidiomycetous fungi|912192 +basidiomycota|912244 +basidiomycotina|912360 +basidiospore|912478 +basidiosporous|912506 +basidium|912535 +basifixed|912576 +basify|912603 +basil|912664 +basil balm|912924 +basil mint|913074 +basil of caesarea|913133 +basil the great|913352 +basil thyme|913569 +basilar|913671 +basilar artery|913703 +basilar membrane|913782 +basilary|913830 +basileus|913862 +basilic vein|913893 +basilica|913959 +basilican|914022 +basilicata|914055 +basiliscus|914109 +basilisk|914171 +basin|914268 +basinal|914497 +basined|914543 +basinet|914569 +basinful|914593 +basipetal|914630 +basis|914659 +basiscopic|914838 +basivertebral vein|914869 +bask|914948 +basket|914999 +basket ash|915203 +basket fern|915280 +basket fish|915383 +basket flower|915427 +basket hilt|915479 +basket maker|915505 +basket oak|915612 +basket rummy|915684 +basket spikemoss|915729 +basket star|915828 +basket weave|915872 +basket willow|915924 +basket-handle arch|915144 +basketball|916016 +basketball backboard|916102 +basketball clinic|916157 +basketball coach|916191 +basketball court|916239 +basketball equipment|916271 +basketball game|916333 +basketball hoop|916386 +basketball league|916449 +basketball play|916494 +basketball player|916524 +basketball score|916580 +basketball season|916612 +basketball shot|916646 +basketball team|916676 +basketeer|916717 +basketful|916773 +basketmaker|916812 +basketry|916859 +basketweaver|916889 +basking shark|916936 +basle|916993 +basophil|917054 +basophile|917172 +basophilia|917290 +basophilic|917323 +basotho|917355 +basque|917388 +basque fatherland and liberty|917458 +basque homeland and freedom|917655 +basra|917850 +bass|917911 +bass clarinet|918238 +bass clef|918270 +bass drum|918301 +bass fiddle|918356 +bass guitar|918472 +bass horn|918505 +bass part|918551 +bass viol|918586 +bass voice|918729 +bassariscidae|918774 +bassariscus|918849 +bassariscus astutus|918913 +bassarisk|919071 +basse-normandie|919209 +basset|919279 +basset horn|919347 +basset hound|919377 +basset oboe|919422 +basseterre|919477 +bassia|919525 +bassia scoparia|919607 +bassine|919733 +bassinet|919762 +bassist|919893 +basso|919942 +basso continuo|920035 +basso profundo|920110 +basso relievo|920156 +basso rilievo|920267 +bassoon|920378 +bassoonist|920430 +basswood|920482 +bast|920558 +bast fiber|920668 +bastard|920721 +bastard feverfew|921099 +bastard indigo|921155 +bastard lignum vitae|921302 +bastard pennyroyal|921383 +bastard pimpernel|921445 +bastard ridley|921517 +bastard title|921599 +bastard toadflax|921638 +bastard turtle|921697 +bastard wing|921779 +bastard yellowwood|921843 +bastardisation|921933 +bastardise|921995 +bastardised|922160 +bastardization|922200 +bastardize|922281 +bastardized|922446 +bastardly|922486 +bastardy|922556 +bastardy proceeding|922616 +baste|922690 +baster|922843 +bastille|922919 +bastille day|922971 +bastinado|923045 +basting|923083 +bastion|923149 +bastioned|923275 +bastnaesite|923321 +bastnasite|923361 +basuto|923401 +basutoland|923438 +bat|923527 +bat boy|923883 +bat mitzvah|923915 +bata|924011 +bataan|924042 +batch|924123 +batch processing|924491 +bate|924549 +bateau bridge|924670 +bated|924736 +batfish|924787 +batfowl|924839 +bath|924870 +bath asparagus|925044 +bath chair|925129 +bath linen|925160 +bath mat|925186 +bath mitzvah|925215 +bath oil|925295 +bath powder|925348 +bath salts|925405 +bath soap|925460 +bath towel|925506 +bath water|925543 +bathe|925573 +bather|925691 +bathetic|925802 +bathhouse|925903 +bathing|925975 +bathing cap|926076 +bathing costume|926114 +bathing machine|926186 +bathing suit|926238 +bathing trunks|926310 +bathing tub|926405 +batholite|926450 +batholith|926513 +batholithic|926576 +batholitic|926620 +bathos|926664 +bathrobe|926791 +bathroom|926814 +bathroom cleaner|926889 +bathroom fixture|926948 +bathroom tissue|926982 +bathtub|927054 +bathtub gin|927099 +bathyal|927124 +bathyal district|927214 +bathyal zone|927345 +bathyergidae|927476 +bathyergus|927545 +bathymetric|927606 +bathymetrical|927682 +bathymetry|927758 +bathyscape|927829 +bathyscaph|927884 +bathyscaphe|927939 +bathysphere|927994 +batidaceae|928027 +batik|928119 +batis|928180 +batis maritima|928239 +batiste|928298 +batman|928345 +batna|928387 +batoidei|928413 +batoko palm|928496 +baton|928602 +baton rouge|928645 +baton rouge bridge|928713 +baton twirler|928778 +batrachia|928837 +batrachian|928939 +batrachoididae|929044 +batrachomyomachia|929117 +batrachoseps|929170 +bats|929240 +batsman|929421 +batswana|929487 +battalion|929536 +batten|929660 +batten down|929793 +batter|929855 +batter bread|930108 +batter's box|930082 +battercake|930152 +battered|930258 +battering|930369 +battering ram|930424 +battery|930451 +battery acid|931029 +battery charger|931276 +battery-acid|930749 +battery-powered|930996 +batting|931316 +batting average|931394 +batting cage|931487 +batting coach|931533 +batting glove|931588 +batting helmet|931643 +batting order|931693 +battle|931740 +battle born state|932125 +battle cruiser|932224 +battle cry|932256 +battle damage|932423 +battle dress|932488 +battle fatigue|932527 +battle flag|932629 +battle fleet|932655 +battle group|932683 +battle line|932715 +battle of atlanta|932741 +battle of austerlitz|932841 +battle of boyne|932918 +battle of britain|932980 +battle of brunanburh|933058 +battle of bull run|933135 +battle of bunker hill|933206 +battle of caporetto|933286 +battle of chattanooga|933360 +battle of chickamauga|933440 +battle of cowpens|933520 +battle of crecy|933588 +battle of cunaxa|933650 +battle of cynoscephalae|933715 +battle of el alamein|933801 +battle of flodden field|933889 +battle of fontenoy|933983 +battle of fredericksburg|934054 +battle of gettysburg|934143 +battle of granicus river|934220 +battle of guadalcanal|934303 +battle of hastings|934383 +battle of hohenlinden|934454 +battle of ipsus|934534 +battle of issus|934596 +battle of ivry|934658 +battle of jena|934734 +battle of jutland|934793 +battle of kerbala|934859 +battle of lake trasimenus|934919 +battle of langside|935011 +battle of lepanto|935082 +battle of leuctra|935148 +battle of little bighorn|935216 +battle of lule burgas|935387 +battle of lutzen|935467 +battle of magenta|935532 +battle of maldon|935600 +battle of marathon|935665 +battle of marston moor|935736 +battle of midway|935819 +battle of minden|935882 +battle of monmouth|935947 +battle of monmouth court house|936061 +battle of naseby|936187 +battle of navarino|936252 +battle of omdurman|936321 +battle of panipat|936392 +battle of pharsalus|936460 +battle of philippi|936534 +battle of pittsburgh landing|936605 +battle of plassey|936711 +battle of plataea|936779 +battle of poitiers|936847 +battle of pydna|936918 +battle of ravenna|936980 +battle of rocroi|937048 +battle of rossbach|937113 +battle of saratoga|937184 +battle of sempatch|937255 +battle of shiloh|937326 +battle of soissons-reims|937420 +battle of solferino|937554 +battle of spotsylvania courthouse|937628 +battle of st mihiel|937733 +battle of tannenberg|937820 +battle of tertry|937897 +battle of teutoburger wald|937962 +battle of tewkesbury|938057 +battle of the aisne|938134 +battle of the ardennes bulge|938263 +battle of the bismarck sea|938391 +battle of the bulge|938480 +battle of the chemin-des-dames|938599 +battle of the coral sea|938739 +battle of the little bighorn|938819 +battle of the marne|938994 +battle of the philippine sea|939099 +battle of the somme|939194 +battle of the spanish armada|939336 +battle of thermopylae|939416 +battle of trafalgar|939496 +battle of trasimeno|939568 +battle of valmy|939642 +battle of verdun|939704 +battle of wagram|939769 +battle of wake|939834 +battle of wake island|939914 +battle of waterloo|940001 +battle of wits|940072 +battle of ypres|940104 +battle of zama|940321 +battle plan|940380 +battle royal|940416 +battle sight|940466 +battle-ax|931926 +battle-axe|932010 +battle-scarred|932093 +battledore|940600 +battledore and shuttlecock|940714 +battlefield|940771 +battlefront|940900 +battleful|940943 +battleground|941005 +battlement|941134 +battlemented|941200 +battler|941295 +battleship|941404 +battlesight|941467 +battlewagon|941520 +battue|941583 +batty|941700 +batwing|941881 +bauble|941937 +baud|942039 +baud rate|942083 +baudelaire|942127 +bauhaus|942208 +bauhinia|942296 +bauhinia monandra|942356 +bauhinia variegata|942429 +baulk|942537 +baulk-line|942707 +baulker|942753 +baum|942843 +bauxite|942905 +bauxitic|942930 +bavaria|942955 +bavarian|942995 +bavarian blue|943036 +bavarian cream|943090 +bawbee|943137 +bawd|943158 +bawdiness|943312 +bawdry|943383 +bawdy|943436 +bawdyhouse|943519 +bawl|943657 +bawl out|943722 +bawler|943942 +bawling|944041 +bawling out|944087 +bay|944222 +bay grass|944664 +bay laurel|944700 +bay leaf|944767 +bay lynx|944790 +bay myrtle|944841 +bay of bengal|944899 +bay of biscay|944940 +bay of campeche|944981 +bay of fundy|945026 +bay of naples|945065 +bay of ob|945106 +bay rum|945151 +bay scallop|945199 +bay state|945294 +bay stater|945366 +bay tree|945406 +bay willow|945473 +bay window|945542 +bay wreath|945631 +bay-leaved caper|944522 +bay-rum tree|944583 +baya|945708 +bayard|945773 +bayat|945876 +bayberry|945896 +bayberry tallow|946054 +bayberry wax|946096 +baycol|946138 +bayer|946243 +bayes|946351 +bayes' postulate|946399 +bayes' theorem|946458 +bayesian|946505 +bayonet|946539 +bayonne|946580 +bayonne bridge|946634 +bayou|946691 +bayt lahm|946711 +bazaar|946791 +bazar|946897 +bazooka|946961 +bb|947003 +bb gun|947038 +bb shot|947086 +bbl|947126 +bbs|947217 +bc|947340 +bd|947373 +bdellium|947441 +be|947469 +be active|947950 +be adrift|947974 +be after|948034 +be all and end all|948075 +be amiss|948170 +be at pains|948275 +be born|948333 +be due|948368 +be given|948407 +be intimate|948450 +be on|948693 +be on cloud nine|948719 +be on the ball|948788 +be quiet|948881 +be sick|948960 +be well|949124 +be with it|949144 +be-all and end-all|947774 +beach|949237 +beach aster|949304 +beach ball|949366 +beach buggy|949391 +beach chair|949447 +beach erosion|949493 +beach flea|949565 +beach goldenrod|949627 +beach grass|949702 +beach heather|949729 +beach house|949804 +beach morning glory|949831 +beach pancake|949907 +beach pea|949960 +beach plum|950034 +beach plum bush|950123 +beach sand verbena|950200 +beach strawberry|950277 +beach towel|950353 +beach waggon|950380 +beach wagon|950493 +beach wormwood|950606 +beachcomber|950684 +beached|950738 +beachfront|950776 +beachhead|950848 +beachlike|950930 +beachwear|950986 +beachy|951047 +beacon|951110 +beacon fire|951286 +beacon hill|951328 +beacon light|951375 +bead|951428 +bead and quirk|951662 +bead fern|951728 +bead tree|951786 +beaded|951860 +beaded lizard|951997 +beading|952077 +beading plane|952184 +beadle|952249 +beadlike|952359 +beads|952409 +beadsman|952567 +beadwork|952612 +beady|952718 +beady-eyed|952882 +beagle|952923 +beagling|952955 +beak|952986 +beaked|953141 +beaked hazelnut|953225 +beaked parsley|953295 +beaked salmon|953372 +beaked whale|953463 +beaker|953499 +beakless|953530 +beaklike|953557 +beam|953582 +beam balance|954174 +beam of light|954204 +beam scale|954331 +beam-ends|954145 +beaming|954381 +beamish|954473 +beamy|954515 +bean|954591 +bean aphid|954821 +bean beetle|954868 +bean blight|954986 +bean caper|955036 +bean counter|955104 +bean curd|955195 +bean dip|955224 +bean plant|955246 +bean sprout|955295 +bean tostada|955323 +bean town|955353 +bean tree|955538 +bean trefoil|955562 +bean weevil|955634 +bean-caper family|954738 +beanbag|955704 +beanball|955725 +beaner|955765 +beanfeast|955805 +beanie|955844 +beano|955875 +beanstalk|955918 +beantown|955948 +beany|956051 +bear|956082 +bear away|957320 +bear cat|957410 +bear claw|957554 +bear cub|957646 +bear down|957684 +bear down on|957954 +bear down upon|958108 +bear grass|958204 +bear hug|958385 +bear in mind|958442 +bear market|958487 +bear oak|958535 +bear off|958582 +bear on|958672 +bear out|958905 +bear paw|959001 +bear up|959052 +bear upon|959155 +bear witness|959231 +bear's breech|956803 +bear's breeches|956877 +bear's ear|957007 +bear's foot|957070 +bear's grape|957151 +bear's-paw fern|956751 +bearable|959333 +bearberry|959394 +bearberry willow|959560 +bearcat|959620 +beard|959684 +beard lichen|959860 +beard moss|959914 +beard worm|959968 +bearded|960006 +bearded darnel|960098 +bearded iris|960177 +bearded seal|960233 +bearded vulture|960337 +bearded wheatgrass|960422 +beardless|960495 +beardless iris|960569 +beardown|960627 +bearer|960652 +bearer bond|960803 +bearer of the sword|960858 +bearing|960992 +bearing brass|961279 +bearing false witness|961308 +bearing metal|961439 +bearing rein|961486 +bearing wall|961523 +bearish|961558 +bearnaise|961587 +bearskin|961612 +bearwood|961674 +beast|961773 +beast of burden|961917 +beastliness|961961 +beastly|962039 +beat|962123 +beat a retreat|963470 +beat about|963517 +beat around the bush|963584 +beat back|963675 +beat down|963746 +beat generation|963860 +beat in|963917 +beat out|963968 +beat up|964084 +beat-up|963426 +beatable|964153 +beaten|964205 +beaten-up|964326 +beater|964370 +beatific|964410 +beatification|964491 +beatified|964591 +beatify|964623 +beating|964789 +beating-reed instrument|964968 +beatitude|965040 +beatles|965148 +beatnik|965194 +beatniks|965239 +beatrice|965339 +beatrice lillie|965417 +beatrice webb|965483 +beats|965567 +beats per minute|966015 +beau|966078 +beau brummell|966230 +beau geste|966365 +beau ideal|966393 +beau monde|966443 +beaufort scale|966520 +beaufort sea|966679 +beaugregory|966718 +beaujolais|966786 +beaumont|966849 +beaumontia|967027 +beaumontia grandiflora|967106 +beaut|967204 +beauteous|967262 +beauteousness|967291 +beautician|967352 +beautification|967423 +beautiful|967463 +beautifully|967862 +beautify|967895 +beauty|968087 +beauty bush|968279 +beauty consultant|968331 +beauty parlor|968385 +beauty parlour|968465 +beauty quark|968545 +beauty salon|968586 +beauty shop|968666 +beauty sleep|968746 +beauty spot|968778 +beauty treatment|968809 +beauvoir|968850 +beaux arts|968966 +beaver|969047 +beaver away|969345 +beaver board|969378 +beaver rat|969410 +beaver state|969440 +beaverbrook|969500 +bebop|969649 +becalm|969744 +becalmed|969792 +bechamel|969829 +bechamel sauce|969880 +bechance|969931 +becharm|970120 +bechtel crab|970276 +bechuana|970398 +beck|970447 +becker muscular dystrophy|970476 +becket|970566 +becket bend|970683 +beckett|970750 +beckley|970825 +beckman thermometer|970911 +beckon|971009 +becloud|971093 +become|971173 +become flat|971299 +becoming|971336 +becomingness|971423 +becquerel|971466 +bed|971545 +bed and breakfast|972806 +bed bug|972961 +bed check|973136 +bed clothing|973202 +bed cover|973258 +bed covering|973441 +bed down|973543 +bed ground|973664 +bed jacket|973880 +bed linen|973907 +bed of flowers|973932 +bed of roses|973981 +bed pillow|974048 +bed rest|974075 +bed sheet|974210 +bed wetter|974245 +bed-and-breakfast|972269 +bed-ground|972424 +bed-hop|972640 +bed-wetting|972755 +beda|974379 +bedamn|974596 +bedaub|974764 +bedaubed|974794 +bedaze|974830 +bedazzle|974880 +bedbug|974916 +bedchamber|975010 +bedclothes|975065 +bedcover|975121 +bedded|975223 +bedder|975379 +bedding|975422 +bedding geranium|975526 +bedding material|975614 +bedding plant|975672 +bede|975715 +bedeck|975932 +bedecked|976010 +bedesman|976067 +bedevil|976112 +bedevilment|976305 +bedew|976376 +bedewed|976395 +bedfast|976421 +bedfellow|976481 +bedford cord|976570 +bedframe|976619 +bedground|976696 +bedhop|976750 +bedight|976784 +bedim|976862 +bedimmed|976945 +bedizen|976974 +bedlam|977184 +bedlamite|977494 +bedless|977535 +bedlington terrier|977560 +bedloe's island|977615 +bedouin|977678 +bedpan|977729 +bedpost|977752 +bedraggle|977777 +bedraggled|977830 +bedrest|977965 +bedrich smetana|978019 +bedrid|978077 +bedridden|978137 +bedrock|978197 +bedroll|978300 +bedroom|978349 +bedroom community|978404 +bedroom furniture|978461 +bedroom set|978538 +bedroom suite|978579 +bedside|978620 +bedside manner|978642 +bedsit|978689 +bedsitter|978746 +bedsitting room|978803 +bedsore|978860 +bedspread|978924 +bedspring|979026 +bedstead|979052 +bedstraw|979129 +bedtime|979169 +beduin|979203 +bedwetter|979253 +bee|979306 +bee balm|979415 +bee beetle|979730 +bee eater|979771 +bee fly|979807 +bee house|979828 +bee killer|979859 +bee moth|979944 +bee orchid|980012 +bee sting|980073 +beebalm|980115 +beebread|980351 +beech|980390 +beech family|980443 +beech fern|980513 +beech marten|980538 +beech tree|980604 +beechen|980635 +beecher|980658 +beechnut|980767 +beechwood|980796 +beef|980826 +beef bourguignonne|981037 +beef broth|981109 +beef burrito|981152 +beef cattle|981182 +beef fondue|981241 +beef goulash|981299 +beef jerky|981354 +beef loin|981392 +beef man|981423 +beef neck|981494 +beef patty|981525 +beef plant|981606 +beef roast|981688 +beef stew|981731 +beef stock|981755 +beef stroganoff|981798 +beef tallow|981844 +beef tea|981872 +beef tenderloin|981914 +beef tongue|981959 +beef up|981987 +beef wellington|982043 +beefalo|982114 +beefburger|982156 +beefcake|982195 +beefeater|982243 +beefed-up|982306 +beefsteak|982332 +beefsteak begonia|982357 +beefsteak fungus|982445 +beefsteak geranium|982525 +beefsteak morel|982619 +beefsteak plant|982689 +beefsteak tomato|982826 +beefwood|982859 +beefy|983043 +beehive|983095 +beehive state|983201 +beekeeper|983274 +beekeeping|983351 +beeline|983394 +beelzebub|983432 +beep|983566 +beeper|983652 +beer|983692 +beer barrel|983719 +beer bottle|983761 +beer can|983789 +beer drinker|983823 +beer garden|983886 +beer glass|983924 +beer hall|983965 +beer keg|983989 +beer maker|984031 +beer mat|984071 +beer mug|984098 +beerbohm|984126 +beery|984222 +beeswax|984266 +beet|984313 +beet armyworm|984394 +beet blight|984447 +beet green|984475 +beet sugar|984524 +beethoven|984601 +beethovenian|984697 +beetle|984740 +beetle off|984918 +beetle-browed|984875 +beetleweed|984991 +beetling|985083 +beetroot|985119 +befall|985215 +befit|985406 +befitting|985482 +befittingly|985513 +befog|985572 +befogged|985652 +befool|985689 +befooling|985846 +before|985889 +before christ|985933 +before long|985977 +beforehand|986020 +befoul|986077 +befouled|986156 +befoulment|986202 +befriend|986265 +befuddle|986304 +befuddled|986422 +befuddlement|986627 +beg|986770 +beg off|986898 +beget|986953 +begetter|987033 +beggar|987077 +beggar lice|988165 +beggar's lice|987277 +beggar's-ticks|987183 +beggar-my-neighbor|987373 +beggar-my-neighbor policy|987454 +beggar-my-neighbor strategy|987580 +beggar-my-neighbour|987706 +beggar-my-neighbour policy|987787 +beggar-my-neighbour strategy|987913 +beggar-ticks|988039 +beggarly|988263 +beggarman|988321 +beggarweed|988357 +beggarwoman|988456 +beggary|988494 +begging|988628 +begild|988677 +begin|988754 +beginner|989066 +beginning|989197 +beginning rhyme|989487 +begird|989561 +begonia|989637 +begonia cheimantha|989661 +begonia cocchinea|989756 +begonia dregei|989828 +begonia erythrophylla|989913 +begonia family|990023 +begonia feastii|990101 +begonia heracleifolia|990205 +begonia rex|990297 +begonia semperflorens|990403 +begonia socotrana|990476 +begonia tuberhybrida|990545 +begoniaceae|990637 +begotten|990727 +begrime|990756 +begrimed|990823 +begrudge|990896 +beguile|990945 +beguiled|991116 +beguilement|991194 +beguiler|991301 +beguiling|991447 +beguine|991533 +begum|991654 +behalf|991730 +behave|991793 +behavior|991913 +behavior modification|992096 +behavior therapy|992158 +behavioral|992220 +behaviorism|992260 +behaviorist|992382 +behavioristic|992514 +behavioristic psychology|992613 +behaviour|992735 +behavioural|992915 +behaviourism|992955 +behaviourist|993077 +behaviouristic|993208 +behaviouristic psychology|993307 +behead|993429 +beheaded|993461 +beheading|993500 +behemoth|993635 +behest|993793 +behind|993839 +behind-the-scenes|994110 +behindhand|994169 +behmen|994224 +behmenism|994340 +behold|994420 +beholden|994452 +beholder|994480 +beholding|994570 +behoove|994625 +behove|994669 +behrens|994713 +behring|994771 +beige|994840 +beigel|994889 +beijing|994920 +beijing dialect|994998 +being|995090 +beingness|995174 +beira|995215 +beirut|995270 +bejewel|995329 +bejeweled|995401 +bejewelled|995523 +bel|995645 +bel and the dragon|995775 +bel canto|995827 +bel esprit|995865 +bel-merodach|995696 +bela bartok|995908 +bela ferenc blasko|995978 +bela lugosi|996087 +belabor|996189 +belabour|996323 +belamcanda|996455 +belamcanda chinensis|996524 +belarus|996621 +belarusian|996744 +belarusian monetary unit|996888 +belated|996961 +belatedly|997000 +belau|997031 +belay|997090 +belaying pin|997188 +belch|997214 +belching|997488 +beldam|997725 +beldame|997800 +beleaguer|997874 +beleaguering|998015 +belem|998093 +belemnite|998212 +belemnitic|998238 +belemnitidae|998264 +belemnoidea|998334 +belfast|998398 +belfry|998459 +belgian|998508 +belgian beef stew|998589 +belgian capital|998659 +belgian congo|998755 +belgian endive|998868 +belgian franc|998962 +belgian griffon|999005 +belgian hare|999105 +belgian sheepdog|999167 +belgian shepherd|999259 +belgian waffle|999351 +belgique|999397 +belgium|999484 +belgrade|999570 +belie|999644 +belief|999735 +believability|999845 +believable|999901 +believably|999979 +believe|1000026 +believe in|1000132 +believer|1000160 +believing|1000297 +believingly|1000340 +belike|1000372 +belisarius|1000440 +belittle|1000492 +belittled|1000657 +belittling|1000711 +belize|1000907 +belize dollar|1000996 +bell|1001040 +bell apple|1001791 +bell arch|1001865 +bell book|1001895 +bell buoy|1001922 +bell captain|1001965 +bell cot|1001998 +bell cote|1002034 +bell deck|1002070 +bell founder|1002104 +bell foundry|1002134 +bell gable|1002175 +bell glass|1002222 +bell heather|1002299 +bell jar|1002441 +bell magpie|1002518 +bell metal|1002567 +bell morel|1002594 +bell pepper|1002626 +bell push|1002786 +bell ringer|1002829 +bell ringing|1002962 +bell seat|1003105 +bell shape|1003142 +bell tent|1003194 +bell the cat|1003238 +bell toad|1003297 +bell tower|1003415 +bell-bottom|1001521 +bell-bottomed|1001565 +bell-bottoms|1001609 +bell-shaped|1001666 +bell-shaped curve|1001702 +bella sombra|1003441 +belladonna|1003495 +belladonna lily|1003589 +bellarmine|1003656 +bellarmino|1003851 +bellbird|1004004 +bellbottom trousers|1004040 +bellboy|1004097 +belle|1004156 +belle de nuit|1004216 +belle isle cress|1004277 +belle miriam silverman|1004462 +belleau wood|1004545 +bellerophon|1004643 +belles lettres|1004846 +belles-lettres|1004691 +belletristic|1005001 +bellflower|1005032 +bellflower family|1005084 +bellhop|1005159 +bellicose|1005218 +bellied|1005280 +belligerence|1005392 +belligerency|1005534 +belligerent|1005632 +belligerently|1005822 +belling|1005869 +bellingham|1005945 +bellini|1006010 +bellis|1006061 +bellis perennis|1006117 +bellman|1006191 +belloc|1006250 +bellow|1006330 +bellower|1006549 +bellowing|1006628 +bellows|1006748 +bellows fish|1006948 +bellpull|1007011 +bells of ireland|1007034 +bellwether|1007129 +bellwort|1007170 +belly|1007217 +belly dance|1007610 +belly dancer|1007755 +belly dancing|1007838 +belly flop|1007916 +belly flopper|1007987 +belly laugh|1008058 +belly out|1008183 +belly whop|1008248 +belly whopper|1008319 +belly-flop|1007514 +belly-land|1007539 +belly-up|1007573 +bellyache|1008390 +bellyacher|1008545 +bellyband|1008664 +bellybutton|1008730 +bellyful|1008791 +bellying|1008860 +bellylaugh|1008931 +bellyless|1008983 +belmont|1009025 +belmont park|1009074 +belmont stakes|1009128 +belo horizonte|1009185 +belong|1009253 +belonging|1009346 +belongings|1009375 +belonidae|1009470 +belorussia|1009528 +belorussian|1009654 +belostomatidae|1009723 +beloved|1009801 +below|1009884 +below the belt|1010014 +belowground|1010067 +belsen|1010142 +belshazzar|1010193 +belt|1010245 +belt along|1010487 +belt bag|1010618 +belt buckle|1010653 +belt down|1010681 +belt maker|1010767 +belt out|1010800 +belt up|1010828 +belted|1010907 +belted kingfisher|1010946 +belted sandfish|1010998 +belting|1011053 +beltless|1011100 +beltlike|1011127 +beluga|1011152 +beluga caviar|1011263 +belvedere|1011301 +bema|1011437 +bemidji|1011474 +bemire|1011504 +bemisia|1011571 +bemisia tabaci|1011626 +bemoan|1011714 +bemock|1011796 +bemuse|1011836 +bemused|1011927 +bemusement|1012081 +ben|1012224 +ben gurion|1012252 +ben hecht|1012343 +ben hogan|1012392 +ben jonson|1012478 +ben shahn|1012558 +ben sira|1012616 +benadryl|1012704 +bench|1012761 +bench clamp|1013049 +bench lathe|1013076 +bench mark|1013103 +bench press|1013233 +bench vise|1013287 +bench warmer|1013327 +bench warrant|1013368 +benchley|1013414 +benchmark|1013514 +bend|1013634 +bend dexter|1014046 +bend over backwards|1014081 +bend sinister|1014144 +bendability|1014213 +bendable|1014270 +benday|1014320 +benday process|1014344 +bended|1014393 +bender|1014422 +bending|1014548 +bendopa|1014670 +bends|1014758 +bendy tree|1015121 +beneath|1015201 +benedick|1015257 +benedict|1015310 +benedict arnold|1015484 +benedict de spinoza|1015572 +benedictine|1015670 +benedictine order|1015802 +benediction|1015892 +benedictive|1015981 +benedictory|1016036 +benefact|1016091 +benefaction|1016125 +benefactive role|1016206 +benefactor|1016275 +benefactress|1016314 +benefic|1016354 +benefice|1016382 +beneficed|1016484 +beneficence|1016513 +beneficent|1016567 +beneficial|1016711 +beneficiary|1016780 +beneficiate|1016928 +beneficiation|1016963 +benefit|1017080 +benefit album|1017228 +benefit concert|1017279 +benefit of clergy|1017312 +benelux|1017348 +benet|1017387 +benevolence|1017481 +benevolent|1017561 +benficiate|1017802 +benford's law|1017849 +bengal|1017904 +bengal bean|1017999 +bengal kino|1018166 +bengal light|1018234 +bengal rose|1018281 +bengal tiger|1018345 +bengali|1018402 +benghal bean|1018586 +benghazi|1018754 +benight|1018815 +benighted|1018957 +benign|1019021 +benign prostatic hyperplasia|1019135 +benign tumor|1019189 +benign tumour|1019308 +benignancy|1019427 +benignant|1019484 +benignantly|1019586 +benignity|1019615 +benignly|1019695 +benin|1019724 +benin franc|1019802 +beninese|1019841 +benison|1019922 +benito mussolini|1019960 +benjamin|1020040 +benjamin britten|1020138 +benjamin bush|1020282 +benjamin david goodman|1020405 +benjamin disraeli|1020536 +benjamin franklin|1020649 +benjamin franklin bridge|1020789 +benjamin franklin norris jr.|1020866 +benjamin harris|1020967 +benjamin harrison|1021045 +benjamin henry latrobe|1021227 +benjamin jonson|1021309 +benjamin jowett|1021394 +benjamin kubelsky|1021494 +benjamin peirce|1021571 +benjamin ricketson tucker|1021666 +benjamin rush|1021765 +benjamin shahn|1021872 +benjamin spock|1021935 +benjamin thompson|1022030 +benjamin west|1022108 +benne|1022158 +bennet|1022230 +bennett|1022321 +bennettitaceae|1022396 +bennettitales|1022475 +bennettitis|1022544 +benni|1022612 +bennie|1022684 +bennington|1022744 +benniseed|1022780 +benny|1022870 +benny goodman|1022999 +benny hill|1023121 +benoit mandelbrot|1023189 +bent|1023259 +bent grass|1023674 +bent hang|1023797 +bent on|1023821 +bent-grass|1023551 +benthal|1023878 +bentham|1023935 +benthic|1024007 +benthic division|1024064 +benthonic|1024136 +benthonic zone|1024193 +benthos|1024265 +benton|1024359 +bentonite|1024465 +bentonitic|1024489 +bentwood|1024513 +benumb|1024536 +benumbed|1024592 +benvenuto cellini|1024660 +benweed|1024753 +benzedrine|1024822 +benzene|1024893 +benzene formula|1024946 +benzene nucleus|1025038 +benzene ring|1025130 +benzenoid|1025222 +benzine|1025261 +benzoate|1025314 +benzoate of soda|1025337 +benzocaine|1025388 +benzodiazepine|1025508 +benzofuran|1025692 +benzoic|1025758 +benzoic acid|1025800 +benzoin|1025838 +benzoin odoriferum|1025961 +benzol|1026089 +benzoquinone|1026142 +benzoyl group|1026199 +benzoyl peroxide|1026267 +benzoyl radical|1026350 +benzyl|1026418 +benzyl group|1026491 +benzyl radical|1026564 +benzylic|1026637 +benzylpenicillin|1026683 +beograd|1026733 +beowulf|1026806 +bepaint|1026882 +beplastered|1026926 +bequeath|1026972 +bequest|1027019 +berate|1027069 +berating|1027289 +berber|1027365 +berberidaceae|1027588 +berberis|1027685 +berberis canadensis|1027749 +berberis thunbergii|1027825 +berberis vulgaris|1027901 +berceuse|1027989 +bercy|1028031 +bercy butter|1028071 +bereave|1028118 +bereaved|1028156 +bereavement|1028234 +bereft|1028293 +bereft of|1028405 +beret|1028442 +berg|1028461 +bergall|1028532 +bergamot|1028587 +bergamot mint|1028656 +bergamot orange|1028802 +bergen|1028871 +bergenia|1028928 +bergman|1028968 +bergson|1029060 +beria|1029131 +beriberi|1029213 +bering|1029260 +bering sea|1029328 +bering standard time|1029363 +bering strait|1029462 +bering time|1029512 +berit|1029602 +berith|1029660 +berk|1029719 +berkeley|1029810 +berkelium|1029933 +berkshire|1029995 +berkshire hills|1030031 +berkshires|1030163 +berlage|1030314 +berlin|1030381 +berlin airlift|1030533 +berlin doughnut|1030585 +berliner|1030665 +berlioz|1030699 +berm|1030769 +bermuda|1030823 +bermuda buttercup|1030864 +bermuda cedar|1030980 +bermuda chub|1031069 +bermuda dollar|1031143 +bermuda grass|1031189 +bermuda lily|1031309 +bermuda maidenhair|1031399 +bermuda maidenhair fern|1031513 +bermuda onion|1031632 +bermuda plan|1031675 +bermuda rig|1031731 +bermuda shorts|1031815 +bermuda triangle|1031895 +bermudan|1031975 +bermudan rig|1032049 +bermudas|1032134 +bermudian|1032207 +bermudian rig|1032260 +bern|1032346 +berna eli oldfield|1032411 +bernanrd arthur owen williams|1032519 +bernard|1032631 +bernard baruch|1032684 +bernard hinault|1032803 +bernard law montgomery|1032887 +bernard malamud|1033036 +bernard mannes baruch|1033099 +bernardo bertolucci|1033225 +bernd heinrich wilhelm von kleist|1033332 +berne|1033457 +bernese mountain dog|1033523 +bernhard riemann|1033586 +bernhardt|1033684 +bernini|1033762 +bernoulli|1033871 +bernoulli distribution|1034166 +bernoulli's law|1034086 +bernstein|1034281 +beroe|1034371 +berra|1034408 +berried|1034493 +berry|1034539 +berry fern|1034659 +berrylike|1034748 +berserk|1034780 +berserker|1034890 +berteroa|1034945 +berteroa incana|1035009 +berth|1035099 +bertholletia|1035386 +bertholletia excelsa|1035471 +bertillon|1035558 +bertillon system|1035620 +bertolt brecht|1035681 +bertolucci|1035753 +bertrand arthur william russell|1035851 +bertrand russell|1035995 +berycomorphi|1036124 +beryl|1036191 +beryllium|1036214 +beryllium bronze|1036285 +berzelius|1036318 +beseech|1036376 +beseeching|1036432 +beseechingly|1036591 +beseem|1036662 +beset|1036738 +beshrew|1037018 +besides|1037186 +besiege|1037246 +besieged|1037354 +besieger|1037381 +besieging|1037466 +besmear|1037544 +besmeared|1037574 +besmirch|1037620 +besmirched|1037735 +besom|1037824 +besot|1037845 +besotted|1037892 +bespangle|1038123 +bespangled|1038241 +bespatter|1038363 +bespattered|1038411 +bespeak|1038483 +bespeckle|1038601 +bespectacled|1038649 +besplashed|1038709 +bespoke|1038781 +bespoken|1038883 +bespot|1039047 +besprent|1039068 +besprinkle|1039100 +bessel|1039140 +bessemer|1039235 +bessemer converter|1039347 +bessemer process|1039414 +bessera|1039493 +bessera elegans|1039553 +besseya|1039613 +besseya alpina|1039672 +bessie smith|1039739 +bessy cerca|1039816 +best|1039912 +best and greatest|1042022 +best evidence rule|1042104 +best friend|1042149 +best man|1042177 +best seller|1042205 +best-known|1041966 +best-selling|1041992 +bestial|1042251 +bestialise|1042299 +bestiality|1042350 +bestialize|1042440 +bestially|1042491 +bestiary|1042539 +bestir|1042562 +bestir oneself|1042599 +bestow|1042755 +bestowal|1042864 +bestowed|1042949 +bestowment|1042993 +bestrew|1043076 +bestride|1043105 +bestubbled|1043174 +bet|1043229 +bet on|1043475 +beta|1043532 +beta blocker|1044458 +beta cell|1044558 +beta centauri|1044582 +beta crucis|1044624 +beta decay|1044662 +beta endorphin|1044721 +beta globulin|1044755 +beta iron|1044812 +beta orionis|1044856 +beta particle|1044928 +beta radiation|1044960 +beta ray|1045075 +beta receptor|1045190 +beta rhythm|1045265 +beta software|1045336 +beta test|1045409 +beta vulgaris|1045456 +beta vulgaris cicla|1045520 +beta vulgaris rubra|1045653 +beta vulgaris vulgaris|1045742 +beta wave|1045865 +beta-adrenergic blocker|1043758 +beta-adrenergic blocking agent|1043858 +beta-adrenergic receptor|1043958 +beta-adrenoceptor|1044033 +beta-carotene|1044108 +beta-hydroxybutyric acid|1044172 +beta-interferon|1044267 +beta-lactamase|1044303 +beta-lipoprotein|1044348 +beta-naphthol|1044414 +betaine|1045936 +betake oneself|1045962 +betatron|1046010 +bete noire|1046096 +betel|1046163 +betel nut|1046227 +betel palm|1046268 +betel pepper|1046308 +betelgeuse|1046372 +beth|1046428 +bethe|1046493 +bethel|1046563 +bethink|1046642 +bethlehem|1046766 +bethlehem ephrathah|1046954 +bethlehem-judah|1046868 +bethune|1047044 +betide|1047108 +betimes|1047208 +betise|1047230 +betoken|1047305 +betray|1047497 +betrayal|1047865 +betrayer|1047973 +betraying|1048142 +betroth|1048171 +betrothal|1048215 +betrothed|1048287 +betsy griscom ross|1048373 +betsy ross|1048489 +bette davis|1048597 +better|1048644 +better half|1050861 +better off|1051007 +better-known|1050658 +better-looking|1050686 +bettering|1051037 +betterment|1051148 +betting|1051298 +betting odds|1051367 +betting shop|1051400 +bettong|1051433 +bettongia|1051476 +bettor|1051534 +betty friedan|1051580 +betty naomi friedan|1051700 +betula|1051826 +betula alleghaniensis|1051884 +betula cordifolia|1051981 +betula fontinalis|1052122 +betula glandulosa|1052257 +betula lenta|1052365 +betula leutea|1052454 +betula neoalaskana|1052543 +betula nigra|1052625 +betula papyrifera|1052711 +betula pendula|1052852 +betula populifolia|1052955 +betula pubescens|1053050 +betulaceae|1053134 +betulaceous|1053219 +between|1053262 +between decks|1053299 +betweenbrain|1053334 +betwixt|1053413 +beurre noisette|1053437 +bevatron|1053482 +bevel|1053510 +bevel gear|1053592 +bevel square|1053681 +beverage|1053719 +beveridge|1053782 +beverly hills|1053883 +beverly sills|1053949 +bevin|1054023 +bevy|1054089 +bewail|1054137 +beware|1054219 +bewhisker|1054265 +bewhiskered|1054322 +bewick's swan|1054396 +bewilder|1054492 +bewildered|1054757 +bewildering|1054860 +bewilderingly|1054889 +bewilderment|1054923 +bewitch|1055066 +bewitched|1055324 +bewitchery|1055365 +bewitching|1055429 +bewitchingly|1055518 +bewitchment|1055580 +bewray|1055654 +bey|1055765 +beyond|1055809 +beyond any doubt|1055840 +beyond control|1055917 +beyond doubt|1055952 +beyond question|1056001 +beyond the sea|1056078 +bezant|1056130 +bezel|1056174 +bezique|1056194 +bezoar goat|1056253 +bezzant|1056306 +bhadon|1056350 +bhadrapada|1056405 +bhaga|1056464 +bhagavad-gita|1056497 +bhagavadgita|1056693 +bhakti|1056807 +bhang|1056832 +bharat|1056857 +bhumi devi|1056931 +bhutan|1056974 +bhutanese|1057042 +bhutanese monetary unit|1057136 +bhutani|1057207 +bi|1057256 +bi-fold door|1057319 +bialy|1057355 +bialystoker|1057393 +biannual|1057431 +bias|1057502 +biased|1057678 +biaural|1057779 +biauriculate heart|1057847 +biaxal|1057893 +biaxate|1057929 +biaxial|1057965 +bib|1058001 +bib-and-tucker|1058117 +bibb lettuce|1058166 +bibbed|1058220 +bible|1058243 +bible belt|1058532 +bible leaf|1058568 +bible-worship|1058446 +bibless|1058697 +biblical|1058722 +biblical aramaic|1058876 +biblical latin|1058927 +bibliographer|1058983 +bibliographic|1059039 +bibliographical|1059090 +bibliography|1059141 +bibliolatrous|1059176 +bibliolatry|1059235 +bibliomania|1059307 +bibliomaniacal|1059344 +bibliophile|1059383 +bibliophilic|1059458 +bibliopole|1059512 +bibliopolic|1059576 +bibliopolist|1059627 +bibliothec|1059691 +bibliotheca|1059754 +bibliothecal|1059783 +bibliothecarial|1059828 +bibliotic|1059906 +bibliotics|1060027 +bibliotist|1060150 +bibos|1060195 +bibos frontalis|1060241 +bibos gaurus|1060309 +bibulous|1060363 +bicameral|1060432 +bicapsular|1060490 +bicarbonate|1060530 +bicarbonate of soda|1060580 +bicentenary|1060707 +bicentennial|1060822 +bicentric|1060936 +bicephalous|1060963 +biceps|1060991 +biceps brachii|1061039 +biceps humeri|1061108 +bichloride|1061177 +bichloride of mercury|1061217 +bichromate|1061313 +bichromated|1061349 +bichrome|1061374 +bicipital|1061468 +bicker|1061518 +bickering|1061696 +bicolor|1061799 +bicolor lespediza|1061893 +bicolored|1061974 +bicolour|1062068 +bicoloured|1062162 +biconcave|1062256 +biconvex|1062299 +bicorn|1062368 +bicornate|1062458 +bicorne|1062522 +bicorned|1062557 +bicornuate|1062621 +bicornuous|1062685 +bicuspid|1062749 +bicuspid valve|1062818 +bicuspidate|1062906 +bicycle|1062953 +bicycle chain|1063116 +bicycle clip|1063145 +bicycle pump|1063185 +bicycle race|1063212 +bicycle rack|1063239 +bicycle seat|1063266 +bicycle traffic|1063300 +bicycle wheel|1063359 +bicycle-built-for-two|1063038 +bicycler|1063388 +bicyclic|1063449 +bicycling|1063474 +bicyclist|1063501 +bid|1063562 +bid price|1063876 +bida|1063914 +biddable|1063985 +bidder|1064034 +bidding|1064094 +bidding contest|1064191 +biddy|1064224 +bide|1064311 +bidens|1064365 +bidens bipinnata|1064421 +bidens connata|1064546 +bidens coronata|1064671 +bidens trichosperma|1064817 +bidens tripartita|1064967 +bidentate|1065140 +bidet|1065165 +bidirectional|1065186 +biedermeier|1065254 +biegnet|1065298 +biennial|1065340 +biennially|1065455 +bier|1065483 +bierce|1065529 +biface|1065604 +bifacial|1065643 +biff|1065682 +bifid|1065748 +bifocal|1065771 +bifold|1065796 +bifoliate|1065819 +biform|1065844 +bifurcate|1065867 +bifurcated|1066002 +bifurcation|1066030 +big|1066148 +big band|1068591 +big bang|1068641 +big bang theory|1068687 +big bedbug|1068746 +big ben|1068837 +big bend|1068868 +big bend national park|1068967 +big bill haywood|1069036 +big bill tilden|1069133 +big blue|1069220 +big board|1069325 +big brother|1069481 +big brown bat|1069566 +big bucks|1069638 +big business|1069695 +big businessman|1069742 +big cat|1069862 +big cheese|1069896 +big deal|1070033 +big dipper|1070188 +big enchilada|1070366 +big fish|1070503 +big game|1070640 +big gun|1070663 +big h|1070800 +big hand|1070880 +big league|1070915 +big leaguer|1070973 +big marigold|1071035 +big money|1071113 +big sagebrush|1071170 +big science|1071269 +big shagbark|1071327 +big shellbark|1071448 +big shellbark hickory|1071569 +big shot|1071690 +big sioux river|1071827 +big sister|1071874 +big spender|1071905 +big stick|1071980 +big sur|1072012 +big time|1072109 +big toe|1072135 +big top|1072173 +big tree|1072243 +big wheel|1072369 +big-bang theory|1067554 +big-bellied|1067694 +big-boned|1067737 +big-bud hickory|1067763 +big-chested|1067887 +big-cone douglas fir|1067922 +big-cone spruce|1068003 +big-eared bat|1068084 +big-eyed scad|1068154 +big-leaf maple|1068228 +big-shouldered|1068289 +big-ticket|1068355 +big-toothed aspen|1068397 +big-tree plum|1068537 +bigamist|1072506 +bigamous|1072571 +bigamy|1072600 +bigarade|1072751 +bigeminal|1072882 +bigeneric|1072910 +bigeye|1072939 +bigeye scad|1072987 +bigfoot|1073061 +bigger|1073115 +biggest|1074555 +biggin|1076005 +biggish|1076025 +bighead|1076056 +bigheaded|1076088 +bighearted|1076193 +bigheartedness|1076292 +bighorn|1076340 +bighorn river|1076490 +bighorn sheep|1076541 +bight|1076656 +bight of benin|1076765 +bigmouthed|1076810 +bigness|1076873 +bignonia|1076905 +bignonia capreolata|1076967 +bignoniaceae|1077072 +bignoniaceous|1077148 +bignoniad|1077191 +bigos|1077237 +bigot|1077257 +bigoted|1077299 +bigotry|1077327 +bigram|1077366 +bigtooth aspen|1077395 +bigtoothed aspen|1077535 +bigwig|1077675 +bihar|1077756 +bihari|1077792 +bijou|1077844 +bijugate leaf|1077877 +bijugous leaf|1077927 +bike|1077977 +bikers|1078116 +bikini|1078157 +bikini pants|1078238 +bilabial|1078271 +bilabiate|1078313 +bilateral|1078339 +bilateral contract|1078525 +bilateral descent|1078562 +bilateral symmetry|1078631 +bilateralism|1078733 +bilaterality|1078835 +bilaterally symmetric|1078937 +bilaterally symmetrical|1079037 +bilberry|1079169 +bilby|1079406 +bile|1079488 +bile acid|1079539 +bile duct|1079566 +bile salt|1079637 +bilestone|1079661 +bilge|1079710 +bilge keel|1079824 +bilge pump|1079849 +bilge water|1079874 +bilge well|1080059 +bilges|1080084 +bilgewater|1080184 +bilgy|1080334 +bilharzia|1080372 +bilharziasis|1080442 +biliary|1080512 +biliary ductule|1080589 +bilimbi|1080631 +bilinear|1080676 +bilingual|1080710 +bilingual dictionary|1080767 +bilious|1080816 +biliousness|1080954 +bilirubin|1081100 +bilk|1081157 +bill|1081359 +bill clinton|1082101 +bill gates|1082269 +bill haley|1082370 +bill mauldin|1082448 +bill of attainder|1082524 +bill of entry|1082564 +bill of exchange|1082592 +bill of fare|1082663 +bill of goods|1082720 +bill of health|1082790 +bill of indictment|1082863 +bill of lading|1082963 +bill of particulars|1083003 +bill of review|1083074 +bill of rights|1083105 +bill of sale|1083154 +bill poster|1083206 +bill russell|1083254 +bill sticker|1083327 +bill-me order|1082044 +billabong|1083375 +billboard|1083420 +billed|1083463 +billet|1083486 +billet doux|1083723 +billfish|1083772 +billfold|1083996 +billhook|1084046 +billiard|1084073 +billiard ball|1084101 +billiard hall|1084129 +billiard marker|1084220 +billiard parlor|1084252 +billiard parlour|1084343 +billiard player|1084434 +billiard room|1084478 +billiard saloon|1084569 +billiard table|1084660 +billiards|1084730 +billie jean king|1084760 +billie jean moffitt king|1084847 +billie the kid|1084942 +billing|1085045 +billings|1085084 +billingsgate|1085177 +billion|1085257 +billion-dollar grass|1085427 +billionaire|1085542 +billions|1085595 +billionth|1085824 +billow|1085916 +billowing|1086103 +billowy|1086176 +billy|1086218 +billy buttons|1086422 +billy club|1086452 +billy goat|1086515 +billy graham|1086569 +billy mitchell|1086676 +billy wilder|1086798 +billy-ho|1086327 +billyo|1086901 +billyoh|1086996 +billystick|1087091 +bilobate|1087154 +bilobated|1087233 +bilobed|1087311 +bilocation|1087391 +bilocular|1087420 +bilocular capsule|1087458 +biloculate|1087493 +biloxi|1087531 +bilsted|1087623 +biltong|1087728 +bimanual|1087763 +bimbo|1087799 +bimester|1087859 +bimestrial|1087911 +bimetal|1087986 +bimetallic|1088045 +bimetallic strip|1088129 +bimetallism|1088173 +bimetallist|1088221 +bimetallistic|1088253 +bimillenary|1088313 +bimillenial|1088381 +bimillennium|1088435 +bimli|1088503 +bimli hemp|1088606 +bimodal|1088709 +bimolecular|1088734 +bimonthly|1088774 +bimotored|1088925 +bin|1088972 +bin laden|1089177 +bin liner|1089248 +binary|1089279 +binary arithmetic operation|1089399 +binary code|1089481 +binary compound|1089521 +binary digit|1089573 +binary file|1089608 +binary notation|1089643 +binary number system|1089690 +binary numeration system|1089842 +binary operation|1089994 +binary star|1090076 +binary system|1090121 +binate|1090273 +binaural|1090298 +binaurally|1090375 +bind|1090420 +bind off|1090820 +bind over|1090854 +bindable|1090888 +binder|1090926 +binder board|1091164 +binder's board|1091099 +bindery|1091229 +binding|1091260 +binding energy|1091524 +bindweed|1091573 +bine|1091596 +binet|1091671 +binet-simon scale|1091718 +binful|1091789 +bing cherry|1091822 +bing crosby|1091869 +binge|1091990 +binge-eating syndrome|1092239 +binge-purge syndrome|1092294 +binge-vomit syndrome|1092388 +binger|1092482 +binghamton|1092536 +bingle|1092596 +bingo|1092632 +binnacle|1092675 +binocular|1092701 +binocular microscope|1092822 +binocular vision|1092869 +binoculars|1092937 +binomial|1093078 +binomial distribution|1093156 +binomial theorem|1093248 +binturong|1093282 +binuclear|1093346 +binucleate|1093388 +binucleated|1093441 +bio lab|1093483 +bioarm|1093610 +bioassay|1093692 +bioattack|1093729 +biocatalyst|1093816 +biocatalytic|1093858 +biochemical|1093900 +biochemical mechanism|1093938 +biochemist|1093998 +biochemistry|1094026 +biochip|1094066 +bioclimatic|1094122 +bioclimatology|1094154 +biodefence|1094190 +biodefense|1094293 +biodegradable|1094396 +biodegradable pollution|1094430 +biodiversity|1094473 +bioelectricity|1094542 +bioengineering|1094585 +bioethics|1094693 +biofeedback|1094736 +bioflavinoid|1094774 +biogenesis|1094835 +biogenetic|1094931 +biogenic|1094988 +biogenous|1095027 +biogeny|1095083 +biogeographic|1095149 +biogeographical|1095214 +biogeographical region|1095279 +biogeography|1095318 +biographer|1095367 +biographic|1095401 +biographical|1095465 +biography|1095529 +biohazard|1095609 +biohazard suit|1095672 +bioko|1095715 +biologic|1095743 +biologic attack|1095776 +biological|1095863 +biological agent|1095931 +biological attack|1095973 +biological clock|1096060 +biological defence|1096096 +biological defense|1096199 +biological group|1096302 +biological process|1096343 +biological research|1096395 +biological science|1096461 +biological terrorism|1096521 +biological time|1096605 +biological warfare|1096635 +biological warfare defence|1096722 +biological warfare defense|1096841 +biological weapon|1096960 +biologism|1097042 +biologist|1097078 +biologistic|1097137 +biology|1097174 +biology class|1097306 +biology department|1097346 +biology lab|1097416 +biology laboratory|1097543 +bioluminescence|1097670 +bioluminescent|1097708 +biomass|1097738 +biome|1097772 +biomedical|1097814 +biomedical cloning|1097860 +biomedical science|1098012 +biomedicine|1098064 +biometric authentication|1098146 +biometric identification|1098242 +biometrics|1098338 +biometry|1098402 +bionic|1098466 +bionic man|1098565 +bionic woman|1098613 +bionics|1098661 +bionomic|1098737 +bionomical|1098812 +bionomics|1098887 +biont|1098963 +biophysicist|1099005 +biophysics|1099037 +biopiracy|1099101 +biopsy|1099161 +bioremediation|1099210 +biosafety|1099274 +biosafety level|1099300 +biosafety level 1|1099342 +biosafety level 2|1099385 +biosafety level 3|1099428 +biosafety level 4|1099471 +bioscience|1099514 +bioscope|1099563 +biosphere|1099696 +biosynthesis|1099727 +biosynthetic|1099770 +biosystematic|1099801 +biosystematics|1099835 +biosystematy|1099884 +biota|1099933 +biotechnology|1100003 +bioterrorism|1100136 +biotic|1100220 +biotic community|1100254 +biotin|1100305 +biotite|1100399 +biotitic|1100431 +biotype|1100463 +biotypic|1100489 +biovular|1100515 +bioweapon|1100543 +biparous|1100625 +bipartisan|1100664 +bipartite|1100737 +bipartizan|1100810 +biped|1100883 +bipedal|1100972 +bipedalism|1101008 +bipinnate|1101044 +bipinnate leaf|1101072 +bipinnatifid|1101109 +biplane|1101140 +biplane flying fish|1101182 +bipolar|1101245 +bipolar disorder|1101373 +biprism|1101553 +biquadrate|1101585 +biquadratic|1101645 +biquadratic equation|1101827 +biquadratic polynomial|1101878 +biracial|1101964 +biradial|1101989 +biramous|1102029 +birch|1102106 +birch bark|1102255 +birch beer|1102388 +birch family|1102419 +birch leaf miner|1102493 +birch oil|1102541 +birch rod|1102605 +birch tree|1102637 +birchbark|1102668 +birchbark canoe|1102720 +birchen|1102772 +bird|1102808 +bird cherry|1104429 +bird cherry tree|1104496 +bird dog|1104563 +bird family|1104602 +bird fancier|1104630 +bird food|1104671 +bird genus|1104714 +bird louse|1104740 +bird of jove|1104786 +bird of juno|1104862 +bird of minerva|1104914 +bird of night|1105015 +bird of paradise|1105100 +bird of passage|1105268 +bird of prey|1105346 +bird parker|1105395 +bird pepper|1105512 +bird sanctuary|1105618 +bird shot|1105673 +bird vetch|1105723 +bird watcher|1105787 +bird's eye|1103461 +bird's eye view|1103540 +bird's foot|1103606 +bird's foot clover|1103644 +bird's foot trefoil|1103762 +bird's nest|1103937 +bird's nest fern|1103963 +bird's-eye|1103115 +bird's-eye bush|1103156 +bird's-eye maple|1103208 +bird's-foot fern|1103240 +bird's-foot violet|1103338 +bird's-nest fungus|1103426 +bird-footed dinosaur|1104010 +bird-nest|1104100 +bird-on-the-wing|1104245 +bird-scarer|1104348 +birdbath|1105872 +birdbrain|1105896 +birdcage|1105948 +birdcage mask|1105976 +birdcall|1106014 +birder|1106095 +birdhouse|1106132 +birdie|1106159 +birdlike|1106246 +birdlime|1106271 +birdnest|1106359 +birdnesting|1106423 +birdseed|1106457 +birdseed grass|1106500 +birdsong|1106564 +birdwatch|1106622 +birefringence|1106654 +birefringent|1106706 +biretta|1106738 +birken|1106759 +birl|1106795 +birle|1106877 +birling|1106916 +birmingham|1106976 +biro|1107117 +birr|1107172 +birth|1107286 +birth canal|1107833 +birth certificate|1107873 +birth control|1107949 +birth control device|1108014 +birth control pill|1108130 +birth defect|1108352 +birth pangs|1108483 +birth prevention|1108534 +birth rate|1108599 +birth trauma|1108749 +birth-control campaigner|1107643 +birth-control reformer|1107738 +birthday|1108824 +birthday cake|1108912 +birthday card|1108940 +birthday gift|1108977 +birthday party|1109025 +birthday present|1109055 +birthday suit|1109103 +birthing|1109167 +birthmark|1109251 +birthplace|1109295 +birthrate|1109437 +birthright|1109506 +birthroot|1109613 +birthwort|1109708 +birthwort family|1109756 +bisayan|1109856 +bisayas|1109898 +biscayne bay|1109946 +biscayne national park|1109985 +biscuit|1110054 +biscutalla laevigata|1110108 +biscutella|1110186 +bise|1110256 +bisect|1110301 +bisection|1110321 +bisectional|1110349 +biserial correlation|1110378 +biserial correlation coefficient|1110504 +biserrate|1110630 +bisexual|1110655 +bisexual person|1110743 +bisexuality|1110788 +bishkek|1110912 +bishop|1110981 +bishop berkeley|1111297 +bishop of rome|1111382 +bishop pine|1111522 +bishop ulfila|1111585 +bishop ulfilas|1111705 +bishop wulfila|1111930 +bishop's cap|1111051 +bishop's hat|1111115 +bishop's pine|1111193 +bishop's throne|1111256 +bishopric|1112051 +bishopry|1112091 +biskek|1112164 +bismarck|1112232 +bismarck archipelago|1112457 +bismarck sea|1112520 +bismarckian|1112619 +bismark|1112683 +bismuth|1112747 +bismuthal|1112807 +bismuthic|1112848 +bison|1112889 +bison bison|1112910 +bison bonasus|1112989 +bisontine|1113047 +bisque|1113071 +bissau|1113092 +bissextile day|1113157 +bissextile year|1113206 +bister|1113287 +bistered|1113318 +bistre|1113351 +bistred|1113382 +bistro|1113415 +bistroic|1113468 +bisulcate|1113522 +bit|1113562 +bit by bit|1114024 +bit field|1114109 +bit part|1114134 +bit-by-bit|1113948 +bitartrate|1114207 +bitch|1114236 +bitchery|1114430 +bitchiness|1114459 +bitchy|1114549 +bite|1114600 +bite off|1115032 +bite out|1115080 +bite plate|1115127 +biteplate|1115255 +biter|1115302 +bitewing|1115370 +bithynia|1115399 +biting|1115498 +biting louse|1115580 +biting midge|1115626 +bitingly|1115683 +bitis|1115727 +bitis arietans|1115774 +bitis gabonica|1115830 +bitmap|1115888 +bitok|1115945 +bits per inch|1115965 +bits per second|1116036 +bitstock|1116070 +bitt|1116100 +bitt pin|1116152 +bittacidae|1116174 +bitter|1116230 +bitter almond|1116739 +bitter almond oil|1116819 +bitter aloes|1116873 +bitter betch|1116937 +bitter cassava|1116978 +bitter chocolate|1117097 +bitter cress|1117168 +bitter dock|1117301 +bitter end|1117394 +bitter floom|1117435 +bitter hickory|1117513 +bitter lemon|1117632 +bitter orange|1117665 +bitter orange tree|1117837 +bitter pea|1117968 +bitter pecan|1118023 +bitter pignut|1118111 +bitter principle|1118230 +bitter salts|1118283 +bitter-bark|1116666 +bittercress|1118335 +bitterish|1118387 +bitterly|1118415 +bittern|1118481 +bitterness|1118504 +bitternut|1118755 +bitternut hickory|1118874 +bitterroot|1118993 +bitters|1119053 +bittersweet|1119306 +bittersweet chocolate|1119602 +bittersweet nightshade|1119679 +bitterweed|1119828 +bitterwood|1119933 +bitterwood tree|1120119 +bitthead|1120149 +bittie|1120171 +bitty|1120285 +bitumastic|1120399 +bitumen|1120432 +bitumenoid|1120461 +bituminise|1120503 +bituminize|1120548 +bituminoid|1120593 +bituminous|1120635 +bituminous coal|1120666 +biu-mandara|1120706 +bivalent|1120767 +bivalve|1120835 +bivalved|1120963 +bivalvia|1121026 +bivariate|1121129 +bivouac|1121156 +bivouacking|1121414 +biweekly|1121498 +biyearly|1121687 +biz|1121843 +bizarre|1121903 +bizarreness|1121997 +bize|1122069 +bizet|1122114 +bizonal|1122158 +bja|1122186 +bjs|1122296 +bk|1122406 +blab|1122471 +blab out|1122818 +blabber|1123013 +blabbermouth|1123227 +blabbermouthed|1123364 +blabby|1123489 +blaberus|1123552 +black|1123610 +black africa|1127201 +black african|1127327 +black american|1127372 +black and gold garden spider|1127451 +black and tan|1127513 +black and white|1127558 +black angus|1127730 +black apricot|1127801 +black archangel|1127877 +black art|1127989 +black ash|1128045 +black bamboo|1128122 +black bass|1128182 +black bead|1128274 +black bean|1128351 +black bear|1128395 +black bearberry|1128548 +black bee|1128622 +black beech|1128676 +black belt|1128749 +black bile|1128789 +black bindweed|1128879 +black birch|1128936 +black body|1129071 +black book|1129211 +black box|1129263 +black bread|1129329 +black bream|1129373 +black bryony|1129432 +black buck|1129489 +black buffalo|1129629 +black calla|1129692 +black caraway|1129741 +black carpet beetle|1129817 +black cat|1129871 +black catechu|1129948 +black cherry|1129996 +black cherry tree|1130119 +black cock|1130215 +black cohosh|1130339 +black comedy|1130416 +black cottonwood|1130445 +black crappie|1130606 +black currant|1130660 +black cypress pine|1130755 +black death|1130854 +black diamond|1130915 +black disease|1130964 +black duck|1131035 +black economy|1131074 +black elder|1131104 +black elderberry|1131210 +black english|1131305 +black english vernacular|1131419 +black eye|1131544 +black felt cup|1131684 +black flag|1131724 +black fly|1131773 +black forest|1131864 +black fox|1131945 +black friar|1131986 +black fritillary|1132152 +black grama|1132238 +black greasewood|1132316 +black grouse|1132388 +black guillemot|1132417 +black gum|1132467 +black hand|1132601 +black haw|1132665 +black hawk|1132804 +black hellebore|1132894 +black hemlock|1133024 +black henbane|1133103 +black hickory|1133193 +black hills|1133465 +black hole|1133603 +black hole of calcutta|1133635 +black hollander|1133710 +black horehound|1133803 +black huckleberry|1133915 +black humor|1133974 +black humour|1134031 +black ice|1134088 +black jack pershing|1134121 +black kite|1134221 +black knapweed|1134261 +black knot|1134336 +black larch|1134370 +black lead|1134447 +black letter|1134510 +black locust|1134564 +black lotion|1134652 +black lovage|1134703 +black lung|1134801 +black lung disease|1134902 +black magic|1135003 +black maire|1135059 +black mallee|1135109 +black mamba|1135181 +black man|1135232 +black mangrove|1135320 +black margate|1135414 +black maria|1135475 +black market|1135622 +black marketeer|1135706 +black marlin|1135772 +black medick|1135866 +black morel|1135969 +black moss|1136064 +black mulberry|1136189 +black music|1136248 +black muslim|1136338 +black mustard|1136391 +black nightshade|1136437 +black oak|1136532 +black olive|1136618 +black opal|1136656 +black operation|1136681 +black out|1136723 +black panther|1136867 +black panthers|1136922 +black pea|1137022 +black pepper|1137066 +black person|1137202 +black pine|1137354 +black plague|1137714 +black poplar|1137763 +black prince|1137818 +black pudding|1137876 +black race|1137935 +black racer|1137995 +black raspberry|1138053 +black rat|1138163 +black rat snake|1138209 +black rhinoceros|1138308 +black rockweed|1138368 +black root rot fungus|1138451 +black rot|1138502 +black rudderfish|1138535 +black sage|1138634 +black sally|1138720 +black salsify|1138792 +black saltwort|1138909 +black sea|1138995 +black sea bass|1139039 +black september|1139104 +black september movement|1139359 +black sheep|1139492 +black snakeroot|1139557 +black spleenwort|1139684 +black spot|1139747 +black spruce|1139781 +black squirrel|1139836 +black stork|1139874 +black sumac|1139915 +black swan|1140012 +black tai|1140052 +black tea|1140093 +black tie|1140125 +black tongue|1140237 +black tree fern|1140297 +black turnstone|1140378 +black vomit|1140436 +black vulture|1140501 +black walnut|1140625 +black walnut tree|1140726 +black wattle|1140813 +black weevil|1140864 +black whale|1140923 +black widow|1141071 +black willow|1141119 +black woman|1141185 +black-and-blue|1124696 +black-and-tan coonhound|1124734 +black-and-tan terrier|1124777 +black-and-white|1124846 +black-backed gull|1124982 +black-billed cuckoo|1125073 +black-body radiation|1125134 +black-capped chickadee|1125256 +black-crowned night heron|1125326 +black-eyed pea|1125407 +black-eyed susan|1125550 +black-eyed susan vine|1125809 +black-footed albatross|1125901 +black-footed ferret|1126003 +black-fronted bush shrike|1126092 +black-haired|1126164 +black-headed snake|1126227 +black-legged tick|1126279 +black-market|1126341 +black-necked cobra|1126405 +black-necked grebe|1126471 +black-necked stilt|1126538 +black-necked stork|1126652 +black-stem spleenwort|1126730 +black-stemmed spleenwort|1126821 +black-tailed deer|1126912 +black-tie|1127037 +black-winged stilt|1127086 +blackamoor|1141281 +blackback flounder|1141420 +blackball|1141542 +blackbeard|1141734 +blackbeetle|1141843 +blackberry|1141950 +blackberry bush|1142110 +blackberry-lily|1142034 +blackbird|1142159 +blackboard|1142308 +blackboard eraser|1142356 +blackbody|1142390 +blackbody radiation|1142449 +blackbuck|1142571 +blackburn|1142630 +blackburnian warbler|1142727 +blackcap|1142835 +blackcap raspberry|1143138 +blackcock|1143248 +blackdamp|1143291 +blacken|1143357 +blacken out|1143462 +blackened|1143500 +blackening|1143564 +blackface|1143610 +blackfish|1143654 +blackfly|1143793 +blackfoot|1143875 +blackfoot daisy|1144012 +blackfriar|1144083 +blackguard|1144167 +blackguardly|1144383 +blackhead|1144457 +blackheart|1144502 +blackheart cherry|1144597 +blacking|1144671 +blackish|1144708 +blackjack|1144737 +blackjack oak|1144930 +blacklead|1145002 +blackleg|1145027 +blacklist|1145104 +blackmail|1145168 +blackmailer|1145261 +blackmouth bass|1145346 +blackness|1145397 +blackout|1145529 +blackpoll|1145747 +blackpool|1145815 +blacksburg|1145849 +blackseed|1145885 +blackshirt|1145967 +blacksmith|1146006 +blacksnake|1146044 +blacktail|1146188 +blacktail deer|1146313 +blacktail jackrabbit|1146438 +blacktail prairie dog|1146498 +blackthorn|1146577 +blacktip shark|1146714 +blacktop|1146788 +blacktopping|1146855 +blackwall hitch|1146902 +blackwash|1146949 +blackwater|1147280 +blackwater fever|1147308 +blackwood|1147342 +blackwood tree|1147393 +bladder|1147432 +bladder campion|1147471 +bladder cherry|1147656 +bladder disorder|1147761 +bladder fern|1147802 +bladder fucus|1147829 +bladder ketmia|1147912 +bladder senna|1148016 +bladder sphincter|1148070 +bladder stone|1148172 +bladder worm|1148225 +bladderlike|1148253 +bladdernose|1148286 +bladdernut family|1148372 +bladderpod|1148465 +bladderwort|1148611 +bladderwort family|1148650 +bladderwrack|1148732 +bladdery|1148851 +blade|1148884 +blade apple|1149228 +blade bit|1149282 +blade roast|1149337 +bladed|1149370 +bladelike|1149449 +blae|1149529 +blaeberry|1149553 +blah|1149649 +blahs|1149743 +blaia zimondal|1149871 +blain|1149930 +blair|1149950 +blaise pascal|1150043 +blake|1150113 +blamable|1150161 +blame|1150237 +blameable|1150565 +blamed|1150641 +blameful|1150764 +blameless|1150840 +blamelessly|1150931 +blamelessness|1150966 +blameworthiness|1151042 +blameworthy|1151109 +blanc fixe|1151185 +blanch|1151253 +blanched|1151333 +blanching agent|1151447 +blancmange|1151510 +blanco|1151551 +bland|1151580 +bland diet|1151718 +blandfordia|1151754 +blandish|1151826 +blandishment|1151859 +blandness|1151946 +blank|1152098 +blank check|1152353 +blank cheque|1152436 +blank endorsement|1152494 +blank out|1152566 +blank shell|1152630 +blank space|1152673 +blank verse|1152732 +blanket|1152769 +blanket flower|1153041 +blanket jam|1153134 +blanket stitch|1153165 +blankly|1153196 +blankness|1153231 +blanquillo|1153260 +blantyre|1153321 +blare|1153377 +blare out|1153503 +blarina|1153547 +blarina brevicauda|1153599 +blaring|1153682 +blarney|1153753 +blarney stone|1153872 +blase|1153915 +blaspheme|1153997 +blasphemer|1154118 +blasphemous|1154158 +blasphemy|1154237 +blast|1154352 +blast furnace|1154687 +blast off|1154718 +blast trauma|1154744 +blast wave|1154790 +blasted|1154837 +blastema|1155029 +blastemal|1155052 +blastematic|1155097 +blastemic|1155142 +blaster|1155187 +blasting|1155249 +blasting cap|1155307 +blasting gelatin|1155361 +blastocele|1155405 +blastocladia|1155511 +blastocladiales|1155578 +blastocoel|1155654 +blastocoele|1155760 +blastocoelic|1155866 +blastocyst|1155914 +blastocyte|1155977 +blastocytoma|1156027 +blastoderm|1156105 +blastodermatic|1156170 +blastodermic|1156212 +blastodermic vesicle|1156254 +blastodiaceae|1156325 +blastodisc|1156397 +blastoff|1156462 +blastogenesis|1156516 +blastogenetic|1156587 +blastoma|1156643 +blastomere|1156721 +blastomeric|1156746 +blastomyces|1156771 +blastomycete|1156835 +blastomycosis|1156864 +blastomycotic|1156912 +blastoporal|1156959 +blastopore|1157013 +blastoporic|1157055 +blastosphere|1157109 +blastospheric|1157172 +blastula|1157234 +blastular|1157305 +blat|1157369 +blat out|1157428 +blatancy|1157472 +blatant|1157580 +blate|1157685 +blather|1157768 +blathering|1157960 +blatherskite|1158018 +blatta|1158065 +blatta orientalis|1158117 +blattaria|1158242 +blattella|1158332 +blattella germanica|1158393 +blattidae|1158506 +blattodea|1158569 +blaze|1158659 +blaze away|1159056 +blaze out|1159135 +blaze up|1159223 +blazer|1159277 +blazing|1159350 +blazing star|1159567 +blazon|1159719 +blazon out|1159836 +blazonry|1159876 +bleach|1159928 +bleach liquor|1160189 +bleach out|1160221 +bleached|1160357 +bleacher|1160466 +bleachers|1160491 +bleaching agent|1160546 +bleaching clay|1160609 +bleaching earth|1160658 +bleaching powder|1160707 +bleak|1160815 +bleakness|1160920 +blear|1160976 +blear-eyed|1161059 +bleary|1161110 +bleary-eyed|1161217 +bleat|1161268 +bleb|1161389 +blebbed|1161430 +blebby|1161464 +blechnaceae|1161524 +blechnum|1161588 +blechnum spicant|1161641 +bleed|1161704 +bleeder|1161922 +bleeder's disease|1162022 +bleeding|1162121 +bleeding heart|1162186 +bleeding tooth|1162319 +bleep|1162386 +blemish|1162428 +blemished|1162608 +blench|1162836 +blend|1162896 +blend in|1163273 +blende|1163443 +blended|1163490 +blended whiskey|1163626 +blended whisky|1163681 +blender|1163736 +blending|1163781 +blenheim|1163907 +blenheim spaniel|1163949 +blenniidae|1164012 +blennioid|1164073 +blennioid fish|1164139 +blennioidea|1164205 +blennius|1164272 +blennius pholis|1164325 +blenny|1164397 +blepharism|1164455 +blepharitis|1164504 +blepharospasm|1164552 +blephilia|1164600 +blephilia celiata|1164665 +blephilia hirsuta|1164736 +bleriot|1164807 +bless|1164882 +blessed|1165091 +blessed event|1165377 +blessed thistle|1165423 +blessed trinity|1165598 +blessed virgin|1165739 +blessed with|1165842 +blessedness|1165892 +blessing|1165956 +blest|1166173 +blether|1166230 +bletia|1166462 +bletia striata|1166504 +bletilla|1166586 +bletilla striata|1166658 +bleu|1166742 +bleu cheese dressing|1166775 +blewits|1166850 +blida|1166889 +bligh|1166939 +blighia|1167009 +blighia sapida|1167079 +blight|1167144 +blight canker|1167232 +blighted|1167279 +blighter|1167314 +blighty|1167452 +blighty wound|1167485 +blimp|1167535 +blimpish|1167670 +blind|1167701 +blind alley|1168283 +blind bend|1168383 +blind corner|1168426 +blind curve|1168483 +blind date|1168526 +blind drunk|1168593 +blind eel|1168824 +blind flying|1168885 +blind gentian|1168935 +blind gut|1169061 +blind landing|1169120 +blind man|1169170 +blind person|1169230 +blind side|1169290 +blind snake|1169315 +blind spot|1169370 +blind staggers|1169452 +blind stitching|1169500 +blind trust|1169542 +blinded|1169569 +blinder|1169602 +blindfold|1169647 +blindfolded|1169729 +blinding|1169776 +blindman's bluff|1169840 +blindman's buff|1169895 +blindness|1169950 +blindside|1170052 +blindworm|1170116 +blini|1170201 +blink|1170314 +blink away|1170657 +blink of an eye|1170736 +blinker|1170866 +blinking|1171018 +blinking chickweed|1171292 +blinks|1171378 +blintz|1171629 +blintze|1171745 +bliny|1171861 +blip|1171974 +bliss|1172034 +blissful|1172111 +blissfulness|1172135 +blissus|1172212 +blissus leucopterus|1172267 +blister|1172347 +blister beetle|1172532 +blister blight|1172570 +blister copper|1172615 +blister pack|1172666 +blister rust|1172733 +blistered|1172844 +blistering|1172871 +blistering agent|1173148 +blistery|1173248 +blithe|1173305 +blithely|1173383 +blitheness|1173459 +blither|1173502 +blithering|1173657 +blithesome|1173715 +blitt|1173774 +blitz|1173850 +blitzkrieg|1173980 +blitzstein|1174004 +blixen|1174081 +blizzard|1174174 +bloat|1174241 +bloated|1174340 +bloater|1174421 +blob|1174446 +bloc|1174514 +blocadren|1174572 +bloch|1174677 +block|1174720 +block anaesthesia|1176042 +block and tackle|1176201 +block anesthesia|1176233 +block capital|1176392 +block diagram|1176479 +block grant|1176510 +block letter|1176565 +block of metal|1176652 +block off|1176698 +block out|1176949 +block plane|1177092 +block up|1177155 +block vote|1177269 +blockade|1177318 +blockade-runner|1177765 +blockaded|1177795 +blockading|1177843 +blockage|1177887 +blockbuster|1178100 +blocked|1178205 +blocker|1178266 +blockhead|1178384 +blockheaded|1178527 +blockhouse|1178635 +blocking|1178675 +blocking agent|1178724 +blockish|1178808 +blocky|1178857 +bloemfontein|1178906 +blog|1178970 +blok|1179006 +bloke|1179089 +blolly|1179126 +blond|1179190 +blonde|1179378 +blonde lilian|1179559 +blondness|1179693 +blood|1179764 +blood agar|1180535 +blood bank|1180574 +blood berry|1180599 +blood blister|1180761 +blood brother|1180803 +blood brotherhood|1180866 +blood cell|1180926 +blood clam|1181001 +blood clot|1181053 +blood clotting|1181085 +blood coagulation|1181157 +blood corpuscle|1181229 +blood count|1181304 +blood cup|1181392 +blood cyst|1181460 +blood disease|1181513 +blood disorder|1181567 +blood donor|1181621 +blood dyscrasia|1181648 +blood extravasation|1181683 +blood feud|1181758 +blood flower|1181792 +blood fluke|1181866 +blood glucose|1181930 +blood group|1181973 +blood heat|1182012 +blood kinship|1182072 +blood knot|1182160 +blood lily|1182197 +blood line|1182231 +blood meal|1182438 +blood money|1182473 +blood plasma|1182536 +blood platelet|1182571 +blood poisoning|1182644 +blood pressure|1182728 +blood profile|1182807 +blood pudding|1182867 +blood relation|1182926 +blood relative|1182995 +blood sausage|1183064 +blood serum|1183123 +blood spavin|1183209 +blood sport|1183238 +blood sugar|1183275 +blood test|1183318 +blood transfusion|1183345 +blood type|1183420 +blood typing|1183459 +blood vessel|1183502 +blood-and-guts|1180143 +blood-brain barrier|1180175 +blood-filled|1180212 +blood-red|1180241 +blood-related|1180351 +blood-twig|1180426 +bloodbath|1183535 +bloodberry|1183632 +bloodcurdling|1183713 +blooded|1183770 +bloodguilt|1183820 +bloodguilty|1183857 +bloodhound|1183885 +bloodied|1183933 +bloodleaf|1183958 +bloodless|1183996 +bloodless revolution|1184181 +bloodlessly|1184282 +bloodletting|1184320 +bloodline|1184449 +bloodlust|1184646 +bloodmobile|1184672 +bloodroot|1184726 +bloodshed|1184817 +bloodshot|1184957 +bloodstain|1184986 +bloodstained|1185041 +bloodstock|1185075 +bloodstone|1185114 +bloodstream|1185166 +bloodsucker|1185193 +bloodsucking|1185267 +bloodthirstiness|1185345 +bloodthirsty|1185413 +bloodwood tree|1185467 +bloodworm|1185614 +bloodwort|1185685 +bloodwort family|1185726 +bloody|1185819 +bloody mary|1186285 +bloody shame|1186381 +bloody-minded|1186202 +bloom|1186427 +bloom of youth|1186820 +bloomer|1186874 +bloomeria|1186988 +bloomeria crocea|1187054 +bloomers|1187139 +bloomfield|1187311 +blooming|1187391 +blooming-fool begonia|1187516 +bloomington|1187592 +bloomsbury|1187630 +bloomsbury group|1187675 +blooper|1187764 +blossom|1187864 +blossom forth|1188085 +blossom out|1188143 +blossoming|1188201 +blot|1188339 +blot out|1188566 +blotch|1188633 +blotched|1188796 +blotchy|1188842 +blotted out|1188905 +blotter|1188959 +blotting paper|1189082 +blotto|1189120 +blouse|1189351 +bloviate|1189371 +blow|1189395 +blow a fuse|1190739 +blow drier|1190943 +blow dryer|1191027 +blow fly|1191111 +blow gas|1191222 +blow off|1191256 +blow one's stack|1191300 +blow out|1191504 +blow out of the water|1191695 +blow over|1191773 +blow tube|1191851 +blow up|1192026 +blow-by-blow|1190679 +blow-dry|1190709 +blowback|1192588 +blowball|1192656 +blower|1192706 +blowfish|1192833 +blowfly|1192936 +blowgun|1192966 +blowhard|1193023 +blowhole|1193112 +blowing|1193175 +blowing gas|1193203 +blowing up|1193237 +blowjob|1193313 +blowlamp|1193362 +blown|1193403 +blown up|1193689 +blown-up|1193551 +blowout|1193756 +blowpipe|1193901 +blowsy|1193996 +blowtorch|1194046 +blowtube|1194087 +blowup|1194182 +blowy|1194379 +blowzy|1194414 +blt|1194464 +blu-82|1194520 +blub|1194623 +blubber|1194677 +blubber out|1194858 +blubberer|1194930 +blubbery|1194962 +blucher|1194984 +bluchers|1195015 +bludgeon|1195066 +bludgeoner|1195147 +blue|1195206 +blue african lily|1197360 +blue air|1197481 +blue angel|1197534 +blue ash|1197608 +blue baby|1197662 +blue blood|1197698 +blue book|1197746 +blue bugle|1197858 +blue bull|1197923 +blue cardinal flower|1197998 +blue cat|1198070 +blue catfish|1198187 +blue channel cat|1198304 +blue channel catfish|1198421 +blue cheese|1198538 +blue cheese dressing|1198571 +blue chip|1198696 +blue cohosh|1198797 +blue columbine|1198945 +blue copperas|1199047 +blue crab|1199169 +blue curls|1199243 +blue daisy|1199282 +blue darter|1199344 +blue devil|1199403 +blue devils|1199559 +blue elder|1199785 +blue elderberry|1199861 +blue false indigo|1199937 +blue fig|1200008 +blue flag|1200135 +blue fleabane|1200204 +blue fox|1200250 +blue funk|1200304 +blue goose|1200339 +blue grama|1200383 +blue grass|1200460 +blue gum|1200679 +blue jack|1200764 +blue jasmine|1200848 +blue jay|1200940 +blue jean|1201000 +blue jessamine|1201045 +blue jets|1201137 +blue joke|1201185 +blue law|1201263 +blue lotus|1201285 +blue mahoe|1201370 +blue marguerite|1201448 +blue marlin|1201510 +blue mockingbird|1201566 +blue mold fungus|1201634 +blue moon|1201707 +blue mountain tea|1201746 +blue murder|1201832 +blue nile|1201893 +blue note|1201933 +blue orchid|1201975 +blue pea|1202017 +blue peafowl|1202072 +blue peter|1202130 +blue pickerel|1202181 +blue pike|1202327 +blue pikeperch|1202473 +blue pimpernel|1202619 +blue point|1202733 +blue point siamese|1202882 +blue pointed|1202949 +blue poppy|1203015 +blue racer|1203066 +blue ribbon|1203162 +blue ribbon commission|1203201 +blue ribbon committee|1203276 +blue ribbon jury|1203351 +blue ridge|1203395 +blue ridge mountains|1203527 +blue runner|1203669 +blue sage|1203716 +blue shark|1203947 +blue skullcap|1204014 +blue sky|1204128 +blue sky law|1204181 +blue star|1204207 +blue stem|1204269 +blue stone|1204424 +blue story|1204573 +blue succory|1204651 +blue thistle|1204716 +blue tit|1204811 +blue toadflax|1204865 +blue tulip|1204997 +blue vitriol|1205187 +blue wall|1205309 +blue wall of silence|1205374 +blue walleye|1205439 +blue whale|1205585 +blue-belly|1196073 +blue-black|1196157 +blue-blind|1196228 +blue-blindness|1196275 +blue-blooded|1196361 +blue-chip|1196439 +blue-chip stock|1196467 +blue-collar|1196545 +blue-eyed|1196702 +blue-eyed african daisy|1196764 +blue-eyed grass|1196869 +blue-eyed mary|1196911 +blue-green|1196989 +blue-green algae|1197092 +blue-headed vireo|1197169 +blue-pencil|1197230 +blue-ribbon|1197270 +blue-winged teal|1197307 +blueback salmon|1205670 +bluebeard|1205755 +bluebell|1205835 +blueberry|1206091 +blueberry bush|1206149 +blueberry pie|1206194 +blueberry root|1206221 +blueberry yogurt|1206369 +bluebill|1206419 +bluebird|1206469 +bluebonnet|1206535 +bluebottle|1206640 +bluefin|1206755 +bluefin tuna|1206868 +bluefish|1206976 +bluegill|1207068 +bluegrass|1207129 +bluegrass country|1207338 +bluegrass region|1207482 +bluegrass state|1207625 +bluehead|1207693 +blueing|1207741 +blueish|1207846 +bluejack oak|1207917 +bluejacket|1207978 +blueness|1208072 +bluepoint|1208159 +blueprint|1208228 +blueprint paper|1208355 +blues|1208386 +bluestem|1208900 +bluestem wheatgrass|1208974 +bluestocking|1209063 +bluestone|1209113 +bluethroat|1209142 +bluethroat pikeblenny|1209188 +bluetick|1209250 +blueweed|1209284 +bluewing|1209379 +bluff|1209432 +bluff out|1209660 +bluffer|1209693 +bluffly|1209773 +bluffness|1209824 +bluing|1209867 +bluish|1209973 +bluish green|1210044 +blunder|1210145 +blunder out|1210452 +blunderbuss|1210550 +blunderer|1210578 +blunt|1210693 +blunt file|1211106 +blunt trauma|1211131 +blunt-leaf heath|1211039 +blunted|1211177 +bluntly|1211206 +bluntness|1211257 +blur|1211396 +blurb|1211672 +blurred|1211762 +blurriness|1211850 +blurry|1211924 +blurt|1211989 +blurt out|1212087 +blush|1212185 +blush wine|1212430 +blusher|1212485 +blushful|1212589 +blushing|1212660 +blushing mushroom|1212709 +bluster|1212769 +blusterer|1213120 +blustering|1213208 +blusterous|1213261 +blustery|1213314 +bm|1213395 +bmdo|1213590 +bmr|1213712 +bmus|1213805 +bns|1213874 +bo tree|1214165 +bo's'n|1213949 +bo'sun|1214057 +boa|1214248 +boa constrictor|1214298 +boann|1214351 +boar|1214385 +boar thistle|1214439 +board|1214553 +board foot|1215086 +board game|1215226 +board measure|1215271 +board meeting|1215323 +board member|1215372 +board of appeals|1215401 +board of directors|1215460 +board of education|1215506 +board of regents|1215553 +board of selectmen|1215595 +board of trade unit|1215629 +board of trustees|1215737 +board rule|1215780 +board up|1215838 +boarder|1215862 +boarding|1215987 +boarding card|1216093 +boarding house|1216150 +boarding pass|1216275 +boarding school|1216332 +boardinghouse|1216372 +boardroom|1216416 +boards|1216456 +boardwalk|1216858 +boarfish|1216896 +boarhound|1217003 +boast|1217038 +boaster|1217269 +boastful|1217358 +boastfully|1217467 +boastfulness|1217507 +boasting|1217554 +boat|1217613 +boat bug|1217807 +boat club|1217849 +boat deck|1217915 +boat hook|1217945 +boat paddle|1217969 +boat race|1218001 +boat racing|1218025 +boat train|1218053 +boat whistle|1218094 +boat-billed heron|1217703 +boat-race|1217779 +boatbill|1218124 +boatbuilder|1218200 +boater|1218241 +boathouse|1218355 +boating|1218380 +boatload|1218429 +boatman|1218514 +boatmanship|1218554 +boatswain|1218586 +boatswain bird|1218740 +boatswain's chair|1218694 +bob|1218808 +bob about|1219199 +bob around|1219233 +bob dylan|1219267 +bob hope|1219371 +bob marley|1219437 +bob mathias|1219531 +bob under|1219606 +bob up|1219650 +bobber|1219687 +bobbin|1219727 +bobbin lace|1219761 +bobble|1219799 +bobby|1220007 +bobby fischer|1220123 +bobby jones|1220202 +bobby orr|1220287 +bobby pin|1220363 +bobby-socker|1220055 +bobbysock|1220404 +bobbysocks|1220454 +bobbysoxer|1220541 +bobcat|1220609 +bobfloat|1220660 +bobolink|1220700 +bobsled|1220798 +bobsledding|1220907 +bobsleigh|1220937 +bobtail|1221021 +bobtailed|1221146 +bobwhite|1221190 +bobwhite quail|1221239 +boccaccio|1221288 +bocce|1221341 +bocce ball|1221382 +bocci|1221430 +bocci ball|1221471 +boccie|1221519 +boccie ball|1221560 +bocconia|1221608 +bocconia frutescens|1221737 +boche|1221844 +bock|1221898 +bock beer|1221939 +bod|1221980 +bodacious|1222140 +boddhisatva|1222255 +bode|1222328 +bodega|1222486 +bodhisattva|1222513 +bodice|1222586 +bodice ripper|1222606 +bodied|1222637 +bodiless|1222753 +bodily|1222864 +bodily cavity|1222997 +bodily fluid|1223114 +bodily function|1223197 +bodily process|1223294 +bodily property|1223391 +bodily structure|1223425 +boding|1223525 +bodkin|1223613 +bodo-garo|1223710 +bodoni|1223756 +bodoni font|1223879 +body|1223956 +body and soul|1224369 +body armor|1224406 +body armour|1224504 +body bag|1224602 +body count|1224660 +body covering|1224686 +body english|1224741 +body fluid|1224806 +body forth|1224889 +body guard|1224942 +body hair|1224970 +body language|1224994 +body length|1225038 +body lotion|1225071 +body louse|1225099 +body odor|1225165 +body odour|1225244 +body of water|1225323 +body of work|1225358 +body pad|1225411 +body part|1225448 +body plethysmograph|1225478 +body politic|1225522 +body process|1225610 +body servant|1225707 +body snatcher|1225746 +body stocking|1225801 +body structure|1225837 +body substance|1225937 +body suit|1225978 +body temperature|1226030 +body type|1226090 +body waste|1226154 +body weight|1226268 +body-build|1224310 +bodybuilder|1226296 +bodybuilding|1226424 +bodyguard|1226560 +bodyless|1226647 +bodypaint|1226683 +bodywork|1226708 +boehm|1226765 +boehme|1226880 +boehmenism|1226996 +boehmeria|1227077 +boehmeria nivea|1227153 +boeotia|1227259 +boeotian|1227333 +boer|1227408 +boer war|1227462 +boethius|1227501 +boeuf|1227607 +boeuf bourguignonne|1227632 +boeuf fondu bourguignon|1227705 +boffin|1227763 +bofors gun|1227819 +bog|1227919 +bog asphodel|1228037 +bog aster|1228076 +bog bilberry|1228101 +bog candles|1228205 +bog down|1228285 +bog hemp|1228436 +bog kalmia|1228489 +bog laurel|1228557 +bog moss|1228625 +bog myrtle|1228681 +bog pimpernel|1228824 +bog plant|1228875 +bog rein orchid|1228973 +bog rhubarb|1229053 +bog rose|1229144 +bog rosemary|1229213 +bog soil|1229277 +bog spavin|1229305 +bog star|1229332 +bog whortleberry|1229399 +bogart|1229503 +bogartian|1229610 +bogbean|1229681 +bogey|1229824 +bogeyman|1229915 +boggle|1229974 +boggy|1230076 +bogie|1230141 +bogmat|1230206 +bogota|1230262 +bogus|1230322 +bogy|1230385 +bohemia|1230451 +bohemian|1230548 +bohemian waxwing|1230781 +bohme|1230852 +bohr|1230967 +bohr theory|1231039 +boidae|1231086 +boil|1231138 +boil down|1231328 +boil over|1231488 +boil smut|1231521 +boiled|1231575 +boiled dinner|1231613 +boiled egg|1231667 +boiler|1231704 +boilerplate|1231758 +boilers suit|1231820 +boilersuit|1231905 +boiling|1231955 +boiling point|1232092 +boiling water reactor|1232177 +boise|1232233 +boisterous|1232285 +boisterously|1232413 +boisterousness|1232447 +bok choi|1232511 +bok choy|1232648 +bokkos|1232785 +bokmal|1232830 +bola|1232886 +bola tie|1232947 +bolanci|1232996 +bolbitis|1233038 +bold|1233091 +bold face|1233572 +bold-faced|1233476 +boldface|1233711 +boldly|1233790 +boldness|1233819 +bole|1233948 +bolero|1234047 +boletaceae|1234154 +bolete|1234217 +boletellus|1234240 +boletellus russellii|1234301 +boletus|1234359 +boletus chrysenteron|1234411 +boletus edulis|1234469 +boletus frostii|1234515 +boletus luridus|1234578 +boletus mirabilis|1234626 +boletus pallidus|1234678 +boletus pulcherrimus|1234728 +boletus pulverulentus|1234786 +boletus roxanae|1234846 +boletus subvelutipes|1234894 +boletus variipes|1234952 +boletus zelleri|1235002 +boleyn|1235050 +bolide|1235091 +bolingbroke|1235137 +bolivar|1235235 +bolivia|1235373 +bolivian|1235496 +bolivian monetary unit|1235598 +boliviano|1235667 +boll|1235709 +boll weevil|1235793 +bollard|1235840 +bollix|1235867 +bollix up|1236075 +bollock|1236283 +bollocks|1236431 +bollocks up|1236639 +bollworm|1236847 +bollywood|1236877 +bolo|1236946 +bolo knife|1237019 +bolo tie|1237050 +bologna|1237099 +bologna sausage|1237184 +bolognese pasta sauce|1237241 +bologram|1237300 +bolograph|1237338 +bolographic|1237376 +bolometer|1237406 +bolometric|1237480 +boloney|1237554 +bolshevik|1237704 +bolshevise|1237862 +bolshevism|1237933 +bolshevist|1237997 +bolshevistic|1238105 +bolshevize|1238170 +bolshie|1238241 +bolshy|1238294 +bolster|1238327 +bolster up|1238470 +bolt|1238518 +bolt cutter|1239005 +bolt down|1239054 +bolt of lightning|1239184 +bolt out|1239238 +bolt-hole|1238981 +bolted|1239311 +bolti|1239371 +boltonia|1239424 +boltzmann|1239486 +boltzmann distribution law|1239602 +boltzmann's constant|1239542 +bolus|1239717 +bolzano|1239778 +bomarea|1239832 +bomarea edulis|1239892 +bomarea salsilla|1239945 +bomb|1240002 +bomb blast|1240209 +bomb calorimeter|1240235 +bomb out|1240278 +bomb rack|1240309 +bomb shelter|1240336 +bomb site|1240393 +bomb up|1240427 +bombacaceae|1240468 +bombard|1240543 +bombardier|1240625 +bombardier beetle|1240694 +bombardment|1240750 +bombardon|1240883 +bombast|1240962 +bombastic|1241056 +bombastically|1241125 +bombax|1241174 +bombax ceiba|1241232 +bombax malabarica|1241317 +bombay|1241407 +bombay ceiba|1241466 +bombay hemp|1241617 +bomber|1241732 +bomber aircrew|1242005 +bomber crew|1242058 +bomber harris|1242111 +bomber jacket|1242219 +bombie|1242249 +bombilate|1242289 +bombilation|1242332 +bombina|1242376 +bombina bombina|1242431 +bombinate|1242539 +bombination|1242582 +bombing|1242626 +bombing run|1242701 +bomblet|1242742 +bombproof|1242780 +bombshell|1242868 +bombsight|1242951 +bombus|1242976 +bombycid|1243028 +bombycid moth|1243079 +bombycidae|1243130 +bombycilla|1243196 +bombycilla cedrorun|1243255 +bombycilla garrulus|1243336 +bombycillidae|1243410 +bombyliidae|1243480 +bombyx|1243549 +bombyx mori|1243601 +bon mot|1243694 +bon ton|1243752 +bon vivant|1243829 +bon voyage|1243904 +bona fide|1243959 +bonaire|1244041 +bonanza|1244073 +bonaparte|1244212 +bonasa|1244329 +bonasa umbellus|1244376 +bonavist|1244448 +bonbon|1244544 +bonce|1244566 +bond|1244622 +bond certificate|1245493 +bond issue|1245589 +bond paper|1245631 +bond rating|1245670 +bond servant|1245719 +bond trading|1245747 +bond-trading activity|1245441 +bondable|1245799 +bondage|1245853 +bonded|1245983 +bonded labor|1246035 +bonderise|1246099 +bonderize|1246141 +bondholder|1246183 +bonding|1246212 +bondmaid|1246324 +bondman|1246410 +bondsman|1246471 +bondswoman|1246567 +bonduc|1246685 +bonduc nut|1246819 +bonduc tree|1246867 +bondwoman|1246942 +bone|1247027 +bone age|1247694 +bone ash|1247716 +bone black|1247738 +bone cell|1247802 +bone char|1247850 +bone china|1247914 +bone dry|1247940 +bone fat|1248051 +bone marrow|1248080 +bone of contention|1248177 +bone oil|1248225 +bone spavin|1248285 +bone up|1248313 +bone-ash cup|1247291 +bone-covered|1247341 +bone-dry|1247380 +bone-forming cell|1247491 +bone-headed dinosaur|1247559 +bone-idle|1247626 +bone-lazy|1247660 +boned|1248403 +bonefish|1248453 +bonehead|1248518 +boneheaded|1248661 +boneless|1248769 +bonelet|1248810 +bonelike|1248853 +bonemeal|1248882 +boner|1248946 +bones|1249046 +boneset|1249272 +bonesetter|1249415 +boneshaker|1249486 +bonete|1249522 +boney|1249559 +bonfire|1249612 +bonfire night|1249643 +bong|1249708 +bongo|1249752 +bongo drum|1249862 +bonheur|1249914 +bonhoeffer|1249941 +bonhomie|1250038 +boniface|1250125 +bonito|1250262 +bonito shark|1250397 +bonk|1250463 +bonkers|1250741 +bonn|1250922 +bonnet|1250970 +bonnet macaque|1251098 +bonnet monkey|1251187 +bonnet shark|1251276 +bonnethead|1251363 +bonney|1251450 +bonnie|1251545 +bonny|1251589 +bonobo|1251633 +bonsai|1251712 +bontemps|1251733 +bonus|1251796 +bonxie|1251861 +bony|1251889 +bony fish|1252060 +bony labyrinth|1252084 +bonyness|1252207 +bonzer|1252275 +boo|1252305 +boo-boo|1252429 +boob|1252529 +boob tube|1252734 +booboisie|1252862 +booby|1252921 +booby hatch|1253000 +booby prize|1253237 +booby trap|1253271 +boocercus eurycerus|1253353 +boodle|1253439 +booger|1253636 +boogeyman|1253725 +boogie|1253784 +boogie-woogie|1253825 +boojum tree|1253866 +book|1253943 +book agent|1254629 +book bag|1254658 +book binding|1254680 +book fair|1254799 +book jacket|1254941 +book louse|1255056 +book lover|1255222 +book lung|1255378 +book matches|1255415 +book of account|1255479 +book of amos|1255542 +book of baruch|1255587 +book of common prayer|1255638 +book of daniel|1255704 +book of deuteronomy|1255782 +book of ecclesiastes|1255848 +book of esther|1255917 +book of exodus|1255968 +book of ezekiel|1256019 +book of ezra|1256082 +book of facts|1256127 +book of genesis|1256195 +book of habakkuk|1256249 +book of haggai|1256314 +book of hosea|1256372 +book of instructions|1256420 +book of isaiah|1256512 +book of jeremiah|1256563 +book of job|1256620 +book of joel|1256662 +book of jonah|1256707 +book of joshua|1256755 +book of judges|1256812 +book of judith|1256863 +book of knowledge|1256914 +book of lamentations|1256991 +book of leviticus|1257060 +book of malachi|1257120 +book of maps|1257184 +book of micah|1257281 +book of mormon|1257337 +book of nahum|1257455 +book of nehemiah|1257503 +book of numbers|1257560 +book of obadiah|1257614 +book of proverbs|1257675 +book of psalms|1257732 +book of revelation|1257836 +book of ruth|1257946 +book of susanna|1257991 +book of the prophet daniel|1258045 +book of tobit|1258135 +book of zachariah|1258183 +book of zephaniah|1258253 +book review|1258323 +book scorpion|1258391 +book seller|1258464 +book token|1258553 +book up|1258588 +book value|1258613 +bookable|1258639 +bookbinder|1258666 +bookbinding|1258725 +bookcase|1258757 +bookclub|1258825 +bookdealer|1258879 +booked|1258933 +bookend|1258976 +booker|1259001 +booker t. washington|1259037 +booker taliaferro washington|1259147 +bookfair|1259265 +bookie|1259327 +booking|1259361 +booking agent|1259446 +booking clerk|1259482 +bookish|1259559 +bookishness|1259595 +bookkeeper|1259629 +bookkeeping|1259683 +booklet|1259736 +booklouse|1259791 +booklover|1259876 +bookmaker|1259951 +bookmark|1260005 +bookmarker|1260041 +bookmobile|1260077 +bookplate|1260101 +bookseller|1260158 +bookshelf|1260195 +bookshop|1260220 +bookstall|1260269 +bookstore|1260318 +bookworm|1260367 +boole|1260450 +boolean|1260524 +boolean algebra|1260562 +boolean logic|1260664 +boolean operation|1260764 +boom|1260846 +boom box|1261194 +boom out|1261268 +boom town|1261300 +boomer|1261324 +boomerang|1261405 +booming|1261569 +boon|1261677 +boondocks|1261736 +boondoggle|1261808 +boone|1261871 +boor|1261944 +boorish|1262035 +boorishness|1262108 +boost|1262180 +boost up|1262484 +booster|1262510 +booster amplifier|1262857 +booster dose|1262966 +booster rocket|1263026 +booster shot|1263141 +booster stations|1263201 +booster unit|1263310 +boosters|1263425 +boot|1263911 +boot camp|1264221 +boot maker|1264275 +boot out|1264404 +boot sale|1264556 +bootblack|1264620 +bootboys|1264666 +booted|1264711 +booted armillaria|1264746 +bootee|1264800 +bootees|1264862 +bootes|1264976 +booth|1265013 +boothose|1265188 +bootie|1265215 +booties|1265277 +bootjack|1265391 +bootlace|1265416 +bootleg|1265446 +bootlegger|1265624 +bootlegging|1265694 +bootless|1265786 +bootlick|1265850 +bootlicker|1265925 +bootlicking|1266037 +bootmaker|1266108 +bootstrap|1266156 +boott's goldenrod|1266204 +booty|1266259 +booyong|1266334 +booze|1266484 +booze-up|1266667 +boozer|1266728 +boozing|1266824 +boozy|1266908 +bop|1266977 +bopeep|1267170 +boracic|1267208 +boracic acid|1267255 +borage|1267293 +borage family|1267371 +boraginaceae|1267440 +borago|1267522 +borago officinalis|1267570 +borassus|1267655 +borassus flabellifer|1267727 +borate|1267848 +borated|1267869 +borax|1267893 +bordeaux|1267916 +bordeaux mixture|1268017 +bordeaux wine|1268128 +bordelaise|1268184 +bordello|1268210 +border|1268348 +border collie|1268828 +border district|1268897 +border on|1268998 +border patrol|1269049 +border patrolman|1269079 +border terrier|1269138 +bordered|1269185 +borderer|1269287 +borderland|1269342 +borderline|1269443 +borderline intelligence|1269548 +borderline schizophrenia|1269611 +bore|1269744 +bore bit|1270764 +bore-hole|1270699 +boreal|1270817 +boreas|1270922 +borecole|1271015 +bored|1271111 +boredom|1271170 +borer|1271216 +borges|1271299 +borgia|1271367 +boric|1271776 +boric acid|1271823 +boring|1271889 +boringly|1272059 +boringness|1272097 +boris fyodorovich godunov|1272145 +boris godunov|1272243 +boris karloff|1272329 +boris leonidovich pasternak|1272437 +boris pasternak|1272542 +boris spassky|1272635 +boris vasilevich spassky|1272718 +born|1272812 +born-again|1272954 +born-again christian|1273002 +borne in upon|1273063 +bornean|1273096 +borneo|1273131 +bornholm disease|1273172 +bornite|1273300 +borodin|1273337 +borodino|1273419 +boron|1273461 +boron chamber|1273519 +boron counter tube|1273577 +boron trifluoride|1273652 +boronic|1273688 +borosilicate|1273729 +borough|1273756 +borough english|1273876 +borrelia|1273938 +borrelia burgdorferi|1273979 +borrow|1274077 +borrow pit|1274153 +borrower|1274184 +borrower's card|1274221 +borrowing|1274278 +borrowing cost|1274356 +borsch|1274385 +borscht|1274443 +borscht belt|1274501 +borscht circuit|1274603 +borsh|1274705 +borshch|1274763 +borsht|1274821 +borsht belt|1274879 +borsht circuit|1274981 +borstal|1275083 +bortsch|1275150 +borzoi|1275208 +bos|1275252 +bos banteng|1275400 +bos grunniens|1275466 +bos indicus|1275518 +bos primigenius|1275581 +bos taurus|1275646 +bos'n|1275292 +bosc|1275706 +bosch|1275725 +bose|1275784 +bose-einstein statistics|1275859 +boselaphus|1275936 +boselaphus tragocamelus|1275997 +bosh|1276096 +bosie|1276246 +bosie ball|1276297 +bosin's disease|1276348 +bosk|1276625 +boskop man|1276657 +boskopoid|1276701 +bosky|1276732 +bosna i hercegovina|1276761 +bosnia|1276927 +bosnia and herzegovina|1277245 +bosnia-herzegovina|1277080 +bosnian|1277414 +bosom|1277471 +bosom of abraham|1277767 +bosomed|1277833 +bosomy|1277859 +boson|1277962 +bosporus|1277986 +bosporus bridge|1278026 +boss|1278085 +boss around|1278358 +boss-eyed|1278328 +bossism|1278453 +bossy|1278481 +boston|1278569 +boston baked beans|1278670 +boston brown bread|1278722 +boston bull|1278812 +boston cream pie|1278868 +boston fern|1278916 +boston harbor|1279015 +boston ivy|1279081 +boston lettuce|1279158 +boston rocker|1279216 +boston tea party|1279274 +boston terrier|1279345 +bostonian|1279404 +bosun|1279442 +bosun's chair|1279550 +boswell|1279596 +boswellia|1279718 +boswellia carteri|1279781 +boswellia serrata|1279839 +bosworth field|1279903 +bot|1279957 +bota|1279976 +botanic|1280002 +botanical|1280055 +botanical garden|1280108 +botanical medicine|1280166 +botanise|1280230 +botanist|1280303 +botanize|1280374 +botany|1280447 +botany bay fig|1280500 +botaurus|1280608 +botaurus lentiginosus|1280661 +botaurus stellaris|1280752 +botch|1280824 +botch up|1281124 +botched|1281332 +botcher|1281367 +botchy|1281482 +botfly|1281529 +both|1281552 +bother|1281571 +botheration|1282130 +bothered|1282305 +bothersome|1282349 +bothidae|1282489 +bothrops|1282544 +bothrops atrops|1282600 +botonee|1282664 +botonnee|1282708 +botox|1282752 +botrychium|1282807 +botrychium lunaria|1282866 +botrychium matricariifolium|1282949 +botrychium multifidum|1283070 +botrychium virginianum|1283154 +botryoid|1283237 +botryoidal|1283279 +botswana|1283321 +botswana monetary unit|1283400 +botswanan|1283469 +botticelli|1283528 +bottle|1283623 +bottle bank|1284427 +bottle bill|1284462 +bottle collection|1284496 +bottle gentian|1284639 +bottle gourd|1284719 +bottle grass|1284787 +bottle green|1284993 +bottle opener|1285040 +bottle screw|1285070 +bottle tree|1285116 +bottle up|1285235 +bottle-cordk|1283728 +bottle-fed|1283764 +bottle-feed|1283795 +bottle-grass|1283911 +bottle-green|1284117 +bottle-nosed dolphin|1284149 +bottle-nosed whale|1284217 +bottle-tree|1284308 +bottlebrush|1285306 +bottlebrush buckeye|1285333 +bottlecap|1285422 +bottled gas|1285458 +bottled water|1285519 +bottlefeed|1285557 +bottleful|1285587 +bottleneck|1285626 +bottlenose|1285764 +bottlenose dolphin|1285910 +bottlenose whale|1285978 +bottler|1286069 +bottling plant|1286128 +bottom|1286181 +bottom dog|1286902 +bottom feeder|1286968 +bottom fermentation|1287044 +bottom fermenting yeast|1287123 +bottom fish|1287171 +bottom line|1287213 +bottom of the inning|1287252 +bottom out|1287305 +bottom quark|1287413 +bottom rot|1287454 +bottom rot fungus|1287488 +bottom round|1287539 +bottom-up|1286873 +bottomed|1287571 +bottomland|1287694 +bottomless|1287738 +bottomlessness|1287825 +bottommost|1287882 +botuliform|1287930 +botulin|1287957 +botulinal|1288056 +botulinum|1288111 +botulinum toxin|1288199 +botulinum toxin a|1288246 +botulinus|1288313 +botulinus toxin|1288401 +botulism|1288500 +botulismotoxin|1288559 +bouchee|1288658 +boucle|1288694 +boudoir|1288740 +bouffant|1288798 +bouffe|1288828 +bougainvillaea|1288889 +bougainville|1288995 +bougainville trench|1289107 +bougainvillea|1289182 +bougainvillea glabra|1289210 +bough|1289288 +boughed|1289320 +boughless|1289359 +boughten|1289404 +bouillabaisse|1289448 +bouillon|1289481 +bouillon cube|1289505 +boulder|1289587 +boulder clay|1289643 +boulder fern|1289680 +bouldered|1289775 +bouldery|1289830 +boule|1289885 +boulevard|1289926 +boulez|1289959 +boulle|1290005 +bounce|1290046 +bounce back|1290546 +bounce out|1290621 +bouncer|1290648 +bounciness|1290683 +bouncing|1290726 +bouncing bess|1290845 +bouncing bet|1290944 +bouncing betty|1291042 +bouncing putty|1291108 +bouncy|1291158 +bound|1291263 +bound form|1292468 +bound morpheme|1292512 +bound off|1292556 +bound up|1292686 +boundary|1292751 +boundary condition|1292842 +boundary layer|1292905 +boundary line|1292949 +bounded|1293030 +bounded interval|1293064 +boundedness|1293115 +bounden|1293164 +bounder|1293192 +bounderish|1293291 +boundless|1293362 +boundlessly|1293410 +boundlessness|1293454 +bounds|1293537 +bounteous|1293734 +bounteously|1293833 +bounteousness|1293889 +bountied|1293943 +bountiful|1293971 +bountifully|1294096 +bountifulness|1294152 +bounty|1294226 +bounty hunter|1294400 +bouquet|1294461 +bourbon|1294603 +bourbon dynasty|1294768 +bourdon|1294825 +bourgeois|1294875 +bourgeoisie|1295067 +bourgeon|1295141 +bourgogne|1295216 +bourguignon|1295268 +bourguignon sauce|1295328 +bourn|1295388 +bourne|1295455 +bourse|1295521 +bourtree|1295590 +bouse|1295696 +boustrophedon|1295737 +boustrophedonic|1295787 +bout|1295838 +bouteloua|1295975 +bouteloua eriopoda|1296050 +bouteloua gracilis|1296147 +boutique|1296243 +boutonneuse fever|1296283 +boutonniere|1296365 +bouvier des flandres|1296396 +bouviers des flandres|1296501 +bouvines|1296607 +bouyei|1296649 +bovid|1296681 +bovidae|1296731 +bovinae|1296785 +bovine|1296842 +bovine spongiform encephalitis|1296901 +bovini|1296976 +bovril|1297018 +bow|1297067 +bow and arrow|1297612 +bow down|1297660 +bow leg|1297739 +bow legs|1297902 +bow out|1298134 +bow tie|1298230 +bow window|1298259 +bow wood|1298297 +bow-wow|1297523 +bowditch|1298382 +bowdler|1298475 +bowdlerisation|1298538 +bowdlerise|1298664 +bowdlerism|1298781 +bowdlerization|1298833 +bowdlerize|1298959 +bowed|1299076 +bowed down|1299260 +bowed stringed instrument|1299327 +bowel|1299389 +bowel movement|1299440 +bowelless|1299505 +bowels|1299562 +bower|1299650 +bower actinidia|1299749 +bowerbird|1299806 +bowery|1299852 +bowfin|1299895 +bowfront|1299957 +bowhead|1299983 +bowhead whale|1300078 +bowie|1300173 +bowie knife|1300224 +bowiea|1300263 +bowiea volubilis|1300320 +bowing|1300400 +bowknot|1300484 +bowl|1300510 +bowl over|1300790 +bowl-shaped|1300761 +bowlder|1300913 +bowleg|1300949 +bowlegged|1301082 +bowler|1301139 +bowler hat|1301240 +bowlful|1301298 +bowline|1301333 +bowline knot|1301373 +bowling|1301413 +bowling alley|1301463 +bowling ball|1301535 +bowling equipment|1301562 +bowling green|1301604 +bowling league|1301701 +bowling pin|1301743 +bowling score|1301786 +bowling shoe|1301815 +bowls|1301842 +bowman|1302119 +bowman's capsule|1302149 +bowse|1302251 +bowsprit|1302292 +bowstring|1302315 +bowstring hemp|1302339 +box|1302456 +box beam|1302783 +box calf|1302817 +box camera|1302849 +box coat|1302906 +box elder|1302929 +box end wrench|1302984 +box family|1303034 +box girder|1303112 +box huckleberry|1303146 +box in|1303206 +box kite|1303253 +box kodak|1303276 +box office|1303343 +box pleat|1303443 +box seat|1303474 +box spring|1303513 +box tortoise|1303543 +box turtle|1303583 +box up|1303623 +box white oak|1303670 +box wrench|1303751 +box-number|1302747 +boxberry|1303801 +boxcar|1303924 +boxcars|1303952 +boxed|1304015 +boxed in|1304195 +boxed-in|1304073 +boxer|1304317 +boxers|1304484 +boxershorts|1304728 +boxfish|1304795 +boxful|1304851 +boxing|1304884 +boxing day|1304991 +boxing equipment|1305053 +boxing glove|1305111 +boxing match|1305156 +boxing ring|1305184 +boxlike|1305221 +boxthorn|1305267 +boxwood|1305311 +boxy|1305371 +boy|1305417 +boy scout|1305533 +boy scouts|1305604 +boy scouts of america|1305745 +boy wonder|1305815 +boycott|1305860 +boyfriend|1305930 +boyhood|1305998 +boyish|1306025 +boyishly|1306077 +boyishness|1306102 +boykinia|1306134 +boykinia elata|1306194 +boykinia occidentalis|1306293 +boyle|1306399 +boyle's law|1306478 +boylike|1306544 +boyne|1306611 +boys-and-girls|1306663 +boysenberry|1306754 +boysenberry bush|1306855 +boytrose|1306943 +bozeman|1306985 +bozo|1307015 +bph|1307152 +bpi|1307210 +bpm|1307281 +bps|1307344 +br|1307378 +bra|1307562 +brabancon griffon|1307606 +brabble|1307692 +brace|1307776 +brace and bit|1308367 +brace oneself for|1308396 +brace up|1308496 +brace wrench|1308551 +braced|1308588 +bracelet|1308641 +bracelet wood|1308742 +bracer|1308797 +bracero|1308906 +braces|1308960 +brachial|1309425 +brachial artery|1309447 +brachial plexus|1309528 +brachial vein|1309584 +brachiate|1309653 +brachiation|1309711 +brachinus|1309750 +brachiocephalic vein|1309811 +brachiopod|1309909 +brachiopoda|1309990 +brachiopodous|1310049 +brachium|1310089 +brachycephalic|1310136 +brachychiton|1310254 +brachychiton acerifolius|1310330 +brachychiton australis|1310461 +brachychiton populneus|1310575 +brachychiton rupestris|1310674 +brachycome|1310820 +brachycome iberidifolia|1310888 +brachycranial|1310969 +brachycranic|1311072 +brachydactylia|1311175 +brachydactylic|1311255 +brachydactylous|1311304 +brachypterous|1311353 +brachystegia|1311396 +brachystegia speciformis|1311468 +brachytactyly|1311538 +brachyura|1311618 +brachyuran|1311679 +brachyurous|1311710 +bracing|1311743 +bracken|1311893 +bracket|1311988 +bracket fungus|1312205 +bracket out|1312277 +bracketed blenny|1312318 +brackish|1312376 +brackishness|1312405 +bract|1312437 +bracteal|1312457 +bracteate|1312479 +bracted|1312521 +bracteolate|1312553 +bracteole|1312579 +bractlet|1312613 +brad|1312647 +bradawl|1312691 +bradbury|1312720 +bradford|1312795 +bradley|1312856 +bradley method|1313099 +bradley method of childbirth|1313186 +bradley's spleenwort|1313018 +bradstreet|1313287 +brady|1313362 +bradycardia|1313503 +bradypodidae|1313554 +bradypus|1313623 +bradypus tridactylus|1313678 +brae|1313766 +brag|1313789 +braga|1314057 +brage|1314107 +bragg|1314146 +braggadocio|1314202 +braggart|1314295 +bragger|1314482 +bragging|1314571 +braggy|1314777 +bragi|1314886 +brahma|1314925 +brahman|1315009 +brahmana|1315175 +brahmanism|1315224 +brahmaputra|1315346 +brahmaputra river|1315403 +brahmi|1315466 +brahmin|1315496 +brahminic|1315662 +brahminical|1315724 +brahminism|1315786 +brahms|1315908 +brahui|1315976 +braid|1316039 +braided|1316272 +braiding|1316307 +brail|1316370 +braille|1316433 +brain|1316551 +brain cell|1317280 +brain coral|1317318 +brain dead|1317379 +brain death|1317404 +brain disease|1317446 +brain disorder|1317559 +brain doctor|1317672 +brain drain|1317736 +brain fever|1317763 +brain mushroom|1317860 +brain science|1317930 +brain stem|1317966 +brain sugar|1318186 +brain surgeon|1318236 +brain surgery|1318307 +brain truster|1318403 +brain tumor|1318466 +brain tumour|1318522 +brain wave|1318578 +brain-fag|1316835 +brain-stem|1316883 +brain-teaser|1317103 +brain-worker|1317157 +braincase|1318723 +brainchild|1318767 +brainish|1318818 +brainless|1318893 +brainpan|1318942 +brainpower|1318986 +brainsick|1319072 +brainstem|1319163 +brainstorm|1319221 +brainstorming|1319336 +brainwash|1319372 +brainwashed|1319420 +brainwashing|1319453 +brainwave|1319490 +brainworker|1319625 +brainy|1319667 +braise|1319721 +braised|1319742 +braising|1319766 +brake|1319812 +brake band|1319988 +brake cylinder|1320013 +brake disk|1320102 +brake drum|1320132 +brake failure|1320166 +brake light|1320217 +brake lining|1320262 +brake pads|1320291 +brake pedal|1320332 +brake shoe|1320389 +brake system|1320440 +brakeman|1320475 +brakes|1320549 +braky|1320747 +braless|1320797 +bram stoker|1320846 +brama|1320915 +brama raii|1320959 +bramante|1321014 +bramble|1321101 +bramble bush|1321145 +brambling|1321175 +brambly|1321225 +bramidae|1321255 +bramley's seedling|1321310 +bran|1321371 +bran flake|1321499 +bran muffin|1321542 +bran-new|1321438 +branch|1321574 +branch line|1321885 +branch of knowledge|1321950 +branch out|1322094 +branch water|1322150 +branched|1322178 +branched chain|1322301 +branched chain ketoaciduria|1322336 +branchia|1322597 +branchial|1322638 +branchial arch|1322674 +branchial cleft|1322798 +branchiate|1322925 +branching|1322963 +branchiobdella|1323089 +branchiobdellidae|1323160 +branchiopod|1323242 +branchiopod crustacean|1323352 +branchiopoda|1323421 +branchiopodan|1323484 +branchiopodous|1323592 +branchiostegidae|1323647 +branchiostomidae|1323726 +branchiura|1323840 +branchless|1323901 +branchlet|1323964 +branchy|1324001 +brancusi|1324219 +brand|1324306 +brand name|1324742 +brand-name drug|1324603 +brand-new|1324650 +brand-newness|1324711 +branded|1324791 +brandenburg|1324835 +branding|1324940 +branding iron|1325000 +brandish|1325038 +brandt|1325150 +brandy|1325218 +brandy glass|1325307 +brandy nose|1325373 +brandy snifter|1325507 +brandyball|1325573 +brandysnap|1325599 +brant|1325658 +brant goose|1325709 +branta|1325760 +branta bernicla|1325807 +branta canadensis|1325903 +branta leucopsis|1325989 +braque|1326062 +brasenia|1326108 +brasenia schreberi|1326172 +brash|1326256 +brash oak|1326326 +brashly|1326407 +brashness|1326440 +brasier|1326591 +brasil|1326630 +brasilia|1326735 +brass|1326815 +brass band|1327135 +brass buttons|1327160 +brass hat|1327211 +brass knuckles|1327255 +brass knucks|1327348 +brass monkey|1327441 +brass ring|1327483 +brass section|1327522 +brassaia actinophylla|1327559 +brassard|1327661 +brassavola|1327743 +brassbound|1327789 +brasserie|1327842 +brassia|1327898 +brassia lawrenceana|1327967 +brassia verrucosa|1328056 +brassica|1328141 +brassica hirta|1328205 +brassica juncea|1328279 +brassica kaber|1328381 +brassica napus|1328490 +brassica napus napobrassica|1328548 +brassica nigra|1328686 +brassica oleracea|1328747 +brassica oleracea acephala|1328911 +brassica oleracea botrytis|1329034 +brassica oleracea capitata|1329136 +brassica oleracea gemmifera|1329276 +brassica oleracea gongylodes|1329384 +brassica oleracea italica|1329487 +brassica perviridis|1329584 +brassica rapa|1329713 +brassica rapa chinensis|1329783 +brassica rapa pekinensis|1329915 +brassica rapa perviridis|1330045 +brassica rapa ruvo|1330179 +brassicaceae|1330281 +brassie|1330403 +brassiere|1330425 +brasslike|1330469 +brassy|1330515 +brat|1330750 +bratislava|1330882 +brattice|1330959 +brattish|1331032 +brattle|1331066 +brattleboro|1331122 +bratty|1331160 +bratwurst|1331194 +braun|1331231 +braun's holly fern|1331404 +braunschweig|1331502 +bravado|1331576 +bravais lattice|1331621 +brave|1331700 +brave out|1332109 +bravely|1332177 +bravery|1332206 +braving|1332281 +bravo|1332379 +bravura|1332492 +braw|1332520 +brawl|1332553 +brawler|1332684 +brawling|1332748 +brawn|1332786 +brawny|1332823 +braxton bragg|1333002 +braxton-hicks contraction|1332877 +bray|1333066 +braze|1333244 +brazen|1333266 +brazen-faced|1333403 +brazenness|1333499 +brazier|1333559 +brazil|1333598 +brazil nut|1333798 +brazil-nut tree|1333732 +brazilian|1333889 +brazilian capital|1333994 +brazilian guava|1334083 +brazilian ironwood|1334153 +brazilian monetary unit|1334205 +brazilian pepper tree|1334276 +brazilian potato tree|1334359 +brazilian rosewood|1334471 +brazilian trumpeter|1334580 +brazilwood|1334657 +brazos|1334752 +brazos river|1334794 +brazzaville|1334842 +breach|1334892 +breach of contract|1335106 +breach of duty|1335141 +breach of promise|1335172 +breach of the covenant of warranty|1335218 +breach of the peace|1335281 +breach of trust|1335449 +breach of trust with fraudulent intent|1335493 +breach of warranty|1335582 +breached|1335629 +bread|1335654 +bread and butter|1336034 +bread and butter pickle|1336111 +bread board|1336157 +bread dough|1336276 +bread knife|1336303 +bread line|1336330 +bread maker|1336460 +bread mold|1336517 +bread sauce|1336565 +bread-bin|1335852 +bread-stick|1335890 +breadbasket|1336592 +breadboard|1336692 +breadbox|1336730 +breadcrumb|1336768 +breadfruit|1336794 +breadfruit tree|1336900 +breadline|1336986 +breadroot|1337035 +breadstick|1337143 +breadstuff|1337206 +breadth|1337288 +breadth index|1337359 +breadthways|1337417 +breadthwise|1337459 +breadwinner|1337501 +break|1337541 +break apart|1341199 +break away|1341374 +break bread|1341762 +break camp|1341787 +break dance|1341837 +break dancing|1342074 +break down|1342145 +break even|1342482 +break in|1342519 +break into|1342818 +break loose|1342881 +break of day|1342984 +break of serve|1343122 +break of the day|1343158 +break off|1343296 +break one's back|1343517 +break open|1343587 +break out|1343747 +break seal|1343927 +break short|1343952 +break through|1344009 +break up|1344133 +break water|1345004 +break wind|1345034 +break with|1345093 +break-axe|1340814 +break-dance|1340956 +break-in|1341136 +breakability|1345157 +breakable|1345203 +breakableness|1345330 +breakage|1345382 +breakaway|1345483 +breakax|1345579 +breakaxe|1345640 +breakbone fever|1345701 +breakdown|1345777 +breaker|1345937 +breaker point|1346065 +breakers|1346129 +breakfast|1346311 +breakfast area|1346370 +breakfast food|1346414 +breakfast nook|1346443 +breakfast table|1346487 +breakfast time|1346518 +breaking|1346551 +breaking and entering|1346663 +breaking away|1346726 +breaking ball|1346822 +breaking off|1346884 +breaking point|1346950 +breaking wind|1347013 +breakneck|1347159 +breakout|1347195 +breakstone|1347281 +breakthrough|1347342 +breakup|1347470 +breakwater|1347589 +bream|1347657 +breast|1347854 +breast cancer|1348180 +breast drill|1348213 +breast feeding|1348241 +breast implant|1348288 +breast of lamb|1348320 +breast of veal|1348374 +breast pocket|1348420 +breast-deep|1348070 +breast-fed|1348102 +breast-high|1348148 +breastbone|1348450 +breasted|1348486 +breastfeed|1348521 +breastless|1348609 +breastpin|1348640 +breastplate|1348677 +breaststroke|1348773 +breaststroker|1348823 +breastwork|1348854 +breath|1348905 +breath of fresh air|1349187 +breathalyse|1349241 +breathalyser|1349280 +breathalyze|1349322 +breathalyzer|1349361 +breathe|1349403 +breathe in|1349769 +breathe out|1349842 +breathed|1349915 +breather|1349998 +breathing|1350199 +breathing apparatus|1350416 +breathing device|1350498 +breathing in|1350580 +breathing machine|1350643 +breathing out|1350725 +breathing place|1350777 +breathing room|1350897 +breathing space|1350957 +breathing spell|1351119 +breathing time|1351239 +breathless|1351359 +breathlessly|1351612 +breathlessness|1351643 +breathtaking|1351708 +breccia|1351750 +brecciate|1351782 +brecht|1351855 +breech|1351919 +breech birth|1351998 +breech closer|1352086 +breech delivery|1352168 +breech presentation|1352256 +breech-loading|1351971 +breechblock|1352344 +breechcloth|1352426 +breechclout|1352486 +breeched|1352546 +breeches|1352599 +breeches buoy|1352731 +breechloader|1352794 +breed|1352820 +breeder|1353216 +breeder reactor|1353282 +breeding|1353331 +breeding ground|1353676 +breeze|1353759 +breeze block|1353999 +breeze through|1354063 +breeziness|1354160 +breezy|1354256 +bregma|1354305 +bregmatic|1354340 +breiz|1354377 +bren|1354430 +bren gun|1354473 +brenner pass|1354520 +brent|1354580 +brent goose|1354631 +brescia|1354682 +breslau|1354736 +brest|1354798 +bret harte|1354853 +bretagne|1354904 +brethren|1354960 +breton|1355189 +breuer|1355282 +breughel|1355344 +breughel the elder|1355491 +breve|1355648 +brevet|1355690 +breviary|1355798 +brevibloc|1355839 +brevicipitidae|1355944 +brevity|1356055 +brevoortia|1356126 +brevoortia tyrannis|1356185 +brew|1356264 +brewage|1356406 +brewer|1356476 +brewer's mole|1356545 +brewer's mountain heather|1356610 +brewer's spruce|1356711 +brewer's yeast|1356791 +brewery|1356878 +brewing|1356912 +brezhnev|1356940 +briar|1357038 +briar pipe|1357295 +briard|1357339 +briarroot|1357387 +briarwood|1357411 +briary|1357456 +bribable|1357571 +bribe|1357637 +briber|1357709 +bribery|1357773 +bric-a-brac|1357803 +brick|1357916 +brick cheese|1357976 +brick in|1358005 +brick over|1358059 +brick red|1358113 +brick trowel|1358178 +brick up|1358222 +brickbat|1358276 +brickellia|1358341 +brickfield|1358408 +brickkiln|1358452 +bricklayer|1358476 +bricklayer's hammer|1358535 +bricklaying|1358571 +brickle|1358600 +brickly|1358643 +bricks and mortar|1358686 +brickwork|1358731 +brickyard|1358758 +bricole|1358802 +bridal|1358927 +bridal gown|1359317 +bridal wreath|1359370 +bridal-wreath|1359078 +bride|1359609 +bride price|1359970 +bride's bonnet|1359802 +bride-gift|1359882 +bride-to-be|1359931 +bridecake|1359996 +bridegroom|1360033 +bridesmaid|1360105 +bridge|1360184 +bridge agent|1360748 +bridge circuit|1360833 +bridge deck|1360908 +bridge hand|1360947 +bridge over|1360978 +bridge partner|1361083 +bridge player|1361166 +bridge whist|1361206 +bridgeable|1361235 +bridged-t|1361266 +bridgehead|1361339 +bridgeport|1361412 +bridges|1361477 +bridget|1361977 +bridgetown|1362125 +bridgework|1362189 +bridle|1362243 +bridle at|1362366 +bridle path|1362422 +bridle road|1362460 +bridle up|1362498 +bridoon|1362554 +brie|1362575 +brief|1362601 +briefcase|1362821 +briefcase bomb|1362845 +briefcase computer|1362874 +briefing|1362920 +briefless|1362961 +briefly|1363017 +briefness|1363069 +briefs|1363140 +brier|1363313 +brier patch|1363735 +brier-wood|1363609 +brierpatch|1363871 +brierwood|1363926 +briery|1363971 +brig|1364086 +brigade|1364168 +brigadier|1364216 +brigadier general|1364269 +brigand|1364322 +brigandine|1364360 +brigantine|1364454 +brigate rosse|1364521 +brigham young|1364648 +bright|1364708 +bright as a new penny|1365675 +bright blue|1365713 +bright side|1365768 +bright's disease|1365570 +brighten|1365833 +brightly|1365967 +brightness|1366003 +brightness constancy|1366162 +brightness level|1366202 +brighton|1366297 +brigid|1366353 +brigit|1366500 +brigit nilsson|1366536 +brihaspati|1366612 +brill|1366655 +brilliance|1366726 +brilliancy|1366863 +brilliant|1366927 +brilliant pebble|1367139 +brilliantine|1367186 +brilliantly|1367223 +brim|1367259 +brim over|1367354 +brimful|1367423 +brimfull|1367463 +brimless|1367503 +brimming|1367531 +brimstone|1367571 +brinded|1367653 +brindisi|1367703 +brindle|1367764 +brindled|1367814 +brine|1367864 +brine shrimp|1367965 +brinell number|1368051 +bring|1368115 +bring about|1368714 +bring around|1368898 +bring back|1369045 +bring down|1369180 +bring forth|1369492 +bring forward|1369665 +bring home|1369731 +bring home the bacon|1369868 +bring in|1369964 +bring off|1370150 +bring on|1370269 +bring oneself|1370340 +bring out|1370398 +bring outside|1370837 +bring round|1370886 +bring through|1371008 +bring to|1371063 +bring to bear|1371156 +bring together|1371186 +bring up|1371291 +bringing|1371702 +bringing close together|1371776 +bringing up|1371852 +brininess|1371993 +brinjal|1372031 +brink|1372142 +brinkmanship|1372247 +brinton|1372284 +briny|1372348 +brio|1372409 +brioche|1372492 +briony|1372518 +brioschi|1372546 +briquet|1372626 +briquette|1372659 +bris|1372692 +brisance|1372749 +brisant|1372820 +brisbane|1372889 +brisbane quandong|1372930 +brisk|1373053 +brisk up|1373278 +brisken|1373344 +brisket|1373410 +briskness|1373443 +brisling|1373508 +briss|1373577 +bristle|1373635 +bristle at|1373732 +bristle brush|1373788 +bristle fern|1373817 +bristle grass|1373855 +bristle up|1373994 +bristlecone fir|1374050 +bristlecone pine|1374143 +bristled|1374241 +bristlegrass|1374356 +bristlelike|1374414 +bristletail|1374441 +bristling with|1374491 +bristly|1374523 +bristly locust|1374683 +bristly oxtongue|1374758 +bristly sarsaparilla|1374834 +bristly sarsparilla|1374930 +bristol|1375026 +bristol channel|1375085 +brit|1375139 +britain|1375248 +britannia metal|1375369 +britannic|1375422 +britches|1375479 +brith|1375555 +briticism|1375613 +british|1375686 +british cabinet|1375794 +british capacity unit|1375843 +british capital|1375967 +british columbia|1376077 +british commonwealth|1376138 +british crown|1376226 +british empire|1376269 +british empiricism|1376380 +british guiana|1376475 +british honduras|1376598 +british house of commons|1376697 +british house of lords|1376779 +british imperial system|1376855 +british isles|1376973 +british monetary unit|1377017 +british parliament|1377084 +british people|1377142 +british pound|1377236 +british shilling|1377321 +british system|1377399 +british thermal unit|1377508 +british virgin islands|1377603 +britisher|1377669 +britishism|1377719 +briton|1377841 +brits|1377935 +britt|1378132 +brittanic|1378202 +brittany|1378264 +brittany spaniel|1378320 +britten|1378371 +brittle|1378506 +brittle bladder fern|1378774 +brittle bush|1378864 +brittle fern|1379028 +brittle maidenhair|1379118 +brittle maidenhair fern|1379214 +brittle star|1379310 +brittle willow|1379450 +brittle-star|1378634 +brittlebush|1379533 +brittleness|1379616 +brix scale|1379672 +brno|1379732 +broach|1379786 +broached|1379866 +broad|1379899 +broad arrow|1381930 +broad bean|1381996 +broad beech fern|1382298 +broad buckler-fern|1382432 +broad gauge|1382505 +broad hatchet|1382564 +broad interpretation|1382595 +broad jump|1382691 +broad leaved centaury|1382758 +broad leaved goldenrod|1382798 +broad-bean|1380465 +broad-bean plant|1380719 +broad-brimmed|1380844 +broad-headed|1380878 +broad-leafed|1380967 +broad-leaved|1381022 +broad-leaved bottletree|1381077 +broad-leaved dock|1381168 +broad-leaved everlasting pea|1381261 +broad-leaved montia|1381349 +broad-leaved plantain|1381411 +broad-leaved twayblade|1381582 +broad-minded|1381664 +broad-mindedness|1381828 +broad-shouldered|1381864 +broadax|1382857 +broadaxe|1382890 +broadband|1382923 +broadbill|1382968 +broadcast|1383161 +broadcast area|1383438 +broadcast journalist|1383475 +broadcast medium|1383528 +broadcaster|1383586 +broadcasting|1383654 +broadcasting company|1383745 +broadcasting studio|1383783 +broadcloth|1383819 +broaden|1383906 +broadening|1384027 +broadleaf|1384133 +broadloom|1384188 +broadly|1384244 +broadly speaking|1384295 +broadness|1384346 +broadnosed|1384388 +broadsheet|1384471 +broadside|1384608 +broadsword|1384917 +broadtail|1384961 +broadway|1385038 +broadwise|1385088 +brobdingnag|1385130 +brobdingnagian|1385194 +broca|1385309 +broca's aphasia|1385363 +broca's area|1385478 +broca's center|1385623 +broca's convolution|1385770 +broca's gyrus|1385922 +brocade|1386068 +brocaded|1386135 +brocadopa|1386187 +broccoli|1386277 +broccoli raab|1386377 +broccoli rabe|1386503 +brochure|1386629 +brocket|1386684 +brodiaea|1386744 +brodiaea elegans|1386779 +brodmann's area|1386848 +brogan|1386919 +broglie|1386968 +brogue|1387046 +broider|1387095 +broil|1387171 +broiled|1387281 +broiler|1387313 +broiling|1387366 +broke|1387427 +broken|1387482 +broken arch|1388315 +broken in|1388341 +broken wind|1388378 +broken-backed|1388094 +broken-down|1388167 +broken-field|1388286 +brokenhearted|1388421 +brokenheartedness|1388476 +broker|1388537 +broker-dealer|1388629 +brokerage|1388669 +brokerage account|1388878 +brokerage firm|1388935 +brokerage house|1389021 +brolly|1389071 +bromate|1389101 +bromberg|1389165 +brome|1389231 +bromegrass|1389263 +bromelia|1389295 +bromeliaceae|1389352 +bromeosin|1389456 +bromic|1389542 +bromic acid|1389590 +bromide|1389616 +bromidic|1389755 +brominate|1389845 +bromine|1389907 +bromo-seltzer|1389977 +bromoform|1390067 +bromophenol blue|1390111 +bromothymol blue|1390220 +brompheniramine maleate|1390295 +bromphenol blue|1390351 +brompton stock|1390460 +bromthymol blue|1390519 +bromus|1390594 +bromus arvensis|1390660 +bromus inermis|1390730 +bromus japonicus|1390805 +bromus secalinus|1390895 +bromus tectorum|1390967 +bronc|1391104 +bronchial|1391142 +bronchial artery|1391179 +bronchial asthma|1391242 +bronchial pneumonia|1391350 +bronchial tube|1391406 +bronchial vein|1391458 +bronchiolar|1391529 +bronchiole|1391584 +bronchiolitis|1391639 +bronchitic|1391673 +bronchitis|1391702 +broncho|1391783 +bronchodilator|1391821 +bronchopneumonia|1391891 +bronchoscope|1391947 +bronchoscopic|1391988 +bronchoscopic smear|1392029 +bronchospasm|1392133 +bronchus|1392161 +bronco|1392213 +bronco buster|1392251 +bronco busting|1392404 +broncobuster|1392452 +bronislaw kasper malinowski|1392517 +bronislaw malinowski|1392629 +bronte|1392734 +brontosaur|1392899 +brontosaurus|1393017 +bronx|1393135 +bronx cheer|1393249 +bronx-whitestone bridge|1393174 +bronze|1393365 +bronze age|1393510 +bronze medal|1393616 +bronze star|1393704 +bronze star medal|1393808 +bronzed|1393918 +bronzed diabetes|1393976 +bronzy|1394063 +brooch|1394096 +brood|1394164 +brood bitch|1394354 +brood hen|1394381 +brooder|1394447 +brooder pneumonia|1394490 +brooding|1394546 +broodmare|1394742 +broody|1394789 +broody hen|1394971 +brook|1395037 +brook thistle|1395193 +brook trout|1395262 +brooke|1395364 +brooklime|1395406 +brooklyn|1395577 +brooklyn bridge|1395612 +brooks|1395671 +brookweed|1395764 +broom|1395881 +broom beard grass|1396182 +broom closet|1396291 +broom grass|1396329 +broom handle|1396356 +broom palm|1396415 +broom sedge|1396501 +broom snakeroot|1396556 +broom snakeweed|1396688 +broom tree|1396820 +broom-weed|1396032 +broomcorn|1396886 +broomcorn millet|1396939 +broomrape family|1397006 +broomstick|1397100 +broomweed|1397159 +brosme brosme|1397228 +brosmius|1397295 +broth|1397348 +broth of a boy|1397386 +broth of a man|1397429 +brothel|1397472 +brothel keeper|1397610 +brother|1397654 +brother-in-law|1397807 +brotherhood|1397854 +brotherlike|1398079 +brotherly|1398120 +brotherly love|1398171 +brotula|1398254 +brotulidae|1398303 +brougham|1398364 +brought about|1398417 +brouhaha|1398464 +broussonetia|1398535 +broussonetia papyrifera|1398620 +brow|1398726 +brow ptosis|1398846 +browallia|1398874 +browbeat|1398912 +browbeaten|1399084 +brown|1399145 +brown algae|1399631 +brown ash|1399663 +brown bat|1399740 +brown bear|1399784 +brown bells|1399828 +brown bent|1399920 +brown betty|1400040 +brown bread|1400081 +brown bullhead|1400236 +brown butter|1400269 +brown coal|1400314 +brown creeper|1400364 +brown cup|1400443 +brown hickory|1400474 +brown hyena|1400567 +brown lacewing|1400628 +brown lemming|1400700 +brown oak|1400752 +brown onion sauce|1400902 +brown pine|1400951 +brown rat|1401033 +brown rice|1401085 +brown root rot fungus|1401110 +brown rot|1401167 +brown rot gummosis|1401200 +brown sauce|1401247 +brown snail|1401323 +brown soft scale|1401371 +brown study|1401426 +brown sugar|1401462 +brown swiss|1401503 +brown thrasher|1401593 +brown thrush|1401671 +brown trout|1401749 +brown university|1401802 +brown-haired|1399440 +brown-nose|1399503 +brown-tail moth|1399550 +browne|1401862 +browned|1401986 +browned off|1402044 +brownian motion|1402100 +brownian movement|1402183 +brownie|1402268 +brownie mix|1402370 +browning|1402401 +browning automatic rifle|1402624 +browning machine gun|1402727 +brownish|1402801 +brownish yellow|1402981 +brownish-orange|1402846 +brownish-red|1402888 +brownish-yellow|1402927 +brownness|1403024 +brownout|1403113 +brownshirt|1403161 +brownstone|1403209 +brownsville|1403267 +browntail|1403358 +browse|1403439 +browser|1403634 +browsing|1403765 +bruce|1403827 +bruce lee|1403983 +brucella|1404072 +brucellosis|1404113 +bruch|1404295 +bruchidae|1404335 +bruchus|1404398 +bruchus pisorum|1404453 +brucine|1404529 +bruckenthalia|1404578 +bruckenthalia spiculifolia|1404657 +bruckner|1404738 +bruegel|1404798 +brueghel|1404944 +bruges|1405091 +brugmansia|1405159 +brugmansia arborea|1405227 +brugmansia sanguinea|1405323 +brugmansia suaveolens|1405422 +bruin|1405520 +bruise|1405576 +bruised|1405774 +bruiser|1405820 +bruising|1405873 +bruit|1405915 +brumaire|1405964 +brumal|1406020 +brummagem|1406067 +brummell|1406163 +brummie|1406293 +brummy|1406340 +brumous|1406386 +brunanburh|1406427 +brunch|1406494 +brunch coat|1406533 +brunei|1406598 +brunei dollar|1406656 +bruneian|1406700 +brunelleschi|1406760 +brunet|1406835 +brunette|1407069 +brunfelsia|1407294 +brunfelsia americana|1407362 +brunhild|1407442 +brunn|1407498 +brunnhilde|1407553 +bruno|1407611 +bruno walter|1407737 +brunswick|1407813 +brunswick stew|1407957 +brunt|1408001 +brusa|1408044 +brush|1408100 +brush aside|1408857 +brush cut|1408940 +brush discharge|1408967 +brush down|1409044 +brush fire|1409247 +brush kangaroo|1409272 +brush off|1409313 +brush on|1409396 +brush turkey|1409427 +brush up|1409522 +brush wolf|1409667 +brush-footed butterfly|1408509 +brush-off|1408603 +brush-tail porcupine|1408632 +brush-tailed phalanger|1408705 +brush-tailed porcupine|1408784 +brushed|1409726 +brushing|1409792 +brushlike|1409873 +brushup|1409898 +brushwood|1409974 +brushwork|1410050 +brushy|1410091 +brusk|1410120 +brusque|1410167 +brusquely|1410214 +brusqueness|1410265 +brussels|1410347 +brussels biscuit|1410436 +brussels carpet|1410517 +brussels griffon|1410579 +brussels lace|1410680 +brussels sprout|1410722 +brussels sprouts|1410848 +brut|1411035 +brutal|1411053 +brutalisation|1411186 +brutalise|1411383 +brutality|1411532 +brutalization|1411681 +brutalize|1411878 +brutally|1412027 +brute|1412063 +brutish|1412247 +brutishly|1412295 +brutus|1412343 +bruxelles|1412419 +bruxism|1412509 +brya|1412533 +brya ebenus|1412581 +bryaceae|1412646 +bryales|1412701 +bryan|1412752 +bryan donkin|1412919 +bryanthus|1413001 +bryanthus taxifolius|1413031 +bryce canyon national park|1413123 +brynhild|1413200 +bryonia alba|1413256 +bryonia dioica|1413333 +bryony|1413406 +bryophyta|1413434 +bryophyte|1413491 +bryophytic|1413549 +bryopsida|1413589 +bryozoa|1413658 +bryozoan|1413780 +brythonic|1413849 +bryum|1413911 +bs|1413955 +bsarch|1414025 +bse|1414116 +btu|1414195 +bubaline|1414273 +bubalus|1414296 +bubalus bubalis|1414362 +bubalus mindorensis|1414468 +bubble|1414576 +bubble and squeak|1414985 +bubble bath|1415017 +bubble chamber|1415043 +bubble dance|1415122 +bubble gum|1415157 +bubble gum dermatitis|1415193 +bubble jet printer|1415243 +bubble over|1415316 +bubble pack|1415369 +bubble shell|1415436 +bubble up|1415477 +bubble-jet printer|1414831 +bubblejet|1415535 +bubbler|1415608 +bubbliness|1415681 +bubbling|1415738 +bubbly|1415928 +buber|1416046 +bubo|1416092 +bubo virginianus|1416176 +bubonic|1416247 +bubonic plague|1416299 +bubulcus|1416330 +bubulcus ibis|1416383 +buccal|1416439 +buccal artery|1416496 +buccal cavity|1416573 +buccaneer|1416623 +buccaneering|1416744 +buccinator muscle|1416781 +buccinidae|1416855 +bucconidae|1416919 +buccula|1416980 +bucephala|1417021 +bucephala islandica|1417077 +bucephela albeola|1417183 +bucephela clangula|1417262 +buceros|1417333 +bucerotidae|1417383 +buchanan|1417447 +bucharest|1417589 +bucharesti|1417675 +buchloe|1417762 +buchloe dactyloides|1417831 +buchner|1417900 +buck|1417948 +buck fever|1418665 +buck private|1418691 +buck up|1418749 +buck-and-wing|1418590 +buck-toothed|1418635 +buckaroo|1418809 +buckbean|1418911 +buckbean family|1419054 +buckboard|1419147 +bucked up|1419188 +buckeroo|1419226 +bucket|1419328 +bucket along|1419448 +bucket seat|1419579 +bucket shop|1419605 +bucketful|1419691 +buckeye|1419730 +buckeye state|1419884 +bucking bronco|1419944 +buckingham palace|1419989 +buckle|1420048 +buckle down|1420270 +buckle under|1420340 +buckler|1420420 +buckler fern|1420457 +buckler mustard|1420496 +buckleya|1420553 +buckleya distichophylla|1420611 +buckminster fuller|1420693 +buckminsterfullerene|1420855 +buckram|1420905 +buckshee|1420995 +buckshot|1421020 +buckskin|1421070 +buckskins|1421135 +buckthorn|1421284 +buckthorn berry|1421438 +buckthorn family|1421482 +bucktooth|1421570 +buckwheat|1421610 +buckwheat cake|1421723 +buckwheat family|1421839 +buckwheat tree|1421931 +buckyball|1422015 +bucolic|1422065 +bucuresti|1422214 +bud|1422300 +bud brush|1422382 +bud sagebrush|1422455 +budapest|1422528 +buddha|1422609 +buddhism|1422767 +buddhist|1422857 +buddhistic|1422971 +budding|1423042 +buddleia|1423112 +buddy|1423156 +buddy holly|1423250 +buddy system|1423354 +buddy-buddy|1423210 +budge|1423384 +budgereegah|1423478 +budgerigar|1423647 +budgerygah|1423816 +budget|1423985 +budget cut|1424112 +budget deficit|1424136 +budget for|1424168 +budget items|1424212 +budgetary|1424307 +budgie|1424344 +budorcas|1424513 +budorcas taxicolor|1424568 +buena vista|1424644 +buenos aires|1424692 +buff|1424770 +buffalo|1425042 +buffalo bill|1425215 +buffalo bill cody|1425429 +buffalo bill's wild west show|1425340 +buffalo bur|1425559 +buffalo carpet beetle|1425609 +buffalo chip|1425689 +buffalo clover|1425754 +buffalo fish|1425925 +buffalo gnat|1426001 +buffalo gourd|1426047 +buffalo grass|1426183 +buffalo indian|1426289 +buffalo nut|1426398 +buffalo wing|1426492 +buffalofish|1426519 +buffel grass|1426583 +buffer|1426665 +buffer country|1426940 +buffer solution|1426996 +buffer state|1427030 +buffer storage|1427086 +buffer store|1427159 +buffered aspirin|1427232 +bufferin|1427310 +buffet|1427397 +buffet car|1427584 +buffeted|1427669 +buffeting|1427751 +buffing wheel|1427789 +bufflehead|1427818 +buffoon|1427879 +buffoonery|1427976 +buffoonish|1428087 +bufo|1428149 +bufo americanus|1428173 +bufo boreas|1428238 +bufo bufo|1428294 +bufo calamita|1428347 +bufo canorus|1428405 +bufo debilis|1428464 +bufo marinus|1428529 +bufo microscaphus|1428589 +bufo speciosus|1428662 +bufo viridis|1428722 +bufonidae|1428787 +bug|1428850 +bug out|1429213 +bug-hunter|1429142 +bugaboo|1429308 +buganda|1429406 +bugbane|1429446 +bugbear|1429586 +bugged|1429669 +bugger|1429691 +bugger all|1429815 +bugger off|1429952 +buggery|1430023 +bugginess|1430102 +buggy|1430146 +buggy whip|1430393 +bugle|1430423 +bugle call|1430513 +bugler|1430555 +bugleweed|1430591 +bugloss|1430686 +bugologist|1430805 +bugology|1430876 +buhl|1430932 +build|1430973 +build in|1431511 +build on|1431551 +build up|1431664 +build upon|1431848 +builder|1431961 +building|1432038 +building block|1432234 +building code|1432294 +building complex|1432335 +building department|1432392 +building material|1432458 +building permit|1432503 +building site|1432551 +building society|1432589 +building supply house|1432661 +building supply store|1432725 +buildup|1432789 +built|1432926 +built in bed|1433260 +built-in|1433033 +built-in bed|1433114 +built-soap powder|1433175 +built-up|1433234 +buirdly|1433297 +bujumbura|1433349 +bukharin|1433423 +bulawayo|1433498 +bulb|1433554 +bulbaceous|1433832 +bulbar|1433862 +bulbar conjunctiva|1433894 +bulbed|1433986 +bulbil|1434012 +bulblet|1434041 +bulblet bladder fern|1434070 +bulblet fern|1434159 +bulblike|1434248 +bulbourethral gland|1434289 +bulbous|1434359 +bulbous iris|1434461 +bulbous plant|1434528 +bulbul|1434579 +bulgaria|1434629 +bulgarian|1434719 +bulgarian capital|1434882 +bulgarian monetary unit|1434958 +bulge|1435029 +bulge out|1435357 +bulghur|1435452 +bulginess|1435507 +bulging|1435559 +bulgur|1435798 +bulgur pilaf|1435853 +bulgur wheat|1435900 +bulgy|1435955 +bulima nervosa|1436026 +bulimarexia|1436120 +bulimia|1436214 +bulimic|1436294 +bulk|1436372 +bulk large|1436497 +bulk mail|1436539 +bulk modulus|1436563 +bulkhead|1436649 +bulkiness|1436685 +bulky|1436734 +bull|1436755 +bull bay|1437793 +bull fiddle|1437903 +bull market|1438019 +bull mastiff|1438067 +bull moose party|1438101 +bull neck|1438184 +bull nettle|1438215 +bull nose|1438308 +bull pine|1438416 +bull run|1438508 +bull session|1438569 +bull shark|1438619 +bull snake|1438683 +bull terrier|1438819 +bull thistle|1438942 +bull through|1439056 +bull tongue|1439096 +bull's eye|1437555 +bull-snake|1437657 +bulla|1439129 +bullace|1439188 +bullace grape|1439237 +bullate|1439276 +bullbat|1439308 +bullbrier|1439381 +bulldog|1439481 +bulldog ant|1439672 +bulldog clip|1439711 +bulldog wrench|1439753 +bulldoze|1439792 +bulldozer|1439866 +bullet|1439899 +bullet fingerprinting|1440128 +bullet hole|1440224 +bullet train|1440250 +bullet vote|1440295 +bullet-headed|1440026 +bullethead|1440321 +bulletin|1440352 +bulletin board|1440448 +bulletin board system|1440567 +bulletproof|1440660 +bulletproof vest|1440777 +bullfight|1440894 +bullfighter|1440931 +bullfighting|1441014 +bullfinch|1441048 +bullfrog|1441145 +bullhead|1441196 +bullheaded|1441253 +bullheadedness|1441306 +bullhorn|1441429 +bullied|1441526 +bullion|1441587 +bullish|1441657 +bullnecked|1441685 +bullnose|1441712 +bullnosed plane|1441788 +bullock|1441864 +bullock block|1442290 +bullock heart|1442347 +bullock's heart|1441932 +bullock's heart tree|1442078 +bullock's oriole|1442189 +bullocky|1442458 +bullpen|1442483 +bullring|1442571 +bullrush|1442623 +bullshit|1442768 +bullshot|1442921 +bullterrier|1442948 +bully|1442990 +bully beef|1443375 +bully off|1443428 +bully pulpit|1443461 +bully tree|1443497 +bullyboy|1443570 +bullying|1443648 +bullyrag|1443718 +bulnesia|1443813 +bulnesia sarmienti|1443873 +bulrush|1443965 +bulrush millet|1444111 +bultmann|1444224 +bulwark|1444334 +bulwarks|1444471 +bulwer-lytton|1444633 +bum|1444744 +bum about|1445449 +bum around|1445617 +bumble|1445785 +bumblebee|1446093 +bumbler|1446126 +bumbling|1446241 +bumboat|1446349 +bumelia|1446371 +bumelia lanuginosa|1446441 +bumelia lycioides|1446560 +bumf|1446666 +bummer|1446729 +bump|1446801 +bump around|1447328 +bump into|1447376 +bump off|1447487 +bump up|1447553 +bumper|1447576 +bumper car|1447685 +bumper guard|1447720 +bumper jack|1447760 +bumper-to-bumper|1447654 +bumph|1447786 +bumpiness|1447849 +bumpkin|1447878 +bumpkinly|1447942 +bumptious|1448000 +bumptiousness|1448042 +bumpy|1448130 +bun|1448182 +bun-fight|1448231 +buna rubber|1448346 +bunce|1448384 +bunch|1448498 +bunch grass|1448768 +bunch together|1448887 +bunch up|1448958 +bunchberry|1449068 +bunche|1449174 +bunched|1449252 +bunchgrass|1449299 +bunchy|1449337 +bunco|1449384 +bunco game|1449619 +buncombe|1449752 +bundesbank|1449814 +bundle|1449858 +bundle of his|1450206 +bundle off|1450345 +bundle up|1450392 +bundled-up|1450456 +bundling|1450489 +bunfight|1450573 +bung|1450607 +bungaloid|1450699 +bungalow|1450723 +bungarus|1450755 +bungarus fasciatus|1450811 +bungee|1450890 +bungee cord|1450923 +bunghole|1450956 +bungle|1450979 +bungled|1451299 +bungler|1451334 +bunglesome|1451449 +bungling|1451515 +bunion|1451668 +bunji-bunji|1451708 +bunk|1451762 +bunk bed|1452199 +bunk down|1452226 +bunk off|1452347 +bunker|1452385 +bunker buster|1452505 +bunker hill|1452591 +bunker mentality|1452661 +bunkmate|1452701 +bunko|1452739 +bunko game|1452872 +bunkum|1453005 +bunny|1453067 +bunny girl|1453140 +bunny hug|1453175 +bunny rabbit|1453226 +buns|1453272 +bunsen|1453530 +bunsen burner|1453642 +bunt|1453696 +buntal|1453894 +bunter|1453934 +bunting|1453980 +bunuel|1454040 +bunya bunya|1454089 +bunya bunya tree|1454175 +bunyan|1454243 +bunyaviridae|1454448 +bunyavirus|1454504 +buoy|1454537 +buoy up|1454670 +buoyancy|1454781 +buoyant|1454935 +buoyantly|1454994 +buphthalmum|1455021 +buphthalmum salicifolium|1455092 +bur|1455172 +bur grass|1455362 +bur marigold|1455477 +bur oak|1455571 +bur reed|1455653 +bur-reed family|1455270 +bura|1455693 +burbage|1455730 +burbank|1455814 +burberry|1455879 +burble|1455926 +burbling|1455986 +burbly|1456035 +burbot|1456084 +burchell's zebra|1456140 +burden|1456218 +burden of proof|1456506 +burdened|1456562 +burdenless|1456704 +burdensome|1456748 +burdensomeness|1456789 +burdock|1456865 +bureau|1456909 +bureau de change|1457110 +bureau of alcohol tobacco and firearms|1457144 +bureau of customs|1457258 +bureau of diplomatic security|1457403 +bureau of engraving and printing|1457539 +bureau of intelligence and research|1457678 +bureau of justice assistance|1457827 +bureau of justice statistics|1457962 +bureau of the census|1458097 +bureaucracy|1458226 +bureaucrat|1458294 +bureaucratic|1458359 +bureaucratic procedure|1458434 +bureaucratism|1458485 +buret|1458553 +burette|1458631 +burg|1458709 +burgeon|1458728 +burgeon forth|1458750 +burgess|1458825 +burgh|1458906 +burgher|1458929 +burglar|1459016 +burglar alarm|1459047 +burglarious|1459145 +burglarise|1459172 +burglarize|1459222 +burglarproof|1459272 +burglary|1459311 +burgle|1459336 +burgomaster|1459386 +burgoo|1459426 +burgoyne|1459486 +burgrass|1459565 +burgrave|1459599 +burgundy|1459662 +burgundy sauce|1459769 +burgundy wine|1459844 +burhinidae|1459900 +burhinus|1459961 +burhinus oedicnemus|1460014 +burial|1460124 +burial chamber|1460235 +burial garment|1460308 +burial ground|1460347 +burial mound|1460456 +burial site|1460516 +burial vault|1460625 +buried|1460698 +burin|1460774 +burk|1460796 +burka|1460885 +burke|1460914 +burked|1461234 +burkina faso|1461261 +burkina faso franc|1461327 +burl|1461380 +burlap|1461493 +burlap bag|1461531 +burled|1461576 +burlesque|1461602 +burlington|1461783 +burly|1461843 +burma|1461895 +burma padauk|1461966 +burmannia|1462047 +burmanniaceae|1462122 +burmeisteria|1462212 +burmeisteria retusa|1462279 +burmese|1462357 +burmese cat|1462557 +burmese rosewood|1462642 +burmese-yi|1462476 +burn|1462727 +burn bag|1463402 +burn center|1463424 +burn down|1463459 +burn mark|1463535 +burn off|1463578 +burn out|1463706 +burn plant|1463801 +burn up|1463836 +burnable|1464010 +burned|1464082 +burned-out|1464284 +burner|1464391 +burnet bloodwort|1464446 +burnett|1464538 +burnham|1464631 +burning|1464697 +burning at the stake|1465197 +burning bush|1465288 +burnish|1465536 +burnished|1465700 +burnoose|1465758 +burnous|1465799 +burnouse|1465840 +burns|1465881 +burnside|1466185 +burnt|1466342 +burnt lime|1466635 +burnt sienna|1466736 +burnt umber|1466821 +burnt-out|1466526 +burnup|1466905 +burp|1466966 +burp gun|1467202 +burping|1467250 +burqa|1467438 +burr|1467467 +burr drill|1467691 +burr marigold|1467733 +burr oak|1467827 +burr-headed|1467663 +burrawong|1467909 +burred|1467987 +burrfish|1468102 +burrhus frederic skinner|1468133 +burrill bernard crohn|1468240 +burrito|1468334 +burrlike|1468356 +burro|1468394 +burro deer|1468442 +burroughs|1468504 +burrow|1468735 +burry|1468813 +bursa|1468928 +bursa omentalis|1468995 +bursal|1469086 +bursar|1469105 +bursary|1469149 +bursera|1469185 +bursera microphylla|1469242 +bursera simaruba|1469318 +burseraceae|1469386 +bursiform|1469474 +bursitis|1469532 +burst|1469577 +burst forth|1470083 +burst in on|1470223 +burst out|1470290 +burst upon|1470414 +burster|1470481 +bursting|1470548 +bursting charge|1470597 +bursting explosive|1470664 +burt|1470728 +burthen|1470790 +burton|1470867 +burundi|1471061 +burundi franc|1471192 +burundian|1471235 +burunduki|1471327 +burweed marsh elder|1471423 +bury|1471498 +burying|1471742 +burying ground|1471796 +bus|1471905 +bus company|1472200 +bus depot|1472306 +bus driver|1472388 +bus fare|1472422 +bus lane|1472468 +bus line|1472499 +bus route|1472530 +bus service|1472570 +bus station|1472676 +bus stop|1472758 +bus terminal|1472781 +bus ticket|1472863 +bus topology|1472890 +bus traffic|1472942 +busbar|1472997 +busboy|1473027 +busby|1473105 +bush|1473151 +bush administration|1473798 +bush baby|1473857 +bush clover|1473979 +bush hibiscus|1474037 +bush honeysuckle|1474106 +bush jacket|1474262 +bush lawyer|1474290 +bush league|1474379 +bush leaguer|1474438 +bush nasturtium|1474501 +bush out|1474554 +bush pea|1474590 +bush poppy|1474630 +bush shrike|1474672 +bush tit|1474700 +bush vetch|1474820 +bush violet|1474859 +bush willow|1474897 +bush-league|1473763 +bushbaby|1475040 +bushbuck|1475081 +bushed|1475144 +bushel|1475183 +bushel basket|1475413 +bushido|1475461 +bushing|1475504 +bushman|1475588 +bushman's poison|1475634 +bushnell|1475730 +bushtit|1475826 +bushwhack|1475865 +bushwhacker|1475967 +bushwhacking|1476032 +bushy|1476064 +bushy aster|1476111 +bushytail woodrat|1476152 +business|1476240 +business activity|1476721 +business address|1476798 +business agent|1476832 +business card|1476862 +business college|1476904 +business community|1476938 +business concern|1476999 +business cycle|1477097 +business data processing|1477155 +business deal|1477236 +business deduction|1477299 +business department|1477365 +business district|1477413 +business editor|1477463 +business enterprise|1477505 +business establishment|1477601 +business executive|1477665 +business expense|1477742 +business firm|1477813 +business index|1477925 +business interruption insurance|1477987 +business leader|1478038 +business letter|1478158 +business life|1478198 +business line|1478263 +business loan|1478384 +business lunch|1478433 +business news|1478488 +business office|1478516 +business organisation|1478589 +business organization|1478687 +business people|1478785 +business relation|1478913 +business relationship|1478949 +business school|1479001 +business sector|1479054 +business suit|1479095 +business traveler|1479139 +businesslike|1479185 +businessman|1479243 +businessmen|1479304 +businesspeople|1479424 +businessperson|1479471 +businesswoman|1479516 +busker|1479564 +buskin|1479592 +busload|1479668 +busman|1479735 +busman's holiday|1479769 +buspar|1479807 +buspirone|1479943 +buss|1480072 +bust|1480211 +bust up|1480677 +bust-up|1480577 +bust-up takeover|1480634 +bustard|1480719 +bustard quail|1480754 +busted|1480830 +buster|1480905 +buster keaton|1481219 +bustle|1481343 +bustle about|1481493 +bustling|1481534 +busty|1481559 +busy|1481662 +busy bee|1481936 +busybodied|1482010 +busybody|1482087 +busyness|1482138 +busywork|1482187 +but|1482220 +but then|1482256 +butacaine|1482302 +butacaine sulfate|1482419 +butadiene|1482536 +butane|1482567 +butanoic acid|1482637 +butanol|1482694 +butanone|1482733 +butat|1482778 +butazolidin|1482821 +butch|1482910 +butcher|1483002 +butcher block|1483315 +butcher board|1483357 +butcher cumberland|1483399 +butcher knife|1483514 +butcher paper|1483543 +butcher shop|1483581 +butcher's broom|1483262 +butcherbird|1483626 +butchering|1483679 +butcherly|1483759 +butchery|1483861 +butea|1484069 +butea frondosa|1484120 +butea gum|1484196 +butea kino|1484252 +butea monosperma|1484308 +butene|1484386 +buteo|1484415 +buteo buteo|1484459 +buteo jamaicensis|1484505 +buteo lagopus|1484579 +buteo lineatus|1484648 +buteonine|1484712 +butler|1484753 +butt|1484790 +butt against|1485753 +butt end|1485940 +butt hinge|1485969 +butt in|1486010 +butt joint|1486113 +butt on|1486144 +butt pack|1486285 +butt shaft|1486335 +butt weld|1486361 +butt welding|1486487 +butt-weld|1485401 +butt-welding|1485629 +butte|1486611 +butter|1486649 +butter bean|1487227 +butter churn|1487465 +butter cookie|1487500 +butter daisy|1487544 +butter dish|1487695 +butter knife|1487721 +butter up|1487755 +butter-and-eggs|1486751 +butter-bean plant|1486838 +butter-flower|1486944 +butter-print|1487118 +butterball|1487802 +butterbean|1487916 +butterbur|1487981 +buttercrunch|1488072 +buttercup|1488113 +buttercup family|1488206 +buttercup squash|1488306 +butterfat|1488398 +butterfield|1488428 +butterfingered|1488500 +butterfingers|1488608 +butterfish|1488645 +butterflower|1488806 +butterfly|1488899 +butterfly bush|1489150 +butterfly collector|1489194 +butterfly effect|1489272 +butterfly fish|1489351 +butterfly flower|1489485 +butterfly nut|1489584 +butterfly orchid|1489649 +butterfly orchis|1489988 +butterfly pea|1490144 +butterfly plant|1490263 +butterfly ray|1490412 +butterfly stroke|1490444 +butterfly valve|1490496 +butterfly weed|1490527 +butterflyfish|1490676 +butterhead lettuce|1490756 +buttermilk|1490792 +buttermilk biscuit|1490817 +buttermilk pancake|1490866 +butternut|1490986 +butternut squash|1491086 +butternut tree|1491184 +butterscotch|1491266 +butterweed|1491294 +butterwort|1491392 +buttery|1491430 +buttinsky|1491621 +buttock|1491648 +buttocks|1491681 +button|1491923 +button fern|1492388 +button hole|1492466 +button mangrove|1492584 +button pink|1492645 +button quail|1492703 +button snakeroot|1492860 +button tree|1493081 +button up|1493142 +button-down|1492145 +button-quail|1492231 +buttoned|1493221 +buttoned-down|1493286 +buttoned-up|1493347 +buttonhole|1493397 +buttonhole stitch|1493463 +buttonhook|1493497 +buttonlike|1493522 +buttonwood|1493572 +buttony|1493674 +buttress|1493749 +buttressed|1493848 +buttressing|1493885 +buttweld|1493923 +butty|1493956 +butut|1493980 +butyl|1494023 +butyl alcohol|1494067 +butyl nitrite|1494106 +butyl rubber|1494196 +butylate|1494235 +butylene|1494257 +butyraceous|1494286 +butyric|1494317 +butyric acid|1494354 +butyrin|1494411 +buxaceae|1494443 +buxom|1494530 +buxomly|1494682 +buxomness|1494711 +buxus|1494751 +buxus sempervirens|1494815 +buy|1494898 +buy at|1495125 +buy back|1495207 +buy food|1495249 +buy in|1495289 +buy into|1495341 +buy it|1495383 +buy off|1495456 +buy out|1495518 +buy the farm|1495565 +buy time|1495734 +buy up|1495773 +buy-and-bust operation|1495072 +buyback|1495820 +buyer|1495868 +buyer's market|1495923 +buyers' market|1495981 +buyi|1496039 +buying|1496069 +buyout|1496105 +buyout bid|1496133 +buzz|1496164 +buzz bomb|1496311 +buzz off|1496382 +buzz saw|1496453 +buzzard|1496513 +buzzards bay|1496627 +buzzer|1496666 +buzzing|1496744 +buzzword|1496781 +bvd's|1496855 +bw|1496913 +bw defence|1497003 +bw defense|1497133 +bwr|1497263 +by|1497323 +by all odds|1498029 +by and by|1498108 +by and large|1498132 +by any means|1498190 +by artificial means|1498231 +by chance|1498284 +by choice|1498413 +by design|1498527 +by election|1498624 +by experimentation|1498667 +by far|1498731 +by fits and starts|1498772 +by heart|1498823 +by hook or by crook|1498850 +by inches|1498891 +by luck|1498943 +by memory|1498975 +by mouth|1499002 +by nature|1499026 +by no means|1499054 +by right of office|1499115 +by rights|1499153 +by selection|1499180 +by small degrees|1499213 +by the bye|1499265 +by the day|1499308 +by the hour|1499336 +by the piece|1499363 +by the way|1499395 +by trial and error|1499438 +by word of mouth|1499507 +by-and-by|1497356 +by-bid|1497414 +by-blow|1497447 +by-catch|1497548 +by-line|1497709 +by-product|1497820 +byblos|1499555 +bycatch|1499612 +bydgoszcz|1499692 +bye|1499759 +bye election|1500127 +bye law|1500170 +bye-bye|1499964 +byelarus|1500208 +byelorussia|1500332 +byelorussian|1500459 +bygone|1500610 +bylaw|1500723 +bypass|1500761 +bypass capacitor|1500915 +bypass condenser|1501011 +bypast|1501107 +bypath|1501158 +byplay|1501198 +byproduct|1501275 +byrd|1501404 +byrnie|1501549 +byroad|1501647 +byron|1501687 +byssus|1501768 +bystander|1501802 +byte|1501861 +byway|1501896 +byword|1501936 +byzant|1501997 +byzantine|1502041 +byzantine architecture|1502320 +byzantine church|1502438 +byzantine empire|1502512 +byzantine greek|1502658 +byzantinism|1502760 +byzantium|1502859 +c|1503044 +c and w|1505656 +c battery|1505744 +c clef|1505798 +c compiler|1505826 +c horizon|1505884 +c program|1506017 +c-clamp|1503614 +c-horizon|1503645 +c-note|1503778 +c-ration|1503914 +c-reactive protein|1503954 +c-section|1504020 +c. d. gibson|1504215 +c. diphtheriae|1504289 +c. h. best|1504396 +c. k. ogden|1504466 +c. northcote parkinson|1504560 +c. p. snow|1504677 +c. psittaci|1504770 +c. s. forester|1504832 +c. s. lewis|1504915 +c. trachomatis|1504988 +c. vann woodward|1505059 +c. w. post|1505157 +c.o.d.|1505232 +c.p.u.|1505355 +c2h6|1505573 +ca|1506100 +ca-ca|1506219 +caaba|1506317 +cab|1506351 +cab fare|1506477 +cabal|1506525 +cabala|1506697 +cabalism|1506866 +cabalist|1507013 +cabalistic|1507121 +cabana|1507201 +cabaret|1507242 +cabasset|1507322 +cabassous|1507354 +cabassous unicinctus|1507412 +cabbage|1507491 +cabbage bark|1507906 +cabbage butterfly|1507991 +cabbage palm|1508042 +cabbage palmetto|1508240 +cabbage tree|1508303 +cabbage-bark tree|1507821 +cabbageworm|1508486 +cabbala|1508532 +cabbalah|1508701 +cabby|1508870 +cabdriver|1508966 +cabell|1509062 +caber|1509119 +cabernet|1509139 +cabernet sauvignon|1509194 +cabernet sauvignon grape|1509259 +cabg|1509375 +cabin|1509482 +cabin boy|1509556 +cabin car|1509592 +cabin class|1509656 +cabin cruiser|1509716 +cabin liner|1509796 +cabinet|1509835 +cabinet minister|1510003 +cabinet wood|1510074 +cabinetmaker|1510101 +cabinetmaking|1510167 +cabinetry|1510229 +cabinetwork|1510291 +cable|1510369 +cable car|1510790 +cable length|1510825 +cable railway|1510880 +cable system|1510990 +cable television|1511089 +cable television service|1511233 +cable tramway|1511332 +cable's length|1510735 +cablegram|1511412 +cabman|1511469 +cabochon|1511565 +cabomba|1511602 +cabomba caroliniana|1511663 +cabombaceae|1511744 +caboodle|1511842 +caboose|1511917 +cabot|1512027 +cabotage|1512157 +cabriolet|1512217 +cabstand|1512262 +cacajao|1512306 +cacalia|1512358 +cacalia javanica|1512417 +cacalia lutea|1512557 +cacao|1512694 +cacao bean|1512785 +cacao moth|1512864 +cacao tree|1512936 +cacatua|1513027 +cacatua galerita|1513099 +cachalot|1513193 +cache|1513266 +cachectic|1513459 +cachet|1513525 +cachexia|1513649 +cachexy|1513731 +cachi|1513813 +cachinnate|1513848 +cachinnation|1513900 +cachou|1513937 +cacicus|1513961 +cacique|1514011 +cackel|1514076 +cackle|1514098 +cackler|1514313 +cackly|1514374 +cacodaemon|1514421 +cacodaemonic|1514463 +cacodemon|1514508 +cacodemonic|1514550 +cacodyl|1514595 +cacodyl group|1514729 +cacodyl radical|1514819 +cacodylic|1514909 +cacoethes|1514956 +cacogenesis|1515007 +cacogenic|1515050 +cacogenics|1515102 +cacography|1515156 +cacomistle|1515224 +cacomixle|1515362 +cacophonic|1515500 +cacophonous|1515717 +cacophony|1515946 +cactaceae|1516014 +cactus|1516101 +cactus euphorbia|1516127 +cactus family|1516184 +cactus mouse|1516261 +cactus wren|1516314 +cacuminal|1516351 +cad|1516389 +cadaster|1516537 +cadastral|1516582 +cadastre|1516618 +cadaver|1516663 +cadaveric|1516721 +cadaverine|1516754 +cadaverous|1516791 +caddice fly|1517057 +caddice-fly|1516874 +caddie|1517240 +caddis fly|1517496 +caddis-fly|1517313 +caddish|1517679 +caddisworm|1517732 +caddo|1517771 +caddoan|1517935 +caddoan language|1518059 +caddy|1518192 +cade|1518253 +cadence|1518276 +cadenced|1518415 +cadency|1518460 +cadent|1518497 +cadenza|1518542 +cadet|1518583 +cadetship|1518612 +cadge|1518686 +cadger|1518765 +cadiz|1518816 +cadmium|1518871 +cadmium cell|1518931 +cadmium orange|1518979 +cadmium sulfide|1519018 +cadmium sulphide|1519060 +cadmium yellow|1519106 +cadmium yellow pale|1519138 +cadra|1519182 +cadra cautella|1519231 +cadra figulilella|1519312 +cadre|1519390 +caducean|1519456 +caduceus|1519482 +caducous|1519509 +caecal|1519551 +caeciliadae|1519599 +caecilian|1519699 +caeciliidae|1519761 +caecum|1519861 +caelum|1519920 +caenogenesis|1519957 +caenolestes|1520088 +caenolestidae|1520152 +caesalpinia|1520224 +caesalpinia bonduc|1520293 +caesalpinia bonducella|1520387 +caesalpinia coriaria|1520485 +caesalpinia decapetala|1520551 +caesalpinia echinata|1520651 +caesalpinia ferrea|1520755 +caesalpinia gilliesii|1520826 +caesalpinia pulcherrima|1520942 +caesalpinia sepiaria|1521087 +caesalpiniaceae|1521185 +caesalpinioideae|1521268 +caesar|1521357 +caesar salad|1521599 +caesar's agaric|1521521 +caesarea|1521647 +caesarean|1521703 +caesarean delivery|1522031 +caesarean section|1522216 +caesarian|1522401 +caesarism|1522556 +caesaropapism|1522722 +caesium|1522823 +caesium clock|1522890 +caespitose|1522926 +caesura|1522974 +caesural|1523066 +cafe|1523102 +cafe au lait|1523188 +cafe noir|1523222 +cafe royale|1523263 +cafeteria|1523309 +cafeteria facility|1523365 +cafeteria tray|1523415 +caff|1523444 +caffe latte|1523498 +caffein|1523534 +caffein addict|1523569 +caffein addiction|1523616 +caffeine|1523671 +caffeine addict|1523706 +caffeinic|1523753 +caffeinism|1523780 +caffer|1523861 +caffer cat|1523911 +caffiene intoxication|1523964 +caffre|1524045 +caftan|1524095 +cage|1524150 +cage in|1524339 +cager|1524376 +cagey|1524432 +cagily|1524498 +cagliostro|1524527 +cagney|1524643 +cagoule|1524735 +cagy|1524789 +cahita|1524856 +cahoots|1524939 +caiman|1524977 +caiman lizard|1525032 +caiman sclerops|1525074 +caimitillo|1525147 +caimito|1525259 +cain|1525320 +cainogenesis|1525354 +cairene|1525485 +cairina|1525519 +cairina moschata|1525569 +cairn|1525640 +cairn terrier|1525704 +cairned|1525741 +cairngorm|1525777 +cairo|1525816 +caisson|1525931 +caisson disease|1526065 +caitiff|1526193 +caitra|1526238 +cajan pea|1526288 +cajanus|1526418 +cajanus cajan|1526475 +cajole|1526592 +cajolery|1526666 +cajolingly|1526714 +cajun|1526743 +cakchiquel|1526772 +cake|1526858 +cake mix|1526949 +cakehole|1526977 +cakewalk|1527058 +cakile|1527204 +cakile maritima|1527262 +calaba|1527336 +calabar bean|1527447 +calabar-bean vine|1527393 +calabash|1527486 +calabash pipe|1527670 +calabash tree|1527720 +calabazilla|1527775 +calabria|1527911 +calabur tree|1527953 +calabura|1528043 +caladenia|1528133 +caladenia cairnsiana|1528178 +caladium|1528252 +caladium bicolor|1528281 +calais|1528333 +calamagrostic quadriseta|1528366 +calamagrostis|1528458 +calamagrostis acutiflora|1528639 +calamari|1528739 +calamary|1528780 +calamine|1528821 +calamine lotion|1528860 +calamint|1528904 +calamintha|1528944 +calamintha grandiflora|1529012 +calamintha nepeta|1529146 +calamintha nepeta glantulosa|1529303 +calamintha sylvatica|1529471 +calamitous|1529579 +calamity|1529642 +calamity jane|1529719 +calamus|1529817 +calamus australis|1530026 +calamus oil|1530091 +calamus penna|1530116 +calamus rotang|1530176 +calan|1530242 +calando|1530321 +calandrinia|1530349 +calandrinia ciliata|1530426 +calanthe|1530517 +calapooya|1530561 +calapuya|1530627 +calash|1530692 +calash top|1530752 +calathian violet|1530792 +calc-tufa|1530862 +calcaneal|1530897 +calcaneus|1530923 +calcareous|1530977 +calcarine fissure|1531013 +calcarine sulcus|1531064 +calced|1531115 +calcedony|1531143 +calceiform|1531196 +calceolaria|1531231 +calceolate|1531271 +calceus|1531306 +calcic|1531328 +calcicolous|1531366 +calciferol|1531399 +calciferous|1531492 +calcific|1531535 +calcification|1531562 +calcifugous|1531691 +calcify|1531724 +calcimine|1531823 +calcination|1531881 +calcine|1531936 +calcined lime|1531966 +calcite|1532067 +calcitic|1532089 +calcitonin|1532111 +calcium|1532163 +calcium bicarbonate|1532382 +calcium blocker|1532442 +calcium carbide|1532537 +calcium carbonate|1532586 +calcium chloride|1532623 +calcium hydrate|1532654 +calcium hydride|1532779 +calcium hydroxide|1532822 +calcium hypochlorite|1532947 +calcium ion|1533038 +calcium lactate|1533132 +calcium light|1533162 +calcium nitrate|1533200 +calcium octadecanoate|1533233 +calcium oxide|1533286 +calcium phosphate|1533387 +calcium stearate|1533459 +calcium sulfate|1533512 +calcium sulphate|1533559 +calcium-channel blocker|1532223 +calcium-cyanamide|1532318 +calculable|1533606 +calculate|1533743 +calculated|1534072 +calculating|1534151 +calculating machine|1534215 +calculation|1534263 +calculative|1534429 +calculator|1534493 +calculous|1534591 +calculus|1534620 +calculus of variations|1534773 +calcutta|1534850 +calcuttan|1534914 +calder|1534971 +caldera|1535051 +calderon|1535091 +calderon de la barca|1535192 +caldron|1535305 +caldwell|1535335 +calean|1535418 +caleche|1535545 +caledonia|1535604 +caledonian canal|1535705 +calefacient|1535754 +calefaction|1535787 +calefactive|1535851 +calefactory|1535896 +calendar|1535941 +calendar day|1536067 +calendar method|1536133 +calendar method of birth control|1536267 +calendar month|1536401 +calendar week|1536465 +calendar year|1536527 +calender|1536581 +calendered|1536620 +calendric|1536660 +calendrical|1536735 +calendula|1536810 +calendula officinalis|1536836 +caley pea|1536952 +calf|1537048 +calf bone|1537304 +calf love|1537339 +calf roping|1537392 +calf's brain|1537204 +calf's liver|1537232 +calf's tongue|1537274 +calf's-foot jelly|1537163 +calfskin|1537420 +calgary|1537451 +cali|1537505 +cali cartel|1537553 +caliber|1537598 +calibrate|1537690 +calibrated|1537806 +calibration|1537850 +calibre|1537912 +caliche|1538004 +caliche-topped|1538057 +calico|1538089 +calico aster|1538334 +calico bush|1538376 +calico cat|1538465 +calico crab|1538569 +calicular|1538652 +caliculus|1538761 +calidris|1538879 +calidris canutus|1538932 +calidris ferruginea|1538999 +calidris melanotos|1539075 +calif|1539161 +calif.|1539281 +california|1539464 +california allspice|1539533 +california bay tree|1539626 +california beauty|1539811 +california black oak|1539892 +california black walnut|1539974 +california bluebell|1540070 +california box elder|1540284 +california buckthorn|1540401 +california buckwheat|1540513 +california coffee|1540611 +california condor|1540720 +california dandelion|1540796 +california false morel|1540900 +california fern|1540987 +california four o'clock|1541125 +california fuchsia|1541234 +california lady's slipper|1541359 +california laurel|1541504 +california live oak|1541687 +california newt|1541778 +california nutmeg|1541847 +california olive|1541927 +california personality inventory|1542109 +california pitcher plant|1542244 +california pompano|1542342 +california poppy|1542455 +california privet|1542530 +california quail|1542604 +california redbud|1542675 +california redwood|1542766 +california romero|1542864 +california sage|1542968 +california sagebrush|1543073 +california sea lion|1543183 +california single-leaf pinyon|1543286 +california sycamore|1543388 +california tree poppy|1543482 +california whipsnake|1543586 +california white fir|1543695 +california white oak|1543809 +california wine|1543919 +california yellow bells|1543970 +california yew|1544101 +californian|1544185 +californium|1544260 +caliginous|1544324 +caligula|1544349 +caliper|1544425 +calipers|1544571 +caliph|1544760 +caliphate|1544880 +caliphate state|1545001 +calisaya|1545175 +calisthenic|1545271 +calisthenic exercise|1545355 +calisthenics|1545498 +calixtus iii|1545641 +calk|1545788 +calkin|1545899 +call|1545926 +call at|1547614 +call attention|1547692 +call back|1547766 +call box|1547926 +call center|1548078 +call centre|1548125 +call down|1548172 +call fire|1548493 +call for|1548524 +call forth|1548747 +call forwarding|1548903 +call girl|1548948 +call in|1549093 +call into question|1549317 +call it a day|1549371 +call it quits|1549452 +call loan|1549533 +call mark|1549569 +call number|1549615 +call off|1549661 +call on|1549698 +call on the carpet|1549734 +call one's bluff|1549954 +call option|1549990 +call out|1550043 +call the shots|1550183 +call the tune|1550255 +call to order|1550327 +call up|1550355 +call waiting|1550559 +call-back|1547373 +call-board|1547490 +call-in|1547538 +call-out|1547586 +calla|1550601 +calla lily|1550723 +calla palustris|1550790 +callable|1550887 +callas|1550914 +callathump|1551123 +callback|1551242 +called|1551282 +called for|1551334 +caller|1551375 +caller id|1551758 +caller-out|1551632 +caller-up|1551669 +calliandra|1551795 +callicebus|1551826 +calligraph|1551887 +calligrapher|1551913 +calligraphic|1551979 +calligraphical|1552039 +calligraphist|1552099 +calligraphy|1552165 +callimorpha|1552221 +callimorpha jacobeae|1552288 +callinectes|1552383 +callinectes sapidus|1552450 +calling|1552523 +calling card|1552598 +calling into question|1552783 +calling together|1552847 +callionymidae|1552915 +calliope|1552985 +calliophis|1553066 +calliopsis|1553154 +calliper|1553232 +callipers|1553377 +calliphora|1553565 +calliphora vicina|1553629 +calliphoridae|1553702 +callipygian|1553777 +callipygous|1553818 +callirhoe|1553859 +callirhoe digitata|1553926 +callirhoe involucrata|1554007 +callirhoe triangulata|1554093 +callisaurus|1554182 +callisaurus draconoides|1554247 +callistephus|1554370 +callistephus chinensis|1554444 +callisthenic exercise|1554518 +callisthenics|1554661 +callisto|1554804 +callithricidae|1554859 +callithrix|1554934 +callithump|1554995 +callithump parade|1555114 +callithumpian|1555170 +callitrichaceae|1555199 +callitriche|1555282 +callitris|1555351 +callitris calcarata|1555413 +callitris cupressiformis|1555532 +callitris endlicheri|1555622 +callitris glauca|1555742 +callitris glaucophylla|1555840 +callitris parlatorei|1555944 +callitris quadrivalvis|1556025 +callophis|1556134 +callorhinus|1556221 +callorhinus ursinus|1556285 +callosectomy|1556359 +callosity|1556407 +callosotomy|1556443 +callous|1556491 +calloused|1556607 +callously|1556652 +callousness|1556682 +callow|1556770 +callowness|1556831 +calluna|1556897 +calluna vulgaris|1556958 +callus|1557040 +calm|1557182 +calm air|1557699 +calm down|1557749 +calming|1558002 +calmly|1558130 +calmness|1558154 +calnada pea|1558257 +calocarpum|1558333 +calocarpum zapota|1558412 +calocedrus|1558507 +calocedrus decurrens|1558572 +calochortus|1558685 +calochortus albus|1558757 +calochortus amabilis|1558864 +calochortus amoenus|1558979 +calochortus elegans|1559069 +calochortus kennedyi|1559186 +calochortus luteus|1559297 +calochortus macrocarpus|1559404 +calochortus nuttallii|1559524 +calomel|1559604 +calophyllum|1559649 +calophyllum calaba|1559722 +calophyllum candidissimum|1559798 +calophyllum inophyllum|1559890 +calophyllum longifolium|1559969 +calopogon|1560037 +calopogon pulchellum|1560112 +calopogon tuberosum|1560220 +caloric|1560327 +calorie|1560405 +calorie chart|1560594 +calorifacient|1560630 +calorific|1560657 +calorimeter|1560680 +calorimetric|1560756 +calorimetry|1560819 +caloscypha fulgens|1560882 +calosoma|1560952 +calosoma scrutator|1560999 +calostoma cinnabarina|1561080 +calostoma lutescens|1561160 +calostoma ravenelii|1561236 +calostomataceae|1561312 +calpac|1561390 +calpack|1561425 +calpe|1561460 +calque|1561556 +caltha|1561616 +caltha palustris|1561674 +caltrop|1561818 +calumet|1562034 +calumniate|1562094 +calumniatory|1562189 +calumnious|1562307 +calumniously|1562425 +calumny|1562459 +calvados|1562612 +calvaria|1562646 +calvary|1562681 +calvary clover|1562748 +calvary cross|1562845 +calvatia|1562905 +calvatia gigantea|1562960 +calve|1563043 +calved|1563113 +calvert vaux|1563134 +calves' feet|1563236 +calves' liver|1563268 +calvin|1563310 +calvin coolidge|1563465 +calvin klein|1563615 +calvin richard klein|1563730 +calving|1563853 +calvinism|1563910 +calvinist|1563953 +calvinistic|1564052 +calvinistic baptist|1564122 +calvinistical|1564211 +calvino|1564283 +calx|1564336 +calycanthaceae|1564437 +calycanthus|1564564 +calycanthus family|1564637 +calycanthus floridus|1564749 +calycanthus occidentalis|1564872 +calyceal|1564970 +calycinal|1565056 +calycine|1565142 +calycle|1565228 +calycled|1565390 +calycophyllum|1565499 +calycophyllum candidissimum|1565576 +calycular|1565668 +calyculate|1565777 +calyculus|1565886 +calymmatobacterium|1566046 +calymmatobacterium granulomatis|1566137 +calypso|1566227 +calypso bulbosa|1566325 +calypter|1566414 +calyptra|1566445 +calyptrate|1566490 +calyptridium umbellatum|1566549 +calystegia|1566682 +calystegia sepium|1566761 +calyx|1566868 +calyx tube|1566933 +cam|1566987 +cam river|1567056 +cam stroke|1567105 +camachile|1567154 +camail|1567239 +camaraderie|1567277 +camarilla|1567370 +camas|1567455 +camash|1567516 +camass|1567577 +camassia|1567638 +camassia leichtlinii|1567727 +camassia quamash|1567831 +camassia scilloides|1567922 +cambarus|1568034 +camber|1568092 +camber arch|1568206 +camberwell beauty|1568232 +cambial|1568410 +cambium|1568442 +cambodia|1568490 +cambodian|1568574 +cambodian capital|1568682 +cambodian monetary unit|1568765 +cambria|1568836 +cambrian|1568896 +cambrian period|1569048 +cambric|1569123 +cambric tea|1569170 +cambridge|1569195 +cambridge university|1569348 +camcorder|1569420 +camden|1569474 +camel|1569526 +camel racing|1569653 +camel's hair|1569591 +camelhair|1569682 +camelia|1569744 +camelidae|1569781 +camelina|1569841 +camelina sativa|1569905 +camellia|1569990 +camellia japonica|1570027 +camellia sinensis|1570098 +camellia state|1570158 +camelopard|1570238 +camelot|1570298 +camelpox|1570331 +camelus|1570364 +camelus bactrianus|1570416 +camelus dromedarius|1570484 +camembert|1570563 +cameo|1570599 +camera|1570623 +camera angle|1570754 +camera care|1570790 +camera lens|1570835 +camera lucida|1570892 +camera obscura|1570930 +camera operator|1570962 +camera tripod|1571034 +cameraman|1571064 +cameroon|1571136 +cameroon franc|1571248 +cameroonian|1571293 +cameroun|1571383 +camillo golgi|1571471 +camion|1571526 +camise|1571599 +camisole|1571621 +camlan|1571715 +camlet|1571800 +camo|1571861 +camomile|1571916 +camomile tea|1572003 +camorra|1572032 +camosh|1572090 +camouflage|1572151 +camouflaged|1572352 +camp|1572393 +camp bed|1572939 +camp chair|1572965 +camp david|1572999 +camp down|1573038 +camp follower|1573075 +camp meeting|1573240 +camp out|1573270 +camp robber|1573382 +camp-made|1572898 +campaign|1573462 +campaign for governor|1573772 +campaign hat|1573851 +campaigner|1573889 +campaigning|1573968 +campana|1574090 +campania|1574142 +campanile|1574184 +campanula|1574221 +campanula americana|1574273 +campanula aparinoides|1574359 +campanula carpatica|1574450 +campanula divaricata|1574560 +campanula glomerata|1574650 +campanula medium|1574741 +campanula persicifolia|1574836 +campanula pyramidalis|1574947 +campanula rapunculoides|1575054 +campanula rapunculus|1575152 +campanula rotundifolia|1575251 +campanula trachelium|1575345 +campanulaceae|1575453 +campanulales|1575542 +campanular|1575608 +campanulate|1575671 +campanulated|1575734 +campbell|1575797 +campeachy|1575852 +campeche|1575958 +campephilus|1576014 +campephilus principalis|1576076 +camper|1576196 +camper trailer|1576289 +campestral|1576335 +campfire|1576361 +campfire girl|1576384 +campground|1576437 +camphor|1576541 +camphor ball|1576572 +camphor daisy|1576618 +camphor dune tansy|1576679 +camphor ice|1576751 +camphor oil|1576779 +camphor tree|1576804 +camphoraceous|1576853 +camphorate|1576889 +camphorated|1576923 +camphorated tincture of opium|1576956 +camphoric|1577051 +camphorweed|1577083 +camping|1577175 +camping area|1577259 +camping bus|1577363 +camping ground|1577426 +camping site|1577530 +campion|1577634 +campmate|1577674 +campong|1577712 +camponotus|1577752 +campsis radicans|1577816 +campsite|1577921 +campstool|1578025 +camptosorus|1578050 +camptosorus rhizophyllus|1578112 +campus|1578231 +campy|1578253 +campyloneurum|1578283 +campyloneurum augustifolium|1578351 +campylorhynchus|1578480 +campylotropous|1578582 +campylotropous ovule|1578621 +camshaft|1578657 +camus|1578696 +camwood|1578744 +can|1578799 +can buoy|1579376 +can of worms|1579403 +can opener|1579441 +can-do|1579342 +canaan|1579479 +canaanite|1579608 +canaanitic|1579692 +canaanitic language|1579751 +canachites|1579819 +canachites canadensis|1579878 +canada|1579952 +canada anemone|1580020 +canada balsam|1580097 +canada garlic|1580217 +canada ginger|1580310 +canada goose|1580392 +canada jay|1580473 +canada lily|1580564 +canada lynx|1580665 +canada moonseed|1580729 +canada plum|1580832 +canada porcupine|1580893 +canada thistle|1580975 +canada violet|1581076 +canada wild rye|1581168 +canadian|1581236 +canadian aspen|1581375 +canadian bacon|1581530 +canadian capital|1581575 +canadian dollar|1581660 +canadian falls|1581708 +canadian fleabane|1581779 +canadian french|1581886 +canadian goldenrod|1581934 +canadian goose|1582028 +canadian hemlock|1582111 +canadian maritime provinces|1582220 +canadian pondweed|1582386 +canadian province|1582459 +canadian red pine|1582519 +canadian river|1582613 +canadian security intelligence service|1582667 +canafistola|1582793 +canafistula|1582915 +canal|1583037 +canal boat|1583198 +canal of schlemm|1583246 +canal zone|1583362 +canalicular|1583416 +canaliculate|1583471 +canaliculus|1583502 +canalis cervicis uteri|1583558 +canalis inguinalis|1583640 +canalis vertebralis|1583718 +canalisation|1583811 +canalise|1583928 +canalization|1584096 +canalize|1584213 +cananga|1584381 +cananga odorata|1584468 +canangium|1584567 +canape|1584656 +canara|1584700 +canard|1584802 +canarese|1584844 +canaries|1584890 +canary|1585175 +canary bird|1585463 +canary creeper|1585497 +canary grass|1585588 +canary island hare's foot fern|1585652 +canary islands|1585761 +canary seed|1585816 +canary whitewood|1585856 +canary wine|1585978 +canary yellow|1586022 +canary-yellow|1585423 +canarybird flower|1586070 +canarybird vine|1586161 +canasta|1586252 +canavalia|1586297 +canavalia ensiformis|1586360 +canavalia gladiata|1586455 +canavanine|1586518 +canberra|1586568 +cancan|1586652 +cancel|1586695 +cancel out|1586932 +cancellate|1586995 +cancellated|1587109 +cancellation|1587222 +cancelled|1587283 +cancellous|1587306 +cancer|1587358 +cancer body|1587697 +cancer borealis|1587777 +cancer cell|1587834 +cancer drug|1587871 +cancer irroratus|1587942 +cancer juice|1588000 +cancer magister|1588035 +cancer of the blood|1588096 +cancer of the liver|1588190 +cancer the crab|1588256 +cancer weed|1588373 +cancerous|1588512 +cancerweed|1588555 +cancridae|1588613 +cancroid|1588676 +cancun|1588748 +candela|1588800 +candelabra|1588884 +candelabrum|1588987 +candelilla|1589045 +candelilla wax|1589177 +candent|1589205 +candescent|1589241 +candid|1589267 +candid camera|1589480 +candida|1589530 +candida albicans|1589554 +candidacy|1589622 +candidate|1589744 +candidature|1589892 +candidiasis|1590014 +candidly|1590087 +candidness|1590121 +candied|1590200 +candied apple|1590284 +candied citrus peel|1590389 +candied fruit|1590451 +candle|1590503 +candle flame|1590634 +candle holder|1590706 +candleberry|1590748 +candlelight|1590836 +candlemaker|1590908 +candlemas|1590938 +candlemas day|1590999 +candlenut|1591064 +candlepin bowling|1591165 +candlepins|1591211 +candlepower|1591257 +candlepower unit|1591329 +candlesnuffer|1591390 +candlestick|1591423 +candlestick tulip|1591465 +candlewick|1591525 +candlewood|1591584 +candor|1591615 +candour|1591763 +candy|1591910 +candy apple|1592016 +candy bar|1592121 +candy cane|1592146 +candy corn|1592172 +candy egg|1592198 +candy kiss|1592228 +candy store|1592267 +candy striper|1592313 +candy thermometer|1592360 +candyfloss|1592399 +candymaker|1592449 +candytuft|1592495 +candyweed|1592521 +cane|1592621 +cane blight|1592733 +cane reed|1592761 +cane sugar|1592819 +canebrake|1592896 +canebrake rattler|1592953 +canebrake rattlesnake|1593098 +canecutter|1593243 +canella|1593349 +canella bark|1593497 +canella family|1593547 +canella winterana|1593625 +canella-alba|1593399 +canellaceae|1593728 +canescent|1593818 +canetti|1593875 +canfield|1593928 +canful|1593965 +cangue|1593998 +canicola fever|1594039 +canicula|1594089 +canicular|1594170 +canicular days|1594259 +canicule|1594335 +canid|1594411 +canidae|1594443 +canine|1594497 +canine chorea|1594630 +canine distemper|1594675 +canine tooth|1594711 +caning|1594781 +canis|1594834 +canis aureus|1594880 +canis dingo|1594935 +canis familiaris|1595001 +canis latrans|1595074 +canis lupus|1595147 +canis lupus tundrarum|1595207 +canis major|1595288 +canis minor|1595345 +canis niger|1595403 +canis rufus|1595473 +canistel|1595543 +canistel tree|1595644 +canister|1595716 +canister shot|1595805 +canker|1595863 +canker brake|1595934 +cankerous|1596035 +cankerweed|1596083 +cankerworm|1596163 +canna|1596195 +canna edulis|1596232 +canna generalis|1596315 +canna indica|1596373 +canna lily|1596456 +cannabidaceae|1596498 +cannabin|1596601 +cannabis|1596648 +cannabis indica|1596746 +cannabis resin|1596813 +cannabis sativa|1596860 +cannaceae|1596941 +cannae|1597019 +canned|1597057 +canned food|1597118 +canned foods|1597201 +canned goods|1597352 +canned hunt|1597435 +canned meat|1597469 +cannel coal|1597553 +cannelloni|1597600 +cannery|1597625 +cannes|1597687 +cannibal|1597744 +cannibal mound|1597820 +cannibalic|1597876 +cannibalise|1597905 +cannibalism|1598023 +cannibalistic|1598061 +cannibalize|1598117 +cannikin|1598235 +cannily|1598288 +cannister|1598316 +cannon|1598358 +cannon ball|1598590 +cannon bone|1598733 +cannon cracker|1598762 +cannon fire|1598813 +cannon fodder|1598861 +cannonade|1598903 +cannonball|1598979 +cannonball along|1599041 +cannoneer|1599172 +cannula|1599273 +cannular|1599302 +cannulate|1599335 +cannulation|1599421 +cannulisation|1599554 +cannulise|1599687 +cannulization|1599773 +cannulize|1599906 +canny|1599992 +canoe|1600031 +canoe birch|1600069 +canoe cedar|1600192 +canoeist|1600266 +canola oil|1600316 +canon|1600354 +canon law|1600538 +canonic|1600594 +canonical|1600738 +canonical hour|1600876 +canonisation|1600917 +canonise|1600967 +canonised|1601091 +canonist|1601152 +canonization|1601226 +canonize|1601276 +canonized|1601400 +canoodle|1601461 +canopic jar|1601483 +canopic vase|1601521 +canopied|1601559 +canopus|1601585 +canopy|1601621 +canorous|1601711 +cant|1601763 +cant dog|1602046 +cant hook|1602083 +cant over|1602124 +cantabile|1602170 +cantabrian mountains|1602223 +cantabrigian|1602354 +cantala|1602404 +cantaloup|1602521 +cantaloupe|1602686 +cantaloupe vine|1602850 +cantankerous|1602975 +cantata|1603056 +canted|1603112 +canteen|1603165 +canter|1603341 +canterbury|1603417 +canterbury bell|1603453 +canterbury tales|1603597 +cantering|1603671 +cantering rhythm|1603704 +cantharellus|1603774 +cantharellus cibarius|1603841 +cantharellus cinnabarinus|1603925 +cantharellus clavatus|1604014 +cantharellus floccosus|1604085 +canthus|1604168 +canticle|1604192 +canticle of canticles|1604222 +canticle of simeon|1604320 +canticles|1604388 +cantilever|1604502 +cantilever bridge|1604601 +cantillate|1604640 +cantillation|1604687 +cantle|1604729 +canto|1604759 +canton|1604812 +canton crepe|1605071 +canton flannel|1605118 +canton ginger|1605202 +canton river|1605292 +cantonal|1605354 +cantonese|1605405 +cantonese dialect|1605476 +cantonment|1605555 +cantor|1605617 +cantus firmus|1605694 +canty|1605754 +canuck|1605779 +canulate|1605818 +canulation|1605904 +canulisation|1606037 +canulization|1606170 +canute|1606303 +canute the great|1606391 +canvas|1606489 +canvas tent|1606866 +canvasback|1606927 +canvasback duck|1606987 +canvass|1607047 +canvasser|1607593 +canvassing|1607800 +canyon|1607867 +canyon live oak|1607896 +canyon oak|1607979 +canyon treefrog|1608062 +canyonlands national park|1608133 +canyonside|1608208 +caoutchouc|1608247 +caoutchouc tree|1608305 +cap|1608400 +cap off|1608769 +cap opener|1608854 +cap screw|1608888 +cap-a-pie|1608734 +capability|1608913 +capable|1609041 +capableness|1609226 +capably|1609306 +capacious|1609361 +capaciousness|1609386 +capacitance|1609465 +capacitance unit|1609603 +capacitate|1609654 +capacitive|1609719 +capacitor|1609760 +capacitor microphone|1609840 +capacity|1609907 +capacity measure|1610211 +capacity unit|1610365 +caparison|1610519 +caparisoned|1610670 +cape|1610704 +cape aloe|1610795 +cape ann|1610830 +cape breton island|1610867 +cape buffalo|1610921 +cape canaveral|1610998 +cape cod|1611079 +cape cod bay|1611116 +cape cod canal|1611155 +cape colony|1611200 +cape dagga|1611289 +cape fear|1611388 +cape fear river|1611427 +cape flattery|1611474 +cape forget-me-not|1611521 +cape girardeau|1611605 +cape gooseberry|1611649 +cape hatteras|1611740 +cape horn|1611816 +cape hunting dog|1611884 +cape hyacinth|1611980 +cape jasmine|1612068 +cape jessamine|1612152 +cape kafferboom|1612236 +cape kennedy|1612327 +cape lobster|1612406 +cape marigold|1612471 +cape may|1612532 +cape may warbler|1612569 +cape of good hope|1612661 +cape of good hope province|1612756 +cape passero|1612860 +cape periwinkle|1612929 +cape primrose|1613113 +cape province|1613164 +cape sable|1613255 +cape town|1613343 +cape trafalgar|1613406 +cape tulip|1613455 +cape verde|1613518 +cape verde escudo|1613591 +cape verde islands|1613668 +cape verde monetary unit|1613727 +cape yellowwood|1613800 +cape york|1613889 +cape york peninsula|1613928 +capek|1613987 +capelan|1614055 +capelin|1614093 +capeline bandage|1614131 +capella|1614171 +caper|1614279 +caper family|1614537 +caper sauce|1614617 +caper spurge|1614644 +caper tree|1614717 +capercaillie|1614835 +capercailzie|1614912 +capet|1614989 +capetian|1615036 +capetian dynasty|1615117 +capeweed|1615168 +capful|1615251 +capibara|1615280 +capillarity|1615362 +capillary|1615416 +capillary action|1615557 +capillary artery|1615611 +capillary bed|1615694 +capillary fracture|1615731 +capillary tube|1615792 +capillary tubing|1615855 +capillary vein|1615918 +capillary vessel|1615986 +capital|1616035 +capital account|1616332 +capital cost|1616438 +capital expenditure|1616493 +capital gain|1616527 +capital gains tax|1616564 +capital letter|1616624 +capital levy|1616729 +capital loss|1616784 +capital of afghanistan|1616821 +capital of alabama|1616899 +capital of alaska|1616971 +capital of antigua and barbuda|1617037 +capital of argentina|1617149 +capital of arizona|1617235 +capital of arkansas|1617304 +capital of armenia|1617379 +capital of australia|1617457 +capital of austria|1617553 +capital of azerbaijan|1617641 +capital of bahrain|1617712 +capital of bangladesh|1617783 +capital of barbados|1617865 +capital of belarus|1617938 +capital of belgium|1617999 +capital of benin|1618098 +capital of botswana|1618169 +capital of brazil|1618244 +capital of burundi|1618333 +capital of california|1618416 +capital of cameroon|1618494 +capital of canada|1618568 +capital of cape verde|1618654 +capital of central africa|1618746 +capital of chad|1618831 +capital of chile|1618918 +capital of colombia|1619019 +capital of colorado|1619092 +capital of connecticut|1619177 +capital of costa rica|1619255 +capital of cuba|1619334 +capital of cyprus|1619413 +capital of delaware|1619483 +capital of djibouti|1619552 +capital of ecuador|1619632 +capital of egypt|1619702 +capital of estonia|1619810 +capital of ethiopia|1619885 +capital of finland|1619974 +capital of florida|1620080 +capital of france|1620153 +capital of gabon|1620250 +capital of gambia|1620321 +capital of georgia|1620395 +capital of ghana|1620513 +capital of greece|1620579 +capital of grenada|1620670 +capital of guatemala|1620747 +capital of guinea|1620830 +capital of guinea-bissau|1620913 +capital of hawaii|1620996 +capital of hungary|1621086 +capital of iceland|1621177 +capital of idaho|1621256 +capital of illinois|1621319 +capital of india|1621394 +capital of indiana|1621479 +capital of indonesia|1621553 +capital of iowa|1621638 +capital of iran|1621704 +capital of iraq|1621793 +capital of ireland|1621866 +capital of israel|1621956 +capital of italy|1622028 +capital of jamaica|1622127 +capital of japan|1622217 +capital of jordan|1622321 +capital of kansas|1622389 +capital of kazakhstan|1622455 +capital of kentucky|1622530 +capital of kenya|1622603 +capital of kuwait|1622671 +capital of kyrgyzstan|1622759 +capital of laos|1622842 +capital of latvia|1622926 +capital of lebanon|1622989 +capital of lesotho|1623060 +capital of liberia|1623131 +capital of libya|1623226 +capital of liechtenstein|1623313 +capital of lithuania|1623395 +capital of louisiana|1623480 +capital of luxembourg|1623557 +capital of madagascar|1623681 +capital of maine|1623764 +capital of malawi|1623829 +capital of malaysia|1623900 +capital of malta|1623997 +capital of maryland|1624074 +capital of massachusetts|1624147 +capital of mexico|1624266 +capital of michigan|1624373 +capital of minnesota|1624444 +capital of mississippi|1624529 +capital of missouri|1624606 +capital of moldova|1624684 +capital of mongolia|1624757 +capital of montana|1624857 +capital of morocco|1624925 +capital of mozambique|1624995 +capital of nebraska|1625072 +capital of nepal|1625143 +capital of nevada|1625222 +capital of new hampshire|1625293 +capital of new jersey|1625374 +capital of new mexico|1625449 +capital of new york|1625525 +capital of new zealand|1625595 +capital of nicaragua|1625678 +capital of niger|1625773 +capital of nigeria|1625840 +capital of north carolina|1625927 +capital of north dakota|1626010 +capital of north korea|1626090 +capital of northern ireland|1626172 +capital of norway|1626253 +capital of ohio|1626337 +capital of oklahoma|1626401 +capital of oman|1626478 +capital of oregon|1626555 +capital of pakistan|1626620 +capital of panama|1626696 +capital of papua new guinea|1626789 +capital of paraguay|1626884 +capital of pennsylvania|1626964 +capital of peru|1627046 +capital of poland|1627109 +capital of portugal|1627187 +capital of qatar|1627272 +capital of red china|1627355 +capital of rhode island|1627446 +capital of romania|1627528 +capital of rwanda|1627623 +capital of san marino|1627692 +capital of saudi arabia|1627773 +capital of senegal|1627854 +capital of seychelles|1627929 +capital of sierra leone|1628013 +capital of singapore|1628101 +capital of slovakia|1628179 +capital of somalia|1628265 +capital of south africa|1628355 +capital of south carolina|1628438 +capital of south dakota|1628522 +capital of south korea|1628600 +capital of spain|1628678 +capital of sri lanka|1628761 +capital of sudan|1628837 +capital of suriname|1628906 +capital of swaziland|1628988 +capital of sweden|1629064 +capital of switzerland|1629136 +capital of syria|1629219 +capital of taiwan|1629288 +capital of tajikistan|1629364 +capital of tanzania|1629463 +capital of tennessee|1629543 +capital of texas|1629618 +capital of thailand|1629682 +capital of the bahamas|1629772 +capital of the dominican republic|1629851 +capital of the netherlands|1629975 +capital of the philippines|1630079 +capital of the russian federation|1630166 +capital of the ukraine|1630283 +capital of the united kingdom|1630357 +capital of the united states|1630481 +capital of tibet|1630609 +capital of togo|1630696 +capital of trinidad and tobago|1630759 +capital of tunisia|1630875 +capital of turkey|1630950 +capital of turkmenistan|1631035 +capital of uganda|1631110 +capital of uruguay|1631180 +capital of utah|1631255 +capital of uzbek|1631325 +capital of vanuatu|1631393 +capital of venezuela|1631472 +capital of vermont|1631548 +capital of vietnam|1631620 +capital of virginia|1631690 +capital of washington|1631762 +capital of west virginia|1631837 +capital of western samoa|1631921 +capital of wisconsin|1632002 +capital of wyoming|1632075 +capital of yugoslavia|1632145 +capital of zambia|1632232 +capital of zimbabwe|1632301 +capital offense|1632384 +capital punishment|1632428 +capital ship|1632510 +capital stock|1632563 +capitalisation|1632645 +capitalise|1632835 +capitalism|1633146 +capitalist|1633238 +capitalist economy|1633525 +capitalistic|1633617 +capitalization|1633820 +capitalize|1634010 +capitate|1634321 +capitate bone|1634418 +capitation|1634493 +capitol|1634546 +capitol building|1634653 +capitol hill|1634724 +capitol reef national park|1634773 +capitonidae|1634850 +capitualtion|1634914 +capitular|1634969 +capitulary|1635007 +capitulate|1635045 +capitulation|1635083 +capitulum|1635140 +capiz|1635224 +caplin|1635295 +capo|1635333 +capon|1635366 +capone|1635434 +caponise|1635509 +caponize|1635584 +caporetto|1635659 +capote|1635723 +capoten|1635804 +cappadocia|1635893 +cappadocian|1635996 +capparidaceae|1636100 +capparis|1636194 +capparis arborea|1636258 +capparis cynophallophora|1636326 +capparis flexuosa|1636421 +capparis mitchellii|1636500 +capparis spinosa|1636569 +capped|1636631 +capped macaque|1636670 +cappelletti|1636759 +capra|1636811 +capra aegagrus|1636929 +capra falconeri|1636997 +capra hircus|1637065 +capra ibex|1637134 +caprella|1637180 +capreolus|1637238 +capreolus capreolus|1637296 +capri|1637366 +capric acid|1637394 +capriccio|1637450 +caprice|1637527 +capricious|1637564 +capriciously|1637644 +capriciousness|1637676 +capricorn|1637839 +capricorn the goat|1638074 +capricornis|1638200 +capricornus|1638264 +caprifig|1638321 +caprifoliaceae|1638407 +caprimulgid|1638508 +caprimulgidae|1638569 +caprimulgiform bird|1638639 +caprimulgiformes|1638673 +caprimulgus|1638752 +caprimulgus carolinensis|1638814 +caprimulgus europaeus|1638924 +caprimulgus vociferus|1639047 +caprine|1639145 +caprine animal|1639167 +capriole|1639202 +caproic acid|1639332 +caproidae|1639389 +capromyidae|1639447 +capros|1639513 +capros aper|1639560 +caprylic acid|1639637 +capsaicin|1639681 +capsella|1639718 +capsella bursa-pastoris|1639782 +capsicum|1639900 +capsicum annuum cerasiforme|1639958 +capsicum annuum conoides|1640075 +capsicum annuum grossum|1640184 +capsicum annuum longum|1640348 +capsicum baccatum|1640512 +capsicum frutescens|1640636 +capsicum frutescens baccatum|1640763 +capsicum pepper plant|1640898 +capsid|1640956 +capsidae|1641022 +capsize|1641105 +capsizing|1641179 +capstan|1641214 +capstone|1641246 +capsula glomeruli|1641342 +capsular|1641427 +capsulate|1641552 +capsulated|1641661 +capsule|1641700 +capsulise|1642167 +capsulize|1642314 +captain|1642461 +captain bligh|1642877 +captain bob|1642955 +captain cook|1643055 +captain hicks|1643135 +captain horatio hornblower|1643248 +captain james cook|1643381 +captain john smith|1643467 +captain kidd|1643551 +captain's chair|1642843 +captaincy|1643639 +captainship|1643725 +caption|1643811 +captious|1643964 +captivate|1644004 +captivated|1644131 +captivating|1644231 +captivatingly|1644320 +captivation|1644382 +captive|1644491 +captive finance company|1644697 +captivity|1644746 +captopril|1644857 +captor|1644938 +capture|1645016 +capturer|1645529 +capuccino|1645607 +capuccino coffee|1645672 +capuchin|1645737 +capulin|1645822 +capulin tree|1645920 +caput|1645983 +capybara|1646128 +car|1646210 +car battery|1646600 +car bomb|1646680 +car boot sale|1646703 +car care|1646767 +car carrier|1646809 +car company|1646838 +car dealer|1646880 +car door|1646907 +car factory|1646930 +car horn|1647028 +car insurance|1647119 +car loan|1647173 +car maker|1647245 +car manufacturer|1647452 +car mirror|1647578 +car park|1647605 +car part|1647657 +car pool|1647715 +car port|1647753 +car race|1647867 +car racing|1647916 +car rental|1647955 +car seat|1648045 +car sickness|1648068 +car tire|1648116 +car traffic|1648182 +car train|1648256 +car transporter|1648296 +car wheel|1648350 +car window|1648375 +car-ferry|1646433 +car-mechanic|1646468 +carabao|1648402 +carabid beetle|1648474 +carabidae|1648519 +carabineer|1648582 +carabiner|1648622 +carabinier|1648706 +caracal|1648746 +caracara|1648803 +caracas|1648828 +carack|1648891 +caracole|1648923 +caracolito|1648946 +caracul|1648997 +carafate|1649058 +carafe|1649142 +caragana|1649174 +caragana arborescens|1649212 +caragana sinica|1649299 +carageen|1649375 +carambola|1649452 +carambola tree|1649547 +caramel|1649611 +caramel apple|1649779 +caramel brown|1649884 +caramel bun|1649988 +caramelise|1650063 +caramelize|1650128 +caramelized sugar|1650193 +carancha|1650248 +caranda|1650293 +caranda palm|1650387 +caranday|1650481 +carangid|1650575 +carangid fish|1650657 +carangidae|1650721 +caranx|1650782 +caranx bartholomaei|1650829 +caranx crysos|1650895 +caranx hippos|1650956 +carapace|1651026 +carapidae|1651070 +carassius|1651128 +carassius auratus|1651184 +carassius carassius|1651261 +carassius vulgaris|1651365 +carat|1651468 +caravaggio|1651552 +caravan|1651628 +caravan inn|1651715 +caravanning|1651792 +caravansary|1651825 +caravanserai|1651902 +caraway|1651979 +caraway seed|1652042 +caraway seed bread|1652123 +carbamate|1652182 +carbamic acid|1652206 +carbamide|1652234 +carbide|1652275 +carbine|1652311 +carbo loading|1652334 +carbocyclic|1652383 +carbohydrate|1652428 +carbohydrate loading|1652495 +carbolated|1652544 +carbolic acid|1652624 +carboloy|1652755 +carbomycin|1652794 +carbon|1652841 +carbon 14|1653034 +carbon arc|1653090 +carbon arc lamp|1653145 +carbon atom|1653200 +carbon black|1653226 +carbon copy|1653293 +carbon cycle|1653326 +carbon dating|1653413 +carbon dichloride|1653497 +carbon dioxide|1653634 +carbon dioxide acidosis|1653723 +carbon disulfide|1653786 +carbon monoxide|1653839 +carbon monoxide gas|1653896 +carbon monoxide poisoning|1653953 +carbon nanotube|1654027 +carbon paper|1654071 +carbon process|1654106 +carbon steel|1654156 +carbon tet|1654184 +carbon tetrachloride|1654331 +carbon tetrahalide|1654478 +carbon-14 dating|1652950 +carbonaceous|1654515 +carbonado|1654594 +carbonara|1654655 +carbonate|1654702 +carbonated|1654761 +carbonated water|1654794 +carbonation|1654880 +carbondale|1654932 +carbonic|1654968 +carbonic acid|1655047 +carbonic acid gas|1655075 +carboniferous|1655164 +carboniferous period|1655341 +carbonisation|1655431 +carbonise|1655493 +carbonization|1655595 +carbonize|1655657 +carbonized|1655759 +carbonnade flamande|1655796 +carbonous|1655848 +carbonyl|1655927 +carbonyl group|1656018 +carbonylic|1656071 +carborundum|1656128 +carboxyl|1656185 +carboxyl group|1656293 +carboxylate|1656355 +carboxylic|1656390 +carboxylic acid|1656447 +carboxymethyl cellulose|1656477 +carboy|1656520 +carbuncle|1656543 +carbuncled|1656601 +carbuncular|1656668 +carburet|1656710 +carburetor|1656745 +carburettor|1656795 +carburise|1656845 +carburize|1656912 +carcajou|1656979 +carcase|1657066 +carcass|1657106 +carcharhinidae|1657146 +carcharhinus|1657219 +carcharhinus leucas|1657284 +carcharhinus limbatus|1657368 +carcharhinus obscurus|1657464 +carcharhinus plumbeus|1657543 +carcharias|1657624 +carcharias taurus|1657711 +carchariidae|1657802 +carcharinus longimanus|1657906 +carcharodon|1658032 +carcharodon carcharias|1658094 +carcinogen|1658221 +carcinogenic|1658258 +carcinoid|1658315 +carcinoma|1658356 +carcinoma in situ|1658411 +carcinomatous|1658467 +carcinomatous myopathy|1658525 +carcinosarcoma|1658661 +card|1658737 +card catalog|1659499 +card catalogue|1659570 +card game|1659641 +card player|1659671 +card shark|1659711 +card sharp|1659863 +card sharper|1660096 +card table|1660329 +card trick|1660368 +card-house|1659270 +card-playing|1659430 +cardamine|1660471 +cardamine bulbifera|1660538 +cardamine bulbosa|1660674 +cardamine diphylla|1660757 +cardamine douglasii|1660907 +cardamine pratensis|1660994 +cardamine rotundifolia|1661121 +cardamom|1661227 +cardamon|1661381 +cardamum|1661535 +cardboard|1661630 +cardcase|1661765 +cardcastle|1661788 +cardhouse|1661867 +cardia|1661946 +cardiac|1661984 +cardiac arrest|1662022 +cardiac arrhythmia|1662088 +cardiac cycle|1662169 +cardiac glucoside|1662210 +cardiac glycoside|1662263 +cardiac insufficiency|1662316 +cardiac massage|1662384 +cardiac monitor|1662451 +cardiac murmur|1662498 +cardiac muscle|1662550 +cardiac output|1662610 +cardiac pacemaker|1662662 +cardiac plexus|1662751 +cardiac resuscitation|1662805 +cardiac rhythm|1662946 +cardiac sphincter|1663009 +cardiac tamponade|1663060 +cardiac valve|1663107 +cardiff|1663148 +cardigan|1663181 +cardigan welsh corgi|1663262 +cardiidae|1663340 +cardinal|1663401 +cardinal bellarmine|1666380 +cardinal compass point|1666542 +cardinal flower|1666594 +cardinal grosbeak|1666658 +cardinal newman|1666753 +cardinal number|1666913 +cardinal richelieu|1666954 +cardinal tetra|1667131 +cardinal vein|1667210 +cardinal virtue|1667263 +cardinalate|1667295 +cardinalfish|1667323 +cardinalis cardinalis|1667377 +cardinalship|1667494 +cardiogenic shock|1667571 +cardiogram|1667604 +cardiograph|1667673 +cardiographic|1667778 +cardiography|1667819 +cardioid|1667903 +cardiologic|1667932 +cardiologist|1667979 +cardiology|1668062 +cardiomegaly|1668109 +cardiomyopathy|1668178 +cardiopathy|1668259 +cardiopulmonary|1668333 +cardiopulmonary arrest|1668415 +cardiopulmonary exercise|1668481 +cardiopulmonary resuscitation|1668579 +cardiorespiratory|1668720 +cardiospasm|1668824 +cardiospermum|1668851 +cardiospermum grandiflorum|1668939 +cardiospermum halicacabum|1669027 +cardiovascular|1669126 +cardiovascular disease|1669160 +cardiovascular system|1669207 +carditis|1669273 +cardium|1669318 +cardium edule|1669371 +cardizem|1669429 +cardoon|1669506 +cardroom|1669576 +cards|1669599 +cardsharp|1670122 +cardsharper|1670274 +carducci|1670426 +carduelinae|1670474 +carduelis|1670541 +carduelis cannabina|1670597 +carduelis carduelis|1670669 +carduelis cucullata|1670734 +carduelis flammea|1670800 +carduelis hornemanni|1670859 +carduelis spinus|1670924 +carduus|1670980 +carduus crispus|1671039 +carduus nutans|1671103 +care|1671179 +care a hang|1671695 +care delivery|1671752 +care for|1671843 +care-laden|1671654 +cared-for|1671918 +careen|1671966 +career|1672089 +career counseling|1672296 +career girl|1672373 +career man|1672404 +careerism|1672434 +careerist|1672470 +carefree|1672522 +carefreeness|1672648 +careful|1672779 +carefully|1673123 +carefulness|1673168 +caregiver|1673245 +careless|1673359 +carelessly|1673677 +carelessness|1673751 +carelian|1673861 +caress|1673944 +caressing|1673989 +caressive|1674131 +caret|1674167 +caretaker|1674187 +caretta|1674259 +caretta caretta|1674312 +carew|1674407 +careworn|1674446 +carex|1674497 +carex arenaria|1674560 +carex pseudocyperus|1674626 +carfare|1674695 +carful|1674741 +cargo|1674770 +cargo area|1674868 +cargo container|1674938 +cargo cult|1674973 +cargo deck|1674998 +cargo door|1675068 +cargo hatch|1675093 +cargo helicopter|1675120 +cargo hold|1675186 +cargo liner|1675256 +cargo ship|1675295 +cargo ships|1675333 +cargo vessel|1675453 +carhop|1675491 +cariama|1675521 +cariama cristata|1675571 +cariamidae|1675656 +carib|1675717 +carib indian|1675886 +carib wood|1675954 +caribbean|1675997 +caribbean island|1676133 +caribbean language|1676183 +caribbean sea|1676312 +caribe|1676363 +caribees|1676426 +caribou|1676481 +carica|1676555 +carica papaya|1676613 +caricaceae|1676705 +caricature|1676791 +caricature plant|1676888 +caricaturist|1676946 +caries|1676987 +carillon|1677042 +carillon playing|1677119 +carillonneur|1677173 +carina|1677227 +carina fornicis|1677352 +carinal|1677384 +carinate|1677481 +carinate bird|1677671 +carinated|1677720 +caring|1677871 +carioca|1678002 +carious|1678126 +carissa|1678153 +carissa bispinosa|1678181 +carissa grandiflora|1678257 +carissa macrocarpa|1678355 +carissa plum|1678452 +carjack|1678498 +carjacking|1678549 +cark|1678585 +carl anderson|1678672 +carl august nielson|1678756 +carl clinton van doren|1678835 +carl david anderson|1678945 +carl gustaf mossander|1679035 +carl gustav jung|1679105 +carl jung|1679176 +carl lewis|1679240 +carl maria von weber|1679318 +carl nielson|1679461 +carl orff|1679533 +carl rogers|1679595 +carl sandburg|1679648 +carl van doren|1679708 +carl von linne|1679810 +carl xvi gustaf|1679923 +carl xvi gustav|1679998 +carl yastrzemski|1680073 +carlina|1680155 +carlina acaulis|1680214 +carlina vulgaris|1680296 +carline thistle|1680378 +carling float|1680411 +carlo goldoni|1680463 +carload|1680529 +carlos|1680642 +carlos chavez|1680811 +carlos fuentes|1680864 +carlos the jackal|1680925 +carlovingian|1681105 +carlovingian dynasty|1681183 +carlsbad|1681262 +carlsbad caverns|1681294 +carlsbad caverns national park|1681344 +carlyle|1681429 +carmaker|1681495 +carmelite|1681621 +carmelite order|1681710 +carmichael|1681806 +carminative|1681914 +carmine|1682015 +carnage|1682167 +carnal|1682249 +carnal abuse|1682372 +carnal knowledge|1682499 +carnalise|1682689 +carnality|1682835 +carnalize|1682940 +carnallite|1683174 +carnassial|1683202 +carnassial tooth|1683228 +carnation|1683260 +carnation family|1683370 +carnauba|1683474 +carnauba palm|1683589 +carnauba wax|1683680 +carnegie|1683715 +carnegie-mellon university|1683845 +carnegiea|1683919 +carnegiea gigantea|1683990 +carnelian|1684060 +carnify|1684110 +carniolan bee|1684145 +carnival|1684206 +carnivora|1684289 +carnivore|1684347 +carnivorous|1684453 +carnivorous bat|1684616 +carnivorous plant|1684666 +carnosaur|1684715 +carnosaura|1684782 +carnot|1684846 +carnot cycle|1685001 +carnot's ideal cycle|1684919 +carnotite|1685075 +carob|1685114 +carob bar|1685338 +carob bean|1685363 +carob bean tree|1685453 +carob powder|1685533 +carob tree|1685603 +caroche|1685683 +carol|1685722 +carolean|1685799 +caroler|1685910 +carolina|1685972 +carolina allspice|1686071 +carolina buckthorn|1686191 +carolina chickadee|1686283 +carolina hemlock|1686359 +carolina jasmine|1686441 +carolina lupine|1686567 +carolina moonseed|1686636 +carolina parakeet|1686709 +carolina pond fern|1686834 +carolina spring beauty|1686952 +carolina wren|1687036 +caroline|1687114 +caroline islands|1687269 +caroling|1687324 +carolingian|1687361 +carolingian dynasty|1687472 +carolinian|1687550 +caroller|1687590 +carolus linnaeus|1687652 +carom|1687767 +carotene|1687955 +carotenemia|1688023 +carotenoid|1688064 +carothers|1688104 +carotid|1688182 +carotid artery|1688235 +carotid body|1688312 +carotid plexus|1688348 +carotin|1688402 +carousal|1688452 +carouse|1688513 +carousel|1688670 +carouser|1688849 +carousing|1688906 +carp|1688995 +carpal|1689083 +carpal bone|1689168 +carpal tunnel syndrome|1689215 +carpathian mountains|1689264 +carpathians|1689407 +carpel|1689541 +carpellary|1689564 +carpellate|1689590 +carpenter|1689632 +carpenter ant|1690047 +carpenter bee|1690088 +carpenter's hammer|1689691 +carpenter's kit|1689749 +carpenter's level|1689794 +carpenter's mallet|1689825 +carpenter's plane|1689867 +carpenter's rule|1689938 +carpenter's saw|1689975 +carpenter's square|1690012 +carpenteria|1690115 +carpenteria californica|1690224 +carpentry|1690303 +carper|1690355 +carpet|1690386 +carpet beater|1690506 +carpet beetle|1690547 +carpet bomb|1690588 +carpet bombing|1690622 +carpet bug|1690698 +carpet grass|1690739 +carpet knight|1690821 +carpet loom|1690851 +carpet moth|1690877 +carpet pad|1690954 +carpet shark|1691008 +carpet slipper|1691057 +carpet snake|1691107 +carpet sweeper|1691182 +carpet tack|1691233 +carpetbag|1691259 +carpetbagger|1691340 +carpeted|1691386 +carpeting|1691413 +carpetweed|1691482 +carpetweed family|1691545 +carphophis|1691663 +carphophis amoenus|1691725 +carpinaceae|1691821 +carping|1691918 +carpinus|1692038 +carpinus betulus|1692102 +carpinus caroliniana|1692172 +carpobrotus|1692250 +carpobrotus edulis|1692327 +carpocapsa|1692446 +carpocapsa pomonella|1692510 +carpodacus|1692611 +carpodacus mexicanus|1692670 +carpodacus purpureus|1692746 +carpophagous|1692816 +carpophore|1692863 +carport|1692894 +carpospore|1692927 +carposporic|1692953 +carposporous|1692979 +carpus|1693006 +carrack|1693114 +carrageen|1693146 +carrageenan|1693223 +carrageenin|1693260 +carragheen|1693297 +carrefour|1693374 +carrel|1693443 +carrell|1693580 +carrere|1693629 +carriage|1693693 +carriage bolt|1693964 +carriage dog|1693992 +carriage house|1694068 +carriage return|1694116 +carriage trade|1694160 +carriage wrench|1694220 +carriageway|1694260 +carrick bend|1694289 +carrick bitt|1694316 +carrier|1694343 +carrier bag|1694884 +carrier electrophoresis|1694929 +carrier pigeon|1695041 +carrier wave|1695085 +carrion|1695157 +carrion crow|1695205 +carrion flower|1695286 +carrion fungus|1695357 +carrizo|1695398 +carroll|1695491 +carron oil|1695610 +carrot|1695666 +carrot family|1695805 +carrot juice|1695905 +carrot pudding|1695933 +carrot stick|1695965 +carrottop|1695996 +carroty|1696097 +carrousel|1696128 +carry|1696306 +carry amelia moore nation|1697870 +carry away|1697970 +carry back|1698060 +carry forward|1698107 +carry nation|1698156 +carry off|1698243 +carry on|1698512 +carry out|1698712 +carry over|1698931 +carry through|1699070 +carry weight|1699236 +carry-forward|1697661 +carry-over|1697703 +carry-the can|1697803 +carryall|1699298 +carrycot|1699342 +carrying charge|1699380 +carrying cost|1699450 +carrying into action|1699506 +carrying out|1699578 +carsick|1699694 +carson|1699745 +carson city|1699944 +carson mccullers|1700009 +carson smith mccullers|1700099 +cart|1700195 +cart away|1700453 +cart horse|1700519 +cart off|1700677 +cart track|1700743 +cart-track plant|1700332 +cartage|1700789 +cartagena|1700840 +cartagena bark|1700954 +carte|1701052 +carte blanche|1701109 +carte du jour|1701187 +cartel|1701244 +carter|1701316 +carter administration|1701597 +cartesian|1701660 +cartesian coordinate|1701714 +cartesian coordinate system|1701767 +cartesian plane|1701874 +cartesian product|1701911 +carthage|1701963 +carthaginian|1702001 +carthamus|1702080 +carthamus tinctorius|1702145 +carthorse|1702242 +carthusian|1702319 +carthusian order|1702402 +cartier|1702466 +cartilage|1702517 +cartilage bone|1702558 +cartilaginification|1702590 +cartilaginous|1702629 +cartilaginous fish|1702674 +cartilaginous structure|1702722 +cartilaginous tube|1702836 +carting|1702899 +cartload|1702950 +cartographer|1702981 +cartographic|1703024 +cartographical|1703087 +cartography|1703150 +carton|1703208 +cartonful|1703258 +cartoon|1703297 +cartoon strip|1703408 +cartoonist|1703464 +cartouch|1703501 +cartouche|1703539 +cartridge|1703577 +cartridge belt|1703699 +cartridge brass|1703728 +cartridge clip|1703759 +cartridge ejector|1703829 +cartridge extractor|1703874 +cartridge font|1703941 +cartridge fuse|1704005 +cartridge holder|1704050 +cartridge paper|1704120 +cartridge remover|1704172 +cartroad|1704239 +cartwheel|1704285 +cartwright|1704402 +carum|1704495 +carum carvi|1704546 +caruncle|1704609 +caruncula|1704665 +caruncular|1704721 +carunculate|1704780 +carunculated|1704841 +carunculous|1704902 +caruso|1704961 +carve|1705004 +carve up|1705102 +carved|1705177 +carved in stone|1705293 +carvedilol|1705344 +carvel-built|1705432 +carven|1705480 +carver|1705589 +carving|1705811 +carving fork|1705953 +carving knife|1705980 +cary grant|1706009 +carya|1706089 +carya aquatica|1706153 +carya cordiformis|1706256 +carya glabra|1706393 +carya illinoensis|1706499 +carya illinoinsis|1706588 +carya laciniosa|1706677 +carya myristicaeformis|1706814 +carya myristiciformis|1706927 +carya ovata|1707039 +carya tomentosa|1707147 +caryatid|1707287 +caryocar|1707319 +caryocar nuciferum|1707383 +caryocaraceae|1707465 +caryophyllaceae|1707546 +caryophyllaceous|1707666 +caryophyllaceous plant|1707718 +caryophyllales|1707772 +caryophyllidae|1707878 +caryophylloid dicot family|1707947 +caryophylloid dicot genus|1708016 +caryopsis|1708082 +caryota|1708112 +caryota urens|1708181 +casaba|1708285 +casaba melon|1708327 +casablanca|1708369 +casals|1708434 +casanova|1708478 +casanova de seingalt|1708656 +casava|1708798 +casbah|1708833 +cascabel|1708864 +cascade|1708899 +cascade down|1709045 +cascade everlasting|1709106 +cascade liquefier|1709217 +cascade mountains|1709260 +cascade penstemon|1709408 +cascade range|1709479 +cascade transformer|1709623 +cascades|1709672 +cascades frog|1709898 +cascading menu|1709951 +cascara|1710020 +cascara buckthorn|1710084 +cascara sagrada|1710183 +cascarilla|1710247 +cascarilla bark|1710305 +case|1710364 +case agreement|1711548 +case history|1711590 +case in point|1711644 +case knife|1711722 +case law|1711780 +case load|1711875 +case officer|1711903 +case shot|1711988 +case study|1712046 +case-by-case|1711167 +case-fatality proportion|1711225 +case-hardened|1711286 +case-hardened steel|1711335 +case-to-infection proportion|1711370 +case-to-infection ratio|1711459 +caseate|1712110 +casebook|1712148 +cased|1712222 +caseful|1712275 +casein|1712310 +casein glue|1712378 +casein paint|1712417 +casemaking clothes moth|1712463 +casement|1712527 +casement window|1712562 +caseous|1712594 +casern|1712621 +casework|1712645 +caseworker|1712691 +caseworm|1712755 +casey jones|1712779 +casey stengel|1712897 +cash|1712997 +cash account|1713162 +cash advance|1713202 +cash bar|1713272 +cash basis|1713294 +cash card|1713364 +cash cow|1713510 +cash crop|1713572 +cash dispenser|1713604 +cash equivalent|1713737 +cash flow|1713806 +cash in|1713832 +cash in hand|1713882 +cash in on|1713963 +cash in one's chips|1714003 +cash machine|1714172 +cash on delivery|1714305 +cash out|1714341 +cash price|1714364 +cash register|1714414 +cash surrender value|1714469 +cash-and-carry|1713131 +cashable|1714539 +cashbox|1714593 +cashcard|1714643 +cashed|1714708 +cashew|1714729 +cashew nut|1714818 +cashew tree|1714856 +cashier|1714916 +cashier's check|1715066 +cashier's cheque|1715169 +cashmere|1715272 +cashmere goat|1715446 +casimir funk|1715523 +casing|1715574 +casino|1715661 +casino-hotel|1715779 +cask|1715892 +casket|1715948 +caskful|1716030 +casmerodius|1716065 +casmerodius albus|1716127 +caspar|1716196 +caspar bartholin|1716231 +caspase|1716319 +caspase-mediated cell death|1716385 +casper|1716477 +caspian|1716529 +caspian sea|1716590 +casque|1716636 +casquet|1716659 +casquetel|1716693 +cass gilbert|1716727 +cassandra|1716789 +cassareep|1716829 +cassava|1716907 +cassava starch|1717012 +cassegrainian telescope|1717073 +casserole|1717181 +cassette|1717217 +cassette deck|1717245 +cassette player|1717278 +cassette recorder|1717324 +cassette tape|1717398 +cassia|1717449 +cassia acutifolia|1717577 +cassia alata|1717742 +cassia augustifolia|1717840 +cassia auriculata|1718007 +cassia bark|1718098 +cassia fasciculata|1718141 +cassia fistula|1718281 +cassia grandis|1718418 +cassia javonica|1718506 +cassia marginata|1718569 +cassia marilandica|1718650 +cassia occidentalis|1718748 +cassia roxburghii|1718876 +cassia tora|1718958 +cassia-bark tree|1717519 +cassie|1719038 +cassin's kingbird|1719152 +cassino|1719244 +cassiope|1719284 +cassiope mertensiana|1719348 +cassiopeia|1719419 +cassirer|1719464 +cassiri|1719518 +cassite|1719548 +cassiterite|1719657 +cassius|1719686 +cassius clay|1719783 +cassius longinus|1719881 +cassius marcellus clay|1719987 +cassock|1720095 +cassocked|1720121 +cassowary|1720153 +cast|1720207 +cast about|1721421 +cast anchor|1721488 +cast around|1721546 +cast aside|1721613 +cast away|1721756 +cast down|1721899 +cast iron|1721991 +cast of characters|1722035 +cast off|1722107 +cast on|1722246 +cast out|1722294 +cast-iron|1721196 +cast-iron plant|1721227 +cast-off|1721318 +castanea|1722515 +castanea chrysophylla|1722579 +castanea crenata|1722720 +castanea dentata|1722804 +castanea mollissima|1722912 +castanea ozarkensis|1723001 +castanea pumila|1723117 +castanea sativa|1723246 +castanets|1723360 +castanopsis|1723460 +castanopsis chrysophylla|1723533 +castanospermum|1723677 +castaway|1723755 +caste|1723926 +caste system|1724051 +casteless|1724089 +castellated|1724126 +caster|1724197 +caster sugar|1724262 +castigate|1724312 +castigation|1724572 +castile|1724772 +castile soap|1724855 +castilla|1724882 +castilleia|1724966 +castilleja|1725062 +castilleja chromosa|1725158 +castilleja miniata|1725255 +castilleja sessiliflora|1725353 +castilleja sulphurea|1725464 +casting|1725563 +casting lots|1725702 +casting vote|1725781 +castle|1725832 +castle in spain|1726003 +castle in the air|1726133 +castled|1726247 +castling|1726318 +castor|1726354 +castor bean|1726610 +castor bean plant|1726639 +castor canadensis|1726738 +castor fiber|1726807 +castor oil|1726866 +castor sugar|1726922 +castor-oil plant|1726511 +castoridae|1726972 +castoroides|1727035 +castrate|1727099 +castrated|1727461 +castration|1727545 +castration anxiety|1727712 +castrato|1727760 +castries|1727814 +castro|1727863 +castroism|1727926 +casual|1727965 +casually|1728238 +casualness|1728268 +casualty|1728312 +casualty care research center|1728452 +casuaridae|1728590 +casuariiformes|1728651 +casuarina|1728724 +casuarina equisetfolia|1728748 +casuarinaceae|1728828 +casuarinales|1728919 +casuarius|1728985 +casuist|1729041 +casuistic|1729088 +casuistical|1729214 +casuistry|1729338 +casus belli|1729442 +cat|1729473 +cat and mouse|1730835 +cat and rat|1730883 +cat bear|1730931 +cat box|1731013 +cat burglar|1731041 +cat chow|1731083 +cat cracker|1731136 +cat fancier|1731192 +cat flea|1731228 +cat food|1731273 +cat rig|1731326 +cat scan|1731355 +cat scanner|1731411 +cat scratch disease|1731492 +cat shark|1731529 +cat sleep|1731554 +cat squirrel|1731624 +cat suit|1731754 +cat thyme|1731806 +cat valium|1731856 +cat's cradle|1730504 +cat's eye|1730539 +cat's feet|1730569 +cat's foot|1730718 +cat's-claw|1730152 +cat's-ear|1730229 +cat's-paw|1730336 +cat's-tail|1730416 +cat-o'-nine-tails|1730799 +cata-cornered|1731967 +catabatic|1732092 +catabatic wind|1732121 +catabiosis|1732192 +catabolic|1732236 +catabolise|1732365 +catabolism|1732420 +catabolize|1732523 +catacala|1732578 +catachresis|1732636 +catachrestic|1732675 +catachrestical|1732729 +cataclinal|1732783 +cataclysm|1732814 +cataclysmal|1732932 +cataclysmic|1732977 +catacomb|1733022 +catacorner|1733047 +catadromous|1733172 +catafalque|1733205 +cataflam|1733230 +catalan|1733351 +catalase|1733563 +catalatic|1733588 +catalectic|1733613 +catalepsy|1733644 +cataleptic|1733675 +catalexis|1733747 +catalina cherry|1733799 +catalina island|1733873 +catalog|1733936 +catalog buying|1734093 +cataloged procedure|1734153 +cataloger|1734231 +catalogue|1734282 +catalogued|1734433 +cataloguer|1734460 +catalonia|1734511 +catalpa|1734589 +catalpa bignioides|1734628 +catalpa speciosa|1734695 +catalufa|1734758 +catalyse|1734829 +catalysis|1734874 +catalyst|1734957 +catalytic|1735037 +catalytic converter|1735104 +catalytic cracker|1735153 +catalyze|1735209 +catamaran|1735254 +catamenia|1735295 +catamenial|1735385 +catamount|1735414 +catamountain|1735518 +catananche|1735582 +catananche caerula|1735609 +cataphasia|1735693 +cataphatic|1735760 +cataphatism|1735811 +cataphoresis|1735864 +cataphoretic|1735977 +cataphract|1736061 +cataphyll|1736159 +cataplasia|1736199 +cataplasm|1736246 +cataplastic|1736308 +catapres|1736355 +catapult|1736431 +catapultian|1736666 +catapultic|1736733 +cataract|1736800 +cataract canyon|1736853 +catarrh|1736900 +catarrhal|1736944 +catarrhine|1736989 +catarrhinian|1737064 +catasetum|1737097 +catasetum macrocarpum|1737172 +catastrophe|1737266 +catastrophic|1737429 +catastrophic illness|1737467 +catatonia|1737532 +catatonic|1737709 +catatonic schizophrenia|1737747 +catatonic type schizophrenia|1737897 +catawba|1738047 +catbird|1738164 +catboat|1738272 +catbrier|1738311 +catcall|1738411 +catch|1738482 +catch a glimpse|1739847 +catch a wink|1739887 +catch cold|1739961 +catch crop|1739987 +catch fire|1740020 +catch on|1740101 +catch one's breath|1740250 +catch out|1740328 +catch phrase|1740392 +catch some z's|1740548 +catch up|1740618 +catch up with|1740699 +catchall|1740778 +catcher|1740817 +catcher's mask|1740866 +catchfly|1740919 +catching|1740981 +catchment|1741193 +catchment area|1741235 +catchment basin|1741376 +catchpenny|1741517 +catchphrase|1741555 +catchweed|1741630 +catchword|1741718 +catchy|1741788 +catclaw|1741861 +catechesis|1741938 +catechetic|1741988 +catechetical|1742108 +catechetical instruction|1742170 +catechise|1742234 +catechism|1742309 +catechismal|1742380 +catechist|1742405 +catechistic|1742443 +catechize|1742514 +catecholamine|1742589 +catechu|1742649 +catechumen|1742742 +categorem|1742794 +categorematic|1742829 +categoreme|1742879 +categorial|1742914 +categoric|1742962 +categorical|1743024 +categorical imperative|1743139 +categorically|1743187 +categorisation|1743232 +categorise|1743466 +categorised|1743504 +categorization|1743548 +categorize|1743782 +categorized|1743820 +category|1743864 +catena|1743978 +catenary|1744014 +catenate|1744051 +catenulate|1744095 +cater|1744163 +cater-cornered|1744228 +catercorner|1744353 +caterer|1744478 +catering|1744513 +caterpillar|1744573 +caterpillar track|1744676 +caterpillar tread|1744732 +caterpillar-tracked|1744639 +caterwaul|1744788 +catfish|1744850 +catgut|1744997 +catha|1745086 +catha edulis|1745136 +catharacta|1745182 +catharacta skua|1745241 +catharanthus|1745305 +catharanthus roseus|1745390 +cathari|1745578 +catharism|1745658 +cathars|1745753 +catharsis|1745833 +cathartes|1745928 +cathartes aura|1745984 +cathartic|1746089 +cathartid|1746277 +cathartidae|1746322 +cathay|1746386 +cathaya|1746487 +cathect|1746536 +cathectic|1746602 +cathedra|1746637 +cathedral|1746678 +cather|1746763 +catherine|1746833 +catherine de medicis|1746959 +catherine howard|1747023 +catherine i|1747079 +catherine ii|1747120 +catherine of aragon|1747193 +catherine parr|1747271 +catherine the great|1747321 +catherine wheel|1747401 +catheter|1747456 +catheterise|1747486 +catheterize|1747568 +cathexis|1747650 +cathode|1747692 +cathode ray|1747877 +cathode-ray oscilloscope|1747750 +cathode-ray tube|1747828 +cathodic|1747921 +catholic|1747958 +catholic church|1748062 +catholic pope|1748127 +catholic reaction force|1748266 +catholic school|1748483 +catholicise|1748555 +catholicism|1748614 +catholicity|1748691 +catholicize|1748799 +catholicos|1748858 +cathouse|1748906 +cation|1749044 +cationic|1749064 +cationic detergent|1749095 +catjang pea|1749145 +catkin|1749248 +catkinate|1749284 +catling|1749316 +catmint|1749348 +catnap|1749409 +catnip|1749544 +catocala nupta|1749605 +catoptric|1749668 +catoptrical|1749705 +catoptrics|1749742 +catoptrophorus|1749769 +catoptrophorus semipalmatus|1749840 +catostomid|1749920 +catostomidae|1749957 +catostomus|1750024 +catskill mountains|1750083 +catskills|1750220 +catsup|1750348 +catsup bottle|1750405 +cattail|1750450 +cattail family|1750501 +cattail millet|1750584 +cattalo|1750697 +cattell|1750739 +cattie|1750918 +cattiness|1750959 +cattish|1751049 +cattle|1751100 +cattle boat|1751149 +cattle breeding|1751205 +cattle cake|1751239 +cattle car|1751275 +cattle drive|1751307 +cattle egret|1751335 +cattle farm|1751377 +cattle grid|1751429 +cattle guard|1751475 +cattle pen|1751521 +cattle plague|1751560 +cattle ranch|1751609 +cattle thief|1751661 +cattle trail|1751705 +cattleman|1751733 +cattleship|1751879 +cattley guava|1751935 +cattleya|1752040 +cattleya citrina|1752084 +catty|1752183 +catty-corner|1752267 +catty-cornered|1752392 +catullus|1752517 +catwalk|1752573 +caucasia|1752625 +caucasian|1752733 +caucasian language|1753028 +caucasian race|1753109 +caucasian walnut|1753192 +caucasic|1753277 +caucasoid|1753385 +caucasoid race|1753420 +caucasus|1753503 +caucasus mountains|1753726 +caucus|1753862 +cauda|1753935 +caudal|1754031 +caudal anaesthesia|1754147 +caudal anesthesia|1754247 +caudal appendage|1754347 +caudal block|1754378 +caudal fin|1754478 +caudal vertebra|1754511 +caudally|1754564 +caudata|1754588 +caudate|1754664 +caudate nucleus|1754859 +caudated|1754907 +caudex|1755004 +caudine forks|1755055 +caught up|1755107 +caul|1755135 +cauldron|1755239 +caulescent|1755269 +cauliflower|1755316 +cauliflower ear|1755420 +cauline|1755463 +caulk|1755514 +caulked|1755548 +caulophyllum|1755626 +caulophyllum thalictrioides|1755702 +caulophyllum thalictroides|1755878 +causa|1756053 +causal|1756132 +causal agency|1756158 +causal agent|1756207 +causal factor|1756256 +causalgia|1756352 +causality|1756384 +causation|1756412 +causative|1756464 +cause|1756768 +cause celebre|1757079 +cause of death|1757111 +cause to sleep|1757175 +causeless|1757219 +causerie|1757299 +causeway|1757436 +causing|1757514 +caustic|1757566 +caustic lime|1757767 +caustic potash|1757892 +caustic remark|1757968 +caustic soda|1758050 +caustically|1758114 +cauterant|1758148 +cauterisation|1758186 +cauterise|1758304 +cauterization|1758400 +cauterize|1758518 +cautery|1758614 +caution|1758760 +cautionary|1758960 +cautious|1759071 +cautious statement|1759279 +cautiously|1759317 +cautiousness|1759393 +cavalcade|1759449 +cavalier|1759479 +cavalier hat|1759590 +cavalierly|1759639 +cavalla|1759671 +cavalry|1759746 +cavalry horse|1759835 +cavalry sword|1759867 +cavalryman|1759926 +cave|1759985 +cave bat|1760094 +cave dweller|1760174 +cave in|1760251 +cave man|1760347 +cave myotis|1760505 +caveat|1760573 +caveat emptor|1760619 +cavell|1760660 +caveman|1760722 +cavendish|1760799 +cavern|1760862 +cavern out|1760963 +cavernous|1761017 +cavernous sinus|1761069 +cavetto|1761130 +cavia|1761164 +cavia cobaya|1761210 +cavia porcellus|1761261 +caviar|1761324 +caviare|1761361 +caviidae|1761398 +cavil|1761455 +caviler|1761535 +caviling|1761617 +caviller|1761686 +cavitied|1761768 +cavity|1761834 +cavity resonator|1762048 +cavity wall|1762111 +caviuna wood|1762137 +cavort|1762227 +cavum|1762330 +cavy|1762447 +caw|1762490 +caxton|1762543 +cay|1762598 +cayenne|1762639 +cayenne jasmine|1762933 +cayenne pepper|1763101 +cayman|1763381 +cayman islands|1763436 +cayman islands dollar|1763482 +cayuga|1763542 +cayuga lake|1763626 +cayuse|1763676 +cazique|1763709 +cbc|1763774 +cbr|1763838 +cc|1763975 +ccc|1764103 +ccrc|1764143 +cd|1764256 +cd burner|1765335 +cd drive|1765431 +cd player|1765464 +cd-r|1764580 +cd-rom|1764682 +cd-rom drive|1764817 +cd-wo|1764858 +cd4 cell|1764961 +cd4 t cell|1765045 +cd8 cell|1765131 +cd8 t cell|1765232 +cdc|1765514 +cdna|1765637 +ce|1765723 +cease|1765785 +cease and desist order|1765931 +cease-fire|1765889 +ceaseless|1766024 +ceaselessly|1766132 +ceaselessness|1766210 +cebidae|1766285 +cebu|1766339 +cebu city|1766416 +cebu maguey|1766479 +cebuan|1766546 +cebuano|1766627 +cebuella|1766679 +cebuella pygmaea|1766734 +cebus|1766801 +cebus capucinus|1766917 +cecal|1767005 +cecal appendage|1767053 +cecidomyidae|1767152 +cecil b. demille|1767224 +cecil blount demille|1767343 +cecil frank powell|1767466 +cecil j. rhodes|1767530 +cecil john rhodes|1767648 +cecil rhodes|1767768 +cecil scott forester|1767883 +cecity|1767972 +cecropia|1768074 +cecropia moth|1768213 +cecropia peltata|1768290 +cecropiaceae|1768424 +cecum|1768512 +cedar|1768571 +cedar chest|1768787 +cedar elm|1768814 +cedar mahogany|1768864 +cedar nut|1768980 +cedar of goa|1769014 +cedar of lebanon|1769126 +cedar rapids|1769211 +cedar tree|1769275 +cedar waxwing|1769373 +cedar-apple rust|1768696 +cedarbird|1769434 +cedarn|1769495 +cedarwood|1769517 +cede|1769547 +cedi|1769637 +cedilla|1769673 +ceding|1769717 +ceding back|1769770 +cedrela|1769816 +cedrela calantas|1769873 +cedrela odorata|1770000 +cedrus|1770097 +cedrus atlantica|1770150 +cedrus deodara|1770233 +cedrus libani|1770336 +cefadroxil|1770418 +cefobid|1770469 +cefoperazone|1770529 +cefotaxime|1770581 +ceftazidime|1770632 +ceftin|1770690 +ceftriaxone|1770754 +cefuroxime|1770806 +ceiba|1770863 +ceiba pentandra|1770918 +ceiba tree|1771072 +ceibo|1771210 +ceilidh|1771314 +ceiling|1771337 +ceilinged|1771433 +celandine|1771500 +celandine poppy|1771687 +celastraceae|1771751 +celastric articulatus|1771877 +celastrus|1772017 +celastrus orbiculatus|1772093 +celastrus scandens|1772233 +celebes|1772376 +celebrant|1772417 +celebrate|1772525 +celebrated|1772648 +celebrater|1772766 +celebration|1772860 +celebrator|1773029 +celebratory|1773123 +celebrex|1773200 +celebrity|1773253 +celecoxib|1773372 +celeriac|1773416 +celerity|1773573 +celery|1773620 +celery blight|1773939 +celery cabbage|1773974 +celery pine|1774130 +celery root|1774175 +celery salt|1774329 +celery seed|1774409 +celery stick|1774489 +celery top pine|1774520 +celery-leaved buttercup|1773723 +celery-topped pine|1773856 +celesta|1774603 +celestial|1774650 +celestial body|1774764 +celestial city|1774817 +celestial equator|1774899 +celestial globe|1774987 +celestial guidance|1775018 +celestial hierarchy|1775074 +celestial horizon|1775113 +celestial latitude|1775161 +celestial longitude|1775222 +celestial mechanics|1775287 +celestial navigation|1775336 +celestial orbit|1775411 +celestial point|1775463 +celestial pole|1775494 +celestial sphere|1775539 +celestite|1775630 +celiac|1775657 +celiac artery|1775728 +celiac disease|1775834 +celiac trunk|1775873 +celibacy|1775979 +celibate|1776059 +celiocentesis|1776130 +celioma|1776162 +celioscopy|1776201 +cell|1776231 +cell death|1776682 +cell division|1776720 +cell doctrine|1776796 +cell membrane|1776849 +cell nucleus|1776934 +cell organ|1776992 +cell phone|1777028 +cell theory|1777082 +cell wall|1777135 +cell-free|1776521 +cell-like|1776562 +cell-mediated immune response|1776590 +cellar|1777220 +cellarage|1777366 +cellaret|1777412 +cellblock|1777463 +cellini|1777493 +cellist|1777576 +cello|1777625 +cellophane|1777685 +cellphone|1777718 +cellular|1777834 +cellular division|1778000 +cellular inclusion|1778076 +cellular phone|1778134 +cellular respiration|1778250 +cellular slime mold|1778353 +cellular telephone|1778405 +cellularity|1778521 +cellulite|1778586 +cellulitis|1778637 +celluloid|1778684 +cellulose|1778798 +cellulose acetate|1778840 +cellulose ester|1778883 +cellulose nitrate|1778914 +cellulose tape|1779002 +cellulose triacetate|1779062 +cellulose xanthate|1779121 +cellulosic|1779182 +cellulosid|1779210 +celom|1779252 +celoma|1779308 +celosia|1779364 +celosia argentea|1779429 +celosia argentea cristata|1779502 +celosia cristata|1779629 +celsius|1779747 +celsius scale|1779820 +celt|1779912 +celtic|1779945 +celtic cross|1780063 +celtic deity|1780104 +celtic language|1780167 +celtis|1780265 +celtis australis|1780332 +celtis laevigata|1780440 +celtis occidentalis|1780516 +celtuce|1780606 +cembalo|1780702 +cembra nut|1780747 +cembra nut tree|1780781 +cement|1780884 +cement mixer|1781082 +cementite|1781127 +cementitious|1781186 +cementum|1781225 +cemetery|1781271 +cenchrus|1781380 +cenchrus ciliaris|1781452 +cenchrus tribuloides|1781552 +cenobite|1781640 +cenobitic|1781678 +cenobitical|1781753 +cenogenesis|1781818 +cenogenetic|1781949 +cenotaph|1782041 +cenozoic|1782077 +cenozoic era|1782151 +cense|1782229 +censer|1782283 +censor|1782315 +censored|1782470 +censorial|1782508 +censoring|1782547 +censorious|1782640 +censorship|1782669 +censurable|1782761 +censure|1782837 +censured|1783003 +census|1783059 +census bureau|1783189 +census taker|1783311 +cent|1783365 +cental|1783460 +centare|1783547 +centas|1783615 +centaur|1783656 +centaurea|1783759 +centaurea americana|1783824 +centaurea cineraria|1783896 +centaurea cyanus|1783988 +centaurea gymnocarpa|1784078 +centaurea imperialis|1784171 +centaurea moschata|1784242 +centaurea nigra|1784327 +centaurea scabiosa|1784418 +centaurea solstitialis|1784506 +centauria calcitrapa|1784604 +centaurium|1784685 +centaurium calycosum|1784764 +centaurium minus|1784831 +centaurium scilloides|1784899 +centaurus|1784977 +centaury|1785040 +centavo|1785091 +centenarian|1785141 +centenary|1785219 +centennial|1785331 +centennial state|1785442 +center|1785512 +center bit|1786672 +center field|1786707 +center fielder|1786810 +center for disease control and prevention|1786940 +center line|1787101 +center of attention|1787219 +center of buoyancy|1787262 +center of curvature|1787379 +center of flotation|1787451 +center of gravity|1787536 +center of immersion|1787604 +center of mass|1787721 +center on|1787783 +center punch|1787932 +center spread|1787968 +center stage|1788048 +centerboard|1788146 +centered|1788211 +centerfielder|1788297 +centerfold|1788346 +centering|1788437 +centerline|1788565 +centerpiece|1788602 +centesimal|1788711 +centesimo|1788793 +centesis|1788845 +centigrade scale|1788872 +centigrade thermometer|1788950 +centile|1789017 +centiliter|1789062 +centilitre|1789117 +centime|1789172 +centimeter|1789245 +centimetre|1789298 +centimo|1789351 +centipede|1789401 +centner|1789430 +central|1789642 +central africa|1789931 +central african republic|1790026 +central african republic franc|1790131 +central america|1790208 +central american|1790327 +central american country|1790416 +central american nation|1790544 +central american strap fern|1790671 +central artery of the retina|1790800 +central bank|1790901 +central body|1790991 +central chimpanzee|1791034 +central city|1791123 +central dravidian|1791200 +central gyrus|1791283 +central heating|1791324 +central intelligence agency|1791391 +central intelligence machinery|1791513 +central nervous system|1791622 +central office|1791691 +central park|1791785 +central powers|1791846 +central processing unit|1791924 +central processor|1792054 +central scotoma|1792184 +central standard time|1792217 +central sulcus|1792323 +central thai|1792408 +central time|1792460 +central vein of retina|1792557 +central vein of suprarenal gland|1792642 +central veins of liver|1792752 +central vision|1792838 +centralisation|1792904 +centralise|1793008 +centralised|1793071 +centralising|1793161 +centralism|1793243 +centralist|1793270 +centralistic|1793328 +centrality|1793386 +centralization|1793432 +centralize|1793536 +centralized|1793599 +centralizing|1793701 +centranthus|1793783 +centranthus ruber|1793854 +centrarchid|1793938 +centrarchidae|1793999 +centre|1794069 +centre bit|1794437 +centre for international crime prevention|1794472 +centre of buoyancy|1794650 +centre of curvature|1794767 +centre of flotation|1794839 +centre of gravity|1794924 +centre of immersion|1794992 +centre of mass|1795109 +centre spread|1795171 +centre stage|1795251 +centreboard|1795349 +centred|1795414 +centrefold|1795534 +centrepiece|1795625 +centrex|1795734 +centric|1795787 +centrical|1795822 +centrifugal|1795857 +centrifugal force|1795977 +centrifugal pump|1796010 +centrifugate|1796041 +centrifugation|1796079 +centrifuge|1796150 +centriole|1796231 +centripetal|1796271 +centripetal acceleration|1796399 +centripetal force|1796446 +centriscidae|1796479 +centrism|1796546 +centrist|1796623 +centrocercus|1796732 +centrocercus urophasianus|1796797 +centroid|1796886 +centroidal|1796934 +centrolobium|1796983 +centrolobium robustum|1797055 +centromere|1797141 +centromeric|1797254 +centropistes striata|1797355 +centropomidae|1797441 +centropomus|1797511 +centropristis|1797573 +centropristis philadelphica|1797641 +centropus|1797739 +centropus phasianinus|1797795 +centropus sinensis|1797887 +centrosema|1797955 +centrosema virginianum|1798021 +centrosome|1798095 +centrosomic|1798138 +centrospermae|1798168 +centrosymmetric|1798266 +centrum|1798334 +centunculus|1798359 +centurion|1798441 +century|1798468 +century plant|1798568 +ceo|1798679 +cephalalgia|1798783 +cephalanthera|1798835 +cephalanthera rubra|1798922 +cephalaspid|1798999 +cephalaspida|1799074 +cephalexin|1799177 +cephalhematoma|1799240 +cephalic|1799319 +cephalic index|1799365 +cephalic vein|1799423 +cephalitis|1799491 +cephalobidae|1799561 +cephalochordata|1799628 +cephalochordate|1799702 +cephaloglycin|1799736 +cephalohematoma|1799794 +cephalopod|1799873 +cephalopod mollusk|1799963 +cephalopoda|1800028 +cephalopodan|1800085 +cephalopterus|1800123 +cephalopterus ornatus|1800191 +cephaloridine|1800276 +cephalosporin|1800326 +cephalotaceae|1800384 +cephalotaxaceae|1800461 +cephalotaxus|1800559 +cephalothin|1800630 +cephalotus|1800673 +cephalotus follicularis|1800739 +cepheus|1800843 +cepphus|1800882 +cepphus columba|1800932 +cepphus grylle|1801000 +cer|1801065 +ceraceous|1801141 +cerambycidae|1801180 +ceramic|1801252 +ceramic ware|1801339 +ceramicist|1801369 +ceramics|1801452 +ceramist|1801559 +cerapteryx|1801642 +cerapteryx graminis|1801706 +ceras|1801799 +cerastes|1801828 +cerastes cornutus|1801905 +cerastium|1802000 +cerastium alpinum|1802071 +cerastium arvense|1802229 +cerastium tomentosum|1802385 +cerate|1802545 +ceratin|1802597 +ceratitis|1802647 +ceratitis capitata|1802708 +ceratodontidae|1802807 +ceratodus|1802880 +ceratonia|1802908 +ceratonia siliqua|1802971 +ceratopetalum|1803069 +ceratopetalum gummiferum|1803144 +ceratophyllaceae|1803238 +ceratophyllum|1803328 +ceratopogon|1803407 +ceratopogonidae|1803474 +ceratopsia|1803555 +ceratopsian|1803619 +ceratopsidae|1803693 +ceratopteris|1803763 +ceratopteris pteridioides|1803828 +ceratopteris thalictroides|1803940 +ceratosaur|1804041 +ceratosaurus|1804122 +ceratostomataceae|1804203 +ceratostomella|1804287 +ceratostomella ulmi|1804360 +ceratotherium|1804433 +ceratotherium simum|1804503 +ceratozamia|1804600 +cerberus|1804627 +cercaria|1804699 +cercarial|1804723 +cercidiphyllaceae|1804747 +cercidiphyllum|1804840 +cercidiphyllum japonicum|1804922 +cercidium|1805028 +cercidium floridum|1805091 +cercis|1805174 +cercis canadenis|1805228 +cercis occidentalis|1805312 +cercocebus|1805405 +cercopidae|1805466 +cercopithecidae|1805532 +cercopithecus|1805610 +cercopithecus aethiops|1805680 +cercopithecus aethiops pygerythrus|1805763 +cercopithecus aethiops sabaeus|1805884 +cercopithecus talapoin|1806010 +cercospora|1806095 +cercospora kopkei|1806156 +cercosporella|1806227 +cere|1806297 +cereal|1806324 +cereal bowl|1806439 +cereal box|1806465 +cereal grass|1806489 +cereal oat|1806524 +cerebellar|1806561 +cerebellar artery|1806597 +cerebellar hemisphere|1806679 +cerebellar vein|1806727 +cerebellum|1806798 +cerebral|1806835 +cerebral aneurysm|1806898 +cerebral aqueduct|1806943 +cerebral artery|1807041 +cerebral cortex|1807119 +cerebral death|1807192 +cerebral hemisphere|1807234 +cerebral hemorrhage|1807291 +cerebral mantle|1807352 +cerebral palsy|1807425 +cerebral peduncle|1807511 +cerebral thrombosis|1807587 +cerebral vein|1807627 +cerebrate|1807693 +cerebration|1807727 +cerebromeningitis|1807813 +cerebrospinal|1807925 +cerebrospinal fever|1807991 +cerebrospinal fluid|1808088 +cerebrospinal meningitis|1808189 +cerebrovascular|1808286 +cerebrovascular accident|1808338 +cerebrum|1808399 +cerecloth|1808434 +cerement|1808483 +ceremonial|1808558 +ceremonial dance|1808689 +ceremonial occasion|1808779 +ceremonially|1808896 +ceremonious|1808946 +ceremoniously|1808987 +ceremoniousness|1809022 +ceremony|1809068 +ceres|1809217 +ceresin|1809295 +cereus|1809316 +ceric|1809378 +ceriman|1809415 +cerise|1809489 +cerium|1809636 +cerivastatin|1809695 +cernuous|1809793 +cero|1809846 +cerotic acid|1809984 +cerous|1810029 +ceroxylon|1810067 +ceroxylon alpinum|1810142 +ceroxylon andicola|1810228 +cerriped|1810315 +cerripede|1810363 +cert|1810411 +certain|1810466 +certainly|1810755 +certainty|1810835 +certhia|1810930 +certhia americana|1810980 +certhia familiaris|1811077 +certhiidae|1811162 +certifiable|1811223 +certificate|1811278 +certificate of deposit|1811505 +certificate of incorporation|1811584 +certificate of indebtedness|1811671 +certificated|1811733 +certification|1811789 +certificatory|1812045 +certified|1812079 +certified check|1812225 +certified cheque|1812291 +certified milk|1812357 +certified public accountant|1812386 +certify|1812461 +certiorari|1812693 +certitude|1812751 +cerulean|1812808 +cerulean blue|1812917 +cerumen|1812948 +ceruminous|1812976 +cerussite|1812999 +cervantes|1813041 +cervantes saavedra|1813173 +cervical|1813314 +cervical artery|1813378 +cervical canal|1813460 +cervical cap|1813542 +cervical disc syndrome|1813664 +cervical glands|1813728 +cervical glands of the uterus|1813836 +cervical nerve|1813944 +cervical plexus|1813997 +cervical root syndrome|1814053 +cervical smear|1814117 +cervical vein|1814202 +cervical vertebra|1814299 +cervicitis|1814345 +cervicofacial actinomycosis|1814392 +cervid|1814453 +cervidae|1814483 +cervine|1814540 +cervix|1814565 +cervix uteri|1814662 +cervus|1814728 +cervus canadensis|1814777 +cervus elaphus|1814854 +cervus nipon|1814914 +cervus sika|1814992 +cervus unicolor|1815069 +ceryle|1815136 +ceryle alcyon|1815183 +cesar chavez|1815249 +cesar estrada chavez|1815325 +cesar franck|1815409 +cesar ritz|1815460 +cesare borgia|1815550 +cesarean|1815611 +cesarean delivery|1815861 +cesarean section|1816046 +cesarian|1816231 +cesarian section|1816481 +cesium|1816666 +cesium 137|1816733 +cespitose|1816788 +cessation|1816836 +cession|1816874 +cesspit|1816927 +cesspool|1816971 +cestida|1817015 +cestidae|1817067 +cestoda|1817128 +cestode|1817173 +cestrum|1817222 +cestrum diurnum|1817281 +cestrum nocturnum|1817347 +cestum|1817433 +cestum veneris|1817486 +cetacea|1817562 +cetacean|1817614 +cetacean mammal|1817699 +cetaceous|1817755 +cetchup|1817795 +ceterach|1817852 +ceterach officinarum|1817905 +cetonia|1818002 +cetonia aurata|1818057 +cetoniidae|1818160 +cetorhinidae|1818229 +cetorhinus|1818296 +cetorhinus maximus|1818355 +cetraria|1818431 +cetraria islandica|1818486 +cetrimide|1818568 +cetus|1818668 +ceylon|1818703 +ceylon bowstring hemp|1818819 +ceylon cinnamon|1818921 +ceylon cinnamon tree|1819021 +ceylon gooseberry|1819126 +ceylonese|1819244 +ceylonite|1819290 +cezanne|1819336 +cf|1819382 +cf.|1819622 +cfc|1819737 +cfo|1819831 +cgs|1819911 +cgs system|1819949 +ch'i|1819987 +ch'ing|1820031 +ch'ing dynasty|1820117 +cha-cha|1820211 +cha-cha-cha|1820272 +chabad|1820333 +chabad hasidism|1820589 +chabad-lubavitch|1820491 +chabasite|1820677 +chabazite|1820714 +chablis|1820751 +chachalaca|1820845 +chachka|1820895 +chacma|1820995 +chacma baboon|1821046 +chad|1821097 +chadar|1821333 +chaddar|1821391 +chadian|1821449 +chadian franc|1821527 +chadic|1821570 +chadic language|1821702 +chadlock|1821843 +chador|1821937 +chaenactis|1821995 +chaenomeles|1822037 +chaenomeles japonica|1822106 +chaenomeles speciosa|1822198 +chaenopsis|1822282 +chaenopsis ocellata|1822341 +chaeronea|1822423 +chaeta|1822467 +chaetal|1822488 +chaetodipterus|1822509 +chaetodipterus faber|1822580 +chaetodon|1822683 +chaetodontidae|1822717 +chaetognath|1822790 +chaetognatha|1822826 +chaetognathan|1822888 +chaetognathous|1822932 +chafe|1822976 +chafed|1823317 +chafeweed|1823348 +chaff|1823410 +chaffer|1823578 +chaffinch|1823761 +chafflike|1823804 +chaffweed|1823844 +chaffy|1823916 +chafing|1823973 +chafing dish|1824010 +chafing gear|1824057 +chaga|1824088 +chagall|1824147 +chagatai|1824193 +chagga|1824292 +chagrin|1824352 +chagrined|1824485 +chahta|1824536 +chaim azriel weizmann|1824627 +chaim soutine|1824736 +chaim weizmann|1824789 +chain|1824891 +chain armor|1825502 +chain armour|1825661 +chain fern|1825820 +chain gang|1825845 +chain letter|1825886 +chain lightning|1825923 +chain mail|1825975 +chain of mountains|1826134 +chain pickerel|1826254 +chain pike|1826309 +chain printer|1826364 +chain reaction|1826402 +chain reactor|1826477 +chain saw|1826556 +chain stitch|1826694 +chain store|1826775 +chain tongs|1826807 +chain up|1826865 +chain wrench|1826910 +chain-smoke|1825433 +chain-smoker|1825460 +chained|1826968 +chainlike|1827011 +chainlink fence|1827048 +chains|1827087 +chainsaw|1827691 +chair|1827748 +chair car|1828052 +chair lift|1828151 +chairlift|1828284 +chairman|1828336 +chairman of the board|1828434 +chairmanship|1828504 +chairperson|1828581 +chairwoman|1828656 +chaise|1828731 +chaise longue|1828808 +chait|1828851 +chaja|1828900 +chalaza|1828948 +chalazion|1829013 +chalcanthite|1829091 +chalcedon|1829213 +chalcedony|1829255 +chalcid|1829308 +chalcid fly|1829419 +chalcid wasp|1829611 +chalcidae|1829722 +chalcidfly|1829816 +chalcididae|1829927 +chalcis|1830023 +chalcis fly|1830078 +chalcocite|1830143 +chalcopyrite|1830185 +chalcostigma|1830230 +chaldaea|1830295 +chaldaean|1830508 +chaldea|1830710 +chaldean|1830922 +chaldee|1831123 +chaldron|1831323 +chalet|1831386 +chalice|1831408 +chalice vine|1831436 +chalk|1831511 +chalk dust|1831773 +chalk line|1831798 +chalk out|1831850 +chalk pit|1831881 +chalk talk|1832011 +chalk up|1832036 +chalkboard|1832100 +chalkpit|1832148 +chalkstone|1832197 +chalky|1832230 +challah|1832284 +challenge|1832339 +challengeable|1832594 +challenger|1832629 +challenging|1832699 +challis|1832812 +chalons|1832859 +chalons-sur-marne|1832917 +chalybeate|1832985 +chalybite|1833027 +chamaea|1833064 +chamaea fasciata|1833114 +chamaecrista|1833179 +chamaecrista fasciculata|1833251 +chamaecyparis|1833397 +chamaecyparis lawsoniana|1833471 +chamaecyparis nootkatensis|1833610 +chamaecyparis thyoides|1833746 +chamaecytisus|1833904 +chamaecytisus palmensis|1833979 +chamaedaphne|1834076 +chamaedaphne calyculata|1834152 +chamaeleo|1834232 +chamaeleo chamaeleon|1834308 +chamaeleo oweni|1834398 +chamaeleon|1834477 +chamaeleonidae|1834556 +chamaeleontidae|1834704 +chamaemelum|1834853 +chamaemelum nobilis|1834924 +chamber|1835031 +chamber music|1835197 +chamber of commerce|1835250 +chamber orchestra|1835291 +chambered|1835328 +chambered nautilus|1835355 +chamberlain|1835438 +chambermaid|1835600 +chamberpot|1835670 +chambers|1835719 +chambray|1835967 +chameleon|1836015 +chameleon tree frog|1836154 +chamfer|1836213 +chamfer bit|1836287 +chamfer plane|1836312 +chamfron|1836377 +chammy|1836500 +chammy leather|1836585 +chamois|1836670 +chamois cloth|1836796 +chamois cress|1836852 +chamois leather|1836931 +chamomile|1837016 +chamosite|1837103 +champ|1837131 +champagne|1837296 +champagne cup|1837455 +champagne flute|1837482 +champagne-ardenne|1837386 +champaign|1837535 +champion|1837640 +champion lode|1838077 +championship|1838122 +champlain|1838222 +champleve|1838328 +champollion|1838375 +champs elysees|1838447 +chanal|1838493 +chanar|1838549 +chance|1838605 +chance event|1839166 +chance on|1839241 +chance upon|1839362 +chance variable|1839483 +chance-half correlation|1839011 +chance-medley|1839130 +chanceful|1839587 +chancel|1839642 +chancellery|1839679 +chancellor|1839720 +chancellor of the exchequer|1839844 +chancellorship|1839926 +chancellorsville|1840005 +chancery|1840063 +chancre|1840149 +chancroid|1840171 +chancroidal|1840207 +chancrous|1840244 +chancy|1840267 +chandelier|1840357 +chandelle|1840402 +chandi|1840507 +chandler|1840542 +chandlery|1840678 +chanfron|1840758 +chang|1840881 +chang jiang|1840956 +chang kuo|1841037 +chang kuo-lao|1841094 +changan|1841155 +change|1841232 +change by reversal|1842054 +change course|1842102 +change form|1842144 +change hands|1842192 +change integrity|1842228 +change intensity|1842261 +change magnitude|1842307 +change of color|1842340 +change of course|1842381 +change of direction|1842441 +change of integrity|1842491 +change of life|1842527 +change of location|1842589 +change of magnitude|1842640 +change of mind|1842676 +change of shape|1842765 +change of state|1842797 +change over|1842829 +change posture|1842918 +change ringing|1842949 +change shape|1843012 +change state|1843060 +change surface|1843094 +change taste|1843125 +change-of-pace|1841799 +change-of-pace ball|1841884 +change-up|1841969 +changeability|1843167 +changeable|1843213 +changeableness|1843578 +changed|1843624 +changeful|1843746 +changefulness|1843997 +changeless|1844061 +changelessness|1844177 +changeling|1844309 +changeover|1844478 +changer|1844555 +changing|1844687 +changtzu|1844737 +channel|1844778 +channel bass|1845415 +channel capacity|1845488 +channel cat|1845524 +channel catfish|1845605 +channel islands|1845686 +channel islands national park|1845734 +channel tunnel|1845817 +channel-surf|1845368 +channelisation|1845880 +channelise|1845966 +channelization|1846223 +channelize|1846309 +channels|1846566 +channidae|1847008 +channukah|1847059 +channukkah|1847239 +chanoyu|1847420 +chanson de geste|1847459 +chant|1847517 +chantarelle|1847648 +chanted|1847710 +chanter|1847735 +chanterelle|1847780 +chantey|1847842 +chanting|1847895 +chantlike|1847943 +chantry|1847999 +chanty|1848055 +chanukah|1848108 +chanukkah|1848287 +chao phraya|1848467 +chaos|1848506 +chaotic|1848657 +chaotic attractor|1848761 +chap|1848826 +chaparral|1849057 +chaparral broom|1849104 +chaparral cock|1849197 +chaparral mallow|1849263 +chaparral pea|1849347 +chaparral sage|1849416 +chapati|1849483 +chapatti|1849519 +chapeau|1849555 +chapel|1849599 +chapel hill|1849741 +chapel service|1849779 +chapelgoer|1849851 +chaperon|1849896 +chaperone|1849985 +chapfallen|1850073 +chapiter|1850134 +chaplain|1850168 +chaplaincy|1850222 +chaplainship|1850310 +chaplet|1850398 +chapleted|1850461 +chaplin|1850488 +chapman|1850619 +chapped|1850728 +chapter|1850778 +chapterhouse|1850908 +chapultepec|1850988 +char|1851036 +chara|1851203 +charabanc|1851253 +characeae|1851356 +characid|1851420 +characidae|1851478 +characin|1851539 +characin fish|1851597 +characinidae|1851655 +character|1851722 +character actor|1852312 +character assassination|1852380 +character printer|1852488 +character reference|1852583 +character set|1852669 +character witness|1852705 +character-at-a-time printer|1852217 +characterisation|1852740 +characterise|1852907 +characterised|1853019 +characterisic function|1853064 +characteristic|1853140 +characteristic curve|1853418 +characterization|1853494 +characterize|1853737 +characterized|1853849 +characterless|1853894 +charade|1853938 +charades|1854083 +charadrii|1854266 +charadriidae|1854327 +charadriiformes|1854394 +charadrius|1854470 +charadrius melodus|1854529 +charadrius morinellus|1854597 +charadrius vociferus|1854694 +charales|1854785 +charcoal|1854844 +charcoal burner|1855208 +charcoal gray|1855301 +charcoal grey|1855399 +charcoal-gray|1855094 +charcoal-grey|1855151 +charcot|1855497 +charcot-marie-tooth disease|1855567 +charcuterie|1855683 +chard|1855732 +chard plant|1855916 +chardonnay|1856029 +chardonnay grape|1856180 +charge|1856274 +charge account|1857855 +charge account credit|1857962 +charge card|1858042 +charge d'affaires|1858167 +charge of quarters|1858215 +charge per unit|1858256 +charge plate|1858293 +charge sheet|1858418 +charge unit|1858513 +charge up|1858573 +charge-exchange accelerator|1857772 +chargeable|1858658 +charged|1858696 +chargeman|1858851 +charger|1858913 +chari|1858969 +chari river|1859092 +chari-nile|1859026 +charina|1859155 +charina bottae|1859208 +chariness|1859279 +chariot|1859330 +chariot race|1859431 +charioteer|1859458 +charisma|1859524 +charismatic|1859592 +charitable|1859633 +charitable trust|1859801 +charitableness|1859846 +charity|1859894 +charity case|1860174 +charity shot|1860214 +charity throw|1860319 +charity toss|1860424 +charivari|1860529 +charlatan|1860605 +charlatanism|1860685 +charlemagne|1860735 +charleroi|1860840 +charles|1860898 +charles a. lindbergh|1861233 +charles andre joseph marie de gaulle|1861387 +charles augustin de coulomb|1861595 +charles augustus lindbergh|1861678 +charles baudelaire|1861838 +charles bullfinch|1861927 +charles camille saint-saens|1862001 +charles christopher parker|1862108 +charles cornwallis|1862240 +charles dana gibson|1862350 +charles darwin|1862431 +charles de gaulle|1862528 +charles dickens|1862717 +charles digby harrod|1862808 +charles dillon stengel|1862888 +charles dodgson|1862997 +charles dudley warner|1863124 +charles eames|1863231 +charles edouard jeanneret|1863361 +charles edward berry|1863454 +charles edward ives|1863533 +charles evans hughes|1863596 +charles farrar browne|1863674 +charles follen mckim|1863761 +charles fourier|1863837 +charles francis hall|1863929 +charles francois gounod|1864005 +charles franklin kettering|1864078 +charles franklin peirce|1864209 +charles frederick menninger|1864321 +charles frederick worth|1864448 +charles goodyear|1864564 +charles grey|1864646 +charles hardin holley|1864735 +charles henry harrod|1864849 +charles herbert best|1864929 +charles i|1865009 +charles ii|1865261 +charles ix|1865409 +charles james fox|1865455 +charles john huffam dickens|1865536 +charles joseph clark|1865639 +charles kay ogden|1865747 +charles kettering|1865847 +charles l'enfant|1865969 +charles lamb|1866064 +charles laughton|1866130 +charles lindbergh|1866225 +charles liston|1866376 +charles louis de secondat|1866458 +charles louis napoleon bonaparte|1866579 +charles lutwidge dodgson|1866696 +charles m. schulz|1866832 +charles martin hall|1866932 +charles maurice de talleyrand|1866994 +charles menninger|1867106 +charles munroe schulz|1867223 +charles peirce|1867327 +charles percy snow|1867430 +charles pierre baudelaire|1867531 +charles proteus steinmetz|1867627 +charles ringling|1867748 +charles river|1867828 +charles robert darwin|1867879 +charles robert redford|1867983 +charles schulz|1868151 +charles stewart parnell|1868248 +charles stuart|1868332 +charles taze russell|1868419 +charles the bald|1868495 +charles the great|1868593 +charles thomson rees wilson|1868704 +charles vii|1868794 +charles watson-wentworth|1868842 +charles wesley|1868973 +charles wilkes|1869055 +charles william post|1869121 +charles's law|1861062 +charles's wain|1861149 +charleston|1869206 +charlestown navy yard|1869367 +charley horse|1869659 +charley-horse|1869516 +charlie chaplin|1869802 +charlie parker|1869941 +charlock|1870061 +charlotte|1870155 +charlotte anna perkins gilman|1870256 +charlotte bronte|1870387 +charlotte corday|1870451 +charlotte russe|1870587 +charlottetown|1870622 +charm|1870678 +charm quark|1871110 +charmed|1871137 +charmer|1871240 +charming|1871400 +charnel|1871496 +charnel house|1871582 +charolais|1871632 +charon|1871678 +charophyceae|1871710 +charred|1871770 +charred pancake cup|1871791 +charronia|1871836 +charronia flavigula|1871894 +chart|1871984 +chartaceous|1872079 +charter|1872131 +charter member|1872317 +charter school|1872348 +chartered|1872386 +chartered accountant|1872428 +charterhouse|1872492 +chartism|1872524 +chartist|1872604 +chartless|1872691 +chartreuse|1872737 +charwoman|1872884 +chary|1872951 +charybdis|1872986 +chase|1873042 +chase after|1873267 +chase away|1873392 +chased|1873482 +chaser|1873520 +chasid|1873566 +chasidic|1873623 +chasidim|1873727 +chasidism|1873863 +chasm|1873939 +chasse|1873966 +chassid|1874025 +chassidic|1874083 +chassidim|1874188 +chassidism|1874325 +chassis|1874402 +chaste|1874626 +chastely|1874751 +chasten|1874779 +chastened|1875089 +chasteness|1875157 +chastening|1875208 +chastise|1875299 +chastised|1875527 +chastisement|1875577 +chastity|1875732 +chasuble|1875827 +chat|1875854 +chat room|1876133 +chat show|1876270 +chat up|1876327 +chateau|1876432 +chateau-thierry|1876463 +chateaubriand|1876564 +chatelaine|1876734 +chateura|1876776 +chateura pelagica|1876829 +chatoyant|1876910 +chatroom|1876975 +chattahoochee|1877031 +chattahoochee river|1877094 +chattanooga|1877163 +chattel|1877281 +chattel mortgage|1877377 +chatter|1877412 +chatter mark|1877877 +chatterbox|1877974 +chatterer|1878149 +chattering|1878331 +chattily|1878435 +chatty|1878460 +chaucer|1878576 +chauffeur|1878623 +chauffeuse|1878675 +chaulmoogra|1878705 +chaulmoogra oil|1878818 +chaulmoogra tree|1878847 +chaulmugra|1878960 +chauna|1879073 +chauna torquata|1879120 +chauvinism|1879184 +chauvinist|1879312 +chauvinistic|1879420 +chavez|1879529 +chaw|1879636 +chawbacon|1879725 +che guevara|1879789 +cheap|1879895 +cheap money|1880384 +cheap shot|1880412 +cheap-jack|1880314 +cheapen|1880479 +cheapjack|1880543 +cheaply|1880585 +cheapness|1880668 +cheapskate|1880777 +cheat|1880812 +cheat on|1881328 +cheater|1881403 +cheatgrass|1881481 +cheating|1881602 +chebab|1881768 +chechen|1881814 +chechen republic|1881977 +chechenia|1882111 +chechnya|1882238 +check|1882364 +check bit|1883961 +check character|1884002 +check girl|1884061 +check in|1884103 +check into|1884136 +check mark|1884267 +check off|1884303 +check out|1884363 +check over|1884651 +check overdraft credit|1884782 +check register|1884886 +check stub|1884928 +check up on|1884972 +check-in|1883873 +check-out procedure|1883899 +checkbook|1885103 +checked|1885140 +checker|1885212 +checkerberry|1885361 +checkerbloom|1885548 +checkerboard|1885612 +checkered|1885650 +checkered adder|1885725 +checkered daffodil|1885829 +checkered lily|1885958 +checkered whiptail|1886007 +checkers|1886085 +checking account|1886223 +checking program|1886262 +checklist|1886342 +checkmate|1886374 +checkout|1886487 +checkout counter|1886635 +checkout line|1886678 +checkout time|1886720 +checkpoint|1886785 +checkrein|1886810 +checkroom|1886847 +checkrow|1886891 +checksum|1886919 +checkup|1886984 +cheddar|1887092 +cheddar cheese|1887144 +cheddar pink|1887196 +cheek|1887261 +cheek muscle|1887438 +cheek pouch|1887512 +cheekbone|1887546 +cheekily|1887630 +cheekiness|1887663 +cheekpiece|1887758 +cheeky|1887784 +cheep|1887820 +cheer|1887905 +cheer up|1888164 +cheerer|1888243 +cheerful|1888300 +cheerfulness|1888541 +cheerily|1888607 +cheering|1888643 +cheerio|1888742 +cheerlead|1888905 +cheerleader|1888973 +cheerless|1889062 +cheerlessness|1889241 +cheery|1889299 +cheese|1889334 +cheese cutter|1889501 +cheese dip|1889540 +cheese fondue|1889564 +cheese pizza|1889600 +cheese press|1889638 +cheese rind|1889683 +cheese sauce|1889709 +cheese souffle|1889767 +cheese spread|1889799 +cheese tray|1889835 +cheeseboard|1889873 +cheeseburger|1889911 +cheesecake|1889954 +cheesecloth|1890016 +cheesed off|1890059 +cheeseflower|1890115 +cheeselike|1890192 +cheesemonger|1890217 +cheeseparing|1890270 +cheesy|1890336 +cheetah|1890404 +cheever|1890457 +cheewink|1890509 +chef|1890566 +chef's salad|1890585 +chef-d'oeuvre|1890625 +cheilanthes|1890679 +cheilanthes alabamensis|1890741 +cheilanthes eatonii|1890848 +cheilanthes gracillima|1890936 +cheilanthes lanosa|1891006 +cheilitis|1891100 +cheiloschisis|1891146 +cheilosis|1891280 +cheiranthus|1891323 +cheiranthus allionii|1891396 +cheiranthus asperus|1891497 +cheiranthus cheiri|1891610 +chekhov|1891691 +chekov|1891818 +chela|1891944 +chelate|1892025 +chelate compound|1892231 +chelated|1892312 +chelation|1892386 +chelicera|1892469 +cheliceral|1892515 +chelicerata|1892573 +chelicerate|1892635 +chelicerous|1892693 +chelidonium|1892740 +chelidonium majus|1892813 +chelifer|1892917 +chelifer cancroides|1892975 +cheliferous|1893068 +cheloid|1893115 +chelone|1893163 +chelone glabra|1893222 +chelonethida|1893352 +chelonia|1893501 +chelonia mydas|1893659 +chelonian|1893736 +chelonian reptile|1893816 +chelonidae|1893877 +cheloniidae|1893972 +chelyabinsk|1894068 +chelydra|1894130 +chelydra serpentina|1894186 +chelydridae|1894282 +chem lab|1894349 +chemakuan|1894481 +chemakum|1894516 +chemic|1894553 +chemical|1894593 +chemical action|1894676 +chemical agent|1894781 +chemical analysis|1894811 +chemical attraction|1894868 +chemical balance|1894912 +chemical bomb|1894970 +chemical bond|1895023 +chemical chain|1895079 +chemical change|1895129 +chemical compound|1895234 +chemical defence|1895287 +chemical defense|1895364 +chemical diabetes|1895441 +chemical element|1895505 +chemical energy|1895556 +chemical engineering|1895588 +chemical equilibrium|1895707 +chemical formula|1895776 +chemical group|1895820 +chemical industry|1895878 +chemical irritant|1895914 +chemical mace|1895958 +chemical mechanism|1896026 +chemical notation|1896113 +chemical operations|1896167 +chemical phenomenon|1896225 +chemical plant|1896273 +chemical process|1896342 +chemical property|1896447 +chemical reaction|1896483 +chemical reactor|1896568 +chemical science|1896610 +chemical terrorism|1896662 +chemical warfare|1896731 +chemical weapon|1896789 +chemical weapons convention|1896852 +chemically|1896928 +chemiluminescence|1896962 +chemiluminescent|1897002 +chemin de fer|1897040 +chemise|1897088 +chemisorb|1897180 +chemisorption|1897212 +chemisorptive|1897281 +chemist|1897360 +chemist's|1897515 +chemist's shop|1897597 +chemistry|1897679 +chemistry class|1897786 +chemistry department|1897828 +chemistry lab|1897902 +chemistry laboratory|1898034 +chemnitz|1898166 +chemoimmunology|1898238 +chemoreceptive|1898317 +chemoreceptor|1898378 +chemosis|1898439 +chemosorption|1898485 +chemosorptive|1898554 +chemosurgery|1898633 +chemosynthesis|1898728 +chemotaxis|1898762 +chemotherapeutic|1898788 +chemotherapeutical|1898840 +chemotherapy|1898892 +chemulpo|1898922 +chen|1898998 +chen caerulescens|1899042 +chen n. yang|1899104 +chenfish|1899164 +chenille|1899233 +chenin blanc|1899293 +chennai|1899416 +chenopodiaceae|1899477 +chenopodiales|1899582 +chenopodium|1899687 +chenopodium album|1899764 +chenopodium ambrosioides|1899856 +chenopodium bonus-henricus|1899976 +chenopodium botrys|1900094 +chenopodium capitatum|1900212 +chenopodium glaucum|1900324 +chenopodium hybridum|1900422 +chenopodium murale|1900505 +chenopodium rubrum|1900607 +chenopodium vulvaria|1900693 +cheoplastic metal|1900773 +cheoplasty|1900812 +cheque|1900868 +chequebook|1900990 +chequer|1901027 +chequered|1901100 +cherbourg|1901147 +cheremis|1901186 +cheremiss|1901275 +cherepovets|1901365 +cherimolla|1901427 +cherimoya|1901471 +cherimoya tree|1901587 +cherish|1901671 +cherished|1901721 +chermidae|1901800 +chernobyl|1901890 +chernozemic soil|1901948 +cherokee|1901979 +cherokee rose|1902069 +cheroot|1902126 +cherry|1902149 +cherry apple|1902515 +cherry birch|1902640 +cherry bomb|1902716 +cherry crab|1902764 +cherry laurel|1902889 +cherry pepper|1903055 +cherry plum|1903144 +cherry red|1903223 +cherry stone|1903269 +cherry tomato|1903505 +cherry tree|1903633 +cherry-red|1902376 +cherry-tree gum|1902486 +cherrystone|1903672 +cherrystone clam|1903857 +chert|1904037 +cherty|1904089 +cherub|1904141 +cherubic|1904187 +cherubini|1904255 +chervil|1904345 +chesapeake bay|1904434 +chesapeake bay retriever|1904477 +cheshire cat|1904546 +cheshire cheese|1904632 +chess|1904680 +chess club|1904764 +chess game|1904820 +chess master|1904857 +chess match|1904892 +chess move|1904919 +chess piece|1904944 +chess player|1904984 +chess set|1905025 +chessboard|1905048 +chessman|1905081 +chest|1905121 +chest cavity|1905260 +chest of drawers|1905325 +chest pain|1905422 +chest protector|1905455 +chest register|1905499 +chest tone|1905555 +chest voice|1905611 +chester|1905667 +chester a. arthur|1905721 +chester alan arthur|1905891 +chester nimitz|1906063 +chester william nimitz|1906161 +chesterfield|1906267 +chesterton|1906436 +chestnut|1906523 +chestnut blight|1906719 +chestnut canker|1906789 +chestnut oak|1906859 +chestnut tree|1906894 +chestnut-bark disease|1906649 +chesty|1906931 +chetah|1907003 +chetrum|1907056 +cheval glass|1907175 +cheval-de-frise|1907097 +chevalier|1907204 +chevalier de bayard|1907362 +chevalier de lamarck|1907478 +chevaux-de-frise|1907591 +cheviot|1907728 +chevre|1907779 +chevron|1907814 +chevrotain|1907923 +chevvy|1907963 +chevy|1908126 +chew|1908289 +chew out|1908439 +chew over|1908659 +chew the fat|1908800 +chew up|1908938 +chewa|1909158 +chewable|1909187 +chewer|1909221 +chewing|1909246 +chewing gum|1909307 +chewing out|1909374 +chewink|1909509 +chewy|1909566 +cheyenne|1909602 +cheyne-stokes respiration|1909785 +chi|1909920 +chiacoan peccary|1910026 +chian|1910086 +chian turpentine|1910120 +chiang chung-cheng|1910189 +chiang kai-shek|1910305 +chianti|1910418 +chiaroscuro|1910452 +chiasm|1910497 +chiasma|1910614 +chiasma opticum|1910731 +chiasmal|1910810 +chiasmatic|1910928 +chiasmic|1911046 +chiasmus|1911164 +chic|1911200 +chicago|1911322 +chicane|1911455 +chicanery|1911705 +chicha|1911806 +chichewa|1911933 +chichi|1911983 +chichipe|1912019 +chick|1912068 +chickadee|1912201 +chickamauga|1912233 +chickasaw|1912303 +chickasaw plum|1912465 +chicken|1912557 +chicken and rice|1912987 +chicken breast|1913018 +chicken broth|1913093 +chicken cacciatora|1913142 +chicken cacciatore|1913224 +chicken casserole|1913306 +chicken coop|1913343 +chicken cordon bleu|1913401 +chicken drumstick|1913435 +chicken farm|1913484 +chicken feed|1913511 +chicken hawk|1913792 +chicken kiev|1913828 +chicken leg|1913868 +chicken little|1913917 +chicken liver|1914007 +chicken louse|1914036 +chicken manure|1914135 +chicken marengo|1914166 +chicken mousse|1914212 +chicken out|1914243 +chicken paprika|1914316 +chicken paprikash|1914364 +chicken purloo|1914412 +chicken roundworm|1914454 +chicken run|1914530 +chicken salad|1914587 +chicken sandwich|1914616 +chicken scratch|1914651 +chicken snake|1914711 +chicken soup|1914744 +chicken stew|1914771 +chicken stock|1914803 +chicken taco|1914852 +chicken tetrazzini|1914879 +chicken wing|1914931 +chicken wire|1914958 +chicken yard|1915014 +chicken-breasted|1912803 +chicken-fight|1912855 +chickenfeed|1915071 +chickenfight|1915147 +chickenhearted|1915198 +chickenpox|1915296 +chickenshit|1915330 +chickeree|1915366 +chickpea|1915438 +chickpea plant|1915570 +chickweed|1915656 +chickweed phlox|1915795 +chicle|1915866 +chicle gum|1915897 +chicness|1915928 +chico|1916009 +chicory|1916063 +chicory escarole|1916250 +chicory plant|1916317 +chicory root|1916396 +chicot|1916464 +chide|1916532 +chiding|1916752 +chief|1916852 +chief assistant|1916982 +chief constable|1917065 +chief executive|1917142 +chief executive officer|1917366 +chief financial officer|1917466 +chief joseph|1917542 +chief justice|1917624 +chief of staff|1917679 +chief of state|1917728 +chief operating officer|1917781 +chief petty officer|1917881 +chief secretary|1917941 +chiefly|1917999 +chieftain|1918056 +chieftaincy|1918125 +chieftainship|1918215 +chiffon|1918305 +chiffon cake|1918364 +chiffonier|1918391 +chigetai|1918457 +chigger|1918531 +chigger flower|1918635 +chiggerflower|1918865 +chignon|1919014 +chigoe|1919058 +chigoe flea|1919115 +chihuahua|1919172 +chihuahuan spotted whiptail|1919281 +chilblain|1919395 +chilblained|1919438 +chilblains|1919469 +child|1919542 +child abuse|1920065 +child care|1920129 +child molester|1920248 +child neglect|1920326 +child pornography|1920392 +child prodigy|1920478 +child psychology|1920618 +child support|1920721 +child welfare agency|1920760 +child welfare service|1920852 +child's body|1919786 +child's game|1919822 +child's play|1919849 +child's room|1920002 +childbearing|1920944 +childbed|1921090 +childbed fever|1921202 +childbirth|1921281 +childbirth-preparation class|1921381 +childcare|1921470 +childe hassam|1921508 +childhood|1921584 +childish|1921657 +childishness|1921694 +childless|1921736 +childlessness|1921766 +childlike|1921816 +childly|1921903 +chile|1921945 +chile bonito|1922080 +chile hazel|1922154 +chile nut|1922275 +chile pine|1922394 +chile tarweed|1922457 +chilean|1922538 +chilean bonito|1922637 +chilean cedar|1922713 +chilean firebush|1922790 +chilean flameflower|1922885 +chilean hazelnut|1922983 +chilean jasmine|1923109 +chilean monetary unit|1923172 +chilean nut|1923239 +chilean peso|1923360 +chilean rimu|1923422 +chilean strawberry|1923489 +chili|1923584 +chili con carne|1923671 +chili dog|1923707 +chili pepper|1923749 +chili powder|1923934 +chili sauce|1924015 +chili vinegar|1924046 +chiliad|1924084 +chiliasm|1924164 +chiliast|1924251 +chiliastic|1924302 +chill|1924333 +chill out|1924723 +chiller|1924816 +chilli|1924867 +chilli pepper|1924926 +chilliness|1925067 +chilling|1925126 +chills and fever|1925239 +chilly|1925278 +chiloe|1925397 +chilomastix|1925427 +chilomeniscus|1925495 +chilomeniscus cinctus|1925566 +chilomycterus|1925648 +chilopoda|1925716 +chilopsis|1925767 +chilopsis linearis|1925832 +chimaera|1925904 +chimaera monstrosa|1926052 +chimaeridae|1926119 +chimakum|1926183 +chimaphila|1926217 +chimaphila corymbosa|1926287 +chimaphila umbellata|1926421 +chimariko|1926555 +chimborazo|1926623 +chime|1926668 +chime in|1926762 +chimera|1926865 +chimeral|1926993 +chimeric|1927065 +chimerical|1927137 +chimney|1927228 +chimney bellflower|1927275 +chimney breast|1927360 +chimney corner|1927389 +chimney plant|1927435 +chimney swallow|1927520 +chimney swift|1927627 +chimneypiece|1927690 +chimneypot|1927756 +chimneystack|1927795 +chimneysweep|1927822 +chimneysweeper|1927873 +chimonanthus|1927924 +chimonanthus praecox|1928000 +chimp|1928108 +chimpanzee|1928167 +chimwini|1928226 +chin|1928276 +chin music|1928714 +chin rest|1928801 +chin strap|1928825 +chin up|1928851 +chin-up|1928402 +chin-wag|1928440 +chin-wagging|1928577 +china|1928908 +china aster|1929143 +china cabinet|1929206 +china clay|1929250 +china closet|1929328 +china fleece vine|1929372 +china grass|1929471 +china jute|1929573 +china pink|1929693 +china rose|1929762 +china stone|1929933 +china tree|1930011 +chinaberry|1930253 +chinaberry tree|1930473 +chinaman|1930606 +chinaware|1930671 +chincapin|1930714 +chinch|1930765 +chinch bug|1930859 +chincherinchee|1930919 +chinchilla|1930999 +chinchilla laniger|1931098 +chinchilla rat|1931185 +chinchillidae|1931262 +chinchillon|1931334 +chinchona|1931412 +chinchy|1931445 +chine|1931494 +chinese|1931615 +chinese alligator|1931821 +chinese angelica|1931901 +chinese angelica tree|1931994 +chinese anise|1932092 +chinese black mushroom|1932217 +chinese brown sauce|1932366 +chinese cabbage|1932433 +chinese celery|1932620 +chinese checkers|1932703 +chinese chequers|1932774 +chinese chestnut|1932845 +chinese chive|1932931 +chinese cinnamon|1933031 +chinese cork oak|1933091 +chinese date|1933166 +chinese deity|1933254 +chinese elm|1933319 +chinese evergreen|1933450 +chinese forget-me-not|1933539 +chinese fried rice|1933634 +chinese goose|1933697 +chinese gooseberry|1933756 +chinese hibiscus|1933918 +chinese holly|1934045 +chinese jujube|1934106 +chinese lacquer tree|1934196 +chinese lantern|1934392 +chinese lantern plant|1934441 +chinese magnolia|1934568 +chinese monetary unit|1934657 +chinese mushroom|1934724 +chinese mustard|1934810 +chinese paddlefish|1934941 +chinese parasol|1935024 +chinese parasol tree|1935143 +chinese parsley|1935267 +chinese pea tree|1935431 +chinese primrose|1935508 +chinese privet|1935585 +chinese puzzle|1935664 +chinese restaurant syndrome|1935710 +chinese revolution|1935784 +chinese rhubarb|1935842 +chinese scholar tree|1935920 +chinese scholartree|1936051 +chinese shan|1936181 +chinese silk plant|1936240 +chinese wall|1936349 +chinese water chestnut|1936436 +chinese white cabbage|1936535 +chinese wistaria|1936665 +chinese wood oil|1936745 +chinese yam|1936801 +chinese-red|1931748 +chingpo|1936879 +chink|1936937 +chinkapin|1937118 +chinkapin oak|1937169 +chinked|1937262 +chinless|1937298 +chinning bar|1937332 +chino|1937358 +chino cloth|1937492 +chino-japanese war|1937415 +chinoiserie|1937549 +chinook|1937576 +chinook jargon|1937828 +chinook salmon|1937888 +chinook wind|1938012 +chinookan|1938085 +chinos|1938131 +chinquapin|1938217 +chinquapin oak|1938451 +chintz|1938544 +chintzily|1938590 +chintzy|1938625 +chiococca|1938732 +chiococca alba|1938797 +chionanthus|1938876 +chionanthus virginicus|1938958 +chionochloa conspicua|1939037 +chios|1939126 +chip|1939167 +chip at|1939757 +chip away|1939789 +chip away at|1939852 +chip in|1939915 +chip off|1939961 +chip shot|1940035 +chipboard|1940082 +chipewyan|1940123 +chipmunk|1940300 +chipolata|1940327 +chipotle|1940354 +chipped|1940397 +chippendale|1940421 +chipper|1940549 +chippewa|1940601 +chippewaian|1940765 +chippewyan|1940883 +chipping|1941000 +chipping sparrow|1941059 +chiralgia|1941122 +chiricahua apache|1941154 +chirico|1941206 +chirk|1941258 +chirk up|1941303 +chirocephalus|1941348 +chirology|1941443 +chiromance|1941547 +chiromancer|1941574 +chiromancy|1941642 +chiromantic|1941746 +chironomidae|1941817 +chironomus|1941889 +chiropodist|1941953 +chiropody|1942027 +chiropractic|1942082 +chiropractor|1942114 +chiroptera|1942153 +chiropteran|1942214 +chirp|1942293 +chirpily|1942395 +chirpiness|1942422 +chirpy|1942496 +chirr|1942535 +chirrup|1942579 +chisel|1942669 +chisel in|1942798 +chisel steel|1942901 +chiseled|1942929 +chiseler|1942969 +chiseller|1943102 +chisholm trail|1943235 +chishona|1943287 +chisinau|1943337 +chislev|1943400 +chit|1943454 +chitchat|1943499 +chitin|1943763 +chitinous|1943802 +chitlings|1943843 +chitlins|1943904 +chiton|1943965 +chittagong|1944065 +chittam bark|1944130 +chittamwood|1944194 +chittem bark|1944463 +chitter|1944527 +chitterlings|1944583 +chittimwood|1944644 +chivalric|1944829 +chivalrous|1944871 +chivalrously|1944918 +chivalry|1944949 +chivaree|1945026 +chive|1945102 +chives|1945180 +chivvy|1945339 +chivy|1945502 +chiwere|1945665 +chlamydeous|1945713 +chlamydera|1945746 +chlamydera nuchalis|1945805 +chlamydia|1945888 +chlamydia psittaci|1946058 +chlamydia trachomatis|1946127 +chlamydiaceae|1946205 +chlamydial|1946279 +chlamydomonadaceae|1946442 +chlamydomonas|1946533 +chlamydosaurus|1946607 +chlamydosaurus kingi|1946681 +chlamydospore|1946768 +chlamyphore|1946797 +chlamyphorus|1946889 +chlamyphorus truncatus|1946956 +chlamys|1947071 +chloasma|1947196 +chloe anthony wofford|1947248 +chlor-trimeton|1947338 +chloral hydrate|1947426 +chlorambucil|1947492 +chloramine|1947540 +chloramine-t|1947584 +chloramphenicol|1947641 +chloranthaceae|1947707 +chloranthus|1947801 +chlorate|1947883 +chlordiazepoxide|1947906 +chlorella|1947965 +chlorenchyma|1947995 +chlorhexidine|1948028 +chloric acid|1948062 +chloride|1948089 +chloride of lime|1948148 +chlorinate|1948256 +chlorinated lime|1948307 +chlorination|1948415 +chlorine|1948506 +chlorine dioxide|1948581 +chlorine water|1948663 +chlorinity|1948744 +chloris|1948782 +chloris gayana|1948851 +chloris truncata|1948916 +chlorite|1949022 +chloroacetophenone|1949048 +chlorobenzene|1949123 +chlorobenzylidenemalononitrile|1949214 +chlorococcales|1949301 +chlorococcum|1949378 +chlorofluorocarbon|1949449 +chloroform|1949539 +chloromycetin|1949779 +chlorophis|1949859 +chlorophoneus|1949921 +chlorophoneus nigrifrons|1949989 +chlorophthalmidae|1950086 +chlorophyceae|1950168 +chlorophyl|1950231 +chlorophyll|1950271 +chlorophyll a|1950311 +chlorophyll b|1950357 +chlorophyllose|1950403 +chlorophyllous|1950449 +chlorophyllum molybdites|1950495 +chlorophyta|1950561 +chlorophyte|1950624 +chloropicrin|1950668 +chloroplast|1950733 +chloroprene|1950762 +chloroquine|1950793 +chlorosis|1950845 +chlorothiazide|1950925 +chlorotic|1951004 +chlorous acid|1951069 +chloroxylon|1951097 +chloroxylon swietenia|1951166 +chlorpheniramine maleate|1951249 +chlorpromazine|1951322 +chlorpyrifos|1951547 +chlortetracycline|1951585 +chlorthalidone|1951650 +chlorura|1951727 +chlorura chlorura|1951780 +choanocyte|1951852 +choc|1951901 +choc-ice|1951931 +chock|1951969 +chock up|1952183 +chock-a-block|1952077 +chock-full|1952105 +chockablock|1952232 +chockful|1952310 +chocolate|1952388 +chocolate bar|1952550 +chocolate cake|1952589 +chocolate candy|1952618 +chocolate chip cookie|1952653 +chocolate eclair|1952723 +chocolate egg|1952756 +chocolate fondue|1952790 +chocolate fudge|1952829 +chocolate ice cream|1952860 +chocolate kiss|1952899 +chocolate liquor|1952944 +chocolate milk|1952980 +chocolate mousse|1953009 +chocolate pudding|1953042 +chocolate root|1953077 +chocolate sauce|1953161 +chocolate syrup|1953208 +chocolate tree|1953255 +chocolate truffle|1953346 +choctaw|1953387 +choeronycteris|1953515 +choeronycteris mexicana|1953588 +choice|1953685 +choice morsel|1953887 +choice of words|1953961 +choiceness|1954055 +choir|1954109 +choir loft|1954181 +choir school|1954209 +choirboy|1954278 +choirmaster|1954306 +choke|1954353 +choke back|1955269 +choke coil|1955358 +choke down|1955402 +choke hold|1955491 +choke off|1955628 +choke up|1955816 +choke-full|1955191 +chokecherry|1955900 +chokecherry tree|1955988 +choked|1956063 +chokedamp|1956098 +chokehold|1956164 +chokepoint|1956291 +choker|1956358 +chokey|1956553 +choking|1956595 +choking coil|1956695 +choky|1956739 +cholangiography|1956794 +cholangitis|1956853 +cholecarciferol|1956901 +cholecystectomy|1956994 +cholecystitis|1957061 +cholelithiasis|1957111 +cholelithotomy|1957145 +choler|1957179 +cholera|1957396 +cholera infantum|1957480 +cholera morbus|1957549 +choleraic|1957629 +choleric|1957666 +cholestasis|1957806 +cholesterin|1957850 +cholesterol|1957906 +cholesterosis cutis|1957962 +cholic acid|1958076 +choline|1958107 +cholinergic|1958192 +cholinesterase|1958225 +cholla|1958256 +choloepus|1958294 +choloepus didactylus|1958352 +choloepus hoffmanni|1958440 +chomp|1958526 +chomping|1958603 +chomsky|1958657 +chon|1958741 +chondrichthian|1958816 +chondrichthyes|1958864 +chondrify|1958930 +chondrin|1958967 +chondriosome|1959010 +chondrite|1959067 +chondritic|1959097 +chondrodystrophy|1959137 +chondroma|1959382 +chondrosarcoma|1959489 +chondrule|1959521 +chondrus|1959548 +chondrus crispus|1959607 +chongqing|1959701 +choo-choo|1959769 +choose|1959843 +choose up|1959947 +chooser|1959989 +choosey|1960075 +choosy|1960110 +chop|1960145 +chop down|1960537 +chop off|1960587 +chop shop|1960647 +chop shot|1960680 +chop steak|1960711 +chop suey|1960873 +chop up|1960897 +chop-chop|1960359 +chop-suey greens|1960408 +chopfallen|1960923 +chophouse|1960984 +chopin|1961051 +chopine|1961212 +chopines|1961262 +chopped|1961351 +chopped steak|1961388 +chopper|1961469 +choppiness|1961646 +chopping block|1961699 +chopping board|1961729 +choppy|1961773 +chopsteak|1961796 +chopstick|1961877 +chopsticks|1961917 +choragic|1961984 +choragus|1962008 +choral|1962033 +choral ode|1962131 +chorale|1962155 +chorale prelude|1962191 +chord|1962224 +chordal|1962342 +chordamesoderm|1962381 +chordata|1962439 +chordate|1962489 +chordate family|1962568 +chordate genus|1962600 +chordeiles|1962630 +chorditis|1962689 +chordomesoderm|1962769 +chordophone|1962827 +chordospartium|1962868 +chore|1962946 +chorea|1962975 +choreic abasia|1963109 +choreograph|1963140 +choreographer|1963237 +choreographic|1963268 +choreography|1963296 +choric|1963420 +chorine|1963450 +chorioallantoic membrane|1963515 +chorioallantois|1963587 +choriomeningitis|1963659 +chorion|1963696 +chorionic|1963717 +chorionic villus|1963739 +chorionic villus biopsy|1963772 +chorionic villus sampling|1963838 +chorioretinitis|1963904 +choriotis|1963939 +choriotis australis|1963995 +chorister|1964065 +chorizagrotis|1964120 +chorizagrotis auxiliaris|1964193 +chorizema|1964350 +choroid|1964413 +choroid coat|1964465 +choroid plexus|1964517 +choroid vein|1964571 +choroidal artery|1964638 +chortle|1964719 +chorus|1964819 +chorus frog|1965038 +chorus girl|1965089 +chorus line|1965154 +chosen|1965187 +chosen people|1965344 +choson|1965374 +chou|1965430 +chou dynasty|1965566 +chou en-lai|1965650 +chough|1965761 +chouse|1965790 +chow|1965882 +chow chow|1966009 +chow dynasty|1966116 +chow line|1966200 +chow mein|1966238 +chowchow|1966262 +chowder|1966332 +chris evert|1966354 +chrism|1966444 +chrisom|1966529 +chrissie evert|1966614 +christ|1966707 +christ plant|1967190 +christ thorn|1967277 +christ within|1967364 +christ's resurrection|1967093 +christ's-thorn|1966920 +christchurch|1967470 +christella|1967534 +christen|1967559 +christendom|1967603 +christening|1967654 +christiaan eijkman|1967683 +christiaan huygens|1967773 +christian|1967856 +christian bible|1968011 +christian church|1968185 +christian dior|1968318 +christian era|1968415 +christian friedrich hebbel|1968473 +christian friedrich schonbein|1968581 +christian holy day|1968688 +christian huygens|1968762 +christian johann doppler|1968844 +christian liturgy|1968921 +christian name|1968974 +christian religion|1969059 +christian schonbein|1969151 +christian science|1969248 +christian scientist|1969383 +christian theology|1969443 +christian year|1969518 +christiania|1969589 +christianisation|1969667 +christianise|1969738 +christianity|1969794 +christianization|1969917 +christianize|1969988 +christianly|1970082 +christie|1970113 +christine marie evert|1970205 +christless|1970305 +christlike|1970350 +christly|1970389 +christmas|1970428 +christmas begonia|1970657 +christmas bells|1970751 +christmas berry|1970799 +christmas box|1971074 +christmas bush|1971172 +christmas cactus|1971256 +christmas cake|1971354 +christmas card|1971403 +christmas carol|1971456 +christmas day|1971518 +christmas disease|1971662 +christmas eve|1971775 +christmas factor|1971827 +christmas fern|1971915 +christmas flower|1972031 +christmas gift|1972174 +christmas green|1972239 +christmas holly|1972320 +christmas present|1972398 +christmas pudding|1972466 +christmas rose|1972532 +christmas star|1972626 +christmas stocking|1972767 +christmas tree|1972823 +christmasberry|1973210 +christmastide|1973403 +christmastime|1973490 +christological|1973577 +christology|1973674 +christoph willibald von gluck|1973785 +christopher|1973869 +christopher carson|1973949 +christopher columbus|1974053 +christopher fry|1974158 +christopher isherwood|1974224 +christopher marlowe|1974340 +christopher william bradshaw isherwood|1974423 +chroma|1974556 +chromaesthesia|1974618 +chromate|1974681 +chromatic|1974704 +chromatic aberration|1975976 +chromatic color|1976047 +chromatic colour|1976152 +chromatic scale|1976257 +chromatic vision|1976302 +chromaticity|1976395 +chromatid|1976436 +chromatin|1976478 +chromatin granule|1976530 +chromatinic|1976582 +chromatism|1976630 +chromatogram|1976691 +chromatographic|1976723 +chromatographical|1976812 +chromatography|1976901 +chromatography column|1976972 +chrome|1977022 +chrome alum|1977208 +chrome green|1977242 +chrome red|1977304 +chrome yellow|1977336 +chrome-nickel steel|1977116 +chrome-tungsten steel|1977165 +chromesthesia|1977392 +chromic acid|1977455 +chromite|1977482 +chromium|1977508 +chromium steel|1977606 +chromium-plate|1977569 +chromoblastomycosis|1977658 +chromogen|1977701 +chromolithography|1977747 +chromophore|1977786 +chromoplast|1977836 +chromosomal|1977865 +chromosomal aberration|1977890 +chromosomal anomaly|1978025 +chromosomal mutation|1978160 +chromosome|1978247 +chromosome mapping|1978272 +chromosonal disorder|1978326 +chromosphere|1978461 +chronic|1978489 +chronic bronchitis|1978583 +chronic eczema|1978622 +chronic gastritis|1978693 +chronic glaucoma|1978730 +chronic glossitis|1978785 +chronic kidney failure|1978822 +chronic leukemia|1978905 +chronic lymphocytic leukemia|1978980 +chronic myelocytic leukemia|1979035 +chronic obstructive pulmonary disease|1979148 +chronic pyelonephritis|1979244 +chronic renal failure|1979291 +chronic wasting disease|1979374 +chronically|1979422 +chronicle|1979455 +chronicler|1979532 +chronograph|1979578 +chronological|1979605 +chronological age|1979658 +chronological record|1979689 +chronological sequence|1979758 +chronological succession|1979886 +chronologise|1980014 +chronologize|1980054 +chronology|1980094 +chronometer|1980228 +chronoperates|1980255 +chronoperates paradoxus|1980326 +chronoscope|1980405 +chrosomal abnormality|1980481 +chrysalis|1980616 +chrysanthemum|1980640 +chrysanthemum balsamita|1980698 +chrysanthemum cinerariifolium|1980851 +chrysanthemum coccineum|1981017 +chrysanthemum coronarium|1981125 +chrysanthemum coronarium spatiosum|1981210 +chrysanthemum dog|1981338 +chrysanthemum frutescens|1981389 +chrysanthemum lacustre|1981532 +chrysanthemum leucanthemum|1981650 +chrysanthemum maximum|1981801 +chrysanthemum maximum maximum|1981913 +chrysanthemum morifolium|1982043 +chrysanthemum parthenium|1982195 +chrysanthemum ptarmiciflorum|1982306 +chrysanthemum segetum|1982461 +chrysaora|1982557 +chrysaora quinquecirrha|1982621 +chrysarobin|1982703 +chrysemys|1982750 +chrysemys picta|1982809 +chrysobalanus|1982906 +chrysobalanus icaco|1982981 +chrysoberyl|1983083 +chrysochloridae|1983123 +chrysochloris|1983201 +chrysolepis|1983271 +chrysolepis chrysophylla|1983344 +chrysolepis sempervirens|1983488 +chrysolite|1983581 +chrysolophus|1983625 +chrysolophus pictus|1983690 +chrysomelid|1983764 +chrysomelidae|1983804 +chrysophrys|1983879 +chrysophrys auratus|1983941 +chrysophrys australis|1984017 +chrysophyceae|1984098 +chrysophyllum|1984193 +chrysophyllum cainito|1984281 +chrysophyllum oliviforme|1984364 +chrysophyta|1984501 +chrysopid|1984564 +chrysopidae|1984630 +chrysoprase|1984699 +chrysopsis|1984757 +chrysopsis mariana|1984825 +chrysopsis villosa|1984907 +chrysosplenium|1985037 +chrysosplenium americanum|1985115 +chrysothamnus|1985230 +chrysothamnus nauseosus|1985307 +chrysotherapy|1985400 +chrysotile|1985436 +chthonian|1985465 +chthonic|1985515 +chu kiang|1985565 +chuang-tzu|1985624 +chub|1985679 +chub mackerel|1985735 +chubbiness|1985792 +chubby|1985866 +chuck|1985923 +chuck berry|1986375 +chuck out|1986445 +chuck short ribs|1986675 +chuck up the sponge|1986713 +chuck wagon|1986832 +chuck-full|1986212 +chuck-will's-widow|1986290 +chucker-out|1986866 +chuckhole|1986901 +chuckle|1986940 +chuckwalla|1987040 +chuddar|1987101 +chufa|1987159 +chuff|1987251 +chuffed|1987281 +chug|1987306 +chukaku-ha|1987342 +chukka|1987447 +chukka boot|1987506 +chukker|1987582 +chukker-brown|1987641 +chum|1987704 +chum up|1987758 +chumminess|1987795 +chummy|1987888 +chump|1987968 +chump change|1988047 +chunga|1988123 +chunga burmeisteri|1988184 +chungking|1988264 +chunk|1988332 +chunking|1988482 +chunky|1988552 +chunnel|1988632 +church|1988680 +church bell|1988936 +church bench|1988962 +church building|1988994 +church calendar|1989089 +church doctrine|1989176 +church father|1989296 +church festival|1989407 +church hat|1989460 +church key|1989502 +church member|1989544 +church mode|1989607 +church mouse|1989695 +church music|1989734 +church of christ scientist|1989818 +church of england|1989923 +church of ireland|1990027 +church of jesus christ of latter-day saints|1990125 +church of rome|1990268 +church of scientology|1990388 +church of the brethren|1990468 +church officer|1990560 +church property|1990605 +church roll|1990703 +church school|1990736 +church service|1990793 +church slavic|1990865 +church tower|1991004 +church year|1991032 +church-state|1988904 +churchgoer|1991088 +churchgoing|1991151 +churchill|1991182 +churchill downs|1991455 +churchillian|1991507 +churchlike|1991587 +churchly|1991626 +churchman|1991665 +churchwarden|1991747 +churchyard|1991784 +churidars|1991820 +churl|1991854 +churlish|1992061 +churlishly|1992109 +churn|1992136 +churn out|1992210 +churn up|1992275 +churned-up|1992338 +churning|1992376 +churr|1992461 +churrigueresco|1992511 +churrigueresque|1992565 +chute|1992619 +chute-the-chute|1992712 +chutney|1992823 +chutzpa|1992864 +chutzpah|1992963 +chutzpanik|1993062 +chuvash|1993135 +chylaceous|1993222 +chyle|1993308 +chylifactive|1993382 +chylifactory|1993484 +chyliferous|1993586 +chylific|1993665 +chyloderma|1993767 +chylomicron|1993822 +chylous|1993887 +chyme|1993973 +chymosin|1994002 +chytridiaceae|1994044 +chytridiales|1994116 +chytridiomycetes|1994183 +ci|1994255 +cia|1994365 +ciao|1994463 +ciardi|1994514 +cibotium|1994590 +cibotium barometz|1994643 +cicada|1994712 +cicada killer|1994765 +cicadellidae|1994819 +cicadidae|1994891 +cicala|1994954 +cicatrice|1995007 +cicatrise|1995048 +cicatrix|1995096 +cicatrize|1995137 +cicer|1995185 +cicer arietinum|1995236 +cicero|1995338 +cicerone|1995498 +cichlid|1995522 +cichlid fish|1995584 +cichlidae|1995646 +cichorium|1995704 +cichorium endivia|1995769 +cichorium intybus|1995851 +cicily isabel fairfield|1995948 +cicindelidae|1996055 +ciconia|1996127 +ciconia ciconia|1996177 +ciconia nigra|1996236 +ciconiidae|1996291 +ciconiiformes|1996352 +cicuta|1996422 +cicuta verosa|1996476 +cid|1996543 +cidade de praia|1996614 +cider|1996700 +cider gum|1996754 +cider mill|1996801 +cider vinegar|1996834 +ciderpress|1996872 +cigar|1996915 +cigar band|1997040 +cigar box|1997080 +cigar butt|1997103 +cigar cutter|1997133 +cigar lighter|1997183 +cigar smoker|1997269 +cigar-box cedar|1996952 +cigar-shaped|1996986 +cigaret|1997311 +cigarette|1997381 +cigarette burn|1997451 +cigarette butt|1997490 +cigarette case|1997524 +cigarette holder|1997553 +cigarette lighter|1997591 +cigarette paper|1997677 +cigarette smoker|1997736 +cigarfish|1997782 +cigarillo|1997847 +cilantro|1997872 +cilial|1998011 +ciliary|1998063 +ciliary artery|1998162 +ciliary body|1998240 +ciliary veins|1998284 +ciliata|1998352 +ciliate|1998425 +ciliated|1998576 +ciliated protozoan|1998608 +cilioflagellata|1998676 +ciliophora|1998788 +ciliophoran|1998864 +cilium|1998932 +cim|1998994 +cimabue|1999076 +cimarron|1999129 +cimarron river|1999281 +cimetidine|1999335 +cimex|1999434 +cimex lectularius|1999483 +cimicidae|1999595 +cimicifuga|1999658 +cimicifuga americana|1999728 +cimicifuga foetida|1999818 +cimicifuga racemosa|1999902 +cimmerian|1999999 +cinch|2000033 +cinchona|2000342 +cinchona bark|2000375 +cinchona calisaya|2000431 +cinchona cordifolia|2000545 +cinchona lancifolia|2000648 +cinchona ledgeriana|2000751 +cinchona officinalis|2000867 +cinchona pubescens|2000984 +cinchona tree|2001064 +cincinnati|2001125 +cincinnatus|2001185 +cinclidae|2001279 +cinclus|2001337 +cinclus aquaticus|2001387 +cinclus mexicanus|2001472 +cincture|2001557 +cinder|2001613 +cinder block|2001646 +cinder pig|2001710 +cinder track|2001739 +cinderella|2001796 +cine projector|2002071 +cine-camera|2001915 +cine-film|2001998 +cinema|2002136 +cinema verite|2002258 +cinematic|2002393 +cinematise|2002418 +cinematize|2002454 +cinematographer|2002490 +cinematography|2002562 +cineraria|2002648 +cineraria maritima|2002753 +cinerarium|2002842 +cinerary|2002887 +cingulate gyrus|2002917 +cingulum|2002973 +cinnabar|2003072 +cinnabar chanterelle|2003211 +cinnabar moth|2003274 +cinnamene|2003348 +cinnamomum|2003445 +cinnamomum camphora|2003515 +cinnamomum cassia|2003584 +cinnamomum loureirii|2003660 +cinnamomum zeylanicum|2003734 +cinnamon|2003840 +cinnamon bark|2003963 +cinnamon bear|2004012 +cinnamon bread|2004103 +cinnamon bun|2004158 +cinnamon fern|2004232 +cinnamon roll|2004323 +cinnamon snail|2004397 +cinnamon stone|2004471 +cinnamon toast|2004521 +cinnamon vine|2004551 +cinque|2004617 +cinquefoil|2004721 +cio|2004779 +cipher|2004844 +cipro|2005254 +ciprofloxacin|2005316 +cira|2005372 +circadian|2005522 +circadian rhythm|2005563 +circaea|2005605 +circaea alpina|2005662 +circaea lutetiana|2005754 +circaetus|2005822 +circassian|2005878 +circassian walnut|2005985 +circe|2006113 +circinate|2006144 +circinus|2006242 +circis siliquastrum|2006283 +circle|2006387 +circle around|2006900 +circle of curvature|2006958 +circle of willis|2007012 +circle round|2007092 +circlet|2007150 +circuit|2007191 +circuit board|2007467 +circuit breaker|2007530 +circuit card|2007584 +circuit court of appeals|2007647 +circuitous|2007728 +circuitry|2007803 +circular|2007843 +circular file|2008365 +circular function|2008460 +circular measure|2008541 +circular plane|2008596 +circular saw|2008676 +circular-knit|2008333 +circularisation|2008736 +circularise|2008801 +circularity|2009022 +circularization|2009064 +circularize|2009129 +circulate|2009399 +circulating|2009807 +circulating decimal|2009836 +circulating library|2009926 +circulation|2009998 +circulative|2010175 +circulatory|2010233 +circulatory failure|2010313 +circulatory system|2010365 +circumambulate|2010431 +circumboreal|2010474 +circumcise|2010512 +circumcision|2010574 +circumduction|2010721 +circumference|2010774 +circumferential|2010826 +circumflex|2010897 +circumflex artery|2010944 +circumflex artery of the thigh|2011008 +circumflex femoral vein|2011094 +circumflex humeral artery|2011186 +circumflex iliac artery|2011266 +circumflex iliac vein|2011343 +circumflex scapular artery|2011430 +circumflex vein|2011513 +circumfuse|2011585 +circumlocution|2011631 +circumlocutious|2011744 +circumlocutory|2011816 +circumnavigate|2011888 +circumnavigation|2011927 +circumpolar|2011981 +circumscribe|2012031 +circumscribed|2012174 +circumscription|2012241 +circumspect|2012278 +circumspection|2012316 +circumspectly|2012465 +circumstance|2012494 +circumstances|2012661 +circumstantial|2012980 +circumstantial evidence|2013013 +circumstantially|2013073 +circumstantiate|2013149 +circumvallate|2013195 +circumvent|2013256 +circumvention|2013511 +circumvolute|2013557 +circumvolution|2013590 +circumvolve|2013637 +circus|2013670 +circus acrobat|2013849 +circus aeruginosus|2013881 +circus cyaneus|2013950 +circus pygargus|2014037 +circus tent|2014104 +cirio|2014174 +cirque|2014251 +cirrhosis|2014284 +cirrhosis of the liver|2014340 +cirrhus|2014396 +cirripedia|2014428 +cirrocumulus|2014485 +cirrocumulus cloud|2014532 +cirrostratus|2014579 +cirrostratus cloud|2014626 +cirrus|2014673 +cirrus cloud|2014766 +cirsium|2014801 +cirsium arvense|2014860 +cirsium discolor|2014962 +cirsium eriophorum|2015027 +cirsium flodmanii|2015131 +cirsium helenioides|2015220 +cirsium heterophylum|2015317 +cirsium lanceolatum|2015415 +cirsium rivulare|2015549 +cirsium vulgare|2015635 +cis|2015765 +cisalpine|2015964 +cisc|2016007 +cisco|2016215 +cislunar|2016300 +cismontane|2016346 +cissy|2016400 +cistaceae|2016497 +cistercian|2016582 +cistern|2016636 +cisterna|2016724 +cistothorus|2016754 +cistothorus palustris|2016816 +cistothorus platensis|2016903 +cistron|2017002 +cistus|2017040 +cistus albidus|2017098 +cistus ladanifer|2017178 +cistus ladanum|2017273 +citadel|2017366 +citation|2017411 +citation form|2017679 +cite|2017765 +citellus|2018127 +citellus citellus|2018214 +citellus lateralis|2018309 +citellus leucurus|2018415 +citellus parryi|2018559 +citellus richardsoni|2018673 +citellus variegatus|2018798 +citharichthys|2018896 +citharichthys cornutus|2018964 +cither|2019038 +cithern|2019134 +citified|2019188 +citify|2019241 +citizen|2019276 +citizen genet|2019310 +citizenry|2019403 +citizens committee|2019444 +citizenship|2019515 +citizenship day|2019613 +citlaltepetl|2019671 +citole|2019755 +citrange|2019809 +citrange tree|2019921 +citrate|2019992 +citric|2020027 +citric acid|2020047 +citric acid cycle|2020073 +citrin|2020196 +citrine|2020257 +citron|2020297 +citron tree|2020399 +citroncirus|2020460 +citroncirus webberi|2020529 +citronwood|2020620 +citrophilous mealybug|2020666 +citrophilus mealybug|2020759 +citrous|2020852 +citrous fruit|2020898 +citrulline|2020954 +citrullus|2021004 +citrullus vulgaris|2021080 +citrus|2021171 +citrus aurantifolia|2021257 +citrus aurantium|2021340 +citrus bergamia|2021488 +citrus decumana|2021573 +citrus fruit|2021698 +citrus grandis|2021754 +citrus limetta|2021878 +citrus limon|2021983 +citrus limonia|2022054 +citrus maxima|2022144 +citrus mealybug|2022267 +citrus medica|2022329 +citrus nobilis|2022404 +citrus paradisi|2022514 +citrus reticulata|2022585 +citrus sinensis|2022695 +citrus tangelo|2022786 +citrus tree|2022876 +citrus whitefly|2022915 +citta del vaticano|2022967 +cittern|2023056 +city|2023110 +city block|2023374 +city boy|2023413 +city center|2023452 +city centre|2023529 +city council|2023606 +city desk|2023636 +city district|2023686 +city editor|2023758 +city father|2023796 +city hall|2023838 +city limit|2023862 +city limits|2023929 +city line|2024049 +city man|2024090 +city manager|2024127 +city of bridges|2024182 +city of brotherly love|2024259 +city of god|2024356 +city of light|2024435 +city of london|2024528 +city of the angels|2024607 +city of westminster|2024724 +city planning|2024793 +city room|2024854 +city slicker|2024904 +city state|2024943 +city university|2025027 +city-born|2023268 +city-bred|2023321 +cityfied|2025063 +cityscape|2025116 +citywide|2025200 +ciudad de mexico|2025229 +ciudad juarez|2025335 +ciudad trujillo|2025408 +ciudad victoria|2025514 +cive|2025584 +civet|2025662 +civet bean|2025714 +civet cat|2025779 +civic|2025957 +civic center|2026069 +civic duty|2026160 +civic leader|2026232 +civic pride|2026274 +civic responsibility|2026314 +civic spirit|2026386 +civics|2026426 +civies|2026457 +civil|2026542 +civil action|2026711 +civil authority|2026767 +civil censorship|2026802 +civil contempt|2026848 +civil day|2026890 +civil death|2026956 +civil defense|2027020 +civil disobedience|2027054 +civil engineer|2027096 +civil engineering|2027160 +civil law|2027246 +civil leader|2027337 +civil liberty|2027379 +civil list|2027460 +civil marriage|2027498 +civil order|2027557 +civil right|2027591 +civil rights|2027637 +civil rights activist|2027714 +civil rights leader|2027823 +civil rights movement|2027932 +civil rights worker|2028016 +civil servant|2028125 +civil service|2028169 +civil suit|2028225 +civil time|2028275 +civil union|2028325 +civil war|2028361 +civil wrong|2028392 +civil year|2028468 +civil-libertarian|2026676 +civilian|2028522 +civilian clothing|2028583 +civilian dress|2028695 +civilian garb|2028807 +civilisation|2028919 +civilise|2029075 +civilised|2029198 +civility|2029344 +civilization|2029412 +civilize|2029568 +civilized|2029691 +civvies|2029847 +cjd|2029932 +cl|2030045 +clabber|2030211 +clack|2030279 +clack valve|2030591 +clad|2030638 +cladding|2031170 +clade|2031243 +cladisitic analysis|2031275 +cladistics|2031324 +cladode|2031373 +cladogram|2031435 +cladonia|2031472 +cladonia rangiferina|2031527 +cladoniaceae|2031627 +cladophyll|2031696 +cladorhyncus|2031758 +cladorhyncus leucocephalum|2031823 +cladrastis|2031922 +cladrastis kentukea|2031988 +cladrastis lutea|2032110 +claes oldenberg|2032229 +claforan|2032320 +claim|2032380 +claim agent|2032793 +claim form|2032877 +claim jumper|2032902 +claimant|2032943 +claiming race|2032979 +claims adjuster|2033013 +claims adjustor|2033097 +clairvoyance|2033181 +clairvoyant|2033303 +clam|2033420 +clam chowder|2033673 +clam dip|2033703 +clam up|2033725 +clamant|2033804 +clamatores|2033916 +clamatorial|2033980 +clambake|2034013 +clamber|2034039 +clamminess|2034124 +clammy|2034177 +clammy chickweed|2034202 +clammy locust|2034312 +clammyweed|2034370 +clamor|2034454 +clamoring|2034708 +clamorous|2034805 +clamorously|2034866 +clamour|2034908 +clamouring|2035089 +clamp|2035186 +clamp down|2035280 +clampdown|2035366 +clams|2035408 +clamshell|2035767 +clan|2035823 +clan member|2035892 +clandestine|2035940 +clandestine operation|2036082 +clang|2036171 +clanger|2036262 +clanging|2036350 +clangor|2036385 +clangoring|2036499 +clangorous|2036566 +clangour|2036601 +clangula|2036692 +clangula hyemalis|2036745 +clank|2036817 +clanking|2036900 +clannish|2036924 +clannishly|2036995 +clannishness|2037025 +clansman|2037096 +clanswoman|2037144 +clap|2037192 +clap on|2037587 +clap together|2037633 +clap up|2037698 +clapboard|2037763 +clapped out|2037831 +clapper|2037857 +clapper valve|2037977 +clapperboard|2038024 +clapperclaw|2038069 +clappers|2038168 +clapping|2038402 +claptrap|2038465 +claque|2038559 +clara josephine schumann|2038595 +clare booth luce|2038693 +clarence|2038762 +clarence darrow|2038802 +clarence day|2038889 +clarence malcolm lowry|2038967 +clarence seward darrow|2039056 +clarence shepard day jr.|2039150 +claret|2039240 +claret cup|2039343 +clarification|2039367 +clarified|2039458 +clarified butter|2039487 +clarify|2039533 +clarifying|2039614 +clarinet|2039670 +clarinet section|2039732 +clarinetist|2039771 +clarinettist|2039837 +clarion|2039903 +clarity|2039985 +clark|2040118 +clark cell|2040462 +clark gable|2040527 +clark standard cell|2040629 +clark's nutcracker|2040383 +clarksburg|2040703 +claro|2040763 +clary|2040784 +clary sage|2040826 +clash|2040884 +clashing|2041181 +clasp|2041212 +clasp knife|2041461 +class|2041517 +class acrasiomycetes|2042135 +class act|2042207 +class actinozoa|2042284 +class action|2042365 +class amphibia|2042435 +class angiospermae|2042489 +class anthoceropsida|2042623 +class anthozoa|2042695 +class aphasmidia|2042775 +class arachnida|2042835 +class archiannelida|2042892 +class ascidiaceae|2042961 +class ascomycetes|2043024 +class asteroidea|2043087 +class aves|2043147 +class bacillariophyceae|2043189 +class basidiomycetes|2043306 +class bivalvia|2043378 +class bryopsida|2043487 +class cephalopoda|2043562 +class cestoda|2043625 +class channidae|2043676 +class charophyceae|2043733 +class chilopoda|2043799 +class chlorophyceae|2043856 +class chondrichthyes|2043925 +class chrysophyceae|2043997 +class chytridiomycetes|2044098 +class ciliata|2044176 +class ciliophora|2044255 +class coniferopsida|2044337 +class crinoidea|2044464 +class crustacea|2044521 +class cryptophyceae|2044578 +class cyanobacteria|2044647 +class cyanophyceae|2044734 +class cycadopsida|2044820 +class cyclosporeae|2044959 +class deuteromycetes|2045025 +class diatomophyceae|2045097 +class dicotyledonae|2045211 +class dicotyledones|2045348 +class diplopoda|2045485 +class echinoidea|2045584 +class equisetatae|2045644 +class euglenophyceae|2045737 +class eumycetes|2045809 +class feeling|2045866 +class fellow|2045915 +class filicinae|2045991 +class filicopsida|2046078 +class flagellata|2046167 +class gasteromycetes|2046259 +class gasteropoda|2046365 +class gastromycetes|2046456 +class gastropoda|2046561 +class ginkgopsida|2046651 +class gnetopsida|2046766 +class gymnospermae|2046875 +class hemiascomycetes|2046984 +class hepaticae|2047059 +class hepaticopsida|2047150 +class heterokontae|2047245 +class hexapoda|2047345 +class hirudinea|2047421 +class holothuroidea|2047478 +class hyalospongiae|2047547 +class hydrozoa|2047616 +class hymenomycetes|2047670 +class insecta|2047739 +class lamellibranchia|2047814 +class larvacea|2047930 +class liliopsida|2048000 +class list|2048136 +class lycopodiate|2048182 +class lycopodineae|2048271 +class lycopsida|2048337 +class magnoliopsida|2048424 +class mammalia|2048561 +class mastigophora|2048615 +class merostomata|2048709 +class monocotyledonae|2048776 +class monocotyledones|2048917 +class musci|2049058 +class myriapoda|2049129 +class myxomycetes|2049228 +class nuda|2049291 +class oligochaeta|2049333 +class onychophora|2049396 +class oomycetes|2049459 +class ophiuroidea|2049516 +class osteichthyes|2049579 +class pauropoda|2049645 +class pelecypoda|2049702 +class period|2049813 +class phaeophyceae|2049869 +class phasmidia|2049935 +class pinopsida|2049992 +class placodermi|2050085 +class plectomycetes|2050145 +class polychaeta|2050214 +class polyplacophora|2050274 +class psilopsida|2050346 +class psilotatae|2050434 +class pteridospermopsida|2050522 +class pyrenomycetes|2050606 +class reptilia|2050675 +class rhodophyceae|2050729 +class sarcodina|2050795 +class scaphopoda|2050852 +class schizomycetes|2050912 +class scyphozoa|2050981 +class sphenopsida|2051038 +class sporozoa|2051131 +class structure|2051185 +class struggle|2051291 +class symphyla|2051364 +class tardigrada|2051418 +class taxopsida|2051478 +class tentaculata|2051571 +class thaliacea|2051634 +class tiliomycetes|2051691 +class trematoda|2051757 +class turbellaria|2051814 +class ulvophyceae|2051877 +class war|2051940 +class warfare|2052013 +class xanthophyceae|2052086 +class zygomycetes|2052155 +class-action suit|2041994 +class-conscious|2042064 +classic|2052218 +classic hemochromatosis|2052307 +classical|2052435 +classical architecture|2052571 +classical ballet|2052691 +classical conditioning|2052738 +classical greek|2052783 +classical haemophilia|2052844 +classical hemophilia|2052964 +classical latin|2053084 +classical mechanics|2053131 +classical music|2053190 +classical mythology|2053275 +classical scholar|2053314 +classical style|2053361 +classicise|2053407 +classicism|2053458 +classicist|2053550 +classicistic|2053627 +classicize|2053720 +classics|2053771 +classifiable|2053866 +classification|2053913 +classification system|2054166 +classificatory|2054242 +classified|2054274 +classified ad|2054424 +classified advertisement|2054509 +classified stock|2054594 +classifier|2054663 +classify|2054712 +classifying adjective|2054837 +classless|2054899 +classmate|2054941 +classroom|2055017 +classroom project|2055052 +classy|2055108 +clast|2055155 +clastic|2055179 +clastic rock|2055229 +clathraceae|2055262 +clathrate|2055328 +clathrus|2055419 +clatonia lanceolata|2055474 +clatter|2055544 +clattering|2055613 +clattery|2055648 +claude achille debussy|2055683 +claude bernard|2055771 +claude debussey|2055831 +claude e. shannon|2055912 +claude elwood shannon|2056042 +claude levi-strauss|2056176 +claude monet|2056253 +claude shannon|2056302 +claudication|2056429 +claudio monteverdi|2056514 +claudius|2056581 +claudius i|2056690 +claudius ptolemaeus|2056801 +clausal|2056891 +clause|2056956 +clausewitz|2057056 +claustrophobe|2057128 +claustrophobia|2057187 +claustrophobic|2057225 +claustrum|2057272 +clavariaceae|2057306 +claver|2057375 +claviceps|2057513 +claviceps purpurea|2057571 +clavichord|2057631 +clavicipitaceae|2057671 +clavicle|2057765 +clavier|2057802 +clavus|2057890 +claw|2057928 +claw hammer|2058196 +claw hatchet|2058335 +clawback|2058365 +clawed|2058424 +clawfoot|2058486 +clawhammer|2058551 +clawlike|2058609 +claxon|2058652 +clay|2058754 +clay pigeon|2059050 +clay pipe|2059083 +clay sculpture|2059120 +clay-colored robin|2059002 +clayey|2059191 +claymore|2059248 +claymore mine|2059340 +claystone|2059414 +claytonia|2059444 +claytonia caroliniana|2059515 +claytonia virginica|2059598 +clayware|2059677 +clean|2059716 +clean and jerk|2061258 +clean bill of health|2061302 +clean bomb|2061342 +clean house|2061419 +clean out|2061524 +clean room|2061685 +clean slate|2061721 +clean up|2061785 +clean-cut|2060876 +clean-handed|2060942 +clean-limbed|2061132 +clean-living|2061162 +clean-shaven|2061196 +cleanable|2061929 +cleaned|2061954 +cleaner|2061986 +cleaners|2062162 +cleaning|2062394 +cleaning implement|2062442 +cleaning lady|2062480 +cleaning pad|2062547 +cleaning woman|2062592 +cleanliness|2062659 +cleanly|2062708 +cleanness|2062748 +cleanse|2062822 +cleansed|2062887 +cleanser|2062919 +cleansing|2062985 +cleansing agent|2063090 +cleanthes|2063156 +cleanup|2063197 +cleanup position|2063362 +cleanup spot|2063418 +clear|2063474 +clear and present danger|2065738 +clear away|2065779 +clear liquid diet|2065840 +clear off|2065879 +clear out|2065940 +clear sailing|2066051 +clear the air|2066180 +clear the throat|2066270 +clear up|2066307 +clear-air turbulence|2065421 +clear-cut|2065462 +clear-eyed|2065553 +clear-sighted|2065612 +clear-thinking|2065686 +clearance|2066664 +clearance sale|2066780 +clearcutness|2066860 +cleared|2066943 +clearheaded|2067092 +clearing|2067156 +clearing house|2067305 +clearly|2067397 +clearness|2067470 +clearstory|2067601 +clearway|2067639 +clearweed|2067668 +cleat|2067729 +cleats|2067872 +cleavable|2067984 +cleavage|2068013 +cleavage cavity|2068180 +cleave|2068286 +cleaver|2068396 +cleavers|2068440 +clef|2068570 +cleft|2068601 +cleft foot|2068746 +cleft lip|2068803 +cleft palate|2068937 +cleg|2069052 +clegg|2069098 +cleistes|2069144 +cleistes divaricata|2069216 +cleistes rosea|2069356 +cleistocarp|2069450 +cleistogamic|2069495 +cleistogamous|2069547 +cleistogamy|2069599 +cleistothecium|2069637 +clematis|2069682 +clematis baldwinii|2069705 +clematis crispa|2069792 +clematis lasiantha|2069900 +clematis ochreleuca|2069974 +clematis tangutica|2070044 +clematis texensis|2070116 +clematis versicolor|2070187 +clematis verticillaris|2070260 +clematis viorna|2070380 +clematis virginiana|2070465 +clematis vitalba|2070577 +clemence sophia harned lozier|2070676 +clemenceau|2070787 +clemency|2070904 +clemens|2070988 +clement|2071082 +clement attlee|2071160 +clement philibert leo delibes|2071277 +clement richard attlee|2071375 +clementine|2071500 +clementine tree|2071632 +clench|2071732 +clenched|2071921 +clenched fist|2071954 +cleome|2072002 +cleome hassleriana|2072053 +cleome pinnata|2072147 +cleome serrulata|2072250 +cleopatra|2072354 +clepsydra|2072427 +clerestory|2072476 +clergy|2072514 +clergyman|2072541 +cleric|2072603 +clerical|2072685 +clerical collar|2072748 +clericalism|2072813 +clericalist|2072841 +clerid|2072880 +clerid beetle|2072917 +cleridae|2072954 +clerihew|2073014 +clerisy|2073044 +clerk|2073094 +clerking|2073171 +clerkship|2073224 +clethra|2073298 +clethra alnifolia|2073368 +clethraceae|2073478 +clethrionomys|2073572 +cleveland|2073642 +clever|2073860 +clever clogs|2073985 +clever dick|2074042 +cleverly|2074111 +cleverness|2074136 +clevis|2074333 +clew|2074366 +clews|2074470 +cli|2074564 +clianthus|2074629 +clianthus formosus|2074669 +clianthus puniceus|2074796 +clianthus speciosus|2074891 +cliche|2075019 +cliched|2075096 +clichy|2075135 +clichy-la-garenne|2075206 +click|2075288 +click beetle|2075782 +click off|2075861 +click open|2075899 +click-clack|2075755 +clickety-clack|2075932 +clickety-click|2075983 +client|2076034 +client-centered therapy|2076207 +clientage|2076254 +clientele|2076291 +cliff|2076336 +cliff brake|2076590 +cliff diving|2076720 +cliff dweller|2076754 +cliff dwelling|2076785 +cliff penstemon|2076864 +cliff rose|2076946 +cliff swallow|2076999 +cliff-brake|2076396 +cliff-hanging|2076526 +cliffhanger|2077049 +clifflike|2077128 +clifford odets|2077202 +clifford trust|2077268 +cliffy|2077327 +cliftonia|2077408 +cliftonia monophylla|2077484 +climacteric|2077589 +climactic|2077674 +climate|2077703 +climate change|2077779 +climatic|2077844 +climatic zone|2077896 +climatical|2077942 +climatology|2077994 +climax|2078027 +climb|2078274 +climb down|2078772 +climb on|2078830 +climb up|2078899 +climb-down|2078698 +climbable|2079004 +climber|2079061 +climbing|2079233 +climbing bird's nest fern|2079295 +climbing bittersweet|2079357 +climbing boneset|2079481 +climbing corydalis|2079589 +climbing fern|2079690 +climbing frame|2079718 +climbing fumitory|2079766 +climbing hemp-vine|2079845 +climbing hempweed|2079953 +climbing hydrangea|2080061 +climbing iron|2080201 +climbing lily|2080255 +climbing maidenhair|2080345 +climbing maidenhair fern|2080446 +climbing nightshade|2080547 +climbing onion|2080696 +climbing perch|2080759 +climbing salamander|2080822 +clime|2080862 +clinch|2080909 +clinch river|2081269 +clinched|2081310 +clincher|2081343 +clincher-built|2081515 +cline|2081624 +cling|2081669 +cling film|2081794 +cling to|2081929 +clingfilm|2081991 +clingfish|2082045 +clingstone|2082096 +clinic|2082135 +clinical|2082246 +clinical anatomy|2082314 +clinical depression|2082380 +clinical neurology|2082525 +clinical psychologist|2082590 +clinical psychology|2082654 +clinical test|2082731 +clinical thermometer|2082784 +clinical trial|2082901 +clinician|2082954 +clinid|2082997 +clinid fish|2083050 +clinidae|2083103 +clink|2083158 +clinker|2083298 +clinker block|2083522 +clinker brick|2083586 +clinker-built|2083399 +clinking|2083623 +clinocephalism|2083661 +clinocephaly|2083791 +clinodactyly|2083921 +clinometer|2084036 +clinopodium|2084112 +clinopodium grandiflorum|2084183 +clinopodium vulgare|2084319 +clinoril|2084436 +clinquant|2084545 +clinton|2084600 +clinton administration|2084920 +clinton's lily|2084854 +clintonia|2084985 +clintonia andrewsiana|2085036 +clintonia borealis|2085147 +clintonia uniflora|2085245 +clio|2085344 +clioquinol|2085368 +clip|2085488 +clip art|2085905 +clip artist|2085941 +clip joint|2086036 +clip lead|2086061 +clip-on|2085877 +clipboard|2086110 +clipped|2086143 +clipper|2086222 +clipper ship|2086410 +clippers|2086468 +clipping|2086740 +clique|2086926 +cliquish|2087001 +cliquishly|2087059 +cliquishness|2087089 +clit|2087160 +clitocybe|2087205 +clitocybe clavipes|2087263 +clitocybe dealbata|2087317 +clitocybe inornata|2087371 +clitocybe irina|2087425 +clitocybe nuda|2087505 +clitocybe robusta|2087559 +clitocybe subconnexa|2087626 +clitoral|2087684 +clitoral vein|2087725 +clitoria|2087794 +clitoria mariana|2087854 +clitoria turnatea|2087916 +clitoric|2087989 +clitoridectomy|2088030 +clitoris|2088116 +clitter|2088161 +clive|2088214 +clive sinclair|2088336 +clive staples lewis|2088455 +clivers|2088536 +cloaca|2088624 +cloak|2088682 +cloak-and-dagger|2088770 +cloaked|2088912 +cloakmaker|2088999 +cloakroom|2089070 +clobber|2089143 +cloche|2089342 +clock|2089435 +clock dial|2089544 +clock face|2089580 +clock golf|2089616 +clock in|2089651 +clock off|2089709 +clock on|2089755 +clock out|2089813 +clock pendulum|2089859 +clock radio|2089919 +clock time|2090000 +clock tower|2090058 +clock up|2090085 +clock watcher|2090132 +clock-watching|2089500 +clocking|2090192 +clockmaker|2090231 +clocks|2090301 +clocksmith|2090470 +clockwise|2090540 +clockwise rotation|2090618 +clockwork|2090690 +clockwork universe|2090719 +clod|2090773 +cloddish|2090898 +clodhopper|2090931 +clofibrate|2090980 +clog|2091056 +clog dance|2091557 +clog dancer|2091617 +clog dancing|2091659 +clog up|2091719 +clogged|2091830 +clogging|2091904 +cloggy|2091977 +cloisonne|2092014 +cloister|2092079 +cloistered|2092225 +cloistral|2092342 +clomid|2092413 +clomiphene|2092481 +clomiphene citrate|2092542 +clomipramine|2092603 +clomp|2092690 +clon|2092716 +clonal|2092751 +clone|2092781 +clonic|2092909 +clonidine|2092935 +cloning|2093002 +clonus|2093039 +clop|2093066 +clopidogrel bisulfate|2093107 +clorox|2093191 +close|2093262 +close at hand|2095352 +close call|2095429 +close corporation|2095518 +close down|2095628 +close in|2095669 +close off|2095743 +close order|2095926 +close out|2095966 +close set|2096172 +close shave|2096287 +close support|2096376 +close supporting fire|2096435 +close to|2096482 +close together|2096569 +close up|2096611 +close-cropped|2094929 +close-fitting|2094960 +close-grained|2095000 +close-hauled|2095041 +close-knit|2095069 +close-minded|2095108 +close-order drill|2095165 +close-packed|2095207 +close-set|2095237 +closed|2096775 +closed book|2097841 +closed chain|2097895 +closed circuit|2097943 +closed corporation|2098016 +closed couplet|2098126 +closed curve|2098158 +closed fracture|2098199 +closed gentian|2098255 +closed in|2098380 +closed interval|2098415 +closed loop|2098466 +closed primary|2098521 +closed session|2098560 +closed shop|2098610 +closed universe|2098639 +closed-captioned|2097118 +closed-chain|2097173 +closed-circuit|2097214 +closed-circuit television|2097281 +closed-class word|2097345 +closed-door|2097391 +closed-end fund|2097420 +closed-end investment company|2097532 +closed-heart surgery|2097644 +closed-loop system|2097688 +closed-minded|2097743 +closed-ring|2097800 +closedown|2098715 +closefisted|2098789 +closelipped|2098851 +closely|2098945 +closely held corporation|2099025 +closely knit|2099076 +closely-held|2098997 +closemouthed|2099115 +closeness|2099209 +closeout|2099479 +closer|2099528 +closest|2099665 +closet|2099697 +closet auger|2099964 +closet drama|2099992 +closet queen|2100020 +closeup|2100062 +closeup lens|2100109 +closing|2100156 +closing curtain|2100515 +closing off|2100576 +closing price|2100618 +closing time|2100660 +clostridia|2100699 +clostridial myonecrosis|2100824 +clostridium|2101011 +clostridium botulinum|2101080 +clostridium perfringens|2101190 +clostridium perfringens epsilon toxin|2101295 +closure|2101410 +closure by compartment|2101930 +clot|2102006 +clot buster|2102194 +clotbur|2102262 +cloth|2102306 +cloth cap|2102363 +cloth covering|2102395 +clothe|2102428 +clothed|2102574 +clothes|2103144 +clothes basket|2103233 +clothes closet|2103301 +clothes designer|2103360 +clothes drier|2103430 +clothes dryer|2103491 +clothes hamper|2103552 +clothes hanger|2103620 +clothes moth|2103676 +clothes peg|2103717 +clothes pin|2103796 +clothes tree|2103956 +clothesbrush|2104004 +clotheshorse|2104032 +clothesless|2104154 +clothesline|2104209 +clothespin|2104235 +clothespress|2104314 +clothier|2104373 +clothing|2104425 +clothing store|2104500 +clotho|2104578 +clotted|2104613 +clotted cream|2104644 +clotting|2104690 +clotting factor|2104776 +clotting time|2104835 +cloture|2104892 +cloud|2105026 +cloud bank|2105584 +cloud chamber|2105610 +cloud cover|2105670 +cloud grass|2105748 +cloud nine|2105814 +cloud over|2105891 +cloud seeder|2105962 +cloud up|2106044 +cloud-covered|2105471 +cloud-cuckoo-land|2105526 +cloudberry|2106090 +cloudburst|2106208 +clouded|2106291 +cloudiness|2106401 +clouding|2106554 +clouding up|2106635 +cloudless|2106716 +cloudlessness|2106751 +cloudlike|2106784 +cloudy|2106818 +clout|2107086 +clout nail|2107213 +clove|2107244 +clove hitch|2107405 +clove oil|2107431 +clove pink|2107491 +clove tree|2107572 +cloven|2107671 +cloven foot|2107711 +cloven hoof|2107792 +clover|2107873 +clover fern|2108027 +clover-leaf roll|2107919 +clover-root|2107954 +cloverleaf|2108083 +cloveroot|2108115 +clovis|2108188 +clovis culture|2108244 +clovis i|2108349 +clowder|2108407 +clowlike|2108437 +clown|2108499 +clown anemone fish|2108634 +clown around|2108694 +clowning|2108738 +clownish|2108897 +cloy|2108959 +cloying|2109049 +clozapine|2109098 +clozaril|2109285 +cloze|2109481 +cloze procedure|2109528 +cloze test|2109597 +club|2109666 +club car|2110359 +club drug|2110425 +club fungus|2110465 +club head|2110499 +club member|2110719 +club moss|2110747 +club sandwich|2110875 +club soda|2110934 +club steak|2111020 +club-head|2110011 +club-moss|2110231 +clubable|2111066 +clubbable|2111103 +clubbing|2111140 +clubbish|2111166 +clubby|2111200 +clubfoot|2111283 +clubfooted|2111346 +clubhead|2111376 +clubhouse|2111434 +clubmoss family|2111475 +clubroom|2111547 +clubroot fungus|2111570 +cluck|2111627 +clue|2111694 +clue in|2111791 +clueless|2111821 +clumber|2111850 +clumber spaniel|2111891 +clump|2111932 +clumsiness|2112240 +clumsy|2112429 +clumsy person|2112650 +clunch|2112726 +clunk|2112752 +clunky|2112832 +clupea|2112887 +clupea harangus|2112934 +clupea harengus harengus|2113014 +clupea harengus pallasii|2113114 +clupea sprattus|2113213 +clupeid|2113277 +clupeid fish|2113340 +clupeidae|2113403 +clusia|2113461 +clusia flava|2113482 +clusia insignis|2113531 +clusia major|2113627 +clusia rosea|2113726 +clusiaceae|2113825 +cluster|2113948 +cluster bean|2114115 +cluster bomb|2114213 +cluster bomblet|2114240 +cluster headache|2114278 +clustered|2114354 +clustered bellflower|2114476 +clustered lady's slipper|2114547 +clustered poppy mallow|2114665 +clustering|2114732 +clutch|2114786 +clutch bag|2115227 +clutch pedal|2115276 +clutches|2115341 +clutter|2115729 +clutter up|2115901 +cluttered|2115952 +clv|2115987 +clx|2116036 +clxv|2116080 +clxx|2116130 +clxxv|2116177 +clxxx|2116230 +clyde william tombaugh|2116277 +clydesdale|2116374 +clydesdale terrier|2116442 +clypeus|2116502 +clyster|2116539 +clytemnestra|2116573 +clytocybe alba|2116623 +cm|2116687 +cmb|2116797 +cmbr|2116934 +cmv|2117072 +cn gas|2117125 +cnemidophorus|2117207 +cnemidophorus exsanguis|2117278 +cnemidophorus sexlineatus|2117388 +cnemidophorus tesselatus|2117518 +cnemidophorus tigris|2117621 +cnemidophorus velox|2117714 +cnicus|2117813 +cnicus benedictus|2117869 +cnidaria|2117951 +cnidarian|2118034 +cnidoscolus|2118079 +cnidoscolus urens|2118148 +cnidosporidia|2118300 +cnossos|2118366 +cnossus|2118412 +cnpz|2118458 +cns|2118609 +cnut|2118682 +co|2118768 +co-author|2119019 +co-defendant|2119045 +co-ed|2119178 +co-educate|2119262 +co-occur|2119381 +co-occur with|2119505 +co-occurrence|2119616 +co-op|2119773 +co-operative republic of guyana|2119905 +co-opt|2120045 +co-optation|2120144 +co-option|2120243 +co-ordinate|2120344 +co-respondent|2120464 +co-sign|2120606 +co-star|2120770 +co-worker|2120831 +co2|2120895 +coach|2120988 +coach dog|2121409 +coach horse|2121485 +coach house|2121543 +coach station|2121591 +coach-and-four|2121344 +coachbuilder|2121673 +coaching|2121734 +coaching job|2121781 +coachman|2121828 +coachwhip|2121853 +coachwhip snake|2122006 +coact|2122085 +coaction|2122109 +coadjutor|2122153 +coagulable|2122204 +coagulant|2122230 +coagulase|2122266 +coagulate|2122292 +coagulated|2122414 +coagulation|2122498 +coagulation factor|2122584 +coagulator|2122643 +coagulum|2122679 +coal|2122734 +coal black|2122997 +coal car|2123078 +coal chute|2123108 +coal gas|2123164 +coal house|2123187 +coal industry|2123212 +coal mine|2123244 +coal miner|2123276 +coal miner's lung|2123328 +coal oil|2123429 +coal scuttle|2123491 +coal seam|2123531 +coal shovel|2123559 +coal tar|2123592 +coal tongs|2123620 +coal-black|2122886 +coal-tar creosote|2122944 +coalbin|2123681 +coalesce|2123711 +coalesced|2123835 +coalescence|2123903 +coalescency|2124019 +coalface|2124135 +coalfield|2124158 +coalhole|2124183 +coaling station|2124213 +coalition|2124267 +coalman|2124477 +coalpit|2124529 +coaming|2124561 +coapt|2124602 +coarctate|2124669 +coarctation|2124697 +coarse|2124785 +coarse-grained|2125046 +coarsen|2125148 +coarsened|2125212 +coarseness|2125240 +coast|2125397 +coast banksia|2125574 +coast boykinia|2125661 +coast lily|2125745 +coast live oak|2125787 +coast mountains|2125858 +coast polypody|2125991 +coast range|2126074 +coast redwood|2126203 +coast rhododendron|2126282 +coast white cedar|2126349 +coastal|2126484 +coastal diving bird|2126556 +coastal plain|2126610 +coastal rein orchid|2126685 +coaster|2126756 +coaster brake|2126868 +coaster wagon|2126897 +coastguard|2126942 +coastguardsman|2127001 +coastland|2127063 +coastline|2127099 +coastwise|2127136 +coat|2127163 +coat button|2127465 +coat closet|2127493 +coat hanger|2127536 +coat of arms|2127592 +coat of mail|2127644 +coat of paint|2127742 +coat rack|2127784 +coat stand|2127906 +coat tree|2127954 +coat-of-mail shell|2127378 +coatdress|2128002 +coated|2128033 +coatee|2128095 +coati|2128116 +coati-mondi|2128187 +coati-mundi|2128258 +coating|2128329 +coatrack|2128491 +coatroom|2128532 +coats land|2128565 +coattail|2128668 +coattails effect|2128691 +coauthor|2128770 +coax|2128815 +coax cable|2128950 +coaxal|2129018 +coaxer|2129078 +coaxial|2129121 +coaxial cable|2129181 +coaxing|2129249 +coaxingly|2129335 +cob|2129364 +cobalamin|2129530 +cobalt|2129673 +cobalt 60|2129732 +cobalt bloom|2129778 +cobalt blue|2129818 +cobalt ultramarine|2129940 +cobaltite|2129988 +cobber|2130015 +cobble|2130069 +cobble together|2130192 +cobble up|2130243 +cobbler|2130294 +cobbler's last|2130375 +cobblers|2130436 +cobblestone|2130659 +cobbling|2130705 +cobia|2130761 +cobitidae|2130843 +cobnut|2130901 +cobol|2131035 +cobra|2131097 +cobweb|2131132 +cobwebby|2131211 +coca|2131305 +coca cola|2131405 +cocain|2131449 +cocaine|2131483 +cocaine addict|2131517 +cocaine addiction|2131566 +cocainise|2131621 +cocainize|2131731 +cocarboxylase|2131841 +coccal|2131896 +cocci|2131948 +coccid insect|2132058 +coccidae|2132111 +coccidia|2132171 +coccidioidomycosis|2132226 +coccidiomycosis|2132326 +coccidiosis|2132426 +coccidium|2132459 +coccinellidae|2132496 +coccobacillus|2132571 +coccoid|2132631 +coccoidea|2132663 +coccothraustes|2132731 +coccothraustes coccothraustes|2132802 +cocculus|2132899 +cocculus carolinus|2132963 +coccus|2133037 +coccus hesperidum|2133096 +coccygeal|2133169 +coccygeal nerve|2133195 +coccygeal plexus|2133266 +coccygeal vertebra|2133322 +coccyx|2133375 +coccyzus|2133409 +coccyzus erythropthalmus|2133462 +cochimi|2133548 +cochin|2133605 +cochin china|2133661 +cochineal|2133717 +cochineal insect|2133805 +cochise|2133873 +cochlea|2133935 +cochlear|2133979 +cochlearia|2134023 +cochlearia officinalis|2134093 +cochlearius|2134199 +cochlearius cochlearius|2134261 +cochon de lait|2134361 +cochran|2134408 +cock|2134488 +cock of the rock|2135158 +cock sucking|2135264 +cock up|2135313 +cock's eggs|2134791 +cock-a-doodle-doo|2134862 +cock-a-hoop|2134894 +cock-a-leekie|2135003 +cock-and-bull story|2135043 +cockade|2135356 +cockaigne|2135407 +cockamamie|2135467 +cockamamy|2135554 +cockateel|2135641 +cockatiel|2135715 +cockatoo|2135789 +cockatoo parrot|2135814 +cockatrice|2135888 +cockchafer|2135943 +cockcroft|2136023 +cockcroft and walton accelerator|2136567 +cockcroft and walton voltage multiplier|2136793 +cockcroft-walton accelerator|2136116 +cockcroft-walton voltage multiplier|2136338 +cockcrow|2137026 +cocked hat|2137164 +cocker|2137200 +cocker spaniel|2137351 +cockerel|2137413 +cockeyed|2137444 +cockfight|2137822 +cockfighting|2137847 +cockhorse|2137881 +cockiness|2137914 +cockle|2138002 +cockle-bur|2138203 +cockle-burr|2138338 +cocklebur|2138477 +cockleburr|2138602 +cockleshell|2138660 +cockloft|2138692 +cockney|2138728 +cockpit|2138848 +cockroach|2138906 +cockscomb|2138952 +cocksfoot|2139180 +cockspur|2139247 +cockspur hawthorn|2139343 +cockspur thorn|2139419 +cocksucker|2139495 +cocksure|2139662 +cocksureness|2139713 +cocktail|2139770 +cocktail dress|2139835 +cocktail lounge|2139878 +cocktail party|2139938 +cocktail sauce|2139968 +cocktail shaker|2140012 +cocktail table|2140044 +cockup|2140087 +cocky|2140147 +cocky-leeky|2140172 +coco|2140212 +coco de macao|2140311 +coco palm|2140423 +coco plum|2140522 +coco plum tree|2140641 +cocoa|2140723 +cocoa bean|2140844 +cocoa butter|2140923 +cocoa palm|2140966 +cocoa plum|2141065 +cocoa powder|2141183 +cocoanut|2141215 +cocobolo|2141252 +coconspirator|2141292 +coconspire|2141385 +coconut|2141446 +coconut cake|2141597 +coconut cream|2141624 +coconut macaroon|2141665 +coconut meat|2141700 +coconut milk|2141735 +coconut oil|2141802 +coconut palm|2141851 +coconut tree|2141950 +coconut water|2142049 +cocoon|2142090 +cocooning|2142178 +cocopa|2142207 +cocopah|2142277 +cocos|2142348 +cocos nucifera|2142508 +cocoswood|2142622 +cocotte|2142672 +cocoyam|2142826 +cocozelle|2142916 +cocteau|2143019 +cocus|2143118 +cocuswood|2143145 +cocytus|2143195 +cod|2143240 +cod liver oil|2143708 +cod oil|2143756 +cod-liver oil|2143579 +coda|2143801 +codariocalyx|2143858 +codariocalyx motorius|2143930 +coddle|2144062 +coddled|2144172 +coddled egg|2144211 +coddler|2144248 +code|2144348 +code flag|2144566 +code of behavior|2144623 +code of conduct|2144704 +codefendant|2144785 +codeine|2144837 +coder|2144912 +codetalker|2145030 +codex|2145124 +codfish|2145190 +codfish ball|2145256 +codfish cake|2145311 +codger|2145366 +codiaeum|2145432 +codiaeum variegatum|2145492 +codicil|2145559 +codification|2145585 +codified|2145722 +codify|2145756 +coding|2145816 +coding dna|2145889 +coding system|2145974 +codlin moth|2146005 +codling|2146085 +codling moth|2146114 +codlins-and-cream|2146194 +codon|2146268 +codpiece|2146292 +codswallop|2146315 +cody|2146409 +coeducate|2146526 +coeducation|2146564 +coeducational|2146646 +coefficient|2146686 +coefficient of absorption|2146716 +coefficient of concordance|2146798 +coefficient of correlation|2146847 +coefficient of drag|2146940 +coefficient of elasticity|2146998 +coefficient of expansion|2147079 +coefficient of friction|2147137 +coefficient of mutual induction|2147182 +coefficient of reflection|2147253 +coefficient of self induction|2147343 +coefficient of viscosity|2147410 +coelacanth|2147493 +coelenterata|2147574 +coelenterate|2147661 +coelenterate family|2147706 +coelenterate genus|2147742 +coelenteron|2147776 +coeliac|2147801 +coeliac plexus|2147851 +coeloglossum|2147940 +coeloglossum bracteatum|2148024 +coeloglossum viride|2148120 +coelogyne|2148207 +coelom|2148252 +coelophysis|2148308 +coelostat|2148353 +coenobite|2148387 +coenobitic|2148425 +coenobitical|2148490 +coenzyme|2148555 +coenzyme a|2148582 +coenzyme q|2148622 +coequal|2148694 +coerce|2148717 +coercion|2148784 +coercive|2148850 +coereba|2148877 +coerebidae|2148927 +coetaneous|2149013 +coeur d'alene|2149090 +coeval|2149132 +coevals|2149254 +coexist|2149356 +coexistence|2149382 +coexistent|2149429 +coexisting|2149494 +coextensive|2149559 +cofactor|2149618 +coffea|2149663 +coffea arabica|2149719 +coffea canephora|2149792 +coffea liberica|2149901 +coffea robusta|2149977 +coffee|2150084 +coffee bar|2150300 +coffee bean|2150386 +coffee berry|2150432 +coffee blight|2150567 +coffee break|2150597 +coffee cake|2150650 +coffee can|2150768 +coffee capuccino|2150804 +coffee cream|2150869 +coffee cup|2150922 +coffee fern|2150946 +coffee filter|2151025 +coffee fungus|2151055 +coffee grinder|2151107 +coffee grounds|2151156 +coffee liqueur|2151204 +coffee maker|2151244 +coffee mill|2151284 +coffee mug|2151333 +coffee ring|2151357 +coffee roll|2151401 +coffee rose|2151442 +coffee royal|2151606 +coffee senna|2151652 +coffee shop|2151760 +coffee stall|2151846 +coffee substitute|2151892 +coffee table|2151931 +coffee tree|2151974 +coffee urn|2152007 +coffee-table book|2150261 +coffeeberry|2152031 +coffeecake|2152122 +coffeehouse|2152159 +coffeepot|2152245 +coffer|2152268 +cofferdam|2152318 +coffey still|2152371 +coffin|2152412 +coffin nail|2152478 +cofounder|2152548 +cog|2152607 +cog railway|2152683 +cogency|2152776 +cogent|2152881 +cogent evidence|2152957 +cogged|2153005 +coggle|2153029 +cogitable|2153104 +cogitate|2153144 +cogitation|2153292 +cogitative|2153406 +cognac|2153511 +cognate|2153541 +cognate word|2153760 +cognation|2153795 +cognisable|2153930 +cognisance|2153982 +cognisant|2154057 +cognise|2154086 +cognition|2154116 +cognitive|2154174 +cognitive content|2154214 +cognitive factor|2154290 +cognitive neuroscience|2154343 +cognitive neuroscientist|2154388 +cognitive operation|2154442 +cognitive process|2154549 +cognitive psychology|2154656 +cognitive science|2154719 +cognitive scientist|2154776 +cognitive state|2154830 +cognizable|2154875 +cognizance|2154927 +cognizant|2155039 +cognize|2155068 +cognomen|2155098 +cognoscenti|2155245 +cognoscible|2155288 +cognovit judgement|2155340 +cognovit judgment|2155470 +cogwheel|2155600 +cohabit|2155640 +cohabitation|2155735 +cohan|2155809 +cohere|2155900 +coherence|2156005 +coherency|2156139 +coherent|2156273 +cohesion|2156417 +cohesive|2156577 +cohesiveness|2156618 +cohn|2156787 +coho|2156865 +coho salmon|2156995 +cohoe|2157118 +cohort|2157247 +cohosh|2157334 +cohune|2157393 +cohune fat|2157500 +cohune nut|2157550 +cohune oil|2157575 +cohune palm|2157625 +cohune-nut oil|2157450 +coif|2157682 +coiffe|2157775 +coiffeur|2157839 +coiffeuse|2157896 +coiffure|2157954 +coign|2158048 +coigne|2158125 +coigue|2158201 +coil|2158274 +coil spring|2158686 +coiled|2158728 +coiling|2158916 +coin|2158998 +coin bank|2159166 +coin blank|2159223 +coin box|2159262 +coin collecting|2159291 +coin collection|2159403 +coin collector|2159569 +coin machine|2159642 +coin silver|2159685 +coin slot|2159733 +coin-operated|2159136 +coinage|2159757 +coincide|2159875 +coincidence|2160056 +coincident|2160229 +coincidental|2160371 +coincidentally|2160485 +coincidently|2160521 +coinciding|2160557 +coiner|2160699 +coinsurance|2160819 +coinsure|2160850 +coir|2160875 +coital|2160901 +coition|2160976 +coitus|2161166 +coitus interruptus|2161356 +coke|2161469 +col|2161590 +cola|2161632 +cola acuminata|2161953 +cola extract|2162039 +cola nut|2162120 +colander|2162151 +colaptes|2162188 +colaptes auratus|2162241 +colaptes caper collaris|2162328 +colaptes chrysoides|2162413 +colbert|2162485 +colbert butter|2162531 +colchicaceae|2162584 +colchicum|2162661 +colchicum autumnale|2162727 +colchine|2162830 +colchis|2162887 +cold|2162984 +cold cash|2164144 +cold cereal|2164215 +cold chisel|2164254 +cold comfort|2164293 +cold cream|2164345 +cold cuts|2164508 +cold duck|2164532 +cold feet|2164566 +cold fish|2164617 +cold frame|2164674 +cold front|2164742 +cold fusion|2164780 +cold gangrene|2164847 +cold medicine|2164945 +cold rubber|2165014 +cold shoulder|2165078 +cold snap|2165124 +cold sober|2165178 +cold sore|2165216 +cold spell|2165292 +cold storage|2165346 +cold stuffed tomato|2165403 +cold sweat|2165452 +cold turkey|2165516 +cold war|2165582 +cold wave|2165609 +cold weather|2165633 +cold work|2165703 +cold-blooded|2163758 +cold-bloodedly|2163889 +cold-cream|2163926 +cold-eyed|2163959 +cold-shoulder|2164007 +cold-water flat|2164104 +coldcock|2165833 +coldcream|2165883 +coldhearted|2165965 +coldheartedness|2166015 +coldly|2166080 +coldness|2166125 +coldwork|2166290 +cole|2166339 +cole albert porter|2166465 +cole porter|2166540 +coleman hawkins|2166608 +coleonyx|2166676 +coleoptera|2166732 +coleridge|2166793 +coleridgean|2166851 +coleridgian|2166900 +coleslaw|2166949 +colette|2166978 +coleus|2167078 +coleus amboinicus|2167129 +coleus aromaticus|2167251 +coleus blumei|2167373 +colewort|2167508 +colic|2167604 +colic artery|2167649 +colic root|2167723 +colic vein|2167885 +colicky|2167947 +colicroot|2167990 +colima|2168071 +colin luther powell|2168136 +colin powell|2168258 +colinus|2168373 +colinus virginianus|2168423 +coliphage|2168524 +coliseum|2168563 +colitis|2168641 +collaborate|2168712 +collaboration|2168815 +collaborationism|2168907 +collaborationist|2168971 +collaborative|2169038 +collaborator|2169073 +collage|2169249 +collage film|2169361 +collagen|2169495 +collagenase|2169538 +collagenic|2169566 +collagenous|2169622 +collapsable|2169678 +collapse|2169762 +collapsed|2170198 +collapsible|2170224 +collapsible shelter|2170320 +collar|2170362 +collar blight|2170687 +collar cell|2170717 +collarbone|2170766 +collard|2170803 +collard greens|2170880 +collards|2170928 +collared lizard|2171051 +collared peccary|2171099 +collared pika|2171202 +collarless|2171282 +collate|2171306 +collateral|2171344 +collateral damage|2171608 +collateral fraud|2171659 +collateralize|2171707 +collation|2171737 +colleague|2171859 +collect|2171956 +collect call|2172295 +collectable|2172348 +collected|2172467 +collectedly|2172643 +collectible|2172674 +collecting|2172793 +collection|2172856 +collection plate|2173075 +collective|2173118 +collective agreement|2173393 +collective bargaining|2173463 +collective farm|2173521 +collective noun|2173557 +collective security|2173587 +collectively|2173622 +collectivisation|2173684 +collectivise|2173790 +collectivised|2173843 +collectivism|2173979 +collectivist|2174087 +collectivistic|2174228 +collectivization|2174332 +collectivize|2174438 +collectivized|2174491 +collector|2174627 +collector of internal revenue|2174889 +collector's item|2174783 +colleen|2175017 +college|2175079 +college boy|2175191 +college girl|2175257 +college level|2175309 +college man|2175349 +college of cardinals|2175415 +college student|2175486 +collegial|2175564 +collegian|2175614 +collegiate|2175680 +collegiate dictionary|2175714 +collembola|2175780 +collembolan|2175841 +collet|2175880 +collet chuck|2175946 +collide|2175981 +collide with|2176074 +collider|2176133 +collie|2176197 +collier|2176245 +colliery|2176297 +colligate|2176334 +colligation|2176446 +collimate|2176558 +collimation|2176640 +collimator|2176698 +collinear|2176756 +collins|2176798 +collinsia|2176903 +collinsia bicolor|2176968 +collinsia heterophylla|2177091 +collinsia parviflora|2177219 +collinsia verna|2177315 +collinsonia|2177394 +collinsonia canadensis|2177465 +collis potter huntington|2177604 +collision|2177701 +collision course|2177824 +collocalia|2177899 +collocalia inexpectata|2177958 +collocate|2178028 +collocate with|2178077 +collocation|2178188 +collodion|2178332 +collogue|2178360 +colloid|2178412 +colloidal|2178437 +colloidal gel|2178463 +colloidal solution|2178498 +colloidal suspension|2178559 +colloquial|2178620 +colloquialism|2178664 +colloquially|2178710 +colloquium|2178759 +colloquy|2178812 +collotype|2178878 +collotype printing|2178971 +collude|2179064 +collusion|2179099 +collusive|2179168 +colly|2179204 +collyrium|2179271 +collywobbles|2179328 +colobus|2179408 +colobus guereza|2179468 +colobus monkey|2179540 +colocasia|2179600 +colocasia esculenta|2179675 +cologne|2179764 +cologne water|2179875 +colombia|2179937 +colombian|2180030 +colombian monetary unit|2180135 +colombian peso|2180206 +colombo|2180274 +colon|2180337 +colon cancer|2180567 +colonel|2180599 +colonel blimp|2180646 +colonial|2180812 +colonialism|2180911 +colonialist|2180979 +colonic|2181017 +colonic irrigation|2181102 +colonisation|2181165 +colonise|2181274 +colonised|2181337 +coloniser|2181384 +colonist|2181453 +colonization|2181496 +colonize|2181605 +colonized|2181668 +colonizer|2181715 +colonnade|2181784 +colonnaded|2181863 +colonoscope|2181892 +colonoscopy|2181923 +colony|2181954 +colophon|2182202 +colophony|2182227 +color|2182260 +color bar|2183279 +color bearer|2183361 +color blindness|2183407 +color chart|2183653 +color circle|2183680 +color code|2183726 +color constancy|2183751 +color force|2183803 +color guard|2183892 +color in|2183920 +color line|2184019 +color of law|2184101 +color property|2184166 +color scheme|2184206 +color sergeant|2184254 +color spectrum|2184287 +color television|2184337 +color television system|2184478 +color television tube|2184619 +color tube|2184764 +color tv|2184909 +color tv tube|2185059 +color vision|2185218 +color vision deficiency|2185311 +color wash|2185557 +color wheel|2185594 +color-blind|2183095 +color-blind person|2183198 +coloradan|2185640 +coloradillo|2185678 +colorado|2185766 +colorado beetle|2185902 +colorado blue spruce|2186041 +colorado desert|2186143 +colorado fir|2186225 +colorado four o'clock|2186331 +colorado plateau|2186448 +colorado potato beetle|2186509 +colorado river|2186655 +colorado river hemp|2186746 +colorado springs|2186822 +colorado spruce|2186894 +coloration|2186991 +coloratura|2187162 +coloratura soprano|2187235 +colorcast|2187282 +colorectal|2187319 +colored|2187364 +colored audition|2188026 +colored hearing|2188097 +colored person|2188168 +colorfast|2188244 +colorful|2188286 +colorimeter|2189007 +colorimetric|2189094 +colorimetric analysis|2189183 +colorimetrical|2189279 +colorimetry|2189368 +coloring|2189464 +coloring book|2189646 +coloring material|2189682 +colorise|2189756 +colorist|2189855 +colorize|2189881 +colorless|2189980 +colorlessness|2190301 +colors|2190367 +colossae|2190878 +colossal|2190934 +colosseum|2190980 +colossian|2191044 +colossians|2191082 +colossus|2191216 +colostomy|2191374 +colostrum|2191400 +colour|2191433 +colour bar|2192350 +colour blindness|2192432 +colour constancy|2192678 +colour in|2192730 +colour line|2192829 +colour of law|2192911 +colour scheme|2192976 +colour supplement|2193024 +colour television|2193064 +colour television system|2193205 +colour television tube|2193346 +colour tube|2193491 +colour tv|2193636 +colour tv tube|2193787 +colour vision deficiency|2193947 +colour wash|2194193 +colour-blind|2192248 +colouration|2194230 +coloured|2194399 +colourful|2194984 +colouring|2195141 +colouring material|2195321 +colourise|2195395 +colourize|2195494 +colourless|2195593 +colourlessness|2195893 +colours|2195959 +colpitis|2196469 +colpocele|2196514 +colpocystitis|2196562 +colpocystocele|2196612 +colpoxerosis|2196667 +colt|2196704 +coltan|2196764 +colter|2196808 +coltish|2196838 +coltsfoot|2196903 +coluber|2197042 +coluber constrictor|2197095 +coluber constrictor flaviventris|2197173 +coluber hippocrepis|2197302 +colubrid|2197377 +colubrid snake|2197433 +colubridae|2197489 +colubrina|2197553 +colugo|2197629 +columba|2197723 +columba fasciata|2197807 +columba livia|2197902 +columba palumbus|2197968 +columbarium|2198046 +columbary|2198117 +columbia|2198155 +columbia river|2198348 +columbia tiger lily|2198402 +columbia university|2198487 +columbian|2198556 +columbian mammoth|2198594 +columbidae|2198647 +columbiform bird|2198708 +columbiformes|2198764 +columbine|2198834 +columbite|2198879 +columbite-tantalite|2198914 +columbium|2198958 +columbo|2199005 +columbus|2199115 +columbus day|2199349 +columella|2199440 +column|2199479 +column chromatography|2199719 +column inch|2199765 +columnar|2199816 +columnar cell|2199882 +columnar epithelial cell|2199946 +columnea|2200010 +columned|2200039 +columniation|2200139 +columniform|2200183 +columnist|2200233 +columnlike|2200276 +colutea|2200326 +colutea arborescens|2200383 +colymbiformes|2200457 +colza|2200607 +colza oil|2200650 +coma|2200695 +coma berenices|2200777 +comal|2200830 +comanche|2200873 +comandra|2200996 +comandra pallida|2201060 +comate|2201136 +comatose|2201201 +comatoseness|2201253 +comatula|2201296 +comatulid|2201360 +comatulidae|2201400 +comb|2201483 +comb jelly|2201841 +comb out|2201885 +comb-footed spider|2201729 +comb-out|2201774 +combat|2201967 +combat area|2202161 +combat boot|2202199 +combat casualty|2202275 +combat ceiling|2202340 +combat fatigue|2202388 +combat injury|2202490 +combat intelligence|2202550 +combat mission|2202659 +combat neurosis|2202708 +combat pay|2202810 +combat pilot|2202868 +combat ship|2202911 +combat zone|2202973 +combat-ready|2202111 +combatant|2203043 +combative|2203168 +combatively|2203283 +combativeness|2203313 +combed|2203371 +combinable|2203394 +combination|2203464 +combination in restraint of trade|2203744 +combination lock|2203799 +combination plane|2203830 +combination salad|2203899 +combinational|2203939 +combinative|2204009 +combinatorial|2204162 +combinatory|2204252 +combine|2204425 +combined|2204838 +combined operation|2205008 +combing|2205065 +combining|2205119 +combining form|2205203 +combining weight|2205253 +combo|2205346 +combretaceae|2205414 +combretum|2205519 +combretum appiculatum|2205565 +combretum bracteosum|2205664 +combretum erythrophyllum|2205750 +combretum family|2205855 +combtooth blenny|2205947 +comburant|2206005 +comburent|2206057 +combust|2206109 +combustible|2206439 +combustible material|2206608 +combustion|2206655 +combustive|2206796 +come|2206848 +come about|2207753 +come across|2207830 +come after|2208083 +come alive|2208145 +come along|2208222 +come apart|2208315 +come around|2208387 +come away|2208513 +come back|2208599 +come before|2208822 +come by|2208851 +come close|2208922 +come down|2208979 +come forth|2209176 +come forward|2209299 +come hell or high water|2209394 +come home|2209467 +come in|2209554 +come in for|2209771 +come in handy|2209795 +come into|2209821 +come into being|2209860 +come near|2209906 +come of age|2210016 +come off|2210045 +come on|2210254 +come out|2210560 +come out of the closet|2211196 +come over|2211329 +come round|2211389 +come short|2211428 +come through|2211479 +come to|2211717 +come to grips|2211894 +come to hand|2211954 +come to life|2211997 +come to light|2212059 +come to mind|2212102 +come to the fore|2212146 +come together|2212241 +come up|2212275 +come up to|2212876 +come upon|2212924 +come with|2213085 +come-at-able|2207541 +come-on|2207640 +comeback|2213132 +comedian|2213244 +comedienne|2213346 +comedo|2213397 +comedown|2213442 +comedy|2213482 +comedy ballet|2213554 +comeliness|2213598 +comely|2213659 +comenius|2213763 +comer|2213846 +comer vann woodward|2213953 +comestible|2214054 +comet|2214222 +cometary|2214283 +cometic|2214354 +comeupance|2214425 +comeuppance|2214487 +comfit|2214549 +comfort|2214676 +comfort food|2214920 +comfort station|2214956 +comfort woman|2215130 +comfort zone|2215285 +comfortable|2215319 +comfortableness|2215579 +comfortably|2215646 +comforted|2215671 +comforter|2215702 +comforting|2215935 +comfortingly|2216028 +comfortless|2216061 +comforts|2216096 +comfrey|2216404 +comfy|2216476 +comic|2216559 +comic book|2216698 +comic opera|2216731 +comic strip|2216792 +comical|2216848 +comically|2216931 +coming|2216955 +coming attraction|2217199 +coming back|2217338 +coming into court|2217379 +coming together|2217448 +coming upon|2217569 +comint|2217629 +comity|2217708 +comity of nations|2217752 +comma|2217786 +comma bacillus|2217944 +comma butterfly|2217996 +command|2218118 +command guidance|2218605 +command key|2218659 +command language|2218696 +command line|2218769 +command line interface|2218834 +command module|2218895 +command overhead|2218926 +command post|2219038 +command processing overhead|2219123 +command processing overhead time|2219235 +command prompt|2219347 +commandant|2219403 +commandeer|2219477 +commander|2219526 +commander in chief|2219720 +commandership|2219802 +commandery|2219891 +commanding|2219980 +commanding officer|2220074 +commandment|2220148 +commando|2220286 +comme il faut|2220415 +commedia dell'arte|2220484 +commelina|2220519 +commelinaceae|2220545 +commelinales|2220653 +commelinidae|2220745 +commemorate|2220808 +commemorating|2220942 +commemoration|2221029 +commemorative|2221182 +commence|2221269 +commencement|2221421 +commencement ceremony|2221667 +commencement day|2221773 +commencement exercise|2221814 +commend|2221920 +commendable|2222091 +commendation|2222193 +commensal|2222317 +commensalism|2222399 +commensurable|2222463 +commensurate|2222499 +commensurateness|2222636 +comment|2222722 +commentary|2222941 +commentate|2222979 +commentator|2223026 +commerce|2223093 +commerce department|2223271 +commerce secretary|2223377 +commercial|2223518 +commercial activity|2223788 +commercial agency|2223865 +commercial art|2223917 +commercial artist|2223954 +commercial bank|2223993 +commercial bribery|2224106 +commercial credit|2224148 +commercial credit company|2224182 +commercial document|2224260 +commercial enterprise|2224344 +commercial finance company|2224458 +commercial instrument|2224536 +commercial law|2224620 +commercial letter of credit|2224690 +commercial loan|2224744 +commercial message|2224793 +commercial paper|2224894 +commercial traveler|2224936 +commercial traveller|2225095 +commercial treaty|2225254 +commercialisation|2225300 +commercialise|2225370 +commercialised|2225434 +commercialism|2225484 +commercialization|2225558 +commercialize|2225628 +commercialized|2225711 +commie|2225761 +comminate|2225797 +commination|2225881 +comminatory|2225939 +commingle|2226010 +comminute|2226152 +comminuted fracture|2226236 +commiphora|2226280 +commiphora meccanensis|2226346 +commiphora myrrha|2226429 +commiserate|2226498 +commiseration|2226598 +commiserative|2226711 +commissaire maigret|2226746 +commissar|2226864 +commissariat|2226924 +commissary|2226997 +commission|2227066 +commission on human rights|2227609 +commission on narcotic drugs|2227729 +commission on the status of women|2227853 +commission plan|2227987 +commissionaire|2228033 +commissioned|2228125 +commissioned military officer|2228218 +commissioned naval officer|2228278 +commissioned officer|2228335 +commissioner|2228390 +commissioning|2228450 +commit|2228524 +commit suicide|2228817 +commitment|2228846 +committal|2229137 +committal service|2229241 +committal to memory|2229309 +committal to writing|2229385 +committed|2229432 +committedness|2229595 +committee|2229682 +committee for state security|2229811 +committee meeting|2229908 +committee member|2229957 +committeeman|2229990 +committeewoman|2230029 +commix|2230070 +commixture|2230134 +commode|2230230 +commodious|2230362 +commodiousness|2230419 +commodities exchange|2230498 +commodities market|2230629 +commodity|2230706 +commodity brokerage|2230761 +commodity exchange|2230800 +commodore|2230877 +commodore john barry bridge|2230923 +commodore perry|2231006 +commodore vanderbilt|2231083 +common|2231209 +common ageratum|2231767 +common alder|2231823 +common allamanda|2231914 +common american shad|2231986 +common amsinckia|2232060 +common apricot|2232129 +common arrowhead|2232191 +common ax|2232245 +common axe|2232303 +common bamboo|2232361 +common barberry|2232408 +common barley|2232478 +common basil|2232524 +common bean|2232581 +common bean plant|2232679 +common bearberry|2232753 +common beech|2232922 +common beet|2232992 +common bile duct|2233042 +common birch|2233113 +common bird cherry|2233201 +common blackfish|2233306 +common bog rosemary|2233395 +common booklouse|2233470 +common box|2233572 +common brant goose|2233636 +common broom|2233716 +common burdock|2233809 +common buttercup|2233878 +common calamint|2233986 +common camas|2234073 +common canary|2234147 +common caper|2234205 +common cardinal vein|2234250 +common carline thistle|2234294 +common carotid|2234359 +common carotid artery|2234436 +common carrier|2234513 +common chickweed|2234623 +common chord|2234675 +common cockscomb|2234709 +common cold|2234810 +common comfrey|2234918 +common coral tree|2234987 +common corn salad|2235091 +common cotton grass|2235187 +common daisy|2235266 +common dandelion|2235324 +common denominator|2235410 +common devil's claw|2235467 +common divisor|2235618 +common dogbane|2235686 +common dolphin|2235778 +common duckweed|2235828 +common eel|2235890 +common eland|2235929 +common elder|2235974 +common era|2236080 +common european ash|2236135 +common european dogwood|2236229 +common european earwig|2236362 +common european jay|2236446 +common evening primrose|2236527 +common facial vein|2236610 +common factor|2236668 +common fate|2236736 +common fault|2236838 +common fennel|2236902 +common fig|2236970 +common fig tree|2237032 +common flat pea|2237094 +common four-o'clock|2237167 +common foxglove|2237260 +common fraction|2237384 +common front|2237434 +common garden cress|2237487 +common garter snake|2237595 +common ginger|2237669 +common good|2237745 +common grape hyacinth|2237782 +common grape vine|2237846 +common ground|2237928 +common gum cistus|2237972 +common heath|2238050 +common hop|2238149 +common hops|2238224 +common horehound|2238360 +common horsetail|2238430 +common hyacinth|2238500 +common iguana|2238556 +common iliac artery|2238623 +common iliac vein|2238680 +common ivy|2238730 +common jasmine|2238784 +common juniper|2238859 +common kingsnake|2238910 +common knowledge|2238978 +common laburnum|2239039 +common lady's-slipper|2239126 +common land|2239294 +common law|2239364 +common lettuce|2239457 +common lilac|2239519 +common limpet|2239564 +common logarithm|2239610 +common louse|2239650 +common lynx|2239710 +common mackerel|2239756 +common madia|2239814 +common maidenhair|2239888 +common mallow|2240032 +common man|2240077 +common marigold|2240173 +common market|2240267 +common matrimony vine|2240495 +common measure|2240612 +common meter|2240795 +common milkwort|2240865 +common mood|2240929 +common moonseed|2241035 +common moonwort|2241122 +common morel|2241186 +common morning glory|2241263 +common mosquito|2241362 +common mugwort|2241410 +common mullein|2241461 +common multiple|2241600 +common murre|2241646 +common myrtle|2241685 +common nardoo|2241731 +common newt|2241810 +common nightshade|2241861 +common noun|2241956 +common nuisance|2241982 +common nutcracker|2242032 +common oak|2242094 +common opossum|2242166 +common or garden|2242248 +common osier|2242283 +common pea|2242352 +common people|2242428 +common pepper|2242463 +common person|2242574 +common pitcher plant|2242670 +common plantain|2242765 +common plum|2242886 +common polypody|2242939 +common pond-skater|2243060 +common privet|2243144 +common purslane|2243192 +common raccoon|2243270 +common racoon|2243351 +common ragweed|2243432 +common reed|2243508 +common room|2243601 +common rorqual|2243685 +common rose mallow|2243781 +common roundworm|2243881 +common rush|2243961 +common sage|2244029 +common salt|2244088 +common scold|2244223 +common scoter|2244308 +common scurvy grass|2244362 +common seal|2244445 +common sense|2244526 +common shares|2244651 +common shiner|2244709 +common shrew|2244769 +common sickle pine|2244822 +common snapping turtle|2244899 +common snipe|2244975 +common snowberry|2245035 +common soldier|2245172 +common sorrel|2245230 +common speedwell|2245289 +common spindle tree|2245365 +common spoonbill|2245457 +common spotted orchid|2245513 +common st john's wort|2245621 +common staghorn fern|2245718 +common starling|2245820 +common stinkhorn|2245871 +common stock|2245940 +common stock equivalent|2245998 +common sunflower|2246037 +common tarweed|2246110 +common teasel|2246184 +common thorn apple|2246246 +common thyme|2246356 +common time|2246400 +common tobacco|2246479 +common topaz|2246529 +common touch|2246576 +common unicorn plant|2246614 +common valerian|2246765 +common vetchling|2246839 +common viper|2246921 +common wallaby|2246968 +common wart|2247031 +common wasp|2247065 +common water snake|2247122 +common watercress|2247212 +common wheat|2247301 +common white dogwood|2247352 +common winterberry holly|2247451 +common wolffia|2247491 +common wood sorrel|2247544 +common wormwood|2247638 +common year|2247721 +common yellowthroat|2247771 +common yellowwood|2247854 +common zebra|2247944 +common-law|2231654 +common-law marriage|2231684 +commonage|2248005 +commonality|2248072 +commonalty|2248181 +commoner|2248261 +commonly|2248357 +commonness|2248415 +commonplace|2248612 +commonplace book|2248893 +commonplaceness|2248928 +commons|2248990 +commonsense|2249296 +commonsensible|2249367 +commonsensical|2249438 +commonweal|2249509 +commonwealth|2249546 +commonwealth day|2249837 +commonwealth of australia|2249929 +commonwealth of dominica|2250019 +commonwealth of independent states|2250106 +commonwealth of nations|2250301 +commonwealth of puerto rico|2250392 +commonwealth of the bahamas|2250496 +commotion|2250603 +commove|2250791 +communal|2250943 +communalise|2251043 +communalism|2251082 +communalize|2251164 +commune|2251203 +communicable|2251381 +communicable disease|2251510 +communicant|2251548 +communicate|2251579 +communicating|2251785 +communicating artery|2251854 +communication|2251941 +communication channel|2252075 +communication equipment|2252147 +communication system|2252223 +communication theory|2252313 +communication trench|2252461 +communicational|2252514 +communications|2252567 +communications intelligence|2252875 +communications protocol|2252947 +communications satellite|2253004 +communications security establishment|2253077 +communications technology|2253200 +communicative|2253258 +communicativeness|2253985 +communicator|2254018 +communicatory|2254093 +communion|2254784 +communion table|2254935 +communique|2254985 +communisation|2255065 +communise|2255261 +communism|2255373 +communist|2255475 +communist china|2255635 +communist economy|2255765 +communist manifesto|2255808 +communist party|2255882 +communist party of kampuchea|2255945 +communistic|2256131 +community|2256209 +community center|2256625 +community chest|2256678 +community college|2256711 +community of interests|2256753 +community of scholars|2256812 +community property|2256864 +community service|2256940 +communization|2257005 +communize|2257201 +commutability|2257313 +commutable|2257487 +commutate|2257614 +commutation|2257665 +commutation ticket|2257824 +commutative|2257873 +commutative group|2257906 +commutator|2257972 +commute|2258033 +commuter|2258254 +commuter traffic|2258326 +commuter train|2258360 +commuting|2258409 +comoro islands|2258468 +comoros|2258532 +comose|2258616 +compact|2258681 +compact car|2259294 +compact disc|2259360 +compact disc read-only memory|2259434 +compact disc recordable|2259562 +compact disc write-once|2259659 +compact disk|2259756 +compact-disk burner|2259208 +compaction|2259830 +compactly|2259945 +compactness|2259974 +companion|2260081 +companionability|2260306 +companionable|2260375 +companionableness|2260407 +companionate|2260476 +companionship|2260507 +companionway|2260590 +company|2260644 +company man|2261068 +company name|2261098 +company operator|2261125 +company union|2261172 +comparability|2261250 +comparable|2261334 +comparable to|2261441 +comparable with|2261475 +comparative|2261511 +comparative anatomist|2261573 +comparative anatomy|2261614 +comparative literature|2261667 +comparative negligence|2261714 +comparative psychology|2261793 +comparatively|2261876 +compare|2261909 +comparing|2262105 +comparison|2262156 +comparison-shop|2262294 +compart|2262331 +compartment|2262376 +compartment pressure|2262423 +compartmental|2262487 +compartmentalisation|2262560 +compartmentalise|2262732 +compartmentalised|2262812 +compartmentalization|2262885 +compartmentalize|2263057 +compartmentalized|2263137 +compartmented|2263210 +compass|2263297 +compass card|2263609 +compass flower|2263666 +compass north|2263730 +compass plane|2263784 +compass plant|2263864 +compass point|2264029 +compass saw|2264068 +compassion|2264113 +compassionate|2264206 +compassionate leave|2264413 +compassionately|2264465 +compassionateness|2264525 +compatibility|2264587 +compatible|2264664 +compatible software|2264874 +compatriot|2265010 +compeer|2265047 +compel|2265134 +compelling|2265248 +compendious|2265295 +compendium|2265349 +compensable|2265407 +compensate|2265474 +compensated|2265819 +compensating balance|2265878 +compensation|2265935 +compensative|2266104 +compensatory|2266192 +compensatory damages|2266280 +compensatory spending|2266402 +compensatory time|2266502 +compere|2266538 +compete|2266605 +competence|2266634 +competence hearing|2266673 +competency|2266709 +competent|2266748 +competently|2266884 +competing|2266939 +competition|2266982 +competitive|2267144 +competitiveness|2267361 +competitor|2267407 +competitory|2267477 +compilation|2267589 +compile|2267701 +compiler|2267859 +compiling|2267999 +compiling program|2268075 +complacence|2268165 +complacency|2268246 +complacent|2268327 +complain|2268380 +complainant|2268447 +complainer|2268497 +complaining|2268616 +complaint|2268742 +complaintive|2268860 +complaisance|2268974 +complaisant|2269068 +complect|2269126 +complement|2269199 +complement fixation|2269480 +complement fixation test|2269562 +complemental|2269607 +complementarity|2269678 +complementary|2269758 +complementary angles|2269990 +complementary color|2270026 +complementary distribution|2270133 +complementary dna|2270209 +complementary medicine|2270308 +complementation|2270370 +complete|2270474 +complete blood count|2271250 +complete fracture|2271310 +completed|2271352 +completely|2271446 +completeness|2271510 +completing|2271588 +completion|2271659 +complex|2271790 +complex absence|2272261 +complex body part|2272313 +complex fraction|2272413 +complex instruction set computer|2272466 +complex instruction set computing|2272582 +complex number|2272698 +complex quantity|2272763 +complex sentence|2272828 +complexifier|2272863 +complexify|2272938 +complexion|2272998 +complexity|2273224 +complexness|2273264 +compliance|2273304 +compliancy|2273498 +compliant|2273592 +complicate|2273833 +complicated|2273932 +complicatedness|2273961 +complication|2274033 +complicity|2274216 +compliment|2274253 +complimentary|2274342 +compliments|2274520 +complin|2274620 +compline|2274661 +complot|2274702 +comply|2274757 +complying|2274794 +component|2274841 +component part|2275004 +comport|2275060 +comportment|2275165 +compos mentis|2275231 +compose|2275273 +composed|2275527 +composedly|2275777 +composer|2275808 +composing|2275835 +compositae|2275931 +composite|2276043 +composite material|2276180 +composite number|2276223 +composite order|2276256 +composite plant|2276303 +composite school|2276345 +compositeness|2276446 +composition|2276478 +composition board|2276862 +compositional|2276938 +compositor|2276973 +compost|2277040 +compost heap|2277096 +compost pile|2277155 +composure|2277214 +compote|2277282 +compound|2277334 +compound eye|2278095 +compound fraction|2278134 +compound fracture|2278187 +compound interest|2278243 +compound leaf|2278279 +compound lens|2278323 +compound lever|2278369 +compound microscope|2278399 +compound morphology|2278445 +compound number|2278485 +compound pendulum|2278517 +compound pistil|2278571 +compound protein|2278603 +compound sentence|2278656 +compounded|2278692 +compounding|2278721 +comprehend|2278784 +comprehended|2278920 +comprehendible|2278977 +comprehensibility|2279145 +comprehensible|2279198 +comprehension|2279381 +comprehensive|2279478 +comprehensive school|2279933 +comprehensiveness|2280034 +compress|2280111 +compressed|2280260 +compressed air|2280335 +compressed gas|2280374 +compressibility|2280424 +compressible|2280483 +compressing|2280552 +compression|2280609 +compression bandage|2280802 +compression fracture|2280856 +compressor|2280901 +comprise|2280939 +compromise|2281042 +compromise verdict|2281206 +compromiser|2281258 +compromising|2281308 +compsognathus|2281392 +compton|2281463 +comptonia|2281542 +comptonia asplenifolia|2281618 +comptonia peregrina|2281715 +comptroller|2281809 +comptroller general|2281877 +comptroller of the currency|2281947 +comptrollership|2282132 +compulsion|2282212 +compulsive|2282341 +compulsively|2282480 +compulsiveness|2282527 +compulsivity|2282570 +compulsorily|2282613 +compulsory|2282659 +compulsory process|2282709 +compunction|2282749 +computable|2282821 +computation|2282862 +computational|2282977 +computational linguist|2283025 +computational linguistics|2283106 +compute|2283153 +computed axial tomography|2283224 +computed tomography|2283361 +computer|2283498 +computer accessory|2283899 +computer address|2283968 +computer architecture|2284021 +computer backup|2284101 +computer business|2284155 +computer circuit|2284224 +computer code|2284294 +computer database|2284336 +computer dealer|2284440 +computer display|2284472 +computer error|2284532 +computer expert|2284597 +computer file|2284657 +computer file name|2284695 +computer filename|2284765 +computer game|2284835 +computer graphics|2284874 +computer guru|2284910 +computer hardware|2284970 +computer industry|2285036 +computer keyboard|2285072 +computer language|2285146 +computer memory|2285284 +computer memory unit|2285416 +computer menu|2285471 +computer mouse|2285512 +computer network|2285560 +computer operation|2285613 +computer paper|2285669 +computer peripheral|2285699 +computer program|2285778 +computer programing|2285891 +computer programme|2285988 +computer programmer|2286101 +computer programming|2286219 +computer readable|2286316 +computer science|2286359 +computer scientist|2286454 +computer screen|2286521 +computer simulation|2286581 +computer storage|2286667 +computer store|2286799 +computer system|2286834 +computer technology|2286932 +computer user|2286984 +computer virus|2287060 +computer-aided design|2283676 +computer-oriented language|2283761 +computerise|2287109 +computerised|2287299 +computerization|2287344 +computerize|2287420 +computerized|2287610 +computerized axial tomography|2287655 +computerized axial tomography scanner|2287792 +computerized tomography|2287861 +computing|2287998 +computing device|2288142 +computing machine|2288268 +computing system|2288394 +comrade|2288492 +comradeliness|2288606 +comradely|2288699 +comradery|2288760 +comradeship|2288853 +comstock|2288946 +comstock mealybug|2289137 +comstock's mealybug|2289028 +comstockery|2289244 +comte|2289298 +comte de mirabeau|2289382 +comte de rochambeau|2289515 +comte de saxe|2289629 +comte donatien alphonse francois de sade|2289743 +comtesse du barry|2289877 +comtism|2289958 +con|2290013 +con artist|2290404 +con brio|2290521 +con game|2290548 +con man|2290681 +conacaste|2290798 +conakry|2290861 +conan doyle|2290934 +concatenate|2291038 +concatenation|2291076 +concave|2291227 +concave lens|2291494 +concave polygon|2291554 +concave polyhedron|2291603 +concave shape|2291642 +concaveness|2291705 +concavity|2291782 +concavo-concave|2291910 +concavo-convex|2291953 +conceal|2291985 +concealed|2292032 +concealing|2292301 +concealment|2292367 +concede|2292496 +conceding|2292646 +conceit|2292705 +conceited|2292791 +conceitedly|2292881 +conceivability|2292931 +conceivable|2292996 +conceivableness|2293063 +conceive|2293128 +conceive of|2293280 +conceived|2293362 +conceiver|2293396 +concenter|2293445 +concentrate|2293525 +concentrate on|2294021 +concentrated|2294160 +concentrated fire|2294547 +concentration|2294598 +concentration camp|2294885 +concentre|2294982 +concentric|2295062 +concentrical|2295133 +concentricity|2295193 +concepcion|2295239 +concept|2295299 +concept album|2295350 +conception|2295392 +conceptional|2295615 +conceptive|2295666 +conceptual|2295694 +conceptualisation|2295723 +conceptualise|2295872 +conceptualism|2295963 +conceptualistic|2296030 +conceptuality|2296098 +conceptualization|2296186 +conceptualize|2296335 +conceptus|2296426 +concern|2296515 +concerned|2296834 +concernedly|2297025 +concert|2297058 +concert band|2297231 +concert dance|2297272 +concert grand|2297329 +concert hall|2297384 +concert piano|2297411 +concert pitch|2297466 +concert-goer|2297188 +concerted|2297534 +concerted music|2297608 +concertina|2297666 +concertise|2297742 +concertize|2297781 +concerto|2297820 +concerto grosso|2297868 +concession|2297902 +concessionaire|2298000 +concessioner|2298055 +concessive|2298110 +conch|2298138 +concha|2298172 +conchfish|2298269 +conchologist|2298322 +conchology|2298365 +concierge|2298447 +conciliable|2298476 +conciliate|2298517 +conciliation|2298792 +conciliative|2298887 +conciliator|2298988 +conciliatory|2299110 +concise|2299262 +concisely|2299459 +conciseness|2299511 +concision|2299575 +conclave|2299639 +conclude|2299665 +concluded|2299846 +concluding|2299914 +conclusion|2299962 +conclusion of law|2300392 +conclusive|2300442 +conclusively|2300581 +conclusiveness|2300619 +concoct|2300694 +concoction|2300927 +concomitance|2301115 +concomitant|2301187 +concord|2301345 +concord grape|2301773 +concordance|2301836 +concordant|2301925 +concordat|2302026 +concourse|2302080 +concrete|2302207 +concrete jungle|2302382 +concrete mixer|2302414 +concrete representation|2302459 +concreteness|2302564 +concretion|2302624 +concretise|2302879 +concretism|2302917 +concretistic|2303022 +concretize|2303104 +concubinage|2303204 +concubine|2303254 +concupiscence|2303339 +concur|2303403 +concurrence|2303522 +concurrent|2303688 +concurrent execution|2303802 +concurrent negligence|2303881 +concurrent operation|2303959 +concurrently|2303999 +concurring|2304037 +concurring opinion|2304078 +concuss|2304147 +concussion|2304198 +condemn|2304260 +condemnable|2304448 +condemnation|2304509 +condemnatory|2304731 +condemned|2304788 +condemning|2304932 +condensate|2304989 +condensation|2305045 +condensation pump|2305329 +condensation trail|2305392 +condense|2305435 +condensed milk|2305729 +condenser|2305758 +condenser microphone|2305921 +condensing|2305988 +condescend|2306045 +condescending|2306176 +condescendingly|2306237 +condescendingness|2306289 +condescension|2306395 +condign|2306659 +condiment|2306684 +condition|2306762 +conditional|2307212 +conditional contract|2307456 +conditional probability|2307495 +conditional reaction|2307570 +conditional reflex|2307751 +conditional relation|2307932 +conditional response|2308011 +conditional sale|2308192 +conditionality|2308264 +conditionally|2308294 +conditioned|2308331 +conditioned avoidance|2308404 +conditioned avoidance response|2308604 +conditioned emotion|2308804 +conditioned emotional response|2308876 +conditioned reaction|2308948 +conditioned reflex|2309129 +conditioned response|2309310 +conditioned stimulus|2309491 +conditioner|2309558 +conditioning|2309649 +condo|2309692 +condole|2309774 +condole with|2309825 +condolence|2309905 +condom|2309970 +condominium|2310118 +condonation|2310245 +condone|2310285 +condor|2310317 +conduce|2310361 +conducive|2310434 +conduct|2310512 +conductance|2310881 +conductance unit|2310924 +conducting|2310975 +conducting wire|2311047 +conduction|2311087 +conduction anaesthesia|2311140 +conduction anesthesia|2311299 +conduction aphasia|2311458 +conduction deafness|2311514 +conductive|2311623 +conductive hearing loss|2311684 +conductivity|2311793 +conductor|2311846 +conductress|2311972 +conduit|2312003 +condylar|2312028 +condylar process|2312073 +condyle|2312144 +condylion|2312189 +condyloid process|2312227 +condyloma acuminatum|2312298 +condylura|2312386 +condylura cristata|2312444 +cone|2312526 +cone cell|2312896 +cone clutch|2312945 +cone friction clutch|2313003 +cone pepper|2313061 +cone shape|2313145 +cone-bearing|2312707 +cone-nosed bug|2312750 +cone-shaped|2312841 +coneflower|2313189 +conelike|2313230 +conenose|2313285 +conenose bug|2313376 +conepatus|2313467 +conepatus leuconotus|2313525 +conessi|2313658 +conestoga|2313754 +conestoga wagon|2313857 +coney|2313966 +coney island|2314198 +confab|2314247 +confabulate|2314503 +confabulation|2314749 +confect|2314829 +confection|2314945 +confectioner|2315144 +confectionery|2315190 +confederacy|2315297 +confederate|2315591 +confederate army|2315920 +confederate flag|2316029 +confederate jasmine|2316092 +confederate rose|2316167 +confederate rose mallow|2316274 +confederate soldier|2316388 +confederate states|2316457 +confederate states of america|2316640 +confederation|2316834 +confederative|2316948 +confer|2316997 +confer with|2317121 +conferee|2317170 +conference|2317227 +conference call|2317335 +conference center|2317391 +conference house|2317449 +conference room|2317507 +conference table|2317537 +conferment|2317597 +conferral|2317659 +conferred|2317721 +conferva|2317765 +confervoid algae|2317802 +confess|2317839 +confessedly|2317954 +confession|2317999 +confession of judgement|2318158 +confession of judgment|2318288 +confessional|2318418 +confessor|2318466 +confetti|2318512 +confidant|2318536 +confidante|2318571 +confide|2318610 +confidence|2318790 +confidence game|2318975 +confidence man|2319108 +confidence trick|2319225 +confident|2319358 +confidential|2319525 +confidential adviser-advisee relation|2319615 +confidential information|2319681 +confidentiality|2319790 +confidently|2319910 +confiding|2319946 +confidingly|2319983 +configuration|2320025 +configurational|2320141 +configurationism|2320177 +configure|2320240 +configured|2320313 +confine|2320352 +confined|2320677 +confinement|2320937 +confines|2321096 +confining|2321152 +confirm|2321252 +confirmable|2321424 +confirmation|2321486 +confirmation hearing|2321700 +confirmative|2321738 +confirmatory|2321909 +confirmed|2322080 +confirming|2322182 +confiscate|2322369 +confiscated|2322521 +confiscation|2322600 +confiture|2322641 +conflagrate|2322691 +conflagration|2322816 +conflate|2322852 +conflict|2322951 +conflict of interest|2323335 +conflicting|2323375 +confluence|2323473 +confluent|2323624 +conflux|2323662 +conform|2323713 +conform to|2323750 +conformable|2323894 +conformal projection|2324017 +conformance|2324086 +conformation|2324143 +conformational entropy|2324328 +conforming|2324381 +conformism|2324421 +conformist|2324462 +conformity|2324555 +confound|2324790 +confounded|2324903 +confoundedly|2325006 +confounding|2325039 +confrere|2325087 +confront|2325132 +confrontation|2325274 +confrontational|2325438 +confronting|2325473 +confucian|2325571 +confucianism|2325677 +confucius|2325756 +confusable|2325808 +confuse|2325836 +confused|2326152 +confusedness|2326710 +confusing|2326798 +confusingly|2326865 +confusion|2326899 +confutable|2327116 +confutation|2327180 +confutative|2327269 +confute|2327333 +confuter|2327377 +conga|2327437 +conga line|2327601 +conge|2327626 +congeal|2327795 +congealed|2327830 +congealment|2327870 +congee|2327951 +congelation|2328034 +congenator|2328115 +congener|2328168 +congeneric|2328221 +congenerical|2328280 +congenerous|2328339 +congenial|2328398 +congeniality|2328519 +congenialness|2328589 +congenital|2328639 +congenital abnormality|2328710 +congenital afibrinogenemia|2328841 +congenital anomaly|2329057 +congenital defect|2329188 +congenital disease|2329319 +congenital disorder|2329500 +congenital heart defect|2329631 +congenital megacolon|2329757 +congenital pancytopenia|2329974 +conger|2330221 +conger eel|2330252 +congeries|2330283 +congest|2330351 +congested|2330462 +congestion|2330495 +congestive|2330553 +congestive heart failure|2330580 +congius|2330645 +conglobate|2330730 +conglobation|2330780 +conglobe|2330864 +conglomerate|2330914 +conglomeration|2331065 +conglutinate|2331198 +conglutination|2331280 +congo|2331417 +congo copal|2331689 +congo eel|2331726 +congo franc|2331787 +congo gum|2331826 +congo peafowl|2331863 +congo red|2331937 +congo river|2331984 +congo snake|2332029 +congolese|2332090 +congoo mallee|2332174 +congorism|2332235 +congou|2332287 +congou tea|2332352 +congratulate|2332417 +congratulation|2332551 +congratulations|2332630 +congratulatory|2332782 +congregate|2332829 +congregating|2332958 +congregation|2333023 +congregational|2333176 +congregational christian church|2333275 +congregational church|2333372 +congregationalism|2333449 +congregationalist|2333508 +congress|2333627 +congress boot|2334026 +congress gaiter|2334084 +congress of industrial organizations|2334142 +congress of racial equality|2334240 +congress shoe|2334343 +congressional|2334401 +congressional district|2334484 +congressional medal of honor|2334565 +congressional record|2334700 +congressman|2334784 +congresswoman|2334845 +congridae|2334906 +congruence|2334964 +congruent|2335031 +congruity|2335145 +congruous|2335212 +congruousness|2335292 +conic|2335359 +conic morel|2335471 +conic projection|2335566 +conic section|2335626 +conic verpa|2335691 +conic waxycap|2335754 +conical|2335807 +conical buoy|2335862 +conical projection|2335902 +conidiophore|2335962 +conidiospore|2335990 +conidium|2336027 +conifer|2336064 +coniferales|2336116 +coniferophyta|2336179 +coniferophytina|2336300 +coniferopsida|2336423 +coniferous|2336544 +coniferous tree|2336587 +conilurus|2336639 +conima|2336697 +coniogramme|2336717 +coniogramme japonica|2336779 +conium|2336847 +conium maculatum|2336901 +conjectural|2337040 +conjecture|2337145 +conjoin|2337433 +conjoined|2337559 +conjoined twin|2337593 +conjoint|2337678 +conjointly|2337712 +conjugal|2337774 +conjugal family|2337816 +conjugal rights|2337891 +conjugal visitation|2337928 +conjugal visitation rights|2337996 +conjugally|2338064 +conjugate|2338093 +conjugate solution|2338346 +conjugated|2338393 +conjugated protein|2338484 +conjugation|2338537 +conjunct|2338852 +conjunction|2338956 +conjunctiva|2339296 +conjunctival|2339340 +conjunctival layer of bulb|2339384 +conjunctival layer of eyelids|2339476 +conjunctival veins|2339579 +conjunctive|2339658 +conjunctivitis|2339846 +conjunctivitis arida|2339905 +conjuncture|2340000 +conjuration|2340039 +conjure|2340228 +conjure man|2340432 +conjure up|2340484 +conjurer|2340597 +conjuring|2340730 +conjuring trick|2340786 +conjuror|2340890 +conjury|2341023 +conk|2341079 +conk out|2341366 +conker|2341517 +conn|2341561 +conn's syndrome|2341656 +connaraceae|2341706 +connarus|2341794 +connarus guianensis|2341854 +connate|2341928 +connatural|2341987 +connect|2342050 +connected|2342419 +connectedness|2342787 +connecter|2342881 +connecticut|2342974 +connecticut river|2343192 +connecticuter|2343321 +connecting|2343367 +connecting flight|2343427 +connecting rod|2343461 +connecting room|2343489 +connection|2343525 +connective|2343944 +connective tissue|2344119 +connectivity|2344160 +connector|2344191 +connemara heath|2344284 +connexion|2344370 +conning tower|2344698 +conniption|2344769 +connivance|2344829 +connive|2344928 +connive at|2344997 +conniving|2345065 +connochaetes|2345153 +connoisseur|2345220 +connoisseurship|2345263 +connolly|2345346 +connors|2345433 +connotation|2345505 +connotational|2345603 +connotative|2345653 +connotative of|2345810 +connote|2345860 +connubial|2345926 +conocarpus|2345985 +conocarpus erectus|2346064 +conoclinium|2346144 +conoclinium coelestinum|2346215 +conodont|2346334 +conodonta|2346406 +conodontophorida|2346504 +conoid|2346609 +conopodium|2346653 +conopodium denudatum|2346719 +conospermum|2346801 +conoy|2346883 +conquer|2346925 +conquerable|2347143 +conquering|2347303 +conqueror|2347387 +conquest|2347440 +conquistador|2347564 +conrad|2347606 +conrad aiken|2347690 +conrad potter aiken|2347765 +conradina|2347847 +conradina glabra|2347912 +consanguine|2347988 +consanguineous|2348063 +consanguinity|2348138 +conscience|2348226 +conscience money|2348303 +conscience-smitten|2348268 +conscienceless|2348337 +conscientious|2348392 +conscientious objector|2348473 +conscientiously|2348558 +conscientiousness|2348607 +conscionable|2348680 +conscious|2348707 +consciousness|2348875 +consciousness-altering drug|2348987 +conscript|2349089 +conscription|2349186 +consecrate|2349295 +consecrated|2349559 +consecration|2349671 +consecutive|2349756 +consecutive operation|2349913 +consensual|2349992 +consensus|2350022 +consent|2350058 +consent decree|2350121 +consentaneous|2350178 +consentient|2350233 +consenting|2350288 +consequence|2350316 +consequent|2350490 +consequential|2350557 +consequently|2350609 +conservancy|2350658 +conservation|2350720 +conservation of charge|2350830 +conservation of electricity|2350903 +conservation of energy|2350976 +conservation of mass|2351101 +conservation of matter|2351225 +conservation of momentum|2351349 +conservation of parity|2351396 +conservationist|2351490 +conservatism|2351570 +conservative|2351655 +conservative jew|2351977 +conservative judaism|2352041 +conservative party|2352161 +conservatively|2352230 +conservativism|2352274 +conservativist|2352359 +conservatoire|2352410 +conservator|2352465 +conservator-ward relation|2352536 +conservatory|2352590 +conserve|2352719 +conserved|2352910 +conserves|2352939 +conserving|2353041 +consider|2353083 +considerable|2353540 +considerably|2353702 +considerate|2353742 +considerately|2353820 +considerateness|2353861 +consideration|2353924 +considered|2354187 +consign|2354277 +consignee|2354368 +consigner|2354406 +consignment|2354443 +consignor|2354606 +consist|2354643 +consistence|2354778 +consistency|2354867 +consistent|2355035 +consistently|2355299 +consistory|2355335 +consociate|2355381 +consolable|2355423 +consolation|2355454 +consolatory|2355558 +console|2355611 +console table|2355744 +consolida|2355781 +consolida ambigua|2355848 +consolidate|2355934 +consolidated|2356048 +consolidation|2356131 +consolidative|2356247 +consoling|2356323 +consolingly|2356376 +consomme|2356409 +consonance|2356432 +consonant|2356509 +consonant rhyme|2356743 +consonant system|2356790 +consonantal|2356851 +consonantal system|2356957 +consonate|2357018 +consort|2357067 +consortium|2357316 +conspecific|2357363 +conspectus|2357446 +conspicuous|2357474 +conspicuous consumption|2357746 +conspicuously|2357849 +conspicuousness|2357883 +conspiracy|2357969 +conspiracy of silence|2358099 +conspirative|2358153 +conspirator|2358211 +conspiratorial|2358304 +conspire|2358362 +constable|2358441 +constabulary|2358590 +constancy|2358675 +constant|2358814 +constant lambert|2359252 +constant of gravitation|2359371 +constant of proportionality|2359471 +constant quantity|2359550 +constant-width font|2359149 +constantan|2359595 +constantin brancusi|2359640 +constantine|2359738 +constantine i|2359885 +constantine the great|2359986 +constantinople|2360095 +constantly|2360189 +constatation|2360220 +constellate|2360310 +constellation|2360450 +consternate|2360521 +consternation|2360573 +constipate|2360633 +constipated|2360703 +constipating|2360742 +constipation|2360780 +constituency|2360889 +constituent|2360916 +constitute|2361155 +constituted|2361369 +constitution|2361567 +constitution of the united states|2361784 +constitution state|2361929 +constitutional|2362019 +constitutional convention|2362209 +constitutional union party|2362281 +constitutionalise|2362366 +constitutionalism|2362431 +constitutionalist|2362549 +constitutionalize|2362614 +constitutive|2362741 +constrain|2362808 +constrained|2362996 +constraining|2363052 +constraint|2363130 +constrict|2363215 +constricted|2363315 +constricting|2363411 +constriction|2363484 +constrictive|2363640 +constrictor|2363755 +constrictor constrictor|2363799 +constringe|2363876 +construal|2363921 +construct|2363955 +construction|2364310 +construction industry|2364715 +construction paper|2364772 +construction worker|2364806 +constructive|2364883 +constructive breach|2365089 +constructive eviction|2365157 +constructive fraud|2365217 +constructive metabolism|2365263 +constructive possession|2365341 +constructive trust|2365395 +constructive-metabolic|2365033 +constructiveness|2365455 +constructivism|2365489 +constructivist|2365544 +constructor|2365591 +construe|2365628 +construe with|2365685 +consubstantial|2365796 +consubstantiate|2365859 +consubstantiation|2365927 +consuetude|2365994 +consuetudinal|2366034 +consuetudinary|2366079 +consul|2366124 +consular|2366161 +consulate|2366219 +consulship|2366258 +consult|2366333 +consultancy|2366522 +consultant|2366552 +consultation|2366598 +consultative|2366726 +consultatory|2366805 +consulting company|2366884 +consulting firm|2366953 +consulting service|2367022 +consultive|2367058 +consumable|2367137 +consume|2367168 +consumed|2367425 +consumer|2367482 +consumer credit|2367505 +consumer durables|2367617 +consumer finance company|2367682 +consumer goods|2367751 +consumer loan|2367803 +consumer price index|2367845 +consumer research|2367924 +consumerism|2367986 +consuming|2368075 +consummate|2368115 +consummated|2368459 +consummation|2368512 +consumption|2368631 +consumption weed|2368928 +consumptive|2369034 +contact|2369171 +contact action|2369646 +contact arm|2369729 +contact dermatitis|2369783 +contact lens|2369822 +contact print|2369875 +contact sport|2369904 +contadino|2369943 +contagion|2369998 +contagious|2370127 +contagious abortion|2370266 +contagious disease|2370348 +contagiously|2370407 +contain|2370441 +contained|2370691 +container|2370739 +container ship|2370790 +container vessel|2370950 +containerful|2371029 +containerise|2371071 +containerised|2371111 +containerize|2371152 +containerized|2371192 +containership|2371233 +containment|2371312 +contaminant|2371371 +contaminate|2371421 +contaminated|2371520 +contaminating|2371619 +contamination|2371677 +contaminative|2371802 +conte alessandro giuseppe antonio anastasio volta|2371832 +conte alessandro volta|2372003 +contemn|2372147 +contemplate|2372198 +contemplation|2372449 +contemplative|2372553 +contemplativeness|2372721 +contemporaneity|2372790 +contemporaneous|2372979 +contemporaneousness|2373110 +contemporaries|2373295 +contemporary|2373397 +contemporary world|2373560 +contemporise|2373650 +contemporize|2373846 +contempt|2374042 +contempt of congress|2374199 +contempt of court|2374259 +contemptibility|2374295 +contemptible|2374371 +contemptuous|2374519 +contemptuously|2374585 +contend|2374664 +contender|2374855 +contending|2374925 +content|2374969 +content word|2375447 +contented|2375490 +contentedness|2375620 +contention|2375662 +contentious|2375883 +contentiousness|2376022 +contentment|2376118 +contents|2376149 +conterminous|2376574 +contest|2376729 +contestable|2376838 +contestant|2376938 +contestation|2377110 +contested|2377252 +contestee|2377288 +contester|2377321 +context|2377375 +context of use|2377468 +contextual|2377529 +contextual definition|2377558 +contiguity|2377600 +contiguous|2377664 +contiguousness|2377800 +continence|2377864 +continency|2377948 +continent|2378007 +continent-wide|2378099 +continental|2378135 +continental army|2378306 +continental breakfast|2378381 +continental congress|2378437 +continental divide|2378497 +continental drift|2378556 +continental glacier|2378605 +continental plan|2378642 +continental quilt|2378703 +continental shelf|2378767 +continental slope|2378868 +contingence|2378999 +contingency|2379079 +contingency fee|2379199 +contingency procedure|2379228 +contingent|2379308 +contingent on|2379518 +contingent probability|2379603 +continual|2379678 +continuance|2379899 +continuant|2380013 +continuant consonant|2380064 +continuation|2380115 +continue|2380370 +continued|2380720 +continued fraction|2380760 +continuing|2380797 +continuing trespass|2380827 +continuity|2380865 +continuity army council|2381021 +continuity irish republican army|2381190 +continuo|2381368 +continuous|2381443 +continuous receiver watch|2381735 +continuous tense|2381798 +continuously|2381886 +continuousness|2381964 +continuum|2382039 +conto|2382063 +contopus|2382103 +contopus sordidulus|2382156 +contopus virens|2382277 +contort|2382417 +contorted|2382475 +contortion|2382551 +contortionist|2382677 +contour|2382708 +contour feather|2382896 +contour language|2382943 +contour line|2382998 +contour map|2383053 +contour sheet|2383089 +contra danse|2383141 +contraband|2383346 +contrabandist|2383443 +contrabass|2383545 +contrabassoon|2383696 +contraception|2383756 +contraceptive|2383847 +contraceptive device|2384008 +contraceptive diaphragm|2384124 +contraceptive method|2384275 +contraceptive pill|2384366 +contraclockwise|2384588 +contract|2384690 +contract bridge|2385170 +contract in|2385211 +contract killing|2385254 +contract law|2385305 +contract of adhesion|2385362 +contract of hazard|2385419 +contract offer|2385470 +contract out|2385509 +contract under seal|2385583 +contractable|2385656 +contracted|2385750 +contractile|2385818 +contractile organ|2385850 +contractility|2385894 +contracting|2385925 +contraction|2385973 +contractor|2386156 +contractual|2386275 +contracture|2386313 +contradance|2386386 +contradict|2386592 +contradiction|2386803 +contradiction in terms|2386938 +contradictoriness|2387026 +contradictory|2387077 +contradistinction|2387265 +contradistinguish|2387320 +contrafagotto|2387437 +contrail|2387497 +contraindicate|2387540 +contraindication|2387579 +contralateral|2387612 +contralto|2387649 +contraption|2387758 +contrapuntal|2387846 +contrapuntist|2387928 +contrarian|2387960 +contrariety|2387989 +contrarily|2388034 +contrariness|2388128 +contrarious|2388276 +contrariwise|2388320 +contrary|2388450 +contrary to fact|2388685 +contrast|2388738 +contrast material|2389101 +contrast medium|2389151 +contrasting|2389201 +contrastive|2389244 +contrasty|2389337 +contravene|2389366 +contravention|2389532 +contredanse|2389574 +contretemps|2389780 +contribute|2389832 +contributing|2390012 +contribution|2390090 +contributive|2390287 +contributor|2390365 +contributory|2390440 +contributory negligence|2390518 +contrite|2390598 +contritely|2390686 +contriteness|2390727 +contrition|2390799 +contrivance|2390871 +contrive|2391161 +contrived|2391359 +contriver|2391437 +control|2391525 +control account|2392289 +control board|2392364 +control center|2392448 +control character|2392486 +control circuit|2392553 +control condition|2392635 +control experiment|2392689 +control freak|2392744 +control function|2392778 +control grid|2392832 +control key|2392869 +control operation|2392906 +control panel|2392960 +control rod|2393044 +control room|2393069 +control stick|2393096 +control stock|2393140 +control surface|2393169 +control system|2393226 +control tower|2393257 +controllable|2393286 +controlled|2393330 +controlled substance|2393525 +controller|2393560 +controllership|2393724 +controlling|2393803 +controlling interest|2393833 +controversial|2393878 +controversialist|2393989 +controversially|2394086 +controversy|2394122 +controvert|2394264 +contumacious|2394352 +contumaciously|2394388 +contumacy|2394434 +contumelious|2394518 +contumeliously|2394554 +contumely|2394633 +contuse|2394712 +contused|2394749 +contusion|2394795 +contusioned|2394873 +conundrum|2394919 +conurbation|2394973 +conuropsis|2395033 +conuropsis carolinensis|2395092 +convalesce|2395223 +convalescence|2395298 +convalescent|2395351 +convallaria|2395451 +convallaria majalis|2395523 +convallariaceae|2395638 +convect|2395724 +convection|2395751 +convector|2395844 +convene|2395877 +convener|2395958 +convenience|2395983 +convenience food|2396294 +convenience store|2396325 +conveniences|2396363 +convenient|2396826 +conveniently|2396986 +convening|2397015 +convent|2397075 +conventicle|2397138 +convention|2397263 +conventional|2397457 +conventionalisation|2397838 +conventionalise|2397911 +conventionalised|2397972 +conventionalism|2398051 +conventionality|2398113 +conventionalization|2398225 +conventionalize|2398298 +conventionalized|2398402 +conventioneer|2398481 +conventual|2398539 +converge|2398610 +convergence|2398733 +convergency|2398963 +convergent|2399062 +convergent strabismus|2399136 +convergent thinker|2399217 +convergent thinking|2399275 +converging|2399356 +converging lens|2399429 +conversance|2399489 +conversancy|2399559 +conversant|2399629 +conversation|2399667 +conversation piece|2399802 +conversation stopper|2399857 +conversational|2399910 +conversational partner|2399954 +conversationalist|2400027 +conversationally|2400109 +converse|2400158 +conversion|2400270 +conversion disorder|2400662 +conversion factor|2400807 +conversion hysteria|2400841 +conversion reaction|2400986 +converso|2401131 +convert|2401174 +converted|2401576 +converter|2401624 +convertibility|2401660 +convertible|2401751 +convertible bond|2402019 +convertible security|2402067 +convertor|2402130 +convex|2402166 +convex lens|2402351 +convex polygon|2402411 +convex polyhedron|2402459 +convex shape|2402497 +convexity|2402535 +convexness|2402637 +convexo-concave|2402713 +convexo-convex|2402753 +convey|2402822 +conveyable|2403141 +conveyance|2403220 +conveyance of title|2403516 +conveyancer|2403601 +conveyancing|2403638 +conveyed|2403723 +conveyer|2403746 +conveyer belt|2403852 +conveying|2403924 +conveyor|2404009 +conveyor belt|2404115 +convict|2404187 +convict fish|2404305 +convicted|2404465 +convictfish|2404501 +conviction|2404580 +convince|2404720 +convinced|2404764 +convincible|2404827 +convincing|2404893 +convincingness|2405012 +convivial|2405060 +conviviality|2405098 +convocation|2405210 +convoke|2405306 +convolute|2405338 +convoluted|2405468 +convolution|2405576 +convolution of broca|2405745 +convolve|2405898 +convolvulaceae|2405954 +convolvulus|2406069 +convolvulus arvensis|2406095 +convolvulus scammonia|2406189 +convolvulus sepium|2406263 +convoy|2406371 +convulse|2406494 +convulsion|2406774 +convulsive|2406970 +convulsively|2407032 +cony|2407070 +conyza|2407270 +conyza canadensis|2407326 +coo|2407433 +cooccur|2407500 +cooccur with|2407556 +cooccurring|2407667 +cooing|2407781 +cook|2407825 +cook out|2408194 +cook strait|2408227 +cook up|2408273 +cookbook|2408411 +cooke|2408496 +cooked|2408607 +cooked-over|2408875 +cooker|2408934 +cookery|2408975 +cookery book|2409028 +cookfire|2409113 +cookhouse|2409136 +cookie|2409207 +cookie cutter|2409315 +cookie jar|2409354 +cookie jar reserve|2409388 +cookie sheet|2409431 +cookie-cutter|2409287 +cooking|2409478 +cooking apple|2409531 +cooking chocolate|2409560 +cooking oil|2409631 +cooking pan|2409670 +cooking stove|2409720 +cooking utensil|2409801 +cookout|2409851 +cookstove|2409875 +cookware|2409948 +cooky|2409998 +cooky jar|2410052 +cool|2410086 +cool down|2410595 +cool it|2410709 +cool jazz|2410802 +cool off|2410826 +cool one's heels|2410971 +coolant|2411019 +coolant system|2411048 +cooler|2411095 +cooley's anaemia|2411220 +cooley's anemia|2411384 +coolheaded|2411547 +coolidge|2411591 +coolie|2411734 +cooling|2411770 +cooling system|2411869 +cooling tower|2411950 +coolly|2411996 +coolness|2412036 +coolwart|2412237 +cooly|2412340 +coon|2412376 +coon bear|2412555 +coon cat|2412636 +coondog|2412834 +coonhound|2412861 +coonskin|2412896 +coonskin cap|2412931 +coontie|2412966 +coop|2413035 +coop in|2413115 +coop up|2413148 +cooper|2413181 +cooper union|2413531 +cooper union for the advancement of science and art|2413629 +cooper's hawk|2413458 +cooperate|2413766 +cooperation|2413827 +cooperative|2413885 +cooperatively|2414121 +cooperativeness|2414172 +cooperator|2414261 +cooperstown|2414320 +coordinate|2414358 +coordinate axis|2414549 +coordinate bond|2414579 +coordinate clause|2414630 +coordinate geometry|2414664 +coordinate system|2414740 +coordinated|2414864 +coordinated universal time|2414957 +coordinating|2415058 +coordinating conjunction|2415106 +coordination|2415194 +coordination compound|2415286 +coordinative|2415352 +coordinator|2415387 +coosa|2415437 +coosa river|2415476 +coot|2415521 +cooter|2415540 +cootie|2415595 +cop|2415661 +cop out|2415844 +copacetic|2415887 +copaiba|2415950 +copaiba balsam|2416006 +copal|2416062 +copaline|2416091 +copalite|2416137 +copartner|2416183 +copartnership|2416210 +copasetic|2416245 +cope|2416308 +cope with|2416410 +copeck|2416497 +copehan|2416548 +copenhagen|2416582 +copepod|2416655 +copepod crustacean|2416702 +copepoda|2416749 +copernican|2416800 +copernican system|2416882 +copernicia|2416963 +copernicia alba|2417041 +copernicia australis|2417151 +copernicia cerifera|2417266 +copernicia prunifera|2417377 +copernicus|2417489 +copesetic|2417621 +copesettic|2417684 +copestone|2417747 +copied|2417842 +copier|2417873 +copilot|2417916 +coping|2417954 +coping saw|2417988 +coping stone|2418032 +coping with|2418089 +copious|2418187 +copiously|2418281 +copiousness|2418334 +coplanar|2418386 +copland|2418427 +copley|2418475 +copolymer|2418540 +copolymerise|2418567 +copolymerize|2418624 +copout|2418681 +copper|2418705 +copper beech|2419172 +copper color|2419292 +copper colored|2419367 +copper glance|2419409 +copper mine|2419451 +copper nose|2419477 +copper oxide|2419611 +copper pyrites|2419639 +copper rockfish|2419684 +copper sulfate|2419738 +copper sulphate|2419826 +copper's nark|2418979 +copper-base alloy|2419046 +copper-bottom|2419085 +copper-bottomed|2419138 +copperhead|2419914 +copperplate|2420012 +coppersmith|2420108 +copperware|2420168 +coppery|2420196 +coppice|2420238 +coppola|2420302 +copra|2420395 +copra oil|2420431 +coprinaceae|2420480 +coprinus|2420546 +coprinus atramentarius|2420601 +coprinus comatus|2420690 +coprolalia|2420782 +coprolith|2420812 +coprophagia|2420866 +coprophagy|2420913 +copse|2420960 +copt|2421024 +coptic|2421074 +coptic church|2421129 +coptis|2421190 +coptis groenlandica|2421248 +coptis trifolia groenlandica|2421373 +copula|2421507 +copular|2421552 +copulate|2421573 +copulation|2421621 +copulative|2421811 +copulative conjunction|2421886 +copulatory|2421930 +copy|2422005 +copy editing|2422280 +copy editor|2422320 +copy out|2422387 +copybook|2422410 +copycat|2422433 +copyedit|2422530 +copyhold|2422577 +copyholder|2422614 +copying|2422652 +copyist|2422690 +copyread|2422733 +copyreader|2422780 +copyright|2422847 +copyright infringement|2422960 +copyrighted|2423041 +copywriter|2423074 +coq au vin|2423103 +coquet|2423128 +coquetry|2423217 +coquette|2423308 +coquettish|2423464 +coquettishly|2423501 +coquilla nut|2423536 +coquille|2423563 +coquilles saint-jacques|2423598 +cor anglais|2423660 +cor pulmonale|2423729 +cora|2423764 +coracan|2423820 +coracias|2423919 +coracias garrulus|2423972 +coraciidae|2424040 +coraciiform bird|2424101 +coraciiformes|2424132 +coracle|2424202 +coragyps|2424230 +coragyps atratus|2424283 +corakan|2424381 +coral|2424480 +coral bean|2424912 +coral bean tree|2424991 +coral bush|2425062 +coral drops|2425123 +coral fungus|2425167 +coral gem|2425196 +coral honeysuckle|2425252 +coral necklace|2425361 +coral pea|2425432 +coral reef|2425456 +coral root|2425481 +coral sea|2425641 +coral snake|2425728 +coral tree|2425856 +coral vine|2425891 +coral-root bittercress|2424608 +coral-wood|2424724 +coralbells|2425939 +coralberry|2425997 +corallorhiza|2426115 +corallorhiza maculata|2426199 +corallorhiza striata|2426282 +corallorhiza trifida|2426363 +coralroot|2426458 +coralwood|2426574 +coralwort|2426681 +corbel|2426797 +corbel arch|2426864 +corbel step|2426890 +corbelled|2426955 +corbett|2427003 +corbie gable|2427242 +corbie-step|2427096 +corbiestep|2427291 +corbina|2427356 +corchorus|2427404 +cord|2427497 +cord grass|2427759 +cordage|2427876 +cordaitaceae|2427929 +cordaitales|2428002 +cordaites|2428065 +cordarone|2428127 +cordate|2428228 +cordate leaf|2428288 +corday|2428322 +corded|2428448 +cordell hull|2428487 +cordgrass|2428548 +cordia|2428584 +cordia alliodora|2428651 +cordia gerascanthus|2428781 +cordial|2428858 +cordial reception|2429012 +cordiality|2429059 +cordially|2429098 +cordierite|2429132 +cordiform|2429160 +cordite|2429220 +corditis|2429256 +cordless|2429301 +cordoba|2429328 +cordon|2429576 +cordon bleu|2429618 +cordon off|2429669 +cordova|2429730 +cordovan|2429946 +cords|2429972 +corduroy|2430248 +corduroys|2430347 +cordwood|2430465 +cordylidae|2430492 +cordyline|2430555 +cordyline australis|2430621 +cordyline terminalis|2430699 +cordylus|2430764 +core|2430820 +core bit|2431295 +core dump|2431336 +core group|2431360 +core out|2431397 +coreference|2431439 +coreferential|2431481 +coregonidae|2431524 +coregonus|2431588 +coregonus artedi|2431644 +coregonus clupeaformis|2431716 +coreid|2431796 +coreid bug|2431868 +coreidae|2431940 +coreligionist|2432000 +coreopsis|2432052 +coreopsis gigantea|2432121 +coreopsis maritima|2432222 +coreopsis tinctoria|2432318 +corer|2432416 +corespondent|2432438 +corgard|2432499 +corgi|2432600 +coriaceous|2432661 +coriander|2432718 +coriander plant|2432937 +coriander seed|2433038 +coriandrum|2433131 +coriandrum sativum|2433197 +coricidin|2433317 +corinth|2433400 +corinthian|2433469 +corinthian order|2433648 +coriolis effect|2433697 +coriolis force|2433791 +corium|2433836 +corixa|2433873 +corixidae|2433925 +cork|2433988 +cork jacket|2434227 +cork oak|2434312 +cork tree|2434357 +cork up|2434454 +corkage|2434496 +corked|2434540 +corker|2434580 +corking|2434652 +corkscrew|2434770 +corkscrew flower|2434835 +corkwood|2434970 +corkwood family|2435033 +corkwood tree|2435126 +corky|2435189 +corm|2435215 +cormorant|2435240 +cormose|2435300 +cormous|2435335 +cormous plant|2435370 +corn|2435421 +corn beef|2435779 +corn belt|2435832 +corn borer|2435866 +corn borer moth|2436000 +corn cake|2436096 +corn campion|2436125 +corn chamomile|2436202 +corn chip|2436299 +corn chowder|2436329 +corn cockle|2436359 +corn dab|2436436 +corn dance|2436483 +corn dodger|2436514 +corn earworm|2436561 +corn exchange|2436665 +corn field|2436697 +corn flake|2436831 +corn fritter|2436874 +corn gluten|2436904 +corn gluten feed|2436932 +corn lily|2436973 +corn liquor|2437009 +corn marigold|2437078 +corn mayweed|2437152 +corn mint|2437404 +corn muffin|2437455 +corn oil|2437487 +corn poppy|2437523 +corn pudding|2437591 +corn salad|2437621 +corn smut|2437663 +corn snake|2437789 +corn snow|2437848 +corn speedwell|2437872 +corn spurrey|2437933 +corn spurry|2437990 +corn sugar|2438047 +corn syrup|2438102 +corn tash|2438134 +corn whiskey|2438180 +corn whisky|2438234 +corn-fed|2435733 +cornaceae|2438288 +cornbread|2438368 +corncob|2438399 +corncrake|2438421 +cornea|2438466 +corneal|2438504 +corneal graft|2438542 +corneal transplant|2438690 +corned|2438838 +corned beef|2438870 +corned beef hash|2438923 +corneille|2438954 +cornel|2439026 +cornelia otis skinner|2439097 +cornelian|2439166 +cornelian cherry|2439216 +cornelis jansen|2439281 +cornelius jansenius|2439395 +cornelius vanderbilt|2439513 +cornell|2439639 +cornell university|2439769 +corneous|2439827 +corner|2439865 +corner kick|2440354 +corner man|2440385 +corner pocket|2440422 +corner post|2440452 +cornerback|2440478 +cornered|2440525 +cornerstone|2440571 +cornet|2440693 +cornetfish|2440734 +cornetist|2440785 +corneum|2440846 +cornfield|2440899 +cornflour|2440952 +cornflower|2440996 +cornflower aster|2441140 +cornhusk|2441203 +cornhusker|2441226 +cornhusker state|2441290 +cornhusking|2441360 +cornice|2441451 +cornish|2441600 +cornish heath|2441687 +cornish pasty|2441754 +cornishman|2441797 +cornishwoman|2441839 +cornmeal|2441887 +cornmeal mush|2441922 +cornpone|2441961 +cornsmut|2441994 +cornstarch|2442039 +cornu|2442083 +cornucopia|2442179 +cornus|2442264 +cornus amomum|2442412 +cornus canadensis|2442504 +cornus florida|2442628 +cornus mas|2442742 +cornus obliqua|2442818 +cornus sanguinea|2442899 +cornus stolonifera|2443025 +cornwall|2443166 +cornwallis|2443200 +corny|2443302 +corokia|2443364 +corolla|2443421 +corollary|2443488 +corona|2443555 +corona borealis|2443971 +corona discharge|2444026 +coronach|2444225 +coronal|2444278 +coronal suture|2444341 +coronary|2444410 +coronary artery|2444825 +coronary artery bypass graft|2444905 +coronary artery disease|2445007 +coronary bypass|2445169 +coronary bypass surgery|2445271 +coronary care unit|2445373 +coronary failure|2445425 +coronary insufficiency|2445515 +coronary occlusion|2445583 +coronary sinus|2445621 +coronary thrombosis|2445681 +coronary-artery disease|2444546 +coronate|2445730 +coronation|2445775 +coroner|2445884 +coronet|2445931 +coroneted|2445982 +coronilla|2446023 +coronilla varia|2446053 +coronion|2446123 +coronoid process|2446160 +coronoid process of the mandible|2446236 +coropuna|2446317 +corot|2446358 +corozo|2446415 +corozo palm|2446458 +corp|2446501 +corporal|2446552 +corporal punishment|2446704 +corporate|2446778 +corporate bond|2446936 +corporate executive|2446982 +corporate finance|2447059 +corporate investor|2447094 +corporate trust|2447130 +corporation|2447202 +corporation law|2447303 +corporeal|2447363 +corporeality|2447512 +corposant|2447567 +corps|2447766 +corps de ballet|2447852 +corps diplomatique|2447905 +corpse|2447975 +corpulence|2448033 +corpulent|2448102 +corpus|2448146 +corpus amygdaloideum|2448266 +corpus callosum|2448339 +corpus christi|2448404 +corpus delicti|2448513 +corpus geniculatum laterale|2448546 +corpus geniculatum mediale|2448623 +corpus luteum|2448698 +corpus mamillare|2448762 +corpus sternum|2448836 +corpus striatum|2448878 +corpuscle|2448940 +corpuscular|2449071 +corpuscular radiation|2449223 +corpuscular theory|2449300 +corpuscular theory of light|2449374 +corpuscular-radiation pressure|2449120 +corrade|2449448 +corral|2449515 +corrasion|2449669 +correct|2449766 +correctable|2450529 +corrected|2450589 +correction|2450689 +correctional|2450987 +correctional institution|2451027 +correctional rehabilitation|2451094 +corrections|2451146 +correctitude|2451625 +corrective|2451725 +correctly|2451826 +correctness|2451857 +correggio|2451937 +corregidor|2452006 +correlate|2452091 +correlated|2452316 +correlation|2452377 +correlation coefficient|2452560 +correlation matrix|2452653 +correlation table|2452688 +correlational|2452735 +correlational analysis|2452783 +correlational statistics|2452837 +correlative|2452894 +correlativity|2453024 +correspond|2453085 +correspondence|2453211 +correspondence course|2453597 +correspondence school|2453679 +correspondent|2453717 +corresponding|2453858 +corrida|2453994 +corridor|2454031 +corrie|2454060 +corrigenda|2454093 +corrigendum|2454159 +corrigible|2454194 +corroborant|2454280 +corroborate|2454314 +corroborated|2454494 +corroborating evidence|2454549 +corroboration|2454590 +corroborative|2454654 +corroboratory|2454825 +corrode|2454996 +corroded|2455066 +corrodentia|2455092 +corroding|2455184 +corrosion|2455270 +corrosive|2455388 +corrosive sublimate|2455479 +corrugate|2455575 +corrugated|2455615 +corrugated board|2455644 +corrugated cardboard|2455719 +corrugated fastener|2455794 +corrugated iron|2455870 +corrugation|2455907 +corrupt|2455957 +corrupted|2456549 +corruptedly|2456618 +corruptibility|2456648 +corruptible|2456683 +corrupting|2456749 +corruption|2456844 +corruptive|2457065 +corruptly|2457120 +corruptness|2457150 +corsage|2457219 +corsair|2457276 +corse|2457372 +corselet|2457443 +corset|2457545 +corsica|2457685 +corsican|2457758 +corsican army|2457798 +corslet|2457922 +cortaderia|2458024 +cortaderia richardii|2458102 +cortaderia selloana|2458206 +cortef|2458274 +cortege|2458384 +cortes|2458464 +cortex|2458567 +cortez|2458674 +cortical|2458777 +cortical area|2458821 +cortical epilepsy|2458872 +cortical potential|2458923 +cortical region|2458987 +corticifugal|2459038 +corticipetal|2459107 +corticium|2459154 +corticium salmonicolor|2459212 +corticium solani|2459294 +corticoafferent|2459362 +corticoefferent|2459409 +corticofugal|2459478 +corticoid|2459547 +corticospinal tract|2459642 +corticosteroid|2459722 +corticosterone|2459817 +corticotrophin|2459856 +corticotropin|2460034 +cortina|2460212 +cortinariaceae|2460248 +cortinarius|2460323 +cortinarius armillatus|2460387 +cortinarius atkinsonianus|2460449 +cortinarius corrugatus|2460517 +cortinarius gentilis|2460579 +cortinarius mutabilis|2460637 +cortinarius semisanguineus|2460725 +cortinarius subfoetidus|2460795 +cortinarius violaceus|2460859 +cortisol|2460919 +cortisone|2461022 +cortland|2461119 +cortone acetate|2461173 +corundom|2461286 +corundum|2461321 +coruscant|2461356 +coruscate|2461482 +coruscation|2461565 +corvee|2461633 +corvette|2461667 +corvidae|2461716 +corvine|2461771 +corvine bird|2461800 +corvus|2461841 +corvus brachyrhyncos|2461921 +corvus corax|2461991 +corvus frugilegus|2462045 +corvus monedula|2462108 +coryanthes|2462174 +corydalidae|2462252 +corydalis|2462321 +corydalis claviculata|2462477 +corydalis sempervirens|2462600 +corydalis solida|2462732 +corydalus|2462819 +corydalus cornutus|2462906 +corylaceae|2463025 +corylopsis|2463118 +corylus|2463178 +corylus americana|2463239 +corylus avellana|2463328 +corylus avellana grandis|2463440 +corylus cornuta|2463560 +corymb|2463646 +corymbose|2463676 +corynebacteriaceae|2463708 +corynebacterium|2463797 +corynebacterium diphtheriae|2463859 +corypha|2463979 +corypha gebanga|2464048 +corypha umbraculifera|2464123 +corypha utan|2464206 +coryphaena equisetis|2464278 +coryphaena hippurus|2464358 +coryphaenidae|2464436 +coryphantha|2464506 +corythosaur|2464534 +corythosaurus|2464612 +coryza|2464690 +cos|2464742 +cos lettuce|2465100 +cosa nostra|2465214 +coscoroba|2465297 +cosec|2465321 +cosecant|2465386 +coseismal|2465451 +coseismic|2465489 +cosey|2465527 +cosh|2465627 +cosher|2465675 +cosign|2465704 +cosignatory|2465788 +cosigner|2465848 +cosily|2465919 +cosimo de medici|2465941 +cosimo the elder|2466052 +cosine|2466163 +cosiness|2466224 +cosmea|2466284 +cosmetic|2466314 +cosmetic dentistry|2466479 +cosmetic surgeon|2466544 +cosmetic surgery|2466621 +cosmetician|2466773 +cosmetics|2466892 +cosmetologist|2467006 +cosmic|2467036 +cosmic background radiation|2467079 +cosmic dust|2467212 +cosmic microwave background|2467239 +cosmic microwave background radiation|2467372 +cosmic radiation|2467505 +cosmic ray|2467541 +cosmic time|2467580 +cosmocampus|2467606 +cosmocampus profundus|2467668 +cosmogenic|2467760 +cosmogenical|2467853 +cosmogeny|2467946 +cosmogonic|2467998 +cosmogonical|2468091 +cosmogony|2468184 +cosmographer|2468236 +cosmographist|2468297 +cosmography|2468358 +cosmolatry|2468417 +cosmologic|2468445 +cosmological|2468569 +cosmological constant|2468691 +cosmologist|2468731 +cosmology|2468785 +cosmonaut|2468856 +cosmopolitan|2468913 +cosmopolite|2469148 +cosmos|2469212 +cosmotron|2469308 +cosponsor|2469339 +coss|2469386 +cossack|2469416 +cosset|2469446 +cost|2469544 +cost accountant|2470195 +cost accounting|2470254 +cost analysis|2470302 +cost cutting|2470334 +cost increase|2470360 +cost ledger|2470418 +cost of capital|2470486 +cost of living|2470541 +cost overrun|2470570 +cost-benefit analysis|2469729 +cost-effective|2469787 +cost-efficient|2469836 +cost-of-living allowance|2469885 +cost-of-living benefit|2469940 +cost-of-living index|2469980 +cost-plus|2470059 +cost-plus contract|2470105 +cost-pull inflation|2470142 +costa|2470597 +costa rica|2470712 +costa rican|2470815 +costa rican colon|2470932 +costa rican monetary unit|2471009 +costal|2471084 +costal cartilage|2471107 +costal groove|2471157 +costalgia|2471197 +costanoan|2471252 +costate|2471316 +costermonger|2471369 +costia|2471444 +costia necatrix|2471557 +costiasis|2471686 +costing|2471720 +costive|2471753 +costless|2471799 +costliness|2471861 +costly|2471904 +costmary|2471988 +costoaxillary vein|2472129 +costochondritis|2472187 +costs|2472239 +costume|2472373 +costume designer|2472610 +costumed|2472708 +costumer|2472739 +costumier|2472837 +costus oil|2472935 +costusroot|2472982 +cosy|2473057 +cot|2473192 +cot death|2473276 +cotacachi|2473371 +cotan|2473408 +cotangent|2473474 +cote|2473540 +cote d'azur|2473562 +cote d'ivoire|2473624 +cote d'ivoire franc|2473730 +cotenant|2473803 +coterie|2473828 +coterminous|2473903 +cotes de provence|2473962 +cothromboplastin|2474017 +cotilion|2474116 +cotillion|2474198 +cotinga|2474279 +cotingidae|2474368 +cotinus|2474429 +cotinus americanus|2474499 +cotinus coggygria|2474616 +cotinus obovatus|2474707 +cotoneaster|2474822 +cotoneaster dammeri|2474854 +cotoneaster horizontalis|2474915 +cotonou|2474986 +cotopaxi|2475045 +cotswold|2475080 +cotswold hills|2475133 +cotswolds|2475188 +cottage|2475280 +cottage cheese|2475312 +cottage dweller|2475382 +cottage industry|2475453 +cottage pie|2475500 +cottage pink|2475526 +cottage tent|2475595 +cottage tulip|2475642 +cottager|2475671 +cottar|2475742 +cotter|2475841 +cotter pin|2475974 +cottidae|2476008 +cottier|2476063 +cotton|2476106 +cotton ball|2476376 +cotton bollworm|2476411 +cotton cake|2476515 +cotton candy|2476560 +cotton cloth|2476610 +cotton flannel|2476669 +cotton gin|2476738 +cotton grass|2476770 +cotton mill|2476810 +cotton mouse|2476844 +cotton on|2476899 +cotton plant|2477034 +cotton rat|2477074 +cotton rose|2477141 +cotton rush|2477260 +cotton stainer|2477300 +cotton strain|2477345 +cotton thistle|2477390 +cotton up|2477492 +cotton wool|2477564 +cotton-seed tree|2476270 +cottonmouth|2477616 +cottonmouth moccasin|2477706 +cottonseed|2477796 +cottonseed cake|2477824 +cottonseed oil|2477869 +cottontail|2477911 +cottontail rabbit|2477979 +cottonweed|2478047 +cottonwick|2478169 +cottonwood|2478214 +cottony|2478337 +cottrell precipitator|2478359 +cottus|2478443 +cotula|2478490 +cotula coronopifolia|2478546 +coturnix|2478618 +coturnix communis|2478671 +coturnix coturnix|2478766 +cotyledon|2478861 +cotyloid|2478900 +cotyloid cavity|2478948 +cotyloid joint|2478991 +cotyloidal|2479156 +coucal|2479204 +couch|2479227 +couch grass|2479417 +couch potato|2479546 +couchant|2479605 +couchette|2479631 +coude system|2479662 +coude telescope|2479731 +cougar|2479800 +cough|2479884 +cough drop|2480051 +cough out|2480102 +cough up|2480189 +coughing|2480304 +coughing up|2480385 +coulisse|2480448 +coulomb|2480495 +coulomb's law|2480607 +coulter|2480662 +coumadin|2480692 +coumara nut|2480779 +coumarone|2480816 +coumarone resin|2480938 +coumarone-indene resin|2480882 +coumarouna|2480994 +coumarouna odorata|2481084 +council|2481185 +council bluffs|2481273 +council board|2481317 +council chamber|2481377 +council member|2481417 +council of chalcedon|2481459 +council of economic advisors|2481518 +council of trent|2481602 +council on environmental policy|2481653 +council table|2481743 +council tax|2481803 +councillor|2481846 +councillorship|2481888 +councilman|2481981 +councilorship|2482027 +councilwoman|2482120 +counsel|2482168 +counsel to the crown|2482387 +counseling|2482448 +counselling|2482548 +counsellor|2482648 +counsellorship|2482808 +counselor|2482901 +counselor-at-law|2483063 +counselorship|2483151 +count|2483244 +count alessandro di cagliostro|2483713 +count alessandro volta|2483849 +count down|2483993 +count ferdinand von zeppelin|2484019 +count fleet|2484125 +count lev nikolayevitch tolstoy|2484171 +count maurice maeterlinck|2484278 +count nikolaus ludwig von zinzendorf|2484372 +count noun|2484512 +count off|2484537 +count on|2484565 +count out|2484631 +count palatine|2484658 +count per minute|2484688 +count rumford|2484758 +countable|2484832 +countdown|2484895 +countenance|2484968 +counter|2485213 +counter check|2486023 +counter conditioning|2486178 +counter reformation|2486221 +counter tube|2486327 +counter-drill|2485740 +counter-revolutionist|2485774 +counter-sabotage|2485977 +counteract|2486404 +counteraction|2486652 +counteractive|2486728 +counterargument|2486887 +counterattack|2486931 +counterattraction|2487057 +counterbalance|2487095 +counterbalanced|2487463 +counterbalancing|2487511 +counterbattery fire|2487580 +counterblast|2487621 +counterblow|2487658 +counterbombardment|2487684 +counterbore|2487724 +counterchallenge|2487777 +counterchange|2487813 +countercharge|2487878 +countercheck|2487933 +counterclaim|2488110 +counterclockwise|2488179 +counterclockwise rotation|2488318 +countercoup|2488395 +counterculture|2488449 +countercurrent|2488481 +counterdemonstration|2488588 +counterdemonstrator|2488657 +counterespionage|2488709 +counterexample|2488755 +counterfactual|2488813 +counterfactuality|2488866 +counterfeit|2488901 +counterfeiter|2489232 +counterfire|2489312 +counterfoil|2489345 +counterglow|2489389 +counterinsurgency|2489460 +counterintelligence|2489525 +counterintuitive|2489612 +counterirritant|2489651 +counterman|2489722 +countermand|2489783 +countermarch|2489917 +countermeasure|2489990 +countermine|2490027 +countermortar fire|2490135 +countermove|2490175 +counteroffensive|2490240 +counteroffer|2490292 +counterpane|2490329 +counterpart|2490431 +counterperson|2490534 +counterplan|2490595 +counterplay|2490650 +counterplea|2490692 +counterplot|2490718 +counterpoint|2490785 +counterpoise|2490894 +counterpoised|2491035 +counterpoison|2491083 +counterpose|2491136 +counterpreparation fire|2491206 +counterproductive|2491251 +counterproposal|2491286 +counterpunch|2491320 +counterreformation|2491383 +counterrevolution|2491423 +counterrevolutionary|2491461 +counterrevolutionist|2491611 +countershot|2491733 +countersign|2491768 +countersignature|2491905 +countersink|2491953 +countersink bit|2492039 +counterspy|2492092 +counterstain|2492138 +counterstrike|2492166 +countersubversion|2492217 +countersuit|2492264 +countertenor|2492315 +counterterrorism|2492398 +counterterrorist center|2492440 +countertop|2492565 +countertransference|2492594 +countervail|2492636 +countervailing|2492774 +countervailing duty|2492896 +counterweight|2492937 +counterwoman|2493077 +countess|2493138 +counting|2493180 +countinghouse|2493271 +countless|2493317 +countlessness|2493459 +countrified|2493512 +country|2493558 +country and western|2494138 +country borage|2494218 +country club|2494322 +country dancing|2494380 +country doctor|2494480 +country house|2494528 +country music|2494557 +country of origin|2494637 +country store|2494741 +country-bred|2493877 +country-dance|2493905 +country-style|2494109 +countryfied|2494849 +countryman|2494895 +countryseat|2494940 +countryside|2495001 +countrywide|2495041 +countrywoman|2495084 +counts/minute|2495131 +county|2495201 +county agent|2495305 +county council|2495389 +county courthouse|2495500 +county line|2495544 +county palatine|2495587 +county seat|2495681 +county town|2495725 +countywide|2495762 +coup|2495793 +coup d'etat|2495863 +coup d'oeil|2495918 +coup de grace|2495978 +coup de main|2496041 +coup de theatre|2496109 +coupe|2496198 +couperin|2496250 +couple|2496313 +couple on|2496731 +couple up|2496774 +coupled|2496817 +coupler|2496893 +couplet|2496937 +coupling|2497052 +coupon|2497262 +coupon bond|2497342 +courage|2497397 +courageous|2497444 +courageously|2497673 +courageousness|2497702 +courbaril|2497749 +courbaril copal|2497806 +courbet|2497837 +coureur de bois|2497886 +courgette|2497919 +courier|2498015 +courlan|2498061 +course|2498112 +course catalog|2498640 +course catalogue|2498710 +course credit|2498780 +course of action|2498821 +course of instruction|2498861 +course of lectures|2498982 +course of study|2499061 +course session|2499244 +courser|2499300 +coursework|2499354 +coursing|2499379 +court|2499410 +court card|2499966 +court favor|2500022 +court favour|2500130 +court game|2500238 +court of appeals|2500272 +court of assize|2500354 +court of assize and nisi prius|2500444 +court of chancery|2500534 +court of domestic relations|2500596 +court of saint james's|2500697 +court order|2500770 +court plaster|2500810 +court tennis|2500875 +court-martial|2499887 +courtelle|2500941 +courteous|2500978 +courteously|2501074 +courtesan|2501156 +courtesy|2501241 +courthouse|2501344 +courtier|2501397 +courting|2501441 +courtliness|2501504 +courtly|2501534 +courtly love|2501584 +courtroom|2501639 +courtship|2501669 +courtyard|2501732 +couscous|2501780 +cousin|2501833 +cousin-german|2501906 +cousinly|2501979 +cousteau|2502016 +couth|2502100 +couthie|2502123 +couthy|2502156 +couture|2502189 +couturier|2502218 +couvade|2502288 +couverture|2502325 +covalence|2502355 +covalency|2502400 +covalent|2502445 +covalent bond|2502478 +covariance|2502520 +cove|2502549 +coven|2502588 +covenant|2502612 +coventry|2502739 +cover|2502842 +cover charge|2504383 +cover crop|2504447 +cover for|2504480 +cover girl|2504507 +cover glass|2504562 +cover letter|2504618 +cover plate|2504671 +cover slip|2504701 +cover song|2504757 +cover up|2504807 +cover version|2504844 +cover-up|2504335 +coverage|2504894 +coverall|2505017 +covered|2505054 +covered bridge|2505520 +covered couch|2505556 +covered option|2505586 +covered smut|2505617 +covered stadium|2505656 +covered stand|2505734 +covered wagon|2505781 +covering|2505874 +covering fire|2506088 +covering letter|2506129 +covering material|2506182 +coverlet|2506227 +covert|2506306 +covert operation|2506798 +covet|2506853 +coveted|2506882 +covetous|2506940 +covetously|2507047 +covetousness|2507114 +covey|2507282 +coville|2507331 +cow|2507403 +cow barn|2507781 +cow chip|2507910 +cow cockle|2507975 +cow dung|2508068 +cow lily|2508133 +cow man|2508205 +cow manure|2508361 +cow oak|2508388 +cow parsley|2508460 +cow parsnip|2508538 +cow pasture|2508611 +cow pen|2508673 +cow pie|2508712 +cow pony|2508837 +cow shark|2508887 +cow's head|2507580 +cow-nosed ray|2507643 +cow-tongue fern|2507707 +cowage|2508947 +coward|2509121 +cowardice|2509312 +cowardliness|2509351 +cowardly|2509390 +cowbarn|2509636 +cowbell|2509684 +cowberry|2509706 +cowbird|2509880 +cowboy|2509927 +cowboy boot|2510088 +cowboy boots|2510127 +cowboy hat|2510190 +cowcatcher|2510241 +cowed|2510305 +cower|2510366 +cowfish|2510458 +cowgirl|2510517 +cowhand|2510601 +cowherb|2510688 +cowherd|2510781 +cowhide|2510868 +cowhouse|2510984 +cowl|2511032 +cowl muscle|2511139 +cowled|2511238 +cowlick|2511267 +cowling|2511289 +cowman|2511371 +cownose ray|2511458 +cowpea|2511522 +cowpea plant|2511681 +cowpen daisy|2511782 +cowpens|2511933 +cowper|2511991 +cowper's gland|2512098 +cowpie|2512183 +cowpoke|2512227 +cowpox|2512314 +cowpuncher|2512358 +cowrie|2512445 +cowry|2512486 +cows|2512527 +cows' milk|2512735 +cowshed|2512760 +cowskin|2512808 +cowslip|2512841 +cox|2513013 +cox's orange pippin|2513112 +cox-1|2513168 +cox-2|2513225 +cox-2 inhibitor|2513282 +coxa|2513364 +coxcomb|2513516 +coxsackie virus|2513659 +coxsackievirus|2513808 +coxswain|2513860 +coy|2513909 +coydog|2513978 +coyness|2514039 +coyol|2514080 +coyol palm|2514138 +coyote|2514196 +coyote brush|2514362 +coyote bush|2514455 +coyote state|2514548 +coypu|2514635 +cozen|2514703 +cozenage|2514826 +cozey|2514867 +cozie|2514967 +cozily|2515067 +coziness|2515089 +cozy|2515149 +cozy up|2515331 +cpa|2515403 +cpi|2515482 +cpr|2515665 +cps|2515810 +cpu|2515874 +cpu board|2516008 +cr|2516088 +crab|2516152 +crab apple|2517120 +crab cactus|2517326 +crab cocktail|2517419 +crab grass|2517451 +crab legs|2517581 +crab louis|2517614 +crab louse|2517651 +crab nebula|2517724 +crab-eating dog|2516763 +crab-eating fox|2516834 +crab-eating macaque|2516905 +crab-eating opossum|2516966 +crab-eating raccoon|2517010 +crab-eating seal|2517074 +crabapple|2517767 +crabapple jelly|2517894 +crabbed|2517931 +crabbedness|2518020 +crabbiness|2518073 +crabby|2518126 +crabby person|2518215 +crabeater seal|2518279 +crabgrass|2518325 +crabmeat|2518374 +crabs|2518407 +crabwise|2518859 +cracidae|2518894 +crack|2518949 +crack addict|2519848 +crack down|2519902 +crack of doom|2519988 +crack shot|2520165 +crack up|2520220 +crack willow|2520384 +crack-up|2519811 +crackbrained|2520467 +crackdown|2520504 +cracked|2520562 +cracked-wheat bread|2520831 +cracker|2520891 +cracker bonbon|2521184 +cracker box|2521262 +cracker crumbs|2521289 +cracker-barrel|2521138 +crackerberry|2521319 +crackerjack|2521425 +crackers|2521555 +cracking|2521736 +crackle|2521980 +crackle china|2522182 +crackleware|2522231 +crackling|2522280 +cracklings|2522325 +crackpot|2522399 +cracksman|2522510 +cracow|2522567 +cracticidae|2522633 +cracticus|2522697 +cradle|2522753 +cradle cap|2523035 +cradlesong|2523066 +craft|2523135 +craft fair|2523487 +craft union|2523519 +crafter|2523595 +craftily|2523630 +craftiness|2523698 +craftsman|2523861 +craftsmanship|2524002 +crafty|2524099 +crag|2524188 +cragfast|2524222 +cragged|2524246 +craggy|2524303 +cragsman|2524391 +craig ventner|2524430 +craigie|2524503 +crake|2524604 +cram|2524624 +cram full|2524839 +crambe|2524917 +crambe maritima|2524975 +crammer|2525056 +cramp|2525205 +cramp iron|2525399 +crampbark|2525436 +cramped|2525557 +crampfish|2525587 +crampon|2525640 +crampoon|2525765 +cran|2525889 +cranberry|2526023 +cranberry bush|2526072 +cranberry culture|2526183 +cranberry heath|2526218 +cranberry juice|2526336 +cranberry sauce|2526385 +cranberry tree|2526420 +cranch|2526635 +crane|2526678 +crane fly|2526897 +crane's bill|2526855 +cranelike|2526985 +cranesbill|2527011 +crangon|2527053 +crangonidae|2527108 +cranial|2527177 +cranial cavity|2527201 +cranial index|2527272 +cranial nerve|2527330 +cranial orbit|2527366 +craniata|2527448 +craniate|2527533 +craniologist|2527571 +craniometer|2527627 +craniometric|2527703 +craniometric point|2527761 +craniometrical|2527798 +craniometry|2527856 +craniotomy|2527899 +cranium|2527992 +crank|2528036 +crank call|2528627 +crank handle|2528678 +crank letter|2528730 +crank out|2528767 +crank up|2528816 +crankcase|2528887 +crankiness|2528914 +crankshaft|2528983 +cranky|2529024 +crannied|2529170 +cranny|2529197 +crap|2529282 +crap game|2529637 +crap shooting|2529715 +crap up|2529793 +crap-shooter|2529572 +crapaud|2529860 +crape|2529978 +crape fern|2530218 +crape jasmine|2530344 +crape myrtle|2530508 +crapette|2530588 +crapper|2530638 +crappie|2530714 +crappy|2530766 +craps|2530827 +crapshoot|2531140 +crapshooter|2531243 +crapulence|2531272 +crapulent|2531356 +crapulous|2531396 +crash|2531454 +crash barrier|2532102 +crash course|2532133 +crash dive|2532239 +crash helmet|2532267 +crash land|2532296 +crash landing|2532330 +crash program|2532386 +crash programme|2532492 +crash-dive|2532064 +crasher|2532598 +crashing|2532674 +craspedia|2532751 +crass|2532816 +crassitude|2532841 +crassness|2532901 +crassostrea|2532961 +crassula|2533026 +crassulaceae|2533080 +crataegus|2533165 +crataegus aestivalis|2533228 +crataegus apiifolia|2533310 +crataegus biltmoreana|2533426 +crataegus calpodendron|2533504 +crataegus coccinea|2533626 +crataegus coccinea mollis|2533716 +crataegus crus-galli|2533825 +crataegus laevigata|2533922 +crataegus marshallii|2534036 +crataegus mollis|2534153 +crataegus monogyna|2534253 +crataegus oxyacantha|2534330 +crataegus oxycantha|2534410 +crataegus pedicellata|2534524 +crataegus tomentosa|2534617 +crate|2534736 +crateful|2534810 +crater|2534847 +crater lake national park|2534981 +crateva|2535056 +craton|2535117 +craunch|2535144 +cravat|2535187 +crave|2535212 +craved|2535289 +craven|2535320 +cravenness|2535394 +craving|2535437 +craw|2535461 +crawdad|2535510 +crawdaddy|2535627 +crawfish|2535699 +crawfish out|2535975 +crawford|2536072 +crawl|2536193 +crawl in|2536467 +crawl space|2536569 +crawler|2536688 +crawling|2536944 +crawlspace|2537001 +crax|2537039 +crayfish|2537080 +crayon|2537324 +craze|2537381 +crazed|2537529 +crazily|2537573 +craziness|2537615 +crazy|2537777 +crazy bone|2538106 +crazy glue|2538178 +crazy horse|2538238 +crazy house|2538329 +crazy quilt|2538566 +crazy weed|2538613 +crazyweed|2538757 +creak|2538820 +creakily|2538911 +creaking|2538949 +creakingly|2539007 +creaky|2539045 +cream|2539191 +cream cheese|2539588 +cream of tartar|2539617 +cream off|2539682 +cream pitcher|2539796 +cream puff|2539840 +cream sauce|2539870 +cream soda|2539927 +cream violet|2539958 +cream-colored courser|2539438 +cream-of-tartar tree|2539494 +creamcups|2540028 +creamer|2540078 +creamery|2540122 +creaminess|2540155 +creamy|2540195 +crease|2540234 +crease-resistant|2540607 +creased|2540705 +creaseless|2540748 +creaseproof|2540785 +creashak|2540883 +create|2541052 +create by mental act|2541148 +create from raw material|2541206 +create from raw stuff|2541274 +create mentally|2541342 +create verbally|2541400 +creatin|2541437 +creatine|2541493 +creatine phosphate|2541549 +creatine phosphoric acid|2541635 +creating by mental acts|2541721 +creating by removal|2541781 +creating from raw materials|2541837 +creation|2541901 +creation science|2542236 +creationism|2542274 +creative|2542358 +creative activity|2542543 +creative person|2542588 +creative thinker|2542628 +creative thinking|2542690 +creativeness|2542755 +creativity|2542820 +creator|2542885 +creature|2543044 +creature comforts|2543207 +creche|2543325 +crecy|2543401 +cred|2543453 +credal|2543537 +credence|2543623 +credendum|2543718 +credential|2543766 +credentialed|2543857 +credentials|2543913 +credenza|2544081 +credibility|2544133 +credible|2544189 +credibleness|2544321 +credibly|2544377 +credit|2544424 +credit account|2544881 +credit analyst|2544988 +credit application|2545020 +credit bureau|2545060 +credit card|2545090 +credit crunch|2545215 +credit entry|2545302 +credit hour|2545367 +credit line|2545423 +credit order|2545546 +credit side|2545603 +credit system|2545674 +credit union|2545704 +creditable|2545796 +creditably|2545823 +credited|2545854 +creditor|2545885 +credits|2545956 +creditworthiness|2546379 +creditworthy|2546432 +credo|2546485 +credulity|2546569 +credulous|2546620 +credulously|2546753 +credulousness|2546785 +cree|2546846 +creed|2546939 +creedal|2547135 +creek|2547221 +creek bed|2547330 +creek confederacy|2547370 +creel|2547452 +creep|2547485 +creep feed|2547835 +creep in|2547870 +creep up|2547917 +creeper|2547992 +creeping|2548144 +creeping bellflower|2548201 +creeping bent|2548275 +creeping bentgrass|2548363 +creeping bugle|2548451 +creeping buttercup|2548505 +creeping charlie|2548631 +creeping crowfoot|2548733 +creeping fern|2548859 +creeping jenny|2548928 +creeping juniper|2549028 +creeping lily|2549085 +creeping oxalis|2549175 +creeping snowberry|2549266 +creeping soft grass|2549352 +creeping spike rush|2549401 +creeping st john's wort|2549462 +creeping thistle|2549554 +creeping thyme|2549640 +creeping willow|2549698 +creeping windmill grass|2549755 +creeping wintergreen|2549844 +creeping wood sorrel|2549977 +creeping zinnia|2550068 +creeps|2550137 +creepy|2550389 +creepy-crawlies|2550445 +creepy-crawly|2550547 +creese|2550641 +cremains|2550684 +cremate|2550736 +cremation|2550773 +cremation chamber|2550805 +crematorium|2550862 +crematory|2550962 +creme anglais|2551064 +creme brulee|2551095 +creme caramel|2551125 +creme de cacao|2551156 +creme de fraise|2551196 +creme de menthe|2551237 +cremona|2551278 +crenate|2551332 +crenate leaf|2551374 +crenated|2551417 +crenation|2551459 +crenature|2551531 +crenel|2551603 +crenelate|2551755 +crenelated|2551888 +crenelation|2552024 +crenellate|2552132 +crenellated|2552264 +crenellation|2552399 +crenelle|2552506 +crenulate|2552598 +crenulated|2552634 +creole|2552670 +creole-fish|2552815 +creon|2552864 +creosote|2552900 +creosote bush|2552998 +crepe|2553070 +crepe de chine|2553285 +crepe fern|2553336 +crepe flower|2553385 +crepe gardenia|2553465 +crepe jasmine|2553629 +crepe marocain|2553793 +crepe myrtle|2553838 +crepe paper|2553918 +crepe rubber|2553951 +crepe suzette|2554016 +crepis|2554080 +crepitate|2554136 +crepitation|2554170 +crepitation rale|2554215 +crepuscle|2554270 +crepuscular|2554364 +crepuscule|2554390 +crescendo|2554484 +crescent|2554563 +crescent roll|2555115 +crescent-cell anaemia|2554648 +crescent-cell anemia|2554852 +crescent-shaped|2555056 +crescentia|2555157 +crescentia cujete|2555225 +cresol|2555298 +cress|2555335 +cress green|2555421 +cress plant|2555471 +cresson|2555525 +crest|2555575 +crested|2555777 +crested cariama|2555887 +crested coral root|2555955 +crested myna|2556029 +crested penguin|2556115 +crested screamer|2556160 +crested swift|2556195 +crested wheat grass|2556244 +crested wheatgrass|2556363 +crestfallen|2556482 +crestless wave|2556543 +cretaceous|2556591 +cretaceous period|2556710 +cretan|2556791 +cretan dittany|2556823 +crete|2556932 +crete dittany|2556966 +cretin|2557075 +cretinism|2557156 +cretinous|2557190 +cretonne|2557239 +creutzfeldt-jakob disease|2557287 +crevalle jack|2557422 +crevasse|2557478 +crevice|2557533 +crew|2557654 +crew cut|2557799 +crew member|2557833 +crew neck|2557892 +crew neckline|2557934 +crewelwork|2557976 +crewet|2558017 +crewman|2558046 +crex|2558165 +crex crex|2558206 +crib|2558261 +crib death|2558467 +cribbage|2558562 +cribbage board|2558601 +cricetidae|2558641 +cricetus|2558704 +cricetus cricetus|2558759 +crichton|2558829 +cricify|2558927 +crick|2559008 +cricket|2559154 +cricket ball|2559312 +cricket bat|2559357 +cricket equipment|2559400 +cricket frog|2559459 +cricket match|2559511 +cricket-bat willow|2559245 +cricketer|2559540 +crier|2559572 +crime|2559756 +crime rate|2559839 +crime syndicate|2559864 +crime wave|2559943 +crimea|2559968 +crimea-congo hemorrhagic fever|2560001 +crimean war|2560162 +criminal|2560207 +criminal congress|2560393 +criminal contempt|2560578 +criminal conversation|2560623 +criminal court|2560702 +criminal intelligence services of canada|2560752 +criminal investigation command|2560882 +criminal law|2560980 +criminal negligence|2561013 +criminal possession|2561109 +criminal prosecution|2561159 +criminal record|2561235 +criminal suit|2561280 +criminalisation|2561333 +criminalise|2561408 +criminalism|2561520 +criminality|2561583 +criminalization|2561646 +criminalize|2561721 +criminally|2561859 +criminalness|2561893 +criminate|2561956 +criminative|2562078 +criminatory|2562163 +criminological|2562248 +criminologist|2562281 +criminology|2562339 +crimp|2562370 +crimper|2562603 +crimson|2562705 +crimson clover|2562996 +cringe|2563071 +cringing|2563185 +cringle|2563250 +crinion|2563330 +crinkle|2563362 +crinkle root|2563859 +crinkle-root|2563566 +crinkled|2564152 +crinkleroot|2564207 +crinkly|2564338 +crinoid|2564393 +crinoidea|2564433 +crinoline|2564484 +criollo|2564594 +cripple|2564656 +crippled|2564744 +crippling|2564791 +crisis|2564847 +crisis intervention|2564898 +crisp|2564941 +crispate|2565290 +crisphead lettuce|2565314 +crispin|2565373 +crispiness|2565437 +crisply|2565493 +crispness|2565517 +crispy|2565607 +crisscross|2565636 +crisscrossed|2565839 +cristal|2565905 +cristobal balenciaga|2566002 +cristobal colon|2566117 +cristobalite|2566217 +cristoforo colombo|2566247 +criterial|2566350 +criterion|2566390 +criterional|2566504 +crith|2566544 +critic|2566578 +critical|2566695 +critical analysis|2567251 +critical angle|2567318 +critical appraisal|2567377 +critical mass|2567444 +critical point|2567486 +critical review|2567537 +criticality|2567622 +criticalness|2567717 +criticise|2567770 +criticism|2567869 +criticize|2568042 +critique|2568141 +critter|2568300 +critter sitter|2568365 +crius|2568425 +crixivan|2568452 +crna gora|2568511 +cro|2568623 +cro-magnon|2568705 +croak|2568749 +croaker|2569078 +croaking|2569140 +croaky|2569233 +croat|2569290 +croatia|2569325 +croatian|2569412 +crocanthemum canadensei|2569498 +crocethia|2569639 +crocethia alba|2569695 +crochet|2569755 +crochet hook|2569888 +crochet needle|2569932 +crochet stitch|2569976 +crocheting|2570007 +crock|2570076 +crock pot|2570231 +crock up|2570267 +crocked|2570342 +crockery|2570573 +crocket|2570610 +crocketed|2570650 +crockett|2570687 +crocodile|2570823 +crocodile bird|2570874 +crocodile river|2570926 +crocodile tears|2570981 +crocodilia|2571028 +crocodilian|2571117 +crocodilian reptile|2571182 +crocodilus|2571247 +crocodylia|2571337 +crocodylidae|2571426 +crocodylus|2571496 +crocodylus niloticus|2571586 +crocodylus porosus|2571680 +crocolite|2571753 +crocus|2571780 +crocus sativus|2571813 +crocuta|2571882 +crocuta crocuta|2571934 +croesus|2572017 +croft|2572107 +crofter|2572127 +crohn|2572157 +crohn's disease|2572235 +croissant|2572347 +croix de guerre|2572389 +cromlech|2572483 +cromorne|2572538 +cromwell|2572610 +cromwellian|2572716 +cronartium|2572801 +cronartium ribicola|2572862 +crone|2572941 +cronk|2572991 +cronus|2573082 +crony|2573111 +cronyism|2573165 +croo monkey|2573221 +crook|2573282 +crookback|2573438 +crookbacked|2573566 +crooked|2573660 +crooked-stemmed aster|2574215 +crookedly|2574252 +crookedness|2574281 +crookes|2574455 +crookes radiometer|2574534 +crookes tube|2574592 +crookneck|2574648 +crookneck squash|2574715 +croon|2574782 +crooner|2574802 +crooning|2574865 +crop|2574928 +crop failure|2575416 +crop out|2575446 +crop up|2575478 +crop-dusting|2575340 +cropped|2575513 +cropper|2575607 +croquet|2575697 +croquet ball|2575750 +croquet equipment|2575795 +croquet mallet|2575854 +croquette|2575903 +crore|2575927 +crosby|2575956 +crosier|2576072 +cross|2576103 +cross bit|2580008 +cross bun|2580065 +cross country|2580121 +cross dressing|2580149 +cross examine|2580218 +cross hair|2580264 +cross infection|2580300 +cross of calvary|2580355 +cross of lorraine|2580418 +cross off|2580484 +cross one's eyes|2580559 +cross oneself|2580632 +cross out|2580682 +cross product|2580757 +cross question|2580802 +cross section|2580848 +cross street|2580933 +cross thwart|2580962 +cross vine|2581002 +cross wire|2581087 +cross-check|2576977 +cross-classification|2577057 +cross-country|2577155 +cross-country jumping|2577276 +cross-country riding|2577345 +cross-country skiing|2577414 +cross-cultural|2577451 +cross-division|2577482 +cross-dress|2577580 +cross-dresser|2577619 +cross-examination|2577708 +cross-examiner|2577775 +cross-eye|2577859 +cross-eyed|2577940 +cross-fertilisation|2577981 +cross-fertilise|2578150 +cross-fertilization|2578273 +cross-fertilize|2578442 +cross-file|2578565 +cross-grained|2578607 +cross-index|2578665 +cross-leaved heath|2578774 +cross-linguistic|2578847 +cross-link|2578886 +cross-linkage|2578959 +cross-modal|2579012 +cross-ply|2579084 +cross-pollinate|2579112 +cross-pollinating|2579198 +cross-pollination|2579248 +cross-purpose|2579316 +cross-question|2579375 +cross-questioner|2579459 +cross-refer|2579543 +cross-reference|2579604 +cross-section|2579700 +cross-sectional|2579749 +cross-stitch|2579826 +cross-town|2579883 +crossbar|2581123 +crossbeam|2581185 +crossbench|2581235 +crossbencher|2581260 +crossbill|2581293 +crossbones|2581336 +crossbow|2581415 +crossbred|2581437 +crossbreed|2581622 +crossbreeding|2581720 +crosscheck|2581950 +crosscurrent|2582030 +crosscut|2582139 +crosscut saw|2582234 +crosse|2582280 +crossed|2582311 +crossed eye|2582462 +crossfire|2582543 +crosshairs|2582594 +crosshatch|2582641 +crosshatched|2582713 +crosshead|2582750 +crossheading|2582815 +crossing|2582867 +crossing guard|2583198 +crossing over|2583234 +crossjack|2583302 +crossly|2583361 +crossness|2583396 +crossopterygian|2583551 +crossopterygii|2583611 +crossover|2583680 +crossover voter|2583842 +crosspatch|2583891 +crosspiece|2583974 +crossroad|2584045 +crossroads|2584114 +crossruff|2584296 +crosstalk|2584326 +crosstie|2584379 +crosstown|2584436 +crosswalk|2584481 +crossway|2584524 +crossways|2584593 +crosswind|2584628 +crosswise|2584679 +crossword|2584819 +crossword puzzle|2584863 +crotal|2584907 +crotalaria|2584946 +crotalaria sagitallis|2584998 +crotalaria spectabilis|2585091 +crotalidae|2585184 +crotalus|2585248 +crotalus adamanteus|2585304 +crotalus atrox|2585409 +crotalus cerastes|2585520 +crotalus horridus atricaudatus|2585615 +crotalus horridus horridus|2585791 +crotalus lepidus|2585912 +crotalus mitchellii|2585992 +crotalus scutulatus|2586082 +crotalus tigris|2586170 +crotalus viridis|2586249 +crotaphion|2586368 +crotaphytus|2586407 +crotch|2586472 +crotch hair|2586591 +crotchet|2586633 +crotchetiness|2586797 +crotchety|2586866 +croton|2586917 +croton bug|2586997 +croton eluteria|2587182 +croton oil|2587256 +croton tiglium|2587280 +crotonbug|2587337 +crotophaga|2587430 +crottal|2587489 +crottle|2587528 +crouch|2587567 +crouched|2587687 +crouching|2587754 +croup|2587821 +croupe|2587906 +croupier|2587956 +croupier's rake|2587982 +croupy|2588012 +crouse|2588034 +crouton|2588092 +crow|2588140 +crow blackbird|2589226 +crow corn|2589288 +crow garlic|2589369 +crow pheasant|2589468 +crow step|2589517 +crow's feet|2588533 +crow's foot|2588835 +crow's nest|2589055 +crow-bait|2589085 +crowbait|2589582 +crowbar|2589642 +crowberry|2589690 +crowberry family|2589720 +crowd|2589810 +crowd control|2590070 +crowd out|2590101 +crowd together|2590139 +crowded|2590211 +crowding|2590280 +crowfoot|2590325 +crowfoot family|2590418 +crowfoot grass|2590518 +crowing|2590617 +crown|2590824 +crown beard|2591626 +crown colony|2591858 +crown daisy|2591911 +crown fire|2591971 +crown gall|2592003 +crown glass|2592037 +crown imperial|2592099 +crown jewel|2592172 +crown jewels|2592200 +crown land|2592256 +crown lens|2592327 +crown monkey|2592370 +crown of thorns|2592459 +crown prince|2592570 +crown princess|2592599 +crown roast|2592658 +crown saw|2592719 +crown vetch|2592742 +crown wart|2592796 +crown-beard|2591317 +crown-of-the-field|2591549 +crownbeard|2592830 +crowned|2592900 +crowned head|2593010 +crowning|2593092 +crownless|2593130 +crownwork|2593171 +crozier|2593211 +crp|2593242 +crt|2593293 +crt screen|2593346 +crucial|2593392 +cruciality|2593684 +crucian carp|2593737 +cruciate|2593821 +crucible|2593871 +crucible steel|2593908 +crucifer|2593938 +cruciferae|2593996 +cruciferous|2594116 +cruciferous plant|2594159 +cruciferous vegetable|2594217 +crucifix|2594265 +crucifix fish|2594330 +crucifixion|2594365 +cruciform|2594510 +crucify|2594560 +crud|2594772 +crude|2594873 +crude oil|2595122 +crudely|2595193 +crudeness|2595230 +crudites|2595394 +crudity|2595440 +cruel|2595578 +cruel and unusual punishment|2595737 +cruel plant|2595820 +cruelness|2595865 +cruelty|2595933 +cruet|2596162 +cruet-stand|2596191 +cruise|2596223 +cruise control|2596362 +cruise liner|2596405 +cruise missile|2596457 +cruise ship|2596495 +cruiser|2596547 +cruiserweight|2596766 +cruller|2596830 +crumb|2596865 +crumb cake|2597189 +crumble|2597214 +crumbled|2597345 +crumbliness|2597381 +crumbly|2597427 +crumhorn|2597454 +crummy|2597526 +crump|2597594 +crumpet|2597694 +crumple|2597757 +crumpled|2598031 +crunch|2598101 +crunched|2598396 +crunchy|2598455 +crupper|2598489 +crural|2598512 +crus|2598532 +crusade|2598551 +crusader|2598783 +cruse|2598880 +crush|2598899 +crush out|2599426 +crushed|2599489 +crushed leather|2599586 +crushed rock|2599625 +crusher|2599665 +crushing|2599689 +crust|2599783 +crustacea|2599992 +crustacean|2600043 +crustaceous|2600097 +crustal movement|2600172 +crustal plate|2600232 +crusted|2600281 +crustlike|2600333 +crustose|2600385 +crustose thallus|2600434 +crusty|2600468 +crutch|2600583 +crux|2600622 +crux australis|2600717 +crux of the matter|2600790 +cruzeiro|2600829 +cry|2600871 +cry for|2601585 +cry out|2601682 +cry out for|2601782 +cry-baby tree|2601481 +cryaesthesia|2601879 +crybaby|2601930 +crybaby tree|2602091 +cryesthesia|2602195 +crying|2602246 +cryoanaesthesia|2602749 +cryoanesthesia|2602812 +cryobiology|2602875 +cryocautery|2602923 +cryogen|2603005 +cryogenic|2603034 +cryogenics|2603064 +cryogeny|2603137 +cryolite|2603210 +cryometer|2603251 +cryonic|2603282 +cryonics|2603310 +cryopathy|2603340 +cryophobia|2603393 +cryoscope|2603427 +cryostat|2603501 +cryosurgery|2603546 +crypt|2603640 +cryptacanthodes|2603700 +cryptacanthodes maculatus|2603774 +cryptanalysis|2603879 +cryptanalyst|2603971 +cryptanalytic|2604039 +cryptanalytics|2604147 +cryptic|2604239 +cryptic coloration|2604420 +cryptical|2604470 +cryptically|2604634 +cryptobiosis|2604681 +cryptobiotic|2604747 +cryptobranchidae|2604812 +cryptobranchus|2604896 +cryptobranchus alleganiensis|2604972 +cryptocercidae|2605071 +cryptocercus|2605149 +cryptococcosis|2605219 +cryptocoryne|2605268 +cryptogam|2605359 +cryptogamia|2605401 +cryptogamic|2605443 +cryptogamous|2605499 +cryptogram|2605555 +cryptogramma|2605644 +cryptogramma acrostichoides|2605709 +cryptogramma crispa|2605827 +cryptogrammataceae|2605931 +cryptograph|2606016 +cryptographer|2606157 +cryptographic|2606225 +cryptographical|2606333 +cryptography|2606441 +cryptologic|2606591 +cryptological|2606699 +cryptologist|2606807 +cryptology|2606875 +cryptomeria|2606967 +cryptomeria japonica|2607035 +cryptomonad|2607135 +cryptophyceae|2607179 +cryptophyta|2607242 +cryptophyte|2607301 +cryptoprocta|2607345 +cryptoprocta ferox|2607415 +cryptorchidism|2607505 +cryptorchidy|2607597 +cryptorchism|2607689 +cryptotermes|2607781 +cryptotermes brevis|2607851 +cryptotis|2607938 +cryptotis parva|2607996 +crystal|2608066 +crystal ball|2608340 +crystal clear|2608377 +crystal counter|2608508 +crystal detector|2608546 +crystal gazing|2608581 +crystal lattice|2608643 +crystal microphone|2608706 +crystal oscillator|2608750 +crystal pickup|2608807 +crystal rectifier|2608848 +crystal set|2608974 +crystal tea|2609055 +crystal violet|2609120 +crystalise|2609326 +crystalised|2609654 +crystalize|2609743 +crystalized|2610071 +crystalline|2610128 +crystalline lens|2610296 +crystallisation|2610333 +crystallise|2610408 +crystallised|2610684 +crystallite|2610719 +crystallization|2610764 +crystallize|2610902 +crystallized|2611227 +crystallized fruit|2611306 +crystallized ginger|2611358 +crystallizing|2611420 +crystallography|2611495 +cs|2611564 +cs gas|2611634 +cse|2611728 +csis|2611817 +cst|2611909 +ct|2611997 +ctc|2612206 +ctene|2612311 +ctenidium|2612332 +ctenizidae|2612365 +ctenocephalides|2612431 +ctenocephalides canis|2612510 +ctenocephalides felis|2612577 +ctenocephalus|2612644 +ctenophora|2612739 +ctenophore|2612795 +ctenophore family|2612839 +ctenophore genus|2612873 +cu|2612905 +cu ft|2612977 +cu in|2613123 +cub|2613269 +cub scout|2613433 +cub shark|2613462 +cuba|2613526 +cubage unit|2613600 +cuban|2613754 +cuban bast|2613818 +cuban capital|2613907 +cuban heel|2613984 +cuban itch|2614020 +cuban mahogany|2614185 +cuban monetary unit|2614299 +cuban peso|2614362 +cuban revolution|2614418 +cuban sandwich|2614472 +cuban spinach|2614644 +cubature unit|2614746 +cubby|2614900 +cubbyhole|2614944 +cube|2615018 +cube root|2615374 +cube-shaped|2615287 +cubeb|2615398 +cubeb cigarette|2615548 +cubeb vine|2615618 +cubelike|2615693 +cubic|2615780 +cubic centimeter|2615918 +cubic centimetre|2616014 +cubic content unit|2616110 +cubic decimeter|2616264 +cubic decimetre|2616340 +cubic foot|2616416 +cubic inch|2616562 +cubic kilometer|2616708 +cubic kilometre|2616770 +cubic measure|2616832 +cubic meter|2616986 +cubic metre|2617060 +cubic millimeter|2617134 +cubic millimetre|2617198 +cubic yard|2617262 +cubical|2617407 +cubicity|2617494 +cubicle|2617554 +cubiform|2617652 +cubism|2617739 +cubist|2617786 +cubistic|2617856 +cubit|2617911 +cubital|2617938 +cubital joint|2617993 +cubital nerve|2618100 +cubitiere|2618163 +cubitus|2618246 +cuboid|2618365 +cuboid bone|2618523 +cuboidal|2618552 +cuboidal cell|2618639 +cuboidal epithelial cell|2618703 +cucking stool|2618767 +cuckold|2618829 +cuckoo|2618937 +cuckoo bread|2619346 +cuckoo clock|2619440 +cuckoo flower|2619468 +cuckoo's nest|2619079 +cuckoo-bumblebee|2619316 +cuckooflower|2619732 +cuckoopint|2619839 +cuculidae|2619921 +cuculiform bird|2619979 +cuculiformes|2620009 +cuculus|2620076 +cuculus canorus|2620126 +cucumber|2620190 +cucumber tree|2620284 +cucumber vine|2620335 +cucumis|2620400 +cucumis melo|2620470 +cucumis melo cantalupensis|2620561 +cucumis melo inodorus|2620713 +cucumis melo reticulatus|2620878 +cucumis sativus|2621025 +cucurbit|2621106 +cucurbita|2621172 +cucurbita argyrosperma|2621248 +cucurbita foetidissima|2621360 +cucurbita maxima|2621519 +cucurbita maxima turbaniformis|2621686 +cucurbita mixta|2621805 +cucurbita moschata|2621910 +cucurbita pepo|2622032 +cucurbita pepo melopepo|2622126 +cucurbitaceae|2622235 +cucurbitaceous|2622339 +cud|2622395 +cudbear|2622484 +cuddle|2622528 +cuddlesome|2622693 +cuddling|2622737 +cuddly|2622855 +cuddy|2622899 +cudgel|2622953 +cudweed|2622985 +cue|2623165 +cue ball|2623380 +cue stick|2623412 +cuff|2623472 +cuffed|2623648 +cufflink|2623713 +cuffs|2623749 +cuidad bolivar|2623958 +cuirass|2624031 +cuirassier|2624124 +cuisine|2624163 +cuisse|2624221 +cuke|2624301 +cul|2624341 +cul de lampe|2624382 +cul de sac|2624417 +culbertson|2624514 +culcita|2624572 +culcita dubia|2624622 +culdoscope|2624678 +culdoscopy|2624708 +culebra|2624738 +culex|2624770 +culex fatigans|2624819 +culex pipiens|2624890 +culex quinquefasciatus|2624952 +culiacan|2625031 +culicidae|2625087 +culinary|2625150 +culinary art|2625195 +cull|2625253 +cull out|2625387 +cullender|2625433 +cullis|2625470 +culm|2625500 +culminate|2625525 +culmination|2625705 +culotte|2625881 +culottes|2625913 +culpability|2625966 +culpable|2626033 +culpable negligence|2626109 +culpableness|2626205 +culpably|2626272 +culprit|2626303 +cult|2626351 +cult of personality|2626484 +cultism|2626521 +cultist|2626591 +cultivable|2626617 +cultivar|2626677 +cultivatable|2626731 +cultivate|2626791 +cultivated|2626996 +cultivated cabbage|2627104 +cultivated carrot|2627185 +cultivated celery|2627262 +cultivated crab apple|2627341 +cultivated land|2627404 +cultivated parsnip|2627501 +cultivated plant|2627554 +cultivated rice|2627608 +cultivated strawberry|2627651 +cultivation|2627729 +cultivator|2627902 +cultural|2628013 +cultural anthropology|2628170 +cultural attache|2628234 +cultural movement|2628268 +cultural revolution|2628326 +culturati|2628424 +culture|2628466 +culture medium|2628845 +culture shock|2628893 +cultured|2628931 +cultus|2629003 +culver's physic|2629071 +culver's root|2629210 +culverin|2629347 +culvers physic|2629386 +culvers root|2629524 +culvert|2629660 +cum|2629704 +cum laude|2629811 +cumana|2629837 +cumarone|2629894 +cumber|2629960 +cumberland|2630059 +cumberland gap|2630207 +cumberland mountains|2630271 +cumberland plateau|2630421 +cumberland river|2630569 +cumbersome|2630629 +cumbersomeness|2630738 +cumbria|2630827 +cumbrous|2630946 +cumfrey|2630997 +cumin|2631044 +cumin seed|2631127 +cuminum|2631165 +cuminum cyminum|2631222 +cummerbund|2631291 +cummings|2631353 +cumquat|2631423 +cumulate|2631480 +cumulative|2631552 +cumulative preferred|2631594 +cumulative preferred stock|2631702 +cumulative vote|2631810 +cumuliform|2631844 +cumulonimbus|2631879 +cumulonimbus cloud|2631939 +cumulous|2631999 +cumulus|2632053 +cumulus cloud|2632160 +cunaxa|2632197 +cunctation|2632252 +cunctator|2632314 +cuneal|2632366 +cuneate|2632404 +cuneate leaf|2632454 +cuneiform|2632488 +cuneiform bone|2632554 +cuneus|2632664 +cuniculus|2632725 +cuniculus paca|2632783 +cunner|2632856 +cunnilinctus|2632911 +cunnilingus|2632959 +cunning|2633007 +cunningham|2633337 +cunningly|2633426 +cunonia family|2633507 +cunoniaceae|2633581 +cunt|2633667 +cuon|2633818 +cuon alpinus|2633877 +cup|2633927 +cup and saucer|2634310 +cup final|2634388 +cup fungus|2634413 +cup hook|2634476 +cup morel|2634499 +cup of tea|2634541 +cup tie|2634579 +cup-shaped|2634265 +cupbearer|2634601 +cupboard|2634646 +cupboard love|2634685 +cupcake|2634727 +cupel|2634749 +cupflower|2634799 +cupful|2634916 +cupid|2634949 +cupid's bow|2634987 +cupid's dart|2635062 +cupid's disease|2635127 +cupid's itch|2635288 +cupidity|2635446 +cuplike|2635506 +cupola|2635531 +cuppa|2635567 +cupper|2635593 +cupping|2635619 +cupressaceae|2635649 +cupressus|2635737 +cupressus abramsiana|2635799 +cupressus arizonica|2635921 +cupressus goveniana|2636007 +cupressus goveniana abramsiana|2636091 +cupressus goveniana pigmaea|2636223 +cupressus guadalupensis|2636341 +cupressus lusitanica|2636437 +cupressus macrocarpa|2636557 +cupressus pigmaea|2636646 +cupressus sempervirens|2636754 +cupric|2636868 +cupric acetate|2636924 +cupric sulfate|2636966 +cupric sulphate|2637054 +cuprimine|2637142 +cuprite|2637231 +cupronickel|2637256 +cuprous|2637295 +cupular|2637351 +cupulate|2637396 +cupule|2637441 +cuquenan|2637485 +cuquenan falls|2637567 +cur|2637655 +curability|2637729 +curable|2637776 +curableness|2637844 +curacao|2637891 +curacoa|2637953 +curacy|2637993 +curandera|2638064 +curandero|2638100 +curare|2638136 +curassow|2638226 +curate|2638274 +curate cycloid|2638356 +curative|2638388 +curator|2638530 +curatorial|2638584 +curatorship|2638628 +curb|2638704 +curb bit|2639163 +curb market|2639190 +curb roof|2639257 +curb service|2639281 +curbed|2639311 +curbing|2639346 +curbside|2639378 +curbstone|2639412 +curculionidae|2639454 +curcuma|2639529 +curcuma domestica|2639598 +curcuma longa|2639688 +curd|2639774 +curdle|2639832 +curdled|2639921 +curdling|2639981 +cure|2640088 +cure-all|2640256 +cured|2640311 +curet|2640466 +curettage|2640509 +curette|2640613 +curettement|2640656 +curfew|2640760 +curia|2640854 +curie|2640962 +curie point|2641098 +curie temperature|2641161 +curietherapy|2641230 +curing|2641347 +curio|2641451 +curiosity|2641533 +curious|2641659 +curiously|2641862 +curiously enough|2641933 +curiousness|2642024 +curitiba|2642117 +curium|2642173 +curl|2642232 +curl up|2642537 +curled|2642577 +curled pondweed|2642631 +curled up|2642705 +curler|2642738 +curlew|2642799 +curlew sandpiper|2642852 +curleyleaf pondweed|2642908 +curlicue|2642982 +curliness|2643074 +curling|2643109 +curling iron|2643151 +curly|2643208 +curly clematis|2643391 +curly endive|2643483 +curly grass|2643538 +curly grass fern|2643598 +curly-coated retriever|2643299 +curly-heads|2643341 +curlycup gumweed|2643658 +curmudgeon|2643740 +curmudgeonly|2643806 +currajong|2643878 +currant|2643954 +currant bush|2644022 +currawong|2644063 +currency|2644112 +current|2644261 +current account|2644577 +current electricity|2644613 +current intelligence|2644674 +current of air|2644762 +current unit|2644851 +currently|2644898 +currentness|2644926 +currer bell|2644991 +curricular|2645076 +curriculum|2645112 +curriculum vitae|2645192 +currier|2645236 +currish|2645338 +currishly|2645382 +curry|2645408 +curry favor|2645525 +curry favour|2645633 +curry powder|2645741 +curry sauce|2645822 +currycomb|2645849 +curse|2645873 +curse word|2646458 +cursed|2646533 +cursed crowfoot|2646789 +cursed with|2646922 +cursedly|2646967 +cursing|2647000 +cursive|2647065 +cursive script|2647158 +cursor|2647236 +cursorial|2647270 +cursorily|2647299 +cursorius|2647325 +cursorius cursor|2647381 +cursory|2647454 +curst|2647507 +curt|2647711 +curtail|2647793 +curtailment|2647890 +curtain|2647996 +curtain call|2648116 +curtain lecture|2648149 +curtain off|2648200 +curtain raiser|2648240 +curtain raising|2648319 +curtain ring|2648372 +curtained|2648404 +curtainless|2648440 +curtal|2648485 +curtilage|2648507 +curtis|2648545 +curtisia|2648620 +curtiss|2648680 +curtly|2648755 +curtness|2648784 +curtsey|2648866 +curtsy|2648929 +curvaceous|2649030 +curvaceously|2649133 +curvaceousness|2649162 +curvature|2649225 +curve|2649410 +curve ball|2649747 +curved|2649809 +curved shape|2650100 +curvet|2650133 +curvey|2650197 +curvilineal|2650234 +curvilinear|2650282 +curvilinear correlation|2650330 +curvilinear regression|2650439 +curving|2650550 +curvy|2650834 +cusco|2650966 +cuscus|2650998 +cuscuta|2651039 +cuscuta gronovii|2651109 +cush-cush|2651169 +cushat|2651220 +cushaw|2651281 +cushing|2651391 +cushing's disease|2651481 +cushing's syndrome|2651602 +cushion|2651730 +cushion calamint|2651837 +cushion flower|2651934 +cushioned|2652000 +cushioning|2652040 +cushiony|2652086 +cushitic|2652126 +cushy|2652241 +cusk|2652266 +cusk-eel|2652390 +cusp|2652440 +cuspate|2652502 +cuspated|2652582 +cusped|2652662 +cuspid|2652742 +cuspidal|2652812 +cuspidate|2652892 +cuspidated|2652972 +cuspidation|2653052 +cuspidor|2653087 +cuss|2653125 +cussed|2653423 +cussedly|2653497 +cussedness|2653570 +custard|2653638 +custard apple|2653742 +custard apple tree|2653815 +custard pie|2653868 +custard-apple family|2653660 +custer|2653903 +custer's last stand|2653986 +custodial|2654152 +custodial account|2654208 +custodian|2654248 +custodianship|2654319 +custody|2654397 +custody battle|2654518 +custody case|2654573 +custom|2654629 +custom-built|2654900 +custom-made|2654977 +custom-make|2655118 +customary|2655191 +customer|2655263 +customer agent|2655565 +customer's broker|2655297 +customer's man|2655431 +customhouse|2655619 +customise|2655673 +customised|2655804 +customize|2655933 +customized|2656064 +customs|2656193 +customs bureau|2656411 +customs duty|2656553 +customs service|2656609 +customs union|2656752 +customshouse|2656781 +cut|2656835 +cut across|2659946 +cut away|2660091 +cut back|2660124 +cut corners|2660381 +cut down|2660421 +cut glass|2660724 +cut in|2660763 +cut into|2660958 +cut of beef|2661027 +cut of lamb|2661064 +cut of meat|2661101 +cut of mutton|2661131 +cut of pork|2661170 +cut of veal|2661207 +cut off|2661244 +cut out|2661536 +cut price|2661800 +cut rate|2661867 +cut short|2661934 +cut through|2662068 +cut to|2662183 +cut to ribbons|2662204 +cut up|2662245 +cut-and-dried|2659380 +cut-and-dry|2659424 +cut-and-thrust|2659468 +cut-in|2659544 +cut-price|2659649 +cut-rate|2659710 +cut-rate sale|2659771 +cut-up|2659820 +cutaneal|2662407 +cutaneous|2662466 +cutaneous anthrax|2662525 +cutaneous leishmaniasis|2662578 +cutaneous sensation|2662724 +cutaneous vein|2662851 +cutaway|2662918 +cutaway drawing|2662992 +cutaway model|2663054 +cutback|2663116 +cutch|2663173 +cute|2663213 +cutely|2663269 +cuteness|2663294 +cuterebra|2663330 +cuterebridae|2663391 +cuticle|2663463 +cuticula|2663532 +cuticular|2663573 +cutis|2663649 +cutlas|2663710 +cutlass|2663758 +cutlassfish|2663806 +cutleaved coneflower|2663879 +cutler|2663940 +cutlery|2663987 +cutlet|2664074 +cutoff|2664127 +cutout|2664210 +cutpurse|2664319 +cuttable|2664366 +cutter|2664400 +cutthroat|2664624 +cutting|2664752 +cutting angle|2665299 +cutting board|2665328 +cutting edge|2665372 +cutting implement|2665462 +cutting off|2665494 +cutting out|2665573 +cutting room|2665697 +cutting tool|2665724 +cutting-edge|2665219 +cuttle|2665779 +cuttlefish|2665814 +cutty stool|2665849 +cutwork|2665876 +cutworm|2665914 +cuvier|2665943 +cuzco|2666081 +cv|2666113 +cva|2666197 +cwm|2666262 +cwt|2666295 +cx|2666439 +cxl|2666480 +cxlv|2666524 +cxv|2666574 +cxx|2666620 +cxxv|2666665 +cxxx|2666716 +cxxxv|2666762 +cy pres|2666814 +cy pres doctrine|2666991 +cy young|2667057 +cyamopsis|2667135 +cyamopsis psoraloides|2667198 +cyamopsis tetragonolobus|2667318 +cyamus|2667441 +cyan|2667493 +cyanamid|2667582 +cyanamide|2667615 +cyanic acid|2667700 +cyanide|2667726 +cyanide group|2667787 +cyanide poisoning|2667881 +cyanide process|2667947 +cyanide radical|2667991 +cyanine dye|2668085 +cyanite|2668119 +cyano group|2668152 +cyano radical|2668246 +cyanobacteria|2668340 +cyanobacterial|2668417 +cyanocitta|2668457 +cyanocitta cristata|2668516 +cyanocobalamin|2668596 +cyanogen|2668739 +cyanogenetic|2668761 +cyanogenic|2668800 +cyanohydrin|2668839 +cyanophyceae|2668877 +cyanophyta|2668957 +cyanophyte|2669017 +cyanosis|2669060 +cyanuramide|2669086 +cyanuric acid|2669128 +cyathea|2669156 +cyathea medullaris|2669206 +cyatheaceae|2669306 +cybele|2669370 +cyber-terrorism|2669457 +cyber-terrorist|2669532 +cyberart|2669639 +cybercafe|2669670 +cybercrime|2669729 +cyberculture|2669768 +cybernate|2669798 +cybernation|2669858 +cybernaut|2669934 +cybernetic|2669967 +cybernetics|2670044 +cyberphobia|2670123 +cyberpunk|2670158 +cybersex|2670309 +cyberspace|2670342 +cyberwar|2670392 +cyborg|2670467 +cycad|2670515 +cycad family|2670541 +cycadaceae|2670610 +cycadales|2670690 +cycadofilicales|2670747 +cycadophyta|2670862 +cycadophytina|2670995 +cycadopsida|2671130 +cycas|2671263 +cycas circinalis|2671313 +cycas revoluta|2671402 +cyclades|2671457 +cycladic civilisation|2671640 +cycladic civilization|2671796 +cycladic culture|2671952 +cyclamen|2672103 +cyclamen hederifolium|2672150 +cyclamen neopolitanum|2672241 +cyclamen purpurascens|2672332 +cycle|2672401 +cycle of rebirth|2672775 +cycle on|2672823 +cycle per second|2672847 +cycle rickshaw|2672911 +cycles/second|2672969 +cyclic|2673033 +cyclic disorder|2673303 +cyclic neutropenia|2673447 +cyclic redundancy check|2673487 +cyclical|2673546 +cyclicity|2673627 +cycling|2673669 +cycliophora|2673702 +cyclist|2673761 +cyclobenzaprine|2673822 +cyclohexanol|2673872 +cyclohexanol phthalate|2673902 +cycloid|2673940 +cycloidal|2674005 +cycloloma|2674040 +cycloloma atriplicifolium|2674111 +cyclonal|2674209 +cyclone|2674282 +cyclone cellar|2674345 +cyclonic|2674405 +cyclonical|2674507 +cyclooxygenase|2674578 +cyclooxygenase-1|2674613 +cyclooxygenase-2|2674664 +cyclopaedia|2674715 +cyclopean|2674828 +cyclopean masonry|2674852 +cyclopedia|2674889 +cyclopes|2675002 +cyclopes didactylus|2675131 +cyclophorus|2675241 +cyclophorus lingua|2675303 +cyclopia|2675393 +cyclopropane|2675453 +cyclops|2675581 +cyclopteridae|2675657 +cyclopterus|2675727 +cyclopterus lumpus|2675789 +cyclorama|2675874 +cycloserine|2675934 +cyclosis|2675982 +cyclosorus|2676029 +cyclosporeae|2676088 +cyclostomata|2676148 +cyclostome|2676215 +cyclostyle|2676276 +cyclothymia|2676335 +cyclothymic|2676479 +cyclothymic disorder|2676585 +cyclotron|2676729 +cycnoches|2676794 +cyder|2676869 +cydippea|2676923 +cydippida|2677032 +cydippidea|2677142 +cydonia|2677253 +cydonia oblonga|2677310 +cygnet|2677381 +cygnus|2677413 +cygnus atratus|2677488 +cygnus buccinator|2677543 +cygnus columbianus|2677618 +cygnus columbianus bewickii|2677682 +cygnus columbianus columbianus|2677792 +cygnus cygnus|2677909 +cygnus olor|2677972 +cylinder|2678020 +cylinder block|2678110 +cylinder head|2678166 +cylinder lock|2678195 +cylinder press|2678223 +cylindric|2678282 +cylindrical|2678324 +cylindrical lining|2678411 +cylindricality|2678454 +cylindricalness|2678504 +cylix|2678554 +cyma|2678579 +cymatiidae|2678619 +cymatium|2678683 +cymbal|2678723 +cymbid|2678783 +cymbidium|2678835 +cyme|2678887 +cymene|2678915 +cymling|2678943 +cymograph|2679033 +cymose|2679084 +cymru|2679112 +cymule|2679170 +cynancum|2679191 +cynara|2679215 +cynara cardunculus|2679271 +cynara scolymus|2679336 +cynewulf|2679429 +cynic|2679469 +cynical|2679559 +cynically|2679616 +cynicism|2679648 +cynipid gall wasp|2679676 +cynipid wasp|2679739 +cynipidae|2679802 +cynips|2679865 +cynocephalidae|2679917 +cynocephalus|2679992 +cynocephalus variegatus|2680059 +cynodon|2680147 +cynodon dactylon|2680216 +cynodon plectostachyum|2680339 +cynodont|2680417 +cynodontia|2680457 +cynoglossidae|2680517 +cynoglossum|2680587 +cynoglossum amabile|2680650 +cynoglossum officinale|2680743 +cynoglossum virginaticum|2680835 +cynomys|2680931 +cynomys gunnisoni|2680983 +cynomys ludovicianus|2681077 +cynophobia|2681177 +cynopterus|2681207 +cynopterus sphinx|2681268 +cynoscephalae|2681331 +cynoscion|2681407 +cynoscion nebulosus|2681463 +cynoscion regalis|2681577 +cynosure|2681641 +cynthia|2681743 +cynthia moth|2681788 +cynwulf|2681872 +cyon|2681911 +cyperaceae|2681970 +cyperus|2682064 +cyperus alternifolius|2682175 +cyperus esculentus|2682264 +cyperus longus|2682375 +cyperus papyrus|2682439 +cyperus rotundus|2682557 +cypher|2682644 +cyphomandra|2683054 +cypraea|2683125 +cypraea moneta|2683178 +cypraea tigris|2683243 +cypraeidae|2683308 +cypre|2683372 +cypress|2683485 +cypress family|2683551 +cypress pine|2683626 +cypress sedge|2683656 +cypress spurge|2683705 +cypress tree|2683758 +cypress vine|2683812 +cyprian|2683907 +cyprinid|2684156 +cyprinid fish|2684233 +cyprinidae|2684282 +cypriniform fish|2684343 +cypriniformes|2684402 +cyprinodont|2684472 +cyprinodontidae|2684510 +cyprinoid|2684586 +cyprinus|2684625 +cyprinus carpio|2684678 +cypriot|2684738 +cypriot monetary unit|2684827 +cypriot pound|2684894 +cypriote|2684959 +cypripedia|2685049 +cypripedium|2685125 +cypripedium acaule|2685206 +cypripedium album|2685338 +cypripedium arietinum|2685524 +cypripedium calceolus|2685673 +cypripedium calceolus pubescens|2685851 +cypripedium californicum|2686040 +cypripedium fasciculatum|2686184 +cypripedium montanum|2686327 +cypripedium parviflorum|2686461 +cypripedium reginae|2686641 +cyproheptadine|2686829 +cyprus|2686877 +cyril burt|2686959 +cyril lodowic burt|2687027 +cyril northcote parkinson|2687103 +cyrilla|2687223 +cyrilla family|2687294 +cyrilla racemiflora|2687401 +cyrilliaceae|2687492 +cyrillic|2687612 +cyrillic alphabet|2687690 +cyrtomium|2687753 +cyrtomium aculeatum|2687809 +cyrus|2687896 +cyrus hall mccormick|2687942 +cyrus ii|2688071 +cyrus mccormick|2688148 +cyrus the elder|2688272 +cyrus the great|2688356 +cyrus the younger|2688440 +cyst|2688498 +cysteine|2688541 +cystic|2688589 +cystic artery|2688624 +cystic breast disease|2688700 +cystic fibrosis|2688816 +cystic mastitis|2688961 +cystic vein|2689077 +cystine|2689141 +cystitis|2689188 +cystocele|2689230 +cystolith|2689285 +cystoparalysis|2689338 +cystophora|2689390 +cystophora cristata|2689451 +cystoplegia|2689557 +cystopteris|2689609 +cystopteris bulbifera|2689671 +cystopteris fragilis|2689782 +cystopteris montana|2689893 +cytesis proliferus|2689977 +cytherea|2690069 +cytidine|2690118 +cytisus|2690161 +cytisus albus|2690218 +cytisus multiflorus|2690313 +cytisus ramentaceus|2690414 +cytisus scoparius|2690513 +cytoarchitectonic|2690624 +cytoarchitectonics|2690678 +cytoarchitectural|2690733 +cytoarchitecture|2690787 +cytochrome|2690842 +cytochrome c|2690887 +cytogenesis|2690920 +cytogenetic|2691009 +cytogenetical|2691077 +cytogeneticist|2691145 +cytogenetics|2691180 +cytogeny|2691236 +cytokine|2691325 +cytokinesis|2691351 +cytokinetic|2691407 +cytokinin|2691462 +cytologic|2691531 +cytologic smear|2691608 +cytologic specimen|2691668 +cytological|2691705 +cytologist|2691782 +cytology|2691827 +cytolysin|2691892 +cytolysis|2691917 +cytolytic|2691942 +cytomegalic|2691966 +cytomegalovirus|2691997 +cytomembrane|2692046 +cytopathogenic|2692131 +cytopenia|2692167 +cytophotometer|2692215 +cytophotometric|2692277 +cytophotometry|2692312 +cytoplasm|2692347 +cytoplasmatic|2692394 +cytoplasmic|2692456 +cytoplast|2692518 +cytoplastic|2692547 +cytosine|2692577 +cytoskeleton|2692608 +cytosmear|2692711 +cytosol|2692771 +cytostome|2692798 +cytotoxic|2692823 +cytotoxic drug|2692860 +cytotoxic t cell|2692930 +cytotoxicity|2693039 +cytotoxin|2693070 +czar|2693095 +czar alexander i|2693180 +czar alexander ii|2693270 +czar alexander iii|2693367 +czar nicholas i|2693443 +czar peter i|2693510 +czarina|2693584 +czarist|2693653 +czaristic|2693728 +czaritza|2693803 +czech|2693872 +czech capital|2694116 +czech monetary unit|2694188 +czech republic|2694251 +czechoslovak|2694323 +czechoslovakia|2694389 +czechoslovakian|2694500 +czerny|2694669 +d|2694734 +d and c|2695681 +d region|2695827 +d'oyly carte|2694962 +d-day|2695046 +d-layer|2695101 +d. h. lawrence|2695147 +d. w. griffith|2695232 +d.c.|2695355 +d.o.a.|2695470 +d.p.r.k.|2695491 +da|2695874 +da gamma|2696023 +da vinci|2696081 +da'wah|2695977 +dab|2696245 +daba|2696402 +dabble|2696445 +dabbled|2696561 +dabbler|2696624 +dabbling duck|2696695 +dabchick|2696731 +daboecia|2696788 +daboecia cantabrica|2696852 +dacca|2696942 +dace|2697008 +dacelo|2697065 +dacelo gigas|2697112 +dacha|2697186 +dachau|2697215 +dachshund|2697266 +dachsie|2697316 +dacite|2697366 +dacitic|2697396 +dacninae|2697426 +dacoit|2697510 +dacoity|2697547 +dacridium laxifolius|2697580 +dacron|2697681 +dacrycarpus|2697723 +dacrycarpus dacrydioides|2697791 +dacrydium|2697954 +dacrydium bidwilli|2698016 +dacrydium colensoi|2698150 +dacrydium cupressinum|2698238 +dacrydium franklinii|2698339 +dacrymyces|2698449 +dacrymycetaceae|2698510 +dacryocyst|2698588 +dacryocystitis|2698643 +dacryon|2698694 +dactyl|2698730 +dactylic|2698819 +dactylis|2698869 +dactylis glomerata|2698941 +dactyloctenium|2699027 +dactyloctenium aegypticum|2699117 +dactylomegaly|2699242 +dactylopiidae|2699277 +dactylopius|2699352 +dactylopius coccus|2699419 +dactylopteridae|2699506 +dactylopterus|2699582 +dactylorhiza|2699650 +dactylorhiza fuchsii|2699734 +dactylorhiza maculata fuchsii|2699863 +dactyloscopidae|2700001 +dad|2700077 +dada|2700153 +dadaism|2700275 +daddy|2700328 +daddy longlegs|2700404 +dado|2700547 +dado plane|2700672 +daedal|2700720 +daedalus|2700782 +daemon|2700831 +daffo|2700927 +daffodil|2700971 +daffodil garlic|2701025 +dafla|2701117 +daft|2701165 +daftly|2701346 +daftness|2701393 +dag|2701440 +dag hammarskjold|2701522 +dag hjalmar agne carl hammarskjold|2701634 +dagame|2701764 +dagan|2701828 +dagda|2701863 +dagestani|2701897 +dagga|2701942 +dagger|2702030 +dagger fern|2702109 +daggerboard|2702210 +dago|2702278 +dagon|2702322 +daguerre|2702357 +daguerreotype|2702443 +dah|2702496 +dahl|2702557 +dahlia|2702692 +dahlia pinnata|2702730 +dahomey|2702783 +daikon|2702863 +dail|2702939 +dail eireann|2702977 +daily|2703023 +daily dew|2703175 +daily double|2703232 +daily round|2703264 +daily variation|2703300 +daimler|2703347 +daimon|2703443 +daintiness|2703496 +dainty|2703543 +daiquiri|2703806 +dairy|2703846 +dairy cattle|2703877 +dairy cow|2703976 +dairy farm|2704075 +dairy farmer|2704106 +dairy farming|2704173 +dairy product|2704235 +dairying|2704281 +dairymaid|2704343 +dairyman|2704413 +dais|2704529 +daishiki|2704593 +daisy|2704625 +daisy bush|2705000 +daisy chain|2705214 +daisy cutter|2705275 +daisy fleabane|2705395 +daisy print wheel|2705444 +daisy wheel|2705489 +daisy-bush|2704647 +daisy-chain|2704861 +daisy-leaved grape fern|2704907 +daisybush|2705534 +daisyleaf grape fern|2705586 +daisylike|2705679 +daisywheel printer|2705704 +dak|2705793 +dakar|2705854 +dakoit|2705916 +dakoity|2705953 +dakota|2705986 +dal|2706145 +dalai lama|2706223 +dalasi|2706270 +dalbergia|2706308 +dalbergia cearensis|2706371 +dalbergia latifolia|2706448 +dalbergia nigra|2706594 +dalbergia retusa|2706700 +dalbergia sissoo|2706757 +dalbergia stevensonii|2706825 +dale|2706919 +dale carnegie|2706945 +dalea|2707010 +dalea spinosa|2707061 +dalesman|2707120 +daleth|2707165 +dali|2707232 +dall sheep|2707361 +dall's sheep|2707273 +dallas|2707447 +dalliance|2707499 +dallier|2707641 +dallis grass|2707735 +dallisgrass|2707884 +dally|2707952 +dalmane|2708146 +dalmatia|2708310 +dalmatia pyrethrum|2708409 +dalmatian|2708564 +dalmatian iris|2708754 +dalmatian laburnum|2708819 +dalmatian pyrethrum|2708917 +dalo|2709073 +dalton|2709142 +dalton trumbo|2709506 +dalton's law|2709195 +dalton's law of partial pressures|2709373 +daltonism|2709575 +dam|2709707 +dam up|2709894 +dama|2709966 +dama dama|2710009 +damage|2710062 +damage control|2710331 +damaged|2710363 +damages|2710854 +damaging|2711205 +damaliscus|2711296 +damaliscus lunatus|2711357 +damar|2711426 +damaraland mole rat|2711486 +damascene|2711552 +damascus|2711666 +damascus steel|2711727 +damask|2711785 +damask rose|2711870 +damask steel|2711930 +damask violet|2711986 +dame|2712063 +dame agatha mary clarissa christie|2712296 +dame alice ellen terry|2712414 +dame alicia markova|2712500 +dame barbara hepworth|2712604 +dame daphne du maurier|2712723 +dame edith louisa sitwell|2712821 +dame edith sitwell|2712914 +dame ellen terry|2713000 +dame jean iris murdoch|2713080 +dame joan sutherland|2713170 +dame kiri janette te kanawa|2713256 +dame kiri te kanawa|2713359 +dame margot fonteyn|2713454 +dame muriel spark|2713538 +dame myra hess|2713635 +dame nellie melba|2713700 +dame rebecca west|2713803 +dame sybil thorndike|2713904 +dame's violet|2712205 +damgalnunna|2713973 +daminozide|2714028 +damkina|2714062 +dammar|2714113 +dammar pine|2714173 +dammar resin|2714229 +damn|2714289 +damnable|2714703 +damnably|2714744 +damnation|2714777 +damnatory|2714853 +damned|2714904 +damning|2715110 +damocles|2715161 +damoiselle|2715197 +damon|2715263 +damon and pythias|2715291 +damon runyon|2715343 +damosel|2715419 +damourite|2715485 +damozel|2715514 +damp|2715580 +damp course|2715895 +damp-proof course|2715845 +dampen|2715945 +dampener|2716215 +dampening|2716250 +damper|2716288 +damper block|2716349 +damping off|2716399 +damping off fungus|2716434 +dampish|2716489 +damply|2716521 +dampness|2716544 +damsel|2716585 +damselfish|2716651 +damselfly|2716714 +damson|2716741 +damson plum|2716774 +damson plum tree|2716981 +dana|2717071 +danaea|2717108 +danaid|2717155 +danaid butterfly|2717198 +danaidae|2717241 +danaus|2717301 +danaus plexippus|2717353 +dance|2717465 +dance band|2717683 +dance floor|2717780 +dance hall|2717816 +dance lesson|2717863 +dance music|2717892 +dance of death|2717978 +dance orchestra|2718061 +dance palace|2718158 +dance school|2718205 +dance step|2718234 +danceable|2718277 +dancer|2718316 +danceroom music|2718454 +dancing|2718540 +dancing lady orchid|2718622 +dancing partner|2718719 +dancing school|2718805 +dandelion|2718836 +dandelion green|2718886 +dander|2718968 +dandie dinmont|2719040 +dandie dinmont terrier|2719110 +dandified|2719188 +dandify|2719232 +dandle|2719267 +dandle board|2719311 +dandruff|2719394 +dandy|2719454 +dandy fever|2719655 +dandyish|2719731 +dane|2719775 +danewort|2719803 +dangaleat|2719871 +danger|2719919 +danger line|2720038 +danger zone|2720064 +dangerous|2720090 +dangerous undertaking|2720434 +dangerously|2720529 +dangerousness|2720572 +dangla|2720610 +dangle|2720655 +dangle-berry|2720702 +dangleberry|2720850 +dangling|2720917 +dangling modifier|2720973 +dangling participle|2721038 +daniel|2721104 +daniel bernoulli|2721242 +daniel boone|2721305 +daniel chester french|2721385 +daniel defoe|2721485 +daniel garrison brinton|2721540 +daniel hudson burnham|2721620 +daniel jones|2721700 +daniel morgan|2721753 +daniel ortega|2721805 +daniel ortega saavedra|2721904 +daniel rutherford|2722012 +daniel webster|2722076 +danish|2722164 +danish blue|2722379 +danish capital|2722429 +danish krone|2722506 +danish monetary unit|2722568 +danish pastry|2722633 +dank|2722700 +dankness|2722725 +danmark|2722778 +dano-norwegian|2722871 +danse du ventre|2722935 +danse macabre|2723013 +danseur|2723096 +danseur noble|2723141 +danseuse|2723186 +dante|2723228 +dante alighieri|2723270 +dante gabriel rossetti|2723322 +dantean|2723401 +dantesque|2723440 +danton|2723481 +danton true young|2723576 +danu|2723663 +danube|2723700 +danube river|2723742 +danzig|2723790 +daoism|2723854 +daphne|2723928 +daphne cneorum|2723975 +daphne du maurier|2724036 +daphne family|2724129 +daphne laureola|2724220 +daphne mezereum|2724294 +daphnia|2724367 +dapper|2724444 +dapperness|2724543 +dapple|2724658 +dapple-gray|2724743 +dapple-grey|2724830 +dappled|2724917 +dappled-gray|2724952 +dappled-grey|2725039 +dapsang|2725126 +dapsone|2725202 +dar al-harb|2725264 +dar al-islam|2725382 +dar es salaam|2725504 +daraf|2725578 +dard|2725608 +dardan|2725667 +dardanelles|2725721 +dardanelles campaign|2725845 +dardanian|2725935 +dardanus|2725992 +dardic|2726034 +dardic language|2726095 +dare|2726165 +daredevil|2726268 +daredevilry|2726386 +daredeviltry|2726446 +dari|2726506 +dari persian|2726563 +daricon|2726628 +darier's disease|2726707 +daring|2726783 +darius i|2726946 +darius iii|2727008 +darius milhaud|2727057 +darius the great|2727113 +dark|2727183 +dark adaptation|2728574 +dark ages|2728610 +dark blue|2728671 +dark bread|2728719 +dark chocolate|2728817 +dark comdey|2728894 +dark field illumination|2728922 +dark glasses|2728991 +dark ground illumination|2729067 +dark horse|2729136 +dark lantern|2729222 +dark matter|2729252 +dark meat|2729290 +dark red|2729314 +dark-blue|2728106 +dark-brown|2728177 +dark-eyed junco|2728222 +dark-field microscope|2728297 +dark-green|2728361 +dark-haired|2728418 +dark-skinned|2728481 +darken|2729344 +darkened|2729465 +darkening|2729499 +darkey|2729585 +darkie|2729658 +darkish|2729731 +darkling|2729753 +darkling beetle|2729788 +darkling groung beetle|2729855 +darkly|2729922 +darkness|2729949 +darkroom|2730163 +darky|2730186 +darling|2730259 +darling pea|2730385 +darling river|2730437 +darlingtonia|2730488 +darlingtonia californica|2730573 +darmera|2730671 +darmera peltata|2730760 +darn|2730875 +darned|2731078 +darnel|2731201 +darning|2731280 +darning needle|2731347 +darpa|2731518 +darrow|2731645 +darryl francis zanuck|2731723 +darryl zanuck|2731844 +darsana|2731957 +dart|2732001 +dart board|2732310 +dart player|2732437 +dart thrower|2732477 +dartboard|2732550 +darter|2732596 +dartmouth|2732706 +dartmouth college|2732761 +darts|2732824 +darvon|2732945 +darwin|2733047 +darwin tulip|2733169 +darwinian|2733210 +darwinism|2733341 +das|2733418 +das kapital|2733607 +dash|2733653 +dash down|2734272 +dash off|2734338 +dash-pot|2734239 +dashboard|2734465 +dashed|2734617 +dasheen|2734647 +dashiell hammett|2734796 +dashiki|2734885 +dashing|2734917 +dashing hopes|2735040 +dassie|2735086 +dastard|2735177 +dastardliness|2735235 +dastardly|2735281 +dasyatidae|2735325 +dasyatis|2735386 +dasyatis centroura|2735439 +dasymeter|2735514 +dasypodidae|2735557 +dasyprocta|2735623 +dasyprocta aguti|2735684 +dasyproctidae|2735763 +dasypus|2735835 +dasypus novemcinctus|2735887 +dasyure|2735991 +dasyurid|2736036 +dasyurid marsupial|2736098 +dasyuridae|2736160 +dasyurus|2736241 +dasyurus quoll|2736296 +dasyurus viverrinus|2736359 +dat|2736427 +data|2736472 +data communication|2736697 +data conversion|2736772 +data converter|2736808 +data encryption|2736852 +data file|2736897 +data format|2736928 +data formatting|2737000 +data hierarchy|2737072 +data input device|2737106 +data link|2737153 +data mining|2737221 +data multiplexer|2737258 +data point|2737296 +data processing|2737334 +data processor|2737370 +data rate|2737496 +data structure|2737520 +data system|2737589 +data track|2737636 +data-based|2736581 +data-storage medium|2736646 +database|2737683 +database management|2737718 +database management system|2737768 +datable|2737859 +date|2737899 +date back|2738606 +date bar|2738668 +date bread|2738696 +date from|2738728 +date line|2738790 +date of reference|2738900 +date palm|2738938 +date plum|2738990 +date rape|2739050 +date stamp|2739103 +date-mark|2738447 +date-nut bread|2738570 +dateable|2739139 +dated|2739171 +dateless|2739234 +dateline|2739359 +datemark|2739491 +dating|2739533 +dative|2739606 +dative bond|2739655 +dative case|2739706 +datril|2739755 +datum|2739875 +datura|2739913 +datura arborea|2739969 +datura sanguinea|2740061 +datura stramonium|2740156 +datura suaveolens|2740284 +daub|2740378 +daubed|2740549 +daubentonia|2740595 +daubentonia madagascariensis|2740659 +daubentoniidae|2740740 +dauber|2740846 +daubing|2740870 +daucus|2740927 +daucus carota|2740981 +daucus carota sativa|2741071 +daugavpils|2741169 +daughter|2741229 +daughter cell|2741317 +daughter-in-law|2741269 +daughterly|2741345 +daumier|2741372 +daunt|2741433 +daunted|2741532 +daunting|2741576 +dauntless|2741620 +dauntlessly|2741688 +dauntlessness|2741730 +dauphin|2741796 +davalia bullata|2741820 +davalia bullata mariesii|2741944 +davallia|2742077 +davallia canariensis|2742100 +davallia mariesii|2742199 +davallia pyxidata|2742325 +davalliaceae|2742410 +davenport|2742477 +david|2742575 +david alfaro siqueiros|2742703 +david barnard steinman|2742792 +david ben gurion|2742871 +david bruce|2742968 +david bushnell|2743073 +david crockett|2743175 +david garrick|2743317 +david glasgow farragut|2743405 +david grun|2743483 +david hartley|2743574 +david herbert lawrence|2743631 +david hilbert|2743724 +david hubel|2743783 +david hume|2743837 +david john moore cornwell|2743885 +david lewelyn wark griffith|2743983 +david livingstone|2744119 +david low|2744207 +david mamet|2744295 +david o. selznick|2744355 +david oliver selznick|2744478 +david ricardo|2744605 +david riesman|2744676 +david riesman jr.|2744751 +david rittenhouse|2744830 +david roland smith|2744920 +david sarnoff|2745025 +david siqueiros|2745097 +david smith|2745179 +davidson's penstemon|2745277 +daviesia|2745372 +davis|2745432 +davis cup|2745826 +davis' birthday|2745748 +davit|2745870 +davy|2745891 +davy crockett|2746032 +davy jones|2746173 +davy jones's locker|2746278 +davy lamp|2746392 +davy's gray|2745950 +davys|2746470 +daw|2746581 +dawah|2746631 +dawdle|2746677 +dawdler|2746772 +dawdling|2746855 +dawes|2746918 +dawn|2746983 +dawn horse|2747296 +dawn redwood|2747346 +dawning|2747433 +dawson|2747571 +dawson's encephalitis|2747599 +day|2747882 +day after day|2748511 +day bed|2748548 +day blindness|2748682 +day boarder|2748779 +day book|2748835 +day by day|2749030 +day camp|2749055 +day care|2749090 +day care center|2749218 +day game|2749275 +day in and day out|2749306 +day in day out|2749346 +day jessamine|2749383 +day laborer|2749433 +day labourer|2749504 +day lily|2749575 +day nursery|2749742 +day of atonement|2749799 +day of judgement|2749880 +day of judgment|2750074 +day of reckoning|2750267 +day of remembrance|2750495 +day of rest|2750539 +day of the month|2750585 +day of the week|2750663 +day off|2750711 +day return|2750737 +day school|2750789 +day shift|2750864 +day watch|2750935 +day-after-day|2748283 +day-and-night|2748341 +day-old|2748430 +day-to-day|2748453 +dayan|2750970 +daybed|2751056 +daybook|2751134 +dayboy|2751228 +daybreak|2751256 +daycare|2751394 +daydream|2751441 +daydreamer|2751660 +daydreaming|2751730 +dayflower|2751844 +dayfly|2751896 +daygirl|2751952 +daylight|2751981 +daylight saving|2752336 +daylight savings|2752426 +daylight vision|2752587 +daylight-saving time|2752090 +daylight-savings time|2752180 +daylily|2752670 +daylong|2752713 +daypro|2752754 +days|2752860 +dayspring|2753316 +daystar|2753454 +daytime|2753502 +dayton|2753589 +dayton ax|2753641 +dayton axe|2753709 +daytona beach|2753778 +daze|2753820 +dazed|2753997 +dazedly|2754101 +dazzle|2754126 +dazzled|2754210 +dazzling|2754259 +db|2754373 +dbms|2754407 +dc|2754503 +dccp|2754616 +dci|2754727 +dd|2754801 +dds|2754861 +ddt|2754984 +de|2755069 +de bakey|2756558 +de broglie|2756643 +de facto|2756724 +de facto segregation|2756766 +de forest|2756819 +de gaulle|2756932 +de jure|2757113 +de jure segregation|2757172 +de kooning|2757224 +de l'orme|2757281 +de la mare|2757375 +de luxe|2757452 +de mille|2757559 +de niro|2757764 +de quincey|2757847 +de rigueur|2757910 +de sade|2757941 +de saussure|2758042 +de sica|2758124 +de spinoza|2758213 +de trop|2758302 +de valera|2758350 +de vries|2758427 +de-access|2755134 +de-emphasise|2755269 +de-emphasize|2755333 +de-energise|2755397 +de-energize|2755437 +de-escalate|2755477 +de-escalation|2755575 +de-ice|2755638 +de-iodinase|2755791 +de-iodinate|2755819 +de-iodinating|2755871 +de-iodination|2755908 +de-ionate|2755980 +de-nazification|2756030 +de-stalinisation|2756182 +de-stalinization|2756370 +dea|2758607 +deaccession|2758703 +deacon|2758729 +deaconess|2758838 +deactivate|2758882 +deactivation|2758961 +dead|2759112 +dead air|2760361 +dead animal|2760428 +dead axle|2760497 +dead body|2760521 +dead center|2760560 +dead centre|2760619 +dead drop|2760678 +dead duck|2760702 +dead end|2760729 +dead hand|2760825 +dead hand of the past|2760934 +dead heat|2760994 +dead language|2761031 +dead letter|2761088 +dead load|2761157 +dead mail|2761196 +dead march|2761242 +dead metaphor|2761313 +dead nettle|2761361 +dead on target|2761571 +dead person|2761609 +dead reckoning|2761736 +dead ringer|2761865 +dead room|2761923 +dead sea|2761975 +dead sea scrolls|2762007 +dead set|2762062 +dead soul|2762119 +dead weight|2762246 +dead-air space|2760017 +dead-end|2760046 +dead-end street|2760073 +dead-man's float|2760215 +dead-man's-fingers|2760142 +dead-men's-fingers|2760262 +dead-on|2760335 +deadbeat|2762322 +deadbeat dad|2762357 +deadbolt|2762398 +deaden|2762425 +deadened|2762609 +deadening|2762656 +deadeye|2762817 +deadhead|2762884 +deadlight|2762936 +deadline|2762963 +deadliness|2763001 +deadlock|2763068 +deadlocked|2763134 +deadly|2763176 +deadly nightshade|2763417 +deadly sin|2763624 +deadness|2763667 +deadpan|2763732 +deadwood|2763831 +deae cellulose|2763897 +deaf|2763974 +deaf as a post|2764619 +deaf person|2764685 +deaf to|2764725 +deaf-aid|2764265 +deaf-and-dumb|2764313 +deaf-and-dumb person|2764351 +deaf-mute|2764408 +deaf-muteness|2764491 +deaf-mutism|2764555 +deafen|2764781 +deafened|2764865 +deafening|2764888 +deafness|2764953 +deal|2765020 +deal out|2766347 +dealer|2766464 +dealership|2766661 +dealfish|2766769 +dealignment|2766820 +dealing|2766849 +dealings|2766926 +dealt out|2767139 +deaminate|2767215 +deamination|2767264 +deaminization|2767348 +deaminize|2767432 +dean|2767481 +dean acheson|2767643 +dean gooderham acheson|2767741 +dean martin|2767849 +dean swift|2767944 +deanery|2768023 +deanship|2768121 +dear|2768202 +dearest|2768483 +dearie|2768540 +dearly|2768605 +dearly-won|2768676 +dearness|2768713 +dearth|2768756 +deary|2768844 +death|2768909 +death adder|2769386 +death angel|2769451 +death bell|2769535 +death benefit|2769572 +death camas|2769603 +death camp|2769650 +death cap|2769698 +death chair|2769782 +death chamber|2769857 +death cup|2769916 +death duty|2770000 +death house|2770070 +death instinct|2770116 +death knell|2770164 +death mask|2770264 +death penalty|2770297 +death rate|2770379 +death row|2770544 +death seat|2770590 +death squad|2770619 +death tax|2770650 +death toll|2770720 +death valley|2770756 +death warrant|2770798 +death wish|2770829 +death's head|2769273 +death's-head moth|2769170 +death-roll|2769354 +deathbed|2770877 +deathblow|2770919 +deathless|2770982 +deathlike|2771018 +deathly|2771050 +deathrate|2771109 +deathtrap|2771193 +deathwatch|2771235 +deathwatch beetle|2771375 +deb|2771443 +debacle|2771485 +debar|2771638 +debark|2771871 +debarkation|2771920 +debarment|2771978 +debase|2772029 +debased|2772221 +debasement|2772331 +debaser|2772419 +debasing|2772498 +debatable|2772553 +debate|2772687 +debater|2773047 +debauch|2773106 +debauched|2773321 +debauchee|2773423 +debaucher|2773471 +debauchery|2773536 +debenture|2773637 +debenture bond|2773776 +debile|2773847 +debilitate|2773912 +debilitated|2773954 +debilitating|2774048 +debilitation|2774148 +debilitative|2774215 +debility|2774282 +debit|2774374 +debit card|2774462 +debit entry|2774561 +debit side|2774624 +debonair|2774694 +debonaire|2774788 +debone|2774881 +deboned|2774933 +debonnaire|2774965 +debouch|2775018 +debridement|2775115 +debrief|2775209 +debriefing|2775241 +debris|2775316 +debris storm|2775378 +debris surge|2775438 +debs|2775498 +debt|2775627 +debt ceiling|2775722 +debt instrument|2775760 +debt limit|2775822 +debtor|2775860 +debug|2775929 +debugger|2775966 +debunk|2776038 +debunking|2776130 +debussy|2776170 +debut|2776243 +debutante|2776435 +dec|2776477 +dec 24|2776587 +dec 25|2776632 +decade|2776769 +decadence|2776876 +decadency|2776961 +decadent|2777046 +decadron|2777099 +decaf|2777279 +decaffeinated coffee|2777327 +decagon|2777375 +decagram|2777416 +decahedron|2777482 +decal|2777513 +decalcification|2777640 +decalcify|2777714 +decalcomania|2777778 +decalescence|2777898 +decaliter|2777940 +decalitre|2778018 +decalogue|2778096 +decameter|2778154 +decametre|2778230 +decamp|2778306 +decampment|2778468 +decanedioic acid|2778550 +decanoic acid|2778605 +decant|2778661 +decanter|2778696 +decapitate|2778728 +decapitated|2778760 +decapitation|2778799 +decapod|2778931 +decapod crustacean|2779015 +decapoda|2779062 +decapterus|2779161 +decapterus macarellus|2779220 +decapterus punctatus|2779306 +decarbonise|2779392 +decarbonize|2779487 +decarboxylase|2779582 +decarboxylate|2779612 +decarboxylation|2779669 +decarburise|2779743 +decarburize|2779838 +decasyllabic|2779933 +decasyllable|2779964 +decathlon|2780003 +decatur|2780070 +decay|2780189 +decayable|2780495 +decayed|2780559 +deccan hemp|2780612 +decease|2780733 +deceased|2780853 +deceased person|2781030 +decedent|2781157 +deceit|2781284 +deceitful|2781476 +deceitfully|2781660 +deceitfulness|2781700 +deceive|2781757 +deceiver|2781859 +deceivingly|2781937 +decelerate|2781982 +deceleration|2782094 +december|2782161 +december 31|2782217 +december 8|2782269 +decency|2782345 +decennary|2782431 +decennium|2782501 +decent|2782571 +decentalisation|2782836 +decently|2782893 +decentralisation|2782960 +decentralise|2783020 +decentralised|2783089 +decentralising|2783186 +decentralization|2783261 +decentralize|2783359 +decentralized|2783428 +decentralizing|2783539 +deception|2783614 +deceptive|2783865 +deceptively|2783941 +deceptiveness|2783986 +decertify|2784030 +decibel|2784073 +decide|2784104 +decided|2784287 +decidedly|2784322 +deciding|2784401 +decidua|2784522 +deciduous|2784568 +deciduous holly|2784654 +deciduous plant|2784685 +deciduous tooth|2784738 +decigram|2784805 +decile|2784857 +deciliter|2784890 +decilitre|2784943 +decimal|2784996 +decimal digit|2785107 +decimal fraction|2785143 +decimal notation|2785193 +decimal number system|2785241 +decimal numeration system|2785366 +decimal point|2785491 +decimal system|2785553 +decimal system of classification|2785678 +decimalisation|2785792 +decimalise|2785838 +decimalization|2785927 +decimalize|2785973 +decimate|2786062 +decimation|2786158 +decimeter|2786202 +decimetre|2786253 +decimus junius juvenalis|2786304 +decipher|2786398 +decipherable|2786457 +decipherably|2786502 +deciphered|2786540 +decipherer|2786571 +decipherment|2786636 +decision|2786713 +decision maker|2787016 +decision making|2787073 +decision table|2787132 +decisive|2787182 +decisive factor|2787426 +decisively|2787530 +decisiveness|2787560 +decius|2787692 +deck|2787745 +deck chair|2788034 +deck of cards|2788080 +deck out|2788127 +deck tennis|2788285 +deck up|2788317 +deck-house|2787999 +decked|2788475 +decked out|2788532 +decker|2788589 +deckhand|2788705 +deckle|2788797 +deckle edge|2788913 +deckle-edged|2788861 +deckled|2788946 +declaim|2788998 +declamation|2789064 +declamatory|2789111 +declarable|2789180 +declaration|2789213 +declaration of estimated tax|2789421 +declaration of independence|2789516 +declarative|2789612 +declarative mood|2789773 +declarative sentence|2789879 +declaratory|2789939 +declaratory sentence|2789972 +declare|2790032 +declare oneself|2790277 +declared|2790341 +declarer|2790466 +declassification|2790571 +declassified|2790637 +declassify|2790672 +declaw|2790705 +declension|2790730 +declination|2790948 +decline|2791173 +decline in quality|2791599 +declinometer|2791681 +declivitous|2791779 +declivity|2791837 +declomycin|2791929 +declutch|2792013 +decoagulant|2792041 +decoct|2792147 +decoction|2792254 +decoction mashing|2792299 +decoction process|2792352 +decode|2792405 +decoder|2792446 +decoding|2792512 +decoke|2792589 +decolletage|2792684 +decollete|2792714 +decolonisation|2792759 +decolonise|2792811 +decolonization|2792860 +decolonize|2792912 +decolor|2792961 +decolorise|2793097 +decolorize|2793233 +decolour|2793369 +decolourise|2793505 +decolourize|2793641 +decommission|2793777 +decomposable|2793833 +decompose|2793874 +decomposed|2793997 +decomposing|2794024 +decomposition|2794073 +decomposition reaction|2794287 +decompositional|2794360 +decompound|2794400 +decompound leaf|2794429 +decompress|2794468 +decompressing|2794636 +decompression|2794697 +decompression sickness|2794798 +deconcentrate|2794926 +decongestant|2794995 +deconsecrate|2795063 +deconsecrated|2795127 +deconstruct|2795161 +deconstruction|2795192 +deconstructionism|2795278 +deconstructionist|2795364 +deconstructivism|2795434 +decontaminate|2795467 +decontamination|2795504 +decontrol|2795546 +decor|2795587 +decorate|2795656 +decorated|2795821 +decoration|2796489 +decoration day|2796658 +decorative|2796741 +decorativeness|2796795 +decorator|2796844 +decorous|2797019 +decorousness|2797138 +decorticate|2797202 +decortication|2797267 +decorum|2797363 +decoupage|2797427 +decouple|2797508 +decoy|2797736 +decrease|2797881 +decreased|2798142 +decreasing|2798340 +decreasing monotonic|2798588 +decree|2798637 +decree nisi|2798756 +decreed|2798810 +decrement|2798865 +decrepit|2798924 +decrepitate|2799039 +decrepitation|2799094 +decrepitude|2799147 +decrescendo|2799206 +decriminalisation|2799313 +decriminalise|2799392 +decriminalization|2799535 +decriminalize|2799614 +decry|2799757 +decrypt|2799819 +decryption|2799860 +decubitus|2799937 +decubitus ulcer|2799982 +decuma|2800046 +decumaria|2800081 +decumaria barbara|2800144 +decumaria barbata|2800226 +decumary|2800308 +decumbent|2800372 +decurved|2800429 +decussate|2800456 +decussation|2800529 +ded|2800646 +dedicate|2800713 +dedicated|2800872 +dedicated file server|2800982 +dedication|2801025 +dedifferentiate|2801260 +dedifferentiated|2801293 +dedifferentiation|2801344 +deduce|2801393 +deducible|2801496 +deduct|2801525 +deducted|2801704 +deductible|2801733 +deduction|2801843 +deductive|2802209 +deductive reasoning|2802369 +deed|2802462 +deed of conveyance|2802616 +deed of trust|2802716 +deed over|2802811 +deed poll|2802854 +deedbox|2802903 +deeds|2802934 +deem|2803121 +deems taylor|2803189 +deep|2803273 +deep brown|2804888 +deep cervical vein|2804959 +deep down|2805056 +deep fording|2805123 +deep freeze|2805158 +deep freezer|2805387 +deep in thought|2805469 +deep kiss|2805530 +deep middle cerebral vein|2805592 +deep pocket|2805667 +deep red|2805695 +deep south|2805738 +deep space|2805841 +deep supporting fire|2805873 +deep temporal vein|2805919 +deep water|2805977 +deep-chested|2803893 +deep-dish pie|2803921 +deep-dye|2803956 +deep-eyed|2803978 +deep-fat-fry|2804031 +deep-freeze|2804057 +deep-fried|2804272 +deep-fry|2804305 +deep-laid|2804338 +deep-mined|2804365 +deep-rooted|2804391 +deep-sea|2804476 +deep-sea diver|2804498 +deep-seated|2804553 +deep-set|2804638 +deep-six|2804679 +deep-water|2804863 +deepen|2806013 +deepened|2806128 +deepening|2806168 +deepfreeze|2806250 +deeply|2806343 +deepness|2806380 +deepwater pipefish|2806459 +deepwater squirrelfish|2806529 +deer|2806594 +deer fern|2806940 +deer fly fever|2806986 +deer grass|2807078 +deer hunt|2807131 +deer hunter|2807176 +deer hunting|2807213 +deer mouse|2807258 +deer mushroom|2807312 +deer tick|2807359 +deer trail|2807410 +deer's-ear|2806624 +deer's-ears|2806734 +deerberry|2807436 +deere|2807518 +deerhound|2807564 +deerskin|2807618 +deerstalker|2807644 +deerstalking|2807681 +deface|2807729 +defaced|2807827 +defacement|2807859 +defalcate|2807931 +defalcation|2808000 +defalcator|2808165 +defamation|2808219 +defamatory|2808369 +defame|2808487 +defamer|2808582 +defang|2808695 +default|2808742 +default judgement|2808929 +default judgment|2809051 +default on|2809173 +default option|2809214 +defaulter|2809272 +defeasible|2809341 +defeat|2809372 +defeated|2809571 +defeatism|2809727 +defeatist|2809768 +defecate|2809808 +defecation|2809906 +defecation reflex|2809995 +defecator|2810134 +defect|2810221 +defect of speech|2810420 +defection|2810491 +defective|2810582 +defective pleading|2810674 +defectiveness|2810711 +defector|2810772 +defeminise|2810818 +defeminize|2810876 +defence|2810934 +defence force|2811558 +defence mechanism|2811637 +defence policy|2811783 +defence program|2811872 +defence reaction|2811961 +defence system|2812107 +defenceless|2812202 +defencelessly|2812273 +defencelessness|2812307 +defend|2812378 +defendable|2812632 +defendant|2812676 +defender|2812722 +defender of the faith|2812844 +defending|2812920 +defending team|2812949 +defenestrate|2813000 +defenestration|2813028 +defense|2813090 +defense advanced research projects agency|2813831 +defense attorney|2813994 +defense contractor|2814051 +defense department|2814090 +defense force|2814228 +defense information systems agency|2814307 +defense intelligence agency|2814455 +defense laboratory|2814580 +defense lawyer|2814687 +defense lawyers|2814744 +defense logistics agency|2814900 +defense mechanism|2815023 +defense policy|2815169 +defense program|2815258 +defense reaction|2815347 +defense reutilization and marketing service|2815493 +defense secretary|2815659 +defense system|2815795 +defense team|2815890 +defense technical information center|2815991 +defenseless|2816143 +defenselessness|2816259 +defensible|2816330 +defensive|2816374 +defensive attitude|2816595 +defensive measure|2816658 +defensive structure|2816724 +defensiveness|2816792 +defer|2816841 +deference|2817017 +deferent|2817198 +deferential|2817249 +deferentially|2817300 +deferment|2817335 +deferral|2817389 +deferred|2817477 +deferred payment|2817513 +defervesce|2817554 +defervescence|2817581 +defiance|2817649 +defiant|2817748 +defiantly|2817907 +defibrillate|2817953 +defibrillation|2817995 +defibrillator|2818044 +deficiency|2818085 +deficiency disease|2818166 +deficient|2818202 +deficit|2818423 +deficit spending|2818514 +defilade|2818614 +defile|2818655 +defiled|2818896 +defilement|2818951 +defiler|2819014 +definable|2819051 +define|2819083 +defined|2819233 +defining|2819375 +definite|2819409 +definite article|2819550 +definite integral|2819584 +definite quantity|2819620 +definitely|2819671 +definiteness|2819750 +definition|2819803 +definitive|2819873 +definitive host|2819994 +deflagrate|2820024 +deflagration|2820077 +deflate|2820118 +deflated|2820337 +deflation|2820419 +deflationary|2820558 +deflator|2820593 +deflect|2820618 +deflection|2820864 +deflective|2821118 +deflector|2821157 +deflexion|2821183 +defloration|2821388 +deflower|2821572 +defoe|2821660 +defoliant|2821708 +defoliate|2821754 +defoliated|2821827 +defoliation|2821866 +defoliator|2821945 +deforest|2821972 +deforestation|2822018 +deform|2822134 +deformation|2822376 +deformational|2822503 +deformed|2822556 +deformity|2822625 +defraud|2822742 +defray|2822852 +defrayal|2822872 +defrayment|2822945 +defrock|2823018 +defrost|2823060 +defroster|2823132 +deft|2823172 +deftly|2823228 +deftness|2823266 +defunct|2823337 +defunctness|2823383 +defuse|2823421 +defusing|2823468 +defy|2823529 +degage|2823659 +degas|2823730 +degauss|2823776 +degaussing|2823837 +degeneracy|2823889 +degenerate|2824013 +degeneration|2824213 +degenerative|2824380 +degenerative arthritis|2824410 +degenerative disorder|2824494 +degenerative joint disease|2824540 +deglutition|2824624 +deglycerolise|2824695 +deglycerolize|2824746 +degradation|2824797 +degrade|2824884 +degraded|2825029 +degrader|2825159 +degrading|2825238 +degree|2825327 +degree celsius|2825576 +degree centigrade|2825642 +degree day|2825711 +degree fahrenheit|2825776 +degree of a polynomial|2825830 +degree of a term|2825869 +degree of freedom|2825902 +degree program|2825993 +degressive|2826071 +degust|2826121 +degustation|2826162 +dehisce|2826235 +dehiscence|2826294 +dehiscent|2826333 +dehong dai|2826362 +dehorn|2826419 +dehumanisation|2826482 +dehumanise|2826544 +dehumanised|2826656 +dehumanization|2826706 +dehumanize|2826768 +dehumanized|2826880 +dehumidify|2826930 +dehydrate|2826962 +dehydrated|2827070 +dehydrated food|2827134 +dehydrated foods|2827199 +dehydration|2827310 +dehydrogenate|2827439 +dehydroretinol|2827482 +deice|2827563 +deicer|2827635 +deictic|2827675 +deictic word|2827726 +deific|2827761 +deification|2827786 +deify|2827898 +deign|2827944 +deiist|2827987 +deimos|2828022 +deinocheirus|2828055 +deinonychus|2828090 +deipnosophist|2828122 +deism|2828173 +deist|2828213 +deistic|2828260 +deity|2828295 +deixis|2828367 +deja vu|2828393 +deject|2828419 +dejected|2828511 +dejectedly|2828750 +dejection|2828784 +dejeuner|2828934 +dekagram|2828986 +dekaliter|2829052 +dekalitre|2829130 +dekameter|2829208 +dekametre|2829284 +dekker|2829360 +dekko|2829451 +del rio|2829490 +delacroix|2829520 +delairea|2829608 +delairea odorata|2829670 +delapidate|2829750 +delavirdine|2829791 +delaware|2829876 +delaware bay|2830101 +delaware memorial bridge|2830140 +delaware river|2830217 +delawarean|2830271 +delawarian|2830322 +delay|2830373 +delay line|2830660 +delayed|2830724 +delayed action|2830883 +delayed allergy|2830917 +delayed-action|2830851 +delayer|2830994 +delbruck|2831064 +delectability|2831129 +delectable|2831223 +delectation|2831353 +delegacy|2831427 +delegate|2831596 +delegating|2831713 +delegation|2831817 +delete|2831993 +deleterious|2832110 +deletion|2832157 +delf|2832265 +delft|2832309 +delhi|2832336 +delhi boil|2832396 +deli|2832553 +deliberate|2832601 +deliberate defence|2832897 +deliberate defense|2832978 +deliberately|2833059 +deliberateness|2833173 +deliberation|2833278 +deliberative|2833513 +delibes|2833546 +delible|2833622 +delicacy|2833650 +delicate|2834042 +delicately|2834340 +delicatessen|2834383 +delicatessen food|2834473 +delichon|2834530 +delichon urbica|2834583 +delicious|2834644 +deliciously|2834808 +deliciousness|2834871 +delight|2834965 +delighted|2835166 +delightful|2835259 +delilah|2835298 +delimit|2835430 +delimitate|2835559 +delimitation|2835667 +delimited|2835748 +delineate|2835811 +delineated|2836086 +delineation|2836219 +delineative|2836458 +delinquency|2836506 +delinquent|2836688 +deliquesce|2836849 +deliquescent|2836924 +deliquium|2836958 +delirious|2837019 +delirium|2837106 +delirium tremens|2837255 +delius|2837295 +deliver|2837344 +deliver the goods|2837913 +deliverable|2837986 +deliverance|2838079 +deliverer|2838142 +delivery|2838459 +delivery boy|2838836 +delivery truck|2838889 +delivery van|2838942 +deliveryman|2838995 +dell|2839048 +delmonico steak|2839083 +delonix|2839145 +delonix regia|2839202 +delorme|2839342 +delouse|2839434 +delphi|2839482 +delphian|2839534 +delphic|2839597 +delphic oracle|2839705 +delphinapterus|2839802 +delphinapterus leucas|2839875 +delphinidae|2839955 +delphinium|2840021 +delphinium ajacis|2840048 +delphinus|2840134 +delphinus delphis|2840223 +delta|2840291 +delta hepatitis|2840395 +delta iron|2840446 +delta ray|2840491 +delta rhythm|2840528 +delta wave|2840601 +deltasone|2840674 +deltoid|2840801 +deltoid eminence|2840912 +deltoid leaf|2840986 +deltoid muscle|2841020 +deltoid tuberosity|2841104 +delude|2841178 +deluge|2841236 +delusion|2841717 +delusional|2841889 +delusional disorder|2841933 +delusions of grandeur|2842038 +delusions of persecution|2842095 +delusive|2842155 +delusory|2842191 +deluxe|2842226 +delve|2842326 +demagnetisation|2842395 +demagnetise|2842483 +demagnetization|2842576 +demagnetize|2842664 +demagog|2842757 +demagogic|2842856 +demagogical|2842944 +demagogue|2843032 +demagoguery|2843131 +demagogy|2843184 +demand|2843237 +demand deposit|2843660 +demand feeding|2843705 +demand for explanation|2843744 +demand for identification|2843808 +demand loan|2843853 +demand note|2843889 +demand-pull inflation|2843605 +demander|2843944 +demanding|2844015 +demantoid|2844163 +demarcate|2844192 +demarcation|2844354 +demarcation line|2844483 +demarche|2844549 +demasculinise|2844572 +demasculinize|2844689 +dematerialise|2844806 +dematerialize|2844868 +dematiaceae|2844930 +demavend|2844996 +demean|2845031 +demeaning|2845122 +demeaningly|2845185 +demeanor|2845219 +demeanour|2845291 +demeclocycline hydrochloride|2845363 +demented|2845436 +dementedly|2845527 +dementedness|2845569 +dementia|2845609 +dementia praecox|2845649 +demerara|2845746 +demerara rum|2845889 +demerara sugar|2845924 +demerit|2845969 +demerol|2846029 +demesne|2846099 +demeter|2846207 +demetrius|2846244 +demetrius i|2846339 +demetrius poliorcetes|2846436 +demi-glaze|2846543 +demiglace|2846579 +demigod|2846615 +demijohn|2846701 +demilitarise|2846726 +demilitarize|2846801 +demilitarized zone|2846876 +demille|2846913 +demimondaine|2847023 +demimonde|2847171 +demineralisation|2847230 +demineralise|2847356 +demineralization|2847422 +demineralize|2847548 +demise|2847614 +demisemiquaver|2847653 +demist|2847719 +demister|2847755 +demitasse|2847787 +demiurge|2847846 +demo|2847892 +demob|2847986 +demobilisation|2848044 +demobilise|2848098 +demobilization|2848206 +demobilize|2848260 +democracy|2848368 +democrat|2848584 +democratic|2848706 +democratic and popular republic of algeria|2849030 +democratic front for the liberation of palestine|2849172 +democratic party|2849421 +democratic people's republic of korea|2849486 +democratic republic of sao tome and principe|2849624 +democratic republic of the congo|2849829 +democratic socialist republic of sri lanka|2849961 +democratic-republican party|2848943 +democratisation|2850092 +democratise|2850146 +democratization|2850225 +democratize|2850279 +democritus|2850358 +demode|2850401 +demodulate|2850496 +demodulation|2850564 +demodulator|2850596 +demogorgon|2850636 +demographer|2850695 +demographic|2850762 +demographist|2850809 +demography|2850876 +demoiselle|2850920 +demolish|2851036 +demolished|2851198 +demolishing|2851245 +demolition|2851319 +demon|2851415 +demon-ridden|2851563 +demonetisation|2851596 +demonetise|2851665 +demonetization|2851714 +demonetize|2851783 +demoniac|2851832 +demoniacal|2851962 +demoniacally|2852052 +demonic|2852086 +demonisation|2852176 +demonise|2852239 +demonism|2852286 +demonization|2852364 +demonize|2852427 +demonolatry|2852474 +demonstrability|2852528 +demonstrable|2852633 +demonstrably|2852724 +demonstrate|2852771 +demonstrated|2853029 +demonstration|2853079 +demonstrative|2853248 +demonstrative of|2853410 +demonstrative pronoun|2853447 +demonstrativeness|2853500 +demonstrator|2853553 +demoralisation|2853687 +demoralise|2853814 +demoralised|2854017 +demoralising|2854087 +demoralization|2854161 +demoralize|2854288 +demoralized|2854564 +demoralizing|2854634 +demosthenes|2854708 +demosthenic|2854840 +demote|2854971 +demotic|2855056 +demotion|2855142 +dempsey|2855167 +demulcent|2855272 +demulen|2855377 +demulsify|2855515 +demur|2855578 +demure|2855655 +demureness|2855693 +demurrage|2855757 +demurral|2855803 +demurrer|2855846 +demyelinate|2855966 +demyelination|2856004 +demystify|2856049 +demythologisation|2856095 +demythologise|2856152 +demythologised|2856209 +demythologization|2856257 +demythologize|2856314 +demythologized|2856371 +den|2856419 +den haag|2856589 +den mother|2856669 +den-mother|2856521 +denali|2856737 +denali fault|2856811 +denali national park|2856890 +denary|2856955 +denationalisation|2857016 +denationalise|2857076 +denationalization|2857133 +denationalize|2857193 +denaturalise|2857250 +denaturalize|2857345 +denaturant|2857440 +denature|2857477 +denatured|2857569 +denatured alcohol|2857620 +denaturised|2857704 +denaturized|2857755 +denazification|2857806 +denazify|2857861 +dendranthema|2857887 +dendranthema grandifloruom|2857961 +dendraspis|2858115 +dendriform|2858207 +dendrite|2858329 +dendritic|2858371 +dendroaspis|2858413 +dendroaspis augusticeps|2858506 +dendrobium|2858581 +dendrocalamus|2858627 +dendrocalamus giganteus|2858714 +dendrocolaptes|2858801 +dendrocolaptidae|2858872 +dendroctonus|2858951 +dendroctonus rufipennis|2859021 +dendroica|2859109 +dendroica auduboni|2859165 +dendroica coronata|2859277 +dendroica fusca|2859382 +dendroica petechia|2859485 +dendroica striate|2859604 +dendroica tigrina|2859690 +dendroid|2859783 +dendroidal|2859905 +dendrolagus|2860027 +dendromecon|2860091 +deneb|2860164 +denebola|2860190 +deng xiaoping|2860222 +dengue|2860322 +dengue fever|2860398 +deniable|2860474 +denial|2860559 +denier|2860907 +denigrate|2861002 +denigrating|2861158 +denigration|2861276 +denigrative|2861440 +denigratory|2861558 +denim|2861676 +denis diderot|2861772 +denisonia|2861829 +denisonia superba|2861888 +denitrify|2861964 +denizen|2862001 +denmark|2862122 +denmark vesey|2862215 +dennis gabor|2862312 +dennstaedtia|2862363 +dennstaedtia punctilobula|2862428 +dennstaedtiaceae|2862549 +denominate|2862628 +denomination|2862658 +denominational|2862790 +denominationalism|2862872 +denominator|2862981 +denotation|2863010 +denotative|2863093 +denotatum|2863249 +denote|2863277 +denotive|2863362 +denouement|2863483 +denounce|2863602 +denouncement|2863797 +dense|2863843 +dense blazing star|2864061 +dense-leaved elodea|2863996 +densely|2864173 +denseness|2864219 +densification|2864369 +densimeter|2864440 +densitometer|2864528 +densitometry|2864678 +density|2864742 +dent|2864852 +dent corn|2865063 +dental|2865112 +dental amalgam|2865168 +dental anatomy|2865212 +dental appliance|2865270 +dental assistant|2865303 +dental care|2865361 +dental caries|2865409 +dental consonant|2865464 +dental floss|2865528 +dental gold|2865568 +dental hygienist|2865601 +dental implant|2865657 +dental medicine|2865689 +dental orthopaedics|2865762 +dental orthopedics|2865885 +dental plaque|2866008 +dental plate|2866055 +dental practice|2866108 +dental practitioner|2866142 +dental procedure|2866225 +dental school|2866269 +dental surgeon|2866340 +dental surgery|2866405 +dental technician|2866466 +dentaria|2866514 +dentaria bulbifera|2866578 +dentaria diphylla|2866713 +dentate|2866862 +dentate leaf|2866885 +dentate nucleus|2866928 +dented|2866961 +denticle|2866999 +denticulate|2867023 +denticulate leaf|2867050 +dentifrice|2867089 +dentin|2867142 +dentine|2867205 +dentist|2867267 +dentist's drill|2867350 +dentistry|2867392 +dentition|2867465 +denture|2867580 +denturist|2867633 +denudate|2867681 +denudation|2867758 +denude|2867831 +denuded|2867873 +denumerable|2867919 +denunciation|2867982 +denunciative|2868028 +denunciatory|2868099 +denver|2868170 +deny|2868242 +deodar|2868460 +deodar cedar|2868548 +deodorant|2868636 +deodorise|2868701 +deodorize|2868761 +deodourant|2868821 +deodourise|2868886 +deontic logic|2868946 +deossification|2868981 +deoxidise|2869040 +deoxidize|2869083 +deoxyadenosine|2869126 +deoxyadenosine monophosphate|2869161 +deoxycytidine|2869212 +deoxycytidine monophosphate|2869255 +deoxyephedrine|2869305 +deoxyguanosine|2869492 +deoxyguanosine monophosphate|2869537 +deoxyribonucleic acid|2869588 +deoxyribose|2869654 +deoxythymidine|2869705 +deoxythymidine monophosphate|2869750 +depardieu|2869801 +deparia|2869890 +deparia acrostichoides|2869940 +depart|2870043 +departed|2870347 +departer|2870588 +departing|2870635 +department|2870694 +department head|2870828 +department of agriculture|2870872 +department of anthropology|2870994 +department of biology|2871074 +department of chemistry|2871144 +department of commerce|2871218 +department of commerce and labor|2871327 +department of computer science|2871423 +department of corrections|2871483 +department of defense|2871578 +department of defense laboratory system|2871719 +department of economics|2871880 +department of education|2871954 +department of energy|2872063 +department of energy intelligence|2872164 +department of english|2872310 +department of health and human services|2872402 +department of health education and welfare|2872542 +department of history|2872658 +department of housing and urban development|2872728 +department of justice|2872880 +department of justice canada|2872985 +department of labor|2873094 +department of linguistics|2873191 +department of local government|2873269 +department of mathematics|2873348 +department of music|2873426 +department of philosophy|2873492 +department of physics|2873568 +department of psychology|2873638 +department of sociology|2873714 +department of state|2873788 +department of the federal government|2873885 +department of the interior|2873987 +department of the treasury|2874104 +department of transportation|2874240 +department of veterans affairs|2874347 +department store|2874442 +departmental|2874535 +departure|2874565 +departure gate|2874759 +departure lounge|2874788 +departure tax|2874847 +departure time|2874903 +depend|2874965 +depend on|2875045 +depend upon|2875120 +dependability|2875195 +dependable|2875289 +dependableness|2875532 +dependably|2875626 +dependance|2875665 +dependant|2875713 +dependant on|2875858 +dependence|2875943 +dependency|2876075 +dependent|2876293 +dependent clause|2876668 +dependent on|2876720 +dependent variable|2876805 +depending on|2876860 +depersonalisation|2876945 +depersonalisation disorder|2877231 +depersonalisation neurosis|2877406 +depersonalise|2877581 +depersonalization|2877648 +depersonalization disorder|2877934 +depersonalization neurosis|2878109 +depersonalize|2878284 +depict|2878351 +depicted|2878494 +depicted object|2878564 +depicting|2878611 +depiction|2878686 +depictive|2878992 +depigmentation|2879040 +depilate|2879087 +depilation|2879144 +depilator|2879238 +depilatory|2879296 +depilous|2879404 +deplane|2879431 +depletable|2879456 +deplete|2879488 +depleted|2879578 +depletion|2879640 +deplorable|2879722 +deplorably|2879887 +deplore|2879932 +deploy|2880058 +deployment|2880108 +deplumate|2880149 +deplume|2880207 +depokene|2880342 +depolarisation|2880451 +depolarise|2880497 +depolarization|2880548 +depolarize|2880594 +depone|2880645 +deponent|2880682 +depopulate|2880738 +depopulated|2880781 +depopulation|2880814 +deport|2880860 +deportation|2881041 +deportee|2881165 +deportment|2881226 +depose|2881298 +deposed|2881400 +deposit|2881464 +deposit account|2881932 +deposit box|2881994 +deposition|2882105 +depositor|2882261 +depository|2882289 +depository financial institution|2882350 +depository library|2882497 +depot|2882563 +deprave|2882675 +depraved|2882799 +depravity|2882935 +deprecate|2883028 +deprecating|2883110 +deprecation|2883218 +deprecative|2883305 +deprecatory|2883429 +depreciate|2883537 +depreciating|2883675 +depreciation|2883734 +depreciation allowance|2883887 +depreciation charge|2883940 +depreciation rate|2883976 +depreciative|2884045 +depreciator|2884197 +depreciatory|2884265 +depredation|2884417 +depress|2884522 +depressant|2884745 +depressed|2885049 +depressed fracture|2885206 +depressing|2885249 +depression|2885383 +depressive|2885960 +depressive disorder|2886056 +depressor|2886201 +depressor muscle|2886319 +depressor nerve|2886387 +depressurise|2886435 +depressurize|2886500 +deprivation|2886565 +deprive|2886690 +deprived|2886784 +deprived of|2886832 +depth|2886869 +depth bomb|2887033 +depth charge|2887071 +depth finder|2887109 +depth gage|2887155 +depth gauge|2887198 +depth psychology|2887241 +deputation|2887305 +depute|2887481 +deputise|2887620 +deputize|2887746 +deputy|2887872 +deputy sheriff|2888027 +der fuhrer|2888091 +deracinate|2888178 +deracination|2888267 +derail|2888352 +derailment|2888461 +derain|2888511 +derange|2888555 +deranged|2888648 +derangement|2888692 +derate|2888786 +derby|2888813 +derecognise|2888871 +derecognize|2888914 +deregulate|2888957 +deregulating|2888997 +deregulation|2889059 +derelict|2889121 +dereliction|2889244 +derequisition|2889431 +derestrict|2889493 +deride|2889533 +derision|2889561 +derisive|2889665 +derisively|2889731 +derisorily|2889782 +derisory|2889833 +derivable|2889939 +derivation|2889966 +derivational|2890244 +derivational morphology|2890279 +derivative|2890323 +derivative instrument|2890575 +derive|2890678 +derived|2890819 +derived function|2890945 +deriving|2891080 +derma|2891143 +dermabrasion|2891180 +dermacentor|2891219 +dermacentor variabilis|2891286 +dermal|2891386 +dermaptera|2891460 +dermatitis|2891521 +dermatobia|2891548 +dermatobia hominis|2891612 +dermatoglyphic|2891679 +dermatoglyphics|2891743 +dermatologic|2891854 +dermatological|2891917 +dermatologist|2891980 +dermatology|2892045 +dermatome|2892093 +dermatomycosis|2892132 +dermatomyositis|2892197 +dermatophytosis|2892231 +dermatosclerosis|2892296 +dermatosis|2892373 +dermestidae|2892468 +dermic|2892537 +dermis|2892567 +dermochelyidae|2892604 +dermochelys|2892680 +dermochelys coriacea|2892745 +dermoid cyst|2892868 +dermoptera|2892895 +derogate|2892956 +derogation|2893029 +derogative|2893134 +derogatory|2893193 +derrick|2893252 +derrida|2893306 +derriere|2893375 +derring-do|2893586 +derringer|2893631 +derris|2893688 +derris elliptica|2893715 +derris root|2893785 +derv|2893838 +dervish|2893875 +des|2893918 +des moines|2894146 +desalinate|2894207 +desalination|2894263 +desalinisation|2894364 +desalinise|2894465 +desalinization|2894521 +desalinize|2894622 +desalt|2894678 +descale|2894734 +descant|2894788 +descant on|2894937 +descartes|2894962 +descend|2895032 +descendant|2895172 +descendants|2895250 +descendent|2895345 +descender|2895423 +descending|2895518 +descending aorta|2895674 +descending colon|2895706 +descending node|2895738 +descensus|2895768 +descensus uteri|2895849 +descent|2895915 +describable|2896346 +describe|2896379 +described|2896556 +description|2896608 +descriptive|2896706 +descriptive adjective|2896810 +descriptive anthropology|2896872 +descriptive clause|2896931 +descriptive geometry|2897017 +descriptive linguistics|2897076 +descriptor|2897144 +descry|2897213 +descurainia|2897249 +descurainia pinnata|2897322 +desecrate|2897407 +desecrated|2897531 +desecration|2897594 +desegrated|2897669 +desegregate|2897727 +desegregation|2897762 +desensitisation|2897822 +desensitisation procedure|2897882 +desensitisation technique|2898088 +desensitise|2898294 +desensitised|2898386 +desensitising|2898465 +desensitization|2898510 +desensitization procedure|2898570 +desensitization technique|2898776 +desensitize|2898982 +desensitized|2899074 +desensitizing|2899153 +desert|2899212 +desert boot|2899422 +desert four o'clock|2899498 +desert fox|2899593 +desert holly|2899658 +desert iguana|2899710 +desert lynx|2899777 +desert mariposa tulip|2899834 +desert olive|2899924 +desert paintbrush|2899991 +desert pea|2900068 +desert plant|2900176 +desert plume|2900281 +desert rat|2900369 +desert rheumatism|2900434 +desert rose|2900534 +desert sand verbena|2900635 +desert selaginella|2900693 +desert soil|2900782 +desert sunflower|2900827 +desert tortoise|2900892 +desert willow|2900945 +deserted|2900998 +deserter|2901068 +desertic soil|2901172 +desertification|2901217 +desertion|2901278 +deserts|2901369 +deserve|2901523 +deserved|2901549 +deserving|2901579 +deservingness|2901620 +desex|2901676 +desexualise|2901764 +desexualize|2901881 +deshabille|2901998 +desiccant|2902046 +desiccate|2902108 +desiccated|2902244 +desiccation|2902339 +desideratum|2902454 +desiderius erasmus|2902527 +design|2902667 +design criteria|2903308 +designate|2903352 +designated|2903510 +designated driver|2903539 +designated hitter|2903573 +designation|2903630 +designative|2903808 +designatum|2903849 +designed|2903878 +designedly|2903998 +designer|2904095 +designer drug|2904353 +designing|2904464 +desirability|2904537 +desirable|2904640 +desirableness|2904832 +desire|2904934 +desire to know|2905074 +desired|2905154 +desirous|2905233 +desist|2905348 +desk|2905380 +desk clerk|2905519 +desk dictionary|2905574 +desk officer|2905640 +desk phone|2905687 +desk sergeant|2905737 +desk-bound|2905400 +deskbound|2905808 +deskman|2905847 +desktop|2905918 +desktop computer|2906020 +desktop publishing|2906081 +desmanthus|2906132 +desmanthus ilinoensis|2906198 +desmid|2906301 +desmidiaceae|2906367 +desmidium|2906440 +desmodium|2906502 +desmodium gyrans|2906565 +desmodium motorium|2906692 +desmodium purpureum|2906821 +desmodium tortuosum|2906940 +desmodontidae|2907059 +desmodus|2907131 +desmodus rotundus|2907186 +desmograthus|2907260 +desmond tutu|2907330 +desolate|2907418 +desolated|2907760 +desolately|2907839 +desolation|2907873 +desorb|2908057 +desorption|2908136 +desoxyribonucleic acid|2908203 +despair|2908269 +despairing|2908330 +despairingly|2908369 +despatch|2908403 +desperado|2908705 +desperate|2908782 +desperate criminal|2908988 +desperate measure|2909065 +desperate straits|2909109 +desperately|2909169 +desperation|2909198 +despicability|2909287 +despicable|2909363 +despicableness|2909442 +despiramine|2909518 +despisal|2909604 +despise|2909644 +despised|2909695 +despising|2909744 +despite|2909784 +despiteful|2909857 +despitefully|2909907 +despoil|2909939 +despoilation|2910061 +despoiled|2910165 +despoiler|2910224 +despoilment|2910309 +despoina|2910413 +despoliation|2910473 +despond|2910577 +despondence|2910602 +despondency|2910677 +despondent|2910752 +despondently|2910791 +despot|2910825 +despotic|2910876 +despotical|2911011 +despotism|2911058 +desquamate|2911302 +desquamation|2911363 +dessert|2911421 +dessert apple|2911458 +dessert plate|2911500 +dessert spoon|2911529 +dessert wine|2911607 +dessertspoon|2911639 +dessertspoonful|2911690 +dessiatine|2911741 +destabilisation|2911786 +destabilise|2911834 +destabilization|2911913 +destabilize|2911999 +destalinisation|2912078 +destalinise|2912168 +destalinization|2912238 +destalinize|2912328 +destination|2912398 +destine|2912514 +destined|2912595 +destiny|2912665 +destitute|2912836 +destitute of|2912917 +destitution|2912994 +destress|2913047 +destroy|2913111 +destroyable|2913223 +destroyed|2913257 +destroyer|2913709 +destroyer escort|2913832 +destroying angel|2913889 +destruct|2914001 +destructibility|2914054 +destructible|2914093 +destruction|2914152 +destruction fire|2914289 +destructive|2914327 +destructive distillation|2914674 +destructive metabolism|2914741 +destructive-metabolic|2914606 +destructiveness|2914844 +desuetude|2914877 +desultory|2914929 +desynchronisation|2914960 +desynchronise|2915063 +desynchronization|2915132 +desynchronize|2915235 +desynchronizing|2915304 +desyrel|2915407 +detach|2915558 +detachable|2915655 +detached|2915694 +detached house|2915887 +detached retina|2915933 +detachment|2916064 +detachment of the retina|2916264 +detail|2916395 +detail file|2916739 +detailed|2916791 +detailing|2916838 +details|2916905 +detain|2917211 +detainee|2917334 +detect|2917388 +detectable|2917439 +detected|2917512 +detecting|2917587 +detection|2917674 +detective|2917886 +detective agency|2917992 +detective novel|2918025 +detective story|2918070 +detective work|2918126 +detector|2918213 +detent|2918318 +detente|2918360 +detention|2918412 +detention camp|2918508 +detention cell|2918607 +detention centre|2918683 +detention home|2918759 +detention house|2918858 +deter|2918957 +deterge|2919032 +detergence|2919068 +detergency|2919118 +detergent|2919168 +detergent builder|2919307 +deteriorate|2919357 +deterioration|2919449 +determent|2919555 +determinable|2919613 +determinant|2919706 +determinate|2919882 +determinateness|2919976 +determination|2920029 +determinative|2920249 +determine|2920452 +determined|2920798 +determinedly|2920956 +determiner|2921053 +determining|2921256 +determining factor|2921329 +determinism|2921471 +determinist|2921536 +deterministic|2921613 +deterrence|2921644 +deterrent|2921768 +deterrent example|2921876 +detersive|2921975 +detest|2922014 +detestable|2922043 +detestably|2922154 +detestation|2922205 +detested|2922295 +dethaw|2922344 +dethrone|2922416 +dethronement|2922451 +detonate|2922499 +detonating|2922579 +detonating device|2922628 +detonating fuse|2922686 +detonation|2922748 +detonative|2922818 +detonator|2922848 +detour|2922906 +detox|2922970 +detoxicate|2923004 +detoxification|2923064 +detoxify|2923130 +detract|2923212 +detraction|2923304 +detractive|2923409 +detractor|2923440 +detrain|2923508 +detransitivise|2923533 +detransitivize|2923622 +detribalisation|2923711 +detribalise|2923799 +detribalization|2923844 +detribalize|2923932 +detriment|2923977 +detrimental|2924024 +detrimentally|2924087 +detrition|2924129 +detritus|2924345 +detroit|2924429 +detroit river|2924506 +detusk|2924549 +deuce|2924601 +deuce-ace|2924713 +deuced|2924857 +deucedly|2924980 +deus ex machina|2925030 +deuteranopia|2925088 +deuteranopic|2925210 +deuterium|2925260 +deuterium oxide|2925316 +deuteromycetes|2925363 +deuteromycota|2925429 +deuteromycotina|2925562 +deuteron|2925697 +deuteronomy|2925724 +deutsche mark|2925782 +deutschland|2925869 +deutschmark|2925975 +deutzia|2926060 +devaluate|2926087 +devaluation|2926197 +devalue|2926287 +devalued|2926426 +devanagari|2926465 +devanagari script|2926568 +devastate|2926678 +devastated|2926815 +devastating|2926894 +devastation|2927035 +develop|2927234 +developed|2928105 +developer|2928218 +developing|2928275 +development|2928391 +developmental|2928766 +developmental age|2928823 +developmental anatomy|2928854 +developmental learning|2928909 +developmental psychology|2928962 +deverbal noun|2929065 +devi|2929112 +deviance|2929143 +deviant|2929276 +deviate|2929365 +deviated nasal septum|2929516 +deviated septum|2929563 +deviation|2929630 +deviationism|2929861 +deviationist|2929915 +device|2929955 +device characteristic|2930153 +device driver|2930208 +devices|2930278 +devil|2930552 +devil dog|2932493 +devil grass|2932596 +devil lily|2932702 +devil nettle|2932764 +devil ray|2932898 +devil tree|2932960 +devil worshiper|2933019 +devil's advocate|2931048 +devil's apples|2931089 +devil's cigar|2931167 +devil's claw|2931206 +devil's darning needle|2931357 +devil's fig|2931556 +devil's flax|2931636 +devil's food|2931723 +devil's food cake|2931778 +devil's milk|2931833 +devil's tongue|2931957 +devil's turnip|2932040 +devil's urn|2932104 +devil's walking stick|2932141 +devil's weed|2932236 +devil-may-care|2932304 +devil-worship|2932439 +deviled egg|2933074 +devilfish|2933112 +devilise|2933265 +devilish|2933332 +devilishly|2933463 +devilize|2933558 +devilment|2933625 +devilry|2933776 +deviltry|2933979 +devilwood|2934181 +devious|2934241 +deviousness|2934350 +devisal|2934426 +devise|2934465 +devisee|2934710 +deviser|2934745 +devising|2934833 +devisor|2934880 +devitalisation|2934914 +devitalise|2934993 +devitalization|2935031 +devitalize|2935110 +devitrify|2935148 +devoice|2935237 +devoid|2935307 +devoid of|2935330 +devoir|2935407 +devolution|2935443 +devolve|2935558 +devolve on|2935695 +devolvement|2935770 +devon|2935857 +devonian|2935942 +devonian period|2936024 +devonshire|2936113 +devonshire cream|2936157 +devote|2936220 +devoted|2936357 +devotedness|2936401 +devotee|2936436 +devotion|2936477 +devotional|2936630 +devour|2936656 +devoured|2936786 +devourer|2936819 +devouring|2936850 +devout|2936899 +devoutly|2936981 +devoutness|2937006 +devries|2937056 +dew|2937154 +dew point|2937191 +dew worm|2937239 +dewar|2937378 +dewar flask|2937485 +dewberry|2937551 +dewberry bush|2937642 +dewdrop|2937720 +dewey|2937753 +dewey decimal classification|2937946 +dewey decimal system|2938089 +deweyan|2938224 +dewitt clinton|2938279 +dewlap|2938367 +dewy|2938403 +dewy-eyed|2938429 +dexamethasone|2938486 +dexamethasone intensol|2938657 +dexedrine|2938851 +dexone|2938940 +dexter|2939118 +dexterity|2939142 +dexterous|2939235 +dexterously|2939275 +dextral|2939313 +dextrality|2939409 +dextroamphetamine sulphate|2939468 +dextrocardia|2939547 +dextroglucose|2939611 +dextrorotary|2939663 +dextrorotation|2939723 +dextrorotatory|2939795 +dextrorsal|2939855 +dextrorse|2939893 +dextrose|2939931 +dextrous|2939983 +dextrously|2940023 +dflp|2940061 +dg|2940266 +dhak|2940318 +dhaka|2940379 +dhal|2940445 +dharhan|2940548 +dharma|2940578 +dhaulagiri|2940613 +dhava|2940658 +dhawa|2940684 +dhegiha|2940710 +dhobi itch|2940786 +dhodhekanisos|2940831 +dhole|2940893 +dhoti|2940930 +dhow|2940988 +dhu al-hijja|2941170 +dhu al-qadah|2941240 +dhu'l-hijja|2941030 +dhu'l-qa'dah|2941099 +di-iodotyrosine|2941311 +dia|2941349 +diabatic|2941450 +diabeta|2941477 +diabetes|2941553 +diabetes insipidus|2941608 +diabetes mellitus|2941645 +diabetic|2941684 +diabetic acidosis|2941798 +diabetic coma|2941847 +diabetic diet|2941904 +diabolatry|2941932 +diabolic|2941986 +diabolical|2942147 +diabolically|2942306 +diabolise|2942349 +diabolism|2942416 +diabolist|2942494 +diabolize|2942540 +diacalpa|2942607 +diacetylmorphine|2942660 +diachronic|2942710 +diacritic|2942752 +diacritical|2942827 +diacritical mark|2942873 +diadem|2942914 +diadophis|2942968 +diadromous|2943027 +diaeresis|2943058 +diaghilev|2943120 +diaglyph|2943221 +diagnosable|2943273 +diagnose|2943307 +diagnosing|2943427 +diagnosis|2943484 +diagnostic|2943541 +diagnostic assay|2943636 +diagnostic procedure|2943684 +diagnostic program|2943753 +diagnostic technique|2943821 +diagnostic test|2943890 +diagnostician|2943938 +diagnostics|2944003 +diagonal|2944060 +diagonal matrix|2944299 +diagonalisation|2944338 +diagonalise|2944400 +diagonalizable|2944453 +diagonalization|2944490 +diagonalize|2944552 +diagram|2944605 +diagrammatic|2944647 +diagrammatical|2944717 +diagrammatically|2944787 +diagramming|2944824 +diakinesis|2944890 +dial|2944922 +dial phone|2945089 +dial telephone|2945154 +dialect|2945219 +dialect atlas|2945269 +dialect geography|2945343 +dialectal|2945403 +dialectic|2945441 +dialectical|2945521 +dialectical materialism|2945624 +dialectician|2945681 +dialectics|2945724 +dialeurodes|2945823 +dialeurodes citri|2945890 +dialog|2945960 +dialog box|2946097 +dialogue|2946130 +dialyse|2946318 +dialysis|2946352 +dialysis machine|2946409 +dialyze|2946463 +dialyzer|2946497 +diam|2946551 +diamagnet|2946581 +diamagnetic|2946615 +diamagnetism|2946680 +diamante|2946747 +diamantine|2946790 +diameter|2946850 +diametral|2946901 +diametric|2946955 +diametrical|2947053 +diametrical opposition|2947149 +diamine|2947223 +diamond|2947257 +diamond dust|2947546 +diamond jim|2947639 +diamond jim brady|2947736 +diamond jubilee|2947839 +diamond point|2947872 +diamond state|2947901 +diamond wedding|2947977 +diamond wedding anniversary|2948050 +diamondback|2948123 +diamondback rattlesnake|2948208 +diamondback terrapin|2948293 +diamonte|2948352 +diana|2948400 +diane de poitiers|2948524 +diangus gratianopolitanus|2948611 +dianoetic|2948702 +dianthus|2948740 +dianthus barbatus|2948808 +dianthus caryophyllus|2948884 +dianthus chinensis|2948987 +dianthus chinensis heddewigii|2949075 +dianthus deltoides|2949201 +dianthus latifolius|2949277 +dianthus plumarius|2949355 +dianthus supurbus|2949443 +diapason|2949518 +diapason stop|2949561 +diapedesis|2949604 +diapensia|2949643 +diapensia family|2949681 +diapensiaceae|2949765 +diapensiales|2949863 +diaper|2949929 +diaper dermatitis|2950003 +diaper rash|2950053 +diaphanous|2950103 +diapheromera|2950197 +diapheromera femorata|2950281 +diaphone|2950387 +diaphoresis|2950413 +diaphoretic|2950527 +diaphragm|2950663 +diaphragmatic hernia|2950943 +diaphragmatic pleurisy|2951019 +diaphyseal|2951130 +diaphysial|2951180 +diaphysis|2951230 +diapir|2951275 +diapsid|2951322 +diapsid reptile|2951373 +diapsida|2951424 +diarchy|2951487 +diarist|2951548 +diarrhea|2951596 +diarrheal|2951656 +diarrheic|2951752 +diarrhetic|2951848 +diarrhoea|2951944 +diarrhoeal|2952004 +diarrhoeic|2952100 +diarrhoetic|2952196 +diarthrosis|2952292 +diary|2952382 +diary keeper|2952462 +dias|2952510 +diaspididae|2952673 +diaspora|2952742 +diastasis|2952834 +diastole|2952865 +diastolic|2952914 +diastolic pressure|2952963 +diastrophism|2953006 +diathermy|2953064 +diathermy machine|2953092 +diathesis|2953138 +diatom|2953184 +diatomaceous earth|2953225 +diatomic|2953294 +diatomite|2953328 +diatomophyceae|2953397 +diatonic|2953505 +diatonic scale|2953545 +diatribe|2953589 +diaz|2953645 +diazepam|2953713 +diazo|2953753 +diazonium|2953774 +diazoxide|2953800 +dibasic acid|2953854 +dibasic salt|2953881 +dibber|2953908 +dibble|2953941 +dibbuk|2954010 +dibrach|2954065 +dibranch|2954123 +dibranchia|2954205 +dibranchiata|2954297 +dibranchiate|2954391 +dibranchiate mollusk|2954473 +dibucaine|2954555 +dicamptodon|2954597 +dicamptodon ensatus|2954644 +dicamptodontid|2954729 +dicamptodontidae|2954776 +dicarboxylic|2954860 +dice|2954910 +dice box|2954976 +dice cup|2955013 +dicentra|2955050 +dicentra canadensis|2955114 +dicentra cucullaria|2955199 +dicentra spectabilis|2955290 +dicer|2955401 +diceros|2955434 +diceros bicornis|2955486 +diceros simus|2955563 +dicey|2955654 +dichloride|2955709 +dichlorodiphenyltrichloroethane|2955749 +dichloroethyl sulfide|2955830 +dichloromethane|2955930 +dichondra|2955983 +dichondra micrantha|2956027 +dichotomisation|2956091 +dichotomise|2956141 +dichotomization|2956219 +dichotomize|2956269 +dichotomous|2956347 +dichotomy|2956376 +dichroism|2956448 +dichromacy|2956479 +dichromasy|2956630 +dichromat|2956781 +dichromate|2956819 +dichromatic|2956855 +dichromatism|2957037 +dichromatopsia|2957188 +dichromia|2957339 +dichromic acid|2957490 +dick|2957519 +dick fosbury|2957662 +dick test|2957737 +dick turpin|2957776 +dickens|2957858 +dickensian|2957983 +dicker|2958027 +dickey|2958082 +dickey-bird|2958221 +dickey-seat|2958360 +dickeybird|2958433 +dickhead|2958491 +dickie|2958640 +dickie-seat|2958757 +dickinson|2958830 +dicksonia|2958880 +dicksonia antarctica|2958936 +dicksoniaceae|2959012 +dicky|2959082 +dicky-bird|2959223 +dicky-seat|2959362 +dickybird|2959435 +diclinous|2959493 +diclofenac potassium|2959522 +diclofenac sodium|2959634 +dicloxacillin|2959743 +dicot|2959819 +dicot family|2959893 +dicot genus|2959942 +dicotyledon|2959988 +dicotyledonae|2960062 +dicotyledones|2960193 +dicotyledonous|2960324 +dicoumarol|2960363 +dicranaceae|2960444 +dicranales|2960508 +dicranopteris|2960568 +dicranum|2960636 +dicrostonyx|2960689 +dicrostonyx hudsonius|2960753 +dictamnus|2960847 +dictamnus alba|2960910 +dictaphone|2961013 +dictate|2961071 +dictated|2961206 +dictation|2961247 +dictator|2961431 +dictatorial|2961555 +dictatorially|2961732 +dictatorship|2961783 +diction|2961939 +dictionary|2962065 +dictionary definition|2962102 +dictionary entry|2962144 +dictostylium|2962190 +dictum|2962232 +dictyophera|2962343 +dictyoptera|2962407 +dictyopteran|2962471 +dictyopterous insect|2962505 +dictyosome|2962542 +dicumarol|2962616 +dicynodont|2962697 +dicynodontia|2962739 +didactic|2962805 +didactical|2962858 +didactically|2962911 +didder|2962946 +diddle|2963004 +diddley|2963148 +diddly|2963286 +diddly-shit|2963424 +diddly-squat|2963643 +diddlyshit|2963862 +diddlysquat|2964000 +didelphidae|2964138 +didelphis|2964204 +didelphis marsupialis|2964262 +didelphis virginiana|2964366 +diderot|2964469 +didion|2964520 +dido|2964569 +didrikson|2964597 +die|2964732 +die away|2965435 +die back|2965512 +die down|2965572 +die hard|2965646 +die off|2965700 +die out|2965750 +die-cast|2965210 +die-hard|2965235 +die-sinker|2965276 +dieback|2965819 +dieffenbachia|2965850 +dieffenbachia sequine|2965937 +diego rivera|2966054 +diego rodriguez de silva y velazquez|2966105 +diegueno|2966209 +diehard|2966269 +dielectric|2966329 +dielectric heating|2966387 +dielectrolysis|2966437 +diemaker|2966550 +dien bien phu|2966628 +diencephalon|2966712 +dieresis|2966791 +diervilla|2966853 +diervilla lonicera|2966918 +diervilla sessilifolia|2966993 +dies irae|2967076 +diesel|2967117 +diesel engine|2967572 +diesel fuel|2967646 +diesel locomotive|2967683 +diesel motor|2967765 +diesel oil|2967839 +diesel-electric|2967288 +diesel-electric locomotive|2967358 +diesel-hydraulic|2967428 +diesel-hydraulic locomotive|2967500 +dieses|2967876 +diesinker|2967955 +diestock|2968033 +diestrous|2968058 +diestrual|2968119 +diestrum|2968180 +diestrus|2968245 +diet|2968310 +dietary|2968461 +dietetic|2968514 +dietetical|2968555 +dietetics|2968596 +diethyl ether|2968639 +diethylaminoethyl cellulose|2968825 +diethylbarbituric acid|2968887 +diethylmalonylurea|2968977 +diethylstilbesterol|2969067 +diethylstilbestrol|2969137 +diethylstilboestrol|2969233 +dietician|2969329 +dieting|2969406 +dietitian|2969441 +dietrich|2969518 +dietrich bonhoeffer|2969632 +differ|2969738 +difference|2969782 +difference limen|2969967 +difference of opinion|2970072 +difference threshold|2970144 +different|2970249 +differentia|2970613 +differentiable|2970645 +differential|2970734 +differential analyzer|2971041 +differential blood count|2971106 +differential calculus|2971152 +differential coefficient|2971247 +differential cost|2971382 +differential diagnosis|2971466 +differential equation|2971516 +differential gear|2971556 +differential limen|2971651 +differential psychology|2971756 +differential threshold|2971822 +differentiate|2971927 +differentiated|2972240 +differentiation|2972324 +differentiator|2972507 +differently|2972598 +difficult|2972628 +difficultness|2972970 +difficulty|2973012 +diffidence|2973160 +diffident|2973249 +difflugia|2973313 +diffract|2973352 +diffraction|2973390 +diffraction grating|2973430 +diffuse|2973482 +diffuse nebula|2973792 +diffused|2973838 +diffuseness|2973889 +diffuser|2973925 +diffusing|2974003 +diffusing screen|2974105 +diffusion|2974151 +diffusion pump|2974345 +diffusive|2974408 +diffusor|2974510 +diflunisal|2974588 +dig|2974689 +dig in|2975253 +dig into|2975298 +dig out|2975352 +dig up|2975422 +digenesis|2975462 +digest|2975546 +digested|2976028 +digester|2976057 +digestibility|2976107 +digestible|2976166 +digestibleness|2976262 +digestion|2976321 +digestive|2976459 +digestive fluid|2976512 +digestive gland|2976566 +digestive juice|2976617 +digestive system|2976671 +digestive tract|2976769 +digestive tube|2976910 +digger|2977051 +digger wasp|2977149 +digging|2977193 +digging up|2977245 +diggings|2977314 +dighted|2977439 +digit|2977469 +digital|2977610 +digital arteries|2977849 +digital audiotape|2977930 +digital camera|2977971 +digital communication|2978022 +digital communications technology|2978097 +digital computer|2978166 +digital display|2978301 +digital photography|2978355 +digital plethysmograph|2978396 +digital scanner|2978443 +digital subscriber line|2978539 +digital vein|2978641 +digital voltmeter|2978708 +digital watch|2978756 +digital-analog converter|2977695 +digital-to-analog converter|2977772 +digitalin|2978792 +digitalis|2978877 +digitalis glycoside|2979000 +digitalis lutea|2979085 +digitalis purpurea|2979176 +digitalisation|2979319 +digitalise|2979383 +digitalization|2979452 +digitalize|2979516 +digitaria|2979612 +digitaria ischaemum|2979687 +digitaria sanguinalis|2979787 +digitate|2979909 +digitigrade|2979947 +digitigrade mammal|2979980 +digitisation|2980062 +digitise|2980108 +digitiser|2980177 +digitization|2980274 +digitize|2980320 +digitizer|2980389 +digitoxin|2980486 +dignified|2980545 +dignify|2980702 +dignifying|2980773 +dignitary|2980809 +dignity|2980934 +digoxin|2981078 +digraph|2981143 +digress|2981211 +digression|2981303 +digressive|2981510 +digs|2981598 +dihybrid|2981893 +dihybrid cross|2981935 +dihydric alcohol|2982042 +dihydrostreptomycin|2982088 +dihydroxyphenylalanine|2982144 +dijon|2982211 +dik-dik|2982261 +dika|2982287 +dika bread|2982359 +dika nut|2982384 +dike|2982414 +dilantin|2982531 +dilapidate|2982596 +dilapidated|2982633 +dilapidation|2982731 +dilatation|2982808 +dilatation and curettage|2982932 +dilate|2983070 +dilated|2983205 +dilater|2983231 +dilation|2983276 +dilation and curettage|2983365 +dilator|2983503 +dilatoriness|2983577 +dilatory|2983666 +dilatory plea|2983757 +dilaudid|2983785 +dildo|2983893 +dilemma|2983917 +dilettante|2983954 +dilettanteish|2984056 +dilettantish|2984126 +diligence|2984196 +diligent|2984365 +dill|2984493 +dill pickle|2984570 +dill seed|2984598 +dill weed|2984676 +dillenia|2984705 +dilleniaceae|2984757 +dilleniid dicot family|2984835 +dilleniid dicot genus|2984900 +dilleniidae|2984962 +dilly-dallier|2985022 +dilly-dally|2985197 +dillydallier|2985382 +dillydally|2985476 +diltiazem|2985580 +diluent|2985648 +dilutant|2985688 +dilute|2985728 +diluted|2985883 +dilution|2985987 +diluvial|2986031 +diluvian|2986071 +dim|2986111 +dim sum|2986574 +dim-sighted|2986406 +dim-witted|2986512 +dimaggio|2986612 +dime|2986700 +dime bag|2986740 +dime novel|2986768 +dimenhydrinate|2986809 +dimension|2986884 +dimensional|2987054 +dimensionality|2987108 +dimensioning|2987160 +dimer|2987204 +dimetane|2987246 +dimetapp|2987311 +dimethyl ketone|2987371 +dimethylglyoxime|2987477 +dimetrodon|2987515 +diminish|2987561 +diminished|2987656 +diminished arch|2987802 +diminishing|2987866 +diminuendo|2987898 +diminution|2987969 +diminutive|2988089 +diminutiveness|2988174 +dimity|2988258 +dimly|2988304 +dimmed|2988353 +dimmer|2988389 +dimness|2988432 +dimocarpus|2988571 +dimocarpus longan|2988650 +dimorphic|2988766 +dimorphism|2988834 +dimorphotheca|2988900 +dimorphous|2988977 +dimout|2989045 +dimple|2989093 +dimpled|2989240 +dimpled chad|2989261 +dimwit|2989309 +din|2989365 +din land|2989526 +dinar|2989621 +dindymene|2990029 +dine|2990119 +dine in|2990171 +dine out|2990199 +diner|2990229 +dinero|2990378 +dinesen|2990519 +ding|2990613 +ding-dong|2990651 +dingbat|2990676 +dingdong|2990710 +dinge|2990748 +dinghy|2990868 +dingily|2990908 +dinginess|2990942 +dingle|2990989 +dingo|2991024 +dingy|2991078 +dining|2991251 +dining area|2991507 +dining car|2991533 +dining companion|2991618 +dining compartment|2991660 +dining room|2991745 +dining table|2991864 +dining-hall|2991282 +dining-room|2991327 +dining-room attendant|2991446 +diningroom furniture|2991898 +diningroom set|2991978 +diningroom suite|2992025 +dink|2992072 +dinka|2992134 +dinkey|2992180 +dinky|2992257 +dinner|2992365 +dinner bell|2992419 +dinner bucket|2992445 +dinner dress|2992492 +dinner gown|2992606 +dinner jacket|2992720 +dinner napkin|2992817 +dinner pail|2992870 +dinner party|2992917 +dinner plate|2992952 +dinner service|2992980 +dinner set|2993037 +dinner table|2993094 +dinner theater|2993135 +dinner theatre|2993196 +dinnertime|2993257 +dinnerware|2993297 +dino paul crocetti|2993327 +dinoceras|2993429 +dinocerata|2993470 +dinocerate|2993531 +dinoflagellata|2993574 +dinoflagellate|2993685 +dinornis|2993790 +dinornis giganteus|2993843 +dinornithidae|2993904 +dinornithiformes|2993974 +dinosaur|2994053 +dint|2994115 +diocesan|2994146 +diocese|2994190 +diode|2994230 +diodon|2994483 +diodon holocanthus|2994530 +diodon hystrix|2994602 +diodontidae|2994683 +diodora apertura|2994747 +dioecian|2994832 +dioecious|2994860 +dioestrous|2994898 +dioestrual|2994959 +diogenes|2995020 +diol|2995059 +diomedea exulans|2995105 +diomedea nigripes|2995188 +diomedeidae|2995308 +dionaea|2995372 +dionaea muscipula|2995442 +dionysia|2995538 +dionysian|2995591 +dionysius|2995631 +dionysius the elder|2995687 +dionysus|2995753 +dioon|2995792 +diophantus|2995813 +diopter|2995858 +dior|2995900 +diorama|2995987 +diorite|2996047 +dioscorea|2996077 +dioscorea alata|2996134 +dioscorea batata|2996209 +dioscorea bulbifera|2996292 +dioscorea elephantipes|2996366 +dioscorea paniculata|2996501 +dioscorea trifida|2996566 +dioscoreaceae|2996635 +diospyros|2996717 +diospyros ebenum|2996793 +diospyros kaki|2996847 +diospyros kurzii|2996935 +diospyros lotus|2997021 +diospyros virginiana|2997097 +dioxide|2997203 +dioxin|2997226 +dip|2997254 +dip circle|2998006 +dip into|2998094 +dip solder|2998117 +dip switch|2998144 +diphenhydramine|2998251 +diphenylbutyl piperidine|2998299 +diphenylhydantoin|2998492 +diphtheria|2998548 +diphthong|2998597 +diphthongise|2998634 +diphthongize|2998689 +diphylla|2998744 +diphylla ecaudata|2998799 +dipladenia|2998898 +dipladenia boliviensis|2999005 +diplazium pycnocarpon|2999106 +diplegia|2999240 +diplococcus|2999274 +diplococcus pneumoniae|2999314 +diplodocus|2999394 +diploic vein|2999423 +diploid|2999489 +diploidy|2999536 +diploma|2999564 +diplomacy|2999640 +diplomat|2999812 +diplomate|2999929 +diplomatic|2999978 +diplomatic building|3000140 +diplomatic corps|3000189 +diplomatic immunity|3000259 +diplomatic minister|3000306 +diplomatic mission|3000365 +diplomatic negotiations|3000443 +diplomatic pouch|3000513 +diplomatic service|3000558 +diplomatical|3000628 +diplomatically|3000708 +diplomatist|3000746 +diplopia|3000797 +diplopoda|3000891 +diplopterygium|3000984 +diplopterygium longissimum|3001055 +diplotaxis|3001145 +diplotaxis erucoides|3001215 +diplotaxis muralis|3001301 +diplotaxis tenuifolia|3001404 +diplotene|3001510 +dipnoi|3001541 +dipodidae|3001586 +dipodomys|3001646 +dipodomys ordi|3001704 +dipodomys phillipsii|3001805 +dipogon|3001891 +dipogon lignosus|3001948 +dipolar|3002029 +dipole|3002052 +dipole antenna|3002132 +dipole molecule|3002198 +dipole moment|3002232 +dipped|3002262 +dippel's oil|3002313 +dipper|3002368 +dippers|3002584 +dipsacaceae|3002889 +dipsacus|3002962 +dipsacus fullonum|3003024 +dipsacus sativus|3003104 +dipsacus sylvestris|3003184 +dipsomania|3003266 +dipsomaniac|3003331 +dipsosaurus|3003427 +dipsosaurus dorsalis|3003492 +dipstick|3003580 +diptera|3003609 +dipteran|3003661 +dipterocarp|3003731 +dipterocarpaceae|3003757 +dipteron|3003847 +dipteronia|3003917 +dipterous|3003996 +dipterous insect|3004027 +dipteryx|3004097 +dipteryx odorata|3004185 +diptych|3004284 +dipus|3004314 +dipylon|3004360 +dipylon gate|3004422 +dirac|3004470 +dirca|3004535 +dirca palustris|3004599 +dire|3004700 +dire straits|3004844 +direct|3004904 +direct action|3006084 +direct antonym|3006133 +direct contrast|3006188 +direct correlation|3006246 +direct current|3006332 +direct discourse|3006389 +direct dye|3006447 +direct evidence|3006496 +direct examination|3006530 +direct fire|3006598 +direct flight|3006631 +direct loan|3006661 +direct mail|3006687 +direct mailer|3006770 +direct marketing|3006805 +direct object|3006841 +direct primary|3006890 +direct quotation|3006939 +direct sum|3006997 +direct support|3007032 +direct supporting fire|3007081 +direct tax|3007129 +direct tide|3007182 +direct transmission|3007234 +direct trust|3007286 +direct-grant school|3006048 +directed|3007328 +directed verdict|3007384 +directing|3007434 +direction|3007491 +direction finder|3007966 +directional|3008018 +directional antenna|3008141 +directionality|3008205 +directionless|3008258 +directive|3008346 +directivity|3008438 +directly|3008491 +directness|3008656 +director|3008704 +director of central intelligence|3008952 +director of research|3009055 +director-stockholder relation|3008894 +directorate|3009114 +directorate for inter-services intelligence|3009160 +directorship|3009323 +directory|3009400 +direful|3009493 +dirge|3009611 +dirham|3009664 +dirigible|3009961 +dirk|3010039 +dirndl|3010068 +dirt|3010118 +dirt ball|3010401 +dirt bike|3010476 +dirt cheap|3010532 +dirt track|3010570 +dirtily|3010625 +dirtiness|3010650 +dirty|3010797 +dirty bomb|3011853 +dirty dog|3011930 +dirty joke|3012067 +dirty laundry|3012145 +dirty linen|3012223 +dirty money|3012301 +dirty old man|3012376 +dirty pool|3012415 +dirty story|3012469 +dirty trick|3012547 +dirty tricks|3012604 +dirty war|3012715 +dirty word|3012760 +dirty-faced|3011783 +dirty-minded|3011825 +dirtying|3012822 +dis|3012872 +disa|3012907 +disability|3013058 +disability benefit|3013145 +disability check|3013181 +disability insurance|3013242 +disability of walking|3013289 +disability payment|3013363 +disable|3013424 +disabled|3013534 +disablement|3013642 +disabling|3013729 +disabuse|3013816 +disabused|3013841 +disaccharidase|3013884 +disaccharide|3013915 +disaccord|3013953 +disadvantage|3013992 +disadvantaged|3014083 +disadvantageous|3014131 +disadvantageously|3014227 +disaffect|3014259 +disaffected|3014322 +disaffection|3014402 +disafforest|3014474 +disagree|3014520 +disagree with|3014592 +disagreeable|3014640 +disagreeable chore|3014920 +disagreeable person|3014981 +disagreeable task|3015063 +disagreeable woman|3015124 +disagreeableness|3015207 +disagreement|3015287 +disallow|3015408 +disambiguate|3015490 +disambiguation|3015539 +disambiguator|3015602 +disappear|3015692 +disappearance|3015845 +disappearing|3016000 +disappoint|3016087 +disappointed|3016175 +disappointing|3016258 +disappointment|3016325 +disapprobation|3016402 +disapproval|3016451 +disapprove|3016632 +disapproved|3016678 +disapproving|3016748 +disarm|3016795 +disarmament|3016904 +disarmer|3016965 +disarming|3017017 +disarrange|3017127 +disarranged|3017186 +disarrangement|3017263 +disarray|3017343 +disarrayed|3017510 +disarticulate|3017542 +disassemble|3017604 +disassembly|3017684 +disassociate|3017740 +disassociation|3017843 +disassortative mating|3017931 +disaster|3018017 +disaster area|3018175 +disastrous|3018211 +disavow|3018274 +disavowable|3018296 +disavowal|3018326 +disband|3018363 +disbandment|3018448 +disbar|3018482 +disbarment|3018509 +disbelief|3018553 +disbelieve|3018731 +disbeliever|3018768 +disbelieving|3018832 +disbelievingly|3018898 +disbud|3018949 +disburden|3019024 +disbursal|3019083 +disburse|3019192 +disbursement|3019222 +disburser|3019328 +disc|3019380 +disc brake|3019660 +disc drive|3019724 +disc harrow|3019789 +disc jockey|3019829 +disc pack|3019877 +disc space|3019911 +disc-jockey|3019616 +discalceate|3019948 +discalced|3019986 +discant|3020034 +discard|3020110 +discarded|3020335 +discase|3020437 +disceptation|3020517 +discern|3020659 +discernability|3020737 +discernable|3020795 +discernible|3020828 +discerning|3020929 +discernment|3021127 +discerp|3021388 +discharge|3021468 +discharge lamp|3022382 +discharge pipe|3022411 +discharged|3022454 +disciform|3022544 +discina|3022571 +discina macrospora|3022600 +disciotis venosa|3022655 +disciple|3022714 +disciples of christ|3022750 +discipleship|3022840 +disciplinal|3022917 +disciplinarian|3022975 +disciplinary|3023040 +discipline|3023148 +disciplined|3023531 +disclaim|3023614 +disclaimer|3023679 +disclose|3023748 +disclosed|3023896 +disclosing|3023963 +disclosure|3023993 +disco|3024045 +disco biscuit|3024105 +discocephali|3024202 +discoglossidae|3024269 +discoid|3024347 +discoid lupus erythematosus|3024398 +discoidal|3024484 +discolor|3024535 +discoloration|3024624 +discolored|3024731 +discolorise|3024771 +discolorize|3024907 +discolour|3025043 +discolouration|3025091 +discoloured|3025197 +discolourise|3025237 +discombobulate|3025373 +discombobulated|3025525 +discombobulation|3025575 +discomfit|3025625 +discomfited|3025734 +discomfiture|3025873 +discomfort|3025959 +discommode|3026056 +discompose|3026180 +discomposed|3026289 +discomposure|3026507 +discomycete|3026624 +discomycetes|3026687 +discomycetous|3026811 +disconcert|3026864 +disconcerted|3027019 +disconcerting|3027069 +disconcertion|3027114 +disconcertment|3027200 +disconfirming|3027286 +disconnect|3027351 +disconnected|3027456 +disconnectedness|3027659 +disconnection|3027734 +disconsolate|3027872 +disconsolately|3028009 +disconsolateness|3028043 +discontent|3028118 +discontented|3028349 +discontentedness|3028519 +discontentment|3028588 +discontinuance|3028657 +discontinuation|3028727 +discontinue|3028797 +discontinued|3028931 +discontinuity|3028991 +discontinuous|3029025 +discord|3029132 +discordance|3029281 +discordant|3029343 +discordantly|3029495 +discorporate|3029531 +discotheque|3029617 +discount|3029677 +discount business|3029975 +discount chain|3030053 +discount house|3030083 +discount rate|3030207 +discount store|3030322 +discountenance|3030446 +discounter|3030494 +discourage|3030618 +discouraged|3030705 +discouragement|3030793 +discouraging|3030884 +discourse|3031067 +discourteous|3031330 +discourteously|3031483 +discourtesy|3031544 +discover|3031732 +discoverable|3032236 +discovered|3032285 +discovered check|3032375 +discoverer|3032407 +discovery|3032504 +discovery day|3032696 +discredit|3032788 +discreditable|3032978 +discreditably|3033014 +discredited|3033115 +discreet|3033200 +discreetness|3033321 +discrepancy|3033483 +discrepant|3033614 +discrete|3033722 +discreteness|3033758 +discretion|3033827 +discretional|3034086 +discretionary|3034132 +discretionary trust|3034198 +discriminable|3034233 +discriminate|3034272 +discriminating|3034665 +discrimination|3034953 +discriminative|3035057 +discriminative stimulus|3035136 +discriminator|3035210 +discriminatory|3035301 +discursive|3035525 +discursively|3035609 +discursiveness|3035641 +discus|3035678 +discuss|3035762 +discussant|3035882 +discussion|3035914 +disdain|3036121 +disdainful|3036351 +disdainfully|3036485 +disdainfulness|3036581 +disease|3036692 +disease of the neuromuscular junction|3036744 +disease of the skin|3036799 +diseased|3036891 +diseased person|3036950 +disembark|3037027 +disembarkation|3037076 +disembarkment|3037134 +disembarrass|3037192 +disembarrassment|3037223 +disembodied|3037274 +disembodied spirit|3037360 +disembody|3037430 +disembowel|3037471 +disembowelment|3037538 +disembroil|3037592 +disenable|3037650 +disenchant|3037710 +disenchanted|3037762 +disenchanting|3037858 +disenchantment|3037907 +disencumber|3037986 +disenfranchise|3038053 +disenfranchised|3038098 +disenfranchisement|3038162 +disengage|3038211 +disengagement|3038312 +disentangle|3038389 +disentangled|3038589 +disentanglement|3038669 +disentangler|3038755 +disequilibrium|3038851 +disestablish|3038902 +disestablishment|3038943 +disesteem|3038982 +disfavor|3039070 +disfavour|3039241 +disfiguration|3039410 +disfigure|3039538 +disfigured|3039606 +disfigurement|3039631 +disforest|3039759 +disforestation|3039805 +disfranchise|3039890 +disfranchised|3039935 +disfranchisement|3039983 +disfunction|3040040 +disgorge|3040083 +disgorgement|3040279 +disgrace|3040484 +disgraced|3040700 +disgraceful|3040757 +disgracefully|3040899 +disgracefulness|3041000 +disgruntle|3041067 +disgruntled|3041098 +disgruntlement|3041156 +disguise|3041223 +disguised|3041374 +disgust|3041429 +disgusted|3041559 +disgustful|3041618 +disgusting|3041754 +disgustingly|3041890 +disgustingness|3041949 +dish|3042062 +dish aerial|3042524 +dish antenna|3042590 +dish out|3042656 +dish rack|3042833 +dish the dirt|3042857 +dish towel|3042898 +dish up|3042934 +dish washer|3043005 +dish-shaped|3042488 +dishabille|3043124 +disharmonious|3043172 +disharmony|3043253 +dishcloth|3043301 +dishcloth gourd|3043361 +dishearten|3043434 +disheartened|3043473 +disheartening|3043543 +disheartenment|3043617 +dished|3043693 +dishevel|3043729 +disheveled|3043772 +dishevelled|3043836 +dishful|3043900 +dishonest|3043935 +dishonestly|3044407 +dishonesty|3044447 +dishonor|3044548 +dishonorable|3044797 +dishonorable discharge|3045480 +dishonorableness|3045582 +dishonorably|3045642 +dishonored|3045743 +dishonour|3045800 +dishonourable|3046045 +dishonourableness|3046350 +dishonourably|3046410 +dishpan|3046511 +dishrag|3046532 +dishware|3046592 +dishwasher|3046629 +dishwasher detergent|3046737 +dishwashing|3046818 +dishwashing detergent|3046868 +dishwashing liquid|3046949 +dishwashing machine|3047030 +dishwater|3047094 +dishy|3047123 +disillusion|3047148 +disillusioned|3047265 +disillusioning|3047313 +disillusionment|3047362 +disincarnate|3047441 +disincentive|3047525 +disinclination|3047574 +disincline|3047673 +disinclined|3047743 +disinfect|3047869 +disinfectant|3047905 +disinfection|3048012 +disinfest|3048059 +disinfestation|3048100 +disinfestation officer|3048151 +disinflation|3048230 +disinformation|3048269 +disingenuous|3048308 +disingenuously|3048403 +disingenuousness|3048435 +disinherit|3048472 +disinheritance|3048507 +disinherited|3048562 +disintegrable|3048592 +disintegrate|3048632 +disintegration|3048738 +disintegrative|3048947 +disinter|3049010 +disinterest|3049059 +disinterested|3049101 +disinterestedly|3049139 +disinterestedness|3049176 +disinterment|3049232 +disinvest|3049301 +disinvestment|3049447 +disinvolve|3049481 +disjoin|3049539 +disjoined|3049632 +disjoint|3049672 +disjointed|3049923 +disjointedness|3050078 +disjunct|3050126 +disjunction|3050228 +disjunctive|3050335 +disjunctive conjunction|3050498 +disjuncture|3050543 +disk|3050618 +disk access|3050929 +disk brake|3050971 +disk cache|3051035 +disk clutch|3051074 +disk controller|3051111 +disk drive|3051155 +disk error|3051220 +disk file|3051255 +disk harrow|3051288 +disk jockey|3051328 +disk operating system|3051376 +disk overhead|3051431 +disk pack|3051485 +disk shape|3051519 +disk space|3051561 +disk-jockey|3050885 +diskette|3051598 +disklike|3051673 +dislikable|3051724 +dislike|3051753 +disliked|3051849 +dislocate|3051908 +dislocated|3051984 +dislocation|3052033 +dislodge|3052156 +dislodgement|3052345 +dislodgment|3052396 +dislogistic|3052447 +disloyal|3052507 +disloyalty|3052733 +dismal|3052779 +dismally|3052939 +dismantle|3052982 +dismantled|3053176 +dismantlement|3053223 +dismantling|3053279 +dismay|3053335 +dismayed|3053588 +dismaying|3053637 +dismember|3053675 +dismemberment|3053746 +dismiss|3053811 +dismissal|3054192 +dismissed|3054443 +dismissible|3054512 +dismission|3054543 +dismissive|3054686 +dismount|3054735 +disney|3054853 +disneyland|3054955 +disobedience|3055025 +disobedient|3055130 +disobey|3055375 +disoblige|3055407 +disobliging|3055605 +disorder|3055667 +disordered|3055872 +disorderliness|3056059 +disorderly|3056191 +disorderly behavior|3056454 +disorderly conduct|3056622 +disorganisation|3056790 +disorganise|3056905 +disorganised|3056938 +disorganization|3057096 +disorganize|3057211 +disorganized|3057244 +disorganized schizophrenia|3057415 +disorganized type schizophrenia|3057599 +disorient|3057783 +disorientate|3057881 +disorientation|3057979 +disoriented|3058092 +disorienting|3058173 +disown|3058260 +disowned|3058295 +disowning|3058339 +disownment|3058394 +disparage|3058449 +disparagement|3058522 +disparager|3058621 +disparaging|3058689 +disparagingly|3058748 +disparate|3058782 +disparateness|3058845 +disparity|3058911 +dispassion|3058941 +dispassionate|3059010 +dispassionateness|3059058 +dispatch|3059127 +dispatch box|3059603 +dispatch case|3059644 +dispatch rider|3059685 +dispatched|3059727 +dispatcher|3059752 +dispel|3059805 +dispensability|3059954 +dispensable|3060009 +dispensableness|3060063 +dispensary|3060118 +dispensation|3060145 +dispense|3060250 +dispense with|3060441 +dispensed|3060548 +dispenser|3060579 +dispersal|3060633 +disperse|3060704 +dispersed|3061052 +dispersed particles|3061090 +dispersed phase|3061146 +dispersing medium|3061202 +dispersing phase|3061275 +dispersion|3061348 +dispersion medium|3061502 +dispersive|3061575 +dispirit|3061712 +dispirited|3061804 +dispiritedly|3061936 +dispiritedness|3061968 +dispiriting|3062045 +displace|3062200 +displaced fracture|3062411 +displaced person|3062454 +displacement|3062508 +displacement reaction|3062824 +displacement unit|3062895 +display|3063049 +display adapter|3063360 +display adaptor|3063419 +display board|3063478 +display case|3063529 +display panel|3063575 +display window|3063626 +displaying incompetence|3063680 +displeased|3063726 +displeasing|3063967 +displeasure|3064094 +displume|3064156 +disport|3064290 +disposable|3064423 +disposable income|3064541 +disposal|3064575 +disposal plant|3064754 +dispose|3064829 +dispose of|3065074 +disposed|3065118 +disposition|3065208 +dispossess|3065358 +dispossessed|3065399 +dispossession|3065451 +dispraise|3065559 +dispread|3065604 +disproof|3065640 +disproportion|3065765 +disproportional|3065798 +disproportionate|3065840 +disprove|3065921 +disprover|3065965 +disputable|3066025 +disputant|3066112 +disputation|3066209 +disputatious|3066435 +disputatiously|3066505 +disputative|3066544 +dispute|3066614 +disputed|3066831 +disqualification|3066863 +disqualified|3066921 +disqualify|3066972 +disqualifying|3067057 +disquiet|3067090 +disquieted|3067242 +disquieting|3067306 +disquietude|3067341 +disquisition|3067401 +disraeli|3067429 +disregard|3067533 +disregarded|3067735 +disregarding|3067776 +disregardless|3067845 +disrepair|3067914 +disreputability|3067945 +disreputable|3068039 +disreputable person|3068251 +disreputableness|3068315 +disrepute|3068409 +disrespect|3068457 +disrespectful|3068662 +disrobe|3068987 +disrupt|3069067 +disrupted|3069220 +disrupting explosive|3069267 +disruption|3069331 +disruptive|3069551 +diss|3069617 +dissatisfaction|3069684 +dissatisfactory|3069752 +dissatisfied|3069819 +dissatisfy|3069877 +dissect|3069907 +dissected|3069973 +dissection|3070007 +dissemble|3070089 +dissembler|3070199 +dissembling|3070302 +disseminate|3070501 +disseminated lupus erythematosus|3070652 +disseminated multiple sclerosis|3070733 +disseminated sclerosis|3070862 +disseminating|3070991 +dissemination|3071093 +disseminative|3071258 +disseminator|3071360 +dissension|3071406 +dissent|3071487 +dissenter|3071689 +dissentient|3071801 +dissenting|3071879 +dissenting opinion|3071930 +dissentious|3071999 +dissertate|3072049 +dissertation|3072090 +disservice|3072128 +dissever|3072176 +dissidence|3072251 +dissident|3072284 +dissident irish republican army|3072473 +dissilience|3072661 +dissimilar|3072705 +dissimilarity|3072785 +dissimilate|3072832 +dissimilation|3072901 +dissimilitude|3073030 +dissimulate|3073091 +dissimulating|3073121 +dissimulation|3073180 +dissimulative|3073265 +dissipate|3073324 +dissipated|3073548 +dissipation|3073706 +dissociable|3073874 +dissociate|3073925 +dissociated|3074171 +dissociation|3074214 +dissociation constant|3074358 +dissociative|3074410 +dissociative disorder|3074442 +dissolubility|3074577 +dissoluble|3074630 +dissolute|3074670 +dissolutely|3074772 +dissoluteness|3074805 +dissolution|3074886 +dissolution of marriage|3075184 +dissolvable|3075240 +dissolve|3075280 +dissolved|3075705 +dissolvent|3075762 +dissolver|3075834 +dissolving|3075906 +dissolving agent|3075974 +dissonance|3076046 +dissonant|3076166 +dissonate|3076319 +dissuade|3076371 +dissuasion|3076410 +dissuasive|3076488 +dissyllable|3076594 +distaff|3076631 +distal|3076721 +distal muscular dystrophy|3076766 +distance|3076830 +distance vision|3077074 +distant|3077141 +distaste|3077379 +distasteful|3077424 +distastefully|3077598 +distastefulness|3077657 +distemper|3077817 +distend|3077970 +distended|3078060 +distensible|3078165 +distension|3078196 +distention|3078322 +distich|3078448 +distil|3078549 +distill|3078712 +distillate|3078948 +distillation|3078988 +distilled water|3079094 +distiller|3079129 +distillery|3079170 +distillment|3079225 +distinct|3079306 +distinction|3079582 +distinctive|3079723 +distinctive feature|3079849 +distinctiveness|3079943 +distinctly|3080103 +distinctness|3080130 +distinguish|3080289 +distinguishable|3080610 +distinguished|3080706 +distinguished conduct medal|3080823 +distinguished flying cross|3080941 +distinguished service cross|3081057 +distinguished service medal|3081175 +distinguished service order|3081293 +distinguishing|3081411 +distinguishing characteristic|3081474 +distomatosis|3081568 +distort|3081639 +distortable|3081891 +distorted|3081933 +distorted shape|3082095 +distortion|3082142 +distortionist|3082445 +distract|3082476 +distracted|3082612 +distraction|3082731 +distrain|3082903 +distraint|3083007 +distrait|3083043 +distraught|3083084 +distress|3083125 +distress call|3083287 +distress signal|3083348 +distressed|3083409 +distressful|3083615 +distressfulness|3083705 +distressing|3083759 +distressingly|3083900 +distributary|3083932 +distribute|3083961 +distributed|3084430 +distributed data processing|3084813 +distributed fire|3084911 +distributer|3084949 +distribution|3085060 +distribution agreement|3085280 +distribution channel|3085321 +distribution cost|3085369 +distribution free statistic|3085401 +distribution law|3085472 +distribution list|3085516 +distributional|3085556 +distributive|3085607 +distributive shock|3085882 +distributor|3085916 +distributor cam|3086069 +distributor cap|3086098 +distributor housing|3086127 +distributor point|3086164 +district|3086228 +district attorney|3086349 +district line|3086449 +district manager|3086494 +district of columbia|3086555 +distrust|3086631 +distrustful|3086824 +distrustfully|3087066 +distrustfulness|3087102 +disturb|3087151 +disturbance|3087349 +disturbance of the peace|3087732 +disturbed|3087900 +disturber|3088131 +disturbing|3088209 +disulfiram|3088299 +disunify|3088374 +disunion|3088448 +disunite|3088477 +disunited|3088622 +disunity|3088679 +disuse|3088732 +disused|3088776 +disyllabic|3088813 +disyllable|3088842 +dit|3088879 +dita|3088939 +dita bark|3088998 +ditch|3089057 +ditch digger|3089273 +ditch fern|3089313 +ditch reed|3089420 +ditch spade|3089513 +ditchmoss|3089559 +dither|3089637 +dithered color|3089734 +dithered colour|3089837 +dithering|3089940 +dithyramb|3089976 +dithyrambic|3090071 +dittany|3090148 +dittany of crete|3090236 +ditto|3090345 +ditto mark|3090434 +ditty|3090465 +ditty bag|3090485 +diuresis|3090508 +diuretic|3090534 +diuretic drug|3090582 +diuril|3090630 +diurnal|3090716 +diurnal parallax|3090772 +diurnal variation|3090827 +diva|3090876 +divagate|3090927 +divagation|3090971 +divalent|3091142 +divan|3091187 +divan bed|3091317 +divaricate|3091361 +divarication|3091426 +dive|3091484 +dive bomber|3091797 +dive brake|3091825 +dive-bomb|3091731 +dive-bombing|3091763 +diver|3091875 +diverge|3091988 +divergence|3092054 +divergency|3092233 +divergent|3092300 +divergent strabismus|3092384 +divergent thinker|3092450 +divergent thinking|3092485 +diverging|3092589 +diverging lens|3092646 +divers|3092706 +diverse|3092740 +diversely|3092799 +diverseness|3092842 +diversification|3092930 +diversified|3092998 +diversify|3093090 +diversion|3093206 +diversionary|3093375 +diversionary attack|3093406 +diversionary landing|3093475 +diversionist|3093535 +diversity|3093614 +divert|3093720 +diverted|3093847 +diverticulitis|3093892 +diverticulosis|3093943 +diverticulum|3093977 +divertimento|3094017 +diverting|3094106 +divertingly|3094158 +divest|3094188 +divestiture|3094366 +divi-divi|3094411 +dividable|3094468 +divide|3094497 +divided|3094825 +divided highway|3095417 +divided up|3095477 +dividend|3095535 +dividend warrant|3095646 +divider|3095712 +dividers|3095871 +dividing|3096082 +dividing line|3096141 +divina commedia|3096218 +divination|3096305 +divinatory|3096546 +divine|3096720 +divine comedy|3097095 +divine guidance|3097180 +divine law|3097234 +divine messenger|3097270 +divine office|3097302 +divine service|3097346 +divine unity|3097432 +diviner|3097561 +diving|3097605 +diving bell|3097666 +diving board|3097699 +diving dress|3097733 +diving duck|3097786 +diving event|3097812 +diving petrel|3097847 +diving suit|3097896 +divining rod|3097949 +divinity|3098021 +divinity fudge|3098255 +divinyl ether|3098294 +divisibility|3098480 +divisible|3098510 +division|3098613 +division anthophyta|3099038 +division archaebacteria|3099173 +division bryophyta|3099239 +division chlorophyta|3099305 +division chrysophyta|3099377 +division cyanophyta|3099449 +division cynodontia|3099518 +division dicynodontia|3099587 +division eubacteria|3099662 +division euglenophyta|3099720 +division eumycota|3099795 +division gymnomycota|3099858 +division gymnospermophyta|3099961 +division heterokontophyta|3100077 +division lichenes|3100164 +division magnoliophyta|3100227 +division myxomycota|3100365 +division phaeophyta|3100467 +division protista|3100536 +division pteridophyta|3100599 +division rhodophyta|3100674 +division schizophyta|3100743 +division spermatophyta|3100815 +division tracheophyta|3100893 +divisional|3100968 +divisive|3101043 +divisor|3101093 +divorce|3101152 +divorce court|3101345 +divorce lawyer|3101394 +divorced|3101434 +divorced man|3101469 +divorcee|3101520 +divorcement|3101569 +divot|3101609 +divulge|3101668 +divulgement|3101770 +divulgence|3101834 +divvy|3101898 +divvy up|3101922 +diwan|3102002 +dixie|3102107 +dixie cup|3102288 +dixiecrats|3102344 +dixieland|3102429 +dizen|3102603 +dizygotic|3102757 +dizygotic twin|3102784 +dizygous|3102828 +dizzily|3102855 +dizziness|3102894 +dizzy|3102955 +dizzy gillespie|3103122 +dj|3103214 +djakarta|3103304 +djanet|3103377 +djibouti|3103405 +djibouti franc|3103558 +djiboutian|3103603 +djinni|3103690 +djinny|3103758 +dkg|3103826 +dkl|3103892 +dkm|3103970 +dl|3104046 +dle|3104099 +dm|3104189 +dmd|3104277 +dmitri dmitrievich shostakovich|3104346 +dmitri ivanovich mendeleev|3104461 +dmitri ivanovich mendeleyev|3104616 +dmitri mendeleev|3104772 +dmitri mendeleyev|3104917 +dmitri shostakovich|3105063 +dmus|3105166 +dmz|3105232 +dna|3105273 +dna chip|3105343 +dna fingerprint|3105419 +dneprodzerzhinsk|3105552 +dnieper|3105629 +dnieper river|3105674 +dnipropetrovsk|3105725 +do|3105808 +do a job on|3106724 +do away with|3106758 +do by|3106818 +do drugs|3106855 +do good|3106911 +do in|3106945 +do it|3107013 +do justice|3107256 +do one's best|3107357 +do the dishes|3107418 +do the honors|3107466 +do up|3107494 +do well|3107568 +do work|3107603 +do-gooder|3106382 +do-it-yourself|3106441 +do-nothing|3106474 +do-or-die|3106551 +do-si-do|3106589 +do-well by|3106674 +doable|3107625 +dobbin|3107687 +doberman|3107724 +doberman pinscher|3107778 +dobra|3107841 +dobson|3107891 +dobson fly|3108018 +dobsonfly|3108199 +doc|3108299 +docent|3108460 +docetism|3108495 +docile|3108581 +docility|3108737 +dock|3108794 +dock worker|3109365 +dock-walloper|3109240 +dockage|3109490 +docked|3109574 +docker|3109693 +docket|3109818 +dockhand|3109969 +docking|3110094 +docking facility|3110136 +docking fee|3110197 +dockside|3110230 +dockyard|3110253 +docosahexaenoic acid|3110282 +doctor|3110339 +doctor of arts|3111062 +doctor of dental medicine|3111123 +doctor of dental surgery|3111214 +doctor of divinity|3111303 +doctor of education|3111379 +doctor of fine arts|3111462 +doctor of humane letters|3111527 +doctor of humanities|3111602 +doctor of laws|3111669 +doctor of medicine|3111728 +doctor of music|3111804 +doctor of musical arts|3111881 +doctor of optometry|3111968 +doctor of osteopathy|3112046 +doctor of philosophy|3112126 +doctor of public health|3112203 +doctor of science|3112290 +doctor of the church|3112358 +doctor of theology|3112462 +doctor up|3112539 +doctor's bill|3110751 +doctor's degree|3110808 +doctor-fish|3110866 +doctor-patient relation|3111012 +doctoral|3112611 +doctorate|3112694 +doctorfish|3112752 +doctorial|3112817 +doctorow|3112900 +doctrinaire|3112981 +doctrinal|3113070 +doctrine|3113095 +doctrine of analogy|3113174 +docudrama|3113243 +document|3113416 +documental|3113666 +documentary|3113739 +documentary film|3113971 +documentation|3114144 +documented|3114335 +dod|3114474 +dodder|3114597 +dodderer|3114665 +doddering|3114729 +doddery|3114772 +doddle|3114815 +dodecagon|3114911 +dodecahedron|3114954 +dodecanese|3114987 +dodecanoic acid|3115046 +dodge|3115104 +dodge city|3115342 +dodgem|3115378 +dodger|3115420 +dodging|3115537 +dodgson|3115727 +dodgy|3115846 +dodo|3115982 +dodonaea|3116102 +doe|3116175 +doei|3116320 +doer|3116437 +doeskin|3116517 +doff|3116579 +dog|3116602 +dog bent|3117735 +dog biscuit|3117855 +dog bite|3117897 +dog breeding|3117920 +dog catcher|3117951 +dog collar|3117981 +dog days|3118099 +dog do|3118175 +dog fennel|3118284 +dog flea|3118444 +dog food|3118489 +dog grass|3118533 +dog hobble|3118662 +dog house|3118757 +dog in the manger|3118859 +dog laurel|3118901 +dog mercury|3118996 +dog paddle|3119074 +dog pound|3119110 +dog racing|3119145 +dog rose|3119170 +dog shit|3119205 +dog show|3119412 +dog sled|3119435 +dog sleigh|3119572 +dog star|3119628 +dog stinkhorn|3119709 +dog tag|3119773 +dog turd|3119805 +dog violet|3119914 +dog wrench|3119967 +dog's breakfast|3117225 +dog's dinner|3117310 +dog's mercury|3117395 +dog's-tooth check|3117051 +dog's-tooth violet|3117155 +dog-day cicada|3117473 +dog-ear|3117523 +dog-eared|3117562 +dog-iron|3117592 +dog-tired|3117638 +dogbane|3120002 +dogbane family|3120035 +dogcart|3120123 +doge|3120145 +dogfight|3120191 +dogfighter|3120358 +dogfingt|3120392 +dogfish|3120477 +dogged|3120552 +doggedly|3120624 +doggedness|3120653 +doggerel|3120767 +doggerel verse|3120819 +doggie|3120871 +doggie bag|3120948 +dogging|3121010 +doggo|3121063 +doggy|3121100 +doggy bag|3121177 +doggy do|3121239 +doghouse|3121348 +dogie|3121441 +dogleg|3121472 +doglike|3121516 +dogma|3121539 +dogmatic|3121678 +dogmatical|3121782 +dogmatise|3121832 +dogmatism|3121933 +dogmatist|3121972 +dogmatize|3122030 +dogs-tooth check|3122131 +dogsbody|3122235 +dogshit|3122277 +dogsled|3122377 +dogstooth check|3122433 +dogtooth|3122537 +dogtooth violet|3122696 +dogtrot|3122766 +dogwatch|3122797 +dogwood|3122821 +dogwood family|3122904 +dogwood tree|3122974 +dogy|3123045 +doh|3123076 +doha|3123110 +dohickey|3123181 +doi|3123386 +doily|3123480 +doings|3123514 +doj|3123566 +dojc|3123653 +dojigger|3123738 +dol|3123943 +dolabrate|3124041 +dolabriform|3124092 +dolby|3124143 +dolce far niente|3124197 +doldrums|3124247 +dole|3124371 +dole out|3124456 +doled out|3124573 +doleful|3124649 +dolefully|3124679 +dolefulness|3124709 +dolichocephalic|3124750 +dolichocranial|3124832 +dolichocranic|3124898 +dolichonyx|3124964 +dolichonyx oryzivorus|3125023 +dolichos|3125143 +dolichos biflorus|3125203 +dolichos lablab|3125334 +dolichos lignosus|3125446 +dolichotis|3125528 +dolichotis patagonum|3125589 +doliolidae|3125674 +doliolum|3125739 +doll|3125787 +doll up|3126077 +doll's eyes|3125901 +doll's house|3126008 +dollar|3126131 +dollar bill|3126356 +dollar diplomacy|3126510 +dollar mark|3126570 +dollar sign|3126641 +dollar volume|3126712 +dollarfish|3126761 +dolled up|3126947 +dollhouse|3127067 +dollop|3127139 +dolly|3127205 +dolman|3127295 +dolman jacket|3127345 +dolman sleeve|3127382 +dolmas|3127416 +dolmen|3127458 +dolobid|3127568 +dolomite|3127677 +dolomite alps|3127721 +dolomitic|3127838 +dolophine hydrochloride|3127867 +dolor|3127975 +dolorous|3128042 +dolour|3128107 +dolourous|3128174 +dolphin|3128239 +dolphin kick|3128330 +dolphin oil|3128366 +dolphin striker|3128398 +dolphinfish|3128439 +dolt|3128540 +doltish|3128643 +doltishly|3128676 +dom pedro|3128720 +domain|3128761 +domain name|3128962 +domatium|3128988 +dombeya|3129033 +dome|3129061 +domed|3129255 +domed stadium|3129286 +domenikos theotocopoulos|3129364 +domesday book|3129449 +domestic|3129517 +domestic animal|3129810 +domestic ass|3129883 +domestic carp|3129929 +domestic cat|3129973 +domestic dog|3130047 +domestic flight|3130103 +domestic fowl|3130135 +domestic goat|3130201 +domestic help|3130257 +domestic llama|3130320 +domestic partner|3130363 +domestic pigeon|3130497 +domestic prelate|3130529 +domestic relations court|3130562 +domestic science|3130663 +domestic sheep|3130742 +domestic silkworm moth|3130783 +domestic terrorism|3130864 +domestic violence|3130933 +domesticate|3130975 +domesticated|3131145 +domestication|3131203 +domesticise|3131324 +domesticity|3131402 +domesticize|3131447 +domicile|3131525 +domiciliary|3131736 +domiciliate|3131794 +domiciliation|3131903 +dominance|3131978 +dominant|3132160 +dominant gene|3132416 +dominate|3132459 +dominated|3132605 +dominating|3132663 +domination|3132822 +dominatrix|3132944 +domine|3132983 +dominee|3133059 +domineer|3133135 +domineering|3133248 +domineeringness|3133509 +domingo|3133620 +domingo de guzman|3133667 +dominic|3133759 +dominica|3133841 +dominical|3133935 +dominican|3134024 +dominican dollar|3134174 +dominican mahogany|3134224 +dominican monetary unit|3134342 +dominican order|3134413 +dominican peso|3134475 +dominican republic|3134543 +dominick|3134609 +dominicus|3134668 +dominie|3134740 +dominion|3134816 +dominion day|3135035 +dominique|3135108 +domino|3135168 +domino effect|3135334 +domino theory|3135410 +dominoes|3135481 +dominos|3135696 +dominus|3135911 +domitian|3135987 +domoic acid|3136069 +don|3136112 +don budge|3136349 +don juan|3136416 +don luchino visconti conte di modrone|3136511 +don marquis|3136669 +don quixote|3136757 +don river|3136877 +don't-know|3136317 +donald arthur glaser|3136916 +donald barthelme|3137006 +donald duck|3137073 +donald glaser|3137123 +donald robert perry marquis|3137206 +donar|3137310 +donate|3137346 +donated|3137380 +donatello|3137403 +donation|3137494 +donatism|3137562 +donatist|3137621 +donato bramante|3137713 +donato d'agnolo bramante|3137807 +donato di betto bardi|3137910 +donatus|3138013 +donbas|3138077 +donbass|3138193 +done|3138310 +done for|3138368 +done up|3138456 +done with|3138481 +donee|3138522 +donets basin|3138568 +donetsk|3138690 +donetske|3138761 +dong|3138833 +dongle|3138903 +donizetti|3138937 +donjon|3138993 +donkey|3139042 +donkey boiler|3139111 +donkey cart|3139171 +donkey engine|3139225 +donkey jacket|3139348 +donkey pump|3139378 +donkeywork|3139419 +donkin|3139481 +donna|3139557 +donne|3139591 +donnean|3139664 +donner pass|3139737 +donnian|3139795 +donnish|3139868 +donor|3139913 +donor card|3139987 +donut|3140026 +doo-wop|3140067 +doob|3140106 +doodad|3140212 +doodia|3140417 +doodle|3140448 +doodlebug|3140502 +doofus|3140643 +doohickey|3140699 +doolittle|3140904 +doom|3141029 +doomed|3141213 +doomsday|3141384 +door|3141620 +door guard|3141879 +door latch|3141962 +door prize|3141993 +door-to-door|3141814 +doorbell|3142025 +doorcase|3142079 +doorframe|3142131 +doorhandle|3142183 +doorjamb|3142217 +doorkeeper|3142249 +doorknob|3142444 +doorknocker|3142478 +doorlock|3142521 +doorman|3142544 +doormat|3142627 +doornail|3142734 +doorplate|3142757 +doorpost|3142786 +doorsill|3142818 +doorstep|3142860 +doorstop|3142902 +doorstopper|3142943 +doorway|3142984 +dooryard|3143071 +dopa|3143112 +dopamine|3143179 +dopastat|3143242 +dope|3143314 +dope off|3143651 +dope sheet|3143738 +dope up|3143782 +doped|3143814 +dopey|3143903 +doppelganger|3143970 +doppelzentner|3144011 +doppler|3144108 +doppler effect|3144168 +doppler shift|3144233 +dopy|3144297 +dorado|3144364 +dorbeetle|3144401 +dorian|3144432 +dorian order|3144469 +doric|3144522 +doric order|3144577 +doriden|3144629 +doris|3144708 +doris lessing|3144741 +doris may lessing|3144818 +dork|3144899 +dorking|3144925 +dorm|3144977 +dorm room|3145081 +dormancy|3145166 +dormant|3145305 +dormant account|3145422 +dormer|3145463 +dormer window|3145500 +dormie|3145551 +dormition|3145576 +dormitory|3145651 +dormitory room|3145828 +dormouse|3145913 +dormy|3145960 +doronicum|3145985 +doroteo arango|3146050 +dorothea lange|3146173 +dorotheanthus|3146239 +dorotheanthus bellidiformis|3146322 +dorothy dix|3146415 +dorothy hodgkin|3146495 +dorothy l. sayers|3146582 +dorothy leigh sayers|3146684 +dorothy mary crowfoot hodgkin|3146789 +dorothy parker|3146890 +dorothy rothschild parker|3146976 +dorothy sayers|3147073 +dorsal|3147172 +dorsal fin|3147210 +dorsal scapular vein|3147234 +dorsal vertebra|3147319 +dorsiflexion|3147371 +dorsoventral|3147409 +dorsum|3147439 +dory|3147487 +dorylinae|3147569 +doryopteris|3147635 +doryopteris pedata|3147697 +dos|3147759 +dos passos|3148009 +dosage|3148070 +dose|3148111 +dose rate|3148407 +dosed|3148431 +dosemeter|3148454 +dosimeter|3148538 +dosimetry|3148622 +doss|3148683 +doss down|3148732 +dossal|3148781 +dossel|3148825 +dosser|3148869 +dosshouse|3148914 +dossier|3148971 +dostoevski|3149019 +dostoevskian|3149385 +dostoevsky|3149447 +dostoyevskian|3149813 +dostoyevsky|3149876 +dot|3150243 +dot com|3150815 +dot com company|3150945 +dot matrix|3150994 +dot matrix printer|3151021 +dot printer|3151084 +dot product|3151147 +dot-com|3150671 +dotage|3151214 +dotard|3151289 +dote|3151351 +doting|3151412 +dotrel|3151448 +dotted|3151523 +dotted gayfeather|3151604 +dotted line|3151711 +dotterel|3151737 +dottily|3151812 +dottle|3151859 +dotty|3151883 +douala|3152144 +douay bible|3152644 +douay version|3152860 +douay-rheims bible|3152196 +douay-rheims version|3152419 +double|3153078 +double agent|3156611 +double back|3156654 +double bar|3156729 +double bass|3156758 +double bassoon|3156874 +double bed|3156934 +double bind|3156958 +double birdie|3156996 +double blind|3157025 +double bogey|3157062 +double boiler|3157090 +double bond|3157138 +double check|3157173 +double chin|3157220 +double clinch|3157261 +double cream|3157298 +double creme|3157333 +double crochet|3157382 +double cross|3157464 +double dagger|3157556 +double damages|3157635 +double date|3157706 +double decomposition|3157755 +double decomposition reaction|3157853 +double digit|3157951 +double dipper|3157994 +double dipping|3158036 +double door|3158067 +double dribble|3158093 +double dutch|3158135 +double dye|3158217 +double eagle|3158241 +double entendre|3158281 +double entry|3158316 +double fault|3158384 +double feature|3158412 +double first|3158464 +double flat|3158519 +double glazing|3158545 +double gloucester|3158576 +double gold|3158628 +double helix|3158742 +double indemnity|3158777 +double jeopardy|3158810 +double knit|3158868 +double leg circle|3158909 +double negative|3158955 +double obelisk|3159008 +double over|3159087 +double play|3159135 +double pneumonia|3159170 +double quick|3159212 +double quotes|3159245 +double reed|3159304 +double refraction|3159404 +double replacement reaction|3159456 +double reverse|3159555 +double rhyme|3159587 +double salt|3159620 +double saucepan|3159684 +double sharp|3159732 +double standard|3159760 +double standard of sexual behavior|3159804 +double star|3159864 +double stitch|3159909 +double stopping|3159992 +double take|3160026 +double talk|3160065 +double time|3160103 +double tongue|3160198 +double up|3160242 +double vision|3160350 +double-barreled|3153762 +double-barrelled|3153854 +double-bass|3153929 +double-bedded|3153977 +double-bitted ax|3154007 +double-bitted axe|3154081 +double-blind experiment|3154155 +double-blind procedure|3154253 +double-blind study|3154351 +double-bogey|3154449 +double-breasted|3154477 +double-breasted jacket|3154518 +double-breasted suit|3154557 +double-check|3154608 +double-chinned|3154689 +double-crosser|3154736 +double-crossing|3154851 +double-date|3154924 +double-dealer|3154950 +double-dealing|3155065 +double-decker|3155257 +double-dyed|3155360 +double-edged|3155493 +double-entry bookkeeping|3155525 +double-faced|3155593 +double-geared|3155753 +double-glaze|3155809 +double-hung window|3155843 +double-jointed|3155878 +double-magnum|3155919 +double-park|3155963 +double-prop|3155989 +double-propeller plane|3156080 +double-quick|3156171 +double-reed instrument|3156198 +double-space|3156271 +double-spaced|3156308 +double-spacing|3156338 +double-team|3156381 +double-tongued|3156408 +double-u|3156540 +doubled|3160444 +doubleheader|3160499 +doubler|3160551 +doubles|3160586 +doublespeak|3160944 +doublet|3160986 +doublethink|3161010 +doubleton|3161041 +doubletree|3161137 +doubling|3161166 +doubloon|3161219 +doubly|3161242 +doubly transitive verb|3161288 +doubly transitive verb form|3161385 +doubt|3161482 +doubter|3161712 +doubtful|3161804 +doubtfully|3161927 +doubtfulness|3161956 +doubting|3162118 +doubting thomas|3162180 +doubtless|3162341 +douche|3162418 +douche bag|3162492 +dough|3162527 +doughboy|3162707 +doughnut|3162787 +doughnut-shaped|3162879 +doughty|3162977 +doughy|3163030 +douglas|3163058 +douglas elton fairbanks|3163183 +douglas fairbanks|3163325 +douglas fairbanks jr.|3163461 +douglas fir|3163567 +douglas hemlock|3163623 +douglas macarthur|3163751 +douglas moore|3163827 +douglas pine|3163879 +douglas spruce|3164007 +douglas squirrel|3164135 +douglass|3164224 +dour|3164299 +doura|3164479 +dourah|3164561 +dourly|3164643 +douroucouli|3164674 +douse|3164742 +dousing|3164987 +dove|3165041 +dove's foot geranium|3165185 +dovecote|3165254 +dovekie|3165292 +dover|3165337 +dover's powder|3165392 +dovetail|3165438 +dovetail joint|3165520 +dovetail plane|3165591 +dovish|3165657 +dovishness|3165702 +dovyalis|3165770 +dovyalis caffra|3165834 +dovyalis hebecarpa|3165911 +dow jones|3166138 +dow-jones industrial average|3166030 +dowager|3166227 +dowdily|3166262 +dowdiness|3166298 +dowding|3166348 +dowdy|3166469 +dowel|3166685 +dowel pin|3166752 +doweling|3166819 +dower|3166858 +dowered|3166957 +dowerless|3166982 +dowery|3167011 +dowitcher|3167044 +dowland|3167069 +down|3167141 +down easter|3168433 +down feather|3168482 +down in the mouth|3168531 +down pat|3168636 +down payment|3168676 +down quark|3168714 +down syndrome|3168740 +down the stairs|3168994 +down town|3169052 +down's syndrome|3168052 +down-and-out|3168308 +down-bow|3168371 +down-to-earth|3168393 +downbeat|3169153 +downbound|3169198 +downcast|3169222 +downdraft|3169352 +downed|3169385 +downer|3169431 +downfall|3169553 +downfield|3169685 +downgrade|3169709 +downhearted|3169775 +downheartedness|3169880 +downhill|3169957 +downiness|3170114 +downing|3170166 +downing street|3170276 +downlike|3170374 +download|3170417 +downmarket|3170444 +downplay|3170485 +downpour|3170622 +downright|3170705 +downrightness|3170800 +downriver|3170867 +downscale|3170896 +downside|3170926 +downsizing|3170949 +downslope|3171009 +downspin|3171101 +downstage|3171138 +downstair|3171167 +downstairs|3171210 +downstream|3171309 +downstroke|3171356 +downswing|3171383 +downtick|3171456 +downtime|3171503 +downtown|3171555 +downturn|3171621 +downward|3171659 +downward-sloping|3171737 +downwardly|3171795 +downwards|3171838 +downwind|3171881 +downy|3171946 +downy ash|3172041 +downy birch|3172104 +downy brome|3172171 +downy bromegrass|3172292 +downy cheat|3172413 +downy chess|3172534 +downy ground cherry|3172655 +downy haw|3172747 +downy manzanita|3172830 +downy mildew|3172907 +downy poplar|3172949 +downy wood mint|3173050 +downy woodpecker|3173103 +downy yellow violet|3173158 +dowry|3173210 +dowse|3173243 +dowser|3173426 +dowsing|3173538 +dowsing rod|3173624 +doxastic logic|3173696 +doxepin|3173732 +doxepin hydrochloride|3173852 +doxology|3173972 +doxorubicin|3174002 +doxy|3174050 +doxycycline|3174135 +doyen|3174194 +doyenne|3174227 +doyley|3174257 +doyly|3174291 +doze|3174325 +doze off|3174409 +dozen|3174496 +dozens|3174569 +dozer|3174771 +dozy|3174804 +dp|3174841 +dph|3174898 +dphil|3174965 +dprk|3175007 +dpt vaccine|3175112 +dr.|3175162 +dr. j|3175294 +dr. johnson|3175367 +dr. seuss|3175464 +drab|3175535 +draba|3175676 +draba verna|3175713 +drabness|3175789 +dracaena|3175839 +dracaena draco|3175906 +dracaenaceae|3175966 +dracenaceae|3176080 +drachm|3176193 +drachma|3176413 +draco|3176523 +dracocephalum|3176644 +dracocephalum parviflorum|3176721 +draconian|3176829 +dracontium|3176884 +dracula|3176915 +dracunculiasis|3177050 +dracunculidae|3177118 +dracunculus|3177188 +dracunculus medinensis|3177317 +dracunculus vulgaris|3177417 +draft|3177504 +draft animal|3178115 +draft beer|3178149 +draft board|3178187 +draft copy|3178214 +draft dodger|3178260 +draft evader|3178313 +draft horse|3178366 +draftee|3178422 +drafter|3178505 +drafting|3178536 +drafting board|3178702 +drafting instrument|3178746 +drafting table|3178786 +draftsman|3178845 +draftsmanship|3178956 +draftsperson|3179038 +drafty|3179112 +drag|3179143 +drag a bunt|3179840 +drag coefficient|3179870 +drag down|3179928 +drag in|3180001 +drag on|3180061 +drag one's feet|3180131 +drag one's heels|3180235 +drag out|3180339 +drag through the mud|3180408 +drag up|3180534 +dragee|3180601 +dragger|3180667 +dragging|3180762 +draggled|3180802 +dragnet|3180852 +dragoman|3180926 +dragon|3180967 +dragon arum|3181394 +dragon lizard|3181460 +dragon tree|3181573 +dragon's blood|3181168 +dragon's eye|3181196 +dragon's head|3181243 +dragon's mouth|3181325 +dragonet|3181618 +dragonfly|3181671 +dragonhead|3181803 +dragoon|3181885 +dragunov|3182005 +drain|3182061 +drain basket|3182350 +drain the cup|3182379 +drainage|3182424 +drainage area|3182477 +drainage basin|3182618 +drainage ditch|3182759 +drainage system|3182789 +drainboard|3182821 +drained|3182862 +draining|3182948 +draining board|3182990 +drainpipe|3183031 +drainplug|3183086 +drake|3183126 +dram|3183222 +drama|3183345 +drama critic|3183519 +dramamine|3183563 +dramatic|3183648 +dramatic art|3183802 +dramatic composition|3183889 +dramatic event|3183975 +dramatic irony|3184013 +dramatic performance|3184043 +dramatic play|3184105 +dramatic production|3184174 +dramatic work|3184236 +dramatics|3184322 +dramatis personae|3184441 +dramatisation|3184513 +dramatise|3184625 +dramatist|3184857 +dramatization|3184901 +dramatize|3185013 +dramaturgic|3185245 +dramaturgical|3185307 +dramaturgy|3185369 +drambuie|3185456 +drape|3185560 +draped|3185738 +draper|3185811 +drapery|3185858 +drastic|3185963 +draught|3185989 +draught beer|3186234 +draught horse|3186272 +draughts|3186328 +draughtsman|3186614 +draughty|3186688 +dravidian|3186719 +dravidian language|3186824 +dravidic|3186914 +draw|3186994 +draw a bead on|3188682 +draw a blank|3188779 +draw a line|3188824 +draw and quarter|3188914 +draw away|3188958 +draw back|3189043 +draw close|3189177 +draw in|3189349 +draw near|3189686 +draw off|3189767 +draw out|3189896 +draw play|3190115 +draw poker|3190177 +draw rein|3190219 +draw the line|3190275 +draw together|3190365 +draw up|3190433 +drawback|3190592 +drawbar|3190623 +drawbridge|3190644 +drawee|3190688 +drawer|3190722 +drawers|3190836 +drawing|3191071 +drawing board|3191423 +drawing card|3191467 +drawing chalk|3191571 +drawing ink|3191600 +drawing lots|3191635 +drawing off|3191714 +drawing paper|3191749 +drawing pin|3191778 +drawing power|3191837 +drawing room|3191886 +drawing string|3191959 +drawing table|3192005 +drawing-room car|3191324 +drawknife|3192064 +drawl|3192099 +drawler|3192196 +drawn|3192258 +drawn butter|3192475 +drawn-out|3192401 +drawnwork|3192521 +drawshave|3192561 +drawstring|3192596 +drawstring bag|3192642 +dray|3192670 +dray horse|3192713 +drayhorse|3192833 +dread|3192910 +dreaded|3193101 +dreadful|3193219 +dreadfully|3193422 +dreadfulness|3193473 +dreadlock|3193544 +dreadnaught|3193587 +dreadnought|3193643 +dream|3193699 +dream up|3194061 +dreamed|3194148 +dreamer|3194172 +dreamfully|3194289 +dreamily|3194325 +dreaminess|3194361 +dreaming|3194409 +dreamland|3194524 +dreamless|3194602 +dreamlike|3194632 +dreamworld|3194666 +dreamy|3194744 +drear|3194852 +drearily|3194926 +dreariness|3194952 +dreary|3195000 +dreck|3195091 +dred scott|3195147 +dredge|3195190 +dredge up|3195334 +dredger|3195401 +dredging bucket|3195445 +dreg|3195482 +dregs|3195546 +dreiser|3195658 +dreissena|3195745 +dreissena polymorpha|3195804 +drench|3195902 +drenched|3196034 +drenched in|3196129 +drenching|3196167 +drepanididae|3196216 +drepanis|3196283 +drepanocytic anaemia|3196336 +drepanocytic anemia|3196540 +dresden|3196744 +dress|3196798 +dress blues|3197770 +dress circle|3197818 +dress code|3197887 +dress down|3197925 +dress hanger|3198181 +dress hat|3198237 +dress out|3198332 +dress rack|3198385 +dress rehearsal|3198416 +dress ship|3198459 +dress shirt|3198528 +dress shop|3198569 +dress suit|3198609 +dress uniform|3198748 +dress up|3198788 +dress whites|3199191 +dressage|3199239 +dressed|3199274 +dressed ore|3199628 +dressed to kill|3199665 +dressed to the nines|3199785 +dressed-up|3199508 +dresser|3199905 +dressing|3200182 +dressing case|3200459 +dressing down|3200498 +dressing gown|3200633 +dressing room|3200691 +dressing sack|3200719 +dressing sacque|3200765 +dressing station|3200811 +dressing table|3200867 +dressmaker|3200925 +dressmaker's model|3201030 +dressmaking|3201070 +dressy|3201103 +drew|3201125 +drey|3201197 +dreyfus|3201216 +dribble|3201269 +dribbler|3201532 +dribbling|3201672 +driblet|3201720 +dried|3201792 +dried apricot|3201957 +dried fruit|3201992 +dried milk|3202026 +dried-out|3201850 +dried-up|3201884 +drier|3202086 +drift|3202171 +drift apart|3202809 +drift away|3202875 +drift ice|3202941 +drift net|3202964 +drift off|3203003 +driftage|3203090 +drifter|3203150 +driftfish|3203251 +drifting|3203353 +driftwood|3203472 +drill|3203496 +drill bit|3203831 +drill hole|3203867 +drill in|3203932 +drill instructor|3203983 +drill master|3204053 +drill rig|3204123 +drill rod|3204174 +drill site|3204218 +drill steel|3204253 +drilled|3204297 +drilling|3204322 +drilling bit|3204407 +drilling fluid|3204443 +drilling mud|3204523 +drilling pipe|3204603 +drilling platform|3204645 +drilling rig|3204723 +drimys|3204774 +drimys winteri|3204832 +drink|3204909 +drink down|3205438 +drink in|3205524 +drink up|3205599 +drinkable|3205644 +drinker|3205732 +drinking|3205795 +drinking age|3205942 +drinking bout|3205972 +drinking chocolate|3206041 +drinking cup|3206132 +drinking fountain|3206178 +drinking glass|3206237 +drinking song|3206277 +drinking straw|3206305 +drinking vessel|3206347 +drinking water|3206379 +drip|3206442 +drip coffee|3206710 +drip culture|3206743 +drip feed|3206802 +drip loop|3206854 +drip mat|3206878 +drip mold|3206900 +drip mould|3206946 +drip pan|3206992 +drip pot|3207050 +drip-dry|3206609 +dripless|3207078 +drippage|3207102 +drippily|3207142 +drippiness|3207169 +dripping|3207267 +dripping pan|3207384 +drippings|3207431 +drippy|3207526 +dripstone|3207659 +drive|3207748 +drive around|3208959 +drive away|3209008 +drive back|3209098 +drive home|3209191 +drive in|3209306 +drive line|3209378 +drive line system|3209426 +drive off|3209474 +drive out|3209564 +drive up|3209760 +drive-by killing|3208848 +drive-by shooting|3208883 +drive-in|3208919 +drivel|3209837 +driveller|3210004 +driven|3210164 +driven well|3210289 +driver|3210325 +driver ant|3210696 +driver's licence|3210500 +driver's license|3210598 +driveshaft|3210757 +driveway|3210798 +driving|3210846 +driving axle|3211012 +driving belt|3211049 +driving force|3211076 +driving iron|3211133 +driving licence|3211169 +driving license|3211267 +driving range|3211365 +driving school|3211414 +driving wheel|3211445 +drixoral|3211474 +drizzle|3211547 +drizzling|3211652 +drizzly|3211682 +drms|3211710 +drogheda|3211837 +drogue|3211897 +drogue chute|3212083 +drogue parachute|3212145 +droll|3212230 +drollery|3212264 +dromaeosaur|3212359 +dromaeosauridae|3212391 +dromaius|3212470 +dromaius novaehollandiae|3212523 +dromedary|3212641 +dronabinol|3212700 +drone|3212808 +drone on|3213154 +drone pipe|3213221 +droning|3213271 +drool|3213366 +drool over|3213653 +drooler|3213730 +droop|3213829 +drooping|3213986 +drooping brome|3214087 +drooping juniper|3214208 +droopy|3214277 +drop|3214314 +drop a line|3216072 +drop anchor|3216110 +drop arch|3216168 +drop away|3216200 +drop back|3216258 +drop behind|3216282 +drop biscuit|3216368 +drop by|3216398 +drop by the wayside|3216450 +drop cloth|3216569 +drop curtain|3216681 +drop dead|3216753 +drop down|3216922 +drop earring|3216966 +drop forge|3217020 +drop hammer|3217070 +drop in|3217120 +drop keel|3217172 +drop line|3217237 +drop off|3217424 +drop open|3217666 +drop out|3217715 +drop press|3217869 +drop scone|3217919 +drop shot|3217972 +drop zone|3218003 +drop-down menu|3215542 +drop-kick|3215585 +drop-leaf|3215663 +drop-leaf table|3215687 +drop-off|3215718 +drop-off charge|3215928 +drop-seed|3215957 +dropforge|3218041 +dropkick|3218073 +dropkicker|3218133 +droplet|3218160 +dropline|3218190 +dropout|3218296 +dropped|3218342 +dropped egg|3218364 +dropper|3218402 +dropping|3218445 +dropping zone|3218497 +droppings|3218535 +dropseed|3218630 +dropsical|3218664 +dropsy|3218703 +drosera|3218764 +droseraceae|3218834 +droshky|3218933 +drosky|3218979 +drosophila|3219025 +drosophila melanogaster|3219090 +drosophilidae|3219179 +drosophyllum|3219254 +drosophyllum lusitanicum|3219339 +dross|3219416 +drought|3219512 +drove|3219600 +drove chisel|3219680 +drover|3219715 +drown|3219773 +drown out|3219944 +drowned|3219988 +drowse|3220022 +drowse off|3220118 +drowsily|3220205 +drowsiness|3220234 +drowsing|3220292 +drowsy|3220329 +drub|3220402 +drubbing|3220483 +drudge|3220652 +drudgery|3220830 +drudging|3220892 +drug|3220942 +drug abuse|3221136 +drug addict|3221191 +drug addiction|3221232 +drug baron|3221313 +drug bust|3221348 +drug cartel|3221421 +drug cocktail|3221479 +drug company|3221591 +drug dealer|3221651 +drug enforcement administration|3221762 +drug enforcement agency|3221886 +drug lord|3222002 +drug of abuse|3222037 +drug peddler|3222077 +drug traffic|3222188 +drug trafficker|3222248 +drug trafficking|3222359 +drug user|3222419 +drug war|3222513 +drug withdrawal|3222543 +drug-addicted|3221041 +drug-free|3221111 +drugged|3222609 +drugget|3222683 +drugging|3222721 +druggist|3222781 +drugless|3222904 +drugs bust|3222932 +drugstore|3223065 +druid|3223147 +drum|3223190 +drum brake|3223518 +drum brakes|3223583 +drum major|3223699 +drum majorette|3223753 +drum out|3223840 +drum printer|3223904 +drum roll|3223962 +drum sander|3224003 +drum up|3224067 +drumbeat|3224114 +drumbeater|3224202 +drumfire|3224276 +drumfish|3224331 +drumhead|3224377 +drumhead court-martial|3224435 +drumlin|3224481 +drummer|3224504 +drumming|3224535 +drumstick|3224564 +drumstick tree|3224620 +drunk|3224742 +drunk-and-disorderly|3225269 +drunkard|3225305 +drunken|3225378 +drunken reveler|3225447 +drunken reveller|3225537 +drunken revelry|3225627 +drunkenness|3225728 +drupaceous|3225956 +drupe|3225981 +drupelet|3226014 +druse|3226050 +druthers|3226095 +druze|3226150 +dry|3226195 +dry battery|3227314 +dry cell|3227368 +dry cereal|3227401 +dry clean|3227440 +dry cleaner|3227476 +dry cleaners|3227552 +dry cleaning|3227668 +dry dock|3227717 +dry fly|3227867 +dry gangrene|3227888 +dry ice|3227986 +dry kiln|3228009 +dry land|3228032 +dry masonry|3228116 +dry measure|3228145 +dry milk|3228295 +dry mop|3228355 +dry mouth|3228403 +dry mustard|3228463 +dry nurse|3228554 +dry out|3228595 +dry pint|3228673 +dry point|3228719 +dry quart|3228765 +dry rot|3228813 +dry run|3228858 +dry season|3228937 +dry socket|3228977 +dry unit|3229035 +dry up|3229185 +dry vermouth|3229281 +dry wall|3229328 +dry walling|3229384 +dry wash|3229427 +dry-bulb thermometer|3226878 +dry-cleaned|3226920 +dry-dock|3226947 +dry-eyed|3227059 +dry-gulching|3227090 +dry-nurse|3227173 +dry-rot|3227207 +dry-shod|3227236 +dry-stone wall|3227258 +dryad|3229470 +dryadella|3229502 +dryas|3229577 +dryas octopetala|3229628 +dryden|3229705 +drydock|3229766 +dryer|3229856 +drygoods|3229887 +drying agent|3229944 +drying oil|3230006 +drying up|3230055 +dryland berry|3230121 +dryland blueberry|3230206 +dryly|3230291 +drymarchon|3230317 +drymarchon corais|3230379 +drymarchon corais couperi|3230474 +drymoglossum|3230600 +drynaria|3230665 +drynaria rigidula|3230718 +dryness|3230780 +dryopithecine|3230836 +dryopithecus|3230867 +dryopithecus rudapithecus hungaricus|3230934 +dryopteridaceae|3231044 +dryopteris|3231151 +dryopteris dilatata|3231210 +dryopteris filix-mas|3231303 +dryopteris fragrans|3231393 +dryopteris goldiana|3231531 +dryopteris hexagonoptera|3231659 +dryopteris marginalis|3231818 +dryopteris noveboracensis|3231961 +dryopteris oreades|3232074 +dryopteris oreopteris|3232169 +dryopteris phegopteris|3232264 +dryopteris thelypteris|3232432 +dryopteris thelypteris pubescens|3232525 +drypis|3232714 +ds|3232752 +dsl|3232909 +dtic|3233015 +dts|3233135 +du barry|3233179 +du bois|3233251 +du maurier|3233388 +duad|3233576 +dual|3233677 +dual carriageway|3233812 +dual inline package switch|3233872 +dual scan display|3233968 +dual-lane|3233775 +dualism|3234018 +dualist|3234098 +dualistic|3234133 +duality|3234225 +dub|3234409 +dubai|3234509 +dubbin|3234564 +dubbing|3234587 +dubiety|3234615 +dubious|3234717 +dubiously|3234833 +dubiousness|3234881 +dubitable|3235044 +dublin|3235105 +dubliner|3235183 +dubois heyward|3235233 +dubonnet|3235315 +dubrovnik|3235352 +dubuque|3235422 +dubya|3235452 +dubyuh|3235652 +duc d'elchingen|3235853 +duc de richelieu|3235947 +duc de sully|3236122 +ducal|3236216 +ducat|3236250 +duce|3236270 +duchamp|3236291 +duchenne's muscular dystrophy|3236354 +duchess|3236481 +duchess of ferrara|3236522 +duchess of windsor|3236616 +duchesse de valentinois|3236753 +duchy|3236846 +duck|3236889 +duck down|3237438 +duck hunter|3237475 +duck hunting|3237512 +duck pate|3237555 +duck sauce|3237579 +duck shot|3237622 +duck soup|3237672 +duck's egg|3237160 +duck-billed|3237191 +duck-billed dinosaur|3237228 +duck-billed platypus|3237317 +duckbill|3237792 +duckbilled platypus|3237994 +duckboard|3238115 +ducking|3238144 +ducking stool|3238231 +duckling|3238293 +duckpin|3238328 +duckpins|3238361 +ducks and drakes|3238418 +duckweed|3238449 +duckweed family|3238522 +ducky|3238606 +duct|3238671 +duct gland|3238783 +duct tape|3238858 +ductile|3238891 +ductility|3238997 +ductless|3239040 +ductless gland|3239076 +ductule|3239166 +ductulus|3239227 +ductus arteriosus|3239288 +ductus deferens|3239328 +dud|3239401 +dude|3239560 +dude ranch|3239651 +dudeen|3239706 +dudgeon|3239732 +dudley moore|3239782 +dudley stuart john moore|3239906 +duds|3240042 +due|3240260 +due care|3240544 +due date|3240626 +due east|3240689 +due north|3240737 +due process|3240787 +due process of law|3240840 +due south|3240893 +due to|3240943 +due west|3241003 +duel|3241051 +dueler|3241156 +duelist|3241244 +dueller|3241332 +duellist|3241420 +duenna|3241508 +duet|3241543 +duette|3241880 +duff|3242035 +duffel|3242057 +duffel bag|3242161 +duffel coat|3242221 +duffer|3242259 +duffle|3242289 +duffle bag|3242393 +duffle coat|3242453 +dufy|3242491 +dug|3242529 +dugald stewart|3242562 +dugong|3242621 +dugong dugon|3242683 +dugongidae|3242758 +dugout|3242821 +dugout canoe|3242916 +dukas|3242959 +duke|3243000 +duke ellington|3243046 +duke of argyll's tea tree|3243142 +duke of cumberland|3243285 +duke of edinburgh|3243400 +duke of marlborough|3243473 +duke of wellington|3243594 +duke of windsor|3243761 +duke university|3243852 +duke wayne|3243904 +dukedom|3243995 +dulcet|3244050 +dulciana|3244146 +dulcify|3244175 +dulcimer|3244234 +dulcorate|3244301 +dull|3244360 +dullard|3245219 +dulled|3245372 +dulles|3245465 +dullness|3245528 +dulness|3245710 +dulse|3245895 +duluth|3245939 +duly|3245996 +dumas|3246020 +dumb|3246071 +dumb bomb|3246241 +dumb cane|3246278 +dumb show|3246373 +dumbbell|3246444 +dumbfound|3246553 +dumbfounded|3246738 +dumbfounding|3246818 +dumbly|3246887 +dumbness|3246919 +dumbwaiter|3246973 +dumdum|3247021 +dumdum bullet|3247063 +dumdum fever|3247105 +dumetella|3247210 +dumetella carolinensis|3247266 +dumfounded|3247361 +dumfounding|3247441 +dummy|3247510 +dummy up|3247742 +dummy whist|3247854 +dump|3247904 +dump routine|3248319 +dump truck|3248373 +dumpcart|3248460 +dumped|3248483 +dumper|3248503 +dumpiness|3248590 +dumping|3248655 +dumpling|3248704 +dumplings|3248783 +dumps|3248910 +dumpsite|3249115 +dumpster|3249211 +dumpy|3249248 +dumpy level|3249334 +dumuzi|3249384 +dun|3249428 +duncan|3249701 +duncan grant|3249766 +duncan james corrow grant|3249841 +dunce|3249929 +dunce cap|3250130 +dunce's cap|3250072 +dundathu pine|3250188 +dunderhead|3250285 +dune|3250428 +dune buggy|3250458 +dune cycling|3250514 +dung|3250544 +dung beetle|3250738 +dungaree|3250799 +dungeness crab|3250858 +dungeon|3250954 +dunghill|3251037 +dunk|3251126 +dunk shot|3251250 +dunkard|3251301 +dunked|3251387 +dunker|3251414 +dunkerque|3251560 +dunkers|3251658 +dunkirk|3251886 +dunlin|3252004 +dunnock|3252065 +duns scotus|3252132 +duo|3252228 +duodecimal|3252513 +duodenal|3252546 +duodenal smear|3252579 +duodenal ulcer|3252645 +duodenum|3252700 +duologue|3252734 +dupe|3252804 +dupery|3252982 +duple|3253084 +duple time|3253120 +duplex|3253153 +duplex apartment|3253283 +duplex house|3253331 +duplicability|3253385 +duplicable|3253478 +duplicatable|3253535 +duplicate|3253592 +duplication|3253880 +duplicator|3253942 +duplicidentata|3253985 +duplicitous|3254049 +duplicity|3254181 +dura|3254312 +dura mater|3254353 +durability|3254394 +durable|3254470 +durable goods|3254729 +durable press|3254794 +durable-press fabric|3254616 +durables|3254907 +durabolin|3254972 +dural|3255048 +duralumin|3255078 +duramen|3255119 +durance|3255151 +durango|3255216 +durant|3255290 +durante|3255372 +duration|3255426 +durative|3255546 +durative aspect|3255587 +durazzo|3255628 +durban|3255694 +durbar|3255751 +durer|3255772 +duress|3255828 +durga|3255850 +durham|3255883 +durian|3255976 +durian tree|3256059 +durio|3256122 +durio zibethinus|3256177 +durion|3256257 +durkheim|3256320 +durmast|3256374 +durra|3256438 +durrell|3256520 +durres|3256600 +durum|3256665 +durum wheat|3256762 +dusanbe|3256859 +duse|3256944 +dushanbe|3256985 +dusicyon|3257071 +dusicyon cancrivorus|3257126 +dusk|3257218 +duskiness|3257312 +dusky|3257414 +dusky salamander|3257608 +dusky shark|3257645 +dusky-footed woodrat|3257500 +dusseldorf|3257702 +dust|3257762 +dust bag|3258049 +dust bowl|3258082 +dust cloud|3258173 +dust coat|3258199 +dust contamination|3258260 +dust cover|3258339 +dust devil|3258560 +dust jacket|3258590 +dust mop|3258705 +dust sheet|3258834 +dust storm|3258898 +dust wrapper|3258953 +dust-covered|3258000 +dustbin|3259068 +dustcart|3259173 +dustcloth|3259222 +duster|3259289 +dustin hoffman|3259476 +dusting powder|3259566 +dustlike|3259623 +dustman|3259646 +dustmop|3259719 +dustpan|3259767 +dustpanful|3259826 +dustrag|3259867 +dustup|3259934 +dusty|3260033 +dusty miller|3260082 +dutch|3260470 +dutch auction|3260772 +dutch capital|3260827 +dutch case-knife bean|3260918 +dutch clover|3261076 +dutch courage|3261152 +dutch door|3261220 +dutch east indies|3261288 +dutch elm|3261384 +dutch elm disease|3261443 +dutch elm fungus|3261502 +dutch florin|3261572 +dutch guiana|3261649 +dutch hoe|3261786 +dutch iris|3261839 +dutch leonard|3261948 +dutch monetary unit|3262042 +dutch oven|3262105 +dutch people|3262163 +dutch treat|3262233 +dutch uncle|3262273 +dutch-elm beetle|3260628 +dutch-processed cocoa|3260706 +dutchman|3262327 +dutchman's breeches|3262516 +dutchman's-pipe|3262386 +duteous|3262607 +dutiable|3262641 +dutiful|3262677 +dutifulness|3262711 +duty|3262748 +duty assignment|3262917 +duty period|3262958 +duty tour|3263002 +duty-bound|3262842 +duty-free|3262880 +duvalier|3263109 +duvet|3263247 +dvd|3263311 +dvorak|3263374 +dwarf|3263421 +dwarf astilbe|3263664 +dwarf banana|3263720 +dwarf bilberry|3263776 +dwarf blueberry|3263863 +dwarf buckeye|3263950 +dwarf buffalo|3264039 +dwarf cape gooseberry|3264113 +dwarf chestnut|3264206 +dwarf chinkapin oak|3264319 +dwarf chinquapin oak|3264410 +dwarf cornel|3264501 +dwarf daisy|3264607 +dwarf dandelion|3264706 +dwarf elder|3264770 +dwarf elm|3264920 +dwarf flowering almond|3264990 +dwarf golden chinkapin|3265052 +dwarf gray willow|3265120 +dwarf hulsea|3265192 +dwarf iris|3265249 +dwarf juniper|3265381 +dwarf lycopod|3265491 +dwarf maple|3265589 +dwarf mountain pine|3265650 +dwarf mulberry|3265770 +dwarf nipplewort|3265888 +dwarf oak|3265966 +dwarf phlox|3266057 +dwarf pipefish|3266135 +dwarf pocket rat|3266202 +dwarf russian almond|3266254 +dwarf sperm whale|3266347 +dwarf spurge|3266400 +dwarf sumac|3266446 +dwarf tulip|3266543 +dwarf willow|3266602 +dwarf-white trillium|3263573 +dwarfish|3266658 +dwarfishness|3266682 +dwarfism|3266725 +dweeb|3266914 +dwell|3266978 +dwell on|3267197 +dweller|3267249 +dwelling|3267348 +dwelling house|3267450 +dwight d. eisenhower|3267552 +dwight david eisenhower|3267783 +dwight davis|3268017 +dwight eisenhower|3268092 +dwight filley davis|3268320 +dwight lyman moody|3268402 +dwindle|3268496 +dwindle away|3268569 +dwindle down|3268642 +dwindling|3268715 +dwindling away|3268817 +dy|3268879 +dyad|3268945 +dyadic|3269046 +dyadic operation|3269076 +dyarchy|3269112 +dyaus|3269173 +dyaus-pitar|3269218 +dybbuk|3269269 +dye|3269324 +dye-works|3269435 +dyed|3269468 +dyeing|3269526 +dyer|3269561 +dyer's greenweed|3269711 +dyer's mignonette|3269817 +dyer's rocket|3269885 +dyer's weed|3269953 +dyer's woad|3270000 +dyer's woodruff|3270043 +dyer's-broom|3269605 +dyers' chamomile|3270096 +dyestuff|3270202 +dyeweed|3270274 +dyewood|3270380 +dying|3270402 +dyirbal|3270489 +dyke|3270555 +dylan|3270672 +dylan marlais thomas|3270798 +dylan thomas|3270874 +dynamic|3270942 +dynamic balance|3271321 +dynamic electricity|3271358 +dynamic headroom|3271419 +dynamic viscosity|3271474 +dynamical|3271557 +dynamical system|3271848 +dynamics|3271886 +dynamise|3271981 +dynamism|3272064 +dynamite|3272198 +dynamiter|3272275 +dynamitist|3272354 +dynamize|3272433 +dynamo|3272516 +dynamometer|3272542 +dynapen|3272628 +dynast|3272712 +dynastic|3272741 +dynasty|3272812 +dyne|3272883 +dysaphia|3272908 +dysarthria|3272941 +dyscalculia|3273008 +dyschezia|3273067 +dyscrasia|3273112 +dysdercus|3273171 +dysentery|3273232 +dysfunction|3273270 +dysfunctional|3273313 +dysgenesis|3273376 +dysgenic|3273418 +dysgenics|3273479 +dysgraphia|3273533 +dyskinesia|3273591 +dyslectic|3273671 +dyslexia|3273708 +dyslexic|3273764 +dyslogia|3273845 +dyslogistic|3273910 +dysmenorrhea|3273970 +dysomia|3274005 +dysosmia|3274065 +dysostosis multiplex|3274128 +dyspepsia|3274284 +dyspeptic|3274351 +dysphagia|3274471 +dysphemism|3274505 +dysphemistic|3274552 +dysphonia|3274597 +dysphoria|3274663 +dysphoric|3274736 +dysplasia|3274801 +dysplastic|3274862 +dyspnea|3274923 +dyspneal|3274957 +dyspneic|3275138 +dyspnoea|3275319 +dyspnoeal|3275353 +dyspnoeic|3275534 +dysprosium|3275715 +dyssynergia|3275778 +dysthymia|3275885 +dysthymic depression|3275976 +dystopia|3276067 +dystopian|3276106 +dystrophy|3276147 +dysuria|3276378 +dytiscidae|3276410 +dyushambe|3276476 +dziggetai|3276563 +e|3276637 +e layer|3278806 +e region|3278893 +e'er|3276910 +e-bomb|3276935 +e-mail|3276978 +e-mycin|3277240 +e. a. von willebrand|3277342 +e. b. white|3277500 +e. coli|3277572 +e. e. cummings|3277626 +e. g. marshall|3277696 +e. h. harriman|3277787 +e. h. weber|3277884 +e. l. doctorow|3277957 +e. o. lawrence|3278044 +e. o. wilson|3278134 +e. t. a. hoffmann|3278233 +e. t. s. walton|3278363 +e. w. morley|3278471 +e.g.|3278558 +e.s.p.|3278596 +ea|3278981 +each|3279010 +each day|3279080 +each month|3279113 +each week|3279152 +each year|3279201 +eacles|3279285 +eacles imperialis|3279337 +eadweard muybridge|3279421 +eadwig|3279532 +eager|3279598 +eager beaver|3279763 +eagerly|3279837 +eagerness|3279863 +eagle|3279919 +eagle ray|3280138 +eagle scout|3280161 +eagle-eyed|3280061 +eaglet|3280192 +eagre|3280238 +eames|3280306 +eames chair|3280428 +eamon de valera|3280467 +ear|3280550 +ear canal|3280917 +ear doctor|3281014 +ear fungus|3281089 +ear hole|3281164 +ear lobe|3281187 +ear specialist|3281299 +ear trumpet|3281374 +ear-nose-and-throat doctor|3280702 +ear-shaped|3280834 +ear-shell|3280871 +earache|3281423 +eardrop|3281460 +eardrum|3281514 +eared|3281588 +eared grebe|3281664 +eared seal|3281731 +earflap|3281756 +earful|3281785 +earhart|3281954 +earl|3282030 +earl marshal|3282054 +earl of leicester|3282094 +earl of warwick|3282171 +earl russell|3282282 +earl warren|3282407 +earlap|3282467 +earldom|3282496 +earleaved umbrella tree|3282545 +earless|3282604 +earless lizard|3282629 +earless seal|3282676 +earlier|3282723 +earliest|3283277 +earliness|3283750 +earlobe|3283776 +early|3283807 +early bird|3284336 +early childhood|3284391 +early coral root|3284446 +early days|3284520 +early morel|3284580 +early on|3284633 +early purple orchid|3284656 +early spider orchid|3284719 +early wake-robin|3284779 +early warning radar|3284870 +early warning system|3284963 +early winter cress|3285020 +early-morning hour|3284291 +earlyish|3285188 +earmark|3285212 +earmuff|3285364 +earn|3285390 +earned|3285499 +earned run|3285531 +earner|3285561 +earnest|3285599 +earnest money|3285741 +earnestly|3285772 +earnestness|3285811 +earning per share|3285926 +earnings|3286009 +earnings before interest taxes depreciation and amortization|3286133 +earnings report|3286278 +earphone|3286396 +earpiece|3286467 +earreach|3286538 +earring|3286584 +earshot|3286619 +earsplitting|3286665 +earth|3286730 +earth almond|3287719 +earth color|3287811 +earth mother|3287848 +earth science|3287884 +earth tremor|3287923 +earth up|3287994 +earth wax|3288072 +earth's crust|3287078 +earth's surface|3287127 +earth-ball|3287182 +earth-closet|3287295 +earth-god|3287350 +earth-goddess|3287397 +earth-nut pea|3287428 +earth-received time|3287513 +earth-tongue|3287597 +earthball|3288140 +earthborn|3288211 +earthbound|3288265 +earthen|3288339 +earthenware|3288370 +earthenware jar|3288404 +earthing|3288439 +earthlike|3288488 +earthling|3288532 +earthly|3288607 +earthly concern|3288742 +earthman|3288803 +earthnut|3288878 +earthnut pea|3289068 +earthquake|3289153 +earthshaking|3289311 +earthstar|3289398 +earthtongue|3289424 +earthwork|3289465 +earthworm|3289505 +earthy|3289644 +earwax|3289760 +earwig|3289788 +eas|3289811 +ease|3289890 +ease off|3290266 +ease up|3290381 +eased|3290539 +easel|3290584 +easement|3290606 +easily|3290746 +easiness|3290777 +easing|3290881 +east|3291021 +east africa|3291374 +east african|3291479 +east african cedar|3291585 +east anglia|3291681 +east by north|3291786 +east by south|3291833 +east chadic|3291880 +east china sea|3291941 +east coast|3291984 +east german|3292087 +east germanic|3292178 +east germanic language|3292265 +east germany|3292361 +east india|3292456 +east india company|3292529 +east india kino|3292584 +east india rosewood|3292659 +east indian|3292805 +east indian fig tree|3292849 +east indian rosebay|3292979 +east indian rosewood|3293163 +east indies|3293310 +east malaysia|3293384 +east midland|3293470 +east northeast|3293520 +east pakistan|3293568 +east pakistani|3293687 +east river|3293764 +east saint louis|3293808 +east side|3293856 +east southeast|3293880 +east sussex|3293928 +east timor|3293968 +east tocharian|3294018 +east turkestan islamic movement|3294089 +east turkistan islamic movement|3294268 +east wind|3294447 +east-central|3291302 +east-sider|3291332 +eastbound|3294514 +easter|3294547 +easter bunny|3294657 +easter cactus|3294709 +easter card|3294795 +easter daisy|3294842 +easter day|3294918 +easter egg|3294982 +easter lily|3295053 +easter lily vine|3295142 +easter sunday|3295234 +easterly|3295301 +eastern|3295408 +eastern catholicism|3295592 +eastern chimpanzee|3295665 +eastern chinquapin|3295757 +eastern chipmunk|3295870 +eastern church|3295961 +eastern coral snake|3296153 +eastern cottontail|3296249 +eastern cottonwood|3296340 +eastern cricket frog|3296432 +eastern dasyure|3296489 +eastern fence lizard|3296537 +eastern flowering dogwood|3296613 +eastern fox squirrel|3296712 +eastern gray squirrel|3296783 +eastern ground snake|3296862 +eastern hemisphere|3296954 +eastern hemlock|3297000 +eastern highlands|3297092 +eastern hop hornbeam|3297238 +eastern indigo snake|3297343 +eastern kingbird|3297443 +eastern lowland gorilla|3297496 +eastern malayo-polynesian|3297576 +eastern meadowlark|3297663 +eastern narrow-mouthed toad|3297723 +eastern orthodox|3297835 +eastern orthodox church|3298054 +eastern pasque flower|3298200 +eastern pipistrel|3298412 +eastern poison oak|3298494 +eastern red cedar|3298671 +eastern red-backed salamander|3298602 +eastern roman empire|3298772 +eastern samoa|3298922 +eastern silvery aster|3299026 +eastern sioux|3299085 +eastern spruce|3299169 +eastern standard time|3299238 +eastern time|3299344 +eastern turki|3299441 +eastern united states|3299545 +eastern white pine|3299675 +eastern woodrat|3299762 +easterner|3299823 +easternmost|3299879 +eastertide|3299914 +eastman|3299952 +eastmost|3300036 +eastside|3300071 +eastward|3300094 +eastwards|3300143 +easy|3300170 +easy chair|3300833 +easy going|3300893 +easy lay|3301022 +easy mark|3301139 +easy money|3301183 +easy street|3301268 +easygoing|3301309 +easygoingness|3301460 +eat|3301495 +eat at|3301783 +eat away|3301853 +eat in|3301914 +eat into|3301942 +eat on|3302058 +eat out|3302088 +eat up|3302118 +eatable|3302300 +eatage|3302471 +eaten|3302533 +eaten up|3302590 +eater|3302623 +eating|3302710 +eating apple|3302770 +eating away|3302812 +eating disorder|3302906 +eating house|3302946 +eating place|3303009 +eating utensil|3303072 +eaton-lambert syndrome|3303114 +eats|3303273 +eau claire|3303308 +eau de cologne|3303344 +eau de cologne mint|3303406 +eau de javelle|3303480 +eau de toilette|3303565 +eau de vie|3303619 +eaves|3303646 +eavesdrop|3303670 +eavesdropper|3303706 +ebb|3303775 +ebb away|3303977 +ebb down|3304048 +ebb off|3304119 +ebb out|3304190 +ebbing|3304261 +ebbtide|3304305 +ebenaceae|3304327 +ebenales|3304419 +ebionite|3304473 +ebitda|3304582 +eblis|3304673 +ebn|3304721 +ebola|3304772 +ebola fever|3304919 +ebola hemorrhagic fever|3305072 +ebola virus|3305237 +ebon|3305280 +ebonics|3305311 +ebonise|3305419 +ebonite|3305450 +ebonize|3305532 +ebony|3305563 +ebony family|3305708 +ebony spleenwort|3305790 +ebracteate|3305868 +ebro|3305904 +ebro river|3305940 +ebs|3305982 +ebullience|3306033 +ebullient|3306112 +ebulliently|3306164 +ebullition|3306208 +eburnation|3306304 +eburophyton|3306359 +eburophyton austinae|3306440 +ebv|3306544 +ec|3306600 +ecarte|3306817 +ecballium|3306849 +ecballium elaterium|3306925 +ecc|3307042 +ecce homo|3307100 +eccentric|3307134 +eccentric person|3307399 +eccentricity|3307477 +ecchymosis|3307568 +eccles|3307647 +eccles cake|3307717 +ecclesiastes|3307755 +ecclesiastic|3307816 +ecclesiastical|3307934 +ecclesiastical attire|3307985 +ecclesiastical benefice|3308054 +ecclesiastical calendar|3308137 +ecclesiastical law|3308224 +ecclesiastical mode|3308280 +ecclesiastical province|3308368 +ecclesiastical robe|3308425 +ecclesiasticism|3308494 +ecclesiasticus|3308588 +ecclesiology|3308682 +eccm|3308722 +eccrine|3308798 +eccrine gland|3308823 +eccyesis|3308877 +ecdemic|3309018 +ecdysiast|3309043 +ecdysis|3309161 +ecesis|3309225 +ecf|3309302 +ecg|3309398 +echelon|3309471 +echeneididae|3309573 +echeneis|3309658 +echeneis naucrates|3309711 +echidna|3309801 +echidnophaga|3309929 +echidnophaga gallinacea|3309999 +echinacea|3310088 +echinocactus|3310153 +echinocactus grusonii|3310196 +echinocereus|3310297 +echinochloa|3310377 +echinochloa crusgalli|3310458 +echinochloa frumentacea|3310556 +echinococcosis|3310695 +echinococcus|3310759 +echinoderm|3310798 +echinoderm family|3310831 +echinoderm genus|3310865 +echinodermata|3310897 +echinoidea|3310962 +echinops|3311016 +echinus|3311078 +echinus esculentus|3311121 +echium|3311197 +echium vulgare|3311245 +echo|3311355 +echo sounder|3311593 +echo sounding|3311706 +echocardiogram|3311790 +echocardiograph|3311823 +echocardiography|3311858 +echoencephalogram|3311926 +echoencephalograph|3311962 +echoencephalography|3312000 +echoic|3312071 +echoing|3312172 +echolalia|3312219 +echoless|3312271 +echolike|3312317 +echolocation|3312352 +echovirus|3312436 +echt|3312467 +eckhart|3312676 +eclair|3312804 +eclampsia|3312836 +eclat|3312915 +eclectic|3313079 +eclectic method|3313143 +eclecticism|3313205 +eclecticist|3313267 +eclipse|3313309 +eclipsis|3313455 +ecliptic|3313500 +eclogue|3313531 +ecm|3313571 +eco-warfare|3313637 +ecobabble|3313752 +ecologic|3313778 +ecological|3313882 +ecological niche|3313984 +ecological succession|3314033 +ecological terrorism|3314122 +ecological warfare|3314237 +ecologist|3314352 +ecology|3314396 +econometric|3314491 +econometrician|3314556 +econometrics|3314619 +econometrist|3314686 +economic|3314749 +economic aid|3314873 +economic and social council|3314904 +economic and social council commission|3314984 +economic commission for africa|3315110 +economic commission for asia and the far east|3315238 +economic commission for europe|3315396 +economic commission for latin america|3315524 +economic condition|3315666 +economic consumption|3315731 +economic crisis|3315817 +economic expert|3315898 +economic geography|3315950 +economic geology|3316000 +economic growth|3316034 +economic mobilisation|3316076 +economic mobilization|3316155 +economic policy|3316234 +economic process|3316266 +economic rent|3316300 +economic science|3316376 +economic strangulation|3316445 +economic system|3316522 +economic theory|3316569 +economic value|3316601 +economical|3316655 +economics|3316769 +economics department|3316838 +economics profession|3316912 +economise|3316963 +economiser|3317063 +economist|3317100 +economize|3317152 +economizer|3317252 +economy|3317289 +economy of scale|3317415 +ecosoc|3317456 +ecosoc commission|3317515 +ecosystem|3317620 +ecoterrorism|3317653 +ecotourism|3317768 +ecphonesis|3317806 +ecrevisse|3317856 +ecru|3317973 +ecstasy|3318005 +ecstatic|3318243 +ecstatic state|3318299 +ecstatically|3318347 +ect|3318394 +ectasia|3318501 +ectasis|3318559 +ectoblast|3318617 +ectoderm|3318664 +ectodermal|3318711 +ectodermic|3318752 +ectomorph|3318793 +ectomorphic|3318865 +ectomorphy|3318917 +ectoparasite|3318972 +ectopia|3319037 +ectopic|3319080 +ectopic gestation|3319122 +ectopic pregnancy|3319263 +ectopistes|3319404 +ectopistes migratorius|3319463 +ectoplasm|3319542 +ectoproct|3319588 +ectoprocta|3319620 +ectotherm|3319676 +ectothermic|3319756 +ectozoan|3319835 +ectozoon|3319923 +ectrodactyly|3319988 +ecuador|3320052 +ecuadoran|3320142 +ecuadoran monetary unit|3320197 +ecuadorian|3320268 +ecumenic|3320386 +ecumenical|3320462 +ecumenical movement|3320612 +ecumenicalism|3320732 +ecumenicism|3320825 +ecumenism|3320918 +eczema|3321011 +eczema herpeticum|3321102 +eczema hypertrophicum|3321136 +eczema marginatum|3321207 +eczema vaccinatum|3321282 +ed|3321357 +ed sullivan|3321464 +edacious|3321562 +edacity|3321646 +edam|3321799 +edaphosauridae|3321825 +edaphosaurus|3321901 +edd|3321949 +edda|3322016 +eddie rickenbacker|3322099 +eddington|3322199 +eddo|3322290 +eddy|3322330 +eddy merckx|3322499 +edecrin|3322574 +edelweiss|3322649 +edema|3322712 +edematous|3322773 +eden|3322812 +edental|3322921 +edentata|3322968 +edentate|3323023 +edentulate|3323131 +edentulous|3323178 +ederle|3323208 +edgar|3323280 +edgar albert guest|3323339 +edgar allen poe|3323415 +edgar douglas adrian|3323479 +edgar guest|3323563 +edgar lee masters|3323632 +edgar rice burroughs|3323690 +edgar wallace|3323765 +edgard lawrence doctorow|3323854 +edgard varese|3323951 +edge|3324004 +edge in|3324406 +edge tool|3324490 +edge up|3324537 +edged|3324621 +edgeless|3324689 +edger|3324712 +edgeways|3324769 +edgewise|3324810 +edginess|3324851 +edging|3324911 +edgy|3324934 +edibility|3325039 +edible|3325078 +edible asparagus|3325421 +edible banana|3325501 +edible bean|3325570 +edible cockle|3325603 +edible corn|3325647 +edible fat|3325697 +edible fruit|3325721 +edible mussel|3325798 +edible nut|3325858 +edible sea urchin|3325882 +edible seed|3325939 +edible snail|3325965 +edible-pod pea|3325257 +edible-podded pea|3325339 +edibleness|3326007 +edict|3326046 +edification|3326160 +edifice|3326210 +edified|3326259 +edify|3326288 +edifying|3326334 +edinburgh|3326374 +edirne|3326411 +edison|3326487 +edit|3326573 +edit out|3326734 +edited|3326781 +edith cavell|3326813 +edith giovanna gassion|3326881 +edith louisa cavell|3327003 +edith newbold jones wharton|3327078 +edith piaf|3327179 +edith wharton|3327289 +editing|3327376 +edition|3327445 +editor|3327562 +editor in chief|3327701 +editor program|3327763 +editorial|3327849 +editorial department|3327950 +editorialise|3328000 +editorialist|3328071 +editorialize|3328114 +editorially|3328185 +editorship|3328239 +edmond de goncourt|3328314 +edmond halley|3328422 +edmond hoyle|3328513 +edmond louis antoine huot de goncourt|3328568 +edmond malone|3328695 +edmond rostand|3328786 +edmonton|3328859 +edmontonia|3328905 +edmontosaurus|3328960 +edmund burke|3329026 +edmund cartwright|3329157 +edmund charles edouard genet|3329243 +edmund halley|3329351 +edmund hillary|3329442 +edmund husserl|3329565 +edmund i|3329624 +edmund ii|3329669 +edmund ironside|3329732 +edmund john millington synge|3329801 +edmund kean|3329934 +edmund malone|3330015 +edmund spenser|3330106 +edmund wilson|3330158 +edna ferber|3330218 +edna millay|3330272 +edna o'brien|3330346 +edna saint vincent millay|3330403 +edo|3330491 +edouard lemaitre|3330602 +edouard manet|3330689 +edouard vuillard|3330740 +edp|3330822 +edronax|3330896 +eds|3330967 +edsel bryant ford|3331120 +eduard buchner|3331184 +educate|3331239 +educated|3331425 +educatee|3331714 +education|3331755 +education department|3332046 +education secretary|3332152 +educational|3332298 +educational activity|3332370 +educational institution|3332449 +educational program|3332508 +educationalist|3332555 +educationist|3332627 +educative|3332699 +educator|3332742 +educe|3332803 +edulcorate|3332897 +edutainment|3332956 +edvard grieg|3333001 +edvard hagerup grieg|3333072 +edvard munch|3333151 +edward|3333200 +edward albee|3333315 +edward antony richard louis|3333400 +edward appleton|3333493 +edward benjamin britten|3333580 +edward bouverie pusey|3333731 +edward calvin kendall|3333849 +edward durell stone|3333936 +edward estlin cummings|3334010 +edward everett hale|3334103 +edward fitzgerald|3334171 +edward franklin albeen|3334255 +edward g. robinson|3334350 +edward george earle bulwer-lytton|3334476 +edward gibbon|3334607 +edward goldenberg robinson|3334677 +edward henry harriman|3334811 +edward i|3334915 +edward ii|3334980 +edward iii|3335047 +edward iv|3335116 +edward james hughes|3335183 +edward james muggeridge|3335255 +edward jean steichen|3335371 +edward jenner|3335452 +edward kendall|3335531 +edward kennedy ellington|3335611 +edward lawrie tatum|3335717 +edward lear|3335783 +edward lee thorndike|3335863 +edward macdowell|3335937 +edward morley|3335999 +edward osborne wilson|3336087 +edward pusey|3336195 +edward r. murrow|3336304 +edward roscoe murrow|3336396 +edward sapir|3336492 +edward teach|3336578 +edward teller|3336689 +edward thatch|3336751 +edward the confessor|3336863 +edward the elder|3337010 +edward the martyr|3337071 +edward v|3337206 +edward vernon rickenbacker|3337271 +edward vi|3337379 +edward vii|3337446 +edward viii|3337529 +edward vincent sullivan|3337616 +edward weston|3337726 +edward williams morley|3337791 +edward winslow|3337888 +edward wyllis scripps|3337952 +edward young|3338043 +edwardian|3338089 +edwards|3338185 +edwin|3338379 +edwin arlington robinson|3338418 +edwin dubois hayward|3338491 +edwin herbert land|3338579 +edwin hubble|3338684 +edwin powell hubble|3338761 +edwy|3338845 +ee|3338909 +eec|3339006 +eeg|3339224 +eel|3339299 +eelblenny|3339357 +eelgrass|3339388 +eelgrass family|3339604 +eellike|3339692 +eelpout|3339724 +eelworm|3339817 +eerie|3339867 +eerily|3339932 +eeriness|3339956 +eero saarinen|3340012 +eery|3340077 +eff|3340143 +efface|3340386 +effaceable|3340495 +effacement|3340535 +effect|3340624 +effected|3340976 +effecter|3341027 +effective|3341107 +effectively|3341413 +effectiveness|3341463 +effectivity|3341587 +effector|3341668 +effects|3341792 +effectual|3342206 +effectuality|3342433 +effectualness|3342514 +effectuate|3342595 +effectuation|3342655 +effeminacy|3342717 +effeminate|3342809 +effeminateness|3342923 +effeminize|3343015 +effendi|3343093 +efferent|3343115 +efferent neuron|3343222 +effervesce|3343307 +effervescence|3343358 +effervescent|3343469 +effervescing|3343667 +effete|3343739 +efficacious|3343774 +efficaciously|3343978 +efficaciousness|3344012 +efficacy|3344099 +efficiency|3344186 +efficiency apartment|3344232 +efficiency engineer|3344277 +efficiency expert|3344331 +efficient|3344385 +efficiently|3344611 +effigy|3344661 +effleurage|3344709 +effloresce|3344737 +efflorescence|3344863 +efflorescent|3345185 +effluence|3345231 +effluent|3345270 +effluvium|3345386 +efflux|3345424 +effort|3345463 +effortful|3345685 +effortfulness|3345973 +effortless|3346021 +effortlessness|3346108 +effrontery|3346157 +effulgence|3346240 +effulgent|3346317 +effuse|3346375 +effusion|3346459 +effusive|3346588 +effusiveness|3346682 +efrem zimbalist|3346736 +eft|3346805 +egadi islands|3346830 +egalitarian|3346926 +egalitarianism|3346997 +egbert|3347100 +egeria|3347141 +egeria densa|3347207 +egest|3347285 +egg|3347353 +egg cell|3347932 +egg cream|3347962 +egg cup|3347992 +egg en cocotte|3348115 +egg foo yong|3348166 +egg fu yung|3348216 +egg laying|3348266 +egg noodle|3348333 +egg on|3348360 +egg roll|3348388 +egg timer|3348423 +egg white|3348452 +egg yolk|3348508 +egg-and-anchor|3347550 +egg-and-dart|3347619 +egg-and-tongue|3347688 +egg-laying mammal|3347757 +egg-producing|3347807 +egg-shaped|3347851 +eggar|3348545 +eggbeater|3348595 +eggcup|3348696 +eggdrop soup|3348738 +egger|3348765 +eggfruit|3348815 +egghead|3348855 +eggnog|3348895 +eggplant|3348917 +eggplant bush|3349077 +eggs|3349188 +eggs benedict|3349387 +eggshake|3349429 +eggshell|3349474 +eggwhisk|3349530 +egis|3349571 +eglantine|3349667 +ego|3349741 +ego ideal|3349858 +ego trip|3349883 +egocentric|3349981 +egocentrism|3350077 +egoism|3350156 +egoist|3350235 +egoistic|3350340 +egoistical|3350452 +egomania|3350519 +egomaniac|3350561 +egotism|3350605 +egotist|3350712 +egotistic|3350784 +egotistical|3350926 +egotistically|3351066 +egotrip|3351098 +egregious|3351124 +egress|3351198 +egression|3351370 +egret|3351431 +egretta|3351452 +egretta albus|3351502 +egretta caerulea|3351578 +egretta garzetta|3351645 +egretta thula|3351707 +egtk|3351774 +egypt|3351895 +egyptian|3352027 +egyptian bean|3352212 +egyptian capital|3352322 +egyptian cat|3352430 +egyptian cobra|3352517 +egyptian corn|3352576 +egyptian cotton|3352672 +egyptian deity|3352733 +egyptian empire|3352800 +egyptian grass|3352854 +egyptian henbane|3352968 +egyptian islamic jihad|3353052 +egyptian lupine|3353226 +egyptian monetary unit|3353330 +egyptian onion|3353399 +egyptian paper reed|3353511 +egyptian paper rush|3353633 +egyptian pea|3353755 +egyptian pound|3353854 +egyptian vulture|3353922 +egyptian water lily|3354023 +egyptologist|3354127 +egyptology|3354189 +ehadhamen|3354243 +ehf|3354301 +ehrenberg|3354359 +ehrlich|3354445 +eichhornia|3354498 +eichhornia crassipes|3354576 +eichhornia spesiosa|3354730 +eichmann|3354883 +eicosapentaenoic acid|3354962 +eider|3355020 +eider duck|3355055 +eiderdown|3355090 +eidetic|3355171 +eidos|3355205 +eiffel|3355230 +eiffel tower|3355318 +eigen|3355359 +eight|3355402 +eight ball|3355651 +eight-membered|3355582 +eight-spot|3355626 +eighteen|3355681 +eighteenth|3355747 +eighteenth amendment|3355792 +eighter|3355853 +eighter from decatur|3355945 +eightfold|3356058 +eighth|3356094 +eighth cranial nerve|3356184 +eighth note|3356309 +eighties|3356360 +eightieth|3356530 +eightpence|3356574 +eightpenny|3356599 +eightpenny nail|3356625 +eightsome|3356655 +eightvo|3356735 +eighty|3356768 +eighty-eight|3356850 +eighty-fifth|3356893 +eighty-five|3356928 +eighty-four|3356967 +eighty-nine|3357007 +eighty-one|3357044 +eighty-seven|3357082 +eighty-six|3357124 +eighty-three|3357163 +eighty-two|3357205 +eijkman|3357244 +eileen farrell|3357323 +eimeria|3357378 +eimeriidae|3357415 +eindhoven|3357482 +einstein|3357540 +einstein's general theory of relativity|3357656 +einstein's special theory of relativity|3357901 +einstein's theory of relativity|3358146 +einsteinian|3358287 +einsteinium|3358329 +einthoven|3358395 +eira|3358454 +eira barbara|3358497 +eire|3358580 +eisegesis|3358657 +eisenhower|3358691 +eisenstaedt|3358912 +eisenstein|3358985 +eisteddfod|3359112 +eitchen midden|3359146 +ejaculate|3359264 +ejaculation|3359494 +ejaculator|3359587 +ejaculatory duct|3359674 +eject|3359735 +ejection|3359944 +ejection seat|3360076 +ejector|3360125 +ejector seat|3360237 +ekbom syndrome|3360286 +eke out|3360371 +ekg|3360527 +ekman|3360600 +el|3360654 +el aaium|3360889 +el alamein|3360921 +el beda|3361032 +el caudillo|3361106 +el cid|3361203 +el dorado|3361277 +el giza|3361427 +el greco|3361486 +el iskandriyah|3361555 +el libertador|3361639 +el misti|3361786 +el muerto|3361821 +el nino|3361864 +el nino southern oscillation|3362023 +el paso|3362098 +el qahira|3362152 +el salvador|3362253 +el salvadoran colon|3362368 +el salvadoran monetary unit|3362451 +el-aksur|3360827 +ela|3362530 +elaborate|3362653 +elaborated|3362938 +elaborately|3362985 +elaborateness|3363037 +elaboration|3363159 +elaeagnaceae|3363424 +elaeagnus|3363528 +elaeagnus augustifolia|3363604 +elaeagnus commutata|3363695 +elaeagnus latifolia|3363801 +elaeis|3363870 +elaeis guineensis|3363936 +elaeis oleifera|3364007 +elaeocarpaceae|3364075 +elaeocarpus|3364178 +elaeocarpus family|3364251 +elaeocarpus grandis|3364339 +elaeostearic acid|3364464 +elagatis|3364531 +elagatis bipinnulata|3364584 +elaidic acid|3364655 +elam|3364721 +elamite|3364820 +elamitic|3364929 +elan|3364995 +elan vital|3365148 +eland|3365206 +elanoides|3365230 +elanoides forficatus|3365286 +elanus|3365382 +elanus leucurus|3365429 +elaphe|3365493 +elaphe guttata|3365543 +elaphe obsoleta|3365617 +elaphure|3365732 +elaphurus|3365801 +elaphurus davidianus|3365859 +elapid|3365949 +elapid snake|3366001 +elapidae|3366053 +elapse|3366111 +elapsed|3366237 +elapsed time|3366301 +elasmobranch|3366357 +elasmobranchii|3366423 +elastance|3366519 +elastance unit|3366581 +elastase|3366630 +elastic|3366655 +elastic band|3367100 +elastic bandage|3367162 +elastic device|3367201 +elastic energy|3367232 +elastic modulus|3367303 +elastic potential energy|3367384 +elastic tissue|3367455 +elasticised|3367497 +elasticity|3367538 +elasticity of shear|3367581 +elasticized|3367626 +elastin|3367667 +elastomer|3367709 +elastoplast|3367743 +elastosis|3367809 +elate|3367872 +elated|3367958 +elater|3368174 +elaterid|3368222 +elaterid beetle|3368270 +elateridae|3368318 +elating|3368384 +elation|3368423 +elavil|3368519 +elbe|3368649 +elbe river|3368685 +elbow|3368727 +elbow bone|3368984 +elbow grease|3369018 +elbow joint|3369088 +elbow pad|3369195 +elbow room|3369233 +elbowing|3369288 +eld|3369322 +elder|3369401 +elder hand|3369534 +elder statesman|3369578 +elderberry|3369688 +elderberry bush|3369832 +elderly|3369874 +eldership|3369913 +eldest|3369987 +eldest hand|3370060 +eldorado|3370104 +eldritch|3370163 +eleanor gwyn|3370218 +eleanor gwynn|3370343 +eleanor gwynne|3370469 +eleanor of aquitaine|3370596 +eleanor roosevelt|3370653 +elecampane|3370766 +elect|3370807 +elected|3370955 +elected official|3371005 +election|3371052 +election commission|3371202 +election day|3371252 +election district|3371290 +election fraud|3371342 +electioneer|3371372 +electioneering|3371398 +elective|3371570 +elector|3371645 +electoral|3371698 +electoral college|3371769 +electoral system|3371801 +electorate|3371854 +electra|3371891 +electra complex|3371931 +electric|3371980 +electric arc|3372399 +electric automobile|3372482 +electric battery|3372570 +electric bell|3372622 +electric bill|3372650 +electric blanket|3372694 +electric burn|3372734 +electric car|3372762 +electric catfish|3372850 +electric cell|3372921 +electric chair|3372967 +electric charge|3373042 +electric circuit|3373096 +electric clock|3373167 +electric company|3373197 +electric cord|3373315 +electric current|3373353 +electric dipole|3373409 +electric dipole moment|3373458 +electric discharge|3373504 +electric doublet|3373587 +electric drill|3373636 +electric eel|3373672 +electric eye|3373734 +electric fan|3373859 +electric field|3373892 +electric fire|3373949 +electric frying pan|3374001 +electric furnace|3374056 +electric glow|3374090 +electric guitar|3374289 +electric hammer|3374321 +electric healing|3374366 +electric heater|3374429 +electric lamp|3374481 +electric light|3374509 +electric locomotive|3374611 +electric main|3374695 +electric meter|3374723 +electric mixer|3374765 +electric motor|3374795 +electric organ|3374825 +electric outlet|3374908 +electric pig|3375011 +electric potential|3375077 +electric power|3375181 +electric range|3375236 +electric ray|3375326 +electric razor|3375379 +electric receptacle|3375432 +electric refrigerator|3375535 +electric resistance|3375593 +electric sander|3375716 +electric shaver|3375780 +electric shock|3375833 +electric socket|3376036 +electric storm|3376068 +electric switch|3376142 +electric thermometer|3376211 +electric toothbrush|3376288 +electric typewriter|3376328 +electric-arc furnace|3372167 +electric-discharge lamp|3372231 +electric-light bulb|3372297 +electrical|3376368 +electrical cable|3376442 +electrical capacity|3376497 +electrical circuit|3376569 +electrical condenser|3376640 +electrical conduction|3376720 +electrical contact|3376775 +electrical converter|3376820 +electrical device|3376870 +electrical discharge|3376904 +electrical distributor|3376944 +electrical disturbance|3377018 +electrical elastance|3377072 +electrical energy|3377134 +electrical engineer|3377180 +electrical engineering|3377249 +electrical fuse|3377343 +electrical healing|3377391 +electrical line of force|3377454 +electrical outlet|3377513 +electrical phenomenon|3377616 +electrical plant|3377667 +electrical power|3377719 +electrical relay|3377774 +electrical resistance|3377824 +electrical shock|3377947 +electrical shunt|3378092 +electrical skin response|3378141 +electrical storm|3378305 +electrical switch|3378379 +electrical system|3378448 +electrical work|3378517 +electrician|3378554 +electricity|3378622 +electrification|3378707 +electrify|3378797 +electrifying|3378930 +electro-acoustic transducer|3378971 +electrocardiogram|3379019 +electrocardiograph|3379088 +electrocardiographic|3379147 +electrocardiography|3379195 +electrocautery|3379279 +electrochemical|3379317 +electrochemical series|3379368 +electrochemistry|3379455 +electroconvulsive therapy|3379508 +electrocute|3379611 +electrocution|3379653 +electrocutioner|3379774 +electrode|3379830 +electrodeposition|3379859 +electrodermal response|3379905 +electrodynamometer|3380069 +electroencephalogram|3380152 +electroencephalograph|3380223 +electroencephalographic|3380273 +electrograph|3380324 +electrologist|3380387 +electrolysis|3380461 +electrolyte|3380517 +electrolyte acid|3380547 +electrolyte balance|3380638 +electrolytic|3380675 +electrolytic capacitor|3380867 +electrolytic cell|3380988 +electrolytic condenser|3381034 +electromagnet|3381155 +electromagnetic|3381185 +electromagnetic delay line|3381254 +electromagnetic interaction|3381301 +electromagnetic intrusion|3381374 +electromagnetic radiation|3381431 +electromagnetic spectrum|3381522 +electromagnetic unit|3381565 +electromagnetic wave|3381624 +electromagnetics|3381715 +electromagnetism|3381802 +electromechanical|3381941 +electromechanical device|3381985 +electrometer|3382037 +electromotive drug administration|3382065 +electromotive force|3382165 +electromotive force series|3382228 +electromotive series|3382315 +electromotxsive|3382402 +electromyogram|3382464 +electromyograph|3382500 +electromyography|3382544 +electron|3382612 +electron accelerator|3382646 +electron beam|3382685 +electron gun|3382789 +electron lens|3382821 +electron microscope|3382870 +electron microscopic|3382910 +electron microscopy|3382950 +electron multiplier|3382990 +electron optics|3383106 +electron orbit|3383143 +electron paramagnetic resonance|3383194 +electron radiation|3383286 +electron shell|3383401 +electron spin resonance|3383440 +electron tube|3383532 +electron volt|3383646 +electronegative|3383704 +electronegativity|3383738 +electroneutral|3383797 +electronic|3383829 +electronic balance|3383905 +electronic bulletin board|3383941 +electronic communication|3384034 +electronic computer|3384081 +electronic converter|3384207 +electronic counter-countermeasures|3384257 +electronic countermeasures|3384328 +electronic data processing|3384390 +electronic database|3384460 +electronic deception|3384564 +electronic device|3384625 +electronic dictionary|3384659 +electronic equipment|3384739 +electronic fetal monitor|3384779 +electronic foetal monitor|3384876 +electronic image|3384973 +electronic imitative deception|3385030 +electronic information service|3385122 +electronic instrument|3385226 +electronic jamming|3385287 +electronic mail|3385358 +electronic manipulative deception|3385421 +electronic messaging|3385519 +electronic network|3385584 +electronic organ|3385627 +electronic reconnaissance|3385710 +electronic scanner|3385783 +electronic signal|3385828 +electronic simulative deception|3385877 +electronic stylus|3385971 +electronic surveillance|3386016 +electronic text|3386062 +electronic transistor|3386107 +electronic voltmeter|3386223 +electronic warfare|3386263 +electronic warfare-support measures|3386317 +electronics|3386388 +electronics company|3386453 +electronics industry|3386490 +electronics intelligence|3386529 +electrophoresis|3386597 +electrophoretic|3386710 +electrophoridae|3386794 +electrophorus|3386870 +electrophorus electric|3387033 +electroplate|3387118 +electroplater|3387171 +electropositive|3387201 +electroretinogram|3387235 +electroscope|3387285 +electroshock|3387362 +electroshock therapy|3387465 +electrosleep|3387568 +electrostatic|3387606 +electrostatic bond|3387647 +electrostatic charge|3387724 +electrostatic field|3387777 +electrostatic generator|3387821 +electrostatic machine|3387936 +electrostatic printer|3388051 +electrostatic unit|3388107 +electrostatics|3388160 +electrosurgery|3388228 +electrotherapist|3388325 +electrovalent bond|3388368 +electrum|3388445 +eleemosynary|3388475 +elegance|3388544 +elegant|3388570 +elegant brodiaea|3388892 +elegant cat's ears|3388944 +elegant habenaria|3389041 +elegiac|3389128 +elegiac stanza|3389177 +elegise|3389210 +elegist|3389265 +elegize|3389287 +elegy|3389342 +element|3389380 +element 104|3389671 +element 105|3389785 +element 106|3389888 +element 107|3389968 +element of a cone|3390049 +element of a cylinder|3390084 +elemental|3390123 +elementary|3390250 +elementary education|3390331 +elementary geometry|3390422 +elementary particle|3390498 +elementary school|3390576 +elements|3390653 +elemi|3391056 +eleocharis|3391091 +eleocharis acicularis|3391169 +eleocharis dulcis|3391293 +eleocharis palustris|3391387 +eleonora duse|3391469 +eleostearic acid|3391519 +eleotridae|3391586 +elephant|3391647 +elephant bird|3392109 +elephant ear|3392177 +elephant seal|3392234 +elephant tree|3392303 +elephant yam|3392359 +elephant's ear|3391855 +elephant's-foot|3391714 +elephant-tusk|3391958 +elephantiasis|3392473 +elephantiasis neuromatosa|3392508 +elephantiasis scroti|3392557 +elephantidae|3392612 +elephantine|3392681 +elephantopus|3392731 +elephas|3392805 +elephas maximus|3392857 +elettaria|3392923 +elettaria cardamomum|3392998 +eleusine|3393089 +eleusine coracana|3393161 +eleusine indica|3393278 +eleutherodactylus|3393370 +eleuthra bark|3393455 +elevate|3393514 +elevated|3393694 +elevated railroad|3393735 +elevated railway|3393858 +elevation|3393981 +elevator|3394332 +elevator boy|3394418 +elevator car|3394479 +elevator girl|3394517 +elevator man|3394558 +elevator operator|3394619 +elevator shaft|3394667 +eleven|3394697 +eleven-plus|3394787 +eleventh|3394836 +eleventh cranial nerve|3394879 +eleventh hour|3394977 +elf|3395041 +elf cup|3395166 +elfin|3395194 +elfish|3395308 +elflike|3395345 +elgar|3395374 +elgin marbles|3395446 +eli whitney|3395492 +elia|3395585 +elias canetti|3395643 +elias howe|3395702 +elicit|3395768 +elicitation|3395937 +elicited|3396015 +elide|3396048 +elie metchnikoff|3396112 +elie metchnikov|3396231 +elie wiesel|3396349 +eliel saarinen|3396444 +eliezer wiesel|3396511 +eligibility|3396609 +eligible|3396670 +elihu thomson|3396790 +elihu yale|3396855 +elijah|3396915 +elijah muhammad|3396946 +eliminate|3397009 +elimination|3397330 +elimination reaction|3397579 +elimination tournament|3397636 +eliminator|3397687 +elinor morton hoyt wylie|3397713 +elint|3397783 +elinvar|3397857 +eliomys|3397914 +eliot|3397966 +elisa|3398101 +elisabeth vigee-lebrun|3398172 +elisabethville|3398284 +elisha graves otis|3398363 +elision|3398459 +elite|3398530 +elite group|3398603 +elitism|3398654 +elitist|3398719 +elixir|3398745 +elixir of life|3398807 +elixophyllin|3398838 +elizabeth|3398931 +elizabeth barrett browning|3399036 +elizabeth cady stanton|3399113 +elizabeth cleghorn stevenson gaskell|3399242 +elizabeth cochrane seaman|3399365 +elizabeth gaskell|3399472 +elizabeth haldane|3399576 +elizabeth i|3399671 +elizabeth ii|3399731 +elizabeth merriwether gilmer|3399793 +elizabeth palmer peabody|3399890 +elizabeth peabody|3399994 +elizabeth river|3400091 +elizabeth sanderson haldane|3400138 +elizabeth seaman|3400243 +elizabeth seton|3400341 +elizabeth taylor|3400451 +elizabethan|3400509 +elizabethan age|3400650 +elizabethan sonnet|3400711 +elk|3400801 +elk nut|3401024 +elk-wood|3400857 +elkhorn fern|3401067 +elkhound|3401169 +elkwood|3401222 +ell|3401308 +ella fitzgerald|3401349 +ellas|3401437 +ellen price wood|3401525 +elli|3401603 +ellice islands|3401634 +ellington|3401692 +elliott's goldenrod|3401783 +ellipse|3401842 +ellipsis|3401884 +ellipsoid|3401929 +ellipsoid of revolution|3402035 +ellipsoidal|3402089 +elliptic|3402152 +elliptic geometry|3402330 +elliptic leaf|3402400 +elliptical|3402435 +ellipticity|3402573 +ellis island|3402627 +ellison|3402669 +ellul|3402742 +elm|3402790 +elm family|3402837 +elm tree|3402915 +elmer ambrose sperry|3402942 +elmer leopold rice|3403070 +elmer reizenstein|3403172 +elmer rice|3403273 +elmont|3403367 +elmore john leonard|3403395 +elmore leonard|3403495 +elmwood|3403590 +eln|3403616 +elocute|3403876 +elocution|3403908 +elocutionary|3403962 +elocutionist|3404044 +elodea|3404124 +elodea canadensis|3404209 +elodea densa|3404282 +elongate|3404360 +elongate leaf|3404451 +elongated|3404498 +elongation|3404573 +elope|3404667 +elopement|3404711 +elopidae|3404743 +elops|3404798 +elops saurus|3404842 +eloquence|3404922 +eloquent|3404972 +eloquently|3405051 +elsa schiaparelli|3405102 +elsass|3405213 +else|3405265 +elsholtzia|3405309 +elspar|3405351 +eluate|3405434 +elucidate|3405459 +elucidation|3405657 +elucidative|3405739 +elude|3405795 +eluding|3406055 +elul|3406093 +elusion|3406140 +elusive|3406178 +elusiveness|3406257 +elute|3406290 +elution|3406316 +elver|3406344 +elves|3406374 +elvis|3406536 +elvis aron presley|3406700 +elvis presley|3406779 +elvish|3406853 +elwyn brooks white|3406890 +ely culbertson|3406969 +elymus|3407031 +elymus arenarius|3407097 +elymus canadensis|3407202 +elymus caput-medusae|3407272 +elymus condensatus|3407346 +elymus hispidus|3407438 +elymus trachycaulos|3407548 +elysian|3407684 +elysian fields|3407821 +elysium|3407875 +elytron|3407968 +em|3408000 +emaciate|3408080 +emaciated|3408164 +emaciation|3408247 +email|3408315 +emanate|3408416 +emanation|3408493 +emancipate|3408624 +emancipated|3408704 +emancipation|3408768 +emancipationist|3408817 +emancipative|3408893 +emancipator|3408929 +emanuel svedberg|3408971 +emanuel swedenborg|3409099 +emarginate|3409229 +emarginate leaf|3409255 +emasculate|3409301 +emasculated|3409525 +emasculation|3409575 +embalm|3409702 +embalmer|3409753 +embalmment|3409828 +embank|3409861 +embankment|3409901 +embargo|3409932 +embark|3410055 +embark on|3410195 +embarkation|3410268 +embarkment|3410344 +embarrass|3410420 +embarrassed|3410585 +embarrassing|3410705 +embarrassment|3410797 +embassador|3410944 +embassy|3410996 +embattled|3411090 +embed|3411207 +embedded|3411279 +embellish|3411324 +embellished|3411659 +embellishment|3411768 +ember|3411909 +ember day|3411938 +emberiza|3411986 +emberiza aureola|3412039 +emberiza citrinella|3412114 +emberiza hortulana|3412199 +emberiza schoeniclus|3412278 +emberizidae|3412350 +embezzle|3412439 +embezzled|3412508 +embezzlement|3412564 +embezzler|3412682 +embiodea|3412736 +embioptera|3412819 +embiotocidae|3412904 +embitter|3412971 +embitterment|3413006 +emblazon|3413040 +emblem|3413183 +emblematic|3413296 +emblematical|3413395 +embodied|3413463 +embodiment|3413552 +embody|3413678 +embolden|3413815 +emboldened|3413866 +embolectomy|3413891 +embolic|3413954 +embolism|3413994 +embolus|3414066 +embonpoint|3414097 +emboss|3414190 +embossed|3414233 +embossment|3414285 +embothrium|3414388 +embothrium coccineum|3414467 +embouchure|3414566 +embower|3414606 +embowered|3414653 +embrace|3414681 +embracing|3414934 +embrangle|3415006 +embrasure|3415059 +embrocate|3415100 +embrocation|3415149 +embroider|3415198 +embroidered|3415419 +embroiderer|3415458 +embroideress|3415492 +embroidery|3415526 +embroidery frame|3415634 +embroidery hoop|3415708 +embroidery needle|3415782 +embroil|3415838 +embroiled|3415898 +embroilment|3415936 +embrown|3415977 +embryo|3416078 +embryologic|3416197 +embryology|3416247 +embryoma of the kidney|3416294 +embryonal|3416391 +embryonal carcinoma|3416505 +embryonal carcinosarcoma|3416544 +embryonal rhabdomyosarcoma|3416622 +embryonal rhabdosarcoma|3416713 +embryonic|3416804 +embryonic cell|3416941 +embryonic membrane|3416985 +embryonic stem-cell research|3417038 +embryonic tissue|3417095 +embryotic|3417135 +emcee|3417170 +emda|3417243 +emeer|3417348 +emend|3417392 +emendation|3417449 +emended|3417494 +emerald|3417526 +emerald creeper|3417629 +emerald isle|3417695 +emerald shiner|3417754 +emerge|3417807 +emergence|3417998 +emergency|3418150 +emergency alert system|3418268 +emergency brake|3418342 +emergency exit|3418408 +emergency landing|3418476 +emergency medicine|3418552 +emergency procedure|3418607 +emergency room|3418654 +emergent|3418695 +emergent evolution|3418739 +emerging|3418800 +emeritus|3418878 +emersion|3418908 +emerson|3418974 +emery|3419033 +emery cloth|3419056 +emery paper|3419113 +emery rock|3419180 +emery stone|3419223 +emery wheel|3419266 +emeside|3419308 +emesis|3419423 +emesis basin|3419628 +emetic|3419656 +emetrol|3419717 +emf|3419769 +emg|3419832 +emigrant|3419872 +emigrate|3419930 +emigration|3419969 +emigre|3420026 +emigree|3420084 +emil hermann fischer|3420142 +emil klaus julius fuchs|3420209 +emile|3420294 +emile durkheim|3420366 +emile gaboriau|3420426 +emile herzog|3420488 +emile zola|3420559 +emilia|3420604 +emilia coccinea|3420714 +emilia flammea|3420853 +emilia javanica|3420991 +emilia sagitta|3421130 +emilia-romagna|3420660 +emiliano zapata|3421205 +emilie charlotte le breton|3421302 +emily bronte|3421414 +emily dickinson|3421500 +emily jane bronte|3421556 +emily post|3421647 +emily price post|3421714 +eminence|3421787 +eminence grise|3421901 +eminent|3421971 +eminent domain|3422102 +emir|3422138 +emirate|3422182 +emissary|3422281 +emissary vein|3422320 +emission|3422388 +emission spectrum|3422590 +emit|3422626 +emitter|3422743 +emma goldman|3422770 +emma hart willard|3422844 +emmanthe|3422916 +emmanthe penduliflora|3422978 +emmenagogue|3423107 +emmental|3423134 +emmentaler|3423207 +emmenthal|3423282 +emmenthaler|3423356 +emmer|3423432 +emmet|3423505 +emmetropia|3423590 +emmetropic|3423654 +emmett kelly|3423685 +emmy|3423766 +emmy noether|3423821 +emollient|3423878 +emolument|3423987 +emote|3424019 +emoticon|3424053 +emotion|3424104 +emotional|3424129 +emotional arousal|3424584 +emotional disorder|3424619 +emotional disturbance|3424789 +emotional person|3424959 +emotional state|3425038 +emotionalism|3425078 +emotionality|3425119 +emotionally|3425160 +emotionless|3425196 +emotionlessness|3425234 +emotive|3425365 +empale|3425414 +empanel|3425466 +empathetic|3425545 +empathetically|3425586 +empathic|3425652 +empathise|3425693 +empathize|3425755 +empathy|3425817 +empedocles|3425858 +empennage|3425901 +emperor|3425949 +emperor butterfly|3426189 +emperor francis ii|3426299 +emperor moth|3426376 +emperor napoleon iii|3426448 +emperor of rome|3426553 +emperor penguin|3426616 +empetraceae|3426670 +empetrum|3426772 +emphasis|3426845 +emphasise|3426997 +emphasised|3427164 +emphasize|3427213 +emphasized|3427380 +emphasizing|3427429 +emphatic|3427480 +emphatically|3427583 +emphysema|3427662 +emphysematous|3427762 +emphysematous gangrene|3427845 +emphysematous phlegmon|3428032 +empire|3428219 +empire day|3428386 +empire state|3428472 +empire state of the south|3428549 +empiric|3428648 +empirical|3428862 +empirical formula|3429084 +empirical research|3429136 +empirically|3429189 +empiricism|3429258 +empiricist|3429427 +empiricist philosophy|3429459 +empirin|3429560 +emplace|3429670 +emplacement|3429758 +emplane|3429866 +employ|3429903 +employable|3429988 +employed|3430019 +employee|3430113 +employee ownership|3430358 +employee savings plan|3430396 +employee stock ownership plan|3430450 +employee turnover|3430514 +employee-owned business|3430138 +employee-owned enterprise|3430248 +employer|3430570 +employment|3430595 +employment agency|3430766 +employment agent|3430818 +employment agreement|3430850 +employment contract|3430909 +employment interview|3430968 +employment office|3431022 +emporium|3431074 +empower|3431167 +empowered|3431263 +empowerment|3431323 +empress|3431393 +emptied|3431426 +emptiness|3431449 +emptor|3431571 +empty|3431626 +empty nester|3432389 +empty of|3432418 +empty talk|3432495 +empty words|3432603 +empty-bellied|3432194 +empty-handed|3432230 +empty-headed|3432289 +emptying|3432711 +empurple|3432766 +empurpled|3432871 +empyema|3433026 +empyreal|3433064 +empyrean|3433131 +emu|3433278 +emu novaehollandiae|3433424 +emulate|3433537 +emulation|3433618 +emulator|3433697 +emulous|3433794 +emulsified|3433861 +emulsifier|3433889 +emulsify|3433962 +emulsion|3434025 +emydidae|3434093 +en|3434151 +en bloc|3434303 +en deshabille|3434339 +en famille|3434386 +en garde|3434416 +en masse|3434444 +en passant|3434480 +en route|3434510 +en-lil|3434179 +enable|3434538 +enabling|3434574 +enabling act|3434639 +enabling clause|3434701 +enabling legislation|3434763 +enact|3434817 +enactment|3434888 +enalapril|3435104 +enallage|3435185 +enamel|3435221 +enameled|3435394 +enamelware|3435430 +enamine|3435475 +enamor|3435510 +enamored|3435637 +enamoredness|3435725 +enamour|3435764 +enanthem|3435891 +enanthema|3435928 +enantiomer|3435965 +enantiomorph|3436025 +enantiomorphism|3436085 +enarthrodial joint|3436143 +enarthrosis|3436308 +enate|3436473 +enatic|3436587 +enation|3436626 +enbrel|3436734 +encainide|3436786 +encamp|3436873 +encampment|3436985 +encapsulate|3437209 +encapsulation|3437317 +encase|3437372 +encased|3437424 +encasement|3437464 +encaustic|3437537 +enceinte|3437562 +encelia|3437639 +encelia farinosa|3437698 +enceliopsis|3437798 +enceliopsis nudicaulis|3437869 +encephalartos|3437954 +encephalartos caffer|3437983 +encephalitis|3438053 +encephalitis lethargica|3438123 +encephalocele|3438269 +encephalogram|3438385 +encephalography|3438534 +encephalomeningitis|3438593 +encephalomyelitis|3438705 +encephalon|3438759 +encephalopathy|3438802 +enchain|3438915 +enchained|3438954 +enchant|3438997 +enchanted|3439250 +enchanter|3439437 +enchanter's nightshade|3439493 +enchanting|3439542 +enchantingly|3439631 +enchantment|3439693 +enchantress|3439871 +enchilada|3439971 +enchiridion|3439995 +enchondroma|3440090 +encipher|3440199 +encircle|3440280 +encircled|3440399 +encirclement|3440495 +encircling|3440549 +enclave|3440589 +enclose|3440655 +enclosed|3440877 +enclosed space|3441176 +enclosing|3441213 +enclosure|3441300 +enclothe|3441494 +encode|3441595 +encoding|3441676 +encolure|3441740 +encomiastic|3441763 +encomium|3441831 +encompass|3441906 +encompassing|3441958 +encompassment|3442109 +encopresis|3442142 +encore|3442238 +encounter|3442304 +encounter group|3442658 +encourage|3442703 +encouraged|3442860 +encouragement|3442898 +encouraging|3442995 +encrimson|3443237 +encroach|3443263 +encroach upon|3443401 +encroacher|3443509 +encroaching|3443568 +encroachment|3443620 +encrust|3443812 +encrustation|3443951 +encrusted|3444108 +encrypt|3444160 +encryption|3444241 +enculturation|3444305 +encumber|3444385 +encumbered|3444484 +encumbrance|3444581 +encyclia|3444818 +encyclia citrina|3444890 +encyclia tampensis|3444989 +encyclia venosa|3445099 +encyclical|3445219 +encyclical letter|3445291 +encyclopaedia|3445344 +encyclopaedic|3445457 +encyclopaedism|3445507 +encyclopaedist|3445610 +encyclopedia|3445671 +encyclopedic|3445784 +encyclopedism|3445834 +encyclopedist|3445937 +encysted|3445998 +end|3446025 +end game|3446921 +end man|3447085 +end matter|3447149 +end of the world|3447188 +end on|3447416 +end organ|3447447 +end point|3447472 +end product|3447648 +end run|3447695 +end up|3447756 +end user|3447823 +end-all|3446626 +end-plate|3446652 +end-rhymed|3446787 +end-stopped|3446829 +end-to-end|3446862 +endaemonism|3447846 +endameba|3447902 +endamoeba|3447933 +endamoeba histolytica|3447995 +endamoebidae|3448057 +endanger|3448119 +endangered|3448279 +endangered species|3448310 +endarterectomy|3448346 +endarteritis|3448412 +endear|3448461 +endearing|3448492 +endearingly|3448544 +endearment|3448573 +endeavor|3448612 +endeavour|3448780 +endecott|3448946 +ended|3449027 +endemic|3449095 +endemic disease|3449280 +endemic typhus|3449321 +endemical|3449403 +endemism|3449439 +enderby land|3449495 +endermatic|3449602 +endermic|3449662 +endgame|3449722 +endicott|3449806 +ending|3449887 +endive|3450117 +endless|3450239 +endlessly|3450404 +endlessness|3450536 +endmost|3450573 +endoblast|3450604 +endocarditis|3450672 +endocardium|3450703 +endocarp|3450747 +endocentric|3450796 +endocervicitis|3450829 +endocranium|3450880 +endocrinal|3450923 +endocrine|3450993 +endocrine gland|3451195 +endocrine system|3451285 +endocrinologist|3451318 +endocrinology|3451373 +endoderm|3451423 +endodontia|3451491 +endodontic|3451560 +endodontics|3451616 +endodontist|3451685 +endoergic|3451747 +endoergic reaction|3451832 +endogamic|3451877 +endogamous|3451925 +endogamy|3451994 +endogen|3452091 +endogenetic|3452167 +endogenic|3452210 +endogenous|3452271 +endogenous depression|3452335 +endogeny|3452417 +endolymph|3452457 +endometrial|3452535 +endometrial cancer|3452578 +endometrial carcinoma|3452638 +endometriosis|3452698 +endometritis|3452743 +endometrium|3452801 +endomorph|3452845 +endomorphic|3452917 +endomorphy|3452973 +endomycetales|3453026 +endoneurium|3453096 +endonuclease|3453135 +endoparasite|3453166 +endoparasitic|3453237 +endoplasm|3453268 +endoprocta|3453297 +endorphin|3453364 +endorse|3453405 +endorsed|3453594 +endorsement|3453622 +endorsement in blank|3453896 +endorser|3453968 +endoscope|3454102 +endoscopic|3454140 +endoscopy|3454180 +endoskeleton|3454220 +endosperm|3454291 +endospore|3454333 +endospore-forming bacteria|3454358 +endosteum|3454431 +endothelial|3454472 +endothelial myeloma|3454521 +endothelium|3454603 +endothermal|3454653 +endothermic|3454728 +endothermic reaction|3454815 +endotoxin|3454872 +endotracheal tube|3454897 +endovenous|3454933 +endow|3454977 +endowed|3455062 +endowment|3455151 +endowment fund|3455265 +endowment insurance|3455307 +endozoan|3455366 +endozoic|3455461 +endplate|3455497 +endpoint|3455551 +endue|3455604 +endued with|3455658 +endurable|3455708 +endurance|3455769 +endurance contest|3455845 +endurance riding|3455912 +endure|3455962 +enduring|3456337 +enduringness|3456424 +endways|3456500 +endwise|3456559 +ene|3456618 +enea silvio piccolomini|3456670 +enema|3456840 +enemy|3456874 +energetic|3457090 +energid|3457373 +energise|3457411 +energiser|3457519 +energising|3457619 +energize|3457755 +energizer|3457863 +energizing|3457963 +energy|3458137 +energy department|3458688 +energy level|3458786 +energy of activation|3458828 +energy secretary|3458883 +energy state|3459014 +energy unit|3459056 +energy-absorbing|3458436 +energy-releasing|3458511 +energy-storing|3458632 +enervate|3459122 +enervated|3459221 +enervating|3459275 +enervation|3459342 +enesco|3459425 +enets|3459504 +enfant terrible|3459589 +enfeeble|3459637 +enfeebled|3459679 +enfeeblement|3459733 +enfeebling|3459800 +enfeoff|3459867 +enfeoffment|3459889 +enfilade|3459940 +enfilade fire|3460000 +enflurane|3460048 +enfold|3460146 +enfolding|3460196 +enforce|3460242 +enforceable|3460335 +enforced|3460368 +enforcement|3460407 +enforcer|3460443 +enfranchise|3460505 +enfranchised|3460582 +enfranchisement|3460617 +engage|3460740 +engaged|3461050 +engagement|3461287 +engagement ring|3461601 +engaging|3461636 +engagingly|3461673 +engelbert humperdinck|3461702 +engelmann spruce|3461865 +engelmann's spruce|3461776 +engelmannia|3461952 +engels|3461996 +engender|3462046 +engild|3462159 +engine|3462236 +engine block|3462376 +engine cooling system|3462432 +engine driver|3462488 +engine failure|3462579 +engine room|3462631 +engineer|3462669 +engineer's chain|3462930 +engineering|3462962 +engineering school|3463220 +engineering science|3463304 +enginery|3463475 +england|3463503 +english|3463561 +english bean|3464300 +english breakfast tea|3464438 +english bulldog|3464525 +english cavalry saddle|3464586 +english channel|3464663 +english civil war|3464712 +english class|3464767 +english cocker spaniel|3464821 +english daisy|3464906 +english department|3464978 +english elm|3465067 +english foxhound|3465140 +english hawthorn|3465192 +english horn|3465359 +english iris|3465441 +english ivy|3465526 +english lady crab|3465592 +english language|3465666 +english lavender|3465754 +english muffin|3465851 +english oak|3465929 +english people|3466013 +english person|3466101 +english plantain|3466162 +english primrose|3466297 +english professor|3466374 +english revolution|3466454 +english runner bean|3466553 +english ryegrass|3466660 +english saddle|3466756 +english setter|3466825 +english sole|3466871 +english sonnet|3466991 +english sparrow|3467077 +english springer|3467171 +english springer spaniel|3467265 +english system|3467367 +english teacher|3467476 +english toy spaniel|3467554 +english violet|3467615 +english walnut|3467702 +english walnut tree|3467856 +english yew|3467986 +english-gothic|3463849 +english-gothic architecture|3463977 +english-speaking|3464118 +english-weed|3464189 +englishman|3468051 +englishwoman|3468097 +englut|3468147 +engorge|3468300 +engorged|3468453 +engorgement|3468486 +engraft|3468550 +engram|3468656 +engraulidae|3468692 +engraulis|3468756 +engraulis encrasicholus|3468812 +engrave|3468899 +engraved|3469013 +engraver|3469077 +engraving|3469158 +engross|3469223 +engrossed|3469363 +engrossing|3469446 +engrossment|3469518 +engulf|3469715 +engulfed|3469860 +enhance|3469988 +enhanced|3470104 +enhancement|3470132 +enhancer|3470176 +enhancive|3470209 +enhydra|3470312 +enhydra lutris|3470364 +enid|3470449 +enigma|3470473 +enigma canon|3470572 +enigmatic|3470647 +enigmatic canon|3470747 +enigmatical|3470822 +enigmatical canon|3470896 +enigmatically|3470971 +eniwetok|3471018 +enjambement|3471086 +enjambment|3471137 +enjoin|3471188 +enjoining|3471284 +enjoinment|3471377 +enjoy|3471470 +enjoyable|3471629 +enjoyableness|3471680 +enjoyably|3471726 +enjoyer|3471765 +enjoyment|3471835 +enkaid|3471924 +enkephalin|3472018 +enki|3472048 +enkidu|3472081 +enkindle|3472119 +enkindled|3472242 +enl|3472289 +enlace|3472349 +enlarge|3472425 +enlarged|3472599 +enlarged heart|3472725 +enlargement|3472794 +enlarger|3472960 +enlighten|3473001 +enlightened|3473238 +enlightening|3473458 +enlightenment|3473553 +enlil|3473688 +enlist|3473730 +enlisted|3473842 +enlisted man|3473876 +enlisted person|3473914 +enlisted woman|3473986 +enlistee|3474026 +enlisting|3474123 +enlistment|3474181 +enliven|3474288 +enlivened|3474465 +enlivener|3474542 +enlivening|3474589 +enmesh|3474632 +enmeshed|3474687 +enmity|3474725 +ennead|3474806 +ennervation|3474870 +ennoble|3474933 +ennoblement|3475052 +ennobling|3475107 +ennui|3475169 +enol|3475215 +enolic|3475246 +enologist|3475278 +enology|3475358 +enormity|3475405 +enormous|3475600 +enormously|3475635 +enormousness|3475687 +enosis|3475791 +enough|3475813 +enounce|3475906 +enovid|3475968 +enplane|3476104 +enquire|3476141 +enquirer|3476277 +enquiringly|3476374 +enquiry|3476406 +enrage|3476565 +enraged|3476587 +enragement|3476646 +enrapture|3476695 +enraptured|3476779 +enrich|3476861 +enrichment|3476930 +enrico caruso|3476974 +enrico fermi|3477024 +enrobe|3477083 +enrol|3477250 +enroll|3477304 +enrolled|3477358 +enrollee|3477394 +enrollment|3477465 +enrolment|3477574 +ensconce|3477658 +ensemble|3477715 +ensete|3477999 +ensete ventricosum|3478065 +enshrine|3478181 +enshroud|3478274 +ensiform|3478345 +ensiform leaf|3478425 +ensign|3478460 +ensilage|3478567 +ensile|3478607 +ensis|3478629 +ensky|3478676 +enslave|3478725 +enslaved|3478760 +enslavement|3478811 +ensnare|3478904 +ensnarl|3479017 +ensorcelled|3479072 +ensuant|3479113 +ensue|3479180 +ensuing|3479225 +ensure|3479253 +ent man|3479366 +entablature|3479506 +entail|3479550 +entailment|3479715 +entandrophragma|3479776 +entandrophragma cylindricum|3479857 +entangle|3480001 +entangled|3480076 +entanglement|3480143 +entasis|3480174 +entebbe|3480214 +entelea|3480244 +entellus|3480305 +entente|3480380 +entente cordiale|3480501 +enter|3480613 +enter upon|3480971 +enteral|3481023 +enteric|3481191 +enteric bacteria|3481434 +enteric fever|3481521 +enteric-coated aspirin|3481359 +enterics|3481585 +entering|3481672 +enteritis|3481796 +enterobacteria|3481842 +enterobacteriaceae|3481929 +enterobiasis|3482018 +enterobius|3482062 +enterobius vermicularis|3482121 +enteroceptor|3482230 +enterokinase|3482303 +enterolith|3482332 +enterolithiasis|3482372 +enterolobium|3482407 +enterolobium cyclocarpa|3482479 +enteron|3482566 +enteropathy|3482680 +enteroptosis|3482709 +enterostenosis|3482760 +enterostomy|3482803 +enterotomy|3482908 +enterotoxemia|3483013 +enterotoxin|3483051 +enterovirus|3483082 +enterprise|3483116 +enterprise zone|3483269 +enterpriser|3483308 +enterprising|3483367 +enterprisingness|3483560 +entertain|3483623 +entertained|3483771 +entertainer|3483816 +entertaining|3483890 +entertainment|3483955 +entertainment center|3484009 +entertainment deduction|3484049 +entertainment industry|3484101 +enthalpy|3484165 +enthral|3484227 +enthrall|3484311 +enthralled|3484395 +enthralling|3484511 +enthrallingly|3484600 +enthrallment|3484662 +enthrone|3484727 +enthronement|3484791 +enthronisation|3484900 +enthronization|3485009 +enthuse|3485118 +enthusiasm|3485192 +enthusiast|3485314 +enthusiastic|3485436 +enthusiastically|3485592 +entice|3485626 +enticement|3485671 +enticing|3485786 +entire|3485842 +entire leaf|3485971 +entirely|3486013 +entireness|3486113 +entirety|3486164 +entitle|3486215 +entitled|3486357 +entitlement|3486398 +entoblast|3486431 +entoderm|3486499 +entoloma|3486567 +entoloma aprile|3486622 +entoloma lividum|3486670 +entoloma sinuatum|3486738 +entolomataceae|3486807 +entomb|3486882 +entombment|3486948 +entomion|3487014 +entomologic|3487051 +entomological|3487112 +entomologist|3487173 +entomology|3487244 +entomophilous|3487300 +entomophobia|3487337 +entomophthora|3487369 +entomophthoraceae|3487439 +entomophthorales|3487523 +entomostraca|3487602 +entoparasite|3487665 +entopic pregnancy|3487736 +entoproct|3487793 +entoprocta|3487825 +entourage|3487892 +entozoan|3487954 +entozoic|3488074 +entozoon|3488119 +entr'acte|3488190 +entrails|3488252 +entrain|3488308 +entrance|3488338 +entrance exam|3488668 +entrance examination|3488734 +entrance fee|3488800 +entrance hall|3488917 +entrance money|3488993 +entranced|3489110 +entrancement|3489188 +entranceway|3489241 +entrancing|3489309 +entrant|3489398 +entrap|3489592 +entrapment|3489706 +entreat|3489758 +entreatingly|3489814 +entreaty|3489885 +entree|3489932 +entremots|3490115 +entrench|3490149 +entrenched|3490263 +entrenching tool|3490327 +entrenchment|3490381 +entrepot|3490439 +entrepreneur|3490551 +entrepreneurial|3490610 +entropy|3490679 +entrust|3490788 +entry|3490925 +entry word|3491319 +entryway|3491405 +entsi|3491473 +entsy|3491558 +entwine|3491643 +enucleate|3491744 +enucleation|3491832 +enuki|3491926 +enumerable|3491970 +enumerate|3492033 +enumeration|3492152 +enumerator|3492273 +enunciate|3492327 +enunciation|3492440 +enured|3492482 +enuresis|3492530 +envelop|3492595 +envelope|3492645 +enveloped|3492836 +enveloping|3492883 +envelopment|3492909 +envenom|3492996 +enviable|3493065 +envious|3493093 +enviously|3493136 +enviousness|3493175 +environ|3493266 +environment|3493343 +environmental|3493501 +environmental condition|3493583 +environmental protection agency|3493633 +environmental science|3493729 +environmentalism|3493805 +environmentalist|3493902 +environs|3493982 +envisage|3494106 +envision|3494188 +envisioned|3494352 +envisioning|3494410 +envoi|3494484 +envoy|3494512 +envoy extraordinary|3494644 +envy|3494725 +enwrap|3494906 +enwrapped|3494956 +enzootic|3495055 +enzymatic|3495091 +enzyme|3495138 +enzyme-linked-immunosorbent serologic assay|3495183 +enzymologist|3495248 +enzymology|3495281 +eocene|3495314 +eocene epoch|3495356 +eohippus|3495404 +eolian|3495454 +eolic|3495499 +eolith|3495541 +eolithic|3495562 +eolithic age|3495676 +eolotropic|3495754 +eon|3495798 +eonian|3495925 +eoraptor|3496030 +eos|3496096 +eosin|3496125 +eosinopenia|3496211 +eosinophil|3496240 +eosinophile|3496362 +eosinophilia|3496484 +eosinophilic|3496514 +epa|3496625 +epacridaceae|3496693 +epacris|3496786 +epacris family|3496820 +epacris impressa|3496900 +epacris obtusifolia|3496964 +epacris purpurascens|3497051 +epanalepsis|3497129 +epanaphora|3497161 +epanodos|3497201 +epanorthosis|3497258 +eparch|3497298 +eparchial|3497337 +eparchy|3497373 +epaulet|3497440 +epaulette|3497477 +epauliere|3497514 +epee|3497597 +ependyma|3497625 +epenthesis|3497665 +epenthetic|3497698 +epergne|3497740 +epha|3497781 +ephah|3497822 +ephedra|3497863 +ephedra sinica|3497901 +ephedraceae|3497966 +ephedrine|3498036 +ephemera|3498079 +ephemeral|3498150 +ephemerality|3498242 +ephemeralness|3498328 +ephemerid|3498414 +ephemerida|3498455 +ephemeridae|3498550 +ephemeris|3498619 +ephemeris time|3498654 +ephemeron|3498752 +ephemeroptera|3498787 +ephemeropteran|3498885 +ephesan|3498926 +ephesian|3498979 +ephesians|3499020 +ephestia|3499154 +ephestia elutella|3499212 +ephesus|3499302 +ephippidae|3499356 +ephippiorhynchus|3499417 +ephippiorhynchus senegalensis|3499494 +epi|3499587 +epic|3499690 +epic poem|3499813 +epic poetry|3499870 +epical|3499924 +epicalyx|3499960 +epicanthic fold|3500014 +epicanthus|3500061 +epicardia|3500108 +epicardium|3500208 +epicarp|3500272 +epicarpal|3500318 +epicene|3500357 +epicenter|3500482 +epicentre|3500547 +epicine|3500612 +epicine person|3500716 +epicondyle|3500820 +epicondylitis|3500868 +epicranium|3500918 +epictetus|3500952 +epicure|3500993 +epicurean|3501068 +epicureanism|3501329 +epicurism|3501414 +epicurus|3501457 +epicycle|3501496 +epicyclic|3501521 +epicyclic gear|3501558 +epicyclic gear train|3501647 +epicyclic train|3501735 +epicyclical|3501823 +epicycloid|3501860 +epidemic|3501903 +epidemic cholera|3502039 +epidemic disease|3502123 +epidemic encephalitis|3502168 +epidemic hysertia|3502314 +epidemic meningitis|3502391 +epidemic myalgia|3502488 +epidemic parotitis|3502599 +epidemic pleurodynia|3502652 +epidemic roseola|3502763 +epidemiologic|3502855 +epidemiological|3502920 +epidemiologist|3502985 +epidemiology|3503027 +epidendron|3503076 +epidendrum|3503122 +epidendrum tampense|3503200 +epidendrum venosum|3503311 +epidermal|3503434 +epidermal cell|3503487 +epidermic|3503521 +epidermis|3503574 +epidiascope|3503609 +epididymis|3503640 +epididymitis|3503695 +epidural|3503744 +epidural anaesthesia|3503877 +epidural anesthesia|3503977 +epidural injection|3504077 +epigaea|3504115 +epigaea repens|3504176 +epigastric|3504253 +epigastric artery|3504302 +epigastric fossa|3504386 +epigastric vein|3504441 +epigastrium|3504496 +epigenesis|3504529 +epiglottis|3504562 +epiglottitis|3504606 +epigon|3504655 +epigone|3504714 +epigram|3504773 +epigrammatic|3504822 +epigraph|3504876 +epigraphy|3504948 +epikeratophakia|3504979 +epilachna|3505050 +epilachna varivestis|3505111 +epilate|3505250 +epilating wax|3505307 +epilation|3505360 +epilator|3505429 +epilepsia major|3505487 +epilepsia minor|3505560 +epilepsy|3505613 +epileptic|3505675 +epileptic seizure|3505781 +epilithic|3505819 +epilobium|3505852 +epilobium angustifolium|3505915 +epilobium canum canum|3506035 +epilobium hirsutum|3506163 +epilog|3506256 +epilogue|3506384 +epimedium|3506510 +epimedium grandiflorum|3506577 +epimetheus|3506678 +epimorphic|3506715 +epinephelus|3506747 +epinephelus adscensionis|3506809 +epinephelus fulvus|3506883 +epinephrin|3506944 +epinephrine|3507098 +epipactis|3507252 +epipactis gigantea|3507327 +epipactis helleborine|3507429 +epipaleolithic|3507494 +epiphany|3507593 +epiphany of our lord|3507720 +epiphenomenon|3507838 +epiphora|3507882 +epiphyllum|3507922 +epiphyseal|3507963 +epiphysial|3508013 +epiphysis|3508063 +epiphysis cerebri|3508193 +epiphyte|3508296 +epiphytic|3508373 +epiphytic plant|3508414 +epiphytotic|3508491 +epiplexis|3508521 +epipremnum|3508558 +epipremnum aureum|3508636 +epirus|3508735 +episcia|3508830 +episcia dianthiflora|3508858 +episcleral veins|3508954 +episcleritis|3509028 +episcopal|3509077 +episcopal church|3509195 +episcopal church of scotland|3509425 +episcopalian|3509562 +episcopalianism|3509690 +episiotomy|3509771 +episode|3509803 +episodic|3509979 +episodic memory|3510066 +epispadias|3510128 +episperm|3510241 +epistasis|3510298 +epistaxis|3510363 +episteme|3510424 +epistemic|3510469 +epistemic logic|3510514 +epistemological|3510551 +epistemologist|3510596 +epistemology|3510632 +epistle|3510665 +epistle of james|3510697 +epistle of jeremiah|3510751 +epistle of jude|3510824 +epistle of paul the apostle to philemon|3510875 +epistle of paul the apostle to the colossians|3511012 +epistle of paul the apostle to the ephesians|3511155 +epistle of paul the apostle to the galatians|3511294 +epistle of paul the apostle to the philippians|3511433 +epistle of paul the apostle to the romans|3511580 +epistle of paul the apostle to titus|3511707 +epistle to philemon|3511818 +epistle to the colossians|3511935 +epistle to the ephesians|3512058 +epistle to the galatians|3512177 +epistle to the hebrews|3512296 +epistle to the philippians|3512364 +epistle to the romans|3512491 +epistle to titus|3512598 +epistolary|3512689 +epistolatory|3512731 +epistrophe|3512773 +epitaph|3512813 +epitaxy|3512894 +epithelial|3512919 +epithelial cell|3512952 +epithelial duct|3513006 +epithelial tissue|3513069 +epitheliod|3513121 +epithelioma|3513154 +epithelium|3513187 +epithet|3513239 +epitome|3513410 +epitomise|3513506 +epitomize|3513589 +epitrochoidal engine|3513672 +epizoan|3513751 +epizoic|3513840 +epizoon|3513865 +epizootic|3513930 +epkwele|3513958 +epoch|3514007 +epoch-making|3514127 +epochal|3514179 +epona|3514231 +eponym|3514265 +eponymic|3514298 +eponymous|3514330 +epos|3514362 +epoxy|3514445 +epoxy glue|3514517 +epoxy resin|3514571 +eprom|3514625 +epsilon|3514738 +epsilon aurigae|3514806 +epsilon toxin|3514878 +epsom salts|3514955 +epstein|3515074 +epstein-barr virus|3515171 +eptatretus|3515242 +eptesicus|3515285 +eptesicus fuscus|3515343 +eptesicus serotinus|3515432 +eq|3515541 +equable|3515634 +equador laurel|3515716 +equal|3515844 +equal opportunity|3516473 +equal protection of the laws|3516525 +equal temperament|3516588 +equal to|3516627 +equal-area map projection|3516329 +equal-area projection|3516401 +equalisation|3516680 +equalise|3516749 +equalised|3516864 +equaliser|3516899 +equalitarian|3517023 +equalitarianism|3517066 +equality|3517169 +equality before the law|3517244 +equality state|3517289 +equalization|3517354 +equalize|3517423 +equalized|3517538 +equalizer|3517573 +equalizing dividend|3517710 +equally|3517748 +equals sign|3517790 +equanil|3517816 +equanimity|3517971 +equanimous|3518039 +equatability|3518130 +equate|3518161 +equating|3518290 +equation|3518352 +equator|3518492 +equatorial|3518536 +equatorial current|3518637 +equatorial guinea|3518679 +equatorial guinea monetary unit|3518800 +equerry|3518887 +equestrian|3518958 +equestrian sport|3519065 +equetus|3519126 +equetus lanceolatus|3519176 +equetus pulcher|3519254 +equiangular|3519322 +equiangular triangle|3519360 +equid|3519454 +equidae|3519529 +equidistant|3519583 +equidsitribution|3519610 +equilateral|3519674 +equilateral triangle|3519701 +equilibrate|3519795 +equilibration|3519883 +equilibrise|3519934 +equilibrium|3519997 +equilibrium constant|3520163 +equilibrium law|3520202 +equilibrize|3520273 +equine|3520336 +equine distemper|3520443 +equine encephalitis|3520489 +equine encephalomyelitis|3520577 +equinoctial|3520665 +equinoctial circle|3520790 +equinoctial line|3520878 +equinoctial point|3520966 +equinoctial storm|3521017 +equinoctial year|3521065 +equinox|3521139 +equip|3521209 +equipage|3521287 +equipment|3521364 +equipment casualty|3521415 +equipment failure|3521459 +equipoise|3521504 +equipoised|3521581 +equipotent|3521625 +equipped|3521659 +equipping|3522021 +equiprobable|3522112 +equipt|3522160 +equisetaceae|3522290 +equisetales|3522374 +equisetatae|3522437 +equisetum|3522524 +equisetum arvense|3522580 +equisetum fluviatile|3522668 +equisetum hyemale|3522761 +equisetum hyemale robustum|3522892 +equisetum palustre|3523032 +equisetum robustum|3523105 +equisetum sylvaticum|3523237 +equisetum variegatum|3523313 +equitable|3523420 +equitation|3523465 +equity|3523525 +equity credit line|3523603 +equivalence|3523698 +equivalent|3523843 +equivalent weight|3524072 +equivalent word|3524165 +equivalent-binary-digit factor|3524017 +equivocal|3524203 +equivocally|3524339 +equivocalness|3524371 +equivocate|3524416 +equivocation|3524507 +equivocator|3524699 +equus|3524757 +equus asinus|3524803 +equus burchelli|3524908 +equus caballus|3524985 +equus caballus gomelini|3525043 +equus caballus przevalskii|3525118 +equus caballus przewalskii|3525257 +equus grevyi|3525396 +equus hemionus|3525451 +equus hemionus hemionus|3525506 +equus kiang|3525604 +equus quagga|3525652 +equus zebra zebra|3525707 +er|3525773 +era|3525874 +eradicable|3525979 +eradicate|3526084 +eradication|3526221 +eradicator|3526286 +eragrostic abyssinica|3526344 +eragrostis|3526449 +eragrostis curvula|3526527 +eragrostis tef|3526633 +eranthis|3526731 +eranthis hyemalis|3526795 +erasable|3526877 +erasable programmable read-only memory|3526917 +erase|3527024 +eraser|3527141 +erasmian|3527167 +erasmus|3527248 +erastianism|3527377 +erasure|3527476 +erato|3527574 +eratosthenes|3527600 +erb's palsy|3527682 +erb-duchenne paralysis|3527754 +erbium|3527837 +ercilla|3527896 +erebus|3527961 +erechtites hieracifolia|3527996 +erect|3528067 +erect bugle|3528353 +erectile|3528418 +erectile dysfunction|3528486 +erectile organ|3528590 +erectile tissue|3528620 +erecting|3528659 +erecting prism|3528708 +erection|3528752 +erectly|3528861 +erectness|3528893 +eremite|3529001 +eremitic|3529028 +eremitical|3529176 +eremitism|3529311 +eresh-kigal|3529342 +ereshkigal|3529492 +ereshkigel|3529560 +erethism|3529628 +erethizon|3529688 +erethizon dorsatum|3529746 +erethizontidae|3529830 +eretmochelys|3529905 +eretmochelys imbricata|3529973 +erewhon|3530110 +erg|3530152 +ergocalciferol|3530197 +ergodic|3530290 +ergodicity|3530314 +ergometer|3530379 +ergonomic|3530465 +ergonomics|3530542 +ergonovine|3530650 +ergosterol|3530697 +ergot|3530740 +ergotamine|3530802 +ergotic|3530831 +ergotism|3530854 +ergotrate maleate|3530911 +ergotropic|3530976 +ergotropism|3531003 +erianthus|3531032 +erianthus ravennae|3531107 +eric arthur blair|3531191 +eric blair|3531282 +erica|3531366 +erica arborea|3531398 +erica carnea|3531475 +erica cinerea|3531553 +erica jong|3531651 +erica lusitanica|3531701 +erica perspicua|3531792 +erica tetralix|3531895 +erica vagans|3531983 +ericaceae|3532049 +ericales|3532155 +erich mendelsohn|3532209 +erich von stroheim|3532282 +eridanus|3532381 +erie|3532422 +erie canal|3532547 +erigeron|3532584 +erigeron acer|3532646 +erigeron annuus|3532706 +erigeron aurantiacus|3532771 +erigeron canadensis|3532860 +erigeron divergens|3532969 +erigeron glaucous|3533044 +erigeron philadelphicus|3533124 +erigeron pulchellus|3533212 +erigeron speciosus|3533287 +erignathus|3533355 +erignathus barbatus|3533416 +erigonum fasciculatum|3533540 +erik adolf von willebrand|3533639 +erik alfred leslie satie|3533802 +erik axel karlfeldt|3533887 +erik satie|3533951 +erik von willebrand|3534022 +erik weisz|3534179 +erinaceidae|3534269 +erinaceus|3534335 +erinaceus europaeus|3534393 +erinaceus europeaeus|3534484 +eringo|3534576 +erinyes|3534618 +eriobotrya|3534693 +eriobotrya japonica|3534759 +eriocaulaceae|3534868 +eriocaulon|3534974 +eriocaulon aquaticum|3535052 +eriodictyon|3535167 +eriodictyon californicum|3535238 +eriogonum|3535320 +eriogonum allenii|3535358 +eriophorum|3535428 +eriophorum angustifolium|3535506 +eriophyllum|3535610 +eriophyllum lanatum|3535681 +eriophyllum wallacei|3535761 +eriosoma|3535881 +eriosoma lanigerum|3535939 +eris|3536053 +eristic|3536084 +eristical|3536240 +erithacus|3536281 +erithacus rubecola|3536337 +erithacus svecicus|3536439 +eritrea|3536504 +eritrean|3536577 +erivan|3536660 +erlang|3536726 +erle stanley gardner|3536764 +erlenmeyer|3536837 +erlenmeyer flask|3536912 +ermine|3536961 +ern|3537033 +erne|3537137 +ernest bevin|3537241 +ernest bloch|3537314 +ernest hemingway|3537364 +ernest orlando lawrence|3537431 +ernest rutherford|3537530 +ernest solvay|3537652 +ernest thomas sinton walton|3537718 +ernest walton|3537838 +ernestine schumann-heink|3537944 +ernesto guevara|3538028 +ernst|3538138 +ernst boris chain|3538177 +ernst cassirer|3538261 +ernst heinrich haeckel|3538321 +ernst heinrich weber|3538421 +ernst lubitsch|3538503 +ernst ludwig kirchner|3538598 +ernst mach|3538668 +ernst theodor amadeus hoffmann|3538726 +ernst theodor wilhelm hoffmann|3538869 +ernst werner von siemens|3539012 +erode|3539099 +eroded|3539197 +eroding|3539226 +erodium|3539320 +erodium cicutarium|3539377 +erodium moschatum|3539531 +erodium texanum|3539647 +erogenous|3539729 +erogenous zone|3539758 +erolia|3539794 +erolia alpina|3539841 +erolia minutilla|3539916 +eros|3539991 +erose|3540022 +erose leaf|3540072 +erosion|3540113 +erosive|3540340 +erotic|3540416 +erotica|3540449 +eroticism|3540521 +erotism|3540659 +err|3540799 +errancy|3540868 +errand|3540937 +errand boy|3540958 +errant|3541010 +erratic|3541055 +erratically|3541191 +erratum|3541225 +erreminise|3541312 +errhine|3541390 +erring|3541417 +erroneous|3541454 +erroneous belief|3541494 +erroneously|3541540 +erroneousness|3541571 +error|3541624 +error correction code|3541946 +error-prone|3541909 +errorless|3542000 +ersatz|3542027 +erse|3542102 +erskine caldwell|3542160 +erskine preston caldwell|3542251 +erst|3542350 +erstwhile|3542399 +ert|3542497 +eruca|3542565 +eruca sativa|3542620 +eruca vesicaria sativa|3542751 +eruct|3542892 +eructation|3542998 +erudite|3543243 +eruditely|3543278 +eruditeness|3543306 +erudition|3543409 +erupt|3543512 +eruption|3543897 +eruptive|3544148 +erving|3544235 +erwin panofsky|3544309 +erwin rommel|3544371 +erwin schrodinger|3544438 +erwinia|3544513 +eryngium|3544571 +eryngium aquaticum|3544631 +eryngium maritimum|3544717 +eryngium yuccifolium|3544807 +eryngo|3544925 +erysimum|3544967 +erysimum allionii|3545031 +erysimum arkansanum|3545129 +erysimum asperum|3545242 +erysimum cheiranthoides|3545352 +erysimum cheiri|3545431 +erysipelas|3545509 +erysiphaceae|3545550 +erysiphales|3545619 +erysiphe|3545683 +erythema|3545738 +erythema multiforme|3545769 +erythema nodosum|3545807 +erythema nodosum leprosum|3545842 +erythema solare|3545898 +erythematous|3545958 +erythrina|3545992 +erythrina caffra|3546027 +erythrina corallodendrum|3546119 +erythrina crista-galli|3546215 +erythrina indica|3546342 +erythrina lysistemon|3546444 +erythrina variegata|3546549 +erythrina vespertilio|3546654 +erythrite|3546738 +erythroblast|3546778 +erythroblastosis|3546830 +erythroblastosis fetalis|3546885 +erythrocebus|3546934 +erythrocebus patas|3547001 +erythrocin|3547096 +erythrocyte|3547201 +erythrocyte sedimentation rate|3547278 +erythrocytolysin|3547355 +erythroderma|3547432 +erythroid|3547529 +erythrolysin|3547584 +erythromycin|3547661 +erythronium|3547755 +erythronium albidum|3547827 +erythronium americanum|3547981 +erythronium californicum|3548123 +erythronium dens-canis|3548236 +erythronium grandiflorum|3548353 +erythronium montanum|3548479 +erythropoiesis|3548562 +erythropoietic|3548621 +erythropoietin|3548679 +erythroxylaceae|3548716 +erythroxylon|3548793 +erythroxylon coca|3548891 +erythroxylon truxiuense|3548952 +erythroxylum|3549020 +es|3549118 +esaki|3549187 +esau|3549228 +escadrille|3549255 +escalade|3549300 +escalader|3549360 +escalate|3549387 +escalation|3549432 +escalator|3549469 +escalator clause|3549592 +escallop|3549643 +escalope de veau orloff|3549784 +escapade|3549846 +escape|3549974 +escape cock|3550817 +escape expert|3550900 +escape from|3550991 +escape hatch|3551066 +escape mechanism|3551113 +escape valve|3551162 +escape velocity|3551245 +escape wheel|3551285 +escaped|3551332 +escapee|3551393 +escapement|3551441 +escapism|3551479 +escapist|3551525 +escapologist|3551591 +escargot|3551682 +escarole|3551711 +escarp|3551778 +escarpment|3551856 +eschalot|3551966 +eschar|3552081 +eschatological|3552102 +eschatologist|3552143 +eschatology|3552212 +escheat|3552251 +escherichia|3552329 +escherichia coli|3552391 +eschew|3552454 +eschrichtiidae|3552481 +eschrichtius|3552556 +eschrichtius gibbosus|3552623 +eschrichtius robustus|3552748 +eschscholtzia|3552873 +eschscholtzia californica|3552952 +escolar|3553036 +escort|3553089 +escritoire|3553311 +escrow|3553371 +escrow funds|3553405 +escudo|3553492 +escutcheon|3553601 +ese|3553737 +esfahan|3553789 +esidrix|3553860 +eskalith|3553926 +esker|3554158 +eskimo|3554179 +eskimo curlew|3554502 +eskimo dog|3554564 +eskimo-aleut|3554331 +eskimo-aleut language|3554412 +esm|3554613 +esme stuart lennox robinson|3554688 +esmolol|3554799 +esocidae|3554894 +esop|3554949 +esophageal|3555018 +esophageal reflux|3555101 +esophageal smear|3555178 +esophageal veins|3555227 +esophagitis|3555318 +esophagogastric junction|3555379 +esophagoscope|3555481 +esophagus|3555538 +esoteric|3555645 +esoterica|3555821 +esotropia|3555855 +esox|3555936 +esox americanus|3555977 +esox lucius|3556059 +esox masquinongy|3556111 +esox niger|3556171 +esp|3556237 +espadrille|3556363 +espalier|3556390 +espana|3556426 +espanole|3556505 +esparcet|3556544 +especial|3556658 +especially|3556716 +esperantido|3556785 +esperanto|3556838 +espial|3556887 +espionage|3556964 +espionage agent|3557006 +espionage network|3557052 +esplanade|3557091 +espoo|3557125 +espousal|3557175 +espouse|3557331 +espresso|3557505 +espresso maker|3557535 +espresso shop|3557572 +esprit|3557635 +esprit de corps|3557688 +espy|3557756 +esq|3557792 +esquimau|3557832 +esquire|3557986 +esr|3558063 +essay|3558234 +essayer|3558419 +essayist|3558505 +esselen|3558549 +essen|3558611 +essence|3558661 +essene|3558969 +essential|3559047 +essential amino acid|3559571 +essential condition|3559631 +essential hypertension|3559698 +essential oil|3559787 +essential thrombocytopenia|3559827 +essential tremor|3559893 +essentiality|3559926 +essentially|3559973 +essentialness|3560036 +essex|3560083 +essonite|3560111 +est|3560161 +establish|3560249 +established|3560585 +established church|3560928 +establishment|3560971 +establishmentarianism|3561366 +establishmentism|3561477 +estaminet|3561588 +estate|3561647 +estate agent|3561851 +estate car|3561961 +estate for life|3562063 +estate of the realm|3562107 +estate tax|3562183 +estates general|3562253 +estazolam|3562309 +esteem|3562350 +esteemed|3562633 +ester|3562681 +esterify|3562713 +esther|3562749 +esther hobart mcquigg slack morris|3562819 +esther morris|3562930 +esthete|3563020 +esthetic|3563070 +esthetical|3563310 +esthetically|3563418 +esthetician|3563453 +esthetics|3563549 +esthonia|3563660 +esthonian|3563744 +estimable|3563796 +estimate|3563915 +estimated|3564355 +estimated tax|3564385 +estimated tax return|3564419 +estimation|3564514 +estimator|3564757 +estival|3564820 +estivate|3564854 +estivation|3564923 +estonia|3565017 +estonian|3565100 +estonian monetary unit|3565195 +estoppel|3565264 +estradiol|3565299 +estradiol patch|3565348 +estragon|3565402 +estrange|3565482 +estranged|3565577 +estrangement|3565614 +estranging|3565696 +estraterrestrial body|3565729 +estrilda|3565799 +estriol|3565852 +estrogen|3565897 +estrogen antagonist|3565961 +estrogenic|3566011 +estrone|3566066 +estronol|3566140 +estrous|3566223 +estrus|3566296 +estuarial|3566373 +estuarine|3566421 +estuary|3566469 +esurience|3566506 +esurient|3566657 +et al|3566829 +et al.|3566888 +eta|3567026 +etagere|3567255 +etamin|3567322 +etamine|3567376 +etanercept|3567430 +etc.|3567475 +etcetera|3567520 +etch|3567618 +etched|3567638 +etcher|3567702 +etching|3567741 +etd|3567814 +eternal|3567864 +eternal city|3568032 +eternal damnation|3568127 +eternal life|3568170 +eternal rest|3568237 +eternal sleep|3568298 +eternalise|3568359 +eternalize|3568452 +eternally|3568545 +eternise|3568594 +eternity|3568687 +eternize|3568814 +ethacrynic acid|3568925 +ethan allen|3568992 +ethanal|3569039 +ethanal trimer|3569078 +ethanamide|3569123 +ethane|3569159 +ethanedioic acid|3569237 +ethanediol|3569280 +ethanoate|3569334 +ethanoic acid|3569366 +ethanol|3569417 +ethanoyl chloride|3569505 +ethanoyl group|3569572 +ethanoyl radical|3569664 +ethchlorvynol|3569756 +ethel barrymore|3569829 +ethel merman|3569888 +ethel waters|3569966 +ethelbert|3570052 +ethelred|3570099 +ethelred i|3570222 +ethelred ii|3570280 +ethelred the unready|3570361 +ethene|3570451 +ether|3570502 +ethereal|3570761 +etherealize|3571012 +etherialise|3571065 +etherify|3571118 +etherise|3571154 +etherize|3571262 +ethernet|3571370 +ethernet cable|3571411 +ethic|3571465 +ethical|3571580 +ethical code|3571668 +ethical drug|3571719 +ethical motive|3571840 +ethician|3571910 +ethicism|3571949 +ethicist|3572030 +ethics|3572069 +ethics committee|3572293 +ethics panel|3572353 +ethiopia|3572413 +ethiopian|3572530 +ethiopian banana|3572614 +ethiopian language|3572728 +ethiopian monetary unit|3572791 +ethmoid|3572862 +ethmoid bone|3572900 +ethmoid sinus|3572938 +ethmoidal artery|3573001 +ethmoidal sinus|3573084 +ethmoidal vein|3573147 +ethnic|3573218 +ethnic cleansing|3573303 +ethnic group|3573342 +ethnic joke|3573386 +ethnic minority|3573432 +ethnic music|3573477 +ethnic slur|3573549 +ethnical|3573585 +ethnicity|3573626 +ethnocentric|3573653 +ethnocentrism|3573698 +ethnographer|3573745 +ethnographic|3573782 +ethnographical|3573831 +ethnography|3573880 +ethnologic|3573939 +ethnological|3573984 +ethnologist|3574029 +ethnology|3574065 +ethnos|3574097 +ethocaine|3574141 +ethologist|3574259 +ethology|3574306 +ethos|3574351 +ethosuximide|3574376 +ethoxyethane|3574483 +ethrane|3574669 +ethril|3574775 +ethyl|3574876 +ethyl acetate|3574949 +ethyl alcohol|3574978 +ethyl aminobenzoate|3575137 +ethyl chloride|3575257 +ethyl ether|3575361 +ethyl group|3575547 +ethyl radical|3575620 +ethylene|3575693 +ethylene glycol|3575744 +ethylene tetrachloride|3575798 +ethyne|3575935 +etienne-louis arthur fallot|3575987 +etiolate|3576094 +etiolated|3576220 +etiolation|3576278 +etiologic|3576354 +etiological|3576467 +etiologist|3576578 +etiology|3576636 +etiquette|3576698 +etna|3576732 +etodolac|3576825 +eton collar|3576923 +eton college|3576972 +eton jacket|3577021 +etonian|3577061 +etropus|3577109 +etropus rimosus|3577159 +etruria|3577249 +etruscan|3577293 +etude|3577328 +etui|3577401 +etymological|3577444 +etymological dictionary|3577497 +etymologise|3577549 +etymologist|3577644 +etymologize|3577692 +etymologizing|3577787 +etymology|3577850 +etymon|3577920 +eu|3577977 +euarctos|3578253 +euarctos americanus|3578308 +euascomycetes|3578410 +eubacteria|3578476 +eubacteriales|3578538 +eubacterium|3578608 +eubryales|3578670 +eucalypt|3578727 +eucalypt grandis|3578785 +eucalypt gunnii|3578849 +eucalypt ovata|3578912 +eucalypt tereticornis|3578997 +eucalyptus|3579077 +eucalyptus amygdalina|3579147 +eucalyptus calophylla|3579270 +eucalyptus camaldulensis|3579373 +eucalyptus camphora|3579512 +eucalyptus citriodora|3579616 +eucalyptus coriacea|3579754 +eucalyptus delegatensis|3579890 +eucalyptus dumosa|3580007 +eucalyptus fraxinoides|3580086 +eucalyptus globulus|3580196 +eucalyptus gum|3580301 +eucalyptus kino|3580353 +eucalyptus maculata|3580405 +eucalyptus maculata citriodora|3580502 +eucalyptus oil|3580649 +eucalyptus pauciflora|3580700 +eucalyptus regnans|3580838 +eucalyptus rostrata|3580934 +eucalyptus tree|3581068 +eucalyptus viminalis|3581126 +eucalyptusd eugenioides|3581223 +eucalytus stellulata|3581334 +eucarya|3581427 +eucarya acuminata|3581510 +eucaryote|3581611 +eucaryotic|3581655 +eucharist|3581701 +eucharistic|3581839 +eucharistic liturgy|3581881 +euchre|3582029 +eucinostomus|3582074 +eucinostomus gula|3582139 +euclid|3582205 +euclidean|3582250 +euclidean geometry|3582300 +euclidean space|3582395 +euclidian|3582449 +eudaemon|3582499 +eudaemonia|3582568 +eudaemonic|3582661 +eudaimonia|3582714 +eudemon|3582807 +eudemonic|3582876 +eudemonism|3582929 +euderma|3582985 +euderma maculata|3583037 +eudiometer|3583136 +eudora welty|3583211 +eudromias morinellus|3583266 +eudyptes|3583362 +eugene|3583415 +eugene curran kelly|3583525 +eugene delacroix|3583661 +eugene gladstone o'neill|3583756 +eugene ionesco|3583859 +eugene luther vidal|3583927 +eugene o'neill|3584007 +eugene ormandy|3584100 +eugene paul wigner|3584181 +eugene sue|3584267 +eugene v. debs|3584316 +eugene victor debs|3584415 +eugene wigner|3584518 +eugenia|3584599 +eugenia aromaticum|3584669 +eugenia caryophyllatum|3584787 +eugenia corynantha|3584909 +eugenia dicrana|3584979 +eugenia jambos|3585055 +eugenia uniflora|3585140 +eugenic|3585217 +eugenics|3585266 +eugenio pacelli|3585308 +euglena|3585448 +euglenaceae|3585485 +euglenid|3585555 +euglenoid|3585607 +euglenophyceae|3585659 +euglenophyta|3585725 +euglenophyte|3585791 +eukaryote|3585843 +eukaryotic|3585887 +euler|3585933 +eulogise|3585983 +eulogist|3586017 +eulogistic|3586104 +eulogize|3586172 +eulogy|3586206 +eumeces|3586281 +eumeces callicephalus|3586334 +eumeces skiltonianus|3586431 +eumenes|3586525 +eumenides|3586580 +eumetopias|3586657 +eumetopias jubatus|3586718 +eumops|3586810 +eumycetes|3586859 +eumycota|3586910 +eunectes|3586964 +eunectes murinus|3587020 +eunuch|3587076 +eunuchoidism|3587116 +euonymous alatus|3587169 +euonymus|3587276 +euonymus americanus|3587349 +euonymus atropurpureus|3587431 +euonymus europaeus|3587516 +euonymus fortunei radicans|3587627 +euonymus radicans vegetus|3587743 +euopean hoopoe|3587858 +eupatorium|3587923 +eupatorium aya-pana|3587991 +eupatorium cannabinum|3588091 +eupatorium capillifolium|3588180 +eupatorium coelestinum|3588272 +eupatorium maculatum|3588390 +eupatorium perfoliatum|3588497 +eupatorium purpureum|3588604 +eupatorium rugosum|3588733 +euphagus|3588852 +euphagus carilonus|3588905 +euphausia pacifica|3589012 +euphausiacea|3589065 +euphemise|3589132 +euphemism|3589174 +euphemistic|3589220 +euphemize|3589265 +euphonic|3589307 +euphonical|3589360 +euphonious|3589413 +euphonium|3589489 +euphonous|3589534 +euphony|3589587 +euphorbia|3589635 +euphorbia amygdaloides|3589698 +euphorbia antisyphilitica|3589772 +euphorbia caput-medusae|3589851 +euphorbia corollata|3589947 +euphorbia cyathophora|3590047 +euphorbia cyparissias|3590160 +euphorbia dentata|3590235 +euphorbia esula|3590302 +euphorbia exigua|3590375 +euphorbia fulgens|3590438 +euphorbia helioscopia|3590504 +euphorbia heterophylla|3590606 +euphorbia hirsuta|3590710 +euphorbia ingens|3590775 +euphorbia lathyris|3590849 +euphorbia marginata|3590941 +euphorbia medusae|3591044 +euphorbia milii|3591134 +euphorbia peplus|3591224 +euphorbia pulcherrima|3591300 +euphorbiaceae|3591448 +euphorbium|3591539 +euphoria|3591579 +euphoria litchi|3591618 +euphoriant|3591732 +euphoric|3591862 +euphractus|3591929 +euphractus sexcinctus|3591990 +euphrates|3592066 +euphrates river|3592117 +euphrosyne|3592174 +euphuism|3592211 +euplectella|3592265 +eupnea|3592329 +eupneic|3592408 +eupnoea|3592510 +eupnoeic|3592589 +euproctis|3592691 +euproctis chrysorrhoea|3592752 +euproctis phaeorrhoea|3592846 +eurafrican|3592949 +eurasia|3593034 +eurasian|3593069 +eurasian badger|3593155 +eurasian green toad|3593215 +eurasian hamster|3593287 +eurasian kingfisher|3593356 +eurasian otter|3593430 +eurasian woodcock|3593487 +eurasiatic|3593560 +eureka|3593609 +eurhythmics|3593680 +eurhythmy|3593782 +euripides|3593884 +euro|3593934 +eurobabble|3593962 +eurocentric|3594000 +eurocentrism|3594070 +eurocurrency|3594129 +eurodollar|3594173 +euronithopod|3594238 +euronithopoda|3594343 +europa|3594462 +europan|3594513 +europe|3594558 +european|3594864 +european ash|3594953 +european barberry|3595040 +european bean|3595128 +european beech|3595267 +european beggar-ticks|3595352 +european bird cherry|3595529 +european bittern|3595655 +european black alder|3595725 +european black currant|3595837 +european black grouse|3595940 +european blackbird|3596031 +european blueberry|3596132 +european bog asphodel|3596207 +european box|3596295 +european bream|3596372 +european brooklime|3596448 +european brown bat|3596559 +european catfish|3596667 +european central bank|3596756 +european chestnut|3596822 +european community|3596938 +european corn borer|3597171 +european country|3597287 +european cranberry|3597365 +european cranberry bush|3597458 +european cranberrybush|3597603 +european creeper|3597747 +european cuckoo|3597830 +european curlew|3597894 +european dewberry|3597959 +european dogtooth|3598060 +european dune grass|3598172 +european economic community|3598280 +european elder|3598522 +european elk|3598643 +european elm|3598712 +european field elm|3598786 +european fire salamander|3598883 +european flatfish|3598975 +european fly honeysuckle|3599076 +european gallinule|3599187 +european goatsucker|3599271 +european hackberry|3599392 +european hare|3599502 +european honeysuckle|3599560 +european hop|3599667 +european hornbeam|3599755 +european house cricket|3599826 +european ladies' tresses|3599906 +european larch|3600016 +european law enforcement organisation|3600086 +european lemming|3600216 +european lobster|3600281 +european magpie|3600386 +european mountain ash|3600444 +european nation|3600544 +european nightjar|3600621 +european nut pine|3600740 +european nuthatch|3600847 +european olive tree|3600927 +european parsley fern|3601007 +european pasqueflower|3601113 +european perch|3601232 +european plan|3601295 +european quaking aspen|3601370 +european rabbit|3601461 +european raspberry|3601559 +european recovery program|3601658 +european red elder|3601745 +european roller|3601850 +european russia|3601916 +european sandpiper|3601983 +european sanicle|3602059 +european sea bream|3602138 +european sea eagle|3602223 +european shrike|3602346 +european silver fir|3602416 +european smelt|3602502 +european sole|3602611 +european spider crab|3602665 +european swift|3602752 +european toad|3602807 +european tortoise|3602864 +european turkey oak|3602933 +european union|3603021 +european water ouzel|3603250 +european water shrew|3603338 +european white birch|3603416 +european white lily|3603525 +european wildcat|3603599 +european wolf spider|3603680 +european wood mouse|3603785 +european woolly thistle|3603877 +europeanisation|3603986 +europeanise|3604067 +europeanization|3604183 +europeanize|3604264 +europium|3604380 +europocentric|3604441 +europol|3604513 +eurotiales|3604613 +eurotium|3604708 +euryale|3604763 +euryalida|3604841 +eurydice|3604895 +eurylaimi|3604937 +eurylaimidae|3604998 +eurypterid|3605065 +eurypterida|3605095 +eurythmics|3605159 +eurythmy|3605261 +eusebius|3605363 +eusebius hieronymus|3605444 +eusebius of caesarea|3605688 +eusebius sophronius hieronymus|3605781 +euskadi ta askatasuna|3606036 +eusporangiate|3606225 +eusporangium|3606262 +eustachian tube|3606316 +eustachio|3606379 +eustoma|3606440 +eustoma grandiflorum|3606510 +eutamias|3606623 +eutamius asiaticus|3606678 +eutamius sibiricus|3606793 +eutectic|3606908 +eutectoid steel|3606934 +euterpe|3606972 +euterpe oleracea|3607061 +euthanasia|3607132 +eutheria|3607196 +eutherian|3607247 +eutherian mammal|3607329 +euthynnus|3607399 +euthynnus pelamis|3607455 +euxine sea|3607548 +ev|3607593 +eva braun|3607654 +eva le gallienne|3607721 +evacuant|3607785 +evacuate|3607832 +evacuated|3607962 +evacuation|3607991 +evacuee|3608140 +evade|3608174 +evaluate|3608372 +evaluation|3608434 +evaluative|3608536 +evaluator|3608576 +evanesce|3608611 +evanescence|3608689 +evanescent|3608724 +evangel|3608766 +evangelical|3608858 +evangelical and reformed church|3608991 +evangelical united brethren church|3609088 +evangelicalism|3609190 +evangelise|3609228 +evangelism|3609301 +evangelist|3609348 +evangelista torricelli|3609477 +evangelistic|3609553 +evangelize|3609633 +evans|3609706 +evansville|3609833 +evaporable|3609893 +evaporate|3609972 +evaporated|3610085 +evaporated milk|3610113 +evaporation|3610155 +evaporative|3610326 +evaporative cooler|3610405 +evaporite|3610456 +evaporometer|3610492 +evariste galois|3610579 +evasion|3610641 +evasive|3610850 +evasive action|3610927 +evasive answer|3610978 +evasiveness|3611009 +eve|3611096 +evelyn arthur saint john waugh|3611272 +evelyn waugh|3611376 +even|3611462 +even a little|3612179 +even as|3612214 +even chance|3612238 +even off|3612301 +even out|3612414 +even so|3612632 +even spacing|3612727 +even up|3612760 +even-pinnate|3611852 +even-pinnate leaf|3611912 +even-tempered|3611974 +even-toed|3612039 +even-toed ungulate|3612097 +evenfall|3612901 +evenhanded|3612995 +evenhandedly|3613030 +evening|3613118 +evening bag|3613381 +evening clothes|3613431 +evening dress|3613511 +evening gown|3613591 +evening grosbeak|3613705 +evening lychnis|3613774 +evening prayer|3613896 +evening primrose|3613951 +evening shift|3613999 +evening shirt|3614076 +evening star|3614117 +evening trumpet flower|3614162 +evening-primrose family|3613251 +evening-snow|3613332 +eveningwear|3614271 +evenk|3614351 +evenki|3614388 +evenly|3614505 +evenness|3614528 +evensong|3614587 +event|3614657 +event planner|3614782 +eventful|3614837 +eventide|3614912 +eventration|3614963 +eventual|3615002 +eventuality|3615029 +eventually|3615109 +eventuate|3615198 +ever|3615235 +ever so|3615372 +ever-changing|3615292 +ever-present|3615342 +everest|3615393 +everglade state|3615458 +everglades|3615540 +everglades national park|3615587 +evergreen|3615660 +evergreen beech|3615764 +evergreen bittersweet|3615809 +evergreen blueberry|3615898 +evergreen cherry|3615973 +evergreen grass|3616086 +evergreen huckleberry|3616193 +evergreen magnolia|3616266 +evergreen millet|3616376 +evergreen oak|3616485 +evergreen plant|3616570 +evergreen state|3616633 +evergreen thorn|3616703 +evergreen winterberry|3616762 +evergreen wood fern|3616841 +everlasting|3617041 +everlasting flower|3617469 +everlasting pea|3617535 +everlastingly|3617565 +everlastingness|3617614 +evermore|3617684 +evernia|3617751 +evers|3617803 +eversion|3617918 +evert|3618018 +everting|3618124 +every|3618191 +every bit|3618221 +every day|3618250 +every last|3618459 +every month|3618483 +every night|3618522 +every now and then|3618550 +every quarter|3618592 +every so often|3618624 +every week|3618666 +every which way|3618715 +every year|3618832 +everyday|3618877 +everydayness|3618991 +everyman|3619053 +everyplace|3619105 +everywhere|3619144 +evict|3619183 +eviction|3619367 +evidence|3619492 +evidenced|3619721 +evident|3619754 +evidential|3619851 +evidentiary|3619905 +evidently|3619985 +evil|3620058 +evil eye|3620665 +evil spirit|3620707 +evil-minded|3620632 +evildoer|3620754 +evildoing|3620798 +evilly|3620881 +evilness|3620905 +evince|3620939 +eviscerate|3620982 +evisceration|3621151 +evitable|3621304 +evocation|3621361 +evocative|3621547 +evoke|3621638 +evoked|3621978 +evoked potential|3622011 +evolution|3622110 +evolutionary|3622214 +evolutionary trend|3622270 +evolve|3622319 +ew|3622435 +ewe|3622492 +ewenki|3622545 +ewer|3622662 +ewing's sarcoma|3622691 +ewing's tumor|3622789 +ewing's tumour|3622885 +ex|3622982 +ex gratia|3623435 +ex libris|3623463 +ex officio|3623520 +ex post facto|3623574 +ex tempore|3623629 +ex vivo|3623704 +ex-directory|3623143 +ex-gambler|3623185 +ex-husband|3623213 +ex-mayor|3623251 +ex-president|3623288 +ex-serviceman|3623320 +ex-spouse|3623402 +exacerbate|3623745 +exacerbating|3623847 +exacerbation|3623907 +exact|3623977 +exacta|3624265 +exacting|3624300 +exaction|3624384 +exactitude|3624409 +exactly|3624454 +exactness|3624565 +exacum|3624610 +exacum affine|3624677 +exaeretodon|3624740 +exaggerate|3624805 +exaggerated|3624923 +exaggeratedly|3625048 +exaggeration|3625085 +exalt|3625247 +exaltation|3625485 +exalted|3625635 +exalting|3625741 +exam|3625779 +exam paper|3625838 +examen|3625924 +examination|3626028 +examination paper|3626295 +examine|3626381 +examinee|3626545 +examiner|3626600 +example|3626706 +exanimate|3627055 +exanthem|3627088 +exanthema|3627139 +exanthema subitum|3627190 +exarch|3627275 +exarchate|3627337 +exasperate|3627382 +exasperated|3627515 +exasperating|3627571 +exasperation|3627679 +exaugural|3627784 +exboyfriend|3627825 +excalibur|3627861 +excavate|3627914 +excavation|3628084 +excavator|3628250 +exceed|3628346 +exceedance|3628555 +exceeding|3628594 +exceedingly|3628670 +excel|3628708 +excel at|3628741 +excellence|3628792 +excellency|3628850 +excellent|3628927 +excelsior|3628979 +except|3629045 +exception|3629157 +exceptionable|3629272 +exceptional|3629322 +excerpt|3629458 +excess|3629553 +excessive|3629910 +excessively|3630024 +excessiveness|3630066 +exchange|3630139 +exchange premium|3630674 +exchange rate|3630729 +exchange transfusion|3630790 +exchangeability|3630850 +exchangeable|3630955 +exchanged|3631166 +exchanger|3631193 +exchequer|3631253 +excise|3631346 +excise tax|3631448 +exciseman|3631488 +excision|3631616 +excitability|3631870 +excitable|3631989 +excitable area|3632091 +excitableness|3632197 +excitant|3632270 +excitation|3632322 +excitative|3632471 +excitatory|3632523 +excite|3632575 +excited|3633056 +excitedly|3633348 +excitement|3633382 +exciting|3633596 +exclaim|3633875 +exclaiming|3634010 +exclamation|3634065 +exclamation mark|3634173 +exclamation point|3634246 +exclamatory|3634319 +exclude|3634358 +exclusion|3634666 +exclusion principle|3634846 +exclusionary rule|3634919 +exclusive|3634963 +exclusive right|3635167 +exclusively|3635231 +exclusiveness|3635278 +excogitate|3635349 +excogitation|3635573 +excogitative|3635735 +excogitator|3635768 +excommunicate|3635797 +excommunication|3635912 +excoriate|3636005 +excoriation|3636119 +excrement|3636210 +excrescence|3636324 +excrescent|3636485 +excreta|3636539 +excrete|3636653 +excreting|3636721 +excretion|3636810 +excretory|3637001 +excretory organ|3637048 +excretory product|3637109 +excruciate|3637223 +excruciating|3637318 +excruciatingly|3637410 +excruciation|3637457 +exculpate|3637545 +exculpated|3637626 +exculpation|3637723 +exculpatory|3637830 +excursion|3637981 +excursion rate|3638108 +excursionist|3638153 +excursive|3638232 +excursus|3638291 +excusable|3638390 +excusably|3638467 +excusatory|3638507 +excuse|3638602 +excused|3639038 +excuser|3639062 +exec|3639150 +execrable|3639202 +execrate|3639340 +execration|3639466 +executability|3639622 +executable|3639668 +executant|3639734 +execute|3639781 +executed|3640113 +executing|3640136 +execution|3640218 +execution of instrument|3640556 +execution sale|3640612 +execution speed|3640698 +executioner|3640748 +executive|3640802 +executive agency|3641021 +executive branch|3641111 +executive clemency|3641194 +executive council|3641235 +executive department|3641270 +executive director|3641371 +executive office of the president|3641438 +executive officer|3641555 +executive program|3641607 +executive routine|3641719 +executive secretary|3641815 +executive session|3641876 +executive vice president|3641926 +executor|3641980 +executor-heir relation|3642008 +executrix|3642059 +exegesis|3642087 +exegete|3642120 +exegetic|3642144 +exegetical|3642187 +exemplar|3642230 +exemplary|3642281 +exemplary damages|3642402 +exemplification|3642519 +exemplify|3642621 +exemplifying|3642775 +exempt|3642834 +exemption|3643020 +exenterate|3643177 +exenteration|3643228 +exercise|3643323 +exercise bike|3643842 +exercise device|3643891 +exercise set|3643923 +exerciser|3644013 +exercising|3644084 +exercising weight|3644200 +exercycle|3644278 +exert|3644327 +exertion|3644441 +exfiltration operation|3644511 +exfoliate|3644565 +exfoliation|3644761 +exhalation|3644847 +exhale|3644921 +exhaled|3645042 +exhaling|3645067 +exhaust|3645112 +exhaust fan|3645559 +exhaust fumes|3645584 +exhaust hood|3645673 +exhaust manifold|3645709 +exhaust pipe|3645744 +exhaust system|3645785 +exhaust valve|3645824 +exhausted|3645853 +exhaustible|3646046 +exhausting|3646104 +exhaustion|3646187 +exhaustive|3646306 +exhaustively|3646358 +exhibit|3646390 +exhibition|3646553 +exhibition area|3646682 +exhibition game|3646728 +exhibition hall|3646772 +exhibition season|3646818 +exhibitioner|3646852 +exhibitionism|3646919 +exhibitionist|3646990 +exhibitionistic|3647073 +exhibitor|3647110 +exhilarate|3647177 +exhilarated|3647268 +exhilarating|3647306 +exhilaration|3647377 +exhort|3647436 +exhortation|3647545 +exhortative|3647631 +exhortatory|3647696 +exhumation|3647761 +exhume|3647830 +exigency|3647879 +exigent|3647934 +exiguity|3648021 +exiguous|3648127 +exile|3648168 +exilic|3648377 +exist|3648416 +existence|3648462 +existent|3648566 +existential|3648758 +existential operator|3648872 +existential quantifier|3648955 +existentialism|3649038 +existentialist|3649132 +existentialist philosophy|3649218 +existing|3649312 +exit|3649389 +exit poll|3649657 +exmoor|3649722 +exobiology|3649790 +exocarp|3649864 +exocentric|3649910 +exocet|3649941 +exocoetidae|3649979 +exocrine|3650043 +exocrine gland|3650110 +exocycloida|3650185 +exode|3650249 +exoderm|3650275 +exodontia|3650322 +exodontic|3650367 +exodontics|3650400 +exodontist|3650445 +exodus|3650506 +exoergic|3650584 +exoergic reaction|3650665 +exogamic|3650709 +exogamous|3650762 +exogamy|3650834 +exogen|3650919 +exogenic|3650993 +exogenous|3651021 +exogenous depression|3651050 +exogenous obesity|3651151 +exomphalos|3651197 +exon|3651235 +exonerate|3651309 +exonerated|3651390 +exoneration|3651487 +exonerative|3651553 +exonuclease|3651608 +exophthalmic goiter|3651638 +exophthalmos|3651727 +exopterygota|3651757 +exorbitance|3651833 +exorbitant|3651905 +exorbitantly|3651990 +exorcise|3652037 +exorciser|3652140 +exorcism|3652205 +exorcist|3652253 +exorcize|3652342 +exordium|3652445 +exoskeleton|3652476 +exosphere|3652560 +exostosis|3652585 +exoteric|3652611 +exothermal|3652645 +exothermic|3652717 +exothermic reaction|3652800 +exotic|3652856 +exotic belly dancer|3652909 +exotic dancer|3652992 +exoticism|3653177 +exoticness|3653251 +exotism|3653325 +exotoxin|3653399 +exotropia|3653423 +expand|3653489 +expandable|3653778 +expanded|3653877 +expandible|3653939 +expanding|3654038 +expanding upon|3654068 +expanse|3654119 +expansible|3654226 +expansile|3654325 +expansion|3654385 +expansion bit|3654534 +expansion bolt|3654575 +expansion slot|3654604 +expansionism|3654644 +expansionist|3654729 +expansive|3654813 +expansive bit|3655008 +expansively|3655049 +expansiveness|3655093 +expansivity|3655192 +expatiate|3655250 +expatiation|3655364 +expatriate|3655419 +expatriation|3655515 +expect|3655636 +expectable|3655864 +expectancy|3655893 +expectant|3655987 +expectation|3656103 +expected|3656262 +expected value|3656457 +expectedness|3656538 +expectorant|3656610 +expectorate|3656690 +expectoration|3656835 +expectorator|3656974 +expedience|3657122 +expediency|3657229 +expedient|3657278 +expediently|3657454 +expedite|3657486 +expedited|3657562 +expedition|3657631 +expeditionary|3657924 +expeditious|3657956 +expeditiously|3658005 +expeditiousness|3658055 +expel|3658137 +expelling|3658418 +expend|3658509 +expendable|3658551 +expended|3658647 +expender|3658686 +expending|3658738 +expenditure|3658808 +expense|3658951 +expense account|3659050 +expense record|3659145 +expensive|3659176 +expensiveness|3659303 +experience|3659352 +experienced|3659626 +experiential|3659818 +experiment|3659916 +experimental|3660096 +experimental condition|3660217 +experimental extinction|3660277 +experimental method|3660334 +experimental procedure|3660381 +experimental psychology|3660431 +experimental variable|3660510 +experimentalism|3660589 +experimentally|3660681 +experimentation|3660745 +experimenter|3660861 +experimenter bias|3660983 +expert|3661039 +expert witness|3661172 +expertise|3661204 +expertly|3661247 +expertness|3661294 +expiable|3661337 +expiate|3661366 +expiation|3661431 +expiative|3661585 +expiatory|3661647 +expiration|3661709 +expiratory|3661861 +expire|3661887 +expired|3662054 +expiry|3662098 +explain|3662148 +explainable|3662236 +explanandum|3662282 +explanans|3662325 +explanation|3662354 +explanatory|3662470 +expletive|3662515 +explicable|3662620 +explicandum|3662715 +explicate|3662758 +explication|3662900 +explication de texte|3662960 +explicit|3663019 +explicit definition|3663229 +explicitly|3663269 +explicitness|3663298 +explode|3663369 +explode a bombshell|3663670 +exploded|3663708 +exploding|3663761 +exploding cucumber|3663828 +exploit|3663925 +exploitation|3664108 +exploitative|3664250 +exploitatory|3664308 +exploited|3664366 +exploiter|3664476 +exploitive|3664515 +exploration|3664573 +explorative|3664675 +exploratory|3664749 +exploratory survey|3664835 +explore|3664939 +explorer|3665060 +explorer's gentian|3665142 +explosion|3665196 +explosive|3665423 +explosive charge|3665548 +explosive compound|3665615 +explosive detection system|3665653 +explosive device|3665700 +explosive mixture|3665733 +explosive trace detection|3665770 +explosive unit|3665816 +expo|3665865 +exponent|3665948 +exponential|3666119 +exponential curve|3666220 +exponential decay|3666270 +exponential equation|3666330 +exponential expression|3666369 +exponential function|3666420 +exponential return|3666493 +exponential series|3666553 +exponentiation|3666588 +export|3666677 +export credit|3666783 +export duty|3666813 +exportable|3666846 +exportation|3666888 +exporter|3666997 +exporting|3667040 +expose|3667107 +exposed|3667562 +exposit|3667623 +exposition|3667832 +expositive|3667975 +expository|3668030 +expostulate|3668085 +expostulation|3668119 +exposure|3668206 +exposure meter|3668561 +exposure therapy|3668631 +expound|3668815 +expounding|3669024 +express|3669070 +express emotion|3669499 +express feelings|3669541 +express joy|3669583 +express luxury liner|3669657 +express mail|3669718 +express mirth|3669753 +express trust|3669827 +express-mail|3669462 +expressage|3669869 +expressed|3669931 +expressed almond oil|3670150 +expressible|3670212 +expression|3670291 +expressionism|3670825 +expressionist|3670879 +expressionistic|3670978 +expressionless|3671047 +expressive|3671146 +expressive aphasia|3671194 +expressive style|3671293 +expressiveness|3671339 +expressly|3671371 +expressway|3671431 +expropriate|3671537 +expropriated|3671579 +expropriation|3671607 +expugnable|3671654 +expulsion|3671696 +expunction|3671862 +expunge|3671909 +expunging|3671954 +expurgate|3672001 +expurgated|3672118 +expurgation|3672147 +exquisite|3672188 +exquisitely|3672285 +exquisiteness|3672328 +exsanguine|3672358 +exsanguinous|3672406 +exsert|3672454 +extant|3672547 +extemporaneous|3672612 +extemporaneously|3672729 +extemporarily|3672778 +extemporary|3672827 +extempore|3672944 +extemporisation|3673098 +extemporise|3673165 +extemporization|3673244 +extemporize|3673311 +extend|3673464 +extend oneself|3674096 +extend to|3674140 +extendable|3674174 +extended|3674210 +extended care facility|3674542 +extended family|3674594 +extended order|3674654 +extended time scale|3674697 +extendible|3674753 +extensible|3674789 +extensile|3674867 +extension|3674955 +extension agent|3675561 +extension cord|3675645 +extension course|3675688 +extension ladder|3675765 +extension phone|3675798 +extension service|3675883 +extensional|3676002 +extensive|3676043 +extensor|3676206 +extensor muscle|3676272 +extent|3676338 +extenuate|3676396 +extenuating|3676492 +extenuation|3676525 +exterior|3676670 +exterior angle|3676787 +exterior door|3676832 +exteriorisation|3676903 +exteriorise|3676992 +exteriorization|3677079 +exteriorize|3677168 +exterminable|3677290 +exterminate|3677334 +exterminated|3677420 +extermination|3677474 +exterminator|3677579 +extern|3677637 +external|3677703 +external angle|3677918 +external auditory canal|3677963 +external body part|3678060 +external carotid|3678098 +external carotid artery|3678179 +external drive|3678260 +external ear|3678290 +external gill|3678337 +external iliac artery|3678374 +external iliac vein|3678433 +external jugular vein|3678485 +external maxillary artery|3678552 +external nasal vein|3678654 +external oblique muscle|3678734 +external organ|3678876 +external orifice|3678906 +external respiration|3678971 +external storage|3679088 +external-combustion engine|3677870 +externalisation|3679179 +externalise|3679314 +externality|3679460 +externalization|3679519 +externalize|3679654 +externally|3679800 +exteroception|3679829 +exteroceptive|3679890 +exteroceptor|3679950 +exterritorial|3680010 +extinct|3680050 +extinction|3680147 +extinction angle|3680433 +extinguish|3680485 +extinguishable|3680703 +extinguished|3680742 +extinguisher|3680774 +extinguishing|3680833 +extirpable|3680907 +extirpate|3680951 +extirpation|3681102 +extol|3681268 +extoller|3681318 +extort|3681365 +extortion|3681504 +extortionate|3681564 +extortionately|3681649 +extortioner|3681696 +extortionist|3681781 +extra|3681866 +extra dividend|3682159 +extra innings|3682192 +extra large|3682235 +extra point|3682261 +extra time|3682305 +extracellular|3682368 +extracellular fluid|3682432 +extract|3682524 +extractable|3682944 +extractible|3682987 +extraction|3683030 +extractor|3683181 +extracurricular|3683310 +extracurricular activity|3683397 +extradite|3683492 +extradition|3683551 +extrados|3683582 +extradural|3683619 +extragalactic|3683663 +extragalactic nebula|3683732 +extrajudicial|3683816 +extralegal|3683847 +extralinguistic|3683884 +extramarital|3683922 +extramarital sex|3683979 +extramural|3684059 +extraneous|3684153 +extraneousness|3684308 +extraordinarily|3684346 +extraordinariness|3684383 +extraordinary|3684418 +extrapolate|3684819 +extrapolated|3685003 +extrapolation|3685079 +extrasensory|3685171 +extrasensory perception|3685263 +extrasystole|3685385 +extrasystolic|3685415 +extraterrestrial|3685445 +extraterrestrial being|3685547 +extraterrestrial object|3685624 +extraterritorial|3685694 +extrauterine gestation|3685751 +extrauterine pregnancy|3685892 +extravagance|3686033 +extravagancy|3686244 +extravagant|3686315 +extravagantly|3686429 +extravaganza|3686519 +extravasate|3686565 +extravasation|3686698 +extraversion|3686824 +extraversive|3686884 +extravert|3687020 +extraverted|3687195 +extravertive|3687300 +extreme|3687405 +extreme point|3687564 +extreme right-winger|3687614 +extreme unction|3687702 +extremely|3687770 +extremely high frequency|3687833 +extremely low frequency|3687887 +extremism|3687940 +extremist|3688007 +extremity|3688066 +extremum|3688233 +extricable|3688312 +extricate|3688343 +extricated|3688410 +extrication|3688454 +extrinsic|3688540 +extrinsic fraud|3688683 +extropic|3688731 +extropy|3688799 +extrospective|3688867 +extroversion|3688916 +extroversive|3688976 +extrovert|3689125 +extroverted|3689300 +extrovertish|3689463 +extrovertive|3689520 +extrude|3689625 +extrusion|3689674 +extrusive|3689828 +exuberance|3689875 +exuberant|3689998 +exuberantly|3690151 +exudate|3690211 +exudation|3690322 +exude|3690408 +exult|3690510 +exultant|3690635 +exultantly|3690718 +exultation|3690748 +exulting|3690876 +exultingly|3690959 +exurbia|3690989 +exuviae|3691054 +exuvial|3691085 +exuviate|3691115 +exwife|3691217 +eyas|3691255 +eyck|3691274 +eye|3691326 +eye bank|3691995 +eye blink|3692018 +eye candy|3692185 +eye chart|3692232 +eye clinic|3692257 +eye condition|3692284 +eye contact|3692324 +eye cup|3692381 +eye dialect|3692472 +eye disease|3692514 +eye doctor|3692543 +eye dropper|3692617 +eye infection|3692660 +eye mask|3692712 +eye muscle|3692752 +eye of ra|3692802 +eye opener|3692853 +eye rhyme|3692895 +eye socket|3692925 +eye tooth|3693007 +eye-beaming|3691557 +eye-catcher|3691605 +eye-catching|3691653 +eye-deceiving|3691713 +eye-drop|3691757 +eye-lotion|3691877 +eye-popping|3691934 +eyeball|3693158 +eyebath|3693203 +eyebrow|3693242 +eyebrow pencil|3693281 +eyecup|3693330 +eyed|3693414 +eyedness|3693532 +eyedrop|3693570 +eyeful|3693609 +eyeglass|3693669 +eyeglass wearer|3693718 +eyeglasses|3693771 +eyeish|3693882 +eyelash|3693911 +eyeless|3693945 +eyelessness|3694012 +eyelet|3694064 +eyelid|3694156 +eyelike|3694201 +eyeliner|3694223 +eyepatch|3694266 +eyepiece|3694305 +eyes|3694353 +eyes-only|3694634 +eyeshade|3694664 +eyeshadow|3694709 +eyeshot|3694753 +eyesight|3694787 +eyesore|3694866 +eyespot|3694892 +eyestrain|3694925 +eyetooth|3694983 +eyewash|3695053 +eyewitness|3695110 +eyra|3695170 +eyre|3695248 +eyre peninsula|3695282 +eyrie|3695331 +eyrir|3695408 +eyry|3695453 +eysenck|3695531 +eysenck personality inventory|3695616 +ezechiel|3695745 +ezed|3695833 +ezekias|3695915 +ezekiel|3695967 +ezo|3696054 +ezo-yama-hagi|3696092 +ezra|3696173 +ezra cornell|3696275 +ezra loomis pound|3696369 +ezra pound|3696450 +f|3696524 +f clef|3697290 +f layer|3697328 +f number|3697389 +f region|3697443 +f.|3696725 +f. d. roosevelt|3696747 +f. g. banting|3696977 +f. scott fitzgerald|3697063 +f.i.s.c.|3697166 +fa|3697505 +fa la|3697532 +faa|3697605 +fab|3697710 +fabaceae|3697741 +faberge|3697859 +fabian|3697936 +fabian society|3698017 +fabiana|3698068 +fabiana imbricata|3698127 +fabianism|3698189 +fable|3698228 +fabled|3698364 +fabric|3698397 +fabricate|3698481 +fabricated|3698610 +fabrication|3698683 +fabricator|3698985 +fabulist|3699042 +fabulous|3699088 +fabulously|3699204 +facade|3699237 +face|3699334 +face angle|3700446 +face card|3700472 +face cloth|3700528 +face cream|3700585 +face fungus|3700667 +face guard|3700708 +face lift|3700738 +face lifting|3701025 +face mask|3701228 +face off|3701252 +face pack|3701285 +face powder|3701332 +face recognition|3701385 +face saver|3701571 +face saving|3701630 +face soap|3701689 +face the music|3701735 +face to face|3701802 +face towel|3701864 +face up|3701901 +face value|3701960 +face veil|3702046 +face-amount certificate company|3700074 +face-harden|3700172 +face-lift|3700209 +face-off|3700252 +face-saving|3700352 +face-to-face|3700381 +faced|3702084 +faceless|3702201 +facelift|3702238 +faceplate|3702445 +facer|3702512 +facet|3702538 +facet plane|3702600 +faceted|3702633 +facetious|3702658 +facetiously|3702722 +facetiousness|3702767 +facia|3702806 +facial|3702846 +facial artery|3703009 +facial expression|3703111 +facial gesture|3703222 +facial index|3703279 +facial muscle|3703307 +facial nerve|3703362 +facial profiling|3703443 +facial recognition|3703484 +facial tissue|3703628 +facial vein|3703671 +facile|3703736 +facilitate|3703857 +facilitated|3703947 +facilitation|3703978 +facilitative|3704077 +facilitator|3704107 +facilitatory|3704160 +facility|3704190 +facing|3704362 +facing pages|3704582 +facsimile|3704639 +facsimile machine|3704754 +fact|3704813 +fact mood|3704991 +fact-finding|3704931 +faction|3705097 +factious|3705240 +factitious|3705290 +factoid|3705328 +factor|3705379 +factor analyse|3705728 +factor analysis|3705783 +factor analytic|3705831 +factor analytical|3705896 +factor analyze|3705961 +factor i|3706016 +factor ii|3706089 +factor iii|3706165 +factor in|3706260 +factor iv|3706352 +factor ix|3706456 +factor of proportionality|3706537 +factor of safety|3706616 +factor out|3706662 +factor v|3706754 +factor vii|3706872 +factor viii|3706982 +factor x|3707152 +factor xi|3707229 +factor xii|3707326 +factor xiii|3707407 +factorial|3707485 +factoring|3707568 +factorisation|3707636 +factorise|3707704 +factorization|3707747 +factorize|3707815 +factory|3707858 +factory farm|3708036 +factory price|3708134 +factory ship|3708176 +factory whistle|3708218 +factory worker|3708251 +factory-made|3707941 +factotum|3708320 +facts of life|3708355 +factual|3708461 +factuality|3708568 +factualness|3708608 +facula|3708648 +facultative|3708729 +faculty|3708814 +faculty member|3708885 +fad|3708949 +fad diet|3708999 +faddily|3709044 +faddish|3709070 +faddishly|3709113 +faddist|3709139 +faddy|3709209 +fade|3709252 +fade away|3709540 +fade out|3709595 +faded|3709650 +fadeout|3709767 +fading|3709845 +fading away|3709883 +fado|3709929 +fae|3709974 +faecal|3710027 +faecal matter|3710079 +faecal occult test|3710211 +faecalith|3710301 +faeces|3710355 +faerie|3710487 +faeroe islands|3710611 +faeroes|3710748 +faeroese|3710878 +faery|3711000 +fafnir|3711125 +fag|3711165 +fag end|3711534 +fag out|3711613 +fagaceae|3711719 +fagales|3711798 +fagged|3711849 +faggot|3711946 +faggot up|3712185 +fagin|3712244 +fagopyrum|3712316 +fagopyrum esculentum|3712392 +fagot|3712495 +fagus|3712738 +fagus americana|3712793 +fagus grandifolia|3712906 +fagus pendula|3713021 +fagus purpurea|3713113 +fagus sylvatica|3713248 +fagus sylvatica atropunicea|3713334 +fagus sylvatica pendula|3713482 +fagus sylvatica purpurea|3713584 +fahd|3713729 +fahd ibn abdel aziz al-saud|3713794 +fahrenheit|3713882 +fahrenheit scale|3713949 +fahrenheit thermometer|3714010 +faience|3714077 +fail|3714106 +fail-safe|3714345 +failed|3714383 +failing|3714420 +faille|3714537 +failure|3714583 +fain|3714881 +faineance|3714948 +faineant|3714995 +faint|3715057 +fainthearted|3715370 +faintheartedness|3715421 +faintness|3715469 +fair|3715558 +fair ball|3716647 +fair catch|3716674 +fair chance|3716717 +fair copy|3716773 +fair deal|3716812 +fair game|3716848 +fair hearing|3716893 +fair to middling|3716923 +fair use|3716980 +fair weather|3717012 +fair-and-square|3716335 +fair-haired|3716370 +fair-maids-of-france|3716420 +fair-minded|3716538 +fair-mindedness|3716569 +fairbanks|3717105 +fairground|3717315 +fairish|3717393 +fairlead|3717473 +fairly|3717517 +fairness|3717691 +fairness commission|3717910 +fairway|3717960 +fairway crested wheat grass|3718085 +fairy|3718204 +fairy armadillo|3718485 +fairy bell|3718577 +fairy bluebird|3718701 +fairy circle|3718753 +fairy cup|3718832 +fairy godmother|3718957 +fairy lantern|3719033 +fairy light|3719084 +fairy ring|3719124 +fairy shrimp|3719203 +fairy story|3719274 +fairy swallow|3719448 +fairy tale|3719487 +fairy-ring mushroom|3718358 +fairy-slipper|3718412 +fairyland|3719743 +fairytale|3719859 +faisal|3720035 +faisal ibn abdel aziz al-saud|3720106 +faisalabad|3720200 +fait accompli|3720269 +faith|3720337 +faith cure|3720534 +faith healing|3720595 +faithful|3720656 +faithfully|3720860 +faithfulness|3720899 +faithless|3720938 +faithlessly|3720988 +faithlessness|3721053 +fake|3721135 +fake book|3721620 +fakeer|3721658 +faker|3721782 +fakery|3721924 +fakir|3721983 +fal la|3722107 +falafel|3722239 +falcate|3722269 +falcatifolium|3722325 +falcatifolium falciforme|3722399 +falcatifolium taxoides|3722501 +falchion|3722604 +falciform|3722646 +falciform ligament|3722702 +falco|3722739 +falco columbarius|3722783 +falco peregrinus|3722854 +falco rusticolus|3722931 +falco sparverius|3723001 +falco subbuteo|3723089 +falco tinnunculus|3723141 +falcon|3723201 +falcon-gentil|3723259 +falcon-gentle|3723340 +falconer|3723421 +falconidae|3723462 +falconiformes|3723523 +falconine|3723593 +falconry|3723616 +falderal|3723655 +falkland islands|3723763 +falkner|3723813 +fall|3723915 +fall all over|3725853 +fall apart|3725885 +fall armyworm|3726086 +fall asleep|3726143 +fall away|3726230 +fall back|3726329 +fall behind|3726711 +fall board|3726828 +fall by the wayside|3726988 +fall cankerworm|3727107 +fall dandelion|3727143 +fall down|3727207 +fall equinox|3727246 +fall flat|3727311 +fall for|3727379 +fall from grace|3727428 +fall guy|3727484 +fall in|3727563 +fall in line|3727657 +fall in love|3727691 +fall into|3727718 +fall into place|3727789 +fall of man|3727876 +fall off|3727942 +fall open|3728051 +fall out|3728100 +fall over|3728356 +fall over backwards|3728403 +fall short|3728466 +fall through|3728517 +fall under|3728585 +fall upon|3728656 +fall webworm|3728777 +fall-blooming hydrangea|3725629 +fall-board|3725693 +falla|3728824 +fallacious|3728891 +fallaciousness|3728995 +fallacy|3729042 +fallal|3729086 +fallback|3729154 +fallen|3729202 +fallen arch|3729268 +faller|3729308 +fallibility|3729449 +fallible|3729532 +falling|3729643 +falling off|3729760 +falling out|3729864 +falloff|3729951 +fallopian tube|3730055 +fallot|3730158 +fallot's syndrome|3730244 +fallot's tetralogy|3730361 +fallout|3730479 +fallout shelter|3730590 +fallow|3730623 +fallow deer|3730777 +falls|3730820 +false|3731392 +false alarm|3731913 +false alumroot|3731942 +false asphodel|3732021 +false azalea|3732062 +false baby's breath|3732135 +false beachdrops|3732244 +false belief|3732322 +false bittersweet|3732366 +false bracken|3732490 +false buckthorn|3732532 +false bugbane|3732632 +false calyx|3732704 +false chamomile|3732758 +false deathcap|3732806 +false dogwood|3732851 +false dragon head|3732951 +false dragonhead|3733045 +false face|3733139 +false foxglove|3733164 +false fruit|3733323 +false garlic|3733355 +false gavial|3733454 +false glottis|3733528 +false goatsbeard|3733604 +false gromwell|3733656 +false hair|3733702 +false heather|3733759 +false hellebore|3733835 +false imprisonment|3733887 +false indigo|3733939 +false labor|3734098 +false lily of the valley|3734197 +false lupine|3734315 +false mallow|3734391 +false mildew|3734447 +false mistletoe|3734489 +false miterwort|3734540 +false mitrewort|3734709 +false morel|3734878 +false name|3734906 +false nettle|3734950 +false oat|3735003 +false pimpernel|3735110 +false pregnancy|3735182 +false pretence|3735264 +false pretense|3735378 +false ragweed|3735492 +false return|3735567 +false rue|3735625 +false rue anemone|3735704 +false saber-toothed tiger|3735783 +false saffron|3735849 +false sago|3735925 +false sarsaparilla|3735997 +false scorpion|3736097 +false smut|3736155 +false statement|3736191 +false tamarisk|3736252 +false teeth|3736323 +false topaz|3736371 +false truffle|3736418 +false vampire|3736503 +false vampire bat|3736572 +false verdict|3736641 +false vocal cord|3736688 +false vocal fold|3736831 +false wintergreen|3736974 +false witness|3737067 +falsehood|3737117 +falsely|3737218 +falseness|3737246 +falsetto|3737397 +falsie|3737475 +falsifiable|3737510 +falsification|3737572 +falsifier|3737804 +falsify|3737873 +falsifying|3738096 +falsity|3738172 +falstaff|3738270 +falstaffian|3738366 +falter|3738449 +faltering|3738651 +falteringly|3738716 +falun gong|3738759 +fame|3738810 +famed|3738887 +familial|3738971 +familial hypercholesterolemia|3739119 +familiar|3739235 +familiar spirit|3739571 +familiar with|3739631 +familiarisation|3739690 +familiarise|3739742 +familiarised|3739791 +familiarising|3739855 +familiarity|3739914 +familiarization|3740140 +familiarize|3740192 +familiarized|3740241 +familiarizing|3740305 +family|3740364 +family acanthaceae|3740914 +family acanthisittidae|3741010 +family acanthuridae|3741120 +family acaridae|3741194 +family accipitridae|3741261 +family aceraceae|3741335 +family acipenseridae|3741434 +family acrididae|3741511 +family actinidiaceae|3741610 +family actinomycetaceae|3741698 +family adelgidae|3741788 +family adiantaceae|3741858 +family aegypiidae|3741929 +family aepyornidae|3741993 +family agamidae|3742064 +family agaricaceae|3742129 +family agavaceae|3742202 +family agonidae|3742303 +family ailuropodidae|3742365 +family aizoaceae|3742444 +family akeridae|3742579 +family alaudidae|3742644 +family albuginaceae|3742709 +family albulidae|3742785 +family alcedinidae|3742850 +family alcidae|3742921 +family aleyrodidae|3742980 +family alismataceae|3743056 +family alliaceae|3743172 +family alligatoridae|3743247 +family allioniaceae|3743327 +family aloeaceae|3743471 +family alopiidae|3743558 +family alstroemeriaceae|3743623 +family amaranthaceae|3743719 +family amaryllidaceae|3743827 +family ambrosiaceae|3743934 +family ambystomatidae|3744017 +family ameiuridae|3744102 +family amiidae|3744170 +family ammodytidae|3744229 +family amphioxidae|3744300 +family amphisbaenidae|3744416 +family amphiumidae|3744499 +family amygdalaceae|3744575 +family anabantidae|3744670 +family anacardiaceae|3744741 +family anarhichadidae|3744852 +family anatidae|3744932 +family ancylidae|3744994 +family ancylostomatidae|3745062 +family andrenidae|3745148 +family anguidae|3745221 +family anguillidae|3745286 +family anhimidae|3745357 +family anhingidae|3745422 +family anniellidae|3745490 +family annonaceae|3745564 +family anobiidae|3745664 +family anomalopidae|3745734 +family anomiidae|3745808 +family antedonidae|3745876 +family antennariidae|3745953 +family anthocerotaceae|3746030 +family antilocapridae|3746113 +family aphididae|3746195 +family aphyllanthaceae|3746265 +family apiaceae|3746358 +family apidae|3746474 +family aplodontiidae|3746535 +family aplysiidae|3746614 +family apocynaceae|3746712 +family apodidae|3746819 +family apogonidae|3746881 +family apterygidae|3746949 +family aquifoliaceae|3747020 +family araceae|3747131 +family araliaceae|3747222 +family araucariaceae|3747308 +family arcellidae|3747408 +family arcidae|3747482 +family arctiidae|3747544 +family ardeidae|3747614 +family arecaceae|3747676 +family argasidae|3747821 +family argentinidae|3747891 +family argiopidae|3747965 +family argonautidae|3748038 +family ariidae|3748115 +family aristolochiaceae|3748174 +family armadillidiidae|3748298 +family artamidae|3748386 +family ascaphidae|3748451 +family ascaridae|3748524 +family asclepiadaceae|3748589 +family asilidae|3748706 +family asparagaceae|3748773 +family aspergillaceae|3748857 +family asphodelaceae|3748939 +family aspleniaceae|3749026 +family astacidae|3749100 +family asteraceae|3749179 +family atherinidae|3749298 +family athiorhodaceae|3749369 +family athyriaceae|3749453 +family atrichornithidae|3749563 +family atropidae|3749649 +family aulostomidae|3749719 +family auriculariaceae|3749793 +family avicenniaceae|3749878 +family azollaceae|3749964 +family babesiidae|3750032 +family bacillaceae|3750106 +family bacteroidaceae|3750181 +family balaenicipitidae|3750265 +family balaenidae|3750351 +family balaenopteridae|3750421 +family balanidae|3750506 +family balistidae|3750576 +family balsaminaceae|3750644 +family bangiaceae|3750742 +family bathyergidae|3750816 +family batidaceae|3750892 +family batrachoididae|3750991 +family begoniaceae|3751071 +family belemnitidae|3751168 +family belonidae|3751245 +family belostomatidae|3751310 +family bennettitaceae|3751395 +family berberidaceae|3751481 +family betulaceae|3751585 +family bible|3751677 +family bignoniaceae|3751801 +family bittacidae|3751884 +family blastodiaceae|3751947 +family blattidae|3752026 +family blechnaceae|3752096 +family blenniidae|3752167 +family boidae|3752235 +family boletaceae|3752294 +family bombacaceae|3752364 +family bombycidae|3752446 +family bombycillidae|3752519 +family bombyliidae|3752596 +family boraginaceae|3752672 +family bothidae|3752761 +family bovidae|3752823 +family bradypodidae|3752884 +family bramidae|3752960 +family branchiobdellidae|3753022 +family branchiostegidae|3753111 +family branchiostomidae|3753197 +family brassicaceae|3753318 +family brevicipitidae|3753447 +family bromeliaceae|3753565 +family brotulidae|3753676 +family bruchidae|3753744 +family bryaceae|3753814 +family buccinidae|3753876 +family bucconidae|3753947 +family bucerotidae|3754015 +family bufonidae|3754086 +family burhinidae|3754156 +family burmanniaceae|3754224 +family burseraceae|3754321 +family business|3754416 +family buxaceae|3754525 +family cactaceae|3754619 +family caeciliadae|3754713 +family caeciliidae|3754820 +family caenolestidae|3754927 +family caesalpiniaceae|3755006 +family callionymidae|3755096 +family calliphoridae|3755173 +family callithricidae|3755255 +family callitrichaceae|3755337 +family calostomataceae|3755427 +family calycanthaceae|3755512 +family camelidae|3755646 +family campanulaceae|3755713 +family cancridae|3755809 +family canellaceae|3755879 +family canidae|3755976 +family cannabidaceae|3756037 +family cannaceae|3756147 +family capitonidae|3756232 +family capparidaceae|3756303 +family caprifoliaceae|3756404 +family caprimulgidae|3756512 +family caproidae|3756589 +family capromyidae|3756654 +family capsidae|3756727 +family carabidae|3756817 +family carangidae|3756887 +family carapidae|3756955 +family carcharhinidae|3757020 +family carchariidae|3757100 +family cardiidae|3757211 +family cariamidae|3757279 +family caricaceae|3757347 +family carpinaceae|3757440 +family caryocaraceae|3757544 +family caryophyllaceae|3757632 +family castoridae|3757759 +family casuaridae|3757829 +family casuarinaceae|3757897 +family cathartidae|3757995 +family catostomidae|3758066 +family caviidae|3758140 +family cebidae|3758204 +family cecidomyidae|3758265 +family cecropiaceae|3758344 +family celastraceae|3758439 +family centrarchidae|3758572 +family centriscidae|3758649 +family centropomidae|3758723 +family cephalobidae|3758800 +family cephalotaceae|3758874 +family cephalotaxaceae|3758958 +family cerambycidae|3759063 +family ceratodontidae|3759142 +family ceratophyllaceae|3759222 +family ceratopogonidae|3759319 +family ceratopsidae|3759407 +family ceratostomataceae|3759484 +family cercidiphyllaceae|3759575 +family cercopidae|3759675 +family cercopithecidae|3759748 +family certhiidae|3759833 +family cervidae|3759901 +family cestidae|3759965 +family cetorhinidae|3760033 +family chaetodontidae|3760107 +family chalcidae|3760187 +family chalcididae|3760288 +family chamaeleonidae|3760391 +family chamaeleontidae|3760546 +family characeae|3760702 +family characidae|3760773 +family characinidae|3760841 +family charadriidae|3760915 +family chelonidae|3760989 +family cheloniidae|3761091 +family chelydridae|3761194 +family chenopodiaceae|3761268 +family chermidae|3761380 +family chimaeridae|3761477 +family chinchillidae|3761548 +family chironomidae|3761627 +family chlamydiaceae|3761706 +family chlamydomonadaceae|3761787 +family chloranthaceae|3761885 +family chlorophthalmidae|3761986 +family chrysochloridae|3762075 +family chrysomelidae|3762160 +family chrysopidae|3762242 +family chytridiaceae|3762318 +family cicadellidae|3762397 +family cicadidae|3762476 +family cichlidae|3762546 +family cicindelidae|3762611 +family ciconiidae|3762690 +family cimicidae|3762758 +family cinclidae|3762828 +family circle|3762893 +family cistaceae|3762965 +family cladoniaceae|3763057 +family clathraceae|3763133 +family clavariaceae|3763206 +family cleridae|3763282 +family clethraceae|3763349 +family clinidae|3763450 +family clupeidae|3763512 +family clusiaceae|3763577 +family cobitidae|3763707 +family coccidae|3763772 +family coccinellidae|3763839 +family coerebidae|3763921 +family colchicaceae|3764014 +family colubridae|3764098 +family columbidae|3764169 +family comatulidae|3764237 +family combretaceae|3764327 +family commelinaceae|3764439 +family compositae|3764554 +family congridae|3764673 +family connaraceae|3764738 +family convallariaceae|3764833 +family convolvulaceae|3764926 +family coprinaceae|3765048 +family coraciidae|3765121 +family cordaitaceae|3765189 +family cordylidae|3765269 +family coregonidae|3765339 +family coreidae|3765410 +family corixidae|3765477 +family cornaceae|3765547 +family cortinariaceae|3765634 +family corvidae|3765716 +family corydalidae|3765778 +family corylaceae|3765854 +family corynebacteriaceae|3765954 +family coryphaenidae|3766050 +family cotingidae|3766127 +family cottidae|3766195 +family court|3766257 +family cracidae|3766358 +family cracticidae|3766420 +family crangonidae|3766491 +family crassulaceae|3766567 +family cricetidae|3766659 +family crocodylidae|3766729 +family crotalidae|3766806 +family cruciferae|3766877 +family cryptobranchidae|3767004 +family cryptocercidae|3767095 +family cryptogrammataceae|3767180 +family ctenizidae|3767272 +family cuculidae|3767345 +family cucurbitaceae|3767410 +family culicidae|3767521 +family cunoniaceae|3767591 +family cupressaceae|3767684 +family curculionidae|3767779 +family cuterebridae|3767861 +family cyatheaceae|3767940 +family cycadaceae|3768011 +family cyclopteridae|3768098 +family cymatiidae|3768175 +family cynipidae|3768246 +family cynocephalidae|3768316 +family cynoglossidae|3768398 +family cyperaceae|3768475 +family cypraeidae|3768576 +family cyprinidae|3768647 +family cyprinodontidae|3768715 +family cyrilliaceae|3768798 +family dacninae|3768925 +family dacrymycetaceae|3769016 +family dactylopiidae|3769101 +family dactylopteridae|3769183 +family dactyloscopidae|3769266 +family danaidae|3769349 +family dasyatidae|3769416 +family dasypodidae|3769484 +family dasyproctidae|3769557 +family dasyuridae|3769636 +family dasyurinae|3769724 +family daubentoniidae|3769812 +family davalliaceae|3769925 +family delphinidae|3769999 +family dematiaceae|3770072 +family dendrocolaptidae|3770145 +family dennstaedtiaceae|3770231 +family dermestidae|3770317 +family dermochelyidae|3770393 +family desmidiaceae|3770476 +family desmodontidae|3770556 +family diapensiaceae|3770635 +family diaspididae|3770740 +family dicamptodontidae|3770816 +family dicksoniaceae|3770907 +family dicranaceae|3770984 +family didelphidae|3771055 +family dilleniaceae|3771128 +family dinornithidae|3771213 +family diodontidae|3771290 +family diomedeidae|3771361 +family dioscoreaceae|3771432 +family dipodidae|3771521 +family dipsacaceae|3771588 +family dipterocarpaceae|3771668 +family discoglossidae|3771765 +family doctor|3771850 +family doliolidae|3771897 +family dracunculidae|3771969 +family drepanididae|3772046 +family dromaeosauridae|3772120 +family droseraceae|3772206 +family drosophilidae|3772312 +family dryopteridaceae|3772394 +family dugongidae|3772508 +family dytiscidae|3772578 +family ebenaceae|3772651 +family echeneidae|3772750 +family echeneididae|3772840 +family edaphosauridae|3772932 +family eimeriidae|3773015 +family elaeagnaceae|3773089 +family elaeocarpaceae|3773200 +family elapidae|3773310 +family elateridae|3773375 +family electrophoridae|3773448 +family eleotridae|3773531 +family elephantidae|3773599 +family elopidae|3773675 +family embiotocidae|3773737 +family empetraceae|3773811 +family emydidae|3773920 +family endamoebidae|3773985 +family engraulidae|3774054 +family enterobacteriaceae|3774125 +family entolomataceae|3774221 +family entomophthoraceae|3774303 +family epacridaceae|3774394 +family ephedraceae|3774494 +family ephemeridae|3774571 +family ephippidae|3774647 +family equidae|3774715 +family equisetaceae|3774776 +family erethizontidae|3774867 +family ericaceae|3774949 +family erinaceidae|3775062 +family eriocaulaceae|3775135 +family erysiphaceae|3775248 +family erythroxylaceae|3775324 +family eschrichtiidae|3775408 +family esocidae|3775490 +family euglenaceae|3775552 +family euphorbiaceae|3775629 +family eurylaimidae|3775727 +family exocoetidae|3775801 +family fabaceae|3775872 +family fagaceae|3775997 +family falconidae|3776083 +family fasciolidae|3776151 +family felidae|3776222 +family filariidae|3776283 +family fissurellidae|3776351 +family fistulariidae|3776431 +family fistulinaceae|3776508 +family flacourtiaceae|3776587 +family forficulidae|3776696 +family formicariidae|3776775 +family formicidae|3776852 +family fouquieriaceae|3776925 +family fregatidae|3777016 +family fringillidae|3777084 +family fucaceae|3777158 +family fulgoridae|3777226 +family fumariaceae|3777299 +family funkaceae|3777397 +family furnariidae|3777499 +family gadidae|3777570 +family galbulidae|3777629 +family gasterophilidae|3777697 +family gasterosteidae|3777785 +family gavialidae|3777865 +family gavidae|3777936 +family geastraceae|3777995 +family gekkonidae|3778068 +family gelechiidae|3778139 +family gempylidae|3778215 +family gentianaceae|3778283 +family geoglossaceae|3778393 +family geometridae|3778472 +family geomyidae|3778548 +family geophilidae|3778615 +family geraniaceae|3778691 +family gerreidae|3778785 +family gerridae|3778875 +family gerrididae|3779042 +family gesneriaceae|3779140 +family gigartinaceae|3779239 +family ginkgoaceae|3779322 +family giraffidae|3779413 +family glareolidae|3779483 +family gleicheniaceae|3779554 +family gliridae|3779634 +family globigerinidae|3779698 +family glossinidae|3779784 +family gnetaceae|3779860 +family gobiesocidae|3779931 +family gobiidae|3780005 +family gomphotheriidae|3780067 +family gonorhynchidae|3780152 +family goodeniaceae|3780232 +family gracilariidae|3780343 +family graminaceae|3780440 +family gramineae|3780594 +family grossulariaceae|3780746 +family gruidae|3780848 +family gryllidae|3780907 +family guttiferae|3780977 +family gyrinidae|3781107 +family hadrosauridae|3781177 +family haematopodidae|3781257 +family haemodoraceae|3781337 +family haemoproteidae|3781451 +family haemulidae|3781537 +family halictidae|3781605 +family haliotidae|3781678 +family haloragaceae|3781749 +family haloragidaceae|3781902 +family hamamelidaceae|3782057 +family helicidae|3782167 +family helodermatidae|3782235 +family helotiaceae|3782318 +family helvellaceae|3782391 +family hemerobiidae|3782467 +family hemerocallidaceae|3782546 +family hemiprocnidae|3782645 +family hemiramphidae|3782722 +family heteromyidae|3782799 +family hexagrammidae|3782875 +family hexanchidae|3782952 +family hippoboscidae|3783023 +family hippocastanaceae|3783105 +family hippopotamidae|3783234 +family hipposideridae|3783316 +family hirudinidae|3783398 +family hirundinidae|3783469 +family history|3783543 +family holocentridae|3783580 +family holothuridae|3783657 +family homaridae|3783737 +family hominidae|3783807 +family hostaceae|3783874 +family hyacinthaceae|3783976 +family hyaenidae|3784063 +family hydnaceae|3784130 +family hydnoraceae|3784197 +family hydrangeaceae|3784289 +family hydrobatidae|3784390 +family hydrocharidaceae|3784464 +family hydrocharitaceae|3784644 +family hydrochoeridae|3784824 +family hydrophidae|3784906 +family hydrophyllaceae|3784980 +family hygrophoraceae|3785089 +family hylidae|3785171 +family hylobatidae|3785235 +family hymenophyllaceae|3785308 +family hypericaceae|3785394 +family hyperodontidae|3785479 +family hypocreaceae|3785588 +family hypodermatidae|3785664 +family hypoxidaceae|3785776 +family hystricidae|3785860 +family ibidiidae|3785933 +family ichneumonidae|3786031 +family ichthyosauridae|3786113 +family icteridae|3786199 +family iguania|3786264 +family iguanidae|3786353 +family iguanodontidae|3786444 +family indicatoridae|3786527 +family indriidae|3786604 +family ipidae|3786671 +family irenidae|3786761 +family iridaceae|3786823 +family isoetaceae|3786910 +family istiophoridae|3786995 +family isuridae|3787072 +family ixodidae|3787134 +family jassidae|3787201 +family jewels|3787268 +family juglandaceae|3787402 +family juncaceae|3787511 +family juncaginaceae|3787608 +family jungermanniaceae|3787765 +family kalotermitidae|3787851 +family kasuwonidae|3787936 +family kinosternidae|3788008 +family kyphosidae|3788088 +family labiatae|3788156 +family labridae|3788266 +family lacertidae|3788328 +family lactobacillaceae|3788399 +family lactobacteriaceae|3788532 +family lamiaceae|3788666 +family laminariaceae|3788777 +family lamnidae|3788860 +family lampridae|3788922 +family lampyridae|3788987 +family laniidae|3789060 +family lanthanotidae|3789122 +family lardizabalaceae|3789202 +family laricariidae|3789315 +family laridae|3789389 +family lasiocampidae|3789448 +family latimeridae|3789530 +family lauraceae|3789601 +family lecanoraceae|3789691 +family lecythidaceae|3789767 +family leguminosae|3789865 +family leiopelmatidae|3789993 +family leitneriaceae|3790109 +family lemnaceae|3790223 +family lemuridae|3790324 +family lennoaceae|3790391 +family lentibulariaceae|3790470 +family lepadidae|3790576 +family lepidobotryaceae|3790646 +family lepidodendraceae|3790739 +family lepiotaceae|3790825 +family lepismatidae|3790898 +family lepisosteidae|3790977 +family leporidae|3791054 +family leptodactylidae|3791121 +family leptotyphlopidae|3791209 +family liliaceae|3791298 +family limacidae|3791385 +family limulidae|3791453 +family linaceae|3791523 +family line|3791618 +family liopelmidae|3791793 +family liparidae|3791906 +family liparididae|3792002 +family lithodidae|3792100 +family littorinidae|3792173 +family loasaceae|3792250 +family lobeliaceae|3792339 +family lobotidae|3792446 +family locustidae|3792511 +family loganiaceae|3792611 +family lomariopsidaceae|3792703 +family lophiidae|3792789 +family lophosoriaceae|3792854 +family loranthaceae|3792934 +family lorisidae|3793052 +family loxomataceae|3793119 +family lucanidae|3793193 +family lutjanidae|3793263 +family luvaridae|3793331 +family lycaenidae|3793396 +family lycoperdaceae|3793469 +family lycopodiaceae|3793548 +family lycosidae|3793641 +family lygaeidae|3793711 +family lymantriidae|3793781 +family lythraceae|3793860 +family machilidae|3793968 +family macropodidae|3794041 +family macrorhamphosidae|3794117 +family macrouridae|3794206 +family macruridae|3794306 +family magnoliaceae|3794405 +family majidae|3794506 +family malacanthidae|3794570 +family malpighiaceae|3794647 +family malvaceae|3794731 +family mammutidae|3794821 +family man|3794912 +family manidae|3794958 +family manteidae|3795019 +family mantidae|3795114 +family mantispidae|3795208 +family marantaceae|3795284 +family marattiaceae|3795392 +family marchantiaceae|3795466 +family marsileaceae|3795546 +family martyniaceae|3795620 +family mastodontidae|3795695 +family mastotermitidae|3795789 +family mayacaceae|3795877 +family medicine|3795965 +family megachilidae|3796023 +family megadermatidae|3796102 +family megalonychidae|3796184 +family megalosauridae|3796266 +family megapodiidae|3796349 +family megatheriidae|3796423 +family melampsoraceae|3796502 +family melanthiaceae|3796584 +family melastomaceae|3796671 +family melastomataceae|3796815 +family meleagrididae|3796961 +family meliaceae|3797038 +family meliphagidae|3797126 +family meloidae|3797200 +family membracidae|3797267 +family menispermaceae|3797343 +family menuridae|3797450 +family menyanthaceae|3797515 +family meropidae|3797629 +family micrococcaceae|3797694 +family microdesmidae|3797778 +family microhylidae|3797855 +family mimidae|3797971 +family mimosaceae|3798030 +family miridae|3798105 +family mniaceae|3798194 +family mobulidae|3798256 +family molidae|3798321 +family molossidae|3798380 +family momotidae|3798450 +family moniliaceae|3798515 +family monocanthidae|3798588 +family monodontidae|3798665 +family monotropaceae|3798741 +family moraceae|3798829 +family morchellaceae|3798928 +family motacillidae|3799007 +family mucoraceae|3799081 +family mugilidae|3799151 +family mullidae|3799216 +family muraenidae|3799278 +family muridae|3799346 +family musaceae|3799407 +family muscicapidae|3799503 +family muscidae|3799577 +family musophagidae|3799644 +family mustelidae|3799718 +family mutillidae|3799788 +family myacidae|3799902 +family mycetophylidae|3799967 +family mycobacteriaceae|3800052 +family mycoplasmataceae|3800142 +family myctophidae|3800232 +family myliobatidae|3800303 +family mylodontidae|3800377 +family myricaceae|3800453 +family myristicaceae|3800560 +family myrmecophagidae|3800662 +family myrmeleontidae|3800747 +family myrsinaceae|3800832 +family myrtaceae|3800939 +family mysidae|3801039 +family mytilidae|3801103 +family myxinidae|3801171 +family myxobacteriaceae|3801236 +family myxophyceae|3801361 +family naiadaceae|3801471 +family najadaceae|3801601 +family name|3801731 +family naticidae|3801784 +family nautilidae|3801852 +family nepenthaceae|3801923 +family nephropsidae|3802018 +family nepidae|3802097 +family neritidae|3802161 +family nidulariaceae|3802229 +family nitrobacteriaceae|3802308 +family noctuidae|3802400 +family nostocaceae|3802470 +family notonectidae|3802545 +family notoryctidae|3802624 +family nummulitidae|3802700 +family nyctaginaceae|3802780 +family nymphaeaceae|3802925 +family nymphalidae|3803028 +family nyssaceae|3803104 +family ochnaceae|3803220 +family ochotonidae|3803309 +family octopodidae|3803382 +family odobenidae|3803456 +family odontaspididae|3803526 +family oedogoniaceae|3803639 +family oestridae|3803722 +family ogcocephalidae|3803829 +family oleaceae|3803909 +family oleandraceae|3804005 +family onagraceae|3804079 +family oniscidae|3804178 +family ophidiidae|3804248 +family ophiodontidae|3804316 +family ophioglossaceae|3804393 +family opisthocomidae|3804476 +family opisthognathidae|3804556 +family orchestiidae|3804642 +family orchidaceae|3804721 +family orectolobidae|3804826 +family oriolidae|3804903 +family ornithorhynchidae|3804968 +family orobanchaceae|3805059 +family orycteropodidae|3805174 +family oscillatoriaceae|3805259 +family osmeridae|3805349 +family osmundaceae|3805414 +family ostraciidae|3805485 +family ostraciontidae|3805578 +family ostreidae|3805674 +family otariidae|3805742 +family otididae|3805809 +family oxalidaceae|3805871 +family oxyuridae|3805968 +family paeoniaceae|3806033 +family paguridae|3806128 +family palaemonidae|3806198 +family palinuridae|3806277 +family palmaceae|3806353 +family palmae|3806498 +family pandanaceae|3806640 +family pandionidae|3806749 +family panorpidae|3806820 +family papaveraceae|3806883 +family papilionacea|3806981 +family paradisaeidae|3807063 +family paridae|3807140 +family parkeriaceae|3807199 +family parmeliaceae|3807273 +family parulidae|3807349 +family passeridae|3807414 +family passifloraceae|3807482 +family patellidae|3807594 +family pectinidae|3807665 +family pedaliaceae|3807736 +family pediculidae|3807822 +family pelecanidae|3807898 +family pelecanoididae|3807969 +family pelobatidae|3808049 +family pempheridae|3808125 +family peneidae|3808196 +family pennatulidae|3808263 +family peramelidae|3808345 +family percidae|3808418 +family percophidae|3808480 +family peridiniidae|3808551 +family peripatidae|3808631 +family peripatopsidae|3808707 +family peronosporaceae|3808792 +family pertusariaceae|3808877 +family petromyzontidae|3808959 +family pezizaceae|3809042 +family phaethontidae|3809112 +family phalacrocoracidae|3809189 +family phalangeridae|3809278 +family phalangiidae|3809357 +family phalaropidae|3809436 +family phallaceae|3809510 +family phasianidae|3809580 +family phasmatidae|3809651 +family phasmidae|3809754 +family phillidae|3809855 +family phocidae|3809952 +family phoenicopteridae|3810016 +family phoeniculidae|3810102 +family pholadidae|3810179 +family pholidae|3810250 +family pholididae|3810330 +family phthiriidae|3810412 +family phyllidae|3810488 +family phyllocladaceae|3810585 +family phyllostomatidae|3810674 +family phyllostomidae|3810799 +family phylloxeridae|3810922 +family physeteridae|3811004 +family physidae|3811080 +family phytolaccaceae|3811145 +family picidae|3811256 +family pieridae|3811315 +family pinaceae|3811382 +family pinnotheridae|3811462 +family piperaceae|3811544 +family pipidae|3811647 +family pipridae|3811711 +family pittidae|3811773 +family planning|3811835 +family plantaginaceae|3811900 +family plasmodiidae|3812017 +family plasmodiophoraceae|3812097 +family plataleidae|3812191 +family platanaceae|3812262 +family platanistidae|3812358 +family platycephalidae|3812437 +family plethodontidae|3812520 +family pleurobrachiidae|3812605 +family pleuronectidae|3812697 +family ploceidae|3812777 +family plumbaginaceae|3812842 +family pluteaceae|3812979 +family poaceae|3813049 +family podargidae|3813199 +family podicipedidae|3813267 +family podocarpaceae|3813344 +family poeciliidae|3813445 +family polemoniaceae|3813516 +family polyangiaceae|3813615 +family polygalaceae|3813737 +family polygonaceae|3813834 +family polynemidae|3813946 +family polyodontidae|3814017 +family polypedatidae|3814094 +family polypodiaceae|3814176 +family polyporaceae|3814253 +family pomacentridae|3814329 +family pomatomidae|3814406 +family pongidae|3814477 +family pontederiaceae|3814541 +family porcellionidae|3814661 +family portulacaceae|3814746 +family portunidae|3814854 +family potamogalidae|3814927 +family potamogetonaceae|3815006 +family practice|3815128 +family priacanthidae|3815186 +family primulaceae|3815263 +family pristidae|3815371 +family procaviidae|3815436 +family procellariidae|3815509 +family procyonidae|3815589 +family proteaceae|3815662 +family proteidae|3815765 +family prunellidae|3815834 +family pseudococcidae|3815905 +family pseudomonodaceae|3815990 +family psilophytaceae|3816080 +family psilotaceae|3816160 +family psittacidae|3816231 +family psocidae|3816302 +family psophiidae|3816369 +family psychodidae|3816437 +family psyllidae|3816513 +family pteridaceae|3816610 +family pteriidae|3816681 +family pteroclididae|3816749 +family pterodactylidae|3816826 +family ptilonorhynchidae|3816912 +family pucciniaceae|3817001 +family pulicidae|3817077 +family punicaceae|3817147 +family pygopodidae|3817236 +family pyralidae|3817310 +family pyralididae|3817411 +family pyrolaceae|3817514 +family pyrrhocoridae|3817612 +family pythiaceae|3817694 +family pythonidae|3817764 +family rachycentridae|3817835 +family rafflesiaceae|3817915 +family rajidae|3818013 +family rallidae|3818072 +family ramphastidae|3818134 +family ranidae|3818208 +family ranunculaceae|3818272 +family rapateaceae|3818393 +family raphidae|3818484 +family raphidiidae|3818546 +family recurvirostridae|3818622 +family reduviidae|3818708 +family regalecidae|3818781 +family relationship|3818852 +family resedaceae|3818911 +family rhamnaceae|3819008 +family rheidae|3819114 +family rhincodontidae|3819173 +family rhinobatidae|3819253 +family rhinocerotidae|3819327 +family rhinolophidae|3819427 +family rhinotermitidae|3819506 +family rhiptoglossa|3819594 +family rhizobiaceae|3819747 +family rhizophoraceae|3819825 +family rhizopogonaceae|3819942 +family rhodymeniaceae|3820027 +family rhyniaceae|3820113 +family rickettsiaceae|3820181 +family roccellaceae|3820265 +family room|3820341 +family roridulaceae|3820387 +family rosaceae|3820482 +family rubiaceae|3820563 +family ruscaceae|3820651 +family russulaceae|3820726 +family rutaceae|3820799 +family rynchopidae|3820879 +family saccharomycetaceae|3820950 +family sagittariidae|3821044 +family salamandridae|3821121 +family salicaceae|3821203 +family salmonidae|3821296 +family salpidae|3821364 +family salvadoraceae|3821430 +family salviniaceae|3821545 +family santalaceae|3821619 +family sapindaceae|3821719 +family sapotaceae|3821828 +family sarcoptidae|3821934 +family sarcoscyphaceae|3822010 +family sarraceniaceae|3822095 +family saturniidae|3822217 +family satyridae|3822293 +family saururaceae|3822363 +family saxifragaceae|3822476 +family scarabaeidae|3822577 +family scaridae|3822656 +family scheuchzeriaceae|3822718 +family schistosomatidae|3822878 +family schizaeaceae|3822964 +family schizophyceae|3823038 +family schizosaccharomycetaceae|3823150 +family sciadopityaceae|3823262 +family sciaenidae|3823351 +family sciaridae|3823419 +family scincidae|3823489 +family sciuridae|3823557 +family sclerodermataceae|3823624 +family sclerotiniaceae|3823715 +family scolopacidae|3823800 +family scolytidae|3823874 +family scomberesocidae|3823968 +family scombresocidae|3824088 +family scombridae|3824207 +family scorpaenidae|3824275 +family scrophulariaceae|3824349 +family scutigeridae|3824475 +family scyliorhinidae|3824554 +family secotiaceae|3824634 +family selaginellaceae|3824707 +family sepiidae|3824790 +family septobasidiaceae|3824855 +family serranidae|3824943 +family sialidae|3825011 +family sillaginidae|3825078 +family siluridae|3825152 +family simaroubaceae|3825217 +family simuliidae|3825316 +family sirenidae|3825389 +family sisyridae|3825459 +family sittidae|3825529 +family solanaceae|3825591 +family soleidae|3825682 +family solenidae|3825744 +family soricidae|3825812 +family spalacidae|3825879 +family sparganiaceae|3825949 +family sparidae|3826062 +family sphaeriaceae|3826124 +family sphaerobolaceae|3826200 +family sphaerocarpaceae|3826285 +family sphecidae|3826371 +family spheniscidae|3826441 +family sphingidae|3826515 +family sphyraenidae|3826588 +family sphyrnidae|3826662 +family spirillaceae|3826730 +family spirochaetaceae|3826808 +family spirulidae|3826895 +family squalidae|3826966 +family squatinidae|3827031 +family squillidae|3827102 +family staphylaceae|3827175 +family staphylinidae|3827288 +family steatornithidae|3827370 +family stenopelmatidae|3827453 +family stercorariidae|3827541 +family sterculiaceae|3827621 +family stichaeidae|3827726 +family stizidae|3827797 +family strelitziaceae|3827864 +family streptomycetaceae|3827982 +family strigidae|3828075 +family stromateidae|3828140 +family strombidae|3828214 +family strophariaceae|3828285 +family struthionidae|3828367 +family sturnidae|3828444 +family styracaceae|3828509 +family suidae|3828629 +family sulidae|3828687 +family sylviidae|3828746 +family symplocaceae|3828811 +family synchytriaceae|3828923 +family syngnathidae|3829005 +family synodontidae|3829079 +family tabanidae|3829153 +family taccaceae|3829223 +family tachinidae|3829298 +family tachyglossidae|3829371 +family taeniidae|3829453 +family talpidae|3829518 +family tamaricaceae|3829582 +family tapiridae|3829683 +family tarsiidae|3829750 +family taxaceae|3829817 +family tayassuidae|3829896 +family tecophilaeacea|3829969 +family teiidae|3830059 +family tenebrionidae|3830121 +family tenrecidae|3830203 +family tenthredinidae|3830273 +family terebellidae|3830358 +family teredinidae|3830432 +family termitidae|3830506 +family testudinidae|3830579 +family tethyidae|3830656 +family tetragoniaceae|3830753 +family tetranychidae|3830893 +family tetraodontidae|3830975 +family tetraonidae|3831055 +family tettigoniidae|3831126 +family theaceae|3831208 +family thelephoraceae|3831292 +family thelypteridaceae|3831374 +family theophrastaceae|3831460 +family theraphosidae|3831564 +family therapy|3831646 +family theridiidae|3831704 +family thiobacteriaceae|3831780 +family thraupidae|3831870 +family threskiornithidae|3831938 +family thripidae|3832044 +family thymelaeaceae|3832114 +family tiliaceae|3832226 +family tilletiaceae|3832316 +family timaliidae|3832392 +family tinamidae|3832460 +family tineidae|3832525 +family tingidae|3832592 +family tipulidae|3832659 +family titanosauridae|3832729 +family todidae|3832812 +family torpedinidae|3832871 +family tortricidae|3832945 +family toxotidae|3833021 +family trachipteridae|3833086 +family tragulidae|3833166 +family trapaceae|3833236 +family tree|3833322 +family tremellaceae|3833400 +family trephritidae|3833476 +family treponemataceae|3833584 +family triakidae|3833671 +family tribonemaceae|3833736 +family trichechidae|3833819 +family trichiuridae|3833895 +family trichodontidae|3833969 +family tricholomataceae|3834049 +family tridacnidae|3834137 +family triglidae|3834211 +family trilliaceae|3834276 +family trionychidae|3834373 +family triopidae|3834450 +family trochilidae|3834520 +family troglodytidae|3834591 +family trogonidae|3834668 +family trombiculidae|3834736 +family trombidiidae|3834818 +family tropaeolaceae|3834897 +family trypetidae|3834999 +family tuberaceae|3835105 +family tuberculariaceae|3835175 +family tulostomaceae|3835263 +family tulostomataceae|3835381 +family tupaiidae|3835501 +family turdidae|3835568 +family turnicidae|3835630 +family tylenchidae|3835698 +family typhaceae|3835769 +family typhlopidae|3835869 +family tytonidae|3835943 +family uintatheriidae|3836008 +family ulmaceae|3836090 +family ulvaceae|3836184 +family umbelliferae|3836271 +family unionidae|3836391 +family unit|3836459 +family upupidae|3836534 +family uranoscopidae|3836596 +family ursidae|3836673 +family urticaceae|3836734 +family usneaceae|3836837 +family ustilaginaceae|3836904 +family valerianaceae|3836986 +family varanidae|3837088 +family veneridae|3837156 +family verbenaceae|3837224 +family vespertilionidae|3837334 +family vespidae|3837422 +family violaceae|3837489 +family viperidae|3837579 +family vireonidae|3837647 +family viscaceae|3837715 +family vitaceae|3837808 +family vittariaceae|3837919 +family viverridae|3837993 +family viverrinae|3838092 +family volvariaceae|3838191 +family volvocaceae|3838267 +family vombatidae|3838344 +family welwitschiaceae|3838414 +family winteraceae|3838503 +family xanthorrhoeaceae|3838606 +family xantusiidae|3838720 +family xenicidae|3838794 +family xenopodidae|3838898 +family xenosauridae|3838974 +family xiphiidae|3839051 +family xylariaceae|3839116 +family xyridaceae|3839189 +family zamiaceae|3839302 +family zannichelliaceae|3839386 +family zapodidae|3839492 +family zeidae|3839559 +family zingiberaceae|3839615 +family ziphiidae|3839726 +family zoarcidae|3839830 +family zosteraceae|3839895 +family zygnemataceae|3840002 +family zygophyllaceae|3840085 +famine|3840190 +famish|3840298 +famished|3840425 +famishment|3840486 +famotidine|3840535 +famous|3840580 +famous person|3840664 +famously|3840743 +famulus|3840785 +fan|3840828 +fan belt|3841043 +fan blade|3841066 +fan dance|3841096 +fan fern|3841128 +fan letter|3841209 +fan mail|3841244 +fan out|3841272 +fan palm|3841333 +fan tracery|3841366 +fan vaulting|3841395 +fanaloka|3841426 +fanatic|3841472 +fanatical|3841570 +fanaticism|3841626 +fancied|3841667 +fancied up|3841740 +fancier|3841809 +fanciful|3841852 +fancifully|3841955 +fanconi's anaemia|3841986 +fanconi's anemia|3842251 +fancy|3842515 +fancy dress|3843287 +fancy goods|3843355 +fancy man|3843404 +fancy up|3843507 +fancy woman|3843665 +fancy-dress ball|3843173 +fancy-free|3843255 +fancywork|3843871 +fandango|3843924 +fandom|3843957 +fanfare|3843993 +fang|3844109 +fanged|3844226 +fanion|3844247 +fanlight|3844268 +fanlike|3844353 +fanned|3844381 +fannie farmer|3844420 +fannie mae|3844491 +fannie merritt farmer|3844582 +fanny|3844661 +fanny adams|3844996 +fanny pack|3845188 +fanny wright|3845238 +fantabulous|3845350 +fantail|3845402 +fantan|3845428 +fantasia|3845514 +fantasise|3845590 +fantasist|3845708 +fantasize|3845735 +fantast|3845853 +fantastic|3845906 +fantastical|3846144 +fantastically|3846231 +fantasy|3846264 +fantasy life|3846394 +fantasy world|3846447 +fantods|3846512 +fanweed|3846544 +fanwort|3846658 +fao|3846719 +faq|3846858 +faqir|3846888 +faquir|3847012 +far|3847136 +far and away|3847882 +far and near|3847923 +far and wide|3847957 +far cry|3847991 +far east|3848056 +far left|3848090 +far-famed|3847547 +far-flung|3847631 +far-off|3847688 +far-out|3847717 +far-reaching|3847778 +far-right|3847833 +farad|3848113 +faraday|3848147 +farandole|3848206 +faraway|3848249 +farawayness|3848293 +farc|3848342 +farce|3848518 +farce comedy|3848597 +farcical|3848641 +fardel|3848699 +fare|3848756 +fare increase|3849019 +fare-stage|3848927 +fare-thee-well|3848957 +farewell|3849061 +farfetched|3849196 +fargo|3849237 +farina|3849287 +farinaceous|3849308 +farkleberry|3849451 +farley maidenhair|3849529 +farley maidenhair fern|3849716 +farm|3849908 +farm animal|3850151 +farm bill|3850242 +farm boy|3850274 +farm building|3850307 +farm cheese|3850347 +farm club|3850417 +farm credit system|3850482 +farm girl|3850565 +farm horse|3850614 +farm machine|3850651 +farm out|3850681 +farm team|3850769 +farm worker|3850834 +farm-place|3850025 +farmer|3850911 +farmer's calendar|3851116 +farmer's cheese|3851167 +farmer's lung|3851237 +farmer's market|3851287 +farmer-labor party|3851388 +farmerette|3851457 +farmhand|3851519 +farmhouse|3851596 +farming|3851621 +farming area|3851761 +farmington|3851811 +farmland|3851870 +farmplace|3852006 +farmstead|3852051 +farmyard|3852108 +farness|3852131 +faro|3852180 +faroe islands|3852210 +faroes|3852346 +faroese|3852475 +farouk i|3852596 +farrago|3852649 +farragut|3852865 +farrell|3852929 +farrier|3853027 +farrow|3853066 +farrowing|3853150 +farseeing|3853216 +farsi|3853363 +farsighted|3853452 +farsightedness|3853644 +fart|3853731 +farther|3853929 +farthermost|3854047 +farthest|3854119 +farthing|3854237 +farthingale|3854260 +farting|3854286 +fartlek|3854432 +faruk i|3854467 +fasces|3854519 +fascia|3854551 +fascicle|3854591 +fasciculation|3854714 +fascicule|3854766 +fasciculus|3854817 +fascinate|3854900 +fascinated|3855102 +fascinating|3855216 +fascination|3855363 +fasciola|3855505 +fasciola hepatica|3855558 +fascioliasis|3855646 +fasciolidae|3855692 +fasciolopsiasis|3855756 +fasciolopsis|3855793 +fasciolopsis buski|3855858 +fasciolosis|3855936 +fascism|3855982 +fascist|3856047 +fascistic|3856150 +fashion|3856224 +fashion arbiter|3856339 +fashion business|3856406 +fashion consultant|3856502 +fashion designer|3856571 +fashion industry|3856641 +fashion model|3856737 +fashion plate|3856833 +fashionable|3856937 +fashioned|3857357 +fashioning|3857397 +fashionmonger|3857444 +fashions|3857513 +fast|3857657 +fast asleep|3858596 +fast break|3858637 +fast buck|3858663 +fast day|3858749 +fast dye|3858794 +fast food|3858816 +fast lane|3858908 +fast of ab|3858993 +fast of av|3859121 +fast one|3859249 +fast reactor|3859294 +fast time scale|3859340 +fast track|3859376 +fast-breaking|3858466 +fast-flying|3858494 +fast-growing|3858529 +fast-paced|3858571 +fastball|3859413 +fasten|3859473 +fasten on|3859570 +fastened|3859654 +fastener|3859835 +fastening|3859960 +faster|3860072 +fastest|3860095 +fastidious|3860120 +fastidiously|3860342 +fastidiousness|3860377 +fastigiate|3860413 +fasting|3860456 +fastnacht|3860489 +fastness|3860524 +fat|3860692 +fat cat|3861523 +fat cell|3861572 +fat chance|3861632 +fat embolism|3861683 +fat farm|3861714 +fat hen|3861759 +fat metabolism|3861850 +fat person|3861914 +fat tuesday|3861980 +fat-free|3861421 +fat-soluble vitamin|3861486 +fata morgana|3862033 +fatah|3862062 +fatah revolutionary council|3862442 +fatah tanzim|3862709 +fatah-rc|3862194 +fatal|3862825 +fatal accident|3862996 +fatalism|3863059 +fatalist|3863089 +fatalistic|3863226 +fatality|3863295 +fatality rate|3863367 +fatback|3863451 +fate|3863478 +fated|3863689 +fateful|3863724 +fates|3863884 +fathead|3864134 +fatheaded|3864234 +father|3864342 +father brown|3865074 +father christmas|3865160 +father figure|3865262 +father of the church|3865353 +father of the submarine|3865471 +father surrogate|3865582 +father's day|3864810 +father-figure|3864849 +father-god|3864940 +father-in-law|3865000 +fatherhood|3865637 +fatherland|3865879 +fatherless|3865983 +fatherlike|3866045 +fatherliness|3866083 +fatherly|3866139 +fathom|3866191 +fathomable|3866421 +fathometer|3866509 +fatigability|3866561 +fatigue|3866592 +fatigue crack|3866904 +fatigue duty|3866964 +fatigue fracture|3867021 +fatigue party|3867078 +fatigued|3867115 +fatigues|3867212 +fatiha|3867421 +fatihah|3867457 +fatima|3867494 +fatimah|3867581 +fatism|3867669 +fatless|3867731 +fatness|3867796 +fats domino|3867853 +fats waller|3867967 +fatso|3868050 +fatten|3868116 +fatten out|3868212 +fatten up|3868308 +fattened|3868404 +fattening|3868431 +fattiness|3868459 +fattish|3868532 +fattism|3868553 +fatty|3868615 +fatty acid|3868765 +fatty liver|3868801 +fatty oil|3868836 +fatty tissue|3868869 +fatuity|3868924 +fatuous|3869002 +fatuously|3869058 +fatuousness|3869084 +fatwa|3869162 +fatwah|3869192 +faubourg|3869249 +faucal|3869297 +fauces|3869331 +faucet|3869366 +faucial tonsil|3869392 +fauld|3869481 +faulkner|3869560 +fault|3869663 +fault line|3869995 +faultfinder|3870020 +faultfinding|3870085 +faultiness|3870189 +faultless|3870250 +faulty|3870299 +faun|3870353 +fauna|3870379 +fauntleroy|3870505 +faunus|3870574 +faust|3870609 +faustian|3870689 +fausto paolo sozzini|3870766 +faustus|3870887 +faustus socinus|3870969 +fauteuil|3871085 +fauve|3871112 +fauvism|3871149 +fauvist|3871197 +faux|3871228 +faux pas|3871291 +fava bean|3871410 +faveolate|3871495 +favism|3871561 +favor|3871592 +favorable|3872001 +favorable position|3872398 +favorable reception|3872476 +favorableness|3872546 +favorably|3872619 +favored|3872648 +favoring|3872771 +favorite|3872805 +favorite son|3873059 +favoritism|3873124 +favour|3873238 +favourable|3873639 +favourable position|3873918 +favourable reception|3873996 +favourableness|3874066 +favourably|3874139 +favourite|3874168 +favourite son|3874418 +favouritism|3874483 +favus|3874596 +fawkes|3874636 +fawn|3874715 +fawn lily|3874923 +fawner|3875011 +fawning|3875123 +fax|3875194 +fayetteville|3875294 +faze|3875384 +fazed|3875469 +fbi|3875513 +fbi agent|3875585 +fcc|3875652 +fcs|3875722 +fda|3875790 +fdic|3875900 +fdr|3875974 +fe|3876192 +feabane mullet|3876252 +fealty|3876329 +fear|3876364 +fearful|3876579 +fearfulness|3876997 +fearless|3877068 +fearlessly|3877502 +fearlessness|3877544 +fearsome|3877620 +feasibility|3877738 +feasible|3877803 +feasibleness|3877887 +feast|3877952 +feast day|3878145 +feast of booths|3878181 +feast of dedication|3878286 +feast of dormition|3878476 +feast of lights|3878560 +feast of sacrifice|3878746 +feast of tabernacles|3878823 +feast of the circumcision|3878933 +feast of the dedication|3879036 +feast of the unleavened bread|3879230 +feast of weeks|3879350 +feast one's eyes|3879449 +feasting|3879506 +feat|3879550 +feather|3879611 +feather ball|3880002 +feather bed|3880051 +feather boa|3880173 +feather geranium|3880204 +feather one's nest|3880303 +feather palm|3880338 +feather reed grass|3880375 +feather star|3880450 +feather-foil|3879832 +featherbed|3880490 +featherbedding|3880642 +featherbrained|3880683 +feathered|3880783 +featheredge|3880987 +featheredged|3881013 +featherfoil|3881065 +featheriness|3881154 +feathering|3881206 +featherless|3881257 +featherlike|3881327 +feathertop|3881389 +feathertop grass|3881513 +featherweight|3881575 +feathery|3881688 +feature|3881811 +feature article|3882131 +feature film|3882172 +featured|3882314 +featureless|3882365 +feb|3882392 +feb 2|3882443 +febricity|3882500 +febrifuge|3882564 +febrile|3882641 +febrility|3882683 +february|3882747 +february 12|3882803 +february 14|3882859 +february 2|3882967 +february 22|3883016 +february 29|3883075 +february daphne|3883136 +february revolution|3883209 +fecal|3883288 +fecal impaction|3883340 +fecal matter|3883391 +fecal occult test|3883523 +fecalith|3883613 +feces|3883667 +fechner|3883799 +fechner's law|3883857 +feckless|3883930 +fecklessly|3883987 +fecklessness|3884014 +fecula|3884050 +feculent|3884123 +fecund|3884175 +fecundate|3884234 +fecundation|3884351 +fecundity|3884488 +fed|3884651 +fed up|3884780 +fedayeen|3884839 +fedayeen saddam|3884959 +fedelline|3885119 +federal|3885161 +federal agency|3885392 +federal agent|3885505 +federal aviation agency|3885555 +federal bureau of investigation|3885680 +federal bureau of prisons|3885780 +federal communications commission|3885868 +federal court|3885968 +federal deficit|3886017 +federal democratic republic of ethiopia|3886057 +federal department|3886205 +federal deposit insurance corporation|3886307 +federal district|3886414 +federal emergency management agency|3886509 +federal government|3886614 +federal home loan bank system|3886672 +federal home loan mortgage corporation|3886809 +federal housing administration|3886931 +federal islamic republic of the comoros|3887070 +federal job safety law|3887186 +federal judiciary|3887277 +federal law enforcement training center|3887393 +federal national mortgage association|3887511 +federal office|3887629 +federal official|3887731 +federal party|3887789 +federal protective service|3887891 +federal republic of germany|3887977 +federal republic of nigeria|3888180 +federal republic of yugoslavia|3888284 +federal reserve|3888433 +federal reserve bank|3888518 +federal reserve board|3888652 +federal reserve note|3888711 +federal reserve system|3888882 +federal savings bank|3888974 +federal security bureau|3889021 +federal security service|3889122 +federal soldier|3889224 +federal tax lien|3889310 +federal trade commission|3889345 +federalisation|3889427 +federalise|3889513 +federalism|3889668 +federalist|3889736 +federalist party|3889853 +federalization|3889958 +federalize|3890044 +federate|3890199 +federated|3890322 +federated states of micronesia|3890357 +federation|3890461 +federation of saint kitts and nevis|3890616 +federation of tribes|3890804 +federative republic of brazil|3890847 +federita|3890975 +fedora|3891041 +fee|3891105 +fee simple|3891255 +fee splitting|3891279 +fee tail|3891330 +fee-tail|3891210 +feeble|3891352 +feebleminded|3891484 +feeblemindedness|3891576 +feebleness|3891635 +feed|3891751 +feed back|3892196 +feed bunk|3892268 +feed grain|3892306 +feed in|3892341 +feed on|3892412 +feed upon|3892472 +feedback|3892532 +feedback circuit|3892626 +feedback loop|3892710 +feedbag|3892794 +feeder|3892823 +feeder line|3892937 +feeding|3892979 +feeding bottle|3893086 +feeding chair|3893132 +feedlot|3893171 +feel|3893205 +feel for|3893761 +feel like|3893841 +feel like a million|3893872 +feel like a million dollars|3893934 +feel out|3893996 +feeler|3894049 +feeling|3894210 +feeling of movement|3894556 +feelings|3894760 +fehling's solution|3895188 +feifer|3895244 +feign|3895291 +feigned|3895405 +feigning|3895432 +feijoa|3895605 +feijoa bush|3895680 +feint|3895719 +feist|3895824 +feisty|3895861 +felafel|3895926 +feldene|3895956 +feldspar|3896064 +felicia|3896095 +felicia amelloides|3896154 +felicia bergeriana|3896235 +felicitate|3896306 +felicitation|3896348 +felicitous|3896429 +felicitousness|3896559 +felicity|3896608 +felid|3896697 +felidae|3896729 +feline|3896783 +felis|3896827 +felis bengalensis|3896873 +felis catus|3896938 +felis chaus|3897024 +felis concolor|3897076 +felis domesticus|3897175 +felis manul|3897266 +felis ocreata|3897326 +felis onca|3897393 +felis pardalis|3897465 +felis serval|3897531 +felis silvestris|3897581 +felis tigrina|3897662 +felis wiedi|3897717 +felis yagouaroundi|3897776 +felix klein|3897873 +felix mendelssohn|3897926 +feliz lusitania|3898033 +fell|3898162 +fella|3899907 +fellah|3899981 +fellata|3900005 +fellate|3900062 +fellatio|3900117 +fellation|3900159 +felled|3900201 +felled seam|3900254 +feller|3900285 +felloe|3900431 +fellow|3900457 +fellow feeling|3900706 +fellow traveler|3900747 +fellow traveller|3900878 +fellow worker|3901008 +fellowship|3901072 +felly|3901217 +felo-de-se|3901243 +felon|3901335 +felonious|3901427 +felony|3901463 +felspar|3901498 +felt|3901529 +felt fern|3902303 +felt fungus|3902374 +felt hat|3902435 +felt tip|3902499 +felt up|3902563 +felt-tip pen|3902175 +felt-tipped pen|3902239 +felted|3902626 +felucca|3902650 +felwort|3902695 +fema|3902741 +female|3902815 +female aristocrat|3903055 +female body|3903114 +female bonding|3903244 +female chest|3903276 +female child|3903318 +female circumcision|3903378 +female genital organ|3903464 +female genitalia|3903596 +female genitals|3903728 +female horse|3903860 +female internal reproductive organ|3903908 +female mammal|3903981 +female monarch|3904011 +female offspring|3904073 +female parent|3904130 +female person|3904167 +female reproductive system|3904250 +female sibling|3904321 +femaleness|3904355 +feminine|3904409 +feminineness|3904614 +femininity|3904668 +feminisation|3904705 +feminise|3904780 +feminism|3904881 +feminist|3905072 +feminist movement|3905225 +feminization|3905346 +feminize|3905421 +femme fatale|3905522 +femoral|3905599 +femoral artery|3905629 +femoral biceps|3905708 +femoral nerve|3905763 +femoral pulse|3905854 +femoral vein|3905905 +femoris|3905972 +femtochemistry|3906014 +femtometer|3906065 +femtometre|3906121 +femtosecond|3906177 +femtovolt|3906221 +femur|3906255 +fen|3906297 +fen orchid|3906371 +fen orchis|3906445 +fence|3906519 +fence in|3906847 +fence line|3906939 +fence lizard|3907009 +fence mending|3907044 +fence rail|3907081 +fence-sitter|3906764 +fenced|3907117 +fenced in|3907142 +fenceless|3907186 +fencelike|3907225 +fencer|3907253 +fencer's mask|3907326 +fencesitter|3907372 +fencing|3907427 +fencing mask|3907550 +fencing material|3907596 +fencing stick|3907648 +fencing sword|3907699 +fend|3907746 +fend for|3907879 +fend off|3907925 +fender|3908049 +fender-bender|3908188 +fenestella|3908221 +fenestra|3908257 +fenestra cochleae|3908297 +fenestra of the cochlea|3908387 +fenestra of the vestibule|3908477 +fenestra ovalis|3908568 +fenestra rotunda|3908659 +fenestra vestibuli|3908749 +fenestral|3908840 +fenestration|3908910 +feng shui|3909034 +fengtien|3909068 +fenland|3909148 +fennel|3909193 +fennel flower|3909307 +fennel seed|3909356 +fennic|3909436 +fenoprofen|3909501 +fenoprofen calcium|3909620 +fenrir|3909739 +fentanyl|3909777 +fenugreek|3909860 +fenugreek seed|3910020 +fenusa|3910113 +fenusa pusilla|3910165 +feodor dostoevski|3910228 +feodor dostoevsky|3910601 +feodor dostoyevsky|3910974 +feodor mikhailovich dostoevski|3911348 +feodor mikhailovich dostoevsky|3911734 +feodor mikhailovich dostoyevsky|3912120 +feoff|3912507 +feosol|3912567 +fer-de-lance|3912595 +feral|3912643 +feral man|3912685 +ferber|3912740 +ferdinand and isabella|3912789 +ferdinand de lesseps|3912865 +ferdinand de saussure|3912980 +ferdinand i|3913072 +ferdinand ii|3913181 +ferdinand iii|3913235 +ferdinand joseph la menthe morton|3913291 +ferdinand julius cohn|3913415 +ferdinand magellan|3913510 +ferdinand the catholic|3913593 +ferdinand the great|3913678 +ferdinand v|3913757 +ferdinand victor eugene delacroix|3913831 +fere phenomenon|3913943 +ferenc molnar|3914123 +fergon|3914188 +fergusonite|3914216 +feria|3914245 +ferial|3914297 +ferine|3914320 +fermat|3914362 +ferment|3914416 +fermentable|3914788 +fermentation|3914818 +fermentation alcohol|3915029 +fermented|3915117 +fermenting|3915148 +fermentologist|3915256 +fermi|3915336 +fermi-dirac statistics|3915436 +fermion|3915509 +fermium|3915535 +fern|3915596 +fern ally|3915642 +fern family|3915693 +fern genus|3915721 +fern palm|3915747 +fern rhapis|3915819 +fern seed|3915896 +fernand leger|3915921 +fernao magalhaes|3915972 +ferned|3916053 +fernless|3916103 +fernlike|3916130 +ferny|3916167 +ferocactus|3916227 +ferocious|3916301 +ferociously|3916350 +ferociousness|3916379 +ferocity|3916472 +ferret|3916570 +ferret badger|3916807 +ferret out|3916837 +ferric|3916878 +ferric oxide|3916924 +ferricyanic acid|3916952 +ferricyanide|3916983 +ferrimagnetism|3917010 +ferris wheel|3917053 +ferrite|3917112 +ferritin|3917167 +ferrocerium|3917193 +ferroconcrete|3917231 +ferrocyanic acid|3917283 +ferrocyanide|3917314 +ferromagnetic|3917341 +ferromagnetism|3917408 +ferrous|3917477 +ferrule|3917523 +ferry|3917551 +ferryboat|3917704 +ferrying|3917734 +ferryman|3917792 +fertile|3917834 +fertile crescent|3918081 +fertile period|3918196 +fertile phase|3918246 +fertilisation|3918296 +fertilise|3918431 +fertilised|3918577 +fertiliser|3918640 +fertility|3918691 +fertility drug|3918872 +fertility rate|3918901 +fertilizable|3918970 +fertilization|3919000 +fertilization age|3919135 +fertilization membrane|3919192 +fertilize|3919246 +fertilized|3919392 +fertilized egg|3919455 +fertilized ovum|3919544 +fertilizer|3919581 +ferule|3919632 +fervency|3919655 +fervent|3919740 +fervently|3919866 +fervid|3919901 +fervidly|3920005 +fervidness|3920040 +fervor|3920125 +fervour|3920278 +fes|3920430 +fescue|3920535 +fescue grass|3920600 +fess|3920665 +fesse|3920694 +festal|3920723 +fester|3920769 +festering|3920863 +festinate|3921063 +festination|3921120 +festival|3921149 +festival of lights|3921235 +festive|3921424 +festivity|3921470 +festoon|3921522 +festoonery|3921681 +festuca|3921722 +festuca elatior|3921791 +festuca ovina|3921872 +fet|3921943 +fetal|3922037 +fetal age|3922078 +fetal alcohol syndrome|3922135 +fetal circulation|3922176 +fetal distress|3922263 +fetal membrane|3922345 +fetal monitor|3922391 +fetal movement|3922488 +fetch|3922558 +fetch up|3922695 +fetching|3922762 +fete|3922806 +fete champetre|3922912 +fete day|3922966 +feterita|3923002 +fetich|3923068 +fetichism|3923155 +feticide|3923219 +fetid|3923265 +fetid bugbane|3923366 +fetid horehound|3923431 +fetish|3923543 +fetishism|3923630 +fetishist|3923694 +fetlock|3923748 +fetlock joint|3923845 +fetology|3923907 +fetometry|3923968 +fetoprotein|3924040 +fetor|3924082 +fetoscope|3924206 +fetoscopy|3924248 +fetter|3924297 +fetter bone|3924394 +fetter bush|3924431 +fetterbush|3924587 +fettered|3924732 +fettle|3924785 +fettuccine|3924852 +fettuccine alfredo|3924906 +fettuccini|3924975 +fetus|3925029 +feud|3925071 +feudal|3925132 +feudal lord|3925240 +feudal system|3925300 +feudalism|3925414 +feudalistic|3925528 +feudatory|3925636 +fever|3925733 +fever blister|3925828 +fever pitch|3925904 +fever tree|3925975 +fevered|3926166 +feverfew|3926191 +feverish|3926277 +feverishness|3926359 +feverous|3926423 +feverroot|3926459 +few|3926562 +few-flowered leek|3926699 +fewer|3926760 +fewest|3926838 +fewness|3926910 +fey|3926941 +feynman|3926995 +fez|3927079 +fha|3927149 +fhlmc|3927261 +fiance|3927350 +fiancee|3927388 +fiasco|3927427 +fiat|3927460 +fiat money|3927516 +fib|3927577 +fibber|3927653 +fibbing|3927710 +fiber|3927769 +fiber bundle|3928164 +fiber optic cable|3928247 +fiber optics|3928321 +fiber-optic|3927894 +fiber-optic transmission system|3928041 +fiberboard|3928474 +fiberglass|3928530 +fiberoptic|3928579 +fiberoptics|3928646 +fiberscope|3928718 +fibonacci number|3928757 +fibonacci sequence|3928807 +fibre|3928863 +fibre bundle|3929258 +fibre optic cable|3929341 +fibre optics|3929415 +fibre-optic|3928988 +fibre-optic transmission system|3929135 +fibreboard|3929568 +fibreglass|3929624 +fibreoptic|3929673 +fibreoptics|3929740 +fibril|3929812 +fibrillate|3929856 +fibrillation|3929888 +fibrillose|3929982 +fibrin|3930013 +fibrinase|3930037 +fibrinogen|3930103 +fibrinolysin|3930167 +fibrinolysis|3930204 +fibrinopeptide|3930253 +fibrinous|3930285 +fibroadenoma|3930311 +fibroblast|3930341 +fibrocartilage|3930391 +fibrocartilaginous|3930433 +fibrocystic breast disease|3930478 +fibrocystic disease of the breast|3930594 +fibrocystic disease of the pancreas|3930710 +fibroid tumor|3930855 +fibroma|3930886 +fibromyositis|3930991 +fibrosis|3931041 +fibrositis|3931069 +fibrous|3931116 +fibrous astrocyte|3931225 +fibrous dysplasia of bone|3931262 +fibrous joint|3931307 +fibrous tissue|3931375 +fibrous-rooted begonia|3931185 +fibrovascular bundle|3931426 +fibula|3931504 +fibular vein|3931539 +fica|3931619 +fice|3931649 +fichu|3931686 +fickle|3931707 +fickleness|3931801 +fictile|3931883 +fiction|3931970 +fictional|3932089 +fictional animal|3932214 +fictional character|3932288 +fictionalisation|3932383 +fictionalise|3932536 +fictionalization|3932634 +fictionalize|3932787 +fictitious|3932885 +fictitious character|3933031 +fictive|3933126 +ficus|3933240 +ficus aurea|3933304 +ficus bengalensis|3933402 +ficus carica|3933529 +ficus carica sylvestris|3933604 +ficus deltoidea|3933714 +ficus diversifolia|3933820 +ficus elastica|3933929 +ficus religiosa|3934057 +ficus rubiginosa|3934156 +ficus sycomorus|3934266 +fiddle|3934351 +fiddle with|3934834 +fiddle-faddle|3934677 +fiddle-shaped|3934769 +fiddlehead|3934874 +fiddlehead fern|3935080 +fiddleneck|3935171 +fiddler|3935250 +fiddler crab|3935370 +fiddlestick|3935397 +fiddling|3935433 +fidel castro|3935554 +fidel castro ruz|3935623 +fidelity|3935696 +fidget|3935757 +fidgetiness|3935820 +fidgety|3935871 +fiducial|3935919 +fiduciary|3936071 +fiduciary duty|3936206 +fiduciary relation|3936241 +fiedler|3936284 +fief|3936358 +fiefdom|3936418 +field|3936488 +field artillery|3939064 +field balm|3939135 +field bean|3939378 +field bindweed|3939503 +field brome|3939576 +field capacity|3939630 +field chamomile|3939774 +field chickweed|3939871 +field coil|3940009 +field corn|3940048 +field cricket|3940100 +field day|3940148 +field emission|3940261 +field event|3940294 +field game|3940321 +field garlic|3940354 +field general|3940453 +field glass|3940545 +field glasses|3940602 +field goal|3940734 +field guide|3940780 +field gun|3940817 +field hand|3940888 +field hockey|3941046 +field hockey ball|3941086 +field horsetail|3941118 +field hospital|3941188 +field house|3941230 +field hut|3941295 +field intensity|3941335 +field judge|3941410 +field lens|3941449 +field line|3941492 +field lupine|3941531 +field magnet|3941619 +field maple|3941648 +field marigold|3941702 +field marshal|3941776 +field mint|3941816 +field mouse|3941867 +field mouse-ear|3942016 +field mushroom|3942154 +field mustard|3942221 +field of battle|3942315 +field of fire|3942444 +field of force|3942525 +field of honor|3942587 +field of operation|3942729 +field of operations|3942831 +field of regard|3943033 +field of study|3943115 +field of view|3943259 +field of vision|3943316 +field officer|3943398 +field pansy|3943474 +field pea|3943527 +field pennycress|3943657 +field poppy|3943771 +field press censorship|3943839 +field pussytoes|3943891 +field ration|3943966 +field sandbur|3943995 +field scabious|3944062 +field soybean|3944122 +field spaniel|3944157 +field sparrow|3944188 +field speedwell|3944246 +field sport|3944308 +field strength|3944359 +field strength unit|3944434 +field tent|3944488 +field test|3944535 +field theory|3944595 +field thistle|3944624 +field trial|3944672 +field trip|3944781 +field winding|3944863 +field work|3944902 +field wormwood|3944971 +field-effect transistor|3937638 +field-emission microscope|3937728 +field-grade officer|3937783 +field-pea plant|3937859 +field-sequential color television|3937964 +field-sequential color television system|3938210 +field-sequential color tv|3938456 +field-sequential color tv system|3938728 +field-test|3939007 +fielder|3945025 +fielder's choice|3945096 +fieldfare|3945129 +fieldhand|3945179 +fielding|3945256 +fielding average|3945341 +fieldmouse|3945401 +fields|3945439 +fieldsman|3946666 +fieldstone|3946703 +fieldwork|3946734 +fieldworker|3946776 +fiend|3946837 +fiendish|3947004 +fiendishly|3947094 +fierce|3947137 +fiercely|3947319 +fierceness|3947348 +fieri facias|3947446 +fierily|3947487 +fieriness|3947522 +fiery|3947580 +fiesta|3947703 +fiesta flower|3947736 +fife|3947817 +fife rail|3947854 +fifo|3947886 +fifteen|3947945 +fifteenth|3948004 +fifth|3948048 +fifth amendment|3948228 +fifth avenue|3948279 +fifth column|3948331 +fifth columnist|3948383 +fifth cranial nerve|3948436 +fifth crusade|3948536 +fifth part|3948581 +fifth wheel|3948664 +fifties|3948754 +fiftieth|3948999 +fifty|3949042 +fifty dollar bill|3949657 +fifty percent|3949790 +fifty-cent piece|3949222 +fifty-eight|3949265 +fifty-fifth|3949304 +fifty-fifty|3949338 +fifty-five|3949370 +fifty-four|3949405 +fifty-nine|3949441 +fifty-one|3949477 +fifty-seven|3949511 +fifty-six|3949549 +fifty-three|3949584 +fifty-two|3949622 +fig|3949827 +fig leaf|3950182 +fig marigold|3950237 +fig moth|3950279 +fig out|3950345 +fig tree|3950503 +fig up|3950526 +fig wax|3950684 +fig-bird|3950140 +figeater|3950717 +fight|3950793 +fight back|3951278 +fight down|3951366 +fight off|3951432 +fighter|3951525 +fighter aircraft|3951789 +fighter pilot|3951888 +fighting|3951924 +fighting chair|3952110 +fighting cock|3952140 +fighting french|3952177 +fighting joe hooker|3952261 +figment|3952352 +figural|3952382 +figural blindness|3952427 +figuration|3952485 +figurative|3952538 +figure|3952731 +figure eight|3953664 +figure loom|3953721 +figure of eight|3953767 +figure of speech|3953810 +figure out|3953873 +figure skate|3953940 +figure skating|3953968 +figured|3954004 +figured bass|3954077 +figured-fabric loom|3954031 +figurehead|3954152 +figurer|3954284 +figurine|3954347 +figuring|3954382 +figwort|3954450 +figwort family|3954494 +fiji|3954596 +fiji dollar|3954651 +fiji islands|3954691 +fijian|3954739 +fijis|3954853 +filago|3954942 +filago germanica|3954985 +filagree|3955067 +filament|3955118 +filamentlike|3955302 +filamentous|3955369 +filar|3955436 +filaree|3955462 +filaria|3955597 +filarial|3955772 +filariasis|3955822 +filariid|3955850 +filariidae|3955879 +filature|3955940 +filbert|3955976 +filch|3956109 +file|3956203 +file allocation table|3956521 +file away|3956572 +file cabinet|3956649 +file clerk|3956708 +file folder|3956753 +file in|3956781 +file name|3956852 +file name extension|3957003 +file out|3957068 +file server|3957112 +file system|3957150 +file transfer protocol|3957207 +filefish|3957276 +filename|3957323 +filename extension|3957393 +filer|3957458 +filet|3957529 +filet de boeuf en croute|3957712 +filet mignon|3957767 +filial|3957802 +filial duty|3957868 +filiate|3957920 +filiation|3957951 +filibuster|3958109 +filibusterer|3958242 +filicales|3958294 +filicinae|3958383 +filicopsida|3958464 +filiform|3958547 +filigree|3958614 +filing|3958665 +filing cabinet|3958754 +filing clerk|3958813 +filing system|3958858 +filipino|3958915 +filippino lippi|3959064 +filippo brunelleschi|3959122 +fill|3959205 +fill again|3959733 +fill in|3959793 +fill out|3959934 +fill the bill|3960165 +fill up|3960221 +fill-in|3959637 +fillagree|3960337 +fille|3960388 +fille de chambre|3960461 +filled|3960531 +filler|3960568 +fillet|3960721 +fillet of sole|3961000 +filling|3961038 +filling station|3961211 +fillip|3961296 +fillmore|3961336 +filly|3961480 +film|3961500 +film advance|3961924 +film clip|3961956 +film director|3961998 +film editing|3962111 +film fern|3962161 +film festival|3962196 +film industry|3962233 +film maker|3962291 +film over|3962437 +film producer|3962472 +film projector|3962537 +film star|3962602 +film writer|3962677 +film-make|3961893 +filmable|3962724 +filmed|3962752 +filming|3962777 +filmmaker|3962863 +filmy|3962928 +filmy fern|3963022 +filoviridae|3963082 +filovirus|3963122 +fils|3963154 +filter|3963241 +filter bed|3963545 +filter out|3963572 +filter paper|3963637 +filter tip|3963665 +filter-tipped|3963443 +filter-tipped cigarette|3963473 +filth|3963708 +filthily|3963899 +filthiness|3963924 +filthy|3963984 +filtrate|3964127 +filtration|3964213 +filum|3964294 +fimbria|3964399 +fimbriate|3964444 +fin|3964469 +fin de siecle|3964829 +fin keel|3964861 +fin whale|3964885 +finable|3964981 +finagle|3965014 +finagler|3965077 +final|3965153 +final cut|3965333 +final decision|3965464 +final exam|3965540 +final examination|3965606 +final injunction|3965672 +final judgment|3965774 +final payment|3965850 +final period|3965888 +final result|3965945 +final solution|3966029 +final stage|3966105 +finale|3966160 +finalisation|3966337 +finalise|3966417 +finalist|3966475 +finality|3966543 +finalization|3966618 +finalize|3966698 +finally|3966756 +finance|3966874 +finance committee|3967047 +finance company|3967095 +finance minister|3967156 +financed|3967231 +finances|3967259 +financial|3967502 +financial aid|3967589 +financial analyst|3967639 +financial audit|3967693 +financial backing|3967779 +financial center|3967857 +financial condition|3967914 +financial crimes enforcement network|3967979 +financial forecast|3968092 +financial gain|3968139 +financial institution|3968168 +financial loss|3968271 +financial management service|3968300 +financial obligation|3968431 +financial officer|3968495 +financial organisation|3968559 +financial organization|3968662 +financial statement|3968765 +financial support|3968846 +financial year|3968924 +financier|3968980 +financing|3969038 +finback|3969073 +finback whale|3969169 +fincen|3969265 +finch|3969348 +find|3969382 +find fault|3970183 +find oneself|3970251 +find out|3970299 +finder|3970512 +finder's fee|3970651 +finding|3970677 +finding of fact|3970808 +finding of law|3970849 +findings|3970899 +fine|3971109 +fine art|3972327 +fine arts|3972358 +fine print|3972468 +fine spray|3972567 +fine structure|3972610 +fine-drawn|3971592 +fine-grained|3971622 +fine-leaved heath|3971728 +fine-looking|3971812 +fine-tooth|3971908 +fine-tooth comb|3971949 +fine-toothed|3972043 +fine-toothed comb|3972084 +fine-tune|3972176 +fineable|3972648 +fined|3972681 +finedraw|3972725 +finely|3972774 +fineness|3972828 +finer|3972975 +finery|3973376 +fines herbes|3973410 +finespun|3973437 +finesse|3973501 +finest|3973567 +fingal's cave|3974000 +finger|3974042 +finger alphabet|3975113 +finger bowl|3975163 +finger cymbals|3975189 +finger food|3975289 +finger grass|3975383 +finger hole|3975445 +finger millet|3975483 +finger paint|3975582 +finger plate|3975703 +finger scan|3975794 +finger scanning|3975903 +finger spelling|3976012 +finger wave|3976155 +finger's breadth|3974239 +finger-flower|3974304 +finger-paint|3974509 +finger-painting|3974537 +finger-pointing|3974595 +finger-roll|3974727 +finger-root|3974764 +finger-spell|3974969 +fingerboard|3976181 +fingerbreadth|3976284 +fingered|3976349 +fingerflower|3976396 +fingering|3976520 +fingerless|3976622 +fingerlike|3976653 +fingerling|3976691 +fingermark|3976716 +fingernail|3976788 +fingerpaint|3976813 +fingerpointing|3976853 +fingerpost|3976904 +fingerprint|3976955 +fingerprint expert|3977167 +fingerprint man|3977269 +fingerprint specialist|3977371 +fingerprinting|3977473 +fingerroot|3977515 +fingerspell|3977639 +fingerspelling|3977702 +fingerstall|3977764 +fingertip|3977796 +finial|3977819 +finical|3977869 +finicky|3977922 +finis|3977975 +finish|3978105 +finish coat|3978806 +finish line|3978899 +finish off|3978964 +finish out|3979057 +finish up|3979103 +finished|3979251 +finisher|3979526 +finishing|3979612 +finishing coat|3979720 +finishing line|3979810 +finishing school|3979875 +finishing touch|3979908 +finite|3979958 +finiteness|3980059 +finitude|3980108 +fink|3980157 +finland|3980267 +finn|3980351 +finnan|3980379 +finnan haddie|3980447 +finnan haddock|3980515 +finnbogadottir|3980583 +finnic|3980654 +finnish|3980719 +finnish capital|3980811 +finnish monetary unit|3980914 +finno-ugrian|3980981 +finno-ugric|3981051 +finno-ugric-speaking|3981120 +finocchio|3981199 +fins|3981258 +fiord|3981603 +fipple|3981637 +fipple flute|3981674 +fipple pipe|3981766 +fir|3981858 +fir clubmoss|3981925 +fir cone|3982027 +fir tree|3982069 +fire|3982124 +fire alarm|3984244 +fire and brimstone|3984351 +fire ant|3984407 +fire beetle|3984443 +fire bell|3984525 +fire blight|3984549 +fire brigade|3984594 +fire bush|3984678 +fire chief|3984935 +fire code|3985012 +fire company|3985049 +fire control|3985110 +fire control radar|3985153 +fire control system|3985193 +fire department|3985237 +fire door|3985310 +fire drill|3985334 +fire engine|3985406 +fire escape|3985455 +fire extinguisher|3985523 +fire fighter|3985582 +fire hook|3985753 +fire hose|3985811 +fire hydrant|3985844 +fire insurance|3985888 +fire iron|3985922 +fire marshal|3985951 +fire marshall|3986028 +fire opal|3986072 +fire pink|3986104 +fire pit|3986164 +fire salamander|3986193 +fire sale|3986268 +fire screen|3986356 +fire ship|3986394 +fire station|3986438 +fire thorn|3986478 +fire tongs|3986621 +fire tower|3986682 +fire tree|3986713 +fire trench|3986793 +fire truck|3986821 +fire up|3986870 +fire walker|3987010 +fire walking|3987059 +fire warden|3987132 +fire watcher|3987245 +fire watching|3987299 +fire wheel|3987336 +fire-bellied toad|3982884 +fire-bush|3982976 +fire-eater|3983233 +fire-on-the-mountain|3983424 +fire-raising|3983515 +fire-resistant|3983575 +fire-resisting|3983673 +fire-resistive|3983771 +fire-retardant|3983869 +fire-swallower|3983967 +fire-wheel|3984030 +fire-worship|3984204 +firearm|3987510 +fireball|3987547 +firebase|3987699 +firebird|3987741 +fireboat|3988034 +firebomb|3988057 +firebox|3988127 +firebrand|3988152 +firebrat|3988290 +firebreak|3988340 +firebrick|3988375 +firebug|3988400 +fireclay|3988504 +firecracker|3988527 +fired|3988584 +firedamp|3988653 +firedog|3988675 +firedrake|3988721 +firefighter|3988782 +firefly|3988872 +fireguard|3988982 +firehouse|3989043 +firelight|3989083 +firelighter|3989140 +firelock|3989185 +fireman|3989227 +fireman's ax|3989447 +fireman's axe|3989490 +fireman's carry|3989533 +firenze|3989564 +fireplace|3989627 +fireplug|3989681 +firepower|3989725 +fireproof|3989816 +fireroom|3989877 +fireside|3989923 +firestone|3990030 +firestorm|3990072 +firethorn|3990201 +firetrap|3990263 +firewall|3990298 +firewater|3990378 +fireweed|3990470 +firewheel tree|3990602 +firewood|3990663 +firework|3990686 +firing|3990730 +firing chamber|3990989 +firing line|3991033 +firing mechanism|3991106 +firing off|3991164 +firing party|3991215 +firing pin|3991256 +firing range|3991284 +firing squad|3991334 +firkin|3991375 +firm|3991447 +firm omelet|3991966 +firm up|3992003 +firmament|3992035 +firmamental|3992126 +firmer chisel|3992154 +firmiana|3992184 +firmiana simplex|3992248 +firmly|3992368 +firmness|3992439 +firmware|3992582 +first|3992629 +first aid|3994156 +first amendment|3994202 +first and foremost|3994253 +first and last|3994297 +first appearance|3994330 +first balcony|3994430 +first baron beveridge|3994471 +first baron kelvin|3994584 +first baron lytton|3994665 +first baron macaulay|3994781 +first baron marks of broughton|3994907 +first baron passfield|3995023 +first baron rutherford|3995149 +first baron rutherford of nelson|3995276 +first baron tennyson|3995413 +first base|3995515 +first baseman|3995616 +first battle of ypres|3995662 +first blush|3995752 +first cause|3995814 +first class|3995894 +first cousin|3996029 +first cranial nerve|3996102 +first crusade|3996179 +first degree|3996224 +first derivative|3996253 +first duke of marlborough|3996388 +first duke of wellington|3996515 +first earl kitchener of khartoum|3996688 +first earl of beaconsfield|3996831 +first earl of chatham|3996953 +first earl of orford|3997071 +first earl wavell|3997196 +first epistle of john|3997309 +first epistle of paul the apostle to the corinthians|3997374 +first epistle of paul the apostle to the thessalonians|3997541 +first epistle of paul the apostle to timothy|3997716 +first epistle of peter|3997855 +first epistle to the corinthians|3997923 +first epistle to the thessalonians|3998070 +first epistle to timothy|3998225 +first estate|3998344 +first floor|3998389 +first gear|3998461 +first grade|3998520 +first half|3998558 +first harmonic|3998583 +first in first out|3998650 +first lady|3998704 +first language|3998784 +first law of motion|3998864 +first law of thermodynamics|3998991 +first lieutenant|3999116 +first light|3999153 +first lord of the treasury|3999291 +first marquess cornwallis|3999380 +first mate|3999497 +first moment|3999545 +first mortgage|3999626 +first name|3999659 +first of all|3999704 +first of may|3999758 +first of october antifascist resistance group|3999811 +first off|3999992 +first offender|4000046 +first period|4000078 +first person|4000135 +first principle|4000164 +first quarter|4000303 +first reading|4000336 +first reich|4000372 +first rudiment|4000429 +first sacker|4000568 +first sergeant|4000614 +first state|4000668 +first step|4000742 +first stomach|4000823 +first strike|4000882 +first team|4000911 +first trimester|4000950 +first viscount haldane of cloan|4000985 +first viscount nuffield|4001137 +first water|4001264 +first world war|4001310 +first-aid kit|3993425 +first-aid station|3993459 +first-class|3993494 +first-class honours degree|3993546 +first-class mail|3993611 +first-come-first-serve|3993693 +first-degree burn|3993741 +first-nighter|3993773 +first-order correlation|3993829 +first-place finish|3993882 +first-rate|3993914 +first-rater|3994002 +first-string|3994076 +first-year|3994121 +firstborn|4001410 +firsthand|4001480 +firstly|4001507 +firth|4001561 +firth of clyde|4001657 +firth of forth|4001702 +fisa|4001747 +fisc|4001828 +fiscal|4001861 +fiscal policy|4001938 +fiscal year|4001977 +fiscally|4002033 +fischer|4002068 +fischer's slime mushroom|4002221 +fish|4002295 +fish and chips|4002789 +fish ball|4002818 +fish bowl|4002883 +fish cake|4003101 +fish chowder|4003141 +fish doctor|4003171 +fish duck|4003222 +fish eagle|4003278 +fish family|4003348 +fish farm|4003376 +fish filet|4003410 +fish fillet|4003467 +fish finger|4003524 +fish fly|4003561 +fish fry|4003713 +fish fuddle|4003739 +fish genus|4003819 +fish geranium|4003845 +fish glue|4003933 +fish hawk|4003985 +fish house punch|4004055 +fish joint|4004087 +fish knife|4004123 +fish ladder|4004155 +fish loaf|4004184 +fish louse|4004222 +fish lure|4004269 +fish meal|4004321 +fish mousse|4004401 +fish oil|4004429 +fish scale|4004458 +fish slice|4004484 +fish steak|4004523 +fish stew|4004549 +fish stick|4004573 +fish tank|4004610 +fish-fly|4002578 +fish-worship|4002730 +fishbone|4004679 +fishbowl|4004705 +fisher|4004843 +fisher cat|4004967 +fisherman|4005044 +fisherman's bend|4005100 +fisherman's knot|4005131 +fisherman's lure|4005194 +fishery|4005246 +fisheye|4005286 +fisheye lens|4005338 +fishgig|4005401 +fishhook|4005451 +fishily|4005474 +fishing|4005498 +fishing boat|4005612 +fishing eagle|4005681 +fishing gear|4005738 +fishing licence|4005831 +fishing license|4005910 +fishing line|4005989 +fishing net|4006016 +fishing permit|4006049 +fishing pole|4006128 +fishing rig|4006166 +fishing rod|4006259 +fishing season|4006297 +fishing smack|4006328 +fishing tackle|4006397 +fishing vessel|4006490 +fishing worm|4006559 +fishlike|4006698 +fishmonger|4006723 +fishnet|4006783 +fishpaste|4006816 +fishplate|4006848 +fishpole bamboo|4006873 +fishpond|4006949 +fishtail|4006977 +fishtail bit|4007016 +fishtail palm|4007071 +fishwife|4007109 +fishworm|4007169 +fishy|4007308 +fissile|4007373 +fission|4007417 +fission bomb|4007508 +fissionable|4007594 +fissiparity|4007635 +fissiparous|4007710 +fissiped|4007789 +fissiped mammal|4007833 +fissipedia|4007877 +fissure|4007962 +fissure of rolando|4008120 +fissure of sylvius|4008224 +fissurella|4008343 +fissurella apertura|4008405 +fissurellidae|4008493 +fist|4008566 +fistfight|4008614 +fistful|4008703 +fisticuffs|4008741 +fistmele|4008845 +fistula|4008875 +fistular|4008957 +fistularia|4009002 +fistulariidae|4009061 +fistulate|4009131 +fistulina|4009176 +fistulina hepatica|4009234 +fistulinaceae|4009333 +fistulous|4009405 +fistulous withers|4009475 +fit|4009525 +fit for|4010155 +fit in|4010215 +fit out|4010329 +fit the bill|4010484 +fit to|4010540 +fitch|4010599 +fitful|4010692 +fitfulness|4010764 +fitly|4010820 +fitment|4010879 +fitness|4010946 +fits and starts|4011126 +fitted out|4011161 +fitted sheet|4011261 +fitter|4011313 +fitting|4011534 +fittingly|4011756 +fittingness|4011815 +fitzgerald|4011869 +five|4012097 +five dollar bill|4012954 +five hundred|4013096 +five iron|4013190 +five nations|4013221 +five spice powder|4013310 +five-finger|4012255 +five-fingered maidenhair fern|4012298 +five-flowered gentian|4012406 +five-hitter|4012525 +five-hundredth|4012583 +five-membered|4012621 +five-point bishop's cap|4012664 +five-spot|4012748 +fivefold|4013343 +fivepence|4013380 +fiver|4013404 +fives|4013546 +fivesome|4013713 +fix|4013863 +fix up|4014818 +fix-it shop|4014774 +fixable|4014900 +fixate|4014940 +fixation|4015073 +fixative|4015270 +fixed|4015322 +fixed charge|4016158 +fixed cost|4016210 +fixed costs|4016262 +fixed disk|4016352 +fixed intonation|4016430 +fixed investment trust|4016467 +fixed oil|4016579 +fixed phagocyte|4016612 +fixed star|4016662 +fixed storage|4016687 +fixed up|4016816 +fixed-combination drug|4015652 +fixed-cycle operation|4015730 +fixed-income|4015771 +fixed-point notation|4015804 +fixed-point number|4015890 +fixed-point part|4015925 +fixed-point representation system|4015969 +fixed-width font|4016055 +fixedness|4016843 +fixer|4017067 +fixer-upper|4017377 +fixing|4017453 +fixing agent|4017663 +fixings|4017718 +fixity|4018056 +fixture|4018234 +fizgig|4018442 +fizz|4018520 +fizzing|4018611 +fizzle|4018647 +fizzle out|4018706 +fizzy|4018765 +fjord|4018801 +fl|4018835 +flab|4018904 +flabbergast|4018950 +flabbergasted|4018997 +flabbiness|4019077 +flabby|4019126 +flaccid|4019155 +flaccid bladder|4019211 +flaccid paralysis|4019253 +flaccidity|4019340 +flack|4019389 +flack catcher|4019617 +flacourtia|4019710 +flacourtia family|4019780 +flacourtia indica|4019867 +flacourtiaceae|4019991 +flag|4020093 +flag captain|4020727 +flag day|4020765 +flag down|4020804 +flag of truce|4020828 +flag officer|4020867 +flag rank|4020916 +flag smut|4020981 +flag smut fungus|4021005 +flag stop|4021048 +flag waving|4021169 +flag-waver|4020523 +flag-waving|4020618 +flagellant|4021220 +flagellata|4021266 +flagellate|4021352 +flagellate protozoan|4021579 +flagellated|4021689 +flagellated cell|4021757 +flagellated protozoan|4021788 +flagellation|4021898 +flagellum|4022015 +flageolet|4022082 +flagfish|4022209 +flagging|4022275 +flagitious|4022308 +flagon|4022377 +flagpole|4022400 +flagrant|4022508 +flagroot|4022582 +flagship|4022694 +flagstaff|4022730 +flagstone|4022786 +flagyl|4022823 +flail|4022893 +flair|4022990 +flak|4023116 +flak catcher|4023346 +flake|4023439 +flake off|4023679 +flake out|4023762 +flakey|4023849 +flakiness|4023878 +flaky|4023965 +flambeau|4024080 +flamboyance|4024104 +flamboyant|4024171 +flamboyant tree|4024372 +flamboyantly|4024493 +flame|4024531 +flame bush|4025133 +flame cell|4025194 +flame durrajong|4025244 +flame fish|4025350 +flame flower|4025491 +flame nettle|4025815 +flame pea|4025866 +flame tokay|4025896 +flame tree|4025923 +flame up|4026388 +flame-flower|4024683 +flame-out|4025007 +flame-retardant|4025068 +flamefish|4026442 +flameflower|4026502 +flamen|4026665 +flamenco|4026709 +flameproof|4026806 +flamethrower|4026871 +flaming|4026918 +flaming poppy|4027159 +flamingo|4027246 +flamingo flower|4027282 +flamingo plant|4027455 +flaminian way|4027629 +flaminius|4027684 +flammable|4027782 +flammulina|4027854 +flammulina velutipes|4027915 +flan|4027989 +flanders|4028024 +flanders poppy|4028084 +flange|4028167 +flank|4028198 +flank steak|4028292 +flanker|4028323 +flanker back|4028373 +flannel|4028408 +flannel bush|4028733 +flannel cake|4028877 +flannel leaf|4029064 +flannel mullein|4029129 +flannel-cake|4028546 +flannelbush|4029268 +flannelette|4029331 +flannery o'connor|4029382 +flap|4029473 +flap down|4029861 +flapcake|4029891 +flapjack|4029997 +flapper|4030103 +flapping|4030165 +flaps|4030223 +flare|4030487 +flare out|4031018 +flare pass|4031049 +flare path|4031095 +flare star|4031157 +flare up|4031202 +flare-up|4030950 +flared|4031297 +flaring|4031332 +flash|4031402 +flash back|4032384 +flash bulb|4032447 +flash butt welding|4032623 +flash camera|4032691 +flash card|4032740 +flash flood|4032891 +flash in the pan|4033037 +flash lamp|4033108 +flash memory|4033203 +flash point|4033266 +flash welding|4033421 +flash-forward|4032256 +flash-freeze|4032290 +flash-frozen|4032332 +flashback|4033489 +flashboard|4033544 +flashboarding|4033587 +flashbulb|4033630 +flashcard|4033725 +flasher|4033795 +flashflood|4033896 +flashgun|4033961 +flashily|4034056 +flashiness|4034115 +flashing|4034223 +flashlight|4034291 +flashlight battery|4034331 +flashlight fish|4034371 +flashover|4034510 +flashpoint|4034581 +flashy|4034656 +flask|4034808 +flaskful|4034859 +flat|4034896 +flat arch|4036271 +flat bench|4036309 +flat bone|4036335 +flat cap|4036366 +flat coat|4036398 +flat file|4036488 +flat knot|4036512 +flat out|4036553 +flat pea|4036627 +flat solid|4036750 +flat tip screwdriver|4036794 +flat tire|4036836 +flat wash|4036890 +flat-bellied|4035689 +flat-bottom|4035721 +flat-bottomed|4035801 +flat-coated retriever|4035881 +flat-footed|4035922 +flat-hat|4036008 +flat-leaf parsley|4036052 +flat-top|4036158 +flat-topped|4036195 +flat-topped white aster|4036232 +flatbed|4036926 +flatbed press|4036985 +flatboat|4037044 +flatbottom|4037085 +flatbottomed|4037123 +flatbread|4037161 +flatbrod|4037211 +flatcar|4037239 +flatfish|4037281 +flatfoot|4037356 +flathead|4037465 +flathead catfish|4037551 +flatiron|4037672 +flatlet|4037710 +flatly|4037742 +flatmate|4037787 +flatness|4037812 +flats|4037943 +flatten|4038233 +flatten out|4038344 +flattened|4038405 +flatter|4038455 +flatterer|4038488 +flattering|4038525 +flattery|4038601 +flattop|4038630 +flatulence|4038751 +flatulency|4038905 +flatulent|4038984 +flatus|4039047 +flatus-relieving|4039193 +flatware|4039241 +flatwork|4039294 +flatworm|4039330 +flaubert|4039367 +flaunt|4039425 +flaunty|4039510 +flautist|4039552 +flavian dynasty|4039623 +flavin|4039672 +flavius josephus|4039695 +flaviviridae|4039823 +flavivirus|4039879 +flavor|4039912 +flavored|4040196 +flavorer|4040242 +flavorful|4040329 +flavoring|4040427 +flavorless|4040514 +flavorlessness|4040602 +flavorous|4040719 +flavorsome|4040817 +flavorsomeness|4040915 +flavour|4040996 +flavoured|4041277 +flavourer|4041323 +flavourful|4041410 +flavouring|4041508 +flavourless|4041595 +flavourlessness|4041683 +flavourous|4041800 +flavoursome|4041898 +flavoutsomeness|4041996 +flaw|4042077 +flawed|4042177 +flawless|4042213 +flawlessly|4042248 +flawlessness|4042275 +flax|4042328 +flax family|4042395 +flax rust|4042474 +flax rust fungus|4042543 +flaxedil|4042612 +flaxen|4042694 +flaxseed|4042742 +flaxseed oil|4042776 +flay|4042814 +flea|4042843 +flea beetle|4042972 +flea bite|4043017 +flea market|4043106 +flea-bitten|4042911 +fleabag|4043144 +fleabane|4043167 +fleapit|4043352 +fleawort|4043431 +flecainide|4043502 +fleck|4043592 +flecked|4043726 +flection|4043786 +fledge|4043932 +fledged|4044094 +fledgeless|4044197 +fledgeling|4044259 +fledgling|4044434 +flee|4044642 +fleece|4044792 +fleeceable|4045005 +fleecy|4045051 +fleet|4045087 +fleet admiral|4045441 +fleet ballistic missile submarine|4045477 +fleet street|4045549 +fleeting|4045647 +fleetingness|4045703 +fleetly|4045789 +fleetness|4045813 +fleming|4045860 +flemish|4046026 +flemish dialect|4046226 +flemish-speaking|4046155 +flesh|4046281 +flesh fly|4046544 +flesh out|4046587 +flesh wound|4046819 +flesh-eating|4046487 +fleshed out|4046867 +fleshiness|4046907 +fleshly|4046967 +fleshy|4047015 +fletc|4047080 +fletcher|4047164 +fleur-de-lis|4047226 +fleur-de-lys|4047355 +flex|4047439 +flexeril|4047660 +flexibility|4047719 +flexible|4047837 +flexible joint|4048104 +flexible sigmoidoscope|4048140 +flexible sigmoidoscopy|4048196 +flexibleness|4048252 +flexile|4048310 +flexion|4048407 +flexor|4048577 +flexor muscle|4048639 +flexuous|4048701 +flexure|4048734 +flibbertigibbet|4048900 +flick|4048972 +flick knife|4049499 +flick-knife|4049398 +flicker|4049600 +flickering|4049847 +flickertail|4049885 +flier|4049989 +flies|4050225 +flight|4050472 +flight attendant|4050862 +flight control|4050922 +flight deck|4050954 +flight engineer|4050993 +flight feather|4051029 +flight indicator|4051102 +flight line|4051184 +flight maneuver|4051210 +flight of stairs|4051287 +flight of steps|4051368 +flight path|4051449 +flight simulator|4051542 +flight strip|4051586 +flight surgeon|4051679 +flighted|4051725 +flightiness|4051753 +flightless|4051866 +flightless bird|4051895 +flighty|4051944 +flimflam|4052034 +flimsiness|4052167 +flimsy|4052207 +flinch|4052359 +flinders|4052458 +flindersia|4052593 +flindersia australis|4052659 +flindersia schottiana|4052752 +flindosa|4052828 +flindosy|4052900 +fling|4052972 +fling off|4053325 +flint|4053397 +flint corn|4053522 +flint glass|4053595 +flint maize|4053644 +flint river|4053717 +flintlock|4053762 +flintstone|4053836 +flinty|4053862 +flip|4053953 +flip chart|4054729 +flip one's lid|4054755 +flip one's wig|4054959 +flip out|4055163 +flip over|4055193 +flip-flop|4054460 +flippancy|4055232 +flippant|4055275 +flippantly|4055316 +flipper|4055342 +flippers|4055394 +flirt|4055483 +flirt with|4055756 +flirtation|4055828 +flirtatious|4055919 +flirtatiously|4055956 +flirting|4055991 +flit|4056082 +flitch|4056211 +flitter|4056265 +flittering scotoma|4056331 +flnc|4056389 +flo ziegfeld|4056519 +float|4056600 +floatation|4057041 +floater|4057116 +floating|4057476 +floating bridge|4058008 +floating dock|4058074 +floating dry dock|4058145 +floating fern|4058216 +floating mine|4058443 +floating policy|4058483 +floating voter|4058550 +floating-moss|4057621 +floating-point notation|4057710 +floating-point number|4057802 +floating-point operation|4057840 +floating-point representation system|4057916 +floatplane|4058600 +floaty|4058654 +floc|4058684 +floccose|4058722 +floccose chanterelle|4058754 +flocculate|4058814 +flocculation|4058868 +floccule|4058937 +flocculent|4058975 +flock|4059013 +flodden|4059452 +flodden field|4059530 +floe|4059614 +flog|4059646 +flogger|4059777 +flogging|4059812 +flood|4059929 +flood control|4060518 +flood in|4060549 +flood lamp|4060583 +flood out|4060650 +flood plain|4060707 +flood tide|4060842 +flooded|4060911 +flooded gum|4061050 +floodgate|4061107 +floodhead|4061207 +flooding|4061249 +floodlight|4061365 +floodlighted|4061481 +floodlit|4061518 +floodplain|4061555 +floor|4061609 +floor board|4062009 +floor cover|4062080 +floor covering|4062125 +floor joist|4062170 +floor lamp|4062197 +floor leader|4062222 +floor plan|4062255 +floor show|4062299 +floor wax|4062423 +floorboard|4062446 +floored|4062506 +flooring|4062531 +floorshow|4062605 +floorwalker|4062648 +floozie|4062689 +floozy|4062888 +flop|4063087 +flophouse|4063442 +floppy|4063499 +floppy disk|4063585 +flora|4063660 +floral|4063772 +floral cup|4063893 +floral envelope|4063947 +floral leaf|4064053 +floreal|4064095 +florence|4064149 +florence fennel|4064234 +florence nightingale|4064381 +florentine|4064473 +florentine iris|4064532 +florenz ziegfeld|4064634 +florescence|4064719 +florest's cineraria|4064857 +floret|4064912 +florey|4064949 +floricultural|4065037 +floriculture|4065082 +florid|4065144 +florida|4065191 +florida arrowroot|4065265 +florida bean|4065352 +florida gallinule|4065520 +florida keys|4065635 +florida pompano|4065689 +florida selaginella|4065760 +florida smoothhound|4065847 +florida strangler fig|4065928 +florida strap fern|4066036 +florida water rat|4066129 +florida yew|4066240 +floridian|4066293 +floridness|4066331 +florilegium|4066398 +florin|4066448 +florio|4066559 +florist|4066621 +florist shop|4067001 +florist's chrysanthemum|4066729 +florist's gloxinia|4066856 +florist's willow|4066930 +florists' chrysanthemum|4067055 +flory|4067182 +floss|4067227 +flossy|4067307 +flotation|4067350 +flotation device|4067426 +flotilla|4067500 +flotsam|4067537 +flounce|4067570 +flounder|4067643 +flour|4067728 +flour beetle|4067807 +flour bin|4067893 +flour corn|4067916 +flour mill|4067986 +flour weevil|4068019 +flourish|4068105 +flourishing|4068463 +floury|4068580 +flout|4068601 +flouter|4068786 +flow|4068863 +flow away|4069321 +flow chart|4069365 +flow diagram|4069526 +flow from|4069606 +flow of air|4069645 +flow off|4069696 +flow out|4069740 +flow rate|4069773 +flow sheet|4069815 +flowage|4069895 +flowchart|4069965 +flower|4070045 +flower arrangement|4070438 +flower bed|4070512 +flower bud|4070642 +flower chain|4070666 +flower child|4070707 +flower cluster|4070788 +flower garden|4070826 +flower gardening|4070856 +flower girl|4070918 +flower head|4071017 +flower people|4071052 +flower petal|4071109 +flower power|4071149 +flower stalk|4071186 +flower store|4071225 +flower-cup fern|4070254 +flower-of-an-hour|4070334 +flowerbed|4071279 +flowered|4071328 +flowering|4071363 +flowering almond|4071574 +flowering ash|4071683 +flowering cherry|4071821 +flowering crab|4071866 +flowering fern|4072064 +flowering glume|4072139 +flowering hazel|4072176 +flowering onion|4072225 +flowering plant|4072317 +flowering quince|4072389 +flowering raspberry|4072426 +flowering shrub|4072535 +flowering spurge|4072571 +flowering stone|4072651 +flowering tobacco|4072756 +flowering tree|4072823 +flowering wintergreen|4072871 +flowerpot|4072974 +flowers of zinc|4073194 +flowers-of-an-hour|4073007 +flowery|4073255 +flowing|4073290 +floxuridine|4073446 +floyd bennett|4073514 +flu|4073595 +flub|4073715 +fluctuate|4074016 +fluctuating|4074103 +fluctuation|4074133 +flue|4074260 +flue pipe|4074360 +flue stop|4074421 +fluegelhorn|4074451 +fluency|4074489 +fluent|4074610 +fluent aphasia|4074749 +fluff|4074853 +fluff up|4075302 +fluffiness|4075352 +fluffy|4075404 +fluffy omelet|4075447 +flugelhorn|4075486 +fluid|4075524 +fluid drachm|4075742 +fluid dram|4075896 +fluid drive|4076052 +fluid mechanics|4076090 +fluid ounce|4076136 +fluidity|4076338 +fluidness|4076406 +fluidounce|4076474 +fluidram|4076596 +fluke|4076754 +flukey|4076907 +fluky|4076951 +flume|4076995 +flummery|4077050 +flummox|4077142 +flump|4077327 +flump down|4077445 +flunitrazepan|4077476 +flunk|4077518 +flunkey|4077552 +flunky|4077638 +fluor|4077725 +fluorapatite|4077767 +fluoresce|4077797 +fluorescein|4077821 +fluorescein isocyanate|4077925 +fluorescein isothiocyanate|4077997 +fluoresceine|4078069 +fluorescence|4078173 +fluorescence microscopy|4078233 +fluorescent|4078277 +fluorescent dye|4078330 +fluorescent lamp|4078434 +fluoridate|4078465 +fluoridation|4078521 +fluoride|4078582 +fluoridisation|4078607 +fluoridise|4078668 +fluoridization|4078724 +fluoridize|4078785 +fluorine|4078841 +fluorite|4078914 +fluoroboric acid|4078956 +fluoroboride|4078987 +fluorocarbon|4079014 +fluorocarbon plastic|4079047 +fluorochrome|4079085 +fluoroform|4079120 +fluoroscope|4079166 +fluoroscopy|4079216 +fluorosis|4079258 +fluorouracil|4079287 +fluorspar|4079324 +fluosilicate|4079366 +fluosilicic acid|4079393 +fluoxetine|4079446 +fluphenazine|4079517 +flurazepam|4079698 +flurazepam hydrochloride|4079854 +flurbiprofen|4080010 +flurry|4080112 +flush|4080294 +flush down|4081087 +flush it|4081123 +flush toilet|4081157 +flush-seamed|4081052 +flushed|4081238 +flushless toilet|4081358 +fluster|4081434 +flustered|4081573 +flute|4081639 +flute glass|4081799 +flute player|4081852 +fluting|4081923 +flutist|4081961 +flutter|4082032 +flutter kick|4082459 +fluttering|4082495 +fluvastatin|4082553 +fluvial|4082650 +flux|4082685 +flux applicator|4083089 +flux density|4083133 +flux density unit|4083204 +flux unit|4083256 +fluxing lime|4083308 +fluxion|4083409 +fluxmeter|4083444 +fly|4083469 +fly agaric|4084427 +fly ash|4084471 +fly ball|4084492 +fly blind|4084535 +fly bridge|4084571 +fly by|4084729 +fly casting|4084858 +fly contact|4084892 +fly front|4084930 +fly high|4084961 +fly honeysuckle|4085044 +fly in the face of|4085126 +fly in the ointment|4085199 +fly in the teeth of|4085268 +fly off the handle|4085341 +fly on|4085545 +fly open|4085570 +fly orchid|4085601 +fly poison|4085716 +fly rod|4085800 +fly sheet|4085842 +fly tent|4085897 +fly the coop|4085940 +fly-by-night|4084191 +fly-fish|4084285 +fly-fishing|4084398 +flyaway|4086092 +flyblown|4086140 +flybridge|4086293 +flycatcher|4086370 +flycatching warbler|4086513 +flyer|4086573 +flyfish|4086809 +flying|4086841 +flying bird|4087030 +flying boat|4087079 +flying bomb|4087120 +flying bridge|4087191 +flying buttress|4087268 +flying carpet|4087326 +flying cat|4087370 +flying colors|4087538 +flying colours|4087584 +flying dragon|4087630 +flying drainpipe|4087695 +flying dutchman|4087772 +flying field|4087963 +flying fish|4088036 +flying fox|4088088 +flying gecko|4088126 +flying gurnard|4088194 +flying horse|4088274 +flying jib|4088319 +flying lemur|4088343 +flying lizard|4088437 +flying mare|4088502 +flying marmot|4088552 +flying mouse|4088639 +flying opossum|4088709 +flying phalanger|4088791 +flying reptile|4088873 +flying robin|4088951 +flying saucer|4089031 +flying school|4089130 +flying squad|4089160 +flying squirrel|4089193 +flying start|4089275 +flyleaf|4089351 +flyover|4089379 +flypaper|4089454 +flypast|4089478 +flyspeck|4089553 +flyswat|4089677 +flyswatter|4089723 +flytrap|4089769 +flyway|4089791 +flyweight|4089844 +flywheel|4089910 +fm|4089938 +fmri|4090044 +fnma|4090132 +fo|4090217 +fo'c'sle|4090296 +foal|4090350 +foaled|4090419 +foam|4090440 +foam at the mouth|4090533 +foam rubber|4090584 +foamentation|4090653 +foamflower|4090692 +foaminess|4090795 +foaming|4090826 +foamy|4090990 +fob|4091180 +fob off|4091353 +focal|4091394 +focal distance|4091429 +focal epilepsy|4091475 +focal infection|4091526 +focal length|4091561 +focal point|4091607 +focal ratio|4091665 +focal seizure|4091719 +focalisation|4091763 +focalise|4091856 +focalization|4092066 +focalize|4092159 +focus|4092369 +focus on|4092919 +focused|4093058 +focusing|4093205 +focussed|4093355 +focussing|4093416 +fodder|4093517 +foe|4093565 +foehn|4093712 +foeman|4093764 +foeniculum|4093848 +foeniculum dulce|4093914 +foeniculum vulgare|4094005 +foeniculum vulgare dulce|4094073 +foetal|4094172 +foetal circulation|4094213 +foetal distress|4094300 +foetal monitor|4094382 +foetal movement|4094479 +foetid|4094549 +foetid bugbane|4094650 +foetid pothos|4094715 +foetology|4094821 +foetometry|4094882 +foetoprotein|4094954 +foetor|4094996 +foetoscope|4095120 +foetoscopy|4095162 +foetus|4095211 +fog|4095253 +fog up|4095475 +fogbank|4095506 +fogbound|4095527 +fogey|4095554 +fogged|4095632 +fogginess|4095661 +foggy|4095790 +foggy bottom|4095964 +foghorn|4096080 +foglamp|4096170 +fogsignal|4096206 +fogy|4096267 +fogyish|4096345 +fohn|4096427 +foible|4096479 +foie gras|4096599 +foil|4096641 +foiled|4096929 +foiling|4097012 +foist|4097074 +foist off|4097177 +folacin|4097218 +folate|4097388 +fold|4097558 +fold up|4098055 +foldable|4098119 +foldaway|4098178 +folded|4098237 +folded-up|4098385 +folder|4098411 +folderol|4098482 +folding|4098673 +folding chair|4098818 +folding door|4098847 +folding money|4098898 +foldout|4098957 +foliaceous|4098988 +foliage|4099091 +foliaged|4099173 +foliate|4099216 +foliated|4099460 +foliation|4099541 +folic acid|4099741 +folie|4099911 +folie a deux|4100011 +folio|4100109 +foliolate|4100228 +foliose|4100253 +folium|4100296 +folk|4100343 +folk art|4100637 +folk ballad|4100661 +folk dance|4100735 +folk dancer|4100850 +folk dancing|4100892 +folk etymology|4100940 +folk music|4100974 +folk poet|4101046 +folk singer|4101077 +folk song|4101175 +folk tale|4101330 +folk writer|4101470 +folklore|4101505 +folks|4101550 +folksong|4101919 +folksy|4101993 +folktale|4102055 +follicle|4102114 +follicle-stimulating hormone|4102145 +follicular|4102257 +folliculitis|4102289 +follies|4102338 +follow|4102618 +follow out|4103841 +follow suit|4103945 +follow through|4103974 +follow up|4104089 +follow up on|4104208 +follow-on|4103482 +follow-through|4103509 +follow-up|4103630 +follower|4104257 +followers|4104354 +following|4104527 +followup|4104775 +folly|4104907 +folsom culture|4105141 +foment|4105246 +fomentation|4105314 +fomenter|4105393 +fomes|4105479 +fomes igniarius|4105525 +fomite|4105580 +fomor|4105627 +fomorian|4105670 +fond|4105716 +fond regard|4105846 +fonda|4105947 +fondant|4106055 +fondle|4106078 +fondler|4106108 +fondling|4106154 +fondly|4106272 +fondness|4106296 +fondu|4106481 +fondue|4106527 +font|4106572 +font cartridge|4106660 +fontanel|4106724 +fontanelle|4106785 +fontanne|4106846 +fontenoy|4106895 +fonteyn|4106956 +food|4107028 +food additive|4107170 +food allergy|4107222 +food and agriculture organization|4107270 +food and agriculture organization of the united nations|4107439 +food and drug administration|4107630 +food bank|4107765 +food cache|4107789 +food chain|4107859 +food color|4107898 +food coloring|4108001 +food colour|4108104 +food colouring|4108207 +food company|4108310 +food cycle|4108340 +food elevator|4108388 +food faddist|4108436 +food fish|4108466 +food for thought|4108490 +food grain|4108586 +food hamper|4108642 +food manufacturer|4108670 +food market|4108719 +food poisoning|4108786 +food processor|4108871 +food product|4108913 +food pyramid|4108959 +food shop|4109000 +food stamp|4109048 +food turner|4109088 +food waste|4109141 +food web|4109231 +foodie|4109279 +foodless|4109354 +foodstuff|4109385 +fool|4109461 +fool around|4110333 +fool away|4110455 +fool's cap|4109950 +fool's errand|4110008 +fool's gold|4110057 +fool's huckleberry|4110105 +fool's paradise|4110178 +fool's parsley|4110261 +foolery|4110556 +foolhardiness|4110648 +foolhardy|4110726 +fooling|4110764 +foolish|4110794 +foolish woman|4111247 +foolishly|4111319 +foolishness|4111346 +foolproof|4111484 +foolscap|4111558 +foot|4111612 +foot brake|4112411 +foot doctor|4112464 +foot lever|4112538 +foot pedal|4112589 +foot race|4112640 +foot rot|4112758 +foot rule|4112812 +foot soldier|4112842 +foot traffic|4112976 +foot up|4113025 +foot-and-mouth disease|4112143 +foot-lambert|4112213 +foot-pound|4112255 +foot-poundal|4112307 +foot-ton|4112361 +footage|4113064 +football|4113132 +football coach|4113201 +football field|4113247 +football game|4113328 +football helmet|4113385 +football hero|4113417 +football league|4113467 +football official|4113510 +football play|4113546 +football player|4113574 +football score|4113642 +football season|4113672 +football stadium|4113704 +football team|4113782 +football tee|4113823 +footballer|4113857 +footbath|4113925 +footboard|4113972 +footbridge|4114013 +footcandle|4114076 +footed|4114114 +footedness|4114176 +footer|4114216 +footfall|4114329 +footfault|4114367 +footgear|4114392 +foothill|4114428 +foothills|4114451 +foothold|4114497 +footing|4114617 +footle|4114711 +footless|4114852 +footlight|4114894 +footlights|4114938 +footling|4115013 +footlocker|4115134 +footloose|4115167 +footman|4115191 +footmark|4115219 +footnote|4115263 +footpad|4115354 +footpath|4115420 +footplate|4115451 +footprint|4115479 +footprint evidence|4115593 +footrace|4115654 +footrest|4115691 +footslog|4115733 +footslogger|4115783 +footsore|4115845 +footstall|4115869 +footstep|4115912 +footsteps-of-spring|4116006 +footstool|4116074 +footsure|4116116 +footwall|4116152 +footwear|4116175 +footwork|4116260 +fop|4116365 +foppish|4116456 +for 24 hours|4116500 +for a bargain price|4116554 +for a song|4116608 +for a while|4116662 +for all intents and purposes|4116689 +for all practical purposes|4116781 +for all the world|4116873 +for any price|4116944 +for anything|4117015 +for certain|4117086 +for each one|4117166 +for each person|4117225 +for example|4117275 +for free|4117313 +for good|4117352 +for instance|4117381 +for love or money|4117419 +for sale|4117490 +for some reason|4117530 +for sure|4117562 +for the asking|4117664 +for the first time|4117698 +for the moment|4117731 +for the most part|4117773 +for the time being|4117814 +forage|4117856 +foraging|4118016 +foram|4118061 +foramen|4118108 +foramen magnum|4118144 +foramen of monro|4118183 +foraminifer|4118282 +foraminifera|4118329 +foray|4118396 +foray into|4118584 +forbear|4118654 +forbearance|4118740 +forbearing|4118814 +forbid|4118854 +forbiddance|4118980 +forbidden|4119073 +forbidden city|4119152 +forbidden fruit|4119267 +forbidding|4119314 +force|4119484 +force 17|4120384 +force back|4120485 +force feed|4120556 +force field|4120690 +force majeure|4120752 +force out|4120885 +force per unit area|4121316 +force pump|4121389 +force unit|4121414 +force-feed|4120186 +force-feed lubricating system|4120216 +force-land|4120350 +forced|4121459 +forced feeding|4121609 +forced landing|4121661 +forced sale|4121737 +forceful|4121823 +forcefulness|4122004 +forceless|4122065 +forcemeat|4122124 +forceps|4122167 +forceps delivery|4122194 +forces of umar al-mukhtar|4122250 +forcible|4122408 +forcing out|4122455 +forcipate|4122527 +ford|4122555 +ford hermann hueffer|4123117 +ford madox ford|4123203 +fordable|4123284 +fordhooks|4123310 +fording|4123349 +fore|4123380 +fore plane|4123801 +fore-and-aft|4123493 +fore-and-aft rig|4123537 +fore-and-aft sail|4123575 +fore-and-aft topsail|4123628 +fore-and-after|4123689 +fore-topmast|4123741 +fore-topsail|4123771 +forearm|4123863 +forebear|4123918 +forebode|4123989 +foreboding|4124091 +forebrain|4124290 +forecast|4124341 +forecaster|4124703 +forecasting|4124786 +forecastle|4124856 +foreclose|4124910 +foreclosure|4124988 +forecourt|4125049 +foredate|4125084 +foredeck|4125145 +foredoom|4125168 +forefather|4125208 +forefinger|4125304 +forefoot|4125350 +forefront|4125385 +foregather|4125489 +forego|4125549 +foregoing|4125599 +foregone|4125628 +foregone conclusion|4125679 +foreground|4125786 +foreground processing|4125915 +foregrounding|4125980 +forehand|4126045 +forehand drive|4126127 +forehand shot|4126157 +forehand stroke|4126212 +forehanded|4126267 +forehead|4126313 +foreign|4126400 +foreign agent|4126734 +foreign aid|4126778 +foreign bill|4126816 +foreign correspondent|4126892 +foreign direct investment|4126985 +foreign draft|4127062 +foreign exchange|4127138 +foreign intelligence service|4127185 +foreign intelligence surveillance act|4127316 +foreign intelligence surveillance court|4127430 +foreign legion|4127554 +foreign minister|4127585 +foreign mission|4127659 +foreign office|4127795 +foreign policy|4127828 +foreign service|4127859 +foreign terrorist organization|4127964 +foreign-born|4126694 +foreigner|4128066 +foreignness|4128170 +foreknow|4128223 +foreknowledge|4128273 +forelady|4128370 +foreland|4128409 +foreleg|4128534 +forelimb|4128560 +forelock|4128583 +foreman|4128645 +foremanship|4128716 +foremast|4128792 +foremilk|4128815 +foremost|4128848 +foremother|4128979 +forename|4129044 +forenoon|4129089 +forensic|4129167 +forensic medicine|4129196 +forensic pathology|4129269 +foreordain|4129342 +foreordained|4129440 +foreordination|4129500 +forepart|4129610 +forepaw|4129654 +foreperson|4129675 +foreplay|4129719 +forequarter|4129806 +forerunner|4129843 +foresail|4130016 +foresee|4130060 +foreseeable|4130207 +foreseen|4130240 +foreshadow|4130286 +foreshadowing|4130444 +foreshank|4130582 +foreshock|4130607 +foreshore|4130657 +foreshorten|4130707 +foreshow|4130813 +foresight|4130942 +foresighted|4131043 +foresightedness|4131125 +foresightful|4131188 +foresightfulness|4131270 +foreskin|4131333 +forest|4131414 +forest fire|4131576 +forest fire fighter|4131602 +forest goat|4131715 +forest god|4131779 +forest red gum|4131817 +forest tent caterpillar|4131875 +forestage|4131945 +forestall|4131987 +forestalling|4132083 +forestay|4132141 +forested|4132164 +forester|4132189 +forestiera|4132337 +forestiera neomexicana|4132368 +forestry|4132458 +foreswear|4132503 +foretaste|4132607 +foretell|4132655 +foretelling|4132953 +forethought|4133107 +forethoughtful|4133218 +foretoken|4133252 +foretold|4133308 +foretop|4133354 +forever|4133401 +forever and a day|4133487 +forevermore|4133521 +forewarn|4133550 +forewarning|4133581 +forewing|4133622 +forewoman|4133645 +foreword|4133702 +forfeit|4133751 +forfeited|4133954 +forfeiture|4133997 +forficate|4134110 +forficula|4134187 +forficula auricularia|4134248 +forficulidae|4134331 +forgather|4134403 +forge|4134463 +forged|4134855 +forger|4134897 +forgery|4135002 +forget|4135096 +forget me drug|4135314 +forget-me-not|4135239 +forgetful|4135410 +forgetful person|4135538 +forgetfulness|4135594 +forgettable|4135679 +forging|4135724 +forgivable|4135759 +forgivably|4135807 +forgive|4135847 +forgiveness|4135911 +forgiver|4135984 +forgiving|4136072 +forgivingness|4136171 +forgo|4136222 +forgoing|4136346 +forgotten|4136399 +forint|4136480 +fork|4136520 +fork out|4136785 +fork over|4136900 +fork up|4137015 +forked|4137130 +forked lightning|4137241 +forking|4137293 +forklift|4137389 +forlorn|4137430 +forlorn hope|4137498 +forlornness|4137550 +form|4137613 +form class|4138722 +form division|4138808 +form family|4138840 +form genus|4138868 +form letter|4138907 +form of government|4138943 +form-only|4138696 +formal|4139001 +formal garden|4139396 +formal logic|4139426 +formaldehyde|4139519 +formalin|4139563 +formalisation|4139597 +formalise|4139698 +formalised|4139805 +formalism|4139891 +formalistic|4140048 +formalities|4140107 +formality|4140369 +formalization|4140543 +formalize|4140644 +formalized|4140751 +formally|4140837 +formalness|4140886 +formalwear|4140939 +format|4141019 +formation|4141244 +formative|4141560 +formative cell|4141736 +formatted capacity|4141780 +formatting|4141817 +formed|4141889 +former|4142279 +former armed forces|4142428 +formerly|4142606 +formic|4142655 +formic acid|4142739 +formica|4142765 +formica fusca|4142852 +formica rufa|4142899 +formica sanguinea|4142961 +formicariidae|4143050 +formicarius|4143120 +formicary|4143182 +formicate|4143245 +formication|4143276 +formicidae|4143322 +formidability|4143388 +formidable|4143446 +formless|4143515 +formol|4143578 +formosa|4143612 +formosan|4143651 +formula|4143746 +formulaic|4143973 +formularise|4144005 +formularize|4144082 +formulary|4144159 +formulate|4144212 +formulated|4144531 +formulation|4144561 +fornax|4144729 +fornicate|4144766 +fornication|4144993 +fornicator|4145106 +fornicatress|4145164 +fornix|4145263 +forrad|4145361 +forrader|4145422 +forrard|4145477 +forsake|4145538 +forsaken|4145585 +forsaking|4145706 +forseti|4145808 +forssman antibody|4145845 +forswear|4145940 +forswearing|4146006 +forsythia|4146059 +fort|4146089 +fort george g. meade|4146396 +fort george gordon meade|4146497 +fort lauderdale|4146602 +fort meade|4146672 +fort myers|4146763 +fort smith|4146799 +fort ticonderoga|4146835 +fort up|4146905 +fort wayne|4146969 +fort worth|4147029 +fort-lamy|4146315 +fortaz|4147089 +forte|4147154 +forte-piano|4147369 +fortemente|4147471 +forth|4147502 +forthcoming|4147546 +forthcomingness|4147656 +forthright|4147742 +forthrightly|4147889 +forthrightness|4147930 +forthwith|4148009 +forties|4148132 +fortieth|4148247 +fortification|4148290 +fortified|4148404 +fortified wine|4148464 +fortify|4148498 +fortifying|4148664 +fortissimo|4148711 +fortitude|4148799 +fortnight|4148864 +fortnightly|4148927 +fortran|4149005 +fortran compiler|4149049 +fortran program|4149119 +fortress|4149214 +fortuitous|4149273 +fortuitously|4149340 +fortuitousness|4149403 +fortuity|4149453 +fortuna|4149528 +fortunate|4149565 +fortunately|4149789 +fortune|4149852 +fortune cookie|4150014 +fortune hunter|4150059 +fortune teller|4150133 +fortune telling|4150299 +fortunella|4150470 +fortunella japonica|4150536 +fortunella margarita|4150650 +fortuneteller|4150765 +fortunetelling|4150850 +forty|4150925 +forty winks|4151736 +forty-eight|4150991 +forty-eighth|4151031 +forty-fifth|4151066 +forty-first|4151100 +forty-five|4151134 +forty-four|4151215 +forty-fourth|4151252 +forty-nine|4151287 +forty-niner|4151322 +forty-ninth|4151378 +forty-one|4151412 +forty-second|4151447 +forty-seven|4151482 +forty-seventh|4151521 +forty-six|4151557 +forty-sixth|4151593 +forty-third|4151627 +forty-three|4151661 +forty-two|4151700 +forum|4151806 +forward|4151925 +forward market|4152651 +forward motion|4152766 +forward pass|4152877 +forward passer|4152945 +forward-looking|4152533 +forward-moving|4152597 +forwarding|4152989 +forwardness|4153097 +forwards|4153185 +fosamax|4153290 +fosbury|4153373 +fosbury flop|4153443 +fossa|4153488 +fossa cat|4153683 +fossa fossa|4153754 +fosse|4153812 +fossil|4153839 +fossil copal|4153946 +fossil fuel|4153992 +fossil oil|4154018 +fossiliferous|4154089 +fossilisation|4154119 +fossilise|4154243 +fossilised|4154344 +fossilist|4154395 +fossilization|4154470 +fossilize|4154594 +fossilized|4154695 +fossilology|4154746 +fossorial|4154808 +fossorial foot|4154837 +fossorial mammal|4154878 +foster|4154911 +foster care|4155638 +foster family|4155693 +foster home|4155751 +foster-brother|4155153 +foster-child|4155194 +foster-daughter|4155308 +foster-father|4155357 +foster-mother|4155425 +foster-nurse|4155462 +foster-parent|4155490 +foster-sister|4155550 +foster-son|4155594 +fosterage|4155807 +fostered|4155979 +fostering|4156033 +fosterling|4156205 +fothergilla|4156319 +fots|4156363 +foucault|4156491 +foucault pendulum|4156555 +foul|4156609 +foul ball|4157779 +foul line|4157803 +foul out|4157851 +foul play|4157874 +foul shot|4157929 +foul up|4158034 +foul-mouthed|4157452 +foul-smelling|4157492 +foul-spoken|4157593 +foul-up|4157633 +foul-weather gear|4157733 +foulard|4158242 +fouled|4158289 +foully|4158361 +foulmart|4158388 +foulness|4158481 +foumart|4158631 +found|4158724 +foundation|4159702 +foundation garment|4160155 +foundation stone|4160207 +founded|4160239 +founder|4160272 +foundering|4160607 +founding|4160647 +founding father|4160786 +foundling|4160922 +foundling hospital|4160975 +foundress|4161029 +foundry|4161088 +foundry proof|4161161 +fount|4161217 +fountain|4161289 +fountain grass|4161463 +fountain of youth|4161533 +fountain pen|4161628 +fountainhead|4161654 +fouquieria|4161759 +fouquieria columnaris|4161829 +fouquieria splendens|4161928 +fouquieriaceae|4162035 +four|4162119 +four flush|4164338 +four horsemen|4164407 +four hundred|4164449 +four o'clock|4164527 +four times|4164556 +four-card monte|4162259 +four-centered arch|4162323 +four-dimensional|4162367 +four-flusher|4162410 +four-footed|4162490 +four-footed butterfly|4162523 +four-four time|4162617 +four-hitter|4162696 +four-hundredth|4162754 +four-in-hand|4162792 +four-lane|4162876 +four-letter anglo-saxon word|4162905 +four-letter word|4162994 +four-lined leaf bug|4163054 +four-lined plant bug|4163150 +four-membered|4163246 +four-minute man|4163289 +four-o'clock family|4163320 +four-part harmony|4163444 +four-party|4163495 +four-ply|4163553 +four-poster|4163577 +four-pounder|4163602 +four-sided|4163660 +four-spot|4163718 +four-stroke engine|4163758 +four-stroke internal-combustion engine|4163856 +four-tailed bandage|4163954 +four-wheel|4163997 +four-wheel drive|4164052 +four-wheeled|4164159 +four-wheeler|4164214 +four-wing flying fish|4164275 +fourfold|4164584 +fourfold point correlation|4164689 +fourhanded|4164809 +fourier|4164833 +fourier analysis|4165020 +fourier series|4165090 +fourpence|4165136 +fourpenny|4165166 +fourpenny nail|4165191 +fourscore|4165220 +foursome|4165299 +foursquare|4165464 +fourteen|4165566 +fourteenth|4165628 +fourteenth amendment|4165673 +fourth|4165734 +fourth cranial nerve|4165965 +fourth crusade|4166047 +fourth deck|4166094 +fourth dimension|4166137 +fourth earl of chesterfield|4166178 +fourth earl of orford|4166311 +fourth estate|4166443 +fourth of july|4166540 +fourth part|4166634 +fourth power|4166742 +fourth stomach|4166802 +fourth ventricle|4166865 +fourth-year|4165932 +fourthly|4166901 +fovea|4166925 +fovea centralis|4166968 +foveal vision|4167011 +fowl|4167066 +fowl cholera|4167223 +fowl pest|4167299 +fowl run|4167333 +fowler|4167390 +fowling piece|4167483 +fox|4167525 +fox grape|4168141 +fox hole|4168220 +fox hunter|4168341 +fox hunting|4168397 +fox river|4168439 +fox shark|4168474 +fox squirrel|4168549 +fox talbot|4168620 +fox terrier|4168734 +fox-trot|4168002 +foxberry|4168763 +foxglove|4168875 +foxglove family|4168925 +foxhole|4169027 +foxhound|4169067 +foxhunt|4169101 +foxily|4169180 +foxiness|4169248 +foxtail|4169367 +foxtail barley|4169423 +foxtail grass|4169509 +foxtail millet|4169625 +foxtail orchid|4169718 +foxtrot|4169768 +foxy|4169893 +foyer|4169982 +fps|4170058 +fr|4170121 +fra filippo lippi|4170185 +fracas|4170247 +fractal|4170322 +fractal geometry|4170358 +fraction|4170393 +fractional|4170532 +fractional currency|4170665 +fractional distillation|4170735 +fractional monetary unit|4170801 +fractional process|4170857 +fractionate|4170918 +fractionation|4170964 +fractious|4171041 +fractiously|4171204 +fractiousness|4171246 +fracture|4171334 +fractured|4171638 +fradicin|4171664 +fragaria|4171739 +fragaria ananassa|4171799 +fragaria chiloensis|4171895 +fragaria vesca|4171991 +fragaria virginiana|4172073 +fragile|4172172 +fragile fern|4172249 +fragility|4172339 +fragment|4172410 +fragmental|4172563 +fragmentary|4172606 +fragmentation|4172649 +fragmentation bomb|4172791 +fragmented|4172876 +fragmentise|4172956 +fragmentize|4173053 +fragonard|4173150 +fragrance|4173209 +fragrant|4173389 +fragrant agrimony|4173529 +fragrant bedstraw|4173593 +fragrant cliff fern|4173698 +fragrant orchid|4173816 +fragrant shield fern|4173887 +fragrant sumac|4174005 +fragrant water lily|4174076 +fragrant wood fern|4174155 +fragrant woodsia|4174273 +frail|4174353 +frailness|4174565 +frailty|4174657 +fraise|4174775 +frambesia|4174848 +framboesia|4174902 +framboise|4174956 +frame|4175036 +frame buffer|4175771 +frame in|4175828 +frame of mind|4175883 +frame of reference|4175969 +frame up|4176123 +frame-up|4175723 +framed|4176168 +framer|4176191 +framework|4176258 +framing|4176399 +franc|4176508 +franc-tireur|4176537 +france|4176592 +frances eliza hodgson burnett|4176741 +frances elizabeth caroline willard|4176856 +frances hodgson burnett|4176973 +frances wright|4177082 +francesco petrarca|4177196 +franche-comte|4177266 +franchise|4177317 +franchise tax|4177515 +francis albert sinatra|4177571 +francis bacon|4177709 +francis beaumont|4177866 +francis crick|4177939 +francis drake|4178021 +francis edgar stanley|4178113 +francis everett townsend|4178204 +francis ferdinand|4178310 +francis ford coppola|4178380 +francis galton|4178486 +francis henry compton crick|4178576 +francis hopkinson|4178672 +francis ii|4178757 +francis joseph|4178826 +francis joseph i|4178917 +francis of assisi|4179010 +francis peyton rous|4179156 +francis poulenc|4179248 +francis richard stockton|4179306 +francis scott key|4179403 +francis scott key fitzgerald|4179473 +francis turbine|4179585 +francis turner palgrave|4179648 +franciscan|4179719 +franciscan order|4179800 +francisco de goya|4179864 +francisco fernandez cordoba|4180012 +francisco fernandez de cordova|4180144 +francisco franco|4180279 +francisco goya|4180381 +francisco jimenez de cisneros|4180526 +francisco jose de goya|4180680 +francisco jose de goya y lucientes|4180833 +francisco pizarro|4180998 +francisco villa|4181071 +francisella|4181195 +francisella tularensis|4181265 +francium|4181337 +franck|4181398 +franco|4181480 +franco-american|4181572 +franco-prussian war|4181622 +francoa|4181683 +francoa ramosa|4181740 +francois auguste rene rodin|4181901 +francois charles mauriac|4182026 +francois couperin|4182124 +francois de la rochefoucauld|4182196 +francois duvalier|4182294 +francois jacob|4182376 +francois mansart|4182432 +francois marie charles fourier|4182502 +francois mauriac|4182609 +francois maurice marie mitterand|4182699 +francois mitterand|4182835 +francois rabelais|4182957 +francois rene chateaubriand|4183038 +francois truffaut|4183188 +francois villon|4183289 +francois-marie arouet|4181818 +francoise d'aubigne|4183474 +francoise-athenais de rochechouart|4183342 +francophil|4183604 +francophile|4183701 +francophobe|4183799 +frangible|4183838 +frangipane|4183867 +frangipani|4183894 +frangipanni|4183937 +frank|4183980 +frank baum|4184267 +frank breech|4184335 +frank breech delivery|4184428 +frank capra|4184521 +frank cooper|4184607 +frank harris|4184704 +frank lloyd wright|4184780 +frank morrison spillane|4184853 +frank norris|4184949 +frank philip stella|4185034 +frank sinatra|4185111 +frank stella|4185240 +frank stockton|4185310 +frank winfield woolworth|4185397 +frankenstein|4185493 +frankenstein's monster|4185700 +frankfort|4185819 +frankfurt|4185960 +frankfurt on the main|4186050 +frankfurter|4186152 +frankfurter bun|4186232 +frankincense|4186277 +frankincense pine|4186330 +franking machine|4186408 +frankish|4186442 +franklin|4186477 +franklin delano roosevelt|4186712 +franklin pierce|4186952 +franklin roosevelt|4187098 +frankliniella|4187331 +frankliniella fusca|4187404 +frankly|4187489 +frankness|4187523 +frantic|4187641 +franz anton mesmer|4187742 +franz ferdinand|4187854 +franz josef i|4187922 +franz joseph|4188012 +franz joseph haydn|4188101 +franz joseph kline|4188176 +franz kafka|4188249 +franz kline|4188302 +franz lehar|4188368 +franz liszt|4188416 +franz peter schubert|4188485 +franz schubert|4188597 +franz seraph peter schubert|4188703 +franz werfel|4188822 +frap|4188878 +frappe|4188919 +fraser fir|4189001 +frasera|4189057 +frasera speciosa|4189127 +frat|4189223 +frat house|4189284 +fratercula|4189340 +fratercula arctica|4189399 +fratercula corniculata|4189469 +fraternal|4189545 +fraternal twin|4189658 +fraternisation|4189702 +fraternise|4189753 +fraternity|4189804 +fraternity house|4189933 +fraternization|4189989 +fraternize|4190040 +fratricide|4190091 +frau|4190206 +fraud|4190244 +fraud in fact|4190506 +fraud in law|4190550 +fraud in the factum|4190603 +fraud in the inducement|4190638 +fraudulence|4190677 +fraudulent|4190856 +fraudulent scheme|4190920 +fraught|4191008 +fraxinella|4191055 +fraxinus|4191143 +fraxinus americana|4191216 +fraxinus caroliniana|4191286 +fraxinus cuspidata|4191360 +fraxinus dipetala|4191434 +fraxinus excelsior|4191506 +fraxinus latifolia|4191599 +fraxinus nigra|4191687 +fraxinus oregona|4191779 +fraxinus ornus|4191865 +fraxinus pennsylvanica|4191941 +fraxinus pennsylvanica subintegerrima|4192027 +fraxinus quadrangulata|4192163 +fraxinus texensis|4192240 +fraxinus tomentosa|4192311 +fraxinus velutina|4192383 +fray|4192453 +frayed|4192628 +frazer|4192649 +frazzle|4192731 +freak|4192853 +freak out|4193027 +freakish|4193113 +freakishly|4193255 +freakishness|4193287 +freaky|4193347 +freckle|4193464 +freckled|4193527 +fred astaire|4193579 +fred hoyle|4193692 +fred sanger|4193759 +fred skinner|4193827 +fred zinnemann|4193922 +freddie mac|4194018 +frederic auguste bartholdi|4194113 +frederic francois chopin|4194226 +frederic william maitland|4194322 +frederick|4194418 +frederick barbarossa|4194452 +frederick carleton lewis|4194545 +frederick childe hassam|4194637 +frederick delius|4194723 +frederick douglass|4194782 +frederick i|4194867 +frederick ii|4194988 +frederick jackson turner|4195132 +frederick james furnivall|4195224 +frederick law olmsted|4195318 +frederick loewe|4195441 +frederick moore vinson|4195497 +frederick north|4195579 +frederick sanger|4195682 +frederick soddy|4195755 +frederick the great|4195810 +frederick william|4195890 +frederick william i|4195961 +frederick william ii|4196028 +frederick william iii|4196097 +frederick william iv|4196168 +fredericksburg|4196237 +frederico garcia lorca|4196316 +fredericton|4196416 +free|4196468 +free agency|4198432 +free agent|4198484 +free association|4198605 +free burning|4198683 +free central placentation|4198740 +free electron|4198788 +free enterprise|4198829 +free fall|4198915 +free form|4198984 +free french|4199026 +free grace|4199106 +free hand|4199157 +free house|4199196 +free kick|4199267 +free list|4199311 +free living|4199343 +free love|4199410 +free lunch|4199490 +free morpheme|4199515 +free nerve ending|4199557 +free of|4199607 +free of charge|4199640 +free pardon|4199679 +free people|4199743 +free phagocyte|4199776 +free port|4199825 +free press|4199879 +free radical|4199918 +free rein|4199953 +free soil party|4199985 +free spirit|4200048 +free state|4200145 +free thought|4200291 +free throw|4200331 +free throw lane|4200436 +free time|4200466 +free trade|4200544 +free trader|4200570 +free verse|4200645 +free weight|4200692 +free will|4200770 +free world|4200819 +free zone|4200897 +free-and-easy|4197509 +free-associate|4197548 +free-base|4197627 +free-enterprise|4197665 +free-for-all|4197745 +free-lance|4197801 +free-liver|4197834 +free-living|4197889 +free-range|4197948 +free-reed|4197990 +free-reed instrument|4198038 +free-soil|4198089 +free-spoken|4198123 +free-swimming|4198242 +free-tailed bat|4198283 +free-thinking|4198357 +freebee|4200939 +freebie|4200969 +freeboard deck|4200999 +freebooter|4201034 +freeborn|4201119 +freed|4201142 +freedman|4201220 +freedom|4201267 +freedom fighter|4201333 +freedom from cruel and unusual punishment|4201477 +freedom from discrimination|4201553 +freedom from double jeopardy|4201615 +freedom from involuntary servitude|4201678 +freedom from search and seizure|4201747 +freedom from self-incrimination|4201813 +freedom of assembly|4201916 +freedom of religion|4201970 +freedom of speech|4202024 +freedom of the press|4202076 +freedom of the seas|4202131 +freedom of thought|4202168 +freedom party|4202208 +freedom rider|4202334 +freedom to bear arms|4202419 +freedwoman|4202474 +freehand|4202521 +freehanded|4202559 +freehearted|4202683 +freehold|4202724 +freeholder|4202808 +freeing|4202864 +freelance|4202927 +freeload|4203039 +freeloader|4203085 +freemail|4203114 +freeman|4203161 +freemason|4203196 +freemasonry|4203239 +freesia|4203343 +freestanding|4203377 +freestone|4203417 +freestyle|4203449 +freetail|4203473 +freetailed bat|4203547 +freethinker|4203621 +freethinking|4203668 +freetown|4203765 +freeware|4203838 +freeway|4203906 +freewheel|4204012 +freewheeler|4204091 +freewheeling|4204188 +freewill|4204306 +freewoman|4204334 +freeze|4204369 +freeze down|4205117 +freeze off|4205165 +freeze out|4205247 +freeze-dried|4204895 +freeze-dry|4204968 +freeze-drying|4205002 +freezer|4205295 +freezing|4205377 +freezing mixture|4205500 +freezing point|4205534 +fregata|4205584 +fregatidae|4205634 +freight|4205695 +freight agent|4205928 +freight car|4205957 +freight elevator|4206015 +freight liner|4206072 +freight rate|4206129 +freight train|4206191 +freightage|4206243 +freighter|4206354 +fremont|4206430 +fremontia|4206512 +fremontodendron|4206617 +french|4206728 +french academy|4207183 +french and indian war|4207247 +french bean|4207312 +french blue|4207384 +french bracken|4207489 +french bread|4207611 +french bulldog|4207670 +french canadian|4207733 +french capital|4207783 +french chalk|4207877 +french congo|4207924 +french door|4208018 +french dressing|4208056 +french dressing for fruit salad|4208151 +french endive|4208270 +french foreign legion|4208363 +french foreign office|4208431 +french franc|4208512 +french fries|4208553 +french fritter|4208654 +french guinea|4208711 +french heel|4208805 +french honeysuckle|4208843 +french horn|4209000 +french indochina|4209044 +french kiss|4209159 +french knot|4209233 +french lavender|4209273 +french leave|4209409 +french lesson|4209479 +french loaf|4209532 +french marigold|4209584 +french oceania|4209649 +french omelet|4209716 +french pancake|4209765 +french pastry|4209908 +french people|4209952 +french person|4210025 +french polish|4210093 +french polynesia|4210207 +french region|4210276 +french republic|4210385 +french revolution|4210466 +french riviera|4210522 +french roof|4210587 +french rye|4210641 +french sorrel|4210759 +french spinach|4210898 +french sudan|4210980 +french teacher|4211068 +french telephone|4211126 +french toast|4211207 +french ultramarine|4211247 +french ultramarine blue|4211359 +french vermouth|4211476 +french weed|4211539 +french west indies|4211665 +french window|4211759 +french-fried potatoes|4206980 +french-fry|4207081 +french-speaking|4207114 +frenchify|4211808 +frenchman|4211892 +frenchwoman|4211956 +frenetic|4212022 +frenetically|4212076 +frenzied|4212110 +frenziedly|4212182 +frenzy|4212212 +frequence|4212278 +frequency|4212322 +frequency band|4212711 +frequency distribution|4212749 +frequency modulation|4212819 +frequency response|4212863 +frequency-response characteristic|4212449 +frequency-response curve|4212580 +frequent|4213013 +frequenter|4213192 +frequently|4213235 +fresco|4213284 +fresh|4213349 +fresh bean|4213931 +fresh breeze|4213963 +fresh fish|4214015 +fresh food|4214057 +fresh foods|4214094 +fresh gale|4214154 +fresh start|4214179 +fresh water|4214243 +fresh-cut|4213906 +freshen|4214274 +freshen up|4214415 +freshener|4214511 +fresher|4214536 +freshet|4214590 +freshly|4214626 +freshman|4214713 +freshman class|4214895 +freshness|4214930 +freshwater|4215130 +freshwater bass|4215156 +freshwater bream|4215214 +freshwater clam|4215295 +freshwater cordgrass|4215345 +freshwater eel|4215447 +freshwater fish|4215486 +freshwater limpet|4215519 +freshwater mussel|4215598 +fresnel|4215648 +fresnel lens|4215705 +fresno|4215763 +fress|4215815 +fret|4215856 +fretful|4216589 +fretfulness|4216700 +fretsaw|4216814 +fretted|4216878 +fretwork|4216979 +freud|4217041 +freudian|4217123 +freudian psychology|4217196 +freudian slip|4217293 +frey|4217361 +freya|4217398 +freyja|4217438 +freyr|4217479 +frg|4217517 +fri|4217615 +friability|4217647 +friable|4217693 +friar|4217745 +friar preacher|4217939 +friar's lantern|4217830 +friar's-cowl|4217780 +friary|4218012 +fricandeau|4218038 +fricassee|4218080 +fricative|4218116 +fricative consonant|4218224 +frick|4218303 +friction|4218355 +friction clutch|4218482 +friction match|4218514 +friction tape|4218582 +frictional|4218635 +frictionless|4218665 +friday|4218697 +fridge|4218732 +fridtjof nansen|4218790 +fried|4218890 +fried egg|4218923 +fried rice|4218947 +friedan|4218991 +friedcake|4219105 +friedman|4219129 +friedman test|4219198 +friedreich's ataxia|4219262 +friedrich anton mesmer|4219374 +friedrich august kekule|4219490 +friedrich august kekule von stradonitz|4219601 +friedrich august von hayek|4219727 +friedrich august wolf|4219822 +friedrich engels|4219909 +friedrich froebel|4219969 +friedrich gottlieb klopstock|4220074 +friedrich hebbel|4220156 +friedrich krupp|4220254 +friedrich max muller|4220315 +friedrich wilhelm august froebel|4220407 +friedrich wilhelm bessel|4220527 +friedrich wilhelm nietzsche|4220640 +friend|4220727 +friend of the court|4221014 +friendless|4221084 +friendlessness|4221121 +friendliness|4221158 +friendly|4221218 +friendly fire|4221573 +friendly islands|4221619 +friendly relationship|4221704 +friendly takeover|4221759 +friendship|4221795 +friendship plant|4221850 +frier|4221919 +fries|4221971 +friesian|4222289 +friesland|4222400 +frieze|4222533 +frig around|4222609 +frigate|4222777 +frigate bird|4222863 +frigg|4222922 +frigga|4222962 +fright|4223003 +frighten|4223112 +frighten away|4223290 +frighten off|4223389 +frightened|4223488 +frightening|4223591 +frighteningly|4223766 +frightful|4223796 +frightfully|4223908 +frightfulness|4223951 +frigid|4224021 +frigid zone|4224139 +frigidity|4224197 +frigidly|4224289 +frigorific|4224315 +frijol|4224340 +frijole|4224425 +frijoles refritos|4224529 +frijolillo|4224575 +frijolito|4224654 +frill|4224733 +frilled|4224782 +frilled lizard|4224832 +frills|4224898 +frilly|4225053 +frimaire|4225103 +fringe|4225159 +fringe benefit|4225431 +fringe bush|4225479 +fringe cups|4225535 +fringe tree|4225614 +fringe-toed lizard|4225369 +fringed|4225640 +fringed gecko|4225714 +fringed gentian|4225782 +fringed grass of parnassus|4225815 +fringed loosestrife|4225921 +fringed orchid|4225982 +fringed orchis|4226047 +fringed pink|4226112 +fringed polygala|4226228 +fringed poppy mallow|4226331 +fringepod|4226393 +fringilla|4226442 +fringilla coelebs|4226498 +fringilla montifringilla|4226559 +fringillidae|4226634 +fringy|4226701 +frippery|4226737 +frisbee|4226817 +frisch|4226866 +frisia|4227076 +frisian|4227171 +frisian islands|4227368 +frisk|4227421 +friskiness|4227574 +frisking|4227638 +frisky|4227682 +frisson|4227716 +fritillaria|4227799 +fritillaria affinis|4227871 +fritillaria agrestis|4228024 +fritillaria biflora|4228112 +fritillaria imperialis|4228218 +fritillaria lanceolata|4228314 +fritillaria liliaceae|4228470 +fritillaria meleagris|4228566 +fritillaria micrantha|4228717 +fritillaria mutica|4228831 +fritillaria parviflora|4228983 +fritillaria pluriflora|4229098 +fritillaria recurva|4229206 +fritillary|4229300 +frittata|4229431 +fritter|4229454 +fritter away|4229572 +fritter batter|4229673 +fritz albert lipmann|4229704 +fritz haber|4229774 +fritz kreisler|4229821 +fritz w. meissner|4229887 +friuli|4229951 +friuli-venezia giulia|4230013 +friulian|4230081 +frivol|4230145 +frivol away|4230182 +frivolity|4230283 +frivolous|4230489 +frivolousness|4230674 +frizz|4230713 +frizzle|4230771 +frizzly|4230840 +frizzy|4230888 +frobisher|4230936 +frock|4231016 +frock coat|4231126 +froebel|4231151 +froelichia|4231246 +frog|4231320 +frog kick|4231756 +frog legs|4231789 +frog orchid|4231813 +frog's lettuce|4231723 +frog's-bit|4231459 +frog's-bit family|4231567 +frogbit|4231913 +frogbit family|4232021 +frogfish|4232177 +froghopper|4232230 +frogman|4232276 +frogmarch|4232336 +frogmouth|4232373 +frogs|4232412 +frolic|4232583 +frolicky|4232737 +frolicsome|4232802 +frolicsomeness|4232867 +from each one|4232931 +from head to toe|4232990 +from nowhere|4233025 +from pillar to post|4233077 +from time to time|4233124 +from way back|4233227 +fromental halevy|4233271 +frond|4233369 +front|4233405 +front bench|4234505 +front burner|4234531 +front crawl|4234584 +front door|4234644 +front end|4234706 +front entrance|4234750 +front line|4234812 +front man|4234855 +front matter|4234973 +front porch|4235010 +front projector|4235037 +front room|4235072 +front tooth|4235149 +front yard|4235185 +front-porch campaign|4233966 +front-porch campaigning|4234088 +front-runner|4234210 +front-stall|4234301 +frontage|4235228 +frontage road|4235298 +frontal|4235358 +frontal area|4235546 +frontal bone|4235613 +frontal cortex|4235670 +frontal eminence|4235737 +frontal gyrus|4235862 +frontal lobe|4235903 +frontal lobotomy|4235930 +frontal sinus|4236061 +frontal suture|4236090 +frontbencher|4236159 +frontier|4236192 +frontier settlement|4236365 +frontiersman|4236420 +frontierswoman|4236476 +frontispiece|4236508 +frontlet|4236567 +frontmost|4236603 +frontstall|4236637 +frontward|4236760 +frontwards|4236821 +frore|4236882 +frost|4236902 +frost fish|4237492 +frost heave|4237565 +frost heaving|4237622 +frost mist|4237679 +frost over|4237772 +frost snow|4237815 +frost's bolete|4237112 +frost-bound|4237174 +frost-weed|4237202 +frostbite|4237908 +frostbitten|4237961 +frosted|4237989 +frosted bat|4238013 +frostian|4238086 +frostily|4238117 +frostiness|4238143 +frosting|4238226 +frostweed|4238262 +frostwort|4238472 +frosty|4238589 +froth|4238711 +froth at the mouth|4238811 +frothiness|4238862 +frothing|4238919 +frothy|4239020 +frottage|4239113 +frotteur|4239163 +froward|4239201 +frown|4239268 +frown line|4239379 +frown on|4239439 +frown upon|4239479 +frowning|4239519 +frowsty|4239548 +frowsy|4239600 +frowzled|4239639 +frowzy|4239703 +frozen|4239742 +frozen custard|4240050 +frozen dessert|4240104 +frozen food|4240149 +frozen foods|4240206 +frozen metaphor|4240305 +frozen orange juice|4240353 +frozen pudding|4240432 +frozen yogurt|4240471 +frs|4240533 +fructidor|4240665 +fructification|4240723 +fructify|4240836 +fructose|4240979 +fructosuria|4241039 +frugal|4241071 +frugality|4241130 +frugalness|4241169 +fruit|4241208 +fruit bar|4241375 +fruit bat|4241415 +fruit cocktail|4241458 +fruit compote|4241491 +fruit crush|4241543 +fruit custard|4241609 +fruit drink|4241640 +fruit fly|4241698 +fruit grower|4241782 +fruit juice|4241843 +fruit machine|4241909 +fruit of the poisonous tree|4241954 +fruit punch|4242008 +fruit salad|4242035 +fruit sugar|4242062 +fruit tree|4242122 +fruit-eating|4241328 +fruitage|4242176 +fruitcake|4242207 +fruiterer|4242330 +fruitful|4242390 +fruitfully|4242603 +fruitfulness|4242646 +fruiting|4242745 +fruiting body|4242770 +fruition|4242805 +fruitless|4242905 +fruitlessly|4242969 +fruitlessness|4243017 +fruitlet|4243089 +fruitwood|4243113 +fruity|4243137 +frumenty|4243334 +frump|4243363 +frumpily|4243418 +frumpish|4243454 +frumpishly|4243509 +frumpy|4243545 +frunze|4243600 +frustrate|4243668 +frustrated|4243893 +frustrating|4243976 +frustration|4244063 +frustrative|4244194 +frustum|4244261 +fruticose|4244284 +fruticulose|4244322 +fry|4244360 +fry bread|4244642 +fry cook|4244687 +frye|4244710 +fryer|4244780 +frying|4244832 +frying pan|4244885 +frypan|4244936 +fsb|4244987 +fsh|4245113 +ft|4245229 +ft-l|4245258 +ftc|4245305 +fthm|4245366 +fto|4245533 +ftp|4245639 +fucaceae|4245732 +fucales|4245793 +fuchs|4245845 +fuchsia|4245912 +fuchsia coccinea|4245968 +fuchsia excorticata|4246083 +fuck|4246175 +fuck all|4246651 +fuck off|4246788 +fuck up|4247087 +fucked-up|4247295 +fucker|4247346 +fuckhead|4247460 +fucking|4247603 +fuckup|4247910 +fucoid|4248116 +fucoid algae|4248171 +fucus|4248212 +fucus serratus|4248236 +fucus vesiculosus|4248307 +fuddle|4248408 +fuddled|4248580 +fuddy-duddy|4248811 +fudge|4248859 +fudge factor|4249031 +fudge sauce|4249084 +fudge together|4249153 +fuego|4249212 +fuel|4249241 +fuel cell|4249583 +fuel consumption rate|4249621 +fuel filter|4249695 +fuel gauge|4249723 +fuel indicator|4249768 +fuel injection|4249813 +fuel injection system|4249877 +fuel level|4249941 +fuel line|4249987 +fuel oil|4250034 +fuel pod|4250073 +fuel system|4250105 +fuel-air bomb|4249418 +fuel-air explosive|4249534 +fueled|4250136 +fueling|4250190 +fuentes|4250244 +fuerzas armadas revolucionarios de colombia|4250298 +fug|4250513 +fugacious|4250555 +fugaciousness|4250647 +fugacity|4250716 +fugal|4250810 +fugard|4250854 +fuggy|4250911 +fugitive|4250939 +fugitive from justice|4251131 +fugleman|4251210 +fugo|4251235 +fugu|4251272 +fugue|4251312 +fuji|4251444 +fuji cherry|4251632 +fuji-san|4251561 +fujinoyama|4251689 +fujiyama|4251762 +fukien|4251833 +fukkianese|4251917 +fukuoka|4252005 +ful|4252059 +fula|4252106 +fulah|4252201 +fulani|4252256 +fulbe|4252353 +fulbright|4252408 +fulcrum|4252487 +fulfil|4252514 +fulfill|4252753 +fulfilled|4252990 +fulfillment|4253021 +fulfilment|4253097 +fulgent|4253174 +fulgid|4253238 +fulgoridae|4253364 +fulgurant|4253430 +fulgurating|4253491 +fulgurous|4253518 +fulica|4253579 +fulica americana|4253626 +fulica atra|4253716 +full|4253769 +full admiral|4255642 +full blood|4255685 +full complement|4255731 +full cousin|4255807 +full dress|4255880 +full employment|4256019 +full gainer|4256083 +full general|4256123 +full house|4256169 +full metal jacket|4256200 +full moon|4256239 +full moon maple|4256316 +full nelson|4256377 +full of life|4256413 +full page|4256463 +full phase of the moon|4256487 +full point|4256564 +full professor|4256641 +full radiator|4256680 +full service bank|4256739 +full skirt|4256852 +full stop|4256878 +full term|4256955 +full treatment|4256999 +full-blood|4254497 +full-blooded|4254547 +full-blown|4254637 +full-bodied|4254688 +full-bosomed|4254730 +full-clad|4254833 +full-dress|4254873 +full-dress uniform|4254942 +full-face|4254987 +full-fashioned|4255031 +full-fledged|4255079 +full-grown|4255163 +full-length|4255226 +full-of-the-moon|4255289 +full-page|4255366 +full-scale|4255391 +full-size|4255428 +full-strength|4255483 +full-term|4255530 +full-time|4255566 +full-wave rectifier|4255603 +fullback|4257185 +fuller|4257240 +fuller's earth|4257432 +fuller's teasel|4257466 +fullerene|4257529 +fullness|4257573 +fully|4257753 +fully fashioned|4257810 +fully fledged|4257858 +fully grown|4257941 +fulmar|4258004 +fulmar petrel|4258060 +fulmarus|4258116 +fulmarus glacialis|4258169 +fulminant|4258244 +fulminate|4258270 +fulminate of mercury|4258380 +fulminating mercury|4258458 +fulmination|4258536 +fulminic acid|4258615 +fulsome|4258643 +fulsomely|4258710 +fulsomeness|4258748 +fulton|4258867 +fulvic acid|4258934 +fulvicin|4258971 +fumaria|4259090 +fumaria claviculata|4259151 +fumaria fungosa|4259272 +fumaria officinalis|4259367 +fumaria sempervirens|4259465 +fumariaceae|4259595 +fumaric acid|4259686 +fumble|4259713 +fumbler|4260110 +fumbling|4260225 +fume|4260281 +fumed|4260447 +fumed oak|4260470 +fumeroot|4260493 +fumes|4260630 +fumewort|4260745 +fumigant|4260882 +fumigate|4260909 +fumigation|4260946 +fumimaro konoe|4260995 +fumimaro konoye|4261140 +fumitory|4261286 +fumitory family|4261364 +fun|4261443 +fun run|4261659 +funafuti|4261787 +funambulist|4261831 +function|4261877 +function call|4262318 +function word|4262346 +functional|4262392 +functional anatomy|4262642 +functional calculus|4262733 +functional disorder|4262828 +functional genomics|4262872 +functional illiterate|4262910 +functional magnetic resonance imaging|4262980 +functionalism|4263063 +functionalist|4263174 +functionality|4263251 +functionally illiterate|4263287 +functionary|4263331 +functioning|4263391 +fund|4263501 +fund raise|4264438 +fund-raise|4263884 +fund-raising campaign|4264093 +fund-raising drive|4264208 +fund-raising effort|4264323 +fundament|4264647 +fundamental|4265017 +fundamental frequency|4265213 +fundamental interaction|4265280 +fundamental law|4265345 +fundamental measure|4265399 +fundamental particle|4265473 +fundamental principle|4265551 +fundamental quantity|4265636 +fundamentalism|4265710 +fundamentalist|4265748 +fundamentalistic|4265820 +fundamentally|4265874 +fundamentals|4265937 +funded|4266087 +funding|4266110 +fundraise|4266213 +fundraiser|4266260 +funds|4266364 +fundulus|4266614 +fundulus heteroclitus|4266667 +fundulus majalis|4266740 +fundus|4266828 +funeral|4266925 +funeral chapel|4267120 +funeral church|4267247 +funeral director|4267374 +funeral home|4267470 +funeral march|4267597 +funeral parlor|4267668 +funeral parlour|4267795 +funeral pyre|4267922 +funeral undertaker|4267973 +funeral-residence|4266993 +funerary|4268069 +funereal|4268137 +funfair|4268174 +fungal|4268274 +fungal infection|4268320 +fungi|4268362 +fungi imperfecti|4268506 +fungia|4268642 +fungibility|4268697 +fungible|4268802 +fungicidal|4268868 +fungicide|4268904 +fungoid|4268987 +fungous|4269037 +fungus|4269083 +fungus family|4269122 +fungus genus|4269152 +fungus gnat|4269180 +fungus kingdom|4269331 +fungus order|4269383 +funguslike|4269411 +funicle|4269461 +funicular|4269499 +funicular railway|4269620 +funiculitis|4269730 +funiculus|4269778 +funk|4269904 +funk hole|4270035 +funka|4270068 +funkaceae|4270140 +funky|4270235 +funnel|4270386 +funnel shape|4270618 +funnel web|4270670 +funnel-crest rosebud orchid|4270498 +funnily|4270714 +funnily enough|4270760 +funniness|4270851 +funny|4270910 +funny bone|4271189 +funny farm|4271261 +funny house|4271498 +funny story|4271735 +funny wagon|4271792 +funrun|4271823 +fuqra|4271870 +fur|4271996 +fur coat|4272089 +fur hat|4272112 +fur seal|4272145 +fur-piece|4272060 +furan|4272192 +furane|4272240 +furbelow|4272288 +furbish|4272337 +furbish up|4272402 +furcate|4272511 +furcation|4272564 +furcula|4272616 +furfural|4272641 +furfuraldehyde|4272697 +furfuran|4272753 +furious|4272801 +furiousness|4272943 +furl|4273041 +furled|4273095 +furlike|4273124 +furlong|4273155 +furlough|4273184 +furnace|4273367 +furnace lining|4273392 +furnace room|4273434 +furnariidae|4273461 +furnarius|4273525 +furnish|4273581 +furnished|4273654 +furnished with|4273821 +furnishings|4273892 +furniture|4273998 +furniture company|4274069 +furniture maker|4274104 +furnivall|4274170 +furor|4274248 +furore|4274324 +furosemide|4274399 +furred|4274459 +furrier|4274495 +furring|4274566 +furring strip|4274618 +furrow|4274655 +furrowed|4274863 +furry|4274952 +furry tongue|4274988 +further|4275048 +furtherance|4275286 +furthermore|4275392 +furthermost|4275434 +furthest|4275506 +furtive|4275608 +furtively|4275723 +furtiveness|4275752 +furuncle|4275821 +furunculosis|4275869 +fury|4275966 +furze|4276225 +fusain|4276289 +fusanus|4276332 +fusanus acuminatus|4276415 +fusarium wilt|4276517 +fuscoboletinus|4276558 +fuscoboletinus paluster|4276631 +fuscoboletinus serotinus|4276695 +fuscous|4276761 +fuse|4276794 +fused|4277089 +fusee|4277157 +fusee drive|4277319 +fusel oil|4277352 +fuselage|4277375 +fusible|4277398 +fusible metal|4277439 +fusiform|4277474 +fusil|4277528 +fusilier|4277550 +fusillade|4277613 +fusion|4277685 +fusion bomb|4277980 +fusion cooking|4278061 +fusion reactor|4278113 +fuss|4278183 +fuss-budget|4278528 +fussiness|4278619 +fusspot|4278765 +fussy|4278856 +fustian|4279008 +fusty|4279139 +futile|4279249 +futility|4279358 +futon|4279411 +futtock shroud|4279435 +future|4279501 +future day|4279860 +future perfect|4279894 +future perfect tense|4279989 +future progressive|4280084 +future progressive tense|4280210 +future tense|4280336 +futureless|4280371 +futures contract|4280400 +futures exchange|4280459 +futures market|4280574 +futurism|4280689 +futurist|4280771 +futuristic|4280925 +futuristics|4280984 +futurity|4281119 +futurology|4281186 +fuze|4281321 +fuzee|4281397 +fuzz|4281534 +fuzzed|4281751 +fuzziness|4281787 +fuzzy|4281861 +fuzzy logic|4281972 +fws|4282040 +fyodor dostoevski|4282190 +fyodor dostoevsky|4282563 +fyodor dostoyevsky|4282936 +fyodor mikhailovich dostoevski|4283310 +fyodor mikhailovich dostoevsky|4283696 +fyodor mikhailovich dostoyevsky|4284082 +g|4284469 +g clef|4285602 +g suit|4285642 +g-force|4284907 +g-jo|4284941 +g-man|4284990 +g-string|4285053 +g. b. shaw|4285180 +g. e. moore|4285271 +g. k. chesterton|4285342 +g. r. kirchhoff|4285435 +g. stanley hall|4285520 +ga|4285691 +gaap|4285869 +gab|4285975 +gaba|4286112 +gabardine|4286202 +gabble|4286342 +gabbro|4286542 +gabby|4286571 +gaberdine|4286638 +gabfest|4286699 +gable|4286836 +gable end|4286965 +gable roof|4287006 +gable wall|4287070 +gabled|4287111 +gabon|4287134 +gabon franc|4287210 +gabonese|4287249 +gabonese republic|4287330 +gaboon viper|4287418 +gabor|4287461 +gaboriau|4287505 +gaborone|4287561 +gabriel|4287625 +gabriel daniel fahrenheit|4287660 +gabriel lippmann|4287742 +gabriel tellez|4287804 +gabun|4287880 +gad|4287956 +gadaba|4288159 +gadabout|4288224 +gaddafi|4288266 +gaddi|4288360 +gadfly|4288383 +gadget|4288469 +gadgeteer|4288557 +gadgetry|4288605 +gadidae|4288695 +gadiformes|4288747 +gadoid|4288808 +gadoid fish|4288869 +gadolinite|4288930 +gadolinium|4288968 +gadsden|4289031 +gadus|4289061 +gadus macrocephalus|4289105 +gadus merlangus|4289189 +gadus morhua|4289277 +gaea|4289337 +gael|4289376 +gaelic|4289405 +gaelic-speaking|4289494 +gaetan vestris|4289563 +gaetano donizetti|4289637 +gaff|4289701 +gaff topsail|4289785 +gaff-headed sail|4289732 +gaffe|4289846 +gaffer|4289965 +gaffsail|4290138 +gafsa|4290191 +gag|4290241 +gag law|4290600 +gag line|4290716 +gag order|4290770 +gag reflex|4290801 +gag rule|4290937 +gaga|4291042 +gagarin|4291166 +gage|4291259 +gaggle|4291501 +gagman|4291537 +gagster|4291624 +gagwriter|4291672 +gai choi|4291720 +gaia|4291806 +gaiety|4291845 +gaillardia|4291907 +gaillardia pulchella|4291950 +gain|4292064 +gain ground|4292586 +gain vigor|4292658 +gainer|4292739 +gainesville|4292913 +gainful|4292951 +gaining control|4292991 +gainlessly|4293050 +gainly|4293095 +gainsay|4293120 +gainsborough|4293178 +gaiseric|4293241 +gait|4293295 +gaiter|4293364 +gaius|4293464 +gaius caesar|4293537 +gaius cassius longinus|4293617 +gaius flaminius|4293729 +gaius julius caesar|4293833 +gaius julius caesar octavianus|4293956 +gaius octavianus|4294124 +gaius petronius|4294278 +gaius plinius caecilius secundus|4294361 +gaius plinius secundus|4294474 +gaius valerius catullus|4294565 +gal|4294636 +gala|4294759 +gala affair|4294863 +galactagogue|4294928 +galactic|4294956 +galactocele|4295057 +galactose|4295083 +galactosemia|4295133 +galactosis|4295182 +galago|4295223 +galahad|4295264 +galan|4295352 +galangal|4295387 +galantine|4295466 +galanty show|4295490 +galapagos|4295541 +galapagos islands|4295595 +galatea|4295657 +galatia|4295697 +galatian|4295794 +galatians|4295826 +galax|4295951 +galax urceolata|4296043 +galaxy|4296151 +galbanum|4296372 +galbraith|4296406 +galbulidae|4296520 +galbulus|4296581 +gale|4296623 +galea|4296669 +galega|4296696 +galega officinalis|4296750 +galen|4296839 +galena|4296870 +galeocerdo|4296894 +galeocerdo cuvieri|4296953 +galeopsis|4297026 +galeopsis tetrahit|4297091 +galeorhinus|4297184 +galeorhinus zyopterus|4297246 +galeras|4297344 +galere|4297383 +galicia|4297461 +galician|4297558 +galictis vittatus|4297596 +galiella rufa|4297700 +galilaean|4297760 +galilean|4297969 +galilean satellite|4298270 +galilean telescope|4298336 +galilee|4298404 +galileo|4298501 +galileo galilei|4298575 +galina sergeevna ulanova|4298657 +galina ulanova|4298766 +galingale|4298865 +galium|4298914 +galium aparine|4298970 +galium boreale|4299073 +galium lanceolatum|4299162 +galium mollugo|4299232 +galium odoratum|4299356 +galium verum|4299477 +gall|4299573 +gall gnat|4300052 +gall midge|4300144 +gall of the earth|4300236 +gall wasp|4300341 +gall-berry|4299892 +gallamine|4300404 +gallant|4300477 +gallant fox|4300741 +gallantly|4300787 +gallantry|4300818 +gallaudet|4300984 +gallberry|4301057 +gallbladder|4301136 +galled|4301172 +galleon|4301203 +galleria|4301248 +galleria mellonella|4301306 +gallery|4301394 +galley|4301565 +galley proof|4301686 +galley slave|4301741 +gallfly|4301831 +gallia|4301990 +galliano|4302090 +gallic|4302133 +gallic acid|4302280 +gallicism|4302306 +galliformes|4302349 +gallina|4302413 +gallinacean|4302472 +gallinaceous|4302516 +gallinaceous bird|4302578 +gallinago|4302622 +gallinago gallinago|4302700 +gallinago gallinago delicata|4302780 +gallinago media|4302868 +galling|4302942 +gallinula|4303082 +gallinula chloropus|4303138 +gallinula chloropus cachinnans|4303234 +gallinule|4303362 +gallirallus|4303423 +gallium|4303485 +gallivant|4303545 +gallon|4303652 +gallop|4303774 +gallop rhythm|4303852 +galloping|4303922 +gallous|4303945 +galloway|4304027 +gallows|4304136 +gallows bird|4304381 +gallows tree|4304421 +gallows-tree|4304218 +gallstone|4304584 +gallup|4304633 +gallus|4304661 +gallus gallus|4304773 +galois|4304902 +galois theory|4304955 +galoot|4305005 +galore|4305036 +galosh|4305083 +galsworthy|4305137 +galton|4305198 +galtonia candicans|4305280 +galumph|4305387 +galvani|4305427 +galvanic|4305479 +galvanic battery|4305565 +galvanic cell|4305632 +galvanic pile|4305700 +galvanic skin response|4305766 +galvanisation|4305930 +galvanise|4306062 +galvaniser|4306212 +galvanising|4306307 +galvanism|4306367 +galvanization|4306449 +galvanize|4306581 +galvanized iron|4306731 +galvanizer|4306781 +galvanizing|4306876 +galvanometer|4306936 +galveston|4306964 +galveston bay|4306998 +galveston island|4307039 +galway|4307089 +galway bay|4307176 +galwegian|4307211 +gamal abdel nasser|4307288 +gambelia|4307374 +gambia|4307430 +gambian|4307518 +gambian monetary unit|4307596 +gambier islands|4307663 +gambit|4307716 +gamble|4307848 +gambler|4308024 +gambling|4308132 +gambling casino|4308246 +gambling contract|4308333 +gambling den|4308369 +gambling game|4308491 +gambling hell|4308555 +gambling house|4308677 +gambling system|4308799 +gamboge|4308847 +gamboge tree|4308924 +gambol|4309037 +gambrel|4309191 +gambrel roof|4309271 +gambusia|4309351 +gambusia affinis|4309404 +game|4309507 +game bird|4309986 +game equipment|4310040 +game fish|4310074 +game fowl|4310109 +game law|4310155 +game license|4310194 +game misconduct|4310286 +game of chance|4310319 +game plan|4310383 +game room|4310441 +game show|4310506 +game theory|4310562 +game warden|4310617 +gamebag|4310674 +gameboard|4310695 +gamecock|4310728 +gamekeeper|4310842 +gamelan|4310899 +gameness|4310925 +games-master|4311010 +games-mistress|4311076 +gamesmanship|4311142 +gametangium|4311184 +gamete|4311228 +gametocyte|4311281 +gametoecium|4311306 +gametogenesis|4311350 +gametophore|4311432 +gametophyte|4311476 +gamey|4311520 +gamin|4311699 +gaminess|4311762 +gaming|4311819 +gaming card|4311875 +gaming house|4311909 +gaming table|4312031 +gamma|4312059 +gamma acid|4312236 +gamma aminobutyric acid|4312261 +gamma globulin|4312346 +gamma hydroxybutyrate|4312415 +gamma iron|4312460 +gamma radiation|4312505 +gamma ray|4312612 +gamma-interferon|4312199 +gammon|4312719 +gammopathy|4312771 +gammy|4312801 +gamopetalous|4312822 +gamow|4312882 +gamp|4312926 +gamut|4312956 +gamy|4313036 +gan jiang|4313217 +ganapati|4313262 +gand|4313323 +gand flower|4313387 +gander|4313451 +gandhi|4313473 +gandhian|4313666 +gandy dancer|4313728 +ganef|4313787 +ganesa|4313840 +ganesh|4313899 +ganesha|4313958 +gang|4314018 +gang fight|4314258 +gang up|4314313 +gang-rape|4314184 +gangboard|4314349 +gangdom|4314428 +ganger|4314483 +ganges|4314532 +ganges river|4314574 +gangland|4314622 +gangling|4314677 +ganglion|4314749 +gangly|4314784 +gangplank|4314858 +gangrene|4314937 +gangrenous|4315072 +gangrenous emphysema|4315112 +gangsaw|4315299 +gangster|4315345 +gangster's moll|4315410 +gangway|4315488 +ganja|4315609 +gannet|4315741 +ganof|4315778 +ganoid|4315831 +ganoid fish|4315890 +ganoidei|4315949 +ganoin|4316004 +ganoine|4316038 +gansu|4316072 +gansu province|4316129 +gantanol|4316195 +gantlet|4316275 +gantrisin|4316456 +gantry|4316535 +ganymede|4316583 +gao|4316638 +gaol|4316791 +gaolbird|4316954 +gaolbreak|4317017 +gaoler|4317103 +gap|4317200 +gap-toothed|4317385 +gape|4317414 +gaping|4317522 +gapped scale|4317556 +gar|4317598 +garage|4317732 +garage sale|4317823 +garageman's lien|4317885 +garambulla|4317927 +garambulla cactus|4318020 +garamycin|4318093 +garand|4318160 +garand rifle|4318238 +garb|4318322 +garbage|4318485 +garbage can|4318648 +garbage carter|4318753 +garbage collection|4318814 +garbage collector|4318894 +garbage disposal|4318967 +garbage down|4319033 +garbage dump|4319089 +garbage hauler|4319185 +garbage heap|4319246 +garbage man|4319417 +garbage pickup|4319490 +garbage truck|4319570 +garbanzo|4319619 +garbed|4319676 +garble|4319760 +garbled|4319816 +garbo|4319920 +garboard|4319985 +garboard plank|4320046 +garboard strake|4320107 +garboil|4320168 +garbology|4320303 +garcia lorca|4320364 +garcinia|4320454 +garcinia cambogia|4320518 +garcinia gummi-gutta|4320649 +garcinia hanburyi|4320783 +garcinia mangostana|4320914 +gardant|4321001 +garden|4321045 +garden angelica|4321153 +garden balm|4321229 +garden cart|4321331 +garden centipede|4321412 +garden chair|4321499 +garden cress|4321538 +garden current|4321566 +garden egg|4321636 +garden forget-me-not|4321747 +garden heliotrope|4321818 +garden hose|4321892 +garden huckleberry|4321927 +garden lettuce|4322115 +garden loosestrife|4322177 +garden nasturtium|4322256 +garden of eden|4322324 +garden orache|4322375 +garden party|4322447 +garden pea|4322501 +garden pea plant|4322609 +garden pepper cress|4322685 +garden pink|4322793 +garden plant|4322826 +garden rake|4322871 +garden rhubarb|4322897 +garden rocket|4323004 +garden roller|4323122 +garden snail|4323152 +garden sorrel|4323180 +garden spade|4323309 +garden spider|4323337 +garden state|4323384 +garden strawberry|4323448 +garden symphilid|4323526 +garden tool|4323613 +garden trowel|4323649 +garden truck|4323679 +garden violet|4323742 +garden webworm|4323814 +gardener|4323866 +gardener's delight|4323936 +gardener's garters|4324038 +gardenia|4324137 +gardenia augusta|4324166 +gardenia jasminoides|4324267 +gardening|4324372 +gardiner|4324434 +gardner|4324510 +garfield|4324641 +garfish|4324824 +garganey|4324900 +gargantuan|4324940 +garget|4324990 +gargle|4325060 +gargoyle|4325167 +gargoylism|4325232 +gari|4325388 +garibaldi|4325507 +garish|4325610 +garishly|4325721 +garishness|4325755 +garland|4325889 +garland crab|4326164 +garland flower|4326254 +garlic|4326300 +garlic bread|4326418 +garlic butter|4326471 +garlic chive|4326507 +garlic clove|4326659 +garlic mustard|4326698 +garlic press|4326813 +garlic salt|4326858 +garlic sauce|4326938 +garlicky|4326984 +garment|4327060 +garment bag|4327356 +garment cutter|4327409 +garment industry|4327440 +garment worker|4327536 +garment-worker|4327210 +garmented|4327682 +garmentless|4327766 +garmentmaker|4327821 +garner|4327886 +garnet|4328023 +garnet lac|4328063 +garnier|4328087 +garnierite|4328158 +garnish|4328186 +garnished|4328404 +garnishee|4328429 +garnishment|4328498 +garonne|4328531 +garonne river|4328576 +garotte|4328627 +garpike|4328757 +garret|4328833 +garrick|4328885 +garrison|4328967 +garrison cap|4329155 +garrote|4329194 +garroter|4329324 +garrotte|4329393 +garrotter|4329522 +garrulinae|4329591 +garrulity|4329655 +garrulous|4329745 +garrulously|4329812 +garrulousness|4329865 +garrulus|4329955 +garry oak|4330008 +garter|4330092 +garter belt|4330148 +garter snake|4330197 +garter stitch|4330255 +gartner's bacillus|4330294 +garuda|4330375 +garullus garullus|4330410 +gary|4330489 +gary cooper|4330566 +gary kasparov|4330662 +gary weinstein|4330736 +gas|4330811 +gas bomb|4331577 +gas bracket|4331630 +gas burner|4331658 +gas chamber|4331693 +gas company|4331752 +gas constant|4331835 +gas cooker|4331891 +gas embolism|4331985 +gas engine|4332155 +gas fitter|4332206 +gas fitting|4332261 +gas fixture|4332290 +gas furnace|4332318 +gas gage|4332347 +gas gangrene|4332415 +gas gauge|4332602 +gas giant|4332670 +gas gun|4332719 +gas guzzler|4332740 +gas heat|4332798 +gas heater|4332858 +gas helmet|4332892 +gas holder|4332936 +gas jet|4332984 +gas lamp|4333019 +gas line|4333042 +gas main|4333136 +gas maser|4333159 +gas meter|4333184 +gas mileage|4333219 +gas oil|4333293 +gas oven|4333343 +gas pedal|4333413 +gas phlegmon|4333515 +gas plant|4333702 +gas pressure|4333790 +gas pump|4333856 +gas range|4333910 +gas ring|4334004 +gas service|4334041 +gas shell|4334124 +gas station|4334148 +gas stove|4334233 +gas system|4334327 +gas tank|4334369 +gas thermometer|4334419 +gas turbine|4334472 +gas up|4334501 +gas well|4334522 +gas-cooled reactor|4331269 +gas-discharge lamp|4331321 +gas-discharge tube|4331387 +gas-tight|4331502 +gas-turbine ship|4331546 +gasbag|4334545 +gascogne|4334602 +gasconade|4334651 +gascony|4334893 +gaseous|4334941 +gaseous nebula|4335128 +gaseousness|4335174 +gasfield|4335224 +gash|4335248 +gashed|4335351 +gasherbrum|4335387 +gasification|4335432 +gasified|4335503 +gasify|4335573 +gaskell|4335631 +gasket|4335725 +gaskin|4335746 +gaslight|4335772 +gasman|4335828 +gasmask|4335853 +gasohol|4335897 +gasolene|4335931 +gasoline|4335986 +gasoline bomb|4336041 +gasoline engine|4336098 +gasoline gage|4336154 +gasoline gauge|4336222 +gasoline mileage|4336290 +gasoline pump|4336364 +gasoline station|4336418 +gasoline tank|4336503 +gasoline tax|4336553 +gasometer|4336593 +gasp|4336664 +gaspar|4336758 +gasping|4336793 +gaspingly|4336913 +gassing|4336960 +gassy|4337043 +gasteromycete|4337101 +gasteromycetes|4337144 +gasterophilidae|4337285 +gasterophilus|4337366 +gasterophilus intestinalis|4337439 +gasteropoda|4337522 +gasterosteidae|4337607 +gasterosteus|4337680 +gasterosteus aculeatus|4337745 +gasterosteus pungitius|4337849 +gaston lachaise|4337951 +gastralgia|4338041 +gastrectomy|4338108 +gastric|4338202 +gastric antacid|4338260 +gastric artery|4338328 +gastric digestion|4338406 +gastric juice|4338443 +gastric lavage|4338498 +gastric mill|4338529 +gastric smear|4338584 +gastric ulcer|4338630 +gastric vein|4338684 +gastrin|4338750 +gastritis|4338804 +gastroboletus|4338850 +gastroboletus scabrosus|4338920 +gastroboletus turbinatus|4338984 +gastrocnemius|4339050 +gastrocnemius muscle|4339126 +gastrocolic omentum|4339202 +gastrocybe|4339260 +gastrocybe lateritia|4339321 +gastroenteritis|4339379 +gastroenterologist|4339452 +gastroenterology|4339515 +gastroenterostomy|4339568 +gastroepiploic vein|4339668 +gastroesophageal|4339767 +gastroesophageal reflux|4339878 +gastrogavage|4339955 +gastrointestinal|4339999 +gastrointestinal disorder|4340062 +gastrointestinal system|4340147 +gastrointestinal tract|4340245 +gastrolobium|4340386 +gastromy|4340442 +gastromycete|4340495 +gastromycetes|4340538 +gastronome|4340678 +gastronomic|4340753 +gastronomical|4340808 +gastronomy|4340863 +gastroomental vein|4340953 +gastrophryne|4341052 +gastrophryne carolinensis|4341122 +gastrophryne olivacea|4341260 +gastropod|4341390 +gastropoda|4341444 +gastroscope|4341528 +gastroscopy|4341559 +gastrostomy|4341590 +gastrula|4341684 +gastrulation|4341734 +gasworks|4341791 +gat|4341824 +gate|4341879 +gate-crash|4342114 +gate-crashing|4342164 +gateau|4342197 +gatecrasher|4342218 +gatefold|4342294 +gatehouse|4342325 +gatekeeper|4342350 +gateleg table|4342493 +gatepost|4342532 +gates|4342555 +gates of the arctic national park|4342777 +gateway|4342868 +gateway drug|4342928 +gateway to the west|4342976 +gather|4343081 +gather in|4343487 +gather up|4343527 +gathered|4343641 +gathered skirt|4343698 +gatherer|4343728 +gathering|4343842 +gathering place|4344056 +gathic|4344125 +gatling|4344173 +gatling gun|4344251 +gator|4344296 +gatt|4344353 +gauche|4344443 +gaucheness|4344490 +gaucher's disease|4344541 +gaucherie|4344633 +gaucho|4344816 +gaud|4344899 +gaudery|4344967 +gaudi|4344997 +gaudi i cornet|4345089 +gaudily|4345190 +gaudiness|4345224 +gaudy|4345359 +gauffer|4345533 +gauge|4345640 +gauge boson|4346149 +gauguin|4346176 +gauguinesque|4346222 +gaul|4346264 +gaultheria|4346437 +gaultheria hispidula|4346507 +gaultheria procumbens|4346614 +gaultheria shallon|4346769 +gaumless|4346841 +gaunt|4346875 +gauntlet|4346958 +gauntleted|4347097 +gauntness|4347124 +gauntry|4347192 +gaur|4347240 +gauri|4347281 +gauss|4347314 +gaussian|4347406 +gaussian curve|4347446 +gaussian distribution|4347550 +gaussian shape|4347661 +gaussmeter|4347765 +gautama|4347804 +gautama buddha|4347916 +gautama siddhartha|4348035 +gauze|4348158 +gauze bandage|4348264 +gauzy|4348313 +gavage|4348407 +gavel|4348459 +gavia|4348488 +gavial|4348532 +gavialidae|4348600 +gavialis|4348664 +gavialis gangeticus|4348720 +gavidae|4348808 +gaviiform seabird|4348860 +gaviiformes|4348912 +gavotte|4348976 +gawain|4349058 +gawk|4349143 +gawkiness|4349249 +gawky|4349304 +gawp|4349359 +gay|4349395 +gay lib|4350012 +gay liberation movement|4350098 +gay man|4350184 +gay woman|4350233 +gay-feather|4349673 +gay-lussac|4349849 +gay-lussac's law|4349922 +gayal|4350288 +gayfeather|4350340 +gaylussacia|4350435 +gaylussacia baccata|4350508 +gaylussacia brachycera|4350587 +gaylussacia frondosa|4350670 +gayly|4350758 +gayness|4350834 +gaywings|4350942 +gaza|4351045 +gaza strip|4351147 +gazania|4351255 +gazania rigens|4351279 +gaze|4351342 +gazebo|4351387 +gazella|4351432 +gazella subgutturosa|4351484 +gazella thomsoni|4351543 +gazelle|4351612 +gazelle hound|4351638 +gazette|4351684 +gazetteer|4351738 +gazpacho|4351776 +gazump|4351799 +gb|4351918 +gbu-28|4352166 +gc|4352245 +gca|4352310 +gd|4352388 +gdansk|4352498 +gdp|4352562 +ge|4352608 +gean|4352745 +gear|4352808 +gear case|4352956 +gear lever|4353001 +gear mechanism|4353067 +gear up|4353106 +gear wheel|4353172 +gearbox|4353212 +geared|4353257 +gearing|4353355 +gears|4353416 +gearset|4353602 +gearshift|4353639 +gearstick|4353705 +geartrain|4353771 +geastraceae|4353832 +geastrum|4353898 +geastrum coronatum|4353953 +geb|4354010 +gebang palm|4354046 +gecko|4354105 +gee|4354127 +gee-gee|4354222 +geebung|4354260 +geek|4354288 +geert geerts|4354401 +geezer|4354535 +geezerhood|4354572 +gefilte fish|4354627 +gegenschein|4354664 +geglossaceae|4354735 +gehenna|4354801 +gehrig|4354896 +geiger|4354976 +geiger counter|4355196 +geiger tube|4355270 +geiger-muller counter|4355021 +geiger-muller tube|4355102 +geisel|4355357 +geisha|4355425 +geisha girl|4355491 +gekkonidae|4355557 +gel|4355621 +gelatin|4355721 +gelatin dessert|4355842 +gelatine|4355881 +gelatinise|4355932 +gelatinize|4356008 +gelatinlike|4356104 +gelatinous|4356152 +gelatinousness|4356200 +geld|4356272 +gelded|4356338 +gelding|4356388 +gelechia|4356416 +gelechia gossypiella|4356474 +gelechiid|4356601 +gelechiid moth|4356640 +gelechiidae|4356679 +gelid|4356748 +gelidity|4356800 +gelignite|4356862 +gell-mann|4356896 +gelly|4356960 +gelnn theodore seaborg|4356994 +gelsemium|4357082 +gelsemium sempervirens|4357158 +gelt|4357290 +gem|4357431 +gem clip|4357634 +gem cutter|4357678 +gem state|4357705 +gemara|4357758 +gemfibrozil|4357841 +geminate|4357914 +gemination|4358076 +gemini|4358134 +gemini program|4358344 +gemini the twins|4358397 +gemma|4358517 +gemmation|4358555 +gemmed|4358620 +gemmiferous|4358742 +gemonil|4358785 +gempylid|4358890 +gempylidae|4358940 +gempylus|4359001 +gempylus serpens|4359054 +gemsbok|4359121 +gemsbuck|4359172 +gemstone|4359223 +gen|4359259 +gen x|4359289 +gendarme|4359334 +gendarmerie|4359385 +gendarmery|4359454 +gender|4359523 +gender agreement|4359642 +gender identity|4359686 +gender role|4359752 +gene|4359778 +gene chip|4359900 +gene delivery vector|4359967 +gene expression|4360035 +gene kelly|4360079 +gene linkage|4360206 +gene mutation|4360267 +gene sarazen|4360352 +gene tunney|4360423 +gene-splicing|4359816 +genealogic|4360506 +genealogical|4360585 +genealogist|4360664 +genealogy|4360692 +general|4360770 +general agent|4361475 +general agreement on tariffs and trade|4361592 +general anaesthesia|4361716 +general anaesthetic|4361787 +general anatomy|4361893 +general anesthesia|4361937 +general anesthetic|4362008 +general assembly|4362114 +general baptist|4362226 +general charles de gaulle|4362305 +general custer|4362502 +general damages|4362593 +general de gaulle|4362715 +general delivery|4362904 +general election|4362962 +general headquarters|4362997 +general knowledge|4363082 +general ledger|4363153 +general lien|4363224 +general manager|4363251 +general medicine|4363295 +general officer|4363366 +general practitioner|4363421 +general relativity|4363489 +general relativity theory|4363694 +general security services|4363899 +general services administration|4364003 +general staff|4364099 +general store|4364128 +general theory of relativity|4364236 +general verdict|4364441 +general-purpose|4361387 +general-purpose bomb|4361432 +generalisation|4364490 +generalise|4364788 +generalised|4365134 +generalissimo|4365249 +generalist|4365331 +generality|4365400 +generalization|4365478 +generalize|4365776 +generalized|4366122 +generalized anxiety disorder|4366237 +generalized epilepsy|4366313 +generalized seizure|4366371 +generally|4366444 +generally accepted accounting practices|4366570 +generalship|4366671 +generate|4366765 +generation|4366955 +generation x|4367214 +generational|4367266 +generative|4367294 +generator|4367398 +generic|4367506 +generic drug|4367600 +generosity|4367627 +generous|4367708 +generously|4368021 +generousness|4368063 +genesis|4368105 +genet|4368179 +genetic|4368368 +genetic abnormality|4368527 +genetic code|4368708 +genetic constitution|4368756 +genetic counseling|4368827 +genetic defect|4368905 +genetic disease|4369086 +genetic disorder|4369267 +genetic endowment|4369448 +genetic engineering|4369493 +genetic fingerprint|4369577 +genetic fingerprinting|4369694 +genetic map|4369762 +genetic marker|4369828 +genetic mutation|4369872 +genetic profiling|4369959 +genetic psychology|4370027 +genetic science|4370130 +genetic screening|4370191 +genetical|4370228 +geneticist|4370254 +genetics|4370299 +genetta|4370360 +genetta genetta|4370412 +geneva|4370486 +geneva convention|4370582 +geneva gown|4370638 +geneve|4370712 +genf|4370776 +genghis khan|4370838 +genial|4370907 +geniality|4371016 +genially|4371103 +genic|4371136 +genicular vein|4371167 +geniculate|4371232 +geniculate body|4371260 +genie|4371302 +genip|4371370 +genipa|4371526 +genipa americana|4371553 +genipap|4371637 +genipap fruit|4371681 +genista|4371776 +genista anglica|4371833 +genista hispanica|4371915 +genista raetam|4371994 +genista tinctoria|4372092 +genital|4372216 +genital herpes|4372270 +genital organ|4372433 +genital personality|4372534 +genital phase|4372575 +genital stage|4372624 +genital system|4372673 +genital wart|4372724 +genitalia|4372812 +genitals|4372913 +genitive|4373014 +genitive case|4373121 +genitor|4373190 +genitourinary|4373231 +genitourinary apparatus|4373307 +genitourinary system|4373483 +genius|4373659 +genius loci|4373975 +genlisea|4374063 +genoa|4374099 +genocide|4374156 +genoese|4374237 +genoise|4374299 +genome|4374321 +genomics|4374363 +genotype|4374406 +genotypic|4374501 +genotypical|4374563 +genova|4374625 +genovese|4374683 +genre|4374746 +genre painting|4374939 +gens|4374969 +genseric|4375070 +gent|4375124 +gentamicin|4375272 +genteel|4375329 +genteelness|4375401 +gentian|4375450 +gentian family|4375474 +gentian violet|4375564 +gentiana|4375770 +gentiana acaulis|4375843 +gentiana andrewsii|4375906 +gentiana calycosa|4376005 +gentiana clausa|4376077 +gentiana crinita|4376155 +gentiana detonsa|4376235 +gentiana holopetala|4376315 +gentiana lutea|4376419 +gentiana pneumonanthe|4376487 +gentiana procera|4376579 +gentiana quinquefolia|4376659 +gentiana saponaria|4376800 +gentiana thermalis|4376872 +gentiana villosa|4376958 +gentianaceae|4377025 +gentianales|4377128 +gentianella|4377191 +gentianella amarella|4377305 +gentianella quinquefolia|4377351 +gentianopsid procera|4377495 +gentianopsis|4377579 +gentianopsis crinita|4377664 +gentianopsis detonsa|4377748 +gentianopsis holopetala|4377832 +gentianopsis thermalis|4377940 +gentile|4378030 +gentility|4378210 +gentle|4378259 +gentle breeze|4378678 +gentle wind|4378731 +gentleman|4378802 +gentleman jim|4379232 +gentleman johnny|4379331 +gentleman's gentleman|4379103 +gentleman's-cane|4378916 +gentleman-at-arms|4379195 +gentlemanlike|4379418 +gentlemanly|4379461 +gentlemen's agreement|4379504 +gentleness|4379559 +gentlewoman|4379636 +gently|4379698 +gentrification|4379741 +gentrify|4379777 +gentry|4379825 +genu|4379877 +genu valgum|4379964 +genu varum|4380055 +genuflect|4380140 +genuflection|4380188 +genuflexion|4380243 +genuine|4380298 +genuinely|4380577 +genuineness|4380628 +genus|4380729 +genus abelia|4380991 +genus abelmoschus|4381046 +genus abies|4381125 +genus abramis|4381181 +genus abrocoma|4381237 +genus abronia|4381298 +genus abudefduf|4381369 +genus abutilon|4381431 +genus acacia|4381501 +genus acalypha|4381554 +genus acanthisitta|4381620 +genus acanthocereus|4381691 +genus acanthocybium|4381780 +genus acanthophis|4381854 +genus acanthoscelides|4381925 +genus acanthurus|4382010 +genus acanthus|4382075 +genus accipiter|4382134 +genus acer|4382196 +genus acherontia|4382263 +genus acheta|4382333 +genus achillea|4382391 +genus achimenes|4382450 +genus achoerodus|4382511 +genus achras|4382576 +genus acinonyx|4382649 +genus acinos|4382710 +genus acipenser|4382772 +genus acocanthera|4382834 +genus acokanthera|4382952 +genus aconitum|4383070 +genus acorus|4383140 +genus acridotheres|4383212 +genus acris|4383283 +genus acrobates|4383338 +genus acrocarpus|4383402 +genus acrocephalus|4383474 +genus acroclinium|4383545 +genus acrocomia|4383622 +genus acropora|4383703 +genus acrostichum|4383770 +genus actaea|4383838 +genus actias|4383902 +genus actinia|4383960 +genus actinidia|4384024 +genus actiniopteris|4384097 +genus actinomeris|4384171 +genus actinomyces|4384248 +genus actitis|4384308 +genus adalia|4384364 +genus adansonia|4384422 +genus addax|4384495 +genus adelges|4384541 +genus adenanthera|4384602 +genus adenium|4384677 +genus adenota|4384753 +genus adiantum|4384811 +genus adlumia|4384870 +genus adonis|4384937 +genus aedes|4385001 +genus aegiceras|4385056 +genus aegilops|4385127 +genus aegypius|4385205 +genus aegyptopithecus|4385264 +genus aeonium|4385330 +genus aepyceros|4385387 +genus aepyornis|4385451 +genus aerides|4385503 +genus aerobacter|4385570 +genus aeschynanthus|4385639 +genus aesculus|4385708 +genus aethionema|4385787 +genus aethusa|4385863 +genus aetobatus|4385926 +genus aframomum|4385988 +genus afrocarpus|4386051 +genus afropavo|4386122 +genus agalinis|4386172 +genus agama|4386240 +genus agapanthus|4386287 +genus agapornis|4386351 +genus agaricus|4386413 +genus agastache|4386474 +genus agathis|4386545 +genus agave|4386607 +genus agdestis|4386661 +genus agelaius|4386735 +genus ageratina|4386794 +genus ageratum|4386865 +genus agkistrodon|4386924 +genus aglaomorpha|4387025 +genus aglaonema|4387093 +genus agonus|4387174 +genus agrimonia|4387227 +genus agriocharis|4387286 +genus agrobacterium|4387354 +genus agropyron|4387432 +genus agrostemma|4387513 +genus agrostis|4387593 +genus ailanthus|4387653 +genus ailuropoda|4387712 +genus ailurus|4387779 +genus aix|4387837 +genus ajaia|4387881 +genus ajuga|4387931 +genus alauda|4387990 +genus albatrellus|4388043 +genus albizia|4388113 +genus albizzia|4388183 +genus albuca|4388254 +genus albugo|4388310 +genus albula|4388365 +genus alca|4388418 +genus alcea|4388465 +genus alcedo|4388526 +genus alcelaphus|4388579 +genus alces|4388646 +genus aldrovanda|4388698 +genus alectis|4388783 +genus alectoria|4388839 +genus alectoris|4388903 +genus alectura|4388965 +genus alepisaurus|4389024 +genus aletris|4389092 +genus aleurites|4389158 +genus aleyrodes|4389227 +genus algeripithecus|4389294 +genus alisma|4389373 +genus allamanda|4389445 +genus alliaria|4389517 +genus alligator|4389587 +genus allionia|4389642 +genus allium|4389716 +genus allosaurus|4389779 +genus alnus|4389853 +genus alocasia|4389914 +genus aloe|4389983 +genus alopecurus|4390035 +genus alopex|4390119 +genus alopius|4390174 +genus alosa|4390230 +genus alouatta|4390280 +genus alpinia|4390341 +genus alsobia|4390427 +genus alsophila|4390492 +genus alstonia|4390559 +genus alstroemeria|4390638 +genus alternanthera|4390706 +genus althaea|4390795 +genus alyssum|4390854 +genus alytes|4390921 +genus amanita|4390979 +genus amaranthus|4391037 +genus amaryllis|4391117 +genus amauropelta|4391179 +genus amazona|4391247 +genus amberboa|4391303 +genus ambloplites|4391371 +genus amblyrhynchus|4391439 +genus ambrosia|4391516 +genus ambystoma|4391575 +genus ameiurus|4391642 +genus amelanchier|4391701 +genus amia|4391776 +genus amianthum|4391823 +genus ammobium|4391895 +genus ammodytes|4391954 +genus ammotragus|4392016 +genus amoeba|4392083 +genus amorpha|4392135 +genus amorphophallus|4392190 +genus amphibolips|4392271 +genus amphicarpa|4392344 +genus amphicarpaea|4392448 +genus amphioxus|4392554 +genus amphiprion|4392610 +genus amphisbaena|4392675 +genus amphisbaenia|4392778 +genus amphiuma|4392882 +genus amsinckia|4392937 +genus amsonia|4393000 +genus amygdalus|4393076 +genus anabas|4393145 +genus anabrus|4393198 +genus anacardium|4393259 +genus anacyclus|4393344 +genus anadenanthera|4393415 +genus anagallis|4393496 +genus anagasta|4393578 +genus anagyris|4393642 +genus ananas|4393708 +genus anaphalis|4393780 +genus anarhichas|4393851 +genus anas|4393916 +genus anasa|4393963 +genus anastatica|4394018 +genus anastomus|4394094 +genus anatotitan|4394156 +genus anchusa|4394213 +genus ancistrodon|4394262 +genus ancylus|4394363 +genus andira|4394422 +genus andreaea|4394482 +genus andrena|4394541 +genus andricus|4394594 +genus andromeda|4394658 +genus andropogon|4394721 +genus andryala|4394805 +genus aneides|4394864 +genus anemia|4394925 +genus anemone|4394978 +genus anemonella|4395037 +genus anemopsis|4395113 +genus anethum|4395195 +genus angelica|4395258 +genus angiopteris|4395387 +genus angraecum|4395443 +genus angrecum|4395539 +genus anguilla|4395634 +genus anguillula|4395693 +genus anguis|4395784 +genus anhima|4395840 +genus anhinga|4395893 +genus anigozanthus|4395941 +genus anisotremus|4396031 +genus ankylosaurus|4396099 +genus annona|4396160 +genus anoa|4396224 +genus anodonta|4396268 +genus anoectochilus|4396330 +genus anogramma|4396423 +genus anolis|4396485 +genus anomala|4396541 +genus anomalops|4396602 +genus anomalopteryx|4396654 +genus anomia|4396714 +genus anopheles|4396770 +genus anser|4396837 +genus antedon|4396887 +genus antennaria|4396949 +genus anthemis|4397023 +genus antheraea|4397091 +genus anthericum|4397158 +genus antheropeas|4397233 +genus anthidium|4397310 +genus anthoceros|4397377 +genus anthonomus|4397442 +genus anthriscus|4397512 +genus anthurium|4397584 +genus anthus|4397655 +genus anthyllis|4397708 +genus antidorcas|4397777 +genus antigonia|4397844 +genus antilocapra|4397906 +genus antilope|4397976 +genus antirrhinum|4398037 +genus antrodemus|4398114 +genus antrozous|4398188 +genus aotus|4398252 +genus apatosaurus|4398304 +genus apatura|4398382 +genus aphis|4398443 +genus aphriza|4398498 +genus aphrophora|4398554 +genus aphyllanthes|4398624 +genus apios|4398705 +genus apis|4398762 +genus apium|4398814 +genus aplectrum|4398871 +genus aplodontia|4398952 +genus aplysia|4399019 +genus apocynum|4399098 +genus apodemus|4399177 +genus apogon|4399238 +genus aporocactus|4399291 +genus appendicularia|4399374 +genus aptenodytes|4399440 +genus apteryx|4399508 +genus apus|4399556 +genus aquila|4399603 +genus aquilegia|4399656 +genus ara|4399719 +genus arabidopsis|4399763 +genus arabis|4399842 +genus arachis|4399906 +genus aralia|4399969 +genus aramus|4400022 +genus aranea|4400075 +genus araneus|4400155 +genus araucaria|4400236 +genus araujia|4400294 +genus arbutus|4400370 +genus arca|4400429 +genus arcella|4400479 +genus arceuthobium|4400533 +genus archaeopteryx|4400615 +genus archaeornis|4400694 +genus archeopteryx|4400750 +genus archidiskidon|4400828 +genus archilochus|4400904 +genus architeuthis|4400972 +genus archosargus|4401035 +genus arctictis|4401103 +genus arctium|4401167 +genus arctocebus|4401232 +genus arctocephalus|4401299 +genus arctonyx|4401375 +genus arctostaphylos|4401436 +genus arctotis|4401524 +genus ardea|4401592 +genus ardisia|4401642 +genus areca|4401718 +genus arenaria|4401781 +genus arenga|4401897 +genus arethusa|4401951 +genus argemone|4402020 +genus argentina|4402081 +genus argentinosaurus|4402143 +genus argiope|4402221 +genus argonauta|4402282 +genus argusianus|4402347 +genus argynnis|4402412 +genus argyranthemum|4402476 +genus argyreia|4402559 +genus argyrotaenia|4402638 +genus argyroxiphium|4402714 +genus arilus|4402797 +genus ariocarpus|4402855 +genus ariomma|4402935 +genus arisaema|4402991 +genus arisarum|4403069 +genus aristolochia|4403147 +genus aristotelia|4403238 +genus arius|4403317 +genus arizona|4403367 +genus armadillidium|4403426 +genus armeria|4403505 +genus armillaria|4403581 +genus armillariella|4403648 +genus armoracia|4403724 +genus arnica|4403797 +genus arnoseris|4403852 +genus arrhenatherum|4403923 +genus artamus|4403998 +genus artemia|4404054 +genus artemisia|4404149 +genus arthropteris|4404210 +genus artocarpus|4404281 +genus arum|4404366 +genus arundinaria|4404427 +genus arundo|4404514 +genus arvicola|4404586 +genus asarum|4404647 +genus ascaphus|4404720 +genus ascaridia|4404784 +genus ascaris|4404846 +genus asclepias|4404902 +genus ascophyllum|4404984 +genus asimina|4405058 +genus asio|4405125 +genus aspalathus|4405172 +genus asparagus|4405244 +genus aspergillus|4405306 +genus asperula|4405376 +genus asphodeline|4405444 +genus asphodelus|4405522 +genus aspidelaps|4405597 +genus aspidiotus|4405665 +genus aspidistra|4405735 +genus aspidophoroides|4405799 +genus aspis|4405879 +genus asplenium|4405947 +genus astacus|4406009 +genus aster|4406070 +genus astilbe|4406123 +genus astragalus|4406178 +genus astrantia|4406250 +genus astreus|4406309 +genus astroloma|4406367 +genus astronium|4406440 +genus astrophyton|4406522 +genus astropogon|4406596 +genus ateles|4406661 +genus athene|4406716 +genus atherinopsis|4406769 +genus atherurus|4406840 +genus athrotaxis|4406904 +genus athyrium|4406975 +genus atrichornis|4407034 +genus atriplex|4407102 +genus atropa|4407176 +genus attalea|4407238 +genus atticus|4407313 +genus aucuba|4407374 +genus aulacorhyncus|4407434 +genus aulostomus|4407508 +genus aureolaria|4407573 +genus auricularia|4407647 +genus auriparus|4407717 +genus australopithecus|4407779 +genus austrocedrus|4407864 +genus austrotaxus|4407941 +genus automeris|4408015 +genus avahi|4408082 +genus avena|4408134 +genus averrhoa|4408185 +genus avicennia|4408251 +genus ayapana|4408322 +genus aythya|4408377 +genus azadirachta|4408430 +genus azolla|4408505 +genus babesia|4408558 +genus babyrousa|4408629 +genus baccharis|4408693 +genus bacillus|4408764 +genus bacteroides|4408818 +genus baiomys|4408890 +genus bairdiella|4408948 +genus balaena|4409013 +genus balaeniceps|4409071 +genus balaenoptera|4409139 +genus balanus|4409212 +genus balistes|4409273 +genus ballota|4409332 +genus balsamorhiza|4409397 +genus bambusa|4409477 +genus bankia|4409552 +genus banksia|4409608 +genus baphia|4409676 +genus baptisia|4409736 +genus barbarea|4409802 +genus barosaurus|4409872 +genus bartle-frere|4409929 +genus bartramia|4410035 +genus basiliscus|4410097 +genus bassariscus|4410165 +genus bassia|4410235 +genus bathyergus|4410323 +genus batis|4410390 +genus batrachoseps|4410455 +genus bauhinia|4410531 +genus beaumontia|4410597 +genus begonia|4410682 +genus belamcanda|4410741 +genus bellis|4410816 +genus bemisia|4410878 +genus bennettitis|4410939 +genus benzoin|4411013 +genus berberis|4411080 +genus bergenia|4411150 +genus beroe|4411207 +genus berteroa|4411257 +genus bertholletia|4411327 +genus bessera|4411418 +genus besseya|4411484 +genus beta|4411549 +genus bettongia|4411665 +genus betula|4411729 +genus bibos|4411793 +genus bidens|4411845 +genus bignonia|4411907 +genus biscutella|4411975 +genus bison|4412051 +genus bitis|4412097 +genus blaberus|4412150 +genus blandfordia|4412214 +genus blarina|4412292 +genus blastocladia|4412350 +genus blastomyces|4412423 +genus blatta|4412493 +genus blattella|4412551 +genus blechnum|4412618 +genus blennius|4412677 +genus blephilia|4412736 +genus bletia|4412807 +genus bletilla|4412872 +genus blighia|4412950 +genus blissus|4413026 +genus bloomeria|4413087 +genus bocconia|4413159 +genus boehmeria|4413220 +genus bolbitis|4413302 +genus boletellus|4413361 +genus boletus|4413428 +genus boltonia|4413486 +genus bomarea|4413554 +genus bombax|4413620 +genus bombina|4413684 +genus bombus|4413745 +genus bombycilla|4413803 +genus bombyx|4413851 +genus bonasa|4413909 +genus borago|4413962 +genus borassus|4414016 +genus borrelia|4414094 +genus bos|4414148 +genus boselaphus|4414194 +genus boswellia|4414261 +genus botaurus|4414330 +genus bothrops|4414389 +genus botrychium|4414451 +genus bougainvillaea|4414516 +genus bougainvillea|4414628 +genus bouteloua|4414739 +genus bowiea|4414820 +genus boykinia|4414883 +genus brachinus|4414949 +genus brachychiton|4415016 +genus brachycome|4415098 +genus brachystegia|4415172 +genus bradypus|4415250 +genus brama|4415311 +genus branchiobdella|4415361 +genus branta|4415438 +genus brasenia|4415491 +genus brassavola|4415561 +genus brassia|4415634 +genus brassica|4415709 +genus brevoortia|4415779 +genus brickelia|4415844 +genus brodiaea|4415916 +genus bromus|4415976 +genus brontosaurus|4416048 +genus broussonetia|4416127 +genus browallia|4416218 +genus browmius|4416279 +genus bruchus|4416338 +genus bruckenthalia|4416399 +genus brugmansia|4416484 +genus brunfelsia|4416558 +genus brya|4416632 +genus bryanthus|4416686 +genus bryonia|4416749 +genus bryum|4416817 +genus bubalus|4416867 +genus bubo|4416939 +genus bubulcus|4416986 +genus bucephala|4417045 +genus buceros|4417107 +genus buchloe|4417163 +genus buckleya|4417238 +genus buddleia|4417299 +genus budorcas|4417369 +genus bufo|4417430 +genus bulnesia|4417477 +genus bumelia|4417543 +genus bungarus|4417619 +genus buphthalmum|4417681 +genus burhinus|4417758 +genus burmannia|4417817 +genus burmeisteria|4417898 +genus bursera|4417971 +genus butea|4418034 +genus buteo|4418091 +genus buxus|4418141 +genus cabassous|4418211 +genus cabomba|4418265 +genus cacajao|4418332 +genus cacalia|4418390 +genus cacatua|4418455 +genus cacicus|4418533 +genus cadra|4418589 +genus caenolestes|4418644 +genus caesalpinia|4418714 +genus caiman|4418789 +genus cairina|4418838 +genus cajanus|4418894 +genus cakile|4418957 +genus caladenia|4419021 +genus caladium|4419092 +genus calamagrostis|4419161 +genus calamintha|4419348 +genus calamus|4419422 +genus calandrinia|4419529 +genus calanthe|4419612 +genus calceolaria|4419681 +genus calendula|4419746 +genus calidris|4419807 +genus calla|4419866 +genus calliandra|4419935 +genus callicebus|4419996 +genus callimorpha|4420063 +genus callinectes|4420136 +genus calliophis|4420209 +genus calliphora|4420303 +genus callirhoe|4420373 +genus callisaurus|4420446 +genus callistephus|4420517 +genus callithrix|4420597 +genus callitriche|4420664 +genus callitris|4420739 +genus callophis|4420807 +genus callorhinus|4420900 +genus calluna|4420970 +genus calocarpum|4421037 +genus calocedrus|4421122 +genus calochortus|4421193 +genus calophyllum|4421271 +genus calopogon|4421350 +genus calosoma|4421431 +genus caltha|4421486 +genus calvatia|4421550 +genus calycanthus|4421611 +genus calycophyllum|4421690 +genus calymmatobacterium|4421773 +genus calypso|4421870 +genus calystegia|4421937 +genus camassia|4422022 +genus cambarus|4422117 +genus camelina|4422181 +genus camellia|4422251 +genus camelus|4422312 +genus campanula|4422370 +genus campephilus|4422423 +genus camponotus|4422491 +genus camptosorus|4422561 +genus campyloneurum|4422629 +genus campylorhynchus|4422703 +genus canachites|4422811 +genus cananga|4422876 +genus canangium|4422969 +genus canavalia|4423064 +genus cancer|4423133 +genus candida|4423191 +genus canella|4423241 +genus canis|4423300 +genus canna|4423352 +genus cannabis|4423415 +genus cantharellus|4423485 +genus capella|4423558 +genus capparis|4423640 +genus capra|4423710 +genus caprella|4423762 +genus capreolus|4423826 +genus capricornis|4423890 +genus caprimulgus|4423960 +genus capros|4424028 +genus capsella|4424081 +genus capsicum|4424151 +genus caragana|4424210 +genus caranx|4424267 +genus carassius|4424320 +genus carcharhinus|4424382 +genus carcharias|4424453 +genus carcharodon|4424546 +genus cardamine|4424614 +genus cardiospermum|4424687 +genus cardium|4424781 +genus carduelis|4424840 +genus carduus|4424902 +genus caretta|4424967 +genus carex|4425026 +genus cariama|4425095 +genus carica|4425151 +genus carissa|4425215 +genus carlina|4425283 +genus carnegiea|4425348 +genus carpenteria|4425425 +genus carphophis|4425488 +genus carpinus|4425556 +genus carpobrotus|4425626 +genus carpocapsa|4425709 +genus carpodacus|4425779 +genus carthamus|4425844 +genus carum|4425915 +genus carya|4425972 +genus caryocar|4426042 +genus caryota|4426112 +genus casmerodius|4426187 +genus cassia|4426255 +genus cassiope|4426308 +genus castanea|4426378 +genus castanopsis|4426448 +genus castanospermum|4426527 +genus castilleia|4426611 +genus castilleja|4426713 +genus castor|4426815 +genus castoroides|4426870 +genus casuarina|4426940 +genus casuarius|4427012 +genus catacala|4427074 +genus catalpa|4427138 +genus catananche|4427195 +genus catasetum|4427258 +genus catha|4427339 +genus catharacta|4427395 +genus catharanthus|4427460 +genus cathartes|4427551 +genus cathaya|4427613 +genus catoptrophorus|4427667 +genus catostomus|4427744 +genus cattleya|4427809 +genus caulophyllum|4427878 +genus cavia|4427960 +genus cebuella|4428012 +genus cebus|4428073 +genus cecropia|4428125 +genus cedrela|4428204 +genus cedrus|4428267 +genus ceiba|4428326 +genus celastrus|4428387 +genus celosia|4428469 +genus celtis|4428540 +genus cenchrus|4428613 +genus centaurea|4428691 +genus centaurium|4428762 +genus centranthus|4428847 +genus centrocercus|4428924 +genus centrolobium|4428995 +genus centropomus|4429073 +genus centropristis|4429141 +genus centropus|4429215 +genus centrosema|4429277 +genus centunculus|4429349 +genus cephalanthera|4429437 +genus cephalopterus|4429530 +genus cephalotaxus|4429604 +genus cephalotus|4429681 +genus cepphus|4429753 +genus cerapteryx|4429809 +genus cerastes|4429879 +genus cerastium|4429950 +genus ceratitis|4430027 +genus ceratodus|4430094 +genus ceratonia|4430146 +genus ceratopetalum|4430215 +genus ceratophyllum|4430296 +genus ceratopogon|4430381 +genus ceratopteris|4430454 +genus ceratosaurus|4430525 +genus ceratostomella|4430586 +genus ceratotherium|4430665 +genus ceratozamia|4430741 +genus cercidiphyllum|4430803 +genus cercidium|4430891 +genus cercis|4430960 +genus cercocebus|4431020 +genus cercopithecus|4431087 +genus cercospora|4431163 +genus cercosporella|4431230 +genus cereus|4431306 +genus ceroxylon|4431374 +genus certhia|4431439 +genus cervus|4431495 +genus ceryle|4431550 +genus cestrum|4431603 +genus cestum|4431668 +genus ceterach|4431727 +genus cetonia|4431786 +genus cetorhinus|4431847 +genus cetraria|4431912 +genus chaenactis|4431973 +genus chaenomeles|4432036 +genus chaenopsis|4432111 +genus chaetodipterus|4432176 +genus chaetodon|4432253 +genus chalcis|4432305 +genus chalcostigma|4432366 +genus chamaea|4432437 +genus chamaecrista|4432493 +genus chamaecyparis|4432571 +genus chamaecytisus|4432651 +genus chamaedaphne|4432732 +genus chamaeleo|4432814 +genus chamaeleon|4432896 +genus chamaemelum|4432979 +genus chara|4433056 +genus charadrius|4433112 +genus charina|4433177 +genus charronia|4433236 +genus chateura|4433300 +genus chauna|4433359 +genus cheilanthes|4433412 +genus cheiranthus|4433480 +genus chelidonium|4433559 +genus chelifer|4433638 +genus chelone|4433702 +genus chelonia|4433767 +genus chelydra|4433829 +genus chenopodium|4433891 +genus chilomastix|4433974 +genus chilomeniscus|4434048 +genus chilomycterus|4434125 +genus chilopsis|4434199 +genus chimaera|4434270 +genus chimaphila|4434320 +genus chimonanthus|4434396 +genus chinchilla|4434478 +genus chinchona|4434534 +genus chiococca|4434610 +genus chionanthus|4434681 +genus chirocephalus|4434769 +genus chironomus|4434870 +genus chiton|4434940 +genus chlamydera|4434989 +genus chlamydia|4435054 +genus chlamydomonas|4435110 +genus chlamydosaurus|4435190 +genus chlamyphorus|4435270 +genus chloranthus|4435343 +genus chlorella|4435431 +genus chloris|4435489 +genus chlorococcum|4435564 +genus chlorophis|4435641 +genus chlorophoneus|4435709 +genus chlorophyllum|4435783 +genus chloroxylon|4435845 +genus chlorura|4435920 +genus choeronycteris|4435979 +genus choloepus|4436058 +genus chondrus|4436122 +genus chordeiles|4436187 +genus chordospartium|4436252 +genus choriotis|4436336 +genus chorizagrotis|4436398 +genus chorizema|4436477 +genus christella|4436546 +genus chronoperates|4436600 +genus chrysanthemum|4436677 +genus chrysaora|4436746 +genus chrysemys|4436816 +genus chrysobalanus|4436881 +genus chrysochloris|4436962 +genus chrysolepis|4437038 +genus chrysolophus|4437117 +genus chrysophrys|4437188 +genus chrysophyllum|4437256 +genus chrysopsis|4437350 +genus chrysosplenium|4437424 +genus chrysothamnus|4437508 +genus chunga|4437591 +genus cibotium|4437637 +genus cicada|4437696 +genus cicer|4437747 +genus cichorium|4437804 +genus ciconia|4437875 +genus cicuta|4437931 +genus cimex|4437991 +genus cimicifuga|4438046 +genus cinchona|4438122 +genus cinclus|4438197 +genus cinnamomum|4438253 +genus circaea|4438329 +genus circaetus|4438392 +genus circus|4438454 +genus cirsium|4438507 +genus cistothorus|4438572 +genus cistus|4438640 +genus citellus|4438704 +genus citharichthys|4438797 +genus citroncirus|4438871 +genus citrullus|4438946 +genus citrus|4439028 +genus cladonia|4439081 +genus cladorhyncus|4439142 +genus cladrastis|4439213 +genus clangula|4439285 +genus clathrus|4439344 +genus claviceps|4439405 +genus claytonia|4439469 +genus cleistes|4439546 +genus clematis|4439624 +genus cleome|4439685 +genus clethra|4439742 +genus clethrionomys|4439818 +genus clianthus|4439894 +genus cliftonia|4439953 +genus clinopodium|4440035 +genus clintonia|4440112 +genus clitocybe|4440174 +genus clitoria|4440238 +genus clostridium|4440304 +genus clupea|4440364 +genus clusia|4440417 +genus cnemidophorus|4440474 +genus cnicus|4440551 +genus cnidoscolus|4440613 +genus coccothraustes|4440688 +genus cocculus|4440765 +genus coccus|4440835 +genus coccyzus|4440886 +genus cochlearia|4440945 +genus cochlearius|4441021 +genus cocos|4441089 +genus codariocalyx|4441158 +genus codiaeum|4441236 +genus coeloglossum|4441302 +genus coelogyne|4441392 +genus coelophysis|4441463 +genus coereba|4441522 +genus coffea|4441578 +genus cola|4441640 +genus colaptes|4441698 +genus colchicum|4441757 +genus coleonyx|4441829 +genus coleus|4441891 +genus colinus|4441946 +genus collinsia|4442002 +genus collinsonia|4442073 +genus collocalia|4442150 +genus colobus|4442215 +genus colocasia|4442265 +genus coluber|4442346 +genus colubrina|4442405 +genus columba|4442487 +genus columnea|4442543 +genus colutea|4442602 +genus comandra|4442665 +genus comatula|4442735 +genus combretum|4442805 +genus commelina|4442877 +genus commiphora|4442948 +genus compsognathus|4443020 +genus comptonia|4443083 +genus condylura|4443165 +genus conepatus|4443229 +genus conferva|4443293 +genus conilurus|4443375 +genus coniogramme|4443439 +genus conium|4443507 +genus connarus|4443567 +genus connochaetes|4443633 +genus conocarpus|4443706 +genus conoclinium|4443791 +genus conopodium|4443868 +genus conospermum|4443940 +genus conradina|4444028 +genus consolida|4444099 +genus contopus|4444172 +genus conuropsis|4444231 +genus convallaria|4444296 +genus convolvulus|4444374 +genus conyza|4444450 +genus copernicia|4444512 +genus coprinus|4444596 +genus coptis|4444657 +genus coracias|4444721 +genus coragyps|4444780 +genus corallorhiza|4444839 +genus corchorus|4444929 +genus cordaites|4445002 +genus cordia|4445070 +genus cordyline|4445143 +genus cordylus|4445215 +genus coregonus|4445277 +genus coreopsis|4445339 +genus coriandrum|4445400 +genus corixa|4445472 +genus cornus|4445530 +genus corokia|4445590 +genus coronilla|4445653 +genus corozo|4445712 +genus cortaderia|4445777 +genus corticium|4445861 +genus cortinarius|4445925 +genus corvus|4445995 +genus coryanthes|4446048 +genus corydalis|4446132 +genus corydalus|4446280 +genus corylopsis|4446373 +genus corylus|4446439 +genus corynebacterium|4446506 +genus corypha|4446574 +genus coryphantha|4446649 +genus corythosaurus|4446720 +genus coscoroba|4446783 +genus cosmocampus|4446835 +genus cosmos|4446903 +genus costia|4446958 +genus cotinga|4447010 +genus cotinus|4447058 +genus cotoneaster|4447134 +genus cottus|4447197 +genus cotula|4447250 +genus coturnix|4447312 +genus coumarouna|4447371 +genus cracticus|4447467 +genus crambe|4447529 +genus crangon|4447593 +genus craspedia|4447654 +genus crassostrea|4447725 +genus crassula|4447796 +genus crataegus|4447856 +genus crateva|4447925 +genus crax|4447992 +genus crepis|4448039 +genus crescentia|4448101 +genus crex|4448175 +genus cricetus|4448222 +genus crocethia|4448283 +genus crocodilus|4448345 +genus crocodylus|4448441 +genus crocus|4448537 +genus crocuta|4448593 +genus cronartium|4448651 +genus crotalaria|4448718 +genus crotalus|4448779 +genus crotaphytus|4448841 +genus croton|4448912 +genus crotophaga|4448965 +genus cryptacanthodes|4449030 +genus cryptobranchus|4449110 +genus cryptocercus|4449192 +genus cryptocoryne|4449268 +genus cryptogramma|4449345 +genus cryptomeria|4449416 +genus cryptoprocta|4449490 +genus cryptotermes|4449566 +genus cryptotis|4449642 +genus ctenocephalides|4449706 +genus ctenocephalus|4449791 +genus cuculus|4449892 +genus cucumis|4449948 +genus cucurbita|4450024 +genus culcita|4450106 +genus culex|4450162 +genus cuminum|4450217 +genus cuniculus|4450280 +genus cuon|4450344 +genus cupressus|4450409 +genus curcuma|4450477 +genus cursorius|4450552 +genus curtisia|4450614 +genus cuscuta|4450680 +genus cuterebra|4450756 +genus cyamopsis|4450823 +genus cyamus|4450892 +genus cyanocitta|4450950 +genus cyathea|4451015 +genus cycas|4451071 +genus cyclamen|4451127 +genus cycloloma|4451197 +genus cyclopes|4451274 +genus cyclophorus|4451372 +genus cyclops|4451440 +genus cyclopterus|4451493 +genus cyclosorus|4451561 +genus cycnoches|4451626 +genus cydonia|4451707 +genus cygnus|4451770 +genus cymbidium|4451823 +genus cynancum|4451894 +genus cynara|4451964 +genus cynips|4452026 +genus cynocephalus|4452084 +genus cynodon|4452157 +genus cynoglossum|4452232 +genus cynomys|4452301 +genus cynopterus|4452359 +genus cynoscion|4452426 +genus cyon|4452488 +genus cyperus|4452553 +genus cyphomandra|4452670 +genus cypraea|4452747 +genus cyprinus|4452806 +genus cypripedium|4452865 +genus cyrilla|4452952 +genus cyrtomium|4453020 +genus cystophora|4453082 +genus cystopteris|4453149 +genus cytisus|4453217 +genus daboecia|4453280 +genus dacelo|4453350 +genus dacrycarpus|4453403 +genus dacrydium|4453477 +genus dacrymyces|4453545 +genus dactylis|4453612 +genus dactyloctenium|4453690 +genus dactylopius|4453786 +genus dactylopterus|4453859 +genus dactylorhiza|4453933 +genus dahlia|4454023 +genus dalbergia|4454078 +genus dalea|4454147 +genus dama|4454204 +genus damaliscus|4454253 +genus danaea|4454320 +genus danaus|4454373 +genus daphne|4454431 +genus daphnia|4454497 +genus darlingtonia|4454550 +genus darmera|4454641 +genus dasyatis|4454736 +genus dasyprocta|4454795 +genus dasypus|4454862 +genus dasyurus|4454920 +genus datura|4454981 +genus daubentonia|4455043 +genus daucus|4455113 +genus davallia|4455173 +genus daviesia|4455223 +genus decapterus|4455289 +genus decumaria|4455354 +genus deinocheirus|4455423 +genus deinonychus|4455484 +genus delairea|4455543 +genus delichon|4455611 +genus delonix|4455670 +genus delphinapterus|4455733 +genus delphinium|4455812 +genus delphinus|4455877 +genus dendranthema|4455941 +genus dendraspis|4456021 +genus dendroaspis|4456119 +genus dendrobium|4456218 +genus dendrocalamus|4456291 +genus dendrocolaptes|4456384 +genus dendroctonus|4456461 +genus dendroica|4456537 +genus dendrolagus|4456599 +genus dendromecon|4456669 +genus denisonia|4456748 +genus dennstaedtia|4456813 +genus dentaria|4456884 +genus deparia|4456954 +genus dermacentor|4457010 +genus dermatobia|4457083 +genus dermochelys|4457153 +genus derris|4457224 +genus descurainia|4457277 +genus desmanthus|4457356 +genus desmidium|4457428 +genus desmodium|4457496 +genus desmodus|4457565 +genus desmograthus|4457626 +genus deutzia|4457702 +genus diacalpa|4457757 +genus diadophis|4457816 +genus dialeurodes|4457881 +genus dianthus|4457954 +genus diapensia|4458028 +genus diapheromera|4458091 +genus dicamptodon|4458154 +genus dicentra|4458215 +genus diceros|4458285 +genus dichondra|4458343 +genus dicksonia|4458415 +genus dicranopteris|4458477 +genus dicranum|4458551 +genus dicrostonyx|4458610 +genus dictamnus|4458680 +genus dictostylium|4458749 +genus dictyophera|4458809 +genus didelphis|4458879 +genus dieffenbachia|4458943 +genus diervilla|4459036 +genus difflugia|4459107 +genus digitalis|4459165 +genus digitaria|4459226 +genus dillenia|4459307 +genus dimetrodon|4459368 +genus dimocarpus|4459425 +genus dimorphotheca|4459510 +genus dinornis|4459593 +genus diodon|4459652 +genus diomedea|4459705 +genus dionaea|4459755 +genus dioon|4459831 +genus dioscorea|4459881 +genus diospyros|4459944 +genus diphylla|4460026 +genus dipladenia|4460087 +genus diplococcus|4460200 +genus diplodocus|4460260 +genus diplopterygium|4460317 +genus diplotaxis|4460394 +genus dipodomys|4460470 +genus dipogon|4460534 +genus dipsacus|4460597 +genus dipsosaurus|4460665 +genus dipteronia|4460736 +genus dipteryx|4460821 +genus dipus|4460915 +genus dirca|4460967 +genus disa|4461037 +genus discina|4461098 +genus dodonaea|4461148 +genus dolichonyx|4461227 +genus dolichos|4461292 +genus dolichotis|4461358 +genus doliolum|4461425 +genus dombeya|4461479 +genus doodia|4461538 +genus doronicum|4461584 +genus dorotheanthus|4461655 +genus doryopteris|4461744 +genus dovyalis|4461812 +genus draba|4461882 +genus dracaena|4461937 +genus draco|4461997 +genus dracocephalum|4462050 +genus dracontium|4462133 +genus dracula|4462206 +genus dracunculus|4462281 +genus dreissena|4462416 +genus drepanis|4462481 +genus drimys|4462540 +genus dromaius|4462604 +genus drosera|4462663 +genus drosophila|4462739 +genus drosophyllum|4462798 +genus dryadella|4462889 +genus dryas|4462970 +genus drymarchon|4463027 +genus drymoglossum|4463095 +genus drynaria|4463166 +genus dryopithecus|4463225 +genus dryopteris|4463298 +genus drypis|4463363 +genus dugong|4463424 +genus dumetella|4463472 +genus durio|4463534 +genus dusicyon|4463595 +genus dysdercus|4463656 +genus eacles|4463723 +genus eburophyton|4463781 +genus ecballium|4463868 +genus echeneis|4463950 +genus echidnophaga|4464009 +genus echinacea|4464085 +genus echinocactus|4464156 +genus echinocereus|4464229 +genus echinochloa|4464315 +genus echinococcus|4464402 +genus echinops|4464460 +genus echium|4464528 +genus ectopistes|4464582 +genus edaphosaurus|4464647 +genus edmontosaurus|4464708 +genus egeria|4464771 +genus egretta|4464843 +genus eichhornia|4464899 +genus eimeria|4464983 +genus eira|4465037 +genus elaeagnus|4465086 +genus elaeis|4465168 +genus elaeocarpus|4465240 +genus elagatis|4465319 +genus elanoides|4465378 +genus elanus|4465440 +genus elaphe|4465493 +genus elaphurus|4465549 +genus electrophorus|4465613 +genus eleocharis|4465687 +genus elephantopus|4465771 +genus elephas|4465851 +genus elettaria|4465909 +genus eleusine|4465990 +genus eleutherodactylus|4466068 +genus eliomys|4466159 +genus elodea|4466217 +genus elops|4466308 +genus elsholtzia|4466358 +genus elymus|4466421 +genus emberiza|4466493 +genus embothrium|4466552 +genus emilia|4466637 +genus emmanthe|4466699 +genus empetrum|4466767 +genus encelia|4466846 +genus enceliopsis|4466911 +genus encephalartos|4466988 +genus encyclia|4467054 +genus endamoeba|4467132 +genus engelmannia|4467200 +genus engraulis|4467265 +genus enhydra|4467327 +genus ensete|4467385 +genus ensis|4467457 +genus entandrophragma|4467510 +genus entelea|4467597 +genus enterobius|4467664 +genus enterolobium|4467729 +genus entoloma|4467807 +genus entomophthora|4467868 +genus eoraptor|4467944 +genus epacris|4467997 +genus ephedra|4468056 +genus ephestia|4468110 +genus ephippiorhynchus|4468174 +genus epidendrum|4468257 +genus epigaea|4468341 +genus epilachna|4468408 +genus epilobium|4468475 +genus epimedium|4468544 +genus epinephelus|4468617 +genus epipactis|4468685 +genus epiphyllum|4468766 +genus epipremnum|4468835 +genus episcia|4468919 +genus eptatretus|4468976 +genus eptesicus|4469030 +genus equetus|4469094 +genus equisetum|4469150 +genus equus|4469212 +genus eragrostis|4469264 +genus eranthis|4469348 +genus ercilla|4469418 +genus erechtites|4469489 +genus erethizon|4469552 +genus eretmochelys|4469616 +genus erianthus|4469690 +genus erica|4469771 +genus erigeron|4469826 +genus erignathus|4469894 +genus erinaceus|4469961 +genus eriobotrya|4470025 +genus eriocaulon|4470097 +genus eriodictyon|4470181 +genus eriogonum|4470258 +genus eriophorum|4470330 +genus eriophyllum|4470414 +genus eriosoma|4470491 +genus erithacus|4470555 +genus erodium|4470617 +genus erolia|4470680 +genus eruca|4470733 +genus erwinia|4470794 +genus eryngium|4470846 +genus erysimum|4470912 +genus erysiphe|4470982 +genus erythrina|4471043 +genus erythrocebus|4471102 +genus erythronium|4471175 +genus erythroxylon|4471253 +genus erythroxylum|4471357 +genus escherichia|4471461 +genus eschrichtius|4471521 +genus eschscholtzia|4471594 +genus esox|4471679 +genus estrilda|4471726 +genus etropus|4471785 +genus euarctos|4471841 +genus eucalyptus|4471902 +genus eucarya|4471976 +genus eucinostomus|4472065 +genus euderma|4472136 +genus eudyptes|4472194 +genus eugenia|4472253 +genus euglena|4472329 +genus eumeces|4472383 +genus eumenes|4472442 +genus eumetopias|4472503 +genus eumops|4472570 +genus eunectes|4472625 +genus euonymus|4472687 +genus eupatorium|4472766 +genus euphagus|4472840 +genus euphorbia|4472899 +genus euphractus|4472968 +genus euplectella|4473035 +genus euproctis|4473105 +genus eurotium|4473172 +genus euryale|4473233 +genus eustoma|4473295 +genus eutamias|4473371 +genus euterpe|4473432 +genus euthynnus|4473507 +genus evernia|4473569 +genus exacum|4473627 +genus exaeretodon|4473700 +genus fabiana|4473771 +genus fagopyrum|4473836 +genus fagus|4473918 +genus falcatifolium|4473979 +genus falco|4474059 +genus fasciola|4474109 +genus fasciolopsis|4474168 +genus feijoa|4474239 +genus felicia|4474305 +genus felis|4474370 +genus ferocactus|4474422 +genus festuca|4474502 +genus ficus|4474577 +genus filago|4474647 +genus firmiana|4474702 +genus fissurella|4474772 +genus fistularia|4474840 +genus fistulina|4474905 +genus flacourtia|4474969 +genus flammulina|4475045 +genus flindersia|4475112 +genus foeniculum|4475184 +genus fomes|4475256 +genus forestiera|4475308 +genus forficula|4475382 +genus formica|4475449 +genus formicarius|4475510 +genus forsythia|4475578 +genus fortunella|4475650 +genus fossa|4475722 +genus fothergilla|4475774 +genus fouquieria|4475831 +genus fragaria|4475907 +genus francisella|4475973 +genus francoa|4476049 +genus frankliniella|4476112 +genus frasera|4476191 +genus fratercula|4476267 +genus fraxinus|4476332 +genus freesia|4476411 +genus fregata|4476469 +genus fremontia|4476525 +genus fremontodendron|4476636 +genus fringilla|4476753 +genus fritillaria|4476815 +genus froelichia|4476893 +genus fuchsia|4476973 +genus fucus|4477041 +genus fulica|4477091 +genus fulmarus|4477144 +genus fumaria|4477203 +genus fundulus|4477270 +genus fungia|4477329 +genus funka|4477390 +genus furnarius|4477468 +genus fusanus|4477530 +genus fusarium|4477619 +genus fuscoboletinus|4477671 +genus gadus|4477750 +genus gaillardia|4477800 +genus galago|4477863 +genus galax|4477911 +genus galega|4477966 +genus galeocerdo|4478026 +genus galeopsis|4478091 +genus galeorhinus|4478162 +genus galictis|4478230 +genus galium|4478282 +genus galleria|4478344 +genus gallinago|4478408 +genus gallinula|4478492 +genus gallirallus|4478554 +genus gallus|4478622 +genus gambelia|4478675 +genus gambusia|4478737 +genus garcinia|4478796 +genus gardenia|4478866 +genus garrulus|4478925 +genus gasterophilus|4478984 +genus gasterosteus|4479063 +genus gastroboletus|4479115 +genus gastrocybe|4479191 +genus gastrolobium|4479258 +genus gastrophryne|4479323 +genus gaultheria|4479399 +genus gavia|4479475 +genus gavialis|4479525 +genus gaylussacia|4479587 +genus gazania|4479666 +genus gazella|4479723 +genus geastrum|4479781 +genus gelechia|4479842 +genus gelsemium|4479906 +genus gempylus|4479988 +genus genetta|4480047 +genus genipa|4480105 +genus genista|4480160 +genus genlisea|4480223 +genus gentiana|4480274 +genus gentianella|4480353 +genus gentianopsis|4480441 +genus genyonemus|4480532 +genus geochelone|4480597 +genus geococcyx|4480665 +genus geoffroea|4480727 +genus geoglossum|4480796 +genus geomys|4480863 +genus geophilus|4480918 +genus geothlypis|4480985 +genus geranium|4481050 +genus gerardia|4481101 +genus gerbera|4481160 +genus gerbillus|4481225 +genus gerea|4481289 +genus gerres|4481348 +genus gerrhonotus|4481401 +genus gerris|4481472 +genus gesneria|4481530 +genus geum|4481589 +genus giardia|4481643 +genus ginglymostoma|4481697 +genus ginkgo|4481771 +genus giraffa|4481823 +genus gladiolus|4481881 +genus glareola|4481943 +genus glaucium|4482002 +genus glaucomys|4482072 +genus glaux|4482136 +genus glechoma|4482206 +genus gleditsia|4482274 +genus gleichenia|4482343 +genus gliricidia|4482408 +genus glis|4482469 +genus globicephala|4482518 +genus globigerina|4482591 +genus gloriosa|4482653 +genus glossina|4482713 +genus glossodia|4482768 +genus glossopsitta|4482849 +genus gloxinia|4482920 +genus glyceria|4482979 +genus glycine|4483057 +genus glycyrrhiza|4483120 +genus gnaphalium|4483195 +genus gnetum|4483269 +genus gobiesox|4483321 +genus gobio|4483380 +genus gomphotherium|4483430 +genus gomphrena|4483506 +genus goniopteris|4483583 +genus gonorhynchus|4483651 +genus goodyera|4483722 +genus gopherus|4483800 +genus gorgonocephalus|4483862 +genus gorilla|4483948 +genus gossypium|4483998 +genus gracula|4484071 +genus grammatophyllum|4484127 +genus grampus|4484226 +genus graptophyllum|4484276 +genus grevillea|4484359 +genus grewia|4484431 +genus grias|4484495 +genus grindelia|4484565 +genus griselinia|4484636 +genus grison|4484708 +genus groenlandia|4484756 +genus grus|4484843 +genus guaiacum|4484890 +genus guevina|4484956 +genus gulo|4485032 +genus gutierrezia|4485081 +genus gymnadenia|4485158 +genus gymnadeniopsis|4485242 +genus gymnelis|4485338 +genus gymnocalycium|4485397 +genus gymnocarpium|4485486 +genus gymnocladus|4485557 +genus gymnogyps|4485632 +genus gymnopilus|4485694 +genus gymnorhina|4485761 +genus gymnosporangium|4485826 +genus gymnura|4485908 +genus gynura|4485964 +genus gypaetus|4486026 +genus gyps|4486085 +genus gypsophila|4486132 +genus gyromitra|4486212 +genus haastia|4486266 +genus habenaria|4486331 +genus hackelia|4486412 +genus haemanthus|4486494 +genus haematobia|4486569 +genus haematopus|4486639 +genus haematoxylon|4486704 +genus haematoxylum|4486814 +genus haemodorum|4486924 +genus haemopis|4487008 +genus haemoproteus|4487067 +genus haemulon|4487144 +genus hakea|4487203 +genus halcyon|4487273 +genus haldea|4487329 +genus halenia|4487385 +genus halesia|4487461 +genus haliaeetus|4487537 +genus halicoeres|4487602 +genus halimodendron|4487667 +genus haliotis|4487748 +genus halocarpus|4487810 +genus halogeton|4487881 +genus hamamelidanthum|4487948 +genus hamamelidoxylon|4488048 +genus hamamelis|4488148 +genus hamamelites|4488211 +genus hamelia|4488299 +genus haminoea|4488356 +genus haplopappus|4488418 +genus hardenbergia|4488495 +genus harpia|4488573 +genus harpullia|4488626 +genus harrisia|4488698 +genus hatiora|4488772 +genus hazardia|4488843 +genus hedeoma|4488911 +genus hedera|4488976 +genus hedysarum|4489036 +genus helenium|4489105 +genus heleodytes|4489173 +genus heliamphora|4489276 +genus helianthemum|4489364 +genus helianthus|4489433 +genus helichrysum|4489496 +genus helicteres|4489573 +genus heliobacter|4489649 +genus heliophila|4489721 +genus heliopsis|4489786 +genus heliothis|4489847 +genus helipterum|4489914 +genus helix|4489988 +genus helleborus|4490041 +genus helminthostachys|4490117 +genus heloderma|4490200 +genus helotium|4490265 +genus helvella|4490326 +genus helwingia|4490378 +genus helxine|4490447 +genus hemachatus|4490551 +genus hemerocallis|4490619 +genus hemigalus|4490700 +genus hemigrammus|4490764 +genus hemipteronatus|4490832 +genus hemitripterus|4490909 +genus hepatica|4490983 +genus heracleum|4491044 +genus heritiera|4491113 +genus hermannia|4491212 +genus hermissenda|4491285 +genus hernaria|4491356 +genus herpestes|4491430 +genus herrerasaurus|4491494 +genus hesperiphona|4491557 +genus hesperis|4491628 +genus heteranthera|4491698 +genus heterocephalus|4491788 +genus heterodon|4491867 +genus heteromeles|4491932 +genus heteroscelus|4492007 +genus heterotheca|4492078 +genus heuchera|4492155 +genus hevea|4492221 +genus hexagrammos|4492278 +genus hexalectris|4492346 +genus hexamita|4492433 +genus hexanchus|4492498 +genus hibbertia|4492560 +genus hibiscus|4492633 +genus hieracium|4492694 +genus himantoglossum|4492765 +genus himantopus|4492861 +genus hippeastrum|4492926 +genus hippobosca|4492992 +genus hippocampus|4493062 +genus hippocrepis|4493130 +genus hippodamia|4493205 +genus hippoglossoides|4493275 +genus hippoglossus|4493355 +genus hippopotamus|4493426 +genus hipposideros|4493486 +genus hippotragus|4493559 +genus hipsurus|4493629 +genus hirudo|4493688 +genus hirundo|4493741 +genus hoheria|4493797 +genus holarrhena|4493864 +genus holbrookia|4493949 +genus holcus|4494017 +genus holocentrus|4494089 +genus holothuria|4494157 +genus homarus|4494228 +genus homo|4494289 +genus homogyne|4494333 +genus homona|4494401 +genus hordeum|4494459 +genus horneophyton|4494534 +genus hosta|4494605 +genus hottonia|4494683 +genus houttuynia|4494762 +genus hovea|4494847 +genus hoya|4494898 +genus hudsonia|4494960 +genus hugueninia|4495030 +genus hulsea|4495106 +genus humulus|4495168 +genus hunnemania|4495244 +genus hyacinthoides|4495321 +genus hyacinthus|4495405 +genus hyaena|4495469 +genus hyalophora|4495517 +genus hyalosperma|4495587 +genus hybanthus|4495664 +genus hydnocarpus|4495737 +genus hydnum|4495880 +genus hydra|4495935 +genus hydrangea|4495987 +genus hydrastis|4496046 +genus hydrilla|4496119 +genus hydrobates|4496188 +genus hydrocharis|4496253 +genus hydrochoerus|4496340 +genus hydrodamalis|4496413 +genus hydromantes|4496486 +genus hydromys|4496559 +genus hydrophyllum|4496620 +genus hyemoschus|4496700 +genus hygrocybe|4496767 +genus hygrophorus|4496831 +genus hygrotrama|4496901 +genus hyla|4496968 +genus hylactophryne|4497020 +genus hylobates|4497099 +genus hylocereus|4497163 +genus hylocichla|4497243 +genus hylophylax|4497308 +genus hymenaea|4497373 +genus hymenanthera|4497439 +genus hymenophyllum|4497521 +genus hynerpeton|4497595 +genus hyoscyamus|4497665 +genus hypentelium|4497739 +genus hypericum|4497807 +genus hyperoglyphe|4497880 +genus hyperoodon|4497951 +genus hyphantria|4498018 +genus hypochaeris|4498088 +genus hypochoeris|4498195 +genus hypoderma|4498302 +genus hypopachus|4498369 +genus hypopitys|4498439 +genus hypoxis|4498512 +genus hypsiglena|4498578 +genus hypsiprymnodon|4498646 +genus hyracotherium|4498725 +genus hyssopus|4498801 +genus iberis|4498869 +genus ibero-mesornis|4498933 +genus ibis|4498995 +genus ichthyosaurus|4499037 +genus ichthyostega|4499100 +genus ictalurus|4499163 +genus icteria|4499225 +genus icterus|4499281 +genus ictiobus|4499337 +genus ictonyx|4499396 +genus idesia|4499454 +genus iguana|4499511 +genus iguanodon|4499560 +genus ilex|4499615 +genus iliamna|4499682 +genus illecebrum|4499749 +genus illicium|4499829 +genus impatiens|4499899 +genus inachis|4499958 +genus indigofera|4500019 +genus indri|4500091 +genus inga|4500137 +genus inula|4500186 +genus ipomoea|4500239 +genus irena|4500315 +genus iresine|4500365 +genus iridoprocne|4500436 +genus iris|4500504 +genus irvingia|4500595 +genus isatis|4500661 +genus ischigualastia|4500725 +genus isoetes|4500805 +genus isopyrum|4500861 +genus istiophorus|4500931 +genus isurus|4500999 +genus iva|4501052 +genus ixia|4501101 +genus ixobrychus|4501158 +genus ixodes|4501223 +genus jabiru|4501281 +genus jacksonia|4501327 +genus jacquinia|4501396 +genus jaculus|4501478 +genus jambos|4501536 +genus jamesonia|4501609 +genus jasminum|4501671 +genus jatropha|4501750 +genus javanthropus|4501816 +genus jordanella|4501884 +genus juglans|4501949 +genus junco|4502025 +genus juncus|4502069 +genus juniperus|4502141 +genus jynx|4502209 +genus kakatoe|4502256 +genus kalmia|4502334 +genus kalotermes|4502391 +genus katsuwonus|4502461 +genus kennedia|4502526 +genus kennedya|4502616 +genus kenyapithecus|4502706 +genus keteleeria|4502782 +genus khaya|4502842 +genus kiggelaria|4502899 +genus kinosternon|4502975 +genus kirkia|4503046 +genus klebsiella|4503106 +genus knightia|4503164 +genus kniphofia|4503243 +genus kobus|4503305 +genus kochia|4503357 +genus koellia|4503445 +genus kogia|4503542 +genus kohleria|4503594 +genus kolkwitzia|4503653 +genus kosteletzya|4503727 +genus krigia|4503806 +genus krypterophaneron|4503861 +genus kyphosus|4503944 +genus lablab|4504003 +genus laburnum|4504063 +genus laccopetalum|4504129 +genus lacerta|4504211 +genus lachnolaimus|4504270 +genus lactarius|4504341 +genus lactobacillus|4504405 +genus lactophrys|4504469 +genus lactuca|4504534 +genus laelia|4504599 +genus lagarostrobus|4504664 +genus lagenaria|4504744 +genus lagenophera|4504826 +genus lagerstroemia|4504903 +genus lagidium|4504978 +genus lagodon|4505039 +genus lagopus|4505095 +genus lagorchestes|4505151 +genus lagostomus|4505224 +genus lagothrix|4505291 +genus laguncularia|4505355 +genus lama|4505427 +genus lambertia|4505476 +genus lambis|4505558 +genus laminaria|4505614 +genus lamium|4505682 +genus lamna|4505744 +genus lampris|4505794 +genus lampropeltis|4505850 +genus languas|4505924 +genus lanius|4506010 +genus lansium|4506063 +genus lanthanotus|4506118 +genus laportea|4506189 +genus lappula|4506268 +genus lardizabala|4506349 +genus larix|4506428 +genus larrea|4506484 +genus larus|4506544 +genus lasiocampa|4506594 +genus lasiurus|4506664 +genus lasthenia|4506725 +genus lastreopsis|4506796 +genus lathyrus|4506864 +genus latimeria|4506930 +genus latrodectus|4506992 +genus laurus|4507065 +genus lavandula|4507129 +genus lavatera|4507200 +genus layia|4507270 +genus lebistes|4507329 +genus lecanopteris|4507388 +genus lecanora|4507446 +genus leccinum|4507498 +genus ledum|4507559 +genus leiopelma|4507620 +genus leiophyllum|4507711 +genus leipoa|4507790 +genus leishmania|4507836 +genus leitneria|4507971 +genus lemaireocereus|4508053 +genus lemmus|4508145 +genus lemna|4508187 +genus lemur|4508256 +genus lens|4508302 +genus lentinus|4508356 +genus leonotis|4508417 +genus leontideus|4508485 +genus leontocebus|4508571 +genus leontodon|4508658 +genus leontopodium|4508729 +genus leonurus|4508809 +genus lepas|4508877 +genus lepechinia|4508932 +genus lepidium|4509030 +genus lepidobotrys|4509100 +genus lepidochelys|4509165 +genus lepidocybium|4509239 +genus lepidothamnus|4509310 +genus lepiota|4509390 +genus lepisma|4509440 +genus lepisosteus|4509501 +genus lepomis|4509569 +genus leptarrhena|4509625 +genus leptinotarsa|4509700 +genus leptodactylus|4509776 +genus leptoglossus|4509855 +genus leptopteris|4509931 +genus leptoptilus|4509999 +genus leptospira|4510067 +genus leptotyphlops|4510125 +genus lepus|4510202 +genus lespedeza|4510254 +genus lesquerella|4510313 +genus leucadendron|4510392 +genus leucaena|4510483 +genus leucanthemum|4510549 +genus leuciscus|4510629 +genus leucocytozoan|4510691 +genus leucocytozoon|4510777 +genus leucogenes|4510863 +genus leucothoe|4510937 +genus levisticum|4511000 +genus lewisia|4511072 +genus leycesteria|4511143 +genus leymus|4511220 +genus liatris|4511292 +genus libocedrus|4511357 +genus lichanura|4511428 +genus ligularia|4511493 +genus ligustrum|4511564 +genus lilium|4511646 +genus limanda|4511709 +genus limax|4511765 +genus limenitis|4511818 +genus limnobium|4511885 +genus limnocryptes|4511966 +genus limnodromus|4512037 +genus limonium|4512105 +genus limosa|4512184 +genus limulus|4512237 +genus linanthus|4512298 +genus linaria|4512361 +genus lindera|4512426 +genus lindheimera|4512493 +genus linnaea|4512570 +genus linum|4512635 +genus liomys|4512686 +genus liopelma|4512741 +genus liparis|4512831 +genus liposcelis|4512938 +genus liquidambar|4513008 +genus liriodendron|4513065 +genus liriope|4513147 +genus listera|4513213 +genus listeria|4513288 +genus litchi|4513342 +genus lithocarpus|4513408 +genus lithophragma|4513487 +genus lithops|4513565 +genus lithospermum|4513628 +genus litocranius|4513700 +genus littorina|4513770 +genus livistona|4513835 +genus loasa|4513898 +genus lobelia|4513953 +genus lobipes|4514021 +genus lobotes|4514077 +genus lobularia|4514133 +genus locusta|4514206 +genus lofortyx|4514267 +genus logania|4514326 +genus loiseleuria|4514402 +genus loligo|4514481 +genus lolium|4514530 +genus lomatia|4514602 +genus lomogramma|4514670 +genus lonas|4514735 +genus lonchocarpus|4514794 +genus lonicera|4514872 +genus lophius|4514940 +genus lophodytes|4514996 +genus lopholatilus|4515061 +genus lophophora|4515132 +genus lophophorus|4515212 +genus lophosoria|4515280 +genus loranthus|4515345 +genus loris|4515418 +genus lota|4515464 +genus lotus|4515511 +genus lovoa|4515568 +genus loxia|4515625 +genus loxodonta|4515675 +genus loxoma|4515739 +genus loxostege|4515792 +genus lucilia|4515859 +genus lufengpithecus|4515920 +genus luffa|4515999 +genus lumpenus|4516063 +genus lunaria|4516122 +genus lunda|4516189 +genus lupinus|4516239 +genus luscinia|4516302 +genus lutjanus|4516361 +genus lutra|4516420 +genus luvarus|4516472 +genus lycaena|4516528 +genus lycaeon|4516589 +genus lychnis|4516647 +genus lycium|4516710 +genus lycoperdon|4516772 +genus lycopersicon|4516839 +genus lycopersicum|4516951 +genus lycopodium|4517063 +genus lycopus|4517128 +genus lycosa|4517193 +genus lyginopteris|4517251 +genus lygodium|4517328 +genus lygus|4517387 +genus lymantria|4517442 +genus lynx|4517509 +genus lyonia|4517553 +genus lyrurus|4517617 +genus lysichiton|4517673 +genus lysichitum|4517785 +genus lysiloma|4517897 +genus lysimachia|4517963 +genus lythrum|4518048 +genus macaca|4518124 +genus macadamia|4518179 +genus machaeranthera|4518251 +genus macleaya|4518337 +genus maclura|4518407 +genus macowanites|4518483 +genus macrocephalon|4518553 +genus macrocheira|4518627 +genus macroclemys|4518700 +genus macrodactylus|4518771 +genus macronectes|4518850 +genus macropus|4518918 +genus macrothelypteris|4518979 +genus macrotis|4519062 +genus macrotus|4519123 +genus macrotyloma|4519175 +genus macrozamia|4519250 +genus macrozoarces|4519310 +genus madia|4519381 +genus madoqua|4519440 +genus maeandra|4519498 +genus magicicada|4519565 +genus magnolia|4519635 +genus mahonia|4519696 +genus maia|4519763 +genus maianthemum|4519831 +genus maja|4519909 +genus majorana|4519977 +genus makaira|4520045 +genus malaclemys|4520101 +genus malacosoma|4520169 +genus malacothamnus|4520239 +genus malaxis|4520324 +genus malcolmia|4520399 +genus mallotus|4520472 +genus malope|4520531 +genus malopterurus|4520588 +genus malosma|4520659 +genus malpighia|4520735 +genus malus|4520804 +genus malva|4520861 +genus malvastrum|4520922 +genus malvaviscus|4520998 +genus mammea|4521077 +genus mammillaria|4521141 +genus mammut|4521212 +genus mammuthus|4521282 +genus mandevilla|4521346 +genus mandragora|4521459 +genus mandrillus|4521533 +genus manduca|4521600 +genus mangifera|4521661 +genus manglietia|4521743 +genus manihot|4521814 +genus manilkara|4521877 +genus manis|4521959 +genus manta|4522011 +genus mantis|4522055 +genus maranta|4522106 +genus marasmius|4522173 +genus marattia|4522237 +genus marchantia|4522296 +genus marmota|4522361 +genus marrubium|4522419 +genus marsilea|4522490 +genus martes|4522549 +genus martynia|4522604 +genus masdevallia|4522655 +genus masticophis|4522730 +genus mastigoproctus|4522801 +genus mastodon|4522883 +genus mastotermes|4522955 +genus matricaria|4523028 +genus matteuccia|4523102 +genus matthiola|4523191 +genus maxillaria|4523264 +genus maxostoma|4523337 +genus mayaca|4523399 +genus mayetiola|4523471 +genus mazama|4523538 +genus meconopsis|4523593 +genus medicago|4523669 +genus medinilla|4523775 +genus megachile|4523844 +genus megaderma|4523911 +genus megalobatrachus|4523975 +genus megalosaurus|4524060 +genus megaptera|4524121 +genus megatherium|4524185 +genus melampodium|4524255 +genus melampsora|4524332 +genus melanerpes|4524399 +genus melanitta|4524464 +genus melanogrammus|4524526 +genus melanoplus|4524600 +genus melanotis|4524670 +genus melastoma|4524732 +genus meleagris|4524801 +genus meles|4524863 +genus melia|4524915 +genus melicocca|4524972 +genus melicoccus|4525082 +genus melicytus|4525193 +genus melilotus|4525266 +genus melissa|4525325 +genus mellivora|4525390 +genus melocactus|4525454 +genus melogale|4525534 +genus melolontha|4525595 +genus melophagus|4525665 +genus melopsittacus|4525735 +genus melospiza|4525809 +genus melursus|4525871 +genus menippe|4525932 +genus meniscium|4525993 +genus menispermum|4526055 +genus menopon|4526134 +genus mentha|4526195 +genus menticirrhus|4526257 +genus mentzelia|4526328 +genus menura|4526401 +genus menyanthes|4526454 +genus menziesia|4526539 +genus mephitis|4526612 +genus mercenaria|4526673 +genus mercurialis|4526741 +genus mergus|4526816 +genus meriones|4526869 +genus merlangus|4526930 +genus merluccius|4526992 +genus merops|4527057 +genus mertensia|4527110 +genus meryta|4527173 +genus mesembryanthemum|4527233 +genus mesocricetus|4527331 +genus mesohippus|4527404 +genus mespilus|4527460 +genus mesua|4527526 +genus metasequoia|4527587 +genus metroxylon|4527649 +genus microcentrum|4527733 +genus micrococcus|4527809 +genus microdipodops|4527881 +genus microgramma|4527957 +genus micromeria|4528025 +genus micromyx|4528099 +genus micropogonias|4528160 +genus micropterus|4528234 +genus microsorium|4528302 +genus microsporum|4528370 +genus microstomus|4528440 +genus microstrobos|4528508 +genus microtus|4528585 +genus micruroides|4528646 +genus micrurus|4528717 +genus mikania|4528779 +genus millettia|4528844 +genus miltonia|4528903 +genus mimosa|4528981 +genus mimus|4529034 +genus minuartia|4529084 +genus mirabilis|4529161 +genus mirounga|4529238 +genus mitchella|4529299 +genus mitella|4529370 +genus mnium|4529433 +genus mobula|4529483 +genus moehringia|4529536 +genus mohria|4529616 +genus mola|4529669 +genus mollienesia|4529711 +genus molluga|4529779 +genus moloch|4529850 +genus molothrus|4529899 +genus molucella|4529961 +genus molva|4530032 +genus momordica|4530082 +genus momotus|4530164 +genus monarda|4530220 +genus monardella|4530277 +genus moneses|4530362 +genus monilia|4530429 +genus monocanthus|4530479 +genus monochamus|4530547 +genus monodon|4530617 +genus monomorium|4530675 +genus mononychus|4530745 +genus monotropa|4530802 +genus monstera|4530875 +genus montezuma|4530944 +genus montia|4531007 +genus morchella|4531075 +genus morone|4531139 +genus morus|4531192 +genus moschus|4531262 +genus motacilla|4531320 +genus mucor|4531382 +genus mucuna|4531428 +genus mugil|4531511 +genus muhlenbergia|4531561 +genus mulloidichthys|4531651 +genus mullus|4531728 +genus muntiacus|4531781 +genus muntingia|4531845 +genus mus|4531918 +genus musa|4531964 +genus musca|4532030 +genus muscardinus|4532085 +genus muscari|4532155 +genus muscicapa|4532221 +genus muscivora|4532283 +genus musophaga|4532345 +genus mustela|4532407 +genus mustelus|4532465 +genus mutinus|4532524 +genus mutisia|4532582 +genus mya|4532639 +genus myadestes|4532686 +genus mycobacterium|4532748 +genus mycoplasma|4532812 +genus mycteria|4532870 +genus mycteroperca|4532929 +genus mylodon|4533000 +genus myocastor|4533050 +genus myopus|4533114 +genus myosotis|4533169 +genus myotis|4533229 +genus myrciaria|4533284 +genus myrica|4533373 +genus myricaria|4533446 +genus myriophyllum|4533519 +genus myristica|4533610 +genus myrmecia|4533683 +genus myrmecobius|4533747 +genus myrmecophaga|4533817 +genus myrmeleon|4533890 +genus myroxylon|4533957 +genus myrrhis|4534026 +genus myrsine|4534089 +genus myrtillocactus|4534165 +genus myrtus|4534257 +genus mysis|4534330 +genus mytilus|4534385 +genus myxine|4534444 +genus myxinikela|4534497 +genus myxocephalus|4534562 +genus nabalus|4534633 +genus naemorhedus|4534698 +genus nageia|4534768 +genus naias|4534827 +genus naja|4534914 +genus najas|4534964 +genus nanomia|4535088 +genus napaea|4535144 +genus narcissus|4535208 +genus narthecium|4535270 +genus nasalis|4535345 +genus nasturtium|4535403 +genus nasua|4535479 +genus natrix|4535531 +genus nauclea|4535587 +genus naucrates|4535652 +genus nautilus|4535714 +genus necturus|4535767 +genus negaprion|4535831 +genus nelumbo|4535893 +genus nemophila|4535960 +genus neoceratodus|4536021 +genus neofiber|4536092 +genus neohygrophorus|4536153 +genus neolentinus|4536232 +genus neomys|4536302 +genus neophron|4536357 +genus neotoma|4536416 +genus nepa|4536474 +genus nepenthes|4536526 +genus nepeta|4536608 +genus nephelium|4536670 +genus nephrolepis|4536752 +genus nephrops|4536820 +genus nephthytis|4536884 +genus nerita|4536957 +genus neritina|4537006 +genus nerium|4537059 +genus nerodia|4537132 +genus nesokia|4537191 +genus nestor|4537249 +genus neurospora|4537302 +genus neurotrichus|4537369 +genus nicandra|4537442 +genus nicotiana|4537510 +genus nidularia|4537581 +genus nierembergia|4537645 +genus nigella|4537712 +genus nigroporus|4537771 +genus nimravus|4537838 +genus nipa|4537899 +genus nitella|4537981 +genus nitrobacter|4538043 +genus nitrosomonas|4538115 +genus noctiluca|4538190 +genus noctua|4538248 +genus nolina|4538306 +genus nomia|4538369 +genus nopalea|4538424 +genus nostoc|4538500 +genus notechis|4538550 +genus notemigonus|4538612 +genus nothofagus|4538680 +genus nothosaurus|4538756 +genus notomys|4538815 +genus notonecta|4538873 +genus notophthalmus|4538940 +genus notornis|4539019 +genus notoryctus|4539069 +genus notropis|4539136 +genus nucifraga|4539195 +genus numenius|4539257 +genus numida|4539316 +genus nuphar|4539369 +genus nuytsia|4539433 +genus nyctaginia|4539500 +genus nyctanassa|4539580 +genus nyctereutes|4539645 +genus nycticebus|4539715 +genus nycticorax|4539782 +genus nyctimene|4539847 +genus nymphaea|4539911 +genus nymphalis|4539981 +genus nymphicus|4540048 +genus nypa|4540110 +genus nyssa|4540192 +genus oceanites|4540262 +genus ochna|4540324 +genus ochotona|4540385 +genus ochroma|4540446 +genus ocimum|4540513 +genus octopus|4540575 +genus ocyurus|4540626 +genus odobenus|4540682 +genus odocoileus|4540743 +genus odontaspis|4540810 +genus odontoglossum|4540903 +genus odontophorus|4540982 +genus oecanthus|4541053 +genus oedogonium|4541120 +genus oenanthe|4541191 +genus oenothera|4541299 +genus oestrus|4541381 +genus okapia|4541442 +genus olea|4541497 +genus oleandra|4541564 +genus olearia|4541623 +genus olfersia|4541688 +genus oligoplites|4541747 +genus oligoporus|4541815 +genus ommastrephes|4541882 +genus omphalotus|4541943 +genus onchorynchus|4542010 +genus oncidium|4542081 +genus ondatra|4542150 +genus oniscus|4542208 +genus onobrychis|4542269 +genus onoclea|4542341 +genus ononis|4542397 +genus onopordon|4542457 +genus onopordum|4542554 +genus onosmodium|4542651 +genus onychium|4542717 +genus onychogalea|4542776 +genus onychomys|4542846 +genus opheodrys|4542910 +genus ophiodon|4542975 +genus ophioglossum|4543034 +genus ophiophagus|4543105 +genus ophisaurus|4543176 +genus ophrys|4543244 +genus opisthocomus|4543316 +genus opuntia|4543387 +genus orbignya|4543458 +genus orchestia|4543536 +genus orchis|4543603 +genus orcinus|4543668 +genus oreamnos|4543726 +genus orectolobus|4543787 +genus oreopteris|4543855 +genus oreortyx|4543920 +genus origanum|4543979 +genus oriolus|4544038 +genus orites|4544094 +genus ormosia|4544167 +genus ornithogalum|4544230 +genus ornithorhynchus|4544311 +genus orontium|4544393 +genus ortalis|4544471 +genus orthilia|4544527 +genus orthopristis|4544597 +genus orthotomus|4544668 +genus orycteropus|4544733 +genus oryctolagus|4544803 +genus oryx|4544873 +genus oryza|4544917 +genus oryzomys|4544986 +genus oryzopsis|4545047 +genus osmanthus|4545128 +genus osmerus|4545210 +genus osmunda|4545266 +genus ostrea|4545314 +genus ostrya|4545370 +genus ostryopsis|4545434 +genus otaria|4545510 +genus othonna|4545565 +genus otis|4545622 +genus otus|4545669 +genus ouranopithecus|4545716 +genus ovalipes|4545795 +genus ovibos|4545859 +genus ovis|4545914 +genus oxalis|4545963 +genus oxandra|4546016 +genus oxybelis|4546083 +genus oxydendrum|4546145 +genus oxylebius|4546221 +genus oxytropis|4546283 +genus oxyura|4546352 +genus oxyuranus|4546405 +genus ozonium|4546470 +genus ozothamnus|4546528 +genus pachycephala|4546602 +genus pachyrhizus|4546673 +genus pachysandra|4546748 +genus packera|4546824 +genus padda|4546889 +genus paeonia|4546939 +genus pagellus|4547006 +genus pagophila|4547065 +genus pagophilus|4547127 +genus pagrus|4547194 +genus pagurus|4547247 +genus palaemon|4547308 +genus palaquium|4547372 +genus paleacrita|4547454 +genus palinurus|4547524 +genus paliurus|4547591 +genus palometa|4547670 +genus pan|4547720 +genus panax|4547766 +genus pandanus|4547823 +genus pandion|4547892 +genus panicum|4547948 +genus panonychus|4548023 +genus panthera|4548093 +genus papaver|4548154 +genus paphiopedilum|4548221 +genus papio|4548314 +genus paprilus|4548366 +genus paracheirodon|4548425 +genus paradoxurus|4548499 +genus paralichthys|4548569 +genus paralithodes|4548640 +genus paramecium|4548716 +genus paranthias|4548776 +genus paranthropus|4548841 +genus parascalops|4548919 +genus parasitaxus|4548989 +genus parathelypteris|4549063 +genus parietaria|4549143 +genus paris|4549228 +genus parkia|4549279 +genus parkinsonia|4549339 +genus parmelia|4549414 +genus parnassia|4549475 +genus parochetus|4549534 +genus paronychia|4549606 +genus parophrys|4549686 +genus parrotia|4549748 +genus parrotiopsis|4549808 +genus parthenium|4549880 +genus parthenocissus|4549954 +genus parula|4550051 +genus parus|4550104 +genus paspalum|4550154 +genus passer|4550223 +genus passerina|4550276 +genus passiflora|4550338 +genus pastinaca|4550414 +genus patella|4550555 +genus pavo|4550614 +genus pavonia|4550661 +genus payena|4550720 +genus pecari|4550793 +genus pecopteris|4550863 +genus pecten|4550917 +genus pediculus|4550966 +genus pedilanthus|4551033 +genus pediocactus|4551108 +genus pedioecetes|4551191 +genus pedionomus|4551259 +genus peireskia|4551324 +genus pelargonium|4551425 +genus pelecanus|4551500 +genus pellaea|4551562 +genus pellicularia|4551618 +genus peltandra|4551691 +genus peltiphyllum|4551772 +genus penelope|4551872 +genus peneus|4551931 +genus penicillium|4551989 +genus pennatula|4552059 +genus pennisetum|4552129 +genus penstemon|4552213 +genus peperomia|4552284 +genus perca|4552356 +genus percina|4552406 +genus perdix|4552462 +genus pereskia|4552515 +genus pericallis|4552615 +genus peridinium|4552689 +genus perilla|4552760 +genus periophthalmus|4552825 +genus peripatopsis|4552902 +genus peripatus|4552978 +genus periplaneta|4553035 +genus periploca|4553108 +genus perisoreus|4553190 +genus peristedion|4553255 +genus pernis|4553323 +genus perodicticus|4553376 +genus perognathus|4553449 +genus peromyscus|4553519 +genus peronospora|4553586 +genus persea|4553656 +genus persoonia|4553720 +genus pertusaria|4553802 +genus petasites|4553869 +genus petaurista|4553940 +genus petaurus|4554007 +genus petrocoptis|4554068 +genus petrogale|4554151 +genus petromyzon|4554215 +genus petroselinum|4554280 +genus petteria|4554358 +genus petunia|4554424 +genus peziza|4554481 +genus pezophaps|4554536 +genus phacelia|4554598 +genus phacochoerus|4554657 +genus phaethon|4554730 +genus phaius|4554789 +genus phalacrocorax|4554854 +genus phalaenopsis|4554928 +genus phalaenoptilus|4555018 +genus phalanger|4555095 +genus phalangium|4555149 +genus phalaris|4555219 +genus phalaropus|4555297 +genus phallus|4555362 +genus pharomacrus|4555420 +genus phascogale|4555488 +genus phascolarctos|4555555 +genus phaseolus|4555631 +genus phasianus|4555700 +genus phegopteris|4555762 +genus phellodendron|4555830 +genus phenacomys|4555911 +genus philadelphus|4555967 +genus philaenus|4556032 +genus phillyrea|4556099 +genus philodendron|4556181 +genus philohela|4556258 +genus philomachus|4556320 +genus philophylla|4556388 +genus phlebodium|4556461 +genus phlebotomus|4556526 +genus phleum|4556599 +genus phlomis|4556671 +genus phlox|4556728 +genus phoca|4556773 +genus phocaena|4556825 +genus phoenicophorium|4556886 +genus phoeniculus|4556985 +genus phoenicurus|4557053 +genus phoenix|4557121 +genus pholas|4557196 +genus pholidota|4557252 +genus pholiota|4557333 +genus pholis|4557394 +genus pholistoma|4557447 +genus phoradendron|4557521 +genus photinia|4557603 +genus photoblepharon|4557669 +genus phoxinus|4557746 +genus phragmipedium|4557805 +genus phragmites|4557898 +genus phrynosoma|4557982 +genus phthirius|4558050 +genus phthirus|4558141 +genus phthorimaea|4558231 +genus phyllitis|4558304 +genus phyllium|4558386 +genus phyllocladus|4558450 +genus phyllodoce|4558527 +genus phylloporus|4558603 +genus phyllorhynchus|4558673 +genus phylloscopus|4558753 +genus phyllostachys|4558824 +genus phyllostomus|4558917 +genus phylloxera|4558990 +genus physa|4559060 +genus physalia|4559107 +genus physalis|4559174 +genus physaria|4559242 +genus physeter|4559312 +genus physostegia|4559373 +genus physostigma|4559438 +genus phytelephas|4559507 +genus phytolacca|4559576 +genus phytophthora|4559656 +genus pica|4559729 +genus picea|4559776 +genus pickeringia|4559832 +genus picoides|4559907 +genus picrasma|4559966 +genus picris|4560032 +genus picumnus|4560094 +genus picus|4560153 +genus pieris|4560203 +genus pilea|4560310 +genus pilosella|4560380 +genus pilularia|4560451 +genus pimenta|4560513 +genus pimpinella|4560589 +genus pinckneya|4560661 +genus pinctada|4560732 +genus pineus|4560794 +genus pinguicula|4560852 +genus pinguinus|4560918 +genus pinicola|4560980 +genus pinnotheres|4561039 +genus pinus|4561112 +genus pipa|4561168 +genus piper|4561220 +genus pipile|4561290 +genus pipilo|4561343 +genus pipistrellus|4561396 +genus pipra|4561469 +genus piptadenia|4561519 +genus pipturus|4561591 +genus piqueria|4561670 +genus piranga|4561738 +genus piroplasma|4561794 +genus pisanosaurus|4561868 +genus piscidia|4561929 +genus pisonia|4561995 +genus pistacia|4562066 +genus pistia|4562145 +genus pisum|4562210 +genus pithecanthropus|4562267 +genus pithecellobium|4562368 +genus pithecia|4562486 +genus pithecolobium|4562547 +genus pitta|4562664 +genus pituophis|4562708 +genus pitymys|4562773 +genus pityrogramma|4562831 +genus placuna|4562902 +genus plagianthus|4562961 +genus planera|4563040 +genus planococcus|4563116 +genus plantago|4563189 +genus plasmodiophora|4563268 +genus plasmodium|4563347 +genus platalea|4563407 +genus platanthera|4563466 +genus platanus|4563553 +genus platichthys|4563619 +genus platycerium|4563687 +genus platylobium|4563755 +genus platymiscium|4563830 +genus platypoecilus|4563908 +genus platystemon|4563982 +genus plautus|4564061 +genus plecotus|4564117 +genus plectania|4564178 +genus plectorrhiza|4564242 +genus plectranthus|4564332 +genus plectrophenax|4564399 +genus pleione|4564473 +genus pleiospilos|4564548 +genus plesianthropus|4564631 +genus plesiosaurus|4564710 +genus plethodon|4564771 +genus pleurobrachia|4564838 +genus pleuronectes|4564918 +genus pleurosorus|4564989 +genus pleurothallis|4565057 +genus pleurotus|4565136 +genus plicatoperipatus|4565200 +genus ploceus|4565288 +genus plumbago|4565344 +genus plumeria|4565414 +genus pluteus|4565502 +genus pluvialis|4565574 +genus pluvianus|4565636 +genus poa|4565698 +genus podalyria|4565761 +genus podargus|4565830 +genus podiceps|4565889 +genus podilymbus|4565948 +genus podocarpus|4566013 +genus podophyllum|4566084 +genus poecilocapsus|4566163 +genus poecilogale|4566242 +genus poephila|4566312 +genus pogonia|4566371 +genus pogostemon|4566438 +genus polanisia|4566512 +genus polemonium|4566585 +genus polianthes|4566648 +genus polioptila|4566723 +genus polistes|4566788 +genus pollachius|4566852 +genus polyangium|4566917 +genus polyborus|4566986 +genus polybotria|4567048 +genus polybotrya|4567141 +genus polycirrus|4567234 +genus polydactylus|4567299 +genus polyergus|4567370 +genus polygala|4567437 +genus polygonatum|4567503 +genus polygonia|4567581 +genus polygonum|4567648 +genus polyodon|4567730 +genus polypedates|4567789 +genus polypodium|4567862 +genus polyporus|4567927 +genus polyprion|4567991 +genus polystichum|4568053 +genus pomacanthus|4568121 +genus pomacentrus|4568189 +genus pomaderris|4568257 +genus pomatomus|4568342 +genus pomolobus|4568404 +genus pomoxis|4568466 +genus poncirus|4568522 +genus pongamia|4568588 +genus pongo|4568654 +genus pontederia|4568706 +genus pooecetes|4568790 +genus popillia|4568852 +genus populus|4568916 +genus porcellio|4568983 +genus poronotus|4569050 +genus porphyra|4569112 +genus porphyrio|4569177 +genus porphyrula|4569239 +genus portulaca|4569304 +genus portunus|4569371 +genus porzana|4569435 +genus potamogale|4569491 +genus potamogeton|4569547 +genus potamophis|4569634 +genus potentilla|4569702 +genus poterium|4569774 +genus pothos|4569840 +genus potorous|4569933 +genus potos|4569994 +genus pouteria|4570046 +genus praunus|4570125 +genus prenanthes|4570186 +genus presbytes|4570260 +genus priacanthus|4570345 +genus primula|4570413 +genus prinia|4570481 +genus priodontes|4570534 +genus prionace|4570601 +genus prionotus|4570660 +genus pristis|4570722 +genus pritzelago|4570778 +genus proboscidea|4570854 +genus procavia|4570923 +genus procellaria|4570984 +genus prociphilus|4571052 +genus procnias|4571125 +genus proconsul|4571184 +genus procyon|4571238 +genus progne|4571296 +genus prosopis|4571349 +genus prosopium|4571415 +genus protea|4571477 +genus proteles|4571543 +genus proterochampsa|4571604 +genus proteus|4571684 +genus protium|4571745 +genus protoavis|4571808 +genus protoceratops|4571860 +genus protohippus|4571923 +genus prumnopitys|4571981 +genus prunella|4572055 +genus prunus|4572165 +genus psaltriparus|4572225 +genus psenes|4572296 +genus psephurus|4572349 +genus psetta|4572411 +genus psettichthys|4572464 +genus pseudacris|4572535 +genus pseudaletia|4572605 +genus pseudechis|4572678 +genus pseudemys|4572746 +genus pseudobombax|4572811 +genus pseudococcus|4572893 +genus pseudocolus|4572969 +genus pseudolarix|4573039 +genus pseudomonas|4573113 +genus pseudopleuronectes|4573185 +genus pseudoryx|4573274 +genus pseudotaxus|4573338 +genus pseudotsuga|4573412 +genus pseudowintera|4573486 +genus psidium|4573593 +genus psilophyton|4573669 +genus psilotum|4573725 +genus psithyrus|4573784 +genus psittacosaurus|4573851 +genus psittacula|4573916 +genus psittacus|4573981 +genus psophia|4574043 +genus psophocarpus|4574099 +genus psoralea|4574177 +genus psychopsis|4574243 +genus psychotria|4574327 +genus pteretis|4574401 +genus pteridium|4574488 +genus pteris|4574550 +genus pternohyla|4574603 +genus pterocarpus|4574673 +genus pterocarya|4574748 +genus pterocles|4574833 +genus pterocnemia|4574895 +genus pterodactylus|4574963 +genus pterois|4575040 +genus pteropogon|4575096 +genus pteropus|4575159 +genus pterospermum|4575220 +genus pterostylis|4575302 +genus ptilocercus|4575389 +genus ptilocrinus|4575459 +genus ptilonorhynchus|4575533 +genus ptloris|4575613 +genus ptyas|4575669 +genus ptychozoon|4575722 +genus puccinia|4575790 +genus pueraria|4575851 +genus puffinus|4575917 +genus pulex|4575976 +genus pulicaria|4576031 +genus pulsatilla|4576102 +genus punica|4576178 +genus pycnanthemum|4576251 +genus pygopus|4576353 +genus pygoscelis|4576412 +genus pylodictus|4576477 +genus pyracantha|4576542 +genus pyralis|4576603 +genus pyrausta|4576664 +genus pyrethrum|4576728 +genus pyrocephalus|4576799 +genus pyrola|4576870 +genus pyrophorus|4576927 +genus pyrrhula|4576997 +genus pyrrhuloxia|4577056 +genus pyrrosia|4577112 +genus pyrularia|4577171 +genus pyrus|4577244 +genus pythium|4577301 +genus python|4577351 +genus pyxidanthera|4577400 +genus quamassia|4577482 +genus quassia|4577578 +genus quercus|4577633 +genus quiscalus|4577700 +genus rachycentron|4577762 +genus radiigera|4577833 +genus radyera|4577897 +genus raffia|4577964 +genus raja|4578056 +genus ramalina|4578103 +genus ramphomicron|4578164 +genus rana|4578235 +genus ranatra|4578287 +genus rangifer|4578348 +genus ranunculus|4578409 +genus raoulia|4578485 +genus raphanus|4578550 +genus raphia|4578605 +genus raphicerus|4578697 +genus raphus|4578764 +genus ratibida|4578817 +genus rattus|4578885 +genus rauvolfia|4578940 +genus rauwolfia|4579028 +genus ravenala|4579116 +genus recurvirostra|4579185 +genus regalecus|4579259 +genus regnellidium|4579321 +genus regulus|4579379 +genus reithrodontomys|4579435 +genus remilegia|4579517 +genus reseda|4579579 +genus retama|4579636 +genus reticulitermes|4579696 +genus retrophyllum|4579778 +genus rhagoletis|4579855 +genus rhamnus|4579925 +genus rhapis|4580001 +genus rhea|4580073 +genus rheum|4580115 +genus rhexia|4580185 +genus rhincodon|4580245 +genus rhinoceros|4580307 +genus rhinonicteris|4580363 +genus rhinoptera|4580439 +genus rhipsalis|4580504 +genus rhizobium|4580581 +genus rhizoctinia|4580647 +genus rhizophora|4580705 +genus rhizopogon|4580790 +genus rhizopus|4580857 +genus rhodanthe|4580909 +genus rhododendron|4580970 +genus rhodosphaera|4581039 +genus rhodymenia|4581130 +genus rhus|4581201 +genus rhyacotriton|4581268 +genus rhynchoelaps|4581344 +genus rhyncostylis|4581418 +genus rhynia|4581508 +genus ribes|4581561 +genus richea|4581612 +genus richmondena|4581676 +genus ricinus|4581744 +genus rickettsia|4581807 +genus riparia|4581865 +genus rissa|4581921 +genus rivina|4581971 +genus rivulus|4582039 +genus robinia|4582087 +genus roccella|4582150 +genus roccus|4582202 +genus rodolia|4582255 +genus romneya|4582330 +genus roridula|4582397 +genus rorippa|4582467 +genus rosa|4582534 +genus rosellinia|4582588 +genus rosmarinus|4582655 +genus roystonea|4582729 +genus rubia|4582810 +genus rubus|4582869 +genus rudbeckia|4582926 +genus rumex|4582997 +genus rumohra|4583067 +genus rupicapra|4583123 +genus rupicola|4583187 +genus ruptiliocarpon|4583246 +genus ruscus|4583330 +genus russula|4583393 +genus ruta|4583451 +genus rutilus|4583505 +genus rynchops|4583561 +genus rypticus|4583620 +genus sabal|4583679 +genus sabbatia|4583748 +genus sabinea|4583818 +genus saccharomyces|4583881 +genus saccharum|4583957 +genus sadleria|4584038 +genus sagina|4584097 +genus sagitta|4584165 +genus sagittaria|4584213 +genus sagittarius|4584297 +genus saiga|4584365 +genus saimiri|4584411 +genus saintpaulia|4584469 +genus salamandra|4584546 +genus salicornia|4584616 +genus salix|4584696 +genus salmo|4584757 +genus salmonella|4584807 +genus salpa|4584865 +genus salpichroa|4584913 +genus salpiglossis|4584987 +genus salpinctes|4585054 +genus salsola|4585119 +genus salvadora|4585190 +genus salvelinus|4585272 +genus salvia|4585337 +genus salvinia|4585392 +genus sambucus|4585451 +genus samia|4585519 +genus samolus|4585574 +genus sanguinaria|4585650 +genus sanicula|4585729 +genus sansevieria|4585795 +genus santalum|4585861 +genus santolina|4585931 +genus sanvitalia|4586002 +genus sapindus|4586076 +genus saponaria|4586155 +genus saprolegnia|4586232 +genus sarcobatus|4586302 +genus sarcocephalus|4586382 +genus sarcochilus|4586465 +genus sarcocystis|4586552 +genus sarcodes|4586626 +genus sarcophaga|4586696 +genus sarcophilus|4586766 +genus sarcoptes|4586836 +genus sarcorhamphus|4586903 +genus sarcostemma|4586977 +genus sarda|4587065 +genus sardina|4587115 +genus sardinia|4587186 +genus sardinops|4587258 +genus sargassum|4587320 +genus sarracenia|4587378 +genus sassafras|4587463 +genus satureia|4587526 +genus satureja|4587618 +genus saturnia|4587710 +genus sauromalus|4587774 +genus saurosuchus|4587842 +genus saururus|4587913 +genus saussurea|4587992 +genus saxe-gothea|4588063 +genus saxegothea|4588165 +genus saxicola|4588266 +genus saxifraga|4588325 +genus sayornis|4588394 +genus scabiosa|4588453 +genus scaphiopus|4588512 +genus scaphosepalum|4588582 +genus scarabaeus|4588675 +genus scardinius|4588734 +genus scartella|4588799 +genus sceliphron|4588861 +genus sceloglaux|4588931 +genus sceloporus|4588996 +genus schaffneria|4589064 +genus schefflera|4589132 +genus schinus|4589204 +genus schistosoma|4589280 +genus schizachyrium|4589348 +genus schizaea|4589441 +genus schizanthus|4589500 +genus schizopetalon|4589565 +genus schizophragma|4589636 +genus schizosaccharomyces|4589717 +genus schlumbergera|4589811 +genus schomburgkia|4589900 +genus sciadopitys|4589990 +genus sciaena|4590064 +genus sciaenops|4590120 +genus sciara|4590182 +genus scilla|4590233 +genus scincella|4590289 +genus scincus|4590354 +genus scindapsus|4590413 +genus scirpus|4590510 +genus sciurus|4590585 +genus scleranthus|4590643 +genus scleroderma|4590726 +genus sclerotinia|4590796 +genus sclerotium|4590854 +genus scolopax|4590921 +genus scolopendrium|4590980 +genus scolymus|4591066 +genus scolytus|4591134 +genus scomber|4591198 +genus scomberesox|4591254 +genus scomberomorus|4591350 +genus scombresox|4591424 +genus scophthalmus|4591519 +genus scopolia|4591590 +genus scorpaena|4591658 +genus scorzonera|4591720 +genus scrophularia|4591783 +genus scutellaria|4591863 +genus scutigera|4591940 +genus scutigerella|4592007 +genus sebastiana|4592083 +genus sebastodes|4592155 +genus secale|4592220 +genus sedum|4592292 +genus seismosaurus|4592337 +genus seiurus|4592411 +genus selaginella|4592467 +genus selar|4592535 +genus selenarctos|4592585 +genus selene|4592655 +genus selenicereus|4592708 +genus selenipedium|4592794 +genus senecio|4592884 +genus senna|4592949 +genus sepia|4593000 +genus septobasidium|4593053 +genus sequoia|4593129 +genus sequoiadendron|4593183 +genus serenoa|4593261 +genus sericocarpus|4593336 +genus serinus|4593416 +genus seriola|4593472 +genus seriphidium|4593528 +genus seriphus|4593605 +genus serranus|4593664 +genus serrasalmus|4593723 +genus serratia|4593791 +genus serratula|4593854 +genus sertularia|4593925 +genus sesamum|4593998 +genus sesbania|4594055 +genus seseli|4594112 +genus setaria|4594172 +genus setophaga|4594247 +genus shigella|4594309 +genus shorea|4594363 +genus shortia|4594427 +genus sialia|4594486 +genus sialis|4594539 +genus sida|4594597 +genus sidalcea|4594655 +genus sideritis|4594725 +genus sigmodon|4594796 +genus silene|4594857 +genus sillago|4594918 +genus silphium|4594974 +genus silurus|4595042 +genus silvia|4595098 +genus silybum|4595151 +genus simarouba|4595216 +genus simulium|4595285 +genus sinanthropus|4595349 +genus sinapis|4595417 +genus sinningia|4595484 +genus sinornis|4595555 +genus siren|4595605 +genus sison|4595654 +genus sistrurus|4595711 +genus sisymbrium|4595776 +genus sisyrinchium|4595841 +genus sitophylus|4595922 +genus sitotroga|4595992 +genus sitta|4596059 +genus sium|4596109 +genus sivapithecus|4596163 +genus sloanea|4596223 +genus smilax|4596290 +genus smiledon|4596353 +genus smyrnium|4596414 +genus sobralia|4596480 +genus solandra|4596549 +genus solanopteris|4596617 +genus solanum|4596688 +genus solea|4596753 +genus soleirolia|4596803 +genus solenopsis|4596910 +genus solenostemon|4596980 +genus solidago|4597060 +genus somateria|4597128 +genus sonchus|4597190 +genus sonora|4597255 +genus sophora|4597311 +genus sorbus|4597374 +genus sorex|4597434 +genus sorghum|4597486 +genus spadella|4597553 +genus spalax|4597603 +genus sparaxis|4597658 +genus sparganium|4597727 +genus sparmannia|4597811 +genus spartina|4597887 +genus spartium|4597965 +genus spathiphyllum|4598031 +genus spergula|4598110 +genus spergularia|4598184 +genus spermophilus|4598267 +genus sphacele|4598364 +genus sphacelotheca|4598460 +genus sphaeralcea|4598540 +genus sphaerocarpos|4598619 +genus sphaerocarpus|4598727 +genus sphagnum|4598835 +genus sphecius|4598885 +genus sphecotheres|4598949 +genus spheniscus|4599020 +genus sphenodon|4599085 +genus sphyraena|4599150 +genus sphyrapicus|4599212 +genus sphyrna|4599280 +genus spilogale|4599336 +genus spinacia|4599400 +genus spinus|4599474 +genus spiraea|4599527 +genus spiranthes|4599590 +genus spirillum|4599674 +genus spirochaeta|4599730 +genus spirodela|4599802 +genus spirogyra|4599883 +genus spirula|4599941 +genus spizella|4599992 +genus spodoptera|4600051 +genus spondias|4600121 +genus sporobolus|4600200 +genus spraguea|4600284 +genus spyeria|4600358 +genus squalus|4600419 +genus squatina|4600475 +genus squilla|4600534 +genus stachys|4600587 +genus stanhopea|4600652 +genus stanleya|4600723 +genus stapelia|4600793 +genus staphylea|4600863 +genus staphylococcus|4600945 +genus staurikosaurus|4601011 +genus steatornis|4601076 +genus steganopus|4601141 +genus stegosaurus|4601206 +genus stelis|4601265 +genus stellaria|4601330 +genus stenocarpus|4601408 +genus stenochlaena|4601496 +genus stenopelmatus|4601567 +genus stenopterygius|4601646 +genus stenotaphrum|4601711 +genus stenotomus|4601801 +genus stenotus|4601866 +genus stentor|4601934 +genus stephanomeria|4601988 +genus stephanotis|4602073 +genus stercorarius|4602149 +genus sterculia|4602220 +genus sterna|4602283 +genus sternotherus|4602336 +genus stevia|4602410 +genus sticherus|4602465 +genus stictomys|4602527 +genus stictopelia|4602591 +genus stizolobium|4602659 +genus stizostedion|4602747 +genus stokesia|4602818 +genus storeria|4602886 +genus strekelia|4602948 +genus strelitzia|4603020 +genus strepera|4603104 +genus strepsiceros|4603163 +genus streptocarpus|4603266 +genus streptococcus|4603335 +genus streptomyces|4603399 +genus streptopelia|4603461 +genus streptosolen|4603532 +genus strix|4603612 +genus strobilomyces|4603662 +genus strombus|4603738 +genus strongylodon|4603800 +genus strophanthus|4603878 +genus stropharia|4603956 +genus struthio|4604043 +genus struthiomimus|4604102 +genus strymon|4604165 +genus sturnella|4604226 +genus sturnus|4604288 +genus stylomecon|4604344 +genus stylophorum|4604420 +genus styphelia|4604499 +genus styracosaurus|4604572 +genus styrax|4604635 +genus subularia|4604701 +genus suillus|4604774 +genus suksdorfia|4604832 +genus sula|4604893 +genus sundacarpus|4604940 +genus suricata|4605014 +genus surnia|4605075 +genus sus|4605128 +genus swainsona|4605174 +genus swertia|4605243 +genus swietinia|4605319 +genus sylvilagus|4605388 +genus symphalangus|4605455 +genus symphoricarpos|4605528 +genus symphytum|4605614 +genus symplocarpus|4605677 +genus symplocus|4605767 +genus synagrops|4605849 +genus synanceja|4605911 +genus synaptomys|4605973 +genus synchytrium|4606040 +genus synercus|4606110 +genus syngnathus|4606186 +genus syngonium|4606251 +genus syringa|4606332 +genus syrrhaptes|4606408 +genus syzygium|4606473 +genus tabernaemontana|4606552 +genus tacca|4606652 +genus tachyglossus|4606712 +genus tachypleus|4606785 +genus tadarida|4606855 +genus tadorna|4606916 +genus taenia|4606972 +genus tagetes|4607018 +genus talinum|4607085 +genus tamandua|4607156 +genus tamarindus|4607208 +genus tamarix|4607280 +genus tamias|4607347 +genus tamiasciurus|4607402 +genus tamus|4607475 +genus tanacetum|4607526 +genus tantilla|4607597 +genus tapirus|4607659 +genus taraktagenos|4607717 +genus taraktogenos|4607861 +genus taraxacum|4608005 +genus taricha|4608076 +genus tarpon|4608137 +genus tarrietia|4608183 +genus tarsius|4608256 +genus taurotragus|4608314 +genus tautoga|4608384 +genus tautogolabrus|4608440 +genus taxidea|4608514 +genus taxodium|4608572 +genus taxus|4608637 +genus tayassu|4608693 +genus tectaria|4608764 +genus tectona|4608823 +genus telanthera|4608888 +genus tellima|4608968 +genus telopea|4609031 +genus templetonia|4609107 +genus tenrec|4609182 +genus tephrosia|4609230 +genus terebella|4609299 +genus teredo|4609361 +genus termes|4609410 +genus terrapene|4609468 +genus terrietia|4609533 +genus testudo|4609632 +genus tethus|4609691 +genus tetraclinis|4609769 +genus tetragonia|4609843 +genus tetragonurus|4609923 +genus tetrahymena|4609994 +genus tetraneuris|4610056 +genus tetrao|4610133 +genus tetrapturus|4610186 +genus teucrium|4610254 +genus thalarctos|4610322 +genus thalassoma|4610389 +genus thalictrum|4610454 +genus thamnophilus|4610530 +genus thamnophis|4610601 +genus thelypteris|4610669 +genus theobroma|4610737 +genus thermobia|4610810 +genus thermopsis|4610877 +genus thespesia|4610949 +genus thevetia|4611022 +genus thielavia|4611101 +genus thiobacillus|4611165 +genus thlaspi|4611227 +genus thomomys|4611294 +genus threskiornis|4611355 +genus thrinax|4611426 +genus thrips|4611501 +genus thryothorus|4611552 +genus thuja|4611620 +genus thujopsis|4611676 +genus thunbergia|4611744 +genus thunnus|4611818 +genus thylacinus|4611874 +genus thylogale|4611941 +genus thymus|4612005 +genus thyrsopteris|4612067 +genus thysanocarpus|4612125 +genus tiarella|4612210 +genus tibicen|4612276 +genus tichodroma|4612337 +genus tilapia|4612402 +genus tilia|4612458 +genus tillandsia|4612519 +genus tilletia|4612603 +genus timalia|4612664 +genus tinca|4612720 +genus tinea|4612770 +genus tineola|4612825 +genus tipuana|4612886 +genus titanosaurus|4612949 +genus tithonia|4613023 +genus todea|4613082 +genus todus|4613132 +genus tofieldia|4613182 +genus tolmiea|4613254 +genus tolypeutes|4613317 +genus tomistoma|4613384 +genus toona|4613449 +genus torreya|4613506 +genus tortrix|4613568 +genus townsendia|4613621 +genus toxicodendron|4613695 +genus toxostoma|4613789 +genus toxotes|4613851 +genus trachelospermum|4613907 +genus trachinotus|4614007 +genus trachipterus|4614075 +genus trachodon|4614146 +genus trachurus|4614201 +genus tradescantia|4614263 +genus tragelaphus|4614353 +genus tragopan|4614455 +genus tragopogon|4614505 +genus tragulus|4614579 +genus trapa|4614640 +genus trautvetteria|4614710 +genus trema|4614795 +genus tremella|4614865 +genus treponema|4614926 +genus triaenodon|4614982 +genus trialeurodes|4615047 +genus triatoma|4615123 +genus tribolium|4615187 +genus tribonema|4615254 +genus tribulus|4615337 +genus triceratops|4615403 +genus trichecus|4615462 +genus trichoceros|4615527 +genus trichodesmium|4615614 +genus trichoglossus|4615678 +genus tricholoma|4615752 +genus trichomanes|4615819 +genus trichomonas|4615887 +genus trichophaga|4615949 +genus trichophyton|4616022 +genus trichostema|4616095 +genus trichostigma|4616172 +genus trichosurus|4616258 +genus trichys|4616328 +genus tridacna|4616386 +genus trifolium|4616448 +genus triga|4616517 +genus triglochin|4616567 +genus trigonella|4616651 +genus trilisa|4616723 +genus trillium|4616788 +genus trimorphodon|4616848 +genus trinectes|4616922 +genus tringa|4616984 +genus trionyx|4617037 +genus triops|4617096 +genus triostium|4617154 +genus tripleurospermum|4617225 +genus triplochiton|4617317 +genus triticum|4617399 +genus triturus|4617477 +genus trogium|4617541 +genus troglodytes|4617602 +genus trogon|4617670 +genus trollius|4617716 +genus trombicula|4617786 +genus tropaeolum|4617856 +genus tropidoclonion|4617928 +genus truncocolumella|4618008 +genus tsuga|4618090 +genus tuber|4618146 +genus tubercularia|4618198 +genus tulestoma|4618271 +genus tulipa|4618361 +genus tulostoma|4618424 +genus tunga|4618514 +genus tupaia|4618569 +genus tupinambis|4618624 +genus turbatrix|4618692 +genus turdus|4618782 +genus turnix|4618835 +genus turreae|4618888 +genus turritis|4618943 +genus tursiops|4619013 +genus tussilago|4619074 +genus tylenchus|4619145 +genus tympanuchus|4619207 +genus typha|4619275 +genus tyrannosaurus|4619344 +genus tyrannus|4619407 +genus tyto|4619466 +genus uca|4619513 +genus uintatherium|4619562 +genus ulex|4619635 +genus ulmus|4619689 +genus ulva|4619759 +genus uma|4619812 +genus umbellularia|4619859 +genus umbrina|4619941 +genus unio|4619997 +genus upupa|4620047 +genus urginea|4620097 +genus uria|4620163 +genus urocyon|4620210 +genus urocystis|4620268 +genus urophycis|4620332 +genus uropsilus|4620394 +genus urosaurus|4620458 +genus ursinia|4620523 +genus ursus|4620580 +genus urtica|4620632 +genus usnea|4620705 +genus ustilaginoidea|4620757 +genus ustilago|4620836 +genus uta|4620897 +genus utahraptor|4620944 +genus utricularia|4621001 +genus uvularia|4621070 +genus vaccaria|4621139 +genus vaccinium|4621213 +genus valeriana|4621286 +genus valerianella|4621357 +genus vallisneria|4621437 +genus vanda|4621524 +genus vanellus|4621587 +genus vanessa|4621646 +genus vangueria|4621707 +genus vanilla|4621778 +genus varanus|4621845 +genus vedalia|4621904 +genus velociraptor|4621979 +genus venus|4622040 +genus veratrum|4622093 +genus verbascum|4622162 +genus verbena|4622233 +genus verbesina|4622290 +genus vernonia|4622361 +genus veronica|4622420 +genus verticillium|4622479 +genus vesicaria|4622539 +genus vespa|4622612 +genus vespertilio|4622667 +genus vespula|4622737 +genus vibrio|4622798 +genus viburnum|4622848 +genus vicia|4622916 +genus vicugna|4622973 +genus vidua|4623031 +genus vigna|4623081 +genus viminaria|4623138 +genus vinca|4623207 +genus vincetoxicum|4623277 +genus viola|4623368 +genus vipera|4623429 +genus vireo|4623485 +genus virgilia|4623529 +genus viscum|4623595 +genus vitis|4623659 +genus vittaria|4623729 +genus viverra|4623788 +genus viverricula|4623846 +genus volvaria|4623916 +genus volvariella|4623977 +genus volvox|4624047 +genus vorticella|4624106 +genus vulpes|4624166 +genus vultur|4624221 +genus weigela|4624274 +genus welwitchia|4624331 +genus welwitschia|4624409 +genus wintera|4624488 +genus wisteria|4624589 +genus wolffia|4624646 +genus wolffiella|4624721 +genus woodsia|4624805 +genus woodwardia|4624853 +genus wyethia|4624918 +genus wynnea|4624975 +genus xanthium|4625030 +genus xanthomonas|4625098 +genus xanthorroea|4625170 +genus xanthosoma|4625248 +genus xenicus|4625332 +genus xenopus|4625388 +genus xenorhyncus|4625449 +genus xenosaurus|4625517 +genus xeranthemum|4625585 +genus xerobates|4625650 +genus xerophyllum|4625715 +genus xiphias|4625793 +genus xylaria|4625849 +genus xylocopa|4625907 +genus xylomelum|4625971 +genus xylopia|4626053 +genus xylosma|4626120 +genus xyphophorus|4626179 +genus xyris|4626247 +genus yucca|4626316 +genus zaglossus|4626370 +genus zalophus|4626434 +genus zamia|4626495 +genus zannichellia|4626545 +genus zantedeschia|4626635 +genus zanthoxylum|4626725 +genus zapus|4626800 +genus zea|4626852 +genus zenaidura|4626915 +genus zerumbet|4626977 +genus zeus|4627064 +genus zigadenus|4627111 +genus zingiber|4627183 +genus zinjanthropus|4627261 +genus zinnia|4627342 +genus zizania|4627397 +genus ziziphus|4627472 +genus zoarces|4627551 +genus zoisia|4627607 +genus zonotrichia|4627692 +genus zostera|4627760 +genus zoysia|4627835 +genus zygnema|4627920 +genus zygocactus|4627982 +genus zygophyllum|4628062 +genus-fenusa|4380815 +genus-megapodius|4380873 +genus-milvus|4380938 +genyonemus|4628137 +genyonemus lineatus|4628196 +geocentric|4628285 +geocentric parallax|4628326 +geochelone|4628381 +geochemistry|4628443 +geococcyx|4628492 +geococcyx californianus|4628548 +geode|4628638 +geodesic|4628660 +geodesic dome|4628765 +geodesic line|4628793 +geodesical|4628830 +geodesy|4628898 +geodetic|4628946 +geoduck|4629014 +geoffrey chaucer|4629036 +geoffrey of monmouth|4629092 +geoffroea|4629154 +geoffroea decorticans|4629217 +geogia holly|4629295 +geoglossaceae|4629336 +geoglossum|4629408 +geographer|4629469 +geographic|4629496 +geographic area|4629578 +geographic expedition|4629666 +geographic point|4629720 +geographic region|4629771 +geographical|4629859 +geographical area|4629928 +geographical mile|4630016 +geographical point|4630109 +geographical region|4630160 +geographical zone|4630248 +geographics|4630352 +geography|4630397 +geologic|4630442 +geologic process|4630484 +geologic time|4630576 +geological|4630620 +geological dating|4630662 +geological era|4630735 +geological fault|4630793 +geological formation|4630883 +geological horizon|4630938 +geological period|4630974 +geological phenomenon|4631038 +geological process|4631088 +geological time|4631180 +geologist|4631224 +geology|4631268 +geomancer|4631299 +geomancy|4631326 +geometer|4631395 +geometric|4631440 +geometric mean|4631526 +geometric pace|4631566 +geometric progression|4631602 +geometric series|4631663 +geometrical|4631696 +geometrical irregularity|4631780 +geometrical regularity|4631847 +geometrician|4631938 +geometrid|4631983 +geometrid moth|4632022 +geometridae|4632061 +geometry|4632130 +geometry teacher|4632165 +geomorphologic|4632224 +geomorphological|4632332 +geomorphology|4632440 +geomyidae|4632505 +geomys|4632565 +geomys bursarius|4632614 +geomys pinetis|4632711 +geophagia|4632810 +geophagy|4632858 +geophilidae|4632906 +geophilomorpha|4632975 +geophilus|4633048 +geophysical|4633109 +geophysical science|4633137 +geophysicist|4633185 +geophysics|4633217 +geophyte|4633265 +geophytic|4633311 +geopolitical|4633357 +geopolitics|4633416 +georg friedrich bernhard riemann|4633475 +georg friedrich handel|4633589 +georg meissner|4633683 +georg philipp telemann|4633741 +georg simon ohm|4633814 +georg wilhelm friedrich hegel|4633869 +georg wilhelm steller|4633956 +george|4634046 +george armstrong custer|4634113 +george balanchine|4634213 +george beadle|4634310 +george berkeley|4634399 +george bernard shaw|4634484 +george boole|4634584 +george bryan brummell|4634639 +george burns|4634782 +george bush|4634867 +george c. scott|4635237 +george catlett marshall|4635327 +george charles hevesy de hevesy|4635462 +george dewey|4635550 +george dibdin pitt|4635804 +george dibdin-pitt|4635619 +george du maurier|4635908 +george eastman|4636030 +george edward moore|4636121 +george edward pickett|4636200 +george eliot|4636282 +george ellery hale|4636352 +george enescu|4636437 +george fox|4636523 +george frederic handel|4636587 +george gamow|4636681 +george gershwin|4636732 +george gilbert aime murphy|4636791 +george gordon meade|4636905 +george guess|4636981 +george h.w. bush|4637072 +george harrison|4637255 +george herbert hitchings|4637315 +george herbert mead|4637395 +george herbert walker bush|4637461 +george herman ruth|4637654 +george hubert wilkins|4637758 +george i|4637839 +george ii|4637904 +george iii|4637971 +george iv|4638040 +george louis palmella busson du maurier|4638107 +george lucas|4638251 +george m. cohan|4638364 +george macaulay trevelyan|4638465 +george marshall|4638562 +george mason|4638689 +george meany|4638760 +george meredith|4638814 +george michael cohan|4638878 +george orson welles|4638984 +george orwell|4639143 +george otto trevelyan|4639230 +george paget thomson|4639345 +george percy aldridge grainger|4639439 +george pitt|4639567 +george s. kaufman|4639664 +george sand|4639759 +george segal|4639857 +george simon kaufman|4639938 +george stephenson|4640036 +george stevens|4640119 +george szell|4640213 +george town|4640288 +george v|4640444 +george vancouver|4640509 +george vi|4640572 +george w. bush|4640639 +george walker bush|4640848 +george washington|4641061 +george washington bridge|4641240 +george washington carver|4641317 +george washington goethals|4641428 +george wells beadle|4641540 +george westinghouse|4641635 +george william russell|4641727 +georges bizet|4641809 +georges braque|4641861 +georges clemenceau|4641915 +georges cuvier|4642040 +georges de la tour|4642186 +georges enesco|4642252 +georges eugene benjamin clemenceau|4642339 +georges gilles de la tourette|4642480 +georges henri lemaitre|4642605 +georges jacques danton|4642698 +georges joseph christian simenon|4642809 +georges leopold chretien frederic dagobert cuvier|4642922 +georges pierre seurat|4643103 +georges seurat|4643186 +georges simenon|4643262 +georgetown|4643358 +georgette|4643486 +georgi konstantinovich zhukov|4643535 +georgia|4643632 +georgia bark|4643788 +georgia home boy|4643874 +georgia okeeffe|4644008 +georgia pine|4644066 +georgian|4644175 +georgian monetary unit|4644409 +georgiana barrymore|4644478 +georgiana emma barrymore|4644570 +geosphere|4644667 +geostationary|4644704 +geostationary orbit|4644733 +geostrategic|4644783 +geostrategy|4644816 +geosynchronous|4644849 +geosynchronous orbit|4644879 +geothermal|4644931 +geothermal energy|4644968 +geothermic|4645012 +geothlypis|4645049 +geothlypis trichas|4645108 +geotropism|4645210 +geraint|4645238 +gerald ford|4645282 +gerald r. ford|4645451 +gerald rudolph ford|4645623 +geraniaceae|4645800 +geraniales|4645887 +geranium|4645947 +geranium family|4645987 +geranium maculatum|4646062 +geranium molle|4646166 +geranium pratense|4646250 +geranium richardsonii|4646337 +geranium robertianum|4646436 +geranium viscosissimum|4646549 +gerard depardieu|4646644 +gerard manley hopkins|4646740 +gerardia|4646806 +gerardia pedicularia|4646846 +gerardia virginica|4646957 +gerardus mercator|4647062 +gerbera|4647142 +gerbera jamesonii|4647201 +gerbil|4647292 +gerbille|4647346 +gerbillinae|4647400 +gerbillus|4647469 +gerea|4647527 +gerea canescens|4647580 +gerenuk|4647661 +gerfalcon|4647707 +gerhard gerhards|4647760 +gerhard herzberg|4647898 +gerhard kremer|4647968 +geriatric|4648045 +geriatrician|4648140 +geriatrics|4648206 +germ|4648265 +germ cell|4648424 +germ layer|4648475 +germ plasm|4648512 +germ theory|4648566 +germ warfare|4648605 +german|4648717 +german american|4649056 +german bee|4649106 +german capital|4649171 +german chamomile|4649234 +german cockroach|4649378 +german democratic republic|4649488 +german iris|4649597 +german ivy|4649702 +german language|4649776 +german lesson|4649873 +german luftwaffe|4649926 +german mark|4649998 +german measles|4650083 +german millet|4650190 +german monetary unit|4650342 +german nazi|4650407 +german pancake|4650453 +german police dog|4650581 +german rampion|4650703 +german shepherd|4650801 +german shepherd dog|4650921 +german short-haired pointer|4651045 +german silver|4651134 +german tamarisk|4651197 +german-american|4648938 +german-speaking|4648987 +germander|4651284 +germander speedwell|4651322 +germane|4651401 +germaneness|4651435 +germanic|4651492 +germanic language|4651749 +germanism|4651853 +germanite|4651902 +germanium|4651929 +germany|4652031 +germfree|4652133 +germicidal|4652211 +germicide|4652268 +germinal|4652333 +germinal area|4652425 +germinal disc|4652490 +germinate|4652555 +germination|4652701 +germy|4652827 +geronimo|4652881 +gerontological|4652945 +gerontologist|4653005 +gerontology|4653071 +gerreidae|4653130 +gerres|4653213 +gerres cinereus|4653260 +gerrhonotus|4653327 +gerridae|4653392 +gerrididae|4653552 +gerris|4653643 +gerris lacustris|4653695 +gerrymander|4653796 +gershwin|4653860 +gertrude caroline ederle|4653950 +gertrude ederle|4654040 +gertrude lawrence|4654121 +gertrude stein|4654183 +gerund|4654242 +gerundial|4654284 +geryon|4654328 +gesell|4654386 +gesner|4654457 +gesneria|4654527 +gesneria family|4654567 +gesneriaceae|4654646 +gesneriad|4654738 +gestalt|4654784 +gestalt law of organization|4654820 +gestalt principle of organization|4654934 +gestalt psychology|4655054 +gestapo|4655136 +gestate|4655175 +gestation|4655349 +gestation period|4655509 +gestational|4655561 +gestational age|4655625 +gesticulate|4655682 +gesticulating|4655747 +gesticulation|4655798 +gestural|4655836 +gesture|4655953 +get|4656117 +get a line|4657946 +get a load|4658025 +get a look|4658074 +get a noseful|4658114 +get a whiff|4658155 +get about|4658196 +get across|4658250 +get ahead|4658491 +get along|4658611 +get along with|4658778 +get around|4658838 +get around to|4658990 +get at|4659022 +get away|4659203 +get back|4659337 +get behind|4659502 +get by|4659588 +get cracking|4659738 +get down|4659894 +get dressed|4660274 +get even|4660308 +get going|4660409 +get hitched with|4660581 +get hold|4660670 +get hold of|4660721 +get in|4660884 +get in touch|4661216 +get into|4661266 +get it|4661475 +get it on|4661610 +get laid|4661853 +get married|4662096 +get moving|4662185 +get off|4662341 +get off the ground|4662698 +get on|4662754 +get on with|4663097 +get one's lumps|4663157 +get onto|4663203 +get out|4663338 +get over|4663606 +get rid of|4663930 +get rolling|4664019 +get started|4664175 +get stranded|4664331 +get stuck|4664405 +get the best|4664466 +get the better of|4664545 +get the goods|4664588 +get the hang|4664681 +get the jump|4664715 +get the picture|4664780 +get through|4664861 +get to|4665175 +get to grips|4665405 +get together|4665465 +get under one's skin|4665627 +get up|4665741 +get weaving|4666262 +get well|4666418 +get wind|4666493 +get wise|4666572 +get word|4666707 +get worse|4666786 +get-at-able|4657626 +get-go|4657761 +get-up-and-go|4657877 +get-well card|4657918 +geta|4666831 +getable|4666881 +getatable|4666988 +getaway|4667043 +gettable|4667105 +getting|4667211 +getting even|4667263 +gettysburg|4667317 +gettysburg address|4667407 +getulio dornelles vargas|4667469 +getup|4667567 +geum|4667619 +geum alleppicum strictum|4667667 +geum canadense|4667759 +geum macrophyllum|4667823 +geum rivale|4667887 +geum strictum|4667983 +geum triflorum|4668064 +geum urbanum|4668136 +geum virginianum|4668222 +gewgaw|4668290 +geyser|4668358 +ghana|4668477 +ghanaian|4668558 +ghanese|4668631 +ghanian|4668703 +ghanian monetary unit|4668798 +gharry|4668865 +ghastliness|4668903 +ghastly|4668970 +ghat|4669061 +ghatti|4669107 +ghatti gum|4669138 +ghb|4669169 +ghedda wax|4669218 +ghee|4669257 +gheg|4669301 +gheg dialect|4669342 +ghent|4669391 +gherkin|4669456 +ghetto|4669501 +ghetto blaster|4669558 +ghettoise|4669632 +ghettoize|4669678 +ghillie|4669724 +ghost|4669753 +ghost dance|4670036 +ghost gum|4670102 +ghost town|4670218 +ghost weed|4670243 +ghost word|4670326 +ghostfish|4670382 +ghostlike|4670461 +ghostliness|4670544 +ghostly|4670600 +ghostwrite|4670683 +ghostwriter|4670716 +ghoul|4670757 +ghoulish|4670831 +ghq|4670866 +ghrelin|4670955 +ghrf|4671009 +ghz|4671098 +gi|4671164 +gi series|4671238 +gi tract|4671300 +gia|4671450 +giacometti|4671561 +giacomo meyerbeer|4671659 +giacomo puccini|4671743 +giambattista lulli|4671801 +giambattista marini|4671889 +giambattista marino|4671977 +gian carlo menotti|4672065 +gianbattista bodoni|4672129 +gianni versace|4672202 +giant|4672302 +giant anteater|4672686 +giant armadillo|4672791 +giant bamboo|4672858 +giant buttercup|4672921 +giant cane|4672991 +giant chinkapin|4673049 +giant clam|4673168 +giant cockroach|4673208 +giant conch|4673249 +giant coreopsis|4673291 +giant crab|4673373 +giant eland|4673427 +giant fern|4673476 +giant fir|4673537 +giant foxtail|4673621 +giant fulmar|4673666 +giant garlic|4673730 +giant granadilla|4673825 +giant helleborine|4673921 +giant hornet|4674004 +giant hyssop|4674046 +giant kangaroo|4674090 +giant lizard|4674162 +giant moa|4674275 +giant northwest shipworm|4674317 +giant panda|4674386 +giant petrel|4674467 +giant pigfish|4674531 +giant potato creeper|4674588 +giant puffball|4674654 +giant red paintbrush|4674719 +giant reed|4674798 +giant ryegrass|4674836 +giant salamander|4674909 +giant scallop|4674970 +giant schnauzer|4675050 +giant scrambling fern|4675085 +giant sequoia|4675148 +giant silkworm|4675274 +giant silkworm moth|4675333 +giant squid|4675401 +giant star|4675441 +giant star grass|4675472 +giant stock bean|4675527 +giant sunflower|4675601 +giant taro|4675697 +giant timber bamboo|4675775 +giant tortoise|4675853 +giant water bug|4675886 +giant willowherb|4675921 +giantess|4676017 +giantism|4676041 +giardia|4676127 +giardiasis|4676225 +gib|4676265 +gibber|4676289 +gibberellic acid|4676552 +gibberellin|4676590 +gibberish|4676655 +gibbet|4676732 +gibbon|4676874 +gibbose|4676969 +gibbosity|4677009 +gibbous|4677128 +gibbousness|4677252 +gibbs|4677371 +gibbsite|4677421 +gibe|4677447 +gibelike|4677664 +gibingly|4677730 +giblet|4677767 +giblets|4677811 +gibraltar|4677889 +gibraltar fever|4677989 +gibraltarian|4678119 +gibran|4678229 +gibson|4678280 +gibson desert|4678487 +gibson girl|4678531 +gidar|4678609 +giddily|4678642 +giddiness|4678681 +giddy|4678783 +gide|4678923 +gideon algernon mantell|4679014 +gidgee|4679089 +gielgud|4679144 +gift|4679249 +gift horse|4679464 +gift shop|4679489 +gift tax|4679532 +gift wrap|4679583 +gift wrapping|4679617 +gift-wrap|4679432 +gifted|4679662 +gig|4679698 +gigabyte|4679874 +gigacycle|4679918 +gigacycle per second|4679980 +gigahertz|4680042 +gigantic|4680104 +gigantism|4680136 +gigartinaceae|4680221 +giggle|4680297 +giggler|4680374 +gigo|4680408 +gigolo|4680442 +gigot|4680486 +gikuyu|4680539 +gila|4680585 +gila desert|4680621 +gila monster|4680661 +gila river|4680732 +gilbert|4680774 +gilbert and ellice islands|4681118 +gilbert and sullivan|4681192 +gilbert charles stuart|4681249 +gilbert islands|4681334 +gilbert keith chesterton|4681387 +gilbert murray|4681488 +gilbert stuart|4681590 +gilbertian|4681667 +gild|4681753 +gild the lily|4681880 +gilded|4681993 +gilded flicker|4682167 +gilder|4682219 +gildhall|4682265 +gilding|4682293 +gilding metal|4682328 +giles lytton strachey|4682357 +gilgai soil|4682446 +gilgamesh|4682477 +gilgamish|4682524 +gill|4682568 +gill arch|4682892 +gill bar|4683016 +gill cleft|4683140 +gill fungus|4683267 +gill net|4683324 +gill slit|4683362 +gill-less|4682721 +gill-over-the-ground|4682775 +gilled|4683489 +gilles de la tourette|4683516 +gilles de la tourette syndrome|4683633 +gillespie|4683733 +gillette|4683819 +gillie|4683908 +gillyflower|4683970 +gilman|4684071 +gilmer|4684179 +giloacchino antonio rossini|4684254 +gilt|4684336 +gilt-edged|4684415 +gimbaled|4684469 +gimbals|4684497 +gimcrack|4684586 +gimcrackery|4684697 +gimcracks|4684805 +gimel|4684913 +gimlet|4684979 +gimmick|4685042 +gimmickry|4685323 +gimp|4685389 +gimpiness|4685474 +gin|4685559 +gin and it|4685812 +gin and tonic|4685841 +gin mill|4685873 +gin rickey|4685997 +gin rummy|4686024 +gin sling|4686069 +ginep|4686094 +ginger|4686217 +ginger ale|4686487 +ginger beer|4686529 +ginger family|4686583 +ginger nut|4686673 +ginger pop|4686742 +ginger rogers|4686784 +ginger snap|4686879 +ginger up|4687029 +gingerbread|4687114 +gingerbread man|4687140 +gingerly|4687186 +gingerol|4687213 +gingerroot|4687249 +gingersnap|4687335 +gingery|4687404 +gingham|4687487 +gingiva|4687534 +gingival|4687569 +gingivitis|4687600 +gingko|4687654 +ginglymoid joint|4687726 +ginglymostoma|4687824 +ginglymostoma cirratum|4687892 +ginglymus|4687965 +ginkgo|4688063 +ginkgo biloba|4688135 +ginkgo family|4688221 +ginkgoaceae|4688293 +ginkgoales|4688377 +ginkgophyta|4688437 +ginkgophytina|4688546 +ginkgopsida|4688657 +ginmill|4688766 +ginsberg|4688815 +ginseng|4688862 +giordano bruno|4688971 +giorgio de chirico|4689028 +giorgio vasari|4689091 +giosue carducci|4689159 +giotto|4689214 +giotto di bondone|4689285 +giovanni battista tiepolo|4689367 +giovanni boccaccio|4689444 +giovanni cabato|4689506 +giovanni cimabue|4689574 +giovanni da verrazano|4689636 +giovanni da verrazzano|4689743 +giovanni de medici|4689851 +giovanni di bernardone|4689994 +giovanni jacopo casanova|4690145 +giovanni jacopo casanova de seingalt|4690291 +giovanni lorenzo bernini|4690449 +giovanni pierluigi da palestrina|4690575 +giovanni virginio schiaparelli|4690670 +gipsy|4690787 +gipsy moth|4690853 +gipsywort|4690925 +giraffa|4690994 +giraffa camelopardalis|4691046 +giraffe|4691129 +giraffidae|4691189 +girandola|4691252 +girandole|4691307 +girard|4691362 +girasol|4691419 +giraudoux|4691550 +gird|4691649 +girder|4691810 +girdle|4691831 +girgenti|4692018 +giriama|4692068 +girl|4692116 +girl friday|4692356 +girl scout|4692421 +girl scouts|4692471 +girl wonder|4692578 +girlfriend|4692628 +girlhood|4692723 +girlish|4692771 +girlishness|4692817 +giro|4692860 +giro account|4692985 +giro cheque|4693020 +girolamo savonarola|4693070 +girondist|4693216 +girru|4693294 +girt|4693329 +girth|4693574 +gish|4693751 +gismo|4693791 +gist|4694076 +git|4694313 +gita|4694450 +gitana|4694556 +gitano|4694613 +gittern|4694670 +giulio natta|4694724 +giuseppe balsamo|4694773 +giuseppe garibaldi|4694895 +giuseppe mazzini|4694993 +giuseppe melchiorre sarto|4695064 +giuseppe verdi|4695222 +give|4695311 +give a damn|4697396 +give a hang|4697453 +give a hoot|4697510 +give and take|4697567 +give away|4697601 +give back|4697872 +give birth|4697915 +give care|4698023 +give chase|4698063 +give ear|4698149 +give forth|4698202 +give in|4698259 +give it a try|4698411 +give it a whirl|4698525 +give it the deep six|4698593 +give notice|4698748 +give off|4698909 +give one's best|4698961 +give out|4699022 +give rise|4699187 +give suck|4699238 +give thanks|4699326 +give the axe|4699367 +give the bounce|4699555 +give the eye|4699651 +give the gate|4699697 +give the glad eye|4699793 +give the once over|4699825 +give the sack|4699871 +give tongue to|4699978 +give up|4700036 +give vent|4700561 +give voice|4700615 +give way|4700688 +give-and-go|4696952 +give-and-take|4696989 +give-up the ghost|4697227 +giveaway|4700886 +given|4700993 +given birth|4701243 +given name|4701269 +givenness|4701314 +giver|4701401 +giving|4701469 +giving birth|4701666 +giving medication|4701750 +giving protection|4701803 +giving up|4701862 +giza|4701980 +gizmo|4702036 +gizzard|4702321 +gjellerup|4702376 +glabella|4702434 +glabrescent|4702482 +glabrous|4702512 +glace|4702539 +glacial|4702596 +glacial boulder|4702707 +glacial epoch|4702748 +glacial period|4702876 +glaciate|4702947 +glaciated|4702997 +glaciation|4703023 +glacier|4703110 +glacier lily|4703136 +glad|4703237 +glad hand|4703358 +gladden|4703385 +gladdened|4703425 +gladdon|4703463 +gladdon iris|4703593 +glade|4703723 +glade fern|4703805 +glade mallow|4703917 +gladfulness|4703960 +gladiator|4704013 +gladiatorial|4704114 +gladiola|4704182 +gladiolus|4704238 +gladly|4704324 +gladness|4704349 +gladsome|4704402 +gladsomeness|4704425 +gladstone|4704478 +gladstone bag|4704656 +gladys smith|4704747 +glam up|4704813 +glamor|4704867 +glamorisation|4704898 +glamorise|4704980 +glamorization|4705051 +glamorize|4705133 +glamorous|4705264 +glamour|4705303 +glamourisation|4705386 +glamourise|4705468 +glamourization|4705598 +glamourize|4705680 +glamourous|4705751 +glance|4705790 +glance over|4705960 +gland|4706017 +gland disease|4706072 +glanders|4706156 +glandulae cervicales uteri|4706200 +glandulae sebaceae|4706308 +glandular|4706381 +glandular cancer|4706405 +glandular carcinoma|4706476 +glandular disease|4706547 +glandular disorder|4706631 +glandular fever|4706715 +glandular labrador tea|4706819 +glans|4706899 +glans clitoridis|4706995 +glans penis|4707027 +glare|4707054 +glareola|4707225 +glareole|4707278 +glareolidae|4707344 +glaring|4707408 +glary|4707536 +glaser|4707600 +glasgow|4707676 +glasnost|4707735 +glass|4707767 +glass ceiling|4708502 +glass cutter|4708537 +glass eye|4708781 +glass fiber|4708829 +glass fibre|4708902 +glass in|4708975 +glass lizard|4709023 +glass over|4709083 +glass snake|4709133 +glass sponge|4709193 +glass wool|4709241 +glass-cutter|4708326 +glassblower|4709302 +glassed|4709362 +glasses|4709386 +glasses case|4709849 +glassful|4709876 +glasshouse|4709913 +glassless|4709969 +glassmaker|4709997 +glassware|4710030 +glasswork|4710069 +glassworker|4710108 +glassworks|4710209 +glasswort|4710281 +glassy|4710426 +glaswegian|4710508 +glauber's salt|4710614 +glauber's salts|4710674 +glaucium|4710778 +glaucium flavum|4710842 +glaucoma|4710944 +glaucomys|4710974 +glaucomys sabrinus|4711032 +glaucomys volans|4711129 +glauconite|4711222 +glaucous|4711250 +glaucous bristlegrass|4711275 +glaux|4711399 +glaux maritima|4711463 +glaze|4711564 +glaze over|4711834 +glazed|4711906 +glazer|4712039 +glazier|4712140 +gleam|4712241 +gleaming|4712466 +glean|4712615 +gleaner|4712679 +gleba|4712776 +glebe|4712814 +glebe house|4712869 +glechoma|4712917 +glechoma hederaceae|4712979 +gleditsia|4713116 +gleditsia aquatica|4713179 +gleditsia triacanthos|4713271 +glee|4713356 +glee club|4713462 +gleeful|4713517 +gleefully|4713564 +gleefulness|4713600 +gleet|4713671 +gleichenia|4713735 +gleichenia flabellata|4713794 +gleicheniaceae|4713897 +glen|4713970 +glen gebhard|4713996 +glenda jackson|4714171 +glendower|4714267 +glengarry|4714342 +glenn|4714375 +glenn curtiss|4714468 +glenn hammond curtiss|4714549 +glenn miller|4714638 +glenn t. seaborg|4714710 +glenoid cavity|4714792 +glenoid fossa|4714840 +glia|4714922 +glial|4714966 +glial cell|4715000 +glib|4715079 +glib-tongued|4715178 +glibly|4715231 +glibness|4715254 +glide|4715309 +glide by|4715574 +glide path|4715700 +glide slope|4715790 +glide-bomb|4715541 +glider|4715880 +gliding|4715929 +gliding bacteria|4715994 +gliding joint|4716110 +glimmer|4716201 +glimmering|4716308 +glimmery|4716389 +glimpse|4716425 +glinka|4716572 +glint|4716644 +glinting|4716773 +glioblastoma|4716899 +glioma|4716962 +glipzide|4717003 +gliricidia|4717062 +gliridae|4717087 +glis|4717144 +glis glis|4717187 +glissade|4717230 +glissando|4717277 +glisten|4717352 +glistening|4717468 +glister|4717532 +glistering|4717598 +glitch|4717724 +glitter|4717762 +glittering|4717911 +glittery|4718037 +glitz|4718163 +gloaming|4718271 +gloat|4718365 +gloating|4718507 +glob|4718549 +global|4718604 +global aphasia|4718739 +global climate change|4718785 +global organization|4718850 +global positioning system|4719010 +global warming|4719095 +globalisation|4719135 +globalise|4719189 +globalization|4719239 +globalize|4719293 +globe|4719343 +globe amaranth|4719478 +globe artichoke|4719545 +globe flower|4719656 +globe lily|4719793 +globe mallow|4719844 +globe pepper|4719886 +globe thistle|4719921 +globe-trot|4719443 +globefish|4719966 +globeflower|4720030 +globetrotter|4720086 +globicephala|4720148 +globicephala melaena|4720215 +globigerina|4720325 +globigerinidae|4720364 +globin|4720443 +globose|4720501 +globosity|4720589 +globular|4720666 +globular pearlite|4720754 +globularness|4720808 +globule|4720885 +globulin|4720917 +globus pallidus|4720950 +glochid|4721013 +glochidium|4721077 +glockenspiel|4721141 +glogg|4721224 +glom|4721245 +glomerular|4721317 +glomerular capsule|4721363 +glomerule|4721448 +glomerulonephritis|4721472 +glomerulus|4721527 +gloom|4721574 +gloomful|4721756 +gloominess|4721795 +glooming|4721967 +gloomy|4722006 +gloomy gus|4722302 +gloria may josephine svensson|4722395 +gloria steinem|4722495 +gloria swanson|4722597 +glorification|4722682 +glorified|4722830 +glorify|4722891 +gloriole|4723106 +gloriosa|4723171 +gloriosa superba|4723261 +glorious|4723368 +glorious revolution|4723690 +glory|4723790 +glory fern|4723975 +glory hole|4724144 +glory lily|4724204 +glory pea|4724294 +gloss|4724334 +gloss over|4724762 +glossa|4724896 +glossalgia|4724952 +glossary|4724997 +glossina|4725030 +glossiness|4725088 +glossinidae|4725197 +glossitis|4725266 +glossodia|4725312 +glossodynia|4725387 +glossodynia exfoliativa|4725432 +glossolalia|4725495 +glossopharyngeal|4725526 +glossopharyngeal nerve|4725584 +glossopsitta|4725674 +glossopsitta versicolor|4725739 +glossoptosis|4725821 +glossy|4725872 +glossy snake|4726022 +glottal|4726084 +glottal catch|4726125 +glottal plosive|4726254 +glottal stop|4726383 +glottis|4726512 +glottis spuria|4726554 +glottis vera|4726630 +glottochronological|4726698 +glottochronology|4726737 +gloucester|4726774 +gloucestershire|4726857 +glove|4726905 +glove anesthesia|4727043 +glove compartment|4727129 +glove doll|4727168 +glove leather|4727220 +glove puppet|4727251 +gloved|4727303 +gloveless|4727337 +gloves|4727366 +glow|4727548 +glow lamp|4728100 +glow tube|4728148 +glower|4728196 +glowering|4728299 +glowing|4728380 +glowworm|4728513 +gloxinia|4728553 +gloxinia perennis|4728582 +gloxinia spesiosa|4728652 +glucagon|4728744 +glucinium|4728799 +gluck|4728870 +glucocorticoid|4728930 +glucophage|4729041 +glucose|4729113 +glucose tolerance test|4729141 +glucoside|4729206 +glucosuria|4729235 +glucotrol|4729266 +glue|4729335 +glued|4729403 +gluey|4729433 +glueyness|4729514 +glug|4729617 +gluiness|4729640 +glum|4729743 +glume|4729858 +glumly|4729879 +glumness|4729910 +gluon|4730013 +glut|4730040 +glutamate|4730324 +glutamic acid|4730348 +glutamic oxalacetic transaminase|4730417 +glutamic oxaloacetic transaminase|4730536 +glutamine|4730655 +glutaminic acid|4730704 +glutathione peroxidase|4730773 +glute|4730828 +gluteal|4730913 +gluteal artery|4730961 +gluteal muscle|4731037 +gluteal vein|4731122 +glutelin|4731187 +gluten|4731220 +gluten bread|4731275 +gluten-free diet|4731244 +glutethimide|4731328 +gluteus|4731399 +gluteus maximus|4731484 +gluteus medius|4731553 +gluteus minimus|4731621 +gluteus muscle|4731690 +glutinosity|4731775 +glutinous|4731847 +glutinousness|4731928 +glutted|4732000 +glutton|4732031 +gluttonise|4732145 +gluttonize|4732186 +gluttonous|4732227 +gluttony|4732440 +glyburide|4732516 +glyceraldehyde|4732584 +glyceria|4732635 +glyceria grandis|4732707 +glyceric acid|4732792 +glyceric aldehyde|4732820 +glyceride|4732871 +glycerin|4732929 +glycerin jelly|4732974 +glycerinated gelatin|4733013 +glycerine|4733067 +glycerite|4733112 +glycerogel|4733156 +glycerogelatin|4733206 +glycerol|4733256 +glycerol trimargarate|4733301 +glycerol tripalmitate|4733356 +glycerol tristearate|4733414 +glycerole|4733470 +glycerolise|4733514 +glycerolize|4733579 +glyceryl|4733644 +glyceryl ester|4733691 +glyceryl trinitrate|4733721 +glycine|4733849 +glycine max|4733943 +glycogen|4734056 +glycogenesis|4734111 +glycogenic|4734208 +glycol|4734250 +glycolic acid|4734341 +glycollic acid|4734403 +glycolysis|4734465 +glycoprotein|4734525 +glycoside|4734583 +glycosuria|4734619 +glycyrrhiza|4734647 +glycyrrhiza glabra|4734716 +glycyrrhiza lepidota|4734804 +glyoxaline|4734943 +glyph|4734995 +glyptic art|4735035 +glyptics|4735077 +glyptography|4735134 +gm|4735225 +gmt|4735282 +gnaeus julius agricola|4735361 +gnaeus pompeius magnus|4735446 +gnaphalium|4735578 +gnaphalium sylvaticum|4735646 +gnarl|4735730 +gnarled|4735891 +gnarly|4735946 +gnash|4736001 +gnat|4736028 +gnatcatcher|4736112 +gnathion|4736141 +gnathostomata|4736178 +gnathostome|4736246 +gnaw|4736287 +gnaw at|4736415 +gnawer|4736485 +gnawing animal|4736577 +gnawing mammal|4736669 +gneiss|4736757 +gnetaceae|4736790 +gnetales|4736854 +gnetophyta|4736908 +gnetophytina|4737011 +gnetopsida|4737116 +gnetum|4737219 +gnetum gnemon|4737268 +gnocchi|4737331 +gnome|4737367 +gnomic|4737433 +gnomish|4737460 +gnomon|4737483 +gnosis|4737509 +gnostic|4737535 +gnosticism|4737686 +gnp|4737776 +gnu|4737822 +gnu goat|4737855 +go|4737912 +go a long way|4739906 +go about|4739953 +go across|4739999 +go after|4740058 +go against|4740201 +go ahead|4740325 +go all out|4740363 +go along|4740424 +go around|4740659 +go away|4740862 +go back|4741017 +go back on|4741251 +go bad|4741368 +go ballistic|4741466 +go board|4741670 +go by|4741704 +go deep|4741941 +go down|4741989 +go down on|4742285 +go dutch|4742340 +go far|4742371 +go fish|4742512 +go for|4742553 +go for broke|4742770 +go forth|4742866 +go forward|4742945 +go game|4743006 +go home|4743037 +go in|4743098 +go into|4743161 +go off|4743224 +go off at half-cock|4743522 +go off half-cocked|4743579 +go on|4743636 +go out|4743919 +go over|4744133 +go past|4744421 +go steady|4744565 +go through|4744635 +go through the motions|4744905 +go to|4744963 +go to bed|4744988 +go to pieces|4745090 +go to pot|4745147 +go to sleep|4745193 +go to the dogs|4745295 +go to war|4745341 +go under|4745387 +go up|4745519 +go with|4745882 +go wrong|4746062 +go-ahead|4739189 +go-around|4739310 +go-as-you-please|4739365 +go-between|4739406 +go-cart|4739503 +go-getter|4739710 +go-kart|4739779 +go-slow|4739829 +go-to-meeting|4739857 +goa|4746094 +goa bean|4746126 +goa bean vine|4746250 +goa powder|4746350 +goad|4746408 +goaded|4746656 +goading|4746716 +goal|4746787 +goal line|4747016 +goal-directed|4746910 +goal-kick|4746954 +goalie|4747040 +goalkeeper|4747192 +goalless|4747340 +goalmouth|4747389 +goalpost|4747413 +goaltender|4747436 +goat|4747584 +goat antelope|4748046 +goat cheese|4748075 +goat grass|4748110 +goat herder|4748156 +goat rue|4748209 +goat willow|4748279 +goat's foot|4747844 +goat's rue|4747916 +goatee|4748350 +goateed|4748393 +goatfish|4748428 +goatherd|4748492 +goats' milk|4748545 +goatsbeard|4748571 +goatsfoot|4748667 +goatskin|4748739 +goatsucker|4748767 +gob|4748828 +gobbet|4749029 +gobble|4749054 +gobble up|4749136 +gobbledygook|4749192 +gobbler|4749221 +gobi|4749312 +gobi desert|4749350 +gobiesocidae|4749395 +gobiesox|4749462 +gobiesox strumosus|4749515 +gobiidae|4749597 +gobio|4749652 +gobio gobio|4749696 +goblet|4749760 +goblet cell|4749816 +goblin|4749853 +gobs|4749895 +gobsmacked|4750263 +goby|4750293 +god|4750347 +god almighty|4750795 +god knows how|4750899 +god of war|4750935 +god tree|4750991 +god's acre|4750568 +god's will|4750615 +god's wisdom|4750658 +god-awful|4750705 +god-fearing|4750751 +godard|4751138 +godchild|4751224 +goddam|4751259 +goddamn|4751406 +goddamned|4751577 +goddard|4751721 +goddaughter|4751781 +goddess|4751811 +godel|4751856 +godfather|4751902 +godforsaken|4751963 +godhead|4752053 +godiva|4752152 +godless|4752211 +godlessness|4752247 +godlike|4752337 +godliness|4752395 +godly|4752430 +godmother|4752494 +godown|4752523 +godparent|4752567 +godsend|4752611 +godson|4752725 +godspeed|4752750 +godunov|4752785 +godwin austen|4752865 +godwit|4752947 +goebbels|4753000 +goer|4753094 +goering|4753141 +goeteborg|4753244 +goethals|4753327 +goethe|4753421 +goethean|4753506 +goethian|4753576 +goethite|4753646 +gofer|4753681 +goffer|4753705 +goggle|4753875 +goggle box|4754036 +goggle-eye|4753911 +goggle-eyed|4753985 +goggles|4754164 +gogh|4754217 +gogol|4754270 +goidelic|4754331 +going|4754393 +going ashore|4754817 +going away|4754880 +going to jerusalem|4754949 +going under|4755024 +going-out-of-business sale|4754587 +going-over|4754654 +goiter|4755064 +goitre|4755114 +goitrogen|4755164 +golan|4755210 +golan heights|4755317 +golconda|4755432 +gold|4755466 +gold braid|4756404 +gold coast|4756467 +gold digger|4756623 +gold dust|4756710 +gold fern|4756754 +gold fever|4756804 +gold foil|4756830 +gold leaf|4756854 +gold medal|4756883 +gold mine|4756969 +gold miner|4757106 +gold of pleasure|4757167 +gold panner|4757236 +gold plate|4757297 +gold rush|4757552 +gold standard|4757683 +gold-bearing|4755722 +gold-beater|4755764 +gold-crowned kinglet|4755916 +gold-plate|4755970 +gold-tail moth|4756179 +gold-worker|4756250 +golda meir|4757775 +goldbeater|4757843 +goldberg|4757914 +goldbrick|4757989 +goldbricking|4758337 +goldcrest|4758423 +goldcup|4758489 +golden|4758582 +golden age|4758998 +golden ager|4759156 +golden algae|4759225 +golden aster|4759258 +golden barrel cactus|4759303 +golden boy|4759382 +golden buttons|4759428 +golden calf|4759515 +golden calla|4759558 +golden chain|4759631 +golden chinkapin|4759718 +golden clematis|4759837 +golden club|4759890 +golden crown beard|4759985 +golden crownbeard|4760136 +golden cup|4760287 +golden delicious|4760357 +golden eagle|4760427 +golden everlasting|4760486 +golden fairy lantern|4760599 +golden fern|4760693 +golden fig|4760799 +golden fleece|4760885 +golden gate|4760939 +golden gate bridge|4760985 +golden glow|4761050 +golden gram|4761164 +golden groundsel|4761266 +golden hamster|4761358 +golden handshake|4761426 +golden heather|4761472 +golden honey plant|4761548 +golden horde|4761700 +golden ironweed|4761741 +golden larch|4761893 +golden maidenhair|4761960 +golden marguerite|4762081 +golden mean|4762187 +golden mole|4762281 +golden oak mushroom|4762307 +golden oldie|4762433 +golden oriole|4762466 +golden parachute|4762529 +golden pea|4762591 +golden pheasant|4762667 +golden pholiota|4762721 +golden plover|4762768 +golden polypody|4762798 +golden pothos|4762999 +golden potto|4763080 +golden ragwort|4763143 +golden rain|4763235 +golden retriever|4763322 +golden rule|4763358 +golden saxifrage|4763442 +golden seal|4763537 +golden section|4763719 +golden shiner|4763782 +golden shower tree|4763836 +golden spleen|4763958 +golden star|4764053 +golden stars|4764121 +golden state|4764242 +golden syrup|4764313 +golden thistle|4764355 +golden thread|4764387 +golden trumpet|4764492 +golden warbler|4764564 +golden wattle|4764664 +golden wedding anniversary|4764711 +golden willow|4764767 +golden wonder millet|4764833 +golden yarrow|4764971 +golden years|4765031 +golden-beard penstemon|4758788 +golden-crested kinglet|4758862 +golden-eyed fly|4758928 +goldenbush|4765066 +goldeneye|4765127 +goldenrod|4765237 +goldenseal|4765279 +goldfield|4765380 +goldfields|4765448 +goldfinch|4765579 +goldfish|4765683 +goldfish bowl|4765742 +goldie's fern|4765875 +goldie's shield fern|4765997 +goldie's wood fern|4766126 +goldilocks|4766234 +goldilocks aster|4766312 +golding|4766390 +goldman|4766472 +goldmark|4766541 +goldmine|4766633 +goldoni|4766690 +goldplate|4766750 +goldsmith|4766797 +goldstone|4766918 +goldthread|4766957 +goldworker|4767062 +goldwyn|4767135 +golem|4767234 +golf|4767297 +golf bag|4767506 +golf ball|4767543 +golf caddie|4767582 +golf cap|4767636 +golf cart|4767682 +golf club|4767839 +golf course|4768012 +golf equipment|4768057 +golf game|4768113 +golf glove|4768150 +golf hole|4768198 +golf lesson|4768257 +golf links|4768285 +golf player|4768330 +golf pro|4768386 +golf range|4768452 +golf shot|4768501 +golf stroke|4768550 +golf tee|4768599 +golf widow|4768644 +golf-club|4767346 +golf-club head|4767448 +golfcart|4768683 +golfer|4768759 +golfing|4768815 +golfo de mexico|4768840 +golgi|4768901 +golgi apparatus|4769005 +golgi body|4769095 +golgi cell|4769180 +golgi complex|4769235 +golgi's cell|4768948 +golgotha|4769323 +goliard|4769363 +goliath|4769413 +goliath frog|4769508 +golliwog|4769559 +golliwogg|4769598 +golosh|4769637 +goma|4769691 +gombrowicz|4769739 +gomel|4769802 +gomorrah|4769865 +gomorrha|4769930 +gompers|4769995 +gomphothere|4770048 +gomphotheriidae|4770078 +gomphotherium|4770156 +gomphrena|4770226 +gomphrena globosa|4770297 +gomuti|4770382 +gomuti palm|4770446 +gonad|4770510 +gonadal|4770576 +gonadotrophic|4770633 +gonadotrophic hormone|4770705 +gonadotrophin|4770821 +gonadotropic|4770937 +gonadotropic hormone|4771009 +gonadotropin|4771125 +goncalo alves|4771241 +goncourt|4771313 +gond|4771489 +gondang wax|4771518 +gondi|4771551 +gondola|4771596 +gondola car|4771672 +gondolier|4771713 +gondoliere|4771767 +gondwanaland|4771821 +gone|4771866 +goner|4772075 +gong|4772106 +gong buoy|4772247 +gongora|4772290 +gongorist|4772345 +gonif|4772398 +goniff|4772451 +goniometer|4772504 +gonion|4772541 +goniopteris|4772576 +gonne|4772638 +gonococcus|4772690 +gonorhynchidae|4772751 +gonorhynchus|4772824 +gonorhynchus gonorhynchus|4772889 +gonorrhea|4773006 +gonorrhoea|4773148 +goo|4773290 +goober|4773358 +goober pea|4773433 +good|4773508 +good afternoon|4776620 +good authority|4776700 +good book|4776746 +good condition|4776914 +good continuation|4776990 +good day|4777112 +good deal|4777275 +good egg|4777515 +good enough|4777545 +good example|4777571 +good faith|4777622 +good for you|4777674 +good form|4777725 +good fortune|4777778 +good friday|4777898 +good guy|4777950 +good health|4778021 +good humor|4778098 +good humour|4778178 +good humouredness|4778258 +good looks|4778356 +good luck|4778396 +good luck charm|4778576 +good manners|4778630 +good morning|4778684 +good nature|4778760 +good naturedness|4778805 +good night|4778903 +good ol' boy|4778949 +good old boy|4779018 +good ole boy|4779087 +good part|4779156 +good person|4779184 +good samaritan|4779258 +good sense|4779325 +good shape|4779450 +good shepherd|4779526 +good speller|4779698 +good spirit|4779748 +good story|4779817 +good temper|4779874 +good time|4779954 +good turn|4779990 +good weather|4780027 +good will|4780097 +good word|4780297 +good-by|4774766 +good-bye|4775010 +good-for-naught|4775254 +good-for-nothing|4775444 +good-hearted|4775633 +good-humored|4775695 +good-humoredness|4775752 +good-humoured|4775850 +good-king-henry|4775907 +good-looking|4775998 +good-natured|4776094 +good-neighborliness|4776231 +good-neighbourliness|4776325 +good-tempered|4776419 +good-temperedness|4776484 +good-time|4776582 +goodall|4780410 +goodby|4780475 +goodbye|4780638 +goodenia|4780801 +goodenia family|4780859 +goodeniaceae|4780966 +goodish|4781070 +goodly|4781159 +goodman|4781236 +goodness|4781352 +goods|4781404 +goodwill|4781548 +goody|4781669 +goody-goody|4781788 +goodyear|4781852 +goodyera|4781926 +gooey|4781998 +goof|4782027 +goof-off|4782209 +goof-proof|4782321 +goofball|4782448 +goofing off|4782548 +goofproof|4782634 +goofy|4782680 +googly|4782831 +googol|4782882 +googolplex|4782923 +gook|4782968 +goon|4783078 +gooney|4783251 +gooney bird|4783353 +goonie|4783455 +goony|4783557 +goop|4783659 +goora nut|4783776 +goosander|4783847 +goose|4783921 +goose barnacle|4784146 +goose bump|4784236 +goose down|4784420 +goose egg|4784458 +goose grass|4784563 +goose grease|4784834 +goose liver|4784867 +goose pimple|4784894 +goose plum|4785078 +goose skin|4785170 +goose step|4785354 +goose-tansy|4784059 +gooseberry|4785410 +gooseberry bush|4785507 +gooseberry family|4785589 +goosefish|4785668 +gooseflesh|4785795 +goosefoot|4785979 +goosefoot family|4786020 +goosefoot maple|4786110 +gooselike|4786212 +gooseneck|4786279 +gooseneck barnacle|4786317 +gooseneck loosestrife|4786407 +goosey|4786478 +goosy|4786545 +gop|4786612 +gopher|4786668 +gopher hole|4786891 +gopher snake|4786924 +gopher state|4787053 +gopher tortoise|4787133 +gopher turtle|4787207 +gopherus|4787281 +gopherus agassizii|4787337 +gopherus polypemus|4787409 +gopherwood|4787502 +goral|4787604 +gorbachev|4787651 +gordian|4787760 +gordian knot|4787793 +gordimer|4787861 +gordius|4787918 +gordon setter|4787961 +gore|4788005 +gore vidal|4788208 +gorgas|4788279 +gorge|4788361 +gorged|4788666 +gorgeous|4788715 +gorgeously|4788743 +gorger|4788801 +gorgerin|4788838 +gorget|4788881 +gorgon|4788961 +gorgonacea|4789019 +gorgoniacea|4789116 +gorgonian|4789214 +gorgonian coral|4789255 +gorgonocephalus|4789296 +gorgonzola|4789376 +gorilla|4789413 +gorilla gorilla|4789463 +gorilla gorilla beringei|4789529 +gorilla gorilla gorilla|4789629 +gorilla gorilla grauri|4789734 +goring|4789837 +gorki|4789939 +gorkiy|4790148 +gorky|4790245 +gormandise|4790454 +gormandize|4790607 +gormless|4790760 +gorse|4790794 +gory|4790858 +gosainthan|4790952 +gosan-chiku|4790997 +goshawk|4791073 +gosling|4791114 +gosmore|4791137 +gospel|4791220 +gospel according to john|4791629 +gospel according to luke|4791721 +gospel according to mark|4791828 +gospel according to matthew|4791920 +gospel of luke|4792021 +gospel singing|4792118 +gospel truth|4792215 +gospeler|4792265 +gospeller|4792359 +gospels|4792453 +gossamer|4792981 +gossip|4793166 +gossip columnist|4793584 +gossiper|4793630 +gossiping|4793717 +gossipmonger|4793765 +gossipmongering|4793852 +gossipy|4793900 +gossypium|4793958 +gossypium arboreum|4794025 +gossypium barbadense|4794104 +gossypium herbaceum|4794205 +gossypium hirsutum|4794288 +gossypium peruvianum|4794369 +gossypium thurberi|4794456 +gota canal|4794555 +goteborg|4794605 +goth|4794687 +gothenburg|4794802 +gothic|4794886 +gothic arch|4795262 +gothic architecture|4795308 +gothic romance|4795427 +gothic romancer|4795474 +gothite|4795529 +gotterdammerung|4795564 +gottfried wilhelm leibnitz|4795640 +gottfried wilhelm leibniz|4795772 +gotthold ephraim lessing|4795903 +gottlieb daimler|4795991 +gouache|4796096 +gouda|4796166 +gouda cheese|4796207 +gouge|4796255 +gouge out|4796516 +gouger|4796543 +goujon|4796730 +goulash|4796851 +gould|4796898 +gounod|4797020 +gourd|4797076 +gourd family|4797143 +gourd vine|4797233 +gourde|4797264 +gourmand|4797302 +gourmandism|4797353 +gourmandize|4797398 +gourmet|4797551 +gout|4797626 +gouty|4797678 +gouty arthritis|4797702 +gouverneur morris|4797754 +govern|4797838 +governable|4798053 +governador valadares|4798097 +governance|4798177 +governed|4798341 +governess|4798376 +governing|4798414 +governing board|4798506 +governing body|4798537 +government|4798638 +government accounting office|4798885 +government activity|4799063 +government agency|4799139 +government agent|4799252 +government bond|4799284 +government building|4799331 +government department|4799377 +government income|4799427 +government issue|4799480 +government man|4799544 +government minister|4799601 +government note|4799668 +government office|4799818 +government officials|4799868 +government printing office|4799997 +government revenue|4800199 +government security|4800252 +government-in-exile|4798826 +governmental|4800318 +governor|4800363 +governor general|4800613 +governor plum|4800648 +governor's plum|4800428 +governor's race|4800534 +governorship|4800754 +gowen cypress|4800831 +gown|4800895 +gowned|4801072 +goy|4801101 +goya|4801140 +goya y lucientes|4801275 +gp|4801422 +gp bomb|4801493 +gpa|4801544 +gpo|4801619 +gps|4801798 +graafian follicle|4801927 +grab|4801981 +grab bag|4802214 +grab bar|4802349 +grab sample|4802371 +grabber|4802399 +grabby|4802454 +grace|4802529 +grace cup|4802944 +grace ethel cecile rosalie allen|4802967 +grace kelly|4803079 +grace note|4803172 +grace of god|4803241 +grace patricia kelly|4803305 +graceful|4803407 +gracefully|4803625 +gracefulness|4803655 +graceless|4803702 +gracelessly|4803804 +gracelessness|4803880 +gracie|4803992 +gracie allen|4804078 +gracilariid|4804170 +gracilariid moth|4804229 +gracilariidae|4804288 +gracile|4804378 +gracility|4804412 +gracillariidae|4804450 +gracious|4804541 +graciously|4804729 +graciousness|4804759 +grackle|4804845 +gracula|4805000 +gracula religiosa|4805050 +grad|4805171 +grad school|4805273 +grad student|4805317 +gradable|4805403 +gradable opposition|4805456 +gradate|4805509 +gradation|4805555 +gradational|4805637 +gradatory|4805686 +grade|4805735 +grade crossing|4806249 +grade insignia|4806339 +grade point|4806392 +grade point average|4806430 +grade school|4806501 +grade separation|4806578 +grade-constructed|4806214 +graded|4806633 +grader|4806702 +gradient|4806725 +grading|4806789 +gradual|4806908 +graduality|4807099 +gradually|4807156 +gradualness|4807198 +graduate|4807288 +graduate nurse|4807538 +graduate school|4807582 +graduate student|4807626 +graduated|4807712 +graduated cylinder|4807843 +graduated table|4807880 +graduating class|4807985 +graduation|4808022 +graduation exercise|4808224 +graeco-roman|4808330 +graeco-roman deity|4808396 +graecophile|4808489 +graecophilic|4808658 +graf|4808729 +graf zeppelin|4808789 +graffiti|4808853 +graffito|4808964 +graft|4809025 +grafting|4809208 +graham|4809254 +graham bread|4809491 +graham cracker|4809571 +graham flour|4809603 +graham greene|4809679 +grahame|4809757 +grail|4809812 +grain|4809862 +grain alcohol|4810264 +grain field|4810352 +grain merchant|4810471 +grain moth|4810517 +grain sorghum|4810562 +grainfield|4810593 +grainger|4810631 +graininess|4810737 +graining|4810790 +grains of paradise|4810827 +grainy|4810942 +grainy club|4811030 +grainy club mushrooms|4811089 +gram|4811167 +gram atom|4811759 +gram calorie|4811828 +gram method|4811904 +gram molecule|4812001 +gram stain|4812064 +gram's method|4811267 +gram's procedure|4811366 +gram's solution|4811468 +gram's stain|4811518 +gram-atomic weight|4811616 +gram-negative|4811685 +gram-positive|4811722 +grama|4812160 +grama grass|4812213 +gramicidin|4812266 +graminaceae|4812324 +graminaceous plant|4812471 +graminales|4812538 +gramineae|4812598 +gramineous plant|4812743 +gramma|4812810 +gramma grass|4812863 +grammar|4812916 +grammar school|4812980 +grammarian|4813118 +grammatic|4813181 +grammatical|4813258 +grammatical case|4813366 +grammatical category|4813437 +grammatical constituent|4813508 +grammatical construction|4813570 +grammatical gender|4813664 +grammatical meaning|4813739 +grammatical relation|4813810 +grammatical rule|4813860 +grammatolatry|4813923 +grammatophyllum|4814007 +gramme|4814100 +gramophone|4814157 +gramps|4814222 +grampus|4814298 +grampus griseus|4814401 +gran|4814458 +gran casa|4814519 +gran santiago|4814574 +granada|4814672 +granadilla|4814726 +granadilla tree|4814997 +granadilla wood|4815050 +granadillo|4815112 +granary|4815165 +grand|4815229 +grand canal|4815437 +grand canyon|4815501 +grand canyon national park|4815542 +grand canyon state|4815619 +grand circle|4815692 +grand dragon|4815733 +grand duchess|4815774 +grand duchy|4815805 +grand duchy of luxembourg|4815846 +grand duke|4815961 +grand fir|4815988 +grand guignol|4816072 +grand inquisitor|4816134 +grand island|4816188 +grand jury|4816228 +grand lama|4816253 +grand larceny|4816300 +grand mal|4816376 +grand mal epilepsy|4816449 +grand marnier|4816507 +grand mufti|4816559 +grand national|4816586 +grand opera|4816638 +grand piano|4816665 +grand prix|4816721 +grand rapids|4816787 +grand slam|4816851 +grand teton|4816882 +grand teton national park|4816929 +grand theft|4817004 +grand tour|4817080 +grand turk|4817113 +grandad|4817164 +grandaunt|4817240 +grandchild|4817288 +granddad|4817332 +granddaddy|4817408 +granddaughter|4817484 +grande dame|4817518 +grandee|4817573 +grandeur|4817610 +grandfather|4817751 +grandfather clause|4817827 +grandfather clock|4817873 +grandiloquence|4817930 +grandiloquent|4818012 +grandiloquently|4818123 +grandiose|4818162 +grandiosely|4818267 +grandiosity|4818301 +grandma|4818383 +grandma moses|4818444 +grandmaster|4818521 +grandmother|4818561 +grandnephew|4818622 +grandness|4818663 +grandniece|4818908 +grandpa|4818946 +grandparent|4819022 +grandson|4819060 +grandstand|4819089 +grandstander|4819167 +granduncle|4819212 +grange|4819250 +granger|4819271 +granicus|4819324 +granite|4819391 +granite state|4819476 +granitelike|4819545 +graniteware|4819595 +granitic|4819627 +grannie|4819713 +granny|4819774 +granny knot|4819965 +granny smith|4820013 +granny's bonnets|4819891 +granola|4820075 +granola bar|4820115 +grant|4820157 +grant wood|4821025 +grant-in-aid|4820939 +granted|4821069 +grantee|4821118 +granter|4821154 +granth|4821224 +granth sahib|4821331 +granting immunity|4821444 +grantor|4821515 +grantor trust|4821540 +granular|4821584 +granular pearlite|4821690 +granularity|4821744 +granulate|4821797 +granulated|4821890 +granulated sugar|4821917 +granulation|4821963 +granulation tissue|4822046 +granule|4822104 +granuliferous|4822127 +granulocyte|4822155 +granulocytic|4822266 +granulocytic leukemia|4822377 +granulocytopenia|4822477 +granuloma|4822560 +granuloma inguinale|4822601 +granuloma venereum|4822756 +granulomatous|4822911 +granulose|4822955 +granville stanley hall|4823244 +granville wilt|4823333 +granville-barker|4823043 +grape|4823375 +grape arbor|4823495 +grape arbour|4823556 +grape fern|4823617 +grape hyacinth|4823642 +grape jelly|4823683 +grape juice|4823710 +grape louse|4823755 +grape phylloxera|4823833 +grape sugar|4823911 +grape-leaf begonia|4823425 +grapefruit|4823963 +grapefruit juice|4824059 +grapefruit peel|4824109 +grapelike|4824154 +grapeshot|4824185 +grapevine|4824216 +grapevine family|4824303 +grapey|4824398 +graph|4824429 +graph paper|4824527 +grapheme|4824554 +graphic|4824627 +graphic art|4824788 +graphic artist|4824822 +graphic symbol|4824880 +graphic tellurium|4824953 +graphical|4824998 +graphical record|4825071 +graphical user interface|4825116 +graphically|4825179 +graphics|4825216 +graphite|4825304 +graphologist|4825367 +graphospasm|4825443 +grapnel|4825504 +grapnel anchor|4825616 +grapo|4825669 +grappa|4825810 +grappelli|4825833 +grapple|4825899 +grappler|4826165 +grappling|4826304 +grappling hook|4826506 +grappling iron|4826575 +graptophyllum|4826644 +graptophyllum pictum|4826721 +grapy|4826800 +grasp|4826831 +graspable|4827183 +grasping|4827286 +grass|4827459 +grass bacillus|4828152 +grass family|4828244 +grass fern|4828379 +grass finch|4828433 +grass frog|4828637 +grass over|4828689 +grass parakeet|4828733 +grass pea|4828902 +grass pink|4828967 +grass poly|4829110 +grass roots|4829182 +grass skirt|4829240 +grass snake|4829267 +grass tree|4829425 +grass tree family|4829585 +grass vetch|4829675 +grass vetchling|4829740 +grass widow|4829805 +grass widower|4829854 +grass wrack|4829905 +grass-covered|4827949 +grass-eating|4827979 +grass-leaved golden aster|4828013 +grass-of-parnassus|4828061 +grassfinch|4830015 +grassfire|4830078 +grasshopper|4830102 +grasshopper mouse|4830190 +grassland|4830234 +grassless|4830317 +grasslike|4830351 +grassroots|4830377 +grassy|4830417 +grassy death camas|4830489 +grate|4830588 +grated cheese|4830900 +grateful|4830930 +gratefully|4831000 +gratefulness|4831034 +grater|4831096 +graticule|4831128 +gratification|4831172 +gratified|4831251 +gratify|4831278 +gratifying|4831350 +gratifyingly|4831485 +grating|4831519 +gratingly|4831695 +gratis|4831731 +gratitude|4831823 +gratuitous|4831850 +gratuity|4831979 +gratulatory|4832099 +grave|4832146 +grave accent|4832480 +grave mound|4832527 +gravedigger|4832587 +gravel|4832645 +gravel pit|4833031 +gravelly|4833072 +gravelweed|4833187 +gravely|4833266 +graven|4833329 +graven image|4833434 +graveness|4833489 +graver|4833599 +graverobber|4833655 +graves|4833731 +graves' disease|4833926 +gravestone|4834031 +graveyard|4834095 +graveyard shift|4834204 +graveyard watch|4834295 +gravid|4834360 +gravida|4834437 +gravida i|4834510 +gravida ii|4834560 +gravida iii|4834614 +gravidation|4834668 +gravidity|4834740 +gravidness|4834812 +gravimeter|4834884 +gravimetric|4835046 +gravimetric analysis|4835120 +gravimetry|4835203 +graving dock|4835276 +graving tool|4835345 +gravitas|4835401 +gravitate|4835472 +gravitation|4835544 +gravitation wave|4835707 +gravitational|4835762 +gravitational attraction|4835824 +gravitational collapse|4835926 +gravitational constant|4835968 +gravitational field|4836068 +gravitational force|4836130 +gravitational interaction|4836232 +gravitational mass|4836303 +gravitational theory|4836336 +gravitative|4836455 +gravitons|4836517 +gravity|4836548 +gravity bomb|4836817 +gravity fault|4836854 +gravity gradient|4836918 +gravity meter|4836953 +gravity wave|4837042 +gravity-assist|4836775 +gravure|4837097 +gravy|4837239 +gravy boat|4837366 +gravy holder|4837419 +gravy train|4837472 +gray|4837511 +gray alder|4838496 +gray area|4838546 +gray birch|4838580 +gray catbird|4838656 +gray flounder|4838728 +gray fox|4838802 +gray friar|4838858 +gray goldenrod|4838916 +gray hen|4838969 +gray jay|4839099 +gray kingbird|4839179 +gray lemming|4839273 +gray market|4839322 +gray matter|4839362 +gray mullet|4839471 +gray partridge|4839550 +gray polypody|4839618 +gray poplar|4839693 +gray sage|4839751 +gray sea eagle|4839853 +gray skate|4839957 +gray snapper|4839994 +gray sole|4840058 +gray substance|4840097 +gray whale|4840206 +gray willow|4840309 +gray wolf|4840363 +gray-haired|4838174 +gray-headed|4838277 +gray-leaf pine|4838380 +grayback|4840411 +graybeard|4840553 +grayed|4840705 +grayhen|4840749 +grayish|4840798 +grayish brown|4840844 +graylag|4840902 +grayly|4840959 +grayness|4840981 +graz|4841053 +graze|4841101 +grazed|4841324 +grazier|4841348 +grazing|4841373 +grazing fire|4841450 +grazing land|4841484 +grease|4841544 +grease monkey|4841686 +grease one's palms|4841818 +grease-gun|4841657 +greaseball|4841868 +greased|4841912 +greasepaint|4841940 +greaseproof|4841986 +greaseproof paper|4842030 +greaser|4842063 +greasewood|4842101 +greasiness|4842173 +greasy|4842249 +greasy spoon|4842334 +great|4842393 +great adductor muscle|4843052 +great anteater|4843133 +great ape|4843238 +great attractor|4843279 +great auk|4843348 +great australian bight|4843390 +great barracuda|4843451 +great barrier reef|4843506 +great bear|4843564 +great bellied|4843620 +great black-backed gull|4843663 +great blue heron|4843754 +great blue shark|4843801 +great bowerbird|4843868 +great britain|4843931 +great burdock|4844086 +great bustard|4844165 +great care|4844207 +great cerebral vein|4844261 +great circle|4844336 +great crested grebe|4844363 +great dane|4844417 +great deal|4844460 +great depression|4844700 +great divide|4844776 +great dividing range|4844842 +great dog|4844991 +great duckweed|4845046 +great falls|4845115 +great grandfather|4845153 +great grandmother|4845198 +great grandparent|4845243 +great gray kangaroo|4845287 +great gray owl|4845359 +great gross|4845439 +great hall|4845479 +great horned owl|4845504 +great hundred|4845558 +great knapweed|4845612 +great lakes|4845681 +great lakes state|4845719 +great lobelia|4845807 +great maple|4845879 +great mendenhall glacier|4845950 +great millet|4846070 +great mother|4846146 +great mullein|4846239 +great plains|4846378 +great plains of north america|4846451 +great plains paintbrush|4846541 +great power|4846628 +great proletarian cultural revolution|4846754 +great pyramid|4846870 +great pyrenees|4846933 +great ragweed|4847006 +great revolt|4847074 +great rift valley|4847172 +great russian|4847229 +great salt lake|4847274 +great sandy desert|4847320 +great saphenous vein|4847374 +great seal|4847452 +great seal of the united states|4847483 +great skua|4847567 +great slave lake|4847615 +great smoky mountains|4847663 +great smoky mountains national park|4847796 +great snipe|4847891 +great solomon's-seal|4847949 +great st john's wort|4848059 +great toe|4848165 +great victoria desert|4848203 +great wall|4848263 +great wall of china|4848348 +great war|4848442 +great white heron|4848536 +great white hope|4848661 +great white shark|4848703 +great white way|4848807 +great year|4848864 +great yellow gentian|4848932 +great yellowcress|4848985 +great-aunt|4842774 +great-leaved macrophylla|4842822 +great-nephew|4842935 +great-niece|4842976 +great-uncle|4843014 +greatcoat|4849061 +greater|4849102 +greater antilles|4849555 +greater burdock|4849610 +greater butterfly orchid|4849689 +greater celandine|4849793 +greater knapweed|4849879 +greater kudu|4849948 +greater london|4850014 +greater masterwort|4850123 +greater new orleans bridge|4850188 +greater new york|4850269 +greater omentum|4850393 +greater pectoral muscle|4850451 +greater peritoneal sac|4850588 +greater pichiciego|4850665 +greater prairie chicken|4850723 +greater rhomboid muscle|4850819 +greater scaup|4850929 +greater spearwort|4851002 +greater stitchwort|4851081 +greater sunda islands|4851158 +greater water parsnip|4851223 +greater whitethroat|4851304 +greater yellowlegs|4851369 +greatest|4851427 +greatest common divisor|4851986 +greatest common factor|4852108 +greathearted|4852230 +greatness|4852270 +greave|4852392 +greaves|4852488 +grebe|4852670 +grecian|4852708 +greco|4852789 +greco-roman|4852855 +greco-roman architecture|4852920 +greco-roman deity|4853065 +greece|4853157 +greed|4853246 +greedily|4853336 +greediness|4853377 +greedy|4853449 +greegree|4853582 +greek|4853633 +greek alphabet|4853832 +greek architecture|4853880 +greek capital|4853975 +greek catholic|4854062 +greek chorus|4854110 +greek church|4854167 +greek clover|4854321 +greek cross|4854413 +greek deity|4854452 +greek drachma|4854513 +greek fire|4854578 +greek fret|4854642 +greek key|4854723 +greek mode|4854803 +greek monetary unit|4854852 +greek mythology|4854915 +greek orthodox|4854976 +greek orthodox church|4855073 +greek partridge|4855236 +greek valerian|4855319 +greeley|4855523 +green|4855574 +green adder's mouth|4856698 +green alder|4856794 +green algae|4856904 +green apple aphid|4856948 +green arrow arum|4857004 +green ash|4857070 +green bay|4857168 +green bean|4857226 +green beret|4857313 +green bristlegrass|4857354 +green broom|4857479 +green card|4857572 +green corn|4857616 +green dinosaur|4857790 +green douglas fir|4857877 +green dragon|4858005 +green fingers|4858109 +green foxtail|4858222 +green fringed orchis|4858347 +green frog|4858474 +green gentian|4858537 +green gland|4858616 +green goddess|4858677 +green gold|4858801 +green goods|4858846 +green gram|4858909 +green groceries|4859011 +green hellebore|4859173 +green june beetle|4859227 +green lacewing|4859321 +green lead ore|4859387 +green light|4859432 +green line|4859519 +green lizard|4859600 +green mamba|4859663 +green manure|4859720 +green market|4859749 +green mayonnaise|4859931 +green monkey|4859985 +green monkey disease|4860080 +green mountain state|4860242 +green mushroom pimple|4860319 +green olive|4860366 +green onion|4860393 +green paper|4860429 +green party|4860478 +green pea|4860533 +green pea soup|4860567 +green peach aphid|4860615 +green peafowl|4860651 +green pepper|4860708 +green plover|4860743 +green revolution|4860793 +green river|4860830 +green salad|4860875 +green smut|4860909 +green smut fungus|4860945 +green snake|4861001 +green soap|4861089 +green soybean|4861124 +green spleenwort|4861158 +green tea|4861212 +green thumb|4861244 +green turtle|4861357 +green turtle soup|4861419 +green woodpecker|4861463 +green-blind|4856289 +green-blindness|4856339 +green-eyed|4856461 +green-eyed monster|4856513 +green-tailed towhee|4856590 +green-winged teal|4856644 +greenback|4861532 +greenback party|4861682 +greenbelt|4861745 +greenberg|4861778 +greenbottle|4861842 +greenbottle fly|4861896 +greenbrier|4861950 +greene|4862050 +greenery|4862121 +greeneye|4862168 +greenfly|4862219 +greengage|4862243 +greengage plum|4862282 +greengrocer|4862321 +greengrocery|4862349 +greenhood|4862437 +greenhorn|4862496 +greenhouse|4862561 +greenhouse effect|4862646 +greenhouse emission|4862696 +greenhouse gas|4862744 +greenhouse whitefly|4862792 +greening|4862856 +greenish|4862944 +greenish blue|4863001 +greenish yellow|4863089 +greenishness|4863132 +greenland|4863179 +greenland caribou|4863241 +greenland sea|4863333 +greenland spar|4863374 +greenland whale|4863430 +greenling|4863541 +greenmail|4863589 +greenmarket|4863644 +greenness|4863745 +greenockite|4863940 +greenpeace|4863986 +greenroom|4864050 +greens|4864074 +greensand|4864642 +greensboro|4864671 +greenshank|4864731 +greensickness|4864778 +greenside|4864858 +greenskeeper|4864891 +greenstick fracture|4864938 +greensward|4864987 +greenville|4865039 +greenway|4865121 +greenweed|4865154 +greenwich|4865260 +greenwich mean time|4865297 +greenwich time|4865392 +greenwich village|4865482 +greenwing|4865583 +greenwood|4865637 +greet|4865690 +greeter|4865808 +greeting|4865895 +greeting card|4865955 +greg norman|4865983 +gregarine|4866071 +gregarinida|4866100 +gregarious|4866164 +gregariously|4866278 +gregariousness|4866308 +gregor mendel|4866357 +gregorian|4866466 +gregorian calendar|4866745 +gregorian calendar month|4866826 +gregorian chant|4866906 +gregorian mode|4866974 +gregorian telescope|4867077 +gregory|4867181 +gregory goodwin pincus|4867651 +gregory i|4867741 +gregory john norman|4867950 +gregory nazianzen|4868046 +gregory of nazianzen|4868259 +gregory pincus|4868475 +gregory the great|4868557 +gregory vii|4868774 +gregory xiii|4868916 +greisen|4869066 +gremlin|4869094 +grenada|4869168 +grenada dollar|4869212 +grenade|4869258 +grenade thrower|4869280 +grenadian|4869360 +grenadier|4869436 +grenadine|4869563 +grenoble|4869594 +gres-gris|4869650 +gresham|4869701 +gresham's law|4869764 +greta garbo|4869816 +greta louisa gustafsson|4869887 +gretzky|4869970 +grevillea|4870041 +grevillea banksii|4870071 +grevillea robusta|4870148 +grevillea striata|4870212 +grevillela parallela|4870275 +grevy's zebra|4870346 +grewia|4870388 +grewia asiatica|4870446 +grey|4870505 +grey area|4871368 +grey fox|4871402 +grey matter|4871458 +grey substance|4871567 +grey-haired|4871162 +grey-headed|4871265 +greybeard|4871676 +greyhound|4871785 +greyhound racing|4871826 +greyish|4871859 +greyish brown|4871905 +greylag|4871963 +greylag goose|4872020 +greyly|4872077 +greyness|4872099 +gri-gri|4872171 +grias|4872296 +grias cauliflora|4872360 +grid|4872445 +grid metal|4872606 +griddle|4872652 +griddlecake|4872705 +gridiron|4872850 +gridiron-tailed lizard|4872968 +gridlock|4873067 +grief|4873106 +grief-stricken|4873199 +grieg|4873277 +grievance|4873341 +grieve|4873450 +griever|4873504 +grieving|4873578 +grievous|4873656 +grievous bodily harm|4873880 +griffin|4873997 +griffith|4874057 +griffon|4874174 +griffon vulture|4874368 +grifola frondosa|4874431 +grifter|4874535 +grigori efimovich rasputin|4874668 +grigri|4874748 +grill|4874799 +grille|4874921 +grilled|4875044 +grilling|4875100 +grillroom|4875161 +grillwork|4875223 +grim|4875329 +grim reaper|4875653 +grimace|4875699 +grime|4875814 +grimes' golden|4875946 +griminess|4876012 +grimm|4876064 +grimm's law|4876225 +grimness|4876268 +grimoire|4876420 +grimy|4876445 +grin|4876518 +grind|4876601 +grind away|4877093 +grind down|4877183 +grind organ|4877231 +grind out|4877331 +grind to a halt|4877380 +grindelia|4877441 +grindelia robusta|4877506 +grindelia squarrosa|4877587 +grinder|4877689 +grinding|4877905 +grinding wheel|4878006 +grindle|4878048 +grindstone|4878110 +gringo|4878146 +grinner|4878199 +grinning|4878269 +griot|4878339 +grip|4878382 +gripe|4878819 +grippe|4878959 +gripping|4879079 +gripsack|4879151 +gris|4879201 +grisaille|4879238 +griselinia|4879269 +griselinia littoralis|4879335 +griselinia lucida|4879406 +griseofulvin|4879467 +grisly|4879577 +grison|4879632 +grison vittatus|4879718 +grissino|4879820 +grist|4879861 +gristle|4879900 +gristly|4879941 +gristmill|4879986 +grit|4880018 +gritrock|4880146 +grits|4880189 +gritstone|4880325 +gritty|4880368 +grivet|4880532 +grizzle|4880592 +grizzled|4880716 +grizzly|4880750 +grizzly bear|4880965 +groan|4881087 +groaner|4881177 +groaning|4881247 +groat|4881299 +groats|4881329 +grocer|4881397 +grocery|4881435 +grocery bag|4881534 +grocery boy|4881587 +grocery list|4881643 +grocery store|4881713 +groenendael|4881780 +groenlandia|4881835 +grog|4881916 +grogginess|4881934 +groggy|4882107 +grogram|4882170 +groin|4882217 +groined vault|4882339 +grommet|4882368 +gromwell|4882448 +gromyko|4882512 +gronland|4882601 +groom|4882662 +groom-to-be|4882925 +groomed|4882963 +grooming|4883049 +groomsman|4883122 +groove|4883167 +grooved|4883343 +groover|4883413 +grooving|4883437 +groovy|4883481 +grope|4883634 +grope for|4883759 +groping|4883792 +gropius|4883838 +gros point|4883897 +gros ventre|4883943 +grosbeak|4884047 +groschen|4884081 +grosgrain|4884122 +gross|4884171 +gross anatomy|4884650 +gross domestic product|4884717 +gross estate|4884759 +gross margin|4884788 +gross national product|4884847 +gross out|4884889 +gross profit|4884980 +gross profit margin|4885085 +gross revenue|4885190 +gross sales|4885238 +gross ton|4885286 +grossbeak|4885335 +grossness|4885369 +grossulariaceae|4885448 +grosz|4885543 +grot|4885579 +grotesque|4885605 +grotesquely|4885720 +grotesqueness|4885752 +grotesquerie|4885809 +grotesquery|4885866 +grotto|4885923 +grotty|4885949 +grouch|4885977 +grouchily|4886125 +groucho|4886160 +grouchy|4886217 +ground|4886306 +ground almond|4888161 +ground attack|4888253 +ground bait|4888306 +ground ball|4888343 +ground bass|4888493 +ground beef|4888538 +ground beetle|4888580 +ground cable|4888625 +ground cedar|4888653 +ground cherry|4888797 +ground cloth|4888854 +ground control|4888921 +ground cover|4888966 +ground crew|4889150 +ground effect|4889212 +ground fir|4889257 +ground fire|4889353 +ground floor|4889386 +ground forces|4889475 +ground glass|4889555 +ground ivy|4889596 +ground level|4889713 +ground loop|4889808 +ground noise|4889859 +ground out|4889927 +ground pine|4889998 +ground pink|4890117 +ground plan|4890191 +ground rattler|4890223 +ground rent|4890297 +ground roller|4890323 +ground rose|4890353 +ground rule|4890395 +ground sloth|4890421 +ground snake|4890496 +ground squirrel|4890562 +ground state|4890688 +ground stroke|4890716 +ground substance|4890746 +ground swell|4890846 +ground tackle|4890919 +ground water|4890959 +ground wave|4891015 +ground zero|4891078 +ground-berry|4887518 +ground-controlled approach|4887835 +ground-effect machine|4887909 +ground-emplaced mine|4887957 +ground-floor|4888013 +ground-service crew|4888056 +ground-shaker|4888118 +groundball|4891153 +groundberry|4891222 +groundbreaker|4891459 +groundbreaking|4891544 +groundbreaking ceremony|4891670 +groundcover|4891756 +grounder|4891860 +groundfish|4891929 +groundhog|4891971 +groundhog day|4892021 +grounding|4892073 +groundkeeper|4892150 +groundless|4892206 +groundling|4892274 +groundmass|4892327 +groundnut|4892360 +groundnut oil|4892564 +groundnut vine|4892616 +grounds|4892722 +groundsel|4893513 +groundsel bush|4893554 +groundsel tree|4893660 +groundsheet|4893766 +groundskeeper|4893833 +groundsman|4893889 +groundspeed|4893945 +groundwater level|4893981 +groundwork|4894063 +group|4894261 +group a|4894474 +group ab|4894531 +group action|4894592 +group amentiferae|4894652 +group b|4894750 +group captain|4894807 +group centrospermae|4894851 +group discussion|4894955 +group dynamics|4895022 +group insurance|4895064 +group o|4895099 +group participation|4895156 +group practice|4895233 +group psychotherapy|4895274 +group pteridospermae|4895331 +group pteridospermaphyta|4895482 +group theory|4895637 +group therapy|4895676 +grouped|4895733 +grouper|4895768 +groupie|4895816 +grouping|4895856 +groupthink|4895938 +groupware|4895983 +grouse|4896052 +grouse whortleberry|4896377 +grouse-berry|4896197 +grouseberry|4896476 +grout|4896575 +grove|4896623 +grovel|4896697 +groveler|4896753 +groveling|4896865 +groveller|4896930 +grovelling|4897042 +grover cleveland|4897107 +groves|4897286 +grow|4897430 +grow over|4897736 +grow together|4897816 +grow up|4897852 +grower|4897890 +growing|4897974 +growing pains|4898190 +growing season|4898273 +growl|4898304 +growler|4898383 +growling|4898465 +grown|4898523 +grownup|4898586 +growth|4898715 +growth factor|4899275 +growth hormone|4899306 +growth hormone-releasing factor|4899462 +growth industry|4899546 +growth rate|4899580 +growth regulator|4899621 +growth ring|4899688 +growth stock|4899740 +growth-onset diabetes|4899014 +groyne|4899768 +grozny|4899836 +groznyy|4899896 +grub|4899957 +grub out|4900070 +grub street|4900120 +grub up|4900166 +grubbily|4900216 +grubbiness|4900250 +grubby|4900302 +grubstake|4900411 +grudge|4900457 +grudging|4900550 +gruel|4900651 +grueling|4900675 +gruelling|4900774 +gruesome|4900873 +gruesomeness|4900928 +gruff|4900995 +gruffness|4901110 +grugru|4901240 +grugru nut|4901316 +grugru palm|4901347 +gruidae|4901423 +gruiformes|4901475 +grumble|4901536 +grumbler|4901859 +grumbling|4901978 +grume|4902139 +grummet|4902171 +grumose|4902251 +grumous|4902311 +grump|4902371 +grumpily|4902454 +grumpiness|4902489 +grumpy|4902558 +grundyism|4902647 +grunge|4902713 +grungily|4902786 +grungy|4902820 +grunt|4902893 +grunt-hoot|4903013 +grunter|4903038 +grunting|4903149 +gruntle|4903193 +grus|4903352 +grus americana|4903429 +gruyere|4903497 +gryllidae|4903535 +gryphon|4903598 +gsa|4903658 +gspc|4903726 +gsr|4903869 +gu|4904037 +guacamole|4904084 +guacharo|4904107 +guadalajara|4904175 +guadalcanal|4904237 +guadalupe cypress|4904333 +guadalupe fur seal|4904423 +guadalupe island|4904483 +guadalupe mountains|4904533 +guadalupe mountains national park|4904662 +guadeloupe|4904753 +guaiac|4904791 +guaiac wood|4904834 +guaiacum|4904874 +guaiacum officinale|4904987 +guaiacum sanctum|4905083 +guaiacum wood|4905181 +guaira|4905221 +guaira falls|4905285 +guallatiri|4905355 +guam|4905394 +guama|4905423 +guan|4905456 +guanabana|4905500 +guanabenz|4905541 +guanaco|4905608 +guangdong|4905645 +guangdong province|4905718 +guangzhou|4905800 +guanine|4905890 +guano|4905916 +guano bat|4906034 +guanosine|4906136 +guantanamo|4906181 +guar|4906241 +guar gum|4906339 +guarani|4906361 +guarantee|4906490 +guaranteed|4906762 +guarantor|4906814 +guaranty|4906885 +guard|4906924 +guard boat|4907443 +guard dog|4907468 +guard duty|4907508 +guard hair|4907583 +guard of honor|4907608 +guard ship|4907651 +guard's van|4907385 +guardant|4907702 +guarded|4907746 +guardedly|4907847 +guardhouse|4907891 +guardian|4907949 +guardian angel|4908050 +guardian spirit|4908096 +guardianship|4908142 +guardrail|4908254 +guardroom|4908298 +guardsman|4908356 +guarneri|4908383 +guarnerius|4908528 +guarnieri|4908707 +guatemala|4908853 +guatemala city|4908953 +guatemalan|4909030 +guatemalan monetary unit|4909144 +guava|4909217 +guava bush|4909375 +guayaquil|4909439 +guayule|4909497 +gubbins|4909555 +gubernatorial|4909760 +guck|4909793 +gudgeon|4909861 +gudgeon pin|4909957 +guelder rose|4909992 +guenevere|4910113 +guenon|4910203 +guenon monkey|4910261 +guerdon|4910319 +guereza|4910343 +gueridon|4910399 +guerilla|4910423 +guerilla force|4910536 +guernsey|4910592 +guernsey elm|4910676 +guerrilla|4910807 +guerrilla force|4910919 +guerrilla theater|4910975 +guess|4911045 +guesser|4911476 +guessing|4911546 +guessing game|4911639 +guesstimate|4911667 +guesswork|4911784 +guest|4911877 +guest night|4912161 +guest of honor|4912203 +guest worker|4912241 +guesthouse|4912391 +guestimate|4912417 +guestroom|4912488 +guestworker|4912548 +guevara|4912617 +guevina|4912719 +guevina avellana|4912789 +guevina heterophylla|4912915 +guff|4913045 +guffaw|4913107 +guggenheim|4913202 +guggle|4913325 +guglielmo marconi|4913428 +gui|4913501 +guiana|4913568 +guiana highlands|4913663 +guib|4913724 +guidance|4913787 +guidance device|4913958 +guidance system|4914006 +guide|4914054 +guide dog|4914419 +guide fossil|4914465 +guide on|4914507 +guide rope|4914548 +guidebook|4914573 +guided|4914630 +guided bomb unit-28|4914685 +guided missile|4914777 +guided missile cruiser|4914809 +guided missile destroyer|4914849 +guided missile frigate|4914924 +guideline|4914964 +guidepost|4915124 +guiding|4915204 +guiding light|4915276 +guild|4915365 +guild socialism|4915422 +guilder|4915457 +guildhall|4915567 +guile|4915591 +guileful|4915852 +guileless|4915941 +guillain-barre syndrome|4916003 +guillaume apollinaire|4916134 +guillemot|4916240 +guilloche|4916263 +guillotine|4916305 +guilt|4916437 +guilt by association|4916594 +guilt feelings|4916641 +guilt pang|4916734 +guilt trip|4916771 +guilt-ridden|4916565 +guiltiness|4916864 +guiltless|4916907 +guiltlessness|4917097 +guilty|4917173 +guilty conscience|4917487 +guimpe|4917580 +guine-bissau|4917643 +guinea|4917767 +guinea corn|4918384 +guinea flower|4918478 +guinea fowl|4918529 +guinea gold|4918601 +guinea gold vine|4918670 +guinea grains|4918721 +guinea hen|4918850 +guinea pepper|4918921 +guinea pig|4919108 +guinea worm|4919219 +guinea worm disease|4919374 +guinea-bissau|4917971 +guinea-bissau monetary unit|4918096 +guinea-bissau peso|4918175 +guinea-hen flower|4918255 +guinean|4919462 +guinean franc|4919540 +guinean monetary unit|4919583 +guinevere|4919650 +guinness|4919740 +guise|4919864 +guiseppe fortunino francesco verdi|4919934 +guiseppe guarneri|4920043 +guitar|4920131 +guitar pick|4920167 +guitar player|4920211 +guitarfish|4920276 +guitarist|4920300 +gujarat|4920365 +gujarati|4920508 +gujerat|4920605 +gujerati|4920748 +gula|4920845 +gulag|4920927 +gulch|4921000 +gulden|4921027 +gulf|4921138 +gulf coast|4921227 +gulf of aden|4921292 +gulf of aegina|4921332 +gulf of akaba|4921397 +gulf of alaska|4921453 +gulf of antalya|4921497 +gulf of aqaba|4921543 +gulf of bothnia|4921599 +gulf of california|4921645 +gulf of carpenteria|4921711 +gulf of corinth|4921787 +gulf of finland|4921849 +gulf of guinea|4921895 +gulf of lepanto|4921939 +gulf of mexico|4922001 +gulf of ob|4922061 +gulf of oman|4922107 +gulf of riga|4922147 +gulf of saint lawrence|4922187 +gulf of siam|4922268 +gulf of sidra|4922325 +gulf of st. lawrence|4922367 +gulf of suez|4922446 +gulf of tehuantepec|4922486 +gulf of thailand|4922540 +gulf of venice|4922601 +gulf states|4922645 +gulf stream|4922841 +gulf war|4922888 +gulf war syndrome|4922986 +gulfweed|4923061 +gull|4923131 +gullet|4923392 +gullibility|4923499 +gullible|4923560 +gulliver|4923620 +gully|4923698 +gulo|4923725 +gulo gulo|4923768 +gulo luscus|4923851 +gulp|4923950 +gulper|4924203 +gulping|4924235 +gulu|4924409 +gulyas|4924457 +gum|4924504 +gum acacia|4924791 +gum accroides|4924826 +gum albanum|4924932 +gum ammoniac|4924966 +gum anime|4925001 +gum arabic|4925040 +gum ball|4925075 +gum benjamin|4925109 +gum benzoin|4925181 +gum boot|4925253 +gum butea|4925288 +gum dammar|4925344 +gum elastic|4925404 +gum elemi|4925462 +gum eurphorbium|4925497 +gum kino|4925537 +gum labdanum|4925573 +gum myrrh|4925614 +gum olibanum|4925685 +gum plant|4925738 +gum resin|4925805 +gum ridge|4925838 +gum sangapenum|4925917 +gum terpentine|4925956 +gum tree|4926001 +gum up|4926028 +gum-lac|4924770 +gumbo|4926094 +gumbo soil|4926324 +gumbo-limbo|4926273 +gumboil|4926360 +gumdrop|4926391 +gumma|4926414 +gummed|4926439 +gummed label|4926464 +gumminess|4926507 +gumming|4926610 +gummite|4926672 +gummosis|4926697 +gummy|4926765 +gumption|4926846 +gumptious|4927018 +gumshield|4927086 +gumshoe|4927148 +gumweed|4927267 +gumwood|4927334 +gun|4927360 +gun barrel|4927884 +gun carriage|4927923 +gun case|4927969 +gun chamber|4927992 +gun control|4928036 +gun deck|4928079 +gun dog|4928102 +gun down|4928144 +gun emplacement|4928176 +gun enclosure|4928233 +gun for hire|4928300 +gun moll|4928426 +gun muzzle|4928504 +gun rest|4928539 +gun room|4928584 +gun smoke|4928620 +gun trigger|4928650 +gun turret|4928685 +gun-sight|4927769 +gunboat|4928752 +gunboat diplomacy|4928774 +guncotton|4928850 +gunfight|4928938 +gunfire|4929001 +gunflint|4929040 +gung ho|4929064 +gunite|4929094 +gunk|4929128 +gunlock|4929196 +gunman|4929254 +gunmetal|4929404 +gunnar myrdal|4929429 +gunnel|4929518 +gunner|4929612 +gunnery|4929713 +gunnery sergeant|4929786 +gunny|4929821 +gunny sack|4929859 +gunnysack|4929985 +gunplay|4930030 +gunpoint|4930093 +gunpowder|4930135 +gunpowder plot|4930171 +gunrunner|4930227 +gunrunning|4930312 +gunshot|4930342 +gunsight|4930381 +gunslinger|4930415 +gunsmith|4930541 +gunstock|4930565 +gunter grass|4930668 +gunter wilhelm grass|4930744 +gunter's chain|4930623 +gunwale|4930828 +guomindang|4930873 +guppy|4930937 +gur|4930998 +gurgle|4931035 +gurkha|4931187 +gurnard|4931248 +gurney|4931294 +guru|4931320 +guru nanak|4931394 +gush|4931448 +gusher|4931662 +gushing|4931693 +gushy|4931811 +gusset|4931867 +gusset plate|4932050 +gusseted|4932099 +gussied|4932126 +gussied up|4932195 +gussy up|4932264 +gust|4932422 +gustative|4932479 +gustatorial|4932575 +gustatory|4932671 +gustatory cell|4932767 +gustatory organ|4932818 +gustatory perception|4932876 +gustatory sensation|4933021 +gustav hertz|4933166 +gustav klimt|4933245 +gustav ludwig hertz|4933294 +gustav mahler|4933380 +gustav robert kirchhoff|4933467 +gustav theodor fechner|4933560 +gustave courbet|4933633 +gustave flaubert|4933690 +gustavus|4933756 +gustavus adolphus|4933876 +gustavus franklin swift|4933960 +gustavus i|4934042 +gustavus ii|4934100 +gustavus v|4934178 +gusto|4934227 +gusty|4934287 +gut|4934340 +gutenberg|4934461 +guthrie|4934543 +gutierrezia|4934691 +gutierrezia microcephala|4934762 +gutierrezia sarothrae|4934863 +gutierrezia texana|4935017 +gutless|4935105 +gutlessness|4935140 +guts|4935173 +gutsiness|4935303 +gutsy|4935352 +gutta balata|4935466 +gutta-percha|4935380 +gutta-percha tree|4935406 +gutter|4935499 +gutter press|4935730 +guttersnipe|4935772 +guttiferae|4935814 +guttiferales|4935937 +guttle|4936003 +guttural|4936040 +guttural consonant|4936154 +guvnor|4936201 +guy|4936228 +guy cable|4936471 +guy de maupassant|4936517 +guy fawkes|4936623 +guy fawkes day|4936706 +guy fawkes night|4936756 +guy rope|4936824 +guyana|4936870 +guyana dollar|4936985 +guyanese|4937029 +guyot|4937131 +guzzle|4937155 +guzzler|4937184 +guzzling|4937252 +gwydion|4937316 +gwyn|4937354 +gwynn|4937386 +gybe|4937504 +gym|4937546 +gym mat|4937587 +gym rat|4937640 +gym shoe|4937687 +gym suit|4937730 +gymanstic exercise|4937784 +gymkhana|4937839 +gymnadenia|4937877 +gymnadenia conopsea|4937955 +gymnadenia odoratissima|4938046 +gymnadeniopsis|4938159 +gymnasium|4938249 +gymnast|4938358 +gymnastic|4938388 +gymnastic apparatus|4938455 +gymnastic exercise|4938526 +gymnastics|4938618 +gymnelis|4938673 +gymnelis viridis|4938726 +gymnocalycium|4938794 +gymnocarpium|4938877 +gymnocarpium dryopteris|4938942 +gymnocarpium robertianum|4939036 +gymnocladus|4939133 +gymnocladus dioica|4939202 +gymnogyps|4939289 +gymnogyps californianus|4939345 +gymnomycota|4939427 +gymnophiona|4939521 +gymnopilus|4939585 +gymnopilus spectabilis|4939646 +gymnopilus validipes|4939708 +gymnopilus ventricosus|4939766 +gymnorhina|4939828 +gymnorhina tibicen|4939887 +gymnosophical|4939983 +gymnosophist|4940084 +gymnosophy|4940118 +gymnosperm|4940217 +gymnosperm family|4940273 +gymnosperm genus|4940313 +gymnospermae|4940345 +gymnospermophyta|4940448 +gymnospermous|4940555 +gymnospermous tree|4940583 +gymnospermous yellowwood|4940616 +gymnosporangium|4940677 +gymnosporangium juniperi-virginianae|4940753 +gymnura|4940881 +gymslip|4940931 +gynaecological|4940954 +gynaecologist|4941030 +gynaecology|4941111 +gynaeolatry|4941170 +gynandromorph|4941253 +gynandromorphic|4941357 +gynandromorphous|4941411 +gynecologic|4941465 +gynecological|4941541 +gynecologist|4941617 +gynecology|4941698 +gynecomastia|4941757 +gyneolatry|4941821 +gynne|4941904 +gynobase|4942022 +gynoecium|4942051 +gynogenesis|4942082 +gynophobia|4942145 +gynophore|4942179 +gynostegium|4942209 +gynura|4942257 +gynura aurantiaca|4942313 +gyp|4942421 +gypaetus|4942658 +gypaetus barbatus|4942711 +gyps|4942814 +gyps fulvus|4942986 +gypsophila|4943061 +gypsophila paniculata|4943135 +gypsum|4943224 +gypsum board|4943248 +gypsy|4943293 +gypsy cab|4943408 +gypsy dancing|4943449 +gypsy moth|4943496 +gypsy rose lee|4943568 +gypsyweed|4943711 +gypsywort|4943787 +gyral|4943856 +gyrate|4943951 +gyration|4944044 +gyre|4944134 +gyrfalcon|4944205 +gyrinidae|4944258 +gyro|4944321 +gyro horizon|4944380 +gyrocompass|4944462 +gyromitra|4944491 +gyromitra brunnea|4944517 +gyromitra californica|4944591 +gyromitra esculenta|4944677 +gyromitra fastigiata|4944767 +gyromitra gigas|4944844 +gyromitra infula|4944895 +gyromitra sphaerospora|4944975 +gyroplane|4945063 +gyroscope|4945123 +gyroscopic|4945166 +gyrostabiliser|4945204 +gyrostabilizer|4945265 +gyrus|4945326 +gyrus cinguli|4945434 +gywn|4945490 +h|4945607 +h-bomb|4945904 +h-shaped|4945992 +h. g. wells|4946026 +h. h. munro|4946100 +h. j. eysenck|4946176 +h. l. mencken|4946267 +h. pylori|4946359 +h.m.s. bounty|4946424 +h.p.|4946473 +h2o|4946598 +ha|4946644 +ha'p'orth|4946687 +ha'penny|4946727 +ha-ha|4946760 +haart|4946849 +haastia|4946967 +haastia pulvinaris|4947026 +habacuc|4947123 +habakkuk|4947179 +habanera|4947260 +habeas corpus|4947343 +habenaria|4947439 +habenaria albiflora|4947514 +habenaria bifolia|4947635 +habenaria chlorantha|4947750 +habenaria dilatata|4947875 +habenaria elegans|4947974 +habenaria fimbriata|4948061 +habenaria greenei|4948184 +habenaria hookeri|4948273 +habenaria lacera|4948364 +habenaria leucophaea|4948508 +habenaria nivea|4948633 +habenaria orbiculata|4948717 +habenaria peramoena|4948817 +habenaria psycodes|4948946 +habenaria unalascensis|4949067 +haber|4949165 +haber process|4949288 +haber-bosch process|4949206 +haberdasher|4949364 +haberdashery|4949416 +haberdashery store|4949539 +habergeon|4949617 +habilimented|4949710 +habilitate|4949794 +habit|4949918 +habit-forming|4950144 +habitable|4950177 +habitat|4950225 +habitation|4950297 +habited|4950476 +habitual|4950506 +habitual abortion|4950634 +habitual criminal|4950705 +habitually|4950791 +habituate|4950820 +habituation|4950912 +habitude|4951030 +habitue|4951065 +habitus|4951116 +hablot knight browne|4951209 +habsburg|4951284 +hacek|4951372 +hachiman|4951420 +hachure|4951462 +hacienda|4951513 +hack|4951584 +hack driver|4952327 +hack on|4952504 +hack writer|4952544 +hack-driver|4952150 +hackamore|4952598 +hackberry|4952633 +hackbut|4952693 +hackee|4952750 +hackelia|4952841 +hacker|4952917 +hackle|4953157 +hackles|4953222 +hackmatack|4953299 +hackney|4953382 +hackney carriage|4953473 +hackney coach|4953543 +hackneyed|4953613 +hacksaw|4953726 +hackwork|4953757 +had best|4953793 +had crime|4953828 +hadal|4953876 +haddock|4953901 +hadean|4953974 +hadean aeon|4954120 +hadean eon|4954228 +hadean time|4954335 +hades|4954443 +hadith|4954596 +hadj|4954677 +hadji|4954745 +hadrian|4954779 +hadrian's wall|4954866 +hadron|4954910 +hadrosaur|4954986 +hadrosauridae|4955075 +hadrosaurus|4955148 +haecceity|4955237 +haeckel|4955377 +haem|4955462 +haemagglutinate|4955516 +haemagglutination|4955568 +haemal|4955626 +haemal arch|4955675 +haemangioma|4955712 +haemanthus|4955752 +haemanthus coccineus|4955821 +haematal|4955894 +haematemesis|4955943 +haematic|4956033 +haematinic|4956130 +haematite|4956206 +haematobia|4956243 +haematobia irritans|4956307 +haematocele|4956369 +haematochezia|4956450 +haematocoele|4956515 +haematocolpometra|4956596 +haematocolpos|4956655 +haematocrit|4956706 +haematocytopenia|4956867 +haematocyturia|4956919 +haematogenesis|4956978 +haematogenic|4957145 +haematohiston|4957267 +haematoidin|4957325 +haematological|4957382 +haematologist|4957458 +haematology|4957524 +haematolysis|4957583 +haematoma|4957644 +haematopodidae|4957698 +haematopoiesis|4957771 +haematopoietic|4957938 +haematopus|4958060 +haematoxylon|4958119 +haematoxylum|4958223 +haematoxylum campechianum|4958327 +haematuria|4958459 +haemic|4958497 +haemitin|4958594 +haemodialysis|4958648 +haemodoraceae|4958693 +haemodorum|4958800 +haemogenesis|4958878 +haemoglobin|4959045 +haemoglobinemia|4959105 +haemoglobinopathy|4959153 +haemoglobinuria|4959226 +haemolysin|4959274 +haemolysis|4959351 +haemolytic|4959412 +haemolytic anaemia|4959447 +haemophile|4959507 +haemophilia|4959607 +haemophilia a|4959706 +haemophilia b|4959840 +haemophiliac|4959949 +haemophilic|4960049 +haemopis|4960129 +haemopoiesis|4960182 +haemopoietic|4960349 +haemoproteid|4960471 +haemoproteidae|4960503 +haemoprotein|4960582 +haemoproteus|4960652 +haemoptysis|4960723 +haemorrhage|4960763 +haemorrhagic|4960828 +haemorrhagic fever|4960885 +haemorrhagic stroke|4961016 +haemorrhoid|4961141 +haemorrhoidectomy|4961192 +haemosiderin|4961309 +haemosiderosis|4961351 +haemosporidia|4961397 +haemosporidian|4961467 +haemostasia|4961501 +haemostasis|4961570 +haemostat|4961639 +haemothorax|4961687 +haemulidae|4961730 +haemulon|4961791 +haemulon album|4961844 +haemulon aurolineatum|4961897 +haemulon macrostomum|4961964 +haemulon malanurum|4962035 +haemulon parra|4962099 +hafnium|4962175 +haft|4962235 +haftarah|4962281 +haftorah|4962363 +hag|4962445 +hag-ridden|4962562 +hagada|4962691 +haganah|4962751 +hagberry|4962826 +hagberry tree|4962850 +hagbut|4962955 +hageman factor|4963012 +hagerstown|4963097 +hagfish|4963133 +haggada|4963206 +haggadah|4963267 +haggai|4963329 +haggard|4963408 +haggis|4963599 +haggle|4963620 +haggler|4963720 +haggling|4963747 +hagiographa|4963801 +hagiographer|4963911 +hagiographist|4963970 +hagiography|4964029 +hagiolatry|4964089 +hagiologist|4964146 +hagiology|4964205 +hagridden|4964259 +hahn|4964308 +hahnium|4964345 +haick|4964448 +haida|4964476 +haifa|4964574 +haik|4964629 +haiku|4964657 +hail|4964688 +hail mary|4965014 +hail-fellow|4964892 +hail-fellow-well-met|4964953 +haile selassie|4965060 +hailstone|4965138 +hailstorm|4965171 +haiphong|4965210 +hair|4965271 +hair ball|4965927 +hair care|4966056 +hair cell|4966205 +hair coloring|4966240 +hair curler|4966341 +hair drier|4966402 +hair dryer|4966486 +hair dye|4966570 +hair follicle|4966615 +hair gel|4966647 +hair grass|4966719 +hair grease|4966821 +hair mousse|4966910 +hair of the dog|4966982 +hair oil|4967013 +hair seal|4967102 +hair shirt|4967149 +hair slide|4967175 +hair space|4967200 +hair spray|4967231 +hair stroke|4967286 +hair style|4967316 +hair tonic|4967357 +hair trigger|4967446 +hair's-breadth|4965545 +hair-raiser|4965645 +hair-raising|4965696 +hair-shirt|4965753 +hair-shirted|4965791 +hair-tailed mole|4965829 +hair-trigger|4965894 +hairball|4967488 +hairbrush|4967536 +haircare|4967561 +haircloth|4967629 +haircut|4967683 +hairdo|4967758 +hairdresser|4967799 +hairdressing|4967886 +hairgrip|4968028 +hairiness|4968069 +hairless|4968113 +hairlessness|4968258 +hairlike|4968340 +hairline|4968373 +hairline fracture|4968425 +hairnet|4968486 +hairpiece|4968537 +hairpin|4968594 +hairpin bend|4968615 +hairsbreadth|4968648 +hairsplitter|4968748 +hairsplitting|4968805 +hairspring|4968895 +hairstreak|4968929 +hairstreak butterfly|4968998 +hairstylist|4969067 +hairtail|4969154 +hairweaving|4969227 +hairy|4969280 +hairy darling pea|4969655 +hairy finger grass|4969746 +hairy golden aster|4969846 +hairy honeysuckle|4969957 +hairy lip fern|4970013 +hairy root|4970088 +hairy spurge|4970119 +hairy tare|4970166 +hairy tongue|4970217 +hairy vetch|4970277 +hairy willowherb|4970328 +hairy wood mint|4970402 +hairy-legged vampire bat|4969574 +haiti|4970455 +haitian|4970550 +haitian capital|4970620 +haitian centime|4970693 +haitian creole|4970742 +haitian monetary unit|4970831 +haj|4970898 +haji|4970966 +hajj|4971000 +hajji|4971068 +hake|4971102 +hakea|4971147 +hakea laurina|4971211 +hakea leucoptera|4971291 +hakea lissosperma|4971380 +hakeem|4971471 +hakenkreuz|4971584 +hakham|4971664 +hakim|4971715 +hakka|4971904 +hakka dialect|4971947 +halacha|4971998 +halaka|4972058 +halakah|4972117 +halal|4972177 +halberd|4972224 +halberdier|4972246 +halchidhoma|4972272 +halcion|4972316 +halcyon|4972366 +haldane|4972523 +haldea|4972859 +haldea striatula|4972909 +haldol|4973018 +hale|4973212 +haleakala national park|4973502 +haleness|4973573 +halenia|4973625 +haler|4973695 +halesia|4973775 +halesia carolina|4973845 +halesia tetraptera|4973979 +halevy|4974115 +haley|4974203 +half|4974314 +half a dozen|4976718 +half binding|4976853 +half blood|4976907 +half boot|4976939 +half cross stitch|4977015 +half crown|4977055 +half dollar|4977080 +half door|4977123 +half dozen|4977180 +half eagle|4977231 +half gainer|4977256 +half hatchet|4977289 +half hitch|4977319 +half life|4977344 +half mask|4977488 +half mile|4977528 +half nelson|4977569 +half note|4977605 +half page|4977653 +half rest|4977677 +half sister|4977701 +half snipe|4977744 +half sole|4977800 +half step|4977824 +half title|4977878 +half track|4977917 +half volley|4978019 +half-and-half|4974470 +half-and-half dressing|4974520 +half-baked|4974576 +half-blooded|4974656 +half-bound|4974709 +half-bred|4974735 +half-breed|4974788 +half-brother|4974865 +half-caste|4974921 +half-century|4974953 +half-clothed|4975009 +half-cock|4975068 +half-crazed|4975136 +half-free morel|4975180 +half-hardy|4975243 +half-holiday|4975272 +half-hour|4975302 +half-hourly|4975355 +half-intensity|4975398 +half-length|4975457 +half-life|4975526 +half-light|4975670 +half-mast|4975728 +half-moon|4975762 +half-pay|4975832 +half-pint|4975888 +half-relief|4975939 +half-seas-over|4976040 +half-size|4976093 +half-slip|4976118 +half-term|4976171 +half-timber|4976207 +half-timbered|4976251 +half-time|4976295 +half-track|4976340 +half-tracked|4976381 +half-truth|4976422 +half-wit|4976477 +half-witted|4976603 +halfback|4978047 +halfbeak|4978090 +halfhearted|4978139 +halfpenny|4978184 +halfpennyworth|4978217 +halftime|4978257 +halftone|4978324 +halftone engraving|4978403 +halfway|4978465 +haliaeetus|4978562 +haliaeetus leucocephalus|4978621 +haliaeetus leucorhyphus|4978725 +haliaeetus pelagicus|4978806 +haliatus albicilla|4978908 +halibut|4979031 +halibut-liver oil|4979081 +halicoeres|4979119 +halicoeres bivittatus|4979178 +halicoeres radiatus|4979252 +halictidae|4979333 +halide|4979399 +halifax|4979420 +halimodendron|4979464 +halimodendron argenteum|4979539 +halimodendron halodendron|4979643 +haliotidae|4979749 +haliotis|4979813 +haliotis tuberculata|4979869 +halite|4979952 +halitosis|4980014 +halitus|4980052 +hall|4980087 +hall of fame|4980785 +hall of residence|4980837 +hall pass|4980917 +hall porter|4980956 +hall's honeysuckle|4980699 +hallah|4981039 +halle|4981094 +halle-an-der-saale|4981163 +hallel|4981245 +hallelujah|4981274 +halley|4981301 +halliard|4981385 +hallmark|4981416 +halloo|4981530 +hallow|4981676 +hallowe'en|4981726 +hallowed|4981786 +halloween|4981816 +hallowmas|4981875 +hallowmass|4981976 +hallstand|4982078 +hallucinate|4982147 +hallucinating|4982188 +hallucination|4982230 +hallucinatory|4982323 +hallucinogen|4982353 +hallucinogenic|4982517 +hallucinogenic drug|4982567 +hallucinosis|4982731 +hallux|4982786 +hallway|4982824 +halm|4982855 +halma|4982886 +halo|4982912 +halo blight|4983062 +halo spot|4983126 +haloalkane|4983176 +halobacter|4983226 +halobacteria|4983292 +halobacterium|4983358 +halocarbon|4983424 +halocarpus|4983461 +halocarpus bidwilli|4983526 +haloform|4983661 +halogen|4983703 +halogeton|4983735 +halogeton glomeratus|4983797 +halogeton souda|4983880 +halon|4983951 +haloperidol|4983993 +halophil|4984180 +halophile|4984270 +halophyte|4984360 +haloragaceae|4984407 +haloragidaceae|4984553 +halothane|4984701 +halt|4984826 +halter|4985146 +haltere|4985391 +halting|4985429 +haltingly|4985490 +halve|4985521 +halyard|4985552 +ham|4985583 +ham actor|4986006 +ham and eggs|4986072 +ham hock|4986099 +ham it up|4986121 +ham sandwich|4986187 +ham-fisted|4985790 +ham-handed|4985898 +hamadryad|4986218 +hamamelid dicot family|4986309 +hamamelid dicot genus|4986374 +hamamelidaceae|4986436 +hamamelidae|4986539 +hamamelidanthum|4986599 +hamamelidoxylon|4986693 +hamamelis|4986787 +hamamelis vernalis|4986844 +hamamelis virginiana|4986933 +hamamelites|4987029 +haman|4987111 +hamartia|4987161 +hamartoma|4987196 +hamas|4987222 +hamate|4987345 +hamate bone|4987428 +hamburg|4987511 +hamburg parsley|4987565 +hamburger|4987688 +hamburger bun|4987757 +hamburger roll|4987804 +hamburger steak|4987851 +hame|4987932 +hamelia|4987972 +hamelia erecta|4988000 +hamelia patens|4988103 +hamilton|4988206 +haminoea|4988571 +hamitic|4988627 +hamitic language|4988757 +hamito-semitic|4988896 +hamlet|4989032 +hammarskjold|4989160 +hammer|4989268 +hammer and sickle|4989531 +hammer in|4989574 +hammer nose|4989625 +hammer out|4989759 +hammer throw|4989817 +hammered|4989858 +hammerhead|4989880 +hammerhead shark|4990065 +hammering|4990108 +hammerlock|4990154 +hammerstein|4990179 +hammertoe|4990260 +hammett|4990283 +hamming|4990363 +hammock|4990428 +hammond organ|4990494 +hammurabi|4990591 +hammurapi|4990648 +hammy|4990705 +hamper|4990729 +hampshire|4990960 +hampshire down|4991054 +hampton|4991129 +hampton roads|4991191 +hamster|4991270 +hamstring|4991316 +hamstring tendon|4991434 +hamsun|4991483 +han|4991546 +han dynasty|4991583 +hancock|4991628 +hand|4991696 +hand and glove|4993410 +hand ax|4993461 +hand axe|4993497 +hand blower|4993533 +hand brake|4993617 +hand by a hair|4993683 +hand calculator|4993731 +hand cheese|4993805 +hand clapping|4993833 +hand cream|4993896 +hand down|4993941 +hand drill|4993968 +hand dye|4994009 +hand fern|4994031 +hand glass|4994074 +hand grenade|4994172 +hand in glove|4994202 +hand job|4994253 +hand line|4994332 +hand lotion|4994454 +hand luggage|4994482 +hand mirror|4994520 +hand mower|4994559 +hand organ|4994596 +hand out|4994696 +hand over|4994752 +hand pump|4994867 +hand puppet|4994891 +hand shovel|4994943 +hand throttle|4994981 +hand tool|4995010 +hand towel|4995034 +hand truck|4995071 +hand wear|4995128 +hand-build|4992259 +hand-crafted|4992408 +hand-down|4992511 +hand-held|4992547 +hand-held computer|4992654 +hand-held microcomputer|4992724 +hand-hewn|4992794 +hand-loomed|4992822 +hand-me-down|4992875 +hand-operated|4992926 +hand-pick|4992970 +hand-picked|4992994 +hand-schuller-christian disease|4993024 +hand-to-hand|4993138 +hand-to-hand struggle|4993166 +hand-to-mouth|4993242 +hand-wash|4993288 +handbag|4995279 +handball|4995327 +handball court|4995368 +handbarrow|4995398 +handbasin|4995442 +handbasket|4995509 +handbell|4995546 +handbill|4995580 +handbook|4995717 +handbow|4995812 +handbreadth|4995833 +handbuild|4995879 +handcar|4995947 +handcart|4996001 +handclap|4996057 +handclasp|4996107 +handcolour|4996185 +handcraft|4996275 +handcuff|4996356 +handcuffs|4996484 +handed|4996658 +handed-down|4996701 +handedness|4996747 +handel|4996798 +handelian|4996896 +handful|4996933 +handgrip|4997039 +handgun|4997084 +handheld|4997155 +handheld drill|4997182 +handhold|4997223 +handicap|4997251 +handicapped|4997543 +handicapped person|4997593 +handicapper|4997674 +handicraft|4997714 +handily|4997817 +handiness|4997863 +handing over|4997935 +handiwork|4997983 +handkerchief|4998051 +handle|4998126 +handle with kid gloves|4998455 +handle-bars|4998373 +handlebar|4998506 +handled|4998529 +handleless|4998554 +handler|4998585 +handless|4998667 +handline|4998791 +handling|4998832 +handling charge|4998950 +handling cost|4998994 +handlock|4999038 +handloom|4999131 +handmade|4999154 +handmaid|4999266 +handmaiden|4999382 +handoff|4999496 +handout|4999527 +handover|4999607 +handrail|4999654 +handrest|4999720 +hands|4999746 +hands down|5000454 +hands-down|5000368 +hands-off|5000393 +hands-on|5000429 +handsaw|5000481 +handsaw fish|5000518 +handsbreadth|5000573 +handset|5000619 +handsewn|5000683 +handshake|5000736 +handshaking|5000814 +handsome|5000892 +handsomeness|5001076 +handspike|5001116 +handspring|5001139 +handstamp|5001190 +handstand|5001258 +handstitched|5001296 +handwash|5001349 +handwear|5001390 +handwheel|5001460 +handwork|5001511 +handwoven|5001579 +handwrite|5001632 +handwriting|5001657 +handwriting expert|5001734 +handwritten|5001810 +handy|5001839 +handyman|5001982 +hang|5002084 +hang around|5002622 +hang back|5002742 +hang by a thread|5002828 +hang glide|5002876 +hang glider|5002918 +hang gliding|5002969 +hang in|5003033 +hang on|5003126 +hang out|5003312 +hang together|5003345 +hang up|5003405 +hang-up|5002548 +hangar|5003508 +hangar queen|5003567 +hangbird|5003614 +hangchow|5003729 +hangdog|5003794 +hanger|5003895 +hanger-on|5003933 +hanging|5003970 +hanging chad|5004140 +hanging fly|5004167 +hanging gardens of babylon|5004199 +hanging geranium|5004269 +hanging wall|5004358 +hangman|5004385 +hangman's halter|5004433 +hangman's rope|5004506 +hangnail|5004579 +hangout|5004624 +hangover|5004690 +hangzhou|5004812 +hangzhou bay|5004877 +hani|5004916 +hank|5004948 +hank aaron|5004993 +hank panky|5005075 +hank williams|5005227 +hanker|5005377 +hankering|5005416 +hankey|5005456 +hankie|5005531 +hanks|5005606 +hanky|5005739 +hanky panky|5005814 +hannah arendt|5005941 +hannibal|5006023 +hannover|5006105 +hannukah|5006174 +hanoi|5006353 +hanover|5006410 +hanoverian|5006578 +hanoverian line|5006742 +hans adolf krebs|5006860 +hans albrecht bethe|5006941 +hans arp|5007025 +hans bethe|5007093 +hans c. j. gram|5007168 +hans christian andersen|5007229 +hans christian oersted|5007309 +hans conrad julius reiter|5007382 +hans eysenck|5007465 +hans fischer|5007555 +hans geiger|5007606 +hans holbein|5007656 +hans jurgen eysenck|5007796 +hans zinsser|5007893 +hansard|5007951 +hanseatic league|5008009 +hansen's disease|5008089 +hansom|5008159 +hansom cab|5008208 +hanukah|5008257 +hanukkah|5008435 +hanuman|5008614 +hao|5008716 +haoma|5008754 +hap|5008798 +hapax legomenon|5008913 +haphazard|5008954 +haphazardly|5009051 +haphazardness|5009163 +haphtarah|5009243 +haphtorah|5009326 +hapless|5009409 +haploid|5009509 +haploidic|5009576 +haploidy|5009613 +haplopappus|5009641 +haplopappus acaulis|5009712 +haplopappus phyllocephalus|5009822 +haplopappus spinulosus|5009910 +haplosporidia|5009995 +haplosporidian|5010065 +haply|5010099 +happen|5010131 +happen upon|5010432 +happening|5010553 +happenstance|5010613 +happily|5010678 +happiness|5010754 +happy|5010820 +happy chance|5011315 +happy event|5011384 +happy hour|5011430 +happy-go-lucky|5011217 +hapsburg|5011467 +haptic|5011555 +haptic sensation|5011623 +haptically|5011750 +hara-kiri|5011779 +harakat al-jihad al-islami al-filastini|5011940 +harakat ul-jihad-i-islami|5012157 +harakiri|5012322 +harangue|5012402 +haranguer|5012466 +harare|5012543 +harass|5012613 +harassed|5012798 +harasser|5012856 +harassing fire|5012959 +harassment|5012995 +harbinger|5013080 +harbor|5013195 +harbor patrol|5013415 +harbor porpoise|5013445 +harbor seal|5013509 +harborage|5013590 +harbour|5013634 +harbourage|5013849 +hard|5013893 +hard beech|5016251 +hard candy|5016322 +hard cash|5016348 +hard cheese|5016395 +hard cider|5016456 +hard coal|5016536 +hard copy|5016587 +hard core|5016626 +hard currency|5016691 +hard disc|5016738 +hard disk|5016816 +hard drink|5016894 +hard drive|5017024 +hard drug|5017089 +hard fern|5017138 +hard hat|5017162 +hard knocks|5017272 +hard lead|5017352 +hard line|5017444 +hard liquor|5017487 +hard news|5017617 +hard palate|5017641 +hard put|5017670 +hard right|5017745 +hard roe|5017782 +hard roll|5017812 +hard rubber|5017852 +hard rush|5017934 +hard sauce|5017974 +hard sell|5018000 +hard shoulder|5018043 +hard solder|5018080 +hard steel|5018108 +hard surface|5018134 +hard tick|5018161 +hard time|5018192 +hard times|5018270 +hard to please|5018381 +hard up|5018510 +hard water|5018600 +hard wheat|5018630 +hard worker|5018727 +hard-and-fast|5014957 +hard-baked|5014998 +hard-bitten|5015025 +hard-boiled|5015075 +hard-boiled egg|5015174 +hard-core|5015222 +hard-fought|5015398 +hard-hitting|5015434 +hard-line|5015530 +hard-nosed|5015664 +hard-of-hearing|5015725 +hard-on|5015772 +hard-pressed|5015813 +hard-shell clam|5015888 +hard-shell crab|5016021 +hard-skinned puffball|5016051 +hard-to-please|5016122 +hardback|5018769 +hardbacked|5018854 +hardbake|5018910 +hardball|5018959 +hardboard|5019037 +hardbound|5019078 +hardcore|5019134 +hardcover|5019232 +harden|5019316 +hardenbergia|5019455 +hardenbergia comnptoniana|5019527 +hardened|5019621 +hardening|5019802 +hardening of the arteries|5019948 +hardfisted|5020091 +hardheaded|5020153 +hardheads|5020237 +hardhearted|5020312 +hardheartedness|5020423 +hardihood|5020488 +hardiness|5020536 +harding|5020585 +harding grass|5020748 +hardinggrass|5020943 +hardline|5021043 +hardliner|5021097 +hardly|5021144 +hardly a|5021202 +hardness|5021224 +hardpan|5021461 +hardscrabble|5021496 +hardship|5021573 +hardstem bulrush|5021765 +hardstemmed bulrush|5021832 +hardtack|5021899 +hardtop|5022006 +hardware|5022060 +hardware error|5022237 +hardware store|5022282 +hardwareman|5022329 +hardwood|5022392 +hardworking|5022431 +hardy|5022491 +hare|5022675 +hare and hounds|5022858 +hare krishna|5022900 +hare wallaby|5023085 +hare's-foot bristle fern|5022742 +hare's-foot fern|5022823 +harebell|5023144 +harebrained|5023319 +haredi|5023359 +hareem|5023418 +harefoot|5023481 +harelip|5023585 +harem|5023719 +hargeisa|5023782 +hargreaves|5023838 +haricot|5023916 +haricot vert|5023973 +haricots verts|5024033 +harijan|5024093 +harikari|5024162 +hark|5024242 +hark back|5024278 +harkat ul-ansar|5024701 +harkat ul-mujahedeen|5024900 +harkat-ul-jihad-e-islami|5024334 +harkat-ul-mujahidin|5024498 +harken|5025104 +harlan fiske stone|5025140 +harlean carpenter|5025213 +harlem|5025285 +harlem renaissance|5025322 +harlem river|5025389 +harlequin|5025432 +harlequin opal|5025584 +harlequin-snake|5025505 +harlequinade|5025613 +harley granville-barker|5025724 +harley street|5025932 +harlot|5025976 +harlotry|5026130 +harlow|5026181 +harlow shapley|5026242 +harm|5026322 +harmattan|5026517 +harmed|5026568 +harmful|5026592 +harmfully|5027299 +harmfulness|5027341 +harmless|5027460 +harmonic|5027732 +harmonic analysis|5027905 +harmonic law|5027958 +harmonic mean|5028045 +harmonic motion|5028084 +harmonic progression|5028143 +harmonica|5028203 +harmonical|5028271 +harmonics|5028354 +harmonious|5028414 +harmoniousness|5028678 +harmonisation|5028750 +harmonise|5028851 +harmonised|5029131 +harmoniser|5029214 +harmonium|5029354 +harmonizable|5029411 +harmonization|5029446 +harmonize|5029547 +harmonized|5029827 +harmonizer|5029910 +harmony|5030050 +harmsworth|5030217 +harness|5030333 +harness horse|5030549 +harness race|5030593 +harness racing|5030641 +harnessed|5030689 +harnessed antelope|5030719 +harold clayton lloyd|5030756 +harold clayton urey|5030869 +harold harefoot|5030943 +harold hart crane|5031054 +harold hirschsprung|5031121 +harold i|5031233 +harold ii|5031337 +harold kroto|5031419 +harold lloyd|5031508 +harold nicolson|5031613 +harold pinter|5031725 +harold urey|5031790 +harold w. kroto|5031856 +harp|5031948 +harp seal|5032126 +harper|5032203 +harpia|5032259 +harpia harpyja|5032306 +harpist|5032382 +harpo|5032438 +harpoon|5032491 +harpoon gun|5032570 +harpoon line|5032598 +harpoon log|5032625 +harpooneer|5032650 +harpooner|5032710 +harpsichord|5032770 +harpsichordist|5032815 +harpulla|5032871 +harpullia|5032921 +harpullia cupanioides|5032955 +harpullia pendula|5033027 +harpy|5033104 +harpy bat|5033341 +harpy eagle|5033420 +harquebus|5033481 +harridan|5033538 +harried|5033594 +harrier|5033652 +harrier eagle|5033752 +harriet beecher stowe|5033797 +harriet elizabeth beecher stowe|5033931 +harriet tubman|5034075 +harriet wilson|5034150 +harriman|5034210 +harris|5034399 +harris tweed|5034672 +harrisburg|5034713 +harrisia|5034782 +harrison|5034850 +harrod|5035350 +harrow|5035473 +harrowing|5035536 +harry|5035628 +harry bridges|5035818 +harry f. klinefelter|5035876 +harry fitch kleinfelter|5035998 +harry hotspur|5036123 +harry houdini|5036198 +harry lauder|5036291 +harry lillis crosby|5036411 +harry s truman|5036540 +harry sinclair lewis|5036697 +harry stack sullivan|5036783 +harry truman|5036877 +harsh|5037032 +harshen|5037179 +harshly|5037216 +harshness|5037252 +hart|5037487 +hart crane|5038035 +hart's-tongue|5037625 +hart's-tongue fern|5037806 +harte|5038095 +hartebeest|5038141 +hartford|5038170 +hartford fern|5038234 +hartley|5038317 +harum-scarum|5038368 +harvard|5038555 +harvard university|5038662 +harvery williams cushing|5038728 +harvest|5038835 +harvest fly|5039171 +harvest home|5039221 +harvest mite|5039279 +harvest moon|5039336 +harvest mouse|5039408 +harvest time|5039500 +harvest-lice|5039110 +harvester|5039550 +harvestfish|5039645 +harvesting|5039724 +harvestman|5039782 +harvey|5039854 +harvey cushing|5039952 +harvey wallbanger|5040049 +has-been|5040103 +haschisch|5040179 +hasdrubal|5040230 +hasek|5040293 +hash|5040343 +hash head|5040426 +hash house|5040450 +hash mark|5040507 +hash out|5040640 +hash over|5040695 +hasheesh|5040751 +hashemite kingdom of jordan|5040802 +hashimoto's disease|5040901 +hashish|5040989 +hashmark|5041040 +hasid|5041092 +hasidic|5041148 +hasidim|5041251 +hasidism|5041386 +haslet|5041461 +hasp|5041497 +hassam|5041542 +hassel|5041611 +hassid|5041653 +hassidic|5041710 +hassidim|5041814 +hassidism|5041950 +hassle|5042026 +hassock|5042317 +hastate|5042379 +hastate leaf|5042442 +haste|5042476 +hasten|5042626 +hastening|5042903 +hastily|5042927 +hastinapura|5042962 +hastiness|5043015 +hastings|5043118 +hasty|5043251 +hasty defence|5043344 +hasty defense|5043415 +hasty pudding|5043486 +hat|5043544 +hat shop|5043697 +hat trick|5043736 +hatband|5043761 +hatbox|5043798 +hatch|5043830 +hatchback|5044136 +hatcheck girl|5044208 +hatched|5044250 +hatchel|5044299 +hatchery|5044354 +hatchet|5044387 +hatchet job|5044452 +hatchet man|5044550 +hatching|5044656 +hatchling|5044760 +hatchway|5044795 +hate|5044872 +hate mail|5044923 +hated|5044952 +hateful|5045001 +hatefulness|5045150 +hatemonger|5045244 +hater|5045305 +hatful|5045373 +hatha yoga|5045633 +hathaway|5045658 +hatiora|5045718 +hatiora gaertneri|5045783 +hatless|5045873 +hatmaker|5045898 +hatoglobin|5045953 +hatpin|5045981 +hatrack|5046001 +hatred|5046042 +hatted|5046071 +hatter|5046103 +hatteras island|5046158 +hattiesburg|5046214 +hauberk|5046252 +haughtiness|5046350 +haughty|5046421 +haul|5046502 +haul away|5046636 +haul off|5046702 +haul up|5046768 +haulage|5046811 +hauler|5046851 +haulier|5046886 +hauling|5046921 +haulm|5046990 +haunch|5047021 +haunt|5047085 +haunted|5047240 +haunting|5047330 +hausa|5047387 +hausen|5047456 +hausmannite|5047518 +haussa|5047547 +haustorium|5047617 +hautbois|5047659 +hautboy|5047725 +haute couture|5047861 +haute cuisine|5047916 +haute-normandie|5047791 +hauteur|5047960 +havana|5048031 +havasupai|5048101 +have|5048164 +have a ball|5049038 +have a bun in the oven|5049096 +have a fit|5049189 +have a go|5049393 +have a go at it|5049455 +have a good time|5049698 +have a look|5049756 +have got|5049805 +have in mind|5049833 +have intercourse|5049924 +have it away|5050167 +have it coming|5050410 +have it off|5050448 +have kittens|5050691 +have on|5050895 +have sex|5050917 +have the best|5051160 +have words|5051239 +have young|5051459 +have-not|5048977 +havel|5051492 +havelock|5051579 +haven|5051612 +haverhill fever|5051676 +haversack|5051731 +haversian canal|5051800 +havoc|5051876 +haw|5051910 +haw-haw|5052020 +hawaii|5052107 +hawaii island|5052195 +hawaii standard time|5052246 +hawaii time|5052345 +hawaii volcanoes national park|5052435 +hawaiian|5052520 +hawaiian capital|5052643 +hawaiian dancing|5052732 +hawaiian guitar|5052801 +hawaiian honeycreeper|5052862 +hawaiian islands|5052934 +hawala|5053006 +hawfinch|5053054 +hawk|5053121 +hawk moth|5053617 +hawk nose|5053769 +hawk owl|5053809 +hawk's-beard|5053356 +hawk's-beards|5053415 +hawk-eyed|5053517 +hawkbill|5053881 +hawkbit|5053995 +hawker|5054035 +hawkeye state|5054156 +hawking|5054216 +hawkins|5054357 +hawkishness|5054498 +hawklike|5054567 +hawkmoth|5054598 +hawksbill|5054669 +hawksbill turtle|5054783 +hawkshaw|5054897 +hawkweed|5054972 +hawky|5055041 +hawkyns|5055072 +haworth|5055163 +hawse|5055225 +hawsehole|5055265 +hawsepipe|5055305 +hawser|5055345 +hawser bend|5055366 +hawthorn|5055392 +hawthorne|5055425 +hay|5055488 +hay bacillus|5055698 +hay bale|5055790 +hay conditioner|5055813 +hay fever|5055860 +hay-scented|5055508 +hay-scented fern|5055603 +hayastan|5055908 +haycock|5055990 +haydn|5056029 +hayek|5056110 +hayes|5056184 +hayfield|5056381 +hayfork|5056416 +haying|5056438 +haying time|5056525 +hayloft|5056573 +haym salomon|5056612 +haymaker|5056704 +haymaking|5056822 +hayrack|5056893 +hayrick|5056953 +hayrig|5056990 +hays|5057038 +hayseed|5057189 +haystack|5057253 +hayti|5057290 +haywire|5057335 +haywood|5057581 +hazan|5057669 +hazard|5057708 +hazard insurance|5058026 +hazardia|5058062 +hazardia cana|5058124 +hazardous|5058190 +hazardously|5058254 +hazardousness|5058297 +haze|5058340 +haze over|5058530 +hazel|5058610 +hazel alder|5058728 +hazel mouse|5058795 +hazel tree|5058850 +hazelnut|5058900 +hazelnut tree|5058984 +hazelwood|5059031 +haziness|5059093 +hazlitt|5059169 +hazmat|5059226 +hazy|5059264 +hb|5059363 +hcfc|5059426 +hcg|5059492 +hdl|5059638 +hdl cholesterol|5059710 +hdtv|5059775 +he|5059853 +he-goat|5060002 +he-huckleberry|5060056 +he-man|5060147 +head|5060193 +head ache|5062013 +head blight|5062122 +head cabbage|5062150 +head cabbage plant|5062283 +head cold|5062396 +head count|5062432 +head covering|5062549 +head crash|5062585 +head for the hills|5062611 +head game|5062763 +head gasket|5062843 +head gate|5062871 +head home|5062966 +head honcho|5063027 +head lettuce|5063164 +head lice|5063218 +head linesman|5063335 +head louse|5063376 +head nurse|5063434 +head of hair|5063486 +head of household|5063518 +head of state|5063564 +head off|5063617 +head over heels|5063741 +head register|5063826 +head restraint|5063879 +head rhyme|5063920 +head sea|5063994 +head shop|5064016 +head smut|5064046 +head start|5064105 +head teacher|5064149 +head tone|5064222 +head trip|5064275 +head up|5064350 +head voice|5064375 +head word|5064428 +head-in-the-clouds|5061672 +head-on|5061737 +head-shrinker|5061783 +head-to-head|5061891 +headache|5064523 +headache powder|5064623 +headband|5064713 +headboard|5064736 +headcheese|5064761 +headcount|5064789 +headcounter|5064825 +headdress|5064919 +headed|5064989 +header|5065100 +headfast|5065262 +headfirst|5065301 +headfish|5065352 +headful|5065426 +headgear|5065477 +headhunter|5065593 +heading|5065661 +headlamp|5065760 +headland|5065807 +headless|5065873 +headlight|5065970 +headlike|5066017 +headline|5066042 +headliner|5066183 +headlinese|5066235 +headlock|5066278 +headlong|5066301 +headman|5066407 +headmaster|5066501 +headmastership|5066586 +headmistress|5066619 +headmistressship|5066686 +headphone|5066721 +headpiece|5066792 +headpin|5066840 +headquarters|5066881 +headquarters staff|5067086 +headrace|5067120 +headrest|5067159 +headroom|5067212 +heads-up|5067312 +headsail|5067347 +headscarf|5067391 +headset|5067419 +headshake|5067464 +headshaking|5067525 +headship|5067586 +headshot|5067721 +headsman|5067802 +headspace|5067859 +headspring|5067898 +headstall|5067973 +headstand|5068007 +headstock|5068057 +headstone|5068084 +headstream|5068183 +headstrong|5068222 +headwaiter|5068289 +headwaters|5068385 +headway|5068442 +headwind|5068539 +headword|5068589 +heady|5068658 +heal|5068695 +heal all|5068827 +healed|5068963 +healer|5069000 +healing|5069033 +healing herb|5069170 +health|5069205 +health and human services|5069312 +health care|5069438 +health care delivery|5069602 +health care provider|5069693 +health check|5069786 +health club|5069894 +health code|5069971 +health facility|5070024 +health food|5070103 +health hazard|5070129 +health insurance|5070179 +health maintenance organization|5070215 +health problem|5070277 +health profession|5070345 +health professional|5070393 +health spa|5070486 +healthcare|5070563 +healthcare delivery|5070622 +healthcare facility|5070713 +healthful|5070792 +healthfulness|5071197 +healthier|5071234 +healthiness|5071739 +healthy|5071816 +heap|5072250 +heap up|5072712 +heaped|5072782 +heaped-up|5072836 +heaps|5072890 +hear|5073438 +hear out|5073659 +hearable|5073684 +heard|5073742 +hearer|5073766 +hearing|5073836 +hearing aid|5074101 +hearing disorder|5074184 +hearing dog|5074272 +hearing examiner|5074305 +hearing impairment|5074368 +hearing loss|5074456 +hearing officer|5074523 +hearing-impaired|5074054 +hearken|5074586 +hearsay|5074622 +hearsay evidence|5074695 +hearsay rule|5074730 +hearse|5074769 +hearst|5074818 +heart|5074895 +heart and soul|5075959 +heart attack|5076140 +heart block|5076200 +heart cherry|5076318 +heart condition|5076445 +heart disease|5076519 +heart failure|5076593 +heart line|5076683 +heart massage|5076779 +heart monitor|5076846 +heart murmur|5076893 +heart muscle|5076945 +heart of dixie|5077005 +heart pea|5077085 +heart rate|5077158 +heart rhythm|5077211 +heart specialist|5077274 +heart surgeon|5077357 +heart surgery|5077440 +heart urchin|5077536 +heart valve|5077569 +heart ventricle|5077625 +heart-healthy|5075445 +heart-leaf|5075478 +heart-leaved aster|5075680 +heart-lung machine|5075737 +heart-shaped|5075770 +heart-to-heart|5075830 +heart-whole|5075904 +heartache|5077668 +heartbeat|5077729 +heartbreak|5077931 +heartbreaking|5077992 +heartbroken|5078047 +heartburn|5078102 +heartburning|5078137 +hearted|5078201 +hearten|5078226 +heartening|5078277 +heartfelt|5078321 +hearth|5078368 +hearth money|5078522 +hearthrug|5078567 +hearthstone|5078607 +heartily|5078634 +heartiness|5078668 +heartland|5078715 +heartleaf|5078741 +heartleaf arnica|5078863 +heartleaf manzanita|5078930 +heartless|5078995 +heartlessness|5079096 +heartrending|5079161 +heartrot|5079216 +hearts|5079248 +heartsease|5079907 +heartseed|5080201 +heartsick|5080262 +heartsickness|5080344 +heartstrings|5080419 +heartthrob|5080475 +heartwarming|5080513 +heartwood|5080542 +hearty|5080574 +heat|5080726 +heat barrier|5081407 +heat content|5081467 +heat dissipation|5081529 +heat energy|5081594 +heat engine|5081627 +heat exchanger|5081655 +heat exhaustion|5081686 +heat flash|5081769 +heat hyperpyrexia|5081795 +heat lamp|5081873 +heat lightning|5081936 +heat of condensation|5081970 +heat of dissociation|5082035 +heat of formation|5082082 +heat of fusion|5082126 +heat of solidification|5082185 +heat of solution|5082252 +heat of sublimation|5082295 +heat of transformation|5082359 +heat of vaporisation|5082420 +heat of vaporization|5082506 +heat prostration|5082592 +heat pump|5082675 +heat rash|5082710 +heat ray|5082788 +heat shield|5082886 +heat sink|5082955 +heat unit|5082989 +heat up|5083055 +heat wave|5083192 +heat-absorbing|5081222 +heat-releasing|5081297 +heat-seeking missile|5081369 +heatable|5083216 +heated|5083238 +heated up|5083290 +heatedly|5083331 +heater|5083354 +heath|5083435 +heath aster|5083501 +heath family|5083572 +heath hen|5083668 +heath pea|5083794 +heath violet|5083879 +heathen|5083932 +heathenish|5084034 +heathenism|5084087 +heather|5084163 +heather bell|5084283 +heather mixture|5084367 +heathfowl|5084432 +heathland|5084501 +heathlike|5084549 +heating|5084578 +heating element|5084706 +heating oil|5084761 +heating pad|5084800 +heating plant|5084843 +heating system|5084902 +heatless|5084961 +heatstroke|5084984 +heaume|5085062 +heave|5085085 +heave up|5085496 +heaven|5085538 +heaven-sent|5085658 +heavenly|5085713 +heavenly body|5086035 +heavenly city|5086088 +heavenly jewel|5086169 +heavens|5086231 +heavenward|5086440 +heavenwardly|5086502 +heavenwards|5086546 +heaver|5086590 +heaves|5086652 +heavier-than-air|5086924 +heavier-than-air craft|5086956 +heavily|5086997 +heavily traveled|5087068 +heaviness|5087103 +heaving|5087177 +heaviside|5087377 +heaviside layer|5087453 +heavy|5087548 +heavy cream|5089087 +heavy hitter|5089114 +heavy hydrogen|5089182 +heavy lifting|5089238 +heavy metal|5089266 +heavy particle|5089399 +heavy spar|5089445 +heavy swell|5089504 +heavy water|5089559 +heavy weapon|5089606 +heavy whipping cream|5089660 +heavy-armed|5088698 +heavy-coated|5088726 +heavy-duty|5088761 +heavy-footed|5088809 +heavy-handed|5088870 +heavy-laden|5089007 +heavyhearted|5089709 +heavyheartedness|5089735 +heavyset|5089772 +heavyweight|5089824 +hebbel|5090055 +hebdomad|5090143 +hebdomadal|5090200 +hebdomadally|5090265 +hebdomadary|5090314 +hebe|5090379 +hebei|5090410 +hebei province|5090473 +hebephrenia|5090545 +hebephrenic|5090729 +hebephrenic schizophrenia|5090771 +hebetude|5090955 +hebraic|5091005 +hebraic alphabet|5091161 +hebraical|5091243 +hebraism|5091401 +hebraist|5091467 +hebrew|5091524 +hebrew alphabet|5091805 +hebrew calendar|5091886 +hebrew lesson|5091962 +hebrew script|5092015 +hebrew scripture|5092094 +hebrews|5092211 +hebridean|5092450 +hebridean islands|5092490 +hebridean isles|5092602 +hebrides|5092712 +hecate|5092815 +hecatomb|5092850 +hecht|5092893 +heck|5092938 +heckelphone|5092962 +heckle|5093017 +heckler|5093115 +heckling|5093200 +hectare|5093263 +hectic|5093305 +hectically|5093339 +hectogram|5093369 +hectograph|5093422 +hectoliter|5093542 +hectolitre|5093597 +hectometer|5093652 +hectometre|5093705 +hector|5093758 +hector berlioz|5093882 +hector hevodidbon|5093959 +hector hugh munro|5094139 +hedeoma|5094221 +hedeoma oil|5094280 +hedeoma pulegioides|5094320 +hedera|5094422 +hedera helix|5094476 +hedge|5094543 +hedge bindweed|5094813 +hedge fund|5094902 +hedge garlic|5095070 +hedge in|5095185 +hedge maple|5095233 +hedge mustard|5095287 +hedge nettle|5095354 +hedge pink|5095475 +hedge sparrow|5095560 +hedge thorn|5095627 +hedge trimmer|5095685 +hedge violet|5095730 +hedged|5095809 +hedgefund|5095849 +hedgehog|5095936 +hedgehog cactus|5096053 +hedgehog cereus|5096105 +hedgehop|5096137 +hedger|5096181 +hedgerow|5096281 +hedging|5096319 +hediondilla|5096396 +hedjaz|5096468 +hedonic|5096575 +hedonism|5096623 +hedonist|5096710 +hedonistic|5096755 +hedysarum|5096803 +hedysarum boreale|5096866 +hedysarum coronarium|5096942 +hee-haw|5097037 +heebie-jeebies|5097135 +heed|5097204 +heedful|5097300 +heedfully|5097402 +heedfulness|5097442 +heedless|5097489 +heedlessly|5097612 +heedlessness|5097642 +heel|5097793 +heelbone|5098211 +heels over head|5098265 +heft|5098350 +heft up|5098490 +heftiness|5098532 +hefty|5098616 +hegari|5098752 +hegel|5098782 +hegelian|5098845 +hegemony|5098883 +hegira|5098937 +heidegger|5099016 +heidelberg man|5099074 +heifer|5099161 +height|5099189 +heighten|5099365 +heightening|5099585 +heights|5099619 +heilong jiang|5099865 +heimdal|5099924 +heimdall|5099980 +heimdallr|5100037 +heimlich maneuver|5100095 +heimlich manoeuvere|5100180 +heinlein|5100267 +heinous|5100349 +heinously|5100418 +heinousness|5100448 +heinrich boll|5100540 +heinrich engelhard steinway|5100618 +heinrich hertz|5100744 +heinrich himmler|5100822 +heinrich rudolph hertz|5100890 +heinrich schliemann|5100976 +heinrich theodor boll|5101063 +heinrich von kleist|5101149 +heinz|5101260 +heir|5101312 +heir apparent|5101448 +heir presumptive|5101494 +heir-at-law|5101404 +heiress|5101543 +heirloom|5101606 +heisenberg|5101700 +heist|5101772 +heitor villa-lobos|5101889 +hejaz|5101957 +hejira|5102063 +hel|5102142 +hela|5102275 +held|5102310 +held dear|5102339 +held up|5102379 +helen|5102404 +helen adams keller|5102454 +helen hayes|5102544 +helen hunt jackson|5102591 +helen keller|5102691 +helen laura sumner woodbury|5102775 +helen maria fiske hunt jackson|5102875 +helen newington wills|5102987 +helen of troy|5103090 +helen porter mitchell|5103148 +helen traubel|5103255 +helen wills|5103308 +helen wills moody|5103401 +helena|5103500 +helenium|5103556 +helenium autumnale|5103618 +helenium hoopesii|5103694 +helenium puberulum|5103777 +heleodytes|5103843 +heliac|5103940 +heliacal|5103969 +heliamphora|5103998 +helianthemum|5104080 +helianthemum canadense|5104130 +helianthemum scoparium|5104270 +helianthus|5104365 +helianthus angustifolius|5104402 +helianthus annuus|5104498 +helianthus giganteus|5104589 +helianthus laetiflorus|5104706 +helianthus maximilianii|5104798 +helianthus petiolaris|5104899 +helianthus tuberosus|5104991 +helical|5105121 +helichrysum|5105203 +helichrysum bracteatum|5105274 +helichrysum secundiflorum|5105410 +helicidae|5105547 +helicon|5105608 +helicopter|5105661 +helicteres|5105733 +helicteres isora|5105803 +heliobacter|5105879 +heliobacter pylori|5105945 +heliocentric|5106019 +heliocentric parallax|5106065 +heliogram|5106121 +heliograph|5106148 +heliogravure|5106223 +heliolatry|5106272 +heliopause|5106312 +heliophila|5106354 +heliopsis|5106381 +helios|5106429 +heliosphere|5106464 +heliotherapy|5106497 +heliothis|5106538 +heliothis moth|5106599 +heliothis zia|5106669 +heliotrope|5106855 +heliotropism|5106907 +heliotype|5106937 +heliozoa|5107035 +heliozoan|5107117 +heliport|5107146 +helipterum|5107191 +helipterum manglesii|5107259 +helium|5107394 +helium group|5107482 +helix|5107511 +helix angle|5107646 +helix aspersa|5107673 +helix hortensis|5107735 +helix pomatia|5107789 +hell|5107845 +hell dust|5108628 +hell on earth|5108702 +hell raising|5108778 +hell to pay|5108824 +hell's half acre|5108282 +hell's kitchen|5108354 +hell-bent|5108424 +hell-kite|5108452 +hell-rooster|5108540 +helladic civilisation|5108871 +helladic civilization|5108997 +helladic culture|5109123 +hellbender|5109244 +hellcat|5109314 +hellebore|5109379 +helleborine|5109454 +helleborus|5109588 +helleborus foetidus|5109658 +helleborus niger|5109759 +helleborus orientalis|5109855 +helleborus viridis|5109946 +hellene|5110019 +hellenic|5110059 +hellenic language|5110333 +hellenic republic|5110443 +hellenism|5110543 +hellenistic|5110582 +hellenistical|5110647 +heller|5110714 +helleri|5110915 +hellespont|5110984 +hellfire|5111040 +hellgrammiate|5111130 +hellhole|5111166 +hellhound|5111242 +hellion|5111371 +hellish|5111460 +hellishly|5111586 +hellman|5111615 +hello|5111677 +helm|5111741 +helmet|5111816 +helmet flower|5111922 +helmet orchid|5112054 +helmeted|5112159 +helmetflower|5112193 +helmholtz|5112312 +helminth|5112470 +helminthiasis|5112508 +helminthic|5112543 +helminthostachys|5112704 +helminthostachys zeylanica|5112781 +helmsman|5112864 +helmut heinrich waldemar schmidt|5112963 +helmut schmidt|5113093 +heloderma|5113205 +heloderma horridum|5113264 +heloderma suspectum|5113363 +helodermatidae|5113441 +heloise|5113517 +helot|5113574 +helotiaceae|5113609 +helotiales|5113675 +helotium|5113736 +help|5113791 +help desk|5114249 +help oneself|5114366 +help out|5114409 +helpdesk|5114443 +helper|5114479 +helper cell|5114557 +helper t cell|5114632 +helpful|5114721 +helpfulness|5115078 +helping|5115149 +helping hand|5115232 +helpless|5115286 +helplessly|5115371 +helplessness|5115416 +helpmate|5115551 +helpmeet|5115625 +helsingfors|5115699 +helsinki|5115798 +helter-skelter|5115894 +helve|5115999 +helvella|5116045 +helvella acetabulum|5116075 +helvella crispa|5116133 +helvella sulcata|5116198 +helvellaceae|5116265 +helvetica|5116334 +helwingia|5116399 +helxine|5116462 +helxine soleirolia|5116560 +hem|5116678 +hem and haw|5116777 +hem in|5116813 +hemachatus|5116910 +hemachatus haemachatus|5116972 +hemagglutinate|5117080 +hemagglutination|5117132 +hemal|5117190 +hemal arch|5117239 +hemangioma|5117276 +hemangioma simplex|5117316 +hematal|5117387 +hematemesis|5117436 +hematic|5117526 +hematin|5117623 +hematinic|5117677 +hematite|5117753 +hematocele|5117790 +hematochezia|5117871 +hematochrome|5117936 +hematocoele|5118008 +hematocolpometra|5118089 +hematocolpos|5118148 +hematocrit|5118199 +hematocyst|5118361 +hematocytopenia|5118414 +hematocyturia|5118466 +hematogenesis|5118525 +hematogenic|5118692 +hematohiston|5118814 +hematoidin|5118872 +hematologic|5118929 +hematological|5119005 +hematologist|5119081 +hematology|5119147 +hematolysis|5119206 +hematoma|5119267 +hematopoeitic stem cell|5119321 +hematopoiesis|5119364 +hematopoietic|5119531 +hematuria|5119653 +heme|5119691 +hemeralopia|5119745 +hemerobiid|5119842 +hemerobiid fly|5119914 +hemerobiidae|5119986 +hemerocallidaceae|5120058 +hemerocallis|5120150 +hemerocallis flava|5120225 +hemerocallis lilio-asphodelus|5120330 +hemiacetal|5120446 +hemianopia|5120483 +hemianopic scotoma|5120577 +hemianopsia|5120613 +hemiascomycetes|5120707 +hemic|5120776 +hemicrania|5120873 +hemicycle|5120954 +hemidemisemiquaver|5121020 +hemiepiphyte|5121089 +hemigalus|5121169 +hemigalus hardwickii|5121227 +hemigrammus|5121312 +hemimetabola|5121374 +hemimetabolic|5121450 +hemimetabolism|5121533 +hemimetabolous|5121613 +hemimetaboly|5121696 +hemimetamorphic|5121776 +hemimetamorphosis|5121859 +hemimetamorphous|5121939 +hemimorphite|5122022 +hemin|5122061 +heming|5122096 +hemingway|5122197 +hemingwayesque|5122257 +hemiparasite|5122309 +hemiparasitic|5122347 +hemiplegia|5122385 +hemiplegic|5122442 +hemipode|5122481 +hemiprocnidae|5122557 +hemiptera|5122627 +hemipteran|5122685 +hemipteron|5122746 +hemipteronatus|5122807 +hemipteronatus novacula|5122878 +hemipterous insect|5122974 +hemiramphidae|5123035 +hemisphere|5123105 +hemispheric|5123258 +hemispherical|5123295 +hemitripterus|5123327 +hemitripterus americanus|5123395 +hemizygos vein|5123472 +hemizygous vein|5123557 +hemline|5123642 +hemlock|5123664 +hemlock tree|5123872 +hemlock water dropwort|5123926 +hemming-stitch|5124006 +hemminge|5124037 +hemochromatosis|5124140 +hemodialysis|5124227 +hemodialyzer|5124272 +hemofil|5124338 +hemogenesis|5124504 +hemoglobin|5124671 +hemoglobinemia|5124731 +hemoglobinopathy|5124779 +hemoglobinuria|5124852 +hemolysin|5124900 +hemolysis|5124977 +hemolytic|5125038 +hemolytic anemia|5125073 +hemophile|5125133 +hemophilia|5125233 +hemophilia a|5125332 +hemophilia b|5125465 +hemophiliac|5125573 +hemophilic|5125673 +hemopoiesis|5125753 +hemopoietic|5125920 +hemoprotein|5126042 +hemoptysis|5126112 +hemorrhage|5126152 +hemorrhagic|5126271 +hemorrhagic cyst|5126328 +hemorrhagic fever|5126381 +hemorrhagic septicemia|5126512 +hemorrhagic stroke|5126574 +hemorrhoid|5126699 +hemorrhoidal vein|5126750 +hemorrhoidectomy|5126833 +hemosiderin|5126950 +hemosiderosis|5126992 +hemostasia|5127038 +hemostasis|5127107 +hemostat|5127176 +hemostatic|5127224 +hemothorax|5127263 +hemp|5127306 +hemp agrimony|5127437 +hemp family|5127504 +hemp nettle|5127593 +hemp willow|5127667 +hempen|5127736 +hempen necktie|5127766 +hemstitch|5127839 +hemstitching|5127944 +hen|5127983 +hen harrier|5128320 +hen hawk|5128392 +hen of the woods|5128428 +hen party|5128596 +hen yard|5128621 +hen-of-the-woods|5128081 +hen-peck|5128249 +henbane|5128678 +henbit|5128768 +hence|5128816 +henceforth|5128852 +henceforward|5128884 +henchman|5128916 +hencoop|5128996 +hendiadys|5129054 +hendrik antoon lorentz|5129091 +hendrik frensch verwoerd|5129164 +hendrik petrus berlage|5129281 +hendrik verwoerd|5129363 +hendrix|5129472 +henhouse|5129557 +henna|5129615 +henpecked|5129691 +henri becquerel|5129731 +henri bergson|5129816 +henri clemens van de velde|5129893 +henri emile benoit matisse|5130007 +henri labrouste|5130100 +henri louis bergson|5130170 +henri matisse|5130253 +henri rene albert guy de maupassant|5130333 +henri rousseau|5130457 +henri toulouse-lautrec|5130534 +henri van de velde|5130614 +henriette rosine bernard|5130720 +henrik ibsen|5130813 +henrik johan ibsen|5130899 +henroost|5130991 +henry|5131015 +henry alfred kissinger|5131285 +henry beauclerc|5131387 +henry bolingbroke|5131474 +henry cavendish|5131578 +henry clay|5131647 +henry clay frick|5131746 +henry david thoreau|5131809 +henry engelhard steinway|5131880 +henry fielding|5132003 +henry fonda|5132065 +henry ford|5132147 +henry ford ii|5132197 +henry graham greene|5132253 +henry hobson richardson|5132337 +henry hubert turner|5132424 +henry hudson|5132496 +henry i|5132548 +henry ii|5132627 +henry iii|5132723 +henry iv|5132822 +henry james|5132917 +henry john heinz|5132970 +henry kenneth alfred russell|5133033 +henry kissinger|5133167 +henry laurens|5133262 +henry le chatelier|5133337 +henry lee|5133405 +henry louis aaron|5133467 +henry louis gehrig|5133556 +henry louis mencken|5133648 +henry luce|5133746 +henry m. robert|5133812 +henry m. stanley|5133896 +henry martyn robert|5134017 +henry miller|5134105 +henry moore|5134184 +henry morgan|5134283 +henry norris russell|5134380 +henry oscar houghton|5134486 +henry purcell|5134556 +henry robinson luce|5134619 +henry rowe schoolcraft|5134694 +henry russell|5134803 +henry spencer moore|5134902 +henry steinway|5135009 +henry sweet|5135122 +henry tudor|5135173 +henry v|5135254 +henry valentine miller|5135317 +henry vi|5135406 +henry vii|5135471 +henry viii|5135550 +henry villard|5135619 +henry wadsworth longfellow|5135691 +henry ward beecher|5135770 +henry watson fowler|5135890 +henry wheeler shaw|5135973 +henry's law|5131234 +henson|5136058 +hep|5136102 +hepadnavirus|5136135 +heparin|5136170 +hepatic|5136282 +hepatic artery|5136320 +hepatic coma|5136398 +hepatic duct|5136438 +hepatic lobe|5136495 +hepatic portal vein|5136522 +hepatic tanager|5136612 +hepatic vein|5136668 +hepatica|5136734 +hepaticae|5136823 +hepaticopsida|5136908 +hepatitis|5136997 +hepatitis a|5137049 +hepatitis a virus|5137119 +hepatitis b|5137176 +hepatitis c|5137241 +hepatitis delta|5137290 +hepatocarcinoma|5137341 +hepatocellular carcinoma|5137429 +hepatoflavin|5137517 +hepatojugular reflux|5137661 +hepatolenticular degeneration|5137698 +hepatoma|5137918 +hepatomegaly|5138006 +hepatotoxic|5138084 +hepatotoxin|5138111 +hepburn|5138138 +hephaestus|5138216 +hephaistos|5138270 +heptad|5138324 +heptadecanoic acid|5138380 +heptagon|5138443 +heptane|5138485 +hepworth|5138547 +hera|5138653 +heracles|5138689 +heracleum|5138757 +heracleum sphondylium|5138820 +heraclitus|5138915 +herakles|5138958 +herald|5139026 +heralded|5139245 +heraldic|5139285 +heraldic bearing|5139354 +heraldist|5139421 +heraldry|5139455 +herat|5139512 +herb|5139562 +herb bennet|5139687 +herb christopher|5139760 +herb doctor|5139836 +herb garden|5139884 +herb mercury|5139912 +herb of grace|5140003 +herb paris|5140068 +herb robert|5140139 +herb roberts|5140231 +herb simon|5140400 +herb tea|5140517 +herba impia|5140550 +herbaceous|5140615 +herbaceous plant|5140644 +herbage|5140703 +herbal|5140752 +herbal medicine|5140826 +herbal tea|5140925 +herbal therapy|5140958 +herbalist|5141022 +herbart|5141070 +herbert|5141132 +herbert a. simon|5141181 +herbert alexander simon|5141304 +herbert blythe|5141434 +herbert clark hoover|5141544 +herbert george wells|5141715 +herbert hoover|5141798 +herbert kitchener|5141963 +herbert marcuse|5142091 +herbert marshall mcluhan|5142152 +herbert marx|5142250 +herbert mclean evans|5142311 +herbert spencer|5142378 +herbicide|5142451 +herbivore|5142502 +herbivorous|5142569 +herbs mercury|5142765 +herbs robert|5142931 +herculaneum|5143100 +herculean|5143162 +hercules|5143233 +hercules'-club|5143331 +hercules'-clubs|5143532 +hercules-club|5143825 +herd|5143932 +herd's grass|5144085 +herder|5144137 +herding|5144249 +herdsman|5144293 +here|5144351 +here and now|5144431 +hereabout|5144492 +hereabouts|5144521 +hereafter|5144550 +hereby|5144671 +herediatry spinal ataxia|5144695 +hereditament|5144787 +hereditarianism|5144857 +hereditary|5144926 +hereditary cerebellar ataxia|5145086 +hereditary condition|5145162 +hereditary disease|5145343 +hereditary motor and sensory neuropathy|5145524 +hereditary pattern|5145612 +heredity|5145679 +hereford|5145766 +hereinafter|5145820 +hereness|5145860 +heresy|5145887 +heretic|5145976 +heretical|5146085 +heretofore|5146135 +hereunder|5146218 +herewith|5146258 +heritable|5146282 +heritage|5146459 +heritiera|5146609 +heritiera littoralis|5146702 +heritiera macrophylla|5146807 +heritiera trifoliolata|5146913 +heritor|5147086 +herm|5147137 +herman|5147158 +herman hollerith|5147250 +herman melville|5147333 +herman northrop frye|5147397 +herman wouk|5147483 +hermann|5147535 +hermann goering|5147587 +hermann goring|5147698 +hermann hesse|5147808 +hermann joseph muller|5147865 +hermann ludwig ferdinand von helmholtz|5147936 +hermann maurice saxe|5148123 +hermann minkowski|5148244 +hermann snellen|5148313 +hermann von helmholtz|5148397 +hermann wilhelm goring|5148567 +hermannia|5148685 +hermannia verticillata|5148752 +hermaphrodism|5148862 +hermaphrodite|5148994 +hermaphrodite brig|5149132 +hermaphroditic|5149199 +hermaphroditism|5149268 +hermaphroditus|5149450 +hermeneutic|5149501 +hermeneutics|5149539 +hermes|5149579 +hermetic|5149614 +hermissenda|5149638 +hermissenda crassicornis|5149703 +hermit|5149782 +hermit crab|5149892 +hermit thrush|5149940 +hermitage|5149989 +hermitic|5150063 +hermitical|5150133 +hermosillo|5150203 +hernan cortes|5150263 +hernan cortez|5150373 +hernando cortes|5150483 +hernando cortez|5150595 +hernaria|5150707 +hernaria glabra|5150775 +hernia|5150853 +herniated disc|5150888 +herniation|5150962 +hero|5150997 +hero of alexandria|5151477 +hero sandwich|5151579 +hero worship|5151736 +hero worshiper|5151776 +hero worshipper|5151837 +hero-worship|5151418 +herod|5151898 +herod the great|5151953 +herodotus|5152018 +heroic|5152073 +heroic couplet|5152291 +heroic meter|5152323 +heroic poem|5152397 +heroic poetry|5152454 +heroic stanza|5152508 +heroic tale|5152540 +heroic verse|5152583 +heroica puebla de zaragoza|5152657 +heroical|5152775 +heroics|5152805 +heroin|5152931 +heroin addict|5152981 +heroin addiction|5153029 +heroine|5153083 +heroism|5153170 +heron|5153272 +heron's bill|5153386 +heronry|5153428 +herpangia|5153453 +herpes|5153504 +herpes encephalitis|5153572 +herpes genitalis|5153697 +herpes labialis|5153860 +herpes simplex|5153936 +herpes simplex 1|5154015 +herpes simplex 2|5154087 +herpes simplex encephalitis|5154159 +herpes simplex virus|5154284 +herpes varicella zoster|5154349 +herpes varicella zoster virus|5154446 +herpes virus|5154543 +herpes zoster|5154585 +herpes zoster virus|5154678 +herpestes|5154741 +herpestes ichneumon|5154799 +herpestes nyula|5154867 +herpetologist|5154933 +herpetology|5154983 +herr|5155031 +herrenvolk|5155065 +herrerasaur|5155113 +herrerasaurus|5155196 +herrick|5155279 +herring|5155324 +herring gull|5155410 +herring hog|5155471 +herring salad|5155535 +herringbone|5155564 +herschel|5155615 +herschelian telescope|5155861 +hershey|5155964 +hershey bar|5156080 +hertfordshire|5156127 +hertha|5156171 +hertz|5156217 +hertzian|5156412 +hertzian wave|5156456 +herzberg|5156565 +heshvan|5156627 +hesiod|5156674 +hesitance|5156702 +hesitancy|5156767 +hesitant|5156904 +hesitantly|5156990 +hesitate|5157022 +hesitater|5157072 +hesitating|5157127 +hesitatingly|5157178 +hesitation|5157210 +hesitator|5157397 +hesperian|5157452 +hesperides|5157500 +hesperiphona|5157548 +hesperiphona vespertina|5157613 +hesperis|5157706 +hesperis matronalis|5157770 +hesperus|5157867 +hess|5157921 +hesse|5158153 +hessian|5158202 +hessian boot|5158273 +hessian fly|5158357 +hessonite|5158440 +hestia|5158490 +het|5158525 +het up|5158566 +heteranthera|5158624 +heteranthera dubia|5158708 +heterobasidiomycetes|5158840 +heterocephalus|5158927 +heterocercal|5159000 +heterocercal fin|5159035 +heterocycle|5159081 +heterocyclic|5159207 +heterocyclic compound|5159304 +heterocyclic ring|5159387 +heterodactyl|5159444 +heterodactyl foot|5159479 +heterodon|5159518 +heterodox|5159577 +heterodoxy|5159627 +heterodyne|5159709 +heterodyne oscillator|5159774 +heterodyne receiver|5159833 +heteroecious|5159956 +heterogeneity|5159991 +heterogeneous|5160046 +heterogeneousness|5160223 +heterogenesis|5160278 +heterogenous|5160359 +heterograft|5160536 +heteroicous|5160584 +heterokontae|5160658 +heterokontophyta|5160752 +heterologic|5160830 +heterological|5160878 +heterologous|5160926 +heterology|5161007 +heteromeles|5161054 +heteromeles arbutifolia|5161123 +heterometabolic|5161256 +heterometabolous|5161310 +heteromyidae|5161364 +heteronym|5161433 +heterophil antibody|5161457 +heterophil test|5161534 +heterophile antibody|5161578 +heteroploid|5161655 +heteroploidy|5161691 +heteroptera|5161723 +heteropterous insect|5161790 +heteroscelus|5161827 +heteroscelus incanus|5161892 +heterosexism|5161970 +heterosexual|5162030 +heterosexual person|5162179 +heterosexualism|5162299 +heterosexuality|5162402 +heterosomata|5162505 +heterosporous|5162596 +heterospory|5162642 +heterostracan|5162687 +heterostraci|5162751 +heterotaxy|5162821 +heterotheca|5162897 +heterotheca villosa|5162968 +heterothermic|5163099 +heterotrichales|5163178 +heterotroph|5163258 +heterotrophic|5163294 +heterozygosity|5163331 +heterozygous|5163361 +heth|5163396 +heuchera|5163461 +heuchera americana|5163521 +heuchera cylindrica|5163601 +heuchera sanguinea|5163699 +heulandite|5163776 +heuristic|5163804 +heuristic program|5163902 +heuristic rule|5163967 +hevea|5164032 +hevea brasiliensis|5164083 +hevesy|5164197 +hew|5164260 +hew out|5164309 +hewer|5164336 +hewn|5164388 +hex|5164437 +hex nut|5164619 +hexachlorophene|5164640 +hexacosanoic acid|5164710 +hexad|5164755 +hexadecanoic acid|5164854 +hexadecimal|5164916 +hexadecimal notation|5164993 +hexadecimal number system|5165066 +hexadecimal system|5165199 +hexadrol|5165332 +hexagon|5165512 +hexagonal|5165553 +hexagram|5165606 +hexagrammidae|5165629 +hexagrammos|5165699 +hexagrammos decagrammus|5165761 +hexahedron|5165843 +hexalectris|5165874 +hexalectris spicata|5165955 +hexalectris warnockii|5166049 +hexameter|5166147 +hexamita|5166183 +hexanchidae|5166242 +hexanchus|5166306 +hexanchus griseus|5166362 +hexane|5166440 +hexanedioic acid|5166557 +hexangular|5166611 +hexanoic acid|5166664 +hexapoda|5166721 +hexed|5166791 +hexenbesen|5166830 +hexestrol|5166899 +hexose|5166937 +heyday|5166996 +heyerdahl|5167098 +heyrovsky|5167156 +heyse|5167212 +heyward|5167287 +hezbollah|5167362 +hezekiah|5167661 +hf|5167714 +hfc|5167818 +hg|5167901 +hhs|5168036 +hi|5168140 +hi-fi|5168248 +hi-tech|5168371 +hiatal hernia|5168421 +hiatus|5168497 +hiatus hernia|5168610 +hiawatha|5168686 +hiba arborvitae|5168752 +hibachi|5168808 +hibbertia|5168854 +hibbing|5168921 +hibernal|5168951 +hibernate|5168998 +hibernating|5169078 +hibernation|5169121 +hibernia|5169215 +hibiscus|5169270 +hibiscus cannabinus|5169295 +hibiscus elatus|5169418 +hibiscus esculentus|5169512 +hibiscus farragei|5169642 +hibiscus heterophyllus|5169729 +hibiscus moschatus|5169805 +hibiscus moscheutos|5169902 +hibiscus mutabilis|5170022 +hibiscus rosa-sinensis|5170131 +hibiscus sabdariffa|5170264 +hibiscus syriacus|5170371 +hibiscus tiliaceus|5170440 +hibiscus trionum|5170533 +hiccough|5170654 +hiccough nut|5170847 +hiccup|5170912 +hiccup nut|5171107 +hick|5171172 +hickey|5171287 +hickock|5171540 +hickory|5171621 +hickory nut|5171672 +hickory pine|5171704 +hickory tree|5171798 +hidatsa|5171837 +hidden|5171937 +hidden reserve|5172069 +hidden tax|5172122 +hiddenite|5172155 +hide|5172200 +hide and go seek|5172470 +hide out|5172523 +hide-and-seek|5172417 +hideaway|5172546 +hidebound|5172609 +hideki yukawa|5172656 +hideous|5172718 +hideously|5172794 +hideousness|5172833 +hideout|5172863 +hideyo noguchi|5172906 +hiding|5172968 +hiding place|5173016 +hidrosis|5173067 +hidrotic|5173181 +hie|5173208 +hiemal|5173339 +hieracium|5173386 +hieracium aurantiacum|5173451 +hieracium pilocella|5173546 +hieracium praealtum|5173645 +hieracium venosum|5173726 +hierarch|5173797 +hierarchal|5173861 +hierarchic|5173966 +hierarchical|5174071 +hierarchical classification system|5174189 +hierarchical data structure|5174255 +hierarchical menu|5174330 +hierarchical structure|5174399 +hierarchy|5174474 +hieratic|5174563 +hieratic script|5174736 +hieratical|5174794 +hieroglyph|5174863 +hieroglyphic|5174951 +hieroglyphical|5175114 +hierolatry|5175204 +hieronymus|5175261 +hieronymus bosch|5175496 +hifalutin|5175566 +higginson|5175653 +higgle|5175756 +higgledy-piggledy|5175811 +high|5175908 +high altar|5181322 +high anglican church|5181348 +high anglicanism|5181447 +high bar|5181520 +high beam|5181583 +high blood pressure|5181682 +high brass|5181747 +high church|5181773 +high colonic|5181863 +high comedy|5181926 +high command|5181954 +high commission|5182016 +high commissioner|5182065 +high court|5182113 +high dam|5182193 +high dudgeon|5182265 +high energy physics|5182315 +high explosive|5182425 +high fashion|5182497 +high fidelity|5182552 +high fidelity sound system|5182600 +high finance|5182653 +high frequency|5182683 +high gear|5182750 +high german|5182794 +high ground|5182887 +high hat|5182924 +high holiday|5183049 +high holy day|5183114 +high horse|5183180 +high jinks|5183225 +high jinx|5183308 +high jump|5183391 +high life|5183437 +high mallow|5183613 +high mass|5183690 +high muckamuck|5183724 +high noon|5183849 +high pitch|5183926 +high point|5183967 +high pressure|5184009 +high priest|5184046 +high profile|5184127 +high quality|5184165 +high relief|5184223 +high renaissance|5184322 +high roller|5184386 +high school|5184476 +high sea|5184679 +high season|5184738 +high sierra|5184778 +high sign|5184929 +high society|5184970 +high spirits|5185047 +high spot|5185103 +high status|5185155 +high stepper|5185192 +high street|5185243 +high style|5185283 +high table|5185338 +high tea|5185377 +high technology|5185402 +high temperature|5185450 +high tide|5185501 +high time|5185546 +high treason|5185570 +high up|5185632 +high water|5185653 +high wind|5185779 +high wire|5185830 +high-and-dry|5176921 +high-and-mighty|5176959 +high-angle fire|5177047 +high-angle gun|5177099 +high-backed|5177130 +high-bush blueberry|5177158 +high-ceilinged|5177263 +high-class|5177297 +high-definition television|5177336 +high-density lipoprotein|5177409 +high-energy|5177477 +high-energy physics|5177591 +high-fidelity|5177782 +high-five|5177820 +high-flown|5177854 +high-grade|5177990 +high-handed|5178044 +high-hat cymbal|5178086 +high-keyed|5178127 +high-level|5178157 +high-level formatting|5178223 +high-level language|5178300 +high-level radioactive waste|5178385 +high-low|5178441 +high-low-jack|5178476 +high-minded|5178525 +high-mindedness|5178619 +high-muck-a-muck|5178704 +high-necked|5178785 +high-octane|5178813 +high-performance|5178918 +high-pitched|5178953 +high-potential|5179195 +high-power|5179245 +high-powered|5179333 +high-pressure|5179436 +high-priced|5179483 +high-principled|5179539 +high-protein diet|5179575 +high-ranking|5179607 +high-resolution|5179661 +high-rise|5179702 +high-risk|5179809 +high-season|5179867 +high-sounding|5179906 +high-speed|5179961 +high-speed steel|5180012 +high-spirited|5180064 +high-spiritedness|5180116 +high-stepped|5180180 +high-stepping|5180221 +high-strength brass|5180262 +high-strung|5180350 +high-sudsing|5180455 +high-tail|5180490 +high-tech|5180569 +high-tension|5180629 +high-ticket|5180692 +high-toned|5180734 +high-top|5180773 +high-topped|5180808 +high-up|5180843 +high-velocity|5180968 +high-vitamin diet|5181007 +high-voltage|5181063 +high-warp loom|5181186 +high-water mark|5181219 +high-yield bond|5181265 +highball|5185859 +highball glass|5185889 +highbinder|5185934 +highboard|5185993 +highborn|5186025 +highboy|5186066 +highbrow|5186129 +highbrowed|5186201 +highbush cranberry|5186243 +highchair|5186354 +higher|5186393 +higher cognitive process|5187265 +higher criticism|5187370 +higher education|5187414 +higher law|5187501 +higher national diploma|5187539 +higher rank|5187618 +higher status|5187689 +higher up|5187760 +higher-ranking|5187116 +higher-up|5187216 +highest|5187820 +highest common factor|5188570 +highfalutin|5188692 +highfaluting|5188779 +highflier|5188866 +highflyer|5188929 +highflying|5188992 +highhandedness|5189042 +highjack|5189113 +highjacker|5189195 +highjacking|5189324 +highland|5189363 +highland fling|5189479 +highlander|5189522 +highlands|5189623 +highlands of scotland|5189741 +highlife|5189820 +highlight|5189915 +highlighter|5190057 +highlighting|5190111 +highly|5190159 +highly active antiretroviral therapy|5190268 +highly infective|5190380 +highly sensitive|5190415 +highly strung|5190451 +highly-developed|5190184 +highly-sexed|5190231 +highness|5190556 +highroad|5190648 +highschool|5190695 +hightail|5190817 +hightail it|5190858 +highwater|5191010 +highway|5191055 +highway code|5191093 +highway engineer|5191146 +highway robbery|5191187 +highway system|5191246 +highwayman|5191315 +higi|5191389 +hijab|5191428 +hijack|5191480 +hijacker|5191564 +hijacking|5191695 +hijaz|5191746 +hijinks|5191852 +hike|5191935 +hike up|5192156 +hiker|5192251 +hilaire belloc|5192305 +hilar|5192393 +hilarious|5192415 +hilariously|5192474 +hilarity|5192507 +hilbert|5192578 +hilbert space|5192631 +hildebrand|5192681 +hill|5192822 +hill myna|5193111 +hillary|5193214 +hillbilly|5193330 +hillbilly music|5193368 +hillock|5193435 +hills|5193485 +hillside|5193837 +hilltop|5193874 +hilly|5193928 +hilo|5193985 +hilt|5194009 +hilum|5194049 +hilus|5194091 +himalaya honeysuckle|5194120 +himalaya mountains|5194202 +himalayan|5194352 +himalayan cedar|5194460 +himalayan lilac|5194564 +himalayan rhubarb|5194625 +himalayas|5194755 +himalayish|5194896 +himantoglossum|5194964 +himantoglossum hircinum|5195054 +himantopus|5195151 +himantopus himantopus|5195210 +himantopus himantopus leucocephalus|5195347 +himantopus mexicanus|5195512 +himantopus novae-zelandiae|5195647 +himantopus stilt|5195780 +himmler|5195908 +hin|5195967 +hinault|5196100 +hinayana|5196176 +hinayana buddhism|5196275 +hinayanist|5196358 +hind|5196407 +hind end|5196489 +hind leg|5196700 +hind limb|5196728 +hindbrain|5196752 +hindemith|5196804 +hindenburg|5196891 +hinder|5197058 +hindering|5197301 +hinderingly|5197374 +hindermost|5197408 +hindfoot|5197460 +hindgut|5197495 +hindi|5197534 +hindmost|5197641 +hindoo|5197693 +hindooism|5197853 +hindoostani|5197964 +hindostani|5198025 +hindquarter|5198085 +hindquarters|5198122 +hindrance|5198403 +hindshank|5198663 +hindsight|5198688 +hindu|5198752 +hindu calendar|5199006 +hindu calendar month|5199064 +hindu deity|5199136 +hindu kush|5199197 +hindu kush mountains|5199329 +hindu numeral|5199471 +hindu-arabic numeral|5198911 +hinduism|5199559 +hindustan|5199669 +hindustani|5199770 +hinge|5199964 +hinge joint|5200034 +hinge on|5200159 +hinge upon|5200234 +hinging post|5200309 +hinny|5200354 +hint|5200382 +hinterland|5200780 +hip|5200852 +hip bath|5201355 +hip boot|5201412 +hip boots|5201468 +hip joint|5201568 +hip pad|5201720 +hip pocket|5201756 +hip roof|5201783 +hip socket|5201806 +hip tile|5201833 +hip to|5201869 +hip-hop|5201125 +hip-length|5201246 +hipbone|5201902 +hipflask|5201943 +hiplength|5201980 +hipless|5202019 +hipline|5202044 +hipparchus|5202078 +hippeastrum|5202156 +hippeastrum puniceum|5202208 +hipped|5202281 +hippie|5202326 +hippies|5202407 +hippo|5202543 +hippo regius|5202687 +hippobosca|5202733 +hippobosca equina|5202797 +hippoboscid|5202884 +hippoboscidae|5202969 +hippocampus|5203044 +hippocastanaceae|5203130 +hippocrates|5203252 +hippocratic|5203318 +hippocratic oath|5203383 +hippocrepis|5203431 +hippocrepis comosa|5203500 +hippodamia|5203582 +hippodamia convergens|5203646 +hippodrome|5203755 +hippoglossoides|5203809 +hippoglossoides platessoides|5203883 +hippoglossus|5204003 +hippoglossus hippoglossus|5204068 +hippoglossus stenolepsis|5204183 +hippolyte jean giraudoux|5204295 +hippopotamidae|5204409 +hippopotamus|5204484 +hippopotamus amphibius|5204597 +hipposideridae|5204733 +hipposideros|5204808 +hippotragus|5204875 +hippotragus niger|5204939 +hippy|5205008 +hipster|5205089 +hipsters|5205170 +hipsurus|5205306 +hipsurus caryi|5205359 +hiram king williams|5205458 +hiram ulysses grant|5205614 +hiram williams|5205840 +hircine|5205991 +hire|5206013 +hire car|5206217 +hire out|5206307 +hire-purchase|5206136 +hired|5206353 +hired gun|5206401 +hired hand|5206527 +hired help|5206599 +hired man|5206628 +hireling|5206700 +hirer|5206738 +hiring freeze|5206767 +hiring hall|5206797 +hirohito|5206852 +hiroshima|5206908 +hirschsprung|5206971 +hirschsprung's disease|5207076 +hirsute|5207316 +hirsuteness|5207588 +hirsutism|5207629 +hirudinea|5207670 +hirudinean|5207721 +hirudinidae|5207795 +hirudo|5207859 +hirudo medicinalis|5207906 +hirundinidae|5207998 +hirundo|5208065 +hirundo nigricans|5208115 +hirundo pyrrhonota|5208193 +hirundo rustica|5208262 +hispanic|5208340 +hispanic american|5208449 +hispaniola|5208536 +hispaniolan|5208586 +hispid|5208625 +hispid pocket mouse|5208655 +hiss|5208718 +hisser|5209035 +hissing|5209064 +histaminase|5209116 +histamine|5209144 +histamine blocker|5209181 +histamine headache|5209254 +histidine|5209330 +histiocyte|5209370 +histiocytic leukaemia|5209401 +histiocytic leukemia|5209583 +histiocytosis|5209765 +histocompatibility|5209817 +histogram|5209864 +histoincompatibility|5209903 +histologic|5209949 +histological|5210001 +histologist|5210053 +histology|5210084 +histone|5210123 +historian|5210155 +historic|5210223 +historic period|5210284 +historical|5210389 +historical document|5210531 +historical linguistics|5210627 +historical paper|5210671 +historical period|5210767 +historical present|5210851 +historical record|5210901 +historical school|5210997 +historicalness|5211031 +historied|5211083 +historiographer|5211130 +history|5211198 +history department|5211394 +history lesson|5211464 +histrion|5211495 +histrionic|5211575 +histrionics|5211619 +hit|5211736 +hit home|5212728 +hit it up|5212814 +hit list|5212873 +hit man|5212904 +hit parade|5213111 +hit squad|5213198 +hit the books|5213228 +hit the ceiling|5213276 +hit the deck|5213480 +hit the dirt|5213520 +hit the hay|5213560 +hit the jackpot|5213662 +hit the roof|5213760 +hit the sack|5213964 +hit-and-run|5212630 +hit-or-miss|5212690 +hitch|5214066 +hitch up|5214652 +hitchcock|5214694 +hitchhike|5214799 +hitchhiker|5214835 +hitching bar|5214871 +hitching post|5214908 +hitchings|5214936 +hitchiti|5215001 +hitchrack|5215125 +hither|5215162 +hither and thither|5215182 +hitherto|5215229 +hitler|5215312 +hitlerian|5215395 +hitless|5215459 +hitman|5215528 +hitter|5215654 +hitting|5215741 +hittite|5215786 +hiv|5215972 +hive|5216072 +hive away|5216338 +hive off|5216422 +hive up|5216519 +hives|5216600 +hizb ut-tahrir|5216806 +hizballah|5216933 +hizbollah|5217232 +hizbullah|5217531 +hl|5217830 +hm|5217885 +hmg-coa reductase|5217938 +hmo|5218041 +hn|5218107 +hnd|5218179 +ho|5218238 +ho chi minh|5218393 +ho chi minh city|5218475 +ho-hum|5218301 +hoactzin|5218554 +hoagie|5218640 +hoagland|5218797 +hoagland howard carmichael|5218853 +hoagy|5218977 +hoagy carmichael|5219134 +hoar|5219248 +hoard|5219393 +hoarded wealth|5219628 +hoarder|5219675 +hoarding|5219698 +hoarfrost|5219741 +hoariness|5219790 +hoarse|5219851 +hoarsely|5219902 +hoarseness|5219927 +hoary|5219987 +hoary alison|5220138 +hoary alyssum|5220212 +hoary golden bush|5220286 +hoary marmot|5220338 +hoary pea|5220410 +hoary plantain|5220448 +hoary puccoon|5220531 +hoary willow|5220612 +hoatzin|5220679 +hoax|5220765 +hoaxer|5220937 +hob|5221063 +hobart|5221214 +hobbes|5221256 +hobbit|5221305 +hobble|5221356 +hobble skirt|5221503 +hobbledehoy|5221531 +hobbler|5221594 +hobbs|5221643 +hobby|5221706 +hobbyhorse|5221868 +hobbyist|5221943 +hobgoblin|5221969 +hobnail|5222033 +hobnailed|5222092 +hobnob|5222117 +hobo|5222153 +hobo camp|5222210 +hobson's choice|5222241 +hock|5222308 +hockey|5222467 +hockey clinic|5222565 +hockey coach|5222595 +hockey game|5222639 +hockey league|5222706 +hockey player|5222747 +hockey puck|5222820 +hockey season|5222856 +hockey stick|5222886 +hockey team|5222925 +hocus-pocus|5222957 +hod|5223084 +hod carrier|5223101 +hodeida|5223166 +hoder|5223237 +hodgepodge|5223286 +hodgkin|5223533 +hodgkin's disease|5223741 +hodman|5223795 +hodometer|5223860 +hodoscope|5223915 +hodr|5223956 +hoe|5224004 +hoe handle|5224034 +hoecake|5224080 +hoek van holland|5224133 +hoenir|5224202 +hoffa|5224237 +hoffman|5224302 +hoffmann|5224456 +hoffmannsthal|5224718 +hog|5224783 +hog badger|5225142 +hog cholera|5225216 +hog cranberry|5225252 +hog millet|5225421 +hog molly|5225488 +hog peanut|5225547 +hog plum|5225628 +hog plum bush|5225851 +hog snapper|5225943 +hog sucker|5226000 +hog-nosed badger|5224912 +hog-nosed skunk|5224986 +hog-tie|5225098 +hogan|5226059 +hogarth|5226167 +hogback|5226228 +hogchoker|5226261 +hogfish|5226305 +hogg|5226409 +hogged|5226467 +hogget|5226512 +hoggish|5226542 +hoggishness|5226600 +hogmanay|5226653 +hognose bat|5226707 +hognose snake|5226780 +hognosed skunk|5226849 +hogshead|5226961 +hogwash|5227043 +hogweed|5227105 +hohenlinden|5227178 +hohenzollern|5227248 +hohenzollern empire|5227335 +hoheria|5227403 +hoheria populnea|5227464 +hohhot|5227540 +hoi polloi|5227592 +hoisin sauce|5227656 +hoist|5227699 +hoister|5227872 +hoity-toity|5227910 +hoka|5227997 +hokan|5228172 +hokey|5228348 +hokkaido|5228504 +hokkianese|5228547 +hokum|5228635 +hokusai|5228736 +holandric gene|5228788 +holarrhena|5228846 +holarrhena antidysenterica|5228925 +holarrhena pubescens|5229048 +holbein|5229165 +holbein the elder|5229300 +holbein the younger|5229377 +holbrookia|5229467 +holcus|5229529 +holcus lanatus|5229595 +holcus mollis|5229667 +hold|5229730 +hold back|5231741 +hold close|5231951 +hold dear|5232013 +hold down|5232063 +hold fast|5232148 +hold firm|5232206 +hold in|5232282 +hold off|5232455 +hold on|5232541 +hold one's own|5232773 +hold open|5232813 +hold out|5232870 +hold over|5233153 +hold still for|5233358 +hold sway|5233478 +hold the line|5233513 +hold tight|5233617 +hold up|5233679 +hold water|5234016 +hold-down|5231699 +holdall|5234106 +holder|5234150 +holdfast|5234206 +holding|5234271 +holding cell|5234412 +holding company|5234468 +holding device|5234501 +holding pattern|5234532 +holdout|5234632 +holdover|5234721 +holdup|5234794 +holdup man|5234870 +hole|5234916 +hole card|5235591 +hole in the ground|5235637 +hole out|5235694 +hole up|5235721 +hole-and-corner|5235280 +hole-in-corner|5235470 +hole-in-the-wall|5235536 +holey|5235841 +holibut|5235869 +holiday|5235903 +holiday resort|5235988 +holiday season|5236038 +holidaymaker|5236069 +holier-than-thou|5236125 +holiness|5236230 +holism|5236265 +holistic|5236304 +holistic medicine|5236331 +holistic theory|5236383 +holla|5236422 +holland|5236542 +holland gin|5236655 +hollandaise|5236708 +hollander|5236735 +hollands|5236795 +holler|5236948 +holler out|5237295 +hollering|5237328 +hollerith|5237448 +hollerith card|5237524 +hollo|5237592 +holloa|5237874 +hollow|5237994 +hollow out|5238491 +hollow-back|5238391 +hollow-eyed|5238438 +holloware|5238533 +hollowed|5238574 +hollowness|5238599 +hollowware|5238658 +holly|5238699 +holly family|5239268 +holly fern|5239358 +holly-leaf cherry|5238838 +holly-leaved cherry|5238951 +holly-leaved oak|5239064 +holly-leaves barberry|5239149 +hollygrape|5239437 +hollyhock|5239556 +hollywood|5239611 +holm oak|5239861 +holm tree|5239957 +holman hunt|5240042 +holmes|5240115 +holmium|5240353 +holocanthus tricolor|5240413 +holocaust|5240491 +holocene|5240608 +holocene epoch|5240669 +holocentridae|5240736 +holocentrus|5240806 +holocentrus ascensionis|5240868 +holocentrus bullisi|5240938 +holocentrus coruscus|5241023 +holocephalan|5241105 +holocephali|5241161 +holofernes|5241221 +hologram|5241273 +holograph|5241331 +holographic|5241417 +holographical|5241489 +holography|5241533 +holometabola|5241560 +holometabolic|5241598 +holometabolism|5241648 +holometabolous|5241710 +holometaboly|5241760 +holonym|5241822 +holonymy|5241855 +holophytic|5241914 +holothuria|5241945 +holothuria edulis|5242010 +holothurian|5242088 +holothuridae|5242133 +holothuroidea|5242206 +holotype|5242269 +holozoic|5242315 +holstein|5242342 +holstein-friesian|5242453 +holster|5242573 +holy|5242609 +holy city|5242795 +holy clover|5242872 +holy communion|5242986 +holy day|5243076 +holy day of obligation|5243120 +holy eucharist|5243171 +holy father|5243314 +holy ghost|5243451 +holy grail|5243505 +holy innocents' day|5243566 +holy joe|5243649 +holy land|5243719 +holy man|5243851 +holy of holies|5243905 +holy oil|5243975 +holy order|5244060 +holy orders|5244102 +holy person|5244173 +holy place|5244227 +holy roller|5244289 +holy roman emperor|5244347 +holy roman emperor frederick ii|5244402 +holy roman empire|5244507 +holy sacrament|5244570 +holy saturday|5244713 +holy scripture|5244769 +holy see|5244942 +holy sepulcher|5245045 +holy sepulchre|5245144 +holy spirit|5245243 +holy terror|5245298 +holy thistle|5245400 +holy thursday|5245529 +holy trinity|5245601 +holy war warriors|5245739 +holy water|5245871 +holy week|5245901 +holy writ|5245957 +holy year|5246125 +holystone|5246174 +homage|5246222 +homaridae|5246262 +homarus|5246325 +homarus americanus|5246380 +homarus capensis|5246488 +homarus vulgaris|5246557 +hombre|5246630 +homburg|5246674 +home|5246738 +home appliance|5247704 +home away from home|5247758 +home banking|5247813 +home base|5247843 +home brew|5247975 +home buyer|5248132 +home computer|5248182 +home counties|5248314 +home court|5248358 +home ec|5248395 +home economics|5248474 +home equity credit|5248553 +home equity loan|5248648 +home folks|5248743 +home fries|5248852 +home from home|5248943 +home front|5248998 +home game|5249029 +home ground|5249053 +home guard|5249125 +home help|5249195 +home in|5249251 +home invasion|5249315 +home key|5249383 +home loan|5249424 +home loan bank|5249519 +home movie|5249628 +home office|5249760 +home plate|5249854 +home port|5249904 +home range|5249928 +home reserve|5249969 +home rule|5250038 +home run|5250102 +home secretary|5250192 +home stand|5250291 +home study|5250318 +home territory|5250389 +home theater|5250430 +home theatre|5250487 +home truth|5250544 +home-baked|5247252 +home-brewed|5247281 +home-builder|5247311 +home-cured|5247473 +home-farm|5247502 +home-fried potatoes|5247526 +home-loving|5247617 +home-school|5247647 +home-style|5247675 +homebody|5250570 +homebound|5250615 +homeboy|5250676 +homebrew|5250727 +homebuilder|5250803 +homecoming|5250884 +homecourt advantage|5250948 +homefolk|5250995 +homegirl|5251067 +homegrown|5251092 +homel|5251118 +homeland|5251181 +homeland security|5251285 +homeless|5251377 +homeless person|5251524 +homelessness|5251589 +homelike|5251628 +homeliness|5251682 +homely|5251774 +homemade|5251884 +homemaker|5251969 +homemaking|5252054 +homeobox|5252095 +homeobox gene|5252141 +homeopath|5252187 +homeopathic|5252241 +homeopathy|5252299 +homeostasis|5252356 +homeostatic|5252433 +homeothermic|5252509 +homeotic gene|5252570 +homeowner|5252613 +homer|5252660 +homer a. thompson|5252959 +homer armstrong thompson|5253080 +homer thompson|5253208 +homeric|5253326 +homesick|5253355 +homesickness|5253391 +homespun|5253423 +homespun fabric|5253588 +homestead|5253652 +homestead law|5253799 +homesteader|5253826 +homestretch|5253880 +hometown|5253937 +homeward|5253960 +homeward-bound|5254029 +homewards|5254082 +homework|5254109 +homework problem|5254173 +homey|5254207 +homicidal|5254261 +homicide|5254307 +homiletic|5254355 +homiletical|5254451 +homiletics|5254545 +homily|5254611 +hominal|5254665 +homing|5254688 +homing device|5254726 +homing pigeon|5254759 +homing torpedo|5254804 +hominian|5254836 +hominid|5254868 +hominidae|5254915 +hominine|5254975 +hominoid|5254999 +hominoidea|5255025 +hominy|5255085 +hominy grits|5255118 +hommos|5255157 +homo|5255214 +homo erectus|5255333 +homo habilis|5255429 +homo heidelbergensis|5255491 +homo rhodesiensis|5255584 +homo sapiens|5255670 +homo sapiens neanderthalensis|5255732 +homo sapiens sapiens|5255882 +homo soloensis|5255957 +homobasidiomycetes|5256023 +homocentric|5256104 +homocercal|5256164 +homocercal fin|5256195 +homochromatic|5256239 +homocyclic|5256276 +homoecious|5256313 +homoeopath|5256344 +homoeopathy|5256398 +homoerotic|5256455 +homoeroticism|5256486 +homogenate|5256594 +homogeneity|5256629 +homogeneous|5256707 +homogeneousness|5256828 +homogenisation|5256888 +homogenise|5256942 +homogenised|5257082 +homogenization|5257165 +homogenize|5257219 +homogenized|5257359 +homogenized milk|5257442 +homogenous|5257473 +homogentisic acid|5257582 +homogeny|5257632 +homograft|5257661 +homograph|5257707 +homogyne|5257734 +homogyne alpina|5257796 +homoiothermic|5257893 +homologic|5257954 +homological|5257996 +homologise|5258038 +homologize|5258106 +homologous|5258230 +homology|5258301 +homolosine projection|5258330 +homomorphism|5258409 +homomorphy|5258453 +homona|5258497 +homona coffearia|5258549 +homonym|5258637 +homophile|5258659 +homophobe|5258699 +homophobia|5258724 +homophobic|5258773 +homophone|5258819 +homophonic|5258846 +homophonous|5258889 +homophony|5258917 +homoptera|5258968 +homopteran|5259029 +homopterous insect|5259075 +homosexual|5259121 +homosexualism|5259346 +homosexuality|5259454 +homosporous|5259562 +homospory|5259606 +homostylic|5259649 +homostylous|5259714 +homothermic|5259779 +homozygosity|5259840 +homozygous|5259868 +homunculus|5259899 +homy|5260009 +homyel|5260063 +honcho|5260127 +hondo|5260180 +honduran|5260215 +honduran capital|5260323 +honduran monetary unit|5260395 +honduras|5260464 +honduras mahogany|5260561 +honduras rosewood|5260651 +hone|5260741 +honegger|5260837 +honest|5260889 +honest woman|5261341 +honest-to-god|5261199 +honest-to-goodness|5261270 +honestly|5261382 +honestness|5261433 +honesty|5261475 +honey|5261608 +honey badger|5261956 +honey bear|5262039 +honey bell|5262117 +honey berry|5262204 +honey bun|5262327 +honey buzzard|5262402 +honey cake|5262446 +honey crisp|5262471 +honey eater|5262498 +honey fungus|5262550 +honey gland|5262615 +honey guide|5262656 +honey locust|5262691 +honey mesquite|5262754 +honey mushroom|5262838 +honey oil|5262903 +honey plant|5263014 +honey-flower|5261754 +honeybee|5263040 +honeybells|5263077 +honeycomb|5263164 +honeycomb tripe|5263271 +honeycombed|5263302 +honeycreeper|5263368 +honeydew|5263444 +honeydew melon|5263490 +honeyed|5263662 +honeyed words|5263770 +honeyflower|5263817 +honeylike|5263939 +honeymoon|5263965 +honeymooner|5264066 +honeypot|5264143 +honeysucker|5264198 +honeysuckle|5264250 +honeysuckle family|5264426 +hong kong|5264512 +hong kong dollar|5264575 +honiara|5264625 +honied|5264667 +honk|5264705 +honker|5265000 +honkey|5265158 +honkie|5265223 +honky|5265288 +honky-tonk|5265353 +honkytonk|5265475 +honolulu|5265532 +honor|5265613 +honor guard|5265895 +honor killing|5265938 +honor system|5265970 +honorable|5266015 +honorable mention|5266411 +honorableness|5266482 +honorably|5266534 +honorarium|5266579 +honorary|5266606 +honorary degree|5266633 +honorary society|5266681 +honore balzac|5266886 +honore daumier|5266956 +honore de balzac|5267024 +honore-gabriel victor riqueti|5266741 +honored|5267097 +honoree|5267168 +honorific|5267204 +honoring|5267264 +honostyled|5267337 +honour|5267402 +honourable|5267678 +honourableness|5267911 +honourably|5267963 +honoured|5267992 +honours|5268025 +honours degree|5268260 +honours list|5268315 +honshu|5268361 +hoo-ha|5268397 +hoo-hah|5268504 +hooch|5268611 +hood|5268681 +hood latch|5268939 +hood ornament|5268965 +hooded cloak|5269022 +hooded coat|5269057 +hooded ladies' tresses|5269112 +hooded merganser|5269200 +hooded pitcher plant|5269303 +hooded seal|5269364 +hooded sheldrake|5269450 +hooded skunk|5269553 +hoodlum|5269618 +hoodmold|5269721 +hoodmould|5269785 +hoodoo|5269849 +hoodooism|5270049 +hoodwink|5270119 +hooey|5270284 +hoof|5270385 +hoof it|5270746 +hoof mark|5270785 +hoof-and-mouth disease|5270545 +hoof-mark|5270615 +hoofed|5270916 +hoofed mammal|5270958 +hoofer|5271044 +hoofing|5271095 +hooflike|5271161 +hoofprint|5271195 +hook|5271245 +hook and eye|5271984 +hook line and sinker|5272041 +hook of holland|5272090 +hook on|5272158 +hook shot|5272242 +hook spanner|5272282 +hook up|5272331 +hook up with|5272355 +hook wrench|5272444 +hook-nosed|5271958 +hookah|5272493 +hooke|5272620 +hooke's law|5272679 +hooked|5272730 +hooker|5272824 +hooker's green|5273222 +hooker's onion|5273269 +hooker's orchid|5273337 +hooking|5273426 +hooklike|5273481 +hooknose|5273514 +hooks|5273564 +hookup|5273925 +hookworm|5274018 +hookworm disease|5274107 +hooky|5274156 +hooky player|5274193 +hooligan|5274231 +hooliganism|5274339 +hoop|5274522 +hoop ash|5274703 +hoop pine|5274780 +hoop snake|5274849 +hoopla|5274893 +hoopoe|5274979 +hoopoo|5275019 +hoops|5275059 +hoopskirt|5275285 +hooray|5275320 +hooray henry|5275349 +hoosegow|5275399 +hoosgow|5275459 +hoosier|5275519 +hoosier state|5275562 +hoot|5275625 +hoot owl|5275891 +hootch|5275950 +hooter|5276020 +hooved|5276263 +hoover|5276305 +hoover dam|5276670 +hop|5276721 +hop clover|5277171 +hop field|5277344 +hop garden|5277381 +hop hornbeam|5277418 +hop marjoram|5277445 +hop on|5277554 +hop out|5277623 +hop pole|5277674 +hop up|5277697 +hop-picker|5276999 +hop-skip|5277034 +hop-step-and-jump|5277084 +hope|5277735 +hope chest|5278065 +hoped-for|5278105 +hopeful|5278153 +hopefulness|5278362 +hopeh|5278412 +hopei|5278475 +hopeless|5278538 +hopelessly|5278796 +hopelessness|5278828 +hoper|5278858 +hopi|5278926 +hopkins|5279044 +hopkinson|5279438 +hopped-up|5279515 +hopper|5279585 +hopple|5279775 +hops|5279804 +hopsack|5279895 +hopsacking|5279953 +hopscotch|5280011 +horace|5280043 +horace greeley|5280071 +horace mann|5280129 +horace walpole|5280186 +horary|5280311 +horatian ode|5280349 +horatio alger|5280400 +horatio herbert kitchener|5280457 +horatio hornblower|5280593 +horatio nelson|5280718 +horatio walpole|5280828 +horde|5280954 +hordeolum|5281050 +hordeum|5281102 +hordeum jubatum|5281171 +hordeum murinum|5281273 +hordeum pusillum|5281346 +hordeum vulgare|5281410 +horehound|5281472 +horizon|5281552 +horizontal|5281743 +horizontal bar|5281830 +horizontal combination|5281893 +horizontal integration|5281974 +horizontal parallax|5282055 +horizontal section|5282121 +horizontal stabiliser|5282168 +horizontal stabilizer|5282272 +horizontal surface|5282376 +horizontal tail|5282418 +horizontality|5282454 +hormonal|5282503 +hormone|5282530 +hormone replacement therapy|5282744 +hormone-replacement therapy|5282586 +horn|5282821 +horn button|5283255 +horn fly|5283300 +horn in|5283342 +horn of africa|5283432 +horn poppy|5283498 +horn-rimmed|5283227 +hornbeam|5283584 +hornbill|5283607 +hornblende|5283642 +horned|5283672 +horned asp|5283758 +horned chameleon|5283835 +horned dinosaur|5283898 +horned lizard|5283972 +horned owl|5284041 +horned pondweed|5284102 +horned poppy|5284159 +horned pout|5284245 +horned puffin|5284304 +horned rattlesnake|5284357 +horned screamer|5284434 +horned toad|5284483 +horned violet|5284552 +horned viper|5284608 +horned whiff|5284685 +horneophyton|5284736 +horner's syndrome|5284801 +hornet|5284855 +hornet's nest|5284890 +hornets' nest|5284988 +hornfels|5285086 +horniness|5285131 +hornist|5285183 +hornless|5285232 +hornlike|5285259 +hornpipe|5285297 +hornpout|5285458 +hornstone|5285517 +hornwort|5285562 +horny|5285652 +horny frog|5285748 +horny layer|5285817 +horny structure|5285870 +horologer|5285983 +horologist|5286037 +horology|5286091 +horoscope|5286130 +horoscopy|5286215 +horowitz|5286260 +horrendous|5286326 +horrible|5286444 +horribly|5286507 +horrid|5286543 +horridly|5286608 +horridness|5286647 +horrific|5286718 +horrified|5286879 +horrify|5286935 +horrifying|5287009 +horripilate|5287072 +horripilation|5287158 +horror|5287342 +horror-stricken|5287441 +horror-struck|5287497 +hors d'oeuvre|5287553 +hors de combat|5287604 +horse|5287659 +horse around|5288960 +horse balm|5289026 +horse barn|5289142 +horse bean|5289190 +horse blanket|5289347 +horse botfly|5289423 +horse breeding|5289479 +horse brier|5289512 +horse cart|5289693 +horse cassia|5289810 +horse cavalry|5289932 +horse chestnut|5290019 +horse doctor|5290135 +horse fancier|5290204 +horse fly|5290251 +horse gentian|5290364 +horse grain|5290467 +horse gram|5290580 +horse latitude|5290693 +horse mackerel|5290773 +horse manure|5290956 +horse mushroom|5290985 +horse nettle|5291034 +horse of the wood|5291127 +horse opera|5291204 +horse parsley|5291254 +horse pistol|5291352 +horse race|5291506 +horse racing|5291531 +horse radish|5291560 +horse sense|5291715 +horse thistle|5291840 +horse tick|5291942 +horse trade|5292011 +horse trader|5292069 +horse trading|5292122 +horse wrangler|5292214 +horse's foot|5287923 +horse's hoof|5287963 +horse-and-buggy|5288003 +horse-brier|5288038 +horse-cart|5288219 +horse-chestnut family|5288336 +horse-drawn|5288441 +horse-drawn vehicle|5288474 +horse-head|5288519 +horse-pistol|5288719 +horse-race|5288873 +horse-trade|5288902 +horse-trail|5288933 +horseback|5292314 +horseback rider|5292388 +horseback riding|5292439 +horsebean|5292541 +horsebox|5292652 +horsecar|5292691 +horsecloth|5292752 +horsefish|5292818 +horseflesh|5292937 +horsefly|5292972 +horsefly weed|5293076 +horsehair|5293168 +horsehair lichen|5293250 +horsehair wig|5293300 +horsehead|5293327 +horsehide|5293446 +horselaugh|5293473 +horseleech|5293530 +horseless carriage|5293579 +horselike|5293644 +horseman|5293670 +horsemanship|5293757 +horsemeat|5293835 +horsemint|5293870 +horseplay|5294017 +horsepond|5294066 +horsepower|5294095 +horsepower-hour|5294134 +horseradish|5294191 +horseradish peroxidase|5294322 +horseradish root|5294365 +horseradish sauce|5294408 +horseshit|5294454 +horseshoe|5294554 +horseshoe arch|5294650 +horseshoe bat|5294698 +horseshoe crab|5294784 +horseshoe falls|5294869 +horseshoe vetch|5294941 +horseshoe whipsnake|5295004 +horseshoer|5295059 +horseshoes|5295098 +horseshow|5295210 +horsetail|5295234 +horsetail family|5295263 +horsetail lichen|5295334 +horsetail milkweed|5295384 +horseweed|5295472 +horsewhip|5295665 +horsewhipping|5295743 +horsewoman|5295813 +horsey set|5295869 +horst|5295919 +horsy set|5295954 +horta|5296004 +hortative|5296057 +hortatory|5296122 +hortensia|5296187 +horticultural|5296350 +horticulture|5296402 +horticulturist|5296464 +horus|5296505 +hosanna|5296541 +hose|5296598 +hose down|5296711 +hosea|5296750 +hosepipe|5296811 +hosier|5296846 +hosiery|5296909 +hosni mubarak|5296940 +hospice|5297017 +hospitable|5297104 +hospitableness|5297202 +hospital|5297239 +hospital attendant|5297347 +hospital bed|5297409 +hospital care|5297442 +hospital chaplain|5297522 +hospital occupancy|5297558 +hospital room|5297601 +hospital ship|5297629 +hospital train|5297657 +hospital ward|5297702 +hospitalisation|5297736 +hospitalise|5297816 +hospitality|5297902 +hospitalization|5297949 +hospitalization insurance|5298144 +hospitalize|5298212 +host|5298298 +hosta|5298763 +hostaceae|5298835 +hostage|5298930 +hostel|5298971 +hosteller|5299086 +hostelry|5299204 +hostess|5299245 +hostile|5299353 +hostile expedition|5299752 +hostile fire|5299838 +hostile takeover|5299872 +hostile witness|5299907 +hostilely|5299956 +hostility|5300003 +hostler|5300177 +hot|5300253 +hot air|5301864 +hot and bothered|5301983 +hot cake|5302049 +hot cereal|5302236 +hot chocolate|5302263 +hot cross bun|5302354 +hot dog|5302410 +hot flash|5302639 +hot issue|5302672 +hot jazz|5302707 +hot line|5302730 +hot pad|5302813 +hot pants|5302877 +hot pepper|5302962 +hot plate|5303083 +hot pot|5303210 +hot potato|5303320 +hot rod|5303350 +hot sauce|5303493 +hot seat|5303518 +hot spell|5303655 +hot spot|5303698 +hot spring|5303918 +hot springs|5304003 +hot springs national park|5304124 +hot stock|5304199 +hot stuff|5304234 +hot stuffed tomato|5304279 +hot toddy|5304327 +hot tub|5304364 +hot under the collar|5304410 +hot up|5304446 +hot war|5304581 +hot water|5304610 +hot water plant|5304657 +hot weather|5304699 +hot-air balloon|5301061 +hot-blooded|5301094 +hot-fudge sauce|5301125 +hot-rock penstemon|5301194 +hot-rod|5301263 +hot-tempered|5301406 +hot-water bag|5301505 +hot-water bottle|5301556 +hot-water heater|5301607 +hot-water tank|5301693 +hot-wire|5301779 +hot-work steel|5301812 +hotbed|5304768 +hotbox|5304822 +hotcake|5304854 +hotchpotch|5304960 +hotdog|5305188 +hotdog bun|5305338 +hotei|5305383 +hotei-chiku|5305419 +hotel|5305495 +hotel bill|5305640 +hotel clerk|5305681 +hotel desk clerk|5305736 +hotel detective|5305791 +hotel manager|5305923 +hotel occupancy|5306015 +hotel plan|5306055 +hotel room|5306097 +hotel-casino|5305527 +hotelier|5306158 +hotelkeeper|5306250 +hotelman|5306342 +hotfoot|5306434 +hoth|5306565 +hothead|5306613 +hotheaded|5306755 +hothouse|5306917 +hothr|5306992 +hotly|5307041 +hotness|5307064 +hotplate|5307200 +hotpot|5307246 +hotshot|5307275 +hotspot|5307393 +hotspur|5307534 +hottentot|5307630 +hottentot bread|5308020 +hottentot bread vine|5308084 +hottentot fig|5308217 +hottentot's bread|5307703 +hottentot's bread vine|5307769 +hottentot's fig|5307904 +hottish|5308331 +hottonia|5308352 +hottonia inflata|5308425 +hottonia palustris|5308532 +houdah|5308617 +houdini|5308645 +houghton|5308732 +houhere|5308840 +hoummos|5308899 +hound|5308956 +hound dog|5309358 +hound's-tongue|5309131 +hound's-tooth check|5309254 +houndstooth check|5309395 +hour|5309499 +hour angle|5309649 +hour circle|5309705 +hour hand|5309739 +hourglass|5309775 +houri|5309804 +hourlong|5309866 +hourly|5309889 +hours|5309945 +housatonic|5310174 +housatonic river|5310228 +house|5310288 +house agent|5311271 +house arrest|5311381 +house cat|5311415 +house centipede|5311489 +house decorator|5311546 +house detective|5311677 +house dick|5311809 +house finch|5311941 +house guest|5311996 +house husband|5312123 +house martin|5312172 +house mouse|5312217 +house of cards|5312257 +house of commons|5312366 +house of correction|5312440 +house of detention|5312503 +house of god|5312602 +house of hanover|5312704 +house of ill repute|5312823 +house of islam|5312961 +house of lancaster|5313085 +house of lords|5313211 +house of prayer|5313279 +house of prostitution|5313368 +house of representatives|5313506 +house of tudor|5313688 +house of war|5313741 +house of windsor|5313860 +house of worship|5313919 +house of york|5314008 +house organ|5314102 +house paint|5314129 +house painter|5314248 +house painting|5314279 +house party|5314324 +house physician|5314351 +house servant|5314439 +house sitter|5314502 +house snake|5314549 +house sparrow|5314653 +house trailer|5314731 +house wren|5314778 +house-builder|5310943 +house-proud|5311105 +house-raising|5311132 +house-to-house|5311177 +house-trained|5311228 +houseboat|5314832 +housebound|5314878 +housebreak|5314925 +housebreaker|5314975 +housebreaking|5315045 +housebroken|5315108 +housebuilder|5315151 +houseclean|5315232 +housecleaning|5315337 +housecoat|5315401 +housecraft|5315462 +housedog|5315514 +housefather|5315551 +housefly|5315587 +houseful|5315625 +houseguest|5315656 +household|5315702 +household appliance|5315763 +household arts|5315817 +household linen|5315896 +householder|5315953 +housekeep|5316000 +housekeeper|5316038 +housekeeping|5316096 +houselights|5316133 +housemaid|5316173 +housemaid's knee|5316251 +houseman|5316286 +housemaster|5316369 +housemother|5316421 +housepaint|5316461 +houseplant|5316499 +houseroom|5316542 +houses of parliament|5316581 +housetop|5316649 +housewarming|5316672 +housewife|5316700 +housewifely|5316785 +housewifery|5316815 +housework|5316841 +housewrecker|5316878 +housing|5316921 +housing and urban development|5317117 +housing commissioner|5317255 +housing development|5317298 +housing estate|5317339 +housing industry|5317375 +housing project|5317432 +housing start|5317492 +housings|5317544 +housman|5317826 +houston|5317892 +houttuynia|5318055 +houyhnhnm|5318134 +houyhnhnms|5318214 +hovea|5318344 +hovel|5318381 +hover|5318427 +hovercraft|5318594 +how|5318642 +how come|5318800 +how-d'ye-do|5318662 +how-do-you-do|5318707 +howard|5318821 +howard carter|5318960 +howard florey|5319017 +howard hughes|5319112 +howard lindsay|5319274 +howard robard hughes|5319342 +howdah|5319511 +howdy|5319539 +howe|5319603 +howells|5319702 +however|5319762 +howitzer|5319867 +howl|5319921 +howler|5320222 +howler monkey|5320446 +howling|5320505 +hoy|5320697 +hoya|5320738 +hoya carnosa|5320757 +hoyden|5320807 +hoydenish|5320916 +hoydenism|5320988 +hoyle|5321033 +hp|5321135 +hq|5321177 +hr|5321249 +hrolf|5321300 +hrt|5321363 +hrvatska|5321444 +hryvnia|5321532 +hs1|5321572 +hs2|5321648 +hsian|5321724 +hsuan chiao|5321799 +hsv-1|5321871 +hsv-2|5321949 +htlv-1|5322027 +html|5322091 +http|5322179 +hua|5322259 +huainaputina|5322446 +hualapai|5322489 +hualpai|5322581 +huamachil|5322672 +huang he|5322757 +huarache|5322812 +huaraches|5322847 +huascaran|5322905 +huayna capac|5322948 +hub|5322988 +hub of the universe|5323192 +hub-and-spoke|5323052 +hub-and-spoke system|5323122 +hubbard|5323306 +hubbard squash|5323403 +hubble|5323499 +hubble constant|5323831 +hubble law|5323899 +hubble's constant|5323570 +hubble's law|5323640 +hubble-bubble|5323704 +hubbly-bubbly|5323961 +hubbub|5324088 +hubby|5324139 +hubcap|5324221 +hubel|5324241 +hubris|5324289 +huck|5324361 +huck finn|5324404 +huckaback|5324501 +huckleberry|5324544 +huckleberry finn|5324621 +huckleberry oak|5324725 +huckster|5324782 +hud|5324984 +huddie leadbetter|5325096 +huddle|5325230 +huddle together|5325384 +huddled|5325448 +huddler|5325530 +hudood|5325614 +hudson|5325686 +hudson bay|5325842 +hudson bay collared lemming|5325877 +hudson hoagland|5325977 +hudson river|5326040 +hudson river school|5326088 +hudson seal|5326185 +hudsonia|5326214 +hudsonia ericoides|5326278 +hudsonia tomentosa|5326373 +hudsonian godwit|5326467 +hudud|5326535 +hue|5326607 +hue and cry|5326698 +hueless|5326795 +huff|5326823 +huffiness|5326957 +huffing|5326993 +huffish|5327111 +huffishness|5327146 +huffy|5327219 +hug|5327286 +hug drug|5327429 +hug-me-tight|5327400 +huge|5327526 +hugely|5327574 +hugger|5327626 +hugger mugger|5327929 +hugger-mugger|5327695 +hugging|5327966 +huggins|5328084 +hugh capet|5328162 +hugh dowding|5328214 +hughes|5328340 +hugo|5328666 +hugo alvar henrik aalto|5328750 +hugo de vries|5328844 +hugo devries|5328948 +hugo junkers|5329051 +hugo von hoffmannsthal|5329134 +hugo wolf|5329208 +hugoesque|5329251 +hugueninia|5329314 +hugueninia tanacetifolia|5329384 +huguenot|5329510 +huisache|5329547 +huitre|5329661 +huji|5329694 +hula|5329838 +hula-hoop|5329890 +hula-hula|5329923 +huldreich zwingli|5329975 +hulk|5330089 +hulking|5330197 +hulky|5330226 +hull|5330255 +hullabaloo|5330503 +hullo|5330573 +hulsea|5330637 +hulsea algida|5330693 +hulsea nana|5330779 +hum|5330848 +human|5331187 +human action|5331706 +human activity|5331747 +human being|5331788 +human beings|5331832 +human body|5331966 +human botfly|5332126 +human chorionic gonadotrophin|5332174 +human chorionic gonadotropin|5332316 +human death|5332458 +human dynamo|5332502 +human ecology|5332575 +human face|5332619 +human foot|5332663 +human gamma globulin|5332724 +human genome project|5332793 +human growth hormone|5332881 +human head|5333037 +human immunodeficiency virus|5333068 +human language technology|5333121 +human nature|5333246 +human palaeontology|5333278 +human paleontology|5333400 +human papilloma virus|5333522 +human process|5333565 +human race|5333596 +human relationship|5333688 +human remains pouch|5333738 +human reproductive cloning|5333796 +human right|5333853 +human t-cell leukemia virus-1|5333880 +human waste|5333967 +human-centered|5331550 +human-centred|5331628 +humane|5334045 +humaneness|5334358 +humanisation|5334386 +humanise|5334433 +humanism|5334480 +humanist|5334689 +humanistic|5335094 +humanistic discipline|5335408 +humanitarian|5335571 +humanitarianism|5335762 +humanities|5335859 +humanity|5336181 +humanization|5336324 +humanize|5336371 +humankind|5336418 +humanlike|5336510 +humanness|5336568 +humanoid|5336612 +humans|5336675 +humate|5336917 +humber|5336948 +humber bridge|5336979 +humble|5337034 +humble plant|5337327 +humblebee|5337437 +humbled|5337470 +humbleness|5337524 +humbling|5337625 +humbly|5337688 +humboldt|5337723 +humboldt current|5337954 +humbug|5338028 +humdinger|5338359 +humdrum|5338436 +hume|5338532 +humectant|5338574 +humeral veil|5338610 +humerus|5338646 +humic|5338672 +humic acid|5338696 +humic shale|5338732 +humic substance|5338766 +humid|5338808 +humidify|5338827 +humidity|5338887 +humidness|5338923 +humification|5338959 +humified|5339016 +humiliate|5339043 +humiliated|5339129 +humiliating|5339220 +humiliatingly|5339283 +humiliation|5339317 +humility|5339488 +humin|5339549 +hummer|5339580 +humming|5339683 +humming bird's trumpet|5339736 +humming top|5339842 +hummingbird|5339899 +hummingbird moth|5339935 +hummock|5340006 +hummus|5340056 +humongous|5340113 +humor|5340174 +humoral|5340458 +humoral immune response|5340489 +humoring|5340575 +humorist|5340638 +humorless|5340678 +humorlessly|5340757 +humorous|5340819 +humorously|5341216 +humorousness|5341258 +humour|5341317 +humourist|5341596 +humourless|5341636 +humourlessly|5341705 +humourous|5341767 +humous|5342155 +hump|5342212 +humpback|5342620 +humpback whale|5342783 +humpbacked|5342868 +humped|5342962 +humperdinck|5343056 +humphrey bogart|5343120 +humphrey davy|5343236 +humphrey deforest bogart|5343304 +humphrey gilbert|5343429 +humpty dumpty|5343511 +humulin|5343583 +humulus|5343642 +humulus americanus|5343712 +humulus japonicus|5343781 +humulus lupulus|5343848 +humus|5343939 +hun|5344013 +hunan|5344082 +hunan province|5344133 +hunch|5344193 +hunch forward|5344336 +hunch over|5344396 +hunchback|5344456 +hunchbacked|5344626 +hunched|5344720 +hundred|5344800 +hundred and one|5345810 +hundred dollar bill|5345885 +hundred thousand|5346021 +hundred years' war|5346108 +hundred-and-eightieth|5344903 +hundred-and-fifteenth|5344948 +hundred-and-fifth|5344993 +hundred-and-fiftieth|5345034 +hundred-and-fifty-fifth|5345078 +hundred-and-first|5345125 +hundred-and-fortieth|5345166 +hundred-and-forty-fifth|5345210 +hundred-and-ninetieth|5345257 +hundred-and-seventieth|5345302 +hundred-and-seventy-fifth|5345348 +hundred-and-sixtieth|5345397 +hundred-and-sixty-fifth|5345441 +hundred-and-tenth|5345488 +hundred-and-thirtieth|5345529 +hundred-and-thirty-fifth|5345574 +hundred-and-twentieth|5345622 +hundred-and-twenty-fifth|5345667 +hundred-percenter|5345715 +hundredfold|5346167 +hundredth|5346203 +hundredweight|5346324 +hung|5346539 +hung jury|5346571 +hungarian|5346595 +hungarian capital|5346733 +hungarian goulash|5346823 +hungarian grass|5346888 +hungarian lilac|5346997 +hungarian monetary unit|5347077 +hungarian partridge|5347148 +hungarian pointer|5347236 +hungarian sauce|5347311 +hungary|5347372 +hunger|5347463 +hunger march|5347617 +hunger marcher|5347645 +hunger strike|5347687 +hungrily|5347776 +hungriness|5347804 +hungry|5347837 +hunk|5347976 +hunker|5348028 +hunker down|5348101 +hunkered|5348244 +hunkered down|5348311 +hunkpapa|5348378 +hunky-dory|5348457 +hunnemania fumariifolia|5348518 +hunnemannia|5348612 +hunt|5348684 +hunt club|5349299 +hunt down|5349359 +hunted|5349412 +hunted person|5349435 +hunter|5349465 +hunter's chicken|5349585 +hunter's sauce|5349667 +hunter-gatherer|5349713 +hunting|5349755 +hunting and gathering society|5349873 +hunting and gathering tribe|5349955 +hunting crop|5350037 +hunting dog|5350076 +hunting expedition|5350131 +hunting ground|5350186 +hunting guide|5350249 +hunting knife|5350295 +hunting licence|5350324 +hunting license|5350416 +hunting lodge|5350508 +hunting permit|5350543 +hunting season|5350635 +hunting spider|5350666 +hunting watch|5350709 +huntingdon elm|5350752 +huntingdon willow|5350830 +huntington|5350918 +huntington's chorea|5351114 +huntington's disease|5351283 +huntress|5351453 +huntsman|5351487 +huntsman's cup|5351542 +huntsman's cups|5351637 +huntsman's horn|5351809 +huntsman's horns|5351927 +huntsville|5352144 +huon pine|5352204 +hupa|5352293 +hurdle|5352432 +hurdle race|5352532 +hurdler|5352582 +hurdles|5352612 +hurdling|5352752 +hurdy gurdy|5352802 +hurl|5352902 +hurler|5353046 +hurler's disease|5353113 +hurler's syndrome|5353286 +hurling|5353460 +hurly burly|5353502 +hurok|5353609 +huron|5353682 +hurrah|5353719 +hurricane|5353812 +hurricane deck|5353839 +hurricane lamp|5353910 +hurricane lantern|5353998 +hurricane roof|5354086 +hurried|5354157 +hurriedly|5354309 +hurriedness|5354344 +hurry|5354426 +hurrying|5354719 +hurt|5354795 +hurtful|5355373 +hurting|5355434 +hurtle|5355464 +hurtling|5355557 +hus|5355582 +husain|5355660 +husayn|5355835 +husband|5356010 +husband-wife privilege|5356142 +husbandly|5356217 +husbandman|5356262 +husbandry|5356315 +hush|5356366 +hush money|5356773 +hush puppy|5356806 +hush up|5356927 +hush-hush|5356631 +hushed|5357081 +hushed-up|5357122 +hushpuppy|5357152 +husk|5357192 +husk tomato|5357316 +huskily|5357432 +huskiness|5357457 +husking|5357554 +husking bee|5357627 +husky|5357664 +huss|5357789 +hussar|5357868 +hussar monkey|5357903 +hussein|5357979 +husserl|5358155 +hussite|5358207 +hussy|5358250 +hustings|5358349 +hustle|5358435 +hustler|5358723 +huston|5358977 +hut|5359059 +hutch|5359139 +hutchins|5359202 +hutchinson|5359272 +hutment|5359336 +hutton|5359388 +hutu|5359477 +hutzpah|5359502 +huxleian|5359601 +huxley|5359661 +huxleyan|5359871 +huygens|5359931 +huygens' principle of superposition|5360003 +hwang ho|5360126 +hyacinth|5360181 +hyacinth bean|5360257 +hyacinthaceae|5360353 +hyacinthoides|5360433 +hyacinthoides nonscripta|5360511 +hyacinthus candicans|5360651 +hyacinthus orientalis|5360760 +hyacinthus orientalis albulus|5360838 +hyades|5360931 +hyaena|5360960 +hyaena brunnea|5360995 +hyaena hyaena|5361071 +hyaenidae|5361135 +hyalin|5361195 +hyaline|5361263 +hyaline cartilage|5361352 +hyaline membrane disease|5361397 +hyalinisation|5361567 +hyalinization|5361621 +hyaloid|5361675 +hyaloid membrane|5361706 +hyalophora|5361754 +hyalophora cecropia|5361818 +hyaloplasm|5361915 +hyaloplasmic|5361962 +hyalosperma|5361993 +hyalospongiae|5362064 +hyaluronic acid|5362127 +hyaluronidase|5362171 +hyazyme|5362226 +hybanthus|5362289 +hybrid|5362356 +hybrid petunia|5362510 +hybrid tuberous begonia|5362558 +hybridisation|5362629 +hybridise|5362776 +hybridization|5362839 +hybridize|5362986 +hybridizing|5363049 +hybridoma|5363196 +hydantoin|5363244 +hydathode|5363331 +hydatid|5363392 +hydatid disease|5363414 +hydatid mole|5363478 +hydatidiform mole|5363576 +hydatidosis|5363674 +hyderabad|5363738 +hydnaceae|5363842 +hydnocarpus|5363902 +hydnocarpus kurzii|5364039 +hydnocarpus laurifolia|5364171 +hydnocarpus oil|5364253 +hydnocarpus wightiana|5364282 +hydnoraceae|5364363 +hydnum|5364448 +hydra|5364497 +hydralazine|5364634 +hydramnios|5364730 +hydrangea|5364792 +hydrangea anomala|5364822 +hydrangea arborescens|5364896 +hydrangea family|5364974 +hydrangea macrophylla hortensis|5365054 +hydrangea paniculata|5365147 +hydrangea petiolaris|5365232 +hydrangeaceae|5365312 +hydrant|5365406 +hydrargyrum|5365503 +hydrarthrosis|5365587 +hydrastis|5365637 +hydrastis canadensis|5365704 +hydrate|5365826 +hydrated|5365959 +hydrated aluminium oxide|5365985 +hydrated aluminum oxide|5366107 +hydrated lime|5366229 +hydrated oxide|5366354 +hydration|5366415 +hydraulic|5366446 +hydraulic brake|5366503 +hydraulic brake cylinder|5366565 +hydraulic brakes|5366654 +hydraulic cement|5366759 +hydraulic engineering|5366808 +hydraulic press|5366857 +hydraulic pump|5366905 +hydraulic ram|5366948 +hydraulic system|5366991 +hydraulic transmission|5367027 +hydraulic transmission system|5367139 +hydraulically|5367251 +hydraulicly|5367285 +hydraulics|5367319 +hydrazine|5367365 +hydrazo group|5367417 +hydrazo radical|5367485 +hydrazoic acid|5367553 +hydrazoite|5367622 +hydremia|5367648 +hydric|5367695 +hydride|5367742 +hydrilla|5367775 +hydrilla verticillata|5367870 +hydriodic acid|5367987 +hydrobates|5368016 +hydrobates pelagicus|5368075 +hydrobatidae|5368175 +hydrobromic acid|5368242 +hydrocarbon|5368273 +hydrocele|5368311 +hydrocephalic|5368345 +hydrocephalus|5368409 +hydrocephaly|5368487 +hydrocharidaceae|5368565 +hydrocharis|5368738 +hydrocharis morsus-ranae|5368819 +hydrocharitaceae|5368952 +hydrochloric acid|5369125 +hydrochloride|5369157 +hydrochlorofluorocarbon|5369210 +hydrochlorothiazide|5369271 +hydrochoeridae|5369329 +hydrochoerus|5369404 +hydrochoerus hydrochaeris|5369471 +hydrocolloid|5369579 +hydrocortisone|5369618 +hydrocortone|5369721 +hydrocracking|5369837 +hydrocyanic acid|5369869 +hydrodamalis|5369913 +hydrodamalis gigas|5369980 +hydrodiuril|5370078 +hydrodynamic|5370148 +hydrodynamics|5370196 +hydroelectric|5370260 +hydroelectric turbine|5370294 +hydroelectricity|5370333 +hydroflumethiazide|5370371 +hydrofluoric acid|5370408 +hydrofluorocarbon|5370440 +hydrofluosilicic acid|5370519 +hydrofoil|5370572 +hydrogel|5370631 +hydrogen|5370667 +hydrogen atom|5370768 +hydrogen azide|5370796 +hydrogen bomb|5370865 +hydrogen bond|5370946 +hydrogen bromide|5370988 +hydrogen carbonate|5371022 +hydrogen chloride|5371072 +hydrogen cyanide|5371104 +hydrogen fluoride|5371157 +hydrogen iodide|5371193 +hydrogen ion|5371225 +hydrogen ion concentration|5371261 +hydrogen peroxide|5371311 +hydrogen sulfide|5371353 +hydrogen-bomb|5370732 +hydrogenate|5371396 +hydrogenated|5371437 +hydrogenation|5371478 +hydrographic|5371550 +hydrographical|5371599 +hydrography|5371648 +hydroid|5371682 +hydroiodic acid|5371732 +hydrokinetic|5371762 +hydrokinetics|5371824 +hydrolise|5371888 +hydrolith|5371964 +hydrolize|5372007 +hydrology|5372083 +hydrolysate|5372133 +hydrolyse|5372162 +hydrolysis|5372198 +hydrolyzable|5372245 +hydrolyze|5372293 +hydromancer|5372329 +hydromancy|5372358 +hydromantes|5372429 +hydromantes brunus|5372496 +hydromantes shastae|5372584 +hydromel|5372671 +hydrometer|5372722 +hydrometric|5372808 +hydrometry|5372882 +hydromorphone|5372955 +hydromorphone hydrochloride|5373054 +hydromyinae|5373153 +hydromys|5373222 +hydronephrosis|5373277 +hydropathic|5373311 +hydropathy|5373341 +hydrophidae|5373384 +hydrophilic|5373451 +hydrophobia|5373497 +hydrophobic|5373601 +hydrophobicity|5373659 +hydrophyllaceae|5373692 +hydrophyllum|5373794 +hydrophyllum virginianum|5373868 +hydrophyte|5374005 +hydrophytic|5374097 +hydrophytic plant|5374125 +hydroplane|5374217 +hydroplane racing|5374331 +hydroponic|5374370 +hydroponics|5374445 +hydrops|5374521 +hydrosphere|5374582 +hydrostatic|5374609 +hydrostatic head|5374669 +hydrostatics|5374739 +hydrotherapy|5374788 +hydrothorax|5374831 +hydrous|5374863 +hydroxide|5374897 +hydroxide ion|5374992 +hydroxy|5375034 +hydroxy acid|5375079 +hydroxyacetic acid|5375106 +hydroxybenzene|5375168 +hydroxybenzoic acid|5375299 +hydroxybutyric acid|5375341 +hydroxychloroquine|5375413 +hydroxyl|5375492 +hydroxyl group|5375571 +hydroxyl ion|5375650 +hydroxyl radical|5375692 +hydroxymethyl|5375771 +hydroxyproline|5375829 +hydroxytetracycline|5375883 +hydroxyzine|5375996 +hydroxyzine hydrochloride|5376162 +hydrozoa|5376328 +hydrozoan|5376424 +hydrus|5376474 +hyemoschus|5376511 +hyemoschus aquaticus|5376572 +hyena|5376673 +hyena dog|5376708 +hyerbolise|5376787 +hygeia|5376883 +hygiene|5376918 +hygienic|5376992 +hygienical|5377040 +hygienics|5377088 +hygienise|5377142 +hygienize|5377206 +hygrocybe|5377270 +hygrocybe acutoconica|5377328 +hygrodeik|5377403 +hygrometer|5377433 +hygrophoraceae|5377508 +hygrophorus|5377583 +hygrophorus borealis|5377647 +hygrophorus caeruleus|5377706 +hygrophorus inocybiformis|5377767 +hygrophorus kauffmanii|5377836 +hygrophorus marzuolus|5377899 +hygrophorus purpurascens|5377960 +hygrophorus russula|5378027 +hygrophorus sordidus|5378084 +hygrophorus tennesseensis|5378143 +hygrophorus turundus|5378212 +hygrophyte|5378271 +hygrophytic|5378314 +hygroscope|5378342 +hygroscopic|5378373 +hygroton|5378415 +hygrotrama|5378501 +hygrotrama foetens|5378562 +hyla|5378617 +hyla arenicolor|5378663 +hyla crucifer|5378750 +hyla regilla|5378831 +hylactophryne|5378914 +hylactophryne augusti|5378987 +hylidae|5379114 +hylobates|5379171 +hylobates lar|5379229 +hylobates syndactylus|5379284 +hylobatidae|5379381 +hylocereus|5379447 +hylocichla|5379521 +hylocichla fuscescens|5379580 +hylocichla guttata|5379662 +hylocichla mustelina|5379730 +hylophylax|5379800 +hylophylax naevioides|5379859 +hyman george rickover|5379945 +hyman rickover|5380036 +hymen|5380120 +hymenaea|5380212 +hymenaea courbaril|5380272 +hymenal|5380348 +hymenanthera|5380387 +hymeneal|5380463 +hymeneals|5380523 +hymenium|5380655 +hymenogastrales|5380696 +hymenomycetes|5380772 +hymenophyllaceae|5380835 +hymenophyllum|5380914 +hymenopter|5380982 +hymenoptera|5381056 +hymenopteran|5381192 +hymenopteron|5381266 +hymenopterous|5381340 +hymenopterous insect|5381375 +hymenoxys acaulis|5381449 +hymenoxys grandiflora|5381556 +hymie|5381697 +hymn|5381745 +hymnal|5381834 +hymnary|5381876 +hymnbook|5381918 +hymnody|5381960 +hynerpeton|5382005 +hynerpeton bassetti|5382069 +hyoid|5382128 +hyoid bone|5382188 +hyoscine|5382234 +hyoscyamine|5382273 +hyoscyamus|5382330 +hyoscyamus muticus|5382398 +hyoscyamus niger|5382484 +hypaethral|5382591 +hypallage|5382632 +hypanthium|5382669 +hypatia|5382723 +hype|5382793 +hype up|5382879 +hypentelium|5382959 +hypentelium nigricans|5383021 +hyper-eutectoid steel|5383102 +hyperacidity|5383146 +hyperactive|5383176 +hyperactivity|5383215 +hyperacusia|5383253 +hyperacusis|5383345 +hyperadrenalism|5383437 +hyperadrenocorticism|5383540 +hyperaemia|5383649 +hyperaldosteronism|5383690 +hyperalimentation|5383792 +hyperbaric chamber|5383871 +hyperbaton|5383907 +hyperbetalipoproteinemia|5383945 +hyperbilirubinemia|5384164 +hyperbilirubinemia of the newborn|5384202 +hyperbola|5384292 +hyperbole|5384331 +hyperbolic|5384399 +hyperbolic geometry|5384476 +hyperbolically|5384528 +hyperbolize|5384565 +hyperboloid|5384661 +hyperboloidal|5384706 +hyperborean|5384737 +hypercalcaemia|5384785 +hypercalcemia|5384831 +hypercalcinuria|5384877 +hypercalciuria|5384925 +hypercapnia|5384973 +hypercarbia|5385050 +hypercatalectic|5385127 +hypercellularity|5385168 +hypercholesteremia|5385206 +hypercholesterolemia|5385263 +hyperchromic anaemia|5385320 +hyperchromic anemia|5385385 +hypercoaster|5385450 +hypercritical|5385514 +hyperdactyly|5385559 +hyperemesis|5385686 +hyperemesis gravidarum|5385763 +hyperemia|5385807 +hyperemic|5385848 +hyperextend|5385877 +hyperextension|5385955 +hyperfine|5385989 +hyperfocal distance|5386013 +hyperglycaemia|5386051 +hyperglycemia|5386097 +hyperglyphe perciformis|5386143 +hyperhidrosis|5386266 +hypericaceae|5386367 +hypericales|5386445 +hypericism|5386536 +hypericum|5386567 +hypericum androsaemum|5386634 +hypericum ascyron|5386731 +hypericum calycinum|5386834 +hypericum crux andrae|5386922 +hypericum gentianoides|5387009 +hypericum hypericoides|5387119 +hypericum maculatum|5387211 +hypericum perforatum|5387313 +hypericum prolificum|5387393 +hypericum pyramidatum|5387504 +hypericum spathulatum|5387611 +hypericum tetrapterum|5387723 +hypericum virginianum|5387827 +hyperidrosis|5387916 +hyperion|5388017 +hyperkalemia|5388050 +hyperkinetic syndrome|5388080 +hyperlink|5388248 +hyperlipaemia|5388272 +hyperlipemia|5388441 +hyperlipidaemia|5388610 +hyperlipidemia|5388779 +hyperlipoidaemia|5388948 +hyperlipoidemia|5389117 +hyperlipoproteinemia|5389286 +hypermarket|5389335 +hypermastigina|5389368 +hypermastigote|5389441 +hypermedia|5389546 +hypermedia system|5389709 +hypermenorrhea|5389872 +hypermetropia|5389968 +hypermetropic|5390055 +hypermetropy|5390110 +hypermotility|5390197 +hypernatremia|5390255 +hypernym|5390286 +hypernymy|5390342 +hyperoartia|5390395 +hyperodontidae|5390507 +hyperoglyphe|5390609 +hyperon|5390674 +hyperoodon|5390713 +hyperoodon ampullatus|5390774 +hyperope|5390887 +hyperopia|5390933 +hyperopic|5391020 +hyperotreta|5391075 +hyperparathyroidism|5391219 +hyperpiesia|5391308 +hyperpiesis|5391397 +hyperpigmentation|5391486 +hyperpituitarism|5391557 +hyperplasia|5391643 +hyperpnea|5391674 +hyperpyrexia|5391748 +hypersecretion|5391842 +hypersensitised|5391887 +hypersensitive|5392033 +hypersensitivity|5392179 +hypersensitivity reaction|5392277 +hypersensitized|5392329 +hypersomnia|5392475 +hypersplenism|5392511 +hyperstat|5392542 +hypertensin|5392606 +hypertension|5392695 +hypertensive|5392760 +hypertext|5392795 +hypertext mark-up language|5392836 +hypertext markup language|5392919 +hypertext system|5393002 +hypertext transfer protocol|5393071 +hyperthermal|5393146 +hyperthermia|5393211 +hyperthermy|5393289 +hyperthyroidism|5393367 +hypertonia|5393467 +hypertonic|5393532 +hypertonicity|5393581 +hypertonus|5393670 +hypertrophic cardiomyopathy|5393735 +hypertrophic rosacea|5393802 +hypertrophied|5393936 +hypertrophy|5393982 +hypervelocity|5394025 +hyperventilate|5394063 +hyperventilation|5394147 +hypervitaminosis|5394228 +hypervolaemia|5394296 +hypervolemia|5394361 +hypesthesia|5394426 +hypethral|5394503 +hypha|5394544 +hyphantria|5394582 +hyphantria cunea|5394646 +hyphema|5394747 +hyphen|5394796 +hyphenate|5394875 +hyphenated|5394913 +hyphenation|5394942 +hypnagogic|5395005 +hypnagogue|5395091 +hypnoanalysis|5395117 +hypnogenesis|5395181 +hypnogogic|5395213 +hypnoid|5395299 +hypnopedia|5395323 +hypnophobia|5395388 +hypnos|5395423 +hypnosis|5395474 +hypnotherapy|5395525 +hypnotic|5395561 +hypnotic trance|5395657 +hypnotise|5395689 +hypnotised|5395788 +hypnotiser|5395884 +hypnotism|5395948 +hypnotist|5395998 +hypnotize|5396062 +hypnotized|5396161 +hypnotizer|5396257 +hypo|5396321 +hypo-eutectoid steel|5396438 +hypoactive|5396481 +hypoadrenalism|5396522 +hypoadrenocorticism|5396663 +hypobasidium|5396804 +hypobetalipoproteinemia|5396838 +hypoblast|5396891 +hypocalcaemia|5396959 +hypocalcemia|5397003 +hypocapnia|5397047 +hypocellularity|5397119 +hypochaeris|5397156 +hypochaeris radicata|5397257 +hypochlorite|5397361 +hypochlorous acid|5397388 +hypochoeris|5397420 +hypochondria|5397521 +hypochondriac|5397612 +hypochondriacal|5397690 +hypochondriasis|5397753 +hypochondrium|5397811 +hypochromic anaemia|5397846 +hypochromic anemia|5397909 +hypocorism|5397972 +hypocreaceae|5398006 +hypocreales|5398075 +hypocrisy|5398139 +hypocrite|5398238 +hypocritical|5398341 +hypocycloid|5398373 +hypoderma|5398417 +hypodermal|5398478 +hypodermatidae|5398503 +hypodermic|5398608 +hypodermic needle|5398711 +hypodermic syringe|5398745 +hypodermis|5398797 +hypoesthesia|5398823 +hypogammaglobulinemia|5398900 +hypogastric artery|5398948 +hypogastric plexus|5399026 +hypogastric vein|5399088 +hypoglossal|5399157 +hypoglossal nerve|5399250 +hypoglycaemia|5399343 +hypoglycaemic|5399387 +hypoglycaemic agent|5399430 +hypoglycemia|5399484 +hypoglycemic|5399528 +hypoglycemic agent|5399571 +hypognathous|5399625 +hypogonadism|5399684 +hypokalemia|5399719 +hypolipoproteinemia|5399748 +hyponatremia|5399796 +hyponitrous acid|5399826 +hyponym|5399857 +hyponymy|5399908 +hypopachus|5399958 +hypoparathyroidism|5400022 +hypophosphoric acid|5400110 +hypophosphorous acid|5400159 +hypophyseal|5400248 +hypophyseal stalk|5400321 +hypophysectomise|5400361 +hypophysectomised|5400435 +hypophysectomize|5400510 +hypophysectomized|5400584 +hypophysectomy|5400659 +hypophysial|5400725 +hypophysis|5400798 +hypopigmentation|5400900 +hypopitys|5400970 +hypoplasia|5401037 +hypoplastic anaemia|5401067 +hypoplastic anemia|5401130 +hypoplastic dwarf|5401193 +hypopnea|5401280 +hypoproteinemia|5401353 +hyposmia|5401386 +hypospadias|5401412 +hypostasis|5401475 +hypostatisation|5401790 +hypostatise|5401859 +hypostatization|5401898 +hypostatize|5401967 +hypotension|5402006 +hypotensive|5402050 +hypotenuse|5402083 +hypothalamic|5402109 +hypothalamic releasing factor|5402147 +hypothalamic releasing hormone|5402292 +hypothalamus|5402437 +hypothecate|5402476 +hypothermia|5402600 +hypothermic|5402665 +hypothesis|5402729 +hypothesise|5402891 +hypothesize|5403001 +hypothetic|5403111 +hypothetical|5403166 +hypothetical creature|5403221 +hypothetical imperative|5403287 +hypothrombinemia|5403338 +hypothyroidism|5403393 +hypotonia|5403477 +hypotonic|5403539 +hypotonicity|5403585 +hypotonus|5403671 +hypovitaminosis|5403733 +hypovolaemia|5403784 +hypovolaemic|5403847 +hypovolemia|5403909 +hypovolemic|5403972 +hypovolemic shock|5404034 +hypoxia|5404067 +hypoxic hypoxia|5404090 +hypoxidaceae|5404123 +hypoxis|5404200 +hypoxis hirsuta|5404260 +hypozeugma|5404332 +hypozeuxis|5404370 +hypsiglena|5404408 +hypsiglena torquata|5404470 +hypsiprymnodon|5404555 +hypsiprymnodon moschatus|5404628 +hypsography|5404710 +hypsometer|5404799 +hypsometry|5404829 +hyracoidea|5404903 +hyracotherium|5404964 +hyrax|5405034 +hyson|5405125 +hyssop|5405150 +hyssop loosestrife|5405221 +hyssop oil|5405293 +hyssopus|5405317 +hyssopus officinalis|5405379 +hysterectomy|5405459 +hysteresis|5405523 +hysteria|5405563 +hysteric|5405723 +hysterical|5405819 +hysterical neurosis|5405888 +hysterics|5405962 +hysterocatalepsy|5406040 +hysteron proteron|5406095 +hysterosalpingogram|5406163 +hysteroscopy|5406243 +hysterotomy|5406275 +hystricidae|5406369 +hystricomorpha|5406435 +hytrin|5406511 +hz|5406668 +i|5406735 +i chronicles|5407832 +i corinthians|5407885 +i esdra|5408013 +i john|5408052 +i kings|5408102 +i maccabees|5408140 +i peter|5408190 +i samuel|5408243 +i thessalonians|5408284 +i timothy|5408420 +i-beam|5406942 +i. a. richards|5406972 +i. f. stone|5407084 +i. m. pei|5407157 +i.d.|5407223 +i.e.|5407353 +i.q.|5407464 +i.w.w.|5407595 +ia|5408524 +iaa|5408573 +iaea|5408771 +iago|5408857 +iamb|5408927 +iambic|5408981 +iambus|5409053 +ian douglas smith|5409107 +ian fleming|5409200 +ian lancaster fleming|5409277 +ian smith|5409364 +ian wilmut|5409449 +ianfu|5409498 +iapetus|5409653 +iatrogenic|5409684 +ib.|5409712 +ibadan|5409737 +iberia|5409789 +iberian|5409840 +iberian peninsula|5409874 +iberis|5409936 +ibero-mesornis|5409994 +ibert|5410038 +ibex|5410099 +ibid.|5410134 +ibidem|5410159 +ibis|5410184 +ibis ibis|5410216 +ibizan hound|5410271 +ibizan podenco|5410337 +ibn al-haytham|5410682 +ibn talal hussein|5410821 +ibn-roshd|5410405 +ibn-sina|5410559 +ibolium privet|5410919 +ibota privet|5410981 +ibrahim|5411043 +ibrd|5411086 +ibsen|5411202 +ibsenian|5411281 +ibuprofen|5411333 +ic|5411475 +icaco|5411667 +icao|5411790 +icarus|5411883 +icbm|5411921 +icc|5411993 +ice|5412060 +ice age|5413327 +ice ax|5413398 +ice axe|5413436 +ice bag|5413474 +ice bear|5413504 +ice cap|5413575 +ice chest|5413689 +ice coffee|5413735 +ice cream|5413779 +ice crystal|5413813 +ice cube|5413906 +ice field|5413942 +ice floe|5413970 +ice fog|5414002 +ice hockey|5414031 +ice hockey rink|5414098 +ice lolly|5414169 +ice machine|5414227 +ice maker|5414277 +ice mass|5414314 +ice milk|5414363 +ice needle|5414396 +ice over|5414489 +ice pack|5414532 +ice pick|5414591 +ice plant|5414703 +ice rink|5414791 +ice shelf|5414848 +ice show|5414881 +ice skate|5414904 +ice skating|5414942 +ice storm|5414971 +ice tea|5415023 +ice tongs|5415053 +ice up|5415092 +ice wagon|5415135 +ice water|5415258 +ice yacht|5415292 +ice-clogged|5412534 +ice-cold|5412562 +ice-cream bean|5412585 +ice-cream cake|5412626 +ice-cream cone|5412677 +ice-cream float|5412716 +ice-cream soda|5412768 +ice-cream sundae|5412820 +ice-free|5412868 +ice-hockey player|5412895 +ice-hockey rink|5412968 +ice-skater|5413120 +ice-skating rink|5413147 +ice-wagon|5413204 +iceberg|5415345 +iceberg lettuce|5415433 +iceboat|5415492 +icebound|5415568 +icebox|5415593 +icebox cake|5415634 +icebreaker|5415685 +icecap|5415754 +iced coffee|5415820 +iced tea|5415864 +iced-tea spoon|5415787 +icefall|5415894 +icehouse|5415915 +iceland|5415939 +iceland lichen|5416039 +iceland moss|5416117 +iceland poppy|5416193 +iceland spar|5416310 +icelander|5416353 +icelandic|5416391 +icelandic krona|5416631 +icelandic monetary unit|5416702 +icelandic-speaking|5416556 +iceman|5416773 +icepick|5416873 +icetray|5416904 +ichneumon|5416926 +ichneumon fly|5416974 +ichneumonidae|5417055 +ichor|5417130 +ichorous|5417260 +ichthyolatry|5417344 +ichthyologist|5417403 +ichthyology|5417453 +ichthyosaur|5417501 +ichthyosauria|5417566 +ichthyosauridae|5417636 +ichthyosaurus|5417715 +ichthyosis|5417750 +ichyostega|5417934 +icicle|5417975 +icicle plant|5418005 +iciness|5418093 +icing|5418155 +icing sugar|5418266 +icing the puck|5418302 +icky|5418356 +icon|5418439 +iconic|5418530 +iconoclasm|5418562 +iconoclast|5418612 +iconoclastic|5418686 +iconography|5418719 +iconolatry|5418764 +iconology|5418806 +iconoscope|5418837 +icosahedral|5418903 +icosahedron|5418934 +icsh|5418966 +ictal|5419116 +ictalurus|5419143 +ictalurus punctatus|5419199 +icteria|5419300 +icteria virens|5419350 +icteric|5419430 +icteridae|5419474 +icterogenic|5419532 +icterus|5419560 +icterus galbula|5419634 +icterus galbula bullockii|5419731 +icterus galbula galbula|5419841 +icterus neonatorum|5419980 +icterus spurius|5420087 +ictic|5420183 +ictiobus|5420210 +ictiobus niger|5420263 +ictodosaur|5420341 +ictodosauria|5420387 +ictonyx|5420454 +ictonyx frenata|5420506 +ictonyx striata|5420562 +ictus|5420629 +icu|5420666 +icy|5420720 +id|5420854 +id al-adha|5420979 +id al-fitr|5421048 +id est|5421098 +ida|5421129 +idaho|5421216 +idaho falls|5421265 +idahoan|5421303 +iddm|5421337 +idea|5421603 +ideal|5421943 +ideal gas|5422139 +ideal solid|5422174 +idealisation|5422301 +idealise|5422513 +idealised|5422629 +idealism|5422666 +idealist|5422824 +idealistic|5422860 +ideality|5423010 +idealization|5423036 +idealize|5423248 +idealized|5423364 +ideate|5423401 +ideation|5423483 +ideational|5423553 +idempotent|5423604 +identical|5423634 +identical twin|5423804 +identicalness|5423866 +identifiable|5423928 +identification|5424064 +identification number|5424248 +identified|5424310 +identifier|5424336 +identify|5424363 +identifying|5424608 +identikit|5424671 +identikit picture|5424737 +identity|5424811 +identity card|5425009 +identity crisis|5425061 +identity element|5425119 +identity matrix|5425181 +identity operator|5425232 +identity theft|5425294 +identity verification|5425324 +ideogram|5425420 +ideograph|5425482 +ideographic|5425544 +ideography|5425598 +ideologic|5425645 +ideological|5425702 +ideological barrier|5425759 +ideologist|5425806 +ideologue|5425874 +ideology|5425942 +ides|5426044 +idesia|5426062 +idesia polycarpa|5426100 +idf|5426155 +idiocy|5426244 +idiographic|5426334 +idiolatry|5426367 +idiolect|5426417 +idiom|5426548 +idiom neutral|5426776 +idiomatic|5426833 +idiomatic expression|5426886 +idiomatical|5426981 +idiopathic|5427034 +idiopathic disease|5427068 +idiopathic disorder|5427141 +idiopathic hemochromatosis|5427214 +idiopathic thrombocytopenic purpura|5427342 +idiopathy|5427507 +idiosyncrasy|5427580 +idiosyncratic|5427680 +idiot|5427714 +idiot box|5427795 +idiot light|5427923 +idiot savant|5427968 +idiotic|5428007 +iditarod|5428187 +iditarod trail|5428257 +iditarod trail dog sled race|5428302 +idle|5428392 +idle pulley|5428799 +idle talk|5428870 +idle wheel|5428957 +idle words|5429028 +idleness|5429083 +idler|5429163 +idler pulley|5429219 +idling|5429290 +idly|5429334 +ido|5429354 +idocrase|5429391 +idol|5429438 +idol worship|5429576 +idol worshiper|5429615 +idolater|5429696 +idolatress|5429777 +idolatrous|5429839 +idolatry|5429880 +idolisation|5429962 +idolise|5430056 +idolised|5430115 +idoliser|5430166 +idolization|5430269 +idolize|5430363 +idolized|5430422 +idolizer|5430473 +idp|5430576 +idria columnaris|5430650 +idun|5430744 +idyll|5430782 +idyllic|5430921 +ie|5430971 +ieoh ming pei|5431002 +ifc|5431072 +iffy|5431155 +ig|5431199 +iga|5431334 +igbo|5431446 +igd|5431494 +ige|5431606 +igg|5431718 +igigi|5431830 +iglesias|5431865 +igloo|5431943 +iglu|5431992 +igm|5432041 +ignace jan paderewski|5432153 +ignace paderewski|5432288 +ignatius|5432419 +ignatius of loyola|5432487 +igneous|5432641 +igneous rock|5432707 +ignescent|5432740 +ignis fatuus|5432771 +ignitable|5432936 +ignite|5433008 +ignited|5433211 +igniter|5433258 +ignitible|5433332 +ignition|5433404 +ignition coil|5433566 +ignition key|5433604 +ignition lock|5433630 +ignition switch|5433679 +ignition system|5433745 +ignitor|5433789 +ignoble|5433863 +ignobleness|5434060 +ignobly|5434116 +ignominious|5434142 +ignominiously|5434240 +ignominiousness|5434341 +ignominy|5434408 +ignoramus|5434460 +ignorance|5434527 +ignorant|5434586 +ignorantness|5434818 +ignoratio elenchi|5434884 +ignore|5434927 +ignored|5435080 +igor fyodorovich stravinsky|5435126 +igor ivanovich sikorsky|5435227 +igor sikorsky|5435321 +igor stravinsky|5435405 +igor tamm|5435494 +igor yevgeneevich tamm|5435569 +iguana|5435657 +iguana iguana|5435724 +iguania|5435805 +iguanid|5435887 +iguanid lizard|5435926 +iguanidae|5435965 +iguanodon|5436049 +iguanodontidae|5436077 +iguassu|5436153 +iguassu falls|5436243 +iguazu|5436339 +iguazu falls|5436428 +ii|5436523 +ii chronicles|5436585 +ii corinthians|5436640 +ii esdras|5436772 +ii john|5436815 +ii kings|5436868 +ii maccabees|5436908 +ii peter|5436960 +ii samuel|5437016 +ii thessalonians|5437059 +ii timothy|5437199 +iii|5437307 +iii john|5437479 +iis|5437533 +ijssel|5437663 +ijssel river|5437705 +ijsselmeer|5437753 +ijtihad|5437789 +ike|5437821 +ikhanaton|5438035 +ikon|5438115 +il|5438192 +il duce|5438291 +ilama|5438362 +ilama tree|5438462 +ilang-ilang|5438541 +ile-de-france|5438658 +ile-st-louis|5438709 +ileal artery|5438751 +ileitis|5438842 +ileocecal valve|5438886 +ileocolic artery|5438917 +ileocolic vein|5438999 +ileostomy|5439069 +iles comores|5439095 +iles marquises|5439157 +ileum|5439226 +ileus|5439257 +ilex|5439328 +ilex cornuta|5439389 +ilex decidua|5439449 +ilex glabra|5439523 +ilex paraguariensis|5439614 +iliac|5439687 +iliac artery|5439709 +iliac vein|5439783 +iliad|5439845 +iliamna|5439898 +iliamna acerifolia|5439959 +iliamna remota|5440050 +iliamna ruvularis|5440130 +ilich ramirez sanchez|5440220 +ilich sanchez|5440404 +iliolumbar artery|5440580 +iliolumbar vein|5440665 +ilion|5440738 +ilium|5440799 +ilk|5440875 +ill|5440911 +ill at ease|5444519 +ill fame|5444569 +ill health|5444604 +ill humor|5444672 +ill humour|5444737 +ill luck|5444802 +ill nature|5444903 +ill service|5444947 +ill temper|5444995 +ill timed|5445043 +ill turn|5445192 +ill will|5445240 +ill-advised|5441633 +ill-affected|5441694 +ill-being|5441774 +ill-bred|5441824 +ill-breeding|5441895 +ill-chosen|5441942 +ill-conceived|5442013 +ill-considered|5442054 +ill-defined|5442124 +ill-equipped|5442165 +ill-famed|5442198 +ill-fated|5442249 +ill-favored|5442318 +ill-favoured|5442357 +ill-fed|5442396 +ill-formed|5442450 +ill-gotten|5442484 +ill-humored|5442518 +ill-humoured|5442590 +ill-judged|5442662 +ill-mannered|5442732 +ill-natured|5442790 +ill-omened|5443454 +ill-proportioned|5443523 +ill-shapen|5443609 +ill-sorted|5443678 +ill-starred|5443740 +ill-tempered|5443809 +ill-timed|5443898 +ill-treat|5444047 +ill-treated|5444122 +ill-treatment|5444242 +ill-usage|5444307 +ill-use|5444372 +ill-used|5444447 +illampu|5445319 +illation|5445358 +illative|5445430 +illecebrum|5445549 +illecebrum verticullatum|5445623 +illegal|5445719 +illegal possession|5446077 +illegalise|5446125 +illegality|5446237 +illegalize|5446270 +illegally|5446382 +illegibility|5446420 +illegible|5446462 +illegibly|5446561 +illegitimacy|5446605 +illegitimate|5446685 +illegitimate child|5447010 +illegitimate enterprise|5447111 +illegitimately|5447199 +illiberal|5447253 +illiberality|5447304 +illiberally|5447337 +illicit|5447370 +illicitly|5447497 +illicitness|5447556 +illicium|5447590 +illicium anisatum|5447654 +illicium floridanum|5447721 +illicium verum|5447794 +illimani|5447869 +illimitable|5447910 +illinois|5448003 +illinois river|5448172 +illinoisan|5448217 +illiteracy|5448257 +illiterate|5448318 +illiterate person|5448549 +illness|5448638 +illogic|5448722 +illogical|5448774 +illogicality|5449007 +illogicalness|5449059 +illume|5449111 +illuminance|5449181 +illuminant|5449283 +illuminate|5449308 +illuminated|5449587 +illuminating|5449639 +illumination|5449700 +illumination unit|5449927 +illumine|5449965 +illusion|5450035 +illusional|5450280 +illusionary|5450319 +illusionist|5450358 +illusive|5450495 +illusory|5450529 +illustrate|5450563 +illustration|5450770 +illustrative|5450946 +illustrator|5451050 +illustrious|5451094 +illyria|5451238 +illyrian|5451335 +ilmen|5451412 +ilmenite|5451449 +ilo|5451475 +ilosone|5451591 +ilx|5451693 +ilxx|5451729 +ilxxx|5451766 +ilya ehrenberg|5451806 +ilya grigorievich ehrenberg|5451897 +ilya ilich metchnikov|5452001 +image|5452125 +image breaker|5452620 +image compression|5452694 +image orthicon|5452733 +image scanner|5452812 +imagery|5452908 +imaginable|5452985 +imaginary|5453036 +imaginary being|5453089 +imaginary creature|5453168 +imaginary number|5453247 +imaginary part|5453312 +imaginary part of a complex number|5453393 +imaginary place|5453474 +imagination|5453549 +imagination image|5453779 +imaginative|5453839 +imaginative comparison|5453901 +imaginativeness|5453944 +imagine|5454030 +imagined|5454170 +imaging|5454223 +imagism|5454353 +imago|5454401 +imam|5454463 +imamu amiri baraka|5454546 +imaret|5454626 +imaum|5454668 +imavate|5454751 +imbalance|5454885 +imbalanced|5454986 +imbauba|5455017 +imbecile|5455134 +imbecilic|5455261 +imbecility|5455318 +imbed|5455466 +imbibe|5455538 +imbiber|5455721 +imbibing|5455768 +imbibition|5455842 +imbricate|5455945 +imbricated|5456044 +imbrication|5456089 +imbroglio|5456139 +imbrue|5456232 +imbue|5456275 +imf|5456413 +imidazole|5456490 +imide|5456542 +iminazole|5456574 +imipramine|5456626 +imitate|5456752 +imitation|5456831 +imitation leather|5457080 +imitative|5457149 +imitative electronic deception|5457532 +imitator|5457624 +immaculate|5457791 +immaculate conception|5457934 +immaculateness|5458098 +immanence|5458145 +immanency|5458193 +immanent|5458241 +immanuel kant|5458299 +immaterial|5458353 +immaterialise|5458647 +immateriality|5458738 +immaterialize|5458815 +immature|5458906 +immaturely|5459572 +immatureness|5459600 +immaturity|5459639 +immeasurable|5459678 +immeasurably|5459837 +immediacy|5459881 +immediate|5460054 +immediate allergy|5460195 +immediate apprehension|5460294 +immediate constituent|5460346 +immediate memory|5460413 +immediate payment|5460480 +immediately|5460520 +immediateness|5460643 +immemorial|5460772 +immense|5460796 +immensely|5460844 +immenseness|5460869 +immensity|5460973 +immensurable|5461077 +immerse|5461178 +immersion|5461391 +immersion foot|5461592 +immersion heater|5461648 +immigrant|5461690 +immigrant class|5461726 +immigrate|5461791 +immigration|5461885 +immigration and naturalization service|5461941 +imminence|5462096 +imminency|5462182 +imminent|5462268 +imminent abortion|5462324 +imminentness|5462415 +immingle|5462501 +immiscible|5462581 +immix|5462635 +immobile|5462734 +immobilisation|5462867 +immobilise|5462971 +immobility|5463246 +immobilization|5463331 +immobilize|5463435 +immobilizing|5463710 +immoderate|5463772 +immoderately|5464101 +immoderateness|5464160 +immoderation|5464216 +immodest|5464272 +immodestly|5464394 +immodesty|5464429 +immolate|5464490 +immolation|5464518 +immoral|5464563 +immorality|5464916 +immorally|5465000 +immortal|5465027 +immortalise|5465253 +immortality|5465415 +immortalize|5465485 +immortelle|5465647 +immotile|5465717 +immotility|5465754 +immovability|5465785 +immovable|5465832 +immovable bandage|5465889 +immovableness|5465930 +immoveable|5465977 +immune|5466034 +immune carrier|5466203 +immune gamma globulin|5466261 +immune globulin|5466393 +immune reaction|5466525 +immune response|5466605 +immune serum globulin|5466685 +immune suppressant drug|5466817 +immune system|5466937 +immunisation|5466967 +immunise|5467013 +immunised|5467097 +immunity|5467165 +immunization|5467335 +immunize|5467381 +immunized|5467465 +immunizing agent|5467533 +immunoassay|5467577 +immunochemical|5467628 +immunochemical assay|5467689 +immunochemistry|5467740 +immunocompromised|5467819 +immunodeficiency|5467860 +immunoelectrophoresis|5467909 +immunofluorescence|5467997 +immunogen|5468035 +immunoglobulin|5468079 +immunoglobulin a|5468211 +immunoglobulin d|5468336 +immunoglobulin e|5468461 +immunoglobulin g|5468586 +immunoglobulin m|5468711 +immunohistochemistry|5468836 +immunologic|5468872 +immunologic response|5468933 +immunological|5469013 +immunological disorder|5469074 +immunologist|5469121 +immunology|5469161 +immunopathology|5469208 +immunosuppressant|5469244 +immunosuppressed|5469364 +immunosuppression|5469412 +immunosuppressive|5469462 +immunosuppressive drug|5469511 +immunotherapeutic|5469631 +immunotherapy|5469665 +immure|5469696 +immurement|5469798 +immutability|5469867 +immutable|5469973 +immutableness|5470013 +immutably|5470119 +imo|5470175 +imogene coca|5470260 +imou pine|5470311 +imp|5470390 +impact|5470603 +impact printer|5470890 +impacted|5470939 +impacted fracture|5470972 +impacted tooth|5471014 +impaction|5471063 +impair|5471189 +impaired|5471253 +impairer|5471436 +impairment|5471460 +impala|5471723 +impala lily|5471767 +impale|5471868 +impalement|5471938 +impalpability|5471984 +impalpable|5472065 +impanel|5472201 +imparipinnate|5472280 +impart|5472324 +impartation|5472560 +impartial|5472615 +impartiality|5472800 +imparting|5472871 +impassable|5472926 +impasse|5473021 +impassioned|5473146 +impassive|5473231 +impassiveness|5473356 +impassivity|5473459 +impasto|5473562 +impatience|5473588 +impatiens capensis|5473720 +impatient|5473852 +impatient of|5473964 +impatiently|5474010 +impeach|5474046 +impeachability|5474184 +impeachment|5474239 +impeccable|5474321 +impeccant|5474386 +impecunious|5474431 +impecuniousness|5474521 +impedance|5474606 +impede|5474729 +impeded|5474824 +impediment|5474852 +impedimenta|5475005 +impeding|5475117 +impel|5475190 +impelled|5475253 +impellent|5475288 +impeller|5475316 +impelling|5475345 +impend|5475396 +impendence|5475415 +impendency|5475501 +impending|5475587 +impenetrability|5475643 +impenetrable|5475758 +impenetrableness|5475871 +impenitence|5475933 +impenitency|5476039 +impenitent|5476145 +impenitently|5476260 +imperative|5476295 +imperative mood|5476543 +imperatively|5476611 +imperativeness|5476645 +imperceptibility|5476760 +imperceptible|5476804 +imperceptibly|5477007 +imperfect|5477053 +imperfect tense|5477267 +imperfectability|5477355 +imperfectibility|5477425 +imperfection|5477495 +imperfective|5477537 +imperfective aspect|5477604 +imperfectly|5477671 +imperfectness|5477697 +imperforate|5477739 +imperforate anus|5477766 +imperforate hymen|5477912 +imperial|5477974 +imperial beard|5478150 +imperial capacity unit|5478210 +imperial decree|5478335 +imperial elephant|5478393 +imperial gallon|5478469 +imperial japanese morning glory|5478570 +imperial mammoth|5478676 +imperial moth|5478752 +imperialism|5478818 +imperialist|5478924 +imperialistic|5478990 +imperil|5479032 +imperious|5479111 +imperiousness|5479152 +imperishability|5479263 +imperishable|5479326 +imperishingness|5479465 +impermanence|5479528 +impermanency|5479579 +impermanent|5479630 +impermeability|5479901 +impermeable|5479960 +impermeableness|5480083 +impermissibility|5480142 +impermissible|5480184 +impersonal|5480335 +impersonate|5480417 +impersonation|5480526 +impersonator|5480723 +impertinence|5480804 +impertinent|5481006 +impertinently|5481166 +imperturbability|5481222 +imperturbable|5481284 +imperturbableness|5481328 +imperviable|5481390 +impervious|5481559 +imperviousness|5481739 +impetiginous|5481810 +impetigo|5481906 +impetuosity|5481999 +impetuous|5482048 +impetuously|5482139 +impetuousness|5482171 +impetus|5482220 +impiety|5482311 +impinge|5482356 +impinge on|5482495 +impingement|5482554 +impinging|5482634 +impious|5482705 +impiousness|5482834 +impish|5482879 +impishly|5482950 +impishness|5482977 +implacable|5483054 +implant|5483188 +implantation|5483359 +implanted|5483573 +implausibility|5483658 +implausible|5483727 +implausibleness|5483857 +implausibly|5483926 +implement|5483981 +implemental|5484208 +implementation|5484250 +implemented|5484354 +implements of war|5484384 +implicate|5484528 +implicated|5484595 +implication|5484634 +implicational|5484850 +implicative|5484922 +implicit|5484994 +implicit in|5485227 +implicitness|5485288 +implied|5485325 +implied trust|5485386 +implike|5485415 +implode|5485486 +implore|5485563 +imploring|5485595 +imploringly|5485656 +implosion|5485727 +implosion therapy|5485789 +imply|5485864 +impolite|5486107 +impolitely|5486230 +impoliteness|5486291 +impolitic|5486334 +imponderable|5486424 +import|5486476 +import barrier|5486807 +import credit|5486859 +import duty|5486889 +importance|5486922 +important|5486974 +important person|5487818 +important-looking|5487780 +importantly|5487887 +importation|5487921 +imported|5488030 +importee|5488056 +importer|5488118 +importing|5488161 +importunate|5488228 +importunately|5488289 +importune|5488360 +importunity|5488403 +impose|5488452 +imposed|5488584 +imposing|5488612 +imposingly|5488707 +imposition|5488739 +impossibility|5488830 +impossible|5488942 +impossible action|5489319 +impossibleness|5489386 +impost|5489447 +imposter|5489525 +impostor|5489667 +imposture|5489809 +impotence|5489885 +impotency|5489975 +impotent|5490065 +impotently|5490187 +impound|5490232 +impounding|5490323 +impoundment|5490383 +impoverish|5490443 +impoverished|5490501 +impoverishment|5490616 +impracticability|5490753 +impracticable|5490832 +impracticableness|5490899 +impractical|5490978 +impracticality|5491210 +impramine hydrochloride|5491269 +imprecate|5491395 +imprecation|5491646 +imprecise|5491735 +imprecisely|5491818 +impreciseness|5491848 +imprecision|5491908 +impregnability|5491968 +impregnable|5492015 +impregnate|5492134 +impregnated|5492362 +impregnation|5492425 +impresario|5492578 +impress|5492636 +impressed|5492880 +impressible|5492908 +impression|5492981 +impressionable|5493356 +impressionism|5493444 +impressionist|5493512 +impressionistic|5493596 +impressive|5493684 +impressive aphasia|5494168 +impressively|5494272 +impressiveness|5494304 +impressment|5494362 +imprimatur|5494399 +imprint|5494494 +imprinting|5494735 +imprison|5494776 +imprisoned|5494900 +imprisonment|5494951 +improbability|5495102 +improbable|5495166 +improbableness|5495326 +improbably|5495390 +impromptu|5495445 +improper|5495653 +improper fraction|5495941 +improperness|5495977 +impropriety|5496068 +improvable|5496279 +improve|5496310 +improved|5496434 +improvement|5496537 +improver|5496671 +improvidence|5496783 +improvident|5496833 +improving|5497019 +improvisation|5497048 +improvise|5497168 +improvised|5497323 +improvize|5497387 +imprudence|5497466 +imprudent|5497511 +impudence|5497655 +impudent|5497799 +impudently|5497918 +impugn|5497974 +impugnable|5498000 +impuissance|5498033 +impulse|5498110 +impulse explosive|5498401 +impulse turbine|5498459 +impulse-buy|5498367 +impulsion|5498492 +impulsive|5498581 +impulsively|5498794 +impulsiveness|5498826 +impunity|5498882 +impure|5498918 +impureness|5499212 +impurity|5499258 +imputable|5499365 +imputation|5499425 +impute|5499494 +imputrescible|5499573 +imu|5499609 +imuran|5499755 +in|5499837 +in a bad way|5500708 +in a beastly manner|5500819 +in a big way|5500867 +in a broad way|5500904 +in a circle|5500936 +in a flash|5500967 +in a heartfelt way|5501021 +in a higher place|5501055 +in a low voice|5501115 +in a moment|5501149 +in a pig's eye|5501190 +in a sense|5501229 +in a similar way|5501257 +in a way|5501290 +in a well mannered way|5501341 +in abeyance|5501423 +in accord|5501479 +in addition|5501507 +in advance|5501548 +in agreement|5501614 +in all|5501676 +in all likelihood|5501711 +in all probability|5501779 +in an arch manner|5501847 +in an editorial|5501880 +in an elaborate way|5501934 +in and of itself|5501986 +in any case|5502040 +in any event|5502113 +in apposition|5502172 +in arrears|5502207 +in attendance|5502244 +in awe of|5502285 +in bondage|5502340 +in bonds|5502391 +in both ears|5502444 +in breadth|5502489 +in brief|5502529 +in camera|5502581 +in case|5502620 +in chains|5502649 +in charge|5502692 +in check|5502720 +in chorus|5502764 +in circles|5502792 +in cold blood|5502823 +in collaboration|5502889 +in commission|5502932 +in concert|5502993 +in conclusion|5503034 +in condition|5503076 +in darkness|5503143 +in demand|5503170 +in depth|5503263 +in disagreement|5503286 +in dishabille|5503319 +in dispute|5503366 +in disrepair|5503444 +in due course|5503488 +in due season|5503569 +in due time|5503650 +in dutch|5503731 +in earnest|5503767 +in effect|5503844 +in essence|5503915 +in everyone's thoughts|5504048 +in evidence|5504090 +in fact|5504131 +in fetters|5504184 +in fiscal matters|5504237 +in flight|5504272 +in flood|5504302 +in focus|5504354 +in for|5504389 +in force|5504418 +in front|5504471 +in full|5504501 +in full action|5504523 +in full swing|5504560 +in full view|5504611 +in gear|5504645 +in general|5504669 +in good order|5504745 +in good spirits|5504812 +in good taste|5504869 +in good time|5505017 +in great confusion|5505098 +in hand|5505183 +in harmony|5505292 +in haste|5505375 +in height|5505410 +in her own right|5505434 +in her right mind|5505512 +in hiding|5505583 +in high spirits|5505620 +in his own right|5505657 +in his right mind|5505735 +in its own right|5505806 +in kind|5505884 +in labor|5505917 +in large quantities|5505955 +in league|5505993 +in length|5506019 +in line|5506043 +in love|5506087 +in low spirits|5506175 +in name|5506209 +in name only|5506238 +in no time|5506267 +in no way|5506296 +in one case|5506536 +in one ear|5506570 +in one's birthday suit|5506320 +in one's own right|5506458 +in operation|5506611 +in opposition|5506665 +in order|5506691 +in other words|5506766 +in particular|5506805 +in passing|5506840 +in person|5506870 +in place|5507018 +in play|5507043 +in point of fact|5507065 +in poor taste|5507118 +in principle|5507359 +in private|5507401 +in progress|5507440 +in proportion to|5507477 +in public|5507544 +in question|5507582 +in real time|5507707 +in reality|5507830 +in remission|5507858 +in reply|5507898 +in restraint|5507920 +in return|5507964 +in safe custody|5507995 +in secret|5508027 +in series|5508076 +in service|5508127 +in short|5508161 +in sight|5508213 +in situ|5508255 +in small stages|5508280 +in so far|5508356 +in some manner|5508492 +in some respects|5508552 +in some way|5508586 +in spades|5508646 +in spite of appearance|5508725 +in stages|5508792 +in stock|5508848 +in store|5508876 +in straitened circumstances|5508901 +in stride|5508991 +in style|5509048 +in suspense|5509112 +in that|5509217 +in that location|5509249 +in that respect|5509294 +in the adjacent apartment|5509338 +in the adjacent house|5509404 +in the air|5509470 +in the altogether|5509512 +in the bargain|5509634 +in the beginning|5509674 +in the buff|5509780 +in the end|5509902 +in the final analysis|5509983 +in the first place|5510045 +in the flesh|5510138 +in the head|5510189 +in the last analysis|5510230 +in the lead|5510292 +in the least|5510352 +in the long run|5510414 +in the main|5510449 +in the meantime|5510533 +in the middle|5510576 +in the midst|5510619 +in the mind|5510662 +in the nick of time|5510703 +in the north|5510744 +in the public eye|5510815 +in the raw|5510849 +in the south|5510971 +in their right minds|5511011 +in theory|5511082 +in this|5511168 +in time|5511200 +in trouble|5511283 +in truth|5511374 +in turn|5511404 +in two ways|5511433 +in unison|5511460 +in use|5511504 +in vain|5511554 +in view|5511577 +in vitro|5511619 +in vivo|5511668 +in vogue|5511693 +in width|5511757 +in working order|5511797 +in writing|5511882 +in your birthday suit|5511943 +in-basket|5500052 +in-between|5500090 +in-bounds|5500138 +in-chief|5500162 +in-fighting|5500200 +in-joke|5500283 +in-law|5500325 +in-line skate|5500375 +in-migration|5500417 +in-person|5500461 +in-situ|5500592 +in-tray|5500637 +in-your-face|5500675 +inability|5512081 +inaccessibility|5512152 +inaccessible|5512206 +inaccuracy|5512522 +inaccurate|5512550 +inachis|5512720 +inachis io|5512775 +inaction|5512907 +inactivate|5513000 +inactivation|5513101 +inactive|5513260 +inactiveness|5513865 +inactivity|5513986 +inadequacy|5514107 +inadequate|5514238 +inadequateness|5514436 +inadmissibility|5514490 +inadmissible|5514548 +inadvertence|5514597 +inadvertency|5514699 +inadvertent|5514775 +inadvertently|5514818 +inadvisability|5514864 +inadvisable|5514900 +inadvisably|5514972 +inaesthetic|5515004 +inalienable|5515086 +inalterable|5515263 +inamorata|5515317 +inamorato|5515361 +inane|5515401 +inanely|5515457 +inanimate|5515483 +inanimateness|5515590 +inanition|5515649 +inanity|5515714 +inanna|5515796 +inapplicability|5515833 +inapplicable|5515882 +inapposite|5515926 +inappositeness|5515970 +inappreciable|5516022 +inappropriate|5516071 +inappropriately|5516255 +inappropriateness|5516303 +inapt|5516411 +inaptitude|5516482 +inaptness|5516512 +inarguable|5516564 +inarticulate|5516623 +inarticulately|5516886 +inartistic|5516922 +inattention|5516977 +inattentive|5517022 +inattentively|5517362 +inattentiveness|5517421 +inaudibility|5517484 +inaudible|5517538 +inaudibleness|5517696 +inaugural|5517750 +inaugural address|5517923 +inaugurate|5517975 +inauguration|5518106 +inauguration day|5518216 +inauspicious|5518274 +inauspiciously|5518422 +inauspiciousness|5518460 +inauthentic|5518536 +inboard|5518600 +inborn|5518625 +inborn error of metabolism|5518735 +inborn reflex|5518954 +inbound|5519079 +inbred|5519121 +inbreeding|5519193 +inbuilt|5519268 +inc|5519349 +inca|5519401 +incalculable|5519471 +incalescence|5519709 +incan|5519773 +incandesce|5519819 +incandescence|5519873 +incandescent|5520014 +incandescent lamp|5520066 +incantation|5520168 +incapability|5520225 +incapable|5520313 +incapableness|5520485 +incapacitate|5520572 +incapacitated|5520677 +incapacitating|5520758 +incapacity|5520814 +incarcerate|5520878 +incarceration|5520980 +incarnadine|5521049 +incarnate|5521140 +incarnation|5521324 +incase|5521492 +incased|5521544 +incasement|5521584 +incaution|5521657 +incautious|5521704 +incautiously|5521865 +incautiousness|5521897 +incendiarism|5521944 +incendiary|5522004 +incendiary bomb|5522239 +incense|5522289 +incense cedar|5522448 +incense tree|5522564 +incense wood|5522591 +incensed|5522618 +incentive|5522672 +incentive option|5522749 +incentive program|5522805 +incentive scheme|5522865 +incentive stock option|5522925 +inception|5522981 +incertain|5523029 +incertitude|5523103 +incessancy|5523205 +incessant|5523280 +incessantly|5523423 +incessantness|5523501 +incest|5523576 +incestuous|5523636 +inch|5523718 +incheon|5523851 +inchoate|5523926 +inchoative|5523960 +inchoative aspect|5523999 +inchon|5524033 +inchworm|5524140 +incidence|5524192 +incidence angle|5524285 +incident|5524335 +incidental|5524584 +incidental expense|5524866 +incidental music|5524927 +incidental to|5524984 +incidentally|5525072 +incienso|5525158 +incinerate|5525241 +incineration|5525314 +incinerator|5525355 +incipience|5525384 +incipiency|5525502 +incipient|5525620 +incise|5525654 +incised|5525674 +incision|5525765 +incisive|5525882 +incisively|5526038 +incisiveness|5526075 +incisor|5526161 +incisura|5526184 +incisure|5526217 +incitation|5526250 +incite|5526356 +incitement|5526492 +inciter|5526669 +incitive|5526785 +incivility|5526876 +inclemency|5526917 +inclement|5527090 +inclementness|5527232 +inclination|5527326 +inclination of an orbit|5527673 +incline|5527724 +incline bench press|5528024 +inclined|5528065 +inclined fault|5528434 +inclined plane|5528502 +inclining|5528549 +inclinometer|5528610 +inclose|5528790 +inclosure|5528925 +include|5529062 +included|5529171 +inclusion|5529198 +inclusion body|5529347 +inclusion body encephalitis|5529405 +inclusion body myositis|5529666 +inclusive|5529708 +incognito|5529751 +incognizable|5529780 +incognizant|5529844 +incognoscible|5529885 +incoherence|5529949 +incoherency|5530125 +incoherent|5530301 +incombustible|5530516 +income|5530664 +income bracket|5530695 +income statement|5530758 +income tax|5530876 +income tax bracket|5530929 +income tax return|5530992 +incoming|5531098 +incommensurable|5531291 +incommensurate|5531364 +incommode|5531444 +incommodious|5531568 +incommodiousness|5531611 +incommunicado|5531680 +incommunicative|5531735 +incommutability|5532027 +incommutable|5532070 +incomparable|5532168 +incomparably|5532396 +incompatibility|5532430 +incompatible|5532592 +incompetence|5533058 +incompetency|5533128 +incompetent|5533183 +incompetent cervix|5533492 +incompetent person|5533555 +incompetently|5533612 +incomplete|5533658 +incomplete abortion|5533824 +incomplete fracture|5533914 +incompleteness|5533958 +incomprehensibility|5534008 +incomprehensible|5534045 +incomprehension|5534435 +incomprehensive|5534470 +incompressibility|5534520 +incompressible|5534556 +incomputable|5534595 +inconceivability|5534655 +inconceivable|5534728 +inconceivableness|5534807 +inconclusive|5534880 +inconclusiveness|5535040 +inconel|5535140 +incongruent|5535177 +incongruity|5535210 +incongruous|5535263 +incongruousness|5535401 +inconsequence|5535454 +inconsequent|5535492 +inconsequential|5535542 +inconsequentially|5535619 +inconsequently|5535660 +inconsiderable|5535701 +inconsiderate|5535762 +inconsiderately|5535911 +inconsiderateness|5535957 +inconsideration|5536027 +inconsistency|5536097 +inconsistent|5536207 +inconsolable|5536436 +inconspicuous|5536506 +inconspicuousness|5536574 +inconstancy|5536628 +inconstant|5536760 +incontestable|5536879 +incontestible|5537123 +incontinence|5537309 +incontinency|5537461 +incontinent|5537547 +incontrovertibility|5537586 +incontrovertible|5537704 +incontrovertibleness|5537810 +incontrovertibly|5537928 +inconvenience|5537975 +inconvenience oneself|5538256 +inconvenient|5538338 +inconvertibility|5538400 +inconvertible|5538493 +incoordination|5538607 +incorporate|5538646 +incorporated|5538823 +incorporation|5538935 +incorporative|5539061 +incorporeal|5539095 +incorporeality|5539212 +incorrect|5539258 +incorrectly|5539396 +incorrectness|5539444 +incorrigible|5539517 +incorrupt|5539652 +incorruptibility|5539753 +incorruptible|5539798 +incorruption|5539831 +incorruptness|5539886 +increase|5539941 +increased|5540173 +increasing|5540341 +increasing monotonic|5540631 +increasingly|5540680 +incredibility|5540729 +incredible|5540775 +incredibleness|5541005 +incredibly|5541051 +incredulity|5541106 +incredulous|5541228 +incredulously|5541354 +increment|5541405 +incremental|5541471 +incremental cost|5541504 +incriminate|5541588 +incriminating|5541701 +incrimination|5541786 +incriminatory|5541846 +incrust|5541931 +incrustation|5542070 +incubate|5542227 +incubation|5542307 +incubation period|5542429 +incubator|5542490 +incubus|5542533 +inculcate|5542654 +inculcation|5542694 +inculpability|5542752 +inculpable|5542828 +inculpableness|5542919 +inculpate|5542995 +inculpation|5543062 +inculpative|5543122 +inculpatory|5543362 +incumbency|5543614 +incumbent|5543761 +incumbent on|5543848 +incumbrance|5543881 +incur|5544118 +incurability|5544179 +incurable|5544252 +incurableness|5544356 +incurious|5544407 +incurrence|5544475 +incurring|5544506 +incursion|5544537 +incursive|5544673 +incurvate|5544720 +incurvation|5544815 +incurvature|5544893 +incurved|5544956 +incus|5544999 +indaba|5545037 +indapamide|5545061 +indebted|5545121 +indebtedness|5545166 +indecency|5545230 +indecent|5545326 +indecent exposure|5545533 +indecipherable|5545649 +indecision|5545758 +indecisive|5545919 +indecisiveness|5546099 +indecorous|5546256 +indecorously|5546379 +indecorousness|5546413 +indecorum|5546472 +indeed|5546603 +indefatigability|5546621 +indefatigable|5546700 +indefatigableness|5546764 +indefatigably|5546843 +indefeasible|5546890 +indefensible|5546951 +indefinable|5547069 +indefinite|5547212 +indefinite article|5547331 +indefinite integral|5547367 +indefinite quantity|5547405 +indefiniteness|5547458 +indefinity|5547567 +indehiscent|5547676 +indelible|5547709 +indelible ink|5547752 +indelicacy|5547779 +indelicate|5547878 +indemnification|5547981 +indemnify|5548095 +indemnity|5548178 +indene|5548322 +indent|5548350 +indentation|5548569 +indented|5548772 +indenture|5548875 +indentured|5549085 +independence|5549139 +independence day|5549254 +independence hall|5549350 +independency|5549412 +independent|5549455 +independent agency|5550096 +independent clause|5550188 +independent state of papua new guinea|5550235 +independent state of samoa|5550356 +independent variable|5550473 +independently|5550552 +inderal|5550584 +indescribable|5550688 +indescribably|5550796 +indestructibility|5550852 +indestructible|5550924 +indeterminable|5551030 +indeterminacy|5551203 +indeterminacy principle|5551312 +indeterminate|5551385 +indeterminateness|5551623 +indetermination|5551732 +index|5551841 +index case|5552156 +index finger|5552184 +index fossil|5552230 +index fund|5552272 +index number|5552346 +index of refraction|5552398 +index register|5552450 +indexation|5552483 +indexer|5552525 +indexical|5552572 +indexing|5552595 +indexless|5552711 +india|5552742 +india ink|5553208 +india paper|5553253 +india rubber|5553280 +india-rubber fig|5552815 +india-rubber plant|5552945 +india-rubber tree|5553077 +indiaman|5553351 +indian|5553406 +indian agent|5553754 +indian arrowroot|5553809 +indian banyan|5553919 +indian bean|5554042 +indian beech|5554187 +indian beet|5554243 +indian blackwood|5554357 +indian blanket|5554500 +indian breadroot|5554608 +indian buffalo|5554733 +indian button fern|5554827 +indian capital|5554899 +indian cherry|5554982 +indian chickweed|5555055 +indian chief|5555135 +indian chieftain|5555218 +indian chocolate|5555305 +indian cholera|5555406 +indian club|5555505 +indian cobra|5555543 +indian coral tree|5555594 +indian corn|5555697 +indian cress|5555770 +indian crocus|5555851 +indian currant|5555914 +indian elephant|5556002 +indian file|5556068 +indian giver|5556123 +indian grackle|5556180 +indian hemp|5556298 +indian lettuce|5556525 +indian lodge|5556586 +indian lotus|5556669 +indian madder|5556751 +indian mallow|5556841 +indian meal|5557005 +indian millet|5557052 +indian monetary unit|5557246 +indian mongoose|5557311 +indian mustard|5557377 +indian mutiny|5557543 +indian ocean|5557639 +indian paint|5557680 +indian paintbrush|5557862 +indian pea|5558089 +indian pink|5558165 +indian pipe|5558334 +indian plantain|5558419 +indian poke|5558482 +indian pony|5558647 +indian potato|5558692 +indian python|5558906 +indian race|5558965 +indian rat snake|5559043 +indian rattlebox|5559110 +indian red|5559197 +indian relish|5559328 +indian reservation|5559383 +indian rhinoceros|5559431 +indian rhododendron|5559514 +indian rhubarb|5559598 +indian rice|5559822 +indian rosewood|5559889 +indian rupee|5560031 +indian salad|5560093 +indian senna|5560218 +indian shot|5560378 +indian summer|5560448 +indian tapir|5560541 +indian tick fever|5560612 +indian tobacco|5560712 +indian trail|5560847 +indian turnip|5560888 +indiana|5561006 +indianan|5561063 +indianapolis|5561107 +indic|5561175 +indicant|5561242 +indicate|5561326 +indication|5561478 +indicative|5561620 +indicative mood|5561827 +indicator|5561933 +indicator lamp|5562085 +indicatoridae|5562142 +indicatory|5562212 +indict|5562289 +indictability|5562319 +indictable|5562374 +indiction|5562412 +indictment|5562465 +indie|5562591 +indifference|5562635 +indifferent|5562848 +indigen|5563153 +indigence|5563239 +indigene|5563334 +indigenous|5563420 +indigenousness|5563495 +indigent|5563551 +indigestibility|5563632 +indigestible|5563695 +indigestibleness|5563790 +indigestion|5563853 +indigirka|5563920 +indigirka river|5563971 +indignant|5564028 +indignation|5564082 +indignity|5564128 +indigo|5564162 +indigo bird|5564285 +indigo broom|5564359 +indigo bunting|5564451 +indigo finch|5564525 +indigo plant|5564599 +indigo snake|5564660 +indigo squill|5564737 +indigofera|5564829 +indigofera anil|5564895 +indigofera suffruticosa|5565006 +indigofera tinctoria|5565125 +indigotin|5565207 +indinavir|5565251 +indira gandhi|5565301 +indira nehru gandhi|5565409 +indirect|5565523 +indirect antonym|5565969 +indirect correlation|5566026 +indirect discourse|5566114 +indirect evidence|5566157 +indirect expression|5566217 +indirect fire|5566282 +indirect immunofluorescence|5566317 +indirect lighting|5566378 +indirect object|5566422 +indirect request|5566454 +indirect tax|5566500 +indirect transmission|5566555 +indirection|5566609 +indirectness|5566698 +indiscernible|5566735 +indiscipline|5566831 +indiscreet|5566872 +indiscreetness|5566956 +indiscrete|5567050 +indiscretion|5567082 +indiscriminate|5567200 +indiscriminately|5567353 +indiscriminating|5567469 +indispensability|5567590 +indispensable|5567671 +indispensableness|5567778 +indispose|5567859 +indisposed|5568000 +indisposition|5568147 +indisputability|5568273 +indisputable|5568391 +indissoluble|5568471 +indistinct|5568528 +indistinctly|5568700 +indistinctness|5568727 +indistinguishability|5568801 +indistinguishable|5568863 +indite|5568948 +indium|5568998 +individual|5569057 +individual retirement account|5569453 +individualisation|5569630 +individualise|5569715 +individualised|5569907 +individualism|5569981 +individualist|5570136 +individualistic|5570246 +individuality|5570341 +individualization|5570444 +individualize|5570529 +individualized|5570721 +individually|5570795 +individuate|5570878 +individuation|5570943 +indivisible|5571069 +indivisible by|5571152 +indo-aryan|5571200 +indo-european|5571336 +indo-european language|5571609 +indo-germanic|5571715 +indo-hittite|5571789 +indo-iranian|5571885 +indo-iranian language|5571992 +indochina|5572108 +indochinese peninsula|5572169 +indocile|5572242 +indocin|5572308 +indoctrinate|5572419 +indoctrination|5572462 +indoleacetic acid|5572516 +indolebutyric acid|5572553 +indolence|5572587 +indolent|5572647 +indomethacin|5572725 +indomitability|5572828 +indomitable|5572875 +indonesia|5572936 +indonesian|5573024 +indonesian borneo|5573153 +indonesian monetary unit|5573224 +indoor|5573297 +indoor garden|5573352 +indoors|5573427 +indorse|5573450 +indorsement|5573639 +indorser|5573913 +indra|5574047 +indrawn|5574080 +indri|5574131 +indri brevicaudatus|5574191 +indri indri|5574271 +indriidae|5574343 +indris|5574403 +indubitability|5574514 +indubitable|5574632 +induce|5574681 +induced|5574908 +induced abortion|5574960 +inducement|5574995 +inducer|5575085 +inducing|5575138 +inducive|5575185 +induct|5575223 +inductance|5575398 +inductance unit|5575480 +inductee|5575530 +induction|5575627 +induction accelerator|5576088 +induction coil|5576174 +induction heating|5576203 +induction of labor|5576246 +inductive|5576284 +inductive reasoning|5576416 +inductor|5576497 +indue|5576544 +indulge|5576598 +indulgence|5576823 +indulgent|5577118 +indulging|5577409 +indument|5577472 +indumentum|5577533 +indurate|5577594 +indurated clay|5577756 +induration|5577790 +induration of the arteries|5577830 +indus|5577973 +indus river|5578039 +indusial|5578084 +indusium|5578133 +industrial|5578183 +industrial air pollution|5578470 +industrial arts|5578518 +industrial bank|5578594 +industrial disease|5578687 +industrial engineering|5578744 +industrial enterprise|5578857 +industrial loan company|5578945 +industrial management|5579038 +industrial park|5579151 +industrial plant|5579234 +industrial process|5579297 +industrial psychology|5579333 +industrial revolution|5579416 +industrial union|5579492 +industrial watercourse|5579588 +industrial workers of the world|5579626 +industrial-strength|5578420 +industrialisation|5579807 +industrialise|5579895 +industrialised|5579980 +industrialism|5580030 +industrialist|5580077 +industrialization|5580127 +industrialize|5580215 +industrialized|5580300 +industrious|5580350 +industriousness|5580464 +industry|5580530 +industry analyst|5580695 +indwell|5580729 +indweller|5580773 +indwelling|5580890 +inebriant|5580917 +inebriate|5581033 +inebriated|5581262 +inebriation|5581661 +inebriety|5581819 +inedible|5581901 +ineffable|5581979 +ineffably|5582136 +ineffective|5582192 +ineffectively|5582392 +ineffectiveness|5582430 +ineffectual|5582520 +ineffectuality|5582760 +ineffectualness|5582850 +inefficacious|5582940 +inefficaciously|5583013 +inefficaciousness|5583051 +inefficacy|5583136 +inefficiency|5583221 +inefficient|5583258 +inelaborate|5583392 +inelastic|5583431 +inelasticity|5583500 +inelegance|5583540 +inelegant|5583568 +ineligibility|5583697 +ineligible|5583742 +ineloquently|5583879 +ineluctability|5583915 +ineluctable|5583995 +ineluctably|5584051 +inept|5584106 +ineptitude|5584231 +ineptly|5584322 +ineptness|5584349 +inequality|5584484 +inequitable|5584515 +inequity|5584555 +ineradicable|5584647 +inerrable|5584776 +inerrancy|5584824 +inerrant|5584857 +inert|5584905 +inert gas|5585009 +inertia|5585075 +inertial|5585151 +inertial frame|5585190 +inertial guidance|5585309 +inertial guidance system|5585384 +inertial mass|5585452 +inertial navigation|5585480 +inertial navigation system|5585555 +inertial reference frame|5585623 +inertness|5585742 +inescapable|5585772 +inescapably|5585828 +inessential|5585883 +inessentiality|5586120 +inestimable|5586157 +inevitability|5586217 +inevitable|5586296 +inevitable accident|5586426 +inevitableness|5586559 +inevitably|5586638 +inexact|5586730 +inexactitude|5586865 +inexactly|5586910 +inexactness|5586940 +inexcusable|5586985 +inexcusably|5587118 +inexhaustible|5587184 +inexhaustibly|5587267 +inexorability|5587314 +inexorable|5587396 +inexorableness|5587536 +inexpedience|5587618 +inexpediency|5587666 +inexpedient|5587714 +inexpensive|5587817 +inexpensively|5588026 +inexpensiveness|5588078 +inexperience|5588129 +inexperienced|5588161 +inexperienced person|5588414 +inexpert|5588506 +inexpertly|5588568 +inexpiable|5588605 +inexplicable|5588638 +inexplicit|5588862 +inexplicitness|5589056 +inexpressible|5589092 +inexpressive|5589214 +inexpugnable|5589268 +inexpungeable|5589316 +inexpungible|5589365 +inextensible|5589414 +inexterminable|5589464 +inextinguishable|5589514 +inextirpable|5589557 +inextricable|5589607 +infallibility|5589655 +infallible|5589732 +infamous|5589811 +infamy|5589862 +infancy|5589935 +infant|5590030 +infant death|5590175 +infant deathrate|5590270 +infant feeding|5590405 +infant mortality|5590450 +infant mortality rate|5590585 +infant prodigy|5590720 +infant school|5590860 +infant's-breath|5590066 +infanticide|5590944 +infantile|5591027 +infantile amaurotic idiocy|5591105 +infantile autism|5591285 +infantile fixation|5591318 +infantile paralysis|5591429 +infantilism|5591526 +infantry|5591629 +infantryman|5591662 +infarct|5591724 +infarction|5591762 +infatuate|5591800 +infatuated|5591874 +infatuation|5591962 +infeasibility|5592059 +infeasible|5592131 +infect|5592198 +infected|5592393 +infection|5592485 +infectious|5592735 +infectious agent|5592946 +infectious disease|5592994 +infectious hepatitis|5593043 +infectious mononucleosis|5593101 +infectious polyneuritis|5593205 +infectiously|5593312 +infective|5593346 +infective agent|5593422 +infelicitous|5593470 +infelicity|5593601 +infer|5593639 +inference|5593897 +inferential|5593969 +inferior|5594124 +inferior alveolar artery|5594857 +inferior cerebellar artery|5594954 +inferior cerebral vein|5595026 +inferior colliculus|5595109 +inferior conjunction|5595178 +inferior court|5595230 +inferior epigastric vein|5595292 +inferior labial artery|5595368 +inferior labial vein|5595457 +inferior mesenteric artery|5595536 +inferior ophthalmic vein|5595610 +inferior planet|5595677 +inferior pulmonary vein|5595721 +inferior rectus|5595810 +inferior rectus muscle|5595899 +inferior thalamostriate vein|5595988 +inferior thyroid vein|5596059 +inferior vena cava|5596118 +inferior vocal cord|5596165 +inferior vocal fold|5596293 +inferiority|5596421 +inferiority complex|5596561 +infernal|5596598 +infernal machine|5597022 +infernal region|5597063 +infernally|5597247 +inferno|5597276 +infertile|5597477 +infertility|5597616 +infest|5597691 +infestation|5597788 +infested|5597844 +infidel|5597887 +infidelity|5597946 +infield|5597989 +infielder|5598089 +infiltrate|5598116 +infiltration|5598300 +infiltrator|5598374 +infinite|5598454 +infinitely|5598766 +infiniteness|5598826 +infinitesimal|5598909 +infinitesimal calculus|5598957 +infinitival|5599028 +infinitive|5599053 +infinitude|5599116 +infinity|5599256 +infirm|5599288 +infirmary|5599467 +infirmity|5599548 +infix|5599640 +infix notation|5599711 +inflame|5599757 +inflamed|5600001 +inflaming|5600083 +inflammable|5600131 +inflammation|5600203 +inflammatory|5600402 +inflammatory bowel disease|5600510 +inflammatory disease|5600581 +inflatable|5600619 +inflatable cushion|5600649 +inflate|5600697 +inflated|5600896 +inflater|5601049 +inflation|5601097 +inflation rate|5601308 +inflation therapy|5601355 +inflationary|5601390 +inflationary spiral|5601425 +inflator|5601478 +inflect|5601526 +inflected|5601614 +inflection|5601670 +inflectional|5601890 +inflectional ending|5601942 +inflectional morphology|5602010 +inflectional suffix|5602064 +inflexibility|5602132 +inflexible|5602220 +inflexibleness|5602593 +inflexion|5602650 +inflict|5602701 +infliction|5602771 +infliximab|5602963 +inflorescence|5603010 +inflow|5603176 +inflowing|5603204 +influence|5603241 +influence peddler|5603607 +influent|5603686 +influential|5603723 +influential person|5603815 +influenza|5603884 +influx|5604004 +info|5604032 +infolding|5604099 +infomercial|5604195 +inform|5604259 +informal|5604331 +informality|5604629 +informally|5604697 +informant|5604787 +informatics|5604924 +information|5605021 +information age|5605264 +information bulletin|5605300 +information gathering|5605339 +information measure|5605399 +information processing|5605457 +information processing system|5605554 +information return|5605680 +information science|5605744 +information superhighway|5605841 +information system|5605915 +information theory|5605962 +information warfare|5606008 +informational rna|5606052 +informative|5606150 +informatively|5606559 +informatory|5606595 +informed|5606757 +informed consent|5606984 +informer|5607018 +informer's privilege|5607083 +informercial|5607123 +informing|5607187 +infotainment|5607277 +infra|5607450 +infra dig|5607470 +infract|5607501 +infraction|5607579 +infrahuman|5607682 +inframaxillary|5607711 +infrangible|5607761 +infraorbital artery|5607845 +infrared|5607934 +infrared emission|5608117 +infrared frequency|5608217 +infrared lamp|5608284 +infrared light|5608347 +infrared radiation|5608447 +infrared ray|5608547 +infrared spectrum|5608578 +infrared therapy|5608614 +infrasonic|5608648 +infrastructure|5608689 +infrequency|5608765 +infrequent|5608822 +infrigidation|5608878 +infringe|5608967 +infringement|5609145 +infringement of copyright|5609315 +infructescence|5609396 +infundibulum|5609479 +infuriate|5609582 +infuriated|5609626 +infuriating|5609685 +infuriation|5609748 +infuscate|5609797 +infuse|5609825 +infusion|5609980 +infusoria|5610099 +infusorian|5610153 +inga|5610212 +inga edulis|5610231 +inga laurina|5610284 +ingathering|5610330 +inge|5610411 +ingeminate|5610559 +ingenious|5610624 +ingeniousness|5610743 +ingenue|5610896 +ingenuity|5611039 +ingenuous|5611196 +ingenuously|5611318 +ingenuousness|5611348 +inger|5611489 +ingerman|5611535 +ingest|5611584 +ingesta|5611678 +ingested|5611768 +ingestion|5611792 +inglenook|5611890 +inglorious|5611936 +ingloriously|5612123 +ingmar bergman|5612224 +ingoing|5612285 +ingot|5612320 +ingot iron|5612366 +ingraft|5612411 +ingrain|5612455 +ingrained|5612548 +ingraining|5612633 +ingrate|5612691 +ingratiate|5612778 +ingratiating|5612830 +ingratiation|5612892 +ingratiatory|5612949 +ingratitude|5613021 +ingredient|5613065 +ingres|5613219 +ingress|5613280 +ingrian|5613369 +ingrid bergman|5613446 +ingroup|5613501 +ingrowing|5613576 +ingrown|5613613 +ingrown hair|5613650 +ingrown toenail|5613683 +ingrowth|5613723 +inguen|5613748 +inguinal|5613782 +inguinal canal|5613811 +inguinal hernia|5613889 +ingurgitate|5613932 +inh|5614085 +inhabit|5614166 +inhabitable|5614264 +inhabitancy|5614312 +inhabitant|5614375 +inhabitation|5614474 +inhabited|5614537 +inhalant|5614693 +inhalation|5614792 +inhalation anaesthetic|5614917 +inhalation anesthesia|5615071 +inhalation anesthetic|5615141 +inhalation anthrax|5615295 +inhalation general anaesthetic|5615451 +inhalation general anesthetic|5615605 +inhalator|5615759 +inhale|5615880 +inhaled|5615966 +inhaler|5615999 +inhaling|5616036 +inharmonic|5616081 +inharmonious|5616162 +inharmoniousness|5616328 +inhere|5616376 +inhere in|5616424 +inherence|5616461 +inherent|5616509 +inherent aptitude|5616700 +inherit|5616745 +inheritable|5616804 +inheritance|5616993 +inheritance tax|5617174 +inherited|5617244 +inherited disease|5617339 +inherited disorder|5617520 +inherited wealth|5617701 +inheriting|5617746 +inheritor|5617788 +inheritress|5617839 +inheritrix|5617902 +inhibit|5617965 +inhibited|5618133 +inhibition|5618239 +inhibitor|5618387 +inhibitory|5618423 +inhomogeneity|5618477 +inhomogeneous|5618526 +inhospitable|5618587 +inhospitableness|5618770 +inhospitality|5618811 +inhuman|5618842 +inhuman treatment|5618912 +inhumane|5618990 +inhumaneness|5619184 +inhumanity|5619225 +inhumation|5619308 +inhume|5619374 +inhumed|5619440 +inigo jones|5619485 +inimical|5619543 +inimitable|5619580 +inimitably|5619630 +inion|5619664 +iniquitous|5619698 +iniquity|5619740 +initial|5619936 +initial offering|5620029 +initial public offering|5620119 +initial rhyme|5620209 +initialisation|5620283 +initialise|5620389 +initialization|5620508 +initialize|5620614 +initially|5620733 +initiate|5620783 +initiation|5621110 +initiative|5621431 +initiator|5621611 +initiatory|5621648 +inject|5621710 +injectable|5621949 +injectant|5621980 +injection|5622018 +injector|5622136 +injudicious|5622226 +injudiciousness|5622257 +injun|5622400 +injunction|5622493 +injure|5622623 +injured|5622762 +injured party|5623131 +injurious|5623170 +injuriousness|5623244 +injury|5623295 +injustice|5623510 +ink|5623633 +ink bottle|5623940 +ink cartridge|5623974 +ink eraser|5624007 +ink-black|5623761 +ink-jet|5623807 +ink-jet printer|5623869 +inka|5624034 +inkberry|5624079 +inkblot|5624158 +inkblot test|5624215 +inking pad|5624317 +inkle|5624364 +inkling|5624384 +inkpad|5624442 +inkpot|5624489 +inkstand|5624523 +inkwell|5624566 +inky|5624597 +inky cap|5624755 +inky-black|5624643 +inky-cap mushroom|5624689 +inla|5624821 +inlaid|5625019 +inland|5625053 +inland bill|5625114 +inland revenue|5625175 +inland sea|5625257 +inlay|5625292 +inlet|5625412 +inlet manifold|5625454 +inmarriage|5625487 +inmarry|5625584 +inmate|5625669 +inmost|5625791 +inn|5625847 +innards|5625888 +innate|5625944 +innate immunity|5626078 +innate reflex|5626140 +inner|5626265 +inner circle|5626465 +inner city|5626540 +inner ear|5626591 +inner hebrides|5626671 +inner light|5626722 +inner mongolia|5626826 +inner product|5626892 +inner resources|5626959 +inner tube|5626993 +innermost|5627025 +innersole|5627078 +innervate|5627109 +innervation|5627182 +inning|5627264 +innings|5627321 +innkeeper|5627403 +innocence|5627443 +innocense|5627593 +innocent|5627698 +innocent iii|5628094 +innocent of|5628236 +innocents' day|5628349 +innocuous|5628427 +innominate artery|5628601 +innominate bone|5628665 +innominate vein|5628706 +innovate|5628804 +innovation|5628849 +innovational|5629104 +innovative|5629161 +innovativeness|5629269 +innovator|5629305 +innoxious|5629390 +innsbruck|5629428 +innuendo|5629486 +innumerable|5629528 +innumerableness|5629670 +innumerate|5629723 +innumerous|5629774 +inocor|5629916 +inoculant|5629994 +inoculate|5630039 +inoculating|5630204 +inoculation|5630248 +inoculator|5630307 +inoculum|5630371 +inodorous|5630416 +inoffensive|5630464 +inoic beam|5630689 +inoperable|5630732 +inoperative|5630793 +inopportune|5630844 +inopportunely|5630962 +inopportuneness|5630995 +inordinate|5631047 +inordinately|5631107 +inordinateness|5631144 +inorganic|5631217 +inorganic chemistry|5631305 +inorganic compound|5631361 +inorganic phosphate|5631416 +inosculate|5631475 +inosculation|5631557 +inositol|5631636 +inpatient|5631722 +inpour|5631756 +inpouring|5631803 +input|5631866 +input data|5632002 +input device|5632047 +input file|5632094 +input program|5632139 +input routine|5632202 +input signal|5632257 +inquest|5632307 +inquietude|5632340 +inquire|5632400 +inquirer|5632536 +inquiring|5632633 +inquiringly|5632815 +inquiry|5632847 +inquiry agent|5633006 +inquisition|5633109 +inquisitive|5633215 +inquisitively|5633295 +inquisitiveness|5633343 +inquisitor|5633397 +inquisitorial|5633512 +inquisitory|5633626 +inr|5633675 +inroad|5633792 +inrush|5633877 +ins|5633924 +insalubrious|5634175 +insalubriousness|5634231 +insalubrity|5634285 +insane|5634339 +insane asylum|5635065 +insanely|5635194 +insaneness|5635275 +insanitary|5635319 +insanity|5635373 +insanity plea|5635433 +insatiable|5635478 +insatiably|5635588 +insatiate|5635635 +inscribe|5635755 +inscribed|5636023 +inscription|5636102 +inscrutability|5636237 +inscrutable|5636281 +insect|5636377 +insect bite|5636469 +insect powder|5636525 +insect repellant|5636570 +insect repellent|5636645 +insecta|5636720 +insectan|5636789 +insecticide|5636816 +insectifuge|5636861 +insectivora|5636936 +insectivore|5637000 +insectivorous|5637130 +insectlike|5637192 +insecure|5637219 +insecureness|5637521 +insecurity|5637554 +inseminate|5637596 +inseminated|5637699 +insemination|5637762 +insensate|5637853 +insensibility|5637935 +insensible|5638046 +insensibly|5638348 +insensitive|5638374 +insensitiveness|5638708 +insensitivity|5638767 +insentience|5638826 +insentient|5638874 +inseparable|5638925 +insert|5638958 +insertion|5639325 +insessores|5639441 +inset|5639524 +inshore|5639698 +inside|5639754 +inside caliper|5640089 +inside clinch|5640149 +inside information|5640186 +inside job|5640239 +inside loop|5640283 +inside track|5640323 +inside-out|5640047 +insider|5640421 +insider information|5640477 +insider trading|5640523 +insidious|5640556 +insidiously|5640642 +insidiousness|5640675 +insight|5640764 +insightful|5640953 +insightfulness|5640984 +insignia|5641068 +insignia of rank|5641092 +insignificance|5641127 +insignificant|5641164 +insincere|5641451 +insincerity|5641761 +insinuate|5641807 +insinuation|5641884 +insipid|5641969 +insipidity|5642154 +insipidness|5642230 +insist|5642306 +insistence|5642404 +insistency|5642547 +insistent|5642666 +insisting|5642755 +insofar|5642792 +insolate|5642848 +insolation|5642895 +insole|5643028 +insolence|5643059 +insolent|5643208 +insolubility|5643352 +insoluble|5643382 +insolvable|5643532 +insolvency|5643596 +insolvent|5643655 +insomnia|5643763 +insomniac|5643796 +insouciance|5643901 +insouciant|5643990 +inspan|5644040 +inspect|5644076 +inspection|5644198 +inspection and repair|5644246 +inspector|5644318 +inspector general|5644399 +inspector maigret|5644451 +inspectorate|5644567 +inspectorship|5644594 +inspiration|5644672 +inspirational|5644881 +inspirationally|5644911 +inspiratory|5644952 +inspire|5644979 +inspired|5645312 +inspirer|5645354 +inspiring|5645401 +inspirit|5645449 +inspiriting|5645526 +inspissate|5645570 +inspissation|5645683 +inst|5645793 +instability|5645823 +instal|5645997 +install|5646099 +installation|5646200 +installation charge|5646398 +installing|5646434 +installment|5646519 +installment buying|5646711 +installment credit|5646782 +installment debt|5646848 +installment loan|5646879 +installment plan|5646945 +installment rate|5647016 +instalment|5647107 +instance|5647286 +instancy|5647513 +instant|5647653 +instantaneous|5647928 +instantaneous sound pressure|5647964 +instantaneously|5648061 +instantaneousness|5648115 +instantiate|5648203 +instantiation|5648277 +instantly|5648361 +instar|5648526 +instauration|5648552 +instead|5648691 +instep|5648760 +instigant|5648797 +instigate|5648913 +instigation|5649032 +instigative|5649124 +instigator|5649215 +instil|5649355 +instill|5649408 +instillation|5649655 +instillator|5649750 +instilling|5649787 +instillment|5649845 +instilment|5649926 +instinct|5650007 +instinctive|5650072 +instinctive reflex|5650128 +institute|5650253 +institution|5650366 +institutional|5650712 +institutionalise|5650831 +institutionalised|5650902 +institutionalize|5650986 +institutionalized|5651057 +instroke|5651159 +instruct|5651201 +instructed|5651297 +instruction|5651350 +instruction book|5651579 +instruction execution|5651659 +instruction manual|5651708 +instructional|5651800 +instructions|5651832 +instructive|5652187 +instructively|5652472 +instructor|5652508 +instructorship|5652555 +instructress|5652634 +instrument|5652675 +instrument flying|5653053 +instrument landing|5653109 +instrument of execution|5653171 +instrument of punishment|5653215 +instrument of torture|5653260 +instrument panel|5653316 +instrumental|5653400 +instrumental conditioning|5653469 +instrumental music|5653525 +instrumental role|5653559 +instrumentalist|5653628 +instrumentality|5653697 +instrumentate|5653806 +instrumentation|5653854 +insubordinate|5654044 +insubordination|5654202 +insubstantial|5654284 +insubstantiality|5654451 +insufferable|5654522 +insufficiency|5654593 +insufficient|5654707 +insufflate|5654867 +insufflation|5654932 +insulant|5654979 +insular|5655046 +insularism|5655157 +insularity|5655220 +insulate|5655283 +insulating material|5655369 +insulating tape|5655436 +insulation|5655489 +insulator|5655624 +insulin|5655682 +insulin reaction|5656036 +insulin shock|5656082 +insulin shock therapy|5656211 +insulin shock treatment|5656310 +insulin-dependent diabetes mellitus|5655775 +insult|5656409 +insulted|5656608 +insulting|5656643 +insultingly|5656766 +insuperable|5656793 +insupportable|5656894 +insurability|5656982 +insurable|5657016 +insurable interest|5657043 +insurance|5657086 +insurance agent|5657201 +insurance broker|5657289 +insurance claim|5657377 +insurance company|5657408 +insurance coverage|5657528 +insurance firm|5657605 +insurance policy|5657725 +insurance premium|5657777 +insurance underwriter|5657820 +insure|5657940 +insured|5658110 +insured person|5658220 +insurer|5658305 +insurgence|5658425 +insurgency|5658502 +insurgent|5658579 +insurmountable|5658804 +insurrection|5658942 +insurrectional|5659022 +insurrectionary|5659086 +insurrectionist|5659150 +insusceptible|5659294 +intact|5659439 +intactness|5659565 +intaglio|5659623 +intaglio printing|5659734 +intake|5659804 +intake manifold|5659917 +intake valve|5659951 +intangibility|5659979 +intangible|5660060 +intangible asset|5660224 +intangibleness|5660268 +integer|5660349 +integral|5660386 +integral calculus|5660544 +integrate|5660616 +integrated|5660774 +integrated circuit|5661156 +integrated data processing|5661214 +integrated logistic support|5661284 +integrating|5661358 +integration|5661418 +integrative|5661594 +integrator|5661812 +integrity|5661898 +integument|5661965 +integumental|5662017 +integumentary|5662084 +integumentary system|5662151 +intellect|5662188 +intellection|5662356 +intellectual|5662442 +intellectual nourishment|5662705 +intellectual property|5662801 +intellectualisation|5662880 +intellectualization|5663015 +intelligence|5663150 +intelligence activity|5663439 +intelligence agency|5663528 +intelligence agent|5663631 +intelligence analyst|5663709 +intelligence cell|5663747 +intelligence community|5663802 +intelligence information|5663983 +intelligence officer|5664047 +intelligence operation|5664125 +intelligence quotient|5664214 +intelligence service|5664259 +intelligence test|5664362 +intelligent|5664447 +intelligently|5664793 +intelligentsia|5664836 +intelligibility|5664886 +intelligible|5664947 +intelligibly|5665100 +intelnet|5665144 +intemperance|5665188 +intemperate|5665329 +intemperately|5665485 +intemperateness|5665520 +intend|5665639 +intended|5665770 +intense|5665968 +intensification|5666379 +intensified|5666445 +intensifier|5666474 +intensify|5666524 +intensifying|5666660 +intension|5666799 +intensional|5666872 +intensity|5666905 +intensity level|5667087 +intensive|5667141 +intensive care|5667248 +intensive care unit|5667297 +intensiveness|5667347 +intent|5667399 +intent on|5667602 +intention|5667659 +intentional|5667753 +intentionality|5667875 +intentionally|5667927 +intentness|5668024 +inter|5668094 +inter vivos trust|5668466 +inter-group communication|5668160 +inter-service support|5668251 +inter-services intelligence|5668319 +interact|5668512 +interaction|5668539 +interactional|5668618 +interactive|5668671 +interactive multimedia|5668743 +interactive multimedia system|5668906 +interagency support|5669069 +interahamwe|5669161 +interbank loan|5669331 +interbrain|5669365 +interbred|5669444 +interbreed|5669540 +interbreeding|5669603 +intercalary|5669833 +intercalary year|5669860 +intercalate|5669941 +intercalation|5669966 +intercapitular vein|5670021 +intercede|5670100 +intercellular|5670188 +intercellular substance|5670237 +intercept|5670309 +interception|5670413 +interceptor|5670480 +intercession|5670542 +intercessor|5670655 +interchange|5670752 +interchangeability|5671040 +interchangeable|5671145 +interchangeableness|5671308 +interchurch|5671413 +intercollegiate|5671479 +intercom|5671515 +intercom speaker|5671580 +intercommunicate|5671693 +intercommunication|5671779 +intercommunication system|5671835 +intercommunion|5671900 +interconnect|5671983 +interconnected|5672098 +interconnectedness|5672206 +interconnection|5672280 +intercontinental|5672390 +intercontinental ballistic missile|5672443 +intercostal|5672510 +intercostal artery|5672619 +intercostal muscle|5672706 +intercostal vein|5672801 +intercourse|5672876 +intercrossed|5673111 +interdenominational|5673168 +interdepartmental|5673234 +interdepartmental support|5673288 +interdepend|5673380 +interdependence|5673440 +interdependency|5673517 +interdependent|5673594 +interdict|5673658 +interdiction|5673854 +interdiction fire|5673946 +interdisciplinary|5673985 +interest|5674043 +interest expense|5674554 +interest group|5674611 +interest rate|5674657 +interest-bearing|5674493 +interested|5674718 +interestedness|5674794 +interesting|5674848 +interestingly enough|5674989 +interestingness|5675080 +interface|5675133 +interfacial|5675305 +interfacial surface tension|5675333 +interfacial tension|5675406 +interfaith|5675479 +interfere|5675509 +interference|5675586 +interfering|5675880 +interferometer|5675957 +interferon|5676036 +intergalactic|5676097 +intergalactic space|5676166 +interim|5676207 +interim overhaul|5676280 +interior|5676345 +interior angle|5676652 +interior decoration|5676697 +interior decorator|5676801 +interior department|5676932 +interior design|5677042 +interior designer|5677119 +interior door|5677250 +interior live oak|5677278 +interior monologue|5677352 +interior secretary|5677386 +interiorise|5677535 +interiorize|5677624 +interject|5677713 +interjection|5677808 +interlace|5677949 +interlaced|5678062 +interlacing|5678144 +interlaken|5678210 +interlanguage|5678246 +interlard|5678323 +interlayer|5678403 +interleaf|5678433 +interleave|5678463 +interleukin|5678561 +interlineal|5678593 +interlinear|5678645 +interlingua|5678697 +interlingual rendition|5678750 +interlink|5678843 +interlinking|5678961 +interlock|5679027 +interlocking|5679211 +interlocutor|5679388 +interlocutory|5679487 +interlocutory injunction|5679522 +interlope|5679632 +interloper|5679689 +interlude|5679772 +intermarriage|5679862 +intermarry|5680028 +intermaxillary suture|5680116 +intermediary|5680198 +intermediate|5680295 +intermediate host|5680554 +intermediate temporal artery|5680586 +intermediate vector bosons|5680670 +intermediate wheatgrass|5680718 +intermediation|5680812 +intermediator|5680872 +interment|5680969 +intermeshed|5681035 +intermezzo|5681102 +interminable|5681228 +interminably|5681271 +intermingle|5681302 +intermingled|5681382 +intermission|5681441 +intermit|5681535 +intermittence|5681600 +intermittency|5681663 +intermittent|5681726 +intermittent claudication|5681784 +intermittent cramp|5681873 +intermittent tetanus|5681965 +intermix|5682057 +intermixture|5682137 +intermolecular|5682310 +intermural|5682353 +intern|5682384 +internal|5682501 +internal angle|5682772 +internal auditor|5682817 +internal auditory artery|5682851 +internal auditory vein|5682966 +internal carotid artery|5683046 +internal cerebral vein|5683110 +internal combustion|5683192 +internal control|5683240 +internal drive|5683274 +internal ear|5683304 +internal iliac artery|5683384 +internal iliac vein|5683462 +internal jugular vein|5683531 +internal maxillary artery|5683598 +internal medicine|5683669 +internal organ|5683740 +internal representation|5683777 +internal respiration|5683887 +internal revenue|5683990 +internal revenue agent|5684056 +internal revenue service|5684184 +internal rhyme|5684311 +internal secretion|5684346 +internal spermatic artery|5684402 +internal-combustion engine|5682720 +internalisation|5684513 +internalise|5684589 +internalization|5684678 +internalize|5684754 +internasal suture|5684843 +international|5684918 +international affairs|5685155 +international ampere|5685208 +international association of lions clubs|5685258 +international atomic energy agency|5685373 +international bank for reconstruction and development|5685489 +international candle|5685654 +international civil aviation organization|5685725 +international court of justice|5685855 +international date line|5685964 +international development association|5686077 +international finance corporation|5686198 +international flight|5686311 +international grandmaster|5686348 +international intelligence agency|5686421 +international islamic front for jihad against jews and crusaders|5686518 +international jihad|5686731 +international labor organization|5686784 +international labour organization|5686929 +international law|5687075 +international law enforcement agency|5687135 +international logistic support|5687221 +international maritime organization|5687309 +international monetary fund|5687426 +international morse code|5687527 +international nautical mile|5687608 +international organisation|5687710 +international organization|5687870 +international pitch|5688030 +international relations and security network|5688098 +international scale|5688235 +international society for krishna consciousness|5688313 +international system|5688474 +international system of units|5688635 +international terrorism|5688805 +international wanted notice|5688879 +international waters|5688983 +internationale|5689042 +internationalisation|5689093 +internationalise|5689157 +internationalism|5689260 +internationalist|5689411 +internationalistic|5689532 +internationality|5689591 +internationalization|5689672 +internationalize|5689736 +interne|5689839 +internecine|5689922 +internee|5689983 +internet|5690018 +internet site|5690077 +internist|5690223 +internment|5690272 +internment camp|5690419 +internode|5690491 +internship|5690518 +internuncio|5690593 +interoception|5690635 +interoceptive|5690696 +interoceptor|5690756 +interoperability|5690829 +interoperable|5690863 +interparietal suture|5690896 +interpellate|5690988 +interpellation|5691025 +interpenetrate|5691194 +interpenetration|5691315 +interpersonal|5691393 +interpersonal chemistry|5691423 +interphalangeal joint|5691490 +interphone|5691560 +interplanetary|5691615 +interplanetary dust|5691667 +interplanetary gas|5691701 +interplanetary medium|5691736 +interplanetary space|5691788 +interplay|5691830 +interpol|5691861 +interpolate|5691925 +interpolation|5692046 +interpose|5692253 +interposition|5692409 +interpret|5692576 +interpretable|5692823 +interpretation|5692869 +interpretative|5693088 +interpretative dance|5693149 +interpretative dancing|5693255 +interpreted|5693361 +interpreter|5693399 +interpreting|5693711 +interpretive|5693780 +interpretive dance|5693841 +interpretive dancing|5693947 +interpretive program|5694053 +interracial|5694149 +interred|5694201 +interreflection|5694246 +interregnum|5694292 +interrelate|5694325 +interrelated|5694418 +interrelatedness|5694488 +interrelation|5694555 +interrelationship|5694622 +interrogate|5694689 +interrogation|5694763 +interrogation point|5694976 +interrogative|5695048 +interrogative mood|5695217 +interrogative sentence|5695278 +interrogatively|5695356 +interrogator|5695404 +interrogatory|5695480 +interrupt|5695572 +interrupted|5695774 +interrupted fern|5695840 +interrupter|5695905 +interruption|5695933 +interscholastic|5696103 +interschool|5696151 +intersect|5696199 +intersectant|5696275 +intersecting|5696335 +intersection|5696395 +intersection point|5696690 +intersex|5696759 +intersexual|5696863 +interspecies|5696910 +interspecific|5696959 +interspersal|5696995 +intersperse|5697065 +interspersion|5697184 +interstate|5697254 +interstate commerce commission|5697285 +interstellar|5697379 +interstellar medium|5697429 +interstellar space|5697477 +interstice|5697517 +interstitial|5697633 +interstitial cell-stimulating hormone|5697662 +interstitial fluid|5697807 +interstitial plasma cell pneumonia|5697859 +interstitial pneumonia|5697981 +interstitial tissue|5698074 +interstratify|5698130 +intertidal|5698162 +intertribal|5698215 +intertrigo|5698248 +intertwine|5698276 +intertwined|5698435 +interval|5698464 +intervene|5698599 +intervening|5698741 +intervenor|5698788 +intervention|5698814 +interventricular foramen|5698979 +intervertebral|5699061 +intervertebral disc|5699092 +intervertebral disk|5699158 +intervertebral vein|5699224 +interview|5699305 +interviewee|5699508 +interviewer|5699559 +interweave|5699623 +interwoven|5699669 +intestate|5699735 +intestinal|5699764 +intestinal artery|5699821 +intestinal bypass|5699971 +intestinal colic|5700071 +intestinal flora|5700116 +intestinal flu|5700156 +intestinal juice|5700229 +intestinal obstruction|5700265 +intestine|5700336 +inti|5700387 +intifada|5700424 +intifadah|5700498 +intima|5700572 +intimacy|5700610 +intimal|5700758 +intimate|5700796 +intimate apparel|5701087 +intimate with|5701182 +intimately|5701260 +intimation|5701305 +intimidate|5701413 +intimidated|5701491 +intimidating|5701565 +intimidation|5701609 +into the bargain|5701769 +into the wind|5701809 +intolerable|5701855 +intolerably|5702016 +intolerance|5702049 +intolerant|5702113 +intolerant of|5702216 +intolerantly|5702262 +intonate|5702295 +intonation|5702378 +intonation pattern|5702516 +intone|5702580 +intoned|5702726 +intoxicant|5702782 +intoxicate|5702940 +intoxicated|5703069 +intoxicating|5703501 +intoxication|5703566 +intra vires|5703756 +intracellular|5703789 +intracellular fluid|5703853 +intracerebral|5703941 +intracranial aneurysm|5703980 +intracranial cavity|5704029 +intractability|5704100 +intractable|5704146 +intractableness|5704345 +intracutaneous|5704391 +intradepartmental|5704470 +intradermal|5704524 +intradermal injection|5704603 +intradermal test|5704649 +intradermic|5704703 +intrados|5704782 +intragroup|5704819 +intralinguistic|5704859 +intramolecular|5704897 +intramural|5704940 +intramuscular|5704991 +intramuscular injection|5705042 +intranet|5705090 +intransigence|5705125 +intransigency|5705235 +intransigent|5705345 +intransitive|5705408 +intransitive verb|5705443 +intransitive verb form|5705498 +intransitiveness|5705553 +intransitivise|5705615 +intransitivity|5705704 +intransitivize|5705766 +intraocular lens|5705855 +intraocular pressure|5705904 +intrapulmonary|5705978 +intraspecies|5706019 +intraspecific|5706068 +intrastate|5706104 +intrauterine device|5706135 +intravasation|5706268 +intravenous|5706315 +intravenous anesthetic|5706359 +intravenous drip|5706449 +intravenous feeding|5706496 +intravenous injection|5706549 +intravenous pyelogram|5706595 +intravenous pyelography|5706640 +intraventricular|5706689 +intrench|5706741 +intrenchment|5706786 +intrepid|5706844 +intrepidity|5706912 +intrepidly|5706978 +intricacy|5707020 +intricate|5707099 +intricately|5707193 +intrigue|5707245 +intriguer|5707387 +intriguing|5707441 +intrinsic|5707504 +intrinsic factor|5707669 +intrinsic fraud|5707702 +intrinsical|5707733 +intrinsically|5707872 +intro|5707926 +introduce|5708021 +introduction|5708407 +introductory|5708819 +introitus|5708907 +introject|5708948 +introjected|5708987 +introjection|5709019 +intromission|5709140 +intromit|5709194 +intron|5709263 +intropin|5709328 +introspect|5709400 +introspection|5709527 +introspective|5709654 +introspectiveness|5709718 +introuvable|5709760 +introversion|5709788 +introversive|5709950 +introvert|5710030 +introverted|5710163 +introvertish|5710213 +introvertive|5710269 +intrude|5710336 +intrude into|5710546 +intrude on|5710636 +intruder|5710744 +intruding|5710827 +intrusion|5710856 +intrusive|5711124 +intrusiveness|5711334 +intrust|5711401 +intubate|5711486 +intubation|5711572 +intuit|5711705 +intuition|5711782 +intuitionism|5711889 +intuitionist|5711955 +intuitive|5712020 +intuitive feeling|5712114 +intumesce|5712159 +intumescence|5712261 +intumescency|5712398 +intussuscept|5712535 +intussusception|5712578 +inuit|5712740 +inula|5712833 +inula helenium|5712870 +inulin|5712926 +inunct|5712965 +inunction|5713014 +inundate|5713098 +inundated|5713187 +inundation|5713324 +inure|5713597 +inured|5713647 +inutile|5713695 +inutility|5713733 +invade|5713785 +invader|5713989 +invading|5714048 +invaginate|5714095 +invagination|5714156 +invalid|5714282 +invalidate|5714566 +invalidated|5714734 +invalidating|5714773 +invalidation|5714822 +invalidator|5714874 +invalidism|5714933 +invalidity|5714993 +invalidness|5715060 +invaluable|5715127 +invaluableness|5715166 +invar|5715236 +invariability|5715269 +invariable|5715408 +invariableness|5715550 +invariance|5715662 +invariant|5715774 +invasion|5715859 +invasion of iwo|5715971 +invasion of privacy|5716044 +invasive|5716090 +invective|5716234 +inveigh|5716321 +inveigle|5716410 +invent|5716484 +invented|5716666 +invention|5716739 +inventive|5716900 +inventiveness|5716962 +inventor|5717062 +inventory|5717109 +inventory accounting|5717422 +inventory control|5717475 +inventory item|5717519 +inventory-clearance sale|5717342 +inventorying|5717554 +inverse|5717630 +inverse function|5717730 +inversely|5717787 +inversion|5717818 +invert|5718247 +invert soap|5718318 +invert sugar|5718368 +invertase|5718420 +invertebrate|5718473 +invertebrate foot|5718563 +inverted|5718601 +inverted comma|5718656 +inverted hang|5718730 +inverted pleat|5718758 +inverter|5718794 +invertible|5718833 +invest|5718864 +invested|5719061 +invested with|5719101 +investigate|5719141 +investigating|5719254 +investigation|5719296 +investigative|5719376 +investigator|5719436 +investigatory|5719595 +investing|5719655 +investiture|5719693 +investment|5719830 +investment adviser|5719980 +investment advisor|5720054 +investment banker|5720128 +investment company|5720187 +investment firm|5720289 +investment funds|5720391 +investment letter|5720435 +investment trust|5720479 +investor|5720581 +investors club|5720610 +inveterate|5720670 +inveterately|5720726 +invidia|5720759 +invidious|5720803 +invigilate|5720862 +invigilation|5720937 +invigilator|5721009 +invigorate|5721046 +invigorated|5721321 +invigorating|5721379 +invigoration|5721658 +invigorator|5721804 +invincibility|5721851 +invincible|5721898 +invincible armada|5721958 +inviolable|5722036 +inviolate|5722263 +invirase|5722335 +invisibility|5722395 +invisible|5722449 +invisible balance|5722675 +invisibleness|5722710 +invitation|5722764 +invitational|5722852 +invitatory|5722882 +invite|5722911 +invite out|5723284 +invited|5723352 +invitee|5723430 +inviting|5723470 +invitingly|5723576 +invocation|5723609 +invoice|5723774 +invoke|5723853 +involucrate|5724065 +involucre|5724091 +involuntary|5724116 +involuntary muscle|5724315 +involuntary trust|5724373 +involute|5724433 +involution|5724479 +involutional depression|5724822 +involve|5724880 +involved|5725274 +involved with|5725669 +involvement|5725720 +invulnerability|5725968 +invulnerable|5726031 +inward|5726263 +inward-developing|5726432 +inward-moving|5726471 +inwardly|5726506 +inwardness|5726530 +inwards|5726781 +inweave|5726820 +inwrought|5726854 +io|5726891 +io moth|5726956 +iodic acid|5727011 +iodide|5727036 +iodin|5727059 +iodinate|5727133 +iodinated|5727171 +iodinated protein|5727238 +iodinating|5727285 +iodination|5727316 +iodine|5727385 +iodine-125|5727505 +iodine-131|5727570 +iodise|5727635 +iodised|5727701 +iodize|5727768 +iodized|5727834 +iodoamino acid|5727901 +iodochlorhydroxyquin|5727955 +iodocompound|5728064 +iodoform|5728113 +iodoprotein|5728189 +iodopsin|5728236 +iodothyronine|5728267 +iodotyrosine|5728305 +ion|5728342 +ion beam|5728364 +ion engine|5728407 +ion exchange|5728470 +ion pump|5728539 +ionate|5728578 +ionesco|5728614 +ionia|5728675 +ionian|5728768 +ionian order|5728805 +ionian sea|5728858 +ionic|5728893 +ionic bond|5728963 +ionic charge|5729040 +ionic medication|5729071 +ionic order|5729171 +ionisation|5729223 +ionise|5729336 +ionised|5729398 +ionising|5729441 +ionization|5729484 +ionization chamber|5729597 +ionization tube|5729696 +ionize|5729795 +ionized|5729857 +ionizing|5729908 +ionizing radiation|5729951 +ionophoresis|5729989 +ionosphere|5730102 +ionospheric wave|5730134 +iontophoresis|5730169 +iontotherapy|5730269 +iosif vissarionovich dzhugashvili|5730369 +iota|5730484 +iou|5730666 +iowa|5730717 +iowa crab|5730825 +iowa crab apple|5730948 +iowan|5731077 +ioway|5731107 +ip|5731172 +ipecac|5731272 +ipidae|5731319 +ipo|5731402 +ipomoea|5731496 +ipomoea alba|5731566 +ipomoea batatas|5731640 +ipomoea coccinea|5731726 +ipomoea fastigiata|5731814 +ipomoea imperialis|5731970 +ipomoea leptophylla|5732063 +ipomoea nil|5732143 +ipomoea orizabensis|5732213 +ipomoea panurata|5732285 +ipomoea pes-caprae|5732439 +ipomoea purpurea|5732534 +ipomoea quamoclit|5732612 +ipomoea tricolor|5732725 +ipratropium bromide|5732803 +iproclozid|5732856 +ipse dixit|5732909 +ipsedixitism|5732974 +ipsilateral|5733039 +ipsus|5733072 +ipv|5733124 +iq|5733173 +iq test|5733221 +ir|5733314 +ira|5733442 +ira gershwin|5733832 +irak|5733885 +iraki|5733961 +iran|5734047 +iran-iraq war|5734125 +irani|5734183 +iranian|5734234 +iranian capital|5734403 +iranian dinar|5734492 +iranian language|5734557 +iranian monetary unit|5734643 +iranian rial|5734710 +iraq|5734772 +iraqi|5734848 +iraqi dinar|5734934 +iraqi intelligence service|5734993 +iraqi kurdistan|5735111 +iraqi monetary unit|5735224 +iraqi mukhabarat|5735287 +iraqi national congress|5735395 +irascibility|5735467 +irascible|5735544 +irate|5735665 +ire|5735693 +ireful|5735772 +ireland|5735800 +irelander|5735924 +irena|5735975 +irene joliot-curie|5736019 +irenic|5736089 +irenidae|5736114 +iresine|5736169 +iresine herbstii|5736234 +iresine reticulata|5736333 +iridaceae|5736434 +iridaceous|5736514 +iridaceous plant|5736555 +iridectomy|5736595 +iridesce|5736688 +iridescence|5736709 +iridescent|5736753 +iridic|5736872 +iridium|5736938 +iridocyclitis|5736998 +iridokeratitis|5737048 +iridoncus|5737099 +iridoprocne|5737142 +iridoprocne bicolor|5737204 +iridosmine|5737296 +iridotomy|5737335 +iris|5737427 +iris cristata|5737553 +iris diaphragm|5737635 +iris family|5737679 +iris filifolia|5737749 +iris florentina|5737814 +iris foetidissima|5737916 +iris germanica|5738064 +iris germanica florentina|5738128 +iris kaempferi|5738240 +iris kochii|5738308 +iris murdoch|5738366 +iris pallida|5738446 +iris persica|5738509 +iris pseudacorus|5738591 +iris scanning|5738710 +iris tingitana|5738805 +iris verna|5738870 +iris versicolor|5738958 +iris virginica|5739043 +iris xiphioides|5739135 +iris xiphium|5739223 +irish|5739299 +irish bull|5739493 +irish burgoo|5739604 +irish capital|5739667 +irish coffee|5739752 +irish free state|5739799 +irish gaelic|5739888 +irish gorse|5739950 +irish monetary unit|5740026 +irish moss|5740089 +irish national liberation army|5740177 +irish people|5740401 +irish person|5740481 +irish potato|5740535 +irish pound|5740645 +irish punt|5740720 +irish republican army|5740794 +irish sea|5740982 +irish setter|5741015 +irish soda bread|5741068 +irish stew|5741123 +irish strawberry|5741159 +irish terrier|5741240 +irish water spaniel|5741285 +irish whiskey|5741348 +irish whisky|5741419 +irish wolfhound|5741489 +irishman|5741540 +irishwoman|5741590 +iritic|5741644 +iritis|5741681 +irk|5741724 +irksome|5741748 +iron|5741840 +iron age|5742550 +iron blue|5742652 +iron boot|5742751 +iron cage|5742807 +iron carbide|5742831 +iron chancellor|5742890 +iron collar|5743068 +iron curtain|5743138 +iron deficiency anaemia|5743180 +iron deficiency anemia|5743251 +iron disulfide|5743322 +iron filing|5743363 +iron fist|5743397 +iron foundry|5743424 +iron heel|5743465 +iron horse|5743521 +iron lady|5743596 +iron lung|5743718 +iron maiden|5743758 +iron man|5743801 +iron manganese tungsten|5743923 +iron mold|5743975 +iron mould|5744040 +iron oak|5744105 +iron ore|5744258 +iron out|5744280 +iron overload|5744383 +iron perchloride|5744470 +iron putty|5744508 +iron pyrite|5744535 +iron trap|5744583 +iron tree|5744613 +iron-gray|5742126 +iron-grey|5742211 +iron-storage disease|5742296 +iron-tree|5742383 +ironclad|5744780 +ironed|5744902 +ironic|5744960 +ironical|5745040 +ironing|5745118 +ironing board|5745183 +ironist|5745212 +ironlike|5745267 +ironman|5745292 +ironmonger|5745333 +ironmongery|5745396 +irons|5745443 +ironshod|5745765 +ironside|5745802 +ironsides|5745835 +ironware|5745973 +ironweed|5746032 +ironwood|5746081 +ironwood tree|5746305 +ironwork|5746507 +ironworker|5746544 +ironworks|5746577 +irony|5746646 +iroquoian|5746806 +iroquoian language|5746939 +iroquois|5747081 +iroquois league|5747285 +irradiate|5747377 +irradiation|5747477 +irrational|5747833 +irrational hostility|5748033 +irrational impulse|5748092 +irrational motive|5748138 +irrational number|5748188 +irrationality|5748232 +irrationally|5748273 +irrawaddy|5748312 +irrawaddy river|5748363 +irreality|5748420 +irreclaimable|5748472 +irreconcilable|5748541 +irrecoverable|5748616 +irredeemable|5748701 +irredenta|5748820 +irredentism|5748856 +irredentist|5748952 +irreducible|5749023 +irrefutable|5749056 +irregular|5749114 +irregularity|5749714 +irregularly|5749889 +irrelevance|5749931 +irrelevancy|5749980 +irrelevant|5750029 +irreligion|5750156 +irreligionist|5750212 +irreligious|5750282 +irreligiousness|5750440 +irremediable|5750496 +irremovable|5750531 +irreparable|5750572 +irreplaceable|5750605 +irreplaceableness|5750689 +irrepressibility|5750734 +irrepressible|5750806 +irreproachable|5750857 +irreproachably|5750948 +irreproducibility|5750983 +irreproducible|5751072 +irresistibility|5751135 +irresistible|5751196 +irresistible impulse|5751286 +irresistibleness|5751346 +irresistibly|5751407 +irresolute|5751458 +irresoluteness|5751608 +irresolution|5751651 +irrespective|5751790 +irresponsibility|5751859 +irresponsible|5751934 +irresponsibleness|5752158 +irresponsibly|5752233 +irretrievable|5752286 +irreverence|5752351 +irreverent|5752450 +irreversibility|5752619 +irreversible|5752707 +irreversible process|5752783 +irrevocable|5752821 +irrevokable|5752886 +irridenta|5752939 +irridentism|5752975 +irridentist|5753071 +irrigate|5753142 +irrigation|5753192 +irrigation ditch|5753271 +irritability|5753303 +irritable|5753547 +irritable bowel syndrome|5753702 +irritably|5753800 +irritant|5753847 +irritate|5753949 +irritated|5754118 +irritating|5754269 +irritation|5754468 +irritative|5754844 +irrupt|5754887 +irruption|5755055 +irruptive|5755200 +irs|5755247 +irtish|5755353 +irtish river|5755415 +irtysh|5755483 +irtysh river|5755545 +irula|5755613 +irving|5755650 +irving berlin|5755745 +irving langmuir|5755836 +irvingia|5755894 +irvingia gabonensis|5755954 +isaac|5756046 +isaac asimov|5756077 +isaac bashevis singer|5756133 +isaac hull|5756207 +isaac m. singer|5756257 +isaac mayer wise|5756377 +isaac merrit singer|5756442 +isaac newton|5756566 +isaac stern|5756649 +isaac watts|5756706 +isabella i|5756796 +isabella stewart gardner|5756884 +isabella the catholic|5756982 +isadora duncan|5757081 +isaiah|5757154 +isak dinesen|5757219 +isamu noguchi|5757318 +isarithm|5757403 +isatis|5757443 +isatis tinctoria|5757501 +ischaemia|5757561 +ischaemic|5757604 +ischaemic stroke|5757646 +ischemia|5757752 +ischemic|5757795 +ischemic anoxia|5757837 +ischemic hypoxia|5757885 +ischemic stroke|5757936 +ischia|5758042 +ischial bone|5758118 +ischigualastia|5758166 +ischium|5758240 +isentropic|5758288 +isere|5758325 +isere river|5758364 +iseult|5758409 +isfahan|5758483 +isherwood|5758554 +ishmael|5758658 +ishtar|5758763 +isi|5758808 +isidor feinstein stone|5758931 +isidore auguste marie francois comte|5759015 +isinglass|5759130 +isis|5759206 +iskcon|5759357 +islam|5759477 +islam nation|5759645 +islamabad|5759728 +islamic|5759794 +islamic army of aden|5759843 +islamic army of aden-abyan|5760023 +islamic calendar|5760209 +islamic calendar month|5760339 +islamic community|5760415 +islamic group|5760618 +islamic group of uzbekistan|5760935 +islamic jihad|5761105 +islamic jihad for the liberation of palestine|5761557 +islamic law|5761892 +islamic party of turkestan|5761981 +islamic republic of iran|5762150 +islamic republic of mauritania|5762248 +islamic republic of pakistan|5762383 +islamic resistance movement|5762500 +islamic state of afghanistan|5762645 +islamic ummah|5762751 +islamic unity|5762835 +islamise|5762997 +islamism|5763086 +islamist|5763292 +islamize|5763395 +islamophobia|5763484 +island|5763548 +island dispenser|5763698 +island hop|5763752 +island-dweller|5763628 +islander|5763796 +islands of langerhans|5763866 +islay|5764001 +isle|5764134 +isle of man|5764161 +isle of skye|5764205 +isle of wight|5764247 +isle royal national park|5764308 +isles of langerhans|5764381 +isles of scilly|5764514 +islet|5764582 +islets of langerhans|5764609 +ism|5764743 +ismaili|5764822 +ismailian|5764896 +ismailism|5764951 +isn|5764987 +isoagglutination|5765083 +isoagglutinin|5765123 +isoagglutinogen|5765157 +isoantibody|5765195 +isobar|5765238 +isobilateral|5765280 +isobutyl nitrite|5765380 +isobutylene|5765470 +isobutylphenyl propionic acid|5765507 +isocarboxazid|5765649 +isochronal|5765713 +isochrone|5765751 +isochronous|5765796 +isocrates|5765834 +isocyanate|5765921 +isocyanic acid|5765946 +isocyclic|5765975 +isoetaceae|5766012 +isoetales|5766090 +isoetes|5766147 +isoflurane|5766197 +isogamete|5766323 +isogamy|5766349 +isogon|5766397 +isogonal line|5766437 +isogone|5766487 +isogonic|5766537 +isogonic line|5766572 +isogram|5766622 +isohel|5766662 +isolable|5766704 +isolate|5766731 +isolated|5766941 +isolating|5767169 +isolation|5767209 +isolationism|5767495 +isolationist|5767532 +isolationistic|5767628 +isole egadi|5767679 +isoleucine|5767773 +isomer|5767814 +isomerase|5767857 +isomeric|5767883 +isomerisation|5767906 +isomerise|5767976 +isomerism|5768049 +isomerization|5768074 +isomerize|5768144 +isometric|5768217 +isometric exercise|5768362 +isometric line|5768465 +isometrical|5768504 +isometrics|5768541 +isometropia|5768681 +isometry|5768716 +isomorphic|5768828 +isomorphism|5768870 +isomorphous|5768912 +isomorphy|5768954 +isoniazid|5768996 +isopleth|5769073 +isopod|5769113 +isopoda|5769154 +isopropanol|5769206 +isopropyl alcohol|5769253 +isoproterenol|5769300 +isoptera|5769377 +isopteran|5769432 +isoptin|5769463 +isopyrum|5769544 +isopyrum biternatum|5769608 +isordil|5769707 +isoroku yamamoto|5769789 +isosceles|5769862 +isosceles triangle|5769903 +isosmotic|5769958 +isosmotic solution|5769986 +isosorbide|5770041 +isospondyli|5770115 +isotherm|5770179 +isothermal|5770223 +isothermic|5770249 +isothiocyanate|5770294 +isotonic|5770336 +isotonic exercise|5770434 +isotonic solution|5770525 +isotope|5770580 +isotopic|5770602 +isotropic|5770624 +isotropous|5770674 +isotropy|5770714 +israel|5770750 +israel baline|5770848 +israel zangwill|5770939 +israeli|5771003 +israeli defense force|5771075 +israeli monetary unit|5771182 +israelite|5771249 +israelites|5771373 +issachar|5771558 +issuance|5771595 +issue|5771654 +issue forth|5772388 +issuer|5772414 +issuing|5772456 +issus|5772515 +istanbul|5772567 +isthmian|5772655 +isthmian games|5772724 +isthmus|5772768 +isthmus of corinth|5772851 +isthmus of kra|5772906 +isthmus of panama|5772953 +isthmus of suez|5773006 +isthmus of tehuantepec|5773055 +istiophoridae|5773118 +istiophorus|5773188 +istiophorus albicans|5773250 +isuprel|5773328 +isuridae|5773413 +isurus|5773468 +isurus glaucus|5773515 +isurus oxyrhincus|5773596 +isurus paucus|5773671 +itaconic acid|5773737 +italia|5773765 +italian|5773844 +italian bee|5774054 +italian bread|5774111 +italian capital|5774172 +italian clover|5774270 +italian cypress|5774360 +italian dressing|5774467 +italian greyhound|5774534 +italian honeysuckle|5774589 +italian lira|5774688 +italian millet|5774750 +italian monetary unit|5774858 +italian parsley|5774925 +italian peninsula|5775047 +italian region|5775102 +italian renaissance|5775156 +italian republic|5775217 +italian rice|5775306 +italian rye|5775354 +italian ryegrass|5775442 +italian sandwich|5775535 +italian sonnet|5775709 +italian vegetable marrow|5775773 +italian vermouth|5775880 +italian woodbine|5775947 +italian-speaking|5773983 +italic|5776043 +italic language|5776310 +italicise|5776408 +italicize|5776451 +italo calvino|5776494 +italy|5776553 +itch|5776631 +itch mite|5776835 +itchiness|5776869 +itching|5776953 +itchy|5777037 +itchy feet|5777085 +item|5777129 +item-by-item|5777325 +itemisation|5777383 +itemise|5777450 +itemization|5777533 +itemize|5777600 +iterate|5777683 +iteration|5777748 +iterative|5777831 +ithaca|5777904 +ithaki|5777960 +ithunn|5777997 +itinerant|5778037 +itinerary|5778147 +itinerate|5778256 +itineration|5778294 +itraconazole|5778328 +itsy-bitsy|5778427 +itty-bitty|5778541 +iud|5778655 +iv|5778792 +iva|5778988 +iva xanthifolia|5779047 +ivan iii|5779138 +ivan iii vasilievich|5779212 +ivan iv|5779298 +ivan iv vasilievich|5779376 +ivan lendl|5779466 +ivan pavlov|5779517 +ivan petrovich pavlov|5779592 +ivan sergeevich turgenev|5779677 +ivan the great|5779773 +ivan the terrible|5779853 +ivan turgenev|5779941 +ivanov|5780026 +ives|5780074 +ivied|5780177 +ivor armstrong richards|5780210 +ivory|5780331 +ivory black|5780589 +ivory coast|5780618 +ivory coast franc|5780722 +ivory gull|5780793 +ivory nut|5780853 +ivory palm|5780903 +ivory plant|5780986 +ivory tower|5781069 +ivory tree|5781120 +ivory-billed woodpecker|5780410 +ivory-nut palm|5780506 +ivorybill|5781216 +ivp|5781312 +ivry|5781408 +ivry la bataille|5781474 +ivy|5781552 +ivy arum|5781728 +ivy family|5781809 +ivy geranium|5781877 +ivy league|5781966 +ivy leaguer|5782015 +ivy-covered|5781606 +ivy-leaved geranium|5781639 +iw|5782105 +iwo|5782152 +iwo jima|5782213 +iww|5782302 +ix|5782455 +ixc|5782545 +ixia|5782582 +ixl|5782633 +ixobrychus|5782670 +ixobrychus exilis|5782729 +ixodes|5782796 +ixodes dammini|5782848 +ixodes dentatus|5782914 +ixodes neotomae|5782972 +ixodes pacificus|5783030 +ixodes persulcatus|5783116 +ixodes ricinus|5783180 +ixodes scapularis|5783258 +ixodes spinipalpis|5783338 +ixodid|5783402 +ixodidae|5783433 +iyar|5783493 +iyyar|5783540 +iz al-din al-qassam battalions|5783588 +izaak walton|5783773 +izanagi|5783829 +izanami|5783869 +izar|5783909 +izmir|5783949 +izzard|5784011 +j|5784093 +j particle|5785393 +j. b. rhine|5784216 +j. b. s. haldane|5784291 +j. c. maxwell|5784383 +j. craig ventner|5784458 +j. d. salinger|5784534 +j. e. johnston|5784618 +j. edgar hoover|5784713 +j. j. hill|5784795 +j. m. barrie|5784876 +j. m. synge|5784998 +j. p. morgan|5785114 +j. r. firth|5785196 +j.r.r. tolkien|5785283 +jab|5785452 +jabalpur|5785636 +jabat al-tahrir al-filistiniyyah|5785703 +jabber|5785883 +jabberer|5786019 +jabbering|5786092 +jabberwocky|5786188 +jabbing|5786260 +jabiru|5786318 +jabiru mycteria|5786479 +jaboncillo|5786533 +jabot|5786633 +jaboticaba|5786678 +jaboticaba tree|5786766 +jacamar|5786834 +jacaranda|5786865 +jacinth|5786955 +jack|5787007 +jack bean|5788406 +jack benny|5788480 +jack crevalle|5788550 +jack dempsey|5788606 +jack frost|5788716 +jack kennedy|5788782 +jack kerouac|5788978 +jack ladder|5789064 +jack lemmon|5789120 +jack london|5789214 +jack mackerel|5789289 +jack nicklaus|5789378 +jack oak|5789474 +jack of all trades|5789605 +jack off|5789747 +jack pine|5789829 +jack plane|5789889 +jack roosevelt robinson|5789951 +jack salmon|5790060 +jack the ripper|5790146 +jack up|5790217 +jack william nicklaus|5790274 +jack-a-lantern|5787603 +jack-by-the-hedge|5787691 +jack-in-the-box|5787806 +jack-in-the-pulpit|5787845 +jack-o'-lantern|5788010 +jack-o-lantern|5788134 +jack-o-lantern fungus|5788222 +jack-tar|5788310 +jackal|5790378 +jackanapes|5790420 +jackass|5790498 +jackass bat|5790614 +jackass penguin|5790696 +jackboot|5790749 +jackdaw|5790820 +jacket|5790870 +jacket crown|5791082 +jacket potato|5791117 +jackfruit|5791153 +jackfruit tree|5791252 +jackhammer|5791322 +jackie robinson|5791390 +jacking off|5791491 +jackknife|5791570 +jackknife clam|5791715 +jackknife-fish|5791657 +jacklight|5791768 +jackpot|5791848 +jackrabbit|5791917 +jacks|5791942 +jackscrew|5792568 +jacksmelt|5792603 +jacksnipe|5792673 +jackson|5792784 +jackson pollock|5793626 +jacksonia|5793683 +jacksonian|5793746 +jacksonian epilepsy|5793878 +jacksonville|5793960 +jackstones|5794053 +jackstraw|5794132 +jackstraws|5794167 +jacob|5794244 +jacob epstein|5794662 +jacob harmensen|5794765 +jacob's ladder|5794314 +jacob's rod|5794520 +jacob's staff|5794562 +jacobean|5794897 +jacobean lily|5794988 +jacobi|5795069 +jacobin|5795131 +jacobinic|5795166 +jacobinical|5795216 +jacobinism|5795268 +jacobite|5795310 +jacobs|5795391 +jacobus arminius|5795628 +jaconet|5795761 +jacopo robusti|5795808 +jacquard|5795869 +jacquard loom|5796039 +jacqueline cochran|5796090 +jacquemier's sign|5796181 +jacques alexandre cesar charles|5796234 +jacques anatole francois thibault|5796341 +jacques bernoulli|5796454 +jacques cartier|5796555 +jacques charles|5796614 +jacques costeau|5796705 +jacques derrida|5796796 +jacques etienne montgolfier|5796873 +jacques francois antoine ibert|5796961 +jacques francois fromental elie halevy|5797047 +jacques germain soufflot|5797167 +jacques lipchitz|5797254 +jacques loeb|5797346 +jacques louis david|5797399 +jacques lucien monod|5797462 +jacques marquette|5797544 +jacques monod|5797643 +jacques offenbach|5797718 +jacques tati|5797782 +jacques tatischeff|5797888 +jacques yves costeau|5798000 +jacquinia|5798096 +jacquinia armillaris|5798172 +jacquinia keyensis|5798248 +jactation|5798323 +jactitate|5798378 +jactitation|5798471 +jaculus|5798596 +jaculus jaculus|5798648 +jacuzzi|5798696 +jade|5798750 +jade green|5799191 +jade vine|5799241 +jade-green|5799156 +jaded|5799307 +jadeite|5799360 +jadestone|5799385 +jaeger|5799420 +jafar|5799456 +jafar umar thalib|5799531 +jaffa|5799618 +jaffa orange|5799684 +jaffar|5799732 +jaffar umar thalib|5799808 +jafnea semitosta|5799896 +jag|5799962 +jagannath|5800077 +jagannatha|5800145 +jagatai|5800214 +jagganath|5800312 +jaggary|5800380 +jagged|5800444 +jaggedly|5800522 +jaggedness|5800548 +jagger|5800591 +jaggery|5800658 +jaggery palm|5800722 +jagghery|5800812 +jaggy|5800876 +jaghatai|5800955 +jagua|5801054 +jaguar|5801121 +jaguarondi|5801182 +jaguarundi|5801260 +jaguarundi cat|5801338 +jahvey|5801416 +jahweh|5801520 +jai alai|5801624 +jail|5801660 +jail cell|5801823 +jail delivery|5801864 +jailbird|5801914 +jailbreak|5801977 +jailed|5802063 +jailer|5802114 +jailhouse|5802211 +jailor|5802279 +jain|5802376 +jainism|5802434 +jainist|5802542 +jaish-e-muhammad|5802636 +jaish-i-mohammed|5802791 +jak|5802946 +jakarta|5802987 +jakes|5803059 +jakob behmen|5803249 +jakob bernoulli|5803371 +jakob boehm|5803470 +jakob boehme|5803591 +jakob bohme|5803713 +jakob grimm|5803834 +jakob hermandszoon|5803941 +jakob liebmann beer|5804076 +jakob ludwig felix mendelssohn-bartholdy|5804162 +jakob ludwig karl grimm|5804292 +jakob-creutzfeldt disease|5803114 +jakobson|5804411 +jalalabad|5804508 +jalapeno|5804542 +jalapeno pepper|5804745 +jalopy|5804818 +jalousie|5804891 +jam|5804947 +jam session|5805480 +jam-pawncked|5805436 +jamaat ul-fuqra|5805521 +jamaica|5805657 +jamaica apple|5805723 +jamaica bayberry|5805790 +jamaica caper tree|5805888 +jamaica dogwood|5805977 +jamaica honeysuckle|5806073 +jamaica quassia|5806195 +jamaica rum|5806329 +jamaica shorts|5806366 +jamaica sorrel|5806446 +jamaican|5806548 +jamaican capital|5806621 +jamaican cherry|5806709 +jamaican dollar|5806815 +jamais vu|5806863 +jamb|5806931 +jambalaya|5806962 +jambeau|5806986 +jamberry|5807082 +jambon|5807271 +jamboree|5807310 +jambos|5807375 +jambosa|5807442 +james|5807512 +james a. garfield|5807867 +james abbott mcneill whistler|5808059 +james abraham garfield|5808145 +james agee|5808342 +james albert michener|5808387 +james alfred van allen|5808478 +james arthur baldwin|5808553 +james augustine aloysius joyce|5808640 +james augustus henry murray|5808743 +james augustus murray|5808975 +james baldwin|5809201 +james barrie|5809281 +james bay|5809403 +james bernoulli|5809436 +james bond|5809535 +james boswell|5809622 +james bowie|5809681 +james branch cabell|5809738 +james buchanan|5809808 +james buchanan brady|5809956 +james butler hickock|5810062 +james byron dean|5810156 +james cagney|5810258 +james clark ross|5810356 +james clerk maxwell|5810445 +james cleveland owens|5810526 +james cook|5810610 +james crichton|5810688 +james dean|5810792 +james dewey watson|5810888 +james douglas morrison|5810966 +james earl carter|5811053 +james earl carter jr.|5811238 +james edmund scripps|5811427 +james edward meade|5811516 +james fenimore cooper|5811595 +james francis thorpe|5811669 +james franck|5811751 +james garfield|5811803 +james george frazer|5811992 +james grover thurber|5812087 +james hargreaves|5812190 +james harold doolittle|5812274 +james harvey robinson|5812412 +james henry leigh hunt|5812500 +james hogg|5812585 +james howard meredith|5812626 +james hutton|5812765 +james i|5812817 +james ii|5812880 +james iv|5812945 +james ives|5812990 +james jerome hill|5813058 +james john corbett|5813146 +james joseph tunney|5813250 +james joyce|5813341 +james k. polk|5813425 +james knox polk|5813590 +james langston hughes|5813757 +james leonard farmer|5813847 +james madison|5813967 +james maitland stewart|5814111 +james marshall hendrix|5814231 +james mason|5814331 +james matthew barrie|5814433 +james mckeen cattell|5814563 +james meredith|5814658 +james merritt ives|5814790 +james michener|5814866 +james mill|5814950 +james monroe|5814998 +james murray|5815138 +james naismith|5815355 +james neville mason|5815422 +james parkinson|5815532 +james polk|5815618 +james prescott joule|5815780 +james riddle hoffa|5815847 +james river|5815925 +james scott connors|5816001 +james thomas farrell|5816085 +james thomas harris|5816158 +james thurber|5816241 +james tobin|5816337 +james usher|5816402 +james ussher|5816509 +james watson|5816617 +james watt|5816689 +james whitcomb riley|5816795 +james william fulbright|5816857 +james wilson|5816950 +james wyatt|5817022 +jamesonia|5817080 +jamestown|5817136 +jamestown weed|5817180 +jamison|5817305 +jamjar|5817386 +jammed|5817413 +jammer|5817457 +jammies|5817492 +jamming|5817553 +jammu and kashmir|5817624 +jampack|5817758 +jampan|5817807 +jampot|5817841 +jan|5817868 +jan amos komensky|5817918 +jan christian smuts|5818010 +jan evangelista purkinje|5818105 +jan hendrix oort|5818216 +jan hus|5818297 +jan swammerdam|5818379 +jan tinbergen|5818471 +jan van der meer|5818544 +jan van eyck|5818618 +jan vermeer|5818678 +jane austen|5818747 +jane doe|5818801 +jane fonda|5818834 +jane goodall|5818879 +jane jacobs|5818949 +jane seymour|5819003 +jangle|5819052 +jangling|5819134 +jangly|5819182 +janis joplin|5819230 +janissary|5819308 +janitor|5819361 +jansen|5819403 +jansenism|5819508 +jansenist|5819577 +january|5819644 +january 1|5819698 +january 19|5819917 +january 20|5820008 +january 6|5820115 +janus|5820222 +janus-faced|5820255 +jap|5820461 +jap clover|5820501 +japan|5820590 +japan allspice|5820763 +japan bittersweet|5820865 +japan cedar|5821001 +japan clover|5821092 +japan current|5821181 +japan tallow|5821258 +japan trench|5821307 +japan wax|5821368 +japanese|5821414 +japanese allspice|5821629 +japanese andromeda|5821734 +japanese angelica tree|5821842 +japanese apricot|5821921 +japanese archipelago|5822001 +japanese banana|5822087 +japanese barberry|5822159 +japanese barnyard millet|5822233 +japanese beech|5822373 +japanese beetle|5822429 +japanese bittersweet|5822528 +japanese black pine|5822667 +japanese brome|5822769 +japanese capital|5822857 +japanese carpet grass|5822961 +japanese cedar|5823050 +japanese cherry|5823144 +japanese chess|5823261 +japanese chestnut|5823349 +japanese clover|5823434 +japanese crab|5823523 +japanese deer|5823574 +japanese deity|5823653 +japanese flowering cherry|5823720 +japanese honeysuckle|5823914 +japanese hop|5823995 +japanese iris|5824057 +japanese islands|5824124 +japanese ivy|5824206 +japanese lacquer tree|5824285 +japanese lawn grass|5824482 +japanese leaf|5824572 +japanese leek|5824657 +japanese lilac|5824754 +japanese lime|5824815 +japanese linden|5824926 +japanese maple|5825039 +japanese medlar|5825157 +japanese millet|5825262 +japanese monetary unit|5825393 +japanese morning glory|5825462 +japanese oak|5825543 +japanese oyster|5825725 +japanese pagoda tree|5825786 +japanese persimmon|5825917 +japanese pink|5826009 +japanese plum|5826119 +japanese poinsettia|5826315 +japanese privet|5826416 +japanese quince|5826484 +japanese radish|5826563 +japanese red army|5826655 +japanese red pine|5826817 +japanese rose|5826924 +japanese snowbell|5827019 +japanese spaniel|5827088 +japanese spurge|5827143 +japanese stranglehold|5827219 +japanese sumac|5827287 +japanese table pine|5827477 +japanese tree lilac|5827586 +japanese umbrella pine|5827687 +japanese varnish tree|5827791 +japanese wistaria|5828089 +japanese yew|5828172 +japanese-speaking|5821556 +jape|5828227 +japheth|5828298 +japonica|5828338 +jar|5828451 +jar against|5828689 +jarful|5828800 +jargon|5828833 +jargoon|5828981 +jaroslav hasek|5829031 +jarrell|5829090 +jarring|5829136 +jarvik artificial heart|5829218 +jarvik heart|5829305 +jasmine|5829381 +jasmine tobacco|5829409 +jasminum|5829492 +jasminum mesnyi|5829565 +jasminum nudiflorum|5829631 +jasminum officinale|5829703 +jasminum sambac|5829798 +jason|5829863 +jasper|5829899 +jasper johns|5829926 +jaspers|5829990 +jassid|5830108 +jassidae|5830135 +jat|5830195 +jati|5830265 +jatropha|5830285 +jatropha curcus|5830345 +jatropha stimulosus|5830431 +jatropha urens|5830585 +jaun gris|5830734 +jaundice|5830776 +jaundice of the newborn|5830906 +jaundiced|5831013 +jaunt|5831090 +jauntiness|5831199 +jaunting car|5831369 +jaunty|5831407 +jaunty car|5831549 +java|5831587 +java finch|5831745 +java man|5831845 +java olives|5831936 +java pepper|5832007 +java sparrow|5832094 +javan|5832196 +javanese|5832265 +javanthropus|5832388 +javel water|5832450 +javelin|5832532 +javelina|5832618 +javelle water|5832721 +jaw|5832805 +jawaharlal nehru|5833352 +jawan|5833433 +jawbone|5833463 +jawbreaker|5833722 +jawfish|5833791 +jawless|5833840 +jawless fish|5833864 +jawless vertebrate|5833933 +jaws|5834002 +jaws of life|5834109 +jay|5834149 +jay cooke|5834236 +jay gould|5834290 +jaybird|5834344 +jayshullah|5834404 +jaywalk|5834509 +jaywalker|5834606 +jazz|5834650 +jazz around|5835050 +jazz band|5835157 +jazz festival|5835225 +jazz group|5835262 +jazz musician|5835330 +jazz up|5835393 +jazzman|5835478 +jazzy|5835541 +jdam|5835618 +je ne sais quois|5835698 +jealous|5835747 +jealously|5835832 +jealousy|5835871 +jean|5835988 +jean anouilh|5836822 +jean antoine watteau|5836886 +jean arp|5836956 +jean auguste dominique ingres|5837024 +jean baptiste camille corot|5837108 +jean baptiste de lamarck|5837187 +jean baptiste donatien de vimeur|5837304 +jean baptiste joseph fourier|5837431 +jean baptiste lully|5837565 +jean baptiste racine|5837654 +jean bernard leon foucault|5837750 +jean bernoulli|5837832 +jean caulvin|5837927 +jean cauvin|5838052 +jean chauvin|5838176 +jean cocteau|5838301 +jean de la fontaine|5838405 +jean edouard vuillard|5838480 +jean francois champollion|5838567 +jean francois millet|5838653 +jean genet|5838719 +jean giraudoux|5838786 +jean harlow|5838890 +jean honore fragonard|5838956 +jean laffite|5839027 +jean lafitte|5839129 +jean louis charles garnier|5839231 +jean louis rodolphe agassiz|5839321 +jean luc godard|5839437 +jean martin charcot|5839532 +jean monnet|5839614 +jean nicholas arthur rimbaud|5839680 +jean paul marat|5839775 +jean piaget|5839871 +jean racine|5839924 +jean sibelius|5840011 +jean-baptiste poquelin|5836085 +jean-claude duvalier|5836169 +jean-frederic joliot|5836257 +jean-frederic joliot-curie|5836365 +jean-jacques rousseau|5836479 +jean-louis lebris de kerouac|5836567 +jean-paul sartre|5836669 +jean-philippe rameau|5836755 +jeanne antoinette poisson|5840098 +jeanne d'arc|5840211 +jeannette rankin|5840292 +jebel musa|5840394 +jed'dah|5840466 +jeddah|5840545 +jeep|5840623 +jeer|5840684 +jeerer|5840836 +jeering|5840913 +jeeringly|5841023 +jeffers|5841060 +jefferson|5841129 +jefferson city|5841276 +jefferson davis|5841349 +jefferson davis' birthday|5841428 +jeffersonian|5841516 +jeffrey pine|5841734 +jeffrey's pine|5841631 +jehad|5841835 +jehovah|5841929 +jehovah's witness|5842123 +jehovah's witnesses|5842179 +jejunal artery|5842288 +jejune|5842367 +jejunely|5842482 +jejuneness|5842510 +jejunitis|5842690 +jejunity|5842736 +jejunoileitis|5842865 +jejunostomy|5842915 +jejunum|5843009 +jekyll and hyde|5843042 +jell|5843106 +jell-o|5843141 +jellaba|5843280 +jelled|5843303 +jellied|5843343 +jellify|5843383 +jello|5843447 +jelly|5843498 +jelly bean|5843659 +jelly doughnut|5843695 +jelly egg|5843759 +jelly fungus|5843795 +jelly roll morton|5843824 +jellyfish|5843932 +jellyleaf|5844042 +jellylike|5844101 +jellyroll|5844149 +jem|5844191 +jemaah islamiyah|5844333 +jemmy|5844535 +jena|5844589 +jenghiz khan|5844638 +jenner|5844707 +jennet|5844779 +jenny|5844815 +jenny ass|5844906 +jenny lind|5844942 +jenny wren|5845006 +jens otto harry jespersen|5845058 +jensen|5845174 +jeopardise|5845235 +jeopardize|5845314 +jeopardy|5845468 +jerboa|5845511 +jerboa kangaroo|5845556 +jerboa rat|5845623 +jeremiad|5845647 +jeremiah|5845675 +jeremy bentham|5845748 +jerevan|5845827 +jerez|5845894 +jerez de la frontera|5845965 +jericho|5846051 +jerk|5846091 +jerk off|5846420 +jerk-off|5846368 +jerked meat|5846502 +jerker|5846534 +jerkily|5846564 +jerkin|5846594 +jerkiness|5846617 +jerking|5846673 +jerking off|5846773 +jerkwater|5846852 +jerky|5846903 +jeroboam|5846980 +jeroboam i|5847069 +jerom bos|5847127 +jerome|5847190 +jerome david kern|5847421 +jerome david salinger|5847492 +jerome kern|5847583 +jerome robbins|5847648 +jerry|5847709 +jerry lee lewis|5847885 +jerry-builder|5847763 +jerry-building|5847806 +jerry-built|5847852 +jersey|5847963 +jersey city|5848101 +jersey elm|5848163 +jersey fern|5848305 +jersey knapweed|5848377 +jersey pine|5848427 +jerusalem|5848527 +jerusalem artichoke|5848591 +jerusalem artichoke sunflower|5848804 +jerusalem cherry|5848943 +jerusalem cricket|5849056 +jerusalem cross|5849171 +jerusalem oak|5849218 +jerusalem sage|5849331 +jerusalem thorn|5849407 +jerusalem warriors|5849699 +jespersen|5849820 +jessamine|5849920 +jesse jackson|5849995 +jesse james|5850163 +jesse louis jackson|5850241 +jesse owens|5850415 +jessica lucy mitford|5850489 +jessica mitford|5850578 +jessye norman|5850662 +jest|5850714 +jest at|5850904 +jester|5850994 +jesting|5851054 +jestingly|5851112 +jesuit|5851139 +jesuit order|5851304 +jesuit's bark|5851234 +jesuitic|5851377 +jesuitical|5851450 +jesuitism|5851525 +jesuitry|5851582 +jesuits' nut|5851638 +jesus|5851744 +jesus christ|5851908 +jesus of nazareth|5852079 +jet|5852255 +jet black|5852821 +jet bridge|5852902 +jet engine|5852964 +jet lag|5853027 +jet plane|5853072 +jet propulsion|5853140 +jet set|5853184 +jet stream|5853221 +jet-black|5852653 +jet-propelled|5852711 +jet-propelled plane|5852753 +jeth|5853251 +jetliner|5853300 +jets|5853352 +jetsam|5853703 +jetting|5853756 +jettison|5853809 +jetty|5853956 +jeu d'esprit|5854024 +jeune fille|5854083 +jevons|5854172 +jew|5854265 +jew bush|5855007 +jew's harp|5854596 +jew's-ear|5854352 +jew's-ears|5854437 +jew-baiter|5854667 +jew-bush|5854716 +jewbush|5855298 +jewel|5855426 +jewel casket|5855606 +jewel orchid|5855639 +jeweled|5855687 +jeweler|5855809 +jeweler's glass|5855900 +jeweler's loupe|5855944 +jewelled|5856021 +jewelled headdress|5856143 +jeweller|5856190 +jewellery|5856280 +jewelry|5856317 +jewelry dealer|5856354 +jewelry maker|5856399 +jewelry store|5856452 +jewels-of-opar|5856497 +jewelweed|5856599 +jewess|5856712 +jewfish|5856756 +jewish|5856859 +jewish calendar|5857001 +jewish calendar month|5857077 +jewish holy day|5857151 +jewish new year|5857219 +jewish orthodoxy|5857360 +jewish religion|5857453 +jewish rye|5857526 +jewish rye bread|5857584 +jewish-orthodox|5856941 +jewison|5857648 +jewry|5857735 +jews' harp|5857769 +jezebel|5857840 +jfk|5857904 +jhvh|5858091 +ji|5858193 +jiao|5858381 +jib|5858417 +jibboom|5858517 +jibe|5858539 +jidda|5858693 +jiddah|5858770 +jiffy|5858848 +jig|5858978 +jigaboo|5859132 +jigger|5859223 +jiggered|5859347 +jiggermast|5859375 +jiggery-pokery|5859407 +jiggle|5859534 +jigsaw|5859600 +jigsaw puzzle|5859728 +jihad|5859758 +jihadi|5859852 +jihadist|5859895 +jillions|5859978 +jilt|5860083 +jilted|5860129 +jim bowie|5860170 +jim corbett|5860225 +jim crow|5860322 +jim henson|5860453 +jim morrison|5860501 +jim thorpe|5860578 +jimdandy|5860650 +jimenez|5860783 +jimenez de cisneros|5860832 +jimhickey|5860976 +jimi hendrix|5861108 +jimmies|5861198 +jimmy|5861293 +jimmy cagney|5861389 +jimmy carter|5861487 +jimmy conors|5861667 +jimmy doolittle|5861744 +jimmy durante|5861875 +jimmy hoffa|5861935 +jimmy stewart|5862006 +jimson weed|5862117 +jimsonweed|5862308 +jinghis khan|5862418 +jinghpaw|5862487 +jinghpo|5862546 +jingle|5862604 +jingle-jangle|5862729 +jingling|5862791 +jingly|5862836 +jingo|5862881 +jingoism|5862976 +jingoist|5863101 +jingoistic|5863196 +jinja|5863305 +jinks|5863355 +jinnah|5863438 +jinnee|5863513 +jinni|5863581 +jinrikisha|5863649 +jinx|5863691 +jinxed|5863884 +jiqui|5863923 +jird|5863994 +jirga|5864024 +jirrbal|5864053 +jitney|5864119 +jitter|5864222 +jitterbug|5864269 +jitteriness|5864370 +jittering|5864433 +jitters|5864473 +jittery|5864587 +jiujitsu|5864692 +jive|5864738 +jnd|5864842 +jnr|5864962 +joachim|5864997 +joan crawford|5865064 +joan didion|5865118 +joan miro|5865172 +joan of arc|5865214 +joan sutherland|5865294 +joao pessoa|5865375 +job|5865437 +job action|5866193 +job application|5866227 +job candidate|5866264 +job control|5866305 +job description|5866380 +job interview|5866436 +job lot|5866490 +job's comforter|5865954 +job's tears|5866029 +job-control language|5866067 +job-oriented terminal|5866153 +jobber|5866554 +jobbery|5866615 +jobcentre|5866655 +jobholder|5866692 +jobless|5866720 +jocasta|5866765 +jock|5866805 +jock itch|5866913 +jockey|5866988 +jockey cap|5867213 +jockey club|5867259 +jockey shorts|5867316 +jockstrap|5867371 +jocose|5867453 +jocosely|5867511 +jocoseness|5867536 +jocosity|5867595 +jocote|5867687 +jocular|5867751 +jocularity|5867824 +jocund|5867940 +jocundity|5867995 +jodhpur|5868042 +jodhpur boot|5868152 +jodhpur breeches|5868207 +jodhpur shoe|5868272 +joe bloggs|5868532 +joe blow|5868633 +joe clark|5868732 +joe dimaggio|5868829 +joe louis|5868921 +joe-pye weed|5868327 +joel|5868999 +joewood|5869056 +joffre|5869112 +joffrey|5869179 +jog|5869233 +jog trot|5869503 +jogger|5869526 +jogging|5869549 +joggle|5869591 +johan august strindberg|5869740 +johan julius christian sibelius|5869861 +johan kepler|5869966 +johann bernoulli|5870057 +johann christoph friedrich von schiller|5870154 +johann friedrich herbart|5870266 +johann gottfried von herder|5870345 +johann gutenberg|5870429 +johann joachim winckelmann|5870518 +johann ludwig uhland|5870653 +johann mendel|5870716 +johann muller|5870825 +johann sebastian bach|5870930 +johann strauss|5871006 +johann winckelmann|5871139 +johann wolfgang von goethe|5871266 +johannes brahms|5871371 +johannes diderik van der waals|5871428 +johannes eckhart|5871546 +johannes evangelista purkinje|5871683 +johannes gutenberg|5871799 +johannes kepler|5871890 +johannes peter muller|5871984 +johannes van der waals|5872067 +johannes vilhelm jensen|5872177 +johannesburg|5872255 +john|5872319 +john adams|5872827 +john addington symonds|5872982 +john amos comenius|5873059 +john anthony ciardi|5873152 +john augustus roebling|5873241 +john bach mcmaster|5873359 +john bardeen|5873441 +john barleycorn|5873494 +john barrington wain|5873640 +john barrymore|5873720 +john barth|5873812 +john bartlett|5873882 +john bernoulli|5873938 +john berry hobbs|5874033 +john birks gillespie|5874107 +john broadus watson|5874204 +john brown|5874273 +john bull|5874339 +john bunyan|5874385 +john burdon sanderson haldane|5874483 +john burgoyne|5874588 +john c. fremont|5874672 +john cabot|5874762 +john cage|5874825 +john calvin|5874889 +john chapman|5875013 +john charles fremont|5875081 +john cheever|5875176 +john chrysostom|5875233 +john churchill|5875460 +john ciardi|5875576 +john constable|5875657 +john copley|5875714 +john d. rockefeller|5875784 +john dalton|5875908 +john davis|5875966 +john davison rockefeller|5876030 +john davys|5876159 +john deere|5876223 +john dewey|5876274 +john doe|5876342 +john donald budge|5876463 +john donne|5876538 +john dory|5876616 +john dos passos|5876661 +john dowland|5876727 +john drew|5876804 +john dryden|5876881 +john duns scotus|5876947 +john eccles|5877048 +john edgar hoover|5877123 +john edward masefield|5877207 +john endecott|5877290 +john endicott|5877376 +john ernst steinbeck|5877462 +john fitzgerald kennedy|5877552 +john fletcher|5877759 +john florio|5877826 +john ford|5877893 +john foster dulles|5877974 +john galbraith|5878049 +john galsworthy|5878168 +john glenn|5878234 +john greenleaf whittier|5878332 +john griffith chaney|5878403 +john haldane|5878487 +john hancock|5878562 +john hanning speke|5878675 +john harvard|5878759 +john hasbrouck van vleck|5878826 +john heming|5878920 +john hemminge|5879026 +john henry|5879134 +john henry newman|5879216 +john henry o'hara|5879378 +john herschel|5879444 +john herschel glenn jr.|5879577 +john hope franklin|5879688 +john howard northrop|5879770 +john hoyer updike|5879841 +john huss|5879919 +john huston|5880003 +john irving|5880090 +john jacob astor|5880144 +john james audubon|5880204 +john james osborne|5880309 +john james rickard macleod|5880398 +john jay|5880495 +john joseph mcgraw|5880567 +john joseph pershing|5880682 +john keats|5880783 +john keble|5880825 +john kenneth galbraith|5880898 +john knox|5881025 +john l. h. down|5881131 +john l. lewis|5881212 +john lackland|5881288 +john le carre|5881378 +john lennon|5881464 +john llewelly lewis|5881547 +john locke|5881629 +john luther jones|5881678 +john lyly|5881802 +john m. browning|5881850 +john macleod|5881952 +john major|5882035 +john marquand|5882133 +john marshall|5882214 +john marstan|5882294 +john masefield|5882358 +john maynard keynes|5882434 +john mccormick|5882516 +john mcgraw|5882571 +john mercer|5882679 +john merven carrere|5882741 +john mill|5882817 +john millington synge|5882906 +john milton|5883032 +john milton cage jr.|5883077 +john mitchell|5883152 +john moses browning|5883211 +john muir|5883316 +john napier|5883379 +john orley allen tate|5883433 +john osborne|5883514 +john paul i|5883597 +john paul ii|5883735 +john paul jones|5883874 +john philip marquand|5883937 +john philip sousa|5884025 +john pierpont morgan|5884111 +john quincy adams|5884201 +john r. major|5884377 +john reed|5884478 +john robinson jeffers|5884540 +john rock|5884623 +john roebling|5884699 +john ronald reuel tolkien|5884808 +john ross|5884929 +john rowlands|5884997 +john roy major|5885115 +john rupert firth|5885217 +john ruskin|5885310 +john scopes|5885361 +john scott haldane|5885449 +john simmons barth|5885530 +john singer sargent|5885608 +john singleton copley|5885673 +john smith|5885753 +john speke|5885829 +john steinbeck|5885905 +john stuart mill|5885989 +john the baptist|5886085 +john the divine|5886205 +john the evangelist|5886360 +john thomas scopes|5886519 +john tradescant|5886614 +john trumbull|5886703 +john tuzo wilson|5886792 +john tyler|5886855 +john tyndall|5886989 +john uhler|5887042 +john updike|5887135 +john van vleck|5887207 +john vanbrugh|5887291 +john venn|5887374 +john von neumann|5887429 +john wain|5887506 +john walker|5887575 +john wanamaker|5887631 +john wayne|5887707 +john webster|5887798 +john wesley|5887862 +john wickliffe|5887938 +john wiclif|5888094 +john wilkes|5888247 +john wilkes booth|5888325 +john william strutt|5888447 +john witherspoon|5888550 +john wyclif|5888654 +john wycliffe|5888807 +john's cabbage|5872700 +johnny|5888962 +johnny appleseed|5889236 +johnny cake|5889308 +johnny reb|5889444 +johnny-jump-up|5889035 +johnnycake|5889521 +johns|5889576 +johns hopkins|5890017 +johnson|5890137 +johnson city|5890564 +johnson grass|5890604 +johnston|5890727 +joie de vivre|5890816 +join|5890849 +join battle|5891096 +join forces|5891132 +joined|5891193 +joiner|5891256 +joinery|5891314 +joining|5891392 +joint|5891450 +joint author|5892122 +joint chiefs|5892167 +joint chiefs of staff|5892241 +joint direct attack munition|5892324 +joint fir|5892428 +joint hinge|5892466 +joint probability|5892520 +joint resolution|5892566 +joint return|5892623 +joint snake|5892681 +joint venture|5892741 +joint-stock company|5892085 +jointed|5892772 +jointed charlock|5892812 +jointed rush|5892893 +jointer|5892939 +jointer plane|5893038 +jointing plane|5893137 +jointly|5893236 +jointure|5893298 +jointworm|5893417 +joist|5893452 +joke|5893472 +joker|5893752 +jokester|5893843 +joking|5893882 +jokingly|5893940 +joliet|5894001 +joliot|5894079 +joliot-curie|5894173 +jolliet|5894322 +jollification|5894401 +jollify|5894471 +jollity|5894571 +jolly|5894661 +jolly along|5894860 +jolly boat|5894905 +jolly roger|5894936 +jolly up|5894997 +jolson|5895042 +jolt|5895166 +jolted|5895296 +jolting|5895344 +jolty|5895396 +jomada i|5895448 +jomada ii|5895507 +jomo kenyata|5895569 +jonah|5895644 +jonah crab|5895748 +jonas edward salk|5895800 +jonas salk|5895872 +jonathan|5895937 +jonathan edwards|5895991 +jonathan swift|5896088 +jonathan trumbull|5896171 +jones|5896255 +jones' penstemon|5896622 +jonesboro|5896705 +jong|5896739 +jongleur|5896783 +jonquil|5896881 +jons jakob berzelius|5896970 +jonson|5897039 +jook|5897115 +jook house|5897244 +jook joint|5897353 +joplin|5897462 +joppa|5897570 +jordan|5897636 +jordan almond|5897747 +jordan curve|5897868 +jordan river|5897936 +jordanella|5897984 +jordanella floridae|5898043 +jordanian|5898129 +jordanian dinar|5898215 +jordanian monetary unit|5898286 +jorge borges|5898357 +jorge luis borges|5898431 +jorge mario pedro vargas llosa|5898510 +joroslav heyrovsky|5898627 +jorum|5898692 +jose clemente orozco|5898712 +jose julian marti|5898791 +jose orozco|5898896 +jose ortega y gasset|5898966 +josef albers|5899045 +josef hoffmann|5899118 +josef michel montgolfier|5899185 +josef von sternberg|5899267 +joseph|5899377 +joseph alois schumpeter|5899636 +joseph banks rhine|5899748 +joseph ben matthias|5899830 +joseph black|5899961 +joseph campbell|5900010 +joseph conrad|5900072 +joseph deems taylor|5900163 +joseph eggleston johnston|5900254 +joseph emerson worcester|5900360 +joseph francis keaton|5900456 +joseph goebbels|5900588 +joseph greenberg|5900689 +joseph haydn|5900760 +joseph heller|5900829 +joseph henry|5900887 +joseph hilaire peter belloc|5900938 +joseph hooker|5901039 +joseph jacques cesaire joffre|5901124 +joseph joachim|5901214 +joseph john thomson|5901288 +joseph lincoln steffens|5901379 +joseph lister|5901473 +joseph louis barrow|5901565 +joseph louis gay-lussac|5901653 +joseph m. jacquard|5901739 +joseph mallord william turner|5901847 +joseph marie jacquard|5901931 +joseph mccarthy|5902042 +joseph oliver|5902157 +joseph paul dimaggio|5902235 +joseph paxton|5902335 +joseph priestley|5902416 +joseph pulitzer|5902477 +joseph raymond mccarthy|5902557 +joseph rudyard kipling|5902680 +joseph schumpeter|5902773 +joseph smith|5902879 +joseph stalin|5902944 +joseph warren stilwell|5903039 +joseph's coat|5899501 +josephus|5903155 +josh|5903275 +josh billings|5903378 +joshua|5903458 +joshua tree|5903538 +josiah quincy|5903594 +josiah spode|5903668 +josiah wedgwood|5903744 +josiah willard gibbs|5903829 +josip broz|5903894 +joss|5903975 +joss house|5904011 +joss stick|5904038 +jostle|5904066 +jostling|5904138 +josue|5904169 +jot|5904217 +jot down|5904364 +jotter|5904392 +jotting|5904417 +jotun|5904443 +jotunn|5904477 +joule|5904512 +jounce|5904617 +journal|5904690 +journal bearing|5904866 +journal box|5904899 +journalese|5904928 +journalism|5904971 +journalist|5905046 +journalist's privilege|5905115 +journalistic|5905157 +journey|5905190 +journey cake|5905316 +journeyer|5905371 +journeying|5905418 +journeyman|5905474 +joust|5905552 +jove|5905610 +jovial|5905649 +joviality|5905704 +jovian|5905839 +jovian planet|5905910 +jowett|5905973 +jowl|5906064 +jowly|5906197 +joy|5906244 +joyce|5906375 +joyce carol oates|5906453 +joyful|5906518 +joyfully|5906631 +joyfulness|5906667 +joyless|5906710 +joylessness|5906823 +joyous|5906873 +joyously|5907076 +joyousness|5907112 +joyride|5907155 +joystick|5907212 +jr|5907313 +jr.|5907347 +jra|5907375 +juan carlos|5907523 +juan carlos victor maria de borbon y borbon|5907618 +juan domingo peron|5907745 +juan ramon jimenez|5907806 +juarez|5907866 +jubbulpore|5907932 +jubilance|5908001 +jubilancy|5908078 +jubilant|5908155 +jubilantly|5908274 +jubilate|5908350 +jubilation|5908436 +jubilee|5908640 +juda|5908688 +judaea|5908785 +judah|5908886 +judaic|5909007 +judaica|5909122 +judaical|5909194 +judaism|5909238 +judas|5909329 +judas iscariot|5909618 +judas maccabaeus|5909671 +judas tree|5909721 +judder|5909816 +jude|5909846 +judea|5909948 +judeo-christian|5910048 +judeo-spanish|5910131 +judge|5910183 +judge advocate|5910613 +judge advocate general|5910679 +judge's robe|5910553 +judgement|5910732 +judgement by default|5911212 +judgement day|5911334 +judgement in personam|5911525 +judgement in rem|5911651 +judgement of dismissal|5911730 +judgement on the merits|5911831 +judgement on the pleadings|5911924 +judges|5912058 +judgeship|5912206 +judging|5912300 +judgment|5912361 +judgment by default|5912847 +judgment day|5912969 +judgment in personam|5913159 +judgment in rem|5913285 +judgment lien|5913364 +judgment of conviction|5913392 +judgment of dismissal|5913487 +judgment on the merits|5913588 +judgment on the pleadings|5913681 +judgmental|5913815 +judgship|5913859 +judicable|5913953 +judicatory|5913985 +judicature|5914056 +judicial|5914278 +judicial activism|5914425 +judicial admission|5914521 +judicial branch|5914572 +judicial decision|5914620 +judicial doctrine|5914697 +judicial principle|5914769 +judicial proceeding|5914841 +judicial review|5914921 +judicial sale|5914953 +judicial separation|5915039 +judicial system|5915118 +judicial writ|5915189 +judiciary|5915278 +judicious|5915449 +judiciousness|5915535 +judith|5915658 +judith jamison|5915723 +judo|5915811 +judy garland|5915853 +jug|5915940 +jug band|5916095 +jug wine|5916122 +jugal bone|5916150 +jugal point|5916234 +jugale|5916281 +jugful|5916328 +juggernaut|5916361 +juggle|5916501 +juggler|5916719 +jugglery|5916764 +juggling|5916862 +juglandaceae|5916927 +juglandales|5917029 +juglans|5917092 +juglans californica|5917162 +juglans cinerea|5917254 +juglans nigra|5917352 +juglans regia|5917453 +jugoslav|5917577 +jugoslavian|5917646 +jugoslavija|5917718 +jugular|5917848 +jugular vein|5917985 +juice|5918060 +juice reamer|5918230 +juice up|5918275 +juiceless|5918360 +juicer|5918433 +juiciness|5918516 +juicy|5918576 +jujitsu|5918741 +juju|5918787 +jujube|5918864 +jujube bush|5919031 +jujutsu|5919117 +juke|5919163 +juke house|5919290 +juke joint|5919399 +jukebox|5919508 +julep|5919562 +jules alfred huot de goncourt|5919597 +jules de goncourt|5919707 +jules emile frederic massenet|5919805 +jules feifer|5919892 +jules verne|5919945 +julia evelina smith|5919998 +julia ward howe|5920064 +julian|5920121 +julian bond|5920196 +julian calendar|5920296 +julienne|5920371 +julio iglesias|5920393 +julius caesar|5920477 +julius erving|5920594 +julius marx|5920675 +julius ullman|5920736 +julius winfield erving|5920868 +july|5920958 +july 1|5921002 +july 4|5921069 +jumada i|5921155 +jumada ii|5921214 +jumbal|5921276 +jumbie bead|5921304 +jumble|5921368 +jumble sale|5921646 +jumbled|5921711 +jumbo|5921790 +jumbo jet|5921840 +jumbojet|5921983 +jumby bead|5922045 +jumby bean|5922109 +jumby tree|5922183 +jument|5922257 +jumentous|5922301 +jump|5922331 +jump ball|5923302 +jump cut|5923350 +jump for joy|5923372 +jump off|5923441 +jump on|5923521 +jump out|5923590 +jump rope|5923659 +jump seat|5923752 +jump shot|5923776 +jump suit|5923818 +jump-start|5923124 +jumped-up|5923950 +jumper|5923981 +jumper cable|5924185 +jumper lead|5924252 +jumpers|5924319 +jumpiness|5924582 +jumping|5924645 +jumping bean|5924881 +jumping bristletail|5924942 +jumping gene|5925009 +jumping jack|5925091 +jumping mouse|5925127 +jumping orchid|5925179 +jumping plant louse|5925251 +jumping seed|5925313 +jumping up and down|5925374 +jumping-off place|5924711 +jumping-off point|5924794 +jumpstart|5925416 +jumpsuit|5925514 +jumpy|5925550 +juncaceae|5925655 +juncaginaceae|5925745 +junco|5925895 +junco hyemalis|5925925 +junction|5926015 +junction barrier|5926307 +junction rectifier|5926368 +junction transistor|5926494 +juncture|5926610 +juncus|5926778 +juncus articulatus|5926844 +juncus bufonius|5926909 +juncus effusus|5926965 +juncus inflexus|5927048 +juncus leseurii|5927104 +juncus tenuis|5927160 +jund-ul-islam|5927215 +june|5927342 +june 14|5927386 +june 21|5927424 +june 23|5927484 +june 24|5927573 +june 29|5927654 +june 3|5927720 +june beetle|5927789 +june bug|5927890 +june grass|5927988 +juneau|5928106 +juneberry|5928161 +juneberry holly|5928291 +jung|5928322 +jungermanniaceae|5928381 +jungermanniales|5928460 +jungian|5928535 +jungian psychology|5928572 +jungle|5928667 +jungle cat|5928755 +jungle cock|5928795 +jungle fever|5928836 +jungle fowl|5928866 +jungle gym|5928925 +jungle hen|5928982 +jungle rot|5929022 +jungly|5929117 +junin virus|5929140 +junior|5929184 +junior class|5929627 +junior college|5929660 +junior featherweight|5929692 +junior high|5929737 +junior high school|5929831 +junior lightweight|5929925 +junior middleweight|5929968 +junior school|5930012 +junior status|5930096 +junior varsity|5930148 +junior welterweight|5930186 +junior-grade|5929525 +juniper|5930230 +juniper berries|5930328 +juniper berry|5930439 +juniper bush|5930468 +juniperic acid|5930551 +junipero serra|5930588 +juniperus|5930672 +juniperus bermudiana|5930734 +juniperus communis|5930830 +juniperus communis depressa|5930900 +juniperus flaccida|5931000 +juniperus horizontalis|5931088 +juniperus procera|5931168 +juniperus sabina|5931263 +juniperus silicicola|5931334 +juniperus virginiana|5931412 +junk|5931534 +junk bond|5931743 +junk dna|5931800 +junk e-mail|5931876 +junk food|5931931 +junk heap|5931955 +junk mail|5932126 +junk pile|5932174 +junk shop|5932345 +junked|5932375 +junker|5932430 +junkers|5932462 +junket|5932563 +junketing|5932769 +junkie|5932816 +junky|5932916 +junkyard|5933017 +juno|5933040 +junoesque|5933071 +junta|5933119 +junto|5933195 +jupati|5933280 +jupati palm|5933376 +jupaty|5933472 +jupiter|5933568 +jupiter fidius|5933746 +jupiter fulgur|5933822 +jupiter fulminator|5933910 +jupiter optimus maximus|5934002 +jupiter pluvius|5934090 +jupiter tonans|5934155 +jupiter's beard|5933649 +jural|5934217 +jurassic|5934247 +jurassic period|5934315 +juridic|5934390 +juridical|5934481 +jurisdiction|5934570 +jurisdictional|5934679 +jurisprudence|5934715 +jurisprudential|5934828 +jurist|5934863 +juristic|5934964 +juror|5934994 +jury|5935046 +jury box|5935163 +jury duty|5935185 +jury mast|5935236 +jury system|5935260 +jury-rigged|5935099 +juryman|5935294 +jurywoman|5935346 +jus civile|5935398 +jus sanguinis|5935464 +jus soli|5935540 +jussieu|5935611 +jussive mood|5935700 +just|5935768 +just about|5936331 +just as|5936487 +just deserts|5936511 +just in case|5936598 +just in time|5936627 +just now|5936668 +just right|5936690 +just so|5936744 +just the ticket|5936776 +just-noticeable difference|5936211 +justice|5936824 +justice department|5937066 +justice of the peace|5937168 +justiciar|5937230 +justiciary|5937292 +justifiable|5937374 +justifiably|5937405 +justification|5937437 +justificative|5937555 +justificatory|5937669 +justified|5937783 +justifiedly|5937807 +justifier|5937842 +justify|5937920 +justinian|5938131 +justinian code|5938200 +justinian i|5938281 +justinian the great|5938352 +justly|5938431 +justness|5938478 +jut|5938580 +jut out|5938794 +jute|5938842 +jutish|5938901 +jutland|5938956 +jutting|5939045 +juvenal|5939176 +juvenescence|5939253 +juvenile|5939334 +juvenile amaurotic idiocy|5939743 +juvenile body|5939966 +juvenile court|5940098 +juvenile delinquency|5940148 +juvenile delinquent|5940223 +juvenile diabetes|5940282 +juvenile person|5940543 +juvenile rheumatoid arthritis|5940630 +juvenile wart|5940736 +juvenile-onset diabetes|5939482 +juvenility|5940772 +juxtapose|5940874 +juxtaposed|5940925 +juxtaposition|5940951 +jv|5941080 +jyaistha|5941121 +jylland|5941174 +jynx|5941217 +k|5941258 +k particle|5942135 +k ration|5942206 +k-dur 20|5941699 +k-lor|5941785 +k-lyte|5941868 +k-meson|5941952 +k.e.|5942012 +k2|5942064 +ka|5942246 +kaaba|5942273 +kabala|5942307 +kabbala|5942476 +kabbalah|5942645 +kabbalism|5942814 +kabbalist|5942961 +kabbalistic|5943055 +kabob|5943135 +kabolin|5943173 +kabul|5943247 +kach|5943308 +kachaturian|5943413 +kachin|5943472 +kachinic|5943541 +kadai|5943612 +kadai language|5943691 +kadikoy|5943779 +kaffir|5943819 +kaffir boom|5943936 +kaffir bread|5944081 +kaffir cat|5944130 +kaffir corn|5944183 +kaffir pox|5944259 +kaffiyeh|5944424 +kafir|5944461 +kafir corn|5944544 +kafiri|5944620 +kafka|5944671 +kafkaesque|5944718 +kafocin|5944781 +kaftan|5944847 +kahane chai|5944902 +kahikatea|5945014 +kahlil gibran|5945152 +kahlua|5945210 +kahn|5945248 +kahoolawe|5945305 +kahoolawe island|5945358 +kai apple|5945418 +kail|5945450 +kainite|5945576 +kainogenesis|5945601 +kaiser|5945732 +kaiser bill|5945763 +kaiser roll|5945829 +kaiser wilhelm|5945859 +kakatoe|5945928 +kakatoe galerita|5946000 +kakatoe leadbeateri|5946094 +kakemono|5946166 +kaki|5946214 +kakke disease|5946386 +kala azar|5946588 +kala-azar|5946418 +kalaallit nunaat|5946748 +kalahari|5946817 +kalahari desert|5946867 +kalamazoo|5946924 +kalansuwa|5946958 +kalantas|5946981 +kalapooia|5947091 +kalapooian|5947157 +kalapuya|5947207 +kalapuyan|5947272 +kalashnikov|5947321 +kalashnikov culture|5947369 +kale|5947426 +kaleidoscope|5947686 +kaleidoscopic|5947722 +kaleidoscopical|5947782 +kalemia|5947842 +kali|5947865 +kalian|5947976 +kalif|5948103 +kalimantan|5948223 +kalinin|5948319 +kaliph|5948418 +kaliuresis|5948538 +kalka|5948576 +kalki|5948694 +kallman's syndrome|5948722 +kalmia|5948782 +kalmia angustifolia|5948809 +kalmia latifolia|5948898 +kalmia polifolia|5949004 +kalon tripa|5949089 +kalotermes|5949170 +kalotermitidae|5949234 +kalpac|5949312 +kaluga|5949347 +kalumpang|5949399 +kaluresis|5949458 +kam muang|5949631 +kam-sui|5949496 +kam-tai|5949550 +kama|5949673 +kamarupan|5949704 +kamasutra|5949770 +kamba|5949819 +kamchatka peninsula|5949863 +kamchatkan sea eagle|5949922 +kameez|5950024 +kamehameha i|5950046 +kamehameha the great|5950120 +kamet|5950202 +kami|5950237 +kamia|5950271 +kamikaze|5950322 +kammon strait bridge|5950409 +kampala|5950478 +kampong|5950538 +kampuchea|5950586 +kampuchean|5950671 +kan river|5950780 +kanaf|5950825 +kanamycin|5950928 +kananga|5950982 +kanara|5951047 +kanarese|5951149 +kanawha|5951235 +kanawha river|5951280 +kanchanjanga|5951331 +kanchenjunga|5951406 +kanchil|5951481 +kandahar|5951537 +kandinsky|5951602 +kandy|5951657 +kangaroo|5951707 +kangaroo apple|5952000 +kangaroo bear|5952062 +kangaroo court|5952162 +kangaroo hare|5952212 +kangaroo jerboa|5952271 +kangaroo mouse|5952338 +kangaroo paw|5952408 +kangaroo rat|5952533 +kangaroo's-foot|5951750 +kangaroo-foot plant|5951875 +kannada|5952627 +kannada-speaking|5952677 +kansa|5952748 +kansan|5952812 +kansas|5952844 +kansas city|5953056 +kansas river|5953166 +kansu|5953224 +kant|5953281 +kantian|5953326 +kantrex|5953362 +kanzu|5953424 +kaochlor|5953447 +kaoliang|5953533 +kaolin|5953565 +kaoline|5953643 +kaolinite|5953721 +kaon|5953748 +kaopectate|5953808 +kapeika|5953872 +kaph|5953914 +kaplan group|5953979 +kapok|5954150 +kaposi's sarcoma|5954346 +kaposi's varicelliform eruption|5954397 +kappa|5954504 +kappa-meson|5954570 +kapsiki|5954630 +kapuka|5954672 +kaput|5954721 +kara sea|5954760 +karabiner|5954791 +karachi|5954875 +karakalpak|5954929 +karakoram|5955025 +karakoram range|5955188 +karakorum range|5955357 +karakul|5955526 +karaoke|5955587 +karat|5955623 +karate|5955675 +karaya gum|5955703 +karbala|5955741 +karel capek|5955811 +karelia|5955885 +karelian|5955982 +karelian isthmus|5956065 +karen|5956116 +karen blixen|5956182 +karenic|5956281 +karl adolf eichmann|5956428 +karl adolph verner|5956518 +karl alex muller|5956595 +karl augustus menninger|5956663 +karl baedeker|5956779 +karl barth|5956835 +karl czerny|5956918 +karl friedrich gauss|5956988 +karl friedrich hieronymus von munchhausen|5957070 +karl gauss|5957224 +karl gjellerup|5957296 +karl gunnar myrdal|5957359 +karl gustav jacob jacobi|5957453 +karl jaspers|5957533 +karl landsteiner|5957631 +karl linne|5957712 +karl marx|5957821 +karl menninger|5957942 +karl rudolf gerd von rundstedt|5958049 +karl scheele|5958158 +karl theodor jaspers|5958230 +karl von clausewitz|5958336 +karl von frisch|5958417 +karl waldemar ziegler|5958492 +karl wernicke|5958561 +karl wilhelm scheele|5958632 +karl wilhelm siemens|5958712 +karl-marx stadt|5956349 +karlfeldt|5958839 +karloff|5958893 +karma|5958995 +karnataka|5959023 +karok|5959074 +karol wojtyla|5959129 +karpov|5959269 +karsavina|5959347 +kartik|5959420 +kartikeya|5959473 +karttika|5959525 +karttikeya|5959580 +karyokinesis|5959633 +karyokinetic|5959690 +karyolymph|5959746 +karyolysis|5959825 +karyon|5959851 +karyoplasm|5959909 +karyotype|5959969 +kasai|5960020 +kasai river|5960071 +kasbah|5960128 +kasha|5960159 +kashag|5960185 +kashmir|5960238 +kashmir goat|5960362 +kashmiri|5960438 +kaspar friedrich wolff|5960603 +kasparov|5960674 +kassite|5960743 +kastler|5960852 +kat|5960902 +katabatic|5960982 +katabatic wind|5961021 +katabolic|5961092 +katabolism|5961211 +katamorphism|5961314 +katar|5961349 +katar peninsula|5961494 +katari|5961573 +kate chopin|5961663 +kate o'flaherty chopin|5961740 +kate smith|5961828 +katharevusa|5961925 +katharine hepburn|5961971 +katharine houghton hepburn|5962059 +katharobe|5962156 +katharobic|5962190 +katharometer|5962224 +katharsis|5962301 +katherine anne porter|5962396 +katherine cornell|5962470 +katherine mansfield|5962531 +kathleen mansfield beauchamp|5962633 +kathmandu|5962744 +kathryn elizabeth smith|5962816 +katmai national park|5962926 +katmandu|5962991 +katsina|5963062 +katsura tree|5963116 +katsushika hokusai|5963197 +katsuwonidae|5963260 +katsuwonus|5963326 +katsuwonus pelamis|5963385 +kattegatt|5963479 +katydid|5963521 +katzenjammer|5963574 +kauai|5963670 +kauai island|5963711 +kaufman|5963759 +kaunas|5963844 +kaunda|5963908 +kauri|5963999 +kauri copal|5964120 +kauri gum|5964175 +kauri pine|5964230 +kauri resin|5964286 +kaury|5964341 +kava|5964403 +kavakava|5964474 +kavrin|5964545 +kaw river|5964595 +kawaka|5964650 +kawasaki disease|5964702 +kay boyle|5964787 +kayak|5964836 +kayo|5964869 +kayoed|5964927 +kayser-fleischer ring|5964984 +kazak|5965045 +kazakh|5965231 +kazakhstan|5965418 +kazakhstani|5965522 +kazakhstani monetary unit|5965614 +kazakstan|5965689 +kazan|5965792 +kazimir malevich|5965842 +kazimir severinovich malevich|5965932 +kazoo|5966035 +kb|5966071 +kc|5966118 +kea|5966180 +kean|5966217 +keaton|5966291 +keats|5966408 +keb|5966445 +kebab|5966481 +keble|5966519 +kechua|5966587 +kechuan|5966773 +kedgeree|5967037 +keel|5967060 +keel arch|5967136 +keel over|5967178 +keelboat|5967211 +keeled|5967240 +keeled garlic|5967313 +keelson|5967370 +keen|5967392 +keen-sighted|5967843 +keenness|5968005 +keep|5968171 +keep abreast|5969135 +keep an eye on|5969172 +keep apart|5969305 +keep away|5969395 +keep back|5969427 +keep company|5969562 +keep down|5969647 +keep going|5969768 +keep guard|5970005 +keep in|5970070 +keep in line|5970102 +keep mum|5970152 +keep note|5970231 +keep off|5970268 +keep on|5970337 +keep one's distance|5970410 +keep one's eyes off|5970504 +keep one's eyes open|5970598 +keep one's eyes peeled|5970700 +keep one's eyes skinned|5970802 +keep one's hands off|5970904 +keep one's mouth shut|5970998 +keep one's nose to the grindstone|5971057 +keep one's shoulder to the wheel|5971162 +keep open|5971267 +keep out|5971324 +keep pace|5971377 +keep quiet|5971414 +keep step|5971473 +keep tabs on|5971510 +keep to oneself|5971579 +keep up|5971623 +keeper|5971764 +keeping|5971879 +keepsake|5972049 +keeshond|5972111 +keflex|5972135 +keflin|5972205 +keftab|5972275 +keg|5972345 +kegel exercises|5972397 +kegful|5972526 +kei apple|5972559 +kei apple bush|5972620 +keister|5972681 +keith rupert murdoch|5972892 +kekchi|5972976 +kekule|5973050 +kekule formula|5973144 +keller|5973251 +kellogg|5973329 +kelly|5973404 +keloid|5973671 +kelp|5973719 +kelp greenling|5973745 +kelpie|5973803 +kelpwort|5973876 +kelpy|5973963 +kelt|5973997 +kelter|5974030 +kelvin|5974071 +kelvin scale|5974166 +kemadrin|5974234 +kemal ataturk|5974290 +kemal pasha|5974393 +kempt|5974494 +ken|5974527 +ken elton kesey|5974598 +ken kesey|5974669 +ken russell|5974734 +kenaf|5974851 +kenai fjords national park|5974978 +kenalog|5975055 +kendal|5975165 +kendal green|5975214 +kendall|5975269 +kendall partial rank correlation|5975448 +kendall rank correlation|5975536 +kendall test|5975653 +kendall's tau|5975342 +kendrew|5975740 +kennedia|5975815 +kennedia coccinea|5975899 +kennedia prostrata|5975965 +kennedy|5976053 +kennedy international airport|5976339 +kennedy interrnational|5976466 +kennedya|5976586 +kennel|5976670 +kennelly|5976732 +kennelly-heaviside layer|5976816 +kennesaw mountain|5976920 +kenneth bancroft clark|5976980 +kenneth clark|5977068 +kenneth david kaunda|5977147 +kenneth grahame|5977252 +kenneth kaunda|5977315 +kenneth roberts|5977414 +kennewick|5977477 +kenning|5977511 +keno|5977564 +kenogenesis|5977607 +kent|5977738 +kentan|5977798 +kentish|5977860 +kentuckian|5977946 +kentucky|5977986 +kentucky black bass|5978047 +kentucky blue|5978151 +kentucky bluegrass|5978272 +kentucky coffee tree|5978398 +kentucky derby|5978487 +kentucky wonder|5978544 +kentucky wonder bean|5978617 +kentucky yellowwood|5978695 +kentucy blue grass|5978817 +kenya|5978943 +kenya fever|5979013 +kenyan|5979107 +kenyan monetary unit|5979182 +kenyan shilling|5979247 +kenyapithecus|5979318 +kenyata|5979388 +kenzo tange|5979458 +keogh plan|5979516 +keokuk|5979681 +kepi|5979743 +kepler|5979797 +kepler's first law|5979882 +kepler's law|5979975 +kepler's law of planetary motion|5980061 +kepler's second law|5980167 +kepler's third law|5980294 +kept|5980400 +kept up|5980423 +kept woman|5980471 +kera|5980537 +keratalgia|5980568 +keratectasia|5980601 +keratin|5980644 +keratinisation|5980694 +keratinise|5980768 +keratinization|5980832 +keratinize|5980906 +keratitis|5980970 +keratoacanthoma|5981016 +keratocele|5981062 +keratoconjunctivitis|5981100 +keratoconus|5981157 +keratoderma|5981199 +keratoderma blennorrhagica|5981308 +keratodermia|5981379 +keratoiritis|5981488 +keratomalacia|5981537 +keratomycosis|5981568 +keratonosis|5981616 +keratonosus|5981712 +keratoplasty|5981745 +keratoscleritis|5981893 +keratoscope|5981945 +keratoscopy|5981985 +keratosis|5982027 +keratosis blennorrhagica|5982121 +keratosis follicularis|5982192 +keratosis nigricans|5982251 +keratosis pilaris|5982376 +keratotomy|5982413 +kerb|5982468 +kerb crawler|5982500 +kerbala|5982529 +kerbela|5982599 +kerbstone|5982669 +kerchief|5982711 +kerensky|5982735 +kerfuffle|5982825 +kerion|5982932 +kern|5982973 +kernel|5983031 +kernicterus|5983254 +kernig's sign|5983292 +kernite|5983337 +kerosene|5983362 +kerosene heater|5983424 +kerosene lamp|5983499 +kerosine|5983550 +kerosine heater|5983612 +kerosine lamp|5983687 +kerouac|5983738 +kerr cell|5983819 +kerry blue terrier|5983863 +kerugma|5983918 +kerygma|5983970 +kesey|5984022 +kestrel|5984083 +ketalar|5984186 +ketamine|5984292 +ketamine hydrochloride|5984390 +ketch|5984488 +ketchup|5984531 +ketchup bottle|5984588 +keteleeria|5984633 +ketembilla|5984677 +ketembilla tree|5984819 +ketoacidosis|5984919 +ketoacidosis-prone diabetes|5984968 +ketoacidosis-resistant diabetes|5985229 +ketoacidosis-resistant diabetes mellitus|5985619 +ketoaciduria|5986009 +ketohexose|5986060 +ketone|5986094 +ketone body|5986127 +ketone group|5986168 +ketonemia|5986219 +ketonuria|5986265 +ketoprofen|5986316 +ketorolac|5986434 +ketorolac tromethamine|5986534 +ketose|5986654 +ketosis|5986713 +ketosis-prone diabetes|5986759 +ketosis-resistant diabetes|5987020 +ketosis-resistant diabetes mellitus|5987410 +ketosteroid|5987800 +kettering|5987829 +kettle|5987943 +kettle hole|5988118 +kettle of fish|5988158 +kettledrum|5988225 +kettleful|5988321 +ketubim|5988360 +keurboom|5988466 +key|5988558 +key fruit|5989255 +key lime|5989292 +key out|5989315 +key palm|5989380 +key pattern|5989493 +key ring|5989563 +key signature|5989591 +key west|5989641 +key word|5989673 +keyboard|5989707 +keyboard buffer|5989746 +keyboardist|5989806 +keycard|5989859 +keyed|5989895 +keyhole|5989959 +keyhole limpet|5989981 +keyhole saw|5990049 +keyless|5990094 +keynes|5990119 +keynesian|5990188 +keynesianism|5990258 +keynote|5990309 +keynote address|5990434 +keynote speech|5990482 +keypad|5990530 +keystone|5990604 +keystone state|5990709 +kg|5990779 +kgb|5990836 +khabarovsk|5990908 +khachaturian|5991055 +khadafy|5991141 +khaddar|5991235 +khadi|5991288 +khaki|5991341 +khalif|5991403 +khalifah|5991523 +khalka|5991643 +khalkha|5991762 +khalsa|5991882 +khama|5991920 +khamsin|5991991 +khamti|5992040 +khan|5992067 +khanate|5992164 +khanty|5992236 +kharkiv|5992308 +kharkov|5992370 +khartoum|5992432 +khat|5992493 +khaya|5992573 +khayr ad-din|5992624 +khedive|5992693 +khepera|5992736 +khesari|5992776 +khi|5992841 +khimar|5992909 +khios|5992935 +khirghiz|5992976 +khmer|5993096 +khmer rouge|5993161 +khnate|5993330 +khoikhoi|5993366 +khoikhoin|5993438 +khoisan|5993511 +khoisan language|5993577 +khomeini|5993652 +khoum|5993759 +khowar|5993800 +khrushchev|5993851 +khuen|5993962 +khukuri|5993987 +khyber pass|5994010 +khz|5994068 +ki|5994134 +kiaat|5994202 +kiang|5994260 +kibbitz|5994296 +kibble|5994352 +kibbutz|5994392 +kibbutznik|5994425 +kibe|5994452 +kibitz|5994494 +kibitzer|5994550 +kibosh|5994576 +kichaga|5994652 +kichai|5994713 +kick|5994742 +kick about|5995342 +kick around|5995395 +kick back|5995542 +kick down|5995658 +kick downstairs|5995698 +kick in|5995783 +kick in the butt|5995885 +kick off|5995931 +kick one's heels|5995994 +kick out|5996042 +kick pleat|5996231 +kick start|5996263 +kick starter|5996333 +kick the bucket|5996403 +kick turn|5996572 +kick up|5996604 +kick upstairs|5996773 +kickapoo|5996867 +kickback|5996972 +kicker|5997003 +kicking|5997046 +kickoff|5997120 +kickshaw|5997329 +kicksorter|5997448 +kid|5997512 +kid glove|5998018 +kid-glove|5997967 +kidd|5998062 +kiddie porn|5998142 +kiddy|5998228 +kiddy porn|5998324 +kidnap|5998410 +kidnaped|5998453 +kidnapped|5998489 +kidnapper|5998531 +kidnapping|5998623 +kidney|5998666 +kidney bean|5998764 +kidney begonia|5998868 +kidney disease|5998956 +kidney failure|5999026 +kidney fern|5999124 +kidney pie|5999191 +kidney stone|5999220 +kidney vetch|5999305 +kidney wort|5999370 +kidney-shaped|5998712 +kidskin|5999463 +kierkegaard|5999492 +kieselguhr|5999579 +kieserite|5999648 +kieslowski|5999675 +kiev|5999774 +kigali|5999830 +kiggelaria|5999888 +kiggelaria africana|5999958 +kike|6000029 +kikladhes|6000077 +kildeer|6000129 +kilderkin|6000199 +kiley|6000263 +kilimanjaro|6000321 +kiliwa|6000386 +kiliwi|6000454 +kill|6000522 +kill off|6001091 +kill oneself|6001126 +kill zone|6001186 +killable|6001223 +killarney fern|6001267 +killdeer|6001352 +killdeer plover|6001422 +killer|6001492 +killer bee|6001704 +killer cell|6001874 +killer t cell|6001966 +killer whale|6002072 +killifish|6002144 +killing|6002175 +killing field|6002397 +killing zone|6002492 +killingly|6002529 +killjoy|6002563 +kiln|6002651 +kilo|6002670 +kilobyte|6002727 +kilocalorie|6002771 +kilocycle|6002886 +kilocycle per second|6002948 +kilogram|6003010 +kilogram calorie|6003123 +kilogram-meter|6003067 +kilohertz|6003238 +kiloliter|6003300 +kilolitre|6003374 +kilometer|6003448 +kilometers per hour|6003505 +kilometre|6003568 +kilometres per hour|6003625 +kiloton|6003688 +kilovolt|6003744 +kilovolt-ampere|6003780 +kilowatt|6003816 +kilowatt hour|6003848 +kilroy|6003936 +kilt|6004010 +kilter|6004030 +kimberley|6004071 +kimberlite|6004129 +kimono|6004160 +kin|6004181 +kin group|6004362 +kina|6004431 +kinaesthesia|6004466 +kinaesthetic|6004670 +kinaesthetically|6004718 +kinanesthesia|6004759 +kinase|6004797 +kinchinjunga|6004820 +kind|6004895 +kind of|6005331 +kinda|6005368 +kindergarten|6005405 +kindhearted|6005437 +kindheartedness|6005463 +kindle|6005512 +kindled|6005661 +kindliness|6005708 +kindling|6005753 +kindly|6005887 +kindness|6006022 +kindred|6006118 +kine|6006230 +kinematics|6006279 +kinescope|6006309 +kinesiology|6006378 +kinesis|6006410 +kinesthesia|6006445 +kinesthetic|6006649 +kinesthetically|6006697 +kinetic|6006738 +kinetic energy|6006825 +kinetic theory|6006872 +kinetic theory of gases|6006938 +kinetic theory of heat|6007004 +kinetics|6007075 +kinetochore|6007112 +kinetoscope|6007225 +kinetosis|6007265 +kinfolk|6007338 +king|6007513 +king arthur|6008572 +king arthur's round table|6008663 +king begonia|6008742 +king camp gilette|6008836 +king charles spaniel|6008934 +king cobra|6008997 +king crab|6009064 +king devil|6009356 +king fern|6009417 +king harold i|6009561 +king harold ii|6009670 +king hussein|6009757 +king james bible|6009850 +king james version|6010020 +king john|6010192 +king lear|6010278 +king mackerel|6010363 +king nut|6010438 +king nut hickory|6010559 +king oedipus|6010680 +king of beasts|6010750 +king of england|6010804 +king of france|6010885 +king of great britain|6010942 +king of the herring|6011029 +king oliver|6011127 +king orange|6011203 +king penguin|6011298 +king post|6011351 +king protea|6011375 +king salmon|6011430 +king snake|6011557 +king vulture|6011692 +king whiting|6011761 +king william pine|6011815 +king's counsel|6008206 +king's english|6008266 +king's evil|6008330 +king's ransom|6008388 +king's spear|6008435 +king-size|6008500 +king-sized|6008536 +kingbird|6011908 +kingbolt|6012006 +kingcup|6012048 +kingdom|6012258 +kingdom animalia|6012468 +kingdom come|6012543 +kingdom fungi|6012631 +kingdom monera|6012697 +kingdom of belgium|6012751 +kingdom of bhutan|6012848 +kingdom of cambodia|6012927 +kingdom of denmark|6013022 +kingdom of god|6013126 +kingdom of lesotho|6013185 +kingdom of morocco|6013282 +kingdom of nepal|6013394 +kingdom of norway|6013470 +kingdom of saudi arabia|6013575 +kingdom of spain|6013672 +kingdom of swaziland|6013761 +kingdom of sweden|6013853 +kingdom of thailand|6013954 +kingdom of the netherlands|6014044 +kingdom of tonga|6014176 +kingdom plantae|6014261 +kingdom protoctista|6014332 +kingfish|6014401 +kingfisher|6014594 +kingfisher daisy|6014631 +kinglet|6014683 +kinglike|6014708 +kingly|6014739 +kingmaker|6014770 +kingpin|6014835 +kings canyon national park|6014979 +kingship|6015056 +kingsnake|6015079 +kingston|6015133 +kingston-upon hull|6015255 +kingstown|6015341 +kingwood|6015387 +kingwood tree|6015456 +kinin|6015513 +kink|6015582 +kink up|6015733 +kinkajou|6015791 +kinky|6015907 +kino|6016034 +kino gum|6016104 +kinosternidae|6016188 +kinosternon|6016261 +kinsey|6016326 +kinsfolk|6016398 +kinshasa|6016573 +kinship|6016630 +kinship by marriage|6016714 +kinship group|6016793 +kinsman|6016862 +kinsperson|6016897 +kinswoman|6016946 +kinyarwanda|6016983 +kiosk|6017039 +kiowa|6017081 +kip|6017167 +kip down|6017302 +kipling|6017404 +kiplingesque|6017482 +kipp's apparatus|6017530 +kipper|6017589 +kippered herring|6017630 +kippered salmon|6017671 +kirchhoff|6017703 +kirchhoff's laws|6017782 +kirchner|6017843 +kirghiz|6017900 +kirghizia|6018137 +kirghizstan|6018267 +kirgiz|6018399 +kirgizia|6018635 +kirgizstan|6018764 +kiribati|6018895 +kiribati dollar|6018962 +kirk|6019010 +kirkia|6019047 +kirkia wilmsii|6019101 +kirkuk|6019157 +kirpan|6019209 +kirsch|6019240 +kirtle|6019263 +kishar|6019304 +kishinev|6019341 +kishke|6019404 +kislev|6019439 +kismat|6019492 +kismet|6019528 +kiss|6019564 +kiss curl|6019838 +kiss of death|6019873 +kiss of life|6019944 +kiss of peace|6020085 +kiss-me-over-the-garden-gate|6019712 +kisser|6020132 +kissing|6020234 +kissing bug|6020352 +kissing cousin|6020443 +kissing disease|6020497 +kissing kin|6020601 +kissinger|6020655 +kisumu|6020744 +kiswahili|6020801 +kit|6020853 +kit and boodle|6020985 +kit and caboodle|6021171 +kit bag|6021357 +kit carson|6021518 +kit fox|6021614 +kit out|6021687 +kit up|6021740 +kitakyushu|6021793 +kitambilla|6021853 +kitbag|6021995 +kitchen|6022075 +kitchen appliance|6022097 +kitchen cabinet|6022159 +kitchen garden|6022230 +kitchen help|6022294 +kitchen match|6022327 +kitchen midden|6022379 +kitchen range|6022497 +kitchen sink|6022578 +kitchen stove|6022605 +kitchen table|6022686 +kitchen utensil|6022715 +kitchener|6022748 +kitchenette|6022868 +kitchenware|6022897 +kite|6022934 +kite balloon|6023090 +kite tail|6023128 +kitembilla|6023151 +kith|6023293 +kitsch|6023320 +kitten|6023391 +kitten-tails|6023468 +kittenish|6023513 +kittiwake|6023547 +kittul|6023588 +kitty|6023678 +kitty litter|6024226 +kitty-cat|6023879 +kitty-corner|6023976 +kitty-cornered|6024101 +kitul|6024266 +kitul tree|6024356 +kivu|6024446 +kiwi|6024480 +kiwi fruit|6024731 +kiwi vine|6024788 +kkk|6024876 +klaipeda|6025000 +klamath|6025062 +klamath falls|6025107 +klamath river|6025149 +klammath weed|6025200 +klan|6025259 +klansman|6025384 +klaproth|6025446 +klaus fuchs|6025506 +klavern|6025579 +klavier|6025613 +klaxon|6025666 +klebs-loeffler bacillus|6025694 +klebsiella|6025810 +klee|6025871 +kleenex|6025908 +klein|6025953 +klein bottle|6026149 +kleist|6026192 +klemens metternich|6026290 +kleptomania|6026432 +kleptomaniac|6026477 +klick|6026512 +klieg light|6026569 +klimt|6026617 +kline|6026659 +klinefelter|6026719 +klinefelter syndrome|6026930 +klinefelter's syndrome|6026832 +klondike|6027026 +klopstock|6027151 +klorvess|6027214 +kludge|6027300 +klutz|6027363 +kluxer|6027455 +klystron|6027515 +klyuchevskaya|6027620 +km|6027665 +km/h|6027722 +knack|6027785 +knacker|6027850 +knackered|6027902 +knackwurst|6027935 +knap|6027974 +knapsack|6028033 +knapweed|6028102 +knave|6028129 +knavery|6028259 +knavish|6028337 +knavishly|6028426 +knawe|6028494 +knawel|6028540 +knead|6028586 +knee|6028652 +knee bend|6029097 +knee brace|6029145 +knee breeches|6029171 +knee jerk|6029253 +knee joint|6029403 +knee pad|6029490 +knee pants|6029527 +knee piece|6029609 +knee-deep|6028806 +knee-high|6028860 +knee-jerk reflex|6028888 +knee-length|6029038 +kneecap|6029693 +kneel|6029776 +kneeler|6029842 +kneeling|6029925 +kneepan|6029979 +knell|6030041 +knesset|6030101 +knesseth|6030146 +knickerbockers|6030192 +knickers|6030274 +knickknack|6030397 +knickknackery|6030533 +knife|6030646 +knife blade|6030884 +knife edge|6030911 +knife fight|6030989 +knife pleat|6031065 +knife thrust|6031098 +knife-edge|6030753 +knife-handle|6030831 +knifelike|6031137 +knight|6031336 +knight bachelor|6031500 +knight banneret|6031558 +knight errantry|6031625 +knight of the round table|6031709 +knight of the square flag|6031777 +knight templar|6031844 +knight's service|6031436 +knight-errant|6031470 +knighthood|6031936 +knightia|6031977 +knightly|6032050 +kniphofia|6032128 +kniphofia praecox|6032215 +kniphofia uvaria|6032303 +knish|6032414 +knit|6032434 +knit stitch|6032768 +knitted|6032829 +knitted fabric|6032854 +knitter|6032913 +knitting|6032943 +knitting machine|6033016 +knitting needle|6033058 +knitting stitch|6033090 +knitwear|6033122 +knitwork|6033182 +knob|6033237 +knob celery|6033394 +knobbed|6033517 +knobble|6033572 +knobbly|6033599 +knobby|6033633 +knobcone pine|6033667 +knobkerrie|6033731 +knobkerry|6033766 +knock|6033801 +knock about|6034573 +knock against|6034654 +knock back|6034765 +knock cold|6034811 +knock down|6034869 +knock off|6034967 +knock on|6035270 +knock out|6035293 +knock over|6035505 +knock rummy|6035593 +knock up|6035638 +knock-down|6034254 +knock-down-and-drag-out|6034318 +knock-knee|6034377 +knock-kneed|6034468 +knock-on effect|6034495 +knockabout|6035725 +knockdown|6035792 +knockdown-dragout|6035834 +knocked out|6035977 +knocked-out|6035893 +knocker|6036061 +knocking|6036366 +knockoff|6036396 +knockout|6036425 +knockout drops|6036577 +knockout punch|6036629 +knockwurst|6036711 +knoll|6036750 +knossos|6036800 +knot|6036846 +knotgrass|6037288 +knothole|6037332 +knotted|6037355 +knotted marjoram|6037461 +knottiness|6037548 +knotty|6037620 +knotty pine|6037817 +knout|6037843 +know|6037863 +know apart|6038678 +know nothing|6038801 +know the score|6038868 +know what's going on|6038961 +know what's what|6039054 +know-all|6038452 +know-how|6038507 +know-it-all|6038539 +know-nothing party|6038594 +knowable|6039147 +knower|6039208 +knowing|6039289 +knowingly|6039533 +knowingness|6039561 +knowledge|6039696 +knowledge base|6039754 +knowledge domain|6039835 +knowledgeability|6039916 +knowledgeable|6039987 +knowledgeable about|6040186 +knowledgeableness|6040264 +knowlton's cactus|6040335 +known|6040410 +known as|6040598 +knox|6040630 +knoxville|6040731 +knuckle|6040789 +knuckle down|6040922 +knuckle duster|6040992 +knuckle joint|6041085 +knuckle under|6041217 +knuckleball|6041297 +knucklebones|6041342 +knucklehead|6041394 +knuckler|6041537 +knuckles|6041582 +knucks|6041780 +knut|6041873 +knut hamsun|6041959 +knut pedersen|6042027 +ko|6042097 +ko punch|6042188 +ko'd|6042126 +koala|6042279 +koala bear|6042379 +koan|6042479 +koasati|6042501 +kob|6042622 +kobenhavn|6042655 +kobo|6042727 +kobuk valley national park|6042764 +kobus|6042841 +kobus kob|6042887 +kobus leche|6042930 +koch|6042980 +kochia|6043026 +kochia scoparia|6043108 +kodagu|6043234 +kodiak|6043297 +kodiak bear|6043461 +kodiak island|6043595 +koellia|6043646 +koestler|6043737 +kogia|6043794 +kogia breviceps|6043840 +kogia simus|6043913 +kohl|6043978 +kohleria|6044017 +kohlrabi|6044046 +koine|6044164 +koinonia|6044287 +kok-saghyz|6044323 +kok-sagyz|6044411 +kokka|6044499 +kokka shinto|6044617 +kokoi venom|6044694 +kol nidre|6044743 +kola|6044779 +kola nut|6044886 +kola nut tree|6044977 +kola peninsula|6045048 +kolam|6045097 +kolami|6045128 +kolkata|6045169 +kolkhoz|6045232 +kolkhoznik|6045265 +kolkwitzia|6045292 +kolkwitzia amabilis|6045360 +koln|6045432 +kolonia|6045488 +komi|6045530 +komodo dragon|6045583 +komodo lizard|6045710 +komondor|6045837 +kon tiki|6045887 +konakri|6045930 +kongo|6046003 +konini|6046047 +konoe|6046119 +konoye|6046255 +konrad adenauer|6046392 +konrad lorenz|6046474 +konrad von gesner|6046569 +konrad zacharias lorenz|6046650 +konstantin sergeevich alekseev|6046755 +konstantin sergeyevich stanislavsky|6046985 +konstantin stanislavsky|6047220 +koodoo|6047443 +kook|6047480 +kookaburra|6047571 +kookie|6047632 +kooky|6047813 +koopmans|6047994 +kopeck|6048091 +kopek|6048142 +kopiyka|6048193 +kopje|6048233 +koplik's spots|6048291 +koppie|6048338 +kor|6048396 +koran|6048535 +koranic|6048637 +korbut|6048721 +korchnoi|6048764 +korda|6048844 +kordofan|6048947 +kordofanian|6049023 +kore|6049101 +korea|6049157 +korea bay|6049212 +korea strait|6049245 +korean|6049307 +korean lawn grass|6049404 +korean lespedeza|6049492 +korean peninsula|6049578 +korean strait|6049644 +korean velvet grass|6049707 +korean war|6049797 +korinthos|6049840 +korsakoff's psychosis|6049911 +korsakoff's syndrome|6050116 +korsakov's psychosis|6050320 +korsakov's syndrome|6050524 +koruna|6050727 +korzybski|6050794 +kos|6050897 +kosciusko|6050951 +kosciuszko|6051077 +kosher|6051204 +kosovo|6051327 +kosteletzya|6051365 +kosteletzya virginica|6051438 +kota|6051525 +kotar|6051594 +kotex|6051664 +koto|6051705 +koto player|6051739 +kotoko|6051792 +kotow|6051827 +koudou|6051937 +koumiss|6051974 +koussevitzky|6052045 +kovna|6052168 +kovno|6052231 +koweit|6052294 +kowhai|6052435 +kowtow|6052475 +kph|6052612 +kr|6052675 +kraal|6052923 +krafft-ebing|6052964 +kraft|6053080 +kraft paper|6053122 +krait|6053164 +krakatao|6053199 +krakatau|6053259 +krakatoa|6053319 +krakau|6053379 +krakow|6053445 +krasner|6053511 +kraurosis|6053556 +kraurosis vulvae|6053604 +kraut|6053640 +krauthead|6053694 +krebs|6053752 +krebs citric acid cycle|6053822 +krebs cycle|6053969 +kreisler|6054104 +kremlin|6054164 +krigia|6054228 +krigia bulbosa|6054266 +krigia dandelion|6054345 +krill|6054426 +kris|6054466 +krishna|6054509 +krishnaism|6054541 +kriss kringle|6054591 +kriti|6054690 +kroeber|6054724 +krona|6054800 +krone|6054898 +kronecker|6054994 +kronecker delta|6055055 +kroon|6055127 +kropotkin|6055165 +kroto|6055276 +krubi|6055358 +kruger|6055418 +krummhorn|6055522 +krung thep|6055594 +krupp|6055675 +krypterophaneron|6055770 +krypton|6055847 +krzysztof kieslowski|6055937 +ks|6056046 +kshatriya|6056099 +ku|6056152 +ku klux klan|6056347 +ku kluxer|6056480 +ku-chiku|6056269 +kuala lumpur|6056543 +kuan yin|6056633 +kuangchou|6056683 +kubla khan|6056773 +kublai kaan|6056836 +kublai khan|6056900 +kubrick|6056964 +kuchean|6057052 +kuchean dialect|6057118 +kudos|6057192 +kudu|6057252 +kudu lily|6057289 +kudzu|6057390 +kudzu vine|6057437 +kuenlun|6057484 +kuenlun mountains|6057631 +kuhn|6057788 +kui|6057828 +kukenaam|6057890 +kukenaam falls|6057972 +kuki|6058060 +kuki-chin|6058104 +kulanapan|6058153 +kulun|6058193 +kumis|6058279 +kummel|6058350 +kumquat|6058382 +kumquat tree|6058480 +kund johan victor rasmussen|6058537 +kundt's tube|6058644 +kung fu|6058734 +kung futzu|6058771 +kunlun|6058824 +kunlun mountains|6058970 +kunzite|6059126 +kuomintang|6059169 +kupffer's cell|6059233 +kura|6059277 +kura river|6059313 +kurakkan|6059355 +kurchatovium|6059454 +kurchee|6059568 +kurchi|6059664 +kurd|6059760 +kurdish|6059813 +kurdistan|6059949 +kurdistan labor pary|6060088 +kurdistan workers party|6060268 +kuri-chiku|6060451 +kurosawa|6060511 +kuroshio|6060600 +kuroshio current|6060672 +kurrajong|6060752 +kurrat|6060828 +kursk|6060905 +kurt godel|6060955 +kurt vonnegut|6061006 +kurt waldheim|6061066 +kurt weill|6061165 +kurta|6061211 +kuru|6061232 +kurux|6061351 +kusan|6061388 +kussmaul's coma|6061440 +kutch|6061513 +kutuzov|6061553 +kuvasz|6061640 +kuvi|6061675 +kuwait|6061718 +kuwait city|6061859 +kuwaiti|6061941 +kuwaiti dinar|6062052 +kuwaiti dirham|6062117 +kuwaiti monetary unit|6062185 +kuznets|6062252 +kv|6062317 +kvass|6062356 +kvetch|6062384 +kw|6062533 +kw-hr|6062568 +kwa|6062662 +kwacha|6062691 +kwai|6062788 +kwajalein|6062829 +kwakiutl|6062906 +kwan-yin|6062985 +kwangchow|6063035 +kwangju|6063125 +kwangtung|6063179 +kwannon|6063252 +kwanza|6063292 +kwanzaa|6063366 +kwashiorkor|6063412 +kweek|6063446 +kwela|6063552 +kwell|6063610 +ky|6063639 +kyanite|6063694 +kyat|6063727 +kyd|6063763 +kylie|6063827 +kylix|6063885 +kymograph|6063910 +kyo-chiku|6063961 +kyoto|6064024 +kyphosidae|6064074 +kyphosis|6064135 +kyphosus|6064189 +kyphosus sectatrix|6064242 +kyphotic|6064322 +kyrgyz republic|6064416 +kyrgyzstan|6064552 +kyrgyzstani|6064683 +kyrgyzstani monetary unit|6064742 +kyushu|6064817 +kyyiv|6064847 +l|6064904 +l'aquila|6065132 +l'enfant|6065216 +l-dopa|6065303 +l-p|6065390 +l-plate|6065555 +l-shaped|6065586 +l. m. montgomery|6065620 +l. monocytogenes|6065709 +l. ron hubbard|6065784 +l. s. lowry|6065845 +la|6065915 +la crosse|6066142 +la fayette|6066203 +la fontaine|6066363 +la paz|6066430 +la plata|6066458 +la rochefoucauld|6066521 +la spezia|6066607 +la tour|6066670 +la-di-da|6066055 +laager|6066725 +lab|6066782 +lab bench|6066885 +lab coat|6066948 +laban|6066987 +labanotation|6067036 +labdanum|6067084 +label|6067150 +labeled|6067571 +labelled|6067612 +labetalol|6067645 +labetalol hydrochloride|6067769 +labia majora|6067893 +labia minora|6067922 +labial|6067951 +labial artery|6068041 +labial consonant|6068118 +labial pipe|6068161 +labial stop|6068222 +labial vein|6068344 +labialise|6068460 +labialize|6068548 +labiatae|6068636 +labiate|6068739 +labile|6068771 +labium|6068813 +lablab|6068833 +lablab purpureus|6068887 +lablink|6069000 +labor|6069129 +labor agreement|6069796 +labor coach|6069866 +labor contract|6069929 +labor day|6069999 +labor department|6070059 +labor force|6070153 +labor leader|6070224 +labor market|6070253 +labor movement|6070294 +labor of love|6070361 +labor organizer|6070430 +labor pain|6070496 +labor pains|6070529 +labor party|6070611 +labor pool|6070692 +labor resources|6070763 +labor secretary|6070797 +labor union|6070923 +labor-intensive|6069744 +laboratory|6071013 +laboratory bench|6071145 +laboratory coat|6071208 +labored|6071247 +laborer|6071322 +laboring|6071403 +laborious|6071453 +laboriousness|6071552 +laborsaving|6071614 +labour|6071656 +labour of love|6072146 +labour pains|6072215 +labour party|6072266 +labour-intensive|6072094 +laboured|6072348 +labourer|6072422 +labouring|6072503 +labourite|6072553 +laboursaving|6072623 +labrador|6072665 +labrador peninsula|6072854 +labrador retriever|6072937 +labrador sea|6072994 +labrador tea|6073033 +labrador-ungava peninsula|6072764 +labridae|6073111 +labrocyte|6073166 +labrouste|6073234 +laburnum|6073298 +laburnum alpinum|6073358 +laburnum anagyroides|6073453 +labyrinth|6073561 +labyrinth of minos|6073660 +labyrinthian|6073722 +labyrinthine|6073770 +labyrinthine artery|6073941 +labyrinthine vein|6074056 +labyrinthitis|6074136 +labyrinthodont|6074181 +labyrinthodonta|6074215 +labyrinthodontia|6074341 +lac|6074468 +lac dye|6074496 +lac wax|6074526 +laccopetalum|6074559 +laccopetalum giganteum|6074635 +lace|6074728 +lace bug|6075052 +lace fern|6075089 +lace into|6075136 +lace making|6075198 +lace up|6075238 +lace-flower vine|6074977 +lacebark|6075269 +laced|6075328 +lacelike|6075420 +lacepod|6075449 +lacer|6075498 +lacerate|6075548 +lacerated|6075685 +laceration|6075734 +lacerta|6075779 +lacerta agilis|6075832 +lacerta viridis|6075908 +lacertid|6075987 +lacertid lizard|6076028 +lacertidae|6076069 +lacertilia|6076133 +lacertilian|6076220 +lacewing|6076256 +lacewing fly|6076331 +lacewood|6076406 +lacework|6076438 +lachaise|6076475 +lachesis|6076558 +lachnolaimus|6076597 +lachnolaimus maximus|6076662 +lachrymal|6076740 +lachrymal duct|6076821 +lachrymal gland|6076904 +lachrymal secretion|6076981 +lachrymation|6077039 +lachrymator|6077143 +lachrymatory|6077212 +lachrymose|6077258 +lacing|6077323 +laciniate|6077510 +lack|6077543 +lackadaisical|6077597 +lackey|6077678 +lacking|6077776 +lackluster|6077864 +lacklustre|6077967 +laconia|6078070 +laconian|6078167 +laconic|6078208 +laconically|6078250 +laconicism|6078276 +laconism|6078315 +lacquer|6078354 +lacquer tree|6078451 +lacquerware|6078626 +lacrimal|6078666 +lacrimal apparatus|6078748 +lacrimal artery|6078857 +lacrimal bone|6078938 +lacrimal duct|6078969 +lacrimal gland|6079052 +lacrimal sac|6079129 +lacrimal secretion|6079184 +lacrimal vein|6079242 +lacrimation|6079311 +lacrimator|6079415 +lacrimatory|6079484 +lacrosse|6079530 +lacrosse ball|6079559 +lacrosse player|6079587 +lactaid|6079644 +lactalbumin|6079692 +lactarius|6079729 +lactarius delicioso|6079787 +lactase|6079851 +lactase deficiency|6079891 +lactate|6080120 +lactating|6080208 +lactation|6080237 +lacteal|6080387 +lactic|6080572 +lactic acid|6080634 +lactiferous duct|6080671 +lactifuge|6080732 +lactobacillaceae|6080757 +lactobacillus|6080883 +lactobacteriaceae|6080943 +lactoflavin|6081070 +lactogen|6081214 +lactogenic|6081238 +lactogenic hormone|6081263 +lactophrys|6081392 +lactophrys quadricornis|6081451 +lactose|6081534 +lactose intolerance|6081575 +lactosuria|6081804 +lactuca|6081841 +lactuca sativa|6081900 +lactuca sativa asparagina|6081977 +lactuca sativa capitata|6082067 +lactuca sativa crispa|6082145 +lactuca sativa longifolia|6082219 +lactuca scariola|6082316 +lactuca serriola|6082435 +lacuna|6082554 +lacustrine|6082614 +lacy|6082653 +lad|6082758 +lad's love|6082881 +ladanum|6082964 +ladder|6083000 +ladder truck|6083356 +ladder-back|6083177 +ladder-back chair|6083243 +ladder-proof|6083288 +laddie|6083421 +lade|6083476 +laden|6083582 +ladened|6083837 +ladies' man|6084147 +ladies' room|6084216 +ladies' slipper|6084362 +ladies' tobacco|6084456 +ladies' tresses|6084545 +ladies'-eardrop|6083872 +ladies'-eardrops|6083970 +ladin|6084611 +lading|6084662 +ladino|6084760 +ladle|6084873 +ladoga|6084983 +ladrone islands|6085023 +lady|6085101 +lady beetle|6086672 +lady chapel|6086825 +lady crab|6086853 +lady day|6086936 +lady diana frances spencer|6087014 +lady emma hamilton|6087134 +lady fern|6087223 +lady friend|6087269 +lady godiva|6087331 +lady jane grey|6087395 +lady killer|6087456 +lady of pleasure|6087525 +lady of the house|6087679 +lady palm|6087764 +lady peel|6087798 +lady tulip|6087858 +lady's earrings|6085624 +lady's laces|6085737 +lady's leek|6085836 +lady's maid|6085916 +lady's slipper|6085969 +lady's smock|6086063 +lady's thistle|6086170 +lady's tobacco|6086299 +lady's tresses|6086388 +lady's-eardrop|6085238 +lady's-eardrops|6085336 +lady's-finger|6085514 +lady-in-waiting|6086454 +lady-of-the-night|6086519 +lady-slipper|6086578 +ladybeetle|6087918 +ladybird|6087990 +ladybird beetle|6088062 +ladybug|6088134 +ladyfinger|6088206 +ladyfish|6088247 +ladylike|6088314 +ladylikeness|6088340 +ladylove|6088384 +ladyship|6088437 +laelia|6088470 +laertes|6088512 +laetrile|6088552 +laevulose|6088580 +lafayette|6088640 +laffer|6088799 +laffer curve|6088862 +laffite|6088920 +lafitte|6089017 +lafora's disease|6089114 +lag|6089185 +lag b'omer|6089474 +lag bolt|6089521 +lag screw|6089559 +lagan|6089597 +lagarostrobus|6089634 +lagarostrobus colensoi|6089708 +lagarostrobus franklinii|6089813 +lagenaria|6089927 +lagenaria siceraria|6090003 +lagend|6090091 +lagenophera|6090128 +lager|6090199 +lager beer|6090279 +lagerstroemia|6090310 +lagerstroemia indica|6090379 +lagerstroemia speciosa|6090480 +laggard|6090605 +lagger|6090747 +lagging|6090830 +lagidium|6090887 +lagniappe|6090942 +lagodon|6090966 +lagodon rhomboides|6091016 +lagomorph|6091119 +lagomorpha|6091207 +lagoon|6091268 +lagophthalmos|6091303 +lagopus|6091368 +lagopus scoticus|6091418 +lagorchestes|6091519 +lagos|6091586 +lagostomus|6091641 +lagostomus maximus|6091702 +lagothrix|6091799 +laguna|6091857 +laguncularia|6091892 +laguncularia racemosa|6091958 +lagune|6092031 +lah|6092066 +lahar|6092097 +lahore|6092122 +lahu|6092174 +laic|6092201 +laicise|6092235 +laicize|6092280 +laid|6092325 +laid low|6092481 +laid paper|6092517 +laid up|6092551 +laid-back|6092360 +laid-off|6092412 +lair|6092577 +laird|6092606 +laissez faire|6092806 +laissez passer|6092906 +laissez-faire|6092657 +laissez-faire economy|6092720 +laity|6092946 +laius|6093012 +lake|6093048 +lake aral|6093112 +lake balaton|6093155 +lake bed|6093214 +lake bottom|6093255 +lake cayuga|6093296 +lake chad|6093346 +lake champlain|6093385 +lake chelan|6093439 +lake clark national park|6093477 +lake district|6093550 +lake duck|6093645 +lake dwelling|6093746 +lake erie|6093838 +lake eyre|6093877 +lake geneva|6093916 +lake herring|6093965 +lake huron|6094043 +lake ilmen|6094085 +lake kivu|6094127 +lake ladoga|6094166 +lake leman|6094211 +lake mead|6094259 +lake michigan|6094314 +lake nasser|6094365 +lake okeechobee|6094410 +lake onega|6094467 +lake ontario|6094509 +lake poets|6094557 +lake saint clair|6094615 +lake salmon|6094678 +lake st. clair|6094745 +lake superior|6094806 +lake tahoe|6094857 +lake tana|6094893 +lake tanganyika|6094938 +lake trasimenus|6094995 +lake trout|6095077 +lake tsana|6095160 +lake vanern|6095206 +lake victoria|6095251 +lake whitefish|6095309 +lake winnipeg|6095366 +lakefront|6095417 +lakeland|6095467 +lakeland terrier|6095557 +lakeshore|6095648 +lakeside|6095682 +lakh|6095716 +lakshmi|6095768 +lallans|6095805 +lallation|6095876 +lally|6095982 +lally column|6096025 +lallygag|6096068 +lalthyrus tingitanus|6096188 +lam|6096276 +lam into|6096507 +lama|6096569 +lama guanicoe|6096647 +lama pacos|6096698 +lama peruana|6096742 +lamaism|6096798 +lamaist|6096849 +lamarck|6096892 +lamarckian|6096992 +lamarckism|6097070 +lamasery|6097149 +lamaze|6097177 +lamaze method|6097218 +lamaze method of childbirth|6097302 +lamb|6097400 +lamb chop|6098114 +lamb curry|6098319 +lamb roast|6098345 +lamb succory|6098388 +lamb's lettuce|6097813 +lamb's-quarter|6097593 +lamb's-quarters|6097667 +lamb-chop|6097909 +lambast|6098466 +lambaste|6098735 +lambchop|6099003 +lambda|6099046 +lambda hyperon|6099139 +lambda particle|6099187 +lambdacism|6099235 +lambency|6099302 +lambent|6099397 +lambert|6099451 +lambert-eaton syndrome|6099588 +lambertia|6099747 +lambertia formosa|6099823 +lambis|6099919 +lambkill|6099969 +lambkin|6100038 +lamblike|6100060 +lamboid suture|6100088 +lambrequin|6100157 +lambskin|6100211 +lame|6100277 +lame duck|6100453 +lamedh|6100489 +lamella|6100556 +lamellar mixture|6100632 +lamellate placentation|6100666 +lamellibranch|6100711 +lamellibranchia|6100825 +lamellicorn beetle|6100935 +lamellicornia|6100970 +lameness|6101050 +lament|6101135 +lamentable|6101376 +lamentably|6101458 +lamentation|6101503 +lamentations|6101624 +lamented|6101816 +lamenter|6101843 +lamenting|6101917 +lamia|6101962 +lamiaceae|6101997 +lamina|6102101 +lamina arcus vertebrae|6102123 +laminal|6102162 +laminar|6102205 +laminar flow|6102248 +laminar flow clean room|6102286 +laminaria|6102341 +laminariaceae|6102403 +laminariales|6102479 +laminate|6102550 +laminated glass|6102676 +lamination|6102739 +laminator|6102817 +laminectomy|6102866 +laminitis|6102929 +lamisil|6102983 +lamium|6103088 +lamium album|6103144 +lamium amplexicaule|6103209 +lamivudine|6103277 +lammas|6103349 +lammas day|6103404 +lammastide|6103463 +lammergeier|6103501 +lammergeyer|6103586 +lamna|6103671 +lamna nasus|6103715 +lamnidae|6103773 +lamp|6103828 +lamp chimney|6103922 +lamp house|6103957 +lamp housing|6104089 +lamp oil|6104140 +lamp shade|6104202 +lamp shell|6104319 +lampblack|6104454 +lamper eel|6104521 +lamphouse|6104602 +lamplight|6104653 +lamplighter|6104710 +lamplit|6104738 +lampoon|6104761 +lampoon artist|6104988 +lampooner|6105023 +lamppost|6105070 +lamprey|6105093 +lamprey eel|6105174 +lampridae|6105255 +lampris|6105313 +lampris guttatus|6105363 +lampris regius|6105454 +lampropeltis|6105540 +lampropeltis getulus|6105608 +lampropeltis triangulum|6105697 +lampshade|6105825 +lampshell|6105861 +lampyridae|6105915 +lan|6105981 +lanai|6106034 +lanai island|6106107 +lanate|6106155 +lancashire|6106192 +lancaster|6106295 +lancastrian|6106458 +lancastrian line|6106657 +lance|6106781 +lance corporal|6106976 +lancelet|6107031 +lancelike|6107075 +lancelot|6107134 +lanceolate|6107225 +lanceolate leaf|6107284 +lanceolate spleenwort|6107321 +lancer|6107382 +lancers|6107417 +lancet|6107477 +lancet arch|6107545 +lancet fish|6107585 +lancet window|6107740 +lancetfish|6107770 +lancewood|6107844 +lancewood tree|6107914 +lanchou|6108021 +lanchow|6108091 +lancinate|6108161 +lancinating|6108239 +land|6108317 +land agent|6109305 +land area|6109451 +land cress|6109504 +land development|6109672 +land grant|6109723 +land line|6109760 +land mile|6109934 +land mine|6109994 +land of enchantment|6110050 +land of lincoln|6110128 +land of opportunity|6110210 +land office|6110286 +land rail|6110325 +land reform|6110370 +land resources|6110398 +land site|6110457 +land tax|6110539 +land tenure|6110583 +land up|6110623 +land-office business|6109266 +landau|6110758 +landed|6110842 +landed estate|6110865 +landed gentry|6110947 +lander|6111001 +landfall|6111079 +landfill|6111147 +landgrave|6111173 +landholder|6111198 +landholding|6111259 +landing|6111345 +landing approach|6111445 +landing craft|6111499 +landing deck|6111528 +landing field|6111567 +landing flap|6111640 +landing gear|6111673 +landing net|6111709 +landing party|6111750 +landing place|6111787 +landing skids|6111841 +landing stage|6111877 +landing strip|6111909 +landlady|6112002 +landler|6112029 +landless|6112163 +landline|6112190 +landlocked|6112283 +landlocked salmon|6112310 +landlord|6112377 +landlord's lien|6112431 +landlubber|6112461 +landlubberly|6112593 +landman|6112637 +landmark|6112711 +landmass|6112933 +landowner|6113003 +landowska|6113064 +landrover|6113124 +landry's paralysis|6113185 +landscape|6113311 +landscape architect|6113512 +landscape architecture|6113602 +landscape gardener|6113647 +landscape gardening|6113737 +landscape painting|6113801 +landscaped|6113845 +landscaper|6113874 +landscaping|6113964 +landscapist|6114042 +landside|6114147 +landslide|6114195 +landslip|6114252 +landsmal|6114286 +landsman|6114345 +landsteiner|6114479 +landward|6114555 +landwards|6114582 +lane|6114609 +lane's prince albert|6114639 +laney|6114704 +lang syne|6114761 +langbeinite|6114814 +lange|6114843 +langlauffer|6114900 +langley|6114927 +langmuir|6115072 +langobard|6115123 +langouste|6115169 +langoustine|6115307 +langsat|6115361 +langset|6115422 +langside|6115483 +langston hughes|6115544 +langsyne|6115628 +langtry|6115720 +language|6115813 +language area|6116175 +language barrier|6116242 +language learning|6116286 +language lesson|6116334 +language requirement|6116366 +language school|6116417 +language system|6116449 +language teaching|6116488 +language unit|6116545 +language zone|6116622 +languas speciosa|6116689 +langue d'oc|6116811 +langue d'oc french|6116870 +langue d'oil|6116936 +langue d'oil french|6116998 +languedoc-roussillon|6117067 +languid|6117132 +languish|6117201 +languisher|6117335 +languor|6117386 +languorous|6117539 +langur|6117608 +laniard|6117652 +laniary|6117722 +laniidae|6117751 +lanius|6117806 +lanius borealis|6117853 +lanius excubitor|6117922 +lanius lucovicianus|6117993 +lanius ludovicianus excubitorides|6118067 +lanius ludovicianus migrans|6118176 +lank|6118263 +lankiness|6118307 +lanky|6118360 +lanolin|6118435 +lanoxin|6118516 +lansa|6118589 +lansat|6118638 +lanseh|6118687 +lanseh tree|6118736 +lanset|6118797 +lansing|6118846 +lansium domesticum|6118905 +lansoprazole|6118985 +lantana|6119021 +lantern|6119054 +lantern fly|6119274 +lantern jaw|6119413 +lantern pinion|6119517 +lantern slide|6119562 +lantern wheel|6119609 +lantern-fly|6119076 +lantern-jawed|6119215 +lanternfish|6119654 +lanthanide|6119708 +lanthanide series|6119794 +lanthanoid|6119828 +lanthanon|6119914 +lanthanotidae|6120000 +lanthanotus|6120073 +lanthanotus borneensis|6120138 +lanthanum|6120200 +lanugo|6120262 +lanyard|6120288 +lanzhou|6120358 +lao|6120428 +lao people's democratic republic|6120661 +lao-tse|6120506 +lao-tzu|6120558 +lao-zi|6120610 +laocoon|6120768 +laos|6120808 +laotian|6120935 +laotian capital|6121019 +laotian monetary unit|6121103 +lap|6121170 +lap choly|6122027 +lap covering|6122091 +lap joint|6122132 +lap of honour|6122164 +lap of luxury|6122218 +lap of the gods|6122254 +lap up|6122283 +lap-jointed|6121482 +lap-strake|6121591 +lap-straked|6121700 +lap-streak|6121809 +lap-streaked|6121918 +laparocele|6122321 +laparoscope|6122359 +laparoscopic cholecystectomy|6122390 +laparoscopy|6122454 +laparotomy|6122486 +lapboard|6122541 +lapdog|6122573 +lapel|6122623 +lapful|6122650 +lapidarian|6122679 +lapidarist|6122713 +lapidary|6122749 +lapidate|6122824 +lapidation|6122873 +lapidator|6122921 +lapidify|6122986 +lapidist|6123032 +lapin|6123068 +lapis lazuli|6123124 +laplace|6123164 +lapland|6123279 +laportea|6123385 +laportea canadensis|6123458 +lapp|6123526 +lappet|6123597 +lappet caterpillar|6123706 +lappet moth|6123746 +lappic|6123803 +lapping|6123857 +lappish|6123907 +lappland|6123962 +lapplander|6124069 +lappula|6124114 +lapse|6124189 +lapsed|6124741 +lapsing|6124784 +laptev sea|6124865 +laptop|6124900 +laptop computer|6124950 +laputa|6125000 +laputan|6125054 +lapwing|6125159 +laramie|6125209 +larboard|6125239 +larcener|6125284 +larcenist|6125326 +larcenous|6125368 +larceny|6125411 +larch|6125468 +larch tree|6125530 +lard|6125580 +lard oil|6125790 +larder|6125819 +lardizabala|6125938 +lardizabala family|6126011 +lardizabalaceae|6126101 +lardner|6126207 +laredo|6126302 +large|6126383 +large calorie|6128681 +large cap|6128796 +large civet|6128832 +large crabgrass|6128885 +large cranberry|6128985 +large indefinite amount|6129061 +large indefinite quantity|6129140 +large integer|6129219 +large intestine|6129263 +large magellanic cloud|6129308 +large number|6129380 +large order|6129487 +large periwinkle|6129550 +large person|6129599 +large poodle|6129674 +large tooth aspen|6129714 +large white|6129854 +large white petunia|6129910 +large yellow lady's slipper|6129965 +large-cap|6127511 +large-capitalisation|6127601 +large-capitalization|6127691 +large-flowered calamint|6127781 +large-flowered fiddleneck|6127892 +large-flowering magnolia|6127971 +large-hearted|6128081 +large-leaved aster|6128139 +large-leaved cucumber tree|6128197 +large-leaved magnolia|6128310 +large-minded|6128423 +large-scale|6128481 +large-toothed aspen|6128541 +largeleaf holly|6130122 +largely|6130153 +largemouth|6130194 +largemouth bass|6130327 +largemouth black bass|6130488 +largemouthed bass|6130621 +largemouthed black bass|6130754 +largeness|6130887 +larger|6130919 +larger-than-life|6132058 +largess|6132102 +largesse|6132211 +largest|6132319 +larghetto|6133492 +larghissimo|6133581 +largish|6133607 +largo|6133638 +lari|6133747 +lariat|6133823 +laricariidae|6133862 +larid|6133929 +laridae|6133964 +larium|6134016 +larix|6134117 +larix decidua|6134167 +larix laricina|6134236 +larix lyallii|6134328 +larix occidentalis|6134398 +larix russica|6134506 +larix siberica|6134590 +lark|6134675 +lark about|6134939 +larkspur|6135042 +larn|6135071 +larodopa|6135099 +larotid|6135188 +larousse|6135268 +larrea|6135363 +larrea tridentata|6135417 +larrup|6135507 +lars onsager|6135559 +larus|6135610 +larus argentatus|6135654 +larus canus|6135732 +larus marinus|6135808 +larus ridibundus|6135913 +larva|6136018 +larvacea|6136081 +larvacean|6136145 +larvacide|6136194 +larval|6136239 +larvicide|6136318 +laryngeal|6136346 +laryngeal artery|6136413 +laryngeal vein|6136493 +laryngectomy|6136561 +laryngismus|6136625 +laryngitis|6136652 +laryngopharyngeal|6136699 +laryngopharyngitis|6136789 +laryngopharynx|6136844 +laryngoscope|6136895 +laryngospasm|6136936 +laryngostenosis|6136968 +laryngotracheobronchitis|6137028 +larynx|6137089 +las cruces|6137164 +las vegas|6137200 +lasagna|6137258 +lasagne|6137326 +lasalle|6137394 +lascar|6137477 +lascaux|6137530 +lascivious|6137560 +lasciviously|6137609 +lasciviousness|6137642 +laser|6137747 +laser beam|6137833 +laser printer|6137933 +laser-guided bomb|6137791 +lash|6137978 +lash out|6138231 +lash together|6138320 +lash-up|6138190 +lasher|6138352 +lashing|6138375 +lashings|6138554 +lashkar-e-jhangvi|6138885 +lashkar-e-omar|6139004 +lashkar-e-taiba|6139127 +lashkar-e-tayyiba|6139319 +lashkar-e-toiba|6139513 +lasiocampa|6139705 +lasiocampid|6139769 +lasiocampid moth|6139812 +lasiocampidae|6139855 +lasiurus|6139930 +lasiurus borealis|6139985 +lasix|6140070 +laskar jihad|6140136 +lass|6140263 +lassa|6140352 +lassa fever|6140428 +lassa virus|6140551 +lassen volcanic national park|6140595 +lassie|6140678 +lassitude|6140767 +lasso|6140895 +last|6141020 +last but not least|6142038 +last day|6142080 +last frontier|6142266 +last gasp|6142328 +last half|6142358 +last hurrah|6142394 +last in first out|6142437 +last judgement|6142490 +last judgment|6142682 +last laugh|6142873 +last mentioned|6142909 +last mile|6142940 +last minute|6142964 +last name|6143028 +last not least|6143081 +last out|6143123 +last quarter|6143163 +last resort|6143195 +last respects|6143236 +last rites|6143277 +last straw|6143372 +last supper|6143427 +last word|6143496 +last-ditch|6141939 +last-minute|6141968 +last-place|6142000 +lastex|6143620 +lasthenia|6143655 +lasthenia chrysostoma|6143720 +lasting|6143807 +lastingness|6144103 +lastly|6144179 +lastreopsis|6144221 +laszlo lowestein|6144283 +lat|6144387 +latanier|6144448 +latanier palm|6144489 +latch|6144530 +latch on|6144599 +latched|6144807 +latchkey|6144867 +latchkey child|6144889 +latchstring|6144948 +late|6144976 +late blight|6145303 +late greek|6145331 +late latin|6145395 +late purple aster|6145447 +late-night hour|6145261 +latecomer|6145480 +lateen|6145521 +lateen sail|6145664 +lateen-rig|6145595 +lateen-rigged|6145627 +lately|6145710 +latency|6145756 +latency period|6145925 +latency phase|6145989 +latency stage|6146053 +lateness|6146117 +latent|6146142 +latent content|6146193 +latent diabetes|6146258 +latent heat|6146322 +latent hostility|6146383 +latent period|6146445 +latent schizophrenia|6146557 +later|6146690 +later on|6147056 +lateral|6147119 +lateral cerebral sulcus|6147223 +lateral condyle|6147323 +lateral epicondyle|6147356 +lateral epicondylitis|6147395 +lateral geniculate body|6147505 +lateral humeral epicondylitis|6147582 +lateral line|6147692 +lateral line organ|6147771 +lateral pass|6147850 +lateral rectus|6147919 +lateral rectus muscle|6148023 +lateral thinking|6148127 +lateral ventricle|6148196 +lateralisation|6148233 +laterality|6148405 +lateralization|6148648 +lateralize|6148820 +lateran|6148854 +lateran council|6148894 +lateran palace|6148943 +lateran treaty|6148989 +laterite|6149055 +latest|6149083 +latex|6149418 +latex paint|6149505 +lath|6149567 +lath and plaster|6149593 +lathe|6149637 +lathee|6149675 +lather|6149702 +lathery|6149995 +lathi|6150033 +lathyrus|6150060 +lathyrus hirsutus|6150120 +lathyrus japonicus|6150224 +lathyrus latifolius|6150317 +lathyrus maritimus|6150425 +lathyrus niger|6150518 +lathyrus nissolia|6150577 +lathyrus odoratus|6150660 +lathyrus palustris|6150729 +lathyrus pratensis|6150795 +lathyrus sativus|6150896 +lathyrus splendens|6150978 +lathyrus sylvestris|6151054 +lathyrus tuberosus|6151158 +lathyrus vernus|6151262 +laticifer|6151343 +latimeria|6151367 +latimeria chalumnae|6151423 +latimeridae|6151524 +latin|6151588 +latin alphabet|6151981 +latin america|6152044 +latin american|6152153 +latin cross|6152236 +latin quarter|6152275 +latin square|6152385 +latin-american|6151871 +latinate|6152434 +latinesce|6152474 +latinian language|6152523 +latinise|6152599 +latinist|6152717 +latinize|6152773 +latino|6152925 +latino sine flexione|6153066 +latish|6153124 +latisimus dorsi|6153145 +latitude|6153206 +latitudinal|6153360 +latitudinarian|6153397 +latium|6153499 +latke|6153543 +latona|6153665 +latria|6153730 +latrine|6153764 +latrobe|6153893 +latrodectus|6153960 +latrodectus mactans|6154027 +lats|6154095 +latte|6154190 +latten|6154226 +latter|6154248 +latter-day|6154300 +latter-day saint|6154328 +latterly|6154389 +lattice|6154435 +latticed|6154578 +latticelike|6154660 +latticework|6154742 +latvia|6154804 +latvian|6154875 +latvian monetary unit|6154998 +laud|6155065 +laudable|6155115 +laudably|6155177 +laudanum|6155231 +laudator|6155274 +laudatory|6155321 +lauder|6155373 +laudo|6155525 +laugh|6155560 +laugh at|6155806 +laugh away|6155896 +laugh line|6155993 +laugh loudly|6156118 +laugh off|6156179 +laugh softly|6156276 +laugh track|6156346 +laughable|6156378 +laughably|6156555 +laugher|6156613 +laughing|6156744 +laughing gas|6156774 +laughing gull|6156916 +laughing hyena|6157004 +laughing jackass|6157071 +laughing owl|6157215 +laughingstock|6157317 +laughter|6157369 +laughton|6157478 +lauhala|6157565 +launce|6157640 +launch|6157723 +launch area|6158015 +launch pad|6158084 +launcher|6158234 +launching|6158300 +launching pad|6158463 +launching site|6158532 +launchpad|6158571 +launder|6158640 +launderette|6158718 +laundering|6158758 +laundress|6158800 +laundromat|6158861 +laundry|6158912 +laundry basket|6159010 +laundry cart|6159078 +laundry detergent|6159131 +laundry truck|6159168 +laundryman|6159195 +laundrywoman|6159232 +lauraceae|6159293 +laurasia|6159376 +laureate|6159413 +laurel|6159467 +laurel and hardy|6159642 +laurel cherry|6159701 +laurel family|6159867 +laurel oak|6159940 +laurel sumac|6160051 +laurel willow|6160113 +laurel wreath|6160182 +laurel-tree|6159590 +laureled|6160341 +laurelled|6160386 +laurels|6160422 +laurelwood|6160691 +laurence olivier|6160757 +laurence stephen lowry|6160903 +laurence sterne|6160984 +laurens|6161046 +laurentius|6161115 +lauric acid|6161196 +lauritz lebrecht hommel melchior|6161254 +lauritz melchior|6161361 +laurus|6161452 +laurus nobilis|6161510 +lauryl alcohol|6161592 +lausanne|6161636 +lautaro faction of the united popular action movement|6161692 +lautaro popular rebel forces|6161935 +lautaro youth movement|6162153 +lav|6162365 +lava|6162423 +lavabo|6162451 +lavage|6162518 +lavalava|6162545 +lavalier|6162569 +lavaliere|6162616 +lavalliere|6162663 +lavandula|6162710 +lavandula angustifolia|6162775 +lavandula latifolia|6162878 +lavandula officinalis|6162967 +lavandula stoechas|6163069 +lavatera|6163141 +lavatera arborea|6163205 +lavation|6163294 +lavatory|6163330 +lave|6163505 +lavender|6163611 +lavender cotton|6163663 +laver|6163726 +lavish|6163874 +lavishly|6164057 +lavishness|6164115 +lavoisier|6164264 +lavrenti pavlovich beria|6164345 +law|6164446 +law agent|6165081 +law degree|6165110 +law enforcement|6165153 +law enforcement agency|6165190 +law firm|6165286 +law merchant|6165329 +law of action and reaction|6165399 +law of archimedes|6165553 +law of areas|6165638 +law of averages|6165745 +law of chemical equilibrium|6165788 +law of closure|6165859 +law of common fate|6165953 +law of conservation of energy|6166055 +law of conservation of mass|6166180 +law of conservation of matter|6166304 +law of constant proportion|6166428 +law of continuation|6166510 +law of definite proportions|6166632 +law of diminishing returns|6166714 +law of effect|6166768 +law of equal areas|6166809 +law of equivalent proportions|6166916 +law of gravitation|6167003 +law of independent assortment|6167077 +law of large numbers|6167129 +law of mass action|6167193 +law of moses|6167239 +law of motion|6167303 +law of multiple proportions|6167380 +law of nations|6167448 +law of nature|6167508 +law of parsimony|6167564 +law of partial pressures|6167657 +law of proximity|6167756 +law of reciprocal proportions|6167854 +law of segregation|6167941 +law of similarity|6167982 +law of the land|6168082 +law of thermodynamics|6168125 +law of volumes|6168174 +law offender|6168247 +law officer|6168328 +law practice|6168407 +law school|6168438 +law student|6168500 +law-abiding|6164856 +law-breaking|6164918 +law-makers|6164970 +lawbreaker|6168544 +lawcourt|6168625 +lawful|6168648 +lawfully|6168807 +lawfully-begotten|6168878 +lawfulness|6168916 +lawgiver|6168944 +lawless|6168978 +lawlessly|6169082 +lawlessness|6169120 +lawmaker|6169185 +lawmaking|6169219 +lawman|6169314 +lawn|6169393 +lawn bowling|6169413 +lawn cart|6169443 +lawn chair|6169524 +lawn furniture|6169563 +lawn mower|6169637 +lawn party|6169685 +lawn tennis|6169739 +lawn tool|6169778 +lawrence|6169814 +lawrence durrell|6170236 +lawrence george durrell|6170325 +lawrence of arabia|6170421 +lawrence peter berra|6170537 +lawrencium|6170637 +laws|6170703 +lawson's cedar|6171231 +lawson's cypress|6171360 +lawsuit|6171491 +lawton|6171570 +lawyer|6171598 +lawyer bush|6171732 +lawyer cane|6171902 +lawyer-client relation|6171656 +lawyerbush|6171949 +lax|6172038 +laxation|6172279 +laxative|6172420 +laxity|6172528 +laxly|6172597 +laxness|6172621 +lay|6172690 +lay aside|6173458 +lay away|6173490 +lay claim|6173571 +lay down|6173636 +lay eyes on|6173716 +lay figure|6173748 +lay hands on|6173774 +lay in|6173807 +lay into|6173953 +lay off|6174015 +lay on the line|6174175 +lay out|6174250 +lay over|6174409 +lay reader|6174513 +lay to rest|6174550 +lay up|6174616 +lay waste to|6174663 +lay witness|6174738 +lay-by|6173202 +lay-up|6173339 +layabout|6174767 +layby|6174823 +layer|6174879 +layer cake|6175078 +layered|6175103 +layette|6175151 +layia|6175179 +layia platyglossa|6175232 +laying|6175303 +laying claim|6175370 +laying on|6175415 +laying on of hands|6175442 +laying waste|6175523 +layman|6175601 +layoff|6175661 +layout|6175712 +layover|6175762 +layperson|6175798 +layup|6175858 +lazar|6175896 +lazar house|6175954 +lazaret|6176032 +lazarette|6176110 +lazaretto|6176188 +lazarus|6176314 +laze|6176436 +lazily|6176469 +laziness|6176489 +lazio|6176591 +lazuli|6176634 +lazuline|6176674 +lazy|6176739 +lazy daisy stitch|6176813 +lazy susan|6176847 +lazybones|6176893 +lazzaro spallanzani|6176949 +lb|6177023 +lbf.|6177058 +lbj|6177089 +lcd|6177275 +lcm|6177352 +ld.|6177419 +ldl|6177465 +ldl cholesterol|6177535 +le|6177600 +le carre|6177680 +le chatelier|6177761 +le chatelier principle|6178256 +le chatelier's law|6177823 +le chatelier's principle|6177962 +le chatelier-braun principle|6178107 +le corbusier|6178399 +le douanier rousseau|6178479 +le duc tho|6178562 +le gallienne|6178614 +le havre|6178674 +le notre|6178735 +lea|6178839 +leach|6178918 +leaching|6179111 +leacock|6179182 +lead|6179291 +lead acetate|6180684 +lead arsenate|6180751 +lead astray|6180800 +lead bank|6181030 +lead by the nose|6181130 +lead carbonate|6181252 +lead chromate|6181295 +lead colic|6181327 +lead glass|6181386 +lead line|6181412 +lead off|6181470 +lead on|6181623 +lead ore|6181706 +lead pencil|6181728 +lead plant|6181756 +lead poisoning|6181893 +lead sheet|6181971 +lead story|6182003 +lead tetraethyl|6182070 +lead time|6182121 +lead tree|6182163 +lead up|6182239 +lead-acid accumulator|6180413 +lead-acid battery|6180490 +lead-free|6180567 +lead-in|6180614 +leadbelly|6182290 +leaded|6182416 +leaded bronze|6182476 +leaded gasoline|6182506 +leaden|6182560 +leader|6182664 +leaders|6182773 +leadership|6182920 +leading|6183021 +leading astray|6183267 +leading edge|6183325 +leading indicator|6183352 +leading lady|6183417 +leading light|6183447 +leading man|6183536 +leading off|6183600 +leading question|6183658 +leading rein|6183744 +leading tone|6183771 +leadless|6183825 +leadplant|6183872 +leadwort|6183928 +leadwort family|6183975 +leaf|6184090 +leaf beet|6185013 +leaf beetle|6185193 +leaf blade|6185233 +leaf blight|6185280 +leaf bud|6185308 +leaf bug|6185330 +leaf cast|6185403 +leaf disease|6185460 +leaf fat|6185496 +leaf form|6185528 +leaf insect|6185572 +leaf lard|6185629 +leaf lettuce|6185661 +leaf miner|6185747 +leaf mold|6185866 +leaf mould|6185917 +leaf mustard|6185968 +leaf roller|6186121 +leaf scorch|6186260 +leaf shape|6186288 +leaf soil|6186332 +leaf spring|6186383 +leaf-book|6184309 +leaf-cutter|6184355 +leaf-cutter bee|6184413 +leaf-cutting bee|6184471 +leaf-foot bug|6184529 +leaf-footed bug|6184586 +leaf-miner|6184643 +leaf-nosed bat|6184762 +leaf-nosed snake|6184824 +leaf-roller|6184874 +leafage|6186411 +leafed|6186453 +leafhopper|6186482 +leafing|6186532 +leafless|6186618 +leaflet|6186689 +leaflike|6186789 +leafnose bat|6186813 +leafstalk|6186875 +leafy|6186913 +leafy liverwort|6187049 +leafy spurge|6187095 +leafy vegetable|6187152 +league|6187207 +league of iroquois|6187297 +league of nations|6187392 +league together|6187549 +leak|6187613 +leak fungus|6188008 +leak out|6188073 +leakage|6188121 +leaker|6188183 +leakey|6188216 +leaking|6188546 +leakproof|6188581 +leaky|6188621 +leal|6188854 +lean|6188874 +lean against|6189767 +lean back|6189831 +lean on|6189884 +lean-to|6189695 +lean-to tent|6189720 +leander|6189948 +leaner|6189988 +leaning|6190010 +leaning tower|6190278 +leaning tower of pisa|6190354 +leanness|6190438 +leap|6190481 +leap day|6190699 +leap out|6190748 +leap second|6190862 +leap year|6190896 +leaper|6190977 +leapfrog|6191021 +leaping|6191239 +lear|6191304 +learn|6191450 +learned|6191702 +learned person|6191874 +learned profession|6191954 +learned reaction|6191993 +learned response|6192054 +learnedly|6192115 +learnedness|6192143 +learner|6192246 +learner's dictionary|6192398 +learner's permit|6192465 +learning|6192514 +learning ability|6192660 +learning disability|6192746 +learning disorder|6192808 +leary|6192870 +lease|6192950 +lease giver|6193302 +lease-lend|6193249 +leased|6193347 +leasehold|6193379 +leaseholder|6193438 +leash|6193480 +least|6193709 +least bittern|6193829 +least common multiple|6193878 +least effort|6193945 +least resistance|6194027 +least sandpiper|6194109 +least shrew|6194167 +least squares|6194221 +leastways|6194309 +leastwise|6194358 +leather|6194407 +leather carp|6194436 +leather fern|6194488 +leather flower|6194636 +leather soap|6194741 +leather strip|6194780 +leatherback|6194813 +leatherback turtle|6194915 +leathered|6195017 +leatherette|6195074 +leatherfish|6195143 +leatherjack|6195187 +leatherjacket|6195227 +leatherleaf|6195307 +leatherleaf fern|6195432 +leatherleaf saxifrage|6195537 +leatherleaf wood fern|6195615 +leatherlike|6195736 +leatherneck|6195793 +leatherwood|6195896 +leatherwork|6196038 +leathery|6196078 +leathery grape fern|6196135 +leathery polypody|6196197 +leathery turtle|6196280 +leave|6196382 +leave alone|6197006 +leave behind|6197062 +leave no stone unturned|6197131 +leave of absence|6197185 +leave off|6197226 +leave office|6197388 +leave out|6197460 +leave-taking|6196926 +leaved|6197610 +leaven|6197639 +leavened|6197766 +leavening|6197816 +leaver|6197886 +leaving|6197933 +lebanese|6198002 +lebanese hizballah|6198085 +lebanese monetary unit|6198393 +lebanese pound|6198462 +lebanese republic|6198530 +lebanon|6198610 +lebensraum|6198680 +lebistes|6198733 +lebistes reticulatus|6198786 +leboyer method|6198868 +leboyer method of childbirth|6198955 +lecanopteris|6199056 +lecanora|6199083 +lecanoraceae|6199108 +leccinum|6199177 +leccinum fibrillosum|6199232 +lech|6199290 +lech after|6199358 +lech walesa|6199401 +lechanorales|6199486 +lechartelierite|6199553 +lechatelierite|6199586 +lecher|6199668 +lecherous|6199736 +lecherousness|6199760 +lechery|6199848 +lechwe|6199914 +lecithin|6199952 +leclanche cell|6199994 +lectern|6200073 +lectin|6200109 +lector|6200138 +lecture|6200256 +lecture demonstration|6200670 +lecture room|6200740 +lecturer|6200783 +lectureship|6200886 +lecturing|6200962 +lecythidaceae|6201019 +led|6201110 +leda|6201211 +ledbetter|6201245 +ledercillin vk|6201371 +lederhosen|6201471 +ledge|6201517 +ledgeman|6201544 +ledger|6201589 +ledger board|6201675 +ledger entry|6201702 +ledger line|6201797 +ledger paper|6201834 +ledum|6201870 +ledum groenlandicum|6201925 +ledum palustre|6202010 +lee|6202084 +lee buck trevino|6202750 +lee de forest|6202850 +lee harvey oswald|6202967 +lee krasner|6203047 +lee side|6203096 +lee tide|6203136 +lee trevino|6203172 +lee yuen kam|6203267 +lee's birthday|6202655 +leech|6203359 +leech onto|6203527 +leechee|6203554 +leechlike|6203630 +leeds|6203694 +leek|6203744 +leer|6203822 +leering|6203922 +leery|6203961 +lees|6204027 +leeuwenhoek|6204603 +leeward|6204703 +leeward islands|6204801 +leeward side|6204854 +leeward tide|6204895 +leeway|6204931 +leflunomide|6205032 +left|6205077 +left atrioventricular valve|6206618 +left atrium|6206706 +left atrium of the heart|6206803 +left bank|6206900 +left brain|6207006 +left coronary artery|6207073 +left field|6207137 +left fielder|6207236 +left gastric artery|6207269 +left gastric vein|6207356 +left hand|6207433 +left hander|6207477 +left hemisphere|6207747 +left over|6207814 +left stage|6207941 +left ventricle|6207977 +left wing|6208027 +left-hand|6205528 +left-handed|6205576 +left-handed pitcher|6205887 +left-handedness|6205989 +left-hander|6206049 +left-luggage office|6206388 +left-of-center|6206432 +left-slanting|6206479 +left-wing|6206519 +left-winger|6206566 +lefteye flounder|6208064 +lefteyed flounder|6208117 +lefthander|6208170 +leftish|6208272 +leftism|6208294 +leftist|6208359 +leftmost|6208448 +leftover|6208471 +leftovers|6208653 +lefty|6208750 +leg|6208933 +leg bone|6209317 +leg covering|6209355 +leg curl|6209399 +leg curling|6209442 +leg exercise|6209485 +leg extensor|6209571 +leg it|6209606 +leg of lamb|6209645 +leg-pull|6209215 +leg-pulling|6209266 +legacy|6209698 +legal|6209748 +legal action|6210009 +legal age|6210092 +legal assistant|6210141 +legal brief|6210193 +legal code|6210281 +legal community|6210319 +legal document|6210386 +legal duty|6210489 +legal expert|6210540 +legal fee|6210576 +legal fraud|6210599 +legal guardian|6210645 +legal holiday|6210687 +legal injury|6210735 +legal instrument|6210820 +legal jointure|6210923 +legal opinion|6210963 +legal ouster|6211074 +legal philosophy|6211150 +legal power|6211205 +legal principle|6211258 +legal proceeding|6211330 +legal profession|6211410 +legal relation|6211477 +legal representation|6211523 +legal representative|6211584 +legal residence|6211638 +legal right|6211688 +legal separation|6211715 +legal status|6211831 +legal system|6211869 +legal tender|6211898 +legal transfer|6211962 +legalese|6212056 +legalisation|6212097 +legalise|6212158 +legalism|6212301 +legality|6212341 +legalization|6212370 +legalize|6212431 +legally|6212574 +legate|6212618 +legatee|6212667 +legateship|6212702 +legation|6212786 +legato|6212912 +legend|6212942 +legendary|6212991 +legendary creature|6213037 +leger|6213100 +leger line|6213198 +legerdemain|6213235 +legerity|6213339 +legged|6213413 +legging|6213457 +leggy|6213501 +leghorn|6213571 +legibility|6213654 +legible|6213767 +legibly|6213831 +legin|6213869 +legion|6213913 +legionary|6214087 +legionary ant|6214126 +legionella|6214187 +legionella pneumophilia|6214250 +legionnaire|6214337 +legionnaires' disease|6214421 +legislate|6214490 +legislating|6214527 +legislation|6214622 +legislative|6214746 +legislative act|6214791 +legislative assembly|6214838 +legislative branch|6214917 +legislative council|6214968 +legislator|6215058 +legislatorship|6215107 +legislature|6215186 +legitimacy|6215265 +legitimate|6215367 +legitimately|6215754 +legitimation|6215792 +legitimatise|6215892 +legitimatize|6216035 +legitimise|6216178 +legitimize|6216321 +legless|6216464 +legless lizard|6216489 +leglike|6216520 +lego|6216544 +lego set|6216586 +legs|6216632 +legume|6216991 +legume family|6217089 +leguminious|6217198 +leguminosae|6217235 +leguminous|6217356 +leguminous plant|6217397 +lehar|6217452 +lehigh river|6217494 +lei|6217535 +leibnitz|6217666 +leibnitzian|6217780 +leibniz|6217849 +leibnizian|6217962 +leicester|6218030 +leicestershire|6218127 +leichtlin's camas|6218183 +leiden|6218284 +leiden jar|6218343 +leigh|6218438 +leigh hunt|6218480 +leiomyoma|6218553 +leiomyosarcoma|6218578 +leiopelma|6218610 +leiopelmatidae|6218695 +leiophyllum|6218804 +leiophyllum buxifolium|6218877 +leipoa|6218955 +leipoa ocellata|6219061 +leipzig|6219183 +leishmania|6219237 +leishmaniasis|6219366 +leishmaniasis americana|6219433 +leishmaniosis|6219608 +leister|6219675 +leisure|6219723 +leisure time|6219797 +leisure wear|6219836 +leisured|6219900 +leisureliness|6219923 +leisurely|6219997 +leitmotif|6220058 +leitmotiv|6220143 +leitneria|6220228 +leitneria floridana|6220304 +leitneriaceae|6220387 +lek|6220494 +lekvar|6220530 +leland stanford|6220554 +lem|6220631 +lemaireocereus|6220727 +lemaireocereus chichipe|6220813 +lemaitre|6220886 +lemanderin|6220965 +lemma|6221040 +lemming|6221123 +lemmon|6221169 +lemmus|6221258 +lemmus lemmus|6221307 +lemmus trimucronatus|6221369 +lemna|6221442 +lemna minor|6221505 +lemna trisulca|6221579 +lemnaceae|6221641 +lemniscus|6221735 +lemnos|6221775 +lemon|6221812 +lemon balm|6222368 +lemon butter|6222482 +lemon cheese|6222527 +lemon curd|6222598 +lemon drop|6222669 +lemon extract|6222700 +lemon geranium|6222782 +lemon grove|6222836 +lemon juice|6222890 +lemon lily|6222917 +lemon meringue pie|6223003 +lemon mint|6223035 +lemon oil|6223167 +lemon peel|6223245 +lemon rind|6223286 +lemon shark|6223327 +lemon sole|6223385 +lemon sumac|6223710 +lemon tree|6223781 +lemon yellow|6223839 +lemon zest|6223899 +lemon-scented gum|6222058 +lemon-wood|6222174 +lemon-wood tree|6222282 +lemonade|6223941 +lemonade mix|6223975 +lemonlike|6224007 +lemonwood|6224057 +lemonwood tree|6224155 +lemony|6224288 +lempira|6224338 +lemur|6224378 +lemur catta|6224401 +lemuridae|6224473 +lemuroidea|6224533 +lena|6224597 +lena river|6224633 +lenard|6224675 +lend|6224723 +lend oneself|6224872 +lend-lease|6224819 +lendable|6224900 +lender|6224928 +lending|6224960 +lending institution|6225006 +lending library|6225103 +lendl|6225175 +length|6225221 +length of service|6225398 +lengthen|6225444 +lengthened|6225483 +lengthening|6225537 +lengthily|6225621 +lengthiness|6225649 +lengthways|6225763 +lengthwise|6225902 +lengthy|6226052 +lenience|6226114 +leniency|6226254 +lenient|6226394 +leniently|6226480 +lenify|6226504 +lenin|6226663 +leningrad|6226824 +leninism|6226934 +lenitive|6226988 +lenity|6227102 +lennoaceae|6227164 +lennon|6227236 +lennox robinson|6227314 +lens|6227413 +lens cap|6227615 +lens capsule|6227648 +lens cover|6227692 +lens culinaris|6227725 +lens implant|6227808 +lens maker|6227838 +lens system|6227897 +lense|6227944 +lensman|6227991 +lent|6228044 +lent lily|6228081 +lente iletin|6228173 +lente insulin|6228230 +lenten|6228288 +lenten rose|6228310 +lententide|6228379 +lentia|6228422 +lentibulariaceae|6228479 +lentic|6228578 +lenticel|6228601 +lenticular|6228638 +lenticular nucleus|6228707 +lentiform|6228768 +lentiform nucleus|6228837 +lentiginose|6228898 +lentiginous|6228950 +lentigo|6229002 +lentil|6229041 +lentil plant|6229137 +lentil soup|6229205 +lentinus|6229231 +lentinus edodes|6229286 +lentinus lepideus|6229428 +lentissimo|6229495 +lento|6229520 +leo|6229553 +leo delibes|6229746 +leo esaki|6229826 +leo i|6229871 +leo iii|6230012 +leo szilard|6230127 +leo the great|6230206 +leo the lion|6230355 +leo tolstoy|6230463 +leo x|6230550 +leon|6230680 +leon battista alberti|6230853 +leon trotsky|6230941 +leonard|6231079 +leonard bernstein|6231167 +leonard bloomfield|6231265 +leonard constant lambert|6231353 +leonard marx|6231480 +leonardesque|6231541 +leonardo|6231685 +leonardo da vinci|6231849 +leonberg|6232022 +leoncita|6232083 +leone|6232144 +leonhard euler|6232186 +leonid brezhnev|6232245 +leonid fyodorovich myasin|6232350 +leonid ilyich brezhnev|6232488 +leonidas|6232600 +leonide fedorovitch massine|6232645 +leonine|6232785 +leonotis|6232813 +leonotis leonurus|6232875 +leonotis nepetaefolia|6232981 +leonotis nepetifolia|6233088 +leontief|6233194 +leontocebus|6233264 +leontocebus oedipus|6233345 +leontocebus rosalia|6233444 +leontodon|6233550 +leontodon autumnalis|6233615 +leontopodium|6233700 +leontopodium alpinum|6233774 +leontyne price|6233858 +leonurus|6233931 +leonurus cardiaca|6233993 +leopard|6234071 +leopard cat|6234190 +leopard frog|6234237 +leopard lily|6234300 +leopard lizard|6234469 +leopard plant|6234516 +leopard's-bane|6234132 +leopardbane|6234561 +leopardess|6234619 +leopold antoni stanislaw stokowski|6234663 +leopold kronecker|6234804 +leopold stokowski|6234873 +leopoldville|6234997 +leotard|6235058 +leotards|6235110 +leotia lubrica|6235198 +lepadidae|6235260 +lepanto|6235323 +lepas|6235379 +lepas fascicularis|6235428 +lepechinia|6235537 +lepechinia calycina|6235629 +leper|6235720 +leper lily|6235817 +lepidium|6235946 +lepidium alpina|6236010 +lepidium sativum|6236105 +lepidobotryaceae|6236230 +lepidobotrys|6236316 +lepidochelys|6236343 +lepidochelys kempii|6236411 +lepidochelys olivacea|6236513 +lepidocrocite|6236601 +lepidocybium|6236633 +lepidocybium flavobrunneum|6236698 +lepidodendraceae|6236778 +lepidodendrales|6236857 +lepidolite|6236932 +lepidomelane|6236967 +lepidophobia|6236997 +lepidoptera|6237029 +lepidopteran|6237154 +lepidopterist|6237217 +lepidopteron|6237295 +lepidopterous insect|6237358 +lepidosauria|6237421 +lepidote|6237484 +lepidothamnus|6237547 +lepidothamnus fonkii|6237621 +lepidothamnus laxifolius|6237696 +lepiota|6237801 +lepiota americana|6237825 +lepiota cepaestipes|6237895 +lepiota clypeolaria|6237963 +lepiota morgani|6238020 +lepiota naucina|6238087 +lepiota procera|6238136 +lepiota rhacodes|6238201 +lepiota rubrotincta|6238252 +lepiotaceae|6238309 +lepisma|6238375 +lepisma saccharina|6238430 +lepismatidae|6238517 +lepisosteidae|6238589 +lepisosteus|6238659 +lepisosteus osseus|6238721 +lepista irina|6238816 +lepomis|6238894 +lepomis gibbosus|6238944 +lepomis macrochirus|6239019 +lepomis punctatus|6239100 +leporid|6239197 +leporid mammal|6239254 +leporidae|6239311 +leporide|6239371 +leppy|6239420 +leprechaun|6239451 +lepromatous leprosy|6239510 +leprose|6239564 +leprosy|6239627 +leprosy bacillus|6239680 +leprous|6239754 +leptarrhena|6239789 +leptarrhena pyrolifolia|6239858 +leptinotarsa|6239960 +leptinotarsa decemlineata|6240030 +leptocephalus|6240179 +leptodactylid|6240208 +leptodactylid frog|6240299 +leptodactylidae|6240390 +leptodactylus|6240471 +leptodactylus pentadactylus|6240544 +leptoglossus|6240690 +leptomeninges|6240760 +leptomeningitis|6240799 +lepton|6240835 +leptopteris|6240946 +leptopteris superba|6241008 +leptoptilus|6241154 +leptoptilus crumeniferus|6241216 +leptoptilus dubius|6241312 +leptorhine|6241403 +leptorrhine|6241462 +leptorrhinian|6241533 +leptorrhinic|6241592 +leptospira|6241651 +leptospirosis|6241694 +leptosporangiate|6241755 +leptosporangium|6241798 +leptotene|6241855 +leptotyphlopidae|6241886 +leptotyphlops|6241968 +leptotyphlops humilis|6242039 +lepus|6242135 +lepus americanus|6242208 +lepus arcticus|6242299 +lepus californicus|6242366 +lepus europaeus|6242445 +lepus townsendi|6242505 +ler|6242602 +leresis|6242636 +lermontov|6242716 +lerner|6242787 +leroi jones|6242835 +lerot|6242908 +leroy robert paige|6242932 +lesbian|6243026 +lesbianism|6243136 +lesbos|6243215 +lescol|6243268 +lese majesty|6243372 +lesion|6243434 +leslie howard|6243497 +leslie howard stainer|6243606 +leslie richard groves|6243723 +leslie townes hope|6243804 +lesotho|6243880 +lesotho monetary unit|6243966 +lespedeza|6244033 +lespedeza bicolor|6244091 +lespedeza cuneata|6244190 +lespedeza sericea|6244293 +lespedeza stipulacea|6244396 +lespedeza striata|6244486 +lesquerella|6244593 +less|6244666 +less than|6244801 +less-traveled|6244768 +lessee|6244838 +lessen|6244880 +lessened|6245001 +lessening|6245074 +lesseps|6245142 +lesser|6245244 +lesser anteater|6245365 +lesser antilles|6245457 +lesser ape|6245519 +lesser bullrush|6245554 +lesser burdock|6245659 +lesser butterfly orchid|6245728 +lesser calamint|6245825 +lesser celandine|6245964 +lesser centaury|6246025 +lesser duckweed|6246076 +lesser galangal|6246138 +lesser hemlock|6246210 +lesser knapweed|6246282 +lesser kudu|6246357 +lesser omentum|6246418 +lesser panda|6246450 +lesser peritoneal cavity|6246532 +lesser prairie chicken|6246623 +lesser rhomboid muscle|6246726 +lesser rorqual|6246832 +lesser scaup|6246925 +lesser scaup duck|6247026 +lesser spearwort|6247127 +lesser sunda islands|6247207 +lesser twayblade|6247284 +lesser whitethroat|6247352 +lesser wintergreen|6247415 +lesser yellow trefoil|6247475 +lesser yellowlegs|6247558 +lessing|6247612 +lesson|6247744 +lessor|6247971 +lester willis young|6248016 +lesvos|6248101 +let|6248154 +let alone|6248568 +let down|6248601 +let drive|6248746 +let fly|6248798 +let go|6248850 +let go of|6248905 +let in|6248950 +let it go|6249069 +let loose|6249104 +let off|6249199 +let on|6249259 +let out|6249361 +let the cat out of the bag|6249575 +let up|6249770 +letch|6249891 +letdown|6249959 +lethal|6250007 +lethal agent|6250036 +lethal dose|6250064 +lethal gene|6250090 +lethality|6250131 +lethargic|6250198 +lethargic encephalitis|6250329 +lethargically|6250475 +lethargy|6250513 +lethe|6250674 +leto|6250713 +letter|6250776 +letter bomb|6251124 +letter bond|6251195 +letter box|6251232 +letter carrier|6251344 +letter case|6251440 +letter of credit|6251466 +letter of intent|6251508 +letter of jeremiah|6251549 +letter of mark and reprisal|6251621 +letter of marque|6251716 +letter of the alphabet|6251811 +letter opener|6251905 +letter paper|6251957 +letter security|6252025 +letter stock|6252071 +letter telegram|6252109 +letter writer|6252148 +letter-perfect|6251079 +lettercard|6252198 +lettered|6252262 +letterer|6252371 +letterhead|6252397 +lettering|6252441 +letterman|6252514 +letterpress|6252546 +letters|6252609 +letters of administration|6253001 +letters of marque|6253097 +letters patent|6253267 +letters testamentary|6253359 +letterset printing|6253450 +letting|6253501 +letting down|6253579 +lettish|6253619 +lettre de cachet|6253675 +lettuce|6253716 +letup|6253918 +leu|6253987 +leucadendron|6254053 +leucadendron argenteum|6254138 +leucaemia|6254210 +leucaena|6254304 +leucaena glauca|6254364 +leucaena leucocephala|6254456 +leucanthemum|6254554 +leucanthemum lacustre|6254628 +leucanthemum maximum|6254745 +leucanthemum superbum|6254856 +leucanthemum vulgare|6254978 +leucine|6255123 +leuciscus|6255161 +leuciscus cephalus|6255217 +leuciscus leuciscus|6255292 +leucocyte|6255369 +leucocytosis|6255520 +leucocytozoan|6255584 +leucocytozoon|6255631 +leucogenes|6255678 +leucogenes leontopodium|6255746 +leucoma|6255849 +leucopenia|6255886 +leucorrhea|6255946 +leucothoe|6256000 +leucothoe editorum|6256030 +leucothoe fontanesiana|6256144 +leucothoe racemosa|6256262 +leucotomy|6256332 +leuctra|6256463 +leukaemia|6256521 +leukemia|6256615 +leukeran|6256709 +leukocyte|6256766 +leukocytosis|6256917 +leukoderma|6256981 +leukoencephalitis|6257076 +leukoma|6257137 +leukopenia|6257174 +leukorrhea|6257234 +leukotomy|6257288 +leuwenhoek|6257419 +lev|6257518 +lev davidovich bronstein|6257555 +lev davidovich landau|6257705 +lev ivanov|6257775 +levallorphan|6257827 +levant|6257861 +levant cotton|6258048 +levant garlic|6258125 +levant morocco|6258216 +levanter|6258270 +levantine|6258314 +levee|6258455 +level|6258492 +level best|6259105 +level crossing|6259172 +level off|6259262 +leveler|6259302 +levelheaded|6259336 +leveling|6259403 +leveller|6259572 +lever|6259606 +lever hang|6259726 +lever lock|6259751 +lever scale|6259776 +lever tumbler|6259826 +leverage|6259863 +leveraged buyout|6260031 +leveraging|6260064 +leveret|6260114 +levi|6260136 +levi's|6260264 +levi-strauss|6260314 +leviathan|6260384 +levirate|6260485 +levis|6260515 +levisticum|6260679 +levisticum officinale|6260745 +levitate|6260827 +levitation|6260893 +levite|6260996 +levitical|6261040 +leviticus|6261073 +levity|6261125 +levodopa|6261180 +levorotary|6261260 +levorotation|6261352 +levorotatory|6261429 +levulose|6261521 +levy|6261581 +levy en masse|6261737 +lewd|6261809 +lewdly|6261897 +lewdness|6261922 +lewis|6261993 +lewis and clark expedition|6262358 +lewis carroll|6262432 +lewis henry morgan|6262557 +lewisia|6262626 +lewisia cotyledon|6262691 +lewisia rediviva|6262776 +lewiston|6262853 +lexeme|6262906 +lexical|6262952 +lexical ambiguity|6263013 +lexical database|6263073 +lexical disambiguation|6263185 +lexical entry|6263232 +lexical meaning|6263278 +lexicalisation|6263345 +lexicalise|6263403 +lexicalised|6263478 +lexicalization|6263529 +lexicalize|6263587 +lexicalized|6263662 +lexicalized concept|6263713 +lexicographer|6263771 +lexicographic|6263837 +lexicographical|6263914 +lexicography|6263991 +lexicologist|6264052 +lexicology|6264118 +lexicon|6264150 +lexicostatistic|6264247 +lexicostatistics|6264281 +lexington|6264317 +lexington and concord|6264459 +lexis|6264545 +ley|6264587 +leycesteria|6264647 +leycesteria formosa|6264718 +leyden|6264799 +leyden jar|6264858 +leydig cell|6265007 +leydig's cell|6264953 +leymus|6265059 +leymus arenaria|6265125 +leymus condensatus|6265229 +leyte|6265321 +leyte invasion|6265389 +leyte island|6265466 +lf|6265541 +lgb|6265586 +lgv|6265632 +lh|6265803 +lhasa|6265951 +lhasa apso|6266059 +lhotse|6266104 +li|6266141 +li po|6266251 +liabilities|6266277 +liability|6266448 +liability insurance|6266569 +liable|6266608 +liaise|6266725 +liaison|6266813 +liakoura|6266973 +liam o'flaherty|6267040 +liana|6267106 +liao|6267126 +liao dynasty|6267166 +liar|6267214 +liatris|6267291 +liatris punctata|6267350 +liatris pycnostachya|6267474 +libation|6267607 +libber|6267705 +libby|6267807 +libel|6267856 +libeler|6268035 +libellous|6268148 +libelous|6268266 +liberal|6268384 +liberal arts|6268769 +liberal party|6268932 +liberalisation|6268991 +liberalise|6269076 +liberalism|6269152 +liberalistic|6269243 +liberality|6269273 +liberalization|6269358 +liberalize|6269443 +liberally|6269519 +liberalness|6269561 +liberate|6269645 +liberated|6269766 +liberation|6269844 +liberation tigers of tamil eelam|6270048 +liberator|6270267 +liberia|6270304 +liberian|6270380 +liberian capital|6270461 +liberian coffee|6270554 +liberian dollar|6270630 +libertarian|6270678 +libertarianism|6270711 +libertine|6270783 +liberty|6270921 +liberty bell|6271119 +liberty cap|6271159 +liberty chit|6271184 +liberty island|6271234 +liberty party|6271296 +liberty ship|6271355 +libidinal|6271414 +libidinal energy|6271480 +libidinous|6271535 +libido|6271584 +libocedrus|6271648 +libocedrus bidwillii|6271713 +libocedrus decurrens|6271804 +libocedrus plumosa|6271917 +libra|6271988 +libra the balance|6272217 +libra the scales|6272357 +librarian|6272496 +librarianship|6272559 +library|6272637 +library card|6272882 +library catalog|6272939 +library catalogue|6273000 +library fine|6273061 +library paste|6273105 +library program|6273161 +library routine|6273240 +library science|6273314 +librate|6273390 +libration|6273455 +librettist|6273496 +libretto|6273530 +libreville|6273571 +libritabs|6273636 +librium|6273705 +libya|6273772 +libyan|6273866 +libyan desert|6273941 +libyan dinar|6273985 +libyan dirham|6274047 +libyan fighting group|6274112 +libyan islamic fighting group|6274340 +libyan islamic group|6274576 +libyan monetary unit|6274803 +licence|6274868 +licenced|6275061 +licencee|6275134 +license|6275186 +license fee|6275444 +license number|6275495 +license plate|6275568 +license tax|6275609 +licensed|6275660 +licensed practical nurse|6275733 +licensee|6275793 +licenser|6275845 +licensing agreement|6275884 +licensing fee|6275922 +licentiate|6275973 +licentious|6276026 +licentiously|6276055 +licentiousness|6276099 +lichanura|6276232 +lichanura trivirgata|6276291 +lichee|6276355 +lichen|6276502 +lichen planus|6276607 +lichen ruber planus|6276657 +lichenales|6276707 +lichenes|6276768 +lichgate|6276822 +lichi|6276854 +lichtenoid eczema|6276930 +lichtenstein|6277001 +licit|6277061 +licitly|6277113 +licitness|6277151 +lick|6277181 +licked|6277472 +lickety cut|6277497 +lickety split|6277557 +licking|6277617 +licorice|6277754 +licorice fern|6277846 +licorice root|6277901 +licorice stick|6277929 +lid|6277978 +lidar|6278078 +lidded|6278148 +lidless|6278185 +lido|6278248 +lido deck|6278304 +lidocaine|6278328 +lie|6278437 +lie about|6278833 +lie around|6278887 +lie awake|6278941 +lie detector|6278964 +lie down|6278996 +lie in|6279033 +lie in wait|6279083 +lie low|6279156 +lie with|6279208 +lie-abed|6278725 +lie-in|6278789 +liebfraumilch|6279451 +liebig condenser|6279498 +liechtenstein|6279551 +liechtensteiner|6279651 +lied|6279756 +lieder singer|6279775 +liederkranz|6279834 +lief|6279874 +liege|6279919 +liege subject|6280043 +liegeman|6280107 +lien|6280171 +lienal|6280250 +lienal artery|6280316 +liepaja|6280408 +lietuva|6280462 +lieu|6280548 +lieutenancy|6280609 +lieutenant|6280685 +lieutenant colonel|6280873 +lieutenant commander|6280923 +lieutenant general|6280980 +lieutenant governor|6281024 +lieutenant jg|6281070 +lieutenant junior grade|6281158 +life|6281232 +life assurance|6282815 +life belt|6282864 +life buoy|6283015 +life class|6283106 +life cycle|6283136 +life estate|6283241 +life eternal|6283285 +life expectancy|6283352 +life force|6283424 +life form|6283482 +life history|6283543 +life imprisonment|6283718 +life insurance|6283793 +life jacket|6283842 +life line|6283927 +life mask|6284104 +life office|6284136 +life peer|6284180 +life preserver|6284204 +life principle|6284278 +life raft|6284351 +life ring|6284389 +life saver|6284480 +life science|6284659 +life scientist|6284708 +life sentence|6284767 +life story|6284821 +life style|6284901 +life support|6285148 +life tenant|6285237 +life vest|6285265 +life-and-death|6281895 +life-giving|6281951 +life-of-man|6281996 +life-or-death|6282083 +life-size|6282139 +life-sized|6282274 +life-style|6282329 +life-support|6282576 +life-support system|6282617 +life-sustaining|6282699 +life-threatening|6282740 +lifeblood|6285350 +lifeboat|6285388 +lifeguard|6285415 +lifeless|6285470 +lifelessly|6285551 +lifelessness|6285577 +lifelike|6285636 +lifeline|6285714 +lifelong|6285864 +lifer|6285900 +lifesaver|6285952 +lifesaving|6286086 +lifesize|6286141 +lifespan|6286196 +lifestyle|6286262 +lifetime|6286347 +lifework|6286413 +lifo|6286455 +lift|6286513 +lift bridge|6287976 +lift off|6288020 +lift out|6288110 +lift pump|6288192 +lift up|6288216 +lifted|6288362 +lifter|6288394 +lifting device|6288476 +liftman|6288507 +liftoff|6288568 +ligament|6288614 +ligamentum teres uteri|6288673 +ligan|6288743 +ligand|6288780 +ligate|6288813 +ligation|6288876 +ligature|6288909 +liger|6289078 +light|6289105 +light adaptation|6292417 +light air|6292454 +light ballast|6292503 +light beam|6292552 +light beer|6292679 +light bread|6292716 +light breeze|6292780 +light brown|6292832 +light bulb|6292869 +light circuit|6293052 +light colonel|6293099 +light company|6293149 +light cream|6293267 +light diet|6293320 +light filter|6293345 +light flyweight|6293391 +light heavyweight|6293431 +light hour|6293549 +light intensity|6293584 +light machine gun|6293656 +light meter|6293698 +light microscope|6293768 +light middleweight|6293805 +light minute|6293848 +light opera|6293885 +light pen|6293961 +light reaction|6294006 +light reflex|6294053 +light second|6294204 +light show|6294241 +light source|6294285 +light speed|6294336 +light time|6294398 +light touch|6294434 +light unit|6294476 +light up|6294521 +light upon|6294737 +light welterweight|6294858 +light whipping cream|6294901 +light within|6294952 +light year|6295057 +light-armed|6291173 +light-blue|6291227 +light-colored|6291298 +light-duty|6291371 +light-emitting diode|6291408 +light-fingered|6291505 +light-footed|6291552 +light-green|6291612 +light-haired|6291669 +light-handed|6291784 +light-headed|6291815 +light-headedly|6292044 +light-heartedly|6292083 +light-minded|6292119 +light-mindedness|6292160 +light-o'-love|6292203 +light-of-love|6292247 +light-sensitive|6292291 +light-skinned|6292341 +light-tight|6292380 +lightbulb|6295092 +lighted|6295194 +lighten|6295357 +lighten up|6295522 +lightening|6295601 +lighter|6295662 +lighter-than-air|6295784 +lighter-than-air craft|6295816 +lighterage|6295857 +lighterman|6295935 +lightheaded|6296034 +lightheadedness|6296184 +lighthearted|6296287 +lightheartedness|6296346 +lighthorse harry lee|6296435 +lighthouse|6296508 +lighthouse keeper|6296561 +lighting|6296613 +lighting circuit|6296807 +lighting fixture|6296854 +lighting industry|6296888 +lighting-up|6296780 +lightless|6296924 +lightlessness|6297005 +lightly|6297089 +lightly armored|6297185 +lightly armoured|6297244 +lightly-armed|6297144 +lightness|6297303 +lightning|6297448 +lightning arrester|6297504 +lightning bug|6297619 +lightning conductor|6297657 +lightning hurler|6297710 +lightning rod|6297800 +lightproof|6297913 +lights-out|6297950 +lightship|6298001 +lightsome|6298025 +lightsomely|6298119 +lightsomeness|6298172 +lightweight|6298346 +lightwood|6298540 +ligne|6298603 +ligneous|6298630 +ligneous plant|6298654 +lignified|6298718 +lignin|6298748 +lignite|6298772 +lignosae|6298822 +lignum|6298867 +lignum vitae|6298896 +ligularia|6299000 +ligule|6299065 +liguria|6299108 +ligurian sea|6299148 +ligustrum|6299187 +ligustrum amurense|6299263 +ligustrum ibolium|6299329 +ligustrum japonicum|6299409 +ligustrum lucidum|6299481 +ligustrum obtusifolium|6299563 +ligustrum ovalifolium|6299625 +ligustrum vulgare|6299703 +lii|6299769 +liii|6299804 +likable|6299842 +like|6299912 +like a shot|6300189 +like an amateur|6300312 +like an expert|6300349 +like blue murder|6300396 +like crazy|6300430 +like hell|6300505 +like kings|6300580 +like mad|6300620 +like royalty|6300695 +like sin|6300735 +like the devil|6300810 +like thunder|6300885 +like-minded|6300155 +likeable|6300960 +liked|6301029 +likelihood|6301067 +likeliness|6301115 +likely|6301163 +liken|6301431 +likeness|6301476 +likening|6301567 +likewise|6301606 +liking|6301676 +likuta|6301700 +lilac|6301738 +lilangeni|6301790 +liliaceae|6301833 +liliaceous|6301913 +liliaceous plant|6301954 +liliales|6301994 +lilian alicia marks|6302048 +lilies of the valley|6302152 +liliid monocot family|6302319 +liliid monocot genus|6302382 +liliidae|6302442 +liliopsid|6302493 +liliopsid family|6302569 +liliopsid genus|6302617 +liliopsida|6302662 +lilith|6302792 +lilium|6302829 +lilium auratum|6302886 +lilium canadense|6302944 +lilium candidum|6303050 +lilium catesbaei|6303148 +lilium columbianum|6303230 +lilium lancifolium|6303314 +lilium longiflorum|6303395 +lilium maritinum|6303491 +lilium martagon|6303550 +lilium michiganense|6303616 +lilium pardalinum|6303684 +lilium philadelphicum|6303760 +lilium superbum|6303828 +liliuokalani|6303901 +lille|6304004 +lillian gish|6304054 +lillian hellman|6304102 +lillian russell|6304172 +lillie|6304257 +lillie langtry|6304314 +lilliput|6304414 +lilliputian|6304472 +lilo|6304791 +lilongwe|6304823 +lilt|6304885 +lilting|6304977 +lily|6305039 +lily family|6305325 +lily of the incas|6305395 +lily of the nile|6305490 +lily of the valley|6305561 +lily pad|6305656 +lily turf|6305678 +lily-livered|6305070 +lily-of-the-valley tree|6305168 +lily-white|6305257 +lilyturf|6305820 +lima|6305881 +lima bean|6305933 +lima bean plant|6306127 +limacidae|6306209 +limacine|6306270 +limacoid|6306315 +liman|6306360 +limanda|6306396 +limanda ferruginea|6306446 +limax|6306550 +limb|6306597 +limb-girdle muscular dystrophy|6306743 +limbed|6306867 +limber|6306911 +limber pine|6307040 +limber up|6307087 +limbers|6307163 +limbic|6307222 +limbic brain|6307318 +limbic system|6307386 +limbless|6307454 +limbo|6307491 +limburger|6307601 +limbus|6307637 +lime|6307734 +lime disease spirochete|6308198 +lime hydrate|6308299 +lime juice|6308424 +lime tree|6308450 +limeade|6308558 +limeira|6308591 +limekiln|6308645 +limelight|6308668 +limen|6308751 +limenitis|6308866 +limenitis archippus|6308927 +limenitis arthemis|6309059 +limenitis astyanax|6309209 +limenitis camilla|6309350 +limerick|6309484 +limestone|6309564 +limestone fern|6309611 +limestone salamander|6309683 +limewater|6309752 +limey|6309781 +limicolae|6309817 +limicoline bird|6309878 +limit|6309942 +limit point|6310421 +limitation|6310490 +limited|6310650 +limited audit|6310931 +limited company|6310976 +limited edition|6311018 +limited liability|6311051 +limited review|6311122 +limited war|6311203 +limiter|6311236 +limiting|6311305 +limitless|6311454 +limitlessness|6311644 +limn|6311727 +limner|6311806 +limning|6311869 +limnobium|6311929 +limnocryptes|6312004 +limnocryptes minima|6312069 +limnodium spongia|6312145 +limnodromus|6312262 +limnodromus griseus|6312324 +limnodromus scolopaceus|6312392 +limnological|6312478 +limnologist|6312513 +limnology|6312569 +limnos|6312602 +limo|6312639 +limonene|6312700 +limonite|6312726 +limonium|6312753 +limosa|6312826 +limosa haemastica|6312873 +limousin|6312942 +limousine|6312983 +limp|6313044 +limpa|6313186 +limper|6313211 +limpet|6313260 +limpid|6313302 +limpidity|6313460 +limpidly|6313628 +limping|6313678 +limpkin|6313763 +limpness|6313812 +limpopo|6313861 +limulidae|6313908 +limulus|6313971 +limulus polyphemus|6314026 +lin|6314130 +linac|6314215 +linaceae|6314295 +linage|6314383 +linalool|6314450 +linanthus|6314495 +linanthus dianthiflorus|6314552 +linanthus dichotomus|6314650 +linaria|6314720 +linaria canadensis|6314779 +linaria vulgaris|6314930 +linchpin|6315034 +lincocin|6315123 +lincoln|6315188 +lincoln memorial|6315523 +lincoln steffens|6315584 +lincoln's birthday|6315460 +lincolnesque|6315671 +lincolnian|6315813 +lincolnshire|6315953 +lincomycin|6315995 +lind|6316051 +lindane|6316109 +lindbergh|6316152 +linden|6316295 +linden family|6316373 +linden tree|6316446 +lindera|6316503 +lindera benzoin|6316564 +lindesnes|6316689 +lindheimera|6316733 +lindheimera texana|6316804 +lindsay|6316869 +lindy|6316989 +lindy hop|6317029 +line|6317069 +line backer|6319223 +line block|6319386 +line coach|6319439 +line double|6319474 +line drawing|6319554 +line drive|6319614 +line duty|6319653 +line engraving|6319695 +line feed|6319773 +line function|6319811 +line item|6319853 +line judge|6319883 +line management|6319921 +line of battle|6319970 +line of business|6319999 +line of control|6320203 +line of credit|6320294 +line of defence|6320397 +line of defense|6320523 +line of descent|6320649 +line of destiny|6320866 +line of duty|6320959 +line of fate|6321012 +line of fire|6321105 +line of flight|6321148 +line of force|6321193 +line of gab|6321232 +line of heart|6321271 +line of inquiry|6321367 +line of latitude|6321466 +line of least resistance|6321536 +line of life|6321603 +line of longitude|6321684 +line of march|6321743 +line of merchandise|6321799 +line of poetry|6321920 +line of products|6321963 +line of questioning|6322084 +line of reasoning|6322183 +line of saturn|6322290 +line of scrimmage|6322398 +line of sight|6322445 +line of succession|6322488 +line of thought|6322521 +line of verse|6322598 +line of vision|6322641 +line of work|6322684 +line officer|6322744 +line one's pockets|6322787 +line organisation|6322836 +line organization|6322907 +line personnel|6322978 +line printer|6323018 +line roulette|6323088 +line score|6323139 +line single|6323167 +line spectrum|6323213 +line squall|6323245 +line storm|6323273 +line triple|6323321 +line up|6323395 +line worker|6323562 +line-at-a-time printer|6318756 +line-drive double|6318826 +line-drive single|6318906 +line-drive triple|6318952 +line-shooter|6319026 +line-shooting|6319115 +lineage|6323592 +lineal|6323941 +lineament|6324082 +linear|6324173 +linear a|6324390 +linear accelerator|6324444 +linear algebra|6324524 +linear b|6324556 +linear equation|6324609 +linear leaf|6324643 +linear measure|6324690 +linear operator|6324751 +linear perspective|6324785 +linear programming|6324850 +linear regression|6324911 +linear unit|6325040 +linearise|6325089 +linearity|6325137 +linearize|6325190 +lineation|6325238 +linebacker|6325302 +linebacker blitzing|6325385 +linecut|6325457 +lined|6325542 +lined snake|6325608 +linelike|6325677 +lineman|6325718 +linemen|6325852 +linen|6326030 +linen paper|6326135 +linendraper|6326168 +liner|6326196 +liner train|6326316 +linesman|6326373 +lineup|6326457 +ling|6326516 +ling ko|6326808 +ling-pao|6326754 +lingam|6326889 +lingberry|6326912 +lingcod|6327024 +lingenberry|6327111 +linger|6327223 +linger over|6327472 +lingerer|6327524 +lingerie|6327588 +lingering|6327683 +lingeringly|6327746 +lingo|6327779 +lingonberry|6327856 +lingua|6328027 +lingua franca|6328083 +lingual|6328160 +lingual artery|6328226 +lingual vein|6328305 +lingually|6328372 +lingualumina|6328405 +linguica|6328460 +linguine|6328491 +linguini|6328541 +linguist|6328591 +linguistic|6328724 +linguistic atlas|6328813 +linguistic communication|6328887 +linguistic context|6328944 +linguistic geography|6329005 +linguistic process|6329065 +linguistic profiling|6329148 +linguistic relation|6329193 +linguistic rule|6329231 +linguistic scientist|6329290 +linguistic string|6329354 +linguistic unit|6329450 +linguistically|6329527 +linguistics|6329560 +linguistics department|6329679 +lingulate|6329757 +lingvo kosmopolita|6329798 +liniment|6329865 +linin|6329914 +lining|6329944 +link|6330115 +link trainer|6330896 +link up|6330956 +link-attached station|6330708 +link-attached terminal|6330802 +linkage|6331100 +linkage editor|6331256 +linkage group|6331302 +linkboy|6331358 +linked|6331409 +linked genes|6331450 +linking verb|6331506 +linkman|6331551 +links|6331602 +linksman|6332116 +linkup|6332172 +linnaea|6332239 +linnaea borealis|6332298 +linnaea borealis americana|6332371 +linnaean|6332482 +linnaeus|6332553 +linnean|6332660 +linnet|6332730 +lino|6332828 +linocut|6332869 +linoleic acid|6332921 +linolenic acid|6332984 +linoleum|6333035 +linoleum cutter|6333076 +linoleum knife|6333122 +linolic acid|6333168 +linosyris vulgaris|6333231 +linotype|6333328 +linotype machine|6333392 +linseed|6333464 +linseed oil|6333498 +linsey-woolsey|6333536 +linstock|6333590 +lint|6333614 +lintel|6333677 +lintwhite|6333705 +linum|6333757 +linuron|6333802 +linus carl pauling|6333852 +linus pauling|6333929 +linux|6334001 +linz|6334061 +liomys|6334116 +liomys irroratus|6334165 +lion|6334242 +lion cub|6334982 +lion marmoset|6335020 +lion monkey|6335081 +lion's beard|6334586 +lion's foot|6334776 +lion's-ear|6334501 +lion-hunter|6334881 +lion-jaw forceps|6334948 +lionel barrymore|6335142 +lionel hampton|6335238 +lionel trilling|6335307 +lioness|6335373 +lionet|6335423 +lionfish|6335472 +lionhearted|6335517 +lionise|6335564 +lionize|6335637 +lions club|6335710 +liopelma|6335795 +liopelma hamiltoni|6335879 +liopelmidae|6335975 +liothyronine|6336081 +lip|6336138 +lip balm|6336574 +lip fern|6336628 +lip off|6336740 +lip reader|6336822 +lip rouge|6336854 +lip service|6336907 +lip sync|6336977 +lip synch|6337069 +lip synchronisation|6337161 +lip synchronization|6337253 +lip-gloss|6336338 +lip-read|6336382 +lip-sync|6336506 +lip-synch|6336540 +lipaemia|6337345 +liparidae|6337514 +liparididae|6337603 +liparis|6337694 +liparis liparis|6337777 +liparis loeselii|6337876 +lipase|6337967 +lipchitz|6337990 +lipectomy|6338074 +lipemia|6338162 +lipfern|6338331 +lipid|6338362 +lipid granulomatosis|6338667 +lipid-lowering medication|6338419 +lipid-lowering medicine|6338543 +lipidaemia|6338781 +lipide|6338950 +lipidemia|6339007 +lipidosis|6339176 +lipitor|6339214 +lipizzan|6339321 +lipless|6339400 +liplike|6339434 +lipmann|6339466 +lipo-hepin|6339523 +lipo-lutin|6339646 +lipochondrodystrophy|6339712 +lipogram|6339868 +lipoid|6339906 +lipoid granulomatosis|6339963 +lipoidaemia|6340077 +lipoidemia|6340246 +lipoma|6340415 +lipomatosis|6340467 +lipophilic|6340498 +lipoprotein|6340540 +liposarcoma|6340597 +liposcelis|6340626 +liposcelis divinatorius|6340690 +liposomal delivery vector|6340799 +liposome|6340874 +lipotropic|6340905 +lipotyphla|6340947 +lipped|6341011 +lippi|6341060 +lippizan|6341150 +lippizaner|6341229 +lippmann|6341310 +lipread|6341407 +lipreading|6341450 +lipscomb|6341489 +lipstick|6341549 +lipstick plant|6341647 +liquaemin|6341708 +liquefaction|6341830 +liquefiable|6341911 +liquefied|6341951 +liquefied petroleum gas|6342035 +liquefy|6342096 +liquescent|6342223 +liqueur|6342260 +liqueur glass|6342333 +liquid|6342377 +liquid air|6342821 +liquid assets|6342853 +liquid bleach|6342896 +liquid body substance|6342928 +liquid crystal|6343011 +liquid crystal display|6343042 +liquid detergent|6343115 +liquid diet|6343151 +liquid ecstasy|6343177 +liquid measure|6343294 +liquid metal reactor|6343450 +liquid nitrogen|6343504 +liquid oxygen|6343564 +liquid pred|6343616 +liquid soap|6343745 +liquid unit|6343771 +liquidambar|6343927 +liquidambar styraciflua|6343982 +liquidate|6344111 +liquidation|6344247 +liquidator|6344398 +liquidise|6344516 +liquidiser|6344581 +liquidity|6344626 +liquidity crisis|6344815 +liquidize|6344902 +liquidizer|6345107 +liquidness|6345152 +liquifiable|6345266 +liquified|6345306 +liquify|6345452 +liquor|6345554 +liquor licence|6345739 +liquor license|6345801 +liquor store|6345863 +liquorice|6345922 +lir|6346013 +lira|6346047 +liriodendron|6346180 +liriodendron tulipifera|6346256 +liriope|6346402 +liriope muscari|6346462 +lis pendens|6346539 +lisboa|6346594 +lisbon|6346666 +lise meitner|6346738 +lisinopril|6346799 +lisle|6346890 +lisp|6346949 +lisp compiler|6347148 +lisp program|6347212 +lisper|6347301 +lissom|6347362 +lissome|6347443 +lissomeness|6347524 +list|6347579 +list price|6347897 +list processing|6347944 +list system|6347985 +list-processing language|6347817 +listed|6348078 +listed security|6348155 +listen|6348201 +listen in|6348334 +listener|6348384 +listening|6348454 +listening watch|6348517 +lister|6348580 +lister plough|6348788 +lister plow|6348891 +listera|6348994 +listera convallarioides|6349063 +listera cordata|6349169 +listera ovata|6349253 +listeria|6349326 +listeria meningitis|6349381 +listeria monocytogenes|6349441 +listeriosis|6349522 +listing|6349582 +listless|6349670 +listlessness|6349737 +liston|6349841 +lisu|6349915 +liszt|6349942 +lit|6350005 +lit crit|6350197 +litany|6350249 +litas|6350301 +litchee|6350341 +litchi|6350417 +litchi chinensis|6350564 +litchi nut|6350661 +litchi tree|6350737 +lite|6350817 +liter|6350869 +literacy|6350945 +literal|6351019 +literal error|6351301 +literal interpretation|6351388 +literalise|6351435 +literalism|6351489 +literalize|6351612 +literally|6351666 +literalness|6351694 +literary|6351728 +literary agent|6351830 +literary argument|6351860 +literary composition|6351904 +literary critic|6351990 +literary criticism|6352022 +literary genre|6352133 +literary hack|6352200 +literary pirate|6352254 +literary review|6352335 +literary study|6352367 +literary work|6352442 +literate|6352528 +literate person|6352714 +literati|6352801 +literature|6352842 +lithane|6352997 +lithe|6353228 +litheness|6353309 +lithesome|6353364 +lithia water|6353445 +lithiasis|6353481 +lithic|6353510 +lithium|6353569 +lithium carbonate|6353628 +lithocarpus|6353851 +lithocarpus densiflorus|6353924 +lithocarpus glaber|6353998 +lithocarpus glabra|6354113 +lithodidae|6354228 +lithoglyptics|6354294 +lithograph|6354351 +lithograph machine|6354434 +lithographer|6354491 +lithographic|6354539 +lithography|6354594 +lithomancer|6354668 +lithomancy|6354697 +lithomantic|6354768 +lithonate|6354839 +lithophragma|6355072 +lithophragma affine|6355144 +lithophragma affinis|6355251 +lithophragma parviflorum|6355359 +lithophyte|6355454 +lithophytic|6355503 +lithophytic plant|6355534 +lithops|6355583 +lithospermum|6355688 +lithospermum canescens|6355754 +lithospermum caroliniense|6355858 +lithospermum officinale|6355949 +lithosphere|6356037 +lithotomy|6356074 +lithotomy position|6356135 +lithuania|6356189 +lithuanian|6356277 +lithuanian monetary unit|6356404 +lithuresis|6356477 +litigant|6356519 +litigate|6356553 +litigation|6356617 +litigator|6356697 +litigious|6356731 +litmus|6356847 +litmus paper|6356895 +litmus test|6356923 +litocranius|6357000 +litocranius walleri|6357064 +litoral|6357130 +litotes|6357210 +litre|6357268 +litter|6357344 +litter basket|6357746 +litter lout|6357878 +litter-basket|6357548 +litter-bearer|6357680 +litterateur|6357950 +litterbin|6357994 +litterbug|6358045 +littered|6358117 +litterer|6358152 +little|6358224 +little auk|6359223 +little barley|6359268 +little bear|6359315 +little bighorn|6359373 +little bighorn river|6359595 +little black ant|6359679 +little blue heron|6359742 +little brother|6359792 +little brown bat|6359838 +little brown myotis|6359934 +little by little|6360030 +little chief hare|6360119 +little club moss|6360203 +little clubmoss|6360308 +little dictionary|6360410 +little dipper|6360474 +little dog|6360527 +little ebony spleenwort|6360584 +little egret|6360675 +little finger|6360720 +little girl|6360763 +little golden zinnia|6360823 +little grebe|6360904 +little hand|6360961 +little horn|6360997 +little joe|6361072 +little john|6361202 +little league|6361286 +little leaguer|6361325 +little lord fauntleroy|6361376 +little missouri|6361457 +little missouri river|6361526 +little mo connolly|6361601 +little office|6361698 +little owl|6361742 +little phoebe|6361817 +little potato|6361935 +little red ricing hood|6362010 +little rhody|6362116 +little rock|6362194 +little sioux river|6362261 +little sister|6362314 +little skate|6362348 +little slam|6362390 +little sparrow|6362433 +little spotted skunk|6362547 +little terror|6362635 +little theater|6362737 +little theatre|6362798 +little toe|6362859 +little wabash|6362883 +little wabash river|6362946 +little-head snakeweed|6359015 +little-leaf fig|6359091 +little-league team|6359184 +littleneck|6363015 +littleneck clam|6363197 +littleness|6363374 +littler|6363409 +littlest|6364199 +littoral|6364996 +littoral zone|6365116 +littorina|6365196 +littorinidae|6365255 +littre|6365325 +liturgical|6365404 +liturgics|6365443 +liturgiology|6365493 +liturgist|6365543 +liturgy|6365572 +liv|6365735 +livable|6365771 +live|6365827 +live axle|6366607 +live birth|6366644 +live body|6366697 +live down|6366758 +live in|6366789 +live it up|6366821 +live load|6366861 +live oak|6366910 +live on|6366941 +live out|6367003 +live over|6367121 +live steam|6367168 +live up to|6367194 +live wire|6367257 +live with|6367331 +live-and-die|6366358 +live-bearer|6366468 +live-forever|6366541 +liveable|6367451 +liveborn|6367499 +liveborn infant|6367523 +livedo|6367592 +livelihood|6367683 +liveliness|6367760 +livelong|6367886 +lively|6367965 +liven|6368393 +liven up|6368493 +liveness|6368593 +liver|6368656 +liver cancer|6368890 +liver chestnut|6368956 +liver disease|6369001 +liver fluke|6369032 +liver pudding|6369102 +liver rot|6369158 +liver sausage|6369229 +liver spot|6369285 +liver-spotted dalmatian|6368824 +liveried|6369319 +liverish|6369346 +liverleaf|6369437 +livermore|6369487 +liverpool|6369554 +liverpudlian|6369617 +liverwort|6369720 +liverwurst|6369767 +livery|6369823 +livery company|6369999 +livery driver|6370031 +livery stable|6370127 +liveryman|6370175 +livestock|6370203 +livid|6370294 +lividity|6370417 +lividness|6370560 +living|6370678 +living accommodations|6371114 +living arrangement|6371184 +living death|6371257 +living granite|6371299 +living quarters|6371365 +living rock|6371437 +living room|6371539 +living space|6371697 +living stone|6371750 +living substance|6371923 +living thing|6371977 +living together|6372036 +living trust|6372110 +living wage|6372156 +living will|6372215 +living-room|6370956 +livingroom set|6372297 +livingroom suite|6372344 +livingston|6372391 +livingstone|6372473 +livingstone daisy|6372555 +livistona|6372620 +livistona australis|6372677 +livonia|6372767 +livonian|6372864 +livonian-speaking|6372929 +livy|6373002 +liza|6373060 +lizard|6373104 +lizard orchid|6373348 +lizard's-tail|6373156 +lizard's-tail family|6373254 +lizardfish|6373421 +ljubljana|6373495 +llama|6373541 +llano|6373606 +llano estacado|6373643 +llb|6373700 +lld|6373745 +llew llaw gyffes|6373793 +llm|6373849 +lloyd|6373892 +lloyd webber|6373990 +llud|6374086 +llullaillaco|6374118 +llyr|6374167 +lm|6374199 +lo/ovral|6374236 +loach|6374376 +load|6374408 +load down|6375036 +load factor|6375084 +load line|6375111 +load up|6375200 +load-bearing|6374949 +load-shedding|6374990 +loaded|6375256 +loaded down|6375632 +loader|6375738 +loading|6375896 +loading area|6376096 +loading dock|6376136 +loading zone|6376172 +loads|6376212 +loadstar|6376827 +loadstone|6376889 +loaf|6376949 +loaf of bread|6377282 +loaf sugar|6377341 +loafer|6377402 +loafing|6377477 +loam|6377521 +loamless|6377545 +loamy|6377572 +loan|6377593 +loan application|6377773 +loan approval|6377811 +loan collection|6377874 +loan office|6377914 +loan participation|6378003 +loan shark|6378079 +loan translation|6378146 +loan-blend|6377650 +loanblend|6378206 +loaner|6378248 +loaning|6378324 +loanword|6378370 +loasa|6378398 +loasa family|6378435 +loasaceae|6378507 +loath|6378589 +loathe|6378699 +loather|6378752 +loathing|6378786 +loathly|6378876 +loathsome|6379012 +loathsomeness|6379220 +lob|6379317 +lobachevsky|6379378 +lobar|6379455 +lobar pneumonia|6379479 +lobata|6379514 +lobate|6379563 +lobate foot|6379618 +lobated|6379651 +lobby|6379684 +lobbying expense|6379843 +lobbyist|6379900 +lobe|6379936 +lobe of the lung|6380084 +lobe-finned fish|6380024 +lobectomy|6380115 +lobed|6380176 +lobed leaf|6380207 +lobed spleenwort|6380248 +lobefin|6380308 +lobelia|6380368 +lobelia cardinalis|6380407 +lobelia dortmanna|6380490 +lobelia family|6380557 +lobelia inflata|6380645 +lobelia siphilitica|6380720 +lobeliaceae|6380812 +lobeliaceous|6380912 +lobipes|6380966 +lobipes lobatus|6381016 +loblolly|6381086 +loblolly pine|6381110 +lobotes|6381188 +lobotes pacificus|6381238 +lobotes surinamensis|6381313 +lobotidae|6381395 +lobotomy|6381453 +lobscouse|6381584 +lobscuse|6381624 +lobster|6381664 +lobster a la newburg|6381773 +lobster butter|6381856 +lobster newburg|6381893 +lobster plant|6381971 +lobster pot|6382097 +lobster stew|6382123 +lobster tail|6382150 +lobster tart|6382180 +lobster thermidor|6382207 +lobster-backed|6381725 +lobsterback|6382239 +lobsterman|6382276 +lobular|6382326 +lobularia|6382347 +lobularia maritima|6382414 +lobularity|6382495 +lobule|6382561 +lobworm|6382582 +local|6382663 +local anaesthesia|6382902 +local anaesthetic|6382969 +local anesthesia|6383116 +local anesthetic|6383183 +local area network|6383330 +local authority|6383379 +local call|6383468 +local department|6383519 +local government|6383598 +local option|6383654 +local oscillator|6383721 +local post office|6383780 +local road|6383842 +local street|6383882 +local time|6383922 +locale|6383972 +localisation|6384006 +localisation of function|6384216 +localisation principle|6384362 +localise|6384508 +localised|6384669 +localism|6384749 +locality|6384845 +localization|6384925 +localization of function|6385135 +localization principle|6385281 +localize|6385427 +localized|6385588 +locally|6385668 +locate|6385694 +located|6385840 +locater|6385885 +locating|6385919 +location|6386066 +locative|6386227 +locative role|6386290 +locator|6386353 +loch|6386387 +loch achray|6386426 +loch linnhe|6386464 +loch ness|6386502 +loch ness monster|6386536 +lochaber ax|6386607 +lochia|6386661 +lock|6386736 +lock away|6387355 +lock chamber|6387430 +lock in|6387467 +lock out|6387565 +lock ring|6387614 +lock up|6387742 +lock washer|6387842 +lock-gate|6387300 +lock-up option|6387324 +lockage|6387889 +lockbox|6387947 +lockdown|6388058 +locke|6388100 +locked|6388144 +locker|6388204 +locker room|6388346 +locker-room|6388321 +locket|6388372 +locking|6388393 +locking pliers|6388428 +lockjaw|6388481 +lockkeeper|6388516 +lockman|6388585 +lockmaster|6388654 +locknut|6388723 +lockout|6388755 +lockring|6388794 +locksmith|6388841 +lockstep|6388866 +lockstitch|6388987 +lockup|6389044 +loco|6389120 +loco disease|6389301 +locoism|6389346 +locomote|6389391 +locomotion|6389424 +locomotive|6389510 +locomotive engine|6389634 +locomotive engineer|6389721 +locomotor|6389812 +locomotor ataxia|6389862 +locoweed|6389917 +locule|6390093 +loculus|6390144 +locum|6390195 +locum tenens|6390285 +locus|6390375 +locus classicus|6390442 +locus niger|6390475 +locus of infection|6390544 +locust|6390587 +locust bean|6390672 +locust pod|6390762 +locust tree|6390852 +locusta|6390885 +locusta migratoria|6390940 +locustidae|6391011 +locution|6391104 +loddon pondweed|6391253 +lode|6391330 +lodestar|6391383 +lodestone|6391445 +lodge|6391505 +lodge in|6392009 +lodgement|6392110 +lodgepole|6392218 +lodgepole pine|6392315 +lodger|6392412 +lodging|6392457 +lodging house|6392634 +lodgings|6392691 +lodgment|6392957 +lodine|6393066 +lodz|6393171 +loeb|6393219 +loess|6393264 +loestrin|6393289 +loewe|6393429 +loewi|6393475 +lofortyx|6393545 +lofortyx californicus|6393598 +lofoten|6393674 +loft|6393711 +loft bombing|6393881 +loftiness|6393928 +lofty|6394037 +log|6394209 +log cabin|6394626 +log in|6394651 +log line|6394769 +log off|6394792 +log on|6394843 +log out|6394880 +log up|6394931 +log z's|6394978 +log-in|6394508 +logagraphia|6395041 +logan|6395129 +loganberry|6395176 +logania|6395305 +loganiaceae|6395375 +logarithm|6395460 +logarithmic|6395504 +logarithmic scale|6395545 +logbook|6395630 +loge|6395671 +logger|6395716 +loggerhead|6395767 +loggerhead shrike|6395976 +loggerhead turtle|6396030 +loggerheaded|6396109 +loggia|6396217 +logginess|6396250 +logging|6396306 +logic|6396328 +logic bomb|6396501 +logic diagram|6396550 +logic element|6396615 +logic gate|6396656 +logic operation|6396698 +logic programing|6396751 +logic programming|6396843 +logical|6397006 +logical argument|6397278 +logical diagram|6397385 +logical fallacy|6397450 +logical implication|6397496 +logical operation|6397575 +logical positivism|6397628 +logical positivist|6397715 +logical proof|6397766 +logical quantifier|6397795 +logical relation|6397839 +logical system|6397874 +logical thinking|6397943 +logical topology|6398048 +logicality|6398100 +logicalness|6398140 +logician|6398180 +logicism|6398217 +loginess|6398279 +logion|6398335 +logistic|6398378 +logistic assessment|6398433 +logistic assistance|6398492 +logistic support|6398546 +logistical|6398600 +logistician|6398655 +logistics|6398692 +logjam|6398738 +logo|6398809 +logogram|6398842 +logogrammatic|6398889 +logograph|6398942 +logographic|6398989 +logomach|6399042 +logomachist|6399107 +logomania|6399172 +logorrhea|6399225 +logos|6399278 +logotype|6399350 +logroll|6399383 +logrolling|6399409 +logwood|6399485 +logwood tree|6399603 +logy|6399709 +lohan|6399772 +loin|6399828 +loin of lamb|6399882 +loincloth|6399916 +loins|6399976 +loir|6400096 +loire|6400129 +loire river|6400168 +loire vally|6400213 +loiseleuria|6400258 +loiseleuria procumbens|6400331 +loiter|6400427 +loiterer|6400547 +loki|6400611 +lola montez|6400642 +loligo|6400745 +lolita|6400767 +lolium|6400825 +lolium multiflorum|6400891 +lolium perenne|6400986 +lolium temulentum|6401080 +loll|6401177 +loll around|6401376 +lolling|6401544 +lollipop|6401578 +lollipop lady|6401671 +lollipop woman|6401724 +lollop|6401777 +lolly|6401798 +lollygag|6401989 +lolo|6402109 +lolo-burmese|6402139 +loloish|6402222 +lomariopsidaceae|6402271 +lomatia|6402350 +lombard|6402392 +lombard street|6402436 +lombardia|6402482 +lombardy|6402535 +lombardy poplar|6402587 +lome|6402677 +loment|6402729 +lomogramma|6402757 +lomotil|6402816 +lomustine|6402874 +lonas|6402940 +lonas annua|6402993 +lonas inodora|6403077 +lonchocarpus|6403163 +london|6403235 +london plane|6403397 +londoner|6403479 +lone|6403521 +lone hand|6403723 +lone wolf|6403772 +lone-star state|6403658 +loneliness|6403821 +lonely|6403977 +loner|6404132 +lonesome|6404181 +lonesomeness|6404253 +long|6404329 +long ago|6407936 +long beach|6407974 +long beech fern|6408034 +long bone|6408179 +long division|6408216 +long dozen|6408248 +long fly|6408313 +long haul|6408350 +long horse|6408438 +long hundred|6408484 +long hundredweight|6408538 +long iron|6408601 +long island|6408625 +long island sound|6408665 +long johns|6408716 +long jump|6408773 +long measure|6408841 +long moss|6408902 +long pants|6409027 +long pepper|6409076 +long pillow|6409261 +long plane|6409297 +long run|6409396 +long saphenous vein|6409458 +long shot|6409536 +long since|6409626 +long sleeve|6409664 +long suit|6409696 +long time|6409848 +long tom|6409911 +long ton|6409936 +long trousers|6409985 +long underwear|6410034 +long wave|6410082 +long whist|6410143 +long-acting|6405207 +long-ago|6405233 +long-beard|6405255 +long-billed marsh wren|6405391 +long-clawed prawn|6405456 +long-dated|6405520 +long-distance|6405545 +long-distance call|6405641 +long-distance runner|6405725 +long-eared bat|6405801 +long-eared owl|6405857 +long-faced|6405932 +long-familiar|6405986 +long-fin tunny|6406029 +long-haired|6406090 +long-handled|6406125 +long-handled spade|6406152 +long-head coneflower|6406198 +long-headed|6406291 +long-horned beetle|6406357 +long-horned grasshopper|6406419 +long-lasting|6406483 +long-legged|6406537 +long-legs|6406582 +long-life|6406774 +long-lived|6406798 +long-neck clam|6406852 +long-play|6406980 +long-playing|6407017 +long-range|6407054 +long-run|6407091 +long-shanked|6407138 +long-snouted|6407183 +long-spurred violet|6407210 +long-staple|6407261 +long-sufferance|6407287 +long-suffering|6407337 +long-tailed porcupine|6407411 +long-tailed weasel|6407477 +long-term|6407544 +long-term memory|6407591 +long-wearing|6407640 +long-winded|6407682 +long-windedly|6407738 +long-windedness|6407786 +long-wool|6407864 +long-wooled|6407900 +longan|6410197 +longanberry|6410295 +longanimity|6410426 +longanimous|6410480 +longar palm|6410520 +longbeard|6410620 +longboat|6410675 +longbow|6410698 +longbowman|6410719 +longcase clock|6410753 +longed-for|6410810 +longer|6410860 +longest|6411801 +longevity|6412664 +longfellow|6412735 +longfin mako|6412798 +longhand|6412850 +longheaded thimbleweed|6412943 +longhorn|6413022 +longicorn|6413072 +longicorn beetle|6413134 +longing|6413196 +longingly|6413229 +longish|6413271 +longitude|6413293 +longitudinal|6413352 +longitudinally|6413427 +longleaf pine|6413490 +longlegs|6413586 +longness|6413697 +longroot|6413745 +longshoreman|6413814 +longshot|6413939 +longsighted|6413987 +longsightedness|6414132 +longstanding|6414219 +longtail weasel|6414246 +longtime|6414313 +longueur|6414335 +longways|6414374 +longways dance|6414526 +longwise|6414626 +longwool|6414689 +longyi|6414733 +lonicera|6414795 +lonicera albiflora|6414857 +lonicera canadensis|6414934 +lonicera caprifolium|6415036 +lonicera dioica|6415136 +lonicera flava|6415208 +lonicera hirsuta|6415278 +lonicera involucrata|6415351 +lonicera japonica|6415424 +lonicera japonica halliana|6415502 +lonicera morrowii|6415596 +lonicera periclymenum|6415674 +lonicera sempervirens|6415748 +lonicera tatarica|6415879 +lonicera xylosteum|6415975 +loniten|6416080 +lontar|6416148 +loo|6416248 +loofa|6416330 +loofah|6416384 +look|6416538 +look across|6417310 +look after|6417370 +look around|6417415 +look at|6417441 +look away|6417555 +look back|6417579 +look backward|6417662 +look for|6417700 +look forward|6417779 +look into|6417824 +look like|6418019 +look on|6418047 +look out|6418163 +look out on|6418212 +look out over|6418272 +look sharp|6418332 +look to|6418389 +look up|6418479 +look up to|6418519 +look upon|6418579 +look-alike|6417154 +look-over|6417260 +lookdown|6418682 +lookdown fish|6418814 +looked-for|6418946 +looker|6418982 +looker-on|6419161 +looking|6419229 +looking at|6419432 +looking for|6419484 +looking glass|6419533 +looking glass tree|6419569 +looking-glass plant|6419348 +lookout|6419653 +lookout man|6419909 +lookout station|6420013 +lookup|6420099 +loom|6420132 +loon|6420266 +looney|6420393 +loony|6420450 +loony bin|6420680 +loony toons|6420917 +loop|6421075 +loop gain|6421795 +loop knot|6421833 +loop topology|6421857 +loop-line|6421686 +loop-the-loop|6421733 +looped|6421911 +looper|6421942 +loophole|6421994 +looping|6422034 +loopy|6422069 +loos|6422250 +loose|6422379 +loose cannon|6423211 +loose end|6423286 +loose off|6423330 +loose sentence|6423382 +loose smut|6423423 +loose trousers|6423472 +loose woman|6423515 +loose-fitting|6423053 +loose-jointed|6423088 +loose-jowled|6423115 +loose-leaf lettuce|6423162 +looseleaf|6423614 +loosely|6423641 +loosely knit|6423706 +loosen|6423736 +loosen up|6423982 +loosened|6424215 +looseness|6424266 +looseness of the bowels|6424313 +loosening|6424373 +loosestrife|6424475 +loosestrife family|6424544 +loot|6424634 +looted|6424932 +looter|6424983 +looting|6425068 +lop|6425122 +lop off|6425235 +lop-eared|6425210 +lope|6425295 +lope de vega|6425366 +lope felix de vega carpio|6425453 +lophiidae|6425553 +lophius|6425611 +lophius americanus|6425661 +lophodytes|6425807 +lophodytes cucullatus|6425866 +lopholatilus|6425991 +lopholatilus chamaeleonticeps|6426056 +lophophora|6426166 +lophophora williamsii|6426240 +lophophorus|6426321 +lophosoria|6426383 +lophosoriaceae|6426442 +lopid|6426515 +lopped|6426594 +lopped off|6426629 +lopper|6426664 +lopressor|6426710 +lopsided|6426818 +lopsidedly|6426939 +lopsidedness|6426968 +loquacious|6427019 +loquaciously|6427086 +loquaciousness|6427139 +loquacity|6427229 +loquat|6427319 +loquat tree|6427442 +lorado taft|6427531 +loranthaceae|6427609 +loranthus|6427720 +loranthus europaeus|6427787 +lorazepam|6427862 +lorca|6427903 +lorchel|6427986 +lord|6428010 +lord britten of aldeburgh|6428721 +lord chancellor|6428874 +lord george gordon byron|6428953 +lord high chancellor|6429053 +lord it over|6429137 +lord macaulay|6429207 +lord nelson|6429326 +lord of misrule|6429433 +lord privy seal|6429506 +lord rayleigh|6429564 +lord's day|6428215 +lord's prayer|6428288 +lord's resistance army|6428332 +lord's supper|6428461 +lord's table|6428658 +lordless|6429661 +lordliness|6429703 +lordly|6429832 +lordolatry|6429939 +lordosis|6429996 +lordotic|6430043 +lords spiritual|6430176 +lords temporal|6430221 +lords-and-ladies|6430094 +lordship|6430280 +lore|6430375 +lorelei|6430451 +loren|6430482 +lorentz|6430540 +lorentz force|6430598 +lorenz|6430641 +lorenz hart|6430729 +lorenz milton hart|6430795 +lorenz oken|6430868 +lorenz okenfuss|6430960 +lorenzo de medici|6431056 +lorenzo dressing|6431190 +lorenzo the magnificent|6431257 +loretta young|6431397 +lorfan|6431448 +lorgnette|6431489 +lorica|6431544 +loricata|6431572 +loriinae|6431627 +lorikeet|6431685 +loris gracilis|6431708 +lorisidae|6431767 +lorn|6431827 +lorraine|6431879 +lorraine cross|6431931 +lorre|6431994 +lorry|6432087 +lory|6432146 +los alamos|6432167 +los angeles|6432203 +lose|6432313 +lose it|6432524 +lose one's temper|6432571 +lose weight|6432775 +loser|6432861 +losing streak|6432988 +losings|6433022 +loss|6433061 +loss leader|6433373 +loss of consciousness|6433422 +loss ratio|6433484 +losses|6433510 +lossless|6433894 +lossy|6433921 +lost|6433942 +lost cause|6434587 +lost tribes|6434652 +lost-and-found|6434533 +lot|6434726 +lot's wife|6435435 +lota|6435473 +lota lota|6435534 +lotario di segni|6435600 +loth|6435746 +lothario|6435857 +lothian region|6435916 +lothringen|6436004 +loti|6436058 +lotic|6436094 +lotion|6436115 +lots|6436206 +lotte|6436927 +lottery|6437054 +lottery winner|6437146 +lotto|6437190 +lotus|6437233 +lotus americanus|6437476 +lotus berthelotii|6437610 +lotus corniculatus|6437684 +lotus land|6437821 +lotus position|6437951 +lotus tetragonolobus|6438001 +lotus tree|6438099 +lotus-eater|6437421 +lotusland|6438145 +lou gehrig|6438194 +lou gehrig's disease|6438278 +louche|6438444 +loud|6438479 +loud noise|6438979 +loud pedal|6439030 +loud-hailer|6438829 +loud-mouthed|6438926 +loud-voiced|6438953 +louden|6439103 +loudly|6439163 +loudmouth|6439234 +loudness|6439322 +loudspeaker|6439469 +loudspeaker system|6439573 +loufah sponge|6439677 +lough|6439731 +louis|6439763 +louis agassiz|6439920 +louis antoine de bougainville|6440022 +louis aragon|6440124 +louis armstrong|6440180 +louis auchincloss|6440281 +louis b. mayer|6440378 +louis bleriot|6440487 +louis braille|6440568 +louis burt mayer|6440632 +louis charles alfred de musset|6440743 +louis comfort tiffany|6440857 +louis d'or|6440941 +louis d'outremer|6440966 +louis eugene felix neel|6441033 +louis henri sullivan|6441105 +louis henry sullivan|6441220 +louis i|6441335 +louis ii|6441391 +louis iii|6441485 +louis isadore kahn|6441529 +louis iv|6441600 +louis ix|6441659 +louis jacques mande daguerre|6441729 +louis joliet|6441835 +louis jolliet|6441919 +louis le begue|6442004 +louis le faineant|6442104 +louis le hutin|6442172 +louis leakey|6442255 +louis pasteur|6442381 +louis seymour bazett leakey|6442459 +louis stanton auchincloss|6442600 +louis sullivan|6442705 +louis the bruiser|6442814 +louis the far|6442917 +louis the german|6443016 +louis the great|6443118 +louis the pious|6443193 +louis the quarreller|6443257 +louis the stammerer|6443346 +louis the wideawake|6443451 +louis untermeyer|6443556 +louis v|6443624 +louis vi|6443682 +louis victor de broglie|6443776 +louis vii|6443870 +louis viii|6443914 +louis x|6443960 +louis xi|6444036 +louis xii|6444078 +louis xiii|6444122 +louis xiv|6444168 +louis xv|6444237 +louis xvi|6444279 +louis-hector berlioz|6439837 +louisa may alcott|6444323 +louise nevelson|6444384 +louisiana|6444474 +louisiana purchase|6444535 +louisianan|6444631 +louisianian|6444683 +louisville|6444736 +lounge|6444796 +lounge about|6444997 +lounge around|6445165 +lounge car|6445333 +lounge chair|6445399 +lounge lizard|6445459 +lounge suit|6445496 +lounger|6445556 +lounging|6445740 +lounging jacket|6445774 +lounging pajamas|6445821 +lounging pyjamas|6445893 +lounging robe|6445965 +loupe|6446023 +lour|6446100 +louse|6446232 +louse fly|6446422 +louse up|6446507 +lousiness|6446715 +lousy|6446758 +lout|6446879 +loutish|6446956 +louvar|6447029 +louver|6447089 +louvered|6447128 +louvered window|6447157 +louvre|6447198 +louvre museum|6447272 +lovable|6447323 +lovage|6447469 +lovastatin|6447541 +love|6447638 +love affair|6449088 +love apple|6449130 +love bite|6449216 +love child|6449251 +love feast|6449352 +love grass|6449452 +love handle|6449488 +love knot|6449552 +love letter|6449589 +love life|6449638 +love line|6449746 +love lyric|6449842 +love match|6449883 +love seat|6449938 +love song|6449997 +love story|6450112 +love tree|6450146 +love vine|6450230 +love-in-a-mist|6448155 +love-in-idleness|6448415 +love-in-winter|6448515 +love-lies-bleeding|6448628 +love-philter|6448713 +love-philtre|6448783 +love-potion|6448853 +love-song|6448923 +love-token|6449038 +loveable|6450273 +lovebird|6450411 +loved|6450594 +loved one|6450799 +lovelace|6450856 +loveless|6450905 +loveliness|6450947 +lovell|6451008 +lovelorn|6451117 +lovely|6451160 +lovemaking|6451275 +lover|6451383 +lover's knot|6451563 +loverlike|6451600 +loverly|6451634 +lovesick|6451668 +lovesickness|6451694 +lovesome|6451723 +loving|6451785 +loving cup|6452223 +loving-kindness|6452189 +lovingly|6452283 +lovingness|6452307 +lovoa|6452405 +lovoa klaineana|6452456 +low|6452517 +low archipelago|6456156 +low beam|6456249 +low blow|6456347 +low blueberry|6456412 +low brass|6456528 +low comedy|6456553 +low countries|6456580 +low density|6456689 +low explosive|6456743 +low frequency|6456776 +low gallberry holly|6456841 +low gear|6456876 +low german|6456935 +low latin|6457016 +low level flight|6457051 +low mass|6457106 +low pitch|6457138 +low pressure|6457177 +low quality|6457223 +low relief|6457280 +low spirits|6457391 +low st andrew's cross|6457423 +low status|6457514 +low sunday|6457550 +low temperature|6457600 +low tide|6457684 +low water|6457717 +low-backed|6453392 +low-beam|6453419 +low-birth-weight baby|6453448 +low-birth-weight infant|6453547 +low-budget|6453646 +low-bush blueberry|6453684 +low-cal|6453800 +low-calorie diet|6453852 +low-carbon steel|6453905 +low-ceilinged|6453964 +low-class|6453997 +low-cost|6454149 +low-cut|6454207 +low-density|6454268 +low-density lipoprotein|6454314 +low-down|6454380 +low-fat diet|6454524 +low-fat milk|6454551 +low-grade|6454578 +low-key|6454606 +low-keyed|6454652 +low-level|6454698 +low-level formatting|6454837 +low-level radioactive waste|6454943 +low-lying|6454998 +low-necked|6455046 +low-pitched|6455091 +low-powered|6455197 +low-pressure|6455233 +low-priced|6455282 +low-resolution|6455340 +low-rise|6455379 +low-salt diet|6455414 +low-set|6455473 +low-sodium diet|6455628 +low-spirited|6455687 +low-spiritedness|6455792 +low-sudsing|6455869 +low-tech|6455902 +low-tension|6455929 +low-toned|6455974 +low-voltage|6456002 +low-warp-loom|6456035 +low-water mark|6456067 +lowan|6457750 +lowball|6457856 +lowborn|6457926 +lowbred|6458067 +lowbrow|6458138 +lowbrowed|6458226 +lowbush cranberry|6458282 +lowbush penstemon|6458355 +lowell|6458444 +lowell jackson thomas|6458667 +lowell thomas|6458762 +lower|6458849 +lower berth|6460575 +lower bound|6460626 +lower california|6460667 +lower cannon|6460736 +lower carboniferous|6460774 +lower carboniferous period|6460907 +lower case|6461047 +lower class|6461142 +lower court|6461203 +lower criticism|6461265 +lower deck|6461308 +lower egypt|6461344 +lower jaw|6461446 +lower jawbone|6461554 +lower limit|6461662 +lower mantle|6461797 +lower oneself|6461825 +lower paleolithic|6461874 +lower peninsula|6461953 +lower rank|6462004 +lower respiratory infection|6462060 +lower respiratory tract|6462147 +lower respiratory tract smear|6462198 +lower saxony|6462302 +lower status|6462352 +lower-case letter|6459954 +lower-class|6460049 +lower-middle-class|6460363 +lower-normandy|6460404 +lower-ranking|6460473 +lowercase|6462408 +lowerclassman|6462481 +lowered|6462542 +lowering|6462572 +lowermost|6462698 +lowest|6462746 +lowest common multiple|6463502 +lowland|6463569 +lowland burrowing treefrog|6463651 +lowland fir|6463764 +lowland white fir|6463848 +lowlander|6463932 +lowlands|6463985 +lowlands of scotland|6464086 +lowlife|6464154 +lowly|6464291 +lowness|6464500 +lowry|6464533 +lowset|6464661 +lox|6464689 +loxapine|6464766 +loxia|6464952 +loxia curvirostra|6464996 +loxitane|6465057 +loxodonta|6465252 +loxodonta africana|6465310 +loxodrome|6465383 +loxoma|6465424 +loxomataceae|6465471 +loxostege|6465538 +loxostege similalis|6465599 +loya jirga|6465711 +loyal|6465748 +loyalist|6465976 +loyalist volunteer force|6466057 +loyalty|6466190 +loyang|6466293 +loyola|6466353 +lozal|6466495 +lozenge|6466561 +lozier|6466612 +lp|6466700 +lpn|6466783 +lsd|6466847 +ltd.|6467005 +ltm|6467052 +ltte|6467105 +lu|6467296 +luanda|6467369 +luba|6467430 +lubavitch|6467499 +lubavitch movement|6467612 +lubavitcher|6467712 +lubber|6467758 +lubber line|6468252 +lubber's hole|6467897 +lubber's line|6467925 +lubber's mark|6468034 +lubber's point|6468143 +lubberly|6468361 +lubbock|6468422 +lube|6468476 +lubeck|6468523 +lubitsch|6468575 +lublin|6468664 +lubricant|6468716 +lubricate|6468783 +lubricated|6468867 +lubricating oil|6468906 +lubricating substance|6468942 +lubricating system|6469009 +lubrication|6469143 +lubricator|6469217 +lubricious|6469284 +lubumbashi|6469359 +lucania|6469434 +lucanidae|6469485 +lucas|6469548 +luce|6469654 +lucent|6469764 +lucerne|6469818 +luchino visconti|6469880 +luciano pavarotti|6470017 +lucid|6470078 +lucidity|6470262 +lucidly|6470379 +lucifer|6470429 +luciferin|6470619 +lucifugal|6470653 +lucifugous|6470690 +lucilia|6470727 +lucille ball|6470782 +lucite|6470841 +lucius annaeus seneca|6470896 +lucius clay|6471021 +lucius cornelius sulla felix|6471101 +lucius domitius ahenobarbus|6471195 +lucius dubignon clay|6471334 +lucius licinius luculus|6471423 +lucius quinctius cincinnatus|6471509 +lucius tarquinius superbus|6471620 +luck|6471758 +luck into|6471895 +luck it|6471947 +luck out|6472051 +luck through|6472149 +luckily|6472253 +luckless|6472316 +lucknow|6472367 +lucky|6472483 +lucky dip|6472633 +lucky lindy|6472691 +lucrative|6472836 +lucre|6472891 +lucretia coffin mott|6473096 +lucretius|6473218 +lucrezia borgia|6473286 +lucubrate|6473377 +lucubration|6473491 +luculent|6473571 +lucullan|6473643 +luculus|6473691 +lucy|6473761 +lucy craft laney|6473807 +lucy in the sky with diamonds|6473875 +lucy maud montgomery|6474063 +lucy stone|6474156 +luda|6474259 +luddite|6474308 +ludi saeculares|6474430 +ludian|6474507 +ludicrous|6474544 +ludicrously|6474696 +ludo|6474754 +ludwig boltzmann|6474779 +ludwig josef johan wittgenstein|6474842 +ludwig mies van der rohe|6474960 +ludwig van beethoven|6475056 +ludwig wittgenstein|6475140 +lufengpithecus|6475246 +luff|6475319 +luffa|6475390 +luffa acutangula|6475509 +luffa cylindrica|6475634 +lufkin|6475760 +luftwaffe|6475788 +lug|6475853 +lug wrench|6476124 +luganda|6476159 +luge|6476207 +luger|6476268 +luggage|6476346 +luggage carousel|6476376 +luggage carrier|6476497 +luggage carrousel|6476530 +luggage compartment|6476651 +luggage rack|6476715 +luggage van|6476755 +lugger|6476825 +lugh|6476846 +luging|6476882 +lugosi|6476910 +lugsail|6477007 +lugubrious|6477046 +lugubriousness|6477076 +lugworm|6477126 +luigi barnaba gregorio chiaramonti|6477207 +luigi cherubini|6477385 +luigi galvani|6477481 +luigi pirandello|6477539 +luik|6477623 +luis bunuel|6477677 +luis de gongora y argote|6477731 +lukasiewicz notation|6477803 +luke|6477912 +lukewarm|6478056 +lukewarmly|6478119 +lukewarmness|6478146 +lule burgas|6478248 +lull|6478318 +lullaby|6478659 +lulli|6478731 +lulling|6478806 +lully|6478853 +lulu|6478979 +luluabourg|6479090 +lumbago|6479158 +lumbar|6479196 +lumbar artery|6479221 +lumbar nerve|6479298 +lumbar pain|6479349 +lumbar plexus|6479387 +lumbar puncture|6479474 +lumbar vein|6479535 +lumbar vertebra|6479600 +lumber|6479634 +lumber jacket|6479778 +lumber room|6479819 +lumbering|6479871 +lumberjack|6479938 +lumberman|6480047 +lumbermill|6480128 +lumberyard|6480201 +lumbosacral plexus|6480236 +lumbus|6480277 +lumen|6480308 +luminal|6480379 +luminance|6480476 +luminance unit|6480571 +luminary|6480606 +luminesce|6480695 +luminescence|6480728 +luminescent|6480868 +luminism|6480895 +luminosity|6480944 +luminous|6481039 +luminous energy|6481093 +luminous flux|6481133 +luminous flux unit|6481169 +luminous intensity unit|6481208 +luminousness|6481269 +lumma|6481364 +lummox|6481402 +lump|6481479 +lump sugar|6481758 +lump sum|6481798 +lumpectomy|6481824 +lumpen|6481886 +lumpenus|6481928 +lumpenus lumpretaeformis|6481981 +lumper|6482064 +lumpfish|6482229 +lumpish|6482295 +lumpsucker|6482337 +lumpy|6482385 +lumpy jaw|6482431 +luna|6482492 +luna moth|6482523 +lunacy|6482579 +lunar|6482706 +lunar calendar|6482730 +lunar caustic|6482763 +lunar crater|6482801 +lunar day|6482830 +lunar eclipse|6482853 +lunar excursion module|6482896 +lunar latitude|6482988 +lunar module|6483017 +lunar month|6483109 +lunar time period|6483164 +lunar year|6483230 +lunaria|6483255 +lunaria annua|6483316 +lunate|6483431 +lunate bone|6483490 +lunatic|6483567 +lunatic fringe|6483738 +lunation|6483777 +lunch|6483832 +lunch meat|6483912 +lunch meeting|6483956 +lunch period|6484017 +luncheon|6484058 +luncheon meat|6484110 +luncheon meeting|6484154 +luncheon voucher|6484215 +luncher|6484268 +lunching|6484298 +lunchroom|6484331 +lunchtime|6484387 +lund|6484428 +lunda|6484476 +lunda cirrhata|6484520 +lunette|6484580 +lung|6484646 +lung cancer|6484704 +lung-power|6484678 +lunge|6484735 +lungen|6484808 +lunger|6484906 +lungfish|6484984 +lungi|6485012 +lungless salamander|6485074 +lungyi|6485125 +lunisolar|6485187 +lunisolar calendar|6485220 +lunitidal interval|6485257 +lunkhead|6485308 +lunt|6485451 +lunula|6485525 +lunule|6485611 +luo|6485656 +luoyang|6485698 +lupin|6485759 +lupine|6485808 +lupinus|6485876 +lupinus albus|6485933 +lupinus arboreus|6486035 +lupinus luteus|6486101 +lupinus perennis|6486167 +lupinus subcarnosus|6486286 +lupinus texensis|6486391 +lupus|6486464 +lupus erythematosus|6486581 +lupus vulgaris|6486658 +lurch|6486709 +lurcher|6487118 +lurching|6487157 +lure|6487213 +lurid|6487392 +luridness|6487485 +lurk|6487691 +lurker|6487903 +lurking|6487942 +lurking place|6488039 +lusaka|6488075 +lusatian|6488133 +luschka's tonsil|6488218 +luscinia|6488374 +luscinia luscinia|6488427 +luscinia megarhynchos|6488498 +luscious|6488570 +lusciously|6488700 +lusciousness|6488745 +lush|6488839 +lushness|6489051 +lushun|6489114 +lusitania|6489183 +lusitanian|6489284 +lust|6489414 +lust after|6489585 +lust for learning|6489628 +luster|6489708 +lusterless|6489879 +lusterlessness|6489982 +lusterware|6490062 +lustful|6490099 +lustfulness|6490214 +lustiness|6490302 +lustrate|6490351 +lustre|6490391 +lustreless|6490562 +lustrelessness|6490665 +lustrous|6490745 +lustrum|6490872 +lusty|6490939 +lusus naturae|6491020 +luta|6491101 +lutanist|6491150 +lute|6491216 +luteal|6491273 +luteal phase|6491329 +lutecium|6491379 +lutefisk|6491449 +lutein|6491480 +luteinizing hormone|6491530 +lutenist|6491675 +luteotropin|6491741 +lutetium|6491870 +lutfisk|6491940 +luther|6491971 +luther burbank|6492054 +lutheran|6492126 +lutheran church|6492271 +lutheranism|6492336 +luthier|6492383 +luting|6492439 +lutist|6492477 +lutjanidae|6492543 +lutjanus|6492604 +lutjanus analis|6492657 +lutjanus apodus|6492732 +lutjanus blackfordi|6492794 +lutjanus griseus|6492863 +lutra|6492944 +lutra canadensis|6492990 +lutra lutra|6493051 +lutrinae|6493105 +lutyens|6493165 +lutzen|6493254 +luvaridae|6493309 +luvarus|6493367 +luvarus imperialis|6493417 +luvian|6493496 +luwian|6493555 +lux|6493614 +luxate|6493648 +luxation|6493699 +luxe|6493736 +luxembourg|6493780 +luxembourg city|6494099 +luxembourg franc|6494217 +luxembourg-ville|6493980 +luxembourger|6494266 +luxembourgian|6494322 +luxemburg|6494391 +luxemburger|6494590 +luxor|6494731 +luxuria|6494790 +luxuriance|6494834 +luxuriant|6494897 +luxuriate|6494979 +luxurious|6495164 +luxuriously|6495288 +luxuriousness|6495320 +luxury|6495392 +luxury liner|6495591 +luyia|6495652 +luzon|6495696 +lv|6495724 +lvi|6495759 +lvii|6495794 +lviii|6495832 +lw|6495871 +lwei|6495940 +lx|6495976 +lxi|6496079 +lxii|6496114 +lxiii|6496150 +lxiv|6496189 +lxv|6496226 +lxvi|6496262 +lxvii|6496298 +lxviii|6496337 +lxx|6496377 +lxxi|6496446 +lxxii|6496484 +lxxiii|6496523 +lxxiv|6496565 +lxxv|6496605 +lxxvi|6496644 +lxxvii|6496683 +lxxviii|6496725 +lxxx|6496768 +lxxxi|6496857 +lxxxii|6496895 +lxxxiii|6496934 +lxxxiv|6496976 +lxxxv|6497016 +lxxxvi|6497055 +lxxxvii|6497094 +lxxxviii|6497136 +lyallpur|6497179 +lycaena|6497246 +lycaena hypophlaeas|6497301 +lycaenid|6497373 +lycaenid butterfly|6497420 +lycaenidae|6497467 +lycaeon|6497533 +lycanthrope|6497585 +lycanthropy|6497658 +lycaon pictus|6497709 +lycee|6497802 +lyceum|6497872 +lychee|6497954 +lychgate|6498030 +lychins chalcedonica|6498062 +lychins floscuculi|6498160 +lychnis|6498271 +lychnis alba|6498304 +lychnis coronaria|6498439 +lychnis dioica|6498559 +lychnis flos-cuculi|6498663 +lycia|6498775 +lycian|6498868 +lycium|6498920 +lycium barbarum|6498976 +lycium carolinianum|6499109 +lycium halimifolium|6499200 +lycopene|6499337 +lycoperdaceae|6499366 +lycoperdales|6499438 +lycoperdon|6499505 +lycopersicon|6499566 +lycopersicon esculentum|6499672 +lycopersicon esculentum cerasiforme|6499782 +lycopersicum|6499932 +lycophyta|6500038 +lycopod|6500076 +lycopodiaceae|6500123 +lycopodiales|6500209 +lycopodiate|6500275 +lycopodineae|6500358 +lycopodium|6500418 +lycopodium alopecuroides|6500477 +lycopodium alpinum|6500578 +lycopodium clavitum|6500669 +lycopodium complanatum|6500759 +lycopodium lucidulum|6500869 +lycopodium obscurum|6500965 +lycopodium selago|6501081 +lycopsida|6501201 +lycopus|6501282 +lycopus americanus|6501341 +lycopus europaeus|6501426 +lycopus virginicus|6501513 +lycosa|6501592 +lycosa tarentula|6501644 +lycosidae|6501745 +lydia|6501808 +lydia kamekeha paki liliuokalani|6501901 +lydian|6502024 +lye|6502076 +lye hominy|6502097 +lygaeid|6502124 +lygaeid bug|6502198 +lygaeidae|6502272 +lyginopteridales|6502335 +lyginopteris|6502451 +lygodium|6502522 +lygodium microphyllum|6502575 +lygodium palmatum|6502698 +lygus|6502785 +lygus bug|6502834 +lygus lineolaris|6502876 +lying|6502949 +lying in wait|6503164 +lying under oath|6503255 +lying-in|6503052 +lyly|6503386 +lyman frank brown|6503429 +lymantria|6503504 +lymantria dispar|6503565 +lymantriid|6503654 +lymantriidae|6503692 +lyme arthritis|6503764 +lyme disease|6503842 +lyme grass|6503918 +lymph|6503944 +lymph cell|6504018 +lymph gland|6504139 +lymph node|6504209 +lymph vessel|6504279 +lymphadenitis|6504353 +lymphadenoma|6504403 +lymphadenopathy|6504433 +lymphangiectasia|6504468 +lymphangiectasis|6504527 +lymphangiogram|6504586 +lymphangiography|6504620 +lymphangioma|6504671 +lymphangitis|6504701 +lymphatic|6504750 +lymphatic system|6504827 +lymphatic tissue|6504889 +lymphatic vessel|6504945 +lymphedema|6505019 +lymphoblast|6505067 +lymphoblastic leukemia|6505110 +lymphocyte|6505163 +lymphocytic|6505284 +lymphocytic choriomeningitis|6505394 +lymphocytic leukemia|6505449 +lymphocytopenia|6505528 +lymphocytosis|6505594 +lymphogranuloma venereum|6505646 +lymphography|6505813 +lymphoid|6505864 +lymphoid tissue|6505940 +lymphokine|6505996 +lymphoma|6506025 +lymphopathia venereum|6506079 +lymphopenia|6506246 +lymphopoiesis|6506312 +lymphuria|6506370 +lympphocytic choriomeningitis virus|6506397 +lynch|6506453 +lynch law|6506473 +lynch mob|6506509 +lynchburg|6506544 +lynching|6506602 +lynchpin|6506645 +lyndon baines johnson|6506734 +lyndon johnson|6506938 +lynn fontanne|6507135 +lynx|6507189 +lynx canadensis|6507321 +lynx caracal|6507389 +lynx lynx|6507459 +lynx pardina|6507515 +lynx rufus|6507578 +lynx-eyed|6507221 +lyon|6507640 +lyonia|6507694 +lyonia ligustrina|6507752 +lyonia lucida|6507861 +lyonia mariana|6507945 +lyonnais|6508020 +lyonnaise|6508119 +lyonnaise sauce|6508145 +lyons|6508210 +lyophilisation|6508312 +lyophilise|6508427 +lyophilised|6508469 +lyophilization|6508525 +lyophilize|6508640 +lyophilized|6508682 +lypressin|6508738 +lyra|6508821 +lyrate|6508854 +lyrate leaf|6508890 +lyre|6508923 +lyre snake|6509113 +lyre-flower|6508942 +lyrebird|6509157 +lyreflower|6509202 +lyric|6509292 +lyric poem|6509504 +lyrical|6509546 +lyricality|6509612 +lyricism|6509676 +lyricist|6509780 +lyrurus|6509812 +lyrurus mlokosiewiczi|6509862 +lyrurus tetrix|6509947 +lysander|6510031 +lysenko|6510079 +lysergic acid|6510141 +lysergic acid diethylamide|6510169 +lysichiton|6510323 +lysichiton americanum|6510429 +lysichitum|6510530 +lysiloma|6510636 +lysiloma bahamensis|6510696 +lysiloma latisiliqua|6510785 +lysiloma sabicu|6510875 +lysimachia|6510934 +lysimachia ciliatum|6511013 +lysimachia clethroides duby|6511094 +lysimachia nemorum|6511193 +lysimachia nummularia|6511269 +lysimachia quadrifolia|6511376 +lysimachia terrestris|6511463 +lysimachia vulgaris|6511542 +lysimachus|6511641 +lysin|6511704 +lysine|6511736 +lysine intolerance|6511773 +lysinemia|6511820 +lysippus|6511866 +lysis|6511933 +lysogenic|6512018 +lysogenicity|6512079 +lysogenisation|6512120 +lysogenization|6512194 +lysogenize|6512268 +lysogeny|6512298 +lysol|6512339 +lysosome|6512381 +lysozyme|6512420 +lyssa|6512456 +lyssavirus|6512524 +lythraceae|6512557 +lythrum|6512658 +lythrum hyssopifolia|6512728 +lythrum salicaria|6512821 +lytton|6512916 +lytton strachey|6513020 +m|6513103 +m-1|6513391 +m-1 rifle|6513489 +m. j. schleiden|6513570 +m.m.|6513665 +m1|6513784 +m2|6513812 +m3|6513840 +ma|6513868 +ma'am|6514105 +maalox|6514167 +maar|6514243 +maarianhamina|6514280 +mac|6514337 +macabre|6514396 +macaca|6514451 +macaca irus|6514500 +macaca mulatta|6514573 +macaca radiata|6514641 +macaca sylvana|6514745 +macadam|6514804 +macadamia|6514876 +macadamia integrifolia|6514919 +macadamia nut|6514999 +macadamia nut tree|6515105 +macadamia ternifolia|6515193 +macadamia tetraphylla|6515302 +macadamia tree|6515395 +macadamise|6515438 +macadamize|6515489 +macamba|6515540 +macao|6515616 +macao monetary unit|6515654 +macaque|6515717 +macaroni|6515762 +macaroni and cheese|6515877 +macaroni salad|6515911 +macaroni wheat|6515947 +macaronic|6516044 +macaroon|6516105 +macarthur|6516144 +macau|6516212 +macaulay|6516250 +macaw|6516364 +macbeth|6516386 +macdowell|6516429 +mace|6516484 +macebearer|6516614 +macedoine|6516666 +macedon|6516690 +macedonia|6516808 +macedonian|6516987 +macedonian war|6517154 +macer|6517205 +macerate|6517257 +maceration|6517360 +macerative|6517445 +macgregor|6517474 +mach|6517567 +mach number|6517619 +machaeranthera|6517658 +machaeranthera bigelovii|6517738 +machaeranthera tanacetifolia|6517833 +machaeranthera tortifoloia|6517953 +machete|6518052 +machiavelli|6518089 +machiavellian|6518186 +machiavellianism|6518276 +machicolate|6518329 +machicolation|6518380 +machilid|6518422 +machilidae|6518489 +machinate|6518555 +machination|6518674 +machinator|6518726 +machine|6518819 +machine bolt|6519734 +machine code|6519761 +machine gun|6519819 +machine gunner|6519875 +machine language|6519976 +machine operation|6520153 +machine pistol|6520209 +machine politician|6520257 +machine readable|6520358 +machine readable dictionary|6520420 +machine rifle|6520500 +machine screw|6520579 +machine shop|6520608 +machine stitch|6520644 +machine tool|6520697 +machine translation|6520727 +machine wash|6520812 +machine-accessible|6519163 +machine-controlled|6519209 +machine-displayable text|6519272 +machine-driven|6519322 +machine-made|6519385 +machine-oriented language|6519420 +machine-readable text|6519558 +machine-wash|6519605 +machinelike|6520941 +machinery|6521007 +machinist|6521055 +machinist's vise|6521136 +machismo|6521196 +machmeter|6521226 +macho|6521273 +macho-man|6521304 +machupo virus|6521350 +macintosh|6521398 +mack|6521505 +mack sennett|6521564 +mackenzie|6521654 +mackenzie river|6521766 +mackerel|6521823 +mackerel scad|6521888 +mackerel shad|6521952 +mackerel shark|6522016 +mackerel sky|6522046 +mackinac bridge|6522072 +mackinaw|6522131 +mackinaw blanket|6522269 +mackinaw boat|6522335 +mackinaw coat|6522386 +mackintosh|6522437 +mackle|6522543 +macleaya|6522579 +macleaya cordata|6522643 +macleish|6522713 +macleod|6522764 +maclura|6522842 +maclura pomifera|6522912 +macon|6523014 +maconnais|6523091 +macoun|6523126 +macowanites|6523158 +macowanites americanus|6523222 +macrame|6523284 +macrencephalic|6523318 +macrencephalous|6523399 +macrencephaly|6523480 +macro|6523545 +macro instruction|6523634 +macrobiotic|6523710 +macrobiotic diet|6523740 +macrobiotics|6523780 +macrocephalic|6523812 +macrocephalon|6523891 +macrocephalon maleo|6523959 +macrocephalous|6524070 +macrocephaly|6524149 +macrocheira|6524239 +macrocheira kaempferi|6524306 +macroclemys|6524382 +macroclemys temmincki|6524447 +macrocosm|6524560 +macrocosmic|6524635 +macrocyte|6524670 +macrocytic anaemia|6524731 +macrocytic anemia|6524792 +macrocytosis|6524853 +macrodactylus|6524885 +macrodactylus subspinosus|6524958 +macrodantin|6525059 +macroeconomic|6525152 +macroeconomic expert|6525219 +macroeconomics|6525290 +macroeconomist|6525359 +macroevolution|6525430 +macroglia|6525487 +macroglossia|6525531 +macromolecular|6525646 +macromolecule|6525695 +macron|6525758 +macronectes|6525801 +macronectes giganteus|6525863 +macrophage|6525949 +macropodidae|6525994 +macropus|6526063 +macropus agiles|6526118 +macropus giganteus|6526197 +macrorhamphosidae|6526288 +macroscopic|6526370 +macroscopic anatomy|6526440 +macroscopical|6526507 +macrosporangium|6526565 +macrospore|6526637 +macrothelypteris|6526673 +macrotis|6526750 +macrotis lagotis|6526805 +macrotus|6526904 +macrotus californicus|6526972 +macrotyloma|6527062 +macrotyloma uniflorum|6527131 +macrouridae|6527266 +macrozamia|6527359 +macrozamia communis|6527385 +macrozamia spiralis|6527450 +macrozoarces|6527515 +macrozoarces americanus|6527580 +macruridae|6527661 +macula|6527753 +macula lutea|6527920 +macular area|6527986 +macular degeneration|6528052 +maculate|6528106 +maculation|6528290 +macule|6528400 +macumba|6528466 +macushla|6528551 +mad|6528619 +mad anthony wayne|6529047 +mad apple|6529133 +mad cow disease|6529292 +mad-dog skullcap|6528819 +mad-dog weed|6528933 +madagascan|6529367 +madagascar|6529454 +madagascar cat|6529582 +madagascar franc|6529657 +madagascar jasmine|6529706 +madagascar pepper|6529798 +madagascar periwinkle|6529927 +madagascar plum|6530117 +madake|6530239 +madam|6530317 +madame|6530415 +madame curie|6530465 +madame de maintenon|6530543 +madame de stael|6530673 +madame tussaud|6530788 +madcap|6530882 +madden|6531036 +maddened|6531120 +maddening|6531179 +madder|6531242 +madder family|6531316 +madderwort|6531387 +made|6531451 +made use of|6531804 +made-to-order|6531506 +made-up|6531669 +madeira|6531844 +madeira cake|6531919 +madeira islands|6531981 +madeira river|6532029 +madeira sponge|6532080 +madeira winter cherry|6532144 +mademoiselle|6532262 +madhouse|6532332 +madia|6532569 +madia elegans|6532622 +madia oil|6532710 +madia oil plant|6532747 +madia sativa|6532814 +madison|6532894 +madly|6533082 +madman|6533166 +madnep|6533234 +madness|6533293 +madonna|6533429 +madonna lily|6533599 +madonna louise ciccone|6533694 +madoqua|6533793 +madras|6533845 +madrasa|6533982 +madrasah|6534025 +madreporaria|6534068 +madrepore|6534135 +madrid|6534190 +madrigal|6534263 +madrigalist|6534302 +madrilene|6534359 +madriporian coral|6534387 +madrona|6534442 +madrono|6534503 +madwoman|6534564 +madwort|6534604 +mae west|6534656 +maeandra|6534768 +maelstrom|6534829 +maenad|6534880 +maestro|6534941 +maeterlinck|6534988 +mafa|6535068 +maffia|6535107 +mafia|6535312 +mafioso|6535517 +mag|6535589 +mag tape|6535642 +magadhan|6535708 +magazine|6535764 +magazine article|6536098 +magazine publisher|6536132 +magazine rack|6536231 +magdalen|6536265 +magdalena|6536299 +magdalena river|6536350 +magellan|6536407 +magellanic cloud|6536480 +magen david|6536551 +magenta|6536666 +maggot|6536769 +maggoty|6536790 +magh|6536822 +magha|6536868 +maghreb|6536915 +magi|6537020 +magic|6537186 +magic bullet|6537385 +magic eye|6537428 +magic lantern|6537553 +magic marker|6537592 +magic mushroom|6537669 +magic number|6537735 +magic realism|6537771 +magic spell|6537800 +magic square|6537946 +magic trick|6537982 +magical|6538086 +magical ability|6538166 +magical power|6538213 +magically|6538260 +magician|6538293 +magicicada|6538430 +magicicada septendecim|6538494 +maginot|6538603 +maginot line|6538683 +magisterial|6538741 +magisterially|6538908 +magistracy|6538996 +magistrate|6539084 +magistrature|6539158 +maglev|6539246 +magma|6539310 +magna carta|6539336 +magna charta|6539414 +magna cum laude|6539493 +magna mater|6539525 +magnanimity|6539617 +magnanimous|6539705 +magnanimousness|6539771 +magnate|6539843 +magnesia|6539963 +magnesite|6540015 +magnesium|6540042 +magnesium bicarbonate|6540104 +magnesium hydroxide|6540166 +magnesium nitride|6540248 +magnesium oxide|6540283 +magnesium sulfate|6540335 +magnet|6540379 +magnetic|6540482 +magnetic attraction|6540657 +magnetic bottle|6540739 +magnetic bubble memory|6540774 +magnetic compass|6540847 +magnetic core|6540881 +magnetic declination|6540909 +magnetic dip|6540974 +magnetic dipole|6541052 +magnetic dipole moment|6541084 +magnetic disc|6541130 +magnetic disk|6541206 +magnetic equator|6541282 +magnetic field|6541326 +magnetic field strength|6541402 +magnetic flux|6541526 +magnetic flux density|6541637 +magnetic flux unit|6541761 +magnetic force|6541813 +magnetic head|6541895 +magnetic inclination|6541932 +magnetic induction|6542010 +magnetic ink|6542216 +magnetic intensity|6542242 +magnetic iron-ore|6542366 +magnetic levitation|6542412 +magnetic line of force|6542476 +magnetic medium|6542533 +magnetic meridian|6542634 +magnetic mine|6542698 +magnetic moment|6542747 +magnetic monopole|6542806 +magnetic needle|6542842 +magnetic north|6542874 +magnetic pole|6542928 +magnetic pyrites|6543003 +magnetic recorder|6543059 +magnetic resonance|6543133 +magnetic resonance imaging|6543171 +magnetic storage|6543230 +magnetic storage medium|6543331 +magnetic storm|6543432 +magnetic stripe|6543481 +magnetic tape|6543534 +magnetic variation|6543600 +magnetics|6543665 +magnetisation|6543725 +magnetise|6543912 +magnetised|6544038 +magnetism|6544090 +magnetite|6544220 +magnetization|6544266 +magnetize|6544453 +magnetized|6544579 +magneto|6544631 +magnetoelectric machine|6544682 +magnetohydrodynamics|6544733 +magnetometer|6544791 +magnetomotive force|6544830 +magnetomotive force unit|6544865 +magneton|6544924 +magnetosphere|6544967 +magnetron|6545024 +magnificat|6545130 +magnification|6545170 +magnificence|6545353 +magnificent|6545476 +magnificently|6545536 +magnificio|6545620 +magnified|6545686 +magnifier|6545736 +magnify|6545777 +magnifying glass|6545928 +magniloquence|6546000 +magniloquent|6546082 +magniloquently|6546134 +magnitude|6546173 +magnitude relation|6546251 +magnolia|6546310 +magnolia acuminata|6546374 +magnolia family|6546444 +magnolia fraseri|6546525 +magnolia grandiflora|6546601 +magnolia macrophylla|6546732 +magnolia soulangiana|6546866 +magnolia state|6546959 +magnolia stellata|6547028 +magnolia tripetala|6547096 +magnolia virginiana|6547201 +magnoliaceae|6547292 +magnoliid dicot family|6547386 +magnoliid dicot genus|6547451 +magnoliidae|6547513 +magnoliophyta|6547590 +magnoliopsid|6547719 +magnoliopsid family|6547793 +magnoliopsid genus|6547842 +magnoliopsida|6547888 +magnum|6548019 +magnum opus|6548047 +magnus hitch|6548080 +magpie|6548116 +magritte|6548275 +maguey|6548324 +magus|6548454 +magyar|6548541 +magyarorszag|6548643 +mah-jongg|6548739 +maha|6548787 +mahabharata|6548820 +mahabharatam|6548939 +mahabharatum|6549059 +mahagua|6549179 +mahalia jackson|6549321 +mahan|6549406 +maharaja|6549487 +maharajah|6549522 +maharanee|6549557 +maharani|6549594 +maharashtra|6549631 +mahatma|6549736 +mahatma gandhi|6549758 +mahayana|6549867 +mahayana buddhism|6549946 +mahayanist|6550009 +mahernia verticillata|6550058 +mahgrib|6550167 +mahican|6550272 +mahimahi|6550390 +mahjong|6550494 +mahler|6550532 +mahlstick|6550612 +mahoe|6550647 +mahogany|6550791 +mahogany family|6550840 +mahogany tree|6550911 +mahomet|6550948 +mahonia|6551016 +mahonia aquifolium|6551077 +mahonia nervosa|6551215 +mahound|6551280 +mahout|6551348 +mahratta|6551371 +mahratti|6551413 +mahuang|6551477 +maia|6551527 +maianthemum|6551589 +maianthemum bifolium|6551661 +maianthemum canadense|6551754 +maid|6551849 +maid of honor|6551986 +maiden|6552065 +maiden aunt|6552208 +maiden blue-eyed mary|6552247 +maiden name|6552344 +maiden over|6552404 +maiden pink|6552437 +maidenhair|6552494 +maidenhair berry|6552535 +maidenhair fern|6552621 +maidenhair spleenwort|6552662 +maidenhair tree|6552726 +maidenhead|6552798 +maidenhood|6552865 +maidenlike|6552913 +maidenliness|6552951 +maidenly|6552995 +maidhood|6553033 +maidism|6553081 +maidservant|6553205 +maidu|6553283 +maiduguri|6553343 +maieutic method|6553417 +maiger|6553494 +maigre|6553555 +maikoa|6553616 +mail|6553693 +mail boat|6554180 +mail call|6554313 +mail car|6554342 +mail carrier|6554397 +mail clerk|6554493 +mail fraud|6554532 +mail order|6554558 +mail out|6554599 +mail pouch|6554631 +mail service|6554665 +mail slot|6554740 +mail train|6554764 +mail-clad|6554077 +mail-order buying|6554120 +mailbag|6554805 +mailboat|6554858 +mailbox|6554910 +maildrop|6554977 +mailed|6555000 +mailer|6555043 +mailing|6555240 +mailing address|6555378 +mailing list|6555411 +mailing-card|6555320 +maillol|6555446 +maillot|6555528 +mailman|6555633 +mailsorter|6555729 +maim|6555756 +maimed|6555783 +maimer|6555862 +maimonides|6555949 +main|6556032 +main clause|6556261 +main course|6556308 +main deck|6556359 +main diagonal|6556395 +main drag|6556446 +main entry word|6556489 +main file|6556575 +main line|6556620 +main office|6556660 +main road|6556754 +main rotor|6556792 +main street|6556818 +main yard|6556882 +main-topmast|6556183 +main-topsail|6556213 +maine|6556906 +maine lobster|6556961 +mainer|6557127 +mainframe|6557171 +mainframe computer|6557344 +mainland|6557399 +mainland china|6557469 +mainline|6557598 +mainly|6557623 +mainmast|6557680 +mainsail|6557703 +mainsheet|6557747 +mainspring|6557803 +mainstay|6557830 +mainstream|6557983 +mainstreamed|6558011 +maintain|6558044 +maintainable|6558375 +maintained|6558419 +maintainer|6558530 +maintenance|6558623 +maintenance man|6558861 +maintenance staff|6558953 +maintenon|6559000 +maiolica|6559120 +maisonette|6559159 +maisonnette|6559231 +maitland|6559302 +maitre d'|6559381 +maitre d'hotel|6559477 +maitreya|6559573 +maize|6559624 +maja|6559737 +maja squinado|6559799 +majagua|6559879 +majestic|6560021 +majesty|6560136 +majidae|6560213 +majolica|6560270 +major|6560309 +major affective disorder|6560957 +major axis|6561127 +major depressive episode|6561152 +major diatonic scale|6561237 +major form class|6561297 +major key|6561360 +major league|6561403 +major leaguer|6561461 +major lobe|6561523 +major mode|6561548 +major power|6561591 +major premise|6561717 +major premiss|6561781 +major scale|6561845 +major suit|6561905 +major surgery|6561930 +major term|6562026 +major tranquilizer|6562051 +major tranquilliser|6562319 +major tranquillizer|6562587 +major-domo|6560759 +major-general|6560806 +major-league club|6560845 +major-league team|6560901 +majorana|6562855 +majorana hortensis|6562917 +majorca|6563023 +majority|6563055 +majority leader|6563173 +majority operation|6563209 +majority opinion|6563257 +majority rule|6563324 +majors|6563420 +majuscule|6563758 +mak|6563921 +makaira|6564030 +makaira albida|6564080 +makaira marlina|6564149 +makaira mazara|6564220 +makaira mitsukurii|6564289 +makaira nigricans|6564368 +makalu|6564442 +makataimeshekiakiak|6564479 +make|6564578 +make a face|6566985 +make a motion|6567055 +make a point|6567106 +make as if|6567147 +make believe|6567181 +make bold|6567235 +make clean|6567276 +make do|6567322 +make for|6567397 +make full|6567449 +make fun|6567501 +make good|6567591 +make grow|6567623 +make happy|6567670 +make hay|6567770 +make headway|6567801 +make it|6567873 +make love|6568137 +make merry|6568380 +make noise|6568480 +make out|6568523 +make over|6569076 +make pass|6569180 +make peace|6569204 +make possible|6569269 +make pure|6569312 +make relaxed|6569398 +make sense|6569465 +make sure|6569495 +make unnecessary|6569536 +make up|6569611 +make up one's mind|6570013 +make vibrant sounds|6570058 +make water|6570109 +make way|6570277 +make whoopie|6570300 +make-believe|6566540 +make-peace|6566709 +make-up|6566831 +make-work|6566952 +makedonija|6570400 +makeover|6570521 +maker|6570578 +makeready|6570818 +makeshift|6570858 +makeup|6570947 +makeweight|6571054 +makin|6571118 +making|6571178 +making known|6571225 +making love|6571268 +making water|6571376 +makings|6571447 +mako|6571580 +mako shark|6571620 +makomako|6571660 +maksim gorky|6571763 +maksutov telescope|6571891 +maktab al-khidmat|6571969 +mal de la rosa|6572092 +mal de mer|6572216 +mal rosso|6572284 +mala|6572408 +malabar kino|6572492 +malabo|6572564 +malabsorption|6572604 +malabsorption syndrome|6572651 +malacanthidae|6572692 +malacca|6572762 +malacca cane|6572809 +malachi|6572844 +malachias|6572933 +malachite|6573024 +malacia|6573051 +malaclemys|6573078 +malaclemys centrata|6573140 +malaconotinae|6573219 +malacopterygian|6573292 +malacopterygii|6573365 +malacosoma|6573443 +malacosoma americana|6573507 +malacosoma disstria|6573585 +malacostraca|6573753 +malacostracan crustacean|6573832 +malacothamnus|6573877 +malacothamnus fasciculatus|6573956 +maladaptive|6574067 +maladjusted|6574139 +maladjustive|6574252 +maladjustment|6574286 +maladroit|6574330 +maladroitness|6574512 +malady|6574603 +malaga|6574711 +malagasy republic|6574768 +malahini|6574878 +malaise|6574905 +malamud|6574969 +malamute|6575024 +malanga|6575088 +malaprop|6575189 +malapropism|6575232 +malapropos|6575275 +malar bone|6575364 +malaria|6575448 +malaria mosquito|6575485 +malaria parasite|6575538 +malarial|6575602 +malarial mosquito|6575639 +malathion|6575692 +malathion poisoning|6575747 +malawi|6575796 +malawi kwacha|6575879 +malawian|6575946 +malawian monetary unit|6576027 +malaxis|6576096 +malaxis ophioglossoides|6576278 +malaxis-unifolia|6576165 +malay|6576398 +malay archipelago|6576514 +malay peninsula|6576594 +malaya|6576645 +malayalam|6576704 +malayan|6576749 +malayan tapir|6576879 +malayo-polynesian|6576951 +malaysia|6577090 +malaysia militant group|6577151 +malaysian|6577360 +malaysian capital|6577525 +malaysian monetary unit|6577620 +malaysian mujahidin group|6577691 +malcolm little|6577902 +malcolm lowry|6578031 +malcolm stock|6578111 +malcolm x|6578161 +malcolmia|6578285 +malcolmia maritima|6578352 +malcontent|6578437 +maldivan|6578577 +maldive islands|6578628 +maldives|6578685 +maldivian|6578791 +maldon|6578843 +male|6578898 +male aristocrat|6579258 +male berry|6579315 +male body|6579487 +male bonding|6579615 +male chauvinism|6579645 +male chauvinist|6579701 +male chest|6579746 +male child|6579786 +male erecticle dysfunction|6579827 +male fern|6579931 +male genital organ|6580000 +male genitalia|6580134 +male genitals|6580268 +male horse|6580402 +male hypogonadism|6580427 +male internal reproductive organ|6580480 +male monarch|6580551 +male offspring|6580609 +male orchis|6580670 +male orgasm|6580733 +male parent|6580789 +male person|6580833 +male plug|6580912 +male reproductive gland|6580954 +male reproductive system|6581016 +male sibling|6581085 +male-patterned baldness|6579204 +maleate|6581115 +maleberry|6581173 +malebranche|6581264 +malecite|6581332 +maledict|6581446 +malediction|6581651 +malefactor|6581714 +malefic|6581781 +maleficence|6581832 +maleficent|6581917 +maleic acid|6582023 +malemute|6582049 +maleness|6582113 +maleo|6582164 +maleseet|6582255 +malevich|6582332 +malevolence|6582414 +malevolency|6582497 +malevolent|6582551 +malevolent program|6582747 +malfeasance|6582829 +malfeasant|6582900 +malformation|6582939 +malformed|6583023 +malfunction|6583092 +malfunctioning|6583203 +malheur wire lettuce|6583322 +mali|6583406 +mali franc|6583486 +malian|6583523 +malice|6583598 +malice aforethought|6583720 +malicious|6583789 +malicious gossip|6583977 +malicious mischief|6584043 +maliciousness|6584226 +malign|6584303 +malignance|6584586 +malignancy|6584667 +malignant|6584748 +malignant anaemia|6584812 +malignant anemia|6584908 +malignant hepatoma|6585004 +malignant hypertension|6585092 +malignant hyperthermia|6585157 +malignant melanoma|6585244 +malignant neoplasm|6585293 +malignant neoplastic disease|6585398 +malignant neuroma|6585495 +malignant pustule|6585543 +malignant tumor|6585596 +maligned|6585701 +maligner|6585734 +malignity|6585847 +malignment|6585933 +malik|6586023 +malinger|6586045 +malingerer|6586104 +malingering|6586156 +malinois|6586209 +malinowski|6586261 +mall|6586356 +mallard|6586523 +mallarme|6586564 +malleability|6586614 +malleable|6586665 +mallee|6586769 +mallee fowl|6586821 +mallee hen|6586927 +mallet|6586988 +malleus|6587059 +mallon|6587100 +mallophaga|6587171 +mallotus|6587232 +mallow|6587285 +mallow family|6587312 +malmo|6587385 +malmsey|6587440 +malnourish|6587465 +malnourished|6587508 +malnourishment|6587619 +malnutrition|6587678 +malocclusion|6587719 +malodor|6587756 +malodorous|6587880 +malodorousness|6588097 +malodour|6588198 +malodourous|6588322 +malone|6588528 +malonylurea|6588612 +malope|6588654 +malope trifida|6588692 +malopterurus|6588745 +malopterurus electricus|6588810 +malory|6588905 +malosma|6588974 +malosma laurina|6589044 +malpighi|6589122 +malpighia|6589179 +malpighia glabra|6589242 +malpighia obovata|6589381 +malpighiaceae|6589470 +malpighian body|6589547 +malpighian corpuscle|6589617 +malpighian layer|6589687 +malposed|6589772 +malposed tooth|6589798 +malposition|6589828 +malpractice|6589888 +malpractice insurance|6590016 +malraux|6590057 +mals|6590110 +malt|6590179 +malt liquor|6590372 +malt sugar|6590415 +malt whiskey|6590456 +malt whisky|6590541 +malta|6590626 +malta fever|6590704 +malted|6590830 +malted milk|6590890 +maltese|6590976 +maltese cat|6591065 +maltese cross|6591150 +maltese dog|6591254 +maltese lira|6591307 +maltese monetary unit|6591369 +maltha|6591436 +malthus|6591472 +malthusian|6591560 +malthusian theory|6591667 +malthusianism|6591742 +maltman|6591813 +malto|6591852 +maltose|6591912 +maltreat|6591953 +maltreated|6592028 +maltreater|6592148 +maltreatment|6592194 +maltster|6592259 +malus|6592298 +malus angustifolia|6592349 +malus baccata|6592474 +malus coronaria|6592613 +malus fusca|6592719 +malus ioensis|6592802 +malus pumila|6592929 +malus sylvestris|6593000 +malva|6593085 +malva moschata|6593140 +malva neglecta|6593207 +malva sylvestris|6593267 +malvaceae|6593361 +malvales|6593444 +malvasia|6593498 +malvastrum|6593573 +malvastrum coccineum|6593643 +malvaviscus|6593773 +malversate|6593846 +malversation|6593915 +malvina hoffman|6593987 +mam|6594076 +mama|6594141 +mama's boy|6594249 +mamba|6594302 +mamet|6594337 +mamey|6594391 +mamilla|6594506 +mamillary body|6594581 +mamma|6594655 +mamma's boy|6594784 +mammal|6594837 +mammal family|6594873 +mammal genus|6594903 +mammal semnopithecus|6594931 +mammalia|6595021 +mammalian|6595069 +mammalogy|6595093 +mammary|6595139 +mammary gland|6595181 +mammea|6595236 +mammea americana|6595294 +mammee|6595386 +mammee apple|6595610 +mammee tree|6595718 +mammilla|6595793 +mammillaria|6595868 +mammillaria plumosa|6595896 +mammillary body|6595965 +mammogram|6596039 +mammography|6596109 +mammon|6596172 +mammoth|6596256 +mammoth cave national park|6596304 +mammothermography|6596381 +mammut|6596421 +mammut americanum|6596485 +mammuthus|6596586 +mammuthus columbi|6596644 +mammuthus primigenius|6596715 +mammutidae|6596808 +mammy|6596892 +mamo|6597003 +mamoncillo|6597052 +man|6597175 +man and wife|6598915 +man friday|6598980 +man hour|6599074 +man in the street|6599123 +man jack|6599213 +man of action|6599284 +man of affairs|6599338 +man of deeds|6599399 +man of letters|6599453 +man of means|6599486 +man of science|6599561 +man of the cloth|6599648 +man of the world|6599710 +man's body|6597765 +man-about-town|6597822 +man-at-arms|6597890 +man-child|6597919 +man-eater|6597980 +man-eating shark|6598148 +man-made|6598252 +man-made fiber|6598312 +man-of-the-earth|6598364 +man-of-war|6598542 +man-of-war bird|6598662 +man-on-a-horse|6598721 +man-portable|6598775 +man-sized|6598806 +man-to-man|6598859 +manacle|6599763 +manage|6599892 +manageability|6600242 +manageable|6600319 +manageableness|6600501 +managed economy|6600578 +management|6600622 +management consultant|6600761 +management consulting|6600819 +management control|6600867 +management personnel|6600912 +manager|6600958 +manageress|6601060 +managerial|6601115 +managership|6601149 +managing director|6601225 +managing editor|6601298 +managua|6601346 +manakin|6601428 +manama|6601585 +manannan|6601644 +manat|6601684 +manatee|6601754 +manawydan|6601823 +manawyddan|6601876 +manchester|6601930 +manchester terrier|6602037 +manchu|6602125 +manchu dynasty|6602275 +manchuria|6602369 +manchurian|6602470 +mancunian|6602572 +manda|6602661 +mandaean|6602706 +mandaeanism|6602862 +mandala|6602917 +mandalay|6602956 +mandamus|6603012 +mandara|6603066 +mandarin|6603111 +mandarin chinese|6603392 +mandarin dialect|6603485 +mandarin duck|6603578 +mandarin orange|6603623 +mandarin orange tree|6603765 +mandatary|6603857 +mandate|6603905 +mandator|6604220 +mandatorily|6604248 +mandatory|6604294 +mandatory injunction|6604444 +mande|6604529 +mandean|6604562 +mandeanism|6604717 +mandela|6604771 +mandelamine|6604888 +mandelbrot|6604983 +mandelbrot set|6605046 +mandelshtam|6605089 +mandelstam|6605180 +mandevilla|6605270 +mandevilla boliviensis|6605377 +mandevilla laxa|6605478 +mandible|6605541 +mandibula|6605649 +mandibular|6605757 +mandibular bone|6605807 +mandibular condyle|6605915 +mandibular fossa|6605986 +mandibular gland|6606036 +mandibular joint|6606173 +mandibular notch|6606305 +mandibulate|6606349 +mandibulofacial|6606385 +mandioc|6606428 +mandioca|6606547 +mandola|6606666 +mandolin|6606692 +mandragora|6606722 +mandragora officinarum|6606790 +mandrake|6606891 +mandrake root|6606995 +mandrel|6607032 +mandril|6607092 +mandrill|6607152 +mandrillus|6607195 +mandrillus leucophaeus|6607256 +mandrillus sphinx|6607324 +manduca|6607385 +manduca quinquemaculata|6607440 +manduca sexta|6607625 +manducate|6607781 +manduction|6607831 +mane|6607954 +maned sheep|6607998 +maned wolf|6608080 +manes|6608138 +manet|6608214 +maneuver|6608257 +maneuverability|6608698 +maneuverable|6608748 +maneuverer|6608790 +manfred eigen|6608847 +manful|6608898 +manfully|6609014 +manfulness|6609037 +mangabey|6609088 +manganate|6609134 +manganese|6609158 +manganese bronze|6609220 +manganese steel|6609308 +manganese tetroxide|6609372 +manganic acid|6609428 +manganite|6609456 +mange|6609483 +mangel-wurzel|6609513 +manger|6609634 +mangey|6609667 +mangifera|6609694 +mangifera indica|6609770 +manginess|6609841 +mangle|6609892 +mangled|6610075 +mangler|6610149 +manglietia|6610236 +mango|6610307 +mango tree|6610381 +mangold|6610435 +mangold-wurzel|6610535 +mangonel|6610635 +mangosteen|6610760 +mangosteen tree|6610847 +mangrove|6610914 +mangrove family|6610984 +mangrove snapper|6611079 +mangy|6611143 +manhandle|6611170 +manhattan|6611201 +manhattan clam chowder|6611254 +manhattan island|6611322 +manhattan project|6611372 +manhole|6611490 +manhole cover|6611512 +manhood|6611545 +manhunt|6611668 +mania|6611705 +maniac|6611863 +maniacal|6611954 +manic|6611986 +manic depression|6612272 +manic depressive illness|6612452 +manic disorder|6612632 +manic-depressive|6612015 +manic-depressive psychosis|6612092 +manichaean|6612747 +manichaeanism|6612973 +manichaeism|6613054 +manichean|6613133 +manichee|6613268 +maniclike|6613402 +manicotti|6613428 +manicure|6613470 +manicure set|6613563 +manicurist|6613589 +manidae|6613632 +manifest|6613686 +manifest destiny|6613937 +manifestation|6613975 +manifestly|6614191 +manifesto|6614264 +manifold|6614310 +manifold paper|6614492 +manihot|6614531 +manihot dulcis|6614588 +manihot esculenta|6614656 +manihot utilissima|6614793 +manikin|6614931 +manila|6615112 +manila bay|6615227 +manila bean|6615271 +manila grass|6615383 +manila hemp|6615463 +manila maguey|6615578 +manila paper|6615633 +manila tamarind|6615690 +manilkara|6615775 +manilkara bidentata|6615851 +manilkara zapota|6615944 +manilla|6616037 +manilla hemp|6616094 +manilla paper|6616152 +manioc|6616209 +manioca|6616400 +manipulability|6616461 +manipulable|6616494 +manipulate|6616636 +manipulation|6616863 +manipulative|6616930 +manipulative electronic deception|6616959 +manipulator|6617057 +manipur|6617180 +maniraptor|6617220 +maniraptora|6617288 +manis|6617355 +manitoba|6617401 +mankato|6617446 +mankind|6617476 +manky|6617568 +manlike|6617593 +manliness|6617732 +manly|6617783 +mann|6617921 +manna|6618009 +manna ash|6618083 +manna from heaven|6618144 +manna grass|6618301 +manna gum|6618359 +manna lichen|6618435 +manned|6618466 +mannequin|6618489 +manner|6618628 +manner name|6618786 +manner of speaking|6618821 +manner of walking|6618888 +mannered|6618945 +mannerism|6618982 +mannerly|6619168 +manners|6619207 +mannheim|6619451 +mannikin|6619507 +mannish|6619686 +mannitol|6619730 +manoeuver|6619791 +manoeuvrability|6619974 +manoeuvrable|6620024 +manoeuvre|6620066 +manoeuvrer|6620500 +manometer|6620557 +manor|6620605 +manor hall|6620722 +manor house|6620752 +manorial|6620822 +manpad|6620882 +manpower|6620932 +manque|6620997 +manroot|6621032 +mansard|6621169 +mansard roof|6621223 +mansart|6621263 +manse|6621324 +manservant|6621399 +mansfield|6621436 +mansi|6621550 +mansion|6621617 +mansion house|6621750 +manslaughter|6621808 +manslayer|6621839 +manson|6621931 +manta|6622008 +manta birostris|6622068 +manta ray|6622150 +mantegna|6622189 +manteidae|6622249 +mantel|6622337 +mantelet|6622403 +mantell|6622465 +mantelpiece|6622524 +manteodea|6622590 +mantic|6622651 +mantichora|6622733 +manticora|6622817 +manticore|6622901 +mantid|6622985 +mantidae|6623029 +mantiger|6623116 +mantilla|6623200 +mantinea|6623252 +mantineia|6623304 +mantis|6623357 +mantis crab|6623401 +mantis prawn|6623469 +mantis religioso|6623525 +mantis shrimp|6623612 +mantispid|6623680 +mantispidae|6623743 +mantissa|6623812 +mantle|6623856 +mantled|6624250 +mantled ground squirrel|6624306 +mantlepiece|6624393 +mantlet|6624459 +mantophasmatodea|6624493 +mantoux test|6624572 +mantra|6624644 +mantrap|6624761 +mantua|6624884 +manual|6624905 +manual alphabet|6625104 +manual dexterity|6625154 +manual labor|6625247 +manual laborer|6625301 +manual labour|6625382 +manual of arms|6625436 +manubrium|6625519 +manuel de falla|6625546 +manuel rodriquez patriotic front|6625623 +manufactory|6625772 +manufacture|6625855 +manufactured|6626096 +manufactured home|6626131 +manufacturer|6626230 +manufacturing business|6626388 +manufacturing plant|6626517 +manul|6626600 +manumission|6626648 +manumit|6626696 +manumitter|6626742 +manure|6626784 +manus|6626884 +manuscript|6626923 +manx|6627015 +manx cat|6627073 +manx shearwater|6627152 +many|6627222 +many a|6627583 +many an|6627625 +many another|6627667 +many more|6627709 +many-sided|6627315 +manzanilla|6627733 +manzanita|6627771 +manzoni|6627850 +mao|6627908 +mao jacket|6628050 +mao tsetung|6628088 +mao zedong|6628202 +maoi|6628315 +maoism|6628397 +maoist|6628430 +maori|6628514 +maori hen|6628598 +map|6628636 +map collection|6628937 +map maker|6629034 +map out|6629077 +map projection|6629127 +map-reader|6628910 +mapinguari|6629162 +maple|6629193 +maple family|6629559 +maple sugar|6629641 +maple syrup|6629692 +maple syrup urine disease|6629725 +maple-leaf|6629270 +maple-leaf begonia|6629306 +maple-leaved bayur|6629376 +maple-like|6629441 +maplelike|6629986 +mapmaking|6630024 +mapper|6630082 +mapping|6630112 +maputo|6630223 +maquiladora|6630285 +maquis|6630321 +maquisard|6630430 +mar|6630505 +mara|6630665 +marabou|6630753 +marabou stork|6630853 +marabout|6630924 +maraca|6630995 +maracaibo|6631095 +maracan language|6631158 +maracay|6631284 +maraco|6631338 +marang|6631490 +marang tree|6631573 +maranta|6631636 +maranta arundinaceae|6631675 +marantaceae|6631779 +marasca|6631880 +marasca cherry|6632010 +maraschino|6632127 +maraschino cherry|6632219 +marasmius|6632385 +marasmius oreades|6632443 +marasmus|6632515 +marat|6632546 +maratha|6632632 +marathi|6632673 +marathon|6632736 +marathon runner|6632883 +marathoner|6632959 +marattia|6633035 +marattia salicina|6633088 +marattiaceae|6633150 +marattiales|6633217 +maraud|6633280 +marauder|6633352 +marauding|6633434 +maravilla|6633481 +marble|6633636 +marble bones disease|6633898 +marble cake|6634131 +marble-wood|6633705 +marbled|6634157 +marbleisation|6634206 +marbleise|6634275 +marbleised|6634319 +marbleising|6634368 +marbleization|6634437 +marbleize|6634506 +marbleized|6634550 +marbleizing|6634599 +marbles|6634668 +marblewood|6634791 +marbling|6634904 +marburg disease|6634933 +marburg hemorrhagic fever|6635111 +marburg virus|6635299 +marc|6635346 +marc blitzstein|6635367 +marc chagall|6635449 +marceau|6635500 +marcel|6635581 +marcel duchamp|6635636 +marcel lajos breuer|6635706 +marcel marceau|6635781 +marcel proust|6635869 +marcello malpighi|6635922 +march|6635988 +march 17|6636604 +march 19|6636672 +march 2|6636741 +march 25|6636793 +march equinox|6636871 +march on|6636946 +march out|6637027 +marchand de vin|6637068 +marchantia|6637119 +marchantia polymorpha|6637178 +marchantiaceae|6637250 +marchantiales|6637323 +marche|6637392 +marched upon|6637438 +marcher|6637464 +marches|6637610 +marching|6637694 +marching music|6637731 +marching order|6637807 +marching orders|6637849 +marchioness|6637973 +marchland|6638053 +marchpane|6638154 +marciano|6638188 +marcionism|6638268 +marco polo|6638358 +marco polo sheep|6638498 +marco polo's sheep|6638413 +marconi|6638581 +marconi rig|6638644 +marcus annius verus|6638728 +marcus antonius|6638868 +marcus aurelius|6638979 +marcus aurelius antoninus|6639115 +marcus cocceius nerva|6639261 +marcus junius brutus|6639350 +marcus terentius varro|6639440 +marcus tullius cicero|6639534 +marcus ulpius traianus|6639690 +marcus vipsanius agrippa|6639782 +marcus whitman|6639881 +marcuse|6639939 +mardi gras|6639992 +marduk|6640108 +mare|6640181 +mare clausum|6640377 +mare liberum|6640408 +mare nostrum|6640439 +mare's nest|6640254 +mare's tail|6640336 +marengo|6640493 +marfan's syndrome|6640533 +margaret court|6640633 +margaret higgins sanger|6640692 +margaret hilda thatcher|6640778 +margaret mead|6640914 +margaret mitchell|6640971 +margaret munnerlyn mitchell|6641067 +margaret sanger|6641173 +margaret thatcher|6641251 +margarete gertrud zelle|6641381 +margaric acid|6641469 +margarin|6641532 +margarine|6641642 +margarita|6641708 +margasivsa|6641736 +margate|6641794 +margay|6641832 +margay cat|6641879 +marge|6641926 +margin|6641992 +margin account|6642319 +margin call|6642361 +margin of error|6642394 +margin of profit|6642456 +margin of safety|6642515 +marginal|6642577 +marginal cost|6642740 +marginal placentation|6642824 +marginal utility|6642889 +marginal wood fern|6642923 +marginalisation|6643044 +marginalise|6643100 +marginality|6643142 +marginalization|6643189 +marginalize|6643245 +marginocephalia|6643287 +marginocephalian|6643383 +margosa|6643463 +margrave|6643554 +marguerite|6643617 +marguerite daisy|6643846 +marguerite radclyffe hall|6643964 +mari|6644059 +maria|6644144 +maria callas|6644218 +maria luigi carlo zenobio cherubini|6644313 +maria magdalene von losch|6644429 +maria meneghini callas|6644560 +maria mitchell|6644665 +maria montesorri|6644746 +maria tallchief|6644819 +mariachi|6644897 +marian|6644924 +marian anderson|6644974 +mariana islands|6645034 +marianas|6645112 +marianne craig moore|6645183 +marianne moore|6645260 +maricopa|6645331 +marie anne charlotte corday d'armont|6645545 +marie antoinette|6645701 +marie charlotte carmichael stopes|6645750 +marie curie|6645895 +marie dolores eliza rosanna gilbert|6645972 +marie goeppert mayer|6646099 +marie grosholtz|6646174 +marie henri beyle|6646269 +marie jeanne becu|6646337 +marie joseph paul yves roch gilbert du motier|6646418 +marie louise elisabeth vigee-lebrun|6646569 +marie stopes|6646694 +marie tussaud|6646818 +marie-strumpell disease|6645391 +mariehamn|6646911 +marigold|6646964 +marihuana|6646989 +marijuana|6647117 +marijuana cigarette|6647245 +marilyn monroe|6647339 +marimba|6647410 +marina|6647481 +marinade|6647527 +marinara|6647584 +marinate|6647630 +marine|6647670 +marine animal|6647896 +marine archaeology|6648007 +marine archeology|6648121 +marine corps|6648235 +marine corps intelligence activity|6648351 +marine creature|6648499 +marine engineer|6648610 +marine glue|6648690 +marine iguana|6648729 +marine mine|6648799 +marine museum|6648839 +marine mussel|6648908 +marine turtle|6648946 +marineland|6648987 +mariner|6649051 +mariner's compass|6649138 +marini|6649195 +marino|6649270 +mario vargas llosa|6649345 +marionette|6649450 +mariotte's law|6649484 +mariposa|6649553 +mariposa lily|6649617 +mariposa tulip|6649681 +mariposan|6649745 +marital|6649790 +marital bed|6649841 +marital communications privilege|6649924 +marital relationship|6649999 +marital status|6650082 +maritime|6650119 +maritime law|6650201 +maritime provinces|6650255 +maritimes|6650412 +marjoram|6650560 +mark|6650672 +mark anthony|6652012 +mark antony|6652120 +mark clark|6652227 +mark down|6652302 +mark hopkins|6652337 +mark of cain|6652445 +mark off|6652506 +mark out|6652637 +mark rothko|6652719 +mark tobey|6652767 +mark twain|6652812 +mark up|6652909 +mark wayne clark|6652932 +markaz-ud-dawa-wal-irshad|6653013 +marked|6653111 +marked-up|6653229 +marker|6653269 +market|6653355 +market analysis|6653648 +market analyst|6653708 +market capitalisation|6653740 +market capitalization|6653823 +market cross|6653906 +market day|6653937 +market economy|6653961 +market forces|6654047 +market garden|6654087 +market gardening|6654117 +market keeper|6654166 +market letter|6654244 +market order|6654288 +market penetration|6654331 +market price|6654371 +market research|6654412 +market square|6654465 +market strategist|6654542 +market town|6654591 +market value|6654617 +marketable|6654658 +marketer|6654787 +marketing|6654859 +marketing cost|6654995 +marketing research|6655024 +marketplace|6655077 +markhoor|6655184 +markhor|6655236 +marking|6655288 +marking ink|6655412 +markka|6655447 +markoff|6655498 +markoff chain|6655572 +markoff process|6655653 +markov|6655728 +markov chain|6655801 +markov process|6655881 +markova|6655955 +markovian|6656047 +marks|6656094 +marksman|6656925 +marksmanship|6656980 +markup|6657058 +markup language|6657159 +markweed|6657218 +marl|6657326 +marlberry|6657350 +marlene dietrich|6657421 +marley|6657543 +marlin|6657633 +marline|6657668 +marlinespike|6657697 +marlingspike|6657754 +marlinspike|6657811 +marlite|6657868 +marlowe|6657912 +marlstone|6658064 +marly|6658108 +marmalade|6658132 +marmalade box|6658189 +marmalade bush|6658256 +marmalade orange|6658334 +marmalade plum|6658465 +marmalade tree|6658516 +marmara|6658593 +marmite|6658660 +marmora|6658693 +marmoreal|6658760 +marmorean|6658818 +marmoset|6658876 +marmot|6658923 +marmota|6658968 +marmota caligata|6659020 +marmota flaviventris|6659109 +marmota monax|6659196 +marne river|6659260 +maroc|6659357 +marocain|6659508 +maroon|6659553 +marooned|6659748 +marplan|6659814 +marquand|6659886 +marque|6659962 +marquee|6660011 +marquesas islands|6660085 +marquess|6660157 +marqueterie|6660224 +marquetry|6660261 +marquette|6660298 +marquis|6660411 +marquis de lafayette|6660531 +marquis de laplace|6660657 +marquis de sade|6660783 +marquise|6660892 +marquise de maintenon|6660968 +marquise de montespan|6661100 +marquise de pompdour|6661219 +marrakech|6661327 +marrakesh|6661395 +marrano|6661463 +marred|6661505 +marri|6661562 +marriage|6661643 +marriage bed|6661845 +marriage broker|6661871 +marriage brokerage|6661974 +marriage ceremony|6662057 +marriage contract|6662113 +marriage counseling|6662169 +marriage licence|6662248 +marriage license|6662346 +marriage mart|6662444 +marriage of convenience|6662527 +marriage offer|6662614 +marriage proposal|6662701 +marriage settlement|6662788 +marriageability|6662844 +marriageable|6662881 +married|6662917 +married couple|6663027 +married man|6663092 +married person|6663174 +married woman|6663320 +marrow|6663414 +marrow squash|6663801 +marrowbone|6663905 +marrowfat pea|6663933 +marrubium|6663960 +marrubium vulgare|6664025 +marruecos|6664113 +marry|6664216 +mars|6664337 +marsala|6664519 +marseillaise|6664559 +marseille|6664610 +marseilles|6664721 +marseilles fever|6664905 +marsh|6665004 +marsh andromeda|6665124 +marsh bellflower|6665199 +marsh buggy|6665268 +marsh clematis|6665330 +marsh cress|6665422 +marsh elder|6665490 +marsh felwort|6665549 +marsh fern|6665611 +marsh gas|6665681 +marsh gentian|6665708 +marsh hare|6665778 +marsh harrier|6665873 +marsh hawk|6665923 +marsh hen|6665995 +marsh horsetail|6666117 +marsh mallow|6666171 +marsh marigold|6666275 +marsh milkweed|6666402 +marsh orchid|6666510 +marsh pea|6666558 +marsh pink|6666605 +marsh plant|6666671 +marsh rosemary|6666769 +marsh st-john's wort|6666833 +marsh tea|6666921 +marsh trefoil|6666980 +marsh wren|6667123 +marshal|6667159 +marshal saxe|6667411 +marshal tito|6667524 +marshall|6667607 +marshall islands|6667958 +marshall mcluhan|6668089 +marshall plan|6668179 +marshalling yard|6668254 +marshals|6668298 +marshalship|6668510 +marshland|6668586 +marshmallow|6668631 +marshmallow fluff|6668658 +marshy|6668698 +marsilea|6668763 +marsilea drummondii|6668816 +marsilea quadrifolia|6668915 +marsileaceae|6669002 +marstan|6669069 +marston moor|6669128 +marsupial|6669201 +marsupial mole|6669266 +marsupial mouse|6669348 +marsupial rat|6669429 +marsupialia|6669510 +marsupium|6669574 +mart|6669606 +marta brigit nilsson|6669690 +martagon|6669772 +martello tower|6669822 +marten|6669860 +marten cat|6669923 +martensite|6669986 +martes|6670044 +martes americana|6670093 +martes foina|6670185 +martes martes|6670264 +martes pennanti|6670331 +martes zibellina|6670424 +martha beatrice potter webb|6670543 +martha graham|6670641 +martha jane burk|6670726 +martha jane burke|6670827 +martha's vineyard|6670491 +marti|6670929 +martial|6671022 +martial art|6671142 +martial law|6671205 +martial music|6671244 +martian|6671318 +martin|6671427 +martin buber|6671689 +martin cline|6671742 +martin heidegger|6671794 +martin heinrich klaproth|6671859 +martin luther|6671935 +martin luther king|6672025 +martin luther king day|6672198 +martin luther king jr's birthday|6672317 +martin luther king jr.|6672446 +martin scorsese|6672623 +martin van buren|6672720 +martina navratilova|6672874 +martinet|6672949 +martingale|6673014 +martini|6673088 +martinique|6673114 +martinmas|6673166 +martynia|6673235 +martynia annua|6673290 +martynia arenaria|6673360 +martynia fragrans|6673466 +martyniaceae|6673574 +martyr|6673642 +martyr operation|6673754 +martyrdom|6673842 +martyrise|6673901 +martyrize|6673964 +martyrs of al-aqsa|6674027 +marum|6674195 +marumi|6674245 +marumi kumquat|6674339 +marupa|6674433 +marut|6674481 +marvel|6674514 +marvel-of-peru|6674656 +marvell|6674764 +marveller|6674809 +marvellous|6674845 +marvellously|6675053 +marvelous|6675150 +marvelously|6675360 +marvin neil simon|6675457 +marx|6675540 +marx brothers|6675840 +marxism|6675896 +marxism-leninism|6675931 +marxist|6675993 +marxist-leninist|6676131 +mary|6676183 +mary ann evans|6676276 +mary ashton rice livermore|6676348 +mary augusta arnold ward|6676432 +mary baker eddy|6676529 +mary douglas leakey|6676626 +mary flannery o'connor|6676750 +mary godwin wollstonecraft shelley|6676846 +mary harris jones|6676988 +mary i|6677065 +mary ii|6677128 +mary jane|6677170 +mary leakey|6677304 +mary leontyne price|6677420 +mary ludwig hays mccauley|6677498 +mary magdalen|6677604 +mary magdalene|6677715 +mary mallon|6677827 +mary martin|6677903 +mary mccarthy|6677951 +mary mccauley|6678033 +mary mcleod bethune|6678127 +mary morse baker eddy|6678203 +mary pickford|6678306 +mary queen of scots|6678373 +mary shelley|6678469 +mary stuart|6678589 +mary therese mccarthy|6678677 +mary tudor|6678767 +mary wollstonecraft|6678834 +mary wollstonecraft godwin|6678994 +mary wollstonecraft shelley|6679161 +marya sklodowska|6679296 +maryland|6679378 +maryland chicken|6679472 +maryland golden aster|6679520 +maryland yellowthroat|6679605 +marzipan|6679710 +masa|6679744 +masai|6679791 +mascara|6679837 +mascarene grass|6679879 +mascarpone|6679949 +mascot|6679982 +masculine|6680013 +masculinisation|6680192 +masculinise|6680318 +masculinity|6680389 +masculinization|6680453 +masculinize|6680579 +masdevallia|6680677 +masefield|6680724 +maser|6680795 +maseru|6680820 +mash|6680879 +mashed potato|6681127 +masher|6681201 +mashhad|6681303 +mashi|6681364 +mashie|6681408 +mashie niblick|6681439 +mashriq|6681479 +masjid|6681534 +mask|6681627 +mask of pregnancy|6681863 +masked|6681915 +masked ball|6681956 +masked shrew|6682038 +masker|6682092 +masking|6682140 +masking paper|6682310 +masking piece|6682360 +masking tape|6682405 +masochism|6682455 +masochist|6682490 +masochistic|6682544 +mason|6682577 +mason and dixon line|6683205 +mason and dixon's line|6683086 +mason bee|6683322 +mason city|6683345 +mason jar|6683381 +mason wasp|6683414 +mason's level|6682887 +mason's trowel|6682929 +mason-dixon line|6682973 +masonic|6683483 +masonite|6683587 +masonry|6683651 +masora|6683752 +masorah|6683801 +masorete|6683851 +masoretic|6683930 +masorite|6683976 +masoud|6684055 +masqat|6684103 +masque|6684171 +masquer|6684209 +masquerade|6684257 +masquerade ball|6684456 +masquerade costume|6684538 +masquerader|6684606 +mass|6684654 +mass action|6685582 +mass card|6685640 +mass culture|6685683 +mass defect|6685713 +mass deficiency|6685755 +mass energy|6685797 +mass hysteria|6685823 +mass medium|6685900 +mass meeting|6685941 +mass murder|6685990 +mass murderer|6686072 +mass noun|6686125 +mass number|6686149 +mass production|6686195 +mass rapid transit|6686231 +mass spectrograph|6686288 +mass spectrometer|6686346 +mass spectroscopic|6686418 +mass spectroscopy|6686536 +mass spectrum|6686654 +mass unit|6686686 +mass-action principle|6685327 +mass-energy equivalence|6685385 +mass-produce|6685433 +mass-produced|6685487 +mass-spectrometric|6685523 +massachuset|6686730 +massachusetts|6686872 +massachusetts bay|6687129 +massachusetts bay colony|6687178 +massachusetts fern|6687258 +massachusetts institute of technology|6687356 +massacre|6687456 +massage|6687569 +massage parlor|6687651 +massager|6687835 +massasauga|6687888 +massasauga rattler|6688028 +massasoit|6688107 +massawa|6688176 +masse|6688211 +masse shot|6688249 +massed|6688287 +massed fire|6688367 +massenet|6688418 +masses|6688484 +masseter|6689167 +masseur|6689199 +masseuse|6689225 +massicot|6689252 +massicotite|6689291 +massif|6689330 +massine|6689377 +massive|6689497 +massiveness|6689581 +massorete|6689700 +mast|6689780 +mast cell|6689844 +mastaba|6689912 +mastabah|6689949 +mastalgia|6689986 +mastectomy|6690018 +masted|6690080 +master|6690100 +master bedroom|6690799 +master class|6690864 +master copy|6690903 +master cylinder|6690949 +master file|6691038 +master in business|6691083 +master in business administration|6691184 +master in public affairs|6691300 +master key|6691375 +master of architecture|6691428 +master of arts|6691505 +master of arts in library science|6691582 +master of arts in teaching|6691680 +master of ceremonies|6691763 +master of divinity|6691816 +master of education|6691884 +master of fine arts|6691953 +master of laws|6692022 +master of library science|6692076 +master of literature|6692157 +master of science|6692230 +master of science in engineering|6692301 +master of theology|6692392 +master plan|6692459 +master race|6692503 +master sergeant|6692540 +master's degree|6690705 +master-at-arms|6690753 +mastered|6692574 +masterful|6692614 +mastering|6692699 +masterless|6692759 +masterly|6692801 +mastermind|6692857 +masterpiece|6693016 +masters|6693104 +mastership|6693666 +masterstroke|6693741 +masterwort|6693790 +mastery|6693842 +masthead|6694010 +mastic|6694070 +masticate|6694121 +mastication|6694189 +masticophis|6694250 +masticophis bilineatus|6694315 +masticophis flagellum|6694410 +masticophis lateralis|6694511 +mastiff|6694621 +mastiff bat|6694650 +mastigomycota|6694696 +mastigomycotina|6694812 +mastigophora|6694930 +mastigophoran|6695018 +mastigophore|6695128 +mastigoproctus|6695238 +mastigoproctus giganteus|6695314 +mastitis|6695413 +mastocyte|6695458 +mastodon|6695526 +mastodont|6695580 +mastoid|6695634 +mastoid bone|6695763 +mastoid process|6695847 +mastoidal|6695931 +mastoidale|6696063 +mastoidectomy|6696102 +mastoiditis|6696167 +mastopathy|6696215 +mastopexy|6696255 +mastotermes|6696323 +mastotermes darwiniensis|6696390 +mastotermes electrodominicus|6696467 +mastotermes electromexicus|6696552 +mastotermitidae|6696633 +masturbate|6696714 +masturbation|6696825 +masturbator|6696892 +mat|6696974 +mat up|6697365 +mata hari|6697428 +matabele|6697502 +matador|6697543 +matai|6697581 +matakam|6697672 +matamoros|6697714 +match|6697772 +match game|6698710 +match plane|6698760 +match play|6698851 +match point|6698886 +match-up|6698595 +matchboard|6698913 +matchbook|6698945 +matchbox|6698971 +matchbush|6698993 +matched|6699041 +matched game|6699215 +matcher|6699265 +matchet|6699368 +matching|6699405 +matching funds|6699481 +matchless|6699570 +matchlock|6699694 +matchmaker|6699720 +matchstick|6699823 +matchup|6699849 +matchweed|6699883 +matchwood|6699931 +mate|6700011 +mated|6700594 +mateless|6700675 +matelote|6700725 +mater|6700753 +mater turrita|6700835 +materfamilias|6700929 +materia medica|6700999 +material|6701088 +material body|6701488 +material breach|6701648 +material possession|6701692 +material resource|6701760 +material witness|6701794 +materialisation|6701828 +materialise|6702050 +materialism|6702158 +materialist|6702262 +materialistic|6702350 +materiality|6702449 +materialization|6702531 +materialize|6702753 +materials handling|6702861 +materiel|6702898 +maternal|6702935 +maternal language|6703115 +maternal quality|6703195 +maternal-infant bonding|6703074 +maternalism|6703273 +maternalistic|6703385 +maternally|6703417 +maternity|6703445 +maternity hospital|6703653 +maternity ward|6703700 +mates|6703743 +matey|6704260 +math|6704309 +math teacher|6704371 +mathematical|6704432 +mathematical function|6704561 +mathematical group|6704623 +mathematical logic|6704661 +mathematical notation|6704754 +mathematical operation|6704812 +mathematical process|6704909 +mathematical product|6705006 +mathematical proof|6705053 +mathematical relation|6705087 +mathematical space|6705127 +mathematical statement|6705183 +mathematical statistician|6705225 +mathematical symbol|6705287 +mathematician|6705350 +mathematics|6705398 +mathematics department|6705460 +mathematics teacher|6705538 +mathew b. brady|6705599 +mathias|6705667 +maths|6705738 +matilija poppy|6705854 +matinee|6705936 +matinee idol|6706014 +mating|6706061 +matins|6706174 +matisse|6706220 +matman|6706294 +matoaka|6706375 +matriarch|6706434 +matriarchal|6706530 +matriarchate|6706597 +matriarchic|6706711 +matriarchy|6706744 +matric|6706858 +matricaria|6706909 +matricaria chamomilla|6706977 +matricaria inodorum|6707126 +matricaria matricarioides|6707316 +matricaria oreades|6707432 +matricaria recutita|6707554 +matricaria tchihatchewii|6707701 +matricentric|6707827 +matricide|6707861 +matriculate|6707907 +matriculation|6708006 +matrikin|6708057 +matrilineage|6708140 +matrilineal|6708199 +matrilineal kin|6708246 +matrilineal sib|6708329 +matrilinear|6708412 +matrimonial|6708459 +matrimonial law|6708510 +matrimony|6708570 +matrimony vine|6708665 +matrisib|6708709 +matrix|6708792 +matrix addition|6708956 +matrix algebra|6708998 +matrix inversion|6709030 +matrix multiplication|6709073 +matrix operation|6709121 +matrix printer|6709201 +matrix transposition|6709264 +matron|6709311 +matron of honor|6709405 +matronly|6709456 +matronymic|6709491 +matsyendra|6709527 +matt|6709553 +matt-up|6709667 +matte|6709730 +matte up|6709913 +matted|6709976 +matter|6710032 +matter of course|6710416 +matter of fact|6710487 +matter of law|6710554 +matter to|6710607 +matter-of-course|6710297 +matter-of-fact|6710332 +matterhorn|6710695 +matteuccia|6710740 +matteuccia struthiopteris|6710823 +matthew|6710977 +matthew arnold|6711179 +matthew calbraith perry|6711246 +matthew flinders|6711323 +matthew walker|6711416 +matthew walker knot|6711488 +matthias schleiden|6711565 +matthiola|6711663 +matthiola incana|6711730 +matting|6711806 +mattock|6711870 +mattole|6711907 +mattress|6712055 +mattress cover|6712077 +mattress pad|6712133 +maturate|6712159 +maturation|6712292 +maturational|6712539 +mature|6712595 +mature-onset diabetes|6713129 +matured|6713519 +maturement|6713578 +matureness|6713653 +maturity|6713688 +maturity date|6714585 +maturity-onset diabetes|6713805 +maturity-onset diabetes mellitus|6714195 +matutinal|6714648 +matzah|6714673 +matzah ball|6714750 +matzah meal|6714813 +matzo|6714862 +matzo ball|6714939 +matzo meal|6715002 +matzoh|6715051 +matzoh ball|6715128 +matzoh meal|6715191 +maud gonne|6715240 +maudlin|6715297 +maugham|6715398 +maui|6715499 +maui island|6715537 +maul|6715582 +maul oak|6715687 +mauldin|6715770 +maule's quince|6715841 +mauler|6715912 +maulers|6715975 +maulstick|6716090 +mauna kea|6716125 +mauna loa|6716162 +maund|6716199 +maunder|6716233 +maundy|6716545 +maundy money|6716619 +maundy thursday|6716659 +maupassant|6716733 +maureen catherine connolly|6716832 +mauriac|6716937 +maurice barrymore|6717018 +maurice chevalier|6717131 +maurice de vlaminck|6717265 +maurice hugh frederick wilkins|6717331 +maurice ravel|6717437 +maurice utrillo|6717489 +maurice wilkins|6717546 +mauritania|6717637 +mauritanian|6717752 +mauritanian monetary unit|6717847 +mauritanie|6717922 +mauritian|6718037 +mauritian monetary unit|6718144 +mauritian rupee|6718215 +mauritius|6718286 +maurois|6718380 +mauser|6718446 +mausoleum|6718604 +mauve|6718668 +maven|6718728 +maverick|6718846 +mavin|6718948 +mavis|6719066 +maw|6719127 +mawkish|6719208 +mawkishly|6719309 +mawkishness|6719336 +max|6719438 +max beerbohm|6719555 +max born|6719655 +max bruch|6719705 +max delbruck|6719749 +max ernst|6719818 +max ferdinand perutz|6719861 +max karl ernst ludwig planck|6719941 +max muller|6720036 +max out|6720118 +max perutz|6720152 +max planck|6720222 +max weber|6720299 +maxfield frederick parrish|6720377 +maxfield parrish|6720473 +maxi|6720559 +maxilla|6720578 +maxillaria|6720623 +maxillary|6720669 +maxillary artery|6720691 +maxillary sinus|6720773 +maxillary vein|6720804 +maxillodental|6720874 +maxillofacial|6720900 +maxillomandibular|6720941 +maxim|6720975 +maxim gorki|6721090 +maxim gun|6721217 +maximal|6721258 +maximation|6721333 +maximilian's sunflower|6721396 +maximilien paul emile littre|6721496 +maximisation|6721597 +maximise|6721660 +maximising|6721724 +maximization|6721766 +maximize|6721890 +maximizing|6721954 +maximum|6721996 +maximum and minimum thermometer|6722224 +maxmilien de bethune|6722277 +maxmillien marie isidore de robespierre|6722379 +maxostoma|6722529 +maxwell|6722585 +maxwell anderson|6722963 +maxwell's demon|6722693 +maxwell's equations|6722769 +maxwell-boltzmann distribution law|6722840 +maxzide|6723036 +may|6723100 +may 1|6723230 +may 24|6723276 +may apple|6723358 +may beetle|6723557 +may blob|6723735 +may bug|6723871 +may day|6724046 +may fish|6724138 +may lily|6724290 +may queen|6724394 +may wine|6724485 +maya|6724518 +maya lin|6724736 +mayaca|6724826 +mayacaceae|6724892 +mayakovski|6724973 +mayan|6725043 +mayan language|6725234 +mayapple|6725360 +maybe|6725445 +mayday|6725506 +mayeng|6725559 +mayenne|6725624 +mayer|6725663 +mayetiola|6725815 +mayetiola destructor|6725876 +mayfish|6725968 +mayflower|6726039 +mayfly|6726123 +mayhap|6726179 +mayhaw|6726240 +mayhem|6726301 +mayidism|6726361 +mayo|6726485 +mayonnaise|6726534 +mayor|6726583 +mayoral|6726638 +mayoralty|6726681 +mayoress|6726755 +maypole|6726818 +maypop|6726840 +mays|6726910 +mayweed|6727135 +mazama|6727241 +mazar-i-sharif|6727290 +mazatlan|6727358 +mazdaism|6727419 +maze|6727493 +mazed|6727555 +mazer|6727658 +mazopathy|6727678 +mazurka|6727718 +mazy|6727809 +mazzard|6727857 +mazzard cherry|6727920 +mazzini|6727983 +mb|6728045 +mba|6728153 +mbabane|6728239 +mbd|6728302 +mbundu|6728474 +mc|6728527 +mcalester|6728592 +mcallen|6728626 +mcardle's disease|6728656 +mcburney's point|6728865 +mccarthy|6728914 +mccarthyism|6729088 +mccartney|6729132 +mccauley|6729244 +mccormick|6729333 +mccullers|6729489 +mcg|6729572 +mcgraw|6729626 +mcguffey|6729729 +mcguffey eclectic readers|6729799 +mcia|6729867 +mcintosh|6729985 +mckim|6730039 +mckinley|6730100 +mcluhan|6730309 +mcmaster|6730390 +mcpherson|6730462 +md|6730555 +mdi|6730818 +mdiv|6730894 +mdma|6730948 +me|6731007 +mea culpa|6731059 +mead|6731109 +mead's milkweed|6731221 +meade|6731313 +meadow|6731433 +meadow beauty|6731591 +meadow bright|6731644 +meadow buttercup|6731771 +meadow clary|6731926 +meadow cranesbill|6731977 +meadow cress|6732046 +meadow fern|6732153 +meadow fescue|6732309 +meadow foxtail|6732374 +meadow goldenrod|6732441 +meadow grass|6732516 +meadow jumping mouse|6732637 +meadow leek|6732697 +meadow lily|6732776 +meadow mouse|6732865 +meadow mushroom|6732940 +meadow pea|6733007 +meadow pipit|6733089 +meadow rue|6733147 +meadow saffron|6733190 +meadow salsify|6733273 +meadow saxifrage|6733369 +meadow spikemoss|6733466 +meadow spittlebug|6733565 +meadow vole|6733638 +meadow-beauty family|6731468 +meadowgrass|6733713 +meadowlark|6733753 +meager|6733818 +meagerly|6734007 +meagerness|6734191 +meagre|6734297 +meagrely|6734446 +meagreness|6734492 +meal|6734598 +meal plan|6734738 +meal ticket|6734780 +mealberry|6734899 +mealie|6735068 +mealtime|6735104 +mealworm|6735139 +mealy|6735163 +mealy bug|6735376 +mealy sage|6735499 +mealy-mouthed|6735251 +mealybug|6735558 +mealymouthed|6735600 +mean|6735645 +mean deviation|6736127 +mean deviation from the mean|6736190 +mean distance|6736253 +mean solar day|6736285 +mean solar time|6736364 +mean sun|6736422 +mean time|6736476 +mean value|6736534 +meander|6736572 +meandering|6736664 +meanie|6736720 +meaning|6736766 +meaningful|6736927 +meaningfulness|6737049 +meaningless|6737086 +meaninglessness|6737290 +meanly|6737413 +meanness|6737471 +means|6737649 +means grass|6737803 +means test|6737912 +meanspirited|6737948 +meantime|6738058 +meanwhile|6738101 +meany|6738144 +mearstone|6738229 +measles|6738278 +measly|6738341 +measurability|6738397 +measurable|6738444 +measure|6738513 +measure out|6739198 +measure up|6739273 +measured|6739325 +measuredly|6739489 +measureless|6739521 +measurement|6739614 +measurer|6739674 +measuring|6739745 +measuring block|6739805 +measuring cup|6739870 +measuring device|6739897 +measuring instrument|6739972 +measuring rod|6740047 +measuring stick|6740149 +measuring system|6740251 +measuring unit|6740326 +measuring worm|6740391 +meat|6740443 +meat and potatoes|6740780 +meat cleaver|6740862 +meat counter|6740906 +meat grinder|6740936 +meat hook|6740999 +meat hooks|6741023 +meat house|6741099 +meat loaf|6741149 +meat market|6741263 +meat packer|6741308 +meat packing|6741364 +meat pie|6741511 +meat safe|6741533 +meat thermometer|6741557 +meat-eating|6740657 +meat-packing business|6740714 +meatball|6741595 +meatless|6741618 +meatloaf|6741645 +meatman|6741678 +meatpacking|6741725 +meatus|6741791 +meaty|6741826 +mebaral|6741877 +mebendazole|6741996 +mecca|6742065 +meccano|6742153 +meccano set|6742204 +mechanic|6742259 +mechanic's lien|6742479 +mechanical|6742509 +mechanical advantage|6742750 +mechanical device|6742786 +mechanical drawing|6742823 +mechanical energy|6742887 +mechanical engineer|6742921 +mechanical engineering|6742990 +mechanical man|6743081 +mechanical mixture|6743144 +mechanical phenomenon|6743180 +mechanical piano|6743231 +mechanical press|6743307 +mechanical system|6743347 +mechanically|6743381 +mechanically skillful|6743416 +mechanics|6743465 +mechanisation|6743810 +mechanise|6743912 +mechanised|6744058 +mechanism|6744135 +mechanist|6744382 +mechanistic|6744413 +mechanization|6744522 +mechanize|6744624 +mechanized|6744770 +mechanized cavalry|6744847 +mecholyl|6744883 +meckel's diverticulum|6744969 +meclizine|6745035 +meclizine hydrochloride|6745101 +meclofenamate|6745167 +meclofenamate sodium|6745293 +meclomen|6745419 +meconium|6745554 +meconopsis|6745638 +meconopsis betonicifolia|6745708 +meconopsis cambrica|6745784 +mecoptera|6745851 +mecopteran|6745909 +mecopterous|6745936 +med|6745963 +medai guru|6746016 +medaille militaire|6746080 +medal|6746180 +medal of honor|6746278 +medal play|6746399 +medal winner|6746446 +medalist|6746515 +medallion|6746615 +medallist|6746779 +medan|6746878 +medawar|6746928 +meddle|6747004 +meddle with|6747065 +meddler|6747155 +meddlesome|6747207 +meddlesomeness|6747284 +meddling|6747351 +medea|6747461 +medellin|6747497 +medellin cartel|6747553 +medevac|6747606 +medfly|6747661 +medford|6747741 +medgar evers|6747791 +medgar wiley evers|6747913 +media consultant|6748041 +mediacy|6748105 +mediaeval|6748147 +medial|6748227 +medial condyle|6748279 +medial geniculate body|6748311 +medial rectus|6748386 +medial rectus muscle|6748471 +median|6748556 +median value|6748663 +mediant|6748705 +mediastinum|6748745 +mediate|6748793 +mediated|6748963 +mediateness|6748989 +mediation|6749031 +mediator|6749125 +mediatorial|6749222 +mediatory|6749271 +mediatrix|6749342 +medic|6749420 +medicago|6749528 +medicago arborea|6749628 +medicago echinus|6749705 +medicago falcata|6749804 +medicago intertexta|6749912 +medicago lupulina|6750014 +medicago sativa|6750135 +medicaid|6750213 +medicaid funds|6750252 +medical|6750341 +medical aid|6750507 +medical assistant|6750551 +medical bill|6750629 +medical building|6750686 +medical care|6750765 +medical center|6750809 +medical checkup|6750864 +medical community|6750972 +medical diagnosis|6751036 +medical dressing|6751084 +medical evacuation|6751134 +medical exam|6751189 +medical examination|6751297 +medical examiner|6751405 +medical expense|6751452 +medical extern|6751508 +medical history|6751574 +medical institution|6751637 +medical instrument|6751692 +medical intern|6751731 +medical literature analysis and retrieval system|6751814 +medical man|6751949 +medical officer|6752042 +medical practice|6752106 +medical practitioner|6752141 +medical procedure|6752234 +medical profession|6752279 +medical prognosis|6752343 +medical record|6752407 +medical relation|6752470 +medical report|6752518 +medical school|6752570 +medical science|6752641 +medical scientist|6752690 +medical social worker|6752742 +medical specialist|6752821 +medical specialty|6752895 +medical student|6752947 +medicament|6753002 +medicare|6753062 +medicare check|6753101 +medicare payment|6753166 +medicate|6753231 +medication|6753300 +medicative|6753375 +medici|6753415 +medicinal|6753444 +medicinal drug|6753484 +medicinal leech|6753544 +medicine|6753617 +medicine ball|6753854 +medicine cabinet|6753882 +medicine chest|6753931 +medicine man|6753980 +medick|6754023 +medico|6754075 +medicolegal|6754198 +mediety|6754284 +medieval|6754322 +medieval greek|6754434 +medieval latin|6754535 +medieval mode|6754584 +medieval schoolman|6754672 +medina|6754762 +medinilla|6754840 +medinilla magnifica|6754903 +mediocre|6754963 +mediocrity|6755056 +meditate|6755174 +meditation|6755365 +meditative|6755540 +meditativeness|6755648 +mediterranean|6755717 +mediterranean anaemia|6755800 +mediterranean anchovy|6755975 +mediterranean anemia|6756038 +mediterranean cypress|6756212 +mediterranean fever|6756325 +mediterranean flour moth|6756459 +mediterranean fruit fly|6756559 +mediterranean hackberry|6756663 +mediterranean sea|6756778 +mediterranean snapdragon|6756841 +mediterranean water shrew|6756929 +medium|6757018 +medium frequency|6757407 +medium of exchange|6757452 +medium steel|6757534 +medium wave|6757562 +medivac|6757625 +medlar|6757680 +medlar tree|6757838 +medlars|6757896 +medley|6758167 +medline|6758260 +medoc|6758315 +medroxyprogesterone|6758368 +medulla|6758427 +medulla oblongata|6758544 +medulla spinalis|6758601 +medullary|6758666 +medullary ray|6758758 +medullary sheath|6758810 +medullated|6758862 +medullated nerve fiber|6758897 +medusa|6758976 +medusa's head|6759084 +medusan|6759193 +medusoid|6759250 +meed|6759290 +meek|6759311 +meekly|6759402 +meekness|6759424 +meerestone|6759500 +meerkat|6759549 +meerschaum|6759601 +meet|6759664 +meet up with|6760306 +meeter|6760333 +meeting|6760389 +meeting house|6760680 +meeting of minds|6760860 +meeting place|6760915 +meetinghouse|6760975 +mefenamic acid|6761072 +mefloquine|6761177 +mefloquine hydrochloride|6761271 +mefoxin|6761365 +meg|6761431 +megabat|6761496 +megabit|6761539 +megabucks|6761581 +megabyte|6761638 +megacardia|6761680 +megacephaly|6761749 +megachile|6761839 +megachilidae|6761900 +megachiroptera|6761972 +megacolon|6762048 +megacycle|6762073 +megacycle per second|6762135 +megadeath|6762197 +megaderma|6762230 +megaderma lyra|6762288 +megadermatidae|6762373 +megaera|6762448 +megaflop|6762496 +megagametophyte|6762590 +megahertz|6762627 +megahit|6762689 +megakaryocyte|6762758 +megakaryocytic|6762791 +megalith|6762824 +megalithic|6762881 +megalithic structure|6762918 +megalobatrachus|6762975 +megalobatrachus maximus|6763054 +megaloblast|6763139 +megaloblastic|6763191 +megaloblastic anaemia|6763244 +megaloblastic anemia|6763368 +megalocardia|6763492 +megalocephaly|6763561 +megalocyte|6763651 +megalohepatia|6763712 +megalomania|6763790 +megalomaniac|6763853 +megalomaniacal|6763900 +megalomanic|6763960 +megalonychidae|6764020 +megalopolis|6764095 +megaloptera|6764142 +megalosaur|6764209 +megalosauridae|6764290 +megalosaurus|6764366 +megalp|6764447 +megaphone|6764477 +megapode|6764512 +megapodiidae|6764607 +megapodius|6764674 +megaptera|6764733 +megaptera novaeangliae|6764791 +megascopic|6764899 +megasporangium|6764957 +megaspore|6765029 +megasporophyll|6765065 +megathere|6765110 +megatherian|6765185 +megatherian mammal|6765246 +megatheriid|6765307 +megatheriidae|6765368 +megatherium|6765440 +megaton|6765504 +megaton bomb|6765560 +megavitamin therapy|6765602 +megawatt|6765639 +megesterol|6765668 +megestrol acetate|6765728 +megillah|6765788 +megilp|6765849 +megohm|6765879 +megrim|6765911 +megrims|6765992 +mehemet ali|6766132 +mei|6766199 +meibomian cyst|6766262 +meibomian gland|6766355 +meiji tenno|6766463 +meiosis|6766514 +meiotic|6766637 +meir|6766685 +meissner|6766747 +meister eckhart|6766843 +meitner|6766979 +mek|6767035 +mekong|6767188 +mekong river|6767230 +mel columcille gerard gibson|6767278 +mel gibson|6767406 +melaena|6767516 +melagra|6767606 +melagueta pepper|6767636 +melamine|6767751 +melamine resin|6767793 +melampodium|6767833 +melampodium leucanthum|6767904 +melampsora|6767998 +melampsora lini|6768059 +melampsoraceae|6768144 +melancholia|6768219 +melancholiac|6768251 +melancholic|6768296 +melancholy|6768363 +melancholy thistle|6768521 +melanchthon|6768598 +melanerpes|6768716 +melanerpes erythrocephalus|6768775 +melanesia|6768896 +melange|6768937 +melanie klein|6769153 +melanin|6769218 +melanise|6769250 +melanism|6769355 +melanitta|6769458 +melanitta nigra|6769514 +melanize|6769584 +melanoblast|6769689 +melanocyte|6769725 +melanocyte-stimulating hormone|6769760 +melanoderma|6769841 +melanogrammus|6769875 +melanogrammus aeglefinus|6769943 +melanoma|6770029 +melanoplus|6770078 +melanosis|6770142 +melanotis|6770245 +melanotis caerulescens|6770301 +melanthiaceae|6770392 +melasma|6770472 +melastoma|6770524 +melastoma malabathricum|6770587 +melastomaceae|6770675 +melastomataceae|6770812 +melatonin|6770951 +melba|6771007 +melba toast|6771098 +melbourne|6771137 +melchior|6771202 +melchite|6771306 +meld|6771385 +meleagrididae|6771625 +meleagris|6771695 +meleagris gallopavo|6771751 +melee|6771834 +melena|6771884 +meles|6771974 +meles meles|6772020 +melia|6772076 +melia azadirachta|6772127 +melia azedarach|6772236 +melia azederach|6772385 +meliaceae|6772534 +melicocca|6772615 +melicocca bijuga|6772719 +melicocca bijugatus|6772859 +melicoccus|6773002 +melicytus|6773107 +melilot|6773174 +melilotus|6773241 +melilotus alba|6773308 +melilotus officinalis|6773411 +melina mercouri|6773515 +melinae|6773594 +meliorate|6773651 +melioration|6773773 +meliorative|6773879 +meliorism|6773949 +meliorist|6773975 +meliphagidae|6774057 +melissa|6774124 +melissa officinalis|6774183 +melkite|6774305 +mellaril|6774383 +mellifluous|6774582 +mellisonant|6774662 +mellivora|6774742 +mellivora capensis|6774800 +mellon|6774902 +mellow|6775021 +mellow out|6775260 +mellowed|6775299 +mellowing|6775357 +mellowly|6775417 +mellowness|6775441 +melocactus|6775506 +melodic|6775580 +melodic line|6775731 +melodic phrase|6775802 +melodic theme|6775873 +melodious|6775977 +melodiously|6776141 +melodiousness|6776171 +melodise|6776229 +melodize|6776270 +melodrama|6776311 +melodramatic|6776337 +melody|6776397 +melody pipe|6776508 +melogale|6776553 +meloid|6776608 +meloidae|6776646 +melolontha|6776706 +melolontha melolontha|6776770 +melolonthid beetle|6776872 +melolonthidae|6776940 +melon|6777018 +melon ball|6777081 +melon tree|6777107 +melon vine|6777185 +melophagus|6777228 +melophagus ovinus|6777292 +melopsittacus|6777391 +melopsittacus undulatus|6777459 +melosa|6777652 +melospiza|6777719 +melospiza georgiana|6777775 +melospiza melodia|6777856 +melphalan|6777932 +melpomene|6778006 +melt|6778040 +melt down|6778422 +melt off|6778476 +meltable|6778562 +meltdown|6778602 +melted|6778704 +melter|6778805 +melting|6778828 +melting point|6778965 +melting pot|6779015 +meltwater|6779102 +melursus|6779131 +melursus ursinus|6779186 +melvil dewey|6779259 +melville|6779350 +melville bell|6779407 +melville louis kossuth dewey|6779485 +melvin calvin|6779592 +mem|6779644 +member|6779708 +member bank|6779885 +member of parliament|6779976 +membered|6780054 +memberless|6780284 +membership|6780315 +membership card|6780365 +membracidae|6780409 +membrane|6780478 +membrane bone|6780594 +membrane-forming|6780547 +membranophone|6780625 +membranous|6780704 +membranous labyrinth|6780771 +meme|6780882 +memel|6780918 +memento|6780977 +memento mori|6781012 +memo|6781043 +memoir|6781083 +memorabilia|6781126 +memorable|6781154 +memorably|6781187 +memoranda|6781219 +memorandum|6781287 +memorial|6781327 +memorial day|6781477 +memorial park|6781558 +memorial tablet|6781667 +memorialisation|6781723 +memorialise|6781829 +memorialization|6781945 +memorialize|6782051 +memorisation|6782167 +memorise|6782243 +memoriser|6782300 +memorization|6782357 +memorize|6782433 +memorizer|6782490 +memory|6782547 +memory access|6782879 +memory board|6782919 +memory cache|6783051 +memory chip|6783114 +memory device|6783174 +memory image|6783219 +memory loss|6783260 +memory picture|6783328 +memory trace|6783365 +memphis|6783401 +memsahib|6783499 +men|6783523 +men's|6784179 +men's furnishings|6784317 +men's room|6784377 +menace|6784515 +menachem begin|6784677 +menacing|6784754 +menacingly|6784853 +menadione|6784886 +menage|6784964 +menage a trois|6785025 +menagerie|6785084 +menai strait|6785201 +menander|6785249 +menarche|6785297 +mencken|6785321 +mend|6785407 +mendacious|6785663 +mendaciously|6785713 +mendacity|6785747 +mendel|6785781 +mendel's law|6785883 +mendeleev|6785936 +mendeleev's law|6786074 +mendelevium|6786146 +mendeleyev|6786216 +mendelian|6786355 +mendelianism|6786434 +mendelism|6786501 +mendelsohn|6786565 +mendelssohn|6786632 +mendenhall glacier|6786733 +mender|6786847 +mendicancy|6786932 +mendicant|6786981 +mending|6787064 +menelaus|6787150 +menhaden|6787192 +menhaden oil|6787251 +menhir|6787284 +menial|6787345 +meniere|6787417 +meniere's disease|6787494 +meningeal|6787547 +meningeal artery|6787587 +meningeal veins|6787667 +meninges|6787738 +meningioma|6787785 +meningism|6787827 +meningitis|6787854 +meningocele|6787893 +meningoencephalitis|6788007 +meninx|6788119 +menippe|6788166 +menippe mercenaria|6788221 +meniscectomy|6788284 +meniscium|6788348 +meniscus|6788404 +menispermaceae|6788440 +menispermum|6788540 +menispermum canadense|6788613 +menninger|6788722 +mennonite|6789015 +mennonite church|6789055 +mennonitism|6789122 +meno mosso|6789169 +menominee|6789202 +menominee whitefish|6789261 +menomini|6789359 +menopausal|6789474 +menopause|6789509 +menopon|6789571 +menopon gallinae|6789626 +menopon palladum|6789742 +menorah|6789858 +menorrhagia|6789936 +menorrhea|6790032 +menotti|6790088 +menotyphla|6790141 +mens rea|6790205 +mens store|6790274 +mensa|6790352 +mensal|6790387 +mensal line|6790408 +mensch|6790504 +menses|6790538 +mensh|6790628 +menshevik|6790662 +menstrual|6790701 +menstrual blood|6790759 +menstrual cycle|6790815 +menstrual flow|6790858 +menstrual phase|6790914 +menstruate|6790951 +menstruating|6791004 +menstruation|6791042 +menstruum|6791132 +mensurable|6791285 +mensural|6791316 +mensurate|6791368 +mensuration|6791443 +mental|6791503 +mental ability|6791694 +mental abnormality|6791741 +mental age|6791811 +mental anguish|6791835 +mental attitude|6791876 +mental balance|6791937 +mental block|6791992 +mental capacity|6792030 +mental case|6792116 +mental confusion|6792198 +mental defectiveness|6792286 +mental deficiency|6792394 +mental disease|6792496 +mental disorder|6792580 +mental disturbance|6792680 +mental energy|6792780 +mental exhaustion|6792841 +mental faculty|6792889 +mental health|6792942 +mental home|6792998 +mental hospital|6793127 +mental hygiene|6793256 +mental illness|6793363 +mental image|6793447 +mental imagery|6793536 +mental institution|6793613 +mental lexicon|6793742 +mental measurement|6793812 +mental note|6793882 +mental object|6793913 +mental picture|6793989 +mental process|6794051 +mental quickness|6794158 +mental rejection|6794224 +mental representation|6794346 +mental reservation|6794456 +mental retardation|6794574 +mental soundness|6794659 +mental state|6794714 +mental strain|6794773 +mental synthesis|6794837 +mental telepathist|6794928 +mental test|6795008 +mental testing|6795086 +mental unsoundness|6795164 +mentalism|6795223 +mentality|6795286 +mentally ill|6795429 +mentally retarded|6795475 +mentation|6795509 +mentha|6795595 +mentha aquatica|6795651 +mentha arvensis|6795719 +mentha citrata|6795786 +mentha longifolia|6795875 +mentha piperita|6795935 +mentha pulegium|6795992 +mentha rotundifolia|6796049 +mentha spicata|6796142 +mentha suaveolens|6796196 +menthol|6796287 +mentholated|6796323 +mentholated salve|6796362 +menticirrhus|6796425 +menticirrhus americanus|6796490 +menticirrhus littoralis|6796568 +menticirrhus saxatilis|6796648 +menticirrhus undulatus|6796728 +mention|6796799 +mentioner|6797124 +mentor|6797188 +mentum|6797264 +mentzelia|6797354 +mentzelia laevicaulis|6797421 +mentzelia lindleyi|6797515 +mentzelia livicaulis|6797578 +menu|6797671 +menuhin|6797809 +menura|6797886 +menurae|6797933 +menuridae|6797988 +menyanthaceae|6798046 +menyanthes|6798153 +menyanthes trifoliata|6798232 +menziesia|6798397 +menziesia ferruginea|6798464 +menziesia pilosa|6798558 +meow|6798635 +mepacrine|6798709 +meperidine|6798852 +meperidine hydrochloride|6798914 +mephaquine|6798976 +mephenytoin|6799081 +mephistophelean|6799180 +mephistopheles|6799262 +mephistophelian|6799313 +mephitic|6799395 +mephitinae|6799444 +mephitis|6799510 +mephitis macroura|6799689 +mephitis mephitis|6799772 +mephobarbital|6799856 +meprin|6799967 +meprobamate|6800121 +meq|6800268 +meralgia|6800332 +merbromine|6800363 +mercalli scale|6800408 +mercantile|6800505 +mercantile agency|6800598 +mercantile establishment|6800650 +mercantile law|6800758 +mercantile system|6800828 +mercantilism|6800884 +mercaptopurine|6800999 +mercator|6801114 +mercator projection|6801273 +mercator's projection|6801185 +merce cunningham|6801359 +mercedario|6801454 +mercenaria|6801499 +mercenaria mercenaria|6801561 +mercenary|6801678 +mercer|6801843 +mercerise|6801938 +mercerised|6801981 +mercerize|6802025 +mercerized|6802068 +merchandise|6802112 +merchandiser|6802188 +merchandising|6802244 +merchant|6802321 +merchant bank|6802435 +merchant marine|6802537 +merchant ship|6802633 +merchant vessels|6802709 +merchant-venturer|6802377 +merchantability|6802793 +merchantable|6802824 +merchantman|6802901 +merciful|6802977 +mercifully|6803092 +mercifulness|6803136 +merciless|6803257 +mercilessly|6803436 +mercilessness|6803494 +merckx|6803643 +mercouri|6803713 +mercurial|6803785 +mercurial ointment|6803941 +mercurialis|6804005 +mercurialis annua|6804074 +mercurialis perennis|6804183 +mercuric|6804282 +mercuric chloride|6804332 +mercurochrome|6804428 +mercurous|6804487 +mercurous chloride|6804537 +mercury|6804582 +mercury barometer|6804994 +mercury cell|6805031 +mercury chloride|6805093 +mercury fulminate|6805189 +mercury poisoning|6805267 +mercury program|6805333 +mercury thermometer|6805388 +mercury-in-glass clinical thermometer|6804743 +mercury-in-glass thermometer|6804860 +mercury-vapor lamp|6804930 +mercy|6805458 +mercy killing|6805656 +mercy seat|6805720 +mere|6805763 +meredith|6805829 +merely|6806001 +merestone|6806037 +meretricious|6806086 +meretriciously|6806255 +meretriciousness|6806287 +merganser|6806439 +merge|6806495 +merged|6806662 +mergenthaler|6806729 +merger|6806814 +merger agreement|6806909 +merginae|6806966 +merging|6807024 +mergus|6807202 +mergus albellus|6807249 +mergus merganser|6807333 +mergus merganser americanus|6807424 +mergus serrator|6807546 +mericarp|6807648 +merida|6807673 +meridian|6807725 +meridional|6807828 +meringue|6807876 +meringue kiss|6807902 +merino|6807930 +merino sheep|6807985 +meriones|6808040 +meriones longifrons|6808095 +meriones unguiculatus|6808169 +meristem|6808254 +merit|6808285 +merit badge|6808379 +merit pay|6808406 +merit system|6808463 +meritable|6808508 +merited|6808546 +meriting|6808592 +meritless|6808633 +meritocracy|6808729 +meritocratic|6808886 +meritorious|6808988 +meritoriousness|6809026 +meriwether lewis|6809082 +merl|6809151 +merlangus|6809233 +merlangus merlangus|6809289 +merle|6809381 +merlin|6809463 +merlon|6809581 +merlot|6809618 +merluccius|6809721 +merluccius bilinearis|6809780 +mermaid|6809858 +merman|6809910 +merodach|6810024 +meromelia|6810099 +meronym|6810211 +meronymy|6810243 +meropidae|6810302 +merops|6810360 +merostomata|6810407 +merovingian|6810468 +merovingian dynasty|6810605 +merozoite|6810674 +merrily|6810703 +merrimac|6810779 +merrimack|6810824 +merrimack river|6810875 +merriment|6810932 +merriness|6811012 +merry|6811071 +merry andrew|6811307 +merry bells|6811358 +merry-go-round|6811225 +merrymaker|6811405 +merrymaking|6811474 +mertensia|6811544 +mertensia virginica|6811601 +merthiolate|6811707 +merton|6811796 +meryl streep|6811916 +meryta|6811966 +meryta sinclairii|6812020 +mesa|6812075 +mesa verde national park|6812154 +mesabi range|6812227 +mesalliance|6812342 +mesantoin|6812375 +mesasamkranti|6812484 +mescal|6812529 +mescal bean|6812668 +mescal button|6812747 +mescaline|6812813 +mesembryanthemum|6812906 +mesembryanthemum crystallinum|6812998 +mesembryanthemum edule|6813116 +mesencephalon|6813239 +mesenchyme|6813288 +mesenteric|6813327 +mesenteric artery|6813357 +mesenteric plexus|6813441 +mesenteric vein|6813501 +mesentery|6813573 +mesh|6813603 +mesh topology|6814018 +meshed|6814072 +meshing|6814206 +meshuga|6814400 +meshugaas|6814471 +meshugga|6814563 +meshugge|6814634 +meshuggeneh|6814705 +meshuggener|6814828 +meshwork|6814951 +mesial|6815024 +mesic|6815070 +mesmer|6815129 +mesmeric|6815229 +mesmerise|6815292 +mesmerised|6815468 +mesmerism|6815564 +mesmerist|6815614 +mesmerize|6815678 +mesmerized|6815854 +mesmerizing|6815950 +mesne lord|6816013 +mesoamerica|6816053 +mesoamerican|6816158 +mesoblast|6816230 +mesoblastic|6816269 +mesocarp|6816311 +mesocolon|6816350 +mesocricetus|6816379 +mesocricetus auratus|6816446 +mesoderm|6816535 +mesodermal|6816574 +mesohippus|6816616 +mesolithic|6816657 +mesolithic age|6816792 +mesomorph|6816891 +mesomorphic|6816963 +mesomorphy|6817014 +meson|6817069 +mesonic|6817106 +mesophyron|6817141 +mesophyte|6817189 +mesophytic|6817253 +mesophytic plant|6817279 +mesopotamia|6817343 +mesosphere|6817448 +mesothelioma|6817474 +mesothelium|6817506 +mesotron|6817556 +mesozoic|6817593 +mesozoic era|6817668 +mespilus|6817747 +mespilus germanica|6817807 +mesquit|6817884 +mesquite|6817921 +mesquite gum|6817958 +mess|6817984 +mess about|6818584 +mess around|6818704 +mess hall|6818795 +mess jacket|6818843 +mess kit|6818898 +mess of pottage|6818927 +mess up|6818973 +mess-up|6818524 +message|6819253 +message pad|6819443 +messaging|6819500 +messenger|6819565 +messenger boy|6819611 +messenger rna|6819663 +messiah|6819757 +messiahship|6819877 +messianic|6819953 +messidor|6820004 +messily|6820060 +messina|6820085 +messiness|6820144 +messmate|6820239 +messuage|6820277 +messy|6820350 +mestiza|6820378 +mestizo|6820414 +mestranol|6820491 +mesua|6820529 +mesua ferrea|6820584 +metabola|6820661 +metabolic|6820699 +metabolic acidosis|6820780 +metabolic alkalosis|6820817 +metabolic disorder|6820856 +metabolic process|6820899 +metabolic rate|6820983 +metabolise|6821012 +metabolism|6821043 +metabolite|6821183 +metabolize|6821220 +metabolous|6821251 +metacarpal|6821281 +metacarpal artery|6821350 +metacarpal bone|6821433 +metacarpal vein|6821477 +metacarpophalangeal joint|6821548 +metacarpus|6821655 +metacenter|6821694 +metacentre|6821779 +metacentric|6821864 +metacentric chromosome|6822025 +metacyesis|6822068 +metadata|6822209 +metagenesis|6822244 +metagrabolised|6822328 +metagrabolized|6822417 +metagrobolised|6822506 +metagrobolized|6822595 +metaknowledge|6822684 +metal|6822747 +metal bar|6823002 +metal detector|6823048 +metal drum|6823104 +metal filing|6823136 +metal glove|6823165 +metal money|6823216 +metal plating|6823269 +metal saw|6823313 +metal screw|6823344 +metal wood|6823371 +metalanguage|6823396 +metalepsis|6823452 +metallic|6823481 +metallic bond|6823649 +metallic element|6823691 +metallike|6823748 +metallized dye|6823776 +metalloid|6823809 +metallurgic|6823849 +metallurgical|6823913 +metallurgical engineer|6823977 +metallurgist|6824062 +metallurgy|6824147 +metalware|6824197 +metalwork|6824221 +metalworker|6824297 +metalworking|6824354 +metalworking vise|6824404 +metalworks|6824464 +metamathematics|6824621 +metamere|6824663 +metameric|6824696 +metamorphic|6824743 +metamorphic rock|6824986 +metamorphism|6825023 +metamorphopsia|6825081 +metamorphose|6825167 +metamorphosis|6825280 +metamorphous|6825426 +metaphase|6825513 +metaphor|6825585 +metaphoric|6825639 +metaphorical|6825694 +metaphosphoric acid|6825749 +metaphysical|6825798 +metaphysics|6825879 +metaphysis|6825911 +metaplastic anaemia|6825959 +metaplastic anemia|6826079 +metaproterenol|6826199 +metarule|6826246 +metasequoia|6826277 +metasequoia glyptostrodoides|6826364 +metastability|6826480 +metastable|6826523 +metastasis|6826562 +metastasise|6826693 +metastasize|6826744 +metastatic|6826795 +metastatic tumor|6826854 +metatarsal|6826959 +metatarsal arch|6827012 +metatarsal artery|6827042 +metatarsal vein|6827125 +metatarsus|6827196 +metatheria|6827235 +metatherian|6827292 +metathesis|6827320 +metaurus river|6827444 +metazoa|6827498 +metazoan|6827617 +metchnikoff|6827683 +metchnikov|6827797 +mete|6827910 +mete out|6827991 +meted out|6828108 +metempsychosis|6828184 +metencephalon|6828227 +meteor|6828276 +meteor shower|6828407 +meteor stream|6828467 +meteor swarm|6828527 +meteoric|6828566 +meteorite|6828689 +meteoritic|6828725 +meteoritical|6828774 +meteoroid|6828823 +meteorologic|6828895 +meteorological|6828954 +meteorological balloon|6829013 +meteorological conditions|6829053 +meteorological observation post|6829112 +meteorological satellite|6829194 +meteorologist|6829285 +meteorology|6829343 +meteortropism|6829456 +meter|6829487 +meter maid|6829731 +meter reading|6829777 +meterstick|6829893 +metformin|6829935 +meth|6829996 +methacholine|6830183 +methacrylic acid|6830260 +methadon|6830314 +methadone|6830422 +methadone hydrochloride|6830530 +methamphetamine|6830638 +methamphetamine hydrochloride|6830825 +methanal|6831012 +methane|6831056 +methane series|6831122 +methanogen|6831195 +methanol|6831277 +methapyrilene|6831348 +methaqualone|6831385 +metharbital|6831457 +methedrine|6831554 +metheglin|6831752 +methenamine|6831776 +methicillin|6831859 +methionine|6831891 +methocarbamol|6831932 +method|6831979 +method of accounting|6832004 +method of choice|6832072 +method of fluxions|6832105 +method of least squares|6832200 +methodical|6832288 +methodicalness|6832318 +methodism|6832365 +methodist|6832408 +methodist church|6832497 +methodist denomination|6832575 +methodists|6832654 +methodological|6832754 +methodological analysis|6832784 +methodology|6832842 +methotrexate|6832914 +methotrexate sodium|6833049 +methuselah|6833184 +methyl|6833332 +methyl alcohol|6833408 +methyl bromide|6833479 +methyl ethyl ketone|6833511 +methyl group|6833556 +methyl orange|6833632 +methyl phenol|6833683 +methyl radical|6833720 +methyl salicylate|6833796 +methylated|6833860 +methylated spirit|6833911 +methylbenzene|6833956 +methyldopa|6834056 +methylene|6834141 +methylene blue|6834223 +methylene chloride|6834286 +methylene group|6834339 +methylene radical|6834421 +methylenedioxymethamphetamine|6834503 +methylphenidate|6834557 +methyltestosterone|6834615 +methylthionine chloride|6834671 +metic|6834734 +metical|6834786 +meticorten|6834828 +meticulosity|6834956 +meticulous|6835058 +meticulousness|6835122 +metier|6835224 +metis|6835378 +metonym|6835410 +metonymic|6835432 +metonymical|6835485 +metonymy|6835538 +metopion|6835592 +metoprolol|6835629 +metralgia|6835727 +metrazol|6835759 +metrazol shock|6835873 +metrazol shock therapy|6835975 +metrazol shock treatment|6836077 +metre|6836179 +metrestick|6836324 +metric|6836366 +metric capacity unit|6836605 +metric function|6836774 +metric grain|6836837 +metric hundredweight|6836896 +metric linear unit|6836993 +metric space|6837052 +metric system|6837111 +metric ton|6837165 +metric unit|6837227 +metric weight unit|6837280 +metrical|6837349 +metrical foot|6837435 +metrical unit|6837510 +metricate|6837585 +metrication|6837652 +metricise|6837694 +metricize|6837798 +metrics|6837902 +metrification|6838107 +metrify|6838195 +metritis|6838299 +metro|6838357 +metrological|6838455 +metrology|6838506 +metronidazole|6838555 +metronome|6838618 +metronome marking|6838646 +metronymic|6838709 +metropolis|6838745 +metropolitan|6838821 +metroptosis|6838907 +metrorrhagia|6838973 +metroxylon|6839027 +metroxylon sagu|6839105 +metternich|6839171 +mettle|6839305 +mettlesome|6839370 +mettlesomeness|6839471 +metycaine|6839513 +meuniere butter|6839617 +meuse|6839678 +meuse river|6840104 +meuse-argonne|6839832 +meuse-argonne operation|6839963 +mevacor|6840264 +mew|6840369 +mew gull|6840538 +mewl|6840602 +mews|6840643 +mexicali|6840758 +mexican|6840814 +mexican beaded lizard|6840975 +mexican bean beetle|6841077 +mexican black cherry|6841215 +mexican capital|6841281 +mexican cypress|6841386 +mexican fire plant|6841501 +mexican flameleaf|6841611 +mexican freetail bat|6841755 +mexican green|6841878 +mexican hairless|6841964 +mexican hat|6842041 +mexican husk tomato|6842117 +mexican hyssop|6842300 +mexican jumping bean|6842371 +mexican juniper|6842453 +mexican mint|6842538 +mexican monetary unit|6842602 +mexican nut pine|6842669 +mexican onyx|6842749 +mexican peso|6842833 +mexican pocket mouse|6842895 +mexican poppy|6842976 +mexican revolution|6843080 +mexican spanish|6843138 +mexican standoff|6843187 +mexican sunflower|6843240 +mexican swamp cypress|6843301 +mexican tea|6843400 +mexican tulip poppy|6843604 +mexican valium|6843694 +mexican war|6843805 +mexican-american|6840915 +mexicano|6843850 +mexico|6843902 +mexico city|6843992 +mexiletine|6844093 +mexitil|6844182 +meyer guggenheim|6844279 +meyerbeer|6844347 +meyerhof|6844423 +mezcal|6844495 +mezereon|6844554 +mezereum|6844611 +mezuza|6844634 +mezuzah|6844678 +mezzanine|6844722 +mezzanine floor|6844811 +mezzo|6844871 +mezzo-relievo|6844943 +mezzo-rilievo|6845044 +mezzo-soprano|6845145 +mezzotint|6845209 +mf|6845234 +mfa|6845282 +mflop|6845335 +mg|6845435 +mho|6845548 +mhz|6845603 +mi|6845669 +miami|6846271 +miami beach|6846384 +miaou|6846446 +miaow|6846522 +miasma|6846598 +miasmal|6846664 +miasmic|6846705 +mica|6846785 +micah|6846861 +micawber|6846938 +micelle|6847033 +michael|6847059 +michael assat|6847094 +michael ellis de bakey|6847270 +michael faraday|6847369 +michael gerald tyson|6847436 +michael jackson|6847527 +michael joe jackson|6847632 +michael ondaatje|6847741 +michael philip jagger|6847831 +michaelmas|6847913 +michaelmas daisy|6847984 +michaelmas day|6848066 +michaelmastide|6848141 +micheas|6848187 +michel de notredame|6848266 +michel eyquem montaigne|6848350 +michel montaigne|6848448 +michel ney|6848539 +michelangelesque|6848628 +michelangelo|6848740 +michelangelo buonarroti|6848869 +michelangelo merisi da caravaggio|6849009 +michelson|6849108 +michelson-morley experiment|6849205 +michener|6849297 +michigan|6849375 +michigan lily|6849552 +michigander|6849614 +michinomiya hirohito|6849666 +mick|6849734 +mick jagger|6849775 +mickey|6849847 +mickey charles mantle|6849890 +mickey finn|6849991 +mickey mantle|6850055 +mickey mouse|6850148 +mickey spillane|6850319 +mickle|6850407 +micmac|6850647 +miconazole|6850746 +micro|6850843 +micro chip|6850908 +micro-cook|6850864 +microbalance|6851091 +microbar|6851121 +microbat|6851172 +microbe|6851222 +microbial|6851262 +microbic|6851303 +microbiologist|6851344 +microbiology|6851393 +microbrachia|6851442 +microbrewery|6851506 +microcentrum|6851536 +microcephalic|6851606 +microcephalous|6851698 +microcephalus|6851790 +microcephaly|6851880 +microchip|6851970 +microchiroptera|6852072 +microcircuit|6852151 +micrococcaceae|6852209 +micrococcus|6852286 +microcode|6852352 +microcomputer|6852399 +microcopy|6852460 +microcosm|6852503 +microcosmic|6852536 +microcosmic salt|6852570 +microcrystalline|6852601 +microcyte|6852639 +microcytic anaemia|6852689 +microcytic anemia|6852750 +microcytosis|6852811 +microdesmidae|6852862 +microdipodops|6852932 +microdot|6853002 +microeconomic|6853050 +microeconomic expert|6853117 +microeconomics|6853188 +microeconomist|6853257 +microelectronic|6853328 +microelectronics|6853364 +microevolution|6853402 +microfiche|6853459 +microfilm|6853489 +microfossil|6853543 +microgametophyte|6853571 +microgauss|6853609 +microglia|6853647 +microgliacyte|6853681 +microgram|6853745 +microgramma|6853799 +microgramma-piloselloides|6853861 +microhylidae|6853942 +micromeria|6854051 +micromeria chamissonis|6854119 +micromeria douglasii|6854248 +micromeria juliana|6854375 +micrometeor|6854451 +micrometeoric|6854512 +micrometeorite|6854544 +micrometeoritic|6854605 +micrometeoroid|6854639 +micrometer|6854700 +micrometer caliper|6854825 +micrometer gauge|6854917 +micromicron|6855009 +micromillimeter|6855069 +micromillimetre|6855164 +micromyx|6855259 +micromyx minutus|6855314 +micron|6855377 +micronase|6855423 +micronesia|6855501 +micronor|6855615 +micronutrient|6855755 +microorganism|6855795 +micropaleontology|6855833 +micropenis|6855899 +microphage|6855953 +microphallus|6855996 +microphone|6856050 +microphone boom|6856103 +microphoning|6856138 +microphotometer|6856173 +micropogonias|6856211 +micropogonias undulatus|6856279 +microprocessor|6856361 +micropterus|6856424 +micropterus dolomieu|6856486 +micropterus pseudoplites|6856639 +micropterus salmoides|6856748 +micropylar|6856903 +micropyle|6856931 +microradian|6856959 +microscope|6856993 +microscope slide|6857023 +microscope stage|6857079 +microscopic|6857120 +microscopic anatomy|6857293 +microscopic field|6857346 +microscopical|6857393 +microscopist|6857503 +microscopium|6857550 +microscopy|6857599 +microsecond|6857628 +microseism|6857672 +microsoft disk operating system|6857743 +microsomal|6857849 +microsome|6857876 +microsorium|6857903 +microsorium punctatum|6857965 +microsporangium|6858049 +microspore|6858106 +microsporidian|6858132 +microsporophyll|6858166 +microsporum|6858212 +microstomus|6858276 +microstomus kitt|6858338 +microstrobos|6858429 +microstrobos niphophilus|6858500 +microsurgery|6858588 +microtome|6858683 +microtubule|6858724 +microtus|6858752 +microtus ochrogaster|6858807 +microtus pennsylvaticus|6858888 +microtus richardsoni|6858987 +microvolt|6859082 +microwave|6859116 +microwave bomb|6859279 +microwave diathermy machine|6859315 +microwave linear accelerator|6859370 +microwave oven|6859433 +microwave radar|6859485 +microwave spectroscopy|6859613 +microwave spectrum|6859736 +micruroides|6859773 +micruroides euryxanthus|6859838 +micrurus|6859965 +micrurus fulvius|6860021 +micturate|6860134 +micturition|6860302 +micturition reflex|6860384 +mid|6860510 +mid-april|6860530 +mid-atlantic|6860593 +mid-atlantic states|6860652 +mid-august|6860773 +mid-december|6860838 +mid-eighties|6860907 +mid-february|6860951 +mid-fifties|6861020 +mid-forties|6861062 +mid-january|6861104 +mid-july|6861171 +mid-june|6861232 +mid-march|6861293 +mid-may|6861356 +mid-nineties|6861415 +mid-november|6861459 +mid-october|6861528 +mid-off|6861595 +mid-on|6861621 +mid-september|6861646 +mid-seventies|6861717 +mid-sixties|6861763 +mid-thirties|6861805 +mid-twenties|6861866 +mid-water|6861910 +midafternoon|6861949 +midair|6861992 +midas|6862014 +midas touch|6862050 +midazolam|6862091 +midbrain|6862132 +midday|6862181 +midden|6862258 +middle|6862434 +middle age|6863125 +middle ages|6863158 +middle atlantic|6863252 +middle buster|6863314 +middle c|6863417 +middle cerebral artery|6863467 +middle cerebral vein|6863531 +middle class|6863607 +middle distance|6863681 +middle ear|6863748 +middle east|6863820 +middle eastern|6863943 +middle english|6864053 +middle finger|6864117 +middle greek|6864147 +middle high german|6864246 +middle irish|6864328 +middle low german|6864382 +middle meningeal artery|6864451 +middle name|6864518 +middle of the roader|6864544 +middle paleolithic|6864620 +middle school|6864701 +middle temporal vein|6864771 +middle term|6864831 +middle thyroid vein|6864857 +middle watch|6864914 +middle west|6864979 +middle-aged|6862740 +middle-aged man|6862765 +middle-class|6862805 +middle-ear deafness|6862925 +middle-level|6863034 +middle-of-the-road|6863065 +middlebreaker|6865092 +middlebrow|6865195 +middleman|6865268 +middlemost|6865388 +middleton|6865424 +middleweight|6865503 +middling|6865615 +middy|6865766 +middy blouse|6865801 +mideast|6865836 +midfield|6865955 +midgard|6866004 +midge|6866060 +midget|6866080 +midgrass|6866185 +midi|6866209 +midi-pyrenees|6866394 +midinette|6866445 +midiron|6866495 +midland|6866526 +midline|6866612 +midmost|6866650 +midnight|6866719 +midnight sun|6866754 +midplane|6866799 +midpoint|6866837 +midrib|6866875 +midriff|6866912 +midsection|6867043 +midshipman|6867090 +midships|6867122 +midst|6867158 +midstream|6867195 +midsummer|6867245 +midsummer day|6867437 +midsummer eve|6867524 +midsummer night|6867619 +midsummer's day|6867297 +midsummer-men|6867386 +midterm|6867716 +midterm exam|6867842 +midterm examination|6867914 +midvein|6867986 +midwatch|6868023 +midway|6868088 +midway islands|6868257 +midweek|6868302 +midweekly|6868362 +midwest|6868422 +midwestern|6868531 +midwife|6868559 +midwife toad|6868594 +midwifery|6868776 +midwinter|6868882 +mien|6868935 +mierkat|6869001 +mies van der rohe|6869053 +mifepristone|6869142 +miff|6869246 +miffed|6869331 +might|6869437 +might-have-been|6869478 +mightiness|6869509 +mighty|6869550 +mighty mouse|6869596 +mignonette|6869648 +mignonette family|6869703 +migraine|6869782 +migrant|6869863 +migrant shrike|6869935 +migrate|6869994 +migration|6870041 +migration route|6870146 +migrational|6870199 +migrator|6870277 +migratory|6870377 +migratory grasshopper|6870431 +migratory locust|6870469 +migratory quail|6870521 +miguel de cervantes|6870598 +miguel de cervantes saavedra|6870740 +miguel jose serra|6870891 +mihrab|6870978 +mikado|6871036 +mikania|6871066 +mikania scandens|6871125 +mike|6871250 +mike tyson|6871303 +mikhail aleksandrovich bakunin|6871384 +mikhail bakunin|6871510 +mikhail baryshnikov|6871621 +mikhail glinka|6871723 +mikhail gorbachev|6871803 +mikhail ilarionovich kutuzov|6871920 +mikhail ivanovich glinka|6872028 +mikhail ivanovich kalinin|6872118 +mikhail kalinin|6872235 +mikhail sergeyevich gorbachev|6872342 +mikhail yurievich lermontov|6872471 +mikir-meithei|6872560 +mikolaj kopernik|6872607 +mikvah|6872714 +mil|6872735 +milady|6872899 +milage|6872946 +milan|6872979 +milanese|6873036 +milano|6873091 +milch|6873149 +milch cow|6873295 +milcher|6873394 +mild|6873493 +mild silver protein|6873646 +mild steel|6873694 +mild-mannered|6873618 +mildew|6873753 +mildly|6873825 +mildness|6873847 +mildred ella didrikson|6873938 +mildred ella didrikson zaharias|6874086 +mile|6874243 +mile-high city|6874659 +mileage|6874739 +mileometer|6874860 +milepost|6874915 +miler|6874963 +miles davis|6875004 +miles dewey davis jr.|6875087 +miles gloriosus|6875180 +miles per gallon|6875230 +miles per hour|6875281 +miles standish|6875358 +milestone|6875438 +milfoil|6875511 +milhaud|6875565 +miliaria|6875614 +miliary fever|6875692 +miliary tuberculosis|6875752 +milieu|6875803 +militainment|6875844 +militance|6875890 +militancy|6875948 +militant|6876006 +militant tendency|6876159 +militarisation|6876226 +militarise|6876306 +militarised|6876395 +militarism|6876434 +militarist|6876466 +militaristic|6876510 +militarization|6876541 +militarize|6876621 +militarized|6876710 +military|6876749 +military academy|6877150 +military action|6877184 +military adviser|6877229 +military advisor|6877324 +military attache|6877419 +military band|6877453 +military blockade|6877494 +military campaign|6877572 +military capability|6877637 +military censorship|6877741 +military ceremony|6877807 +military chaplain|6877901 +military commission|6877962 +military control|6878051 +military court|6878103 +military drill|6878153 +military engineer|6878229 +military expedition|6878310 +military force|6878396 +military formation|6878472 +military governor|6878510 +military greeting|6878546 +military group|6878600 +military headquarters|6878676 +military hospital|6878745 +military installation|6878791 +military intelligence|6878844 +military intelligence section 5|6878974 +military intelligence section 6|6879101 +military issue|6879239 +military junta|6879303 +military law|6879379 +military leader|6879419 +military machine|6879451 +military man|6879542 +military march|6879628 +military mission|6879702 +military music|6879765 +military officer|6879839 +military operation|6879920 +military pace|6879967 +military personnel|6880002 +military plane|6880127 +military police|6880200 +military policeman|6880244 +military position|6880308 +military post|6880350 +military posture|6880400 +military press|6880504 +military quarters|6880548 +military rank|6880600 +military rating|6880660 +military reserve|6880720 +military science|6880820 +military service|6880949 +military strength|6881028 +military training|6881132 +military uniform|6881189 +military unit|6881223 +military vehicle|6881299 +military volunteer|6881333 +military-industrial complex|6877097 +militate|6881428 +militia|6881470 +militiaman|6881558 +milium|6881586 +milk|6881631 +milk adder|6882111 +milk bar|6882215 +milk can|6882264 +milk chocolate|6882298 +milk cow|6882332 +milk float|6882431 +milk glass|6882455 +milk intolerance|6882492 +milk leg|6882721 +milk of magnesia|6882783 +milk powder|6882865 +milk pox|6882925 +milk punch|6883079 +milk river|6883105 +milk shake|6883147 +milk sickness|6883270 +milk snake|6883332 +milk sugar|6883436 +milk thistle|6883477 +milk tooth|6883636 +milk vetch|6883703 +milk wagon|6883842 +milk whey|6883966 +milk-vetch|6881941 +milk-white|6882080 +milkcap|6884008 +milker|6884052 +milking machine|6884151 +milking shorthorn|6884184 +milking stool|6884268 +milkless|6884297 +milklike|6884319 +milkmaid|6884358 +milkman|6884428 +milkshake|6884480 +milksop|6884522 +milkwagon|6884581 +milkweed|6884624 +milkweed butterfly|6884723 +milkweed family|6884818 +milkwort|6884913 +milkwort family|6884950 +milky|6885027 +milky way|6885066 +milky way galaxy|6885157 +milky way system|6885255 +mill|6885353 +mill about|6885904 +mill agent|6886053 +mill around|6886079 +mill-girl|6885746 +mill-hand|6885835 +millais|6886227 +millard fillmore|6886292 +millay|6886444 +millboard|6886513 +milldam|6886543 +milled|6886580 +millenarian|6886615 +millenarianism|6886717 +millenarist|6886804 +millenary|6886855 +millennial|6886956 +millennian|6887020 +millennium|6887084 +millenniumism|6887246 +millepede|6887333 +miller|6887381 +miller's-thumb|6887676 +millerite|6887708 +millet|6887735 +millettia|6887939 +milliammeter|6887963 +milliampere|6887993 +milliard|6888030 +millibar|6888088 +millicurie|6888120 +millidegree|6888159 +milliequivalent|6888197 +millifarad|6888261 +milligram|6888298 +millihenry|6888351 +millikan|6888387 +milliliter|6888448 +millilitre|6888544 +millime|6888640 +millimeter|6888680 +millimeter of mercury|6888733 +millimetre|6888789 +millimicron|6888842 +milline|6888937 +milliner|6888968 +millinery|6889052 +milling|6889126 +milling machine|6889148 +million|6889203 +million floating point operations per second|6889294 +million instructions per second|6889388 +millionaire|6889459 +millionairess|6889512 +millionfold|6889567 +millions|6889603 +millionth|6889771 +milliped|6889863 +millipede|6889911 +milliradian|6889959 +millisecond|6889993 +millivolt|6890042 +millivoltmeter|6890079 +milliwatt|6890113 +millpond|6890143 +millrace|6890171 +millrun|6890205 +mills|6890239 +millstone|6890583 +millwheel|6890709 +millwork|6890751 +millwright|6890778 +milne|6890805 +milo|6890873 +milo maize|6890912 +milometer|6890951 +milontin|6891006 +milord|6891114 +milquetoast|6891150 +milt|6891221 +miltiades|6891298 +miltomate|6891348 +milton|6891456 +milton friedman|6891496 +milton snavely hershey|6891572 +miltonia|6891683 +miltown|6891755 +milvus|6891910 +milvus migrans|6891957 +milwaukee|6892012 +mimamsa|6892070 +mime|6892114 +mimeo|6892349 +mimeograph|6892462 +mimeograph machine|6892570 +mimer|6892650 +mimesis|6892743 +mimetic|6892817 +mimic|6892868 +mimicker|6892965 +mimicry|6893011 +mimidae|6893077 +mimir|6893129 +mimosa|6893156 +mimosa bush|6893246 +mimosa pudica|6893360 +mimosa sensitiva|6893484 +mimosaceae|6893550 +mimosoideae|6893618 +mimus|6893692 +mimus polyglotktos|6893736 +min|6893821 +min dialect|6893965 +mina|6894054 +minacious|6894115 +minah|6894214 +minamata bay|6894275 +minamata disease|6894314 +minaret|6894375 +minato ohashi bridge|6894398 +minatory|6894467 +mince|6894566 +mince pie|6894729 +mincemeat|6894752 +mincer|6894803 +mincing|6894851 +mincing machine|6894907 +mind|6894955 +mind game|6896060 +mind reader|6896108 +mind's eye|6895473 +mind-altering|6895536 +mind-altering drug|6895585 +mind-bending|6895687 +mind-blowing|6895748 +mind-boggling|6895826 +mind-expanding|6895860 +mind-set|6895910 +mindanao|6896277 +minded|6896311 +minden|6896406 +minder|6896461 +mindful|6896507 +mindfully|6896622 +mindfulness|6896662 +mindless|6896709 +mindlessly|6896906 +mindlessness|6896937 +mindoro|6897059 +mindset|6897091 +mine|6897160 +mine detector|6897274 +mine disposal|6897329 +mine field|6897373 +mine pig|6897526 +mine run|6897553 +mined|6897626 +minefield|6897681 +minelayer|6897758 +minelaying|6897782 +miner|6897843 +miner's cat|6897906 +miner's lettuce|6898044 +mineral|6898132 +mineral deficiency|6898261 +mineral dressing|6898310 +mineral extraction|6898427 +mineral jelly|6898544 +mineral kingdom|6898608 +mineral oil|6898641 +mineral pitch|6898666 +mineral processing|6898705 +mineral resources|6898822 +mineral tar|6898884 +mineral vein|6898920 +mineral water|6898978 +mineral wax|6899016 +mineral wool|6899084 +mineralized|6899150 +mineralocorticoid|6899204 +mineralogist|6899281 +mineralogy|6899328 +minerva|6899356 +mineshaft|6899393 +minestrone|6899442 +minesweeper|6899497 +minesweeping|6899523 +mineworker|6899559 +ming|6899622 +ming dynasty|6899662 +ming tree|6899710 +minge|6899750 +minginess|6899853 +mingle|6899981 +mingle-mangle|6900062 +mingling|6900278 +mingy|6900344 +mini|6900396 +miniate|6900415 +miniature|6900482 +miniature fan palm|6900560 +miniature golf|6900637 +miniature pinscher|6900676 +miniature poodle|6900713 +miniature schnauzer|6900757 +miniaturisation|6900796 +miniaturise|6900847 +miniaturist|6900894 +miniaturization|6900923 +miniaturize|6900974 +minibar|6901021 +minibike|6901072 +minicab|6901116 +minicar|6901163 +minicomputer|6901217 +minify|6901256 +minim|6901308 +minimal|6901441 +minimal art|6901579 +minimal brain damage|6901654 +minimal brain dysfunction|6901822 +minimalism|6901990 +minimalist|6902065 +minimally invasive coronary bypass surgery|6902196 +minimisation|6902269 +minimise|6902344 +minimization|6902437 +minimize|6902512 +minimized|6902667 +minimum|6902704 +minimum wage|6902938 +mining|6902998 +mining bee|6903088 +mining company|6903129 +mining engineer|6903161 +mining geology|6903226 +minion|6903267 +minipress|6903303 +miniscule|6903465 +miniskirt|6903500 +minister|6903525 +minister of finance|6903778 +minister plenipotentiary|6903853 +ministerial|6903934 +ministering|6904017 +ministrant|6904067 +ministration|6904161 +ministry|6904232 +ministry of transportation test|6904314 +minisub|6904415 +minisubmarine|6904458 +minium|6904501 +minivan|6904532 +miniver|6904600 +mink|6904645 +mink coat|6904737 +minke whale|6904770 +minkowski|6904863 +minneapolis|6904924 +minnesota|6904986 +minnesota multiphasic personality inventory|6905063 +minnesotan|6905221 +minnewit|6905261 +minnie bush|6905340 +minnie mouse|6905481 +minniebush|6905533 +minnow|6905593 +minoan|6905650 +minoan civilisation|6905727 +minoan civilization|6905845 +minoan culture|6905963 +minocin|6906076 +minocycline|6906137 +minor|6906190 +minor axis|6906661 +minor diatonic scale|6906686 +minor expense|6906746 +minor key|6906807 +minor league|6906850 +minor leaguer|6906909 +minor mode|6906972 +minor planet|6907015 +minor premise|6907063 +minor premiss|6907139 +minor role|6907215 +minor scale|6907288 +minor suit|6907348 +minor surgery|6907373 +minor term|6907469 +minor tranquilizer|6907494 +minor tranquilliser|6907706 +minor tranquillizer|6907918 +minor-league club|6906549 +minor-league team|6906605 +minority|6908130 +minority leader|6908217 +minors|6908253 +minos|6908425 +minotaur|6908458 +minoxidil|6908520 +minsk|6908580 +minster|6908628 +minstrel|6908655 +minstrel show|6908800 +minstrelsy|6908838 +mint|6908919 +mint candy|6909341 +mint family|6909372 +mint geranium|6909466 +mint julep|6909595 +mint sauce|6909630 +mintage|6909660 +minter|6909743 +mintmark|6909804 +minuartia|6909833 +minuend|6909904 +minuet|6909928 +minuit|6910026 +minus|6910103 +minus sign|6910213 +minuscular|6910238 +minuscule|6910278 +minute|6910516 +minute book|6910831 +minute gun|6910883 +minute hand|6910907 +minute of arc|6910942 +minute steak|6910995 +minutely|6911027 +minuteman|6911061 +minuteness|6911158 +minutes|6911242 +minutia|6911547 +minx|6911582 +minyan|6911660 +miocene|6911683 +miocene epoch|6911728 +miosis|6911779 +miotic|6911996 +mips|6912116 +mirabeau|6912192 +mirabilis|6912316 +mirabilis californica|6912387 +mirabilis jalapa|6912494 +mirabilis laevis|6912604 +mirabilis longiflora|6912706 +mirabilis multiflora|6912799 +mirabilis oblongifolia|6912915 +mirabilis uniflora|6913005 +miracle|6913117 +miracle man|6913258 +miracle play|6913347 +miracle worker|6913394 +miracle-worship|6913182 +miraculous|6913483 +miraculous food|6913579 +mirage|6913642 +miranda rule|6913696 +mirasol|6913746 +mire|6913819 +mired|6914023 +miri|6914058 +mirid|6914105 +mirid bug|6914156 +miridae|6914207 +mirish|6914289 +mirky|6914338 +miro|6914406 +mirounga|6914530 +mirror|6914585 +mirror carp|6914759 +mirror image|6914810 +mirror symmetry|6914883 +mirror-image relation|6914701 +mirrored|6914977 +mirrorlike|6915005 +mirth|6915045 +mirthful|6915116 +mirthfully|6915243 +mirthfulness|6915319 +mirthless|6915390 +miry|6915426 +misaddress|6915491 +misadventure|6915536 +misadvise|6915595 +misalign|6915638 +misalignment|6915682 +misalliance|6915726 +misally|6915801 +misanthrope|6915823 +misanthropic|6915894 +misanthropical|6915985 +misanthropist|6916074 +misanthropy|6916145 +misapplication|6916200 +misapply|6916359 +misapprehend|6916417 +misapprehension|6916522 +misappropriate|6916586 +misappropriated|6916655 +misappropriation|6916698 +misbegot|6916842 +misbegotten|6916912 +misbehave|6916982 +misbehavior|6917031 +misbehaviour|6917123 +misbelieve|6917215 +misbeliever|6917243 +misbranded|6917322 +miscalculate|6917361 +miscalculation|6917478 +miscall|6917549 +miscarriage|6917579 +miscarry|6917665 +miscast|6917710 +miscegenate|6917732 +miscegenation|6917770 +miscellanea|6917869 +miscellaneous|6918025 +miscellany|6918119 +misch metal|6918312 +mischance|6918350 +mischief|6918459 +mischief-maker|6918655 +mischief-making|6918758 +mischievous|6918909 +mischievously|6919014 +mischievousness|6919052 +miscible|6919302 +misconceive|6919348 +misconception|6919453 +misconduct|6919489 +misconstrual|6919672 +misconstruction|6919755 +misconstrue|6919881 +miscount|6919986 +miscreant|6920097 +miscreate|6920145 +miscreation|6920204 +miscue|6920246 +misdate|6920325 +misdating|6920347 +misdeal|6920400 +misdeed|6920434 +misdeliver|6920526 +misdemean|6920554 +misdemeanor|6920603 +misdemeanour|6920706 +misdirect|6920809 +misdirection|6921033 +misdo|6921193 +mise en scene|6921219 +miser|6921270 +miserable|6921293 +miserliness|6921608 +miserly|6921737 +misery|6921789 +misestimate|6921855 +misestimation|6921973 +misfeasance|6922044 +misfire|6922115 +misfit|6922254 +misfortunate|6922293 +misfortune|6922393 +misfunction|6922518 +misgauge|6922614 +misgive|6922671 +misgiving|6922698 +misgovern|6922886 +misgovernment|6922917 +misguide|6923000 +misguided|6923111 +mishandle|6923174 +mishap|6923434 +mishegaas|6923546 +mishegoss|6923638 +mishmash|6923730 +mishna|6923946 +mishnah|6924037 +mishnaic|6924129 +mishpachah|6924215 +mishpocha|6924292 +misidentify|6924369 +misinform|6924407 +misinformation|6924441 +misinterpret|6924482 +misinterpretation|6924629 +misjudge|6924698 +mislabeled|6924733 +mislaid|6924772 +mislay|6924804 +mislead|6924866 +misleader|6924969 +misleading|6925045 +misleadingly|6925098 +mismanage|6925143 +mismanagement|6925207 +mismarry|6925264 +mismatch|6925350 +mismatched|6925396 +mismate|6925535 +mismated|6925580 +misname|6925642 +misnomer|6925672 +misocainea|6925695 +misogamist|6925725 +misogamy|6925798 +misogynic|6925828 +misogynism|6925859 +misogynist|6925900 +misogynous|6925958 +misogyny|6925990 +misology|6926031 +misoneism|6926061 +misopedia|6926092 +misperceive|6926123 +mispickel|6926164 +misplace|6926204 +misplaced|6926305 +misplaced modifier|6926356 +misplacement|6926421 +misplay|6926481 +misprint|6926542 +mispronounce|6926642 +mispronunciation|6926717 +misquotation|6926757 +misquote|6926804 +misread|6926833 +misreading|6926890 +misreckoning|6926955 +misrelated|6927026 +misremember|6927056 +misrepresent|6927094 +misrepresentaation|6927194 +misrepresentation|6927286 +misrepresented|6927372 +misrule|6927444 +miss|6927527 +missal|6927799 +missed|6927838 +missel thrush|6927893 +misshapen|6927972 +misshapenness|6928041 +missile|6928098 +missile defence system|6928165 +missile defense system|6928235 +missing|6928305 +missing link|6928369 +mission|6928426 +mission bells|6928735 +mission impossible|6928938 +missionary|6928992 +missionary position|6929077 +missionary post|6929132 +missionary station|6929233 +missionary work|6929334 +missioner|6929372 +missippian period|6929431 +missis|6929562 +mississippi|6929604 +mississippi river|6929713 +mississippian|6929776 +missive|6929933 +missoula|6929986 +missouri|6930018 +missouri compromise|6930167 +missouri goldenrod|6930227 +missouri gourd|6930307 +missouri primrose|6930458 +missouri river|6930556 +missourian|6930610 +misspell|6930650 +misspelling|6930674 +misspend|6930704 +misstate|6930758 +misstatement|6930791 +misstep|6930823 +missus|6930932 +missy|6930974 +mist|6931047 +mist over|6931362 +mist-flower|6931186 +mistake|6931404 +mistaken|6931590 +mistakenly|6931647 +mistaking|6931678 +mister|6931747 +mistflower|6931781 +mistily|6931876 +mistime|6931900 +mistiming|6931928 +mistiness|6931981 +mistle thrush|6932040 +mistletoe|6932119 +mistletoe cactus|6932269 +mistletoe family|6932302 +mistletoe fig|6932457 +mistletoe rubber plant|6932547 +mistletoe thrush|6932637 +mistral|6932716 +mistranslate|6932759 +mistranslation|6932808 +mistreat|6932885 +mistreated|6932960 +mistreatment|6933080 +mistress|6933119 +mistrial|6933275 +mistrust|6933299 +mistrustful|6933492 +mistrustfully|6933558 +misty|6933594 +misty-eyed|6933646 +misunderstand|6933674 +misunderstanding|6933779 +misunderstood|6933893 +misuse|6933977 +misused|6934134 +mit|6934221 +mitchell|6934287 +mitchella|6934723 +mitchella repens|6934788 +mitchum|6934870 +mite|6934953 +mite box|6935073 +mitella|6935113 +mitella diphylla|6935170 +mitella pentandra|6935256 +miter|6935358 +miter box|6935531 +miter joint|6935570 +miter mushroom|6935621 +miterwort|6935670 +mitford|6935734 +mithan|6935875 +mithra|6935927 +mithracin|6935972 +mithraic|6936039 +mithraicism|6936100 +mithraism|6936175 +mithraist|6936248 +mithraistic|6936295 +mithramycin|6936356 +mithras|6936413 +mithridate mustard|6936495 +mithridates|6936609 +mithridates the great|6936697 +mithridates vi|6936795 +mitigable|6936886 +mitigate|6936914 +mitigated|6937040 +mitigating circumstance|6937130 +mitigation|6937200 +mitigative|6937346 +mitigatory|6937432 +mitochondrion|6937518 +mitogen|6937575 +mitomycin|6937598 +mitosis|6937654 +mitra|6937703 +mitral|6937736 +mitral stenosis|6937799 +mitral valve|6937888 +mitral valve prolapse|6937976 +mitral valve stenosis|6938030 +mitre|6938119 +mitre box|6938223 +mitre joint|6938262 +mitrewort|6938313 +mitrula elegans|6938377 +mitsvah|6938441 +mitt|6938535 +mittelschmerz|6938635 +mitten|6938681 +mittens|6938718 +mitterand|6938782 +mitzvah|6938895 +miwok|6938989 +mix|6939053 +mix in|6939536 +mix up|6939649 +mix-up|6939490 +mixable|6939857 +mixed|6939894 +mixed bag|6940231 +mixed bud|6940387 +mixed drink|6940410 +mixed economy|6940479 +mixed farming|6940526 +mixed marriage|6940579 +mixed metaphor|6940640 +mixed nuisance|6940673 +mixed-blood|6940054 +mixed-up|6940128 +mixer|6940706 +mixing|6940834 +mixing bowl|6940930 +mixing faucet|6940956 +mixologist|6940986 +mixture|6941050 +mizen|6941399 +mizenmast|6941479 +mizzen|6941527 +mizzen course|6941606 +mizzenmast|6941665 +mizzle|6941713 +mko|6941781 +ml|6941934 +mlitt|6942030 +mls|6942088 +mm|6942241 +mm hg|6942294 +mmpi|6942356 +mn|6942475 +mnemonic|6942605 +mnemonics|6942657 +mnemonist|6942683 +mnemosyne|6942709 +mnemotechnic|6942747 +mnemotechnical|6942799 +mniaceae|6942851 +mnium|6942906 +mo|6942950 +moa|6943064 +moan|6943112 +moaner|6943203 +moaning|6943322 +moat|6943374 +moated|6943401 +mob|6943434 +moban|6943621 +mobbish|6943811 +mobcap|6943847 +mobile|6943867 +mobile bay|6944385 +mobile canteen|6944420 +mobile home|6944489 +mobile phone|6944588 +mobile river|6944704 +mobilisation|6944752 +mobilise|6944882 +mobility|6945082 +mobilization|6945108 +mobilize|6945238 +mobius|6945438 +mobius strip|6945516 +moblike|6945559 +mobster|6945595 +mobula|6945660 +mobula hypostoma|6945707 +mobulidae|6945786 +mocambique|6945844 +mocassin|6945940 +moccasin|6945982 +moccasin flower|6946024 +moccasins|6946137 +mocha|6946209 +mock|6946317 +mock azalia|6946530 +mock orange|6946631 +mock privet|6946942 +mock sun|6946974 +mock turtle soup|6947038 +mock up|6947069 +mock-heroic|6946440 +mock-up|6946496 +mocker|6947112 +mockernut|6947246 +mockernut hickory|6947370 +mockery|6947494 +mocking|6947707 +mocking thrush|6947806 +mockingbird|6947858 +mockingly|6947924 +mod|6948000 +mod con|6948089 +modal|6948178 +modal logic|6948256 +modal value|6948337 +modality|6948376 +mode|6948560 +model|6948774 +model t|6949481 +modeled|6949543 +modeler|6949604 +modeling|6949638 +modeller|6949799 +modelling|6949833 +modem|6949933 +moderate|6949969 +moderate breeze|6950551 +moderate gale|6950606 +moderated|6950644 +moderately|6950682 +moderateness|6950782 +moderating|6950883 +moderation|6951028 +moderationist|6951230 +moderatism|6951342 +moderato|6951419 +moderator|6951442 +moderatorship|6951587 +modern|6951665 +modern ballet|6952076 +modern dance|6952120 +modern english|6952169 +modern era|6952233 +modern font|6952263 +modern greek|6952328 +modern hebrew|6952396 +modern jazz|6952440 +modern man|6952484 +modern times|6952538 +modern world|6952628 +modern-day|6952036 +moderne|6952718 +modernisation|6952750 +modernise|6952799 +modernised|6952886 +modernism|6952929 +modernist|6953078 +modernistic|6953132 +modernity|6953184 +modernization|6953296 +modernize|6953371 +modernized|6953458 +modernness|6953501 +modest|6953613 +modest moussorgsky|6953943 +modest mussorgsky|6954097 +modest petrovich moussorgsky|6954250 +modest petrovich mussorgsky|6954414 +modestly|6954577 +modestness|6954607 +modesty|6954671 +modicon|6954745 +modicum|6954883 +modifiable|6954950 +modification|6954981 +modified|6955152 +modified american plan|6955258 +modified radical mastectomy|6955327 +modifier|6955375 +modifier gene|6955558 +modify|6955610 +modigliani|6955672 +modillion|6955769 +modiolus|6955796 +modish|6955822 +modishly|6955886 +modishness|6955920 +modiste|6956001 +mods|6956151 +modular|6956223 +modulate|6956249 +modulated|6956427 +modulation|6956482 +module|6956688 +modulus|6956821 +modulus of elasticity|6956900 +modulus of rigidity|6956981 +modus operandi|6957074 +modus vivendi|6957124 +moehringia|6957230 +moehringia lateriflora|6957304 +moehringia mucosa|6957375 +moeller's glossitis|6957436 +mogadiscio|6957519 +mogadishu|6957601 +mogdad coffee|6957682 +mogen david|6957790 +moghul|6957905 +mogul|6957947 +mogul empire|6958206 +mohair|6958248 +mohammad|6958294 +mohammadanism|6958363 +mohammed|6958468 +mohammed ali|6958537 +mohammed reza pahlavi|6958605 +mohammed reza pahlevi|6958726 +mohammedan|6958847 +mohammedan calendar|6958988 +mohammedanism|6959121 +mohandas karamchand gandhi|6959297 +moharram|6959418 +mohave|6959486 +mohave desert|6959610 +mohawk|6959682 +mohawk river|6959766 +mohican|6959807 +mohican haircut|6959964 +mohria|6960021 +mohria caffrorum|6960068 +mohs scale|6960129 +moiety|6960218 +moil|6960276 +moira shearer|6960391 +moirae|6960471 +moirai|6960513 +moire|6960555 +moist|6960638 +moisten|6960670 +moistener|6960741 +moistening|6960776 +moistly|6960814 +moistness|6960837 +moisture|6960878 +moisturise|6960908 +moisturize|6960968 +mojarra|6961028 +mojave|6961077 +mojave aster|6961201 +mojave desert|6961286 +mojave rattlesnake|6961358 +mojo|6961445 +moke|6961465 +moksa|6961512 +mokulu|6961544 +mol|6961579 +mola|6961642 +mola lanceolata|6961716 +molal|6961808 +molality|6961859 +molar|6961891 +molar concentration|6962025 +molar pregnancy|6962079 +molarity|6962177 +molasses|6962231 +molasses cookie|6962261 +molasses kiss|6962307 +molasses taffy|6962346 +mold|6962376 +moldable|6962867 +moldavia|6962909 +moldboard|6962997 +moldboard plow|6963033 +molded|6963087 +molded salad|6963125 +molder|6963153 +moldered|6963197 +moldering|6963232 +moldiness|6963281 +molding|6963325 +moldova|6963577 +moldovan|6963664 +moldovan monetary unit|6963723 +moldy|6963792 +mole|6963826 +mole cricket|6964047 +mole plant|6964077 +mole rat|6964218 +mole salamander|6964326 +molech|6964405 +molecular|6964449 +molecular biologist|6964504 +molecular biology|6964558 +molecular formula|6964612 +molecular genetics|6964664 +molecular weight|6964717 +molecule|6964772 +molehill|6964867 +moleskin|6964921 +molest|6964969 +molestation|6965168 +molested|6965270 +molester|6965345 +molidae|6965382 +moliere|6965434 +molindone|6965503 +moline|6965687 +molisch reaction|6965814 +molisch test|6965915 +molisch's test|6965715 +molise|6966012 +moll|6966050 +mollah|6966128 +molle|6966220 +mollie|6966287 +mollienesia|6966356 +mollification|6966418 +mollify|6966508 +molluga|6966709 +molluga verticillata|6966774 +mollusc|6966858 +mollusca|6966906 +molluscum|6966956 +molluscum contagiosum|6967050 +mollusk|6967091 +mollusk family|6967139 +mollusk genus|6967170 +molly|6967199 +molly miller|6967268 +molly pitcher|6967346 +mollycoddle|6967440 +mollycoddler|6967595 +mollymawk|6967695 +molnar|6967750 +moloch|6967808 +moloch horridus|6967906 +molokai|6967982 +molokai island|6968029 +molossidae|6968083 +molothrus|6968146 +molotov|6968202 +molotov cocktail|6968340 +molt|6968414 +molten|6968573 +molter|6968633 +molting|6968705 +molucca balm|6968769 +moluccas|6968847 +molucella|6968895 +molucella laevis|6968960 +molva|6969055 +molva molva|6969099 +molybdenite|6969156 +molybdenum|6969185 +molybdenum steel|6969248 +mom|6969286 +mombasa|6969368 +mombin|6969427 +mombin tree|6969511 +moment|6969575 +moment of a magnet|6969784 +moment of inertia|6969843 +moment of truth|6969878 +momentaneous|6969968 +momentarily|6970024 +momentary|6970080 +momently|6970136 +momentous|6970195 +momentousness|6970240 +momentum|6970274 +momism|6970353 +momma|6970409 +mommsen|6970491 +mommy|6970558 +momordica|6970640 +momordica balsamina|6970716 +momordica charantia|6970795 +momos|6970873 +momot|6970912 +momotidae|6970951 +momotus|6971009 +momus|6971059 +mon|6971098 +mon-khmer|6971171 +mona|6971231 +monacan|6971307 +monaco|6971398 +monaco-ville|6971500 +monad|6971552 +monadic operation|6971610 +monal|6971663 +monandrous|6971694 +monandry|6971725 +monarch|6971797 +monarch butterfly|6971964 +monarchal|6972059 +monarchial|6972196 +monarchic|6972266 +monarchical|6972378 +monarchism|6972511 +monarchist|6972579 +monarchy|6972630 +monarda|6972667 +monarda citriodora|6972720 +monarda clinopodia|6972810 +monarda didyma|6972890 +monarda fistulosa|6972993 +monarda pectinata|6973077 +monarda punctata|6973165 +monardella|6973240 +monardella lanceolata|6973319 +monario|6973407 +monas|6973452 +monastery|6973567 +monastic|6973615 +monastic habit|6973708 +monastic order|6973738 +monastical|6973804 +monasticism|6973875 +monatomic|6973931 +monaul|6973977 +monaural|6974008 +monaurally|6974076 +monazite|6974117 +monday|6974143 +mondrian|6974178 +monecious|6974250 +monegasque|6974365 +monel metal|6974486 +monell metal|6974563 +monera|6974641 +moneran|6974687 +moneron|6974740 +moneses|6974779 +moneses uniflora|6974840 +monestrous|6974966 +monet|6975006 +monetarism|6975048 +monetarist|6975084 +monetary|6975130 +monetary fund|6975192 +monetary resource|6975226 +monetary standard|6975307 +monetary system|6975349 +monetary unit|6975431 +monetary value|6975479 +monetisation|6975520 +monetise|6975587 +monetization|6975719 +monetize|6975786 +money|6975918 +money belt|6976060 +money box|6976085 +money changer|6976180 +money cowrie|6976240 +money dealer|6976290 +money handler|6976379 +money laundering|6976468 +money market|6976524 +money order|6976573 +money plant|6976647 +money supply|6976748 +money-spinner|6975998 +moneybag|6976835 +moneyed|6976868 +moneyer|6976942 +moneygrubber|6977003 +moneylender|6977036 +moneyless|6977103 +moneymaker|6977144 +moneymaking|6977224 +moneyman|6977337 +moneywort|6977376 +monger|6977461 +mongo|6977578 +mongol|6977617 +mongol dynasty|6977770 +mongol tatar|6977835 +mongolia|6977900 +mongolian|6978085 +mongolian monetary unit|6978351 +mongolian people's republic|6978422 +mongolian race|6978538 +mongolianism|6978609 +mongolic|6978849 +mongolic language|6978927 +mongolism|6979014 +mongoloid|6979254 +mongoloid race|6979558 +mongoose|6979629 +mongrel|6979700 +mongrelise|6979785 +mongrelize|6979822 +monic polynomial|6979859 +monica seles|6979908 +monied|6979963 +moniker|6979987 +monilia|6980092 +monilia albicans|6980116 +monilia disease|6980184 +moniliaceae|6980257 +moniliales|6980323 +moniliasis|6980384 +monish|6980457 +monism|6980542 +monistat|6980621 +monistic|6980727 +monition|6980807 +monitor|6980987 +monitor lizard|6981282 +monitor program|6981327 +monitoring|6981425 +monitoring device|6981477 +monitoring program|6981520 +monitory|6981618 +monitrice|6981687 +monk|6981750 +monk's cloth|6981856 +monkey|6981908 +monkey around|6982424 +monkey bread|6982515 +monkey bridge|6982561 +monkey business|6982654 +monkey dog|6982788 +monkey jacket|6982847 +monkey ladder|6982902 +monkey nut|6982932 +monkey pinscher|6983007 +monkey pod|6983066 +monkey puzzle|6983237 +monkey wrench|6983300 +monkey-bread tree|6982182 +monkey-wrench|6982269 +monkeypod|6983455 +monkfish|6983545 +monkish|6983747 +monkshood|6983777 +monmouth court house|6983849 +monnet|6983965 +mono|6984026 +mono-iodotyrosine|6984172 +monoamine|6984212 +monoamine neurotransmitter|6984249 +monoamine oxidase|6984295 +monoamine oxidase inhibitor|6984333 +monoatomic|6984410 +monobasic acid|6984456 +monoblast|6984485 +monoblastic leukemia|6984513 +monoblstic leukaemia|6984695 +monocanthidae|6984877 +monocanthus|6984947 +monocarboxylic|6985009 +monocarp|6985061 +monocarpic|6985137 +monocarpic plant|6985179 +monocarpous plant|6985255 +monochamus|6985331 +monochromacy|6985395 +monochromasy|6985560 +monochromat|6985725 +monochromatic|6985765 +monochromatic vision|6985973 +monochromatism|6986138 +monochrome|6986303 +monochromia|6986465 +monochromic|6986630 +monochromous|6986715 +monocle|6986800 +monocled|6986849 +monoclinal|6986909 +monocline|6986938 +monoclinic|6986988 +monoclinous|6987019 +monoclonal|6987067 +monoclonal antibody|6987101 +monocot|6987139 +monocot family|6987215 +monocot genus|6987263 +monocotyledon|6987308 +monocotyledonae|6987384 +monocotyledones|6987519 +monocotyledonous|6987654 +monocracy|6987697 +monocular vision|6987853 +monocycle|6987921 +monocyte|6987965 +monocytic leukaemia|6988073 +monocytic leukemia|6988255 +monocytosis|6988437 +monod|6988466 +monodic|6988533 +monodical|6988571 +monodon|6988609 +monodon monoceros|6988661 +monodontidae|6988736 +monody|6988805 +monoecious|6988854 +monoestrous|6988980 +monogamist|6989020 +monogamous|6989098 +monogamousness|6989161 +monogamy|6989248 +monogenesis|6989335 +monogenic|6989402 +monogenic disease|6989443 +monogenic disorder|6989653 +monogram|6989863 +monograph|6989888 +monogynic|6989916 +monogynist|6989957 +monogynous|6990035 +monogyny|6990076 +monohybrid|6990118 +monohybrid cross|6990162 +monohydrate|6990271 +monoicous|6990300 +monolatry|6990415 +monolingual|6990442 +monolith|6990475 +monolithic|6990499 +monologist|6990574 +monologue|6990622 +monologuise|6990917 +monologuize|6990985 +monomania|6991053 +monomaniac|6991107 +monomaniacal|6991164 +monomer|6991210 +monometallic|6991254 +monomorium|6991300 +monomorium minimum|6991364 +monomorium pharaonis|6991446 +mononeuropathy|6991541 +monongahela|6991576 +monongahela river|6991633 +mononuclear|6991696 +mononuclear phagocyte system|6991742 +mononucleate|6991813 +mononucleosis|6991847 +mononychus olecranus|6991951 +monophonic|6992013 +monophonic music|6992109 +monophony|6992158 +monophthalmos|6992207 +monophysite|6992304 +monophysitic|6992445 +monophysitism|6992550 +monoplane|6992646 +monoplane flying fish|6992690 +monoplegia|6992754 +monoploid|6992790 +monopolisation|6992827 +monopolise|6992877 +monopoliser|6992961 +monopolist|6993020 +monopolistic|6993079 +monopolization|6993116 +monopolize|6993166 +monopolizer|6993250 +monopoly|6993309 +monopoly board|6993442 +monopsony|6993482 +monopteral|6993520 +monorail|6993551 +monorchidism|6993628 +monorchism|6993702 +monosaccharide|6993776 +monosaccharose|6993858 +monosemous|6993940 +monosemy|6993972 +monosodium glutamate|6994039 +monosomy|6994132 +monospaced font|6994236 +monostotic fibrous dysplasia|6994339 +monosyllabic|6994403 +monosyllabic word|6994434 +monosyllable|6994479 +monotheism|6994524 +monotheist|6994551 +monotheistic|6994601 +monotone|6994636 +monotonic|6994853 +monotonous|6994992 +monotony|6995083 +monotremata|6995150 +monotreme|6995214 +monotropa|6995264 +monotropa hypopithys|6995331 +monotropa uniflora|6995430 +monotropaceae|6995522 +monotype|6995603 +monotypic|6995689 +monounsaturated fatty acid|6995748 +monovalent|6995807 +monovular|6995866 +monoxide|6995895 +monozygotic twin|6995919 +monozygous twin|6995981 +monro's foramen|6996043 +monroe|6996141 +monroe doctrine|6996367 +monrovia|6996423 +mons|6996508 +mons pubis|6996645 +mons veneris|6996715 +monsieur|6996785 +monsignor|6996827 +monsoon|6996863 +monster|6996985 +monstera|6997264 +monstera deliciosa|6997316 +monstrance|6997380 +monstrosity|6997434 +monstrous|6997547 +monstrously|6997661 +mont blanc|6997734 +montage|6997792 +montagu|6997850 +montagu's harrier|6997905 +montaigne|6997974 +montan wax|6998058 +montana|6998082 +montanan|6998140 +montane|6998176 +monte|6998220 +monte bianco|6998284 +monte carlo|6998344 +montego bay|6998382 +montenegro|6998449 +monterey|6998562 +monterey bay|6998594 +monterey cypress|6998633 +monterey pine|6998718 +monterrey|6998794 +montespan|6998852 +montesquieu|6998959 +montessori|6999066 +monteverdi|6999133 +montevideo|6999192 +montez|6999259 +montezuma|6999357 +montezuma cypress|6999483 +montezuma ii|6999578 +montezuma's revenge|6999391 +montfort|6999621 +montgolfier|6999689 +montgomery|6999816 +montgomery ward|7000181 +montgomery's tubercle|7000074 +month|7000276 +month of sundays|7000370 +monthlong|7000433 +monthly|7000457 +montia|7000565 +montia chamissoi|7000627 +montia cordifolia|7000695 +montia lamprosperma|7000775 +montia perfoliata|7000881 +montmartre|7000987 +montpelier|7001081 +montrachet|7001145 +montreal|7001210 +montserrat|7001266 +montserratian|7001304 +monument|7001412 +monumental|7001547 +monumentalise|7001650 +monumentalize|7001754 +moo|7001858 +moo goo gai pan|7001969 +moo-cow|7001915 +mooch|7001999 +moocher|7002043 +mood|7002094 +moodiness|7002210 +moody|7002291 +moolah|7002555 +moon|7002696 +moon about|7003580 +moon around|7003620 +moon blindness|7003704 +moon carrot|7003876 +moon curser|7003933 +moon daisy|7004116 +moon on|7004240 +moon ray|7004298 +moon shell|7004495 +moon shot|7004615 +moon trefoil|7004665 +moon-curser|7003045 +moon-faced|7003228 +moon-ray|7003266 +moon-round|7003463 +moon-splashed|7003507 +moon-worship|7003538 +moonbeam|7004725 +mooneye|7004841 +moonfish|7004888 +moonflower|7005067 +moonie|7005128 +moonily|7005180 +moonless|7005216 +moonlight|7005243 +moonlike|7005335 +moonlit|7005379 +moonseed|7005410 +moonseed family|7005433 +moonshell|7005518 +moonshine|7005557 +moonshiner|7005716 +moonstone|7005786 +moonstruck|7005838 +moonwalk|7005873 +moonwort|7005919 +moony|7005983 +moor|7006046 +moor berry|7006411 +moor-bird|7006246 +moorage|7006515 +moorbird|7006621 +moorcock|7006705 +moore|7006788 +moorfowl|7007168 +moorgame|7007252 +moorhen|7007336 +mooring|7007484 +mooring anchor|7007572 +mooring line|7007617 +mooring mast|7007652 +mooring tower|7007694 +moorish|7007736 +moorish arch|7007924 +moorish architecture|7007985 +moorland|7008107 +moorwort|7008152 +moose|7008216 +moose-wood|7008272 +moosewood|7008527 +moot|7008702 +moot court|7008886 +mop|7008932 +mop handle|7009135 +mop up|7009181 +mop-headed|7009107 +mopboard|7009504 +mope|7009564 +mope around|7009715 +moped|7009746 +mopes|7009780 +mopper|7009905 +mopping|7009928 +moquelumnan|7009979 +moquette|7010027 +moraceae|7010075 +moraceous|7010167 +moraine|7010218 +moral|7010248 +moral excellence|7010567 +moral force|7010627 +moral hazard|7010687 +moral obligation|7010724 +moral philosophy|7010781 +moral principle|7010825 +morale|7010922 +morale booster|7011030 +morale builder|7011090 +morale building|7011124 +moralisation|7011184 +moralise|7011272 +moralism|7011421 +moralist|7011489 +moralistic|7011573 +morality|7011599 +morality play|7011684 +moralization|7011732 +moralize|7011820 +moralizing|7011969 +morally|7012030 +morals|7012057 +moranzanist patriotic front|7012189 +morass|7012328 +moratorium|7012376 +moravia|7012461 +moray|7012558 +moray eel|7012587 +moray firth|7012616 +morbid|7012655 +morbidity|7012759 +morbidness|7012921 +morbific|7012975 +morbilli|7013026 +morbilliform|7013089 +morceau|7013139 +morchella|7013220 +morchella angusticeps|7013278 +morchella conica|7013395 +morchella crassipes|7013507 +morchella esculenta|7013581 +morchella semilibera|7013678 +morchellaceae|7013762 +mordacious|7013834 +mordacity|7013918 +mordant|7013949 +mordecai richler|7014044 +mordva|7014109 +mordvin|7014200 +mordvinian|7014292 +more|7014387 +more and more|7014612 +more often than not|7014661 +more or less|7014719 +more than|7014806 +moreen|7014872 +morel|7014954 +morelia spilotes variegatus|7014978 +morello|7015081 +moreover|7015184 +mores|7015226 +moresque|7015366 +moreton bay|7015456 +moreton bay chestnut|7015493 +moreton bay pine|7015574 +moreton bay tulipwood|7015660 +morgan|7015741 +morgan city|7016087 +morgan le fay|7016125 +morganatic|7016188 +morganite|7016231 +morgantown|7016272 +morgen|7016332 +morgue|7016373 +moribund|7016425 +morion|7016484 +morlett's crocodile|7016516 +morley|7016575 +mormon|7016656 +mormon church|7016766 +mormon cricket|7016879 +mormon state|7016927 +mormon tabernacle|7016999 +mormonism|7017062 +mormons|7017105 +morn|7017276 +mornay sauce|7017354 +morning|7017402 +morning coat|7017940 +morning dress|7018001 +morning glory|7018061 +morning prayer|7018089 +morning room|7018135 +morning sickness|7018220 +morning star|7018262 +morning time|7018310 +morning-after pill|7017712 +morning-glory family|7017840 +moro|7018388 +moro islamic liberation front|7018416 +moro reflex|7018559 +moroccan|7018626 +moroccan dirham|7018713 +moroccan monetary unit|7018784 +morocco|7018853 +moron|7018969 +morone|7019050 +morone americana|7019097 +morone interrupta|7019188 +moronic|7019268 +moronity|7019306 +morose|7019408 +moroseness|7019489 +morosoph|7019587 +morph|7019638 +morphallaxis|7019709 +morphea|7019744 +morpheme|7019790 +morphemic|7019838 +morpheus|7019886 +morphia|7019941 +morphine|7020013 +morphogenesis|7020085 +morphologic|7020167 +morphological|7020330 +morphological rule|7020489 +morphology|7020557 +morphophoneme|7020738 +morphophonemic|7020771 +morphophonemic system|7020841 +morphophonemics|7020888 +morphophysiology|7020960 +morrigan|7021051 +morrigu|7021099 +morris|7021146 +morris chair|7021443 +morris dance|7021487 +morris dancer|7021548 +morris dancing|7021583 +morrison|7021644 +morristown|7021783 +morrow|7021819 +morrow's honeysuckle|7021882 +mors|7021963 +morse|7021994 +morse code|7022166 +morsel|7022233 +morta|7022330 +mortal|7022363 +mortal enemy|7022595 +mortal sin|7022627 +mortality|7022670 +mortality rate|7022787 +mortality table|7022871 +mortar|7022930 +mortar fire|7023043 +mortarboard|7023091 +mortgage|7023134 +mortgage application|7023236 +mortgage deed|7023283 +mortgage holder|7023336 +mortgage loan|7023380 +mortgage-backed security|7023181 +mortgaged|7023425 +mortgagee|7023455 +mortgager|7023499 +mortgagor|7023535 +mortice|7023571 +mortician|7023655 +mortification|7023751 +mortified|7023938 +mortify|7024016 +mortifying|7024273 +mortimer|7024367 +mortise|7024432 +mortise joint|7024569 +mortise-and-tenon joint|7024516 +mortmain|7024704 +morton|7024814 +mortuary|7024911 +morula|7025045 +morus|7025093 +morus alba|7025157 +morus nigra|7025226 +morus rubra|7025297 +mosaic|7025366 +mosaic culture|7025589 +mosaic gold|7025621 +mosaic law|7025666 +mosaicism|7025728 +mosan|7025757 +mosander|7025854 +moschus|7025911 +moschus moschiferus|7025963 +moscow|7026034 +moselle|7026124 +moses|7026160 +moses maimonides|7026250 +mosey|7026339 +mosh|7026365 +moshav|7026462 +moshe dayan|7026508 +moslem|7026600 +moslem calendar|7026740 +mosque|7026869 +mosquito|7026962 +mosquito bite|7027034 +mosquito boat|7027080 +mosquito craft|7027158 +mosquito fern|7027236 +mosquito hawk|7027335 +mosquito net|7027524 +mosquitofish|7027553 +moss|7027639 +moss agate|7027840 +moss animal|7027866 +moss campion|7027935 +moss family|7027996 +moss genus|7028024 +moss green|7028050 +moss hart|7028089 +moss locust|7028144 +moss phlox|7028219 +moss pink|7028297 +moss-grown|7027681 +moss-trooper|7027784 +mossad|7028437 +mossback|7028494 +mossbauer|7028540 +mosstone|7028611 +mossy|7028650 +mossy saxifrage|7028840 +mossy-cup oak|7028758 +mossycup oak|7028915 +most|7028997 +most especially|7029221 +most evil|7029272 +most importantly|7029309 +most recently|7029385 +most unattractive|7029412 +most undesirable|7029461 +most unpleasant|7029509 +most unsuitable|7029557 +most valuable player|7029606 +most wicked|7029659 +most-favored-nation|7029131 +most-valuable|7029178 +mostaccioli|7029696 +mostly|7029740 +mosul|7029830 +mot|7029880 +mot juste|7030005 +mot test|7030086 +motacilla|7030164 +motacillidae|7030220 +mote|7030287 +motel|7030355 +motel room|7030424 +motet|7030485 +moth|7030558 +moth bean|7030766 +moth miller|7030852 +moth mullein|7030885 +moth orchid|7030961 +moth plant|7031019 +moth-eaten|7030619 +moth-resistant|7030709 +mothball|7031077 +mother|7031136 +mother board|7032235 +mother carey's chicken|7032305 +mother carey's hen|7032412 +mother cell|7032515 +mother country|7032541 +mother figure|7032645 +mother fucker|7032687 +mother goose|7032917 +mother hen|7033003 +mother hubbard|7033093 +mother jones|7033151 +mother lode|7033223 +mother of thyme|7033268 +mother seton|7033370 +mother superior|7033477 +mother teresa|7033527 +mother theresa|7033641 +mother tongue|7033756 +mother wit|7033836 +mother's boy|7031337 +mother's daughter|7031390 +mother's day|7031431 +mother's milk|7031470 +mother's son|7031498 +mother-in-law|7031537 +mother-in-law plant|7031769 +mother-in-law's tongue|7031604 +mother-naked|7031864 +mother-of-pearl|7032002 +mother-of-pearl cloud|7032039 +mother-of-thousands|7032091 +motherese|7033961 +motherfucker|7034019 +motherhood|7034168 +motherland|7034239 +motherless|7034343 +motherlike|7034385 +motherliness|7034414 +motherly|7034492 +motherwell|7034536 +motherwort|7034593 +mothproof|7034653 +mothy|7034725 +motif|7034772 +motile|7034888 +motility|7034946 +motion|7035008 +motion picture|7035776 +motion sickness|7035902 +motion study|7035975 +motion-picture camera|7035330 +motion-picture fan|7035413 +motion-picture film|7035491 +motion-picture photography|7035564 +motion-picture show|7035650 +motional|7036102 +motionless|7036154 +motionlessness|7036215 +motivate|7036255 +motivated|7036321 +motivating|7036384 +motivation|7036482 +motivational|7036610 +motivative|7036653 +motivator|7036701 +motive|7036757 +motive power|7036925 +motiveless|7036976 +motivity|7037026 +motley|7037077 +motley fool|7037639 +motmot|7037699 +motoneuron|7037738 +motor|7037823 +motor aphasia|7037996 +motor area|7038095 +motor ataxia|7038201 +motor city|7038308 +motor control|7038388 +motor cortex|7038419 +motor end plate|7038525 +motor home|7038579 +motor horn|7038642 +motor hotel|7038733 +motor inn|7038802 +motor lodge|7038871 +motor memory|7038940 +motor mower|7038997 +motor nerve|7039047 +motor nerve fiber|7039081 +motor neuron|7039166 +motor oil|7039251 +motor pool|7039317 +motor region|7039343 +motor scooter|7039449 +motor torpedo boat|7039496 +motor vehicle|7039574 +motor-assisted|7037957 +motorbike|7039639 +motorboat|7039683 +motorbus|7039717 +motorcade|7039820 +motorcar|7039850 +motorcoach|7039929 +motorcycle|7040032 +motorcycle cop|7040108 +motorcycle policeman|7040196 +motorcycling|7040284 +motorcyclist|7040314 +motored|7040355 +motorial|7040413 +motoring|7040511 +motorisation|7040537 +motorise|7040600 +motorised|7040672 +motorist|7040730 +motorization|7040768 +motorize|7040831 +motorized|7040967 +motorized wheelchair|7041071 +motorless|7041112 +motorman|7041155 +motormouth|7041194 +motortruck|7041259 +motorway|7041318 +motown|7041424 +motrin|7041500 +mott|7041649 +mottle|7041755 +mottled|7041880 +mottling|7041915 +motto|7041941 +moue|7042011 +moufflon|7042052 +mouflon|7042106 +moujik|7042160 +moukden|7042223 +mould|7042302 +mouldboard|7042611 +mouldboard plough|7042647 +moulder|7042701 +mouldered|7042745 +mouldering|7042780 +moulding|7042829 +mouldy|7043035 +moult|7043069 +moulter|7043227 +moulting|7043299 +mound|7043363 +mound bird|7043807 +mound builder|7043983 +mound over|7044126 +mound-bird|7043631 +mounded over|7044165 +mount|7044192 +mount adams|7044769 +mount ararat|7044822 +mount asama|7044889 +mount athos|7044936 +mount bartle frere|7045024 +mount carmel|7045085 +mount cook lily|7045200 +mount elbert|7045335 +mount etna|7045384 +mount everest|7045436 +mount fuji|7045507 +mount godwin austen|7045580 +mount hubbard|7045668 +mount kilimanjaro|7045727 +mount logan|7045798 +mount mckinley|7045851 +mount olympus|7045933 +mount orizaba|7046012 +mount parnassus|7046097 +mount pinatubo|7046171 +mount ranier|7046227 +mount ranier national park|7046307 +mount rushmore|7046384 +mount rushmore state|7046459 +mount saint helens|7046554 +mount shasta|7046641 +mount sherman|7046697 +mount sinai|7046756 +mount st. helens|7046809 +mount tacoma|7046894 +mount up|7046974 +mount vernon|7047043 +mount vesuvius|7047088 +mount whitney|7047157 +mount wilson|7047216 +mountain|7047272 +mountain alder|7047488 +mountain andromeda|7047601 +mountain anemone|7047689 +mountain ash|7047768 +mountain avens|7047924 +mountain azalea|7047984 +mountain beaver|7048057 +mountain bike|7048136 +mountain birch|7048212 +mountain blacksnake|7048329 +mountain bladder fern|7048428 +mountain blue berry|7048492 +mountain box|7048599 +mountain chain|7048768 +mountain chinchilla|7048888 +mountain clematis|7048964 +mountain climber|7049061 +mountain climbing|7049127 +mountain clubmoss|7049181 +mountain cranberry|7049283 +mountain daisy|7049447 +mountain devil|7049538 +mountain ebony|7049659 +mountain everlasting|7049748 +mountain fern|7049828 +mountain fetterbush|7049901 +mountain fever|7049989 +mountain four o'clock|7050067 +mountain goat|7050134 +mountain gorilla|7050211 +mountain grape|7050286 +mountain heath|7050405 +mountain hemlock|7050476 +mountain hollyhock|7050555 +mountain lady's slipper|7050627 +mountain laurel|7050740 +mountain lily|7050976 +mountain lion|7051122 +mountain male fern|7051206 +mountain man|7051282 +mountain maple|7051338 +mountain mint|7051397 +mountain nyala|7051442 +mountain oak|7051495 +mountain paca|7051588 +mountain parsley fern|7051640 +mountain partridge|7051724 +mountain pass|7051800 +mountain peak|7051843 +mountain phlox|7051898 +mountain pine|7051976 +mountain pride|7052215 +mountain quail|7052282 +mountain range|7052358 +mountain rice|7052478 +mountain rimu|7052578 +mountain rose|7052658 +mountain sandwort|7052701 +mountain sheep|7052792 +mountain sickness|7052827 +mountain skink|7052872 +mountain spinach|7052947 +mountain spleenwort|7053019 +mountain standard time|7053078 +mountain starwort|7053187 +mountain state|7053278 +mountain sumac|7053349 +mountain swamp gum|7053446 +mountain tea|7053530 +mountain tent|7053663 +mountain time|7053711 +mountain trail|7053811 +mountain viscacha|7053841 +mountain watercress|7053917 +mountain zebra|7054000 +mountaineer|7054048 +mountaineering|7054148 +mountainous|7054202 +mountainside|7054286 +mountebank|7054335 +mounted|7054415 +mounter|7054465 +mountie|7054536 +mounties|7054594 +mounting|7054778 +mourn|7054871 +mourner|7054930 +mournful|7055004 +mournful widow|7055061 +mournfulness|7055158 +mourning|7055213 +mourning band|7055413 +mourning cloak|7055447 +mourning cloak butterfly|7055607 +mourning dove|7055767 +mourning ring|7055814 +mouse|7055847 +mouse button|7056416 +mouse click|7056462 +mouse deer|7056500 +mouse ear|7056540 +mouse eared chickweed|7056713 +mouse hare|7056823 +mouse mat|7056896 +mouse nest|7056928 +mouse's nest|7055989 +mouse-colored|7056027 +mouse-ear chickweed|7056076 +mouse-ear cress|7056186 +mouse-ear hawkweed|7056250 +mouse-eared bat|7056329 +mouse-tooth forceps|7056379 +mouselike|7056966 +mousepad|7057015 +mouser|7057047 +mousetrap|7057115 +mousey|7057180 +moussaka|7057208 +mousse|7057231 +mousseline de sole|7057367 +moussorgsky|7057425 +moustache|7057572 +moustache cup|7057605 +moustachio|7057645 +mousy|7057706 +mouth|7057775 +mouth bow|7058496 +mouth harp|7058567 +mouth hole|7058635 +mouth off|7058660 +mouth organ|7058755 +mouth-to-mouth resuscitation|7058288 +mouth-watering|7058429 +mouthbreeder|7058823 +mouthful|7058850 +mouthless|7058944 +mouthlike|7058974 +mouthpart|7059003 +mouthpiece|7059049 +mouthwash|7059255 +mouton|7059290 +movability|7059318 +movable|7059359 +movable barrier|7059449 +movable feast|7059482 +movableness|7059539 +move|7059580 +move around|7060117 +move back|7060205 +move back and forth|7060309 +move in|7060343 +move in on|7060441 +move into|7060518 +move involuntarily|7060589 +move on|7060639 +move out|7060720 +move over|7060766 +move reflexively|7060818 +move up|7060868 +moveable|7060965 +moveable feast|7061039 +moved|7061096 +movement|7061185 +movement for revenge|7061681 +movement of holy warriors|7061822 +mover|7062031 +mover and shaker|7062227 +movie|7062313 +movie actor|7062439 +movie camera|7062516 +movie film|7062599 +movie house|7062672 +movie industry|7062765 +movie maker|7062823 +movie projector|7062888 +movie star|7062953 +movie theater|7063028 +movie theatre|7063121 +moviegoer|7063214 +movimiento revolucionario tupac anaru|7063292 +moving|7063491 +moving company|7064294 +moving expense|7064374 +moving in|7064429 +moving picture|7064505 +moving ridge|7064631 +moving staircase|7064674 +moving stairway|7064758 +moving van|7064842 +moving-coil galvanometer|7064121 +moving-picture show|7064168 +mow|7064866 +mow down|7064973 +mower|7065015 +mown|7065063 +moxie|7065086 +moxie plum|7065144 +mozambican|7065230 +mozambique|7065342 +mozambique channel|7065438 +mozambique monetary unit|7065493 +mozart|7065566 +mozartean|7065642 +mozartian|7065689 +mozzarella|7065736 +mp|7065763 +mph|7065872 +mps|7065960 +mr|7066139 +mr. moto|7066176 +mrd|7066254 +mri|7066338 +mrna|7066401 +mrs|7066486 +mrs. gandhi|7066554 +mrs. henry wood|7066660 +mrs. humphrey ward|7066737 +mrs. simpson|7066828 +mrta|7066959 +ms|7067125 +ms-dos|7067420 +ms.|7067501 +msasa|7067830 +msb|7067875 +msc|7067925 +msec|7067982 +msg|7068031 +msh|7068128 +mst|7068213 +mt|7068303 +mt etna|7069091 +mt orizaba|7069140 +mt. ararat|7068499 +mt. everest|7068564 +mt. mckinley|7068633 +mt. olympus|7068713 +mt. ranier|7068790 +mt. rushmore|7068868 +mt. st. helens|7068941 +mt. vesuvius|7069024 +mu|7069222 +mu-meson|7069285 +muadhdhin|7069329 +muammar al-qaddafi|7069374 +muammar el-qaddafi|7069479 +muazzin|7069584 +mubarak|7069629 +much|7069700 +much as|7069915 +muchness|7069946 +mucic acid|7069974 +muciferous|7070010 +mucilage|7070039 +mucilaginous|7070084 +mucin|7070165 +mucinoid|7070193 +mucinous|7070223 +muck|7070253 +muck about|7070549 +muck around|7070640 +muck up|7070731 +muckheap|7070998 +muckhill|7071065 +muckle|7071132 +muckrake|7071372 +muckraker|7071478 +muckraking|7071549 +mucky|7071578 +mucocutaneous|7071677 +mucocutaneous leishmaniasis|7071753 +mucocutaneous lymph node syndrome|7071928 +mucoid|7071996 +mucoidal|7072050 +mucopolysaccharide|7072084 +mucopolysaccharidosis|7072135 +mucopurulent|7072330 +mucor|7072420 +mucoraceae|7072446 +mucorales|7072509 +mucosa|7072567 +mucosal|7072621 +mucose|7072659 +mucous|7072691 +mucous colitis|7072723 +mucous membrane|7072821 +mucous secretion|7072875 +mucoviscidosis|7072917 +mucuna|7073062 +mucuna aterrima|7073089 +mucuna deeringiana|7073260 +mucuna pruriens utilis|7073434 +mucus|7073612 +mud|7073654 +mud bath|7073934 +mud dauber|7073957 +mud digger|7074000 +mud flat|7074040 +mud hen|7074116 +mud midget|7074189 +mud pie|7074245 +mud plantain|7074271 +mud puddle|7074384 +mud puppy|7074416 +mud stain|7074591 +mud turtle|7074645 +mud-beplastered|7073780 +mud-wrestle|7073813 +mudcat|7074672 +mudder|7074824 +muddied|7074870 +muddiness|7074912 +muddle|7074971 +muddled|7075177 +muddleheaded|7075266 +muddy|7075341 +muddy up|7075634 +mudguard|7075696 +mudhif|7075752 +mudra|7075797 +mudskipper|7075820 +mudslide|7075865 +mudslinger|7075902 +mudspringer|7075973 +mudwrestle|7076018 +muenchen|7076058 +muenster|7076121 +muesli|7076155 +muezzin|7076186 +muff|7076231 +muffin|7076570 +muffin man|7076602 +muffle|7076661 +muffled|7076815 +muffler|7076872 +mufti|7076948 +mug|7077051 +mug book|7077335 +mug file|7077377 +mug shot|7077419 +mug up|7077556 +mug's game|7077277 +mugful|7077646 +muggee|7077679 +mugger|7077702 +mugginess|7077725 +mugging|7077763 +muggins|7077788 +muggy|7077847 +mugho pine|7077880 +mugil|7078000 +mugil cephalus|7078044 +mugil curema|7078117 +mugil liza|7078184 +mugilidae|7078239 +mugiloidea|7078297 +mugo pine|7078361 +mugshot|7078481 +mugwort|7078537 +mugwump|7078563 +muhammad|7078674 +muhammad ali|7078788 +muhammad ali jinnah|7078939 +muhammadan|7079027 +muhammadan calendar|7079168 +muhammadanism|7079301 +muhammedan|7079477 +muharram|7079582 +muharrum|7079650 +muhlenbergia|7079718 +muhlenbergia schreberi|7079802 +muir|7079886 +muishond|7079944 +mujahadeen|7079969 +mujahadein|7080102 +mujahadin|7080235 +mujahedeen|7080368 +mujahedeen khalq|7080501 +mujahedin|7080618 +mujahid|7080751 +mujahideen|7080824 +mujahidin|7080957 +mujahidin-e khalq organization|7081090 +mujik|7081270 +mujtihad|7081333 +mukalla|7081440 +mukataa|7081510 +mukden|7081589 +mulatto|7081667 +mulberry|7081704 +mulberry family|7081760 +mulberry fig|7081843 +mulberry tree|7081912 +mulch|7081955 +mulct|7082031 +mule|7082191 +mule deer|7082333 +mule driver|7082395 +mule fat|7082483 +mule skinner|7082530 +mule's ears|7082267 +mules|7082618 +muleteer|7082747 +muliebrity|7082835 +mulish|7082899 +mulishly|7082935 +mulishness|7083008 +mull|7083093 +mull over|7083333 +mulla|7083474 +mullah|7083565 +mullah mohammed omar|7083657 +mullah omar|7083761 +mulled cider|7083856 +mulled wine|7083890 +mullein|7083921 +mullein pink|7083986 +muller|7084088 +mullet|7084533 +mullidae|7084670 +mulligan|7084725 +mulligan stew|7084775 +mulligatawny|7084825 +mullion|7084852 +mullioned|7084880 +mulloidichthys|7084907 +mulloidichthys martinicus|7084978 +mulloway|7085103 +mullus|7085171 +mullus auratus|7085218 +mullus surmuletus|7085318 +multi-ethnic|7085400 +multi-valued|7085521 +multibank holding company|7085565 +multicellular|7085621 +multichannel recorder|7085653 +multicollinearity|7085731 +multicolor|7085799 +multicolored|7085971 +multicolour|7086143 +multicoloured|7086315 +multicultural|7086487 +multiculturalism|7086572 +multidimensional|7086661 +multidimensional language|7086798 +multiengine airplane|7086874 +multiengine plane|7086947 +multiethnic|7087020 +multifaceted|7087061 +multifactorial|7087114 +multifarious|7087146 +multifariously|7087199 +multifariousness|7087242 +multiflora|7087330 +multiflora rose|7087411 +multiform|7087492 +multigraph|7087546 +multilane|7087580 +multilateral|7087657 +multilevel|7087882 +multilingual|7087924 +multimedia|7087989 +multimedia system|7088040 +multinational|7088091 +multinomial|7088142 +multinucleate|7088225 +multiparous|7088283 +multipartite|7088334 +multiphase|7088380 +multiple|7088429 +multiple correlation|7088915 +multiple correlation coefficient|7088987 +multiple fruit|7089092 +multiple mononeuropathy|7089146 +multiple myeloma|7089190 +multiple neuritis|7089224 +multiple personality|7089273 +multiple regression|7089343 +multiple sclerosis|7089415 +multiple star|7089544 +multiple voting|7089572 +multiple-choice|7088874 +multiplex|7089626 +multiplex operation|7089711 +multiplexer|7089750 +multiplicand|7089789 +multiplication|7089818 +multiplicative|7089980 +multiplicative inverse|7090015 +multiplicity|7090075 +multiplied|7090152 +multiplier|7090182 +multiplier factor|7090227 +multiplier onion|7090272 +multiply|7090387 +multipotent|7090557 +multiprocessing|7090592 +multiprocessor|7090653 +multiprogramming|7090694 +multipurpose|7090773 +multiracial|7090808 +multistage|7090836 +multistage rocket|7090890 +multistorey|7091005 +multistoried|7091060 +multistory|7091115 +multitude|7091170 +multitudinous|7091374 +multitudinousness|7091516 +multivalence|7091580 +multivalency|7091645 +multivalent|7091710 +multivariate|7091791 +multivariate analysis|7091822 +multiversity|7091894 +multivitamin|7091927 +multivitamin pill|7091980 +mulwi|7092033 +mum|7092079 +mumbai|7092365 +mumble|7092424 +mumble-the-peg|7092548 +mumbler|7092598 +mumblety-peg|7092669 +mumbling|7092719 +mumbo jumbo|7092834 +mumification necrosis|7092903 +mummer|7093001 +mummery|7093094 +mummichog|7093171 +mummification|7093222 +mummify|7093362 +mummy|7093482 +mummy-brown|7093586 +mumps|7093649 +mumpsimus|7093702 +munch|7093728 +munchausen|7093831 +munchausen syndrome|7094036 +munchausen's syndrome|7093954 +munchener|7094116 +muncher|7094174 +munchhausen|7094198 +muncie|7094322 +munda|7094350 +munda-mon-khmer|7094402 +mundane|7094482 +mundanely|7094607 +mung|7094639 +mung bean|7094741 +mungo park|7094843 +munich|7094899 +munich beer|7094960 +municipal|7095020 +municipal bond|7095075 +municipal center|7095121 +municipal government|7095174 +municipal note|7095221 +municipality|7095279 +munificence|7095424 +munificent|7095512 +munificently|7095614 +muniments|7095656 +munition|7095686 +munitions|7095898 +munitions industry|7096159 +munj|7096210 +munja|7096273 +munjeet|7096336 +munjuk|7096412 +munro|7096459 +muntiacus|7096529 +muntingia|7096587 +muntingia calabura|7096654 +muntjac|7096763 +muntz metal|7096805 +muon|7096874 +muraenidae|7096918 +mural|7096979 +muralist|7097049 +muramidase|7097075 +murder|7097111 +murder charge|7097262 +murder conviction|7097333 +murder indictment|7097416 +murder mystery|7097487 +murder suspect|7097542 +murdered|7097574 +murderee|7097597 +murderer|7097622 +murderess|7097714 +murderous|7097763 +murderously|7097809 +murderousness|7097840 +murdoch|7097927 +muriatic acid|7098063 +muridae|7098104 +muriel sarah spark|7098158 +muriel spark|7098256 +murillo|7098348 +murine|7098407 +murine typhus|7098472 +muritaniya|7098554 +murk|7098669 +murkiness|7098750 +murky|7098864 +murmansk|7098932 +murmur|7098993 +murmur vowel|7099330 +murmuration|7099370 +murmuring|7099443 +murmurous|7099608 +muroidea|7099660 +murphy|7099722 +murphy bed|7099870 +murphy's law|7099819 +murrain|7099905 +murray|7099937 +murray gell-mann|7100266 +murray river|7100337 +murre|7100385 +murrow|7100410 +murrumbidgee|7100492 +murrumbidgee river|7100552 +mus|7100618 +mus musculus|7100719 +mus rose|7100772 +musa|7100824 +musa acuminata|7100884 +musa basjoo|7100955 +musa ensete|7101023 +musa paradisiaca|7101132 +musa paradisiaca sapientum|7101217 +musa textilis|7101313 +musaceae|7101387 +musales|7101476 +musca|7101527 +musca domestica|7101603 +musca volitans|7101657 +muscadel|7101721 +muscadelle|7101781 +muscadet|7101841 +muscadine|7101952 +muscae volitantes|7102033 +muscardinus|7102097 +muscardinus avellanarius|7102161 +muscari|7102241 +muscari comosum|7102301 +muscari neglectum|7102373 +muscat|7102455 +muscat and oman|7102689 +muscat grape|7102780 +muscatel|7102833 +musci|7102935 +muscicapa|7103000 +muscicapa grisola|7103056 +muscicapa striata|7103186 +muscicapidae|7103316 +muscidae|7103383 +muscivora|7103443 +muscivora-forficata|7103499 +muscle|7103647 +muscle builder|7104261 +muscle building|7104551 +muscle cell|7104768 +muscle contraction|7104844 +muscle fiber|7104916 +muscle fibre|7104992 +muscle into|7105068 +muscle memory|7105100 +muscle relaxant|7105157 +muscle spasm|7105191 +muscle system|7105233 +muscle tone|7105294 +muscle-bound|7103938 +muscle-builder|7103971 +musclebuilder|7105350 +musclebuilding|7105478 +muscleman|7105614 +muscoidea|7105816 +muscovite|7105884 +muscovy|7105967 +muscovy duck|7106015 +muscular|7106069 +muscular contraction|7106202 +muscular dystrophy|7106274 +muscular structure|7106476 +muscular tissue|7106537 +muscular tonus|7106583 +musculature|7106639 +musculophrenic artery|7106700 +musculophrenic vein|7106792 +musculoskeletal|7106872 +musculoskeletal system|7106932 +musculospiral nerve|7106971 +musculus|7107042 +musculus abductor digiti minimi manus|7107096 +musculus abductor digiti minimi pedis|7107168 +musculus abductor hallucis|7107240 +musculus abductor pollicis|7107301 +musculus adductor brevis|7107362 +musculus adductor hallucis|7107421 +musculus adductor longus|7107482 +musculus adductor magnus|7107541 +musculus anconeus|7107622 +musculus articularis cubiti|7107698 +musculus articularis genus|7107752 +musculus biceps brachii|7107805 +musculus biceps femoris|7107874 +musculus buccinator|7107929 +musculus deltoideus|7108003 +musculus intercostalis|7108087 +musculus obliquus externus abdominis|7108182 +musculus pectoralis|7108324 +musculus pectoralis major|7108426 +musculus pectoralis minor|7108563 +musculus quadriceps femoris|7108700 +musculus rhomboideus major|7108797 +musculus rhomboideus minor|7108907 +musculus sartorius|7109013 +musculus scalenus|7109100 +musculus serratus anterior|7109183 +musculus serratus posterior|7109304 +musculus sphincter ani|7109412 +musculus sphincter ani externus|7109521 +musculus sphincter ani internus|7109594 +musculus sphincter ductus choledochi|7109668 +musculus sphincter ductus pancreatici|7109762 +musculus sphincter pupillae|7109857 +musculus sphincter pylori|7109962 +musculus sphincter urethrae|7110077 +musculus sphincter vesicae|7110181 +musculus sternocleidomastoideus|7110283 +musculus temporalis|7110427 +musculus teres major|7110533 +musculus teres minor|7110613 +musculus tibialis|7110693 +musculus transversalis abdominis|7110777 +musculus trapezius|7110929 +musculus triceps brachii|7111028 +musd|7111086 +muse|7111152 +muser|7111341 +musette|7111390 +musette pipe|7111437 +museum|7111481 +musgoi|7111527 +musgu|7111572 +mush|7111618 +musher|7111762 +mushiness|7111797 +mushroom|7111895 +mushroom anchor|7112133 +mushroom cloud|7112179 +mushroom coral|7112240 +mushroom pimple|7112304 +mushroom poisoning|7112362 +mushroom sauce|7112431 +mushroom wine sauce|7112461 +mushroom-shaped cloud|7112072 +mushy|7112512 +mushy peas|7112625 +musial|7112665 +music|7112761 +music box|7112948 +music critic|7113009 +music department|7113038 +music director|7113104 +music genre|7113156 +music hall|7113240 +music lesson|7113359 +music lover|7113388 +music of the spheres|7113431 +music paper|7113475 +music rack|7113514 +music school|7113557 +music stand|7113642 +music stool|7113685 +music teacher|7113724 +musical|7113766 +musical accompaniment|7114050 +musical arrangement|7114121 +musical box|7114220 +musical chairs|7114281 +musical comedy|7114358 +musical composition|7114417 +musical drama|7114490 +musical genre|7114519 +musical group|7114603 +musical harmony|7114694 +musical instrument|7114733 +musical instrument digital interface|7114779 +musical interval|7114863 +musical mode|7114915 +musical notation|7114957 +musical note|7115010 +musical octave|7115059 +musical organisation|7115116 +musical organization|7115207 +musical passage|7115298 +musical perception|7115389 +musical performance|7115454 +musical phrase|7115511 +musical rhythm|7115566 +musical scale|7115615 +musical score|7115661 +musical soiree|7115702 +musical style|7115749 +musical theater|7115833 +musical theme|7115892 +musical time|7115996 +musical time signature|7116023 +musicality|7116087 +musicalness|7116134 +musician|7116181 +musicianship|7116280 +musicogenic epilepsy|7116323 +musicological|7116369 +musicologist|7116442 +musicology|7116497 +musing|7116568 +musjid|7116758 +musk|7116851 +musk clover|7116888 +musk deer|7116986 +musk duck|7117037 +musk hog|7117091 +musk kangaroo|7117167 +musk mallow|7117224 +musk ox|7117340 +musk rose|7117391 +musk sheep|7117429 +musk thistle|7117480 +musk turtle|7117541 +muskat|7117582 +muskellunge|7117662 +musket|7117717 +musket ball|7117747 +musketeer|7117785 +musketry|7117849 +muskhogean|7117906 +muskhogean language|7118146 +muskmelon|7118311 +muskogean|7118414 +muskogean language|7118653 +muskogee|7118817 +muskrat|7118962 +muskus grass|7119051 +muskwood|7119149 +musky|7119218 +muslim|7119242 +muslim calendar|7119382 +muslim ummah|7119511 +muslimah|7119594 +muslimism|7119677 +muslin|7119849 +musnud|7119895 +musophaga|7119918 +musophagidae|7119974 +musophobia|7120041 +musquash|7120071 +muss|7120144 +mussel|7120232 +mussel shrimp|7120297 +musset|7120352 +mussiness|7120442 +mussitate|7120505 +mussitation|7120589 +mussolini|7120662 +mussorgsky|7120735 +mussy|7120881 +must|7120909 +mustache|7121048 +mustache cup|7121081 +mustached|7121121 +mustachio|7121170 +mustachioed|7121231 +mustafa kemal|7121280 +mustagh|7121383 +mustagh range|7121544 +mustang|7121711 +mustang mint|7121733 +mustard|7121799 +mustard agent|7121946 +mustard family|7122046 +mustard gas|7122155 +mustard greens|7122255 +mustard plaster|7122337 +mustard sauce|7122398 +mustard seed|7122427 +mustard tree|7122508 +mustela|7122620 +mustela erminea|7122672 +mustela frenata|7122744 +mustela nigripes|7122827 +mustela nivalis|7122933 +mustela putorius|7123004 +mustela rixosa|7123114 +mustela vison|7123183 +mustelid|7123239 +mustelidae|7123294 +musteline|7123357 +musteline mammal|7123412 +mustelus|7123467 +mustelus canis|7123520 +mustelus mustelus|7123598 +mustelus norrisi|7123688 +muster|7123766 +muster call|7123998 +muster in|7124029 +muster out|7124097 +muster roll|7124163 +muster up|7124196 +musth|7124279 +mustiness|7124306 +musty|7124350 +mut|7124428 +mutability|7124476 +mutable|7124537 +mutableness|7124573 +mutafacient|7124634 +mutagen|7124660 +mutagenesis|7124683 +mutagenic|7124710 +mutamycin|7124734 +mutant|7124800 +mutant gene|7124948 +mutate|7124989 +mutation|7125012 +mutational|7125182 +mutative|7125232 +mutawa|7125280 +mutawa'een|7125351 +mutchkin|7125426 +mute|7125471 +mute swan|7125744 +muted|7125780 +mutely|7125855 +muteness|7125901 +mutilate|7125947 +mutilated|7126051 +mutilation|7126128 +mutilator|7126173 +mutillidae|7126260 +mutineer|7126367 +mutinous|7126433 +mutinus|7126481 +mutinus caninus|7126533 +mutiny|7126613 +mutisia|7126707 +mutism|7126735 +muton|7126768 +mutsuhito|7126794 +mutt|7126843 +mutter|7126903 +mutterer|7127191 +muttering|7127262 +mutton|7127419 +mutton chop|7127486 +mutton snapper|7127578 +mutton tallow|7127637 +muttonfish|7127667 +muttonhead|7127726 +mutual|7127869 +mutual affection|7128048 +mutual aid|7128104 +mutual exclusiveness|7128192 +mutual fund|7128281 +mutual inductance|7128401 +mutual induction|7128472 +mutual opposition|7128553 +mutual resemblance|7128613 +mutual savings bank|7128653 +mutual understanding|7128699 +mutualism|7128755 +mutualist|7128826 +mutuality|7128890 +mutually|7129011 +mutually beneficial|7129041 +mutually exclusive|7129105 +mutually ruinous|7129191 +mutualness|7129236 +muumuu|7129292 +muybridge|7129335 +muz tagh ata|7129437 +muzhik|7129498 +muzjik|7129561 +muztagh ata|7129624 +muzzle|7129684 +muzzle loader|7129928 +muzzle velocity|7129975 +muzzle-loading|7129897 +muzzler|7130015 +muzzy|7130039 +mv|7130185 +mvp|7130293 +mwera|7130350 +mx|7130394 +mya|7130446 +mya arenaria|7130487 +myaceae|7130579 +myacidae|7130631 +myadestes|7130689 +myalgia|7130745 +myalgic|7130784 +myanmar|7130813 +myanmar monetary unit|7130886 +myasthenia|7130953 +myasthenia gravis|7131080 +myasthenic syndrome|7131156 +mycelia sterilia|7131292 +mycelium|7131371 +mycenae|7131416 +mycenaean|7131470 +mycenaean civilisation|7131527 +mycenaean civilization|7131657 +mycenaean culture|7131787 +mycetophilidae|7131912 +mycobacteria|7131990 +mycobacteriaceae|7132121 +mycobacterium|7132204 +mycobacterium leprae|7132277 +mycobacterium tuberculosis|7132372 +mycologist|7132480 +mycology|7132537 +mycomycin|7132572 +mycophagist|7132618 +mycoplasma|7132652 +mycoplasmal pneumonia|7132709 +mycoplasmataceae|7132847 +mycoplasmatales|7132930 +mycosis|7133006 +mycostatin|7133048 +mycotoxin|7133190 +mycrosporidia|7133232 +mycteria|7133302 +mycteria americana|7133355 +mycteroperca|7133429 +mycteroperca bonaci|7133494 +myctophidae|7133559 +mydriasis|7133623 +mydriatic|7133760 +mydriatic drug|7133799 +myelatelia|7133838 +myelencephalon|7133865 +myelic|7133906 +myelin|7133948 +myelin sheath|7133984 +myelinated|7134036 +myelinated nerve fiber|7134082 +myeline|7134161 +myelinic|7134197 +myelinisation|7134218 +myelinization|7134314 +myelitis|7134410 +myeloblast|7134455 +myeloblastic leukemia|7134565 +myelocyte|7134645 +myelocytic leukemia|7134754 +myelofibrosis|7134854 +myelogram|7134886 +myelography|7134956 +myeloid|7135011 +myeloid leukemia|7135078 +myeloma|7135191 +myelomeningocele|7135260 +myenteric plexus|7135379 +myg|7135437 +myiasis|7135491 +mylanta|7135520 +mylar|7135598 +myles standish|7135627 +myliobatidae|7135707 +mylitta|7135774 +mylodon|7135820 +mylodontid|7135846 +mylodontidae|7135875 +mym|7135944 +myna|7135998 +myna bird|7136059 +mynah|7136120 +mynah bird|7136181 +myocardial|7136242 +myocardial infarct|7136289 +myocardial infarction|7136361 +myocardial inflammation|7136433 +myocardiopathy|7136487 +myocarditis|7136568 +myocardium|7136622 +myocastor|7136670 +myocastor coypus|7136728 +myoclonus|7136813 +myoclonus epilepsy|7136857 +myodynia|7136911 +myofibril|7136950 +myofibrilla|7137015 +myoglobin|7137080 +myoglobinuria|7137124 +myogram|7137155 +myoid|7137195 +myology|7137223 +myoma|7137251 +myometritis|7137354 +myometrium|7137402 +myomorpha|7137455 +myonecrosis|7137516 +myoneural junction|7137579 +myopathic|7137638 +myopathy|7137666 +myope|7137694 +myopia|7137737 +myopic|7137796 +myopus|7137877 +myosarcoma|7137926 +myosin|7137954 +myosis|7137979 +myositis|7138232 +myositis trichinosa|7138277 +myosotis|7138352 +myosotis scorpiodes|7138406 +myosotis sylvatica|7138501 +myotactic reflex|7138591 +myotic|7138730 +myotis|7138850 +myotis leucifugus|7138899 +myotis velifer|7139013 +myotomy|7139096 +myotonia|7139186 +myotonia atrophica|7139224 +myotonia congenita|7139347 +myotonic|7139402 +myotonic dystrophy|7139439 +myotonic muscular dystrophy|7139562 +myrcia|7139685 +myrciaria|7139765 +myrciaria cauliflora|7139848 +myrdal|7139937 +myriad|7140019 +myriagram|7140258 +myriameter|7140312 +myriametre|7140366 +myriapod|7140420 +myriapoda|7140448 +myrica|7140541 +myrica cerifera|7140608 +myrica gale|7140682 +myrica pensylvanica|7140749 +myricaceae|7140857 +myricales|7140957 +myricaria|7141014 +myricaria germanica|7141081 +myringa|7141172 +myringectomy|7141246 +myringoplasty|7141341 +myringotomy|7141437 +myriophyllum|7141531 +myristic acid|7141616 +myristica|7141679 +myristica fragrans|7141746 +myristicaceae|7141823 +myrmecia|7141918 +myrmecobius|7141976 +myrmecobius fasciatus|7142040 +myrmecophaga|7142153 +myrmecophaga jubata|7142220 +myrmecophagidae|7142345 +myrmecophagous|7142423 +myrmecophile|7142461 +myrmecophilous|7142498 +myrmecophyte|7142532 +myrmecophytic|7142577 +myrmeleon|7142622 +myrmeleontidae|7142683 +myrmidon|7142761 +myrobalan|7142819 +myrobalan plum|7142898 +myroxylon|7142977 +myroxylon balsamum|7143040 +myroxylon balsamum pereirae|7143140 +myroxylon pereirae|7143245 +myroxylon toluiferum|7143341 +myrrh|7143443 +myrrh tree|7143518 +myrrhis|7143569 +myrrhis odorata|7143626 +myrsinaceae|7143702 +myrsine|7143802 +myrsine family|7143872 +myrtaceae|7143960 +myrtaceous tree|7144053 +myrtales|7144112 +myrtillocactus|7144198 +myrtillocactus geometrizans|7144284 +myrtle|7144385 +myrtle beech|7144465 +myrtle bird|7144541 +myrtle family|7144627 +myrtle flag|7144710 +myrtle oak|7144822 +myrtle spurge|7144889 +myrtle warbler|7144962 +myrtus|7145048 +myrtus communis|7145115 +mysidacea|7145177 +mysidae|7145235 +mysis|7145292 +mysoline|7145341 +mysophilia|7145446 +mysophobia|7145473 +mysophobic|7145507 +mysore|7145534 +mysore thorn|7145625 +mysterious|7145715 +mysteriously|7145864 +mystery|7145911 +mystery novel|7146001 +mystery play|7146046 +mystery story|7146093 +mystic|7146139 +mystic jewel|7146373 +mystical|7146431 +mysticeti|7146607 +mysticism|7146668 +mystification|7146798 +mystified|7146994 +mystifier|7147083 +mystify|7147132 +mystifying|7147348 +mystique|7147444 +myth|7147482 +mythic|7147502 +mythical|7147579 +mythical being|7147644 +mythical creature|7147703 +mythical monster|7147770 +mythical place|7147837 +mythicise|7147912 +mythicize|7148025 +mythologic|7148138 +mythological|7148203 +mythologisation|7148316 +mythologise|7148369 +mythologist|7148506 +mythologization|7148534 +mythologize|7148587 +mythology|7148724 +mytilene|7148839 +mytilid|7148894 +mytilidae|7148932 +mytilus|7148993 +mytilus edulis|7149046 +myxedema|7149121 +myxine|7149164 +myxine glutinosa|7149211 +myxinidae|7149277 +myxiniformes|7149335 +myxinikela|7149480 +myxinikela siroka|7149539 +myxinoidea|7149607 +myxinoidei|7149750 +myxobacter|7149893 +myxobacterales|7150009 +myxobacteria|7150139 +myxobacteriaceae|7150255 +myxobacteriales|7150373 +myxobacterium|7150504 +myxocephalus|7150620 +myxocephalus aenaeus|7150685 +myxoedema|7150751 +myxoma|7150794 +myxoma virus|7150898 +myxomatosis|7150929 +myxomycete|7150965 +myxomycetes|7151067 +myxomycota|7151224 +myxophyceae|7151317 +myxosporidia|7151420 +myxosporidian|7151487 +myxovirus|7151520 +n|7151552 +n'djamena|7151791 +n-type semiconductor|7151872 +n-ways|7151956 +n. y. stock exchange|7151976 +n.b.|7152112 +na|7152227 +na-dene|7152289 +nab|7152390 +nabalus|7152504 +nabalus alba|7152563 +nabalus serpentarius|7152656 +nabob|7152782 +nabokov|7152853 +naboom|7152940 +nabothian cyst|7152997 +nabothian follicle|7153045 +nabothian gland|7153093 +nabu|7153144 +nabumetone|7153182 +nac|7153283 +nacelle|7153331 +nacho|7153358 +nacimiento|7153387 +nacre|7153432 +nacreous|7153469 +nacreous cloud|7153548 +nad|7153600 +nada|7153660 +nada daiquiri|7153765 +nadine gordimer|7153824 +nadir|7153888 +nadolol|7153972 +nadp|7154065 +naegele's rule|7154137 +naemorhedus|7154191 +naemorhedus goral|7154255 +nafcil|7154320 +nafcillin|7154388 +nag|7154449 +nag hammadi|7154673 +nag hammadi library|7154797 +naga|7154905 +nagami|7154934 +nagami kumquat|7155028 +nagano|7155122 +nagari|7155174 +nagari script|7155273 +nagasaki|7155379 +nageia|7155440 +nageia nagi|7155493 +nagger|7155555 +nagging|7155640 +nagi|7155678 +nagoya|7155728 +naha city|7155780 +nahuatl|7155838 +nahum|7155967 +naiad|7156028 +naiad family|7156129 +naiadaceae|7156241 +naiadales|7156364 +naiant|7156447 +naias|7156483 +naif|7156564 +naiki|7156770 +nail|7156809 +nail down|7157465 +nail enamel|7157665 +nail hole|7157737 +nail polish|7157761 +nail varnish|7157833 +nail-biting|7157255 +nail-tailed kangaroo|7157319 +nail-tailed wallaby|7157392 +nailbrush|7157905 +nailer|7157930 +nailfile|7157953 +nailhead|7157976 +nailrod|7158045 +nainsook|7158133 +naira|7158158 +nairobi|7158196 +naismith|7158255 +naive|7158316 +naive art|7158612 +naive realism|7158695 +naiveness|7158770 +naivete|7158813 +naivety|7158856 +naja|7158899 +naja haje|7158943 +naja hannah|7158997 +naja naja|7159076 +naja nigricollis|7159124 +najadaceae|7159207 +najas|7159330 +najd|7159448 +naked|7159562 +naked as a jaybird|7159687 +naked as the day one was born|7159809 +naked as the day you were born|7159947 +naked eye|7160085 +naked lady|7160121 +naked mole rat|7160258 +naked option|7160299 +nakedness|7160328 +nakedwood|7160380 +nakuru|7160452 +nalchik|7160504 +nalfon|7160558 +nalidixic acid|7160684 +nalline|7160761 +nalorphine|7160817 +naloxone|7160865 +naltrexone|7160910 +namby-pamby|7160950 +name|7161027 +name and address|7161793 +name calling|7161861 +name day|7161940 +name dropper|7161970 +name part|7162075 +name tag|7162149 +name-dropping|7161752 +named|7162171 +namedrop|7162215 +nameko|7162273 +nameless|7162328 +namelessness|7162391 +namely|7162433 +nameplate|7162478 +namer|7162503 +names|7162571 +namesake|7162964 +namib desert|7163035 +namibia|7163077 +namibian|7163171 +naming|7163252 +nammad|7163394 +nammu|7163449 +namoi|7163484 +namoi river|7163523 +nampa|7163568 +namtar|7163594 +namtaru|7163639 +namur|7163685 +nan|7163735 +nan ling|7164146 +nan river|7164253 +nan-chang|7163853 +nan-ning|7164001 +nanaimo|7164292 +nanak|7164322 +nance|7164371 +nancere|7164463 +nanchang|7164500 +nancy|7164566 +nancy freeman mitford|7164616 +nancy mitford|7164705 +nancy witcher astor|7164786 +nand circuit|7164912 +nand gate|7164973 +nanda devi|7165031 +nandrolone|7165076 +nandu|7165142 +nanga parbat|7165217 +nanism|7165266 +nanjing|7165455 +nankeen|7165517 +nanking|7165564 +nanna|7165626 +nanning|7165686 +nanny|7165749 +nanny-goat|7165853 +nanocephalic|7165908 +nanocephaly|7166000 +nanogram|7166090 +nanometer|7166142 +nanometre|7166237 +nanomia|7166332 +nanophthalmos|7166362 +nanosecond|7166427 +nanotechnology|7166470 +nanotube|7166553 +nanovolt|7166597 +nansen|7166630 +nantes|7166721 +nanticoke|7166778 +nantua|7166886 +nantucket|7166928 +nanus|7166964 +naomi|7167005 +nap|7167046 +napa|7167302 +napaea|7167407 +napaea dioica|7167502 +napalm|7167559 +nape|7167604 +napea|7167654 +napery|7167699 +naphazoline|7167733 +naphtha|7167822 +naphthalene|7167907 +naphthalene poisoning|7167940 +naphthol|7168010 +naphthoquinone|7168035 +napier|7168112 +napier's bones|7168161 +napier's rods|7168245 +napierian logarithm|7168328 +napkin|7168409 +napkin ring|7168495 +naples|7168526 +naples garlic|7168590 +napoleon|7168696 +napoleon bonaparte|7168869 +napoleon i|7168995 +napoleon iii|7169113 +napoleonic|7169210 +napoleonic wars|7169269 +napoli|7169322 +napped|7169386 +napping|7169422 +nappy|7169526 +naprapath|7169603 +naprapathy|7169639 +naprosyn|7169669 +naproxen|7169778 +naproxen sodium|7169878 +napu|7169998 +naqua|7170053 +nara|7170102 +naranjilla|7170185 +narc|7170234 +narcan|7170302 +narcism|7170354 +narcissism|7170456 +narcissist|7170558 +narcissistic|7170601 +narcissistic personality|7170665 +narcissus|7170711 +narcissus jonquilla|7170776 +narcissus papyraceus|7170843 +narcissus pseudonarcissus|7170941 +narcist|7171021 +narco-state|7171064 +narcolepsy|7171157 +narcoleptic|7171189 +narcosis|7171291 +narcoterrorism|7171325 +narcotic|7171390 +narcotic antagonist|7171510 +narcotics agent|7171550 +narcotise|7171618 +narcotised|7171657 +narcotising|7171731 +narcotize|7171784 +narcotized|7171823 +narcotizing|7171897 +narcotraffic|7171950 +nard|7172010 +nardil|7172059 +nardo|7172126 +nardoo|7172205 +nares deep|7172284 +narghile|7172341 +nargileh|7172468 +narial|7172595 +naris|7172632 +nark|7172669 +narragansett bay|7172903 +narrate|7172950 +narration|7173008 +narrative|7173151 +narrator|7173267 +narrow|7173349 +narrow beech fern|7175468 +narrow boat|7175613 +narrow down|7175742 +narrow escape|7175918 +narrow gauge|7176007 +narrow goldenrod|7176067 +narrow wale|7176123 +narrow-body|7173944 +narrow-body aircraft|7174015 +narrow-leaf cattail|7174086 +narrow-leaf penstemon|7174191 +narrow-leaved bottletree|7174267 +narrow-leaved everlasting pea|7174390 +narrow-leaved flame flower|7174474 +narrow-leaved plantain|7174590 +narrow-leaved reedmace|7174708 +narrow-leaved spleenwort|7174813 +narrow-leaved strap fern|7174925 +narrow-leaved water plantain|7175026 +narrow-leaved white-topped aster|7175104 +narrow-minded|7175165 +narrow-mindedly|7175379 +narrow-mindedness|7175418 +narrowboat|7176158 +narrowbody aircraft|7176206 +narrowed|7176277 +narrowhead morel|7176339 +narrowing|7176434 +narrowness|7176619 +narthecium|7176690 +narthecium americanum|7176759 +narthecium ossifragum|7176847 +narthex|7176935 +narwal|7177029 +narwhal|7177086 +narwhale|7177143 +nary|7177200 +nasa|7177217 +nasal|7177301 +nasal bone|7177470 +nasal canthus|7177514 +nasal cavity|7177545 +nasal concha|7177594 +nasal consonant|7177657 +nasal decongestant|7177720 +nasal meatus|7177761 +nasal septum|7177790 +nasal sinus|7177819 +nasal twang|7177880 +nasale|7177916 +nasalis|7177961 +nasalis larvatus|7178013 +nasalisation|7178101 +nasalise|7178149 +nasality|7178267 +nasalization|7178312 +nasalize|7178360 +nascence|7178478 +nascency|7178551 +nascent|7178624 +nasdaq|7178668 +naseby|7178786 +nash|7178841 +nash equilibrium|7178885 +nashville|7178940 +nasion|7179004 +nasofrontal vein|7179039 +nasogastric feeding|7179114 +nasolacrimal duct|7179165 +nasopharyngeal|7179227 +nasopharyngeal leishmaniasis|7179277 +nasopharynx|7179452 +nasotracheal tube|7179500 +nassau|7179545 +nasser|7179608 +nast|7179713 +nastily|7179755 +nastiness|7179778 +nasturtium|7179938 +nasturtium amphibium|7180103 +nasturtium family|7180200 +nasturtium officinale|7180281 +nasty|7180392 +nasua|7180614 +nasua narica|7180660 +nat turner|7180744 +natal|7180836 +natal day|7181006 +natal plum|7181056 +natalie wood|7181212 +natality|7181260 +natantia|7181329 +natator|7181387 +natatorium|7181438 +natchez|7181509 +nates|7181539 +nathan bailey|7181750 +nathan birnbaum|7181838 +nathan hale|7181926 +nathaniel bailey|7181994 +nathaniel bowditch|7182085 +nathaniel currier|7182188 +nathaniel hawthorne|7182254 +naticidae|7182327 +nation|7182388 +nation of islam|7182628 +national|7182688 +national academy of sciences|7182959 +national aeronautics and space administration|7183051 +national anthem|7183176 +national archives and records administration|7183208 +national assistance|7183331 +national association of securities dealers automated quotations|7183417 +national bank|7183592 +national baseball hall of fame|7183649 +national capital|7183733 +national censorship|7183796 +national climatic data center|7183862 +national debt|7184000 +national debt ceiling|7184028 +national flag|7184083 +national guard|7184134 +national guard bureau|7184218 +national holiday|7184339 +national imagery and mapping agency|7184387 +national income|7184537 +national institute of justice|7184568 +national institute of standards and technology|7184664 +national institutes of health|7184836 +national insurance|7184973 +national intelligence community|7185018 +national labor relations board|7185208 +national leader|7185303 +national liberation army|7185385 +national liberation front of corsica|7185666 +national library of medicine|7185828 +national monument|7185980 +national oceanic and atmospheric administration|7186025 +national park|7186199 +national park service|7186236 +national reconnaissance office|7186353 +national rifle association|7186462 +national security agency|7186562 +national security council|7186659 +national service|7186741 +national socialism|7186775 +national socialist|7186846 +national socialist german workers' party|7186894 +national technical information service|7187018 +national trading policy|7187174 +national trust|7187235 +national volunteers association|7187310 +national weather service|7187426 +nationalisation|7187549 +nationalise|7187699 +nationalism|7187791 +nationalist|7188004 +nationalist china|7188125 +nationalist leader|7188208 +nationalistic|7188255 +nationality|7188392 +nationalization|7188429 +nationalize|7188579 +nationally|7188671 +nationaol science foundation|7188738 +nationwide|7188828 +native|7188925 +native alaskan|7189233 +native american|7189309 +native australian|7189521 +native bear|7189650 +native beech|7189750 +native cat|7189822 +native cranberry|7189870 +native fuchsia|7189988 +native hawaiian|7190060 +native holly|7190110 +native land|7190183 +native language|7190287 +native orange|7190346 +native peach|7190395 +native pear|7190457 +native pomegranate|7190520 +native speaker|7190571 +native sulfur|7190640 +native sulphur|7190722 +native-born|7189205 +nativeness|7190804 +nativism|7190832 +nativist|7190915 +nativistic|7191037 +nativity|7191138 +nato|7191280 +natriuresis|7191446 +natriuretic|7191475 +natrix|7191503 +natrix maura|7191553 +natrix natrix|7191659 +natrix sipedon|7191744 +natrolite|7191849 +natta|7191876 +natter|7191918 +natterjack|7192056 +nattiness|7192100 +natty|7192215 +natural|7192314 +natural ability|7192698 +natural action|7192732 +natural childbirth|7192796 +natural covering|7192875 +natural depression|7192931 +natural elevation|7193001 +natural enclosure|7193069 +natural endowment|7193113 +natural event|7193178 +natural family planning|7193228 +natural fiber|7193308 +natural fibre|7193357 +natural gas|7193406 +natural glass|7193443 +natural history|7193472 +natural immunity|7193509 +natural language|7193571 +natural language processing|7193638 +natural language processing application|7193763 +natural language processor|7193894 +natural law|7194025 +natural logarithm|7194079 +natural number|7194140 +natural object|7194171 +natural order|7194218 +natural phenomenon|7194292 +natural philosophy|7194331 +natural process|7194400 +natural resin|7194464 +natural resource|7194513 +natural resources|7194566 +natural science|7194652 +natural scientist|7194707 +natural selection|7194770 +natural shape|7194887 +natural spring|7194921 +natural state|7195011 +natural theology|7195061 +natural virtue|7195115 +naturalisation|7195155 +naturalise|7195393 +naturalised|7195581 +naturalism|7195622 +naturalist|7195732 +naturalistic|7195814 +naturalization|7195863 +naturalize|7196101 +naturalized|7196314 +naturally|7196382 +naturally occurring|7196433 +naturalness|7196470 +nature|7196568 +nature study|7196715 +nature worship|7196762 +naturism|7196818 +naturist|7196860 +naturistic|7196899 +naturopath|7196935 +naturopathy|7196972 +nauch|7197003 +nauclea|7197074 +nauclea diderrichii|7197133 +naucrates|7197219 +naucrates ductor|7197275 +naught|7197351 +naughtily|7197471 +naughtiness|7197509 +naughty|7197567 +naumachia|7197652 +naumachy|7197690 +naupathia|7197728 +nauru|7197796 +nauru island|7197903 +nauruan|7197967 +nausea|7198038 +nauseant|7198086 +nauseate|7198147 +nauseated|7198274 +nauseating|7198322 +nauseatingness|7198406 +nauseous|7198519 +naut mi|7198603 +nautch|7198788 +nautch dance|7198859 +nautch girl|7198930 +nautical|7198978 +nautical chain|7199045 +nautical linear unit|7199075 +nautical mile|7199117 +nautical signal flag|7199296 +nautilidae|7199353 +nautilus|7199417 +navaho|7199634 +navajo|7199793 +naval|7199952 +naval academy|7200005 +naval air warfare center weapons division|7200036 +naval attache|7200202 +naval battle|7200242 +naval blockade|7200297 +naval brass|7200343 +naval campaign|7200451 +naval chart|7200504 +naval commander|7200562 +naval division|7200601 +naval engineer|7200645 +naval engineering|7200725 +naval equipment|7200811 +naval forces|7200846 +naval gun|7200912 +naval installation|7200946 +naval missile|7201010 +naval officer|7201048 +naval radar|7201096 +naval research laboratory|7201133 +naval shipyard|7201262 +naval special warfare|7201305 +naval surface warfare center|7201426 +naval tactical data system|7201562 +naval underwater warfare center|7201615 +naval unit|7201757 +naval weaponry|7201827 +navane|7201907 +navarino|7202101 +nave|7202160 +navel|7202179 +navel orange|7202282 +navel point|7202317 +navicular|7202367 +navigability|7202468 +navigable|7202515 +navigate|7202543 +navigation|7202770 +navigation light|7202918 +navigational|7202963 +navigational chart|7203012 +navigational instrument|7203070 +navigational system|7203114 +navigator|7203150 +navratilova|7203252 +navvy|7203319 +navy|7203396 +navy base|7203503 +navy bean|7203546 +navy blue|7203597 +navy cross|7203645 +navy department|7203729 +navy man|7203791 +navy seal|7203885 +navy secretary|7203957 +navy yard|7204032 +nawab|7204075 +nawcwpns|7204105 +nay|7204238 +naysayer|7204260 +naysaying|7204333 +nazarene|7204359 +nazareth|7204604 +naze|7204636 +nazi|7204675 +nazi germany|7204799 +nazi party|7204852 +nazification|7204946 +nazify|7204996 +naziism|7205039 +nazimova|7205118 +nazism|7205167 +nb|7205245 +nbe|7205358 +nbw|7205409 +nc|7205460 +ncdc|7205536 +nd|7205649 +ndebele|7205771 +ndjamena|7205811 +ne|7205891 +ne plus ultra|7206214 +ne'er|7206082 +ne'er-do-well|7206102 +neandertal|7206267 +neandertal man|7206529 +neanderthal|7206664 +neanderthal man|7206926 +neanderthalian|7207062 +neap|7207150 +neap tide|7207205 +neapolitan|7207260 +neapolitan ice cream|7207324 +near|7207385 +near beer|7207976 +near east|7208028 +near gale|7208149 +near miss|7208187 +near thing|7208236 +near vision|7208296 +near-blind|7207828 +near-death experience|7207934 +nearby|7208359 +nearer|7208386 +nearest|7208721 +nearly|7209066 +nearness|7209173 +nearside|7209210 +nearsighted|7209233 +nearsightedness|7209273 +neat|7209332 +neat's-foot oil|7209566 +neaten|7209602 +neatly|7209725 +neatness|7209757 +neb|7209823 +nebbech|7209897 +nebbish|7209939 +nebcin|7209981 +nebe|7210042 +nebiim|7210099 +nebn|7210191 +nebo|7210249 +nebraska|7210287 +nebraska fern|7210349 +nebraskan|7210485 +nebuchadnezzar|7210534 +nebuchadnezzar ii|7210661 +nebuchadrezzar|7210772 +nebuchadrezzar ii|7210880 +nebula|7210991 +nebular|7211109 +nebular hypothesis|7211155 +nebulose|7211201 +nebulous|7211246 +nec|7211317 +necessarily|7211381 +necessary|7211447 +necessitarian|7211653 +necessitate|7211688 +necessitous|7211784 +necessity|7211865 +neck|7211951 +neck and neck|7212230 +neck bone|7212324 +neck brace|7212370 +neck exercise|7212396 +neck of the woods|7212483 +neck ruff|7212563 +neck sweetbread|7212617 +neck-deep|7212108 +neckar|7212680 +neckar river|7212722 +neckband|7212770 +neckcloth|7212868 +necked|7212900 +necker|7213016 +neckerchief|7213038 +necking|7213068 +necklace|7213219 +necklace poplar|7213255 +necklace tree|7213328 +neckless|7213356 +necklet|7213383 +necklike|7213434 +neckline|7213459 +neckpiece|7213482 +necktie|7213543 +neckwear|7213573 +necrobiosis|7213599 +necrobiosis lipoidica|7213637 +necrobiosis lipoidica diabeticorum|7213778 +necrology|7213919 +necrolysis|7213998 +necromancer|7214024 +necromancy|7214095 +necromania|7214209 +necromantic|7214278 +necromantical|7214383 +necrophagia|7214468 +necrophagy|7214515 +necrophilia|7214562 +necrophilism|7214631 +necropolis|7214700 +necropsy|7214809 +necrose|7214893 +necrosis|7214948 +necrotic|7215005 +necrotizing enteritis|7215028 +necrotizing enterocolitis|7215069 +nectar|7215129 +nectariferous|7215239 +nectarine|7215273 +nectarine tree|7215363 +nectarous|7215433 +nectary|7215481 +necturus|7215522 +necturus maculosus|7215580 +nee|7215648 +need|7215683 +needed|7216013 +needer|7216066 +needful|7216142 +needfully|7216195 +needle|7216225 +needle bearing|7216983 +needle biopsy|7217043 +needle blight|7217073 +needle bush|7217130 +needle cast|7217365 +needle furze|7217422 +needle palm|7217488 +needle rush|7217588 +needle spike rush|7217690 +needle wood|7217792 +needle-bush|7216437 +needle-shaped|7216672 +needle-wood|7216749 +needlebush|7218026 +needlecraft|7218099 +needlefish|7218169 +needlelike|7218280 +needlenose pliers|7218327 +needlepoint|7218383 +needless|7218448 +needlewoman|7218511 +needlewood|7218616 +needlework|7218688 +needleworker|7218759 +needs|7218794 +needy|7218844 +neel|7218925 +neem|7218978 +neem cake|7219069 +neem seed|7219134 +neem tree|7219158 +neencephalon|7219249 +nefarious|7219302 +nefariousness|7219339 +nefazodone|7219396 +nefertiti|7219459 +neftali ricardo reyes|7219494 +negaprion|7219578 +negaprion brevirostris|7219634 +negara brunei darussalam|7219715 +negate|7219791 +negation|7220016 +negative|7220077 +negative charge|7220531 +negative chemotaxis|7220579 +negative correlation|7220619 +negative feedback|7220707 +negative feedback circuit|7220743 +negative identification|7220825 +negative magnetic pole|7220873 +negative muon|7220957 +negative pole|7221001 +negative reinforcer|7221106 +negative reinforcing stimulus|7221211 +negative stimulation|7221316 +negative stimulus|7221391 +negatively charged|7221455 +negativeness|7221491 +negativism|7221541 +negativist|7221580 +negativity|7221620 +negatron|7221742 +negev|7221776 +negev desert|7221817 +neggram|7221865 +neglect|7221950 +neglect of duty|7222274 +neglected|7222346 +neglecter|7222422 +neglectful|7222494 +neglectful of|7222614 +neglectfulness|7222661 +neglige|7222717 +negligee|7222778 +negligence|7222839 +negligent|7222971 +negligible|7223120 +negociate|7223181 +negotiable|7223450 +negotiable instrument|7223574 +negotiant|7223666 +negotiate|7223717 +negotiation|7223784 +negotiator|7223866 +negotiatress|7223917 +negotiatrix|7223980 +negress|7224043 +negritude|7224112 +negro|7224189 +negro peach|7224347 +negro pepper|7224429 +negro race|7224489 +negro spiritual|7224549 +negro vine|7224615 +negroid|7224682 +negroid race|7224842 +negus|7224904 +nehemiah|7224931 +nehru|7224980 +nei monggol|7225050 +neigh|7225113 +neighbor|7225212 +neighborhood|7225545 +neighboring|7225690 +neighborliness|7225823 +neighborly|7225917 +neighbour|7225958 +neighbourhood|7226287 +neighbouring|7226397 +neighbourliness|7226461 +neighbourly|7226555 +neil armstrong|7226596 +neil simon|7226674 +neisseria gonorrhoeae|7226750 +nejd|7226833 +nekton|7226947 +nelfinavir|7226978 +nell gwynn|7227029 +nell gwynne|7227152 +nell gywn|7227276 +nellie bly|7227398 +nellie ross|7227490 +nellie tayloe ross|7227588 +nelson|7227693 +nelson algren|7227795 +nelson mandela|7227853 +nelson rolihlahla mandela|7227977 +nelumbo|7228112 +nelumbo lutea|7228173 +nelumbo nucifera|7228263 +nelumbonaceae|7228349 +nem con|7228433 +nematocera|7228482 +nematoda|7228546 +nematode|7228631 +nematode worm|7228678 +nembutal|7228725 +nemea|7228813 +nemean games|7228846 +nemean lion|7228886 +nemertea|7228954 +nemertean|7229031 +nemertina|7229092 +nemertine|7229170 +nemesis|7229231 +nemine contradicente|7229305 +nemophila|7229354 +nemophila aurita|7229395 +nemophila maculata|7229493 +nemophila menziesii|7229560 +nenets|7229646 +nentsi|7229715 +nentsy|7229784 +neo|7229853 +neo jazz|7230110 +neo-darwinian|7229873 +neo-darwinism|7229919 +neo-lamarckian|7229966 +neo-lamarckism|7230015 +neo-latin|7230065 +neobiotic|7230154 +neoceratodus|7230239 +neoceratodus forsteri|7230304 +neoclassic|7230388 +neoclassical|7230431 +neoclassicism|7230474 +neoclassicist|7230569 +neoclassicistic|7230724 +neocolonialism|7230834 +neocon|7230870 +neoconservative|7230930 +neoconservativism|7230990 +neocortex|7231045 +neocortical|7231122 +neodymium|7231189 +neoencephalon|7231251 +neoexpressionism|7231304 +neofiber|7231344 +neofiber alleni|7231399 +neohygrophorus|7231508 +neohygrophorus angelesianus|7231581 +neolentinus|7231654 +neolentinus ponderosus|7231718 +neoliberal|7231808 +neoliberalism|7231863 +neolith|7231897 +neolithic|7231919 +neolithic age|7232050 +neologism|7232145 +neologist|7232218 +neology|7232264 +neomycin|7232339 +neomys|7232414 +neomys anomalus|7232463 +neomys fodiens|7232542 +neon|7232614 +neon induction lamp|7232701 +neon lamp|7232755 +neon tube|7232809 +neonatal|7232863 +neonatal death|7232897 +neonatal hyperbilirubinemia|7232927 +neonatal intensive care unit|7233017 +neonatal mortality|7233084 +neonatal mortality rate|7233206 +neonatal period|7233328 +neonate|7233366 +neonatology|7233436 +neopallium|7233499 +neophobia|7233576 +neophron|7233609 +neophron percnopterus|7233662 +neophyte|7233768 +neoplasia|7233954 +neoplasm|7234013 +neoplastic|7234051 +neoplastic cell|7234077 +neoplatonism|7234131 +neoplatonist|7234250 +neopolitan|7234303 +neoprene|7234342 +neoromanticism|7234377 +neosho|7234432 +neosho river|7234474 +neosporin|7234522 +neostigmine|7234596 +neotenic|7234647 +neotenous|7234693 +neoteny|7234739 +neotoma|7234775 +neotoma cinerea|7234827 +neotoma floridana|7234931 +neotoma fuscipes|7235010 +nepa|7235135 +nepal|7235181 +nepal trumpet flower|7235246 +nepalese|7235342 +nepalese monetary unit|7235439 +nepalese rupee|7235508 +nepali|7235576 +nepenthaceae|7235702 +nepenthes|7235790 +nepeta|7235866 +nepeta cataria|7235922 +nepeta hederaceae|7235998 +nepheline|7236133 +nephelinite|7236170 +nephelite|7236199 +nephelium|7236236 +nephelium lappaceum|7236312 +nephelium litchi|7236404 +nephelium longana|7236501 +nephelium mutabile|7236617 +nephew|7236705 +nephology|7236729 +nephoscope|7236760 +nephralgia|7236835 +nephrectomy|7236868 +nephrite|7236931 +nephritic|7236959 +nephritis|7237071 +nephroangiosclerosis|7237159 +nephroblastoma|7237257 +nephrocalcinosis|7237354 +nephrogenic diabetes insipidus|7237412 +nephrolepis|7237471 +nephrolepis exaltata|7237533 +nephrolepis exaltata bostoniensis|7237641 +nephrolepis pectinata|7237762 +nephrolith|7237857 +nephrolithiasis|7237942 +nephrology|7237993 +nephron|7238040 +nephropathy|7238083 +nephrops|7238153 +nephrops norvegicus|7238211 +nephropsidae|7238283 +nephroptosia|7238355 +nephroptosis|7238419 +nephrosclerosis|7238483 +nephrosis|7238581 +nephrotic syndrome|7238686 +nephrotomy|7238733 +nephrotoxic|7238788 +nephrotoxin|7238815 +nephthys|7238842 +nephthytis|7238884 +nephthytis afzelii|7238915 +nepidae|7238973 +nepotism|7239030 +neptune|7239086 +neptunium|7239162 +nerd|7239224 +nereid|7239288 +nereus|7239321 +nergal|7239356 +nerita|7239393 +nerita peloronta|7239435 +neritic|7239519 +neritic zone|7239624 +neritid|7239720 +neritid gastropod|7239764 +neritidae|7239808 +neritina|7239869 +nerium|7239913 +nerium oleander|7239980 +nernst|7240055 +nero|7240119 +nero claudius caesar drusus germanicus|7240412 +nero's crown|7240235 +nerodia|7240562 +nerodia sipedon|7240615 +neroli oil|7240721 +nerthus|7240745 +neruda|7240792 +nerva|7240861 +nerve|7240934 +nerve agent|7241268 +nerve block anaesthesia|7241316 +nerve block anesthesia|7241475 +nerve cell|7241634 +nerve center|7241690 +nerve centre|7241790 +nerve compression|7241890 +nerve deafness|7241977 +nerve end|7242064 +nerve ending|7242100 +nerve entrapment|7242136 +nerve fiber|7242180 +nerve fibre|7242225 +nerve gas|7242270 +nerve growth factor|7242318 +nerve impulse|7242365 +nerve pathway|7242417 +nerve plexus|7242495 +nerve tissue|7242529 +nerve tract|7242580 +nerve-racking|7241132 +nerve-wracking|7241200 +nerveless|7242658 +nervelessly|7242731 +nervelessness|7242771 +nerveroot|7242816 +nerves|7242929 +nervi|7243253 +nervii olfactorii|7243310 +nervily|7243387 +nervous|7243420 +nervous breakdown|7243559 +nervous disorder|7243605 +nervous exhaustion|7243689 +nervous prostration|7243755 +nervous strain|7243821 +nervous system|7243885 +nervous tissue|7243933 +nervousness|7243984 +nervure|7244125 +nervus|7244216 +nervus abducens|7244284 +nervus accessorius|7244391 +nervus coccygeus|7244489 +nervus facialis|7244560 +nervus femoralis|7244641 +nervus glossopharyngeus|7244732 +nervus hypoglosus|7244822 +nervus ischiadicus|7244915 +nervus oculomotorius|7244970 +nervus opticus|7245062 +nervus phrenicus|7245145 +nervus radialis|7245214 +nervus saphenus|7245285 +nervus spinalis|7245339 +nervus trigeminus|7245390 +nervus ulnaris|7245490 +nervus vagus|7245553 +nervus vestibulocochlearis|7245677 +nervy|7245802 +nescience|7245947 +nescient|7246013 +nesokia|7246125 +ness|7246177 +nesselrode|7246248 +nesselrode pudding|7246306 +nessie|7246372 +nest|7246432 +nest egg|7246793 +nester|7246852 +nesting place|7246918 +nestle|7246970 +nestled|7247160 +nestling|7247192 +nestor|7247335 +nestor notabilis|7247417 +nestor paz zamora commission|7247471 +nestorian|7247646 +nestorian church|7247743 +nestorianism|7247810 +nestorius|7247904 +net|7247943 +net ball|7248370 +net estate|7248432 +net fish|7248459 +net income|7248482 +net melon|7248554 +net profit|7248731 +net sales|7248803 +net ton|7248829 +netball|7248877 +nether|7248905 +nether region|7248986 +netherlander|7249087 +netherlands|7249150 +netherlands antilles|7249267 +netherlands guiana|7249325 +nethermost|7249468 +netherworld|7249516 +netkeeper|7249617 +netlike|7249766 +netmail|7249849 +netminder|7249895 +netscape|7249999 +nett|7250046 +netted|7250115 +netted melon|7250198 +netting|7250372 +nettle|7250452 +nettle family|7250765 +nettle rash|7250850 +nettle tree|7250961 +nettle-leaved bellflower|7250595 +nettle-leaved goosefoot|7250682 +nettled|7250997 +nettleleaf goosefoot|7251103 +nettlesome|7251186 +network|7251424 +network architecture|7251657 +network army|7251706 +network programming|7251735 +network topology|7251773 +networklike|7251836 +neumann|7251890 +neural|7251958 +neural arch|7252041 +neural net|7252082 +neural network|7252171 +neural structure|7252256 +neural tube|7252363 +neuralgia|7252411 +neuralgic|7252452 +neuralgy|7252483 +neurasthenia|7252524 +neurasthenic|7252564 +neurectomy|7252647 +neurilemma|7252709 +neurilemoma|7252752 +neurinoma|7252808 +neuritis|7252915 +neuroanatomic|7252960 +neuroanatomical|7253022 +neuroanatomy|7253084 +neurobiological|7253130 +neurobiologist|7253181 +neurobiology|7253230 +neuroblast|7253279 +neuroblastoma|7253329 +neurochemical|7253404 +neurodermatitis|7253444 +neuroendocrine|7253480 +neuroepithelioma|7253517 +neuroepithelium|7253595 +neuroethics|7253649 +neurofibroma|7253680 +neurofibromatosis|7253736 +neurogenesis|7253884 +neurogenic|7253965 +neurogenic bladder|7253998 +neuroglia|7254043 +neurogliacyte|7254087 +neuroglial|7254166 +neuroglial cell|7254205 +neurohormone|7254284 +neurohypophysis|7254343 +neurolemma|7254468 +neuroleptic|7254511 +neuroleptic agent|7254779 +neuroleptic drug|7255047 +neurolinguist|7255315 +neurolinguistics|7255383 +neurologic|7255421 +neurological|7255480 +neurological disease|7255539 +neurological disorder|7255623 +neurologist|7255707 +neurology|7255771 +neurolysin|7255859 +neuroma|7255896 +neuromatous|7255935 +neuromotor|7255977 +neuromuscular|7256015 +neuromuscular blocking agent|7256112 +neuromuscular junction|7256173 +neuron|7256232 +neuronal|7256288 +neuronic|7256350 +neuropathy|7256412 +neurophysiological|7256442 +neurophysiology|7256482 +neuroplasty|7256520 +neuropsychiatric|7256590 +neuropsychiatry|7256642 +neuropsychological|7256694 +neuropsychology|7256754 +neuroptera|7256854 +neuropteran|7256973 +neuropteron|7257033 +neuropterous insect|7257093 +neurosarcoma|7257153 +neuroscience|7257201 +neuroscientist|7257236 +neurosis|7257275 +neurospora|7257396 +neurosurgeon|7257457 +neurosurgery|7257528 +neurosyphilis|7257623 +neurotic|7257664 +neurotic depression|7258122 +neuroticism|7258202 +neurotoxic|7258323 +neurotoxin|7258348 +neurotransmitter|7258385 +neurotrichus|7258425 +neurotrichus gibbsii|7258492 +neurotropic|7258574 +neurotropism|7258602 +neuter|7258632 +neutered|7258808 +neutering|7258852 +neutral|7258915 +neutral spirits|7259227 +neutralisation|7259314 +neutralisation reaction|7259578 +neutralise|7259692 +neutralised|7259882 +neutralism|7259923 +neutralist|7259958 +neutrality|7260016 +neutralization|7260132 +neutralization fire|7260396 +neutralization reaction|7260437 +neutralize|7260551 +neutralized|7260835 +neutrino|7260876 +neutron|7260901 +neutron bomb|7260926 +neutron flux|7261005 +neutron radiation|7261032 +neutron star|7261122 +neutropenia|7261149 +neutrophil|7261192 +neutrophile|7261314 +neva|7261436 +neva river|7261472 +nevada|7261514 +nevadan|7261602 +nevado de colima|7261636 +nevelson|7261711 +never|7261794 +never again|7262169 +never-ending|7261814 +never-never|7261922 +never-never land|7262030 +never-say-die|7262108 +nevermore|7262199 +nevertheless|7262229 +nevil shute|7262324 +nevil shute norway|7262396 +neville chamberlain|7262475 +nevirapine|7262595 +nevis|7262677 +nevoid elephantiasis|7262705 +nevus|7262924 +nevus flammeus|7262968 +new|7263024 +new amsterdam|7263649 +new ballgame|7263704 +new britain|7263762 +new brunswick|7263802 +new caledonia|7263883 +new caledonian|7263927 +new caledonian pine|7263972 +new caledonian yew|7264032 +new criticism|7264103 +new deal|7264155 +new dealer|7264246 +new delhi|7264331 +new edition|7264409 +new england|7264442 +new england aster|7264547 +new england boiled dinner|7264618 +new england clam chowder|7264698 +new englander|7264770 +new english bible|7264828 +new flower|7264962 +new guinea|7265042 +new hampshire|7265086 +new hampshirite|7265183 +new haven|7265233 +new hebrides|7265291 +new ireland|7265373 +new jazz|7265413 +new jersey|7265457 +new jerseyan|7265544 +new jerseyite|7265602 +new latin|7265661 +new line|7265706 +new london|7265743 +new look|7265779 +new mexico|7265824 +new moon|7265893 +new netherland|7265951 +new norwegian|7266008 +new orleans|7266072 +new penny|7266163 +new people's army|7266201 +new phase of the moon|7266324 +new river|7266382 +new river gorge bridge|7266417 +new scotland yard|7266490 +new siberian islands|7266586 +new south wales|7266644 +new stone age|7266702 +new style calendar|7266797 +new testament|7266878 +new to|7266930 +new town|7266963 +new wave|7267007 +new waver|7267143 +new world|7267219 +new world anteater|7267314 +new world beaver|7267379 +new world blackbird|7267447 +new world chat|7267546 +new world coral snake|7267621 +new world flycatcher|7267722 +new world goldfinch|7267823 +new world jay|7267914 +new world least weasel|7267955 +new world leishmaniasis|7268032 +new world monkey|7268231 +new world mouse|7268293 +new world opah|7268363 +new world oriole|7268452 +new world porcupine|7268537 +new world sparrow|7268605 +new world tapir|7268656 +new world vulture|7268722 +new world warbler|7268785 +new year|7268851 +new year's|7268898 +new year's day|7268985 +new year's eve|7269076 +new york|7269131 +new york aster|7269332 +new york bay|7269412 +new york city|7269451 +new york fern|7269572 +new york minute|7269673 +new york state|7269819 +new york state barge canal|7269898 +new york stock exchange|7269967 +new york strip|7270106 +new yorker|7270167 +new zealand|7270207 +new zealand beech|7270285 +new zealand cotton|7270361 +new zealand dacryberry|7270436 +new zealand daisybush|7270597 +new zealand dollar|7270698 +new zealand honeysuckle|7270752 +new zealand mountain pine|7270853 +new zealand spinach|7270994 +new zealand white pine|7271110 +new zealand wine berry|7271271 +new zealand wren|7271397 +new zealander|7271459 +new-made|7263580 +new-sprung|7263604 +newari|7271565 +newark|7271599 +newbie|7271651 +newborn|7271766 +newborn baby|7271893 +newborn infant|7271963 +newburg sauce|7272033 +newburgh|7272076 +newcastle|7272108 +newcastle disease|7272284 +newcastle-upon-tyne|7272191 +newcomb|7272344 +newcomer|7272416 +newel|7272560 +newel post|7272612 +newest|7272643 +newfangled|7273270 +newfound|7273303 +newfoundland|7273325 +newfoundland and labrador|7273421 +newfoundland dwarf birch|7273500 +newly|7273615 +newly arisen|7273656 +newlywed|7273701 +newman|7273778 +newmarket|7273998 +newness|7274085 +newport|7274106 +newport news|7274209 +news|7274278 +news agency|7274488 +news article|7274596 +news bulletin|7274655 +news conference|7274713 +news event|7274783 +news item|7274838 +news leak|7274868 +news media|7274924 +news organisation|7274981 +news organization|7275089 +news photography|7275197 +news program|7275239 +news reader|7275304 +news report|7275428 +news show|7275484 +news story|7275549 +newsagent|7275608 +newsboy|7275715 +newsbreak|7275775 +newscast|7275833 +newscaster|7275856 +newsdealer|7275886 +newsflash|7275993 +newsless|7276051 +newsletter|7276115 +newsman|7276187 +newsmonger|7276237 +newspaper|7276324 +newspaper ad|7276518 +newspaper advertisement|7276626 +newspaper article|7276734 +newspaper clipping|7276793 +newspaper column|7276893 +newspaper columnist|7276944 +newspaper critic|7276996 +newspaper editor|7277049 +newspaper headline|7277098 +newspaper publisher|7277155 +newspapering|7277296 +newspaperman|7277329 +newspaperwoman|7277411 +newspeak|7277493 +newsperson|7277535 +newsprint|7277585 +newsreader|7277620 +newsreel|7277663 +newsroom|7277695 +newssheet|7277769 +newsstand|7277841 +newsstand operator|7277884 +newsvendor|7277991 +newswoman|7278098 +newsworthiness|7278145 +newsworthy|7278199 +newswriter|7278231 +newsy|7278313 +newt|7278402 +newton|7278434 +newton's first law|7278531 +newton's first law of motion|7278677 +newton's law|7278833 +newton's law of gravitation|7278923 +newton's law of motion|7279025 +newton's second law|7279125 +newton's second law of motion|7279275 +newton's theory of gravitation|7279435 +newton's third law|7279585 +newton's third law of motion|7279758 +newtonian|7279941 +newtonian mechanics|7280019 +newtonian reflector|7280098 +newtonian telescope|7280198 +newtown wonder|7280298 +next|7280351 +next door|7280532 +next friend|7280598 +next of kin|7280625 +next-to-last|7280455 +nexus|7280664 +ney|7280706 +nez perce|7280788 +ng|7280884 +ngaio marsh|7280936 +nganasan|7280989 +ngb|7281058 +ngf|7281161 +ngo|7281212 +ngu|7281284 +ngultrum|7281337 +nguni|7281379 +nguyen tat thanh|7281423 +ngwee|7281510 +nh|7281547 +ni|7281605 +ni-hard|7281667 +ni-hard iron|7281732 +ni-resist|7281802 +ni-resist iron|7281873 +niacin|7281949 +niagara|7282048 +niagara falls|7282138 +niagara river|7282249 +niamey|7282300 +nib|7282357 +nibbed|7282418 +nibble|7282442 +nibbler|7282584 +nibelung|7282607 +nibelungenlied|7282677 +niblick|7282748 +nicad|7282780 +nicaea|7282850 +nicaean|7282902 +nicandra|7282962 +nicandra physaloides|7283024 +nicaragua|7283120 +nicaraguan|7283220 +nicaraguan capital|7283334 +nicaraguan monetary unit|7283427 +niccolo machiavelli|7283500 +niccolo paganini|7283605 +nice|7283675 +nicene|7283927 +nicene creed|7283986 +niceness|7284069 +nicety|7284191 +niche|7284331 +nicholas|7284504 +nicholas i|7284572 +nicholas ii|7284634 +nicholas vachel lindsay|7284682 +nichrome|7284767 +nick|7284825 +nickel|7284993 +nickel alloy|7285555 +nickel bronze|7285607 +nickel note|7285637 +nickel silver|7285698 +nickel steel|7285747 +nickel-and-dime|7285129 +nickel-base alloy|7285271 +nickel-cadmium accumulator|7285323 +nickel-iron accumulator|7285393 +nickel-iron battery|7285474 +nickelodeon|7285781 +nicker|7285835 +nicker nut|7285933 +nicker seed|7285981 +nicklaus|7286029 +nicknack|7286120 +nickname|7286233 +nicol prism|7286371 +nicola amati|7286419 +nicola sacco|7286486 +nicolas de malebranche|7286558 +nicolas leonard sadi carnot|7286637 +nicolas poussin|7286731 +nicolaus copernicus|7286791 +nicolo amati|7286901 +nicolson|7286968 +nicosia|7287073 +nicotiana|7287133 +nicotiana alata|7287198 +nicotiana glauca|7287281 +nicotiana rustica|7287358 +nicotiana tabacum|7287439 +nicotinamide adenine dinucleotide|7287507 +nicotinamide adenine dinucleotide phosphate|7287563 +nicotine|7287630 +nicotine addiction|7287713 +nicotine poisoning|7287769 +nicotinic acid|7287836 +nictate|7287935 +nictation|7288007 +nictitate|7288174 +nictitating membrane|7288246 +nictitation|7288305 +nicu|7288472 +nidaros|7288544 +nidation|7288613 +niddm|7288679 +nidicolous|7289075 +nidifugous|7289106 +nidularia|7289137 +nidulariaceae|7289195 +nidulariales|7289267 +nidus|7289334 +niebuhr|7289385 +niece|7289538 +niels abel|7289563 +niels bohr|7289631 +niels henrik abel|7289709 +niels henrik david bohr|7289784 +nielson|7289875 +niemann-pick disease|7289942 +nierembergia|7290085 +nierembergia frutescens|7290139 +nierembergia repens|7290234 +nierembergia rivularis|7290338 +nietzsche|7290445 +nifedipine|7290514 +niff|7290584 +niffy|7290660 +nifty|7290698 +nigella|7290816 +nigella damascena|7290840 +nigella hispanica|7290908 +nigella sativa|7290975 +niger|7291066 +niger franc|7291446 +niger river|7291485 +niger-congo|7291167 +niger-kordofanian|7291245 +niger-kordofanian language|7291341 +nigeria|7291530 +nigerian|7291614 +nigerian capital|7291727 +nigerian monetary unit|7291812 +nigerien|7291881 +nigga|7291948 +niggard|7292039 +niggardliness|7292088 +niggardly|7292216 +niggardness|7292269 +nigger|7292397 +niggle|7292488 +niggler|7292595 +niggling|7292626 +nigh|7292747 +nigher|7292881 +nighest|7292910 +night|7293013 +night bell|7293742 +night bird|7293783 +night blindness|7293859 +night court|7294001 +night game|7294037 +night heron|7294070 +night jasmine|7294109 +night jessamine|7294177 +night latch|7294245 +night letter|7294275 +night lizard|7294311 +night owl|7294340 +night porter|7294393 +night raven|7294483 +night rider|7294540 +night school|7294692 +night shift|7294721 +night snake|7294816 +night soil|7294881 +night terror|7294908 +night vision|7294951 +night watch|7295059 +night watchman|7295124 +night-blooming cereus|7293355 +night-light|7293421 +night-line|7293461 +night-robe|7293494 +night-sight|7293592 +night-stop|7293700 +nightbird|7295180 +nightcap|7295233 +nightclothes|7295280 +nightclub|7295354 +nightcrawler|7295401 +nightdress|7295540 +nighted|7295638 +nightfall|7295676 +nightgown|7295770 +nighthawk|7295868 +nightie|7295982 +nightingale|7296080 +nightjar|7296199 +nightlong|7296260 +nightly|7296294 +nightmare|7296339 +nightmarish|7296398 +nightrider|7296455 +nightshade|7296526 +nightshirt|7296573 +nightspot|7296616 +nightstick|7296663 +nighttime|7296726 +nightwalker|7296835 +nightwear|7296974 +nightwork|7297048 +nigra|7297072 +nigrify|7297163 +nigroporus|7297244 +nigroporus vinosus|7297305 +nih|7297387 +nihau|7297498 +nihau island|7297539 +nihil|7297587 +nihil obstat|7297680 +nihilism|7297782 +nihilist|7297943 +nihilistic|7298018 +nihilistic delusion|7298100 +nihon|7298164 +nij|7298225 +nijinsky|7298295 +nijmegen|7298381 +nike|7298437 +nikita khrushchev|7298468 +nikita sergeyevich khrushchev|7298586 +nikola tesla|7298716 +nikolaas tinbergen|7298807 +nikolai andreyevich rimski-korsakov|7298891 +nikolai andreyevich rimsky-korsakov|7299049 +nikolai ivanovich bukharin|7299207 +nikolai ivanovich lobachevsky|7299300 +nikolai lenin|7299395 +nikolai vasilievich gogol|7299564 +nil|7299645 +nile|7299750 +nile crocodile|7299786 +nile river|7299874 +nilgai|7299916 +nilgiri hills|7299991 +nilo-saharan|7300034 +nilo-saharan language|7300115 +nilotic|7300205 +nilotic language|7300303 +nilpotent|7300365 +nilsson|7300396 +nim|7300465 +nim tree|7300489 +nima|7300580 +nimble|7300699 +nimble will|7300811 +nimble-fingered|7300764 +nimbleness|7300965 +nimblewill|7301039 +nimbly|7301100 +nimbus|7301123 +nimbus cloud|7301225 +nimby|7301271 +nimiety|7301342 +niminy-piminy|7301436 +nimitz|7301492 +nimravus|7301582 +nimrod|7301637 +nin-sin|7301676 +nina|7301773 +nina from carolina|7301806 +nincompoop|7301889 +nine|7301937 +nine iron|7302222 +nine times|7302254 +nine-banded armadillo|7302072 +nine-membered|7302155 +nine-spot|7302198 +ninefold|7302282 +ninepence|7302334 +ninepenny|7302358 +ninepin|7302383 +ninepin ball|7302436 +ninepins|7302476 +niner|7302562 +nineteen|7302626 +nineteenth|7302688 +nineties|7302733 +ninetieth|7302891 +ninety|7302935 +ninety-eight|7302993 +ninety-fifth|7303034 +ninety-five|7303069 +ninety-four|7303106 +ninety-nine|7303144 +ninety-one|7303180 +ninety-seven|7303216 +ninety-six|7303256 +ninety-three|7303293 +ninety-two|7303333 +nineveh|7303370 +ningal|7303424 +ningirsu|7303461 +ningishzida|7303502 +ninhursag|7303549 +ninib|7303614 +ninigi|7303657 +ninigino-mikoto|7303711 +ninja|7303774 +ninjitsu|7303865 +ninjutsu|7303904 +ninkharsag|7303943 +ninkhursag|7304009 +ninny|7304075 +ninon|7304123 +ninth|7304168 +ninth cranial nerve|7304256 +ninth of ab|7304346 +ninth of av|7304475 +nintoo|7304604 +nintu|7304647 +ninurta|7304689 +niobite|7304734 +niobium|7304769 +niobrara|7304829 +niobrara river|7304877 +nip|7304931 +nip and tuck|7305276 +nip off|7305508 +nipa|7305552 +nipa fruticans|7305683 +nipa palm|7305747 +nipper|7305796 +nipping|7305963 +nipple|7306067 +nipple shield|7306142 +nippon|7306172 +nipponese|7306234 +nippy|7306311 +nipr|7306365 +niqaabi|7306536 +niqab|7306562 +nirvana|7306587 +nisan|7306727 +nisi|7306777 +nissan|7306804 +nissen hut|7306855 +nist|7306921 +nisus|7307051 +nit|7307126 +nitella|7307165 +niter|7307221 +nitid|7307288 +nitpick|7307326 +nitpicker|7307380 +nitpicking|7307406 +nitrate|7307475 +nitrate bacterium|7307540 +nitrazepam|7307599 +nitre|7307634 +nitric|7307701 +nitric acid|7307760 +nitric bacteria|7307798 +nitric bacterium|7307874 +nitric oxide|7307933 +nitride|7307959 +nitrification|7308003 +nitrify|7308116 +nitril|7308230 +nitrile|7308279 +nitrite|7308328 +nitrite bacterium|7308374 +nitro group|7308434 +nitrobacter|7308484 +nitrobacteria|7308550 +nitrobacteriaceae|7308626 +nitrobacterium|7308711 +nitrobenzene|7308754 +nitrocalcite|7308793 +nitrocellulose|7308823 +nitrochloroform|7308911 +nitrochloromethane|7308976 +nitrocotton|7309044 +nitrofuran|7309132 +nitrofurantoin|7309174 +nitrogen|7309255 +nitrogen balance|7309320 +nitrogen cycle|7309354 +nitrogen dioxide|7309413 +nitrogen fixation|7309451 +nitrogen mustard|7309513 +nitrogen narcosis|7309566 +nitrogen oxide|7309602 +nitrogen trichloride|7309642 +nitrogenase|7309690 +nitrogenise|7309718 +nitrogenize|7309773 +nitrogenous|7309828 +nitroglycerin|7309877 +nitroglycerine|7310005 +nitrohydrochloric acid|7310133 +nitrosobacteria|7310181 +nitrosomonas|7310260 +nitrospan|7310329 +nitrostat|7310519 +nitrous|7310709 +nitrous acid|7310768 +nitrous bacteria|7310795 +nitrous bacterium|7310874 +nitrous oxide|7310934 +nitta tree|7311076 +nitty-gritty|7311101 +nitweed|7311262 +nitwit|7311349 +nitwitted|7311405 +nivose|7311461 +nix|7311513 +nixon|7311618 +nizhni novgorod|7311789 +nizhnyi novgorod|7311895 +nj|7312002 +njord|7312056 +njorth|7312096 +nlp|7312137 +nm|7312266 +nmr|7312417 +nne|7312506 +nnrti|7312574 +nnw|7312674 +no|7312742 +no ball|7313942 +no doubt|7313967 +no end|7314009 +no fault automobile insurance|7314041 +no fault insurance|7314134 +no longer|7314227 +no man's land|7314253 +no matter|7314346 +no matter what happens|7314415 +no more|7314488 +no-account|7312864 +no-brainer|7312960 +no-count|7313011 +no-frills|7313107 +no-go|7313136 +no-go area|7313157 +no-goal|7313190 +no-good|7313216 +no-hit|7313330 +no-hit game|7313357 +no-hitter|7313416 +no-nonsense|7313475 +no-par stock|7313550 +no-par-value stock|7313503 +no-parking zone|7313597 +no-see-um|7313628 +no-show|7313685 +no-win|7313753 +no-win situation|7313782 +no.|7313818 +noaa|7314523 +noah|7314654 +noah webster|7314683 +noam chomsky|7314753 +nob|7314842 +nob hill|7314894 +nobble|7314935 +nobel|7315202 +nobel laureate|7315290 +nobel prize|7315347 +nobelist|7315416 +nobelium|7315467 +nobility|7315531 +noble|7315672 +noble cane|7316409 +noble gas|7316472 +noble metal|7316538 +noble-minded|7316230 +noble-mindedness|7316324 +nobleman|7316582 +noblesse|7316627 +noblesse oblige|7316698 +noblewoman|7316754 +nobody|7316805 +noc|7316879 +nocent|7316959 +nociceptive|7316983 +nock|7317014 +noctambulation|7317045 +noctambulism|7317145 +noctambulist|7317245 +noctiluca|7317310 +noctiluca miliaris|7317363 +noctilucent|7317435 +noctua|7317463 +noctuid|7317515 +noctuid moth|7317561 +noctuidae|7317607 +nocturia|7317670 +nocturnal|7317719 +nocturnal emission|7317815 +nocturne|7317855 +nod|7317931 +nod off|7318084 +nodal rhythm|7318171 +nodding|7318251 +nodding groundsel|7318304 +nodding onion|7318372 +nodding thistle|7318452 +nodding wild onion|7318513 +noddle|7318593 +node|7318637 +nodes of ranvier|7318979 +nodular|7319050 +nodulated|7319106 +nodule|7319151 +noduled|7319227 +nodulose|7319272 +noel|7319300 +noel coward|7319378 +noemi|7319514 +noesis|7319555 +noether|7319613 +noetic|7319665 +nog|7319710 +nogales|7319744 +noggin|7319823 +nogging|7319879 +noguchi|7319906 +nohow|7320030 +noise|7320054 +noise conditions|7320346 +noise level|7320389 +noise pollution|7320437 +noiseless|7320488 +noiselessly|7320513 +noiselessness|7320545 +noisemaker|7320592 +noisiness|7320619 +noisome|7320656 +noisomeness|7320831 +noisy|7320913 +nol pros|7321359 +nol. pros.|7321296 +noli-me-tangere|7321398 +nolina|7321440 +nolina microcarpa|7321497 +nolle pros|7321587 +nolle prosequi|7321672 +nolo contendere|7321757 +nom de guerre|7321798 +nom de plume|7321843 +noma|7321905 +nomad|7321936 +nomadic|7321989 +nombril|7322050 +nome|7322090 +nomenclature|7322114 +nomenklatura|7322162 +nomia|7322194 +nomia melanderi|7322237 +nominal|7322293 +nominal aphasia|7322457 +nominal damages|7322545 +nominal head|7322631 +nominal value|7322749 +nominalism|7322799 +nominalistic|7322863 +nominate|7322928 +nominated|7323122 +nominating address|7323173 +nominating speech|7323238 +nomination|7323303 +nominative|7323441 +nominative case|7323603 +nominator|7323674 +nominee|7323708 +nomogram|7323787 +nomograph|7323830 +nomothetic|7323873 +non compos mentis|7326532 +non pros|7326582 +non prosequitur|7326653 +non sequitur|7326724 +non vult|7326779 +non-automatic|7323904 +non-catholic|7323948 +non-christian priest|7324012 +non-circular|7324087 +non-dedicated file server|7324150 +non-discrimination|7324197 +non-engagement|7324241 +non-euclidean geometry|7324311 +non-finite|7324375 +non-insulin-dependent diabetes|7324415 +non-insulin-dependent diabetes mellitus|7324805 +non-invertible|7325195 +non-involvement|7325234 +non-ionic detergent|7325304 +non-issue|7325369 +non-jew|7325406 +non-market economy|7325453 +non-nucleoside reverse transcriptase inhibitor|7325505 +non-profit-making|7325599 +non-proliferation|7325650 +non-resinous|7325790 +non-resiny|7325937 +non-resistant|7326084 +non-standard speech|7326162 +non-u|7326304 +non-ugric|7326347 +non-volatile storage|7326415 +nona|7326820 +nonabsorbency|7326851 +nonabsorbent|7326905 +nonabsorptive|7326974 +nonacceptance|7327030 +nonaccomplishment|7327072 +nonachievement|7327146 +nonachiever|7327220 +nonadaptive|7327293 +nonaddictive|7327340 +nonadhesive|7327375 +nonadjacent|7327486 +nonadsorbent|7327515 +nonadsorptive|7327564 +nonage|7327600 +nonaged|7327646 +nonagenarian|7327678 +nonaggression|7327757 +nonaggressive|7327795 +nonagon|7327865 +nonalcoholic|7327906 +nonaligned|7327946 +nonalignment|7327985 +nonalinement|7328033 +nonallele|7328081 +nonappearance|7328120 +nonappointive|7328157 +nonarbitrable|7328197 +nonarbitrary|7328234 +nonarboreal|7328292 +nonassertive|7328325 +nonassociative|7328359 +nonastringent|7328398 +nonattendance|7328435 +nonattender|7328471 +nonautonomous|7328526 +nonbearing|7328569 +nonbeing|7328609 +nonbeliever|7328633 +nonbelligerent|7328697 +nonbiodegradable pollution|7328730 +noncallable bond|7328776 +noncaloric|7328824 +noncandidate|7328875 +noncarbonated|7328938 +noncausal|7328990 +noncausative|7329022 +nonce|7329067 +nonce word|7329110 +noncellular|7329151 +nonchalance|7329229 +nonchalant|7329286 +nonchalantly|7329336 +nonchristian|7329391 +nonchurchgoing|7329436 +noncitizen|7329479 +noncivilised|7329544 +noncivilized|7329689 +nonclassical|7329847 +noncollapsable|7329901 +noncollapsible|7329969 +noncolumned|7330052 +noncom|7330115 +noncombatant|7330180 +noncombinative|7330281 +noncombining|7330333 +noncombustible|7330370 +noncommercial|7330533 +noncommissioned|7330645 +noncommissioned officer|7330695 +noncommital|7330760 +noncommittal|7330825 +noncommunicable|7330899 +noncompetitive|7330969 +noncompliance|7331061 +noncompliant|7331128 +noncomprehensive|7331354 +nonconcentric|7331421 +nonconducting|7331487 +nonconductive|7331524 +nonconductor|7331575 +nonconformance|7331633 +nonconforming|7331701 +nonconformist|7331749 +nonconformity|7331940 +nonconscious|7332073 +noncontagious|7332139 +noncontentious|7332209 +noncontinuous|7332249 +noncontroversial|7332321 +nonconvergent|7332407 +noncritical|7332455 +noncrucial|7332558 +noncrystalline|7332618 +noncurrent|7332697 +noncyclic|7332820 +noncyclical|7332890 +nondeductible|7332921 +nondenominational|7332958 +nondepository financial institution|7333010 +nondescript|7333123 +nondevelopment|7333227 +nondigestible|7333286 +nondirectional antenna|7333322 +nondiscretionary trust|7333413 +nondisjunction|7333525 +nondisposable|7333583 +nondrinker|7333657 +nondriver|7333750 +nondurable|7333794 +none|7333828 +nonechoic|7333917 +noneffervescent|7333946 +nonelective|7334032 +nonenterprising|7334074 +nonentity|7334175 +nonenzymatic|7334299 +nonequivalence|7334349 +nonequivalent|7334384 +nones|7334415 +nonessential|7334527 +nonesuch|7334609 +nonesuch clover|7334693 +nonetheless|7334796 +nonevent|7334891 +nonexempt|7334915 +nonexistence|7335031 +nonexistent|7335072 +nonexplorative|7335179 +nonexploratory|7335246 +nonexplosive|7335328 +nonextant|7335363 +nonextensile|7335426 +nonfat|7335489 +nonfat dry milk|7335561 +nonfatal|7335632 +nonfeasance|7335669 +nonfiction|7335702 +nonfictional|7335747 +nonfictional prose|7335788 +nonfigurative|7335833 +nonfinancial|7335913 +nonfissile|7335999 +nonfissionable|7336030 +nonflammable|7336069 +nonflavored|7336120 +nonflavoured|7336187 +nonflowering plant|7336254 +nonfluent aphasia|7336323 +nonfunctional|7336422 +nonglutinous|7336606 +nongonococcal urethritis|7336650 +nongovernmental organization|7336699 +nongranular|7336767 +nongregarious|7336793 +nonhairy|7336848 +nonharmonic|7336875 +nonhereditary|7336914 +nonheritable|7336982 +nonhierarchic|7337110 +nonhierarchical|7337177 +nonhuman|7337260 +nonimitative|7337392 +nonimmune|7337427 +nonindulgence|7337490 +nonindulgent|7337562 +nonindustrial|7337820 +noninfectious|7337917 +noninflammatory|7338001 +noninheritable|7338052 +noninstitutional|7338195 +noninstitutionalised|7338238 +noninstitutionalized|7338289 +nonintegrated|7338361 +nonintellectual|7338411 +noninterchangeable|7338533 +noninterference|7338585 +nonintersecting|7338641 +nonintervention|7338689 +noninvasive|7338745 +nonionic|7338778 +nonionised|7338872 +nonionized|7338932 +nonjudgmental|7339003 +nonkosher|7339040 +nonleaded|7339087 +nonlegal|7339134 +nonlethal|7339171 +nonlexical|7339199 +nonlinear|7339248 +nonlinear correlation|7339277 +nonlinear distortion|7339386 +nonlinear system|7339448 +nonlinguistic|7339488 +nonliteral|7339539 +nonliterary|7339689 +nonliterate|7339730 +nonliving|7339789 +nonmagnetic|7339836 +nonmalignant|7339869 +nonmalignant neoplasm|7339917 +nonmalignant tumor|7340036 +nonmalignant tumour|7340155 +nonmandatory|7340274 +nonmaterial|7340319 +nonmeaningful|7340409 +nonmechanical|7340601 +nonmechanistic|7340709 +nonmedicinal|7340747 +nonmember|7340816 +nonmetal|7340888 +nonmetallic|7340960 +nonmetamorphic|7341012 +nonmigratory|7341062 +nonmilitary|7341106 +nonmodern|7341150 +nonmonotonic|7341261 +nonmoral|7341296 +nonmotile|7341329 +nonmoving|7341366 +nonmusical|7341522 +nonnative|7341579 +nonnatural|7341651 +nonnegative|7341726 +nonnomadic|7341752 +nonnormative|7341780 +nonobjective|7341814 +nonobligatory|7341894 +nonobservance|7341939 +nonobservant|7341976 +nonoccurrence|7342010 +nonopening|7342041 +nonoperational|7342068 +nonoscillatory|7342124 +nonparallel|7342170 +nonparametric|7342236 +nonparametric statistic|7342268 +nonparametric statistics|7342339 +nonparasitic|7342453 +nonpareil|7342512 +nonparticipant|7342769 +nonparticipation|7342846 +nonparticulate|7342916 +nonparticulate radiation|7342955 +nonpartisan|7343046 +nonpartisanship|7343162 +nonpartizan|7343233 +nonpasserine|7343337 +nonpasserine bird|7343377 +nonpayment|7343409 +nonperformance|7343550 +nonperiodic|7343639 +nonperson|7343695 +nonpersonal|7343776 +nonphilosophic|7343808 +nonphilosophical|7343849 +nonphotosynthetic|7343907 +nonphysical|7344001 +nonplus|7344056 +nonplused|7344241 +nonplussed|7344299 +nonpoisonous|7344357 +nonpolar|7344437 +nonpolitical|7344464 +nonporous|7344522 +nonpregnant|7344551 +nonprehensile|7344584 +nonprescription|7344621 +nonproductive|7344662 +nonprofessional|7344698 +nonprofit|7344771 +nonprognosticative|7344822 +nonprogressive|7344862 +nonproliferation|7344928 +nonproliferation center|7344987 +nonproprietary|7345112 +nonprotractile|7345170 +nonpsychoactive|7345220 +nonpublic|7345261 +nonpurulent|7345288 +nonracial|7345320 +nonracist|7345349 +nonradioactive|7345416 +nonrandom|7345455 +nonrapid eye movement|7345513 +nonrapid eye movement sleep|7345617 +nonrational|7345721 +nonreader|7345799 +nonreciprocal|7345918 +nonreciprocating|7346009 +nonrecreational|7346049 +nonreflecting|7346092 +nonreflective|7346138 +nonreligious person|7346198 +nonremittal|7346280 +nonrenewable|7346369 +nonrepresentational|7346403 +nonrepresentative|7346601 +nonresident|7346657 +nonresidential|7346690 +nonresilient|7346729 +nonresinous|7346761 +nonresiny|7346828 +nonresistance|7346895 +nonresistant|7346931 +nonresonant|7347011 +nonrestrictive|7347074 +nonrestrictive clause|7347112 +nonreticulate|7347198 +nonretractable|7347235 +nonretractile|7347273 +nonreturnable|7347325 +nonreversible|7347362 +nonrhythmic|7347409 +nonrigid|7347454 +nonruminant|7347481 +nonsectarian|7347527 +nonsegmental|7347683 +nonsegregated|7347724 +nonsense|7347782 +nonsense verse|7348025 +nonsensical|7348110 +nonsensicality|7348258 +nonsensitive|7348359 +nonsexual|7348407 +nonsignificant|7348534 +nonsingular matrix|7348573 +nonskid|7348615 +nonslip|7348644 +nonslippery|7348673 +nonsmoker|7348737 +nonsmoking car|7348860 +nonsocial|7348923 +nonsocial infection|7348978 +nonsolid color|7349033 +nonsolid colour|7349136 +nonsovereign|7349239 +nonspatial|7349282 +nonspeaking|7349325 +nonspecific|7349382 +nonspecific urethritis|7349415 +nonspherical|7349462 +nonstandard|7349509 +nonstarter|7349652 +nonsteroid|7349774 +nonsteroidal|7349824 +nonsteroidal anti-inflammatory|7349911 +nonsteroidal anti-inflammatory drug|7350034 +nonstick|7350157 +nonstop|7350191 +nonstop flight|7350323 +nonstructural|7350362 +nonsubjective|7350399 +nonsubmergible|7350471 +nonsubmersible|7350510 +nonsuch|7350564 +nonsuppurative|7350648 +nonsurgical|7350740 +nonsweet|7350791 +nonsyllabic|7350845 +nonsymbiotic|7350931 +nonsynchronous|7350990 +nonsynthetic|7351071 +nontaxable|7351101 +nontechnical|7351194 +nontelescopic|7351241 +nontelescoping|7351309 +nonterritorial|7351377 +nontextual matter|7351416 +nonthermal|7351485 +nonthrombocytopenic purpura|7351523 +nontoxic|7351577 +nontraditional|7351710 +nontransferable|7351763 +nontranslational|7351840 +nontransmissible|7351909 +nontricyclic|7352028 +nontricyclic antidepressant|7352164 +nontricyclic antidepressant drug|7352300 +nontricyclic drug|7352436 +nonturbulent|7352572 +nonuniform|7352605 +nonuniformity|7352666 +nonunion|7352716 +nonunionised|7352798 +nonunionized|7352866 +nonuple|7352934 +nonvascular organism|7352969 +nonvascular plant|7353014 +nonvenomous|7353072 +nonverbal|7353109 +nonverbal intelligence|7353265 +nonviable|7353310 +nonviolence|7353334 +nonviolent|7353410 +nonviolent resistance|7353519 +nonviscid|7353595 +nonvisual|7353639 +nonvocalic|7353678 +nonvolatile|7353722 +nonvolatile storage|7353789 +nonvolatilisable|7353906 +nonvolatilizable|7353961 +nonvoluntary|7354016 +nonwashable|7354136 +nonwoody|7354169 +nonworker|7354213 +noodle|7354285 +nook|7354371 +nook and cranny|7354412 +nookie|7354474 +nooks and crannies|7354714 +nooky|7354817 +noon|7355057 +noonan's syndrome|7355134 +noonday|7355188 +noontide|7355265 +noose|7355342 +nootka|7355457 +nootka cypress|7355530 +nopal|7355654 +nopalea|7355736 +nor'-east|7355806 +nor'-nor'-east|7355885 +nor'-west|7355971 +nor-q-d|7356050 +noradrenaline|7356188 +norbert wiener|7356300 +nord-pas-de-calais|7356360 +nordic|7356421 +noreaster|7356709 +noreg|7356760 +norepinephrine|7356853 +norethandrolone|7356965 +norethindrone|7357057 +norethindrone acetate|7357149 +norethynodrel|7357241 +norflex|7357286 +norfolk|7357340 +norfolk island|7357399 +norfolk island pine|7357445 +norfolk jacket|7357525 +norfolk terrier|7357571 +norfolk wherry|7357620 +norge|7357693 +norgestrel|7357786 +noria|7357828 +norinyl|7357866 +norlestrin|7358004 +norlutin|7358148 +norm|7358249 +norma|7358326 +norma jean baker|7358361 +normal|7358434 +normal curve|7358666 +normal distribution|7358755 +normal dwarf|7358844 +normal fault|7358931 +normal school|7358995 +normalcy|7359050 +normalisation|7359125 +normalise|7359209 +normaliser|7359306 +normality|7359354 +normalization|7359485 +normalize|7359569 +normalizer|7359695 +normally|7359743 +norman|7359801 +norman architecture|7360165 +norman conquest|7360249 +norman jewison|7360333 +norman mailer|7360427 +norman mattoon thomas|7360485 +norman rockwell|7360569 +norman thomas|7360631 +norman-french|7360104 +normandie|7360707 +normandy|7360817 +normative|7360926 +normodyne|7361056 +normotensive|7361190 +normothermia|7361225 +norn|7361291 +norris|7361322 +norrish|7361401 +norse|7361465 +norse deity|7361767 +norse mythology|7361828 +norseman|7361879 +north|7361931 +north africa|7363125 +north african|7363232 +north america|7363340 +north american|7363455 +north american country|7363534 +north american indian|7363630 +north american nation|7363744 +north atlantic|7363839 +north atlantic council|7363902 +north atlantic treaty|7363969 +north atlantic treaty organization|7364041 +north borneo|7364237 +north by east|7364327 +north by west|7364374 +north carolina|7364421 +north carolinian|7364538 +north cascades national park|7364590 +north celestial pole|7364671 +north channel|7364721 +north dakota|7364771 +north dakotan|7364843 +north dravidian|7364889 +north equatorial current|7364968 +north frigid zone|7365046 +north germanic|7365133 +north germanic language|7365271 +north island|7365418 +north island edelweiss|7365460 +north korea|7365539 +north korean|7365651 +north korean monetary unit|7365739 +north korean won|7365816 +north northeast|7365890 +north northwest|7365954 +north pacific|7366018 +north peak|7366077 +north platte|7366122 +north platte river|7366207 +north pole|7366273 +north sea|7366309 +north side|7366342 +north star|7366367 +north star state|7366477 +north temperate zone|7366561 +north vietnam|7366627 +north vietnamese|7366691 +north wind|7366760 +north yorkshire|7366827 +north-central|7362646 +north-east|7362691 +north-northeast|7362810 +north-northwest|7362849 +north-polar|7362888 +north-seeking pole|7362922 +north-west|7363006 +northbound|7366875 +northeast|7366911 +northeast by east|7367173 +northeast by north|7367225 +northeaster|7367278 +northeasterly|7367329 +northeastern|7367404 +northeastern united states|7367471 +northeastward|7367616 +northeastwardly|7367667 +norther|7367705 +northerly|7367772 +northern|7367887 +northern alliance|7368078 +northern baptist|7368175 +northern baptist convention|7368226 +northern bedstraw|7368331 +northern beech fern|7368423 +northern bobwhite|7368568 +northern bog lemming|7368649 +northern casque-headed frog|7368707 +northern cricket frog|7368820 +northern cross|7368880 +northern dewberry|7368950 +northern dune tansy|7369073 +northern europe|7369171 +northern flying squirrel|7369284 +northern harrier|7369362 +northern hemisphere|7369434 +northern holly fern|7369474 +northern ireland|7369536 +northern jacob's ladder|7369612 +northern lights|7369699 +northern lobster|7369747 +northern mammoth|7369916 +northern mariana islands|7369987 +northern marianas|7370113 +northern oak fern|7370232 +northern oriole|7370304 +northern parula|7370385 +northern phalarope|7370473 +northern pike|7370527 +northern pin oak|7370567 +northern pitch pine|7370637 +northern pocket gopher|7370715 +northern porgy|7370823 +northern red oak|7370892 +northern rhodesia|7370957 +northern scup|7371059 +northern sea robin|7371128 +northern shrike|7371195 +northern snakehead|7371248 +northern snow bedstraw|7371281 +northern spy|7371378 +northern storm petrel|7371440 +northern territory|7371519 +northern white cedar|7371615 +northern whiting|7371707 +northern woodsia|7371764 +northerner|7371844 +northernmost|7371951 +northernness|7371989 +northland|7372037 +northman|7372081 +northmost|7372136 +northrop|7372174 +northrop frye|7372233 +northumberland|7372312 +northumbria|7372358 +northward|7372463 +northwards|7372558 +northwest|7372629 +northwest by north|7372891 +northwest by west|7372944 +northwest passage|7372996 +northwest territories|7373062 +northwest wind|7373164 +northwester|7373232 +northwesterly|7373300 +northwestern|7373375 +northwestern united states|7373442 +northwestward|7373587 +northwestwardly|7373638 +nortriptyline|7373676 +noruz|7373772 +norvasc|7373852 +norvir|7373922 +norway|7373977 +norway lobster|7374071 +norway maple|7374138 +norway rat|7374196 +norway spruce|7374259 +norwegian|7374315 +norwegian elkhound|7374535 +norwegian krone|7374607 +norwegian lobster|7374678 +norwegian monetary unit|7374750 +norwegian sea|7374821 +norwich terrier|7374862 +nose|7374911 +nose candy|7375250 +nose cone|7375302 +nose count|7375333 +nose dive|7375505 +nose drops|7375537 +nose flute|7375611 +nose job|7375654 +nose out|7375778 +nose ring|7375826 +nosebag|7375855 +nosebleed|7375884 +nosecount|7375945 +nosed|7376036 +nosedive|7376098 +nosegay|7376134 +noseless|7376191 +nosepiece|7376218 +nosewheel|7376338 +nosey|7376363 +nosey-parker|7376405 +nosh|7376456 +nosh-up|7376508 +nosher|7376537 +nosiness|7376574 +nosocomial|7376638 +nosology|7376710 +nostalgia|7376767 +nostalgic|7376803 +nostalgically|7376839 +nostoc|7376876 +nostocaceae|7376923 +nostradamus|7376991 +nostril|7377067 +nostrum|7377105 +nosy|7377183 +nosy-parker|7377225 +not able|7377276 +not absolutely|7377416 +not bad|7377453 +not by a blame sight|7377571 +not by a long sight|7377632 +not delayed|7377693 +not due|7377730 +not far|7377753 +not fluently|7377777 +not guilty|7377808 +not intrusive|7377870 +not kin|7377905 +not late|7377944 +not listed|7377981 +not long|7378023 +not suitably|7378048 +not surprised|7378096 +not to mention|7378131 +not traded|7378164 +not very likely|7378193 +nota bene|7378232 +notability|7378284 +notable|7378373 +notarise|7378561 +notarize|7378633 +notary|7378705 +notary public|7378756 +notate|7378807 +notation|7378861 +notational system|7378983 +notch|7379027 +notched|7379201 +note|7379301 +note of hand|7379955 +note payable|7380042 +note receivable|7380098 +note value|7380157 +notebook|7380215 +notebook computer|7380288 +notebook entry|7380342 +notecase|7380372 +notechis|7380422 +notechis scutatus|7380478 +noted|7380555 +notemigonus|7380657 +notemigonus crysoleucas|7380719 +notepad|7380797 +notepaper|7380838 +noteworthy|7380871 +nothing|7380946 +nothingness|7381074 +nothings|7381172 +nothofagus|7381337 +nothofagus cuninghamii|7381407 +nothofagus dombeyi|7381506 +nothofagus menziesii|7381591 +nothofagus obliqua|7381673 +nothofagus procera|7381763 +nothofagus solanderi|7381853 +nothofagus truncata|7381947 +nothosaur|7382038 +nothosauria|7382101 +notice|7382168 +notice board|7382611 +noticeability|7382654 +noticeable|7382728 +noticeableness|7382904 +noticeably|7382978 +noticed|7383009 +noticer|7383043 +notifiable|7383116 +notification|7383142 +notify|7383283 +notion|7383351 +notional|7383505 +notions counter|7383711 +notochord|7383744 +notomys|7383821 +notonecta|7383873 +notonecta undulata|7383934 +notonectidae|7384038 +notophthalmus|7384110 +notophthalmus viridescens|7384183 +notoriety|7384264 +notorious|7384299 +notornis|7384350 +notornis mantelli|7384398 +notoryctidae|7384464 +notoryctus|7384533 +notoryctus typhlops|7384594 +notostraca|7384696 +notropis|7384757 +notropis atherinoides|7384810 +notropis cornutus|7384885 +notwithstanding|7384963 +nouakchott|7385058 +nougat|7385106 +nougat bar|7385128 +nought|7385154 +noughts and crosses|7385204 +noumenon|7385306 +noun|7385380 +noun phrase|7385459 +nourish|7385487 +nourished|7385578 +nourishing|7385697 +nourishment|7385778 +nous|7385908 +nouveau-riche|7386041 +nouvelle cuisine|7386172 +nouvelle vague|7386219 +nov|7386298 +nov-esperanto|7386349 +nov-latin|7386406 +nova|7386455 +nova scotia|7386474 +nova scotia lox|7386554 +nova zembla|7386599 +novate|7386653 +novation|7386677 +novaya zemlya|7386717 +novel|7386773 +novelette|7386863 +novelisation|7386896 +novelise|7386970 +novelist|7387031 +novelization|7387063 +novelize|7387137 +novella|7387198 +novelty|7387231 +novelty shop|7387383 +november|7387426 +november 1|7387482 +november 11|7387584 +november 2|7387676 +november 5|7387741 +novena|7387776 +novgorod|7387801 +novial|7387857 +novice|7387900 +noviciate|7388007 +novillada|7388070 +novillero|7388107 +novitiate|7388147 +novobiocin|7388253 +novocain|7388300 +novocaine|7388379 +novosibirsk|7388449 +now|7388511 +now and again|7388696 +now and then|7388799 +nowadays|7388902 +nowhere|7388949 +nowise|7388976 +nowness|7389004 +nowrooz|7389040 +nowruz|7389122 +nox|7389203 +noxious|7389238 +noxiously|7389374 +noxiousness|7389416 +noxiptiline|7389498 +noyes|7389584 +nozzle|7389623 +np|7389726 +npa|7389856 +npc|7389965 +nra|7390070 +nrc|7390147 +nrem|7390213 +nrem sleep|7390322 +nrl|7390437 +nrlb|7390544 +nrna|7390613 +nro|7390665 +nrti|7390747 +nsa|7390841 +nsaid|7390917 +nsc|7391046 +nsf|7391106 +nsu|7391171 +nsw|7391222 +nswc|7391325 +nt|7391437 +nth|7391500 +ntis|7391521 +nu|7391643 +nuance|7391706 +nub|7391797 +nubbin|7392094 +nubbiness|7392119 +nubble|7392170 +nubbly|7392289 +nubby|7392350 +nubia|7392411 +nubian|7392504 +nubian desert|7392556 +nubile|7392600 +nucellus|7392636 +nucha|7392681 +nucifraga|7392731 +nucifraga caryocatactes|7392787 +nucifraga columbiana|7392873 +nuclear|7392954 +nuclear chemist|7393197 +nuclear chemistry|7393243 +nuclear club|7393312 +nuclear deterrence|7393381 +nuclear energy|7393483 +nuclear engineering|7393528 +nuclear explosion|7393616 +nuclear family|7393671 +nuclear fission|7393746 +nuclear fuel|7393796 +nuclear fusion|7393823 +nuclear fusion reaction|7393895 +nuclear magnetic resonance|7393967 +nuclear medicine|7394052 +nuclear meltdown|7394105 +nuclear physicist|7394152 +nuclear physics|7394189 +nuclear power|7394284 +nuclear propulsion|7394349 +nuclear reaction|7394388 +nuclear reactor|7394461 +nuclear regulatory commission|7394510 +nuclear resonance|7394602 +nuclear rna|7394639 +nuclear rocket|7394698 +nuclear submarine|7394743 +nuclear terrorism|7394834 +nuclear transplantation|7394902 +nuclear warhead|7395027 +nuclear weapon|7395115 +nuclear winter|7395177 +nuclear-powered ship|7393071 +nuclear-powered submarine|7393106 +nuclease|7395223 +nucleate|7395248 +nucleated|7395315 +nucleic acid|7395363 +nucleolar organiser|7395413 +nucleolar organizer|7395583 +nucleole|7395753 +nucleolus|7395802 +nucleolus organiser|7395851 +nucleolus organizer|7396021 +nucleon|7396191 +nucleon number|7396230 +nucleonics|7396276 +nucleoplasm|7396371 +nucleoprotein|7396431 +nucleoside|7396462 +nucleoside reverse transcriptase inhibitor|7396492 +nucleosynthesis|7396581 +nucleotide|7396616 +nucleus|7396642 +nucleus niger|7396811 +nuda|7396880 +nude|7396916 +nude dancing|7397105 +nude mouse|7397154 +nude painting|7397180 +nude person|7397225 +nudeness|7397304 +nudge|7397356 +nudger|7397439 +nudibranch|7397469 +nudibranchia|7397517 +nudism|7397584 +nudist|7397626 +nudity|7397665 +nudnick|7397717 +nudnik|7397789 +nuffield|7397861 +nugatory|7397973 +nugget|7398001 +nuisance|7398027 +nuisance abatement|7398190 +nuisance tax|7398252 +nuisance value|7398302 +nuke|7398351 +null|7398546 +null set|7398671 +null space|7398693 +nullah|7398750 +nullarbor plain|7398778 +nullification|7398841 +nullified|7398911 +nullifier|7398950 +nullify|7399054 +nullipara|7399203 +nullity|7399241 +numb|7399298 +numbat|7399436 +number|7399527 +number 1|7400165 +number agreement|7400227 +number cruncher|7400271 +number crunching|7400459 +number one|7400519 +number one wood|7400611 +number representation system|7400648 +number system|7400761 +number theorist|7400874 +numbering|7400913 +numberless|7400957 +numberplate|7401099 +numbers|7401140 +numbers game|7401699 +numbers pool|7401773 +numbers racket|7401847 +numbfish|7401921 +numbing|7401974 +numbly|7402019 +numbness|7402045 +numdah|7402071 +numdah rug|7402126 +numen|7402181 +numenius|7402222 +numenius arquata|7402275 +numenius borealis|7402341 +numerable|7402407 +numeracy|7402470 +numeral|7402544 +numerate|7402617 +numeration|7402738 +numeration system|7402843 +numerator|7402956 +numeric|7402984 +numerical|7403103 +numerical quantity|7403258 +numerological|7403295 +numerologist|7403420 +numerology|7403472 +numerosity|7403595 +numerous|7403655 +numerousness|7403678 +numida|7403738 +numida meleagris|7403785 +numidia|7403874 +numidian|7403913 +numididae|7404006 +numidinae|7404097 +numinous|7404188 +numismatics|7404245 +numismatist|7404357 +numismatologist|7404430 +numismatology|7404503 +nummulite|7404615 +nummulitidae|7404652 +numskull|7404725 +nun|7404868 +nun buoy|7404983 +nunavut|7405023 +nunc dimittis|7405097 +nuncio|7405160 +nung|7405210 +nunnery|7405233 +nuphar|7405258 +nuphar advena|7405316 +nuphar lutea|7405402 +nuphar sagittifolium|7405466 +nuprin|7405549 +nuptial|7405698 +nuptials|7405780 +nuptse|7405884 +nuremberg|7405921 +nureyev|7405988 +nurnberg|7406055 +nurse|7406121 +nurse clinician|7406581 +nurse log|7406648 +nurse practitioner|7406671 +nurse shark|7406738 +nurse's aide|7406439 +nurse-midwife|7406489 +nurse-patient relation|7406532 +nursed|7406788 +nurseling|7406823 +nursemaid|7406877 +nurser|7406934 +nursery|7407003 +nursery rhyme|7407091 +nursery school|7407145 +nurseryman|7407179 +nursing|7407233 +nursing aide|7407339 +nursing bottle|7407389 +nursing care|7407435 +nursing home|7407482 +nursing school|7407531 +nursling|7407580 +nurtural|7407634 +nurturance|7407680 +nurturant|7407727 +nurture|7407760 +nusa tenggara|7408041 +nusku|7408111 +nut|7408146 +nut and bolt|7408589 +nut bar|7408646 +nut bread|7408669 +nut butter|7408700 +nut case|7408733 +nut grass|7408925 +nut house|7409076 +nut pine|7409394 +nut sedge|7409425 +nut tree|7409576 +nut-leaved screw tree|7408530 +nutate|7409628 +nutation|7409660 +nutbrown|7409682 +nutcase|7409716 +nutcracker|7409827 +nutcrackers|7409929 +nutgrass|7410086 +nuthatch|7410156 +nuthouse|7410204 +nutlet|7410441 +nutlike|7410461 +nutmeg|7410515 +nutmeg family|7410648 +nutmeg flower|7410729 +nutmeg geranium|7410805 +nutmeg hickory|7410880 +nutmeg melon|7410970 +nutmeg state|7411144 +nutmeg tree|7411228 +nutmeg-yew|7410586 +nutria|7411286 +nutrient|7411354 +nutrient agar|7411464 +nutrient artery|7411514 +nutrify|7411593 +nutriment|7411636 +nutrition|7411732 +nutritional|7411907 +nutritionary|7411975 +nutritionist|7412043 +nutritionist's calorie|7412120 +nutritious|7412235 +nutritiousness|7412316 +nutritive|7412368 +nutritiveness|7412449 +nuts|7412501 +nuts and bolts|7412682 +nutsedge|7412778 +nutshell|7412848 +nuttall oak|7412951 +nuttall's oak|7412872 +nutter|7413028 +nuttily|7413103 +nutty|7413150 +nuwc|7413355 +nux vomica|7413470 +nuytsia|7413536 +nuytsia floribunda|7413597 +nuzzle|7413696 +nv|7413838 +nw|7413922 +nwbn|7413977 +nwbw|7414035 +ny|7414092 +nyala|7414159 +nyamuragira|7414254 +nyamwezi|7414295 +nyasaland|7414345 +nybble|7414431 +nyctaginaceae|7414475 +nyctaginia|7414613 +nyctaginia capitata|7414687 +nyctalopia|7414763 +nyctanassa|7414905 +nyctanassa violacea|7414964 +nyctereutes|7415064 +nyctereutes procyonides|7415128 +nycticebus|7415206 +nycticebus pygmaeus|7415267 +nycticebus tardigradua|7415356 +nycticorax|7415448 +nycticorax nycticorax|7415507 +nyctimene|7415610 +nyctophobia|7415668 +nycturia|7415703 +nydrazid|7415752 +nyiragongo|7415838 +nylghai|7415877 +nylghau|7415952 +nylon|7416027 +nylon stocking|7416136 +nylons|7416212 +nymph|7416401 +nymphaea|7416498 +nymphaea alba|7416562 +nymphaea caerulea|7416630 +nymphaea lotus|7416697 +nymphaea odorata|7416796 +nymphaea stellata|7416892 +nymphaeaceae|7416959 +nymphalid|7417055 +nymphalid butterfly|7417149 +nymphalidae|7417243 +nymphalis|7417312 +nymphalis antiopa|7417373 +nymphet|7417551 +nymphicus|7417587 +nymphicus hollandicus|7417643 +nympho|7417739 +nympholepsy|7417803 +nympholept|7417860 +nymphomania|7417911 +nymphomaniac|7417980 +nymphomaniacal|7418090 +nynorsk|7418151 +nypa|7418209 +nyquist frequency|7418285 +nyquist rate|7418349 +nyse|7418398 +nyssa|7418518 +nyssa aquatica|7418582 +nyssa sylvatica|7418650 +nyssaceae|7418740 +nystagmus|7418849 +nystan|7418898 +nystatin|7419036 +nyx|7419167 +o|7419196 +o level|7420617 +o ring|7420659 +o'brien|7419368 +o'casey|7419420 +o'connor|7419479 +o'er|7419561 +o'flaherty|7419579 +o'hara|7419640 +o'keeffe|7419695 +o'neill|7419746 +o'toole|7419832 +o. henry|7419935 +o.d.|7420005 +o.e.d.|7420038 +o.k.|7420194 +oaf|7420689 +oafish|7420766 +oahu|7420839 +oahu island|7420877 +oak|7420922 +oak apple|7421039 +oak blight|7421063 +oak chestnut|7421101 +oak fern|7421128 +oak leaf cluster|7421198 +oak tree|7421294 +oak-leaved goosefoot|7420961 +oaken|7421321 +oakland|7421342 +oakleaf goosefoot|7421401 +oakley|7421479 +oakum|7421548 +oar|7421575 +oarfish|7421598 +oarlock|7421696 +oarsman|7421751 +oarsmanship|7421798 +oarswoman|7421875 +oas|7421908 +oasis|7422069 +oast|7422163 +oast house|7422182 +oat|7422208 +oat cell carcinoma|7422272 +oatcake|7422331 +oaten|7422360 +oates|7422398 +oath|7422521 +oatmeal|7422649 +oatmeal cookie|7422706 +oaxaca|7422751 +oaxaca de juarez|7422820 +ob|7422899 +ob river|7422996 +obadiah|7423032 +obbligato|7423115 +obduracy|7423192 +obdurate|7423275 +obdurately|7423391 +obeah|7423464 +obeche|7423510 +obechi|7423588 +obedience|7423654 +obedience plant|7423778 +obedient|7423861 +obedient plant|7424027 +obediently|7424121 +obeisance|7424151 +obelion|7424235 +obelisk|7424271 +obese|7424350 +obesity|7424394 +obesity diet|7424454 +obey|7424495 +obfuscate|7424530 +obfuscation|7424569 +obi|7424770 +obidoxime chloride|7424816 +obiism|7424876 +obit|7424933 +obiter dictum|7424992 +obituary|7425101 +object|7425160 +object ball|7425811 +object code|7425846 +object glass|7425886 +object language|7425941 +object lesson|7426080 +object of a preposition|7426179 +object of the verb|7426240 +object program|7426289 +object recognition|7426382 +object-oriented database|7425361 +object-oriented database management system|7425481 +object-oriented programing language|7425565 +object-oriented programming language|7425688 +objectification|7426445 +objectify|7426544 +objection|7426686 +objectionable|7426812 +objectionableness|7426900 +objectionably|7426994 +objective|7427040 +objective case|7427277 +objectiveness|7427349 +objectivity|7427447 +objector|7427545 +objet d'art|7427657 +objurgate|7427707 +objurgation|7427985 +oblanceolate|7428085 +oblanceolate leaf|7428127 +oblate|7428166 +oblateness|7428248 +oblation|7428302 +obligate|7428412 +obligate anaerobe|7428572 +obligated|7428608 +obligation|7428714 +obligational|7428854 +obligato|7428893 +obligatorily|7428971 +obligatory|7429017 +oblige|7429172 +obliged|7429316 +obliger|7429354 +obliging|7429402 +obligingly|7429496 +obligingness|7429531 +oblique|7429625 +oblique angle|7430040 +oblique bandage|7430069 +oblique case|7430108 +oblique triangle|7430160 +oblique vein of the left atrium|7430213 +obliquely|7430312 +obliqueness|7430369 +obliquity|7430450 +obliterable|7430555 +obliterate|7430597 +obliterated|7430814 +obliterating|7430868 +obliteration|7430912 +obliterator|7431021 +oblivion|7431053 +oblivious|7431122 +obliviousness|7431188 +oblong|7431234 +oblong leaf|7431334 +oblong woodsia|7431367 +oblongness|7431447 +obloquy|7431493 +obnoxious|7431633 +obnoxiously|7431687 +obnoxiousness|7431733 +obnubilate|7431827 +oboe|7431955 +oboe d'amore|7432021 +oboe da caccia|7432065 +oboist|7432111 +obolus|7432159 +obovate|7432194 +obovate leaf|7432231 +obscene|7432265 +obscenely|7432385 +obscenity|7432410 +obscurant|7432548 +obscurantism|7432592 +obscurantist|7432671 +obscure|7432743 +obscureness|7433218 +obscurity|7433367 +obsequious|7433493 +obsequiously|7433579 +obsequiousness|7433624 +observable|7433686 +observably|7433737 +observance|7433783 +observant|7434058 +observantly|7434141 +observation|7434173 +observation dome|7434387 +observation post|7434467 +observation station|7434514 +observation tower|7434551 +observational|7434637 +observatory|7434702 +observe|7434812 +observed|7435162 +observed fire|7435214 +observer|7435249 +observer's meridian|7435365 +observing|7435431 +observingly|7435471 +obsess|7435503 +obsessed|7435554 +obsession|7435639 +obsessional|7435717 +obsessionally|7435772 +obsessive|7435819 +obsessive-compulsive|7435874 +obsessive-compulsive personality|7435928 +obsessively|7435982 +obsessiveness|7436029 +obsessivity|7436092 +obsidian|7436155 +obsolesce|7436188 +obsolescence|7436214 +obsolescent|7436260 +obsolete|7436292 +obsoleteness|7436382 +obstacle|7436427 +obstacle race|7436578 +obstetric|7436624 +obstetrical|7436681 +obstetrical delivery|7436738 +obstetrical toad|7436802 +obstetrician|7436910 +obstetrics|7436973 +obstinacy|7437042 +obstinance|7437238 +obstinate|7437433 +obstinately|7437646 +obstipate|7437719 +obstipation|7437754 +obstreperous|7437801 +obstreperously|7437862 +obstreperousness|7437904 +obstruct|7437954 +obstructed|7438151 +obstructer|7438328 +obstruction|7438503 +obstruction of justice|7438786 +obstructionism|7438830 +obstructionist|7438865 +obstructive|7438964 +obstructive shock|7439037 +obstructively|7439070 +obstructor|7439104 +obtain|7439279 +obtainable|7439373 +obtainment|7439431 +obtention|7439479 +obtrude|7439527 +obtrude upon|7439622 +obtrusive|7439730 +obtrusiveness|7439788 +obtund|7439827 +obturate|7439856 +obturator|7439931 +obturator vein|7439979 +obtuse|7440050 +obtuse angle|7440243 +obtuse leaf|7440279 +obtuse triangle|7440312 +obtuse-angled triangle|7440168 +obtusely|7440387 +obtuseness|7440419 +obverse|7440500 +obviate|7440555 +obviating|7440703 +obviation|7440757 +obvious|7440815 +obviously|7441275 +obviousness|7441348 +oca|7441422 +ocarina|7441496 +occam|7441547 +occam's razor|7441622 +occasion|7441729 +occasional|7441939 +occasionally|7442024 +occasions|7442127 +occident|7442378 +occidental|7442464 +occidentalise|7442595 +occidentalism|7442674 +occidentalize|7442777 +occipital|7442856 +occipital bone|7442882 +occipital gyrus|7442920 +occipital lobe|7442963 +occipital protuberance|7442992 +occipital vein|7443123 +occipitomastoid suture|7443194 +occiput|7443254 +occitan|7443279 +occlude|7443345 +occluded|7443420 +occluded front|7443472 +occlusion|7443512 +occlusive|7443736 +occult|7443845 +occult arts|7444100 +occultation|7444145 +occultism|7444193 +occultist|7444338 +occupancy|7444410 +occupancy rate|7444530 +occupant|7444588 +occupation|7444661 +occupation licence|7444880 +occupation license|7444950 +occupational|7445020 +occupational disease|7445050 +occupational group|7445107 +occupational hazard|7445149 +occupational safety and health act|7445205 +occupational safety and health administration|7445296 +occupational therapy|7445466 +occupied|7445539 +occupier|7445655 +occupy|7445782 +occur|7446059 +occurrence|7446180 +ocean|7446246 +ocean bottom|7446342 +ocean current|7446436 +ocean floor|7446474 +ocean liner|7446568 +ocean perch|7446610 +ocean pout|7446701 +ocean state|7446758 +ocean sunfish|7446835 +ocean trip|7446909 +oceanaut|7446959 +oceanfront|7447016 +oceangoing|7447067 +oceania|7447110 +oceanic|7447156 +oceanic abyss|7447297 +oceanic bird|7447362 +oceanic bonito|7447422 +oceanic whitetip shark|7447497 +oceanica|7447600 +oceanid|7447647 +oceanites|7447682 +oceanites oceanicus|7447738 +oceanographer|7447842 +oceanography|7447890 +oceanus|7447926 +ocellated|7447957 +ocellated turkey|7447983 +ocellus|7448067 +ocelot|7448142 +ocher|7448193 +ochna|7448284 +ochna family|7448339 +ochna serrulata|7448411 +ochnaceae|7448479 +ochoa|7448561 +ochotona|7448606 +ochotona collaris|7448661 +ochotona princeps|7448759 +ochotonidae|7448861 +ochre|7448927 +ochroma|7449018 +ochroma lagopus|7449079 +ochronosis|7449160 +ochs|7449188 +ocimum|7449235 +ocimum basilicum|7449291 +ockham|7449365 +ockham's razor|7449441 +oconee bells|7449549 +ocotillo|7449599 +oct|7449685 +octad|7449735 +octadecanoic acid|7449827 +octagon|7449888 +octagonal|7449929 +octahedron|7449982 +octal|7450013 +octal digit|7450080 +octal notation|7450114 +octal number system|7450160 +octal numeration system|7450266 +octameter|7450372 +octane|7450408 +octane number|7450436 +octane rating|7450497 +octanedioic acid|7450558 +octangular|7450613 +octans|7450666 +octant|7450703 +octave|7450774 +octavian|7450887 +octavo|7451033 +octet|7451066 +octette|7451367 +october|7451578 +october 12|7451632 +october 24|7451721 +october revolution|7451775 +octoberfest|7451874 +octogenarian|7451936 +octonary|7452015 +octopod|7452107 +octopoda|7452154 +octopodidae|7452209 +octopus|7452276 +octoroon|7452326 +octosyllabic|7452365 +octosyllable|7452412 +octroi|7452451 +octuple|7452479 +ocular|7452515 +ocular muscle|7452741 +oculist|7452791 +oculomotor|7452919 +oculomotor nerve|7453011 +oculopharyngeal muscular dystrophy|7453103 +oculus|7453176 +oculus dexter|7453240 +oculus sinister|7453283 +ocyurus|7453328 +ocyurus chrysurus|7453378 +od|7453461 +odalisque|7453563 +odd|7453648 +odd fellow|7454333 +odd fish|7454424 +odd hassel|7454515 +odd man out|7454561 +odd-even check|7453875 +odd-job|7453975 +odd-job man|7454002 +odd-leg caliper|7454104 +odd-pinnate|7454165 +odd-pinnate leaf|7454209 +odd-toed ungulate|7454248 +oddball|7454652 +oddish|7454730 +oddity|7454762 +oddly|7454941 +oddly enough|7455014 +oddment|7455105 +oddments|7455249 +oddness|7455615 +odds|7455652 +odds and ends|7455791 +odds-maker|7455726 +odds-on|7455766 +ode|7456007 +oder|7456037 +oder river|7456073 +odesa|7456115 +odessa|7456177 +odets|7456283 +odin|7456340 +odious|7456371 +odiously|7456427 +odiousness|7456478 +odium|7456543 +odo of lagery|7456664 +odoacer|7456800 +odobenidae|7456860 +odobenus|7456923 +odobenus divergens|7456978 +odobenus rosmarus|7457066 +odocoileus|7457153 +odocoileus hemionus|7457214 +odocoileus hemionus columbianus|7457296 +odocoileus virginianus|7457453 +odometer|7457588 +odonata|7457643 +odonate|7457695 +odontalgia|7457719 +odontaspididae|7457761 +odontaspis|7457867 +odontaspis taurus|7457954 +odontiasis|7458045 +odontoceti|7458143 +odontoglossum|7458207 +odontoid process|7458256 +odontology|7458310 +odontophorus|7458383 +odor|7458448 +odoriferous|7458630 +odorize|7458809 +odorless|7458863 +odorous|7458920 +odour|7459116 +odourise|7459297 +odourless|7459351 +odovacar|7459399 +odovakar|7459460 +odynophagia|7459521 +odysseus|7459555 +odyssey|7459597 +oecanthus|7459680 +oecanthus fultoni|7459741 +oecumenic|7459818 +oecumenical|7459894 +oed|7460043 +oedema|7460115 +oedipal complex|7460176 +oedipus|7460241 +oedipus complex|7460306 +oedipus rex|7460371 +oedogoniaceae|7460440 +oedogoniales|7460516 +oedogonium|7460587 +oeil de boeuf|7460652 +oenanthe|7460682 +oenanthe aquatica|7460784 +oenanthe crocata|7460858 +oengus|7460955 +oenologist|7461013 +oenology|7461093 +oenophile|7461140 +oenophilist|7461206 +oenothera|7461272 +oenothera biennis|7461348 +oenothera fruticosa|7461449 +oenothera macrocarpa|7461524 +oersted|7461625 +oesophageal reflux|7461710 +oesophageal veins|7461787 +oesophagitis|7461878 +oesophagogastric junction|7461939 +oesophagoscope|7462041 +oesophagus|7462098 +oesterreich|7462205 +oestradiol|7462299 +oestridae|7462348 +oestriol|7462448 +oestrogen|7462493 +oestrone|7462557 +oestrus|7462631 +oestrus ovis|7462753 +oeuvre|7462821 +of a sudden|7462874 +of age|7462919 +of all time|7462944 +of course|7462969 +of each person|7463004 +of her own|7463054 +of his own|7463153 +of import|7463252 +of late|7463657 +of my own|7463703 +of necessity|7463802 +of one's own|7463852 +of our own|7463951 +of sound mind|7464050 +of the essence|7464092 +of their own|7464182 +of unsound mind|7464281 +of value|7464331 +of your own|7464385 +ofactory impairment|7464484 +off|7464547 +off and on|7466836 +off duty|7466866 +off guard|7466986 +off her guard|7467170 +off his guard|7467274 +off one's guard|7467378 +off the beaten track|7467482 +off the hook|7467531 +off year|7467558 +off your guard|7467623 +off-and-on|7464708 +off-axis reflector|7464754 +off-base|7464835 +off-broadway|7464864 +off-center|7464913 +off-centered|7464970 +off-color|7465027 +off-colour|7465104 +off-day|7465155 +off-duty|7465176 +off-guard|7465296 +off-hand|7465480 +off-key|7465580 +off-licence|7465634 +off-limits|7465693 +off-line|7465738 +off-line equipment|7465781 +off-line operation|7465850 +off-peak|7465908 +off-putting|7465946 +off-road|7465998 +off-roader|7466030 +off-season|7466106 +off-site|7466149 +off-speed pitch|7466176 +off-street|7466261 +off-the-cuff|7466292 +off-the-peg|7466409 +off-the-rack|7466482 +off-the-shelf|7466555 +off-the-shoulder|7466628 +off-the-wall|7466664 +off-white|7466758 +offal|7467727 +offbeat|7467762 +offenbach|7467823 +offence|7467879 +offenceless|7468182 +offend|7468239 +offended|7468525 +offender|7468561 +offending|7468600 +offense|7468657 +offenseless|7468960 +offensive|7469017 +offensive activity|7469863 +offensively|7469953 +offensiveness|7469999 +offer|7470064 +offer price|7470597 +offer up|7470645 +offerer|7470677 +offering|7470720 +offering protection|7470866 +offeror|7470925 +offertory|7470968 +offhand|7471041 +offhanded|7471240 +offhandedly|7471433 +office|7471495 +office block|7471918 +office boy|7471973 +office building|7472002 +office furniture|7472057 +office of homeland security|7472133 +office of inspector general|7472235 +office of intelligence support|7472323 +office of management and budget|7472462 +office of naval intelligence|7472556 +office staff|7472691 +office-bearer|7471872 +officeholder|7472726 +officer|7472815 +officer's mess|7473102 +official|7473141 +official document|7473467 +official emissary|7473570 +official immunity|7473619 +officialdom|7473683 +officialese|7473812 +officialise|7473856 +officialize|7473909 +officially|7473962 +officiant|7473990 +officiate|7474045 +officiating|7474094 +officiation|7474172 +officious|7474313 +officiousness|7474390 +offing|7474457 +offish|7474539 +offload|7474582 +offprint|7474628 +offsaddle|7474671 +offset|7474730 +offset lithography|7475281 +offset printing|7475321 +offsetting|7475379 +offsetting balance|7475467 +offshoot|7475524 +offshore|7475619 +offshore rig|7475657 +offside|7475735 +offsides|7475769 +offspring|7475795 +offstage|7475999 +ofo|7476069 +oft|7476133 +often|7476182 +oftenness|7476255 +oftentimes|7476299 +ofttimes|7476348 +ogalala|7476397 +ogcocephalidae|7476487 +ogden|7476560 +ogden nash|7476666 +ogdoad|7476716 +ogee arch|7476808 +ogive|7476850 +oglala|7476881 +ogle|7476970 +ogler|7476989 +ogre|7477044 +ogress|7477135 +oh|7477156 +ohio|7477205 +ohio buckeye|7477285 +ohio goldenrod|7477366 +ohio river|7477415 +ohio state university|7477457 +ohioan|7477521 +ohm|7477561 +ohm's law|7477627 +ohmage|7477674 +ohmic|7477782 +ohmic resistance|7477812 +ohmmeter|7477935 +oig|7477959 +oil|7478023 +oil beetle|7478358 +oil burner|7478400 +oil business|7478440 +oil cake|7478502 +oil cartel|7478535 +oil change|7478592 +oil color|7478621 +oil company|7478654 +oil conservation|7478683 +oil filter|7478722 +oil furnace|7478749 +oil future|7478789 +oil geologist|7478833 +oil gland|7478886 +oil heater|7478931 +oil industry|7479006 +oil lamp|7479068 +oil meal|7479119 +oil nut|7479146 +oil of cloves|7479189 +oil of turpentine|7479249 +oil of vitriol|7479341 +oil of wintergreen|7479407 +oil paint|7479510 +oil painter|7479535 +oil painting|7479564 +oil palm|7479619 +oil pipeline|7479650 +oil pressure|7479686 +oil production|7479752 +oil pump|7479803 +oil refinery|7479826 +oil rig|7479876 +oil rigger|7480008 +oil shale|7480042 +oil slick|7480067 +oil stain|7480092 +oil tanker|7480146 +oil tycoon|7480213 +oil well|7480317 +oil-bearing|7478171 +oil-fired|7478203 +oil-hardened steel|7478229 +oil-industry analyst|7478272 +oil-water interface|7478319 +oilbird|7480346 +oilcan|7480414 +oilcloth|7480446 +oiled|7480494 +oiler|7480515 +oilfield|7480617 +oilfish|7480641 +oiliness|7480686 +oilman|7480838 +oilpaper|7480918 +oilrig|7480942 +oilseed|7480993 +oilskin|7481015 +oilstone|7481070 +oilstove|7481098 +oily|7481173 +oink|7481334 +ointment|7481384 +oireachtas|7481508 +ois|7481550 +ojibwa|7481662 +ojibway|7481824 +ojos del salado|7481987 +ok|7482042 +oka|7482286 +okapi|7482420 +okapia|7482494 +okapia johnstoni|7482543 +okay|7482634 +okeechobee|7482873 +okefenokee swamp|7482925 +okeh|7482984 +oken|7483080 +okenfuss|7483165 +okey|7483254 +okinawa|7483350 +okinawa campaign|7483441 +oklahoma|7483519 +oklahoma city|7483577 +okra|7483648 +okra plant|7483807 +oktoberfest|7483917 +ola|7484012 +olaf ii|7484044 +olav ii|7484141 +old|7484238 +old age|7486389 +old bag|7486444 +old bailey|7486501 +old boy|7486547 +old boy network|7486681 +old bulgarian|7486718 +old bullion|7486857 +old catholic|7486927 +old catholic church|7486972 +old church slavic|7487037 +old church slavonic|7487180 +old codger|7487325 +old colony|7487391 +old country|7487464 +old delhi|7487561 +old dominion|7487625 +old dominion state|7487706 +old english|7487793 +old english sheepdog|7487863 +old faithful|7487954 +old fashioned|7487996 +old french|7488028 +old frisian|7488066 +old geezer|7488107 +old glory|7488200 +old gold|7488287 +old growth|7488323 +old guard|7488375 +old hand|7488407 +old hickory|7488486 +old high german|7488644 +old icelandic|7488720 +old irish|7488767 +old ironsides|7488815 +old italian|7488873 +old lady|7488914 +old latin|7488951 +old line state|7488986 +old maid|7489063 +old maid flower|7489383 +old man|7489431 +old man of the mountain|7489970 +old man's beard|7489707 +old master|7490089 +old money|7490132 +old nick|7490181 +old norse|7490314 +old north french|7490370 +old north state|7490434 +old person|7490523 +old prussian|7490592 +old rose|7490650 +old salt|7490673 +old saxon|7490760 +old school|7490813 +old school tie|7490873 +old sledge|7490909 +old south|7490962 +old squaw|7490997 +old stager|7491051 +old style|7491130 +old style calendar|7491182 +old style font|7491260 +old testament|7491312 +old times|7491364 +old witch grass|7491456 +old witchgrass|7491562 +old wives' tale|7491668 +old woman|7491720 +old world|7491870 +old world beaver|7491956 +old world buffalo|7492019 +old world chat|7492078 +old world coot|7492129 +old world coral snake|7492185 +old world crayfish|7492270 +old world flycatcher|7492363 +old world hop hornbeam|7492460 +old world jay|7492548 +old world least weasel|7492589 +old world leishmaniasis|7492667 +old world mistletoe|7492837 +old world monkey|7492925 +old world oriole|7492986 +old world porcupine|7493055 +old world quail|7493123 +old world rabbit|7493170 +old world robin|7493269 +old world scops owl|7493368 +old world vulture|7493438 +old world warbler|7493491 +old world white pelican|7493557 +old world yew|7493644 +old-age insurance|7485116 +old-age pension|7485159 +old-age pensioner|7485278 +old-fashioned|7485326 +old-fashionedness|7485421 +old-field toadflax|7485456 +old-hat|7485588 +old-maid's bonnet|7485786 +old-maidish|7485888 +old-man-of-the-woods|7485933 +old-time|7485994 +old-timer|7486051 +old-womanish|7486292 +old-world|7486337 +olde worlde|7493711 +olden|7493768 +oldenberg|7493788 +older|7493873 +oldest|7494821 +oldfield|7495700 +oldie|7495798 +oldish|7495831 +oldness|7495851 +oldster|7495883 +oldtimer|7495952 +olduvai gorge|7496113 +oldwench|7496156 +oldwife|7496240 +olea|7496368 +olea cunninghamii|7496429 +olea europaea|7496497 +olea lanceolata|7496571 +oleaceae|7496635 +oleaceous|7496724 +oleaginous|7496775 +oleaginousness|7496881 +oleales|7497027 +oleander|7497078 +oleander fern|7497137 +oleandra|7497202 +oleandra mollis|7497255 +oleandra neriiformis|7497336 +oleandraceae|7497422 +olearia|7497489 +olearia argophylla|7497548 +olearia haastii|7497636 +oleaster|7497731 +oleaster family|7497760 +olecranon|7497851 +olecranon process|7497916 +olefin|7497981 +olefine|7498031 +oleic acid|7498081 +olein|7498128 +oleo|7498167 +oleo oil|7498233 +oleomargarine|7498262 +oleophilic|7498328 +oleophobic|7498381 +oleoresin|7498412 +oleoresin capiscum|7498445 +olfactive|7498483 +olfactory|7498564 +olfactory brain|7498645 +olfactory bulb|7498725 +olfactory nerve|7498766 +olfactory organ|7498843 +olfactory perception|7498887 +olfactory property|7499010 +olfactory sensation|7499076 +olfersia|7499199 +olfersia cervina|7499252 +olga korbut|7499371 +olibanum|7499419 +oligarch|7499472 +oligarchic|7499503 +oligarchical|7499571 +oligarchy|7499639 +oligocene|7499694 +oligocene epoch|7499745 +oligochaeta|7499802 +oligochaete|7499859 +oligochaete worm|7499933 +oligoclase|7500007 +oligodactyly|7500056 +oligodendria|7500242 +oligodendrocyte|7500295 +oligodendroglia|7500361 +oligodontia|7500414 +oligomenorrhea|7500599 +oligoplites|7500675 +oligopoly|7500737 +oligoporus|7500775 +oligoporus leucospongia|7500836 +oligosaccharide|7500928 +oligospermia|7500983 +oliguria|7501049 +olimbos|7501104 +olive|7501177 +olive branch|7501673 +olive brown|7501725 +olive drab|7501762 +olive family|7501868 +olive green|7501948 +olive oil|7501994 +olive ridley|7502031 +olive tree|7502097 +olive-brown|7501382 +olive-drab|7501413 +olive-drab uniform|7501443 +olive-like|7501499 +olive-tree agaric|7501617 +olivelike|7502128 +olivenite|7502166 +oliver|7502193 +oliver cromwell|7502264 +oliver goldsmith|7502377 +oliver hardy|7502444 +oliver hazard perry|7502500 +oliver heaviside|7502581 +oliver stone|7502664 +oliver wendell holmes|7502752 +oliver wendell holmes jr.|7502826 +olivier|7502914 +olivine|7503051 +olla|7503076 +olla podrida|7503108 +ollari|7503150 +olm|7503191 +olmec|7503232 +olmsted|7503377 +ology|7503486 +olympia|7503604 +olympiad|7503702 +olympian|7503850 +olympian games|7504094 +olympic|7504152 +olympic games|7504269 +olympic god|7504413 +olympic national park|7504467 +olympic salamander|7504534 +olympics|7504596 +olympus|7504694 +omaha|7504767 +oman|7504890 +omani|7504970 +omani monetary unit|7505043 +omani rial|7505106 +omar bradley|7505174 +omar khayyam|7505258 +omar nelson bradley|7505345 +omasum|7505436 +omayyad|7505507 +omb|7505555 +ombu|7505621 +ombudsman|7505675 +omdurman|7505707 +omega|7505813 +omega centauri|7506165 +omega-3|7505913 +omega-3 fatty acid|7505976 +omega-6|7506039 +omega-6 fatty acid|7506102 +omelet|7506235 +omelet pan|7506265 +omelette|7506314 +omelette pan|7506344 +omen|7506393 +omental bursa|7506718 +omentum|7506809 +omeprazole|7506837 +omerta|7506919 +omicron|7506953 +ominous|7507021 +omissible|7507157 +omission|7507196 +omissive|7507321 +omit|7507356 +omiya|7507511 +ommastrephes|7507561 +ommatidium|7507589 +ommiad|7507635 +omnibus|7507682 +omnidirectional|7507823 +omnidirectional antenna|7507890 +omnidirectional radio range|7507981 +omnidirectional range|7508070 +omnifarious|7508159 +omnipotence|7508187 +omnipotent|7508214 +omnipresence|7508265 +omnipresent|7508320 +omnirange|7508360 +omniscience|7508449 +omniscient|7508476 +omnium-gatherum|7508513 +omnivore|7508729 +omnivorous|7508815 +omomyid|7508860 +omomyid group|7508940 +omophagia|7509026 +omotic|7509060 +omphalocele|7509171 +omphalos|7509227 +omphaloskepsis|7509288 +omphalotus|7509380 +omphalotus illudens|7509441 +omphalus|7509549 +omsk|7509610 +on|7509658 +on a higher floor|7510591 +on a lower floor|7510640 +on a regular basis|7510698 +on an individual basis|7510735 +on an irregular basis|7510818 +on and off|7510860 +on average|7510890 +on base|7510924 +on duty|7510947 +on faith|7511062 +on fire|7511096 +on guard|7511183 +on hand|7511252 +on her own|7511287 +on his own|7511368 +on it|7511449 +on land|7511479 +on leave|7511524 +on occasion|7511551 +on one hand|7511804 +on one's guard|7511654 +on one's own|7511723 +on paper|7511840 +on purpose|7511914 +on request|7512011 +on tap|7512045 +on that|7512088 +on that point|7512118 +on the alert|7512162 +on the average|7512201 +on the books|7512235 +on the button|7512266 +on the coattails|7512356 +on the contrary|7512401 +on the dot|7512465 +on the face of it|7512528 +on the far side|7512586 +on the fence|7512617 +on the go|7512660 +on the hook|7512686 +on the job|7512724 +on the loose|7512813 +on the nose|7512874 +on the offensive|7512966 +on the one hand|7513002 +on the other hand|7513038 +on the q.t.|7513084 +on the qt|7513225 +on the qui vive|7513284 +on the quiet|7513333 +on the road|7513475 +on the side|7513532 +on the sly|7513565 +on the spur of the moment|7513594 +on the table|7513637 +on the way|7513679 +on the whole|7513707 +on the wing|7513764 +on their own|7513794 +on time|7513875 +on tour|7513935 +on trial|7513992 +on your guard|7514028 +on your own|7514097 +on-duty|7509745 +on-key|7509860 +on-license|7509892 +on-line|7509942 +on-line database|7510026 +on-off switch|7510130 +on-site|7510229 +on-street|7510279 +on-the-job|7510308 +on-the-scene|7510408 +on-the-spot|7510450 +on/off switch|7510492 +onager|7514178 +onagraceae|7514334 +onanism|7514426 +onanist|7514596 +onboard|7514678 +once|7514701 +once again|7514892 +once and for all|7514938 +once in a while|7514976 +once more|7515079 +once-over|7514842 +onchocerciasis|7515125 +onchorynchus|7515177 +onchorynchus kisutch|7515242 +onchorynchus nerka|7515347 +onchorynchus tshawtscha|7515451 +oncidium|7515565 +oncidium papilio|7515662 +oncidium papilio kramerianum|7515741 +oncogene|7515847 +oncologic|7515903 +oncological|7515960 +oncologist|7516017 +oncology|7516067 +oncoming|7516112 +oncovin|7516156 +ondaatje|7516221 +ondatra|7516303 +ondatra zibethica|7516355 +one|7516446 +one after another|7519945 +one and only|7519996 +one and the same|7520120 +one at a time|7520175 +one by one|7520226 +one c|7520366 +one dollar bill|7520431 +one hundred|7520585 +one hundred eighty|7520639 +one hundred fifteen|7520686 +one hundred fifty|7520732 +one hundred fifty-five|7520775 +one hundred five|7520824 +one hundred forty|7520866 +one hundred forty-five|7520910 +one hundred ninety|7520960 +one hundred one|7521005 +one hundred seventy|7521080 +one hundred seventy-five|7521127 +one hundred sixty|7521180 +one hundred sixty-five|7521224 +one hundred ten|7521274 +one hundred thirty|7521315 +one hundred thirty-five|7521361 +one hundred twenty|7521413 +one hundred twenty-five|7521458 +one iron|7521509 +one million million|7521545 +one million million million|7521654 +one of the boys|7521714 +one of these days|7521743 +one one's coattails|7521808 +one percent|7521853 +one shot|7521930 +one thousand|7521989 +one thousand million|7522114 +one thousand thousand|7522177 +one time|7522242 +one-and-one|7516784 +one-armed|7516885 +one-armed bandit|7516910 +one-billionth|7516967 +one-celled|7517032 +one-dimensional|7517088 +one-dimensional language|7517192 +one-dimensionality|7517267 +one-eared|7517320 +one-eighth|7517348 +one-eyed|7517407 +one-fifth|7517430 +one-flowered pyrola|7517513 +one-flowered wintergreen|7517622 +one-fourth|7517731 +one-half|7517839 +one-hitter|7517894 +one-horse|7517951 +one-hundredth|7518002 +one-liner|7518079 +one-man|7518123 +one-man rule|7518168 +one-member|7518324 +one-millionth|7518362 +one-night stand|7518427 +one-ninth|7518515 +one-off|7518572 +one-on-one|7518624 +one-party|7518704 +one-person|7518744 +one-piece|7518789 +one-quadrillionth|7518818 +one-quintillionth|7518891 +one-seventh|7518964 +one-sided|7519025 +one-sixth|7519229 +one-sixtieth|7519286 +one-step|7519349 +one-tenth|7519399 +one-third|7519479 +one-thousandth|7519543 +one-to-one|7519610 +one-trillionth|7519638 +one-upmanship|7519705 +one-way|7519745 +one-way light time|7519777 +one-way street|7519823 +one-woman|7519875 +one-year|7519920 +onega|7522276 +oneida|7522313 +oneiric|7522397 +oneirism|7522456 +oneiromancer|7522570 +oneiromancy|7522600 +oneness|7522672 +onerous|7522739 +onerousness|7522780 +onetime|7522856 +ongoing|7522917 +oni|7522954 +onion|7523064 +onion bagel|7523156 +onion bread|7523190 +onion butter|7523242 +onion dome|7523277 +onion louse|7523302 +onion mildew|7523371 +onion plant|7523442 +onion roll|7523498 +onion salt|7523527 +onion smut|7523606 +onion stem|7523661 +onion thrips|7523709 +onion yellow dwarf|7523824 +onion yellow-dwarf virus|7523778 +onionskin|7523865 +oniscidae|7523921 +oniscus|7523984 +onlooker|7524039 +only|7524107 +only if|7524272 +only too|7524303 +only when|7524328 +ono|7524359 +onobrychis|7524394 +onobrychis viciaefolia|7524460 +onobrychis viciifolia|7524597 +onoclea|7524733 +onoclea sensibilis|7524783 +onoclea struthiopteris|7524860 +onomancer|7525011 +onomancy|7525038 +onomastic|7525107 +onomasticon|7525136 +onomastics|7525166 +onomatomania|7525197 +onomatopoeia|7525240 +onomatopoeic|7525280 +onomatopoeical|7525386 +onomatopoetic|7525454 +onondaga|7525559 +ononis|7525649 +ononis repens|7525703 +ononis spinosa|7525782 +onopordon|7525863 +onopordon acanthium|7525954 +onopordum|7526076 +onopordum acanthium|7526167 +onosmodium|7526289 +onrush|7526349 +onsager|7526449 +onset|7526495 +onshore|7526585 +onside|7526630 +onslaught|7526653 +onstage|7526796 +ontario|7526821 +onto land|7526897 +ontogenesis|7526942 +ontogenetic|7527045 +ontogeny|7527100 +ontological|7527203 +ontology|7527235 +onus|7527265 +onward|7527347 +onward motion|7527447 +onwards|7527558 +onychium|7527613 +onychogalea|7527666 +onycholysis|7527730 +onychomys|7527761 +onychophora|7527819 +onychophoran|7527876 +onychosis|7527930 +onymous|7527957 +onyx|7528001 +onyx marble|7528036 +onyxis|7528107 +oocyte|7528147 +oodles|7528174 +oogenesis|7528335 +oolong|7528368 +oom paul kruger|7528397 +oomph|7528510 +oomycetes|7528634 +oophorectomy|7528685 +oophoritis|7528761 +oophorosalpingectomy|7528808 +oort|7528880 +oort cloud|7528949 +oosphere|7529027 +oospore|7529052 +ootid|7529075 +ooze|7529104 +ooze leather|7529308 +ooze out|7529338 +ooze through|7529413 +oozing|7529455 +oozy|7529523 +op art|7529558 +opacification|7529602 +opacify|7529672 +opacity|7529723 +opah|7529824 +opal|7529895 +opal glass|7529928 +opalesce|7529965 +opalescence|7530013 +opalescent|7530057 +opaline|7530124 +opalise|7530191 +opalize|7530259 +opaque|7530327 +opaque gem|7530516 +opaqueness|7530555 +opcw|7530626 +opec|7530810 +opel|7530998 +open|7531048 +open account|7533649 +open air|7533790 +open chain|7533852 +open circuit|7533893 +open door|7533959 +open fire|7534044 +open fireplace|7534074 +open fracture|7534128 +open frame|7534184 +open house|7534216 +open interval|7534242 +open letter|7534293 +open marriage|7534329 +open order|7534406 +open primary|7534445 +open sandwich|7534482 +open secret|7534533 +open sesame|7534561 +open shop|7534636 +open sight|7534663 +open society|7534702 +open to|7534732 +open university|7534770 +open up|7534822 +open weave|7535026 +open-air|7532383 +open-air market|7532438 +open-air marketplace|7532515 +open-and-shut|7532592 +open-angle glaucoma|7532623 +open-chain|7532678 +open-class word|7532716 +open-collared|7532759 +open-door policy|7532804 +open-end credit|7532877 +open-end fund|7532957 +open-end investment company|7533077 +open-end wrench|7533197 +open-ended|7533251 +open-eyed|7533346 +open-face sandwich|7533408 +open-heart surgery|7533459 +open-hearth process|7533501 +open-minded|7533547 +open-plan|7533581 +open-source|7533613 +openbill|7535052 +opencast|7535076 +opencast mining|7535110 +opencut|7535166 +opened|7535200 +opener|7535315 +openhanded|7535439 +openhandedness|7535538 +openhearted|7535626 +opening|7535723 +opening line|7536324 +opening move|7536351 +opening night|7536432 +openmouthed|7536485 +openness|7536536 +openside plane|7536659 +openwork|7536738 +opepe|7536775 +opera|7536841 +opera bouffe|7536927 +opera cloak|7536988 +opera comique|7537026 +opera company|7537087 +opera glasses|7537125 +opera hat|7537202 +opera hood|7537297 +opera house|7537335 +opera star|7537384 +operable|7537454 +operagoer|7537584 +operand|7537621 +operant|7537647 +operant conditioning|7537682 +operate|7537725 +operate on|7537997 +operatic|7538040 +operatic star|7538087 +operating|7538157 +operating budget|7538211 +operating capability|7538244 +operating capital|7538320 +operating cost|7538371 +operating expense|7538466 +operating instructions|7538561 +operating microscope|7538653 +operating procedure|7538704 +operating room|7538751 +operating statement|7538836 +operating surgeon|7538954 +operating system|7539033 +operating table|7539112 +operating theater|7539143 +operating theatre|7539228 +operation|7539313 +operation code|7539824 +operation desert storm|7539878 +operational|7539962 +operational casualty|7540156 +operational cell|7540231 +operational damage|7540285 +operationalism|7540360 +operationalist|7540428 +operations|7540495 +operations research|7541172 +operative|7541210 +operative field|7541631 +operator|7541676 +operator gene|7541891 +operculate|7541934 +operculated|7541971 +operculum|7542008 +operetta|7542033 +operon|7542109 +operoseness|7542174 +opheodrys|7542236 +opheodrys aestivus|7542295 +opheodrys vernalis|7542384 +ophidia|7542474 +ophidian|7542558 +ophidiidae|7542614 +ophidism|7542675 +ophiodon|7542732 +ophiodon elongatus|7542785 +ophiodontidae|7542869 +ophioglossaceae|7542939 +ophioglossales|7543015 +ophioglossum|7543087 +ophioglossum pendulum|7543152 +ophiolatry|7543252 +ophiophagus|7543312 +ophiophagus hannan|7543377 +ophisaurus|7543463 +ophiuchus|7543525 +ophiurida|7543568 +ophiuroidea|7543622 +ophryon|7543679 +ophrys|7543715 +ophrys apifera|7543781 +ophrys insectifera|7543857 +ophrys muscifera|7543958 +ophrys sphegodes|7544057 +ophthalmectomy|7544134 +ophthalmia|7544200 +ophthalmia neonatorum|7544256 +ophthalmic|7544311 +ophthalmic artery|7544401 +ophthalmic vein|7544485 +ophthalmitis|7544557 +ophthalmologist|7544613 +ophthalmology|7544687 +ophthalmoplegia|7544737 +ophthalmoscope|7544778 +opiate|7544821 +opiliones|7544846 +opine|7544932 +opinion|7545045 +opinion poll|7545417 +opinionated|7545497 +opinionative|7545569 +opisthobranchia|7545641 +opisthocomidae|7545713 +opisthocomus|7545786 +opisthocomus hoazin|7545851 +opisthognathidae|7545957 +opisthognathous|7546036 +opisthorchiasis|7546086 +opisthotonos|7546123 +opium|7546170 +opium addict|7546215 +opium den|7546274 +opium poppy|7546310 +opium taker|7546356 +opopanax|7546415 +oporto|7546437 +opossum|7546500 +opossum rat|7546598 +opossum shrimp|7546644 +opossum wood|7546693 +oppenheimer|7546810 +opponent|7546880 +opportune|7547051 +opportuneness|7547188 +opportunism|7547242 +opportunist|7547313 +opportunistic|7547404 +opportunistic infection|7547461 +opportunity|7547504 +opportunity cost|7547557 +opposable|7547588 +oppose|7547627 +opposed|7547875 +opposer|7547941 +opposing|7548050 +opposite|7548139 +opposite number|7548453 +opposite word|7548511 +oppositeness|7548556 +opposition|7548598 +oppositive|7548862 +oppress|7548906 +oppressed|7548997 +oppression|7549031 +oppressive|7549138 +oppressiveness|7549204 +oppressor|7549309 +opprobrious|7549366 +opprobrium|7549519 +oppugn|7549604 +ops|7549658 +opsanus tau|7549687 +opsin|7549764 +opsonin|7549787 +opsonisation|7549813 +opsonization|7549901 +opsonize|7549989 +opt|7550027 +opt out|7550054 +optative|7550097 +optative mood|7550204 +optez|7550255 +opthalmic|7550296 +optic|7550373 +optic axis|7550587 +optic chiasm|7550627 +optic chiasma|7550706 +optic cup|7550785 +optic disc|7550839 +optic disk|7550887 +optic nerve|7550935 +optic tract|7551018 +optical|7551101 +optical aberration|7551307 +optical bench|7551376 +optical condenser|7551415 +optical crown|7551475 +optical device|7551524 +optical disc|7551555 +optical disk|7551619 +optical fiber|7551683 +optical fibre|7551756 +optical flint|7551829 +optical fusion|7551878 +optical glass|7551944 +optical illusion|7551973 +optical instrument|7552018 +optical lens|7552057 +optical maser|7552114 +optical opacity|7552158 +optical phenomenon|7552191 +optical prism|7552239 +optical pyrometer|7552283 +optical telescope|7552330 +optician|7552380 +optics|7552439 +optimal|7552561 +optimisation|7552591 +optimise|7552638 +optimism|7552731 +optimist|7552785 +optimistic|7552856 +optimization|7553008 +optimize|7553055 +optimum|7553148 +option|7553199 +optional|7553335 +optometrist|7553420 +optometry|7553484 +opulence|7553512 +opulent|7553584 +opulently|7553649 +opuntia|7553679 +opuntia cholla|7553744 +opuntia lindheimeri|7553797 +opuntia tuna|7553885 +opuntiales|7553958 +opus|7554018 +opv|7554091 +or|7554212 +or circuit|7554345 +or else|7554400 +or gate|7554456 +or so|7554508 +orach|7554595 +orache|7554639 +oracle|7554683 +oracle of apollo|7554773 +oracle of delphi|7554872 +oracular|7554971 +oradexon|7555072 +oral|7555252 +oral cancer|7555403 +oral cavity|7555434 +oral communication|7555489 +oral contraception|7555634 +oral contraceptive|7555697 +oral contraceptive pill|7555919 +oral contract|7556141 +oral exam|7556188 +oral examination|7556266 +oral fissure|7556344 +oral herpes|7556399 +oral personality|7556475 +oral phase|7556513 +oral poliovirus vaccine|7556556 +oral presentation|7556673 +oral roberts|7556753 +oral sex|7556837 +oral smear|7556889 +oral stage|7556932 +orally|7556975 +oran|7557022 +orang|7557075 +orange|7557143 +orange balsam|7557544 +orange bat|7557657 +orange daisy|7557750 +orange fleabane|7557818 +orange free state|7557886 +orange grass|7557957 +orange group|7558044 +orange grove|7558156 +orange hawkweed|7558211 +orange horseshoe bat|7558284 +orange juice|7558377 +orange liqueur|7558423 +orange marmalade|7558463 +orange milkweed|7558499 +orange milkwort|7558648 +orange mushroom pimple|7558748 +orange order|7558796 +orange peel|7558882 +orange peel fungus|7558925 +orange pekoe|7558993 +orange red|7559031 +orange rind|7559081 +orange river|7559124 +orange sneezeweed|7559172 +orange soda|7559237 +orange toast|7559269 +orange tortrix|7559297 +orange tree|7559375 +orange yellow|7559422 +orange zest|7559471 +orange-blossom orchid|7557387 +orange-juice concentrate|7557465 +orangeade|7559516 +orangeman|7559551 +orangeness|7559591 +orangewood|7559682 +orangish|7559707 +orangutan|7559742 +orangutang|7559810 +orasone|7559878 +orate|7560003 +oration|7560029 +orator|7560054 +oratorical|7560166 +oratorio|7560197 +oratory|7560253 +orb|7560285 +orb web|7560339 +orbicular|7560380 +orbiculate|7560522 +orbiculate leaf|7560588 +orbignya|7560625 +orbignya cohune|7560697 +orbignya martiana|7560770 +orbignya phalerata|7560900 +orbignya spesiosa|7561031 +orbison|7561161 +orbit|7561243 +orbit period|7561540 +orbital|7561569 +orbital cavity|7561639 +orbital motion|7561721 +orbital plane|7561791 +orbital point|7561826 +orbital rotation|7561877 +orbitale|7561947 +orbiter|7561998 +orca|7562056 +orchard|7562128 +orchard apple tree|7562177 +orchard grass|7562235 +orchard oriole|7562302 +orchestia|7562382 +orchestiidae|7562443 +orchestra|7562515 +orchestra pit|7562637 +orchestral|7562669 +orchestral bells|7562744 +orchestrate|7562827 +orchestrated|7562911 +orchestration|7562988 +orchestrator|7563145 +orchid|7563196 +orchid cactus|7563238 +orchid family|7563279 +orchid tree|7563365 +orchidaceae|7563454 +orchidaceous plant|7563552 +orchidales|7563594 +orchidalgia|7563654 +orchidectomy|7563688 +orchiectomy|7563764 +orchil|7563840 +orchiopexy|7563907 +orchis|7564000 +orchis mascula|7564134 +orchis papilionaceae|7564212 +orchis spectabilis|7564304 +orchitis|7564406 +orchotomy|7564451 +orcinus|7564505 +orcinus orca|7564557 +orcus|7564642 +orczy|7564679 +ord kangaroo rat|7564737 +ordain|7564840 +ordained|7564965 +ordainer|7565060 +ordeal|7565115 +ordeal bean|7565171 +ordeal tree|7565210 +order|7565306 +order acarina|7566450 +order accipitriformes|7566508 +order actinaria|7566612 +order actiniaria|7566704 +order actinomycetales|7566797 +order actinomyxidia|7566879 +order aepyorniformes|7566955 +order agaricales|7567034 +order alcyonaria|7567101 +order alismales|7567168 +order amoebida|7567257 +order amoebina|7567342 +order amphipoda|7567427 +order anacanthini|7567491 +order anaspida|7567561 +order andreaeales|7567622 +order anguilliformes|7567691 +order anoplura|7567783 +order anostraca|7567844 +order anseriformes|7567908 +order anthocerotales|7567981 +order anura|7568059 +order aphyllophorales|7568163 +order aplacophora|7568245 +order apodes|7568349 +order apodiformes|7568433 +order apterygiformes|7568503 +order arales|7568582 +order araneae|7568636 +order araneida|7568718 +order aristolochiales|7568801 +order arms|7568882 +order artiodactyla|7568928 +order aspergillales|7569001 +order auriculariales|7569105 +order batoidei|7569184 +order batrachia|7569273 +order belemnoidea|7569381 +order bennettitales|7569451 +order berycomorphi|7569526 +order blastocladiales|7569599 +order book|7569681 +order branchiura|7569749 +order bryales|7569816 +order campanulales|7569873 +order caprimulgiformes|7569945 +order carnivora|7570030 +order caryophyllales|7570094 +order casuariiformes|7570206 +order casuarinales|7570285 +order caudata|7570357 +order cestida|7570439 +order cetacea|7570497 +order charadriiformes|7570555 +order charales|7570637 +order chelonethida|7570702 +order chelonia|7570857 +order chiroptera|7570976 +order chlorococcales|7571043 +order chytridiales|7571126 +order ciconiiformes|7571199 +order cilioflagellata|7571275 +order coccidia|7571393 +order code|7571454 +order coleoptera|7571508 +order collembola|7571575 +order columbiformes|7571642 +order colymbiformes|7571718 +order commelinales|7571874 +order coniferales|7571972 +order conodonta|7572041 +order conodontophorida|7572145 +order coraciiformes|7572256 +order cordaitales|7572332 +order corrodentia|7572401 +order crocodilia|7572499 +order crocodylia|7572594 +order cuculiformes|7572689 +order cycadales|7572762 +order cycadofilicales|7572825 +order cyclostomata|7572946 +order cydippea|7573019 +order cydippida|7573134 +order cydippidea|7573250 +order cypriniformes|7573367 +order decapoda|7573443 +order dermaptera|7573548 +order dermoptera|7573615 +order diapensiales|7573682 +order dicranales|7573754 +order dictyoptera|7573820 +order dinocerata|7573890 +order dinoflagellata|7573957 +order dinornithiformes|7574074 +order diptera|7574159 +order discocephali|7574217 +order ebenales|7574290 +order edentata|7574350 +order embiodea|7574411 +order embioptera|7574500 +order endomycetales|7574591 +order entomophthorales|7574667 +order ephemerida|7574752 +order ephemeroptera|7574853 +order equisetales|7574957 +order ericales|7575026 +order erysiphales|7575086 +order eubacteriales|7575156 +order eubryales|7575232 +order euphausiacea|7575295 +order eurotiales|7575368 +order eurypterida|7575469 +order exocycloida|7575539 +order fagales|7575609 +order falconiformes|7575666 +order filicales|7575742 +order foraminifera|7575837 +order form|7575910 +order fucales|7575935 +order gadiformes|7575993 +order galliformes|7576060 +order ganoidei|7576130 +order gaviiformes|7576191 +order gentianales|7576261 +order geophilomorpha|7576330 +order geraniales|7576409 +order ginkgoales|7576475 +order gnetales|7576541 +order graminales|7576601 +order gregarinida|7576667 +order gruiformes|7576737 +order guttiferales|7576804 +order gymnophiona|7576876 +order haemosporidia|7576946 +order haplosporidia|7577022 +order heliozoa|7577098 +order helotiales|7577159 +order hemiptera|7577226 +order heterosomata|7577290 +order heterotrichales|7577387 +order hymenogastrales|7577473 +order hymenoptera|7577555 +order hypericales|7577625 +order hypermastigina|7577722 +order hypocreales|7577801 +order hyracoidea|7577871 +order ichthyosauria|7577938 +order ictodosauria|7578014 +order insectivora|7578087 +order insessores|7578157 +order isoetales|7578246 +order isopoda|7578309 +order isoptera|7578367 +order isospondyli|7578428 +order juglandales|7578498 +order jungermanniales|7578567 +order lagomorpha|7578648 +order laminariales|7578715 +order lechanorales|7578792 +order lepidodendrales|7578865 +order lepidoptera|7578946 +order lichenales|7579016 +order liliales|7579083 +order lobata|7579143 +order loricata|7579198 +order lycoperdales|7579259 +order lycopodiales|7579332 +order lyginopteridales|7579404 +order madreporaria|7579526 +order mallophaga|7579599 +order malvales|7579666 +order mantophasmatodea|7579726 +order marattiales|7579788 +order marchantiales|7579857 +order marsupialia|7579932 +order mecoptera|7580002 +order moniliales|7580066 +order monotremata|7580133 +order mucorales|7580203 +order musales|7580267 +order myaceae|7580324 +order mycelia sterilia|7580382 +order mycoplasmatales|7580467 +order mycrosporidia|7580549 +order myricales|7580625 +order myrtales|7580688 +order mysidacea|7580780 +order myxobacterales|7580844 +order myxobacteria|7580980 +order myxobacteriales|7581114 +order myxosporidia|7581251 +order naiadales|7581324 +order neuroptera|7581413 +order nidulariales|7581480 +order notostraca|7581553 +order nudibranchia|7581620 +order octopoda|7581693 +order odonata|7581754 +order oedogoniales|7581812 +order of business|7581870 +order of magnitude|7581925 +order of our lady of mount carmel|7581992 +order of payment|7582106 +order of saint benedict|7582177 +order of the day|7582273 +order of the purple heart|7582332 +order oleales|7582459 +order ophioglossales|7582516 +order opiliones|7582594 +order opuntiales|7582686 +order orchidales|7582752 +order ornithischia|7582818 +order orthoptera|7582891 +order ostariophysi|7582958 +order ostracodermi|7583051 +order palmales|7583124 +order pandanales|7583184 +order papaverales|7583250 +order paper|7583347 +order parietales|7583396 +order passeriformes|7583492 +order pectinibranchia|7583568 +order pediculati|7583650 +order pedipalpi|7583717 +order pelecaniformes|7583803 +order pelycosauria|7583882 +order perciformes|7583955 +order percomorphi|7584055 +order perissodactyla|7584155 +order peronosporales|7584234 +order pezizales|7584313 +order phalangida|7584377 +order phallales|7584470 +order phasmatodea|7584534 +order phasmida|7584628 +order pholidota|7584719 +order picariae|7584783 +order piciformes|7584844 +order piperales|7584911 +order plantaginales|7584974 +order platyctenea|7585049 +order plecoptera|7585119 +order plectognathi|7585186 +order pleuronectiformes|7585283 +order plumbaginales|7585385 +order podicipediformes|7585460 +order podicipitiformes|7585619 +order polemoniales|7585778 +order polygonales|7585850 +order polymastigina|7585919 +order polypodiales|7585995 +order primates|7586093 +order primulales|7586154 +order proboscidea|7586220 +order procellariiformes|7586290 +order proteales|7586378 +order protura|7586441 +order pseudomonadales|7586499 +order pseudoscorpiones|7586581 +order pseudoscorpionida|7586740 +order psilophytales|7586900 +order psilotales|7586975 +order psittaciformes|7587041 +order psocoptera|7587120 +order pterosauria|7587217 +order pulmonata|7587287 +order pycnogonida|7587351 +order radiolaria|7587421 +order rajiformes|7587488 +order ranales|7587579 +order ranunculales|7587668 +order raptores|7587762 +order rhamnales|7587823 +order rheiformes|7587886 +order rhoeadales|7587953 +order rhynchocephalia|7588049 +order rickettsiales|7588131 +order rodentia|7588207 +order rosales|7588268 +order rubiales|7588325 +order salicales|7588385 +order salientia|7588448 +order santalales|7588556 +order sapindales|7588622 +order saprolegniales|7588688 +order sarcosporidia|7588767 +order sarraceniales|7588843 +order saurischia|7588918 +order sauropterygia|7588985 +order scandentia|7589061 +order sclerodermatales|7589128 +order scleroparei|7589213 +order scorpionida|7589283 +order scrophulariales|7589353 +order secotiales|7589434 +order selaginellales|7589501 +order siluriformes|7589579 +order siphonaptera|7589652 +order siphonophora|7589725 +order sirenia|7589798 +order solenichthyes|7589856 +order solenogastres|7589932 +order spatangoida|7590038 +order sphaeriales|7590108 +order sphaerocarpales|7590178 +order sphagnales|7590259 +order sphenisciformes|7590325 +order spirochaetales|7590407 +order squamata|7590486 +order stegocephalia|7590547 +order stereospondyli|7590623 +order stomatopoda|7590702 +order strigiformes|7590772 +order struthioniformes|7590845 +order synentognathi|7590930 +order taxales|7591006 +order temnospondyli|7591063 +order testacea|7591139 +order testudinata|7591200 +order testudines|7591322 +order tetraodontiformes|7591443 +order thecodontia|7591545 +order therapsida|7591615 +order thymelaeales|7591682 +order thysanoptera|7591778 +order thysanura|7591851 +order tinamiformes|7591915 +order torpediniformes|7591988 +order tremellales|7592070 +order trichoptera|7592140 +order trogoniformes|7592210 +order tuberales|7592286 +order tubulidentata|7592350 +order tulostomatales|7592426 +order ulvales|7592505 +order umbellales|7592567 +order uredinales|7592633 +order urodella|7592700 +order uropygi|7592783 +order urticales|7592867 +order ustilaginales|7592930 +order volvocales|7593006 +order xiphosura|7593077 +order xyridales|7593141 +order zeomorphi|7593236 +order zygnemales|7593300 +order zygnematales|7593399 +order-chenopodiales|7566339 +ordered|7593500 +ordered series|7593684 +orderer|7593789 +ordering|7593932 +orderliness|7594018 +orderly|7594095 +orderly sergeant|7594388 +ordinal|7594450 +ordinal number|7596231 +ordinance|7596274 +ordinand|7596410 +ordinarily|7596464 +ordinariness|7596522 +ordinary|7596552 +ordinary annuity|7597104 +ordinary bicycle|7597144 +ordinary care|7597204 +ordinary life insurance|7597286 +ordinary shares|7597394 +ordinate|7597452 +ordination|7597586 +ordnance|7597715 +ordnance stores|7597811 +ordnance survey|7597864 +ordovician|7597945 +ordovician period|7598019 +ordure|7598100 +ore|7598232 +ore bed|7598293 +ore dressing|7598314 +ore processing|7598431 +oread|7598548 +oreamnos|7598575 +oreamnos americanus|7598630 +orectolobidae|7598727 +orectolobus|7598797 +orectolobus barbatus|7598859 +oregano|7598929 +oregon|7599042 +oregon alder|7599096 +oregon ash|7599170 +oregon cedar|7599250 +oregon crab apple|7599377 +oregon fir|7599466 +oregon grape|7599605 +oregon holly grape|7599784 +oregon jargon|7599922 +oregon larch|7599981 +oregon lily|7600083 +oregon maple|7600160 +oregon myrtle|7600234 +oregon oak|7600413 +oregon pine|7600498 +oregon white oak|7600638 +oregonian|7600729 +oreide|7600767 +orelanism|7600802 +oreo|7600879 +oreo cookie|7600926 +oreopteris|7600973 +oreopteris limbosperma|7601032 +oreortyx|7601128 +oreortyx picta palmeri|7601181 +orestes|7601280 +orff|7601320 +organ|7601377 +organ donor|7601705 +organ loft|7601732 +organ of corti|7601760 +organ of hearing|7601816 +organ pipe|7601880 +organ stop|7601935 +organ transplant|7601980 +organ-grinder|7601654 +organdie|7602106 +organdy|7602139 +organelle|7602172 +organic|7602208 +organic brain syndrome|7602500 +organic chemistry|7602551 +organic compound|7602605 +organic disorder|7602658 +organic fertiliser|7602699 +organic fertilizer|7602787 +organic law|7602875 +organic phenomenon|7602929 +organic process|7602976 +organic structure|7603028 +organicism|7603094 +organicistic|7603132 +organification|7603171 +organisation|7603230 +organise|7603626 +organised|7603937 +organiser|7603992 +organism|7604196 +organismal|7604268 +organismic|7604312 +organist|7604356 +organization|7604406 +organization chart|7604802 +organization expense|7604836 +organization for the prohibition of chemical weapons|7604897 +organization man|7605129 +organization of american states|7605164 +organization of petroleum-exporting countries|7605353 +organization of the oppressed on earth|7605582 +organizational|7605910 +organize|7605943 +organized|7606254 +organized crime|7606510 +organizer|7606565 +organon|7606769 +organophosphate|7606809 +organophosphate nerve agent|7606860 +organs|7606919 +organza|7607258 +orgasm|7607305 +orgiastic|7607362 +orgy|7607463 +oriel|7607652 +oriel window|7607702 +orient|7607752 +oriental|7607923 +oriental alabaster|7608001 +oriental arborvitae|7608072 +oriental beetle|7608172 +oriental bittersweet|7608287 +oriental black mushroom|7608405 +oriental bush cherry|7608555 +oriental cherry|7608630 +oriental cockroach|7608731 +oriental garlic|7608838 +oriental person|7608940 +oriental plane|7608988 +oriental poppy|7609059 +oriental roach|7609107 +oriental scops owl|7609214 +oriental sore|7609282 +oriental spruce|7609428 +oriental studies|7609477 +orientalise|7609583 +orientalism|7609636 +orientalist|7609752 +orientalize|7609808 +orientate|7609861 +orientated|7609923 +orientating|7610071 +orientation|7610191 +orientation course|7610467 +oriented|7610558 +orienting|7610715 +orifice|7610845 +oriflamme|7610895 +origami|7610989 +origanum|7611048 +origanum dictamnus|7611088 +origanum majorana|7611216 +origanum vulgare|7611321 +origen|7611430 +origin|7611511 +original|7611820 +original sin|7612165 +originalism|7612199 +originality|7612227 +originally|7612277 +originate|7612389 +origination|7612522 +origination fee|7612695 +originative|7612724 +originator|7612910 +orinasal|7612959 +orinasal phone|7613017 +orinase|7613075 +orinoco|7613164 +orinoco river|7613209 +oriole|7613260 +oriolidae|7613371 +oriolus|7613429 +oriolus oriolus|7613479 +orion|7613558 +orison|7613662 +orissa|7613709 +orites|7613747 +orites excelsa|7613814 +oriya|7613870 +orizaba|7613920 +orkney islands|7613974 +orlando|7614025 +orlando di lasso|7614079 +orleanais|7614154 +orleanist|7614255 +orleans|7614304 +orlon|7614437 +orlop|7614466 +orlop deck|7614509 +orly|7614552 +orly group|7614601 +ormandy|7614788 +ormazd|7614862 +ormer|7614918 +ormolu|7614980 +ormosia|7615002 +ormosia coarctata|7615059 +ormosia monosperma|7615141 +ormuzd|7615234 +ornament|7615290 +ornamental|7615470 +ornamentalist|7615554 +ornamentation|7615610 +ornamented|7615716 +ornate|7615773 +ornateness|7615856 +orneriness|7615915 +ornery|7615983 +ornithine|7616034 +ornithischia|7616083 +ornithischian|7616150 +ornithischian dinosaur|7616205 +ornithogalum|7616260 +ornithogalum pyrenaicum|7616335 +ornithogalum thyrsoides|7616444 +ornithogalum umbellatum|7616548 +ornithological|7616663 +ornithologist|7616713 +ornithology|7616776 +ornithomimid|7616824 +ornithomimida|7616894 +ornithopod|7616967 +ornithopod dinosaur|7617044 +ornithopoda|7617121 +ornithopter|7617238 +ornithorhynchidae|7617292 +ornithorhynchus|7617376 +ornithorhynchus anatinus|7617452 +ornithosis|7617598 +orobanchaceae|7617711 +orogeny|7617819 +orography|7617872 +oroide|7617907 +orology|7617942 +orono|7617977 +orontium|7618003 +orontium aquaticum|7618075 +oropharyngeal|7618189 +oropharynx|7618238 +orotund|7618285 +orozco|7618391 +orphan|7618456 +orphan site|7618714 +orphanage|7618778 +orphaned|7618853 +orphanhood|7618900 +orphans' asylum|7618940 +orphenadrine|7618987 +orpheus|7619033 +orphic|7619073 +orphrey|7619167 +orpiment|7619191 +orpin|7619217 +orpine|7619283 +orpington|7619349 +orr|7619400 +orrery|7619470 +orris|7619498 +orrisroot|7619606 +orson welles|7619636 +ortalis|7619788 +ortega|7619838 +ortega y gasset|7619930 +orthicon|7620004 +orthilia|7620083 +orthoboric acid|7620147 +orthochorea|7620188 +orthochromatic film|7620216 +orthoclase|7620268 +orthodontia|7620305 +orthodontic|7620428 +orthodontic treatment|7620485 +orthodontics|7620526 +orthodontist|7620649 +orthodonture|7620712 +orthodox|7620835 +orthodox catholic church|7621094 +orthodox church|7621241 +orthodox jew|7621379 +orthodox judaism|7621435 +orthodox sleep|7621560 +orthodoxy|7621664 +orthoepist|7621716 +orthoepy|7621748 +orthogonal|7621920 +orthogonal opposition|7622035 +orthogonality|7622108 +orthographic|7622214 +orthography|7622243 +orthomorphic projection|7622287 +orthomyxovirus|7622356 +orthopaedic|7622390 +orthopaedics|7622450 +orthopaedist|7622500 +orthopedic|7622564 +orthopedical|7622624 +orthopedics|7622684 +orthopedist|7622734 +orthophosphate|7622798 +orthophosphoric acid|7622857 +orthophosphorous acid|7622923 +orthopnea|7623012 +orthopristis|7623048 +orthopristis chrysopterus|7623113 +orthopter|7623196 +orthoptera|7623250 +orthopteran|7623369 +orthopteron|7623429 +orthopterous insect|7623489 +orthoptic|7623549 +orthoptics|7623609 +orthoptist|7623639 +orthoscope|7623689 +orthostatic|7623724 +orthostatic hypotension|7623768 +orthotomus|7623834 +orthotomus sutorius|7623893 +orthotropous|7623984 +orthotropous ovule|7624019 +ortilis vetula macalli|7624053 +ortolan|7624136 +ortolan bunting|7624196 +ortygan|7624256 +orudis|7624291 +orudis kt|7624416 +oruvail|7624544 +orville wright|7624670 +orwell|7624746 +orwellian|7624826 +orycteropodidae|7624868 +orycteropus|7624946 +orycteropus afer|7625010 +oryctolagus|7625134 +oryctolagus cuniculus|7625198 +oryx|7625302 +oryx gazella|7625332 +oryza|7625396 +oryza sativa|7625459 +oryzomys|7625515 +oryzomys palustris|7625570 +oryzopsis|7625630 +oryzopsis hymenoides|7625705 +oryzopsis miliacea|7625826 +orzo|7625912 +os|7625949 +os breve|7626190 +os capitatum|7626227 +os frontale|7626302 +os hamatum|7626359 +os hyoideum|7626442 +os ischii|7626488 +os longum|7626536 +os lunatum|7626573 +os nasale|7626650 +os palatinum|7626694 +os pisiforme|7626747 +os pubis|7626822 +os scaphoideum|7626865 +os sesamoideum|7626943 +os sphenoidale|7626989 +os tarsi fibulare|7627044 +os temporale|7627098 +os trapezium|7627142 +os trapezoideum|7627219 +os triquetrum|7627299 +os zygomaticum|7627409 +osage|7627493 +osage orange|7627574 +osage river|7627659 +osaka|7627704 +osaka bay|7627759 +osama bin laden|7627792 +osasco|7627869 +osborne|7627921 +oscan|7627999 +oscan-speaking|7628054 +oscar|7628121 +oscar fingal o'flahertie wills wilde|7628192 +oscar hammerstein|7628307 +oscar hammerstein ii|7628394 +oscar palmer robertson|7628484 +oscar robertson|7628571 +oscar wilde|7628651 +oscheocele|7628741 +oscheocoele|7628797 +oscillate|7628853 +oscillating|7628944 +oscillation|7628997 +oscillator|7629142 +oscillatoriaceae|7629172 +oscillatory|7629255 +oscillogram|7629308 +oscillograph|7629339 +oscilloscope|7629408 +oscine|7629486 +oscine bird|7629574 +oscines|7629629 +oscitance|7629764 +oscitancy|7629982 +oscitant|7630200 +osco-umbrian|7630245 +osculate|7630303 +osculating circle|7630360 +osculation|7630414 +osculator|7630474 +osha|7630506 +osier|7630635 +osip emilevich mandelstam|7630688 +osip mandelstam|7630793 +osiris|7630888 +oslo|7630926 +osman i|7630997 +osmanli|7631053 +osmanthus|7631104 +osmanthus americanus|7631180 +osmeridae|7631261 +osmerus|7631319 +osmerus eperlanus|7631369 +osmerus mordax|7631444 +osmiridium|7631503 +osmitrol|7631542 +osmium|7631612 +osmoreceptor|7631671 +osmosis|7631703 +osmotic|7631730 +osmotic pressure|7631756 +osmund|7631826 +osmunda cinnamonea|7631862 +osmunda clatonia|7631972 +osmunda regalis|7632054 +osmundaceae|7632177 +osprey|7632241 +osseous|7632311 +osseous labyrinth|7632355 +osseous tissue|7632478 +ossete|7632523 +ossicle|7632571 +ossicular|7632614 +ossiculate|7632651 +ossiculum|7632688 +ossiferous|7632731 +ossification|7632768 +ossified|7632928 +ossify|7632991 +osso buco|7633084 +ossuary|7633108 +ostariophysi|7633136 +osteal|7633223 +osteichthyes|7633291 +osteitis|7633351 +osteitis deformans|7633396 +ostensible|7633449 +ostensibly|7633537 +ostensive|7633595 +ostensive definition|7633678 +ostentate|7633719 +ostentation|7633789 +ostentatious|7633955 +ostentatiously|7634060 +ostentatiousness|7634108 +osteoarthritis|7634217 +osteoblast|7634301 +osteoblastoma|7634369 +osteochondroma|7634480 +osteoclasis|7634592 +osteoclast|7634623 +osteocyte|7634653 +osteodystrophy|7634682 +osteogenesis imperfecta|7634716 +osteogenic sarcoma|7634804 +osteolysis|7634853 +osteoma|7634879 +osteomalacia|7634984 +osteomyelitis|7635014 +osteopath|7635046 +osteopathist|7635095 +osteopathy|7635144 +osteopetrosis|7635174 +osteophyte|7635407 +osteoporosis|7635455 +osteosarcoma|7635487 +osteosclerosis|7635536 +osteosclerosis congenita|7635581 +osteostracan|7635826 +osteostraci|7635901 +osteotomy|7636003 +ostiarius|7636095 +ostiary|7636186 +ostinato|7636350 +ostiole|7636390 +ostler|7636412 +ostomy|7636488 +ostraciidae|7636577 +ostracise|7636663 +ostracism|7636800 +ostracize|7636894 +ostracod|7637031 +ostracoda|7637086 +ostracoderm|7637140 +ostracodermi|7637202 +ostrava|7637269 +ostrea|7637323 +ostrea gigas|7637373 +ostreidae|7637431 +ostrich|7637492 +ostrich fern|7637621 +ostrogoth|7637749 +ostrya|7637783 +ostrya carpinifolia|7637841 +ostrya virginiana|7637926 +ostryopsis|7638028 +ostwald|7638098 +ostwald's theory of indicators|7638147 +ostyak|7638257 +ostyak-samoyed|7638329 +oswald|7638430 +oswald spengler|7638499 +oswald veblen|7638561 +oswego tea|7638619 +otaheite arrowroot|7638707 +otaheite arrowroot starch|7638794 +otalgia|7638888 +otaria|7638925 +otaria byronia|7638974 +otariidae|7639046 +otc|7639106 +otc market|7639145 +otc security|7639246 +otc stock|7639346 +othello|7639470 +other|7639546 +other than|7639780 +otherness|7639806 +otherwise|7639862 +otherworldliness|7639905 +otherworldly|7639968 +othman i|7640043 +otho i|7640100 +othonna|7640182 +otic|7640210 +otic ganglion|7640271 +otides|7640325 +otididae|7640377 +otiose|7640432 +otis|7640585 +otis skinner|7640701 +otis tarda|7640787 +otitis|7640840 +otitis externa|7640883 +otitis interna|7640914 +otitis media|7640959 +oto|7640988 +otoe|7641047 +otoganglion|7641107 +otolaryngologist|7641161 +otolaryngology|7641293 +otologist|7641352 +otology|7641427 +otoplasty|7641486 +otorhinolaryngologist|7641554 +otorrhea|7641686 +otosclerosis|7641714 +otoscope|7641900 +ototoxic|7641937 +ottar|7641961 +ottava rima|7642020 +ottawa|7642048 +otter|7642158 +otter hound|7642225 +otter shrew|7642354 +otterhound|7642415 +ottmar mergenthaler|7642463 +otto frisch|7642555 +otto fritz meyerhof|7642632 +otto hahn|7642715 +otto heinrich warburg|7642757 +otto i|7642829 +otto jespersen|7642911 +otto loewi|7643016 +otto meyerhof|7643091 +otto neumann sverdrup|7643168 +otto robert frisch|7643250 +otto the great|7643334 +otto von bismarck|7643424 +otto wagner|7643604 +ottoman|7643663 +ottoman dynasty|7643843 +ottoman empire|7643900 +ottoman turk|7643961 +ottorino respighi|7644017 +ottumwa|7644080 +otus|7644110 +otus asio|7644151 +otus scops|7644233 +otus sunia|7644294 +ouachita|7644354 +ouachita river|7644402 +oubliette|7644456 +ouguiya|7644483 +ouija|7644526 +ouija board|7644575 +oujda|7644630 +ounce|7644680 +our lady's bedstraw|7644851 +our lady's mild thistle|7644954 +our lord's candle|7645107 +ouranopithecus|7645173 +ouranos|7645246 +ouse|7645290 +ouse river|7645326 +ousel|7645368 +oust|7645450 +ouster|7645563 +ousting|7645736 +out|7645798 +out and away|7647290 +out front|7647331 +out in|7647367 +out loud|7647445 +out of action|7647468 +out of bounds|7647523 +out of breath|7647560 +out of commission|7647680 +out of condition|7647765 +out of doors|7647809 +out of focus|7647856 +out of gear|7647899 +out of hand|7647929 +out of nothing|7647964 +out of place|7648016 +out of play|7648079 +out of practice|7648105 +out of print|7648146 +out of reach|7648181 +out of service|7648266 +out of sight|7648316 +out of stock|7648415 +out of the blue|7648449 +out of the question|7648542 +out of thin air|7648621 +out of true|7648673 +out of use|7648708 +out of view|7648743 +out of wedlock|7648776 +out of whack|7648837 +out of work|7648888 +out or keeping|7648933 +out to|7649006 +out-and-out|7646351 +out-and-outer|7646422 +out-basket|7646452 +out-herod|7646492 +out-migration|7646576 +out-of-body experience|7646633 +out-of-bounds|7646676 +out-of-court settlement|7646733 +out-of-date|7646777 +out-of-door|7646841 +out-of-doors|7646915 +out-of-pocket|7646977 +out-of-school|7647009 +out-of-the-box thinking|7647037 +out-of-the-way|7647141 +out-of-town|7647221 +out-tray|7647250 +outage|7649063 +outback|7649134 +outbalance|7649206 +outbid|7649300 +outboard|7649349 +outboard motor|7649484 +outboard motorboat|7649548 +outbound|7649605 +outbrave|7649664 +outbreak|7649791 +outbred|7649863 +outbuilding|7649937 +outburst|7649975 +outcall|7650170 +outcast|7650196 +outcaste|7650295 +outclass|7650392 +outclassed|7650422 +outcome|7650451 +outcrop|7650598 +outcropping|7650665 +outcry|7650718 +outdated|7650962 +outdistance|7651026 +outdo|7651078 +outdoor|7651271 +outdoor game|7651376 +outdoor man|7651412 +outdoor sport|7651454 +outdoor stage|7651505 +outdoors|7651553 +outdoorsman|7651651 +outdoorswoman|7651725 +outdoorsy|7651760 +outdraw|7651807 +outer|7651889 +outer boundary|7652300 +outer ear|7652361 +outer garment|7652408 +outer hebrides|7652451 +outer mongolia|7652502 +outer space|7652605 +outercourse|7652641 +outermost|7652711 +outerwear|7652744 +outface|7652817 +outfall|7652865 +outfield|7652908 +outfielder|7652984 +outfight|7653037 +outfit|7653098 +outfitted|7653273 +outfitter|7653345 +outfitting|7653425 +outflank|7653471 +outflow|7653596 +outflowing|7653767 +outfox|7653805 +outgeneral|7654000 +outgo|7654054 +outgoer|7654212 +outgoing|7654270 +outgrow|7654477 +outgrowth|7654600 +outguess|7654764 +outhouse|7654859 +outing|7654914 +outlander|7655045 +outlandish|7655110 +outlandishness|7655204 +outlast|7655276 +outlaw|7655309 +outlawed|7655557 +outlawry|7655620 +outlay|7655661 +outlet|7655777 +outlet box|7656042 +outlier|7656073 +outline|7656134 +outlined|7656377 +outlive|7656412 +outlook|7656445 +outlying|7656588 +outmaneuver|7656610 +outmanoeuvre|7656685 +outmarch|7656760 +outmatch|7656843 +outmode|7656960 +outmoded|7656997 +outmost|7657092 +outnumber|7657125 +outpace|7657176 +outpatient|7657258 +outperform|7657286 +outplay|7657403 +outpoint|7657463 +outport|7657545 +outpost|7657567 +outpouring|7657679 +output|7657927 +output contract|7658191 +output file|7658225 +output program|7658260 +output routine|7658324 +output signal|7658380 +output-to-input ratio|7658154 +outrage|7658432 +outraged|7658820 +outrageous|7658874 +outrageously|7659000 +outrageousness|7659033 +outrange|7659131 +outrank|7659214 +outre|7659260 +outreach|7659354 +outride|7659395 +outrider|7659451 +outrigged|7659486 +outrigger|7659512 +outrigger canoe|7659553 +outright|7659584 +outrival|7659680 +outroar|7659711 +outrun|7659793 +outsail|7659813 +outscore|7659895 +outsell|7659965 +outset|7660119 +outshine|7660235 +outshout|7660336 +outside|7660426 +outside caliper|7660872 +outside clinch|7660933 +outside door|7660971 +outside loop|7661042 +outside marriage|7661083 +outside mirror|7661123 +outsider|7661158 +outsider art|7661227 +outsize|7661310 +outsized|7661373 +outskirt|7661424 +outskirts|7661463 +outsmart|7661527 +outsole|7661714 +outsource|7661736 +outspan|7661762 +outspoken|7661796 +outspokenness|7661956 +outspread|7662007 +outstanding|7662042 +outstandingly|7662195 +outstare|7662243 +outstation|7662291 +outstay|7662332 +outstretched|7662412 +outstrip|7662443 +outstroke|7662601 +outtake|7662644 +outthrust|7662672 +outturn|7662724 +outvie|7662775 +outvote|7662806 +outward|7662828 +outward-bound|7662944 +outward-developing|7663003 +outward-moving|7663043 +outwardly|7663079 +outwardness|7663108 +outwards|7663237 +outwear|7663262 +outweigh|7663440 +outwit|7663606 +outwork|7663729 +ouzel|7663782 +ouzo|7663864 +ov|7663951 +oval|7664053 +oval kumquat|7664169 +oval office|7664263 +oval window|7664314 +ovalbumin|7664405 +ovalipes|7664461 +ovalipes ocellatus|7664519 +ovarian|7664621 +ovarian artery|7664688 +ovarian cyst|7664765 +ovarian pregnancy|7664792 +ovarian vein|7664921 +ovariectomy|7664986 +ovary|7665062 +ovate|7665158 +ovate leaf|7665266 +ovation|7665298 +oven|7665351 +oven broil|7665412 +oven stuffer|7665444 +oven stuffer roaster|7665495 +oven thermometer|7665546 +oven-ready|7665383 +ovenbake|7665584 +ovenbird|7665607 +ovenware|7665693 +over|7665729 +over again|7666708 +over and over|7666754 +over and over again|7666847 +over here|7666940 +over the counter security|7666966 +over the counter stock|7667053 +over the sea|7667167 +over-correct|7665863 +over-crowding|7665933 +over-embellished|7665976 +over-refine|7666042 +over-the-counter|7666184 +over-the-counter drug|7666246 +over-the-counter market|7666349 +over-the-counter medicine|7666439 +over-the-hill|7666542 +over-the-shoulder bombing|7666600 +over-the-top|7666661 +overabundance|7667219 +overabundant|7667344 +overachieve|7667390 +overachievement|7667422 +overachiever|7667459 +overact|7667504 +overacting|7667570 +overactive|7667635 +overactivity|7667674 +overage|7667749 +overaged|7667807 +overall|7667865 +overambitious|7667983 +overanxiety|7668016 +overanxious|7668057 +overappraisal|7668087 +overarch|7668182 +overarm|7668257 +overawe|7668304 +overawed|7668329 +overbalance|7668384 +overbear|7668503 +overbearing|7668618 +overbearingness|7668677 +overbid|7668788 +overbite|7668884 +overblown|7668915 +overboil|7669004 +overbold|7669049 +overburden|7669120 +overburdened|7669262 +overbusy|7669329 +overcall|7669352 +overcapitalisation|7669390 +overcapitalise|7669467 +overcapitalization|7669616 +overcapitalize|7669693 +overcareful|7669842 +overcast|7669883 +overcasting|7670178 +overcautious|7670215 +overcharge|7670246 +overclothe|7670401 +overclothes|7670505 +overcloud|7670578 +overcoat|7670665 +overcoating|7670738 +overcome|7670781 +overcomer|7671136 +overcompensate|7671196 +overcompensation|7671350 +overconfidence|7671409 +overconfident|7671466 +overcook|7671517 +overcredulity|7671540 +overcredulous|7671573 +overcritical|7671606 +overcrop|7671651 +overcrossing|7671703 +overcrowd|7671766 +overcultivate|7671824 +overcup oak|7671876 +overcurious|7671925 +overdelicate|7671954 +overdo|7671985 +overdone|7672020 +overdose|7672086 +overdraft|7672119 +overdraft credit|7672178 +overdramatise|7672282 +overdramatize|7672339 +overdraw|7672396 +overdress|7672531 +overdressed|7672781 +overdrive|7672815 +overdue|7672955 +overeager|7672992 +overeat|7673017 +overeating|7673170 +overemotional|7673226 +overemphasis|7673259 +overemphasise|7673300 +overemphasize|7673417 +overenthusiastic|7673534 +overestimate|7673573 +overestimation|7673802 +overexcited|7673981 +overexert|7674010 +overexert oneself|7674035 +overexertion|7674095 +overexploit|7674160 +overexploitation|7674193 +overexpose|7674284 +overexposure|7674325 +overextend|7674372 +overfamiliar|7674417 +overfatigue|7674447 +overfed|7674574 +overfeed|7674601 +overfeeding|7674629 +overfill|7674671 +overflight|7674712 +overflow|7674746 +overflow incontinence|7674930 +overflowing|7674991 +overfly|7675086 +overfond|7675137 +overfull|7675162 +overgarment|7675193 +overgeneralise|7675236 +overgeneralize|7675315 +overgenerous|7675394 +overgorge|7675496 +overgreedy|7675649 +overgrow|7675691 +overgrown|7675769 +overgrowth|7675810 +overhand|7675910 +overhand knot|7676004 +overhand stitch|7676032 +overhanded|7676064 +overhang|7676111 +overhasty|7676205 +overhaul|7676274 +overhead|7676459 +overhead projector|7676793 +overhead railway|7676831 +overhear|7676954 +overheat|7676991 +overheated|7677049 +overheating|7677073 +overindulge|7677110 +overindulgence|7677263 +overjealous|7677334 +overjoyed|7677386 +overkill|7677412 +overladen|7677503 +overland|7677538 +overlap|7677561 +overlapping|7677790 +overlarge|7677961 +overlay|7677996 +overlayer|7678153 +overleap|7678238 +overlie|7678369 +overload|7678410 +overloaded|7678573 +overlook|7678608 +overlooked|7678830 +overlooking|7678877 +overlord|7678925 +overlordship|7678968 +overly|7679045 +overlying|7679087 +overmantel|7679131 +overmaster|7679157 +overmodest|7679240 +overmuch|7679278 +overmuchness|7679399 +overnice|7679493 +overnight|7679551 +overnight bag|7679585 +overnight case|7679667 +overnighter|7679749 +overpass|7679844 +overpay|7679890 +overpayment|7679911 +overplay|7679975 +overplus|7680041 +overpopulate|7680130 +overpopulation|7680221 +overpower|7680266 +overpowered|7680456 +overpowering|7680548 +overpoweringly|7680607 +overpraise|7680658 +overpressure|7680696 +overprice|7680752 +overpriced|7680777 +overprint|7680807 +overproduce|7680873 +overproduction|7680945 +overprotect|7680988 +overprotection|7681051 +overprotective|7681107 +overproud|7681142 +overrate|7681167 +overrating|7681207 +overreach|7681308 +overreaching|7681461 +overreact|7681497 +overreaction|7681530 +overreckoning|7681570 +overrefine|7681671 +overrefined|7681732 +overrefinement|7681771 +override|7681866 +overriding|7682102 +overripe|7682193 +overrule|7682223 +overrun|7682289 +oversea|7682546 +overseas|7682591 +overseas cap|7682698 +overseas telegram|7682737 +oversee|7682794 +overseer|7682864 +oversensitive|7682908 +oversensitiveness|7682941 +overserious|7682994 +oversew|7683023 +oversewn|7683049 +oversexed|7683098 +overshadow|7683135 +overshielding|7683306 +overshoe|7683362 +overshoot|7683398 +overshot|7683514 +oversight|7683543 +oversimplification|7683685 +oversimplified|7683750 +oversimplify|7683792 +oversize|7683848 +oversized|7683899 +overskirt|7683950 +oversolicitous|7683975 +overspecialise|7684009 +overspecialize|7684089 +overspend|7684169 +overspill|7684229 +overspread|7684310 +overstate|7684350 +overstated|7684446 +overstatement|7684498 +overstay|7684583 +overstep|7684625 +overstock|7684754 +overstrain|7684786 +overstress|7684845 +overstretch|7684962 +overstrung|7685001 +overstuff|7685119 +overstuffed|7685144 +overstuffed chair|7685170 +oversubscribed|7685230 +oversupply|7685259 +oversuspicious|7685391 +overt|7685427 +overt operation|7685544 +overtake|7685627 +overtaking|7685842 +overtax|7685881 +overthrow|7685902 +overthrust fault|7686094 +overtime|7686162 +overtime period|7686242 +overtire|7686287 +overtolerance|7686414 +overtone|7686462 +overtop|7686559 +overtrump|7686606 +overture|7686636 +overturn|7686778 +overturned|7687218 +overuse|7687260 +overutilisation|7687401 +overutilization|7687492 +overvaliant|7687583 +overvaluation|7687609 +overvalue|7687739 +overview|7687777 +overweary|7687803 +overweening|7687930 +overweight|7688019 +overwhelm|7688112 +overwhelmed|7688387 +overwhelming|7688479 +overwhelmingly|7688563 +overwork|7688614 +overworking|7688722 +overwrite|7688770 +overwrought|7688795 +overzealous|7688836 +ovibos|7688892 +ovibos moschatus|7688941 +ovid|7689009 +oviduct|7689054 +oviedo|7689142 +oviform|7689194 +ovimbundu|7689275 +ovine|7689331 +oviparous|7689351 +ovipositor|7689387 +oviraptorid|7689413 +ovis|7689445 +ovis ammon|7689488 +ovis aries|7689543 +ovis canadensis|7689595 +ovis montana dalli|7689726 +ovis musimon|7689820 +ovis poli|7689887 +ovis vignei|7689963 +ovocon|7690013 +ovoflavin|7690149 +ovoid|7690293 +ovolo|7690387 +ovotestis|7690439 +ovoviviparous|7690474 +ovral|7690511 +ovrette|7690645 +ovular|7690783 +ovulate|7690834 +ovulation|7690881 +ovulation method|7690935 +ovulation method of family planning|7691021 +ovule|7691107 +ovulen|7691166 +ovum|7691302 +owe|7691332 +owed|7691393 +owen|7691569 +owen glendower|7691744 +owen wister|7691824 +owens|7691878 +owensboro|7692114 +owing|7692148 +owl|7692216 +owlclaws|7692301 +owlet|7692366 +owlet moth|7692422 +owlish|7692468 +owlt|7692489 +own|7692540 +own goal|7692586 +own right|7692609 +owned|7692640 +owner|7692682 +owner-driver|7692805 +owner-occupied|7692834 +owner-occupier|7692868 +ownerless|7692919 +ownership|7692946 +ox|7693013 +ox-eyed|7693080 +ox-eyed daisy|7693102 +oxacillin|7693226 +oxalacetate|7693280 +oxalacetic acid|7693319 +oxalate|7693366 +oxalic acid|7693388 +oxalidaceae|7693431 +oxalis|7693521 +oxalis acetosella|7693578 +oxalis caprina|7693690 +oxalis cernua|7693777 +oxalis corniculata|7693889 +oxalis crenata|7693999 +oxalis pes-caprae|7694088 +oxalis tuberosa|7694204 +oxalis violacea|7694294 +oxaloacetate|7694380 +oxaloacetic acid|7694419 +oxandra|7694466 +oxandra lanceolata|7694527 +oxaprozin|7694604 +oxazepam|7694703 +oxblood red|7694830 +oxbow|7694860 +oxbow lake|7694973 +oxbridge|7694998 +oxcart|7695036 +oxen|7695057 +oxeye|7695169 +oxeye daisy|7695268 +oxford|7695468 +oxford english|7695682 +oxford english dictionary|7695746 +oxford gray|7695840 +oxford grey|7695938 +oxford movement|7696036 +oxford university|7696096 +oxford-gray|7695594 +oxford-grey|7695638 +oxheart|7696159 +oxheart cherry|7696291 +oxidant|7696416 +oxidase|7696482 +oxidate|7696506 +oxidation|7696596 +oxidation number|7696792 +oxidation state|7696841 +oxidation-reduction|7696666 +oxidation-reduction indicator|7696743 +oxidative|7696890 +oxidative phosphorylation|7696940 +oxide|7697010 +oxidisation|7697052 +oxidise|7697122 +oxidised|7697212 +oxidiser|7697265 +oxidizable|7697331 +oxidization|7697360 +oxidize|7697430 +oxidized|7697520 +oxidized ldl cholesterol|7697573 +oxidizer|7697648 +oxidizing agent|7697714 +oxidoreductase|7697780 +oxidoreduction|7697811 +oxime|7697888 +oximeter|7697920 +oxlip|7697993 +oxonian|7698048 +oxtail|7698156 +oxtail soup|7698177 +oxtant|7698203 +oxtongue|7698232 +oxyacetylene|7698308 +oxyacetylene torch|7698352 +oxyacid|7698405 +oxybelis|7698439 +oxybenzene|7698495 +oxybutyric acid|7698626 +oxycephaly|7698698 +oxydendrum|7698823 +oxydendrum arboreum|7698893 +oxygen|7699002 +oxygen acid|7699065 +oxygen debt|7699099 +oxygen deficit|7699164 +oxygen mask|7699215 +oxygenase|7699302 +oxygenate|7699336 +oxygenated|7699396 +oxygenation|7699435 +oxygenise|7699503 +oxygenize|7699631 +oxyhaemoglobin|7699759 +oxyhemoglobin|7699823 +oxylebius|7699887 +oxylebius pictus|7699943 +oxymoron|7700039 +oxyopia|7700093 +oxyphenbutazone|7700149 +oxyphencyclimine|7700225 +oxytetracycline|7700296 +oxytetracycline hydrochloride|7700409 +oxytocic|7700522 +oxytocic drug|7700600 +oxytocin|7700678 +oxytone|7700741 +oxytropis|7700763 +oxytropis lambertii|7700826 +oxyura|7700933 +oxyura jamaicensis|7700980 +oxyuranus|7701043 +oxyuranus scutellatus|7701102 +oxyuridae|7701182 +oyabun|7701240 +oyster|7701267 +oyster agaric|7701640 +oyster bank|7701720 +oyster bar|7701779 +oyster bed|7701803 +oyster catcher|7701862 +oyster crab|7702018 +oyster cracker|7702068 +oyster dressing|7702100 +oyster fish|7702159 +oyster fungus|7702386 +oyster mushroom|7702466 +oyster park|7702546 +oyster plant|7702605 +oyster shell|7702749 +oyster stew|7702777 +oyster stuffing|7702803 +oyster-fish|7701413 +oystercatcher|7702862 +oysterfish|7702937 +oysters rockefeller|7703002 +oz.|7703065 +ozaena|7703101 +ozark chinkapin|7703131 +ozark chinquapin|7703243 +ozark mountains|7703356 +ozark plateau|7703498 +ozark sundrops|7703638 +ozarks|7703733 +ozawa|7703866 +ozena|7703933 +ozocerite|7703963 +ozokerite|7704031 +ozone|7704099 +ozone hole|7704118 +ozone layer|7704143 +ozone sickness|7704182 +ozonide|7704241 +ozonium|7704285 +ozonosphere|7704337 +ozothamnus|7704376 +ozothamnus secundiflorus|7704444 +p|7704580 +p-n junction|7704785 +p-n-p transistor|7704706 +p-type semiconductor|7704824 +p. g. wodehouse|7704908 +p. p. von mauser|7705000 +p. t. barnum|7705127 +p.a.|7705219 +p.a. system|7705585 +p.e.|7705760 +p.m.|7705875 +p.o.|7706107 +p/e ratio|7706340 +pa|7706399 +pa system|7706754 +pa'anga|7706716 +paba|7706846 +pabir|7706893 +pablo casals|7706931 +pablo neruda|7706981 +pablo picasso|7707056 +pablum|7707149 +pabulum|7707205 +pac|7707333 +pac-man strategy|7707398 +paca|7707460 +pace|7707518 +pace car|7707807 +pace lap|7707862 +pacemaker|7707899 +pacer|7708142 +pacesetter|7708236 +pacha|7708355 +pachinko|7708386 +pachisi|7708425 +pachouli|7708453 +pachuco|7708563 +pachycephala|7708610 +pachycephalosaur|7708675 +pachycephalosaurus|7708741 +pachycheilia|7708807 +pachyderm|7708871 +pachyderma|7708944 +pachydermal|7709163 +pachydermatous|7709277 +pachydermic|7709441 +pachydermous|7709555 +pachyrhizus|7709669 +pachyrhizus erosus|7709738 +pachyrhizus tuberosus|7709799 +pachysandra|7709878 +pachysandra procumbens|7709918 +pachysandra terminalis|7710028 +pachytene|7710111 +pacific|7710142 +pacific bonito|7710249 +pacific bottlenose dolphin|7710311 +pacific coast|7710440 +pacific cod|7710511 +pacific giant salamander|7710587 +pacific halibut|7710677 +pacific hemlock|7710780 +pacific herring|7710896 +pacific newt|7710986 +pacific northwest|7711033 +pacific ocean|7711150 +pacific plum|7711201 +pacific ridley|7711281 +pacific sardine|7711362 +pacific silver fir|7711458 +pacific spiny dogfish|7711584 +pacific standard time|7711668 +pacific sturgeon|7711774 +pacific time|7711885 +pacific tree toad|7711982 +pacific tripletail|7712070 +pacific walrus|7712146 +pacific yew|7712230 +pacifically|7712311 +pacification|7712341 +pacificist|7712492 +pacifier|7712544 +pacifism|7712717 +pacifist|7712822 +pacifistic|7712908 +pacify|7712953 +pacifying|7713134 +pacing|7713191 +pacinian corpuscle|7713238 +pack|7713308 +pack animal|7714118 +pack ice|7714170 +pack of cards|7714201 +pack on|7714248 +pack rat|7714277 +pack riding|7714443 +pack tent|7714488 +pack together|7714549 +package|7714609 +package bomb|7714816 +package holiday|7714867 +package store|7714918 +package tour|7714977 +packaged|7715028 +packaged goods|7715077 +packaging|7715119 +packaging company|7715294 +packaging concern|7715347 +packed|7715400 +packed cell volume|7715459 +packed cells|7715516 +packer|7715575 +packera|7715724 +packera aurea|7715783 +packet|7715889 +packet boat|7716054 +packhorse|7716106 +packing|7716155 +packing box|7716293 +packing case|7716361 +packing material|7716401 +packing needle|7716458 +packing nut|7716489 +packing plant|7716527 +packinghouse|7716592 +packman|7716681 +packrat|7716770 +packsack|7716896 +packsaddle|7716965 +packthread|7716992 +pact|7717025 +pad|7717071 +pad of paper|7717681 +padauk|7717720 +padda|7717776 +padda oryzivora|7717820 +padded|7717925 +padder|7717965 +padding|7718031 +paddle|7718077 +paddle box|7718508 +paddle steamer|7718629 +paddle wheel|7718686 +paddle-box|7718330 +paddle-wheeler|7718451 +paddlefish|7718807 +paddler|7718873 +paddlewheel|7718923 +paddock|7718963 +paddy|7718984 +paddy field|7719074 +paddy wagon|7719118 +paddymelon|7719198 +pademelon|7719251 +paderewski|7719304 +padlock|7719428 +padouk|7719462 +padova|7719518 +padre|7719585 +padrone|7719673 +padua|7719730 +paducah|7719796 +paean|7719826 +paederast|7719925 +paederastic|7720003 +paederasty|7720046 +paediatric|7720149 +paediatrician|7720205 +paediatrics|7720294 +paedophile|7720372 +paedophilia|7720437 +paella|7720480 +paeonia|7720501 +paeoniaceae|7720562 +paeony|7720650 +pagad|7720679 +pagan|7720811 +pagan religion|7720915 +paganini|7720991 +paganise|7721053 +paganism|7721100 +paganize|7721176 +page|7721223 +page number|7721607 +page printer|7721659 +page-at-a-time printer|7721537 +pageant|7721729 +pageantry|7721839 +pageboy|7721947 +pagellus|7722028 +pagellus centrodontus|7722081 +pager|7722169 +paget|7722209 +paget's disease|7722272 +paginate|7722341 +pagination|7722379 +paging|7722431 +pago pago|7722513 +pagoda|7722559 +pagoda tree|7722582 +pagophila|7722722 +pagophila eburnea|7722778 +pagophilus|7722856 +pagophilus groenlandicus|7722917 +pagrus|7723019 +pagrus pagrus|7723066 +paguridae|7723119 +pagurus|7723182 +pahautea|7723237 +pahlavi|7723307 +pahlevi|7723476 +pahoehoe|7723583 +paid|7723606 +paid vacation|7723894 +paid-up|7723872 +paige|7723934 +paigle|7724015 +pail|7724116 +pailful|7724172 +paillasse|7724207 +pain|7724245 +pain in the ass|7724688 +pain in the neck|7724793 +pain pill|7724957 +pain threshold|7725051 +pain unit|7725094 +pain-free|7724650 +paine|7725138 +pained|7725286 +painful|7725322 +painful sensation|7725775 +painfully|7725864 +painfulness|7725909 +painkiller|7725943 +painless|7726037 +pains|7726119 +painstaking|7726520 +painstakingly|7726574 +painstakingness|7726609 +paint|7726664 +paint a picture|7726879 +paint leaf|7726938 +paint roller|7727019 +paint the lily|7727048 +paintable|7727160 +paintball|7727189 +paintball gun|7727236 +paintbox|7727299 +paintbrush|7727321 +painted|7727366 +painted beauty|7727790 +painted cup|7727910 +painted daisy|7727972 +painted desert|7728056 +painted greenling|7728102 +painted leaf|7728181 +painted nettle|7728383 +painted sandgrouse|7728504 +painted terrapin|7728573 +painted tongue|7728654 +painted tortoise|7728712 +painted turtle|7728793 +painted-leaf begonia|7727696 +painter|7728874 +painter's colic|7729037 +painterly|7729096 +painting|7729157 +pair|7729335 +pair creation|7729690 +pair formation|7729791 +pair of pincers|7729892 +pair of pliers|7729959 +pair of scissors|7730022 +pair of tongs|7730082 +pair of tweezers|7730118 +pair of virginals|7730185 +pair off|7730241 +pair production|7730295 +paired|7730396 +pairing|7730455 +paisa|7730584 +paisley|7730632 +paiute|7730679 +paiwanic|7730802 +pajamas|7730838 +pakchoi|7730929 +pakistan|7731037 +pakistani|7731134 +pakistani monetary unit|7731220 +pakistani rupee|7731291 +pal|7731362 +pal up|7731447 +palace|7731484 +palace car|7731643 +palace of versailles|7731742 +paladin|7731811 +palaeencephalon|7731887 +palaemon|7731960 +palaemon australis|7732018 +palaemonidae|7732101 +palaeoanthropology|7732173 +palaeobiology|7732295 +palaeobotany|7732397 +palaeoclimatology|7732475 +palaeodendrology|7732542 +palaeoecology|7732609 +palaeoethnography|7732685 +palaeogeography|7732752 +palaeogeology|7732815 +palaeolithic|7732859 +palaeology|7733008 +palaeontological|7733061 +palaeontologist|7733116 +palaeontology|7733191 +palaeopathology|7733253 +palaeornithology|7733326 +palaeozoology|7733395 +palaestra|7733485 +palaetiology|7733561 +palaic|7733618 +palankeen|7733670 +palanquin|7733706 +palaquium|7733742 +palaquium gutta|7733818 +palas|7733882 +palatability|7733943 +palatable|7733994 +palatableness|7734080 +palatal|7734131 +palatalise|7734223 +palatalised|7734307 +palatalize|7734353 +palatalized|7734437 +palate|7734483 +palatial|7734525 +palatinate|7734570 +palatine|7734656 +palatine artery|7734844 +palatine bone|7734923 +palatine raphe|7734976 +palatine tonsil|7735013 +palatine vein|7735102 +palatoglossal|7735169 +palatopharyngoplasty|7735217 +palau|7735355 +palau islands|7735467 +palaver|7735534 +pale|7735907 +pale ale|7736123 +pale chrysanthemum aphid|7736145 +pale coral root|7736188 +pale violet|7736262 +pale yellow|7736332 +paleacrita|7736377 +paleacrita vernata|7736441 +paleencephalon|7736513 +paleface|7736586 +palely|7736633 +paleness|7736663 +paleo-american|7736841 +paleo-american culture|7736963 +paleo-amerind|7737095 +paleo-amerind culture|7737216 +paleo-indian|7737347 +paleo-indian culture|7737467 +paleoanthropological|7737597 +paleoanthropology|7737663 +paleobiology|7737785 +paleobotany|7737887 +paleocene|7737965 +paleocene epoch|7738016 +paleocerebellum|7738073 +paleoclimatology|7738115 +paleocortex|7738182 +paleocortical|7738263 +paleodendrology|7738332 +paleoecology|7738399 +paleoencephalon|7738475 +paleoethnography|7738548 +paleogeography|7738615 +paleogeology|7738678 +paleography|7738722 +paleolith|7738766 +paleolithic|7738790 +paleolithic age|7738939 +paleology|7739039 +paleomammalogy|7739092 +paleontological|7739143 +paleontologist|7739198 +paleontology|7739273 +paleopathology|7739335 +paleornithology|7739408 +paleostriatum|7739477 +paleozoic|7739540 +paleozoic era|7739602 +paleozoology|7739668 +palermo|7739758 +palestine|7739817 +palestine authority|7739984 +palestine islamic jihad|7740108 +palestine liberation front|7740309 +palestine liberation organization|7740483 +palestine national authority|7740583 +palestinian|7740716 +palestinian arab|7740854 +palestinian hizballah|7740922 +palestinian islamic jihad|7741049 +palestinian national authority|7741252 +palestra|7741387 +palestrina|7741463 +paletiology|7741536 +palette|7741593 +palette knife|7741755 +palfrey|7741786 +palgrave|7741835 +pali|7741891 +palilalia|7741918 +palimony|7741947 +palimpsest|7741981 +palindrome|7742022 +paling|7742047 +palingenesis|7742090 +palingenetic|7742186 +palinuridae|7742280 +palinurus|7742349 +palisade|7742410 +palish|7742495 +paliurus|7742531 +paliurus spina-christi|7742604 +pall|7742701 +pall mall|7743235 +pall-mall|7743187 +palladian|7743293 +palladio|7743340 +palladium|7743402 +pallas|7743464 +pallas athena|7743721 +pallas athene|7743805 +pallas's cat|7743587 +pallas's sandgrouse|7743648 +pallasite|7743889 +pallbearer|7743918 +pallet|7743979 +pallette|7744111 +palliasse|7744201 +palliate|7744239 +palliation|7744410 +palliative|7744535 +pallid|7744670 +pallid bat|7744770 +pallidly|7744850 +pallidness|7744880 +pallidum|7744998 +pallium|7745061 +pallone|7745195 +pallor|7745223 +pally|7745341 +palm|7745390 +palm beach|7745613 +palm cat|7745649 +palm civet|7745694 +palm family|7745739 +palm kernel|7745867 +palm nut|7745901 +palm off|7745935 +palm oil|7745976 +palm reading|7746012 +palm sunday|7746116 +palm tree|7746168 +palm-shaped|7745575 +palma christ|7746197 +palma christi|7746296 +palmaceae|7746395 +palmae|7746533 +palmales|7746668 +palmar|7746722 +palmate|7746767 +palmate leaf|7746819 +palmatifid|7746855 +palmature|7746884 +palmer|7746945 +palmer peninsula|7747031 +palmetto|7747104 +palmetto state|7747131 +palmist|7747203 +palmister|7747271 +palmistry|7747339 +palmitic acid|7747443 +palmitin|7747505 +palmlike|7747538 +palmy|7747567 +palmyra|7747652 +palmyra palm|7747752 +palo alto|7747852 +palo santo|7747886 +palo verde|7747959 +palometa|7748051 +palometa simillima|7748145 +palomino|7748258 +palooka|7748297 +paloverde|7748340 +palpability|7748370 +palpable|7748454 +palpate|7748541 +palpation|7748569 +palpatory|7748644 +palpebra|7748698 +palpebra conjunctiva|7748743 +palpebrate|7748846 +palpebration|7748917 +palpitant|7748999 +palpitate|7749039 +palpitating|7749132 +palpitation|7749172 +palsgrave|7749270 +palsied|7749318 +palsy|7749344 +palsy-walsy|7749433 +palter|7749482 +paltering|7749573 +paltriness|7749632 +paltry|7749676 +pamelor|7749769 +pamlico|7749873 +pampas|7749975 +pampas grass|7750063 +pamper|7750111 +pampered|7750209 +pamperer|7750248 +pampering|7750348 +pamphlet|7750428 +pamphleteer|7750505 +pan|7750540 +pan american day|7750980 +pan american union|7751036 +pan gravy|7751108 +pan off|7751133 +pan out|7751167 +pan paniscus|7751272 +pan roast|7751364 +pan troglodytes|7751389 +pan troglodytes schweinfurthii|7751464 +pan troglodytes troglodytes|7751587 +pan troglodytes verus|7751704 +pan-broil|7750787 +pan-fry|7750823 +pan-hellenic|7750844 +panacea|7751809 +panache|7751864 +panadol|7751925 +panama|7752046 +panama canal|7752218 +panama canal zone|7752272 +panama city|7752333 +panama hat|7752473 +panama redwood|7752567 +panama redwood tree|7752687 +panama tree|7752779 +panamanian|7752840 +panamanian capital|7752954 +panamanian monetary unit|7753048 +panamica|7753121 +panamiga|7753190 +panatela|7753259 +panax|7753302 +panax ginseng|7753353 +panax pseudoginseng|7753464 +panax quinquefolius|7753581 +panax schinseng|7753674 +pancake|7753787 +pancake batter|7753893 +pancake day|7753924 +pancake turner|7753990 +pancake turtle|7754033 +pancarditis|7754084 +panchayat|7754114 +panchayet|7754161 +panchen lama|7754208 +pancho villa|7754248 +panchromatic film|7754369 +pancreas|7754419 +pancreatectomy|7754463 +pancreatic|7754529 +pancreatic artery|7754574 +pancreatic cancer|7754658 +pancreatic duct|7754695 +pancreatic fibrosis|7754755 +pancreatic juice|7754900 +pancreatic vein|7754958 +pancreatin|7755031 +pancreatitis|7755068 +pancytopenia|7755117 +panda|7755149 +panda bear|7755304 +panda car|7755385 +pandanaceae|7755469 +pandanales|7755571 +pandanus|7755631 +pandanus tectorius|7755700 +pandar|7755794 +pandean pipe|7755875 +pandemic|7755933 +pandemonium|7755991 +pander|7756066 +panderer|7756240 +pandiculation|7756339 +pandion|7756414 +pandion haliaetus|7756464 +pandionidae|7756552 +pandora|7756616 +pandora's box|7756656 +pandowdy|7756699 +pandurate|7756730 +pandurate leaf|7756795 +panduriform|7756848 +panduriform leaf|7756913 +pane|7756966 +pane of glass|7757214 +panegyric|7757279 +panegyrical|7757410 +panegyrist|7757478 +panel|7757565 +panel discussion|7757880 +panel heating|7757936 +panel light|7758001 +panel truck|7758041 +paneled|7758094 +paneling|7758140 +panelist|7758179 +panelling|7758214 +panellist|7758253 +panencephalitis|7758288 +panetela|7758347 +panetella|7758390 +panfish|7758433 +pang|7758455 +panga|7758535 +pangaea|7758572 +pangea|7758614 +pangloss|7758655 +pango pango|7758733 +pangolin|7758781 +panhandle|7758877 +panhandler|7759012 +panhellenic|7759049 +panhysterectomy|7759104 +panic|7759163 +panic attack|7759459 +panic button|7759511 +panic disorder|7759557 +panic grass|7759598 +panic-stricken|7759295 +panic-struck|7759377 +panicked|7759626 +panicky|7759708 +panicle|7759790 +panicled|7759814 +panicled aster|7759838 +paniculate|7759868 +panicum|7759894 +panicum capillare|7759963 +panicum miliaceum|7760087 +panicum texanum|7760172 +panicum virgatum|7760250 +panini|7760318 +panipat|7760365 +panjabi|7760423 +panjandrum|7760515 +pannier|7760640 +pannikin|7760683 +panocha|7760705 +panoche|7760752 +panofsky|7760799 +panonychus|7760855 +panonychus ulmi|7760919 +panoplied|7761011 +panoply|7761082 +panoptic|7761105 +panoptical|7761265 +panopticon|7761310 +panorama|7761362 +panoramic|7761490 +panoramic sight|7761531 +panoramic view|7761575 +panorpidae|7761641 +panpipe|7761697 +pansa|7761755 +pansexual|7761801 +pansinusitis|7761873 +pansy|7761905 +pansy orchid|7762086 +pansy violet|7762134 +pant|7762222 +pant leg|7762389 +pant-hoot|7762365 +pantaloon|7762423 +pantalooned|7762556 +pantechnicon|7762609 +pantheism|7762642 +pantheist|7762682 +pantheistic|7762756 +pantheon|7762793 +panther|7762897 +panther cat|7763063 +panther lily|7763114 +panthera|7763172 +panthera leo|7763227 +panthera onca|7763294 +panthera pardus|7763369 +panthera tigris|7763430 +panthera uncia|7763489 +pantie|7763559 +pantile|7763607 +panting|7763642 +pantingly|7763880 +panto|7763908 +pantograph|7763948 +pantomime|7763986 +pantomimer|7764095 +pantomimist|7764188 +pantothen|7764281 +pantothenic acid|7764390 +pantotheria|7764499 +pantropic|7764559 +pantropical|7764601 +pantry|7764643 +pantryman|7764705 +pants|7764742 +pants presser|7764900 +pants suit|7764972 +panty|7765003 +panty girdle|7765051 +pantyhose|7765093 +pantywaist|7765128 +panzer|7765187 +paola caliari|7765289 +paolo veronese|7765361 +pap|7765434 +pap smear|7765571 +pap test|7765666 +papa|7765755 +papa doc|7765831 +papacy|7765904 +papaia|7765962 +papain|7766040 +papal|7766063 +papal bull|7766136 +papal cross|7766194 +papal infallibility|7766221 +papal nuncio|7766284 +papanicolaou smear|7766334 +papanicolaou test|7766438 +paparazzo|7766536 +papaver|7766576 +papaver alpinum|7766637 +papaver argemone|7766698 +papaver californicum|7766761 +papaver heterophyllum|7766832 +papaver nudicaule|7766941 +papaver orientale|7767019 +papaver rhoeas|7767085 +papaver somniferum|7767168 +papaveraceae|7767233 +papaverales|7767324 +papaverine|7767415 +papaw|7767458 +papaw tree|7767567 +papaya|7767649 +papaya family|7767747 +papaya juice|7767822 +papaya tree|7767850 +papeete|7767928 +paper|7767982 +paper bag|7768542 +paper birch|7768587 +paper chain|7768710 +paper chase|7768737 +paper chromatography|7768779 +paper clip|7768824 +paper cup|7768949 +paper currency|7768995 +paper cutter|7769054 +paper doll|7769094 +paper electrophoresis|7769125 +paper fastener|7769237 +paper feed|7769296 +paper flower|7769323 +paper gold|7769380 +paper knife|7769438 +paper loss|7769571 +paper mill|7769608 +paper money|7769673 +paper mulberry|7769732 +paper nautilus|7769814 +paper plant|7769879 +paper plate|7769981 +paper profit|7770008 +paper round|7770035 +paper route|7770089 +paper rush|7770166 +paper tape|7770268 +paper thin|7770294 +paper tiger|7770319 +paper towel|7770374 +paper toweling|7770401 +paper trail|7770431 +paper wasp|7770483 +paper white|7770522 +paper-back book|7768367 +paper-pusher|7768479 +paperback|7770599 +paperback book|7770736 +paperbacked|7770848 +paperbark birch|7770885 +paperboard|7771008 +paperboy|7771081 +paperclip|7771134 +paperer|7771178 +paperhanger|7771246 +paperhanging|7771342 +papering|7771402 +paperknife|7771462 +paperlike|7771514 +papermaking|7771566 +papers|7771599 +paperweight|7772023 +paperwork|7772051 +papery|7772075 +paphiopedilum|7772139 +papier-mache|7772226 +papilionaceae|7772254 +papilionoideae|7772330 +papilla|7772413 +papillary|7772493 +papillary muscle|7772549 +papillary tumor|7772603 +papillary tumour|7772751 +papillate|7772899 +papilledema|7772945 +papilliform|7772994 +papilloma|7773042 +papillon|7773190 +papillose|7773220 +papio|7773276 +papio ursinus|7773322 +papist|7773387 +papistic|7773493 +papistical|7773577 +papoose|7773661 +papoose root|7773704 +papooseroot|7773933 +papovavirus|7774081 +pappa|7774115 +pappataci fever|7774191 +pappoose|7774250 +pappose|7774293 +pappus|7774324 +paprika|7774346 +paprika sauce|7774552 +paprilus|7774597 +paprilus alepidotus|7774650 +papua|7774749 +papua new guinea|7774788 +papuan|7774888 +papuan language|7774971 +papuan monetary unit|7775043 +papule|7775108 +papulovesicle|7775138 +papyrus|7775181 +par|7775336 +par value|7775439 +para|7775489 +para aminobenzoic acid|7775742 +para i|7775784 +para river|7775838 +para rubber|7775882 +para rubber tree|7775946 +parable|7776041 +parabola|7776101 +parabolic|7776139 +parabolic geometry|7776202 +parabolic mirror|7776278 +parabolic reflector|7776345 +parabolical|7776405 +paraboloid|7776466 +paraboloid reflector|7776522 +paraboloidal|7776582 +paracelsus|7776612 +paracentesis|7776764 +paracentral scotoma|7776812 +paracervical block|7776849 +paracheirodon|7776918 +paracheirodon axelrodi|7776986 +parachute|7777088 +parachute jumper|7777160 +parachuter|7777229 +parachuting|7777298 +parachutist|7777332 +paracosm|7777401 +parade|7777458 +parade ground|7777597 +parader|7777678 +paradiddle|7777728 +paradigm|7777769 +paradigmatic|7777934 +paradisaeidae|7778038 +paradisaic|7778108 +paradisaical|7778263 +paradisal|7778416 +paradise|7778572 +paradise flower|7778670 +paradise tree|7778791 +paradisea liliastrum|7778858 +paradisiac|7778947 +paradisiacal|7779102 +paradisial|7779255 +paradox|7779347 +paradoxical|7779401 +paradoxical sleep|7779471 +paradoxurus|7779570 +paraduodenal smear|7779634 +paraesthesia|7779700 +paraffin|7779742 +paraffin oil|7779895 +paraffin scale|7779962 +paraffin wax|7780000 +parafovea|7780035 +paragon|7780066 +paragonite|7780190 +paragraph|7780225 +paragrapher|7780406 +paraguay|7780441 +paraguay tea|7780534 +paraguayan|7780600 +paraguayan monetary unit|7780708 +parainfluenza virus|7780781 +parakeet|7780821 +paralanguage|7780893 +paraldehyde|7780958 +paralegal|7781003 +paraleipsis|7781055 +paralepsis|7781128 +paralichthys|7781201 +paralichthys dentatus|7781266 +paralichthys lethostigmus|7781370 +paralinguistic communication|7781484 +paralipomenon|7781549 +paralipsis|7781646 +paralithodes|7781719 +paralithodes camtschatica|7781789 +parallax|7781912 +parallel|7781949 +parallel bars|7782389 +parallel circuit|7782447 +parallel interface|7782507 +parallel lives|7782564 +parallel of latitude|7782642 +parallel operation|7782712 +parallel port|7782773 +parallel processing|7782830 +parallel-park|7782361 +parallelepiped|7782891 +parallelepipedon|7782970 +parallelism|7783049 +parallelize|7783096 +parallelogram|7783149 +parallelopiped|7783206 +parallelopipedon|7783285 +paralogism|7783364 +paralyse|7783405 +paralysis|7783492 +paralysis agitans|7783541 +paralytic|7783714 +paralytic abasia|7783817 +paralytical|7783850 +paralyze|7783904 +paralyzed|7783991 +paramagnet|7784026 +paramagnetic|7784053 +paramagnetism|7784081 +paramaribo|7784149 +paramecia|7784222 +paramecium|7784348 +paramedic|7784417 +paramedical|7784465 +parameter|7784536 +parametric|7784632 +parametric quantity|7784678 +parametric statistic|7784744 +parametritis|7784784 +paramilitary|7784833 +paramilitary force|7784982 +paramilitary organisation|7785109 +paramilitary organization|7785236 +paramilitary unit|7785363 +paramnesia|7785490 +paramount|7785540 +paramountcy|7785631 +paramour|7785666 +paramyxovirus|7785774 +parana|7785807 +parana river|7785849 +paranasal|7785897 +paranasal sinus|7785942 +parang|7786003 +paranoia|7786025 +paranoiac|7786053 +paranoic type schizophrenia|7786115 +paranoid|7786291 +paranoid schizophrenia|7786367 +paranormal|7786543 +paranthias|7786726 +paranthias furcifer|7786785 +paranthropus|7786854 +paraparesis|7786926 +parapet|7786955 +paraph|7787018 +paraphernalia|7787043 +paraphilia|7787095 +paraphrase|7787144 +paraphrasis|7787281 +paraphrastic|7787344 +paraphrenia|7787374 +paraphrenic schizophrenia|7787550 +paraphysis|7787726 +paraplegia|7787769 +paraplegic|7787805 +parapodium|7787857 +parapraxis|7787904 +paraprofessional|7787964 +parapsychological|7788022 +parapsychologist|7788060 +parapsychology|7788099 +paraquat|7788230 +paraquat poisoning|7788281 +paraquet|7788348 +parasail|7788420 +parasailing|7788454 +parascalops|7788517 +parascalops breweri|7788581 +parashurama|7788666 +parasitaemia|7788704 +parasitaxus|7788767 +parasitaxus ustus|7788835 +parasite|7788909 +parasite yew|7788979 +parasitemia|7789035 +parasitic|7789098 +parasitic jaeger|7789225 +parasitic plant|7789295 +parasitic worm|7789329 +parasitical|7789367 +parasiticidal|7789462 +parasitism|7789533 +parasol|7789595 +parasol mushroom|7789627 +parasympathetic|7789676 +parasympathetic nervous system|7789802 +parasympathomimetic|7789890 +parathelypteris|7789950 +parathelypteris novae-boracensis|7790024 +parathelypteris simulata|7790144 +parathion|7790248 +parathion poisoning|7790293 +parathormone|7790342 +parathyroid|7790421 +parathyroid gland|7790501 +parathyroid hormone|7790581 +paratrooper|7790660 +paratroops|7790694 +paratyphoid|7790728 +paratyphoid fever|7790786 +paraumbilical vein|7790844 +parazoa|7790923 +parazoan|7791024 +parboil|7791072 +parcae|7791101 +parcel|7791136 +parcel bomb|7791567 +parcel of land|7791618 +parcel out|7791757 +parcel post|7791874 +parceled out|7791900 +parceling|7791976 +parcellation|7792079 +parcelling|7792110 +parch|7792213 +parched|7792245 +parcheesi|7792310 +parchment|7792347 +pardner|7792410 +pardon|7792469 +pardonable|7792631 +pardonably|7792712 +pardoner|7792752 +pare|7792884 +pare down|7792989 +paregmenon|7793036 +paregoric|7793074 +parenchyma|7793169 +parent|7793223 +parentage|7793282 +parental|7793507 +parental quality|7793576 +parented|7793610 +parenteral|7793646 +parenthesis|7793700 +parenthesis-free notation|7793835 +parenthetic|7793892 +parenthetical|7794008 +parenthetical expression|7794162 +parenthood|7794218 +parentless|7794258 +parer|7794327 +paresis|7794379 +paresthesia|7794412 +paretic|7794454 +pareto|7794481 +pareve|7794558 +parfait|7794606 +parfait glass|7794638 +parget|7794682 +pargeting|7794747 +pargetry|7794876 +pargetting|7794935 +parheliacal|7795062 +parhelic|7795120 +parhelic circle|7795178 +parhelic ring|7795233 +parhelion|7795288 +pari passu|7795534 +pari-mutuel machine|7795352 +pariah|7795570 +pariah dog|7795642 +paridae|7795695 +paries|7795747 +parietal|7795776 +parietal bone|7795807 +parietal gyrus|7795844 +parietal lobe|7795886 +parietal pericardium|7795914 +parietal placentation|7795967 +parietal pleura|7796011 +parietales|7796043 +parietaria|7796133 +parietaria difussa|7796212 +parieto-occipital fissure|7796328 +parieto-occipital sulcus|7796395 +parietomastoid suture|7796462 +parimutuel|7796521 +paring|7796551 +paring knife|7796621 +paripinnate|7796655 +paris|7796715 +paris daisy|7796855 +paris green|7796985 +paris quadrifolia|7797158 +paris university|7797236 +parish|7797319 +parishioner|7797365 +parisian|7797411 +parisology|7797506 +parity|7797536 +parity bit|7797752 +parity check|7797793 +parjanya|7797893 +parji|7797932 +park|7797971 +park ave.|7798430 +park avenue|7798478 +park bench|7798528 +park commissioner|7798554 +parka|7798594 +parka squirrel|7798647 +parked|7798745 +parker|7798792 +parker house roll|7798973 +parkeriaceae|7799027 +parkersburg|7799094 +parkia|7799156 +parkia javanica|7799210 +parking|7799262 +parking area|7799362 +parking brake|7799414 +parking lot|7799480 +parking meter|7799532 +parking space|7799561 +parking ticket|7799603 +parking zone|7799634 +parkinson|7799676 +parkinson's|7799848 +parkinson's disease|7800033 +parkinson's law|7800226 +parkinson's syndrome|7800356 +parkinsonia|7800550 +parkinsonia aculeata|7800619 +parkinsonia florida|7800707 +parkinsonism|7800791 +parkland|7800977 +parks|7801058 +parkway|7801502 +parky|7801536 +parlance|7801590 +parlay|7801637 +parley|7801696 +parliament|7801756 +parliamentarian|7801874 +parliamentary|7801961 +parliamentary agent|7802080 +parliamentary democracy|7802115 +parliamentary law|7802180 +parliamentary monarchy|7802267 +parliamentary procedure|7802308 +parlor|7802395 +parlor car|7802502 +parlor game|7802601 +parlor grand|7802640 +parlor grand piano|7802761 +parlormaid|7802882 +parlour|7802946 +parlour car|7803052 +parlour game|7803151 +parlour grand|7803190 +parlour grand piano|7803311 +parlourmaid|7803432 +parlous|7803496 +parmelia|7803563 +parmeliaceae|7803618 +parmenides|7803687 +parmesan|7803730 +parnahiba|7803764 +parnaiba|7803808 +parnassia|7803851 +parnassia fimbriata|7803923 +parnassia palustris|7804022 +parnassus|7804109 +parnell|7804177 +parochetus|7804245 +parochetus communis|7804311 +parochial|7804395 +parochial school|7804452 +parochialism|7804509 +parodist|7804560 +parody|7804607 +paroicous|7804831 +parol evidence rule|7804881 +parole|7804927 +parolee|7805138 +paronomasia|7805206 +paronychia|7805263 +parophrys|7805354 +parophrys vitulus|7805410 +paroquet|7805484 +parosamia|7805556 +parotid|7805619 +parotid gland|7805650 +parotid vein|7805688 +parotitis|7805740 +parous|7805786 +parousia|7805831 +paroxetime|7805931 +paroxysm|7806001 +paroxysmal|7806041 +paroxysmal trepidant abasia|7806067 +paroxytone|7806111 +parquet|7806136 +parquet circle|7806229 +parquet floor|7806302 +parqueterie|7806348 +parquetry|7806412 +parr|7806476 +parrakeet|7806552 +parricide|7806624 +parrish|7806705 +parroket|7806782 +parroquet|7806854 +parrot|7806926 +parrot disease|7807160 +parrot fever|7807211 +parrot's beak|7807008 +parrot's bill|7807084 +parrotfish|7807324 +parrotia|7807397 +parrotiopsis|7807451 +parrotlike|7807517 +parry|7807547 +parry manzanita|7807889 +parry's penstemon|7807719 +parry's pinyon|7807804 +pars anterior|7807965 +pars distilis|7808043 +pars intermedia|7808121 +pars nervosa|7808187 +parse|7808312 +parsec|7808373 +parsee|7808411 +parseeism|7808469 +parser|7808531 +parsi|7808601 +parsiism|7808658 +parsimonious|7808719 +parsimoniousness|7808769 +parsimony|7808957 +parsley|7809152 +parsley haw|7809320 +parsley-leaved thorn|7809224 +parsnip|7809416 +parson|7809506 +parson's nose|7809588 +parsonage|7809647 +parsons|7809693 +parsons table|7809826 +part|7809869 +part music|7810857 +part name|7810883 +part of speech|7810915 +part to whole relation|7811001 +part with|7811060 +part-owner|7810656 +part-singing|7810692 +part-time|7810733 +part-timer|7810830 +partake|7811112 +partake in|7811217 +partaker|7811292 +parted|7811329 +parted leaf|7811354 +parterre|7811396 +parthenium|7811490 +parthenium argentatum|7811558 +parthenium hysterophorus|7811638 +parthenium integrifolium|7811719 +parthenocarpy|7811841 +parthenocissus|7811873 +parthenocissus quinquefolia|7811964 +parthenocissus tricuspidata|7812073 +parthenogenesis|7812167 +parthenogenetic|7812281 +parthenogeny|7812362 +parthenon|7812479 +parthenote|7812515 +parthia|7812540 +parthian|7812637 +parti pris|7812883 +parti-color|7812785 +partial|7813032 +partial abortion|7813317 +partial breach|7813407 +partial correlation|7813450 +partial denture|7813516 +partial derivative|7813568 +partial differential equation|7813687 +partial eclipse|7813748 +partial tone|7813793 +partial veil|7813841 +partial verdict|7813896 +partiality|7813945 +partially|7814040 +partialness|7814070 +partible|7814106 +participant|7814134 +participant role|7814190 +participate|7814270 +participating|7814323 +participation|7814362 +participation financing|7814468 +participation loan|7814544 +participatory|7814620 +participial|7814654 +participle|7814702 +particle|7814739 +particle accelerator|7814858 +particle beam|7814935 +particle board|7814981 +particle physics|7815037 +particolored|7815147 +particolored buckeye|7815319 +particoloured|7815395 +particular|7815567 +particular baptist|7815848 +particularisation|7815936 +particularise|7816003 +particularised|7816148 +particularism|7816196 +particularistic|7816264 +particularity|7816333 +particularization|7816364 +particularize|7816431 +particularized|7816576 +particularly|7816624 +particulate|7816714 +particulate matter|7816788 +particulate radiation|7816843 +parting|7816920 +partisan|7817021 +partisanship|7817351 +partition|7817417 +partition off|7817652 +partitioned|7817706 +partitioned off|7817751 +partitioning|7817796 +partitionist|7817939 +partitive|7817999 +partiya karkeran kurdistan|7818085 +partizan|7818271 +partly|7818497 +partner|7818527 +partner in crime|7818835 +partner off|7818915 +partner relation|7818969 +partnership|7819014 +partnership certificate|7819129 +partridge|7819183 +partridge pea|7819334 +partridgeberry|7819455 +parts|7819520 +parts bin|7820148 +parts catalog|7820171 +parts catalogue|7820228 +parts department|7820285 +parts inventory|7820331 +partsong|7820377 +parturiency|7820400 +parturient|7820512 +parturition|7820591 +party|7820675 +party boss|7820993 +party favor|7821074 +party favour|7821151 +party game|7821228 +party girl|7821253 +party line|7821318 +party liner|7821417 +party man|7821489 +party of democratic kampuchea|7821561 +party of god|7821748 +party pooper|7822050 +party spirit|7822138 +party to the action|7822169 +party to the transaction|7822237 +party wall|7822305 +party whip|7822330 +party-spirited|7820951 +partygoer|7822366 +parula|7822420 +parula americana|7822467 +parula warbler|7822572 +parulidae|7822660 +parus|7822718 +parus atricapillus|7822762 +parus bicolor|7822851 +parus caeruleus|7822917 +parus carolinensis|7822987 +parvati|7823063 +parve|7823119 +parvenu|7823167 +parvenue|7823324 +parvis|7823403 +parvo|7823435 +parvovirus|7823474 +pas|7823513 +pas de calais|7823846 +pas de deux|7823929 +pas de quatre|7823991 +pas de trois|7824050 +pas seul|7824108 +pasadena|7824172 +pasang|7824228 +pascal|7824302 +pascal celery|7824633 +pascal compiler|7824678 +pascal's law|7824444 +pascal's law of fluid pressures|7824529 +pasch|7824746 +pascha|7824853 +paschal|7824961 +paschal celery|7824984 +paschal lamb|7825044 +paseo|7825105 +pasha|7825138 +pashto|7825169 +pashtoon|7825245 +pashtu|7825315 +pashtun|7825391 +pasigraphy|7825498 +pasiphae|7825549 +paso doble|7825588 +paspalum|7825690 +paspalum dilatatum|7825758 +paspalum distichum|7825845 +paspalum notatum|7825908 +pasque flower|7825969 +pasqueflower|7826109 +pasquinade|7826168 +pass|7826301 +pass across|7828222 +pass around|7828300 +pass away|7828501 +pass by|7828616 +pass catcher|7828694 +pass completion|7828766 +pass off|7828826 +pass on|7829140 +pass out|7829480 +pass over|7829578 +pass receiver|7829908 +pass through|7829980 +pass up|7830124 +pass water|7830187 +pass with flying colors|7830355 +passable|7830452 +passably|7830636 +passage|7830714 +passageway|7831164 +passamaquody|7831288 +passant|7831344 +passbook|7831384 +passbook savings account|7831418 +passe|7831468 +passe-partout|7831563 +passed ball|7831632 +passee|7831668 +passementerie|7831763 +passenger|7831810 +passenger car|7831854 +passenger pigeon|7831929 +passenger ship|7831985 +passenger train|7832014 +passenger van|7832060 +passer|7832087 +passer domesticus|7832467 +passer montanus|7832563 +passer-by|7832326 +passerby|7832638 +passeres|7832698 +passeridae|7832781 +passeriform bird|7832842 +passeriformes|7832883 +passerina|7832953 +passerina cyanea|7833009 +passerine|7833100 +passero|7833163 +passero cape|7833227 +passiflora|7833296 +passiflora edulis|7833366 +passiflora foetida|7833473 +passiflora incarnata|7833597 +passiflora laurifolia|7833688 +passiflora ligularis|7833812 +passiflora maliformis|7833924 +passiflora mollissima|7834025 +passiflora quadrangularis|7834132 +passifloraceae|7834254 +passim|7834359 +passing|7834385 +passing comment|7834854 +passing game|7834908 +passing note|7834970 +passing play|7835028 +passing shot|7835090 +passing tone|7835119 +passing water|7835177 +passion|7835248 +passion fruit|7835529 +passion of christ|7835565 +passion play|7835647 +passion sunday|7835707 +passion week|7835765 +passionate|7835824 +passionately|7836063 +passionateness|7836105 +passionflower|7836145 +passionflower family|7836192 +passionflower vine|7836282 +passionless|7836329 +passive|7836441 +passive air defense|7836584 +passive immunity|7836625 +passive matrix display|7836669 +passive resistance|7836728 +passive resister|7836804 +passive source|7836882 +passive transport|7836923 +passive trust|7836960 +passive voice|7836989 +passiveness|7837026 +passivism|7837121 +passivity|7837212 +passkey|7837309 +passover|7837362 +passover supper|7837461 +passport|7837515 +password|7837654 +past|7837745 +past master|7838213 +past participle|7838268 +past perfect|7838335 +past perfect tense|7838454 +past progressive|7838573 +past progressive tense|7838695 +past tense|7838817 +past times|7838848 +pasta|7838894 +pasta salad|7838931 +pasta sauce|7838958 +paste|7839001 +paste-up|7839144 +pasteboard|7839174 +pasted|7839222 +pastel|7839252 +pastelike|7839375 +paster|7839421 +pastern|7839506 +pasternak|7839543 +pasteur|7839630 +pasteurellosis|7839702 +pasteurian|7839764 +pasteurisation|7839827 +pasteurise|7839894 +pasteurised|7839942 +pasteurization|7839991 +pasteurize|7840058 +pasteurized|7840106 +pasteurized milk|7840155 +pastiche|7840186 +pasties|7840298 +pastil|7840343 +pastille|7840394 +pastime|7840445 +pastinaca|7840500 +pastinaca sativa|7840635 +pastis|7840708 +pastness|7840740 +pasto|7840765 +pastor|7840802 +pastor roseus|7840925 +pastor sturnus|7841028 +pastoral|7841132 +pastorale|7841428 +pastorate|7841520 +pastorship|7841619 +pastrami|7841704 +pastry|7841733 +pastry cart|7841787 +pastry cook|7841821 +pastry dough|7841847 +pasturage|7841882 +pasture|7841981 +pasture brake|7842161 +pastureland|7842223 +pasturized milk|7842283 +pasty|7842313 +pat|7842448 +pataca|7842590 +patagonia|7842626 +patagonian desert|7842727 +patas|7842779 +patavium|7842855 +patch|7842924 +patch pocket|7843620 +patch test|7843649 +patch up|7843679 +patchboard|7843830 +patchcord|7843908 +patched|7843948 +patchiness|7843994 +patching|7844037 +patchouli|7844105 +patchouly|7844214 +patchwork|7844323 +patchwork quilt|7844435 +patchy|7844491 +pate|7844514 +pate a choux|7844590 +pate de foie gras|7844642 +pate feuillete|7844684 +patella|7844739 +patella vulgata|7844844 +patellar|7844906 +patellar reflex|7844952 +patellidae|7845102 +patency|7845166 +patent|7845256 +patent and trademark office database|7845540 +patent application|7845701 +patent ductus arteriosus|7845741 +patent infringement|7845793 +patent law|7845845 +patent leather|7845900 +patent log|7845932 +patent medicine|7845979 +patent of invention|7846050 +patent office|7846119 +patent right|7846257 +patent system|7846291 +patented|7846327 +patentee|7846357 +patently|7846405 +pater|7846478 +paterfamilias|7846554 +paternal|7846620 +paternal quality|7846761 +paternalism|7846817 +paternalistic|7846863 +paternity|7846895 +paternity suit|7847098 +paternity test|7847172 +paternoster|7847208 +paterson|7847276 +path|7847396 +path of least resistance|7847514 +pathan|7847581 +pathetic|7847687 +pathetic fallacy|7847860 +pathetically|7847907 +pathfinder|7847937 +pathless|7847976 +pathogen|7848066 +pathogenesis|7848131 +pathogenic|7848193 +pathologic|7848244 +pathologic process|7848338 +pathological|7848422 +pathological process|7848545 +pathological state|7848629 +pathologist|7848674 +pathology|7848739 +pathos|7848821 +pathway|7848940 +patience|7849039 +patient|7849126 +patient of|7849407 +patient role|7849444 +patiently|7849519 +patina|7849551 +patinate|7849580 +patinise|7849629 +patinize|7849678 +patio|7849727 +patisserie|7849755 +patka|7849801 +patness|7849822 +patois|7849876 +paton|7849981 +patrai|7850046 +patras|7850110 +patrial|7850174 +patriarch|7850213 +patriarchal|7850389 +patriarchal cross|7850456 +patriarchate|7850489 +patriarchic|7850623 +patriarchy|7850656 +patricentric|7850770 +patrician|7850804 +patricide|7850962 +patrick|7851008 +patrick henry|7851080 +patrick victor martindale white|7851211 +patrick white|7851318 +patrikin|7851407 +patrilineage|7851491 +patrilineal|7851541 +patrilineal kin|7851588 +patrilineal sib|7851672 +patrilinear|7851756 +patrimonial|7851803 +patrimony|7851881 +patriot|7851964 +patriot's day|7852010 +patrioteer|7852051 +patriotic|7852146 +patriotism|7852271 +patrisib|7852311 +patristic|7852395 +patristical|7852471 +patristics|7852547 +patroclus|7852621 +patrol|7852665 +patrol boat|7852753 +patrol car|7852804 +patrol ship|7852915 +patrol wagon|7852966 +patroller|7853046 +patrolman|7853097 +patrology|7853158 +patron|7853233 +patron saint|7853343 +patronage|7853408 +patroness|7853717 +patronise|7853770 +patronised|7853983 +patronising|7854014 +patronisingly|7854075 +patronize|7854127 +patronized|7854340 +patronizing|7854382 +patronizingly|7854443 +patronless|7854495 +patronne|7854551 +patronymic|7854604 +patsy|7854640 +patten|7854719 +patter|7854769 +pattern|7854909 +pattern-bomb|7855383 +patterned|7855418 +patterned advance|7855857 +patternmaker|7855903 +patty|7855938 +patty shell|7856022 +patty-pan|7855987 +pattypan squash|7856058 +patwin|7856169 +patzer|7856223 +paucity|7856252 +paul|7856296 +paul adrien maurice dirac|7856522 +paul bunyan|7856607 +paul bustill robeson|7856733 +paul cezanne|7856903 +paul dukas|7856954 +paul ehrlich|7857000 +paul gauguin|7857058 +paul hermann muller|7857109 +paul heyse|7857173 +paul hindemith|7857253 +paul johann ludwig von heyse|7857345 +paul johannes tillich|7857443 +paul john flory|7857563 +paul joseph goebbels|7857618 +paul klee|7857724 +paul ludwig von beneckendorff und von hindenburg|7857766 +paul mccartney|7857971 +paul newman|7858088 +paul revere|7858171 +paul robeson|7858280 +paul simon|7858442 +paul the apostle|7858548 +paul tillich|7858708 +paul verlaine|7858819 +paul vernier|7858870 +paul von hindenburg|7858927 +pauli|7859103 +pauli exclusion principle|7859157 +pauline|7859256 +pauling|7859315 +paulo afonso|7859381 +paulo afonso falls|7859451 +paumotu archipelago|7859527 +paunch|7859624 +paunchiness|7859678 +paunchy|7859746 +pauper|7859789 +pauperisation|7859835 +pauperise|7859909 +pauperism|7859956 +pauperization|7860051 +pauperize|7860204 +pauropoda|7860251 +pause|7860302 +pavage|7860480 +pavan|7860572 +pavane|7860687 +pavarotti|7860801 +pave|7860854 +paved|7860902 +paved surface|7860938 +pavement|7860986 +pavement artist|7861090 +pavilion|7861132 +paving|7861183 +paving machine|7861297 +paving material|7861344 +paving stone|7861387 +pavior|7861415 +paviour|7861462 +pavis|7861509 +pavise|7861546 +pavlov|7861583 +pavlova|7861653 +pavlovian|7861718 +pavo|7861759 +pavo cristatus|7861826 +pavo muticus|7861899 +pavonia|7861969 +pavor nocturnus|7861997 +paw|7862059 +pawer|7862156 +pawky|7862209 +pawl|7862231 +pawn|7862273 +pawn ticket|7862431 +pawnbroker|7862460 +pawnbroker's shop|7862502 +pawnee|7862561 +pawnshop|7862635 +pawpaw|7862694 +pax|7862871 +pax romana|7862918 +paxil|7862955 +paxto|7863031 +paxton|7863106 +pay|7863180 +pay as you earn|7863810 +pay back|7863868 +pay cash|7863949 +pay claim|7863971 +pay cut|7864008 +pay dirt|7864040 +pay envelope|7864077 +pay for|7864148 +pay heed|7864181 +pay off|7864234 +pay out|7864451 +pay packet|7864481 +pay rate|7864552 +pay up|7864603 +pay-phone|7863688 +pay-station|7863749 +payable|7864635 +payables|7864685 +payback|7864715 +paycheck|7864829 +payday|7864885 +paye|7864905 +payee|7864968 +payena|7865002 +payer|7865069 +paygrade|7865123 +paying|7865183 +paying attention|7865281 +paying back|7865386 +payload|7865440 +paymaster|7865568 +payment|7865605 +payment rate|7865690 +payne's gray|7865781 +paynim|7865838 +payoff|7865884 +payola|7866040 +payroll|7866069 +payroll check|7866205 +payroll department|7866261 +pays de la loire|7866316 +paysheet|7866373 +payslip|7866463 +pb|7866487 +pbs|7866547 +pc|7866661 +pc board|7866725 +pcp|7866790 +pct|7866927 +pd|7866997 +pda|7867062 +pdflp|7867182 +pdl|7867388 +pe|7867420 +pe-tsai|7867483 +pea|7867588 +pea bean|7867855 +pea crab|7867906 +pea family|7867929 +pea flour|7868038 +pea green|7868062 +pea jacket|7868158 +pea plant|7868193 +pea pod|7868240 +pea shooter|7868283 +pea soup|7868330 +pea tree|7868375 +pea weevil|7868413 +pea-chick|7867663 +pea-green|7867793 +pea-souper|7867822 +peabody|7868473 +peace|7868560 +peace advocacy|7868855 +peace corps|7868890 +peace garden state|7868949 +peace initiative|7869027 +peace lily|7869096 +peace march|7869151 +peace of mind|7869186 +peace of westphalia|7869308 +peace offering|7869389 +peace officer|7869441 +peace pipe|7869520 +peace process|7869580 +peace treaty|7869618 +peace-loving|7868814 +peaceable|7869678 +peaceableness|7869743 +peaceably|7869785 +peaceful|7869815 +peacefulness|7870092 +peacekeeper|7870241 +peacekeeping|7870359 +peacekeeping mission|7870489 +peacekeeping operation|7870584 +peacemaker|7870679 +peacenik|7870852 +peacetime|7870904 +peach|7870957 +peach bell|7871653 +peach bells|7871741 +peach blight|7871903 +peach ice cream|7871932 +peach melba|7871967 +peach orchard|7872009 +peach pit|7872065 +peach sauce|7872103 +peach state|7872130 +peach tree|7872215 +peach-leaved willow|7871384 +peach-wood|7871489 +peachick|7872267 +peachleaf willow|7872316 +peachwood|7872421 +peachy|7872504 +peacoat|7872622 +peacock|7872657 +peacock blue|7872869 +peacock butterfly|7872957 +peacock flower|7873078 +peacock flower fence|7873204 +peacock ore|7873311 +peacock-blue|7872806 +peacock-throne|7872838 +peafowl|7873348 +peag|7873387 +peahen|7873441 +peak|7873478 +peak season|7874039 +peak-seaason|7874000 +peaked|7874079 +peaked cap|7874176 +peaky|7874230 +peal|7874269 +pealing|7874343 +pean|7874384 +peanut|7874484 +peanut bar|7874753 +peanut brittle|7874779 +peanut butter|7874824 +peanut gallery|7874860 +peanut oil|7874946 +peanut vine|7874998 +peanut worm|7875067 +peanuts|7875112 +pear|7875430 +pear blight|7875586 +pear haw|7875631 +pear hawthorn|7875730 +pear tree|7875829 +pear-shaped|7875517 +pearl|7875879 +pearl ash|7876324 +pearl bailey|7876363 +pearl barley|7876458 +pearl buck|7876498 +pearl diver|7876594 +pearl fishery|7876654 +pearl harbor|7876693 +pearl hominy|7876757 +pearl mae bailey|7876786 +pearl millet|7876885 +pearl oyster|7876998 +pearl sago|7877050 +pearl sydenstricker buck|7877075 +pearl-fish|7876035 +pearl-weed|7876178 +pearler|7877185 +pearlescent|7877245 +pearlfish|7877312 +pearlite|7877374 +pearlweed|7877409 +pearlwort|7877474 +pearly|7877539 +pearly everlasting|7877705 +pearly nautilus|7877798 +pearly razorfish|7877881 +pearly-shelled mussel|7877600 +pearly-white|7877665 +pearmain|7877953 +pearson product-moment correlation coefficient|7878007 +peary|7878212 +peasant|7878301 +peasant's revolt|7878475 +peasanthood|7878577 +peasantry|7878674 +pease pudding|7878733 +peasecod|7878764 +peat|7878807 +peat bog|7878845 +peat moss|7878875 +peaty|7878931 +peavey|7878969 +peavy|7879006 +peba|7879043 +pebble|7879126 +pebble plant|7879153 +pebbly|7879195 +pecan|7879245 +pecan pie|7879346 +pecan tree|7879369 +peccable|7879440 +peccadillo|7879473 +peccant|7879539 +peccari angulatus|7879572 +peccary|7879693 +peck|7879769 +peck at|7880257 +pecker|7880291 +peckerwood|7880440 +pecking order|7880492 +peckish|7880567 +pecopteris|7880692 +pecos|7880717 +pecos river|7880756 +pecs|7880801 +pecten irradians|7880903 +pecten magellanicus|7880983 +pectic|7881083 +pectic acid|7881108 +pectin|7881134 +pectinate|7881160 +pectineal|7881185 +pectinibranchia|7881211 +pectinidae|7881287 +pectoral|7881351 +pectoral arch|7881514 +pectoral fin|7881558 +pectoral girdle|7881584 +pectoral medallion|7881616 +pectoral muscle|7881663 +pectoral sandpiper|7881765 +pectoral vein|7881832 +pectoralis|7881901 +pectoralis major|7882003 +pectoralis minor|7882140 +pectus|7882277 +peculate|7882316 +peculation|7882385 +peculator|7882503 +peculiar|7882557 +peculiar velocity|7882706 +peculiarity|7882748 +peculiarly|7883008 +pecuniary|7883102 +pecuniary resource|7883164 +pedagogic|7883245 +pedagogical|7883285 +pedagogically|7883325 +pedagogics|7883360 +pedagogue|7883412 +pedagogy|7883473 +pedal|7883631 +pedal extremity|7883817 +pedal point|7883885 +pedal pusher|7883935 +pedaler|7883986 +pedaliaceae|7884018 +pedaller|7884097 +pedant|7884129 +pedantic|7884198 +pedantry|7884243 +pedate|7884281 +pedate leaf|7884320 +peddle|7884354 +peddler|7884418 +peddling|7884608 +pederast|7884684 +pederastic|7884762 +pederasty|7884805 +pedesis|7884908 +pedestal|7884975 +pedestal table|7885067 +pedestrian|7885097 +pedestrian bridge|7885196 +pedestrian crossing|7885259 +pedestrian traffic|7885332 +pediamycin|7885381 +pediapred|7885486 +pediatric|7885592 +pediatric medicine|7885648 +pediatrician|7885726 +pediatrics|7885815 +pediatrist|7885893 +pedicab|7885982 +pedicel|7886040 +pedicle|7886074 +pediculati|7886108 +pediculicide|7886169 +pediculidae|7886201 +pediculosis|7886270 +pediculosis capitis|7886313 +pediculosis corporis|7886374 +pediculosis pubis|7886426 +pediculus|7886481 +pediculus capitis|7886542 +pediculus corporis|7886618 +pediculus humanus|7886703 +pedicure|7886781 +pedigree|7886863 +pedigreed|7887148 +pedilanthus|7887220 +pedilanthus bracteatus|7887289 +pedilanthus pavonis|7887404 +pedilanthus tithymaloides|7887516 +pediment|7887662 +pediocactus|7887707 +pediocactus knowltonii|7887784 +pedioecetes|7887864 +pedioecetes phasianellus|7887926 +pedionomus|7888033 +pedionomus torquatus|7888092 +pedipalpi|7888176 +pedlar|7888256 +pedodontist|7888345 +pedometer|7888407 +pedophile|7888481 +pedophilia|7888546 +pedro calderon de la barca|7888589 +peduncle|7888708 +pedunculate|7888824 +pedunculate oak|7888865 +pedunculated polyp|7888937 +pedwood|7888979 +pee|7889088 +pee dee|7889568 +pee dee river|7889613 +pee-pee|7889400 +peeing|7889664 +peek|7889719 +peekaboo|7889787 +peel|7889825 +peel of|7890132 +peel off|7890172 +peeled|7890394 +peeler|7890516 +peeling|7890662 +peen|7890735 +peep|7890762 +peep sight|7890972 +peeper|7891011 +peephole|7891165 +peeping tom|7891196 +peepshow|7891283 +peepul|7891458 +peer|7891541 +peer group|7891684 +peer of the realm|7891738 +peer review|7891770 +peerage|7891815 +peeress|7891862 +peerless|7891913 +peeve|7892037 +peeved|7892132 +peevish|7892238 +peevishly|7892349 +peevishness|7892391 +peewee|7892590 +peewit|7892756 +peg|7892921 +peg away|7893285 +peg down|7893390 +peg top|7893482 +pegasus|7893535 +pegboard|7893617 +pegged-down|7893651 +pegleg|7893681 +pegmatite|7893745 +pei|7893777 +peignoir|7893837 +peiping|7893898 +peirce|7893976 +peireskia|7894148 +pejorative|7894243 +pekan|7894303 +peke|7894380 +pekinese|7894430 +peking|7894484 +peking man|7894561 +pekingese|7894636 +pekoe|7894734 +pel|7894772 +pelage|7894837 +pelagic|7894863 +pelagic bird|7894907 +pelargonium|7894967 +pelargonium graveolens|7895036 +pelargonium hortorum|7895137 +pelargonium limoneum|7895246 +pelargonium odoratissimum|7895321 +pelargonium peltatum|7895422 +pelecanidae|7895532 +pelecaniform seabird|7895596 +pelecaniformes|7895651 +pelecanoididae|7895724 +pelecanus|7895797 +pelecanus erythrorhynchos|7895853 +pelecanus onocrotalus|7895936 +pelecypod|7896021 +pelecypodous|7896139 +peleus|7896202 +pelew|7896240 +pelf|7896299 +pelham|7896440 +pelham grenville wodehouse|7896467 +pelican|7896570 +pelican crossing|7896608 +pelican state|7896669 +peliosis|7896734 +pelisse|7896789 +pell-mell|7896818 +pellaea|7896879 +pellaea andromedifolia|7896929 +pellaea atropurpurea|7897031 +pellaea mucronata|7897135 +pellaea ornithopus|7897251 +pellaea rotundifolia|7897368 +pellagra|7897436 +pellet|7897560 +pellicle|7897622 +pellicularia|7897651 +pellicularia filamentosa|7897718 +pellicularia koleroga|7897817 +pellitory|7897891 +pellitory-of-spain|7898056 +pellitory-of-the-wall|7898155 +pellucid|7898252 +pellucidity|7898388 +pellucidly|7898554 +pellucidness|7898604 +pelmet|7898690 +pelobatidae|7898760 +peloponnese|7898829 +peloponnesian|7898909 +peloponnesian peninsula|7898955 +peloponnesian war|7899047 +peloponnesus|7899104 +pelota|7899185 +pelt|7899221 +pelt along|7899397 +peltandra|7899528 +peltandra virginica|7899603 +peltate|7899689 +peltate leaf|7899740 +pelter|7899774 +pelting|7899872 +peltiphyllum|7899977 +peltiphyllum peltatum|7900071 +peludo|7900192 +pelvic|7900246 +pelvic arch|7900268 +pelvic cavity|7900321 +pelvic fin|7900371 +pelvic girdle|7900407 +pelvic inflammatory disease|7900460 +pelvimeter|7900522 +pelvimetry|7900597 +pelvis|7900659 +pelycosaur|7900759 +pelycosauria|7900805 +pembroke|7900872 +pembroke welsh corgi|7900938 +pemican|7901016 +pemmican|7901047 +pempheridae|7901078 +pemphigous|7901142 +pemphigus|7901236 +pen|7901330 +pen name|7901788 +pen nib|7901850 +pen pal|7901877 +pen up|7901933 +pen-and-ink|7901504 +pen-friend|7901533 +pen-tail|7901589 +pen-tailed tree shrew|7901729 +penal|7901976 +penal code|7902056 +penal colony|7902087 +penal facility|7902142 +penal institution|7902196 +penalisation|7902250 +penalise|7902319 +penalised|7902353 +penalization|7902397 +penalize|7902466 +penalized|7902500 +penally|7902544 +penalty|7902582 +penalty box|7902702 +penalty free throw|7902729 +penance|7902834 +penchant|7903009 +pencil|7903064 +pencil box|7903186 +pencil case|7903222 +pencil cedar|7903258 +pencil cedar tree|7903323 +pencil eraser|7903371 +pencil lead|7903422 +pencil pusher|7903477 +penciled|7903516 +pencilled|7903548 +pendant|7903580 +pendant earring|7903642 +pending|7903696 +pendragon|7903724 +pendulous|7903774 +pendulum|7903827 +pendulum clock|7903861 +pendulum watch|7903891 +peneidae|7903928 +penelope|7903988 +peneplain|7904072 +peneplane|7904123 +penetrability|7904174 +penetrable|7904237 +penetralia|7904286 +penetrate|7904322 +penetrating|7904710 +penetrating injury|7904839 +penetrating trauma|7904910 +penetratingly|7904981 +penetration|7905017 +penetration bomb|7905319 +penetrative|7905350 +penetratively|7905479 +penetrator|7905515 +peneus|7905566 +pengo|7905618 +penguin|7905694 +penial|7905733 +penicillamine|7905770 +penicillin|7905849 +penicillin f|7906010 +penicillin g|7906056 +penicillin o|7906119 +penicillin v|7906165 +penicillin v potassium|7906236 +penicillin-resistant|7905896 +penicillin-resistant bacteria|7905952 +penicillinase|7906344 +penicillinase-resistant antibiotic|7906389 +penicillium|7906444 +penile|7906508 +penile implant|7906545 +peninsula|7906577 +peninsular|7906648 +penis|7906719 +penis envy|7906764 +penitence|7906824 +penitent|7906896 +penitential|7907020 +penitentially|7907090 +penitentiary|7907135 +penitently|7907211 +penknife|7907256 +penlight|7907299 +penman|7907334 +penmanship|7907378 +penn|7907434 +penn'orth|7907543 +pennant|7907579 +pennate|7907695 +pennatula|7907722 +pennatulidae|7907786 +penne|7907861 +penned|7907899 +penni|7907943 +penniless|7907980 +pennilessness|7908070 +pennine chain|7908155 +pennines|7908207 +penning|7908254 +pennisetum|7908318 +pennisetum americanum|7908396 +pennisetum cenchroides|7908531 +pennisetum glaucum|7908636 +pennisetum ruppelii|7908768 +pennisetum setaceum|7908858 +pennistum villosum|7908948 +pennon|7909029 +pennoncel|7909091 +pennoncelle|7909160 +pennsylvania|7909229 +pennsylvania dutch|7909387 +pennsylvanian|7909469 +pennsylvanian period|7909629 +penny|7909766 +penny ante|7910050 +penny ante poker|7910136 +penny arcade|7910190 +penny bank|7910219 +penny dreadful|7910288 +penny grass|7910329 +penny pincher|7910443 +penny stock|7910474 +penny-pinch|7909839 +penny-pinching|7909894 +penny-wise|7910022 +pennycress|7910543 +pennyroyal|7910568 +pennyroyal oil|7910678 +pennyweight|7910729 +pennywhistle|7910760 +pennyworth|7910851 +penobscot|7910887 +penobscot bay|7910976 +penobscot river|7911017 +penoche|7911074 +penologist|7911121 +penology|7911158 +penoncel|7911198 +penpusher|7911267 +pensacola|7911306 +pension|7911340 +pension account|7911404 +pension fund|7911570 +pension off|7911674 +pension plan|7911943 +pensionable|7912109 +pensionary|7912139 +pensioner|7912212 +pensive|7912260 +pensiveness|7912387 +penstemon|7912483 +penstemon barbatus|7912548 +penstemon centranthifolius|7912641 +penstemon cyananthus|7912742 +penstemon davidsonii|7912839 +penstemon deustus|7912934 +penstemon dolius|7913021 +penstemon fruticosus|7913104 +penstemon linarioides|7913214 +penstemon newberryi|7913312 +penstemon palmeri|7913399 +penstemon parryi|7913500 +penstemon rupicola|7913584 +penstemon rydbergii|7913685 +penstemon serrulatus|7913777 +penstemon whippleanus|7913869 +penstock|7913965 +pent|7914080 +pent-up|7914111 +pentacle|7914148 +pentad|7914181 +pentaerythritol|7914285 +pentagon|7914345 +pentagon gang|7914465 +pentagonal|7914576 +pentagram|7914631 +pentahedron|7914664 +pentail|7914696 +pentamerous|7914755 +pentameter|7914784 +pentamethylenetetrazol|7914821 +pentangular|7914926 +pentanoic acid|7914981 +pentastomid|7915034 +pentastomida|7915077 +pentasyllabic|7915142 +pentateuch|7915174 +pentathlete|7915276 +pentathlon|7915310 +pentatonic|7915378 +pentatonic scale|7915410 +pentavalent|7915449 +pentazocine|7915488 +pentecost|7915555 +pentecostal|7915689 +pentecostal religion|7915801 +pentecostalism|7915881 +pentecostalist|7915919 +penthouse|7915981 +pentimento|7916015 +pentlandite|7916052 +pentobarbital|7916081 +pentobarbital sodium|7916160 +pentode|7916239 +pentose|7916343 +pentothal|7916403 +pentoxide|7916521 +pentoxifylline|7916546 +pentylenetetrazol|7916583 +penuche|7916688 +penuchle|7916735 +penult|7916794 +penultima|7916841 +penultimate|7916888 +penumbra|7916960 +penumbral|7916985 +penurious|7917010 +penuriousness|7917138 +penury|7917241 +penutian|7917336 +peon|7917511 +peonage|7917588 +peony|7917652 +peony family|7917681 +people|7917757 +people against gangsterism and drugs|7919013 +people of color|7919176 +people of colour|7919236 +people's liberation army|7918047 +people's mujahidin of iran|7918265 +people's party|7918441 +people's republic of bangladesh|7918517 +people's republic of china|7918654 +people's republican army|7918795 +peopled|7919296 +peoria|7919323 +pep|7919375 +pep pill|7919442 +pep rally|7919535 +pep talk|7919573 +pep up|7919614 +pepcid|7919758 +peperomia|7919810 +peperomia argyreia|7919851 +peperomia sandersii|7919947 +peplos|7920044 +peplum|7920082 +peplus|7920157 +pepper|7920195 +pepper box|7920569 +pepper bush|7920621 +pepper family|7920713 +pepper grass|7920798 +pepper grinder|7920906 +pepper mill|7920955 +pepper pot|7921004 +pepper root|7921092 +pepper sauce|7921223 +pepper shaker|7921260 +pepper shrub|7921312 +pepper spray|7921385 +pepper steak|7921484 +pepper tree|7921554 +pepper vine|7921648 +pepper-and-salt|7920514 +peppercorn|7921686 +peppercorn rent|7921772 +peppered steak|7921802 +pepperidge|7921860 +pepperiness|7921934 +peppermint|7921987 +peppermint candy|7922156 +peppermint gum|7922209 +peppermint oil|7922310 +peppermint patty|7922393 +pepperoni|7922425 +pepperoni pizza|7922452 +pepperwood|7922493 +pepperwort|7922658 +peppery|7922809 +peppiness|7922852 +peppy|7922919 +pepsi|7922972 +pepsi cola|7923014 +pepsin|7923061 +pepsinogen|7923084 +peptic|7923111 +peptic ulcer|7923161 +peptic ulceration|7923218 +peptidase|7923275 +peptide|7923340 +peptide bond|7923363 +peptide linkage|7923420 +peptisation|7923477 +peptise|7923559 +peptising|7923593 +peptization|7923630 +peptize|7923712 +peptizing|7923746 +pepto-bismal|7923783 +peptone|7923871 +pepys|7923905 +per annum|7923971 +per capita|7924022 +per capita income|7924093 +per centum|7924127 +per diem|7924197 +per se|7924225 +per year|7924279 +peradventure|7924330 +perambulate|7924391 +perambulating|7924455 +perambulation|7924485 +perambulator|7924563 +peramelidae|7924674 +perboric acid|7924740 +perca|7924787 +perca flavescens|7924831 +perca fluviatilis|7924893 +percale|7924959 +perceivable|7925006 +perceive|7925128 +perceived|7925195 +perceiver|7925246 +percent|7925336 +percent sign|7925406 +percentage|7925478 +percentage point|7925581 +percentage sign|7925643 +percentile|7925715 +percept|7925760 +perceptibility|7925871 +perceptible|7925913 +perceptibly|7926124 +perception|7926155 +perceptive|7926420 +perceptiveness|7926686 +perceptivity|7926870 +perceptual|7926927 +perceptual experience|7926963 +perch|7927074 +perchance|7927390 +perched|7927467 +percher|7927507 +perching bird|7927639 +perchlorate|7927711 +perchloric acid|7927737 +perchloride|7927767 +perchloromethane|7927797 +percidae|7927944 +perciformes|7927999 +percina|7928093 +percina tanasi|7928143 +percipient|7928201 +percival lowell|7928238 +percoid|7928319 +percoid fish|7928395 +percoidea|7928471 +percoidean|7928532 +percolate|7928608 +percolation|7928833 +percolator|7928931 +percomorphi|7928961 +percophidae|7929055 +percuss|7929119 +percussion|7929144 +percussion cap|7929268 +percussion instrument|7929324 +percussion section|7929407 +percussionist|7929469 +percussive|7929524 +percussive instrument|7929549 +percussor|7929632 +percutaneous|7929673 +percy|7929765 +percy aldridge grainger|7929872 +percy bysshe shelley|7929993 +percy grainger|7930057 +perdicidae|7930169 +perdicinae|7930265 +perdition|7930361 +perdix|7930462 +perdix perdix|7930509 +perdurability|7930591 +perdurable|7930636 +pere david's deer|7930706 +pere jacques marquette|7930775 +peregrinate|7930879 +peregrination|7930918 +peregrine|7930969 +peregrine falcon|7931078 +perejil|7931138 +peremptorily|7931174 +peremptory|7931208 +perennate|7931330 +perennation|7931402 +perennial|7931458 +perennial pea|7931565 +perennial ragweed|7931653 +perennial ryegrass|7931746 +perennial salt marsh aster|7931825 +pereskia|7931867 +pereskia aculeata|7931961 +perestroika|7932056 +perfect|7932093 +perfect game|7932602 +perfect gas|7932652 +perfect participle|7932687 +perfect tense|7932754 +perfecta|7932819 +perfectability|7932854 +perfected|7932929 +perfecter|7932955 +perfectibility|7933004 +perfectible|7933079 +perfection|7933108 +perfectionism|7933217 +perfectionist|7933264 +perfective|7933298 +perfective aspect|7933395 +perfective tense|7933440 +perfectly|7933505 +perfervid|7933547 +perfidious|7933632 +perfidiousness|7933681 +perfidy|7933734 +perfluorocarbon|7933840 +perfoliate|7933917 +perfoliate leaf|7933957 +perforate|7933994 +perforated|7934137 +perforated eardrum|7934200 +perforating vein|7934271 +perforation|7934344 +perform|7934398 +performance|7934534 +performance bond|7934755 +performance capability|7934815 +performer|7934891 +performing|7934940 +performing artist|7935011 +performing arts|7935060 +perfume|7935136 +perfumed|7935359 +perfumer|7935473 +perfumery|7935504 +perfunctorily|7935627 +perfunctory|7935674 +perfuse|7935751 +perfusion|7935795 +pergamum|7935850 +pergola|7935906 +perhaps|7935966 +peri|7936027 +periactin|7936119 +perianal|7936177 +perianth|7936216 +periapsis|7936322 +periarterial plexus|7936376 +periarteritis|7936440 +periarteritis nodosa|7936473 +pericallis|7936532 +pericallis cruenta|7936600 +pericallis hybrida|7936681 +pericardiac|7936755 +pericardial|7936810 +pericardial cavity|7936865 +pericardial sac|7936938 +pericardial space|7936967 +pericardial vein|7937040 +pericarditis|7937114 +pericardium|7937145 +pericarp|7937189 +pericementoclasia|7937251 +periclase|7937332 +pericles|7937384 +peridinian|7937443 +peridiniidae|7937478 +peridinium|7937551 +peridium|7937616 +peridot|7937666 +peridotite|7937710 +perigee|7937743 +perigon|7937789 +perigonal|7937824 +perigone|7937886 +perigonium|7937992 +perihelion|7938098 +perijove|7938147 +peril|7938194 +perilla|7938443 +perilla frutescens crispa|7938502 +perilous|7938601 +perilously|7938668 +perilousness|7938711 +perilune|7938754 +perilymph|7938812 +perimeter|7938890 +perinasal|7938981 +perinatal|7939024 +perinatologist|7939053 +perinatology|7939101 +perineal|7939156 +perineal artery|7939185 +perineotomy|7939266 +perineum|7939322 +perineurium|7939352 +period|7939391 +period of play|7939837 +period of time|7939905 +period piece|7939989 +periodic|7940023 +periodic acid|7940155 +periodic apnea of the newborn|7940198 +periodic breathing|7940243 +periodic event|7940352 +periodic law|7940427 +periodic motion|7940483 +periodic movement|7940542 +periodic sentence|7940601 +periodic table|7940645 +periodical|7940689 +periodical cicada|7940788 +periodically|7940874 +periodicity|7940908 +periodontal|7940950 +periodontal disease|7941019 +periodontia|7941070 +periodontic|7941141 +periodontics|7941210 +periodontist|7941281 +periodontitis|7941344 +periophthalmus|7941395 +periosteum|7941466 +peripatetic|7941508 +peripatidae|7941644 +peripatopsidae|7941713 +peripatopsis|7941791 +peripatus|7941861 +peripeteia|7941915 +peripetia|7941963 +peripety|7942011 +peripheral|7942059 +peripheral device|7942244 +peripheral nervous system|7942323 +peripheral vision|7942395 +periphery|7942464 +periphrasis|7942525 +periphrastic|7942590 +periplaneta|7942662 +periplaneta americana|7942729 +periplaneta australasiae|7942817 +periploca|7942913 +periploca graeca|7942989 +peripteral|7943047 +perirhinal|7943117 +periscope|7943160 +periselene|7943198 +perish|7943256 +perishable|7943332 +perishables|7943434 +perisher|7943489 +perisoreus|7943545 +perisoreus canadensis|7943604 +perisoreus canadensis capitalis|7943706 +perisperm|7943865 +perissodactyl|7943897 +perissodactyl mammal|7943982 +perissodactyla|7944067 +peristalsis|7944140 +peristediinae|7944228 +peristedion|7944301 +peristedion miniatum|7944363 +peristome|7944468 +peristylar|7944597 +peristyle|7944645 +perithecium|7944674 +perithelial|7944704 +perithelium|7944746 +peritoneal|7944789 +peritoneal cavity|7944831 +peritoneal inflammation|7944908 +peritoneum|7944980 +peritonitis|7945023 +peritonsillar abscess|7945095 +peritrate|7945140 +peritrichous|7945210 +periwig|7945240 +periwigged|7945268 +periwinkle|7945303 +periwinkle plant derivative|7945542 +perjure|7945626 +perjurer|7945647 +perjury|7945697 +perk|7945828 +perk up|7945950 +perked|7946086 +perked up|7946126 +perkily|7946183 +perkiness|7946207 +perky|7946323 +perleche|7946362 +perm|7946405 +permafrost|7946510 +permalloy|7946547 +permanence|7946607 +permanency|7946654 +permanent|7946701 +permanent injunction|7947097 +permanent magnet|7947199 +permanent press|7947246 +permanent tooth|7947359 +permanent wave|7947402 +permanent-press|7946932 +permanent-press fabric|7946984 +permanently|7947446 +permanganate|7947475 +permanganate of potash|7947502 +permanganic acid|7947570 +permeability|7947601 +permeable|7947657 +permeableness|7947728 +permeant|7947784 +permeate|7947847 +permeated|7948026 +permeating|7948064 +permeation|7948127 +permeative|7948213 +permed|7948276 +permian|7948298 +permian period|7948363 +permic|7948435 +permissibility|7948482 +permissible|7948520 +permissibly|7948601 +permission|7948631 +permissive|7948735 +permissive waste|7948859 +permissiveness|7948923 +permit|7948981 +permitted|7949288 +permitting of|7949329 +permutability|7949388 +permutable|7949509 +permutableness|7949555 +permutation|7949676 +permute|7949878 +pernambuco|7949945 +pernambuco wood|7950017 +pernicious|7950100 +pernicious anaemia|7950193 +pernicious anemia|7950289 +perniciously|7950385 +perniciousness|7950434 +pernickety|7950504 +pernio|7950547 +pernis|7950590 +pernis apivorus|7950637 +pernod|7950697 +pernyi moth|7950736 +perodicticus|7950799 +perodicticus potto|7950866 +perognathus|7950934 +perognathus flavescens|7950998 +perognathus flavus|7951086 +perognathus hispidus|7951165 +peromyscus|7951249 +peromyscus eremicus|7951310 +peromyscus gossypinus|7951383 +peromyscus leucopus|7951460 +peromyscus maniculatus|7951552 +peron|7951629 +peroneal|7951677 +peroneal vein|7951703 +peroneus|7951783 +peronospora|7951833 +peronospora destructor|7951897 +peronospora hyoscyami|7951991 +peronospora tabacina|7952085 +peronosporaceae|7952179 +peronosporales|7952257 +perorate|7952330 +peroration|7952379 +peroxidase|7952450 +peroxide|7952478 +peroxide blond|7952547 +peroxide blonde|7952600 +perpendicular|7952653 +perpendicular style|7952954 +perpendicularity|7953067 +perpendicularly|7953173 +perpetrate|7953203 +perpetration|7953244 +perpetrator|7953306 +perpetual|7953354 +perpetual calendar|7953569 +perpetual motion|7953606 +perpetual motion machine|7953639 +perpetual warrant|7953681 +perpetually|7953753 +perpetuate|7953784 +perpetuation|7953846 +perpetuity|7953930 +perphenazine|7953985 +perplex|7954118 +perplexed|7954341 +perplexedly|7954600 +perplexing|7954633 +perplexity|7954680 +perquisite|7954749 +perry|7954848 +perry mason|7955065 +persea|7955149 +persea americana|7955207 +persea borbonia|7955282 +persecute|7955350 +persecution|7955419 +persecutor|7955483 +persephone|7955533 +persepolis|7955595 +perseus|7955655 +perseverance|7955724 +perseverate|7955896 +perseveration|7955968 +persevere|7956081 +persevering|7956174 +pershing|7956212 +persia|7956301 +persian|7956417 +persian cat|7956538 +persian deity|7956623 +persian empire|7956688 +persian gulf|7956741 +persian gulf illness|7956781 +persian gulf war|7956859 +persian iris|7956923 +persian lamb|7957005 +persian lilac|7957074 +persian melon|7957264 +persian violet|7957455 +persian walnut|7957519 +persiflage|7957644 +persimmon|7957703 +persimmon tree|7957761 +persist|7957806 +persist in|7957962 +persistence|7958000 +persistency|7958236 +persistent|7958350 +persisting|7958459 +persnickety|7958512 +person|7958646 +person agreement|7958971 +person hour|7959015 +person of color|7959064 +person of colour|7959159 +person-to-person|7958919 +persona|7959254 +persona grata|7959394 +persona non grata|7959438 +personable|7959563 +personableness|7959594 +personage|7959630 +personal|7959759 +personal appeal|7960198 +personal business|7960266 +personal care|7960326 +personal chattel|7960376 +personal check|7960472 +personal cheque|7960536 +personal computer|7960600 +personal credit line|7960661 +personal digital assistant|7960764 +personal effects|7960880 +personal equation|7960976 +personal estate|7961026 +personal expense|7961145 +personal foul|7961202 +personal identification number|7961230 +personal identity|7961314 +personal income|7961376 +personal judgement|7961408 +personal judgment|7961534 +personal letter|7961660 +personal line of credit|7961700 +personal loan|7961803 +personal magnetism|7961845 +personal manner|7961913 +personal matters|7962002 +personal memory|7962062 +personal organiser|7962124 +personal organizer|7962240 +personal pronoun|7962356 +personal property|7962390 +personal relation|7962509 +personal relationship|7962590 +personal representative|7962671 +personalise|7962719 +personalised|7962800 +personality|7962874 +personality assessment|7962936 +personality disorder|7963021 +personality inventory|7963127 +personality test|7963212 +personalize|7963288 +personalized|7963369 +personally|7963459 +personalty|7963488 +personate|7963607 +personation|7963719 +personhood|7963872 +personification|7963933 +personify|7964097 +personnel|7964244 +personnel carrier|7964372 +personnel casualty|7964439 +personnel department|7964481 +personnel office|7964570 +personnel pouch|7964659 +persoonia|7964717 +perspective|7964793 +perspex|7964891 +perspicacious|7964947 +perspicaciousness|7965036 +perspicacity|7965111 +perspicuity|7965249 +perspicuous|7965345 +perspicuously|7965417 +perspicuousness|7965467 +perspiration|7965563 +perspire|7965706 +perspirer|7965766 +perspiring|7965846 +persuadable|7965886 +persuade|7965952 +persuader|7966049 +persuasible|7966089 +persuasion|7966155 +persuasive|7966273 +persuasiveness|7966398 +pert|7966450 +pertain|7966502 +pertainym|7966620 +perth|7966682 +pertinacious|7966717 +pertinacity|7966789 +pertinence|7966903 +pertinency|7966968 +pertinent|7967033 +pertly|7967114 +pertness|7967170 +perturb|7967246 +perturbation|7967416 +perturbed|7967569 +perturbing|7967635 +pertusaria|7967725 +pertusariaceae|7967786 +pertussis|7967861 +peru|7967975 +peruke|7968056 +peruked|7968084 +perusal|7968119 +peruse|7968174 +perusing|7968202 +perutz|7968257 +peruvian|7968323 +peruvian balsam|7968425 +peruvian bark|7968518 +peruvian cotton|7968588 +peruvian current|7968670 +peruvian lily|7968744 +peruvian mastic tree|7968835 +peruvian monetary unit|7968923 +pervade|7968992 +pervading|7969077 +pervaporate|7969114 +pervaporation|7969180 +pervasion|7969217 +pervasive|7969267 +pervasiveness|7969355 +perverse|7969389 +perversely|7969514 +perverseness|7969557 +perversion|7969651 +perversity|7969821 +perversive|7969936 +pervert|7969991 +perverted|7970262 +pervious|7970407 +perviousness|7970454 +pes|7970517 +pes cavus|7970639 +pes planus|7970704 +pesach|7970763 +pesah|7970860 +pesantran|7970956 +pesantren|7971002 +peseta|7971048 +pesewa|7971101 +pesh merga|7971139 +peshawar|7971223 +peshmerga|7971279 +pesky|7971303 +peso|7971443 +pessary|7971812 +pessimal|7971963 +pessimism|7971996 +pessimist|7972054 +pessimistic|7972097 +pessimum|7972205 +pest|7972238 +pester|7972313 +pestered|7972398 +pesterer|7972456 +pestering|7972531 +pesthole|7972671 +pesthouse|7972705 +pesticide|7972783 +pesticide poisoning|7972811 +pestiferous|7972879 +pestilence|7973149 +pestilent|7973210 +pestilential|7973320 +pestle|7973381 +pet|7973495 +pet food|7974045 +pet name|7974257 +pet peeve|7974291 +pet scanner|7974320 +pet shop|7974400 +pet sitter|7974429 +pet sitting|7974489 +pet-food|7973833 +petabyte|7974537 +petal|7974576 +petaled|7974616 +petalled|7974700 +petalless|7974784 +petaloid|7974813 +petalous|7974842 +petard|7974935 +petasites|7974968 +petasites fragrans|7975033 +petasites hybridus|7975136 +petasites sagitattus|7975246 +petasites vulgaris|7975335 +petaurista|7975445 +petaurista petaurista|7975506 +petauristidae|7975615 +petaurus|7975690 +petchary|7975745 +petcock|7975839 +pete seeger|7975866 +petechia|7975972 +peter|7976007 +peter abelard|7976327 +peter alexander ustinov|7976445 +peter behrens|7976592 +peter carl faberge|7976656 +peter carl goldmark|7976744 +peter cooper|7976847 +peter goldmark|7976927 +peter i|7977025 +peter ilich tchaikovsky|7977094 +peter lorre|7977232 +peter mark roget|7977331 +peter medawar|7977415 +peter minnewit|7977497 +peter minuit|7977582 +peter o'toole|7977665 +peter out|7977774 +peter pan|7977904 +peter pan collar|7978016 +peter paul mauser|7978075 +peter paul rubens|7978203 +peter seamus o'toole|7978288 +peter seeger|7978404 +peter sellers|7978511 +peter stuyvesant|7978599 +peter tchaikovsky|7978695 +peter the great|7978827 +peter's gland|7976189 +peter's pence|7976268 +peterburg|7978904 +petersburg|7979014 +petersburg campaign|7979139 +petfood|7979273 +petiole|7979323 +petiolule|7979361 +petit bourgeois|7979391 +petit dejeuner|7979503 +petit four|7979559 +petit juror|7979584 +petit jury|7979641 +petit larceny|7979677 +petit mal|7979755 +petit mal epilepsy|7979808 +petit point|7979853 +petite|7979912 +petite bourgeoisie|7979997 +petite marmite|7980084 +petiteness|7980139 +petitio|7980223 +petitio principii|7980274 +petition|7980325 +petitionary|7980478 +petitioner|7980510 +petrarca|7980603 +petrarch|7980663 +petrarchan sonnet|7980723 +petrel|7980790 +petri dish|7980832 +petrifaction|7980868 +petrification|7980950 +petrified|7981014 +petrified forest national park|7981084 +petrify|7981169 +petrifying|7981266 +petrissage|7981295 +petrochemical|7981323 +petrocoptis|7981363 +petrogale|7981440 +petrograd|7981498 +petrol|7981608 +petrol bomb|7981663 +petrol station|7981720 +petrolatum|7981805 +petrolatum gauze|7981869 +petroleum|7981915 +petroleum future|7981986 +petroleum geologist|7982030 +petroleum geology|7982083 +petroleum jelly|7982127 +petroleum refinery|7982191 +petrology|7982241 +petromyzon|7982285 +petromyzon marinus|7982344 +petromyzoniformes|7982434 +petromyzontidae|7982552 +petronius|7982628 +petronius arbiter|7982705 +petroselinum|7982790 +petroselinum crispum|7982862 +petroselinum crispum neapolitanum|7982943 +petroselinum crispum tuberosum|7983083 +petrous|7983221 +petrus stuyvesant|7983253 +petter|7983350 +petteria|7983380 +petteria ramentacea|7983440 +petticoat|7983539 +petticoated|7983592 +pettifog|7983626 +pettifogger|7983710 +pettifoggery|7983826 +pettifogging|7983929 +pettiness|7983998 +petting|7984203 +petting zoo|7984321 +pettish|7984389 +pettishly|7984500 +pettishness|7984547 +petty|7984646 +petty apartheid|7984902 +petty bourgeoisie|7984946 +petty cash|7985033 +petty criticism|7985072 +petty juror|7985146 +petty jury|7985203 +petty larceny|7985239 +petty morel|7985317 +petty officer|7985404 +petty spurge|7985466 +petty whin|7985525 +petulance|7985591 +petulant|7985705 +petulantly|7985816 +petunia|7985863 +petunia axillaris|7985887 +petunia hybrida|7985960 +petunia integrifolia|7986024 +peul|7986107 +pew|7986155 +pewee|7986187 +pewit|7986311 +pewit gull|7986557 +pewter|7986645 +peyer's patch|7986673 +peyote|7986752 +peyton rous|7986895 +peziza|7986979 +peziza coccinea|7987028 +peziza domicilina|7987112 +pezizaceae|7987180 +pezizales|7987243 +pezophaps|7987301 +pezophaps solitaria|7987357 +pfalz|7987433 +pfannkuchen|7987514 +pfc|7987642 +pfennig|7987723 +pflp|7987761 +pflp-gc|7987900 +ph|7988061 +ph scale|7988239 +ph.d.|7988112 +phacelia|7988296 +phacelia campanularia|7988348 +phacelia minor|7988457 +phacelia tanacetifolia|7988581 +phacelia whitlavia|7988683 +phacochoerus|7988811 +phaeochromocytoma|7988878 +phaeophyceae|7988944 +phaeophyta|7989004 +phaethon|7989064 +phaethontidae|7989145 +phaeton|7989215 +phage|7989288 +phagocyte|7989323 +phagocytic|7989386 +phagocytosis|7989434 +phagun|7989509 +phaius|7989562 +phalacrocoracidae|7989604 +phalacrocorax|7989686 +phalacrocorax carbo|7989754 +phalacrosis|7989834 +phalaenopsis|7989888 +phalaenopsis amabilis|7989972 +phalaenoptilus|7990064 +phalaenoptilus nuttallii|7990135 +phalangeal|7990235 +phalanger|7990262 +phalangeridae|7990321 +phalangida|7990393 +phalangiidae|7990480 +phalangitis|7990552 +phalangium|7990600 +phalangium opilio|7990664 +phalanx|7990754 +phalaris|7990849 +phalaris aquatica|7990921 +phalaris arundinacea|7991039 +phalaris canariensis|7991159 +phalaris tuberosa|7991244 +phalarope|7991362 +phalaropidae|7991418 +phalaropus|7991485 +phalaropus fulicarius|7991544 +phalguna|7991621 +phallaceae|7991676 +phallales|7991739 +phallic|7991797 +phallic phase|7991848 +phallic stage|7991897 +phalloplasty|7991946 +phallus|7992017 +phallus impudicus|7992104 +phallus ravenelii|7992191 +phalsa|7992261 +phanerogam|7992304 +phanerogamae|7992377 +phaneromania|7992421 +phanerozoic|7992467 +phanerozoic aeon|7992542 +phanerozoic eon|7992622 +phantasm|7992701 +phantasma|7992852 +phantasmagoria|7993002 +phantasmagoric|7993087 +phantasmagorical|7993161 +phantasmal|7993235 +phantasy|7993318 +phantasy life|7993446 +phantasy world|7993499 +phantom|7993564 +phantom limb|7993730 +phantom limb pain|7993771 +phantom limb syndrome|7993821 +phantom orchid|7993861 +pharaoh|7993944 +pharaoh ant|7994175 +pharaoh of egypt|7994249 +pharaoh's ant|7993999 +pharaoh's chicken|7994073 +pharaonic|7994313 +pharisaic|7994354 +pharisaical|7994459 +pharisee|7994564 +pharma|7994657 +pharmaceutic|7994717 +pharmaceutical|7994831 +pharmaceutical chemist|7995050 +pharmaceutical company|7995160 +pharmaceutics|7995220 +pharmacist|7995279 +pharmacogenetics|7995402 +pharmacokinetics|7995453 +pharmacologic|7995532 +pharmacological|7995597 +pharmacological medicine|7995662 +pharmacologist|7995751 +pharmacology|7995861 +pharmacopeia|7995950 +pharmacopoeia|7995987 +pharmacy|7996057 +pharomacrus|7996187 +pharomacrus mocino|7996249 +pharos|7996356 +pharsalus|7996409 +pharyngeal|7996473 +pharyngeal recess|7996507 +pharyngeal reflex|7996564 +pharyngeal tonsil|7996700 +pharyngeal vein|7996839 +pharyngitis|7996910 +pharynx|7996975 +phascogale|7997014 +phascolarctos|7997075 +phascolarctos cinereus|7997145 +phase|7997268 +phase angle|7997497 +phase change|7997544 +phase i|7997659 +phase i clinical trial|7997736 +phase ii|7997828 +phase ii clinical trial|7997908 +phase iii|7998003 +phase iii clinical trial|7998086 +phase in|7998184 +phase iv|7998221 +phase iv clinical trials|7998302 +phase modulation|7998399 +phase of cell division|7998439 +phase of the moon|7998483 +phase out|7998550 +phase space|7998583 +phase transition|7998610 +phaseolus|7998725 +phaseolus aconitifolius|7998788 +phaseolus acutifolius latifolius|7998898 +phaseolus angularis|7999013 +phaseolus aureus|7999126 +phaseolus caracalla|7999245 +phaseolus coccineus|7999400 +phaseolus limensis|7999556 +phaseolus lunatus|7999657 +phaseolus multiflorus|7999781 +phaseolus vulgaris|7999939 +phasianid|8000032 +phasianidae|8000061 +phasianus|8000125 +phasianus colchicus|8000181 +phasmatidae|8000260 +phasmatodea|8000356 +phasmid|8000444 +phasmid insect|8000483 +phasmida|8000522 +phasmidae|8000607 +phasmidia|8000701 +phatic communication|8000752 +phatic speech|8000809 +phd|8000866 +pheasant|8000910 +pheasant coucal|8000998 +pheasant cuckoo|8001068 +pheasant under glass|8001138 +pheasant's-eye|8000954 +phegopteris|8001173 +phegopteris connectilis|8001235 +phegopteris hexagonoptera|8001404 +pheidias|8001564 +phellem|8001639 +phellodendron|8001666 +phellodendron amurense|8001741 +phenacetin|8001811 +phenacomys|8001901 +phenaphen|8001938 +phenazopyridine|8002061 +phencyclidine|8002134 +phencyclidine hydrochloride|8002267 +phenelzine|8002400 +phenergan|8002460 +phenicia|8002543 +pheniramine|8002652 +pheno-safranine|8002687 +phenobarbital|8002742 +phenobarbitone|8002831 +phenol|8002920 +phenolic|8003075 +phenolic plastic|8003135 +phenolic resin|8003183 +phenolic urea|8003243 +phenolphthalein|8003291 +phenomenal|8003345 +phenomenology|8003389 +phenomenon|8003475 +phenoplast|8003507 +phenothiazine|8003567 +phenotype|8003617 +phenotypic|8003668 +phenotypical|8003732 +phenoxymethyl penicillin|8003796 +phensuximide|8003854 +phentolamine|8003953 +phenyl salicylate|8004017 +phenylacetamide|8004061 +phenylalanine|8004148 +phenylamine|8004192 +phenylbutazone|8004264 +phenylephrine|8004341 +phenylethylene|8004391 +phenylic acid|8004488 +phenylketonuria|8004619 +phenylpropanolamine|8004675 +phenyltoloxamine|8004731 +phenytoin|8004771 +pheochromocytoma|8004827 +pheresis|8004893 +pheromone|8004930 +phi|8004959 +phi coefficient|8005023 +phi correlation|8005143 +phial|8005263 +phidias|8005311 +phil anderson|8005385 +philadelphaceae|8005480 +philadelphia|8005566 +philadelphia fleabane|8005653 +philadelphia pepper pot|8005739 +philadelphus|8005812 +philadelphus coronarius|8005845 +philaenus|8005935 +philaenus spumarius|8005996 +philander|8006089 +philanderer|8006212 +philanthropic|8006296 +philanthropic foundation|8006385 +philanthropic gift|8006427 +philanthropist|8006482 +philanthropy|8006537 +philatelic|8006592 +philatelical|8006669 +philatelist|8006746 +philately|8006804 +philemon|8006902 +philharmonic|8007061 +philharmonic pitch|8007153 +philhellene|8007221 +philhellenic|8007420 +philhellenist|8007532 +philibert de l'orme|8007633 +philibert delorme|8007737 +philip|8007839 +philip anderson|8007901 +philip augustus|8007998 +philip dormer stanhope|8008067 +philip ii|8008195 +philip ii of macedon|8008368 +philip ii of spain|8008447 +philip marlowe|8008522 +philip michael ondaatje|8008620 +philip milton roth|8008717 +philip of valois|8008795 +philip roth|8008866 +philip v|8008937 +philip vi|8008982 +philip warren anderson|8009046 +philipp lenard|8009150 +philipp melanchthon|8009206 +philipp schwarzerd|8009332 +philippi|8009457 +philippian|8009563 +philippians|8009605 +philippic|8009746 +philippine|8009820 +philippine cedar|8009931 +philippine islands|8010058 +philippine mahogany|8010129 +philippine monetary unit|8010295 +philippine peso|8010368 +philippine sea|8010439 +philippines|8010520 +philippopolis|8010703 +philippus aureolus paracelsus|8010777 +philistia|8010948 +philistine|8011049 +philistinism|8011313 +phillidae|8011354 +phillips screw|8011444 +phillips screwdriver|8011489 +phillipsite|8011552 +phillis wheatley|8011581 +phillyrea|8011638 +philodendron|8011714 +philohela|8011742 +philohela minor|8011798 +philological|8011881 +philologist|8011953 +philologue|8011994 +philology|8012035 +philomachus|8012117 +philomachus pugnax|8012179 +philophylla|8012241 +philosopher|8012308 +philosopher's stone|8012422 +philosopher's wool|8012468 +philosophic|8012529 +philosophical|8012690 +philosophical doctrine|8012861 +philosophical system|8012977 +philosophical theory|8013056 +philosophise|8013172 +philosophiser|8013232 +philosophize|8013277 +philosophizer|8013337 +philosophizing|8013382 +philosophy|8013428 +philosophy department|8013579 +philter|8013655 +philtre|8013725 +phimosis|8013795 +phineas taylor barnum|8013855 +phintias|8013956 +phiz|8013998 +phlebectomy|8014129 +phlebitis|8014223 +phlebodium|8014269 +phlebodium aureum|8014328 +phlebogram|8014444 +phlebothrombosis|8014524 +phlebotomise|8014579 +phlebotomize|8014641 +phlebotomus|8014703 +phlebotomus papatasii|8014815 +phlebotomy|8014890 +phlegm|8014970 +phlegmasia alba dolens|8015238 +phlegmatic|8015300 +phlegmatical|8015345 +phlegmy|8015390 +phleum|8015421 +phleum pratense|8015487 +phloem|8015555 +phlogiston|8015592 +phlogopite|8015629 +phlomis|8015664 +phlomis fruticosa|8015700 +phlox|8015779 +phlox bifida|8015816 +phlox family|8015900 +phlox stellaria|8015978 +phlox subulata|8016065 +phnom penh|8016158 +phobia|8016234 +phobic|8016299 +phobic disorder|8016339 +phobic neurosis|8016404 +phobophobia|8016469 +phobos|8016504 +phoca|8016537 +phoca vitulina|8016583 +phocaena|8016679 +phocaena phocaena|8016734 +phocaena sinus|8016816 +phocidae|8016872 +phocine|8016929 +phocomelia|8016981 +phoebe|8017022 +phoebe bird|8017253 +phoebus|8017359 +phoebus apollo|8017418 +phoenicia|8017484 +phoenician|8017594 +phoenicophorium|8017681 +phoenicopteridae|8017774 +phoeniculidae|8017853 +phoeniculus|8017923 +phoenicurus|8017985 +phoenix|8018047 +phoenix dactylifera|8018223 +phoenix tree|8018295 +pholadidae|8018398 +pholas|8018462 +pholidae|8018512 +pholidota|8018585 +pholiota|8018706 +pholiota astragalina|8018761 +pholiota aurea|8018819 +pholiota destruens|8018881 +pholiota flammans|8018935 +pholiota flavida|8018987 +pholiota nameko|8019037 +pholiota squarrosa|8019108 +pholiota squarrosa-adiposa|8019177 +pholiota squarrosoides|8019247 +pholis|8019309 +pholis gunnellus|8019356 +pholistoma|8019446 +pholistoma auritum|8019514 +phon|8019614 +phonate|8019639 +phonation|8019717 +phone|8019786 +phone bill|8020054 +phone book|8020110 +phone booth|8020266 +phone call|8020368 +phone card|8020428 +phone company|8020498 +phone cord|8020627 +phone jack|8020722 +phone line|8020762 +phone message|8020888 +phone number|8020937 +phone plug|8021005 +phone service|8021055 +phone system|8021184 +phone tapper|8021244 +phone-in|8020016 +phonebook|8021297 +phoneme|8021372 +phonemic|8021414 +phonemic system|8021456 +phonemics|8021497 +phoner|8021573 +phonetic|8021662 +phonetic alphabet|8021732 +phonetic symbol|8021783 +phonetic transcription|8021842 +phonetician|8021901 +phonetics|8021952 +phoney|8021981 +phonic|8022138 +phonics|8022251 +phonogram|8022285 +phonogramic|8022334 +phonograph|8022384 +phonograph album|8022426 +phonograph needle|8022471 +phonograph record|8022512 +phonograph recording|8022617 +phonograph recording disk|8022722 +phonologic|8022780 +phonologic system|8022859 +phonological|8022922 +phonological system|8023001 +phonologist|8023064 +phonology|8023115 +phonophobia|8023191 +phony|8023242 +phoradendron|8023400 +phoradendron flavescens|8023476 +phoradendron serotinum|8023601 +phoronid|8023725 +phoronida|8023756 +phoronidea|8023820 +phosgene|8023885 +phosphatase|8023907 +phosphate|8023935 +phosphate buffer solution|8024012 +phosphine|8024067 +phosphocreatine|8024100 +phospholipid|8024186 +phosphoprotein|8024228 +phosphor bronze|8024260 +phosphoresce|8024292 +phosphorescence|8024322 +phosphorescent|8024360 +phosphoric|8024390 +phosphoric acid|8024446 +phosphorous|8024512 +phosphorous acid|8024568 +phosphorus|8024657 +phot|8024767 +photalgia|8024799 +photic|8024843 +photinia|8024888 +photinia arbutifolia|8024948 +photo|8025078 +photo credit|8025275 +photo finish|8025356 +photo op|8025385 +photo opportunity|8025478 +photo-offset|8025141 +photo-offset printing|8025208 +photoblepharon|8025571 +photoblepharon palpebratus|8025642 +photocathode|8025756 +photocell|8025786 +photochemical|8025911 +photochemical exchange|8025960 +photochemical reaction|8026001 +photochemistry|8026060 +photocoagulation|8026111 +photocoagulator|8026210 +photoconduction|8026255 +photoconductive|8026320 +photoconductive cell|8026366 +photoconductivity|8026491 +photocopier|8026556 +photocopy|8026595 +photoelectric|8026680 +photoelectric cell|8026738 +photoelectric emission|8026863 +photoelectrical|8026904 +photoelectricity|8026954 +photoelectron|8026992 +photoemission|8027033 +photoemissive|8027065 +photoengraving|8027096 +photoflash|8027158 +photoflood|8027253 +photogelatin process|8027320 +photogenic|8027413 +photogenic epilepsy|8027444 +photograph|8027489 +photograph album|8027592 +photographer|8027624 +photographer's model|8027677 +photographic|8027719 +photographic camera|8027788 +photographic emulsion|8027847 +photographic equipment|8027900 +photographic film|8027942 +photographic material|8028015 +photographic paper|8028088 +photographic plate|8028161 +photographic print|8028212 +photography|8028276 +photogravure|8028411 +photojournalism|8028529 +photojournalist|8028590 +photolithograph|8028626 +photolithography|8028662 +photomechanical|8028700 +photomechanics|8028732 +photometer|8028798 +photometric|8028930 +photometrical|8029006 +photometrician|8029082 +photometrist|8029128 +photometry|8029174 +photomicrograph|8029236 +photomontage|8029291 +photon|8029329 +photophobia|8029357 +photopic vision|8029422 +photopigment|8029505 +photoplatemaking|8029535 +photoretinitis|8029584 +photosensitise|8029670 +photosensitive|8029729 +photosensitivity|8029779 +photosensitize|8029860 +photosphere|8029919 +photostat|8029948 +photostat machine|8030061 +photosynthesis|8030134 +photosynthetic|8030207 +phototherapy|8030295 +phototrophic bacteria|8030384 +phototropic bacteria|8030473 +phototropism|8030562 +photovoltaic|8030592 +photovoltaic cell|8030635 +phoxinus|8030692 +phoxinus phoxinus|8030745 +phragmacone|8030820 +phragmipedium|8030859 +phragmites|8030946 +phragmites communis|8031024 +phragmocone|8031137 +phrasal|8031176 +phrasal idiom|8031241 +phrasal verb|8031336 +phrase|8031363 +phrase book|8031624 +phrase structure|8031650 +phraseology|8031712 +phrasing|8031806 +phratry|8031916 +phreatic|8032091 +phrenetic|8032118 +phrenic|8032172 +phrenic nerve|8032255 +phrenic vein|8032324 +phrenitis|8032390 +phrenological|8032460 +phrenologist|8032506 +phrenology|8032562 +phrontistery|8032606 +phrygia|8032642 +phrygian|8032739 +phrygian deity|8032835 +phrynosoma|8032902 +phrynosoma cornutum|8032964 +phs|8033070 +phthalic acid|8033233 +phthalic anhydride|8033261 +phthiriidae|8033299 +phthirius|8033368 +phthirius pubis|8033453 +phthirus|8033542 +phthisis|8033626 +phthorimaea|8033729 +phthorimaea operculella|8033796 +phycobilin|8033978 +phycocyanin|8034006 +phycoerythrin|8034035 +phycomycetes|8034066 +phycomycetes group|8034161 +phycomycosis|8034262 +phylactery|8034309 +phyle|8034347 +phyletic|8034373 +phyllidae|8034438 +phylliform|8034528 +phyllitis|8034555 +phyllitis scolopendrium|8034631 +phyllium|8034750 +phyllo|8034808 +phylloclad|8034850 +phyllocladaceae|8034912 +phylloclade|8034994 +phyllocladus|8035056 +phyllocladus alpinus|8035127 +phyllocladus asplenifolius|8035209 +phyllocladus trichomanoides|8035319 +phyllode|8035405 +phyllodial|8035441 +phyllodoce|8035478 +phyllodoce breweri|8035548 +phyllodoce caerulea|8035642 +phylloporus|8035733 +phylloporus boletinoides|8035797 +phylloquinone|8035863 +phyllorhynchus|8035958 +phylloscopus|8036032 +phylloscopus sibilatrix|8036097 +phyllostachys|8036198 +phyllostachys aurea|8036285 +phyllostachys bambusoides|8036381 +phyllostachys nigra|8036485 +phyllostomatidae|8036565 +phyllostomidae|8036683 +phyllostomus|8036799 +phyllostomus hastatus|8036866 +phylloxera|8036947 +phylloxera vitifoleae|8037011 +phylloxeridae|8037111 +phylogenesis|8037186 +phylogenetic|8037263 +phylogenetic relation|8037328 +phylogeny|8037409 +phylum|8037486 +phylum acanthocephala|8037563 +phylum annelida|8037638 +phylum arthropoda|8037695 +phylum aschelminthes|8037758 +phylum brachiopoda|8037855 +phylum bryozoa|8037921 +phylum chaetognatha|8037983 +phylum chordata|8038052 +phylum cnidaria|8038109 +phylum coelenterata|8038199 +phylum cryptophyta|8038293 +phylum ctenophora|8038359 +phylum cycliophora|8038422 +phylum echinodermata|8038488 +phylum ectoprocta|8038560 +phylum entoprocta|8038623 +phylum mollusca|8038697 +phylum nematoda|8038754 +phylum nemertea|8038846 +phylum nemertina|8038930 +phylum phoronida|8039015 +phylum platyhelminthes|8039086 +phylum pogonophora|8039164 +phylum porifera|8039230 +phylum protozoa|8039287 +phylum pyrrophyta|8039344 +phylum rotifera|8039407 +phylum sipuncula|8039464 +physa|8039524 +physalia|8039558 +physalis|8039619 +physalis alkekengi|8039681 +physalis ixocarpa|8039805 +physalis peruviana|8039915 +physalis philadelphica|8040025 +physalis pruinosa|8040156 +physalis pubescens|8040267 +physalis viscosa|8040378 +physaria|8040462 +physeter|8040526 +physeter catodon|8040581 +physeteridae|8040671 +physiatrics|8040740 +physic|8040800 +physic nut|8040891 +physical|8040961 +physical ability|8041270 +physical anthropology|8041304 +physical attraction|8041348 +physical body|8041412 +physical change|8041572 +physical chemistry|8041687 +physical education|8041742 +physical exercise|8041780 +physical exertion|8041896 +physical fitness|8042012 +physical geography|8042088 +physical object|8042151 +physical pendulum|8042190 +physical phenomenon|8042244 +physical property|8042292 +physical rehabilitation|8042328 +physical restoration|8042424 +physical science|8042520 +physical structure|8042589 +physical therapist|8042655 +physical therapy|8042716 +physical topology|8042776 +physical value|8042829 +physicalism|8042876 +physicality|8042953 +physicalness|8043008 +physician|8043063 +physician-assisted suicide|8043140 +physician-patient privilege|8043193 +physicist|8043240 +physicochemical|8043284 +physics|8043335 +physics class|8043493 +physics department|8043533 +physics lab|8043603 +physics laboratory|8043722 +physidae|8043841 +physiognomy|8043899 +physiography|8043978 +physiologic|8044041 +physiological|8044085 +physiological anatomy|8044162 +physiological condition|8044253 +physiological jaundice of the newborn|8044312 +physiological nystagmus|8044419 +physiological property|8044462 +physiological psychology|8044510 +physiological reaction|8044610 +physiological sphincter|8044735 +physiological state|8044816 +physiologist|8044875 +physiology|8044922 +physiotherapeutic|8044992 +physiotherapist|8045026 +physiotherapy|8045087 +physique|8045147 +physostegia|8045355 +physostegia virginiana|8045398 +physostigma|8045515 +physostigma venenosum|8045578 +physostigmine|8045654 +phytelephas|8045686 +phytelephas macrocarpa|8045749 +phytohormone|8045855 +phytolacca|8045922 +phytolacca acinosa|8045996 +phytolacca americana|8046064 +phytolacca dioica|8046155 +phytolaccaceae|8046227 +phytologist|8046331 +phytology|8046402 +phytomastigina|8046455 +phytonadione|8046524 +phytophagic|8046619 +phytophagous|8046691 +phytophilous|8046763 +phytophthora|8046835 +phytophthora citrophthora|8046902 +phytophthora infestans|8046970 +phytoplankton|8047032 +phytotherapy|8047078 +phytotoxin|8047142 +pi|8047180 +pi-meson|8047519 +pia|8047557 +pia mater|8047650 +piaf|8047685 +piaffe|8047789 +piaget|8047814 +piagetian|8047862 +pianism|8047903 +pianissimo|8047952 +pianissimo assai|8048023 +pianist|8048060 +pianistic|8048122 +piano|8048242 +piano accordion|8048430 +piano action|8048498 +piano damper|8048544 +piano keyboard|8048594 +piano lesson|8048647 +piano maker|8048682 +piano music|8048716 +piano player|8048762 +piano sonata|8048824 +piano stool|8048853 +piano teacher|8048892 +piano tuner|8048929 +piano wire|8048986 +pianoforte|8049011 +pianola|8049113 +piassava palm|8049197 +piaster|8049293 +piastre|8049393 +piazza|8049493 +pibgorn|8049542 +pibroch|8049622 +pic|8049683 +pica|8049866 +pica em|8050152 +pica pica|8050189 +pica pica hudsonia|8050373 +pica-pica|8049978 +picador|8050443 +picaninny|8050517 +picardie|8050683 +picardy|8050732 +picaresque|8050780 +picariae|8050823 +picasso|8050878 +picayune|8050965 +piccalilli|8051086 +piccaninny|8051113 +piccolo|8051279 +picea|8051319 +picea abies|8051369 +picea breweriana|8051423 +picea engelmannii|8051504 +picea glauca|8051592 +picea mariana|8051647 +picea obovata|8051716 +picea orientalis|8051776 +picea pungens|8051842 +picea rubens|8051937 +picea sitchensis|8052019 +pichi|8052082 +pichiciago|8052126 +pichiciego|8052218 +picidae|8052310 +piciform bird|8052362 +piciformes|8052390 +pick|8052451 +pick apart|8053353 +pick at|8053431 +pick off|8053557 +pick out|8053629 +pick over|8053769 +pick up|8053826 +pick up the gauntlet|8054482 +pick's disease|8053213 +pick-me-up|8053271 +pickaback|8054553 +pickaback plant|8054619 +pickaninny|8054713 +pickax|8054879 +pickaxe|8054918 +pickelhaube|8054957 +picker|8054985 +pickerel|8055120 +pickerel frog|8055155 +pickerel weed|8055209 +pickerelweed|8055407 +pickerelweed family|8055524 +pickeringia|8055622 +pickeringia montana|8055691 +picket|8055780 +picket boat|8056024 +picket fence|8056052 +picket line|8056095 +picket ship|8056121 +pickett|8056149 +pickford|8056217 +picking|8056279 +pickings|8056359 +pickle|8056477 +pickle barrel|8056579 +pickle relish|8056614 +pickled|8056644 +pickled herring|8056671 +picklepuss|8056704 +picknicker|8056786 +pickpocket|8056829 +pickup|8056876 +pickup arm|8057221 +pickup truck|8057275 +picky|8057321 +picnic|8057358 +picnic area|8057549 +picnic ground|8057642 +picnic ham|8057735 +picnic shoulder|8057783 +picnicker|8057831 +pico de orizaba|8057874 +picofarad|8057961 +picoides|8057997 +picometer|8058050 +picometre|8058110 +picornavirus|8058170 +picosecond|8058205 +picot|8058248 +picovolt|8058270 +picrasma|8058303 +picrasma excelsa|8058363 +picrasma excelsum|8058467 +picric acid|8058572 +picris|8058598 +picris echioides|8058654 +pictograph|8058747 +pictographic|8058801 +pictor|8058856 +pictorial|8058893 +pictorial matter|8058991 +pictorial representation|8059038 +pictural|8059097 +picture|8059137 +picture book|8059799 +picture card|8059833 +picture element|8059889 +picture frame|8059954 +picture gallery|8060001 +picture hat|8060051 +picture palace|8060094 +picture plane|8060187 +picture postcard|8060222 +picture rail|8060292 +picture show|8060319 +picture taking|8060445 +picture tube|8060516 +picture window|8060585 +picture writing|8060616 +pictured|8060668 +picturesque|8060785 +picturesqueness|8060832 +picturing|8060864 +picul|8060985 +piculet|8061019 +picumnus|8061065 +picus|8061118 +picus viridis|8061162 +pid|8061245 +piddle|8061311 +piddle away|8061627 +piddling|8061692 +piddock|8061813 +pidgin|8061862 +pidlimdi|8061898 +pie|8061950 +pie chart|8062335 +pie crust|8062360 +pie plant|8062396 +pie shell|8062544 +pie-dog|8062051 +pie-eyed|8062104 +piebald|8062580 +piece|8062752 +piece de resistance|8063392 +piece goods|8063510 +piece of ass|8063568 +piece of cake|8063808 +piece of cloth|8063928 +piece of eight|8064006 +piece of furniture|8064035 +piece of ground|8064106 +piece of land|8064245 +piece of leather|8064384 +piece of material|8064424 +piece of music|8064502 +piece of paper|8064575 +piece of tail|8064626 +piece of work|8064866 +piece of writing|8064913 +piece-dye|8063369 +piecemeal|8065003 +piecework|8065123 +pied|8065158 +pied lemming|8065443 +pied-a-terre|8065330 +pied-billed grebe|8065390 +piedmont|8065473 +piedmont glacier|8065612 +piedmont type of glacier|8065688 +piemonte|8065772 +pieplant|8065823 +pier|8065866 +pier arch|8065939 +pier glass|8065963 +pier luigi nervi|8066002 +pier mirror|8066070 +pier table|8066109 +pierce|8066135 +pierced|8066407 +piercing|8066459 +piercingly|8066720 +pierid|8066778 +pierid butterfly|8066821 +pieridae|8066864 +pieris|8066924 +pieris brassicae|8067025 +pieris floribunda|8067098 +pieris japonica|8067204 +pieris protodice|8067309 +pieris rapae|8067397 +pierre|8067506 +pierre abelard|8067633 +pierre athanase larousse|8067752 +pierre auguste renoir|8067863 +pierre boulez|8067934 +pierre charles l'enfant|8067987 +pierre corneille|8068089 +pierre curie|8068168 +pierre de fermat|8068219 +pierre de terrail|8068283 +pierre joseph proudhon|8068397 +pierre laporte bridge|8068471 +pierre larousse|8068542 +pierre simon de laplace|8068644 +pierre teilhard de chardin|8068775 +pierre terrail|8068911 +pierre-paul broca|8067567 +pierrot|8069022 +piet mondrian|8069098 +pieta|8069175 +pieter breughel|8069205 +pieter bruegel|8069359 +pieter brueghel|8069512 +pieter brueghel the elder|8069666 +pieter zeeman|8069830 +pietism|8069884 +pietistic|8069985 +pietistical|8070127 +piety|8070267 +piezo effect|8070306 +piezoelectric|8070378 +piezoelectric crystal|8070412 +piezoelectric effect|8070451 +piezoelectricity|8070523 +piezometer|8070595 +piffle|8070670 +piffling|8070933 +pig|8071054 +pig bed|8071564 +pig farm|8071601 +pig iron|8071632 +pig it|8071675 +pig laurel|8071700 +pig lead|8071769 +pig out|8071812 +pig's ears|8071377 +pig-a-back|8071426 +pig-headedly|8071491 +pigboat|8071965 +pigeon|8072035 +pigeon berry|8072256 +pigeon breast|8072326 +pigeon droppings|8072401 +pigeon guillemot|8072447 +pigeon hawk|8072499 +pigeon loft|8072552 +pigeon pea|8072586 +pigeon toes|8072715 +pigeon-breasted|8072068 +pigeon-pea plant|8072120 +pigeon-toed|8072223 +pigeonhole|8072779 +pigeonholing|8072945 +pigfish|8072998 +piggery|8073102 +piggish|8073133 +piggishness|8073191 +piggy|8073244 +piggy bank|8073335 +piggyback|8073404 +piggyback plant|8073541 +pigheaded|8073635 +pigheadedness|8073688 +piglet|8073811 +pigman|8073852 +pigment|8073901 +pigmentation|8074056 +pigmy|8074127 +pigmy talinum|8074193 +pignolia|8074294 +pignut|8074342 +pignut hickory|8074435 +pigpen|8074528 +pigs in blankets|8074649 +pigs' feet|8074559 +pigs' knuckles|8074604 +pigskin|8074689 +pigsticking|8074714 +pigsty|8074748 +pigswill|8074779 +pigtail|8074837 +pigwash|8074878 +pigweed|8074936 +pij|8075117 +pika|8075298 +pike|8075371 +pike perch|8075749 +pike's peak|8075584 +pike-perch|8075631 +pikeblenny|8075867 +piked reverse hang|8075912 +piked whale|8075953 +pikestaff|8076046 +pilaf|8076071 +pilaff|8076110 +pilar|8076149 +pilar cyst|8076178 +pilary|8076236 +pilaster|8076280 +pilau|8076312 +pilaw|8076351 +pilchard|8076390 +pile|8076486 +pile driver|8077189 +pile dwelling|8077218 +pile up|8077310 +pilea|8077558 +pilea involucrata|8077622 +pilea microphylla|8077709 +pilea pumilla|8077777 +piled|8077852 +piles|8077906 +pileup|8078718 +pileus|8078744 +pilewort|8078791 +pilfer|8078852 +pilferage|8078946 +pilferer|8079006 +pilgrim|8079059 +pilgrim father|8079315 +pilgrim's journey|8079179 +pilgrim's progress|8079236 +pilgrimage|8079379 +piling|8079436 +pill|8079483 +pill bottle|8079842 +pill bug|8079870 +pill head|8079905 +pill pusher|8079929 +pill roller|8080052 +pillage|8080175 +pillaged|8080364 +pillager|8080463 +pillaging|8080548 +pillar|8080607 +pillar box|8080807 +pillar of islam|8080854 +pillar of strength|8080902 +pillared|8080973 +pillars of hercules|8081000 +pillbox|8081080 +pillion|8081187 +pillock|8081209 +pillory|8081312 +pillow|8081489 +pillow block|8081557 +pillow fight|8081587 +pillow lace|8081622 +pillow lava|8081660 +pillow sham|8081686 +pillow slip|8081717 +pillow talk|8081769 +pillowcase|8081802 +pillwort|8081854 +pilocarpine|8081918 +pilomotor reflex|8081948 +pilose|8082132 +pilosebaceous|8082176 +pilosella|8082217 +pilosella aurantiaca|8082282 +pilosella officinarum|8082376 +pilot|8082477 +pilot balloon|8082977 +pilot biscuit|8083023 +pilot bit|8083100 +pilot blacksnake|8083123 +pilot boat|8083222 +pilot bread|8083247 +pilot burner|8083324 +pilot chart|8083383 +pilot cloth|8083441 +pilot engine|8083492 +pilot experiment|8083569 +pilot film|8083622 +pilot ladder|8083716 +pilot lamp|8083772 +pilot light|8083829 +pilot program|8083931 +pilot project|8084061 +pilot whale|8084113 +pilotage|8084202 +pilotfish|8084296 +pilothouse|8084355 +piloting|8084398 +pilotless|8084492 +pilotless aircraft|8084538 +pilous|8084621 +pilsen|8084665 +pilsener|8084699 +pilsner|8084751 +piltdown hoax|8084802 +piltdown man|8084923 +pilularia|8085043 +pilularia globulifera|8085099 +pilus|8085185 +pima|8085232 +pimenta|8085325 +pimenta acris|8085395 +pimenta dioica|8085490 +pimenta officinalis|8085576 +pimento|8085650 +pimento butter|8085819 +pimento tree|8085856 +pimiento|8085927 +pimlico|8086095 +pimozide|8086131 +pimp|8086174 +pimpernel|8086302 +pimpinella|8086423 +pimpinella anisum|8086489 +pimple|8086574 +pimpled|8086605 +pimply|8086655 +pin|8086705 +pin bone|8087505 +pin cherry|8087535 +pin clover|8087604 +pin curl|8087739 +pin down|8087763 +pin grass|8087909 +pin money|8088044 +pin number|8088120 +pin oak|8088215 +pin table|8088323 +pin up|8088373 +pin wrench|8088405 +pin-tailed duck|8087221 +pin-tailed grouse|8087270 +pin-tailed sandgrouse|8087360 +pin-up|8087450 +pina cloth|8088440 +pina colada|8088490 +pinaceae|8088523 +pinafore|8088596 +pinata|8088639 +pinatubo|8088669 +pinball|8088719 +pinball game|8088754 +pinball machine|8088789 +pince-nez|8088839 +pincer|8088894 +pinch|8089013 +pinch bar|8089592 +pinch hitter|8089617 +pinchas zukerman|8089688 +pinchbeck|8089758 +pinche|8089818 +pinched|8089897 +pinchgut|8090120 +pinckneya|8090170 +pinckneya pubens|8090235 +pinctada|8090325 +pinctada margaritifera|8090381 +pincurl clip|8090456 +pincus|8090524 +pincushion|8090598 +pincushion flower|8090626 +pincushion hakea|8090723 +pindar|8090789 +pindaric|8090817 +pindaric ode|8090861 +pindolol|8090909 +pine|8091002 +pine away|8091428 +pine bluff|8091469 +pine family|8091505 +pine fern|8091569 +pine finch|8091613 +pine grosbeak|8091664 +pine hyacinth|8091726 +pine knot|8091794 +pine leaf aphid|8091822 +pine lily|8091873 +pine lizard|8091938 +pine marten|8092014 +pine mouse|8092067 +pine nut|8092132 +pine sawyer|8092180 +pine siskin|8092222 +pine snake|8092273 +pine spittlebug|8092315 +pine tar|8092366 +pine tree|8092393 +pine tree state|8092451 +pine vole|8092516 +pine-barren sandwort|8091121 +pine-tar rag|8091190 +pine-weed|8091260 +pineal|8092581 +pineal body|8092652 +pineal eye|8092755 +pineal gland|8092823 +pinealoma|8092926 +pineapple|8092967 +pineapple family|8093066 +pineapple guava|8093157 +pineapple juice|8093202 +pineapple plant|8093251 +pineapple weed|8093323 +pinecone|8093413 +pinesap|8093455 +pinetum|8093533 +pineus|8093560 +pineus pinifoliae|8093612 +pineweed|8093681 +pinfish|8093768 +pinfold|8093852 +ping|8093873 +ping river|8094253 +ping-pong|8094106 +ping-pong ball|8094159 +ping-pong table|8094188 +pinger|8094295 +pingpong paddle|8094327 +pingpong table|8094397 +pinguecula|8094462 +pinguicula|8094494 +pinguinus|8094554 +pinguinus impennis|8094610 +pinhead|8094671 +pinhole|8094748 +pinicola|8094774 +pinicola enucleator|8094827 +pining|8094909 +pinion|8094942 +pinion and crown wheel|8095141 +pinion and ring gear|8095230 +pinioned|8095319 +pinite|8095357 +pink|8095381 +pink bollworm|8095784 +pink calla|8095837 +pink cockatoo|8095930 +pink disease|8095982 +pink disease fungus|8096018 +pink elephants|8096077 +pink family|8096122 +pink fivecorner|8096226 +pink fritillary|8096281 +pink lady|8096366 +pink of my john|8096394 +pink paper daisy|8096510 +pink sand verbena|8096613 +pink shower|8096690 +pink shower tree|8096763 +pink slip|8096836 +pink wine|8096883 +pink-and-white everlasting|8095578 +pink-collar|8095681 +pink-slipped|8095715 +pinkeye|8096938 +pinkie|8096997 +pinkify|8097040 +pinkish|8097127 +pinko|8097159 +pinkroot|8097212 +pinky|8097244 +pinna|8097287 +pinnace|8097361 +pinnacle|8097409 +pinnate|8097620 +pinnate leaf|8097655 +pinnated|8097691 +pinnatifid|8097726 +pinnatiped|8097755 +pinnatisect|8097815 +pinned|8097845 +pinner|8097878 +pinning|8097898 +pinniped|8097923 +pinniped mammal|8097983 +pinnipedia|8098043 +pinnish mark|8098107 +pinnotheres|8098171 +pinnotheres ostreum|8098238 +pinnotheridae|8098308 +pinnule|8098383 +pinny|8098414 +pinochle|8098457 +pinocle|8098516 +pinocytosis|8098575 +pinon|8098649 +pinon nut|8098696 +pinon pine|8098744 +pinophytina|8098807 +pinopsida|8098896 +pinot|8098983 +pinot blanc|8099073 +pinot chardonnay|8099154 +pinot grape|8099219 +pinot noir|8099315 +pinpoint|8099391 +pinprick|8099549 +pins and needles|8099625 +pinscher|8099677 +pinsk|8099714 +pinstripe|8099764 +pinstriped|8099804 +pint|8099844 +pint-size|8099975 +pint-sized|8100036 +pintado|8100097 +pintail|8100167 +pinter|8100216 +pintle|8100274 +pinto|8100300 +pinto bean|8100336 +pinus|8100368 +pinus albicaulis|8100418 +pinus aristata|8100504 +pinus attenuata|8100617 +pinus banksiana|8100697 +pinus californiarum|8100773 +pinus cembra|8100865 +pinus cembroides|8100981 +pinus contorta|8101061 +pinus contorta murrayana|8101173 +pinus densiflora|8101279 +pinus echinata|8101385 +pinus edulis|8101489 +pinus flexilis|8101554 +pinus glabra|8101616 +pinus jeffreyi|8101688 +pinus longaeva|8101791 +pinus monophylla|8101868 +pinus monticola|8101968 +pinus mugo|8102065 +pinus muricata|8102196 +pinus nigra|8102274 +pinus palustris|8102343 +pinus parryana|8102455 +pinus pinea|8102540 +pinus ponderosa|8102641 +pinus pungens|8102749 +pinus quadrifolia|8102857 +pinus radiata|8102945 +pinus resinosa|8103021 +pinus rigida|8103112 +pinus serotina|8103203 +pinus strobiformis|8103277 +pinus strobus|8103359 +pinus sylvestris|8103460 +pinus taeda|8103562 +pinus thunbergii|8103652 +pinus torreyana|8103751 +pinus virginiana|8103883 +pinwheel|8103988 +pinwheel flower|8104087 +pinwheel roll|8104251 +pinworm|8104297 +pinyon|8104382 +piolet|8104429 +pion|8104467 +pioneer|8104505 +pious|8104693 +pious platitude|8104923 +piously|8104966 +piousness|8104991 +pip|8105030 +pip out|8105359 +pip-squeak|8105291 +pipa|8105432 +pipa americana|8105478 +pipa pipa|8105556 +pipage|8105629 +pipal|8105680 +pipal tree|8105763 +pipe|8105846 +pipe bomb|8106241 +pipe bowl|8106265 +pipe clamp|8106299 +pipe cleaner|8106335 +pipe cutter|8106376 +pipe down|8106407 +pipe dream|8106481 +pipe fitter|8106524 +pipe fitting|8106592 +pipe in|8106715 +pipe major|8106793 +pipe of peace|8106828 +pipe organ|8106888 +pipe rack|8106935 +pipe smoker|8106959 +pipe up|8107000 +pipe vine|8107119 +pipe vise|8107233 +pipe wrench|8107269 +pipe-clay|8106205 +pipeclay|8107339 +pipefish|8107373 +pipefitting|8107433 +pipeful|8107475 +pipeline|8107505 +pipeline company|8107605 +piper|8107639 +piper betel|8107751 +piper cubeba|8107827 +piper longum|8107915 +piper nigrum|8107986 +piperaceae|8108110 +piperacillin|8108206 +piperales|8108248 +piperazine|8108305 +piperin|8108373 +piperine|8108417 +piperocaine|8108461 +piperocaine hydrochloride|8108555 +pipes|8108649 +pipestem clematis|8108891 +pipet|8108946 +pipette|8109024 +pipework|8109102 +pipewort|8109157 +pipewort family|8109251 +pipidae|8109343 +pipile|8109400 +pipilo|8109447 +pipilo erythrophthalmus|8109494 +piping|8109575 +piping crow|8109682 +piping crow-shrike|8109759 +piping guan|8109836 +piping plover|8109862 +pipistrel|8109911 +pipistrelle|8110000 +pipistrellus|8110089 +pipistrellus pipistrellus|8110156 +pipistrellus subflavus|8110271 +pipit|8110376 +pippin|8110423 +pipra|8110473 +pipracil|8110517 +pipridae|8110568 +pipsissewa|8110623 +piptadenia|8110679 +piptadenia macrocarpa|8110745 +pipturus|8110833 +pipturus albidus|8110906 +pipturus argenteus|8110983 +pipul|8111086 +piquance|8111169 +piquancy|8111244 +piquant|8111319 +piquantly|8111424 +pique|8111450 +piqueria|8111565 +piquet|8111627 +piracy|8111659 +pirana|8111793 +pirandello|8111856 +piranga|8111934 +piranga flava hepatica|8111984 +piranga ludoviciana|8112063 +piranga olivacea|8112136 +piranga rubra|8112220 +piranha|8112295 +pirate|8112430 +pirate flag|8112688 +pirate ship|8112737 +piratical|8112770 +piriform area|8112905 +piriform lobe|8112987 +pirogi|8113069 +pirogue|8113112 +piroplasm|8113155 +piroshki|8113184 +pirouette|8113227 +piroxicam|8113298 +pirozhki|8113398 +pis aller|8113441 +pisa|8113482 +pisang wax|8113530 +pisanosaur|8113554 +pisanosaurus|8113624 +piscary|8113694 +piscatorial|8113734 +piscatory|8113815 +pisces|8113896 +pisces the fishes|8114129 +piscidia|8114250 +piscidia erythrina|8114310 +piscidia piscipula|8114409 +piscine|8114508 +piscivorous|8114543 +pisha paysha|8114576 +pisiform|8114614 +pisiform bone|8114689 +pismire|8114764 +pisonia|8114849 +pisonia aculeata|8114914 +piss|8114971 +piss-up|8115281 +pissaba palm|8115319 +pissed|8115415 +pissed off|8115743 +pisser|8115849 +pissing|8115945 +pissis|8116000 +pistachio|8116037 +pistachio nut|8116126 +pistachio tree|8116170 +pistacia|8116227 +pistacia terebinthus|8116300 +pistacia vera|8116395 +piste|8116466 +pistia|8116499 +pistia stratiotes|8116634 +pistia stratoites|8116787 +pistil|8116940 +pistillate|8116979 +pistillode|8117024 +pistol|8117051 +pistol grip|8117166 +pistol shrimp|8117202 +pistol-whip|8117122 +pistoleer|8117248 +piston|8117275 +piston chamber|8117354 +piston ring|8117395 +piston rod|8117421 +pisum|8117456 +pisum arvense|8117507 +pisum sativum|8117626 +pisum sativum arvense|8117716 +pisum sativum macrocarpon|8117843 +pit|8117951 +pit bull terrier|8118540 +pit of the stomach|8118670 +pit run|8118725 +pit stop|8118789 +pit viper|8118858 +pit-a-pat|8118380 +pit-run gravel|8118476 +pita|8118883 +pitahaya|8118920 +pitahaya cactus|8119031 +pitanga|8119122 +pitch|8119182 +pitch accent|8119967 +pitch apple|8120025 +pitch black|8120111 +pitch blackness|8120192 +pitch contour|8120276 +pitch in|8120340 +pitch into|8120369 +pitch pine|8120431 +pitch pipe|8120592 +pitch shot|8120628 +pitch-black|8119881 +pitch-dark|8119924 +pitchblende|8120677 +pitched|8120728 +pitched battle|8120764 +pitcher|8120821 +pitcher plant|8121115 +pitcher sage|8121156 +pitcher's mound|8120960 +pitcher-plant family|8121015 +pitcherful|8121263 +pitchfork|8121304 +pitching|8121350 +pitching change|8121425 +pitching coach|8121472 +pitching wedge|8121528 +pitchman|8121558 +pitchstone|8121663 +pitchy|8121698 +piteous|8121794 +pitfall|8121894 +pith|8121949 +pith hat|8122130 +pith helmet|8122204 +pithead|8122278 +pithecanthropus|8122338 +pithecanthropus erectus|8122433 +pithecellobium|8122536 +pithecellobium dulce|8122648 +pithecellodium unguis-cati|8122754 +pithecia|8122858 +pithecolobium|8122913 +pithiness|8123024 +pithy|8123088 +pitiable|8123143 +pitiably|8123280 +pitiful|8123310 +pitiless|8123503 +pitilessly|8123596 +pitilessness|8123654 +pitman|8123806 +pitocin|8123908 +piton|8123979 +pitot tube|8124111 +pitot-static tube|8124000 +pitprop|8124288 +pitressin|8124316 +pitsaw|8124452 +pitt|8124491 +pitt the elder|8124772 +pitt the younger|8124883 +pitta|8124999 +pittance|8125023 +pitted|8125049 +pitter-patter|8125115 +pittidae|8125300 +pitting|8125355 +pittsburgh|8125422 +pittsburgh of the south|8125482 +pittsfield|8125579 +pitty-pat|8125653 +pitty-patty|8125749 +pituitary|8125843 +pituitary body|8126021 +pituitary gland|8126123 +pituophis|8126225 +pituophis melanoleucus|8126284 +pity|8126374 +pitying|8126581 +pityingly|8126628 +pitymys|8126688 +pitymys pinetorum|8126740 +pityriasis|8126823 +pityriasis alba|8126854 +pityriasis rosea|8126890 +pityrogramma|8126927 +pityrogramma argentea|8126992 +pityrogramma calomelanos|8127062 +pityrogramma calomelanos aureoflava|8127138 +pityrogramma chrysophylla|8127236 +pius ii|8127312 +pius v|8127466 +pius vii|8127597 +pius x|8127749 +pius xi|8127888 +pius xii|8128048 +piute|8128181 +pivot|8128227 +pivot joint|8128350 +pivot man|8128472 +pivot shot|8128513 +pivotal|8128549 +pivoting window|8128590 +pix|8128622 +pix chest|8128687 +pixel|8128730 +pixie|8128795 +pixilated|8128921 +pixy|8129211 +pizarro|8129338 +pizza|8129401 +pizza parlor|8129431 +pizza pie|8129484 +pizza shop|8129514 +pizzaz|8129567 +pizzazz|8129631 +pizzeria|8129695 +pizzicato|8129748 +pj's|8129775 +pkd|8129836 +pku|8129931 +pku test|8129991 +placable|8130051 +placard|8130111 +placate|8130194 +placating|8130353 +placation|8130428 +placative|8130493 +placatory|8130568 +place|8130643 +place bet|8132237 +place down|8132266 +place kick|8132336 +place mat|8132388 +place name|8132430 +place of birth|8132463 +place of business|8132527 +place of origin|8132591 +place of worship|8132682 +place setting|8132771 +place upright|8132824 +place-kick|8131956 +place-kicker|8131993 +place-kicking|8132115 +place-worship|8132167 +placeable|8132894 +placebo|8132952 +placebo effect|8133029 +placed|8133106 +placeholder|8133175 +placekicker|8133235 +placeman|8133276 +placement|8133316 +placement center|8133455 +placement office|8133538 +placenta|8133621 +placenta previa|8133688 +placental|8133743 +placental mammal|8133845 +placentation|8133915 +placer|8134020 +placer miner|8134089 +placer mining|8134128 +placeseeker|8134169 +placid|8134209 +placidity|8134376 +placidness|8134504 +placido domingo|8134543 +placidyl|8134598 +placket|8134680 +placoderm|8134730 +placodermi|8134768 +placoid|8134822 +placuna|8134872 +placuna placenta|8134925 +plagal cadence|8135013 +plage|8135058 +plagianthus|8135079 +plagianthus betulinus|8135152 +plagianthus regius|8135252 +plagiarisation|8135349 +plagiarise|8135455 +plagiarised|8135497 +plagiariser|8135551 +plagiarism|8135632 +plagiarist|8135787 +plagiaristic|8135868 +plagiarization|8135922 +plagiarize|8136028 +plagiarized|8136070 +plagiarizer|8136124 +plagiocephaly|8136205 +plagioclase|8136358 +plagioclastic|8136407 +plague|8136446 +plague spot|8136867 +plagued|8136902 +plaguey|8136945 +plaguily|8137158 +plaguy|8137190 +plaice|8137353 +plaid|8137444 +plain|8137496 +plain clothes|8138296 +plain flour|8138408 +plain sailing|8138435 +plain stitch|8138564 +plain turkey|8138625 +plain wanderer|8138675 +plain weave|8138738 +plain-woven|8138269 +plainchant|8138779 +plainclothesman|8138831 +plainly|8138900 +plainness|8138986 +plains indian|8139180 +plains lemon monarda|8139288 +plains pocket gopher|8139358 +plains pocket mouse|8139438 +plains spadefoot|8139503 +plainsman|8139576 +plainsong|8139632 +plainspoken|8139684 +plaint|8139823 +plaintiff|8139891 +plaintiff in error|8139941 +plaintive|8139998 +plaintiveness|8140036 +plait|8140098 +plaiter|8140267 +plan|8140314 +plan of action|8140637 +plan of attack|8140684 +planar|8140772 +planaria|8140869 +planarian|8140920 +planate|8140971 +planation|8141021 +planchet|8141089 +planchette|8141128 +planck|8141154 +planck's constant|8141227 +planck's law|8141328 +planck's radiation law|8141381 +plane|8141454 +plane angle|8141872 +plane figure|8141899 +plane geometry|8141951 +plane seat|8141984 +plane section|8142009 +plane table|8142053 +plane ticket|8142117 +plane tree|8142162 +plane-polarized|8141752 +plane-tree family|8141795 +planeness|8142203 +planer|8142265 +planera|8142314 +planet|8142384 +planet gear|8142455 +planet wheel|8142544 +planetal|8142633 +planetarium|8142689 +planetary|8142773 +planetary gear|8142945 +planetary house|8143034 +planetary nebula|8143119 +planetesimal|8143152 +planetesimal hypothesis|8143203 +planetoid|8143254 +plangency|8143302 +plangent|8143410 +planimeter|8143433 +planing machine|8143519 +plank|8143568 +plank down|8143795 +plank over|8143842 +plank-bed|8143772 +planking|8143874 +plankton|8143956 +planktonic|8143989 +planktonic algae|8144023 +planless|8144063 +planned|8144151 +planner|8144344 +planning|8144466 +planning board|8144610 +planning commission|8144655 +plano|8144705 +planococcus|8144755 +planococcus citri|8144822 +planoconcave|8144902 +planoconvex|8144932 +planographic|8144968 +planographic printing|8145015 +planography|8145084 +plant|8145153 +plant bug|8145684 +plant closing|8145757 +plant department|8145815 +plant disease|8145881 +plant family|8145912 +plant fiber|8145941 +plant fibre|8146016 +plant food|8146091 +plant genus|8146142 +plant hopper|8146169 +plant hormone|8146314 +plant kingdom|8146381 +plant life|8146436 +plant louse|8146483 +plant material|8146540 +plant order|8146579 +plant organ|8146606 +plant part|8146654 +plant process|8146705 +plant product|8146764 +plant scientist|8146802 +plant structure|8146873 +plant tissue|8146924 +plant toxin|8146973 +plant virus|8147011 +plant-eating|8145612 +plantae|8147038 +plantagenet|8147101 +plantagenet line|8147203 +plantaginaceae|8147310 +plantaginales|8147420 +plantago|8147489 +plantago lanceolata|8147562 +plantago major|8147700 +plantago media|8147836 +plantago psyllium|8147899 +plantago rugelii|8147988 +plantago virginica|8148079 +plantain|8148150 +plantain family|8148356 +plantain lily|8148451 +plantain tree|8148505 +plantain-leaved pussytoes|8148271 +plantal|8148573 +plantar|8148604 +plantar reflex|8148632 +plantar wart|8148754 +plantation|8148789 +plantation owner|8148921 +plantation walking horse|8148991 +planted|8149137 +planter|8149342 +planter's punch|8149447 +planthopper|8149481 +plantigrade|8149545 +plantigrade mammal|8149578 +planting|8149660 +plantlet|8149830 +plantlike flagellate|8149871 +plantsman|8149921 +planula|8149962 +plaque|8149997 +plaquenil|8150103 +plash|8150192 +plasm|8150360 +plasma|8150452 +plasma cell|8150555 +plasma membrane|8150609 +plasma physics|8150694 +plasma protein|8150762 +plasma thromboplastin antecedent|8150794 +plasmablast|8150881 +plasmacyte|8150925 +plasmacytoma|8150979 +plasmapheresis|8151023 +plasmid|8151066 +plasmin|8151127 +plasminogen|8151164 +plasminogen activator|8151206 +plasmodial slime mold|8151296 +plasmodiidae|8151398 +plasmodiophora|8151471 +plasmodiophora brassicae|8151544 +plasmodiophoraceae|8151626 +plasmodium|8151713 +plasmodium vivax|8151794 +plassey|8151875 +plaster|8151933 +plaster bandage|8152298 +plaster cast|8152355 +plaster of paris|8152412 +plaster over|8152496 +plaster saint|8152541 +plasterboard|8152576 +plastered|8152621 +plasterer|8152897 +plasterer's float|8152946 +plastering|8152989 +plastering trowel|8153046 +plasterwork|8153080 +plastic|8153117 +plastic art|8153232 +plastic bag|8153266 +plastic bomb|8153291 +plastic explosive|8153318 +plastic film|8153374 +plastic laminate|8153440 +plastic surgeon|8153475 +plastic surgery|8153552 +plastic wrap|8153683 +plasticine|8153727 +plasticise|8153768 +plasticiser|8153844 +plasticity|8153886 +plasticize|8153937 +plasticizer|8154013 +plastics industry|8154055 +plastid|8154091 +plastinate|8154116 +plastination|8154171 +plastique|8154206 +plastron|8154262 +plat|8154369 +plata river|8154403 +plataea|8154469 +platalea|8154527 +platalea leucorodia|8154580 +plataleidae|8154656 +platan|8154720 +platanaceae|8154761 +platanistidae|8154850 +platanthera|8154922 +platanthera bifolia|8155003 +platanthera chlorantha|8155120 +platanthera leucophea|8155247 +platanus|8155355 +platanus acerifolia|8155415 +platanus occidentalis|8155504 +platanus orientalis|8155628 +platanus racemosa|8155719 +platanus wrightii|8155811 +plate|8155900 +plate armor|8156445 +plate armour|8156536 +plate glass|8156627 +plate iron|8156677 +plate rack|8156703 +plate rail|8156728 +plate tectonic theory|8156753 +plate tectonics|8156835 +plateau|8156917 +plateau striped whiptail|8156960 +plateful|8157039 +platelayer|8157076 +platelet|8157144 +plateletpheresis|8157217 +platelike|8157262 +platen|8157312 +plater|8157361 +platform|8157407 +platform bed|8157710 +platform rocker|8157736 +platforms|8157782 +plath|8158159 +platichthys|8158212 +platichthys flesus|8158274 +plating|8158376 +platinum|8158456 +platinum black|8158578 +platinum thermometer|8158623 +platinum-blonde|8158506 +platitude|8158688 +platitudinal|8158765 +platitudinarian|8158827 +platitudinous|8158865 +plato|8158927 +plato's academy|8158960 +platonic|8159009 +platonic body|8159066 +platonic solid|8159207 +platonic year|8159349 +platonism|8159431 +platonist|8159512 +platonistic|8159579 +platoon|8159655 +platt national park|8159722 +plattdeutsch|8159785 +platte|8159868 +platte river|8159910 +platte river penstemon|8159958 +plattensee|8160057 +platter|8160114 +platy|8160235 +platycephalidae|8160321 +platycerium|8160397 +platycerium alcicorne|8160459 +platycerium andinum|8160583 +platycerium bifurcatum|8160670 +platycladus orientalis|8160795 +platyctenea|8160898 +platyctenean|8160962 +platyhelminth|8161006 +platyhelminthes|8161043 +platylobium|8161114 +platylobium formosum|8161183 +platymiscium|8161254 +platymiscium pinnatum|8161326 +platymiscium trinitatis|8161420 +platypoecilus|8161489 +platypoecilus maculatus|8161557 +platypus|8161667 +platyrhine|8161788 +platyrhinian|8161871 +platyrrhine|8161954 +platyrrhini|8162080 +platyrrhinian|8162151 +platyrrhinic|8162234 +platysma|8162317 +platystemon|8162349 +platystemon californicus|8162422 +plaudit|8162497 +plaudits|8162571 +plausibility|8162708 +plausible|8162783 +plausibleness|8162986 +plausibly|8163061 +plausive|8163108 +plautus|8163181 +plautus alle|8163289 +plavix|8163347 +play|8163438 +play a joke on|8165260 +play a trick on|8165337 +play along|8165424 +play around|8165529 +play back|8165633 +play down|8165669 +play false|8165763 +play group|8165885 +play hooky|8165926 +play it by ear|8165964 +play list|8165997 +play off|8166119 +play out|8166168 +play possum|8166316 +play reading|8166373 +play therapy|8166427 +play up|8166463 +play-actor|8164975 +play-box|8165149 +playable|8166591 +playact|8166618 +playacting|8166661 +playactor|8166732 +playback|8166825 +playbill|8166890 +playbook|8166931 +playbox|8166993 +playboy|8167023 +playday|8167091 +played|8167138 +played out|8167173 +player|8167282 +player piano|8167471 +playfellow|8167547 +playful|8167620 +playfulness|8167836 +playgoer|8167948 +playground|8168030 +playground ball|8168119 +playhouse|8168158 +playing|8168203 +playing area|8168315 +playing card|8168430 +playing field|8168457 +playing period|8168592 +playlet|8168660 +playlist|8168702 +playlobium obtusangulum|8168743 +playmate|8168840 +playoff|8168913 +playoff game|8168950 +playpen|8168977 +playroom|8169008 +playschool|8169073 +playscript|8169114 +playsuit|8169181 +plaything|8169224 +playtime|8169265 +playwright|8169312 +plaza|8169356 +plea|8169528 +plea bargain|8169658 +plea bargaining|8169707 +plea of insanity|8169756 +plea-bargain|8169630 +pleach|8169801 +plead|8169900 +pleader|8170033 +pleading|8170121 +pleading in the alternative|8170199 +pleadingly|8170266 +pleasance|8170337 +pleasant|8170388 +pleasant island|8170628 +pleasant-tasting|8170535 +pleasantly|8170695 +pleasantness|8170757 +pleasantry|8170823 +please|8170864 +pleased|8170949 +pleaser|8171109 +pleasing|8171138 +pleasingness|8171467 +pleasurable|8171540 +pleasurably|8171591 +pleasure|8171623 +pleasure boat|8171981 +pleasure craft|8172061 +pleasure ground|8172141 +pleasure principle|8172215 +pleasure seeker|8172307 +pleasure trip|8172352 +pleasure-pain principle|8171797 +pleasure-unpleasure principle|8171889 +pleat|8172442 +pleated|8172575 +pleating|8172599 +pleb|8172640 +plebe|8172697 +plebeian|8172726 +plebiscite|8172850 +plecoptera|8172875 +plecopteran|8172936 +plecotus|8172983 +plecotus townsendi|8173038 +plectania|8173122 +plectognath|8173180 +plectognath fish|8173253 +plectognathi|8173326 +plectomycetes|8173417 +plectophera|8173480 +plectorrhiza|8173538 +plectranthus|8173622 +plectranthus amboinicus|8173655 +plectron|8173783 +plectrophenax|8173822 +plectrophenax nivalis|8173890 +plectrum|8173983 +pledge|8174022 +pledge taker|8174290 +pledged|8174336 +pledgee|8174432 +pledger|8174463 +pleiades|8174494 +pleione|8174574 +pleiospilos|8174643 +pleistocene|8174720 +pleistocene epoch|8174791 +plenary|8174868 +plenipotentiary|8174899 +plenitude|8174945 +plenteous|8175044 +plenteously|8175101 +plenteousness|8175157 +plentiful|8175256 +plentifully|8175355 +plentifulness|8175411 +plentitude|8175510 +plenty|8175609 +plenum|8175952 +pleochroic|8175993 +pleochroism|8176031 +pleomorphic|8176071 +pleomorphic rhabdomyosarcoma|8176110 +pleomorphic rhabdosarcoma|8176205 +pleomorphism|8176300 +pleonasm|8176381 +pleonaste|8176421 +pleonastic|8176457 +pleopod|8176518 +plesianthropus|8176572 +plesiosaur|8176645 +plesiosauria|8176722 +plesiosaurus|8176792 +plessimeter|8176869 +plessor|8176907 +plethodon|8176948 +plethodon cinereus|8177009 +plethodon vehiculum|8177097 +plethodont|8177187 +plethodontidae|8177238 +plethora|8177316 +plethoric|8177405 +plethysmograph|8177451 +pleura|8177530 +pleural|8177569 +pleural cavity|8177608 +pleural space|8177659 +pleuralgia|8177688 +pleurisy|8177743 +pleurisy root|8177782 +pleurobrachia|8177931 +pleurobrachiidae|8178005 +pleurocarp|8178090 +pleurocarpous|8178134 +pleurocarpous moss|8178171 +pleurodont|8178215 +pleurodynia|8178283 +pleuronectes|8178338 +pleuronectes platessa|8178403 +pleuronectidae|8178500 +pleuropneumonia|8178573 +pleuropneumonialike organism|8178617 +pleurosorus|8178671 +pleurothallis|8178733 +pleurotus|8178782 +pleurotus ostreatus|8178840 +pleurotus phosphoreus|8178940 +pleven|8179018 +plevna|8179095 +plexiglas|8179172 +plexiglass|8179236 +pleximeter|8179290 +pleximetry|8179328 +plexor|8179372 +plexus|8179413 +plexus autonomici|8179515 +plexus brachialis|8179572 +plexus cardiacus|8179628 +plexus caroticus|8179682 +plexus celiacus|8179736 +plexus cervicalis|8179825 +plexus choroideus|8179881 +plexus coccygeus|8179935 +plexus dentalis|8179991 +plexus hypogastricus|8180029 +plexus lumbalis|8180091 +plexus mesentericus|8180176 +plexus myentericus|8180236 +plexus periarterialis|8180294 +plexus pulmonalis|8180358 +plexus sacralis|8180415 +plf|8180467 +pliability|8180618 +pliable|8180714 +pliancy|8180889 +pliant|8180993 +pliantness|8181185 +plica|8181286 +plica vocalis|8181387 +plicate|8181454 +plication|8181522 +plicatoperipatus|8181626 +plicatoperipatus jamaicensis|8181708 +plier|8181810 +pliers|8181838 +plight|8181927 +plimsoll|8182069 +plimsoll line|8182203 +plimsoll mark|8182306 +plinian eruption|8182409 +plinth|8182479 +pliny|8182522 +pliny the elder|8182674 +pliny the younger|8182758 +pliocene|8182856 +pliocene epoch|8182904 +plo|8182958 +ploce|8183028 +ploceidae|8183054 +ploceus|8183112 +ploceus philippinus|8183162 +plod|8183247 +plodder|8183297 +plodding|8183469 +plonk|8183575 +plonk down|8183700 +plop|8183747 +plosion|8183917 +plosive|8183964 +plosive consonant|8184072 +plosive speech sound|8184168 +plot|8184264 +plot line|8184471 +plot of ground|8184505 +plotinus|8184598 +plott hound|8184637 +plotted|8184686 +plotter|8184737 +plough|8184909 +plough horse|8185060 +plough on|8185103 +ploughboy|8185187 +ploughed|8185229 +ploughing|8185261 +ploughland|8185296 +ploughman|8185393 +ploughman's lunch|8185469 +ploughshare|8185508 +ploughwright|8185551 +plovdiv|8185591 +plover|8185659 +plow|8185712 +plow ahead|8185855 +plow horse|8185893 +plowboy|8185936 +plowed|8185978 +plower|8186017 +plowing|8186093 +plowland|8186128 +plowman|8186225 +plowshare|8186301 +plowwright|8186344 +ploy|8186384 +ployurethan|8186500 +pluck|8186542 +pluck at|8186903 +plucked|8186942 +pluckiness|8187008 +plucky|8187057 +pluferfect tense|8187109 +plug|8187228 +plug away|8187836 +plug fuse|8187995 +plug hat|8188035 +plug in|8188093 +plug-ugly|8187747 +plugboard|8188147 +plugged|8188225 +plugger|8188261 +plughole|8188323 +plum|8188346 +plum pudding|8188662 +plum sauce|8188710 +plum tomato|8188736 +plum tree|8188828 +plum-fruited yew|8188449 +plum-yew|8188538 +plum-yew family|8188580 +plumage|8188863 +plumaged|8188924 +plumate|8188952 +plumb|8188994 +plumb bob|8189195 +plumb level|8189232 +plumb line|8189271 +plumb rule|8189310 +plumbable|8189355 +plumbaginaceae|8189395 +plumbaginaceous|8189525 +plumbaginales|8189582 +plumbago|8189651 +plumbago europaea|8189743 +plumbed|8189808 +plumber|8189842 +plumber's helper|8189910 +plumber's snake|8189954 +plumbery|8190001 +plumbic|8190040 +plumbing|8190088 +plumbing fixture|8190218 +plumbing system|8190252 +plumbism|8190294 +plumbous|8190372 +plumcot|8190420 +plumcot tree|8190481 +plume|8190522 +plume grass|8190971 +plume poppy|8190998 +plume thistle|8191051 +plumed|8191097 +plumed scorpionfish|8191195 +plumed thistle|8191287 +plumed tussock|8191333 +plumelike|8191416 +plumeria|8191451 +plumeria acutifolia|8191533 +plumeria alba|8191629 +plumiera|8191721 +plumlike|8191803 +plummet|8191829 +plummy|8191884 +plumose|8191936 +plump|8191978 +plump down|8192281 +plump for|8192410 +plump in|8192495 +plump out|8192529 +plump up|8192655 +plumping|8192705 +plumpness|8192729 +plumule|8192778 +plumy|8192813 +plunder|8192916 +plunderage|8193138 +plundered|8193226 +plunderer|8193277 +plundering|8193362 +plunge|8193440 +plunger|8193854 +plunk|8193997 +plunk down|8194269 +plunk for|8194364 +plunker|8194449 +pluperfect|8194493 +plural|8194627 +plural form|8194710 +pluralism|8194774 +pluralist|8194856 +pluralistic|8194914 +plurality|8194997 +plus|8195160 +plus fours|8195297 +plus sign|8195375 +plush|8195399 +plushy|8195484 +plutarch|8195532 +pluteaceae|8195570 +pluteus|8195633 +pluteus aurantiorugosus|8195699 +pluteus cervinus|8195763 +pluteus magnus|8195827 +pluto|8195890 +plutocracy|8196037 +plutocrat|8196093 +plutocratic|8196144 +plutocratical|8196210 +pluton|8196276 +plutonian|8196339 +plutonic|8196394 +plutonic rock|8196441 +plutonium|8196504 +plutonium 239|8196568 +plutonium bomb|8196621 +plutonium pit|8196707 +plutonium trigger|8196756 +pluvial|8196805 +pluvialis|8196847 +pluvianus|8196903 +pluvianus aegyptius|8196959 +pluviometer|8197031 +pluviose|8197093 +pluvious|8197149 +ply|8197191 +plyboard|8197368 +plyer|8197403 +plyers|8197431 +plymouth|8197520 +plymouth colony|8197552 +plymouth rock|8197620 +plywood|8197721 +plzen|8197756 +pm|8197789 +pms|8198104 +pneumatic|8198395 +pneumatic caisson|8198417 +pneumatic drill|8198470 +pneumatic hammer|8198507 +pneumatic tire|8198575 +pneumatic tyre|8198624 +pneumatics|8198673 +pneumatophore|8198703 +pneumococcal|8198731 +pneumococcal pneumonia|8198764 +pneumococcal vaccine|8198806 +pneumococcus|8198863 +pneumoconiosis|8198920 +pneumocystis carinii pneumonia|8199022 +pneumocystis pneumonia|8199144 +pneumocytosis|8199266 +pneumoencephalogram|8199388 +pneumogastric|8199482 +pneumogastric nerve|8199678 +pneumonectomy|8199802 +pneumonia|8199867 +pneumonic|8199947 +pneumonic plague|8200069 +pneumonitis|8200102 +pneumonoconiosis|8200150 +pneumothorax|8200252 +pneumovax|8200316 +pnom penh|8200383 +po|8200458 +po box no|8200739 +po box number|8200821 +po river|8200907 +po-faced|8200689 +poa|8200943 +poa nemoralis|8201000 +poa pratensis|8201093 +poaceae|8201214 +poach|8201357 +poached|8201414 +poached egg|8201452 +poacher|8201490 +poaching|8201617 +pob|8201663 +pobeda peak|8201728 +pobedy peak|8201787 +pocahontas|8201846 +pocatello|8201908 +pochard|8201942 +pock|8201978 +pocked|8202046 +pocket|8202125 +pocket battleship|8202748 +pocket billiards|8202798 +pocket book|8202840 +pocket borough|8203106 +pocket bread|8203138 +pocket calculator|8203175 +pocket comb|8203249 +pocket dictionary|8203367 +pocket edition|8203431 +pocket flap|8203569 +pocket flask|8203595 +pocket gopher|8203632 +pocket knife|8203685 +pocket lighter|8203806 +pocket money|8203892 +pocket mouse|8203968 +pocket rat|8204001 +pocket veto|8204025 +pocket watch|8204051 +pocket-handkerchief|8202467 +pocket-size|8202529 +pocket-sized|8202639 +pocketable|8204086 +pocketbook|8204137 +pocketcomb|8204370 +pocketed bat|8204407 +pocketed freetail bat|8204512 +pocketful|8204617 +pocketknife|8204649 +pockmark|8204689 +pockmarked|8204726 +pod|8204801 +podalgia|8204952 +podalyria|8204983 +podargidae|8205046 +podargus|8205107 +podaxaceae|8205160 +podetium|8205218 +podgy|8205258 +podiatrist|8205295 +podiatry|8205369 +podiceps|8205424 +podiceps cristatus|8205477 +podiceps grisegena|8205550 +podiceps nigricollis|8205620 +podiceps ruficollis|8205708 +podicipedidae|8205785 +podicipediformes|8205855 +podicipitiform seabird|8206008 +podicipitiformes|8206065 +podilymbus|8206218 +podilymbus podiceps|8206277 +podium|8206350 +podlike|8206414 +podocarp|8206440 +podocarpaceae|8206482 +podocarpus|8206576 +podocarpus amara|8206641 +podocarpus coriaceus|8206744 +podocarpus dacrydioides|8206840 +podocarpus elatus|8207002 +podocarpus elongatus|8207102 +podocarpus family|8207212 +podocarpus ferruginea|8207292 +podocarpus latifolius|8207408 +podocarpus nivalis|8207511 +podocarpus spicata|8207583 +podocarpus totara|8207693 +podophyllum|8207769 +podophyllum peltatum|8207842 +podsol|8207948 +podsol soil|8208019 +podsolic soil|8208090 +podzol|8208161 +podzol soil|8208232 +poe|8208303 +poeciliid|8208355 +poeciliid fish|8208428 +poeciliidae|8208501 +poecilocapsus|8208565 +poecilocapsus lineatus|8208638 +poecilogale|8208757 +poecilogale albinucha|8208821 +poem|8208898 +poenology|8208958 +poephila|8208998 +poephila castanotis|8209051 +poesy|8209135 +poet|8209198 +poet laureate|8209324 +poet-singer|8209226 +poetess|8209375 +poetic|8209397 +poetic justice|8209532 +poetic license|8209619 +poetic rhythm|8209659 +poetical|8209721 +poetics|8209805 +poetise|8209837 +poetiser|8209901 +poetize|8209969 +poetizer|8210033 +poetry|8210101 +pogey|8210194 +pogge|8210242 +pogo stick|8210322 +pogonia|8210356 +pogonia divaricata|8210399 +pogonia rosea|8210538 +pogonion|8210631 +pogonip|8210668 +pogonophora|8210697 +pogonophoran|8210756 +pogostemon|8210794 +pogostemon cablin|8210862 +pogrom|8210947 +pogy|8210975 +poi|8211023 +poignance|8211041 +poignancy|8211099 +poignant|8211179 +poignantly|8211238 +poikilotherm|8211280 +poikilothermic|8211360 +poikilothermous|8211439 +poilu|8211518 +poinciana|8211560 +poinciana gilliesii|8211708 +poinciana pulcherrima|8211822 +poinciana regia|8211965 +poinsettia|8212107 +poinsettia strain|8212233 +point|8212306 +point after|8213939 +point duty|8213983 +point in time|8214019 +point jam|8214072 +point lace|8214101 +point man|8214138 +point mutation|8214179 +point of accumulation|8214264 +point of apoapsis|8214333 +point of departure|8214385 +point of entry|8214534 +point of honor|8214577 +point of intersection|8214609 +point of no return|8214678 +point of order|8214754 +point of periapsis|8214841 +point of reference|8214895 +point of view|8214959 +point out|8215066 +point source|8215223 +point system|8215282 +point the way|8215397 +point up|8215427 +point woman|8215500 +point-and-shoot camera|8213716 +point-blank|8213775 +point-of-sale|8213908 +pointed|8215528 +pointed arch|8216073 +pointed-leaf maple|8215984 +pointed-toe|8216031 +pointedness|8216100 +pointel|8216133 +pointer|8216189 +pointilism|8216302 +pointilist|8216328 +pointillism|8216387 +pointillistic|8216446 +pointing|8216490 +pointing out|8216514 +pointing trowel|8216556 +pointless|8216588 +pointlessness|8216731 +pointrel|8216813 +pointsman|8216869 +pointy-toed|8216900 +poise|8216942 +poised|8217204 +poison|8217311 +poison arrow plant|8217741 +poison ash|8217842 +poison bush|8217939 +poison camas|8218033 +poison dogwood|8218095 +poison gas|8218192 +poison hemlock|8218232 +poison ivy|8218354 +poison mercury|8218485 +poison milkweed|8218593 +poison oak|8218681 +poison parsley|8218812 +poison pea|8218934 +poison pill|8218990 +poison sumac|8219047 +poison-berry|8217565 +poisonberry|8219167 +poisoner|8219262 +poisoning|8219294 +poisonous|8219423 +poisonous nightshade|8219528 +poisonous parasol|8219677 +poisonous plant|8219728 +poisonous substance|8219776 +poisonously|8219829 +poisson distribution|8219860 +poitier|8219949 +poitiers|8220032 +poitou|8220166 +poitou-charentes|8220220 +poitrine d'agneau|8220284 +poivrade|8220338 +poke|8220384 +poke at|8220745 +poke bonnet|8220784 +poke check|8220828 +poke fun|8220854 +poke into|8220944 +poke milkweed|8221103 +poke out|8221163 +poker|8221201 +poker alumroot|8221392 +poker chip|8221470 +poker face|8221503 +poker game|8221542 +poker hand|8221584 +poker heuchera|8221614 +poker plant|8221692 +poker-faced|8221293 +pokeweed|8221786 +pokeweed family|8221826 +pokey|8221915 +poking|8222041 +pokomo|8222099 +poky|8222145 +pol|8222231 +polack|8222288 +poland|8222309 +polanisia|8222391 +polanisia dodecandra|8222458 +polanisia graveolens|8222563 +polar|8222668 +polar bear|8222924 +polar body|8222995 +polar circle|8223020 +polar coordinate|8223098 +polar front|8223147 +polar glacier|8223185 +polar hare|8223228 +polar opposition|8223280 +polar star|8223326 +polar zone|8223425 +polarimeter|8223471 +polaris|8223519 +polarisation|8223626 +polariscope|8223717 +polarise|8223765 +polarity|8223895 +polarization|8223991 +polarize|8224082 +polarographic|8224212 +polarography|8224273 +polaroid|8224334 +polaroid camera|8224379 +polaroid land camera|8224468 +pole|8224562 +pole horse|8224980 +pole jump|8225073 +pole jumper|8225142 +pole jumping|8225197 +pole position|8225266 +pole star|8225304 +pole vault|8225484 +pole vaulter|8225553 +pole vaulting|8225608 +poleax|8225677 +poleaxe|8225790 +polecat|8225901 +polecat weed|8226054 +polemic|8226160 +polemical|8226332 +polemically|8226373 +polemicise|8226409 +polemicist|8226497 +polemicize|8226548 +polemics|8226636 +polemise|8226820 +polemist|8226908 +polemize|8226959 +polemoniaceae|8227047 +polemoniaceous|8227139 +polemoniales|8227183 +polemonium|8227249 +polemonium boreale|8227291 +polemonium caeruleum|8227373 +polemonium reptans|8227531 +polemonium van-bruntiae|8227604 +polemonium viscosum|8227765 +polenta|8227846 +poler|8227882 +polestar|8227945 +polianthes|8228044 +polianthes tuberosa|8228113 +police|8228178 +police academy|8228283 +police action|8228315 +police blotter|8228361 +police boat|8228456 +police captain|8228482 +police car|8228560 +police chief|8228671 +police commissioner|8228749 +police constable|8228791 +police court|8228860 +police cruiser|8228908 +police department|8229019 +police detective|8229094 +police dog|8229180 +police force|8229212 +police headquarters|8229297 +police investigation|8229377 +police lieutenant|8229447 +police matron|8229518 +police office|8229586 +police officer|8229666 +police precinct|8229741 +police sergeant|8229775 +police squad|8229842 +police state|8229875 +police station|8230025 +police van|8230105 +police wagon|8230185 +police work|8230265 +policeman|8230335 +policeman bird|8230410 +policewoman|8230488 +policy|8230556 +policy change|8230724 +policy maker|8230785 +policy-making|8230691 +policyholder|8230853 +polio|8230891 +poliomyelitis|8230988 +polioptila|8231085 +poliosis|8231144 +poliovirus|8231177 +poliovirus vaccine|8231209 +polish|8231254 +polish monetary unit|8231770 +polish notation|8231835 +polish off|8231939 +polish up|8232110 +polished|8232174 +polished rice|8232348 +polisher|8232387 +polishing|8232423 +polistes|8232455 +polistes annularis|8232513 +politburo|8232571 +polite|8232611 +politely|8232757 +politeness|8232839 +politesse|8232916 +politic|8232976 +political|8233089 +political action committee|8233224 +political arena|8233285 +political boss|8233364 +political campaign|8233445 +political commissar|8233592 +political contribution|8233652 +political correctitude|8233725 +political correctness|8233791 +political detainee|8233857 +political dissident|8233911 +political donation|8233990 +political economy|8234063 +political hack|8234132 +political incorrectness|8234233 +political leader|8234280 +political liberty|8234337 +political machine|8234386 +political movement|8234447 +political orientation|8234506 +political party|8234575 +political platform|8234632 +political prisoner|8234728 +political program|8234773 +political relation|8234869 +political science|8234922 +political scientist|8234984 +political sphere|8235030 +political sympathies|8235109 +political system|8235190 +political theory|8235248 +political unit|8235317 +politically correct|8235358 +politically incorrect|8235398 +politician|8235442 +politicise|8235536 +politicize|8235587 +politick|8235638 +politico|8235680 +politics|8235737 +polity|8235929 +polk|8236027 +polka|8236183 +polka dot|8236272 +poll|8236313 +poll parrot|8236687 +poll taker|8236720 +poll tax|8236814 +pollachius|8236843 +pollachius pollachius|8236902 +pollack|8236990 +pollard|8237163 +pollen|8237258 +pollen count|8237280 +pollen tube|8237308 +pollenate|8237356 +pollenation|8237442 +pollex|8237528 +pollinate|8237557 +pollination|8237643 +pollinator|8237729 +polling booth|8237756 +polling day|8237805 +polling place|8237843 +polling station|8237911 +pollinium|8237979 +pollinosis|8238005 +polliwog|8238053 +pollock|8238094 +polls|8238229 +pollster|8238531 +pollucite|8238625 +pollutant|8238652 +pollute|8238719 +polluted|8238791 +polluter|8238829 +pollution|8238866 +pollux|8239026 +polly fish|8239054 +pollyannaish|8239208 +pollyfish|8239257 +pollywog|8239330 +polo|8239371 +polo ball|8239575 +polo mallet|8239599 +polo pony|8239638 +polo shirt|8239678 +polo stick|8239716 +polo-neck|8239438 +polo-neck collar|8239515 +polonaise|8239755 +polonium|8239786 +polony|8239847 +polska|8239887 +poltergeist|8239969 +poltroon|8239996 +poltroonery|8240061 +polyamide|8240114 +polyandrist|8240157 +polyandrous|8240189 +polyandry|8240221 +polyangiaceae|8240249 +polyangium|8240364 +polyanthus|8240427 +polyarteritis|8240482 +polyarteritis nodosa|8240515 +polyatomic|8240574 +polyborus|8240610 +polyborus cheriway audubonii|8240666 +polyborus plancus|8240761 +polybotria|8240824 +polybotria cervina|8240911 +polybotrya|8241032 +polybotrya cervina|8241119 +polybutene|8241240 +polybutylene|8241289 +polychaeta|8241338 +polychaete|8241392 +polychaete worm|8241489 +polychete|8241586 +polychete worm|8241683 +polychromatic|8241780 +polychrome|8241873 +polychromic|8242048 +polychromise|8242120 +polychromize|8242236 +polycillin|8242352 +polycirrus|8242429 +polyconic projection|8242488 +polycrystalline|8242554 +polycystic kidney disease|8242591 +polycythemia|8242682 +polydactyl|8242733 +polydactylous|8242793 +polydactylus|8242853 +polydactylus virginicus|8242918 +polydactyly|8242991 +polydipsia|8243118 +polyelectrolyte|8243145 +polyergus|8243182 +polyergus rufescens|8243243 +polyester|8243332 +polyester fiber|8243425 +polyestrous|8243460 +polyethylene|8243502 +polyfoam|8243550 +polygala|8243611 +polygala alba|8243671 +polygala lutea|8243724 +polygala paucifolia|8243839 +polygala senega|8243962 +polygala vulgaris|8244086 +polygalaceae|8244168 +polygamist|8244258 +polygamous|8244325 +polygamy|8244449 +polygene|8244521 +polygenic|8244559 +polygenic disease|8244600 +polygenic disorder|8244810 +polyglot|8245020 +polygon|8245120 +polygonaceae|8245189 +polygonal|8245294 +polygonal shape|8245348 +polygonales|8245417 +polygonatum|8245480 +polygonatum biflorum|8245552 +polygonatum commutatum|8245662 +polygonia|8245774 +polygonia comma|8245835 +polygonum|8245973 +polygonum aubertii|8246049 +polygonum fagopyrum|8246149 +polygonum orientale|8246251 +polygraph|8246397 +polygynist|8246435 +polygynous|8246466 +polygyny|8246497 +polyhedral|8246524 +polyhedral angle|8246549 +polyhedron|8246581 +polyhidrosis|8246607 +polyhymnia|8246708 +polymastigina|8246744 +polymastigote|8246814 +polymath|8246918 +polymer|8246974 +polymerase|8247018 +polymeric|8247045 +polymeric amide|8247090 +polymerisation|8247133 +polymerise|8247221 +polymerization|8247304 +polymerize|8247392 +polymethyl methacrylate|8247475 +polymonium caeruleum van-bruntiae|8247545 +polymorph|8247716 +polymorphic|8247750 +polymorphism|8247871 +polymorphous|8247952 +polymox|8248071 +polymyositis|8248151 +polymyxin|8248182 +polynemidae|8248228 +polynesia|8248292 +polynesian|8248333 +polynesian tattler|8248377 +polyneuritic psychosis|8248453 +polyneuritis|8248636 +polynomial|8248685 +polyodon|8248769 +polyodon spathula|8248822 +polyodontidae|8248906 +polyoestrous|8248976 +polyoicous|8249018 +polyoma|8249092 +polyoma virus|8249135 +polyose|8249178 +polyostotic fibrous dysplasia|8249240 +polyp|8249324 +polypectomy|8249384 +polypedates|8249478 +polypedatidae|8249545 +polypeptide|8249620 +polypetalous|8249649 +polyphase|8249697 +polyphemus moth|8249746 +polyphone|8249817 +polyphonic|8249905 +polyphonic letter|8250030 +polyphonic music|8250118 +polyphonic prose|8250176 +polyphonous|8250208 +polyphony|8250245 +polyphosphate|8250303 +polyphosphoric acid|8250331 +polyplacophora|8250380 +polyplacophore|8250446 +polyploid|8250533 +polyploidy|8250593 +polypodiaceae|8250623 +polypodiales|8250693 +polypodium|8250785 +polypodium aureum|8250844 +polypodium glycyrrhiza|8250960 +polypodium polypodioides|8251038 +polypodium scouleri|8251138 +polypodium virgianum|8251241 +polypodium vulgare|8251345 +polypody|8251485 +polyporaceae|8251508 +polypore|8251577 +polyporus|8251657 +polyporus frondosus|8251715 +polyporus squamosus|8251822 +polyporus tenuiculus|8251921 +polyprion|8252007 +polyprion americanus|8252063 +polypropene|8252144 +polypropenonitrile|8252187 +polypropylene|8252260 +polyptoton|8252303 +polypus|8252334 +polysaccharide|8252364 +polysemant|8252426 +polysemantic|8252485 +polysemantic word|8252528 +polysemous|8252587 +polysemous word|8252630 +polysemy|8252689 +polysomy|8252749 +polystichum|8252860 +polystichum acrostichoides|8252922 +polystichum aculeatum|8253050 +polystichum adiantiformis|8253139 +polystichum braunii|8253270 +polystichum lonchitis|8253369 +polystichum scopulinum|8253453 +polystichum setiferum|8253538 +polystyrene|8253633 +polysyllabic|8253700 +polysyllabic word|8253758 +polysyllable|8253803 +polysyndeton|8253848 +polysynthetic|8253888 +polytechnic|8253935 +polytechnic institute|8254019 +polytetrafluoroethylene|8254103 +polytheism|8254151 +polytheistic|8254178 +polythene|8254213 +polytonal|8254261 +polytonalism|8254286 +polytonality|8254327 +polyunsaturated|8254368 +polyunsaturated fat|8254405 +polyunsaturated fatty acid|8254438 +polyurethane|8254497 +polyurethane foam|8254539 +polyuria|8254600 +polyvalence|8254670 +polyvalency|8254735 +polyvalent|8254800 +polyvinyl acetate|8254901 +polyvinyl chloride|8254974 +polyvinyl resin|8255048 +polyvinyl-formaldehyde|8254861 +polyzoa|8255115 +polyzoan|8255229 +pom|8255298 +pom-pom|8255332 +pomacanthus|8255438 +pomace fly|8255500 +pomacentridae|8255584 +pomacentrus|8255654 +pomacentrus leucostictus|8255716 +pomade|8255809 +pomaded|8255898 +pomaderris|8255923 +pomaderris apetala|8256002 +pomatomidae|8256071 +pomatomus|8256135 +pomatomus saltatrix|8256191 +pomatum|8256281 +pome|8256350 +pomegranate|8256382 +pomegranate tree|8256467 +pomelo|8256532 +pomelo tree|8256691 +pomeranian|8256800 +pomfret|8256837 +pomme blanche|8256881 +pomme de prairie|8256989 +pommel|8257097 +pommel horse|8257251 +pommy|8257290 +pomo|8257324 +pomolobus|8257376 +pomolobus pseudoharengus|8257432 +pomology|8257541 +pomoxis|8257576 +pomoxis annularis|8257626 +pomoxis nigromaculatus|8257693 +pomp|8257770 +pompadour|8257799 +pompano|8257943 +pompeii|8258005 +pompey|8258059 +pompey the great|8258234 +pompon|8258360 +pomposity|8258446 +pompous|8258555 +pompousness|8258630 +ponca|8258739 +ponce|8258801 +poncho|8258882 +poncirus|8258904 +poncirus trifoliata|8258964 +pond|8259059 +pond apple|8259259 +pond bald cypress|8259363 +pond cypress|8259461 +pond lily|8259523 +pond pine|8259602 +pond scum|8259661 +pond-apple tree|8259083 +pond-scum parasite|8259166 +pond-skater|8259201 +ponder|8259704 +ponderable|8259845 +ponderer|8259914 +pondering|8259963 +ponderosa|8260071 +ponderosa pine|8260163 +ponderosity|8260255 +ponderous|8260339 +ponderousness|8260421 +pondweed|8260505 +pondweed family|8260645 +pone|8260743 +pong|8260776 +pongamia|8260852 +pongamia glabra|8260912 +pongee|8260971 +pongid|8261017 +pongidae|8261058 +pongo|8261115 +pongo pygmaeus|8261161 +poniard|8261244 +ponka|8261301 +pons|8261363 +pons asinorum|8261407 +pons varolii|8261438 +ponstel|8261495 +ponte 25 de abril|8261608 +pontederia|8261671 +pontederia cordata|8261749 +pontederiaceae|8261885 +pontiac|8261998 +pontifex|8262031 +pontiff|8262056 +pontifical|8262189 +pontificate|8262347 +pontoon|8262454 +pontoon bridge|8262511 +pontoon plane|8262577 +pontos|8262631 +pontus|8262673 +pony|8262801 +pony cart|8263075 +pony express|8263210 +pony up|8263253 +pony-trekking|8263017 +ponycart|8263292 +ponytail|8263346 +pooch|8263391 +pooch out|8263491 +pood|8263522 +poodle|8263555 +poodle dog|8263616 +pooecetes|8263677 +pooecetes gramineus|8263733 +poof|8263827 +pooh-bah|8263919 +pooh-pooh|8264000 +pool|8264138 +pool ball|8264491 +pool cue|8264515 +pool player|8264575 +pool stick|8264615 +pool table|8264675 +pooler|8264745 +pooling of interest|8264777 +poolroom|8264856 +poon|8264879 +poop|8264910 +poop deck|8265163 +poop out|8265208 +poor|8265291 +poor box|8265885 +poor boy|8265925 +poor devil|8266082 +poor fish|8266116 +poor law|8266219 +poor man|8266241 +poor man's orchid|8266287 +poor man's pulse|8266350 +poor man's weatherglass|8266463 +poor person|8266557 +poor rates|8266618 +poor shape|8266644 +poor speller|8266728 +poor white|8266778 +poor white trash|8266856 +poor-spirited|8265823 +poorest|8266934 +poorhouse|8267520 +poorly|8267553 +poorness|8267651 +poorwill|8267897 +poove|8267972 +pop|8268064 +pop art|8268690 +pop bottle|8268746 +pop fly|8268785 +pop group|8268815 +pop in|8268843 +pop music|8268913 +pop off|8268970 +pop out|8269169 +pop quiz|8269395 +pop tent|8269418 +pop the question|8269461 +pop up|8269525 +popcorn|8269560 +popcorn ball|8269649 +pope|8269677 +pope alexander vi|8269898 +pope's nose|8269839 +popery|8270068 +popeyed|8270101 +popgun|8270164 +popillia|8270194 +popillia japonica|8270252 +popinjay|8270353 +popish|8270410 +poplar|8270494 +poplar bluff|8270568 +poplar tree|8270608 +poplin|8270670 +popliteal|8270716 +popliteal artery|8270773 +popliteal vein|8270853 +popover|8270921 +popper|8270949 +poppet|8271004 +poppet valve|8271039 +popping|8271074 +poppy|8271101 +poppy day|8271123 +poppy family|8271195 +poppy mallow|8271273 +poppy seed|8271302 +poppycock|8271381 +popsicle|8271482 +populace|8271540 +popular|8271578 +popular democratic front for the liberation of palestine|8271771 +popular front|8272028 +popular front for the liberation of palestine|8272090 +popular front for the liberation of palestine-general command|8272270 +popular music|8272485 +popular music genre|8272574 +popular opinion|8272663 +popular struggle front|8272729 +popular with|8272862 +popularisation|8272904 +popularise|8273031 +populariser|8273246 +popularism|8273314 +popularity|8273340 +popularity contest|8273368 +popularization|8273404 +popularize|8273531 +popularizer|8273746 +populate|8273814 +populated|8273932 +populated area|8273961 +population|8274068 +population commission|8274252 +population control|8274362 +population growth|8274405 +population profile|8274458 +population scientist|8274494 +population shift|8274561 +populism|8274622 +populist|8274703 +populist party|8274768 +populous|8274844 +populus|8274888 +populus alba|8274949 +populus balsamifera|8275068 +populus canescens|8275171 +populus deltoides|8275247 +populus grandidentata|8275338 +populus heterophylla|8275500 +populus nigra|8275622 +populus nigra italica|8275691 +populus tremula|8275787 +populus tremuloides|8275871 +populus trichocarpa|8275964 +porbeagle|8276063 +porc|8276109 +porcelain|8276133 +porcelain clay|8276165 +porcellio|8276243 +porcellionidae|8276304 +porch|8276382 +porcine|8276420 +porcupine|8276551 +porcupine ball|8276608 +porcupine fish|8276652 +porcupine provision|8276799 +porcupinefish|8276857 +porcupines|8276923 +pore|8277022 +pore fungus|8277183 +pore mushroom|8277263 +porgy|8277343 +porifera|8277401 +poriferan|8277451 +poriferous|8277499 +poring over|8277533 +pork|8277588 +pork and beans|8277883 +pork barrel|8277912 +pork belly|8277952 +pork butcher|8277985 +pork loin|8278023 +pork pie|8278054 +pork roast|8278121 +pork sausage|8278164 +pork tenderloin|8278194 +pork-and-veal goulash|8277645 +pork-barreling|8277709 +pork-fish|8277745 +porkchop|8278239 +porker|8278262 +porkfish|8278314 +porkholt|8278371 +porkpie|8278422 +porkpie hat|8278467 +porn|8278512 +porn merchant|8278584 +porno|8278648 +pornographer|8278720 +pornographic|8278784 +pornography|8278811 +poronotus|8278883 +poronotus triacanthus|8278939 +poroporo|8279041 +porose|8279103 +porosity|8279137 +porous|8279195 +porousness|8279272 +porphyra|8279330 +porphyria|8279389 +porphyrin|8279572 +porphyrio|8279599 +porphyrio porphyrio|8279655 +porphyritic|8279740 +porphyritic rock|8279773 +porphyrula|8279821 +porphyrula martinica|8279880 +porphyry|8279967 +porpoise|8280015 +porpoise oil|8280041 +porridge|8280074 +porringer|8280097 +port|8280121 +port arthur|8280821 +port jackson fig|8280929 +port jackson heath|8281039 +port jackson pine|8281115 +port louis|8281198 +port moresby|8281251 +port of call|8281331 +port of entry|8281382 +port of spain|8281425 +port orford cedar|8281605 +port sudan|8281778 +port vila|8281843 +port watcher|8281913 +port wine|8282060 +port-access coronary bypass surgery|8280447 +port-au-prince|8280513 +port-of-spain|8280585 +port-wine stain|8280765 +porta|8282099 +porta hepatis|8282149 +portability|8282194 +portable|8282238 +portable computer|8282338 +portable saw|8282400 +portacaval shunt|8282444 +portage|8282476 +portal|8282544 +portal hypertension|8282731 +portal site|8282783 +portal system|8282839 +portal vein|8282878 +portcullis|8282968 +porte|8282993 +porte-cochere|8283046 +portend|8283126 +portent|8283284 +portentous|8283385 +porter|8283548 +porter's beer|8283917 +porterage|8283951 +porterhouse|8283990 +porterhouse steak|8284039 +portfolio|8284088 +porthole|8284165 +portia tree|8284220 +portico|8284300 +porticoed|8284323 +portiere|8284391 +portion|8284443 +portion out|8284928 +portland|8285008 +portland cement|8285138 +portly|8285203 +portmanteau|8285229 +portmanteau word|8285362 +porto|8285432 +porto novo|8285494 +porto rico|8285559 +portrait|8285683 +portrait camera|8285874 +portrait lens|8285926 +portrait painter|8285974 +portraitist|8286037 +portraiture|8286100 +portray|8286270 +portrayal|8286409 +portrayed|8286785 +portrayer|8286855 +portraying|8286918 +portsmouth|8286993 +portugal|8287145 +portuguese|8287225 +portuguese cypress|8287387 +portuguese escudo|8287505 +portuguese guinea|8287582 +portuguese heath|8287711 +portuguese man-of-war|8287802 +portuguese monetary unit|8287889 +portuguese republic|8287962 +portulaca|8288053 +portulaca grandiflora|8288079 +portulaca oleracea|8288162 +portulacaceae|8288259 +portunidae|8288360 +portunus|8288426 +portunus puber|8288484 +portwatcher|8288555 +porzana|8288621 +porzana porzana|8288671 +pose|8288732 +posed|8289337 +poseidon|8289381 +poser|8289420 +poseur|8289549 +poseuse|8289594 +posh|8289624 +posing|8289671 +posit|8289725 +position|8289912 +position effect|8290563 +position paper|8290641 +positionable|8290739 +positional|8290769 +positional notation|8290794 +positional representation system|8290938 +positioner|8291082 +positioning|8291127 +positive|8291244 +positive charge|8291759 +positive chemotaxis|8291807 +positive correlation|8291847 +positive feedback|8291933 +positive fraud|8291982 +positive identification|8292026 +positive magnetic pole|8292074 +positive muon|8292158 +positive pole|8292201 +positive reinforcer|8292306 +positive reinforcing stimulus|8292411 +positive stimulus|8292516 +positively charged|8292580 +positiveness|8292616 +positivism|8292660 +positivist|8292773 +positivistic|8292901 +positivity|8292990 +positron|8293029 +positron emission tomography|8293071 +positron emission tomography scanner|8293132 +posology|8293200 +posse|8293271 +posse comitatus|8293339 +posseman|8293407 +possess|8293440 +possessed|8293502 +possession|8293594 +possessive|8293886 +possessive case|8293970 +possessiveness|8294039 +possessor|8294069 +posset|8294147 +possibility|8294169 +possible|8294376 +possible action|8294811 +possibleness|8294882 +possibly|8294942 +possum|8295021 +possum haw|8295120 +possum oak|8295181 +possumwood|8295238 +post|8295323 +post and lintel|8296731 +post card|8296779 +post chaise|8296918 +post doc|8296961 +post exchange|8297169 +post hoc|8297206 +post hoc ergo propter hoc|8297266 +post hole|8297326 +post horn|8297440 +post horse|8297480 +post meridiem|8297528 +post oak|8297586 +post office|8297667 +post road|8297831 +post-free|8296201 +post-hole digger|8296241 +post-impressionist|8296290 +post-it|8296444 +post-obit bond|8296479 +post-office box|8296525 +post-office box number|8296586 +post-paid|8296658 +post-rotational nystagmus|8296686 +postage|8297861 +postage meter|8297923 +postage stamp|8297952 +postal|8298000 +postal card|8298043 +postal clerk|8298101 +postal code|8298140 +postal order|8298184 +postal rate commission|8298258 +postal service|8298332 +postbag|8298407 +postbox|8298436 +postcard|8298481 +postcava|8298539 +postcentral gyrus|8298586 +postcode|8298627 +postdate|8298671 +postdoc|8298729 +poste restante|8298857 +posted|8298947 +poster|8298978 +poster board|8299110 +poster boy|8299264 +poster child|8299297 +poster color|8299400 +poster colour|8299474 +poster girl|8299548 +poster paint|8299582 +posterboard|8299656 +posterior|8299729 +posterior cardinal vein|8300017 +posterior cerebral artery|8300064 +posterior facial vein|8300131 +posterior labial veins|8300232 +posterior meningeal artery|8300317 +posterior naris|8300387 +posterior pituitary|8300418 +posterior pituitary gland|8300543 +posterior serratus muscle|8300668 +posterior synechia|8300776 +posterior temporal artery|8300813 +posterior vein of the left ventricle|8300893 +posteriority|8301004 +posterity|8301095 +postern|8301161 +postexilic|8301183 +postfix|8301248 +postfix notation|8301297 +postganglionic|8301389 +postgraduate|8301429 +posthitis|8301536 +posthole|8301582 +posthole digger|8301615 +posthumous|8301664 +posthumous birth|8301689 +posthypnotic amnesia|8301788 +posthypnotic suggestion|8301836 +postiche|8301880 +postictal|8301984 +postilion|8302009 +postillion|8302075 +postimpressionist|8302141 +postindustrial|8302213 +posting|8302248 +postman|8302375 +postmark|8302471 +postmaster|8302528 +postmaster general|8302555 +postmature infant|8302604 +postmenopausal|8302675 +postmeridian|8302714 +postmillennial|8302771 +postmistress|8302857 +postmodern|8302890 +postmodernism|8302929 +postmodernist|8302958 +postmortal|8302997 +postmortem|8303028 +postmortem examination|8303196 +postnasal drip|8303280 +postnatal|8303312 +postnuptial|8303352 +postoperative|8303436 +postpaid|8303478 +postpartum|8303509 +postpone|8303539 +postponed|8303633 +postponement|8303669 +postponer|8303804 +postpose|8303856 +postposition|8303906 +postpositive|8303943 +postprandial|8303979 +postscript|8304014 +posttraumatic amnesia|8304096 +posttraumatic epilepsy|8304176 +posttraumatic stress disorder|8304236 +postulant|8304297 +postulate|8304348 +postulation|8304503 +postulational|8304613 +postulator|8304657 +postum|8304766 +postural|8304807 +postural hypotension|8304840 +posture|8304906 +posturing|8305244 +postwar|8305278 +posy|8305303 +pot|8305360 +pot cheese|8306163 +pot farm|8306233 +pot likker|8306258 +pot liquor|8306308 +pot marigold|8306358 +pot marjoram|8306452 +pot metal|8306544 +pot plant|8306592 +pot roast|8306634 +pot-au-feu|8306080 +pot-trained|8306105 +potable|8306665 +potage|8306745 +potage st. germain|8306774 +potamogale|8306841 +potamogale velox|8306902 +potamogalidae|8306980 +potamogeton|8307052 +potamogeton americanus|8307133 +potamogeton crispus|8307233 +potamogeton gramineous|8307327 +potamogeton nodosus|8307417 +potamogetonaceae|8307514 +potamophis|8307629 +potamophis striatula|8307691 +potash|8307804 +potash alum|8307880 +potassium|8307972 +potassium acid carbonate|8308090 +potassium alum|8308206 +potassium bicarbonate|8308298 +potassium bromide|8308414 +potassium carbonate|8308457 +potassium chlorate|8308496 +potassium chloride|8308529 +potassium cyanide|8308606 +potassium dichromate|8308641 +potassium ferrocyanide|8308676 +potassium hydrogen carbonate|8308748 +potassium hydrogen tartrate|8308864 +potassium hydroxide|8308929 +potassium iodide|8309005 +potassium nitrate|8309038 +potassium permanganate|8309105 +potassium-argon dating|8308033 +potation|8309173 +potato|8309254 +potato bean|8309412 +potato beetle|8309594 +potato blight|8309717 +potato bug|8309803 +potato chip|8309926 +potato disease|8309983 +potato family|8310069 +potato fern|8310142 +potato fungus|8310219 +potato mildew|8310293 +potato mold|8310379 +potato mosaic|8310465 +potato moth|8310495 +potato murrain|8310593 +potato nose|8310679 +potato pancake|8310813 +potato peel|8310935 +potato peelings|8310995 +potato race|8311055 +potato salad|8311081 +potato scab bacteria|8311109 +potato skin|8311173 +potato tree|8311233 +potato tuber moth|8311351 +potato tuberworm|8311449 +potato vine|8311511 +potato wart|8311607 +potato wart fungus|8311642 +potato worm|8311702 +potato yellow dwarf|8311822 +potato yellow-dwarf virus|8311775 +potawatomi|8311887 +potbellied|8311998 +potbelly|8312041 +potbelly stove|8312181 +potboiler|8312268 +potbound|8312322 +potboy|8312358 +poteen|8312390 +potency|8312439 +potent|8312604 +potentate|8312795 +potential|8312836 +potential difference|8313061 +potential divider|8313165 +potential drop|8313228 +potential energy|8313332 +potential unit|8313381 +potentiality|8313430 +potentially|8313534 +potentiate|8313563 +potentiation|8313606 +potentilla|8313646 +potentilla anserina|8313712 +potentiometer|8313819 +potently|8313942 +poterium|8313970 +poterium sanguisorba|8314030 +potful|8314143 +pothead|8314176 +pother|8314198 +potherb|8314344 +potholder|8314378 +pothole|8314401 +potholed|8314440 +potholer|8314491 +pothook|8314566 +pothos|8314593 +pothouse|8314687 +pothunter|8314764 +potion|8314851 +potluck|8314900 +potman|8314929 +potomac|8314961 +potomac river|8315107 +potomania|8315158 +potoroinae|8315223 +potoroo|8315289 +potorous|8315332 +potos|8315387 +potos caudivolvulus|8315433 +potos flavus|8315531 +potpie|8315622 +potpourri|8315643 +potsherd|8315903 +potshot|8315942 +pott's disease|8316011 +pottage|8316071 +potted|8316112 +potter|8316168 +potter around|8316631 +potter bee|8316687 +potter wasp|8316711 +potter's clay|8316406 +potter's earth|8316449 +potter's field|8316492 +potter's wheel|8316601 +potterer|8316751 +pottery|8316815 +pottle|8316894 +potto|8316914 +potty|8317033 +potty chair|8317517 +potty seat|8317599 +potty-trained|8317459 +pouch|8317681 +pouch-shaped|8317848 +pouched|8317906 +pouched mammal|8317926 +pouched mole|8317972 +pouched mouse|8318054 +pouched rat|8318135 +pouchlike|8318188 +poudrin|8318246 +pouf|8318339 +pouf paste|8318471 +pouffe|8318523 +poulenc|8318570 +poulet|8318620 +poulette|8318661 +poulterer|8318685 +poultice|8318737 +poultry|8318820 +poultryman|8318903 +pounce|8318955 +pound|8319058 +pound cake|8319868 +pound net|8319893 +pound off|8319917 +pound sterling|8319966 +pound up|8320037 +pound-foolish|8319836 +poundage|8320083 +poundal|8320182 +pounder|8320214 +pounding|8320268 +pounds per square inch|8320395 +pour|8320445 +pour cold water on|8320693 +pour down|8320752 +pour forth|8320838 +pour out|8320874 +pourboire|8321045 +pouring|8321146 +pousse-cafe|8321179 +poussin|8321216 +pout|8321268 +pouter|8321466 +pouter pigeon|8321576 +pouteria|8321613 +pouteria campechiana nervosa|8321686 +pouteria zapota|8321787 +poverty|8321880 +poverty grass|8322041 +poverty level|8322116 +poverty line|8322168 +poverty trap|8322220 +poverty-stricken|8321960 +pow|8322261 +pow camp|8322311 +powder|8322392 +powder and shot|8322729 +powder blue|8322770 +powder compact|8322822 +powder flask|8322859 +powder horn|8322903 +powder keg|8322947 +powder magazine|8322985 +powder metallurgy|8323072 +powder method|8323110 +powder monkey|8323181 +powder photography|8323236 +powder room|8323307 +powder store|8323453 +powder technique|8323540 +powder-post termite|8322632 +powder-puff|8322699 +powdered|8323611 +powdered ginger|8323691 +powdered milk|8323729 +powdered mustard|8323789 +powdered sugar|8323880 +powderer|8323921 +powderiness|8323992 +powderise|8324033 +powderize|8324152 +powderpuff|8324271 +powdery|8324300 +powdery mildew|8324407 +powell|8324438 +power|8324590 +power breakfast|8325364 +power broker|8325420 +power cable|8325581 +power company|8325642 +power cord|8325760 +power couple|8325799 +power dive|8325840 +power drill|8325875 +power failure|8325913 +power grid|8325977 +power hammer|8326037 +power hunger|8326077 +power law|8326137 +power line|8326206 +power loading|8326267 +power loom|8326298 +power meter|8326323 +power module|8326365 +power mower|8326394 +power of appointment|8326444 +power of attorney|8326529 +power outage|8326617 +power pack|8326681 +power plant|8326722 +power play|8326776 +power point|8326855 +power politics|8326965 +power pylon|8327041 +power saw|8327074 +power series|8327123 +power service|8327152 +power shovel|8327270 +power station|8327324 +power steering|8327378 +power structure|8327461 +power system|8327536 +power takeoff|8327596 +power tool|8327630 +power train|8327663 +power trip|8327724 +power unit|8327752 +power user|8327797 +power walking|8327831 +power worker|8327879 +power-assisted|8325101 +power-assisted steering|8325140 +power-dive|8325223 +power-driven|8325261 +power-station worker|8325291 +powerboat|8327952 +powerbroker|8327986 +powered|8328066 +powerful|8328170 +powerfully|8328521 +powerfulness|8328564 +powerhouse|8328600 +powerless|8328732 +powerlessness|8328936 +powerwash|8328987 +powhatan|8329033 +powwow|8329219 +pox|8329304 +poxvirus|8329474 +poyou|8329505 +pozsony|8329559 +ppk|8329633 +pplo|8329796 +ppp|8329855 +pr|8329997 +pr man|8330217 +practicability|8330319 +practicable|8330378 +practicableness|8330470 +practicably|8330529 +practical|8330558 +practical application|8330883 +practical joke|8330980 +practical joker|8331040 +practical nurse|8331166 +practical politics|8331226 +practicality|8331304 +practically|8331345 +practice|8331370 +practice bundling|8331764 +practice game|8331839 +practice of law|8331883 +practice of medicine|8331931 +practice range|8331989 +practice session|8332019 +practice teacher|8332110 +practiced|8332187 +practician|8332289 +practicing|8332355 +practise|8332382 +practised|8332518 +practitioner|8332559 +praenomen|8332625 +praesidium|8332675 +praetor|8332726 +praetorial|8332782 +praetorian|8332864 +praetorian guard|8332971 +praetorium|8333071 +praetorship|8333126 +prag|8333202 +pragmatic|8333265 +pragmatic sanction|8333432 +pragmatical|8333476 +pragmatics|8333592 +pragmatism|8333624 +pragmatist|8333716 +prague|8333759 +praha|8333824 +praia|8333888 +prairia sabbatia|8333964 +prairial|8334047 +prairie|8334103 +prairie anemone|8334130 +prairie aster|8334320 +prairie berry|8334367 +prairie bird's-foot trefoil|8334539 +prairie chicken|8334656 +prairie coneflower|8334716 +prairie cordgrass|8334856 +prairie crab|8334958 +prairie dock|8335071 +prairie dog|8335168 +prairie fowl|8335233 +prairie fox|8335293 +prairie gentian|8335339 +prairie golden aster|8335431 +prairie gourd|8335542 +prairie gourd vine|8335691 +prairie grass|8335827 +prairie grouse|8335936 +prairie lotus|8335996 +prairie mallow|8336113 +prairie marmot|8336222 +prairie mimosa|8336287 +prairie orchid|8336368 +prairie rattler|8336472 +prairie rattlesnake|8336574 +prairie rocket|8336676 +prairie sage|8336721 +prairie sagewort|8336830 +prairie schooner|8336897 +prairie smoke|8336990 +prairie soil|8337047 +prairie star|8337079 +prairie state|8337149 +prairie sunflower|8337229 +prairie trefoil|8337299 +prairie trillium|8337416 +prairie vole|8337511 +prairie wagon|8337571 +prairie wake-robin|8337664 +prairie white-fringed orchid|8337759 +prairie white-fringed orchis|8337845 +prairie willow|8337949 +prairie wolf|8338006 +praise|8338065 +praiseful|8338194 +praiseworthily|8338246 +praiseworthiness|8338300 +praiseworthy|8338337 +praising|8338399 +praisworthiness|8338451 +prajapati|8338482 +prakrit|8338523 +prakritic|8338597 +praline|8338642 +pram|8338665 +prance|8338776 +prancer|8338925 +prandial|8338974 +prang|8339064 +prang up|8339104 +prank|8339191 +prankish|8339554 +prankishness|8339625 +prankster|8339705 +praseodymium|8339831 +prat|8339896 +prate|8340107 +prater|8340345 +pratincole|8340450 +prattle|8340516 +prattler|8340752 +praunus|8340815 +pravachol|8340870 +pravastatin|8340980 +prawn|8341080 +praxis|8341156 +praxiteles|8341209 +pray|8341280 +praya|8341327 +prayer|8341355 +prayer beads|8341582 +prayer book|8341633 +prayer mat|8341751 +prayer meeting|8341803 +prayer of azariah and song of the three children|8341883 +prayer rug|8341995 +prayer service|8342047 +prayer shawl|8342127 +prayer wheel|8342170 +prayerbook|8342215 +prayerful|8342252 +praying mantid|8342277 +praying mantis|8342347 +prazosin|8342417 +prc|8342569 +pre-columbian|8342687 +pre-eclampsia|8342723 +pre-eminently|8342900 +pre-emption|8343015 +pre-emptive strike|8343267 +pre-emptor|8343324 +pre-existent|8343472 +pre-existing|8343632 +pre-raphaelite|8343792 +preach|8343898 +preacher|8343978 +preacher man|8344067 +preachification|8344156 +preachify|8344218 +preaching|8344291 +preachment|8344382 +preachy|8344436 +preadolescent|8344477 +preakness|8344523 +preamble|8344570 +preanal|8344642 +prearrange|8344680 +prearranged|8344712 +prearrangement|8344741 +preassemble|8344787 +prebend|8344841 +prebendary|8344866 +precambrian|8344892 +precambrian aeon|8344986 +precambrian eon|8345085 +precambrian period|8345183 +precancerous|8345284 +precarious|8345357 +precariousness|8345492 +precast|8345530 +precative|8345554 +precatory|8345594 +precaution|8345634 +precautional|8345759 +precautionary|8345819 +precava|8345879 +precede|8345925 +precedence|8346097 +precedency|8346260 +precedent|8346423 +precedented|8346627 +precedential|8346660 +preceding|8346689 +precentor|8347025 +precentorship|8347072 +precentral gyrus|8347150 +precept|8347190 +preceptor|8347323 +preceptorship|8347365 +precess|8347443 +precession|8347484 +precession of the equinoxes|8347549 +prechlorination|8347633 +precinct|8347671 +preciosity|8347703 +precious|8347736 +precious coral|8347839 +precious metal|8347890 +precious stone|8347923 +preciously|8347975 +preciousness|8348003 +precipice|8348073 +precipitance|8348112 +precipitancy|8348233 +precipitant|8348354 +precipitate|8348436 +precipitately|8348671 +precipitateness|8348702 +precipitating|8348823 +precipitation|8348856 +precipitator|8349122 +precipitin|8349184 +precipitous|8349213 +precipitously|8349332 +precipitousness|8349362 +precis|8349423 +precise|8349514 +precisely|8349724 +preciseness|8349831 +precision|8349952 +precision cookie|8350004 +precision rifle|8350037 +preclinical|8350081 +preclinical phase|8350137 +preclinical test|8350214 +preclinical trial|8350291 +preclude|8350368 +preclusion|8350472 +preclusive|8350530 +precocial|8350584 +precocious|8350613 +precocious dentition|8350694 +precociousness|8350754 +precocity|8350801 +precognition|8350848 +precognitive|8350945 +preconceive|8351016 +preconceived|8351082 +preconceived idea|8351140 +preconceived notion|8351289 +preconceived opinion|8351438 +preconception|8351587 +preconcerted|8351782 +precondition|8351812 +preconditioned|8352016 +precook|8352049 +precooked|8352094 +precooled|8352122 +precordial|8352146 +precordium|8352180 +precursor|8352215 +precursory|8352377 +predaceous|8352431 +predacious|8352514 +predate|8352597 +predation|8352742 +predator|8352822 +predatory|8352976 +predatory animal|8353131 +predecease|8353214 +predecessor|8353283 +predestinarian|8353325 +predestinarianism|8353448 +predestinate|8353489 +predestination|8353591 +predestinationist|8353721 +predestine|8353798 +predestined|8353910 +predeterminaation|8353970 +predetermination|8354031 +predetermine|8354170 +predetermined|8354265 +predicament|8354303 +predicate|8354351 +predicate calculus|8354491 +predication|8354586 +predicative|8354631 +predicator|8354664 +predict|8354733 +predictability|8354983 +predictable|8355048 +predicted|8355117 +prediction|8355163 +predictive|8355307 +predictor|8355376 +predictor variable|8355594 +predigest|8355649 +predigested|8355675 +predilection|8355707 +predispose|8355807 +predisposed|8355843 +predisposition|8355876 +prednisolone|8356002 +prednisone|8356098 +predominance|8356215 +predominant|8356383 +predominantly|8356501 +predominate|8356538 +predomination|8356702 +preeclampsia|8356869 +preemie|8356965 +preeminence|8357093 +preeminent|8357152 +preeminently|8357198 +preemployment training program|8357233 +preempt|8357290 +preemption|8357335 +preemptive|8357509 +preemptive bid|8357553 +preemptive right|8357589 +preemptor|8357638 +preen|8357706 +preen gland|8357954 +preexist|8358001 +preexistence|8358028 +preexistent|8358076 +preexisting|8358156 +prefab|8358236 +prefabricate|8358307 +prefabricated|8358388 +prefabrication|8358429 +preface|8358477 +prefaded|8358574 +prefatorial|8358613 +prefatory|8358667 +prefect|8358721 +prefectural|8358762 +prefecture|8358851 +prefer|8359002 +preferable|8359124 +preferably|8359164 +preference|8359197 +preference shares|8359366 +preferential|8359432 +preferment|8359482 +preferred|8359538 +preferred shares|8359622 +preferred stock|8359688 +prefiguration|8359754 +prefigurative|8359858 +prefigure|8359929 +prefix|8360130 +prefix notation|8360165 +prefixation|8360253 +preform|8360285 +preformation|8360375 +prefrontal|8360427 +prefrontal leucotomy|8360456 +prefrontal leukotomy|8360587 +prefrontal lobe|8360718 +prefrontal lobotomy|8360748 +pregnancy|8360879 +pregnancy test|8360962 +pregnanediol|8360995 +pregnant|8361044 +pregnant chad|8361188 +preheat|8361236 +prehend|8361266 +prehensile|8361313 +prehension|8361425 +prehistoric|8361482 +prehistoric culture|8361593 +prehistorical|8361667 +prehistory|8361707 +preindication|8361781 +preinvasive cancer|8361837 +preisolate|8361893 +prejudge|8361921 +prejudgement|8361945 +prejudgment|8362006 +prejudice|8362067 +prejudiced|8362210 +prejudicial|8362351 +prejudicious|8362414 +prelacy|8362477 +prelapsarian|8362583 +prelate|8362624 +prelature|8362688 +prelim|8362792 +preliminary|8362938 +preliminary exam|8363098 +preliminary examination|8363177 +preliminary prospectus|8363256 +prelims|8363343 +preliterate|8363531 +prelone|8363608 +prelude|8363712 +premarital|8363832 +premature|8363926 +premature baby|8364008 +premature ejaculation|8364136 +premature infant|8364179 +premature labor|8364307 +premature labour|8364412 +premature ventricular contraction|8364517 +prematurely|8364594 +prematureness|8364623 +prematurity|8364682 +premedical|8364741 +premeditate|8364796 +premeditated|8364973 +premeditation|8365102 +premenopausal|8365204 +premenstrual|8365242 +premenstrual syndrome|8365292 +premie|8365336 +premier|8365464 +premiere|8365682 +premiership|8365802 +premise|8365878 +premises|8366045 +premiss|8366128 +premium|8366214 +premium bond|8366339 +premix|8366396 +premolar|8366448 +premonition|8366481 +premonitory|8366596 +prenanthes|8366650 +prenanthes alba|8366718 +prenanthes purpurea|8366814 +prenanthes serpentaria|8366902 +prenatal|8367030 +prenatal diagnosis|8367078 +prenominal|8367148 +prentice|8367201 +prenuptial|8367273 +preoccupancy|8367378 +preoccupation|8367537 +preoccupied|8367715 +preoccupy|8367819 +preoperative|8367899 +preordain|8367940 +preordination|8367994 +prep|8368104 +prep school|8368168 +prepackaged|8368262 +prepacked|8368302 +prepaid|8368342 +preparation|8368373 +preparation fire|8368726 +preparative|8368764 +preparatory|8368820 +preparatory school|8368876 +prepare|8368970 +prepare for|8369320 +prepared|8369420 +preparedness|8369613 +prepay|8369663 +prepayment|8369683 +preponderance|8369731 +preponderant|8369834 +preponderantly|8369925 +preponderate|8369962 +preponderating|8370056 +prepose|8370147 +preposition|8370196 +prepositional|8370271 +prepositional object|8370325 +prepositional phrase|8370386 +prepossess|8370423 +prepossessing|8370533 +prepossession|8370567 +preposterous|8370740 +preposterously|8370846 +preprandial|8370904 +prepubertal|8370937 +prepuberty|8370980 +prepubescent|8371013 +prepuce|8371056 +prepupal|8371138 +prepyloric vein|8371165 +prerecord|8371234 +prerecorded|8371265 +prerequisite|8371295 +prerogative|8371378 +pres young|8371442 +presage|8371518 +presbyope|8371817 +presbyopia|8371864 +presbyopic|8371952 +presbyter|8372064 +presbyterian|8372089 +presbyterian church|8372135 +presbyterianism|8372208 +presbytery|8372263 +presbytes|8372300 +presbytes entellus|8372379 +preschool|8372473 +preschooler|8372516 +prescience|8372618 +prescient|8372672 +presciently|8372702 +prescott|8372730 +prescribe|8372762 +prescribed|8372827 +prescript|8372961 +prescription|8373007 +prescription drug|8373269 +prescription medicine|8373390 +prescriptive|8373511 +preseason|8373591 +presence|8373617 +presence chamber|8373848 +presence of mind|8373879 +presenile dementia|8373978 +present|8374028 +present moment|8374757 +present participle|8374818 +present perfect|8374869 +present perfect tense|8374966 +present progressive|8375063 +present progressive tense|8375191 +present tense|8375319 +present time|8375356 +present-day|8374715 +presentable|8375446 +presentation|8375479 +presentational|8375703 +presented|8375734 +presenter|8375778 +presentiment|8375900 +presentism|8375988 +presentist|8376071 +presently|8376137 +presentment|8376196 +presentness|8376322 +preservable|8376358 +preservation|8376389 +preservationist|8376519 +preservative|8376582 +preserve|8376649 +preserved|8376985 +preserver|8377385 +preserves|8377598 +preserving|8377789 +preset|8377831 +preside|8377869 +presidency|8377902 +president|8378064 +president abraham lincoln|8378463 +president adams|8378663 +president andrew johnson|8378979 +president arthur|8379160 +president benjamin harrison|8379329 +president buchanan|8379521 +president bush|8379673 +president carter|8380046 +president cleveland|8380230 +president clinton|8380412 +president coolidge|8380585 +president eisenhower|8380738 +president fillmore|8380969 +president ford|8381123 +president franklin roosevelt|8381295 +president garfield|8381538 +president george w. bush|8381731 +president grant|8381950 +president harding|8382172 +president harrison|8382345 +president hayes|8382700 +president hoover|8382874 +president jefferson|8383041 +president john adams|8383198 +president john f. kennedy|8383363 +president john quincy adams|8383572 +president johnson|8383758 +president kennedy|8384112 +president lincoln|8384313 +president lyndon johnson|8384505 +president madison|8384712 +president mckinley|8384860 +president monroe|8385014 +president nixon|8385158 +president of the united states|8385339 +president pierce|8385578 +president polk|8385725 +president reagan|8385891 +president roosevelt|8386057 +president taft|8386457 +president taylor|8386602 +president theodore roosevelt|8386748 +president truman|8386945 +president tyler|8387104 +president van buren|8387243 +president washington|8387400 +president william henry harrison|8387582 +president wilson|8387789 +presidential|8387957 +presidential directive|8388053 +presidential term|8388118 +presidents' day|8388204 +presidentship|8388276 +presiding officer|8388365 +presidio|8388399 +presidium|8388431 +presley|8388482 +presocratic|8388550 +press|8388591 +press agency|8389466 +press agent|8389574 +press association|8389669 +press box|8389777 +press clipping|8389800 +press conference|8389900 +press corps|8389970 +press cutting|8390011 +press down|8390111 +press down on|8390153 +press gallery|8390226 +press gang|8390254 +press home|8390285 +press lord|8390380 +press of canvas|8390430 +press of sail|8390495 +press on|8390560 +press out|8390644 +press photographer|8390771 +press release|8390820 +press run|8390885 +press stud|8390918 +press-up|8389428 +pressburg|8390992 +pressed|8391068 +pressing|8391092 +pressman|8391183 +pressmark|8391310 +pressor|8391356 +pressure|8391427 +pressure cabin|8392053 +pressure cooker|8392083 +pressure dome|8392140 +pressure feed|8392168 +pressure gage|8392302 +pressure gauge|8392351 +pressure group|8392400 +pressure level|8392457 +pressure point|8392530 +pressure sensation|8392560 +pressure sore|8392654 +pressure suit|8392718 +pressure unit|8392760 +pressure-cook|8391812 +pressure-cooker|8391840 +pressure-feed lubricating system|8391873 +pressure-wash|8392007 +pressurise|8392808 +pressurised|8392945 +pressurize|8392989 +pressurized|8393126 +pressurized water reactor|8393170 +prestidigitation|8393230 +prestidigitator|8393355 +prestige|8393447 +prestigious|8393490 +prestigiousness|8393557 +prestissimo|8393600 +presto|8393626 +presumable|8393647 +presumably|8393699 +presume|8393732 +presumed|8393891 +presumption|8393935 +presumptive|8394156 +presumptively|8394230 +presumptuous|8394263 +presumptuousness|8394313 +presuppose|8394396 +presupposition|8394477 +presymptomatic|8394522 +preteen|8394578 +preteenager|8394668 +pretence|8394722 +pretend|8395067 +pretended|8395383 +pretender|8395469 +pretending|8395728 +pretense|8395829 +pretension|8396174 +pretentious|8396276 +pretentiousness|8396673 +preterist|8396814 +preterit|8396879 +preterite|8396923 +preterition|8396967 +preterm baby|8397040 +preterm infant|8397168 +pretermission|8397296 +pretermit|8397328 +preternatural|8397430 +preternaturally|8397526 +pretext|8397565 +pretor|8397696 +pretoria|8397752 +pretorial|8397820 +pretorian|8397902 +pretorium|8398010 +pretrial|8398065 +pretrial conference|8398148 +prettify|8398214 +prettiness|8398293 +pretty|8398329 +pretty up|8398411 +pretty-pretty|8398378 +pretzel|8398465 +preussen|8398490 +prevacid|8398597 +prevail|8398642 +prevailing|8398798 +prevailing party|8398869 +prevailing westerly|8398914 +prevailing wind|8398969 +prevalence|8399026 +prevalent|8399105 +prevaricate|8399148 +prevarication|8399239 +prevaricator|8399437 +prevenient|8399514 +prevent|8399568 +preventable|8399633 +preventative|8399666 +prevention|8400210 +preventive|8400257 +preventive attack|8400862 +preventive medicine|8400914 +preventive strike|8400973 +preview|8401025 +previous|8401188 +previous question|8401267 +previously|8401372 +previse|8401404 +prevision|8401475 +prevue|8401656 +prewar|8401750 +prewpub|8401773 +prexy|8401835 +prey|8401883 +priacanthidae|8402043 +priacanthus|8402113 +priacanthus arenatus|8402175 +priam|8402267 +priapic|8402303 +priapism|8402345 +priapus|8402373 +price|8402435 +price bracket|8402773 +price competition|8402804 +price control|8402853 +price cut|8402884 +price cutting|8402921 +price floor|8402958 +price freeze|8402990 +price gouging|8403019 +price increase|8403050 +price index|8403093 +price level|8403164 +price list|8403235 +price of admission|8403268 +price reduction|8403385 +price support|8403469 +price tag|8403500 +price war|8403523 +price-controlled|8402657 +price-fixing|8402694 +price-to-earnings ratio|8402724 +priceless|8403572 +pricelessness|8403611 +pricey|8403681 +pricing|8403737 +pricing system|8403782 +prick|8403813 +prick up|8404349 +pricker|8404392 +pricket|8404464 +pricking|8404506 +prickle|8404539 +prickle cell|8404744 +prickle-weed|8404663 +prickleback|8404776 +prickling|8404876 +prickly|8405001 +prickly ash|8405243 +prickly custard apple|8405296 +prickly heat|8405397 +prickly lettuce|8405475 +prickly pear|8405577 +prickly pear cactus|8405646 +prickly pine|8405695 +prickly poppy|8405789 +prickly shield fern|8405899 +prickly-seeded spinach|8405161 +prickteaser|8405978 +pricy|8406056 +pride|8406112 +pride of barbados|8406529 +pride of bolivia|8406650 +pride of california|8406730 +pride of place|8406807 +pride oneself|8406846 +pride-of-india|8406281 +prideful|8406896 +pridefulness|8407049 +prie-dieu|8407085 +priest|8407110 +priest-doctor|8407224 +priest-penitent privilege|8407282 +priest-ridden|8407327 +priestcraft|8407361 +priestess|8407442 +priesthood|8407468 +priestley|8407509 +priestlike|8407563 +priestly|8407592 +prig|8407688 +priggish|8407750 +priggishness|8407895 +prilosec|8407960 +prim|8408051 +prim out|8408414 +prim up|8408519 +prima|8408624 +prima ballerina|8408715 +prima donna|8408759 +prima facie|8408855 +primacy|8408882 +primaeval|8408920 +primal|8408983 +primality|8409106 +primaquine|8409134 +primarily|8409185 +primary|8409267 +primary amenorrhea|8409654 +primary atypical pneumonia|8409712 +primary care|8409850 +primary care physician|8409897 +primary cell|8409964 +primary censorship|8410032 +primary coil|8410084 +primary dentition|8410135 +primary dysmenorrhea|8410178 +primary election|8410221 +primary feather|8410264 +primary health care|8410353 +primary quill|8410394 +primary school|8410483 +primary sex character|8410560 +primary sex characteristic|8410651 +primary solid solution|8410742 +primary syphilis|8410798 +primary tooth|8410842 +primary winding|8410909 +primate|8410960 +primates|8411085 +primateship|8411271 +primatology|8411347 +primaxin|8411378 +prime|8411432 +prime factor|8411843 +prime interest rate|8411880 +prime meridian|8411940 +prime minister|8412001 +prime mover|8412135 +prime number|8412215 +prime of life|8412258 +prime quantity|8412306 +prime time|8412343 +primed|8412379 +primer|8412409 +primer coat|8412623 +primeval|8412713 +primidone|8412776 +primigravida|8412872 +priming|8412912 +priming coat|8413096 +primipara|8413186 +primiparous|8413233 +primitive|8413274 +primitive art|8413496 +primitive person|8413579 +primitively|8413668 +primitiveness|8413716 +primitivism|8413813 +primly|8413923 +primness|8413947 +primo|8414057 +primogenitor|8414095 +primogeniture|8414173 +primordial|8414217 +primordial dwarf|8414280 +primordium|8414367 +primp|8414400 +primping|8414564 +primrose|8414600 +primrose family|8414648 +primrose jasmine|8414737 +primrose path|8414787 +primula|8414831 +primula auricula|8414879 +primula elatior|8414959 +primula polyantha|8415030 +primula sinensis|8415103 +primula veris|8415180 +primula vulgaris|8415249 +primulaceae|8415326 +primulales|8415427 +primum mobile|8415487 +primus|8415567 +primus stove|8415671 +prince|8415767 +prince albert|8417087 +prince albert yew|8417332 +prince albert's yew|8417219 +prince charles|8417443 +prince charming|8417506 +prince consort|8417549 +prince edward|8417588 +prince edward island|8417667 +prince eugene of savoy|8417736 +prince fumimaro konoe|8417819 +prince fumimaro konoye|8417971 +prince klemens wenzel nepomuk lothar von metternich|8418124 +prince of darkness|8418299 +prince of smolensk|8418442 +prince of wales|8418540 +prince of wales heath|8418588 +prince otto eduard leopold von bismarck|8418697 +prince otto von bismarck|8418899 +prince peter kropotkin|8419086 +prince philip|8419210 +prince rupert|8419279 +prince's pine|8416476 +prince's-feather|8415815 +prince's-plume|8416109 +prince-of-wales feather|8416642 +prince-of-wales fern|8416792 +prince-of-wales plume|8416939 +prince-of-wales'-heath|8416532 +princedom|8419330 +princely|8419394 +princess|8419472 +princess diana|8419522 +princess feather|8419630 +princess grace of monaco|8419756 +princess of wales|8419862 +princess pine|8419973 +princess royal|8420069 +princeton|8420102 +princeton university|8420185 +princeton wordnet|8420257 +princewood|8420327 +principal|8420484 +principal axis|8420744 +principal diagonal|8420784 +principal investigator|8420835 +principal sum|8420895 +principality|8420943 +principality of andorra|8420995 +principality of liechtenstein|8421093 +principality of monaco|8421209 +principally|8421327 +principalship|8421384 +principe|8421462 +principen|8421496 +principle|8421572 +principle of equivalence|8421762 +principle of liquid displacement|8421811 +principle of parsimony|8421868 +principle of relativity|8421961 +principle of superposition|8422012 +principled|8422159 +prinia|8422217 +prinivil|8422264 +prink|8422364 +print|8422547 +print buffer|8422860 +print media|8422917 +print over|8422945 +print run|8422989 +print seller|8423022 +print shop|8423055 +printable|8423089 +printed|8423118 +printed circuit|8423143 +printed symbol|8423185 +printer|8423231 +printer cable|8423468 +printer's devil|8423375 +printer's ink|8423428 +printing|8423520 +printing business|8423666 +printing company|8423735 +printing concern|8423804 +printing ink|8423873 +printing machine|8423913 +printing operation|8423955 +printing press|8423993 +printing process|8424031 +printing unit|8424074 +printmaker|8424122 +printmaking|8424180 +printout|8424243 +priodontes|8424282 +priodontes giganteus|8424343 +prion|8424431 +prionace|8424455 +prionace glauca|8424508 +prionotus|8424591 +prionotus carolinus|8424647 +prior|8424734 +prioress|8424795 +prioritise|8424845 +prioritize|8424910 +priority|8424975 +priority mail|8425102 +priority processing|8425184 +priorship|8425229 +priory|8425303 +priscoan|8425348 +priscoan aeon|8425453 +priscoan eon|8425563 +prise|8425672 +prism|8425817 +prism spectroscope|8425879 +prismatic|8425939 +prismatoid|8425998 +prismoid|8426029 +prison|8426058 +prison camp|8426245 +prison cell|8426351 +prison chaplain|8426392 +prison farm|8426426 +prison guard|8426474 +prison house|8426571 +prison term|8426666 +prison-breaking|8426159 +prisonbreak|8426706 +prisoner|8426792 +prisoner of war|8426879 +prisoner of war camp|8426925 +prisoner of war censorship|8426997 +prisoner's base|8426849 +prisonlike|8427053 +prissily|8427080 +prissy|8427104 +pristidae|8427298 +pristine|8427356 +pristis|8427392 +pristis pectinatus|8427442 +pritzelago|8427516 +pritzelago alpina|8427586 +privacy|8427683 +private|8427795 +private corporation|8428291 +private detective|8428401 +private eye|8428500 +private foundation|8428599 +private instructor|8428635 +private investigator|8428694 +private line|8428793 +private nuisance|8428880 +private parts|8428915 +private property|8429016 +private road|8429135 +private school|8429183 +private security force|8429214 +private treaty|8429277 +private-enterprise|8428211 +privateer|8429333 +privateersman|8429447 +privately|8429523 +privately held corporation|8429562 +privateness|8429672 +privates|8429780 +privation|8429937 +privatise|8430039 +privatize|8430096 +privet|8430153 +privet andromeda|8430180 +privet hedge|8430271 +privilege|8430308 +privilege against self incrimination|8430459 +privilege of the floor|8430562 +privileged|8430643 +privine|8430763 +privy|8430860 +privy council|8431012 +privy purse|8431043 +prix de rome|8431074 +prix fixe|8431145 +prix goncourt|8431227 +prize|8431300 +prize money|8431660 +prize ring|8431693 +prize winner|8431730 +prizefight|8431774 +prizefighter|8431818 +prizewinning|8431865 +prn|8431901 +pro|8431951 +pro bono|8432455 +pro forma|8432480 +pro rata|8432553 +pro re nata|8432586 +pro tem|8432632 +pro tempore|8432701 +pro-american|8432048 +pro-choice|8432128 +pro-choice faction|8432159 +pro-inflammatory|8432200 +pro-life|8432332 +pro-life faction|8432359 +pro-lifer|8432398 +proaccelerin|8432766 +proactive|8432875 +probabilism|8432918 +probabilistic|8433000 +probability|8433062 +probability theorist|8433129 +probability theory|8433173 +probable|8433234 +probable cause|8433363 +probably|8433404 +probate|8433508 +probate court|8433748 +probate will|8433797 +probation|8433876 +probation officer|8433986 +probationary|8434034 +probationer|8434103 +probative|8434198 +probe|8434239 +probenecid|8434438 +probing|8434504 +probity|8434553 +problem|8434580 +problem solver|8434740 +problem solving|8434798 +problem-oriented language|8434659 +problematic|8434903 +problematical|8435013 +proboscidea|8435121 +proboscidea arenaria|8435234 +proboscidea fragrans|8435343 +proboscidea louisianica|8435454 +proboscidean|8435629 +proboscidian|8435718 +proboscis|8435807 +proboscis flower|8435870 +proboscis monkey|8436021 +proboscis worm|8436092 +procaine|8436153 +procaine hydrochloride|8436261 +procarbazine|8436331 +procardia|8436400 +procaryote|8436480 +procaryotic|8436526 +procavia|8436574 +procavia capensis|8436629 +procaviidae|8436725 +procedural|8436791 +procedure|8436867 +proceed|8437068 +proceeding|8437318 +proceedings|8437398 +proceeds|8437603 +procellaria|8437667 +procellaria aequinoctialis|8437729 +procellariidae|8437820 +procellariiform seabird|8437893 +procellariiformes|8437952 +process|8438034 +process cheese|8438649 +process of monition|8438697 +process printing|8438751 +process-server|8438607 +processed|8438803 +processed cheese|8439002 +processing|8439050 +processing time|8439078 +procession|8439126 +processional|8439355 +processional march|8439548 +processor|8439615 +processus coronoideus|8439844 +prochlorperazine|8439920 +prociphilus|8440132 +prociphilus tessellatus|8440199 +proclaim|8440307 +proclaimed|8440456 +proclamation|8440495 +proclivity|8440617 +procnias|8440689 +proconsul|8440742 +proconsular|8440814 +proconsulate|8440855 +proconsulship|8440946 +proconvertin|8441037 +procrastinate|8441136 +procrastination|8441328 +procrastinator|8441461 +procreate|8441513 +procreation|8441563 +procreative|8441669 +procrustes|8441723 +proctalgia|8441769 +proctitis|8441802 +proctocele|8441848 +proctologist|8441899 +proctology|8441951 +proctoplasty|8441998 +proctor|8442081 +proctorship|8442182 +proctoscope|8442258 +proctoscopy|8442289 +procumbent|8442320 +procurable|8442348 +procural|8442406 +procurance|8442459 +procurator|8442512 +procure|8442598 +procurement|8442673 +procurer|8442726 +procuress|8442831 +procursive epilepsy|8442903 +procyclidine|8442941 +procyon|8442988 +procyon cancrivorus|8443086 +procyon lotor|8443170 +procyonid|8443265 +procyonidae|8443294 +prod|8443360 +prodding|8443535 +prodigal|8443606 +prodigality|8443816 +prodigally|8443972 +prodigious|8444002 +prodigy|8444151 +prodroma|8444335 +prodromal|8444370 +prodrome|8444406 +prodromic|8444441 +produce|8444477 +produced|8444771 +producer|8444800 +producer gas|8444872 +producer price index|8444906 +product|8444982 +product development|8445385 +product introduction|8445426 +product line|8445518 +product research|8445639 +product-moment correlation coefficient|8445227 +production|8445700 +production cost|8445931 +production line|8445961 +production order|8446023 +productive|8446070 +productively|8446385 +productiveness|8446428 +productivity|8446488 +proenzyme|8446561 +prof|8446605 +profanation|8446665 +profanatory|8446770 +profane|8446799 +profaned|8447211 +profaneness|8447249 +profanity|8447317 +profess|8447359 +professed|8447518 +professedly|8447589 +professing|8447618 +profession|8447679 +professional|8447853 +professional association|8448130 +professional baseball|8448176 +professional basketball|8448241 +professional boxing|8448313 +professional dancer|8448375 +professional football|8448439 +professional golf|8448499 +professional golfer|8448547 +professional life|8448613 +professional organisation|8448678 +professional organization|8448765 +professional person|8448852 +professional relation|8448908 +professional tennis|8448955 +professional tennis player|8449009 +professional wrestling|8449070 +professionalisation|8449137 +professionalise|8449201 +professionalism|8449292 +professionalization|8449338 +professionalize|8449402 +professor|8449493 +professorial|8449553 +professorship|8449610 +proffer|8449694 +proficiency|8449761 +proficient|8449834 +profile|8449907 +profiling|8450122 +profit|8450156 +profit and loss|8450603 +profit and loss account|8450689 +profit margin|8450775 +profit sharing|8450834 +profit taker|8450888 +profit-and-loss statement|8450373 +profit-maximising|8450491 +profit-maximizing|8450547 +profitability|8450923 +profitable|8450973 +profitableness|8451188 +profitably|8451238 +profiteer|8451281 +profitless|8451338 +profitlessly|8451383 +profits|8451428 +profligacy|8451634 +profligate|8451800 +profligately|8452042 +profound|8452075 +profoundly|8452280 +profoundly deaf|8452306 +profoundness|8452372 +profundity|8452558 +profuse|8452750 +profusely|8452809 +profuseness|8452862 +profusion|8452947 +progenitor|8453032 +progeny|8453110 +progeria|8453161 +progestational|8453221 +progesterone|8453316 +progestin|8453371 +progestogen|8453438 +prognathic|8453505 +prognathous|8453564 +progne|8453635 +progne subis|8453682 +prognosis|8453738 +prognostic|8453869 +prognosticate|8454026 +prognostication|8454270 +prognosticative|8454486 +prognosticator|8454555 +program|8454638 +program library|8455167 +program line|8455266 +program music|8455337 +program trading|8455434 +programing|8455467 +programing language|8455603 +programma|8455673 +programme|8455725 +programme music|8456151 +programmed cell death|8456248 +programmer|8456340 +programming|8456458 +programming error|8456593 +programming language|8456656 +progress|8456726 +progress report|8457097 +progress to|8457150 +progression|8457221 +progressive|8457414 +progressive aspect|8457820 +progressive emphysematous necrosis|8457873 +progressive party|8458060 +progressive rock|8458144 +progressive tax|8458249 +progressive tense|8458307 +progressive vaccinia|8458395 +progressively|8458511 +progressiveness|8458560 +progressivism|8458628 +progressivity|8458699 +progymnosperm|8458767 +prohibit|8458801 +prohibited|8458883 +prohibition|8458984 +prohibition era|8459175 +prohibition party|8459246 +prohibitionist|8459313 +prohibitive|8459379 +prohibitory|8459436 +proinflammatory|8459493 +project|8459545 +projected|8460143 +projectile|8460249 +projecting|8460327 +projection|8460409 +projection screen|8460874 +projectionist|8460930 +projective device|8460983 +projective geometry|8461064 +projective technique|8461123 +projective test|8461204 +projector|8461285 +prokaryote|8461345 +prokaryotic|8461391 +prokhorov|8461439 +prokofiev|8461531 +prolactin|8461598 +prolamine|8461727 +prolapse|8461761 +prolapsus|8461880 +prolate|8461961 +prolate cycloid|8462083 +prole|8462116 +prolepsis|8462184 +proletarian|8462221 +proletariat|8462380 +proliferate|8462468 +proliferation|8462519 +prolific|8462634 +prolificacy|8462702 +proline|8462765 +prolix|8462812 +prolixity|8462959 +prolixness|8463037 +prolog|8463115 +prologise|8463214 +prologize|8463288 +prologue|8463362 +prologuize|8463393 +prolong|8463467 +prolongation|8463583 +prolonge|8463765 +prolonge knot|8463788 +prolonged|8463837 +prolusion|8463956 +prolusory|8464049 +prom|8464080 +promenade|8464109 +promenade deck|8464365 +promethazine|8464436 +prometheus|8464509 +promethium|8464546 +prominence|8464609 +prominent|8464762 +prominently|8464879 +promiscuity|8464913 +promiscuous|8465015 +promiscuously|8465100 +promiscuousness|8465167 +promise|8465269 +promised|8465499 +promised land|8465524 +promisee|8465747 +promiser|8465778 +promising|8465818 +promisor|8465869 +promissory|8465909 +promissory note|8465961 +promontory|8466048 +promote|8466114 +promoter|8466328 +promotion|8466437 +promotion system|8466648 +promotional|8466681 +promotional expense|8466762 +promotional material|8466822 +promotive|8466923 +prompt|8466954 +prompt box|8467293 +prompt copy|8467354 +promptbook|8467409 +prompter|8467464 +prompter's box|8467553 +prompting|8467614 +promptitude|8467681 +promptly|8467741 +promptness|8467824 +promulgate|8467910 +promulgated|8467979 +promulgation|8468032 +promulgator|8468187 +promycelium|8468226 +pronate|8468256 +pronation|8468278 +pronator|8468320 +prone|8468354 +prone float|8468403 +proneness|8468450 +prong|8468481 +prongbuck|8468507 +pronged|8468604 +pronghorn|8468702 +pronghorn antelope|8468799 +prongy|8468896 +pronk|8468973 +pronominal|8469011 +pronominal phrase|8469062 +pronoun|8469096 +pronounce|8469145 +pronounceable|8469247 +pronounced|8469307 +pronouncement|8469363 +pronto|8469412 +pronucleus|8469458 +pronunciamento|8469506 +pronunciation|8469552 +proof|8469727 +proof spirit|8470170 +proofed|8470240 +proofread|8470265 +proofreader|8470349 +prop|8470394 +prop root|8470569 +prop up|8470593 +propaedeutic|8470659 +propaedeutics|8470787 +propaganda|8470945 +propagandise|8470982 +propagandist|8471075 +propagandistic|8471144 +propagandize|8471193 +propagate|8471286 +propagation|8471649 +propagative|8471835 +propagator|8471903 +propanal|8471993 +propanamide|8472036 +propane|8472077 +propanediol|8472103 +propanoic acid|8472162 +propanol|8472217 +propanolol|8472258 +propanone|8472354 +proparoxytone|8472460 +propel|8472488 +propellant|8472581 +propellant explosive|8472687 +propellent|8472745 +propeller|8472851 +propeller plane|8472898 +propelling|8472948 +propellor|8473019 +propenal|8473066 +propene|8473102 +propenoate|8473133 +propenoic acid|8473167 +propenonitrile|8473220 +propensity|8473295 +propenyl alcohol|8473430 +proper|8473478 +proper fraction|8473842 +proper name|8473876 +proper noun|8473914 +properly|8473952 +properly speaking|8474035 +properness|8474093 +propertied|8474193 +property|8474241 +property line|8474550 +property man|8474623 +property master|8474696 +property owner|8474769 +property right|8474830 +property settlement|8474864 +property tax|8474904 +property-owning|8474502 +propertyless|8474948 +prophase|8475080 +prophecy|8475151 +prophesy|8475301 +prophet|8475421 +prophetess|8475506 +prophetic|8475558 +prophetical|8475875 +prophets|8476182 +prophylactic|8476367 +prophylactic device|8476694 +prophylaxis|8476810 +prophyll|8476846 +propinquity|8476891 +propionaldehyde|8476941 +propionic acid|8476984 +propitiate|8477039 +propitiation|8477112 +propitiative|8477225 +propitiatory|8477286 +propitious|8477373 +propitiously|8477506 +propitiousness|8477540 +propjet|8477625 +propman|8477690 +proponent|8477763 +proportion|8477863 +proportionable|8478086 +proportional|8478124 +proportional counter|8478214 +proportional counter tube|8478283 +proportional font|8478352 +proportional representation|8478404 +proportional sample|8478456 +proportional sampling|8478561 +proportionality|8478645 +proportionally|8478690 +proportionate|8478729 +proportionately|8478904 +proportionateness|8478958 +proposal|8479044 +proposal of marriage|8479209 +propose|8479296 +proposed|8479499 +proposer|8479535 +proposition|8479640 +propositional calculus|8479823 +propositional logic|8479922 +propositus|8480021 +propound|8480094 +propoxyphene|8480127 +propoxyphene hydrochloride|8480222 +propping up|8480317 +proprietary|8480376 +proprietary colony|8480482 +proprietary drug|8480528 +proprietor|8480575 +proprietorship|8480628 +proprietorship certificate|8480674 +proprietress|8480731 +propriety|8480770 +proprioception|8480870 +proprioceptive|8480908 +proprioceptor|8480945 +proprionamide|8480991 +props|8481032 +propulsion|8481189 +propulsion system|8481257 +propulsive|8481291 +propyl|8481374 +propyl alcohol|8481447 +propyl group|8481488 +propyl radical|8481561 +propylene|8481634 +propylene glycol|8481665 +propylthiouracil|8481724 +prorate|8481767 +proration|8481853 +prorogation|8481885 +prorogue|8481938 +prosaic|8482063 +prosaically|8482220 +prosaicness|8482256 +prosauropoda|8482327 +proscenium|8482397 +proscenium arch|8482467 +proscenium wall|8482497 +prosciuto|8482538 +proscribe|8482575 +proscribed|8482657 +proscription|8482736 +prose|8482835 +prose poem|8482915 +prosecute|8482941 +prosecuting attorney|8482999 +prosecuting officer|8483115 +prosecution|8483231 +prosecutor|8483403 +proselyte|8483519 +proselytise|8483546 +proselytism|8483605 +proselytize|8483689 +prosencephalon|8483748 +proserpina|8483799 +proserpine|8483853 +prosimian|8483907 +prosimii|8483934 +prosiness|8483992 +prosodic|8484063 +prosodic system|8484115 +prosodion|8484173 +prosody|8484234 +prosom|8484372 +prosopis|8484420 +prosopis glandulosa|8484480 +prosopis juliflora|8484584 +prosopis juliiflora|8484678 +prosopis pubescens|8484773 +prosopium|8484886 +prosopium cylindraceum|8484942 +prosopium williamsonii|8485043 +prosopopoeia|8485133 +prospect|8485207 +prospective|8485531 +prospector|8485618 +prospectus|8485655 +prosper|8485747 +prosper meniere|8485857 +prospering|8485942 +prosperity|8486027 +prosperous|8486131 +prospicience|8486398 +prostaglandin|8486448 +prostate|8486489 +prostate cancer|8486620 +prostate gland|8486722 +prostate specific antigen|8486796 +prostatectomy|8486843 +prostatic|8486908 +prostatic adenocarcinoma|8486976 +prostatitis|8487078 +prostheon|8487126 +prosthesis|8487189 +prosthetic|8487250 +prosthetic device|8487325 +prosthetics|8487386 +prosthetist|8487434 +prosthion|8487462 +prosthodontia|8487525 +prosthodontic|8487600 +prosthodontics|8487659 +prosthodontist|8487734 +prostigmin|8487799 +prostitute|8487861 +prostitution|8488027 +prostrate|8488078 +prostration|8488200 +prostyle|8488349 +prosy|8488390 +protactinium|8488449 +protagonist|8488528 +protamine|8488695 +protanopia|8488729 +protanopic|8488837 +protea|8488883 +protea cynaroides|8488910 +protea family|8488983 +protea mellifera|8489068 +proteaceae|8489143 +proteales|8489239 +protean|8489296 +protease|8489322 +protease inhibitor|8489387 +protect|8489459 +protected|8489497 +protecting|8489684 +protection|8489715 +protectionism|8489961 +protectionist|8490000 +protective|8490061 +protective coloration|8490392 +protective cover|8490446 +protective covering|8490512 +protective embankment|8490599 +protective fold|8490677 +protective garment|8490707 +protective tariff|8490777 +protectively|8490816 +protectiveness|8490875 +protector|8490968 +protector of boundaries|8491024 +protectorate|8491109 +protectorship|8491197 +protege|8491275 +protegee|8491311 +proteidae|8491337 +protein|8491399 +protein folding|8491444 +protein molecule|8491512 +proteinaceous|8491547 +proteinase|8491597 +proteinuria|8491662 +proteles|8491703 +proteles cristata|8491758 +proteolysis|8491825 +proteolytic|8491895 +proteolytic enzyme|8491964 +proteome|8492029 +proteomics|8492055 +proterochampsa|8492100 +proterozoic|8492174 +proterozoic aeon|8492262 +proterozoic eon|8492342 +protest|8492421 +protest march|8492665 +protestant|8492735 +protestant church|8492938 +protestant deacon|8493018 +protestant denomination|8493085 +protestant episcopal church|8493155 +protestant reformation|8493290 +protestantism|8493376 +protestation|8493445 +protester|8493504 +protesting|8493674 +proteus|8493730 +proteus anguinus|8493812 +prothorax|8493870 +prothrombin|8493896 +prothrombin accelerator|8493962 +prothrombinase|8494071 +protirelin|8494139 +protist|8494263 +protista|8494304 +protistan|8494358 +protium|8494399 +protium guianense|8494456 +protium heptaphyllum|8494514 +proto|8494578 +proto-indo european|8494599 +proto-norse|8494702 +proto-oncogene|8494762 +protoactinium|8494806 +protoanthropology|8494885 +protoarchaeology|8494948 +protoarcheology|8495021 +protoavis|8495094 +protoceratops|8495118 +protocol|8495169 +protoctist|8495283 +protoctist family|8495317 +protoctist genus|8495351 +protoctist order|8495383 +protoctista|8495415 +protogeometric|8495476 +protoheme|8495520 +protohemin|8495574 +protohippus|8495609 +protohistory|8495651 +protology|8495714 +protomammal|8495836 +proton|8495893 +proton accelerator|8495917 +proton magnetic resonance|8495954 +protoplasm|8496039 +protoplasmic astrocyte|8496093 +protoplast|8496135 +prototheria|8496173 +prototherian|8496233 +prototypal|8496262 +prototype|8496336 +prototypic|8496392 +prototypical|8496466 +protozoa|8496540 +protozoal|8496628 +protozoal infection|8496673 +protozoan|8496712 +protozoic|8496785 +protozoologist|8496830 +protozoology|8496881 +protozoon|8496930 +protract|8496970 +protracted|8497021 +protractedly|8497083 +protractible|8497116 +protractile|8497171 +protraction|8497226 +protractor|8497371 +protriptyline|8497411 +protropin|8497499 +protrude|8497638 +protruding|8497821 +protrusible|8497903 +protrusile|8497956 +protrusion|8498009 +protrusive|8498174 +protuberance|8498430 +protuberant|8498573 +protuberate|8498644 +protura|8498675 +proturan|8498727 +proud|8498763 +proud flesh|8499385 +proud of|8499437 +proudhon|8499469 +proudly|8499529 +proust|8499556 +proustian|8499602 +provability|8499639 +provable|8499744 +provably|8499783 +prove|8499830 +prove oneself|8500205 +proved|8500266 +proven|8500351 +provenance|8500429 +provencal|8500520 +provence|8500588 +provender|8500629 +proventil|8500728 +provera|8500791 +proverb|8500858 +proverbial|8500919 +proverbs|8500978 +provide|8501086 +provided with|8501361 +providence|8501432 +provident|8501617 +providential|8501804 +providentially|8501940 +provider|8501973 +province|8502050 +provincial|8502202 +provincial capital|8502475 +provincialism|8502540 +proving ground|8502645 +provision|8502684 +provisional|8502927 +provisional ira|8502996 +provisional irish republican army|8503178 +provisionary|8503378 +provisioner|8503447 +provisions|8503514 +proviso|8503814 +provisory|8503876 +provitamin|8503907 +provitamin a|8503939 +provo|8504002 +provocateur|8504052 +provocation|8504154 +provocative|8504299 +provocatively|8504492 +provoke|8504526 +provoked|8504828 +provoker|8504863 +provoking|8504979 +provokingly|8505030 +provos|8505064 +provost|8505279 +provost court|8505319 +provost guard|8505357 +provost marshal|8505391 +prow|8505438 +prowess|8505472 +prowl|8505517 +prowl car|8505678 +prowler|8505789 +prox|8505851 +proxemics|8505880 +proxima|8505914 +proxima centauri|8505967 +proximal|8506029 +proximate|8506056 +proximity|8506108 +proximo|8506314 +proxy|8506343 +proxy fight|8506412 +proxy war|8506450 +prozac|8506486 +prude|8506564 +prudence|8506625 +prudent|8506781 +prudential|8506923 +prudently|8506951 +prudery|8506984 +prudhoe bay|8507040 +prudish|8507077 +prudishly|8507222 +prudishness|8507254 +prumnopitys|8507310 +prumnopitys amara|8507378 +prumnopitys andina|8507482 +prumnopitys elegans|8507590 +prumnopitys ferruginea|8507699 +prumnopitys taxifolia|8507816 +prune|8507929 +prune cake|8508080 +prune whip|8508105 +pruned|8508130 +prunella|8508154 +prunella modularis|8508258 +prunella vulgaris|8508344 +prunellidae|8508430 +pruner|8508494 +pruning|8508562 +pruning hook|8508617 +pruning knife|8508663 +pruning saw|8508692 +pruning shears|8508737 +pruno|8508774 +prunus|8508802 +prunus alleghaniensis|8508856 +prunus americana|8508969 +prunus amygdalus|8509078 +prunus angustifolia|8509186 +prunus armeniaca|8509298 +prunus avium|8509377 +prunus besseyi|8509444 +prunus capuli|8509545 +prunus caroliniana|8509622 +prunus cerasifera|8509755 +prunus cerasus|8509852 +prunus cerasus austera|8509939 +prunus cerasus caproniana|8510046 +prunus cerasus marasca|8510160 +prunus cuneata|8510300 +prunus dasycarpa|8510422 +prunus demissa|8510515 +prunus domestica|8510647 +prunus domestica insititia|8510717 +prunus dulcis|8510834 +prunus dulcis amara|8510939 +prunus glandulosa|8511039 +prunus ilicifolia|8511119 +prunus incisa|8511250 +prunus insititia|8511321 +prunus japonica|8511387 +prunus laurocerasus|8511478 +prunus lyonii|8511566 +prunus maritima|8511638 +prunus mexicana|8511731 +prunus mume|8511801 +prunus nigra|8511876 +prunus padus|8511938 +prunus pensylvanica|8512056 +prunus persica|8512145 +prunus persica nectarina|8512212 +prunus pumila|8512307 +prunus pumilla susquehanae|8512428 +prunus salicina|8512562 +prunus serotina|8512632 +prunus serrulata|8512744 +prunus sieboldii|8512862 +prunus spinosa|8512948 +prunus subcordata|8513014 +prunus subhirtella|8513099 +prunus susquehanae|8513202 +prunus tenella|8513328 +prunus triloba|8513415 +prunus virginiana|8513483 +prunus virginiana demissa|8513576 +prurience|8513719 +pruriency|8513824 +prurient|8513929 +prurigo|8513981 +pruritus|8514073 +pruritus ani|8514114 +pruritus vulvae|8514145 +prussia|8514179 +prussian|8514285 +prussian asparagus|8514406 +prussian blue|8514510 +prussic acid|8514600 +pry|8514644 +pry bar|8514823 +prying|8514871 +przevalski's horse|8514968 +przewalski's horse|8515099 +ps|8515230 +psa|8515281 +psa blood test|8515332 +psalm|8515382 +psalmist|8515542 +psalmody|8515569 +psalms|8515614 +psalter|8515803 +psalterium|8515866 +psaltery|8515937 +psaltriparus|8515975 +psammoma|8516040 +psenes|8516091 +psephologist|8516138 +psephology|8516172 +psephurus|8516202 +psephurus gladis|8516258 +psetta|8516339 +psetta maxima|8516386 +psettichthys|8516465 +psettichthys melanostichus|8516530 +pseud|8516608 +pseudacris|8516750 +pseudaletia|8516814 +pseudaletia unipuncta|8516881 +pseudechis|8517035 +pseudechis porphyriacus|8517097 +pseudemys|8517196 +pseudemys concinna|8517255 +pseudemys rubriventris|8517329 +pseudemys scripta|8517440 +pseudepigrapha|8517523 +pseudo|8517622 +pseudobombax|8517793 +pseudobombax ellipticum|8517869 +pseudocarp|8517950 +pseudococcidae|8517992 +pseudococcus|8518070 +pseudococcus comstocki|8518140 +pseudococcus fragilis|8518252 +pseudocolus|8518367 +pseudocolus fusiformis|8518431 +pseudocyesis|8518524 +pseudoephedrine|8518606 +pseudohallucination|8518640 +pseudohermaphrodite|8518683 +pseudohermaphroditic|8518777 +pseudohermaphroditism|8518839 +pseudohypertrophic dystrophy|8518963 +pseudolarix|8519060 +pseudolarix amabilis|8519128 +pseudomonad|8519216 +pseudomonadales|8519274 +pseudomonas|8519350 +pseudomonas pyocanea|8519416 +pseudomonas solanacearum|8519484 +pseudomonodaceae|8519573 +pseudonym|8519656 +pseudonymous|8519701 +pseudoperipteral|8519731 +pseudophloem|8519779 +pseudopleuronectes|8519814 +pseudopleuronectes americanus|8519897 +pseudopod|8520049 +pseudopodium|8520109 +pseudoprostyle|8520169 +pseudorubella|8520210 +pseudoryx|8520295 +pseudoryx nghetinhensis|8520353 +pseudoscience|8520441 +pseudoscientific|8520485 +pseudoscorpion|8520524 +pseudoscorpiones|8520582 +pseudoscorpionida|8520735 +pseudosmallpox|8520889 +pseudotaxus|8521043 +pseudotaxus chienii|8521111 +pseudotsuga|8521180 +pseudotsuga macrocarpa|8521248 +pseudotsuga menziesii|8521352 +pseudovariola|8521502 +pseudowintera|8521656 +pseudowintera colorata|8521757 +psf|8521853 +psi|8521967 +psi particle|8522075 +psidium|8522123 +psidium cattleianum|8522193 +psidium guajava|8522318 +psidium guineense|8522398 +psidium littorale|8522470 +psidium littorale longipes|8522570 +psilocin|8522702 +psilocybin|8522798 +psilomelane|8522894 +psilophytaceae|8522923 +psilophytales|8522996 +psilophyte|8523065 +psilophyton|8523113 +psilopsida|8523162 +psilosis|8523244 +psilotaceae|8523325 +psilotales|8523389 +psilotatae|8523449 +psilotum|8523531 +psilotum nudum|8523584 +psithyrus|8523653 +psittacidae|8523714 +psittaciformes|8523778 +psittacosaur|8523851 +psittacosaurus|8523916 +psittacosis|8523981 +psittacula|8524131 +psittacula krameri|8524190 +psittacus|8524314 +psittacus erithacus|8524370 +psoas|8524439 +psocid|8524486 +psocidae|8524522 +psocoptera|8524582 +psocopterous insect|8524673 +psophia|8524709 +psophia crepitans|8524759 +psophiidae|8524834 +psophocarpus|8524895 +psophocarpus tetragonolobus|8524967 +psoralea|8525095 +psoralea esculenta|8525155 +psoriasis|8525282 +psoriatic arthritis|8525376 +pst|8525456 +psych up|8525544 +psyche|8525624 +psychedelia|8525736 +psychedelic|8525768 +psychedelic drug|8525857 +psychedelic rock|8526021 +psychiatric|8526127 +psychiatric hospital|8526188 +psychiatrical|8526317 +psychiatrist|8526378 +psychiatry|8526451 +psychic|8526537 +psychic communication|8526659 +psychic energy|8526752 +psychic phenomena|8526813 +psychic phenomenon|8527055 +psychic trauma|8527186 +psychical|8527250 +psychical communication|8527351 +psycho|8527444 +psychoactive|8527524 +psychoactive drug|8527654 +psychoactive substance|8527756 +psychoanalyse|8527858 +psychoanalysis|8527926 +psychoanalyst|8527990 +psychoanalytic|8528055 +psychoanalytic process|8528109 +psychoanalytical|8528155 +psychoanalyze|8528209 +psychobabble|8528277 +psychodelic drug|8528306 +psychodid|8528470 +psychodidae|8528494 +psychogalvanic response|8528563 +psychogenic|8528727 +psychogenic fugue|8528755 +psychokinesis|8528810 +psychokinetic|8528897 +psycholinguist|8528931 +psycholinguistic|8528998 +psycholinguistics|8529044 +psychological|8529092 +psychological disorder|8529158 +psychological medicine|8529258 +psychological moment|8529344 +psychological operation|8529403 +psychological science|8529471 +psychological state|8529543 +psychological warfare|8529602 +psychologist|8529659 +psychology|8529706 +psychology department|8529778 +psychometric|8529854 +psychometric test|8529908 +psychometrics|8529986 +psychometrika|8530068 +psychometry|8530150 +psychomotor|8530232 +psychomotor development|8530345 +psychomotor epilepsy|8530437 +psychoneurosis|8530499 +psychoneurotic|8530620 +psychonomics|8530981 +psychopath|8531060 +psychopathic|8531126 +psychopathic personality|8531191 +psychopathologic|8531302 +psychopathological|8531367 +psychopathology|8531432 +psychopathy|8531578 +psychopharmacological|8531662 +psychopharmacology|8531745 +psychophysicist|8531826 +psychophysics|8531864 +psychophysiology|8531924 +psychopomp|8532024 +psychopsis|8532079 +psychopsis krameriana|8532157 +psychopsis papilio|8532256 +psychosexual|8532337 +psychosexual development|8532419 +psychosexuality|8532512 +psychosis|8532598 +psychosomatic|8532659 +psychosomatic disorder|8532706 +psychosurgery|8532814 +psychotherapeutic|8532851 +psychotherapeutics|8532954 +psychotherapist|8533061 +psychotherapy|8533125 +psychotherapy group|8533247 +psychotic|8533284 +psychotic belief|8533378 +psychotic depression|8533446 +psychotic person|8533527 +psychotria|8533607 +psychotria capensis|8533675 +psychotropic|8533781 +psychotropic agent|8533898 +psychrometer|8533931 +psylla|8533964 +psyllid|8534026 +psyllidae|8534088 +psyllium|8534178 +psyop|8534249 +pt|8534317 +pt boat|8534370 +ptah|8534456 +ptarmigan|8534490 +pteretis|8534516 +pteretis struthiopteris|8534597 +pteridaceae|8534749 +pteridium|8534813 +pteridium aquilinum|8534869 +pteridium esculentum|8534951 +pteridological|8535015 +pteridologist|8535055 +pteridology|8535085 +pteridophyta|8535123 +pteridophyte|8535189 +pteridosperm|8535258 +pteridospermae|8535301 +pteridospermaphyta|8535446 +pteridospermopsida|8535595 +pteriidae|8535673 +pterion|8535734 +pteris|8535770 +pteris cretica|8535817 +pteris multifida|8535861 +pteris serrulata|8535934 +pternohyla|8536006 +pternohyla fodiens|8536070 +pterocarpus|8536202 +pterocarpus angolensis|8536271 +pterocarpus indicus|8536352 +pterocarpus macrocarpus|8536428 +pterocarpus marsupium|8536520 +pterocarpus santalinus|8536583 +pterocarya|8536699 +pterocarya fraxinifolia|8536778 +pterocles|8536870 +pterocles alchata|8536926 +pterocles indicus|8537034 +pteroclididae|8537121 +pterocnemia|8537191 +pterocnemia pennata|8537253 +pterodactyl|8537348 +pterodactylidae|8537394 +pterodactylus|8537473 +pterois|8537544 +pteropogon|8537594 +pteropogon humboltianum|8537660 +pteropsida|8537750 +pteropus|8537813 +pteropus capestratus|8537868 +pteropus hypomelanus|8537937 +pterosaur|8538006 +pterosauria|8538084 +pterospermum|8538148 +pterospermum acerifolium|8538224 +pterostylis|8538314 +pteroylglutamic acid|8538395 +pteroylmonoglutamic acid|8538565 +pterygium|8538735 +pterygoid muscle|8538766 +pterygoid plexus|8538824 +pterygoid process|8538862 +ptilocercus|8538917 +ptilocrinus|8538981 +ptilonorhynchidae|8539049 +ptilonorhynchus|8539131 +ptilonorhynchus violaceus|8539205 +ptloris|8539311 +ptloris paradisea|8539361 +pto|8539433 +ptolemaic|8539471 +ptolemaic dynasty|8539560 +ptolemaic system|8539621 +ptolemy|8539700 +ptolemy i|8539819 +ptolemy ii|8539866 +ptomain|8539915 +ptomaine|8539959 +ptomaine poisoning|8540070 +ptosis|8540148 +ptsd|8540193 +ptyalin|8540259 +ptyalise|8540284 +ptyalism|8540374 +ptyalith|8540403 +ptyalize|8540441 +ptyas|8540531 +ptyas mucosus|8540578 +ptychozoon|8540642 +ptychozoon homalocephalum|8540704 +pu|8540798 +pub|8540865 +pub crawl|8540988 +pub-crawl|8540942 +pubertal|8541020 +puberty|8541050 +puberulent|8541091 +pubes|8541151 +pubescence|8541238 +pubescent|8541279 +pubic|8541355 +pubic bone|8541377 +pubic hair|8541420 +pubic louse|8541462 +pubic region|8541535 +pubis|8541581 +public|8541624 +public address system|8541986 +public charity|8542068 +public convenience|8542100 +public debate|8542274 +public debt|8542372 +public defender|8542398 +public discussion|8542439 +public domain|8542508 +public easement|8542546 +public executioner|8542580 +public exposure|8542634 +public eye|8542703 +public figure|8542760 +public house|8542841 +public housing|8542918 +public knowledge|8542978 +public lavatory|8543049 +public law|8543223 +public lecture|8543247 +public library|8543299 +public mover|8543331 +public nudity|8543411 +public nuisance|8543527 +public office|8543577 +public opinion|8543655 +public opinion poll|8543721 +public presentation|8543801 +public press|8543847 +public property|8543887 +public prosecutor|8543960 +public relations|8544076 +public relations man|8544156 +public relations person|8544251 +public school|8544337 +public security|8544428 +public servant|8544468 +public service|8544501 +public speaker|8544574 +public speaking|8544686 +public square|8544766 +public toilet|8544890 +public transit|8545064 +public transport|8545133 +public treasury|8545180 +public trust|8545236 +public utility|8545281 +public violence|8545348 +public works|8545393 +public-relations campaign|8541807 +public-service corporation|8541884 +public-spirited|8541951 +publically|8545438 +publican|8545476 +publication|8545554 +publicise|8545685 +publicised|8545781 +publiciser|8545854 +publicist|8545908 +publicity|8545962 +publicity man|8546063 +publicize|8546158 +publicized|8546254 +publicizer|8546338 +publicizing|8546392 +publicly|8546476 +publish|8546514 +publishable|8546654 +published|8546687 +publisher|8546757 +publishing|8546937 +publishing company|8547020 +publishing conglomerate|8547116 +publishing empire|8547187 +publishing firm|8547258 +publishing house|8547354 +publius aelius hadrianus|8547450 +publius cornelius scipio|8547554 +publius cornelius scipio africanus major|8547739 +publius ovidius naso|8547940 +publius terentius afer|8548001 +publius vergilius maro|8548085 +pubococcygeus exercises|8548159 +puccini|8548272 +puccinia|8548322 +puccinia graminis|8548377 +pucciniaceae|8548450 +puccoon|8548519 +puce|8548665 +puck|8548695 +pucka|8548786 +pucker|8548816 +puckerbush|8549092 +puckered|8549150 +puckered-up|8549189 +puckish|8549228 +puckishly|8549299 +puckishness|8549326 +pud|8549403 +pudden-head|8549431 +pudding|8549534 +pudding berry|8549914 +pudding face|8550020 +pudding head|8550190 +pudding pipe tree|8550293 +pudding stone|8550415 +pudding-face|8549602 +pudding-wife|8549772 +puddingheaded|8550462 +puddingwife|8550537 +puddle|8550598 +puddler|8551165 +pudendal|8551193 +pudendal artery|8551273 +pudendal block|8551351 +pudendal cleavage|8551416 +pudendal cleft|8551531 +pudendal slit|8551646 +pudendal vein|8551761 +pudendum|8551829 +pudge|8551910 +pudginess|8551935 +pudgy|8552009 +puebla|8552046 +puebla de zaragoza|8552144 +pueblo|8552254 +pueraria|8552398 +pueraria lobata|8552458 +puerile|8552521 +puerility|8552604 +puerpera|8552687 +puerperal|8552726 +puerperal fever|8552839 +puerperium|8552918 +puerto rican|8552972 +puerto rico|8553016 +puff|8553141 +puff adder|8553826 +puff batter|8553923 +puff of air|8553975 +puff out|8554023 +puff paste|8554102 +puff up|8554157 +puffball|8554320 +puffbird|8554419 +puffed|8554451 +puffed rice|8554550 +puffed wheat|8554594 +puffer|8554639 +puffin|8554744 +puffiness|8554785 +puffing|8554826 +puffinus|8554965 +puffinus puffinus|8555018 +puffy|8555090 +pug|8555243 +pug nose|8555443 +pug-dog|8555298 +pug-nose|8555353 +pug-nosed|8555398 +puget sound|8555482 +pugilism|8555521 +pugilist|8555571 +pugilistic|8555642 +pugin|8555722 +puglia|8555793 +pugnacious|8555838 +pugnacity|8555912 +puissance|8556008 +puissant|8556046 +pujunan|8556073 +puka|8556113 +puka inti|8556186 +puke|8556306 +puking|8556678 +pukka|8556883 +puku|8556913 +pul|8556952 +pula|8556986 +pulasan|8557023 +pulasan tree|8557121 +pulassan|8557190 +pulchritude|8557287 +pulchritudinous|8557315 +pule|8557350 +pulex|8557391 +pulex irritans|8557440 +pulicaria|8557484 +pulicaria dysenterica|8557549 +pulicidae|8557648 +pulitzer|8557711 +pull|8557784 +pull a face|8558960 +pull a fast one on|8559030 +pull ahead|8559117 +pull along|8559189 +pull at|8559227 +pull away|8559266 +pull back|8559370 +pull chain|8559632 +pull down|8559663 +pull in|8559794 +pull in one's horns|8560042 +pull off|8560139 +pull one's weight|8560373 +pull out|8560405 +pull out all the stops|8560658 +pull over|8560723 +pull round|8560823 +pull someone's leg|8560919 +pull strings|8560996 +pull the leg of|8561064 +pull the plug|8561168 +pull the wool over someone's eyes|8561235 +pull through|8561357 +pull together|8561493 +pull up|8561538 +pull up short|8561719 +pull up stakes|8561752 +pull wires|8561796 +pull-in|8558705 +pull-off|8558770 +pull-through|8558826 +pull-up|8558867 +pullback|8561864 +pulled|8561923 +puller|8561944 +pullet|8561995 +pulley|8562064 +pulley-block|8562122 +pulling|8562180 +pulling out|8562223 +pullman|8562336 +pullman car|8562402 +pullman porter|8562472 +pullorum disease|8562527 +pullout|8562619 +pullover|8562667 +pullulate|8562702 +pullulate with|8562900 +pullulation|8562948 +pulmonary|8563046 +pulmonary anthrax|8563101 +pulmonary artery|8563257 +pulmonary circulation|8563339 +pulmonary congestion|8563382 +pulmonary embolism|8563423 +pulmonary emphysema|8563460 +pulmonary plexis|8563560 +pulmonary reserve|8563617 +pulmonary stenosis|8563652 +pulmonary trunk|8563699 +pulmonary tuberculosis|8563779 +pulmonary valve|8563882 +pulmonary vein|8563923 +pulmonata|8563993 +pulmonic|8564051 +pulp|8564106 +pulp cavity|8564289 +pulp magazine|8564337 +pulpit|8564378 +pulpwood|8564442 +pulpy|8564474 +pulque|8564498 +pulsar|8564562 +pulsate|8564591 +pulsatilla|8564694 +pulsatilla occidentalis|8564764 +pulsatilla patens|8564890 +pulsatilla vulgaris|8565098 +pulsating|8565215 +pulsation|8565270 +pulse|8565404 +pulse counter|8565725 +pulse generator|8565766 +pulse height analyzer|8565801 +pulse modulation|8565865 +pulse rate|8565902 +pulse timing circuit|8565955 +pulse-time modulation|8565677 +pulsed|8566029 +pulseless|8566065 +pulseless disease|8566110 +pulsing|8566168 +pulverisation|8566270 +pulverise|8566423 +pulverised|8566585 +pulverization|8566665 +pulverize|8566818 +pulverized|8566980 +puma|8567060 +pumice|8567144 +pumice stone|8567184 +pummel|8567224 +pummelo|8567256 +pump|8567365 +pump action|8567777 +pump house|8567835 +pump priming|8567877 +pump room|8568008 +pump well|8568054 +pump-and-dump scheme|8567664 +pump-type pliers|8567722 +pumped|8568078 +pumped up|8568254 +pumped-up|8568126 +pumpernickel|8568382 +pumping station|8568426 +pumpkin|8568468 +pumpkin ash|8568610 +pumpkin pie|8568663 +pumpkin seed|8568688 +pumpkin vine|8568778 +pumpkin-shaped|8568571 +pumpkinseed|8568857 +pumps|8568915 +pun|8569034 +punch|8569108 +punch bag|8569336 +punch bowl|8569397 +punch card|8569422 +punch in|8569475 +punch line|8569533 +punch out|8569587 +punch pliers|8569633 +punch press|8569669 +punch-drunk|8569242 +punch-up|8569288 +punchayet|8569713 +punchball|8569760 +punchboard|8569821 +punched card|8569857 +puncher|8569910 +punching bag|8570037 +punching ball|8570112 +punctilio|8570173 +punctilious|8570229 +punctiliousness|8570269 +punctual|8570371 +punctuality|8570420 +punctually|8570459 +punctuate|8570483 +punctuated equilibrium|8570625 +punctuation|8570738 +punctuation mark|8570823 +punctum|8570866 +puncturable|8570889 +puncture|8570922 +punctured|8571164 +punctureless|8571216 +pundit|8571264 +pung|8571344 +pungapung|8571377 +pungency|8571491 +pungent|8571597 +punic|8571713 +punic war|8571811 +punica|8571852 +punica granatum|8571919 +punicaceae|8572000 +puniness|8572082 +punish|8572143 +punishable|8572177 +punished|8572225 +punishing|8572399 +punishment|8572498 +punitive|8572567 +punitive damages|8572695 +punitively|8572812 +punitorily|8572850 +punitory|8572888 +punjab|8573007 +punjabi|8573102 +punk|8573194 +punk rock|8573588 +punk rocker|8573682 +punkah|8573738 +punkey|8573758 +punkie|8573815 +punks|8573872 +punky|8574255 +punnet|8574312 +punning|8574346 +punster|8574403 +punt|8574439 +punta arenas|8574634 +punter|8574698 +punting|8574789 +puny|8574829 +pup|8574875 +pup tent|8574982 +pupa|8575038 +pupal|8575059 +pupate|8575083 +pupet regime|8575132 +pupil|8575215 +pupillary|8575350 +pupillary reflex|8575377 +pupillary sphincter|8575528 +puppet|8575633 +puppet government|8575712 +puppet leader|8575795 +puppet play|8575851 +puppet ruler|8575889 +puppet show|8575945 +puppet state|8575983 +puppeteer|8576066 +puppetry|8576113 +puppis|8576187 +puppy|8576224 +puppy chow|8576302 +puppy fat|8576331 +puppy love|8576382 +puppyish|8576435 +puppylike|8576478 +purace|8576521 +purana|8576552 +puranic|8576595 +purau|8576639 +purblind|8576713 +purcell|8576846 +purchasable|8576903 +purchase|8576995 +purchase agreement|8577122 +purchase contract|8577177 +purchase order|8577232 +purchase price|8577304 +purchaser|8577347 +purchasing|8577402 +purchasing agent|8577438 +purchasing department|8577470 +purdah|8577521 +pure|8577616 +pure absence|8578158 +pure and simple|8578222 +pure binary numeration system|8578261 +pure imaginary number|8578413 +pure mathematics|8578493 +pure tone|8578542 +pureblood|8578591 +pureblooded|8578740 +purebred|8578812 +puree|8579003 +purely|8579109 +pureness|8579133 +purgation|8579175 +purgative|8579287 +purgatorial|8579413 +purgatory|8579497 +purge|8579564 +purging|8580028 +purging cassia|8580147 +purification|8580269 +purified|8580413 +purifier|8580454 +purify|8580488 +purifying|8580630 +purim|8580775 +purine|8580812 +purinethol|8580859 +purist|8580985 +puritan|8581028 +puritanic|8581161 +puritanical|8581218 +puritanically|8581444 +puritanism|8581476 +purity|8581560 +purkinje|8581700 +purkinje cell|8582011 +purkinje fiber|8582059 +purkinje network|8582126 +purkinje's system|8581795 +purkinje's tissue|8581903 +purl|8582233 +purl stitch|8582443 +purloin|8582505 +purloined|8582599 +purloo|8582631 +purple|8582673 +purple amaranth|8583751 +purple anise|8583938 +purple apricot|8583991 +purple avens|8584067 +purple bacteria|8584193 +purple beech|8584261 +purple boneset|8584381 +purple chinese houses|8584489 +purple clematis|8584594 +purple clover|8584691 +purple cress|8584759 +purple emperor|8584826 +purple finch|8584889 +purple fringeless orchid|8584938 +purple fringeless orchis|8585047 +purple gallinule|8585156 +purple grackle|8585221 +purple granadillo|8585287 +purple ground cherry|8585376 +purple heart|8585552 +purple heather|8585740 +purple loco|8585815 +purple locoweed|8585902 +purple loosestrife|8585989 +purple martin|8586066 +purple milk vetch|8586109 +purple mullein|8586177 +purple nightshade|8586256 +purple onion|8586428 +purple orchis|8586474 +purple osier|8586557 +purple passage|8586649 +purple pea|8586681 +purple poppy mallow|8586718 +purple rock brake|8586782 +purple sage|8586865 +purple sanicle|8586932 +purple saxifrage|8586997 +purple silkweed|8587077 +purple strawberry guava|8587143 +purple trillium|8587248 +purple velvet plant|8587343 +purple virgin's bower|8587433 +purple willow|8587530 +purple-flowering raspberry|8583067 +purple-fringed orchid|8583176 +purple-fringed orchis|8583357 +purple-hooded orchis|8583538 +purple-staining cortinarius|8583621 +purple-stemmed aster|8583715 +purpleness|8587622 +purplish|8587723 +purplish blue|8587765 +purplish pink|8587813 +purplish red|8587851 +purport|8587885 +purported|8588042 +purportedly|8588100 +purpose|8588131 +purpose-built|8588387 +purpose-made|8588434 +purposeful|8588481 +purposeless|8588630 +purposelessness|8588819 +purposely|8588872 +purposive|8588969 +purpura|8589030 +purpura hemorrhagica|8589085 +purpurate|8589250 +purr|8589355 +purse|8589462 +purse seine|8589826 +purse string|8589853 +purse-proud|8589672 +purse-string operation|8589699 +purser|8589908 +purslane|8589947 +purslane family|8589987 +purslane speedwell|8590074 +pursuance|8590140 +pursuant|8590224 +pursue|8590253 +pursued|8590432 +pursuer|8590500 +pursuing|8590593 +pursuit|8590621 +pursy|8590750 +purulence|8590870 +purulency|8591012 +purulent|8591049 +purulent pleurisy|8591096 +purus|8591140 +purus river|8591179 +purvey|8591224 +purveyance|8591280 +purveyor|8591327 +purview|8591363 +pus|8591431 +pusan|8591648 +pusey|8591703 +puseyism|8591805 +push|8591878 +push around|8592960 +push aside|8593055 +push away|8593166 +push back|8593207 +push broom|8593320 +push button|8593346 +push down|8593420 +push forward|8593481 +push on|8593620 +push out|8593704 +push through|8593752 +push up|8593810 +push-bike|8592524 +push-button radio|8592568 +push-down list|8592655 +push-down queue|8592714 +push-down stack|8592745 +push-down storage|8592804 +push-down store|8592882 +pushan|8593891 +pushball|8593926 +pushcart|8593955 +pushchair|8594011 +pusher|8594122 +pushful|8594421 +pushiness|8594486 +pushing|8594574 +pushkin|8594672 +pushover|8594750 +pushpin|8594907 +pushtun|8594966 +pushup|8595035 +pushy|8595073 +pusillanimity|8595138 +pusillanimous|8595191 +pusillanimously|8595253 +pusillanimousness|8595289 +pusly|8595342 +puss|8595420 +pussley|8595612 +pussy|8595690 +pussy willow|8596343 +pussy's-paw|8595920 +pussy-paw|8596029 +pussy-paws|8596138 +pussycat|8596455 +pussyfoot|8596612 +pussytoes|8596660 +pustulate|8596741 +pustule|8596791 +put|8596841 +put across|8597943 +put away|8598016 +put back|8598431 +put behind bars|8598524 +put differently|8598626 +put down|8598665 +put forward|8599030 +put in|8599339 +put off|8599783 +put on|8600065 +put on airs|8600500 +put on the line|8600570 +put one across|8600645 +put one over|8600756 +put option|8600867 +put out|8600918 +put out feelers|8601456 +put over|8601489 +put right|8601637 +put through|8601722 +put to death|8601858 +put to sleep|8601918 +put to work|8602050 +put together|8602109 +put under|8602251 +put up|8602351 +put-down|8597477 +put-on|8597531 +put-put|8597814 +put-up|8597847 +put-upon|8597871 +putamen|8602730 +putative|8602762 +putdownable|8602820 +putin|8602855 +putoff|8602952 +putout|8602991 +putrefacient|8603011 +putrefaction|8603053 +putrefactive|8603124 +putrefiable|8603166 +putrefied|8603230 +putrefy|8603273 +putrescence|8603296 +putrescent|8603422 +putrescible|8603449 +putrescine|8603513 +putrid|8603550 +putridity|8603750 +putridness|8603789 +putrified|8603860 +putsch|8603903 +putt|8603958 +puttee|8604031 +puttees|8604082 +putter|8604174 +putter around|8604398 +putterer|8604454 +putting|8604518 +putting green|8604568 +putting iron|8604612 +putting to death|8604646 +putty|8604715 +putty knife|8604764 +puttyroot|8604793 +putz|8604869 +puzzle|8604984 +puzzle out|8605367 +puzzle over|8605434 +puzzled|8605480 +puzzlement|8605538 +puzzler|8605681 +puzzling|8605730 +pva|8605840 +pvc|8605917 +pwr|8606070 +px|8606134 +pya|8606174 +pyaemia|8606209 +pyaemic|8606272 +pycnanthemum|8606334 +pycnanthemum virginianum|8606430 +pycnidium|8606514 +pycnodysostosis|8606560 +pycnogonid|8606601 +pycnogonida|8606642 +pycnosis|8606706 +pycnotic|8606741 +pydna|8606775 +pye-dog|8606827 +pyelogram|8606880 +pyelography|8606950 +pyelonephritis|8607005 +pyemia|8607053 +pyemic|8607116 +pygmalion|8607178 +pygmy|8607222 +pygmy chimpanzee|8607288 +pygmy cypress|8607367 +pygmy marmoset|8607457 +pygmy mouse|8607507 +pygmy sperm whale|8607555 +pygopodidae|8607612 +pygopus|8607679 +pygoscelis|8607732 +pygoscelis adeliae|8607791 +pyinma|8607868 +pyjama|8607889 +pyjamas|8607920 +pyknic|8608040 +pyknic type|8608084 +pyknosis|8608137 +pyknotic|8608172 +pylodictus|8608206 +pylodictus olivaris|8608265 +pylon|8608406 +pyloric|8608452 +pyloric sphincter|8608490 +pyloric stenosis|8608605 +pyloric valve|8608650 +pyloric vein|8608765 +pylorus|8608854 +pynchon|8608893 +pyocyanase|8608947 +pyocyanin|8608994 +pyogenic|8609040 +pyongyang|8609067 +pyorrhea|8609136 +pyorrhea alveolaris|8609260 +pyorrhoea|8609357 +pyotr alexeyevich kropotkin|8609480 +pyotr ilych tchaikovsky|8609609 +pyotr tchaikovsky|8609747 +pyracanth|8609879 +pyracantha|8609941 +pyralid|8610014 +pyralid moth|8610049 +pyralidae|8610084 +pyralididae|8610178 +pyralis|8610274 +pyramid|8610329 +pyramid bugle|8610519 +pyramid plant|8610576 +pyramid scheme|8610686 +pyramidal|8610726 +pyramidal bone|8610775 +pyramidal motor system|8610885 +pyramidal tent|8610965 +pyramidal tract|8611014 +pyramidic|8611094 +pyramidical|8611143 +pyramiding|8611192 +pyrausta|8611230 +pyrausta nubilalis|8611288 +pyre|8611452 +pyrectic|8611503 +pyrene|8611569 +pyrenees|8611611 +pyrenees daisy|8611718 +pyrenomycetes|8611828 +pyrethrum|8611891 +pyretic|8612185 +pyrex|8612210 +pyrexia|8612237 +pyridine|8612301 +pyridium|8612331 +pyridoxal|8612413 +pyridoxamine|8612543 +pyridoxine|8612673 +pyriform area|8612803 +pyriform lobe|8612885 +pyrilamine|8612967 +pyrimidine|8613001 +pyrite|8613057 +pyrites|8613105 +pyrocellulose|8613185 +pyrocephalus|8613263 +pyrocephalus rubinus mexicanus|8613328 +pyrochemical|8613492 +pyrochemical process|8613528 +pyrochemistry|8613621 +pyroelectric|8613714 +pyroelectrical|8613772 +pyroelectricity|8613830 +pyrogallic|8613877 +pyrogallic acid|8613903 +pyrogallol|8613946 +pyrogen|8613989 +pyrogenetic|8614032 +pyrogenic|8614090 +pyrogenous|8614185 +pyrograph|8614279 +pyrographer|8614320 +pyrographic|8614364 +pyrography|8614415 +pyrola|8614466 +pyrola americana|8614516 +pyrola elliptica|8614626 +pyrola minor|8614721 +pyrola rotundifolia|8614794 +pyrola rotundifolia americana|8614886 +pyrola uniflora|8615009 +pyrolaceae|8615134 +pyrolatry|8615225 +pyroligneous|8615265 +pyroligneous acid|8615332 +pyrolignic|8615379 +pyrolusite|8615446 +pyrolysis|8615474 +pyrolytic|8615528 +pyromancer|8615581 +pyromancy|8615609 +pyromania|8615679 +pyromaniac|8615722 +pyrometer|8615764 +pyrometric cone|8615795 +pyromorphite|8615830 +pyrope|8615875 +pyrophobia|8615898 +pyrophoric alloy|8615932 +pyrophorus|8615970 +pyrophorus noctiluca|8616034 +pyrophosphate|8616137 +pyrophosphoric acid|8616165 +pyrophyllite|8616214 +pyroscope|8616244 +pyrosis|8616291 +pyrostat|8616326 +pyrotechnic|8616371 +pyrotechnical|8616468 +pyrotechnics|8616514 +pyrotechny|8616626 +pyroxene|8616671 +pyroxylin|8616697 +pyroxyline|8616782 +pyrrhic|8616867 +pyrrhic victory|8617091 +pyrrhocoridae|8617148 +pyrrhotine|8617223 +pyrrhotite|8617279 +pyrrhula|8617335 +pyrrhula pyrrhula|8617388 +pyrrhuloxia|8617449 +pyrrhuloxia sinuata|8617496 +pyrrhus|8617563 +pyrrophyta|8617606 +pyrrosia|8617662 +pyrrosia lingua|8617715 +pyrularia|8617802 +pyrularia pubera|8617869 +pyrus|8617951 +pyrus communis|8618002 +pyruvic acid|8618067 +pythagoras|8618094 +pythagorean|8618151 +pythia|8618209 +pythiaceae|8618254 +pythian games|8618317 +pythias|8618359 +pythium|8618436 +pythium debaryanum|8618460 +pythius|8618534 +python|8618589 +python molurus|8618691 +python reticulatus|8618751 +python sebae|8618824 +python variegatus|8618889 +pythoness|8618982 +pythonidae|8619043 +pythoninae|8619107 +pyuria|8619174 +pyx|8619198 +pyx chest|8619263 +pyxidanthera|8619306 +pyxidanthera barbulata|8619382 +pyxidium|8619465 +pyxie|8619495 +pyxis|8619555 +q|8619623 +q fever|8619687 +qabala|8619746 +qabalah|8619833 +qabalistic|8619920 +qabbala|8620000 +qabbalah|8620092 +qaddafi|8620185 +qadhafi|8620279 +qadi|8620373 +qaeda|8620419 +qandahar|8620547 +qassam brigades|8620612 +qat|8620782 +qatar|8620862 +qatar peninsula|8621007 +qatari|8621086 +qatari dirham|8621176 +qatari monetary unit|8621241 +qatari riyal|8621306 +qcd|8621368 +qed|8621429 +qepiq|8621491 +qi|8621532 +qiang|8621576 +qiangic|8621642 +qibla|8621710 +qindarka|8621826 +qing|8621874 +qing dynasty|8621958 +qintar|8622050 +qoph|8622098 +quaalude|8622163 +quack|8622244 +quack grass|8622430 +quack-quack|8622404 +quackery|8622640 +quackgrass|8622725 +quad|8622854 +quadragesima|8623022 +quadrangle|8623096 +quadrangular|8623180 +quadrangular prism|8623225 +quadrant|8623259 +quadrantanopia|8623431 +quadraphonic|8623517 +quadraphonic system|8623616 +quadraphony|8623718 +quadrasonic|8623820 +quadrate|8623919 +quadratic|8624000 +quadratic equation|8624143 +quadratic polynomial|8624190 +quadratics|8624253 +quadrature|8624387 +quadric|8624420 +quadric surface|8624472 +quadriceps|8624524 +quadriceps femoris|8624621 +quadrigesima sunday|8624718 +quadrilateral|8624799 +quadrille|8624908 +quadrillion|8625005 +quadrillionth|8625061 +quadripara|8625134 +quadripartite|8625175 +quadriphonic|8625233 +quadriphonic system|8625332 +quadriplegia|8625434 +quadriplegic|8625472 +quadrisonic|8625513 +quadroon|8625612 +quadrumvirate|8625651 +quadruped|8625701 +quadrupedal|8625760 +quadruple|8625805 +quadruple time|8625933 +quadruplet|8626012 +quadruplex|8626184 +quadruplicate|8626246 +quadrupling|8626337 +quaestor|8626373 +quaff|8626412 +quaffer|8626487 +quag|8626512 +quagga|8626560 +quaggy|8626602 +quagmire|8626667 +quahaug|8626715 +quahog|8626856 +quai d'orsay|8626998 +quail|8627097 +quail at|8627197 +quail brush|8627253 +quail bush|8627329 +quaint|8627405 +quaintness|8627508 +quake|8627579 +quaker|8627701 +quaker gun|8627764 +quakerism|8627799 +quakers|8627868 +quaking|8628038 +quaking aspen|8628108 +qualification|8628176 +qualified|8628283 +qualifier|8628571 +qualify|8628646 +qualifying|8628908 +qualifying adjective|8629015 +qualitative|8629077 +qualitative analysis|8629125 +quality|8629182 +quality control|8629462 +quality of life|8629504 +qualm|8629556 +quamash|8629645 +quamassia|8629706 +quamoclit pennata|8629796 +quandang|8629909 +quandary|8630043 +quandong|8630117 +quandong nut|8630367 +quandong tree|8630400 +quango|8630572 +quantal|8630624 +quantifiability|8630674 +quantifiable|8630721 +quantification|8630756 +quantifier|8630852 +quantify|8630908 +quantisation|8630994 +quantise|8631038 +quantitative|8631175 +quantitative analysis|8631337 +quantitative chemical analysis|8631480 +quantitative relation|8631623 +quantity|8631682 +quantity unit|8631777 +quantization|8631837 +quantize|8631881 +quantized|8632018 +quantong|8632068 +quantum|8632130 +quantum chromodynamics|8632187 +quantum electrodynamics|8632244 +quantum field theory|8632302 +quantum jump|8632348 +quantum leap|8632420 +quantum mechanics|8632465 +quantum physics|8632508 +quantum theory|8632577 +quapaw|8632619 +quarantine|8632672 +quarantined|8632755 +quark|8632809 +quark cheese|8632911 +quarrel|8632946 +quarreler|8633123 +quarreller|8633188 +quarrelsome|8633253 +quarrelsomeness|8633288 +quarrier|8633384 +quarry|8633419 +quarrying|8633594 +quarryman|8633624 +quart|8633659 +quartan|8633792 +quarter|8633849 +quarter crack|8634965 +quarter day|8634999 +quarter horse|8635039 +quarter mile|8635094 +quarter note|8635138 +quarter plate|8635192 +quarter rest|8635240 +quarter round|8635267 +quarter section|8635319 +quarter sessions|8635369 +quarter stock|8635421 +quarter tone|8635450 +quarter-century|8634504 +quarter-circle|8634563 +quarter-hour|8634601 +quarter-tone|8634657 +quarter-vine|8634799 +quarterback|8635592 +quarterdeck|8635698 +quarterfinal|8635724 +quartering|8635752 +quarterlight|8635867 +quarterly|8635900 +quartermaster|8636012 +quartermaster general|8636048 +quartern|8636093 +quarters|8636201 +quarterstaff|8636903 +quartervine|8636931 +quartet|8637016 +quartette|8637362 +quartic|8637593 +quartic polynomial|8637653 +quartile|8637739 +quarto|8637774 +quartz|8637799 +quartz battery|8637896 +quartz crystal|8637957 +quartz glass|8637988 +quartz lamp|8638070 +quartz mill|8638110 +quartz oscillator|8638171 +quartzite|8638228 +quartzose|8638258 +quasar|8638284 +quash|8638356 +quasi|8638498 +quasi contract|8638728 +quasi-ngo|8638521 +quasi-religious|8638583 +quasi-royal|8638615 +quasi-stellar radio source|8638656 +quasiparticle|8638761 +quassia|8638792 +quassia amara|8638874 +quassia family|8638946 +quat|8639024 +quatercentenary|8639104 +quatercentennial|8639177 +quatern|8639250 +quaternary|8639369 +quaternary ammonium compound|8639613 +quaternary period|8639668 +quaternate|8639760 +quaternion|8639800 +quaternity|8639919 +quatrain|8640038 +quattrocento|8640063 +quaver|8640093 +quavering|8640225 +quay|8640263 +queasiness|8640302 +queasy|8640358 +quebec|8640406 +quebec bridge|8640492 +quebec city|8640547 +quebecois|8640606 +quechua|8640678 +quechuan|8640865 +quechuan language|8641130 +queckenstedt's test|8641283 +queen|8641365 +queen anne's lace|8642176 +queen bee|8642270 +queen charlotte sound|8642295 +queen consort|8642354 +queen dowager|8642383 +queen it over|8642412 +queen maud land|8642482 +queen mother|8642595 +queen of england|8642631 +queen of the may|8642709 +queen of the night|8642807 +queen post|8642883 +queen regent|8642908 +queen regnant|8642936 +queen triggerfish|8642998 +queen victoria|8643082 +queen's counsel|8641835 +queen's crape myrtle|8641897 +queen's cup|8642020 +queen-size|8642100 +queen-sized|8642138 +queenfish|8643155 +queenlike|8643213 +queenly|8643246 +queens|8643279 +queensboro bridge|8643802 +queensland|8643865 +queensland bottletree|8643913 +queensland grass-cloth plant|8644058 +queensland hemp|8644171 +queensland kauri|8644246 +queensland nut|8644343 +queer|8644429 +queer bird|8644867 +queer duck|8644958 +queerly|8645049 +queerness|8645109 +quell|8645187 +quelled|8645318 +quelling|8645365 +quellung|8645428 +quellung reaction|8645499 +quench|8645570 +quenched|8645895 +quenched steel|8645976 +quenching|8646006 +quenchless|8646080 +quentin jerome tarantino|8646145 +quentin tarantino|8646279 +quercitron|8646406 +quercitron oak|8646512 +quercus|8646598 +quercus agrifolia|8646659 +quercus alba|8646748 +quercus arizonica|8646812 +quercus bicolor|8646885 +quercus borealis|8646962 +quercus cerris|8647044 +quercus chrysolepis|8647127 +quercus coccinea|8647230 +quercus ellipsoidalis|8647298 +quercus falcata|8647390 +quercus garryana|8647481 +quercus grosseserrata|8647572 +quercus ilex|8647669 +quercus ilicifolia|8647767 +quercus imbricaria|8647833 +quercus incana|8647916 +quercus kelloggii|8647992 +quercus laevis|8648071 +quercus laurifolia|8648154 +quercus lobata|8648233 +quercus lyrata|8648337 +quercus macrocarpa|8648401 +quercus marilandica|8648502 +quercus michauxii|8648594 +quercus mongolica|8648671 +quercus montana|8648764 +quercus muehlenbergii|8648852 +quercus myrtifolia|8648967 +quercus nigra|8649053 +quercus nuttalli|8649124 +quercus palustris|8649206 +quercus petraea|8649282 +quercus phellos|8649362 +quercus prinoides|8649427 +quercus prinus|8649536 +quercus robur|8649623 +quercus rubra|8649709 +quercus sessiliflora|8649788 +quercus shumardii|8649873 +quercus stellata|8649954 +quercus suber|8650052 +quercus texana|8650111 +quercus vaccinifolia|8650175 +quercus variabilis|8650253 +quercus velutina|8650330 +quercus virginiana|8650433 +quercus wislizenii|8650507 +quercus wizlizenii|8650600 +querier|8650693 +quern|8650790 +querulous|8650818 +querulously|8650891 +querulousness|8650933 +query|8651035 +query language|8651131 +quest|8651204 +quest after|8651468 +quest for|8651536 +quester|8651604 +question|8651690 +question mark|8652263 +question master|8652335 +question of fact|8652403 +question of law|8652458 +question sheet|8652511 +question time|8652597 +questionable|8652654 +questionably|8652950 +questioner|8652981 +questioning|8653078 +questioningly|8653248 +questionnaire|8653300 +quetch|8653328 +quetzal|8653381 +quetzal bird|8653450 +quetzalcoatl|8653487 +queue|8653550 +queue up|8653673 +quezon city|8653720 +qui vive|8653782 +quiaquia|8653841 +quibble|8653906 +quibbler|8654115 +quibbling|8654197 +quiche|8654266 +quiche lorraine|8654352 +quick|8654400 +quick assets|8655132 +quick bread|8655175 +quick buck|8655227 +quick fix|8655313 +quick grass|8655406 +quick march|8655535 +quick study|8655571 +quick temper|8655627 +quick time|8655704 +quick-change|8654617 +quick-eared|8654660 +quick-freeze|8654701 +quick-frozen|8654743 +quick-sighted|8654795 +quick-tempered|8654938 +quick-witted|8655037 +quick-wittedness|8655066 +quicken|8655734 +quickener|8655997 +quickening|8656044 +quicker|8656183 +quickest|8656206 +quickie|8656231 +quicklime|8656324 +quickly|8656425 +quickness|8656511 +quicksand|8656671 +quickset|8656718 +quicksilver|8656764 +quickstep|8656901 +quicky|8657070 +quid|8657163 +quid pro quo|8657323 +quiddity|8657373 +quiesce|8657555 +quiescence|8657629 +quiescency|8657766 +quiescent|8657903 +quiet|8657984 +quiet down|8658720 +quieten|8658794 +quietening|8659065 +quietism|8659112 +quietist|8659160 +quietly|8659202 +quietness|8659253 +quietude|8659350 +quietus|8659412 +quiff|8659473 +quill|8659497 +quill feather|8659629 +quill pen|8659702 +quillwort|8659731 +quillwort family|8659760 +quilt|8659827 +quilted|8659939 +quilted bedspread|8659962 +quilting|8660050 +quilting bee|8660112 +quin|8660138 +quinacrine|8660181 +quinacrine hydrochloride|8660324 +quince|8660467 +quince bush|8660559 +quincentenary|8660614 +quincentennial|8660735 +quincy|8660855 +quine|8660922 +quinidex|8661012 +quinidine|8661118 +quinine|8661215 +quinine water|8661263 +quinnat salmon|8661315 +quinone|8661405 +quinora|8661462 +quinquagesima|8661567 +quinquagesima sunday|8661644 +quinquefoliate|8661728 +quinquefoliate leaf|8661761 +quinsy|8661804 +quint|8661849 +quintal|8661988 +quintessence|8662113 +quintessential|8662320 +quintet|8662388 +quintette|8662708 +quintillion|8662928 +quintillionth|8662963 +quintipara|8663036 +quintuple|8663077 +quintuplet|8663139 +quintupling|8663273 +quintus septimius florens tertullianus|8663309 +quip|8663453 +quipu|8663567 +quira|8663613 +quire|8663660 +quirk|8663693 +quirk bead|8663806 +quirk molding|8663872 +quirk moulding|8663927 +quirkiness|8663982 +quirky|8664060 +quirt|8664121 +quiscalus|8664141 +quiscalus quiscula|8664197 +quisling|8664282 +quislingism|8664349 +quit|8664413 +quitclaim|8664744 +quitclaim deed|8664818 +quite|8664863 +quite a|8664907 +quite a little|8664938 +quite an|8665178 +quito|8665209 +quits|8665266 +quittance|8665287 +quitter|8665340 +quiver|8665410 +quivering|8665749 +quixotic|8665944 +quixotism|8665993 +quiz|8666037 +quiz program|8666093 +quizmaster|8666134 +quizzer|8666202 +quizzical|8666278 +quizzically|8666350 +qum|8666384 +quo warranto|8666430 +quodlibet|8666460 +quoin|8666485 +quoit|8666599 +quoits|8666629 +quondam|8666697 +quonset hut|8666758 +quoratean|8666825 +quorum|8666865 +quota|8666902 +quotability|8666988 +quotable|8667020 +quotation|8667063 +quotation mark|8667245 +quote|8667319 +quoter|8667594 +quotidian|8667623 +quotient|8667698 +quotient verdict|8667736 +quran|8667781 +qurush|8667883 +qwerty keyboard|8667927 +r|8667988 +r and b|8668745 +r-2|8668164 +r. b. cattell|8668264 +r. buckminster fuller|8668377 +r. j. mitchell|8668542 +r.c.|8668637 +ra|8668856 +rabat|8669009 +rabato|8669066 +rabbet|8669105 +rabbet joint|8669185 +rabbet plane|8669213 +rabbi|8669292 +rabbi moses ben maimon|8669360 +rabbinate|8669455 +rabbinic|8669485 +rabbinical|8669530 +rabbit|8669575 +rabbit bandicoot|8670195 +rabbit brush|8670277 +rabbit burrow|8670346 +rabbit bush|8670393 +rabbit ears|8670462 +rabbit fever|8670513 +rabbit food|8670605 +rabbit hole|8670657 +rabbit hutch|8670704 +rabbit on|8670732 +rabbit punch|8670827 +rabbit test|8670876 +rabbit warren|8670926 +rabbit's-foot fern|8669701 +rabbit-eared bandicoot|8669799 +rabbit-eye blueberry|8669881 +rabbit-weed|8669982 +rabbiteye|8671032 +rabbiteye blueberry|8671133 +rabbitfish|8671234 +rabbitweed|8671282 +rabbitwood|8671414 +rabble|8671479 +rabble-rouser|8671571 +rabble-rousing|8671670 +rabelais|8671761 +rabelaisian|8671833 +rabi i|8671892 +rabi ii|8671938 +rabid|8671986 +rabies|8672042 +raccoon|8672110 +raccoon dog|8672160 +raccoon fox|8672214 +race|8672352 +race car|8672760 +race driver|8672832 +race horse|8672884 +race meeting|8673025 +race murder|8673067 +race problem|8673148 +race riot|8673182 +race runner|8673222 +raceabout|8673407 +racecard|8673432 +racecourse|8673468 +racehorse|8673519 +raceme|8673579 +racemic acid|8673610 +racemose|8673646 +racer|8673678 +racerunner|8673880 +racetrack|8673984 +racetrack tout|8674035 +raceway|8674072 +rachel|8674141 +rachel carson|8674183 +rachel louise carson|8674306 +rachet|8674436 +rachet up|8674484 +rachis|8674572 +rachischisis|8674670 +rachitic|8674814 +rachitis|8674860 +rachmaninoff|8674949 +rachmaninov|8675128 +rachycentridae|8675306 +rachycentron|8675379 +rachycentron canadum|8675444 +racial|8675547 +racial discrimination|8675631 +racial extermination|8675717 +racial immunity|8675798 +racial profiling|8675856 +racial segregation|8675921 +racialism|8675972 +racialist|8676058 +racine|8676090 +raciness|8676215 +racing|8676272 +racing boat|8676304 +racing car|8676336 +racing circuit|8676408 +racing gig|8676475 +racing shell|8676507 +racing skate|8676547 +racing skiff|8676591 +racing start|8676645 +racing yacht|8676673 +racism|8676719 +racist|8676841 +rack|8676955 +rack and pinion|8677505 +rack of lamb|8677555 +rack railway|8677616 +rack rent|8677709 +rack up|8677733 +racker|8677960 +racket|8678002 +racket club|8678318 +racketeer|8678375 +racketeer influenced and corrupt organizations act|8678462 +racketeering|8678613 +racketiness|8678642 +rackety|8678679 +racking|8678725 +racon|8678760 +raconteur|8678806 +racoon|8678864 +racquet|8678898 +racquetball|8678939 +racy|8678983 +rad|8679068 +radar|8679127 +radar beacon|8679255 +radar dome|8679301 +radar echo|8679336 +radar fire|8679374 +radar target|8679406 +radclyffe hall|8679448 +raddle|8679532 +raddled|8679614 +radhakrishnan|8679686 +radial|8679821 +radial artery|8680115 +radial asymmetry|8680192 +radial engine|8680238 +radial keratotomy|8680306 +radial nerve|8680344 +radial pulse|8680415 +radial symmetry|8680465 +radial tire|8680538 +radial vein|8680612 +radial velocity|8680677 +radial-ply|8680012 +radial-ply tire|8680041 +radially symmetrical|8680717 +radian|8680785 +radiance|8680818 +radiancy|8681003 +radiant|8681080 +radiant energy|8681138 +radiant flux|8681169 +radiant heating|8681196 +radiate|8681237 +radiating|8681540 +radiation|8681579 +radiation diagram|8681882 +radiation field|8681958 +radiation pattern|8682016 +radiation pressure|8682092 +radiation pyrometer|8682195 +radiation sickness|8682234 +radiation syndrome|8682300 +radiation therapy|8682366 +radiator|8682450 +radiator cap|8682521 +radiator grille|8682547 +radiator hose|8682593 +radical|8682630 +radical cell|8683066 +radical chic|8683114 +radical hysterectomy|8683176 +radical mastectomy|8683235 +radical sign|8683274 +radicalism|8683326 +radicchio|8683394 +radicle|8683434 +radiculitis|8683532 +radiigera|8683580 +radiigera fuscogleba|8683638 +radio|8683696 +radio aerial|8684303 +radio announcer|8684386 +radio antenna|8684421 +radio astronomy|8684504 +radio beacon|8684549 +radio beam|8684621 +radio brightness|8684668 +radio broadcast|8684729 +radio chassis|8684764 +radio compass|8684795 +radio detection and ranging|8684835 +radio emission|8684963 +radio frequency|8685086 +radio interferometer|8685141 +radio link|8685203 +radio news|8685249 +radio noise|8685278 +radio observation|8685338 +radio operator|8685377 +radio radiation|8685422 +radio receiver|8685545 +radio reflector|8685640 +radio set|8685704 +radio signal|8685799 +radio source|8685863 +radio spectrum|8685894 +radio station|8685952 +radio telescope|8685983 +radio transmitter|8686047 +radio wave|8686093 +radio-controlled|8683925 +radio-controlled aircraft|8683958 +radio-frequency spectrum|8684041 +radio-gramophone|8684099 +radio-opacity|8684163 +radio-opaque|8684206 +radio-phonograph|8684239 +radioactive|8686216 +radioactive dating|8686253 +radioactive decay|8686323 +radioactive dust|8686388 +radioactive iodine excretion test|8686427 +radioactive iodine test|8686494 +radioactive iodine uptake test|8686560 +radioactive material|8686629 +radioactive waste|8686674 +radioactivity|8686722 +radioactivity unit|8686764 +radiobiology|8686817 +radiocarbon|8686866 +radiocarbon dating|8686922 +radiocarpal joint|8687006 +radiochemist|8687114 +radiochemistry|8687160 +radiochlorine|8687229 +radiocommunication|8687281 +radiogram|8687337 +radiograph|8687443 +radiographer|8687534 +radiographic|8687586 +radiography|8687634 +radioimmunoassay|8687712 +radioisotope|8687771 +radiolaria|8687801 +radiolarian|8687862 +radiolocate|8687893 +radiolocation|8687929 +radiologic technologist|8688057 +radiological|8688115 +radiologist|8688155 +radiology|8688221 +radiolucent|8688293 +radiolysis|8688326 +radiometer|8688352 +radiomicrometer|8688378 +radiopacity|8688414 +radiopaque|8688457 +radiopaque dye|8688501 +radiopharmaceutical|8688538 +radiophone|8688582 +radiophonic|8688666 +radiophoto|8688711 +radiophotograph|8688762 +radiophotography|8688813 +radioprotection|8688855 +radioscopy|8688899 +radiosensitive|8688948 +radiosensitivity|8688982 +radiotelegraph|8689063 +radiotelegraphic signal|8689209 +radiotelegraphy|8689283 +radiotelephone|8689428 +radiotelephonic|8689562 +radiotelephony|8689607 +radiotherapist|8689674 +radiotherapy|8689740 +radiotherapy equipment|8689824 +radiothorium|8689866 +radish|8689928 +radish plant|8690030 +radium|8690079 +radium therapy|8690138 +radius|8690242 +radius of curvature|8690344 +radius vector|8690382 +radix|8690426 +radome|8690453 +radon|8690488 +radyera|8690576 +radyera farragei|8690637 +raetam|8690723 +raf|8690806 +raffaello santi|8690960 +raffaello sanzio|8691037 +raffia|8691115 +raffia farinifera|8691258 +raffia palm|8691344 +raffia ruffia|8691412 +raffia taedigera|8691494 +raffia vinifera|8691607 +raffinose|8691704 +raffish|8691737 +raffishly|8691880 +raffle|8691918 +raffle off|8691986 +raffles|8692031 +rafflesiaceae|8692157 +raft|8692248 +raft foundation|8692588 +rafter|8692683 +raftered|8692795 +raftman|8692823 +rafts|8692875 +raftsman|8693292 +rag|8693344 +rag day|8694137 +rag doll|8694158 +rag gourd|8694187 +rag paper|8694260 +rag trade|8694293 +rag week|8694389 +ragamuffin|8694425 +ragbag|8694467 +rage|8694694 +ragee|8694884 +ragged|8694983 +ragged orchid|8695158 +ragged orchis|8695285 +ragged robin|8695412 +ragged-fringed orchid|8695031 +raggedly|8695504 +raggedness|8695564 +ragi|8695615 +raging|8695714 +raglan|8695802 +raglan sleeve|8695826 +ragnar anton kittil frisch|8695860 +ragnar frisch|8695970 +ragnarok|8696067 +ragout|8696136 +ragpicker|8696157 +ragpicker's disease|8696193 +ragsorter|8696349 +ragsorter's disease|8696375 +ragtag|8696531 +ragtag and bobtail|8696601 +ragtime|8696671 +ragusa|8696735 +ragweed|8696802 +ragweed pollen|8696903 +ragwort|8696943 +rahu|8697071 +raid|8697102 +raider|8697374 +raiding|8697485 +rail|8697532 +rail fence|8698091 +rail in|8698125 +rail line|8698171 +rail off|8698219 +rail technology|8698258 +rail-splitter|8698022 +railbird|8698318 +railcar|8698351 +railhead|8698413 +railing|8698482 +raillery|8698528 +railroad|8698585 +railroad bed|8698816 +railroad car|8698842 +railroad engineer|8698904 +railroad flat|8698995 +railroad line|8699033 +railroad man|8699106 +railroad siding|8699180 +railroad station|8699262 +railroad terminal|8699372 +railroad ticket|8699482 +railroad tie|8699527 +railroad track|8699584 +railroad train|8699631 +railroad tunnel|8699678 +railroad vine|8699710 +railroad worm|8699786 +railroader|8699864 +railroading|8699938 +rails|8699998 +railway|8700195 +railway car|8700305 +railway junction|8700367 +railway line|8700402 +railway locomotive|8700508 +railway man|8700595 +railway station|8700750 +railway system|8700860 +railway yard|8700933 +railwayman|8701018 +raiment|8701092 +raimentless|8701256 +rain|8701311 +rain barrel|8701706 +rain buckets|8701735 +rain cats and dogs|8701808 +rain check|8701881 +rain cloud|8701933 +rain dance|8701979 +rain date|8702044 +rain down|8702068 +rain forest|8702119 +rain gage|8702266 +rain gauge|8702328 +rain out|8702390 +rain shadow|8702430 +rain shower|8702464 +rain stick|8702506 +rain tree|8702570 +rain-giver|8701528 +rain-in-the-face|8701588 +rain-wash|8701674 +rainbow|8702660 +rainbow cactus|8702705 +rainbow fish|8702736 +rainbow lorikeet|8702797 +rainbow perch|8702857 +rainbow pink|8702941 +rainbow runner|8703010 +rainbow seaperch|8703060 +rainbow shower|8703144 +rainbow smelt|8703191 +rainbow trout|8703263 +raincoat|8703321 +raindrop|8703355 +rainer maria rilke|8703386 +rainfall|8703444 +rainfly|8703490 +rainforest|8703545 +raining|8703611 +rainless|8703639 +rainmaker|8703661 +rainmaking|8703729 +rainproof|8703760 +rainstorm|8703809 +rainwater|8703862 +rainy|8703898 +rainy day|8703959 +rainy season|8704012 +raisable|8704054 +raise|8704089 +raise hell|8705457 +raise the roof|8705484 +raise up|8705522 +raiseable|8705599 +raised|8705634 +raised doughnut|8705770 +raiser|8705817 +raisin|8705923 +raisin bran|8705999 +raisin bread|8706043 +raisin cookie|8706096 +raisin moth|8706140 +raisin-nut cookie|8705951 +raising|8706200 +raising hell|8706444 +raison d'etre|8706490 +raita|8706578 +raiu|8706613 +raj|8706687 +raja|8706714 +raja batis|8706800 +raja erinacea|8706848 +raja laevis|8706904 +raja radiata|8706958 +rajab|8707012 +rajah|8707056 +rajanya|8707108 +rajidae|8707131 +rajiformes|8707183 +rajpoot|8707268 +rajput|8707324 +rakaposhi|8707379 +rake|8707422 +rake handle|8707760 +rake in|8707807 +rake off|8707896 +rake up|8707976 +rake-off|8707729 +rakish|8708007 +rakishly|8708151 +rakishness|8708189 +rale|8708357 +ralegh|8708393 +raleigh|8708519 +rallentando|8708701 +rallidae|8708758 +rally|8708813 +rallying|8709300 +rallying cry|8709401 +rallying point|8709566 +ralph barton perry|8709596 +ralph bunche|8709661 +ralph ellison|8709745 +ralph johnson bunche|8709824 +ralph richardson|8709916 +ralph vaughan williams|8710040 +ralph waldo ellison|8710121 +ralph waldo emerson|8710206 +ram|8710277 +ram disk|8711118 +ram down|8711151 +ram home|8711226 +ram's horn|8710967 +ram's-head|8710713 +ram's-head lady's slipper|8710840 +rama|8711321 +ramachandra|8711347 +ramadan|8711385 +ramalina|8711461 +ramanavami|8711516 +ramate|8711555 +ramayana|8711612 +ramble|8711659 +ramble on|8711874 +rambler|8711936 +rambling|8711998 +ramblingly|8712102 +rambotan|8712134 +rambouillet|8712235 +rambunctious|8712294 +rambutan|8712368 +rambutan tree|8712469 +rameau|8712541 +ramee|8712594 +ramekin|8712684 +ramequin|8712736 +rameses|8712787 +rameses ii|8712846 +rameses the great|8712977 +ramesses|8713115 +ramesses ii|8713175 +ramesses the great|8713307 +ramie|8713446 +ramification|8713536 +ramify|8713684 +ramjet|8713781 +ramjet engine|8713858 +ramman|8713935 +rammer|8713972 +ramon lully|8713992 +ramon y cajal|8714057 +ramona|8714129 +ramontchi|8714188 +ramose|8714294 +ramous|8714351 +ramp|8714408 +ramp up|8714690 +rampage|8714739 +rampageous|8714801 +rampant|8714829 +rampant arch|8714897 +rampantly|8714924 +rampart|8714947 +ramphastidae|8714988 +ramphomicron|8715055 +rampion|8715120 +rampion bellflower|8715198 +ramrod|8715276 +ramsay hunt syndrome|8715338 +ramses|8715398 +ramses ii|8715456 +ramses the great|8715586 +ramshackle|8715723 +ramsons|8715821 +ramus|8715902 +ran into|8715925 +rana|8716180 +rana cascadae|8716226 +rana catesbeiana|8716293 +rana clamitans|8716361 +rana goliath|8716439 +rana palustris|8716503 +rana pipiens|8716572 +rana sylvatica|8716648 +rana tarahumarae|8716723 +rana temporaria|8716798 +ranales|8716866 +ranalian complex|8716949 +ranatra|8717014 +ranch|8717069 +ranch hand|8717133 +ranch house|8717179 +rancher|8717206 +ranching|8717259 +rancid|8717307 +rancor|8717364 +rancorous|8717441 +rancour|8717470 +rand|8717547 +randall jarrell|8717667 +random|8717721 +random access memory|8717988 +random memory|8718092 +random number generator|8718196 +random sample|8718278 +random sampling|8718351 +random variable|8718385 +random walk|8718489 +random-access memory|8717803 +randomisation|8718529 +randomise|8718592 +randomised|8718632 +randomization|8718673 +randomize|8718736 +randomized|8718776 +randomly|8718817 +randomness|8718913 +randy|8719028 +ranee|8719080 +range|8719132 +range animal|8720014 +range finder|8720084 +range hood|8720254 +range in|8720292 +range of mountains|8720356 +range pole|8720476 +rangefinder|8720561 +rangeland|8720650 +ranger|8720686 +rangifer|8720922 +rangifer arcticus|8720977 +rangifer caribou|8721097 +rangifer tarandus|8721210 +ranging|8721302 +ranging pole|8721342 +rangoon|8721427 +rangpur|8721476 +rangpur lime|8721551 +rangy|8721626 +rani|8721695 +ranid|8721747 +ranidae|8721821 +ranier|8721878 +ranitidine|8721952 +rank|8722050 +rank and file|8723235 +rank order|8723293 +rank-difference correlation|8722487 +rank-difference correlation coefficient|8722674 +rank-order correlation|8722861 +rank-order correlation coefficient|8723048 +ranked|8723328 +ranker|8723397 +rankin|8723449 +rankine|8723541 +rankine scale|8723583 +ranking|8723638 +rankle|8723751 +rankness|8723867 +ransack|8723968 +ransacked|8724062 +ransacking|8724113 +ransom|8724161 +ransom money|8724298 +ransomed|8724332 +rant|8724378 +ranter|8724596 +ranting|8724663 +ranula|8724706 +ranunculaceae|8724727 +ranunculales|8724841 +ranunculus|8724929 +ranunculus acris|8724999 +ranunculus aquatilis|8725171 +ranunculus bulbosus|8725308 +ranunculus ficaria|8725436 +ranunculus flammula|8725516 +ranunculus glaberrimus|8725616 +ranunculus lingua|8725714 +ranunculus lyalii|8725811 +ranunculus occidentalis|8725948 +ranunculus repens|8726085 +ranunculus sceleratus|8726229 +ranvier's nodes|8726384 +raoul dufy|8726454 +raoulia|8726498 +raoulia australis|8726557 +raoulia lutescens|8726670 +rap|8726783 +rap group|8727093 +rap music|8727133 +rap session|8727233 +rap sheet|8727267 +rapacious|8727362 +rapaciousness|8727551 +rapacity|8727633 +rapateaceae|8727780 +rape|8727864 +rape conviction|8728172 +rape oil|8728253 +rape suspect|8728298 +raped|8728328 +raper|8728454 +rapeseed|8728554 +rapeseed oil|8728580 +raphael|8728625 +raphanus|8728719 +raphanus raphanistrum|8728783 +raphanus sativus|8728886 +raphanus sativus longipinnatus|8728949 +raphe|8729056 +raphia|8729084 +raphicerus|8729208 +raphicerus campestris|8729269 +raphidae|8729349 +raphidiidae|8729404 +raphus|8729473 +raphus cucullatus|8729520 +rapid|8729587 +rapid city|8729642 +rapid climb|8729678 +rapid eye movement|8729746 +rapid eye movement sleep|8729845 +rapid growth|8729944 +rapid transit|8730012 +rapidity|8730069 +rapidly|8730116 +rapier|8730165 +rapine|8730210 +rapist|8730260 +rappee|8730360 +rappel|8730382 +rapper|8730446 +rapport|8730532 +rapporteur|8730649 +rapprochement|8730702 +rapscallion|8730752 +rapt|8730967 +raptor|8731067 +raptores|8731116 +raptorial|8731171 +raptorial bird|8731261 +rapture|8731310 +rapturous|8731461 +rapturously|8731517 +raptus|8731564 +raptus hemorrhagicus|8731668 +rara avis|8731719 +rare|8731771 +rare bird|8731983 +rare earth|8732035 +rare-earth element|8731897 +rarebit|8732121 +raree-show|8732170 +rarefaction|8732238 +rarefied|8732273 +rarefy|8732418 +rarely|8732525 +rareness|8732547 +rarified|8732604 +rarify|8732749 +raring|8732813 +rariora|8732845 +rarity|8732909 +ras|8733084 +ras tafari|8733303 +ras tafari makonnen|8733437 +rascal|8733520 +rascality|8733740 +rascally|8734012 +rase|8734118 +rash|8734200 +rasher|8734326 +rashly|8734391 +rashness|8734415 +rasht|8734537 +rashtriya swayamsevak sangh|8734593 +rask|8734705 +raskolnikov|8734769 +rasmus christian rask|8734871 +rasmussen|8734952 +rasp|8735041 +rasp fern|8735204 +raspberry|8735235 +raspberry bush|8735396 +rasping|8735443 +raspingly|8735554 +rasputin|8735590 +raspy|8735652 +rassling|8735728 +rasta|8735780 +rastafari|8735831 +rastafarian|8735903 +rastafarianism|8736005 +rastas|8736071 +raster|8736183 +raster font|8736209 +rat|8736267 +rat chinchilla|8737081 +rat kangaroo|8737158 +rat race|8737202 +rat snake|8737243 +rat terrier|8737286 +rat typhus|8737322 +rat's-tail cactus|8736751 +rat-a-tat|8736827 +rat-a-tat-tat|8736876 +rat-catcher|8736925 +rat-tail file|8737004 +rat-tat|8737032 +ratability|8737404 +ratable|8737483 +ratables|8737527 +ratafee|8737603 +ratafia|8737644 +ratafia biscuit|8737717 +ratan|8737759 +rataplan|8737788 +ratbite fever|8737831 +ratbite fever bacterium|8737873 +ratch|8737932 +ratchet|8737980 +ratchet down|8738106 +ratchet screwdriver|8738194 +ratchet wheel|8738262 +rate|8738291 +rate of acceleration|8738518 +rate of attrition|8738558 +rate of depreciation|8738605 +rate of exchange|8738674 +rate of flow|8738735 +rate of growth|8738777 +rate of inflation|8738818 +rate of interest|8738865 +rate of pay|8738926 +rate of payment|8738977 +rate of respiration|8739068 +rateability|8739130 +rateable|8739172 +rateables|8739216 +ratel|8739292 +ratepayer|8739375 +rates|8739403 +rather|8739574 +rathole|8739661 +rathskeller|8739695 +ratibida|8739733 +ratibida columnaris|8739795 +ratibida columnifera|8739879 +ratibida tagetes|8739993 +ratification|8740078 +ratified|8740145 +ratifier|8740180 +ratify|8740281 +rating|8740331 +rating system|8740504 +ratio|8740564 +ratiocinate|8740620 +ratiocination|8740648 +ratiocinative|8740745 +ratiocinator|8740776 +ration|8740815 +ration card|8740944 +ration out|8740984 +rational|8741030 +rational motive|8741301 +rational number|8741349 +rationale|8741391 +rationalisation|8741432 +rationalise|8741762 +rationalise away|8742037 +rationalism|8742087 +rationalist|8742282 +rationalistic|8742384 +rationality|8742450 +rationalization|8742552 +rationalize|8742882 +rationalize away|8743157 +rationalness|8743207 +rationed|8743264 +rationing|8743294 +ratitae|8743394 +ratite|8743451 +ratite bird|8743500 +ratlike|8743549 +ratlin|8743594 +ratline|8743623 +rattail|8743652 +rattail cactus|8743711 +rattail fish|8743787 +rattan|8743846 +rattan cane|8743941 +rattan palm|8743974 +ratter|8744025 +rattigan|8744121 +ratting|8744214 +rattle|8744273 +rattle down|8744489 +rattle off|8744556 +rattle on|8744623 +rattle weed|8744713 +rattle-top|8744412 +rattlebox|8744805 +rattlebrained|8744857 +rattled|8744922 +rattlepated|8744988 +rattler|8745053 +rattlesnake|8745134 +rattlesnake fern|8745270 +rattlesnake master|8745330 +rattlesnake orchid|8745427 +rattlesnake plantain|8745481 +rattlesnake root|8745549 +rattlesnake weed|8745646 +rattlesnake's master|8745173 +rattling|8745699 +rattrap|8745915 +rattus|8746000 +rattus norvegicus|8746049 +rattus rattus|8746119 +ratty|8746179 +rau-sed|8746223 +raucous|8746323 +raucously|8746396 +raudixin|8746422 +rauli beech|8746523 +raunch|8746594 +raunchy|8746673 +rauvolfia|8746794 +rauwolfia|8746834 +rauwolfia serpentina|8746890 +ravage|8746971 +ravaged|8747122 +ravaging|8747250 +rave|8747328 +rave-up|8747522 +ravehook|8747560 +ravel|8747588 +ravel out|8747799 +raveling|8747867 +ravelling|8747907 +raven|8747947 +ravenala|8748073 +ravenala madagascariensis|8748177 +ravening|8748307 +ravenna|8748498 +ravenna grass|8748556 +ravenous|8748635 +ravenously|8748769 +ravenousness|8748797 +raver|8748878 +ravi shankar|8748973 +ravigote|8749029 +ravine|8749053 +raving|8749081 +raving mad|8749154 +ravingly|8749193 +ravioli|8749217 +ravish|8749269 +ravisher|8749437 +ravishing|8749602 +ravishment|8749631 +raw|8749764 +raw beauty|8750272 +raw data|8750299 +raw deal|8750334 +raw material|8750357 +raw meat|8750401 +raw milk|8750424 +raw recruit|8750447 +raw sienna|8750476 +raw talent|8750569 +raw throat|8750629 +raw umber|8750694 +raw vegetable|8750719 +raw weather|8750771 +raw wood|8750829 +raw wool|8750852 +raw wound|8750875 +rawalpindi|8750907 +rawboned|8750967 +rawhide|8750995 +ray|8751022 +ray bradbury|8751453 +ray cattell|8751532 +ray douglas bradbury|8751643 +ray floret|8751730 +ray flower|8751782 +ray m. dolby|8751834 +ray of light|8751895 +ray robinson|8752022 +rayleigh|8752121 +rayleigh disk|8752213 +rayless|8752261 +rayless chamomile|8752293 +raymond b. cattell|8752383 +raymond bernard cattell|8752501 +raymond chandler|8752624 +raymond lully|8752716 +raymond thornton chandler|8752783 +raynaud's sign|8752884 +rayon|8752945 +rayon stocking|8752990 +rayons|8753066 +raze|8753185 +razed|8753267 +razing|8753314 +razmataz|8753435 +razor|8753490 +razor clam|8753780 +razor edge|8753833 +razor fish|8753858 +razor-backed|8753528 +razor-billed auk|8753567 +razor-fish|8753618 +razor-sharp|8753737 +razorback|8753977 +razorback hog|8754103 +razorbacked hog|8754158 +razorbill|8754213 +razorblade|8754264 +razz|8754290 +razzing|8754377 +razzle|8754481 +razzle-dazzle|8754536 +razzmatazz|8754591 +rb|8754646 +rbc|8754710 +rbi|8754791 +rcmp|8754828 +re|8754960 +re-address|8755077 +re-afforest|8755112 +re-afforestation|8755149 +re-argue|8755224 +re-arm|8755255 +re-assume|8755320 +re-create|8755373 +re-created|8755700 +re-creation|8755731 +re-echo|8755859 +re-emerge|8755924 +re-emphasise|8755959 +re-emphasize|8756049 +re-enter|8756139 +re-entrant|8756211 +re-equip|8756332 +re-establishment|8756381 +re-examine|8756419 +re-experiencing|8756522 +re-explain|8756567 +re-explore|8756609 +re-formation|8756653 +re-formed|8756873 +re-incorporate|8756956 +re-introduce|8757002 +re-introduction|8757144 +re-sentencing|8757232 +re-uptake|8757295 +rea silvia|8757411 +reabsorb|8757468 +reabsorption|8757500 +reach|8757568 +reach into|8758230 +reach out|8758272 +reachable|8758344 +reaching|8758387 +reacquaint|8758491 +reacquired stock|8758538 +react|8758601 +reactance|8758681 +reactant|8758722 +reaction|8758749 +reaction engine|8759075 +reaction formation|8759134 +reaction propulsion|8759248 +reaction time|8759288 +reaction turbine|8759370 +reaction-propulsion engine|8759016 +reactionary|8759404 +reactionism|8759527 +reactionist|8759596 +reactivate|8759645 +reactive|8759674 +reactive depression|8759756 +reactive schizophrenia|8759857 +reactivity|8759995 +reactor|8760106 +read|8760180 +read between the lines|8761082 +read method|8761137 +read method of childbirth|8761215 +read-only file|8760604 +read-only memory|8760642 +read-only memory chip|8760771 +read-only storage|8760814 +read/write head|8760943 +read/write memory|8760978 +readability|8761307 +readable|8761398 +readably|8761443 +readapt|8761481 +reader|8761556 +readership|8761904 +readily|8761933 +readiness|8761979 +reading|8762120 +reading assignment|8762579 +reading clinic|8762614 +reading desk|8762645 +reading lamp|8762681 +reading material|8762708 +reading program|8762781 +reading room|8762860 +reading teacher|8762887 +readjust|8762931 +readjustment|8763010 +readmission|8763121 +readmit|8763163 +ready|8763239 +ready and waiting|8763877 +ready cash|8763918 +ready money|8763989 +ready reckoner|8764060 +ready to hand|8764125 +ready-made|8763601 +ready-mix|8763757 +ready-to-wear|8763804 +readying|8764176 +reaffiliation|8764215 +reaffirm|8764250 +reaffirmation|8764275 +reagan|8764340 +reagan administration|8764496 +reagent|8764559 +reagin|8764591 +real|8764628 +real estate|8765335 +real estate agent|8765425 +real estate broker|8765535 +real estate investment trust|8765645 +real estate loan|8765774 +real gnp|8765819 +real gross national product|8765901 +real ira|8765974 +real irish republican army|8766139 +real life|8766322 +real matrix|8766366 +real mccoy|8766394 +real number|8766483 +real presence|8766558 +real property|8766629 +real storage|8766719 +real stuff|8766808 +real tennis|8766886 +real thing|8766952 +real time|8767030 +real world|8767124 +real-estate business|8765070 +real-time|8765151 +real-time operation|8765203 +real-time processing|8765269 +realgar|8767168 +realign|8767193 +realine|8767245 +realisation|8767297 +realise|8767667 +realised|8767965 +realism|8768024 +realist|8768274 +realistic|8768378 +reality|8768694 +reality principle|8768824 +realizable|8768861 +realization|8768939 +realize|8769309 +realized|8769607 +reallocate|8769666 +reallocation|8769717 +reallot|8769876 +reallotment|8769996 +really|8770127 +realm|8770219 +realness|8770372 +realpolitik|8770416 +realtor|8770494 +realty|8770604 +ream|8770694 +reamer|8770869 +reanimate|8770927 +reanimated|8771059 +reap|8771102 +reap hook|8771190 +reaper|8771239 +reaper binder|8771369 +reaping hook|8771416 +reappear|8771465 +reappearance|8771500 +reapportion|8771558 +reapportionment|8771609 +reappraisal|8771740 +reappraise|8771814 +rear|8771840 +rear admiral|8772430 +rear back|8772465 +rear end|8772523 +rear lamp|8772734 +rear light|8772789 +rear of barrel|8772844 +rear of tube|8772896 +rear window|8772948 +rear-end|8772368 +rearguard|8772980 +rearing|8773010 +rearm|8773223 +rearmament|8773282 +rearmost|8773328 +rearrange|8773380 +rearrangement|8773414 +rearview mirror|8773473 +rearward|8773509 +rearwards|8773631 +reason|8773682 +reason out|8774029 +reasonable|8774090 +reasonable care|8774322 +reasonableness|8774404 +reasonably|8774631 +reasoned|8774731 +reasoner|8774821 +reasoning|8774860 +reasoning backward|8775002 +reasoning by elimination|8775082 +reasonless|8775155 +reassail|8775254 +reassemble|8775301 +reassembly|8775375 +reassert|8775424 +reassertion|8775457 +reassess|8775522 +reassessment|8775598 +reassign|8775672 +reassignment|8775732 +reassurance|8775781 +reassure|8775810 +reassured|8775927 +reassuring|8775956 +reata|8776078 +reattribute|8776117 +reaumur|8776170 +reaumur scale|8776239 +reaumur thermometer|8776294 +reave|8776355 +reawaken|8776430 +reb|8776487 +rebarbative|8776557 +rebate|8776609 +rebato|8776724 +rebecca|8776763 +rebecca rolfe|8776815 +rebecca west|8776880 +rebekah|8776976 +rebel|8777028 +rebelling|8777416 +rebellion|8777461 +rebellious|8777559 +rebelliously|8777692 +rebelliousness|8777738 +rebind|8777836 +rebirth|8777857 +reboot|8778105 +reborn|8778154 +rebound|8778202 +rebound tenderness|8778455 +reboxetine|8778511 +rebozo|8778574 +rebroadcast|8778596 +rebuff|8778656 +rebuild|8778916 +rebuilding|8778966 +rebuilt|8779001 +rebuke|8779037 +rebuked|8779335 +rebuker|8779403 +reburial|8779460 +rebury|8779503 +reburying|8779539 +rebus|8779582 +rebut|8779605 +rebuttal|8779688 +rebutter|8779758 +rec room|8779843 +recalcitrance|8779882 +recalcitrancy|8779982 +recalcitrant|8780082 +recalcitrate|8780155 +recalculate|8780219 +recalculation|8780295 +recall|8780352 +recall dose|8780783 +recant|8780843 +recantation|8780909 +recap|8780973 +recapitualtion|8781139 +recapitulate|8781185 +recapitulation|8781341 +recapture|8781497 +recast|8781648 +recasting|8781762 +recce|8781821 +recco|8781886 +reccy|8781951 +recede|8782016 +receding|8782295 +receipt|8782406 +receipts|8782595 +receivable|8782723 +receivables|8782752 +receive|8782780 +received|8783144 +receiver|8783243 +receiver-creditor relation|8783457 +receivership|8783512 +receiving set|8783649 +receiving system|8783744 +recency|8783783 +recent|8783846 +recent epoch|8783897 +recently|8783962 +recentness|8784038 +receptacle|8784098 +reception|8784177 +reception desk|8784321 +reception line|8784353 +reception room|8784396 +receptionist|8784425 +receptive|8784479 +receptive aphasia|8784609 +receptiveness|8784713 +receptivity|8784769 +receptor|8784825 +recess|8784966 +recessed|8785290 +recession|8785346 +recessional|8785570 +recessional march|8785648 +recessionary|8785715 +recessive|8785785 +recessive gene|8785872 +recharge|8785916 +rechargeable|8785967 +rechauffe|8786000 +recherche|8786040 +rechewed food|8786077 +recidivate|8786119 +recidivism|8786224 +recidivist|8786308 +recife|8786444 +recipe|8786512 +recipient|8786558 +recipient role|8786648 +reciprocal|8786713 +reciprocal cross|8787228 +reciprocal inhibition|8787348 +reciprocal ohm|8787448 +reciprocal pronoun|8787503 +reciprocal-inhibition therapy|8787128 +reciprocality|8787539 +reciprocally|8787583 +reciprocate|8787645 +reciprocating|8787687 +reciprocating engine|8787742 +reciprocating saw|8787803 +reciprocation|8787876 +reciprocative|8788013 +reciprocatory|8788054 +reciprocity|8788109 +recission|8788200 +recital|8788243 +recitalist|8788467 +recitation|8788495 +recitative|8788722 +recite|8788766 +reciter|8788934 +reckless|8788996 +recklessness|8789059 +reckon|8789137 +reckoner|8789501 +reckoning|8789618 +reclaim|8789799 +reclaimable|8790025 +reclaimed|8790079 +reclamation|8790112 +reclassification|8790248 +reclassify|8790372 +recline|8790437 +recliner|8790554 +reclining|8790605 +reclining chair|8790699 +recluse|8790750 +reclusive|8790871 +reclusiveness|8790964 +recode|8791010 +recoding|8791036 +recognisable|8791089 +recognisance|8791147 +recognise|8791198 +recognised|8791656 +recognition|8791751 +recognizable|8792110 +recognizance|8792187 +recognize|8792238 +recognized|8792706 +recoil|8792801 +recoilless|8793135 +recollect|8793170 +recollection|8793238 +recollective|8793373 +recombinant deoxyribonucleic acid|8793405 +recombinant dna|8793513 +recombinant dna technology|8793637 +recombinant human insulin|8793748 +recombination|8793799 +recombine|8793865 +recommence|8793942 +recommencement|8794061 +recommend|8794125 +recommendation|8794230 +recommended|8794350 +recommit|8794391 +recompense|8794489 +reconcilable|8794634 +reconcile|8794693 +reconciled|8794897 +reconciler|8794955 +reconciliation|8795077 +reconciling|8795179 +recondite|8795234 +reconditeness|8795276 +recondition|8795416 +reconditioned|8795447 +reconfirm|8795494 +reconnaissance|8795530 +reconnaissance by fire|8795635 +reconnaissance in force|8795705 +reconnaissance mission|8795776 +reconnaissance plane|8795881 +reconnaissance vehicle|8795960 +reconnoiter|8796042 +reconnoitering|8796089 +reconnoitre|8796193 +reconnoitring|8796240 +reconquer|8796344 +reconsecrate|8796380 +reconsider|8796435 +reconsideration|8796526 +reconstitute|8796663 +reconstruct|8796707 +reconstructed|8796964 +reconstruction|8797001 +reconstruction period|8797223 +reconstructive|8797311 +reconstructive memory|8797363 +reconstructive surgery|8797442 +reconvene|8797573 +reconvert|8797600 +reconvict|8797627 +recopy|8797654 +record|8797675 +record album|8798370 +record book|8798435 +record changer|8798473 +record company|8798536 +record cover|8798568 +record hop|8798611 +record jacket|8798641 +record player|8798671 +record sleeve|8798713 +record-breaker|8798145 +record-breaking|8798211 +record-holder|8798241 +record-keeper|8798307 +recorded|8798756 +recorder|8798902 +recorder player|8799140 +recording|8799197 +recording equipment|8799323 +recording label|8799389 +recording machine|8799455 +recording studio|8799521 +recording system|8799554 +recount|8799606 +recounting|8799750 +recoup|8799810 +recourse|8799943 +recover|8800032 +recoverable|8800304 +recovered|8800360 +recoverer|8800410 +recovering|8800496 +recovery|8800538 +recovery room|8800671 +recreant|8800708 +recreate|8800863 +recreation|8801066 +recreation facility|8801137 +recreation room|8801210 +recreational|8801249 +recreational drug|8801317 +recreational facility|8801353 +recreational vehicle|8801426 +recriminate|8801482 +recrimination|8801540 +recriminative|8801582 +recriminatory|8801643 +recrudesce|8801704 +recrudescence|8801854 +recruit|8801905 +recruiter|8802128 +recruiting-sergeant|8802193 +recruitment|8802241 +rectal|8802299 +rectal artery|8802324 +rectal reflex|8802401 +rectal vein|8802540 +rectangle|8802623 +rectangular|8802656 +rectangularity|8802726 +rectifiable|8802772 +rectification|8802816 +rectified|8802971 +rectifier|8803000 +rectify|8803097 +rectifying tube|8803393 +rectifying valve|8803528 +rectilineal|8803663 +rectilinear|8803719 +rectilinear regression|8803775 +rectitude|8803904 +recto|8803949 +rectocele|8803969 +rectoplasty|8804020 +rector|8804103 +rectory|8804185 +rectosigmoid|8804231 +rectum|8804268 +rectus|8804294 +rectus inferior|8804326 +rectus lateralis|8804415 +rectus medialis|8804519 +rectus superior|8804604 +recumb|8804693 +recumbent|8804728 +recuperate|8804785 +recuperation|8804989 +recuperative|8805042 +recur|8805086 +recurrence|8805282 +recurrent|8805327 +recurrent event|8805375 +recurrent fever|8805450 +recurring|8805510 +recurring decimal|8805548 +recursion|8805638 +recursive|8805670 +recursive definition|8805701 +recursive routine|8805742 +recurvate|8805818 +recurve|8805861 +recurved|8805890 +recurvirostra|8805933 +recurvirostridae|8806001 +recusal|8806080 +recusancy|8806125 +recusant|8806158 +recusation|8806289 +recuse|8806351 +recyclable|8806392 +recycle|8806446 +recycling|8806525 +recycling bin|8806598 +recycling plant|8806625 +red|8806679 +red admiral|8810586 +red alder|8810699 +red alert|8810760 +red algae|8810794 +red amaranth|8810824 +red angel's trumpet|8811011 +red army faction|8811089 +red ash|8811210 +red baneberry|8811273 +red bat|8811373 +red bay|8811440 +red bearberry|8811492 +red beech|8811661 +red birch|8811896 +red bird's eye|8811969 +red blood cell|8812058 +red bone marrow|8812135 +red bordeaux|8812190 +red brass|8812264 +red brigades|8812301 +red bryony|8812427 +red buckeye|8812485 +red cabbage|8812552 +red campion|8812652 +red carpet|8812741 +red cedar|8812889 +red cent|8813155 +red china|8813241 +red clay|8813365 +red clintonia|8813396 +red cloud|8813499 +red clover|8813573 +red cole|8813641 +red coral|8813726 +red cross|8813810 +red currant|8813872 +red cypress pine|8813957 +red dagga|8814056 +red deer|8814144 +red delicious|8814189 +red devil|8814236 +red dogwood|8814308 +red drum|8814525 +red dwarf|8814598 +red dwarf star|8814637 +red eft|8814676 +red elm|8814731 +red false mallow|8814835 +red fire|8814944 +red flag|8814967 +red fox|8815105 +red giant|8815210 +red giant star|8815249 +red ginger|8815288 +red goatfish|8815333 +red goosefoot|8815418 +red gram|8815531 +red grouse|8815634 +red guard|8815718 +red gum|8815766 +red hand defenders|8816127 +red haw|8816252 +red heat|8816396 +red helleborine|8816454 +red herring|8816511 +red hot|8816698 +red indian|8816739 +red ink|8816842 +red jungle fowl|8816908 +red juniper|8816967 +red kauri|8817068 +red lauan|8817129 +red lauan tree|8817207 +red laver|8817273 +red lead|8817308 +red light|8817339 +red line|8817432 +red maids|8817455 +red man|8817607 +red maple|8817694 +red marrow|8817757 +red meat|8817812 +red morning-glory|8817835 +red mulberry|8817906 +red mullet|8817963 +red notice|8818027 +red oak|8818114 +red onion|8818144 +red osier|8818190 +red osier dogwood|8818392 +red panda|8818514 +red pepper|8818596 +red periwinkle|8818724 +red phalarope|8818892 +red pimpernel|8818947 +red pine|8819041 +red planet|8819185 +red poll|8819256 +red porgy|8819388 +red raspberry|8819427 +red rat snake|8819475 +red region|8819534 +red river|8819624 +red rockfish|8819663 +red salmon|8819738 +red sandalwood|8819860 +red sanders|8820065 +red sanderswood|8820158 +red saunders|8820251 +red scare|8820344 +red sea|8820375 +red setter|8820404 +red shift|8820444 +red shrubby penstemon|8820492 +red silk cotton|8820624 +red silk-cotton tree|8820552 +red silver fir|8820682 +red siskin|8820789 +red snapper|8820835 +red sorrel|8820899 +red spider|8820986 +red spider mite|8821062 +red sprites|8821138 +red spruce|8821191 +red squirrel|8821260 +red sun|8821428 +red tai|8821546 +red tape|8821575 +red tide|8821626 +red trillium|8821669 +red underwing|8821845 +red valerian|8821893 +red water|8821959 +red willow|8821993 +red wine|8822085 +red wolf|8822113 +red worm|8822171 +red-backed lemming|8807114 +red-backed mouse|8807163 +red-backed sandpiper|8807219 +red-bellied snake|8807280 +red-bellied terrapin|8807357 +red-bellied turtle|8807445 +red-berried elder|8807533 +red-berry|8807698 +red-blind|8807921 +red-blindness|8807967 +red-blooded|8808075 +red-breasted merganser|8808130 +red-breasted nuthatch|8808216 +red-breasted sapsucker|8808284 +red-breasted snipe|8808351 +red-brick|8808413 +red-carpet|8808528 +red-coated|8808648 +red-eye|8808696 +red-eyed vireo|8808717 +red-faced|8808764 +red-flowered silky oak|8808875 +red-green color blindness|8808934 +red-green colour blindness|8809077 +red-green dichromacy|8809220 +red-handed|8809363 +red-header|8809390 +red-hot|8809572 +red-hot poker|8809693 +red-ink|8809763 +red-lead putty|8809785 +red-legged partridge|8809816 +red-letter day|8809872 +red-light district|8809900 +red-necked grebe|8809942 +red-rimmed|8809993 +red-shafted flicker|8810020 +red-shouldered hawk|8810081 +red-skinned onion|8810130 +red-spotted purple|8810208 +red-tailed hawk|8810330 +red-veined pie plant|8810386 +red-winged blackbird|8810498 +redact|8822310 +redaction|8822491 +redactor|8822606 +redback vole|8822683 +redbelly|8822739 +redberry|8822827 +redbird|8822970 +redbird cactus|8823122 +redbird flower|8823242 +redbone|8823362 +redbreast|8823395 +redbrick|8823478 +redbrick university|8823513 +redbrush|8823553 +redbud|8823675 +redbug|8823742 +redcap|8823799 +redcoat|8823851 +redden|8823888 +reddened|8824072 +redding|8824175 +reddish|8824205 +reddish blue|8824367 +reddish brown|8824424 +reddish orange|8824495 +reddish purple|8824537 +reddish-brown|8824315 +reddle|8824602 +redecorate|8824641 +rededicate|8824710 +rededication|8824769 +redeem|8824802 +redeemable|8824912 +redeemed|8825014 +redeemer|8825047 +redeeming|8825248 +redefine|8825302 +redefinition|8825378 +redemption|8825411 +redemptional|8825538 +redemptive|8825616 +redemptory|8825723 +redeploy|8825801 +redeployment|8825826 +redeposit|8825873 +redeposition|8825938 +redesign|8825979 +redetermination|8826009 +redetermine|8826056 +redevelop|8826111 +redevelopment|8826209 +redevelopment authority|8826255 +redeye|8826328 +redeye flight|8826365 +redfin pickerel|8826402 +redfish|8826468 +redford|8826592 +redhead|8826745 +redheaded|8826959 +redheaded woodpecker|8827004 +redheader|8827098 +redhorse|8827199 +redhorse sucker|8827240 +rediffusion|8827281 +redirect|8827327 +redirect examination|8827362 +rediscover|8827446 +rediscovery|8827475 +redispose|8827522 +redisposition|8827549 +redistribute|8827596 +redistributed|8827636 +redistribution|8827687 +redline|8827724 +redmaids|8827774 +redneck|8827845 +redness|8827877 +redo|8827996 +redolence|8828104 +redolent|8828199 +redolent of|8828339 +redonda|8828430 +redouble|8828462 +redoubled|8828555 +redoubt|8828584 +redoubtable|8828628 +redound|8828723 +redox|8828863 +redpoll|8828940 +redraft|8829015 +redress|8829072 +redroot|8829258 +redshank|8829349 +redskin|8829392 +redstart|8829487 +redstem storksbill|8829585 +redtail|8829720 +reduce|8829799 +reduced|8830695 +reduced instruction set computer|8830906 +reduced instruction set computing|8831022 +reducer|8831138 +reducible|8831227 +reducing|8831256 +reducing agent|8831323 +reducing diet|8831380 +reductant|8831421 +reductase|8831478 +reductio|8831504 +reductio ad absurdum|8831577 +reduction|8831650 +reduction division|8831791 +reduction gear|8831866 +reductionism|8831932 +reductionist|8831995 +reductive|8832023 +reductivism|8832054 +redundance|8832129 +redundancy|8832204 +redundant|8832380 +redundant check|8832557 +reduplicate|8832657 +reduplication|8832772 +reduviid|8832886 +reduviidae|8832938 +redux|8833004 +redwing|8833027 +redwood|8833144 +redwood family|8833189 +redwood national park|8833265 +redwood penstemon|8833332 +reecho|8833392 +reechoing|8833494 +reed|8833541 +reed bunting|8833796 +reed canary grass|8833847 +reed grass|8833946 +reed mace|8833972 +reed meadow grass|8834141 +reed organ|8834209 +reed pipe|8834266 +reed rhapis|8834310 +reed section|8834374 +reed stop|8834404 +reedbird|8834434 +reedlike|8834633 +reedmace|8834667 +reedy|8834755 +reef|8834809 +reef knot|8834965 +reef squirrelfish|8835006 +reef whitetip shark|8835067 +reefer|8835144 +reefy|8835238 +reek|8835282 +reeking|8835547 +reel|8835614 +reel off|8835969 +reelect|8836055 +reelection|8836085 +reeler|8836114 +reenact|8836193 +reenforce|8836280 +reenforcement|8836336 +reentering angle|8836444 +reentering polygon|8836516 +reentrant|8836578 +reentrant angle|8836608 +reentrant polygon|8836680 +reentry|8836742 +reestablish|8836766 +reevaluate|8836825 +reevaluation|8836901 +reeve|8836951 +reexamination|8837050 +reexamine|8837188 +ref|8837259 +refabrication|8837289 +reface|8837338 +refashion|8837371 +refection|8837432 +refectory|8837463 +refectory table|8837494 +refer|8837538 +referable|8837804 +referee|8837864 +refereeing|8838002 +reference|8838080 +reference book|8838547 +reference frame|8838615 +reference grid|8838739 +reference manual|8838776 +reference point|8838809 +reference system|8838873 +reference to|8838997 +reference work|8839072 +referenced|8839140 +referendum|8839171 +referent|8839196 +referential|8839280 +referral|8839321 +referred pain|8839372 +refill|8839408 +refilling|8839574 +refinance|8839635 +refine|8839662 +refined|8839912 +refined sugar|8840391 +refinement|8840441 +refiner|8840745 +refinery|8840792 +refining|8840839 +refining industry|8840892 +refinish|8840954 +refinisher|8840985 +refit|8841064 +reflate|8841122 +reflation|8841234 +reflect|8841277 +reflectance|8841604 +reflected|8841694 +reflecting|8841748 +reflecting telescope|8841779 +reflection|8841837 +reflection factor|8842241 +reflective|8842331 +reflective power|8842508 +reflectivity|8842547 +reflectometer|8842683 +reflector|8842712 +reflectorise|8842784 +reflectorize|8842849 +reflex|8842914 +reflex angle|8843078 +reflex arc|8843106 +reflex camera|8843143 +reflex epilepsy|8843193 +reflexed|8843227 +reflexion|8843253 +reflexive|8843641 +reflexive pronoun|8843761 +reflexive verb|8843815 +reflexiveness|8843844 +reflexivity|8843891 +refloat|8843984 +reflux|8844007 +reflux condenser|8844057 +refocus|8844093 +refocusing|8844206 +reforest|8844261 +reforestation|8844295 +reforge|8844370 +reform|8844434 +reform jew|8844910 +reform judaism|8844962 +reform movement|8845064 +reform school|8845120 +reform-minded|8844857 +reformable|8845196 +reformation|8845238 +reformative|8845398 +reformatory|8845439 +reformed|8845542 +reformer|8845598 +reformism|8845703 +reformist|8845785 +reformulate|8845908 +refract|8845967 +refractile|8846033 +refracting telescope|8846083 +refraction|8846131 +refractive|8846212 +refractive index|8846288 +refractiveness|8846340 +refractivity|8846406 +refractometer|8846472 +refractoriness|8846550 +refractory|8846650 +refractory anaemia|8846834 +refractory anemia|8846895 +refractory period|8846956 +refractory pot|8846999 +refractory-lined|8846802 +refracture|8847049 +refrain|8847078 +refresh|8847145 +refreshed|8847357 +refreshen|8847415 +refresher|8847511 +refresher course|8847655 +refreshful|8847742 +refreshfully|8847834 +refreshing|8847868 +refreshingly|8847977 +refreshment|8848011 +refried beans|8848084 +refrigerant|8848130 +refrigerate|8848194 +refrigerated|8848257 +refrigerating|8848284 +refrigeration|8848324 +refrigeration system|8848428 +refrigerator|8848481 +refrigerator car|8848522 +refrigerator cookie|8848560 +refuel|8848610 +refueling|8848643 +refuge|8848697 +refugee|8848847 +refugee camp|8848881 +refulgence|8848916 +refulgency|8848993 +refulgent|8849070 +refund|8849128 +refurbish|8849231 +refurbishment|8849287 +refurnish|8849357 +refusal|8849384 +refuse|8849456 +refuse collector|8849741 +refuse heap|8849814 +refutable|8849985 +refutation|8850049 +refute|8850202 +refuter|8850284 +regain|8850344 +regaining|8850418 +regal|8850480 +regale|8850532 +regalecidae|8850579 +regalecus glesne|8850643 +regalia|8850758 +regard|8850871 +regard as|8851380 +regard to|8851483 +regardant|8851558 +regardful|8851586 +regardless|8851637 +regatta|8851765 +regency|8851802 +regenerate|8851936 +regenerating|8852282 +regeneration|8852315 +regent|8852512 +reggae|8852589 +reggane|8852639 +regicide|8852669 +regime|8852717 +regimen|8852801 +regiment|8852848 +regimental|8852969 +regimentals|8852998 +regimentation|8853036 +regimented|8853081 +regina|8853112 +reginald carey harrison|8853154 +reginald joseph mitchell|8853293 +reginald marsh|8853398 +regiomontanus|8853451 +region|8853556 +regional|8853716 +regional anaesthesia|8853761 +regional anatomy|8853834 +regional anesthesia|8853913 +regional enteritis|8853986 +regional ileitis|8854082 +regionalism|8854178 +register|8854256 +register language|8854725 +registered|8854781 +registered bond|8854893 +registered mail|8854960 +registered nurse|8855006 +registered post|8855041 +registered representative|8855087 +registered security|8855221 +registrant|8855271 +registrar|8855344 +registration|8855453 +registration fire|8855713 +registration number|8855752 +registry|8855825 +regius professor|8855883 +reglaecus|8855941 +regnant|8855997 +regnellidium|8856039 +regnellidium diphyllum|8856108 +regorge|8856200 +regosol|8856364 +regress|8856391 +regression|8856753 +regression analysis|8857134 +regression coefficient|8857185 +regression curve|8857238 +regression equation|8857286 +regression line|8857345 +regression of y on x|8857393 +regression toward the mean|8857452 +regressive|8857581 +regret|8857751 +regretful|8857891 +regrets|8857926 +regrettable|8858050 +regrettably|8858091 +regroup|8858140 +regrow|8858215 +regular|8858264 +regular army|8858922 +regular convex polyhedron|8859002 +regular convex solid|8859129 +regular dodecahedron|8859256 +regular hexagon|8859393 +regular hexahedron|8859426 +regular icosahedron|8859566 +regular octahedron|8859702 +regular payment|8859837 +regular polygon|8859870 +regular polyhedron|8859902 +regular recurrence|8860029 +regular tetrahedron|8860086 +regularisation|8860222 +regularise|8860319 +regularised|8860441 +regularity|8860482 +regularization|8860588 +regularize|8860685 +regularized|8860807 +regularly|8860848 +regulate|8860885 +regulated|8861130 +regulating|8861205 +regulation|8861244 +regulation time|8861528 +regulative|8861587 +regulator|8861630 +regulator gene|8861731 +regulatory|8861791 +regulatory agency|8861834 +regulatory authority|8861922 +regulatory gene|8862010 +regulatory offence|8862070 +regulatory offense|8862172 +regulus|8862274 +regulus calendula|8862344 +regulus regulus|8862436 +regulus satrata|8862518 +regur|8862588 +regur soil|8862619 +regurgitate|8862650 +regurgitation|8862872 +rehabilitate|8863145 +rehabilitated|8863231 +rehabilitation|8863263 +rehabilitation program|8863419 +rehabilitative|8863469 +reharmonisation|8863543 +reharmonise|8863612 +reharmonization|8863665 +reharmonize|8863734 +rehash|8863787 +rehear|8863890 +rehearing|8863921 +rehearsal|8863970 +rehearse|8864108 +reheat|8864163 +reheated|8864192 +reheel|8864251 +rehnquist|8864330 +rehouse|8864421 +reich|8864463 +reichstein|8864653 +reid|8864710 +reification|8864753 +reify|8864881 +reign|8864928 +reign of terror|8865097 +reigning|8865171 +reignite|8865213 +reimburse|8865244 +reimbursement|8865340 +reimpose|8865376 +reimposition|8865406 +reims|8865450 +rein|8865507 +rein in|8865711 +rein orchid|8865806 +rein orchis|8865865 +reincarnate|8865924 +reincarnation|8866035 +reincarnationism|8866183 +reindeer|8866272 +reindeer lichen|8866346 +reindeer moss|8866425 +reinforce|8866504 +reinforced|8866595 +reinforced concrete|8866657 +reinforcement|8866709 +reinforcer|8866962 +reinforcing stimulus|8867054 +reinhold niebuhr|8867146 +reins|8867243 +reinstall|8867315 +reinstate|8867363 +reinstatement|8867449 +reinsurance|8867508 +reinsure|8867539 +reintegrate|8867609 +reinterpret|8867652 +reinterpretation|8867724 +reintroduce|8867823 +reintroduction|8867884 +reinvent|8867940 +reinvigorate|8867981 +reinvigorated|8868063 +reissue|8868121 +reit|8868214 +reiter|8868319 +reiter's disease|8868383 +reiter's syndrome|8868453 +reiterate|8868524 +reiteration|8868589 +reiterative|8868645 +reithrodontomys|8868718 +reject|8868794 +rejected|8869085 +rejection|8869170 +rejective|8869299 +rejig|8869340 +rejoice|8869389 +rejoicing|8869550 +rejoicing in the law|8869702 +rejoicing of the law|8869884 +rejoicing over the law|8870066 +rejoin|8870250 +rejoinder|8870358 +rejuvenate|8870459 +rejuvenation|8870601 +rekindle|8870670 +relace|8870786 +relafen|8870815 +relapse|8870924 +relapsing|8871135 +relapsing fever|8871216 +relate|8871276 +related|8871498 +related to|8871995 +relatedness|8872249 +relatiative|8872305 +relation|8872392 +relation back|8872817 +relation to|8872902 +relational|8872977 +relational adjective|8873006 +relational database|8873068 +relational database management system|8873183 +relations|8873262 +relationship|8873774 +relative|8873894 +relative atomic mass|8874150 +relative clause|8874199 +relative density|8874231 +relative frequency|8874275 +relative humidity|8874319 +relative incidence|8874352 +relative majority|8874419 +relative molecular mass|8874474 +relative pronoun|8874529 +relative quantity|8874563 +relative-in-law|8874100 +relatively|8874614 +relativise|8874647 +relativism|8874710 +relativistic|8874774 +relativistic mass|8874863 +relativity|8874895 +relativity theory|8875004 +relativize|8875113 +relatum|8875176 +relax|8875198 +relaxant|8875528 +relaxation|8875579 +relaxation behavior|8875973 +relaxation method|8876050 +relaxation time|8876142 +relaxed|8876181 +relaxer|8876294 +relaxin|8876317 +relaxing|8876371 +relay|8876413 +relay links|8876557 +relay race|8876666 +relay stations|8876698 +relay transmitters|8876807 +relays|8876916 +relearn|8877030 +release|8877066 +released|8878123 +releasing|8878157 +releasing factor|8878196 +releasing hormone|8878376 +relegate|8878555 +relegating|8878753 +relegation|8878857 +relent|8879097 +relentless|8879126 +relentlessly|8879256 +relentlessness|8879291 +relevance|8879373 +relevancy|8879437 +relevant|8879501 +reliability|8879662 +reliable|8879756 +reliableness|8879966 +reliably|8880060 +reliance|8880099 +reliant|8880173 +relic|8880200 +relict|8880279 +relief|8880348 +relief map|8880988 +relief pitcher|8881024 +relief printing|8881088 +relief valve|8881151 +relieve|8881234 +relieve oneself|8881626 +relieved|8881794 +reliever|8881839 +relievo|8882066 +religion|8882137 +religionist|8882263 +religiosity|8882354 +religious|8882421 +religious belief|8882602 +religious ceremony|8882689 +religious cult|8882743 +religious doctrine|8882811 +religious festival|8883022 +religious holiday|8883075 +religious leader|8883119 +religious movement|8883181 +religious music|8883240 +religious mystic|8883324 +religious mysticism|8883387 +religious offering|8883458 +religious order|8883531 +religious orientation|8883591 +religious outcast|8883634 +religious person|8883713 +religious residence|8883804 +religious right|8883852 +religious rite|8883894 +religious ritual|8883959 +religious school|8884013 +religious sect|8884046 +religious service|8884106 +religious society of friends|8884192 +religious song|8884322 +religious text|8884380 +religious trance|8884491 +religious writing|8884539 +religiousism|8884650 +religiously|8884717 +religiousness|8884781 +reline|8884831 +relinquish|8884864 +relinquished|8885096 +relinquishing|8885154 +relinquishment|8885270 +reliquary|8885385 +relish|8885414 +relishing|8885657 +relistening|8885730 +relive|8885779 +reliving|8885826 +reload|8885871 +relocatable program|8885939 +relocate|8886022 +relocated|8886066 +relocation|8886103 +reluctance|8886218 +reluctant|8886331 +reluctivity|8886405 +rely|8886444 +relyric|8886483 +rem|8886506 +rem sleep|8886639 +remain|8886748 +remain down|8886839 +remain firm|8886880 +remainder|8886944 +remaining|8887151 +remains|8887234 +remake|8887322 +remaking|8887408 +remand|8887442 +remark|8887591 +remarkable|8887758 +remarkably|8887841 +remarriage|8887917 +remarry|8887972 +rematch|8888057 +rembrandt|8888099 +rembrandt harmensz van rijn|8888204 +rembrandt van rijn|8888327 +rembrandt van ryn|8888441 +rembrandtesque|8888554 +remediable|8888603 +remedial|8888634 +remediate|8888728 +remediation|8888797 +remedy|8888858 +remember|8889076 +remember oneself|8889388 +remembering|8889429 +remembrance|8889481 +remembrance day|8889605 +remembrance sunday|8889683 +remicade|8889764 +remilegia|8889820 +remilegia australis|8889876 +remilitarisation|8889981 +remilitarise|8890080 +remilitarization|8890137 +remilitarize|8890236 +remind|8890293 +reminder|8890327 +remindful|8890467 +reminisce|8890558 +reminiscence|8890597 +reminiscent|8890672 +reminiscent of|8890763 +remiss|8890854 +remission|8890911 +remission of sin|8891137 +remissness|8891214 +remit|8891283 +remitment|8891564 +remittal|8891653 +remittance|8891849 +remittance man|8891906 +remittent|8891947 +remnant|8891984 +remodel|8892121 +remodeled|8892229 +remold|8892265 +remonstrance|8892400 +remonstrate|8892457 +remora|8892715 +remorse|8892790 +remorseful|8892862 +remorsefully|8892921 +remorseless|8892962 +remorselessly|8893032 +remote|8893090 +remote control|8893458 +remote station|8893496 +remote terminal|8893590 +remote-access data processing|8893280 +remote-control bomb|8893378 +remote-controlled|8893412 +remoteness|8893684 +remotion|8893809 +remoulade sauce|8893846 +remould|8893877 +remount|8893963 +removable|8894100 +removable disk|8894195 +removal|8894250 +removal company|8894364 +removal firm|8894444 +remove|8894524 +removed|8894767 +remover|8894893 +remuda|8894979 +remunerate|8895000 +remunerated|8895046 +remuneration|8895105 +remunerative|8895203 +remunerator|8895310 +remus|8895364 +renaissance|8895400 +renaissance man|8895555 +renal|8895696 +renal artery|8895750 +renal calculus|8895825 +renal colic|8895910 +renal corpuscle|8895944 +renal cortex|8896014 +renal disorder|8896043 +renal failure|8896113 +renal insufficiency|8896211 +renal lithiasis|8896306 +renal pelvis|8896357 +renal vein|8896413 +rename|8896476 +renascence|8896528 +renascent|8896632 +renata tebaldi|8896679 +rend|8896734 +render|8896785 +render-set|8897381 +rendering|8897414 +rendezvous|8897727 +rending|8897873 +rendition|8897931 +rene antoine ferchault de reaumur|8898189 +rene descartes|8898284 +rene magritte|8898359 +rene-robert cavelier|8898093 +renegade|8898413 +renegade state|8898568 +renege|8898681 +renege on|8898832 +renegociate|8898949 +renegotiate|8899042 +renegue on|8899135 +renew|8899252 +renewable|8899337 +renewable resource|8899387 +renewal|8899450 +renewed|8899585 +renewing|8899610 +reniform|8899688 +reniform leaf|8899740 +renin|8899775 +rennet|8899839 +rennin|8899872 +reno|8899914 +renoir|8899962 +renormalise|8900018 +renormalize|8900091 +renounce|8900164 +renouncement|8900350 +renovate|8900397 +renovated|8900608 +renovation|8900636 +renovator|8900739 +renown|8900818 +renowned|8900870 +rensselaerite|8900954 +rent|8900989 +rent collector|8901549 +rent out|8901604 +rent-a-car|8901359 +rent-free|8901449 +rent-rebate|8901475 +rent-roll|8901512 +rentable|8901650 +rental|8901677 +rental collection|8901878 +rental income|8901913 +rente|8901943 +renter|8901982 +rentier|8902047 +renting|8902073 +renunciant|8902126 +renunciation|8902201 +renunciative|8902351 +reopen|8902426 +reorder|8902455 +reordering|8902519 +reorganisation|8902553 +reorganise|8902635 +reorganised|8902742 +reorganization|8902785 +reorganize|8902894 +reorganized|8903001 +reorient|8903044 +reorientate|8903117 +reorientation|8903164 +reoviridae|8903233 +reovirus|8903285 +rep|8903316 +repaint|8903412 +repair|8903461 +repair shed|8903977 +repair shop|8904036 +repairable|8904080 +repaired|8904120 +repairer|8904206 +repairman|8904298 +repand|8904390 +reparable|8904413 +reparation|8904467 +repartee|8904625 +repast|8904680 +repatriate|8904774 +repatriation|8904872 +repay|8904912 +repayable|8905074 +repayment|8905102 +repayment rate|8905181 +repeal|8905272 +repeat|8905410 +repeatable|8905775 +repeated|8905806 +repeater|8905854 +repeating|8906074 +repeating decimal|8906129 +repeating firearm|8906219 +repechage|8906279 +repel|8906303 +repellant|8906615 +repellent|8906915 +repellently|8907259 +repelling|8907291 +repellingly|8907427 +repent|8907459 +repentance|8907515 +repentant|8907587 +repentantly|8907676 +repercuss|8907721 +repercussion|8907787 +repertoire|8907923 +repertory|8908054 +repertory company|8908168 +repetition|8908225 +repetitious|8908350 +repetitiousness|8908423 +repetitive|8908485 +repetitiveness|8908585 +rephrase|8908647 +rephrasing|8908734 +repine|8908793 +repining|8908853 +replace|8908896 +replaceability|8909091 +replaceable|8909213 +replacement|8909320 +replacement cost|8909667 +replacing|8909698 +replant|8909763 +replay|8909790 +replenish|8909970 +replenishment|8910030 +replete|8910091 +repletion|8910202 +replica|8910278 +replicate|8910325 +replication|8910465 +reply|8910774 +reply-paid|8910879 +repoint|8910904 +report|8910985 +report card|8911465 +report out|8911510 +reportable|8911537 +reportage|8911584 +reported|8911627 +reporter|8911683 +reporting|8911733 +reporting weight|8911776 +repose|8911814 +repose on|8912262 +reposeful|8912375 +reposit|8912417 +repositing|8912440 +reposition|8912510 +repositioning|8912655 +repository|8912739 +repossess|8912897 +repossession|8912958 +repot|8912999 +repp|8913018 +reprehend|8913066 +reprehensibility|8913122 +reprehensible|8913162 +reprehensibly|8913223 +reprehension|8913254 +reprehensively|8913341 +represent|8913375 +representable|8913865 +representation|8913900 +representational|8914235 +representational process|8914368 +representative|8914426 +representative sample|8914769 +representative sampling|8914874 +represented|8914958 +repress|8915080 +repressed|8915274 +represser|8915311 +repressing|8915346 +repression|8915400 +repressive|8915551 +repressor|8915605 +repressor gene|8915640 +reprieve|8915684 +reprimand|8915958 +reprimanded|8916315 +reprint|8916383 +reprinting|8916489 +reprisal|8916537 +reprise|8916575 +reprize|8916631 +reproach|8916687 +reproacher|8916835 +reproachful|8916892 +reproachfully|8916971 +reprobate|8917005 +reprobation|8917197 +reprocess|8917274 +reproduce|8917340 +reproducer|8917465 +reproducibility|8917511 +reproducible|8917604 +reproduction|8917674 +reproduction cost|8917941 +reproductive|8917988 +reproductive cell|8918042 +reproductive cloning|8918093 +reproductive memory|8918131 +reproductive organ|8918206 +reproductive structure|8918250 +reproductive system|8918294 +reproof|8918345 +reproval|8918642 +reprove|8918729 +reproved|8918792 +reprover|8918860 +reproving|8918917 +reprovingly|8918996 +reptantia|8919030 +reptile|8919091 +reptile family|8919138 +reptile genus|8919169 +reptilia|8919198 +reptilian|8919246 +republic|8919305 +republic of albania|8919425 +republic of angola|8919524 +republic of armenia|8919609 +republic of austria|8919702 +republic of belarus|8919804 +republic of benin|8919939 +republic of bolivia|8920029 +republic of bosnia and herzegovina|8920131 +republic of botswana|8920312 +republic of bulgaria|8920403 +republic of burundi|8920505 +republic of cameroon|8920593 +republic of cape verde|8920693 +republic of chad|8920778 +republic of chile|8920863 +republic of china|8920959 +republic of colombia|8921042 +republic of costa rica|8921147 +republic of cote d'ivoire|8921262 +republic of croatia|8921380 +republic of cuba|8921479 +republic of cyprus|8921546 +republic of djibouti|8921619 +republic of ecuador|8921726 +republic of el salvador|8921828 +republic of equitorial guinea|8921955 +republic of estonia|8922088 +republic of fiji|8922183 +republic of finland|8922250 +republic of ghana|8922346 +republic of guatemala|8922439 +republic of guinea|8922551 +republic of guinea-bissau|8922650 +republic of haiti|8922787 +republic of honduras|8922857 +republic of hungary|8922966 +republic of iceland|8923069 +republic of india|8923159 +republic of indonesia|8923244 +republic of iraq|8923344 +republic of kazakhstan|8923432 +republic of kenya|8923548 +republic of kiribati|8923630 +republic of korea|8923709 +republic of latvia|8923793 +republic of liberia|8923876 +republic of lithuania|8923964 +republic of madagascar|8924064 +republic of malawi|8924179 +republic of maldives|8924274 +republic of mali|8924353 +republic of malta|8924445 +republic of mauritius|8924515 +republic of moldova|8924597 +republic of mozambique|8924696 +republic of namibia|8924804 +republic of nauru|8924910 +republic of nicaragua|8924980 +republic of niger|8925092 +republic of palau|8925174 +republic of panama|8925247 +republic of paraguay|8925350 +republic of peru|8925455 +republic of poland|8925548 +republic of san marino|8925642 +republic of senegal|8925741 +republic of seychelles|8925829 +republic of sierra leone|8925914 +republic of singapore|8926017 +republic of slovenia|8926107 +republic of south africa|8926210 +republic of suriname|8926313 +republic of tajikistan|8926458 +republic of the congo|8926585 +republic of the gambia|8926688 +republic of the marshall islands|8926792 +republic of the philippines|8926903 +republic of the sudan|8926999 +republic of trinidad and tobago|8927096 +republic of tunisia|8927208 +republic of turkey|8927296 +republic of uganda|8927369 +republic of uzbekistan|8927454 +republic of vanuatu|8927553 +republic of venezuela|8927642 +republic of yemen|8927750 +republic of zambia|8927828 +republic of zimbabwe|8927931 +republican|8928049 +republican guard|8928253 +republican party|8928346 +republican river|8928415 +republicanism|8928475 +republication|8928546 +republish|8928624 +republishing|8928681 +repudiate|8928740 +repudiated|8928823 +repudiation|8928867 +repudiative|8928952 +repugn|8928983 +repugnance|8929022 +repugnant|8929153 +repulse|8929221 +repulsion|8929427 +repulsive|8929533 +repulsive force|8929638 +repulsively|8929679 +repulsiveness|8929730 +repurchase|8929827 +reputability|8929904 +reputable|8929970 +reputation|8930124 +repute|8930232 +reputed|8930374 +request|8930432 +requested|8930643 +requiem|8930672 +requiem shark|8930765 +requiescat|8930794 +require|8930837 +required|8931003 +requirement|8931095 +requirements contract|8931258 +requisite|8931298 +requisiteness|8931406 +requisition|8931439 +requisition form|8931593 +requital|8931636 +requite|8931713 +reread|8931741 +rerebrace|8931762 +reredos|8931801 +rerun|8931836 +res|8931982 +res adjudicata|8932148 +res gestae|8932212 +res ipsa loquitur|8932263 +res judicata|8932307 +res publica|8932371 +resale|8932459 +rescale|8932507 +reschedule|8932531 +rescind|8932560 +rescindable|8932657 +rescission|8932707 +rescript|8932750 +rescriptor|8932951 +rescue|8933047 +rescue equipment|8933183 +rescue operation|8933219 +rescue party|8933255 +rescued|8933291 +rescuer|8933324 +reseal|8933460 +research|8933490 +research center|8933648 +research colloquium|8933705 +research director|8933745 +research effort|8933804 +research facility|8933867 +research lab|8933924 +research laboratory|8934027 +research project|8934130 +research rocket|8934185 +research staff|8934253 +research worker|8934283 +researchable|8934357 +researcher|8934388 +reseat|8934462 +reseau|8934520 +resect|8934585 +resection|8934643 +reseda|8934735 +reseda luteola|8934773 +reseda odorata|8934856 +resedaceae|8934926 +reseed|8935016 +resell|8935066 +resemblance|8935087 +resemble|8935138 +resent|8935205 +resentful|8935245 +resentment|8935303 +reserpine|8935380 +reservation|8935472 +reserve|8935822 +reserve account|8936446 +reserve assets|8936510 +reserve bank|8936541 +reserve clause|8936654 +reserve fund|8936693 +reserve officers training corps|8936757 +reserved|8936841 +reserves|8937087 +reservist|8937591 +reservoir|8937618 +reset|8937717 +reset button|8937824 +resettle|8937870 +resettled|8937902 +resettlement|8937939 +resew|8938035 +resh|8938081 +reshape|8938146 +reship|8938250 +reshipment|8938271 +reshoot|8938318 +resht|8938351 +reshuffle|8938407 +reshuffling|8938552 +resid|8938606 +reside|8938680 +residence|8938885 +residence hall|8939035 +residence time|8939139 +residency|8939184 +resident|8939316 +resident commissioner|8939502 +resident physician|8939548 +residential|8939636 +residential area|8939707 +residential district|8939813 +residual|8939919 +residual clay|8940063 +residual oil|8940110 +residual soil|8940184 +residuary|8940231 +residue|8940319 +residuum|8940439 +resift|8940535 +resign|8940569 +resignation|8940809 +resigned|8940906 +resignedly|8940968 +resile|8940996 +resilience|8941263 +resiliency|8941365 +resilient|8941467 +resin|8941544 +resinate|8941582 +resinated|8941622 +resinlike|8941657 +resinoid|8941692 +resinous|8941718 +resiny|8941765 +resist|8941812 +resistance|8942109 +resistance pyrometer|8942488 +resistance thermometer|8942528 +resistance unit|8942593 +resistant|8942643 +resister|8942823 +resistible|8943020 +resisting arrest|8943051 +resistive|8943113 +resistivity|8943205 +resistless|8943328 +resistor|8943430 +resize|8943477 +resmudge|8943498 +resole|8943541 +resolute|8943620 +resolutely|8943981 +resoluteness|8944011 +resolution|8944067 +resolvable|8944539 +resolve|8944596 +resolved|8945101 +resolvent|8945156 +resolving|8945228 +resolving power|8945281 +resonance|8945337 +resonant|8945567 +resonant circuit|8945690 +resonate|8945770 +resonating|8945824 +resonating chamber|8945920 +resonator|8945983 +resorb|8946128 +resorcinol|8946160 +resorcinolphthalein|8946187 +resorption|8946291 +resort|8946359 +resort area|8946642 +resort hotel|8946701 +resound|8946768 +resounding|8946849 +resource|8946945 +resourceful|8947072 +resourcefulness|8947101 +resourceless|8947212 +respect|8947239 +respect to|8947680 +respectability|8947755 +respectable|8947821 +respectably|8948010 +respected|8948041 +respecter|8948132 +respectful|8948160 +respectfully|8948297 +respectfulness|8948335 +respective|8948399 +respectively|8948446 +respects|8948477 +respighi|8948915 +respiration|8948969 +respirator|8949235 +respiratory|8949362 +respiratory acidosis|8949422 +respiratory alkalosis|8949485 +respiratory center|8949526 +respiratory disease|8949594 +respiratory disorder|8949672 +respiratory distress syndrome|8949750 +respiratory distress syndrome of the newborn|8949920 +respiratory illness|8950090 +respiratory infection|8950168 +respiratory organ|8950237 +respiratory quotient|8950286 +respiratory rate|8950322 +respiratory syncytial virus|8950384 +respiratory system|8950435 +respiratory tract|8950492 +respiratory tract infection|8950525 +respire|8950594 +respite|8950721 +resplend|8951076 +resplendence|8951108 +resplendency|8951156 +resplendent|8951204 +resplendent quetzel|8951307 +resplendent trogon|8951395 +resplendently|8951483 +respond|8951541 +respondent|8951621 +responder|8951733 +response|8951785 +response time|8952030 +responsibility|8952112 +responsible|8952270 +responsible for|8952473 +responsibleness|8952520 +responsive|8952587 +responsiveness|8952751 +rest|8952839 +rest area|8953740 +rest day|8953796 +rest energy|8953842 +rest home|8953870 +rest house|8953919 +rest mass|8953956 +rest on|8953980 +rest period|8954147 +rest stop|8954237 +rest-cure|8953513 +rest-harrow|8953542 +restart|8954293 +restate|8954381 +restatement|8954446 +restaurant|8954477 +restaurant attendant|8954540 +restaurant chain|8954601 +restauranter|8954633 +restaurateur|8954685 +rested|8954737 +rester|8954835 +restful|8954904 +restfully|8954946 +restfulness|8954972 +restharrow|8955025 +resting potential|8955143 +restitute|8955243 +restitution|8955333 +restive|8955521 +restiveness|8955643 +restless|8955738 +restless legs|8955877 +restless legs syndrome|8955947 +restlessness|8956017 +restock|8956174 +restoration|8956197 +restorative|8956492 +restore|8956684 +restored|8956971 +restorer|8957087 +restoril|8957166 +restrain|8957218 +restrained|8957544 +restrainer|8957885 +restraint|8957985 +restraint of trade|8958162 +restrengthen|8958200 +restrict|8958249 +restricted|8958496 +restricting|8958678 +restriction|8958756 +restriction endonuclease|8958861 +restriction enzyme|8958948 +restriction fragment|8959035 +restriction nuclease|8959074 +restriction site|8959161 +restrictive|8959202 +restrictive clause|8959396 +restrictiveness|8959460 +restroom|8959518 +restructure|8959692 +resublime|8959736 +resublimed|8959773 +resubmit|8959810 +result|8959852 +resultant|8960171 +resultant role|8960377 +resulting|8960439 +resulting trust|8960506 +resume|8960545 +resumption|8960820 +resupine|8960884 +resurface|8960917 +resurge|8961011 +resurgence|8961079 +resurgent|8961183 +resurrect|8961245 +resurrection|8961394 +resurrection fern|8961553 +resurrection of christ|8961628 +resurrection plant|8961726 +resurvey|8961908 +resuscitate|8961939 +resuscitated|8962052 +resuscitation|8962082 +resuscitator|8962169 +resuspend|8962257 +resuspension|8962284 +ret|8962317 +retail|8962364 +retail chain|8962450 +retail merchant|8962490 +retail price index|8962570 +retail store|8962622 +retailer|8962730 +retailing|8962810 +retain|8962861 +retained|8963035 +retained object|8963074 +retainer|8963106 +retaining|8963188 +retaining wall|8963225 +retake|8963254 +retaking|8963361 +retaliate|8963408 +retaliation|8963497 +retaliator|8963558 +retaliatory|8963625 +retaliatory eviction|8963712 +retama|8963778 +retama raetam|8963832 +retard|8963929 +retardant|8964158 +retardation|8964205 +retarded|8964454 +retarded depression|8964586 +retardent|8964666 +retarding force|8964713 +retch|8964754 +rete|8964954 +rete malpighii|8965056 +rete testis|8965156 +retell|8965189 +retem|8965321 +retention|8965404 +retentive|8965582 +retentiveness|8965671 +retentivity|8965824 +rethink|8965900 +reticence|8966055 +reticent|8966114 +retick|8966241 +reticle|8966293 +reticular|8966337 +reticular activating system|8966564 +reticular formation|8966631 +reticulate|8966689 +reticulated|8966971 +reticulated python|8967198 +reticulation|8967252 +reticule|8967299 +reticulitermes|8967379 +reticulitermes flanipes|8967455 +reticulitermes lucifugus|8967530 +reticulocyte|8967607 +reticuloendothelial system|8967660 +reticulum|8967707 +retie|8967821 +retina|8967845 +retinal|8967883 +retinal cone|8967945 +retinal detachment|8967994 +retinal purple|8968125 +retinal rod|8968186 +retinal scanning|8968232 +retinene|8968330 +retinitis|8968364 +retinoblastoma|8968410 +retinol|8968486 +retinue|8968560 +retire|8968622 +retired|8969414 +retired person|8969541 +retiree|8969583 +retirement|8969625 +retirement account|8969724 +retirement benefit|8969890 +retirement check|8970009 +retirement fund|8970128 +retirement pension|8970247 +retirement plan|8970366 +retirement program|8970532 +retirement savings account|8970698 +retirement savings plan|8970864 +retiring|8971030 +retool|8971168 +retort|8971248 +retouch|8971413 +retrace|8971524 +retract|8971693 +retractable|8971912 +retracted|8971944 +retractile|8971972 +retraction|8972015 +retractor|8972116 +retrain|8972155 +retraining|8972223 +retral|8972273 +retranslate|8972326 +retransmit|8972374 +retread|8972432 +retreat|8972586 +retreatant|8972986 +retreated|8973018 +retreating|8973044 +retrench|8973105 +retrenchment|8973232 +retrial|8973325 +retribution|8973348 +retributive|8973463 +retributory|8973586 +retrievable|8973709 +retrieval|8973742 +retrieve|8973865 +retriever|8974002 +retro|8974042 +retroactive|8974112 +retrobulbar neuritis|8974186 +retrofit|8974225 +retroflection|8974398 +retroflex|8974572 +retroflexed|8974725 +retroflexion|8974765 +retrograde|8974941 +retrograde amnesia|8975220 +retrogress|8975277 +retrogression|8975423 +retrogressive|8975552 +retromandibular vein|8975597 +retrophyllum|8975698 +retrorocket|8975769 +retrorse|8975811 +retrospect|8975847 +retrospection|8975979 +retrospective|8976046 +retrousse|8976146 +retroversion|8976193 +retrovert|8976403 +retrovir|8976486 +retrovirus|8976580 +retrovision|8976613 +retry|8976641 +retsina|8976672 +return|8976699 +return address|8977937 +return key|8977998 +return ticket|8978029 +returnable|8978077 +returning|8978119 +returning officer|8978185 +reuben|8978233 +reuben lucius goldberg|8978289 +reunification|8978378 +reunify|8978456 +reunion|8978493 +reunite|8978584 +reuptake|8978646 +reusable|8978681 +reusable program|8978756 +reusable routine|8978836 +reuse|8978911 +rev|8978977 +rev up|8979045 +revaluation|8979098 +revalue|8979172 +revamp|8979243 +reveal|8979346 +revealed|8979629 +revealed religion|8979680 +revealing|8979739 +reveille|8979935 +revel|8980015 +revelation|8980190 +revelation of saint john the divine|8980397 +revelatory|8980524 +reveler|8980656 +reveller|8980725 +revelry|8980794 +revenant|8980856 +revenge|8980979 +revengeful|8981089 +revengefully|8981141 +revenue|8981186 +revenue bond|8981301 +revenue enhancement|8981345 +revenue sharing|8981392 +revenue stamp|8981430 +revenue tariff|8981470 +revenuer|8981506 +reverberance|8981541 +reverberant|8981649 +reverberate|8981854 +reverberating|8982088 +reverberation|8982184 +reverberative|8982348 +revere|8982444 +revered|8982682 +reverence|8982789 +reverenced|8982929 +reverend|8982991 +reverend dodgson|8983143 +reverent|8983271 +reverential|8983403 +reverentially|8983455 +reverently|8983488 +reverie|8983521 +revers|8983676 +reversal|8983705 +reverse|8984128 +reverse fault|8984712 +reverse hang|8984780 +reverse polish notation|8984807 +reverse split|8984923 +reverse stock split|8985017 +reverse transcriptase|8985111 +reverse transcriptase inhibitor|8985153 +reversed|8985235 +reversibility|8985296 +reversible|8985348 +reversible process|8985515 +reversing thermometer|8985551 +reversion|8985594 +reversionary|8985935 +reversionary annuity|8985971 +reversioner|8986036 +reversionist|8986063 +reversive|8986126 +revert|8986164 +revertible|8986261 +reverting|8986292 +revery|8986401 +revet|8986557 +revetement|8986605 +revetment|8986664 +review|8986738 +review article|8987513 +review copy|8987598 +reviewer|8987624 +reviewing stand|8987697 +revile|8987735 +reviled|8987809 +revilement|8987842 +revisal|8987921 +revise|8987982 +revised|8988103 +revised standard version|8988143 +revised version|8988291 +reviser|8988421 +revising|8988498 +revision|8988544 +revisionism|8988716 +revisionist|8988812 +revisit|8988850 +revitalisation|8988901 +revitalise|8989005 +revitalised|8989053 +revitalising|8989094 +revitalization|8989172 +revitalize|8989276 +revitalized|8989384 +revitalizing|8989425 +revival|8989503 +revival meeting|8989649 +revivalism|8989701 +revivalist|8989736 +revivalistic|8989830 +revive|8989866 +revived|8990207 +revivification|8990326 +revivify|8990430 +reviving|8990562 +revocable|8990640 +revocation|8990711 +revokable|8990782 +revoke|8990843 +revolt|8990986 +revolting|8991205 +revoltingly|8991341 +revolution|8991400 +revolutionary|8991509 +revolutionary armed forces of colombia|8991634 +revolutionary calendar|8991844 +revolutionary calendar month|8991914 +revolutionary group|8992002 +revolutionary justice organization|8992046 +revolutionary organization 17 november|8992370 +revolutionary organization of socialist muslims|8992543 +revolutionary people's liberation front|8992830 +revolutionary people's liberation party|8993033 +revolutionary people's struggle|8993236 +revolutionary proletarian army|8993387 +revolutionary proletarian initiative nuclei|8993566 +revolutionary proletarian nucleus|8993776 +revolutionary united front|8993976 +revolutionise|8994117 +revolutionist|8994225 +revolutionize|8994291 +revolutions per minute|8994444 +revolve|8994489 +revolve about|8994599 +revolve around|8994738 +revolved|8994918 +revolver|8994951 +revolving charge account|8995054 +revolving credit|8995131 +revolving door|8995211 +revolving fund|8995269 +revue|8995312 +revulsion|8995355 +rewa-rewa|8995410 +reward|8995487 +rewardable|8995766 +rewardful|8995796 +rewarding|8995825 +rewire|8995938 +reword|8995959 +rewording|8996046 +rework|8996105 +rewrite|8996160 +rewrite man|8996282 +rewriter|8996359 +rewriting|8996436 +rex begonia|8996482 +rex harrison|8996576 +reye's syndrome|8996704 +reyes|8996754 +reykjavik|8996822 +reynard|8996892 +reynolds|8996921 +rf|8996976 +rh|8997201 +rh antibody|8997816 +rh factor|8997858 +rh incompatibility|8997912 +rh negative|8997975 +rh positive|8998072 +rh-negative|8997449 +rh-negative blood|8997482 +rh-negative blood type|8997585 +rh-positive|8997693 +rh-positive blood type|8997726 +rhabdomancer|8998151 +rhabdomancy|8998200 +rhabdomyoma|8998286 +rhabdomyosarcoma|8998313 +rhabdosarcoma|8998361 +rhabdoviridae|8998409 +rhabdovirus|8998467 +rhadamnathus|8998501 +rhaeto-romance|8998548 +rhaeto-romanic|8998645 +rhagades|8998742 +rhagoletis|8998835 +rhagoletis pomonella|8998899 +rhamnaceae|8998998 +rhamnales|8999097 +rhamnus|8999154 +rhamnus californicus|8999224 +rhamnus carolinianus|8999336 +rhamnus croceus|8999430 +rhamnus frangula|8999500 +rhamnus purshianus|8999583 +rhaphe|8999701 +rhapis|8999729 +rhapis excelsa|8999795 +rhapis humilis|8999887 +rhapsodic|8999966 +rhapsodically|9000022 +rhapsodise|9000069 +rhapsodize|9000154 +rhapsody|9000239 +rhd|9000289 +rhea|9000399 +rhea americana|9000552 +rhea silvia|9000631 +rheidae|9000689 +rheiformes|9000741 +rheims|9000802 +rheims-douay bible|9000860 +rheims-douay version|9001083 +rhein|9001308 +rheinland|9001353 +rhenish|9001464 +rhenium|9001536 +rheologic|9001596 +rheological|9001670 +rheology|9001744 +rheostat|9001806 +rhesus|9001862 +rhesus factor|9001915 +rhesus monkey|9001959 +rhetoric|9002012 +rhetorical|9002243 +rhetorical device|9002547 +rhetorical question|9002581 +rhetorician|9002620 +rheum|9002732 +rheum australe|9002822 +rheum cultorum|9002949 +rheum emodi|9003071 +rheum palmatum|9003195 +rheum rhabarbarum|9003272 +rheum rhaponticum|9003397 +rheumatic|9003522 +rheumatic aortitis|9003630 +rheumatic fever|9003667 +rheumatic heart disease|9003711 +rheumatism|9003786 +rheumatism weed|9003910 +rheumatoid|9004049 +rheumatoid arthritis|9004113 +rheumatoid factor|9004222 +rheumatoid spondylitis|9004262 +rheumatologist|9004392 +rheumatology|9004446 +rheumy|9004495 +rhexia|9004570 +rhibhus|9004624 +rhinal|9004668 +rhincodon|9004703 +rhincodon typus|9004759 +rhincodontidae|9004818 +rhine|9004891 +rhine river|9004997 +rhine wine|9005048 +rhineland|9005103 +rhinencephalon|9005214 +rhinestone|9005294 +rhinion|9005346 +rhinitis|9005382 +rhino|9005434 +rhinobatidae|9005513 +rhinoceros|9005580 +rhinoceros antiquitatis|9005659 +rhinoceros beetle|9005751 +rhinoceros family|9005818 +rhinoceros unicornis|9005896 +rhinocerotidae|9005982 +rhinolaryngologist|9006075 +rhinolophidae|9006207 +rhinonicteris|9006279 +rhinonicteris aurantius|9006349 +rhinopathy|9006466 +rhinophyma|9006496 +rhinoplasty|9006630 +rhinoptera|9006754 +rhinoptera bonasus|9006813 +rhinorrhea|9006896 +rhinoscope|9006924 +rhinoscopy|9006963 +rhinosporidiosis|9007004 +rhinostenosis|9007066 +rhinotermitidae|9007119 +rhinotomy|9007200 +rhinotracheitis|9007292 +rhinovirus|9007332 +rhipsalis|9007365 +rhiptoglossa|9007436 +rhizobiaceae|9007582 +rhizobium|9007653 +rhizoctinia|9007713 +rhizoctinia disease|9007741 +rhizoctinia solani|9007784 +rhizoid|9007877 +rhizoidal|9007917 +rhizomatous|9007958 +rhizomatous begonia|9007989 +rhizome|9008026 +rhizomorph|9008074 +rhizophora|9008100 +rhizophora mangle|9008179 +rhizophoraceae|9008267 +rhizopod|9008377 +rhizopoda|9008426 +rhizopodan|9008480 +rhizopogon|9008529 +rhizopogon idahoensis|9008590 +rhizopogonaceae|9008657 +rhizopus|9008735 +rhizopus nigricans|9008764 +rhizopus stolonifer|9008831 +rhizotomy|9008916 +rho|9009008 +rhodanthe|9009072 +rhodanthe manglesii|9009186 +rhode island|9009320 +rhode island bent|9009425 +rhode island red|9009563 +rhode islander|9009628 +rhodes|9009676 +rhodes grass|9009820 +rhodes scholar|9009883 +rhodesia|9009930 +rhodesian|9010036 +rhodesian man|9010095 +rhodesian ridgeback|9010177 +rhodium|9010238 +rhodochrosite|9010298 +rhododendron|9010329 +rhododendron californicum|9010362 +rhododendron maxima|9010455 +rhododendron viscosum|9010525 +rhodolite|9010640 +rhodomontade|9010666 +rhodonite|9010759 +rhodope mountains|9010786 +rhodophyceae|9010911 +rhodophyta|9010971 +rhodopsin|9011031 +rhodosphaera|9011092 +rhodosphaera rhodanthema|9011177 +rhodymenia|9011295 +rhodymenia palmata|9011360 +rhodymeniaceae|9011423 +rhoeadales|9011502 +rhomb|9011592 +rhombencephalon|9011629 +rhombic|9011681 +rhombohedral|9011711 +rhombohedron|9011764 +rhomboid|9011861 +rhomboid minor muscle|9011979 +rhomboid muscle|9012085 +rhomboidal|9012151 +rhomboideus major muscle|9012193 +rhombus|9012303 +rhonchus|9012340 +rhone|9012364 +rhone river|9012450 +rhone wine|9012495 +rhone-alpes|9012403 +rhubarb|9012536 +rhubarb pie|9012622 +rhubarb plant|9012647 +rhumb|9012700 +rhumb line|9012741 +rhumba|9012782 +rhus|9012914 +rhus aromatica|9012975 +rhus copallina|9013061 +rhus dermatitis|9013173 +rhus diversiloba|9013233 +rhus glabra|9013338 +rhus laurina|9013431 +rhus ovata|9013506 +rhus quercifolia|9013580 +rhus radicans|9013705 +rhus rhodanthema|9013827 +rhus toxicodenedron|9013937 +rhus trilobata|9014065 +rhus typhina|9014155 +rhus verniciflua|9014267 +rhus vernix|9014459 +rhyacotriton|9014568 +rhyacotriton olympicus|9014638 +rhyme|9014723 +rhyme royal|9014875 +rhymed|9014903 +rhymeless|9014974 +rhymer|9015019 +rhymester|9015087 +rhyming|9015155 +rhyming slang|9015219 +rhynchocephalia|9015290 +rhynchoelaps|9015366 +rhynchoelaps australis|9015434 +rhyncostylis|9015546 +rhynia|9015630 +rhyniaceae|9015677 +rhyolite|9015738 +rhythm|9015769 +rhythm and blues|9016096 +rhythm and blues musician|9016199 +rhythm method|9016266 +rhythm method of birth control|9016400 +rhythm section|9016534 +rhythmic|9016596 +rhythmic pattern|9016814 +rhythmical|9016876 +rhythmicity|9017105 +rhytidectomy|9017141 +rhytidoplasty|9017293 +ri|9017445 +rial|9017513 +riant|9017652 +riata|9017682 +rib|9017721 +rib cage|9018016 +rib joint pliers|9018053 +rib roast|9018108 +ribald|9018158 +ribaldry|9018213 +riband|9018314 +ribavirin|9018345 +ribband|9018414 +ribbed|9018445 +ribbed toad|9018514 +ribbed vault|9018632 +ribbing|9018660 +ribbon|9018745 +ribbon development|9019008 +ribbon fern|9019061 +ribbon grass|9019220 +ribbon snake|9019319 +ribbon tree|9019386 +ribbon worm|9019464 +ribbon-leaved water plantain|9018930 +ribbonfish|9019525 +ribbonlike|9019663 +ribbonwood|9019696 +ribbony|9019820 +ribes|9019853 +ribes grossularia|9019898 +ribes nigrum|9019998 +ribes rubrum|9020091 +ribes sanguineum|9020174 +ribes sativum|9020253 +ribes uva-crispa|9020325 +ribgrass|9020424 +ribhus|9020542 +ribier|9020585 +ribless|9020616 +riblike|9020641 +riboflavin|9020665 +ribonuclease|9020809 +ribonucleic acid|9020864 +ribonucleinase|9020902 +ribose|9020957 +ribosome|9021003 +ribwort|9021042 +ricardo|9021160 +rice|9021225 +rice beer|9021589 +rice grass|9021666 +rice paddy|9021797 +rice paper|9021841 +rice rat|9021867 +rice weevil|9021908 +rice-grain fritillary|9021456 +ricebird|9021967 +ricegrass|9022143 +ricer|9022193 +rich|9022224 +rich man|9022722 +rich person|9022797 +richard adolph zsigmondy|9022891 +richard august carl emil erlenmeyer|9022968 +richard brinsley sheridan|9023068 +richard buckminster fuller|9023159 +richard burbage|9023329 +richard burdon haldane|9023421 +richard burton|9023564 +richard coeur de lion|9023748 +richard d'oyly carte|9023896 +richard d. fosbury|9023988 +richard e. byrd|9024069 +richard e. smalley|9024182 +richard errett smalley|9024284 +richard erskine leakey|9024390 +richard evelyn byrd|9024523 +richard feynman|9024640 +richard haldane|9024732 +richard henry lee|9024868 +richard henry tawney|9024947 +richard hooker|9025031 +richard horatio edgar wallace|9025123 +richard i|9025228 +richard ii|9025364 +richard iii|9025433 +richard j. roberts|9025504 +richard john roberts|9025588 +richard jordan gatling|9025674 +richard kuhn|9025767 +richard leakey|9025815 +richard lovelace|9025940 +richard m. nixon|9025997 +richard milhous nixon|9026179 +richard morris hunt|9026366 +richard neville|9026439 +richard nixon|9026550 +richard phillips feynman|9026729 +richard rodgers|9026830 +richard roe|9026888 +richard smalley|9026927 +richard starkey|9027026 +richard strauss|9027103 +richard the lion-hearted|9027161 +richard the lionheart|9027312 +richard trevithick|9027460 +richard upjohn|9027558 +richard von krafft-ebing|9027623 +richard wagner|9027751 +richard wright|9027829 +richards|9027889 +richardson|9027995 +richardson ground squirrel|9028273 +richardson vole|9028404 +richardson's geranium|9028174 +richea|9028494 +richea dracophylla|9028552 +richea pandanifolia|9028638 +richelieu|9028726 +riches|9028894 +richler|9028935 +richly|9028991 +richmond|9029064 +richmondena|9029125 +richmondena cardinalis|9029187 +richness|9029305 +richter scale|9029532 +richweed|9029627 +ricin|9029793 +ricin toxin|9029842 +ricinoleic acid|9029891 +ricinus|9029939 +ricinus communis|9029996 +rick|9030112 +rickenbacker|9030267 +ricketiness|9030361 +rickets|9030417 +rickettsia|9030472 +rickettsiaceae|9030522 +rickettsial|9030599 +rickettsial disease|9030638 +rickettsiales|9030700 +rickettsialpox|9030770 +rickettsias|9030828 +rickettsiosis|9030923 +rickety|9030985 +rickey|9031030 +rickover|9031058 +rickrack|9031136 +ricksha|9031189 +rickshaw|9031231 +rico|9031273 +rico act|9031378 +ricochet|9031487 +ricotta|9031643 +ricrac|9031667 +rictus|9031720 +rid|9031741 +rid of|9031779 +riddance|9031813 +riddle|9031920 +riddle canon|9032247 +riddled|9032322 +ride|9032359 +ride away|9032891 +ride herd|9032942 +ride herd on|9032970 +ride horseback|9033018 +ride off|9033051 +ride out|9033102 +ride roughshod|9033142 +ride the bench|9033199 +rider|9033262 +rider haggard|9033380 +rider plate|9033463 +ridge|9033489 +ridge rope|9033755 +ridge tile|9033784 +ridged|9033822 +ridgel|9033906 +ridgeling|9033953 +ridgepole|9034000 +ridgil|9034039 +ridgling|9034086 +ridicule|9034133 +ridiculer|9034316 +ridiculous|9034371 +ridiculously|9034556 +ridiculousness|9034614 +riding|9034710 +riding bitt|9034843 +riding boot|9034877 +riding breeches|9034903 +riding crop|9034968 +riding habit|9035007 +riding horse|9035035 +riding lamp|9035097 +riding light|9035163 +riding master|9035229 +riding mower|9035271 +riding school|9035317 +ridley|9035347 +riel|9035388 +riemann|9035426 +riemannian|9035515 +riemannian geometry|9035559 +riesling|9035649 +riesman|9035773 +rifadin|9035842 +rifampin|9035931 +rife|9036012 +riff|9036094 +riffian|9036205 +riffle|9036242 +riffraff|9036478 +rifle|9036548 +rifle ball|9036671 +rifle butt|9036703 +rifle grenade|9036737 +rifle range|9036768 +rifle shot|9036825 +riflebird|9036869 +rifled|9036923 +rifleman|9036946 +rifleman bird|9037012 +rifling|9037073 +rift|9037117 +rift valley|9037267 +rift valley fever|9037300 +rig|9037435 +rig out|9037956 +rig up|9038114 +rig-veda|9037921 +riga|9038184 +rigamarole|9038234 +rigatoni|9038350 +rigel|9038391 +rigged|9038456 +rigger|9038524 +rigger brush|9038697 +rigging|9038764 +riggs' disease|9038842 +right|9038954 +right along|9041173 +right angle|9041203 +right ascension|9041259 +right atrioventricular valve|9041397 +right atrium|9041474 +right atrium of the heart|9041571 +right away|9041668 +right bank|9041806 +right brain|9041900 +right coronary artery|9041969 +right field|9042034 +right fielder|9042135 +right gastric artery|9042169 +right gastric vein|9042254 +right hand|9042343 +right hander|9042389 +right hemisphere|9042634 +right of election|9042703 +right of entry|9042742 +right of first publication|9042778 +right of offset|9042869 +right of privacy|9042906 +right of re-entry|9042944 +right of search|9042983 +right of way|9043014 +right on|9043073 +right smart|9043096 +right stage|9043140 +right to an attorney|9043179 +right to confront accusors|9043234 +right to due process|9043295 +right to liberty|9043350 +right to life|9043388 +right to privacy|9043423 +right to speedy and public trial by jury|9043461 +right to the pursuit of happiness|9043536 +right to vote|9043591 +right triangle|9043654 +right ventricle|9043727 +right whale|9043778 +right wing|9043828 +right-angled|9040098 +right-angled triangle|9040127 +right-down|9040200 +right-hand|9040271 +right-hand man|9040338 +right-handed|9040421 +right-handed pitcher|9040540 +right-handedness|9040606 +right-hander|9040665 +right-minded|9040978 +right-side-out|9041014 +right-side-up|9041047 +right-wing|9041079 +right-winger|9041114 +righteous|9043867 +righteousness|9044006 +righteye flounder|9044038 +righteyed flounder|9044093 +rightful|9044148 +rightfully|9044201 +rightfulness|9044226 +righthander|9044271 +rightish|9044371 +rightism|9044395 +rightist|9044461 +rightly|9044544 +rightmost|9044579 +rightness|9044604 +rights issue|9044762 +rights offering|9044815 +rigid|9044868 +rigidification|9045024 +rigidify|9045118 +rigidifying|9045174 +rigidity|9045268 +rigidly|9045345 +rigidness|9045374 +rigil|9045415 +rigil kent|9045493 +rigmarole|9045576 +rigor|9045693 +rigor mortis|9045943 +rigorous|9046054 +rigorously|9046156 +rigorousness|9046184 +rigour|9046280 +rigout|9046528 +rijstafel|9046552 +rijstaffel|9046599 +rijsttaffel|9046646 +riksmal|9046693 +rile|9046750 +riled|9046915 +riley|9047021 +riley b king|9047068 +rilievo|9047179 +rilke|9047250 +rill|9047295 +rim|9047372 +rim blight|9047578 +rima|9047605 +rima glottidis|9047641 +rima oris|9047709 +rima pudendi|9047764 +rima respiratoria|9047879 +rima vestibuli|9047955 +rima vocalis|9048031 +rima vulvae|9048099 +rimactane|9048214 +rimbaud|9048305 +rime|9048379 +rimed|9048546 +rimeless|9048578 +riming|9048623 +rimless|9048687 +rimmed|9048712 +rimose|9048758 +rimski-korsakov|9048780 +rimsky-korsakov|9048918 +rimu|9049056 +rimy|9049135 +rind|9049167 +rinderpest|9049226 +ring|9049275 +ring armor|9050661 +ring armour|9050820 +ring blackbird|9050979 +ring containment|9051050 +ring dance|9051088 +ring disease|9051144 +ring finger|9051198 +ring girl|9051235 +ring lardner|9051299 +ring mail|9051399 +ring of color|9051558 +ring out|9051600 +ring ouzel|9051882 +ring road|9051953 +ring rot|9052006 +ring rot bacteria|9052060 +ring rot fungus|9052124 +ring snake|9052189 +ring thrush|9052324 +ring up|9052395 +ring vaccination|9052434 +ring-a-rosy|9049780 +ring-around-a-rosy|9049846 +ring-around-the-rosy|9049912 +ring-binder|9049978 +ring-necked parakeet|9050054 +ring-necked pheasant|9050159 +ring-necked snake|9050218 +ring-shaped|9050295 +ring-stalked fungus|9050393 +ring-tailed cat|9050463 +ring-tailed lemur|9050601 +ringdove|9052484 +ringed|9052584 +ringed snake|9052741 +ringer|9052812 +ringer solution|9053116 +ringer's solution|9053018 +ringgit|9053212 +ringgold wilmer lardner|9053253 +ringhals|9053364 +ringing|9053449 +ringleader|9053809 +ringlet|9053877 +ringlet butterfly|9054028 +ringleted|9054073 +ringlike|9054098 +ringling|9054131 +ringmaster|9054203 +ringneck snake|9054255 +ringo starr|9054332 +rings|9054405 +ringside|9054762 +ringside seat|9054834 +ringtail|9054906 +ringworm|9055213 +ringworm bush|9055272 +ringworm cassia|9055357 +ringworm shrub|9055442 +rink|9055527 +rinkhals|9055571 +rinse|9055656 +rinse off|9055855 +rinsing|9055893 +rio|9055933 +rio bravo|9055994 +rio de janeiro|9056040 +rio de la plata|9056112 +rio grande|9056182 +rio nunez coffee|9056229 +rioja|9056338 +riot|9056368 +riot act|9056734 +riot control|9056819 +riot control operations|9056873 +riot gun|9056927 +rioter|9056969 +rioting|9057044 +riotous|9057075 +riotously|9057282 +rip|9057331 +rip current|9057760 +rip off|9057804 +rip out|9057854 +rip up|9057881 +rip van winkle|9057934 +rip-off|9057683 +rip-roaring|9057714 +riparia|9058036 +riparia riparia|9058086 +riparian|9058171 +riparian forest|9058193 +riparian right|9058252 +ripcord|9058294 +ripe|9058328 +ripe olive|9058468 +ripen|9058506 +ripened|9058576 +ripeness|9058610 +ripening|9058648 +riposte|9058778 +ripper|9058928 +ripping|9058974 +ripping bar|9059032 +ripping chisel|9059059 +ripple|9059090 +ripple mark|9059393 +ripple-grass|9059275 +rippled|9059420 +rippling|9059499 +ripsaw|9059557 +riptide|9059606 +rira|9059720 +risc|9059881 +rise|9060002 +rise to power|9061162 +rise up|9061206 +risen|9061327 +riser|9061345 +riser main|9061501 +riser pipe|9061572 +riser pipeline|9061643 +risibility|9061714 +risible|9061746 +rising|9061829 +rising prices|9062093 +rising slope|9062143 +rising tide|9062184 +rising trot|9062221 +risk|9062247 +risk arbitrage|9062623 +risk capital|9062676 +risk of exposure|9062738 +risk of infection|9062788 +risk taker|9062839 +risk-free|9062578 +riskiness|9062887 +riskless|9062919 +risklessness|9062964 +risky|9062993 +risky venture|9063107 +risotto|9063202 +risque|9063237 +riss glaciation|9063299 +rissa|9063351 +rissole|9063395 +rit.|9063417 +ritalin|9063474 +ritardando|9063540 +rite|9063597 +rite of passage|9063696 +ritenuto|9063733 +ritonavir|9063790 +rittenhouse|9063838 +ritual|9063922 +ritual dance|9064077 +ritual dancing|9064167 +ritual killing|9064257 +ritualise|9064321 +ritualism|9064370 +ritualist|9064455 +ritualistic|9064541 +ritualize|9064578 +ritually|9064627 +ritz|9064657 +ritzy|9064786 +rival|9064809 +rivalrous|9064951 +rivalry|9065002 +rive|9065055 +river|9065131 +river acheron|9065165 +river adige|9065216 +river aire|9065261 +river arno|9065314 +river avon|9065367 +river basin|9065466 +river birch|9065565 +river blindness|9065638 +river boat|9065690 +river bottom|9065715 +river boulder|9065757 +river cam|9065796 +river cocytus|9065845 +river cooter|9065896 +river dolphin|9065951 +river gum|9065982 +river horse|9066096 +river kasai|9066209 +river lethe|9066266 +river limpet|9066311 +river otter|9066390 +river pear|9066434 +river prawn|9066480 +river red gum|9066564 +river severn|9066678 +river shad|9066739 +river styx|9066783 +river thames|9066825 +river trent|9066886 +river tyne|9066943 +rivera|9066996 +riverbank|9067041 +riverbed|9067075 +riverside|9067117 +rivet|9067197 +rivet line|9067392 +riveter|9067417 +riveting|9067514 +riveting machine|9067586 +rivetter|9067637 +riviera|9067733 +rivina|9067830 +rivina humilis|9067892 +rivulet|9067988 +rivulus|9068050 +riyadh|9068077 +riyal|9068141 +riyal-omani|9068245 +rn|9068302 +rna|9068426 +rnase|9068468 +ro|9068529 +roach|9068564 +roach clip|9068761 +roach holder|9068842 +road|9068923 +road agent|9069036 +road builder|9069110 +road construction|9069152 +road game|9069201 +road gang|9069235 +road hog|9069275 +road map|9069389 +road mender|9069501 +road metal|9069565 +road rage|9069596 +road roller|9069630 +road runner|9069671 +road sense|9069811 +road show|9069893 +road surface|9069917 +road test|9069953 +road to damascus|9070000 +roadbed|9070076 +roadblock|9070097 +roadbook|9070170 +roadhog|9070204 +roadhouse|9070237 +roadless|9070282 +roadman|9070372 +roadrunner|9070585 +roads|9070651 +roadside|9070754 +roadstead|9070792 +roadster|9070844 +roadway|9070954 +roadworthiness|9070982 +roadworthy|9071017 +roald amundsen|9071042 +roald hoffmann|9071110 +roam|9071166 +roamer|9071271 +roan|9071337 +roanoke|9071420 +roar|9071474 +roar off|9071906 +roarer|9071987 +roaring|9072066 +roast|9072347 +roast beef|9072532 +roast beef plant|9072575 +roast lamb|9072705 +roast pork|9072748 +roast veal|9072791 +roasted|9072834 +roaster|9072864 +roasting|9072954 +rob|9073000 +rob roy|9073104 +robaxin|9073220 +robber|9073275 +robber fly|9073305 +robber frog|9073390 +robbery|9073551 +robbery conviction|9073653 +robbery suspect|9073737 +robbins|9073770 +robe|9073824 +robe-de-chambre|9073966 +robed|9074024 +robert|9074108 +robert a. heinlein|9074303 +robert abram bartlett|9074395 +robert adam|9074505 +robert alexander schumann|9074562 +robert andrews millikan|9074657 +robert anson heinlein|9074733 +robert barany|9074828 +robert bartlett|9074907 +robert benchley|9075011 +robert boyle|9075118 +robert brown|9075167 +robert browning|9075245 +robert bruce mathias|9075300 +robert bunsen|9075384 +robert burns|9075458 +robert burns woodward|9075504 +robert charles benchley|9075574 +robert charles venturi|9075689 +robert clive|9075786 +robert curl|9075915 +robert de niro|9075998 +robert e lee day|9076371 +robert e lee's birthday|9076267 +robert e. lee|9076088 +robert e. peary|9076168 +robert edward lee|9076468 +robert edwin peary|9076552 +robert emmet sherwood|9076654 +robert f. curl|9076737 +robert falcon scott|9076823 +robert floyd curl jr.|9076911 +robert frost|9077004 +robert fulton|9077067 +robert graves|9077141 +robert gray|9077219 +robert herrick|9077267 +robert hooke|9077319 +robert hutchings goddard|9077385 +robert i|9077462 +robert james fischer|9077530 +robert jemison van de graaff|9077616 +robert joffrey|9077728 +robert king merton|9077789 +robert koch|9077869 +robert lee frost|9077922 +robert louis balfour stevenson|9077989 +robert louis stevenson|9078107 +robert lowell|9078217 +robert m. yerkes|9078298 +robert macgregor|9078382 +robert maynard hutchins|9078482 +robert mearns yerkes|9078567 +robert merton|9078655 +robert mills|9078730 +robert mitchum|9078790 +robert morris|9078880 +robert motherwell|9078973 +robert nesta marley|9079037 +robert oppenheimer|9079140 +robert orr|9079217 +robert owen|9079294 +robert peary|9079384 +robert peel|9079480 +robert penn warren|9079575 +robert r. livingston|9079648 +robert ranke graves|9079740 +robert redford|9079824 +robert robinson|9079984 +robert schumann|9080062 +robert scott|9080147 +robert southey|9080228 +robert the bruce|9080280 +robert traill spence lowell jr.|9080356 +robert treat paine|9080455 +robert tyre jones|9080538 +robert van de graaff|9080629 +robert venturi|9080733 +robert walpole|9080822 +robert wilhelm bunsen|9080941 +robert william service|9081023 +robert woodrow wilson|9081100 +robert's rules of order|9074183 +roberto francesco romolo bellarmine|9081170 +roberts|9081348 +robertson|9081674 +robeson|9081748 +robespierre|9081905 +robin|9082027 +robin goodfellow|9082213 +robin hood|9082287 +robin redbreast|9082369 +robin's plantain|9082158 +robinia|9082452 +robinia hispida|9082509 +robinia pseudoacacia|9082600 +robinia viscosa|9082697 +robinson|9082771 +robinson crusoe|9083305 +robinson jeffers|9083397 +robitussin|9083475 +roble|9083531 +roble beech|9083657 +robolo|9083728 +robot|9083776 +robot bomb|9083817 +robot pilot|9083888 +robotic telesurgery|9083942 +robotics|9083984 +robotics equipment|9084029 +robotlike|9084067 +robust|9084133 +robusta coffee|9084435 +robustious|9084527 +robustness|9084601 +roc|9084650 +rocambole|9084698 +roccella|9084793 +roccella tinctoria|9084837 +roccellaceae|9084900 +rocco marciano|9084969 +roccus|9085055 +roccus saxatilis|9085102 +rocephin|9085184 +rochambeau|9085245 +rochelle powder|9085350 +rochelle salt|9085460 +rochelle salts|9085524 +rochester|9085637 +rochon prism|9085717 +rock|9085783 +rock and roll|9086635 +rock band|9086829 +rock barnacle|9086891 +rock bass|9086976 +rock beauty|9087108 +rock bit|9087165 +rock bottom|9087217 +rock brake|9087245 +rock cake|9087376 +rock candy|9087400 +rock climber|9087444 +rock climbing|9087483 +rock concert|9087534 +rock cornish|9087564 +rock cornish hen|9087626 +rock crab|9087677 +rock cress|9087718 +rock crystal|9087853 +rock dove|9087901 +rock drill|9087953 +rock elm|9088006 +rock fever|9088121 +rock garden|9088246 +rock geranium|9088282 +rock group|9088343 +rock gunnel|9088405 +rock harlequin|9088478 +rock hind|9088587 +rock hopper|9088636 +rock hyrax|9088681 +rock island|9088759 +rock kangaroo|9088797 +rock lobster|9088856 +rock maple|9088991 +rock music|9089044 +rock of gibraltar|9089157 +rock oil|9089265 +rock opera|9089336 +rock outcrop|9089370 +rock partridge|9089423 +rock penstemon|9089490 +rock pigeon|9089572 +rock pink|9089624 +rock plant|9089719 +rock polypody|9089762 +rock purslane|9089845 +rock python|9089890 +rock rabbit|9089942 +rock rattlesnake|9090079 +rock rose|9090142 +rock salmon|9090308 +rock salt|9090334 +rock sandwort|9090396 +rock sea bass|9090445 +rock snake|9090515 +rock spikemoss|9090567 +rock springs|9090665 +rock squirrel|9090705 +rock star|9090783 +rock sunfish|9090868 +rock wallaby|9090942 +rock wool|9091001 +rock wren|9091067 +rock'n'roll|9086168 +rock-and-roll|9086281 +rock-bottom|9086475 +rock-ribbed|9086508 +rock-steady|9086583 +rockabilly|9091168 +rockbound|9091222 +rockchuck|9091270 +rockcress|9091336 +rockefeller|9091461 +rocker|9091577 +rocker arm|9091798 +rockers|9091837 +rockery|9092139 +rocket|9092175 +rocket base|9092536 +rocket cress|9092581 +rocket engine|9092670 +rocket engineer|9092711 +rocket firing|9092793 +rocket fuel|9092850 +rocket larkspur|9092977 +rocket launcher|9093045 +rocket launching|9093088 +rocket propellant|9093145 +rocket propellent|9093272 +rocket propulsion|9093399 +rocket range|9093446 +rocket salad|9093494 +rocket scientist|9093612 +rocket-propelled|9092491 +rocketry|9093709 +rockfish|9093786 +rockfoil|9093907 +rockford|9093968 +rockies|9094024 +rocking chair|9094145 +rocking horse|9094181 +rockingham|9094235 +rockingham podocarp|9094352 +rocklike|9094454 +rockrose|9094504 +rockrose family|9094590 +rockslide|9094665 +rockweed|9094703 +rockwell|9094733 +rockwell kent|9094788 +rocky|9094838 +rocky marciano|9095019 +rocky mountain|9095105 +rocky mountain bee plant|9095223 +rocky mountain bighorn|9095335 +rocky mountain bristlecone pine|9095473 +rocky mountain dogbane|9095603 +rocky mountain goat|9095683 +rocky mountain jay|9095780 +rocky mountain national park|9095926 +rocky mountain pinon|9096007 +rocky mountain sheep|9096080 +rocky mountain spotted fever|9096216 +rocky mountain whitefish|9096323 +rocky mountains|9096415 +rocky mountains cherry|9096544 +rocky-mountain maple|9094937 +rococo|9096653 +rocroi|9096703 +rod|9096758 +rod cell|9097061 +rod laver|9097107 +rod-shaped|9096969 +rodent|9097176 +rodentia|9097268 +rodeo|9097323 +rodeo rider|9097360 +rodgers|9097416 +rodhos|9097466 +rodin|9097510 +rodlike|9097613 +rodney george laver|9097649 +rodolia|9097728 +rodolia cardinalis|9097797 +rodomontade|9097908 +rodrigo borgia|9098001 +rodya raskolnikov|9098168 +roe|9098276 +roe deer|9098341 +roebling|9098391 +roebuck|9098495 +roentgen|9098541 +roentgen ray|9098661 +roentgenogram|9098792 +roentgenographic|9098904 +roentgenography|9098983 +roentgenoscope|9099080 +rofecoxib|9099130 +rogaine|9099171 +rogation|9099239 +rogation day|9099281 +roger bacon|9099335 +roger bannister|9099413 +roger brooke taney|9099508 +roger de mortimer|9099587 +roger eliot fry|9099661 +roger fry|9099735 +roger huntington sessions|9099803 +roger sessions|9099897 +roger sherman|9099980 +roger taney|9100055 +roger williams|9100127 +rogers|9100228 +roget|9100426 +rogue|9100499 +rogue elephant|9100715 +rogue nation|9100748 +rogue state|9100861 +rogue's gallery|9100583 +roguery|9100974 +roguish|9101125 +roguishness|9101232 +rohypnol|9101449 +roil|9101500 +roiled|9101601 +roiling|9101756 +roily|9101814 +roister|9101872 +roisterer|9101978 +rolaids|9102025 +roland de lassus|9102103 +rolando's area|9102178 +rolando's fissure|9102299 +role|9102402 +role model|9102600 +role player|9102633 +roleplay|9102841 +roleplaying|9102884 +rolf|9102942 +roll|9103004 +roll around|9104305 +roll call|9104406 +roll down|9104448 +roll film|9104508 +roll in|9104550 +roll in the hay|9104574 +roll of tobacco|9105039 +roll off|9105084 +roll out|9105151 +roll over|9105219 +roll up|9105305 +roll-on|9104194 +roll-on roll-off|9104258 +rollback|9105576 +rolled|9105677 +rolled biscuit|9105823 +rolled into one|9105855 +rolled oats|9105889 +rolled out|9105923 +rolled-up|9105790 +roller|9105961 +roller bandage|9106240 +roller bearing|9106278 +roller bit|9106338 +roller blade|9106390 +roller blind|9106445 +roller coaster|9106480 +roller skate|9106634 +roller skating|9106675 +roller towel|9106707 +roller-skater|9106210 +rollick|9106735 +rollicking|9106838 +rollickingly|9106903 +rolling|9106937 +rolling hitch|9107185 +rolling mill|9107214 +rolling paper|9107284 +rolling pin|9107343 +rolling stock|9107380 +rolling wave|9107419 +rollmops|9107471 +rollo|9107519 +rollover|9107582 +roly-poly|9107607 +roly-poly pudding|9107706 +rolypoliness|9107751 +rom|9107825 +roma|9107958 +romaic|9108230 +romaine|9108322 +romaine lettuce|9108379 +roman|9108489 +roman a clef|9108787 +roman alphabet|9108815 +roman arch|9108878 +roman architecture|9108938 +roman building|9109033 +roman calendar|9109099 +roman candle|9109153 +roman catholic|9109209 +roman catholic church|9109466 +roman catholic pope|9109593 +roman catholicism|9109738 +roman church|9109816 +roman collar|9109934 +roman coriander|9110012 +roman deity|9110104 +roman emperor|9110165 +roman empire|9110226 +roman fleuve|9110268 +roman hyacinth|9110296 +roman jakobson|9110374 +roman law|9110477 +roman legion|9110553 +roman letters|9110600 +roman mile|9110670 +roman mythology|9110718 +roman nettle|9110779 +roman nose|9110839 +roman numeral|9110900 +roman osipovich jakobson|9110952 +roman pace|9111065 +roman print|9111108 +roman republic|9111178 +roman type|9111226 +roman wormwood|9111296 +romanal|9111467 +romance|9111512 +romance language|9111837 +romanesque|9111912 +romanesque architecture|9112030 +romani|9112161 +romania|9112200 +romanian|9112284 +romanian monetary unit|9112473 +romanise|9112542 +romanism|9112621 +romanist|9112690 +romanize|9112807 +romanoff|9112886 +romanov|9112973 +romans|9113059 +romansh|9113262 +romantic|9113377 +romantic realism|9113626 +romanticisation|9113703 +romanticise|9113822 +romanticism|9113933 +romanticist|9114065 +romanticistic|9114294 +romanticization|9114409 +romanticize|9114528 +romany|9114660 +romberg|9114806 +rome|9114856 +rome beauty|9114974 +romeo|9115021 +romish|9115048 +rommany|9115156 +rommel|9115224 +romneya|9115285 +romneya coulteri|9115346 +romp|9115445 +romper|9115753 +romper suit|9115857 +rompers|9115901 +romulus|9116046 +ron|9116086 +ronald george wreyford norrish|9116128 +ronald reagan|9116215 +ronald wilson reagan|9116378 +rondeau|9116548 +rondel|9116631 +rondelet|9116671 +rondo|9116704 +roneo|9116757 +roneograph|9116865 +rontgen|9116956 +rood|9117047 +rood screen|9117125 +rood-tree|9117086 +roof|9117153 +roof garden|9117283 +roof mushroom|9117311 +roof of the mouth|9117369 +roof peak|9117411 +roof rack|9117452 +roof rat|9117492 +roofed|9117538 +roofer|9117561 +roofing|9117616 +roofing material|9117661 +roofing paper|9117705 +roofing tile|9117761 +roofless|9117805 +rooftop|9117873 +rooftree|9117921 +roofy|9117960 +rooibos|9118056 +rook|9118131 +rookery|9118314 +rookie|9118347 +room|9118412 +room access|9118615 +room clerk|9118702 +room decorator|9118762 +room light|9118893 +room rate|9118932 +room temperature|9118972 +roomer|9119010 +roomette|9119055 +roomful|9119085 +roomily|9119115 +roominess|9119142 +rooming house|9119221 +roommate|9119278 +rooms|9119303 +roomy|9119473 +roosevelt|9119519 +rooseveltian|9120002 +roost|9120117 +rooster|9120237 +root|9120281 +root beer|9120915 +root beer float|9120945 +root canal|9121007 +root cap|9121046 +root celery|9121076 +root cellar|9121199 +root climber|9121271 +root crop|9121301 +root hair|9121333 +root out|9121364 +root rot|9121424 +root system|9121456 +root vegetable|9121499 +root word|9121540 +rootage|9121624 +rootbound|9121752 +rooted|9121803 +rooter skunk|9121857 +rooting|9121969 +rooting reflex|9122045 +rootle|9122167 +rootless|9122222 +rootlet|9122259 +rootlike|9122281 +roots|9122309 +rootstalk|9122763 +rootstock|9122811 +rope|9122872 +rope bridge|9123245 +rope burn|9123278 +rope down|9123333 +rope in|9123397 +rope ladder|9123474 +rope off|9123502 +rope tow|9123563 +rope up|9123603 +rope yard|9123638 +rope yarn|9123681 +rope-a-dope|9123041 +rope-maker|9123089 +ropebark|9123707 +ropedancer|9123792 +ropemaker|9123833 +roper|9123908 +ropewalk|9124078 +ropewalker|9124121 +ropeway|9124162 +ropey|9124242 +rophy|9124305 +ropiness|9124401 +roping|9124504 +ropy|9124538 +roquefort|9124602 +roquefort dressing|9124648 +roquette|9124740 +roridula|9124858 +roridulaceae|9124894 +rorippa|9124982 +rorippa amphibia|9125043 +rorippa islandica|9125136 +rorippa nasturtium-aquaticum|9125222 +rorqual|9125340 +rorschach|9125396 +rorschach test|9125508 +rosa|9125625 +rosa banksia|9125673 +rosa canina|9125726 +rosa chinensis|9125773 +rosa damascena|9125840 +rosa eglanteria|9125915 +rosa laevigata|9126005 +rosa moschata|9126063 +rosa multiflora|9126115 +rosa odorata|9126212 +rosa parks|9126261 +rosa pendulina|9126360 +rosa spithamaea|9126418 +rosacea|9126476 +rosaceae|9126511 +rosaceous|9126585 +rosales|9126652 +rosary|9126703 +rose|9126754 +rose acacia|9127295 +rose apple|9127370 +rose bay|9127460 +rose bed|9127567 +rose beetle|9127634 +rose bug|9127722 +rose campion|9127797 +rose chafer|9127899 +rose chestnut|9128048 +rose family|9128112 +rose garden|9128177 +rose geranium|9128205 +rose globe lily|9128283 +rose gum|9128353 +rose hip|9128400 +rose leek|9128517 +rose louise hovick|9128596 +rose mallow|9128743 +rose moss|9128885 +rose of china|9128946 +rose of jericho|9129070 +rose of sharon|9129287 +rose oil|9129353 +rose periwinkle|9129409 +rose pink|9129577 +rose quartz|9129655 +rose water|9129683 +rose window|9129719 +rose wine|9129755 +rose-apple tree|9126874 +rose-cheeked|9126944 +rose-colored|9127000 +rose-colored pastor|9127038 +rose-colored starling|9127127 +rose-red|9127216 +rose-root|9127244 +roseate|9129810 +roseate spoonbill|9129852 +roseau|9129901 +rosebay|9129941 +rosebay willowherb|9129991 +rosebud|9130087 +rosebud cherry|9130160 +rosebud orchid|9130244 +rosefish|9130323 +rosehip|9130417 +roselle|9130453 +rosellinia|9130540 +rosemaling|9130601 +rosemary|9130655 +roseola|9130730 +roseola infantilis|9130785 +roseola infantum|9130870 +rosetta stone|9130955 +rosette|9131014 +rosewood|9131160 +rosewood tree|9131209 +rosh chodesh|9131246 +rosh hashana|9131309 +rosh hashanah|9131447 +rosh hashona|9131586 +rosh hashonah|9131724 +rosh hodesh|9131863 +rosicrucianism|9131925 +rosid dicot family|9132004 +rosid dicot genus|9132065 +rosidae|9132123 +rosilla|9132171 +rosin|9132218 +rosin bag|9132267 +rosiness|9132309 +rosinweed|9132420 +rosita|9132543 +rosmarinus|9132589 +rosmarinus officinalis|9132657 +ross|9132743 +ross sea|9133118 +rossbach|9133149 +rossetti|9133210 +rossini|9133275 +rostand|9133337 +roster|9133403 +rostock|9133437 +rostov|9133491 +rostov na donu|9133577 +rostov on don|9133671 +rostrate|9133764 +rostrum|9133789 +roswell|9133887 +rosy|9133917 +rosy boa|9134122 +rosy-cheeked|9134066 +rot|9134165 +rota|9134388 +rotarian|9134452 +rotary|9134486 +rotary actuator|9134662 +rotary club|9134707 +rotary converter|9134774 +rotary engine|9134850 +rotary international|9134956 +rotary joint|9135032 +rotary motion|9135154 +rotary press|9135216 +rotary wing|9135259 +rotatable|9135333 +rotate|9135359 +rotated|9135502 +rotating mechanism|9135535 +rotating shaft|9135573 +rotation|9135607 +rotational|9135821 +rotational latency|9135870 +rotational nystagmus|9135929 +rotator cuff|9135969 +rotatory|9136072 +rotatory joint|9136102 +rotavirus|9136224 +rotc|9136252 +rote|9136309 +rote learning|9136383 +rotenone|9136457 +rotgut|9136501 +roth|9136565 +rothko|9136629 +rothschild|9136672 +rotifer|9136710 +rotifera|9136740 +rotisserie|9136790 +rotl|9136859 +rotogravure|9136892 +rotor|9136977 +rotor blade|9137049 +rotor coil|9137123 +rotor head|9137158 +rotor shaft|9137212 +rotted|9137266 +rotten|9137305 +rotten borough|9137535 +rottenly|9137567 +rottenness|9137634 +rottenstone|9137761 +rotter|9137800 +rotterdam|9137937 +rotting|9137995 +rottweiler|9138049 +rotund|9138112 +rotunda|9138209 +rotundity|9138255 +rotundly|9138332 +rouble|9138360 +roue|9138404 +rouge|9138472 +rouge et noir|9138541 +rouge plant|9138599 +rougeberry|9138680 +rouged|9138761 +rough|9138785 +rough bindweed|9140765 +rough bristlegrass|9140816 +rough cut|9140941 +rough drawing|9141072 +rough fish|9141114 +rough green snake|9141139 +rough horsetail|9141209 +rough in|9141322 +rough out|9141364 +rough pea|9141406 +rough rider|9141492 +rough sledding|9141598 +rough up|9141643 +rough water|9141684 +rough-and-ready|9140074 +rough-and-tumble|9140131 +rough-cut|9140261 +rough-dry|9140347 +rough-hew|9140378 +rough-house|9140419 +rough-leaved aster|9140459 +rough-legged hawk|9140493 +rough-sand|9140548 +rough-skinned newt|9140583 +rough-spoken|9140642 +rough-stemmed goldenrod|9140674 +rough-textured|9140717 +roughage|9141737 +roughcast|9141778 +roughdried|9141918 +roughen|9141956 +roughened|9141988 +roughhewn|9142038 +roughish|9142078 +roughleg|9142111 +roughly|9142166 +roughneck|9142277 +roughness|9142385 +roughrider|9142630 +roughshod|9142686 +roughtail stingray|9142815 +roulade|9142871 +rouleau|9142956 +roulette|9142990 +roulette ball|9143104 +roulette wheel|9143132 +roumania|9143177 +roumanian|9143262 +round|9143350 +round angle|9145645 +round arch|9145680 +round bone|9145705 +round clam|9145733 +round dance|9145871 +round dancing|9145980 +round down|9146047 +round file|9146113 +round hand|9146138 +round kumquat|9146203 +round ligament of the uterus|9146297 +round of drinks|9146367 +round of golf|9146422 +round off|9146466 +round out|9146618 +round robin|9146775 +round scad|9146837 +round shape|9146902 +round shot|9146934 +round steak|9146996 +round table|9147027 +round the bend|9147242 +round the clock|9147423 +round top|9147477 +round trip|9147547 +round up|9147572 +round whitefish|9147626 +round window|9147704 +round-arm|9144591 +round-backed|9144638 +round-bottom|9144718 +round-bottom flask|9144764 +round-bottomed|9144798 +round-eyed|9144844 +round-faced|9144915 +round-headed leek|9144953 +round-leaved rein orchid|9145020 +round-shouldered|9145099 +round-spored gyromitra|9145179 +round-table conference|9145244 +round-tailed muskrat|9145327 +round-the-clock|9145420 +round-the-clock patrol|9145509 +round-trip light time|9145548 +round-trip ticket|9145597 +roundabout|9147794 +roundabout way|9147970 +rounded|9148012 +roundedness|9148780 +roundel|9148832 +roundelay|9148999 +rounder|9149023 +rounders|9149083 +roundhead|9149195 +roundheaded|9149338 +roundhouse|9149427 +rounding|9149474 +rounding error|9149549 +roundish|9149624 +roundly|9149657 +roundness|9149708 +roundsman|9149773 +roundtable|9149827 +roundup|9149910 +roundworm|9149991 +rous|9150085 +rouse|9150162 +rouser|9150386 +rousing|9150442 +rousseau|9150530 +rousseauan|9150665 +roustabout|9150721 +rout|9150813 +rout out|9151085 +rout up|9151222 +route|9151260 +routemarch|9151378 +router|9151413 +router plane|9151491 +routine|9151555 +routinely|9151842 +roux|9151871 +rove|9151917 +rove beetle|9152100 +rover|9152128 +roving|9152219 +row|9152323 +row house|9152616 +row of bricks|9152652 +rowan|9152686 +rowan tree|9152764 +rowanberry|9152842 +rowboat|9152868 +rowdily|9152908 +rowdiness|9152934 +rowdy|9152996 +rowdyism|9153130 +rowel|9153192 +rower|9153213 +rowing|9153260 +rowing boat|9153296 +rowing club|9153337 +rowlock|9153394 +rowlock arch|9153449 +roy chapman andrews|9153476 +roy lichtenstein|9153562 +roy orbison|9153626 +roy wilkins|9153712 +royal|9153815 +royal academy|9154011 +royal academy of arts|9154095 +royal agaric|9154187 +royal air force|9154249 +royal blue|9154313 +royal brace|9154361 +royal canadian mounted police|9154388 +royal casino|9154545 +royal charter|9154582 +royal court|9154613 +royal family|9154715 +royal fern|9154774 +royal flush|9154881 +royal house|9154913 +royal jelly|9154972 +royal line|9155003 +royal mast|9155062 +royal national eisteddfod|9155090 +royal osmund|9155162 +royal palm|9155269 +royal poinciana|9155320 +royal purple|9155446 +royal road|9155511 +royal society|9155536 +royal society of london for improving natual knowledge|9155653 +royal stag|9155811 +royal tennis|9155842 +royal velvet plant|9155908 +royalism|9155998 +royalist|9156046 +royally|9156097 +royalty|9156137 +roystonea|9156211 +roystonea oleracea|9156286 +roystonea regia|9156361 +rozelle|9156428 +rpa-abb|9156515 +rpm|9156671 +rtlt|9156716 +ru|9156770 +ru 486|9156835 +ruanda|9156933 +ruandan|9157012 +rub|9157075 +rub along|9157338 +rub down|9157472 +rub off|9157571 +rub out|9157638 +rub up|9157701 +rub-a-dub|9157295 +rubato|9157732 +rubber|9157761 +rubber band|9158267 +rubber boa|9158329 +rubber boot|9158385 +rubber bullet|9158420 +rubber cement|9158455 +rubber eraser|9158505 +rubber plant|9158556 +rubber stamp|9158669 +rubber tire|9158759 +rubber-base paint|9158145 +rubber-necking|9158207 +rubberise|9158825 +rubberised|9158874 +rubberize|9158952 +rubberized|9159001 +rubberlike|9159079 +rubberneck|9159115 +rubberstamp|9159254 +rubbery|9159306 +rubbing|9159377 +rubbing alcohol|9159505 +rubbish|9159549 +rubbish dump|9159760 +rubbish heap|9159856 +rubbishy|9160027 +rubble|9160062 +rubdown|9160124 +rube|9160149 +rube goldberg|9160213 +rubefacient|9160293 +rubel|9160360 +rubella|9160400 +rubella panencephalitis|9160492 +rubens|9160541 +rubeola|9160615 +rubia|9160678 +rubia cordifolia|9160731 +rubia tinctorum|9160824 +rubiaceae|9160900 +rubiaceous plant|9160981 +rubiales|9161045 +rubicelle|9161099 +rubicon|9161142 +rubicund|9161263 +rubidium|9161304 +rubidium-strontium dating|9161365 +rubify|9161425 +rubin test|9161448 +rubinstein|9161512 +ruble|9161717 +rubor|9161794 +rubric|9161838 +rubricate|9162041 +rubus|9162150 +rubus australis|9162201 +rubus caesius|9162306 +rubus canadensis|9162403 +rubus chamaemorus|9162506 +rubus cissoides|9162642 +rubus cuneifolius|9162747 +rubus flagellaris|9162835 +rubus fruticosus|9162958 +rubus hispidus|9163044 +rubus idaeus|9163157 +rubus idaeus strigosus|9163250 +rubus loganobaccus|9163354 +rubus occidentalis|9163489 +rubus odoratus|9163618 +rubus parviflorus|9163742 +rubus phoenicolasius|9163850 +rubus saxatilis|9163936 +rubus spectabilis|9164004 +rubus strigosus|9164086 +rubus trivialis|9164183 +rubus ursinus|9164284 +rubus ursinus loganobaccus|9164384 +ruby|9164527 +ruby spinel|9165004 +ruby wood|9165044 +ruby-crowned kinglet|9164746 +ruby-crowned wren|9164820 +ruby-red|9164894 +ruck|9165083 +ruck up|9165261 +ruckle|9165345 +rucksack|9165444 +ruckus|9165513 +ruction|9165577 +rudaceous rock|9165641 +rudapithecus|9165682 +rudbeckia|9165755 +rudbeckia hirta|9165820 +rudbeckia laciniata|9165908 +rudbeckia laciniata hortensia|9165989 +rudbeckia serotina|9166133 +rudd|9166224 +rudder|9166289 +rudder blade|9166388 +rudderfish|9166421 +rudderless|9166527 +rudderpost|9166615 +rudderstock|9166652 +ruddiness|9166689 +ruddle|9166751 +ruddles|9166835 +ruddy|9166966 +ruddy duck|9167109 +ruddy turnstone|9167153 +rude|9167207 +rudely|9167404 +rudeness|9167465 +rudiment|9167604 +rudimentary|9167760 +rudiments|9167868 +rudolf bultmann|9168062 +rudolf christian karl diesel|9168179 +rudolf diesel|9168307 +rudolf hess|9168420 +rudolf karl bultmann|9168503 +rudolf karl virchow|9168625 +rudolf ludwig mossbauer|9168723 +rudolf nureyev|9168808 +rudolf serkin|9168882 +rudolf virchow|9168947 +rudolf wurlitzer|9169040 +rudolph laban|9169120 +rudra|9169177 +rudyard kipling|9169210 +rue|9169296 +rue anemone|9169476 +rue family|9169529 +rueful|9169593 +ruefully|9169652 +ruefulness|9169693 +ruf|9169751 +ruff|9169869 +ruffed grouse|9170006 +ruffian|9170062 +ruffianism|9170170 +ruffianly|9170223 +ruffle|9170256 +ruffle up|9170765 +ruffled|9170817 +rufous rubber cup|9170891 +rug|9170952 +rug beater|9171021 +rug merchant|9171062 +rug pad|9171106 +ruga|9171160 +rugby|9171185 +rugby ball|9171245 +rugby football|9171270 +rugel's plantain|9171330 +rugelach|9171404 +rugged|9171447 +rugged individualism|9171626 +ruggedisation|9171670 +ruggedise|9171718 +ruggedization|9171774 +ruggedize|9171822 +ruggedness|9171878 +ruggelach|9171927 +rugger|9171970 +rugose|9172030 +rugulah|9172061 +ruholla khomeini|9172104 +ruhr|9172219 +ruhr river|9172351 +ruhr valley|9172393 +ruin|9172503 +ruination|9173008 +ruined|9173193 +ruiner|9173371 +ruining|9173431 +ruinous|9173509 +rule|9173575 +rule book|9174455 +rule in|9174526 +rule of cy pres|9174564 +rule of evidence|9174630 +rule of grammar|9174671 +rule of law|9174734 +rule of morphology|9174761 +rule of thumb|9174829 +rule out|9174888 +rule-governed|9174409 +ruled|9175001 +ruler|9175028 +rulership|9175153 +rules of order|9175227 +ruling|9175314 +ruling class|9175408 +ruly|9175454 +rum|9175473 +rum baba|9175793 +rum cherry|9175829 +rum cocktail|9175925 +rum nose|9175965 +rum sling|9176099 +rum-blossom|9175659 +rumania|9176124 +rumanian|9176208 +rumansh|9176397 +rumba|9176512 +rumble|9176647 +rumble seat|9176828 +rumbling|9176854 +rumbustious|9176925 +rumen|9176999 +rumex|9177058 +rumex acetosa|9177122 +rumex acetosella|9177206 +rumex obtusifolius|9177300 +rumex scutatus|9177412 +ruminant|9177502 +ruminantia|9177599 +ruminate|9177663 +rumination|9177815 +ruminative|9178012 +ruminator|9178120 +rummage|9178169 +rummage sale|9178287 +rummer|9178352 +rummy|9178389 +rumohra|9178558 +rumohra adiantiformis|9178608 +rumor|9178735 +rumored|9178833 +rumormonger|9178859 +rumour|9178946 +rumourmonger|9179043 +rump|9179130 +rump roast|9179403 +rump steak|9179435 +rumpelstiltskin|9179465 +rumple|9179557 +rumpled|9179749 +rumpus|9179846 +rumpus room|9179940 +rumrunner|9180005 +run|9180078 +run a risk|9183001 +run across|9183113 +run afoul|9183173 +run aground|9183279 +run along|9183423 +run around|9183451 +run away|9183554 +run bases|9183741 +run batted in|9183764 +run by|9183801 +run down|9183862 +run dry|9184258 +run for|9184295 +run into|9184328 +run low|9184498 +run off|9184560 +run on|9184909 +run out|9184991 +run over|9185361 +run roughshod|9185459 +run short|9185516 +run through|9185578 +run up|9185704 +run-down|9182213 +run-in|9182310 +run-of-the-mill|9182409 +run-of-the-mine|9182482 +run-on|9182555 +run-on sentence|9182578 +run-resistant|9182612 +run-through|9182680 +run-time|9182719 +run-time error|9182768 +run-up|9182854 +runabout|9185922 +runaway|9185997 +runaway robin|9186157 +runch|9186274 +runcible spoon|9186355 +runcinate|9186385 +runcinate leaf|9186410 +rundle|9186455 +rundown|9186493 +rundstedt|9186539 +rune|9186627 +rung|9186688 +runic|9186756 +runic letter|9186804 +runnel|9186865 +runner|9186927 +runner bean|9187393 +runner-up|9187259 +runner-up finish|9187340 +runniness|9187602 +running|9187670 +running away|9188075 +running back|9188122 +running blackberry|9188149 +running board|9188227 +running game|9188260 +running hand|9188321 +running head|9188399 +running headline|9188458 +running light|9188517 +running mate|9188569 +running noose|9188620 +running pine|9188665 +running play|9188735 +running pop|9188796 +running postman|9188901 +running shoe|9188970 +running start|9188997 +running stitch|9189072 +running suit|9189103 +running time|9189161 +running title|9189217 +runny|9189270 +runoff|9189298 +runproof|9189362 +runt|9189430 +runtime error|9189481 +runtiness|9189567 +runty|9189628 +runup|9189715 +runway|9189746 +runyon|9189792 +rupee|9189862 +rupert|9190147 +rupert brooke|9190191 +rupert murdoch|9190240 +rupestral|9190318 +rupestral plant|9190362 +rupestrine plant|9190449 +rupiah|9190536 +rupicapra|9190577 +rupicapra rupicapra|9190635 +rupicola|9190706 +rupicola peruviana|9190759 +rupicola rupicola|9190841 +rupicolous|9190921 +rupicolous plant|9190965 +ruptiliocarpon|9191052 +ruptiliocarpon caracolito|9191130 +rupture|9191207 +ruptured|9191408 +ruptured intervertebral disc|9191447 +rupturewort|9191521 +rural|9191583 +rural area|9191871 +ruralism|9191971 +ruralist|9192095 +rurality|9192151 +ruritania|9192199 +ruritanian|9192259 +rus|9192389 +ruscaceae|9192485 +ruscus|9192553 +ruscus aculeatus|9192610 +ruse|9192680 +rush|9192759 +rush along|9193672 +rush aster|9193803 +rush away|9193829 +rush candle|9193880 +rush family|9193934 +rush grass|9194014 +rush hour|9194132 +rush nut|9194168 +rush off|9194260 +rush out|9194311 +rush rose|9194367 +rush-grass|9193554 +rushdie|9194439 +rushed|9194514 +rusher|9194543 +rushing|9194656 +rushlight|9194761 +rushlike|9194815 +rushmore|9194850 +rushy|9194919 +rusk|9194941 +ruskin|9195005 +russel crouse|9195051 +russell|9195116 +russell's body|9195657 +russet|9195752 +russet scab|9195810 +russia|9195885 +russia leather|9196152 +russian|9196199 +russian agency|9196417 +russian almond|9196496 +russian bank|9196583 +russian cactus|9196646 +russian capital|9196766 +russian dandelion|9196865 +russian dressing|9196971 +russian federation|9197057 +russian mayonnaise|9197130 +russian monetary unit|9197218 +russian olive|9197285 +russian orthodox|9197367 +russian orthodox church|9197466 +russian revolution|9197620 +russian river|9197776 +russian roulette|9197819 +russian soviet federated socialist republic|9197868 +russian thistle|9198012 +russian tumbleweed|9198133 +russian vine|9198257 +russian wolfhound|9198351 +russian-speaking|9196346 +russo-japanese war|9198413 +russula|9198472 +russulaceae|9198524 +rust|9198590 +rust fungus|9198898 +rust inhibitor|9198931 +rust mite|9198967 +rust-free|9198861 +rustbelt|9198991 +rusted|9199044 +rustic|9199073 +rusticate|9199270 +rustication|9199448 +rusticism|9199600 +rusticity|9199687 +rusting|9199763 +rustle|9199847 +rustler|9199931 +rustless|9199975 +rustling|9200067 +rustproof|9200206 +rustproofed|9200246 +rusty|9200286 +rusty blackbird|9200380 +rusty grackle|9200468 +rusty rig|9200556 +rusty woodsia|9200649 +rut|9200729 +ruta|9200925 +ruta graveolens|9200973 +rutabaga|9201054 +rutabaga plant|9201213 +rutaceae|9201323 +ruth|9201396 +ruth benedict|9201604 +ruth fulton|9201677 +ruth saint denis|9201748 +ruth st. denis|9201869 +ruthenium|9201988 +rutherford|9202050 +rutherford atom|9202235 +rutherford b. hayes|9202290 +rutherford birchard hayes|9202468 +rutherfordium|9202652 +ruthful|9202766 +ruthfulness|9202825 +ruthless|9202880 +ruthlessness|9202950 +rutile|9203102 +rutilus|9203126 +rutilus rutilus|9203176 +rutland|9203246 +rutted|9203276 +ruttish|9203307 +rutty|9203359 +ruvettus pretiosus|9203390 +rv|9203454 +rwanda|9203513 +rwanda franc|9203592 +rwandan|9203633 +rwandese republic|9203719 +rya|9203809 +rya rug|9203839 +rydberg|9203869 +rydberg constant|9204020 +rydberg unit|9204079 +rydberg's penstemon|9203928 +rye|9204138 +rye bread|9204254 +rye ergot|9204304 +rye grass|9204348 +rye whiskey|9204463 +rye whisky|9204514 +ryegrass|9204565 +rynchopidae|9204599 +rynchops|9204663 +rypticus|9204716 +ryukyu islands|9204769 +ryukyuan|9204820 +s|9204891 +s wrench|9205876 +s-shape|9205209 +s-shaped|9205253 +s. s. van dine|9205278 +s. smith stevens|9205364 +s.t.p.|9205468 +s.u.v.|9205643 +s/n|9205739 +s10-membered|9205832 +sa|9205933 +sa node|9205996 +saale|9206093 +saale glaciation|9206132 +saale river|9206186 +saarinen|9206231 +saba|9206341 +sabah|9206367 +sabahan|9206450 +sabal|9206548 +sabal palmetto|9206611 +sabaoth|9206689 +sabaton|9206726 +sabayon|9206816 +sabbat|9206865 +sabbatarian|9206907 +sabbath|9207008 +sabbath school|9207054 +sabbatia|9207114 +sabbatia angularis|9207166 +sabbatia campestris|9207263 +sabbatia stellaris|9207349 +sabbatic|9207434 +sabbatical|9207483 +sabbatical leave|9207608 +sabbatical year|9207668 +sabbatum|9207721 +sabellian|9207769 +saber|9207811 +saber rattling|9208122 +saber saw|9208184 +saber-toothed|9207932 +saber-toothed tiger|9208070 +sabertooth|9208257 +sabertoothed|9208309 +sabicu|9208367 +sabicu wood|9208434 +sabin|9208467 +sabin vaccine|9208558 +sabine|9208689 +sabine pine|9208731 +sabine river|9208847 +sabinea|9208895 +sabinea carinalis|9208952 +sable|9209013 +sable antelope|9209281 +sable brush|9209332 +sable coat|9209385 +sable's hair pencil|9209228 +sabot|9209414 +sabotage|9209488 +saboteur|9209593 +sabra|9209714 +sabre|9209737 +sabre rattling|9209916 +sabre-toothed|9209858 +sac|9209978 +sac fungus|9210147 +saccharase|9210174 +saccharic acid|9210227 +saccharide|9210267 +saccharify|9210334 +saccharin|9210424 +saccharine|9210464 +saccharinity|9210513 +saccharomyces|9210551 +saccharomyces cerevisiae|9210621 +saccharomyces ellipsoides|9210715 +saccharomycetaceae|9210801 +saccharose|9210888 +saccharum|9210943 +saccharum bengalense|9211018 +saccharum munja|9211102 +saccharum officinarum|9211181 +sacco|9211291 +sacculate|9211356 +sacculated|9211389 +saccule|9211422 +sacculus|9211452 +sacerdotal|9211482 +sacerdotalism|9211564 +saceur|9211594 +sachem|9211689 +sachet|9211792 +sachs disease|9211812 +sachsen|9212006 +sack|9212115 +sack coat|9212663 +sack out|9212687 +sack race|9212789 +sack up|9212813 +sackbut|9212865 +sackcloth|9212891 +sackcloth and ashes|9212955 +sacked|9212992 +sackful|9213051 +sacking|9213086 +saclant|9213240 +saclike|9213339 +sacque|9213397 +sacral|9213425 +sacral nerve|9213462 +sacral plexus|9213513 +sacral vein|9213565 +sacral vertebra|9213630 +sacrament|9213664 +sacrament of the eucharist|9213719 +sacramental|9213874 +sacramental manduction|9213930 +sacramental oil|9214005 +sacramental wine|9214090 +sacramento|9214137 +sacramento mountains|9214204 +sacramento river|9214335 +sacramento sturgeon|9214384 +sacred|9214498 +sacred college|9214863 +sacred cow|9214928 +sacred fig|9214994 +sacred ibis|9215077 +sacred lotus|9215127 +sacred mushroom|9215196 +sacred scripture|9215262 +sacred text|9215358 +sacred trinity|9215469 +sacred writing|9215609 +sacredly|9215720 +sacredness|9215749 +sacrifice|9215787 +sacrifice fly|9216063 +sacrifice operation|9216096 +sacrificeable|9216184 +sacrificer|9216218 +sacrificial|9216267 +sacrilege|9216317 +sacrilegious|9216392 +sacrilegiousness|9216445 +sacristan|9216500 +sacristy|9216551 +sacrosanct|9216581 +sacrum|9216629 +sad|9216653 +sad sack|9216923 +sadat|9217038 +saddam|9217118 +saddam bin hussein at-takriti|9217376 +saddam hussein|9217496 +saddam's martyrs|9217215 +sadden|9217601 +saddening|9217667 +saddhu|9217719 +saddle|9217754 +saddle blanket|9218035 +saddle block anaesthesia|9218111 +saddle block anesthesia|9218213 +saddle feather|9218315 +saddle hackle|9218360 +saddle horn|9218405 +saddle horse|9218448 +saddle of lamb|9218510 +saddle oxford|9218546 +saddle oyster|9218588 +saddle roof|9218635 +saddle shoe|9218699 +saddle soap|9218741 +saddle sore|9218780 +saddle stitch|9218833 +saddle-sore|9218006 +saddleback|9218863 +saddleback roof|9218966 +saddlebag|9219030 +saddlebill|9219053 +saddlebow|9219116 +saddlecloth|9219168 +saddled|9219244 +saddled-shaped false morel|9219285 +saddler|9219348 +saddlery|9219378 +sadducean|9219467 +sadducee|9219516 +sade|9219564 +sadhe|9219662 +sadhu|9219728 +sadi carnot|9219763 +sadism|9219841 +sadist|9219873 +sadistic|9219924 +sadleria|9219951 +sadly|9220004 +sadness|9220065 +sadomasochism|9220142 +sadomasochist|9220182 +sadomasochistic|9220240 +saek|9220281 +safaqis|9220304 +safar|9220363 +safari|9220414 +safari park|9220469 +safe|9220504 +safe and sound|9221226 +safe harbor|9221262 +safe house|9221319 +safe period|9221369 +safe sex|9221402 +safe-conduct|9220929 +safe-deposit|9220975 +safe-deposit box|9221115 +safebreaker|9221469 +safecracker|9221526 +safeguard|9221583 +safehold|9221695 +safekeeping|9221737 +safeness|9221810 +safety|9221843 +safety arch|9222289 +safety belt|9222342 +safety bicycle|9222414 +safety bike|9222475 +safety blitz|9222536 +safety bolt|9222608 +safety catch|9222655 +safety curtain|9222716 +safety deposit box|9222772 +safety device|9222883 +safety factor|9222926 +safety feature|9222972 +safety fuse|9223019 +safety glass|9223077 +safety harness|9223140 +safety hat|9223212 +safety island|9223256 +safety isle|9223325 +safety lamp|9223394 +safety lock|9223462 +safety margin|9223556 +safety match|9223618 +safety net|9223682 +safety nut|9223753 +safety pin|9223785 +safety rail|9223809 +safety razor|9223853 +safety squeeze|9223881 +safety squeeze play|9223938 +safety valve|9223995 +safety zone|9224078 +safety-deposit|9222116 +safety-related|9222254 +safflower|9224147 +safflower oil|9224223 +safflower seed|9224275 +saffranine|9224304 +saffron|9224356 +saffron crocus|9224515 +safranin|9224569 +safranine|9224621 +sag|9224673 +sag down|9224801 +saga|9224843 +sagacious|9224885 +sagaciously|9224946 +sagaciousness|9224994 +sagacity|9225119 +sagamore|9225249 +sage|9225304 +sage brush|9225457 +sage green|9225587 +sage grouse|9225632 +sage hen|9225695 +sage willow|9225758 +sage-green|9225422 +sagebrush|9225883 +sagebrush buttercup|9225932 +sagebrush lizard|9226007 +sagebrush mariposa tulip|9226067 +sagebrush state|9226163 +sagely|9226260 +sagging|9226309 +sagina|9226346 +saginaw|9226408 +sagitta|9226467 +sagittal|9226535 +sagittal suture|9226560 +sagittaria|9226652 +sagittariidae|9226730 +sagittarius|9226800 +sagittarius serpentarius|9227087 +sagittarius the archer|9227196 +sagittate|9227334 +sagittate-leaf|9227407 +sagittiform|9227460 +sagittiform leaf|9227533 +sago|9227586 +sago fern|9227614 +sago palm|9227695 +saguaro|9227757 +sahaptin|9227808 +sahaptino|9227901 +sahara|9227959 +sahara desert|9228003 +saharan|9228054 +sahib|9228135 +sahuaro|9228159 +said|9228210 +saida|9228254 +saiga|9228310 +saiga tatarica|9228349 +saigon|9228403 +saigon cinnamon|9228472 +sail|9228541 +sail through|9228744 +sailboat|9228841 +sailcloth|9228900 +sailfish|9228949 +sailing|9229014 +sailing boat|9229259 +sailing master|9229318 +sailing ship|9229375 +sailing vessel|9229430 +sailing-race|9229216 +sailmaker|9229485 +sailor|9229517 +sailor boy|9229906 +sailor cap|9230000 +sailor suit|9230024 +sailor's breastplate|9229857 +sailor's-choice|9229730 +sailors choice|9230054 +sailplane|9230115 +sailplaning|9230182 +saimiri|9230247 +saimiri sciureus|9230299 +sainfoin|9230387 +saint|9230501 +saint agnes's eve|9231131 +saint ambrose|9231206 +saint andrew|9231401 +saint andrew the apostle|9231493 +saint anselm|9231597 +saint anthony's fire|9231667 +saint athanasius|9231793 +saint augustine|9232005 +saint baeda|9232277 +saint beda|9232501 +saint bede|9232724 +saint benedict|9232947 +saint bernard|9233028 +saint boniface|9233088 +saint bride|9233202 +saint bridget|9233354 +saint brigid|9233508 +saint bruno|9233661 +saint christopher|9233753 +saint christopher-nevis|9233909 +saint cloud|9234085 +saint crispin|9234133 +saint david|9234203 +saint denis|9234265 +saint dominic|9234381 +saint edward the confessor|9234469 +saint edward the martyr|9234622 +saint elizabeth ann bayley seton|9234763 +saint elmo's fire|9234890 +saint elmo's light|9235107 +saint emilion|9235325 +saint eustatius|9235382 +saint francis|9235444 +saint francis of assisi|9235663 +saint francis river|9235815 +saint francis xavier|9235914 +saint george|9235983 +saint gregory i|9236056 +saint ignatius|9236271 +saint ignatius of loyola|9236490 +saint ignatius' itch|9236345 +saint james|9236650 +saint james the apostle|9236759 +saint jerome|9236880 +saint joan|9237117 +saint john|9237196 +saint john river|9237621 +saint john the apostle|9237705 +saint john's|9237472 +saint johns|9237867 +saint johns river|9238213 +saint joseph|9238367 +saint jude|9238476 +saint kitts|9238551 +saint kitts and nevis|9238635 +saint lawrence|9238809 +saint lawrence river|9238975 +saint lawrence seaway|9239079 +saint louis|9239191 +saint lucia|9239347 +saint luke|9239445 +saint maarten|9239515 +saint mark|9239595 +saint martin|9239665 +saint martin's summer|9239744 +saint matthew|9239845 +saint matthew the apostle|9239982 +saint nicholas|9240131 +saint nick|9240205 +saint olaf|9240301 +saint olav|9240401 +saint patrick|9240501 +saint patrick's day|9240579 +saint paul|9240658 +saint peter|9240874 +saint peter the apostle|9241127 +saint peter's wreath|9240995 +saint petersburg|9241260 +saint thomas|9241445 +saint thomas a becket|9241730 +saint thomas aquinas|9241850 +saint ulmo's fire|9242047 +saint ulmo's light|9242264 +saint valentine's day|9242482 +saint vincent|9242600 +saint vincent and the grenadines|9242656 +saint vitus dance|9242781 +saint's day|9230759 +saint-bernard's-lily|9230784 +saint-john's-bread|9230871 +saint-mihiel|9230960 +saint-saens|9231040 +sainted|9242867 +sainthood|9242934 +saintlike|9243030 +saintliness|9243097 +saintly|9243132 +saintpaulia|9243199 +saintpaulia ionantha|9243270 +saints peter and paul|9243343 +saipan|9243423 +sajama|9243486 +sakartvelo|9243523 +sake|9243589 +sakharov|9243741 +saki|9243831 +sakkara|9244006 +sakti|9244053 +saktism|9244093 +sal ammoniac|9244206 +sal soda|9244251 +sal volatile|9244318 +salaah|9244368 +salaam|9244427 +salaat|9244478 +salable|9244537 +salacious|9244643 +salaciously|9244729 +salaciousness|9244762 +salacity|9244833 +salad|9244904 +salad bar|9244924 +salad bowl|9244947 +salad burnet|9244997 +salad cream|9245121 +salad days|9245166 +salad dressing|9245220 +salad fork|9245259 +salad green|9245284 +salad greens|9245347 +salad nicoise|9245458 +salad oil|9245487 +salad plate|9245524 +saladin|9245562 +salafast group for call and combat|9245634 +salafi movement|9245807 +salafism|9245910 +salafist group|9246006 +salah|9246159 +salah al-din battalions|9246311 +salah-ad-din yusuf ibn-ayyub|9246218 +salai|9246489 +salal|9246535 +salamander|9246588 +salamandra|9246705 +salamandra atra|9246769 +salamandra maculosa|9246839 +salamandra salamandra|9246934 +salamandridae|9247023 +salamandriform|9247098 +salami|9247131 +salaried|9247155 +salary|9247286 +salary cut|9247349 +salary increase|9247381 +salat|9247465 +sale|9247524 +sale in gross|9247721 +saleable|9247772 +salem|9247870 +saleratus|9248007 +salerno|9248134 +saleroom|9248178 +sales|9248226 +sales agreement|9248489 +sales booth|9248543 +sales campaign|9248582 +sales demonstrator|9248648 +sales department|9248701 +sales division|9248774 +sales event|9248847 +sales finance company|9248896 +sales force|9248943 +sales incentive|9249016 +sales outlet|9249057 +sales pitch|9249165 +sales promotion|9249254 +sales resistance|9249330 +sales staff|9249367 +sales talk|9249394 +sales tax|9249483 +salesclerk|9249533 +salesgirl|9249582 +saleslady|9249634 +salesman|9249686 +salesmanship|9249716 +salesperson|9249794 +salesroom|9249824 +saleswoman|9249872 +salian|9249924 +salian frank|9249966 +salic law|9250014 +salicaceae|9250054 +salicales|9250140 +salicornia|9250197 +salicornia europaea|9250271 +salicylate|9250361 +salicylate poisoning|9250459 +salicylic acid|9250528 +salience|9250587 +saliency|9250638 +salient|9250689 +salient angle|9250818 +salientia|9250847 +salientian|9250949 +saliferous|9251054 +salim|9251079 +salina|9251247 +salinate|9251275 +saline|9251300 +saline solution|9251387 +salinger|9251456 +salinity|9251534 +salinometer|9251674 +salisbury|9251717 +salisbury steak|9251790 +salish|9251836 +salishan|9251944 +saliva|9251984 +salivary|9252023 +salivary calculus|9252050 +salivary duct|9252107 +salivary gland|9252165 +salivate|9252215 +salivation|9252286 +salix|9252327 +salix alba|9252382 +salix alba caerulea|9252463 +salix alba sericea|9252550 +salix alba vitellina|9252657 +salix amygdalina|9252744 +salix amygdaloides|9252838 +salix arctica|9252962 +salix babylonica|9253032 +salix blanda|9253135 +salix candida|9253253 +salix caprea|9253334 +salix cinerea|9253418 +salix discolor|9253486 +salix fragilis|9253557 +salix herbacea|9253655 +salix humilis|9253726 +salix lasiolepis|9253797 +salix lucida|9253873 +salix nigra|9253942 +salix pendulina|9254020 +salix pendulina blanda|9254141 +salix pentandra|9254269 +salix purpurea|9254354 +salix pyrifolia|9254461 +salix repens|9254535 +salix sericea|9254605 +salix sitchensis|9254707 +salix triandra|9254795 +salix tristis|9254887 +salix uva-ursi|9254973 +salix viminalis|9255048 +salix vitellina|9255133 +salk|9255215 +salk vaccine|9255274 +sallade|9255332 +sallet|9255363 +sallow|9255394 +sallowness|9255469 +sally|9255523 +sally forth|9255641 +sally lunn|9255735 +sally out|9255774 +sallying forth|9255912 +salmacis|9255950 +salmagundi|9255983 +salman rushdie|9256152 +salmi|9256234 +salmo|9256256 +salmo gairdneri|9256300 +salmo salar|9256361 +salmo trutta|9256417 +salmon|9256483 +salmon berry|9256563 +salmon loaf|9256831 +salmon oil|9256862 +salmon pink|9256893 +salmon river|9256948 +salmon trout|9256996 +salmonberry|9257117 +salmonella|9257361 +salmonella enteritidis|9257422 +salmonella typhi|9257507 +salmonella typhimurium|9257597 +salmonella typhosa|9257663 +salmonellosis|9257755 +salmonid|9257819 +salmonidae|9257870 +salmwood|9257931 +salol|9258044 +salome|9258088 +salomon|9258138 +salon|9258225 +salonica|9258418 +salonika|9258514 +saloon|9258610 +saloon keeper|9258727 +salp|9258767 +salpa|9258817 +salpichroa|9258867 +salpichroa organifolia|9258935 +salpichroa rhomboidea|9259029 +salpidae|9259122 +salpiglossis|9259181 +salpiglossis sinuata|9259225 +salpinctes|9259304 +salpinctes obsoletus|9259363 +salpingectomy|9259440 +salpingitis|9259505 +salpinx|9259553 +salsa|9259597 +salsify|9259622 +salsilla|9259761 +salsola|9259828 +salsola kali|9259893 +salsola kali tenuifolia|9259993 +salsola soda|9260122 +salt|9260222 +salt away|9260896 +salt cod|9260980 +salt depletion|9261010 +salt flat|9261044 +salt i|9261079 +salt ii|9261121 +salt lake city|9261165 +salt lick|9261234 +salt marsh mallow|9261275 +salt merchant|9261340 +salt mine|9261392 +salt plain|9261475 +salt pork|9261510 +salt reed grass|9261539 +salt rush|9261607 +salt shaker|9261647 +salt tree|9261767 +salt-cured|9260742 +salt-free diet|9260779 +salt-rising bread|9260838 +saltate|9261847 +saltation|9261908 +saltbox|9262179 +saltbush|9262202 +saltcellar|9262231 +salted|9262261 +salter|9262298 +saltine|9262367 +saltiness|9262392 +salting|9262521 +saltire|9262548 +saltish|9262590 +salton sea|9262612 +saltpan|9262648 +saltpeter|9262671 +saltpetre|9262738 +saltshaker|9262805 +saltwater|9262844 +saltwater fish|9262888 +saltworks|9262920 +saltwort|9262968 +saltwort family|9263088 +salty|9263169 +salubrious|9263244 +salubriousness|9263312 +salubrity|9263360 +saluki|9263408 +salutary|9263461 +salutation|9263505 +salutatorian|9263613 +salutatory speaker|9263687 +salute|9263761 +saluter|9264067 +salvador|9264154 +salvadora|9264266 +salvadora family|9264342 +salvadora persica|9264453 +salvadoraceae|9264538 +salvadoran|9264646 +salvadoran capital|9264794 +salvadorean|9264871 +salvadorian|9265020 +salvage|9265091 +salvageable|9265361 +salvager|9265388 +salvation|9265437 +salvation army|9265582 +salve|9265654 +salvelinus|9265822 +salvelinus alpinus|9265881 +salvelinus fontinalis|9265945 +salvelinus namaycush|9266031 +salver|9266112 +salverform|9266133 +salvia|9266179 +salvia azurea|9266222 +salvia clarea|9266281 +salvia divinorum|9266341 +salvia farinacea|9266409 +salvia lancifolia|9266485 +salvia leucophylla|9266567 +salvia lyrata|9266653 +salvia officinalis|9266725 +salvia pratensis|9266803 +salvia reflexa|9266871 +salvia sclarea|9266950 +salvia spathacea|9267007 +salvia verbenaca|9267075 +salvidor dali|9267164 +salvific|9267214 +salving|9267266 +salvinia|9267318 +salvinia auriculata|9267371 +salvinia rotundifolia|9267480 +salviniaceae|9267591 +salvinorin|9267658 +salvo|9267745 +salvor|9267839 +salwar|9267888 +salyut|9267927 +salzburg|9267996 +sam|9268052 +sam adams|9268107 +sam browne belt|9268185 +sam goldwyn|9268231 +sam houston|9268334 +sam shepard|9268452 +sam snead|9268514 +sama-veda|9268598 +saman|9268635 +samanala|9268725 +samara|9268778 +samarang|9268815 +samarcand|9268885 +samaritan|9268953 +samarium|9269015 +samarkand|9269076 +samarskite|9269144 +samba|9269172 +sambar|9269427 +sambre|9269478 +sambre river|9269520 +sambuca|9269568 +sambucus|9269601 +sambucus caerulea|9269663 +sambucus canadensis|9269757 +sambucus ebulus|9269872 +sambucus nigra|9269956 +sambucus pubens|9270077 +sambucus racemosa|9270192 +sambur|9270296 +same|9270347 +same-sex marriage|9270672 +samekh|9270723 +sameness|9270790 +samhita|9270845 +sami|9270892 +samia|9270931 +samia cynthia|9270980 +samia walkeri|9271156 +samian ware|9271254 +samiel|9271315 +samisen|9271377 +samite|9271423 +samizdat|9271469 +samnite|9271517 +samoa|9271550 +samoa i sisifo|9271681 +samoan|9271786 +samoan islands|9271852 +samolus|9271904 +samolus floribundus|9271974 +samolus parviflorus|9272069 +samolus valerandii|9272164 +samosa|9272237 +samovar|9272262 +samoyed|9272283 +samoyede|9272394 +samoyedic|9272435 +samoyedic-speaking|9272495 +sampan|9272570 +samphire|9272592 +sample|9272662 +sample distribution|9272877 +sampler|9272960 +sampling|9273196 +sampling frequency|9273364 +sampling rate|9273422 +sampling station|9273450 +samsara|9273504 +samson|9273527 +samuel|9273633 +samuel adams|9273664 +samuel barber|9273745 +samuel beckett|9273798 +samuel dashiell hammett|9273880 +samuel de champlain|9273976 +samuel f. b. morse|9274055 +samuel finley breese morse|9274186 +samuel goldwyn|9274325 +samuel gompers|9274431 +samuel houston|9274491 +samuel huntington|9274612 +samuel jackson snead|9274698 +samuel johnson|9274793 +samuel langhorne clemens|9274893 +samuel morse|9275004 +samuel pepys|9275129 +samuel pierpoint langley|9275202 +samuel rawson gardiner|9275332 +samuel rosenstock|9275422 +samuel taylor coleridge|9275492 +samuel wiesenthal|9275564 +samuel wilder|9275633 +samurai|9275737 +san andreas fault|9275790 +san angelo|9275879 +san antonio|9275915 +san bernadino|9275977 +san carlos apache|9276043 +san diego|9276095 +san diego bay|9276182 +san fernando valley|9276223 +san francisco|9276284 +san francisco bay|9276379 +san joaquin river|9276428 +san joaquin valley|9276479 +san jose|9276538 +san jose scale|9276649 +san juan|9276725 +san juan mountains|9276781 +san luis potosi|9276908 +san marinese|9276978 +san marino|9277074 +san mateo|9277218 +san pablo|9277252 +san pedro sula|9277286 +san salvador|9277354 +san sebastian|9277425 +sana|9277491 +sana'a|9277540 +sanaa|9277591 +sanatarium|9277641 +sanative|9277702 +sanatorium|9277779 +sanchez|9278064 +sanctification|9278234 +sanctified|9278294 +sanctify|9278338 +sanctimonious|9278428 +sanctimoniously|9278533 +sanctimoniousness|9278574 +sanctimony|9278622 +sanction|9278670 +sanctionative|9279006 +sanctioned|9279050 +sanctioning|9279157 +sanctity|9279201 +sanctuary|9279236 +sanctum|9279324 +sanctum sanctorum|9279419 +sand|9279494 +sand badger|9279792 +sand bar|9279866 +sand berry|9279977 +sand blackberry|9280227 +sand cast|9280297 +sand cat|9280332 +sand cherry|9280358 +sand crack|9280465 +sand cricket|9280500 +sand dab|9280597 +sand devil's claw|9280666 +sand dollar|9280754 +sand dropseed|9280786 +sand dune|9280851 +sand eel|9280881 +sand flea|9280964 +sand fly|9281026 +sand grouse|9281160 +sand hopper|9281290 +sand lance|9281433 +sand launce|9281516 +sand leek|9281599 +sand lizard|9281694 +sand martin|9281823 +sand myrtle|9281892 +sand painting|9281947 +sand phlox|9281987 +sand rat|9282058 +sand reed|9282148 +sand sage|9282199 +sand sedge|9282276 +sand shark|9282327 +sand snake|9282400 +sand sole|9282444 +sand spurry|9282495 +sand stargazer|9282550 +sand tiger|9282606 +sand trap|9282679 +sand tumor|9282717 +sand verbena|9282768 +sand viper|9282813 +sand wedge|9282946 +sand-blind|9279686 +sandal|9282972 +sandaled|9282993 +sandalled|9283040 +sandalwood|9283087 +sandalwood family|9283112 +sandalwood tree|9283193 +sandarac|9283254 +sandarac tree|9283394 +sandarach|9283480 +sandbag|9283522 +sandbagger|9283674 +sandbank|9283744 +sandbar|9283767 +sandbar shark|9283797 +sandberry|9283914 +sandblast|9284083 +sandblaster|9284141 +sandbox|9284172 +sandboy|9284235 +sandbur|9284291 +sandburg|9284358 +sander|9284413 +sanderling|9284477 +sandfish|9284522 +sandfly|9284652 +sandfly fever|9284705 +sandglass|9284764 +sandgrouse|9284804 +sandhi|9284853 +sandhopper|9284882 +sandiness|9284944 +sandlike|9284997 +sandlot|9285032 +sandman|9285074 +sandor kellner|9285130 +sandpaper|9285242 +sandpapery|9285337 +sandpile|9285372 +sandpiper|9285412 +sandpit|9285468 +sandril|9285496 +sandro botticelli|9285596 +sands|9285698 +sandspur|9285940 +sandstone|9286007 +sandstorm|9286042 +sandwich|9286097 +sandwich board|9286219 +sandwich islands|9286258 +sandwich plate|9286330 +sandwichman|9286359 +sandwort|9286389 +sandy|9286483 +sandy mushroom|9286689 +sane|9286741 +sanely|9286887 +saneness|9286922 +sanfoin|9286961 +sang|9287075 +sang-froid|9287148 +sangapenum|9287233 +sangaree|9287272 +sangay|9287304 +sanger|9287335 +sango|9287458 +sangoma|9287491 +sangraal|9287525 +sangria|9287584 +sanguification|9287616 +sanguinaria|9287783 +sanguinaria canadensis|9287856 +sanguinary|9287970 +sanguinary ant|9288078 +sanguine|9288149 +sanguineness|9288208 +sanguineous|9288250 +sanguinity|9288317 +sanicle|9288359 +sanicula|9288408 +sanicula arctopoides|9288468 +sanicula bipinnatifida|9288557 +sanicula europaea|9288645 +sanies|9288725 +sanious|9288842 +sanitariness|9288926 +sanitarium|9288967 +sanitary|9289028 +sanitary code|9289085 +sanitary condition|9289138 +sanitary landfill|9289183 +sanitary napkin|9289219 +sanitate|9289254 +sanitation|9289302 +sanitisation|9289395 +sanitise|9289468 +sanitised|9289568 +sanitization|9289616 +sanitize|9289689 +sanitized|9289789 +sanity|9289837 +sannup|9289876 +sannyasi|9289948 +sannyasin|9290014 +sans serif|9290080 +sansevieria|9290135 +sansevieria guineensis|9290205 +sansevieria trifasciata|9290323 +sansevieria zeylanica|9290442 +sanskrit|9290544 +sanskrit literature|9290608 +sanskritic language|9290668 +sanson-flamsteed projection|9290743 +santa ana|9290878 +santa anna|9291135 +santa barbara|9291252 +santa catalina|9291294 +santa clara|9291356 +santa claus|9291418 +santa cruz|9291515 +santa cruz cypress|9291598 +santa fe|9291718 +santa fe trail|9291781 +santa gertrudis|9291826 +santa lucia fir|9291884 +santa maria de belem|9291993 +santa maria del tule|9292127 +santa maria tree|9292183 +santalaceae|9292257 +santalales|9292350 +santalum|9292410 +santalum album|9292474 +santee|9292550 +santee dakota|9292664 +santee sioux|9292748 +santiago|9292831 +santiago de chile|9293109 +santiago de cuba|9293211 +santiago de los caballeros|9293343 +santiago ramon y cajal|9293444 +santims|9293525 +santo domingo|9293564 +santolina|9293668 +santolina chamaecyparissus|9293733 +santos|9293823 +sanvitalia|9293880 +sanvitalia procumbens|9293948 +sanwa millet|9294039 +sanyasi|9294154 +sao bernardo do campo|9294220 +sao goncalo|9294302 +sao joao de meriti|9294364 +sao jose dos campos|9294440 +sao louis|9294518 +sao paulo|9294576 +sao thome e principe|9294639 +sao thome e principe monetary unit|9294820 +sao tiago island|9294913 +sao tome|9294963 +sao tome and principe|9295007 +sao tome e principe|9295189 +saone|9295369 +saone river|9295408 +sap|9295453 +sapele mahogany|9295682 +saphar|9295798 +saphead|9295850 +saphenous nerve|9295909 +saphenous vein|9295963 +sapid|9296030 +sapidity|9296128 +sapidness|9296331 +sapience|9296401 +sapiens|9296435 +sapient|9296478 +sapiential|9296524 +sapiential book|9296549 +sapiently|9296664 +sapindaceae|9296712 +sapindales|9296814 +sapindus|9296874 +sapindus drumondii|9296947 +sapindus marginatus|9297055 +sapindus saponaria|9297164 +sapir|9297283 +sapless|9297362 +sapling|9297444 +sapodilla|9297466 +sapodilla family|9297584 +sapodilla plum|9297672 +sapodilla tree|9297726 +saponaceous|9297802 +saponaria|9297861 +saponaria officinalis|9297932 +saponaria vaccaria|9298039 +saponification|9298151 +saponified|9298202 +saponify|9298253 +saponin|9298305 +saporous|9298332 +sapota|9298430 +sapotaceae|9298484 +sapote|9298583 +sapper|9298702 +sapphic|9298789 +sapphic ode|9298852 +sapphire|9298902 +sapphire berry|9299057 +sapphirine|9299136 +sapphism|9299204 +sappho|9299283 +sapporo|9299322 +sappy|9299376 +sapraemia|9299476 +sapremia|9299511 +saprobe|9299546 +saprobic|9299578 +saprolegnia|9299610 +saprolegnia ferax|9299674 +saprolegniales|9299739 +saprolite|9299812 +sapropel|9299844 +saprophagous|9299904 +saprophyte|9299948 +saprophytic|9300004 +saprophytic organism|9300058 +saprozoic|9300114 +sapsago|9300158 +sapsucker|9300188 +sapwood|9300236 +saqqara|9300258 +saqqarah|9300305 +saquinavir|9300353 +sara teasdale|9300404 +saraband|9300455 +saracen|9300559 +saragossa|9300689 +sarah|9300756 +sarah bernhardt|9300796 +sarah kemble siddons|9300880 +sarah siddons|9300961 +sarah vaughan|9301035 +sarajevo|9301116 +saran|9301247 +saran wrap|9301296 +sarape|9301361 +sarasota|9301390 +sarasvati|9301422 +saratoga|9301463 +saratoga chip|9301524 +saratoga spittlebug|9301595 +saratoga springs|9301694 +saratov|9301742 +sarawak|9301796 +sarawakian|9301870 +sarazen|9301977 +sarcasm|9302043 +sarcastic|9302125 +sarcastically|9302278 +sarcobatus|9302313 +sarcobatus vermiculatus|9302387 +sarcocephalus|9302483 +sarcocephalus diderrichii|9302560 +sarcocephalus esculentus|9302652 +sarcocephalus latifolius|9302759 +sarcochilus|9302866 +sarcochilus falcatus|9302947 +sarcocystidean|9303046 +sarcocystieian|9303110 +sarcocystis|9303174 +sarcodes|9303242 +sarcodes sanguinea|9303306 +sarcodina|9303387 +sarcodine|9303438 +sarcodinian|9303489 +sarcoid|9303540 +sarcoidosis|9303563 +sarcolemma|9303594 +sarcolemmal|9303636 +sarcolemmic|9303678 +sarcolemnous|9303733 +sarcoma|9303788 +sarcomere|9303841 +sarcophaga|9303868 +sarcophaga carnaria|9303932 +sarcophagus|9303995 +sarcophilus|9304030 +sarcophilus hariisi|9304094 +sarcoplasm|9304202 +sarcoptes|9304232 +sarcoptid|9304293 +sarcoptidae|9304327 +sarcorhamphus|9304396 +sarcorhamphus papa|9304464 +sarcoscypha coccinea|9304552 +sarcoscyphaceae|9304638 +sarcosine|9304716 +sarcosomal|9304765 +sarcosomataceae|9304811 +sarcosome|9304883 +sarcosporidia|9304929 +sarcosporidian|9304999 +sarcostemma|9305063 +sarcostemma acidum|9305145 +sarcostyle|9305208 +sard|9305273 +sarda|9305324 +sarda chiliensis|9305368 +sarda lineolata|9305446 +sarda sarda|9305509 +sardegna|9305574 +sardina|9305657 +sardina pilchardus|9305722 +sardine|9305807 +sardine oil|9305983 +sardinia|9306015 +sardinian|9306098 +sardinops|9306191 +sardinops caerulea|9306247 +sardis|9306346 +sardius|9306398 +sardonic|9306449 +sardonically|9306481 +sardonyx|9306516 +saree|9306539 +sargasso|9306571 +sargasso sea|9306641 +sargassum|9306680 +sargassum bacciferum|9306750 +sargassum fish|9306841 +sargent|9306900 +sari|9306953 +sarin|9306985 +sarnoff|9307031 +sarong|9307097 +saronic gulf|9307119 +saroyan|9307182 +sarpanitu|9307237 +sarpedon|9307298 +sarracenia|9307340 +sarracenia flava|9307419 +sarracenia minor|9307554 +sarracenia purpurea|9307632 +sarraceniaceae|9307747 +sarraceniales|9307862 +sars|9307931 +sarsaparilla|9308045 +sarsaparilla root|9308090 +sartor|9308122 +sartorial|9308197 +sartorius|9308308 +sartorius muscle|9308395 +sartre|9308482 +sarvepalli radhakrishnan|9308558 +sas|9308704 +sash|9308808 +sash cord|9308907 +sash fastener|9308941 +sash line|9308991 +sash lock|9309025 +sash weight|9309075 +sash window|9309166 +sashay|9309194 +sashimi|9309471 +saskatchewan|9309493 +saskatoon|9309546 +sasquatch|9309650 +sass|9309706 +sassaby|9309875 +sassafras|9309925 +sassafras albidum|9310050 +sassafras laurel|9310127 +sassafras oil|9310292 +sassafras tree|9310319 +sassenach|9310378 +sassing|9310422 +sassy|9310563 +sat|9310634 +satan|9310677 +satang|9310807 +satanic|9310842 +satanism|9310981 +satanist|9311068 +satanophobia|9311123 +satchel|9311159 +satchel paige|9311192 +satchmo|9311281 +sate|9311374 +sated|9311442 +sateen|9311491 +satellite|9311537 +satellite receiver|9311707 +satellite television|9311761 +satellite transmitter|9311833 +satellite tv|9311883 +satiable|9311968 +satiate|9312015 +satiated|9312300 +satiation|9312376 +satie|9312443 +satiety|9312509 +satin|9312555 +satin bird|9312600 +satin bowerbird|9312680 +satin flower|9312760 +satin leaf|9312861 +satin stitch|9313054 +satin walnut|9313083 +satin weave|9313145 +satinleaf|9313172 +satinpod|9313284 +satinwood|9313385 +satinwood tree|9313531 +satiny|9313592 +satire|9313656 +satiric|9313738 +satirical|9313775 +satirise|9313812 +satirist|9313916 +satirize|9313971 +satisfaction|9314075 +satisfactoriness|9314255 +satisfactory|9314289 +satisfiable|9314535 +satisfice|9314582 +satisfied|9314620 +satisfier|9314690 +satisfy|9314715 +satisfying|9314850 +satisfyingly|9314994 +satori|9315028 +satrap|9315058 +satsuma|9315083 +satsuma tree|9315209 +saturate|9315303 +saturated|9315382 +saturated fatty acid|9315548 +saturation|9315589 +saturation bombing|9315741 +saturation point|9315817 +saturday|9315854 +saturday night special|9315902 +satureia|9315995 +satureia hortensis|9316081 +satureia montana|9316168 +satureja|9316249 +satureja acinos|9316335 +satureja calamintha glandulosa|9316453 +satureja calamintha officinalis|9316623 +satureja douglasii|9316742 +satureja grandiflora|9316867 +satureja hortensis|9316999 +satureja montana|9317086 +satureja nepeta|9317167 +satureja vulgaris|9317322 +saturn|9317437 +saturnalia|9317510 +saturnia|9317643 +saturnia pavonia|9317701 +saturniid|9317790 +saturniid moth|9317829 +saturniidae|9317868 +saturnine|9317937 +saturnism|9318035 +satyagraha|9318113 +satyendra n. bose|9318197 +satyendra nath bose|9318285 +satyr|9318375 +satyr orchid|9318473 +satyr play|9318545 +satyriasis|9318590 +satyric|9318658 +satyrical|9318696 +satyridae|9318734 +sauce|9318797 +sauce albert|9319014 +sauce chausseur|9319073 +sauce espagnole|9319119 +sauce espanole|9319178 +sauce louis|9319217 +sauce verte|9319274 +sauce vinaigrette|9319328 +sauce-alone|9318899 +sauceboat|9319407 +saucepan|9319460 +saucepot|9319494 +saucer|9319516 +saucer magnolia|9319720 +saucer-eyed|9319683 +saucily|9319792 +sauciness|9319862 +saucy|9319938 +saudi|9320053 +saudi arabia|9320223 +saudi arabian|9320309 +saudi arabian monetary unit|9320365 +saudi arabian riyal|9320444 +saudi-arabian|9320154 +sauerbraten|9320527 +sauerkraut|9320553 +sauk|9320578 +saul|9320622 +saul bellow|9320800 +saul of tarsus|9320854 +saul steinberg|9321012 +sault sainte marie|9321072 +sauna|9321124 +saunter|9321195 +saunterer|9321292 +saurel|9321352 +sauria|9321488 +saurian|9321571 +saurischia|9321630 +saurischian|9321691 +saurischian dinosaur|9321742 +sauromalus|9321793 +sauromalus obesus|9321855 +sauropod|9321934 +sauropod dinosaur|9322003 +sauropoda|9322072 +sauropodomorpha|9322133 +sauropterygia|9322212 +saurosuchus|9322282 +saururaceae|9322347 +saururus|9322453 +saururus cernuus|9322526 +saury|9322641 +sausage|9322715 +sausage balloon|9322826 +sausage curl|9322883 +sausage dog|9322929 +sausage hound|9322993 +sausage meat|9323057 +sausage pizza|9323084 +sausage roll|9323123 +sausage-shaped|9322784 +saussure|9323152 +saussurea|9323231 +saussurea costus|9323296 +saussurea lappa|9323388 +saute|9323479 +sauteed|9323520 +sauteing|9323550 +sauterne|9323603 +sauternes|9323651 +sauvignon blanc|9323737 +sauvignon grape|9323869 +savage|9323967 +savagely|9324403 +savageness|9324439 +savagery|9324532 +savanna|9324682 +savannah|9324718 +savannah river|9324841 +savant|9324895 +savara|9324975 +savarin|9325046 +save|9325068 +save up|9325561 +save-all|9325458 +saved|9325593 +saved up|9325737 +saveloy|9325788 +saver|9325818 +savin|9325927 +saving|9325981 +saving grace|9326145 +savings|9326194 +savings account|9326367 +savings account trust|9326405 +savings and loan|9326504 +savings and loan association|9326578 +savings bank|9326652 +savings bank trust|9326735 +savings bond|9326834 +savior|9326872 +saviour|9327088 +savitar|9327304 +savoir-faire|9327341 +savonarola|9327388 +savor|9327525 +savoriness|9327777 +savoring|9327858 +savorless|9327931 +savorlessness|9328019 +savory|9328136 +savour|9328430 +savouring|9328678 +savourless|9328751 +savourlessness|9328839 +savoury|9328956 +savoy|9329162 +savoy cabbage|9329204 +savoyard|9329312 +savvy|9329419 +saw|9329554 +saw log|9330888 +saw logs|9330909 +saw palmetto|9330980 +saw set|9331041 +saw wood|9331063 +saw-toothed|9330828 +sawan|9331134 +sawbill|9331184 +sawbones|9331240 +sawbuck|9331319 +sawdust|9331380 +sawdust doll|9331402 +sawdust saloon|9331435 +sawed-off|9331494 +sawed-off shotgun|9331587 +sawfish|9331633 +sawfly|9331654 +sawhorse|9331728 +sawing machine|9331789 +sawm|9331838 +sawmill|9331879 +sawn-off|9331988 +sawpit|9332082 +sawtooth|9332109 +sawwort|9332137 +sawyer|9332196 +sawyer beetle|9332316 +sax|9332392 +saxatile|9332495 +saxe|9332545 +saxe-coburg-gotha|9332749 +saxe-gothea|9332846 +saxe-gothea conspicua|9333023 +saxegothea|9333138 +saxhorn|9333233 +saxicola|9333256 +saxicola rubetra|9333309 +saxicola torquata|9333381 +saxicoline|9333456 +saxicolous|9333506 +saxicolous plant|9333556 +saxifraga|9333643 +saxifraga aizoides|9333706 +saxifraga granulata|9333809 +saxifraga hypnoides|9333926 +saxifraga occidentalis|9334021 +saxifraga oppositifolia|9334124 +saxifraga sarmentosam|9334228 +saxifraga stellaris|9334394 +saxifraga stolonifera|9334505 +saxifragaceae|9334671 +saxifrage|9334765 +saxifrage family|9334826 +saxist|9334906 +saxitoxin|9334966 +saxo grammaticus|9335007 +saxon|9335076 +saxony|9335127 +saxophone|9335235 +saxophonist|9335302 +say|9335362 +say farewell|9335922 +say-so|9335771 +sayanci|9335970 +sayeret|9336012 +sayeret mat'kal|9336069 +sayeret matkal|9336142 +sayers|9336214 +saying|9336305 +sayonara|9336454 +sayornis|9336617 +sayornis phoebe|9336670 +sazerac|9336792 +sb|9336826 +sba|9336955 +sbe|9337021 +sbw|9337072 +sc|9337123 +scab|9337277 +scabbard|9337398 +scabby|9337423 +scabicide|9337454 +scabies|9337483 +scabiosa|9337515 +scabiosa arvensis|9337549 +scabiosa atropurpurea|9337627 +scabious|9337746 +scabrous|9337780 +scad|9337856 +scads|9337893 +scaffold|9338089 +scaffolding|9338171 +scalability|9338207 +scalable|9338258 +scalage|9338317 +scalar|9338369 +scalar field|9338459 +scalar matrix|9338487 +scalar product|9338526 +scalawag|9338593 +scald|9338839 +scalded milk|9338987 +scalding|9339014 +scale|9339074 +scale down|9339769 +scale factor|9339836 +scale fern|9339887 +scale insect|9339963 +scale leaf|9339999 +scale moss|9340046 +scale of measurement|9340092 +scale up|9340197 +scale value|9340234 +scale wax|9340261 +scaled|9340299 +scaleless|9340369 +scalelike|9340409 +scalene|9340434 +scalene muscle|9340515 +scalene triangle|9340598 +scalenus|9340651 +scalenus syndrome|9340734 +scaler|9340770 +scaley|9340800 +scalic|9340846 +scaling|9340878 +scaling ladder|9340986 +scallion|9341017 +scallop|9341096 +scallop shell|9341445 +scalloped|9341474 +scallopine|9341516 +scallopini|9341552 +scallywag|9341588 +scalp|9341832 +scalp lock|9341917 +scalpel|9341964 +scalper|9341996 +scaly|9342032 +scaly anteater|9342133 +scaly fern|9342229 +scaly lentinus|9342305 +scaly pholiota|9342354 +scaly polypore|9342404 +scam|9342483 +scammer|9342627 +scammony|9342760 +scammonyroot|9342874 +scamp|9343011 +scamper|9343182 +scampi|9343274 +scampo|9343295 +scan|9343349 +scandal|9343600 +scandalisation|9343689 +scandalise|9343790 +scandalization|9343895 +scandalize|9343996 +scandalmonger|9344101 +scandalmongering|9344189 +scandalous|9344284 +scandalousness|9344342 +scandent|9344411 +scandentia|9344439 +scandinavia|9344500 +scandinavian|9344657 +scandinavian country|9344934 +scandinavian language|9345038 +scandinavian lox|9345183 +scandinavian nation|9345230 +scandinavian peninsula|9345333 +scandium|9345410 +scanner|9345471 +scanning|9345677 +scansion|9345739 +scant|9345790 +scantily|9345929 +scantily clad|9345953 +scantiness|9346012 +scantling|9346118 +scantness|9346159 +scanty|9346265 +scape|9346354 +scapegoat|9346423 +scapegrace|9346462 +scaphiopus|9346514 +scaphiopus bombifrons|9346578 +scaphiopus hammondii|9346673 +scaphiopus multiplicatus|9346767 +scaphocephaly|9346870 +scaphoid|9347023 +scaphoid bone|9347058 +scaphopod|9347136 +scaphopoda|9347181 +scaphosepalum|9347235 +scapose|9347322 +scapula|9347348 +scapular|9347402 +scapulary|9347481 +scapulohumeral|9347517 +scar|9347557 +scar tissue|9347690 +scarab|9347729 +scarabaean|9347785 +scarabaeid|9347853 +scarabaeid beetle|9347921 +scarabaeidae|9347989 +scarabaeus|9348061 +scarabaeus sacer|9348117 +scaramouch|9348190 +scaramouche|9348284 +scarce|9348379 +scarcely|9348500 +scarceness|9348556 +scarcity|9348621 +scardinius|9348686 +scardinius erythrophthalmus|9348745 +scare|9348838 +scare away|9349083 +scare off|9349182 +scare quote|9349281 +scarecrow|9349338 +scarecrowish|9349419 +scared|9349451 +scaremonger|9349485 +scarer|9349523 +scarey|9349604 +scarf|9349661 +scarf bandage|9349833 +scarf joint|9349895 +scarf out|9349928 +scarface|9350081 +scarfpin|9350158 +scaridae|9350196 +scarify|9350251 +scarily|9350314 +scarlatina|9350344 +scarlet|9350407 +scarlet bugler|9350557 +scarlet bush|9350631 +scarlet clematis|9350719 +scarlet cup|9350772 +scarlet fever|9350837 +scarlet fritillary|9350900 +scarlet hamelia|9350974 +scarlet haw|9351062 +scarlet letter|9351118 +scarlet lychnis|9351158 +scarlet maple|9351235 +scarlet musk flower|9351298 +scarlet oak|9351354 +scarlet pimpernel|9351405 +scarlet plume|9351499 +scarlet runner|9351547 +scarlet runner bean|9351805 +scarlet strawberry|9352006 +scarlet sumac|9352085 +scarlet tanager|9352166 +scarlet wisteria tree|9352233 +scarp|9352312 +scarper|9352427 +scarred|9352579 +scartella|9352627 +scartella cristata|9352683 +scary|9352767 +scat|9352824 +scat singing|9352875 +scathe|9352926 +scathing|9352979 +scathingly|9353039 +scatological|9353070 +scatology|9353098 +scatophagy|9353194 +scatter|9353229 +scatter pin|9353610 +scatter rug|9353635 +scatterbrain|9353687 +scatterbrained|9353743 +scattered|9353856 +scattergood|9354036 +scattergun|9354118 +scattering|9354170 +scattershot|9354516 +scatty|9354571 +scaup|9354686 +scaup duck|9354736 +scavenge|9354786 +scavenger|9354933 +scavenger cell|9355053 +scavenging|9355116 +scd|9355162 +sceliphron|9355216 +sceloglaux|9355280 +sceloglaux albifacies|9355339 +sceloporus|9355463 +sceloporus graciosus|9355525 +sceloporus occidentalis|9355606 +sceloporus undulatus|9355714 +scenario|9355811 +scenarist|9355907 +scend|9355940 +scene|9356006 +scene of action|9356477 +scene painter|9356556 +scene-stealer|9356411 +scenery|9356616 +sceneshifter|9356723 +scenic|9356780 +scenic artist|9356826 +scenic railway|9356871 +scent|9356954 +scent out|9357281 +scented|9357329 +scented fern|9357474 +scented penstemon|9357670 +scented wattle|9357753 +scentless|9357867 +scentless camomile|9357932 +scentless false camomile|9358102 +scentless hayweed|9358272 +scentless mayweed|9358442 +scepter|9358612 +sceptered|9358687 +sceptic|9358747 +sceptical|9358803 +sceptically|9358919 +scepticism|9358951 +sceptre|9359013 +sceptred|9359088 +scet|9359148 +schadenfreude|9359220 +schaffneria|9359277 +schaffneria nigripes|9359339 +schedule|9359437 +schedule feeding|9359536 +scheduled|9359577 +scheduled fire|9359614 +scheduled maintenance|9359650 +scheduled territories|9359705 +scheduler|9359774 +scheduling|9359820 +scheele|9359872 +scheelite|9359939 +schefflera|9359966 +schefflera actinophylla|9360032 +scheldt|9360136 +scheldt river|9360181 +schema|9360232 +schematic|9360361 +schematic drawing|9360453 +schematisation|9360498 +schematise|9360611 +schematization|9360662 +schematize|9360775 +scheme|9360870 +scheme arch|9361163 +schemer|9361227 +scheming|9361278 +schemozzle|9361366 +schenectady|9361406 +scheol|9361468 +scherzo|9361576 +scheuchzeriaceae|9361602 +schiaparelli|9361755 +schick test|9361945 +schiller|9361988 +schilling|9362069 +schinus|9362130 +schinus chichita|9362200 +schinus molle|9362263 +schinus terebinthifolius|9362344 +schipperke|9362430 +schism|9362469 +schismatic|9362500 +schismatical|9362541 +schist|9362582 +schistorrhachis|9362615 +schistosoma|9362759 +schistosomatidae|9362821 +schistosome|9362900 +schistosome dermatitis|9362964 +schistosomiasis|9363022 +schizachyrium|9363092 +schizachyrium scoparium|9363179 +schizaea|9363312 +schizaea pusilla|9363365 +schizaeaceae|9363442 +schizanthus|9363509 +schizocarp|9363572 +schizogony|9363598 +schizoid|9363626 +schizomycetes|9363698 +schizopetalon|9363761 +schizopetalon walkeri|9363813 +schizophragma|9363887 +schizophragma hydrangeoides|9363962 +schizophrenia|9364057 +schizophrenic|9364154 +schizophrenic disorder|9364276 +schizophrenic psychosis|9364373 +schizophyceae|9364470 +schizophyta|9364575 +schizopoda|9364638 +schizosaccharomyces|9364682 +schizosaccharomycetaceae|9364770 +schizothymia|9364875 +schizotypal personality|9364973 +schleiden|9365027 +schlemiel|9365116 +schlemm's canal|9365161 +schlep|9365276 +schlesien|9365314 +schlesinger|9365437 +schliemann|9365656 +schlimazel|9365734 +schlock|9365795 +schlockmeister|9365851 +schlumbergera|9365911 +schlumbergera baridgesii|9365994 +schlumbergera buckleyi|9366100 +schlumbergera gaertneri|9366204 +schlumbergera truncatus|9366300 +schmaltz|9366417 +schmaltzy|9366499 +schmalz|9366600 +schmalzy|9366682 +schmear|9366783 +schmeer|9366828 +schmegegge|9366873 +schmidt|9366954 +schmidt camera|9367059 +schmidt telescope|9367147 +schmo|9367238 +schmoose|9367283 +schmooze|9367499 +schmoozer|9367715 +schmuck|9367797 +schnabel|9367842 +schnapps|9367914 +schnaps|9368013 +schnauzer|9368112 +schnecken|9368139 +schnittlaugh|9368214 +schnitzel|9368292 +schnook|9368333 +schnorchel|9368374 +schnorkel|9368466 +schnorr|9368558 +schnoz|9368601 +schnozzle|9368686 +schoenberg|9368771 +schola cantorum|9368856 +scholar|9368925 +scholarly|9369100 +scholarly person|9369219 +scholarship|9369284 +scholastic|9369423 +scholasticism|9369602 +scholiast|9369742 +schomburgkia|9369794 +schonbein|9369878 +schonberg|9369965 +school|9370049 +school assignment|9370476 +school bell|9370525 +school board|9370551 +school bus|9370598 +school crossing|9370695 +school day|9370755 +school dictionary|9370838 +school district|9370905 +school newspaper|9370999 +school of dentistry|9371054 +school of law|9371125 +school of medicine|9371187 +school of music|9371258 +school of nursing|9371309 +school of thought|9371358 +school paper|9371437 +school phobia|9371492 +school principal|9371529 +school ship|9371602 +school superintendent|9371642 +school system|9371697 +school teacher|9371734 +school term|9371872 +school text|9371937 +school year|9372001 +school-age child|9370390 +schoolbag|9372041 +schoolbook|9372064 +schoolboy|9372128 +schoolboyish|9372197 +schoolchild|9372249 +schoolcraft|9372335 +schooldays|9372433 +schooled|9372477 +schoolfellow|9372530 +schoolfriend|9372606 +schoolgirl|9372635 +schoolgirlish|9372685 +schoolhouse|9372731 +schooling|9372776 +schoolma'am|9372886 +schoolman|9372971 +schoolmarm|9373104 +schoolmaster|9373189 +schoolmate|9373331 +schoolmistress|9373407 +schoolroom|9373492 +schoolteacher|9373527 +schooltime|9373584 +schoolwide|9373687 +schoolwork|9373718 +schoolyard|9373767 +schooner|9373792 +schopenhauer|9373866 +schorl|9373933 +schottische|9373960 +schreiber's aster|9374040 +schrod|9374091 +schrodinger|9374143 +schrodinger equation|9374212 +schrodinger wave equation|9374311 +schtick|9374415 +schtickl|9374678 +schtik|9374747 +schtikl|9375013 +schubert|9375082 +schuller-christian disease|9375182 +schulz|9375291 +schumann|9375380 +schumann-heink|9375529 +schumpeter|9375603 +schuss|9375702 +schutzstaffel|9375722 +schwa|9375799 +schwann|9375837 +schwann cell|9375903 +schwarzwald|9375967 +schweitzer|9376047 +schweiz|9376173 +sciadopityaceae|9376279 +sciadopitys|9376361 +sciadopitys verticillata|9376429 +sciaena|9376535 +sciaena antarctica|9376585 +sciaena aquila|9376672 +sciaenid|9376748 +sciaenid fish|9376812 +sciaenidae|9376876 +sciaenops|9376937 +sciaenops ocellatus|9376993 +sciara|9377086 +sciarid|9377176 +sciaridae|9377266 +sciatic|9377329 +sciatic nerve|9377476 +sciatica|9377531 +scid|9377568 +science|9377715 +science fiction|9377884 +science lab|9377926 +science laboratory|9378029 +science museum|9378132 +science teacher|9378163 +scientific|9378207 +scientific agriculture|9378290 +scientific discipline|9378361 +scientific fact|9378503 +scientific instrument|9378540 +scientific knowledge|9378582 +scientific method|9378644 +scientific research|9378683 +scientific theory|9378738 +scientist|9378772 +scientology|9378859 +scilla|9378929 +scilla nonscripta|9378969 +scilla verna|9379102 +scilly islands|9379175 +scimitar|9379242 +scincella|9379286 +scincid|9379345 +scincid lizard|9379390 +scincidae|9379435 +scincus|9379496 +scindapsus|9379549 +scindapsus aureus|9379640 +scintilla|9379739 +scintillant|9379879 +scintillate|9380005 +scintillating|9380166 +scintillating scotoma|9380365 +scintillation|9380423 +scintillation counter|9380643 +sciolism|9380687 +sciolist|9380732 +sciolistic|9380777 +scion|9380847 +scipio|9380884 +scipio africanus|9381051 +scipio africanus major|9381228 +scipio the elder|9381411 +scire facias|9381588 +scirpus|9381629 +scirpus acutus|9381698 +scirpus cyperinus|9381780 +scission|9381842 +scissor|9381872 +scissor grip|9381934 +scissor-tailed|9381893 +scissors|9382008 +scissors grip|9382157 +scissors hold|9382231 +scissors kick|9382305 +scissortail|9382342 +scissortailed flycatcher|9382470 +scissure|9382598 +sciuridae|9382656 +sciuromorpha|9382716 +sciurus|9382786 +sciurus carolinensis|9382838 +sciurus griseus|9382938 +sciurus hudsonicus|9383015 +sciurus niger|9383151 +sciurus vulgaris|9383236 +sclaff|9383319 +sclera|9383391 +scleral veins|9383432 +scleranthus|9383501 +scleranthus annuus|9383578 +scleredema|9383643 +sclerite|9383691 +scleritis|9383729 +scleroderma|9383775 +scleroderma aurantium|9383902 +scleroderma bovista|9384031 +scleroderma citrinum|9384152 +scleroderma flavidium|9384280 +sclerodermataceae|9384403 +sclerodermatales|9384487 +sclerometer|9384566 +scleroparei|9384642 +scleroprotein|9384706 +sclerosed|9384755 +sclerosing leukoencephalitis|9384793 +sclerosis|9385054 +sclerotic|9385094 +sclerotic coat|9385148 +sclerotinia|9385189 +sclerotiniaceae|9385217 +sclerotium|9385295 +sclerotium disease|9385372 +sclerotium rot|9385429 +sclerotomy|9385486 +sclk|9385541 +scnt|9385598 +scoff|9385728 +scoffer|9385959 +scoffing|9386063 +scoffingly|9386117 +scofflaw|9386168 +scoinson arch|9386225 +scoke|9386268 +scold|9386338 +scolder|9386701 +scolding|9386786 +scolion|9386929 +scoliosis|9386964 +scollop|9387000 +scolopacidae|9387231 +scolopax|9387298 +scolopax rusticola|9387351 +scolopendrium|9387425 +scolopendrium nigripes|9387453 +scolymus|9387553 +scolymus hispanicus|9387615 +scolytidae|9387700 +scolytus|9387787 +scolytus multistriatus|9387845 +scomber|9387929 +scomber colias|9387979 +scomber japonicus|9388044 +scomber scombrus|9388119 +scomberesocidae|9388194 +scomberesox|9388307 +scomberesox saurus|9388397 +scomberomorus|9388490 +scomberomorus cavalla|9388558 +scomberomorus maculatus|9388655 +scomberomorus regalis|9388729 +scomberomorus sierra|9388821 +scombresocidae|9388896 +scombresox|9389008 +scombridae|9389097 +scombroid|9389158 +scombroid fish|9389224 +scombroidea|9389290 +sconce|9389357 +sconcheon arch|9389434 +scone|9389477 +scoop|9389504 +scoop out|9389961 +scoop shot|9390077 +scoop shovel|9390113 +scoop up|9390148 +scoopful|9390230 +scoot|9390267 +scooter|9390407 +scopal|9390596 +scope|9390618 +scopes|9390807 +scopes trial|9391095 +scophthalmus|9391136 +scophthalmus aquosus|9391201 +scophthalmus rhombus|9391298 +scopolamine|9391390 +scopolia|9391429 +scopolia carniolica|9391491 +scops owl|9391562 +scorbutic|9391622 +scorbutus|9391669 +scorch|9391724 +scorched|9391941 +scorched-earth policy|9392024 +scorcher|9392091 +scorching|9392158 +score|9392181 +score out|9392815 +score paper|9392878 +scoreboard|9392917 +scorecard|9392948 +scorekeeper|9392996 +scoreless|9393033 +scorer|9393082 +scores|9393159 +scoria|9393714 +scoring|9393746 +scoring system|9393797 +scorn|9393857 +scorned|9394061 +scorner|9394110 +scornful|9394173 +scornfully|9394297 +scorpaena|9394376 +scorpaena grandicornis|9394432 +scorpaenid|9394547 +scorpaenid fish|9394612 +scorpaenidae|9394677 +scorpaenoid|9394744 +scorpaenoid fish|9394817 +scorpaenoidea|9394890 +scorpio|9394963 +scorpio the scorpion|9395197 +scorpioid cyme|9395329 +scorpion|9395358 +scorpion fish|9395581 +scorpion fly|9395738 +scorpion shell|9395771 +scorpion weed|9395801 +scorpionfish|9395934 +scorpionida|9396010 +scorpionweed|9396074 +scorpius|9396126 +scorsese|9396175 +scorzonera|9396265 +scorzonera hispanica|9396385 +scot|9396497 +scot and lot|9396544 +scotch|9396610 +scotch and soda|9396985 +scotch asphodel|9397035 +scotch broom|9397109 +scotch broth|9397215 +scotch egg|9397255 +scotch fir|9397291 +scotch gale|9397387 +scotch kiss|9397454 +scotch laburnum|9397493 +scotch marigold|9397587 +scotch pancake|9397697 +scotch pine|9397765 +scotch tape|9397862 +scotch terrier|9397956 +scotch thistle|9398028 +scotch whiskey|9398145 +scotch whisky|9398245 +scotch woodcock|9398344 +scotchman|9398390 +scotchwoman|9398442 +scoter|9398510 +scotland|9398543 +scotland yard|9398603 +scotoma|9398695 +scotomatous|9398774 +scotopic vision|9398856 +scots|9398964 +scots english|9399134 +scots gaelic|9399211 +scots heather|9399283 +scots pine|9399362 +scotsman|9399458 +scotswoman|9399509 +scott|9399576 +scott joplin|9399955 +scott's spleenwort|9399858 +scottie|9400006 +scottish|9400071 +scottish deerhound|9400204 +scottish gaelic|9400277 +scottish highlander|9400352 +scottish lallans|9400436 +scottish maple|9400516 +scottish reel|9400587 +scottish terrier|9400657 +scoundrel|9400731 +scoundrelly|9400793 +scour|9400867 +scoured|9401009 +scourer|9401038 +scourge|9401089 +scourge of god|9401394 +scourge of the gods|9401478 +scourger|9401567 +scouring|9401602 +scouring pad|9401690 +scouring rush|9401725 +scours|9401838 +scouse|9401911 +scout|9401951 +scout car|9402155 +scout group|9402237 +scout troop|9402293 +scouter|9402349 +scouting|9402382 +scouting trip|9402486 +scoutmaster|9402520 +scow|9402548 +scowl|9402601 +scowling|9402686 +scrabble|9402729 +scrabbly|9402852 +scrag|9402885 +scrag end|9403068 +scraggly|9403105 +scraggy|9403130 +scram|9403217 +scramble|9403288 +scrambled|9403603 +scrambled egg|9403648 +scrambler|9403676 +scranch|9403773 +scranton|9403839 +scrap|9403895 +scrap iron|9404339 +scrap metal|9404396 +scrapbook|9404437 +scrape|9404462 +scrape along|9404882 +scrape by|9405016 +scrape up|9405150 +scraped|9405239 +scraper|9405305 +scrapheap|9405332 +scrapie|9405534 +scraping|9405566 +scrapper|9405667 +scrappily|9405776 +scrappiness|9405806 +scrappy|9405861 +scraps|9405889 +scratch|9406176 +scratch along|9406716 +scratch awl|9406850 +scratch out|9406890 +scratch pad|9406959 +scratch paper|9407104 +scratch race|9407164 +scratch sheet|9407191 +scratch test|9407235 +scratch up|9407267 +scratched|9407309 +scratcher|9407344 +scratchiness|9407472 +scratching|9407527 +scratchpad|9407590 +scratchy|9407677 +scraunch|9407719 +scrawl|9407785 +scrawled|9407875 +scrawler|9407901 +scrawniness|9407936 +scrawny|9407986 +screak|9408078 +screakily|9408241 +screaky|9408279 +scream|9408380 +screamer|9408764 +screaming|9408953 +screaming meemies|9409226 +scree|9409295 +screech|9409347 +screech owl|9409659 +screecher|9409779 +screeching|9409858 +screechy|9410048 +screed|9410120 +screen|9410225 +screen actor|9410798 +screen background|9410875 +screen door|9410939 +screen font|9410972 +screen memory|9411030 +screen off|9411060 +screen out|9411108 +screen pass|9411174 +screen saver|9411215 +screen test|9411259 +screener|9411296 +screening|9411320 +screenland|9411475 +screenplay|9411533 +screenwriter|9411576 +screw|9411623 +screw auger|9412628 +screw augur|9412675 +screw bean|9412745 +screw eye|9412939 +screw jack|9412968 +screw key|9413003 +screw log|9413037 +screw pine|9413084 +screw propeller|9413118 +screw thread|9413169 +screw tree|9413202 +screw up|9413233 +screw wrench|9413550 +screw-loose|9412474 +screw-pine family|9412509 +screw-topped|9412599 +screwball|9413609 +screwballer|9413789 +screwbean|9413833 +screwbean mesquite|9413927 +screwdriver|9414021 +screwing|9414068 +screwtop|9414308 +screwup|9414336 +screwy|9414380 +scriabin|9414415 +scribble|9414502 +scribbler|9414643 +scribbling block|9414710 +scribe|9414770 +scriber|9414960 +scribing block|9415000 +scrim|9415062 +scrimmage|9415107 +scrimmage line|9415250 +scrimp|9415297 +scrimpy|9415330 +scrimshank|9415372 +scrimshanker|9415427 +scrimshaw|9415465 +scrimy|9415492 +scrip|9415562 +scripps|9415598 +script|9415741 +scripted|9415906 +scriptural|9415941 +scripture|9416062 +scriptwriter|9416314 +scrivened|9416350 +scrivener|9416377 +scrod|9416420 +scrofula|9416473 +scrofulous|9416531 +scroll|9416587 +scroll saw|9416703 +scrooge|9416767 +scrophularia|9416816 +scrophulariaceae|9416890 +scrophulariales|9417009 +scrotal|9417084 +scrotal vein|9417113 +scrotum|9417180 +scrounge|9417210 +scrounger|9417297 +scrub|9417348 +scrub beefwood|9417739 +scrub bird|9417798 +scrub brush|9418028 +scrub fowl|9418080 +scrub nurse|9418175 +scrub oak|9418202 +scrub palmetto|9418234 +scrub pine|9418295 +scrub plane|9418383 +scrub typhus|9418446 +scrub up|9418524 +scrub-bird|9417509 +scrubbed|9418558 +scrubber|9418582 +scrubbing|9418664 +scrubbing brush|9418725 +scrubbird|9418777 +scrubby|9418845 +scrubland|9418910 +scrubs|9418948 +scruff|9419095 +scruffy|9419145 +scrum|9419173 +scrummage|9419227 +scrumptious|9419281 +scrumptiously|9419374 +scrumpy|9419419 +scrunch|9419448 +scrunch up|9419659 +scruple|9419804 +scruples|9419978 +scrupulous|9420108 +scrupulously|9420201 +scrupulousness|9420250 +scrutin de liste|9420378 +scrutin de liste system|9420471 +scrutin uninomial system|9420564 +scrutin uninominal voting system|9420726 +scrutineer|9420888 +scrutinise|9420937 +scrutiniser|9421076 +scrutinize|9421128 +scrutinizer|9421267 +scrutiny|9421319 +scry|9421408 +scsi|9421427 +scuba|9421493 +scuba diver|9421593 +scuba diving|9421645 +scud|9421689 +scudding|9421886 +scuff|9421933 +scuffer|9422126 +scuffle|9422150 +scuffle hoe|9422357 +scuffs|9422400 +scull|9422525 +sculler|9422592 +scullery|9422623 +sculling|9422646 +scullion|9422675 +sculpin|9422710 +sculpt|9422756 +sculpted|9422844 +sculptor|9422894 +sculptress|9422996 +sculptural|9423056 +sculptural relief|9423173 +sculpture|9423244 +sculptured|9423464 +sculpturer|9423562 +sculpturesque|9423634 +scum|9423695 +scum bag|9423769 +scumble|9423906 +scummy|9423952 +scunner|9424046 +scup|9424071 +scupper|9424253 +scuppernong|9424442 +scurf|9424487 +scurfy|9424581 +scurrility|9424677 +scurrilous|9424757 +scurry|9424826 +scurrying|9424919 +scurvily|9424952 +scurvy|9424983 +scurvy grass|9425095 +scut|9425235 +scut work|9425254 +scutch grass|9425319 +scutcheon|9425425 +scute|9425549 +scutellaria|9425584 +scutellaria lateriflora|9425655 +scutigera|9425793 +scutigera coleoptrata|9425854 +scutigerella|9425933 +scutigerella immaculata|9426003 +scutigeridae|9426114 +scuttle|9426186 +scuttlebutt|9426327 +scyliorhinidae|9426378 +scylla|9426451 +scyphozoa|9426489 +scyphozoan|9426581 +scyphus|9426624 +scythe|9426645 +scythia|9426691 +scythian|9426788 +scythian lamb|9426908 +sd|9426973 +se|9427050 +sea|9427178 +sea anchor|9428461 +sea anemone|9428509 +sea animal|9428559 +sea ash|9428670 +sea aster|9428759 +sea bass|9428813 +sea bathing|9428891 +sea bird|9428920 +sea biscuit|9429048 +sea boat|9429125 +sea bottom|9429148 +sea bream|9429242 +sea breeze|9429327 +sea captain|9429377 +sea catfish|9429444 +sea change|9429489 +sea chantey|9429544 +sea chest|9429597 +sea chub|9429622 +sea coal|9429672 +sea cole|9429716 +sea cow|9429781 +sea cradle|9429838 +sea crawfish|9429925 +sea creature|9430010 +sea cucumber|9430121 +sea dahlia|9430166 +sea dog|9430243 +sea duck|9430330 +sea eagle|9430353 +sea elephant|9430449 +sea eryngium|9430518 +sea fan|9430589 +sea feather|9430632 +sea gooseberry|9430679 +sea green|9430725 +sea gull|9430769 +sea hare|9430887 +sea holly|9430941 +sea holm|9431074 +sea horse|9431145 +sea island cotton|9431333 +sea kale|9431413 +sea king|9431478 +sea ladder|9431534 +sea lamprey|9431571 +sea lane|9431642 +sea lavender|9431695 +sea lawyer|9431759 +sea lettuce|9431842 +sea level|9431893 +sea lily|9431924 +sea lion|9431950 +sea louse|9431979 +sea lyme grass|9432016 +sea mat|9432104 +sea mew|9432173 +sea mile|9432237 +sea milkwort|9432281 +sea moss|9432367 +sea mouse|9432453 +sea nymph|9432524 +sea of azof|9432555 +sea of azoff|9432617 +sea of azov|9432680 +sea of cortes|9432742 +sea of japan|9432803 +sea of marmara|9432842 +sea of marmora|9432916 +sea of okhotsk|9432990 +sea onion|9433033 +sea otter|9433152 +sea pea|9433222 +sea pen|9433296 +sea pink|9433334 +sea poacher|9433387 +sea poker|9433455 +sea poppy|9433523 +sea power|9433609 +sea purse|9433771 +sea puss|9433941 +sea raven|9434111 +sea robber|9434163 +sea robin|9434272 +sea room|9434389 +sea rover|9434427 +sea scallop|9434536 +sea scooter|9434648 +sea scorpion|9434711 +sea scout|9434787 +sea serpent|9434816 +sea slater|9434856 +sea slug|9434893 +sea snail|9434941 +sea snake|9435059 +sea spider|9435101 +sea spray|9435142 +sea spurry|9435167 +sea squab|9435222 +sea squill|9435272 +sea squirt|9435343 +sea star|9435372 +sea starwort|9435410 +sea steps|9435464 +sea swallow|9435501 +sea tang|9435542 +sea tangle|9435573 +sea trifoly|9435603 +sea trout|9435689 +sea turtle|9435802 +sea urchin|9435843 +sea wolf|9435874 +sea wormwood|9435946 +sea wrack|9436018 +sea-coast|9427410 +sea-duty|9427540 +sea-ear|9427615 +sea-god|9427677 +sea-green|9427722 +sea-lavender family|9427751 +sea-lettuce family|9427866 +sea-level|9427937 +sea-poose|9427974 +sea-purse|9428063 +sea-puss|9428233 +sea-rocket|9428403 +seabag|9436149 +seabeach sandwort|9436180 +seabed|9436235 +seabird|9436329 +seaboard|9436376 +seaborg|9436436 +seaborne|9436509 +seacoast|9436534 +seafarer|9436583 +seafaring|9436670 +seafood|9436803 +seafood newburg|9436825 +seafood sauce|9436871 +seafowl|9436915 +seafront|9436962 +seagirt|9436991 +seagoing|9437017 +seagrass|9437060 +seagull|9437086 +seahorse|9437123 +seal|9437231 +seal bomb|9437772 +seal in|9437808 +seal limbs|9437841 +seal of approval|9437882 +seal off|9437956 +seal oil|9438051 +seal ring|9438080 +sealant|9438121 +sealed|9438162 +sealed instrument|9438363 +sealed off|9438436 +sealer|9438463 +sealing|9438532 +sealing material|9438574 +sealing wax|9438615 +sealskin|9438676 +sealskin tent|9438723 +sealyham|9438783 +sealyham terrier|9438841 +seam|9438907 +seaman|9439045 +seamanlike|9439211 +seamanly|9439251 +seamanship|9439280 +seamed|9439356 +seamless|9439427 +seamount|9439534 +seamster|9439567 +seamstress|9439642 +seamy|9439747 +sean o'casey|9439803 +seanad|9439867 +seanad eireann|9439911 +seance|9439963 +seaplane|9440016 +seaport|9440105 +seaquake|9440148 +sear|9440218 +search|9440365 +search and destroy mission|9440632 +search and rescue mission|9440693 +search engine|9440763 +search language|9440840 +search mission|9440913 +search party|9440962 +search warrant|9440998 +searcher|9441030 +searcher beetle|9441195 +searching|9441257 +searching fire|9441366 +searchlight|9441402 +seared|9441442 +searing iron|9441465 +searobin|9441505 +seascape|9441541 +seashell|9441591 +seashore|9441615 +seashore mallow|9441664 +seasick|9441696 +seasickness|9441747 +seaside|9441815 +seaside alder|9441875 +seaside centaury|9441930 +seaside daisy|9441965 +seaside goldenrod|9442027 +seaside mahoe|9442102 +seaside scrub oak|9442182 +seasnail|9442249 +season|9442358 +season ticket|9442576 +seasonable|9442625 +seasonableness|9442702 +seasonably|9442744 +seasonal|9442789 +seasonal adjustment|9442816 +seasoned|9442866 +seasoned salt|9442961 +seasoner|9443043 +seasoning|9443142 +seat|9443252 +seat belt|9443800 +seat cushion|9443856 +seated|9443886 +seating|9443917 +seating area|9444001 +seating capacity|9444070 +seating room|9444148 +seats|9444217 +seattle|9444671 +seattle slew|9444754 +seawall|9444802 +seaward|9444870 +seawards|9444953 +seawater|9444998 +seaway|9445042 +seaweed|9445095 +seaworthiness|9445123 +seaworthy|9445164 +seb|9445248 +sebaceous|9445356 +sebaceous cyst|9445408 +sebaceous follicle|9445466 +sebaceous gland|9445539 +sebacic acid|9445612 +sebastian cabot|9445667 +sebastian vizcaino|9445757 +sebastiana|9445833 +sebastodes|9445899 +sebastodes caurinus|9445958 +sebastodes marinus|9446032 +sebastodes miniatus|9446109 +sebastodes ruberrimus|9446194 +sebastopol|9446269 +sebe|9446340 +seborrhea|9446397 +seborrheic dermatitis|9446491 +seborrheic eczema|9446551 +seborrheic keratosis|9446611 +sebs|9446651 +sebum|9446811 +sec|9446836 +secale|9447020 +secale cereale|9447086 +secant|9447149 +secateurs|9447231 +secede|9447265 +secern|9447345 +secernate|9447459 +secernment|9447573 +secession|9447684 +secessionism|9447808 +secessionist|9447893 +sechuana|9447953 +seckel|9448002 +seckel pear|9448035 +seclude|9448068 +secluded|9448133 +seclusion|9448220 +secobarbital|9448301 +secobarbital sodium|9448373 +seconal|9448445 +second|9448525 +second advent|9449719 +second adventism|9449824 +second adventist|9449909 +second balcony|9449972 +second banana|9450044 +second base|9450175 +second baseman|9450228 +second battle of ypres|9450276 +second best|9450368 +second childhood|9450449 +second class|9450524 +second coming|9450615 +second coming of christ|9450720 +second cousin|9450835 +second cranial nerve|9450876 +second crusade|9450959 +second deck|9451006 +second earl grey|9451042 +second earl of chatham|9451135 +second earl of guilford|9451257 +second empire|9451368 +second epistel of john|9451412 +second epistle of paul the apostle to the corinthians|9451480 +second epistle of paul the apostle to the thessalonians|9451651 +second epistle of paul the apostle to timothy|9451830 +second epistle of peter|9451973 +second epistle to the corinthians|9452044 +second epistle to the thessalonians|9452195 +second epistle to timothy|9452354 +second estate|9452477 +second fiddle|9452536 +second gear|9452652 +second growth|9452700 +second half|9452741 +second hand|9452777 +second joint|9452886 +second law of motion|9452938 +second law of thermodynamics|9453068 +second lieutenant|9453128 +second marquis of rockingham|9453166 +second moment|9453301 +second mortgage|9453331 +second nature|9453365 +second period|9453403 +second person|9453461 +second power|9453491 +second reading|9453527 +second reich|9453564 +second sacker|9453625 +second sight|9453673 +second stomach|9453795 +second thought|9453859 +second trimester|9453975 +second wind|9454011 +second world war|9454120 +second-best|9449042 +second-class|9449068 +second-degree burn|9449099 +second-guess|9449132 +second-hand speech|9449242 +second-hand store|9449283 +second-in-command|9449332 +second-place finish|9449377 +second-rate|9449430 +second-rater|9449474 +second-sighted|9449560 +second-string|9449631 +second-year|9449675 +secondary|9454198 +secondary amenorrhea|9454666 +secondary cell|9454726 +secondary censorship|9454782 +secondary coil|9454836 +secondary dentition|9454893 +secondary diagonal|9454938 +secondary dysmenorrhea|9454975 +secondary education|9455020 +secondary emission|9455110 +secondary hypertension|9455147 +secondary modern school|9455212 +secondary school|9455299 +secondary sex character|9455369 +secondary sex characteristic|9455464 +secondary storage|9455559 +secondary syphilis|9455650 +secondary winding|9455696 +seconder|9455753 +secondhand|9455825 +secondly|9455871 +secondment|9455895 +secondo|9455976 +secotiaceae|9456004 +secotiales|9456070 +secpar|9456131 +secrecy|9456169 +secret|9456277 +secret agent|9456790 +secret approval|9456868 +secret ballot|9456940 +secret code|9456992 +secret intelligence service|9457044 +secret plan|9457178 +secret police|9457225 +secret service|9457285 +secret society|9457413 +secret writing|9457449 +secretaire|9457594 +secretarial|9457654 +secretarial assistant|9457706 +secretarial school|9457779 +secretariat|9457814 +secretariate|9457920 +secretary|9457994 +secretary bird|9458178 +secretary general|9458262 +secretary of agriculture|9458331 +secretary of commerce|9458490 +secretary of commerce and labor|9458634 +secretary of defense|9458721 +secretary of education|9458860 +secretary of energy|9459009 +secretary of health and human services|9459143 +secretary of health education and welfare|9459300 +secretary of housing and urban development|9459407 +secretary of labor|9459576 +secretary of state|9459705 +secretary of state for the home department|9459855 +secretary of the interior|9459982 +secretary of the navy|9460138 +secretary of the treasury|9460220 +secretary of transportation|9460376 +secretary of veterans affairs|9460550 +secretary of war|9460680 +secretaryship|9460751 +secretase|9460829 +secrete|9460855 +secreter|9460937 +secretin|9460992 +secretion|9461047 +secretive|9461178 +secretiveness|9461272 +secretly|9461377 +secretor|9461426 +secretory|9461481 +secretory organ|9461558 +secretory phase|9461613 +sect|9461663 +sectarian|9461784 +sectarianism|9461934 +sectarist|9462003 +sectary|9462046 +section|9462089 +section eight|9462553 +section gang|9462689 +section hand|9462732 +section man|9462791 +sectional|9462831 +sectionalisation|9462887 +sectionalise|9462986 +sectionalism|9463070 +sectionalization|9463139 +sectionalize|9463238 +sectioned|9463322 +sector|9463359 +sectorial|9463605 +sectral|9463659 +secular|9463763 +secular games|9463797 +secular humanism|9463858 +secularisation|9463956 +secularise|9464046 +secularised|9464095 +secularism|9464136 +secularist|9464219 +secularization|9464277 +secularize|9464367 +secularized|9464432 +secundigravida|9464473 +secure|9464516 +secured|9465232 +secured bond|9465334 +securely|9465378 +secureness|9465402 +securer|9465499 +securities analyst|9465534 +securities and exchange commission|9465588 +securities firm|9465690 +securities industry|9465776 +securities law|9465821 +securities market|9465863 +security|9465927 +security blanket|9466351 +security consultant|9466404 +security council|9466460 +security department|9466514 +security deposit|9466571 +security director|9466625 +security force|9466681 +security guard|9466744 +security intelligence|9466791 +security intelligence review committee|9466842 +security interest|9466968 +security measures|9467010 +security review|9467123 +security service|9467189 +security staff|9467301 +security system|9467331 +sed rate|9467415 +sedalia|9467492 +sedan|9467522 +sedan chair|9467600 +sedate|9467634 +sedated|9467756 +sedately|9467784 +sedateness|9467808 +sedation|9467911 +sedative|9468022 +sedative drug|9468391 +sedative-hypnotic|9468209 +sedative-hypnotic drug|9468300 +sedentary|9468513 +seder|9468541 +sedge|9468585 +sedge bird|9468634 +sedge family|9468746 +sedge warbler|9468829 +sedge wren|9468941 +sedgelike|9469117 +sedgy|9469152 +sediment|9469174 +sedimentary|9469276 +sedimentary clay|9469313 +sedimentary rock|9469349 +sedimentation|9469386 +sedimentation rate|9469451 +sedition|9469528 +seditious|9469621 +seduce|9469749 +seducer|9469810 +seduction|9469897 +seductive|9469962 +seductively|9470073 +sedulity|9470104 +sedulous|9470170 +sedulousness|9470207 +sedum|9470273 +sedum acre|9470310 +sedum rosea|9470363 +sedum telephium|9470426 +see|9470508 +see also|9471680 +see double|9471715 +see eye to eye|9471747 +see red|9471797 +see the light|9471836 +see through|9471917 +see to it|9471996 +see-through|9471586 +seeable|9472071 +seed|9472200 +seed beetle|9472634 +seed cake|9472674 +seed catalog|9472788 +seed catalogue|9472843 +seed coat|9472898 +seed corn|9472955 +seed fern|9472996 +seed grain|9473039 +seed lac|9473080 +seed leaf|9473102 +seed money|9473141 +seed oyster|9473185 +seed pearl|9473213 +seed plant|9473239 +seed shrimp|9473312 +seed stock|9473367 +seed vessel|9473404 +seed weevil|9473466 +seedbed|9473506 +seedcake|9473527 +seedcase|9473560 +seeded|9473591 +seeded player|9473676 +seeded raisin|9473723 +seeder|9473753 +seediness|9473883 +seedless|9473934 +seedless raisin|9473978 +seedlike|9474018 +seedling|9474046 +seedman|9474100 +seedpod|9474157 +seedsman|9474184 +seedtime|9474241 +seedy|9474285 +seeger|9474434 +seeing|9474566 +seeing red|9474752 +seeing-eye dog|9474706 +seek|9474824 +seek out|9474982 +seek time|9475021 +seeker|9475063 +seeking|9475175 +seel|9475281 +seeland|9475301 +seem|9475351 +seeming|9475421 +seemingly|9475470 +seemliness|9475528 +seemly|9475588 +seep|9475657 +seepage|9475697 +seeping|9475739 +seer|9475774 +seersucker|9475910 +seesaw|9475960 +seethe|9476093 +seething|9476211 +segal|9476238 +segment|9476312 +segmental|9476432 +segmental arch|9476494 +segmentation|9476523 +segmentation cavity|9476670 +segmented|9476776 +segmented worm|9476823 +segno|9476873 +sego lily|9476905 +segovia|9476963 +segregate|9477036 +segregated|9477140 +segregation|9477260 +segregationist|9477447 +segregator|9477488 +segue|9477529 +sei whale|9477576 +seiche|9477635 +seidel|9477667 +seidlitz powder|9477704 +seidlitz powders|9477814 +seif dune|9478017 +seigneur|9478051 +seigneur de bayard|9478111 +seigneury|9478226 +seignior|9478303 +seigniorage|9478363 +seigniory|9478388 +seiji ozawa|9478465 +seine|9478538 +seine river|9478616 +seism|9478661 +seismal|9478723 +seismic|9478757 +seismic disturbance|9478791 +seismograph|9478857 +seismologic|9478933 +seismological|9478998 +seismologist|9479063 +seismology|9479110 +seismosaur|9479161 +seismosaurus|9479204 +seiurus|9479272 +seiurus aurocapillus|9479322 +seize|9479413 +seize on|9479767 +seize with teeth|9479851 +seized|9479887 +seizer|9479966 +seizing|9480021 +seizure|9480097 +seizure-alert dog|9480226 +sekhet|9480265 +selachian|9480313 +selachii|9480379 +selaginella|9480469 +selaginella apoda|9480531 +selaginella eatonii|9480648 +selaginella eremophila|9480755 +selaginella lepidophylla|9480867 +selaginella rupestris|9480999 +selaginellaceae|9481119 +selaginellales|9481195 +selar|9481267 +selar crumenophthalmus|9481311 +selcraig|9481408 +seldom|9481495 +select|9481517 +select committee|9481661 +selected|9481708 +selection|9481777 +selective|9482109 +selective amnesia|9482248 +selective information|9482304 +selective jamming|9482375 +selective lipectomy|9482446 +selective service|9482534 +selective service system|9482716 +selective-serotonin reuptake inhibitor|9482160 +selectively|9482816 +selectivity|9482849 +selectman|9482879 +selector|9482915 +selector switch|9483065 +selectwoman|9483140 +selenarctos|9483178 +selenarctos thibetanus|9483242 +selene|9483349 +selene setapinnis|9483422 +selene vomer|9483559 +selenic acid|9483704 +selenicereus|9483731 +selenicereus grandiflorus|9483811 +selenipedium|9483913 +selenium|9483997 +selenium cell|9484072 +selenolatry|9484168 +seles|9484210 +seleucus|9484258 +seleucus i|9484347 +seleucus i nicator|9484438 +self|9484537 +self acceptance|9498893 +self induction|9498951 +self-abasement|9484700 +self-abnegating|9484796 +self-abnegation|9484871 +self-absorbed|9485006 +self-absorption|9485052 +self-abuse|9485091 +self-accusation|9485158 +self-acting|9485231 +self-activating|9485306 +self-adapting program|9485381 +self-addressed|9485466 +self-aggrandisement|9485500 +self-aggrandising|9485598 +self-aggrandizement|9485771 +self-aggrandizing|9485869 +self-analysis|9486042 +self-annihilation|9486151 +self-appointed|9486233 +self-asserting|9486283 +self-assertion|9486343 +self-assertive|9486424 +self-assertiveness|9486509 +self-assurance|9486564 +self-assured|9486654 +self-aware|9486701 +self-awareness|9486746 +self-centered|9486828 +self-centeredness|9486895 +self-centred|9486974 +self-collected|9487041 +self-colored|9487132 +self-coloured|9487192 +self-command|9487252 +self-complacency|9487375 +self-conceited|9487456 +self-conceitedly|9487546 +self-concern|9487596 +self-condemnation|9487675 +self-confessed|9487748 +self-confidence|9487785 +self-confident|9487875 +self-conscious|9487922 +self-consciousness|9487988 +self-consistent|9488081 +self-contained|9488117 +self-contemplation|9488224 +self-contradictory|9488351 +self-control|9488475 +self-criticism|9488641 +self-cultivation|9488684 +self-deceit|9488735 +self-deception|9488785 +self-defeating|9488835 +self-defence|9488872 +self-defense|9488934 +self-denial|9488996 +self-denying|9489209 +self-deprecating|9489330 +self-depreciation|9489378 +self-destroy|9489425 +self-destruct|9489478 +self-destruction|9489531 +self-destructive|9489644 +self-determination|9489696 +self-directed|9489795 +self-direction|9489854 +self-discipline|9489944 +self-disciplined|9490032 +self-discovery|9490071 +self-disgust|9490121 +self-distrust|9490161 +self-doubt|9490250 +self-drive|9490339 +self-educated|9490429 +self-education|9490461 +self-effacement|9490512 +self-effacing|9490559 +self-employed|9490603 +self-employed person|9490636 +self-enclosed|9490695 +self-esteem|9490727 +self-evident|9490824 +self-evident truth|9490882 +self-examination|9490972 +self-examining|9491099 +self-explanatory|9491149 +self-expression|9491183 +self-feeder|9491231 +self-fertilisation|9491267 +self-fertilised|9491367 +self-fertilization|9491445 +self-fertilized|9491545 +self-flagellation|9491623 +self-forgetful|9491713 +self-fulfillment|9491747 +self-generated|9491830 +self-giving|9491959 +self-governing|9492020 +self-government|9492082 +self-gratification|9492153 +self-hatred|9492265 +self-heal|9492305 +self-help|9492373 +self-hypnosis|9492419 +self-importance|9492482 +self-important|9492581 +self-imposed|9492627 +self-improvement|9492659 +self-incrimination|9492714 +self-inductance|9492774 +self-induction|9492841 +self-indulgence|9492935 +self-indulgent|9493073 +self-insurance|9493107 +self-interest|9493141 +self-involved|9493275 +self-justification|9493321 +self-knowledge|9493402 +self-limited|9493471 +self-loader|9493503 +self-loading|9493559 +self-locking|9493617 +self-love|9493649 +self-loving|9493805 +self-made|9493869 +self-mortification|9493899 +self-moving|9493995 +self-opinionated|9494070 +self-organisation|9494142 +self-organization|9494213 +self-pity|9494284 +self-pollinated|9494310 +self-pollinating|9494388 +self-pollination|9494437 +self-portrait|9494487 +self-possessed|9494519 +self-possession|9494610 +self-praise|9494733 +self-preservation|9494792 +self-pride|9494839 +self-produced|9494890 +self-propelled|9494949 +self-propelled vehicle|9495048 +self-propelling|9495096 +self-protection|9495194 +self-punishment|9495256 +self-raising flour|9495326 +self-realisation|9495383 +self-realization|9495466 +self-referent|9495549 +self-reformation|9495591 +self-regard|9495646 +self-registering thermometer|9495706 +self-regulating|9495756 +self-reliance|9495831 +self-reliant|9495921 +self-renunciation|9495980 +self-report inventory|9496115 +self-report personality inventory|9496225 +self-reproach|9496335 +self-reproof|9496436 +self-respect|9496481 +self-respectful|9496541 +self-respecting|9496598 +self-restraint|9496655 +self-righteous|9496711 +self-righteously|9496816 +self-rising flour|9496857 +self-rule|9496914 +self-sacrifice|9496985 +self-sacrificing|9497034 +self-satisfaction|9497095 +self-satisfied|9497176 +self-sealing|9497259 +self-seeded|9497310 +self-seeker|9497360 +self-seeking|9497408 +self-service|9497507 +self-serving|9497551 +self-sowed|9497594 +self-sown|9497644 +self-starter|9497694 +self-styled|9497806 +self-sufficiency|9497851 +self-sufficient|9497941 +self-sufficing|9498009 +self-suggestion|9498077 +self-supporting|9498140 +self-sustained|9498177 +self-sustaining|9498210 +self-taught art|9498278 +self-torment|9498361 +self-torture|9498420 +self-whispered|9498479 +self-will|9498510 +self-willed|9498744 +self-winding|9498811 +self-worship|9498843 +selfish|9499060 +selfish person|9499217 +selfishly|9499279 +selfishness|9499311 +selfless|9499343 +selflessly|9499382 +selflessness|9499416 +selfsame|9499495 +selfsameness|9499550 +seljuk|9499616 +selkirk|9499668 +selkirk mountains|9499754 +selkup|9499879 +sell|9499972 +sell off|9500207 +sell out|9500230 +sell short|9500455 +sell up|9500511 +sell-by date|9500180 +sellable|9500663 +seller|9500740 +seller's market|9500812 +sellers|9500872 +sellers' market|9501024 +selling|9501084 +selling agent|9501161 +selling point|9501225 +selling price|9501254 +selling race|9501309 +selloff|9501342 +sellotape|9501390 +sellout|9501484 +selma|9501536 +selsyn|9501562 +seltzer|9501593 +selva|9501700 +selvage|9501759 +selvedge|9501820 +selznick|9501880 +semantic|9501994 +semantic error|9502023 +semantic memory|9502109 +semantic relation|9502155 +semantic role|9502202 +semanticist|9502282 +semantics|9502345 +semaphore|9502376 +semaphore plant|9502486 +semarang|9502596 +semblance|9502666 +semen|9502796 +semester|9502903 +semester hour|9503013 +semestral|9503069 +semestrial|9503132 +semi|9503195 +semi-abstraction|9503341 +semi-automatise|9503384 +semi-automatize|9503456 +semi-detached house|9503528 +semi-formal|9503612 +semi-processed|9503741 +semi-sweet chocolate|9503775 +semiabstract|9503852 +semiannual|9503894 +semiannually|9503965 +semiaquatic|9503995 +semiarid|9504065 +semiautobiographical|9504087 +semiautomatic|9504155 +semiautomatic firearm|9504318 +semiautomatic pistol|9504372 +semibreve|9504476 +semicentenary|9504529 +semicentennial|9504650 +semicircle|9504770 +semicircular|9504836 +semicircular arch|9504873 +semicircular canal|9504922 +semicolon|9504988 +semicoma|9505036 +semicomatose|9505070 +semiconducting|9505104 +semiconducting material|9505154 +semiconductive|9505211 +semiconductor|9505261 +semiconductor device|9505375 +semiconductor diode|9505448 +semiconductor unit|9505574 +semiconscious|9505647 +semiconsciousness|9505680 +semidarkness|9505754 +semidesert|9505790 +semidetached|9505882 +semidetached house|9505913 +semidiameter|9505967 +semiempirical|9505998 +semiepiphyte|9506039 +semifinal|9506119 +semifinalist|9506149 +semifluidity|9506221 +semiformal|9506253 +semigloss|9506302 +semihard|9506327 +semiliquid|9506350 +semiliterate|9506377 +semilunar|9506444 +semilunar bone|9506503 +semilunar valve|9506580 +semimajor axis|9506631 +semiminor axis|9506660 +semimonthly|9506689 +seminal|9506758 +seminal duct|9506870 +seminal fluid|9506927 +seminal vesicle|9507034 +seminar|9507072 +seminarian|9507158 +seminarist|9507212 +seminary|9507266 +seminiferous|9507323 +seminiferous tubule|9507403 +seminole|9507439 +seminole bread|9507563 +seminoma|9507647 +seminude|9507693 +semiofficial|9507721 +semiopaque|9507752 +semiotic|9507779 +semiotical|9507851 +semiotician|9507879 +semiotics|9507942 +semipermanent|9508005 +semipermeable|9508052 +semipermeable membrane|9508085 +semipolitical|9508139 +semiprecious|9508172 +semiprivate|9508203 +semipro|9508232 +semiprofessional|9508283 +semipublic|9508334 +semiquaver|9508361 +semirigid|9508419 +semiskilled|9508462 +semisoft|9508493 +semisolid|9508524 +semisweet|9508549 +semisynthetic|9508589 +semite|9508649 +semiterrestrial|9508751 +semitic|9508798 +semitic deity|9509134 +semitic-speaking|9509063 +semitone|9509199 +semitrailer|9509253 +semitrance|9509287 +semitransparency|9509323 +semitransparent|9509407 +semitropic|9509450 +semitropical|9509504 +semitropics|9509558 +semivowel|9509604 +semiweekly|9509654 +semnopithecus entellus|9509731 +semolina|9509829 +sempatch|9509853 +sempiternal|9509914 +sempiternity|9509961 +sempstress|9510016 +sen|9510121 +senate|9510167 +senate campaign|9510289 +senate race|9510358 +senator|9510427 +senatorial|9510455 +senatorship|9510485 +send|9510561 +send a message|9511071 +send around|9511131 +send away|9511193 +send back|9511414 +send down|9511456 +send for|9511499 +send in|9511544 +send off|9511575 +send on|9511688 +send out|9511733 +send packing|9511814 +send word|9511950 +send-off|9510985 +sendee|9512018 +sender|9512053 +sendero luminoso|9512117 +sending|9512250 +sendup|9512285 +sene|9512418 +seneca|9512461 +seneca snakeroot|9512646 +senecan|9512771 +senecio|9512860 +senecio aureus|9512919 +senecio bigelovii|9513026 +senecio cineraria|9513112 +senecio cruentus|9513200 +senecio doublasii|9513279 +senecio glabellus|9513350 +senecio jacobaea|9513437 +senecio milkanioides|9513523 +senecio triangularis|9513607 +senecio vulgaris|9513701 +senefelder|9513759 +senega|9513837 +senega root|9513888 +senega snakeroot|9513996 +senegal|9514104 +senegal gum|9514180 +senegalese|9514235 +senegalese franc|9514322 +seneka snakeroot|9514371 +senesce|9514496 +senescence|9514548 +senescent|9514640 +seneschal|9514676 +senga root|9514723 +senhor|9514831 +senile|9514869 +senile dementia|9514912 +senile psychosis|9514976 +senility|9515040 +senior|9515130 +senior citizen|9515336 +senior class|9515405 +senior high|9515438 +senior high school|9515560 +senior moment|9515682 +senior pilot|9515719 +senior status|9515770 +senior vice president|9515841 +seniority|9515892 +seniti|9515988 +senna|9516025 +senna alata|9516051 +senna alexandrina|9516148 +senna auriculata|9516313 +senna marilandica|9516403 +senna obtusifolia|9516500 +senna occidentalis|9516586 +sennacherib|9516713 +sennett|9516764 +sennit|9516849 +senor|9516873 +senora|9516909 +senorita|9516951 +sens|9516994 +sensate|9517162 +sensation|9517196 +sensational|9517526 +sensationalism|9517687 +sensationalist|9517926 +sensationalistic|9517998 +sense|9518060 +sense datum|9518532 +sense experience|9518608 +sense impression|9518684 +sense modality|9518760 +sense of direction|9518860 +sense of responsibility|9518894 +sense of the meeting|9518933 +sense organ|9518980 +sensed|9519033 +senseless|9519068 +senselessly|9519249 +senselessness|9519280 +sensibilise|9519362 +sensibility|9519443 +sensibilize|9519596 +sensible|9519677 +sensible horizon|9520015 +sensibleness|9520095 +sensibly|9520145 +sensify|9520180 +sensing|9520261 +sensing element|9520334 +sensitisation|9520382 +sensitise|9520546 +sensitised|9520718 +sensitiser|9520864 +sensitising|9520905 +sensitive|9521011 +sensitive fern|9521367 +sensitive pea|9521425 +sensitive plant|9521546 +sensitiveness|9521687 +sensitivity|9521840 +sensitization|9522075 +sensitize|9522239 +sensitized|9522411 +sensitizer|9522557 +sensitizing|9522598 +sensitometer|9522716 +sensor|9522816 +sensorial|9522864 +sensorimotor|9522891 +sensorimotor area|9522965 +sensorimotor region|9523042 +sensorineural hearing loss|9523119 +sensory|9523206 +sensory activity|9523308 +sensory aphasia|9523343 +sensory epilepsy|9523447 +sensory faculty|9523506 +sensory hair|9523597 +sensory nerve|9523641 +sensory neuron|9523677 +sensory receptor|9523735 +sensory system|9523788 +sensual|9523902 +sensualise|9523968 +sensualism|9524114 +sensualist|9524271 +sensuality|9524344 +sensualize|9524435 +sensually|9524667 +sensualness|9524694 +sensuous|9524785 +sensuousness|9524845 +sent|9524879 +sente|9524960 +sentence|9524997 +sentence stress|9525202 +sentence structure|9525250 +sentential|9525312 +sentential function|9525377 +sententious|9525425 +sententiously|9525479 +sentience|9525507 +sentiency|9525667 +sentient|9525758 +sentiment|9525818 +sentimental|9525891 +sentimentalisation|9526006 +sentimentalise|9526125 +sentimentalism|9526287 +sentimentalist|9526379 +sentimentality|9526468 +sentimentalization|9526558 +sentimentalize|9526677 +sentimentise|9526839 +sentimentize|9526918 +sentinel|9526997 +sentry|9527101 +sentry box|9527205 +sentry duty|9527233 +sentry go|9527308 +seoul|9527383 +sep|9527444 +sep 11|9527501 +sepal|9527573 +sepaline|9527600 +sepaloid|9527638 +separability|9527676 +separable|9527753 +separate|9527804 +separate off|9528885 +separate out|9528933 +separated|9528998 +separately|9529175 +separateness|9529258 +separation|9529401 +separation energy|9529704 +separationist|9529753 +separatism|9529825 +separatist|9529957 +separative|9530070 +separator|9530151 +separatrix|9530207 +sephardi|9530294 +sephardic jew|9530356 +sepia|9530423 +sepiidae|9530548 +sepiolite|9530606 +sepoy mutiny|9530644 +sepsis|9530739 +sept|9530765 +sept. 11|9530991 +septal|9531065 +septal defect|9531098 +septate|9531145 +septation|9531178 +september|9531276 +september 11|9531339 +september 17|9531417 +september 29|9531472 +september elm|9531545 +september equinox|9531618 +septentrion|9531701 +septet|9531745 +septette|9532014 +septic|9532230 +septic sore throat|9532436 +septic tank|9532590 +septicaemia|9532629 +septicemia|9532713 +septicemic|9532797 +septicemic plague|9532824 +septobasidiaceae|9532858 +septobasidium|9532939 +septobasidium pseudopedicellatum|9533009 +septrional|9533103 +septuagenarian|9533132 +septuagesima|9533202 +septuagesima sunday|9533276 +septuagint|9533357 +septum|9533402 +septuple|9533447 +sepulcher|9533484 +sepulchral|9533557 +sepulchre|9533652 +sepulture|9533725 +sequel|9533852 +sequela|9533981 +sequella|9534040 +sequenator|9534080 +sequence|9534126 +sequencer|9534446 +sequent|9534526 +sequential|9534649 +sequential operation|9534715 +sequentially|9534794 +sequester|9534827 +sequestered|9535040 +sequestrate|9535130 +sequestration|9535271 +sequin|9535432 +sequined|9535475 +sequoia|9535597 +sequoia gigantea|9535630 +sequoia national park|9535773 +sequoia sempervirens|9535840 +sequoia wellingtonia|9535940 +sequoiadendron|9536087 +sequoiadendron giganteum|9536159 +sequoya|9536310 +sequoyah|9536396 +seraglio|9536483 +serail|9536546 +serape|9536609 +seraph|9536638 +seraphic|9536660 +seraphical|9536751 +serax|9536785 +serb|9536918 +serbia|9536950 +serbia and montenegro|9537052 +serbian|9537192 +serbo-croat|9537318 +serbo-croatian|9537416 +serdica|9537517 +sere|9537583 +serenade|9537645 +serendipitous|9537772 +serendipity|9537801 +serene|9537851 +sereness|9537903 +serenity|9537951 +serenoa|9538163 +serenoa repens|9538232 +serer|9538308 +serf|9538342 +serfdom|9538377 +serfhood|9538455 +serflike|9538533 +serge|9538558 +serge koussevitzky|9538603 +sergeant|9538732 +sergeant at arms|9538964 +sergeant first class|9539028 +sergeant fish|9539082 +sergeant major|9539164 +sergeant-at-law|9538895 +sergei aleksandrovich koussevitzky|9539262 +sergei diaghilev|9539407 +sergei eisenstein|9539515 +sergei mikhailovich eisenstein|9539649 +sergei pavlovich diaghilev|9539796 +sergei rachmaninoff|9539914 +sergei rachmaninov|9540100 +sergei sergeyevich prokofiev|9540285 +sergei vasilievich rachmaninoff|9540371 +sergei vasilievich rachmaninov|9540569 +serger|9540766 +serial|9540797 +serial killer|9541035 +serial monogamy|9541104 +serial murderer|9541153 +serial music|9541222 +serial operation|9541260 +serial port|9541339 +serial printer|9541375 +serial processing|9541470 +serial publication|9541513 +serialisation|9541566 +serialise|9541626 +serialism|9541670 +serialization|9541708 +serialize|9541768 +sericea lespedeza|9541812 +sericeous|9541897 +sericocarpus|9541957 +sericterium|9542031 +serictery|9542113 +sericultural|9542195 +sericulture|9542274 +sericulturist|9542360 +seriema|9542405 +series|9542524 +series circuit|9542773 +serif|9542841 +serigraph|9542868 +serigraphy|9542922 +serin|9542954 +serine|9542975 +serinus|9543021 +serinus canaria|9543071 +seriocomedy|9543145 +seriocomic|9543185 +seriocomical|9543237 +seriola|9543289 +seriola dorsalis|9543339 +seriola grandis|9543398 +seriola zonata|9543453 +serious|9543526 +serious music|9543895 +serious-mindedness|9543827 +seriously|9543980 +seriousness|9544048 +seriph|9544203 +seriphidium|9544230 +seriphidium canum|9544301 +seriphidium maritimum|9544421 +seriphidium tridentatum|9544515 +seriphus|9544638 +seriphus politus|9544691 +serjeant|9544766 +serjeant-at-arms|9544835 +serjeant-at-law|9544899 +serkin|9544968 +sermon|9545026 +sermon on the mount|9545120 +sermonise|9545196 +sermoniser|9545269 +sermonize|9545358 +sermonizer|9545431 +serologic|9545520 +serological|9545566 +serologist|9545612 +serology|9545650 +serosa|9545684 +serotine|9545738 +serotonin|9545827 +serous|9545893 +serous membrane|9545967 +serow|9546021 +serpasil|9546050 +serpens|9546151 +serpent|9546190 +serpent fern|9546367 +serpent star|9546465 +serpent-worship|9546307 +serpentes|9546524 +serpentine|9546610 +serra|9546661 +serranid|9546736 +serranid fish|9546800 +serranidae|9546864 +serranus|9546925 +serranus subligarius|9546978 +serrasalmus|9547054 +serrate|9547116 +serrate leaf|9547187 +serrated|9547230 +serrated wrack|9547290 +serratia|9547346 +serratia marcescens|9547403 +serration|9547469 +serratula|9547529 +serratula tinctoria|9547594 +serratus|9547673 +serratus anterior|9547740 +serratus magnus|9547861 +serratus muscles|9547982 +serratus posterior|9548049 +serratus posterior inferior|9548157 +serratus posterior superior|9548267 +serried|9548377 +serrulate|9548402 +sertoli cell|9548484 +sertoli's cell|9548427 +sertraline|9548539 +sertularia|9548610 +sertularian|9548677 +serum|9548716 +serum albumin|9548802 +serum disease|9548841 +serum globulin|9548905 +serum hepatitis|9548938 +serum sickness|9548991 +serval|9549055 +servant|9549092 +servant girl|9549282 +servant's entrance|9549181 +serve|9549334 +serve up|9549915 +serve well|9549986 +server|9550027 +service|9550255 +service abroad|9550956 +service agency|9551031 +service area|9551090 +service book|9551141 +service break|9551223 +service bureau|9551262 +service call|9551321 +service cap|9551348 +service ceiling|9551402 +service charge|9551450 +service club|9551493 +service contract|9551572 +service cutback|9551607 +service department|9551640 +service door|9551726 +service elevator|9551827 +service entrance|9551884 +service fee|9551985 +service firm|9552028 +service industry|9552087 +service line|9552122 +service man|9552158 +service of process|9552334 +service program|9552396 +service road|9552499 +service routine|9552559 +service staff|9552649 +service station|9552696 +service stripe|9552729 +service tree|9552781 +serviceability|9552919 +serviceable|9552989 +serviceableness|9553226 +serviceberry|9553296 +serviced|9553413 +serviceman|9553463 +services|9553549 +servicing|9554285 +serviette|9554367 +servile|9554425 +servilely|9554574 +servility|9554619 +serving|9554681 +serving cart|9554816 +serving dish|9554869 +serving girl|9554896 +servitor|9554948 +servitude|9554992 +servo|9555053 +servomechanical|9555147 +servomechanism|9555192 +servosystem|9555249 +serzone|9555306 +sesame|9555377 +sesame family|9555449 +sesame oil|9555516 +sesame seed|9555554 +sesamoid bone|9555644 +sesamum|9555690 +sesamum indicum|9555741 +sesbania|9555829 +sesbania exaltata|9555871 +sesbania grandiflora|9555945 +seseli|9556045 +sesotho|9556099 +sesquipedalia|9556137 +sesquipedalian|9556206 +sesquipedality|9556319 +sess|9556366 +sessile|9556490 +sessile polyp|9556549 +sessile trillium|9556586 +session|9556682 +session cookie|9556856 +sessions|9556887 +sestet|9557160 +set|9557460 +set ablaze|9559627 +set about|9559693 +set afire|9559840 +set aflame|9559906 +set ahead|9559972 +set apart|9560003 +set ashore|9560143 +set aside|9560190 +set back|9560299 +set chisel|9560449 +set decoration|9560488 +set down|9560546 +set forth|9560800 +set free|9560996 +set gun|9561038 +set in|9561070 +set in motion|9561118 +set in stone|9561162 +set of bookshelves|9561213 +set off|9561262 +set on|9561722 +set on fire|9561760 +set out|9561826 +set phrase|9562024 +set piece|9562119 +set point|9562152 +set shot|9562177 +set square|9562211 +set theory|9562242 +set to music|9562279 +set up|9562315 +set upon|9563079 +set-apart|9559347 +set-aside|9559403 +set-back|9559446 +set-to|9559583 +seta|9563132 +setaceous|9563167 +setaria|9563282 +setaria glauca|9563351 +setaria italica|9563490 +setaria italica rubrofructa|9563599 +setaria italica stramineofructa|9563742 +setaria viridis|9563912 +setback|9564053 +sete quedas|9564137 +seth|9564206 +seth thomas|9564271 +setline|9564333 +setoff|9564397 +seton|9564452 +setophaga|9564552 +setophaga ruticilla|9564608 +setose|9564704 +setscrew|9564819 +setswana|9564856 +sett|9564905 +settee|9564951 +setter|9565005 +setterwort|9565100 +setting|9565181 +setting hen|9565426 +settle|9565492 +settle down|9566280 +settle on|9566480 +settled|9566523 +settlement|9566845 +settlement house|9567219 +settler|9567259 +settling|9567351 +settlings|9567398 +setubal|9567493 +setup|9567552 +seurat|9567664 +sevastopol|9567732 +seven|9567803 +seven hills of rome|9568003 +seven iron|9568057 +seven seas|9568097 +seven years' war|9568137 +seven-membered|9567881 +seven-spot|9567925 +seven-up|9567950 +sevener|9568192 +sevenfold|9568248 +sevens|9568285 +sevensome|9568389 +seventeen|9568445 +seventeen-year locust|9568510 +seventeenth|9568596 +seventh|9568642 +seventh avenue|9568847 +seventh chord|9568903 +seventh cranial nerve|9568932 +seventh crusade|9569013 +seventh heaven|9569062 +seventh-day adventism|9568767 +seventies|9569139 +seventieth|9569261 +seventy|9569306 +seventy-eight|9569367 +seventy-fifth|9569410 +seventy-five|9569446 +seventy-four|9569485 +seventy-nine|9569525 +seventy-one|9569565 +seventy-seven|9569603 +seventy-six|9569645 +seventy-three|9569684 +seventy-two|9569726 +sever|9569765 +severable|9569842 +severable contract|9569893 +several|9569930 +severalise|9570006 +severality|9570217 +severalize|9570247 +severally|9570458 +severalty|9570580 +severance|9570649 +severance agreement|9570764 +severe|9570817 +severe acute respiratory syndrome|9571024 +severe combined immunodeficiency|9571133 +severe combined immunodeficiency disease|9571275 +severed|9571417 +severely|9571446 +severeness|9571512 +severing|9571554 +severity|9571594 +severn|9571810 +severn river|9571898 +severo ochoa|9571992 +sevilla|9572044 +seville|9572111 +seville orange|9572178 +sew|9572379 +sew together|9572477 +sewage|9572535 +sewage disposal|9572632 +sewage disposal plant|9572678 +sewage farm|9572753 +sewage system|9572779 +sewage works|9572850 +seward|9572921 +seward peninsula|9573074 +seward's folly|9573006 +sewed|9573127 +sewellel|9573163 +sewer|9573242 +sewer gas|9573381 +sewer line|9573404 +sewer main|9573440 +sewer rat|9573476 +sewer system|9573534 +sewer water|9573605 +sewerage|9573694 +sewing|9573838 +sewing basket|9574007 +sewing kit|9574057 +sewing machine|9574088 +sewing needle|9574163 +sewing room|9574309 +sewing-machine operator|9573915 +sewing-machine stitch|9573954 +sewn|9574335 +sex|9574371 +sex act|9575101 +sex activity|9575291 +sex appeal|9575402 +sex bomb|9575470 +sex cell|9575551 +sex change|9575602 +sex character|9575653 +sex characteristic|9575718 +sex chromatin|9575783 +sex chromosome|9575834 +sex crime|9575869 +sex drive|9576002 +sex gland|9576027 +sex hormone|9576093 +sex kitten|9576175 +sex linkage|9576256 +sex manual|9576296 +sex object|9576323 +sex offender|9576396 +sex offense|9576426 +sex organ|9576559 +sex segregation|9576603 +sex-change operation|9574756 +sex-limited|9574879 +sex-linked|9574922 +sex-linked disorder|9574960 +sex-starved|9575075 +sexadecimal notation|9576658 +sexadecimal number system|9576731 +sexagenarian|9576864 +sexagesimal|9576943 +sexcapade|9576995 +sexed|9577028 +sexiness|9577062 +sexism|9577170 +sexist|9577224 +sexless|9577302 +sexlessness|9577372 +sexploitation|9577427 +sexpot|9577497 +sext|9577578 +sextant|9577607 +sextet|9577699 +sextette|9578030 +sexton|9578265 +sextuple|9578347 +sextuplet|9578382 +sexual|9578481 +sexual abstention|9578582 +sexual abuse|9578638 +sexual activity|9578771 +sexual arousal|9578882 +sexual assault|9578914 +sexual climax|9579047 +sexual congress|9579104 +sexual conquest|9579294 +sexual desire|9579344 +sexual discrimination|9579408 +sexual harassment|9579446 +sexual immorality|9579496 +sexual intercourse|9579559 +sexual inversion|9579749 +sexual love|9579835 +sexual morality|9579943 +sexual perversion|9579993 +sexual pleasure|9580080 +sexual practice|9580124 +sexual relation|9580235 +sexual relationship|9580425 +sexual reproduction|9580467 +sexual union|9580520 +sexual urge|9580633 +sexualise|9580666 +sexuality|9580715 +sexualize|9580768 +sexually attractive|9580817 +sexually transmitted disease|9580867 +sexy|9581012 +seychelles|9581451 +seychelles monetary unit|9581549 +seychelles rupee|9581622 +seychellois|9581696 +seyhan|9581790 +seyhan river|9581881 +seymour|9581929 +sezession|9581973 +sfax|9582040 +sforzando|9582096 +sga infant|9582145 +sgml|9582253 +sgraffito|9582325 +sha'ban|9582378 +shaaban|9582434 +shabbiness|9582490 +shabby|9582541 +shabby-genteel|9582619 +shabu|9582649 +shabuoth|9582836 +shack|9582929 +shack up|9583085 +shackle|9583180 +shackled|9583330 +shad|9583383 +shad roe|9583585 +shad-flower|9583440 +shadberry|9583616 +shadblow|9583674 +shadbush|9583748 +shaddock|9583822 +shade|9583979 +shade off|9584537 +shade tree|9584593 +shaded|9584618 +shades|9584722 +shades of|9585297 +shadflower|9585325 +shadfly|9585389 +shadiness|9585445 +shading|9585495 +shadow|9585557 +shadow cabinet|9586008 +shadow play|9586040 +shadow show|9586091 +shadowbox|9586142 +shadowboxing|9586165 +shadowed|9586239 +shadower|9586289 +shadowgraph|9586332 +shadowiness|9586423 +shadowing|9586473 +shadowy|9586549 +shady|9586692 +shaft|9586869 +shaft louse|9587449 +shaft of light|9587548 +shag|9587675 +shag rug|9588076 +shagbark|9588115 +shagbark hickory|9588211 +shagged|9588307 +shagginess|9588346 +shaggy|9588419 +shaggy cap|9588481 +shaggy dog story|9588556 +shaggymane|9588607 +shaggymane mushroom|9588682 +shah|9588757 +shah jahan|9588820 +shah of iran|9588859 +shah palavi|9588930 +shahadah|9589041 +shahaptian|9589083 +shaheed|9589178 +shahn|9589211 +shaitan|9589265 +shakable|9589323 +shake|9589363 +shake hands|9590220 +shake off|9590267 +shake up|9590431 +shake-up|9590057 +shakeable|9590750 +shakedown|9590790 +shaken|9590925 +shakeout|9590957 +shaker|9591014 +shakers|9591141 +shakespeare|9591391 +shakespearean|9591507 +shakespearean sonnet|9591583 +shakespearian|9591675 +shakeup|9591751 +shakiness|9591833 +shaking|9591960 +shaking palsy|9592120 +shako|9592293 +shakspere|9592339 +shakti|9592453 +shaktism|9592494 +shaktist|9592608 +shaky|9592648 +shale|9592789 +shale oil|9592821 +shall-flower|9592844 +shallon|9592949 +shallot|9593002 +shallow|9593142 +shallow fording|9593484 +shallow-draft|9593396 +shallow-draught|9593440 +shallowness|9593522 +shallu|9593577 +shalom asch|9593634 +shalwar|9593710 +sham|9593749 +shaman|9594129 +shamanise|9594187 +shamanism|9594246 +shamanist|9594352 +shamanistic|9594414 +shamanize|9594476 +shamash|9594535 +shamble|9594574 +shambles|9594660 +shambling|9594815 +shambolic|9594873 +shame|9594915 +shame plant|9595221 +shamed|9595331 +shamefaced|9595429 +shamefacedness|9595517 +shameful|9595568 +shamefully|9595713 +shamefulness|9595814 +shameless|9595881 +shamelessly|9595921 +shamelessness|9595965 +shamisen|9596025 +shammer|9596071 +shammy|9596255 +shammy leather|9596340 +shampoo|9596425 +shamrock|9596531 +shamrock pea|9596762 +shamus|9596826 +shan|9596925 +shandy|9596957 +shandygaff|9596990 +shang|9597023 +shang dynasty|9597066 +shanghai|9597117 +shanghai dialect|9597221 +shanghaier|9597286 +shangri-la|9597341 +shank|9597427 +shank's mare|9597624 +shank's pony|9597689 +shankar|9597754 +shanks' mare|9597805 +shanks' pony|9597870 +shannon|9597935 +shanny|9598055 +shantung|9598111 +shanty|9598159 +shantytown|9598249 +shape|9598284 +shape constancy|9599005 +shape up|9599040 +shape-up|9598965 +shaped|9599119 +shapeless|9599173 +shapelessness|9599237 +shapeliness|9599300 +shapely|9599363 +shaper|9599694 +shaping|9599760 +shaping machine|9599865 +shaping tool|9599910 +shapley|9599937 +shard|9600010 +share|9600046 +share-out|9600526 +sharecrop farmer|9600566 +sharecropper|9600656 +shared|9600746 +shared out|9600844 +shareholder|9600902 +shareholding|9600955 +shareowner|9601025 +sharer|9601078 +shareware|9601115 +shari|9601184 +shari river|9601241 +sharia|9601304 +sharia law|9601381 +shariah|9601458 +shariah law|9601535 +sharing|9601612 +shark|9601828 +shark oil|9601984 +shark repellent|9602030 +shark-liver oil|9601938 +sharkskin|9602088 +sharksucker|9602137 +sharp|9602208 +sharp tongue|9603640 +sharp-cornered|9602925 +sharp-eared|9602966 +sharp-eyed|9603007 +sharp-limbed|9603165 +sharp-pointed|9603194 +sharp-set|9603220 +sharp-sighted|9603281 +sharp-sightedness|9603424 +sharp-tailed grouse|9603514 +sharp-worded|9603596 +sharpen|9603669 +sharpened|9603975 +sharpener|9604015 +sharper|9604044 +sharpie|9604177 +sharply|9604386 +sharpness|9604461 +sharpshoot|9604725 +sharpshooter|9604757 +sharptail mola|9604848 +sharpy|9604924 +shasta|9605122 +shasta daisy|9605219 +shasta salamander|9605319 +shastan|9605404 +shatter|9605440 +shattered|9605481 +shattering|9605552 +shatterproof|9605617 +shatterproof glass|9605678 +shave|9605741 +shaved|9605965 +shaven|9606049 +shaver|9606140 +shavian|9606321 +shaving|9606449 +shaving brush|9606619 +shaving cream|9606648 +shaving foam|9606740 +shaving soap|9606808 +shaving-brush tree|9606562 +shavous|9606900 +shavuot|9606992 +shavuoth|9607084 +shaw|9607177 +shawl|9607483 +shawm|9607504 +shawn|9607541 +shawnee|9607613 +shawnee cake|9607715 +shawnee salad|9607786 +shawny|9607912 +shawwal|9608024 +shay|9608072 +shaytan|9608115 +she-bop|9608173 +she-devil|9608255 +she-goat|9608310 +she-oak|9608365 +sheaf|9608392 +shear|9608429 +sheared|9608601 +shearer|9608643 +shearing|9608796 +shears|9608838 +shearwater|9608973 +sheatfish|9609000 +sheath|9609072 +sheath knife|9609214 +sheath pile|9609253 +sheathe|9609322 +sheathed|9609409 +sheathing|9609471 +shebang|9609556 +shebat|9609587 +shebeen|9609639 +shed|9609673 +shed blood|9609974 +shed light on|9610041 +shedder|9610207 +shedding|9610271 +sheen|9610381 +sheeny|9610477 +sheep|9610580 +sheep bell|9610987 +sheep botfly|9611012 +sheep dip|9611067 +sheep dog|9611103 +sheep fescue|9611237 +sheep frog|9611294 +sheep gadfly|9611363 +sheep ked|9611418 +sheep laurel|9611499 +sheep pen|9611568 +sheep plant|9611616 +sheep polypore|9611775 +sheep rot|9611853 +sheep sorrel|9611924 +sheep tick|9612001 +sheep's fescue|9610641 +sheep's sorrel|9610698 +sheep-tick|9610775 +sheepcote|9612213 +sheepdog|9612261 +sheepfold|9612314 +sheepherder|9612362 +sheepish|9612424 +sheepishness|9612485 +sheeplike|9612536 +sheepman|9612571 +sheeprun|9612675 +sheepshank|9612708 +sheepshead|9612733 +sheepshead porgy|9612800 +sheepshearing|9612846 +sheepskin|9612913 +sheepskin coat|9613049 +sheepwalk|9613085 +sheer|9613118 +sheesha|9613495 +sheet|9613622 +sheet anchor|9614026 +sheet bend|9614082 +sheet glass|9614149 +sheet iron|9614199 +sheet lighting|9614230 +sheet metal|9614264 +sheet music|9614302 +sheet of paper|9614381 +sheet pile|9614432 +sheet piling|9614501 +sheet web|9614570 +sheet-metal work|9613988 +sheeting|9614613 +sheetlike|9614661 +sheetrock|9614698 +sheffield|9614753 +shegetz|9614811 +sheik|9614848 +sheika|9615004 +sheikdom|9615047 +sheikh|9615095 +sheikha|9615168 +sheikhdom|9615211 +shekel|9615259 +shekels|9615297 +shel silverstein|9615474 +shelby silverstein|9615564 +sheldrake|9615656 +shelduck|9615724 +shelf|9615752 +shelf bracket|9615794 +shelf fungus|9615825 +shelf ice|9615897 +shelf life|9615930 +shelfful|9615984 +shelflike|9616015 +shelfy|9616041 +shell|9616085 +shell bean|9616841 +shell bean plant|9616912 +shell collecting|9616965 +shell corporation|9617047 +shell entity|9617104 +shell game|9617161 +shell ginger|9617210 +shell jacket|9617315 +shell out|9617370 +shell parakeet|9617487 +shell plating|9617656 +shell shock|9617697 +shell stitch|9617799 +shell-flower|9616623 +shellac|9617851 +shellac varnish|9617923 +shellac wax|9617964 +shellbark|9617997 +shellbark hickory|9618093 +sheller|9618189 +shelley|9618213 +shellfire|9618369 +shellfish|9618402 +shellflower|9618465 +shelling|9618671 +shellproof|9618742 +shelter|9618785 +shelter deck|9619079 +shelter tent|9619125 +shelterbelt|9619181 +sheltered|9619227 +sheltered workshop|9619263 +shelton jackson lee|9619305 +shelve|9619415 +shelver|9619548 +shelvy|9619572 +shem|9619616 +shema|9619650 +shemozzle|9619678 +shen-pao|9619718 +shenandoah national park|9619775 +shenandoah valley|9619848 +shenanigan|9619905 +shenyang|9620144 +shepard|9620224 +shepherd|9620365 +shepherd dog|9620984 +shepherd's clock|9620500 +shepherd's crook|9620596 +shepherd's pie|9620634 +shepherd's pipe|9620667 +shepherd's pouch|9620796 +shepherd's purse|9620890 +shepherdess|9621037 +sheraton|9621088 +sherbert|9621165 +sherbet|9621209 +sherd|9621253 +sheridan|9621289 +sheriff|9621363 +sheriff's sale|9621413 +sherlock|9621499 +sherlock holmes|9621598 +sherman|9621697 +sherpa|9621890 +sherrington|9621927 +sherry|9622003 +sherwood|9622034 +sherwood anderson|9622104 +sherwood forest|9622172 +shetland|9622247 +shetland islands|9622396 +shetland pony|9622468 +shetland sheep dog|9622510 +shetland sheepdog|9622616 +shetland wool|9622721 +shevat|9622763 +shevchenko|9622815 +shew|9622881 +shf|9622984 +shi'ite|9623037 +shi'ite muslim|9623166 +shia|9623302 +shia muslim|9623387 +shiah|9623520 +shiah islam|9623606 +shiatsu|9623698 +shibah|9623742 +shibboleth|9623785 +shield|9623897 +shield fern|9624097 +shield of david|9624136 +shield-shaped|9624046 +shielded|9624255 +shielder|9624290 +shielding|9624346 +shift|9624404 +shift register|9625179 +shifter|9625212 +shiftiness|9625325 +shifting|9625390 +shiftless|9625485 +shiftlessness|9625529 +shifty|9625571 +shiga bacillus|9625618 +shigella|9625672 +shigella dysentariae|9625731 +shigellosis|9625806 +shih-tzu|9625857 +shiism|9625896 +shiitake|9625972 +shiitake mushroom|9626098 +shiite|9626224 +shiite muslim|9626352 +shikoku|9626487 +shiksa|9626519 +shikse|9626561 +shill|9626603 +shillalah|9626668 +shillelagh|9626705 +shilling|9626742 +shillyshally|9627003 +shiloh|9627195 +shim|9627279 +shimchath torah|9627299 +shimmer|9627476 +shimmery|9627588 +shimmy|9627613 +shin|9627800 +shin bet|9627995 +shin guard|9628082 +shin splints|9628129 +shina|9628178 +shinbone|9628227 +shindig|9628265 +shindy|9628295 +shine|9628325 +shine at|9628753 +shine up|9628804 +shiner|9628876 +shingle|9629028 +shingle oak|9629130 +shingle tree|9629194 +shingler|9629246 +shingles|9629271 +shingling|9629421 +shingly|9629470 +shingon|9629520 +shininess|9629554 +shining|9629650 +shining clubmoss|9629841 +shining path|9629916 +shining sumac|9630045 +shining willow|9630142 +shinleaf|9630198 +shinny|9630276 +shinpad|9630342 +shinplaster|9630389 +shinto|9630416 +shintoism|9630577 +shintoist|9630645 +shintoistic|9630759 +shiny|9630840 +shiny lyonia|9631059 +ship|9631129 +ship biscuit|9631843 +ship broker|9631920 +ship builder|9631961 +ship canal|9632149 +ship chandler|9632183 +ship money|9632230 +ship of the line|9632285 +ship route|9632353 +ship's bell|9631311 +ship's boat|9631360 +ship's chandler|9631408 +ship's company|9631442 +ship's galley|9631501 +ship's officer|9631557 +ship's papers|9631652 +ship-breaker|9631736 +ship-towed long-range acoustic detection system|9631769 +shipboard|9632406 +shipboard duty|9632429 +shipboard soldier|9632504 +shipboard system|9632607 +shipbuilder|9632656 +shipbuilding|9632833 +shipbuilding industry|9632877 +shipload|9632917 +shipmate|9633002 +shipment|9633030 +shipowner|9633188 +shipper|9633223 +shipping|9633280 +shipping agent|9633447 +shipping articles|9633477 +shipping clerk|9633535 +shipping company|9633565 +shipping fever|9633599 +shipping office|9633696 +shipping pneumonia|9633744 +shipping room|9633841 +shipshape|9633869 +shipside|9633908 +shipway|9633931 +shipworm|9634008 +shipwreck|9634041 +shipwreck survivor|9634186 +shipwrecked|9634240 +shipwright|9634297 +shipyard|9634349 +shiraz|9634382 +shire|9634434 +shire horse|9634574 +shire town|9634638 +shirer|9634675 +shirk|9634733 +shirker|9634796 +shirking|9634858 +shirley temple|9634944 +shirley temple black|9635018 +shirodkar's operation|9635098 +shirr|9635247 +shirred egg|9635267 +shirring|9635318 +shirt|9635343 +shirt button|9635447 +shirtdress|9635476 +shirtfront|9635508 +shirting|9635574 +shirtlifter|9635622 +shirtmaker|9635671 +shirtsleeve|9635704 +shirtsleeves|9635736 +shirttail|9635810 +shirtwaist|9635875 +shirtwaister|9635915 +shirty|9635955 +shish kebab|9635990 +shisha|9636028 +shit|9636155 +shite|9636913 +shithead|9637019 +shitless|9637162 +shitlist|9637187 +shittah|9637239 +shittah tree|9637276 +shitter|9637313 +shittim|9637400 +shittimwood|9637523 +shitting|9637709 +shitty|9637798 +shitwork|9637859 +shiv|9637924 +shiva|9637944 +shivah|9638017 +shivaism|9638060 +shivaist|9638174 +shivaree|9638214 +shiver|9638290 +shivering|9638579 +shivery|9638670 +shlemiel|9638739 +shlep|9638784 +shlimazel|9638842 +shlock|9638903 +shlockmeister|9638959 +shmaltz|9639019 +shmear|9639101 +shmegegge|9639146 +shmo|9639227 +shmoose|9639272 +shmooze|9639433 +shmuck|9639614 +shnook|9639659 +shnorr|9639700 +shoal|9639743 +shoaly|9639886 +shoat|9639930 +shock|9639971 +shock absorber|9640746 +shock therapy|9640799 +shock treatment|9640846 +shock troops|9640893 +shock wave|9640921 +shock-headed|9640710 +shockable|9640968 +shocked|9641011 +shocker|9641060 +shocking|9641136 +shockley|9641219 +shod|9641299 +shodden|9641401 +shoddiness|9641484 +shoddy|9641556 +shoe|9641634 +shoe black|9641970 +shoe bomb|9642124 +shoe industry|9642160 +shoe lace|9642192 +shoe leather|9642336 +shoe polish|9642366 +shoe repairing|9642403 +shoe shop|9642459 +shoe store|9642591 +shoe string|9642642 +shoe-shop|9641838 +shoebill|9642854 +shoebird|9642915 +shoeblack|9642976 +shoeblack plant|9643022 +shoebox|9643132 +shoed|9643183 +shoeful|9643266 +shoehorn|9643296 +shoelace|9643353 +shoeless|9643416 +shoemaker|9643469 +shoemaker's last|9643509 +shoemaking|9643570 +shoes|9643626 +shoeshine|9643802 +shoestring|9643871 +shoestring catch|9644003 +shoestring fungus|9644052 +shoetree|9644086 +shofar|9644111 +shogi|9644140 +shogun|9644172 +shogunate|9644226 +shoji|9644382 +sholem asch|9644429 +sholom asch|9644505 +shoo|9644581 +shoo away|9644752 +shoo fly|9644852 +shoo off|9645011 +shoo-in|9644681 +shoofly|9645111 +shoofly pie|9645189 +shook|9645214 +shoot|9645241 +shoot a line|9646385 +shoot craps|9646531 +shoot down|9646559 +shoot for|9646779 +shoot one's mouth off|9646838 +shoot the breeze|9646920 +shoot up|9647058 +shoot-'em-up|9646206 +shoot-down|9646340 +shooter|9647085 +shooting|9647302 +shooting box|9647362 +shooting brake|9647413 +shooting gallery|9647515 +shooting iron|9647606 +shooting lodge|9647677 +shooting preserve|9647728 +shooting range|9647764 +shooting script|9647831 +shooting star|9647879 +shooting stick|9647947 +shootout|9647978 +shop|9648041 +shop assistant|9648418 +shop at|9648451 +shop bell|9648533 +shop boy|9648557 +shop class|9648605 +shop clerk|9648681 +shop floor|9648730 +shop girl|9648765 +shop mechanic|9648844 +shop steward|9648925 +shop talk|9648976 +shopaholic|9649008 +shopfront|9649036 +shophar|9649072 +shopkeeper|9649101 +shoplift|9649179 +shoplifter|9649203 +shoplifting|9649252 +shopper|9649324 +shopping|9649370 +shopping bag|9649406 +shopping basket|9649460 +shopping cart|9649503 +shopping center|9649557 +shopping centre|9649688 +shopping list|9649819 +shopping mall|9649888 +shopsoiled|9650019 +shopwalker|9650053 +shopwindow|9650094 +shopworn|9650148 +shore|9650284 +shore bird|9650467 +shore boulder|9650612 +shore duty|9650651 +shore leave|9650698 +shore patrol|9650750 +shore pine|9650791 +shore station|9650888 +shore up|9650952 +shorea|9651018 +shorea teysmanniana|9651076 +shorebird|9651162 +shoreline|9651226 +shoring|9651267 +shoring up|9651344 +shorn|9651403 +short|9651426 +short account|9654622 +short and sweet|9654720 +short aria|9654751 +short bone|9654784 +short circuit|9654821 +short covering|9654867 +short division|9654899 +short gastric artery|9654932 +short hundredweight|9655030 +short iron|9655117 +short letter|9655142 +short line|9655197 +short list|9655262 +short order|9655295 +short pants|9655322 +short ribs|9655372 +short sale|9655404 +short saphenous vein|9655446 +short selling|9655504 +short shrift|9655546 +short sleep|9655622 +short sleeve|9655692 +short story|9655725 +short subject|9655752 +short temper|9655887 +short ton|9655964 +short wave|9656012 +short whist|9656074 +short's aster|9652678 +short-billed marsh wren|9652735 +short-change|9652812 +short-circuit|9652920 +short-dated|9653068 +short-grass|9653095 +short-haired|9653214 +short-handed|9653250 +short-handled|9653322 +short-headed|9653354 +short-horned grasshopper|9653443 +short-leaf pine|9653504 +short-lived|9653593 +short-order|9653685 +short-range|9653711 +short-run|9653751 +short-snouted|9653787 +short-spurred fragrant orchid|9653816 +short-staffed|9653905 +short-stop|9653977 +short-stop bath|9654092 +short-tailed shrew|9654148 +short-tempered|9654212 +short-term|9654311 +short-term memory|9654347 +short-toed eagle|9654414 +short-winded|9654459 +short-winged|9654579 +shortage|9656128 +shortbread|9656242 +shortbread cookie|9656294 +shortcake|9656346 +shortcoming|9656387 +shortcut|9656428 +shorten|9656473 +shortened|9656799 +shortener|9656929 +shortening|9656954 +shortest|9657032 +shortfall|9658031 +shortfin mako|9658103 +shortgrass|9658160 +shorthand|9658198 +shorthand typist|9658268 +shorthorn|9658350 +shortia|9658393 +shortia galacifolia|9658417 +shortish|9658487 +shortleaf pine|9658511 +shortleaf yellow pine|9658600 +shortlist|9658689 +shortly|9658742 +shortness|9658875 +shortness of breath|9659042 +shorts|9659107 +shortsighted|9659362 +shortsightedness|9659479 +shortstop|9659569 +shorttail weasel|9659620 +shortwave diathermy machine|9659676 +shoshone|9659731 +shoshonean|9659901 +shoshonean language|9660016 +shoshoni|9660140 +shoshonian|9660232 +shoshonian language|9660347 +shostakovich|9660471 +shot|9660567 +shot glass|9661378 +shot hole|9661431 +shot metal|9661476 +shot put|9661508 +shot putter|9661538 +shot tower|9661572 +shotgun|9661598 +shotgun shell|9661650 +shoulder|9661679 +shoulder bag|9661976 +shoulder blade|9662027 +shoulder board|9662081 +shoulder bone|9662137 +shoulder flash|9662191 +shoulder girdle|9662224 +shoulder holster|9662268 +shoulder in|9662302 +shoulder joint|9662336 +shoulder mark|9662494 +shoulder pad|9662550 +shoulder patch|9662591 +shoulder strap|9662621 +shoulder vise|9662656 +shouldered|9662722 +shouldered arch|9662751 +shout|9662781 +shout down|9663161 +shout out|9663224 +shouted|9663386 +shouter|9663415 +shouting|9663494 +shove|9663626 +shove along|9663864 +shove off|9663918 +shove-ha'penny|9663736 +shove-halfpenny|9663800 +shovel|9663972 +shovel board|9664155 +shovel hat|9664264 +shovel in|9664300 +shovelboard|9664433 +shoveler|9664480 +shovelful|9664561 +shovelhead|9664609 +shoveller|9664696 +shovelnose catfish|9664776 +shover|9664897 +show|9664926 +show bill|9665874 +show biz|9665961 +show business|9666025 +show card|9666089 +show me state|9666176 +show off|9666240 +show the door|9666310 +show time|9666409 +show trial|9666562 +show up|9666588 +show window|9666664 +show-off|9665621 +show-stopper|9665678 +showboat|9666759 +showcase|9666798 +showdown|9666888 +shower|9666952 +shower bath|9667275 +shower cap|9667358 +shower curtain|9667382 +shower down|9667440 +shower room|9667483 +shower stall|9667509 +showerhead|9667569 +showery|9667601 +showgirl|9667628 +showily|9667693 +showiness|9667769 +showing|9667836 +showing bad manners|9667907 +showing contempt|9667968 +showing emotion|9668047 +showing intelligence|9668083 +showing lack of intelligence|9668126 +showing mercy|9668179 +showing neatness|9668223 +showing trust|9668255 +showing wisdom|9668288 +showjumping|9668337 +showman|9668391 +showmanship|9668449 +showpiece|9668526 +showplace|9668632 +showroom|9668680 +showstopper|9668728 +showtime|9668844 +showy|9668960 +showy daisy|9669107 +showy goldenrod|9669156 +showy lady slipper|9669359 +showy lady's-slipper|9669191 +showy milkweed|9669527 +showy orchis|9669588 +showy sunflower|9669671 +shrapnel|9669740 +shred|9669764 +shredded|9669996 +shredder|9670033 +shreveport|9670058 +shrew|9670118 +shrew mole|9670209 +shrewd|9670234 +shrewdly|9670324 +shrewdness|9670372 +shrewish|9670447 +shrewishness|9670485 +shrewmouse|9670518 +shriek|9670556 +shrieked|9670801 +shrieking|9670875 +shrift|9671067 +shrike|9671094 +shrill|9671129 +shrilling|9671262 +shrillness|9671312 +shrilly|9671379 +shrimp|9671406 +shrimp butter|9671668 +shrimp cocktail|9671704 +shrimp newburg|9671738 +shrimp sauce|9671793 +shrimp-fish|9671524 +shrimper|9671828 +shrimpfish|9671864 +shrimpy|9671927 +shrine|9671961 +shrink|9672080 +shrink back|9672517 +shrink from|9672599 +shrink-wrapped|9672402 +shrink-wrapped software|9672434 +shrinkable|9672649 +shrinkage|9672680 +shrinking|9672823 +shrinking violet|9672927 +shrinkwrap|9672971 +shrive|9673004 +shrivel|9673053 +shrivel up|9673169 +shriveled|9673241 +shrivelled|9673408 +shroud|9673573 +shrove tuesday|9673814 +shrovetide|9673895 +shrub|9673933 +shrubbery|9673980 +shrubby|9674036 +shrubby penstemon|9674101 +shrubby st john's wort|9674190 +shrublet|9674303 +shrug|9674332 +shrug off|9674406 +shrunk|9674492 +shrunken|9674528 +shtick|9674671 +shtickl|9674937 +shtik|9675006 +shtikl|9675275 +shtup|9675344 +shua|9675584 +shuck|9675652 +shucks|9675789 +shudder|9675968 +shuddering|9676177 +shuddery|9676206 +shudra|9676263 +shuffle|9676335 +shuffleboard|9676505 +shuffler|9676552 +shuffling|9676614 +shufti|9676703 +shuha|9676757 +shuha shinto|9676813 +shumac|9676889 +shumard oak|9676929 +shumard red oak|9677004 +shun|9677083 +shun giku|9677192 +shunning|9677285 +shunt|9677344 +shunt circuit|9677471 +shunter|9677531 +shush|9677603 +shut|9677661 +shut away|9678020 +shut down|9678095 +shut in|9678136 +shut off|9678191 +shut one's mouth|9678376 +shut out|9678435 +shut up|9678488 +shut-in|9677875 +shutdown|9678743 +shute|9678817 +shuteye|9678883 +shutout|9678914 +shutter|9678952 +shutterbug|9679025 +shuttered|9679074 +shutting|9679110 +shutting post|9679166 +shuttle|9679198 +shuttle bus|9679339 +shuttle diplomacy|9679368 +shuttle helicopter|9679429 +shuttlecock|9679497 +shuttlecock fern|9679571 +shwa|9679699 +shy|9679737 +shy away from|9679892 +shy person|9679921 +shylock|9679965 +shyly|9680098 +shyness|9680130 +shyster|9680179 +si|9680227 +si system|9680496 +sial|9680646 +sialadenitis|9680671 +sialia|9680720 +sialidae|9680767 +sialis|9680827 +sialis lutaria|9680879 +sialolith|9680981 +siam|9681038 +siamang|9681113 +siamese|9681188 +siamese cat|9681503 +siamese twin|9681596 +sian|9681694 +sib|9681768 +sibelius|9681870 +siberia|9681952 +siberian|9682049 +siberian crab|9682171 +siberian crab apple|9682310 +siberian elm|9682455 +siberian husky|9682538 +siberian larch|9682597 +siberian millet|9682682 +siberian pea tree|9682813 +siberian spruce|9682897 +siberian wall flower|9682959 +sibilant|9683060 +sibilant consonant|9683137 +sibilate|9683184 +sibilation|9683407 +sibine|9683480 +sibley tent|9683522 +sibling|9683582 +sibyl|9683621 +sibyllic|9683704 +sibylline|9683786 +sic|9683936 +sicative|9683982 +sichuan|9684044 +sicilia|9684120 +sicilian|9684196 +sicilian mafia|9684261 +sicilian pizza|9684346 +sicily|9684401 +sick|9684476 +sick bag|9685439 +sick benefit|9685550 +sick berth|9685597 +sick call|9685630 +sick headache|9685680 +sick joke|9685799 +sick leave|9685843 +sick list|9685886 +sick of|9685918 +sick parade|9685977 +sick pay|9686027 +sick person|9686083 +sick-abed|9685379 +sickbag|9686160 +sickbay|9686190 +sickbed|9686223 +sicken|9686244 +sickening|9686417 +sickeningly|9686501 +sickeningness|9686560 +sickish|9686673 +sickle|9686721 +sickle alfalfa|9687438 +sickle cell|9687529 +sickle feather|9687581 +sickle lucerne|9687618 +sickle medick|9687709 +sickle-cell anaemia|9686770 +sickle-cell anemia|9686974 +sickle-cell disease|9687178 +sickle-shaped|9687382 +sicklepod|9687800 +sickleweed golden aster|9687914 +sickly|9687960 +sickness|9688066 +sickness benefit|9688172 +sickroom|9688219 +sid caesar|9688242 +sida|9688309 +sida hermaphrodita|9688361 +sida rhombifolia|9688431 +sida spinosa|9688507 +sidalcea|9688563 +sidalcea malviflora|9688627 +siddhartha|9688711 +siddons|9688826 +side|9688894 +side arm|9689856 +side by side|9689927 +side chair|9689995 +side chapel|9690036 +side dish|9690064 +side door|9690098 +side drum|9690158 +side effect|9690220 +side entrance|9690316 +side horse|9690376 +side judge|9690415 +side of bacon|9690453 +side of beef|9690489 +side of meat|9690529 +side of pork|9690572 +side pocket|9690612 +side road|9690640 +side street|9690670 +side view|9690698 +side yard|9690759 +side-blotched lizard|9689448 +side-glance|9689530 +side-look|9689588 +side-slip|9689646 +side-to-side|9689691 +side-wheeler|9689724 +side-whiskers|9689776 +sidearm|9690801 +sidebar|9690823 +sideboard|9690902 +sideburn|9691012 +sidecar|9691092 +sidekick|9691146 +sidelight|9691200 +sideline|9691252 +sidelong|9691458 +sidereal|9691596 +sidereal day|9691644 +sidereal hour|9691707 +sidereal month|9691763 +sidereal time|9691807 +sidereal year|9691842 +siderite|9691884 +sideritis|9691938 +sideroblast|9692003 +sideroblastic anaemia|9692037 +sideroblastic anemia|9692171 +siderochrestic anaemia|9692305 +siderochrestic anemia|9692439 +siderocyte|9692573 +sideropenia|9692624 +siderophilin|9692664 +siderosis|9692721 +sidesaddle|9692772 +sideshow|9692799 +sideslip|9692838 +sidesman|9692930 +sidesplitter|9692980 +sidesplitting|9693076 +sidesplittingly|9693126 +sidestep|9693160 +sidestroke|9693262 +sideswipe|9693298 +sidetrack|9693324 +sidewalk|9693452 +sidewall|9693498 +sideward|9693533 +sidewards|9693560 +sideway|9693587 +sideways|9693669 +sidewinder|9693798 +sidewise|9693890 +siding|9693970 +sidle|9694077 +sidle up|9694116 +sidney|9694188 +sidney caesar|9694234 +sidney james webb|9694304 +sidney poitier|9694426 +sidney webb|9694516 +sidon|9694632 +sidonie-gabrielle claudine colette|9694688 +sidonie-gabrielle colette|9694815 +sids|9694933 +siege|9695033 +siege of orleans|9695111 +siege of syracuse|9695209 +siege of vicksburg|9695391 +siege perilous|9695495 +siegfried|9695539 +siegfried line|9695583 +siemens|9695645 +sienna|9695864 +sierra|9695892 +sierra leone|9696033 +sierra leone monetary unit|9696124 +sierra leonean|9696201 +sierra leonian|9696248 +sierra lodgepole pine|9696347 +sierra madre occidental|9696450 +sierra madre oriental|9696587 +sierra nevada|9696720 +sierra nevada mountains|9696974 +sierra plum|9697137 +sierra redwood|9697216 +siesta|9697357 +sieur de lasalle|9697425 +sieva bean|9697517 +sieve|9697675 +sieve out|9697899 +sieve tube|9697956 +sif|9697992 +sift|9698021 +sifter|9698187 +sifting|9698216 +sigeh|9698261 +sigh|9698330 +sight|9698481 +sight bill|9699310 +sight draft|9699382 +sight gag|9699454 +sight-read|9699033 +sight-sing|9699178 +sighted|9699510 +sightedness|9699639 +sighting|9699718 +sightless|9699768 +sightlessness|9699820 +sightly|9699922 +sightread|9699954 +sightreader|9699992 +sightsee|9700041 +sightseeing|9700075 +sightseer|9700135 +sightsing|9700214 +sigint|9700265 +sigma|9700367 +sigmodon|9700433 +sigmodon hispidus|9700488 +sigmoid|9700573 +sigmoid colon|9700616 +sigmoid flexure|9700661 +sigmoid sinus|9700706 +sigmoid vein|9700765 +sigmoidal|9700833 +sigmoidectomy|9700865 +sigmoidoscope|9700930 +sigmoidoscopy|9700986 +sigmund freud|9701042 +sigmund romberg|9701132 +sign|9701190 +sign away|9702088 +sign in|9702148 +sign industry|9702181 +sign language|9702213 +sign manual|9702278 +sign of the cross|9702309 +sign of the zodiac|9702351 +sign off|9702436 +sign on|9702498 +sign over|9702556 +sign painter|9702616 +sign up|9702646 +sign-language|9702016 +signage|9702737 +signal|9702801 +signal box|9703402 +signal caller|9703439 +signal detection|9703531 +signal fire|9703577 +signal flag|9703630 +signal level|9703670 +signal light|9703702 +signal-to-noise|9703046 +signal-to-noise ratio|9703135 +signal/noise|9703224 +signal/noise ratio|9703313 +signaler|9703755 +signaling|9703796 +signaling device|9703841 +signalisation|9703874 +signalise|9703931 +signalization|9704144 +signalize|9704201 +signaller|9704414 +signally|9704455 +signalman|9704496 +signals intelligence|9704590 +signatory|9704685 +signature|9704764 +signature recognition|9705001 +signature tune|9705104 +signboard|9705205 +signed|9705252 +signer|9705361 +signet|9705460 +signet ring|9705487 +significance|9705528 +significant|9705682 +significant digit|9706050 +significant figure|9706109 +significant other|9706168 +significantly|9706302 +signification|9706336 +significative|9706428 +signified|9706505 +signifier|9706572 +signify|9706622 +signing|9706696 +signior|9706761 +signor|9706800 +signora|9706839 +signore|9706875 +signorina|9706941 +signory|9706976 +signpost|9707053 +sigrid undset|9707098 +sigurd|9707156 +sigyn|9707194 +sika|9707227 +sikh|9707292 +sikhism|9707372 +sikkim|9707429 +sikorsky|9707524 +silage|9707603 +sild|9707643 +sildenafil|9707665 +silence|9707726 +silenced|9708018 +silencer|9708056 +silene|9708117 +silene acaulis|9708157 +silene caroliniana|9708233 +silene dioica|9708314 +silene latifolia|9708417 +silene uniflora|9708556 +silene virginica|9708653 +silene vulgaris|9708730 +silent|9708827 +silent butler|9709069 +silent movie|9709103 +silent partner|9709260 +silent person|9709309 +silent picture|9709374 +silent treatment|9709531 +silently|9709571 +silents|9709617 +silenus|9709774 +silesia|9709835 +silex|9709993 +silhouette|9710071 +silica|9710166 +silica gel|9710218 +silicate|9710246 +siliceous|9710269 +silicic acid|9710303 +silicide|9710330 +silicious|9710375 +silicle|9710409 +silicon|9710442 +silicon bronze|9710542 +silicon carbide|9710573 +silicon chip|9710606 +silicon dioxide|9710708 +silicon oxide|9710760 +silicon valley|9710812 +silicone|9710923 +silicone polymer|9710975 +silicone resin|9711027 +silicone rubber|9711059 +silicosis|9711101 +siliqua|9711152 +silique|9711185 +silk|9711218 +silk cotton|9711433 +silk gland|9711499 +silk grass|9711581 +silk hat|9711762 +silk oak|9711857 +silk road|9711885 +silk screen print|9711926 +silk stocking|9711980 +silk tree|9712056 +silk vine|9712133 +silk wood|9712174 +silk-cotton tree|9711295 +silken|9712345 +silkgrass|9712409 +silkiness|9712509 +silklike|9712549 +silks|9712613 +silkscreen|9712716 +silkweed|9712783 +silkwood|9712832 +silkworm|9712922 +silkworm moth|9713000 +silkworm seed|9713103 +silky|9713130 +silky anteater|9713194 +silky cornel|9713284 +silky dogwood|9713362 +silky elm|9713490 +silky oak|9713640 +silky pocket mouse|9713686 +silky tamarin|9713746 +silky terrier|9713832 +silky willow|9713876 +silky wisteria|9714020 +sill|9714079 +sillabub|9714129 +sillaginidae|9714199 +sillago|9714266 +silliness|9714316 +sills|9714435 +silly|9714554 +silly season|9714898 +silo|9714954 +siloxane|9715003 +silphium|9715048 +silphium laciniatum|9715110 +silt|9715198 +silt up|9715287 +siltstone|9715359 +silty|9715388 +silurian|9715409 +silurian period|9715477 +silurid|9715552 +silurid fish|9715606 +siluridae|9715660 +siluriform fish|9715718 +siluriformes|9715784 +silurus|9715851 +silurus glanis|9715901 +silva|9715988 +silvan|9716043 +silvanus|9716113 +silver|9716161 +silver age|9718291 +silver ash|9718345 +silver beech|9718370 +silver bell|9718431 +silver berry|9718486 +silver birch|9718706 +silver bromide|9718794 +silver bullet|9718826 +silver certificate|9718858 +silver chloride|9718986 +silver city|9719020 +silver cord|9719058 +silver dollar|9719093 +silver fern|9719218 +silver fir|9719303 +silver fox|9719345 +silver grass|9719387 +silver gray|9719415 +silver grey|9719501 +silver hake|9719587 +silver iodide|9719643 +silver jenny|9719673 +silver jubilee|9719721 +silver lace|9719753 +silver lace vine|9719960 +silver lime|9720041 +silver linden|9720135 +silver lining|9720229 +silver maple|9720294 +silver medal|9720339 +silver mine|9720434 +silver nitrate|9720460 +silver oak|9720500 +silver perch|9720550 +silver pine|9720679 +silver plate|9720828 +silver protein|9720889 +silver quandong|9720921 +silver quandong tree|9720951 +silver sage|9721056 +silver sagebrush|9721158 +silver salmon|9721260 +silver screen|9721381 +silver solder|9721466 +silver spoon|9721496 +silver spruce|9721545 +silver standard|9721626 +silver star|9721678 +silver star medal|9721782 +silver state|9721892 +silver storm|9721986 +silver thatch|9722038 +silver tree|9722221 +silver tree fern|9722306 +silver vine|9722387 +silver wattle|9722524 +silver wedding anniversary|9722577 +silver whiting|9722633 +silver willow|9722689 +silver-bell tree|9716720 +silver-bush|9716837 +silver-lace|9717071 +silver-leaved nettle|9717278 +silver-leaved nightshade|9717450 +silver-leaved poplar|9717622 +silver-plate|9717728 +silver-tip|9717849 +silver-tongued|9718052 +silver-worker|9718131 +silverback|9722777 +silverbell tree|9722821 +silverberry|9722938 +silverbush|9723024 +silverfish|9723178 +silverish|9723280 +silverleaf nightshade|9723332 +silvern|9723504 +silverplate|9723579 +silverpoint|9723619 +silverrod|9723648 +silverside|9723694 +silversides|9723761 +silversmith|9723927 +silverspot|9724006 +silverstein|9724037 +silversword|9724122 +silvertip|9724180 +silvertop palmetto|9724302 +silvervine|9724415 +silverware|9724471 +silverweed|9724501 +silverwork|9724600 +silverworker|9724639 +silvery|9724718 +silvery spleenwort|9724835 +silvery wormwood|9725006 +silvex|9725083 +silvia|9725132 +silvia atricapilla|9725179 +silviculture|9725266 +silybum|9725297 +silybum marianum|9725356 +sima|9725502 +simal|9725527 +simarouba|9725599 +simarouba amara|9725662 +simarouba glauca|9725726 +simaroubaceae|9725810 +simazine|9725902 +simchas torah|9725953 +simchat torah|9726128 +simenon|9726303 +simeon|9726391 +simhat torah|9726424 +simhath torah|9726598 +simian|9726773 +similar|9726811 +similarity|9727100 +similarly|9727216 +simile|9727243 +similitude|9727295 +simmer|9727391 +simmer down|9727431 +simmering|9727524 +simnel|9727587 +simoleons|9727651 +simon|9727792 +simon bolivar|9728148 +simon de montfort|9728260 +simon kuznets|9728337 +simon legree|9728408 +simon marks|9728536 +simon newcomb|9728633 +simon peter|9728711 +simon the canaanite|9728832 +simon the zealot|9728942 +simon zelotes|9729049 +simone de beauvoir|9729153 +simone weil|9729279 +simonise|9729329 +simoniz|9729394 +simonize|9729426 +simony|9729491 +simoom|9729515 +simoon|9729577 +simper|9729639 +simperer|9729667 +simperingly|9729692 +simple|9729728 +simple absence|9730306 +simple closed curve|9730370 +simple eye|9730425 +simple fraction|9730477 +simple fracture|9730527 +simple fruit|9730583 +simple harmonic motion|9730617 +simple interest|9730665 +simple leaf|9730699 +simple machine|9730741 +simple mastectomy|9730791 +simple microscope|9730829 +simple mindedness|9730901 +simple pendulum|9730965 +simple phobia|9730999 +simple pistil|9731061 +simple protein|9731091 +simple regression|9731123 +simple sentence|9731252 +simple sugar|9731286 +simple-minded|9730226 +simpleness|9731368 +simpleton|9731407 +simplex|9731486 +simplicity|9731532 +simplification|9731708 +simplified|9731804 +simplify|9731843 +simplistic|9731881 +simply|9731923 +simpson|9731984 +simpson desert|9732184 +simulacrum|9732230 +simulate|9732314 +simulated|9732425 +simulated military operation|9732505 +simulation|9732591 +simulative electronic deception|9732825 +simulator|9732919 +simulcast|9732946 +simuliidae|9732975 +simulium|9733041 +simultaneity|9733099 +simultaneous|9733145 +simultaneous equations|9733259 +simultaneous operation|9733300 +simultaneously|9733361 +simultaneousness|9733401 +simvastatin|9733447 +sin|9733543 +sinai|9733958 +sinai desert|9734077 +sinai peninsula|9734125 +sinanthropus|9734182 +sinapis|9734244 +sinapis alba|9734305 +sinapis arvensis|9734377 +sinapism|9734488 +sinatra|9734549 +sinbad|9734672 +sinbad the sailor|9734764 +since a long time ago|9734867 +sincere|9734911 +sincerely|9735168 +sincerely yours|9735226 +sincerity|9735260 +sinciput|9735431 +sinclair|9735457 +sinclair lewis|9735636 +sindhi|9735716 +sine|9735768 +sine curve|9735827 +sine qua non|9735872 +sine wave|9735939 +sinecure|9735974 +sinequan|9736087 +sinew|9736216 +sinewy|9736285 +sinful|9736413 +sinfulness|9736488 +sing|9736539 +sing along|9736976 +sing-kwa|9736868 +singable|9737001 +singalong|9737027 +singan|9737074 +singapore|9737150 +singapore dollar|9737307 +singaporean|9737357 +singe|9737491 +singer|9737584 +singhalese|9737813 +singing|9738038 +singing voice|9738195 +single|9738264 +single bed|9740342 +single cream|9740366 +single crochet|9740419 +single dwelling|9740501 +single entry|9740547 +single file|9740615 +single out|9740658 +single prop|9740825 +single quote|9740885 +single shell|9740943 +single stitch|9740997 +single supplement|9741080 +single tax|9741117 +single-barreled|9738734 +single-barrelled|9738792 +single-bedded|9738834 +single-breasted|9738864 +single-breasted jacket|9738905 +single-breasted suit|9738944 +single-celled|9738995 +single-channel|9739051 +single-entry bookkeeping|9739100 +single-foot|9739168 +single-handed|9739216 +single-handedly|9739312 +single-lane|9739350 +single-leaf|9739383 +single-leaf pine|9739466 +single-leaf pinyon|9739549 +single-member system|9739632 +single-minded|9739794 +single-mindedness|9739835 +single-propeller plane|9739903 +single-reed instrument|9739963 +single-reed woodwind|9740045 +single-rotor helicopter|9740127 +single-shelled|9740200 +single-spaced|9740233 +single-spacing|9740263 +single-stranded|9740306 +singleness|9741170 +singles|9741265 +singlestick|9741400 +singlet|9741451 +singletary pea|9741497 +singleton|9741583 +singly|9741658 +singsong|9741741 +singular|9741937 +singular form|9742158 +singular matrix|9742226 +singularise|9742265 +singularity|9742330 +singularize|9742437 +singultus|9742502 +sinhala|9742643 +sinhalese|9742782 +sinister|9743006 +sinistral|9743152 +sinistrality|9743293 +sinistrorsal|9743353 +sinistrorse|9743397 +sinitic|9743441 +sinitic language|9743546 +sink|9743632 +sink in|9744180 +sinkable|9744320 +sinker|9744347 +sinkhole|9744424 +sinkiang|9744490 +sinking|9744575 +sinking feeling|9744666 +sinking fund|9744707 +sinking spell|9744748 +sinless|9744790 +sinlessness|9744835 +sinn fein|9744890 +sinner|9744938 +sinning|9744982 +sinningia|9745044 +sinningia speciosa|9745109 +sino-japanese war|9745202 +sino-tibetan|9745278 +sino-tibetan language|9745359 +sinoatrial node|9745449 +sinologist|9745538 +sinology|9745602 +sinoper|9745680 +sinopia|9745725 +sinopis|9745770 +sinornis|9745815 +sinter|9745847 +sintered|9745896 +sinuate|9745946 +sinuosity|9746007 +sinuous|9746057 +sinuousness|9746104 +sinus|9746154 +sinus cavernosus|9746285 +sinus coronarius|9746346 +sinus ethmoidales|9746406 +sinus headache|9746469 +sinus paranasales|9746524 +sinus rectus|9746585 +sinus sigmoideus|9746657 +sinus transversus|9746716 +sinus venosus sclerae|9746779 +sinusitis|9746878 +sinusoid|9746924 +sinusoidal|9746995 +sinusoidal projection|9747030 +sion|9747137 +siouan|9747288 +siouan language|9747639 +siouan-speaking|9747570 +sioux|9747763 +sioux city|9747820 +sioux falls|9747880 +sip|9747942 +sipah-e-sahaba|9748005 +siphon|9748118 +siphon off|9748231 +siphonaptera|9748279 +siphonophora|9748346 +siphonophore|9748413 +sipper|9748453 +sipuncula|9748477 +sipunculid|9748530 +siqueiros|9748575 +sir|9748651 +sir alan lloyd hodgkin|9748706 +sir alec guinness|9748795 +sir alexander fleming|9748906 +sir alexander korda|9749000 +sir alexander mackenzie|9749117 +sir alexander robertus todd|9749204 +sir alfred charles bernard lovell|9749282 +sir alfred hitchcock|9749418 +sir angus wilson|9749534 +sir anthony hopkins|9749627 +sir anthony philip hopkins|9749770 +sir anthony vandyke|9749920 +sir arthur conan doyle|9750013 +sir arthur john evans|9750128 +sir arthur stanley eddington|9750227 +sir arthur sullivan|9750337 +sir arthur travers harris|9750444 +sir barton|9750564 +sir bernanrd williams|9750608 +sir bernard law montgomery|9750712 +sir bernard lovell|9750865 +sir charles leonard woolley|9750986 +sir charles scott sherrington|9751106 +sir charles spencer chaplin|9751200 +sir charles wheatstone|9751351 +sir charles william siemens|9751457 +sir christopher wren|9751591 +sir clive marles sinclair|9751666 +sir david alexander cecil low|9751796 +sir david bruce|9751904 +sir david low|9752013 +sir edmund hillary|9752105 +sir edmund percival hillary|9752232 +sir edward elgar|9752368 +sir edward victor appleton|9752451 +sir edward william elgar|9752549 +sir edwin landseer luytens|9752640 +sir edwin lutyens|9752748 +sir ernst boris chain|9752847 +sir francis bacon|9752935 +sir francis drake|9753096 +sir francis galton|9753192 +sir fred hoyle|9753286 +sir frederick ashton|9753357 +sir frederick gowland hopkins|9753429 +sir frederick grant banting|9753517 +sir frederick william herschel|9753617 +sir galahad|9753768 +sir gawain|9753860 +sir geoffrey wilkinson|9753949 +sir george otto trevelyan|9754022 +sir george paget thomson|9754141 +sir geraint|9754239 +sir hans adolf krebs|9754287 +sir harold george nicolson|9754372 +sir harold walter kroto|9754495 +sir harry maclennan lauder|9754595 +sir henry bessemer|9754729 +sir henry joseph wood|9754851 +sir henry maxmilian beerbohm|9754958 +sir henry morgan|9755074 +sir henry morton stanley|9755175 +sir henry percy|9755304 +sir henry rider haggard|9755381 +sir henry wood|9755474 +sir herbert beerbohm tree|9755574 +sir hiram stevens maxim|9755703 +sir howard walter florey|9755796 +sir humphrey davy|9755902 +sir humphrey gilbert|9755974 +sir isaac newton|9756060 +sir isaac pitman|9756147 +sir jack hobbs|9756216 +sir jacob epstein|9756288 +sir james augustus henry murray|9756395 +sir james augustus murray|9756631 +sir james clark ross|9756861 +sir james dewar|9756954 +sir james george frazer|9757019 +sir james matthew barrie|9757118 +sir james murray|9757252 +sir james paget|9757473 +sir james paul mccartney|9757546 +sir james young simpson|9757673 +sir john carew eccles|9757773 +sir john cockcroft|9757858 +sir john cowdery kendrew|9757960 +sir john douglas cockcroft|9758052 +sir john everett millais|9758162 +sir john falstaff|9758244 +sir john frederick william herschel|9758349 +sir john gielgud|9758504 +sir john hawkins|9758618 +sir john hawkyns|9758718 +sir john herschel|9758818 +sir john ross|9758955 +sir john suckling|9759027 +sir john tenniel|9759095 +sir john vanbrigh|9759157 +sir joseph banks|9759244 +sir joseph john thomson|9759330 +sir joseph paxton|9759425 +sir joshua reynolds|9759510 +sir lancelot|9759576 +sir laurence kerr olivier|9759671 +sir leonard hutton|9759826 +sir leonard woolley|9759890 +sir leslie stephen|9760002 +sir martin frobisher|9760071 +sir matthew flinders|9760162 +sir mortimer wheeler|9760259 +sir noel pierce coward|9760378 +sir oliver joseph lodge|9760525 +sir oliver lodge|9760615 +sir patrick manson|9760698 +sir paul gavrilovich vinogradoff|9760787 +sir peter brian medawar|9760900 +sir peter paul rubens|9760992 +sir peter ustinov|9761081 +sir philip sidney|9761222 +sir ralph david richardson|9761279 +sir rex harrison|9761413 +sir richard burton|9761545 +sir richard francis burton|9761661 +sir richard owen|9761785 +sir richrd steele|9761896 +sir robert eric mortimer wheeler|9761962 +sir robert peel|9762093 +sir robert robinson|9762192 +sir robert walpole|9762274 +sir roger gilbert bannister|9762397 +sir ronald ross|9762504 +sir sarvepalli radhakrishnan|9762585 +sir seretse khama|9762735 +sir stephen harold spender|9762818 +sir terence mervyn rattigan|9762926 +sir thomas gresham|9763038 +sir thomas lawrence|9763112 +sir thomas malory|9763178 +sir thomas more|9763258 +sir thomas raffles|9763362 +sir thomas stamford raffles|9763469 +sir thomas wyat|9763585 +sir thomas wyatt|9763659 +sir tim rice|9763734 +sir tom stoppard|9763809 +sir walter norman haworth|9763913 +sir walter ralegh|9763993 +sir walter raleigh|9764130 +sir walter scott|9764268 +sir william alexander craigie|9764344 +sir william chambers|9764467 +sir william crookes|9764563 +sir william gerald golding|9764654 +sir william gilbert|9764755 +sir william herschel|9764887 +sir william huggins|9765028 +sir william rowan hamilton|9765118 +sir william turner walton|9765227 +sir william wallace|9765323 +sir william walton|9765428 +sir winston leonard spenser churchill|9765517 +sir yehudi menuhin|9765697 +sirach|9765785 +siracusa|9765871 +siraj-ud-daula|9765936 +sirc|9765996 +sirdar|9766088 +sire|9766150 +siren|9766339 +siren call|9766555 +siren song|9766613 +sirenia|9766671 +sirenian|9766723 +sirenian mammal|9766780 +sirenidae|9766837 +siriasis|9766900 +siris|9766982 +siris tree|9767058 +sirius|9767134 +sirloin|9767213 +sirloin steak|9767246 +sirloin tip|9767279 +sirocco|9767312 +sirrah|9767367 +sirup|9767400 +sis|9767442 +sisal|9767744 +sisal family|9767850 +sisal hemp|9767934 +sise|9767984 +sisham|9768083 +siskin|9768134 +siskiyou lewisia|9768173 +sison|9768240 +sison amomum|9768291 +siss|9768362 +sissified|9768493 +sissiness|9768590 +sissoo|9768682 +sissu|9768733 +sissy|9768784 +sissyish|9768932 +sister|9769029 +sister ship|9769199 +sister-in-law|9769153 +sisterhood|9769295 +sisterlike|9769410 +sisterly|9769447 +sistership|9769493 +sistrurus|9769565 +sistrurus catenatus|9769624 +sistrurus miliaris|9769723 +sisymbrium barbarea|9769816 +sisymbrium officinale|9769925 +sisymbrium tanacetifolia|9770014 +sisyphean|9770140 +sisyphus|9770210 +sisyridae|9770252 +sisyrinchium|9770315 +sit|9770390 +sit back|9770836 +sit by|9770946 +sit down|9770985 +sit in|9771081 +sit out|9771125 +sit tight|9771251 +sit up|9771287 +sit-down|9770645 +sit-down strike|9770700 +sit-in|9770755 +sit-up|9770790 +sita|9771338 +sitar|9771372 +sitar player|9771407 +sitcom|9771461 +site|9771505 +site visit|9771807 +sitka|9771833 +sitka spruce|9771859 +sitka willow|9771918 +sitophylus|9772002 +sitophylus oryzae|9772066 +sitotroga|9772143 +sitotroga cerealella|9772204 +sitsang|9772302 +sitta|9772374 +sitta canadensis|9772418 +sitta carolinensis|9772503 +sitta europaea|9772594 +sitter|9772671 +sittidae|9772894 +sitting|9772949 +sitting bull|9773138 +sitting duck|9773212 +sitting room|9773256 +sitting trot|9773333 +situate|9773360 +situated|9773475 +situation|9773520 +situation comedy|9773734 +sitwell|9773828 +sitz bath|9773903 +sium|9773960 +sium latifolium|9774008 +sium sisarum|9774105 +sium suave|9774182 +siva|9774261 +sivaism|9774298 +sivan|9774411 +sivapithecus|9774460 +siwan|9774503 +six|9774552 +six day war|9775346 +six nations|9775420 +six times|9775508 +six-day war|9774696 +six-footer|9774851 +six-gilled shark|9774924 +six-gun|9774984 +six-lined racerunner|9775060 +six-membered|9775164 +six-pack|9775206 +six-shooter|9775231 +six-spot|9775307 +sixer|9775534 +sixfold|9775633 +sixpence|9775684 +sixpenny|9775714 +sixpenny nail|9775809 +sixsome|9775837 +sixteen|9775891 +sixteen personality factor questionnaire|9775952 +sixteenth|9776105 +sixteenth note|9776149 +sixth|9776207 +sixth baron byron of rochdale|9776373 +sixth cranial nerve|9776478 +sixth crusade|9776585 +sixth form|9776630 +sixth sense|9776667 +sixth-former|9776328 +sixties|9776706 +sixtieth|9776821 +sixty|9776916 +sixty-eight|9776984 +sixty-fifth|9777024 +sixty-five|9777058 +sixty-four|9777094 +sixty-fourth note|9777131 +sixty-nine|9777200 +sixty-one|9777272 +sixty-seven|9777307 +sixty-six|9777346 +sixty-three|9777382 +sixty-two|9777421 +sizable|9777457 +size|9777562 +size constancy|9777802 +size of it|9777836 +size stick|9777888 +size up|9777946 +sizeable|9778008 +sizeableness|9778112 +sized|9778216 +sizing|9778304 +sizz|9778332 +sizzle|9778463 +sizzling|9778542 +sjaelland|9778583 +sk-ampicillin|9778635 +skagens odde|9778715 +skagerak|9778765 +skagerrak|9778815 +skagit|9778866 +skanda|9778926 +skank|9778961 +skanky|9779078 +skate|9779214 +skate over|9779285 +skateboard|9779368 +skateboarder|9779413 +skateboarding|9779442 +skater|9779473 +skating|9779502 +skating rink|9779535 +skaw|9779579 +skeat|9779621 +skedaddle|9779686 +skeen arch|9779825 +skeet|9779889 +skeet shooting|9779938 +skeeter hawk|9779987 +skeg|9780119 +skein|9780139 +skeletal|9780159 +skeletal frame|9780255 +skeletal muscle|9780326 +skeletal structure|9780383 +skeletal system|9780492 +skeleton|9780557 +skeleton fork fern|9780780 +skeleton in the closet|9780834 +skeleton in the cupboard|9780916 +skeleton key|9780998 +skeleton shrimp|9781060 +skene arch|9781094 +skep|9781158 +skepful|9781210 +skeptic|9781240 +skeptical|9781296 +skeptically|9781412 +skepticism|9781444 +sketch|9781615 +sketch block|9781822 +sketch map|9781878 +sketch pad|9781902 +sketchbook|9781958 +sketcher|9782014 +sketchiness|9782074 +sketchy|9782110 +skew|9782162 +skew arch|9782312 +skew correlation|9782336 +skew-eyed|9782208 +skew-whiff|9782232 +skewed|9782445 +skewer|9782475 +skewness|9782511 +ski|9782562 +ski boot|9782662 +ski boots|9782695 +ski cap|9782749 +ski conditions|9782796 +ski jacket|9782837 +ski jump|9782904 +ski jumper|9782965 +ski jumping|9782991 +ski lift|9783019 +ski lodge|9783071 +ski mask|9783096 +ski parka|9783124 +ski pole|9783191 +ski race|9783214 +ski rack|9783249 +ski resort|9783275 +ski run|9783330 +ski slope|9783363 +ski tow|9783401 +ski trail|9783453 +ski wax|9783486 +ski-plane|9782618 +skiagram|9783507 +skiagraph|9783598 +skiagraphy|9783689 +skibob|9783733 +skid|9783757 +skid lid|9783983 +skid road|9784014 +skid row|9784044 +skidder|9784077 +skidpan|9784191 +skier|9784222 +skiff|9784250 +skiffle|9784276 +skiffle group|9784327 +skiing|9784359 +skiing race|9784391 +skilful|9784426 +skilfully|9784499 +skill|9784528 +skilled|9784636 +skilled worker|9784866 +skillet|9784912 +skillet bread|9784963 +skillet cake|9785008 +skillet corn bread|9785052 +skillet fish|9785090 +skilletfish|9785234 +skillful|9785297 +skillfully|9785390 +skillfulness|9785419 +skilly|9785447 +skim|9785469 +skim milk|9785811 +skim off|9785848 +skim over|9785963 +skimcoat|9786010 +skimmed|9786041 +skimmed milk|9786087 +skimmer|9786124 +skimming|9786280 +skimp|9786421 +skimp over|9786554 +skimpy|9786637 +skin|9786681 +skin and bones|9787208 +skin cancer|9787297 +skin care|9787328 +skin cell|9787464 +skin color|9787512 +skin colour|9787587 +skin condition|9787662 +skin disease|9787797 +skin disorder|9787889 +skin diving|9787981 +skin doctor|9788026 +skin effect|9788091 +skin eruption|9788134 +skin graft|9788185 +skin over|9788225 +skin patch|9788249 +skin perceptiveness|9788291 +skin pop|9788503 +skin problem|9788525 +skin rash|9788617 +skin sensation|9788672 +skin test|9788799 +skin tumor|9788851 +skin-deep|9787052 +skin-dive|9787099 +skin-diver|9787156 +skincare|9788903 +skinflint|9788958 +skinhead|9789007 +skinheads|9789085 +skink|9789206 +skinned|9789251 +skinner|9789292 +skinnerian|9789613 +skinniness|9789683 +skinny|9789733 +skinny dip|9789817 +skint|9789842 +skintight|9789897 +skip|9789922 +skip distance|9790333 +skip over|9790372 +skip rope|9790472 +skip town|9790520 +skip-bomb|9790301 +skipjack|9790578 +skipjack tuna|9790763 +skipper|9790838 +skipping rope|9790989 +skirl|9791037 +skirmish|9791086 +skirmisher|9791176 +skirret|9791243 +skirt|9791307 +skirt chaser|9791634 +skirt of tasses|9791713 +skirting|9791802 +skirting board|9791842 +skis|9791902 +skit|9791945 +skitter|9791996 +skittish|9792090 +skittishness|9792133 +skittle|9792179 +skittle alley|9792244 +skittle ball|9792292 +skittle pin|9792332 +skittles|9792385 +skive|9792471 +skivvies|9792492 +skivvy|9792614 +skopje|9792674 +skoplje|9792728 +skreak|9792783 +skreigh|9792946 +skua|9793049 +skuld|9793077 +skulduggery|9793103 +skulk|9793230 +skulker|9793326 +skulking|9793407 +skull|9793529 +skull and crossbones|9793552 +skull practice|9793589 +skull session|9793657 +skullcap|9793740 +skullduggery|9793786 +skunk|9793913 +skunk bear|9794447 +skunk cabbage|9794534 +skunk-weed|9794305 +skunkbush|9794703 +skunkweed|9794778 +sky|9794839 +sky burial|9795031 +sky dive|9795059 +sky glow|9795181 +sky marshal|9795204 +sky pilot|9795254 +sky wave|9795315 +sky-blue|9794888 +sky-high|9794997 +skybox|9795375 +skycap|9795434 +skydive|9795457 +skydiver|9795498 +skydiving|9795556 +skye terrier|9795592 +skyhook|9795635 +skyjack|9795704 +skylab|9795755 +skylark|9795824 +skylight|9795955 +skyline|9795989 +skyrocket|9796094 +skysail|9796228 +skyscraper|9796271 +skywalk|9796308 +skyward|9796344 +skywards|9796390 +skyway|9796415 +skywriting|9796480 +sl|9796508 +slab|9796627 +slabber|9796647 +slack|9796709 +slack off|9797303 +slack suit|9797380 +slack tide|9797421 +slack up|9797458 +slack water|9797519 +slacken|9797556 +slacken off|9797712 +slackening|9797785 +slacker|9797836 +slacking|9797898 +slackly|9797984 +slackness|9798008 +slacks|9798048 +slag|9798304 +slag code|9798336 +slagheap|9798385 +slain|9798427 +slake|9798459 +slaked|9798591 +slaked lime|9798636 +slalom|9798761 +slam|9798809 +slam dance|9799212 +slam dancing|9799365 +slam dunk|9799434 +slam on|9799527 +slam-bang|9799076 +slam-dunk|9799134 +slammer|9799573 +slander|9799664 +slanderer|9799883 +slanderous|9799996 +slanderously|9800114 +slang|9800148 +slanginess|9800415 +slanguage|9800458 +slangy|9800511 +slant|9800536 +slant-eye|9800755 +slanted|9800804 +slanting|9800933 +slantingly|9801006 +slantways|9801035 +slantwise|9801063 +slap|9801091 +slap on|9801339 +slap together|9801385 +slap-bang|9801193 +slap-up|9801221 +slapdash|9801450 +slaphappy|9801546 +slapped|9801678 +slapper|9801743 +slapshot|9801783 +slapstick|9801806 +slash|9801881 +slash pocket|9802350 +slashed|9802379 +slasher|9802472 +slashing|9802560 +slask|9802596 +slat|9802715 +slate|9802797 +slate club|9803111 +slate pencil|9803167 +slate roof|9803196 +slate-colored junco|9802981 +slate-gray|9803056 +slater|9803221 +slatey|9803254 +slather|9803327 +slating|9803351 +slattern|9803444 +slatternliness|9803710 +slatternly|9803760 +slaty|9803810 +slaughter|9803884 +slaughterer|9804131 +slaughterhouse|9804190 +slaughterous|9804258 +slav|9804325 +slave|9804461 +slave ant|9804874 +slave dealer|9804911 +slave driver|9804975 +slave market|9805037 +slave owner|9805076 +slave ship|9805132 +slave state|9805157 +slave trade|9805193 +slave trader|9805236 +slave traffic|9805300 +slave-maker|9804762 +slave-making ant|9804818 +slaveholder|9805343 +slaveholding|9805399 +slaveless|9805459 +slavelike|9805493 +slaver|9805520 +slavery|9805684 +slavey|9805820 +slavic|9805880 +slavic language|9806068 +slavic people|9806193 +slavic race|9806247 +slavish|9806299 +slavonic|9806365 +slavonic language|9806555 +slaw|9806682 +slay|9806711 +slayer|9806777 +slaying|9806853 +sle|9806896 +sleaze|9806981 +sleazy|9807035 +sled|9807162 +sled dog|9807217 +sledder|9807258 +sledding|9807288 +sledge|9807362 +sledge dog|9807496 +sledgehammer|9807537 +sleek|9807599 +sleek down|9807720 +sleek over|9807783 +sleekness|9807847 +sleep|9807887 +sleep apnea|9808284 +sleep disorder|9808326 +sleep in|9808365 +sleep late|9808456 +sleep off|9808526 +sleep out|9808550 +sleep over|9808608 +sleep talking|9808644 +sleep terror disorder|9808723 +sleep with|9808785 +sleep-learning|9808219 +sleeper|9809028 +sleeper cell|9809423 +sleeper goby|9809456 +sleeper nest|9809518 +sleepers|9809545 +sleepiness|9810041 +sleeping|9810099 +sleeping around|9810280 +sleeping bag|9810382 +sleeping beauty|9810408 +sleeping capsule|9810521 +sleeping car|9810637 +sleeping draught|9810706 +sleeping hibiscus|9810822 +sleeping partner|9810877 +sleeping pill|9810926 +sleeping room|9811042 +sleeping sickness|9811097 +sleeping tablet|9811243 +sleepless|9811359 +sleepless person|9811424 +sleeplessness|9811497 +sleepover|9811548 +sleepwalk|9811624 +sleepwalker|9811661 +sleepwalking|9811726 +sleepy|9811826 +sleepy dick|9811922 +sleepy sickness|9812013 +sleepy-eyed|9811874 +sleepyhead|9812159 +sleepyheaded|9812232 +sleet|9812280 +sleety|9812352 +sleeve|9812375 +sleeved|9812422 +sleeveless|9812447 +sleigh|9812529 +sleigh bed|9812582 +sleigh bell|9812606 +sleight|9812641 +sleight of hand|9812734 +slender|9812859 +slender centaury|9813146 +slender knapweed|9813181 +slender lady palm|9813216 +slender loris|9813280 +slender rush|9813324 +slender salamander|9813365 +slender spike rush|9813420 +slender wheatgrass|9813522 +slender wild oat|9813638 +slender-tailed meerkat|9813018 +slender-waisted|9813085 +slenderise|9813682 +slenderize|9813733 +slenderly|9813857 +slenderness|9813925 +sleuth|9814018 +sleuthhound|9814109 +sleuthing|9814181 +slew|9814268 +slews|9814657 +slezsko|9815056 +slice|9815177 +slice bar|9815447 +slice into|9815470 +slice through|9815528 +slice up|9815586 +sliced|9815614 +slicer|9815672 +slicing|9815744 +slick|9815819 +slick down|9816218 +slick magazine|9816281 +slick up|9816324 +slicked|9816474 +slicked up|9816509 +slicker|9816534 +slickly|9816694 +slickness|9816717 +slide|9816929 +slide action|9817288 +slide by|9817346 +slide down|9817472 +slide fastener|9817556 +slide projector|9817639 +slide rule|9817674 +slide valve|9817738 +slider|9817765 +slideway|9817970 +sliding|9818029 +sliding door|9818062 +sliding keel|9818089 +sliding scale|9818154 +sliding seat|9818202 +sliding window|9818229 +slight|9818260 +slight care|9818494 +slightest|9818549 +slighting|9818671 +slightingly|9818779 +slightly|9818813 +slightness|9818862 +slim|9818999 +slim chance|9819199 +slim down|9819250 +slim-waisted|9819138 +slime|9819336 +slime bacteria|9819449 +slime eels|9819565 +slime mold|9819638 +slime mould|9819677 +slime mushroom|9819716 +slimed|9819762 +sliminess|9819800 +slimly|9819926 +slimness|9819960 +slimy|9820019 +sling|9820057 +slingback|9820262 +slinger|9820292 +slinger ring|9820317 +slinging|9820349 +slingshot|9820373 +slink|9820421 +slip|9820441 +slip away|9821806 +slip by|9822004 +slip carriage|9822130 +slip clutch|9822201 +slip coach|9822259 +slip friction clutch|9822330 +slip in|9822388 +slip noose|9822448 +slip of paper|9822493 +slip of the tongue|9822557 +slip off|9822598 +slip on|9822625 +slip one's mind|9822674 +slip ring|9822740 +slip road|9822811 +slip stitch|9822853 +slip up|9822881 +slip-joint pliers|9821590 +slip-on|9821646 +slip-skin grape|9821705 +slip-up|9821746 +slipcover|9822931 +slipknot|9822965 +slipover|9822988 +slippage|9823023 +slipped disc|9823114 +slipper|9823188 +slipper orchid|9823313 +slipper plant|9823407 +slipper spurge|9823456 +slippered|9823505 +slipperiness|9823543 +slipperwort|9823647 +slippery|9823687 +slippery dick|9823848 +slippery elm|9823900 +slipping|9823955 +slippy|9824000 +slipshod|9824108 +slipstick|9824161 +slipstream|9824225 +slipway|9824279 +slit|9824332 +slit trench|9824589 +slither|9824617 +slithering|9824664 +slithery|9824709 +sliver|9824743 +slivery|9824976 +slivovitz|9825011 +slo-bid|9825037 +sloanea|9825125 +sloanea jamaicensis|9825186 +slob|9825267 +slobber|9825318 +slobber over|9825441 +slobberer|9825518 +sloe|9825617 +sloe gin|9825764 +slog|9825786 +slogan|9825955 +sloganeer|9826025 +sloganeering|9826069 +slogger|9826110 +sloop|9826232 +sloop of war|9826275 +slop|9826328 +slop basin|9826691 +slop bowl|9826726 +slop chest|9826761 +slop jar|9826792 +slop pail|9826832 +slop-seller|9826547 +slope|9826872 +sloped|9827020 +sloping|9827093 +sloping trough|9827181 +slopingly|9827240 +slopped|9827269 +sloppiness|9827500 +sloppy|9827556 +sloppy joe|9827623 +slops|9827663 +slopseller|9827820 +slopseller's shop|9827883 +slopshop|9827977 +slosh|9828071 +slosh around|9828274 +sloshed|9828364 +slot|9828595 +slot machine|9828822 +sloth|9828865 +sloth bear|9829026 +slothful|9829082 +slothfulness|9829144 +slouch|9829233 +slouch hat|9829357 +slouched|9829406 +sloucher|9829450 +slouching|9829521 +slouchy|9829565 +slough|9829589 +slough grass|9829809 +slough of despond|9829911 +sloughing|9829949 +sloughy|9830012 +slovak|9830077 +slovak republic|9830173 +slovakia|9830256 +slovakian|9830332 +slovakian monetary unit|9830393 +sloven|9830464 +slovene|9830515 +slovenia|9830614 +slovenian|9830705 +slovenija|9830792 +slovenliness|9830884 +slovenly|9830961 +slovenly person|9831000 +slovenly woman|9831051 +slow|9831129 +slow down|9831903 +slow lane|9832174 +slow loris|9832206 +slow match|9832275 +slow motion|9832324 +slow time scale|9832457 +slow up|9832513 +slow virus|9832691 +slow-moving|9831756 +slow-witted|9831782 +slow-wittedness|9831849 +slowcoach|9832717 +slowdown|9832807 +slowgoing|9832854 +slowing|9832916 +slowly|9832983 +slowness|9833028 +slowpoke|9833252 +slowworm|9833342 +sls|9833400 +slub|9833603 +slubbed|9833637 +sludge|9833698 +slue|9833785 +slug|9833877 +slugabed|9834043 +slugfest|9834107 +sluggard|9834174 +slugger|9834234 +sluggish|9834330 +sluggishness|9834408 +sluice|9834529 +sluice down|9834725 +sluice valve|9834802 +sluicegate|9834885 +sluiceway|9834968 +sluicing|9835011 +slum|9835042 +slum area|9835097 +slumber|9835135 +slumber party|9835285 +slumberer|9835314 +slumberous|9835348 +slumbery|9835427 +slumbrous|9835483 +slumgullion|9835563 +slummy|9835589 +slump|9835610 +slumped|9835977 +slur|9836021 +slur over|9836289 +slurp|9836372 +slurred|9836391 +slurry|9836429 +slush|9836456 +slush around|9836599 +slush fund|9836689 +slushy|9836728 +slut|9836845 +sluttish|9837015 +sluttishness|9837117 +sluzhba vneshney razvedki|9837167 +sly|9837295 +slyboots|9837384 +slyly|9837463 +slyness|9837531 +sm|9837650 +smack|9837765 +smacker|9838258 +smacking|9838300 +small|9838334 +small beer|9840134 +small boat|9840202 +small business administration|9840227 +small businessman|9840319 +small calorie|9840373 +small cane|9840449 +small cap|9840506 +small capital|9840625 +small cell carcinoma|9840720 +small change|9840779 +small civet|9840855 +small computer system interface|9840935 +small cranberry|9840996 +small farmer|9841070 +small fortune|9841128 +small fry|9841201 +small hours|9841372 +small indefinite amount|9841410 +small indefinite quantity|9841489 +small intestine|9841568 +small letter|9841613 +small loan company|9841708 +small magellanic cloud|9841777 +small person|9841849 +small print|9841924 +small ship|9842022 +small slam|9842047 +small stores|9842090 +small stuff|9842123 +small talk|9842149 +small town|9842286 +small white|9842335 +small white aster|9842387 +small-arm|9839172 +small-cap|9839209 +small-capitalisation|9839299 +small-capitalization|9839389 +small-for-gestational-age infant|9839479 +small-grained|9839576 +small-leaved lime|9839656 +small-leaved linden|9839760 +small-minded|9839864 +small-mindedly|9839913 +small-particle pollution|9839952 +small-scale|9840000 +small-time|9840086 +smaller|9842420 +smaller pectoral muscle|9843304 +smallest|9843441 +smalley|9844360 +smalleye hammerhead|9844451 +smallholder|9844522 +smallholding|9844579 +smallish|9844641 +smallmouth|9844665 +smallmouth bass|9844797 +smallmouth black bass|9844957 +smallmouthed bass|9845089 +smallmouthed black bass|9845221 +smallness|9845353 +smallpox|9845388 +smallpox virus|9845432 +smalltooth sawfish|9845479 +smaltite|9845534 +smarm|9845560 +smarmily|9845606 +smarminess|9845644 +smarmy|9845731 +smart|9845798 +smart aleck|9846195 +smart as a whip|9846267 +smart bomb|9846321 +smart card|9846346 +smart money|9846445 +smart set|9846603 +smarta|9846680 +smarten up|9846712 +smarting|9846860 +smartly|9846912 +smartness|9846978 +smash|9847101 +smash hit|9847623 +smash up|9847692 +smash-up|9847589 +smashed|9847731 +smasher|9847997 +smashing|9848205 +smashingly|9848365 +smatter|9848390 +smattering|9848601 +smear|9848731 +smear test|9849163 +smear word|9849243 +smeared|9849276 +smegma|9849338 +smell|9849360 +smell out|9849722 +smell up|9849770 +smelling|9849830 +smelling bottle|9849897 +smelling salts|9849929 +smelly|9849977 +smelt|9850078 +smelter|9850261 +smeltery|9850316 +smetana|9850371 +smew|9850421 +smidge|9850489 +smidgen|9850613 +smidgeon|9850737 +smidgin|9850861 +smilacaceae|9850985 +smilax|9851062 +smilax aspera|9851154 +smilax rotundifolia|9851219 +smile|9851339 +smiledon|9851475 +smiledon californicus|9851530 +smiler|9851614 +smiley|9851753 +smiling|9851778 +smilo|9851880 +smilo grass|9851947 +smirch|9852014 +smirched|9852239 +smirk|9852301 +smirker|9852364 +smitane|9852388 +smite|9852419 +smith|9852494 +smithereens|9853099 +smithy|9853167 +smitten|9853204 +smitty stevens|9853324 +smock|9853426 +smocking|9853543 +smog|9853582 +smogginess|9853621 +smoggy|9853660 +smoke|9853683 +smoke alarm|9854337 +smoke bomb|9854403 +smoke bush|9854442 +smoke grenade|9854502 +smoke hole|9854541 +smoke out|9854594 +smoke screen|9854648 +smoke tree|9854819 +smoke-cured|9854179 +smoke-dried|9854229 +smoke-filled|9854279 +smoke-free|9854307 +smoked|9854893 +smoked haddock|9854943 +smoked herring|9855011 +smoked mackerel|9855055 +smoked salmon|9855089 +smokehouse|9855119 +smokeless|9855156 +smokeless powder|9855196 +smoker|9855243 +smokescreen|9855390 +smokestack|9855481 +smoking|9855515 +smoking car|9855670 +smoking carriage|9855764 +smoking compartment|9855858 +smoking gun|9855952 +smoking jacket|9855982 +smoking mixture|9856029 +smoking room|9856068 +smoky|9856095 +smoky quartz|9856163 +smolder|9856202 +smoldering|9856273 +smolderingly|9856335 +smolensk|9856370 +smollett|9856426 +smooch|9856506 +smooching|9856581 +smooth|9856699 +smooth alder|9857711 +smooth aster|9857778 +smooth bark kauri|9857806 +smooth crabgrass|9857903 +smooth darling pea|9857983 +smooth dogfish|9858057 +smooth earthball|9858089 +smooth green snake|9858190 +smooth hammerhead|9858261 +smooth lip fern|9858332 +smooth muscle|9858415 +smooth muscle cell|9858503 +smooth out|9858569 +smooth over|9858618 +smooth plane|9858701 +smooth softshell|9858781 +smooth sumac|9858858 +smooth winterberry holly|9858939 +smooth woodsia|9858979 +smooth-faced|9857351 +smooth-haired fox terrier|9857392 +smooth-leaved elm|9857439 +smooth-shaven|9857517 +smooth-spoken|9857579 +smooth-tongued|9857658 +smoothbark|9859028 +smoothbore|9859084 +smoothed|9859113 +smoothen|9859149 +smoothened|9859258 +smoother|9859294 +smoothhound|9859358 +smoothhound shark|9859430 +smoothie|9859502 +smoothing iron|9859633 +smoothing plane|9859697 +smoothly|9859777 +smoothness|9859805 +smoothy|9859855 +smorgasbord|9859946 +smother|9860116 +smothered|9860418 +smotherer|9860491 +smothering|9860571 +smoulder|9860664 +smouldering|9860746 +smoulderingly|9860807 +smudge|9860842 +smudged|9860951 +smudgy|9861013 +smug|9861075 +smuggle|9861122 +smuggled|9861153 +smuggler|9861217 +smuggling|9861319 +smugness|9861360 +smut|9861437 +smut fungus|9861695 +smut grass|9861728 +smutch|9861810 +smuts|9861848 +smuttily|9862121 +smuttiness|9862147 +smutty|9862268 +smyrna|9862308 +smyrnium|9862371 +smyrnium olusatrum|9862431 +sn|9862548 +snack|9862607 +snack bar|9862665 +snack counter|9862709 +snack food|9862753 +snacker|9862778 +snaffle|9862815 +snaffle bit|9862887 +snafu|9862920 +snag|9863081 +snail|9863335 +snail bean|9863730 +snail butter|9863865 +snail darter|9863893 +snail flower|9863936 +snail mail|9864233 +snail-flower|9863433 +snailfish|9864291 +snailflower|9864374 +snake|9864509 +snake charmer|9865322 +snake dance|9865373 +snake doctor|9865475 +snake eyes|9865607 +snake feeder|9865648 +snake fence|9865780 +snake fern|9865855 +snake god|9865956 +snake in the grass|9866016 +snake mackerel|9866061 +snake muishond|9866111 +snake oil|9866166 +snake palm|9866241 +snake pit|9866324 +snake plant|9866625 +snake polypody|9866720 +snake river|9866775 +snake venom|9866820 +snake wood|9866847 +snake's head fritillary|9864767 +snake-fish|9864896 +snake-head|9865051 +snake-rail fence|9865247 +snakeberry|9867022 +snakebird|9867122 +snakebite|9867177 +snakeblenny|9867201 +snakefish|9867259 +snakefly|9867333 +snakehead|9867395 +snakelike|9867510 +snakeroot|9867561 +snakes and ladders|9867693 +snakeweed|9867732 +snakewood|9867864 +snaky|9867924 +snap|9867975 +snap at|9868948 +snap bean|9868996 +snap fastener|9869031 +snap line|9869105 +snap off|9869238 +snap pea|9869279 +snap ring|9869371 +snap roll|9869455 +snap up|9869479 +snap willow|9869514 +snapdragon|9869597 +snapline|9869624 +snapper|9869676 +snapping beetle|9869959 +snapping shrimp|9870038 +snapping turtle|9870084 +snappish|9870116 +snappishness|9870153 +snappy|9870252 +snapshot|9870509 +snapshot program|9870567 +snare|9870607 +snare drum|9870835 +snarer|9870897 +snarf|9870929 +snarl|9871023 +snarl up|9871340 +snarl-up|9871294 +snarled|9871393 +snarly|9871433 +snatch|9871473 +snatch block|9871765 +snatch up|9871796 +snatcher|9871848 +snazzy|9871961 +snead|9871997 +sneak|9872077 +sneak away|9872527 +sneak in|9872611 +sneak off|9872707 +sneak out|9872791 +sneak preview|9872875 +sneak thief|9872906 +sneak up|9872959 +sneaker|9873034 +sneakily|9873177 +sneakiness|9873210 +sneaking|9873279 +sneaky|9873316 +sneer|9873441 +sneerer|9873538 +sneering|9873601 +sneeringly|9873654 +sneeze|9873696 +sneezer|9873881 +sneezeweed|9873951 +sneezeweed yarrow|9873993 +sneezewort|9874058 +sneezing|9874123 +sneezy|9874267 +snellen|9874292 +snellen chart|9874368 +snellen test|9874426 +snick|9874476 +snicker|9874556 +snickersnee|9874649 +snide|9874725 +snidely|9874778 +sniff|9874820 +sniff out|9874926 +sniffer|9874974 +sniffle|9875044 +sniffler|9875214 +sniffly|9875294 +sniffy|9875337 +snifter|9875418 +snigger|9875484 +snip|9875577 +snip off|9875752 +snipe|9875796 +snipe hunt|9876013 +snipefish|9876048 +sniper|9876111 +sniper rifle|9876160 +snippet|9876204 +snipping|9876241 +snips|9876278 +snit|9876400 +snitch|9876456 +snitcher|9876683 +snivel|9876835 +sniveler|9877102 +sniveling|9877182 +sniveller|9877229 +sno-cat|9877348 +snob|9877384 +snobbery|9877446 +snobbish|9877533 +snobbishly|9877591 +snobbishness|9877628 +snobby|9877715 +snog|9877773 +snogging|9877814 +snood|9877912 +snook|9877961 +snooker|9877983 +snooker table|9878090 +snoop|9878160 +snooper|9878241 +snoopiness|9878268 +snoopy|9878332 +snoot|9878439 +snootily|9878524 +snooty|9878561 +snooze|9878666 +snore|9878779 +snorer|9878941 +snoring|9878975 +snorkel|9879095 +snorkel breather|9879272 +snorkel diving|9879364 +snorkeling|9879421 +snort|9879478 +snorter|9879792 +snorting|9879878 +snorty|9879982 +snot|9880017 +snot-nosed|9880109 +snotty|9880249 +snotty-nosed|9880393 +snout|9880452 +snout beetle|9880605 +snow|9880634 +snow blower|9881547 +snow bunting|9881589 +snow chains|9881660 +snow eater|9881699 +snow flurry|9881772 +snow goose|9881814 +snow gum|9881863 +snow job|9881979 +snow leopard|9882032 +snow lily|9882087 +snow line|9882188 +snow mist|9882212 +snow mushroom|9882305 +snow orchid|9882361 +snow pea|9882444 +snow plant|9882569 +snow thrower|9882631 +snow tire|9882673 +snow trillium|9882722 +snow-blind|9880967 +snow-blinded|9881029 +snow-capped|9881078 +snow-clad|9881130 +snow-covered|9881176 +snow-in-summer|9881222 +snow-on-the-mountain|9881427 +snow-white|9881510 +snowball|9882813 +snowbank|9882973 +snowbell|9883002 +snowberry|9883042 +snowbird|9883179 +snowblindness|9883308 +snowbound|9883362 +snowcap|9883390 +snowdrift|9883439 +snowdrop|9883464 +snowdrop anemone|9883535 +snowdrop tree|9883619 +snowdrop windflower|9883736 +snowfall|9883820 +snowfield|9883866 +snowflake|9883907 +snowman|9883999 +snowmobile|9884023 +snowplough|9884071 +snowplow|9884133 +snowshoe|9884195 +snowshoe hare|9884251 +snowshoe rabbit|9884325 +snowstorm|9884399 +snowsuit|9884447 +snowy|9884491 +snowy egret|9884587 +snowy heron|9884640 +snowy orchid|9884693 +snowy tree cricket|9884761 +snub|9884820 +snub-nosed|9885036 +snuff|9885081 +snuff it|9885551 +snuff out|9885720 +snuff user|9885818 +snuff-brown|9885312 +snuff-color|9885375 +snuff-colour|9885463 +snuffbox|9885855 +snuffbox fern|9885877 +snuffer|9886033 +snuffers|9886147 +snuffle|9886319 +snuffler|9886509 +snuffling|9886580 +snuffly|9886623 +snug|9886666 +snuggery|9886815 +snuggle|9886859 +snuggled|9887036 +snuggling|9887068 +snugness|9887186 +so|9887246 +so far|9887655 +so long|9887748 +so much|9887911 +so to speak|9887938 +so-and-so|9887387 +so-called|9887524 +so-so|9887573 +soak|9887985 +soak through|9888448 +soak up|9888487 +soakage|9888652 +soaked|9888729 +soaker|9889019 +soaking|9889189 +soaking up|9889420 +soap|9889460 +soap bubble|9889942 +soap dish|9889970 +soap dispenser|9889997 +soap film|9890031 +soap flakes|9890055 +soap opera|9890081 +soap pad|9890115 +soap powder|9890146 +soap tree|9890205 +soap-rock|9889665 +soap-weed|9889805 +soapberry|9890261 +soapberry family|9890300 +soapberry tree|9890390 +soapberry vine|9890429 +soapbox|9890458 +soapfish|9890535 +soaprock|9890576 +soapstone|9890635 +soapsuds|9890694 +soapweed|9890735 +soapwort|9890791 +soapwort gentian|9890876 +soapy|9890929 +soar|9890988 +soar up|9891221 +soar upwards|9891312 +soaring|9891403 +soave|9891529 +sob|9891561 +sob sister|9891829 +sob story|9891860 +sob stuff|9891920 +sobbing|9891980 +sober|9892022 +sober up|9892310 +sobering|9892375 +soberly|9892401 +soberness|9892433 +sobersided|9892575 +sobersides|9892627 +sobralia|9892661 +sobriety|9892705 +sobriquet|9892906 +socage|9893011 +soccer|9893035 +soccer ball|9893095 +soccer player|9893121 +sociability|9893176 +sociable|9893220 +sociableness|9893451 +sociably|9893495 +social|9893525 +social action|9893799 +social activity|9893836 +social affair|9893874 +social anthropologist|9893935 +social anthropology|9893981 +social assistance|9894045 +social class|9894131 +social climber|9894187 +social contract|9894259 +social control|9894301 +social dancer|9894338 +social dancing|9894421 +social democracy|9894481 +social democratic party|9894555 +social development commission|9894634 +social disease|9894760 +social drinker|9894905 +social event|9894966 +social function|9894994 +social gathering|9895073 +social group|9895134 +social insurance|9895171 +social intercourse|9895220 +social lion|9895279 +social movement|9895329 +social occasion|9895382 +social organisation|9895461 +social organization|9895565 +social phobia|9895669 +social policy|9895731 +social process|9895761 +social psychology|9895799 +social rank|9895859 +social relation|9895930 +social science|9895964 +social scientist|9896018 +social season|9896069 +social secretary|9896099 +social security|9896157 +social security administration|9896215 +social security number|9896309 +social service|9896393 +social station|9896435 +social status|9896506 +social stratification|9896577 +social structure|9896633 +social system|9896737 +social unit|9896841 +social welfare|9896893 +social work|9896939 +social worker|9896988 +socialisation|9897052 +socialise|9897235 +socialised|9897389 +socialiser|9897428 +socialising|9897512 +socialism|9897597 +socialist|9897705 +socialist economy|9897907 +socialist labor party|9897960 +socialist party|9898035 +socialist people's libyan arab jamahiriya|9898098 +socialist republic of vietnam|9898228 +socialistic|9898347 +socialite|9898511 +sociality|9898576 +socialization|9898602 +socialize|9898785 +socialized|9898939 +socializer|9898978 +socializing|9899062 +socially connected|9899147 +societal|9899200 +society|9899237 +society islands|9899454 +society of friends|9899507 +society of jesus|9899627 +socinian|9899704 +socinus|9899749 +socio-economic class|9899857 +sociobiologic|9899913 +sociobiological|9899978 +sociobiologist|9900043 +sociobiology|9900092 +sociocultural|9900141 +sociolinguist|9900216 +sociolinguistic|9900269 +sociolinguistics|9900305 +sociological|9900343 +sociologist|9900379 +sociology|9900417 +sociology department|9900451 +sociometry|9900525 +sociopath|9900555 +sociopathic|9900621 +sociopathic personality|9900662 +sock|9900773 +socket|9900903 +socket wrench|9900982 +sockeye|9901020 +sockeye salmon|9901145 +socle|9901263 +socotra begonia|9901304 +socrates|9901371 +socratic|9901419 +socratic irony|9901466 +socratic method|9901511 +sod|9901604 +sod house|9901850 +sod's law|9901802 +soda|9901893 +soda ash|9902008 +soda biscuit|9902075 +soda bottle|9902124 +soda can|9902163 +soda cracker|9902197 +soda fountain|9902227 +soda jerk|9902277 +soda jerker|9902346 +soda lime|9902415 +soda niter|9902442 +soda pop|9902485 +soda water|9902540 +sodalist|9902668 +sodalite|9902693 +sodality|9902719 +sodbuster|9902800 +sodden|9902853 +sodding|9902921 +soddy|9903054 +sodium|9903134 +sodium benzoate|9903295 +sodium bicarbonate|9903346 +sodium bichromate|9903473 +sodium carbonate|9903531 +sodium carboxymethyl cellulose|9903598 +sodium chlorate|9903643 +sodium chloride|9903673 +sodium cyanide|9903726 +sodium dichromate|9903758 +sodium ethylmercurithiosalicylate|9903816 +sodium fluoride|9903893 +sodium hydride|9903923 +sodium hydrogen carbonate|9903955 +sodium hydroxide|9904082 +sodium hypochlorite|9904146 +sodium iodide|9904286 +sodium lauryl sulfate|9904316 +sodium lauryl sulphate|9904401 +sodium nitrate|9904486 +sodium nitrite|9904529 +sodium orthophosphate|9904561 +sodium phosphate|9904654 +sodium pyrophosphate|9904747 +sodium salicylate|9904829 +sodium silicate|9904895 +sodium sulfate|9904952 +sodium sulphate|9905009 +sodium thiopental|9905066 +sodium thiosulfate|9905155 +sodium thiosulphate|9905227 +sodium tripolyphosphate|9905299 +sodium-vapor lamp|9903193 +sodium-vapour lamp|9903244 +sodoku|9905358 +sodom|9905404 +sodomise|9905470 +sodomist|9905572 +sodomite|9905645 +sodomize|9905718 +sodomy|9905820 +sofa|9905899 +sofa bed|9905931 +soffit|9905979 +sofia|9906000 +sofia scicolone|9906064 +soft|9906132 +soft coal|9908414 +soft corn|9908454 +soft diet|9908524 +soft drink|9908563 +soft drug|9908616 +soft flag|9908670 +soft glass|9908775 +soft goods|9908801 +soft ice cream|9908858 +soft money|9908912 +soft news|9908974 +soft on|9908998 +soft option|9909086 +soft palate|9909133 +soft pedal|9909165 +soft pretzel|9909221 +soft roe|9909251 +soft roll|9909282 +soft rot|9909310 +soft rush|9909342 +soft scale|9909410 +soft sell|9909443 +soft shield fern|9909486 +soft soap|9909559 +soft solder|9909637 +soft spot|9909665 +soft tick|9909838 +soft touch|9909870 +soft tree fern|9909949 +soft water|9910004 +soft wheat|9910034 +soft-boiled|9907062 +soft-cast steel|9907109 +soft-coated wheaten terrier|9907168 +soft-cover|9907213 +soft-cover book|9907325 +soft-finned fish|9907437 +soft-footed|9907510 +soft-nosed|9907536 +soft-pedal|9907574 +soft-shell clam|9907624 +soft-shell crab|9907751 +soft-shelled crab|9907838 +soft-shelled turtle|9907923 +soft-shoe|9907974 +soft-shoe dancing|9908051 +soft-shoe shuffle|9908128 +soft-soap|9908205 +soft-solder|9908304 +soft-spoken|9908332 +soft-witted|9908358 +softback|9910065 +softback book|9910177 +softball|9910289 +softball game|9910377 +soften|9910437 +softened|9910647 +softener|9910727 +softening|9910754 +softheaded|9910860 +softhearted|9910919 +softheartedness|9910964 +softie|9911008 +softish|9911052 +softly|9911083 +softness|9911139 +software|9911244 +software documentation|9911322 +software engineer|9911418 +software error|9911536 +software package|9911599 +software product|9911727 +software system|9911796 +softwood|9911874 +softy|9911918 +sogginess|9911962 +soggy|9911989 +soh|9912040 +soho|9912075 +soi-disant|9912134 +soigne|9912179 +soignee|9912211 +soil|9912243 +soil bank|9912532 +soil conservation|9912556 +soil erosion|9912596 +soil horizon|9912667 +soil pipe|9912697 +soil profile|9912743 +soiled|9912773 +soiling|9913195 +soilure|9913245 +soiree|9913295 +soiree musicale|9913317 +soissons|9913364 +soixante-neuf|9913482 +soja|9913530 +soja bean|9913631 +sojourn|9913732 +sojourner|9913778 +sojourner truth|9913824 +sokoro|9913955 +sol|9913990 +sol hurok|9914103 +sol rojo|9914180 +solace|9914299 +solacement|9914480 +solan|9914565 +solan goose|9914625 +solanaceae|9914685 +solanaceous|9914769 +solanaceous vegetable|9914810 +solandra|9914858 +solandra guttata|9914920 +solanopteris|9915012 +solanopteris bifrons|9915077 +solant goose|9915145 +solanum|9915205 +solanum aviculare|9915264 +solanum burbankii|9915344 +solanum carolinense|9915550 +solanum commersonii|9915663 +solanum crispum|9915752 +solanum dulcamara|9915810 +solanum elaeagnifolium|9915977 +solanum giganteum|9916172 +solanum jamesii|9916242 +solanum jasmoides|9916300 +solanum macranthum|9916362 +solanum melanocerasum|9916471 +solanum melongena|9916681 +solanum nigrum|9916810 +solanum nigrum guineese|9916920 +solanum pseudocapsicum|9917132 +solanum quitoense|9917251 +solanum rostratum|9917318 +solanum tuberosum|9917386 +solanum wendlandii|9917474 +solanum wrightii|9917559 +solar|9917666 +solar apex|9917685 +solar array|9917748 +solar battery|9917813 +solar calendar|9917878 +solar cell|9917911 +solar collector|9917968 +solar constant|9918028 +solar day|9918057 +solar dish|9918136 +solar eclipse|9918196 +solar energy|9918239 +solar flare|9918292 +solar furnace|9918335 +solar gravity|9918395 +solar halo|9918483 +solar heater|9918538 +solar house|9918574 +solar magnetic field|9918601 +solar month|9918665 +solar panel|9918692 +solar parallax|9918757 +solar physics|9918818 +solar plexus|9918861 +solar power|9918950 +solar prominence|9919003 +solar radiation|9919045 +solar system|9919080 +solar telescope|9919116 +solar thermal system|9919157 +solar trap|9919194 +solar wind|9919236 +solar year|9919272 +solarisation|9919346 +solarise|9919390 +solarium|9919511 +solarization|9919586 +solarize|9919630 +sold|9919751 +sold-out|9919794 +solder|9919832 +solderer|9919880 +soldering|9919905 +soldering flux|9919953 +soldering iron|9919982 +soldier|9920016 +soldier grainy club|9920209 +soldier of fortune|9920250 +soldier-fish|9920081 +soldierfish|9920308 +soldiering|9920355 +soldierlike|9920516 +soldierly|9920576 +soldiers of god|9920636 +soldiership|9920765 +soldiery|9920853 +sole|9920913 +solea|9921173 +solea lascaris|9921217 +solea solea|9921272 +solecism|9921324 +soled|9921443 +soledad|9921464 +soledad pine|9921518 +soleidae|9921634 +soleirolia|9921689 +soleirolia soleirolii|9921790 +soleless|9921911 +solely|9921938 +solemn|9921985 +solemness|9922070 +solemnisation|9922173 +solemnise|9922229 +solemnity|9922356 +solemnity of mary|9922482 +solemnization|9922560 +solemnize|9922616 +solenichthyes|9922743 +solenidae|9922813 +solenogaster|9922874 +solenogastres|9922928 +solenoid|9923028 +solenopsis|9923058 +solenostemon|9923122 +solenostemon blumei|9923196 +solenostemon scutellarioides|9923337 +solent|9923487 +soleus|9923534 +soleus muscle|9923596 +solfa|9923658 +solfa syllable|9923709 +solfege|9923742 +solfeggio|9923836 +solferino|9923928 +solicit|9924018 +solicitation|9924188 +solicited|9924339 +solicitor|9924366 +solicitor general|9924450 +solicitorship|9924510 +solicitous|9924588 +solicitousness|9924635 +solicitude|9924678 +solid|9924721 +solid angle|9925411 +solid body substance|9925438 +solid figure|9925483 +solid geometry|9925537 +solid ground|9925570 +solid solution|9925654 +solid-state|9925298 +solid-state physics|9925338 +solidago|9925710 +solidago bicolor|9925772 +solidago canadensis|9925835 +solidago missouriensis|9925930 +solidago multiradiata|9926014 +solidago nemoralis|9926094 +solidago odora|9926166 +solidago rugosa|9926249 +solidago sempervirens|9926312 +solidago spathulata|9926409 +solidarity|9926485 +solidification|9926528 +solidified|9926632 +solidify|9926669 +solidifying|9926728 +solidity|9926832 +solidness|9926905 +solidus|9926997 +soliloquise|9927118 +soliloquize|9927186 +soliloquy|9927254 +solingen|9927429 +solipsism|9927485 +solitaire|9927548 +solitariness|9927682 +solitary|9927756 +solitary confinement|9928119 +solitary pussytoes|9928170 +solitary vireo|9928248 +solitary wave|9928295 +soliton|9928354 +soliton wave|9928413 +solitude|9928472 +solitudinarian|9928608 +solleret|9928693 +solmisation|9928783 +solmizate|9928833 +solmization|9928869 +solo|9928963 +solo blast|9929158 +solo homer|9929204 +solo man|9929250 +soloist|9929292 +solomon|9929341 +solomon guggenheim|9929698 +solomon hurok|9929780 +solomon islands|9929861 +solomon's seal|9929541 +solomon's-seal|9929384 +solomonic|9929965 +solomons|9930011 +solon|9930099 +solresol|9930181 +solstice|9930228 +solubility|9930258 +soluble|9930311 +soluble glass|9930453 +soluble rna|9930510 +solubleness|9930595 +solute|9930648 +solution|9930681 +solvable|9930802 +solvate|9930839 +solvating agent|9930925 +solvation|9930956 +solvay|9930987 +solvay process|9931046 +solve|9931104 +solved|9931292 +solvency|9931324 +solvent|9931381 +solver|9931519 +solving|9931577 +solway firth|9931627 +solzhenitsyn|9931668 +som|9931796 +soma|9931835 +somaesthesia|9932056 +somaesthesis|9932279 +somali|9932440 +somali peninsula|9932547 +somalia|9932615 +somalian|9932671 +somalian monetary unit|9932759 +somalian shilling|9932828 +soman|9932905 +somatatesthesis|9932951 +somateria|9933112 +somatesthesia|9933168 +somatic|9933390 +somatic cell|9933442 +somatic cell nuclear transfer|9933485 +somatic cell nuclear transplantation|9933610 +somatic chromosome|9933735 +somatic delusion|9933783 +somatic sensation|9933835 +somatic sense|9933912 +somatic sensory system|9934073 +somatogenetic|9934234 +somatogenic|9934278 +somatosense|9934322 +somatosensory|9934382 +somatosensory system|9934443 +somatotrophic hormone|9934604 +somatotrophin|9934760 +somatotropic hormone|9934916 +somatotropin|9935072 +somatotype|9935228 +somber|9935292 +somberly|9935382 +somberness|9935408 +sombre|9935626 +sombrely|9935716 +sombreness|9935742 +sombrero|9935792 +some|9935849 +some other|9936058 +somebody|9936092 +somehow|9936202 +someone|9936284 +someplace|9936394 +somersault|9936422 +somersaulting|9936485 +somerset|9936531 +somerset maugham|9936565 +somesthesia|9936675 +somesthesis|9936899 +something|9937060 +sometime|9937085 +someway|9937146 +someways|9937206 +somewhat|9937266 +somewhere|9937359 +somite|9937403 +somme|9937436 +somme river|9937564 +sommelier|9937698 +somnambulate|9937756 +somnambulation|9937793 +somnambulism|9937893 +somnambulist|9937993 +somniferous|9938058 +somnific|9938144 +somniloquism|9938230 +somniloquist|9938309 +somniloquy|9938349 +somnolence|9938428 +somnolent|9938486 +somnolently|9938542 +somrai|9938571 +son|9938613 +son of a bitch|9938731 +son-in-law|9938688 +sonant|9938880 +sonar|9938955 +sonata|9939068 +sonata form|9939114 +sonchus|9939144 +sonchus oleraceus|9939203 +sondheim|9939282 +sone|9939335 +song|9939360 +song and dance|9939598 +song dynasty|9939752 +song of solomon|9939818 +song of songs|9939910 +song sparrow|9940000 +song thrush|9940058 +songbird|9940119 +songbook|9940165 +songful|9940188 +songfulness|9940240 +songhai|9940304 +songlike|9940364 +songster|9940415 +songstress|9940544 +songwriter|9940573 +sonic|9940624 +sonic barrier|9940679 +sonic boom|9940737 +sonic delay line|9940779 +sonic depth finder|9940836 +sonnet|9940888 +sonneteer|9940971 +sonny|9940995 +sonny boy|9941050 +sonny liston|9941105 +sonogram|9941185 +sonograph|9941227 +sonography|9941257 +sonometer|9941342 +sonora|9941427 +sonora gum|9941477 +sonora lac|9941518 +sonora semiannulata|9941564 +sonoran desert|9941650 +sonoran lyre snake|9941696 +sonoran whipsnake|9941774 +sonority|9941864 +sonorous|9941972 +sonorously|9942001 +sonorousness|9942029 +sonsie|9942137 +sonsy|9942240 +sontag|9942343 +soon|9942393 +soon enough|9942436 +sooner|9942464 +sooner or later|9942511 +sooner state|9942576 +soonest|9942638 +soot|9942663 +soot black|9942750 +sooth|9942831 +soothe|9942859 +soothing|9942940 +soothing syrup|9943022 +soothsayer|9943092 +soothsaying|9943175 +sootiness|9943273 +sooty|9943325 +sop|9943383 +sop up|9943736 +sophia loren|9943872 +sophie tucker|9943937 +sophism|9944005 +sophist|9944068 +sophistic|9944142 +sophistical|9944209 +sophisticate|9944248 +sophisticated|9944513 +sophistication|9944794 +sophistry|9944976 +sophocles|9945039 +sophomore|9945089 +sophomore class|9945168 +sophonias|9945204 +sophora|9945301 +sophora japonica|9945358 +sophora secundiflora|9945485 +sophora sinensis|9945585 +sophora tetraptera|9945712 +soporiferous|9945771 +soporific|9945897 +sopping|9946058 +soppy|9946149 +sopranino|9946217 +soprano|9946254 +soprano clef|9946400 +sops|9946427 +sorb|9946618 +sorb apple|9946689 +sorb apple tree|9946793 +sorbate|9946872 +sorbed|9946904 +sorbefacient|9946938 +sorbent|9946996 +sorbent material|9947045 +sorbet|9947094 +sorbian|9947138 +sorbic acid|9947242 +sorbonne|9947279 +sorbus|9947354 +sorbus americana|9947408 +sorbus aucuparia|9947486 +sorbus domestica|9947581 +sorbus sitchensis|9947677 +sorbus torminalis|9947756 +sorcerer|9947876 +sorceress|9947932 +sorcerise|9947988 +sorcerize|9948054 +sorcerous|9948120 +sorcery|9948200 +sordid|9948256 +sordidly|9948397 +sordidness|9948424 +sordino|9948486 +sore|9948517 +sore throat|9948683 +sore-eyed|9948654 +sorely|9948748 +soren aabye kierkegaard|9948773 +soren kierkegaard|9948872 +soren peter lauritz sorensen|9948965 +soreness|9949049 +sorensen|9949135 +sorex|9949199 +sorex araneus|9949245 +sorex cinereus|9949312 +sorex palustris|9949381 +sorgho|9949455 +sorghum|9949513 +sorghum bicolor|9949573 +sorghum halapense|9949665 +sorghum halepense|9949792 +sorghum molasses|9949919 +sorghum vulgare caudatum|9949965 +sorghum vulgare rosburghii|9950056 +sorghum vulgare technicum|9950140 +sorgo|9950219 +soricidae|9950277 +sororal|9950337 +sorority|9950374 +sorption|9950428 +sorrel|9950493 +sorrel tree|9950784 +sorriness|9950912 +sorrow|9950956 +sorrower|9951134 +sorrowful|9951208 +sorrowfully|9951562 +sorrowfulness|9951592 +sorrowing|9951681 +sorry|9951759 +sorry for|9952104 +sort|9952151 +sort of|9952423 +sort out|9952460 +sort program|9952742 +sorted|9952820 +sorter|9952868 +sortie|9952905 +sorting|9952971 +sorting algorithm|9953095 +sorting program|9953169 +sortition|9953247 +sorus|9953326 +sos|9953394 +sot|9953474 +soteriological|9953547 +soteriology|9953589 +sothis|9953629 +sotho|9953708 +sottish|9953787 +sottishness|9953856 +sotto voce|9953953 +sou|9953987 +sou'-east|9954005 +sou'-sou'-east|9954084 +sou'-sou'-west|9954170 +sou'-west|9954256 +sou'easter|9954308 +sou'west|9954372 +sou'wester|9954410 +souari|9954497 +souari nut|9954560 +souari tree|9954641 +soubise|9954704 +soubrette|9954753 +soubriquet|9954844 +soudan|9954949 +souffle|9955123 +soufflot|9955145 +sough|9955216 +soughing|9955443 +sought|9955495 +sought after|9955623 +sought-after|9955531 +souk|9955715 +soul|9955780 +soul brother|9956184 +soul food|9956216 +soul kiss|9956249 +soul mate|9956311 +soul-destroying|9956020 +soul-searching|9956057 +soul-stirring|9956145 +soulful|9956336 +soulfulness|9956363 +soulless|9956397 +sound|9956427 +sound alphabet|9957333 +sound asleep|9957384 +sound barrier|9957425 +sound bite|9957483 +sound bow|9957508 +sound camera|9957544 +sound effect|9957613 +sound film|9957642 +sound hole|9957703 +sound judgement|9957728 +sound judgment|9957806 +sound law|9957884 +sound off|9957919 +sound out|9958035 +sound perception|9958138 +sound pollution|9958195 +sound pressure|9958246 +sound pressure level|9958343 +sound projection|9958423 +sound property|9958500 +sound ranging|9958533 +sound recording|9958598 +sound reflection|9958649 +sound reproduction|9958740 +sound spectrograph|9958793 +sound spectrum|9958834 +sound structure|9958885 +sound system|9958965 +sound truck|9959028 +sound unit|9959066 +sound wave|9959111 +soundable|9959161 +soundboard|9959201 +soundbox|9959282 +sounded|9959346 +sounder|9959380 +sounding|9959404 +sounding board|9959540 +sounding lead|9959681 +sounding line|9959708 +sounding rocket|9959766 +soundless|9959843 +soundlessly|9959881 +soundlessness|9959913 +soundly|9959960 +soundman|9960004 +soundness|9960033 +soundproof|9960131 +soundtrack|9960190 +soup|9960242 +soup bowl|9960536 +soup du jour|9960560 +soup kitchen|9960587 +soup ladle|9960617 +soup plate|9960643 +soup spoon|9960669 +soup up|9960786 +soup-fin|9960326 +soup-strainer|9960483 +soupcon|9960824 +soupfin|9960929 +soupfin shark|9961005 +soupiness|9961081 +soupspoon|9961121 +sour|9961157 +sour bread|9961882 +sour cherry|9961949 +sour cherry tree|9962072 +sour cream|9962144 +sour dock|9962183 +sour fig|9962253 +sour gourd|9962353 +sour grapes|9962500 +sour grass|9962559 +sour gum|9962613 +sour mash|9962687 +sour mash whiskey|9962751 +sour orange|9962803 +sour salt|9962977 +sour-gum family|9961783 +sourball|9963055 +source|9963084 +source book|9963438 +source code|9963513 +source language|9963550 +source materials|9963609 +source of illumination|9963642 +source program|9963681 +sourdine|9963759 +sourdough|9963808 +sourdough bread|9963895 +soured|9963962 +soured cream|9964021 +souring|9964060 +sourish|9964095 +sourness|9964145 +sourpuss|9964342 +soursop|9964424 +soursop tree|9964556 +sourwood|9964657 +sousa|9964746 +sousaphone|9964820 +souse|9964866 +soused|9965164 +sousing|9965413 +souslik|9965462 +sousse|9965539 +soutache|9965607 +soutane|9965651 +south|9965676 +south africa|9966976 +south african|9967067 +south african dutch|9967163 +south african monetary unit|9967242 +south america|9967321 +south american|9967436 +south american bullfrog|9967515 +south american country|9967657 +south american indian|9967753 +south american nation|9967833 +south american poison toad|9967928 +south american sea lion|9968040 +south american staghorn|9968121 +south atlantic|9968212 +south australia|9968275 +south bend|9968333 +south by east|9968393 +south by west|9968440 +south carolina|9968487 +south carolinian|9968588 +south celestial pole|9968640 +south china sea|9968690 +south dakota|9968735 +south dakotan|9968822 +south dravidian|9968868 +south equatorial current|9968947 +south frigid zone|9969025 +south island|9969118 +south korea|9969160 +south korean|9969238 +south korean monetary unit|9969326 +south korean won|9969403 +south pacific|9969477 +south platte|9969536 +south platte river|9969596 +south pole|9969662 +south sea|9969698 +south sea islands|9969731 +south side|9969783 +south southeast|9969808 +south southwest|9969872 +south temperate zone|9969936 +south vietnam|9970002 +south west africa|9970066 +south wind|9970170 +south yorkshire|9970240 +south-african yellowwood|9966294 +south-central|9966400 +south-central dravidian|9966445 +south-east|9966540 +south-polar|9966659 +south-seeking pole|9966696 +south-southeast|9966780 +south-southwest|9966819 +south-west|9966858 +southbound|9970288 +southeast|9970324 +southeast asia|9970586 +southeast by east|9970697 +southeast by south|9970749 +southeaster|9970802 +southeasterly|9970866 +southeastern|9970941 +southeastern pocket gopher|9971008 +southeastern united states|9971092 +southeastward|9971237 +southeastwardly|9971288 +souther|9971326 +southerly|9971396 +southern|9971510 +southern arrow wood|9971660 +southern aster|9971729 +southern baptist|9971759 +southern baptist convention|9971810 +southern beech|9971887 +southern beech fern|9971932 +southern blue flag|9972066 +southern bog lemming|9972143 +southern buckthorn|9972200 +southern cabbage butterfly|9972288 +southern crab apple|9972359 +southern cross|9972485 +southern cypress|9972558 +southern dewberry|9972656 +southern flounder|9972759 +southern flying squirrel|9972847 +southern harebell|9972923 +southern hemisphere|9972992 +southern lights|9973032 +southern live oak|9973081 +southern magnolia|9973136 +southern maidenhair|9973246 +southern porgy|9973390 +southern red cedar|9973460 +southern red oak|9973517 +southern rhodesia|9973592 +southern scup|9973707 +southern spadefoot|9973777 +southern spatterdock|9973855 +southern tai|9973917 +southern triangle|9973956 +southern white cedar|9974035 +southern yellow pine|9974170 +southerner|9974266 +southernism|9974306 +southernmost|9974386 +southernness|9974424 +southernwood|9974472 +southey|9974523 +southland|9974568 +southmost|9974600 +southpaw|9974638 +southward|9974818 +southwards|9974871 +southwest|9974900 +southwest by south|9975161 +southwest by west|9975214 +southwester|9975266 +southwesterly|9975330 +southwestern|9975405 +southwestern lip fern|9975518 +southwestern toad|9975586 +southwestern united states|9975641 +southwestern white pine|9975786 +southwestward|9975849 +southwestwardly|9975900 +soutine|9975938 +souvenir|9975985 +souvlaki|9976071 +souvlakia|9976123 +sovereign|9976175 +sovereign immunity|9976331 +sovereignty|9976396 +soviet|9976489 +soviet kgb|9976545 +soviet russia|9976624 +soviet socialist republic|9976738 +soviet union|9976814 +sovietise|9976916 +sovietism|9976996 +sovietize|9977049 +soviets|9977129 +sow|9977182 +sow bug|9977413 +sow in|9977447 +sow one's oats|9977493 +sow one's wild oats|9977560 +sow thistle|9977627 +sowbane|9977672 +sowbelly|9977734 +sowbread|9977762 +sower|9977831 +soweto|9977882 +sown|9977934 +soy|9977963 +soy flour|9978164 +soy sauce|9978216 +soya|9978249 +soya bean|9978350 +soya milk|9978486 +soyabean oil|9978531 +soybean|9978583 +soybean flour|9978749 +soybean future|9978801 +soybean meal|9978832 +soybean milk|9978884 +soybean oil|9978929 +soybean plant|9978981 +soymilk|9979082 +sozzled|9979127 +spa|9979358 +space|9979534 +space age|9980155 +space bar|9980179 +space biology|9980202 +space cadet|9980276 +space capsule|9980314 +space heater|9980388 +space helmet|9980424 +space laboratory|9980453 +space lattice|9980547 +space medicine|9980610 +space platform|9980661 +space probe|9980755 +space program|9980791 +space rocket|9980832 +space shuttle|9980875 +space station|9980941 +space travel|9981035 +space vehicle|9981088 +space walk|9981185 +space writer|9981214 +space-reflection symmetry|9979839 +space-time|9979933 +space-time continuum|9980044 +spacecraft|9981250 +spacecraft clock time|9981347 +spacecraft event time|9981399 +spaced|9981466 +spaced-out|9981553 +spacefaring|9981617 +spaceflight|9981670 +spaceman|9981723 +spaceship|9981780 +spacesuit|9981851 +spacewalker|9981884 +spaceward|9981934 +spacewards|9981963 +spacey|9981992 +spacial|9982040 +spacing|9982077 +spaciotemporal|9982148 +spacious|9982201 +spaciously|9982271 +spaciousness|9982298 +spackle|9982377 +spackling compound|9982421 +spacy|9982465 +spade|9982513 +spade bit|9982679 +spade casino|9982702 +spadefish|9982739 +spadefoot|9982821 +spadefoot toad|9982904 +spadeful|9982987 +spadework|9983035 +spadix|9983059 +spaghetti|9983080 +spaghetti and meatballs|9983122 +spaghetti junction|9983160 +spaghetti sauce|9983200 +spaghetti squash|9983243 +spaghetti western|9983347 +spaghettini|9983412 +spain|9983456 +spalacidae|9983534 +spalax|9983597 +spall|9983646 +spallanzani|9983676 +spallation|9983742 +spam|9983779 +spammer|9983898 +span|9983934 +span loading|9984222 +spandau|9984252 +spandex|9984289 +spandrel|9984336 +spandril|9984371 +spang|9984406 +spangle|9984470 +spangled|9984620 +spangly|9984742 +spaniard|9984864 +spaniel|9984900 +spanish|9984938 +spanish american|9985258 +spanish armada|9985410 +spanish bayonet|9985485 +spanish broom|9985591 +spanish burgoo|9985725 +spanish capital|9985782 +spanish cedar|9985864 +spanish cedar tree|9985959 +spanish chestnut|9986059 +spanish civil war|9986174 +spanish dagger|9986229 +spanish elm|9986335 +spanish fly|9986515 +spanish garlic|9986570 +spanish gorse|9986680 +spanish grunt|9986755 +spanish guinea|9986819 +spanish heath|9986937 +spanish inquisition|9987025 +spanish iris|9987086 +spanish lime|9987162 +spanish lime tree|9987337 +spanish mackerel|9987478 +spanish monetary unit|9987698 +spanish moss|9987765 +spanish needles|9987903 +spanish oak|9988040 +spanish onion|9988101 +spanish oyster plant|9988144 +spanish paprika|9988230 +spanish people|9988279 +spanish peseta|9988355 +spanish pointer|9988423 +spanish psyllium|9988493 +spanish rice|9988581 +spanish sahara|9988621 +spanish tamarind|9988747 +spanish tea|9988822 +spanish war|9988929 +spanish-american war|9985112 +spanish-speaking|9985187 +spank|9988995 +spanker|9989074 +spanking|9989139 +spanner|9989237 +spar|9989271 +spar buoy|9989447 +sparaxis|9989471 +sparaxis tricolor|9989534 +spare|9989597 +spare part|9990141 +spare time|9990197 +spare tire|9990274 +spare-time activity|9990054 +spareness|9990338 +sparer|9990438 +sparerib|9990472 +spareribs|9990494 +sparganiaceae|9990577 +sparganium|9990683 +sparge|9990761 +sparge pipe|9990858 +sparid|9990898 +sparid fish|9990958 +sparidae|9991018 +sparing|9991073 +sparingly|9991132 +spark|9991178 +spark advance|9991624 +spark arrester|9991659 +spark chamber|9991750 +spark coil|9991842 +spark counter|9991877 +spark gap|9991969 +spark lever|9992035 +spark off|9992062 +spark plug|9992164 +spark transmitter|9992221 +sparker|9992266 +sparking plug|9992332 +sparkle|9992389 +sparkle metal|9992720 +sparkleberry|9992749 +sparkler|9992827 +sparkling|9992885 +sparkling water|9993173 +sparkling wine|9993259 +sparkly|9993293 +sparkplug wrench|9993479 +sparling|9993520 +sparmannia|9993605 +sparmannia africana|9993675 +sparring|9993748 +sparring match|9993888 +sparring mate|9993925 +sparring partner|9993980 +sparrow|9994035 +sparrow hawk|9994149 +sparrow unit|9994248 +sparse|9994293 +sparseness|9994326 +sparsity|9994426 +sparta|9994526 +spartan|9994578 +spartina|9994754 +spartina cynosuroides|9994826 +spartina pectinmata|9994916 +spartium|9995038 +spartium junceum|9995098 +spasm|9995176 +spasmodic|9995238 +spasmodic laryngitis|9995308 +spasmodically|9995351 +spasmolysis|9995381 +spasmolytic|9995437 +spassky|9995538 +spastic|9995615 +spastic abasia|9995709 +spastic bladder|9995740 +spastic colon|9995782 +spastic paralysis|9995880 +spasticity|9995966 +spat|9996007 +spatangoida|9996675 +spatchcock|9996739 +spate|9996880 +spathe|9997187 +spathe flower|9997209 +spathiphyllum|9997264 +spatial|9997319 +spatial arrangement|9997364 +spatial property|9997423 +spatial relation|9997469 +spatiality|9997513 +spatiotemporal|9997559 +spats|9997688 +spatter|9997917 +spatterdock|9998228 +spattered|9998300 +spattering|9998423 +spatula|9998559 +spatula-shaped|9998612 +spatulate|9998675 +spatulate leaf|9998738 +spavin|9998774 +spavined|9998805 +spawl|9998834 +spawn|9998864 +spawner|9998930 +spay|9998952 +spayed|9999048 +spaying|9999082 +speak|9999125 +speak for|9999335 +speak in tongues|9999364 +speak of the devil|9999433 +speak up|9999501 +speakable|9999604 +speakeasy|9999645 +speaker|9999699 +speaker identification|9999892 +speaker system|9999973 +speaker unit|10000077 +speakerphone|10000181 +speakership|10000233 +speaking|10000309 +speaking trumpet|10000521 +speaking tube|10000563 +spear|10000598 +spear carrier|10000912 +spear thistle|10000998 +spear thrower|10001112 +spear up|10001185 +spear-point|10000783 +spearfish|10001248 +spearhead|10001299 +spearhead-shaped|10001435 +spearmint|10001498 +spearmint oil|10001537 +spearnose bat|10001619 +spearpoint|10001670 +spec|10001718 +special|10001777 +special act|10002094 +special agent|10002139 +special air service|10002168 +special assessment|10002230 +special branch|10002291 +special contract|10002352 +special court-martial|10002425 +special delivery|10002470 +special drawing rights|10002501 +special education|10002559 +special effect|10002596 +special forces|10002627 +special interest|10002735 +special jury|10002785 +special k|10002829 +special olympics|10002950 +special pleading|10003041 +special relativity|10003101 +special relativity theory|10003306 +special session|10003511 +special theory of relativity|10003544 +special verdict|10003749 +special weapons and tactics squad|10003798 +special weapons and tactics team|10003942 +specialisation|10004085 +specialise|10004278 +specialised|10004574 +specialiser|10004681 +specialism|10004732 +specialist|10004881 +specialistic|10004993 +speciality|10005052 +specialization|10005331 +specialize|10005524 +specialized|10005820 +specializer|10005939 +specially|10005990 +specialness|10006060 +specialty|10006172 +specialty store|10006453 +speciate|10006489 +speciation|10006550 +specie|10006603 +species|10006656 +specifiable|10006795 +specific|10006829 +specific gravity|10007165 +specific heat|10007208 +specific performance|10007248 +specification|10007334 +specificity|10007478 +specified|10007534 +specifier|10007636 +specify|10007678 +specimen|10008135 +specimen bottle|10008212 +specious|10008244 +specious argument|10008329 +speciousness|10008375 +speck|10008438 +specked|10008674 +speckle|10008734 +speckled|10008867 +speckled alder|10008927 +speckled rattlesnake|10008981 +speckled trout|10009051 +speckless|10009150 +specs|10009235 +spectacle|10009356 +spectacled|10009487 +spectacled caiman|10009547 +spectacles|10009604 +spectacular|10009817 +spectacularly|10009988 +spectate|10010021 +spectator|10010068 +spectator pump|10010178 +spectator sport|10010223 +specter|10010264 +spectinomycin|10010438 +spectral|10010488 +spectral color|10010583 +spectral colour|10010688 +spectre|10010793 +spectrogram|10010967 +spectrograph|10011031 +spectrographic|10011134 +spectrographic analysis|10011189 +spectrometer|10011328 +spectrometric|10011400 +spectrometry|10011461 +spectrophotometer|10011600 +spectroscope|10011638 +spectroscopic|10011698 +spectroscopic analysis|10011775 +spectroscopical|10011914 +spectroscopy|10011991 +spectrum|10012130 +spectrum analysis|10012199 +spectrum line|10012338 +specular|10012366 +speculate|10012406 +speculation|10012694 +speculative|10012962 +speculatively|10013107 +speculativeness|10013146 +speculator|10013187 +speculum|10013258 +speech|10013309 +speech act|10013839 +speech communication|10013891 +speech community|10014036 +speech day|10014072 +speech defect|10014096 +speech disorder|10014167 +speech intelligibility|10014238 +speech organ|10014286 +speech pattern|10014326 +speech perception|10014371 +speech production|10014435 +speech rhythm|10014494 +speech sound|10014566 +speech spectrum|10014630 +speech therapist|10014688 +speech therapy|10014731 +speech-endowed|10013752 +speech-read|10013796 +speechifier|10014763 +speechify|10014875 +speechless|10014910 +speechlessness|10014961 +speechmaker|10014999 +speechmaking|10015111 +speechwriter|10015191 +speed|10015227 +speed bump|10015823 +speed cop|10015920 +speed demon|10016008 +speed freak|10016044 +speed indicator|10016072 +speed limit|10016115 +speed of light|10016157 +speed skate|10016219 +speed skater|10016279 +speed skating|10016405 +speed trap|10016436 +speed up|10016467 +speed-reading|10015792 +speedboat|10016566 +speeded up|10016605 +speeder|10016647 +speedily|10016683 +speeding|10016732 +speeding ticket|10016798 +speedometer|10016830 +speedskater|10016873 +speedup|10016918 +speedway|10016983 +speedwell|10017054 +speedy|10017089 +speer|10017134 +speke|10017187 +spelaeologist|10017258 +spelaeology|10017333 +speleologist|10017444 +speleology|10017519 +spell|10017631 +spell out|10018083 +spell-checker|10018024 +spellbind|10018172 +spellbinder|10018357 +spellbinding|10018436 +spellbound|10018499 +spelldown|10018595 +speller|10018664 +spelling|10018728 +spelling bee|10018773 +spelling checker|10018842 +spelling contest|10018901 +spelt|10018970 +spelunk|10019037 +spelunker|10019067 +spencer|10019142 +spencer tracy|10019207 +spend|10019293 +spend a penny|10019488 +spend-all|10019406 +spendable|10019656 +spender|10019697 +spending|10019900 +spending cut|10019976 +spending money|10020002 +spending spree|10020078 +spendthrift|10020114 +spendthrift trust|10020244 +spengler|10020277 +spenser|10020332 +spenserian sonnet|10020377 +spenserian stanza|10020429 +spent|10020481 +spergula|10020609 +spergula arvensis|10020677 +spergularia|10020752 +spergularia rubra|10020829 +sperm|10020902 +sperm bank|10020961 +sperm cell|10021011 +sperm count|10021070 +sperm oil|10021158 +sperm whale|10021188 +spermaceti|10021261 +spermatic|10021285 +spermatic cord|10021319 +spermatid|10021353 +spermatocele|10021379 +spermatocide|10021425 +spermatocyte|10021558 +spermatogenesis|10021591 +spermatophyta|10021630 +spermatophyte|10021699 +spermatozoan|10021772 +spermatozoid|10021831 +spermatozoon|10021872 +spermicidal|10021931 +spermicide|10022051 +spermophile|10022184 +spermophilus|10022237 +spermous|10022328 +sperry|10022362 +spew|10022476 +spew out|10022775 +spewer|10022834 +sphacelate|10022895 +sphacele|10022950 +sphacele calycina|10023040 +sphacelotheca|10023129 +sphacelotheca reiliana|10023203 +sphacelus|10023285 +sphaeralcea|10023375 +sphaeralcea coccinea|10023448 +sphaeralcea fasciculata|10023578 +sphaeralcea remota|10023686 +sphaeriaceae|10023770 +sphaeriales|10023839 +sphaerobolaceae|10023903 +sphaerocarpaceae|10023981 +sphaerocarpales|10024060 +sphaerocarpos|10024135 +sphaerocarpus|10024237 +sphagnales|10024339 +sphagnum|10024399 +sphagnum moss|10024455 +sphalerite|10024511 +sphecidae|10024558 +sphecius|10024621 +sphecius speciosis|10024679 +sphecoid|10024752 +sphecoid wasp|10024789 +sphecoidea|10024826 +sphecotheres|10024897 +sphenion|10024962 +spheniscidae|10024999 +sphenisciform seabird|10025066 +sphenisciformes|10025122 +spheniscus|10025198 +spheniscus demersus|10025257 +sphenodon|10025330 +sphenodon punctatum|10025389 +sphenoid|10025470 +sphenoid bone|10025525 +sphenoid fontanel|10025580 +sphenoid fontanelle|10025699 +sphenoidal fontanel|10025818 +sphenoidal fontanelle|10025937 +sphenopsida|10026056 +sphere|10026143 +sphere of influence|10026472 +spheric|10026580 +spherical|10026668 +spherical aberration|10026785 +spherical angle|10026856 +spherical geometry|10026887 +spherical polygon|10026924 +spherical triangle|10026975 +spherical trigonometry|10027021 +sphericalness|10027071 +sphericity|10027148 +spherocyte|10027225 +spheroid|10027276 +spheroid joint|10027330 +spheroidal|10027495 +spherometer|10027558 +spherule|10027634 +sphincter|10027667 +sphincter ani|10027740 +sphincter muscle|10027849 +sphingid|10027922 +sphingidae|10027993 +sphingine|10028059 +sphinx|10028084 +sphinx moth|10028216 +sphygmomanometer|10028287 +sphyraena|10028342 +sphyraena barracuda|10028398 +sphyraenidae|10028473 +sphyrapicus|10028540 +sphyrapicus varius|10028602 +sphyrapicus varius ruber|10028684 +sphyrna|10028776 +sphyrna tiburo|10028826 +sphyrna tudes|10028928 +sphyrna zygaena|10029013 +sphyrnidae|10029100 +spic|10029161 +spic-and-span|10029296 +spica|10029426 +spicate|10029452 +spiccato|10029482 +spiccato bowing|10029523 +spice|10029564 +spice bush|10029777 +spice cake|10029957 +spice cookie|10029982 +spice islands|10030025 +spice rack|10030078 +spice tree|10030109 +spice up|10030315 +spiceberry|10030399 +spicebush|10030513 +spicemill|10030683 +spicery|10030715 +spicily|10030763 +spiciness|10030789 +spick|10030882 +spick-and-span|10031016 +spicule|10031145 +spiculum|10031199 +spicy|10031253 +spider|10031395 +spider angioma|10031605 +spider brake|10031666 +spider crab|10031722 +spider fern|10031748 +spider flower|10031845 +spider mite|10031969 +spider monkey|10032007 +spider nevus|10032076 +spider orchid|10032137 +spider plant|10032290 +spider web|10032365 +spider's web|10031533 +spiderflower|10032439 +spiderlike|10032490 +spiderly|10032548 +spiderwort|10032606 +spiderwort family|10032658 +spidery|10032752 +spiegel|10032810 +spiegel iron|10032862 +spiegeleisen|10032914 +spiel|10032966 +spiel off|10033045 +spielberg|10033112 +spielmeyer-vogt disease|10033205 +spiff|10033452 +spiff up|10033482 +spiffed up|10033584 +spiffing|10033704 +spiffy|10033731 +spigot|10033830 +spik|10033937 +spike|10033994 +spike arrester|10034376 +spike heath|10034491 +spike heel|10034545 +spike lavender|10034584 +spike lavender oil|10034653 +spike lee|10034695 +spike mike|10034795 +spike moss|10034831 +spike oil|10035017 +spike out|10035059 +spike rush|10035092 +spike suppressor|10035118 +spiked|10035233 +spiked loosestrife|10035295 +spikelet|10035372 +spikelike|10035396 +spikemoss|10035423 +spikenard|10035528 +spiky|10035577 +spile|10035616 +spill|10035696 +spill out|10035968 +spill over|10036040 +spill the beans|10036152 +spillage|10036347 +spillane|10036418 +spiller|10036499 +spillikin|10036617 +spillikins|10036652 +spillover|10036729 +spillway|10036801 +spilogale|10036843 +spilogale putorius|10036901 +spin|10037008 +spin around|10037660 +spin doctor|10037729 +spin drier|10037786 +spin dryer|10037845 +spin off|10037904 +spin out|10037936 +spin the bottle|10037992 +spin the plate|10038030 +spin the platter|10038084 +spin-dry|10037572 +spin-off|10037602 +spina bifida|10038138 +spinach|10038282 +spinach beet|10038400 +spinach blight|10038577 +spinach mustard|10038608 +spinach plant|10038717 +spinacia|10038799 +spinacia oleracea|10038867 +spinal|10038967 +spinal accessory|10039086 +spinal anaesthesia|10039184 +spinal anaesthetic|10039278 +spinal anesthesia|10039382 +spinal anesthetic|10039476 +spinal canal|10039580 +spinal column|10039673 +spinal cord|10039759 +spinal curvature|10039824 +spinal fluid|10039892 +spinal fusion|10039993 +spinal nerve|10040034 +spinal puncture|10040085 +spinal tap|10040146 +spinal vein|10040207 +spindle|10040272 +spindle horn|10040631 +spindle tree|10040695 +spindle-legged|10040364 +spindle-shanked|10040414 +spindle-shaped|10040464 +spindle-tree family|10040518 +spindleberry|10040759 +spindleberry tree|10040823 +spindlelegs|10040887 +spindleshanks|10040974 +spindly|10041059 +spindrift|10041091 +spine|10041127 +spinel|10041316 +spinel ruby|10041340 +spineless|10041380 +spinelessness|10041443 +spinet|10041475 +spinmeister|10041540 +spinnability|10041597 +spinnable|10041644 +spinnaker|10041690 +spinner|10041718 +spinney|10041826 +spinning|10041881 +spinning frame|10041933 +spinning jenny|10041974 +spinning machine|10042015 +spinning rod|10042057 +spinning top|10042104 +spinning wheel|10042163 +spinocerebellar disorder|10042204 +spinose|10042331 +spinous|10042354 +spinoza|10042399 +spinster|10042485 +spinsterhood|10042569 +spinus|10042606 +spinus pinus|10042653 +spinus tristis|10042717 +spiny|10042803 +spiny anteater|10043041 +spiny dogfish|10043162 +spiny lizard|10043193 +spiny lobster|10043283 +spiny puffer|10043417 +spiny softshell|10043468 +spiny talinum|10043547 +spiny-finned fish|10042918 +spiny-headed worm|10042993 +spipistrellus hesperus|10043647 +spiracle|10043752 +spiraea|10043792 +spiraea prunifolia|10043913 +spiral|10044043 +spiral bandage|10044379 +spiral galaxy|10044419 +spiral nebula|10044484 +spiral ratchet screwdriver|10044549 +spiral spring|10044617 +spiraling|10044647 +spirant|10044729 +spiranthes|10044839 +spiranthes cernua|10044917 +spiranthes porrifolia|10045005 +spiranthes romanzoffiana|10045113 +spiranthes spiralis|10045226 +spire|10045331 +spirea|10045360 +spirilla|10045435 +spirillaceae|10045608 +spirillum|10045679 +spirillum fever|10045788 +spirillum minus|10045834 +spirit|10045909 +spirit away|10046417 +spirit gum|10046556 +spirit lamp|10046603 +spirit level|10046629 +spirit of turpentine|10046667 +spirit off|10046759 +spirit rapper|10046841 +spirit rapping|10046872 +spirit stove|10046976 +spirit up|10047052 +spirit world|10047129 +spirited|10047182 +spiritedness|10047654 +spiritise|10047737 +spiritize|10047822 +spiritless|10047907 +spiritlessness|10048068 +spiritous|10048134 +spirits|10048174 +spirits of ammonia|10048791 +spirits of wine|10048841 +spiritual|10048923 +spiritual being|10049125 +spiritual bouquet|10049176 +spiritual jewel|10049217 +spiritual leader|10049281 +spiritual rebirth|10049314 +spiritual world|10049381 +spiritualisation|10049420 +spiritualise|10049479 +spiritualism|10049579 +spiritualist|10049703 +spiritualistic|10049768 +spirituality|10049811 +spiritualization|10049957 +spiritualize|10050016 +spiritualty|10050163 +spirituous|10050261 +spirochaeta|10050301 +spirochaetaceae|10050367 +spirochaetales|10050447 +spirochaete|10050520 +spirochete|10050589 +spirodela|10050658 +spirodela polyrrhiza|10050733 +spirogram|10050823 +spirograph|10050852 +spirogyra|10050927 +spirometer|10050970 +spirometery|10051045 +spironolactone|10051108 +spirt|10051231 +spirula|10051360 +spirula peronii|10051401 +spirulidae|10051458 +spit|10051522 +spit and polish|10051893 +spit curl|10051936 +spit out|10051971 +spit up|10052162 +spitball|10052278 +spite|10052345 +spiteful|10052598 +spitefully|10052648 +spitefulness|10052697 +spitfire|10052849 +spitsbergen|10052884 +spitter|10052936 +spitting|10053050 +spitting cobra|10053129 +spitting image|10053195 +spitting snake|10053249 +spittle|10053334 +spittle insect|10053373 +spittlebug|10053438 +spittoon|10053503 +spitz|10053541 +spitzbergen|10053590 +spiv|10053642 +spizella|10053693 +spizella arborea|10053746 +spizella passerina|10053820 +spizella pusilla|10053902 +splanchnic|10053977 +splanchnic nerve|10054005 +splash|10054044 +splash around|10054675 +splash guard|10054717 +splash-guard|10054538 +splashboard|10054854 +splashdown|10055007 +splashed|10055035 +splasher|10055178 +splashiness|10055321 +splashing|10055430 +splashy|10055518 +splat|10055619 +splatter|10055724 +splattered|10055983 +splattering|10056046 +splay|10056181 +splayfoot|10056363 +splayfooted|10056459 +spleen|10056520 +spleenwort|10056642 +splendid|10056667 +splendidly|10056779 +splendiferous|10056866 +splendor|10056929 +splendour|10057062 +splenectomy|10057194 +splenetic|10057257 +splenic|10057366 +splenic artery|10057432 +splenic fever|10057524 +splenic vein|10057581 +splenitis|10057647 +splenomegaly|10057693 +splice|10057727 +splicer|10057921 +splicing|10058005 +spliff|10058051 +spline|10058145 +splint|10058185 +splint bone|10058270 +splinter|10058299 +splinter group|10058548 +splintered|10058585 +splintering|10058630 +splinterless|10058689 +splinterproof|10058750 +splinters|10058811 +splintery|10058904 +split|10058974 +split decision|10059907 +split down|10059940 +split end|10060034 +split infinitive|10060057 +split personality|10060094 +split rail|10060164 +split run|10060200 +split second|10060239 +split shift|10060369 +split ticket|10060419 +split up|10060470 +split-brain technique|10059674 +split-half correlation|10059719 +split-pea|10059838 +split-pea soup|10059878 +splitsaw|10060740 +splitsville|10060789 +splitter|10060830 +splitting|10060961 +splitworm|10061019 +splodge|10061117 +splosh|10061189 +splotch|10061445 +splotched|10061545 +splurge|10061591 +splutter|10061772 +spluttering|10062009 +spock|10062047 +spode|10062133 +spodoptera|10062225 +spodoptera exigua|10062289 +spodoptera frugiperda|10062417 +spodumene|10062557 +spoil|10062584 +spoilable|10063295 +spoilables|10063359 +spoilage|10063414 +spoilation|10063503 +spoiled|10063607 +spoiler|10063696 +spoiling|10064003 +spoils system|10064065 +spoilsport|10064111 +spoilt|10064199 +spokane|10064286 +spoke|10064340 +spoken|10064400 +spoken communication|10064540 +spoken language|10064685 +spoken word|10064830 +spokesman|10064864 +spokesperson|10064929 +spokeswoman|10065022 +spoliation|10065089 +spondaic|10065224 +spondaise|10065274 +spondaize|10065333 +spondee|10065392 +spondias|10065442 +spondias mombin|10065515 +spondias purpurea|10065609 +spondylarthritis|10065691 +spondylitis|10065727 +spondylolisthesis|10065775 +sponge|10065814 +sponge bag|10066157 +sponge bath|10066192 +sponge cake|10066222 +sponge cloth|10066248 +sponge down|10066300 +sponge genus|10066353 +sponge gourd|10066381 +sponge mop|10066454 +sponge morel|10066488 +sponge mushroom|10066565 +sponge off|10066642 +sponge on|10066678 +sponge up|10066710 +spongefly|10066792 +spongelike|10066868 +sponger|10066951 +spongillafly|10067041 +sponginess|10067117 +spongioblast|10067203 +spongioblastoma|10067264 +spongy|10067327 +sponsor|10067414 +sponsorship|10067651 +spontaneity|10067680 +spontaneous|10067729 +spontaneous abortion|10067885 +spontaneous combustion|10067947 +spontaneous generation|10067988 +spontaneously|10068072 +spontaneousness|10068122 +spoof|10068171 +spook|10068333 +spookily|10068539 +spooky|10068563 +spool|10068634 +spoon|10068712 +spoon bread|10068872 +spoon food|10068916 +spoonbill|10068955 +spoonbill catfish|10068992 +spoondrift|10069113 +spoonerism|10069149 +spoonfeed|10069188 +spoonfeeding|10069245 +spoonflower|10069325 +spoonful|10069426 +spoonleaf yucca|10069463 +spoor|10069563 +sporadic|10069584 +sporadically|10069738 +sporangiophore|10069772 +sporangium|10069807 +sporanox|10069871 +spore|10069979 +spore case|10070017 +spore mother cell|10070121 +spore sac|10070160 +spork|10070224 +sporobolus|10070268 +sporobolus cryptandrus|10070346 +sporobolus poiretii|10070434 +sporocarp|10070536 +sporogenous|10070589 +sporophore|10070632 +sporophyl|10070675 +sporophyll|10070726 +sporophyte|10070777 +sporotrichosis|10070820 +sporozoa|10070869 +sporozoan|10070954 +sporozoite|10070993 +sporran|10071023 +sport|10071046 +sport car|10071443 +sport coat|10071510 +sport fish|10071583 +sport jacket|10071618 +sport kite|10071691 +sport shirt|10071727 +sport utility|10071765 +sport utility vehicle|10071854 +sportfishing|10071943 +sporting|10071999 +sporting chance|10072165 +sporting dog|10072221 +sporting goods|10072263 +sporting house|10072314 +sporting lady|10072452 +sporting life|10072606 +sporting man|10072650 +sportive|10072707 +sportiveness|10072799 +sports announcer|10072863 +sports arena|10072931 +sports car|10072971 +sports coat|10073092 +sports commentator|10073224 +sports desk|10073292 +sports editor|10073334 +sports equipment|10073374 +sports fan|10073425 +sports implement|10073478 +sports jacket|10073514 +sports medicine|10073644 +sports meeting|10073696 +sports page|10073773 +sports section|10073799 +sports stadium|10073843 +sports writer|10073909 +sportscast|10074037 +sportscaster|10074090 +sportsman|10074158 +sportsmanlike|10074208 +sportsmanship|10074256 +sportswear|10074295 +sportswoman|10074358 +sportswriter|10074408 +sporty|10074455 +sporulate|10074505 +sporulation|10074559 +spot|10074626 +spot check|10075906 +spot jam|10075961 +spot jamming|10075989 +spot market|10076060 +spot pass|10076140 +spot price|10076198 +spot promote|10076248 +spot weld|10076322 +spot welder|10076437 +spot welding|10076558 +spot-check|10075365 +spot-weld|10075444 +spot-welder|10075661 +spot-welding|10075782 +spotless|10076682 +spotlessness|10076767 +spotlight|10076814 +spots|10076991 +spotsylvania|10077711 +spotted|10077795 +spotted antbird|10077909 +spotted bat|10077973 +spotted black bass|10078055 +spotted coral root|10078139 +spotted cowbane|10078200 +spotted crake|10078279 +spotted cranesbill|10078324 +spotted dick|10078409 +spotted eagle ray|10078444 +spotted fever|10078512 +spotted flycatcher|10078569 +spotted gum|10078681 +spotted hemlock|10078758 +spotted hyena|10078837 +spotted joe-pye weed|10078904 +spotted lynx|10079011 +spotted owl|10079061 +spotted ray|10079142 +spotted salamander|10079210 +spotted sandpiper|10079345 +spotted sea trout|10079400 +spotted skunk|10079494 +spotted squeateague|10079582 +spotted sunfish|10079676 +spotted water hemlock|10079755 +spotted weakfish|10079834 +spotter|10079928 +spotting|10080117 +spotty|10080246 +spotweld|10080282 +spousal|10080315 +spousal equivalent|10080493 +spousal relationship|10080627 +spouse|10080705 +spouse equivalent|10080851 +spout|10080985 +spouter|10081124 +spouting|10081264 +sprachgefuhl|10081317 +sprag|10081365 +spraguea|10081412 +spraguea umbellatum|10081480 +sprain|10081609 +sprat|10081692 +sprawl|10081764 +sprawled|10081874 +sprawler|10081919 +sprawling|10081990 +sprawly|10082109 +spray|10082154 +spray can|10082536 +spray gun|10082616 +spray paint|10082654 +spray painting|10082681 +spray-dried|10082473 +spray-dry|10082505 +sprayer|10082723 +spraying|10082818 +spread|10082993 +spread eagle|10084221 +spread head|10084273 +spread out|10084411 +spread over|10084706 +spread-eagle|10083925 +spread-out|10084182 +spreadeagle|10084759 +spreader|10084841 +spreadhead|10084906 +spreading|10084963 +spreading bellflower|10085219 +spreading dogbane|10085309 +spreading factor|10085401 +spreading fleabane|10085456 +spreading pogonia|10085512 +spreadsheet|10085632 +sprechgesang|10085707 +sprechstimme|10085788 +spree|10085869 +spree killer|10085965 +sprig|10086017 +sprig tail|10086095 +sprigged|10086258 +sprigger|10086286 +sprightliness|10086328 +sprightly|10086428 +sprigtail|10086456 +spring|10086538 +spring balance|10087296 +spring beauty|10087341 +spring break|10087391 +spring cankerworm|10087443 +spring chicken|10087481 +spring cleavers|10087586 +spring cress|10087674 +spring equinox|10087739 +spring frog|10087800 +spring gun|10087912 +spring heath|10087944 +spring mattress|10088009 +spring onion|10088043 +spring peeper|10088071 +spring roll|10088138 +spring scale|10088173 +spring squill|10088218 +spring to mind|10088278 +spring training|10088322 +spring up|10088357 +spring vetch|10088424 +spring vetchling|10088515 +spring water|10088580 +spring-clean|10087156 +spring-cleaning|10087207 +spring-loaded|10087259 +springboard|10088649 +springbok|10088749 +springbuck|10088829 +springer|10088909 +springer spaniel|10089005 +springfield|10089048 +springiness|10089249 +springing cow|10089298 +springless|10089342 +springlike|10089372 +springtail|10089400 +springtide|10089439 +springtime|10089519 +springy|10089566 +sprinkle|10089627 +sprinkled|10089895 +sprinkler|10089927 +sprinkler system|10089964 +sprinkles|10089997 +sprinkling|10090140 +sprint|10090324 +sprinter|10090368 +sprit|10090393 +sprite|10090413 +sprites|10090483 +spritsail|10090604 +spritz|10090641 +spritzer|10090735 +sprocket|10090765 +sprocket wheel|10090835 +sprog|10090874 +sprout|10090985 +sprouted|10091161 +sprouting|10091182 +spruce|10091272 +spruce bark beetle|10091557 +spruce beer|10091621 +spruce gall aphid|10091655 +spruce grouse|10091706 +spruce pine|10091758 +spruce squirrel|10092019 +spruce up|10092136 +spruced up|10092285 +sprucely|10092405 +spruceness|10092439 +sprue|10092477 +sprung rhythm|10092522 +spry|10092584 +spud|10092624 +spue|10092837 +spume|10093084 +spumous|10093140 +spumy|10093210 +spun sugar|10093280 +spun yarn|10093330 +spunk|10093361 +spunky|10093488 +spur|10093603 +spur blight|10093973 +spur gear|10094001 +spur track|10094056 +spur wheel|10094121 +spur-of-the-moment|10093934 +spurge|10094176 +spurge family|10094203 +spurge laurel|10094280 +spurge nettle|10094338 +spurious|10094472 +spurious correlation|10094619 +spurious wing|10094686 +spuriousness|10094750 +spurn|10094790 +spurned|10094872 +spurner|10094913 +spurred gentian|10094983 +spurring|10095016 +spurt|10095087 +spurting|10095216 +sputnik|10095269 +sputter|10095325 +sputtering|10095659 +sputum|10095767 +sputum smear|10095872 +spy|10095976 +spy satellite|10096237 +spyeria|10096299 +spyglass|10096354 +spyhole|10096411 +spying|10096442 +spymaster|10096619 +sq ft|10096645 +sq in|10096697 +sq yd|10096749 +squab|10096801 +squabble|10096889 +squabby|10097065 +squad|10097094 +squad car|10097148 +squad room|10097259 +squadron|10097296 +squalid|10097356 +squalidae|10097456 +squalidly|10097514 +squalidness|10097541 +squall|10097603 +squall line|10097794 +squalling|10097838 +squally|10097873 +squalor|10097922 +squalus|10097984 +squalus acanthias|10098034 +squalus suckleyi|10098116 +squama|10098195 +squamata|10098217 +squamous cell|10098272 +squamous cell carcinoma|10098311 +squamule|10098365 +squamulose|10098400 +squander|10098435 +squandered|10098519 +squanderer|10098551 +squandering|10098600 +squandermania|10098652 +square|10098687 +square and rabbet|10099861 +square away|10099941 +square block|10100023 +square bracket|10100056 +square dance|10100117 +square dancer|10100288 +square dancing|10100323 +square deal|10100427 +square foot|10100463 +square inch|10100515 +square knot|10100567 +square matrix|10100593 +square meal|10100623 +square measure|10100656 +square meter|10100715 +square metre|10100783 +square mile|10100851 +square nut|10100897 +square off|10100921 +square one|10100985 +square root|10101032 +square sail|10101058 +square shooter|10101105 +square toes|10101173 +square up|10101229 +square yard|10101344 +square-bashing|10099416 +square-built|10099455 +square-dance music|10099484 +square-rigged|10099541 +square-rigger|10099571 +square-shouldered|10099622 +square-toed|10099688 +squared|10101396 +squared-toe|10101420 +squareflipper square flipper|10101462 +squarely|10101566 +squareness|10101694 +squaretail|10101740 +squarish|10101785 +squark|10101810 +squash|10101846 +squash ball|10101992 +squash bug|10102018 +squash court|10102070 +squash pie|10102098 +squash racket|10102122 +squash rackets|10102179 +squash racquet|10102292 +squash racquets|10102349 +squash vine|10102462 +squashed|10102495 +squashy|10102518 +squat|10102566 +squatina|10102967 +squatina squatina|10103020 +squatinidae|10103102 +squatness|10103166 +squatter|10103204 +squattiness|10103296 +squatting|10103361 +squatty|10103452 +squaw|10103509 +squaw corn|10103736 +squaw grass|10103806 +squaw huckleberry|10103873 +squaw man|10103955 +squaw root|10103984 +squaw-bush|10103580 +squawbush|10104213 +squawk|10104288 +squawk box|10104534 +squawker|10104647 +squawky|10104868 +squawroot|10104915 +squeak|10105063 +squeak by|10105225 +squeak through|10105407 +squeaker|10105467 +squeaking|10105581 +squeaky|10105653 +squeal|10105725 +squealer|10105827 +squealing|10105932 +squeamish|10106004 +squeamishness|10106062 +squeegee|10106118 +squeezability|10106177 +squeezable|10106236 +squeeze|10106274 +squeeze box|10107031 +squeeze by|10107099 +squeeze for|10107233 +squeeze out|10107289 +squeeze play|10107640 +squeezer|10107740 +squeezing|10107774 +squelch|10107825 +squelch circuit|10108154 +squelched|10108241 +squelcher|10108288 +squib|10108417 +squid|10108453 +squiffy|10108509 +squiggle|10108740 +squiggly|10108814 +squill|10108840 +squilla|10108954 +squillidae|10109010 +squinch|10109076 +squinched|10109247 +squint|10109288 +squint-eye|10109501 +squint-eyed|10109583 +squinter|10109708 +squinting|10109790 +squinty|10109831 +squire|10109908 +squirearchy|10110048 +squirm|10110102 +squirmer|10110209 +squirming|10110297 +squirrel|10110375 +squirrel away|10110546 +squirrel cage|10110627 +squirrel corn|10110660 +squirrel monkey|10110725 +squirrel's-foot fern|10110438 +squirrelfish|10110796 +squirreltail barley|10110922 +squirreltail grass|10111008 +squirt|10111094 +squirt gun|10111266 +squirter|10111332 +squirting|10111398 +squirting cucumber|10111451 +squish|10111548 +squishy|10111647 +sr|10111695 +sr.|10111790 +sravana|10111822 +srbija|10111874 +sri frederick handley page|10111976 +sri lanka|10112058 +sri lanka rupee|10112156 +sri lankan|10112228 +sri lankan monetary unit|10112307 +ss|10112380 +ssa|10112557 +sse|10112624 +sspe|10112692 +ssri|10112958 +sss|10113051 +ssw|10113130 +st andrews's cross|10125726 +st bernard|10125810 +st john's day|10125867 +st john's eve|10125954 +st john's night|10126049 +st john's wort|10126146 +st john's wort family|10126204 +st joseph|10126338 +st martin's day|10126408 +st mihiel|10126483 +st patrick's day|10126560 +st peter's wort|10126636 +st valentine's day|10126734 +st. ambrose|10113283 +st. andrew|10113476 +st. andrew's cross|10113566 +st. anselm|10113627 +st. anthony's cross|10113695 +st. athanasius|10113760 +st. augustine|10113970 +st. augustine grass|10114240 +st. baeda|10114333 +st. barbara's herb|10114555 +st. basil|10114646 +st. basil the great|10114857 +st. beda|10115078 +st. bede|10115299 +st. benedict|10115520 +st. boniface|10115599 +st. bride|10115711 +st. bridget|10115861 +st. brigid|10116013 +st. bruno|10116164 +st. christopher|10116254 +st. christopher-nevis|10116408 +st. cloud|10116582 +st. crispin|10116628 +st. dabeoc's heath|10116696 +st. david|10116785 +st. denis|10116845 +st. dominic|10116959 +st. edward the confessor|10117045 +st. edward the martyr|10117196 +st. elias mountains|10117335 +st. elias range|10117480 +st. elmo's fire|10117621 +st. eustatius|10117836 +st. francis|10117896 +st. francis of assisi|10118113 +st. francis river|10118263 +st. george|10118360 +st. george's|10118431 +st. gregory i|10118502 +st. gregory of nazianzen|10118715 +st. ignatius|10118935 +st. ignatius of loyola|10119007 +st. james|10119165 +st. james the apostle|10119272 +st. jerome|10119391 +st. john|10119626 +st. john chrysostom|10120047 +st. john river|10120278 +st. john the apostle|10120360 +st. john the baptist|10120520 +st. john's|10119900 +st. johns|10120644 +st. johns river|10120988 +st. joseph|10121140 +st. jude|10121247 +st. kitts|10121320 +st. kitts and nevis|10121402 +st. lawrence|10121574 +st. lawrence river|10121738 +st. lawrence seaway|10121840 +st. leo i|10121950 +st. louis|10122095 +st. lucia|10122249 +st. luke|10122345 +st. maarten|10122413 +st. mark|10122491 +st. martin|10122559 +st. mary magdalen|10122674 +st. mary magdalene|10122789 +st. mary of bethlehem|10122905 +st. matthew|10123040 +st. matthew the apostle|10123175 +st. nicholas|10123322 +st. nick|10123394 +st. olaf|10123488 +st. olav|10123586 +st. patrick|10123684 +st. paul|10123760 +st. peter|10123974 +st. peter the apostle|10124223 +st. peter's wreath|10124093 +st. petersburg|10124354 +st. simon|10124537 +st. thomas|10124637 +st. thomas a becket|10124920 +st. thomas and principe|10125038 +st. thomas aquinas|10125222 +st. vincent|10125417 +st. vincent and the grenadines|10125471 +st. vitus|10125594 +st. vitus dance|10125642 +st.-bruno's-lily|10113198 +stab|10126849 +stabbed|10127041 +stabber|10127066 +stabbing|10127122 +stabile|10127234 +stabilisation|10127322 +stabilise|10127452 +stabilised|10127582 +stabiliser|10127620 +stabilising|10127658 +stability|10127699 +stabilization|10127842 +stabilize|10127972 +stabilized|10128102 +stabilizer|10128140 +stabilizer bar|10128242 +stabilizing|10128306 +stable|10128347 +stable companion|10128607 +stable factor|10128665 +stable gear|10128764 +stableboy|10128832 +stableman|10128908 +stablemate|10128984 +stableness|10129042 +stabling|10129092 +stabroek|10129124 +staccato|10129184 +stachyose|10129244 +stachys|10129279 +stachys palustris|10129338 +stachys sylvatica|10129418 +stack|10129510 +stack away|10130033 +stack up|10130117 +stacked|10130187 +stacked heel|10130252 +stacker|10130279 +stacks|10130333 +stacte|10130974 +staddle|10130996 +stadium|10131033 +stadium jumping|10131099 +stael|10131153 +staff|10131258 +staff line|10131549 +staff member|10131574 +staff of life|10131613 +staff office|10131665 +staff officer|10131754 +staff sergeant|10131798 +staff tree|10131831 +staff vine|10131862 +staff-tree family|10131436 +staffa|10131986 +staffer|10132016 +staffordshire bullterrier|10132055 +staffordshire terrier|10132168 +staffordshite bull terrier|10132320 +stag|10132434 +stag beetle|10132800 +stag party|10132840 +stag's garlic|10132701 +stag's-horn coral|10132619 +stage|10132873 +stage business|10133281 +stage crew|10133358 +stage dancing|10133399 +stage direct|10133476 +stage direction|10133505 +stage director|10133552 +stage door|10133619 +stage effect|10133682 +stage fright|10133719 +stage left|10133765 +stage manager|10133801 +stage name|10133842 +stage right|10133893 +stage set|10133932 +stage setting|10133970 +stage technician|10134021 +stage whisper|10134066 +stage-struck|10133250 +stagecoach|10134120 +stagecraft|10134180 +staged|10134232 +stagehand|10134289 +stager|10134334 +stagey|10134445 +stagflation|10134478 +stagflationary|10134523 +stagger|10134570 +stagger bush|10134762 +stagger head|10134903 +staggerbush|10135009 +staggered board of directors|10135069 +staggered head|10135138 +staggerer|10135244 +staggering|10135304 +staggeringly|10135412 +staggers|10135464 +staghead|10135546 +staghorn coral|10135615 +staghorn fern|10135697 +staghorn moss|10135725 +staghorn sumac|10135812 +staghound|10135911 +stagily|10135946 +staginess|10135975 +staging|10136022 +staging area|10136162 +stagira|10136197 +stagirus|10136236 +stagnancy|10136276 +stagnant|10136399 +stagnant anoxia|10136466 +stagnant hypoxia|10136514 +stagnate|10136565 +stagnation|10136632 +stagy|10136754 +staid|10136787 +staidly|10136818 +staidness|10136850 +stain|10136953 +stainability|10137333 +stainable|10137376 +stained|10137415 +stained glass|10137612 +stained-glass window|10137575 +stainer|10137641 +staining|10137665 +stainless|10137742 +stainless steel|10137815 +stair|10137867 +stair-carpet|10137895 +stair-rod|10137938 +staircase|10137961 +stairhead|10138006 +stairs|10138034 +stairway|10138105 +stairwell|10138150 +staisfise|10138174 +stake|10138212 +stake driver|10138544 +stake race|10138613 +stakeholder|10138644 +stakeout|10138673 +stakes|10138704 +stalactite|10138894 +stalagmite|10138923 +stale|10138952 +stalemate|10139273 +stalemated|10139379 +staleness|10139421 +stalin|10139479 +stalinabad|10139567 +stalingrad|10139655 +stalinisation|10139735 +stalinise|10139801 +stalinism|10139867 +stalinist|10140033 +stalinization|10140104 +stalinize|10140170 +stalino|10140236 +stalk|10140307 +stalked|10140555 +stalked puffball|10140584 +stalker|10140635 +stalking|10140752 +stalking-horse|10140854 +stalkless|10141028 +stalklike|10141055 +stall|10141093 +stall bar|10141505 +stall-fed|10141476 +stalling|10141554 +stallion|10141590 +stalls|10141626 +stalwart|10141929 +stalwartness|10142111 +stamboul|10142152 +stambul|10142240 +stamen|10142327 +stamina|10142366 +staminate|10142454 +stammel|10142487 +stammer|10142534 +stammerer|10142678 +stammering|10142752 +stammeringly|10142809 +stamp|10142843 +stamp act|10143349 +stamp album|10143402 +stamp battery|10143429 +stamp collecting|10143485 +stamp collection|10143583 +stamp collector|10143735 +stamp dealer|10143793 +stamp down|10143846 +stamp duty|10143952 +stamp mill|10144015 +stamp out|10144094 +stamp pad|10144132 +stamp tax|10144179 +stamped|10144242 +stampede|10144266 +stamper|10144374 +stamping ground|10144518 +stamping machine|10144584 +stamping mill|10144629 +stan laurel|10144708 +stan musial|10144795 +stan the man|10144896 +stance|10144998 +stanch|10145089 +stanchion|10145129 +stanchly|10145153 +stand|10145180 +stand back|10146412 +stand by|10146528 +stand fast|10146631 +stand firm|10146707 +stand for|10146858 +stand guard|10147098 +stand in|10147163 +stand oil|10147232 +stand out|10147255 +stand pat|10147477 +stand sentinel|10147553 +stand up|10147618 +stand watch|10147938 +stand-alone|10146059 +stand-down|10146089 +stand-in|10146251 +stand-up|10146347 +standard|10148003 +standard and poor's|10148731 +standard and poor's index|10148837 +standard atmosphere|10148949 +standard candle|10149025 +standard cell|10149109 +standard deviation|10149172 +standard gauge|10149209 +standard generalized markup language|10149271 +standard of life|10149338 +standard of living|10149408 +standard of measurement|10149478 +standard operating procedure|10149555 +standard poodle|10149665 +standard pressure|10149708 +standard procedure|10149784 +standard schnauzer|10149894 +standard temperature|10149932 +standard time|10149997 +standard transmission|10150047 +standard-bearer|10148637 +standardisation|10150123 +standardise|10150291 +standardised|10150434 +standardiser|10150547 +standardization|10150599 +standardize|10150767 +standardized|10150910 +standardizer|10151023 +standby|10151075 +standdown|10151176 +standee|10151258 +stander|10151297 +standing|10151329 +standing army|10151591 +standing committee|10151646 +standing operating procedure|10151695 +standing order|10151805 +standing ovation|10151892 +standing press|10151945 +standing rib roast|10151990 +standing room|10152040 +standing stone|10152083 +standing wave|10152144 +standish|10152199 +standoff|10152273 +standoffish|10152330 +standoffishness|10152373 +standpat|10152462 +standpipe|10152528 +standpoint|10152566 +stands|10152640 +standstill|10153118 +standup comedian|10153214 +stanford|10153262 +stanford university|10153454 +stanford white|10153523 +stanford-binet test|10153379 +stanhopea|10153587 +stanislavsky|10153632 +stanley|10153844 +stanley baldwin|10154023 +stanley frank musial|10154132 +stanley kubrick|10154242 +stanley smith stevens|10154338 +stanley steamer|10154447 +stanleya|10154525 +stanleya pinnata|10154589 +stannic|10154694 +stannic chloride|10154742 +stannic sulfide|10154777 +stannite|10154822 +stannous|10154860 +stannous fluoride|10154908 +stanton|10154944 +stanza|10155058 +stapedectomy|10155094 +stapelia|10155158 +stapelias asterias|10155229 +stapes|10155316 +staph|10155357 +staphylaceae|10155414 +staphylea|10155520 +staphylinidae|10155596 +staphylococcal|10155671 +staphylococcal enterotoxin|10155707 +staphylococcal enterotoxin b|10155755 +staphylococcal infection|10155888 +staphylococci|10155932 +staphylococcus|10156030 +staple|10156087 +staple gun|10156248 +stapled|10156374 +staplegun|10156407 +stapler|10156452 +stapling machine|10156494 +star|10156536 +star anise|10157627 +star aniseed|10157763 +star apple|10157816 +star begonia|10157877 +star chamber|10157947 +star chart|10158008 +star divination|10158034 +star drill|10158083 +star earthball|10158141 +star fruit|10158242 +star grass|10158285 +star ipomoea|10158556 +star jasmine|10158627 +star magnolia|10158702 +star of david|10158752 +star of the veldt|10158869 +star sapphire|10158930 +star saxifrage|10158962 +star shell|10159053 +star sign|10159085 +star topology|10159170 +star tulip|10159224 +star-duckweed|10157088 +star-glory|10157135 +star-leaf begonia|10157230 +star-nosed mole|10157300 +star-of-bethlehem|10157363 +star-shaped|10157422 +star-spangled banner|10157469 +star-thistle|10157567 +starboard|10159321 +starch|10159446 +starch wheat|10159507 +starchless|10159580 +starchlike|10159611 +starchy|10159680 +stardom|10159785 +stardust|10159814 +stare|10159852 +stare down|10159920 +starer|10159968 +starets|10160024 +starfish|10160050 +starfish flower|10160088 +starflower|10160159 +stargaze|10160250 +stargazer|10160348 +stargazing|10160482 +staring|10160534 +staringly|10160708 +stark|10160734 +stark naked|10160993 +starkers|10161115 +starkness|10161143 +starless|10161181 +starlet|10161208 +starlight|10161233 +starlike|10161290 +starling|10161315 +starlit|10161352 +starnose mole|10161376 +starr|10161439 +starred|10161506 +starring|10161541 +starry|10161592 +starry saxifrage|10161674 +starry-eyed|10161642 +stars and bars|10161765 +stars and stripes|10161826 +starship|10161921 +start|10161992 +start out|10162882 +start up|10163036 +start-off|10162840 +starter|10163122 +starter motor|10163405 +starting|10163466 +starting block|10163533 +starting buffer|10163563 +starting gate|10163604 +starting handle|10163651 +starting line|10163703 +starting motor|10163737 +starting pitcher|10163798 +starting point|10163855 +starting post|10163981 +starting signal|10164015 +starting stalls|10164068 +starting time|10164115 +startle|10164231 +startle reaction|10164467 +startle reflex|10164529 +startle response|10164584 +startled|10164646 +startling|10164674 +startup|10164704 +starvation|10164799 +starvation acidosis|10164886 +starve|10164924 +starved|10165110 +starved aster|10165200 +starveling|10165242 +starving|10165278 +starwort|10165357 +stash|10165434 +stash away|10165551 +stash house|10165635 +stasis|10165662 +stassano furnace|10165728 +stat mi|10165809 +statant|10165869 +state|10165909 +state attorney|10166901 +state bank|10167012 +state boundary|10167102 +state capital|10167187 +state capitalism|10167247 +state change|10167297 +state department|10167412 +state government|10167552 +state highway|10167608 +state line|10167714 +state of affairs|10167799 +state of bahrain|10167841 +state of eritrea|10167927 +state of flux|10168009 +state of grace|10168043 +state of israel|10168092 +state of katar|10168177 +state of kuwait|10168270 +state of matter|10168352 +state of mind|10168403 +state of nature|10168518 +state of qatar|10168568 +state of the art|10168661 +state of the vatican city|10168712 +state of war|10168832 +state prison|10168886 +state senator|10168928 +state socialism|10168959 +state supreme court|10169008 +state tax lien|10169088 +state treasurer|10169121 +state trooper|10169174 +state's attorney|10166505 +state's evidence|10166616 +state-controlled|10166651 +state-of-the-art|10166755 +state-sponsored terrorism|10166793 +state-supported|10166869 +statecraft|10169238 +stated|10169298 +statehouse|10169342 +stateless|10169393 +stateless person|10169431 +stateliness|10169485 +stately|10169590 +stately home|10169705 +statement|10169770 +staten island|10170117 +stater|10170162 +stateroom|10170217 +states general|10170448 +states' rights|10170242 +states' rights democratic party|10170342 +statesman|10170496 +statesmanlike|10170578 +statesmanly|10170656 +statesmanship|10170720 +stateswoman|10170780 +statewide|10170833 +static|10170863 +static electricity|10171139 +static line|10171179 +static magnet|10171205 +static tube|10171252 +statice|10171328 +statics|10171392 +statin|10171541 +statin drug|10171665 +station|10171789 +station agent|10171978 +station house|10172022 +station keeper|10172102 +station waggon|10172173 +station wagon|10172286 +stationariness|10172399 +stationary|10172469 +stationary stochastic process|10172521 +stationary wave|10172579 +stationer|10172634 +stationery|10172693 +stationery seller|10172740 +stationmaster|10172799 +stations|10172843 +stations of the cross|10173070 +statistic|10173185 +statistical|10173221 +statistical commission|10173274 +statistical distribution|10173386 +statistical mechanics|10173478 +statistical method|10173553 +statistical procedure|10173610 +statistical regression|10173667 +statistical table|10173796 +statistician|10173859 +statistics|10173983 +stative|10174070 +stator|10174095 +stator coil|10174141 +statuary|10174187 +statue|10174268 +statue maker|10174294 +statue of liberty|10174366 +statuesque|10174436 +statuette|10174494 +stature|10174529 +status|10174598 +status asthmaticus|10174652 +status epilepticus|10174718 +status quo|10174755 +status seeking|10174802 +statute|10174862 +statute book|10174933 +statute law|10174986 +statute mile|10175029 +statute of limitations|10175089 +statute title|10175125 +statutory|10175181 +statutory law|10175226 +statutory offence|10175267 +statutory offense|10175369 +statutory rape|10175471 +staunch|10175542 +staunchly|10175619 +staunchness|10175646 +staurikosaur|10175689 +staurikosaurus|10175763 +stavanger|10175837 +stave|10175900 +stave in|10176061 +stave off|10176124 +stave wood|10176248 +stay|10176398 +stay at|10177015 +stay away|10177055 +stay fresh|10177149 +stay of execution|10177191 +stay off|10177223 +stay on|10177256 +stay over|10177297 +stay put|10177333 +stay together|10177389 +stay up|10177444 +stay-at-home|10176952 +stayer|10177473 +staying power|10177537 +stayman|10177588 +stayman winesap|10177640 +stays|10177708 +staysail|10177988 +stead|10178024 +steadfast|10178085 +steadfastly|10178205 +steadfastness|10178250 +steadied|10178341 +steadily|10178366 +steadiness|10178390 +steady|10178464 +steady down|10179062 +steady-going|10179010 +steadying|10179137 +steak|10179164 +steak and kidney pie|10179195 +steak au poivre|10179234 +steak knife|10179292 +steak sauce|10179325 +steak tartare|10179356 +steakhouse|10179412 +steal|10179479 +steal away|10179700 +stealer|10179784 +stealing|10179846 +stealth|10179948 +stealth aircraft|10180004 +stealth bomber|10180039 +stealth fighter|10180087 +stealthiness|10180170 +stealthy|10180239 +steam|10180319 +steam bath|10180585 +steam boiler|10180696 +steam chest|10180732 +steam clean|10180761 +steam coal|10180805 +steam engine|10180830 +steam fitting|10180879 +steam heat|10180926 +steam heating|10181002 +steam iron|10181078 +steam line|10181118 +steam locomotive|10181168 +steam organ|10181249 +steam pipe|10181309 +steam room|10181359 +steam shovel|10181418 +steam turbine|10181477 +steam whistle|10181508 +steam-heat|10180529 +steam-powered|10180554 +steamboat|10181539 +steamed|10181563 +steamed pudding|10181683 +steamer|10181716 +steamer clam|10181905 +steamfitter|10182035 +steaming|10182095 +steamroll|10182130 +steamroller|10182308 +steamship|10182578 +steamship company|10182610 +steamship line|10182657 +steamy|10182704 +stearic|10182737 +stearic acid|10182773 +stearin|10182834 +steatite|10182866 +steatocystoma|10182925 +steatornis|10182983 +steatornis caripensis|10183042 +steatornithidae|10183132 +steatorrhea|10183208 +steed|10183237 +steel|10183261 +steel arch bridge|10183523 +steel band|10183562 +steel blue|10183614 +steel company|10183648 +steel drum|10183679 +steel engraving|10183743 +steel factory|10183820 +steel gray|10183922 +steel guitar|10183992 +steel industry|10184037 +steel mill|10184070 +steel oneself against|10184172 +steel onself for|10184272 +steel plant|10184372 +steel plate|10184474 +steel production|10184501 +steel trap|10184538 +steel wool|10184594 +steel-plated|10183393 +steel-wool pad|10183482 +steele|10184660 +steelmaker|10184715 +steelman|10184769 +steelworker|10184823 +steelworks|10184877 +steely|10184979 +steelyard|10185012 +steenbok|10185062 +steep|10185120 +steepen|10185515 +steeper|10185566 +steepish|10185590 +steeple|10185614 +steeplechase|10185643 +steeplechaser|10185706 +steeplejack|10185756 +steepness|10185814 +steer|10185875 +steer roping|10186173 +steerable|10186202 +steerage|10186242 +steerageway|10186298 +steerer|10186334 +steering|10186519 +steering committee|10186625 +steering gear|10186674 +steering linkage|10186717 +steering mechanism|10186753 +steering system|10186807 +steering wheel|10186861 +steersman|10186901 +stefan wyszynski|10187000 +stefan zweig|10187101 +steffens|10187156 +steffi graf|10187235 +steganopus|10187302 +steganopus tricolor|10187361 +stegocephalia|10187439 +stegosaur|10187509 +stegosaur stenops|10187575 +stegosaurus|10187659 +steichen|10187725 +stein|10187794 +steinbeck|10187864 +steinberg|10187943 +steinbok|10187998 +steinem|10188056 +steinert's disease|10188151 +steinman|10188293 +steinmetz|10188358 +steinway|10188463 +stela|10188570 +stele|10188607 +stelis|10188667 +stella|10188709 +stellar|10188773 +stellar parallax|10188967 +stellar's sea eagle|10188866 +stellaria|10189031 +stellaria holostea|10189103 +stellaria media|10189199 +stellate|10189267 +stellate venule|10189314 +steller|10189368 +steller sea lion|10189633 +steller's sea cow|10189444 +steller's sea lion|10189541 +stellite|10189723 +stem|10189762 +stem blight|10190157 +stem canker|10190185 +stem cell|10190260 +stem ginger|10190308 +stem lettuce|10190384 +stem turn|10190448 +stem vowel|10190485 +stem-cell research|10190075 +stem-winder|10190123 +stemless|10190538 +stemless carline thistle|10190592 +stemless daisy|10190658 +stemless golden weed|10190721 +stemless hymenoxys|10190811 +stemlike|10190900 +stemma|10190938 +stemmatic|10191149 +stemmatics|10191185 +stemmatology|10191269 +stemmed|10191353 +stemmer|10191420 +stemming algorithm|10191594 +sten gun|10191677 +stench|10191719 +stench bomb|10191843 +stencil|10191880 +stendhal|10191917 +stengel|10191976 +stenocarpus|10192070 +stenocarpus salignus|10192152 +stenocarpus sinuatus|10192232 +stenochlaena|10192314 +stenograph|10192379 +stenographer|10192464 +stenographic|10192546 +stenographical|10192606 +stenography|10192666 +stenopelmatidae|10192740 +stenopelmatus|10192821 +stenopelmatus fuscus|10192894 +stenopterygius|10193012 +stenopterygius quadrisicissus|10193078 +stenosed|10193174 +stenosis|10193213 +stenotaphrum|10193251 +stenotaphrum secundatum|10193335 +stenotic|10193432 +stenotomus|10193471 +stenotomus aculeatus|10193530 +stenotomus chrysops|10193621 +stenotus|10193710 +stenotus acaulis|10193772 +stent|10193879 +stentor|10193906 +stentorian|10194044 +step|10194077 +step by step|10195167 +step dancing|10195224 +step down|10195290 +step forward|10195411 +step in|10195506 +step ladder|10195640 +step on|10195760 +step out|10195797 +step stool|10195841 +step to the fore|10195867 +step up|10195962 +step-by-step|10194844 +step-down|10194920 +step-down transformer|10194989 +step-in|10195032 +step-up|10195080 +step-up transformer|10195126 +stepbrother|10196115 +stepchild|10196171 +stepdaughter|10196200 +stepfather|10196232 +stephane grappelli|10196294 +stephane mallarme|10196369 +stephanie graf|10196428 +stephanion|10196498 +stephanomeria|10196537 +stephanomeria malheurensis|10196616 +stephanotis|10196727 +stephanotis floribunda|10196759 +stephanus johannes paulus kruger|10196855 +stephead|10196985 +stephen|10197091 +stephen a. douglas|10197149 +stephen arnold douglas|10197285 +stephen butler leacock|10197425 +stephen collins foster|10197549 +stephen crane|10197659 +stephen decatur|10197716 +stephen foster|10197779 +stephen girard|10197881 +stephen grover cleveland|10197946 +stephen hawking|10198133 +stephen jay gould|10198216 +stephen leacock|10198308 +stephen michael reich|10198425 +stephen samuel wise|10198505 +stephen sondheim|10198576 +stephen spender|10198637 +stephen vincent benet|10198734 +stephen william hawking|10198798 +stephenson|10198889 +stepladder|10198965 +stepmother|10199004 +stepparent|10199035 +steppe|10199062 +stepped line|10199100 +stepper|10199206 +stepping down|10199326 +stepping motor|10199402 +stepping stone|10199440 +steprelationship|10199499 +steps|10199554 +stepsister|10200115 +stepson|10200158 +stepwise|10200185 +steradian|10200280 +stercobilinogen|10200315 +stercolith|10200363 +stercorariidae|10200417 +stercorarius|10200490 +stercorarius parasiticus|10200555 +sterculia|10200650 +sterculia acerifolia|10200703 +sterculia apetala|10200830 +sterculia family|10200897 +sterculia foetida|10200981 +sterculia gum|10201058 +sterculia rupestris|10201096 +sterculiaceae|10201239 +stereo|10201337 +stereo system|10201529 +stereophonic|10201590 +stereophonic system|10201648 +stereoscope|10201709 +stereoscopic|10201745 +stereoscopic photograph|10201804 +stereoscopic picture|10201895 +stereoscopic vision|10201986 +stereoscopy|10202044 +stereospondyli|10202102 +stereotype|10202175 +stereotyped|10202325 +stereotypic|10202399 +stereotypical|10202473 +sterile|10202547 +sterileness|10202775 +sterilisation|10202838 +sterilise|10202996 +sterilised|10203111 +steriliser|10203208 +sterility|10203256 +sterilization|10203382 +sterilize|10203540 +sterilized|10203655 +sterilizer|10203752 +sterling|10203800 +sterling area|10203861 +sterling bloc|10203930 +sterling silver|10203999 +stern|10204036 +stern chaser|10204479 +sterna|10204511 +sterna hirundo|10204592 +sternal|10204648 +sterne|10204672 +sterninae|10204725 +sternly|10204786 +sternness|10204811 +sternocleido mastoideus|10204858 +sternocleidomastoid|10205002 +sternocleidomastoid muscle|10205146 +sternocleidomastoid vein|10205290 +sternotherus|10205381 +sternpost|10205449 +sternum|10205475 +sternutation|10205511 +sternutative|10205655 +sternutator|10205700 +sternutatory|10205761 +sternwheeler|10205885 +steroid|10205937 +steroid alcohol|10206043 +steroid hormone|10206091 +steroidal|10206173 +sterol|10206239 +sterope|10206287 +stertor|10206356 +stertorous|10206442 +stet|10206468 +stethoscope|10206538 +stetson|10206578 +steuben|10206650 +steve martin|10206765 +steve reich|10206865 +stevedore|10206935 +steven spielberg|10207060 +steven weinberg|10207160 +stevens|10207220 +stevens' law|10207428 +stevens' power law|10207510 +stevenson|10207598 +stevia|10207771 +stew|10207838 +stew meat|10207970 +steward|10207994 +stewardess|10208203 +stewardship|10208268 +stewart|10208344 +stewed|10208491 +stewing|10208529 +stewing pan|10208609 +stewpan|10208647 +sth|10208685 +sthene|10208845 +stheno|10208872 +stibnite|10208902 +stichaeidae|10208928 +sticherus|10208992 +sticherus flabellatus|10209048 +stick|10209151 +stick about|10210288 +stick around|10210336 +stick by|10210425 +stick cinnamon|10210468 +stick figure|10210501 +stick horse|10210531 +stick in|10210566 +stick insect|10210705 +stick lac|10210777 +stick on|10210800 +stick out|10210865 +stick shift|10211082 +stick to|10211158 +stick together|10211283 +stick up|10211338 +stick with|10211408 +stick-in-the-mud|10210108 +stick-on|10210261 +stickball|10211486 +stickball game|10211548 +sticker|10211610 +stickily|10211753 +stickiness|10211779 +sticking|10211821 +sticking out|10211903 +sticking plaster|10211985 +sticking point|10212050 +stickle|10212092 +stickleback|10212136 +stickler|10212204 +stickpin|10212255 +sticks and stone|10212277 +sticktight|10212321 +sticktight flea|10212467 +stickup|10212532 +stickup man|10212584 +stickweed|10212630 +sticky|10212671 +sticky aster|10212841 +sticky bun|10212911 +sticky end|10212986 +sticky geranium|10213055 +stictomys|10213127 +stictopelia|10213185 +stictopelia cuneata|10213247 +stieglitz|10213334 +stiff|10213401 +stiff aster|10213927 +stiff gentian|10213973 +stiff upper lip|10214092 +stiff-backed|10213867 +stiff-necked|10213896 +stiffen|10214146 +stiffened|10214288 +stiffener|10214331 +stiffening|10214357 +stiffly|10214476 +stiffness|10214517 +stifle|10214714 +stifled|10215078 +stifler|10215136 +stifling|10215216 +stigma|10215318 +stigmata|10215430 +stigmatic|10215592 +stigmatisation|10215744 +stigmatise|10215804 +stigmatism|10215884 +stigmatist|10215987 +stigmatization|10216070 +stigmatize|10216130 +stilbesterol|10216210 +stilbestrol|10216280 +stilboestrol|10216376 +stile|10216472 +stiletto|10216504 +stiletto heel|10216537 +still|10216576 +still hunt|10217521 +still life|10217569 +still room|10217606 +still's disease|10217317 +still-fish|10217439 +still-hunt|10217464 +stillbirth|10217739 +stillborn|10217801 +stillborn infant|10217865 +stillness|10217935 +stillroom|10218036 +stillson wrench|10218088 +stilly|10218153 +stilt|10218175 +stilt plover|10218398 +stiltbird|10218509 +stilted|10218620 +stilton|10218683 +stilwell|10218725 +stimulant|10218827 +stimulant drug|10218943 +stimulate|10218982 +stimulated|10219358 +stimulating|10219413 +stimulation|10219641 +stimulative|10219849 +stimulus|10220020 +stimulus generalisation|10220078 +stimulus generalization|10220206 +sting|10220334 +sting operation|10220735 +stingaree-bush|10220866 +stinger|10220935 +stingily|10221107 +stinginess|10221142 +stinging|10221168 +stinging hair|10221283 +stinging nettle|10221325 +stingless|10221371 +stingray|10221400 +stingy|10221422 +stink|10221726 +stink bell|10221897 +stink bomb|10221964 +stink fly|10222001 +stink out|10222067 +stink up|10222127 +stinkbird|10222187 +stinker|10222273 +stinkhorn|10222454 +stinkiness|10222495 +stinking|10222596 +stinking bean trefoil|10222747 +stinking cedar|10222819 +stinking chamomile|10222890 +stinking clover|10222996 +stinking elder|10223083 +stinking gladwyn|10223182 +stinking goosefoot|10223312 +stinking hellebore|10223371 +stinking horehound|10223452 +stinking iris|10223564 +stinking mayweed|10223694 +stinking nightshade|10223800 +stinking smut|10223890 +stinking wattle|10223969 +stinking weed|10224024 +stinking yew|10224132 +stinkpot|10224203 +stinkweed|10224370 +stinky|10224484 +stinky squid|10224545 +stint|10224615 +stinter|10224805 +stinting|10224844 +stipe|10224903 +stipend|10224929 +stipendiary|10224962 +stipendiary magistrate|10225158 +stipple|10225234 +stippled|10225320 +stippler|10225380 +stipulate|10225406 +stipulation|10225519 +stipulative definition|10225660 +stipulatory|10225703 +stipule|10225769 +stir|10225813 +stir fry|10226402 +stir up|10226424 +stirk|10226686 +stirred|10226734 +stirred up|10226835 +stirrer|10226890 +stirring|10226945 +stirrup|10227063 +stirrup cup|10227132 +stirrup iron|10227159 +stirrup pump|10227197 +stitch|10227224 +stitched|10227326 +stitcher|10227362 +stitchery|10227432 +stitching|10227481 +stitchwort|10227518 +stizidae|10227595 +stizolobium|10227655 +stizolobium deeringiana|10227737 +stizostedion|10227916 +stizostedion vitreum|10227981 +stm|10228088 +stoat|10228159 +stob|10228214 +stochastic|10228234 +stochastic process|10228261 +stochastic variable|10228325 +stochasticity|10228429 +stock|10228509 +stock breeder|10229849 +stock buyback|10229915 +stock car|10229947 +stock certificate|10230059 +stock company|10230113 +stock cube|10230185 +stock dividend|10230217 +stock exchange|10230250 +stock farmer|10230314 +stock index|10230394 +stock issue|10230472 +stock list|10230516 +stock market|10230559 +stock market index|10230623 +stock of record|10230701 +stock option|10230769 +stock power|10230798 +stock purchase plan|10230837 +stock raiser|10230889 +stock room|10230969 +stock saddle|10231111 +stock split|10231155 +stock symbol|10231208 +stock ticker|10231237 +stock trader|10231327 +stock warrant|10231380 +stock-in-trade|10229633 +stock-index futures|10229667 +stock-purchase warrant|10229713 +stock-still|10229783 +stockade|10231494 +stockbroker|10231639 +stockbroker belt|10231680 +stockcar|10231736 +stocked|10231761 +stocked with|10231810 +stocker|10231859 +stockfish|10231892 +stockholder|10231916 +stockholder of record|10231969 +stockholders meeting|10232035 +stockholding|10232073 +stockholdings|10232174 +stockholm|10232356 +stockhorn|10232420 +stockinet|10232500 +stockinette|10232551 +stockinette stitch|10232602 +stocking|10232646 +stocking cap|10232744 +stocking filler|10232791 +stocking stuffer|10232866 +stockinged|10232941 +stockist|10232985 +stockjobber|10233021 +stockman|10233055 +stockpile|10233135 +stockpiling|10233252 +stockpot|10233315 +stockroom|10233337 +stocks|10233398 +stocktaking|10234244 +stockton|10234371 +stocky|10234452 +stockyard|10234504 +stodge|10234528 +stodgily|10234617 +stodginess|10234643 +stodgy|10234722 +stoep|10234831 +stoic|10234858 +stoical|10235014 +stoichiometric|10235049 +stoichiometry|10235078 +stoicism|10235107 +stoke|10235237 +stokehold|10235257 +stokehole|10235303 +stoker|10235349 +stokes' aster|10235490 +stokes-adams syndrome|10235553 +stokesia|10235693 +stokesia laevis|10235755 +stokowski|10235834 +stole|10235950 +stolen|10235971 +stolen property|10236003 +stolid|10236072 +stolidity|10236110 +stolidness|10236271 +stolon|10236341 +stoloniferous|10236383 +stoma|10236417 +stomach|10236483 +stomach ache|10236765 +stomach exercise|10236913 +stomach flu|10237016 +stomach pump|10237089 +stomach sweetbread|10237124 +stomach upset|10237172 +stomachache|10237239 +stomachal|10237306 +stomacher|10237364 +stomachic|10237391 +stomatal|10237449 +stomate|10237523 +stomatitis|10237560 +stomatopod|10237607 +stomatopod crustacean|10237660 +stomatopoda|10237713 +stomatous|10237777 +stomp|10237877 +stomper|10237931 +stone|10237998 +stone age|10239587 +stone bass|10239650 +stone bramble|10239710 +stone breaker|10239762 +stone crab|10239802 +stone cress|10239867 +stone curlew|10240002 +stone drill|10240092 +stone facing|10240145 +stone fly|10240204 +stone fruit|10240332 +stone life face|10240365 +stone marten|10240470 +stone mimicry plant|10240536 +stone parsley|10240602 +stone pine|10240701 +stone pit|10240790 +stone plant|10240850 +stone root|10240955 +stone wall|10241233 +stone's throw|10238620 +stone-blind|10238698 +stone-broke|10238735 +stone-cold|10238790 +stone-dead|10238815 +stone-deaf|10238840 +stone-face|10238906 +stone-gray|10239092 +stone-root|10239147 +stone-sober|10239425 +stone-wash|10239463 +stonechat|10241267 +stonecress|10241324 +stonecrop|10241378 +stonecrop family|10241403 +stonecutter|10241475 +stoned|10241522 +stoneface|10241577 +stonefish|10241682 +stonefly|10241748 +stoneless|10241795 +stonelike|10241823 +stonemason|10241855 +stoner|10241920 +stoneroot|10241985 +stonewall|10242101 +stonewall jackson|10242202 +stonewaller|10242333 +stonewalling|10242409 +stoneware|10242446 +stonewash|10242478 +stonework|10242521 +stonewort|10242548 +stoning|10242591 +stony|10242639 +stony coral|10242836 +stony-broke|10242781 +stonyhearted|10242891 +stooge|10242951 +stool|10243110 +stool pigeon|10243529 +stool test|10243675 +stoolie|10243765 +stoolpigeon|10243875 +stoop|10243985 +stoop to|10244213 +stooped|10244262 +stooper|10244342 +stooping|10244435 +stop|10244515 +stop bath|10245650 +stop consonant|10245706 +stop dead|10245802 +stop number|10245840 +stop order|10245894 +stop over|10245951 +stop payment|10246031 +stop press|10246074 +stop up|10246099 +stop-loss order|10245593 +stopcock|10246142 +stopes|10246181 +stopgap|10246299 +stoplight|10246336 +stopo watch|10246423 +stopover|10246460 +stoppable|10246520 +stoppage|10246558 +stoppard|10246789 +stopped|10246885 +stopped up|10247103 +stopped-up|10246950 +stopper|10247187 +stopper knot|10247422 +stoppered|10247449 +stopping|10247475 +stopping point|10247550 +stopple|10247627 +stops|10247739 +stopwatch|10248434 +storage|10248471 +storage area|10248867 +storage battery|10248937 +storage cell|10249007 +storage device|10249063 +storage locker|10249108 +storage medium|10249159 +storage ring|10249210 +storage room|10249242 +storage space|10249287 +storage tank|10249315 +storage warehouse|10249349 +storax|10249426 +storax family|10249456 +store|10249557 +store cheese|10250001 +store detective|10250053 +store-bought|10249957 +stored|10250158 +stored up|10250317 +stored-up|10250186 +storefront|10250448 +storehouse|10250484 +storekeeper|10250563 +storeria|10250641 +storeria occipitamaculata|10250697 +storeroom|10250800 +storey|10250845 +storeyed|10250902 +storied|10250938 +stork|10251011 +storksbill|10251044 +storm|10251086 +storm cellar|10251475 +storm center|10251535 +storm centre|10251737 +storm cloud|10251912 +storm cone|10251939 +storm door|10251972 +storm lamp|10251997 +storm lantern|10252085 +storm petrel|10252173 +storm sash|10252202 +storm signal|10252242 +storm trooper|10252286 +storm troops|10252326 +storm window|10252399 +storm-beaten|10251363 +storm-tossed|10251393 +stormable|10252439 +stormbound|10252481 +stormily|10252510 +storminess|10252552 +stormproof|10252609 +stormy|10252646 +stormy petrel|10252882 +story|10252961 +storyline|10253251 +storyteller|10253285 +stotinka|10253410 +stoup|10253452 +stout|10253502 +stouthearted|10253612 +stoutheartedness|10253669 +stoutness|10253726 +stove|10253824 +stove bolt|10253926 +stove poker|10253951 +stovepipe|10254009 +stovepipe iron|10254119 +stovepiped|10254154 +stovepiping|10254183 +stover|10254214 +stow|10254237 +stow away|10254256 +stowage|10254289 +stowaway|10254371 +stowe|10254405 +stowing|10254523 +stp|10254556 +strabismus|10254654 +strabotomy|10254723 +strachey|10254816 +strad|10254892 +stradavarius|10254940 +straddle|10254995 +stradivari|10255185 +stradivarius|10255283 +strafe|10255383 +strafer|10255450 +straggle|10255480 +straggler|10255592 +straggling|10255656 +stragglingly|10255702 +straggly|10255732 +straight|10255797 +straight and narrow|10257397 +straight angle|10257465 +straight arch|10257502 +straight arrow|10257540 +straight chain|10257608 +straight chair|10257643 +straight face|10257684 +straight flush|10257740 +straight flute|10257775 +straight hang|10257859 +straight life insurance|10257887 +straight line|10257995 +straight man|10258023 +straight off|10258087 +straight person|10258210 +straight pin|10258330 +straight poker|10258356 +straight razor|10258397 +straight shooter|10258427 +straight sinus|10258495 +straight ticket|10258567 +straight-arm|10256596 +straight-backed|10256652 +straight-fluted drill|10256728 +straight-from-the-shoulder|10256812 +straight-laced|10256931 +straight-line method|10257156 +straight-line method of depreciation|10257250 +straight-out|10257344 +straightarrow|10258621 +straightaway|10258653 +straightedge|10258843 +straighten|10258875 +straighten out|10259137 +straighten up|10259571 +straightener|10259621 +straightforward|10259650 +straightforwardly|10259770 +straightforwardness|10259816 +straightjacket|10259911 +straightlaced|10259956 +straightness|10260101 +strain|10260350 +strain gage|10261194 +strain gauge|10261239 +strained|10261284 +strainer|10261421 +strainer vine|10261446 +straining|10261519 +strait|10261706 +strait and narrow|10262005 +strait of calais|10262073 +strait of dover|10262159 +strait of georgia|10262244 +strait of gibraltar|10262302 +strait of hormuz|10262364 +strait of magellan|10262436 +strait of messina|10262496 +strait of ormuz|10262554 +strait-laced|10261780 +straiten|10262625 +straitened|10262658 +straitjacket|10262692 +straitlaced|10262801 +straits|10262946 +strake|10263077 +strand|10263110 +strand wolf|10263301 +stranded|10263362 +strange|10263427 +strange attractor|10263661 +strange particle|10263726 +strange quark|10263812 +strangely|10263848 +strangely enough|10263894 +strangeness|10263985 +stranger|10264071 +strangle|10264134 +strangled|10264482 +stranglehold|10264540 +strangler|10264626 +strangler fig|10264762 +strangler tree|10264918 +strangles|10264997 +strangling|10265043 +strangulate|10265121 +strangulation|10265257 +strap|10265377 +strap fern|10265586 +strap hinge|10265611 +straphanger|10265665 +strapless|10265718 +straplike|10265749 +strappado|10265775 +strapper|10265812 +strapping|10265865 +strasbourg|10265917 +strassburg|10265988 +stratagem|10266059 +strategian|10266187 +strategic|10266244 +strategic arms limitation talks|10266316 +strategic buyout|10266428 +strategic intelligence|10266461 +strategic warning|10266551 +strategical|10266586 +strategics|10266631 +strategist|10266681 +strategy|10266738 +stratford-on-avon|10266802 +stratford-upon-avon|10266872 +stratification|10266944 +stratified|10267269 +stratified language|10267496 +stratified sample|10267566 +stratified sampling|10267671 +stratify|10267755 +stratosphere|10267986 +stratum|10268014 +stratum basale|10268062 +stratum corneum|10268147 +stratum germinativum|10268200 +stratum granulosum|10268285 +stratum lucidum|10268321 +stratus|10268354 +stratus cloud|10268391 +strauss|10268428 +strauss the elder|10268594 +strauss the younger|10268671 +stravinskian|10268752 +stravinsky|10268808 +stravinskyan|10268916 +straw|10268972 +straw boss|10269196 +straw foxglove|10269267 +straw hat|10269342 +straw man|10269425 +straw mushroom|10269727 +straw poll|10269796 +straw vote|10269873 +straw wine|10269950 +strawberry|10269983 +strawberry blite|10270208 +strawberry bush|10270298 +strawberry daiquiri|10270444 +strawberry geranium|10270495 +strawberry guava|10270639 +strawberry haemangioma|10270721 +strawberry hemangioma|10270798 +strawberry ice cream|10270875 +strawberry jam|10270915 +strawberry mark|10270964 +strawberry pigweed|10271035 +strawberry preserves|10271125 +strawberry saxifrage|10271174 +strawberry shrub|10271318 +strawberry tomato|10271420 +strawberry tree|10271585 +strawberry-shrub family|10270096 +strawboard|10271649 +strawflower|10271697 +strawman|10271918 +strawworm|10272141 +stray|10272203 +strayer|10272489 +straying|10272553 +streak|10272576 +streaked|10272778 +streaker|10272814 +streaky|10272871 +stream|10272907 +stream of consciousness|10273301 +stream orchid|10273361 +streambed|10273444 +streamer|10273484 +streamer fly|10273633 +streaming|10273659 +streamlet|10273794 +streamline|10273856 +streamline flow|10273884 +streamlined|10273914 +streamliner|10273945 +streep|10273987 +street|10274031 +street address|10274283 +street arab|10274315 +street child|10274378 +street cleaner|10274486 +street clothes|10274533 +street corner|10274599 +street cred|10274694 +street credibility|10274778 +street drug|10274862 +street fighter|10274902 +street girl|10275036 +street lamp|10275235 +street name|10275273 +street organ|10275427 +street person|10275527 +street sign|10275572 +street smart|10275598 +street smarts|10275645 +street sweeper|10275721 +street theater|10275768 +street urchin|10275838 +street-walk|10274159 +streetcar|10275880 +streetcar track|10275955 +streetlight|10276003 +streetwalk|10276041 +streetwalker|10276084 +streetwise|10276283 +streisand|10276330 +strekelia|10276442 +strekelia formosissima|10276508 +strelitzia|10276598 +strelitzia family|10276676 +strelitzia reginae|10276772 +strelitziaceae|10276858 +strength|10276969 +strengthen|10277456 +strengthened|10277564 +strengthener|10277604 +strengthening|10277647 +strenuosity|10277760 +strenuous|10277813 +strenuousness|10277877 +strep|10277926 +strep throat|10278076 +strepera|10278230 +strepsiceros|10278283 +strepsirhini|10278380 +streptobacillus|10278450 +streptocarpus|10278479 +streptococcal|10278509 +streptococcal sore throat|10278588 +streptococci|10278742 +streptococcic|10278885 +streptococcus|10278964 +streptococcus anhemolyticus|10279043 +streptococcus tonsilitis|10279125 +streptodornase|10279279 +streptokinase|10279310 +streptolysin|10279340 +streptomyces|10279413 +streptomyces erythreus|10279448 +streptomyces griseus|10279516 +streptomyces scabies|10279580 +streptomycetaceae|10279665 +streptomycin|10279751 +streptopelia|10279800 +streptopelia risoria|10279865 +streptopelia turtur|10279936 +streptosolen|10279996 +streptosolen jamesonii|10280070 +streptothricin|10280171 +stress|10280222 +stress fracture|10280613 +stress incontinence|10280670 +stress mark|10280729 +stress test|10280769 +stressed|10280802 +stressful|10280937 +stressor|10281005 +stretch|10281029 +stretch along|10281685 +stretch forth|10281719 +stretch mark|10281812 +stretch out|10281855 +stretch pants|10282085 +stretch receptor|10282123 +stretch reflex|10282187 +stretchability|10282326 +stretchable|10282387 +stretched|10282425 +stretched out|10282507 +stretcher|10282549 +stretcher party|10282742 +stretcher-bearer|10282676 +stretchiness|10282781 +stretching|10282842 +stretchy|10282996 +strew|10283034 +strewing|10283098 +strewn|10283152 +stria|10283205 +striate|10283281 +striate body|10283324 +striate vein|10283386 +striated muscle|10283457 +striated muscle cell|10283514 +striated muscle fiber|10283604 +striated muscle tissue|10283694 +striation|10283749 +striatum|10283821 +stricken|10283883 +strickland|10283976 +strickle|10284045 +strict|10284154 +strictly|10284341 +strictly speaking|10284400 +strictness|10284458 +stricture|10284557 +stride|10284633 +stridence|10284838 +stridency|10284905 +strident|10284972 +strider|10285071 +stridor|10285113 +stridulate|10285138 +stridulation|10285191 +strife|10285219 +strigidae|10285284 +strigiformes|10285342 +strike|10285409 +strike a blow|10286523 +strike a chord|10286593 +strike a note|10286783 +strike back|10286869 +strike down|10286911 +strike dumb|10287002 +strike hard|10287050 +strike home|10287084 +strike leader|10287170 +strike off|10287200 +strike out|10287275 +strike pay|10287483 +strike up|10287541 +strike-slip fault|10286452 +strikebound|10287599 +strikebreaker|10287629 +strikebreaking|10287677 +strikeout|10287726 +striker|10287749 +striking|10287886 +strikingness|10288099 +strindberg|10288182 +string|10288290 +string along|10288785 +string bass|10288862 +string bean|10288978 +string cheese|10289010 +string line|10289040 +string of beads|10289086 +string of words|10289124 +string orchestra|10289220 +string out|10289256 +string quartet|10289302 +string quartette|10289361 +string section|10289420 +string tie|10289460 +string up|10289492 +stringed instrument|10289555 +stringency|10289614 +stringent|10289717 +stringently|10289761 +stringer|10289790 +strings|10289876 +stringy|10290211 +stringybark|10290314 +stringybark pine|10290371 +strip|10290431 +strip alert|10291386 +strip cropping|10291422 +strip down|10291476 +strip lighting|10291556 +strip mall|10291599 +strip mine|10291677 +strip miner|10291740 +strip mining|10291778 +strip poker|10291834 +strip search|10291872 +strip show|10291909 +strip steak|10291959 +strip-jack-naked|10291232 +strip-mined|10291330 +strip-search|10291357 +stripe|10292005 +stripe blight|10292165 +striped|10292195 +striped bass|10292229 +striped button quail|10292323 +striped coral root|10292419 +striped dogwood|10292479 +striped drum|10292581 +striped gentian|10292633 +striped hyena|10292683 +striped killifish|10292733 +striped maple|10292804 +striped marlin|10292906 +striped muishond|10292966 +striped mullet|10293017 +striped racer|10293075 +striped skunk|10293163 +striped squirrel|10293229 +striped violet|10293320 +striper|10293390 +stripes|10293543 +striping|10293762 +stripling|10293788 +stripped|10293852 +stripped-down|10293927 +stripper|10293967 +stripper well|10294186 +stripping|10294233 +striptease|10294306 +striptease artist|10294461 +stripteaser|10294579 +stripy|10294697 +strive|10294731 +striver|10294843 +striving|10294885 +strix|10294960 +strix aluco|10295004 +strix nebulosa|10295088 +strix occidentalis|10295183 +strix varia|10295283 +strizostedion vitreum glaucum|10295368 +strobe|10295544 +strobe light|10295607 +strobile|10295670 +strobilomyces|10295726 +strobilomyces floccopus|10295796 +strobilus|10295881 +stroboscope|10295937 +stroheim|10296000 +stroke|10296089 +stroke play|10296533 +stroking|10296580 +stroll|10296620 +stroller|10296706 +stroma|10296866 +stromateid|10296916 +stromateid fish|10296995 +stromateidae|10297074 +strombidae|10297141 +strombus|10297205 +strombus gigas|10297261 +strong|10297318 +strong belief|10298417 +strong breeze|10298475 +strong drink|10298528 +strong force|10298658 +strong gale|10298747 +strong interaction|10298773 +strong point|10298862 +strong suit|10298960 +strong-arm|10297985 +strong-armer|10298170 +strong-boned|10298273 +strong-minded|10298306 +strong-willed|10298371 +strongbox|10299075 +stronghold|10299106 +strongly|10299171 +strongman|10299199 +strongroom|10299272 +strongylodon|10299323 +strongylodon macrobotrys|10299395 +strontianite|10299486 +strontium|10299516 +strontium 90|10299578 +strop|10299630 +strophanthin|10299676 +strophanthus|10299708 +strophanthus kombe|10299741 +stropharia|10299801 +stropharia ambigua|10299882 +stropharia hornemannii|10299936 +stropharia rugoso-annulata|10299998 +strophariaceae|10300068 +strophe|10300143 +stroppy|10300167 +struck|10300200 +structural|10300242 +structural anthropology|10300460 +structural formula|10300514 +structural gene|10300560 +structural genomics|10300605 +structural iron|10300643 +structural linguistics|10300693 +structural member|10300751 +structural sociology|10300786 +structural steel|10300837 +structuralism|10300869 +structure|10301000 +structured|10301339 +strudel|10301406 +struggle|10301430 +struggler|10301722 +struggling|10301794 +strum|10301823 +struma|10301863 +strumpet|10301962 +strung|10302061 +strung-out|10302091 +strut|10302161 +struthio|10302263 +struthio camelus|10302316 +struthiomimus|10302402 +struthionidae|10302438 +struthioniformes|10302508 +strychnine|10302587 +strymon|10302639 +strymon melinus|10302694 +stuart|10302767 +stuart davis|10302902 +stub|10302951 +stub nail|10303142 +stub out|10303166 +stubbiness|10303229 +stubble|10303267 +stubbled|10303328 +stubbly|10303383 +stubborn|10303438 +stubbornly|10303814 +stubbornness|10303887 +stubbs|10304080 +stubby|10304144 +stucco|10304166 +stuck|10304266 +stuck with|10304418 +stuck-up|10304313 +stud|10304463 +stud farm|10304705 +stud finder|10304729 +stud mare|10304781 +stud poker|10304828 +studbook|10304870 +studded|10304906 +student|10304941 +student center|10305037 +student lamp|10305075 +student lodging|10305110 +student nurse|10305193 +student residence|10305234 +student teacher|10305338 +student union|10305415 +studentship|10305455 +studhorse|10305531 +studied|10305571 +studio|10305655 +studio apartment|10305747 +studio couch|10305795 +studious|10305846 +studiousness|10305897 +study|10305954 +study hall|10306780 +studying|10306862 +stuff|10306917 +stuff and nonsense|10307734 +stuff shot|10307835 +stuffed|10307886 +stuffed cabbage|10307920 +stuffed derma|10307950 +stuffed egg|10307985 +stuffed grape leaves|10308023 +stuffed mushroom|10308065 +stuffed peppers|10308105 +stuffed shirt|10308135 +stuffed tomato|10308183 +stuffer|10308263 +stuffily|10308419 +stuffiness|10308445 +stuffing|10308524 +stuffing box|10308609 +stuffing nut|10308651 +stuffy|10308689 +stultification|10308767 +stultify|10308874 +stumble|10309028 +stumblebum|10309265 +stumbler|10309372 +stumbling|10309527 +stumbling block|10309583 +stump|10309617 +stump speech|10309936 +stump spud|10309966 +stumper|10310003 +stumping|10310050 +stumpknocker|10310136 +stumpy|10310215 +stun|10310272 +stun baton|10310449 +stun gun|10310503 +stung|10310557 +stunned|10310580 +stunner|10310730 +stunng|10310857 +stunning|10310963 +stunningly|10311069 +stunt|10311102 +stunt flier|10311244 +stunt flying|10311310 +stunt kite|10311377 +stunt man|10311413 +stunt pilot|10311513 +stunt woman|10311579 +stunted|10311679 +stuntedness|10311721 +stunting|10311782 +stupefaction|10311849 +stupefied|10311967 +stupefy|10312084 +stupefying|10312340 +stupendous|10312441 +stupid|10312487 +stupid person|10313066 +stupidity|10313169 +stupidly|10313261 +stupor|10313305 +stuporous|10313410 +sturdiness|10313473 +sturdy|10313502 +sturgeon|10313566 +sturm und drang|10313603 +sturmarbeiteilung|10313673 +sturnella|10313751 +sturnella magna|10313807 +sturnella neglecta|10313883 +sturnidae|10313965 +sturnus|10314023 +sturnus vulgaris|10314073 +sturt pea|10314268 +sturt's desert pea|10314141 +stutter|10314386 +stutterer|10314530 +stuttering|10314604 +stutteringly|10314661 +stuttgart|10314695 +stuyvesant|10314753 +sty|10314843 +stye|10314920 +stygian|10314972 +style|10315048 +style of architecture|10315438 +style sheet|10315519 +styled|10315576 +styleless|10315599 +stylemark|10315644 +styler|10315705 +stylet|10315792 +stylisation|10315814 +stylise|10315907 +stylised|10315968 +stylish|10316047 +stylishness|10316439 +stylist|10316520 +stylistic|10316637 +stylite|10316667 +stylization|10316702 +stylize|10316795 +stylized|10316856 +styloid process|10316935 +stylomastoid vein|10316988 +stylomecon|10317065 +stylomecon heterophyllum|10317135 +stylophorum|10317247 +stylophorum diphyllum|10317320 +stylopodium|10317406 +stylostixis|10317433 +stylus|10317476 +stylus printer|10317517 +stymie|10317635 +stymy|10317796 +styphelia|10317903 +styphelia humifusum|10317970 +styphelia triflora|10318108 +stypsis|10318182 +styptic|10318225 +styptic weed|10318344 +styracaceae|10318452 +styracosaur|10318565 +styracosaurus|10318628 +styrax|10318691 +styrax family|10318718 +styrax japonicum|10318819 +styrax obassia|10318887 +styrax texana|10318942 +styrene|10319017 +styrofoam|10319114 +styron|10319160 +styx|10319212 +suasible|10319248 +suasion|10319314 +suave|10319370 +suaveness|10319469 +suavity|10319519 +sub|10319569 +sub judice|10320213 +sub-assembly|10319853 +sub-interval|10319884 +sub-rosa|10319915 +sub-saharan|10319974 +sub-saharan africa|10320013 +sub-test|10320145 +subacid|10320239 +subacute|10320261 +subacute bacterial endocarditis|10320285 +subacute inclusion body encephalitis|10320339 +subacute sclerosing leukoencephalitis|10320600 +subacute sclerosing panencephalitis|10320861 +subalpine|10321122 +subalpine fir|10321159 +subalpine larch|10321221 +subaltern|10321277 +subaquatic|10321416 +subaqueous|10321513 +subarachnoid space|10321583 +subarctic|10321617 +subartesian|10321648 +subatomic|10321681 +subatomic particle|10321755 +subbase|10321833 +subbing|10321867 +subclass|10321902 +subclass acnidosporidia|10321961 +subclass actinopoda|10322039 +subclass alismatidae|10322105 +subclass amphineura|10322174 +subclass anapsida|10322240 +subclass archaeornithes|10322300 +subclass archosauria|10322378 +subclass arecidae|10322447 +subclass asteridae|10322507 +subclass branchiopoda|10322570 +subclass caryophyllidae|10322642 +subclass cirripedia|10322720 +subclass cnidosporidia|10322786 +subclass commelinidae|10322861 +subclass copepoda|10322933 +subclass crossopterygii|10322993 +subclass diapsida|10323071 +subclass dibranchia|10323143 +subclass dibranchiata|10323244 +subclass dilleniidae|10323347 +subclass dipnoi|10323416 +subclass discomycetes|10323470 +subclass elasmobranchii|10323542 +subclass entomostraca|10323647 +subclass euascomycetes|10323719 +subclass euryalida|10323794 +subclass eutheria|10323857 +subclass exopterygota|10323917 +subclass hamamelidae|10324002 +subclass heterobasidiomycetes|10324071 +subclass holocephali|10324167 +subclass homobasidiomycetes|10324236 +subclass infusoria|10324326 +subclass lepidosauria|10324389 +subclass liliidae|10324461 +subclass magnoliidae|10324521 +subclass malacostraca|10324607 +subclass metatheria|10324695 +subclass ophiurida|10324761 +subclass opisthobranchia|10324824 +subclass ostracoda|10324905 +subclass pantotheria|10324968 +subclass phytomastigina|10325037 +subclass prototheria|10325115 +subclass rhizopoda|10325184 +subclass rosidae|10325247 +subclass selachii|10325304 +subclass synapsida|10325403 +subclass teleostei|10325466 +subclass telosporidia|10325529 +subclass zoomastigina|10325601 +subclavian|10325673 +subclavian artery|10325700 +subclavian vein|10325782 +subclinical absence|10325852 +subcommittee|10325908 +subcompact|10325951 +subcompact car|10326023 +subconscious|10326095 +subconscious mind|10326182 +subconsciousness|10326250 +subcontinent|10326306 +subcontract|10326337 +subcontractor|10326426 +subcortical|10326460 +subculture|10326497 +subcutaneous|10326530 +subcutaneous injection|10326594 +subcutaneous test|10326641 +subdata base|10326695 +subdeacon|10326726 +subdirectory|10326798 +subdivide|10326830 +subdivided|10326926 +subdivider|10326954 +subdivision|10326982 +subdivision ascomycota|10327271 +subdivision ascomycotina|10327384 +subdivision basidiomycota|10327499 +subdivision basidiomycotina|10327627 +subdivision coniferophytina|10327757 +subdivision cycadophyta|10327892 +subdivision cycadophytina|10328037 +subdivision deuteromycota|10328184 +subdivision deuteromycotina|10328329 +subdivision ginkgophytina|10328476 +subdivision gnetophytina|10328599 +subdivision mastigomycota|10328716 +subdivision mastigomycotina|10328844 +subdivision pinophytina|10328974 +subdivision pteropsida|10329075 +subdivision taxophytina|10329150 +subdivision zygomycota|10329251 +subdivision zygomycotina|10329364 +subdominant|10329479 +subduable|10329523 +subduction|10329565 +subdue|10329621 +subdued|10330015 +subduedness|10330120 +subduer|10330166 +subdural|10330226 +subedit|10330259 +subeditor|10330306 +suberic acid|10330348 +subfamily|10330403 +subfamily acoraceae|10330463 +subfamily anserinae|10330554 +subfamily bassariscidae|10330625 +subfamily bovinae|10330710 +subfamily cabombaceae|10330777 +subfamily caesalpinioideae|10330885 +subfamily carduelinae|10330984 +subfamily carpinaceae|10331061 +subfamily cetoniidae|10331168 +subfamily corylaceae|10331247 +subfamily dorylinae|10331350 +subfamily dracaenaceae|10331426 +subfamily dracenaceae|10331550 +subfamily emberizidae|10331673 +subfamily emberizinae|10331772 +subfamily garrulinae|10331871 +subfamily gerbillinae|10331945 +subfamily hydromyinae|10332024 +subfamily loriinae|10332103 +subfamily lutrinae|10332171 +subfamily malaconotinae|10332241 +subfamily melinae|10332324 +subfamily melolonthidae|10332391 +subfamily mephitinae|10332479 +subfamily merginae|10332555 +subfamily mimosoideae|10332623 +subfamily nelumbonaceae|10332707 +subfamily numididae|10332801 +subfamily numidinae|10332902 +subfamily papilionoideae|10333003 +subfamily perdicidae|10333096 +subfamily perdicinae|10333202 +subfamily peristediinae|10333308 +subfamily petauristidae|10333391 +subfamily philadelphaceae|10333476 +subfamily potoroinae|10333572 +subfamily pythoninae|10333648 +subfamily smilacaceae|10333725 +subfamily sterninae|10333812 +subfamily sylviinae|10333883 +subfamily taxodiaceae|10333954 +subfamily triglinae|10334052 +subfamily turdinae|10334123 +subfamily uvulariaceae|10334191 +subfigure|10334281 +subfusc|10334307 +subgenus|10334337 +subgenus azalea|10334396 +subgenus azaleastrum|10334492 +subgenus calliopsis|10334593 +subgenus chen|10334662 +subgenus pastor|10334715 +subgenus poinciana|10334774 +subgross|10334849 +subgroup|10334899 +subhead|10334964 +subheading|10335012 +subhuman|10335060 +subjacent|10335111 +subject|10335151 +subject area|10335866 +subject case|10336010 +subject field|10336081 +subject matter|10336225 +subjection|10336289 +subjective|10336405 +subjectiveness|10336497 +subjectivism|10336597 +subjectivist|10336678 +subjectivity|10336723 +subjoin|10336823 +subjoining|10336875 +subjugable|10336948 +subjugate|10336990 +subjugated|10337101 +subjugation|10337130 +subjugator|10337275 +subjunction|10337316 +subjunctive|10337389 +subjunctive mood|10337471 +subkingdom|10337528 +subkingdom metazoa|10337589 +subkingdom parazoa|10337655 +sublease|10337721 +sublet|10337796 +sublieutenant|10337873 +sublimate|10337907 +sublimated|10338167 +sublimation|10338202 +sublimaze|10338296 +sublime|10338380 +sublime porte|10338563 +sublimed|10338624 +sublimely|10338659 +subliminal|10338685 +sublimity|10338733 +sublingual|10338798 +sublingual gland|10338835 +sublingual salivary gland|10338902 +sublingual vein|10338969 +subliterary|10339042 +sublittoral|10339072 +sublunar|10339166 +sublunary|10339249 +subluxate|10339331 +subluxation|10339363 +submachine gun|10339393 +submandibular gland|10339429 +submandibular salivary gland|10339566 +submarine|10339703 +submarine ball|10340101 +submarine earthquake|10340156 +submarine pitch|10340226 +submarine sandwich|10340281 +submarine torpedo|10340438 +submariner|10340473 +submaxilla|10340531 +submaxillary gland|10340639 +submaxillary salivary gland|10340776 +submediant|10340913 +submenu|10340956 +submerge|10341025 +submerged|10341182 +submergence|10341321 +submergible|10341382 +submerging|10341415 +submerse|10341476 +submersed|10341563 +submersible|10341672 +submersible warship|10341798 +submersion|10341870 +submission|10341972 +submissive|10342204 +submissively|10342440 +submissiveness|10342475 +submit|10342509 +submitter|10342915 +submucosa|10342968 +subnormal|10343005 +subnormality|10343057 +subocean|10343191 +suboceanic|10343224 +subocular|10343257 +suborbital|10343286 +suborder|10343369 +suborder alcyonacea|10343428 +suborder anisoptera|10343501 +suborder anseres|10343574 +suborder anthropoidea|10343638 +suborder blattaria|10343717 +suborder blattodea|10343816 +suborder blennioidea|10343915 +suborder brachyura|10343991 +suborder carnosaura|10344061 +suborder cephalaspida|10344134 +suborder ceratopsia|10344246 +suborder ceratosaura|10344319 +suborder charadrii|10344383 +suborder clamatores|10344453 +suborder euronithopoda|10344526 +suborder eurylaimi|10344654 +suborder gorgonacea|10344724 +suborder gorgoniacea|10344830 +suborder heteroptera|10344937 +suborder heterostraci|10345013 +suborder homoptera|10345092 +suborder hyperoartia|10345162 +suborder hyperotreta|10345283 +suborder hystricomorpha|10345436 +suborder lacertilia|10345521 +suborder lari|10345617 +suborder lemuroidea|10345672 +suborder limicolae|10345745 +suborder lipotyphla|10345815 +suborder maniraptora|10345888 +suborder manteodea|10345964 +suborder marginocephalia|10346034 +suborder megachiroptera|10346139 +suborder megaloptera|10346224 +suborder menotyphla|10346300 +suborder menurae|10346373 +suborder microchiroptera|10346437 +suborder mugiloidea|10346525 +suborder myomorpha|10346598 +suborder mysticeti|10346668 +suborder myxiniformes|10346738 +suborder myxinoidei|10346892 +suborder natantia|10347044 +suborder nematocera|10347111 +suborder nothosauria|10347184 +suborder odontoceti|10347260 +suborder ophidia|10347333 +suborder ornithomimida|10347426 +suborder ornithopoda|10347508 +suborder oscines|10347634 +suborder osteostraci|10347725 +suborder otides|10347836 +suborder pachycephalosaurus|10347897 +suborder passeres|10347975 +suborder percoidea|10348067 +suborder petromyzoniformes|10348137 +suborder pinnipedia|10348264 +suborder plesiosauria|10348337 +suborder prosauropoda|10348416 +suborder prosimii|10348495 +suborder reptantia|10348562 +suborder ruminantia|10348632 +suborder sauria|10348705 +suborder sauropoda|10348797 +suborder sauropodomorpha|10348867 +suborder sciuromorpha|10348955 +suborder scombroidea|10349034 +suborder scorpaenoidea|10349110 +suborder serpentes|10349192 +suborder strepsirhini|10349287 +suborder tarsioidea|10349366 +suborder theropoda|10349439 +suborder thyreophora|10349509 +suborder tyranni|10349598 +suborder xenarthra|10349662 +suborder zygoptera|10349732 +subordinate|10349802 +subordinate clause|10350281 +subordinate conjunction|10350333 +subordinate word|10350427 +subordinateness|10350478 +subordinating|10350552 +subordinating conjunction|10350616 +subordination|10350729 +subordinative|10350895 +subordinator|10350945 +suborn|10350995 +subornation|10351172 +subornation of perjury|10351233 +suborner|10351277 +subpart|10351341 +subphylum|10351396 +subphylum cephalochordata|10351456 +subphylum craniata|10351540 +subphylum pentastomida|10351635 +subphylum tunicata|10351710 +subphylum urochorda|10351837 +subphylum urochordata|10351965 +subphylum vertebrata|10352095 +subpoena|10352192 +subpoena ad testificandum|10352286 +subpoena duces tecum|10352349 +subpopulation|10352398 +subprogram|10352441 +subrogate|10352549 +subrogation|10352587 +subroutine|10352642 +subroutine library|10352750 +subscribe|10352849 +subscribe to|10353003 +subscribed|10353053 +subscriber|10353080 +subscriber line|10353252 +subscript|10353378 +subscription|10353466 +subscription right|10353583 +subscription warrant|10353634 +subsection|10353709 +subsequence|10353757 +subsequent|10353879 +subsequently|10353990 +subsequentness|10354053 +subserve|10354111 +subservience|10354145 +subservient|10354283 +subserviently|10354350 +subservientness|10354395 +subset|10354462 +subshrub|10354482 +subside|10354521 +subsidence|10354654 +subsidiarity|10354796 +subsidiary|10354870 +subsidiary company|10355122 +subsidiary ledger|10355169 +subsiding|10355243 +subsidisation|10355316 +subsidise|10355467 +subsidised|10355525 +subsidiser|10355566 +subsidization|10355619 +subsidize|10355770 +subsidized|10355828 +subsidizer|10355869 +subsidy|10355922 +subsist|10355945 +subsistence|10355981 +subsistence farming|10356120 +subsister|10356179 +subsoil|10356238 +subsonic|10356275 +subspace|10356302 +subspecies|10356357 +substance|10356423 +substance abuse|10356751 +substance abuser|10356806 +substandard|10356900 +substantia alba|10356969 +substantia grisea|10357035 +substantia nigra|10357144 +substantial|10357213 +substantiality|10357408 +substantially|10357486 +substantialness|10357526 +substantiate|10357604 +substantiated|10357796 +substantiating|10357851 +substantiation|10358022 +substantiative|10358146 +substantival|10358317 +substantive|10358343 +substantive dye|10358462 +substation|10358511 +substitutability|10358539 +substitutable|10358661 +substitute|10358726 +substituting|10359142 +substitution|10359177 +substitution class|10359301 +substrate|10359360 +substratum|10359422 +substructure|10359460 +subsume|10359579 +subsumption|10359629 +subsurface|10359765 +subsystem|10359897 +subtend|10359930 +subterfuge|10359958 +subterminal|10360019 +subterranean|10360045 +subterraneous|10360129 +subthalamic nucleus|10360212 +subthalamus|10360269 +subtilin|10360307 +subtilise|10360352 +subtilize|10360398 +subtitle|10360519 +subtle|10360648 +subtlety|10360753 +subtonic|10360885 +subtopia|10360939 +subtract|10360982 +subtracted|10361071 +subtracter|10361119 +subtraction|10361224 +subtractive|10361329 +subtrahend|10361381 +subtreasury|10361408 +subtropic|10361448 +subtropical|10361516 +subtropics|10361584 +subularia|10361630 +subularia aquatica|10361697 +subunit|10361807 +suburb|10361863 +suburban|10361950 +suburban area|10362015 +suburbanise|10362102 +suburbanised|10362181 +suburbanite|10362244 +suburbanize|10362292 +suburbanized|10362371 +suburbia|10362434 +subvent|10362539 +subvention|10362598 +subversion|10362706 +subversive|10362797 +subversive activity|10362899 +subversiveness|10362949 +subvert|10363007 +subverter|10363269 +subvocalise|10363335 +subvocaliser|10363421 +subvocalize|10363468 +subvocalizer|10363554 +subway|10363601 +subway fare|10363723 +subway station|10363755 +subway token|10363803 +subway train|10363831 +succedaneum|10363874 +succeed|10363918 +succeeder|10364016 +succeeding|10364112 +success|10364284 +successful|10364473 +successfully|10364708 +successfulness|10364742 +succession|10364800 +successive|10365080 +successively|10365146 +successiveness|10365175 +successor|10365303 +succinct|10365425 +succinctly|10365479 +succinctness|10365508 +succinic|10365572 +succinic acid|10365603 +succinylcholine|10365642 +succor|10365683 +succorer|10365785 +succory|10365837 +succos|10365916 +succotash|10366012 +succour|10366036 +succourer|10366137 +succuba|10366189 +succubus|10366247 +succulence|10366305 +succulent|10366365 +succumb|10366430 +succus|10366572 +succuss|10366653 +succussion|10366693 +such|10366726 +such as|10366840 +such that|10366872 +such-and-such|10366805 +suchlike|10366906 +suck|10366937 +suck in|10367244 +suck up|10367441 +sucker|10367640 +sucker punch|10367838 +suckerfish|10367887 +sucking|10367962 +sucking fish|10368028 +sucking louse|10368103 +sucking pig|10368139 +suckle|10368179 +suckled|10368283 +suckling|10368318 +suckling pig|10368478 +suckling reflex|10368525 +sucralfate|10368648 +sucrase|10368723 +sucre|10368776 +sucrose|10368836 +suction|10368891 +suction curettage|10369035 +suction pump|10369119 +suction stop|10369146 +suctorial|10369251 +sudafed|10369305 +sudan|10369402 +sudanese|10369575 +sudanese monetary unit|10369656 +sudanese pound|10369725 +sudate|10369793 +sudation|10369853 +sudbury|10369967 +sudden|10370021 +sudden death|10370104 +sudden infant death syndrome|10370146 +suddenly|10370241 +suddenness|10370344 +sudor|10370465 +sudoriferous gland|10370509 +sudorific|10370575 +sudra|10370658 +suds|10370730 +sudsy|10370834 +sue|10370904 +suede|10370987 +suede cloth|10371059 +suede glove|10371116 +suer|10371160 +suet|10371242 +suet pudding|10371267 +suety|10371297 +suez|10371322 +suez canal|10371370 +suffer|10371420 +sufferable|10371871 +sufferance|10371932 +sufferer|10372016 +suffering|10372114 +suffice|10372313 +sufficiency|10372380 +sufficient|10372476 +suffix|10372554 +suffix notation|10372616 +suffixation|10372708 +suffocate|10372740 +suffocating|10373042 +suffocation|10373135 +suffocative|10373227 +suffragan|10373320 +suffragan bishop|10373363 +suffrage|10373406 +suffragette|10373469 +suffragist|10373556 +suffrutescent|10373614 +suffrutex|10373643 +suffuse|10373682 +suffused|10373727 +suffusion|10373757 +suffusive|10373807 +sufi|10373839 +sufism|10374011 +sugar|10374064 +sugar apple|10374461 +sugar beet|10374510 +sugar bowl|10374582 +sugar candy|10374607 +sugar cane|10374634 +sugar cookie|10374825 +sugar corn|10374868 +sugar daddy|10375007 +sugar loaf|10375063 +sugar maple|10375205 +sugar of lead|10375258 +sugar palm|10375325 +sugar pea|10375389 +sugar ray robinson|10375513 +sugar refinery|10375618 +sugar shell|10375651 +sugar snap pea|10375690 +sugar sorghum|10375810 +sugar spoon|10375868 +sugar sumac|10375907 +sugar syrup|10375970 +sugar water|10376003 +sugar-bush|10374361 +sugar-coated|10374424 +sugarberry|10376039 +sugarcane|10376121 +sugarcoat|10376232 +sugared|10376312 +sugariness|10376352 +sugarless|10376491 +sugarloaf|10376555 +sugarplum|10376616 +sugary|10376641 +suggest|10376753 +suggested|10376913 +suggester|10376954 +suggestibility|10377014 +suggestible|10377069 +suggestion|10377102 +suggestive|10377344 +suggestive of|10377480 +sugi|10377552 +suharto|10377631 +sui generis|10377688 +suicidal|10377716 +suicide|10377768 +suicide bomber|10377882 +suicide bombing|10377916 +suicide mission|10377949 +suicide pact|10378037 +suicide pill|10378083 +suicide squeeze|10378117 +suicide squeeze play|10378176 +suidae|10378235 +suillus|10378286 +suillus albivelatus|10378338 +suisse|10378394 +suit|10378499 +suit of armor|10378914 +suit of armour|10379012 +suit of clothes|10379110 +suitability|10379148 +suitable|10379190 +suitableness|10379308 +suitably|10379350 +suitcase|10379409 +suite|10379466 +suited|10379632 +suiting|10379693 +suitor|10379740 +sukarno|10379782 +sukiyaki|10379854 +sukkoth|10379877 +suksdorfia|10379974 +suksdorfia violaceae|10380016 +sukur|10380096 +sula|10380129 +sula bassana|10380170 +sulamyd|10380243 +sulawesi|10380318 +sulcate|10380360 +sulcus|10380384 +sulcus centralis|10380408 +sulcus lateralis cerebri|10380493 +sulfa|10380593 +sulfa drug|10380683 +sulfacetamide|10380773 +sulfadiazine|10380840 +sulfamethazine|10380898 +sulfamethoxazole|10380973 +sulfamezathine|10381044 +sulfanilamide|10381119 +sulfanilic acid|10381178 +sulfapyridine|10381225 +sulfate|10381284 +sulfide|10381315 +sulfisoxazole|10381368 +sulfonamide|10381437 +sulfonate|10381527 +sulfonic acid|10381551 +sulfonylurea|10381594 +sulfur|10381647 +sulfur bacteria|10381744 +sulfur bottom|10381812 +sulfur butterfly|10381897 +sulfur dioxide|10381951 +sulfur hexafluoride|10382013 +sulfur mine|10382107 +sulfur mustard|10382146 +sulfur oxide|10382246 +sulfur paintbrush|10382288 +sulfurette|10382366 +sulfuretted|10382415 +sulfuric|10382484 +sulfuric acid|10382536 +sulfurized|10382602 +sulfurous|10382671 +sulidae|10382829 +sulindac|10382881 +sulk|10382981 +sulkiness|10383048 +sulky|10383207 +sulla|10383269 +sullen|10383406 +sullenly|10383528 +sullenness|10383559 +sullied|10383657 +sullivan|10383746 +sully|10384162 +sulpha|10384496 +sulphanilic acid|10384586 +sulphate|10384633 +sulphide|10384664 +sulphonic acid|10384717 +sulphur|10384760 +sulphur bacteria|10384933 +sulphur butterfly|10385001 +sulphur dioxide|10385055 +sulphur hexafluoride|10385117 +sulphur mine|10385211 +sulphur oxide|10385250 +sulphur-crested cockatoo|10384856 +sulphurette|10385292 +sulphuretted|10385341 +sulphuric|10385410 +sulphuric acid|10385462 +sulphurous|10385528 +sultan|10385685 +sultan of swat|10385725 +sultana|10385825 +sultanate|10385887 +sultanate of oman|10385925 +sultrily|10386018 +sultriness|10386045 +sultry|10386077 +sum|10386164 +sum of money|10386746 +sum total|10386802 +sum up|10386882 +sumac|10387128 +sumac family|10387180 +sumach|10387270 +sumatra|10387310 +sumatran|10387342 +sumer|10387402 +sumerian|10387495 +sumerology|10387631 +summa cum laude|10387685 +summarisation|10387717 +summarise|10387769 +summarization|10387906 +summarize|10387958 +summary|10388095 +summary judgement|10388193 +summary judgment|10388327 +summary treatment|10388461 +summate|10388511 +summation|10388641 +summational|10388839 +summative|10388879 +summer|10388919 +summer camp|10388984 +summer cohosh|10389025 +summer crookneck|10389094 +summer cypress|10389161 +summer damask rose|10389271 +summer duck|10389331 +summer flounder|10389391 +summer haw|10389473 +summer house|10389534 +summer hyacinth|10389613 +summer redbird|10389701 +summer savory|10389762 +summer savoury|10389867 +summer school|10389920 +summer snowflake|10389994 +summer solstice|10390085 +summer squash|10390137 +summer squash vine|10390236 +summer stock|10390321 +summer sweet|10390373 +summer tanager|10390465 +summercaters|10390526 +summerhouse|10390571 +summerise|10390616 +summerize|10390682 +summertime|10390748 +summery|10390795 +summing up|10390837 +summit|10390883 +summit meeting|10391111 +summon|10391150 +summoning|10391357 +summons|10391427 +summum bonum|10391761 +sumner|10391797 +sumo|10391854 +sumo wrestler|10391903 +sump|10391951 +sump pump|10392024 +sumpsimus|10392056 +sumpter|10392102 +sumptuary|10392154 +sumptuosity|10392185 +sumptuous|10392252 +sumptuously|10392317 +sumptuousness|10392347 +sun|10392470 +sun bathing|10393208 +sun blocker|10393237 +sun dance|10393302 +sun deck|10393366 +sun gear|10393389 +sun helmet|10393432 +sun king|10393506 +sun lounge|10393574 +sun marigold|10393649 +sun myung moon|10393710 +sun parlor|10393771 +sun parlour|10393846 +sun pitcher|10393921 +sun plant|10393956 +sun porch|10394017 +sun rose|10394092 +sun spurge|10394223 +sun visor|10394303 +sun worshiper|10394328 +sun yat-sen|10394381 +sun yixian|10394457 +sun-drenched|10392737 +sun-dried|10392767 +sun-god|10392796 +sun-ray|10392841 +sun-ray lamp|10393107 +sun-worship|10393168 +sunbaked|10394532 +sunbathe|10394626 +sunbather|10394652 +sunbeam|10394708 +sunbelt|10394812 +sunberry|10394909 +sunblind|10395097 +sunblock|10395138 +sunbonnet|10395203 +sunburn|10395254 +sunburned|10395399 +sunburnt|10395437 +sunburst|10395475 +sunburst pleat|10395538 +sunchoke|10395587 +sunda islands|10395640 +sundacarpus|10395689 +sundacarpus amara|10395757 +sundae|10395861 +sundanese|10395909 +sunday|10395973 +sunday best|10396130 +sunday clothes|10396185 +sunday punch|10396243 +sunday school|10396338 +sunday school class|10396397 +sunday-go-to-meeting|10396060 +sunder|10396463 +sundew|10396521 +sundew family|10396578 +sundew plant|10396665 +sundial|10396722 +sundial lupine|10396760 +sundog|10396862 +sundown|10396926 +sundowner|10396967 +sundries|10397032 +sundrops|10397177 +sundry|10397232 +sunfish|10397380 +sunflower|10397528 +sunflower oil|10397625 +sunflower seed|10397685 +sunflower state|10397721 +sunflower-seed oil|10397565 +sung|10397787 +sung dynasty|10397865 +sunglasses|10397931 +sunhat|10398007 +sunk|10398058 +sunk fence|10398118 +sunken|10398158 +sunken arch|10398292 +sunken garden|10398332 +sunken-eyed|10398239 +sunlamp|10398362 +sunless|10398423 +sunlight|10398478 +sunlit|10398547 +sunna|10398579 +sunnah|10398635 +sunni|10398692 +sunni muslim|10398852 +sunnily|10398957 +sunniness|10398993 +sunnite|10399028 +sunny|10399128 +sunray|10399206 +sunray lamp|10399481 +sunray pleat|10399542 +sunrise|10399591 +sunrise industry|10399808 +sunroof|10399843 +sunroom|10399879 +sunrose|10399954 +sunscreen|10400004 +sunset|10400069 +sunshade|10400201 +sunshine|10400263 +sunshine state|10400450 +sunshine-roof|10400414 +sunshiny|10400531 +sunspot|10400582 +sunstone|10400635 +sunstroke|10400687 +sunstruck|10400769 +sunsuit|10400801 +suntan|10400826 +suntanned|10400895 +suntrap|10400953 +sunup|10400995 +suomi|10401133 +sup|10401250 +super|10401326 +super acid|10401480 +super c|10401591 +super heavyweight|10401710 +superable|10401752 +superabundance|10401796 +superabundant|10401890 +superannuate|10401922 +superannuated|10402007 +superannuation|10402132 +superannuation fund|10402356 +superb|10402417 +superbia|10402464 +superbly|10402510 +superbug|10402607 +supercargo|10402680 +supercharge|10402723 +supercharged|10402816 +supercharger|10402871 +superciliary arch|10402904 +superciliary ridge|10402994 +supercilious|10403084 +superciliously|10403203 +superciliousness|10403245 +supercilium|10403356 +superclass|10403395 +superclass agnatha|10403456 +superclass chelicerata|10403517 +superclass gnathostomata|10403590 +superclass myriapoda|10403669 +supercomputer|10403726 +superconducting supercollider|10403778 +superconductivity|10403826 +supercritical|10403875 +supererogation|10403907 +supererogatory|10403974 +superfamily|10404082 +superfamily aphidoidea|10404144 +superfamily apoidea|10404227 +superfamily coccoidea|10404301 +superfamily hominoidea|10404381 +superfamily lamellicornia|10404453 +superfamily muroidea|10404545 +superfamily muscoidea|10404619 +superfamily platyrrhini|10404699 +superfamily sphecoidea|10404782 +superfamily tineoidea|10404865 +superfamily tyrannidae|10404945 +superfatted|10405023 +superfecta|10405054 +superfecundation|10405084 +superfetate|10405163 +superfetation|10405193 +superficial|10405269 +superficial epigastric vein|10405545 +superficial middle cerebral vein|10405629 +superficial temporal vein|10405711 +superficiality|10405776 +superficies|10405837 +superfine|10405898 +superfluity|10405961 +superfluous|10406050 +superfund|10406199 +superfund program|10406264 +superfund site|10406337 +supergiant|10406419 +supergrass|10406444 +superhet|10406503 +superheterodyne receiver|10406626 +superhigh frequency|10406749 +superhighway|10406798 +superhuman|10406963 +superimpose|10407028 +superimposed|10407100 +superincumbent|10407190 +superinfect|10407226 +superinfection|10407260 +superintend|10407294 +superintendence|10407364 +superintendent|10407444 +superior|10407511 +superior alveolar artery|10408495 +superior cerebellar artery|10408592 +superior cerebral vein|10408664 +superior colliculus|10408746 +superior conjunction|10408815 +superior court|10408867 +superior epigastric veins|10408917 +superior general|10408998 +superior labial artery|10409051 +superior labial vein|10409140 +superior mesenteric artery|10409219 +superior ophthalmic vein|10409293 +superior planet|10409360 +superior pulmonary vein|10409392 +superior rectus|10409481 +superior rectus muscle|10409570 +superior skill|10409659 +superior thalamostriate vein|10409697 +superior thyroid vein|10409755 +superior vena cava|10409814 +superior vocal cord|10409860 +superiority|10410003 +superiority complex|10410252 +superjacent|10410318 +superlative|10410399 +superload|10410579 +superlunar|10410628 +superlunary|10410743 +superman|10410857 +supermarket|10411048 +supermarketeer|10411110 +supermarketer|10411157 +supermex|10411204 +supermodel|10411296 +supermolecule|10411371 +supermom|10411434 +supernal|10411473 +supernatant|10411544 +supernatural|10411589 +supernatural being|10411984 +supernatural virtue|10412035 +supernaturalism|10412099 +supernaturalist|10412169 +supernaturalistic|10412218 +supernaturally|10412267 +supernaturalness|10412306 +supernormal|10412362 +supernova|10412422 +supernumerary|10412446 +superorder|10412624 +superorder acanthopterygii|10412685 +superorder labyrinthodonta|10412777 +superorder labyrinthodontia|10412914 +superorder malacopterygii|10413052 +superorder ratitae|10413141 +superordinate|10413209 +superordinate word|10413355 +superordination|10413411 +superoxide|10413464 +superoxide anion|10413520 +superoxide dismutase|10413563 +superpatriotic|10413604 +superpatriotism|10413713 +superphylum|10413798 +superposable|10413860 +superpose|10413902 +superposition|10414013 +superposition principle|10414264 +superpower|10414353 +supersaturated|10414479 +superscribe|10414526 +superscript|10414566 +superscription|10414658 +supersede|10414723 +supersedure|10414800 +supersensitised|10414856 +supersensitive|10415002 +supersensitized|10415148 +supersession|10415294 +superslasher|10415350 +supersonic|10415394 +superstar|10415464 +superstition|10415582 +superstitious|10415632 +superstitious notion|10415666 +superstring|10415716 +superstructure|10415746 +supersymmetry|10415793 +supertanker|10415834 +supertax|10415889 +supertitle|10415925 +supertonic|10416007 +supertwister|10416050 +supervene|10416088 +supervene upon|10416175 +supervention|10416252 +supervise|10416309 +supervised|10416415 +supervising|10416446 +supervision|10416526 +supervisor|10416606 +supervisor call instruction|10416758 +supervisory|10416812 +supervisory program|10416865 +supervisory routine|10416977 +supervisory software|10417073 +supinate|10417153 +supination|10417176 +supinator|10417219 +supine|10417254 +supper|10417334 +supper club|10417400 +supperless|10417454 +suppertime|10417481 +supping|10417521 +supplant|10417553 +supplanter|10417630 +supplanting|10417677 +supple|10417733 +supplejack|10417895 +supplement|10417929 +supplemental|10418178 +supplementary|10418283 +supplementary benefit|10418387 +supplementation|10418473 +suppleness|10418583 +suppliant|10418687 +supplicant|10418788 +supplicate|10418931 +supplication|10419022 +supplicatory|10419135 +supplied with|10419189 +supplier|10419260 +supply|10419312 +supply chamber|10419606 +supply closet|10419648 +supply line|10419687 +supply officer|10419742 +supply route|10419787 +supply ship|10419842 +supply-side economics|10419530 +supplying|10419875 +support|10419920 +support column|10420933 +support hose|10420971 +support level|10421019 +support payment|10421061 +support stocking|10421094 +support system|10421142 +supportable|10421178 +supported|10421239 +supporter|10421496 +supporters of islam|10421762 +supporting|10421915 +supporting fire|10422010 +supporting players|10422047 +supporting structure|10422126 +supporting tower|10422179 +supportive|10422211 +supposable|10422526 +supposal|10422578 +suppose|10422679 +supposed|10422942 +supposedly|10423208 +supposition|10423239 +suppositional|10423414 +suppositious|10423519 +supposititious|10423624 +suppository|10423729 +suppress|10423796 +suppressant|10424055 +suppressed|10424102 +suppresser|10424249 +suppresser gene|10424408 +suppression|10424491 +suppressive|10424678 +suppressive fire|10424711 +suppressor|10424749 +suppressor gene|10424908 +suppurate|10424991 +suppurating sore|10425075 +suppuration|10425113 +suppurative|10425311 +supra|10425397 +supra expressionism|10425417 +suprainfection|10425460 +supranational|10425494 +supranormal|10425531 +supraocular|10425575 +supraorbital|10425635 +supraorbital ridge|10425695 +supraorbital torus|10425785 +supraorbital vein|10425875 +suprarenal gland|10425952 +suprarenalectomy|10426041 +suprasegmental|10426123 +supratrochlear vein|10426154 +supremacist|10426235 +supremacy|10426294 +suprematism|10426394 +suprematist|10426446 +supreme|10426498 +supreme allied commander atlantic|10426581 +supreme allied commander europe|10426706 +supreme authority|10426826 +supreme being|10426868 +supreme court|10426944 +supreme court of the united states|10427122 +supreme headquarters|10427257 +supreme headquarters allied powers europe|10427319 +supreme truth|10427452 +supremo|10427581 +sur|10427680 +sura|10427736 +surbase|10427814 +surcease|10427848 +surcharge|10427886 +surcoat|10428148 +surd|10428183 +sure|10428258 +sure as shooting|10428762 +sure enough|10428857 +sure thing|10428937 +sure-enough|10428632 +sure-fire|10428703 +sure-handed|10428733 +surefooted|10428995 +surely|10429056 +sureness|10429136 +surety|10429253 +surety bond|10429517 +surf|10429577 +surf casting|10429714 +surf fish|10429762 +surf fishing|10429972 +surface|10430020 +surface area|10430898 +surface assimilation|10430940 +surface fire|10430990 +surface gage|10431024 +surface gauge|10431086 +surface lift|10431148 +surface mail|10431192 +surface mine|10431219 +surface noise|10431351 +surface search radar|10431404 +surface ship|10431446 +surface soil|10431499 +surface tension|10431539 +surface-active|10430433 +surface-active agent|10430464 +surface-assimilative|10430541 +surface-mine|10430620 +surface-to-air|10430752 +surface-to-air missile|10430791 +surface-to-air missile system|10430842 +surfacing|10431584 +surfactant|10431630 +surfbird|10431707 +surfboard|10431778 +surfboarder|10431803 +surfboarding|10431854 +surfboat|10431916 +surfeit|10431939 +surfeited|10432159 +surfer|10432208 +surffish|10432259 +surficial|10432389 +surfing|10432413 +surfperch|10432475 +surfriding|10432545 +surge|10432607 +surge protector|10432971 +surge suppressor|10433086 +surgeon|10433201 +surgeon general|10433309 +surgeon's knot|10433280 +surgeonfish|10433424 +surgery|10433477 +surgical|10433687 +surgical contraception|10433801 +surgical dressing|10433896 +surgical gown|10433949 +surgical incision|10433992 +surgical instrument|10434048 +surgical knife|10434096 +surgical operation|10434146 +surgical procedure|10434246 +surgical process|10434346 +surgical seam|10434446 +surgical spirit|10434481 +surgical strike|10434524 +surging|10434556 +suricata|10434598 +suricata suricatta|10434653 +suricata tetradactyla|10434739 +suricate|10434817 +surinam|10434873 +surinam cherry|10435005 +surinam river|10435256 +surinam toad|10435314 +suriname|10435390 +suriname river|10435523 +surinamese monetary unit|10435582 +surlily|10435655 +surliness|10435682 +surly|10435781 +surmisable|10435813 +surmisal|10435865 +surmise|10435956 +surmontil|10436125 +surmount|10436232 +surmountable|10436484 +surmounted|10436579 +surmounter|10436603 +surmullet|10436663 +surname|10436727 +surnia|10436780 +surnia ulula|10436827 +surpass|10436912 +surpassing|10437144 +surplice|10437249 +surpliced|10437276 +surplus|10437308 +surplusage|10437500 +surprint|10437594 +surprisal|10437628 +surprise|10437680 +surprise attack|10437877 +surprised|10437945 +surpriser|10438141 +surprising|10438176 +surprisingly|10438268 +surprisingness|10438313 +surreal|10438370 +surrealism|10438468 +surrealist|10438519 +surrealistic|10438562 +surrebuttal|10438636 +surrebutter|10438678 +surrejoinder|10438720 +surrender|10438751 +surrendered|10439004 +surrenderer|10439044 +surreptitious|10439126 +surreptitiously|10439332 +surrey|10439365 +surrogate|10439424 +surrogate mother|10439570 +surround|10439617 +surrounded|10439975 +surrounding|10440014 +surroundings|10440054 +sursum corda|10440204 +surtax|10440235 +surtitle|10440282 +surtout|10440364 +surveil|10440408 +surveillance|10440439 +surveillance of disease|10440494 +surveillance system|10440540 +survey|10440595 +surveying|10440955 +surveying instrument|10441016 +surveyor|10441079 +surveyor's instrument|10441165 +surveyor's level|10441228 +survival|10441297 +survival of the fittest|10441495 +survivalist|10441612 +survive|10441686 +surviving|10441883 +survivor|10441916 +survivor guilt|10442090 +survivors insurance|10442164 +survivorship annuity|10442209 +surya|10442274 +sus|10442307 +sus scrofa|10442347 +susa|10442448 +susah|10442514 +susan anthony|10442581 +susan b anthony dollar|10442776 +susan b. anthony|10442677 +susan brownell anthony|10442838 +susan sontag|10442943 +susanna|10442999 +susceptibility|10443045 +susceptible|10443102 +susceptibleness|10443539 +sushi|10443596 +sushi bar|10443616 +susian|10443639 +susiana|10443703 +suslik|10443805 +suspect|10443882 +suspected|10444181 +suspend|10444210 +suspended|10444458 +suspended animation|10444531 +suspender|10444604 +suspender belt|10444678 +suspense|10444727 +suspense account|10444882 +suspenseful|10444945 +suspension|10445009 +suspension bridge|10445335 +suspension point|10445374 +suspension system|10445439 +suspensive|10445495 +suspensor|10445577 +suspensory|10445659 +suspensory bandage|10445712 +suspicion|10445765 +suspicious|10446030 +suspiciousness|10446148 +suspiration|10446216 +suspire|10446265 +susquehanna|10446354 +susquehanna river|10446411 +suss out|10446474 +sussex|10446605 +sussex spaniel|10446700 +sussex university|10446747 +sustain|10446824 +sustainability|10447154 +sustainable|10447187 +sustained|10447216 +sustainer|10447305 +sustaining pedal|10447398 +sustaining program|10447471 +sustainment|10447527 +sustenance|10447599 +sustentacular|10447818 +sustentation|10447848 +susurrant|10447920 +susurrate|10447965 +susurration|10447991 +susurrous|10448080 +susurrus|10448132 +sutherland|10448168 +sutler|10448244 +sutra|10448311 +suttee|10448346 +sutura|10448405 +sutura coronalis|10448473 +sutura frontalis|10448542 +sutura intermaxillaris|10448611 +sutura internasalis|10448693 +sutura lamboidea|10448768 +sutura sagittalis|10448837 +sutural bone|10448929 +suture|10448972 +suturing|10449097 +suva|10449132 +suzerain|10449168 +suzerainty|10449250 +svalbard|10449311 +svante august arrhenius|10449350 +svedberg|10449435 +svelte|10449555 +svengali|10449681 +sverdrup|10449793 +sverige|10449862 +svizzera|10449953 +svr|10450060 +sw|10450166 +swab|10450221 +swabbing|10450340 +swad|10450391 +swaddle|10450436 +swaddling bands|10450465 +swaddling clothes|10450516 +swadust mushroom|10450585 +swag|10450633 +swage|10450852 +swage block|10450924 +swagger|10450951 +swagger stick|10451210 +swaggerer|10451238 +swaggering|10451282 +swaggie|10451410 +swagman|10451453 +swahili|10451496 +swain|10451544 +swainsona|10451612 +swainsona galegifolia|10451675 +swainsona grandiflora|10451771 +swainsona greyana|10451884 +swallow|10451993 +swallow dive|10452754 +swallow hole|10452798 +swallow shrike|10452864 +swallow up|10452920 +swallow wort|10452992 +swallow-tailed|10452502 +swallow-tailed coat|10452543 +swallow-tailed hawk|10452604 +swallow-tailed kite|10452679 +swallowed|10453150 +swallowtail|10453197 +swallowwort|10453258 +swami|10453404 +swammerdam|10453432 +swamp|10453520 +swamp ash|10453642 +swamp azalea|10453695 +swamp bay|10453788 +swamp birch|10453859 +swamp blackberry|10453976 +swamp blueberry|10454074 +swamp buggy|10454179 +swamp candleberry|10454241 +swamp candles|10454329 +swamp chestnut oak|10454386 +swamp cottonwood|10454445 +swamp cypress|10454546 +swamp dewberry|10454644 +swamp fever|10454742 +swamp fly honeysuckle|10454803 +swamp gum|10454895 +swamp hare|10454965 +swamp hickory|10455071 +swamp honeysuckle|10455190 +swamp horsetail|10455283 +swamp laurel|10455355 +swamp lily|10455479 +swamp locust|10455577 +swamp mallow|10455650 +swamp maple|10455750 +swamp milkweed|10455813 +swamp oak|10455875 +swamp pine|10456036 +swamp plant|10456081 +swamp poplar|10456179 +swamp rabbit|10456280 +swamp red oak|10456466 +swamp rose mallow|10456541 +swamp sparrow|10456641 +swamp sunflower|10456702 +swamp white oak|10456773 +swamp willow|10456834 +swamped|10456900 +swamphen|10457016 +swampland|10457077 +swampy|10457110 +swampy beggar-ticks|10457175 +swan|10457285 +swan dive|10457896 +swan orchid|10457940 +swan river daisy|10458029 +swan river everlasting|10458103 +swan song|10458240 +swan's down|10457480 +swan-flower|10457556 +swan-neck|10457726 +swanflower|10458283 +swank|10458372 +swanky|10458549 +swanneck|10458591 +swansea|10458680 +swanson|10458739 +swap|10458817 +swap file|10458954 +swap space|10459006 +sward|10459058 +swarm|10459110 +swarming|10459262 +swart|10459342 +swarthiness|10459400 +swarthy|10459474 +swash|10459532 +swashbuckler|10459850 +swashbuckling|10459938 +swastika|10460062 +swat|10460131 +swat squad|10460161 +swat team|10460282 +swatch|10460402 +swath|10460451 +swathe|10460502 +swathing|10460561 +swatter|10460588 +sway|10460648 +swayback|10460869 +swaybacked|10460920 +swayer|10460971 +swazi|10461046 +swaziland|10461137 +swaziland monetary unit|10461218 +swbs|10461289 +swbw|10461347 +swear|10461404 +swear in|10461631 +swear off|10461669 +swear out|10461703 +swearer|10461744 +swearing|10461792 +swearword|10461901 +sweat|10461976 +sweat bag|10462217 +sweat duct|10462240 +sweat equity|10462277 +sweat gland|10462306 +sweat off|10462372 +sweat pants|10462450 +sweat room|10462486 +sweat sock|10462557 +sweat suit|10462609 +sweatband|10462748 +sweatbox|10462784 +sweater|10462843 +sweater girl|10462938 +sweating|10463005 +sweating sickness|10463148 +sweats|10463230 +sweatshirt|10463483 +sweatshop|10463521 +sweatsuit|10463585 +sweaty|10463643 +swede|10463683 +sweden|10463867 +swedenborg|10463957 +swedish|10464079 +swedish iron|10464246 +swedish krona|10464294 +swedish massage|10464359 +swedish meatball|10464408 +swedish mile|10464460 +swedish monetary unit|10464512 +swedish nightingale|10464579 +swedish rye|10464652 +swedish rye bread|10464713 +swedish turnip|10464780 +sweeney todd|10464948 +sweep|10465039 +sweep away|10465588 +sweep hand|10465678 +sweep oar|10465723 +sweep off|10465752 +sweep over|10465809 +sweep through|10465928 +sweep under the rug|10466025 +sweep up|10466067 +sweep-second|10465543 +sweeper|10466163 +sweeping|10466268 +sweepstake|10466407 +sweepstakes|10466455 +sweet|10466537 +sweet acacia|10467795 +sweet alison|10467909 +sweet almond|10467971 +sweet almond oil|10468062 +sweet alyssum|10468124 +sweet balm|10468186 +sweet basil|10468288 +sweet bay|10468363 +sweet bells|10468434 +sweet birch|10468485 +sweet buckeye|10468561 +sweet calabash|10468630 +sweet calamus|10468730 +sweet cassava|10468842 +sweet cherry|10468895 +sweet chestnut|10468976 +sweet cicely|10469074 +sweet cider|10469179 +sweet clover|10469212 +sweet coltsfoot|10469279 +sweet corn|10469413 +sweet corn plant|10469587 +sweet cup|10469726 +sweet elder|10469800 +sweet false chamomile|10469895 +sweet fanny adams|10470022 +sweet fern|10470177 +sweet flag|10470359 +sweet four o'clock|10470471 +sweet gale|10470543 +sweet goldenrod|10470598 +sweet granadilla|10470666 +sweet grass|10470757 +sweet gum|10470815 +sweet gum tree|10470993 +sweet lemon|10471098 +sweet lime|10471188 +sweet marjoram|10471278 +sweet melon|10471365 +sweet melon vine|10471466 +sweet nothings|10471544 +sweet oil|10471591 +sweet orange|10471628 +sweet orange tree|10471717 +sweet pea|10471792 +sweet pepper|10471924 +sweet pepper plant|10472123 +sweet pepperbush|10472263 +sweet pickle|10472355 +sweet potato|10472384 +sweet potato vine|10472525 +sweet reseda|10472595 +sweet rocket|10472650 +sweet roll|10472727 +sweet sand verbena|10472768 +sweet scabious|10472873 +sweet shrub|10472970 +sweet sorghum|10473072 +sweet sultan|10473130 +sweet talk|10473280 +sweet talker|10473335 +sweet tooth|10473426 +sweet unicorn plant|10473476 +sweet vermouth|10473566 +sweet vetch|10473616 +sweet violet|10473674 +sweet wattle|10473746 +sweet white violet|10473860 +sweet william|10473943 +sweet woodruff|10474015 +sweet wormwood|10474144 +sweet-birch oil|10467287 +sweet-faced|10467351 +sweet-potato ring rot|10467378 +sweet-potato whitefly|10467423 +sweet-scented|10467463 +sweet-scented geranium|10467553 +sweet-smelling|10467631 +sweet-talk|10467721 +sweetbread|10474193 +sweetbreads|10474245 +sweetbriar|10474335 +sweetbrier|10474409 +sweeten|10474483 +sweetened|10474569 +sweetener|10474609 +sweetening|10474750 +sweetheart|10474887 +sweetie|10475072 +sweetish|10475122 +sweetleaf|10475146 +sweetleaf family|10475210 +sweetly|10475302 +sweetmeat|10475324 +sweetness|10475374 +sweetness and light|10475629 +sweetpea|10475723 +sweetsop|10475774 +sweetsop tree|10475893 +sweetwood bark|10475974 +swell|10476033 +swell up|10476539 +swelled|10476595 +swelled head|10476635 +swellhead|10476696 +swelling|10476768 +swelter|10476906 +sweltering|10476959 +sweltry|10476991 +swept|10477023 +sweptback|10477064 +sweptwing|10477115 +swertia|10477140 +swertia perennia|10477210 +swertia speciosa|10477289 +swerve|10477385 +swerving|10477504 +swietinia|10477550 +swietinia macrophylla|10477613 +swietinia mahogani|10477707 +swift|10477825 +swiftlet|10478071 +swiftly|10478118 +swiftness|10478142 +swig|10478186 +swill|10478297 +swill down|10478408 +swilling|10478447 +swim|10478511 +swim bladder|10478623 +swim meet|10478661 +swimmer|10478714 +swimmer's itch|10478785 +swimmeret|10478843 +swimming|10478897 +swimming bath|10478995 +swimming cap|10479066 +swimming costume|10479104 +swimming crab|10479176 +swimming event|10479204 +swimming hole|10479234 +swimming kick|10479267 +swimming meet|10479303 +swimming pool|10479356 +swimming stroke|10479427 +swimming trunks|10479459 +swimmingly|10479554 +swimsuit|10479582 +swinburne|10479654 +swindle|10479715 +swindler|10479848 +swine|10479981 +swine flu|10480046 +swine influenza|10480102 +swineherd|10480158 +swing|10480207 +swing about|10480883 +swing around|10480934 +swing door|10480985 +swing music|10481024 +swing out|10481061 +swing over|10481105 +swing shift|10481155 +swing voter|10481219 +swinge|10481269 +swingeing|10481311 +swinger|10481334 +swinging|10481405 +swinging chad|10481513 +swinging door|10481541 +swinging post|10481580 +swingletree|10481625 +swingy|10481679 +swinish|10481741 +swipe|10481862 +swirl|10481996 +swirling|10482154 +swish|10482188 +swishing|10482281 +swishy|10482312 +swiss|10482343 +swiss canton|10482461 +swiss chard|10482533 +swiss cheese|10482735 +swiss confederation|10482777 +swiss franc|10482895 +swiss mountain pine|10482934 +swiss people|10483074 +swiss pine|10483154 +swiss roll|10483268 +swiss steak|10483321 +swiss stone pine|10483359 +switch|10483479 +switch cane|10484348 +switch engine|10484405 +switch grass|10484497 +switch off|10484548 +switch on|10484608 +switch over|10484653 +switch-hit|10484144 +switch-hitter|10484168 +switch-ivy|10484253 +switchblade|10484722 +switchblade knife|10484798 +switchboard|10484874 +switchboard operator|10484952 +switcher|10485034 +switcheroo|10485070 +switching|10485113 +switchman|10485152 +swither|10485192 +switzerland|10485242 +swivel|10485352 +swivel chair|10485403 +swivel pin|10485431 +swiz|10485473 +swizzle|10485505 +swizzle stick|10485534 +swob|10485563 +swollen|10485665 +swollen-headed|10485894 +swoon|10485984 +swooning|10486100 +swoop|10486164 +swoop up|10486330 +swoosh|10486376 +swop|10486417 +sword|10486523 +sword bean|10486704 +sword cane|10486748 +sword dance|10486785 +sword dancing|10486844 +sword fern|10486903 +sword grass|10486928 +sword knot|10486955 +sword lily|10486982 +sword of damocles|10487085 +sword stick|10487157 +sword-cut|10486581 +sword-shaped|10486624 +swordfish|10487194 +swordlike|10487276 +swordplay|10487356 +swordsman|10487387 +swordsmanship|10487460 +swordtail|10487539 +sworn|10487608 +swosh|10487660 +swot|10487701 +swot up|10487848 +swung dash|10487938 +sybarite|10487987 +sybaritic|10488027 +sycamore|10488098 +sycamore fig|10488278 +syconium|10488347 +sycophancy|10488404 +sycophant|10488462 +sycophantic|10488521 +sydenham|10488592 +sydenham's chorea|10488694 +sydney|10488780 +sydney harbor bridge|10488817 +sydney pollack|10488886 +sydney silky|10488980 +syllabary|10489037 +syllabic|10489079 +syllabic script|10489286 +syllabicate|10489328 +syllabication|10489395 +syllabicity|10489443 +syllabification|10489480 +syllabify|10489528 +syllabise|10489595 +syllabize|10489732 +syllable|10489869 +syllable structure|10489917 +syllabled|10489997 +syllabub|10490025 +syllabus|10490095 +syllepsis|10490175 +syllogise|10490201 +syllogiser|10490257 +syllogism|10490319 +syllogist|10490378 +syllogistic|10490440 +syllogize|10490500 +syllogizer|10490556 +sylph|10490618 +sylphlike|10490694 +sylva|10490775 +sylvan|10490830 +sylvanite|10490900 +sylvanus|10490945 +sylvia communis|10490993 +sylvia curruca|10491074 +sylvia plath|10491152 +sylvian aqueduct|10491212 +sylvian fissure|10491327 +sylviidae|10491443 +sylviinae|10491501 +sylvilagus|10491562 +sylvilagus aquaticus|10491623 +sylvilagus floridanus|10491750 +sylvilagus palustris|10491863 +sylvine|10491979 +sylvite|10492012 +symbion pandora|10492045 +symbiosis|10492099 +symbiotic|10492170 +symbol|10492199 +symbol-worship|10492321 +symbolatry|10492406 +symbolic|10492491 +symbolic logic|10492611 +symbolic representation|10492704 +symbolical|10492797 +symbolisation|10492902 +symbolise|10493106 +symboliser|10493201 +symbolising|10493265 +symbolism|10493309 +symbolist|10493425 +symbolization|10493519 +symbolize|10493723 +symbolizer|10493818 +symbolizing|10493882 +symbololatry|10493926 +symmetric|10494011 +symmetrical|10494270 +symmetricalness|10494582 +symmetrise|10494667 +symmetrize|10494718 +symmetry|10494769 +symonds|10494942 +symons|10495004 +sympathectomy|10495046 +sympathetic|10495111 +sympathetic nervous system|10495410 +sympathetic strike|10495478 +sympathetic vibration|10495543 +sympathetically|10495596 +sympathise|10495662 +sympathiser|10495845 +sympathize|10495986 +sympathize with|10496169 +sympathizer|10496249 +sympathomimetic|10496390 +sympathy|10496425 +sympathy card|10496544 +sympathy strike|10496572 +sympatric|10496637 +sympatry|10496666 +sympetalous|10496695 +symphalangus|10496755 +symphalangus syndactylus|10496822 +symphilid|10496922 +symphonic|10497009 +symphonic music|10497064 +symphonic poem|10497105 +symphonious|10497197 +symphonise|10497239 +symphonize|10497275 +symphony|10497311 +symphony orchestra|10497388 +symphoricarpos|10497435 +symphoricarpos alba|10497515 +symphoricarpos orbiculatus|10497672 +symphyla|10497772 +symphysion|10497820 +symphysis|10497859 +symphytum|10497929 +symphytum officinale|10497986 +symplocaceae|10498076 +symplocarpus|10498181 +symplocarpus foetidus|10498265 +symploce|10498393 +symplocus|10498422 +symplocus paniculata|10498498 +symplocus tinctoria|10498598 +symposium|10498682 +symptom|10498712 +symptomatic|10498773 +symptomatic of|10498858 +symptomless|10498920 +synaeresis|10498959 +synaesthesia|10499074 +synaesthetic|10499164 +synagogue|10499253 +synagrops|10499353 +synagrops bellus|10499409 +synanceja|10499477 +synanceja verrucosa|10499533 +synapse|10499619 +synapsid|10499681 +synapsid reptile|10499734 +synapsida|10499787 +synapsis|10499841 +synaptic|10499894 +synaptomys|10499956 +synaptomys borealis|10500017 +synaptomys cooperi|10500095 +sync|10500171 +syncarp|10500228 +syncarpous|10500282 +syncategorem|10500313 +syncategorematic|10500354 +syncategoreme|10500409 +synchro|10500450 +synchrocyclotron|10500481 +synchroflash|10500517 +synchromesh|10500546 +synchronal|10500574 +synchroneity|10500842 +synchronic|10500964 +synchronic linguistics|10501293 +synchronicity|10501361 +synchronisation|10501483 +synchronise|10501743 +synchronised|10502103 +synchroniser|10502172 +synchronising|10502290 +synchronism|10502396 +synchronization|10502518 +synchronize|10502778 +synchronized|10503138 +synchronizer|10503207 +synchronizing|10503325 +synchronoscope|10503589 +synchronous|10503707 +synchronous converter|10504006 +synchronous motor|10504082 +synchronous operation|10504124 +synchrony|10504165 +synchroscope|10504287 +synchrotron|10504405 +synchytriaceae|10504436 +synchytrium|10504511 +synchytrium endobioticum|10504575 +synclinal|10504660 +syncopate|10504689 +syncopated|10504730 +syncopation|10504770 +syncopator|10504859 +syncope|10504901 +syncretic|10504994 +syncretical|10505123 +syncretise|10505250 +syncretism|10505390 +syncretistic|10505442 +syncretistical|10505568 +syncretize|10505692 +syncytium|10505832 +syndactylism|10505861 +syndactyly|10505987 +syndetic|10506113 +syndic|10506140 +syndicalism|10506176 +syndicalist|10506216 +syndicate|10506264 +syndication|10506558 +syndicator|10506644 +syndrome|10506691 +synecdoche|10506742 +synecdochic|10506798 +synecdochical|10506855 +synechia|10506912 +synentognathi|10506939 +synercus|10507009 +synercus caffer|10507079 +syneresis|10507159 +synergetic|10507275 +synergism|10507319 +synergist|10507440 +synergistic|10507464 +synergy|10507585 +synesthesia|10507659 +synesthetic|10507749 +synesthetic metaphor|10507838 +synezesis|10507877 +synge|10507941 +syngnathidae|10508051 +syngnathus|10508118 +syngnathus hildebrandi|10508177 +syngonium|10508267 +synizesis|10508342 +synod|10508406 +synodic month|10508429 +synodontidae|10508484 +synoecious|10508551 +synoicous|10508612 +synonym|10508673 +synonym finder|10508711 +synonymist|10508754 +synonymity|10508801 +synonymous|10508863 +synonymousness|10508916 +synonymy|10508978 +synopsis|10509040 +synoptic|10509090 +synoptical|10509138 +synovia|10509172 +synovial|10509214 +synovial fluid|10509241 +synovial joint|10509283 +synovial membrane|10509373 +synovitis|10509431 +synovium|10509477 +synsemantic|10509535 +synset|10509573 +syntactic|10509593 +syntactic category|10509631 +syntactical|10509702 +syntactically independent|10509740 +syntactician|10509784 +syntagm|10509847 +syntagma|10509919 +syntagmatic|10509991 +syntax|10510070 +syntax checker|10510168 +syntax error|10510246 +syntax language|10510301 +synthesis|10510339 +synthesise|10510558 +synthesiser|10510606 +synthesist|10510714 +synthesize|10510781 +synthesizer|10510843 +synthetic|10510951 +synthetic cubism|10511256 +synthetic fiber|10511289 +synthetic heroin|10511341 +synthetic resin|10511449 +synthetic rubber|10511494 +synthetic thinking|10511563 +synthetical|10511645 +synthetism|10511724 +syph|10511750 +syphilis|10511884 +syphilitic|10512018 +syphon|10512188 +syracuse|10512262 +syria|10512534 +syrian|10512603 +syrian arab republic|10512680 +syrian bean caper|10512764 +syrian bear|10512850 +syrian hamster|10512935 +syrian monetary unit|10513018 +syrian pound|10513083 +syringa|10513145 +syringa amurensis japonica|10513271 +syringa emodi|10513379 +syringa josikaea|10513438 +syringa josikea|10513519 +syringa persica|10513599 +syringa reticulata|10513660 +syringa villosa|10513760 +syringa vulgaris|10513822 +syringe|10513884 +syrinx|10513933 +syrrhaptes|10514079 +syrrhaptes paradoxus|10514138 +syrup|10514232 +syrupy|10514274 +system|10514373 +system administrator|10514675 +system call|10514730 +system clock|10514784 +system command|10514837 +system error|10514883 +system of logic|10514948 +system of macrophages|10515017 +system of measurement|10515088 +system of numeration|10515150 +system of rules|10515263 +system of weights|10515302 +system of weights and measures|10515365 +system program|10515434 +systema alimentarium|10515545 +systema digestorium|10515643 +systema lymphaticum|10515741 +systema nervosum|10515803 +systema nervosum centrale|10515851 +systema nervosum periphericum|10515920 +systema respiratorium|10515992 +systema skeletale|10516049 +systema urogenitale|10516114 +systematic|10516290 +systematic desensitisation|10516410 +systematic desensitization|10516616 +systematically|10516822 +systematics|10516858 +systematisation|10516909 +systematise|10517008 +systematised|10517067 +systematiser|10517113 +systematism|10517219 +systematist|10517257 +systematization|10517416 +systematize|10517515 +systematized|10517574 +systematizer|10517620 +systeme international|10517726 +systeme international d'unites|10517888 +systemic|10518059 +systemic circulation|10518085 +systemic lupus erythematosus|10518127 +systemise|10518208 +systemiser|10518267 +systemize|10518373 +systemizer|10518432 +systems analysis|10518538 +systems analyst|10518591 +systems program|10518624 +systems software|10518828 +systole|10518939 +systolic|10518987 +systolic murmur|10519035 +systolic pressure|10519095 +syzygium|10519137 +syzygium aromaticum|10519210 +syzygy|10519329 +szechuan|10519365 +szechwan|10519442 +szechwan province|10519519 +szell|10519605 +szent-gyorgyi|10519673 +szilard|10519767 +t|10519842 +t cell|10521411 +t hinge|10521469 +t lymphocyte|10521525 +t'ai chi|10520201 +t'ai chi chuan|10520268 +t'ien-ching|10520335 +t-bar|10520414 +t-bar lift|10520471 +t-bill|10520533 +t-bone steak|10520602 +t-junction|10520647 +t-man|10520687 +t-network|10520725 +t-scope|10520798 +t-shaped|10520851 +t-shirt|10520885 +t-square|10520933 +t. e. lawrence|10520987 +t. h. white|10521099 +t. s. eliot|10521171 +t.b.|10521257 +ta|10521589 +ta'ziyeh|10521653 +taal|10521686 +tab|10521750 +tab key|10521933 +tabanidae|10521958 +tabard|10522021 +tabasco|10522043 +tabasco pepper|10522121 +tabasco plant|10522228 +tabasco sauce|10522335 +tabbouleh|10522390 +tabby|10522423 +tabby cat|10522607 +tabernacle|10522684 +tabernacles|10522855 +tabernaemontana|10523125 +tabernaemontana divaricate|10523219 +tabes|10523410 +tabes dorsalis|10523454 +tabi|10523509 +tabis|10523534 +tablature|10523576 +table|10523612 +table d'hote|10524222 +table game|10524317 +table knife|10524342 +table lamp|10524392 +table lifting|10524417 +table linen|10524534 +table mat|10524568 +table mustard|10524599 +table napkin|10524640 +table of contents|10524698 +table rapping|10524767 +table salt|10524871 +table service|10524967 +table talk|10525008 +table tapping|10525041 +table tennis|10525145 +table tilting|10525188 +table tipping|10525305 +table turning|10525422 +table wine|10525539 +table-mountain pine|10523923 +table-tennis bat|10524017 +table-tennis racquet|10524087 +table-tennis table|10524157 +tableau|10525569 +tableau vivant|10525662 +tablecloth|10525706 +tablefork|10525745 +tableland|10525769 +tablemate|10525812 +tablespoon|10525854 +tablespoonful|10525914 +tablet|10525961 +tablet-armed chair|10526057 +tabletop|10526091 +tableware|10526122 +tabloid|10526146 +taboo|10526254 +tabooli|10526432 +tabor|10526465 +tabor pipe|10526513 +tabora|10526559 +taboret|10526611 +tabour|10526643 +tabouret|10526691 +tabriz|10526723 +tabu|10526775 +tabuk|10526940 +tabula rasa|10526990 +tabular|10527089 +tabular array|10527147 +tabular matter|10527182 +tabularise|10527234 +tabularize|10527286 +tabulate|10527338 +tabulation|10527408 +tabulator|10527495 +tabun|10527553 +tacamahac|10527599 +tacca|10527682 +tacca leontopetaloides|10527736 +tacca pinnatifida|10527852 +taccaceae|10527963 +tach|10528031 +tacheometer|10528111 +tachina fly|10528162 +tachinidae|10528187 +tachistoscope|10528253 +tachogram|10528306 +tachograph|10528348 +tachometer|10528384 +tachycardia|10528464 +tachyglossidae|10528515 +tachyglossus|10528590 +tachylite|10528657 +tachymeter|10528691 +tachypleus|10528742 +tacit|10528806 +tacit consent|10528867 +taciturn|10528939 +taciturnity|10529039 +taciturnly|10529098 +tack|10529144 +tack hammer|10529663 +tack on|10529691 +tack together|10529742 +tacker|10529837 +tackiness|10529916 +tacking|10529970 +tackle|10530037 +tackler|10530320 +tackling|10530364 +tacky|10530462 +taco|10530584 +taco sauce|10530634 +tacoma|10530664 +tacoma narrows bridge|10530716 +taconite|10530787 +tact|10530820 +tactful|10530891 +tactfulness|10530989 +tactic|10531060 +tactical|10531110 +tactical intelligence|10531159 +tactical maneuver|10531268 +tactical manoeuvre|10531338 +tactical warning|10531408 +tactician|10531442 +tactics|10531487 +tactile|10531569 +tactile agnosia|10531661 +tactile property|10531708 +tactile sensation|10531748 +tactility|10531834 +tactless|10532046 +tactlessness|10532160 +tactual|10532232 +tactual exploration|10532324 +tactual sensation|10532399 +tactually|10532677 +tad|10532706 +tadarida|10532775 +tadarida brasiliensis|10532830 +tadeus reichstein|10532954 +tadeusz andrzej bonawentura kosciuszko|10533018 +tadirida femorosacca|10533173 +tadjik|10533299 +tadorna|10533410 +tadpole|10533460 +tadpole shrimp|10533501 +tadzhik|10533574 +tadzhikistan|10533815 +tae kwon do|10533932 +taegu|10533965 +tael|10534020 +taenia|10534053 +taeniidae|10534115 +taffeta|10534173 +taffeta weave|10534220 +taffrail|10534261 +taffrail log|10534292 +taffy|10534339 +taffy apple|10534360 +taft|10534465 +tag|10534664 +tag along|10534953 +tag end|10534982 +tag line|10535053 +tag on|10535107 +tagalog|10535158 +tagalong|10535227 +tagamet|10535264 +tagasaste|10535371 +tagetes erecta|10535444 +tagetes patula|10535537 +tageteste|10535601 +tagged|10535664 +tagliatelle|10535697 +taguan|10535741 +tagus|10535828 +tagus river|10535867 +tahini|10535912 +tahiti|10535941 +tahitian|10535971 +tahoka daisy|10536081 +tai|10536172 +tai chi|10536370 +tai chi chuan|10536437 +tai dam|10536504 +tai long|10536543 +tai lue|10536579 +tai nuea|10536626 +tai yuan|10536681 +taichung|10536766 +taif|10536822 +tail|10536870 +tail assembly|10537574 +tail bone|10537622 +tail coat|10537656 +tail end|10537876 +tail feather|10538141 +tail fin|10538205 +tail gate|10538451 +tail lamp|10538506 +tail rotor|10538561 +tail-flower|10537440 +tailback|10538605 +tailboard|10538640 +tailcoat|10538673 +tailed|10538812 +tailed frog|10538845 +tailed toad|10538963 +tailfin|10539081 +tailflower|10539225 +tailgate|10539278 +tailgater|10539325 +tailing|10539351 +tailless|10539429 +tailless tenrec|10539472 +taillight|10539529 +taillike|10539584 +tailor|10539626 +tailor's chalk|10539790 +tailor's tack|10539820 +tailor-made|10539850 +tailor-make|10539952 +tailorbird|10540057 +tailored|10540128 +tailoring|10540248 +tailpiece|10540279 +tailpipe|10540308 +tailplane|10540345 +tailrace|10540449 +tails|10540488 +tailspin|10541113 +tailstock|10541197 +tailwind|10541224 +tailwort|10541274 +taimyr peninsula|10541340 +taint|10541410 +tainted|10541566 +taipan|10541677 +taipeh|10541735 +taipei|10541800 +taira|10541865 +taiwan|10541935 +taiwan dollar|10542036 +taiwanese|10542080 +taiyuan|10542238 +taj mahal|10542292 +tajik|10542331 +tajiki|10542570 +tajikistan|10542632 +tajikistani|10542747 +tajikistani monetary unit|10542806 +taka|10542881 +takahe|10542921 +takakkaw|10542969 +takayasu's arteritis|10543012 +take|10543091 +take a bow|10545247 +take a breath|10545285 +take a breather|10545332 +take a chance|10545410 +take a crap|10545522 +take a dare|10545620 +take a dive|10545691 +take a firm stand|10545748 +take a hit|10545782 +take a hop|10545822 +take a joke|10545928 +take a leak|10546035 +take a look|10546203 +take a powder|10546252 +take a shit|10546310 +take aback|10546408 +take account|10546486 +take advantage|10546550 +take after|10546636 +take aim|10546701 +take apart|10546750 +take arms|10546918 +take away|10546964 +take back|10547235 +take care|10547410 +take chances|10547512 +take charge|10547624 +take control|10547678 +take down|10547732 +take effect|10547999 +take exception|10548034 +take fire|10548075 +take five|10548156 +take flight|10548196 +take for|10548346 +take for granted|10548414 +take form|10548473 +take heart|10548522 +take heed|10548582 +take hold|10548656 +take hold of|10548722 +take home|10548776 +take in|10548868 +take in charge|10549520 +take in vain|10549576 +take in water|10549619 +take into account|10549653 +take issue|10549737 +take it easy|10549781 +take it on the chin|10549863 +take kindly to|10549915 +take leave|10549970 +take lying down|10550025 +take note|10550136 +take notice|10550168 +take off|10550206 +take office|10550698 +take on|10550733 +take one's lumps|10550940 +take orders|10550986 +take out|10551012 +take over|10551677 +take pains|10551952 +take part|10552010 +take place|10552050 +take pride|10552127 +take root|10552177 +take shape|10552252 +take stage|10552301 +take stock|10552336 +take ten|10552398 +take the air|10552437 +take the bull by the horns|10552488 +take the cake|10552538 +take the count|10552565 +take the field|10552606 +take the fifth|10552700 +take the fifth amendment|10552772 +take the floor|10552854 +take the road|10552912 +take the stage|10552940 +take the stand|10552975 +take the veil|10553035 +take time by the forelock|10553066 +take time off|10553110 +take to|10553177 +take to be|10553219 +take to heart|10553322 +take to the woods|10553373 +take turns|10553525 +take up|10553564 +take up arms|10554067 +take water|10554113 +take-away|10545020 +take-home|10545056 +take-home pay|10545084 +take-in|10545145 +take-up|10545205 +takeaway|10554187 +takedown|10554292 +takelma|10554362 +taken|10554429 +taken for granted|10554626 +taken over|10554723 +taken up|10554802 +taken with|10554859 +takeoff|10554947 +takeoff booster|10555194 +takeoff rocket|10555309 +takeout|10555424 +takeout food|10555525 +takeover|10555581 +takeover arbitrage|10555650 +takeover attempt|10555703 +takeover bid|10555767 +takeover target|10555802 +taker|10555850 +takilman|10555917 +takin|10555961 +taking|10556018 +taking apart|10556085 +taking hold|10556150 +taking into custody|10556207 +taking over|10556307 +taking possession|10556351 +takings|10556427 +tala|10556521 +talapoin|10556564 +talaria|10556626 +talbot|10556650 +talc|10556760 +talcott parsons|10556803 +talcum|10556864 +talcum powder|10556955 +tale|10557026 +taleban|10557165 +talebearer|10557217 +talebearing|10557354 +talent|10557433 +talent agent|10557512 +talent scout|10557540 +talented|10557578 +talentlessness|10557614 +taleteller|10557649 +taliban|10557786 +talinum|10557838 +talinum augustissimum|10557903 +talinum aurantiacum|10558041 +talinum brevifolium|10558151 +talinum calycinum|10558272 +talinum paniculatum|10558385 +talinum spinescens|10558507 +talipes|10558626 +talipes calcaneus|10558689 +talipes equinus|10558733 +talipes valgus|10558775 +talipot|10558816 +talipot palm|10558877 +talisman|10558938 +talismanic|10558985 +talk|10559018 +talk about|10559613 +talk down|10559746 +talk into|10559820 +talk of|10559848 +talk of the town|10559919 +talk out of|10559977 +talk over|10560013 +talk shop|10560068 +talk show|10560116 +talk terms|10560173 +talk turkey|10560240 +talkative|10560272 +talkatively|10560435 +talkativeness|10560488 +talker|10560578 +talker identification|10560644 +talkie|10560725 +talkily|10560869 +talking|10560922 +talking book|10560973 +talking head|10561027 +talking picture|10561094 +talking point|10561238 +talking to|10561267 +talks|10561349 +talky|10561627 +tall|10561694 +tall bellflower|10562140 +tall bilberry|10562206 +tall buttercup|10562311 +tall crowfoot|10562466 +tall cupflower|10562621 +tall field buttercup|10562692 +tall gallberry holly|10562847 +tall goldenrod|10562883 +tall mallow|10562917 +tall meadow grass|10562994 +tall oat grass|10563101 +tall oil|10563208 +tall order|10563230 +tall sunflower|10563293 +tall tale|10563389 +tall white violet|10563439 +tall yellow-eye|10563517 +tall-grass|10561990 +tall-growing|10562107 +tallahassee|10563577 +tallapoosa|10563643 +tallapoosa river|10563697 +tallboy|10563757 +tallchief|10563820 +talleyrand|10563892 +tallgrass|10563985 +tallin|10564021 +tallinn|10564084 +tallis|10564148 +tallish|10564237 +tallith|10564259 +tallness|10564302 +tallow|10564359 +tallow oil|10564386 +tallulah bankhead|10564417 +tally|10564479 +tally clerk|10564917 +tallyman|10564953 +talmud|10565091 +talmudic literature|10565134 +talon|10565243 +taloned|10565263 +talpidae|10565293 +talus|10565350 +talwin|10565447 +tam|10565521 +tam-o'-shanter|10565559 +tam-tam|10565597 +tamable|10565663 +tamale|10565711 +tamale pie|10565732 +tamandu|10565757 +tamandua|10565849 +tamandua tetradactyla|10565941 +tamanoir|10566055 +tamara karsavina|10566160 +tamarack|10566240 +tamarao|10566317 +tamarau|10566405 +tamaricaceae|10566493 +tamarillo|10566587 +tamarin|10566629 +tamarind|10566690 +tamarind tree|10566790 +tamarindo|10566860 +tamarindus|10566959 +tamarindus indica|10567025 +tamarisk|10567113 +tamarisk family|10567142 +tamarisk gerbil|10567223 +tamarix|10567286 +tambac|10567347 +tambala|10567389 +tambocor|10567429 +tambour|10567528 +tambourine|10567635 +tamburlaine|10567681 +tame|10567754 +tameable|10568199 +tamed|10568247 +tameness|10568365 +tamer|10568499 +tamerlane|10568537 +tamias|10568608 +tamias striatus|10568657 +tamiasciurus|10568764 +tamiasciurus douglasi|10568831 +tamiasciurus hudsonicus|10568925 +tamil|10569066 +tamil nadu|10569164 +tamil tigers|10569217 +tamm|10569416 +tammany|10569486 +tammany hall|10569566 +tammany society|10569651 +tammerfors|10569739 +tammuz|10569807 +tammy|10569895 +tammy wynette|10569970 +tammy wynetter pugh|10570071 +tamoxifen|10570178 +tamp|10570228 +tamp down|10570319 +tampa|10570379 +tampa bay|10570458 +tampax|10570491 +tamper|10570521 +tampere|10570643 +tampering|10570708 +tampico|10570752 +tamping bar|10570811 +tampion|10570849 +tampon|10570887 +tamponade|10570951 +tamponage|10571001 +tamus|10571051 +tamus communis|10571096 +tan|10571168 +tanacetum|10571390 +tanacetum balsamita|10571455 +tanacetum camphoratum|10571604 +tanacetum cinerariifolium|10571698 +tanacetum coccineum|10571860 +tanacetum douglasii|10571964 +tanacetum parthenium|10572082 +tanacetum ptarmiciflorum|10572189 +tanacetum vulgare|10572340 +tanach|10572445 +tanager|10572552 +tanakh|10572588 +tanbark|10572695 +tanbark oak|10572717 +tancred|10572767 +tandearil|10572800 +tandem|10572886 +tandem bicycle|10572964 +tandem trailer|10573042 +tandoor|10573136 +tanekaha|10573158 +taney|10573216 +tang|10573282 +tang dynasty|10573699 +tanga|10573747 +tanganyika|10573788 +tange|10573930 +tangelo|10573982 +tangelo tree|10574093 +tangency|10574168 +tangent|10574230 +tangent plane|10574313 +tangential|10574348 +tangerine|10574410 +tangerine tree|10574579 +tangibility|10574677 +tangible|10574761 +tangibleness|10574949 +tangier|10575033 +tangier pea|10575096 +tangier peavine|10575175 +tangiers|10575258 +tanginess|10575375 +tangle|10575450 +tangle orchid|10575706 +tangle with|10575755 +tanglebush|10575803 +tangled|10575870 +tango|10576106 +tangor|10576270 +tangram|10576365 +tangshan|10576389 +tanguy|10576445 +tangy|10576488 +tank|10576538 +tank car|10576833 +tank circuit|10576868 +tank destroyer|10576934 +tank driver|10576991 +tank engine|10577027 +tank farm|10577119 +tank farming|10577151 +tank furnace|10577227 +tank iron|10577257 +tank locomotive|10577287 +tank shell|10577379 +tank ship|10577405 +tank suit|10577472 +tank top|10577554 +tanka|10577578 +tankage|10577633 +tankard|10577699 +tanker|10577732 +tanker plane|10577826 +tankful|10577873 +tanned|10577908 +tannenberg|10577980 +tanner|10578047 +tanner's cassia|10578123 +tannery|10578196 +tannia|10578228 +tannic|10578329 +tannic acid|10578351 +tannin|10578386 +tanning|10578421 +tannish|10578617 +tannoy|10578644 +tanoan|10578727 +tanoan language|10578842 +tansy|10578966 +tansy leaf aster|10579154 +tansy mustard|10579245 +tansy ragwort|10579310 +tansy-leaved rocket|10579053 +tantalise|10579379 +tantaliser|10579466 +tantalising|10579528 +tantalite|10579607 +tantalize|10579634 +tantalizer|10579721 +tantalizing|10579783 +tantalizingly|10579862 +tantalum|10579895 +tantalus|10579956 +tantamount|10579998 +tantilla|10580035 +tantra|10580091 +tantric|10580159 +tantrik|10580200 +tantrism|10580241 +tantrist|10580309 +tantrum|10580354 +tanzania|10580414 +tanzanian|10580500 +tanzanian monetary unit|10580584 +tanzanian shilling|10580655 +tanzim|10580735 +tanzimul fuqra|10580845 +tao|10580980 +taoism|10581043 +taoist|10581254 +taoist trinity|10581401 +taos|10581454 +tap|10581554 +tap dance|10582253 +tap dancer|10582452 +tap dancing|10582506 +tap house|10582558 +tap out|10582666 +tap water|10582707 +tap wrench|10582736 +tap-off|10582218 +tapa|10582771 +tapdance|10582839 +tape|10582921 +tape cartridge|10583289 +tape deck|10583323 +tape drive|10583363 +tape grass|10583418 +tape machine|10583535 +tape measure|10583589 +tape player|10583680 +tape record|10583722 +tape recorder|10583755 +tape recording|10583809 +tape transport|10583855 +tape-recorded|10583251 +taped|10583910 +tapeline|10583961 +tapenade|10584052 +taper|10584083 +taper file|10584294 +taper off|10584319 +tapered|10584401 +tapering|10584468 +tapering off|10584591 +tapestried|10584643 +tapestry|10584681 +tapestry moth|10584799 +tapeworm|10584876 +tapeworm infection|10584925 +taphephobia|10584963 +taphouse|10584998 +taping|10585075 +tapioca|10585121 +tapioca plant|10585161 +tapioca pudding|10585280 +tapir|10585313 +tapiridae|10585381 +tapirus|10585441 +tapirus indicus|10585493 +tapirus terrestris|10585567 +tapis|10585636 +tapotement|10585690 +tappa|10585718 +tappan|10585785 +tappan zee bridge|10585851 +tapped|10585914 +tapper|10585954 +tappet|10586164 +tappet wrench|10586186 +tapping|10586240 +taproom|10586263 +taproot|10586312 +taps|10586358 +tapster|10586677 +tar|10586724 +tar heel state|10587156 +tar paper|10587244 +tar pit|10587300 +tar-and-feather|10586852 +tar-wood|10586902 +tara|10587328 +tara vine|10587352 +tarabulus al-gharb|10587409 +tarabulus ash-sham|10587498 +taracahitian|10587596 +taradiddle|10587687 +tarahumara|10587889 +tarahumara frog|10587933 +taraktagenos|10587991 +taraktagenos kurzii|10588129 +taraktogenos|10588262 +taraktogenos kurzii|10588400 +tarantella|10588533 +tarantelle|10588629 +tarantino|10588675 +tarantism|10588794 +tarantula|10588820 +taras grigoryevich shevchenko|10588918 +tarawa|10589003 +tarawa-makin|10589103 +taraxacum|10589170 +taraxacum kok-saghyz|10589235 +taraxacum officinale|10589344 +taraxacum ruderalia|10589451 +tarboosh|10589557 +tarchanoff phenomenon|10589583 +tardigrada|10589769 +tardigrade|10589823 +tardily|10589853 +tardiness|10589907 +tardive|10589933 +tardive dyskinesia|10589955 +tardy|10589994 +tare|10590033 +tareekh e kasas|10590202 +taret organ|10590338 +target|10590365 +target acquisition system|10590688 +target area|10590740 +target cell|10590797 +target company|10590885 +target language|10590933 +target organ|10591072 +target practice|10591100 +target program|10591177 +target range|10591270 +target-hunting|10590657 +taricha|10591320 +taricha granulosa|10591375 +taricha torosa|10591452 +tariff|10591520 +tarkovsky|10591565 +tarmac|10591686 +tarmacadam|10591811 +tarn|10591890 +tarnish|10591909 +tarnished|10592017 +tarnished plant bug|10592106 +taro|10592162 +taro plant|10592317 +taro root|10592386 +tarot|10592446 +tarot card|10592477 +tarp|10592508 +tarpan|10592547 +tarpaulin|10592598 +tarpon|10592637 +tarpon atlanticus|10592704 +tarquin|10592789 +tarquin the proud|10592908 +tarquinius|10593037 +tarquinius superbus|10593159 +tarradiddle|10593290 +tarragon|10593491 +tarred-and-feathered|10593571 +tarriance|10593610 +tarrietia|10593652 +tarrietia argyrodendron|10593719 +tarry|10593793 +tarsal|10593989 +tarsal bone|10594050 +tarsal gland|10594086 +tarsier|10594178 +tarsiidae|10594203 +tarsioidea|10594263 +tarsitis|10594327 +tarsius|10594372 +tarsius glis|10594424 +tarsius syrichta|10594467 +tarsus|10594518 +tart|10594553 +tart up|10594812 +tartan|10595016 +tartar|10595068 +tartar emetic|10595288 +tartar sauce|10595356 +tartar steak|10595398 +tartare sauce|10595454 +tartarean|10595496 +tartarian honeysuckle|10595551 +tartaric|10595651 +tartaric acid|10595673 +tartarus|10595709 +tartary|10595805 +tartlet|10595909 +tartness|10595931 +tartrate|10596081 +tartu|10596104 +tartufe|10596154 +tartuffe|10596232 +tarweed|10596311 +tarwood|10596407 +tarzan|10596581 +tarzan of the apes|10596703 +tashkent|10596808 +tashmit|10596868 +tashmitum|10596917 +tashunca-uitco|10596968 +task|10597062 +task force|10597194 +taskent|10597288 +taskmaster|10597347 +taskmistress|10597378 +tasman|10597411 +tasman dwarf pine|10597477 +tasman sea|10597558 +tasmania|10597593 +tasmanian|10597660 +tasmanian devil|10597705 +tasmanian tiger|10597809 +tasmanian wolf|10597927 +tasse|10598044 +tassel|10598130 +tassel flower|10598156 +tassel hyacinth|10598392 +tasseled|10598448 +tasselled|10598494 +tasset|10598540 +tasso|10598626 +taste|10598667 +taste bud|10599432 +taste cell|10599571 +taste perception|10599622 +taste property|10599767 +taste sensation|10599800 +taste tester|10599945 +taste-maker|10599227 +taste-tester|10599294 +tastebud|10600083 +tasteful|10600141 +tastefully|10600772 +tastefulness|10600799 +tasteless|10600830 +tastelessness|10601337 +taster|10601472 +tastily|10601529 +tastiness|10601556 +tasting|10601615 +tasty|10601734 +tat|10601824 +tatahumara|10602036 +tatar|10602100 +tatary|10602233 +tate|10602336 +tater|10602400 +tati|10602497 +tatou|10602595 +tatouay|10602662 +tatter|10602720 +tatterdemalion|10602791 +tattered|10602935 +tattily|10603000 +tatting|10603038 +tattle|10603108 +tattler|10603508 +tattletale|10603662 +tattletale gray|10603799 +tattletale grey|10603868 +tattling|10603937 +tattoo|10604016 +tatty|10604112 +tatu|10604259 +tatum|10604326 +tau|10604436 +tau coefficient of correlation|10604589 +tau cross|10604681 +tau-minus particle|10604500 +tau-plus particle|10604541 +taught|10604726 +taunt|10604779 +taunting|10604922 +tauntingly|10605041 +tauon|10605070 +taupe|10605111 +taurine|10605167 +taurotragus|10605250 +taurotragus derbianus|10605314 +taurotragus oryx|10605385 +taurus|10605447 +taurus the bull|10605815 +taut|10605932 +tauten|10605977 +tautness|10606033 +tautog|10606138 +tautoga|10606186 +tautoga onitis|10606236 +tautogolabrus|10606299 +tautogolabrus adspersus|10606367 +tautologic|10606446 +tautological|10606507 +tautology|10606568 +tavern|10606646 +tavern keeper|10606689 +taw|10606767 +tawdrily|10606853 +tawdriness|10606887 +tawdry|10606995 +tawney|10607139 +tawniness|10607209 +tawny|10607262 +tawny eagle|10607287 +tawny owl|10607340 +tawse|10607412 +tax|10607433 +tax advantage|10607737 +tax assessment|10607778 +tax assessor|10607813 +tax avoidance|10607879 +tax base|10607928 +tax benefit|10607953 +tax bill|10608022 +tax boost|10608061 +tax bracket|10608121 +tax break|10608184 +tax collection|10608253 +tax collector|10608322 +tax credit|10608450 +tax deduction|10608510 +tax evasion|10608578 +tax form|10608618 +tax haven|10608641 +tax hike|10608679 +tax income|10608739 +tax law|10608825 +tax liability|10608860 +tax lien|10608895 +tax policy|10608918 +tax program|10608968 +tax rate|10609018 +tax return|10609057 +tax revenue|10609163 +tax shelter|10609249 +tax system|10609318 +tax write-off|10609351 +tax-exempt|10607567 +tax-free|10607622 +tax-increase|10607677 +taxability|10609419 +taxable|10609449 +taxaceae|10609539 +taxales|10609611 +taxation|10609662 +taxcut|10609813 +taxer|10609833 +taxi|10609883 +taxi dancer|10609994 +taxi fare|10610042 +taxi rank|10610090 +taxi strip|10610134 +taxicab|10610176 +taxidea|10610244 +taxidea taxus|10610296 +taxidermist|10610356 +taxidermy|10610439 +taxidriver|10610479 +taximan|10610575 +taximeter|10610671 +taxing|10610696 +taxis|10610737 +taxistand|10610916 +taxiway|10610960 +taxman|10611002 +taxodiaceae|10611130 +taxodium|10611218 +taxodium ascendens|10611277 +taxodium distichum|10611358 +taxodium mucronatum|10611475 +taxon|10611572 +taxonomer|10611639 +taxonomic|10611706 +taxonomic category|10611834 +taxonomic group|10611901 +taxonomical|10611968 +taxonomist|10612096 +taxonomy|10612163 +taxophytina|10612315 +taxopsida|10612404 +taxpayer|10612491 +taxpaying|10612527 +taxus|10612556 +taxus baccata|10612606 +taxus brevifolia|10612673 +taxus cuspidata|10612759 +taxus floridana|10612817 +tay|10612874 +tay-sachs|10612895 +tay-sachs disease|10613085 +tayalic|10613283 +tayassu|10613326 +tayassu angulatus|10613391 +tayassu pecari|10613512 +tayassu tajacu|10613589 +tayassuidae|10613707 +taylor|10613773 +taymyr peninsula|10614017 +tayra|10614087 +tazicef|10614157 +tazir crime|10614223 +tb|10614275 +tbilisi|10614427 +tc|10614486 +tce|10614590 +tchad|10614657 +tchaikovsky|10614731 +tchotchke|10614857 +tcp|10614955 +tcp/ip|10615035 +tdt|10615139 +te|10615241 +te deum|10615336 +te kanawa|10615373 +tea|10615458 +tea bag|10615650 +tea ball|10615691 +tea biscuit|10615725 +tea bread|10615775 +tea break|10615803 +tea caddy|10615856 +tea cart|10615897 +tea ceremony|10616039 +tea chest|10616078 +tea cloth|10616103 +tea cosey|10616133 +tea cosy|10616233 +tea cozey|10616333 +tea cozie|10616433 +tea cozy|10616533 +tea family|10616633 +tea garden|10616701 +tea gown|10616728 +tea leaf|10616842 +tea maker|10616869 +tea napkin|10616894 +tea parlor|10616944 +tea parlour|10617038 +tea party|10617132 +tea rose|10617157 +tea service|10617193 +tea set|10617232 +tea table|10617271 +tea tortrix|10617296 +tea towel|10617367 +tea tray|10617403 +tea trolley|10617426 +tea urn|10617487 +tea wagon|10617508 +tea-strainer|10615619 +teaberry|10617569 +teacake|10617760 +teacart|10617822 +teach|10617883 +teach-in|10618042 +teachable|10618088 +teacher|10618136 +teacher's certificate|10618211 +teacher's pet|10618312 +teacher-student relation|10618385 +teachers college|10618437 +teachership|10618492 +teaching|10618568 +teaching aid|10618775 +teaching certificate|10618807 +teaching fellow|10618908 +teaching method|10618952 +teaching reading|10619004 +teacup|10619060 +teacupful|10619110 +teahouse|10619149 +teak|10619243 +teakettle|10619299 +teakwood|10619332 +teal|10619360 +team|10619481 +team spirit|10619567 +team sport|10619635 +team up|10619671 +teammate|10619707 +teamster|10619740 +teamsters union|10619800 +teamwork|10619873 +teapot|10619903 +teapot dome|10619923 +teapot dome scandal|10619992 +tear|10620069 +tear apart|10620521 +tear away|10620578 +tear down|10620637 +tear duct|10620719 +tear gas|10620802 +tear gland|10620952 +tear into|10621029 +tear off|10621091 +tear sac|10621150 +tear sheet|10621205 +tear up|10621261 +tearaway|10621314 +teardrop|10621455 +tearful|10621514 +tearfulness|10621689 +teargas|10621740 +tearing|10621820 +tearing down|10621977 +tearjerker|10622051 +tearless|10622102 +tearoom|10622142 +tears|10622236 +teary|10622462 +teary-eyed|10622508 +teasdale|10622554 +tease|10622600 +tease apart|10623230 +teased|10623299 +teasel|10623334 +teaser|10623386 +teashop|10623641 +teasing|10623735 +teasingly|10624035 +teasle|10624064 +teaspoon|10624116 +teaspoonful|10624172 +teat|10624215 +teatime|10624290 +teazel|10624337 +tebaldi|10624389 +tebet|10624437 +tec|10624486 +tech|10624572 +techie|10624610 +technetium|10624643 +technical|10624706 +technical foul|10625042 +technical knockout|10625081 +technical school|10625125 +technical sergeant|10625163 +technicality|10625200 +technician|10625258 +technicolor|10625322 +technique|10625350 +technobabble|10625408 +technocracy|10625437 +technocrat|10625494 +technological|10625569 +technological revolution|10625722 +technologist|10625798 +technology|10625900 +technology administration|10626135 +technophile|10626260 +technophilia|10626300 +technophilic|10626333 +technophobe|10626365 +technophobia|10626395 +technophobic|10626425 +techy|10626454 +tecophilaeacea|10626565 +tectaria|10626648 +tectaria cicutaria|10626701 +tectaria macrodonta|10626765 +tectona|10626838 +tectona grandis|10626897 +tectonic|10626948 +tectonic movement|10627040 +tectonics|10627100 +tecumseh|10627234 +tecumtha|10627278 +ted|10627322 +ted hughes|10627369 +ted shawn|10627432 +ted williams|10627508 +teddies|10627604 +teddy|10627756 +teddy bear|10627850 +teddy boy|10627890 +teddy boys|10627943 +tedious|10628021 +tediously|10628159 +tediousness|10628197 +tedium|10628255 +tee|10628350 +tee hinge|10628537 +tee off|10628585 +tee shirt|10628607 +tee up|10628647 +teeing ground|10628732 +teem|10628774 +teem in|10628884 +teeming|10628932 +teemingness|10628967 +teen|10629019 +teenage|10629076 +teenaged|10629133 +teenager|10629190 +teens|10629254 +teensy|10629303 +teensy-weensy|10629417 +teentsy|10629531 +teeny|10629645 +teeny-weeny|10629759 +teeoff|10629873 +teepee|10629917 +teeter|10629988 +teeter-totter|10630023 +teeterboard|10630106 +teeth|10630189 +teethe|10630411 +teething|10630460 +teething ring|10630558 +teetotal|10630620 +teetotaler|10630678 +teetotaling|10630753 +teetotalism|10630797 +teetotalist|10630841 +teetotaller|10630916 +teetotum|10630991 +teff|10631050 +teff grass|10631133 +tefillin|10631216 +teflon|10631254 +teg|10631355 +tegu|10631373 +tegucigalpa|10631427 +tegular|10631494 +tegument|10631527 +teheran|10631588 +tehran|10631669 +teiid|10631749 +teiid lizard|10631784 +teiidae|10631819 +teilhard de chardin|10631874 +teju|10632003 +tekki|10632036 +tektite|10632069 +tel aviv|10632100 +tel aviv-jaffa|10632171 +telamon|10632248 +telanthera|10632285 +telco|10632359 +telco building|10632488 +telecast|10632543 +telecaster|10632620 +telecasting|10632652 +telecom|10632706 +telecom equipment|10632748 +telecom hotel|10632864 +telecom system|10632919 +telecommerce|10633035 +telecommunicate|10633115 +telecommunication|10633169 +telecommunication equipment|10633244 +telecommunication system|10633360 +telecommuting|10633476 +teleconference|10633527 +teleconferencing|10633596 +telefax|10633665 +telegnosis|10633712 +telegnostic|10633802 +telegram|10633847 +telegraph|10633878 +telegraph form|10633958 +telegraph key|10633987 +telegraph line|10634014 +telegraph operator|10634104 +telegraph plant|10634178 +telegraph pole|10634288 +telegraph post|10634347 +telegraph wire|10634406 +telegrapher|10634496 +telegraphese|10634570 +telegraphic|10634612 +telegraphic signal|10634663 +telegraphically|10634737 +telegraphist|10634769 +telegraphy|10634843 +telekinesis|10634922 +telemann|10635009 +telemark|10635068 +telemarketing|10635099 +telemeter|10635179 +telemetered|10635220 +telemetry|10635282 +telemetry intelligence|10635343 +telencephalon|10635410 +teleological|10635450 +teleologist|10635515 +teleology|10635574 +teleost|10635637 +teleost fish|10635687 +teleostan|10635737 +teleostei|10635787 +telepathic|10635841 +telepathise|10635885 +telepathist|10635947 +telepathize|10636116 +telepathy|10636178 +telephone|10636288 +telephone bell|10636438 +telephone bill|10636476 +telephone book|10636532 +telephone booth|10636607 +telephone box|10636709 +telephone call|10636811 +telephone circuit|10636871 +telephone company|10636997 +telephone conversation|10637126 +telephone cord|10637171 +telephone dial|10637266 +telephone directory|10637320 +telephone exchange|10637395 +telephone extension|10637455 +telephone interview|10637540 +telephone jack|10637579 +telephone kiosk|10637619 +telephone line|10637721 +telephone message|10637920 +telephone number|10637969 +telephone operator|10638037 +telephone order|10638119 +telephone plug|10638183 +telephone pole|10638233 +telephone receiver|10638292 +telephone service|10638363 +telephone set|10638492 +telephone system|10638552 +telephone unit|10638612 +telephone wire|10638661 +telephoner|10638751 +telephonic|10638840 +telephonist|10638885 +telephony|10638967 +telephoto|10639022 +telephoto lens|10639086 +telephotograph|10639145 +telephotography|10639246 +teleport|10639343 +teleportation|10639371 +teleprinter|10639441 +teleprocessing|10639575 +teleprompter|10639673 +telerobotics|10639725 +telescope|10639756 +telescope sight|10639867 +telescoped|10639928 +telescopic|10639971 +telescopic sight|10640067 +telescopium|10640128 +teleselling|10640175 +telethermometer|10640255 +teletype machine|10640292 +teletypewriter|10640426 +televangelism|10640560 +televangelist|10640594 +televise|10640658 +television|10640718 +television announcer|10641140 +television antenna|10641193 +television camera|10641279 +television channel|10641360 +television equipment|10641437 +television monitor|10641504 +television news|10641551 +television newscaster|10641585 +television pickup tube|10641687 +television program|10641829 +television receiver|10641920 +television reporter|10642048 +television room|10642150 +television set|10642188 +television show|10642316 +television star|10642407 +television station|10642460 +television system|10642507 +television transmitter|10642631 +television tube|10642682 +television-camera tube|10640998 +teleworking|10642751 +telex|10642802 +telex machine|10642959 +telfer|10643093 +telferage|10643138 +telingo potato|10643213 +telint|10643327 +teliospore|10643401 +tell|10643435 +tell apart|10643855 +tell off|10644034 +tell on|10644237 +teller|10644373 +tellima|10644575 +tellima affinis|10644632 +tellima grandiflora|10644735 +telling|10644834 +telltale|10645131 +tellurian|10645317 +telluric|10645450 +telluride|10645551 +tellurium|10645597 +tellus|10645661 +telly|10645696 +telocentric|10645824 +telocentric chromosome|10645925 +telomerase|10645968 +telomere|10645995 +telopea|10646017 +telopea oreades|10646087 +telopea speciosissima|10646147 +telophase|10646219 +telosporidia|10646291 +telpher|10646354 +telpherage|10646399 +telsontail|10646474 +telugu|10646510 +temazepam|10646581 +temblor|10646624 +temerarious|10646686 +temerity|10646728 +temnospondyli|10646795 +temp|10646865 +temper|10646903 +tempera|10647269 +temperament|10647343 +temperamental|10647460 +temperance|10647538 +temperate|10647670 +temperate rain forest|10647804 +temperate zone|10647858 +temperately|10647911 +temperateness|10647944 +temperature|10648077 +temperature change|10648221 +temperature gradient|10648296 +temperature reduction|10648335 +temperature scale|10648402 +temperature unit|10648516 +tempered|10648567 +tempering|10648727 +tempest|10648784 +tempest-swept|10648913 +tempest-tossed|10648995 +tempest-tost|10649077 +tempestuous|10649159 +tempestuousness|10649213 +templar|10649249 +template|10649296 +template rna|10649342 +temple|10649435 +temple of apollo|10649654 +temple of artemis|10649753 +temple of jerusalem|10649805 +temple of solomon|10649900 +temple orange|10649993 +temple orange tree|10650102 +temple tree|10650197 +templet|10650273 +templetonia|10650319 +templetonia retusa|10650388 +tempo|10650468 +temporal|10650520 +temporal arrangement|10650707 +temporal arteritis|10650770 +temporal artery|10650808 +temporal bone|10650865 +temporal canthus|10650909 +temporal gyrus|10650943 +temporal lobe|10650985 +temporal lobe epilepsy|10651013 +temporal muscle|10651075 +temporal order|10651181 +temporal property|10651244 +temporal relation|10651280 +temporal role|10651316 +temporal vein|10651379 +temporalis|10651448 +temporalis muscle|10651554 +temporality|10651660 +temporalty|10651733 +temporariness|10651859 +temporary|10651908 +temporary expedient|10652180 +temporary hookup|10652233 +temporary injunction|10652337 +temporary removal|10652447 +temporary state|10652495 +temporary worker|10652526 +temporise|10652564 +temporiser|10652626 +temporize|10652665 +temporizer|10652727 +temporomandibular joint|10652766 +tempra|10652898 +tempt|10653018 +temptable|10653228 +temptation|10653259 +tempter|10653342 +tempting|10653412 +temptingly|10653508 +temptingness|10653539 +temptress|10653605 +tempura|10653682 +temuco|10653704 +ten|10653756 +ten commandments|10654158 +ten dollar bill|10654223 +ten percent|10654355 +ten thousand|10654435 +ten-day fern|10653823 +ten-gallon hat|10653928 +ten-membered|10653979 +ten-spined stickleback|10654023 +ten-spot|10654102 +ten-strike|10654125 +tenability|10654500 +tenable|10654574 +tenableness|10654624 +tenacious|10654698 +tenaciously|10654817 +tenaciousness|10654846 +tenacity|10654960 +tenancy|10655074 +tenant|10655130 +tenant farmer|10655248 +tenanted|10655314 +tenantry|10655351 +tench|10655416 +tend|10655466 +tended to|10655564 +tendencious|10655602 +tendency|10655653 +tendentious|10655816 +tendentiousness|10655867 +tender|10655921 +tender loving care|10656660 +tender offer|10656719 +tenderfoot|10656756 +tendergreen|10656811 +tenderhearted|10656920 +tenderheartedness|10656971 +tenderisation|10657038 +tenderise|10657087 +tenderised|10657143 +tenderiser|10657181 +tenderization|10657239 +tenderize|10657288 +tenderized|10657344 +tenderizer|10657382 +tenderloin|10657440 +tenderness|10657518 +tending|10657769 +tendinitis|10657852 +tendinous|10657910 +tendon|10657953 +tendon of achilles|10657993 +tendonitis|10658069 +tendrac|10658127 +tendril|10658163 +tenebrific|10658207 +tenebrionid|10658253 +tenebrionidae|10658320 +tenebrious|10658395 +tenebrous|10658441 +tenement|10658487 +tenement district|10658555 +tenement house|10658630 +tenerife|10658698 +tenesmus|10658732 +tenet|10658775 +tenfold|10658844 +teng hsiao-ping|10658877 +teng hsiaoping|10658979 +tenge|10659080 +tenia|10659150 +tenner|10659188 +tennessean|10659357 +tennessee|10659397 +tennessee river|10659499 +tennessee walker|10659556 +tennessee walking horse|10659694 +tennessee williams|10659839 +tenniel|10659939 +tennis|10659992 +tennis ball|10660031 +tennis camp|10660057 +tennis club|10660083 +tennis coach|10660116 +tennis court|10660160 +tennis elbow|10660188 +tennis lesson|10660298 +tennis match|10660328 +tennis player|10660356 +tennis pro|10660411 +tennis racket|10660472 +tennis racquet|10660525 +tennis shoe|10660578 +tennis shot|10660621 +tennis stroke|10660668 +tenno|10660715 +tennyson|10660745 +tenon|10660835 +tenor|10660861 +tenor clef|10661060 +tenor drum|10661085 +tenor saxophonist|10661139 +tenor voice|10661194 +tenoretic|10661235 +tenorist|10661303 +tenormin|10661358 +tenoroon|10661462 +tenosynovitis|10661488 +tenpence|10661521 +tenpenny nail|10661544 +tenpin|10661572 +tenpin bowling|10661604 +tenpins|10661644 +tenpounder|10661714 +tenrec|10661781 +tenrec ecaudatus|10661817 +tenrecidae|10661891 +tense|10661954 +tense system|10662462 +tense up|10662500 +tensed|10662569 +tenseness|10662592 +tensile|10662744 +tensile strength|10662824 +tensimeter|10662895 +tensiometer|10662925 +tension|10663125 +tension headache|10663378 +tensional|10663435 +tensionless|10663461 +tensity|10663486 +tensor|10663547 +tensor tympani|10663613 +tent|10663644 +tent caterpillar|10663959 +tent flap|10663997 +tent peg|10664052 +tent stitch|10664078 +tent-caterpillar moth|10663791 +tent-fly|10663904 +tentacle|10664118 +tentacled|10664182 +tentacular|10664228 +tentaculata|10664275 +tentative|10664332 +tenter|10664427 +tenterhook|10664467 +tenth|10664497 +tenth cranial nerve|10664609 +tenth part|10664733 +tenthredinidae|10664813 +tenting|10664891 +tentmaker|10664975 +tentorial sinus|10665007 +tentorium|10665079 +tenuity|10665109 +tenuous|10665228 +tenure|10665293 +tenured|10665430 +tenzing norgay|10665459 +teodor josef konrad korzeniowski|10665534 +tepal|10665644 +tepary bean|10665686 +tepee|10665768 +tephrosia|10665839 +tephrosia purpurea|10665902 +tephrosia virginiana|10665974 +tepic|10666068 +tepid|10666118 +tepidity|10666147 +tepidly|10666204 +tepidness|10666231 +tequila|10666336 +tera|10666426 +terabyte|10666474 +teraflop|10666518 +terahertz|10666607 +teras|10666635 +teratogen|10666712 +teratogenesis|10666737 +teratogenic|10666819 +teratology|10666845 +teratoma|10666876 +terazosin|10666916 +terbinafine|10667066 +terbium|10667163 +terbium metal|10667223 +terce|10667308 +tercel|10667345 +tercelet|10667383 +tercentenary|10667421 +tercentennial|10667498 +tercet|10667575 +terebella|10667719 +terebellidae|10667775 +terebinth|10667842 +teredinid|10667916 +teredinidae|10667949 +teredo|10668016 +terefah|10668051 +terence|10668098 +terence rattigan|10668167 +teres|10668268 +teres major|10668328 +teres major muscle|10668408 +teres minor|10668488 +teres minor muscle|10668568 +teres muscle|10668648 +teresa|10668708 +tereshkova|10668815 +terete|10668929 +tergiversate|10668953 +tergiversation|10669092 +teriyaki|10669210 +term|10669233 +term infant|10669472 +term insurance|10669537 +term of a contract|10669571 +term of enlistment|10669639 +term of office|10669746 +term paper|10669793 +termagant|10669873 +termer|10669934 +termes|10670003 +terminable|10670055 +terminable interest|10670097 +terminal|10670141 +terminal emulation|10670359 +terminal figure|10670397 +terminal leave|10670443 +terminal point|10670490 +terminal velocity|10670548 +terminate|10670590 +terminated|10670771 +termination|10670854 +terminative|10671077 +terminator|10671106 +terminological|10671164 +terminology|10671192 +terminus|10671240 +terminus a quo|10671397 +terminus ad quem|10671523 +termite|10671581 +termitidae|10671615 +terms|10671681 +tern|10671995 +ternary|10672015 +ternate|10672197 +ternion|10672223 +terpene|10672367 +terpsichore|10672396 +terpsichorean|10672502 +terra alba|10672561 +terra cotta|10672674 +terra firma|10672707 +terra incognita|10672791 +terra sigillata|10672846 +terrace|10672895 +terraced house|10673029 +terrain|10673074 +terrain flight|10673149 +terrain intelligence|10673204 +terramycin|10673276 +terrapene|10673400 +terrapene ornata|10673459 +terrapin|10673545 +terrarium|10673570 +terrasse|10673598 +terrene|10673654 +terreplein|10673747 +terrestrial|10673773 +terrestrial dynamical time|10673954 +terrestrial guidance|10674052 +terrestrial planet|10674110 +terrestrial time|10674145 +terrestrially|10674243 +terrible|10674275 +terribleness|10674518 +terribly|10674589 +terrier|10674688 +terrietia|10674717 +terrietia trifoliolata|10674810 +terrific|10674983 +terrifically|10675135 +terrified|10675232 +terrify|10675314 +terrifying|10675382 +terrine|10675420 +territorial|10675442 +territorial army|10675590 +territorial division|10675665 +territorial dominion|10675792 +territorial reserve|10675857 +territorial waters|10675915 +territorialisation|10675963 +territorialise|10676036 +territoriality|10676178 +territorialization|10676221 +territorialize|10676294 +territory|10676436 +terror|10676597 +terror-stricken|10676811 +terror-struck|10676857 +terrorisation|10676903 +terrorise|10677019 +terrorism|10677139 +terrorist|10677198 +terrorist act|10677240 +terrorist attack|10677299 +terrorist cell|10677395 +terrorist group|10677443 +terrorist organization|10677545 +terrorization|10677647 +terrorize|10677763 +terry|10677883 +terry cloth|10678031 +terry towel|10678199 +terrycloth|10678245 +terse|10678332 +tersely|10678374 +terseness|10678406 +tertian|10678448 +tertiary|10678514 +tertiary period|10678607 +tertiary syphilis|10678682 +tertigravida|10678727 +tertium quid|10678769 +tertry|10678815 +tertullian|10678870 +terylene|10678986 +terza rima|10679030 +terzetto|10679066 +tesla|10679210 +tesla coil|10679319 +tesselate|10679362 +tessella|10679388 +tessellate|10679414 +tessellated|10679439 +tessellation|10679502 +tessera|10679579 +tessin|10679601 +test|10679644 +test ban|10680405 +test bed|10680458 +test case|10680491 +test copy|10680554 +test drive|10680616 +test driver|10680659 +test equipment|10680687 +test fly|10680721 +test instrument vehicle|10680756 +test match|10680824 +test paper|10680874 +test period|10680977 +test pilot|10681045 +test range|10681086 +test rocket|10681112 +test room|10681180 +test suit|10681217 +test tube|10681280 +test-cross|10680170 +test-tube baby|10680364 +testa|10681311 +testacea|10681368 +testacean|10681423 +testaceous|10681462 +testament|10681542 +testamentary|10681752 +testamentary trust|10681834 +testate|10681868 +testator|10681962 +testatrix|10682041 +testcross|10682077 +tested|10682190 +testee|10682286 +tester|10682341 +testicle|10682431 +testicular|10682532 +testicular artery|10682591 +testicular cancer|10682702 +testicular vein|10682748 +testiere|10682821 +testifier|10682944 +testify|10683000 +testily|10683107 +testimonial|10683154 +testimonial immunity|10683335 +testimony|10683415 +testiness|10683510 +testing|10683625 +testing ground|10683744 +testing room|10683786 +testis|10683823 +testosterone|10683924 +testudinata|10683974 +testudines|10684090 +testudinidae|10684311 +testudo|10684381 +testudo graeca|10684489 +testy|10684555 +tet|10684666 +tetanic|10684687 +tetanilla|10684728 +tetanus|10684820 +tetanus antitoxin|10684914 +tetanus immune globulin|10684951 +tetanus immunoglobulin|10685085 +tetany|10685219 +tetartanopia|10685311 +tetchiness|10685401 +tetchy|10685516 +tete-a-tete|10685627 +teth|10685734 +tether|10685799 +tetherball|10685861 +tethered|10685895 +tethyidae|10685919 +tethys|10686009 +teton range|10686104 +tetra|10686217 +tetrabasic acid|10686264 +tetrabromo-phenolsulfonephthalein|10686294 +tetracaine|10686403 +tetrachlorethylene|10686503 +tetrachloride|10686640 +tetrachloroethylene|10686690 +tetrachloromethane|10686827 +tetrachoric correlation|10686974 +tetrachoric correlation coefficient|10687106 +tetraclinis|10687238 +tetraclinis articulata|10687306 +tetracycline|10687415 +tetrad|10687493 +tetradecanoic acid|10687612 +tetraethyl lead|10687675 +tetrafluoroethylene|10687726 +tetragon|10687768 +tetragonal|10687835 +tetragonia|10687878 +tetragonia expansa|10687952 +tetragonia tetragonioides|10688067 +tetragoniaceae|10688189 +tetragonurus|10688322 +tetragram|10688387 +tetragrammaton|10688419 +tetrahalide|10688468 +tetrahedron|10688496 +tetrahydrocannabinol|10688528 +tetrahymena|10688650 +tetraiodothyronine|10688710 +tetralogy|10688775 +tetralogy of fallot|10688808 +tetramerous|10688927 +tetrameter|10688972 +tetramethyldiarsine|10689009 +tetrametric|10689063 +tetraneuris|10689100 +tetraneuris acaulis|10689171 +tetraneuris grandiflora|10689280 +tetranychid|10689423 +tetranychidae|10689461 +tetrao|10689536 +tetrao urogallus|10689583 +tetraodontidae|10689677 +tetraonidae|10689750 +tetrapod|10689814 +tetrapturus|10689852 +tetrasaccharide|10689914 +tetraskele|10689955 +tetraskelion|10690010 +tetrasodium pyrophosphate|10690065 +tetrasporangium|10690147 +tetraspore|10690204 +tetravalent|10690230 +tetri|10690269 +tetrode|10690307 +tetrose|10690411 +tetterwort|10690471 +tettigoniid|10690562 +tettigoniidae|10690626 +teucrium|10690701 +teucrium canadense|10690763 +teucrium chamaedrys|10690849 +teucrium marum|10690923 +teucrium scorodonia|10690988 +teutoburger wald|10691057 +teuton|10691142 +teutonic|10691195 +teutonic deity|10691303 +tevere|10691370 +tevet|10691405 +tewkesbury|10691454 +texan|10691521 +texarkana|10691578 +texas|10691634 +texas armadillo|10691689 +texas bluebonnet|10691788 +texas chachalaca|10691944 +texas fever|10692021 +texas horned lizard|10692069 +texas independence day|10692175 +texas leaguer|10692242 +texas longhorn|10692292 +texas millet|10692357 +texas purple spike|10692432 +texas ranger|10692527 +texas snowbell|10692602 +texas snowbells|10692678 +texas star|10692814 +texas storksbill|10692935 +texas toad|10693018 +texas tortoise|10693074 +text|10693122 +text edition|10693244 +text editor|10693308 +text file|10693404 +textbook|10693446 +textile|10693535 +textile machine|10693616 +textile mill|10693649 +textile screw pine|10693716 +textual|10693791 +textual criticism|10693814 +textual matter|10693870 +texture|10693906 +textured|10694033 +th|10694081 +thackeray|10694171 +thaddaeus|10694242 +thaddeus kosciusko|10694316 +thai|10694451 +thai monetary unit|10694647 +thailand|10694708 +thalamostriate vein|10694787 +thalamus|10694846 +thalarctos|10694881 +thalarctos maritimus|10694942 +thalassaemia|10695034 +thalassaemia major|10695187 +thalassemia|10695334 +thalassemia major|10695487 +thalassic|10695634 +thalassoma|10695672 +thalassoma bifasciatum|10695731 +thales|10695802 +thales of miletus|10695888 +thalia|10695985 +thaliacea|10696033 +thalictrum|10696084 +thalidomide|10696154 +thalidone|10696226 +thallium|10696313 +thalloid|10696374 +thallophyta|10696418 +thallophyte|10696460 +thallophytic|10696491 +thallus|10696522 +thalmencephalon|10696566 +thalweg|10696645 +thames|10696710 +thames river|10696765 +thammuz|10696826 +thamnophilus|10696880 +thamnophis|10696945 +thamnophis proximus|10697007 +thamnophis sauritus|10697102 +thamnophis sirtalis|10697189 +thanatology|10697283 +thanatophobia|10697334 +thanatos|10697371 +thane|10697410 +thaneship|10697460 +thank|10697534 +thank offering|10697575 +thank you|10697608 +thankful|10697634 +thankfulness|10697679 +thankless|10697741 +thankless wretch|10697843 +thanks|10697930 +thanksgiving|10698011 +thanksgiving cactus|10698165 +thanksgiving day|10698278 +tharp|10698384 +that is|10698458 +that is to say|10698489 +thatch|10698534 +thatch palm|10698735 +thatch tree|10698821 +thatched roof|10698907 +thatcher|10698942 +thatcherism|10699077 +thatcherite|10699117 +thaumatolatry|10699188 +thaw|10699264 +thawed|10699549 +thawing|10699605 +thb|10699783 +thc|10699853 +thd|10699979 +the admirable crichton|10700041 +the alps|10700153 +the americas|10700265 +the argentine|10700360 +the armada|10700471 +the bard|10700542 +the book of mormon|10700646 +the boy orator of the platte|10700768 +the british|10700940 +the bronx|10701031 +the buddha|10701074 +the calculus|10701189 +the centaur|10701260 +the city|10701325 +the crane|10701441 +the depression|10701489 +the devil|10701594 +the doldrums|10701754 +the english|10701817 +the english hippocrates|10701902 +the fates|10702019 +the father of radio|10702096 +the gambia|10702219 +the gloomy dean|10702311 +the goat god|10702424 +the good old days|10702462 +the great calamity|10702554 +the great charter|10702663 +the great commoner|10702747 +the great compromiser|10702909 +the great depression|10703019 +the great elector|10703130 +the great hunger|10703201 +the great starvation|10703308 +the green-eyed monster|10703419 +the hague|10703510 +the hill|10703591 +the himalaya|10703636 +the holy see|10703780 +the hunter|10703887 +the indies|10703968 +the irish|10704023 +the irish famine|10704100 +the iron duke|10704207 +the jersey lillie|10704369 +the king of swing|10704472 +the kingmaker|10704598 +the lady with the lamp|10704707 +the least bit|10704801 +the like|10704843 +the likes of|10704897 +the little corporal|10704951 +the little giant|10705078 +the living dead|10705212 +the manassa mauler|10705315 +the march king|10705431 +the nazarene|10705514 +the netherlands|10705685 +the other way around|10705806 +the pit|10705859 +the pits|10705960 +the queen city|10706135 +the right way|10706213 +the sailor king|10706280 +the say hey kid|10706370 +the shiites|10706478 +the shits|10706570 +the skinny|10706642 +the solent|10706708 +the star-spangled banner|10706759 +the street|10706834 +the sublime|10706904 +the sunnites|10706969 +the swiss|10707046 +the taal|10707123 +the tempter|10707191 +the three weird sisters|10707327 +the trapezium|10707420 +the triangle|10707481 +the trots|10707541 +the true|10707613 +the venerable bede|10707654 +the virgin|10707885 +the weird sisters|10707984 +the whole way|10708071 +thea|10708105 +theaceae|10708139 +theanthropism|10708216 +theater|10708328 +theater company|10708545 +theater critic|10708585 +theater curtain|10708629 +theater director|10708704 +theater in the round|10708767 +theater light|10708833 +theater of operations|10708875 +theater of the absurd|10708977 +theater of war|10709033 +theater prompter|10709079 +theater stage|10709146 +theater ticket|10709189 +theatergoer|10709235 +theatre|10709317 +theatre curtain|10709534 +theatre director|10709609 +theatre of operations|10709672 +theatre of war|10709774 +theatre stage|10709820 +theatre ticket|10709863 +theatregoer|10709909 +theatrical|10709991 +theatrical agent|10710188 +theatrical performance|10710243 +theatrical poster|10710345 +theatrical producer|10710432 +theatrical production|10710470 +theatrical role|10710520 +theatrical season|10710622 +theatricality|10710656 +theatrically|10710703 +theban|10710732 +thebe|10710769 +thebes|10710807 +theca|10710938 +thecodont|10711008 +thecodont reptile|10711089 +thecodontia|10711170 +theelin|10711234 +theft|10711308 +theia|10711365 +theism|10711400 +theist|10711448 +theistic|10711552 +theistical|10711619 +thelarche|10711686 +thelephoraceae|10711711 +thelonious monk|10711786 +thelonious sphere monk|10711877 +thelypteridaceae|10711975 +thelypteris|10712054 +thelypteris dryopteris|10712116 +thelypteris hexagonoptera|10712209 +thelypteris palustris|10712369 +thelypteris palustris pubescens|10712461 +thelypteris phegopteris|10712649 +thelypteris simulata|10712818 +thematic|10712918 +thematic apperception test|10713048 +thematic vowel|10713170 +theme|10713223 +theme park|10713604 +theme song|10713663 +themis|10713827 +themistocles|10713859 +then|10713926 +then again|10713997 +thenal|10714043 +thenar|10714089 +thence|10714166 +thenceforth|10714242 +theobid|10714273 +theobroma|10714361 +theobroma cacao|10714428 +theocracy|10714535 +theocratic|10714645 +theodicy|10714700 +theodolite|10714736 +theodor mommsen|10714807 +theodor schwann|10714882 +theodor seuss geisel|10714956 +theodore dreiser|10715038 +theodore dwight weld|10715134 +theodore harold white|10715219 +theodore herman albert dreiser|10715301 +theodore roosevelt|10715411 +theodore roosevelt memorial national park|10715598 +theodore samuel williams|10715705 +theogony|10715813 +theologian|10715934 +theological|10716022 +theological doctrine|10716065 +theological system|10716177 +theological virtue|10716237 +theologise|10716301 +theologiser|10716494 +theologist|10716582 +theologize|10716670 +theologizer|10716863 +theology|10716951 +theophany|10717156 +theophrastaceae|10717189 +theophrastus|10717286 +theophrastus philippus aureolus bombastus von hohenheim|10717333 +theophylline|10717530 +theorem|10717610 +theoretic|10717659 +theoretical|10717856 +theoretical account|10718133 +theoretically|10718208 +theoretician|10718249 +theorisation|10718323 +theorise|10718369 +theoriser|10718479 +theorist|10718553 +theorization|10718627 +theorize|10718673 +theorizer|10718811 +theory|10718885 +theory of dissociation|10719030 +theory of electrolytic dissociation|10719149 +theory of evolution|10719268 +theory of games|10719343 +theory of gravitation|10719398 +theory of gravity|10719517 +theory of indicators|10719636 +theory of inheritance|10719715 +theory of organic evolution|10719764 +theory of preformation|10719839 +theory of punctuated equilibrium|10719891 +theory of relativity|10720004 +theory-based|10718986 +theosophical|10720113 +theosophist|10720141 +theosophy|10720192 +theoterrorism|10720218 +therapeutic|10720282 +therapeutic abortion|10720404 +therapeutic cloning|10720451 +therapeutic rehabilitation|10720603 +therapeutical|10720699 +therapeutics|10720758 +theraphosidae|10720807 +therapist|10720882 +therapsid|10720915 +therapsida|10720972 +therapy|10721033 +theravada|10721075 +theravada buddhism|10721132 +there|10721198 +thereabout|10721309 +thereabouts|10721358 +thereafter|10721406 +therefore|10721437 +therefrom|10721492 +therein|10721538 +thereness|10721570 +thereof|10721614 +thereon|10721647 +theresa|10721677 +thereto|10721785 +thereunder|10721815 +thereupon|10721854 +therewith|10721892 +theridiid|10721930 +theridiidae|10721975 +therm|10722044 +thermal|10722091 +thermal barrier|10722245 +thermal emission|10722305 +thermal equilibrium|10722360 +thermal pollution|10722401 +thermal printer|10722438 +thermal reactor|10722488 +thermal resistor|10722537 +thermal spring|10722628 +thermalgesia|10722713 +thermel|10722748 +thermic|10722825 +thermic fever|10722865 +thermidor|10722947 +thermion|10723005 +thermionic|10723032 +thermionic current|10723060 +thermionic emission|10723113 +thermionic tube|10723168 +thermionic vacuum tube|10723282 +thermionic valve|10723396 +thermionics|10723510 +thermistor|10723543 +thermoacidophile|10723634 +thermobaric bomb|10723722 +thermobia|10723838 +thermobia domestica|10723899 +thermocautery|10723969 +thermocoagulation|10724028 +thermocouple|10724085 +thermocouple junction|10724141 +thermodynamic|10724197 +thermodynamical|10724279 +thermodynamics|10724361 +thermodynamics of equilibrium|10724429 +thermoelectric|10724497 +thermoelectric thermometer|10724549 +thermoelectrical|10724626 +thermoelectricity|10724678 +thermograph|10724717 +thermography|10724793 +thermogravimeter|10724857 +thermogravimetric|10724922 +thermogravimetry|10724966 +thermohydrometer|10725073 +thermohydrometric|10725138 +thermojunction|10725182 +thermolabile|10725227 +thermometer|10725258 +thermometric|10725334 +thermometrograph|10725397 +thermometry|10725447 +thermonuclear|10725510 +thermonuclear bomb|10725548 +thermonuclear reaction|10725629 +thermonuclear reactor|10725707 +thermonuclear warhead|10725777 +thermopile|10725865 +thermoplastic|10725897 +thermoplastic resin|10725969 +thermopsis|10726020 +thermopsis macrophylla|10726086 +thermopsis villosa|10726185 +thermopylae|10726257 +thermoreceptor|10726327 +thermoregulator|10726389 +thermos|10726435 +thermos bottle|10726508 +thermos flask|10726581 +thermoset|10726654 +thermosetting|10726687 +thermosetting compositions|10726734 +thermosetting resin|10726798 +thermosphere|10726862 +thermostat|10726890 +thermostated|10726992 +thermostatic|10727024 +thermostatics|10727055 +thermotherapy|10727123 +theropod|10727154 +theropod dinosaur|10727244 +theropoda|10727334 +thesaurus|10727395 +theseus|10727438 +thesis|10727478 +thespesia|10727550 +thespesia populnea|10727617 +thespian|10727716 +thespis|10727837 +thessalia|10727867 +thessalonian|10727977 +thessalonica|10728026 +thessaloniki|10728126 +thessaly|10728226 +theta|10728335 +theta rhythm|10728401 +theta wave|10728474 +thetis|10728547 +theurgy|10728577 +thevetia|10728600 +thevetia neriifolia|10728673 +thevetia peruviana|10728768 +thiabendazole|10728862 +thiamin|10729001 +thiamine|10729134 +thiamine pyrophosphate|10729267 +thiazide|10729322 +thiazine|10729374 +thibet|10729409 +thick|10729480 +thick skin|10730559 +thick-billed murre|10730194 +thick-footed morel|10730240 +thick-knee|10730294 +thick-skinned|10730384 +thick-skulled|10730451 +thicken|10730599 +thickened|10730718 +thickener|10730789 +thickening|10730834 +thicket|10731018 +thickhead|10731082 +thickheaded|10731158 +thickly|10731266 +thickly settled|10731314 +thickness|10731358 +thickset|10731459 +thickspread|10731531 +thief|10731560 +thielavia|10731622 +thielavia basicola|10731680 +thieve|10731756 +thievery|10731809 +thieving|10731866 +thievish|10731962 +thievishness|10732012 +thigh|10732055 +thigh boot|10732215 +thigh boots|10732271 +thigh pad|10732369 +thigh-slapper|10732119 +thighbone|10732407 +thill|10732449 +thimble|10732470 +thimbleberry|10732532 +thimbleful|10732811 +thimblerig|10732852 +thimbleweed|10732901 +thimerosal|10732960 +thin|10733037 +thin air|10734524 +thin out|10734567 +thin person|10734724 +thin-leaved bilberry|10734222 +thin-leaved stringybark|10734329 +thin-shelled mussel|10734416 +thin-skinned|10734479 +thing|10734813 +thing-in-itself|10735106 +thingamabob|10735180 +thingamajig|10735385 +thingmabob|10735590 +thingmajig|10735795 +things|10736000 +thingumabob|10736421 +thingumajig|10736626 +thingummy|10736831 +think|10737036 +think about|10737571 +think back|10737675 +think factory|10737704 +think of|10737746 +think out|10738117 +think over|10738150 +think piece|10738291 +think tank|10738320 +think the world of|10738362 +think twice|10738423 +think up|10738486 +thinkable|10738573 +thinker|10738717 +thinking|10738809 +thinking cap|10738933 +thinly|10738983 +thinned|10739017 +thinner|10739062 +thinness|10739102 +thinning|10739245 +thinning shears|10739280 +thiobacillus|10739318 +thiobacteria|10739377 +thiobacteriaceae|10739445 +thiocyanate|10739528 +thiocyanic acid|10739554 +thiodiphenylamine|10739584 +thioguanine|10739634 +thiopental|10739702 +thiopental sodium|10739810 +thiopentobarbital sodium|10739918 +thioridazine|10740026 +thiosulfil|10740216 +thiotepa|10740283 +thiothixene|10740348 +thiouracil|10740535 +third|10740572 +third baron rayleigh|10741235 +third base|10741339 +third baseman|10741396 +third battle of ypres|10741442 +third class|10741532 +third cranial nerve|10741610 +third crusade|10741702 +third deck|10741747 +third degree|10741783 +third dimension|10741845 +third epistel of john|10741880 +third estate|10741947 +third eye|10742000 +third eyelid|10742068 +third gear|10742127 +third house|10742173 +third law of motion|10742230 +third law of thermodynamics|10742384 +third party|10742443 +third period|10742512 +third person|10742569 +third power|10742598 +third rail|10742631 +third reich|10742668 +third sacker|10742720 +third stomach|10742766 +third tonsil|10742837 +third trimester|10742976 +third ventricle|10743011 +third world|10743046 +third-class mail|10740833 +third-degree burn|10740876 +third-dimensional|10740908 +third-dimensionality|10740978 +third-place finish|10741044 +third-rate|10741079 +third-rater|10741108 +third-year|10741182 +thirdhand|10743126 +thirdly|10743155 +thirst|10743177 +thirst for knowledge|10743287 +thirster|10743367 +thirstily|10743453 +thirsty|10743479 +thirteen|10743578 +thirteenth|10743667 +thirties|10743712 +thirtieth|10743848 +thirty|10743892 +thirty years' war|10744750 +thirty-eight|10743952 +thirty-eighth|10743994 +thirty-fifth|10744030 +thirty-first|10744065 +thirty-five|10744100 +thirty-four|10744138 +thirty-fourth|10744177 +thirty-nine|10744213 +thirty-ninth|10744250 +thirty-one|10744285 +thirty-second|10744322 +thirty-second note|10744358 +thirty-seven|10744424 +thirty-seventh|10744465 +thirty-six|10744502 +thirty-sixth|10744540 +thirty-something|10744575 +thirty-third|10744636 +thirty-three|10744671 +thirty-two|10744712 +this evening|10744807 +this night|10744847 +thistle|10744887 +thistledown|10744909 +thistlelike|10744937 +thither|10744964 +thlaspi|10744986 +thlaspi arvense|10745047 +thm|10745177 +tho|10745229 +tho'|10745250 +thole|10745279 +tholepin|10745334 +thomas|10745389 +thomas a becket|10745726 +thomas a kempis|10745840 +thomas alva edison|10745927 +thomas aquinas|10746025 +thomas augustus watson|10746216 +thomas babington macaulay|10746318 +thomas bayes|10746449 +thomas bowdler|10746504 +thomas bradley|10746574 +thomas carew|10746674 +thomas carlyle|10746720 +thomas chippendale|10746793 +thomas clayton wolfe|10746881 +thomas crawford|10746965 +thomas de quincey|10747055 +thomas decker|10747125 +thomas dekker|10747223 +thomas edison|10747321 +thomas edward lawrence|10747414 +thomas gainsborough|10747534 +thomas gray|10747604 +thomas hardy|10747647 +thomas hart benton|10747702 +thomas hastings|10747820 +thomas henry huxley|10747889 +thomas higginson|10747984 +thomas hobbes|10748094 +thomas hodgkin|10748150 +thomas hopkins gallaudet|10748232 +thomas hunt morgan|10748320 +thomas huxley|10748399 +thomas j. hanks|10748488 +thomas j. jackson|10748588 +thomas jackson|10748719 +thomas jefferson|10748847 +thomas jonathan jackson|10749001 +thomas kennerly wolfe jr.|10749138 +thomas kid|10749242 +thomas kyd|10749313 +thomas lanier williams|10749384 +thomas malory|10749488 +thomas malthus|10749564 +thomas mann|10749659 +thomas merton|10749711 +thomas middleton|10749779 +thomas moore|10749865 +thomas more|10749911 +thomas nast|10750011 +thomas nelson page|10750060 +thomas paine|10750147 +thomas pynchon|10750240 +thomas reid|10750301 +thomas robert malthus|10750351 +thomas stearns eliot|10750453 +thomas straussler|10750548 +thomas sully|10750653 +thomas sydenham|10750702 +thomas tallis|10750811 +thomas the doubting apostle|10750873 +thomas wentworth storrow higginson|10750999 +thomas wolfe|10751127 +thomas woodrow wilson|10751279 +thomas wright waller|10751452 +thomas young|10751544 +thomism|10751608 +thomomys|10751673 +thomomys bottae|10751728 +thomomys talpoides|10751847 +thompson|10751974 +thompson seedless|10752144 +thompson submachine gun|10752204 +thomsen's disease|10752286 +thomson|10752359 +thomson's gazelle|10752620 +thong|10752690 +thor|10752745 +thor hyerdahl|10752776 +thoracic|10752838 +thoracic actinomycosis|10752874 +thoracic aorta|10752920 +thoracic cavity|10752950 +thoracic duct|10753015 +thoracic medicine|10753068 +thoracic nerve|10753122 +thoracic outlet syndrome|10753175 +thoracic vein|10753218 +thoracic vertebra|10753286 +thoracocentesis|10753338 +thoracoepigastric vein|10753372 +thorax|10753458 +thorazine|10753531 +thoreau|10753766 +thoreauvian|10753825 +thoriate|10753871 +thoriated|10753909 +thorite|10753957 +thorium|10753982 +thorium-228|10754042 +thorn|10754104 +thorn apple|10754276 +thornbill|10754308 +thorndike|10754339 +thornless|10754448 +thornton|10754475 +thornton niven wilder|10754538 +thornton wilder|10754649 +thorny|10754754 +thorny amaranth|10754891 +thorny skate|10754958 +thorough|10754999 +thorough bass|10755066 +thoroughbred|10755141 +thoroughbred race|10755345 +thoroughbred racing|10755383 +thoroughfare|10755425 +thoroughgoing|10755458 +thoroughly|10755627 +thoroughness|10755678 +thoroughwort|10755734 +thorpe|10755818 +thorshavn|10755886 +thorstein bunde veblen|10755944 +thorstein veblen|10756049 +thortveitite|10756148 +thoth|10756178 +thou|10756214 +though|10756294 +thought|10756323 +thought transference|10756800 +thought-image|10756523 +thought-provoking|10756583 +thought-reader|10756634 +thoughtful|10756910 +thoughtfulness|10757256 +thoughtless|10757446 +thoughtlessly|10757707 +thoughtlessness|10757753 +thousand|10757853 +thousand and one nights|10758019 +thousand island dressing|10758140 +thousand times|10758223 +thousand-fold|10757982 +thousandth|10758260 +thrace|10758361 +thracian|10758456 +thraco-phrygian|10758499 +thraldom|10758590 +thrall|10758664 +thralldom|10758758 +thrash|10758832 +thrash about|10759208 +thrash out|10759301 +thrasher|10759359 +thrashing|10759522 +thraupidae|10759690 +thread|10759751 +thread blight|10760249 +thread maker|10760279 +thread-fish|10760114 +threadbare|10760331 +threaded|10760456 +threader|10760477 +threadfin|10760512 +threadfish|10760563 +threadleaf groundsel|10760617 +threadlike|10760670 +threads|10760737 +threadworm|10760988 +thready|10761073 +threat|10761172 +threaten|10761311 +threatened|10761520 +threatened abortion|10761551 +threatening|10761642 +threateningly|10761777 +three|10761810 +three hundred|10764806 +three kings' day|10764846 +three times|10764960 +three-bagger|10761976 +three-banded armadillo|10762043 +three-base hit|10762112 +three-card monte|10762179 +three-centered arch|10762243 +three-cornered|10762302 +three-cornered leek|10762374 +three-d|10762455 +three-day event|10762692 +three-day measles|10762734 +three-decker|10762826 +three-dimensional|10762935 +three-dimensional figure|10763117 +three-dimensional radar|10763171 +three-dimensionality|10763277 +three-figure|10763343 +three-fourths|10763378 +three-hitter|10763433 +three-hundredth|10763492 +three-lane|10763531 +three-legged|10763561 +three-membered|10763590 +three-mile limit|10763634 +three-party|10763695 +three-piece|10763783 +three-piece suit|10763816 +three-ply|10763856 +three-point landing|10763881 +three-point switch|10763944 +three-point turn|10764030 +three-quarter|10764069 +three-quarter binding|10764103 +three-ring circus|10764166 +three-seeded mercury|10764200 +three-sided|10764260 +three-spined stickleback|10764327 +three-toed sloth|10764408 +three-way|10764475 +three-way calling|10764563 +three-way switch|10764606 +three-wheel|10764692 +three-wheeled|10764749 +threefold|10764990 +threepence|10765093 +threepenny|10765118 +threescore|10765226 +threesome|10765278 +threnody|10765469 +threonine|10765522 +thresh|10765562 +thresh about|10765744 +thresher|10765837 +thresher shark|10766009 +thresher's lung|10765959 +threshing|10766084 +threshing floor|10766114 +threshing machine|10766144 +threshold|10766202 +threshold element|10766521 +threshold function|10766577 +threshold gate|10766636 +threshold level|10766692 +threshold operation|10766752 +threskiornis|10766791 +threskiornis aethiopica|10766856 +threskiornithidae|10766930 +thrift|10767029 +thrift institution|10767134 +thriftiness|10767232 +thriftless|10767282 +thriftlessness|10767314 +thriftshop|10767387 +thrifty|10767436 +thrill|10767567 +thrilled|10767949 +thriller|10767975 +thrillful|10768021 +thrilling|10768048 +thrinax|10768108 +thrinax keyensis|10768177 +thrinax microcarpa|10768307 +thrinax morrisii|10768439 +thrinax parviflora|10768569 +thrip|10768674 +thripid|10768752 +thripidae|10768830 +thrips|10768893 +thrips tobaci|10769040 +thrive|10769123 +thriving|10769234 +throat|10769354 +throat infection|10769423 +throat protector|10769577 +throat sweetbread|10769622 +throated|10769685 +throatwort|10769710 +throaty|10769797 +throb|10769830 +throbbing|10770013 +throe|10770118 +throes|10770178 +thrombasthenia|10770273 +thrombectomy|10770352 +thrombin|10770416 +thrombocyte|10770444 +thrombocytopenia|10770517 +thrombocytopenic purpura|10770585 +thrombocytosis|10770750 +thromboembolism|10770782 +thrombokinase|10770817 +thrombolysis|10770901 +thrombolytic|10770929 +thrombolytic agent|10770997 +thrombolytic therapy|10771065 +thrombopenia|10771103 +thrombophlebitis|10771171 +thromboplastin|10771207 +thrombose|10771291 +thrombosed|10771328 +thrombosis|10771359 +thrombus|10771389 +throne|10771421 +throng|10771628 +thronged|10771731 +throstle|10771757 +throttle|10771842 +throttle valve|10772139 +throttlehold|10772190 +throttler|10772254 +throttling|10772323 +through|10772401 +through an experiment|10772485 +through and through|10772549 +through empirical observation|10772585 +through with|10772654 +throughout|10772724 +throughput|10772767 +throughway|10772810 +throw|10772916 +throw a fit|10773830 +throw away|10774034 +throw back|10774265 +throw cold water on|10774315 +throw in|10774374 +throw in the towel|10774624 +throw off|10774743 +throw out|10774907 +throw out of kilter|10775278 +throw overboard|10775341 +throw pillow|10775424 +throw rug|10775454 +throw stick|10775506 +throw together|10775571 +throw up|10775671 +throw-in|10773777 +throw-weight|10773801 +throwaway|10775835 +throwback|10776121 +thrower|10776234 +throwing away|10776401 +throwing board|10776444 +throwing stick|10776517 +thrown|10776638 +thrown and twisted|10776752 +thrown-away|10776693 +throwster|10776795 +thrum|10776829 +thrush|10776915 +thrush nightingale|10777039 +thrust|10777092 +thrust ahead|10777553 +thrust bearing|10777692 +thrust fault|10777724 +thrust out|10777792 +thrust stage|10777840 +thruster|10777890 +thrusting|10777974 +thruway|10778032 +thryothorus|10778138 +thryothorus ludovicianus|10778200 +thucydides|10778289 +thud|10778346 +thudding|10778519 +thug|10778568 +thuggee|10778671 +thuggery|10778713 +thuja|10778750 +thuja occidentalis|10778800 +thuja orientalis|10778911 +thuja plicata|10779008 +thujopsis|10779096 +thujopsis dolobrata|10779158 +thule|10779234 +thulium|10779358 +thumb|10779418 +thumb index|10779597 +thumbed|10779624 +thumbhole|10779646 +thumbnail|10779689 +thumbnut|10779719 +thumbprint|10779784 +thumbscrew|10779816 +thumbstall|10779871 +thumbtack|10779939 +thump|10780010 +thump out|10780135 +thumping|10780176 +thunbergia|10780273 +thunbergia alata|10780341 +thunder|10780428 +thunder bay|10780605 +thunder lizard|10780672 +thunder mug|10780790 +thunder snake|10780839 +thunderbird|10780916 +thunderbolt|10780963 +thunderclap|10781055 +thundercloud|10781122 +thunderer|10781182 +thundering|10781257 +thunderous|10781301 +thundershower|10781386 +thunderstorm|10781419 +thunderstruck|10781493 +thundery|10781573 +thunk|10781652 +thunnus|10781673 +thunnus alalunga|10781723 +thunnus albacares|10781801 +thunnus thynnus|10781882 +thurber|10781970 +thurible|10782060 +thurifer|10782092 +thurify|10782118 +thuringia|10782172 +thursday|10782273 +thus|10782311 +thus far|10782409 +thusly|10782492 +thwack|10782515 +thwart|10782553 +thwarted|10782696 +thwarter|10782779 +thwarting|10782878 +thwartwise|10782995 +thylacine|10783054 +thylacinus|10783156 +thylacinus cynocephalus|10783217 +thylogale|10783343 +thyme|10783401 +thyme camphor|10783587 +thyme-leaved sandwort|10783450 +thyme-leaved speedwell|10783513 +thymelaeaceae|10783636 +thymelaeales|10783741 +thymic acid|10783831 +thymidine|10783880 +thymine|10783925 +thymol|10783955 +thymosin|10784004 +thymus|10784059 +thymus gland|10784176 +thymus serpyllum|10784246 +thymus vulgaris|10784321 +thyreophora|10784381 +thyreophoran|10784461 +thyrocalcitonin|10784529 +thyroglobulin|10784581 +thyroid|10784634 +thyroid cartilage|10784954 +thyroid gland|10785012 +thyroid hormone|10785084 +thyroid vein|10785146 +thyroid-stimulating hormone|10784810 +thyroidal|10785213 +thyroidectomy|10785280 +thyroiditis|10785345 +thyromegaly|10785393 +thyronine|10785443 +thyroprotein|10785492 +thyrotoxic|10785544 +thyrotoxicosis|10785623 +thyrotrophic hormone|10785723 +thyrotrophin|10785867 +thyrotropic hormone|10786011 +thyrotropin|10786155 +thyrotropin-releasing factor|10786299 +thyrotropin-releasing hormone|10786423 +thyroxin|10786547 +thyroxine|10786612 +thyrse|10786677 +thyrsopteris|10786716 +thyrsopteris elegans|10786769 +thyrsus|10786843 +thysanocarpus|10786882 +thysanopter|10786961 +thysanoptera|10787025 +thysanopteron|10787092 +thysanopterous insect|10787156 +thysanura|10787220 +thysanuran insect|10787278 +thysanuron|10787323 +thz|10787368 +ti|10787400 +tia|10787531 +tiamat|10787593 +tianjin|10787630 +tiara|10787705 +tiarella|10787739 +tiarella cordifolia|10787799 +tiarella unifoliata|10787922 +tiber|10788026 +tiberius|10788060 +tiberius claudius drusus nero germanicus|10788156 +tiberius claudius nero caesar augustus|10788297 +tibet|10788423 +tibetan|10788493 +tibetan buddhism|10788599 +tibetan mastiff|10788659 +tibetan terrier|10788708 +tibeto-burman|10788775 +tibeto-burman language|10788870 +tibia|10788974 +tibia valga|10789012 +tibia vara|10789103 +tibial|10789188 +tibial vein|10789212 +tibialis|10789277 +tibialis anterior|10789361 +tibialis anticus|10789448 +tibialis muscle|10789535 +tibialis posterior|10789619 +tibialis posticus|10789708 +tibicen|10789797 +tibur|10789852 +tic|10789885 +tic douloureux|10790029 +tic-tac-toe|10789927 +tical|10790093 +tichodroma|10790132 +tichodroma muriaria|10790191 +tichodrome|10790285 +ticino|10790359 +tick|10790402 +tick fever|10790982 +tick off|10791060 +tick over|10791120 +tick trefoil|10791144 +tick-tack-toe|10790649 +tick-weed|10790832 +ticker|10791211 +ticker tape|10791375 +ticket|10791420 +ticket agent|10791665 +ticket book|10791742 +ticket booth|10791804 +ticket collector|10791874 +ticket holder|10791981 +ticket line|10792018 +ticket office|10792058 +ticket stub|10792128 +ticket taker|10792162 +ticket tout|10792269 +ticket window|10792303 +ticket-of-leave|10791620 +ticking|10792333 +ticking bomb|10792398 +tickle|10792440 +tickler|10792656 +tickler coil|10792701 +tickler file|10792728 +tickling|10792773 +ticklish|10792862 +tickseed|10792904 +tickseed sunflower|10792973 +ticktack|10793103 +ticktacktoe|10793178 +ticktacktoo|10793280 +ticktock|10793382 +tickweed|10793464 +ticonderoga|10793533 +tictac|10793598 +tidal|10793645 +tidal basin|10793690 +tidal bore|10793717 +tidal current|10793785 +tidal flow|10793834 +tidal river|10793883 +tidal stream|10793969 +tidal wave|10794055 +tidal zone|10794101 +tidbit|10794126 +tiddler|10794200 +tiddley|10794315 +tiddly|10794546 +tiddlywinks|10794777 +tide|10794811 +tide over|10795035 +tide rip|10795101 +tidemark|10795181 +tidewater|10795209 +tidewater river|10795331 +tidewater stream|10795417 +tideway|10795503 +tidiness|10795528 +tidings|10795592 +tidy|10795649 +tidy sum|10795993 +tidy tips|10796233 +tidy up|10796367 +tidytips|10796449 +tie|10796502 +tie beam|10797312 +tie clip|10797339 +tie down|10797375 +tie dye|10797466 +tie in|10797492 +tie rack|10797607 +tie rod|10797630 +tie tack|10797651 +tie up|10797689 +tie-in|10797127 +tie-on|10797194 +tie-up|10797221 +tieback|10797898 +tiebreaker|10797939 +tied|10797979 +tied up|10798087 +tien shan|10798165 +tien-pao|10798109 +tientsin|10798284 +tiepin|10798360 +tiepolo|10798398 +tier|10798457 +tier up|10798596 +tierce|10798625 +tiercel|10798852 +tiered|10798890 +tiered seats|10798915 +tierra del fuego|10798977 +tietze's syndrome|10799032 +tiff|10799086 +tiffany|10799189 +tiffany glass|10799259 +tiffin|10799310 +tiflis|10799362 +tiger|10799420 +tiger beetle|10799523 +tiger cat|10799552 +tiger cowrie|10799652 +tiger cub|10799702 +tiger lily|10799741 +tiger moth|10799855 +tiger rattlesnake|10799896 +tiger salamander|10799959 +tiger shark|10800037 +tiger snake|10800091 +tigerish|10800150 +tigers|10800189 +tight|10800489 +tight end|10801519 +tight money|10801542 +tight-fitting|10801285 +tight-knit|10801330 +tight-laced|10801374 +tighten|10801602 +tighten one's belt|10801820 +tighten up|10801873 +tightened|10801974 +tightening|10802017 +tightfisted|10802072 +tightfistedness|10802134 +tightlipped|10802262 +tightly fitting|10802356 +tightly knit|10802401 +tightness|10802445 +tightrope|10802655 +tightrope walker|10802679 +tights|10802725 +tightwad|10802783 +tiglon|10802818 +tigon|10802852 +tigress|10802886 +tigris|10802925 +tigris river|10802967 +tijuana|10803015 +tike|10803069 +til now|10803268 +tilapia|10803351 +tilapia nilotica|10803401 +tilde|10803471 +tilden|10803513 +tile|10803591 +tile cutter|10803660 +tile roof|10803709 +tiled|10803733 +tilefish|10803756 +tiler|10803886 +tilia|10803908 +tilia americana|10803963 +tilia cordata|10804079 +tilia heterophylla|10804197 +tilia japonica|10804313 +tilia tomentosa|10804425 +tiliaceae|10804535 +tiling|10804618 +tiliomycetes|10804663 +till|10804723 +tillable|10804880 +tillage|10804940 +tillandsia|10805052 +tillandsia usneoides|10805130 +tilled|10805276 +tilled land|10805308 +tiller|10805405 +tilletia|10805560 +tilletia caries|10805615 +tilletia foetida|10805678 +tilletiaceae|10805757 +tillich|10805826 +tilling|10805932 +tilt|10805961 +tilt angle|10806456 +tilt-top table|10806393 +tilted|10806482 +tilter|10806535 +tilth|10806615 +tilting board|10806736 +tiltyard|10806819 +tim leary|10806842 +timalia|10806926 +timaliidae|10806976 +timbale|10807037 +timbale case|10807086 +timber|10807123 +timber hitch|10807354 +timber line|10807382 +timber rattlesnake|10807510 +timber wolf|10807604 +timber-framed|10807322 +timbered|10807652 +timberland|10807733 +timberline|10807834 +timberman|10807881 +timbre|10807917 +timbrel|10807968 +timbuktu|10808011 +time|10808067 +time and a half|10809623 +time and again|10809669 +time and motion study|10809762 +time and time again|10809889 +time being|10809982 +time bill|10810025 +time bomb|10810095 +time capsule|10810166 +time clock|10810198 +time constant|10810224 +time deposit|10810283 +time deposit account|10810331 +time draft|10810393 +time exposure|10810463 +time frame|10810532 +time immemorial|10810586 +time interval|10810660 +time lag|10810716 +time limit|10810812 +time loan|10810866 +time machine|10810890 +time note|10810920 +time of arrival|10810973 +time of day|10811031 +time of departure|10811073 +time of life|10811135 +time of origin|10811191 +time of year|10811231 +time off|10811294 +time out|10811346 +time out of mind|10811456 +time period|10811530 +time plan|10811614 +time scale|10811685 +time series|10811726 +time sharing|10811757 +time sheet|10811787 +time signal|10811838 +time signature|10811881 +time slot|10811945 +time study|10811992 +time to come|10812119 +time unit|10812172 +time value|10812228 +time zone|10812286 +time-and-motion study|10808558 +time-ball|10808766 +time-consuming|10808800 +time-delay measuring instrument|10808829 +time-delay measuring system|10808910 +time-fuse|10808991 +time-honored|10809047 +time-honoured|10809137 +time-motion study|10809226 +time-out|10809353 +time-scale factor|10809463 +time-switch|10809503 +time-tested|10809565 +timecard|10812328 +timed|10812389 +timekeeper|10812412 +timekeeping|10812532 +timeless|10812562 +timeless existence|10812609 +timelessness|10812685 +timeliness|10812761 +timely|10812844 +timepiece|10812955 +timer|10813040 +times|10813129 +times square|10813651 +timesaving|10813700 +timeserver|10813749 +timeserving|10813793 +timetable|10813850 +timework|10813894 +timeworn|10813917 +timgad|10814030 +timid|10814058 +timidity|10814343 +timidly|10814440 +timidness|10814472 +timimoun|10814537 +timing|10814569 +timolol|10814621 +timor|10814716 +timor sea|10814744 +timorese|10814777 +timorous|10814840 +timorously|10814879 +timorousness|10814907 +timothy|10815000 +timothy francis leary|10815088 +timothy leary|10815184 +timothy miles bindon rice|10815272 +timpani|10815360 +timpanist|10815456 +timucu|10815493 +timur|10815533 +timur lenk|10815600 +tin|10815672 +tin can|10815909 +tin disease|10815986 +tin ear|10816062 +tin foil|10816152 +tin hat|10816305 +tin opener|10816349 +tin pan alley|10816387 +tin pest|10816451 +tin plague|10816527 +tin plate|10816603 +tin pyrites|10816634 +tin whistle|10816672 +tin-plating|10815851 +tinamidae|10816763 +tinamiformes|10816821 +tinamou|10816888 +tinbergen|10816925 +tinca|10817057 +tinca tinca|10817101 +tinct|10817163 +tincture|10817207 +tincture of iodine|10817525 +tincture of opium|10817580 +tindal|10817623 +tindale|10817748 +tinder|10817874 +tinderbox|10817944 +tine|10817984 +tine test|10818004 +tinea|10818060 +tinea barbae|10818160 +tinea capitis|10818221 +tinea corporis|10818269 +tinea cruris|10818318 +tinea pedis|10818393 +tinea pellionella|10818454 +tinea unguium|10818536 +tined|10818584 +tineid|10818615 +tineid moth|10818664 +tineidae|10818713 +tineoid|10818773 +tineoid moth|10818808 +tineoidea|10818843 +tineola|10818911 +tineola bisselliella|10818966 +tinfoil|10819064 +ting|10819095 +tinge|10819151 +tinged|10819430 +tingidae|10819480 +tingle|10819540 +tingling|10819726 +tininess|10819889 +tink|10819973 +tinker|10820015 +tinker's dam|10820368 +tinker's damn|10820454 +tinker's root|10820540 +tinkerer|10820643 +tinkle|10820787 +tinkling|10820847 +tinkly|10820892 +tinned|10820937 +tinned goods|10820970 +tinned meat|10821053 +tinner|10821137 +tinnevelly senna|10821168 +tinning|10821315 +tinnitus|10821409 +tinny|10821435 +tinpot|10821519 +tinsel|10821545 +tinseled|10821741 +tinselly|10821796 +tinsmith|10821851 +tinsnips|10821882 +tint|10821919 +tintack|10822022 +tinter|10822044 +tinting|10822099 +tintinnabulate|10822135 +tintinnabulation|10822169 +tintometer|10822214 +tintoretto|10822301 +tinware|10822358 +tiny|10822395 +tip|10822468 +tip in|10823301 +tip off|10823333 +tip over|10823369 +tip sheet|10823498 +tip table|10823529 +tip truck|10823592 +tip-and-run|10823054 +tip-off|10823097 +tip-tilted|10823151 +tip-top table|10823198 +tip-up|10823261 +tipi|10823679 +tipped|10823750 +tipper|10823831 +tipper lorry|10823947 +tipper truck|10824034 +tippet|10824121 +tipple|10824149 +tippler|10824224 +tippy|10824285 +tippytoe|10824329 +tipsiness|10824363 +tipstaff|10824445 +tipster|10824469 +tipsy|10824518 +tipsy cake|10824749 +tiptoe|10824776 +tiptop|10824834 +tipu|10824906 +tipu tree|10824969 +tipuana|10825032 +tipulidae|10825089 +tirade|10825152 +tiramisu|10825226 +tirana|10825265 +tire|10825322 +tire chains|10825629 +tire iron|10825668 +tire out|10825713 +tire tool|10825819 +tired|10825864 +tired of|10826327 +tiredly|10826386 +tiredness|10826410 +tireless|10826463 +tirelessly|10826576 +tirelessness|10826623 +tiresias|10826702 +tiresome|10826744 +tiresomely|10826836 +tiresomeness|10826874 +tirich mir|10826932 +tiring|10826977 +tiro|10827031 +tirol|10827092 +tirso de molina|10827134 +tisane|10827211 +tisha b'ab|10827247 +tisha b'av|10827375 +tishah b'ab|10827503 +tishah b'av|10827632 +tishri|10827761 +tisiphone|10827806 +tissue|10827858 +tissue layer|10827970 +tissue paper|10828015 +tissue plasminogen activator|10828050 +tissue typing|10828141 +tit|10828197 +tit for tat|10828468 +tit-tat-toe|10828366 +titan|10828521 +titan arum|10828666 +titaness|10828726 +titania|10828765 +titanic|10828883 +titanic acid|10828906 +titanic oxide|10828933 +titanium|10829010 +titanium dioxide|10829071 +titanium oxide|10829148 +titanosaur|10829225 +titanosaurian|10829268 +titanosauridae|10829311 +titanosaurus|10829387 +titbit|10829455 +titer|10829529 +titfer|10829564 +tithe|10829596 +tithe barn|10829681 +tither|10829706 +tithonia|10829740 +titi|10829783 +titi family|10829997 +titi monkey|10830104 +titian|10830159 +titillate|10830210 +titillated|10830295 +titillating|10830330 +titillation|10830413 +titivate|10830519 +titivation|10830621 +titlark|10830664 +title|10830711 +title deed|10831287 +title of respect|10831337 +title page|10831418 +title role|10831443 +title-holder|10831200 +titled|10831517 +titmouse|10831617 +tito|10831658 +titrate|10831733 +titration|10831767 +titrator|10831806 +titre|10831840 +titter|10831875 +titterer|10831952 +tittering|10831986 +tittivate|10832046 +tittivation|10832148 +tittle|10832191 +tittle-tattle|10832315 +titty|10832595 +titular|10832660 +titulary|10832840 +titus|10832877 +titus flavius domitianus|10833076 +titus flavius sabinus vespasianus|10833174 +titus flavius vespasianus|10833291 +titus livius|10833415 +titus lucretius carus|10833481 +titus maccius plautus|10833561 +titus oates|10833643 +titus vespasianus augustus|10833727 +tiu|10833852 +tivoli|10833887 +tiyin|10833921 +tiziano vecellio|10833962 +tizzy|10834023 +tjalling charles koopmans|10834072 +tjalling koopmans|10834186 +tko|10834292 +tl|10834340 +tlc|10834404 +tlingit|10834467 +tm|10834571 +tmv|10834634 +tn|10834684 +tnf|10834740 +tnt|10834811 +to a fault|10834970 +to a great extent|10835012 +to a greater extent|10835046 +to a higher degree|10835079 +to a higher place|10835116 +to a lesser degree|10835176 +to a lesser extent|10835213 +to a lower place|10835245 +to a t|10835301 +to a tolerable degree|10835362 +to all intents and purposes|10835436 +to an adequate degree|10835528 +to and fro|10835602 +to be precise|10835657 +to be sure|10835715 +to begin with|10835757 +to boot|10835834 +to both ears|10835875 +to date|10835920 +to each one|10835946 +to it|10836005 +to leeward|10836035 +to no degree|10836076 +to one ear|10836104 +to perfection|10836145 +to that|10836199 +to that degree|10836229 +to that extent|10836285 +to the contrary|10836341 +to the full|10836405 +to the highest degree|10836436 +to the hilt|10836471 +to the letter|10836504 +to the limit|10836558 +to the lowest degree|10836591 +to the north|10836626 +to the point|10836697 +to the south|10836738 +to what degree|10836778 +to what extent|10836816 +to windward|10836854 +to-do|10834863 +toad|10836924 +toad frog|10837025 +toad lily|10837093 +toad rush|10837144 +toad-in-the-hole|10836992 +toadfish|10837184 +toadflax|10837249 +toadshade|10837336 +toadstool|10837432 +toady|10837458 +toadyish|10837584 +toast|10837655 +toast mistress|10837856 +toasted|10837892 +toaster|10837916 +toaster oven|10838022 +toasting|10838062 +toasting fork|10838117 +toastmaster|10838145 +toastrack|10838198 +tobacco|10838222 +tobacco budworm|10838314 +tobacco hornworm|10838418 +tobacco industry|10838482 +tobacco juice|10838517 +tobacco mildew|10838560 +tobacco mosaic|10838632 +tobacco mosaic virus|10838663 +tobacco moth|10838709 +tobacco pipe|10838781 +tobacco pouch|10838820 +tobacco shop|10838849 +tobacco thrips|10838911 +tobacco user|10838976 +tobacco wilt|10839014 +tobacconist|10839068 +tobacconist shop|10839184 +tobago|10839246 +tobagonian|10839276 +tobey|10839343 +tobias george smollett|10839383 +tobias smollett|10839477 +tobin|10839564 +tobin bronze|10839623 +tobit|10839744 +toboggan|10839784 +toboggan cap|10839845 +tobogganing|10839892 +tobogganist|10839922 +tobramycin|10839951 +toby|10840005 +toby fillpot jug|10840049 +toby jug|10840093 +tocainide|10840137 +tocantins|10840226 +tocantins river|10840277 +toccata|10840334 +tocharian|10840409 +tocktact|10840488 +tocology|10840535 +tocopherol|10840604 +tocqueville|10840668 +tocsin|10840781 +tod|10840867 +toda|10840920 +today|10840977 +todd|10841082 +toddle|10841213 +toddler|10841269 +toddy|10841388 +toddy alm|10841425 +toddy palm|10841515 +todea|10841615 +todea barbara|10841659 +todea superba|10841722 +todidae|10841862 +todus|10841914 +tody|10841958 +toe|10841989 +toe crack|10842243 +toe dance|10842273 +toe dancing|10842340 +toe the line|10842407 +toe toe|10842452 +toe-in|10842217 +toea|10842600 +toecap|10842635 +toed|10842699 +toehold|10842770 +toeless|10842849 +toenail|10842874 +toetoe|10842923 +toff|10843064 +toffee|10843116 +toffee apple|10843182 +toffee-nosed|10843152 +toffy|10843287 +tofieldia|10843323 +tofieldia pusilla|10843389 +tofranil|10843465 +tofu|10843600 +tog|10843629 +tog out|10843730 +tog up|10843888 +toga|10844046 +toga virilis|10844066 +togaviridae|10844093 +togavirus|10844147 +together|10844179 +togetherness|10844321 +togged|10844362 +togged up|10844391 +toggle|10844511 +toggle bolt|10844807 +toggle joint|10844863 +toggle switch|10844891 +togo|10844990 +togo franc|10845058 +togolese|10845095 +togolese republic|10845176 +togs|10845257 +toil|10845326 +toiler|10845425 +toilet|10845448 +toilet article|10845777 +toilet bag|10845853 +toilet bowl|10845888 +toilet facility|10845914 +toilet kit|10846088 +toilet paper|10846123 +toilet powder|10846195 +toilet roll|10846252 +toilet seat|10846316 +toilet soap|10846342 +toilet table|10846388 +toilet tissue|10846446 +toilet water|10846518 +toilet-train|10845667 +toilet-trained|10845719 +toiletries|10846572 +toiletry|10846711 +toilette|10846787 +toiling|10846830 +toilsome|10846880 +toilsomeness|10846979 +toitoi|10847041 +tojo|10847108 +tojo eiki|10847168 +tojo hideki|10847233 +tokamak|10847300 +tokay|10847325 +toke|10847384 +token|10847413 +token economy|10847543 +token money|10847605 +token payment|10847632 +tokenish|10847663 +tokio|10847703 +toklas|10847796 +tokyo|10847849 +tolazamide|10847942 +tolazoline|10847984 +tolbooth|10848029 +tolbutamide|10848093 +tole|10848174 +tolectin|10848198 +toledo|10848314 +tolerable|10848409 +tolerably|10848535 +tolerance|10848632 +tolerant|10848832 +tolerate|10848993 +toleration|10849232 +tolinase|10849332 +tolkien|10849383 +toll|10849486 +toll agent|10849605 +toll call|10849699 +toll collector|10849762 +toll house cookie|10849856 +toll line|10849944 +toll plaza|10850028 +toll taker|10850106 +toll-free|10849583 +tollbar|10850200 +tollbooth|10850231 +toller|10850295 +tollgate|10850434 +tollgatherer|10850465 +tollhouse|10850559 +tollkeeper|10850623 +tollman|10850717 +tollon|10850811 +tolmetin sodium|10850920 +tolmiea|10851027 +tolmiea menziesii|10851084 +tolstoy|10851196 +tolu|10851279 +tolu balsam|10851341 +tolu balsam tree|10851389 +tolu tree|10851470 +toluene|10851551 +toluic acid|10851651 +tolypeutes|10851677 +tolypeutes tricinctus|10851738 +tom|10851829 +tom and jerry|10852085 +tom bradley|10852138 +tom collins|10852235 +tom hanks|10852285 +tom paine|10852379 +tom sawyer|10852469 +tom stoppard|10852551 +tom thumb|10852651 +tom turkey|10852745 +tom wolfe|10852816 +tom-tom|10852031 +tomahawk|10852904 +tomalley|10852978 +tomas de torquemada|10853002 +tomatillo|10853079 +tomato|10853328 +tomato blight|10853443 +tomato concentrate|10853488 +tomato fruitworm|10853528 +tomato hornworm|10853632 +tomato juice|10853705 +tomato ketchup|10853733 +tomato paste|10853790 +tomato plant|10853831 +tomato sauce|10853917 +tomato streak|10853967 +tomato worm|10854002 +tomato yellows|10854066 +tomb|10854111 +tombac|10854160 +tombak|10854202 +tombaugh|10854244 +tombigbee|10854327 +tombigbee river|10854378 +tombola|10854435 +tomboy|10854468 +tomboyish|10854541 +tomboyishness|10854613 +tombstone|10854658 +tomcat|10854722 +tome|10854794 +tomentose|10854813 +tomentous|10854884 +tomentum|10854927 +tomentum cerebri|10855028 +tomfool|10855090 +tomfoolery|10855149 +tomistoma|10855241 +tomistoma schlegeli|10855300 +tommy gun|10855394 +tommyrot|10855462 +tomograph|10855612 +tomography|10855645 +tomorrow|10855708 +tomtate|10855819 +tomtit|10855864 +ton|10855918 +tonal|10856009 +tonal language|10856085 +tonal pattern|10856147 +tonal system|10856196 +tonality|10856268 +tone|10856307 +tone arm|10857159 +tone deafness|10857213 +tone down|10857266 +tone ending|10857362 +tone language|10857421 +tone of voice|10857483 +tone poem|10857546 +tone system|10857638 +tone up|10857710 +tone-beginning|10857075 +tone-deaf|10857135 +toned|10857761 +toned down|10857795 +tonegawa susumu|10857832 +toneless|10857893 +toner|10857920 +tong ho|10857980 +tonga|10858073 +tongan|10858183 +tongan monetary unit|10858249 +tongs|10858314 +tongue|10858350 +tongue and groove joint|10859250 +tongue depressor|10859321 +tongue fern|10859357 +tongue tie|10859428 +tongue twister|10859555 +tongue worm|10859606 +tongue-fish|10858649 +tongue-flower|10858771 +tongue-in-cheek|10858914 +tongue-lashing|10859023 +tongue-shaped|10859123 +tongue-tie|10859164 +tongue-tied|10859192 +tongued|10859649 +tonguefish|10859701 +tongueflower|10859742 +tongueless|10859804 +tongueless frog|10859923 +tonguelike|10859997 +tonguing and grooving plane|10860025 +toni morrison|10860116 +tonic|10860198 +tonic accent|10860578 +tonic epilepsy|10860636 +tonic key|10860669 +tonic solfa|10860710 +tonic water|10860761 +tonicity|10860813 +tonight|10860877 +tonka bean|10860941 +tonka bean tree|10861047 +tonnage|10861129 +tonnage duty|10861179 +tonne|10861229 +tonocard|10861291 +tonometer|10861389 +tons|10861463 +tonsil|10861717 +tonsilla|10861806 +tonsilla adenoidea|10861895 +tonsilla pharyngealis|10862034 +tonsillectomy|10862173 +tonsillitis|10862238 +tonsorial|10862286 +tonsure|10862343 +tonsured|10862410 +tontine|10862437 +tontine insurance|10862523 +tonus|10862588 +tony blair|10862652 +too|10862750 +too bad|10863013 +too big for one's breeches|10863054 +too large|10863159 +too little|10863194 +too much|10863237 +too soon|10863300 +too-careful|10862828 +too-generous|10862869 +too-greedy|10862971 +tool|10863337 +tool around|10863642 +tool bag|10863681 +tool cabinet|10863703 +tool case|10863760 +tool chest|10863817 +tool kit|10863874 +tool steel|10863919 +tool-and-die work|10863603 +toolbox|10863951 +toolmaker|10864008 +toona|10864040 +toona calantas|10864091 +tooshie|10864216 +toot|10864427 +tooth|10864540 +tooth decay|10864711 +tooth doctor|10864766 +tooth enamel|10864849 +tooth fairy|10864899 +tooth fungus|10864946 +tooth powder|10864975 +tooth root|10865101 +tooth shell|10865207 +tooth socket|10865249 +toothache|10865287 +toothache tree|10865329 +toothbrush|10865418 +toothbrush tree|10865519 +toothed|10865586 +toothed spurge|10865815 +toothed sword fern|10865864 +toothed whale|10865937 +toothed wheel|10865966 +toothless|10866004 +toothlike|10866115 +toothpaste|10866142 +toothpick|10866173 +toothpowder|10866203 +toothsome|10866248 +toothsomeness|10866341 +toothwort|10866435 +toothy|10866566 +tootle|10866590 +toowomba canary grass|10866647 +top|10866747 +top banana|10868082 +top billing|10868185 +top boot|10868268 +top brass|10868344 +top dog|10868450 +top dressing|10868485 +top executive|10868556 +top fermentation|10868676 +top fermenting yeast|10868752 +top hat|10868797 +top lift|10868892 +top of the inning|10868915 +top of the line|10868962 +top off|10869013 +top onion|10869080 +top out|10869177 +top quark|10869273 +top round|10869310 +top side|10869341 +top-down|10867642 +top-flight|10867669 +top-grade|10867715 +top-heavy|10867769 +top-hole|10867797 +top-level|10867843 +top-quality|10867902 +top-ranking|10867956 +top-secret|10868015 +top-up|10868046 +topaz|10869432 +topcoat|10869533 +topdress|10869574 +tope|10869617 +topee|10869651 +topeka|10869725 +toper|10869780 +toper's nose|10869827 +topgallant|10869961 +topgallant mast|10870054 +topgallant sail|10870098 +tophus|10870160 +topi|10870248 +topiary|10870365 +topic|10870438 +topic sentence|10870576 +topical|10870609 +topical anaesthesia|10870693 +topical anaesthetic|10870764 +topical anesthesia|10870911 +topical anesthetic|10870982 +topicality|10871129 +topicalization|10871174 +topicalize|10871207 +topically|10871282 +topknot|10871308 +topknotted|10871357 +topless|10871410 +topmast|10871482 +topminnow|10871504 +topmost|10871634 +topnotch|10871672 +topognosia|10871744 +topognosis|10871827 +topographic|10871910 +topographic anatomy|10871966 +topographic point|10872045 +topographical|10872089 +topography|10872145 +topolatry|10872240 +topological space|10872310 +topology|10872366 +toponomy|10872554 +toponym|10872642 +toponymy|10872675 +topos|10872763 +topped|10872790 +topper|10872854 +topping|10873098 +toppingly|10873159 +topple|10873256 +toppling|10873339 +tops|10873365 +topsail|10873437 +topside|10873480 +topsoil|10873523 +topspin|10873563 +topsy-turvily|10873585 +topsy-turvy|10873670 +topsy-turvydom|10873844 +topsy-turvyness|10873919 +topv|10873994 +toque|10874116 +tor|10874191 +toradol|10874227 +torah|10874355 +torch|10874550 +torch race|10874807 +torch singer|10874845 +torch song|10874903 +torchbearer|10874928 +torchlight|10874956 +torchwood family|10875014 +tore|10875090 +toreador|10875127 +toreador pant|10875210 +torero|10875261 +torino|10875298 +torment|10875356 +tormented|10875808 +tormenter|10875893 +tormentor|10875972 +torn|10876051 +tornado|10876115 +tornado cellar|10876176 +tornado lantern|10876236 +tornillo|10876324 +torodal|10876418 +toroid|10876526 +toroidal|10876573 +toronto|10876596 +torpedinidae|10876640 +torpediniformes|10876707 +torpedo|10876783 +torpedo boat|10877313 +torpedo tube|10877366 +torpedo-boat destroyer|10877246 +torpid|10877400 +torpidity|10877474 +torpidly|10877604 +torpidness|10877629 +torpor|10877701 +torquato tasso|10877834 +torque|10877884 +torque converter|10877914 +torque wrench|10877960 +torquemada|10877998 +torr|10878066 +torrent|10878122 +torrential|10878454 +torreon|10878524 +torres strait|10878578 +torrey pine|10878758 +torrey tree|10878886 +torrey's pine|10878628 +torreya|10878969 +torreya californica|10879025 +torreya taxifolia|10879107 +torricelli|10879196 +torrid|10879260 +torrid zone|10879374 +torridity|10879443 +torsion|10879492 +torsion balance|10879603 +torsk|10879683 +torso|10879736 +tort|10879772 +tort-feasor|10879848 +torte|10879967 +tortellini|10879987 +tortfeasor|10880030 +torticollis|10880068 +tortilla|10880139 +tortilla chip|10880249 +tortious|10880282 +tortoise|10880349 +tortoise plant|10880374 +tortoiseshell|10880486 +tortoiseshell butterfly|10880812 +tortoiseshell turtle|10880934 +tortoiseshell-cat|10880708 +tortricid|10881048 +tortricid moth|10881087 +tortricidae|10881126 +tortrix|10881195 +tortuosity|10881334 +tortuous|10881425 +tortuousness|10881574 +torture|10881665 +torture chamber|10881988 +tortured|10882018 +torturer|10882082 +torturesome|10882110 +torturing|10882202 +torturous|10882321 +torturously|10882413 +torulose|10882460 +torus|10882488 +tory|10882551 +toscana|10882613 +toscanini|10882661 +tosh|10882741 +tosk|10882891 +tosk dialect|10882932 +toss|10882981 +toss away|10883557 +toss back|10883700 +toss bombing|10883750 +toss in|10883797 +toss off|10883832 +toss out|10883979 +toss-up|10883413 +tossed salad|10884122 +tosser|10884150 +tossing|10884217 +tossup|10884250 +tostada|10884313 +tot|10884351 +tot up|10884636 +total|10884751 +total aphasia|10885093 +total darkness|10885139 +total depravity|10885223 +total eclipse|10885288 +total heat|10885331 +total hysterectomy|10885393 +total parenteral nutrition|10885434 +totaled|10885513 +totalisator|10885540 +totalise|10885722 +totaliser|10885766 +totalism|10886011 +totalistic|10886104 +totalitarian|10886184 +totalitarianism|10886284 +totality|10886515 +totalizator|10886634 +totalize|10886816 +totalizer|10886860 +totally|10887105 +totara|10887169 +tote|10887227 +tote bag|10887302 +tote up|10887346 +totem|10887461 +totem pole|10887537 +totemic|10887578 +totemism|10887601 +toter|10887626 +totipotence|10887675 +totipotency|10887716 +totipotent|10887757 +totten trust|10887784 +totter|10887896 +totterer|10888001 +tottering|10888061 +tottery|10888113 +toucan|10888149 +toucanet|10888179 +touch|10888204 +touch a chord|10889670 +touch base|10889763 +touch down|10889813 +touch football|10889847 +touch off|10889912 +touch on|10890014 +touch perception|10890293 +touch sensation|10890505 +touch system|10890591 +touch typing|10890645 +touch up|10890699 +touch-and-go|10889249 +touch-me-not|10889316 +touch-type|10889606 +touch-typist|10889641 +touchable|10890733 +touchback|10890779 +touchdown|10890812 +touched|10890852 +toucher|10890980 +touchiness|10891050 +touching|10891165 +touchingly|10891287 +touchline|10891329 +touchstone|10891371 +touchwood|10891463 +touchy|10891533 +touchy-feely|10891604 +tough|10891633 +tough guy|10892422 +tough luck|10892511 +tough-minded|10892380 +toughen|10892612 +toughened|10892640 +toughie|10892827 +toughness|10892967 +toulouse|10893131 +toulouse-lautrec|10893187 +toupe|10893261 +toupee|10893313 +toupeed|10893365 +tour|10893389 +tour de force|10893602 +tour de france|10893650 +tour guide|10893702 +tour of duty|10893728 +touraco|10893835 +tourer|10893891 +tourette|10894011 +tourette's syndrome|10894115 +touring|10894204 +touring car|10894253 +tourism|10894326 +tourist|10894404 +tourist class|10894460 +tourist court|10894509 +touristed|10894578 +touristry|10894614 +touristy|10894692 +tourmaline|10894728 +tournament|10894772 +tournedos|10894847 +tourney|10894879 +tourniquet|10894949 +tousle|10895003 +tousled|10895046 +tout|10895110 +tout ensemble|10895396 +touter|10895541 +tovarich|10895590 +tow|10895652 +tow car|10895777 +tow truck|10895829 +tow-headed snake|10895721 +towage|10895881 +toward land|10895919 +toward the sea|10895964 +towboat|10896009 +towel|10896049 +towel bar|10896119 +towel horse|10896153 +towel rack|10896190 +towel rail|10896227 +towel ring|10896261 +toweling|10896291 +towelling|10896349 +tower|10896407 +tower block|10896553 +tower cress|10896590 +tower mustard|10896730 +tower of babel|10896868 +tower of london|10896939 +tower of strength|10896994 +towering|10897065 +towheaded|10897110 +towhee|10897182 +towing line|10897204 +towing path|10897258 +towing rope|10897292 +towline|10897346 +town|10897400 +town clerk|10897554 +town crier|10897595 +town gas|10897631 +town hall|10897658 +town house|10897697 +town meeting|10897733 +town planning|10897787 +townee|10897848 +towner|10897880 +townie|10897932 +townsend|10897970 +townsend harris|10898060 +townsendia|10898129 +townsendia exscapa|10898197 +townsfolk|10898279 +township|10898328 +townsman|10898420 +townspeople|10898504 +towny|10898553 +towpath|10898591 +towrope|10898625 +toxaemia|10898679 +toxaemia of pregnancy|10898837 +toxemia|10898941 +toxemia of pregnancy|10899100 +toxic|10899204 +toxic condition|10899372 +toxic dumpsite|10899464 +toxic industrial waste|10899594 +toxic shock|10899686 +toxic shock syndrome|10899741 +toxic site|10899796 +toxic waste|10899863 +toxic waste area|10899955 +toxic waste dump|10900022 +toxic waste site|10900152 +toxicant|10900282 +toxicity|10900316 +toxicodendron|10900411 +toxicodendron diversilobum|10900499 +toxicodendron quercifolium|10900614 +toxicodendron radicans|10900749 +toxicodendron vernicifluum|10900880 +toxicodendron vernix|10901082 +toxicologic|10901200 +toxicological|10901287 +toxicologist|10901374 +toxicology|10901414 +toxin|10901487 +toxin antitoxin|10901529 +toxoid|10901581 +toxoplasmosis|10901630 +toxostoma|10901663 +toxostoma rufums|10901719 +toxotes|10901814 +toxotes jaculatrix|10901864 +toxotidae|10901954 +toy|10902012 +toy box|10902269 +toy business|10902302 +toy chest|10902346 +toy dog|10902379 +toy industry|10902434 +toy manchester|10902478 +toy manchester terrier|10902581 +toy poodle|10902692 +toy soldier|10902730 +toy spaniel|10902762 +toy terrier|10902795 +toy with|10902828 +toying|10902900 +toynbee|10902991 +toyon|10903079 +toyshop|10903188 +tpn|10903216 +tra-la|10903299 +tra-la-la|10903340 +trabeate|10903381 +trabeated|10903418 +trabecula|10903455 +trabecular|10903489 +trabeculate|10903535 +trablous|10903581 +trace|10903669 +trace detector|10904256 +trace element|10904312 +trace program|10904360 +traceable|10904423 +traced|10904482 +tracer|10904513 +tracer bullet|10904648 +tracery|10904694 +trachea|10904745 +tracheal|10904804 +tracheal vein|10904840 +tracheid|10904909 +tracheitis|10904943 +trachelospermum|10904990 +trachelospermum jasminoides|10905084 +tracheobronchitis|10905187 +tracheophyta|10905241 +tracheophyte|10905307 +tracheostomy|10905367 +tracheotomy|10905474 +trachinotus|10905581 +trachinotus carolinus|10905643 +trachinotus falcatus|10905720 +trachipteridae|10905786 +trachipterus|10905859 +trachipterus arcticus|10905924 +trachodon|10905997 +trachodont|10906070 +trachoma|10906143 +trachurus|10906173 +trachurus symmetricus|10906229 +trachurus trachurus|10906340 +tracing|10906416 +tracing paper|10906485 +tracing routine|10906514 +track|10906588 +track and field|10907250 +track down|10907291 +track event|10907344 +track meet|10907388 +track record|10907428 +track star|10907498 +track-to-track seek time|10907206 +trackable|10907620 +trackball|10907649 +tracked|10907686 +tracked vehicle|10907755 +tracker|10907803 +tracking|10907836 +tracklayer|10907887 +trackless|10907955 +trackless trolley|10908062 +tract|10908191 +tract house|10908439 +tract housing|10908466 +tractability|10908527 +tractable|10908581 +tractableness|10908772 +tractarian|10908826 +tractarianism|10908867 +tractile|10908945 +traction|10909012 +traction engine|10909090 +tractive|10909170 +tractor|10909204 +tractor trailer|10909268 +tracy|10909364 +trad|10909442 +trade|10909461 +trade acceptance|10910167 +trade balance|10910233 +trade barrier|10910307 +trade bill|10910359 +trade book|10910392 +trade cycle|10910431 +trade deficit|10910489 +trade discount|10910520 +trade edition|10910563 +trade embargo|10910602 +trade expense|10910677 +trade gap|10910748 +trade goods|10910822 +trade in|10910877 +trade magazine|10910929 +trade name|10910966 +trade policy|10911015 +trade protection|10911076 +trade rat|10911135 +trade route|10911223 +trade school|10911304 +trade secret|10911398 +trade stoppage|10911427 +trade union|10911502 +trade union movement|10911592 +trade unionism|10911659 +trade unionist|10911734 +trade wind|10911787 +trade-in|10909952 +trade-last|10910018 +trade-off|10910049 +tradecraft|10911829 +traded|10911881 +trademark|10911904 +trademarked|10911992 +tradeoff|10912025 +trader|10912062 +trades union|10912124 +tradescant|10912289 +tradescant's aster|10912373 +tradescantia|10912407 +tradesman|10912491 +trading|10912569 +trading card|10912622 +trading floor|10912649 +trading operations|10912683 +trading post|10912751 +trading stamp|10912859 +tradition|10912893 +traditional|10912975 +traditional knowledge|10913106 +traditionalism|10913182 +traditionalist|10913319 +traditionalistic|10913409 +traditionality|10913447 +traduce|10913496 +traducement|10913622 +traducer|10913720 +trafalgar|10913833 +trafalgar square|10913895 +traffic|10913959 +traffic circle|10914207 +traffic control|10914265 +traffic cop|10914298 +traffic court|10914352 +traffic island|10914401 +traffic jam|10914470 +traffic lane|10914516 +traffic light|10914543 +traffic pattern|10914597 +traffic signal|10914668 +trafficator|10914722 +trafficker|10914792 +tragacanth|10914864 +tragedian|10914888 +tragedienne|10914971 +tragedy|10915000 +tragelaphus|10915090 +tragelaphus angasi|10915186 +tragelaphus buxtoni|10915258 +tragelaphus eurycerus|10915331 +tragelaphus imberbis|10915419 +tragelaphus scriptus|10915501 +tragelaphus strepsiceros|10915585 +tragic|10915676 +tragic flaw|10915717 +tragical|10915752 +tragicomedy|10915781 +tragicomic|10915836 +tragicomical|10915926 +tragopan|10916000 +tragopogon|10916027 +tragopogon dubius|10916095 +tragopogon porrifolius|10916178 +tragopogon pratensis|10916293 +tragulidae|10916410 +tragulus|10916473 +tragulus javanicus|10916528 +tragulus kanchil|10916602 +tragus|10916675 +trail|10916715 +trail bike|10917027 +trail boss|10917083 +trail head|10917114 +trail riding|10917262 +trailblazer|10917308 +trailer|10917423 +trailer camp|10917655 +trailer park|10917695 +trailer truck|10917735 +trailhead|10917831 +trailing|10917898 +trailing arbutus|10917968 +trailing edge|10918030 +trailing four o'clock|10918058 +trailing windmills|10918150 +train|10918242 +train depot|10918911 +train dispatcher|10919021 +train fare|10919137 +train of thought|10919177 +train oil|10919262 +train set|10919302 +train station|10919335 +train ticket|10919445 +trainband|10919490 +trainbandsman|10919534 +trainbearer|10919568 +trained|10919615 +trained nurse|10919742 +trained worker|10919786 +trainee|10919832 +traineeship|10919884 +trainer|10919922 +training|10919980 +training college|10920065 +training program|10920099 +training school|10920145 +training ship|10920235 +training table|10920275 +trainload|10920311 +trainman|10920343 +trainmaster|10920417 +traipse|10920533 +trait|10920561 +traitor|10920586 +traitorous|10920758 +traitorously|10920847 +traitorousness|10920912 +traitress|10920970 +trajan|10921008 +trajectory|10921084 +tralatitious|10921133 +tram|10921179 +tramcar|10921355 +tramline|10921455 +trammel|10921503 +trammel net|10921802 +trammels|10921851 +tramontana|10922080 +tramontane|10922137 +tramp|10922265 +tramp down|10922816 +tramp steamer|10922860 +tramp's spurge|10922736 +tramper|10922907 +trample|10923018 +trampled|10923123 +trampler|10923157 +trampling|10923242 +trampoline|10923275 +tramway|10923325 +trance|10923443 +trancelike|10923651 +tranche|10923680 +trandate|10923727 +tranquil|10923860 +tranquilising|10923940 +tranquility|10924016 +tranquilize|10924165 +tranquilizer|10924334 +tranquilizing|10924503 +tranquillise|10924579 +tranquilliser|10924747 +tranquillity|10924916 +tranquillize|10925083 +tranquillizer|10925251 +trans fatty acid|10925504 +trans-alaska pipeline|10925420 +transact|10925541 +transactinide|10925568 +transaction|10925647 +transaction file|10925698 +transactional immunity|10925750 +transactions|10925816 +transactor|10925938 +transalpine|10925985 +transaminase|10926069 +transaminate|10926133 +transamination|10926189 +transcend|10926318 +transcendence|10926416 +transcendency|10926541 +transcendent|10926666 +transcendental|10926734 +transcendental number|10926826 +transcendental philosophy|10926875 +transcendentalism|10926939 +transcendentalist|10927003 +transcontinental|10927042 +transcortical aphasia|10927080 +transcribe|10927119 +transcribed|10927261 +transcriber|10927313 +transcript|10927443 +transcriptase|10927548 +transcription|10927582 +transcultural|10927812 +transcutaneous|10927842 +transdermal|10927934 +transdermal patch|10928002 +transdermic|10928044 +transduce|10928112 +transducer|10928151 +transducing vector|10928189 +transduction|10928257 +transept|10928368 +transeunt|10928409 +transexual|10928448 +transfer|10928575 +transfer agent|10929167 +transfer of training|10929198 +transfer paper|10929269 +transfer payment|10929299 +transfer rna|10929350 +transfer tax|10929436 +transferability|10929491 +transferable|10929583 +transferase|10929721 +transferee|10929749 +transference|10929857 +transferer|10929969 +transferor|10930007 +transferrable|10930050 +transferral|10930187 +transferred possession|10930252 +transferred property|10930316 +transferrer|10930380 +transferrin|10930418 +transfiguration|10930475 +transfiguration day|10930695 +transfiguration of jesus|10930788 +transfigure|10930871 +transfix|10930998 +transfixed|10931091 +transform|10931187 +transformable|10931435 +transformation|10931507 +transformed|10931726 +transformer|10931755 +transforming gene|10931794 +transfuse|10931850 +transfusion|10931982 +transfusion reaction|10932071 +transgress|10932119 +transgression|10932340 +transgressor|10932466 +transience|10932507 +transiency|10932620 +transient|10932692 +transient global amnesia|10932856 +transient ischemic attack|10932919 +transistor|10932977 +transistorise|10933093 +transistorised|10933160 +transistorize|10933215 +transistorized|10933282 +transit|10933337 +transit declinometer|10933654 +transit instrument|10933752 +transit line|10933796 +transit zone|10933823 +transition|10933868 +transitional|10934071 +transitive|10934127 +transitive verb|10934158 +transitive verb form|10934209 +transitiveness|10934260 +transitivise|10934318 +transitivity|10934373 +transitivize|10934477 +transitoriness|10934532 +transitory|10934604 +translatable|10934696 +translate|10934788 +translating program|10935165 +translation|10935259 +translational|10935562 +translator|10935625 +transliterate|10935834 +transliteration|10935876 +translocate|10935928 +translocation|10935980 +translucence|10936080 +translucency|10936164 +translucent|10936248 +translucent substance|10936291 +translunar|10936359 +translunary|10936474 +transmigrante|10936588 +transmigrate|10936682 +transmigration|10936744 +transmissible|10936790 +transmission|10937025 +transmission channel|10937231 +transmission control protocol|10937282 +transmission control protocol/internet protocol|10937358 +transmission line|10937455 +transmission mechanism|10937503 +transmission shaft|10937545 +transmission system|10937594 +transmission time|10937656 +transmit|10937718 +transmittable|10937948 +transmittal|10938042 +transmittance|10938097 +transmitted|10938145 +transmitter|10938252 +transmitting|10938331 +transmitting aerial|10938386 +transmogrification|10938448 +transmogrify|10938503 +transmontane|10938582 +transmundane|10938640 +transmutability|10938675 +transmutable|10938743 +transmutation|10938815 +transmute|10938965 +transnational|10939095 +transoceanic|10939146 +transom|10939187 +transom window|10939262 +transonic|10939310 +transorbital lobotomy|10939335 +transparence|10939474 +transparency|10939597 +transparent|10939756 +transparent gem|10939952 +transparent quartz|10939996 +transparent substance|10940044 +transparentness|10940112 +transpirate|10940195 +transpiration|10940236 +transpire|10940408 +transpiring|10940617 +transplacental|10940647 +transplant|10940681 +transplantable|10940999 +transplantation|10941030 +transplanter|10941275 +transplanting|10941317 +transpolar|10941376 +transponder|10941431 +transport|10941470 +transport ship|10941959 +transportable|10941988 +transportation|10942062 +transportation company|10942420 +transportation safety administration|10942460 +transportation secretary|10942611 +transportation system|10942782 +transporter|10942858 +transposability|10942983 +transposable|10943104 +transpose|10943150 +transposed|10943407 +transposition|10943454 +transposon|10943761 +transsexual|10943843 +transsexual surgery|10943987 +transsexualism|10944110 +transship|10944144 +transshipment|10944178 +transshipment center|10944248 +transubstantiate|10944292 +transubstantiation|10944385 +transudate|10944485 +transudation|10944537 +transude|10944626 +transuranic|10944701 +transuranic element|10944744 +transurethral resection of the prostate|10944798 +transvaal|10944862 +transvaal daisy|10944906 +transvaal kafferboom|10944995 +transversal|10945100 +transversally|10945159 +transverse|10945194 +transverse colon|10945253 +transverse flute|10945285 +transverse muscle of abdomen|10945351 +transverse process|10945503 +transverse sinus|10945559 +transversely|10945622 +transversus abdominis|10945657 +transversus abdominis muscle|10945809 +transvestic|10945961 +transvestism|10946006 +transvestite|10946075 +transvestitism|10946194 +tranylcypromine|10946263 +trap|10946321 +trap block|10946824 +trap door|10946872 +trap line|10946896 +trap play|10946920 +trap-and-drain auger|10946755 +trap-door spider|10946791 +trapa|10946973 +trapa bicornis|10947037 +trapa natans|10947133 +trapaceae|10947239 +trapeze|10947318 +trapezium|10947341 +trapezium bone|10947504 +trapezius|10947581 +trapezius muscle|10947680 +trapezohedron|10947779 +trapezoid|10947813 +trapezoid bone|10947934 +trapezoidal|10948014 +trapped|10948068 +trapper|10948114 +trapper's tea|10948147 +trapping|10948204 +trappings|10948285 +trappist|10948490 +trapshooter|10948542 +trapshooting|10948576 +trash|10948625 +trash barrel|10949204 +trash bin|10949309 +trash can|10949414 +trash collection|10949519 +trash dump|10949599 +trash heap|10949695 +trash pickup|10949866 +trash pile|10949946 +trashiness|10950117 +trashy|10950162 +trasimeno|10950299 +traubel|10950363 +trauma|10950410 +traumatic|10950538 +traumatic epilepsy|10950644 +traumatise|10950704 +traumatize|10950754 +traumatology|10950804 +traumatophobia|10950870 +trautvetteria|10950908 +trautvetteria carolinensis|10950987 +travail|10951086 +trave|10951322 +travel|10951372 +travel agency|10951816 +travel agent|10951846 +travel allowance|10951888 +travel along|10951924 +travel and entertainment account|10951977 +travel back and forth|10952072 +travel bargain|10952129 +travel by|10952171 +travel expense|10952249 +travel guidebook|10952281 +travel iron|10952333 +travel kit|10952374 +travel plan|10952409 +travel purposefully|10952455 +travel rapidly|10952508 +travel time|10952572 +travel to|10952627 +travel-soiled|10951671 +travel-stained|10951730 +travel-worn|10951789 +travelable|10952670 +traveled|10952711 +traveler|10952785 +traveler's check|10952866 +traveler's joy|10952982 +traveler's letter of credit|10953064 +traveler's tree|10953147 +traveling|10953251 +traveling bag|10953346 +traveling salesman|10953403 +traveling wave|10953562 +travelled|10953602 +traveller|10953643 +traveller's check|10953724 +traveller's joy|10953840 +traveller's letter of credit|10953922 +traveller's tree|10954005 +travelling|10954109 +travelling salesman|10954167 +travelog|10954326 +travelogue|10954366 +traversable|10954406 +traversal|10954447 +traverse|10954514 +traverse city|10954800 +traverser|10954842 +travesty|10954867 +trawl|10955063 +trawl line|10955184 +trawl net|10955248 +trawler|10955301 +tray|10955392 +tray cloth|10955417 +trazodone|10955456 +trazodone hydrochloride|10955599 +treacherous|10955742 +treacherously|10955826 +treachery|10955891 +treacle|10955995 +treacly|10956064 +tread|10956113 +tread down|10956641 +tread on|10956685 +tread-softly|10956371 +tread-wheel|10956505 +treading water|10956722 +treadle|10956762 +treadmill|10956857 +treadmill test|10956994 +treadwheel|10957030 +treason|10957085 +treasonable|10957248 +treasonably|10957300 +treasonist|10957365 +treasonous|10957432 +treasure|10957484 +treasure chest|10957728 +treasure flower|10957758 +treasure house|10957806 +treasure hunt|10957870 +treasure ship|10957898 +treasure state|10957926 +treasure trove|10957991 +treasured|10958099 +treasurer|10958150 +treasurer's check|10958214 +treasurer's cheque|10958317 +treasurership|10958420 +treasuries|10958498 +treasury|10958908 +treasury bill|10959234 +treasury bond|10959310 +treasury department|10959379 +treasury note|10959508 +treasury obligations|10959577 +treasury secretary|10959655 +treasury shares|10959804 +treasury stock|10959867 +treat|10959930 +treated|10960355 +treater|10960580 +treatise|10960631 +treatment|10960691 +treaty|10960858 +treaty of versailles|10960904 +treaty port|10960987 +treble|10961013 +treble clef|10961258 +treble damages|10961291 +treble recorder|10961362 +trebuchet|10961462 +trebucket|10961587 +treck|10961712 +tree|10961732 +tree branch|10962406 +tree celandine|10962439 +tree clubmoss|10962526 +tree cotton|10962622 +tree creeper|10962748 +tree cricket|10962848 +tree diagram|10962878 +tree farm|10962941 +tree farmer|10962994 +tree farming|10963076 +tree fern|10963142 +tree frog|10963166 +tree fuchsia|10963401 +tree heath|10963473 +tree house|10963591 +tree hugger|10963633 +tree kangaroo|10963687 +tree line|10963746 +tree lizard|10963793 +tree lupine|10963855 +tree mallow|10963904 +tree martin|10963976 +tree of heaven|10964036 +tree of knowledge|10964107 +tree of the gods|10964139 +tree onion|10964210 +tree poppy|10964307 +tree shrew|10964349 +tree sloth|10964423 +tree sparrow|10964458 +tree squirrel|10964559 +tree stump|10964591 +tree surgeon|10964644 +tree surgery|10964710 +tree swallow|10964759 +tree swift|10964876 +tree toad|10964925 +tree tobacco|10965013 +tree tomato|10965073 +tree trunk|10965115 +tree wallaby|10965157 +tree-frog|10961967 +tree-living|10962202 +tree-shaped|10962242 +tree-worship|10962364 +treed|10965216 +treehopper|10965262 +treeless|10965307 +treelet|10965364 +treelike|10965386 +treenail|10965508 +treetop|10965550 +tref|10965587 +trefoil|10965634 +trefoil arch|10965752 +treillage|10965787 +trek|10965843 +trekker|10965932 +trellis|10965968 +trema|10966037 +trematoda|10966101 +trematode|10966152 +trematode worm|10966215 +tremble|10966278 +trembler|10966427 +trembles|10966459 +trembling|10966632 +tremella|10966773 +tremella foliacea|10966828 +tremella fuciformis|10966886 +tremella lutescens|10966962 +tremella reticulata|10967038 +tremellaceae|10967100 +tremellales|10967169 +tremendous|10967233 +tremendously|10967365 +tremolite|10967417 +tremolo|10967445 +tremor|10967544 +tremulous|10967758 +trenail|10967796 +trench|10967838 +trench coat|10968108 +trench fever|10968149 +trench foot|10968205 +trench knife|10968261 +trench mortar|10968289 +trench mouth|10968343 +trenchancy|10968438 +trenchant|10968524 +trencher|10968649 +trencherman|10968687 +trenching spade|10968738 +trend|10968792 +trend analysis|10969095 +trend line|10969146 +trend setting|10969171 +trend-setter|10969028 +trendsetting|10969213 +trendy|10969255 +trent|10969299 +trent river|10969350 +trental|10969407 +trente-et-quarante|10969452 +trentino-alto adige|10969510 +trento|10969574 +trenton|10969626 +trepan|10969687 +trepang|10969763 +trephination|10969823 +trephine|10969918 +trephritidae|10969989 +trepid|10970090 +trepidation|10970129 +trepidly|10970186 +treponema|10970214 +treponemataceae|10970256 +trespass|10970336 +trespass de bonis asportatis|10970769 +trespass on the case|10970816 +trespass quare clausum fregit|10970855 +trespass viet armis|10970903 +trespasser|10970941 +trespassing|10971024 +tress|10971076 +trestle|10971136 +trestle bridge|10971205 +trestle table|10971241 +trestlework|10971270 +trevelyan|10971314 +trevino|10971486 +trevithick|10971577 +trews|10971667 +trey|10971697 +trf|10971861 +trh|10971989 +tri-chad|10972117 +tri-iodomethane|10972140 +tri-iodothyronine|10972225 +triacetate|10972321 +triad|10972380 +triaenodon|10972625 +triaenodon obseus|10972684 +triage|10972779 +triakidae|10972803 +trial|10972861 +trial and error|10973251 +trial attorney|10973303 +trial balance|10973356 +trial balloon|10973387 +trial by ordeal|10973453 +trial court|10973491 +trial impression|10973538 +trial judge|10973600 +trial lawyer|10973653 +trial period|10973706 +trial run|10973774 +trial-and-error|10973191 +trialeurodes|10973838 +trialeurodes vaporariorum|10973908 +triamcinolone|10973998 +triangle|10974100 +triangular|10974256 +triangular bandage|10974422 +triangular prism|10974484 +triangularity|10974516 +triangulate|10974550 +triangulation|10974701 +triangulum|10974759 +triangulum australe|10974817 +triassic|10974898 +triassic period|10974966 +triatoma|10975041 +triavil|10975099 +triazine|10975240 +triazolam|10975285 +tribade|10975327 +tribadism|10975382 +tribadistic|10975421 +tribal|10975453 +tribal chief|10975481 +tribal sheik|10975528 +tribal sheikh|10975601 +tribal society|10975674 +tribalisation|10975706 +tribalism|10975790 +tribalization|10975829 +tribasic acid|10975913 +tribasic sodium phosphate|10975941 +tribe|10976047 +tribe bambuseae|10976224 +tribe bovini|10976281 +tribe bubalus|10976329 +tribe synercus|10976401 +tribes of israel|10976462 +tribesman|10976576 +tribolium|10976602 +tribologist|10976663 +tribology|10976704 +tribonema|10976746 +tribonemaceae|10976823 +tribromoethanol|10976899 +tribromoethyl alcohol|10976969 +tribromomethane|10977039 +tribulate|10977083 +tribulation|10977110 +tribulus|10977159 +tribulus terestris|10977219 +tribunal|10977306 +tribune|10977350 +tribuneship|10977378 +tributary|10977454 +tribute|10977596 +tribute album|10977710 +tributyrin|10977761 +tricarboxylic acid cycle|10977789 +trice|10977912 +trice up|10978125 +tricentenary|10978213 +tricentennial|10978341 +triceps|10978469 +triceps brachii|10978518 +triceratops|10978576 +trichechidae|10978625 +trichechus|10978694 +trichechus manatus|10978754 +trichina|10978842 +trichinella spiralis|10978914 +trichiniasis|10979007 +trichinosis|10979082 +trichion|10979157 +trichiuridae|10979189 +trichloracetic acid|10979256 +trichloride|10979332 +trichlormethiazide|10979362 +trichloroacetic acid|10979405 +trichloroethane|10979481 +trichloroethylene|10979544 +trichloromethane|10979607 +trichobezoar|10979759 +trichoceros|10979807 +trichodesmium|10979888 +trichodontidae|10979942 +trichoglossus|10980015 +trichoglossus moluccanus|10980083 +tricholoma|10980168 +tricholoma aurantium|10980229 +tricholoma flavovirens|10980287 +tricholoma irinum|10980364 +tricholoma pardinum|10980446 +tricholoma pessundatum|10980502 +tricholoma populinum|10980564 +tricholoma sejunctum|10980637 +tricholoma vaccinum|10980695 +tricholoma venenata|10980751 +tricholomataceae|10980807 +trichomanes|10980888 +trichomanes boschianum|10980950 +trichomanes reniforme|10981054 +trichomanes speciosum|10981143 +trichomonad|10981235 +trichomoniasis|10981337 +trichophaga|10981381 +trichophaga tapetzella|10981448 +trichophyton|10981548 +trichoptera|10981615 +trichopteran|10981679 +trichopteron|10981742 +trichopterous insect|10981805 +trichostema|10981868 +trichostema dichotomum|10981939 +trichostema lanatum|10982024 +trichostema lanceolatum|10982130 +trichostigma|10982246 +trichosurus|10982326 +trichosurus vulpecula|10982390 +trichotillomania|10982491 +trichroism|10982541 +trichromacy|10982573 +trichromatic|10982666 +trichrome|10982733 +trichuriasis|10982800 +trichys|10982834 +trichys lipura|10982886 +trick|10982967 +trick or treat|10983307 +trick out|10983346 +trick up|10983504 +tricked out|10983768 +tricked-out|10983662 +tricker|10983874 +trickery|10984000 +trickily|10984217 +trickiness|10984285 +trickle|10984350 +trickster|10984436 +tricksy|10984670 +tricky|10984759 +triclinic|10984923 +triclinium|10984961 +tricolor|10985031 +tricolor television tube|10985120 +tricolor tube|10985306 +tricolour|10985492 +tricolour television tube|10985525 +tricolour tube|10985711 +tricorn|10985897 +tricorne|10985934 +tricot|10985971 +tricuspid|10986007 +tricuspid valve|10986056 +tricuspidate|10986133 +tricycle|10986182 +tricyclic|10986233 +tricyclic antidepressant|10986342 +tricyclic antidepressant drug|10986451 +tridacna|10986560 +tridacna gigas|10986616 +tridacnidae|10986671 +trident|10986738 +tridymite|10986773 +tried|10986800 +tried and true|10986897 +triennial|10986955 +trier|10987072 +trifid|10987197 +trifid beggar-ticks|10987221 +trifid bur marigold|10987376 +trifle|10987531 +trifle away|10987805 +trifler|10987863 +trifling|10987917 +trifluoromethane|10988015 +trifoliata|10988061 +trifoliate|10988136 +trifoliate orange|10988190 +trifoliated|10988265 +trifoliolate|10988319 +trifoliolate leaf|10988373 +trifolium|10988414 +trifolium alpinum|10988477 +trifolium dubium|10988551 +trifolium incarnatum|10988651 +trifolium pratense|10988747 +trifolium reflexum|10988834 +trifolium repens|10988911 +trifolium stoloniferum|10989004 +trifurcate|10989089 +trifurcation|10989145 +trig|10989203 +triga|10989274 +trigeminal|10989318 +trigeminal nerve|10989418 +trigeminal neuralgia|10989518 +trigeminus|10989582 +trigger|10989682 +trigger off|10989953 +trigger-happy|10989869 +triggerfish|10990055 +triggerman|10990105 +trigla lucerna|10990231 +triglidae|10990305 +triglinae|10990363 +triglochin|10990424 +triglochin maritima|10990502 +triglyceride|10990597 +trigon|10990662 +trigonal|10990771 +trigonella|10990824 +trigonella foenumgraecum|10990890 +trigonella ornithopodioides|10990994 +trigonometric|10991101 +trigonometric function|10991140 +trigonometrician|10991221 +trigonometry|10991261 +trigonum cerebrale|10991305 +trigram|10991386 +trihydroxy|10991416 +triiodomethane|10991464 +triiodothyronine|10991508 +trike|10991565 +trilateral|10991616 +trilby|10991805 +trilingual|10991934 +trilisa|10991967 +trilisa odoratissima|10992026 +trill|10992112 +trilled|10992242 +trilliaceae|10992288 +trilling|10992378 +trillion|10992437 +trillion floating point operations per second|10992606 +trillions|10992695 +trillionth|10992922 +trillium|10993004 +trillium erectum|10993060 +trillium family|10993172 +trillium recurvatum|10993250 +trillium sessile|10993365 +trilobate|10993478 +trilobated|10993526 +trilobed|10993574 +trilobite|10993622 +trilogy|10993651 +trim|10993687 +trim back|10994358 +trim down|10994455 +trimaran|10994552 +trimer|10994592 +trimester|10994616 +trimipramine|10994727 +trimmed|10994824 +trimmer|10994861 +trimmer arch|10995013 +trimmer joist|10995040 +trimming|10995077 +trimming capacitor|10995187 +trimmings|10995276 +trimness|10995470 +trimorphodon|10995513 +trimorphodon lambda|10995581 +trimotored|10995660 +trimox|10995708 +trimurti|10995787 +trine|10995833 +trine immersion|10995977 +trinectes|10996012 +trinectes maculatus|10996068 +tringa|10996132 +tringa flavipes|10996179 +tringa melanoleuca|10996249 +tringa nebularia|10996326 +tringa totanus|10996390 +trinidad|10996448 +trinidad and tobago|10996482 +trinidad and tobago dollar|10996582 +trinidadian|10996652 +trinil man|10996747 +trinitarian|10996840 +trinitarianism|10996891 +trinitroglycerin|10996944 +trinitrotoluene|10997072 +trinity|10997120 +trinity river|10997436 +trinity sunday|10997479 +trinket|10997537 +trinuclear|10997605 +trinucleate|10997650 +trinucleated|10997707 +trio|10997752 +triode|10998101 +triolein|10998204 +trionychidae|10998243 +trionyx|10998313 +trionyx muticus|10998366 +trionyx spiniferus|10998459 +triopidae|10998557 +triops|10998620 +triose|10998672 +triostium|10998731 +triostium perfoliatum|10998796 +trioxide|10998921 +trip|10998945 +trip line|10999501 +trip out|10999525 +trip the light fantastic|10999564 +trip the light fantastic toe|10999638 +trip up|10999712 +trip wire|10999857 +trip-up|10999392 +tripalmitin|10999938 +tripartite|10999996 +tripe|11000084 +triphammer|11000205 +triphosphopyridine|11000245 +triphosphopyridine nucleotide|11000282 +triphosphoric acid|11000330 +tripinnate|11000363 +tripinnated|11000404 +tripinnatifid|11000445 +triple|11000477 +triple cream|11000954 +triple creme|11000996 +triple crown|11001038 +triple frontier|11001105 +triple jump|11001155 +triple play|11001242 +triple sec|11001277 +triple-crown|11000675 +triple-crown season|11000726 +triple-decker|11000771 +triple-space|11000830 +triple-spacing|11000867 +triple-tongue|11000910 +triplet|11001312 +triplet code|11001497 +tripletail|11001532 +tripleurospermum|11001584 +tripleurospermum inodorum|11001670 +tripleurospermum oreades tchihatchewii|11001866 +tripleurospermum tchihatchewii|11002008 +triplex|11002140 +triplicate|11002188 +triplicity|11002230 +tripling|11002293 +triplochiton|11002326 +triplochiton scleroxcylon|11002402 +triploid|11002494 +tripod|11002522 +tripoli|11002549 +tripos|11002733 +tripper|11002771 +tripping|11002953 +trippingly|11003051 +triptych|11003082 +triquetral|11003113 +triquetral bone|11003223 +triquetrous leek|11003333 +trireme|11003414 +trisaccharide|11003438 +trisect|11003477 +triskaidekaphobia|11003498 +triskaidekaphobic|11003539 +triskele|11003573 +triskelion|11003624 +trismus|11003675 +trisodium orthophosphate|11003717 +trisodium phosphate|11003823 +trisomy|11003929 +trisomy 21|11004032 +tristan|11004272 +tristan tzara|11004357 +tristearin|11004423 +tristram|11004479 +trisyllable|11004565 +tritanopia|11004591 +tritanopic|11004677 +trite|11004724 +triteness|11004837 +tritheism|11004880 +tritheist|11004929 +triticum|11004977 +triticum aestivum|11005049 +triticum aestivum spelta|11005118 +triticum dicoccum|11005210 +triticum dicoccum dicoccoides|11005301 +triticum durum|11005403 +triticum spelta|11005515 +triticum turgidum|11005598 +tritium|11005713 +tritoma|11005757 +triton|11005844 +triturus|11005918 +triturus vulgaris|11005976 +triumph|11006045 +triumphal|11006381 +triumphal arch|11006503 +triumphant|11006550 +triumvir|11006662 +triumvirate|11006704 +triune|11006754 +trivalent|11006779 +trivalent live oral poliomyelitis vaccine|11006816 +trivet|11006933 +trivia|11006996 +trivial|11007064 +trivialise|11007317 +triviality|11007386 +trivialize|11007540 +trm|11007609 +trna|11007675 +troat|11007753 +trochaic|11007797 +trochanter|11007847 +troche|11007895 +trochee|11007946 +trochilidae|11007996 +trochlear|11008060 +trochlear nerve|11008142 +trochlearis|11008224 +trodden|11008306 +trofim denisovich lysenko|11008340 +trogium|11008420 +trogium pulsatorium|11008475 +troglodyte|11008597 +troglodytes|11008746 +troglodytes aedon|11008966 +troglodytes troglodytes|11009038 +troglodytidae|11009123 +trogon|11009193 +trogonidae|11009214 +trogoniformes|11009275 +troika|11009345 +trojan|11009537 +trojan horse|11009672 +trojan war|11009810 +troll|11009853 +troller|11010127 +trolley|11010168 +trolley car|11010243 +trolley coach|11010318 +trolley line|11010447 +trolleybus|11010482 +trolling|11010611 +trollius|11010643 +trollop|11010707 +trollope|11010874 +trombicula|11010932 +trombiculiasis|11010996 +trombiculidae|11011032 +trombiculiid|11011107 +trombidiid|11011134 +trombidiidae|11011159 +trombone|11011231 +trombone player|11011255 +trombonist|11011323 +trompe l'oeil|11011435 +trompe-l'oeil|11011391 +trompillo|11011475 +trondheim|11011647 +trondheim fiord|11011718 +trondheim fjord|11011787 +troop|11011856 +troop carrier|11012016 +troop movement|11012072 +troop transport|11012105 +trooper|11012161 +troops|11012317 +troopship|11012502 +tropaeolaceae|11012556 +tropaeolum|11012651 +tropaeolum majus|11012717 +tropaeolum minus|11012802 +tropaeolum peregrinum|11012872 +trope|11012985 +trophic|11013048 +trophobiosis|11013099 +trophoblast|11013141 +trophoblastic|11013184 +trophoblastic cancer|11013228 +trophotropic|11013268 +trophotropism|11013297 +trophozoite|11013328 +trophy|11013359 +trophy case|11013460 +trophy wife|11013508 +tropic|11013548 +tropic bird|11013667 +tropic of cancer|11013816 +tropic of capricorn|11013866 +tropical|11013922 +tropical medicine|11014067 +tropical pitcher plant|11014121 +tropical prawn|11014167 +tropical rain forest|11014218 +tropical sore|11014277 +tropical sprue|11014423 +tropical year|11014468 +tropical zone|11014542 +tropicbird|11014599 +tropics|11014667 +tropidoclonion|11014794 +tropidoclonion lineatum|11014868 +tropism|11014961 +troponomy|11014996 +troponym|11015072 +troponymy|11015107 +tropopause|11015208 +troposphere|11015234 +trot|11015261 +trot out|11015480 +troth|11015530 +trotline|11015605 +trotsky|11015669 +trotskyism|11015802 +trotskyist|11015843 +trotskyite|11015898 +trotter|11015953 +trotting horse|11016039 +trou-de-loup|11016101 +troubadour|11016144 +trouble|11016242 +trouble maker|11016937 +trouble oneself|11017121 +trouble shooter|11017203 +trouble-free|11016823 +trouble-shoot|11016856 +troubled|11017377 +troublemaker|11017916 +troubler|11018019 +troubleshooter|11018122 +troublesome|11018215 +troublesomeness|11018251 +troubling|11018325 +troublous|11018415 +trough|11018443 +trounce|11018660 +trouncing|11019025 +troupe|11019193 +trouper|11019243 +trouser|11019355 +trouser clip|11019380 +trouser cuff|11019420 +trouser leg|11019454 +trouser press|11019488 +trousered|11019560 +trousering|11019613 +trousers|11019671 +trousseau|11019726 +trout|11019770 +trout lily|11019816 +trove|11019935 +trowel|11019989 +troy|11020051 +troy ounce|11020155 +troy pound|11020251 +troy unit|11020341 +troy weight|11020379 +truancy|11020430 +truant|11020467 +truce|11020570 +truck|11020612 +truck bed|11020737 +truck dealer|11020771 +truck driver|11020800 +truck farm|11020846 +truck farming|11020884 +truck garden|11020937 +truck stop|11020975 +truck traffic|11021011 +truckage|11021068 +trucker|11021148 +trucking|11021194 +trucking company|11021263 +trucking industry|11021306 +trucking rig|11021342 +truckle|11021438 +truckle bed|11021583 +truckler|11021636 +truckling|11021748 +truculence|11021787 +truculency|11021888 +truculent|11021989 +trudge|11022034 +trudger|11022102 +true|11022160 +true anomaly|11022945 +true bacteria|11022984 +true bill|11023046 +true blackberry|11023095 +true bug|11023164 +true cat|11023227 +true cedar|11023262 +true dwarf|11023323 +true fir|11023410 +true flycatcher|11023465 +true frog|11023541 +true fungus|11023615 +true glottis|11023643 +true guava|11023711 +true heath|11023775 +true jasmine|11023807 +true laurel|11023882 +true lobster|11023949 +true lover's knot|11023979 +true mahogany|11024042 +true marmoset|11024141 +true pepper|11024173 +true pine|11024211 +true puffball|11024269 +true rib|11024308 +true sago palm|11024336 +true sandalwood|11024386 +true seal|11024447 +true senna|11024494 +true slime mold|11024641 +true sparrow|11024743 +true statement|11024800 +true to|11024840 +true to life|11024866 +true toad|11024991 +true tulipwood|11025059 +true up|11025135 +true vampire bat|11025184 +true vocal cord|11025247 +true vocal fold|11025375 +true warbler|11025503 +true-blue|11022764 +true-false|11022789 +true-to-life|11022820 +truehearted|11025551 +truelove|11025597 +truelove knot|11025647 +trueness|11025710 +truffaut|11025749 +truffle|11025841 +truism|11025949 +truly|11025986 +truman|11026084 +truman doctrine|11026233 +trumbo|11026289 +trumbull|11026351 +trump|11026499 +trump card|11026716 +trump out|11026755 +trump up|11026796 +trumped-up|11026867 +trumpery|11026893 +trumpet|11027084 +trumpet arch|11027406 +trumpet creeper|11027436 +trumpet flower|11027524 +trumpet honeysuckle|11027759 +trumpet section|11027868 +trumpet tree|11027913 +trumpet vine|11028030 +trumpet weed|11028212 +trumpet-wood|11027208 +trumpeter|11028320 +trumpeter swan|11028483 +trumpetfish|11028540 +trumpets|11028613 +trumpetwood|11028770 +trumping|11028887 +truncate|11028920 +truncated|11029051 +truncated cone|11029120 +truncated pyramid|11029152 +truncation|11029187 +truncation error|11029266 +truncheon|11029334 +truncocolumella|11029397 +truncocolumella citrina|11029473 +truncus atrioventricularis|11029544 +truncus celiacus|11029669 +truncus pulmonalis|11029775 +trundle|11029855 +trundle bed|11029959 +trunk|11030012 +trunk call|11030188 +trunk hose|11030272 +trunk lid|11030350 +trunk line|11030373 +trunk road|11030505 +trunk route|11030552 +trunkfish|11030612 +trunks|11030668 +trunnel|11030916 +truss|11030958 +truss bridge|11031142 +trussed|11031176 +trust|11031204 +trust account|11031681 +trust busting|11031780 +trust company|11031855 +trust corporation|11031964 +trust deed|11032073 +trust fund|11032168 +trust territory|11032207 +trustbuster|11032293 +trusted|11032334 +trustee|11032375 +trustee account|11032505 +trustee-beneficiary relation|11032448 +trusteeship|11032604 +trusteeship council|11032690 +truster|11032750 +trustful|11032830 +trustfully|11032921 +trustfulness|11032983 +trustiness|11033030 +trusting|11033072 +trustingly|11033161 +trustingness|11033203 +trustworthiness|11033250 +trustworthy|11033292 +trusty|11033507 +truth|11033691 +truth drug|11033913 +truth quark|11033968 +truth serum|11034005 +truthful|11034060 +truthfulness|11034131 +try|11034172 +try for|11034653 +try on|11034697 +try out|11034749 +try square|11034900 +try-on|11034604 +trygve halvden lie|11034927 +trygve lie|11035010 +trying|11035085 +trying on|11035175 +tryout|11035224 +trypetidae|11035319 +trypsin|11035418 +trypsinogen|11035442 +tryptophan|11035471 +tryptophane|11035524 +tryst|11035577 +tsa|11035661 +tsar|11035779 +tsarina|11035834 +tsarist|11035903 +tsaristic|11035978 +tsaritsa|11036053 +tsaritsyn|11036122 +tsetse|11036201 +tsetse fly|11036259 +tsh|11036317 +tshiluba|11036465 +tsimshian|11036520 +tsine|11036584 +tsoris|11036638 +tsouic|11036678 +tss|11036710 +tsuga|11036769 +tsuga canadensis|11036819 +tsuga caroliniana|11036928 +tsuga heterophylla|11037011 +tsuga mertensiana|11037130 +tsunami|11037227 +tsung dao lee|11037273 +tsuris|11037332 +tsushima|11037367 +tsutsugamushi disease|11037407 +tswana|11037485 +tt|11037595 +tuamotu archipelago|11037820 +tuareg|11037917 +tuatara|11037969 +tuatha de|11038030 +tuatha de danann|11038089 +tub|11038155 +tub gurnard|11038378 +tub-cart|11038245 +tub-thumper|11038299 +tuba|11038437 +tuba root|11038483 +tubal|11038536 +tubal ligation|11038631 +tubal pregnancy|11038687 +tubbiness|11038814 +tubby|11038888 +tube|11038925 +tube foot|11039733 +tube well|11039775 +tube wrench|11039811 +tube-nosed bat|11039399 +tube-nosed fruit bat|11039478 +tube-shaped|11039557 +tube-shaped structure|11039616 +tubed|11039881 +tubeless|11039902 +tubeless tire|11039980 +tubelike|11040042 +tuber|11040101 +tuber root|11040165 +tuberaceae|11040314 +tuberales|11040377 +tubercle|11040435 +tubercle bacillus|11040551 +tubercular|11040632 +tubercularia|11040745 +tuberculariaceae|11040812 +tuberculate|11040893 +tuberculin|11040935 +tuberculin skin test|11040962 +tuberculin test|11041018 +tuberculoid|11041074 +tuberculoid leprosy|11041113 +tuberculosis|11041167 +tuberculous|11041216 +tuberose|11041257 +tuberosity|11041302 +tuberous|11041368 +tuberous begonia|11041396 +tuberous plant|11041430 +tuberous vetch|11041482 +tubful|11041567 +tubing|11041600 +tubman|11041629 +tubocurarine|11041696 +tubuai islands|11041786 +tubular|11041853 +tubular cavity|11041886 +tubule|11041937 +tubulidentata|11041980 +tucana|11042050 +tuchman|11042087 +tuck|11042179 +tuck away|11042452 +tuck box|11042513 +tuck in|11042535 +tuck shop|11042596 +tuckahoe|11042641 +tucked|11042707 +tucker|11042730 +tucker out|11043037 +tucker-bag|11043013 +tucket|11043172 +tucson|11043261 +tudor|11043313 +tudor arch|11043444 +tudor architecture|11043499 +tudung|11043623 +tues|11043645 +tuesday|11043680 +tufa|11043718 +tuff|11043779 +tuft|11043812 +tufted|11043878 +tufted centaury|11043995 +tufted gentian|11044051 +tufted pansy|11044135 +tufted puffin|11044191 +tufted titmouse|11044236 +tufted vetch|11044288 +tug|11044352 +tug-of-war|11044613 +tugboat|11044713 +tugela|11044753 +tugela falls|11044805 +tugger|11044863 +tughrik|11044901 +tugrik|11044949 +tuileries|11044997 +tuileries gardens|11045099 +tuileries palace|11045168 +tuille|11045228 +tuition|11045308 +tularaemia|11045385 +tularemia|11045477 +tule tree|11045569 +tulestoma|11045668 +tulip|11045752 +tulip bed|11045784 +tulip gentian|11045839 +tulip orchid|11045931 +tulip poplar|11046013 +tulip tree|11046135 +tulipa|11046257 +tulipa armena|11046314 +tulipa clusiana|11046387 +tulipa gesneriana|11046463 +tulipa suaveolens|11046514 +tulipwood|11046591 +tulipwood tree|11046679 +tulle|11046708 +tully|11046757 +tulostoma|11046897 +tulostomaceae|11046981 +tulostomataceae|11047092 +tulostomatales|11047205 +tulsa|11047278 +tulu|11047328 +tum|11047385 +tumble|11047446 +tumble drier|11048100 +tumble dry|11048163 +tumble grass|11048195 +tumble-down|11047939 +tumble-dryer|11048037 +tumblebug|11048301 +tumbler|11048332 +tumbler pigeon|11048494 +tumbleweed|11048549 +tumbling|11048780 +tumbrel|11048886 +tumbril|11048920 +tumefaction|11048954 +tumefy|11049010 +tumesce|11049079 +tumescence|11049135 +tumescent|11049174 +tumid|11049255 +tumidity|11049415 +tumidness|11049467 +tummy|11049519 +tummy crunch|11049636 +tummy tuck|11049739 +tumor|11049823 +tumor necrosis factor|11049861 +tumor virus|11049928 +tumour|11049955 +tumour necrosis factor|11049993 +tump over|11050060 +tums|11050188 +tumult|11050319 +tumultuous|11050534 +tumultuous disturbance|11050600 +tumultuously|11050653 +tumultuousness|11050684 +tumulus|11050819 +tun|11050879 +tuna|11050904 +tuna fish|11051081 +tuna fish salad|11051126 +tuna oil|11051168 +tuna salad|11051195 +tunaburger|11051237 +tundra|11051266 +tundra soil|11051304 +tundra swan|11051335 +tune|11051380 +tune in|11051674 +tune up|11051704 +tune-up|11051574 +tuned|11051776 +tuneful|11051854 +tunefully|11051889 +tunefulness|11051919 +tuneless|11051977 +tuner|11052026 +tung|11052170 +tung oil|11052348 +tung tree|11052387 +tung-oil tree|11052259 +tunga|11052476 +tunga penetrans|11052525 +tungstate|11052598 +tungsten|11052622 +tungsten steel|11052690 +tungstic acid|11052740 +tungus|11052783 +tungusic|11052883 +tungusic language|11052974 +tunguz|11053051 +tunic|11053122 +tunica|11053190 +tunica albuginea testes|11053245 +tunica conjunctiva bulbi|11053288 +tunica conjunctiva palpebrarum|11053380 +tunicata|11053483 +tunicate|11053600 +tuning|11053648 +tuning fork|11053708 +tunis|11053739 +tunisia|11053801 +tunisian|11053877 +tunisian dinar|11053995 +tunisian dirham|11054063 +tunisian monetary unit|11054134 +tunker|11054203 +tunnage|11054288 +tunnel|11054338 +tunnel vision|11054461 +tunney|11054546 +tunny|11054624 +tup|11054716 +tupac amaru revolutionary movement|11054739 +tupac katari guerrilla army|11054935 +tupaia|11055079 +tupaiidae|11055128 +tupek|11055188 +tupelo|11055248 +tupelo family|11055320 +tupelo tree|11055419 +tupi|11055460 +tupi-guarani|11055548 +tupi-guarani language|11055681 +tupik|11055823 +tupinambis|11055883 +tuppence|11055945 +tuppeny|11055977 +tupungatito|11056072 +tupungato|11056113 +turaco|11056156 +turacou|11056212 +turakoo|11056268 +turban|11056324 +turban squash|11056402 +turbaned|11056511 +turbatrix|11056536 +turbatrix aceti|11056620 +turbellaria|11056711 +turbid|11056768 +turbidity|11056816 +turbidness|11056877 +turbinal|11056938 +turbinate|11056989 +turbinate bone|11057124 +turbine|11057175 +turbo-propeller plane|11057206 +turbofan|11057271 +turbofan engine|11057341 +turbogenerator|11057411 +turbojet|11057445 +turbojet engine|11057557 +turboprop|11057627 +turbot|11057733 +turbulence|11057814 +turbulency|11057950 +turbulent|11058001 +turbulent flow|11058113 +turbulently|11058142 +turcoman|11058184 +turd|11058308 +turdidae|11058414 +turdinae|11058469 +turdus|11058527 +turdus grayi|11058574 +turdus iliacus|11058635 +turdus merula|11058689 +turdus migratorius|11058785 +turdus philomelos|11058860 +turdus pilaris|11058939 +turdus torquatus|11059004 +turdus viscivorus|11059092 +tureen|11059189 +turf|11059218 +turf out|11059324 +turf war|11059423 +turfan|11059466 +turfan dialect|11059529 +turfing daisy|11059600 +turgenev|11059788 +turgid|11059868 +turgidity|11060009 +turgidly|11060097 +turgidness|11060128 +turgor|11060216 +turgot|11060238 +turin|11060314 +turing|11060371 +turing machine|11060441 +turk|11060589 +turk's cap-lily|11060730 +turk's head|11060803 +turk's-cap|11060614 +turkestan|11060841 +turkey|11060952 +turkey buzzard|11061234 +turkey cock|11061324 +turkey drumstick|11061395 +turkey leg|11061442 +turkey oak|11061489 +turkey red|11061722 +turkey stew|11061779 +turkey stuffing|11061810 +turkey trot|11061853 +turkey vulture|11061883 +turkey wing|11061973 +turki|11061999 +turkic|11062105 +turkic language|11062290 +turkic-speaking|11062221 +turkish|11062379 +turkish bath|11062478 +turkish boxwood|11062621 +turkish capital|11062675 +turkish coffee|11062758 +turkish delight|11062809 +turkish empire|11062856 +turkish hizballah|11062917 +turkish lira|11063036 +turkish monetary unit|11063098 +turkish tobacco|11063165 +turkish towel|11063220 +turkistan|11063280 +turkmen|11063391 +turkmen monetary unit|11063613 +turkmenia|11063680 +turkmenistan|11063758 +turko-tatar|11063839 +turkoman|11063924 +turkomen|11064048 +turmeric|11064238 +turmeric root|11064376 +turmoil|11064477 +turn|11064687 +turn a blind eye|11066072 +turn a loss|11066165 +turn a nice dime|11066191 +turn a nice dollar|11066275 +turn a nice penny|11066359 +turn a profit|11066443 +turn a trick|11066535 +turn around|11066570 +turn away|11067042 +turn back|11067140 +turn down|11067414 +turn in|11067627 +turn indicator|11067921 +turn of events|11067991 +turn of the century|11068038 +turn off|11068087 +turn on|11068188 +turn on a dime|11068513 +turn one's stomach|11068542 +turn out|11068617 +turn over|11069127 +turn signal|11069509 +turn tail|11069579 +turn the tables|11069731 +turn the tide|11069802 +turn thumbs down|11069873 +turn to|11069914 +turn turtle|11069968 +turn up|11070042 +turn up the heat|11070215 +turn up the pressure|11070297 +turn-on|11066018 +turnabout|11070379 +turnaround|11070547 +turnaround time|11070797 +turncoat|11070843 +turncock|11070912 +turndown|11070967 +turned|11071009 +turned on|11071154 +turned out|11071246 +turner|11071279 +turner's syndrome|11071630 +turnery|11071695 +turnicidae|11071752 +turning|11071813 +turning away|11071894 +turning point|11071953 +turnip|11072092 +turnip bed|11072422 +turnip cabbage|11072446 +turnip greens|11072594 +turnip plant|11072646 +turnip-rooted celery|11072192 +turnip-rooted parsley|11072315 +turnix|11072695 +turnix sylvatica|11072742 +turnkey|11072855 +turnoff|11072952 +turnout|11073045 +turnover|11073325 +turnover rate|11073474 +turnpike|11073530 +turnround|11073639 +turnspit|11073690 +turnstile|11073713 +turnstone|11073737 +turntable|11073763 +turnup|11073830 +turnverein|11073863 +turp|11073919 +turpentine|11073988 +turpentine camphor weed|11074112 +turpentine weed|11074204 +turpin|11074336 +turpitude|11074413 +turps|11074466 +turquoise|11074620 +turreae|11074734 +turret|11074756 +turret clock|11074836 +turritis|11074864 +turritis glabra|11074928 +tursiops|11075027 +tursiops gilli|11075082 +tursiops truncatus|11075199 +turtle|11075325 +turtle bean|11075471 +turtle soup|11075515 +turtledove|11075559 +turtlehead|11075670 +turtleneck|11075785 +turtleneck collar|11075875 +turtlenecked|11075935 +turtler|11075975 +tuscaloosa|11076022 +tuscan|11076058 +tuscan order|11076152 +tuscany|11076193 +tuscarora|11076241 +tush|11076334 +tushery|11076545 +tusk|11076597 +tusk shell|11076716 +tuskegee|11076758 +tusker|11076790 +tussah|11076813 +tussaud|11076901 +tusseh|11076988 +tusser|11077076 +tussilago|11077164 +tussilago alpina|11077229 +tussilago farfara|11077327 +tussle|11077404 +tussock|11077542 +tussock bellflower|11077595 +tussock caterpillar|11077685 +tussock moth|11077726 +tussore|11077764 +tussur|11077852 +tutankhamen|11077940 +tutee|11077998 +tutelage|11078041 +tutelar|11078150 +tutelary|11078206 +tutelo|11078262 +tutor|11078335 +tutored|11078448 +tutorial|11078501 +tutorship|11078552 +tutsan|11078618 +tutsi|11078693 +tutti-frutti|11078735 +tutu|11078767 +tuvalu|11078873 +tuvalu dollar|11078956 +tux|11079000 +tuxedo|11079097 +tuxedoed|11079194 +tuxtla gutierrez|11079225 +tv|11079297 +tv announcer|11079563 +tv audience|11079616 +tv camera|11079683 +tv channel|11079764 +tv dinner|11079852 +tv monitor|11079898 +tv newsman|11079945 +tv program|11080058 +tv reporter|11080160 +tv room|11080274 +tv set|11080312 +tv show|11080440 +tv star|11080539 +tv station|11080600 +tv-antenna|11079477 +twaddle|11080658 +twaddler|11080957 +twain|11080988 +twang|11081089 +twat|11081264 +twayblade|11081459 +tweak|11081551 +twee|11081712 +tweed|11081768 +tweediness|11081859 +tweedle|11081910 +tweedledee and tweedledum|11081975 +tweedledum and tweedledee|11082073 +tweedy|11082171 +tweet|11082232 +tweeter|11082319 +tweeze|11082403 +tweezer|11082449 +twelfth|11082516 +twelfth cranial nerve|11082558 +twelfth day|11082651 +twelfth night|11082760 +twelfthtide|11082816 +twelve|11082856 +twelve noon|11083124 +twelve tribes of israel|11083201 +twelve-tone music|11082928 +twelve-tone system|11083026 +twelvemonth|11083322 +twenties|11083385 +twentieth|11083636 +twentieth amendment|11083680 +twenty|11083739 +twenty dollar bill|11085210 +twenty percent|11085345 +twenty-eight|11083923 +twenty-eighth|11083995 +twenty-fifth|11084031 +twenty-first|11084066 +twenty-five|11084101 +twenty-five percent|11084166 +twenty-four|11084274 +twenty-four hours|11084351 +twenty-fourth|11084430 +twenty-nine|11084466 +twenty-ninth|11084533 +twenty-one|11084568 +twenty-second|11084677 +twenty-seven|11084713 +twenty-seventh|11084783 +twenty-six|11084820 +twenty-sixth|11084886 +twenty-third|11084921 +twenty-three|11084956 +twenty-two|11085026 +twenty-two pistol|11085127 +twenty-two rifle|11085169 +twerp|11085428 +twice|11085471 +twice-baked bread|11085499 +twiddle|11085563 +twiddler|11085671 +twig|11085709 +twig blight|11085917 +twiggy|11085945 +twiglike|11085980 +twilight|11086015 +twilight of the gods|11086206 +twilight sleep|11086287 +twilight vision|11086350 +twilight zone|11086458 +twilit|11086600 +twill|11086636 +twill weave|11086726 +twilled|11086759 +twin|11086798 +twin bed|11087527 +twin bill|11087549 +twin cities|11087601 +twin falls|11087660 +twin towers|11087735 +twin-aisle airplane|11087232 +twin-bedded|11087317 +twin-prop|11087345 +twin-propeller-plane|11087436 +twinberry|11087790 +twine|11087895 +twined|11088143 +twiner|11088174 +twinflower|11088197 +twinge|11088253 +twinjet|11088420 +twinkle|11088471 +twinkler|11088619 +twinkling|11088644 +twinkly|11088788 +twinned|11088830 +twinning|11088879 +twins|11088918 +twirl|11089234 +twirler|11089451 +twirp|11089567 +twist|11089693 +twist around|11090612 +twist bit|11090684 +twist drill|11090719 +twist wood|11090754 +twisted|11090908 +twister|11091036 +twisting|11091094 +twistwood|11091348 +twisty|11091421 +twit|11091471 +twitch|11091651 +twitching|11091862 +twitter|11091925 +twitterer|11092002 +two|11092026 +two dollar bill|11095149 +two dozen|11095274 +two hundred|11095327 +two iron|11095364 +two times|11095395 +two weeks|11095421 +two-a-penny|11092084 +two-bagger|11092179 +two-base hit|11092252 +two-baser|11092325 +two-by-four|11092398 +two-chambered|11092426 +two-channel|11092467 +two-dimensional|11092525 +two-dimensional figure|11092644 +two-dimensionality|11092696 +two-eared|11092758 +two-eyed violet|11092794 +two-faced|11092852 +two-footed|11093009 +two-grain spelt|11093037 +two-handed|11093110 +two-handed backhand|11093177 +two-handed saw|11093245 +two-hitter|11093301 +two-hundredth|11093358 +two-lane|11093395 +two-man tent|11093423 +two-party|11093470 +two-piece|11093588 +two-piece suit|11093734 +two-ply|11093794 +two-seater|11093817 +two-sided|11093892 +two-spotted ladybug|11093986 +two-step|11094089 +two-thirds|11094139 +two-tier bid|11094191 +two-time|11094226 +two-timer|11094281 +two-timing|11094453 +two-toed anteater|11094504 +two-toed sloth|11094594 +two-way|11094710 +two-way street|11094851 +two-wheel|11094882 +two-wheeled|11094935 +two-wing flying fish|11094988 +two-winged insects|11095052 +two-year|11095122 +twofer|11095484 +twofold|11095537 +twopence|11095639 +twopenny|11095671 +twopenny-halfpenny|11095766 +twoscore|11095861 +twosome|11095900 +twyla tharp|11096029 +tx|11096109 +tyan shan|11096161 +tyche|11096280 +tycoon|11096313 +tying|11096433 +tying up|11096478 +tyiyn|11096520 +tyke|11096561 +tylenchidae|11096760 +tylenchus|11096824 +tylenchus tritici|11096880 +tylenol|11096992 +tyler|11097113 +tympan|11097260 +tympani|11097339 +tympanic|11097435 +tympanic bone|11097474 +tympanic cavity|11097505 +tympanic membrane|11097577 +tympanic vein|11097651 +tympanist|11097704 +tympanites|11097741 +tympanitic|11097794 +tympanitis|11097846 +tympanoplasty|11097893 +tympanuchus|11097989 +tympanuchus cupido|11098051 +tympanuchus cupido cupido|11098166 +tympanuchus pallidicinctus|11098281 +tympanum|11098411 +tyndale|11098631 +tyndall|11098757 +tyndall effect|11098805 +tyne|11098863 +tyne river|11098910 +type|11098963 +type a|11099210 +type ab|11099266 +type b|11099326 +type family|11099382 +type genus|11099408 +type i allergic reaction|11099434 +type i diabetes|11099558 +type ii diabetes|11099835 +type iv allergic reaction|11100242 +type metal|11100345 +type o|11100377 +type of architecture|11100433 +type species|11100514 +type specimen|11100544 +typecast|11100590 +typed|11100634 +typeface|11100669 +typescript|11100708 +typeset|11100735 +typesetter|11100766 +typesetting machine|11100833 +typewrite|11100887 +typewriter|11100917 +typewriter carriage|11100998 +typewriter font|11101036 +typewriter keyboard|11101139 +typewriter paper|11101177 +typewriter ribbon|11101230 +typewriting|11101275 +typewritten|11101311 +typha|11101346 +typha angustifolia|11101409 +typha latifolia|11101533 +typhaceae|11101637 +typhlopidae|11101730 +typhoeus|11101797 +typhoid|11101859 +typhoid bacillus|11101923 +typhoid bacteriophage|11101996 +typhoid fever|11102047 +typhoid mary|11102111 +typhon|11102188 +typhoon|11102246 +typhus|11102271 +typhus fever|11102334 +typic|11102397 +typical|11102441 +typical jerboa|11102594 +typicality|11102625 +typification|11102664 +typify|11102749 +typing|11102884 +typing paper|11102920 +typing pool|11102973 +typist|11102999 +typo|11103024 +typographer|11103111 +typographic|11103178 +typographical|11103224 +typographical error|11103270 +typography|11103357 +typology|11103434 +tyr|11103550 +tyramine|11103584 +tyranni|11103632 +tyrannic|11103687 +tyrannical|11103734 +tyrannicide|11103887 +tyrannid|11103933 +tyrannidae|11103978 +tyrannise|11104044 +tyrannize|11104193 +tyrannosaur|11104342 +tyrannosaurus|11104443 +tyrannosaurus rex|11104544 +tyrannous|11104663 +tyrannus|11104716 +tyrannus domenicensis domenicensis|11104769 +tyrannus tyrannus|11104898 +tyrannus vociferans|11105014 +tyranny|11105108 +tyrant|11105354 +tyrant bird|11105485 +tyrant flycatcher|11105565 +tyre|11105645 +tyrian purple|11105724 +tyro|11105823 +tyrocidin|11105884 +tyrocidine|11105941 +tyrol|11105998 +tyrolean|11106040 +tyrolese|11106113 +tyrosine|11106163 +tyrosine kinase inhibitor|11106211 +tyrosinemia|11106292 +tyrothricin|11106368 +tyrr|11106416 +tyrrhenian sea|11106451 +tyson|11106494 +tyto|11106570 +tyto alba|11106611 +tytonidae|11106690 +tyyn|11106748 +tzar|11106788 +tzara|11106843 +tzarina|11106901 +tzarist|11106970 +tzetze|11107045 +tzetze fly|11107103 +u|11107161 +u-boat|11107328 +u-drive|11107405 +u-shaped|11107495 +u-turn|11107529 +u. s. air force|11107593 +u. s. army|11107695 +u. s. army special forces|11107789 +u. s. coast guard|11107908 +u. s. code|11108069 +u.s.|11108130 +u.s. army criminal investigation laboratory|11108436 +u.s. congress|11108780 +u.s. government|11109003 +u.s. house|11109202 +u.s. house of representatives|11109451 +u.s. mint|11109719 +u.s. national library of medicine|11109861 +u.s. waters|11110018 +u.s.a.|11110091 +u308|11110299 +uakari|11110356 +ubermensch|11110401 +ubiety|11110456 +ubiquinone|11110481 +ubiquitous|11110542 +ubiquitousness|11110582 +ubiquity|11110637 +ubykh|11110692 +uca|11110742 +uda|11110785 +udder|11110903 +udmurt|11110942 +udometer|11111008 +ufa|11111070 +ufo|11111116 +uganda|11111219 +ugandan|11111292 +ugandan monetary unit|11111370 +ugandan shilling|11111437 +ugaritic|11111511 +ugli|11111569 +ugli fruit|11111615 +uglify|11111723 +ugliness|11111759 +ugly|11111802 +ugly duckling|11112230 +ugo buoncompagni|11112276 +ugrian|11112430 +ugric|11112484 +uhf|11112537 +uhland|11112590 +uighur|11112639 +uigur|11112780 +uintathere|11112920 +uintatheriidae|11112961 +uintatherium|11113036 +uk|11113103 +ukase|11113219 +uke|11113250 +ukraine|11113278 +ukrainian|11113331 +ukranian|11113445 +ukranian monetary unit|11113481 +ukrayina|11113550 +ukulele|11113604 +ulaanbaatar|11113632 +ulalgia|11113724 +ulama|11113754 +ulan bator|11113780 +ulanova|11113871 +ulatrophia|11113963 +ulcer|11114017 +ulcer diet|11114050 +ulcerate|11114086 +ulcerated|11114125 +ulceration|11114173 +ulcerative|11114248 +ulcerative colitis|11114274 +ulcerous|11114337 +ulema|11114385 +ulemorrhagia|11114411 +ulex|11114465 +ulex europaeus|11114513 +ulfila|11114592 +ulfilas|11114705 +ulitis|11114923 +ull|11114966 +ullage|11115000 +ullr|11115036 +ulmaceae|11115071 +ulmus|11115158 +ulmus alata|11115222 +ulmus americana|11115288 +ulmus campestris sarniensis|11115384 +ulmus campestris wheatleyi|11115543 +ulmus carpinifolia|11115701 +ulmus crassifolia|11115798 +ulmus glabra|11115866 +ulmus hollandica|11115933 +ulmus hollandica vegetata|11115999 +ulmus laevis|11116088 +ulmus parvifolia|11116146 +ulmus procera|11116214 +ulmus pumila|11116289 +ulmus rubra|11116372 +ulmus sarniensis|11116439 +ulmus serotina|11116587 +ulmus thomasii|11116661 +ulna|11116722 +ulnar|11116756 +ulnar artery|11116779 +ulnar nerve|11116854 +ulnar vein|11116917 +ulrich zwingli|11116980 +ulster|11117091 +ulster defense association|11117220 +ult|11117361 +ulterior|11117386 +ulteriority|11117484 +ultima thule|11117513 +ultimacy|11117626 +ultimate|11117682 +ultimate frisbee|11117814 +ultimately|11117851 +ultimateness|11117959 +ultimatum|11118015 +ultimo|11118041 +ultra|11118066 +ultra vires|11118110 +ultracef|11118143 +ultracentrifugation|11118203 +ultracentrifuge|11118247 +ultraconservative|11118334 +ultrahigh frequency|11118442 +ultramarine|11118491 +ultramarine blue|11118575 +ultramicroscope|11118621 +ultramicroscopic|11118685 +ultramodern|11118727 +ultramontane|11118755 +ultramontanism|11118876 +ultranationalism|11118907 +ultranationalistic|11118992 +ultrasonic|11119101 +ultrasonography|11119153 +ultrasound|11119238 +ultrasuede|11119336 +ultraviolet|11119385 +ultraviolet illumination|11119531 +ultraviolet lamp|11119650 +ultraviolet light|11119718 +ultraviolet radiation|11119837 +ultraviolet source|11119956 +ultraviolet spectrum|11120024 +ulugh muz tagh|11120063 +ulugh muztagh|11120130 +ululate|11120196 +ululation|11120290 +ulva|11120345 +ulvaceae|11120392 +ulvales|11120472 +ulvophyceae|11120528 +ulysses|11120585 +ulysses grant|11120619 +ulysses s. grant|11120839 +ulysses simpson grant|11121062 +uma|11121290 +uma notata|11121354 +umar al-mukhtar forces|11121427 +umayyad|11121582 +umbel|11121630 +umbel-like|11121659 +umbellales|11121704 +umbellar|11121764 +umbellate|11121805 +umbellifer|11121879 +umbelliferae|11121941 +umbelliferous|11122054 +umbelliferous plant|11122095 +umbelliform|11122157 +umbellularia|11122191 +umbellularia californica|11122267 +umber|11122457 +umbilical|11122564 +umbilical cord|11122588 +umbilical hernia|11122672 +umbilical vein|11122728 +umbilical vesicle|11122799 +umbilicate|11122872 +umbilicus|11122900 +umbo|11122961 +umbra|11122998 +umbrage|11123020 +umbrageous|11123070 +umbrella|11123161 +umbrella arum|11123302 +umbrella bird|11123385 +umbrella fern|11123448 +umbrella magnolia|11123529 +umbrella pine|11123615 +umbrella plant|11123704 +umbrella sedge|11123888 +umbrella tent|11123955 +umbrella tree|11124003 +umbrellalike|11124153 +umbrellawort|11124183 +umbria|11124212 +umbrian|11124250 +umbrina|11124288 +umbrina roncador|11124338 +umbundu|11124426 +umlaut|11124474 +umma|11124536 +umma tameer-e-nau|11124611 +ummah|11124693 +ump|11124769 +umpirage|11124798 +umpire|11124893 +umpteen|11124943 +umpteenth|11124972 +umptieth|11125017 +umteen|11125062 +umteenth|11125091 +un|11125136 +un agency|11125568 +un-american|11125278 +un-come-at-able|11125332 +un-get-at-able|11125410 +unabashed|11125659 +unabated|11125702 +unable|11125728 +unable to help|11125817 +unabridged|11125862 +unabridged dictionary|11125925 +unabused|11125975 +unaccented|11126039 +unacceptability|11126150 +unacceptable|11126211 +unacceptableness|11126419 +unacceptably|11126480 +unaccepted|11126513 +unaccessible|11126558 +unaccommodating|11126804 +unaccompanied|11126899 +unaccountable|11127027 +unaccredited|11127115 +unaccustomed|11127185 +unachievable|11127256 +unachievably|11127324 +unacknowledged|11127358 +unacquainted|11127527 +unacquainted with|11127594 +unacquisitive|11127691 +unactable|11127728 +unadaptability|11127757 +unadaptable|11127801 +unadapted|11127861 +unaddicted|11127921 +unaddressed|11127958 +unadjustable|11127991 +unadjusted|11128019 +unadmonished|11128091 +unadoptable|11128157 +unadorned|11128190 +unadulterated|11128289 +unadventurous|11128317 +unadvisable|11128383 +unadvised|11128424 +unaerated|11128491 +unaesthetic|11128536 +unaffected|11128606 +unaffectedness|11128854 +unaffecting|11128890 +unaffectionate|11128920 +unaffiliated|11128962 +unaffixed|11128996 +unafraid|11129031 +unaged|11129200 +unaggressive|11129248 +unagitated|11129331 +unaided|11129482 +unaired|11129534 +unairworthy|11129585 +unalarming|11129618 +unalert|11129676 +unalienable|11129754 +unalike|11129885 +unalloyed|11129921 +unalterability|11129945 +unalterable|11130083 +unalterably|11130200 +unaltered|11130256 +unambiguity|11130358 +unambiguous|11130444 +unambiguously|11130594 +unambitious|11130663 +unamended|11130750 +unamused|11130779 +unamusing|11130815 +unanalyzable|11130849 +unanalyzed|11130893 +unangry|11130934 +unanimated|11130959 +unanimity|11131008 +unanimous|11131044 +unanimously|11131135 +unannealed|11131184 +unannounced|11131234 +unanswerable|11131289 +unanswered|11131339 +unanticipated|11131399 +unapologetic|11131473 +unappareled|11131508 +unapparent|11131587 +unappealable|11131617 +unappealing|11131652 +unappeasable|11131752 +unappendaged|11131842 +unappetising|11131877 +unappetisingness|11131952 +unappetizing|11132026 +unappetizingness|11132114 +unappreciated|11132188 +unappreciative|11132284 +unappreciatively|11132340 +unapprehensive|11132378 +unapproachability|11132420 +unapproachable|11132498 +unarbitrary|11132624 +unarguable|11132669 +unarguably|11132728 +unargumentative|11132760 +unarm|11132816 +unarmed|11132859 +unarmored|11132961 +unarmoured|11133039 +unarticulate|11133096 +unarticulated|11133346 +unartistic|11133426 +unary|11133481 +unary operation|11133503 +unascertainable|11133556 +unascribable|11133626 +unashamed|11133663 +unashamedly|11133850 +unasked|11133894 +unassailable|11133991 +unassailably|11134184 +unassertive|11134240 +unassertiveness|11134394 +unassignable|11134455 +unassigned|11134532 +unassisted|11134563 +unassuming|11134658 +unassumingness|11134694 +unassured|11134740 +unasterisked|11134768 +unattached|11134809 +unattackable|11134930 +unattainable|11135015 +unattainableness|11135083 +unattainably|11135138 +unattended|11135172 +unattired|11135255 +unattractive|11135334 +unattractiveness|11135496 +unattributable|11135531 +unau|11135583 +unauthentic|11135709 +unauthorised|11135773 +unauthorized|11135921 +unauthorized absence|11136082 +unavailability|11136166 +unavailable|11136220 +unavailing|11136317 +unavenged|11136371 +unavoidability|11136425 +unavoidable|11136505 +unavoidable casualty|11136561 +unavoidably|11136694 +unavowed|11136749 +unawakened|11136833 +unaware|11136878 +unawareness|11137014 +unawares|11137065 +unawed|11137088 +unbacked|11137126 +unbaffled|11137181 +unbalance|11137223 +unbalanced|11137354 +unbalconied|11137489 +unbanded|11137522 +unbaptised|11137549 +unbaptized|11137580 +unbar|11137622 +unbarred|11137650 +unbarreled|11137717 +unbarrelled|11137760 +unbearable|11137792 +unbeatable|11137836 +unbeaten|11137915 +unbecoming|11137969 +unbecomingly|11138063 +unbecomingness|11138097 +unbefitting|11138146 +unbeholden|11138181 +unbeknown|11138213 +unbeknownst|11138270 +unbelief|11138325 +unbelievable|11138393 +unbelievably|11138664 +unbeliever|11138719 +unbelieving|11138783 +unbelievingly|11138926 +unbeloved|11138977 +unbelt|11139020 +unbelted|11139041 +unbend|11139077 +unbendable|11139321 +unbending|11139406 +unbeneficed|11139454 +unbent|11139487 +unbiased|11139567 +unbiassed|11139663 +unbid|11139758 +unbidden|11139800 +unbigoted|11139842 +unbind|11139870 +unbitter|11139893 +unbleached|11139923 +unblemished|11139968 +unblended|11140083 +unblessed|11140140 +unblinking|11140169 +unblock|11140264 +unbloodied|11140328 +unbloody|11140358 +unblushing|11140397 +unbodied|11140437 +unbolt|11140589 +unbolted|11140618 +unbooked|11140685 +unbordered|11140714 +unborn|11140745 +unbosom|11140778 +unbound|11140811 +unbounded|11140934 +unbounded interval|11140982 +unboundedness|11141033 +unbowed|11141116 +unbox|11141198 +unbrace|11141229 +unbraced|11141336 +unbraid|11141366 +unbrainwashed|11141388 +unbranched|11141425 +unbranching|11141468 +unbranded|11141511 +unbreakable|11141540 +unbreakableness|11141643 +unbridgeable|11141697 +unbridled|11141732 +unbroken|11141794 +unbrowsed|11142012 +unbrushed|11142041 +unbuckle|11142070 +unburden|11142093 +unburdened|11142164 +unburied|11142239 +unburned|11142266 +unburnished|11142311 +unbutton|11142343 +unbuttoned|11142366 +uncalled-for|11142450 +uncamphorated|11142529 +uncanny|11142566 +uncapped|11142643 +uncarbonated|11142671 +uncared-for|11142723 +uncaring|11142786 +uncarpeted|11142872 +uncarved|11142903 +uncase|11142930 +uncastrated|11143010 +uncategorised|11143057 +uncategorized|11143116 +uncaulked|11143175 +uncaused|11143204 +unceasing|11143254 +unceasingly|11143434 +uncensored|11143512 +unceremonial|11143556 +unceremonious|11143601 +unceremoniousness|11143666 +uncertain|11143705 +uncertainly|11144073 +uncertainness|11144116 +uncertainty|11144159 +uncertainty principle|11144290 +uncertified|11144363 +unchain|11144396 +unchained|11144474 +unchallengeable|11144530 +unchallenged|11144570 +unchangeability|11144641 +unchangeable|11144721 +unchangeableness|11144883 +unchangeably|11144963 +unchanged|11145019 +unchanging|11145163 +unchangingness|11145261 +uncharacteristic|11145341 +uncharacteristic of|11145432 +uncharged|11145506 +uncharitable|11145548 +uncharted|11145655 +unchartered|11145701 +unchaste|11145734 +unchastened|11145847 +uncheckable|11145913 +unchecked|11145947 +uncheerful|11146009 +uncheerfulness|11146178 +unchewable|11146253 +unchivalrous|11146302 +unchristian|11146355 +unchristianly|11146439 +unchristlike|11146487 +uncial|11146535 +unciform bone|11146571 +uncivil|11146654 +uncivilised|11146684 +uncivilized|11146774 +unclad|11146864 +unclaimed|11146943 +unclasp|11146971 +unclassifiable|11147024 +unclassified|11147063 +uncle|11147194 +uncle joe|11147242 +uncle sam|11147345 +uncle tom|11147425 +unclean|11147570 +uncleanliness|11148069 +uncleanness|11148120 +unclear|11148170 +uncleared|11148417 +unclearness|11148464 +unclimbable|11148505 +unclip|11148581 +unclipped|11148602 +uncloak|11148654 +unclog|11148708 +unclogged|11148739 +unclothe|11148771 +unclothed|11148901 +unclouded|11149513 +uncloudedness|11149625 +unclutter|11149674 +uncluttered|11149719 +unco|11149756 +uncoated|11149829 +uncoerced|11149856 +uncoil|11149902 +uncoiled|11149937 +uncollected|11149990 +uncollectible|11150023 +uncolored|11150058 +uncoloured|11150173 +uncolumned|11150245 +uncombable|11150296 +uncombed|11150325 +uncombined|11150371 +uncomely|11150423 +uncomfortable|11150499 +uncomfortableness|11150707 +uncommercial|11150813 +uncommercialised|11150849 +uncommercialized|11150906 +uncommitted|11150963 +uncommon|11151097 +uncommonness|11151256 +uncommunicative|11151296 +uncommunicativeness|11151604 +uncompahgre peak|11151639 +uncomparable|11151696 +uncomparably|11151911 +uncompartmented|11151945 +uncompassionate|11151986 +uncompensated|11152097 +uncompetitive|11152138 +uncomplaining|11152176 +uncomplete|11152254 +uncompleted|11152361 +uncomplicated|11152433 +uncomplimentary|11152523 +uncompounded|11152789 +uncomprehended|11152830 +uncomprehending|11152867 +uncomprehensible|11152905 +uncompress|11153120 +uncompromising|11153171 +unconcealed|11153251 +unconcern|11153401 +unconcerned|11153473 +unconditional|11153643 +unconditionally|11153823 +unconditioned|11153868 +unconditioned reflex|11153958 +unconfessed|11154083 +unconfident|11154133 +unconfined|11154193 +unconfirmed|11154276 +unconformable|11154320 +unconformist|11154356 +unconfused|11154392 +uncongenial|11154434 +uncongeniality|11154604 +unconnected|11154643 +unconnectedness|11154930 +unconquerable|11154964 +unconquered|11155235 +unconscientious|11155289 +unconscientiousness|11155360 +unconscionable|11155420 +unconscious|11155543 +unconscious mind|11155878 +unconscious process|11155944 +unconsciousness|11156008 +unconsecrated|11156063 +unconsidered|11156125 +unconsolable|11156173 +unconsolidated|11156230 +unconstipated|11156260 +unconstitutional|11156380 +unconstrained|11156423 +unconstraint|11156462 +unconstricted|11156515 +unconstructive|11156557 +unconsumed|11156591 +unconsummated|11156646 +uncontaminated|11156683 +uncontaminating|11156745 +uncontested|11156776 +uncontrived|11156816 +uncontrollable|11156865 +uncontrolled|11157044 +uncontroversial|11157287 +unconventional|11157427 +unconventionality|11157761 +unconverted|11157830 +unconvertible|11157890 +unconvinced|11157955 +unconvincing|11157996 +uncooked|11158120 +uncool|11158142 +uncooperative|11158162 +uncoordinated|11158276 +uncordial|11158340 +uncork|11158370 +uncorrectable|11158414 +uncorrected|11158478 +uncorrelated|11158554 +uncorroborated|11158586 +uncorrupted|11158638 +uncounted|11158721 +uncouple|11158863 +uncoupled|11158901 +uncousinly|11158932 +uncouth|11158963 +uncouthness|11159021 +uncover|11159065 +uncovered|11159125 +uncovering|11159224 +uncrannied|11159344 +uncrate|11159382 +uncreased|11159415 +uncreative|11159452 +uncreativeness|11159552 +uncritical|11159586 +uncropped|11159700 +uncross|11159765 +uncrossed|11159812 +uncrowded|11159858 +uncrowned|11159887 +uncrystallised|11159964 +uncrystallized|11160050 +unction|11160151 +unctuous|11160404 +unctuously|11160471 +unctuousness|11160509 +uncultivable|11160596 +uncultivatable|11160646 +uncultivated|11160696 +uncultured|11160836 +uncurbed|11160887 +uncured|11160949 +uncurl|11160990 +uncurled|11161021 +uncurtained|11161073 +uncurved|11161106 +uncurving|11161143 +uncus|11161180 +uncut|11161209 +undamaged|11161407 +undatable|11161506 +undated|11161561 +undaunted|11161597 +undecagon|11161678 +undeceive|11161721 +undeceived|11161747 +undecided|11161790 +undecipherable|11161898 +undecipherably|11161966 +undeciphered|11162010 +undeclared|11162045 +undecomposable|11162100 +undecomposed|11162144 +undecorated|11162184 +undecylenic acid|11162273 +undedicated|11162304 +undefeated|11162337 +undefendable|11162443 +undefended|11162503 +undeferential|11162563 +undefiled|11162600 +undefinable|11162662 +undefined|11162711 +undelineated|11162781 +undemanding|11162846 +undemocratic|11162924 +undemonstrative|11163070 +undeniable|11163161 +undenominational|11163285 +undependability|11163336 +undependable|11163442 +undependableness|11163606 +undependably|11163712 +undepicted|11163757 +under|11163801 +under attack|11163962 +under consideration|11164006 +under control|11164084 +under fire|11164128 +under it|11164172 +under that|11164211 +under the weather|11164250 +under wraps|11164332 +under-the-counter|11163868 +under-the-table|11163903 +underachieve|11164360 +underachievement|11164406 +underachiever|11164444 +underact|11164517 +underactive|11164571 +underage|11164612 +underarm|11164661 +underbelly|11164717 +underbid|11164850 +underbodice|11164925 +underbody|11164968 +underboss|11165027 +underbred|11165078 +underbrush|11165166 +undercarriage|11165246 +undercharge|11165301 +underclass|11165403 +underclassman|11165439 +underclothed|11165500 +underclothes|11165559 +underclothing|11165618 +undercoat|11165677 +undercoated|11165835 +undercover|11165877 +undercover agent|11166019 +undercover operation|11166112 +undercover work|11166152 +undercurrent|11166242 +undercut|11166324 +underdevelop|11166532 +underdeveloped|11166562 +underdevelopment|11166639 +underdog|11166707 +underdone|11166770 +underdrawers|11166804 +underdress|11166871 +underdressed|11166920 +undereducated|11166955 +underemployed|11166989 +underestimate|11167022 +underestimation|11167231 +underevaluation|11167336 +underexpose|11167382 +underexposure|11167424 +underfed|11167472 +underfelt|11167526 +underframe|11167586 +underfur|11167657 +undergarment|11167689 +undergird|11167719 +undergo|11167797 +undergrad|11168002 +undergraduate|11168069 +underground|11168136 +underground press|11168484 +underground railroad|11168532 +underground railway|11168617 +undergrow|11168701 +undergrowth|11168725 +underhand|11168805 +underhanded|11168932 +underhandedly|11169012 +underhung|11169044 +underivative|11169112 +underived|11169143 +underlay|11169189 +underlayment|11169395 +underlie|11169449 +underline|11169481 +underling|11169634 +underlying|11169721 +undermanned|11169836 +undermentioned|11169908 +undermine|11169953 +undernourish|11170066 +undernourished|11170109 +undernourishment|11170163 +underpants|11170222 +underpart|11170255 +underpass|11170284 +underpay|11170317 +underpayment|11170339 +underperform|11170404 +underperformer|11170465 +underpin|11170623 +underplay|11170755 +underpopulated|11170821 +underprice|11170855 +underprivileged|11170885 +underproduce|11170977 +underproduction|11171019 +underquote|11171055 +underrate|11171094 +underrating|11171136 +underreckoning|11171241 +underscore|11171346 +undersea|11171497 +underseal|11171536 +undersealed|11171570 +undersecretary|11171612 +undersell|11171646 +underseller|11171679 +undersexed|11171741 +undershirt|11171768 +undershoot|11171814 +undershot|11171860 +undershrub|11171911 +underside|11171942 +undersign|11171991 +undersize|11172015 +undersized|11172051 +underskirt|11172087 +underslung|11172140 +undersoil|11172225 +underspend|11172262 +underspent|11172313 +understaffed|11172343 +understand|11172415 +understandability|11172557 +understandable|11172610 +understandably|11172713 +understanding|11172757 +understate|11172967 +understated|11173021 +understatement|11173080 +understock|11173114 +understood|11173147 +understructure|11173281 +understudy|11173368 +undersurface|11173484 +undertake|11173533 +undertaker|11173738 +undertaking|11173834 +undertide|11173898 +undertone|11173945 +undertow|11174059 +undervaluation|11174167 +undervalue|11174219 +underwater|11174353 +underwater archaeology|11174461 +underwater archeology|11174575 +underwater diver|11174689 +underway|11174749 +underwear|11174781 +underweight|11174840 +underwing|11174900 +underwood|11174951 +underworld|11175031 +underwrite|11175179 +underwriter|11175276 +undescended|11175515 +undescended testicle|11175587 +undescended testis|11175688 +undescriptive|11175789 +undeserved|11175826 +undeserving|11175856 +undeserving of|11175913 +undesigned|11175970 +undesirability|11176015 +undesirable|11176051 +undesired|11176192 +undesiring|11176229 +undesirous|11176260 +undestroyable|11176302 +undetectable|11176394 +undetected|11176496 +undeterminable|11176558 +undetermined|11176696 +undeterred|11176881 +undeveloped|11176924 +undeviating|11177058 +undiagnosable|11177113 +undiagnosed|11177151 +undies|11177180 +undifferentiated|11177222 +undigested|11177290 +undignified|11177343 +undiluted|11177476 +undiminished|11177581 +undimmed|11177626 +undine|11177660 +undiplomatic|11177701 +undiplomatically|11177762 +undirected|11177805 +undiscerning|11177893 +undischarged|11177975 +undiscipline|11178052 +undisciplined|11178093 +undisclosed|11178187 +undiscouraged|11178226 +undiscoverable|11178269 +undiscovered|11178339 +undiscriminating|11178398 +undisguised|11178536 +undismayed|11178568 +undisputable|11178616 +undisputed|11178676 +undisputedly|11178796 +undissolved|11178828 +undistinguishable|11178858 +undistinguished|11178903 +undistorted|11178955 +undistributed|11178994 +undisturbed|11179040 +undiversified|11179099 +undividable|11179217 +undivided|11179265 +undivided interest|11179362 +undivided right|11179421 +undo|11179480 +undoable|11179621 +undock|11179689 +undocked|11179769 +undocumented|11179797 +undoer|11179857 +undogmatic|11180041 +undogmatical|11180168 +undoing|11180293 +undomestic|11180401 +undomesticated|11180447 +undone|11180502 +undoubted|11180639 +undoubtedly|11180710 +undrained|11180787 +undramatic|11180816 +undrape|11180861 +undraped|11180893 +undrawn|11180937 +undreamed|11180967 +undreamed of|11181055 +undreamt|11181143 +undreamt of|11181231 +undress|11181319 +undressed|11181493 +undried|11181590 +undrinkable|11181611 +undrunk|11181644 +undset|11181680 +undue|11181731 +undulant fever|11181869 +undulate|11181983 +undulation|11182106 +undulatory theory|11182201 +undutiful|11182279 +undutifulness|11182320 +undyed|11182363 +undying|11182408 +undynamic|11182444 +uneager|11182518 +unearned|11182553 +unearned income|11182589 +unearned increment|11182669 +unearned revenue|11182712 +unearned run|11182791 +unearth|11182823 +unearthly|11182903 +unease|11182985 +uneasily|11183089 +uneasiness|11183131 +uneasy|11183368 +uneatable|11183573 +uneaten|11183642 +uneconomic|11183728 +uneconomical|11183770 +unedifying|11183840 +unedited|11183886 +uneducated|11183924 +uneducated person|11184173 +uneffective|11184240 +unelaborate|11184362 +unelaborated|11184401 +unembarrassed|11184453 +unembellished|11184496 +unembodied|11184594 +unemotional|11184680 +unemotional person|11184902 +unemotionality|11184950 +unemotionally|11185082 +unemphatic|11185120 +unemployable|11185162 +unemployed|11185197 +unemployed person|11185318 +unemployment|11185355 +unemployment compensation|11185383 +unemployment line|11185435 +unemployment rate|11185481 +unenclosed|11185542 +unencouraging|11185647 +unencumbered|11185683 +unended|11185776 +unending|11185804 +unendingly|11185888 +unendowed|11185966 +unendurable|11186015 +unenergetic|11186059 +unenergetically|11186121 +unenforceable|11186159 +unenforced|11186196 +unengaged|11186227 +unenlightened|11186302 +unenlightening|11186464 +unenlightenment|11186571 +unenlivened|11186606 +unenterprising|11186639 +unentertaining|11186755 +unenthusiastic|11186804 +unentitled|11186903 +unenviable|11186946 +unequal|11187028 +unequal to|11187183 +unequaled|11187236 +unequalised|11187318 +unequalized|11187359 +unequalled|11187400 +unequally|11187482 +unequipped|11187509 +unequivocal|11187651 +unequivocally|11187805 +unequivocalness|11187859 +unerasable|11187945 +unerect|11187988 +unergetic|11188370 +uneroded|11188491 +unerring|11188528 +unesco|11188576 +unessential|11188695 +unestablished|11188866 +unethical|11188929 +uneven|11189017 +unevenly|11189251 +unevenness|11189293 +uneventful|11189369 +unexacting|11189413 +unexampled|11189445 +unexceeded|11189483 +unexcelled|11189531 +unexceptionable|11189579 +unexceptional|11189629 +unexchangeability|11189702 +unexchangeable|11189792 +unexcitable|11189892 +unexcited|11189932 +unexciting|11189972 +unexclusive|11190201 +unexcused|11190242 +unexhausted|11190271 +unexpansive|11190383 +unexpected|11190434 +unexpectedly|11190734 +unexpectedness|11190817 +unexpendable|11190874 +unexpended|11190971 +unexpired|11191068 +unexplainable|11191103 +unexplained|11191170 +unexploded|11191241 +unexploited|11191281 +unexplorative|11191342 +unexploratory|11191409 +unexplored|11191476 +unexportable|11191517 +unexpressed|11191552 +unexpressible|11191663 +unexpressive|11191771 +unexpurgated|11191870 +unextended|11191903 +unfaceted|11191934 +unfading|11191963 +unfailing|11192002 +unfair|11192090 +unfairly|11192265 +unfairness|11192297 +unfaithful|11192463 +unfaithfully|11192677 +unfaithfulness|11192722 +unfaltering|11192765 +unfalteringly|11192850 +unfamiliar|11192915 +unfamiliar with|11193025 +unfamiliarity|11193092 +unfashionable|11193139 +unfasten|11193345 +unfastened|11193388 +unfastener|11193551 +unfastening|11193645 +unfastidious|11193701 +unfathomable|11193780 +unfathomed|11193901 +unfattened|11193955 +unfavorable|11193986 +unfavorable judgment|11194272 +unfavorable position|11194324 +unfavorableness|11194379 +unfavorably|11194434 +unfavourable|11194467 +unfavourableness|11194717 +unfavourably|11194772 +unfearing|11194805 +unfeasibility|11194873 +unfeasible|11194945 +unfeathered|11195012 +unfed|11195120 +unfeeling|11195164 +unfeelingly|11195252 +unfeelingness|11195282 +unfeigned|11195370 +unfeignedly|11195410 +unfelled|11195446 +unfeminine|11195488 +unfenced|11195518 +unfermented|11195557 +unfertile|11195599 +unfertilised|11195738 +unfertilized|11195815 +unfettered|11195892 +unfiled|11195948 +unfilled|11195989 +unfilmed|11196013 +unfinished|11196055 +unfinished business|11196270 +unfirm|11196314 +unfit|11196369 +unfitness|11196900 +unfitting|11197055 +unfixed|11197128 +unflagging|11197228 +unflappable|11197318 +unflattering|11197362 +unflavored|11197420 +unflavoured|11197487 +unflawed|11197554 +unfledged|11197589 +unflinching|11197720 +unfluctuating|11197796 +unflurried|11197838 +unflustered|11197901 +unfocused|11197964 +unfocussed|11198047 +unfold|11198119 +unfolded|11198317 +unfolding|11198373 +unforbearing|11198424 +unforced|11198462 +unforceful|11198537 +unforeseeable|11198586 +unforeseen|11198623 +unforesightful|11198722 +unforested|11198784 +unforethoughtful|11198822 +unforfeitable|11198860 +unforgettable|11198908 +unforgettably|11198985 +unforgivable|11199017 +unforgivably|11199064 +unforgiving|11199110 +unformatted capacity|11199294 +unformed|11199333 +unforsaken|11199482 +unfortunate|11199533 +unfortunate person|11200012 +unfortunately|11200105 +unfounded|11200154 +unfractured|11200222 +unframed|11200252 +unfree|11200279 +unfreeze|11200524 +unfrequented|11200637 +unfretted|11200701 +unfriendliness|11200734 +unfriendly|11200797 +unfrightened|11201059 +unfrock|11201099 +unfrosted|11201141 +unfrozen|11201166 +unfruitful|11201259 +unfueled|11201387 +unfulfilled|11201435 +unfunctional|11201491 +unfunded|11201525 +unfunny|11201552 +unfurl|11201601 +unfurnished|11201639 +unfurnished with|11201732 +unfurrowed|11201813 +ungainliness|11201862 +ungainly|11201917 +ungallant|11202027 +ungarbed|11202080 +ungarmented|11202159 +ungathered|11202238 +ungeared|11202270 +ungenerous|11202309 +ungentle|11202683 +ungentlemanlike|11202726 +ungentlemanly|11202775 +ungetatable|11202824 +unglamorous|11202902 +unglamourous|11202975 +unglazed|11203048 +ungodliness|11203113 +ungodly|11203166 +ungovernable|11203235 +ungoverned|11203301 +ungraceful|11203397 +ungracefully|11203435 +ungracefulness|11203511 +ungracious|11203572 +ungraciously|11203672 +ungraciousness|11203748 +ungradable opposition|11203793 +ungraded|11203848 +ungrammatical|11203938 +ungrasped|11203986 +ungrateful|11204018 +ungrateful person|11204103 +ungratefully|11204190 +ungratefulness|11204228 +ungratified|11204272 +ungratifying|11204338 +ungreased|11204396 +ungregarious|11204428 +ungroomed|11204523 +ungrudging|11204590 +ungual|11204619 +unguaranteed|11204697 +unguarded|11204745 +unguent|11204812 +unguiculata|11204878 +unguiculate|11204965 +unguiculate mammal|11205107 +unguiculated|11205201 +unguided|11205251 +unguis|11205278 +ungulata|11205391 +ungulate|11205472 +ungulated|11205598 +ungummed|11205640 +ungusseted|11205670 +unh|11205701 +unhallowed|11205785 +unhampered|11205847 +unhand|11205911 +unhappily|11205963 +unhappiness|11205987 +unhappy|11206054 +unhardened|11206343 +unharmed|11206393 +unharmonious|11206438 +unharmoniously|11206572 +unharness|11206608 +unhatched|11206635 +unhazardous|11206661 +unheaded|11206706 +unhealed|11206733 +unhealthful|11206760 +unhealthfulness|11207038 +unhealthiness|11207100 +unhealthy|11207168 +unhearable|11207966 +unheard|11208114 +unheard-of|11208152 +unhearing|11208180 +unheated|11208246 +unheeded|11208278 +unheeding|11208324 +unhelpful|11208457 +unhelpfulness|11208573 +unheralded|11208607 +unhesitating|11208662 +unhewn|11208702 +unhindered|11208729 +unhinge|11208773 +unhinged|11208898 +unhitch|11208989 +unholiness|11209011 +unhollowed|11209039 +unholy|11209065 +unhomogenised|11209248 +unhomogenized|11209295 +unhook|11209342 +unhoped|11209365 +unhoped-for|11209428 +unhopeful|11209491 +unhorse|11209535 +unhostile|11209615 +unhuman|11209643 +unhumorous|11209693 +unhurried|11209762 +unhurriedness|11209859 +unhurt|11209929 +unhygienic|11210001 +uniat|11210055 +uniat church|11210109 +uniate|11210174 +uniate christian|11210258 +uniate church|11210323 +unicameral|11210389 +unicef|11210420 +unicellular|11210561 +unicorn|11210608 +unicorn root|11210660 +unicuspid|11210741 +unicycle|11210777 +unicyclist|11210821 +unidentifiable|11210858 +unidentified|11210975 +unidentified flying object|11211053 +unidimensional|11211152 +unidirectional|11211207 +unifacial|11211272 +unification|11211306 +unification church|11211442 +unified|11211513 +unifoliate|11211625 +uniform|11211651 +uniform resource locator|11211876 +uniformed|11211966 +uniformise|11211998 +uniformity|11212049 +uniformize|11212110 +uniformness|11212161 +unify|11212204 +unifying|11212375 +unilateral|11212451 +unilateral contract|11212537 +unilateral descent|11212590 +unilateral paralysis|11212660 +unilateralism|11212717 +unilateralist|11212803 +unilluminated|11212896 +unilluminating|11212950 +unimaginable|11213004 +unimaginably|11213083 +unimaginative|11213116 +unimaginatively|11213256 +unimagined|11213292 +unimodal|11213380 +unimpaired|11213407 +unimpassioned|11213465 +unimpeachable|11213500 +unimpeachably|11213647 +unimpeded|11213684 +unimportance|11213716 +unimportant|11213784 +unimposing|11214196 +unimpregnated|11214229 +unimpressed|11214306 +unimpressionable|11214338 +unimpressive|11214381 +unimprisoned|11214434 +unimproved|11214472 +unincorporated|11214552 +unindebted|11214600 +unindustrialised|11214632 +unindustrialized|11214689 +uninebriated|11214746 +uninfected|11214788 +uninflected|11214825 +uninfluenced|11214903 +uninfluential|11214955 +uninformative|11214992 +uninformatively|11215109 +uninformed|11215149 +uninhabitable|11215353 +uninhabited|11215397 +uninhibited|11215506 +uninitiate|11215605 +uninitiated|11215665 +uninjectable|11215711 +uninjured|11215746 +uninominal|11215875 +uninominal system|11215913 +uninominal voting system|11216075 +uninquiring|11216237 +uninquisitive|11216315 +uninspired|11216379 +uninspiring|11216462 +uninstructed|11216495 +uninstructive|11216542 +uninstructively|11216659 +uninsurability|11216699 +uninsurable|11216737 +uninsured|11216768 +unintegrated|11216809 +unintelligent|11216939 +unintelligently|11217090 +unintelligibility|11217143 +unintelligible|11217272 +unintelligibly|11217407 +unintended|11217447 +unintentional|11217587 +unintentionally|11217685 +uninterested|11217722 +uninteresting|11217847 +uninterestingness|11218115 +uninterrupted|11218176 +unintimidated|11218455 +unintoxicated|11218531 +unintrusive|11218573 +uninucleate|11218620 +uninventive|11218674 +uninvited|11218739 +uninvitedly|11218880 +uninviting|11218911 +uninvolved|11219009 +unio|11219087 +uniocular dichromat|11219131 +union|11219170 +union army|11219846 +union card|11219914 +union flag|11219950 +union jack|11219997 +union member|11220044 +union of burma|11220097 +union of soviet socialist republics|11220177 +union representative|11220302 +union shop|11220347 +union soldier|11220375 +union suit|11220459 +unionidae|11220507 +unionisation|11220568 +unionise|11220666 +unionised|11220789 +unionism|11220892 +unionist|11220967 +unionization|11221020 +unionize|11221118 +unionized|11221241 +uniovular|11221344 +uniovulate|11221396 +uniparous|11221448 +unipolar|11221477 +unipolar depression|11221504 +unique|11221558 +uniquely|11221694 +uniqueness|11221725 +unironed|11221799 +unisex|11221896 +unisexual|11221924 +unison|11221950 +unit|11222053 +unit cell|11222284 +unit character|11222323 +unit cost|11222353 +unit investment trust|11222377 +unit matrix|11222476 +unit of ammunition|11222527 +unit of measurement|11222586 +unit of time|11222638 +unit of viscosity|11222694 +unit trust|11222746 +unitard|11222845 +unitarian|11222897 +unitarian church|11222974 +unitarianism|11223041 +unitary|11223090 +unite|11223157 +united|11223333 +united arab emirate dirham|11223784 +united arab emirate monetary unit|11223888 +united arab emirates|11223979 +united arab emirates's capital|11224057 +united arab republic|11224155 +united church of christ|11224266 +united front|11224347 +united kingdom|11224439 +united kingdom of great britain and northern ireland|11224567 +united methodist church|11224733 +united mexican states|11224813 +united mine workers|11224918 +united mine workers of america|11225030 +united nations|11225153 +united nations agency|11225307 +united nations children's fund|11225410 +united nations crime prevention and criminal justice|11225575 +united nations day|11225764 +united nations educational scientific and cultural organization|11225826 +united nations international children's emergency fund|11226002 +united nations office for drug control and crime prevention|11226191 +united nations secretariat|11226357 +united republic of tanzania|11226445 +united self-defense force of colombia|11226550 +united self-defense group of colombia|11226783 +united society of believers in christ's second appearing|11227016 +united states|11227183 +united states air force|11227417 +united states air force academy|11227527 +united states army|11227639 +united states army criminal investigation laboratory|11227741 +united states army rangers|11228013 +united states army special forces|11228086 +united states attorney general|11228213 +united states border patrol|11228331 +united states cabinet|11228477 +united states civil war|11228549 +united states coast guard|11228658 +united states code|11228827 +united states congress|11228896 +united states constitution|11229047 +united states customary system|11229185 +united states department of defense|11229287 +united states dollar|11229442 +united states dry unit|11229500 +united states fish and wildlife service|11229576 +united states government|11229762 +united states government accounting office|11229889 +united states government printing office|11230081 +united states house of representatives|11230297 +united states intelligence agency|11230493 +united states intelligence community|11230624 +united states liquid unit|11230819 +united states marine corps|11230907 +united states marines|11231037 +united states marshals service|11231162 +united states military academy|11231285 +united states mint|11231393 +united states national library of medicine|11231463 +united states naval academy|11231629 +united states navy|11231725 +united states of america|11231802 +united states post office|11231947 +united states postal inspection service|11232057 +united states postal service|11232194 +united states president|11232303 +united states public health service|11232446 +united states secret service|11232595 +united states senate|11232737 +united states supreme court|11232812 +united states trade representative|11232940 +united states treasury|11233060 +united states virgin islands|11233192 +united states waters|11233297 +unitedly|11233379 +uniting|11233422 +unitisation|11233565 +unitise|11233738 +unitization|11233905 +unitize|11234078 +unity|11234245 +univalent|11234384 +univalve|11234431 +universal|11234516 +universal agent|11234643 +universal donor|11234688 +universal gas constant|11234725 +universal gravitational constant|11234781 +universal joint|11234881 +universal product code|11234933 +universal quantifier|11235002 +universal resource locator|11235043 +universal solvent|11235133 +universal time|11235234 +universal veil|11235309 +universalise|11235366 +universalism|11235441 +universalist|11235503 +universalistic|11235579 +universality|11235690 +universalize|11235735 +universe|11235810 +universe of discourse|11236019 +university|11236099 +university extension|11236176 +university of california at berkeley|11236295 +university of chicago|11236389 +university of michigan|11236453 +university of nebraska|11236529 +university of north carolina|11236623 +university of paris|11236701 +university of pennsylvania|11236787 +university of pittsburgh|11236879 +university of sussex|11236949 +university of texas|11237029 +university of vermont|11237089 +university of washington|11237153 +university of west virginia|11237223 +university of wisconsin|11237299 +university student|11237367 +univocal|11237445 +unix|11237550 +unix guru|11237623 +unix operating system|11237682 +unix system|11237772 +unjointed|11237852 +unjust|11237885 +unjustifiable|11238113 +unjustifiably|11238201 +unjustified|11238235 +unjustness|11238287 +unkempt|11238333 +unkemptness|11238390 +unkept|11238446 +unkeyed|11238469 +unkind|11238493 +unkind person|11238692 +unkindled|11238738 +unkindly|11238773 +unkindness|11238812 +unknot|11238862 +unknowable|11238918 +unknowing|11238977 +unknowingly|11239096 +unknowingness|11239142 +unknowledgeable|11239243 +unknown|11239308 +unknown quantity|11239793 +unknown region|11239850 +unknown soldier|11239905 +unlabeled|11239954 +unlabelled|11240003 +unlace|11240042 +unlaced|11240077 +unladylike|11240140 +unlamented|11240170 +unlash|11240211 +unlatched|11240248 +unlaureled|11240315 +unlaurelled|11240358 +unlawful|11240390 +unlawful carnal knowledge|11240625 +unlawfulness|11240810 +unlax|11240840 +unleaded|11240907 +unleaded gasoline|11240979 +unlearn|11241035 +unlearned|11241187 +unleash|11241307 +unleavened|11241462 +unleavened bread|11241507 +unlettered|11241584 +unlicenced|11241688 +unlicensed|11241758 +unlicensed gambling|11241828 +unlifelike|11241889 +unlighted|11241937 +unlikable|11242024 +unlike|11242107 +unlikeable|11242183 +unlikelihood|11242265 +unlikeliness|11242329 +unlikely|11242393 +unlikeness|11242546 +unlimited|11242607 +unlined|11242761 +unlipped|11242818 +unlisted|11242844 +unlisted security|11242947 +unlisted stock|11243034 +unlistening|11243148 +unlit|11243204 +unliterary|11243285 +unlittered|11243326 +unlivable|11243363 +unlive|11243417 +unliveable|11243448 +unliveried|11243492 +unload|11243523 +unloaded|11243601 +unloading|11243638 +unlobed|11243683 +unlocated|11243720 +unlock|11243749 +unlocked|11243821 +unlogical|11243888 +unlooked-for|11244019 +unloose|11244093 +unloosen|11244184 +unlovable|11244274 +unloved|11244301 +unlovely|11244459 +unloving|11244514 +unlubricated|11244609 +unluckily|11244654 +unlucky|11244703 +unmade|11244821 +unmake|11244844 +unmalicious|11244865 +unmaligned|11244898 +unmalleability|11244937 +unmalleable|11244979 +unman|11245012 +unmanageable|11245058 +unmanageableness|11245348 +unmanful|11245448 +unmanfully|11245560 +unmanlike|11245587 +unmanliness|11245699 +unmanly|11245791 +unmanned|11245980 +unmannered|11246035 +unmannerly|11246111 +unmapped|11246169 +unmarked|11246215 +unmarketable|11246301 +unmarred|11246398 +unmarried|11246438 +unmarried man|11246523 +unmarried woman|11246570 +unmask|11246614 +unmasking|11246674 +unmatchable|11246709 +unmatched|11246833 +unmated|11246996 +unmeaning|11247088 +unmeasurable|11247147 +unmeasured|11247248 +unmechanical|11247359 +unmechanised|11247405 +unmechanized|11247454 +unmediated|11247503 +unmedical|11247533 +unmedicative|11247602 +unmedicinal|11247671 +unmelodic|11247740 +unmelodious|11247811 +unmelted|11247920 +unmemorable|11247973 +unmentionable|11248006 +unmercenary|11248043 +unmerchantable|11248074 +unmerciful|11248143 +unmercifully|11248312 +unmercifulness|11248370 +unmerited|11248432 +unmeritorious|11248499 +unmethodical|11248531 +unmilitary|11248579 +unmindful|11248634 +unmindfulness|11248724 +unmined|11248800 +unmingled|11248825 +unmistakable|11248869 +unmistakably|11248897 +unmitigable|11248938 +unmitigated|11248970 +unmixable|11249205 +unmixed|11249248 +unmoderated|11249354 +unmodernised|11249386 +unmodernized|11249432 +unmodifiable|11249478 +unmodified|11249513 +unmodulated|11249579 +unmolested|11249612 +unmoral|11249655 +unmortgaged|11249696 +unmotivated|11249736 +unmotorised|11249830 +unmotorized|11249873 +unmourned|11249928 +unmovable|11249958 +unmoved|11250015 +unmoving|11250119 +unmown|11250330 +unmurmuring|11250359 +unmusical|11250407 +unmutilated|11250544 +unmyelinated|11250584 +unnameable|11250623 +unnamed|11250684 +unnatural|11250747 +unnaturalised|11251026 +unnaturalized|11251071 +unnaturally|11251116 +unnaturalness|11251169 +unnavigable|11251200 +unnecessary|11251243 +unneeded|11251446 +unneighborliness|11251637 +unneighborly|11251678 +unneighbourly|11251725 +unnerve|11251772 +unnerved|11251857 +unnerving|11251882 +unneurotic|11251933 +unnilhexium|11251973 +unnilpentium|11252053 +unnilquadium|11252156 +unnilquintium|11252270 +unnilseptium|11252373 +unnotched|11252454 +unnoted|11252490 +unnoticeable|11252537 +unnoticeableness|11252681 +unnoticeably|11252725 +unnoticed|11252771 +unnourished|11252911 +unnumberable|11252945 +unnumbered|11253087 +unnumerable|11253229 +unobjectionable|11253371 +unobjective|11253467 +unobligated|11253512 +unobliging|11253567 +unobservable|11253629 +unobservant|11253679 +unobserved|11253784 +unobserved fire|11253839 +unobstructed|11253876 +unobtainable|11253949 +unobtrusive|11254021 +unobtrusiveness|11254088 +unobvious|11254131 +unoccupied|11254182 +unoffending|11254290 +unofficial|11254394 +unofficially|11254549 +unoiled|11254582 +unopen|11254624 +unopened|11254659 +unopposable|11254684 +unopposed|11254717 +unordered|11254746 +unorganised|11254831 +unorganized|11254969 +unoriented|11255119 +unoriginal|11255218 +unoriginality|11255472 +unornamented|11255525 +unorthodox|11255589 +unorthodoxy|11255762 +unostentatious|11255876 +unowned|11256035 +unoxygenated|11256070 +unp|11256115 +unpacific|11256222 +unpack|11256260 +unpackaged|11256316 +unpadded|11256353 +unpaid|11256376 +unpaid worker|11256605 +unpainful|11256645 +unpaintable|11256683 +unpainted|11256716 +unpaired|11256828 +unpalatability|11256879 +unpalatable|11256934 +unpalatableness|11257074 +unparallel|11257129 +unparalleled|11257156 +unpardonable|11257238 +unpardonably|11257323 +unparented|11257369 +unparliamentary|11257449 +unpartitioned|11257483 +unpassable|11257513 +unpasteurised|11257597 +unpasteurized|11257650 +unpatented|11257703 +unpatriotic|11257738 +unpatronised|11257801 +unpatronized|11257857 +unpatterned|11257926 +unpaved|11257986 +unpeaceable|11258026 +unpeaceful|11258058 +unpeopled|11258198 +unperceivable|11258241 +unperceived|11258430 +unperceiving|11258472 +unperceptive|11258534 +unperceptiveness|11258650 +unperformed|11258706 +unpermed|11258736 +unpermissive|11258763 +unpermissiveness|11258844 +unperplexed|11258894 +unperson|11258948 +unpersuadable|11259029 +unpersuaded|11259091 +unpersuasive|11259151 +unpersuasiveness|11259186 +unperturbed|11259246 +unpick|11259309 +unpictured|11259377 +unpicturesque|11259421 +unpierced|11259458 +unpigmented|11259483 +unpillared|11259526 +unpin|11259569 +unpitying|11259589 +unplaced|11259659 +unplanned|11259690 +unplanted|11259837 +unplayable|11259909 +unplayful|11259940 +unpleasant|11259983 +unpleasant person|11260442 +unpleasant woman|11260524 +unpleasantness|11260607 +unpleasing|11260663 +unpleasingness|11260704 +unpleated|11260737 +unpledged|11260770 +unploughed|11260833 +unplowed|11260887 +unplug|11260950 +unplumbed|11260982 +unpointed|11261036 +unpointedness|11261071 +unpolished|11261100 +unpolitical|11261202 +unpolluted|11261247 +unpompous|11261287 +unpopular|11261320 +unpopularity|11261363 +unpopulated|11261393 +unportable|11261436 +unposed|11261467 +unpotted|11261515 +unpowered|11261542 +unpracticed|11261571 +unpractised|11261618 +unprecedented|11261665 +unpredictability|11261717 +unpredictable|11261863 +unpredictably|11262036 +unpredicted|11262070 +unpredictive|11262125 +unprejudiced|11262159 +unpremeditated|11262244 +unprepared|11262320 +unprepossessing|11262508 +unpresentable|11262560 +unpresidential|11262612 +unpressed|11262667 +unpretending|11262704 +unpretentious|11262772 +unpretentiousness|11262957 +unpreventable|11262996 +unpriestly|11263033 +unprincipled|11263064 +unprintable|11263154 +unproblematic|11263187 +unprocessed|11263247 +unprocurable|11263398 +unproductive|11263470 +unproductively|11263660 +unproductiveness|11263708 +unprofessional|11263767 +unprofitability|11263844 +unprofitable|11263899 +unprofitableness|11264060 +unprofitably|11264115 +unprogressive|11264193 +unpromised|11264259 +unpromising|11264322 +unprompted|11264368 +unpronounceable|11264425 +unprophetic|11264517 +unpropitious|11264582 +unpropitiously|11264678 +unpropitiousness|11264716 +unprotected|11264792 +unprotectedness|11264934 +unprotective|11265005 +unprotesting|11265065 +unprovable|11265113 +unproved|11265143 +unproven|11265199 +unprovided for|11265246 +unprovided with|11265293 +unprovocative|11265374 +unprovoked|11265471 +unprovoking|11265521 +unpublishable|11265604 +unpublished|11265641 +unpunctual|11265674 +unpunished|11265782 +unpurified|11265885 +unputdownable|11265912 +unq|11265947 +unqualified|11266065 +unquenchable|11266338 +unquestionability|11266403 +unquestionable|11266521 +unquestionableness|11266826 +unquestionably|11266944 +unquestioned|11267043 +unquestioning|11267114 +unquiet|11267172 +unquotable|11267371 +unraised|11267404 +unranked|11267438 +unratable|11267505 +unratified|11267542 +unravel|11267570 +unraveler|11267708 +unraveller|11267804 +unreachable|11267900 +unreached|11267985 +unreactive|11268070 +unread|11268181 +unreadable|11268208 +unreadably|11268276 +unready|11268320 +unreal|11268473 +unrealised|11269381 +unrealism|11269437 +unrealistic|11269532 +unreality|11269708 +unrealizable|11269796 +unrealized|11269864 +unreason|11269920 +unreasonable|11269961 +unreasonably|11270308 +unreasoning|11270342 +unreasoningly|11270380 +unreassuring|11270413 +unrebuked|11270458 +unreceptive|11270524 +unreciprocated|11270578 +unrecognisable|11270638 +unrecognised|11270713 +unrecognizable|11270797 +unrecognizably|11270851 +unrecognized|11270889 +unreconcilable|11270973 +unreconciled|11271033 +unreconstructed|11271088 +unrecorded|11271161 +unrecoverable|11271242 +unredeemable|11271341 +unredeemed|11271410 +unreduced|11271464 +unreel|11271503 +unreeling|11271533 +unrefined|11271569 +unreflected|11271941 +unreflective|11271983 +unreformable|11272041 +unrefreshed|11272152 +unregenerate|11272188 +unregenerated|11272435 +unregistered|11272585 +unregretful|11272695 +unregretting|11272741 +unregularity|11272775 +unregulated|11272818 +unrehearsed|11272871 +unrelated|11272988 +unrelatedness|11273113 +unrelaxed|11273152 +unreleased|11273177 +unrelenting|11273208 +unrelentingly|11273337 +unreliability|11273372 +unreliable|11273478 +unreliableness|11273701 +unreliably|11273807 +unrelieved|11273852 +unremarkable|11273897 +unremarkably|11273972 +unremarked|11274030 +unremedied|11274072 +unremitting|11274104 +unremorseful|11274212 +unremunerative|11274282 +unrenewable|11274319 +unrenewed|11274365 +unrentable|11274394 +unrepaired|11274425 +unrepeatable|11274490 +unrepentant|11274562 +unrepentantly|11274704 +unreplaceable|11274739 +unreportable|11274789 +unreported|11274824 +unrepresentative|11274855 +unrepressed|11274900 +unreproducible|11274933 +unreproducibly|11275011 +unreproved|11275045 +unrequested|11275111 +unrequited|11275152 +unresentful|11275212 +unreserved|11275254 +unresistant|11275379 +unresisting|11275442 +unresolvable|11275498 +unresolved|11275582 +unrespectability|11275699 +unrespectable|11275793 +unrespected|11275850 +unresponsive|11275884 +unresponsiveness|11276039 +unrest|11276073 +unrested|11276173 +unrestored|11276209 +unrestrained|11276264 +unrestraint|11276613 +unrestricted|11276660 +unrestrictive|11276841 +unretentive|11276906 +unretrievable|11276984 +unrevealed|11277049 +unrevealing|11277088 +unreverberant|11277162 +unreviled|11277239 +unrevised|11277278 +unrevived|11277317 +unrewarded|11277356 +unrewarding|11277402 +unrhetorical|11277496 +unrhymed|11277617 +unrhythmic|11277671 +unrhythmical|11277750 +unrifled|11277842 +unrigged|11277880 +unrighteous|11277907 +unrighteousness|11278018 +unrimed|11278054 +unripe|11278099 +unripened|11278162 +unrivaled|11278210 +unrivalled|11278334 +unroll|11278458 +unrolled|11278533 +unromantic|11278587 +unroofed|11278616 +unrotted|11278644 +unrotten|11278684 +unrouged|11278733 +unruffled|11278761 +unruliness|11278864 +unruly|11278952 +unrusted|11279116 +uns|11279153 +unsaddle|11279375 +unsaddled|11279434 +unsafe|11279483 +unsaid|11279890 +unsalable|11280001 +unsalaried|11280093 +unsaleable|11280134 +unsalted|11280216 +unsalty|11280255 +unsanctification|11280284 +unsanctified|11280333 +unsanctify|11280395 +unsanctioned|11280435 +unsanded|11280468 +unsanitariness|11280501 +unsanitary|11280544 +unsaponified|11280609 +unsarcastic|11280664 +unsated|11280697 +unsatiable|11280769 +unsatiably|11280879 +unsatiated|11280926 +unsatisfactoriness|11280998 +unsatisfactory|11281034 +unsatisfiable|11281165 +unsatisfied|11281220 +unsatisfying|11281344 +unsaturated|11281411 +unsaturated fatty acid|11281503 +unsaved|11281546 +unsavoriness|11281600 +unsavory|11281713 +unsavoury|11281813 +unsay|11281903 +unscalable|11281964 +unscathed|11282007 +unscheduled|11282052 +unscholarly|11282117 +unschooled|11282187 +unscientific|11282237 +unscramble|11282289 +unscrew|11282372 +unscripted|11282422 +unscrupulous|11282482 +unscrupulousness|11282563 +unseal|11282600 +unsealed|11282629 +unseamanlike|11282699 +unseamed|11282756 +unseasonable|11282814 +unseasonableness|11282903 +unseasoned|11282949 +unseat|11283052 +unseaworthy|11283096 +unsectarian|11283160 +unsecured|11283303 +unsecured bond|11283406 +unseductive|11283477 +unseeable|11283545 +unseeded|11283719 +unseeing|11283770 +unseemliness|11283867 +unseemly|11283914 +unseen|11283990 +unsegmented|11284085 +unsegregated|11284126 +unselected|11284184 +unselective|11284222 +unselfconscious|11284277 +unselfconsciousness|11284313 +unselfish|11284368 +unselfishness|11284535 +unsensational|11284618 +unsent|11284655 +unsentimental|11284678 +unserviceable|11284720 +unservile|11284888 +unsettle|11284930 +unsettled|11285015 +unsex|11285411 +unsexed|11285554 +unsexy|11285628 +unshackled|11285678 +unshaded|11285734 +unshadowed|11285793 +unshakable|11285822 +unshakably|11285987 +unshaken|11286052 +unshaped|11286100 +unshapely|11286136 +unshapen|11286404 +unshared|11286440 +unsharpened|11286528 +unshaved|11286554 +unshaven|11286686 +unsheared|11286827 +unsheathe|11286883 +unsheathed|11286938 +unshielded|11286974 +unshockable|11287006 +unshod|11287052 +unshoed|11287161 +unshorn|11287234 +unshrinkable|11287261 +unshrinking|11287296 +unshuttered|11287372 +unsighted|11287405 +unsightliness|11287705 +unsightly|11287737 +unsigned|11287761 +unsilenced|11287788 +unsimilarity|11287819 +unsinkable|11287866 +unsized|11287897 +unskilled|11287946 +unskilled person|11288247 +unskillful|11288326 +unskillfulness|11288373 +unslaked lime|11288407 +unsleeping|11288508 +unsloped|11288545 +unsmiling|11288594 +unsmooth|11288621 +unsmoothed|11289178 +unsnarl|11289207 +unsnarled|11289257 +unsnarling|11289308 +unsociability|11289394 +unsociable|11289456 +unsociableness|11289531 +unsocial|11289593 +unsoiled|11289755 +unsold|11289799 +unsolder|11289822 +unsoldierly|11289866 +unsolicited|11289910 +unsoluble|11289950 +unsolvable|11290014 +unsolved|11290078 +unsophisticated|11290116 +unsorted|11290294 +unsought|11290368 +unsound|11290434 +unsoundable|11290805 +unsounded|11290839 +unsoundness|11290928 +unsoured|11290966 +unsown|11291017 +unspaced|11291052 +unsparing|11291088 +unsparingly|11291207 +unspeakable|11291238 +unspeakably|11291457 +unspecialised|11291513 +unspecialized|11291582 +unspecific|11291665 +unspecified|11291699 +unspectacular|11291763 +unspell|11291797 +unspent|11291859 +unspoiled|11291899 +unspoilt|11291967 +unspoken|11292006 +unspoken accusation|11292175 +unsporting|11292234 +unsportsmanlike|11292304 +unspotted|11292374 +unstable|11292418 +unstableness|11292798 +unstaged|11292845 +unstained|11292884 +unstaple|11293045 +unstarred|11293068 +unstartling|11293109 +unstated|11293143 +unstatesmanlike|11293254 +unsteadily|11293310 +unsteadiness|11293353 +unsteady|11293431 +unsterilised|11293806 +unsterilized|11293847 +unstilted|11293888 +unstimulating|11293918 +unstinted|11294031 +unstinting|11294133 +unstirred|11294235 +unstoppable|11294265 +unstopped|11294309 +unstoppered|11294343 +unstrain|11294369 +unstrained|11294436 +unstrap|11294518 +unstratified|11294540 +unstratified language|11294575 +unstressed|11294647 +unstring|11294737 +unstructured|11294786 +unstrung|11294894 +unstuck|11294924 +unstudied|11294989 +unstudious|11295066 +unstuff|11295098 +unstylish|11295140 +unsuasible|11295355 +unsubdivided|11295417 +unsubduable|11295951 +unsubmissive|11296012 +unsubstantial|11296044 +unsubstantialise|11296171 +unsubstantialize|11296262 +unsubstantiated|11296353 +unsubtle|11296405 +unsuccessful|11296435 +unsuccessful person|11296814 +unsufferable|11296899 +unsugared|11296970 +unsuitability|11297008 +unsuitable|11297064 +unsuitableness|11297198 +unsuitably|11297254 +unsuited|11297302 +unsullied|11297364 +unsung|11297450 +unsupervised|11297577 +unsupplied with|11297623 +unsupportable|11297704 +unsupported|11297739 +unsupportive|11297942 +unsuppressed|11298039 +unsure|11298073 +unsurmountable|11298226 +unsurpassable|11298357 +unsurpassed|11298385 +unsurprised|11298433 +unsurprising|11298480 +unsusceptibility|11298545 +unsusceptible|11298597 +unsuspected|11298756 +unsuspecting|11298808 +unsuspicious|11298876 +unswayed|11298929 +unsweet|11298981 +unsweetened|11299026 +unswept|11299066 +unswerving|11299119 +unsworn|11299192 +unsyllabic|11299217 +unsyllabled|11299261 +unsymbolic|11299305 +unsymmetric|11299343 +unsymmetrical|11299402 +unsymmetrically|11299488 +unsympathetic|11299527 +unsympathetically|11299796 +unsympathising|11299839 +unsympathizing|11299892 +unsynchronised|11299945 +unsynchronized|11300026 +unsynchronous|11300107 +unsystematic|11300188 +unsystematised|11300289 +unsystematized|11300341 +untactful|11300393 +untagged|11300445 +untainted|11300484 +untalkative|11300557 +untamed|11300596 +untangle|11300674 +untangled|11300786 +untangling|11300847 +untanned|11300933 +untaped|11300960 +untapped|11301002 +untarnished|11301060 +untasted|11301133 +untaught|11301166 +untaxed|11301216 +unteach|11301271 +untechnical|11301337 +untellable|11301371 +untempered|11301479 +untempting|11301615 +untenable|11301689 +untenanted|11301734 +untended|11301777 +untermeyer|11301807 +untested|11301869 +untethered|11301939 +unthankful|11301967 +unthaw|11302023 +unthawed|11302095 +untheatrical|11302120 +unthematic|11302155 +unthinkable|11302227 +unthinkably|11302353 +unthinking|11302386 +unthinkingly|11302548 +unthought|11302594 +unthought-of|11302657 +unthoughtful|11302720 +unthoughtfulness|11302778 +unthreatening|11302826 +untidily|11302871 +untidiness|11302896 +untidy|11302971 +untie|11303319 +untied|11303393 +untier|11303489 +until now|11303583 +untilled|11303666 +untimbered|11303713 +untimeliness|11303769 +untimely|11303852 +untipped|11303962 +untired|11303989 +untiring|11304031 +untitled|11304091 +untoasted|11304150 +untold|11304173 +untoothed|11304194 +untouchable|11304230 +untouched|11304443 +untoughened|11304559 +untoward|11304606 +untraceable|11304743 +untracked|11304776 +untraditional|11304866 +untrained|11304904 +untrammeled|11304957 +untrammelled|11305011 +untransferable|11305065 +untranslatable|11305142 +untransmutable|11305181 +untraveled|11305232 +untravelled|11305287 +untraversable|11305331 +untraversed|11305376 +untreated|11305420 +untried|11305499 +untrimmed|11305570 +untrod|11305615 +untrodden|11305705 +untroubled|11305795 +untrue|11305963 +untrustiness|11306059 +untrusting|11306105 +untrustworthiness|11306171 +untrustworthy|11306217 +untrusty|11306402 +untruth|11306573 +untruthful|11306634 +untruthfully|11306692 +untruthfulness|11306726 +untucked|11306761 +untufted|11306788 +untune|11306828 +untuneful|11306964 +unturned|11307004 +untutored|11307060 +untwine|11307110 +untwist|11307153 +untwisted|11307196 +untying|11307224 +untypical|11307280 +untypicality|11307371 +untypically|11307447 +ununderstandably|11307478 +ununderstood|11307518 +unusable|11307603 +unuseable|11307685 +unused|11307735 +unused to|11307795 +unusefulness|11307827 +unusual|11307879 +unusual person|11308177 +unusually|11308262 +unusualness|11308310 +unutterable|11308344 +unutterably|11308554 +unuttered|11308610 +unvaccinated|11308721 +unvalued|11308755 +unvaned|11308809 +unvanquishable|11308871 +unvanquished|11308931 +unvaried|11308985 +unvariedness|11309165 +unvarnished|11309227 +unvarying|11309288 +unveil|11309443 +unveiled|11309549 +unveiling|11309595 +unvendible|11309715 +unvented|11309784 +unventilated|11309815 +unverbalised|11309966 +unverbalized|11310077 +unverifiable|11310188 +unverified|11310233 +unversed|11310271 +unvigilant|11310307 +unvindictive|11310370 +unvitrified|11310402 +unvoiced|11310432 +unvoluntary|11310608 +unvulcanised|11310728 +unvulcanized|11310775 +unwanted|11310822 +unwantedly|11311096 +unwariness|11311127 +unwarmed|11311172 +unwarrantable|11311204 +unwarranted|11311292 +unwary|11311472 +unwashed|11311525 +unwatchful|11311602 +unwavering|11311665 +unwaveringly|11311770 +unwaxed|11311815 +unweaned|11311840 +unwearable|11311867 +unwearied|11311909 +unweary|11311951 +unwearying|11311993 +unweathered|11312057 +unweave|11312094 +unwebbed|11312137 +unwed|11312164 +unwedded|11312205 +unwelcome|11312246 +unwelcome guest|11312372 +unwelcome person|11312448 +unwell|11312545 +unwellness|11312656 +unwholesome|11312740 +unwholesomeness|11312953 +unwieldiness|11313007 +unwieldy|11313096 +unwilled|11313235 +unwilling|11313321 +unwillingness|11313517 +unwind|11313564 +unwinding|11313761 +unwire|11313797 +unwise|11313818 +unwisely|11313871 +unwiseness|11313898 +unwished|11313942 +unwished-for|11313992 +unwitting|11314042 +unwittingly|11314174 +unwomanly|11314220 +unwonted|11314288 +unwooded|11314315 +unworkable|11314381 +unworkmanlike|11314448 +unworldly|11314483 +unworn|11314698 +unworried|11314750 +unworthiness|11314789 +unworthy|11314823 +unworthy of|11315015 +unwound|11315072 +unwounded|11315107 +unwoven|11315136 +unwrap|11315176 +unwrapped|11315212 +unwrinkled|11315241 +unwritten|11315309 +unwritten law|11315405 +unyielding|11315445 +unyieldingness|11315584 +unyoke|11315667 +unzip|11315691 +up|11315715 +up here|11316416 +up in the air|11316442 +up on|11316492 +up quark|11316546 +up the stairs|11316570 +up to|11316619 +up to her neck|11316684 +up to his neck|11316806 +up to my neck|11316928 +up to now|11317050 +up to our necks|11317147 +up to their necks|11317269 +up to your neck|11317391 +up-and-coming|11316048 +up-bow|11316116 +up-tick|11316136 +up-to-date|11316215 +up-to-dateness|11316310 +up-to-the-minute|11316375 +upanishad|11317513 +upbeat|11317602 +upbound|11317769 +upbraid|11317789 +upbraider|11317852 +upbraiding|11317909 +upbringing|11318044 +upcast|11318213 +upchuck|11318257 +upcoming|11318421 +upcountry|11318477 +upcurved|11318520 +update|11318553 +updating|11318642 +updike|11318667 +updraft|11318734 +upend|11318765 +upended|11318857 +upending|11318897 +upfield|11318955 +upfront|11318975 +upgrade|11318999 +upheaval|11319496 +upheave|11319784 +uphill|11319829 +uphold|11319941 +upholder|11320075 +upholster|11320168 +upholsterer|11320217 +upholstery|11320277 +upholstery material|11320325 +upholstery needle|11320384 +upjohn|11320425 +upkeep|11320482 +upland|11320628 +upland cotton|11320744 +upland plover|11320806 +upland sandpiper|11320898 +upland white aster|11320990 +uplift|11321043 +uplifted|11321287 +uplifting|11321312 +uplink|11321360 +upload|11321389 +upmarket|11321414 +upmost|11321449 +upon one's guard|11321487 +upper|11321556 +upper avon|11322152 +upper avon river|11322222 +upper balcony|11322298 +upper berth|11322370 +upper bound|11322421 +upper cannon|11322462 +upper carboniferous|11322501 +upper carboniferous period|11322637 +upper case|11322780 +upper class|11322885 +upper crust|11322958 +upper deck|11323031 +upper egypt|11323056 +upper hand|11323158 +upper jaw|11323239 +upper jawbone|11323284 +upper limit|11323329 +upper mantle|11323464 +upper paleolithic|11323492 +upper peninsula|11323571 +upper respiratory infection|11323622 +upper respiratory tract|11323709 +upper side|11323760 +upper surface|11323810 +upper volta|11323838 +upper-case letter|11321755 +upper-class|11321860 +upper-level|11321939 +upper-lower-class|11321993 +upper-middle-class|11322042 +upper-normandy|11322083 +uppercase|11323903 +uppercut|11323966 +uppermost|11323989 +uppish|11324027 +uppishly|11324132 +uppishness|11324169 +uppity|11324251 +uppityness|11324288 +uppp|11324370 +uppsala|11324513 +upraise|11324574 +upraised|11324626 +upright|11324658 +upright piano|11325033 +uprightly|11325093 +uprightness|11325121 +uprise|11325258 +uprising|11325642 +upriver|11325722 +uproar|11325747 +uproarious|11325924 +uproariously|11326016 +uproot|11326049 +uprooter|11326198 +upsala|11326258 +upscale|11326318 +upset|11326344 +upset price|11327078 +upset stomach|11327126 +upsetter|11327193 +upsetting|11327225 +upshot|11327270 +upside|11327343 +upside-down|11327393 +upside-down cake|11327430 +upsilon|11327474 +upstage|11327542 +upstager|11327660 +upstair|11327721 +upstairs|11327747 +upstanding|11327850 +upstart|11327910 +upstream|11328122 +upstroke|11328163 +upsurge|11328188 +uptake|11328265 +upthrow|11328378 +upthrust|11328449 +uptick|11328520 +uptight|11328565 +uptime|11328670 +upton beall sinclair|11328720 +upton sinclair|11328809 +uptown|11328892 +upturn|11328970 +upturned|11328998 +upupa|11329076 +upupa epops|11329120 +upupidae|11329182 +upward|11329237 +upwardly|11329319 +upwards|11329354 +upwind|11329405 +ur|11329489 +uracil|11329533 +uraemia|11329562 +ural mountains|11329672 +ural-altaic|11329615 +uralic|11329797 +uralic language|11329848 +urals|11329908 +uranalysis|11330024 +urania|11330115 +uraninite|11330175 +uranium|11330226 +uranium 235|11330285 +uranium 238|11330333 +uranium ore|11330381 +uranologist|11330406 +uranology|11330458 +uranoplasty|11330531 +uranoscopidae|11330625 +uranus|11330695 +uranyl|11330776 +uranyl group|11330849 +uranyl nitrate|11330922 +uranyl oxalate|11330954 +uranyl radical|11330986 +urarthritis|11331059 +urate|11331111 +uratemia|11331131 +uraturia|11331186 +urban|11331212 +urban area|11331310 +urban center|11331417 +urban guerrilla|11331468 +urban ii|11331532 +urban planning|11331663 +urban renewal|11331744 +urban sprawl|11331802 +urban typhus|11331862 +urban vi|11331944 +urbana|11332081 +urbane|11332109 +urbanisation|11332213 +urbanise|11332300 +urbanised|11332383 +urbanity|11332418 +urbanization|11332458 +urbanize|11332545 +urbanized|11332628 +urceolate|11332663 +urceole|11332688 +urchin|11332712 +urd|11332809 +urdu|11332836 +urea|11332924 +urea-formaldehyde resin|11332965 +urease|11333014 +uredinales|11333037 +uremia|11333098 +uremic|11333151 +ureter|11333185 +ureteritis|11333236 +ureterocele|11333283 +ureterorenal reflux|11333333 +ureterostenosis|11333369 +urethane|11333413 +urethra|11333437 +urethral|11333489 +urethral orifice|11333541 +urethral sphincter|11333606 +urethritis|11333710 +urethrocele|11333754 +urex|11333804 +urey|11333892 +urga|11333951 +urge|11334036 +urge incontinence|11334253 +urge on|11334310 +urgency|11334418 +urgent|11334519 +urgently|11334555 +urginea|11334584 +urginea maritima|11334644 +urging|11334732 +uria|11334859 +uria aalge|11334900 +uria lomvia|11334950 +urial|11335008 +uric|11335046 +uric acid|11335116 +uricaciduria|11335140 +urim and thummin|11335199 +urinal|11335249 +urinalysis|11335282 +urinary|11335373 +urinary apparatus|11335459 +urinary bladder|11335635 +urinary calculus|11335675 +urinary hesitancy|11335760 +urinary incontinence|11335798 +urinary organ|11335863 +urinary retention|11335924 +urinary system|11335987 +urinary tract|11336163 +urinary tract infection|11336192 +urinate|11336246 +urination|11336450 +urinator|11336532 +urine|11336610 +uriniferous tubule|11336711 +url|11336754 +urn|11336848 +urn fungus|11336877 +urnula craterium|11336937 +urobilin|11337014 +urobilinogen|11337047 +urocele|11337095 +urochesia|11337126 +urochezia|11337184 +urochord|11337242 +urochorda|11337307 +urochordata|11337425 +urochordate|11337545 +urocyon|11337593 +urocyon cinereoargenteus|11337645 +urocystis|11337726 +urocystis cepulae|11337784 +urocystis tritici|11337857 +urodele|11337935 +urodella|11337970 +urodynia|11338047 +urogenital|11338078 +urogenital apparatus|11338104 +urogenital cleft|11338280 +urogenital medicine|11338395 +urogenital system|11338459 +urokinase|11338635 +urolith|11338725 +urologist|11338762 +urology|11338811 +uropathy|11338875 +urophycis|11338903 +uropsilus|11338959 +uropsilus soricipes|11339017 +uropygi|11339096 +uropygial gland|11339174 +uropygium|11339221 +urosaurus|11339245 +urosaurus ornatus|11339304 +ursa major|11339384 +ursa minor|11339440 +ursidae|11339497 +ursine|11339551 +ursine dasyure|11339576 +ursinia|11339664 +ursus|11339688 +ursus americanus|11339734 +ursus arctos|11339833 +ursus arctos horribilis|11339890 +ursus arctos middendorffi|11340036 +ursus arctos syriacus|11340184 +ursus horribilis|11340279 +ursus maritimus|11340418 +ursus middendorffi|11340505 +ursus thibetanus|11340646 +ursus ursinus|11340747 +urth|11340817 +urtica|11340845 +urtica dioica|11340912 +urtica pipulifera|11340972 +urticaceae|11341037 +urticales|11341133 +urticaria|11341190 +urticate|11341301 +urtication|11341359 +urubupunga|11341529 +urubupunga falls|11341593 +uruguay|11341663 +uruguay potato|11341733 +uruguay potato vine|11341890 +uruguayan|11341979 +uruguayan monetary unit|11342084 +uruguayan peso|11342155 +urus|11342223 +us|11342272 +us air force|11342395 +us air force academy|11342494 +us army|11342595 +us army criminal investigation laboratory|11342686 +us attorney general|11342947 +us border patrol|11343054 +us cabinet|11343189 +us coast guard|11343250 +us congress|11343408 +us fish and wildlife service|11343548 +us government|11343723 +us government printing office|11343839 +us house|11344044 +us house of representatives|11344210 +us marine corps|11344395 +us marshals service|11344514 +us military academy|11344626 +us mint|11344723 +us naval academy|11344782 +us navy|11344867 +us post office|11344933 +us postal inspection service|11345032 +us postal service|11345158 +us secret service|11345256 +us senate|11345387 +us trade representative|11345451 +usa|11345560 +usable|11345765 +usableness|11345914 +usacil|11345984 +usaf|11346210 +usage|11346301 +usama bin laden|11346420 +usance|11346497 +usbeg|11346670 +usbek|11346799 +uscb|11346928 +usda|11347060 +use|11347161 +use immunity|11347650 +use of goods and services|11347730 +use up|11347816 +useable|11347936 +used|11348083 +used to|11348399 +used up|11348435 +used-car lot|11348214 +used-up|11348275 +useful|11348559 +usefulness|11348856 +useless|11348892 +uselessness|11349126 +user|11349178 +user interface|11349392 +user-friendly|11349364 +ushas|11349480 +usher|11349513 +usher in|11349716 +usher out|11349785 +usherette|11349825 +ushering in|11349856 +using|11349939 +using up|11350008 +uskub|11350060 +usmc|11350113 +usn|11350221 +usnea|11350283 +usnea barbata|11350329 +usneaceae|11350397 +usps|11350457 +uss cole|11350542 +ussher|11350604 +ussr|11350706 +usss|11350800 +ustilaginaceae|11350918 +ustilaginales|11350993 +ustilaginoidea|11351063 +ustilaginoidea virens|11351136 +ustilago|11351214 +ustilago maydis|11351269 +ustinov|11351339 +usual|11351470 +usually|11351566 +usualness|11351624 +usufruct|11351683 +usufructuary|11351713 +usuli|11351758 +usumbura|11351798 +usurer|11351871 +usurious|11351938 +usuriously|11352023 +usurp|11352070 +usurpation|11352171 +usurped|11352322 +usurper|11352345 +usury|11352392 +ut|11352470 +ut1|11352634 +uta|11352713 +uta stansburiana|11352754 +utah|11352853 +utahan|11352917 +utahraptor|11352949 +utc|11352993 +ute|11353098 +utensil|11353206 +uterine|11353233 +uterine artery|11353284 +uterine cavity|11353361 +uterine cervix|11353412 +uterine contraction|11353478 +uterine tube|11353559 +uterine vein|11353647 +uterus|11353699 +utica|11353755 +utile|11353847 +utilisation|11354045 +utilise|11354117 +utilised|11354159 +utiliser|11354191 +utilitarian|11354223 +utilitarianism|11354298 +utility|11354385 +utility bond|11354749 +utility man|11354807 +utility program|11354897 +utility revenue bond|11355000 +utility routine|11355058 +utility-grade|11354709 +utilizable|11355148 +utilization|11355181 +utilize|11355266 +utilized|11355347 +utilizer|11355379 +utmost|11355411 +utn|11355591 +utnapishtim|11355659 +uto-aztecan|11355706 +uto-aztecan language|11355836 +utopia|11355975 +utopian|11356086 +utopian socialism|11356226 +utopianism|11356263 +utrecht|11356342 +utricle|11356396 +utricularia|11356436 +utriculus|11356499 +utrillo|11356539 +uttar pradesh|11356588 +utter|11356640 +utterable|11356995 +utterance|11357036 +uttered|11357091 +utterer|11357147 +utterly|11357312 +uttermost|11357370 +utu|11357527 +utug|11357563 +uv|11357600 +uvea|11357722 +uveal|11357817 +uveitis|11357919 +uveous|11357963 +uvula|11358065 +uvular|11358085 +uvularia|11358105 +uvularia grandiflora|11358168 +uvulariaceae|11358273 +uvulitis|11358353 +uvulopalatopharyngoplasty|11358398 +ux|11358536 +uxor|11358572 +uxorial|11358608 +uxorious|11358641 +uxoriousness|11358666 +uygur|11358732 +uzbak|11358872 +uzbeg|11359001 +uzbek|11359130 +uzbekistan|11359333 +uzbekistani|11359420 +uzbekistani monetary unit|11359479 +uzi|11359554 +v|11359586 +v neck|11360209 +v sign|11360237 +v-1|11359862 +v-8 juice|11359937 +v-day|11359972 +v-e day|11360009 +v-j day|11360063 +v-shaped|11360121 +v.p.|11360146 +va|11360275 +vac|11360408 +vacancy|11360438 +vacancy rate|11360500 +vacant|11360556 +vacant lot|11360591 +vacate|11360629 +vacation|11360836 +vacation home|11360944 +vacation spot|11361022 +vacationer|11361081 +vacationing|11361123 +vacationist|11361152 +vaccaria|11361194 +vaccaria hispanica|11361262 +vaccaria pyramidata|11361374 +vaccina|11361487 +vaccinate|11361572 +vaccinated|11361632 +vaccinating|11361700 +vaccination|11361744 +vaccinator|11361834 +vaccine|11361898 +vaccinee|11361951 +vaccinia|11361977 +vaccinia gangrenosa|11362095 +vaccinium|11362211 +vaccinium angustifolium|11362278 +vaccinium arboreum|11362418 +vaccinium ashei|11362515 +vaccinium caespitosum|11362632 +vaccinium corymbosum|11362741 +vaccinium macrocarpon|11362867 +vaccinium myrsinites|11362965 +vaccinium ovatum|11363061 +vaccinium oxycoccus|11363151 +vaccinium pallidum|11363245 +vaccinium pennsylvanicum|11363349 +vaccinium scoparium|11363490 +vaccinium stamineum|11363609 +vaccinium uliginosum alpinum|11363711 +vaccinium vitis-idaea|11363844 +vaccinum|11363978 +vachel lindsay|11364031 +vacillant|11364107 +vacillate|11364158 +vacillating|11364252 +vacillation|11364303 +vacillator|11364426 +vaclav havel|11364481 +vacuity|11364575 +vacuolate|11364736 +vacuolated|11364792 +vacuolation|11364848 +vacuole|11364914 +vacuolisation|11364958 +vacuolization|11365024 +vacuous|11365090 +vacuousness|11365192 +vacuum|11365231 +vacuum aspiration|11365482 +vacuum bag|11365566 +vacuum bomb|11365599 +vacuum bottle|11365715 +vacuum chamber|11365757 +vacuum cleaner|11365789 +vacuum flask|11365855 +vacuum gage|11365897 +vacuum gauge|11365942 +vacuum pump|11365987 +vacuum tube|11366022 +vacuum-clean|11365429 +vade mecum|11366136 +vaduz|11366231 +vagabond|11366294 +vagabondage|11366596 +vagal|11366648 +vagary|11366690 +vagile|11366737 +vagina|11366785 +vaginal|11366836 +vaginal artery|11366887 +vaginal birth|11366966 +vaginal discharge|11367066 +vaginal smear|11367112 +vaginismus|11367167 +vaginitis|11367239 +vaginocele|11367285 +vagn walfrid ekman|11367333 +vagrancy|11367400 +vagrant|11367431 +vague|11367584 +vaguely|11367709 +vagueness|11367733 +vagus|11367764 +vagus nerve|11367888 +vain|11368012 +vainglorious|11368159 +vainglory|11368199 +vainly|11368246 +vaisakha|11368269 +vaishnava|11368325 +vaishnavism|11368367 +vaisnavism|11368506 +vaisya|11368644 +vajra|11368704 +valance|11368737 +valance board|11368807 +valdez|11368877 +valdosta|11368905 +vale|11368937 +valediction|11368988 +valedictorian|11369092 +valedictory|11369168 +valedictory address|11369288 +valedictory speaker|11369349 +valence|11369425 +valence electron|11369503 +valencia|11369547 +valencia orange|11369648 +valency|11369702 +valentina tereshkova|11369807 +valentina vladmirovna tereshkova|11369931 +valentine|11370067 +valentine day|11370264 +valentine's day|11370152 +valerian|11370374 +valerian family|11370399 +valeriana|11370480 +valeriana officinalis|11370545 +valerianaceae|11370641 +valerianella|11370736 +valerianella locusta|11370810 +valerianella olitoria|11370927 +valeric acid|11371045 +valet|11371098 +valet de chambre|11371235 +valetta|11371327 +valetudinarian|11371395 +valgus|11371499 +valhalla|11371522 +vali|11371565 +valiance|11371596 +valiancy|11371698 +valiant|11371800 +valiantly|11371852 +valid|11371881 +validate|11372028 +validated|11372223 +validating|11372248 +validation|11372419 +validatory|11372525 +validity|11372696 +validly|11372800 +validness|11372830 +valine|11372867 +valise|11372904 +valium|11372961 +valkyrie|11373008 +valle d'aosta|11373050 +vallecula|11373102 +valletta|11373138 +valley|11373207 +valley fever|11373258 +valley girl|11373358 +valley oak|11373424 +valley pocket gopher|11373513 +valley white oak|11373616 +vallisneria|11373705 +vallisneria spiralis|11373786 +valmy|11373924 +valois|11373976 +valor|11374007 +valorous|11374109 +valorously|11374161 +valorousness|11374190 +valour|11374292 +valparaiso|11374394 +valproic acid|11374459 +valse|11374559 +valuable|11374612 +valuableness|11374844 +valuate|11374914 +valuation|11374976 +valuation account|11375060 +valuation reserve|11375162 +valuator|11375264 +value|11375308 +value judgement|11375907 +value judgment|11375977 +value orientation|11376047 +value statement|11376119 +value-added|11375746 +value-added tax|11375773 +value-system|11375835 +valued|11376154 +valueless|11376199 +valuelessness|11376228 +valuer|11376265 +values|11376300 +valve|11376529 +valve rocker|11376726 +valve-in-head engine|11376665 +valved|11376765 +valvelet|11376787 +valvotomy|11376827 +valvula|11376893 +valvular|11376933 +valvular heart disease|11376969 +valvular incompetence|11377043 +valvule|11377087 +valvulitis|11377127 +valvulotomy|11377174 +vambrace|11377240 +vamoose|11377278 +vamp|11377330 +vamp up|11377725 +vamper|11377816 +vampire|11377894 +vampire bat|11377929 +van|11377992 +van allen|11378161 +van allen belt|11378223 +van beethoven|11378267 +van bogaert encephalitis|11378344 +van buren|11378630 +van de graaff|11378777 +van de graaff generator|11378874 +van de velde|11379013 +van der waal's forces|11379113 +van der waals|11379194 +van doren|11379295 +van dyck|11379392 +van eyck|11379474 +van gogh|11379530 +van vleck|11379587 +van wyck brooks|11379666 +vanadate|11379730 +vanadic acid|11379753 +vanadinite|11379814 +vanadium|11379842 +vanadium pentoxide|11379902 +vanadium steel|11379963 +vanbrugh|11379999 +vancocin|11380077 +vancomycin|11380142 +vancouver|11380198 +vancouver island|11380327 +vanda|11380377 +vanda coerulea|11380418 +vandal|11380475 +vandalise|11380562 +vandalism|11380604 +vandalize|11380787 +vanderbilt|11380829 +vandyke|11380945 +vandyke beard|11381074 +vandyke brown|11381132 +vane|11381185 +vaned|11381312 +vanellus|11381345 +vanern|11381398 +vanessa|11381438 +vanessa atalanta|11381493 +vanessa bell|11381623 +vanessa stephen|11381687 +vanessa virginiensis|11381754 +vanguard|11381895 +vanguards of conquest|11382046 +vangueria|11382219 +vangueria infausta|11382284 +vangueria madagascariensis|11382372 +vanilla|11382457 +vanilla bean|11382644 +vanilla extract|11382725 +vanilla ice cream|11382817 +vanilla orchid|11382854 +vanilla planifolia|11382905 +vanilla pudding|11382975 +vanillin|11383008 +vanir|11383053 +vanish|11383086 +vanished|11383361 +vanisher|11383391 +vanishing|11383462 +vanishing cream|11383548 +vanishing point|11383630 +vanity|11383693 +vanity fair|11383860 +vannevar bush|11383927 +vanquish|11383989 +vanquishable|11384075 +vanquisher|11384127 +vantage|11384180 +vantage point|11384240 +vanua levu|11384281 +vanuatu|11384319 +vanzetti|11384396 +vapid|11384474 +vapidity|11384594 +vapidness|11384668 +vapor|11384742 +vapor bath|11384886 +vapor density|11384997 +vapor lock|11385052 +vapor pressure|11385131 +vaporific|11385215 +vaporing|11385337 +vaporisation|11385445 +vaporise|11385610 +vaporised|11385772 +vaporish|11385842 +vaporizable|11385897 +vaporization|11385976 +vaporize|11386141 +vaporized|11386306 +vaporous|11386376 +vapors|11386544 +vapour|11386753 +vapour bath|11386896 +vapour density|11387006 +vapour lock|11387061 +vapour pressure|11387140 +vapourish|11387224 +vapours|11387279 +vaquero|11387488 +vaquita|11387590 +var|11387631 +var.|11387667 +vara|11387776 +varan|11387802 +varanidae|11387847 +varanus|11387908 +varanus komodoensis|11387961 +varanus niloticus|11388094 +varese|11388184 +vargas|11388230 +vargas llosa|11388310 +variability|11388409 +variable|11388525 +variable quantity|11388827 +variable resistor|11388872 +variable star|11388928 +variable-pitch propeller|11388773 +variableness|11388965 +variance|11389037 +variant|11389307 +variate|11389601 +variation|11389705 +varicella|11390071 +varicella zoster virus|11390105 +varicelliform|11390157 +varicocele|11390183 +varicolored|11390236 +varicoloured|11390446 +varicose|11390655 +varicose vein|11390683 +varicosis|11390747 +varicosity|11390776 +varied|11390802 +varied lorikeet|11391047 +variedness|11391121 +variegate|11391175 +variegated|11391243 +variegated horsetail|11391295 +variegated scouring rush|11391381 +variegation|11391467 +variety|11391552 +variety meat|11391915 +variety show|11391949 +variform|11391984 +variola|11392009 +variola major|11392053 +variola major virus|11392153 +variola minor|11392225 +variola minor virus|11392435 +variola vaccina|11392507 +variola vaccine|11392592 +variola vaccinia|11392677 +variola virus|11392762 +variolar|11392809 +variolation|11392849 +variolic|11392908 +variolization|11392948 +variolous|11393007 +variometer|11393047 +variorum|11393122 +variorum edition|11393165 +various|11393208 +variously|11393330 +variously-leaved pondweed|11393373 +varix|11393440 +varlet|11393497 +varment|11393619 +varmint|11393692 +varna|11393790 +varnish|11393820 +varnish tree|11393868 +varnished|11394114 +varnisher|11394149 +varro|11394177 +varsity|11394254 +varsity letter|11394311 +varsity sock|11394378 +varuna|11394430 +varus|11394465 +vary|11394486 +varying|11394598 +varying hare|11394631 +vas|11394705 +vas deferens|11394880 +vasa brevis|11394953 +vasa efferentia|11395051 +vasa vasorum|11395083 +vasarely|11395118 +vasari|11395169 +vasco da gamma|11395229 +vasco nunez de balboa|11395293 +vascular|11395363 +vascular bundle|11395417 +vascular hemophilia|11395495 +vascular plant|11395606 +vascular ray|11395666 +vascular spider|11395718 +vascular strand|11395779 +vascular structure|11395857 +vascular system|11395966 +vascular tissue|11395998 +vascularisation|11396036 +vascularise|11396112 +vascularity|11396191 +vascularization|11396221 +vascularize|11396297 +vasculitis|11396376 +vase|11396423 +vase vine|11396510 +vase-fine|11396441 +vasectomise|11396579 +vasectomize|11396672 +vasectomy|11396765 +vaseline|11396849 +vasiform|11396917 +vaslav nijinsky|11396976 +vasoconstriction|11397069 +vasoconstrictive|11397108 +vasoconstrictor|11397156 +vasodilation|11397204 +vasodilative|11397246 +vasodilator|11397288 +vasomax|11397330 +vasomotor|11397402 +vasopressin|11397453 +vasopressor|11397579 +vasosection|11397633 +vasotec|11397698 +vasotomy|11397787 +vasovasostomy|11397852 +vasovesiculitis|11397948 +vassal|11398000 +vassalage|11398064 +vast|11398142 +vastly|11398190 +vastness|11398215 +vat|11398319 +vat color|11398403 +vat dye|11398443 +vatic|11398483 +vatical|11398565 +vatican|11398647 +vatican city|11398697 +vatican palace|11398780 +vaticinate|11398837 +vaticination|11398946 +vaticinator|11399027 +vaudeville|11399076 +vaudeville theater|11399128 +vaudeville theatre|11399208 +vaudevillian|11399288 +vaughan|11399338 +vaughan williams|11399413 +vault|11399488 +vault of heaven|11399698 +vaulted|11399789 +vaulter|11399820 +vaulting|11399875 +vaulting horse|11399964 +vaunt|11400010 +vaunter|11400202 +vauntingly|11400291 +vaux|11400331 +vayu|11400425 +vcr|11400456 +vd|11400523 +vdu|11400671 +veadar|11400729 +veal|11400785 +veal cordon bleu|11400809 +veal parmesan|11400840 +veal parmigiana|11400884 +veal roast|11400928 +veal scallopini|11400971 +veau|11401018 +veblen|11401042 +vector|11401173 +vector algebra|11401319 +vector decomposition|11401351 +vector product|11401410 +vector sum|11401455 +vector-borne transmission|11401262 +veda|11401492 +vedalia|11401588 +vedanga|11401680 +vedanta|11401727 +vedic|11401771 +vedic literature|11401851 +vedism|11401959 +vedist|11402001 +veer|11402057 +veering|11402147 +veery|11402193 +vega|11402253 +vegan|11402375 +vege out|11402401 +vegetable|11402479 +vegetable garden|11402669 +vegetable hummingbird|11402733 +vegetable ivory|11402812 +vegetable marrow|11402862 +vegetable matter|11402994 +vegetable oil|11403037 +vegetable oyster|11403075 +vegetable patch|11403195 +vegetable sheep|11403259 +vegetable silk|11403414 +vegetable soup|11403480 +vegetable sponge|11403535 +vegetable tallow|11403644 +vegetable wax|11403685 +vegetal|11403712 +vegetarian|11403799 +vegetarianism|11403832 +vegetate|11403860 +vegetation|11404015 +vegetational|11404220 +vegetative|11404271 +vegetative cell|11404429 +vegetive|11404472 +veggie|11404540 +vehemence|11404615 +vehement|11404753 +vehicle|11404830 +vehicle traffic|11404977 +vehicle-borne transmission|11404919 +vehicular|11405028 +vehicular traffic|11405067 +veil|11405118 +veiled|11405309 +veiled accusation|11405368 +veiling|11405427 +vein|11405492 +vein of penis|11405725 +veinal|11405778 +veined|11405846 +veinlike|11405888 +vela|11405930 +velar|11406101 +velazquez|11406132 +velban|11406209 +velcro|11406272 +veld|11406350 +veldt|11406380 +velleity|11406410 +vellicate|11406467 +vellication|11406530 +vellum|11406593 +velocipede|11406659 +velociraptor|11406742 +velocity|11406775 +velour|11406804 +velours|11406858 +veloute|11406956 +velum|11406979 +velveeta|11407107 +velvet|11407141 +velvet ant|11407477 +velvet bean|11407502 +velvet bent|11407657 +velvet bent grass|11407777 +velvet flower|11407897 +velvet grass|11407982 +velvet osier|11408039 +velvet plant|11408108 +velvet sumac|11408248 +velvet worm|11408347 +velvet-leaf|11407229 +velveteen|11408401 +velvetleaf|11408450 +velvetweed|11408618 +velvety|11408727 +vena|11408777 +vena anastomotica|11408829 +vena angularis|11408903 +vena appendicularis|11408970 +vena arcuata renis|11409047 +vena auricularis|11409132 +vena axillaris|11409203 +vena azygos|11409271 +vena basalis|11409347 +vena basilica|11409410 +vena basivertebralis|11409476 +vena brachialis|11409555 +vena brachiocephalica|11409624 +vena bronchialis|11409722 +vena bulbi penis|11409793 +vena bulbi vestibuli|11409849 +vena canaliculi cochleae|11409909 +vena cava|11409973 +vena centrales retinae|11410022 +vena centralis glandulae suprarenalis|11410107 +vena cephalica|11410217 +vena cephalica accessoria|11410285 +vena cerebellum|11410374 +vena cerebri|11410445 +vena cerebri anterior|11410511 +vena cerebri magna|11410592 +vena cerebri media|11410667 +vena cerebrum internus|11410743 +vena cerebrum superior|11410825 +vena cervicalis profunda|11410907 +vena choroidea|11411004 +vena circumflexa|11411071 +vena circumflexa ilium|11411143 +vena circumflexus femoris|11411230 +vena clitoridis|11411322 +vena colica|11411391 +vena comitans|11411453 +vena cutanea|11411524 +vena cystica|11411591 +vena digitalis|11411655 +vena diploica|11411722 +vena dorsalis clitoridis profunda|11411788 +vena emissaria|11411861 +vena epigastrica inferior|11411929 +vena epigastrica superficialis|11412005 +vena ethmoidalis|11412089 +vena facialis|11412160 +vena facialis anterior|11412225 +vena femoralis|11412304 +vena gastrica|11412371 +vena gastrica sinistra|11412526 +vena gastrica-dextra|11412437 +vena gastroomentalis|11412603 +vena genus|11412702 +vena gluteus|11412767 +vena hemiazygos accessoria|11412832 +vena hemizygos|11412951 +vena hepatica|11413036 +vena ileocolica|11413102 +vena iliaca|11413172 +vena iliolumbalis|11413234 +vena intercapitalis|11413307 +vena intercostalis|11413386 +vena intervertebralis|11413461 +vena jugularis|11413542 +vena labialis|11413617 +vena labialis inferior|11413731 +vena labialis superior|11413810 +vena lacrimalis|11413889 +vena laryngea|11413958 +vena lienalis|11414026 +vena lingualis|11414092 +vena lumbalis|11414159 +vena maxillaris|11414224 +vena mesenterica|11414294 +vena metacarpus|11414366 +vena metatarsus|11414437 +vena musculophrenica|11414508 +vena nasalis externa|11414588 +vena nasofrontalis|11414668 +vena obliqua atrii sinistri|11414743 +vena obturatoria|11414842 +vena occipitalis|11414913 +vena ophthalmica|11414984 +vena ovarica|11415056 +vena palatina|11415121 +vena paraumbilicalis|11415188 +vena pectoralis|11415267 +vena perforantis|11415336 +vena pericardiaca|11415409 +vena peroneus|11415483 +vena pharyngeus|11415563 +vena phrenica|11415634 +vena poplitea|11415700 +vena portae|11415768 +vena posterior ventriculi sinistri|11415858 +vena profunda penis|11415969 +vena pulmanalis inferior|11416012 +vena pulmonalis|11416101 +vena pulmonalis superior|11416171 +vena pylorica|11416260 +vena radialis|11416329 +vena rectalis|11416394 +vena renalis|11416477 +vena retromandibularis|11416540 +vena sacralis|11416641 +vena saphena|11416706 +vena scapularis dorsalis|11416773 +vena scrotalis|11416858 +vena sigmoideus|11416925 +vena spinalis|11416993 +vena sternocleidomastoidea|11417058 +vena stylomastoidea|11417149 +vena subclavia|11417226 +vena sublingualis|11417296 +vena supraorbitalis|11417369 +vena supratrochlearis|11417446 +vena temporalis|11417527 +vena testicularis|11417596 +vena thoracica|11417669 +vena thoracoepigastrica|11417737 +vena thyroidea|11417823 +vena tibialis|11417890 +vena trachealis|11417955 +vena ulnaris|11418024 +vena umbilicalis|11418087 +vena vertebralis|11418158 +vena vertebralis accessoria|11418229 +vena vertebralis anterior|11418321 +vena vesicalis|11418410 +vena vestibularis|11418477 +vena vorticosum|11418550 +venae centrales hepatis|11418632 +venae cerebrum inferior|11418718 +venae ciliares|11418801 +venae conjunctivales|11418869 +venae dorsales clitoridis superficiales|11418948 +venae dorsales penis profunda|11419027 +venae dorsales penis superficiales|11419080 +venae epigastricae superiores|11419138 +venae episclerales|11419219 +venae esophageae|11419293 +venae interlobulares hepatis|11419384 +venae interlobulares renis|11419452 +venae labiales anteriores|11419500 +venae labiales posteriores|11419583 +venae meningeae|11419668 +venae palpebrales|11419739 +venae pancreatica|11419796 +venae profundae clitoridis|11419869 +venae pudendum|11419935 +venae renis|11420003 +venae sclerales|11420054 +venal|11420123 +venality|11420189 +venally|11420230 +venation|11420270 +vend|11420334 +vendable|11420398 +vendee|11420475 +vendemiaire|11420530 +vender|11420592 +vendetta|11420664 +vendible|11420698 +vending|11420775 +vending machine|11420851 +vendition|11420902 +vendor|11420978 +vendue|11421050 +veneer|11421092 +veneering|11421171 +venerable|11421228 +venerate|11421294 +venerated|11421367 +venerating|11421429 +veneration|11421481 +venerator|11421569 +venereal|11421596 +venereal disease|11421621 +venereal wart|11421766 +veneridae|11421854 +venesect|11421915 +venesection|11421952 +venetia|11422032 +venetian|11422095 +venetian blind|11422174 +venetian glass|11422226 +venetian red|11422285 +venetian sumac|11422369 +veneto|11422457 +venezia|11422519 +venezia-euganea|11422580 +venezuela|11422651 +venezuelan|11422747 +venezuelan monetary unit|11422855 +vengeance|11422928 +vengeful|11422987 +vengefully|11423039 +vengefulness|11423084 +venial|11423143 +venial sin|11423215 +venice|11423247 +venipuncture|11423307 +venire|11423338 +venire facias|11423365 +venison|11423407 +venn|11423429 +venn diagram|11423539 +venn's diagram|11423479 +venogram|11423597 +venography|11423677 +venom|11423710 +venomed|11423816 +venomous|11423854 +venomous lizard|11424049 +venomously|11424081 +venose|11424112 +venous|11424154 +venous blood|11424182 +venous blood system|11424210 +venous blood vessel|11424255 +venous pressure|11424307 +venous sinus|11424347 +venous thrombosis|11424410 +vent|11424465 +vent-hole|11424728 +ventail|11424856 +vented|11424894 +venter|11424921 +venthole|11425057 +ventilate|11425104 +ventilated|11425256 +ventilating system|11425333 +ventilation|11425410 +ventilation shaft|11425671 +ventilation system|11425732 +ventilator|11425809 +ventilatory|11425905 +venting|11425937 +ventner|11425983 +ventolin|11426050 +ventose|11426112 +ventral|11426166 +ventral fin|11426219 +ventral placentation|11426255 +ventricle|11426320 +ventricose|11426397 +ventricous|11426439 +ventricular|11426481 +ventricular aneurysm|11426536 +ventricular fibrillation|11426584 +ventricular fold|11426661 +ventricular septal defect|11426804 +ventriculus|11426853 +ventriloquism|11426908 +ventriloquist|11426964 +ventriloquist's dummy|11427015 +ventriloquy|11427052 +venture|11427108 +venture capital|11427407 +venture capitalist|11427469 +venturer|11427516 +venturesome|11427645 +venturesomeness|11427781 +venturi|11427848 +venturi tube|11427949 +venturous|11428039 +venue|11428165 +venula|11428219 +venule|11428287 +venus|11428355 +venus maidenhair|11429471 +venus mercenaria|11429632 +venus' slipper|11428624 +venus'-hair fern|11428463 +venus's curse|11428718 +venus's flower basket|11428877 +venus's flytrap|11428943 +venus's flytraps|11429037 +venus's girdle|11429208 +venus's shoe|11429284 +venus's slipper|11429376 +venushair|11429744 +veps|11429898 +vepse|11429979 +vepsian|11430061 +veracious|11430145 +veracity|11430201 +veracruz|11430232 +veranda|11430293 +verandah|11430333 +verapamil|11430373 +veratrum|11430446 +veratrum viride|11430509 +verb|11430631 +verb phrase|11430698 +verbal|11430736 +verbal creation|11430881 +verbal description|11430930 +verbal intelligence|11430980 +verbal noun|11431022 +verbalisation|11431069 +verbalise|11431168 +verbalised|11431370 +verbaliser|11431426 +verbalization|11431492 +verbalize|11431591 +verbalized|11431793 +verbalizer|11431849 +verbascum|11431915 +verbascum blattaria|11431980 +verbascum lychnitis|11432076 +verbascum phoeniceum|11432173 +verbascum thapsus|11432273 +verbatim|11432430 +verbena|11432481 +verbena family|11432513 +verbenaceae|11432604 +verbesina|11432707 +verbesina alternifolia|11432772 +verbesina encelioides|11432947 +verbesina helianthoides|11433120 +verbesina virginica|11433223 +verbiage|11433348 +verbify|11433471 +verbolatry|11433508 +verbose|11433592 +verbosely|11433648 +verboseness|11433696 +verbosity|11433750 +verboten|11433804 +verd antique|11433883 +verdancy|11433926 +verdandi|11434004 +verdant|11434046 +verde antique|11434072 +verdi|11434115 +verdicchio|11434195 +verdict|11434312 +verdigris|11434353 +verdin|11434486 +verdolagas|11434535 +verdun|11434613 +verdure|11434668 +verey pistol|11434783 +verge|11434868 +verger|11435022 +vergil|11435063 +veridical|11435121 +verifiable|11435155 +verification|11435248 +verificatory|11435343 +verified|11435514 +verifier|11435590 +verify|11435670 +verifying|11435868 +verisimilar|11436039 +verisimilitude|11436086 +veritable|11436139 +verity|11436229 +verlaine|11436283 +vermeer|11436329 +vermicelli|11436394 +vermicide|11436437 +vermicular|11436508 +vermiculate|11436559 +vermiculated|11436695 +vermiculation|11436746 +vermiform|11436863 +vermiform appendix|11436901 +vermiform process|11437000 +vermifuge|11437099 +vermilion|11437202 +vermillion|11437315 +vermillion flycatcher|11437376 +vermillion rockfish|11437509 +vermin|11437574 +verminous|11437664 +vermis|11437693 +vermis cerebelli|11437743 +vermont|11437793 +vermonter|11437857 +vermouth|11437895 +vernacular|11437923 +vernacular art|11438057 +vernal|11438140 +vernal equinox|11438194 +vernal iris|11438288 +vernal witch hazel|11438365 +vernation|11438435 +verne|11438466 +verner|11438513 +verner's law|11438578 +vernier|11438623 +vernier caliper|11438702 +vernier micrometer|11438782 +vernier scale|11438862 +vernix|11438899 +vernix caseosa|11438945 +vernonia|11438991 +verona|11439040 +veronal|11439092 +veronese|11439182 +veronica|11439249 +veronica agrestis|11439284 +veronica americana|11439364 +veronica anagallis-aquatica|11439474 +veronica arvensis|11439629 +veronica beccabunga|11439708 +veronica chamaedrys|11439820 +veronica michauxii|11439919 +veronica officinalis|11440065 +veronica peregrina|11440162 +veronica serpyllifolia|11440247 +veronicastrum virginicum|11440344 +verpa|11440492 +verpa bohemica|11440530 +verpa conica|11440598 +verrazano|11440662 +verrazano narrows|11440834 +verrazano-narrows bridge|11440757 +verrazzano|11440886 +verruca|11440982 +verruca acuminata|11441033 +verrucose|11441121 +vers libre|11441170 +versace|11441217 +versailles|11441310 +versant|11441416 +versatile|11441465 +versatility|11441560 +verse|11441594 +verse form|11441805 +verse line|11441865 +versed|11441896 +versicle|11441972 +versification|11442006 +versifier|11442106 +versify|11442174 +version|11442238 +verso|11442562 +verst|11442602 +vertebra|11442629 +vertebral|11442655 +vertebral arch|11442681 +vertebral artery|11442722 +vertebral canal|11442805 +vertebral column|11442898 +vertebral vein|11442984 +vertebrata|11443055 +vertebrate|11443142 +vertebrate foot|11443198 +vertebrate paleontology|11443266 +vertex|11443338 +verthandi|11443461 +vertical|11443504 +vertical angle|11443794 +vertical bank|11443824 +vertical circle|11443852 +vertical combination|11443890 +vertical file|11443967 +vertical fin|11444023 +vertical flute|11444113 +vertical integration|11444205 +vertical section|11444282 +vertical stabiliser|11444327 +vertical stabilizer|11444417 +vertical surface|11444507 +vertical tail|11444541 +vertical union|11444605 +verticality|11444701 +verticalness|11444783 +verticil|11444865 +verticillate|11444933 +verticillated|11444984 +verticilliosis|11445035 +verticillium|11445077 +vertiginous|11445106 +vertigo|11445154 +vertu|11445215 +vervain|11445319 +vervain family|11445351 +vervain sage|11445442 +verve|11445514 +vervet|11445562 +vervet monkey|11445648 +verwoerd|11445734 +very|11445835 +very fast|11445971 +very high frequency|11446000 +very important person|11446049 +very light|11446174 +very loudly|11446217 +very low density lipoprotein|11446248 +very low frequency|11446303 +very much|11446351 +very much like|11446405 +very pistol|11446436 +very reverend|11446520 +very softly|11446580 +very well|11446611 +vesalius|11446672 +vesey|11446726 +vesica|11446815 +vesical|11446843 +vesical vein|11446863 +vesicant|11446930 +vesicaria|11447008 +vesicate|11447075 +vesication|11447141 +vesicatory|11447220 +vesicle|11447296 +vesicopapule|11447322 +vesicoureteral reflux|11447365 +vesicula umbilicus|11447403 +vesicular|11447476 +vesicular stomatitis|11447498 +vesiculate|11447539 +vesiculation|11447593 +vesiculitis|11447672 +vesiculovirus|11447720 +vespa|11447756 +vespa crabro|11447805 +vespasian|11447860 +vesper|11447953 +vesper mouse|11448053 +vesper sparrow|11448125 +vespers|11448199 +vespertilian bat|11448338 +vespertilio|11448404 +vespertilio murinus|11448468 +vespertilionid|11448561 +vespertilionidae|11448627 +vespid|11448708 +vespid wasp|11448741 +vespidae|11448774 +vespucci|11448834 +vespula|11448907 +vespula maculata|11448962 +vespula maculifrons|11449049 +vespula vulgaris|11449133 +vessel|11449207 +vest|11449295 +vest pocket|11449546 +vesta|11449574 +vestal|11449652 +vestal virgin|11449749 +vested|11449779 +vested interest|11449809 +vestiary|11449880 +vestibular|11449921 +vestibular apparatus|11449955 +vestibular fold|11450018 +vestibular gland|11450161 +vestibular system|11450213 +vestibular vein|11450276 +vestibule|11450349 +vestibule of the ear|11450459 +vestibule of the vagina|11450499 +vestibulocochlear nerve|11450542 +vestige|11450667 +vestigial|11450726 +vestment|11450769 +vestmental|11450797 +vestmented|11450826 +vestris|11450859 +vestry|11450926 +vestryman|11450984 +vestrywoman|11451018 +vesture|11451054 +vesuvian|11451249 +vesuvianite|11451296 +vesuvius|11451343 +vet|11451406 +vetch|11451641 +vetchling|11451680 +vetchworm|11451704 +veteran|11451808 +veteran soldier|11452057 +veterans of foreign wars|11452231 +veterans' day|11452137 +veterinarian|11452306 +veterinary|11452397 +veterinary medicine|11452556 +veterinary school|11452612 +veterinary surgeon|11452646 +veto|11452737 +vex|11452936 +vexation|11453379 +vexatious|11453601 +vexatious litigation|11453741 +vexed|11453802 +vexer|11453882 +vexing|11453953 +vfw|11454147 +vhf|11454201 +vi|11454383 +via aircraft|11454605 +via media|11454635 +viability|11454677 +viable|11454725 +viaduct|11454804 +viagra|11454833 +vial|11454901 +viand|11454949 +viands|11454969 +viatical|11455060 +viatical settlement|11455095 +viatication|11455196 +viaticus|11455244 +viaticus settlement|11455292 +vibe|11455364 +vibes|11455417 +vibist|11455548 +viborg|11455609 +vibraharp|11455637 +vibramycin|11455717 +vibrancy|11455787 +vibrant|11455895 +vibraphone|11455931 +vibraphonist|11456011 +vibrate|11456072 +vibrating|11456260 +vibrating reed|11456296 +vibration|11456334 +vibrational|11456547 +vibrations|11456583 +vibrato|11456864 +vibrator|11456887 +vibratory|11456948 +vibrio|11456984 +vibrio comma|11457045 +vibrio fetus|11457110 +vibrion|11457160 +vibrionic|11457221 +vibrissa|11457254 +viburnum|11457298 +viburnum dentatum|11457360 +viburnum lantana|11457447 +viburnum opulus|11457537 +viburnum prunifolium|11457674 +viburnum recognitum|11457746 +viburnum trilobum|11457817 +vicar|11457946 +vicar apostolic|11458095 +vicar of christ|11458127 +vicar-general|11458054 +vicarage|11458268 +vicarial|11458314 +vicariate|11458338 +vicarious|11458393 +vicarship|11458458 +viccinium membranaceum|11458513 +viccinium myrtillus|11458643 +vice|11458759 +vice admiral|11458920 +vice chairman|11458955 +vice chancellor|11459026 +vice crime|11459080 +vice president|11459119 +vice squad|11459177 +vice versa|11459210 +vice-presidential|11458826 +vice-regent|11458881 +vicegerent|11459263 +vicenary|11459300 +vicennial|11459331 +viceregal|11459363 +vicereine|11459390 +viceroy|11459452 +viceroyalty|11459590 +viceroyship|11459624 +vichy|11459700 +vichy water|11459726 +vichyssoise|11459773 +vicia|11459799 +vicia cracca|11459850 +vicia faba|11459927 +vicia orobus|11460063 +vicia sativa|11460117 +vicia sepium|11460171 +vicia villosa|11460223 +vicinal|11460288 +vicinity|11460312 +vicious|11460392 +vicious circle|11460538 +vicious cycle|11460632 +viciously|11460701 +viciousness|11460737 +vicissitude|11460830 +vicksburg|11460903 +vicomte de chateaubriand|11461020 +vicomte ferdinand marie de lesseps|11461167 +victim|11461296 +victimisation|11461408 +victimise|11461477 +victimised|11461554 +victimiser|11461626 +victimization|11461668 +victimize|11461775 +victimized|11461950 +victimizer|11462022 +victimless crime|11462064 +victor|11462109 +victor emanuel ii|11462310 +victor emanuel iii|11462373 +victor franz hess|11462438 +victor herbert|11462510 +victor hess|11462566 +victor horta|11462632 +victor hugo|11462692 +victor-marie hugo|11462213 +victoria|11462783 +victoria clafin woodhull|11463079 +victoria cross|11463158 +victoria de durango|11463250 +victoria falls|11463336 +victoria land|11463480 +victoria nyanza|11463589 +victoria plum|11463649 +victoria sandwich|11463691 +victoria sponge|11463757 +victorian|11463821 +victorian age|11464124 +victorian architecture|11464181 +victoriana|11464299 +victorious|11464377 +victory|11464445 +victory celebration|11464503 +victory day|11464554 +victory garden|11464597 +victory lap|11464669 +victrola|11464723 +victual|11464781 +victualer|11464972 +victualler|11465081 +victuals|11465189 +vicugna|11465473 +vicugna vicugna|11465525 +vicuna|11465623 +vidal|11465754 +vidalia onion|11465820 +vidar|11465863 +videlicet|11465911 +video|11465956 +video digitizing|11466079 +video equipment|11466117 +video game|11466184 +video recording|11466223 +videocassette|11466264 +videocassette recorder|11466318 +videodisc|11466381 +videodisk|11466440 +videotape|11466499 +vidua|11466636 +vie|11466680 +vienna|11466709 +vienna roll|11466785 +vienna sausage|11466837 +viennese|11466939 +vientiane|11466982 +vieques|11467060 +viet nam|11467092 +vietnam|11467229 +vietnam war|11467365 +vietnamese|11467418 +vietnamese monetary unit|11467620 +view|11467693 +view angle|11468324 +view as|11468364 +view finder|11468432 +viewable|11468567 +viewer|11468601 +viewers|11468700 +viewfinder|11468859 +viewgraph|11468913 +viewing|11468959 +viewing audience|11469026 +viewless|11469081 +viewpoint|11469107 +vigdis finnbogadottir|11469210 +vigee-lebrun|11469288 +vigesimal|11469390 +vigil|11469422 +vigil candle|11469508 +vigil light|11469565 +vigilance|11469622 +vigilance committee|11469720 +vigilance man|11469778 +vigilant|11469835 +vigilante|11469897 +vigilantism|11469954 +vigilantly|11469991 +vigna|11470021 +vigna aconitifolia|11470072 +vigna angularis|11470177 +vigna caracalla|11470286 +vigna radiata|11470437 +vigna sesquipedalis|11470553 +vigna sinensis|11470688 +vigna unguiculata|11470804 +vigna unguiculata sesquipedalis|11470923 +vignette|11471070 +vigor|11471164 +vigorish|11471306 +vigorous|11471381 +vigorously|11471423 +vigour|11471450 +vii|11471590 +viii|11471674 +viking|11471795 +viktor korchnoi|11471846 +viktor lvovich korchnoi|11471933 +viktor vasarely|11472028 +vila|11472086 +vile|11472151 +vileness|11472314 +vilfredo pareto|11472457 +vilification|11472543 +vilifier|11472697 +vilify|11472810 +villa|11472884 +villa-lobos|11473053 +village|11473114 +village green|11473269 +villager|11473318 +villahermosa|11473373 +villain|11473437 +villainage|11473557 +villainess|11473611 +villainous|11473649 +villainousness|11473686 +villainy|11473733 +villard|11473811 +villein|11473877 +villeinage|11473912 +villoma|11473992 +villon|11474140 +villus|11474184 +vilna|11474228 +vilnius|11474298 +vilno|11474370 +vim|11474440 +viminaria|11474557 +viminaria denudata|11474620 +viminaria juncea|11474705 +vin ordinaire|11474788 +vina del mar|11474822 +vinaceous|11474886 +vinaigrette|11474976 +vinblastine|11475055 +vinca|11475111 +vinca major|11475175 +vinca minor|11475236 +vinca rosea|11475287 +vincent van gogh|11475694 +vincent's angina|11475467 +vincent's infection|11475579 +vincenzo bellini|11475759 +vincetoxicum|11475819 +vincetoxicum hirsutum|11475904 +vincetoxicum negrum|11475993 +vincible|11476080 +vincristine|11476132 +vindicate|11476189 +vindicated|11476312 +vindication|11476409 +vindicator|11476488 +vindicatory|11476566 +vindictive|11476736 +vindictively|11476825 +vindictiveness|11476870 +vine|11476929 +vine cactus|11476971 +vine maple|11477057 +vine snake|11477099 +vinegar|11477143 +vinegar eel|11477210 +vinegar fly|11477285 +vinegar joe stilwell|11477327 +vinegar tree|11477441 +vinegar worm|11477606 +vinegariness|11477681 +vinegarishness|11477740 +vinegarroon|11477799 +vinegarweed|11477873 +vinegary|11477965 +vinery|11478004 +vineyard|11478034 +vingt-et-un|11478064 +viniculture|11478122 +vinifera|11478166 +vinifera grape|11478248 +vinification|11478343 +vinify|11478415 +vino|11478444 +vinogradoff|11478511 +vinous|11478603 +vinson|11478676 +vintage|11478742 +vintager|11478799 +vintner|11478834 +vinyl|11478928 +vinyl cyanide|11479013 +vinyl ether|11479088 +vinyl group|11479274 +vinyl polymer|11479344 +vinyl radical|11479411 +vinyl resin|11479481 +vinylbenzene|11479548 +vinylite|11479645 +viocin|11479680 +viol|11479739 +viola|11479786 +viola arvensis|11479910 +viola blanda|11479978 +viola canadensis|11480074 +viola canina|11480169 +viola clef|11480235 +viola conspersa|11480270 +viola cornuta|11480338 +viola d'amore|11480408 +viola da braccio|11480436 +viola da gamba|11480467 +viola ocellata|11480506 +viola odorata|11480579 +viola pedata|11480665 +viola pubescens|11480766 +viola reichenbachiana|11480834 +viola rostrata|11480935 +viola striata|11481001 +viola sylvatica|11481085 +viola tricolor|11481180 +viola tricolor hortensis|11481295 +violable|11481366 +violaceae|11481393 +violate|11481476 +violated|11481791 +violation|11481829 +violative|11482238 +violator|11482277 +violence|11482412 +violent|11482587 +violent death|11482904 +violent disorder|11482956 +violent storm|11483002 +violent stream|11483054 +violet|11483101 +violet family|11483266 +violet suksdorfia|11483339 +violet wood sorrel|11483398 +violet-flowered petunia|11483204 +violin|11483468 +violin bow|11483524 +violin lesson|11483560 +violin maker|11483596 +violin section|11483631 +violinist|11483678 +violist|11483737 +violoncello|11483786 +viomycin|11483846 +viorna baldwinii|11483898 +viosterol|11483983 +vioxx|11484076 +vip|11484123 +viper|11484252 +viper's bugloss|11484290 +viper's grass|11484385 +vipera|11484476 +vipera aspis|11484526 +vipera berus|11484581 +viperidae|11484641 +viperine grass snake|11484702 +viracept|11484795 +viraemia|11484855 +virago|11484891 +viral|11484956 +viral delivery vector|11485017 +viral haemorrhagic fever|11485088 +viral hemorrhagic fever|11485219 +viral hepatitis|11485350 +viral infection|11485385 +viral pneumonia|11485436 +viramune|11485503 +virazole|11485594 +virchow|11485672 +viremia|11485758 +vireo|11485794 +vireo olivaceous|11485828 +vireo solitarius|11485892 +vireo solitarius solitarius|11485956 +vireonidae|11486045 +virga|11486106 +virgil|11486144 +virgil garnett thomson|11486202 +virgil thomson|11486289 +virgilia|11486368 +virgilia capensis|11486428 +virgilia divaricata|11486506 +virgilia oroboides|11486569 +virgin|11486648 +virgin birth|11487015 +virgin forest|11487169 +virgin islands|11487221 +virgin islands national park|11487267 +virgin mary|11487348 +virgin wool|11487492 +virgin's bower|11486923 +virginal|11487518 +virginal membrane|11487651 +virginia|11487718 +virginia beach|11487839 +virginia bluebell|11487907 +virginia chain fern|11488011 +virginia cowslip|11488092 +virginia creeper|11488195 +virginia crownbeard|11488293 +virginia deer|11488418 +virginia fence|11488544 +virginia ham|11488634 +virginia mallow|11488687 +virginia mcmath|11488754 +virginia oyster|11488851 +virginia pine|11488899 +virginia reel|11489001 +virginia serpentaria|11489067 +virginia serpentary|11489216 +virginia snakeroot|11489364 +virginia spring beauty|11489511 +virginia stock|11489593 +virginia strawberry|11489674 +virginia thimbleweed|11489773 +virginia wade|11489874 +virginia waterleaf|11489930 +virginia woolf|11490061 +virginian|11490151 +virginian stock|11490189 +virginian sumac|11490271 +virginian witch hazel|11490386 +virginity|11490483 +virgo|11490519 +virgo the virgin|11490728 +virgule|11490848 +viricidal|11490935 +viricide|11490969 +viridity|11491002 +virile|11491100 +virilisation|11491180 +virilise|11491306 +virility|11491377 +virility drug|11491456 +virilization|11491504 +virilize|11491630 +virino|11491701 +virion|11491726 +viroid|11491751 +virological|11491788 +virologist|11491835 +virology|11491870 +virtu|11491915 +virtual|11492055 +virtual image|11492109 +virtual memory|11492153 +virtual reality|11492260 +virtual storage|11492310 +virtually|11492417 +virtue|11492515 +virtuosity|11492656 +virtuoso|11492690 +virtuous|11492869 +virtuously|11493058 +virtuousness|11493100 +virucidal|11493160 +virucide|11493194 +virulence|11493227 +virulency|11493318 +virulent|11493409 +virus|11493598 +virus infection|11493739 +virusoid|11493790 +vis major|11493932 +vis-a-vis|11493827 +visa|11494065 +visage|11494200 +visaged|11494323 +visayan|11494346 +visayan islands|11494388 +viscaceae|11494444 +viscacha|11494530 +viscera|11494608 +visceral|11494664 +visceral brain|11494763 +visceral leishmaniasis|11494831 +visceral pericardium|11494936 +visceral pleura|11495000 +viscerally|11495032 +viscid|11495065 +viscid mushroom|11495146 +viscidity|11495201 +viscidly|11495304 +viscidness|11495330 +viscoelastic|11495433 +viscometer|11495463 +viscometric|11495551 +viscometry|11495640 +visconti|11495702 +viscose|11495831 +viscose rayon|11495919 +viscosimeter|11495956 +viscosimetric|11496044 +viscosity|11496133 +viscount|11496193 +viscount nelson|11496252 +viscount northcliffe|11496363 +viscount st. albans|11496489 +viscountcy|11496652 +viscountess|11496700 +viscountess astor|11496752 +viscounty|11496876 +viscous|11496938 +viscousness|11497039 +viscum|11497099 +viscum album|11497157 +viscus|11497238 +vise|11497275 +viselike|11497315 +vishnu|11497339 +vishnuism|11497374 +visibility|11497445 +visible|11497577 +visible balance|11497784 +visible horizon|11497858 +visible light|11497938 +visible radiation|11498015 +visible spectrum|11498092 +visible speech|11498142 +visibleness|11498231 +visigoth|11498278 +vision|11498310 +vision defect|11498639 +visionary|11498753 +visit|11498912 +visitant|11499402 +visitation|11499447 +visitation rights|11499564 +visiting|11499603 +visiting card|11499662 +visiting fireman|11499723 +visiting nurse|11499766 +visiting professor|11499796 +visitor|11499839 +visken|11499884 +visor|11499984 +visored|11500106 +vista|11500139 +vistaril|11500218 +vistula|11500393 +vistula river|11500438 +visual|11500489 +visual acuity|11500608 +visual agnosia|11500698 +visual aphasia|11500730 +visual area|11500784 +visual aspect|11500849 +visual cell|11500891 +visual communication|11500941 +visual cortex|11500985 +visual defect|11501050 +visual disorder|11501164 +visual display unit|11501278 +visual field|11501332 +visual hallucination|11501414 +visual image|11501458 +visual impairment|11501590 +visual joke|11501704 +visual modality|11501760 +visual percept|11501864 +visual perception|11501942 +visual property|11501997 +visual purple|11502031 +visual range|11502092 +visual sensation|11502137 +visual sense|11502226 +visual signal|11502330 +visual space|11502375 +visual system|11502432 +visualisation|11502470 +visualise|11502539 +visualised|11502788 +visualiser|11502846 +visualization|11502905 +visualize|11502974 +visualized|11503223 +visualizer|11503281 +visually challenged|11503340 +visually handicapped person|11503446 +visually impaired|11503502 +vitaceae|11503624 +vital|11503728 +vital capacity|11503854 +vital force|11503928 +vital organ|11503986 +vital principle|11504020 +vital sign|11504093 +vital statistics|11504118 +vitalisation|11504154 +vitalise|11504233 +vitaliser|11504323 +vitalism|11504399 +vitalist|11504461 +vitality|11504496 +vitalization|11504681 +vitalize|11504760 +vitalizer|11504850 +vitalizing|11504926 +vitalness|11504971 +vitals|11505086 +vitamin|11505120 +vitamin a|11505266 +vitamin a1|11505351 +vitamin a2|11505436 +vitamin b|11505528 +vitamin b complex|11506232 +vitamin b1|11505637 +vitamin b12|11505781 +vitamin b2|11505936 +vitamin b6|11506091 +vitamin bc|11506349 +vitamin c|11506530 +vitamin d|11506607 +vitamin e|11506710 +vitamin g|11506784 +vitamin h|11506938 +vitamin k|11507042 +vitamin k1|11507129 +vitamin k3|11507235 +vitamin m|11507324 +vitamin p|11507504 +vitamin pill|11507575 +vitamin-deficiency diet|11505210 +vitaminise|11507694 +vitaminize|11507736 +vitelline circulation|11507778 +vitelline sac|11507821 +vitellus|11507894 +vithar|11507931 +vitharr|11507980 +viti levu|11508030 +vitiate|11508066 +vitiated|11508273 +vitiation|11508362 +viticulture|11508404 +viticulturist|11508433 +vitidaceae|11508495 +vitiliginous|11508601 +vitiligo|11508697 +vitis|11508790 +vitis labrusca|11508854 +vitis rotundifolia|11508919 +vitis vinifera|11508992 +vitreous|11509089 +vitreous body|11509214 +vitreous humor|11509327 +vitreous humour|11509440 +vitreous silica|11509553 +vitrification|11509635 +vitrified|11509718 +vitrify|11509766 +vitriol|11509817 +vitriolic|11510025 +vitriolically|11510190 +vittaria|11510224 +vittaria lineata|11510277 +vittariaceae|11510348 +vittorio de sica|11510415 +vituperate|11510513 +vituperation|11510587 +vituperative|11510674 +vitus|11510734 +vitus behring|11510778 +vitus bering|11510853 +viva|11510927 +viva voce|11511045 +viva-voce|11511005 +vivace|11511146 +vivacious|11511167 +vivacity|11511203 +vivaldi|11511239 +vivarium|11511329 +viverra|11511357 +viverra zibetha|11511409 +viverricula|11511478 +viverricula indica|11511542 +viverricula malaccensis|11511641 +viverridae|11511745 +viverrinae|11511837 +viverrine|11511929 +viverrine mammal|11511975 +vivid|11512021 +vividness|11512159 +vivien leigh|11512266 +vivification|11512315 +vivify|11512461 +viviparous|11512620 +viviparous eelpout|11512651 +vivisect|11512710 +vivisection|11512736 +vivisectionist|11512830 +vixen|11512879 +vixenish|11512944 +viyella|11512972 +viz.|11513027 +vizcaino|11513072 +vizier|11513138 +viziership|11513175 +vizla|11513250 +vizor|11513307 +vladimir horowitz|11513429 +vladimir ilich lenin|11513504 +vladimir ilich ulyanov|11513680 +vladimir ilyich lenin|11513858 +vladimir ilyich ulyanov|11514035 +vladimir kosma zworykin|11514214 +vladimir lenin|11514290 +vladimir nabokov|11514460 +vladimir putin|11514556 +vladimir vladimirovich mayakovski|11514662 +vladimir vladimirovich nabokov|11514755 +vladimir vladimirovich putin|11514865 +vladivostok|11514985 +vlaminck|11515047 +vldl|11515102 +vlf|11515162 +vocable|11515214 +vocabulary|11515248 +vocal|11515360 +vocal band|11515512 +vocal cord|11515579 +vocal fold|11515646 +vocal music|11515713 +vocal organ|11515740 +vocalic|11515780 +vocalisation|11515870 +vocalise|11515939 +vocaliser|11516258 +vocalist|11516375 +vocalization|11516452 +vocalize|11516561 +vocalizer|11516880 +vocalizing|11516997 +vocation|11517057 +vocational|11517163 +vocational education|11517224 +vocational program|11517284 +vocational rehabilitation|11517332 +vocational rehabilitation program|11517382 +vocational school|11517448 +vocational training|11517542 +vocative|11517602 +vocative case|11517682 +vociferate|11517735 +vociferation|11517814 +vociferator|11517886 +vociferous|11517952 +vodka|11518013 +vodka martini|11518101 +vodoun|11518132 +vogue|11518202 +voguish|11518302 +vogul|11518384 +voice|11518451 +voice box|11519011 +voice communication|11519086 +voice over|11519231 +voice part|11519297 +voiced|11519328 +voiced sound|11519389 +voiceless|11519443 +voiceless consonant|11519587 +voicelessness|11519631 +voiceprint|11519709 +voicer|11519801 +voicing|11519899 +void|11519953 +void of|11520254 +voidable|11520331 +voidance|11520381 +voider|11520436 +voiding|11520720 +voile|11520809 +voix celeste|11520854 +vol-au-vent|11520900 +volaille|11520928 +volans|11520969 +volant|11521006 +volapuk|11521029 +volar|11521074 +volary|11521119 +volatile|11521174 +volatile oil|11521376 +volatile storage|11521416 +volatilisable|11521509 +volatilise|11521588 +volatilised|11521639 +volatility|11521709 +volatilizable|11521859 +volatilize|11521938 +volatilized|11521989 +volcan de colima|11522059 +volcanic|11522134 +volcanic crater|11522208 +volcanic eruption|11522277 +volcanic glass|11522323 +volcanic rock|11522361 +volcanism|11522397 +volcano|11522438 +volcano islands|11522519 +volcanology|11522572 +vole|11522636 +volga|11522680 +volga river|11522719 +volgaic|11522764 +volgograd|11522813 +volition|11522892 +volitional|11522989 +volitionally|11523028 +volkhov|11523059 +volkhov river|11523104 +volley|11523155 +volleyball|11523340 +volleyball court|11523399 +volleyball game|11523431 +volleyball net|11523478 +volleyball player|11523506 +volt|11523552 +volt-ampere|11523583 +volta|11523619 +voltage|11523746 +voltage divider|11523903 +voltage drop|11523966 +voltage regulator|11524012 +voltaic|11524051 +voltaic battery|11524129 +voltaic cell|11524196 +voltaic pile|11524264 +voltaire|11524330 +voltarean|11524400 +voltaren|11524452 +voltarian|11524570 +volte-face|11524622 +voltmeter|11524683 +volubility|11524708 +voluble|11524769 +volubly|11524920 +volume|11524945 +volume unit|11525250 +volume-detonation bomb|11525134 +volumed|11525404 +volumeter|11525471 +volumetric|11525496 +volumetric analysis|11525534 +volumetrical|11525676 +voluminosity|11525714 +voluminous|11525778 +voluminousness|11525838 +volund|11525902 +voluntary|11525940 +voluntary muscle|11526213 +volunteer|11526271 +volunteer state|11526466 +voluptuary|11526535 +voluptuous|11526633 +voluptuousness|11526829 +volute|11526892 +volute spring|11527076 +voluted|11527118 +volution|11527200 +volva|11527231 +volvaria|11527273 +volvaria bombycina|11527328 +volvariaceae|11527382 +volvariella|11527451 +volvariella bombycina|11527515 +volvariella volvacea|11527575 +volvocaceae|11527665 +volvocales|11527735 +volvox|11527800 +volvulus|11527853 +vombatidae|11527881 +vomer|11527944 +vomit|11527967 +vomit up|11528458 +vomiter|11528622 +vomiting|11528683 +vomitive|11528888 +vomitory|11528949 +vomitus|11529010 +von bismarck|11529095 +von braun|11529270 +von mauser|11529392 +von neumann|11529513 +von neumann machine|11529585 +von recklinghausen's disease|11529651 +von rundstedt|11529828 +von sternberg|11529920 +von willebrand|11530024 +von willebrand's disease|11530176 +vonnegut|11530312 +voodoo|11530367 +voodooism|11530538 +voracious|11530608 +voraciousness|11530730 +voracity|11530877 +vortex|11531029 +vortex vein|11531123 +vorticella|11531205 +vorticose vein|11531264 +votary|11531346 +vote|11531432 +vote counter|11531721 +vote down|11531771 +vote in|11531875 +vote of confidence|11531920 +vote out|11531962 +voteless|11532037 +voter|11532085 +voter turnout|11532116 +voting|11532163 +voting age|11532230 +voting booth|11532258 +voting machine|11532306 +voting precinct|11532348 +voting right|11532400 +voting stock|11532428 +voting system|11532456 +voting trust|11532509 +votive|11532537 +votyak|11532586 +vouch|11532652 +vouch in|11532831 +vouchee|11532869 +voucher|11532892 +vouchsafe|11533068 +vouge|11533114 +voussoir|11533134 +vouvray|11533167 +vow|11533203 +vowel|11533311 +vowel point|11533421 +vowel rhyme|11533448 +vowel sound|11533490 +vowel system|11533542 +vowelise|11533580 +vowelize|11533678 +vowellike|11533776 +vower|11533803 +vox|11533836 +vox angelica|11533905 +vox humana|11533951 +vox populi|11533981 +voyage|11534047 +voyager|11534159 +voyageurs national park|11534195 +voyeur|11534266 +voyeurism|11534341 +voyeuristic|11534371 +voyeuristical|11534456 +voznesenski|11534541 +vroom|11534598 +vt|11534623 +vuillard|11534682 +vulcan|11534756 +vulcanisation|11534791 +vulcanise|11534839 +vulcanised|11534906 +vulcaniser|11534953 +vulcanite|11535014 +vulcanization|11535096 +vulcanize|11535144 +vulcanized|11535211 +vulcanized fiber|11535258 +vulcanizer|11535326 +vulcanology|11535387 +vulgar|11535451 +vulgar latin|11535625 +vulgarian|11535670 +vulgarisation|11535727 +vulgarise|11535861 +vulgariser|11536115 +vulgarism|11536218 +vulgarity|11536335 +vulgarization|11536414 +vulgarize|11536548 +vulgarizer|11536802 +vulgarly|11536905 +vulgate|11536931 +vulnerability|11537045 +vulnerable|11537100 +vulpecula|11537432 +vulpecular|11537475 +vulpes|11537515 +vulpes fulva|11537564 +vulpes macrotis|11537611 +vulpes velox|11537664 +vulpes vulpes|11537723 +vulpine|11537772 +vultur|11537812 +vultur gryphus|11537859 +vulture|11537919 +vulturine|11538043 +vulturous|11538122 +vulva|11538201 +vulval|11538276 +vulvar|11538358 +vulvar slit|11538440 +vulvectomy|11538555 +vulvitis|11538617 +vulvovaginitis|11538662 +vx gas|11538713 +vyacheslav mikhailovich molotov|11538758 +w|11538871 +w-shaped|11539081 +w. b. yeats|11539115 +w. c. fields|11539201 +w. c. handy|11539284 +w. e. b. du bois|11539358 +w. h. auden|11539504 +w. h. hudson|11539566 +w. k. kellogg|11539658 +w. somerset maugham|11539739 +w. v. quine|11539852 +w. w. jacobs|11539948 +w.c.|11540026 +w.m.d.|11540113 +wa|11540273 +wabash|11540330 +wabash river|11540372 +wac|11540420 +wackily|11540464 +wacko|11540511 +wacky|11540586 +waco|11540846 +wad|11540894 +wadding|11541266 +waddle|11541323 +waddler|11541391 +wade|11541433 +wader|11541492 +waders|11541532 +wadi|11541628 +wading|11541648 +wading bird|11541677 +wading pool|11541717 +wads|11541743 +wafer|11542193 +wafer-thin|11542294 +waffle|11542319 +waffler|11542362 +waft|11542392 +wafture|11542481 +wag|11542525 +wage|11542631 +wage claim|11542839 +wage concession|11542876 +wage earner|11542912 +wage floor|11542950 +wage freeze|11542981 +wage hike|11543009 +wage increase|11543093 +wage scale|11543177 +wage schedule|11543269 +wage setter|11543361 +wage-earning|11542723 +wager|11543421 +wagerer|11543590 +wages|11543636 +wagga wagga|11543748 +waggery|11543786 +waggish|11543867 +waggishness|11543903 +waggle|11543947 +waggon|11544034 +waggoner|11544176 +waggonwright|11544209 +wagner|11544261 +wagnerian|11544396 +wagon|11544433 +wagon tire|11544821 +wagon train|11544851 +wagon wheel|11544897 +wagon-lit|11544752 +wagoner|11544924 +wagonwright|11544957 +wagram|11545009 +wagtail|11545064 +wahabi|11545100 +wahabism|11545187 +wahhabi|11545277 +wahhabism|11545365 +wahoo|11545456 +wahunsonacock|11545611 +wahvey|11545708 +waif|11545812 +waikiki|11545920 +wail|11545982 +wailer|11546153 +wailful|11546248 +wailing|11546293 +wailing wall|11546374 +wain|11546414 +wainscot|11546565 +wainscoted|11546632 +wainscoting|11546678 +wainscotting|11546752 +wainwright|11546825 +waist|11546877 +waist anchor|11547000 +waist pack|11547056 +waist-deep|11546940 +waist-high|11546970 +waistband|11547091 +waistcloth|11547147 +waistcoat|11547203 +waistline|11547235 +wait|11547272 +wait on|11547466 +waiter|11547529 +waiter's assistant|11547655 +waiting|11547733 +waiting area|11547797 +waiting game|11547844 +waiting line|11547882 +waiting list|11547915 +waiting room|11547949 +waitress|11547996 +waive|11548028 +waiver|11548137 +wajda|11548200 +wakashan|11548282 +wakashan language|11548405 +wake|11548465 +wake board|11549150 +wake island|11549267 +wake up|11549312 +wake-robin|11548891 +wake-up call|11549038 +wake-up signal|11549106 +wakeboard|11549447 +wakeful|11549483 +wakefulness|11549566 +wakeless|11549675 +waken|11549719 +wakening|11549856 +waker|11549910 +waking|11550026 +waking up|11550069 +walapai|11550123 +walbiri|11550214 +waldheim|11550281 +waldmeister|11550375 +waldorf salad|11550507 +wale|11550556 +wales|11550636 +walesa|11550777 +walhalla|11550857 +walk|11550900 +walk about|11552090 +walk around|11552139 +walk away|11552283 +walk in|11552334 +walk of life|11552405 +walk off|11552456 +walk on air|11552520 +walk out|11552589 +walk out of|11552706 +walk over|11552750 +walk through|11552812 +walk-in|11551498 +walk-on|11551709 +walk-through|11551804 +walk-to|11551901 +walk-up|11551932 +walk-up apartment|11552040 +walkabout|11552861 +walkaway|11552964 +walker|11553035 +walker foxhound|11553308 +walker hound|11553371 +walker percy|11553431 +walker smith|11553486 +walkie-talkie|11553585 +walking|11553636 +walking delegate|11553697 +walking fern|11553744 +walking horse|11553838 +walking leaf|11553973 +walking on air|11554109 +walking papers|11554186 +walking shoe|11554257 +walking stick|11554284 +walkingstick|11554450 +walkout|11554522 +walkover|11554593 +walkway|11554751 +walky-talky|11554784 +wall|11554835 +wall barley|11555285 +wall clock|11555342 +wall creeper|11555368 +wall fern|11555442 +wall germander|11555563 +wall hanging|11555617 +wall in|11555681 +wall of silence|11555730 +wall painting|11555795 +wall panel|11555841 +wall pellitory|11555885 +wall pepper|11555982 +wall plate|11556024 +wall plug|11556050 +wall rock|11556153 +wall rocket|11556183 +wall rue|11556267 +wall rue spleenwort|11556339 +wall socket|11556411 +wall st.|11556514 +wall street|11556560 +wall tent|11556666 +wall unit|11556712 +wall up|11556781 +wall-less|11555111 +wall-paperer|11555140 +walla walla|11556830 +wallaby|11556868 +wallace|11556909 +wallace carothers|11557141 +wallace hume carothers|11557227 +wallace stevens|11557318 +wallah|11557372 +wallboard|11557395 +walled|11557431 +wallenstein|11557454 +waller|11557549 +wallet|11557627 +walleye|11557677 +walleyed|11557819 +walleyed pike|11557846 +wallflower|11557932 +wallis warfield simpson|11558043 +wallis warfield windsor|11558185 +walloon|11558327 +wallop|11558417 +walloper|11558573 +walloping|11558660 +wallow|11558799 +wallpaper|11559049 +wallpaperer|11559093 +wally|11559157 +walnut|11559211 +walnut blight|11559278 +walnut family|11559308 +walnut oil|11559397 +walnut tree|11559435 +walpole|11559472 +walpurgis night|11559692 +walrus|11559737 +walrus moustache|11559808 +walrus mustache|11559869 +walt disney|11559930 +walt disney world|11560037 +walt whitman|11560121 +walt whitman bridge|11560169 +walter|11560236 +walter de la mare|11560306 +walter elias disney|11560390 +walter gropius|11560505 +walter hess|11560571 +walter john de la mare|11560641 +walter lippmann|11560730 +walter mitty|11560791 +walter piston|11560877 +walter ralegh|11560930 +walter raleigh|11561063 +walter reed|11561197 +walter rudolf hess|11561270 +walter scott|11561347 +walter william skeat|11561419 +walther hermann nernst|11561499 +walther richard rudolf hess|11561579 +walton|11561678 +waltz|11561886 +waltz around|11562100 +waltzer|11562188 +wamble|11562226 +wampanoag|11562254 +wampee|11562304 +wampum|11562421 +wampumpeag|11562607 +wan|11562661 +wanamaker|11562819 +wand|11562890 +wanda landowska|11562945 +wandala|11563011 +wander|11563056 +wanderer|11563354 +wandering|11563488 +wandering albatross|11563668 +wandering jew|11563734 +wandering nerve|11563792 +wanderlust|11563916 +wandflower|11563960 +wane|11564084 +wangle|11564255 +wangler|11564430 +wangling|11564506 +waning|11564559 +wank|11564617 +wankel engine|11564771 +wankel rotary engine|11564864 +wanker|11564964 +wannabe|11565016 +wannabee|11565085 +wanness|11565154 +want|11565272 +want ad|11565562 +wanted|11565618 +wanted notice|11565803 +wanted poster|11565866 +wanter|11565929 +wanting|11566005 +wanton|11566093 +wanton away|11566474 +wantonly|11566583 +wantonness|11566627 +wapiti|11566713 +war|11566772 +war admiral|11567121 +war advocacy|11567167 +war baby|11567214 +war between the states|11567249 +war bride|11567357 +war chest|11567382 +war cloud|11567420 +war correspondent|11567475 +war crime|11567564 +war criminal|11567602 +war cry|11567643 +war dance|11567813 +war department|11567877 +war game|11567937 +war god|11567966 +war hawk|11568022 +war machine|11568066 +war of 1812|11568157 +war of american independence|11568202 +war of greek independence|11568356 +war of nerves|11568429 +war of the austrian succession|11568486 +war of the grand alliance|11568569 +war of the league of augsburg|11568672 +war of the roses|11568779 +war of the spanish succession|11568852 +war paint|11568933 +war party|11569032 +war power|11569094 +war room|11569126 +war secretary|11569149 +war to end war|11569217 +war vessel|11569316 +war whoop|11569378 +war widow|11569469 +war zone|11569506 +war-ridden|11566978 +war-torn|11567047 +war-worn|11567084 +waratah|11569548 +warble|11569632 +warble fly|11569714 +warbler|11569741 +warburg|11569820 +ward|11569938 +ward off|11570514 +ward-heeler|11570413 +warden|11570652 +wardenship|11570708 +warder|11570783 +wardership|11570839 +wardress|11570914 +wardrobe|11570946 +wardroom|11571185 +ware|11571221 +warehouse|11571291 +warehouseman|11571381 +warehouseman's lien|11571449 +warehouser|11571483 +warehousing|11571551 +wares|11571621 +warfare|11571704 +warfarin|11571784 +warhead|11571862 +warhol|11571902 +warhorse|11571945 +wariness|11572082 +warji|11572133 +warlike|11572166 +warlock|11572228 +warlord|11572251 +warlpiri|11572284 +warm|11572352 +warm front|11572872 +warm the bench|11572898 +warm to|11572961 +warm up|11573005 +warm-blooded|11572712 +warm-toned|11572786 +warm-up|11572816 +warmed|11573159 +warmed-over|11573180 +warmer|11573239 +warmhearted|11573269 +warmheartedness|11573309 +warming|11573427 +warming pan|11573574 +warmly|11573599 +warmness|11573644 +warmonger|11573699 +warmongering|11573743 +warmth|11573790 +warn|11574026 +warner|11574139 +warning|11574251 +warning bell|11574399 +warning coloration|11574433 +warning device|11574505 +warning light|11574555 +warning of attack|11574602 +warning of war|11574646 +warning signal|11574688 +warp|11574753 +warpath|11575000 +warped|11575071 +warping|11575095 +warplane|11575140 +warragal|11575213 +warrant|11575294 +warrant officer|11575626 +warranted|11575676 +warrantee|11575728 +warranter|11575840 +warrantor|11575911 +warranty|11575982 +warren|11576045 +warren gamaliel harding|11576276 +warren harding|11576455 +warrener|11576625 +warrigal|11576666 +warring|11576747 +warrior|11576816 +warriorlike|11576886 +wars of the roses|11576946 +warsaw|11577020 +warship|11577087 +warszawa|11577149 +wart|11577218 +warthog|11577375 +wartime|11577398 +wartlike|11577449 +wartweed|11577498 +wartwort|11577578 +warty|11577658 +warwick|11577707 +wary|11577810 +wash|11577947 +wash away|11578922 +wash down|11579019 +wash drawing|11579066 +wash leather|11579116 +wash off|11579206 +wash one's hands|11579279 +wash out|11579326 +wash room|11579514 +wash up|11579748 +wash-and-wear|11578597 +wash-and-wear fabric|11578696 +wash-hand basin|11578770 +wash-hand stand|11578837 +washable|11580029 +washables|11580079 +washbasin|11580155 +washboard|11580268 +washbowl|11580361 +washcloth|11580475 +washday|11580532 +washed|11580565 +washed-out|11580611 +washed-up|11580757 +washer|11580817 +washerman|11580904 +washerwoman|11580941 +washhouse|11581002 +washing|11581029 +washing day|11581173 +washing machine|11581206 +washing powder|11581267 +washing soda|11581326 +washing-up|11581131 +washington|11581393 +washington d.c.|11581915 +washington irving|11582030 +washington monument|11582096 +washington's birthday|11581846 +washingtonian|11582171 +washout|11582480 +washrag|11582598 +washroom|11582655 +washstand|11582717 +washtub|11582848 +washup|11582873 +washwoman|11582987 +washy|11583048 +waslaw nijinsky|11583156 +wasp|11583249 +wasp waist|11583530 +wasp's nest|11583402 +wasp-waisted|11583469 +waspish|11583566 +wasps' nest|11583621 +wassail|11583688 +wassailer|11583854 +wasserman reaction|11583980 +wassermann|11584079 +wassermann test|11584224 +wassily kandinsky|11584320 +wassily leontief|11584383 +wastage|11584461 +waste|11584509 +waste basket|11585683 +waste material|11585859 +waste matter|11585931 +waste of effort|11586003 +waste of energy|11586075 +waste of material|11586147 +waste of money|11586205 +waste of time|11586260 +waste one's time|11586314 +waste paper|11586482 +waste pipe|11586509 +waste product|11586564 +waste-paper basket|11585411 +waste-yard|11585506 +wastebasket|11586636 +wastebin|11586731 +wasted|11586836 +wasteful|11587086 +wastefully|11587258 +wastefulness|11587288 +wasteland|11587395 +wastepaper basket|11587443 +waster|11587538 +wastewater|11587644 +wasteweir|11587733 +wasteyard|11587775 +wasting|11587871 +wasting away|11587989 +wasting disease|11588035 +wasting time|11588138 +wastrel|11588201 +watch|11588256 +watch bracelet|11588780 +watch cap|11588849 +watch case|11588872 +watch chain|11588897 +watch crystal|11588940 +watch fire|11589031 +watch glass|11589065 +watch guard|11589168 +watch key|11589211 +watch night|11589241 +watch out|11589303 +watch over|11589337 +watch pocket|11589470 +watchband|11589508 +watchdog|11589577 +watcher|11589661 +watchful|11589835 +watchfully|11589930 +watchfulness|11589960 +watching|11590055 +watchmaker|11590120 +watchman|11590174 +watchstrap|11590221 +watchtower|11590290 +watchword|11590316 +water|11590484 +water arum|11591992 +water avens|11592073 +water back|11592157 +water bearer|11592222 +water bed|11592438 +water beetle|11592461 +water birch|11592490 +water bird|11592607 +water biscuit|11592741 +water bitternut|11592772 +water blister|11592860 +water boatman|11592902 +water bottle|11592944 +water boy|11592973 +water buffalo|11593032 +water bug|11593122 +water butt|11593243 +water buttercup|11593268 +water cabbage|11593384 +water caltrop|11593519 +water cannon|11593612 +water carpet|11593741 +water cart|11593830 +water chestnut|11593855 +water chestnut plant|11594035 +water chevrotain|11594143 +water chickweed|11594223 +water chinquapin|11594309 +water chute|11594404 +water clock|11594461 +water closet|11594510 +water clover|11594592 +water company|11594658 +water conservation|11594742 +water cooler|11594783 +water crowfoot|11594812 +water deer|11594928 +water development|11595008 +water dog|11595088 +water down|11595209 +water dragon|11595301 +water dropwort|11595511 +water elm|11595591 +water faucet|11595704 +water fennel|11595779 +water fern|11595835 +water filter|11595873 +water finder|11595902 +water flaxseed|11596055 +water flea|11596124 +water fountain|11596243 +water gage|11596302 +water gap|11596357 +water gas|11596384 +water gate|11596412 +water gauge|11596546 +water gillyflower|11596601 +water glass|11596691 +water gum|11596852 +water gun|11596905 +water hammer|11596971 +water hazard|11597029 +water heater|11597058 +water hemlock|11597144 +water hen|11597197 +water hickory|11597319 +water hole|11597407 +water horehound|11597437 +water horsetail|11597503 +water hyacinth|11597575 +water ice|11597708 +water jacket|11597757 +water jug|11597786 +water jump|11597809 +water lemon|11597843 +water lettuce|11597917 +water level|11598052 +water lily|11598226 +water line|11598301 +water lobelia|11598451 +water locust|11598500 +water main|11598573 +water mat|11598598 +water meter|11598687 +water milfoil|11598714 +water mill|11598792 +water mint|11598825 +water moccasin|11598958 +water mold|11599067 +water nymph|11599098 +water oak|11599304 +water of crystallisation|11599361 +water of crystallization|11599449 +water of hydration|11599537 +water on the knee|11599625 +water orchid|11599666 +water ouzel|11599799 +water ox|11599846 +water parsnip|11599936 +water parting|11600004 +water pill|11600049 +water pimpernel|11600097 +water pipe|11600177 +water pistol|11600304 +water plant|11600370 +water plantain|11600462 +water pollution|11600545 +water polo|11600580 +water pore|11600614 +water program|11600675 +water project|11600755 +water pump|11600835 +water rat|11600860 +water right|11600994 +water sapphire|11601036 +water scooter|11601087 +water scorpion|11601150 +water shamrock|11601184 +water shrew|11601327 +water skater|11601365 +water ski|11601423 +water skin|11601462 +water snake|11601578 +water softener|11601623 +water spaniel|11601656 +water speedwell|11601687 +water sport|11601814 +water sprite|11601860 +water star grass|11601991 +water starwort|11602104 +water stoma|11602183 +water strider|11602244 +water supply|11602302 +water system|11602365 +water table|11602449 +water tank|11602531 +water tap|11602577 +water thrush|11602652 +water tower|11602705 +water travel|11602736 +water trumpet|11602796 +water turkey|11602887 +water under the bridge|11602950 +water vapor|11603021 +water vapour|11603068 +water vascular system|11603115 +water violet|11603162 +water vole|11603228 +water waggon|11603355 +water wagon|11603402 +water wheel|11603449 +water wings|11603592 +water witch|11603655 +water yam|11603704 +water-base paint|11590838 +water-cooled|11590870 +water-cooled reactor|11590897 +water-lily family|11590951 +water-milfoil family|11591034 +water-mint|11591167 +water-plantain family|11591300 +water-rate|11591396 +water-repellent|11591423 +water-resistant|11591476 +water-shield|11591529 +water-shield family|11591640 +water-skiing|11591726 +water-soluble|11591769 +water-soluble vitamin|11591800 +water-target|11591839 +water-wash|11591904 +water-washed|11591937 +waterbird|11603763 +waterborne|11603816 +waterbuck|11603857 +waterbury|11603885 +watercannon|11603943 +watercolor|11603991 +watercolorist|11604128 +watercolour|11604174 +watercolourist|11604308 +watercourse|11604354 +watercraft|11604437 +watercress|11604509 +waterdog|11604597 +watered|11604648 +watered stock|11604739 +watered-silk|11604681 +waterer|11604768 +waterfall|11604876 +waterfinder|11604921 +waterford|11604993 +waterfowl|11605056 +waterfront|11605109 +watergate|11605143 +watergate scandal|11605206 +waterhouse-friderichsen syndrome|11605277 +wateriness|11605361 +watering|11605390 +watering can|11605509 +watering cart|11605554 +watering hole|11605588 +watering place|11605667 +watering pot|11605746 +waterleaf|11605791 +waterleaf family|11605832 +waterless|11605918 +waterlessness|11605946 +waterline|11606002 +waterlogged|11606049 +waterloo|11606080 +waterman|11606172 +watermark|11606212 +watermeal|11606274 +watermelon|11606302 +watermelon begonia|11606430 +watermelon vine|11606507 +watermelon-shaped|11606387 +waterpower|11606579 +waterproof|11606605 +waterproofed|11606733 +waterproofing|11606782 +waters|11606844 +watershed|11607301 +waterside|11607394 +waterskin|11607418 +waterspout|11607453 +watertight|11607574 +watertown|11607707 +waterway|11607763 +waterweed|11607824 +waterwheel|11607898 +waterwheel plant|11607961 +waterworks|11608027 +waterworn|11608133 +watery|11608157 +watery-eyed|11608283 +wats|11608329 +wats line|11608423 +watson|11608522 +watt|11608712 +watt second|11608883 +watt-hour|11608832 +wattage|11608944 +watteau|11608999 +wattle|11609056 +wattle and daub|11609211 +watts|11609254 +watusi|11609456 +watutsi|11609499 +waugh|11609543 +waul|11609622 +wausau|11609676 +wave|11609704 +wave angle|11610316 +wave equation|11610342 +wave form|11610387 +wave front|11610523 +wave guide|11610661 +wave mechanics|11610782 +wave number|11610824 +wave off|11610875 +wave shape|11610923 +wave theory|11610978 +wave theory of light|11611056 +wave train|11611134 +wave-off|11610213 +wave-particle duality|11610268 +waveband|11611161 +waveform|11611199 +wavefront|11611254 +waveguide|11611292 +wavelength|11611332 +wavelet|11611380 +wavelike|11611438 +wavell|11611493 +waver|11611595 +waverer|11611949 +wavering|11612004 +waving|11612169 +wavy|11612249 +wavy-leaved aster|11612317 +waw|11612350 +wawl|11612414 +wax|11612468 +wax bean|11612688 +wax begonia|11612785 +wax crayon|11612836 +wax figure|11612881 +wax insect|11612933 +wax light|11612966 +wax mallow|11613003 +wax moth|11613139 +wax myrtle|11613207 +wax palm|11613238 +wax paper|11613469 +wax plant|11613494 +wax-chandler|11612568 +wax-myrtle family|11612599 +waxberry|11613531 +waxed|11613745 +waxen|11613766 +waxflower|11613846 +waxing|11614048 +waxlike|11614123 +waxmallow|11614201 +waxwing|11614256 +waxwork|11614292 +waxy|11614458 +waxycap|11614571 +way|11614595 +way of life|11615084 +way out|11615138 +way station|11615181 +way-out|11615023 +waybill|11615323 +wayfarer|11615363 +wayfaring|11615442 +wayfaring tree|11615483 +wayland|11615556 +wayland the smith|11615622 +waylay|11615698 +wayne|11615771 +wayne gretzky|11615923 +ways|11616000 +ways and means|11616533 +ways and means committee|11616566 +wayside|11616644 +wayward|11616682 +wb|11616739 +wbc|11616789 +wbn|11616944 +wbs|11616995 +weak|11617091 +weak force|11617880 +weak interaction|11617953 +weak part|11618026 +weak point|11618074 +weak spot|11618104 +weak-kneed|11617849 +weaken|11618152 +weakened|11618387 +weakener|11618561 +weakening|11618585 +weakfish|11618759 +weakling|11618827 +weakly|11618911 +weakly interacting massive particle|11618976 +weakness|11619086 +weal|11619314 +weald|11619368 +wealth|11619402 +wealthiness|11619597 +wealthy|11619664 +wealthy man|11619716 +wealthy person|11619791 +wean|11619885 +weaned|11619958 +weaning|11619981 +weapon|11620044 +weapon of mass destruction|11620189 +weapon system|11620261 +weapon-grade plutonium|11620125 +weaponed|11620306 +weaponize|11620339 +weaponless|11620378 +weaponry|11620406 +weapons carrier|11620616 +weapons emplacement|11620681 +weapons platform|11620738 +weapons plutonium|11620796 +weapons system|11620860 +weapons-grade|11620550 +wear|11621047 +wear and tear|11621607 +wear away|11621658 +wear down|11621815 +wear off|11621921 +wear on|11622023 +wear out|11622061 +wear round|11622269 +wear ship|11622299 +wear the trousers|11622323 +wear thin|11622395 +wear upon|11622449 +wearable|11622555 +wearer|11622582 +wearied|11622603 +wearily|11622632 +weariness|11622656 +wearing|11622709 +wearing apparel|11622891 +wearing away|11622980 +wearisome|11623074 +weary|11623166 +weary willie|11623358 +wearying|11623439 +weasel|11623493 +weasel word|11623585 +weasel-worded|11623545 +weather|11623632 +weather bureau|11624010 +weather chart|11624074 +weather condition|11624113 +weather deck|11624193 +weather eye|11624239 +weather forecast|11624297 +weather forecaster|11624358 +weather forecasting|11624411 +weather map|11624503 +weather outlook|11624542 +weather radar|11624603 +weather satellite|11624690 +weather sheet|11624781 +weather ship|11624837 +weather side|11624877 +weather station|11624947 +weather strip|11625029 +weather stripping|11625081 +weather vane|11625133 +weather-beaten|11623870 +weather-bound|11623944 +weather-stripped|11623976 +weatherboard|11625281 +weatherboarding|11625391 +weathercock|11625446 +weathered|11625507 +weatherglass|11625558 +weatherliness|11625590 +weatherly|11625645 +weatherman|11625695 +weatherproof|11625748 +weatherstrip|11625800 +weathervane|11625863 +weatherworn|11625930 +weave|11625981 +weaver|11626199 +weaver finch|11626499 +weaver's broom|11626304 +weaver's hitch|11626365 +weaver's knot|11626432 +weaverbird|11626558 +weaving|11626617 +web|11626691 +web browser|11627044 +web log|11627128 +web page|11627164 +web site|11627201 +web spinner|11627347 +web-footed|11626932 +web-toed|11626968 +web-toed salamander|11627004 +webb|11627375 +webbed|11627552 +webbed foot|11627657 +webbing|11627690 +webbing clothes moth|11627749 +webbing moth|11627826 +webby|11627903 +webcam|11627986 +weber|11628017 +weber's law|11628353 +weber-fechner law|11628404 +webfoot|11628481 +weblike|11628515 +webster|11628598 +webworm|11628783 +webworm moth|11628812 +wed|11628863 +wedded|11629037 +weddell sea|11629065 +wedding|11629102 +wedding anniversary|11629279 +wedding band|11629339 +wedding cake|11629384 +wedding ceremony|11629421 +wedding chest|11629525 +wedding day|11629565 +wedding dress|11629590 +wedding gift|11629643 +wedding gown|11629689 +wedding guest|11629742 +wedding licence|11629779 +wedding license|11629877 +wedding march|11629975 +wedding night|11630035 +wedding party|11630079 +wedding pictures|11630116 +wedding present|11630172 +wedding reception|11630218 +wedding ring|11630255 +wedge|11630300 +wedge bone|11630806 +wedge heel|11630838 +wedge shape|11630869 +wedge-shaped|11630706 +wedged|11630930 +wedgie|11630963 +wedgwood|11630984 +wedlock|11631095 +wednesday|11631173 +wee|11631214 +wee-wee|11631515 +weed|11631683 +weed killer|11631880 +weed out|11632012 +weeded|11632057 +weeder|11632082 +weedkiller|11632157 +weedless|11632208 +weeds|11632242 +weedy|11632467 +week|11632540 +week from monday|11632678 +weekday|11632735 +weekend|11632797 +weekend warrior|11632866 +weekender|11632930 +weeklong|11633011 +weekly|11633034 +weeknight|11633163 +weeness|11633203 +weenie|11633287 +weenie roast|11633367 +weensy|11633410 +weeny|11633524 +weep|11633638 +weeper|11633689 +weepiness|11633783 +weeping|11633834 +weeping beech|11633972 +weeping love grass|11634050 +weeping spruce|11634137 +weeping tree broom|11634201 +weeping willow|11634235 +weepy|11634321 +weevil|11634344 +weewee|11634367 +weft|11634468 +wegener|11634512 +wei|11634572 +wei dynasty|11634609 +weigela|11634654 +weigela florida|11634698 +weigh|11634758 +weigh anchor|11634884 +weigh down|11634951 +weigh on|11635047 +weigh the anchor|11635083 +weighbridge|11635150 +weighed down|11635194 +weigher|11635279 +weighing|11635317 +weighing machine|11635373 +weight|11635460 +weight down|11635982 +weight gainer|11636032 +weight gaining|11636115 +weight unit|11636202 +weight-lift|11635845 +weighted|11636310 +weightiness|11636357 +weighting|11636395 +weightless|11636433 +weightlessness|11636464 +weightlift|11636505 +weightlifter|11636561 +weightlifting|11636603 +weighty|11636689 +weil|11636840 +weil's disease|11636920 +weill|11636985 +weimar|11637026 +weimar republic|11637078 +weimaraner|11637151 +weinberg|11637198 +weir|11637251 +weird|11637306 +weird sisters|11637420 +weirdie|11637501 +weirdness|11637582 +weirdo|11637654 +weirdy|11637783 +weisenheimer|11637864 +weismann|11637936 +weissbier|11638008 +weisshorn|11638063 +weizenbier|11638106 +weizenbock|11638169 +weizmann|11638232 +weka|11638328 +welcher|11638366 +welcome|11638465 +welcome mat|11638684 +welcome wagon|11638717 +welcomed|11638756 +welcomer|11638782 +welcoming|11638869 +welcoming committee|11638899 +weld|11638957 +welder|11639145 +welder's mask|11639200 +welding|11639228 +weldment|11639266 +welfare|11639293 +welfare case|11639494 +welfare state|11639534 +welfare work|11639563 +welfare worker|11639605 +welfare-statist|11639451 +welfarist|11639669 +welkin|11639712 +well|11639803 +well aware|11644194 +well behaved|11644224 +well endowed|11644344 +well enough|11644476 +well out|11644550 +well over|11644596 +well point|11644665 +well thought out|11644788 +well timed|11644845 +well up|11644984 +well water|11645058 +well-adjusted|11640226 +well-advised|11640272 +well-appointed|11640336 +well-balanced|11640390 +well-behaved|11640452 +well-being|11640572 +well-bound|11640746 +well-bred|11640772 +well-chosen|11640813 +well-conducted|11640851 +well-connected|11640885 +well-defined|11640938 +well-disposed|11641004 +well-done|11641046 +well-educated|11641072 +well-endowed|11641165 +well-favored|11641297 +well-favoured|11641393 +well-fed|11641489 +well-fixed|11641532 +well-formed|11641631 +well-found|11641664 +well-founded|11641718 +well-grooved|11641768 +well-grounded|11641822 +well-heeled|11641866 +well-informed|11641965 +well-intentioned|11642014 +well-kept|11642073 +well-knit|11642148 +well-known|11642183 +well-lighted|11642239 +well-lined|11642291 +well-made|11642316 +well-mannered|11642344 +well-marked|11642408 +well-matched|11642436 +well-meaning|11642477 +well-meant|11642566 +well-mined|11642625 +well-nigh|11642651 +well-nourished|11642733 +well-off|11642776 +well-ordered|11642892 +well-preserved|11642922 +well-proportioned|11642954 +well-qualified|11642989 +well-read|11643023 +well-rounded|11643132 +well-set|11643189 +well-shaven|11643224 +well-situated|11643286 +well-spoken|11643385 +well-stacked|11643417 +well-thought-of|11643461 +well-timed|11643506 +well-to-do|11643677 +well-tried|11643776 +well-turned|11643823 +well-wisher|11643870 +well-wishing|11643969 +well-worn|11644029 +well-written|11644154 +wellbeing|11645114 +wellborn|11645207 +wellerism|11645237 +welles|11645274 +wellhead|11645420 +wellington|11645516 +wellington boot|11645802 +wellness|11645889 +wellpoint|11645972 +wells|11646014 +wellspring|11646228 +welsh|11646326 +welsh black|11646537 +welsh corgi|11646609 +welsh onion|11646682 +welsh pony|11646777 +welsh poppy|11646813 +welsh rabbit|11646872 +welsh rarebit|11646934 +welsh springer spaniel|11646997 +welsh terrier|11647078 +welsher|11647163 +welshman|11647262 +welt|11647313 +weltanschauung|11647462 +welted thistle|11647538 +welter|11647586 +welterweight|11647704 +weltschmerz|11647829 +welty|11647889 +welwitschia|11647937 +welwitschia mirabilis|11647991 +welwitschiaceae|11648067 +wembley|11648149 +wen|11648188 +wen ch'ang|11648294 +wen-ti|11648246 +wench|11648346 +wencher|11648450 +wend|11648488 +wendy house|11648526 +werdnig-hoffman disease|11648571 +werewolf|11648683 +werfel|11648756 +werlhof's disease|11648806 +werner karl heisenberg|11648989 +wernher magnus maximilian von braun|11649073 +wernher von braun|11649221 +wernicke|11649351 +wernicke's aphasia|11649417 +wernicke's area|11649540 +wernicke's center|11649639 +wernicke's encephalopathy|11649740 +wesley|11649845 +wesleyan|11649981 +wesleyan methodist church|11650043 +wesleyan methodists|11650147 +wesleyanism|11650245 +wesleyism|11650302 +wessex|11650357 +west|11650452 +west africa|11650973 +west african|11651078 +west bank|11651216 +west bengal|11651317 +west berlin|11651365 +west berliner|11651412 +west by north|11651458 +west by south|11651505 +west chadic|11651552 +west coast|11651613 +west coast hemlock|11651716 +west country|11651816 +west end|11651923 +west germanic|11651964 +west germanic language|11652051 +west germany|11652147 +west highland white terrier|11652243 +west indian|11652316 +west indian cherry|11652358 +west indian jasmine|11652570 +west indian satinwood|11652668 +west indian smallpox|11652775 +west indian snowberry|11652950 +west indies|11653036 +west malaysia|11653092 +west midland|11653178 +west nile encephalitis|11653228 +west nile encephalitis virus|11653317 +west nile virus|11653411 +west northwest|11653492 +west pakistan|11653540 +west palm beach|11653642 +west point|11653688 +west saxon|11653741 +west side|11653866 +west southwest|11653890 +west sussex|11653938 +west tocharian|11653978 +west virginia|11654051 +west virginian|11654121 +west wind|11654169 +west yorkshire|11654227 +west-central|11650901 +west-sider|11650931 +westbound|11654273 +wester|11654315 +westerly|11654373 +western|11654499 +western australia|11654745 +western australia coral pea|11654807 +western ax|11654903 +western axe|11654988 +western balsam poplar|11655074 +western big-eared bat|11655175 +western birch|11655240 +western black-legged tick|11655371 +western blackberry|11655440 +western blind snake|11655526 +western box turtle|11655600 +western buttercup|11655688 +western chimpanzee|11655801 +western chokecherry|11655884 +western church|11656001 +western civilization|11656121 +western coral snake|11656222 +western crab apple|11656325 +western culture|11656438 +western dewberry|11656534 +western diamondback|11656620 +western diamondback rattlesnake|11656736 +western empire|11656864 +western fence lizard|11656996 +western gray squirrel|11657080 +western hemisphere|11657141 +western hemlock|11657199 +western holly fern|11657299 +western honey mesquite|11657361 +western islands|11657468 +western isles|11657578 +western kingbird|11657686 +western ladies' tresses|11657757 +western larch|11657843 +western lowland gorilla|11657932 +western malayo-polynesian|11658013 +western meadowlark|11658092 +western mountain ash|11658155 +western mugwort|11658237 +western narrow-mouthed toad|11658346 +western omelet|11658454 +western paper birch|11658490 +western pasqueflower|11658627 +western pipistrel|11658750 +western poison oak|11658832 +western poppy|11658920 +western prince's pine|11658970 +western ragweed|11659083 +western rattlesnake|11659176 +western red cedar|11659368 +western red-backed salamander|11659298 +western redbud|11659442 +western ribbon snake|11659515 +western roman empire|11659611 +western saddle|11659749 +western sahara|11659808 +western samoa|11659934 +western samoan monetary unit|11660038 +western sand cherry|11660119 +western sandwich|11660225 +western saxifrage|11660268 +western silvery aster|11660348 +western skink|11660407 +western spadefoot|11660480 +western tamarack|11660553 +western tanager|11660642 +western toad|11660695 +western united states|11660739 +western wall flower|11660869 +western wheatgrass|11660962 +western whiptail|11661051 +western white pine|11661123 +western wood pewee|11661204 +western yellow pine|11661305 +western yew|11661397 +westerner|11661466 +westernisation|11661522 +westernise|11661600 +westernization|11661679 +westernize|11661757 +westernmost|11661836 +westinghouse|11661871 +westland pine|11661956 +westminster|11662038 +westminster abbey|11662099 +westmost|11662152 +weston|11662187 +weston cell|11662245 +westside|11662305 +westward|11662328 +westwards|11662386 +wet|11662413 +wet bar|11663617 +wet behind the ears|11663638 +wet blanket|11663689 +wet cell|11663777 +wet dream|11663835 +wet fly|11663869 +wet lung|11663890 +wet nurse|11664021 +wet suit|11664248 +wet-bulb thermometer|11663272 +wet-nurse|11663314 +wetback|11664274 +wether|11664312 +wetland|11664334 +wetness|11664368 +wetnurse|11664402 +wetter|11664467 +wetting|11664630 +wetting agent|11664724 +weymouth pine|11664801 +whack|11664888 +whacked|11664970 +whacker|11664993 +whacking|11665024 +whacko|11665127 +whacky|11665202 +whale|11665461 +whale louse|11665588 +whale oil|11665618 +whale shark|11665658 +whale sucker|11665701 +whaleboat|11665867 +whalebone|11665895 +whalebone whale|11665926 +whaler|11665970 +whalesucker|11666074 +whaling gun|11666159 +whaling ship|11666184 +wham|11666218 +whammy|11666254 +whang|11666356 +whap|11666470 +wharf|11666512 +wharf rat|11666700 +wharfage|11666795 +wharton|11666849 +what for|11666930 +what is more|11666995 +whatchamacallit|11667037 +whatever|11667115 +whatever may come|11667153 +whatnot|11667226 +whatsis|11667339 +whatsoever|11667417 +wheal|11667455 +wheat|11667509 +wheat beer|11667711 +wheat berry|11667756 +wheat eel|11667830 +wheat eelworm|11667924 +wheat field|11668018 +wheat flag smut|11668154 +wheat flour|11668214 +wheat future|11668241 +wheat germ|11668270 +wheat gluten|11668363 +wheat rust|11668392 +wheat scab|11668447 +wheat-grass|11667592 +wheatear|11668479 +wheately elm|11668504 +wheaten|11668635 +wheatfield|11668697 +wheatflake|11668752 +wheatgrass|11668795 +wheatley|11668833 +wheatstone|11668882 +wheatstone bridge|11668976 +wheatworm|11669043 +wheedle|11669137 +wheedler|11669211 +wheedling|11669254 +wheel|11669308 +wheel and axle|11669652 +wheel around|11669682 +wheel bug|11669758 +wheel horse|11669816 +wheel lock|11669882 +wheel tree|11669927 +wheelbarrow|11669988 +wheelbase|11670069 +wheelchair|11670097 +wheeled|11670123 +wheeled vehicle|11670148 +wheeler|11670191 +wheeler dealer|11670453 +wheeler peak|11670518 +wheelhouse|11670567 +wheeling|11670610 +wheelless|11670702 +wheels|11670731 +wheelwork|11670976 +wheelwright|11671013 +wheeze|11671049 +wheezily|11671188 +wheeziness|11671216 +wheezing|11671244 +wheezingly|11671289 +wheezy|11671317 +whelk|11671381 +whelm|11671433 +whelp|11671552 +whelped|11671602 +when|11671624 +when first seen|11671642 +when the time comes|11671681 +whence|11671762 +where|11671787 +whereabout|11671810 +whereabouts|11671841 +whereat|11671888 +wherefor|11671914 +wherefore|11671941 +wherefrom|11671993 +whereto|11672018 +whereunto|11672044 +whereupon|11672070 +wherever|11672096 +wherewith|11672119 +wherewithal|11672149 +wherry|11672202 +whet|11672287 +whetstone|11672346 +whey|11672371 +whicker|11672434 +whidah|11672531 +whiff|11672596 +whiffer|11672820 +whiffletree|11672867 +whig|11672921 +whig party|11673079 +while|11673132 +while away|11673170 +whim|11673213 +whimper|11673292 +whimsey|11673356 +whimsical|11673508 +whimsicality|11673558 +whimsically|11673733 +whimsy|11673764 +whin|11673917 +whinberry|11674108 +whinchat|11674204 +whine|11674259 +whiner|11674451 +whiney|11674570 +whining|11674643 +whinny|11674729 +whinstone|11674827 +whiny|11674862 +whip|11674935 +whip hand|11675754 +whip scorpion|11675835 +whip snake|11675972 +whip through|11676108 +whip top|11676166 +whip up|11676233 +whip-round|11675418 +whip-scorpion|11675481 +whip-snake|11675618 +whipcord|11676287 +whiplash|11676347 +whiplash injury|11676427 +whiplike|11676485 +whipped cream|11676525 +whipper|11676556 +whipper-in|11676592 +whippersnapper|11676644 +whippet|11676722 +whipping|11676749 +whipping boy|11677050 +whipping cream|11677089 +whipping post|11677140 +whipping top|11677168 +whipple's penstemon|11677235 +whippletree|11677329 +whippoorwill|11677383 +whippy|11677459 +whipsaw|11677520 +whipstitch|11677615 +whipstitching|11677665 +whiptail|11677715 +whiptail lizard|11677768 +whir|11677821 +whirl|11677904 +whirl around|11678357 +whirlaway|11678397 +whirler|11678439 +whirligig|11678498 +whirligig beetle|11678656 +whirling|11678689 +whirling dervish|11678785 +whirlpool|11678827 +whirlwind|11678928 +whirlybird|11678957 +whirr|11679029 +whirring|11679153 +whish|11679206 +whisk|11679261 +whisk away|11679421 +whisk broom|11679501 +whisk by|11679534 +whisk fern|11679611 +whisk off|11679641 +whisker|11679749 +whisker jack|11679930 +whiskered|11680010 +whiskerless|11680084 +whiskers|11680129 +whiskery|11680310 +whiskey|11680384 +whiskey bottle|11680481 +whiskey jug|11680512 +whiskey neat|11680537 +whiskey on the rocks|11680577 +whiskey sour|11680633 +whisky|11680672 +whisky neat|11680769 +whisky on the rocks|11680809 +whisky sour|11680865 +whisper|11680904 +whispered|11681061 +whisperer|11681099 +whispering|11681163 +whispering bells|11681299 +whispering campaign|11681406 +whispering dome|11681503 +whispering gallery|11681552 +whist|11681601 +whist drive|11681655 +whistle|11681695 +whistle blower|11682325 +whistle buoy|11682557 +whistle stop|11682608 +whistle-blower|11682053 +whistle-stop tour|11682285 +whistleblower|11682729 +whistler|11682799 +whistlestop|11683057 +whistling|11683091 +whistling buoy|11683174 +whistling marmot|11683225 +whistling swan|11683297 +whit|11683383 +whit leather|11683571 +whit-tuesday|11683507 +white|11683615 +white admiral|11687123 +white alder|11687354 +white anglo-saxon protestant|11687503 +white ant|11687615 +white ash|11687649 +white aspen|11687804 +white avens|11687910 +white backlash|11687996 +white baneberry|11688039 +white basswood|11688146 +white bead|11688243 +white bean|11688350 +white bedstraw|11688401 +white beech|11688510 +white beer|11688607 +white birch|11688652 +white blood cell|11688719 +white blood corpuscle|11688870 +white book|11689021 +white bread|11689081 +white broom|11689145 +white bryony|11689226 +white burgundy|11689290 +white cake|11689371 +white camas|11689396 +white campion|11689456 +white cedar|11689578 +white cell|11689791 +white chocolate|11689942 +white cinnamon|11689977 +white cinnamon tree|11690027 +white clover|11690112 +white cockle|11690188 +white cohosh|11690310 +white corpuscle|11690417 +white crappie|11690568 +white croaker|11690617 +white currant|11690728 +white cypress|11690786 +white cypress pine|11690921 +white daisy|11691002 +white dead nettle|11691126 +white dipladenia|11691178 +white dog's-tooth violet|11691256 +white dogtooth violet|11691390 +white dwarf|11691524 +white dwarf star|11691567 +white elephant|11691610 +white elm|11691684 +white fairy lantern|11691764 +white false indigo|11691853 +white feather|11691922 +white feldspar|11692004 +white fir|11692058 +white flag|11692246 +white fox|11692285 +white friar|11692334 +white fringed orchid|11692393 +white fringed orchis|11692494 +white fritillary|11692595 +white fungus|11692669 +white globe lily|11692716 +white gold|11692805 +white goods|11692837 +white heat|11692936 +white heather|11692986 +white hellebore|11693036 +white honeysuckle|11693142 +white hope|11693273 +white horehound|11693315 +white horse|11693385 +white horse nettle|11693470 +white house|11693642 +white knight|11693750 +white lead|11693780 +white lead ore|11693823 +white leather|11693865 +white leg|11693909 +white lettuce|11693971 +white lie|11694051 +white lily|11694088 +white line|11694241 +white lotus|11694306 +white lung|11694390 +white lupine|11694521 +white madder|11694609 +white magic|11694718 +white maire|11694745 +white mallee|11694793 +white mallow|11694854 +white man|11694933 +white man's burden|11694996 +white mangrove|11695055 +white marlin|11695140 +white matsutake|11695194 +white matter|11695247 +white meat|11695313 +white melilot|11695364 +white metal|11695452 +white milkweed|11695499 +white mountain ash|11695560 +white mulberry|11695647 +white mullein|11695705 +white mullet|11695782 +white mustard|11695836 +white nile|11695895 +white noise|11695937 +white oak|11695982 +white onion sauce|11696014 +white pages|11696055 +white paper|11696132 +white pelican|11696192 +white people|11696249 +white pepper|11696330 +white perch|11696466 +white person|11696540 +white pine|11696631 +white pine blister rust|11696688 +white plague|11696755 +white popinac|11696924 +white poplar|11697000 +white potato|11697167 +white potato vine|11697319 +white pox|11697389 +white prairie aster|11697543 +white race|11697593 +white rhinoceros|11697672 +white rice|11697749 +white river|11697788 +white rocket|11697833 +white room|11697898 +white russia|11697934 +white russian|11698062 +white rust|11698133 +white sage|11698160 +white sale|11698269 +white sanicle|11698320 +white sauce|11698420 +white sea|11698471 +white separatism|11698513 +white separatist|11698562 +white shark|11698613 +white sheep|11698717 +white silk-cotton tree|11698792 +white slave|11698930 +white slaver|11699077 +white slime mushroom|11699132 +white snakeroot|11699177 +white snapdragon|11699277 +white spanish broom|11699339 +white spruce|11699440 +white squire|11699482 +white stork|11699517 +white stringybark|11699560 +white sturgeon|11699647 +white supremacist|11699786 +white supremacy|11699825 +white sweet clover|11699857 +white tai|11699945 +white tail|11699978 +white thistle|11700171 +white tie|11700311 +white tie and tails|11700465 +white titi|11700604 +white trash|11700675 +white trumpet lily|11700753 +white turnip|11700830 +white violet|11700900 +white vitriol|11701046 +white walnut|11701126 +white water|11701208 +white wax tree|11701240 +white whale|11701304 +white willow|11701362 +white wine|11701432 +white wolf|11701462 +white woman|11701521 +white wood aster|11701590 +white yam|11701645 +white zinnia|11701704 +white-alder family|11684595 +white-bellied swallow|11684677 +white-berry yew|11684749 +white-bread|11684798 +white-breasted nuthatch|11684832 +white-chinned petrel|11684904 +white-coat hypertension|11684968 +white-collar|11685034 +white-crowned sparrow|11685111 +white-faced hornet|11685183 +white-footed mouse|11685253 +white-haired|11685325 +white-headed stilt|11685463 +white-heart hickory|11685592 +white-hot|11685716 +white-leaved rockrose|11685756 +white-lipped|11685821 +white-lipped peccary|11685850 +white-livered|11685912 +white-man's foot|11686010 +white-out|11686131 +white-pine rust|11686181 +white-rayed mule's ears|11686248 +white-rumped shrike|11686326 +white-shoe|11686401 +white-stemmed filaree|11686431 +white-tailed deer|11686529 +white-tailed jackrabbit|11686641 +white-tailed kite|11686722 +white-tailed sea eagle|11686770 +white-throated sparrow|11686874 +white-tie|11686959 +white-tipped shark|11686985 +white-topped aster|11687088 +whitebait|11701773 +whitebark pine|11701818 +whitebarked pine|11701887 +whitecap|11701956 +whitecup|11702004 +whited sepulcher|11702088 +whited sepulchre|11702175 +whiteface|11702262 +whitefish|11702341 +whitefly|11702441 +whitehall|11702489 +whitehead|11702556 +whitehorse|11702667 +whitelash|11702717 +whiteman's foot|11702760 +whiten|11702881 +whitened|11702935 +whitener|11702980 +whiteness|11703043 +whitening|11703103 +whiteout|11703149 +whitetail|11703181 +whitetail antelope squirrel|11703293 +whitetail deer|11703419 +whitetail jackrabbit|11703531 +whitetail prairie dog|11703612 +whitethorn|11703688 +whitethroat|11703782 +whitetip shark|11703967 +whitewash|11704130 +whitewashed|11704313 +whitewood|11704342 +whitey|11704418 +whitherso|11704483 +whithersoever|11704515 +whiting|11704547 +whitish|11704778 +whitlavia|11704845 +whitlow|11704954 +whitlow grass|11704987 +whitlowwort|11705051 +whitman|11705097 +whitmonday|11705181 +whitney|11705238 +whitney moore young jr.|11705370 +whitney young|11705509 +whitsun|11705638 +whitsun monday|11705691 +whitsun tuesday|11705752 +whitsunday|11705819 +whitsuntide|11705872 +whittier|11705929 +whittle|11705985 +whittle away|11706011 +whittle down|11706063 +whittler|11706115 +whitweek|11706170 +whiz|11706224 +whiz-kid|11706398 +whizbang|11706467 +whizz|11706545 +whizz along|11706840 +whizz-kid|11706771 +whizzbang|11706914 +who|11706991 +whodunit|11707066 +whole|11707112 +whole blood|11707562 +whole caboodle|11707589 +whole gale|11707775 +whole kit|11707800 +whole kit and boodle|11707986 +whole kit and caboodle|11708172 +whole life insurance|11708358 +whole lot|11708466 +whole meal bread|11708706 +whole meal flour|11708804 +whole milk|11708880 +whole name|11708905 +whole note|11708938 +whole number|11708991 +whole rest|11709028 +whole shebang|11709053 +whole slew|11709239 +whole snipe|11709479 +whole step|11709539 +whole thing|11709606 +whole to part relation|11709661 +whole tone|11709720 +whole wheat bread|11709787 +whole wheat flour|11709885 +whole works|11709961 +whole-souled|11707401 +whole-wheat|11707456 +whole-word method|11707518 +wholehearted|11710147 +wholeheartedness|11710202 +wholemeal|11710288 +wholeness|11710350 +wholesale|11710431 +wholesale house|11710568 +wholesale price index|11710692 +wholesaler|11710768 +wholesome|11710829 +wholesomeness|11711060 +wholly|11711091 +whomp|11711155 +whomp up|11711230 +whoop|11711284 +whoop it up|11711421 +whoopee|11711521 +whooper|11711552 +whooper swan|11711644 +whooping cough|11711693 +whooping crane|11711807 +whoosh|11711860 +whop|11711956 +whopper|11712027 +whopping|11712092 +whore|11712153 +whoredom|11712426 +whorehouse|11712477 +whoremaster|11712615 +whoremonger|11712741 +whoreson|11712867 +whorl|11713106 +whorled|11713262 +whorled aster|11713406 +whorled caraway|11713452 +whorled loosestrife|11713497 +whorled milkweed|11713561 +whorlywort|11713628 +whortleberry|11713751 +why|11713888 +whydah|11713940 +wi|11714005 +wichita|11714058 +wichita falls|11714179 +wick|11714245 +wicked|11714282 +wickedly|11715018 +wickedness|11715042 +wicker|11715240 +wicker basket|11715305 +wickerwork|11715346 +wicket|11715399 +wicket door|11715562 +wicket gate|11715607 +wicket-keeper|11715529 +wickiup|11715652 +wickliffe|11715695 +wickup|11715846 +wiclif|11715942 +wicopy|11716090 +widal test|11716240 +widal's test|11716175 +wide|11716303 +wide area network|11717603 +wide of the mark|11717651 +wide screen|11717693 +wide wale|11717753 +wide-angle|11716909 +wide-angle lens|11716961 +wide-awake|11717024 +wide-body|11717083 +wide-body aircraft|11717168 +wide-cut|11717253 +wide-eyed|11717287 +wide-open|11717379 +wide-ranging|11717443 +wide-screen|11717497 +wide-spreading|11717529 +wideband|11717786 +widebody aircraft|11717818 +widegrip pushup|11717903 +widely|11717944 +widely distributed|11717964 +widen|11718005 +wideness|11718120 +widening|11718162 +widespread|11718279 +widgeon|11718336 +widget|11718379 +widow|11718467 +widow bird|11718689 +widow woman|11718754 +widow's peak|11718539 +widow's walk|11718576 +widow's weeds|11718652 +widowed|11718800 +widower|11718834 +widowhood|11718875 +widowman|11718929 +width|11718970 +wieland|11719003 +wield|11719069 +wieldy|11719143 +wiener|11719177 +wiener roast|11719300 +wiener schnitzel|11719343 +wienerwurst|11719401 +wiesbaden|11719481 +wiesel|11719572 +wiesenboden|11719662 +wiesenthal|11719693 +wife|11719755 +wifelike|11719849 +wifely|11719882 +wiffle|11719922 +wiffle ball|11719962 +wifi|11720007 +wig|11720100 +wig tree|11720202 +wigeon|11720275 +wigged|11720318 +wigging|11720368 +wiggle|11720433 +wiggle nail|11720529 +wiggle room|11720605 +wiggler|11720638 +wiggliness|11720877 +wiggling|11720912 +wiggly|11720990 +wight|11721106 +wigless|11721228 +wigmaker|11721253 +wigner|11721284 +wigwag|11721358 +wigwam|11721436 +wikiup|11721471 +wilbur wright|11721514 +wild|11721588 +wild angelica|11722350 +wild apple|11722412 +wild ass|11722464 +wild basil|11722486 +wild bean|11722583 +wild bergamot|11722724 +wild bill hickock|11722777 +wild blue yonder|11722868 +wild boar|11722921 +wild buckwheat|11722962 +wild cabbage|11723039 +wild calla|11723106 +wild card|11723187 +wild carrot|11723233 +wild cavy|11723309 +wild celery|11723356 +wild chamomile|11723519 +wild cherry|11723646 +wild cherry tree|11723716 +wild chervil|11723773 +wild china tree|11723851 +wild cinnamon|11723956 +wild clary|11724106 +wild climbing hempweed|11724178 +wild coffee|11724286 +wild cotton|11724389 +wild crab|11724469 +wild cranberry|11724537 +wild crocus|11724706 +wild dog|11724896 +wild duck|11724927 +wild emmer|11724951 +wild fig|11725023 +wild flower|11725134 +wild garlic|11725282 +wild geranium|11725440 +wild ginger|11725525 +wild goat|11725568 +wild hollyhock|11725607 +wild hop|11725719 +wild horse|11725777 +wild hyacinth|11725818 +wild hydrangea|11726009 +wild indigo|11726065 +wild leek|11726126 +wild licorice|11726249 +wild lily of the valley|11726470 +wild liquorice|11726594 +wild lupine|11726779 +wild madder|11726881 +wild man|11726990 +wild mandrake|11727045 +wild mango|11727130 +wild mango tree|11727202 +wild marjoram|11727274 +wild meadow lily|11727366 +wild medlar|11727455 +wild medlar tree|11727524 +wild morning-glory|11727593 +wild mustard|11727734 +wild oat|11727828 +wild oat grass|11727877 +wild oats|11727926 +wild olive|11728020 +wild onion|11728069 +wild orange|11728106 +wild ox|11728281 +wild pansy|11728308 +wild parsley|11728408 +wild parsnip|11728461 +wild pea|11728520 +wild peach|11728562 +wild peanut|11728613 +wild pink|11728694 +wild pitch|11728813 +wild plum|11728848 +wild plum tree|11728926 +wild potato|11728975 +wild potato vine|11729017 +wild pumpkin|11729154 +wild quinine|11729290 +wild radish|11729387 +wild rape|11729468 +wild raspberry|11729549 +wild red oat|11729629 +wild rice|11729683 +wild rosemary|11729782 +wild rye|11729841 +wild sage|11729865 +wild sarsaparilla|11729937 +wild sarsparilla|11730037 +wild senna|11730137 +wild sensitive plant|11730216 +wild service tree|11730337 +wild sheep|11730439 +wild snapdragon|11730465 +wild spinach|11730552 +wild spurge|11730797 +wild strawberry|11730877 +wild sweet pea|11730944 +wild sweet potato vine|11731017 +wild tamarind|11731154 +wild teasel|11731292 +wild thyme|11731354 +wild tobacco|11731412 +wild vanilla|11731475 +wild water lemon|11731540 +wild west|11731645 +wild west show|11731701 +wild wheat|11731775 +wild wilkworm|11731847 +wild winterpea|11731906 +wild yam|11731992 +wild yellow lily|11732036 +wild-eyed|11722235 +wild-goose chase|11722300 +wildcat|11732125 +wildcat strike|11732350 +wildcat well|11732395 +wildcatter|11732440 +wilde|11732467 +wilde dagga|11732551 +wildebeest|11732639 +wilder|11732672 +wilderness|11732856 +wilderness campaign|11732953 +wildfire|11733029 +wildflower|11733069 +wildfowl|11733136 +wilding|11733164 +wildlife|11733236 +wildness|11733259 +wile|11733433 +wiley post|11733534 +wilful|11733606 +wilfully|11733765 +wilfulness|11733792 +wilhelm apollinaris de kostrowitzki|11733880 +wilhelm eduard weber|11734000 +wilhelm grimm|11734067 +wilhelm ii|11734143 +wilhelm karl grimm|11734208 +wilhelm konrad roentgen|11734289 +wilhelm konrad rontgen|11734396 +wilhelm ostwald|11734502 +wilhelm reich|11734559 +wilhelm richard wagner|11734624 +wilhelm von opel|11734710 +wiliness|11734772 +wilkes|11734891 +wilkes land|11735013 +wilkie collins|11735118 +wilkins|11735202 +wilkins micawber|11735431 +wilkinson|11735534 +will|11735594 +will durant|11736038 +will hays|11736125 +will keith kellog|11736197 +will rogers|11736282 +will-o'-the-wisp|11735877 +willa cather|11736367 +willa sibert cather|11736443 +willamette|11736526 +willamette river|11736580 +willard|11736640 +willard frank libby|11736782 +willard huntington wright|11736845 +willard van orman quine|11736942 +willebrand|11737050 +willem de kooning|11737198 +willem de sitter|11737262 +willem einthoven|11737345 +willet|11737411 +willful|11737463 +willful neglect|11737620 +willfully|11737703 +willfulness|11737730 +william a. craigie|11737818 +william and mary|11737930 +william augustus|11737994 +william averell harriman|11738107 +william beaumont|11738232 +william benjamin hogan|11738319 +william blake|11738418 +william bligh|11738474 +william bradford|11738552 +william bradford shockley|11738621 +william burroughs|11738718 +william butler yeats|11738833 +william butterfield|11738928 +william byrd|11739008 +william carlos williams|11739066 +william caxton|11739137 +william chambers|11739200 +william christopher handy|11739292 +william claire menninger|11739380 +william clark|11739501 +william clark gable|11739564 +william claude dukenfield|11739674 +william cowper|11739770 +william crawford gorgas|11739885 +william crookes|11739984 +william curtis|11740071 +william cuthbert faulkner|11740154 +william dawes|11740274 +william dean howells|11740347 +william dudley haywood|11740420 +william edward burghardt du bois|11740523 +william ewart gladstone|11740685 +william f. cody|11740802 +william falkner|11740930 +william faulkner|11741040 +william felton russell|11741151 +william franklin graham|11741234 +william frederick cody|11741352 +william fulbright|11741487 +william gilbert|11741574 +william gladstone|11741778 +william golding|11741889 +william graham sumner|11741979 +william green|11742051 +william h. bonney|11742107 +william harrison dempsey|11742213 +william harrison hays|11742335 +william harvey|11742419 +william hazlitt|11742525 +william henry|11742590 +william henry beveridge|11742641 +william henry fox talbot|11742756 +william henry gates|11742884 +william henry harrison|11742994 +william henry hoover|11743191 +william henry hudson|11743278 +william henry mauldin|11743378 +william henry pratt|11743463 +william henry seward|11743577 +william herschel|11743676 +william hogarth|11743813 +william holman hunt|11743882 +william holmes mcguffey|11743963 +william hoover|11744048 +william howard taft|11744129 +william hubbs rehnquist|11744279 +william hyde wollaston|11744384 +william i|11744467 +william ii|11744556 +william iii|11744639 +william inge|11744728 +william iv|11744789 +william james|11744874 +william james durant|11744942 +william jefferson clinton|11745038 +william jennings bryan|11745219 +william john clifton haley jr.|11745385 +william kidd|11745483 +william lawrence shirer|11745571 +william le baron jenny|11745646 +william lloyd garrison|11745726 +william makepeace thackeray|11745819 +william maxwell aitken|11745908 +william mckinley|11746068 +william menninger|11746220 +william mitchell|11746334 +william morris|11746458 +william nunn lipscom jr.|11746548 +william of occam|11746624 +william of ockham|11746710 +william of orange|11746797 +william of wykeham|11746892 +william patterson|11747027 +william penn|11747111 +william penn adair rogers|11747165 +william pitt|11747264 +william ralph inge|11747470 +william randolph hearst|11747586 +william rehnquist|11747680 +william richard morris|11747779 +william rose benet|11747905 +william rowan hamilton|11747972 +william rufus|11748077 +william s. burroughs|11748163 +william s. gilbert|11748281 +william saroyan|11748412 +william schwenk gilbert|11748475 +william seward burroughs|11748611 +william shakespeare|11748805 +william shakspere|11748929 +william shockley|11749051 +william somerset maugham|11749139 +william stanley jevons|11749257 +william strickland|11749366 +william stubbs|11749443 +william styron|11749515 +william sydney porter|11749575 +william tatem tilden jr.|11749658 +william tecumseh sherman|11749754 +william tell|11749842 +william the conqueror|11749896 +william thompson|11749997 +william thornton|11750076 +william tindal|11750147 +william tindale|11750280 +william tyndale|11750414 +william wilkie collins|11750548 +william wordsworth|11750640 +william wycherley|11750703 +william wyler|11750779 +william wymark jacobs|11750869 +williams|11750956 +williams syndrome|11751470 +williamstown|11751524 +willie howard mays jr.|11751564 +willie mays|11751679 +willies|11751783 +willing|11751843 +willing and able|11752109 +willingly|11752143 +willingness|11752174 +willow|11752219 +willow aster|11752326 +willow bell|11752354 +willow family|11752442 +willow oak|11752517 +willow tree|11752566 +willow-pattern|11752275 +willowherb|11752599 +willowware|11752641 +willowy|11752692 +willpower|11752726 +willy brandt|11752945 +willy-nilly|11752849 +wilmington|11753019 +wilms tumour|11753212 +wilms' tumor|11753102 +wilmut|11753322 +wilno|11753367 +wilson|11753437 +wilson cloud chamber|11754830 +wilson's blackcap|11754147 +wilson's disease|11754257 +wilson's phalarope|11754494 +wilson's snipe|11754571 +wilson's thrush|11754645 +wilson's warbler|11754721 +wilsonia pusilla|11754911 +wilsonian|11755020 +wilt|11755129 +wilt disease|11755247 +wilted|11755288 +wilting|11755315 +wilton|11755347 +wilton carpet|11755405 +wily|11755470 +wimble|11755559 +wimbledon|11755606 +wimp|11755665 +wimpish|11755825 +wimple|11755874 +wimpy|11755909 +wimshurst machine|11755958 +win|11756091 +win back|11756324 +win over|11756363 +wince|11756407 +wincey|11756586 +winceyette|11756632 +winch|11756664 +winchester|11756726 +winchester college|11756810 +winchester drive|11756871 +winckelmann|11756953 +wind|11757073 +wind bells|11757890 +wind cave national park|11757956 +wind chimes|11758027 +wind cone|11758093 +wind deflection|11758168 +wind energy facility|11758230 +wind exposure|11758317 +wind farm|11758357 +wind gage|11758444 +wind gap|11758496 +wind gauge|11758522 +wind generation|11758574 +wind generator|11758629 +wind harp|11758686 +wind instrument|11758736 +wind off|11758796 +wind park|11758842 +wind poppy|11758929 +wind power|11759016 +wind rose|11759071 +wind scale|11759116 +wind sleeve|11759209 +wind sock|11759331 +wind tee|11759465 +wind tunnel|11759523 +wind turbine|11759567 +wind up|11759597 +wind vane|11759774 +windage|11759841 +windaus|11759982 +windbag|11760029 +windblown|11760066 +windbreak|11760093 +windbreaker|11760139 +windburn|11760192 +windburned|11760219 +windburnt|11760259 +windcheater|11760299 +winded|11760352 +winder|11760472 +windfall|11760549 +windfall profit|11760683 +windflower|11760764 +windhoek|11760799 +windily|11760843 +windiness|11760891 +winding|11760932 +winding-clothes|11761069 +winding-sheet|11761144 +windjammer|11761219 +windlass|11761267 +windless|11761306 +windlessness|11761329 +windmill|11761370 +windmill grass|11761447 +window|11761536 +window blind|11761882 +window box|11761917 +window cleaner|11761941 +window dresser|11761973 +window dressing|11762051 +window envelope|11762136 +window frame|11762170 +window glass|11762216 +window lock|11762281 +window oyster|11762331 +window pane|11762402 +window sash|11762691 +window screen|11762741 +window seat|11762771 +window shade|11762798 +window trimmer|11762833 +window washer|11762911 +window-dress|11761744 +window-shop|11761803 +window-washing|11761836 +windowpane|11762941 +windowpane oyster|11763063 +windowsill|11763134 +windpipe|11763159 +windscreen|11763204 +windscreen wiper|11763242 +windshield|11763321 +windshield wiper|11763359 +windsock|11763438 +windsor|11763513 +windsor chair|11763607 +windsor green|11763670 +windsor knot|11763720 +windsor tie|11763764 +windstorm|11763809 +windsurf|11763848 +windswept|11763871 +windtalker|11763903 +windup|11763997 +windward|11764099 +windward islands|11764173 +windward isles|11764243 +windward passage|11764311 +windward side|11764362 +windy|11764432 +windy city|11764515 +wine|11764588 +wine and dine|11764826 +wine bar|11764882 +wine barrel|11764904 +wine bottle|11764947 +wine bucket|11764975 +wine cask|11765020 +wine cellar|11765063 +wine cooler|11765105 +wine lover|11765150 +wine maker|11765216 +wine merchant|11765379 +wine palm|11765432 +wine sauce|11765610 +wine steward|11765636 +wine taster|11765694 +wine tasting|11765756 +wine vinegar|11765799 +wine waiter|11765836 +wine-colored|11764730 +wine-maker's yeast|11764766 +wineberry|11765894 +wineglass|11766050 +wineglass heel|11766090 +winemaker|11766119 +winemaking|11766170 +winepress|11766214 +winery|11766256 +winesap|11766300 +wineskin|11766352 +winey|11766375 +winfield scott|11766404 +winfred|11766470 +wing|11766577 +wing case|11767117 +wing chair|11767149 +wing commander|11767211 +wing elm|11767275 +wing flat|11767329 +wing loading|11767362 +wing nut|11767392 +wing screw|11767563 +wing shooting|11767628 +wing tip|11767660 +wing-nut|11766899 +wing-shaped|11767070 +wingback|11767697 +winged|11767732 +winged bean|11767878 +winged elm|11767978 +winged everlasting|11768032 +winged pea|11768085 +winged pigweed|11768249 +winged spindle tree|11768321 +winger|11768411 +wingless|11768440 +winglike|11768495 +wingman|11768520 +wings|11768558 +wingspan|11768931 +wingspread|11768976 +wingstem|11769044 +wink|11769196 +wink at|11769739 +winker|11769807 +winking|11769912 +winkle|11770107 +winkle out|11770283 +winless|11770342 +winnebago|11770372 +winner|11770454 +winner's circle|11770590 +winning|11770628 +winning post|11770734 +winning streak|11770767 +winnings|11770802 +winnipeg|11770870 +winnow|11770951 +winnowing|11771095 +winslow|11771140 +winslow homer|11771197 +winsome|11771248 +winsomely|11771276 +winsomeness|11771305 +winston churchill|11771419 +winston s. churchill|11771579 +winston-salem|11771353 +winter|11771742 +winter aconite|11772027 +winter cherry|11772091 +winter cress|11772276 +winter crookneck|11772361 +winter crookneck squash|11772464 +winter currant|11772588 +winter fern|11772650 +winter flounder|11772772 +winter flowering cherry|11772921 +winter hazel|11773005 +winter heath|11773054 +winter heliotrope|11773119 +winter jasmine|11773203 +winter melon|11773255 +winter melon vine|11773427 +winter mushroom|11773570 +winter olympic games|11773623 +winter olympics|11773722 +winter purslane|11773816 +winter rose|11773904 +winter savory|11773983 +winter savoury|11774084 +winter solstice|11774137 +winter squash|11774171 +winter squash plant|11774247 +winter sweet|11774309 +winter urn|11774653 +winter wren|11774689 +winter's bark|11771807 +winter's bark family|11771881 +winter's bark tree|11771965 +wintera|11774750 +wintera colorata|11774845 +winteraceae|11774935 +winterberry|11775031 +wintergreen|11775092 +wintergreen family|11775316 +wintergreen oil|11775396 +winterise|11775499 +winterize|11775565 +wintertime|11775631 +wintery|11775678 +wintry|11775725 +wintun|11775824 +winy|11775878 +wipe|11775907 +wipe away|11775991 +wipe off|11776050 +wipe out|11776161 +wipe up|11776471 +wiped out|11776562 +wipeout|11776653 +wiper|11776743 +wiper arm|11776882 +wiper blade|11776936 +wiper motor|11777015 +wire|11777051 +wire cloth|11777587 +wire cutter|11777637 +wire gage|11777668 +wire gauge|11777709 +wire glass|11777750 +wire grass|11777776 +wire matrix printer|11777948 +wire printer|11778066 +wire recorder|11778184 +wire service|11778225 +wire wool|11778333 +wire-haired|11777322 +wire-haired fox terrier|11777357 +wire-haired pointing griffon|11777402 +wire-haired terrier|11777469 +wire-puller|11777534 +wired|11778399 +wirehair|11778500 +wirehaired terrier|11778565 +wireless|11778630 +wireless fidelity|11778853 +wireless local area network|11778941 +wireless telegraph|11779029 +wireless telegraphy|11779123 +wireless telephone|11779264 +wireman|11779394 +wirer|11779447 +wiretap|11779520 +wiretapper|11779614 +wirework|11779667 +wireworm|11779729 +wiring|11779753 +wiring diagram|11779847 +wiry|11779899 +wisconsin|11779931 +wisconsin river|11780030 +wisconsin weeping willow|11780087 +wisconsinite|11780217 +wisdom|11780261 +wisdom book|11780441 +wisdom literature|11780556 +wisdom of jesus the son of sirach|11780671 +wisdom of solomon|11780784 +wisdom tooth|11780841 +wise|11780877 +wise guy|11781302 +wise man|11781374 +wise men|11781422 +wise to|11781547 +wise up|11781586 +wiseacre|11781687 +wisecrack|11781759 +wisely|11781849 +wiseness|11781898 +wisenheimer|11781967 +wisent|11782039 +wish|11782083 +wish list|11782559 +wish well|11782591 +wish-wash|11782425 +wishbone|11782627 +wished-for|11782666 +wishful|11782716 +wishful thinker|11782768 +wishful thinking|11782834 +wishfulness|11782892 +wishing|11782930 +wishing bone|11782964 +wishing cap|11783003 +wishy-washy|11783028 +wisp|11783076 +wisplike|11783172 +wispy|11783206 +wistaria|11783282 +wister|11783314 +wisteria|11783363 +wisteria chinensis|11783395 +wisteria floribunda|11783477 +wisteria frutescens|11783562 +wisteria venusta|11783665 +wistful|11783741 +wistfulness|11783790 +wit|11783828 +witch|11784030 +witch alder|11784540 +witch broom|11784584 +witch doctor|11784653 +witch elm|11784712 +witch grass|11784766 +witch hazel|11785068 +witch's brew|11784205 +witch-hazel family|11784356 +witch-hunt|11784444 +witch-hunter|11784487 +witchcraft|11785148 +witchery|11785218 +witches' brew|11785288 +witches' broom|11785439 +witches' broth|11785508 +witches' butter|11785659 +witches' sabbath|11785716 +witchgrass|11785775 +witching|11785997 +witchlike|11786077 +with a rush|11786226 +with adroitness|11786286 +with all respect|11786319 +with ambition|11786357 +with an editorial|11786404 +with approval|11786458 +with attention|11786492 +with authority|11786544 +with bitterness|11786597 +with boldness|11786630 +with chemicals|11786659 +with child|11786693 +with compassion|11786770 +with competence|11786830 +with conceit|11786885 +with concern|11786935 +with confidence|11786968 +with consideration|11787004 +with convulsions|11787045 +with courtesy|11787083 +with cynicism|11787165 +with determination|11787197 +with diplomacy|11787262 +with efficiency|11787300 +with empathy|11787350 +with excitement|11787416 +with expertise|11787450 +with formality|11787497 +with full force|11787529 +with great care|11787559 +with greater reason|11787591 +with happiness|11787647 +with hostility|11787723 +with humor|11787770 +with humour|11787812 +with impatience|11787854 +with inspiration|11787890 +with kid gloves|11787931 +with longing|11787976 +with love|11788018 +with many interruptions|11788046 +with mercy|11788097 +with moderation|11788141 +with modesty|11788176 +with more reason|11788206 +with much to-do|11788262 +with nostalgia|11788299 +with ostentation|11788336 +with patience|11788384 +with pity|11788416 +with politeness|11788476 +with pride|11788558 +with reason|11788585 +with specific intentions|11788617 +with speculation|11788660 +with spite|11788699 +with success|11788729 +with sympathy|11788763 +with that|11788829 +with the wind|11788867 +with validity|11788898 +with wisdom|11788928 +with-it|11786109 +withal|11788977 +withdraw|11789072 +withdrawal|11789715 +withdrawal method|11789967 +withdrawal symptom|11790080 +withdrawer|11790116 +withdrawing|11790264 +withdrawing room|11790296 +withdrawn|11790350 +withdrawnness|11790420 +withe|11790509 +wither|11790563 +withered|11790672 +withering|11790795 +withers|11790935 +witherspoon|11790981 +withhold|11791080 +withholder|11791154 +withholding|11791256 +withholding tax|11791366 +within|11791414 +within reason|11791436 +without a stitch|11791514 +without aim|11791550 +without ambiguity|11791580 +without becoming upset|11791634 +without bias|11791691 +without bloodshed|11791728 +without checking|11791766 +without concern|11791800 +without consideration|11791854 +without delay|11791900 +without diplomacy|11791946 +without doubt|11791989 +without emotion|11792116 +without end|11792181 +without expression|11792211 +without favoring one party|11792246 +without favouring one party|11792334 +without fear|11792422 +without formality|11792476 +without graciousness|11792513 +without humor|11792589 +without humour|11792651 +without moderation|11792713 +without modesty|11792753 +without questioning|11792788 +without reasoning|11792837 +without showing responsibility|11792876 +without stopping|11792929 +without sympathy|11792961 +without thinking|11793004 +without worrying|11793048 +withstand|11793102 +withstander|11793242 +withy|11793373 +witless|11793415 +witloof|11793471 +witness|11793604 +witness box|11793975 +witness stand|11794014 +witnesser|11794053 +witold gombrowicz|11794163 +wits|11794233 +wittgenstein|11794476 +wittgensteinian|11794575 +witticism|11794627 +wittiness|11794714 +witting|11794801 +wittingly|11794858 +witty|11794886 +witwatersrand|11794920 +wive|11794979 +wivern|11795173 +wiz|11795213 +wizard|11795331 +wizardly|11795567 +wizardry|11795647 +wizen|11795714 +wizened|11795786 +wlan|11795858 +wmd|11795951 +wmo|11796027 +wnw|11796110 +woad|11796162 +woadwaxen|11796218 +wobble|11796324 +wobbler|11796427 +wobbling|11796450 +wobbly|11796477 +wodan|11796544 +wodehouse|11796589 +woden|11796675 +woe|11796720 +woebegone|11796820 +woeful|11796905 +woefully|11796997 +woefulness|11797042 +wog|11797105 +wok|11797151 +wold|11797180 +wolf|11797213 +wolf bean|11797676 +wolf boy|11797764 +wolf cub|11797801 +wolf down|11797841 +wolf fish|11797869 +wolf pack|11798002 +wolf pup|11798039 +wolf spider|11798079 +wolf's bane|11797500 +wolf's milk|11797568 +wolf-whistle|11797625 +wolfbane|11798122 +wolfe|11798190 +wolff|11798335 +wolffia|11798389 +wolffia columbiana|11798458 +wolffiella|11798530 +wolffiella gladiata|11798608 +wolffish|11798684 +wolfgang amadeus mozart|11798808 +wolfgang pauli|11798881 +wolfhound|11798944 +wolfish|11798979 +wolflike|11799091 +wolfman|11799129 +wolfram|11799202 +wolfram steel|11799270 +wolframite|11799320 +wolfsbane|11799372 +wollaston|11799440 +wollaston prism|11799510 +wollastonite|11799579 +wollemi pine|11799609 +wollstonecraft|11799668 +wolof|11799823 +wolstonian glaciation|11799857 +wolverine|11799921 +wolverine state|11800107 +woman|11800193 +woman chaser|11800660 +woman hater|11800739 +woman of the house|11800797 +woman of the street|11800882 +woman's body|11800386 +woman's doctor|11800449 +woman's hat|11800530 +woman-worship|11800577 +womanhood|11801036 +womanise|11801191 +womaniser|11801237 +womanish|11801321 +womanishness|11801366 +womanize|11801458 +womanizer|11801571 +womankind|11801655 +womanlike|11801681 +womanliness|11801758 +womanly|11801811 +womb|11801864 +womb-to-tomb|11801920 +wombat|11801956 +women's lib|11801997 +women's liberation movement|11802118 +women's liberationist|11802239 +women's rightist|11802341 +won|11802443 +won ton|11802611 +won-lost record|11802562 +wonder|11802766 +wonder bean|11803144 +wonder boy|11803218 +wonder child|11803264 +wonder flower|11803404 +wonder woman|11803484 +wonder-struck|11803112 +wonderberry|11803525 +wonderer|11803713 +wonderful|11803779 +wonderfully|11803889 +wonderfulness|11803986 +wondering|11804047 +wonderingly|11804110 +wonderland|11804144 +wonderment|11804254 +wonderworking|11804315 +wondrous|11804352 +wondrously|11804548 +wonk|11804645 +wonky|11804709 +wont|11804809 +wont to|11804883 +wonted|11804919 +wonton|11804971 +wonton soup|11805046 +woo|11805087 +wood|11805144 +wood alcohol|11806333 +wood anemone|11806404 +wood ant|11806518 +wood aster|11806567 +wood avens|11806593 +wood block|11806666 +wood chisel|11806719 +wood coal|11806747 +wood cudweed|11806843 +wood drake|11806905 +wood duck|11806971 +wood engraving|11807031 +wood fern|11807109 +wood file|11807314 +wood frog|11807343 +wood garlic|11807484 +wood grain|11807557 +wood hen|11807674 +wood hoopoe|11807712 +wood horsetail|11807750 +wood hyacinth|11807805 +wood ibis|11807920 +wood laurel|11808008 +wood lily|11808141 +wood meadowgrass|11808231 +wood mint|11808310 +wood mouse|11808351 +wood nettle|11808377 +wood nymph|11808425 +wood pewee|11808457 +wood pigeon|11808581 +wood poppy|11808642 +wood pulp|11808706 +wood pussy|11808730 +wood rabbit|11808800 +wood rat|11808868 +wood sage|11809005 +wood shavings|11809109 +wood sorrel|11809175 +wood spirit|11809232 +wood spurge|11809303 +wood stork|11809354 +wood strawberry|11809441 +wood sugar|11809508 +wood swallow|11809565 +wood tar|11809621 +wood thrush|11809653 +wood tick|11809702 +wood vinegar|11809779 +wood violet|11809826 +wood vise|11809979 +wood warbler|11810045 +wood widgeon|11810155 +wood's alloy|11805505 +wood's metal|11805565 +wood-creeper|11805625 +wood-fern|11805772 +wood-frog|11805977 +wood-rat|11806118 +wood-sorrel family|11806255 +woodbine|11810215 +woodborer|11810337 +woodbury|11810375 +woodcarver|11810456 +woodcarving|11810511 +woodchuck|11810540 +woodcock|11810590 +woodcock snipe|11810645 +woodcraft|11810753 +woodcreeper|11810822 +woodcut|11810888 +woodcutter|11810973 +wooded|11811030 +wooden|11811204 +wooden horse|11811349 +wooden leg|11811404 +wooden shoe|11811468 +wooden spoon|11811500 +wooden-headed|11811241 +woodenly|11811558 +woodenware|11811634 +woodfern|11811659 +woodgrain|11811702 +woodgraining|11811738 +woodhewer|11811775 +woodhull|11811841 +woodland|11811904 +woodland caribou|11812005 +woodland oxeye|11812101 +woodland star|11812156 +woodland white violet|11812243 +woodlet|11812326 +woodlouse|11812375 +woodman|11812408 +woodpecker|11812507 +woodpile|11812559 +woodrow charles herman|11812601 +woodrow wilson|11812709 +woodrow wilson guthrie|11812875 +woodruff|11813038 +woods|11813169 +woodscrew|11813581 +woodshed|11813606 +woodsia|11813629 +woodsia alpina|11813651 +woodsia glabella|11813746 +woodsia ilvensis|11813812 +woodsman|11813909 +woodsy|11814007 +woodward|11814072 +woodwardia|11814208 +woodwardia virginica|11814267 +woodwaxen|11814349 +woodwind|11814455 +woodwind instrument|11814519 +woodwork|11814583 +woodworker|11814661 +woodworking|11814737 +woodworking plane|11814789 +woodworking vise|11814860 +woodworm|11814926 +woody|11814949 +woody allen|11815118 +woody guthrie|11815272 +woody herman|11815426 +woody nightshade|11815524 +woody pear|11815673 +woody plant|11815736 +wooer|11815800 +woof|11815842 +woofer|11815886 +wooing|11815969 +wool|11816032 +wool fat|11816150 +wool grass|11816199 +wool grease|11816295 +wool oil|11816344 +wool stapler|11816373 +woolen|11816444 +woolf|11816547 +woolgather|11816628 +woolgatherer|11816708 +woolgathering|11816778 +woollcott|11816848 +woollen|11816936 +woolley|11817038 +woolly|11817138 +woolly adelgid|11817400 +woolly alder aphid|11817432 +woolly aphid|11817516 +woolly apple aphid|11817563 +woolly bear|11817658 +woolly bear caterpillar|11817715 +woolly bear moth|11817772 +woolly daisy|11817834 +woolly indris|11817933 +woolly mammoth|11817976 +woolly manzanita|11818047 +woolly monkey|11818124 +woolly mullein|11818176 +woolly plant louse|11818315 +woolly rhinoceros|11818362 +woolly sunflower|11818430 +woolly thistle|11818479 +woolly-headed|11817311 +woolsorter|11818635 +woolsorter's disease|11818675 +woolsorter's pneumonia|11818831 +woolworth|11818987 +wooly|11819068 +wooly blue curls|11819304 +wooly lip fern|11819390 +wooly-minded|11819215 +woozy|11819465 +wop|11819513 +worcester|11819557 +worcester sauce|11819730 +worcestershire|11819823 +worcestershire sauce|11819915 +word|11820013 +word accent|11821159 +word blindness|11821215 +word class|11821269 +word deafness|11821355 +word division|11821420 +word finder|11821464 +word for word|11821602 +word form|11821633 +word game|11821683 +word meaning|11821727 +word of advice|11821788 +word of farewell|11821847 +word of god|11821913 +word of honor|11822158 +word of mouth|11822201 +word order|11822270 +word picture|11822316 +word play|11822447 +word processing|11822551 +word processing system|11822592 +word processor|11822694 +word salad|11822796 +word sense|11822858 +word square|11822919 +word stress|11822957 +word string|11823013 +word structure|11823109 +word-blind|11820686 +word-for-word|11820720 +word-of-mouth|11820757 +word-painter|11820797 +word-painting|11820833 +word-perfect|11820964 +word-splitting|11821009 +word-worship|11821075 +wordbook|11823189 +wordfinder|11823261 +wordily|11823318 +wordiness|11823366 +wording|11823444 +wordless|11823538 +wordlessly|11823607 +wordmonger|11823653 +wordnet|11823687 +wordplay|11823771 +words|11823828 +words per minute|11824802 +wordsmith|11824837 +wordsworth|11824870 +wordsworthian|11824925 +wordy|11824966 +work|11825046 +work animal|11826836 +work at|11826905 +work bench|11826935 +work camp|11827073 +work day|11827121 +work flow|11827198 +work force|11827328 +work in|11827474 +work in progress|11827495 +work of art|11827540 +work off|11827574 +work on|11827610 +work out|11827697 +work over|11828010 +work papers|11828042 +work party|11828151 +work permit|11828198 +work shift|11828307 +work shoe|11828351 +work song|11828400 +work stoppage|11828424 +work study|11828465 +work surface|11828592 +work table|11828622 +work through|11828739 +work time|11828789 +work to rule|11828842 +work unit|11828875 +work up|11828941 +work-board|11826367 +work-clothes|11826484 +work-clothing|11826562 +work-in|11826640 +work-shy|11826685 +work-study program|11826747 +workable|11829110 +workaday|11829176 +workaholic|11829251 +workaholism|11829282 +workbag|11829331 +workbasket|11829377 +workbench|11829423 +workboard|11829480 +workbook|11829516 +workbox|11829539 +workday|11829585 +worked up|11829654 +worker|11829708 +worker bee|11829921 +workfellow|11829948 +workflow|11830012 +workforce|11830061 +workhorse|11830126 +workhouse|11830181 +working|11830251 +working agreement|11830560 +working capital|11830611 +working class|11830651 +working day|11830739 +working dog|11830804 +working girl|11830859 +working group|11831072 +working man|11831126 +working memory|11831179 +working out|11831222 +working papers|11831267 +working party|11831390 +working person|11831444 +working principle|11831497 +working rule|11831553 +working-class|11830445 +workings|11831609 +workload|11831733 +workman|11831767 +workmanlike|11831820 +workmanship|11831851 +workmate|11831948 +workmen's compensation|11831973 +workout|11832018 +workout suit|11832134 +workpiece|11832192 +workplace|11832230 +workroom|11832290 +works|11832313 +works council|11832901 +works program|11832932 +worksheet|11832973 +workshop|11833066 +workspace|11833162 +workstation|11833187 +worktable|11833225 +workweek|11833261 +world|11833294 +world affairs|11834075 +world bank|11834128 +world council|11834250 +world council of churches|11834281 +world court|11834356 +world cup|11834446 +world health organization|11834494 +world meteorological organization|11834591 +world organisation|11834704 +world organization|11834864 +world power|11835024 +world premiere|11835150 +world record|11835206 +world series|11835235 +world tamil association|11835285 +world tamil movement|11835495 +world trade center|11835702 +world trade organization|11835776 +world traveler|11835951 +world view|11836013 +world war|11836074 +world war 1|11836105 +world war 2|11836201 +world war i|11836274 +world war ii|11836370 +world wide web|11836444 +world-beater|11833720 +world-class|11833803 +world-shaking|11833844 +world-shattering|11833919 +world-weariness|11833994 +world-weary|11834042 +worldliness|11836508 +worldly|11836552 +worldly belongings|11836828 +worldly concern|11836938 +worldly goods|11836999 +worldly possessions|11837109 +worldly-minded|11836736 +worldly-wise|11836792 +worldwide|11837219 +worm|11837374 +worm family|11837637 +worm fence|11837665 +worm fish|11837740 +worm gear|11837791 +worm genus|11837835 +worm lizard|11837861 +worm salamander|11837889 +worm snake|11837944 +worm wheel|11838063 +worm-eaten|11837556 +worm-shaped|11837599 +wormcast|11838108 +wormhole|11838197 +wormian bone|11838227 +wormlike|11838283 +wormseed|11838348 +wormseed mustard|11838443 +wormwood|11838498 +wormwood oil|11838535 +wormwood sage|11838597 +wormy|11838664 +worn|11838764 +worn out|11839406 +worn spot|11839532 +worn-out|11839209 +worried|11839599 +worrier|11839663 +worriment|11839754 +worrisome|11839828 +worry|11839938 +worrying|11840160 +worrywart|11840327 +worse|11840418 +worsen|11841344 +worsened|11841445 +worsening|11841482 +worship|11841604 +worship of heavenly bodies|11841759 +worship of man|11841814 +worship of saints|11841889 +worshiper|11841946 +worshipful|11842047 +worshiping|11842112 +worshipped|11842156 +worshipper|11842207 +worshipping|11842307 +worst|11842351 +worsted|11843582 +wort|11843648 +worth|11843696 +worthful|11843885 +worthiness|11843919 +worthless|11843953 +worthlessness|11844186 +worthwhile|11844259 +worthwhileness|11844286 +worthy|11844316 +wotan|11844828 +wouk|11844864 +would-be|11844909 +wound|11844985 +wound tumor virus|11845598 +wound up|11845641 +wounded|11845673 +wounding|11845724 +wove paper|11845806 +woven|11845840 +wow|11845873 +wpm|11845984 +wrack|11846019 +wraith|11846144 +wraithlike|11846239 +wrangell-st. elias national park|11846302 +wrangle|11846391 +wrangler|11846598 +wrangling|11846720 +wrap|11846774 +wrap up|11846960 +wraparound|11847188 +wrapped|11847216 +wrapped up|11847378 +wrapper|11847417 +wrapping|11847526 +wrapping paper|11847594 +wrasse|11847624 +wrath|11847672 +wrathful|11847748 +wrawl|11847787 +wreak|11847848 +wreath|11847900 +wreathe|11848022 +wreathed|11848205 +wreck|11848258 +wreckage|11848387 +wrecked|11848418 +wrecker|11848445 +wreckfish|11848610 +wrecking|11848670 +wrecking bar|11848793 +wren|11848841 +wren warbler|11848993 +wren-tit|11848945 +wrench|11849046 +wrenching|11849299 +wrest|11849334 +wrester|11849355 +wrestle|11849379 +wrestler|11849592 +wrestling|11849673 +wrestling hold|11849789 +wrestling mat|11849858 +wrestling match|11849893 +wrestling ring|11849924 +wretch|11849953 +wretched|11850014 +wretchedness|11850234 +wrick|11850273 +wriggle|11850374 +wriggler|11850480 +wriggling|11850589 +wriggly|11850667 +wright|11850745 +wring|11851178 +wring from|11851446 +wring out|11851480 +wringer|11851559 +wrinkle|11851604 +wrinkle-resistant|11851904 +wrinkled|11852002 +wrinkleless|11852187 +wrinkleproof|11852219 +wrinkly|11852317 +wrist|11852352 +wrist band|11852460 +wrist bone|11852583 +wrist joint|11852630 +wrist pad|11852738 +wrist pin|11852776 +wrist watch|11852811 +wristband|11852937 +wristlet|11853018 +wristwatch|11853052 +writ|11853097 +writ large|11853186 +writ of certiorari|11853214 +writ of detinue|11853272 +writ of election|11853316 +writ of error|11853361 +writ of execution|11853403 +writ of habeas corpus|11853452 +writ of mandamus|11853516 +writ of prohibition|11853570 +writ of right|11853618 +write|11853660 +write about|11854256 +write copy|11854320 +write down|11854365 +write in|11854446 +write in code|11854482 +write of|11854563 +write off|11854627 +write on|11854751 +write out|11854815 +write up|11854900 +write-down|11853954 +write-in|11854011 +write-in candidate|11854113 +write-off|11854179 +writer|11855011 +writer's block|11855079 +writer's cramp|11855122 +writer's name|11855183 +writhe|11855225 +writhed|11855280 +writhen|11855323 +writhing|11855366 +writing|11855444 +writing arm|11855742 +writing assignment|11855767 +writing board|11855825 +writing desk|11855861 +writing implement|11855900 +writing ink|11855937 +writing pad|11855962 +writing paper|11856019 +writing style|11856048 +writing system|11856115 +writing table|11856159 +writings|11856219 +written|11856654 +written account|11856916 +written agreement|11856963 +written assignment|11857075 +written communication|11857133 +written document|11857195 +written language|11857279 +written material|11857341 +written matter|11857431 +written record|11857480 +written report|11857527 +written symbol|11857597 +written text|11857643 +written word|11857718 +wroclaw|11857745 +wrong|11857807 +wrong 'un|11858664 +wrong-side-out|11858521 +wrong-site surgery|11858563 +wrongdoer|11858715 +wrongdoing|11858754 +wrongful|11858849 +wrongful conduct|11858919 +wrongful death|11858987 +wrongfully|11859025 +wrongfulness|11859069 +wrongheaded|11859118 +wrongly|11859145 +wrongness|11859179 +wroth|11859288 +wrothful|11859327 +wrought|11859366 +wrought iron|11859404 +wry|11859451 +wry face|11859544 +wrymouth|11859585 +wryneck|11859664 +wsw|11859771 +wtc|11859823 +wto|11859882 +wtv|11860036 +wu|11860083 +wu dialect|11860134 +wuerzburg|11860193 +wuhan|11860260 +wulfenite|11860310 +wulfila|11860337 +wurlitzer|11860451 +wurzburg|11860524 +wuss|11860590 +wv|11860674 +www|11860733 +wy|11860786 +wyat|11860839 +wyatt|11860902 +wych elm|11861010 +wych hazel|11861064 +wycherley|11861145 +wyclif|11861213 +wycliffe|11861361 +wyeth|11861511 +wyethia|11861553 +wyethia amplexicaulis|11861613 +wyethia helianthoides|11861701 +wyethia ovata|11861801 +wykeham|11861875 +wykehamist|11861999 +wyler|11862053 +wylie|11862135 +wynette|11862186 +wynfrith|11862281 +wynnea|11862389 +wynnea americana|11862438 +wynnea sparassoides|11862488 +wyoming|11862544 +wyomingite|11862602 +wyrd|11862642 +wysiwyg|11862685 +wystan hugh auden|11862756 +wyszynski|11862824 +wytensin|11862918 +wyvern|11862994 +x|11863034 +x chromosome|11864963 +x ray|11865013 +x-axis|11863260 +x-linked|11863292 +x-linked dominant inheritance|11863333 +x-linked gene|11863433 +x-linked recessive inheritance|11863490 +x-linked scid|11863592 +x-or circuit|11863715 +x-radiation|11863787 +x-ray|11863977 +x-ray diffraction|11864033 +x-ray film|11864090 +x-ray machine|11864144 +x-ray photograph|11864197 +x-ray photography|11864326 +x-ray picture|11864441 +x-ray therapy|11864567 +x-ray tube|11864671 +x-raying|11864789 +x-scid|11864847 +xanax|11865260 +xanthate|11865307 +xanthelasma|11865330 +xanthemia|11865360 +xanthic acid|11865401 +xanthine|11865428 +xanthium|11865463 +xanthoma|11865525 +xanthoma disseminatum|11865618 +xanthoma multiplex|11865658 +xanthomatosis|11865772 +xanthomonad|11865886 +xanthomonas|11865944 +xanthophyceae|11866010 +xanthophyl|11866073 +xanthophyll|11866123 +xanthopsia|11866173 +xanthorrhoeaceae|11866255 +xanthorroea|11866362 +xanthosis|11866434 +xanthosoma|11866528 +xanthosoma atrovirens|11866606 +xanthosoma sagittifolium|11866729 +xanthous|11866855 +xantusiidae|11866900 +xavier|11866967 +xc|11867022 +xci|11867087 +xcii|11867123 +xciii|11867160 +xciv|11867200 +xcl|11867238 +xcv|11867283 +xcvi|11867320 +xcvii|11867357 +xcviii|11867397 +xe|11867438 +xenarthra|11867529 +xenicidae|11867590 +xenicus|11867687 +xenicus gilviventris|11867737 +xenogenesis|11867815 +xenograft|11867896 +xenolith|11867944 +xenon|11867973 +xenophanes|11868061 +xenophobia|11868104 +xenophobic|11868138 +xenophon|11868165 +xenopodidae|11868239 +xenopus|11868308 +xenopus laevis|11868363 +xenorhyncus|11868438 +xenorhyncus asiaticus|11868500 +xenosauridae|11868600 +xenosaurus|11868670 +xenotime|11868732 +xenotransplant|11868758 +xenotransplantation|11868846 +xeranthemum|11868934 +xeranthemum annuum|11868962 +xeric|11869051 +xerobates|11869083 +xeroderma|11869142 +xeroderma pigmentosum|11869183 +xerodermia|11869235 +xerographic|11869276 +xerographic copier|11869323 +xerographic printer|11869389 +xerography|11869454 +xeroma|11869501 +xerophile|11869596 +xerophilous plant|11869701 +xerophthalmia|11869806 +xerophthalmus|11869901 +xerophyllum|11869996 +xerophyllum tenax|11870068 +xerophyte|11870153 +xerophytic|11870258 +xerophytic plant|11870284 +xeroradiography|11870389 +xerostomia|11870426 +xerotes|11870486 +xerox|11870542 +xerox copy|11870672 +xerox machine|11870703 +xerxes i|11870783 +xerxes the great|11870845 +xestobium rufovillosum|11870915 +xhosa|11871006 +xi|11871033 +xian|11871156 +xii|11871230 +xiii|11871309 +ximenesia encelioides|11871407 +xinjiang|11871580 +xinjiang uighur autonomous region|11871665 +xiphias|11871775 +xiphias gladius|11871825 +xiphiidae|11871901 +xiphium iris|11871959 +xiphoid process|11872022 +xiphosura|11872055 +xiphosurus polyphemus|11872113 +xishuangbanna dai|11872220 +xiv|11872277 +xix|11872348 +xizang|11872419 +xl|11872490 +xli|11872562 +xlii|11872597 +xliii|11872633 +xliv|11872672 +xlv|11872709 +xlvi|11872745 +xlvii|11872781 +xlviii|11872820 +xmas|11872860 +xor circuit|11872995 +xor gate|11873066 +xt|11873134 +xtc|11873190 +xv|11873291 +xvi|11873358 +xvii|11873427 +xviii|11873502 +xx|11873577 +xxi|11873667 +xxii|11873742 +xxiii|11873819 +xxiv|11873902 +xxix|11873991 +xxv|11874070 +xxvi|11874147 +xxvii|11874224 +xxviii|11874307 +xxx|11874392 +xxxi|11874485 +xxxii|11874522 +xxxiii|11874560 +xxxiv|11874601 +xxxv|11874640 +xxxvi|11874678 +xxxvii|11874716 +xxxviii|11874757 +xxy|11874799 +xxy-syndrome|11874831 +xy|11874919 +xylaria|11874949 +xylaria mali|11875001 +xylaria polymorpha|11875065 +xylariaceae|11875157 +xylem|11875223 +xylene|11875254 +xylocaine|11875332 +xylocopa|11875451 +xylol|11875509 +xylomelum|11875587 +xylomelum pyriforme|11875663 +xylophone|11875746 +xylophonist|11875817 +xylopia|11875852 +xylopia aethiopica|11875913 +xylose|11875992 +xylosma|11876049 +xylosma congestum|11876095 +xyphophorus|11876159 +xyphophorus helleri|11876221 +xyridaceae|11876310 +xyridales|11876416 +xyris|11876505 +xyris operculata|11876568 +xyy|11876645 +y|11876677 +y chromosome|11877019 +y-axis|11876798 +y-linked gene|11876830 +y-shaped|11876902 +y2k|11876936 +y2k compliant|11876973 +yacca|11877069 +yacca podocarp|11877144 +yacht|11877219 +yacht chair|11877277 +yacht club|11877312 +yacht race|11877378 +yachting|11877421 +yachting cap|11877470 +yachtsman|11877524 +yachtswoman|11877570 +yack|11877616 +yack away|11877756 +yafo|11877846 +yagi|11877911 +yagi aerial|11877957 +yahi|11878015 +yahoo|11878063 +yahve|11878191 +yahveh|11878294 +yahwe|11878398 +yahweh|11878501 +yajur-veda|11878605 +yak|11878644 +yak butter|11878758 +yak's milk|11878733 +yakety-yak|11878785 +yakima|11878842 +yakut|11878870 +yakuza|11878951 +yale|11879024 +yale university|11879117 +yalta|11879174 +yaltopya|11879224 +yalu|11879341 +yalu river|11879377 +yam|11879452 +yam bean|11879535 +yam family|11879623 +yam plant|11879691 +yama|11879719 +yamaltu|11879750 +yamamoto|11879801 +yamani|11879866 +yammer|11879936 +yamoussukro|11880067 +yana|11880117 +yanan|11880165 +yang|11880197 +yang chen ning|11880226 +yangon|11880288 +yangtze|11880336 +yangtze kiang|11880413 +yangtze river|11880496 +yank|11880579 +yankee|11880737 +yankee corn|11880950 +yankee-doodle|11880892 +yanker|11881035 +yanquapin|11881065 +yaounde|11881141 +yap|11881203 +yap away|11881305 +yard|11881395 +yard goods|11881955 +yard grass|11882013 +yard line|11882170 +yard marker|11882194 +yard measure|11882222 +yard sale|11882265 +yard-long bean|11881840 +yardage|11882327 +yardarm|11882353 +yardbird parker|11882374 +yarder|11882495 +yardgrass|11882523 +yardie|11882599 +yardman|11882632 +yardmaster|11882749 +yardstick|11882865 +yarmelke|11882953 +yarmulka|11882998 +yarmulke|11883043 +yarn|11883088 +yarn-dye|11883189 +yarn-spinning|11883219 +yarrow|11883270 +yashmac|11883324 +yashmak|11883368 +yasser arafat|11883412 +yastrzemski|11883488 +yataghan|11883565 +yatobyo|11883589 +yaupon holly|11883681 +yautia|11883709 +yavapai|11883810 +yaw|11883867 +yawl|11883993 +yawn|11884140 +yawner|11884344 +yawning|11884413 +yawp|11884619 +yaws|11884720 +yay|11884805 +yazoo|11884826 +yazoo river|11884865 +yb|11884910 +yea|11884975 +yeah|11885011 +year|11885028 +year dot|11885326 +year of grace|11885364 +year-around|11885207 +year-end|11885239 +year-round|11885283 +yearbook|11885407 +yearling|11885498 +yearlong|11885715 +yearly|11885738 +yearn|11885830 +yearned-for|11885954 +yearner|11886004 +yearning|11886090 +yearningly|11886142 +years|11886184 +yeast|11886503 +yeast cake|11886554 +yeastlike|11886585 +yeasty|11886620 +yeats|11886693 +yeatsian|11886773 +yeddo|11886825 +yedo|11886918 +yehudi menuhin|11887010 +yekaterinoslav|11887094 +yell|11887177 +yelled|11887391 +yeller|11887420 +yelling|11887499 +yellow|11887602 +yellow adder's tongue|11889394 +yellow ageratum|11889513 +yellow asphodel|11889585 +yellow avens|11889650 +yellow bachelor's button|11889748 +yellow bass|11889848 +yellow bean|11889910 +yellow bedstraw|11889951 +yellow bells|11890034 +yellow berry|11890141 +yellow bile|11890185 +yellow birch|11890272 +yellow bone marrow|11890347 +yellow bristle grass|11890408 +yellow bristlegrass|11890532 +yellow bugle|11890656 +yellow bunting|11890724 +yellow cattley guava|11890789 +yellow cedar|11890871 +yellow chamomile|11890980 +yellow chestnut oak|11891086 +yellow cleavers|11891179 +yellow clintonia|11891262 +yellow colicroot|11891341 +yellow cypress|11891436 +yellow delicious|11891545 +yellow dock|11891615 +yellow dwarf|11891708 +yellow dwarf of potato|11891744 +yellow fever|11891809 +yellow flag|11891874 +yellow foxglove|11891976 +yellow foxtail|11892051 +yellow giant hyssop|11892175 +yellow globe lily|11892238 +yellow goatfish|11892332 +yellow granadilla|11892431 +yellow green|11892587 +yellow gurnard|11892683 +yellow hawkweed|11892742 +yellow henbane|11892803 +yellow honeysuckle|11892870 +yellow horned poppy|11892960 +yellow hornet|11893046 +yellow iris|11893110 +yellow ironweed|11893212 +yellow jacaranda|11893364 +yellow jack|11893427 +yellow jacket|11893536 +yellow jasmine|11893663 +yellow jessamine|11893772 +yellow journalism|11893881 +yellow lady's slipper|11893956 +yellow lady-slipper|11894112 +yellow light|11894268 +yellow locust|11894329 +yellow loosestrife|11894405 +yellow lupine|11894484 +yellow man|11894535 +yellow mariposa tulip|11894595 +yellow marrow|11894683 +yellow metal|11894744 +yellow milkwort|11894801 +yellow mombin|11894901 +yellow mombin tree|11895008 +yellow mountain saxifrage|11895086 +yellow nutgrass|11895170 +yellow oak|11895262 +yellow ocher|11895348 +yellow ochre|11895395 +yellow oleander|11895442 +yellow pages|11895517 +yellow paper daisy|11895595 +yellow parilla|11895708 +yellow pea|11895795 +yellow perch|11895871 +yellow peril|11895916 +yellow pimpernel|11895952 +yellow pine|11896009 +yellow pitcher plant|11896067 +yellow pond lily|11896185 +yellow poplar|11896257 +yellow prussiate of potash|11896439 +yellow race|11896511 +yellow river|11896579 +yellow rocket|11896638 +yellow root|11896727 +yellow salsify|11896828 +yellow sand verbena|11896893 +yellow sea|11896953 +yellow spiny daisy|11896988 +yellow spot|11897050 +yellow spot fungus|11897137 +yellow spruce|11897190 +yellow squash|11897259 +yellow star-thistle|11897360 +yellow sweet clover|11897435 +yellow trefoil|11897517 +yellow trumpet|11897620 +yellow turnip|11897738 +yellow twining snapdragon|11897798 +yellow vetchling|11897864 +yellow warbler|11897946 +yellow water flag|11898046 +yellow water lily|11898148 +yellow watercress|11898199 +yellow woman|11898267 +yellow-bellied|11887999 +yellow-bellied sapsucker|11888097 +yellow-bellied terrapin|11888160 +yellow-blindness|11888225 +yellow-blue color blindness|11888315 +yellow-blue dichromacy|11888435 +yellow-breasted bunting|11888555 +yellow-breasted chat|11888613 +yellow-brown|11888678 +yellow-crowned night heron|11888732 +yellow-dog contract|11888812 +yellow-eyed grass|11888893 +yellow-eyed grass family|11888954 +yellow-fever mosquito|11889049 +yellow-green|11889103 +yellow-green algae|11889135 +yellow-leaf sickle pine|11889174 +yellow-shafted flicker|11889254 +yellow-throated marten|11889324 +yellowbelly marmot|11898333 +yellowbird|11898399 +yellowcake|11898557 +yellowed|11898609 +yellowfin|11898638 +yellowfin croaker|11898701 +yellowfin mojarra|11898772 +yellowfin tuna|11898823 +yellowhammer|11898886 +yellowish|11899006 +yellowish brown|11899051 +yellowish green|11899130 +yellowish pink|11899226 +yellowknife|11899281 +yellowlegs|11899319 +yellowness|11899349 +yellowstone|11899440 +yellowstone national park|11899497 +yellowstone river|11899572 +yellowtail|11899635 +yellowtail flounder|11899729 +yellowtail snapper|11899830 +yellowthroat|11899895 +yellowwood|11899948 +yellowwood tree|11900001 +yelp|11900042 +yelping|11900088 +yemen|11900114 +yemeni|11900180 +yemeni fils|11900256 +yemeni monetary unit|11900315 +yemeni rial|11900380 +yen|11900439 +yenisei|11900559 +yenisei river|11900798 +yenisei-samoyed|11900703 +yeniseian|11900871 +yenisey|11900985 +yenisey river|11901052 +yenta|11901125 +yeoman|11901228 +yeoman of the guard|11901309 +yeomanry|11901372 +yerba buena|11901453 +yerba mansa|11901559 +yerba santa|11901624 +yerevan|11901681 +yerkes|11901748 +yersin|11901822 +yersinia pestis|11901905 +yerupaja|11901965 +yerwa-maiduguri|11902006 +yes|11902086 +yes-man|11902111 +yes-no question|11902159 +yeshiva|11902244 +yeshivah|11902278 +yesterday|11902312 +yesteryear|11902417 +yet|11902463 +yeti|11902724 +yevgeni aleksandrovich yevtushenko|11902776 +yevgeni yevtushenko|11902892 +yevtushenko|11902993 +yew|11903086 +yew family|11903135 +yezo|11903198 +ygdrasil|11903237 +yggdrasil|11903302 +yhvh|11903368 +yhwh|11903470 +yi|11903572 +yiddish|11903600 +yield|11903660 +yield up|11904367 +yielder|11904416 +yielding|11904498 +yieldingly|11904717 +yin|11904747 +yip|11904775 +yips|11904802 +yisrael|11904841 +ylang-ylang|11904918 +ylem|11905001 +ymir|11905032 +yo-yo|11905066 +yob|11905095 +yobbo|11905203 +yobo|11905311 +yodel|11905419 +yodeling|11905501 +yodeller|11905538 +yodh|11905592 +yoga|11905657 +yogacara|11905761 +yoghourt|11905815 +yoghurt|11905867 +yogi|11905919 +yogi berra|11906022 +yogic|11906112 +yogistic|11906154 +yogurt|11906196 +yoke|11906248 +yokel|11906586 +yokel-like|11906650 +yokelish|11906677 +yoko ono|11906748 +yokohama|11906788 +yokuts|11906849 +yolk|11906914 +yolk sac|11906951 +yom kippur|11907035 +yom kippur war|11907110 +yon|11907178 +yonder|11907219 +yore|11907257 +york|11907303 +yorkshire|11907388 +yorkshire fog|11907489 +yorkshire pudding|11907560 +yorkshire terrier|11907617 +yorktown|11907670 +yoruba|11907744 +yosemite|11907798 +yosemite falls|11907856 +yosemite national park|11907920 +yosemite toad|11907989 +you bet|11908171 +you said it|11908207 +you're welcome|11908049 +you-drive|11908081 +young|11908243 +young bird|11909238 +young buck|11909274 +young carnivore|11909334 +young fish|11909376 +young girl|11909417 +young lady|11909506 +young mammal|11909579 +young man|11909617 +young person|11909733 +young turk|11909809 +young woman|11909914 +young's modulus|11909059 +young-bearing|11909164 +young-begetting|11909208 +younger|11909987 +youngish|11910333 +youngness|11910366 +youngster|11910389 +youngstown|11910504 +younker|11910564 +youth|11910640 +youth crusade|11910992 +youth culture|11911075 +youth gang|11911143 +youth hostel|11911182 +youth movement|11911265 +youth subculture|11911348 +youth-on-age|11910898 +youthful|11911388 +youthfulness|11911428 +yowl|11911477 +ypres|11911695 +yquem|11911902 +yr|11911934 +ytterbite|11911997 +ytterbium|11912035 +yttrium|11912097 +yuan|11912156 +yuan dynasty|11912245 +yucatan|11912308 +yucatan peninsula|11912361 +yucatec|11912424 +yucateco|11912519 +yucca|11912615 +yucca aloifolia|11912641 +yucca baccata|11912704 +yucca brevifolia|11912763 +yucca carnerosana|11912824 +yucca elata|11912890 +yucca filamentosa|11912958 +yucca glauca|11913076 +yucca gloriosa|11913128 +yucca smalliana|11913188 +yucca whipplei|11913246 +yucky|11913309 +yue|11913445 +yue dialect|11913510 +yugoslav|11913583 +yugoslavia|11913712 +yugoslavian|11913841 +yugoslavian dinar|11913973 +yugoslavian monetary unit|11914050 +yukawa|11914125 +yukon|11914180 +yukon river|11914297 +yukon territory|11914342 +yukon time|11914438 +yukon white birch|11914526 +yule|11914607 +yule log|11914685 +yuletide|11914724 +yuma|11914806 +yuman|11914871 +yummy|11914903 +yunnan|11914996 +yunnan province|11915050 +yuppie|11915113 +yurak-samoyed|11915162 +yuri alekseyevich gagarin|11915238 +yuri gagarin|11915349 +yurt|11915447 +yves tanguy|11915516 +z|11915564 +z-axis|11915688 +zaar|11915720 +zabaglione|11915759 +zacharias|11915808 +zachary taylor|11915905 +zaftig|11916049 +zag|11916106 +zaglossus|11916155 +zagreb|11916213 +zaharias|11916253 +zaire|11916387 +zairean|11916521 +zairese|11916615 +zairese monetary unit|11916709 +zakat|11916776 +zalophus|11916815 +zalophus californianus|11916870 +zalophus californicus|11916976 +zalophus lobatus|11917081 +zama|11917153 +zaman|11917202 +zamang|11917292 +zambezi|11917382 +zambezi river|11917427 +zambia|11917478 +zambian|11917569 +zambian kwacha|11917647 +zambian monetary unit|11917715 +zamboni|11917782 +zamia|11917815 +zamia family|11917836 +zamia pumila|11917903 +zamiaceae|11917985 +zane grey|11918062 +zangwill|11918110 +zannichellia|11918167 +zannichellia palustris|11918251 +zannichelliaceae|11918331 +zantac|11918430 +zantedeschia|11918535 +zantedeschia aethiopica|11918619 +zantedeschia rehmanii|11918710 +zanthoxylum|11918825 +zanthoxylum americanum|11918894 +zanthoxylum clava-herculis|11919006 +zanthoxylum flavum|11919126 +zanthoxylum fraxineum|11919230 +zanuck|11919341 +zany|11919447 +zanzibar|11919716 +zanzibar copal|11919750 +zap|11919801 +zapata|11919941 +zapodidae|11920029 +zapotec|11920089 +zapotecan|11920308 +zapper|11920459 +zapus|11920493 +zapus hudsonius|11920539 +zaragoza|11920615 +zarathustra|11920681 +zarf|11920732 +zaria|11920753 +zarontin|11920803 +zarpanit|11920919 +zarqa|11920979 +zauschneria californica|11921038 +zayin|11921168 +zdv|11921234 +zea|11921323 +zea mays|11921380 +zea mays amylacea|11921450 +zea mays everta|11921538 +zea mays indentata|11921619 +zea mays indurata|11921687 +zea mays rugosa|11921778 +zea saccharata|11921933 +zeal|11922087 +zealand|11922215 +zealander|11922265 +zealot|11922299 +zealotry|11922408 +zealous|11922449 +zeaxanthin|11922496 +zebra|11922527 +zebra crossing|11922654 +zebra finch|11922727 +zebra mussel|11922791 +zebra orchid|11922868 +zebra-tailed lizard|11922555 +zebrawood|11922921 +zebrawood family|11922972 +zebrawood tree|11923048 +zebu|11923087 +zechariah|11923136 +zed|11923233 +zee|11923315 +zeeman|11923397 +zeidae|11923444 +zeitgeist|11923493 +zen|11923573 +zen buddhism|11923801 +zen buddhist|11923882 +zenaidura|11923935 +zenaidura macroura|11923991 +zend|11924057 +zend-avesta|11924109 +zenith|11924209 +zenithal|11924241 +zeno|11924274 +zeno of citium|11924357 +zeno of elea|11924413 +zeolite|11924465 +zeomorphi|11924505 +zep|11924563 +zephaniah|11924720 +zephyr|11924817 +zeppelin|11924914 +zeppo|11925039 +zero|11925093 +zero coupon bond|11925601 +zero hour|11925649 +zero in|11925685 +zero point|11925780 +zero tolerance|11925824 +zero-coupon bond|11925391 +zero-coupon security|11925484 +zero-sum game|11925535 +zero-tolerance policy|11925563 +zeroth|11925860 +zeroth law of thermodynamics|11925884 +zest|11925944 +zestful|11926116 +zestfully|11926161 +zestfulness|11926187 +zestily|11926247 +zestril|11926273 +zesty|11926372 +zeta|11926462 +zetland|11926527 +zeugma|11926590 +zeus|11926642 +zeus faber|11926707 +zhou|11926753 +zhou dynasty|11926829 +zhou en-lai|11926913 +zhu jiangi|11927024 +zhuang|11927084 +zhukov|11927111 +zidovudine|11927185 +ziegfeld|11927270 +ziegfeld follies|11927347 +ziegler|11927398 +zig|11927453 +zigadene|11927502 +zigadenus|11927549 +zigadenus elegans|11927615 +zigadenus glaucus|11927694 +zigadenus nuttalli|11927772 +zigadenus venenosus|11927853 +zigadenus venenosus gramineus|11927972 +ziggurat|11928101 +zigzag|11928143 +zigzag goldenrod|11928244 +zikkurat|11928303 +zikurat|11928345 +zilch|11928387 +zill|11928492 +zillion|11928513 +zillions|11928549 +zimbabwe|11928654 +zimbabwean|11928760 +zimbabwean dollar|11928847 +zimbalist|11928899 +zimmer|11928962 +zimmer frame|11929029 +zinacef|11929102 +zinc|11929167 +zinc blende|11929224 +zinc cadmium sulfide|11929271 +zinc deficiency|11929317 +zinc ointment|11929361 +zinc oxide|11929420 +zinc sulfate|11929481 +zinc sulphate|11929561 +zinc vitriol|11929641 +zinc white|11929721 +zinfandel|11929749 +zing|11929851 +zinger|11929928 +zingiber|11929959 +zingiber officinale|11930031 +zingiberaceae|11930127 +zinjanthropus|11930231 +zinkenite|11930306 +zinnemann|11930333 +zinnia|11930424 +zinnia acerosa|11930472 +zinnia grandiflora|11930556 +zinnwaldite|11930656 +zinsser|11930692 +zinzendorf|11930745 +zion|11930859 +zion national park|11931010 +zionism|11931071 +zionist|11931166 +zionist movement|11931268 +zip|11931350 +zip by|11931712 +zip code|11931789 +zip gun|11931833 +zip up|11931888 +zip-fastener|11931629 +ziphiidae|11931933 +zipper|11932030 +zippy|11932149 +zirbanit|11932263 +zircon|11932323 +zirconia|11932366 +zirconium|11932424 +zirconium dioxide|11932486 +zirconium oxide|11932544 +zirconium silicate|11932602 +zither|11932645 +zithern|11932696 +ziti|11932747 +zizania|11932784 +zizania aquatica|11932853 +ziziphus|11932926 +ziziphus jujuba|11932999 +ziziphus lotus|11933101 +zizz|11933162 +zloty|11933241 +zn|11933277 +zoanthropy|11933337 +zoarces|11933383 +zoarces viviparus|11933433 +zoarcidae|11933510 +zocor|11933568 +zodiac|11933670 +zodiacal|11933713 +zodiacal light|11933742 +zoftig|11933787 +zoic|11933844 +zoisia|11933872 +zola|11933951 +zolaesque|11933990 +zollinger-ellison syndrome|11934027 +zoloft|11934099 +zomba|11934177 +zombi|11934227 +zombi spirit|11934519 +zombie|11934594 +zombie spirit|11934882 +zona|11934957 +zona pellucida|11935057 +zonal|11935091 +zonal pelargonium|11935213 +zonary|11935301 +zone|11935335 +zone fire|11935723 +zone of interior|11935769 +zoning|11935802 +zoning board|11935897 +zoning commission|11935925 +zonk out|11935973 +zonotrichia|11936113 +zonotrichia albicollis|11936175 +zonotrichia leucophrys|11936283 +zonula|11936378 +zonule|11936411 +zoo|11936444 +zoo keeper|11936507 +zooerastia|11936552 +zooerasty|11936642 +zooflagellate|11936732 +zooid|11936849 +zoolatry|11936879 +zoological|11936920 +zoological garden|11936987 +zoological science|11937050 +zoologist|11937113 +zoology|11937174 +zoom|11937237 +zoom along|11937531 +zoom in|11937605 +zoom lens|11937665 +zoomastigina|11937724 +zoomastigote|11937787 +zoomorphism|11937904 +zoonosis|11937948 +zoonotic|11937998 +zoonotic disease|11938030 +zoophagous|11938080 +zoophilia|11938137 +zoophilism|11938178 +zoophobia|11938219 +zoophyte|11938252 +zooplankton|11938283 +zoopsia|11938352 +zoospore|11938390 +zoot suit|11938414 +zootoxin|11938454 +zori|11938491 +zoril|11938519 +zoroaster|11938559 +zoroastrian|11938608 +zoroastrianism|11938685 +zoster|11938765 +zostera|11938811 +zostera marina|11938880 +zosteraceae|11939005 +zovirax|11939105 +zoysia|11939186 +zoysia japonica|11939208 +zoysia matrella|11939294 +zoysia tenuifolia|11939377 +zr|11939465 +zsigmondy|11939530 +zu|11939592 +zubird|11939628 +zucchini|11939668 +zuider zee|11939765 +zukerman|11939809 +zulu|11939871 +zuni|11939916 +zurich|11939942 +zurvan|11939994 +zurvanism|11940031 +zweig|11940172 +zwieback|11940220 +zwingli|11940284 +zworykin|11940388 +zydeco|11940449 +zygnema|11940507 +zygnemales|11940563 +zygnemataceae|11940656 +zygnematales|11940732 +zygocactus|11940827 +zygocactus truncatus|11940901 +zygodactyl|11941015 +zygodactyl foot|11941046 +zygoma|11941083 +zygomatic|11941140 +zygomatic arch|11941176 +zygomatic bone|11941233 +zygomatic process|11941317 +zygomorphic|11941372 +zygomorphous|11941442 +zygomycetes|11941500 +zygomycota|11941557 +zygomycotina|11941658 +zygophyllaceae|11941761 +zygophyllum|11941859 +zygophyllum fabago|11941928 +zygoptera|11942015 +zygospore|11942076 +zygote|11942101 +zygotene|11942138 +zygotic|11942168 +zyloprim|11942189 +zymase|11942274 +zymogen|11942297 +zymoid|11942341 +zymolysis|11942385 +zymolytic|11942493 +zymosis|11942568 +zymotic|11942693 +zymurgy|11942784 +zyrian|11942814 diff --git a/th_gen_idx.pl b/th_gen_idx.pl new file mode 100755 index 0000000..967667f --- /dev/null +++ b/th_gen_idx.pl @@ -0,0 +1,59 @@ +#!/usr/bin/perl + +# perl program to take a thesaurus structured text data file +# and create the proper sorted index file (.idx) +# +# typically invoked as follows: +# cat th_en_US_new.dat | ./th_gen_idx.pl > th_en_US_new.idx +# + +sub by_entry { + my ($aent, $aoff) = split('\|',$a); + my ($bent, $boff) = split('\|',$b); + $aent cmp $bent; +} + +# main routine +my $ne = 0; # number of entries in index +my @tindex=(); # the index itself +my $foffset = 0; # file position offset into thesaurus +my $rec=""; # current string and related pieces +my $rl=0; # misc string length +my $entry=""; # current word being processed +my $nm=0; # number of meaning for the current word +my $meaning=""; # current meaning and synonyms +my $p; # misc uses +my $encoding; # encoding used by text file + +# top line of thesaurus provides encoding +$encoding=; +$foffset = $foffset + length($encoding); +chomp($encoding); + +# read thesaurus line by line +# first line of every block is an entry and meaning count +while ($rec=){ + $rl = length($rec); + chomp($rec); + ($entry, $nm) = split('\|',$rec); + $p = 0; + while ($p < $nm) { + $meaning=; + $rl = $rl + length($meaning); + chomp($meaning); + $p++; + } + push(@tindex,"$entry|$foffset"); + $ne++; + $foffset = $foffset + $rl; +} + +# now we have all of the information +# so sort it and then output the encoding, count and index data +@tindex = sort by_entry @tindex; +print STDOUT "$encoding\n"; +print STDOUT "$ne\n"; +foreach $one (@tindex) { + print STDOUT "$one\n"; +} +